diff --git a/Database_EER.png b/Database_EER.png new file mode 100644 index 0000000..0b5bef3 Binary files /dev/null and b/Database_EER.png differ diff --git a/Lego_project.pptx b/Lego_project.pptx new file mode 100644 index 0000000..9a258f8 Binary files /dev/null and b/Lego_project.pptx differ diff --git a/Queries.sql b/Queries.sql new file mode 100644 index 0000000..bf0c1df --- /dev/null +++ b/Queries.sql @@ -0,0 +1,178 @@ +USE lego; + +-- 1. Which LEGO themes have the most sets? +-- Identify the themes that feature the highest number of sets to understand their popularity. + + SELECT + t.name AS theme_name, + COUNT(s.set_num) AS num_sets + FROM + sets s + JOIN + themes t ON s.theme_id = t.id + WHERE + t.name LIKE '%Star Wars%' -- Adjust the condition to match your theme naming convention + GROUP BY + t.name + ORDER BY + num_sets DESC; + + +-- # 2. What is the average part count per set for each theme? +-- Analyze the complexity of sets within different themes by calculating the average number of parts. + + SELECT + t.name AS theme_name, + AVG(s.num_parts) AS avg_part_count + FROM + sets s + JOIN + themes t ON s.theme_id = t.id + WHERE + t.name LIKE '%Star Wars%' -- Adjust the condition to match your theme naming convention + GROUP BY + t.name; + + + +-- 3. How many unique colors are used across all themes? +-- Determine the overall color diversity in LEGO sets by counting unique colors. + + + SELECT + t.name AS theme_name, + COUNT(DISTINCT c.id) AS unique_colors + FROM + colors c + JOIN + inventory_parts ip ON c.id = ip.color_id + JOIN + inventories i ON ip.inventory_id = i.id + JOIN + sets s ON i.set_num = s.set_num + JOIN + themes t ON s.theme_id = t.id + WHERE + t.name LIKE '%Star Wars%' + GROUP BY + t.name; + +-- 4. Which sets have the highest part count? +-- Identify the specific sets that are the most complex in terms of the number of parts used. + SELECT + s.set_num, + s.name, + s.num_parts + FROM + sets s + ORDER BY + s.num_parts DESC + LIMIT 10; + +-- 5. How has the number of unique parts used in sets evolved over the years? +-- Analyze trends in the use of unique parts in LEGO sets over time. + SELECT + s.year, + COUNT(DISTINCT ip.part_num) AS unique_parts + FROM + sets s + JOIN + inventories i ON s.set_num = i.set_num + JOIN + inventory_parts ip ON i.id = ip.inventory_id + GROUP BY + s.year + ORDER BY + s.year; + + +-- 6. What is the distribution of sets across different years? +-- Understand how many sets were released each year, which can indicate market activity and trends. + SELECT + year, + COUNT(set_num) AS num_sets + FROM + sets + GROUP BY + year + ORDER BY + year; + +-- 7. Which parent themes have the highest average number of unique parts per set? +-- Determine which themes are most innovative by looking at the average number of unique parts used in their sets. + +SELECT + t.parent_id, + pt.name AS parent_theme_name, + AVG(unique_parts) AS avg_unique_parts + FROM ( + SELECT + s.theme_id, + COUNT(DISTINCT ip.part_num) AS unique_parts + FROM + sets s + JOIN + inventories i ON s.set_num = i.set_num + JOIN + inventory_parts ip ON i.id = ip.inventory_id + GROUP BY + s.set_num + ) AS unique_parts_per_set + JOIN + themes t ON unique_parts_per_set.theme_id = t.id + JOIN + themes pt ON t.parent_id = pt.id -- Joining to get the parent theme name + GROUP BY + t.parent_id, pt.name + ORDER BY + avg_unique_parts DESC -- Order by average unique parts in descending order + LIMIT 20; -- Limit to top 20 results + + +-- 8. What is the total number of parts used in all sets of specific theme? +-- Calculate the total part count for a specific theme to assess its material usage. + +query = f + SELECT + t.name AS theme_name, + SUM(s.num_parts) AS total_parts + FROM + sets s + JOIN + themes t ON s.theme_id = t.id + WHERE + t.name IN ({themes_placeholder}) + GROUP BY + t.name; + +-- 9. Which themes have experienced the most significant change in average part count over time? +-- Identify themes that have increased or decreased in complexity based on average part counts across years. + +SELECT + t.name AS theme_name, + s.year, + AVG(s.num_parts) AS avg_part_count + FROM + sets s + JOIN + themes t ON s.theme_id = t.id + GROUP BY + t.name, s.year + ORDER BY + t.name, s.year; + + +-- 10. How do the number of sets and average part count correlate within each theme? +-- Analyze the relationship between the number of sets and the average part count for parent themes to see if more sets mean more complex designs. + + SELECT + t.parent_id, + t.name AS theme_name, + COUNT(s.set_num) AS num_sets, + AVG(s.num_parts) AS avg_part_count + FROM + sets s + JOIN + themes t ON s.theme_id = t.id + GROUP BY + t.parent_id, t.name; \ No newline at end of file diff --git a/Seeding.sql b/Seeding.sql new file mode 100644 index 0000000..41bb7ce --- /dev/null +++ b/Seeding.sql @@ -0,0 +1,76 @@ +-- Load data into part_categories +LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/part_categories.csv' +INTO TABLE part_categories +FIELDS TERMINATED BY ',' +ENCLOSED BY '"' +LINES TERMINATED BY '\n' +IGNORE 1 LINES +(id, name); + +-- Load data into parts +LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/parts.csv' +INTO TABLE parts +FIELDS TERMINATED BY ',' +ENCLOSED BY '"' +LINES TERMINATED BY '\n' +IGNORE 1 LINES +(part_num, name, part_cat_id); + + +-- Load data into themes +LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/themes.csv' +INTO TABLE themes +FIELDS TERMINATED BY ',' +OPTIONALLY ENCLOSED BY '"' +LINES TERMINATED BY '\n' +IGNORE 1 LINES +(id, name, parent_id) +SET parent_id = NULLIF(parent_id, ''); + +-- Load data into colors +LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/colors.csv' +INTO TABLE colors +FIELDS TERMINATED BY ',' +ENCLOSED BY '"' +LINES TERMINATED BY '\n' +IGNORE 1 LINES +(id, name, rgb, is_trans); + + +-- Load data into sets +LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/sets.csv' +INTO TABLE sets +FIELDS TERMINATED BY ',' +ENCLOSED BY '"' +LINES TERMINATED BY '\n' +IGNORE 1 LINES +(set_num, name, year, theme_id, num_parts); + + + +-- Load data into inventories +LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/inventories.csv' +INTO TABLE inventories +FIELDS TERMINATED BY ',' +ENCLOSED BY '"' +LINES TERMINATED BY '\n' +IGNORE 1 LINES +(id, version, set_num); + +-- Load data into inventory_parts +LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/inventory_parts.csv' +INTO TABLE inventory_parts +FIELDS TERMINATED BY ',' +ENCLOSED BY '"' +LINES TERMINATED BY '\n' +IGNORE 1 LINES +(inventory_id, part_num, color_id, quantity, is_spare); + +-- Load data into inventory_sets +LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/inventory_sets.csv' +INTO TABLE inventory_sets +FIELDS TERMINATED BY ',' +ENCLOSED BY '"' +LINES TERMINATED BY '\n' +IGNORE 1 LINES +(inventory_id, set_num, quantity); diff --git a/analysis.ipynb b/analysis.ipynb new file mode 100644 index 0000000..1babf4a --- /dev/null +++ b/analysis.ipynb @@ -0,0 +1,4530 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 145, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from IPython.display import display\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns" + ] + }, + { + "cell_type": "code", + "execution_count": 146, + "metadata": {}, + "outputs": [], + "source": [ + "#Importing the datainto data frames\n", + "datasets = {\n", + " \"colors\": pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/colors.csv\"),\n", + " \"inventories\": pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/inventories.csv\"),\n", + " \"inventory_parts\": pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/inventory_parts.csv\"),\n", + " \"inventory_sets\": pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/inventory_sets.csv\"),\n", + " \"part_categories\": pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/part_categories.csv\"),\n", + " \"parts\": pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/parts.csv\"),\n", + " \"sets\": pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/sets.csv\"),\n", + " \"themes\": pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/themes.csv\")\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 147, + "metadata": {}, + "outputs": [], + "source": [ + "colors = pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/colors.csv\")\n", + "inventories = pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/inventories.csv\")\n", + "inventory_parts = pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/inventory_parts.csv\")\n", + "inventory_sets = pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/inventory_sets.csv\")\n", + "part_categories = pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/part_categories.csv\")\n", + "parts = pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/parts.csv\")\n", + "sets = pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/sets.csv\")\n", + "themes = pd.read_csv(\"C:/Users/dusan/Documents/GitHub/project-2-eda-sql/themes.csv\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# EDA\n", + "## STEP 1: Looking at the data and identifying missing Data" + ] + }, + { + "cell_type": "code", + "execution_count": 148, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- colors Dataset Overview ---\n", + "\n", + "RangeIndex: 135 entries, 0 to 134\n", + "Data columns (total 4 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 id 135 non-null int64 \n", + " 1 name 135 non-null object\n", + " 2 rgb 135 non-null object\n", + " 3 is_trans 135 non-null object\n", + "dtypes: int64(1), object(3)\n", + "memory usage: 4.3+ KB\n", + "\n", + "Shape of the DataFrame:\n" + ] + }, + { + "data": { + "text/plain": [ + "(135, 4)" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idnamergbis_trans
0-1Unknown0033B2f
10Black05131Df
21Blue0055BFf
32Green237841f
43Dark Turquoise008F9Bf
54RedC91A09f
65Dark PinkC870A0f
76Brown583927f
87Light Gray9BA19Df
98Dark Gray6D6E5Cf
\n", + "
" + ], + "text/plain": [ + " id name rgb is_trans\n", + "0 -1 Unknown 0033B2 f\n", + "1 0 Black 05131D f\n", + "2 1 Blue 0055BF f\n", + "3 2 Green 237841 f\n", + "4 3 Dark Turquoise 008F9B f\n", + "5 4 Red C91A09 f\n", + "6 5 Dark Pink C870A0 f\n", + "7 6 Brown 583927 f\n", + "8 7 Light Gray 9BA19D f\n", + "9 8 Dark Gray 6D6E5C f" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Missing values per column:\n" + ] + }, + { + "data": { + "text/plain": [ + "id 0\n", + "name 0\n", + "rgb 0\n", + "is_trans 0\n", + "dtype: int64" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Column names:\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['id', 'name', 'rgb', 'is_trans'], dtype='object')" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- inventories Dataset Overview ---\n", + "\n", + "RangeIndex: 11681 entries, 0 to 11680\n", + "Data columns (total 3 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 id 11681 non-null int64 \n", + " 1 version 11681 non-null int64 \n", + " 2 set_num 11681 non-null object\n", + "dtypes: int64(2), object(1)\n", + "memory usage: 273.9+ KB\n", + "\n", + "Shape of the DataFrame:\n" + ] + }, + { + "data": { + "text/plain": [ + "(11681, 3)" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idversionset_num
0117922-1
1313931-1
2416942-1
31515158-1
4161903-1
5171850950-1
61914444-1
72113474-1
822130277-1
925171012-11
\n", + "
" + ], + "text/plain": [ + " id version set_num\n", + "0 1 1 7922-1\n", + "1 3 1 3931-1\n", + "2 4 1 6942-1\n", + "3 15 1 5158-1\n", + "4 16 1 903-1\n", + "5 17 1 850950-1\n", + "6 19 1 4444-1\n", + "7 21 1 3474-1\n", + "8 22 1 30277-1\n", + "9 25 1 71012-11" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Missing values per column:\n" + ] + }, + { + "data": { + "text/plain": [ + "id 0\n", + "version 0\n", + "set_num 0\n", + "dtype: int64" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Column names:\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['id', 'version', 'set_num'], dtype='object')" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- inventory_parts Dataset Overview ---\n", + "\n", + "RangeIndex: 580251 entries, 0 to 580250\n", + "Data columns (total 5 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 inventory_id 580251 non-null int64 \n", + " 1 part_num 580251 non-null object\n", + " 2 color_id 580251 non-null int64 \n", + " 3 quantity 580251 non-null int64 \n", + " 4 is_spare 580251 non-null object\n", + "dtypes: int64(3), object(2)\n", + "memory usage: 22.1+ MB\n", + "\n", + "Shape of the DataFrame:\n" + ] + }, + { + "data": { + "text/plain": [ + "(580251, 5)" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
inventory_idpart_numcolor_idquantityis_spare
0148379c01721f
114839571f
21mcsport6251f
31paddle01f
4311816pr0005781f
532343471f
633003291f
733017621f
833020151f
933022152f
\n", + "
" + ], + "text/plain": [ + " inventory_id part_num color_id quantity is_spare\n", + "0 1 48379c01 72 1 f\n", + "1 1 48395 7 1 f\n", + "2 1 mcsport6 25 1 f\n", + "3 1 paddle 0 1 f\n", + "4 3 11816pr0005 78 1 f\n", + "5 3 2343 47 1 f\n", + "6 3 3003 29 1 f\n", + "7 3 30176 2 1 f\n", + "8 3 3020 15 1 f\n", + "9 3 3022 15 2 f" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Missing values per column:\n" + ] + }, + { + "data": { + "text/plain": [ + "inventory_id 0\n", + "part_num 0\n", + "color_id 0\n", + "quantity 0\n", + "is_spare 0\n", + "dtype: int64" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Column names:\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['inventory_id', 'part_num', 'color_id', 'quantity', 'is_spare'], dtype='object')" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- inventory_sets Dataset Overview ---\n", + "\n", + "RangeIndex: 2846 entries, 0 to 2845\n", + "Data columns (total 3 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 inventory_id 2846 non-null int64 \n", + " 1 set_num 2846 non-null object\n", + " 2 quantity 2846 non-null int64 \n", + "dtypes: int64(2), object(1)\n", + "memory usage: 66.8+ KB\n", + "\n", + "Shape of the DataFrame:\n" + ] + }, + { + "data": { + "text/plain": [ + "(2846, 3)" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
inventory_idset_numquantity
03575911-11
13575912-11
23975048-11
33975053-11
4504515-11
5504520-12
6504531-11
7717690-11
8717691-11
9717692-11
\n", + "
" + ], + "text/plain": [ + " inventory_id set_num quantity\n", + "0 35 75911-1 1\n", + "1 35 75912-1 1\n", + "2 39 75048-1 1\n", + "3 39 75053-1 1\n", + "4 50 4515-1 1\n", + "5 50 4520-1 2\n", + "6 50 4531-1 1\n", + "7 71 7690-1 1\n", + "8 71 7691-1 1\n", + "9 71 7692-1 1" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Missing values per column:\n" + ] + }, + { + "data": { + "text/plain": [ + "inventory_id 0\n", + "set_num 0\n", + "quantity 0\n", + "dtype: int64" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Column names:\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['inventory_id', 'set_num', 'quantity'], dtype='object')" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- part_categories Dataset Overview ---\n", + "\n", + "RangeIndex: 57 entries, 0 to 56\n", + "Data columns (total 2 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 id 57 non-null int64 \n", + " 1 name 57 non-null object\n", + "dtypes: int64(1), object(1)\n", + "memory usage: 1.0+ KB\n", + "\n", + "Shape of the DataFrame:\n" + ] + }, + { + "data": { + "text/plain": [ + "(57, 2)" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idname
01Baseplates
12Bricks Printed
23Bricks Sloped
34Duplo, Quatro and Primo
45Bricks Special
56Bricks Wedged
67Containers
78Technic Bricks
89Plates Special
910Tiles Printed
\n", + "
" + ], + "text/plain": [ + " id name\n", + "0 1 Baseplates\n", + "1 2 Bricks Printed\n", + "2 3 Bricks Sloped\n", + "3 4 Duplo, Quatro and Primo\n", + "4 5 Bricks Special\n", + "5 6 Bricks Wedged\n", + "6 7 Containers\n", + "7 8 Technic Bricks\n", + "8 9 Plates Special\n", + "9 10 Tiles Printed" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Missing values per column:\n" + ] + }, + { + "data": { + "text/plain": [ + "id 0\n", + "name 0\n", + "dtype: int64" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Column names:\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['id', 'name'], dtype='object')" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- parts Dataset Overview ---\n", + "\n", + "RangeIndex: 25993 entries, 0 to 25992\n", + "Data columns (total 3 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 part_num 25993 non-null object\n", + " 1 name 25993 non-null object\n", + " 2 part_cat_id 25993 non-null int64 \n", + "dtypes: int64(1), object(2)\n", + "memory usage: 609.3+ KB\n", + "\n", + "Shape of the DataFrame:\n" + ] + }, + { + "data": { + "text/plain": [ + "(25993, 3)" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
part_numnamepart_cat_id
00687b1Set 0687 Activity Booklet 117
10901Baseplate 16 x 30 with Set 080 Yellow House Print1
20902Baseplate 16 x 24 with Set 080 Small White Hou...1
30903Baseplate 16 x 24 with Set 080 Red House Print1
40904Baseplate 16 x 24 with Set 080 Large White Hou...1
51Homemaker Bookcase 2 x 4 x 47
610Baseplate 24 x 321
710016414Sticker Sheet #1 for 41055-117
810019stk01Sticker for Set 10019 - (43274/4170393)17
910026stk01Sticker for Set 10026 - (44942/4184185)17
\n", + "
" + ], + "text/plain": [ + " part_num name part_cat_id\n", + "0 0687b1 Set 0687 Activity Booklet 1 17\n", + "1 0901 Baseplate 16 x 30 with Set 080 Yellow House Print 1\n", + "2 0902 Baseplate 16 x 24 with Set 080 Small White Hou... 1\n", + "3 0903 Baseplate 16 x 24 with Set 080 Red House Print 1\n", + "4 0904 Baseplate 16 x 24 with Set 080 Large White Hou... 1\n", + "5 1 Homemaker Bookcase 2 x 4 x 4 7\n", + "6 10 Baseplate 24 x 32 1\n", + "7 10016414 Sticker Sheet #1 for 41055-1 17\n", + "8 10019stk01 Sticker for Set 10019 - (43274/4170393) 17\n", + "9 10026stk01 Sticker for Set 10026 - (44942/4184185) 17" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Missing values per column:\n" + ] + }, + { + "data": { + "text/plain": [ + "part_num 0\n", + "name 0\n", + "part_cat_id 0\n", + "dtype: int64" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Column names:\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['part_num', 'name', 'part_cat_id'], dtype='object')" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- sets Dataset Overview ---\n", + "\n", + "RangeIndex: 11673 entries, 0 to 11672\n", + "Data columns (total 5 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 set_num 11673 non-null object\n", + " 1 name 11673 non-null object\n", + " 2 year 11673 non-null int64 \n", + " 3 theme_id 11673 non-null int64 \n", + " 4 num_parts 11673 non-null int64 \n", + "dtypes: int64(3), object(2)\n", + "memory usage: 456.1+ KB\n", + "\n", + "Shape of the DataFrame:\n" + ] + }, + { + "data": { + "text/plain": [ + "(11673, 5)" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
set_numnameyeartheme_idnum_parts
000-1Weetabix Castle1970414471
10011-2Town Mini-Figures19788412
20011-3Castle 2 for 1 Bonus Offer19871992
30012-1Space Mini-Figures197914312
40013-1Space Mini-Figures197914312
50014-1Space Mini-Figures197914312
60015-1Space Mini-Figures197914318
70016-1Castle Mini Figures197818615
800-2Weetabix Promotional House 11976413147
900-3Weetabix Promotional House 21976413149
\n", + "
" + ], + "text/plain": [ + " set_num name year theme_id num_parts\n", + "0 00-1 Weetabix Castle 1970 414 471\n", + "1 0011-2 Town Mini-Figures 1978 84 12\n", + "2 0011-3 Castle 2 for 1 Bonus Offer 1987 199 2\n", + "3 0012-1 Space Mini-Figures 1979 143 12\n", + "4 0013-1 Space Mini-Figures 1979 143 12\n", + "5 0014-1 Space Mini-Figures 1979 143 12\n", + "6 0015-1 Space Mini-Figures 1979 143 18\n", + "7 0016-1 Castle Mini Figures 1978 186 15\n", + "8 00-2 Weetabix Promotional House 1 1976 413 147\n", + "9 00-3 Weetabix Promotional House 2 1976 413 149" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Missing values per column:\n" + ] + }, + { + "data": { + "text/plain": [ + "set_num 0\n", + "name 0\n", + "year 0\n", + "theme_id 0\n", + "num_parts 0\n", + "dtype: int64" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Column names:\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['set_num', 'name', 'year', 'theme_id', 'num_parts'], dtype='object')" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- themes Dataset Overview ---\n", + "\n", + "RangeIndex: 614 entries, 0 to 613\n", + "Data columns (total 3 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 id 614 non-null int64 \n", + " 1 name 614 non-null object \n", + " 2 parent_id 503 non-null float64\n", + "dtypes: float64(1), int64(1), object(1)\n", + "memory usage: 14.5+ KB\n", + "\n", + "Shape of the DataFrame:\n" + ] + }, + { + "data": { + "text/plain": [ + "(614, 3)" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idnameparent_id
01TechnicNaN
12Arctic Technic1.0
23Competition1.0
34Expert Builder1.0
45Model1.0
56Airport5.0
67Construction5.0
78Farm5.0
89Fire5.0
910Harbor5.0
\n", + "
" + ], + "text/plain": [ + " id name parent_id\n", + "0 1 Technic NaN\n", + "1 2 Arctic Technic 1.0\n", + "2 3 Competition 1.0\n", + "3 4 Expert Builder 1.0\n", + "4 5 Model 1.0\n", + "5 6 Airport 5.0\n", + "6 7 Construction 5.0\n", + "7 8 Farm 5.0\n", + "8 9 Fire 5.0\n", + "9 10 Harbor 5.0" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Missing values per column:\n" + ] + }, + { + "data": { + "text/plain": [ + "id 0\n", + "name 0\n", + "parent_id 111\n", + "dtype: int64" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Column names:\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['id', 'name', 'parent_id'], dtype='object')" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Loop through each dataset and display the required information\n", + "for name, df in datasets.items():\n", + " print(f\"\\n--- {name} Dataset Overview ---\")\n", + " \n", + " # Info\n", + " df.info()\n", + " \n", + " # Shape\n", + " print(\"\\nShape of the DataFrame:\")\n", + " display(df.shape)\n", + " \n", + " # First 10 rows\n", + " print(\"\\nFirst 10 rows:\")\n", + " display(df.head(10))\n", + " \n", + " # Missing values\n", + " print(\"\\nMissing values per column:\")\n", + " display(df.isnull().sum())\n", + " \n", + " # Column names\n", + " print(\"\\nColumn names:\")\n", + " display(df.columns)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# RESULT:Empty parent_id Values in the themes.csv File" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## STEP 2: Data Cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": 149, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- colors Dataset Overview ---\n", + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idnamergbis_trans
0-1Unknown0033B2f
10Black05131Df
21Blue0055BFf
32Green237841f
43Dark Turquoise008F9Bf
54RedC91A09f
65Dark PinkC870A0f
76Brown583927f
87Light Gray9BA19Df
98Dark Gray6D6E5Cf
\n", + "
" + ], + "text/plain": [ + " id name rgb is_trans\n", + "0 -1 Unknown 0033B2 f\n", + "1 0 Black 05131D f\n", + "2 1 Blue 0055BF f\n", + "3 2 Green 237841 f\n", + "4 3 Dark Turquoise 008F9B f\n", + "5 4 Red C91A09 f\n", + "6 5 Dark Pink C870A0 f\n", + "7 6 Brown 583927 f\n", + "8 7 Light Gray 9BA19D f\n", + "9 8 Dark Gray 6D6E5C f" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- inventories Dataset Overview ---\n", + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idversionset_num
0117922-1
1313931-1
2416942-1
31515158-1
4161903-1
5171850950-1
61914444-1
72113474-1
822130277-1
925171012-11
\n", + "
" + ], + "text/plain": [ + " id version set_num\n", + "0 1 1 7922-1\n", + "1 3 1 3931-1\n", + "2 4 1 6942-1\n", + "3 15 1 5158-1\n", + "4 16 1 903-1\n", + "5 17 1 850950-1\n", + "6 19 1 4444-1\n", + "7 21 1 3474-1\n", + "8 22 1 30277-1\n", + "9 25 1 71012-11" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- inventory_parts Dataset Overview ---\n", + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
inventory_idpart_numcolor_idquantityis_spare
0148379c01721f
114839571f
21mcsport6251f
31paddle01f
4311816pr0005781f
532343471f
633003291f
733017621f
833020151f
933022152f
\n", + "
" + ], + "text/plain": [ + " inventory_id part_num color_id quantity is_spare\n", + "0 1 48379c01 72 1 f\n", + "1 1 48395 7 1 f\n", + "2 1 mcsport6 25 1 f\n", + "3 1 paddle 0 1 f\n", + "4 3 11816pr0005 78 1 f\n", + "5 3 2343 47 1 f\n", + "6 3 3003 29 1 f\n", + "7 3 30176 2 1 f\n", + "8 3 3020 15 1 f\n", + "9 3 3022 15 2 f" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- inventory_sets Dataset Overview ---\n", + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
inventory_idset_numquantity
03575911-11
13575912-11
23975048-11
33975053-11
4504515-11
5504520-12
6504531-11
7717690-11
8717691-11
9717692-11
\n", + "
" + ], + "text/plain": [ + " inventory_id set_num quantity\n", + "0 35 75911-1 1\n", + "1 35 75912-1 1\n", + "2 39 75048-1 1\n", + "3 39 75053-1 1\n", + "4 50 4515-1 1\n", + "5 50 4520-1 2\n", + "6 50 4531-1 1\n", + "7 71 7690-1 1\n", + "8 71 7691-1 1\n", + "9 71 7692-1 1" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- part_categories Dataset Overview ---\n", + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idname
01Baseplates
12Bricks Printed
23Bricks Sloped
34Duplo, Quatro and Primo
45Bricks Special
56Bricks Wedged
67Containers
78Technic Bricks
89Plates Special
910Tiles Printed
\n", + "
" + ], + "text/plain": [ + " id name\n", + "0 1 Baseplates\n", + "1 2 Bricks Printed\n", + "2 3 Bricks Sloped\n", + "3 4 Duplo, Quatro and Primo\n", + "4 5 Bricks Special\n", + "5 6 Bricks Wedged\n", + "6 7 Containers\n", + "7 8 Technic Bricks\n", + "8 9 Plates Special\n", + "9 10 Tiles Printed" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- parts Dataset Overview ---\n", + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
part_numnamepart_cat_id
00687b1Set 0687 Activity Booklet 117
10901Baseplate 16 x 30 with Set 080 Yellow House Print1
20902Baseplate 16 x 24 with Set 080 Small White Hou...1
30903Baseplate 16 x 24 with Set 080 Red House Print1
40904Baseplate 16 x 24 with Set 080 Large White Hou...1
51Homemaker Bookcase 2 x 4 x 47
610Baseplate 24 x 321
710016414Sticker Sheet #1 for 41055-117
810019stk01Sticker for Set 10019 - (43274/4170393)17
910026stk01Sticker for Set 10026 - (44942/4184185)17
\n", + "
" + ], + "text/plain": [ + " part_num name part_cat_id\n", + "0 0687b1 Set 0687 Activity Booklet 1 17\n", + "1 0901 Baseplate 16 x 30 with Set 080 Yellow House Print 1\n", + "2 0902 Baseplate 16 x 24 with Set 080 Small White Hou... 1\n", + "3 0903 Baseplate 16 x 24 with Set 080 Red House Print 1\n", + "4 0904 Baseplate 16 x 24 with Set 080 Large White Hou... 1\n", + "5 1 Homemaker Bookcase 2 x 4 x 4 7\n", + "6 10 Baseplate 24 x 32 1\n", + "7 10016414 Sticker Sheet #1 for 41055-1 17\n", + "8 10019stk01 Sticker for Set 10019 - (43274/4170393) 17\n", + "9 10026stk01 Sticker for Set 10026 - (44942/4184185) 17" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- sets Dataset Overview ---\n", + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
set_numnameyeartheme_idnum_parts
000-1Weetabix Castle1970414471
10011-2Town Mini-Figures19788412
20011-3Castle 2 for 1 Bonus Offer19871992
30012-1Space Mini-Figures197914312
40013-1Space Mini-Figures197914312
50014-1Space Mini-Figures197914312
60015-1Space Mini-Figures197914318
70016-1Castle Mini Figures197818615
800-2Weetabix Promotional House 11976413147
900-3Weetabix Promotional House 21976413149
\n", + "
" + ], + "text/plain": [ + " set_num name year theme_id num_parts\n", + "0 00-1 Weetabix Castle 1970 414 471\n", + "1 0011-2 Town Mini-Figures 1978 84 12\n", + "2 0011-3 Castle 2 for 1 Bonus Offer 1987 199 2\n", + "3 0012-1 Space Mini-Figures 1979 143 12\n", + "4 0013-1 Space Mini-Figures 1979 143 12\n", + "5 0014-1 Space Mini-Figures 1979 143 12\n", + "6 0015-1 Space Mini-Figures 1979 143 18\n", + "7 0016-1 Castle Mini Figures 1978 186 15\n", + "8 00-2 Weetabix Promotional House 1 1976 413 147\n", + "9 00-3 Weetabix Promotional House 2 1976 413 149" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- themes Dataset Overview ---\n", + "\n", + "First 10 rows:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idnameparent_id
01TechnicNaN
12Arctic Technic1.0
23Competition1.0
34Expert Builder1.0
45Model1.0
56Airport5.0
67Construction5.0
78Farm5.0
89Fire5.0
910Harbor5.0
\n", + "
" + ], + "text/plain": [ + " id name parent_id\n", + "0 1 Technic NaN\n", + "1 2 Arctic Technic 1.0\n", + "2 3 Competition 1.0\n", + "3 4 Expert Builder 1.0\n", + "4 5 Model 1.0\n", + "5 6 Airport 5.0\n", + "6 7 Construction 5.0\n", + "7 8 Farm 5.0\n", + "8 9 Fire 5.0\n", + "9 10 Harbor 5.0" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "for name, df in datasets.items():\n", + " print(f\"\\n--- {name} Dataset Overview ---\")\n", + " \n", + " # First 10 rows\n", + " print(\"\\nFirst 10 rows:\")\n", + " display(df.head(10))\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the Colors Table there is a color with the name \"Unknown\" since there is RGB code i was able to identify this color as mainly Blue. Therefore we will rename the color into \"Blue2\"" + ] + }, + { + "cell_type": "code", + "execution_count": 150, + "metadata": {}, + "outputs": [], + "source": [ + "colors[\"name\"] = colors[\"name\"].replace({\"Unknown\": \"Blue2\"})" + ] + }, + { + "cell_type": "code", + "execution_count": 151, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idnamergbis_trans
0-1Blue20033B2f
10Black05131Df
21Blue0055BFf
32Green237841f
43Dark Turquoise008F9Bf
\n", + "
" + ], + "text/plain": [ + " id name rgb is_trans\n", + "0 -1 Blue2 0033B2 f\n", + "1 0 Black 05131D f\n", + "2 1 Blue 0055BF f\n", + "3 2 Green 237841 f\n", + "4 3 Dark Turquoise 008F9B f" + ] + }, + "execution_count": 151, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "colors.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Step 3: Univariate Analysis" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Table: Sets" + ] + }, + { + "cell_type": "code", + "execution_count": 152, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
set_numnameyeartheme_idnum_parts
000-1Weetabix Castle1970414471
10011-2Town Mini-Figures19788412
20011-3Castle 2 for 1 Bonus Offer19871992
30012-1Space Mini-Figures197914312
40013-1Space Mini-Figures197914312
\n", + "
" + ], + "text/plain": [ + " set_num name year theme_id num_parts\n", + "0 00-1 Weetabix Castle 1970 414 471\n", + "1 0011-2 Town Mini-Figures 1978 84 12\n", + "2 0011-3 Castle 2 for 1 Bonus Offer 1987 199 2\n", + "3 0012-1 Space Mini-Figures 1979 143 12\n", + "4 0013-1 Space Mini-Figures 1979 143 12" + ] + }, + "execution_count": 152, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sets.head()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 153, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "name\n", + "Basic Building Set 55\n", + "Universal Building Set 32\n", + "Helicopter 23\n", + "Basic Set 23\n", + "Fire Station 14\n", + " ..\n", + "Micro Rumble Blade 1\n", + "Micro Chaos Chariot 1\n", + "Micro Shinto Shrine 1\n", + "Micro Electromech Robot 1\n", + "Micro Kai's Fighter Jet 1\n", + "Name: count, Length: 10370, dtype: int64" + ] + }, + "execution_count": 153, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sets[\"name\"].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 154, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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CRMmANBcVFV939XJ9Pxom2y3s7PD2rVrsWbNGty4cQMHDhzAp59+ijlz5sDOzg5BQUFaP//q5ywvAwYMwPr16xEUFIRp06ahffv26N27N/r27avVgpJNmjTB/PnzIZFIYGRkBHd39zwXo33zvZvfcwHkPIsHDhzAs2fP8PTp0zJ576akpBT6Prtx4wYuXryYq7+9mvr9ffv2bdjZ2eX6pUtery0vJiYmRX5uvLy84Obmhi1btmDEiBEAclq5WFlZoV27dgCK9z3qza9Tccnl8lz3rUqVKhq9zm/cuIEnT57AxsZGq9jyU7NmTdjY2KBu3bpiQrwo740XL15g0aJFCA8Px71798RfUqnnvCmve7RkyRIMGzYMNWrUgI+PD7p06YKhQ4cWuIAwEREREek2JtGJiKjCerNCUl1JuHTpUnh7e+d5jFKpRHp6utbXeL3i+3V5LYgHAO+++26+iZrXewQDyFW9qPZ60kYbUqkUgwcPxjfffIM1a9YgOjoa9+/fx7vvvluk81D+3NzcEBsbC5VKpdGX+c2vqZqZmRns7Oxw8eLFAs978eJFVKtWTey9XhiJRAJXV1e4urqia9eucHFxwaZNmxAUFKT1818QhUKB48eP4+jRo9izZw/279+PLVu2oF27djh48GC+z6yalZVVob+QUF+nrGn73tVWdnY2OnbsiE8++STP/epf7pSUu7s7Lly4gPT0dBgaGuY55+LFi5DJZBq/TBgwYAAWLFiAR48ewcTEBDt37sSgQYOgr68vxg8U7XtUaX2dCntugJz4bGxssGnTpjz35/fLC20U5b3xwQcfIDw8XFyU1MzMDBKJBAMHDszzrzPyukf9+/dHq1at8Msvv+DgwYNYunQpPv30U2zbtg2dO3cu9usgIiIiooqLSXQiItIZzs7OAABTU9MCE3nW1tZQKBRideLrrl27prGtrtpNTk7WGH+zYtra2homJibIysrSKomoDfXruXz5cqHnHDp0KJYvX45du3Zh3759sLa2LrS9hbW1NYyMjHK9ZgD466+/oKenhxo1ahT/BeTBwcEBQM59fr0qMyMjA3Fxcble5/379/Hs2TONavTr168DgLjQ5NvQrVs3/Pbbb/jll1/yXfAxr2O++eYbnDx5Ei1btsy1/8SJE4iPj9doV1MUtWrVQpUqVZCQkABA++cfyD/BDAB6enpo3749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MWKEIAiCMGzYsHznABDi4uI0zpmQkCBMmTJF8PDwEBQKhWBoaCjUqlVLGDp0qHD8+PE847h48aIwaNAgwc7OTnwmBg0aJFy6dEmr13Hx4kVhypQpQsOGDQULCwtBX19fsLOzE/r16yf88ccfueZr+/zPmzdPqFatmqCnpye+1iNHjgg9evQQ7O3tBQMDA8He3l4YNGiQcP36da3ud9euXQucU9hzdPjwYaFFixaCQqEQTE1Nhe7duwtXrlzJNa8s3ru3b98Whg4dKlhbW4tf1/Hjxwvp6eninKdPnwrTp08XateuLRgYGAhWVlZC8+bNhWXLlgkZGRnivKSkJOG9994TTE1NBTMzM+G9994TLly4kOf7u6B7NXLkSKFmzZqCTCYTrKyshHfeeUc4ceJEvsfcuHFDfHZPnjyZ55ySfI8qyKlTp8Svyev3d9iwYYKxsXGu+Xl9vQRBEL7++mvBx8dHUCgUgomJiVC/fn3hk08+Ee7fv691LPk9i9q8Nx4/fiwMHz5csLKyEpRKpeDv7y/89ddfgoODgzBs2DBxXn7/n0pPTxemTJkieHl5id+zvby8hDVr1mgdPxERERHpHokgFHF1MyIiIh0WGhqKsLCwIi/uWRE8evQIdnZ2mDNnDmbPnl3e4ZSYn58fHj16VGivaiIiIiIiIqLyxJ7oREREOiIiIgJZWVl47733yjsUIiIiIiIiov8M9kQnIiKq4H799VdcuXIFCxYsQM+ePeHo6FjeIRERERERERH9ZzCJTkREVMHNnTsXp06dQosWLfDFF1+UdzhERERERERE/ynsiU5ERERERERERERElA/2RCciIiIiIiIiIiIiygeT6ERERERERERERERE+aj0PdGzs7Nx//59mJiYQCKRlHc4RERERERERERUhgRBwNOnT2Fvbw89PdaPElHJVfok+v3791GjRo3yDoOIiIiIiIiIiN6iu3fvonr16uUdBhFVApU+iW5iYgIg5xunqalpOUdDeVGpVDh48CA6deoEmUxW3uEQaY3PLukqPrukq/jskq7is0u6is8u6ap///0XTk5OYk6IiKikKn0SXd3CxdTUlEn0CkqlUsHIyAimpqb8wYx0Cp9d0lV8dklX8dklXcVnl3QVn13SVSqVCgDY1peISg0bQxERERERERERERER5YNJdCIiIiIiIiIiIiKifDCJTkRE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BycnJ8iLsKjn626cOYVfI77WqEg3sbRC22Gj4NKkeWmFSm9JREQEJk2aJPZppxzavlfYzoWIiIiomNRtWtjOhYiIiIgqG5cmzeHs2wT3rv6J1OTHUJpXQTX3uuVSgU5U3phEJyIiIiqmNNXLdi75JtHZzoWIiIiIdJeenhQ16nqWdxhE5Y490YmIiIiKSaxEl+VdjaMeT1OxEp2IiIiIiMpPYGAgW7mUAJPoRERERMWU/rISXc5KdCIiIiIiokqLSXQiIiKiYiq8Ev1lEp2V6ERERERERDqLSXQiIiKiYuLCokRERERERJUfk+hERERExaRu08KFRYmIiIiIiCovJtGJiIiIikndpkVdcf6mV0l0VqITERERERHpKibRiYiIiIopTV2JLsv7Ryr5y17paSpWohMREREREekqJtGJiIiIiomV6ERERERElVNoaCi8vb3LOwyqIJhEJyIiIiomcWHRfCrRDV9WoquT7URERERElL+HDx9i7NixqFmzJgwNDWFrawt/f39ER0eXd2gVWkREBMzNzcs1hri4OAwePBj29vaQy+WoXr06evTogb/++kvrcwQGBqJnz55lF2QJ6Jd3AERERES6iguLEhEREVFlJmQLSI97guynGdAzMYChkxkkepIyu16fPn2QkZGBDRs2oFatWvjnn39w5MgRJCUlldk16RVBEJCVlQV9/aKljFUqFTp27Ig6depg27ZtsLOzw99//419+/YhOTm5bIJ9y1iJTkRERFRMYiU627kQERERUSXz4vIjPPj0LB59cwn/br6GR99cwoNPz+LF5Udlcr3k5GScOHECn376Kdq2bQsHBwc0btwY06dPxzvvvAMAiI+Ph0QiQUxMjMZxEokEUVFRAICoqChIJBLs2bMHnp6ekMvlaNq0KS5fviweo67c3r59O1xcXCCXy+Hv74+7d+8WGOP69evh7u4OuVwONzc3rFmzRtynju2nn35Cq1atoFAo4Ovri+vXr+PcuXNo1KgRlEolOnfujIcPHxb5vNu2bUPbtm1hZGQELy8vnD59Wny9w4cPx5MnTyCRSCCRSBAaGgoA+N///odGjRrBxMQEtra2GDx4MBITE8Vzq+/Vvn374OPjA0NDQ3z//ffQ09PD+fPnNWJcsWIFHBwckJ2d+982f/75J27duoU1a9agadOmcHBwQIsWLTB//nw0bdpU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ujUaNGiAtWvXQiqVIiYmBjKZDACQlpYGHx8fTJ06FaamptizZw/ee+89ODs74//Zu/M4Oeo6f/yv6ntmenqOZK5khlwkIScQIOFIOAQEOURYFRWXXUVZ/a6LAi6ICgiyoOzil2V11/XryvHTVXRFVwRCAgohgSQciTkhIRlyzpFkjp6emb6q6vdH1aen5+rp6q6qru55PR+PPGa6u7r60zM1k+l3vfv1Xr58eU7PW5blVOF/2bJlOe1jLJs2bcJNN92Ehx56CB/72MewevVq3HvvvRPeb6Lvw4033ojjx4/jlVdegdfrxW233YbOzs6M+2xsbMTzzz+P6667DpWVlWNu85WvfAW7du3Cr371K0ybNg2/+93vcPnll2P79u0499xz8eijj+Kee+5JdfDn20Gf8/sNWlpa0NLSkteDExERERWj1GBRb7aZ6HqcS4Kd6ERERERkvwFFwZx1203ZlwqgLZbAvNd2ZLX9vvOXoMKdXfOJETU1NfjhD38It9uNU045BVdeeSVefvnlMYvol112GSoqKvC73/0Of/3Xfw0A+O///m989KMfRWVlJWKxGB588EG89NJLOOeccwAAs2fPxvr16/Gf//mfw4ro999/Py699NLU5YMHD+If//EfccoppwDAsEbj6dOn4+tf/3rq8j/8wz/gxRdfxK9//WtDRfTe3t5UEXhwcBBerxc/+clPMGfOnKz3MZF//dd/xeWXX4477rgDADBv3jy8/vrrWL16dcb7Zfo+vPvuu3jppZfw5ptv4swzzwQA/PSnP52wGfsnP/kJbrjhBkyZMgWnnnoqVq5ciY9//OM477zzAGhf88cffxwHDx7EtGnTAGh57atXr8bjjz+OBx98EFVVVakOfjMYjnP5q7/6K3z/+98fdf3DDz+MT3ziE6YsioiIiMjJjMa5BLyMcyEiIiIiMtOiRYvgTivONzU1jdvh7PF48MlPfhK/+MUvAAD9/f343//9X9xwww0AgPfffx8DAwO49NJLU7nfwWAQTz31FPbt2zdsX6IYLNx22234whe+gEsuuQTf+973hm0vyzK++93vYsmSJaitrUUwGMSLL76IgwcPGnqulZWV2Lp1K7Zu3YotW7bgwQcfxJe+9CU8++yzhvaTye7du7FixYph14kTCplk+j6899578Hg8wzrmTz75ZNTU1GTc5/nnn4/9+/fj5Zdfxsc//nHs3LkTq1atwne/+10AwPbt2yHLMubNmzfs+/Xqq6+O+n6ZxXAn+rp168bMkPnIRz6CRx55xIw1ERERETmWqqqIGo5zEYNFGedCRERERPYrd7mw7/wlWW27sSeCG7a1TrjdL5bOwtnVE0dklLuy7+ENhULo7e0ddX1PTw+qqqqGXSciUwRJkqBkiKy54YYbcMEFF6CzsxNr165FWVkZLr/8cgBAJBIBADz33HOYPn36sPv5/f5hlysqKoZd/s53voPPfOYzeO655/DCCy/g3nvvxa9+9Stce+21+Od//mf867/+Kx599FEsWbIEFRUV+NrXvoZ4PD7BV2I4l8uFk08+OXV56dKlWLNmDb7//e/j6quvTj1/VR0ewpOeTW4Vo98HI/tdtWoVVq1ahTvvvBMPPPAA7r//ftx5552IRCJwu914++23hxXwgfxjW8ZjuIgeiUTg8/lGXe/1ehEOh01ZFBEREZFTxeWhPwgD2ca5iEx0xrkQERERUQFIkpR1pMqFtSE0+b1ojyXGzEWXADT5vbiwNpRVJroR8+fPx5o1a0Zd/84772DevHl57fvcc89FS0sLnn76abzwwgv4xCc+kSoAL1y4EH6/HwcPHhwW3ZKtefPmYd68ebj11lvx6U9/Go8//jiuvfZabNiwAddccw0++9nPAtCGl+7ZswcLFy7M67kAgNvtxuDgYOpyXV0d2traUpf37t2LgYGBrPe3YMECbNq0adh1GzduzGuN8+fPRzKZxJYtW3DGGWcA0Lr+u7u7De9r4cKFSCaTiEajOP300yHLMjo7O7Fq1aoxt/f5fJBl85qYDMe5LFmyBE8//fSo63/1q1+ZcgAQEREROVl6JIvRwaJxWYGijPVShIiIiIjIGdyShAfmat3YI0vk4vJ35043vYAOAF/+8pexZ88e3HLLLdi2bRvee+89/OAHP8Avf/lL3H777Xnv/zOf+Qx+/OMfY+3atakoF0CLS/n617+OW2+9FU8++ST27duHd955B//2b/+GJ598ctz9DQ4O4itf+QpeeeUVHDhwABs2bMCbb76JBQsWANDy0deuXYvXX38du3fvxt/93d+ho6PD8LpVVUV7ezva29vR2tqKn/zkJ3jxxRdxzTXXpLb50Ic+hB/+8IfYsmUL3nrrLXzpS18a1SWeyS233ILVq1fjX/7lX7B371788Ic/nDAPfSKnnHIKLrnkEtx8883YvHkztmzZgptvvhllZWUZh81eeOGF+M///E+8/fbb+OCDD/D888/jm9/8Ji666CKEQiHMmzcPN9xwA2688UY888wzaG1txebNm/HQQw/hueeeAwDMnDkTkUgEL7/8Mo4fP27ohMJYDHei33333bjuuuuwb98+fOhDHwIAvPzyy/jlL3+J3/zmN3kthoiIiMjpRDe5JAFed3YvHMRgUUArpAdc5g9WIiIiIiIyy5V11fjp4pn49t4jaIsNRYI0+b347tzpuLKu2pLHnT17NtatW4dvfetbuOSSSxCPx3HKKafgN7/5TSp6JR833HAD/umf/gkzZsxIDakUvvvd76Kurg4PPfQQ9u/fj+rqaixbtgzf/OY3x92f2+3GiRMncOONN6KjowNTp07Fddddh/vuuw8A8O1vfxv79+/HZZddhvLyctx888342Mc+NmZkTSbhcBhNTU0AtHiZGTNmpKJNhEceeQSf+9znsGrVKkybNg3/+q//irfffjvrxzj77LPx//7f/8O9996Le+65B5dccgm+/e1vp3LIc/XUU0/hpptuwvnnn4/GxkY89NBD2LlzJwKBwLj3ueyyy/Dkk0/im9/8JgYGBjBt2jRcddVVuOeee1LbPP7443jggQdw++2348iRI5g6dSrOPvtsXHXVVQC0dx586UtfwvXXX48TJ07g3nvvHTOiPFuSOjIsJwvPPfccHnzwQWzduhVlZWVYunQp7r333pze7mC1cDiMqqoq9Pb2IhQKFXo5NIZEIoHnn38eV1xxhaEzZESFxmOXihWP3fwc7h7Ayu//GQGvC+9+9yNZ3SchK5j7rRcAAH+558OoKufXPRc8dqlY8dilYsVjl4rViRMnMHXq1EldC4pGo2htbcWsWbMyFisnIqsqNvZE0BlPot7nwdnVQUs60GnyOHz4MFpaWvDSSy/h4osvLvRysv5ZMdyJDgBXXnklrrzyypwXR0RERFSsRJxLtlEuAOBxSXBJgKKK4aIsRBARERGR87klCefVVBZ6GVTE/vSnPyESiWDJkiVoa2vDHXfcgZkzZ+L8888v9NIMyamITkRERDRZRRPacBqRc54NSZIQ8LoxEJeHZaoTERERERGVskQigW9+85vYv38/Kisrce655+IXv/hF0b3DyXAR3eVyZQx+N3PqKREREZHTpDrRvcbms/s9LgzE5VQRnoiIiIiIqNRddtlluOyyywq9jLwZLqL/7ne/G3Y5kUhgy5YtePLJJ1Oh+URERESlSgwWDRiIcwFE/EuCnehERERERERFxnAR/Zprrhl13cc//nEsWrQITz/9NG666SZTFkZERETkRFqmeQ6d6Pr24v5ERERERERUHIy9+svg7LPPxssvv2zW7oiIiIgcKZfBotr2ehE9wU50IiIiIrKHqqqFXgKRo2X7M2JKEX1wcBCPPfYYpk+fbsbuiIiIiBxrqIhuNBPdPez+RERERERWEUMbBwYGCrwSImcTPyMTDTo1HOdSU1MzbLCoqqro6+tDeXk5fv7znxvdHREREVFRiemDQY0W0QOMcyEiIiIim7jdblRXV6OzsxMAUF5ePqyeRzTZqaqKgYEBdHZ2orq6Gm535ncaGy6i/9//+3+H/dC5XC7U1dVhxYoVqKmpMb5iIiIioiISzTnOhZ3oRERERGSfxsZGAEgV0olotOrq6tTPSiaGi+h/+7d/m8t6iIiIiEqC6EQPGB0sqneuRxPsRCciIiIi60mShKamJtTX1yORSBR6OUSO4/V6J+xAF7Iqom/bti3rB1+6dGnW2xIREREVm5wHi6biXNiJTkRERET2cbvdWRcKiWhsWRXRTzvtNEiSlJpWmilDSZbZXUVERESlK1VEN9yJrse5JFhEJyIiIiIiKiZZvfprbW3F/v370draimeeeQazZs3Cv//7v2PLli3YsmUL/v3f/x1z5szBb3/7W6vXS0RERFRQYjCo0cGiYnsOFiUiIiIiIiouWXWiz5gxI/X5Jz7xCTz22GO44oorUtctXboULS0tuPvuu/Gxj33M9EUSEREROYXoJDca5xLwcrAoERERERFRMTLWQgVg+/btmDVr1qjrZ82ahV27dpmyKCIiIiKnyr8TnUV0IiIiIiKiYmK4iL5gwQI89NBDiMfjqevi8TgeeughLFiwwNTFERERETlNqhPdcCa6tn00wTgXIiIiIiKiYpJVnEu6H//4x7j66qvR3NyMpUuXAgC2bdsGSZLw7LPPmr5AIiIiIicRneQiniVbfi8HixIRERERERUjw0X05cuXY//+/fjFL36Bd999FwBw/fXX4zOf+QwqKipMXyARERGRk3CwKBERERER0eRiuIgOABUVFbj55pvNXgsRERGR44lOdKODRZmJTkREREREVJxyKqLv27cPjz76KHbv3g0AWLRoEW655RbMmTPH1MUREREROU0qE91wJ7oe58IiOhERERERUVExPFj0xRdfxMKFC7F582YsXboUS5cuxcaNG7Fo0SKsXbvWijUSEREROUYqzsXoYFEv41yIiIiIiIiKkeFO9G984xu49dZb8b3vfW/U9XfeeScuvfRS0xZHRERE5DTRRK5xLhwsSkREREREVIwMd6Lv3r0bN91006jrP//5z2PXrl2mLIqIiIjIqUQneSDHTvQoO9GJiIiIiIiKiuEiel1dHbZu3Trq+q1bt6K+vt6MNRERERE5Vt6DRdmJTkREREREVFQMx7l88YtfxM0334z9+/fj3HPPBQBs2LAB3//+93HbbbeZvkAiIiIiJxkqonOwKBERERER0WRguIh+9913o7KyEo888gjuuusuAMC0adPwne98B7fccovpCyQiIiJyklhCHyyaayc641yIiIiIiIiKiqEiejKZxH//93/jM5/5DG699Vb09fUBACorKy1ZHBEREZHTpDrRDWaiB7zsRCciIiIiIipGhl79eTwefOlLX0I0GgWgFc9ZQCciIqLJIikrSCoqgFziXJiJTkREREREVIwMDxZdvnw5tmzZYsVaiIiIiBwtvYvccJyL3rkeTcpQVdXUdREREREREZF1DGei/5//839w++234/DhwzjjjDNQUVEx7PalS5eatjgiIiIiJxleRM9tsKiqAglZhc8jmbo2IiIiIiIisobhIvqnPvUpABg2RFSSJKiqCkmSIMsclkVERESlSQwF9bldcLmMFcHTi+6xpAyfwSI8ERERERERFYbhInpra6sV6yAiIiJyPJFnbrQLfeR9YkkFnCpDRERERERUHAwV0cPhMPbs2YN4PI7ly5ejrq7OqnUREREROY6IcxH55kZIkgSfx4V4UhkWC0NERERERETOlnURfevWrbjiiivQ0dEBVVVRWVmJX//617jsssusXB8RERGRY4g4F6NDRYWAKKInGH9HRERERERULLJuo7rzzjsxa9YsrF+/Hm+//TYuvvhifOUrX7FybURERESOEs0jzgUA/F6t+M5OdCIiIiIiouKRdSf622+/jTVr1mDZsmUAgJ/97Geora1FOBxGKBSybIFERERETpHqRPfm1okuiu9RdqITEREREREVjazbqLq6utDc3Jy6XF1djYqKCpw4ccKShRERERE5TT6DRdPvx050IiIiIiKi4mFosOiuXbvQ3t6euqyqKnbv3o2+vr7UdUuXLjVvdUREREQOkhosmnMRnXEuRERERERExcZQEf3iiy+GqqrDrrvqqqsgSRJUVYUkSZBlvj2ZiIiISlPecS5evROdcS5ERERERERFI+siemtrq5XrICIiInK8fDvRAzZ1osuKis2tXejsi6K+MoDls2rhdkmWPiYREREREVGpyrqIPmPGDCvXQUREROR4YiBoznEuXusz0VfvaMN9z+5CW280dV1TVQD3Xr0Qly9usuxxiYiIiIiISlVurwCJiIiIJqGhTvQc41z04nvUojiX1Tva8OWfvzOsgA4A7b1RfPnn72D1jjZLHpeIiIiIiKiUsYhORERElKVYQiuiB7zOGywqKyrue3YX1DFuE9fd9+wuyMpYWxAREREREdF4WEQnIiIiylJqsGienehiP2ba3No1qgM9nQqgrTeKza1dpj82ERERERFRKWMRnYiIiChLqTiXXDvRRSZ6wvxO9M6+8QvouWxHREREREREGsOvAAcHBzEwMJC6fODAATz66KNYs2aNqQsjIiIicpqhTvTciugBC+Nc6isDpm5HREREREREGsOvAK+55ho89dRTAICenh6sWLECjzzyCK655hr8x3/8h+kLJCIiInIK0UGec5yL17o4l+WzatFUFYA0zu0SgKaqAJbPqjX9sYmIiIiIiEqZ4SL6O++8g1WrVgEA/ud//gcNDQ04cOAAnnrqKTz22GOmL5CIiIjIKaIiziXHTnQrB4u6XRLuvXohAIwqpIvL9169EG7XeGV2IiIiIiIiGovhV4ADAwOorKwEAKxZswbXXXcdXC4Xzj77bBw4cMD0BRIRERE5RSyhdZAHvPkNFo0mzO9EB4DLFzfhPz67DI1VwyNbGqsC+I/PLsPli5sseVwiIiIiIqJSZriIfvLJJ+P3v/89Dh06hBdffBEf/vCHAQCdnZ0IhUKmL5CIiIjIKWJ5d6KLOBfzO9GFyxc3Yf2dH0JlwAMAmBr0Yf2dH2IBnYiIiIiIKEeGXwHec889+PrXv46ZM2di+fLlOOeccwBoXemnn3666QskIiIicorUYFFvjkV0vYNdZKtbxSUNdbsnZJURLkRERERERHnwGL3Dxz/+caxcuRJtbW049dRTU9df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qP25Fy7iOBdgeBEdAA53D2JBE4voRERERERkvaxbqe677z5EIhEr10JERETkWObFuVg9WFTvRPeLTnSRiV7ccS7h6OgiOhERERERkR2yfhWoqqqV6yAiIiJytKhZcS5ea+Nc+mKiE314nEsxDxYFgF69E90taX+THuoaKORyiIiIiIhoEjH0KlDkohMRERFNNmbFuYjBolHL4lxEJrp32Mei70Qf1J5XY5l2+VA3i+hERERERGSPrDLRhXnz5k1YSO/q6sprQUREREROJDrHnT5YNDxisGioRDrRRZxLc4WKIwMS41yIiIiIiMg2horo9913H6qqqqxaCxEREZFjiUGgopM8V9Znoo89WLTYi+gizqW5QsWmY4xzISIiIiIi+xgqon/qU59CfX29VWshIiIicqyhOJd8M9G1InzM8jiX0hksmpAVDMS1zv3pFVom+uHuQaiqyrhBIiIiIiKyXNavAvkChYiIiCYzs+JcAhbHuYhieaiEOtHT1z69QvsYiSVT3elERERERERWyvpVoKqqVq6DiIiIyNFSnej5xrmITnQL4lwSspIaWDq6E714i+iiWF7hcyPgBqYGfQCAQ13MRSciIiIiIutlXURXFIVRLkRERDRpRRNmDxY1v4ieXigPporo2se4rKSeQ7EJ60X0UJl2QqC5pgwAcLibuehERERERGS9/F4FEhEREU0Sougd8JozWNSKgraIcinzuuF1a48T9HkgUvmKtRs9nIqo0U4INFdrRfRDLKITEREREZENWEQnIiIiyoIYBJp/J7p1cS4jh4oCgMslIegTuejFmSEeHhz+vEQnOuNciIiIiIjIDgUtoq9btw5XX301pk2bBkmS8Pvf/37Y7aqq4p577kFTUxPKyspwySWXYO/evYVZLBEREU1aqqoODRb15llE1+8fs6ATXXRspxfR0y8Xaye6yESvYpwLEREREREVQFavApctW4bu7m4AwP3334+BAXNesPT39+PUU0/Fj370ozFvf/jhh/HYY4/hxz/+MTZt2oSKigpcdtlliEajpjw+ERERUTaSigpFn7Ge72DRgIWDRYc60b3Dri/24aKj4lxEJ3o3O9GJiIiIiMh6WRXRd+/ejf7+fgDAfffdh0gkYsqDf+QjH8EDDzyAa6+9dtRtqqri0Ucfxbe//W1cc801WLp0KZ566ikcPXp0VMc6ERERkZXSC95mDhZVVTWvfY00VpxL+uXijXMRHfZ6J3r1UCe62V9DIiIiIiKikTwTbwKcdtpp+NznPoeVK1dCVVX8y7/8C4LB4Jjb3nPPPaYsrLW1Fe3t7bjkkktS11VVVWHFihV444038KlPfcqUxyEiIiKaSPoQULOK6AAQl5W8O9vT9aU6tkd2opdKnIsHiAJNVQFIEhBNKDgeiaOu0l/gFRIRERERUSnLqoj+xBNP4N5778Uf//hHSJKEF154AR7P6LtKkmRaEb29vR0A0NDQMOz6hoaG1G1jicViiMViqcvhcBgAkEgkkEgUZ/dVqRPfF35/qNjw2KVixWPXuP5B7W8Lv8eFZDK/QrRLHepqjwzE4CrzZtjamJ5+bZ0VPtew72+FTyvU9wzEivL73jMQBwBUeF1AFJBUGQ2VfrSHY2g9FkZ1oLqwCySaAH/vUrHisUvFiscsEZktqyL6/Pnz8atf/QoA4HK58PLLL6O+vt7SheXqoYcewn333Tfq+jVr1qC8vLwAK6JsrV27ttBLIMoJj10qVjx2s9c5CAAeuFQZzz//fF77UlVAghsqJDz/4lqEfKYsEQCw7QMXABeOHT2E558/kLq+u1O7/p3tu9HQs9O8B7TJ/kPa+g/uew9N9dqxW6G6AUh47s9voG0qI12oOPD3LhUrHrtUbMya5UdEJGRVRE+nKOYPwRpLY2MjAKCjowNNTU2p6zs6OnDaaaeNe7+77roLt912W+pyOBxGS0sLPvzhDyMUClm2XspdIpHA2rVrcemll8LrNa8bj8hqPHapWPHYNe7d9j5g6xsIlvlxxRUX5r2/b7z9EqIJBSsvuCg1JNMMG36/E2g7gqUL5uKKi+akrt/x4h5s6PgAjS0zccUVp5j2eHb52aFNQE8vzjnzVCgHt+LSSy/FK4PvYt/WNkydMR9XXDC70Eskyoi/d6lY8dilYnXixIlCL4GISozhIjoA7Nu3D48++ih2794NAFi4cCG++tWvYs6cORPcM3uzZs1CY2MjXn755VTRPBwOY9OmTfjyl7887v38fj/8/tG5mF6vl//pOxy/R1SseOxSseKxmz1Zn8Xu97pN+ZoFvG5EEwpkuEz9HvQntGaH6gr/sP1WV2h/Gw0klKL8nvfFtAidmooATkA7dlumaPN5joZjRfmcaHLi710qVjx2qdjweCUisxmejPXiiy9i4cKF2Lx5M5YuXYqlS5di06ZNWLRokeG3eEUiEWzduhVbt24FoA0T3bp1Kw4ePAhJkvC1r30NDzzwAP7whz9g+/btuPHGGzFt2jR87GMfM7psIiIiopzF9MGi+Q4VFcR+Ykl5gi2NEYNDg/7hfRLFPlg0PKitO31gaovewX+4e7AgayIiIiIiosnDcCf6N77xDdx666343ve+N+r6O++8E5deemnW+3rrrbdw0UUXpS6LGJa/+Zu/wRNPPIE77rgD/f39uPnmm9HT04OVK1di9erVCAQCRpdNRERElLNoUuvw9nvcpuxP7CeWNDcmry+qDdGqDAzvvirmIrqqqggPas8rVDb0p2tzjTbr5lAXM0+JiIiIiMhahovou3fvxq9//etR13/+85/Ho48+amhfF154IVR1/EFQkiTh/vvvx/333290mURERESmSXWie03uRE+YXUQXHdsjOtH9Xv32hKmPZ4dYUkFc1r5OwzrRa7VO9CM9g1AUFS6XVJD1ERERERFR6TP8SrCuri4Vv5Ju69atqK+vN2NNRERERI4iOsYDZnWi68X4qOlxLqXXiS660F0SUOEb+vo3hgLwuCQkZBUdfdFCLY+IiIiIiCYBw53oX/ziF3HzzTdj//79OPfccwEAGzZswPe///1UHAsRERFRKRFFdPM60fU4F4s60StHdqLrRfVwMRbR004MpHebe9wuNFUHcKhrEIe6BtFUVVaoJRIRERERUYkzXES/++67UVlZiUceeQR33XUXAGDatGn4zne+g1tuucX0BRIREREVmhgA6uTBoklZwUBc29/oIrroRC++OJdevRO9qsw76raWmnIc6hrE4e4BLJ9Va/fSiIiIiIhokjBcRJckCbfeeituvfVW9PX1AQAqKytNXxgRERGRU4iOcbMGiwa85g8WjcSGusxHxrmILPFYUkE8qcBn0skAO4QH9Zz3stF/trbUlAM4gUNdgzavioiIiIiIJhPDRfR0LJ4TERHRZJCKczG9E928IrqIcvF7XKOK5MG0zvS+aAJTgn7THtdqIs4lFBjdid5co0W4HO4esHVNREREREQ0uRRPGxIRERFRgUQTepyLaZnoehE9YV6cS3icoaIA4HZJqaGcxTZcNGOcS205AOAQi+hERERERGQhFtGJiIiIJiA6xgMmxbmkBota0IkeCoz9RkNRXC+2Inp4cOJO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uJjnnnuOsLAw/P396devX7m+6co5wdq1a2natCleXl7UqFGDmTNnXuvVE7cpd/XbF198kWbNmuHl5UXjxo1tvte+ffto37493t7exMbG8vHHH1+r1RL/Ee7ov3v37mXgwIHExsbi4+ND3bp1+eqrr8q9l+x3hRDOSBJduEVBQQGNGjVi0qRJ5Z5TFIXevXuTmJjIb7/9xu7du6lcuTKdO3emoKDAutzmzZu577776NKlC9u2bWP79u08//zzqNUXuumjjz7KwYMHWblyJcuWLePff//lqaeeui7rKG5PV9t3Y2NjSU1NLfNv3Lhx+Pv7061bNwBMJhP3338/er2eTZs28eOPPzJz5kzeeeed67qu4vbijv3u4MGDiY+P5/fff2f//v307duXAQMGsHv3busyst8V7na1fbegoIAuXbqgUqlYvXo1GzduRK/X06NHD8xmszWW9F3hbuvWreO5555jy5YtrFy5EoPBQJcuXcrsV1955RWWLl3K/PnzWbduHWfOnKFv377W5105J0hKSuL++++nU6dO7Nmzh5dffpknnniCFStWXNf1FbcHd/Tb84YNG8ZDDz1k831yc3Pp0qULlStXZufOnXzyySe8++67TJky5Zqtm7j9uaP/7ty5kwoVKvDzzz9z8OBBRo8ezahRo5g4caJ1GdnvCiFcogjhZoCyePFi69/x8fEKoBw4cMD6mMlkUiIiIpSpU6daH2vVqpUyZswYu3EPHTqkAMr27dutj/3555+KSqVSTp8+7d6VEP9JV9p3L9W4cWNl2LBh1r+XL1+uqNVqJS0tzfrYd999pwQGBiolJSXuXQnxn3SlfdfPz0+ZNWtWmVihoaHWZWS/K661K+m7K1asUNRqtaLT6azL5OTkKCqVSlm5cqWiKNJ3xfVx7tw5BVDWrVunKIqlH3p4eCjz58+3LnP48GEFUDZv3qwoimvnBG+++aZSv379Mu/10EMPKV27dr3WqyT+A66k315s7NixSqNGjco9/u233yohISFlzm1Hjhyp1K5d2/0rIf6zrrb/nvfss88qnTp1sv4t+10hhCtkJLq45kpKSgDw9va2PqZWq/Hy8mLDhg0AnDt3jq1bt1KhQgXatm1LZGQkHTt2tD4PlpHqwcHBNG/e3PpY586dUavVbN269TqtjfgvcaXvXmrnzp3s2bOH4cOHWx/bvHkzd9xx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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Calculate value counts\n", + "name_counts = sets['name'].value_counts()\n", + "\n", + "# Select the top 10 most frequent set names\n", + "top_n = 10\n", + "top_names = name_counts.head(top_n).index.tolist()\n", + "\n", + "# Filter the DataFrame to include only the top set names\n", + "filtered_sets = sets[sets['name'].isin(top_names)].copy()\n", + "\n", + "# Group the data by 'year' and 'name' and count occurrences\n", + "grouped_counts = filtered_sets.groupby(['year', 'name']).size().reset_index(name='counts')\n", + "\n", + "# Pivot the data to have years as index and set names as columns\n", + "pivot_df = grouped_counts.pivot(index='year', columns='name', values='counts').fillna(0)\n", + "\n", + "# Ensure the years are sorted\n", + "pivot_df = pivot_df.sort_index()\n", + "\n", + "\n", + "# Plot the data\n", + "\n", + "plt.figure(figsize=(15, 7))\n", + "for column in pivot_df.columns:\n", + " plt.plot(pivot_df.index, pivot_df[column], marker='o', label=column)\n", + "\n", + "plt.xlabel('Year')\n", + "plt.ylabel('Number of Times Produced')\n", + "plt.title('Frequency of Top LEGO Sets Produced Over the Years')\n", + "plt.legend(title='Set Name', bbox_to_anchor=(1.05, 1), loc='upper left')\n", + "plt.grid(True)\n", + "plt.tight_layout()\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 155, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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giB4ezlEREREREQU4ERRRF1dHdLT06FQuDcHz0AfwNmzZznRmoiIiIiIiHrc6dOn0atXL7c+JgN9ANHR0QAsT3BMTIyXV9Mxg8GAr7/+GlOmTIFKpfL2cqiH8LwHJ5734MTzHrx47oMTz3tw4nkPTvbOe21tLTIzM+V41J0Y6ANyuX5MTIzPB/oRERGIiYnhL4UgwvMenHjegxPPe/DiuQ9OPO/Biec9OHV23j3RPs5hfEREREREREQBhIE+ERERERERUQBhoE9EREREREQUQBjoExEREREREQUQBvpEREREREREAYSBPhEREREREVEAYaBPREREREREFEAY6BMREREREREFEAb6RERERERERAGEgT4RERERERFRAGGgT0RERERERBRAGOgTERERERERBRAG+kREREREREQBJMTbCyAiIiIiIiLqLpNZxPbCKpTX6ZAcrca4rHgoFYK3l+UVDPSJiIiIiIjIr63PL8GStYdQotXJt6Vp1Fg8MxfT8tK8uDLvYOk+ERERERER+a31+SWYv3y3TZAPAKVaHeYv3431+SVeWpn3MNAnIiIiIiIiv2Qyi1iy9hBEO/dJty1Zewgms70jAhcDfSIiIiIiIvJL2wur2mXyWxMBlGh12F5Y1XOL8gEM9ImIiIiIiMgvldd1HOS7clygYKBPREREREREfik5Wu3W4wIFA30iIiIiIiLyS0MzNAhVdhzWCrBM3x+XFd9zi/IBDPSJiIiIiIjI7+gMJsxfsQvNJrPd+wXr/y+emQulQrB7TKBioE9ERERERER+pdloxn0rduPHY+cQEarEH6cMQJrGtjw/VaPGsrmjMC0vzUur9J4Qby+AiIiIiIiIyFEGkxn3/283Nh8uh1qlwFvzxmJ8TgLmX9wP2wurUF6nQ3K0pVw/2DL5Egb6RERERERE5BeMJjP+sHIvNhwsQ2iIAm/eOgbjcxIAAEqFIP93sGPpPhEREREREfk8k1nEQx/vx7r9JVApBbw+dzQm9k/y9rJ8EjP6RERERERE5HNMZlEuxU+KCsOaPcVYvacYIQoB/755FC4ZlOztJfosBvpERERERETkU9bnl2DJ2kMo0epsbhcAvDxnJKYOSfXOwvwEA30iIiIiIiLyGevzSzB/+W6Idu4TASjZgN4lPkVERERERETkE0xmEUvWHrIb5AOWjP6StYdgMnd0BAEM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8xNykrBkQhaunJiNeaPToNdqgnfSl+CIOSIiIiIiouBhoB/GHE4Bm7ceH3aE3efn2gAAyXotFo3PxJIJWVg8IQv5qfHBOUkPcMQcERERERFR8DDQD2P7q1vdurQP5eE1U3DLwmJ5Vn244Yg5IiIiIiKi4AnPyJAAeL5nPS0xLmyDfIk0Yi7X6F6en2s0RPVoPSIiIiIiomBjRj+MRdvedo6YIyIiIiIiCjwG+mEsGve2c8QcERERERFRYIV3vXeMk/a2A3172SXc205ERERERESDYaAf5ri3nYiIiIiIiLzB0v0IIO1tL6tsxPsf78PyKxagdFw2M/lEREREREQ0AAP9CKFRq7BgTDpaTghYwAZ2RERERERENASW7hMRERERERFFEQb6RERERERERFGEgT4RERERERFRFGGgT0RERERERBRFGOgTERERERERRREG+kRERERERERRJGoC/SeffBKjR4+GwWDAggULsH///lCfEhEREREREVHQRUWg//LLL+Pee+/Fpk2bcPDgQcycORMrVqxAY2NjqE+NiIiIiIiIKKiiItD/3e9+hzvuuAO33XYbpkyZgqeffhoJCQl47rnnQn1qREREREREREGlDfUJ+MtqteLAgQPYuHGj/JharcayZctQVlY26GssFgssFov8cWdnJwDAZrPBZrMF9oT9IJ1bOJ8jKY/rHpu47rGJ6x67uPaxiesem7jusWmwdQ/kz4BKEAQhYO8eBBcvXkRBQQE+/fRTlJaWyo/ff//92L17N/bt2zfgNQ8//DA2b9484PEXX3wRCQkJAT1fIiIiIiIiIrPZjJtvvhkdHR1ISUlR9L0jPqPvi40bN+Lee++VP+7s7ERRURGWL1+u+DdYSTabDdu3b8c111wDnU4X6tOhIOG6xyaue2ziuscurn1s4rrHJq57bBps3aXK8kCI+EA/MzMTGo0GDQ0Nbo83NDQgNzd30Nfo9Xro9foBj+t0uoi42CLlPElZXPfYxHWPTVz32MW1j01c99jEdY9N/dc9kOsf8YF+XFwc5s6dix07duC6664DADidTuzYsQP33HOPR+8h7V4I5B0VJdhsNpjNZnR2dvKXQgzhuscmrnts4rrHLq59bOK6xyaue2wabN2l+DMQu+kjPtAHgHvvvRff/OY3MW/ePMyfPx+PP/44uru7cdttt3n0epPJBAAoKioK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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "avg_parts_per_year = sets.groupby(\"year\")[\"num_parts\"].mean()\n", + "\n", + "plt.figure(figsize=(12, 6))\n", + "plt.plot(avg_parts_per_year.index, avg_parts_per_year.values, marker='o')\n", + "plt.xlabel('Year')\n", + "plt.ylabel('Average Number of Parts')\n", + "plt.title('Average Number of Parts in LEGO Sets Over the Years')\n", + "plt.grid(True)\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 156, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " name min max years_in_production\n", + "0 Basic Building Set 1968 2000 33\n", + "1 Basic Set 1973 1994 22\n", + "2 Fire Station 1957 2016 60\n", + "3 Fire Truck 1970 2015 46\n", + "4 Helicopter 1981 2016 36\n", + "5 Police Helicopter 1977 2017 41\n", + "6 Supplementary Set 1976 1980 5\n", + "7 Tow Truck 1967 2014 48\n", + "8 Tractor 1972 2015 44\n", + "9 Universal Building Set 1976 1993 18\n" + ] + } + ], + "source": [ + "#Analyzing the Lifecycle of Sets\n", + "\n", + "# Calculate the first and last year each set name was produced\n", + "lifecycle = filtered_sets.groupby('name')['year'].agg(['min', 'max']).reset_index()\n", + "lifecycle['years_in_production'] = lifecycle['max'] - lifecycle['min'] + 1\n", + "\n", + "# Display the lifecycle DataFrame\n", + "print(lifecycle)" + ] + }, + { + "cell_type": "code", + "execution_count": 157, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA90AAAJOCAYAAACqS2TfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB6rklEQVR4nOzde3zP9f//8ft7p/fOw4yNxpyZmMOcw5yaQ0JEKCZ0kHOOiTkVFZ9PSkmpjU/KKeSU86GoHMocIudFpUhsJm1sr98ffl7f3m3Y2Kt35na9XN6Xy16v1/P1fD1er9dcLu57Pl+vt80wDEMAAAAAACDXuTi7AAAAAAAA8ipCNwAAAAAAFiF0AwAAAABgEUI3AAAAAAAWIXQDAAAAAGARQjcAAAAAABYhdAMAAAAAYBFCNwAAAAAAFiF0AwAAAABgEUI3AAD/QomJibLZbIqPj3dYv3r1alWpUkWenp6y2Wy6cOGCU+r7N/r111/VoUMHBQYGymaz6fXXX3d2SQAAELoBAPinxcfHy2azadeuXTna79y5c+rYsaO8vLz01ltv6X//+598fHwsqvLuM2jQIK1Zs0YjR47U//73PzVv3jxTm5iYGNlstlt+YmJiLK83KipK999//03bjB079qZ1/vLLLw7tk5OT9dJLLykyMlIBAQGy2+0qXry4OnXqpJUrV2Z5jJMnT+qZZ55RWFiY7Ha7ChUqpLZt22rbtm3ZPpeUlBTFxsbq/vvvl4+PjwIDA1WlShUNGDBAP//8c7b7ue7AgQMaO3asEhMTc7wvAPzbuDm7AAAAkFnx4sV1+fJlubu7m+t27typixcvasKECWratKkTq/t32rhxo9q0aaMhQ4bcsM3TTz/tcO1OnDihMWPG6KmnnlL9+vXN9aVKlbK01pyaMWOGfH19M63Ply+f+fPRo0cVHR2tH374Qe3atVO3bt3k6+urU6dOadWqVXrooYc0Z84cPfHEE+Y+27ZtU8uWLSVJvXr1Unh4uH755RfFx8erfv36mjZtmvr163fT2q5cuaIGDRro+++/V/fu3dWvXz+lpKTou+++00cffaR27dqpSJEiOTrfAwcOaNy4cYqKilJYWFiO9gWAfxtCNwAA/0I2m02enp4O686cOSPJMWjh/5w5c+aW16ZOnTqqU6eOubxr1y6NGTNGderU0eOPP25xhbevQ4cOKliw4A23X716Ve3atdOvv/6qLVu2qF69eg7bY2NjtXbtWqWnp5vrzp8/rw4dOsjLy0vbtm1z+EPD4MGDFR0drYEDB6p69eqqW7fuDY+9dOlS7d69W3PnzlWXLl0ctv35559KS0vL6ekCQJ7C9HIAAP6F/v5Md1RUlLp37y5JqlGjRqYp0Nu3b1fz5s0VEBAgb29vNWzYMNP04IsXL2rgwIEO04ibNWumb7/91mxzfcrzN998o7p168rLy0slSpTQO++849BXWlqaxowZo+rVqysgIEA+Pj6qX7++Nm3alOV5TJkyRe+++65KlSolu92uGjVqaOfOndm6FsePH9ejjz6qAgUKyNvbW7Vr13aYKn19ur5hGHrrrbfMqdd3YuHChapevbq8vLxUsGBBPf744/rpp58c2sTExMjX11fHjx9XdHS0fHx8VKRIEY0fP16GYdzR8W+n3v3792v06NGZAvd1Dz74oFq0aGEuz5w5U7/88otee+21TCP7Xl5emj17tmw2m8aPH3/TYx87dkySsjyup6en/P39HdZ9//336tChgwoUKCBPT09FRkZq2bJl5vb4+Hg9+uijkqRGjRqZ93Pz5s2Srv2hJDo6WgULFjR/P5988smb1ggAzsRINwAAd4FRo0apXLlyevfddzV+/HiVKFHCDEobN25UixYtVL16dcXGxsrFxUVxcXFq3LixvvjiC9WsWVOS9Mwzz2jRokXq27evwsPDde7cOW3dulUHDx5UtWrVzGOdP39eLVu2VMeOHdW5c2ctWLBAzz77rDw8PMxwk5ycrFmzZqlz587q3bu3Ll68qPfff1/R0dHasWOHqlSp4lD/Rx99pIsXL+rpp5+WzWbTq6++qkceeUTHjx93mEL/d7/++qvq1q2rP/74Q/3791dgYKBmz56thx9+WIsWLVK7du3UoEED/e9//9MTTzyhZs2aqVu3bnd0rePj49WjRw/VqFFDkyZN0q+//qpp06Zp27Zt2r17t8Noenp6upo3b67atWvr1Vdf1erVqxUbG6urV6/eMqzmxO+//55pnZubm1nL8uXLJSlHo/XLly+Xp6enOnbsmOX2EiVK6IEHHtDGjRt1+fJleXl5ZdmuePHikqQ5c+boxRdfvOkfPL777jvVq1dPRYsW1YgRI+Tj46MFCxaobdu2+uSTT8z72b9/f73xxht64YUXVKFCBUlShQoVdObMGT344IMKCgrSiBEjlC9fPiUmJmrx4sXZPm8A+McZAADgHxUXF2dIMnbu3HnDNidOnDAkGXFxcTfdLyMjwyhTpowRHR1tZGRkmOv/+OMPo0SJEkazZs3MdQEBAcZzzz1309oaNmxoSDKmTp1qrktNTTWqVKliFCpUyEhLSzMMwzCuXr1qpKamOux7/vx5o3DhwsaTTz6Z6TwCAwON33//3Vz/6aefGpKM5cuX37SegQMHGpKML774wlx38eJFo0SJEkZYWJiRnp5urpd0y/P7u507dzpc57S0NKNQoULG/fffb1y+fNlst2LFCkOSMWbMGHNd9+7dDUlGv379zHUZGRlGq1atDA8PD+Ps2bM3PXbDhg2NihUr3rRNbGysISnLT7ly5cx2VatWNfLly5dp/5SUFOPs2bPmJykpydyWL18+IyIi4qbH79+/vyHJ2Lt37w3b/PHHH0a5cuUMSUbx4sWNmJgY4/333zd+/fXXTG2bNGliVKpUyfjzzz/NdRkZGUbdunWNMmXKmOsWLlxoSDI2bdrksP+SJUtu+W8HAP5tmF4OAMBdLCEhQUeOHFGXLl107tw5/fbbb/rtt9906dIlNWnSRJ9//rkyMjIkXXsWfPv27bd8m7Sbm5uefvppc9nDw0NPP/20zpw5o2+++UaS5OrqKg8PD0lSRkaGfv/9d129elWRkZEO09Wv69Spk/Lnz28uX39p2fHjx29ay6pVq1SzZk098MAD5jpfX1899dRTSkxM1IEDB266f07t2rVLZ86cUZ8+fRyeqW/VqpXKly+f5RvA+/bta/5ss9nUt29fpaWlaf369blW1yeffKJ169Y5fOLi4sztycnJWb5obdSoUQoKCjI/f33m+uLFi/Lz87vpca9vT05OvmEbLy8vbd++XUOHDpV0baZAz549FRISon79+ik1NVXStdH6jRs3qmPHjrp48aL5u3ru3DlFR0fryJEjmabw/931kf0VK1boypUrN20LAP8WhG4AAO5iR44ckSR1797dIVwFBQVp1qxZSk1NVVJSkiTp1Vdf1f79+xUaGqqaNWtq7NixWYbeIkWKZPoqsrJly0qSw1c4zZ49W5UrV5anp6cCAwMVFBSklStXmsf7q2LFijksXw/g58+fv+n5/fDDDypXrlym9denHP/www833T+nrveX1THLly+f6XguLi4qWbKkw7qsrtWdatCggZo2berw+esL4fz8/JSSkpJpvz59+pghvXDhwg7b/Pz8dPHixZse9/r2W4XzgIAAvfrqq0pMTFRiYqLef/99lStXTtOnT9eECRMkXXu7umEYGj16dKbf1djYWEn/97LAG2nYsKHat2+vcePGqWDBgmrTpo3i4uLMYA8A/0Y80w0AwF3s+ij2a6+9luk56uuuj4B27NhR9evX15IlS7R27Vq99tpreuWVV7R48WKHF2xlx4cffqiYmBi1bdtWQ4cOVaFCheTq6qpJkyaZL9b6K1dX1yz7Mf7hF47lVeXLl1dCQoJ++uknFS1a1FxftmxZ848Af38bfoUKFbR7926lpqbKbrdn2e/evXvl7u6uMmXKZLuW4sWL68knn1S7du1UsmRJzZ07VxMnTjR/V4cMGaLo6Ogs9y1duvRN+7bZbFq0aJG+/vprLV++XGvWrNGTTz6pqVOn6uuvv85ytB8AnI3QDQDAXez6y9T8/f2z9d3dISEh6tOnj/r06aMzZ86oWrVqeumllxxC988//6xLly45jHYfPnxYkszvTF60aJFKliypxYsXO7w46/qIZW4pXry4Dh06lGn9999/b27P7eNJ0qFDh9S4cWOHbYcOHcp0vIyMDB0/ftwMtlLma/VPeOihhzRv3jzNnTtXw4YNy/Y+X331lRYuXJjlC9gSExP1xRdfqGnTpjd8idrN5M+fX6VKldL+/fslyZwR4O7ufsvf1Vu9fb527dqqXbu2XnrpJX300Ufq2rWr5s2bp169euW4TgCwGtPLAQC4i1WvXl2lSpXSlClTspxefPbsWUnX3rL992nfhQoVUpEiRTJNzb169apmzpxpLqelpWnmzJkKCgpS9erVJf3fyPVfR6q3b9+ur776KndO7P9r2bKlduzY4dDvpUuX9O677yosLEzh4eG5erzIyEgVKlRI77zzjsN1+eyzz3Tw4EG1atUq0z7Tp083fzYMQ9OnT5e7u7uaNGmSq7XdTMeOHRUeHq4JEybo66+/zrLN32cVPP300ypUqJCGDh2a6TGDP//8Uz169JBhGBozZsxNj71nzx799ttvmdb/8MMPOnDggDlVv1ChQoqKitLMmTN1+vTpTO2v/65KMv/gc+HCBYc258+fz3Qe12d4MMUcwL8VI90AADjJBx98oNWrV2daP2DAgGz34eLiolmz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Ro0ayc/PT/7+/qpevbp27dolSTp37pw6d+6sokWLytvbW5UqVdLHH3+c4/O12WwKDg5WcHCwypQpo4kTJ8rFxUV79+51aLN06VKH/fLly6f4+HhJmaeXZyU+Pl7FihWTt7e32rVrlynk/n16eXbuw+nTp9WqVSt5eXmpRIkS+uijj2459X/ZsmV64YUX1LJlS4WFhal69erq16+fnnzySbNNamqqhgwZoqJFi8rHx0e1atXS5s2bJV27Vz169FBSUpI5Q2Ds2LE3PB4AAAAA/FPumpHuTZs2KSQkRJs2bdLRo0fVqVMnValSRb17987UtmvXrnr00UeVkpJijtSuWbNGf/zxh9q1aydJmjRpkj788EO98847KlOmjD7//HM9/vjj5tTm60aMGKEpU6aoZMmSyp8/vxo0aKCqVatqxowZcnV1VUJCgtzd3SVJf/75p6pXr67hw4fL399fK1eu1BNPPKFSpUqpZs2at3Xe6enp5h8KqlWrdlt9ZGX79u3q2bOnJk2apLZt22r16tWKjY295X63ug/dunXTb7/9ps2bN8vd3V2DBw/WmTNnbtpncHCwVq1apUceeUR+fn5Ztunbt68OHDigefPmqUiRIlqyZImaN2+uffv2qW7dunr99dc1ZswYc4bAPzFCDwAAAAC3cteE7vz582v69OlydXVV+fLl1apVK23YsCHL0B0dHS0fHx8tWbJETzzxhCTpo48+0sMPPyw/Pz+lpqbq5Zdf1vr161WnTh1JUsmSJbV161bNnDnTIXSPHz9ezZo1M5dPnjypoUOHqnz58pKkMmXKmNuKFi2qIUOGmMv9+vXTmjVrtGDBghyF7qSkJDM0Xr58We7u7nr33XdVqlSpbPdxK9OmTVPz5s01bNgwSVLZsmX15ZdfavXq1Tfd72b34fvvv9f69eu1c+dORUZGSpJmzZrlcI2y8u6776pr164KDAxURESEHnjgAXXo0EH16tWTdO2ax8XF6eTJkypSpIika8+br169WnFxcXr55ZcVEBBgzhC4kdTUVKWmpprLycnJt75QAAAAAHAH7orp5ZJUsWJFubq6msshISE3HEF1c3NTx44dNXfuXEnSpUuX9Omnn6pr166SpKNHj+qPP/5Qs2bNzOeWfX19NWfOHB07dsyhr+vh8brBgwerV69eatq0qSZPnuzQPj09XRMmTFClSpVU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rnfffVelSpXK4dne2LRp09S8eXPznMqWLasvv/xSq1evvul++fPn1/Tp0+Xq6qry5curVatW2rBhg3r37q3vv/9e69ev186dOxUZGSlJmjVr1k2vjyS9++676tq1qwIDAxUREaEHHnhAHTp0UL169SRdu95xcXE6efKkihQpIuna8+arV69WXFycXn75ZQUEBJgzBG5k0qRJDvcBAAAAAKx2z00vb9SokRISEpSQkKAdO3YoOjpaLVq00A8//GC2mT9/vurVq6fg4GD5+vrqxRdf1MmTJ83tgwcPVq9evdS0aVNNnjxZx44du+HxEhIS1KRJkxzV6OfnZ9a4e/duvfzyy3rmmWe0fPnynJ/wDRw8eFC1atVyWFenTp1b7lexYkW5urqayyEhIeZI9qFDh+Tm5uYwIl+6dGnlz5//pn02aNBAx48f14YNG9ShQwd99913ql+/viZMmCBJ2rdvn9LT01W2bFn5+vqany1bttz02v/dyJEjlZSUZH5OnTqV7X0BAAAA4Hbcc6Hbx8dHpUuXVunSpVWjRg3NmjVLly5d0nvvvSdJ+uqrr9S1a1e1bNlSK1as0O7duzVq1CilpaWZfYwdO1bfffedWrVqpY0bNyo8PFxLlizJ8nheXl45rtHFxcWssXLlyho8eLCioqL0yiuvmG1sNpsMw3DY76/PVlvl79PobTabMjIycqXf+vXra/jw4Vq7dq3Gjx+vCRMmKC0tTSkpKXJ1ddU333xj/jEiISFBBw8e1LRp07J9DLvdLn9/f4cPAAAAAFjpngvdf2ez2eTi4qLLly9Lkr788ksVL15co0aNUmRkpMqUKeMwCn5d2bJlNWjQIK1du1aPPPKI4uLisuy/cuXKufK1W66urmaNkhQUFKTTp0+by0eOHNEff/yR7f4qVKig7du3O6z7+uuv76jGcuXK6erVq9q9e7e57ujRozp//nyO+woPD9fVq1f1559/qmrVqkpPT9eZM2fMP0Zc/1yfTu7h4aH09PQ7qh8AAAAActs990x3amqqfvnlF0nS+fPnNX36dKWkpKh169aSrj2fffLkSc2bN081atTQypUrHUaxL1++rKFDh6pDhw4qUaKEfvzxR+3cuVPt27fP8nixsbFq0qSJSpUqpccee0xXr17VqlWrNHz48BvWaBiGWePly5e1bt06rVmzRmPGjDHbNG7cWNOnT1edOnWUnp6u4cOH3/Blblnp37+/6tWrpylTpqhNmzZas2bNLZ/nvpXy5curadOmeuqppzRjxgy5u7vr+eefl5eXl2w22w33i4qKUufOnRUZGanAwEAdOHBAL7zwgho1amSOSHft2lXdunXT1KlTVbVqVZ09e1YbNmxQ5cqV1apVK4WFhSklJUUbNmxQRESEvL295e3tfUfnAwAAAAB36p4b6V69erVCQkIUEhKiWrVqaefOnVq4cKGioqIkSQ8//LAGDRqkvn37qkqVKvryyy81evRoc39XV1edO3dO3bp1U9myZdWxY0e1aNHihi/oioqK0sKFC7Vs2TJVqVJFjRs31o4dO25aY3JyslljhQoVNHXqVI0fP16jRo0y20ydOlWhoaGqX7++unTpoiFDhuQoZNauXVvvvfeepk2bpoiICK1du9bhBXK3a86cOSpcuLAaNGigdu3amW9+9/T0vOE+0dHRmj17th588EFVqFBB/fr1U3R0tBYsWGC2iYuLU7du3fT888+rXLlyatu2rXbu3KlixYpJkurWratnnnlGnTp1UlBQkF599dU7PhcAAAAAuFM24+8PBgO56Mcff1RoaKjWr1+f4xfKWS05OVkBAQEKHbhALnZGxQEA1kqc3MrZJQAActH1PJGUlHTT90Xdc9PLYa2NGzcqJSVFlSpV0unTpzVs2DCFhYWpQYMGzi4NAAAAAP5xhG7kqitXruiFF17Q8ePH5efnp7p162ru3Lk5et4cAAAAAPIKQjdyVXR0tKKjo51dBgAAAAD8K9xzL1IDAAAAAOCfQugGAAAAAMAihG4AAAAAACxC6AYAAAAAwCKEbgAAAAAALELoBgAAAADAIoRuAAAAAAAsQugGAAAAAMAihG4AAAAAACzi5uwCAGfbPy5a/v7+zi4DAAAAQB7ESDcAAAAAABYhdAMAAAAAYBFCNwAAAAAAFiF0AwAAAABgEUI3AAAAAAAWIXQDAAAAAGARQjcAAAAAABYhdAMAAAAAYBFCNwAAAAAAFiF0AwAAAABgEUI3AAAAAAAWIXQDAAAAAGARQjcAAAAAABYhdAMAAAAAYBFCNwAAAAAAFiF0AwAAAABgEUI3AAAAAAAWIXQDAAAAAGARQjcAAAAAABYhdAMAAAAAYBFCNwAAAAAAFnFzdgGAsxiGIUlKTk52ciUAAAAA7jbXc8T1XHEjhG7cs86dOydJCg0NdXIlAAAAAO5WFy9eVEBAwA23E7pxzypQoIAk6eTJkzf9R4K8Izk5WaGhoTp16pT8/f2dXQ7+Adzzew/3/N7DPb/3cM/vPf/We24Yhi5evKgiRYrctB2hG/csF5drrzQICAj4V/3jhfX8/f255/cY7vm9h3t+7+Ge33u45/eef+M9z87gHS9SAwAAAADAIoRuAAAAAAAsQujGPctutys2NlZ2u93ZpeAfwj2/93DP7z3c83sP9/zewz2/99zt99xm3Or95gAAAAAA4LYw0g0AAAAAgEUI3QAAAAAAWITQDQAAAACARQjduGe99dZbCgsLk6enp2rVqqUdO3Y4uyTkks8//1ytW7dWkSJFZLPZtHTpUofthmFozJgxCgkJkZeXl5o2baojR444p1jkikmTJqlGjRry8/NToUKF1LZtWx06dMihzZ9//qnnnntOgYGB8vX1Vfv27fXrr786qWLcqRkzZqhy5crmd7bWqVNHn332mbmd+523TZ48WTabTQMHDjTXcc/znrFjx8pmszl8ypcvb27nnudNP/30kx5//HEFBgbKy8tLlSpV0q5du8ztd+P/4wjduCfNnz9fgwcPVmxsrL799ltFREQoOjpaZ86ccXZpyAWXLl1SRESE3nrrrSy3v/rqq3rjjTf0zjvvaPv27fLx8VF0dLT+/PPPf7hS5JYtW7boueee09dff61169bpypUrevDBB3Xp0iWzzaBBg7R8+XItXLhQW7Zs0c8//6xHHnnEiVXjTtx3332aPHmyvvnmG+3atUuNGzdWmzZt9N1330nifudlO3fu1MyZM1W5cmWH9dzzvKlixYo6ffq0+dm6dau5jXue95w/f1716tWTu7u7PvvsMx04cEBTp05V/vz5zTZ35f/jDOAeVLNmTeO5554zl9PT040iRYoYkyZNcmJVsIIkY8mSJeZyRkaGERwcbLz22mvmugsXLhh2u934+OOPnVAhrHDmzBlDkrFlyxbDMK7dY3d3d2PhwoVmm4MHDxqSjK+++spZZSKX5c+f35g1axb3Ow+7ePGiUaZMGWPdunVGw4YNjQEDBhiGwb/xvCo2NtaIiIjIchv3PG8aPny48cADD9xw+936/zhGunHPSUtL0zfffKOmTZua61xcXNS0aVN99dVXTqwM/4QTJ07ol19+cbj/AQEBqlWrFvc/D0lKSpIkFShQQJL0zTff6MqVKw73vXz58ipWrBj3PQ9IT0/XvHnzdOnSJdWpU4f7nYc999xzatWqlcO9lfg3npcdOXJERYoUUcmSJdW1a1edPHlSEvc8r1q2bJkiIyP16KOPqlChQqpataree+89c/vd+v84QjfuOb/99pvS09NVuHBhh/WFCxfWL7/84qSq8E+5fo+5/3lXRkaGBg4cqHr16un++++XdO2+e3h4KF++fA5tue93t3379snX11d2u13PPPOMlixZovDwcO53HjVv3jx9++23mjRpUqZt3PO8qVatWoqPj9fq1as1Y8YMnThxQvXr19fFixe553nU8ePHNWPGDJUpU0Zr1qzRs88+q/79+2v27NmS7t7/x7k5uwAAAHLTc889p/379zs894e8qVy5ckpISFBSUpIWLVqk7t27a8uWLc4uCxY4deqUBgwYoHXr1snT09PZ5eAf0qJFC/PnypUrq1atWipevLgWLFggLy8vJ1YGq2RkZCgyMlIvv/yyJKlq1arav3+/3nnnHXXv3t3J1d0+RrpxzylYsKBcXV0zvd3y119/VXBwsJOqwj/l+j3m/udNffv21YoVK7Rp0ybdd9995vrg4GClpaXpwoULDu2573c3Dw8PlS5dWtWrV9ekSZMUERGhadOmcb/zoG+++UZnzpxRtWrV5ObmJjc3N23ZskVvvPGG3NzcVLhwYe75PSBfvnwqW7asjh49yr/zPCokJETh4eEO6ypUqGA+VnC3/j+O0I17joeHh6pXr64NGzaY6zIyMrRhwwbVqVPHiZXhn1CiRAkFBwc73P/k5GRt376d+38XMwxDffv21ZIlS7Rx40aVKFHCYXv16tXl7u7ucN8PHTqkkydPct/zkIyMDKWmpnK/86AmTZpo3759SkhIMD+RkZHq2rWr+TP3PO9LSUnRsWPHFBISwr/zPKpevXqZvvLz8OHDKl68uKS79/9xTC/HPWnw4MHq3r27IiMjVbNmTb3++uu6dOmSevTo4ezSkAtSUlJ09OhRc/nEiRNKSEhQgQIFVKxYMQ0cOFATJ05UmTJlVKJECY0ePVpFihRR27ZtnVc07shzzz2njz76SJ9++qn8/PzM57oCAgLk5eWlgIAA9ezZU4MHD1aBAgXk7++vfv36qU6dOqpdu7aTq8ftGDlypFq0aKFixYrp4sWL+uijj7R582atWbOG+50H+fn5me9ouM7Hx0eBgYHmeu553jNkyBC1bt1axYsX188//6zY2Fi5urqqc+fO/DvPowYNGqS6devq5ZdfVseOHbVjxw69++67evfddyVJNpvt7vx/nLNfnw44y5tvvmkUK1bM8PDwMGrWrGl8/fXXzi4JuWTTpk2GpEyf7t27G4Zx7esmRo8ebRQuXNiw2+1GkyZNjEOHDjm3aNyRrO63JCMuLs5sc/nyZaNPnz5G/vz5DW9vb6Ndu3bG6dOnnVc07siTTz5pFC9e3PDw8DCCgoKMJk2aGGvXrjW3c7/zvr9+ZZhhcM/zok6dOhkhISGGh4eHUbRoUaNTp07G0aNHze3c87xp+fLlxv3332/Y7XajfPnyxrvvvuuw/W78f5zNMAzDSXkfAAAAAIA8jWe6AQAAAACwCKEbAAAAAACLELoBAAAAALAIoRsAAAAAAIsQugEAAAAAsAihGwAAAAAAixC6AQAAAACwCKEbAAAAAACLELoBAMBdKywsTK+//rqzy8i2qKgoDRw40PLj2Gw2LV261PLjAABujdANAAAyMQxDTZs2VXR0dKZtb7/9tvLly6cff/zRCZU52rlzp5566qk76iMqKko2m002m02enp4KDw/X22+/nUsVWmvs2LGqUqVKpvWnT59WixYt/vmCAACZELoBAEAmNptNcXFx2r59u2bOnGmuP3HihIYNG6Y333xT9913X64e88qVKzneJygoSN7e3nd87N69e+v06dM6cOCAOnbsqOeee04ff/xxlm3T0tLu+HhWCw4Olt1ud3YZAAARugEAwA2EhoZq2rRpGjJkiE6cOCHDMNSzZ089+OCDqlq1qlq0aCFfX18VLlxYTzzxhH777Tdz39WrV+uBBx5Qvnz5FBgYqIceekjHjh0ztycmJspms2n+/Plq2LChPD09NXfuXP3www9q3bq18ufPLx8fH1WsWFGrVq26YY1/n15us9k0a9YstWvXTt7e3ipTpoyWLVt2y3P19vZWcHCwSpYsqbFjxzrsFxUVpb59+2rgwIEqWLCgOfq/ZcsW1axZU3a7XSEhIRoxYoSuXr1q9nnp0iV169ZNvr6+CgkJ0dSpUzMdN6tp4Pny5VN8fLy5/OOPP6pz584qUKCAfHx8FBkZqe3btys+Pl7jxo3Tnj17zJH66/v9vd99+/apcePG8vLyUmBgoJ566imlpKSY22NiYtS2bVtNmTJFISEhCgwM1HPPPXdbfwgBADgidAMAgBvq3r27mjRpoieffFLTp0/X/v37NXPmTDVu3FhVq1bVrl27tHr1av3666/q2LGjud+lS5c0ePBg7dq1Sxs2bJCLi4vatWunjIwMh/5HjBihAQMG6ODBg4qOjtZzzz2n1NRUff7559q3b59eeeUV+fr65qjmcePGqWPHjtq7d69atmyprl276vfff89RH15eXg4j2rNnz5aHh4e2bdumd955Rz/99JNatmypGjVqaM+ePZoxY4bef/99TZw40dxn6NCh2rJliz799FOtXbtWmzdv1rfffpujOlJSUtSwYUP99NNPWrZsmfbs2aNhw4YpIyNDnTp10vPPP6+KFSvq9OnTOn36tDp16pSpj0uXLik6Olr58+fXzp07tXDhQq1fv159+/Z1aLdp0yYdO3ZMmzZt0uzZsxUfH+8Q/gEAt8kAAAC4iV9//dUoWLCg4eLiYixZssSYMGGC8eCDDzq0OXXqlCHJOHToUJZ9nD171pBk7Nu3zzAMwzhx4oQhyXj99dcd2lWqVMkYO3ZstmsrXry48d///tdclmS8+OKL5nJKSoohyfjss89u2EfDhg2NAQMGGIZhGFevXjX+97//GZKM6dOnm9urVq3qsM8LL7xglCtXzsjIyDDXvfXWW4avr6+Rnp5uXLx40fDw8DAWLFhgbj937pzh5eVlHut6vUuWLHHoOyAgwIiLizMMwzBmzpxp+Pn5GefOncuy9tjYWCMiIiLT+r/2++677xr58+c3UlJSzO0rV640XFxcjF9++cUwDMPo3r27Ubx4cePq1atmm0cffdTo1KlTlscFAGQfI90AAOCmChUqpKeffloVKlRQ27ZttWfPHm3atEm+vr7mp3z58pJkTiE/cuSIOnfurJIlS8rf319hYWGSpJMnTzr0HRkZ6bDcv39/TZw4UfXq1VNsbKz27t2b43orV65s/uzj4yN/f3+dOXPmpvu8/fbb8vX1lZeXl3r37q1Bgwbp2WefNbdXr17dof3BgwdVp04d2Ww2c129evWUkpKiH3/8UceOHVNaWppq1aplbi9QoIDKlSuXo3NJSEhQ1apVVaBAgRzt9/daIyIi5OPj41BrRkaGDh06ZK6rWLGiXF1dzeWQkJBbXjcAwK0RugEAwC25ubnJzc1N0rUpz61bt1ZCQoLD58iRI2rQoIEkqXXr1vr999/13nvvafv27dq+fbukzC8h+2sQlKRevXrp+PHjeuKJJ7Rv3z5F/r/27t4l1TeO4/jHG5IeqQgrMiEoAiEL4rTl0AMRQRDUYhIVLpII9nA2oTWQWpKG+gdaCloCG2oSoUeDgp4dGloqJ4MG6Tcc6Hesczh5OPf2foHDJTeX3+ua7o+XX+9v37S8vJxXrQUFBTlji8Xy6WftH3m9XiWTSaVSKWUyGS0tLckw/r9N+ljnv2KxWPT29pbz3s991EVFRaZ87q/8zb4BAP6M0A0AAPLS3t6u8/NzNTQ0qKmpKedVUlKip6cnXV5eKhwOq6enR06nU+l0+svzOxwO+f1+bW5uanZ2Vmtrayau5ofy8nI1NTXJbrfnhO3fcTqdSiQSOYE5Ho+rrKxM9fX1amxsVEFBwfuXDZKUTqd1dXWVM4/NZtPDw8P7+Pr6Wi8vL+/j1tZWJZPJ3/akW61WZbPZP9Z6enqqTCaTU6thGHmfvAMA8kfoBgAAeQkEAnp+fpbH49HBwYFub28Vi8U0OTmpbDaryspKVVVVaXV1VTc3N9rd3dXMzMyX5g6FQorFYkqlUjo+Ptbe3p6cTqfJK8rf1NSU7u/vFQwGdXFxoa2tLc3Pz2tmZkaGYai0tFQ+n0/fv3/X7u6uzs7ONDEx8SnQd3d3KxqN6uTkRIeHh/L7/Tknzh6PR7W1tRoaGlI8Htfd3Z02NjaUSCQk/fj39lQqpWQyqcfHR72+vn6q1ev1qrCwUOPj4zo7O9Pe3p6CwaDGxsZUU1Nj7kYBAAjdAAAgP3V1dYrH48pms+rr65PL5VIoFFJFRYUMw5BhGFpfX9fR0ZFaWlo0PT2tSCTypbmz2awCgYCcTqf6+/vV3NyslZUVk1eUP7vdru3tbe3v76utrU1+v18+n0/hcPj9mkgkIrfbrcHBQfX29qqzs/NTb/ji4qIcDofcbrdGR0c1NzeX89xxq9WqnZ0dVVdXa2BgQC6XSwsLC++918PDw+rv71dXV5dsNtsvny1eXFysWCym5+dndXR0aGRkRD09PYpGoybtDgDgZ5a3j41EAAAAAADgn+CkGwAAAAAAkxC6AQAAAAAwCaEbAAAAAACTELoBAAAAADAJoRsAAAAAAJMQugEAAAAAMAmhGwAAAAAAkxC6AQAAAAAwCaEbAAAAAACTELoBAAAAADAJoRsAAAAAAJMQugEAAAAAMMl/TNVbhrf8PNkAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=(10, 6))\n", + "plt.barh(lifecycle['name'], lifecycle['years_in_production'])\n", + "plt.xlabel('Years in Production')\n", + "plt.ylabel('Set Name')\n", + "plt.title('Lifespan of Top LEGO Sets')\n", + "plt.tight_layout()\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Table: Themes\n" + ] + }, + { + "cell_type": "code", + "execution_count": 158, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idnameparent_id
01TechnicNaN
12Arctic Technic1.0
23Competition1.0
34Expert Builder1.0
45Model1.0
\n", + "
" + ], + "text/plain": [ + " id name parent_id\n", + "0 1 Technic NaN\n", + "1 2 Arctic Technic 1.0\n", + "2 3 Competition 1.0\n", + "3 4 Expert Builder 1.0\n", + "4 5 Model 1.0" + ] + }, + "execution_count": 158, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "themes.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 159, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "name\n", + "Supplemental 18\n", + "Fire 12\n", + "Airport 11\n", + "Harbor 9\n", + "Traffic 9\n", + " ..\n", + "Outback 1\n", + "Paradisa 1\n", + "Res-Q 1\n", + "Space Port 1\n", + "DC Comics Super Heroes 1\n", + "Name: count, Length: 402, dtype: int64" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "themes_value_count = themes[\"name\"].value_counts()\n", + "display(themes_value_count)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bivariate Analysis: Sets & Themes" + ] + }, + { + "cell_type": "code", + "execution_count": 160, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idnameparent_id
01TechnicNaN
12Arctic Technic1.0
23Competition1.0
34Expert Builder1.0
45Model1.0
\n", + "
" + ], + "text/plain": [ + " id name parent_id\n", + "0 1 Technic NaN\n", + "1 2 Arctic Technic 1.0\n", + "2 3 Competition 1.0\n", + "3 4 Expert Builder 1.0\n", + "4 5 Model 1.0" + ] + }, + "execution_count": 160, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "themes.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 161, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
set_numnameyeartheme_idnum_parts
15010-3Basic Building Set196836677
16011-1Basic Building Set1968366145
17022-1Basic Building Set1968366110
19033-2Basic Building Set1968366177
20044-1Basic Building Set1968366225
\n", + "
" + ], + "text/plain": [ + " set_num name year theme_id num_parts\n", + "15 010-3 Basic Building Set 1968 366 77\n", + "16 011-1 Basic Building Set 1968 366 145\n", + "17 022-1 Basic Building Set 1968 366 110\n", + "19 033-2 Basic Building Set 1968 366 177\n", + "20 044-1 Basic Building Set 1968 366 225" + ] + }, + "execution_count": 161, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "filtered_sets.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 162, + "metadata": {}, + "outputs": [], + "source": [ + "# Merge the filtered sets with themes\n", + "sets_with_themes = pd.merge(sets, themes, left_on='theme_id', right_on='id', how='left', suffixes=('_set', '_theme'))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 163, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "name_theme\n", + "Supplemental 496\n", + "Technic 435\n", + "City 287\n", + "Friends 269\n", + "Basic Set 257\n", + " ... \n", + "Star Wars Episode 8 1\n", + "Planet Series 3 1\n", + "Ghostbusters 1\n", + "Western 1\n", + "Indiana Jones 1\n", + "Name: count, Length: 386, dtype: int64\n" + ] + } + ], + "source": [ + "# Analyze the themes of top sets\n", + "theme_counts = sets_with_themes['name_theme'].value_counts()\n", + "\n", + "# Display the top themes\n", + "print(theme_counts)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# SQL QUERIES" + ] + }, + { + "cell_type": "code", + "execution_count": 164, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: mysql-connector-python in c:\\users\\dusan\\appdata\\local\\programs\\python\\python312\\lib\\site-packages (9.0.0)Note: you may need to restart the kernel to use updated packages.\n", + "\n" + ] + } + ], + "source": [ + "pip install mysql-connector-python" + ] + }, + { + "cell_type": "code", + "execution_count": 165, + "metadata": {}, + "outputs": [], + "source": [ + "import mysql.connector\n", + "from mysql.connector import Error\n", + "\n", + "# Reuse connection and cursor\n", + "connection = None\n", + "cursor = None\n", + "\n", + "# Function to create the connection once\n", + "def create_connection():\n", + " global connection, cursor # Make them accessible in the entire program\n", + " try:\n", + " if not connection: # Only connect if connection is not already established\n", + " connection = mysql.connector.connect(\n", + " host='localhost',\n", + " user='root',\n", + " password='Apfelsaft_1',\n", + " database='lego' # Your existing database\n", + " )\n", + " if connection.is_connected():\n", + " cursor = connection.cursor() # Create the cursor once\n", + " print(\"Successfully connected to MySQL\")\n", + " except Error as e:\n", + " print(f\"Error while connecting to MySQL: {e}\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 166, + "metadata": {}, + "outputs": [], + "source": [ + "# Function to execute any query\n", + "def execute_query(query, values=None, fetch=False):\n", + " try:\n", + " if values:\n", + " cursor.execute(query, values)\n", + " else:\n", + " cursor.execute(query)\n", + "\n", + " if fetch:\n", + " return cursor.fetchall()\n", + " except Error as e:\n", + " print(f\"Error executing query: {e}\")\n", + " return None" + ] + }, + { + "cell_type": "code", + "execution_count": 167, + "metadata": {}, + "outputs": [], + "source": [ + "# Function to drop and create the database\n", + "def create_database(cursor):\n", + " try:\n", + " cursor.execute(\"DROP DATABASE IF EXISTS lego\") # Drop database if it exists\n", + " cursor.execute(\"CREATE DATABASE lego\") # Create a fresh database\n", + " print(\"Database 'lego' recreated\")\n", + " except Error as e:\n", + " print(f\"Error while creating the database: {e}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 168, + "metadata": {}, + "outputs": [], + "source": [ + "def create_tables(cursor):\n", + " try:\n", + " cursor.execute(\"USE lego\")\n", + " \n", + " # Create table for part_categories\n", + " cursor.execute('''\n", + " CREATE TABLE IF NOT EXISTS part_categories (\n", + " id INT PRIMARY KEY,\n", + " name VARCHAR(255) NOT NULL\n", + " )\n", + " ''')\n", + " \n", + " # Create table for parts\n", + " cursor.execute('''\n", + " CREATE TABLE IF NOT EXISTS parts (\n", + " part_num VARCHAR(50) PRIMARY KEY,\n", + " name VARCHAR(255),\n", + " part_cat_id INT,\n", + " FOREIGN KEY (part_cat_id) REFERENCES part_categories(id)\n", + " )\n", + " ''')\n", + " \n", + " # Create table for themes\n", + " cursor.execute('''\n", + " CREATE TABLE IF NOT EXISTS themes (\n", + " id INT PRIMARY KEY,\n", + " name VARCHAR(255),\n", + " parent_id INT NULL\n", + " )\n", + " ''')\n", + "\n", + " # Create table for colors\n", + " cursor.execute('''\n", + " CREATE TABLE IF NOT EXISTS colors (\n", + " id INT PRIMARY KEY,\n", + " name VARCHAR(255),\n", + " rgb VARCHAR(6),\n", + " is_trans BOOLEAN\n", + " )\n", + " ''')\n", + "\n", + " # Create table for sets\n", + " cursor.execute('''\n", + " CREATE TABLE IF NOT EXISTS sets (\n", + " set_num VARCHAR(50) PRIMARY KEY,\n", + " name VARCHAR(255),\n", + " year INT,\n", + " theme_id INT,\n", + " num_parts INT,\n", + " FOREIGN KEY (theme_id) REFERENCES themes(id)\n", + " )\n", + " ''')\n", + "\n", + " # Create table for inventories\n", + " cursor.execute('''\n", + " CREATE TABLE IF NOT EXISTS inventories (\n", + " id INT PRIMARY KEY,\n", + " version INT,\n", + " set_num VARCHAR(50),\n", + " FOREIGN KEY (set_num) REFERENCES sets(set_num)\n", + " )\n", + " ''')\n", + "\n", + " # Create table for inventory_parts\n", + " cursor.execute('''\n", + " CREATE TABLE IF NOT EXISTS inventory_parts (\n", + " inventory_id INT,\n", + " part_num VARCHAR(50),\n", + " color_id INT,\n", + " quantity INT,\n", + " is_spare BOOLEAN,\n", + " PRIMARY KEY (inventory_id, part_num, color_id),\n", + " FOREIGN KEY (inventory_id) REFERENCES inventories(id),\n", + " FOREIGN KEY (part_num) REFERENCES parts(part_num),\n", + " FOREIGN KEY (color_id) REFERENCES colors(id)\n", + " )\n", + " ''')\n", + "\n", + " # Create table for inventory_sets\n", + " cursor.execute('''\n", + " CREATE TABLE IF NOT EXISTS inventory_sets (\n", + " inventory_id INT,\n", + " set_num VARCHAR(50),\n", + " quantity INT,\n", + " PRIMARY KEY (inventory_id, set_num),\n", + " FOREIGN KEY (inventory_id) REFERENCES inventories(id),\n", + " FOREIGN KEY (set_num) REFERENCES sets(set_num)\n", + " )\n", + " ''')\n", + " \n", + " print(\"Tables created successfully\")\n", + " \n", + " except Error as e:\n", + " print(f\"Error while creating tables: {e}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 169, + "metadata": {}, + "outputs": [], + "source": [ + "# Function to load data using LOAD DATA INFILE\n", + "def load_data(cursor, connection):\n", + " try:\n", + " # Disable foreign key checks to speed up data loading\n", + " cursor.execute(\"SET FOREIGN_KEY_CHECKS = 0;\")\n", + " \n", + " # Load data into part_categories\n", + " cursor.execute('''\n", + " LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/part_categories.csv'\n", + " INTO TABLE part_categories\n", + " FIELDS TERMINATED BY ',' \n", + " ENCLOSED BY '\"'\n", + " LINES TERMINATED BY '\\n'\n", + " IGNORE 1 LINES\n", + " (id, name);\n", + " ''')\n", + " \n", + " # Load data into parts\n", + " cursor.execute('''\n", + " LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/parts.csv'\n", + " INTO TABLE parts\n", + " FIELDS TERMINATED BY ',' \n", + " ENCLOSED BY '\"'\n", + " LINES TERMINATED BY '\\n'\n", + " IGNORE 1 LINES\n", + " (part_num, name, part_cat_id);\n", + " ''')\n", + "\n", + " # Load data into themes\n", + " cursor.execute('''\n", + " LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/themes.csv'\n", + " INTO TABLE themes\n", + " FIELDS TERMINATED BY ',' \n", + " OPTIONALLY ENCLOSED BY '\"'\n", + " LINES TERMINATED BY '\\n'\n", + " IGNORE 1 LINES\n", + " (id, name, parent_id)\n", + " SET parent_id = NULLIF(parent_id, '');\n", + " ''')\n", + "\n", + " # Load data into colors\n", + " cursor.execute('''\n", + " LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/colors.csv'\n", + " INTO TABLE colors\n", + " FIELDS TERMINATED BY ',' \n", + " ENCLOSED BY '\"'\n", + " LINES TERMINATED BY '\\n'\n", + " IGNORE 1 LINES\n", + " (id, name, rgb, is_trans);\n", + " ''')\n", + "\n", + " # Load data into sets\n", + " cursor.execute('''\n", + " LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/sets.csv'\n", + " INTO TABLE sets\n", + " FIELDS TERMINATED BY ',' \n", + " ENCLOSED BY '\"'\n", + " LINES TERMINATED BY '\\n'\n", + " IGNORE 1 LINES\n", + " (set_num, name, year, theme_id, num_parts);\n", + " ''')\n", + "\n", + " # Load data into inventories\n", + " cursor.execute('''\n", + " LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/inventories.csv'\n", + " INTO TABLE inventories\n", + " FIELDS TERMINATED BY ',' \n", + " ENCLOSED BY '\"'\n", + " LINES TERMINATED BY '\\n'\n", + " IGNORE 1 LINES\n", + " (id, version, set_num);\n", + " ''')\n", + "\n", + " # Load data into inventory_parts\n", + " cursor.execute('''\n", + " LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/inventory_parts.csv'\n", + " INTO TABLE inventory_parts\n", + " FIELDS TERMINATED BY ',' \n", + " ENCLOSED BY '\"'\n", + " LINES TERMINATED BY '\\n'\n", + " IGNORE 1 LINES\n", + " (inventory_id, part_num, color_id, quantity, is_spare);\n", + " ''')\n", + "\n", + " # Load data into inventory_sets\n", + " cursor.execute('''\n", + " LOAD DATA INFILE 'C:/ProgramData/MySQL/MySQL Server 9.0/Uploads/inventory_sets.csv'\n", + " INTO TABLE inventory_sets\n", + " FIELDS TERMINATED BY ',' \n", + " ENCLOSED BY '\"'\n", + " LINES TERMINATED BY '\\n'\n", + " IGNORE 1 LINES\n", + " (inventory_id, set_num, quantity);\n", + " ''')\n", + "\n", + " # Enable foreign key checks\n", + " cursor.execute(\"SET FOREIGN_KEY_CHECKS = 1;\")\n", + "\n", + " # Commit the transactions\n", + " connection.commit()\n", + " print(\"Data inserted successfully\")\n", + " \n", + " except Error as e:\n", + " print(f\"Error while inserting data: {e}\")\n", + " connection.rollback() # Rollback in case of error\n" + ] + }, + { + "cell_type": "code", + "execution_count": 170, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Successfully connected to MySQL\n" + ] + } + ], + "source": [ + "# Main function to execute everything\n", + "def main():\n", + " connection = create_connection()\n", + " if connection:\n", + " cursor = connection.cursor()\n", + " create_database(cursor)\n", + " create_tables(cursor)\n", + " load_data(cursor,connection)\n", + " cursor.close()\n", + " connection.close()\n", + "\n", + "if __name__ == \"__main__\":\n", + " main()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "\n", + "# 1.\tWhich LEGO themes have the most sets?\n", + "## Identify the themes that feature the highest number of sets to understand their popularity.\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 171, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA90AAAJOCAYAAACqS2TfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAADCMElEQVR4nOzdeVxUZf8//tfILjMDIiioICCyKaiAezqMS5CGiFsqhZRoWt6lBgZ3oSaVaFrd2bdbSwMzyzsXyDRKxZliSQQCTMMlFDE3DBEcRFA4vz/8cT6OgyzqhNrr+XicR53rXOdc73OEefCeazkSQRAEEBEREREREdED166tAyAiIiIiIiJ6XDHpJiIiIiIiItITJt1EREREREREesKkm4iIiIiIiEhPmHQTERERERER6QmTbiIiIiIiIiI9YdJNREREREREpCdMuomIiIiIiIj0hEk3ERERERERkZ4w6SYiItIDtVoNiUSCbdu2tXUoLXLx4kVMmjQJHTt2hEQiwYcfftjWIRERHr3PEiLSxaSbiIgeWYmJiZBIJDA1NcXZs2d1jvv7+6N3795tENmjZ8GCBfjxxx8RExODTZs2ITAw8K51NRoNlixZgt69e8Pc3BwdO3ZE37598eqrr+LcuXOtbvv333/H0qVLUVxcfB938PBxdHTE008/3WSd8PBwSCSSRjdTU1Od+qWlpYiOjoaXlxekUilMTU3h4uKC559/Hunp6Y22ceTIETz77LPo2rUrTExM0KVLF4SGhuLIkSMtvpdLly7h1Vdfhbu7O8zMzNCpUycMGDAAr7/+OjQajVjvq6+++lu/sPH09ESfPn10ypOSkiCRSKBQKHSOff7555BIJNizZ8/fEWKj7vZvfuemVqvbLEYienAM2zoAIiKi+1VTU4P4+HisWbOmrUN5ZO3fvx/BwcGIjIxsst6NGzcwfPhwHD16FDNmzMC//vUvaDQaHDlyBF999RVCQkLQpUuXVrX9+++/46233oK/vz8cHR3v4y4eTSYmJli/fr1OuYGBgdb+wYMHMXbsWFy9ehVTp07FnDlzYGJiglOnTiE5ORmJiYn46aefMHz4cPGcHTt2YNq0abCyssLMmTPh5OSE4uJibNiwAdu2bcOWLVsQEhLSZHyXL1+Gn58fKisr8cILL8Dd3R1lZWU4dOgQ/vvf/2Lu3LmQSqUAbiXdhw8fxvz58+//wbTAE088gQ0bNqCiogIWFhZieUZGBgwNDZGdnY0bN27AyMhI65iBgQEGDx78t8TYmE2bNmntf/HFF9i7d69OuYeHBwoLC//O0IhID5h0ExHRI69v37747LPPEBMT0+qE71FXVVUFc3Pz+75OaWkpLC0tm62XnJyMvLw8bN68GdOnT9c6dv36ddTW1t53LI+Kmzdvor6+HsbGxvd1HUNDQzz77LNN1ikvL8f48eNhaGiI/Px8uLu7ax1/++23sWXLFpiZmYllRUVFeO655+Ds7Iyff/4ZNjY24rFXX30Vw4YNw3PPPYdDhw7B2dn5rm1v2LABJSUlyMjIwJAhQ7SOVVZW3vf9N6ep5/zEE0/gs88+Q2ZmJp566imxPCMjA1OmTMFXX32F3NxcDBo0SDyWnp4Ob29vyGSy+4rrfn737vz3PnDgAPbu3dvozwGTbqJHH4eXExHRI+/f//436urqEB8f32S94uJiSCQSJCYm6hyTSCRYunSpuL906VJIJBIcP34czz77LCwsLGBjY4PY2FgIgoAzZ84gODgYcrkctra2WL16daNt1tXV4d///jdsbW1hbm6OcePG4cyZMzr1srKyEBgYCAsLC7Rv3x4KhQIZGRladRpi+v333zF9+nR06NABTzzxRJP3fPLkSUyePBlWVlZo3749Bg0ahN27d4vHG4boC4KA//f//p84rPVuioqKAABDhw7VOWZqagq5XK5VdvToUUyaNAlWVlYwNTWFn58fdu7cqdX+5MmTAQBKpVJnWG1OTg4CAgJgbW0NMzMzODk54YUXXmjynoH/G9q9Z88e9O3bF6ampvD09MSOHTt06l65cgXz58+Hvb09TExM4OLighUrVqC+vl6s0/Czs2rVKnz44Yfo0aMHTExM8Pvvvzcby4Owdu1anD9/Hh9++KFOwg3c+vmdNm0a+vfvL5a99957uHbtGj799FOthBsArK2tsW7dOlRVVWHlypVNtl1UVAQDAwOtxLWBXC4Xh8H7+/tj9+7dOH36tPjv2DByoba2FosXL4avry8sLCxgbm6OYcOGQaVSaV2vtc+54ef/9t+V69ev49dff8WECRPg7OysdezSpUs4fvy4eN7p06fx0ksvwc3NDWZmZujYsSMmT56sM9Wh4ffkp59+wksvvYROnTqhW7duAICrV69i/vz5cHR0hImJCTp1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VlYGFxcXWFpaNhrXrFmzdBa4s7S0RFZW1j2t3N8azz//vNa89oYRDA2fO/fyWXKvn29bt26Fh4cH3N3dtX5vRowYAQA60waI/umYdBMR0WPjzTffxM2bN5ud290aDg4OWvsWFhYwNTWFtbW1Tnl5ebnO+T179tTal0gkcHFxEeeMNiQDM2bM0EqebGxssH79etTU1KCiokLrGk5OTi2K/fTp03Bzc9MpbxjCffr06RZd504WFhZYuXIliouLxZWw3dzc8PHHHyMuLg4A8Mcff0AQBMTGxurc15IlSwDcWrytKQqFAhMnTsRbb70Fa2trBAcHIyEhocVzRl1cXHSGv7u6ugKA1vP/4YcfdGIcNWpUozG29Nm3hoGBAUaNGqWz3T7kWiaTab2aq8GyZcvEJP12Dcl0Q/J9Ny1Nzu3s7PDf//4X58+fx7Fjx/DRRx+Jw6w3bNjQktvExo0b4e3tDVNTU3Ts2BE2NjbYvXu3zs830LrnfPu8bkEQkJmZKa450Lt3b8jlcmRkZOD69evIzc3V+hKquroaixcvFufzW1tbw8bGBleuXGlxXCtXrsThw4dhb2+PAQMGYOnSpY1+AXe/7vws6tChAwCInzv38llyr59vJ06cwJEjR3Taafj9au53m+ifhnO6iYjoseHs7Ixnn30Wn376KaKjo3WO323+cV1d3V2veWev1t3KALSox+9ODT1P7733ns681gZ39nDe3jvX1rp3744XXngBISEhcHZ2xubNm/H222+L9xUZGYmAgIBGz3VxcWny2hKJBNu2bcOBAwfw3Xff4ccff8QLL7yA1atX48CBA432/LZWfX09Ro8ejUWLFjV6vCGJaNBWz97d3R0FBQU6r7/y9vZutL6FhQXs7Oxw6NChJq976NAhdO3aVWcBvLuRSCRwdXWFq6srxo4di549e2Lz5s1aPaaN+fLLLxEeHo7x48cjKioKnTp1goGBAZYvXy4uzne71jznPn36QCaTIT09HWPGjMHly5fFnu527dph4MCBSE9PR48ePVBbW6uVdP/rX/9CQkIC5s+fj8GDB8PCwgISiQRTp07V6RW+W1xTpkzBsGHDkJSUhD179uC9997DihUrsGPHDq0V1e9Xc5879/JZcq+fb/X19fDy8sL777/faF17e/tGy4n+qZh0ExHRY+XNN9/El19+iRUrVugca+gZunLl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F0xMTIR+/foJu3btEmbMmKH1irF7ec6CIAhVVVWCoaGhAEDYs2ePznFvb28BgLBixQqt8vLycuH5558XrK2tBalUKgQEBAhHjx4VunfvrvWKrLt91tTU1AhRUVFCnz59BJlMJpibmwt9+vQRPvnkk1bF35JXht35s3u3VyDez2dJSz/fBEEQamtrhRUrVgi9evUSTExMhA4dOgi+vr7CW2+9JVRUVLTm9okeexJBuIdVX4iIiIgeYo6Ojujduzd27drV1qEQEdE/HOd0ExEREREREekJk24iIiIiIiIiPWHSTURERERERKQnnNNNREREREREpCfs6SYiIiIiIiLSEybdRERERERERHpi2NYBENGDVV9fj3PnzkEmk0EikbR1OEREREREjyVBEHD16lV06dIF7drdvT+bSTfRY+bcuXOwt7dv6zCIiIiIiP4Rzpw5g27dut31OJNuoseMTCYDcOuXXy6Xt3E0RERERESPp8rKStjb24t/f98Nk26ix0zDkHK5XM6km4iIiIhIz5qb0smF1IiIiIiIiIj0hEk3ERERERERkZ4w6SYiIiIiIiLSEybdRERERERERHrCpJuIiIiIiIhIT5h0ExEREREREekJk24iIiIiIiIiPWHSTURERERERKQnTLqJiIiIiIiI9IRJNxEREREREZGeMOkmIiIiIiIi0hMm3URERERERER6wqSbiIiIiIiISE+YdBMRERERERHpCZNuIiIiIiIiIj1h0k1ERERERESkJ0y6iYiIiIiIiPSESTcRERERERGRnjDpJiIiIiIiItITJt1EREREREREesKkm+gx9X5BGeLz/mrrMIiIiIiI/tGYdBMRERERERHpCZNuIiIiIiIiIj1h0k1ERERERESkJ0y6iYiIiIiIiPSESTcRERERERGRnjDpJiIiIiIiItITJt1EREREREREesKkm4iIiIiIiEhPmHQTERERERER6QmTbvrHSExMhKWlpV7bcHR0xIcffqjXNoiIiIiI6NHBpPshcenSJcydOxcODg4wMTGBra0tAgICkJGRIdaRSCRITk7WS/tr166FTCbDzZs3xTKNRgMjIyP4+/tr1VWr1ZBIJCgqKtJLLI1xdHSERCLR2eLj41t8jWeeeQbHjx/XY5QPxvHjxxEcHAxra2vI5XI88cQTUKlUbR0WERERERHdA8O2DoBumThx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F88++6w4TBm4tWL3li1b4O3tjS+++AJff/01PD09AQDjxo3DggULMG/ePPTt2xeZmZl3Xem9Ke+99x6GDRuGoKAgjBo1Ck888QR8fX216iQkJCAsLAyvvfYa3NzcMH78eGRnZ4tz5QcNGoTPPvsM//nPf9CnTx/s2bMHb775ZrNtL1q0CEuWLMGKFSvg7e2NiRMnwtzcHCqVCmZmZq2+l9tJJBJMmzZNXPn9du3bt8fPP/8MBwcHTJgwAR4eHpg5cyauX7/eZG+zpaUlduzYgREjRsDDwwNr167F119/jV69egEA4uLiEBsbi+XLl8PDwwOBgYHYvXs3nJyc7uteiIiIiIjo7ycRBEFo6yBIfyQSCZKSkjB+/Pi2DoX+JpWVlbCwsMCSn0/CVCprsm50P+u/KSoiIiIiosdLw9/dFRUVTXa6PXRzuomIiIiIiIgeF0y6iYiIiIiIiPSkzV8ZRvrF2QNERERERERthz3dRERERERERHrCpJuIiIiIiIhIT5h0ExEREREREekJk24iIiIiIiIiPWHSTURERERERKQnTLqJiIiIiIiI9ISvDCN6TC3s0xFyubytwyAiIiIi+kdjTzcRERERERGRnjDpJiIiIiIiItITJt1EREREREREesKkm4iIiIiIiEhPmHQTERERERER6QmTbiIiIiIiIiI9YdJNREREREREpCd8TzfRY+r9gjKYSmvbOoxWie5n3dYhEBERERE9UOzpJiIiIiIiItITJt1EREREREREesKkm4iIiIiIiEhPmHQTERERERER6QmTbiIiIiIiIiI9YdJNREREREREpCdMuomIiIiIiIj0hEk3ERERERERkZ4w6SYiIiIiIiLSEybdRERERERERHrCpPtvcOnSJcydOxcODg4wMTGBra0tAgICkJGRIdaRSCRITk7WS/tr166FTCbDzZs3xTKNRgMjIyP4+/tr1VWr1ZBIJCgqKtJLLI1xdHSERCKBRCJB+/bt4eXlhfXr1/9t7T8ImZmZGDNmDDp06ABTU1N4eXnh/fffR11dXVuHRkREREREbYhJ999g4sSJyMvLw8aNG3H8+HHs3LkT/v7+KCsre+Bt1dbW6pQplUpoNBrk5OSIZWlpabC1tUVWVhauX78ulqtUKjg4OKBHjx6tblsQBK3EvjWWLVuG8+fP4/Dhw3j22Wcxa9YspKSk3NO1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sgW9e/fG4sWLsWzZMq2V2RMSEtClSxcoFApMmDABs2fPRqdOncTjEokE33//PYYPH47nn38erq6umDp1Kk6fPq31bBuzYcMGDBkyBO7u7s09TiIiIiIieohx9XJ6LDSsXl5eXq61mNk/UcMqily9nIiIiIhIf7h6OREREREREVEbY9JNREREREREpCeGbR0A0YPg7+8PzpQgIiIiIqKHDXu6iYiIiIiIiPSESTcRERERERGRnjDpJiIiIiIiItITJt1EREREREREesKkm4iIiIiIiEhPmHQTERERERER6QlfGUb0mFrYpyPkcnlbh0FERERE9I/Gnm4iIiIiIiIiPWHSTURERERERKQnTLqJiIiIiIiI9IRJNxEREREREZGeMOkmIiIiIiIi0hMm3URERERERER6wqSbiIiIiIiISE/4nm6ix9T7BWUwlda2dRiPnOh+1m0dAhERERE9RtjTTURERERERKQnTLqJiIiIiIiI9IRJNxEREREREZGeMOkmIiIiIiIi0hMm3URERERERER6wqSbiIiIiIiISE+YdBMRERERERHpCZNuIiIiIiIiIj1h0k1ERERERESkJ0y6ifQgPDwc48ePb+swiIiIiIiojTHp/oe6dOkS5s6dCwcHB5iYmMDW1hYBAQHIyMgQ60gkEiQnJ+ul/bVr10Imk+HmzZtimUajgZGREfz9/bXqqtVqSCQSFBUV6SWWu8nMzMSYMWPQoUMHmJqawsvLC++//z7q6urEOsXFxZBIJMjPz/9bYyMiIiIiokcDk+5/qIkTJyIvLw8bN27E8ePHsXPnTvj7+6OsrOyBt1VbW6tTplQqodFokJOTI5alpaXB1tYWWVlZuH79uliuUqng4OCAHj16tLptQRC0EvuWSkpKgkKhQLdu3aBSqXD06FG8+uqrePvttzF16lQIgtDqa96vuro61NfX/+3tEhERERHRvWPS/Q905coVpKWlYcWKFVAqlejevTsGDBiAmJgYjBs3DgDg6OgIAAgJCYFEIhH3i4qKEBwcjM6dO0MqlaJ///7Yt2+f1vUdHR0RFxeHsLAwyOVyzJ49WycGNzc32NnZQa1Wi2VqtRrBwcFwcnLCgQMHtMqVSiUAYNOmTfDz84NMJoOtrS2mT5+O0tJSrboSiQQpKSnw9fWFiYkJ0tPTUVBQAKVSCZlMBrlcDl9fX62E/3ZV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6tTpQcdGRERERERE9Ehr13yV/1NUVIRnnnkGAwYMgI2NDX7//Xd8/PHHTLiJiIiIiIiIGtHipPull16Cp6cnKioqkJOTg6+++grOzs76jI2IiIiIiIjokdbi4eVr166FqakpSktL8cILL9y13q+//vpAAiMiIiIiIiJ61LU46V6yZIk+4yAiIiIiIiJ67DDpJiIiIiIiItKTVi2kRkREREREREQtd0+vDCOih9/CPh0hl8vbOgwiIiIion809nQTERERERER6QmTbiIiIiIiIiI9ua+k+/r16w8qDiIiIiIiIqLHTquT7vr6esTFxaFr166QSqU4efIkACA2NhYbNmx44AESERERERERPapanXS//fbbSExMxMqVK2FsbCyW9+7dG+vXr3+gwRERERERERE9ylqddH/xxRf49NNPERoaCgMDA7G8T58+OHr06AMNjoiIiIiIiOhR1upXhp09exYuLi465fX19bhx48YDCYqI7t/7BWUwlda2dRj/GNH9rNs6BCIiIiJ6CLW6p9vT0xNpaWk65du2bUO/fv0eSFBEREREREREj4NW93QvXrwYM2bMwNmzZ1FfX48dO3bg2LFj+OKLL7Br1y59xEhERERERET0SGp1T3dwcDC+++477Nu3D+bm5li8eDEKCwvx3XffYfTo0fqIkYiIiIiIiOiR1OqebgAYNmwY9u7d+6BjISIiIiIiInqs3FPS3UCj0aC+vl6rTC6X31dARERERERERI+LVg8vP3XqFMaOHQtzc3NYWFigQ4cO6NChAywtLdGhQwd9xEhERERERET0SGp1T/ezzz4LQRDw+eefo3PnzpBIJPqIi4iIiIiIiOiR1+qku6CgALm5uXBzc9NHPERERERERESPjVYPL+/fvz/OnDmjj1iIiIiIiIiIHiutTrrXr1+PFStWYOPGjcjNzcWhQ4e0NqKHVWJiIiwtLfXahqOjIz788EO9tkFERERERI+OVifdly5dQlFREZ5//nn0798fffv2Rb9+/cT/0r25dOkS5s6dCwcHB5iYmMDW1hYBAQHIyMgQ60gkEiQnJ+ul/bVr10Imk+HmzZtimUajgZGREfz9/bXqqtVqSCQSFBUV6SWWxjg6OkIikehs8fHxLb7GM888g+PHj+sxyvtXXFyMmTNnwsnJCWZmZujRoweWLFmC2tratg6NiIiIiIjuQavn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RmFhIb777juMHj1aHzESERERERERPZJa3dMNAMOGDcPevXsfdCxEREREREREj5V7SroBoLa2FqWlpTrvhHZwcLjvoIiIiIiIiIgeB61Ouk+cOIEXXngBmZmZWuWCIEAikaCuru6BBUdERERERET0KGt10h0eHg5DQ0Ps2rULdnZ2kEgk+oiLiIiIiIiI6JHX6qQ7Pz8fubm5cHd310c8RERERERERI+Ne3pP919//aWPWIiIiIiIiIgeKxKhBS83rqysFP8/JycHb775Jt599114eXnByMhIq65cLn/wURJRi1VWVsLCwgIVFRX8fSQiIiIi0pOW/t3douHllpaWWnO3BUHAyJEjtepwITUiIiIiIiIibS1KulUqlb7jICIiIiIiInrstCjpVigUWLZsGSIjI9G+fXt9x0RERERERET0WGjxQmpvvfUWNBqNPmMhIiIiIiIieqy0OOluwXprRERERERERHSbVr0y7PbF1IiIiIiIiIioaS2a093A1dW12cT78uXL9xUQET0Y7xeUwVRa29Zh0EMuup91W4dARERE9FhrVdL91ltvwcLCQl+xEBERERERET1WWpV0T506FZ06ddJXLERERERERESPlRbP6eZ8biIiIiIiIqLW4erlRERERERERHrS4uHl9fX1+oyDiIiIiIiI6LHTqleGEREREREREVHLMekmIiIiIiIi0hMm3URERERERER6wqSbiIiIiIiISE+YdNM/RmJiIiwtLfXahqOjIz788EO9tkFERERERI8OJt0PiUuXLmHu3LlwcHCAiYkJbG1tERAQgIyMDLGORCJBcnKyXtpfu3YtZDIZbt68KZZpNBoYGRnB399fq65arYZEIkFRUZFeYmmMo6MjJBKJzhYfH9/iazzzzDM4fvy4HqN8MMaNGwcHBweYmprCzs4Ozz33HM6dO9fWYRERERER0T1o8SvDSL8mTpyI2tpabNy4Ec7Ozrh48SJSU1NRVlb2wNuqra2FsbGxVplSqYRGo0FOTg4GDRoEAEhLS4OtrS2ysrJw/fp1mJqaAgBUKhUcHBzQo0ePVrctCALq6upgaNj6H71ly5Zh1qxZWmUymazF55uZmcHMzKzV7f7dlEol/v3vf8POzg5nz55FZGQkJk2ahMzMzLYOjYiIiIiIWok93Q+BK1euIC0tDStWrIBSqUT37t0xYMAAxMTE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cGjv3r3mMTp27Kj58+erU6dO6tSpU63xLViwQDNmzNCYMWPUqVMnzZs3T/fdd5/+8Ic/SJJsNps8PDxktVpls9lktVprHMPDw0OZmZlauXKl/Pz81K9fP/32t7/Vzp07zTqbNm3S9u3btXr1avXs2VMdO3bUggUL5Ofnp3fffVfNmjWT1WqVh4eHbDabbDabmjVrpiNHjshms2ngwIEKCQlR7969lZKS8rP+TQDgdkHSDQAAbmnz5s3TypUrVVpaet3HuPfee3XHHf/7sSgwMNBlpLZJkyZq1aqVjh075rJf3759zZ89PDzUs2dPM46SkhI5HA5zhNlqtapz586SLj1/fVl0dHSdsZ06dUrffPON+vXr51Ler1+/az7nkSNH6ptvvlFOTo4SEhLkdDoVFRWlzMxMM+aKigq1atXKJe6DBw+6xPxTo0aNUmVlpcLCwpSSkqKsrCxVV1dfU2wAcLvyaOgAAAAAfo6YmBjFx8dr1qxZSk5Odtl2xx13yDAMl7Lz58/XOIanp6fLusViqbXs4sWLVx1XRUWFEhMTNW/evBrbgoKCzJ+bN29+1ce8Eby9vTVo0CANGjRIqampmjRpkmbPnq3k5GRVVFQoKChITqezxn5+fn5XPGbbtm21Z88ebdiwQevXr9eTTz6pV155RZ9++mmNfgSAXxpGugEAwC0vIyNDa9as0ZYtW1zKAwICVFZW5pJ438h3a2/dutX8ubq6WoWFherSpYskKSoqSl988YVCQ0PVoUMHl+VaEm1fX18FBwfXeK1Xfn6+unbt+rPPoWvXrjpz5owZc1lZmTw8PGrE7O/vL0lq2rSpLly4UOM4zZo1U2JiopYsWSKn06ktW7bo888//9nxAcCtjqQbAADc8iIiIjR+/HgtWbLEpTwuLk7fffed5s+fr/379+vVV1/V2rVrb1i7r776qrKysrR792499dRTOn78uCZOnChJeuqpp/T9999r7NixKigo0P79+/XJJ5/o0UcfrTVprcv06dM1b948/eUvf9GePXs0c+ZMFRcX65lnnrnqY5SXl6t///5atWqVdu7cqYMHD2r16tWaP3++kpKSJF2aEb5v374aNmyY1q1bp0OHDmnz5s363e9+px07dkiSQkNDdfDgQRUXF+sf//iHzp07p8zMTL3xxhvatWuXDhw4oFWrVqlZs2Zq167dNZ0nANyOSLoBAMBtIS0trcbt3126dNEf//hHvfrqq4qMjNT27dtrndn7emVkZCgjI0ORkZHatGmTcnJyzBHhy6PTFy5c0EMPPaSIiAg9++yz8vPzc3l+/Go8/fTTev755zV16lRFRETo448/Vk5Ojjp27HjVx7BarerTp48WL16smJgYdevWTampqUpJSdGyZcskXbqF/qOPPlJMTIweffRRhYeHa8yYMTp8+LACAwMlXXouPCEhQXa7XQEBAfrzn/8sPz8//ed//qf69eun7t27a8OGDVqzZs0V3xcOAL8kFuOnDzoBAAAAAIAbgpFuAAAAAADchKQbAAAAAAA3IekGAAAAAMBNSLoBAAAAAHATkm4AAAAAANyEpBsAAAAAADch6QYAAAAAwE1IugEAAAAAcBOSbgAAAAAA3ISkGwAAAAAANyHpBgAAAADATUi6AQAAAABwk/8H3U8Ui9/3hngAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import pymysql\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Connect to the MySQL database\n", + "connection = pymysql.connect(\n", + " host='localhost', # Your MySQL server address\n", + " user='root', # Your MySQL username\n", + " password='Apfelsaft_1', # Your MySQL password\n", + " db='lego', # The database you're working with\n", + " cursorclass=pymysql.cursors.DictCursor\n", + ")\n", + "\n", + "# Query to get the number of sets per LEGO theme, specifically for Star Wars themes\n", + "query = \"\"\"\n", + " SELECT \n", + " t.name AS theme_name,\n", + " COUNT(s.set_num) AS num_sets\n", + " FROM \n", + " sets s\n", + " JOIN \n", + " themes t ON s.theme_id = t.id\n", + " WHERE \n", + " t.name LIKE '%Star Wars%' -- Adjust the condition to match your theme naming convention\n", + " GROUP BY \n", + " t.name\n", + " ORDER BY \n", + " num_sets DESC;\n", + "\"\"\"\n", + "\n", + "# Fetch data\n", + "with connection.cursor() as cursor:\n", + " cursor.execute(query)\n", + " result = cursor.fetchall()\n", + "\n", + "# Convert to DataFrame\n", + "df_most_sets = pd.DataFrame(result)\n", + "\n", + "# Visualization\n", + "plt.figure(figsize=(10, 6))\n", + "plt.barh(df_most_sets['theme_name'], df_most_sets['num_sets'], color='skyblue')\n", + "plt.title('Number of Sets per LEGO Star Wars Theme')\n", + "plt.xlabel('Number of Sets')\n", + "plt.ylabel('Theme Name')\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# Close the connection\n", + "connection.close()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 2.\tWhat is the average part count per set for each theme?\n", + "## Analyze the complexity of sets within different themes by calculating the average number of parts.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 172, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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EBER/UNlZWWhe/fu+O677+o8f5aeL0uWLMHSpUtx8+bNZ9KzR0RE/2yc001ERPSESkpKdMrWrFmDRo0aPXbFZyIiIvpn4ZxuIiKiJ7Ry5UpkZGRAqVTC0NBQfOXPtGnTdF5PRkRERP9MTLqJiIieUL9+/ZCYmIjw8HBoNBrY2NhgyZIlOq8yIyIion8uzukmIiIiIiIi0hPO6SYiIiIiIiLSEybdRERERERERHrCOd1EL5nKykpcvXoVMpkMEomkocMhIiIiInopCYKAu3fvok2bNmjU6PH92Uy6iV4yV69e5arJRERERER/kytXrqBt27aPPc6km+glI5PJADz4xy+Xyxs4GiIiIiKil9OdO3dgbW0t/v39OEy6iV4yVUPK5XI5k24iIiIiIj2rbUonF1IjIiIiIiIi0hMm3URERERERER6wqSbiIiIiIiISE+YdBMRERERERHpCZNuIiIiIiIiIj1h0k1ERERERESkJ0y6iYiIiIiIiPSESTcRERERERGRnjDpJiIiIiIiItITJt1EREREREREesKkm4iIiIiIiEhPmHQTERERERER6QmTbiIiIiIiIiI9YdJNREREREREpCdMuomIiIiIiIj0hEk3ERERERERkZ4w6SYiIiIiIiLSEybdRERERERERHrCpJuIiIiIiIhIT5h0ExEREREREemJYUMHQET6sb5wPUwrTBs6DHrOzLaY3dAhEBEREf2jsKebiIiIiIiISE+YdBMRERERERHpCZNuIiIiIiIiIj1h0k1ERERERESkJ0y6iYiIiIiIiPSESTcRERERERGRnjDpJiIiIiIiItITJt1EREREREREesKkm4iIiIiIiEhPmHTTP0ZMTAzMzc312oatrS3WrFmj1zaIiIiIiOjFwaT7OXHz5k1Mnz4dNjY2MDExgZWVFby9vZGamirWkUgkiI+P10v7UVFRkMlkuH//vlim0WhgZGQET09PrbpqtRoSiQQXLlzQSyzVsbW1hUQi0dkiIiLqfI0JEybg3Llzeozy2Th37hz8/PzQokULyOVyDBgwACqVqqHDIiIiIiKiJ2DY0AHQA2PHjkVZWRk2bdoEe3t73LhxA0lJSSgoKHjmbZWVlcHY2FirTKlUQqPR4Pjx4+jTpw8AIDk5GVZWVjh69Cju3bsHU1NTAIBKpYKNjQ3at29f77YFQUBFRQUMDev/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qakp8vPzMWXKlMfW+/XXX59JYEREREREREQvujon3YsXL9ZnHEREREREREQvHSbdRERERERERHpSr4XUiIiIiIiIiKjunuiVYUT0/JtuMR1yubyhwyAiIiIi+kdjTzcRERERERGRnjDpJiIiIiIiItKTp0q6792796ziICIiIiIiInrp1DvprqysRHh4OF555RVIpVJcvHgRABAWFoZvv/32mQdIRERERERE9KKqd9L98ccfIyYmBitXroSxsbFY3qVLF2zcuPGZBkdERERERET0Iqt30r1582Z88803CAwMhIGBgVjetWtXnDlz5pkGR0RERERERPQiq/crw/788084ODjolFdWVqK8vPyZBEVET2994XqYVpg2dBhERI8122J2Q4dARESkd/Xu6XZ2dkZycrJO+fbt29G9e/dnEhQRERERERHRy6DePd2LFi3CpEmT8Oeff6KyshI7d+7E2bNnsXnzZuzZs0cfMRIRERERERG9kOrd0+3n54fdu3fjwIEDaNKkCRYtWoScnBzs3r0bQ4YM0UeMRERERERERC+kevd0A8DAgQORmJj4rGMhIiIiIiIieqk8UdJdRaPRoLKyUqtMLpc/VUBEREREREREL4t6Dy+/dOkSRowYgSZNmqBp06awsLCAhYUFzM3NYWFhoY8YiYiIiIiIiF5I9e7pfv311yEIAv7973+jVatWkEgk+oiLiIiIiIiI6IVX76Q7OzsbGRkZ6Nixoz7iISIiIiIiInpp1Ht4ec+ePXHlyhV9xEJERERERET0Uql30r1x40asWLECmzZtQkZGBk6cOKG1ET2vYmJiYG5urtc2bG1tsWbNGr22QUREREREL456J903b97EhQsXMHnyZPTs2RPdunVD9+7dxf/Sk7l58yamT58OGxsbmJiYwMrKCt7e3khNTRXrSCQSxMfH66X9qKgoyGQy3L9/XyzTaDQwMjKCp6enVl21Wg2JRIILFy7oJZbq2NraQiKR6GwRERF1vsaECRNw7tw5PUb5bHzyySfo168fGjdurPcvCYiIiIiISL/qPad7ypQp6N69O3744QcupPYMjR07FmVlZdi0aRPs7e1x48YNJCUloaCg4Jm3VVZWBmNjY60ypVIJjUaD48ePo0+fPgCA5ORkWFlZ4ejRo7h37x5MTU0BACqVCjY2Nmjfvn292xYEARUVFTA0rP/b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8PBa2ygpKcHMmTOhVqtx+fJlpKamIj09vcbkGADu3r2L69eva22Pzl9etmwZkpKScPLkSQQHB6NFixYYNWpUvWN4//33kZSUhPDwcJw7dw6bNm3CunXrEBoaCuDBau8+Pj546623cPToUWRkZCAkJESr533w4MHo27cvRo0ahf379yM3NxdpaWn48MMPa1ypPS8vD1lZWcjLy0NFRYXYQ67RaGp9tkRERERE9Hypd9L9ySefICYmBitXrtR613OXLl2wcePGZxrcP4VUKkXv3r3x+eefw8PDA126dEFYWBimTp2KdevWifVWrVqFxMREWFtbo3v37gAeLPhlYWGBfv36wdfXF97e3nBzc3viWJRKJUpKSuDg4IBWrVqJ5QqFAnfv3hVfLQY8WNwtJiYG27Ztg7OzMyIiIhAZGVlrGwYGBigoKEBQUBAcHR3h7++PYcOG1TovedGiRWjdurXWNn/+fK06ERERmD17Ntzd3XH9+nXs3r1b553kdYnBzc0NP/74I2JjY9GlSxcsWrQIy5Yt05pTHh0djTZt2kChUGDMmDGYNm0aWrZsKR6XSCTYt28fPDw8MHnyZDg6OiIgIACXL1/WerbV3Wf37t2xePFiaDQadO/eHd27d6/1lWpERERERPT8kQiCINTnBAcHB2zYsAGDBg2CTCZDdnY27O3tcebMGfTt21fsgSX6O1W9O7ywsFBrMbN/ojt37qBp06aIyI2Aqdy0ocMhInqs2RazGzoEIiKiJ1b1d/ft27drnOJZ757uP//8Ew4ODjrllZWVj30fMhEREREREdE/Ub2TbmdnZyQnJ+uUb9++XRzyTERERERERERP8J7uRYsWYdKkSfjzzz9RWVmJnTt34uzZs9i8eTP27NmjjxiJauXp6Yl6zpQgIiIiIiLSu3r3dPv5+WH37t04cOAAmjRpgkWLFiEnJwe7d+/GkCFD9BEjERERERER0Qup3j3dADBw4EAkJiY+61iIiIiIiIiIXipPlHQDQFlZGfLz83XeCW1jY/PUQRERERERERG9DOqddJ8/fx5TpkxBWlqaVrkgCJBIJKioqHhmwRERERERERG9yOqddAcHB8PQ0BB79uxB69atIZFI9BEXERERERER0Quv3kl3VlYWMjIy0KlTJ33EQ0RERERERPTSeKL3dP/vf//TRyxERERERERELxWJUIeXG9+5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zo30StLQoUNlsVjM/d27dyslJUUtW7aU1WpV9+7d9fHHH3tcPzIyUhkZGRo7dqxsNpsmTJhQK4YOHTooLCxMLpfLLHO5XEpJSVHbtm316aefepQ7HA5J0l//+ld169ZNgYGBCg0N1ejRo3XkyBGPuhaLRTk5OUpISJCfn582bdqk0tJSORwOBQYGymazKSEhQdu2bavzPp1v4+fbzTff7NHOBx98oC5dusjf31933nmntm/fbp7/y+nll4rh3Xff1e233y4/Pz9FRkZqwYIFHvEcOXJEycnJCggIUNu2bbVy5cpaMR87dkzjxo1T8+bNZbPZ1K9fP5WWll70Mw4aNEjLly/XXXfdpXbt2unee+9VWlqa1qxZU+e9AQAAANAwkXQ3AFarVVarVWvXrtXp06cvWKewsFCStHz5ch06dMjcd7vduueee5Sbm6vi4mINGjRIycnJOnDggMf58+fPV1xcnIqLi5Wenn7BNhwOh5xOp7nvdDqVmJgou91ulldWVmrLli1m0n3mzBllZGSotLRUa9eu1b59+5Samlrr2tOnT1dmZqbKysrUpUsXjRkzRq1bt1ZhYaGKioo0ffp0+fr6XtmNu4Bp06ZpwYIFKiwsVPPmzZWcnKwzZ85csG5dMRQVFWnEiBEaOXKkPv/8c82ePVvp6enKysoyz09NTdU333wjp9Opd955R3/5y188fnCQpPvuu09HjhxRTk6OioqKFB8fr/79++vHH3+87M90/PhxNWvW7MpvBgAAAIB6x/TyBsDHx0dZWVkaP368lixZovj4eNntdo0cOVJdunSRJDVv3lySFBwcrNDQUPPcuLg4xcXFmfsZGRnKzs7WunXrNGnSJLO8X79+mjp1ap1xOBwOPfXUU6qurlZlZaWKi4tlt9t15swZLVmyRJK0efNmnT592ky6H374YfP8du3a6ZVXXlH37t3ldrtltVrNY3PmzNHAgQPN/QMHDmjatGmKiYmRJLVv3/6S9+nZZ5/Vn/70J4+ynJwc9enTx9yfNWuW2c6KFSvUunVrZWdna8SIEbWuV1cML730kvr372/+QBEdHa0vv/xSL774olJTU7Vz507l5ORo69at6t69uyRp2bJl6tixo3mNTZs2aevWrTpy5Ij8/PwknfvxY+3atXrnnXcuOOPgl77++mstWrSozqnlp0+f9vix5sSJE5e8LgAAAIBrg5HuBmL48OE6ePCg1q1bp0GDBsnlcik+Pt5jZPVC3G630tLS1LFjRwUHB8tqtaqsrKzWSHe3bt0uGUNiYqIqKipUWFiovLw8RUdHq3nz5rLb7eZz3S6XS+3atVNERISkcyPCycnJioiIUGBgoOx2uyRdsv2nn35a48aN04ABA5SZmXlZi7JNmzZNJSUlHtsvr9uzZ0/z382aNVOHDh1UVlZ2wevVFUNZWZl69+7tUb93797atWuXampqVFZWJh8fHyUkJJjHY2Jiak1fd7vduuWWW8zZDFarVXv37r2sz/vdd99p0KBBuu+++2o9y/5zc+fOVVBQkLmFh4df8toAAAAArg2S7gbE399fAwcOVHp6ugoKCpSamqpZs2bVeU5aWpqys7P1/PPPKy8vTyUlJercuXOt1a7PP/tcl6ioKLVu3VpOp1NOp9NMoFu1aqXw8HAVFBTI6XSqX79+kqSKigolJSXJZrNp5cqVKiwsVHZ2tiRdsv3Zs2friy++0ODBg7Vx40bFxsaa515MSEiIoqKiPLZ/ZWG0q4nhSrjdboWFhdX6oWDHjh2aNm1anecePHhQDodDvXr10muvvVZn3RkzZuj48ePm9s033/xqnwEAAADAv4akuwGLjY1VRUWFue/r66uamhqPOvn5+UpNTdXQoUPVuXNnhYaGat++fVfdpsPhkMvlksvl8nhVWN++fc3p1Oenln/11VcqLy9XZmam+vTpo5iYmFrPNNclOjpaU6ZM0fr16zVs2DAtX778quM+7+cLvh09elQ7d+70mPJ9uTF07NjR43Vt0rl7HR0drUaNGikmJkbV1dUqKioyj+/YsUPHjh0z9+Pj43X48GH5+PjU+rEgJCTkojF99913SkxMVEJCgpYvX66bbqr7z9TPz082m81jAwAAANAwkHQ3AOXl5erXr5/efPNNffbZZ9q7d69Wr16tefPmKSUlxawXGRmp3NxcHT58WEePHpV07jnkNWvWqKSkRKWlpRo9erTOnj171bE4HA5t2rRJJSUl5ki3JNntdi1dulRVVVVm0h0REaHGjRtr0aJF2rNnj9atW6eMjIxLtlFZWalJkybJ5XJp//79ys/PV2FhYZ3JsSSdPHlShw8f9th++fzynDlzlJubq+3btys1NVUhISEaMmTIFccwdepU5ebmKiMjQzt37tSKFSu0ePFipaWlSTq32vugQYP06KOPasuWLSoqKtK4ceM8Rt4HDBignj17asiQIVq/fr327dungoIC/fGPf7zoSu3nE+6IiAjNnz9fP/zwg/lZAQAAAFx/SLobAKvVqh49emjhwoXq27evOnXqpPT0dI0fP16LFy826y1YsEAbNmxQeHi4unbtKuncgl9NmzZVr169lJycrKSkJMXHx191LA6HQ5WVlYqKilLLli3NcrvdrpMnT5qvFpPOLe6WlZWl1atXKzY2VpmZmZf1LulGjRqpvLxcY8eOVXR0tEaMGKG7775bzz33XJ3nzZw5U2FhYR7bM88841EnMzNTkydPVkJCgg4fPqz33nuv1jvJLyeG+Ph4vf3221q1apU6deqkmTNnas6cOR4rsy9fvlytWrWS3W7XsGHDNGHCBLVo0cI8brFY9OGHH6pv37566KGHFB0drZEjR2r//v0e9/bnNmzYoK+//lq5ublq3bq1x2cFAAAAcP2xGIZh1HcQwL/q/LvDjx496rGY2W/RiRMnFBQUpMx9mfK3+dd3OABw3ZvcdHJ9hwAAaIDOf+8+fvx4nY94MtINAAAAAICXkHQDAAAAAOAlPvUdAPBrSExMFE9KAAAAAGhoGOkGAAAAAMBLSLoBAAAAAPASkm4AAAAAALyEpBsAAAAAAC8h6QYAAAAAwEtIugEAAAAA8BJeGQbcoCY2nSibzVbfYQAAAAC/aYx0AwAAAADgJSTdAAAAAAB4CUk3AAAAAABeQtINAAAAAICXkHQDAAAAAOAlJN0AAAAAAHgJSTcAAAAAAF7Ce7qBG9SrR1+Vf41/fYcBALhGJjedXN8hAAAugJFuAAAAAAC8hKQbAAAAAAAvIekGAAAAAMBLSLoBAAAAAPASkm4AAAAAALyEpBsAAAAAAC8h6QYAAAAAwEtIugEAAAAA8BKSbgAAAAAAvISkGw2ay+WSxWLRsWPH6jsUAAAAALhiJN1e9MMPP2jixImKiIiQn5+fQkNDlZSUpPz8fLOOxWLR2rVrvdL+kiVLFBgYqOrqarPM7XbL19dXiYmJHnXPJ7e7d+/2SiwXU1xcrPvuu08tW7aUv7+/2rdvr/Hjx2vnzp3XNI5LCQsLU2ZmpkfZ9OnTZbFY5HK5PMoTExP1hz/84RpGBwAAAKChIun2ouHDh6u4uFgrVqzQzp07tW7dOiUmJqq8vPxXb6uqqqpWmcPhkNvt1rZt28yyvLw8hYaGasuWLTp16pRZ7nQ6FRERodtuu+2K2zYMwyOxv1zvv/++7rzzTp0+fVorV65UWVmZ3nzzTQUFBSk9Pf2Kr+dNiYmJtZJrp9Op8PBwj/JTp07p008/Vb9+/a6qnQv1IwAAAIDrF0m3lxw7dkx5eXl64YUX5HA41KZNG91xxx2aMWOG7r33XklSZGSkJGno0KGyWCzm/u7du5WSkqKWLVvKarWqe/fu+vjjjz2uHxkZqYyMDI0dO1Y2m00TJkyoFUOHDh0UFhbmkRS6XC6lpKSobdu2+vTTTz3KHQ6HJOmvf/2runXrpsDAQIWGhmr06NE6cuSIR12LxaKcnBwlJCTIz89PmzZtUmlpqRwOhwIDA2Wz2ZSQkOCR8P/cTz/9pIceekj33HOP1q1bpwEDBqht27bq0aOH5s+fr6VLl1703r777ru6/fbb5efnp8jISC1YsKDWvXn++ef18MMPKzAwUBEREXrttdc86nzzzTcaMWKEgoOD1axZM6WkpGjfvn0XbdPhcCg/P9/8ceHkyZMqLi7Ws88+63F/N2/erNOnT8vhcKi8vFyjRo3SrbfeqiZNmqhz587629/+5nHdxMRETZo0SU899ZRCQkKUlJQkwzA0e/Zsc4ZEq1at9OSTT140NgAAAAANF0m3l1itVlmtVq1du1anT5++YJ3CwkJJ0vLly3Xo0CFz3+1265577lFubq6Ki4s1aNAgJScn68CBAx7nz58/X3FxcSouLr7oyLDD4ZDT6TT3nU6nEhMTZbfbzfLKykpt2bLFTLrPnDmjjIwMlZaWau3atdq3b59SU1NrXXv69OnKzMxUWVmZunTpojFjxqh169YqLCxUUVGRpk+fLl9f3wvG9dFHH+l//ud/9Mwzz1zweHBw8AXLi4qKNGLECI0cOVKff/65Zs+erfT0dGVlZXnUW7Bggbp166bi4mI9/vjjmjhxonbs2GF+vqSkJAUGBiovL0/5+fmyWq0aNGjQRUeaz88aON9HeXl5io6O1vDhwz1mDTidTkVGRioyMlKnTp1SQkKCPvjgA23fvl0TJkzQH/7wB23dutXj2itWrFDjxo2Vn5+vJUuW6N1339XChQu1dOlS7dq1S2vXrlXnzp0vGJcknT59WidOnPDYAAAAADQMPvUdwI3Kx8dHWVlZGj9+vJYsWaL4+HjZ7XaNHDlSXbp0kSQ1b95c0rkEMzQ01Dw3Li5OcXFx5n5GRoays7O1bt06TZo0ySzv16+fpk6dWmccDodDTz31lKqrq1VZWani4mLZ7XadOXNGS5YskeQ5OitJDz/8sHl+u3bt9Morr6h79+5yu92yWq3msTlz5mjgwIHm/oEDBzRt2jTFxMRIktq3b3/RuHbt2iVJZt3L9dJLL6l///7mjwzR0dH68ssv9eKLL3r8MHDPPffo8ccflyQ9++yzWrhwoZxOpzp06KC33npLZ8+e1euvvy6LxSLp3A8fwcHBcrlcuuuuu2q12759e916661yuVzq2bOnXC6X7Ha7QkNDFRERoc2bN8vhcHjMGLj11luVlpZmXuPf/u3f9NFHH+ntt9/WHXfc4XHtefPmmfsffPCBQkNDNWDAAPn6+ioiIsKj/i/NnTtXzz333BXdRwAAAADXBiPdXjR8+HAdPHhQ69at06BBg+RyuRQfH19rVPaX3G630tLS1LFjRwUHB8tqtaqsrKzWSHe3bt0uGUNiYqIqKipUWFhojs42b95cdrvdHKF1uVxq166dIiIiJJ0bTU5OTlZERIQCAwNlt9sl6ZLtP/300xo3bpwGDBigzMzMOhdlMwzjkrFfSFlZmXr37u1R1rt3b+3atUs1NTVm2fkfNqRzi9WFhoaaU+RLS0v19ddfKzAw0JyR0KxZM506darOmH/+XLfL5TIXo7Pb7XK5XLVmDNTU1CgjI0OdO3dWs2bNZLVa9dFHH9W6jwkJCR779913nyorK9WuXTuNHz9e2dnZdT4zP2PGDB0/ftzcvvnmm4vWBQAAAHBtkXR7mb+/vwYOHKj09HQVFBQoNTVVs2bNqvOctLQ0ZWdn6/nnn1deXp5KSkrUuXPnWlOfb7755ku2HxUVpdatW8vpdMrpdJoJdKtWrRQeHq6CggI5nU5z4a+KigolJSXJZrNp5cqVKiwsVHZ2tqTai3z9sv3Zs2friy++0ODBg7Vx40bFxsaa5/5SdHS0JOmrr7665Ge4Gr+c1m6xWHT27FlJ537USEhIUElJice2c+dOjR49+qLXPP9cd3l5uTljQJI5Vb+goEBVVVXmvXzxxRf15z//Wc8++6ycTqdKSkqUlJR0yfsYHh6uHTt26C9/+YsCAgL0+OOPq2/fvjpz5swF4/Lz85PNZvPYAAAAADQMJN3XWGxsrCoqKsx9X19fjxFaScrPz1dqaqqGDh2qzp07KzQ0tM5Fvi7l/LTnn4/OSlLfvn2Vk5OjrVu3mqOzX331lcrLy5WZmak+ffooJibGYxG1S4mOjtaUKVO0fv16DRs2TMuXL79gvbvuukshISEe06p/7mLv5e7YsaPHK9ekc/crOjpajRo1uqwY4+PjtWvXLrVo0UJRUVEeW1BQ0EXPczgcqqio0EsvvaT27durRYsWks7dx61btyonJ8echn4+rpSUFD3wwAOKi4tTu3btLvtVaAEBAUpOTtYrr7wil8ulzZs36/PPP7+scwEAAAA0HCTdXlJeXq5+/frpzTff1Geffaa9e/dq9erVmjdvnlJSUsx6kZGRys3N1eHDh3X06FFJ557xXbNmjUpKSlRaWqrRo0ebo7RXw+FwaNOmTSopKTFHZ6VzI7RLly5VVVWVmXRHRESocePGWrRokfbs2aN169YpIyPjkm1UVlZq0qRJcrlc2r9/v/Lz81VYWKiOHTtesP7NN9+s119/XR988IHuvfdeffzxx9q3b5+2bdumZ555Ro899tgFz5s6dapyc3OVkZGhnTt3asWKFVq8eLHHs9OXMmbMGIWEhCglJUV5eXnau3evXC6XnnzySX377bcXPe/8FPxFixZ53Mfw8HC1atVKr732mnkfpXP9uGHDBhUUFKisrEyPPvqovv/++0vGl5WVpWXLlmn79u3as2eP3nzzTQUEBKhNmzaX/RkBAAAANAwk3V5itVrVo0cPLVy4UH379lWnTp2Unp6u8ePHa/HixWa9BQsWaMOGDQoPD1fXrl0lnVssrGnTpurVq5eSk5OVlJSk+Pj4q47F4XCosrJSUVFRatmypVlut9t18uRJ89Vi0rnF3bKysrR69WrFxsYqMzNT8+fPv2QbjRo1Unl5ucaOHavo6GiNGDFCd999d50LfKWkpKigoEC+vr4aPXq0YmJiNGrUKB0/flz/+3//7wueEx8fr7ffflurVq1Sp06dNHPmTM2ZM+eCq6tfTJMmTfTPf/5TERERGjZsmDp27KhHHnlEp06duuTUbIfDoZMnT3rMGJD+/738edL9pz/9SfHx8UpKSlJiYqJCQ0M1ZMiQS8YXHBys//zP/1Tv3r3VpUsXffzxx3rvvfd0yy23XPZnBAAAANAwWIyrXdEKQIN04sQJBQUFKXNfpvxt/vUdDgDgGpncdHJ9hwAAvynnv3cfP368zsE7RroBAAAAAPASkm4AAAAAALyEpBsAAAAAAC8h6QYAAAAAwEtIugEAAAAA8BKSbgAAAAAAvISkGwAAAAAALyHpBgAAAADAS0i6AQAAAADwEp/6DgCAd0xsOlE2m62+wwAAAAB+0xjpBgAAAADAS0i6AQAAAADwEpJuAAAAAAC8hKQbAAAAAAAvIekGAAAAAMBLSLoBAAAAAPASkm4AAAAAALyE93QDN6hXj74q/xr/+g4DaDAmN51c3yEAAIDfIEa6AQAAAADwEpJuAAAAAAC8hKQbAAAAAAAvIekGAAAAAMBLSLoBAAAAAPASkm4AAAAAALyEpBsAAAAAAC8h6QYAAAAAwEtIugEAAAAA8BKSbgAAAAAAvISkG9eFH374QRMnTlRERIT8/PwUGhqqpKQk5efnm3UsFovWrl3rlfaXLFmiwMBAVVdXm2Vut1u+vr5KTEz0qOtyuWSxWLR7926vxAIAAADg+uFT3wEAl2P48OGqqqrSihUr1K5dO33//ffKzc1VeXn5r95WVVWVGjdu7FHmcDjkdru1bds23XnnnZKkvLw8hYaGasuWLTp16pT8/f0lSU6nUxEREbrtttuuuG3DMFRTUyMfH/40AQAAgBsBI91o8I4dO6a8vDy98MILcjgcatOmje644w7NmDFD9957ryQpMjJSkjR06FBZLBZzf/fu3UpJSVHLli1ltVrVvXt3ffzxxx7Xj4yMVEZGhsaOHSubzaYJEybUiqFDhw4KCwuTy+Uyy1wul1JSUtS2bVt9+umnHuUOh0OS9Ne//lXdunVTYGCgQkNDNXr0aB05csSjrsViUU5OjhISEuTn56dNmzaptLRUDodDgYGBstlsSkhI0LZt236N2wkAAADgGiLpRoNntVpltVq1du1anT59+oJ1CgsLJUnLly/XoUOHzH2326177rlHubm5Ki4u1qBBg5ScnKwDBw54nD9//nzFxcWpuLhY6enpF2zD4XDI6XSa+06nU4mJibLb7WZ5ZWWltmzZYibdZ86cUUZGhkpLS7V27Vrt27dPqampta49ffp0ZWZmqqysTF26dNGYMWPUunVrFRYWqqioSNOnT5evr+8F4zp9+rROnDjhsQEAAABoGJjDigbPx8dHWVlZGj9+vJYsWaL4+HjZ7XaNHDlSXbp0kSQ1b95ckhQcHKzQ0FDz3Li4OMXFxZn7GRkZys7O1rp16zRp0iSzvF+/fpo6dWqdcTgcDj311FOqrq5WZWWliouLZbfbdebMGS1ZskSStHnzZp0+fdpMuh9++GHz/Hbt2umVV15R9+7d5Xa7ZbVazWNz5szRwIEDzf0DBw5o2rRpiomJkSS1b9/+onHNnTtXzz33XJ2xAwAAAKgfjHTjujB8+HAdPHhQ69at06BBg+RyuRQfH6+srKw6z3O73UpLS1PHjh0VHBwsq9WqsrKyWiPd3bp1u2QMiYmJqqioUGFhofLy8hQdHa3mzZvLbrebz3W7XC61a9dOERERkqSioiIlJycrIiJCgYGBstvtknTJ9p9++mmNGzdOAwYMUGZmZp2Lss2YMUPHjx83t2+++eaSnwUAAADAtUHSjeuGv7+/Bg4cqPT0dBUUFCg1NVWzZs2q85y0tDRlZ2fr+eefV15enkpKStS5c2dVVVV51Lv55psv2X5UVJRat24tp9Mpp9NpJtCtWrVSeHi4CgoK5HQ61a9fP0lSRUWFkpKSZLPZtHLlShUWFio7O1uSLtn+7Nmz9cUXX2jw4MHauHGjYmNjzXN/yc/PTzabzWMDAAAA0DCQdOO6FRsbq4qKCnPf19dXNTU1HnXy8/OVmpqqoUOHqnPnzgoNDdW+ffuuuk2HwyGXyyWXy+XxqrC+ffsqJydHW7duNaeWf/XVVyovL1dmZqb69OmjmJgYj0XULiU6OlpTpkzR+vXrNWzYMC1fvvyq4wYAAABQP0i60eCVl5erX79+evPNN/XZZ59p7969Wr16tebNm6eUlBSzXmRkpHJzc3X48GEdPXpU0rlnodesWaOSkhKVlpZq9OjROnv27FXH4nA4tGnTJpWUlJgj3ZJkt9u1dOlSVVVVmUl3RESEGjdurEWLFmnPnj1at26dMjIyLtlGZWWlJk2aJJfLpf379ys/P1+FhYXq2LHjVccNAAAAoH6QdKPBs1qt6tGjhxYuXKi+ffuqU6dOSk9P1/jx47V48WKz3oIFC7RhwwaFh4era9eukqSXXnpJTZs2Va9evZScnKykpCTFx8dfdSwOh0OVlZWKiopSy5YtzXK73a6TJ0+arxaTzi3ulpWVpdWrVys2NlaZmZmaP3/+Jdto1KiRysvLNXbsWEVHR2vEiBG6++67WSwNAAAAuA5ZDMMw6jsIAL+eEydOKCgoSJn7MuVv86/vcIAGY3LTyfUdAgAAuIGc/959/PjxOtdVYqQbAAAAAAAvIekGAAAAAMBLSLoBAAAAAPASkm4AAAAAALyEpBsAAAAAAC8h6QYAAAAAwEtIugEAAAAA8BKSbgAAAAAAvISkGwAAAAAAL/Gp7wAAeMfEphNls9nqOwwAAADgN42RbgAAAAAAvISkGwAAAAAALyHpBgAAAADAS0i6AQAAAADwEpJuAAAAAAC8hKQbAAAAAAAvIekGAAAAAMBLSLoBAAAAAPASkm4AAAAAALyEpBsAAAAAAC8h6QYAAAAAwEtIugEAAAAA8BKSbgAAAAAAvISkGwAAAAAALyHpBgAAAADAS0i6AQAAAADwEpJuAAAAAAC8hKQbAAAAAAAvIekGAAAAAMBLSLoBAAAAAPASkm4AAAAAALzEp74DAPDrMgxDknTixIl6jgQAAAC4cZ3/vn3++/fFkHQDN5jy8nJJUnh4eD1HAgAAANz4Tp48qaCgoIseJ+kGbjDNmjWTJB04cKDOP35cX06cOKHw8HB98803stls9R0OfiX0642Jfr0x0a83Jvr1xnSt+tUwDJ08eVKtWrWqsx5JN3CDuemmc0s1BAUF8T+PG5DNZqNfb0D0642Jfr0x0a83Jvr1xnQt+vVyBrlYSA0AAAAAAC8h6QYAAAAAwEtIuoEbjJ+fn2bNmiU/P7/6DgW/Ivr1xkS/3pjo1xsT/Xpjol9vTA2tXy3GpdY3BwAAAAAAV4WRbgAAAAAAvISkGwAAAAAALyHpBgAAAADAS0i6gRvIf/zHfygyMlL+/v7q0aOHtm7dWt8hoQ7//Oc/lZycrFatWslisWjt2rUexw3D0MyZMxUWFqaAgAANGDBAu3bt8qjz448/asyYMbLZbAoODtYjjzwit9t9DT8Ffmnu3Lnq3r27AgMD1aJFCw0ZMkQ7duzwqHPq1Ck98cQTuuWWW2S1WjV8+HB9//33HnUOHDigwYMHq0mTJmrRooWmTZum6urqa/lR8DOvvvqqunTpYr7ztWfPnsrJyTGP06fXv8zMTFksFj311FNmGf16fZo9e7YsFovHFhMTYx6nX69f3333nR544AHdcsstCggIUOfOnbVt2zbzeEP97kTSDdwg3nrrLT399NOaNWuW/vu//1txcXFKSkrSkSNH6js0XERFRYXi4uL0H//xHxc8Pm/ePL3yyitasmSJtmzZoptvvllJSUk6deqUWWfMmDH64osvtGHDBr3//vv65z//qQkTJlyrj4AL+OSTT/TEE0/o008/1YYNG3TmzBndddddqqioMOtMmTJF7733nlavXq1PPvlEBw8e1LBhw8zjNTU1Gjx4sKqqqlRQUKAVK1YoKytLM2fOrI+PBEmtW7dWZmamioqKtG3bNvXr108pKSn64osvJNGn17vCwkItXbpUXbp08SinX69ft99+uw4dOmRumzZtMo/Rr9eno0ePqnfv3vL19VVOTo6+/PJLLViwQE2bNjXrNNjvTgaAG8Idd9xhPPHEE+Z+TU2N0apVK2Pu3Ln1GBUulyQjOzvb3D979qwRGhpqvPjii2bZsWPHDD8/P+Nvf/ubYRiG8eWXXxqSjMLCQrNOTk6OYbFYjO++++6axY66HTlyxJBkfPLJJ4ZhnOtHX19fY/Xq1WadsrIyQ5KxefNmwzAM48MPPzRuuukm4/Dhw2adV1991bDZbMbp06ev7QfARTVt2tR4/fXX6dPr3MmTJ4327dsbGzZsMOx2uzF58mTDMPhbvZ7NmjXLiIuLu+Ax+vX69eyzzxq/+93vLnq8IX93YqQbuAFUVVWpqKhIAwYMMMtuuukmDRgwQJs3b67HyHC19u7dq8OHD3v0aVBQkHr06GH26ebNmxUcHKxu3bqZdQYMGKCbbrpJW7ZsueYx48KOHz8uSWrWrJkkqaioSGfOnPHo25iYGEVERHj0befOndWyZUuzTlJSkk6cOGGOrKL+1NTUaNWqVaqoqFDPnj3p0+vcE088ocGDB3v0n8Tf6vVu165datWqldq1a6cxY8bowIEDkujX69m6devUrVs33XfffWrRooW6du2q//zP/zSPN+TvTiTdwA3gf/7nf1RTU+PxPwdJatmypQ4fPlxPUeFfcb7f6urTw4cPq0WLFh7HfXx81KxZM/q9gTh79qyeeuop9e7dW506dZJ0rt8aN26s4OBgj7q/7NsL9f35Y6gfn3/+uaxWq/z8/PTYY48pOztbsbGx9Ol1bNWqVfrv//5vzZ07t9Yx+vX61aNHD2VlZekf//iHXn31Ve3du1d9+vTRyZMn6dfr2J49e/Tqq6+qffv2+uijjzRx4kQ9+eSTWrFihaSG/d3Jx2tXBgDgN+6JJ57Q9u3bPZ4lxPWrQ4cOKikp0fHjx/XOO+/owQcf1CeffFLfYeEqffPNN5o8ebI2bNggf3//+g4Hv6K7777b/HeXLl3Uo0cPtWnTRm+//bYCAgLqMTL8K86ePatu3brp+eeflyR17dpV27dv15IlS/Tggw/Wc3R1Y6QbuAGEhISoUaNGtVbe/P777xUaGlpPUeFfcb7f6urT0NDQWgvlVVdX68cff6TfG4BJkybp/fffl9PpVOvWrc3y0NBQVVVV6dixYx71f9m3F+r788dQPxo3bqyoqCglJCRo7ty5iouL05///Gf69DpVVFSkI0eOKD4+Xj4+PvLx8dEnn3yiV155RT4+PmrZsiX9eoMIDg5WdHS0vv76a/5er2NhYWGKjY31KOvYsaP56EBD/u5E0g3cABo3bqyEhATl5uaaZWfPnlVubq569uxZj5HharVt21ahoaEefXrixAlt2bLF7NOePXvq2LFjKioqMuts3LhRZ8+eVY8ePa55zDjHMAxNmjRJ2dnZ2rhxo9q2betxPCEhQb6+vh59u2PHDh04cMCjbz///HOPLwYbNmyQzWar9YUD9efs2bM6ffo0fXqd6t+/vz7//HOVlJSYW7du3TRmzBjz3/TrjcHtdmv37t0KCwvj7/U61rt371qv4Ny5c6fatGkjqYF/d/LaEm0ArqlVq1YZfn5+RlZWlvHll18aEyZMMIKDgz1W3kTDcvLkSaO4uNgoLi42JBkvvfSSUVxcbOzfv98wDMPIzMw0goODjb///e/GZ599ZqSkpBht27Y1KisrzWsMGjTI6Nq1q7FlyxZj06ZNRvv27Y1Ro0bV10eCYRgTJ040goKCDJfLZRw6dMjcfvrpJ7POY489ZkRERBgbN240tm3bZvTs2dPo2bOneby6utro1KmTcddddxklJSXGP/7xD6N58+bGjBkz6uMjwTCM6dOnG5988omxd+9e47PPPjOmT59uWCwWY/369YZh0Kc3ip+vXm4Y9Ov1aurUqYbL5TL27t1r5OfnGwMGDDBCQkKMI0eOGIZBv16vtm7davj4+Bj/5//8H2PXrl3GypUrjSZNmhhvvvmmWaehfnci6QZuIIsWLTIiIiKMxo0bG3fccYfx6aef1ndIqIPT6TQk1doefPBBwzDOvfoiPT3daNmypeHn52f079/f2LFjh8c1ysvLjVGjRhlWq9Ww2WzGQw89ZJw8ebIePg3Ou1CfSjKWL19u1qmsrDQef/xxo2nTpkaTJk2MoUOHGocOHfK4zr59+4y7777bCAgIMEJCQoypU6caZ86cucafBuc9/PDDRps2bYzGjRsbzZs3N/r3728m3IZBn94ofpl006/Xp/vvv98ICwszGjdubNx6663G/fffb3z99dfmcfr1+vXee+8ZnTp1Mvz8/IyYmBjjtdde8zjeUL87WQzDMLw3jg4AAAAAwG8Xz3QDAAAAAOAlJN0AAAAAAHgJSTcAAAAAAF5C0g0AAAAAgJeQdAMAAAAA4CUk3QAAAAAAeAlJNwAAAAAAXkLSDQAAAACAl5B0AwAAAADgJSTdAACg3m3evFmNGjXS4MGD6zuUa8JisZhbUFCQevfurY0bN/4q1127du1l1XU6nbrnnnt0yy23qEmTJoqNjdXUqVP13Xff/ctxXImsrCwFBwdf0zYB4Foi6QYAAPVu2bJl+rd/+zf985//1MGDB73almEYqq6u9mobl2P58uU6dOiQ8vPzFRISov/1v/6X9uzZc1XXqqqquqL6S5cu1YABAxQaGqp3331XX375pZYsWaLjx49rwYIFVxUDAODCSLoBAEC9crvdeuuttzRx4kQNHjxYWVlZ5rHRo0fr/vvv96h/5swZhYSE6I033pAknT17VnPnzlXbtm0VEBCguLg4vfPOO2Z9l8sli8WinJwcJSQkyM/PT5s2bdLu3buVkpKili1bymq1qnv37vr444892jp06JAGDx6sgIAAtW3bVv/3//5fRUZG6uWXXzbrHDt2TOPGjVPz5s1ls9nUr18/lZaWXvJzBwcHKzQ0VJ06ddKrr76qyspKbdiwQeXl5Ro1apRuvfVWNWnSRJ07d9bf/vY3j3MTExM1adIkPfXUUwoJCVFSUpIiIyMlSUOHDpXFYjH3f+nbb7/Vk08+qSeffFL/9V//pcTEREVGRqpv3756/fXXNXPmTLPuu+++q9tvv11+fn6KjIyslZBfaGQ9ODjY7MN9+/bJYrFozZo1cjgcatKkieLi4rR582azbx566CEdP37cHPmfPXv2Je8dAFxPSLoBAEC9evvttxUTE6MOHTrogQce0H/913/JMAxJ0pgxY/Tee+/J7Xab9T/66CP99NNPGjp0qCRp7ty5euONN7RkyRJ98cUXmjJlih544AF98sknHu1Mnz5dmZmZKisrU5cuXeR2u3XPPfcoNzdXxcXFGjRokJKTk3XgwAHznLFjx+rgwYNyuVx699139dprr+nIkSMe173vvvt05MgR5eTkqKioSPHx8erfv79+/PHHy74HAQEBks6NWJ86dUoJCQn64IMPtH37dk2YMEF/+MMftHXrVo9zVqxYocaNGys/P19LlixRYWGhpP8/gn5+/5dWr16tqqoqPfPMMxc8fn6qd1FRkUaMGKGRI0fq888/1+zZs5Wenu7xo8jl+uMf/6i0tDSVlJQoOjpao0aNUnV1tXr16qWXX35ZNptNhw4d0qFDh5SWlnbF1weABs0AAACoR7169TJefvllwzAM48yZM0ZISIjhdDo99t944w2z/qhRo4z777/fMAzDOHXqlNGkSROjoKDA45qPPPKIMWrUKMMwDMPpdBqSjLVr114ylttvv91YtGiRYRiGUVZWZkgyCgsLzeO7du0yJBkLFy40DMMw8vLyDJvNZpw6dcrjOrfddpuxdOnSi7YjycjOzjYMwzAqKiqMxx9/3GjUqJFRWlp6wfqDBw82pk6dau7b7Xaja9eudV73YiZOnGjYbLY66xiGYYwePdoYOHCgR9m0adOM2NjYOtsLCgoyli9fbhiGYezdu9eQZLz++uvm8S+++MKQZJSVlRmGYRjLly83goKCLhkPAFyvGOkGAAD1ZseOHdq6datGjRolSfLx8dH999+vZcuWmfsjRozQypUrJUkVFRX6+9//rjFjxkiSvv76a/30008aOHCgrFarub3xxhvavXu3R1vdunXz2He73UpLS1PHjh0VHBwsq9WqsrIyc6R7x44d8vHxUXx8vHlOVFSUmjZtau6XlpbK7Xbrlltu8Wh/7969tdr/pVGjRslqtSowMFDvvvuuli1bpi5duqimpkYZGRnq3LmzmjVrJqvVqo8++shjBF6SEhISLvs+/5xhGLJYLJesV1ZWpt69e3uU9e7dW7t27VJNTc0VtdmlSxfz32FhYZJUa8YAANyofOo7AAAA8Nu1bNkyVVdXq1WrVmaZYRjy8/PT4sWLFRQUpDFjxshut+vIkSPasGGDAgICNGjQIEkyp51/8MEHuvXWWz2u7efn57F/8803e+ynpaVpw4YNmj9/vqKiohQQEKDf//73V7QomdvtVlhYmFwuV61jl1qRe+HChRowYICCgoLUvHlzs/zFF1/Un//8Z7388svq3Lmzbr75Zj311FO14vrl57lc0dHROn78uA4dOmQmwFfLYrGYjwKcd+bMmVr1fH19Pc6Rzj2LDwC/BSTdAACgXlRXV+uNN97QggULdNddd3kcGzJkiP72t7/pscceU69evRQeHq633npLOTk5uu+++8wkLjY2Vn5+fjpw4IDsdvsVtZ+fn6/U1FTz2XC32619+/aZxzt06KDq6moVFxebo8pff/21jh49ataJj4/X4cOH5ePjc9GFyy4mNDRUUVFRF4wrJSVFDzzwgKRzyenOnTsVGxt7yWv6+vpechT697//vaZPn6558+Zp4cKFtY4fO3ZMwcHB6tixo/Lz82vFFh0drUaNGkmSmjdvrkOHDpnHd+3apZ9++umScf5c48aNr3jkHACuJyTdAACgXrz//vs6evSoHnnkEQUFBXkcGz58uJYtW6bHHntM0rlVzJcsWaKdO3fK6XSa9QIDA5WWlqYpU6bo7Nmz+t3vfqfjx48rPz9fNptNDz744EXbb9++vdasWaPk5GRZLBalp6d7jL7GxMRowIABmjBhgl599VX5+vpq6tSpCggIMEdrBwwYoJ49e2rIkCGaN2+eoqOjdfDgQX3wwQcaOnRorSntl6N9+/Z65513VFBQoKZNm+qll17S999/f1lJd2RkpHJzc9W7d2/5+fl5TIU/Lzw8XAsXLtSkSZN04sQJjR07VpGRkfr222/1xhtvyGq1asGCBZo6daq6d++ujIwM3X///dq8ebMWL16sv/zlL+a1+vXrp8WLF6tnz56qqanRs88+6zGqfTkiIyPldruVm5uruLg4NWnSRE2aNLmiawBAQ8Yz3QAAoF4sW7bMnF79S8OHD9e2bdv02WefSTq3ivmXX36pW2+9tdZzxhkZGUpPT9fcuXPVsWNHDRo0SB988IHatm1bZ/svvfSSmjZtql69eik5OVlJSUkez29L0htvvKGWLVuqb9++Gjp0qMaPH6/AwED5+/tLOjdV+sMPP1Tfvn310EMPKTo6WiNHjtT+/fvVsmXLq7ovf/rTnxQfH6+kpCQlJiYqNDRUQ4YMuaxzFyxYoA0bNig8PFxdu3a9aL3HH39c69ev13fffaehQ4cqJiZG48aNk81mM1cPj4+P19tvv61Vq1apU6dOmjlzpubMmaPU1FSP9sLDw9WnTx+NHj1aaWlpV5ww9+rVS4899pjuv/9+NW/eXPPmzbui8wGgobMYv3wQBwAAABf07bffKjw8XB9//LH69+9f3+EAAK4DJN0AAAAXsXHjRrndbnXu3FmHDh3SM888o++++047d+684mnUAIDfJp7pBgAAuIgzZ87o3//937Vnzx4FBgaqV69eWrlyJQk3AOCyMdINAAAAAICXsJAaAAAAAABeQtINAAAAAICXkHQDAAAAAOAlJN0AAAAAAHgJSTcAAAAAAF5C0g0AAAAAgJeQdAMAAAAA4CUk3QAAAAAAeAlJNwAAAAAAXvL/AHZLrvt1u0+mAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import pymysql\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Connect to the MySQL database\n", + "connection = pymysql.connect(\n", + " host='localhost', # Your MySQL server address\n", + " user='root', # Your MySQL username\n", + " password='Apfelsaft_1', # Your MySQL password\n", + " db='lego', # The database you're working with\n", + " cursorclass=pymysql.cursors.DictCursor\n", + ")\n", + "\n", + "# Query to get the average part count per LEGO Star Wars themes\n", + "query = \"\"\"\n", + " SELECT \n", + " t.name AS theme_name,\n", + " AVG(s.num_parts) AS avg_part_count\n", + " FROM \n", + " sets s\n", + " JOIN \n", + " themes t ON s.theme_id = t.id\n", + " WHERE \n", + " t.name LIKE '%Star Wars%' -- Adjust the condition to match your theme naming convention\n", + " GROUP BY \n", + " t.name;\n", + "\"\"\"\n", + "\n", + "# Fetch data\n", + "with connection.cursor() as cursor:\n", + " cursor.execute(query)\n", + " result = cursor.fetchall()\n", + "\n", + "# Convert to DataFrame\n", + "df_avg_part_count = pd.DataFrame(result)\n", + "\n", + "# Visualization\n", + "plt.figure(figsize=(10, 6))\n", + "plt.barh(df_avg_part_count['theme_name'], df_avg_part_count['avg_part_count'], color='lightgreen')\n", + "plt.title('Average Part Count per LEGO Star Wars Theme')\n", + "plt.xlabel('Average Part Count')\n", + "plt.ylabel('Theme Name')\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# Close the connection\n", + "connection.close()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 3.\tHow many unique colors are used across all themes?\n", + "## Determine the overall color diversity in LEGO sets by counting unique colors.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 173, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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Jt33799HVFQUMjMzERcXh5ycHISGhta49oIFCxAdHY2srCx4eHggJCQEdnZ2SElJQVpaGhYsWAADA4PGPbhHvPvuu3B0dERYWBgA4H//93+RnJyMzZs3o1mz//toIyMjMWrUKGRmZiIkJATBwcHIysoSj8tkMsTGxuKXX37BJ598gv/85z9Ys2aNVlvZ2dmIi4vDvn37sG/fPhw7dkxrmPu8efNw7Ngx7NmzB4cOHYJarcZPP/2kdY2ZM2fixIkT2LZtG86cOYMxY8bA398fly5dAgCcOnUKb731FmbOnImMjAwolUosX778qZ9PbZYuXYqxY8fizJkzGDp0KEJCQnD79u0a9eRyOV577TV8/fXXWuVbt27FiBEjYGpqivv378PPzw8ymQyJiYlISkqCVCqFv78/KioqxHMSEhJw4cIFHD58GPv27UNqaipmzZqFZcuW4cKFCzh48CB8fHzE+h9++CG+/PJLbNiwAefOncOcOXPwxhtv4NixY7XeU3l5Oe7cuaO1ERERERHR80EiCILQVI3v3LkT4eHhKCsrg6enJxQKBYKDg+Hh4fF/AUok2L17N0aMGFHntTp16oRp06Zh5syZAB72dHfr1g27d++u87xNmzZh9uzZKCoqQllZGSwtLXH9+nUcOXIEGzZswLFjx3D06FEMHDgQV69ehYODQ41rpKamwtvbGyUlJZBKpWKveFxcHAIDA8V6crkca9euxcSJExv0fBwdHZGXl1cjMY+Pj0f//v0BAJcvX0bXrl3xj3/8A59++ik2bdqE8ePHi3UlEgmmTZuGzz77TCzr1asXPD09sX79+lrbXbVqFbZt2yb2wi9ZsgT//ve/cePGDXFo+/z58/Hjjz/i5MmT0Gg0aNGiBb766iuMGTMGAHD79m3Y2dlhypQp+Pjjj5GbmwtnZ2fk5uaidevWYluDBg1Cjx498MEHH2D8+PEoLi7G/v37xePBwcE4ePDgExc3y8nJgZOTE9LT09G1a1etY76+vujatSs+/vhj8Vm89957iIqKAvCwd14qlSI+Ph7+/v7i51ZYWAgLCwvExcXhzTffxM2bN2Fqaoo7d+7A2toau3fvhr+/P7766issX74cWVlZkEgkAB4OH68+99VXX0VoaCgOHjyI3NxccVj5rl27MGnSJPz22281pgqUl5fD0tISR44cQe/evcXysLAw3L17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f6N///4ICAjAoEGD0K9fP3h5eWnViYmJwYQJEzB37ly4ublhxIgRSElJEefK9+rVC//5z3/wySefoEuXLjh06BDee++9etueP38+Fi9ejBUrVsDDwwOjRo2CmZkZVCoVTExMGn0vj5JIJHj99dfFld8fZWpqih9//BEODg4YOXIkOnTogLfeegv37t2rcyEFCwsL7Nq1CwMGDECHDh2wYcMGfPPNN+jYsSMAICoqCpGRkfjwww/RoUMH+Pv7Y//+/XBycvpT90JERERERH+9Jl29nHSvoau/08ujehVFrl5OzwuuXk5EREQvoxdi9XIiIiIiIiKilxmTbiIiIiIiIiIdafJXhpFucfYAERERERFR02FPNxEREREREZGOMOkmIiIiIiIi0hEm3UREREREREQ6wqSbiIiIiIiISEeYdBMRERERERHpCJNuIiIiIiIiIh3hK8OIXlLD29lALpc3dRhERERERH9r7OkmIiIiIiIi0hEm3UREREREREQ6wqSbiIiIiIiISEeYdBMRERERERHpCJNuIiIiIiIiIh1h0k1ERERERESkI0y6iYiIiIiIiHSE7+kmekntvXQDptLSpg6DdGCkm21Th0BEREREDcSebiIiIiIiIiIdYdJNREREREREpCNMuomIiIiIiIh0hEk3ERERERERkY4w6SYiIiIiIiLSESbdRERERERERDrCpJuIiIiIiIhIR5h0ExEREREREekIk24iIiIiIiIiHWHSTX8bsbGxsLCw0Gkbjo6O+Pjjj3XaBhERERERvTiYdD8nbt26henTp8PBwQFGRkawsbGBn58fkpKSxDoSiQRxcXE6aX/Dhg2QyWR48OCBWKbRaGBgYABfX1+tumq1GhKJBNnZ2TqJpTaOjo6QSCQ1tujo6AZfY9y4cbh48aIOo3w2Ll68iMDAQLRs2RJyuRz9+vWDSqVq6rCIiIiIiOgp6Dd1APTQqFGjUFFRgc2bN8PZ2Rk3b95EQkICCgoKnnlbFRUVMDQ01CpTKpXQaDRITU1Fr169AACJiYmwsbHBqVOncO/ePRgbGwMAVCoVHBwc0LZt20a3LQgCKisroa/f+K/esmXLEB4erlUmk8kafL6JiQlMTEwa3e5f7bXXXkO7du1w9OhRmJiY4OOPP8Zrr72G7Oxs2NjYNHV4RERERETUCOzpfg4UFRUhMTERK1asgFKp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cHZ2xvnz59G7d2+xt5eo+t3hhYWFWouZvWx27dqF9957D7/88kuDz3nw4AGsra0RHx+PHj16PNN47ty5A3Nzc2xJvQBTqeyZXpuIiIiIqKFGutk2dQg6Vf3v7uLi4jqneDa6p/v3338XF5J6VFVV1RPfvUz0MpNKpVixYkWjzrl9+zbmzJkjvtqMiIiIiIheTo1+ZZi7uzsSExNrLOq0Y8cOcXg10d/Jq6++2uhzWrVqVeP95kRERERE9PJpdNK9aNEiTJw4Eb///juqqqqwa9cuXLhwAV9++SX27dunixjpBeXr64tGzl4gIiIiIiJ6qTR6eHlgYCC+//57HDlyBGZmZli0aBGysrLw/fffY/DgwbqIkYiIiIiIiOiF1OiebgDo378/Dh8+/KxjISIiIiIiInqpPFXSDQAVFRXIz8+v8f5pBweHPx0UERERERER0cug0Un3pUuXMHnyZCQnJ2uVC4IAiUSCysrKZxYcERERERER0Yus0Ul3aGgo9PX1sW/fPtja2kIikegiLiIiIiIiIqIXXqOT7oyMDKSlpaF9+/a6iIeIiIiIiIjopdHo1cvd3d3xxx9/6CIWIiIiIiIiopeKRGjAi5Tv3Lkj/n9qairee+89fPDBB+jcuTMMDAy06srl8mcfJRE12J07d2Bubo7i4mL+eSQiIiIi0pGG/ru7QcPLLSwstOZuC4KAgQMHatXhQmpERERERERE2hqUdKtUKl3HQURERERERPTSaVDSrVAosGzZMkRERMDU1FTXMRERERERERG9FBq8kNrSpUuh0Wh0GQsRERERERHRS6XBSXcD1lsjIiIiIiIiokc06pVhjy6mRkRERERERER1a9Cc7mqurq71Jt63b9/+UwER0bOx99INmEpLmzoMIiIiek6NdLNt6hCI/hYalXQvXboU5ubmuoqFiIiIiIiI6KXSqKQ7ODgYrVq10lUsRERERERERC+VBs/p5nxuIiIiIiIiosbh6uVEREREREREOtLg4eVVVVW6jIOIiIiIiIjopdOoV4YRERERERERUcMx6SYiIiIiIiLSESbdRERERERERDrCpJuIiIiIiIhIR5h0099GbGwsLCwsdNqGo6MjPv74Y522QURERERELw4m3c+JW7duYfr06XBwcICRkRFsbGzg5+eHpKQksY5EIkFcXJxO2t+wYQNkMhkePHgglmk0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6de//rU++ugjY7vJZFJ+fr4WLlwok8mkBQsW1HHl6nf1mixbtkx+fn5q27atJk+e7DJq/OPHyw8cOKCBAwfK29tbERER2rJli0wmk9LT0yXV/vh2YWGhTCaTDh8+bJTt2LFDAwYMULNmzRQYGKipU6eqoqLimrG+8sor+uSTT5SVlaXJkyfr17/+tTp37qyxY8dq586d6tKliyTpwoULmjp1qu6++255e3vrN7/5jfLy8uq8Du+++67uvfdeeXl5KTg4WMuXL3fZHhwcrOTkZI0fP14Wi0WTJk1SVVWVpkyZIj8/P3l7e6tjx451/jcKAD8Hkm4AAHDDmjRpokWLFmnlypX6v//7v590rG3btun48eP65JNP9PLLL2v+/Pn6f/6f/0etW7fWzp079cwzz+jpp5+u0c6sWbM0Y8YMFRQUqF+/foqPj1dZWZkk6fTp0xo0aJB69Oih3bt366OPPtK3336r0aNHuxxj3bp1atq0qXJycrR69epa4/vzn/+s5cuXa9myZfriiy8UFxenhx9+WAcOHJAknThxQvfee69mzJihEydOaObMmT/pekiS3W7XwYMHZbfbtW7dOqWmpio1NbXWupcvX9bIkSPVtGlT7dy5U6tXr9aLL754w20ePHhQw4YN06hRo/TFF1/o7bff1o4dOzRlypRr7rN+/XoNGTJEPXr0qLHN09NTLVq0kCTNnj1b7777rtatW6fPP/9cISEhiouL0/fff1/rcfPz8zV69GiNGTNGX375pRYsWKCkpKQa12DZsmWKiopSQUGBkpKS9OqrryojI0MbN27U/v37tX79epebPADQIJwAAAA34PHHH3cmJCQ4nU6ns2/fvs4nn3zS6XQ6nWlpac4f/rSYP3++MyoqymXfFStWODt27OhyrI4dOzqrq6uNsrCwMOeAAQOM9UuXLjlbtGjh/Mc//uF0Op3OQ4cOOSU5U1JSjDoXL150BgQEOJcsWeJ0Op3O5ORk5/333+/S9rFjx5ySnPv373c6nU6n1Wp19ujRo97z9ff3d/7xj390KevVq5fzueeeM9ajoqKc8+fPr/M4VqvV+fzzz9coX7t2rbNly5bG+tVrcunSJaPskUcecT766KPGeseOHZ0rVqxwOp1O58cff+z08PBw/utf/zK2Z2ZmOiU509LSnE6n02m3252SnKdOnTLqFBQUOCU5Dx06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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import pymysql\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Connect to the MySQL database\n", + "connection = pymysql.connect(\n", + " host='localhost', # Your MySQL server address\n", + " user='root', # Your MySQL username\n", + " password='Apfelsaft_1', # Your MySQL password\n", + " db='lego', # The database you're working with\n", + " cursorclass=pymysql.cursors.DictCursor\n", + ")\n", + "\n", + "# Query to get the count of unique colors used in each Star Wars theme\n", + "query = \"\"\"\n", + " SELECT \n", + " t.name AS theme_name,\n", + " COUNT(DISTINCT c.id) AS unique_colors\n", + " FROM \n", + " colors c\n", + " JOIN \n", + " inventory_parts ip ON c.id = ip.color_id\n", + " JOIN \n", + " inventories i ON ip.inventory_id = i.id\n", + " JOIN \n", + " sets s ON i.set_num = s.set_num\n", + " JOIN \n", + " themes t ON s.theme_id = t.id\n", + " WHERE \n", + " t.name LIKE '%Star Wars%'\n", + " GROUP BY \n", + " t.name;\n", + "\"\"\"\n", + "\n", + "# Fetch data\n", + "with connection.cursor() as cursor:\n", + " cursor.execute(query)\n", + " result = cursor.fetchall()\n", + "\n", + "# Convert to DataFrame\n", + "df_unique_colors_per_theme = pd.DataFrame(result)\n", + "\n", + "# Visualization\n", + "plt.figure(figsize=(10, 6))\n", + "plt.barh(df_unique_colors_per_theme['theme_name'], df_unique_colors_per_theme['unique_colors'], color='lightblue')\n", + "plt.title('Unique Colors Count per LEGO Star Wars Theme')\n", + "plt.xlabel('Number of Unique Colors')\n", + "plt.ylabel('Theme Name')\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# Close the connection\n", + "connection.close()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 4.\tWhich sets have the highest part count?\n", + "## Identify the specific sets that are the most complex in terms of the number of parts used.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 174, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Top 10 Sets with Highest Part Count:\n", + " set_num name num_parts\n", + "0 10189-1 Taj Mahal 5922\n", + "1 SWMP-1 Star Wars / M&M Mosaic - Promo Set 5461\n", + "2 2000409-1 Window Exploration Bag 5200\n", + "3 10179-1 Millennium Falcon - UCS 5195\n", + "4 75827-1 Firehouse Headquarters 4640\n", + "5 40179-1 Personalised Mosaic Portrait 4501\n", + "6 10214-1 Tower Bridge 4295\n", + "7 10253-1 Big Ben 4166\n", + "8 71040-1 The Disney Castle 4060\n", + "9 75159-1 Death Star 4023\n" + ] + }, + { + "data": { + "image/png": "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fLhR14NGws2cOVO//fabJkyYkCyQkqTcuXPr/ffft2mbNm2acc28efPqrbfeSjbFz9/fP8Xpwv98n5Omei5atEijR49W/vz55ejoqHr16un06dM2x61evVoXLlww7iszRx4CeLoxUgoAADy1rFarmjZtqi1btqhLly4qW7as1q9fr4EDB+q3337TxIkTbfpv3bpVCxcuVO/eveXg4KBp06YpNDRUP//8c4Yt7rx//36VL19eWbLY/r/BypUr6/PPP9fJkydVqlSpDLnW1atXk7XZ2dkZ0/e+//57SclHnD3I999/L0dHR7Vp0ybF/QEBAapRo4Z++OEH3bx5U05OTin2K1CggKR7Uy7ff//9BwZ6R44cUfXq1ZUvXz4NHjxYLi4uWrRokZo3b67vvvtOLVq0UK1atdS7d29NmTJF7777rjFls1ixYrpy5Yqef/55eXt7a/DgwfL09NT58+e1dOnSB95rzZo1NXHiRB05csR4/7dv364sWbJo+/bt6t27t9EmSbVq1UrxPN27d9elS5dSnFqaZP78+bp+/bq6d+8ui8Wijz/+WC1bttTZs2dtpgGm5vr16/rf//6XrD0tIefff/+tunXrKjo6Wn369JGPj4/mz5+vLVu2pNj/r7/+UmhoqFq2bKk2bdpoyZIlGjRokEqVKmUEmImJiWratKl27Nih119/XcWKFdMvv/yiiRMn6uTJk1q+fLmke+9t48aNVbp0aY0YMUIODg46ffq0sTZZsWLFNGLECA0dOlSvv/66atasKUkPHIWXmqQgNEeOHJKkyZMnq2nTpmrXrp1u376tBQsW6MUXX9SqVavUqFEjm2N/+OEHLVq0SD179lTOnDlVpkwZTZ8+XW+++aZatGhhhMylS5dO9forV66Uk5OTMULyYcLCwjR8+HDVr19fb775pk6cOKHp06dr9+7dioyMTNPnIiUfffSRsmTJogEDBigmJkYff/yx2rVrp127dkmS3nvvPcXExOjXX381/o38r69LBuBfzAoAAPCUeOutt6z3/+fN8uXLrZKso0aNsunXunVrq8VisZ4+fdpok2SVZN2zZ4/RduHCBaujo6O1RYsW6arDxcXF2qFDh1T3de7cOVn76tWrrZKs69ate+C5g4ODrSVKlHhgn2HDhhn3889XUFCQ0a9cuXJWT0/PZMfHxcVZ//jjD+MVExNj7PP0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kxQ2bdy4Ubt37za2a9Wqpe3bt2v79u1ycXGxmfaZkseZ2vekFShQQGfOnEkWStz/jWzpVahQIV29elX16tVL8T27fwRQlixZVK9ePU2YMEFHjx7V6NGj9cMPPxhT/J7Es/vuu+/k6OhoBJQvvPBCiiPNHiS9dTVp0kQ3b97Ud99999C+Sf82nThxwqb99u3bOnfunM2/XdmzZ0/2jXxS8pGg6fFv/rwCeLoQSgEAgKdWw4YNlZCQoM8++8ymfeLEibJYLMY3hSX56aefbNaTuXjxolasWKHnn3/+sUZs3K9169b6/fffbb757X//+58WL16sJk2aPHQ6WUZq06aNihcvrpEjR2rnzp0p9vlnUNG9e3flypVLAwcOTLYGza1bt9SpUydZrVYNHTr0gdc+ePBgit8Wd+HCBR09etQILXLlyqXatWtr5syZKY4w++OPP4yfXVxcJCnZH+h//fVXsvsoW7aspId/O11AQIDy5cuniRMn6s6dO6pevbqke2HVmTNntGTJElWpUkV2dg+egJBabf8GISEh+u2337Ry5Uqj7datW5o1a9Yjn7NNmzb67bffUjzHzZs39ffff0tK+Rsi//nePIlnlzVrVlksFpu14s6fP298K2BaODs7p6uuN954Q3ny5FH//v118uTJZPuvXLmiUaNGSbq3Hpa9vb2mTJli89n94osvFBMTY/PtgIUKFdLOnTt1+/Zto23VqlW6ePFimu/ln1xcXBQTE/PIxwNAWjF9DwAAPLWaNGmiOnXq6L333tP58+dVpkwZbdiwQStWrNDbb7+tQoUK2fQvWbKkQkJC1Lt3bzk4OGjatGmSpOHDhz/0Wt9//70OHjwoSbpz544OHTpk/IHZtGlT46viW7durSpVqqhTp046evSocubMqWnTpikhISFN15HuBTFJ575fQECA2rVrZ2wvWbIkxalpDRo0UO7cuZUtWzYtW7ZMISEhqlGjhlq2bKmaNWvKxcXFCCmioqJs/gDOkSOHlixZokaNGql8+fLq2rWrihcvrsuXLys8PFynT5/W5MmTVa1atQfew8aNGzVs2DA1bdpUVapUkaurq86ePasvv/xS8fHxCgsLM/pOnTpVNWrUUKlSpdStWzcVLFhQv//+u3766Sf9+uuvxnMvW7assmbNqrFjxyomJkYODg6qW7eu5s+fr2nTpqlFixYqVKiQrl+/rlmzZsnd3V0NGzZ86POuWbOmFixYoFKlShnr75QvX14uLi46efJkmtaTShpJ1bt3b4WEhChr1qx66aWXHnqcGbp3767PPvtML7/8svr06aM8efJo3rx5xtTNRxk189prr2nRokV64403tGXLFlWvXl0JCQk6fvy4Fi1apPXr16tixYoaMWKEtm3bpkaNGqlAgQK6cuWKpk2bpvz586tGjRqS7oUunp6emjFjhtzc3OTi4qLnnnvusdZ5atSokSZMmKDQ0FC98sorunLliqZOnarChQvbrI31IE5OTipevLgWLlyowMBAeXl5qWTJkipZsmSK/bNnz65ly5apYcOGKlu2rF599VXjc7Fv3z59++23qlq1qqR7i+wPGTJEw4cPV2hoqJo2baoTJ05o2rRpqlSpks1ab127dtWSJUsUGhqqNm3a6MyZM/rmm2+S/fuWHhUqVNDChQvVr18/VapUSa6urmrSpMkjnw8AUpVZX/sHAACQ0d566y3rP//z5vr169a+ffta8+bNa82WLZu1SJEi1k8++cSamJho00+S9a233rJ+88031iJFilgdHBys5cqVs27ZsiVN1+7QoYNVUoqvf36V/dWrV61dunSx5siRw+rs7GwNDg627t69O03XCQ4OTvU69erVs1qtVuuwYcNS7SMp2T1du3bNOmLECGu5cuWsrq6uVnt7e6uvr6+1devW1u+//z7FOs6dO2ft1q2b1c/Pz5otWzZrzpw5rU2bNrVu3749Tfdx9uxZ69ChQ61VqlSx5sqVy2pnZ2f19va2NmrUyPrDDz8k63/mzBlr+/btrT4+PtZs2bJZ8+XLZ23cuLF1yZIlNv1mzZplLViwoDVr1qzGve7bt8/68ssvW/38/KwODg7WXLlyWRs3bmzds2dPmmqdOnWqVZL1zTfftGmvX7++VZJ18+bNyZ7NP9/3u3fvWnv16mX19va2WiwW43Oa1PeTTz5Jdl1J1mHDhj2wti1btlglWRcvXpzi/g4dOlhdXFxs2oKDg63BwcE2bWfPnrU2atTI6uTkZPX29rb279/f+t1331klWXfu3GlzbIkSJVK8ToECBWzabt++bR07dqy1RIkSVgcHB2v27NmtFSpUsA4fPtwaExNjtVqt1s2bN1ubNWtmzZs3r9Xe3t6aN29e68svv2w9efKkzblWrFhhLV68uNXOzi7F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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import pymysql\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Connect to the MySQL database\n", + "connection = pymysql.connect(\n", + " host='localhost', # Your MySQL server address\n", + " user='root', # Your MySQL username\n", + " password='Apfelsaft_1', # Your MySQL password\n", + " db='lego', # The database you're working with\n", + " cursorclass=pymysql.cursors.DictCursor\n", + ")\n", + "\n", + "# Query to get the sets with the highest part count\n", + "query = \"\"\"\n", + " SELECT \n", + " s.set_num,\n", + " s.name,\n", + " s.num_parts\n", + " FROM \n", + " sets s\n", + " ORDER BY \n", + " s.num_parts DESC\n", + " LIMIT 10;\n", + "\"\"\"\n", + "\n", + "# Fetch data\n", + "with connection.cursor() as cursor:\n", + " cursor.execute(query)\n", + " result = cursor.fetchall()\n", + "\n", + "# Convert to DataFrame\n", + "df_highest_part_count = pd.DataFrame(result)\n", + "\n", + "# Display result\n", + "print('Top 10 Sets with Highest Part Count:')\n", + "print(df_highest_part_count)\n", + "\n", + "# Visualization\n", + "plt.figure(figsize=(12, 8))\n", + "plt.barh(df_highest_part_count['name'], df_highest_part_count['num_parts'], color='cornflowerblue')\n", + "plt.title('Top 10 LEGO Sets with Highest Part Count')\n", + "plt.xlabel('Number of Parts')\n", + "plt.ylabel('Set Name')\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# Close the connection\n", + "connection.close()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 5.\tHow has the number of unique parts used in sets evolved over the years?\n", + "## Analyze trends in the use of unique parts in LEGO sets over time.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 175, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA90AAAJOCAYAAACqS2TfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAACXrElEQVR4nOzdd3iUVd7G8XsmlbSBBEJCD0UgVAERFAURBARcFVdwZW3YEAtW5F13EXXF3hE7uKJrwbaIBFFQLEiQIoQAUoK0hARCJiGQOs/7R5iBIZNkJpnJJOT7uS6ud/PMmWd+kwRe7znn/I7JMAxDAAAAAADA68z+LgAAAAAAgNMVoRsAAAAAAB8hdAMAAAAA4COEbgAAAAAAfITQDQAAAACAjxC6AQAAAADwEUI3AAAAAAA+QugGAAAAAMBHCN0AAAAAAPgIoRsA6jCTyaSHH37Yq/ecN2+eTCaTdu3a5dX7etvTTz+t9u3bKyAgQL179/ZLDe3atdN1113nl9eGfwwZMkRDhgzxdxm16vvvv5fJZNKCBQv8XQoAnJYI3QBQBXtIrejPr7/+6u8SXXr88cf1xRdf+LuMavnmm2/0wAMP6Nxzz9XcuXP1+OOPVzh2yJAh6t69u8vHDh486JMPLuqSIUOGOP0+RkdH66yzztI777wjm83mtdf55Zdf9PDDDysnJ8dr9zSZTLr99ttdPrZgwQKZTCZ9//33Xns9bysuLtZLL72ks846S5GRkYqIiNBZZ52ll156ScXFxf4ur5wPPvhAL7zwgl9e+4knnpDJZNKSJUtcPn7xxRfLYrFo//79tVwZAPheoL8LAID64pFHHlFCQkK56x07dvRDNVV7/PHHdcUVV+jSSy91uv73v/9dEyZMUEhIiH8Kc8OyZctkNpv19ttvKzg42G91bN26VWZz3f98ulWrVpo1a5YkKSsrS//5z380adIk/fHHH3riiSe88hq//PKLZs6cqeuuu06NGzf2yj3rs/z8fI0ePVo//PCDxowZo+uuu05ms1lJSUm666679Nlnn2nRokUKDw/3d6kOH3zwgVJSUjR16tRaf+17771XH3zwgW677TalpKSoUaNGjsc++eQTLV68WLNnz1aLFi1qvTYA8DVCNwC4adSoUerXr5+/y6ixgIAABQQE+LuMSmVmZqpRo0Z+DdyS6vQHEyezWCyaOHGi4+tbbrlFnTt31iuvvKJHH31UQUFB1b53fn5+nQqOdcU999yjH374QS+//LLTbP3kyZM1e/Zs3X777brvvvs0Z86cWqvJMAwVFBQ4Bdq6IigoSG+88YbOPfdcPfroo47VK3l5eZo6daoGDBigW2+91ed12Gw2FRUVKTQ01OevBQB2df/jewCoB4qLixUdHa3rr7++3GO5ubkKDQ3Vfffd57iWmZmpSZMmqXnz5goNDVWvXr307rvvVvk61113ndq1a1fu+sMPPyyTyeT42mQyKT8/X++++65j2bF9b3JFe7pfffVVdevWTSEhIWrRooWmTJlSbimxfSl3amqqLrjgAoWFhally5Z66qmnqqxdkkpKSvToo4+qQ4cOCgkJUbt27fR///d/KiwsdKp97ty5ys/Pd9Q+b948t+7vDvv3avv27Y5ZW4vFouuvv15Hjx51GutqT/emTZs0dOhQNWrUSK1atdJjjz2md955p9z3tKJl7a7umZOTo6lTp6p169YKCQlRx44d9eSTT1Z7eXhYWJgGDBig/Px8ZWVl6c8//9Rtt92mzp07q1GjRoqJidFf//rXcr8D9t+NH374QbfddptiY2PVqlUrPfzww7r//vslSQkJCY6fi/35S5cu1aBBg9S4cWNFRESoc+fO+r//+79q1V6Zbdu2ady4cYqLi1NoaKhatWqlCRMmyGq1Oo2bP3+++vbtq0aNGik6OloTJkzQnj17yt3vjTfeUIcOHdSoUSP1799fP/74o1t17N27V2+//baGDh3qcnn8lClTdMEFF+itt97S3r17JUndu3fXBRdcUG6szWZTy5YtdcUVVzhde+GFF9StWzeFhoaqefPmuuWWW3T48GGn57Zr105jxozRkiVL1K9fPzVq1Eivv/66y5qHDBmiRYsW6c8//3T8/E79t8Rms+nf//63WrVqpdDQUF144YXavn17uXutWrVKI0eOlMViUVhYmAYPHqyff/65yu+bPVg/88wzSk1NlSQ99NBDyszM1BtvvCGz2ez234VnnnlG55xzjmJiYtSoUSP17dvX5Z50+xaG999/3/HvW1JSkiTpww8/VN++fRUZGamoqCj16NFDL774YpXvAwA8xUw3ALjJarXq4MGDTtdMJpNiYmIUFBSkyy67TJ999plef/11pxnaL774QoWFhZowYYIk6dixYxoyZIi2b9+u22+/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LdWCBQs0duxYx8/ok08+kcVi0fDhw53eQ9++fRUREeF4D3YJCQkaMWJElTW74/rrr3f6fpx33nmS5Pi7vX79em3btk1/+9vfdOjQIUdt+fn5uvDCC7VixQq3fgfGjRuniy++WNnZ2Zo9e7bTe3f378LJv9OHDx+W1WrVeeed5/L3efDgwUpMTHS61rhxY+Xn52vp0qUefIcAoHpYXg4Aburfv3+ljdQCAwM1btw4ffDBByosLFRISIg+++wzFRcXO4XuP//8U506dSrXFbtr166Ox2uT/fVOXZYaHBys9u3bl6unVatWTvvHJalJkybasGFDla9jNpvLdXuPi4tT48aNffq+T61Xktq0aeP0dZMmTSSV/Qd8VFSUy/v8+eefOvvss8tdr2hJrzu2bdumDRs2qFmzZi4fz8zMrPIe7dq105tvvimTyaTQ0FB16tRJsbGxjsePHTumWbNmae7cudq3b58Mw3A8dup+aEkuu/RXZPz48Xrrrbd044036sEHH9SFF16oyy+/XFdccYVXOr/bf3YJCQm655579Nxzz+n999/Xeeedp0suuUQTJ050BOVt27bJMAx16tTJ5b3sy7Ltv2unjgsKClL79u2rrMkeqO3h2xVXwXz8+PH6v//7P+3bt08tW7bU999/r8zMTKd/H7Zt2yar1er08zvZqb8PnvysqlLZ3wl7bZJ07bXXVngPq9XqeF5lzjrrLH399ddO/6Z68nfhq6++0mOPPab169eX6wlxKlffo9tuu00ff/yxRo0apZYtW+qiiy7SlVdeqZEjR1ZZOwB4itANAF40YcIEvf7661q8eLEuvfRSffzxx+rSpYt69erllfu7+g9KqWzGrLZUNAN6cpCrTEXvobpCQ0N17Ngxl4/ZZ0RddSqu6fuorlN/VjabTcOHD9cDDzzgcvwZZ5xR5T3Dw8M1bNiwCh+/4447NHfuXE2dOlUDBw6UxWKRyWTShAkTXM5MerJHvVGjRlqxYoWWL1+uRYsWKSkpSR999JGGDh2qb775ptIZ85CQEI9+ds8++6yuu+46ffnll/rmm2905513atasWfr111/VqlUr2Ww2mUwmLV682OXrnrqHubrsH5Bt2LBBvXv3djnG/iHUyTOs48eP1/Tp0/XJJ59o6tSp+vjjj2WxWJyCns1mU2xsrN5//32X9z01kHqzU3lVfyfsvytPP/10he+7Jt9jd/8u/Pjjj7rkkkt0/vnn69VXX1V8fLyCgoI0d+5cffDBB+We5+p7FBsbq/Xr12vJkiVavHixFi9erLlz5+qaa65xq6klAHiC0A0AXnT++ecrPj5eH330kQYNGqRly5bpH//4h9OYtm3basOGDbLZbE4zgVu2bHE8XpEmTZqU6yguuZ4ddzfc2l9v69atTrN8RUVFSktLqzTMeaJt27ay2Wzatm2bI7RI0oEDB5STk1Pp+67qvsuWLdOxY8fK/cf11q1bHWO8oW3bto7ZPlevczJXP6uioiKlp6c7XevQoYOOHDnite+zKwsWLNC1116rZ5991nGtoKDA5e9SRSr7fTKbzbrwwgt14YUX6rnnntPjjz+uf/zjH1q+fHml76tt27Yuv3dSxT+7Hj16qEePHnrooYf0yy+/6Nxzz9Vrr72mxx57TB06dJBhGEpISKj0wwr7Pbdt26ahQ4c6rhcXFystLa3KD8lGjRqlgIAAvffeexU2U/vPf/6jwMBAp0CdkJCg/v3766OPPtLtt9+uzz77TJdeeqnT0XQdOnTQt99+q3PPPdfrR3/V9AMvezPGqKgon/y+uvt34dNPP1VoaKiWLFni9L2bO3euR68XHByssWPHauzYsbLZbLrtttv0+uuv65///Ge5FTkAUBPs6QYALzKbzbriiiu0cOFCvffeeyopKXFaOipJF198sTIyMpz2dpaUlOjll19WRESEBg8eXOH9O3ToIKvV6rSUOz093dH5+2Th4eFuhaphw4YpODhYL730ktMs79tvvy2r1VquE3B1XXzxxZJUrhv3c889J0nVfp2LL75YxcXF5Y5KstlsmjNnjoKDg3XhhRdW696uXuvXX39VcnKy41pWVpbLWckOHTqU24/9xhtvlJvpvvLKK7Vy5UotWbKk3D1ycnJUUlJS47oDAgLKzeC//PLLHq2QsJ/VfervVHZ2drmx9lnQk5f9umL/fq5Zs8bpek5Ojt5//3317t3b0ek7Nze33PeiR48eMpvNjte5/PLLFRAQoJkzZ5Z7v4Zh6NChQ5Kkfv36qVmzZnrttddUVFTkGDNv3jy3/s60bt1a119/vb799luX53C/9tprWrZsmSZNmqRWrVo5PTZ+/Hj9+uuveuedd3Tw4MFy/z5ceeWVKi0t1aOPPlruviUlJR59UHKq8PBwl9sJ3NW3b1916NBBzzzzjI4cOVLu8aysrGrfW3L/70JAQIBMJpPT7++uXbv0xRdfuP1a9t8FO7PZrJ49e0qq+vcWADzFTDcAuGnx4sWO2eiTnXPOOU4zxOPHj9fLL7+sGTNmqEePHk6zupJ088036/XXX9d1112nNWvWqF27dlqwYIF+/vlnvfDCC5U2Z5owYYKmTZumyy67THfeeaeOHj2qOXPm6IwzzijXQKhv37769ttv9dxzz6lFixZKSEhwuR+5WbNmmj59umbOnKmRI0fqkksu0datW/Xqq6/qrLPOcmqaVhO9evXStddeqzfeeEM5OTkaPHiwkpOT9e677+rSSy91eYaxO8aOHauLLrpId999t5KTk3XOOefo6NGj+t///qeff/5Zjz32WIV7RD31wAMP6L333tPIkSN11113OY4Ms69eONmNN96oW2+9VePGjdPw4cP1+++/a8mSJY7jtuzuv/9+/e9//9OYMWN03XXXqW/fvsrPz9fGjRu1YMEC7dq1q9xzPDVmzBi99957slgsSkxM1MqVK/Xtt98qJibG7Xv07dtXUtnRUxMmTFBQUJDGjh2rRx55RCtWrNDo0aPVtm1bZWZm6tVXX1WrVq00aNCgSu/54IMP6pNPPtH555+vW265RV26dNH+/fs1b948paenO81cLlu2TLfffrv++te/6owzzlBJSYnee+89BQQEaNy4cZLKPuh47LHHNH36dO3atUuXXnqpIiMjlZaWps8//1w333yz7rvvPgUFBemxxx7TLbfcoqFDh2r8+PFKS0vT3Llz3drTLUnPP/+8tmzZottuu01JSUmOGe0lS5boyy+/1ODBg51WFthdeeWVuu+++3TfffcpOjq63Kzu4MGDdcstt2jWrFlav369LrroIgUFBWnbtm365JNP9OKLLzqd6e2Jvn376qOPPtI999yjs846SxERERo7dqzbzzebzXrrrbc0atQodevWTddff71atmypffv2afny5YqKitLChQurVZvk/t+F0aNH67nnntPIkSP1t7/9TZmZmZo9e7Y6duxYZW8JuxtvvFHZ2dkaOnSoWrVqpT///FMvv/yyevfuXe7fbACoMX+1TQeA+qKyI8MkGXPnznUab7PZjNatWxuSjMcee8zlPQ8cOGBcf/31RtOmTY3g4GCjR48e5e5jGK6Pnfrmm2+M7t27G8HBwUbn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C5Sclu3TOqZc0FGS9PXGdG3PPFLp2D8PnTTLfaHrWW47e5j/cVuWrEer38W8ReNGLq/HWUI1Z2IfGqOhTvPaOd0AAAAAPONukzB3x1VX1/goDU9srqWpBzTn+x169speFY59Zdl2ldoMDencTL2qaLzWqXmkOjeP1NYDefomNUN/7de6WvW9+WOaJOnS3i00/qw2NEZDveLWTHefPn10+PBhSdIjjzyio0eP+rQoAAAAoCGoSZMwb7v9+Gz3F+v3aU+26//e//NQvj5b594st11Nl5jvyzmmr48/96bz22tghxj9pXdLDewQQ+BGveBW6N68ebPy8/MlSTNnztSRI5UvOXHXrFmzdNZZZykyMlKxsbG69NJLtXXrVqcxBQUFmjJlimJiYhQREaFx48bpwAHnRgy7d+/W6NGjFRYWptjYWN1///0qKSlxGvP999+rT58+CgkJUceOHTVv3jyvvAcAAACguuxNwiqKjrXZJKxX68Y6/4xmKrUZmvPDDpdjZi8vm+U+/4xmOrNNE7fue/HxJeY/bTuonKNFHtc196c0ldoMndMhRt1alO+SDtR1bi0v7927t66//noNGjRIhmHomWeeUUREhMux//rXv9x+8R9++EFTpkzRWWedpZKSEv3f//2fLrroIqWmpio8PFySdPfdd2vRokX65JNPZLFYdPvtt+vyyy/Xzz//LEkqLS3V6NGjFRcXp19++UXp6em65pprFBQUpMcff1ySlJaWptGjR+vWW2/V+++/r++++0433nij4uPjNWLECLfrBQAAALzJ3iTs1vlryz3mjyZhdwztqBV/ZGnBb3t1x9COirec2Eu9J/uoPlvr2Sy3JHWMjVCXuEhtycjTN5sO6Mqz3F9inltQrA9X75Ek3XRee7efB9QlJsMwqmyFuHXrVs2YMUM7duzQ2rVrlZiYqMDA8nndZDJp7dry/2C4KysrS7Gxsfrhhx90/vnny2q1qlmzZvrggw90xRVXSJK2bNmirl27auXKlRowYIAWL16sMWPGaP/+/WrevLkk6bXXXtO0adOUlZWl4OBgTZs2TYsWLVJKSorjtSZMmKCcnBwlJSVVWVdubq4sFousVquioqKq/f4AAAAAV+75aL1j2bZdvCVUM8Ym1nqTsCtfX6nktGxdf247zRjbzXH9wU836MPVe3Rep6Z6b9LZHt3zlWXb9Mw3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U+M1howDY+3atfrmN7+pq666SjExMUpPT1dZWZnXmM8//1xLly7VoEGDFBERoe9///sd8vPlPPzuu+8qOTlZLpdLI0aM0Msvv2z38iD/ZfyjH/1IEyZMkMvl0rhx4y76WP/85z81efJkhYaGKiEhQU899ZRdy8IX+CPjQ4cOKTMzUwkJCerfv79GjRql9evXd3gsf9QxTXcQOX36tMaOHauNGzd22GeMUXp6uo4ePaq33npLhYWFSkxM1PTp03X69Gmvsffff7+qqqqsny8Wf2trq2bNmqXm5ma9//77+sMf/qCXX35Zjz32mO3rg38y9ng8mjFjhlJTU/XBBx/owIEDWrZsmZzO/5bz3LlzVVpaqpycHP3lL3/R3r17tXjx4i5ZY293pRknJCR41W9VVZWeeOIJRUREaObMmZKo40DzRx3Pnz9fZWVl+vOf/6zi4mJlZGRozpw5KiwstMZQx4FzpRmfPn1aqampcjgcys3N1Xvvvafm5mbNnj1bbW1t1rHIODD27NmjpUuX6h//+IdycnLU0tKi1NRUrxp9+OGH9fbbbys7O1t79uzRJ598ooyMDGu/L+fhY8eOadasWZo2bZqKioq0fPly3Xfffdq1a1eXrrc38kfG7e69917dddddF32cxsZGpaamKjExUQUFBVq3bp0ef/xxPf/887atDRf4I+OCggLFxMTotddeU2lpqX7yk58oKytLGzZssMb4rY4NgpIks2PHDuv3srIyI8mUlJRY21pbW010dLTZvHmztW3q1KnmoYceuuRx//a3vxmn02mqq6utbb/73e+M2+02586d8+sa8NU6m/HEiRPN6tWrL3ncDz/80EgyBw4csLa98847xuFwmP/85z/+XQS+Umcz/rJx48aZe++91/qdOg4enc04PDzcvPLKK17HioqKssZQx8GjMxnv2rXLOJ1O09DQYI2pr683DofD5OTkGGPIOJjU1tYaSWbPnj3GmAtZhYSEmOzsbGvMRx99ZCQZj8djjPHtPPzoo4+a0aNHez3WXXfdZdLS0uxeEr6kMxl/0Zo1a8zYsWM7bH/uuefMwIEDvZ57V61aZUaOHOn/ReArXWnG7R588EEzbdo063d/1TFXuruJc+fOSZJCQ0OtbU6nUy6XS/v37/ca+/rrr2vw4MFKSkpSVlaWzpw5Y+3zeDwaM2aMYmNjrW1paWlq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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Connect to the MySQL database\n", + "connection = pymysql.connect(\n", + " host='localhost',\n", + " user='root',\n", + " password='Apfelsaft_1',\n", + " db='lego',\n", + " cursorclass=pymysql.cursors.DictCursor\n", + ")\n", + "\n", + "# Query to get unique parts evolution over the years\n", + "query = \"\"\"\n", + " SELECT \n", + " s.year,\n", + " COUNT(DISTINCT ip.part_num) AS unique_parts\n", + " FROM \n", + " sets s\n", + " JOIN \n", + " inventories i ON s.set_num = i.set_num\n", + " JOIN \n", + " inventory_parts ip ON i.id = ip.inventory_id\n", + " GROUP BY \n", + " s.year\n", + " ORDER BY \n", + " s.year;\n", + "\"\"\"\n", + "\n", + "# Fetch data\n", + "with connection.cursor() as cursor:\n", + " cursor.execute(query)\n", + " result = cursor.fetchall()\n", + "\n", + "# Convert to DataFrame\n", + "df_unique_parts_evolution = pd.DataFrame(result)\n", + "\n", + "# Visualization\n", + "plt.figure(figsize=(10, 6))\n", + "plt.plot(df_unique_parts_evolution['year'], df_unique_parts_evolution['unique_parts'], marker='o')\n", + "plt.title('Evolution of Unique Parts Used Over the Years')\n", + "plt.xlabel('Year')\n", + "plt.ylabel('Number of Unique Parts')\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# Close the connection\n", + "connection.close()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 6.\tWhat is the distribution of sets across different years?\n", + "## Understand how many sets were released each year, which can indicate market activity and trends.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 176, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA90AAAJOCAYAAACqS2TfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAACmYElEQVR4nOzdeXxU1fnH8e9k3xMCWVjCKsgiqIBKRBYFQcUVcKuKCoq/FhWwblj3arFaK2q1uONGrSK2SlVEBEVEFBRFQGQnLAlrEkjIOvf3x8lMMmSbCTOZmeTzfr3ympt7z9x5Joktz5znPMdmWZYlAAAAAADgdSH+DgAAAAAAgKaKpBsAAAAAAB8h6QYAAAAAwEdIugEAAAAA8BGSbgAAAAAAfISkGwAAAAAAHyHpBgAAAADAR0i6AQAAAADwEZJuAAAAAAB8hKQbAOCWxYsXy2azac6cOf4OxS05OTkaO3asWrZsKZvNphkzZvg7pIBz3XXXqWPHjv4O45gNHTpUQ4cO9XcYAADUiKQbAALIrFmzZLPZFBUVpZ07d1a7PnToUJ1wwgl+iCz4TJ06VfPnz9e0adP05ptv6pxzzql17OHDh/XAAw/ohBNOUGxsrFq2bKmTTjpJkydP1q5duzx+7bVr1+rBBx/U1q1bj+EduBo6dKhsNpvzKzo6Wn369NGMGTNkt9u99jrNQXl5udq0aSObzaZPPvnE3+F43f/93/8pIiJCv/zyS7VrZWVl6tOnjzp27KiCggI/RAcAzQ9JNwAEoOLiYj322GP+DiOoffHFF7rooot0++236+qrr1b37t1rHFdaWqrBgwfriSee0KBBg/T3v/9d99xzj/r27avZs2frt99+8/i1165dq4ceesirSbcktWvXTm+++abefPNNTZ8+XVFRUZo6daruu+8+r75OU/fFF19o9+7d6tixo95++21/h+N1jz32mFq2bKn/+7//k2VZLteeeuoprV69Ws8//7xiY2P9FCEANC9h/g4AAFDdSSedpJdeeknTpk1TmzZt/B1OoyooKPBKMrBnzx4lJSXVO+4///mPfvzxR7399tv63e9+53KtqKhIJSUlxxyLtyQmJurqq692fv9///d/6t69u5599lk9/PDDCg0N9WN0weOtt95S3759de211+qee+7x2t+cJBUWFiomJsYr92qopKQkPf3007r88sv10ksvaeLEiZKk7du366GHHtJll12m8847z+dxlJWVyW63KyIiwuevBQCBjJluAAhA99xzj8rLy+ud7d66datsNptmzZpV7ZrNZtODDz7o/P7BBx+UzWbTb7/9pquvvlqJiYlKSUnRfffdJ8uylJWVpYsuukgJCQlKT0/Xk08+WeNrlpeX65577lF6erpiY2N14YUXKisrq9q45cuX65xzzlFiYqJiYmI0ZMgQLV261GWMI6a1a9fqd7/7nVq0aKEzzjijzve8efNmXXrppUpOTlZMTIwGDBig//3vf87rjhJ9y7L03HPPOcuxa7Np0yZJ0sCBA6tdi4qKUkJCgsu5X3/9VWPHjlVycrKioqLUv39/ffjhhy6vf+mll0qSzjzzTOfrL168WJK0YsUKjRw5Uq1atVJ0dLQ6deqk8ePH1/meaxMVFaVTTjlFhw4d0p49e1yuvfXWW+rXr5+io6OVnJysK664osbf09HsdrtmzJihXr16KSoqSmlpabrpppt08OBBl3H//e9/NWrUKLVp00aRkZHq0qWL/vznP6u8vNxl3IYNGzRmzBilp6crKipK7dq10xVXXKG8vLwGxfviiy+qS5cuio6O1qmnnqolS5a4++OSJB05ckQffPCBrrjiCl122WU6cuSI/vvf/9Y49pNPPtGQIUMUHx+vhIQEnXLKKZo9e7bzumO5x8qVKzV48GDFxMTonnvukWQ+9JkwYYLS0tIUFRWlE088Ua+//nq113jnnXfUr18/52v07t1bTz/9tPN6aWmpHnroIXXt2lVRUVFq2bKlzjjjDC1YsKDO9+lIrO+++27n38Ytt9yi8PBw5/137typ8ePHKy0tTZGRkerVq5deffVVl/uUlJTo/vvvV79+/ZSYmKjY2FgNGjRIixYtchnn+N+iv/3tb5oxY4a6dOmiyMhIrV27VpL07LPPqlevXoqJiVGLFi3Uv39/l58lADRlzHQDQADq1KmTxo0bp5deekl33323V2e7L7/8cvXo0UOPPfaY/ve//+mRRx5RcnKyXnjhBZ111ln661//qrffflu33367TjnlFA0ePNjl+Y8++qhsNpvuuusu7dmzRzNmzNDw4cO1atUqRUdHSzLlu+eee6769eunBx54QCEhIXrttdd01llnacmSJTr11FNd7nnppZeqa9eu+stf/lKtHLaqnJwcnX766SosLNStt96qli1b6vXXX9eFF16oOXPm6JJLLtHgwYP15ptv6pprrtHZZ5+tcePG1fnz6NChgyTpjTfe0L333ltngr5mzRoNHDhQbdu21d13363Y2Fi9++67uvjii/X+++87X//WW2/VM888o3vuuUc9evSQJPXo0UN79uzRiBEjlJKSorvvvltJSUnaunWr5s6dW2eMdXEkO1Vn9R999FHdd999uuyyy3TDDTdo7969evbZZzV48GD9+OOPdVYA3HTTTZo1a5auv/563XrrrdqyZYv+8Y9/6Mcff9TSpUsVHh4uyXy4EBcXp9tuu01xcXH64osvdP/99ys/P19PPPGEJJOwjRw5UsXFxbrllluUnp6unTt3at68ecrNzVViYqJH8b7yyiu66aabdPrpp2vKlCnavHmzLrzwQiUnJysjI8Otn9eHH36ow4cP64orrlB6erqGDh1aY5XDrFmzNH78ePXq1UvTpk1TUlKSfvzxR3366acuY/fv369zzz1XV1xxha6++mqlpaXpyJEjGjp0qDZu3Kibb75ZnTp10nvvvafrrrtOubm5mjx5siRpwYIFuvLKKzVs2DD99a9/lSStW7dOS5cudY558MEHNX36dN1www069dRTlZ+frxUrVuiHH37Q2WefXed7ff7559WrVy9NnTpVl112mT788EPNnDlT6enpysnJ0YABA2Sz2XTzzTcrJSVFn3zyiSZMmKD8/HxNmTJFkpSfn6+XX35ZV155pW688UYdOnRIr7zyikaOHKnvvvtOJ510kstrvvbaayoqKtLEiRMVGRmp5ORkvfTSS7r11ls1duxYTZ48WUVFRfr555+1fPnyaj93AGiSLABAwHjttdcsSdb3339vbdq0yQoLC7NuvfVW5/UhQ4ZYvXr1cn6/ZcsWS5L12muvVbuXJOuBBx5wfv/AAw9YkqyJEyc6z5WVlVnt2rWzbDab9dhjjznPHzx40IqOjrauvfZa57lFixZZkqy2bdta+fn5zvPvvvuuJcl6+umnLcuyLLvdbnXt2tUaOXKkZbfbneMKCwutTp06WWeffXa1mK688kq3fj5TpkyxJFlLlixxnjt06JDVqVMnq2PHjlZ5ebnL+580aVK99ywsLLSOP/54S5LVoUMH67rrrrNeeeUVKycnp9rYYcOGWb1797aKioqc5+x2u3X66adbXbt2dZ577733LEnWokWLXJ7/wQcfOH+/nhoyZIjVvXt3a+/evdbevXutX3/91brjjjssSdaoUaOc47Zu3WqFhoZajz76qMvzV69ebYWFhbmcv/baa60OHTo4v1+yZIklyXr77bddnvvpp59WO19YWFgtxptuusmKiYlx/nx+/PFHS5L13nvv1fq+3I23pKTESk1NtU466SSruLjYOe7FF1+0JFlDhgyp9TWqOv/8862BAwe6PD8sLMzas2eP81xubq4VHx9vnXbaadaRI0dcnl/1b3rIkCGWJGvmzJkuY2bMmGFJst566y3nuZKSEiszM9OKi4tz/vczefJkKyEhwSorK6s13hNPPNHl9+upv/3tb5YkKzk52Ro4cKAz/gkTJlitW7e29u3b5zL+iiuusBITE52/37KyMpeft2WZ/31IS0uzxo8f7zzn+N+ihIQEl5+lZVnWRRdd5PK/WwDQ3FBeDgABqnPnzrrmmmv04osvavfu3V677w033OA8Dg0NVf/+/WVZliZMmOA8n5SUpOOPP16bN2+u9vxx48YpPj7e+f3YsWPVunVrffzxx5KkVatWacOGDfrd736n/fv3a9++fdq3b58KCgo0bNgwffXVV9W6bf/f//2fW7F//PHHOvXUU11K0OPi4jRx4kRt3brVWcrqiejoaC1fvlx33HGHJDPDOWHCBLVu3Vq33HKLiouLJUkHDhzQF198ocsuu0yHDh1yvq/9+/dr5MiR2rBhQ40d56tyzNjOmzdPpaWlHsf666+/KiUlRSkpKerevbueeOIJXXjhhS7LC+bOnSu73a7LLrvMGeO+ffuUnp6url27VisLruq9995TYmKizj77bJfn9uvXT3FxcS7PdVQ1SHL+PAYNGqTCwkL9+uuvkuScyZ4/f74KCwtrfE13412xYoX27Nnj7MztcN111zlfpz779+/X/PnzdeWVVzrPjRkzRjabTe+++67z3IIFC3To0CHdfffdioqKcrnH0ZUQkZGRuv76613Offzxx0pPT3d5nfDwcN166606fPiwvvzyS0nm76GgoKDOUvGkpCStWbNGGzZscOs9Hm3KlCnq06ePcnNz9cILLziXXrz//vu64IILZFmWy8995MiRysvL0w8//CDJ/G+E4+dtt9t14MABlZWVqX///s4xVY0ZM0YpKSnV3sOOHTv0/fffN+g9AECwI+kGgAB27733qqyszKudzNu3b+/yfWJioqKiotSqVatq549exytJXbt2dfneZrPpuOOOc3bqdiQH1157rTNBdHy9/PLLKi4urraet1OnTm7Fvm3bNh1//PHVzjtKuLdt2+bWfY6WmJioxx9/XFu3btXWrVv1yiuv6Pjjj9c//vEP/fnPf5Ykbdy4UZZl6b777qv2vh544AFJqrau+mhDhgzRmDFj9NBDD6lVq1a66KKL9NprrzkT+/p07NhRCxYs0Pz58/X888+rbdu22rt3r0tiuGHDBlmWpa5du1aLc926dXXGuGHDBuXl5Sk1NbXacw8fPuzy3DVr1uiSSy5RYmKiEhISlJKS4mzy5vj9durUSbfddptefvlltWrVSiNHjtRzzz3n8vt3N17H7/bov7/w8HB17tzZrZ/fv//9b5WWlurkk0/Wxo0btXHjRh04cECnnXaaSxdzxzp/d7bna9u2bbVGYdu2bVPXrl0VEuL6z6yj/07/8Ic/qFu3bjr33HPVrl07jR8/Xp9++qnLcx5++GHl5uaqW7du6t27t+644w79/PPPbr1fySTNJ598sqKjo9WrVy9J0t69e5Wbm6sXX3yx2s/c8QFC1d/166+/rj59+jjXlKekpOh///tftf+OpZr/W77rrrsUFxenU089VV27dtWkSZOq9XcAgKaMNd0AEMA6d+6sq6++Wi+++KLuvvvuatdrW398dDOrqmrqcF1b12urjvXVtXHMYj/xxBPV1ns6xMXFuXxfddbU3zp06KDx48frkksuUefOnfX222/rkUcecb6v22+/XSNHjqzxuccdd1yd97bZbJozZ46+/fZbffTRR5o/f77Gjx+vJ598Ut9++221n8vRYmNjNXz4cOf3AwcOVN++fXXPPffomWeekWR+/o79p2v6vdb1Gna7XampqbVuo+WYwczNzdWQIUOUkJCghx9+WF26dFFUVJR++OEH3XXXXS6VDE8++aSuu+46/fe//9Vnn32mW2+9VdOnT9e3336rdu3aHVO8nnK8r5qa5kmmSZ+7CbzDsfztpqamatWqVZo/f74++eQTffLJJ3rttdc0btw4Z9O1wYMHa9OmTc6f38svv6ynnnpKM2fOdKla8YTj93P11Vfr2muvrXFMnz59JJkGd9ddd50uvvhi3XHHHUpNTVVoaKimT5/u/HCiqpp+Hj169ND69es1b948ffrpp3r//ff1/PPP6/7779dDDz3UoPcAAMGEpBsAAty9996rt956y9loqaoWLVpIMklQVQ2d8XXH0WWulmVp48aNzn+kd+nSRZKUkJDgkiB6Q4cOHbR+/fpq5x3lzI6maN7QokULdenSRb/88oskOZOx8PDwet9XXc3YJGnAgAEaMGCAHn30Uc2ePVtXXXWV3nnnHY+TqD59+ujqq6/WCy+8oNtvv13t27dXly5dZFmWOnXqpG7dunl0vy5duujzzz/XwIED60wmFy9erP3792vu3Lkujfa2bNlS4/jevXurd+/euvfee/XNN99o4MCBmjlzph555BG343X8bjds2KCzzjrLeb60tFRbtmzRiSeeWOd727Jli7755hvdfPPNGjJkiMs1u92ua665RrNnz9a9997r/Bv+5Zdf6v0gpbZYf/75Z9ntdpfZ7pr+TiMiInTBBRfoggsukN1u1x/+8Ae98MILuu+++5yvnZycrOuvv17XX3+9Dh8+rMGDB+vBBx9scNKdkpKi+Ph4lZeX1/u3PGfOHHXu3Flz5851+bt2VHe4KzY2Vpdffrkuv/xylZSUaPTo0Xr00Uc1bdq0aiX8ANDUUF4OAAGuS5cuzsQqOzvb5VpCQoJatWqlr776yuX8888/77N43njjDR06dMj5/Zw5c7R7926de+65kqR+/fqpS5cu+tvf/qbDhw9Xe/7evXsb/NrnnXeevvvuOy1btsx5rqCgQC+++KI6duyonj17enzPn376Sfv27at2ftu2bVq7dq2znD01NVVDhw7VCy+8UOMa+6rvy7Hn89Efhhw8eLBa9YCjGsDdEvOj3XnnnSotLdXf//53SdLo0aMVGhqqhx56qNprWZal/fv313qvyy67TOXl5c6S+qrKysqc78cxI131/iUlJdX+7vLz81VWVuZyrnfv3goJCXG+X3fj7d+/v1JSUjRz5kyXvdNnzZpV7edcE8cs95133qmxY8e6fF122WUaMmSIc8yIESMUHx+v6dOnq6ioqFpM9TnvvPOUnZ2tf//7385zZWVlevbZZxUXF+dM+o/+XYSEhDg/vHL8fI4eExcXp+OOO67Bfy+S+f2NGTNG77//vvNDpaqq/i3X9Ltevny5y3+D9Tn6PURERKhnz56yLKtBvQ0AINgw0w0AQeBPf/qT3nzzTa1fv965LtPhhhtu0GOPPaYbbrhB/fv311dffaXffvvNZ7EkJyfrjDPO0PXXX6+cnBzNmDFDxx13nG688UZJJnF4+eWXde6556pXr166/vrr1bZtW+3cuVOLFi1SQkKCPvroowa99t13361//etfOvfcc3XrrbcqOTlZr7/+urZs2aL333+/2hpadyxYsEAPPPCALrzwQg0YMEBxcXHavHmzXn31VRUXF7vsdf7cc8/pjDPOUO/evXXjjTeqc+fOysnJ0bJly7Rjxw799NNPkkwiHRoaqr/+9a/Ky8tTZGSkzjrrLM2ePVvPP/+8LrnkEnXp0kWHDh3SSy+9pISEBJ133nkN+pn07NlT5513nl5++WXdd9996tKlix555BFNmzZNW7du1cUXX6z4+Hht2bJFH3zwgSZOnKjbb7+9xnsNGTJEN910k6ZPn65Vq1ZpxIgRCg8P14YNG/Tee+/p6aef1tixY3X66aerRYsWuvbaa3XrrbfKZrPpzTffrJaQfvHFF7r55pt16aWXqlu3biorK9Obb77pTPokuR1veHi4HnnkEd10000666yzdPnll2vLli167bXX3CoJf/vtt3XSSSfVurXYhRdeqFtuuUU//PCD+vbtq6eeeko33HCDTjnlFOce8j/99JMKCwtr3G+7qokTJ+qFF17Qddddp5UrV6pjx46aM2eOli5dqhkzZjgbEd5www06cOCAzjrrLLVr107btm3Ts88+q5NOOsm5/rtnz54aOnSo+vXrp+TkZK1YsUJz5szRzTffXO97rstjjz2mRYsW6bTTTtONN96onj176sCBA/rhhx/0+eef68CBA5Kk888/X3PnztUll1yiUaNGacuWLZo5c6Z69uxZ44dqNRkxYoTS09M1cOBApaWlad26dfrHP/6hUaNGuTRlBIAmq3GbpQMA6lJ1y7CjXXvttZakalvvFBYWWhMmTLASExOt+Ph467LLLrP27NlT65Zhe/furXbf2NjYaq939PZkji3D/vWvf1nTpk2zUlNTrejoaGvUqFHWtm3bqj3/xx9/tEaPHm21bNnSioyMtDp06GBddtll1sKFC+uNqS6bNm2yxo4dayUlJVlRUVHWqaeeas2bN6/aOLm5ZdjmzZut+++/3xowYICVmppqhYWFWSkpKdaoUaOsL774osbXHzdunJWenm6Fh4dbbdu2tc4//3xrzpw5LuNeeuklq3PnzlZoaKhz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5513nu6++24tWbJE06ZNU0xMjAYNqtwH8Oeff1aXLl3cfuGsrCxNnjxZb7/9tqKiojyL+hhNmzZNeXl5zq+GzNADAAAAHnOu5/Zi0i1Jx99qHje9KJUd8e69gwV7mftfaJT5kuhgXoXbSfef//xnhYWFaciQIXrppZf00ksvKSIiwnn91Vdf1YgRI9x+4ZUrV2rPnj3q27evwsLCFBYWpi+//FLPPPOMwsLClJaWppKSEuXm5ro8LycnR+np6ZKk9PT0at3MHd87xtQkMjJSCQkJLl8AAACAz/lipluS2l4oxXaQivdL2/7l3XsHC8de5jWqSMTZy9z3HCXmrOt2cjvpbtWqlb766isdPHhQBw8e1CWXXOJy/b333tMDDzzg9gsPGzZMq1ev1qpVq5xf/fv311VXXeU8Dg8P18KFC53PWb9+vbZv367MzExJUmZmplavXq09e/Y4xyxYsEAJCQnq2bOn27EAAAAAPmfZK9d0JzWwc3ltQkKlbjeb4/XPNN/twzJGSyf/rfr5mHZmj3P2Mvc9tg2rJszTJyQmJtZ4Pjk52aP7xMfH64QTXP/HJjY2Vi1btnSenzBhgm677TYlJycrISFBt9xyizIzM51ryUeMGKGePXvqmmuu0eOPP67s7Gzde++9mjRpkiIjIz19awAAAIDvFGyVygqkkAgpvqv3799lgvTzA1LuT6ZDd+pg779GMHB0h291htTtD2YNd8ogZrgbi3Omm23DHNye6faHp556Sueff77GjBmjwYMHKz09XXPnVm5oHxoaqnnz5ik0NFSZmZm6+uqrNW7cOD388MN+jBoAAACoQW7FLHdCDynEswbEboloIXW6xhyvb6bbh1l2adtsc9xjqtnLPG0oCXdjcmwbxppuJ49nun1p8eLFLt9HRUXpueee03PPPVfrczp06KCPP/7Yx5EBAAAAx8hX67mr6naLtPEFaccHUsE2s867OdnzldmrOzxRanOev6NpnigvryagZ7oBAACAJqMxku6kXlLaMDPj+9vzvnudQLX1bfPYfmxlF200LpLuatxKuvv27auDB01N/sMPP6zCwkKfBgUAAAA0OXmNkHRLVbYPe0kqa0b/bi8vkra/Z447Xu3fWJozx5puysud3Eq6161bp4KCAknSQw89pMOHD/s0KAAAAKBJKS+W8teb40Qvdy4/WptRUmwn08jK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lJaWJkmaOXOm7rrrLu3du1cREe6tx8nPz1diYqLy8vKUkMDWEAAAAEFhbpopdT5nRf1rhLe8LS27uvbrg95nuyp3LR5lyvV73C6dXEPJ/tG+vV7aPEtqc5409H8+Dw8BpGC79N8OZonHFUX+jqZWvs4HPS4v95Xy8nK98847KigoUGZmplauXKnS0lINHz7cOaZ79+5q3769li1bJklatmyZevfu7Uy4JWnkyJHKz8/XmjVrGv09AAAAoJGU5puEW6p9TbeDvVz66e46BtiklVPMONTP2VBtllReXPfYQ5ukLW+a4xOY5W52wuPNo71Y2v1Zs/1vzOPy8k6dOtW5H/fmzZs9ut/q1auVmZmpoqIixcXF6YMPPlDPnj21atUqRUREKCkpyWV8WlqasrOzJUnZ2dkuCbfjuuNabYqLi1VcXPk/EPn5+R7FDAAAAD87tMk8RqZIEYl1j927RCrcUccASyrMMuPShnorwqarzXlSdFvpyE4pa67U8crax655VLLKpdbnSq1ObbwY4X9Zc6UVkyu/XzRSimkn9Xu62VWVeJx0T5kyxeX70tJS/fjjj/r00091xx13eBzA8ccfr1WrVikvL09z5szRtddeqy+//NLj+3hi+vTpeuihh3z6GgAAAPAhd5qoORzZ7d493R3X3IWEmXXyvzxkGqrVlnQf2iRtecMcs5a7ecmaKy0ZK+molcyFO835QXOaVeLtcdI9efLkGs8/99xzWrFihccBRERE6LjjzP9Y9uvXT99//72efvppXX755SopKVFubq7LbHdOTo7S09MlSenp6fruu+9c7ufobu4YU5Np06bptttuc36fn5+vjIwMj2MHAACAn7jbRE0y21y5w91xqGio9mfToC7vVymxe/Uxa/5SMct9jtTqtMaPEf5hL5dWTla1hFuqOFexnKPtRVJIaOPG5ideW9N97rnn6v333z/m+9jtdhUXF6tfv34KDw/XwoULndfWr1+v7du3KzMzU5KUmZmp1atXa8+ePc4xCxYsUEJCgnr27Fnra0RGRjq3KXN8AQAAIIg4ZrrrW88tSSmDTFmralsiaZNiMsw4uCemndn+S5I2vlj9+uHN0pbXzTGz3M2LJ8s5mgmvJd1z5sxRcnKyR8+ZNm2avvrqK23dulWrV6/WtGnTtHjxYl111VVKTEzUhAkTdNttt2nRokVauXKl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er2eSo04nzhxQoSGhoonn3zS7hxlZWVyGbXaM5NuJ0pPTxcAmjzmzp0rhBBiw4YNIioqSvj4+IjevXuLVatW2W1DcP78eTF27FgRHBwsDAaD6N+/v1ixYoXdFiVCCFFUVCQmT54sunXrJnr27Cl+/vOfi4aGBmdeqkdzNM42a9euFVFRUcJoNIqEhARx6NAhu9e///57kZKSIgICAoTJZBLz5s0T1dXVzrhEEurFOTU1VZjNZmGxWJr9HLZn11IjzmfOnBHJyckiLCxMGI1GMWTIkCZbiLE9u5YacV65cqUIDw8XPj4+4u677xavvvqqsFqtdmUYZ9dqLsYAxHvvvSeXqa2tFc8++6zo0aOHMBqN4rHHHhPFxcV251HyvZyeni6GDRsmfH19Rd++fe0+g7SlVpzHjRvX7HkKCwvlMsePHxcPPfSQMBgM4q677hIvv/yyk66S1IjzmjVrmj1HdHS03Wep0Z51jZUmIiIiIiIiIpVxTjcRERERERGRRph0ExEREREREWmESTcRERERERGRRph0ExEREREREWmESTcRERERERGRRph0ExEREREREWmESTcRERERERGRRph0ExEREREREWmESTcRERERERGRRph0ExERdRFCCEycOBFJSUlNXnvjjTcQFBSEixcvuqBmREREnotJNxERUReh0+nw3nvvITMzE2+99ZZ8vLCwEC+88AJef/11REVFqfqZDQ0Nqp6PiIioq2HSTURE1IWYzWZs2LABzz//PAoLCyGEwPz585GYmIjhw4dj8uTJCAgIQHh4OGbPno0rV67I7929ezceeughBAUFISQkBD/84Q9RUFAgv15UVASdToetW7di3Lhx8PPzwyeffOKKyyQiIuo0dEII4epKEBERkbqmT5+OyspKJCcn47e//S1OnjyJQYMGYcGCBZgzZw5qa2uxcuVK3Lx5E2lpaQCA7du3Q6fTYciQIbh27RpWr16NoqIi5OTkQK/Xo6ioCH369EFMTAxeffVVDB8+HH5+fujVq5eLr5aIiMh9MekmIiLqgsrKyjBo0CCUl5dj+/btyM3NxaFDh7Bnzx65zMWLF2E2m5GXl4d77rmnyTmuXLmC0NBQnDhxArGxsXLSvX79ejz33HPOvBwiIqJOi8PLiYiIuqCwsDAsWrQIAwcOxPTp03H8+HGkp6cjICBAftx7770AIA8hP3v2LFJSUtC3b1+YTCbExMQAAM6fP2937pEjRzr1WoiIiDozb1dXgIiIiLTh7e0Nb2/pT/21a9cwdepUvPLKK03K2YaHT506FdHR0di8eTMiIyNhtVoRGxuL+vp6u/L+/v7aV56IiKiLYNJNRETkAeLi4rB9+3bExMTIifjtvv/+e+Tl5WHz5s0YM2YMAODw4cPOriYREVGXw+HlREREHmDx4sUoLy9HSkoKjh49ioKCAuzZswfz5s2DxWJBjx49EBISgrfffhv5+flIS0vD8uXLXV1tIiKiTo9JNxERkQeIjIzEkSNHYLFYkJiYiMGDB2Pp0qUICgqCXq+HXq/Hli1bkJWVhdjYWCxbtgzr1q1zdbWJiIg6Pa5eTkRERERERKQR9nQTERERERERaYRJNxEREREREZFGmHQTERERERERaYRJNxEREREREZFGmHQTERERERERaYRJNxEREREREZFGmHQTERERERERaYRJNxEREREREZFGmHQTERERERERaYRJNxEREREREZFGmHQTERERERERaYRJNxEREREREZFG/hfoClaQzk/bfgAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Connect to the MySQL database\n", + "connection = pymysql.connect(\n", + " host='localhost',\n", + " user='root',\n", + " password='Apfelsaft_1',\n", + " db='lego',\n", + " cursorclass=pymysql.cursors.DictCursor\n", + ")\n", + "\n", + "# Query to get the distribution of sets across different years\n", + "query = \"\"\"\n", + " SELECT \n", + " year,\n", + " COUNT(set_num) AS num_sets\n", + " FROM \n", + " sets\n", + " GROUP BY \n", + " year\n", + " ORDER BY \n", + " year;\n", + "\"\"\"\n", + "\n", + "# Fetch data\n", + "with connection.cursor() as cursor:\n", + " cursor.execute(query)\n", + " result = cursor.fetchall()\n", + "\n", + "# Convert to DataFrame\n", + "df_sets_distribution = pd.DataFrame(result)\n", + "\n", + "# Visualization\n", + "plt.figure(figsize=(10, 6))\n", + "plt.plot(df_sets_distribution['year'], df_sets_distribution['num_sets'], marker='o', color='orange')\n", + "plt.title('Number of Sets Released Across Years')\n", + "plt.xlabel('Year')\n", + "plt.ylabel('Number of Sets')\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# Close the connection\n", + "connection.close()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 7.\tWhich parent themes have the highest average number of unique parts per set?\n", + "## Determine which themes are most innovative by looking at the average number of unique parts used in their sets.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 177, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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/ve/dezYMd1333369ttv9eWXX2r48OHWESdZGjRooODgYA0bNkxms9n6R8/tpk0sXbpUo0ePVq1atVSvXj19/PHHNvs7duyoChUqSLoRSrVq1UrPPfec9u3bp3Llymn27NnKyMgosOkZnTt31kcffSSLxSJ/f3/9+OOPWrt2rfWR5rfj4eGhd999V88++6yaNm2qHj16yMvLS4mJiVq5cqXatGmTLei7HRcXF/n7++uzzz5T7dq1VaZMGTVo0EANGjS45XFffPGFdWTbzfr06WOdInXo0KFs77kkVahQQR07dpQk9ezZU3v37lVUVJS2bNmiHj16qEaNGrp8+bL27t2rTz/9VO7u7tZRGZI0ZswY/fzzz5o6dap+/PFHhYWFycXFRRs3btTHH3+sevXqFdjUtPwojM8nN6NGjdLy5cvVuXNnhYeHq1mzZrp8+bL27Nmjzz//XMeOHVO5cuXUv39/nT9/Xu3bt1eVKlV0/PhxzZo1S40bN7ZOhbwVPz8/Pfjggxo0aJBSU1M1Y8YMlS1bNsdpg71799bIkSMlKU9T95YvX65Lly7psccey3F/q1at5OXlpbi4OGv41L17d82aNUuRkZFq2LBhtnt49tlntWjRIg0cOFDx8fFq06aNMjIydODAAS1atEirV69W8+bNb1lXp06dNH36dIWEhKhnz546c+aM/vvf/8rPz89mPaZmzZopLCxMM2bM0Llz59SqVSutX79ehw4dkmQ76mbKlCmKj49Xy5YtNWDAAPn7++v8+fPasWOH1q5dq/Pnz9+ypjFjxmjx4sVq166dXnjhBdWtW1enTp1SbGysTp8+nW0U192IiopSp06d9OCDD6pv3746f/68Zs2apfr169us/2axWPTUU09p1qxZMplMqlmzplasWJHj+lj//e9/9eCDD6phw4YaMGCAfH199ccff+jHH3/U77//rl27dt1VzXXr1lXNmjU1cuRInTx5Uh4eHvriiy/yvX5es2bN9Nlnn2nEiBG6//775ebmpi5duujhhx+Wt7e32rRpowoVKmj//v1655131KlTpwJfuw7APaQoHvkHAMC9aMiQIcZf/9N76dIl4+WXXzYqVapklCxZ0qhVq5bx5ptvGpmZmTb99H+PQv/444+NWrVqGWaz2WjSpEm2x5DnJDIy0pCU6+uv5zh//rzRr18/o2zZskapUqWM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u7q65nqNmzk5Oal3796KiYnRE088oU8++UQzZ868ba29evXSv//9b7m4uKhixYr5muqXHykpKZowYYKeeOKJbPucnZ2t/87tfrNERERoxIgR1u3k5GSCKQAAAAAA8ijfoZS/v782bNigatWq2bR//vnnatKkSYEVBvvZtGmTQkND9cwzz0i6ETAeOnRI/v7+d3zO/v37q0GDBpo9e7bS09NzDID+ymKx5Bh41qtXTydOnNCJEyesoc++fft08eJFa41OTk45Pv2xZMmS2dqbNm2qgwcP5nit/DCbzTKbzXd1DgAAAAAA7lX5DqXGjRunPn366OTJk8rMzNSSJUt08OBBLViwQCtWrCiMGlHIatWqpc8//1w//PCDSpcurenTp+uPP/64q1CqXr16atWqlV599VX17dvXur7TnejQoYMaNmyoXr16acaMGUpPT9fgwYMVEBBgnWJXvXp1HT16VDt37lSVKlXk7u4us9ms6tWra926dWrTpo3MZrNKly6tcePGqXPnzqpataqefPJJlShRQrt27dLevXs1efLkO64TAAAAAADkXb7nR4WGhuqrr77S2rVr5erqqnHjxmn//v366quvbBa7xj/Hf/7zHzVt2lTBwcEKDAyUt7e3unbtetfn7devn9LS0u76yXUmk0lffvmlSpcurXbt2qlDhw7y9fXVZ599Zu0TFhamkJAQBQUFycvLS59++qkkKTo6WmvWrJGPj491JF9wcLBWrFihb7/9Vvfff79atWqlt956K9voPwAAAAAAUHhMhmEYRV0EiqdJkyZp8eLF2r17d1GXYhfJycmyWCxKHDNGHjetTQUA+Gez3PRkVgAAANxe1t/HSUlJ8vDwyLVfvqfvZUlLS9OZM2eUmZlp0161atU7PSWKiZSUFB07dkzvvPMO0+EAAAAAAECO8h1KHT58WH379tUPP/xg024YhkwmU46LTePeMnToUH366afq2rXrXU/dAwAAAAAAxVO+Q6nw8HA5OjpqxYoVqlixokwmU2HUhX+w2NhYxcbGFnUZAAAAAADgbyzfodTOnTu1fft21a1btzDqAQAAAAAAwD0g30/f8/f3159//lkYtQAAAAAAAOAekadQKjk52fqaOnWqRo8erYSEBJ07d85mX3JycmHXCwAAAAAAgGIgT9P3PD09bdaOMgxDDz30kE0fFjoHAAAAAABA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NH5+ftq1a5eOHz8uV1dXVa1aVRMmTFDjxo314IMPKi8vT+vWrVNQUNAN1wUAQHnj2/cAAADuAvPmzVO7du2KBVLS1VBq7969OnjwoKSr08IOHTqkmjVrqmXLlhZtJ06cqHHjxikhIUFBQUGKjIzU+vXr5e/vf939v//++6pSpYpatGihTp06KSIiwuL5UZK0cOFC1ahRQ48++qi6du2q/v37y83NTU5OTpKuTqVLSkrSo48+qhdffFH169fXX//6V504cUI1atQocd+vv/664uLi9M477ygkJETdu3dXpUqVtGXLFjk7O5fp/F3LI488ok8++UTTp09XaGiovv76a4sHjEtSRESExo0bp9dff11NmzbV77//rt69e1u0udlzWpKnn35aI0aMUExMjB5++GHt2LFD48aNK9O2o0aNkp2dnYKDg+Xp6amMjAw5ODgoNjZWISEhevTRR2VnZ2d+zhgAALZkMP15kjwAAABQDv7973/L19dXmzZtUtu2bW1dTpkkJiZq+PDhOnfunK1LAQDgnsf0PQAAAJSLf/3rX8rNzVXDhg2VmZmp119/XX5+fnr00UdtXRoAALgDEUoBAACgXOTn5+tvf/ubfvnlF7m5ualFixZatGhRsW/EAwAAkJi+BwAAAAAAABvgQecAAAAAAACwOkIpAAAAAAAAWB2hFAAAAAAAAKyOUAoAAAAAAABWRygFAAAAAAAAqyOUAgAAAAAAgNURSgEAAAAAAMDqCKUAAAAAAABgdYRSAAAAAAAAsLr/B0WWnm7qOf0mAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import pymysql\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Connect to the MySQL database\n", + "connection = pymysql.connect(\n", + " host='localhost', # Your MySQL server address\n", + " user='root', # Your MySQL username\n", + " password='Apfelsaft_1', # Your MySQL password\n", + " db='lego', # The database you're working with\n", + " cursorclass=pymysql.cursors.DictCursor\n", + ")\n", + "\n", + "# Query to get average unique parts per parent theme, limited to top 20\n", + "query = \"\"\"\n", + " SELECT \n", + " t.parent_id,\n", + " pt.name AS parent_theme_name,\n", + " AVG(unique_parts) AS avg_unique_parts\n", + " FROM (\n", + " SELECT \n", + " s.theme_id,\n", + " COUNT(DISTINCT ip.part_num) AS unique_parts\n", + " FROM \n", + " sets s\n", + " JOIN \n", + " inventories i ON s.set_num = i.set_num\n", + " JOIN \n", + " inventory_parts ip ON i.id = ip.inventory_id\n", + " GROUP BY \n", + " s.set_num\n", + " ) AS unique_parts_per_set\n", + " JOIN \n", + " themes t ON unique_parts_per_set.theme_id = t.id\n", + " JOIN \n", + " themes pt ON t.parent_id = pt.id -- Joining to get the parent theme name\n", + " GROUP BY \n", + " t.parent_id, pt.name\n", + " ORDER BY \n", + " avg_unique_parts DESC -- Order by average unique parts in descending order\n", + " LIMIT 20; -- Limit to top 20 results\n", + "\"\"\"\n", + "\n", + "# Fetch data\n", + "with connection.cursor() as cursor:\n", + " cursor.execute(query)\n", + " result = cursor.fetchall()\n", + "\n", + "# Convert to DataFrame\n", + "df_avg_unique_parts_per_parent = pd.DataFrame(result)\n", + "\n", + "# Visualization\n", + "plt.figure(figsize=(12, 8))\n", + "plt.barh(df_avg_unique_parts_per_parent['parent_theme_name'], df_avg_unique_parts_per_parent['avg_unique_parts'], color='lightcoral')\n", + "plt.title('Top 20 Parent LEGO Themes by Average Unique Parts')\n", + "plt.xlabel('Average Unique Parts')\n", + "plt.ylabel('Parent Theme Name')\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# Close the connection\n", + "connection.close()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 8.\tWhat is the total number of parts used in all sets of a specific theme?\n", + "## Calculate the total part count for a specific theme to assess its material usage.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 178, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " theme_name total_parts\n", + "0 Star Wars 35500\n", + "1 Harry Potter 7723\n", + "2 Avatar 1124\n", + "3 Bionicle 3571\n", + "4 Spider-Man 5966\n" + ] + }, + { + "data": { + "image/png": "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v9ZTTz0lHx8fTZgwQR07dlR8fLx9ezJSqlQpXb16VbNmzVKPHj2uu44ff/xRzZs3V40aNTRy5Eg5OTkpOjpajRs31urVq1WrVq1M501bfmRkpN566y1duHBBkydP1oMPPqht27bZt3nHjh2qV6+eXF1d9fjjjys0NFT79u3TN998o9dff10dOnTQ77//rs8//1zvvfeeChcuLEn24Pn6669r+PDh6tSpk/r06aMTJ05o4sSJql+/vrZt22a/HH369Ol64okn9MADD2jgwIHav3+/2rRpo0KFCikkJCQbe/7GTp48ma7Nzc1Nvr6+kqRvvvlGnp6e9s9IVnzzzTcKDQ1VvXr1Mpxev359hYaG6ttvv725ojORlc/ZsWPHdP/999v/GBQYGKjvv/9evXv3VmJiogYOHOiwzLFjx8rT01NDhw7VH3/8oYkTJ8rV1VVOTk46c+aMRo0apQ0bNigmJkalS5fWiBEj7PNmZbxTUlIUGRmp5ORkPf300woKCtLhw4e1ePFinT17Vn5+fjm6jwDgugwAALeof//+5t+/UhYsWGAkmddee82h33//+19js9nMH3/8YW/z8vIyPXr0SLfMCxcupGtbv369kWRmzpxpb1u5cqWRZFauXHndGqOjo40ks3z5cnPixAlz6NAhM2fOHBMQEGA8PT3NX3/9leF6U1JSTMWKFU3jxo0d2iUZJycn8+uvvzq0nzhxwkgyI0eOdGg/c+aMkWTeeeed69aZkZEjR5prf2VLMm5ubg77cvv27UaSmThx4nWXd/ToURMYGGgkmQoVKph+/fqZzz77zJw9e9ahX2pqqgkLCzORkZEmNTXV3n7hwgVTunRp07RpU3tb2v49cOCAMcaYc+fOGX9/f9O3b9906/bz83Nor1+/vvHx8TF//vlnuvWneeeddxyWn+bgwYPG2dnZvP766w7tv/zyi3FxcbG3p6SkmCJFipiqVaua5ORke7+pU6caSaZBgwbX3WfGGFOqVCnTsmXL6/bp0aOHkZThKzIy0t6vYMGCpmrVqunmT0xMNCdOnLC/kpKSjDHGnD171kgybdu2ve7627RpYySZxMTEG26PMcbMmzfvusdPVj9nvXv3NsHBwebkyZMO83fp0sX4+fnZj6u047VixYomJSXF3q9r167GZrOZ5s2bO8xfp04dU6pUKfv7rI73tm3bjCQzb968LO0HALASl5cDAHLcd999J2dnZz3zzDMO7YMGDZIxRt9///0Nl/Hv77JevnxZp06dUrly5eTv76+ff/75pmtr0qSJAgMDFRISoi5dusjb21vz589X8eLF0633zJkzSkhIUL169TJcZ4MGDRQREZGl9Xp6esrNzU2xsbE6c+bMTdd/7bakXRkg/XNG3dfXV/v377/ufEWLFtX27dvVr18/nTlzRlOmTNEjjzyiIkWKaMyYMfavAMTFxWnv3r165JFHdOrUKZ08eVInT57U+fPn9dBDD+mnn35SampqhutYtmyZzp49q65du9rnO3nypJydnVW7dm2tXLlS0j93Uf/pp5/Uq1cvlSxZ0mEZWXlM2tdff63U1FR16tTJYT1BQUEKCwuzr2fLli06fvy4+vXr5/Cd9aioqBw/6+nh4aFly5ale7355pv2PomJiRnerK579+4KDAy0v4YMGSJJOnfunCTJx8fnuutOm56YmJhTm3PDz5kxRl999ZVat24tY4zDOERGRiohISHd8fPYY4/J1dXV/r527doyxqhXr14O/WrXrq1Dhw7pypUrkrI+3mljunTpUl24cCHH9gUA3AwuLwcA5Lg///xTxYoVSxcQ0u6O/Oeff95wGRcvXtTYsWMVHR2tw4cPO3wX/Fa+k/nRRx+pfPnycnFxUdGiRRUeHi4np//7G/TixYv12muvKS4uzuG7pBkFwNKlS2d5ve7u7nrrrbc0aNAgFS1aVPfff79atWqlxx57TEFBQTe1LdeGVEkqWLBglkJ9cHCwJk+erEmTJmnv3r1aunSp3nrrLY0YMULBwcHq06eP9u7dK0nXvQQ9ISFBBQsWTNeeNm/ad+avlXaZdVpwq1ix4g1rzsjevXtljFFYWFiG09OCXdpn7tp+rq6umd507GY5OzurSZMm1+3j4+OT4aPZXn31Vftzsf9907O0YyktfGcmq+E8O270OTtx4oTOnj2rqVOnaurUqRku4/jx49ddZlpIvvYyfz8/P6WmpiohIUEBAQFZHu/SpUvr+eef1/jx4zV79mzVq1dPbdq00aOPPsql5QBuO0I3AOCO9PTTTys6OloDBw5UnTp15OfnJ5vNpi5dumR6djUratWqZb97+bVWr16tNm3aqH79+po0aZKCg4Pl6uqq6OhoffbZZ+n6//useFYMHDhQrVu31oIFC7R06VINHz5cY8eO1Y8//qhq1aple1uufQRVmn//geJGbDabypcvr/Lly6tly5YKCwvT7Nmz1adPH/t+fuedd1S1atUM58/s0WJp886aNSvDPyrk1N3YU1NTZbPZ9P3332e4P+60R5+lqVChgrZv367Lly87nPHN7FFdfn5+Cg4O1o4dO6673B07dqh48eL2P2rkhBt9ztLG+tFHH830DzTXbldmy8zKurI63uPGjVNUVJQWLlyoH374Qc8884zGjh2rDRs2qESJEhmuBwCsQOgGAOS4UqVKafny5Tp37pzDGbfffvvNPj1NZpcQf/nll+rRo4fGjRtnb7t06ZLOnj1rTdGSvvrqK3l4eGjp0qVyd3e3t0dHR2d5GTe6JLps2bIaNGiQBg0apL1796pq1aoaN26c/ve//9103TmlTJkyKliwoI4cOSLp/25q5+vre8Mzt9dKm7dIkSLXnTftLPPOnTuvu7zM9mvZsmVljFHp0qVVvnz5TOdP+8zt3bvX4ez75cuXdeDAAVWpUuW6689prVq10oYNGzR//nx16tQpy/N88sknWrNmjR588MF001evXq2DBw/qiSeeyOlyryswMFA+Pj66evVqtj8n2ZXV8U5TqVIlVapUSa+88orWrVununXrasqUKXrttdcsrRMA/o3vdAMAclyLFi109epVffjhhw7t7733nmw2m5o3b25v8/LyyjBIOzs7pztjO3HiRF29etWSmtPWabPZHNZx8OBBLViwIMvLSLur+rXbdOHCBV26dMmhrWzZsvLx8cnwkUhW2rhxo86fP5+ufdOmTTp16pTCw8MlSTVq1FDZsmX17rvvZngp9IkTJzJdR2RkpHx9ffXGG2/o8uXLmc4bGBio+vXra8aMGYqPj3fo8+/x9/LykpR+v3bo0EHOzs4aPXp0us+LMUanTp2SJNWsWVOBgYGaMmWKw/PUY2JiLP1DTmaefPJJFS1aVM8995x+//33dNMzulph8ODB8vT01BNPPGHfrjSnT59Wv379VKBAAfvj1W4XZ2dndezYUV999VWGfzy53ucku7I63omJifbvgaepVKmSnJycbvvxBgCc6QYA5LjWrVurUaNGevnll3Xw4EFVqVJFP/zwgxYuXKiBAwc63JSpRo0aWr58ucaPH69ixYqpdOnSql27tlq1aqVZs2bJz89PERERWr9+vZYvX37dR2HdqpYt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Ynl7e0uSzp8/r+DgYC1evFhOTulP/k+aNEkhISH68MMPZbPZVKFCBf39998aMmSIRowYYZ+ncuXKGjlypCQpLCxMH374oVasWJFh6P7ss8904sQJbd68WYUKFZIklStXLtN6R44cqXHjxqlDhw6SpNKlS2vXrl36+OOPMw3dycnJSk5Otr9PTEzMyq4BAAAAAOSQu/by8kaNGikuLk5xcXHatGmTIiMj1bx5c/3555/p+u7evVt16tSRzWazt9WtW1dJSUn666+/7G2VK1d2mC84OFjHjx/PcP1xcXGqVq2aPXBfz/nz57Vv3z717t1b3t7e9tdrr72mffv2ZTrf2LFj5efnZ3+FhITccF0AAAAAgJxz157p9vLycjizPG3aNPn5+emTTz5Rnz59bmqZrq6uDu9tNluml4t7enpmeblJSUmSpE8++US1a9d2mObs7JzpfMOGDdPzzz9vf5+YmEjwBgAAAIDb6K4N3dey2WxycnLSxYsX002755579NVXX8kYYz/bvXbtWvn4+KhEiRI3tb7KlStr2rRpOn369A3PdhctWlTFihXT/v371a1btyyvw93dnbulAwAAAEAuumsvL09OTtbRo0d19OhR7d69W08//bSSkpLUunXrdH2feuopHTp0SE8//bR+++03LVy4UCNHjtTzzz+f4XfAs6Jr164KCgpSu3bttHbtWu3fv19fffWV1q9fn2H/0aNHa+zYsZowYYJ+//13/fLLL4qOjtb48eNvav0AAAAAAOvdtWe6lyxZouDgYEmSj4+PKlSooHnz5qlhw4Y6ePCgQ9/ixYvru+++0+DBg1WlShUVKlRIvXv31iuvvHLT63dzc9MPP/ygQYMGqUWLFrpy5YoiIiL00UcfZdi/T58+KlCggN555x0NHjxYXl5eqlSpkgYOHHjTNQAAAAAArGUzxpjcLgK3R2Jiovz8/DRryx4V8PbJ7XLytA7hwbldAgAAAIBclJavEhIS5Ovrm2m/u/bycgAAAAAArEboBgAAAADAIoRuAAAAAAAsQugGAAAAAMAihG4AAAAAACxC6AYAAAAAwCKEbgAAAAAALELoBgAAAADAIoRuAAAAAAAsQugGAAAAAMAihG4AAAAAACxC6AYAAAAAwCKEbgAAAAAALELoBgAAAADAIoRuAAAAAAAsQugGAAAAAMAihG4AAAAAACxC6AYA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IPt8jRs3dljO1KlT5e/vr1WrVqlVq1bZrsMYoxUrVmjp0qV6+umnJUkDBw60Tw8NDdVrr72mfv36OYTuy5cva9KkSapSpYq9zdPTU8nJyQ71xsfHKywsTA8++KBsNptKlSqV7RoBALgWl5cDAIBMJSYm6u+//1bdunUd2uvWravdu3dfd95jx46pb9++CgsLk5+fn3x9fZWUlKT4+Phs1bB48WJ5e3vLw8NDzZs3V+fOne03dlu+fLkeeughFS9eXD4+PurevbtOnTqlCxcu2Od3c3NT5cqVb7ieqKgoxcXFKTw8XM8884x++OGHbNUJAEBGCN0AAMASPXr0UFxcnD744AOtW7dOcXFxCggIUEpKSraW06hRI8XFxWnv3r26ePGiPv30U3l5eengwYNq1aqVKleurK+++kpbt27VRx99JEkO6/D09MzSzdOqV6+uAwcOaMyYMbp48aI6deqk//73v9nbaAAArsHl5QAAIFO+vr4qVqyY1q5dqwYNGtjb165dq1q1akmS/TvcV69edZh37dq1mjRpklq0aCFJOnTokE6ePJntGry8vFSuXLl07Vu3blVqaqrGjRsnJ6d/ziPMnTs3S8t0c3NLV6/0z/Z27txZnTt31n//+181a9ZMp0+fVqFChbJdNwAAEqEbAADcwODBgzVy5EiVLVtWVatWVXR0tOLi4jR79mxJUpEiReTp6aklS5aoRIkS8vDwkJ+fn8LCwjRr1izVrFlTiYmJGjx4sDw9PXOsrnLlyuny5cuaOHGiWrdurbVr12rKlClZmjc0NFRLly7Vnj17FBAQID8/P02cOFHBwcGqVq2anJycNG/ePAUFBcnf3z/HagYA3H24vBwAAFzXM888o+eff16DBg1SpUqVtGTJEi1atEhhYWGSJBcXF02YMEEff/yxihUrprZt20qSpk+frjNnzqh69erq3r27nnnmGRUpUiTH6qpSpYrGjx+vt956SxUrVtTs2bOz/Iivvn37Kjw8XDVr1lRgYKDWrl0rHx8fvf3226pZs6buu+8+HTx4UN999539LDoAADfDZowxuV0EAAAAAAD5EX+6BQAAAADAIoRuAAAAAAAsQugGAAAAAMAihG4AAAAAACxC6AYAAAAAwCKEbgAAAAAALELoBgAAAADAIoRuAAAAAAAsQugGAAAAAMAihG4AAAAAACxC6AYAAAAAwCKEbgAAAAAALPL/ADpjpVqyhbs2AAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import pymysql\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Connect to the MySQL database\n", + "connection = pymysql.connect(\n", + " host='localhost', # Your MySQL server address\n", + " user='root', # Your MySQL username\n", + " password='Apfelsaft_1', # Your MySQL password\n", + " db='lego', # The database you're working with\n", + " cursorclass=pymysql.cursors.DictCursor\n", + ")\n", + "\n", + "# List of themes to compare\n", + "themes_to_compare = [\"Harry Potter\", \"Star Wars\", \"Avatar\",\"Spider-Man\", \"Bionicle\"] # Add other themes as needed\n", + "themes_placeholder = ', '.join([f\"'{theme}'\" for theme in themes_to_compare])\n", + "\n", + "# Query to get total parts for specified themes\n", + "query = f\"\"\"\n", + " SELECT \n", + " t.name AS theme_name,\n", + " SUM(s.num_parts) AS total_parts\n", + " FROM \n", + " sets s\n", + " JOIN \n", + " themes t ON s.theme_id = t.id\n", + " WHERE \n", + " t.name IN ({themes_placeholder})\n", + " GROUP BY \n", + " t.name;\n", + "\"\"\"\n", + "\n", + "# Fetch data\n", + "with connection.cursor() as cursor:\n", + " cursor.execute(query)\n", + " result = cursor.fetchall()\n", + "\n", + "# Convert to DataFrame\n", + "df_total_parts = pd.DataFrame(result)\n", + "\n", + "# Display result\n", + "print(df_total_parts)\n", + "\n", + "# Visualization\n", + "plt.figure(figsize=(10, 6))\n", + "plt.barh(df_total_parts['theme_name'], df_total_parts['total_parts'], color='lightblue')\n", + "plt.title('Total Parts in Selected LEGO Themes')\n", + "plt.xlabel('Total Parts')\n", + "plt.ylabel('Theme Name')\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# Close the connection\n", + "connection.close()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 9.\tWhich themes have experienced the most significant change in average part count over time?\n", + "## Identify themes that have increased or decreased in complexity based on average part counts across years.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 179, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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DO9Fy5YtDRcXF+PEiRNm2/79+40CBQrY/a49cuSIkT9/fuO9996z2+aePXuMAgUKZGi/WfpU8zVr1hh//fWXcfz4cWPBggVG4cKFDWdnZ+P333/PtO6rV68alStXNh5//HG7dklGvnz5jL1799q1Z3eqube39x1/36U7ffq04eDgYDRt2tRITU012z/++GNDkjF79myzrUyZMpn+PyI4ONgIDg42n6d/HitWrGgkJyeb7ZMnTzYkGXv27DHbmGqOex1TzQEgD/vhhx+UP39+9e7d2669f//+Mgwjw5WFH330UfPCOZJUunRptW7dWqtWrVJqamqO1HT58uVMR+mcnJzM5Tnl66+/1urVq+0ec+bMMZcnJiZmOiry1ltvqWjRouYjfVROki5cuCB3d/fb7jd9eWJiYg4diRQYGGh34bWiRYuqfPnyOnTokNm2aNEi1a9fX97e3vr777/NR+PGjZWamprhtIFnnnlGnp6e5vM6depIuj4DoECBAnbtV69e1YkTJyRdHy08f/68nnvuObv95M+fX3Xq1NHPP/8s6frUewcHB0VFRdlNE86OXr16mT+nT5+9evWq1qxZI0kKCAhQnTp1NG/ePLPf2bNntWLFCnXs2PG2pz+kvz93ej9v1r17d7vn9evX15kzZ+ze7xtnOiQkJOjvv/9WcHCwDh06pISEBLv1s/Lerly5Uo8++qiCgoLMtkKFCqljx45228rqe5Ndbm5udrMHHBwcVLt2bbsab+XMmTNatWqVnnvuObOtXbt25hTidM8++6y2b99ujvJK0sKFC+Xo6GieThATE6P9+/fr+eef15kzZ8zju3jxop544gn98ssvdqdVSBnfL8n+/bly5Yr+/vtvPfLII5Jk3mEhNTVVa9as0VNPPaWSJUua/f38/DKM8i9ZskRpaWlq37693etevHhx+fv7Z/l1b9y4sYoWLSofHx916NBBbm5u+uabb1SqVKkMdZ87d04JCQmqX79+pneFCA4OVmBgYJb2eyuJiYlZ/vexZs0aXb16VX369LGb0fTyyy/Lw8PjlneIyIouXbrYXfAv/d9LVj5/wL2CqeYAkIcdPXpUJUuWzPCHU/pVzm8+nzKzK4oHBATo0qVL+uuvv1S8ePG7rsnZ2TnT87ivXLliLs8pDRo0UJEiRW653N3dPdNzOl977TXzvtk3T1V2d3fXhQsXbrvf9OXZDXS3U7p06Qxt3t7edoF2//792r17d6bTYCXp9OnTt91megj38fHJtD19X/v375f0/+ef3szDw0OS5OjoqLFjx6p///564IEH9Mgjj6hFixbq1KlTlj5L+fLlU9myZe3aAgICJMnunOZOnTqpV69eOnr0qMqUKaNFixYpJSXljlPI0+u80/t5s5tft/Qp0OfOnTO3GR0dreHDh2vTpk0Zzv9OSEiw+8IjK+/t0aNH9eijj2bo5+fnZ/c8q+9Ndj344IMZvsTw9vbW7t2777juwoULlZKSourVq9udl5v+hUn61PtnnnlG/fr108KFC/Xmm2/KMAwtWrRIzZo1M+tOP77OnTvfcn8JCQnmeyJdP/3jZmfPntXIkSO1YMGCDP8u0r8YOX36tC5fvpzhNZYyf90Nw7jlXRmyOsV66tSpCggIUIECBfTAAw+ofPnydiF2+fLlevfddxUTE2P3ezSzL5gyO+7s8vDwyPK/j/T/n5QvX96u3cHBQWXLls30/P2sut2/OeB+QfAGAPyrSpQokentxtLbbhxZslqFChUUExOjEydOmCNK0vVwlx7w0kfi01WsWFE7d+5UcnJypiP30vULNxUsWDBHb42WP3/+TNuNGy6Sl5aWpiZNmmjQoEGZ9k0/pjtt8077Sh9R/PzzzzMN0DeOlvfp00ctW7bU0qVLtWrVKg0dOlSjR4/WTz/9pOrVq2e6n+zq0KGD+vbtq3nz5unNN9/UF198oVq1amUIADdLv1jUnj177EaS7+ROr8/Bgwf1xBNPqEKFCpo4caJ8fHzk4OCgH374QR9++GGGEdmsvLdZlZ33Jjvupsb02Qi3uoDhoUOHVLZsWZUsWVL169fXV199pTfffFO//vqrjh07ZnfufPrxjR8//pbv2c2zWDL7Mq99+/bauHGjBg4cqKCgILm5uSktLU2hoaEZ3p+sSEtLM+9PntlrldXzjWvXrq1atWplumz9+vVq1aqVGjRooGnTpqlEiRIqWLCg5syZo/nz52fonxNfYqb/jrx69WqO3mLuVjNRUlNTM339cvLfCJBbCN4AkIeVKVNGa9asyTA9+rfffjOX3yh9NOlG+/btk4uLyy1HUbMrKChI69evV1pamt1IzubNm+Xi4pIhHFqpRYsWWrBggebNm3fLsJrZOps2bdKiRYsyvXDXkSNHtH79ejVu3DhHR++zoly5ckpKSrK7R7hV+5GkYsWKZWlf5cqVU//+/dW/f3/t379fQUFBmjBhgr744ovbrpeWlqZDhw7ZfSb27dsnSXYXCCtUqJCaN2+uefPmqWPHjoqOjs5wIbnMNGvWTPnz59cXX3yR7Qus3c53332n5ORkLVu2zG6k7p9O85au/1u9cbQ43c1t2X1vrHb48GFt3LhRvXr1UnBwsN2ytLQ0vfjii5o/f755Zexnn31Wr732muLj47Vw4UK5uLioZcuW5jrpx+fh4fGPj+/cuXNau3atRo4cqWHDhpntN//+K1asmJycnLL8uhuGoYceesiy32Fff/21nJyctGrVKrsv/W48feZOsnLniRu1bNlSmzZt0tdff213qkBm0v9/Eh8fbzdT5erVqzp8+LDd++Xt7Z3hSufS9VHzm2e5ZFV2jw34t3GONwDkYU8++aRSU1P18ccf27V/+OGHstlsGc5T3LRpk925gsePH9e3336rpk2b3nLEIbuefvpp/fnnn1qyZInZ9vfff2vRokVq2bLlLUeRrdC+fXsFBgbqnXfe0a+//pppn5tHVF599VUVK1ZMAwcOzHB+4ZUrV9SlSxcZhmH3B/2/pX379tq0aZNWrVqVYdn58+d17dq1HNlPSEiIPDw89P777yslJSXD8r/++kvS9ausp59CkK5cuXJyd3fP8m3jbvzsGoahjz/+WAULFtQTTzxh1+/FF19UbGysBg4cqPz586tDhw533LaPj49efvll/fjjj/roo48yLE9LS9OECRP0+++/Z6nWdOn/Vm787CQkJGQrIN0sJCREmzZtUkxMjNl29uxZu3Pb0/tl5b35t6TXN2jQID399NN2j/bt2ys4ONjuGNq1a6f8+fPryy+/1KJFi9SiRQu5urqay2vWrKly5crpgw8+UFJSUob9ZeX4Mnt/JGX4siZ//vxq3Lixli5dqj/++MNsP3DgQIbrY7Rt21b58+fXyJEjM2zXMIxMT2nJrvz588tms9ldb+PIkSNaunRplrfh4uIiSZmG3sx0795dJUqUUP/+/c0vvW50+vRpvfvuu5Kun5/u4OCgKVOm2L0Gn376qRISEuyuul6uXDn9+uuvunr1qtm2fPnyu7r1mqura4brJwD3Eka8ASAPa9mypRo1aqS33npLR44cUbVq1fTjjz/q22+/VZ8+fTLch7py5coKCQmx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rYULF2rDhg3q1auX2SclJUXvvPOOdu3apaVLl+rIkSMKCwszlw8dOlSxsbFasWKF4uLiFBERoSJFityyrosXL6pfv37atm2b1q5dq3z58qlNmzZKS0uz6/fWW29pwIABiomJUUBAgJ577jldu3ZNkrR582a99NJL6tWrl2JiYtSoUSO9++67t309Fi1apKtXr2rQoEGZLrfq/PDixYvr5MmT+uWXX27ZZ/78+QoICFDLli0zLOvfv7/OnDmj1atXm31z6jMCAAAAAOkK5HYBdzJ48GC9/fbbdm0rVqxQ/fr1tW/fPpUtW1YFCvz/YUycONFuhPXEiRPy9PTUvn371KhRo0z3UbFiRUnSvn37FBQUdMeaIiIiVK5cOXMKdfny5bVnzx6NHTvW7DN69Gh17NhRffr0kST5+/trypQpCg4OVkREhJycnNS1a1ezf9myZTVlyhQ9/PDDSkpKkpubm44dO6bq1aurVq1akq6f33w77dq1s3s+e/ZsFS1aVLGxsapcubLZPmDAADVv3lySNHLkSFWqVEkHDhxQhQoVNHnyZIWGhpohOiAgQBs3btTKlStvud/9+/fLw8NDJUqUuMMrl7OeeeYZrVq1SsHBwSpevLgeeeQRPfHEE+rUqZM8PDwkXX9P09/fm934vqf/9598RpKTk5WcnGw+T0xMvKvjAgAAAJC33PMj3gMHDlRMTIzdIz2IZqZr166KiYnR9OnTdfHiRbupwTk1TTguLk516tSxa3v00Uftnu/atUuRkZFyc3MzHyEhIUpLS9Phw4clSdu3b1fLli1VunRpubu7Kzg4WJJ07NgxSVKPHj20YMECBQUFadCgQdq4ceNt69q/f7+ee+45lS1bVh4eHmZQT99euqpVq5o/p4fl9CnuWTm2mxmGYTe74N+SP39+zZkzR7///rvGjRunUqVK6f3331elSpV08uRJu/qy6p98RkaPHi1PT0/z4ePjk+1tAAAAAMi77vngXaRIEfn5+dk90s/f9ff316FDh5SSkmL29/Lykp+fn0qVKmW3nYCAAMXFxWW6j/T2gICAHKs7KSlJr776qt0XBrt27dL+/ftVrlw5Xbx4USEhIfLw8NC8efO0detWffPNN5JkXpG7WbNmOnr0qPr27as//vhDTzzxhAYMGHDLfbZs2VJnz57VzJkztXnzZm3evNlue+kKFixo/pwemG+ejp4dAQEBSkhIsAu7mfHw8NDFixcz7Cv96uWenp5mP0lKSEjIsI3z58+b/dKVKlVKL774oj7++GPt3btXV65c0SeffGLWltX3/Z9+RoYMGaKEhATzcfz48Uy3AQAAAOC/6Z4P3rfz3HPPKSkpSdOmTbtj3w4dOmjNmjUZztFNS0vThx9+qMDAwAzn9t5KxYoVtWXLFru2m694XaNGDcXGxmb40sDPz08ODg767bffdObMGY0ZM0b169dXhQoV7C6slq5o0aLq3LmzvvjiC02aNEkzZszItKYzZ84oPj5eb7/9tp544glVrFhR586dy9Lx3Hxs6YH9Vsd2s6effloODg4aN25cpsvTg3X58uV17dq1DLdl27Fjh6T/D7X+/v7Kly+ftm/fbtfv0KFDSkhIuO0XJN7e3ipRooR5wbQOHTpo//79+u677zL0nTBhggoXLqwmTZqYff/JZ8TR0VEeHh52DwAAAABIl+vneCckJGQIYoULFzan6164cEGnTp2yW+7i4iIPDw89+uij6t+/v/r376+jR4+qbdu28vHx0cmTJ/Xpp5/KZrMpX77r3y307dtX3377rVq2bKkJEyaoTp06+vPPP/X+++8rLi5Oa9asyfJ06e7du2vChAkaOHCgunXrpu3btysyMtKuz+DBg/XII4+oV69e6tatm1xdXRUbG6vVq1fr448/VunSpeXg4KCPPvpI3bt31//+9z+98847dtsYNmyYatasqUqVKik5OVnLly+/5fnK3t7eKly4sGbMmKESJUro2LFjGS74lhW9e/dWvXr19MEHH6h169ZatWrVbc/vliQfHx99+OGH6tWrlxITE9WpUyf5+vrq999/19y5c+Xm5qYJEyaoUqVKatq0qbp27aoJEyaobNmyio+PV58+ffTss8+asxTc3d3VrVs39e/fXwUKFFCVKlV0/Phx8zWtW7eupOu3MIuJiVGbNm1Urlw5XblyRXPnztXevXv10UcfSboephctWqTOnTtr/PjxeuKJJ5SYmKipU6dq2bJlWrRokXmV/Jz8jAAAAABAulwf8Y6KilL16tXtHiNHjjSXDxs2TCVKlLB73Hj17A8++EDz58/Xzp071aJFC/n7++uZZ55RWlqaNm3aZI4+Ojk56aefflKnTp305ptvys/PT6GhocqfP79+/fVXPfLII1muuXTp0vr666+1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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import pymysql\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Connect to the MySQL database\n", + "connection = pymysql.connect(\n", + " host='localhost', # Your MySQL server address\n", + " user='root', # Your MySQL username\n", + " password='Apfelsaft_1', # Your MySQL password\n", + " db='lego', # The database you're working with\n", + " cursorclass=pymysql.cursors.DictCursor\n", + ")\n", + "\n", + "# Query to get average part count over the years by theme\n", + "query = \"\"\"\n", + " SELECT \n", + " t.name AS theme_name,\n", + " s.year,\n", + " AVG(s.num_parts) AS avg_part_count\n", + " FROM \n", + " sets s\n", + " JOIN \n", + " themes t ON s.theme_id = t.id\n", + " GROUP BY \n", + " t.name, s.year\n", + " ORDER BY \n", + " t.name, s.year;\n", + "\"\"\"\n", + "\n", + "# Fetch data\n", + "with connection.cursor() as cursor:\n", + " cursor.execute(query)\n", + " result = cursor.fetchall()\n", + "\n", + "# Convert to DataFrame\n", + "df_avg_part_count_change = pd.DataFrame(result)\n", + "\n", + "# Calculate change in average part count for each theme\n", + "change_df = df_avg_part_count_change.groupby('theme_name').agg(\n", + " avg_change=('avg_part_count', lambda x: x.iloc[-1] - x.iloc[0]) # Calculate change from first to last year\n", + ").reset_index()\n", + "\n", + "# Convert avg_change to numeric type\n", + "change_df['avg_change'] = pd.to_numeric(change_df['avg_change'], errors='coerce')\n", + "\n", + "# Get the top 10 themes with the highest change in average part count\n", + "top_10_themes = change_df.nlargest(10, 'avg_change')\n", + "\n", + "# Visualization\n", + "plt.figure(figsize=(10, 6))\n", + "plt.barh(top_10_themes['theme_name'], top_10_themes['avg_change'], color='lightgreen')\n", + "plt.title('Top 10 LEGO Themes by Change in Average Part Count')\n", + "plt.xlabel('Change in Average Part Count')\n", + "plt.ylabel('Theme Name')\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# Close the connection\n", + "connection.close()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 10.\tHow do the number of sets and average part count correlate within each theme?\n", + "## Analyze the relationship between the number of sets and the average part count for themes to see if more sets mean more complex designs.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 180, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA90AAAJOCAYAAACqS2TfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAACZk0lEQVR4nOzdeVxU5eLH8e+AgoAM5oKoiLilmFpXLcXSLBcorUzNbFPLzLzmdUnz+rvdym5l124p2X7rpi1WZFiphVmGWaKVZaKhqUm44S6DoqDM+f2hTIxsMzDDzMDn/XrxqjnnmTPPrJ7veTaTYRiGAAAAAACAy/l5ugIAAAAAAFRXhG4AAAAAANyE0A0AAAAAgJsQugEAAAAAcBNCNwAAAAAAbkLoBgAAAADATQjdAAAAAAC4CaEbAAAAAAA3IXQDAAAAAOAmhG4AAFDtmUwmPfbYYy49Zp8+fdSnTx+XHtMZiYmJql+/vk6cOOGxOrjLha9tRkaGTCaTFixY4JLjFx7vP//5j0uO522OHDmikJAQffbZZ56uCgARugF4ibS0NA0bNkwtWrRQnTp11KxZM/Xv31/z58+v0PEWLVqkefPmubaSHnT8+HHVqVNHJpNJ6enpnq6OV3nsscdkMplsf8HBwerQoYMefvhhWSwWlz3Ovn379Nhjj2njxo1O3W/nzp0aN26cWrVqpTp16shsNuvKK69UQkKCTp065bL6VcZLL73kdJg5ffq05s6dq+7duyssLEx16tTRxRdfrAceeEC//fabeyrqAb/++qsee+wxZWRkeLoqdgoKCvToo49q4sSJqlu3rt2+M2fO6Pnnn9fll1+u0NBQ1a1bV5dffrmef/55nTlzxkM1dr/o6Gi734LS/lwV3L1ZgwYNdO+99+qf//ynp6sCQFItT1cAANauXatrrrlGUVFRGjt2rCIiIrR7926tW7dOCQkJmjhxotPHXLRokTZv3qzJkye7vsIe8OGHH8pkMikiIkLvvvuunnjiCU9Xyeu8/PLLqlu3rk6cOKEvvvhCTz75pFatWqXvvvtOJpOp0sfft2+fZs2apejoaF122WUO3Wf58uW65ZZbFBgYqJEjR6pjx47Kz8/Xt99+q+nTp2vLli167bXXKl23ynrppZfUsGFDjR492qHyhw8fVnx8vDZs2KBBgwbp9ttvV926dbVt2za9//77eu2115Sfn+/eSleRX3/9VbNmzVKfPn0UHR1tt++LL77wTKUkLV26VNu2bdN9991nt/3kyZMaOHCgVq9erUGDBmn06NHy8/NTcnKyJk2apKSkJC1fvlwhISEeqrn7zJs3z67V/7PPPtN7772nuXPnqmHDhrbtPXv29ET1qtz999+v559/XqtWrdK1117r6eoANRqhG4DHPfnkkwoLC9MPP/ygevXq2e07ePCgZyrlZd555x1df/31atGihRYtWuSR0H3y5EmvPlEfNmyY7cT6/vvv19ChQ5WUlKR169YpNja2wsc9e/asrFar0/fbtWuXRowYoRYtWmjVqlVq0qSJbd+ECRO0Y8cOLV++vML18qTRo0fr559/1uLFizV06FC7ff/617/0j3/8wyWPU9pnzjAMnT59WkFBQS55nIoKCAjw2GO/+eabuvLKK9WsWTO77VOnTtXq1as1f/58PfDAA7bt48eP14svvqgHHnhA06ZN08svv1xlda2q92vw4MF2t7OysvTee+9p8ODBxS6YeFvPBXeIiYlRx44dtWDBAkI34GF0LwfgcTt37tQll1xSLHBLUnh4eLFt77zzjrp27aqgoCDVr19fI0aM0O7du237+/Tpo+XLl+uPP/6wdScsesI1f/58XXLJJQoODtZFF12kbt26adGiRaXW78CBA6pVq5ZmzZpVbN+2bdtkMpn0wgsvSDrXrXPWrFlq27at6tSpowYNGuiqq67SypUrnXhF7GVmZmrNmjUaMWKERowYoV27dmnt2rW2/Q888IDq1q2r3NzcYve97bbbFBERoYKCAtu2zz//XL169VJISIhCQ0M1cOBAbdmyxe5+o0ePVt26dbVz505df/31Cg0N1R133CFJWrNmjW655RZFRUUpMDBQzZs315QpU0rsKv3hhx+qQ4cOqlOnjjp27KglS5Zo9OjRxU6ArVar5s2bp0suuUR16tRR48aNNW7cOB07dqzCr1vhSeauXbuUn5+vRx55RF27dlVYWJhCQkLUq1cvff3113b3KTrOc968eWrdurUCAwP10ksv6fLLL5ck3X333Q51U50zZ45OnDihN954wy5wF2rTpo0mTZpku3327Fn961//sj1mdHS0/u///k95eXl29yttbHJ0dLRdS/WCBQtkMpn03XffaerUqWrUqJFCQkJ0880369ChQ3b327Jli1avXm17XmWNU16/fr2WL1+uMWPGFAvckhQYGFhsnOyqVatsn7l69erppptuKjZMonCYwK+//qrbb79dF110ka666ipbHQcNGqQVK1aoW7duCgoK0quvvirp3NCLyZMnq3nz5goMDFSbNm3073//u9wLJX/88Yf++te/ql27dgoKClKDBg10yy232IWxBQsW6JZbbpEkXXPNNbbXJyUlRVLJY7oPHjyoMWPGqHHjxqpTp44uvfRSLVy40K5M0c/Za6+9ZnvPL7/8cv3www9l1ls617U/OTlZ/fr1s9u+Z88evfHGG7r22mvtAnehCRMm6JprrtHrr7+uPXv2SJI6duyoa665plhZq9WqZs2aadiwYXbbHPmelvV+vfnmm7r22msVHh6uwMBAdejQoUovAJTEkfdg69atGjZsmOrXr686deqoW7du+vTTT+3KFH7nvv32W/3tb39To0aNVK9ePY0bN075+fk6fvy4Ro4cqYsuukgXXXSRHnroIRmGYXcMR1/jH3/8UXFxcWrYsKGCgoLUsmVL3XPPPcXq3b9/fy1durTY4wCoWrR0A/C4Fi1aKDU1VZs3b1bHjh3LLPvkk0/qn//8p4YPH657771Xhw4d0vz589W7d2/9/PPPqlevnv7xj38oOztbe/bs0dy5cyXJNubxv//9r/72t79p2LBhmjRpkk6fPq1NmzZp/fr1uv3220t8zMaNG+vqq69WYmKiHn30Ubt9H3zwgfz9/W0n5o899phmz56te++9V1dccYUsFot+/PFH/fTTT+rfv3+FXp/33ntPISEhGjRokIKCgtS6dWu9++67ti6St956q1588UVbV+ZCubm5Wrp0qUaPHi1/f39J0ttvv61Ro0YpLi5O//73v5Wbm6uXX35ZV111lX7++We7MHz27FnFxcXpqquu0n/+8x8FBwdLOhekc3NzNX78eDVo0EDff/+95s+frz179ujDDz+03X/58uW69dZb1alTJ82ePVvHjh3TmDFjirXMSdK4ceO0YMEC3X333frb3/6mXbt26YUXXtDPP/+s7777TrVr13b6ddu5c6ekc2MbLRaLXn/9dd12220aO3ascnJy9MYbbyguLk7ff/99se7ib775pk6fPq377rtPgYGBuvnmm5WTk6NHHnlE9913n3r16iWp7G6qS5cuVatWrRzuynrvvfdq4cKFGjZsmB588EGtX79es2fPVnp6upYsWeL08y80ceJEXXTRRXr00UeVkZGhefPm6YEHHtAHH3wg6VyX3MJxwYUt1I0bNy71eIVB46677nLo8b/88ktdd911atWqlR577DGdOnVK8+fP15VXXqmffvqp2AWYW265RW3bttVTTz1lFxS2bdum2267TePGjdPYsWPVrl075ebm6uqrr9bevXs1btw4RUVFae3atZo5c6b2799f5rwOP/zwg9auXasRI0YoMjJSGRkZevnll9WnTx/9+uuvCg4OVu/evfW3v/1Nzz//vP7v//5PMTExkmT774VOnTqlPn36aMeOHXrggQfUsmVLffjhhxo9erSOHz9ud5FFOjcMJicnR+PGjZPJZNKcOXM0ZMgQ/f7772V+5jds2KD8/Hx16dLFbvvnn3+ugoICjRw5stT7jhw5Ul9//bWSk5N177336tZbb9Vjjz2mrKwsRURE2Mp9++232rdvn0aMGGHb5sz3tKT3Szo3DOSSSy7RjTfeqFq1amnp0qX661//KqvVqgkTJpRab3dx5D3YsmWLrVfB3//+d4WEhCgxMVGDBw/WRx99pJtvvtnumBMnTlRERIRmzZqldevW6bXXXlO9evW0du1aRUVF6amnntJnn32mZ555Rh07drR7vxx5jQ8ePKgBAwaoUaNG+vvf/6569eopIyNDSUlJxZ5f165dNXfuXG3ZsqXcf18BuJEBAB72xRdfGP7+/oa/v78RGxtrPPTQQ8aKFSuM/Px8u3IZGRmGv7+/8eSTT9ptT0tLM2rVqmW3feDAgUaLFi2KPdZNN91kXHLJJU7X8dVXXzUkGWlpaXbbO3ToYFx77bW225deeqkxcOBAp49flk6dOhl33HGH7fb//d//GQ0bNjTOnDljGIZhWK1Wo1mzZsbQoUPt7peYmGhIMr755hvDMAwjJyfHqFevnjF27Fi7cllZWUZYWJjd9lGjRhmSjL///e/F6pObm1ts2+zZsw2TyWT88ccfdvWOjIw0cnJybNtSUlIMSXbvzZo1awxJxrvvvmt3zOTk5BK3X+jRRx81JBnbtm0zDh06ZOzatct49dVXjcDAQKNx48bGyZMnjbNnzxp5eXl29zt27JjRuHFj45577rFt27VrlyHJMJvNxsGDB+3K//DDD4Yk48033yyzPoZhGNnZ2YYk46abbiq3rGEYxsaNGw1Jxr333mu3fdq0aYYkY9WqVbZtkoxHH3202DFatGhhjBo1ynb7zTffNCQZ/fr1M6xWq237lClTDH9/f+P48eO2bZdccolx9dVXO1TXm2++2ZBkHDt2zKHyl112mREeHm4cOXLEtu2XX34x/Pz8jJEjR9q2Fb6Pt912W4nPTZKRnJxst/1f//qXERISYvz222922//+978b/v7+RmZmpm3bha9bSZ/j1NRUQ5Lx1ltv2bZ9+OGHhiTj66+/Llb+6quvtnvd5s2bZ0gy3nnnHdu2/Px8IzY21qhbt65hsVgMw/jzc9agQQPj6NGjtrKffPKJIclYunRpsccq6vXXXy/x92jy5MmGJOPnn38u9b4//fSTIcmYOnWqYRiGsW3bNkOSMX/+fLtyf/3rX426devaXidnvqelvV+GUfLrHhcXZ7Rq1cpu24WvbeFr5sj3r9AzzzxjSDJ27dpVbJ8z70Hfvn2NTp06GadPn7Zts1qtRs+ePY22bdvathV+5+Li4uy+c7GxsYbJZDLuv/9+27azZ88akZGRds/R0dd4yZIlhiTjhx9+KPc1WLt2rSHJ+OCDD8otC8B96F4OwOP69++v1NRU3Xjjjfrll180Z84cxcXFqVmzZnbd95KSkmS1WjV8+HAdPnzY9hcREaG2bdsW6ypcknr16mnPnj0OdeEsasiQIapVq5atdVCSNm/erF9//VW33nqr3fG3bNmi7du3O3X80mzatElpaWm67bbbbNtuu+02HT58WCtWrJB0rrvxLbfcos8++8xuEqEPPvhAzZo1s3XRXblypY4fP267f+Gfv7+/unfvXuLrN378+GLbio7LPHnypA4fPqyePXvKMAz9/PPPks5NOpaWlqaRI0fazax89dVXq1OnTnbH+/DDDxUWFqb+/fvb1atr166qW7euQ++rJLVr106NGjVSy5YtNW7cOLVp00bLly9XcHCw/P39beNvrVarjh49qrNnz6pbt2766aefih1r6NChatSokUOPW5LCWdNDQ0MdKl+4rM/UqVPttj/44IOSVKmx3/fdd5/dRHK9evVSQUGB/vjjjwodz5nntn//fm3cuFGjR49W/fr1bds7d+6s/v37l7ic0f3331/isVq2bKm4uDi7bR9++KF69eqliy66yO6z069fPxUUFOibb74ptW5FP8dnzpzRkSNH1KZNG9WrV6/Ez4QjPvvsM0VERNh9X2vXrq2//e1vOnHihFavXm1X/tZbb9VFF11ku13Yg+L3338v83GOHDkiSXb3laScnBxJZb83hfsK38eLL75Yl112md1vW0FBgRYvXqwbbrjB9jo5+z0t6f2S7F/37OxsHT58WFdffbV+//13ZWdnl/m83aG89+Do0aNatWqVhg8frpycHNvzPnLkiOLi4rR9+3bt3bvX7phjxoyx+851795dhmFozJgxtm3+/v7q1q2b3Xvt6GtcOBRr2bJl5c5GX/jcDh8+7OxLA8CFCN0AvMLll1+upKQkHTt2TN9//71mzpypnJwcDRs2TL/++qskafv27TIMQ23btlWjRo3s/tLT0x2adG3GjBmqW7eurrjiCrVt21YTJkzQd999V+79GjZsqL59+yoxMdG27YMPPlCtWrU0ZMgQ27bHH39cx48f18UXX6xOnTpp+vTp2rRpUwVekXPeeecdhYSEqFWrVtqxY4d27NihOnXqKDo6Wu+++66t3K233qpTp07ZLlKcOHFCn332mW655RbbyV/hhYBrr7222Ov3xRdfFHv9atWqpcjIyGJ1yszMtIWounXrqlGjRrr66qslyXbSXBjo2rRpU+z+F27bvn27srOzFR4eXqxeJ06ccHgyvY8++kgrV65USkqKduzYoc2bN6tr1662/QsXLlTnzp1tY+0bNWqk5cuXl3ii37JlS4ceszRms1nSnyGoPH/88Yf8/PyKvTYRERGqV69ehQOyJEVFRdndLjwJr+h4eWeeW2G9C7sWFxUTE6PDhw/r5MmTdttLe+1L2r59+3YlJycX+9wUjnUu67Nz6tQpPfLII7ax4A0bNlSjRo10/PjxCoe/P/74Q23btpWfn/3pVWF39Avfx8q+N8YF43QLA3VZ701JwfzWW2/Vd999ZwuPKSkpOnjwoN0FRWe/p6W9j99995369etnG9/fqFEj/d///Z8keSR0l/ce7NixQ4Zh6J///Gex51043OjC537hMcPCwiRJzZs3L7a96Hvt6Gt89dVXa+jQoZo1a5YaNmyom266SW+++Wax+R+kPz8jrljBAUDFMaYbgFcJCAjQ5Zdfrssvv1wXX3yx7r77bn344Yd69NFHZbVaZTKZ9Pnnn9vGKBd14Vq1JYmJidG2bdu0bNkyJScn66OPPtJLL72kRx55pMSJ0ooaMWKE7r77bm3cuFGXXXaZEhMT1bdvX7ulaHr37q2dO3fqk08+0RdffKHXX39dc+fO1SuvvKJ7773XqdfCMAy99957OnnypDp06FBs/8GDB3XixAnVrVtXPXr0UHR0tBITE3X77bdr6dKlOnXqlN1Jc+HEUm+//bbd2M1CtWrZ/5MQGBhYLDwUFBSof//+Onr0qGbMmKH27dsrJCREe/fu1ejRoys0y7fValV4eLjdRYSiHG1x7t27t917UdQ777yj0aNHa/DgwZo+fbrCw8Pl7++v2bNn28Z+F1XZWZbNZrOaNm2qzZs3O3W/ypwYF50sr6iSvitS8cDmqPbt20uS0tLSbK2CrlTaa1/SdqvVqv79++uhhx4q8T4XX3xxqY8zceJEvfnmm5o8ebJiY2MVFhYmk8mkESNGVOhzXBEVfW8aNGgg6VwwLHphrDDcb9q0qdRl7QovAhb9Tbn11ls1c+ZMffjhh5o8ebISExMVFham+Ph4Wxlnv6clvV87d+5U37591b59ez333HNq3ry5AgIC9Nlnn2nu3LlV9roXVd57UFinadOmldhyLxW/kFjaMUvaXvS9dvQ1NplMWrx4sdatW6elS5dqxYoVuueee/Tss89q3bp1dv8WFob60n4bAVQNQjcAr9WtWzdJ57qoSlLr1q1lGIZatmxZ5sm0VHZ4CQkJ0a233qpbb71V+fn5GjJkiJ588knNnDlTderUKfV+gwcP1rhx42zdMH/77TfNnDmzWLn69evr7rvv1t13360TJ06od+/eeuyxx5wO3atXr9aePXv0+OOPF5u46dixY7rvvvv08ccf684775QkDR8+XAkJCbJYLPrggw8UHR2tHj162O7TunVrSedmhL9w1mNHpaWl6bffftPChQvtJv+5cHb2Fi1aSDrXSnShC7e1bt1aX375pa688kq3LSm0ePFitWrVSklJSXafjQsnxiuLs4F40KBBeu2115SamlrukmUtWrSQ1WrV9u3b7d7rAwcO6Pjx47bXUzrXEnf8+HG7++fn59u+JxXhzHO74YYbNHv2bL3zzjvlhu7Cem/btq3Yvq1bt6phw4aVWoaudevWOnHiRIU+z4sXL9aoUaP07LPP2radPn262GvrzGvTokULbdq0SVar1e6C1datW237XaHwwseuXbvshmtcd9118vf319tvv13qZGpvvfWWatWqZReoW7ZsqSuuuEIffPCBHnjgASUlJWnw4MEKDAy0lXHF93Tp0qXKy8vTp59+atca7OgQEk9o1aqVpHPDBCr6u+koZ1/jHj16qEePHnryySe1aNEi3XHHHXr//fft/q3ZtWuXpNIn/wNQNeheDsDjvv766xJbdgrHexZ2TR0yZIj8/f01a9asYuUNw7CNc5TOBeuSuioWLSOda1nv0KGDDMMod2xcvXr1FBcXp8TERL3//vsKCAgoti7shcevW7eu2rRpY9ftLzs7W1u3bi23K2Vh1/Lp06dr2LBhdn9jx45V27Zti3Uxz8vL08KFC5WcnKzhw4fbHS8uLk5ms1lPPfVUic+16DJSpSlsqSn6+huGoYSEBLtyTZs2VceOHfXWW2/ZjTNfvXq10tLS7MoOHz5cBQUF+te//lXs8c6ePVssBFVESfVev369UlNTHT5GYTh0tD4PPfSQQkJCdO+99+rAgQPF9u/cudP2ul1//fWSVGy27eeee06SNHDgQNu21q1bFxur/Nprr5Xa0u2IkJAQh59XbGys4uPj9frrr+vjjz8utj8/P1/Tpk2TJDVp0kSXXXaZFi5caHf8zZs364svvrA974oaPny4UlNTbfMbFHX8+HGdPXu21Pv6+/sX+x2ZP39+sdfRmff9+uuvV1ZWlt346LNnz2r+/PmqW7eubRhGZXXt2lUBAQH68ccf7bY3b95cd999t7788ssSl+F65ZVXtGrVKo0ZM6bY0JFbb71V69at0//+9z8dPnzYrpeM5JrvaUnfw+zsbL355pvl3tdTwsPD1adPH7366qslXthy5HfTUY6+xseOHSv22S3s2XBhF/MNGzYoLCxMl1xyicvqCcB5tHQD8LiJEycqNzdXN998s9q3b6/8/HytXbvW1lp79913SzoXNp544gnNnDlTGRkZGjx4sEJDQ7Vr1y4tWbJE9913n+1kv2vXrvrggw80depUXX755apbt65uuOEGDRgwQBEREbryyivVuHFjpaen64UXXtDAgQMdmhjq1ltv1Z133qmXXnpJcXFxxdYW79Chg/r06aOuXbuqfv36+vHHH7V48WK7NXOXLFmiu+++W2+++abduspF5eXl6aOPPlL//v1LbX2/8cYblZCQoIMHDyo8PFxdunRRmzZt9I9//EN5eXnFTprNZrNefvll3XXXXerSpYtGjBihRo0aKTMzU8uXL9eVV15pW2+8NO3bt1fr1q01bdo07d27V2azWR999FGJY1Cfeuop3XTTTbryyit1991369ixY3rhhRfUsWNHuyB+9dVXa9y4cZo9e7Y2btyoAQMGqHbt2tq+fbs+/PBDJSQk2K0VXBGDBg1SUlKSbr75Zg0cOFC7du3SK6+8og4dOtjVpSytW7dWvXr19Morryg0NFQhISHq3r17qWNXW7durUWLFunWW29VTEyMRo4cqY4dO9o+34VLSUnSpZdeqlGjRum1117T8ePHdfXVV+v777/XwoULNXjwYLt1lO+9917df//9Gjp0qPr3769ffvlFK1asqFT30a5du+rll1/WE088oTZt2ig8PNy2znlJ3nrrLQ0YMEBDhgzRDTfcoL59+yokJETbt2/X+++/r/3799vW6n7mmWd03XXXKTY2VmPGjLEtGRYWFlbieuPOmD59uj799FMNGjRIo0ePVteuXXXy5EmlpaVp8eLFysjIKPV1GTRokN5++22FhYWpQ4cOSk1N1Zdffmnrul3osssuk7+/v/79738rOztbgYGBtnWmL3Tffffp1Vdf1ejRo7VhwwZFR0dr8eLF+u677zRv3jyHJ9YrT506dTRgwAB9+eWXevzxx+32zZ07V1u3btVf//pXJScn21q0V6xYoU8++URXX321Xet+oeHDh2vatGmaNm2a6tevX6xV1xXf0wEDBiggIEA33HCDxo0bpxMnTui///2vwsPDK9VTw91efPFFXXXVVerUqZPGjh2rVq1a6cCBA0pNTdWePXv0yy+/uORxHH2NFy5cqJdeekk333yzWrdurZycHP33v/+V2WwudiFr5cqVuuGGGxjTDXhaVU6VDgAl+fzzz4177rnHaN++vVG3bl0jICDAaNOmjTFx4kTjwIEDxcp/9NFHxlVXXWWEhIQYISEhRvv27Y0JEyYY27Zts5U5ceKEcfvttxv16tWzW6Lq1VdfNXr37m00aNDACAwMNFq3bm1Mnz7dyM7OdqiuFovFCAoKKrYsUKEnnnjCuOKKK4x69eoZQUFBRvv27Y0nn3zSbvmzwmVlylr65qOPPjIkGW+88UapZQqX30pISLBt+8c//mFIMtq0aVPq/b7++msjLi7OCAsLM+rUqWO0bt3aGD16tPHjjz/ayowaNcoICQkp8f6//vqr0a9fP6Nu3bpGw4YNjbFjxxq//PJLic/p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T6+//ro2bNjg0iXE4uPjNWTIELVs2VI7d+7U//3f/+m6665Tamqq/P39lZWVpfDwcLv71KpVS/Xr11dWVpYkKSsrSy1btrQr07hxY9u+iy66qNjjzp49W7NmzXLZ86hq1gKrMtdkKmd/jkKbhCqqV5T8/Cs1fB8AAAAAUAFOh+5C33zzjd544w199NFHatq0qYYMGVLm2OyKGDFihO3/O3XqpM6dO6t169ZKSUlR3759XfpYRc2cOVNTp0613bZYLGrevLnbHs+V0pPSlTwpWZY9f7bOmyPNik+IV8yQGA/WDAAAAABqHqdCd1ZWlhYsWKA33nhDFotFw4cPV15enj7++GN16NDBXXW0adWqlRo2bKgdO3aob9++ioiI0MGDB+3KnD17VkePHrWNA4+IiNCBAwfsyhTeLm2seGBgoAIDA93wDNwrPSldicMSpQsWgbPssShxWKKGLx5O8AYAAACAKuRwn+MbbrhB7dq106ZNmzRv3jzt27dP8+fPd2fditmzZ4+OHDmiJk2aSJJiY2N1/PhxbdiwwVZm1apVslqt6t69u63MN998ozNnztjKrFy5Uu3atSuxa7mvshZYlTwpuVjgtjGk5MnJshZYq7ReAAAAAFCTORy6P//8c40ZM0azZs3SwIED5e/vX+kHP3HihDZu3KiNGzdKknbt2qWNGzcqMzNTJ06c0PTp07Vu3TplZGToq6++0k033aQ2bdooLi5OkhQTE6P4+HiNHTtW33//vb777js98MADGjFihJo2bSpJuv322xUQEKAxY8Zoy5Yt+uCDD5SQkGDXfbw6yFyTadelvCSW3RZlrsmsohoBAAAAABwO3d9++61ycnLUtWtXde/eXS+88IIOHz5cqQf/8ccf9Ze//EV/+ctfJElTp07VX/7yFz3yyCPy9/fXpk2bdOONN+riiy/WmDFj1LVrV61Zs8au6/e7776r9u3bq2/fvrr++ut11VVX2a3BHRYWpi+++EK7du1S165d9eCDD+qRRx6pdsuFWfY6NsO6o+UAAAAAAJVnMgyjtA7JJTp58qQ++OAD/e9//9P333+vgoICPffcc7rnnnsUGhrqrnp6lMViUVhYmLKzs2U2mz1dnRKtm7dOK6asKLdc3Nw49ZjcowpqBAAAAADVl6M50el1pEJCQnTPPffo22+/VVpamh588EE9/fTTCg8P1403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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import pymysql\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Connect to the MySQL database\n", + "connection = pymysql.connect(\n", + " host='localhost', # Your MySQL server address\n", + " user='root', # Your MySQL username\n", + " password='Apfelsaft_1', # Your MySQL password\n", + " db='lego', # The database you're working with\n", + " cursorclass=pymysql.cursors.DictCursor\n", + ")\n", + "\n", + "# Query to analyze correlation between number of sets and average part count per overall theme\n", + "query = \"\"\"\n", + " SELECT \n", + " t.parent_id,\n", + " t.name AS theme_name,\n", + " COUNT(s.set_num) AS num_sets,\n", + " AVG(s.num_parts) AS avg_part_count\n", + " FROM \n", + " sets s\n", + " JOIN \n", + " themes t ON s.theme_id = t.id\n", + " GROUP BY \n", + " t.parent_id, t.name;\n", + "\"\"\"\n", + "\n", + "# Fetch data\n", + "with connection.cursor() as cursor:\n", + " cursor.execute(query)\n", + " result = cursor.fetchall()\n", + "\n", + "# Convert to DataFrame\n", + "df_correlation = pd.DataFrame(result)\n", + "\n", + "# Visualization\n", + "plt.figure(figsize=(10, 6))\n", + "plt.scatter(df_correlation['num_sets'], df_correlation['avg_part_count'], color='purple')\n", + "plt.title('Sets vs. Average Part Count Correlation (Overall Themes)')\n", + "plt.xlabel('Number of Sets')\n", + "plt.ylabel('Average Part Count')\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# Close the connection\n", + "connection.close()\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.6" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/cal.png b/cal.png new file mode 100644 index 0000000..b9af256 Binary files /dev/null and b/cal.png differ diff --git a/colors.csv b/colors.csv new file mode 100644 index 0000000..6941b20 --- /dev/null +++ b/colors.csv @@ -0,0 +1,136 @@ +id,name,rgb,is_trans +-1,Unknown,0033B2,f +0,Black,05131D,f +1,Blue,0055BF,f +2,Green,237841,f +3,Dark Turquoise,008F9B,f +4,Red,C91A09,f +5,Dark Pink,C870A0,f +6,Brown,583927,f +7,Light Gray,9BA19D,f +8,Dark Gray,6D6E5C,f +9,Light Blue,B4D2E3,f +10,Bright Green,4B9F4A,f +11,Light Turquoise,55A5AF,f +12,Salmon,F2705E,f +13,Pink,FC97AC,f +14,Yellow,F2CD37,f +15,White,FFFFFF,f +17,Light Green,C2DAB8,f +18,Light Yellow,FBE696,f +19,Tan,E4CD9E,f +20,Light Violet,C9CAE2,f +21,Glow In Dark Opaque,D4D5C9,f +22,Purple,81007B,f +23,Dark Blue-Violet,2032B0,f +25,Orange,FE8A18,f +26,Magenta,923978,f +27,Lime,BBE90B,f +28,Dark Tan,958A73,f +29,Bright Pink,E4ADC8,f +30,Medium Lavender,AC78BA,f +31,Lavender,E1D5ED,f +32,Trans-Black IR Lens,635F52,t +33,Trans-Dark Blue,0020A0,t +34,Trans-Green,84B68D,t +35,Trans-Bright Green,D9E4A7,t +36,Trans-Red,C91A09,t +40,Trans-Black,635F52,t +41,Trans-Light Blue,AEEFEC,t +42,Trans-Neon Green,F8F184,t +43,Trans-Very Lt Blue,C1DFF0,t +45,Trans-Dark Pink,DF6695,t +46,Trans-Yellow,F5CD2F,t +47,Trans-Clear,FCFCFC,t +52,Trans-Purple,A5A5CB,t +54,Trans-Neon Yellow,DAB000,t +57,Trans-Neon Orange,FF800D,t +60,Chrome Antique Brass,645A4C,f +61,Chrome Blue,6C96BF,f +62,Chrome Green,3CB371,f +63,Chrome Pink,AA4D8E,f +64,Chrome Black,1B2A34,f +68,Very Light Orange,F3CF9B,f +69,Light Purple,CD6298,f +70,Reddish Brown,582A12,f +71,Light Bluish Gray,A0A5A9,f +72,Dark Bluish Gray,6C6E68,f +73,Medium Blue,5A93DB,f +74,Medium Green,73DCA1,f +75,Speckle Black-Copper,000000,f +76,Speckle DBGray-Silver,635F61,f +77,Light Pink,FECCCF,f +78,Light Flesh,F6D7B3,f +79,Milky White,FFFFFF,f +80,Metallic Silver,A5A9B4,f +81,Metallic Green,899B5F,f +82,Metallic Gold,DBAC34,f +84,Medium Dark Flesh,CC702A,f +85,Dark Purple,3F3691,f +86,Dark Flesh,7C503A,f +89,Royal Blue,4C61DB,f +92,Flesh,D09168,f +100,Light Salmon,FEBABD,f +110,Violet,4354A3,f +112,Blue-Violet,6874CA,f +114,Glitter Trans-Dark Pink,DF6695,t +115,Medium Lime,C7D23C,f +117,Glitter Trans-Clear,FFFFFF,t +118,Aqua,B3D7D1,f +120,Light Lime,D9E4A7,f +125,Light Orange,F9BA61,f +129,Glitter Trans-Purple,A5A5CB,t +132,Speckle Black-Silver,000000,f +133,Speckle Black-Gold,000000,f +134,Copper,AE7A59,f +135,Pearl Light Gray,9CA3A8,f +137,Metal Blue,7988A1,f +142,Pearl Light Gold,DCBC81,f +143,Trans-Medium Blue,CFE2F7,t +148,Pearl Dark Gray,575857,f +150,Pearl Very Light Gray,ABADAC,f +151,Very Light Bluish Gray,E6E3E0,f +158,Yellowish Green,DFEEA5,f +178,Flat Dark Gold,B48455,f +179,Flat Silver,898788,f +182,Trans-Orange,F08F1C,t +183,Pearl White,F2F3F2,f +191,Bright Light Orange,F8BB3D,f +212,Bright Light Blue,9FC3E9,f +216,Rust,B31004,f +226,Bright Light Yellow,FFF03A,f +230,Trans-Pink,E4ADC8,t +232,Sky Blue,7DBFDD,f +236,Trans-Light Purple,96709F,t +272,Dark Blue,0A3463,f +288,Dark Green,184632,f +294,Glow In Dark Trans,BDC6AD,t +297,Pearl Gold,AA7F2E,f +308,Dark Brown,352100,f +313,Maersk Blue,3592C3,f +320,Dark Red,720E0F,f +321,Dark Azure,078BC9,f +322,Medium Azure,36AEBF,f +323,Light Aqua,ADC3C0,f +326,Olive Green,9B9A5A,f +334,Chrome Gold,BBA53D,f +335,Sand Red,D67572,f +351,Medium Dark Pink,F785B1,f +366,Earth Orange,FA9C1C,f +373,Sand Purple,845E84,f +378,Sand Green,A0BCAC,f +379,Sand Blue,6074A1,f +383,Chrome Silver,E0E0E0,f +450,Fabuland Brown,B67B50,f +462,Medium Orange,FFA70B,f +484,Dark Orange,A95500,f +503,Very Light Gray,E6E3DA,f +1000,Glow in Dark White,D9D9D9,f +1001,Medium Violet,9391E4,f +1002,Glitter Trans-Neon Green,C0F500,t +1003,Glitter Trans-Light Blue,68BCC5,t +1004,Trans Flame Yellowish Orange,FCB76D,t +1005,Trans Fire Yellow,FBE890,t +1006,Trans Light Royal Blue,B4D4F7,t +1007,Reddish Lilac,8E5597,f +9999,[No Color],05131D,f diff --git a/create.sql b/create.sql new file mode 100644 index 0000000..f8696f1 --- /dev/null +++ b/create.sql @@ -0,0 +1,79 @@ +-- DROP IF EXISTS +DROP DATABASE IF EXISTS lego; +-- Create the database +CREATE DATABASE lego; + +-- Use the created database +USE lego; + +-- Create table for part_categories +CREATE TABLE part_categories ( + id INT PRIMARY KEY, + name VARCHAR(255) NOT NULL +); + +-- Create table for parts +CREATE TABLE parts ( + part_num VARCHAR(50) PRIMARY KEY, + name VARCHAR(255), + part_cat_id INT, + FOREIGN KEY (part_cat_id) REFERENCES part_categories(id) +); + +-- Create table for themes +CREATE TABLE themes ( + id INT PRIMARY KEY, + name VARCHAR(255), + parent_id INT NULL -- Allow NULL values for parent_id +); + +-- Create table for colors +CREATE TABLE colors ( + id INT PRIMARY KEY, + name VARCHAR(255), + rgb VARCHAR(6), + is_trans BOOLEAN +); + +-- Create table for sets +CREATE TABLE sets ( + set_num VARCHAR(50) PRIMARY KEY, + name VARCHAR(255), + year INT, + theme_id INT, + num_parts INT, + FOREIGN KEY (theme_id) REFERENCES themes(id) +); + + + +-- Create table for inventories +CREATE TABLE inventories ( + id INT PRIMARY KEY, + version INT, + set_num VARCHAR(50), + FOREIGN KEY (set_num) REFERENCES sets(set_num) +); + +-- Create table for inventory_parts +CREATE TABLE inventory_parts ( + inventory_id INT, + part_num VARCHAR(50), + color_id INT, + quantity INT, + is_spare BOOLEAN, + PRIMARY KEY (inventory_id, part_num, color_id), + FOREIGN KEY (inventory_id) REFERENCES inventories(id), + FOREIGN KEY (part_num) REFERENCES parts(part_num), + FOREIGN KEY (color_id) REFERENCES colors(id) +); + +-- Create table for inventory_sets +CREATE TABLE inventory_sets ( + inventory_id INT, + set_num VARCHAR(50), + quantity INT, + PRIMARY KEY (inventory_id, set_num), + FOREIGN KEY (inventory_id) REFERENCES inventories(id), + FOREIGN KEY (set_num) REFERENCES sets(set_num) +); diff --git a/downloads_schema.png b/downloads_schema.png new file mode 100644 index 0000000..a8c5447 Binary files /dev/null and b/downloads_schema.png differ diff --git a/inventories.csv b/inventories.csv new file mode 100644 index 0000000..784316a --- /dev/null +++ b/inventories.csv @@ -0,0 +1,11682 @@ +id,version,set_num +1,1,7922-1 +3,1,3931-1 +4,1,6942-1 +15,1,5158-1 +16,1,903-1 +17,1,850950-1 +19,1,4444-1 +21,1,3474-1 +22,1,30277-1 +25,1,71012-11 +26,1,6435-1 +27,1,3055-1 +28,1,7899-1 +29,1,1076-3 +30,1,40107-1 +31,1,14-4 +32,1,4024-21 +33,1,6356-1 +34,1,71017-20 +35,1,5004559-1 +36,1,1756-1 +37,1,8931-1 +38,1,9385-1 +39,1,66512-1 +40,1,6963-1 +42,1,850760-1 +43,1,2000424-1 +45,1,40109-1 +49,1,10071-1 +50,1,K4520-1 +51,1,7904-22 +52,1,6378-1 +54,1,4284-1 +55,1,6711-1 +56,1,4768-2 +58,1,75060-1 +60,1,1390-1 +61,1,10128-1 +62,1,30300-1 +63,1,6981-1 +64,1,6424-1 +65,1,5920-1 +67,1,6577-1 +68,1,8103-1 +69,1,2850829-1 +70,1,483-5 +71,1,K7690-1 +73,1,70812-1 +74,1,6913-1 +76,1,10189-1 +80,1,5827-1 +81,1,65340-1 +82,1,4309-1 +83,1,4888-1 +84,1,6909-1 +86,1,525-1 +87,1,5001925-1 +88,1,6455-1 +89,1,75094-1 +91,1,9483-1 +92,1,6386-1 +94,1,8108-1 +95,1,7575-18 +96,1,10008-1 +98,1,2856226-1 +99,1,521-15 +100,1,71217-1 +101,1,8302-1 +102,1,8803-5 +103,1,4411-1 +104,1,K4103-1 +105,1,6579-1 +106,1,71007-6 +110,1,657-1 +111,1,991451-1 +112,1,4748-1 +113,1,3027-1 +115,1,6167-1 +116,1,561508-1 +118,1,4449-1 +119,1,323-1 +122,1,66177-1 +123,1,41135-1 +125,1,2158-1 +126,1,970654-1 +127,1,2156-1 +128,1,4094-1 +131,1,66358-1 +132,1,6523-1 +136,1,8223-1 +137,1,30301-1 +138,1,520-13 +140,1,508-1 +142,1,3420-1 +143,1,7138-1 +145,1,41562-1 +146,1,18703535-1 +147,1,1141-1 +148,1,76008-1 +151,1,7048-1 +152,1,76015-1 +153,1,60018-1 +154,1,3859-1 +155,1,10175-1 +158,1,702-3 +159,1,7740-1 +162,1,5645-1 +163,1,30314-1 +164,1,238-1 +165,1,2852724-1 +166,1,6745-1 +168,1,1701-1 +169,1,6299-13 +170,1,8831-0 +171,1,610-1 +172,1,8678-1 +173,1,41065-1 +174,1,30286-1 +175,1,8622-1 +177,1,8121-1 +179,1,1413-1 +180,1,7511-1 +182,1,8833-7 +183,1,435-1 +185,1,7904-20 +186,1,60134-1 +187,1,9749-1 +188,1,21206-1 +190,1,2824-18 +191,1,4559387-1 +192,1,5831-1 +193,1,4024-15 +194,1,comcon017-1 +196,1,7553-20 +197,1,9871-1 +198,1,21017-1 +199,1,70209-1 +203,1,Austin-1 +204,1,20205-1 +206,1,5974-1 +207,1,40092-1 +208,1,342-1 +209,1,970600-1 +210,1,6395-1 +211,1,1136-1 +212,1,6585-1 +214,1,3715-1 +215,1,7875-1 +216,1,1089-1 +217,1,6328-1 +218,1,60034-1 +220,1,2848-1 +221,1,1248-1 +222,1,8240-1 +224,1,71017-1 +225,1,5391-1 +226,1,LOC391412-1 +227,1,7979-3 +228,1,7907-9 +229,1,1966-1 +232,1,2152-1 +233,1,30281-1 +234,1,75046-1 +236,1,40080-1 +238,1,6695-1 +239,1,21114-1 +240,1,1821-1 +241,1,7687-15 +242,1,6118-1 +243,1,71220-1 +245,1,7662-1 +246,1,4098-1 +248,1,20019-1 +250,1,5808-1 +251,1,3886-3 +253,1,5004267-1 +254,1,8812-1 +255,1,60024-3 +256,1,630-1 +258,1,8683-4 +259,1,70137-1 +262,1,7953-1 +263,1,7575-1 +265,1,Nuremberg-1 +267,1,40204-1 +268,1,6007-1 +269,1,60067-1 +272,1,10528-1 +274,1,31-2 +275,1,C001-1 +276,1,8684-3 +279,1,21008-1 +280,1,9614-1 +282,1,850935-1 +284,1,588-1 +285,1,851003-1 +286,1,75056-12 +293,1,4696-1 +294,1,71005-4 +295,1,lfv2-1 +297,1,10700-1 +299,1,71236-1 +300,1,3482-1 +301,1,1462-1 +302,1,75033-1 +303,1,6825-1 +304,1,6687-1 +305,1,6299-1 +307,1,3746-1 +308,1,4653-1 +309,1,K4515-1 +310,1,5036-1 +311,1,10201-1 +312,1,2250-1 +313,1,7885-1 +315,1,816-1 +316,1,20208-1 +317,1,9-2 +319,1,6479-1 +321,1,3641-1 +322,1,221-2 +323,1,8010-1 +324,1,39-1 +325,1,3300014-1 +326,1,1294-1 +327,1,7216-1 +328,1,4416-1 +330,1,10222-1 +331,1,954-1 +332,1,4758-1 +333,1,813-1 +334,1,71011-9 +335,1,659-1 +336,1,10680-1 +337,1,1499-1 +338,1,8942-2 +345,1,40021-1 +347,1,911618-1 +348,1,7165-1 +349,1,9462-1 +350,1,6989-1 +352,1,520-12 +353,1,5105-1 +354,1,7315-1 +355,1,4281-1 +356,1,970630-1 +357,1,9553-1 +358,1,42036-1 +361,1,970617-1 +362,1,8649-1 +363,1,837-1 +364,1,1419-1 +369,1,71005-15 +371,1,8593-1 +372,1,3833-1 +373,1,6734-1 +374,1,6470-1 +375,1,40082-1 +376,1,315-2 +377,1,851210-1 +378,1,71001-8 +379,1,3451-1 +380,1,9853-1 +382,1,5877-1 +384,1,9825-1 +385,1,6685-1 +387,1,41016-8 +388,1,727-1 +389,1,6758-1 +390,1,4576-1 +392,1,7219-1 +393,1,9222-1 +394,1,4551-1 +395,1,7888-1 +397,1,71014-15 +398,1,71010-17 +401,1,40195-1 +402,1,114-2 +403,1,76050-1 +404,1,7687-17 +405,1,970663-1 +406,1,8738-1 +407,1,9857-1 +408,1,7724-20 +409,1,76036-1 +410,1,3494-1 +411,1,6678-1 +412,1,70005-1 +415,1,MS1032-1 +416,1,1690-1 +419,1,7172-1 +422,1,6472-1 +423,1,60096-1 +424,1,710-6 +427,1,7957-1 +429,1,2027-1 +431,1,70707-1 +432,1,60139-1 +433,1,8083-1 +434,1,70600-1 +436,1,6969-1 +437,1,60069-1 +438,1,561511-1 +440,1,852737-1 +441,1,6247-1 +442,1,5967-1 +443,1,30190-1 +444,1,60002-1 +445,1,102A-1 +446,1,6890-1 +447,1,60144-1 +448,1,8369-1 +451,1,5166-1 +452,1,1807-1 +454,1,6212-1 +457,1,75127-1 +459,1,9089-1 +460,1,LLCA52-1 +461,1,310-5 +465,1,6077-2 +466,1,507-1 +467,1,6928-1 +468,1,79104-3 +469,1,3316-19 +470,1,310-3 +472,1,5925-1 +473,1,65813-1 +474,1,813-2 +475,1,400-1 +477,1,9677-1 +479,1,1796-1 +480,1,8028-1 +481,1,70786-1 +482,1,6038-1 +483,1,455-1 +484,1,5766-1 +485,1,750-1 +486,1,3920-1 +488,1,685-1 +489,1,4618-1 +491,1,6404-1 +492,1,312-4 +493,1,7724-2 +496,1,k34434-1 +497,1,42002-1 +498,1,6522-1 +499,1,167-1 +500,1,5001307-1 +501,1,7979-7 +502,1,40081-4 +503,1,4591715-1 +504,1,9831-1 +505,1,10228-1 +506,1,8898-1 +508,1,292-1 +509,1,41040-9 +511,1,4867-1 +512,1,8398-1 +515,1,KT105-1 +516,1,329-1 +517,1,4451-1 +518,1,6573-1 +521,1,6162-1 +523,1,8039-1 +525,1,VP-12 +526,1,7271-1 +528,1,1997-1 +531,1,214.6-1 +532,1,7111-1 +533,1,B002-1 +534,1,851005-1 +537,1,700.B.2-1 +538,1,7324-13 +539,1,9731-1 +540,1,4939-1 +541,1,10737-1 +542,1,5082-1 +544,1,10725-1 +545,1,4610-1 +546,1,41567-1 +547,1,71012-2 +549,1,3040-1 +550,1,5402-1 +551,1,4063-1 +552,1,5284-1 +554,1,7606-1 +556,1,SW911508-1 +557,1,3409-1 +558,1,21120-1 +560,1,5002045-1 +561,1,K4516-1 +563,1,2824-20 +565,1,337-1 +566,1,245-1 +567,1,70140-1 +570,1,9393-1 +571,1,7870-1 +575,1,5621-1 +576,1,71001-4 +577,1,6860-1 +578,1,5490-1 +579,1,4277206-1 +580,1,K3409-1 +581,1,70794-1 +582,1,3447-1 +583,1,6058324-1 +586,1,30121-1 +587,1,6731-1 +588,1,7687-10 +589,1,71004-6 +590,1,70206-1 +591,1,75074-1 +592,1,10059-1 +593,1,4857-1 +594,1,8903-1 +595,1,4103-2 +597,1,45303-1 +599,1,9678-1 +601,1,6361-1 +603,1,30071-1 +604,1,4876-1 +605,1,71247-1 +606,1,7952-12 +607,1,B003-1 +608,1,9826-1 +609,1,5276-1 +610,1,1610-1 +612,1,445062-1 +613,1,30229-1 +614,1,66444-1 +618,1,6389-1 +620,1,10679-1 +621,1,75059-1 +622,1,70319-1 +623,1,4541-1 +624,1,6750-1 +625,1,40005-1 +627,1,4905-1 +629,1,852997-1 +630,1,5318-1 +631,1,851441 +635,1,915-1 +637,1,7256-1 +639,1,8785483-1 +640,1,1554-1 +641,1,4210-1 +642,1,7904-17 +646,1,3225-1 +647,1,2263-1 +651,1,7724-25 +653,1,71010-2 +654,1,8601-2 +655,1,41071-1 +656,1,44025-1 +658,1,9883-1 +659,1,3383-1 +660,1,4059-1 +661,1,8652-1 +662,1,7170-2 +663,1,10048-1 +666,1,75023-8 +667,1,9868-1 +668,1,4613985-1 +671,1,TRUNINJAGO-1 +673,1,3671-1 +674,1,706-1 +676,1,30106-1 +678,1,485-2 +680,1,608-2 +681,1,60116-1 +682,1,8533-1 +685,1,7958-20 +686,1,8693-1 +687,1,75041-1 +688,1,1247-2 +690,1,445-2 +691,1,3752-1 +692,1,8448-1 +693,1,7574-3 +694,1,700.C-1 +695,1,65514-1 +696,1,2856238-1 +697,1,4586940-1 +698,1,870-1 +699,1,850998-1 +701,1,75100-1 +702,1,1118-1 +703,1,75912-1 +705,1,733-1 +706,1,7907-23 +707,1,7856-1 +708,1,65071-1 +710,1,6637-1 +712,1,7881-1 +716,1,418-2 +718,1,1239-2 +722,1,30255-1 +723,1,711-1 +725,1,9940-1 +728,1,6886-1 +731,1,6737-1 +732,1,8609-1 +734,1,60017-1 +735,1,4485-1 +736,1,60099-1 +737,1,852747-1 +738,1,7920-1 +740,1,70401-1 +741,1,619-1 +742,1,5887-1 +743,1,75056-3 +745,1,8706-1 +747,1,5961-1 +751,1,6621-1 +752,1,60143-1 +753,1,70106-1 +754,1,3815-1 +755,1,2516-1 +756,1,852769-1 +758,1,wwgp1-1 +760,1,1915-1 +761,1,808-1 +762,1,7838-1 +763,1,7235-2 +764,1,8956-1 +766,1,7958-1 +768,1,5086-1 +769,1,4659612-1 +770,1,1298-6 +771,1,7906-1 +772,1,5115-1 +773,1,7035-1 +774,1,6380-1 +775,1,1521-1 +776,1,6313-1 +777,1,7623-1 +779,1,5370a-1 +780,1,4477-1 +781,1,3316-17 +782,1,920-2 +783,1,8113-1 +784,1,9509-12 +786,1,30016-1 +788,1,7654-1 +789,1,5616-1 +791,1,4818-1 +792,1,1102-1 +793,1,2856128-1 +794,1,8501-1 +795,1,8270-1 +796,1,6042-1 +799,1,487-1 +800,1,4019-1 +801,1,7593-1 +802,1,215-2 +803,1,8680-1 +804,1,210-2 +805,1,6320-1 +806,1,918-white-2 +807,1,1877-1 +808,1,6895-1 +811,1,6471-1 +813,1,3316-22 +814,1,6718-1 +815,1,7003-1 +817,1,11905-1 +818,1,1561-2 +819,1,comcon025-1 +820,1,9699-1 +823,1,7724-13 +826,1,811-2 +827,1,8805-13 +829,1,991333-1 +830,1,5001160-1 +831,1,75131-1 +832,1,60014-1 +833,1,7635-1 +835,1,3565-1 +838,1,4402-1 +839,1,1869-1 +840,1,71002-12 +841,1,2617-1 +842,1,1271-2 +844,1,7904-8 +845,1,60123-1 +846,1,9963-1 +847,1,41519-1 +848,1,6280-1 +850,1,10747-1 +852,1,561409-1 +854,1,1777-1 +856,1,71013-6 +859,1,1067-1 +860,1,76004-1 +861,1,7587-1 +862,1,41514-1 +864,1,2250-18 +865,1,4496-2 +866,1,7344-1 +867,1,7509-1 +869,1,5104-1 +870,1,2847-1 +871,1,280-1 +874,1,704-4 +875,1,5000063-1 +878,1,75056-4 +879,1,4735-1 +881,1,6746-1 +882,1,402-3 +883,1,76071-1 +885,1,311-1 +887,1,40208-1 +888,1,3492-1 +889,1,66432-1 +890,1,2824-12 +891,1,970670-1 +893,1,3-4 +894,1,9610-1 +895,1,7324-18 +896,1,45503-1 +898,1,00-3 +899,1,3304-1 +901,1,60063-6 +903,1,1650-1 +906,1,8105-1 +907,1,1808-1 +908,1,K7035-1 +909,1,1507-1 +911,1,30378-1 +913,1,10524-1 +915,1,NIN901503-1 +916,1,5004552-1 +918,1,853195-1 +919,1,850656-1 +920,1,5001136-1 +923,1,4124-3 +924,1,1611-1 +926,1,1297-1 +927,1,6572-1 +928,1,6561-1 +929,1,4490-1 +930,1,853476-1 +931,1,10017-1 +932,1,6647-1 +933,1,60063-2 +934,1,4944-1 +935,1,5862-1 +937,1,70231-1 +941,1,852741-1 +943,1,852985-1 +944,1,655-1 +945,1,7724-18 +946,1,8104-1 +948,1,10582-1 +950,1,8006-1 +951,1,8008-1 +952,1,7937-1 +953,1,40181-1 +954,1,8112-1 +955,1,10705-1 +956,1,21205-1 +957,1,501-3 +959,1,7600-23 +961,1,7952-4 +962,1,66258-1 +964,1,7569-1 +966,1,9481-1 +968,1,MAY2013-1 +970,1,9095-1 +972,1,8583-1 +973,1,K8882-1 +974,1,3834-1 +975,1,520-2 +976,1,8284-1 +977,1,1130-1 +978,1,1213-2 +980,1,60061-1 +981,1,1306-1 +982,1,4780-1 +984,1,44008-1 +985,1,8144-1 +986,1,41507-1 +987,1,30225-1 +988,1,7834-1 +989,1,1627-1 +990,1,7156-1 +993,1,5201-1 +994,1,4047-1 +995,1,8927-1 +997,1,6771-1 +998,1,575-1 +1000,1,1786-1 +1001,1,8743-1 +1002,1,8968-1 +1003,1,4415-1 +1004,1,5109-1 +1006,1,1240-1 +1008,1,6044-1 +1010,1,5118-1 +1011,1,3381-1 +1012,1,5046-1 +1013,1,6837-1 +1014,1,MS1048-1 +1015,1,NIN891615-1 +1016,1,40086-1 +1018,1,8823-1 +1019,1,232-2 +1021,1,7621-1 +1022,1,970674-1 +1023,1,628-3 +1024,1,41040-12 +1025,1,6250-1 +1026,1,355-2 +1027,1,5177-1 +1028,1,5578-1 +1030,1,LLCA51-1 +1031,1,2199-1 +1032,1,42046-1 +1033,1,71000-8 +1036,1,1421-1 +1038,1,1280-1 +1039,1,6308-1 +1040,1,7716-1 +1041,1,6501-1 +1043,1,4097-1 +1044,1,8290-1 +1045,1,9858-1 +1046,1,3798-1 +1047,1,1236-2 +1049,1,798-1 +1050,1,7958-16 +1054,1,605-2 +1058,1,850591-1 +1059,1,5395-1 +1061,1,5000642-1 +1062,1,271-2 +1063,1,3463-1 +1064,1,5940-1 +1065,1,7100-1 +1066,1,222-2 +1067,1,1513-1 +1069,1,810003-1 +1070,1,8773-1 +1071,1,8852-1 +1072,1,llca3-1 +1073,1,00-4 +1074,1,5227-1 +1075,1,8684-4 +1078,1,10515-1 +1083,1,9794-1 +1085,1,40206-1 +1087,1,7249-1 +1089,1,5832-1 +1090,1,6776-1 +1092,1,852354-1 +1093,1,107-1 +1094,1,6956-1 +1095,1,7559-1 +1096,1,2880-1 +1097,1,60011-1 +1101,1,7410-1 +1102,1,60059-1 +1103,1,30029-1 +1104,1,3033-1 +1105,1,70170-1 +1108,1,894-1 +1109,1,7177-1 +1111,1,7281-1 +1112,1,853111-1 +1113,1,3854-1 +1114,1,5002931-1 +1115,1,4220-1 +1116,1,75157-1 +1117,1,41553-1 +1118,1,1220-2 +1119,1,10226-1 +1120,1,6763-1 +1121,1,4462-1 +1122,1,9337-1 +1126,1,53850004-1 +1127,1,6544-1 +1128,1,71201-1 +1129,1,8867-1 +1130,1,20217-1 +1131,1,65757-1 +1132,1,llca22-1 +1134,1,1382-1 +1135,1,5003559-1 +1137,1,911-1 +1138,1,5902-1 +1139,1,5001385-1 +1140,1,6911-1 +1141,1,1356-1 +1144,1,792-1 +1148,1,9530-1 +1149,1,40202-1 +1152,1,5040-1 +1154,1,10803-1 +1156,1,1343-1 +1157,1,3629-1 +1158,1,295-1 +1159,1,71000-17 +1161,1,692-1 +1162,1,7613-1 +1163,1,1417-1 +1164,1,6337-1 +1165,1,9657-1 +1166,1,133-1 +1167,1,70602-1 +1170,1,21104-1 +1171,1,6987-1 +1172,1,60024-6 +1173,1,3478-1 +1174,1,1978-1 +1175,1,9551-1 +1177,1,970638-1 +1180,1,6484-1 +1181,1,71310-1 +1182,1,6565-1 +1184,1,7709-1 +1187,1,1077-1 +1189,1,10227-1 +1190,1,850895-1 +1191,1,9557-1 +1192,1,4065-1 +1193,1,8544-1 +1194,1,699-1 +1195,1,326-1 +1197,1,75108-1 +1198,1,7744-1 +1199,1,245-2 +1200,1,8804-3 +1201,1,6018031-1 +1202,1,7724-9 +1203,1,9377-1 +1205,1,764521-1 +1206,1,70228-1 +1207,1,6575-1 +1208,1,5767-1 +1209,1,5142-1 +1210,1,9306-1 +1211,1,71005-16 +1212,1,10013-1 +1213,1,41052-1 +1214,1,6646-1 +1215,1,75899-1 +1216,1,451-1 +1219,1,1169-1 +1220,1,9484-1 +1221,1,8563-1 +1222,1,8733-1 +1223,1,5137-1 +1224,1,5165-1 +1225,1,8459-1 +1226,1,42063-1 +1227,1,7216-2 +1232,1,7574-19 +1233,1,5872-1 +1234,1,79016-1 +1236,1,437-1 +1237,1,8983-1 +1238,1,54-1 +1241,1,10187-1 +1242,1,1161-1 +1245,1,5203-1 +1246,1,5156-1 +1247,1,1234-1 +1248,1,722-1 +1249,1,3521-1 +1250,1,4532-1 +1251,1,8720-1 +1252,1,3845-1 +1253,1,30005-1 +1255,1,10202-2 +1258,1,6299-11 +1259,1,8044-1 +1260,1,10150-1 +1261,1,5282-1 +1264,1,5482-1 +1266,1,10740-1 +1267,1,970610-1 +1268,1,2490-1 +1269,1,65549-1 +1270,1,390-2 +1271,1,214.4-1 +1272,1,5237-1 +1274,1,41029-1 +1275,1,9648-1 +1279,1,1076-1 +1280,1,8436-1 +1281,1,30070-1 +1282,1,30059-1 +1283,1,8205-1 +1284,1,1127-1 +1285,1,1607-1 +1286,1,7524-1 +1289,1,3287-1 +1290,1,197-1 +1291,1,7424-1 +1292,1,8710-1 +1293,1,1845-1 +1298,1,7958-3 +1300,1,1216-1 +1302,1,Lynnwood-1 +1303,1,3738-1 +1305,1,10255-1 +1306,1,WHITEHOUSE-1 +1307,1,10829-1 +1311,1,2000446-1 +1312,1,8165-1 +1313,1,8090-1 +1314,1,7553-22 +1315,1,KT306-1 +1316,1,8584-2 +1317,1,KT405-1 +1318,1,291-1 +1320,1,10069-1 +1321,1,5988-1 +1323,1,K6243-1 +1324,1,6615-1 +1325,1,7178-1 +1326,1,35-1 +1327,1,838-1 +1328,1,760-1 +1330,1,EMMETSCAR-1 +1332,1,5793-1 +1333,1,5538-1 +1334,1,5004259-1 +1335,1,8252-1 +1338,1,6987-2 +1339,1,5067-1 +1340,1,6375-1 +1341,1,3855-1 +1342,1,5009-1 +1344,1,2649-1 +1345,1,4924-6 +1346,1,BAT8369-1 +1347,1,9380-1 +1352,1,852550-1 +1353,1,5864-1 +1354,1,5045-1 +1355,1,4702-1 +1356,1,481-5 +1357,1,79100-1 +1359,1,991464-1 +1360,1,30250-1 +1363,1,330-3 +1364,1,76011-1 +1365,1,656-1 +1366,1,1125-1 +1368,1,30522-1 +1369,1,7152-1 +1371,1,1978-2 +1373,1,kabcity-1 +1374,1,9607-1 +1375,1,5058-1 +1377,1,3756-1 +1379,1,341-1 +1380,1,6045-1 +1381,1,7802-1 +1384,1,102A-2 +1386,1,75023-15 +1387,1,6923-1 +1388,1,76013-1 +1389,1,4519-1 +1390,1,4186876-1 +1391,1,9509-10 +1392,1,3080-1 +1393,1,9526-1 +1394,1,11908-1 +1398,1,Dallas-1 +1399,1,8075-1 +1401,1,66117-1 +1402,1,6359-1 +1405,1,6883-1 +1406,1,6382-1 +1407,1,165-1 +1408,1,852697-1 +1409,1,10127-1 +1410,1,14-1 +1411,1,2182-1 +1412,1,41528-1 +1414,1,0012-1 +1416,1,5933-1 +1418,1,K5613-1 +1419,1,6633-1 +1420,1,4258-1 +1421,1,66377-1 +1422,1,75036-1 +1426,1,4431-1 +1427,1,4430-1 +1428,1,4755-1 +1429,1,2250-8 +1431,1,8853-1 +1432,1,5764-1 +1433,1,9615-1 +1434,1,4106-1 +1435,1,1250-1 +1436,1,4799-1 +1437,1,6811-1 +1438,1,K8148-1 +1439,1,8496-1 +1440,1,3053-1 +1441,1,8677-1 +1442,1,8890-1 +1443,1,5001383-1 +1444,1,8193-1 +1445,1,5004590-1 +1447,1,9748-1 +1448,1,1217-1 +1449,1,41532-1 +1450,1,878-1 +1452,1,8676-1 +1453,1,DKCity-1 +1454,1,6879-1 +1456,1,890-1 +1457,1,6282-1 +1459,1,5004363-1 +1460,1,30067-1 +1461,1,4182-1 +1462,1,5316-1 +1465,1,41073-1 +1466,1,4946-1 +1469,1,4176-1 +1470,1,8511-1 +1471,1,6336-1 +1472,1,6499-1 +1475,1,383-1 +1476,1,7116-1 +1478,1,71017-4 +1479,1,852702-1 +1480,1,325-3 +1481,1,7586-1 +1482,1,8567-1 +1483,1,9964-1 +1484,1,6464-1 +1485,1,70314-1 +1486,1,30020-1 +1487,1,comcon022-1 +1489,1,3450-1 +1491,1,60024-4 +1492,1,8727-1 +1493,1,5249-1 +1494,1,30116-1 +1495,1,60036-1 +1497,1,2494-1 +1498,1,5619-1 +1499,1,8909-4 +1500,1,4031-1 +1502,1,814-2 +1503,1,71014-2 +1504,1,41539-1 +1505,1,6092-2 +1507,1,VP-17 +1509,1,8421-1 +1511,1,3718-1 +1512,1,7724-8 +1513,1,2115-1 +1515,1,20016-1 +1517,1,71011-6 +1519,1,1216-2 +1520,1,75155-1 +1521,1,60127-1 +1522,1,F6316-1 +1524,1,242.2-1 +1526,1,6554-1 +1527,1,8048-1 +1530,1,1132-1 +1531,1,6191-1 +1534,1,4937-1 +1535,1,1131-1 +1536,1,10117-1 +1537,1,4204-1 +1538,1,9761-1 +1548,1,70156-1 +1549,1,6694-1 +1552,1,7883-1 +1554,1,5265-1 +1555,1,4774-1 +1556,1,40099-1 +1557,1,4487-1 +1558,1,7575-6 +1560,1,10818-1 +1562,1,1776-1 +1563,1,8137-1 +1566,1,75148-1 +1568,1,LOC391504-1 +1569,1,8785-1 +1570,1,8196-1 +1571,1,4428-7 +1572,1,9-1 +1573,1,951178-1 +1577,1,8685-1 +1578,1,71010-15 +1579,1,7036-1 +1580,1,6661-1 +1582,1,3826-1 +1585,1,1470-1 +1586,1,30026-1 +1587,1,851324-1 +1589,1,10210-1 +1594,1,7245-1 +1596,1,10699-1 +1598,1,3469-1 +1599,1,7751-1 +1600,1,Frankfurt-1 +1602,1,40045-1 +1603,1,7194-1 +1604,1,30189-1 +1606,1,53850007-1 +1607,1,31047-1 +1608,1,4992-1 +1610,1,5606-1 +1611,1,1958-1 +1612,1,60063-21 +1613,1,520-6 +1615,1,5004796-1 +1616,1,45110-1 +1618,1,41141-1 +1619,1,1661-2 +1620,1,44028-1 +1621,1,K8573-1 +1623,1,850843-1 +1624,1,8404-1 +1625,1,8877-1 +1627,1,7306-1 +1628,1,8228-1 +1630,1,70911-1 +1631,1,5281-1 +1632,1,8360-1 +1633,1,8746-1 +1634,1,K4729-1 +1635,1,7979-13 +1636,1,8418-1 +1637,1,6371-1 +1638,1,1512-2 +1639,1,6578-1 +1640,1,8383-1 +1641,1,482-4 +1642,1,40057-1 +1643,1,3961-1 +1644,1,2556-1 +1645,1,1967-1 +1646,1,71000-5 +1647,1,11-2 +1648,1,40017-1 +1649,1,66436-1 +1651,1,6201-1 +1653,1,7574-9 +1654,1,8831-12 +1655,1,7687-5 +1656,1,6510-1 +1657,1,118-2 +1658,1,3603-1 +1660,1,79002-1 +1661,1,4448-1 +1662,1,3885-1 +1664,1,8614-2 +1665,1,3316-16 +1666,1,8274-1 +1668,1,7103-1 +1669,1,6521-1 +1670,1,7837-1 +1671,1,3793-1 +1672,1,40077-1 +1673,1,308-2 +1675,1,8416-1 +1677,1,40239-1 +1678,1,10655-1 +1680,1,K8358-1 +1681,1,747-1 +1682,1,3473-1 +1684,1,1076-14 +1685,1,1644-1 +1686,1,7688-1 +1688,1,30066-5 +1690,1,493-2 +1691,1,8872-1 +1692,1,726-1 +1696,1,1065-1 +1700,1,8088-1 +1701,1,332-1 +1702,1,1733-1 +1705,1,8803-14 +1706,1,30256-1 +1707,1,8523-1 +1708,1,991369-1 +1709,1,9931-1 +1710,1,6512-1 +1711,1,877-1 +1713,1,1180-1 +1714,1,2143-1 +1716,1,1515-1 +1719,1,617-1 +1720,1,1317-1 +1721,1,700GP5-1 +1722,1,3054-1 +1723,1,40031-1 +1726,1,5001134-1 +1727,1,433-1 +1728,1,4133-1 +1731,1,4213-1 +1732,1,66342-1 +1733,1,7919-1 +1734,1,8389-1 +1736,1,3015-1 +1737,1,3730-1 +1738,1,7600-19 +1739,1,1999-1 +1743,1,9962-1 +1744,1,1228-1 +1747,1,360-1 +1748,1,4530-1 +1749,1,853556-1 +1750,1,980-1 +1751,1,6551-1 +1754,1,4300-1 +1756,1,6931-1 +1757,1,456-2 +1758,1,5069-1 +1759,1,2231-1 +1760,1,365-2 +1762,1,10072-1 +1764,1,TRUFALCON-1 +1765,1,9305-1 +1766,1,30372-1 +1768,1,LOC391505-1 +1770,1,10233-1 +1771,1,4987-1 +1772,1,30350-1 +1775,1,8625-1 +1776,1,60150-1 +1778,1,518-15 +1781,1,3917-1 +1782,1,5039-1 +1785,1,5956-1 +1786,1,3306-1 +1787,1,7665-1 +1788,1,6152-1 +1789,1,9331-1 +1790,1,71017-19 +1791,1,7418-2 +1792,1,6158-1 +1794,1,4174-1 +1795,1,K8563-1 +1796,1,885-1 +1797,1,970637-1 +1799,1,SW911511-1 +1800,1,8084-1 +1801,1,5051-1 +1802,1,60024-20 +1803,1,7907-12 +1805,1,40203-1 +1807,1,8453-2 +1808,1,6907-1 +1809,1,70599-1 +1810,1,308-1 +1812,1,283-2 +1814,1,7453-1 +1815,1,5004131-1 +1817,1,4924-21 +1818,1,1416-1 +1819,1,79111-1 +1820,1,6496-1 +1821,1,544-1 +1822,1,378-1 +1823,1,5000440-1 +1825,1,5581-1 +1826,1,3501-1 +1828,1,7115-1 +1830,1,10205-1 +1831,1,520-9 +1832,1,3407-1 +1833,1,8161-1 +1835,1,970684-1 +1838,1,5064-1 +1840,1,8019-1 +1842,1,41067-1 +1845,1,519-13 +1846,1,1298-20 +1847,1,1389-1 +1848,1,7687-2 +1849,1,850963-1 +1851,1,MS1044-1 +1852,1,521-13 +1853,1,5836-1 +1854,1,970639-1 +1855,1,4428-25 +1856,1,71000-12 +1859,1,8757-1 +1860,1,5004468-1 +1864,1,7030-1 +1865,1,4425-1 +1868,1,71214-1 +1869,1,6091-1 +1870,1,3741-1 +1871,1,8437-1 +1873,1,31052-1 +1875,1,41125-1 +1878,1,7383-1 +1879,1,K8761-1 +1880,1,71013-5 +1881,1,70505-1 +1882,1,8245-1 +1884,1,8275-1 +1886,1,71002-7 +1887,1,701-3 +1888,1,VP-6 +1889,1,1752-1 +1890,1,50-1 +1891,1,610-2 +1892,1,5003576-1 +1893,1,9384-1 +1894,1,9256-1 +1895,1,8935-1 +1898,1,7323-1 +1899,1,60063-1 +1900,1,75023-2 +1901,1,8110-1 +1902,1,1092-1 +1903,1,7863-1 +1904,1,520-15 +1907,1,4186874-1 +1908,1,1061-1 +1910,1,6489-1 +1912,1,6582-1 +1913,1,2613-1 +1914,1,41116-1 +1917,1,780-1 +1919,1,lmg002-1 +1921,1,462-2 +1922,1,6809-1 +1923,1,6432-1 +1927,1,485-1 +1928,1,6111-1 +1929,1,9314-1 +1930,1,6869-1 +1932,1,4442-1 +1933,1,902-1 +1934,1,6507-1 +1936,1,tominifigs-1 +1937,1,4573-1 +1939,1,7302-1 +1945,1,5240-1 +1946,1,6338-1 +1947,1,4679-1 +1948,1,4077-1 +1949,1,8032-1 +1950,1,7708-1 +1952,1,9616-1 +1953,1,970115-1 +1954,1,30160-1 +1955,1,4875-1 +1958,1,lmg004-1 +1959,1,3922-1 +1960,1,8870-1 +1961,1,270-2 +1962,1,20002-1 +1963,1,40201-1 +1965,1,8152-1 +1966,1,7866-1 +1967,1,5004604-1 +1968,1,71000-13 +1969,1,6910-1 +1970,1,6051-1 +1971,1,5820-1 +1972,1,8587-2 +1973,1,080-1 +1974,1,7992-1 +1976,1,7250-1 +1977,1,7080-1 +1978,1,8671-1 +1979,1,481-6 +1981,1,FR561604-1 +1983,1,1917-1 +1984,1,3485-1 +1985,1,4457-1 +1986,1,71002-11 +1987,1,70410-1 +1988,1,5110-1 +1989,1,8827-17 +1991,1,700.B.3-1 +1993,1,40118-1 +1996,1,356-2 +1997,1,695-1 +1998,1,60042-1 +2000,1,NEX271606-1 +2001,1,79007-1 +2002,1,1687-1 +2004,1,8371-1 +2006,1,852548-1 +2009,1,K8355-1 +2010,1,1824-1 +2011,1,374-1 +2013,1,71007-7 +2014,1,853130-1 +2015,1,8592-3 +2016,1,71007-15 +2017,1,464-1 +2020,1,60063-19 +2021,1,5198-1 +2022,1,118-1 +2024,1,1354-1 +2025,1,Vancouver-1 +2026,1,8873-1 +2027,1,41016-17 +2028,1,005-1 +2033,1,3475-1 +2035,1,991329-1 +2038,1,6299-20 +2039,1,357-1 +2040,1,3422-2 +2041,1,7868-1 +2042,1,5042-1 +2045,1,8948-1 +2046,1,30003-1 +2047,1,3570-1 +2048,1,164-1 +2050,1,10169-1 +2053,1,70107-1 +2054,1,KT203-1 +2055,1,8989-1 +2056,1,6940-1 +2057,1,4637-1 +2059,1,7553-19 +2060,1,5083-1 +2062,1,75097-1 +2063,1,DKSTICKER-1 +2064,1,TRUKAYAK-1 +2065,1,701-1 +2066,1,5002146-1 +2067,1,3885-2 +2068,1,comcon014-1 +2069,1,8857-1 +2070,1,520-5 +2071,1,7610-1 +2072,1,4093-1 +2073,1,71205-1 +2074,1,1293-1 +2076,1,7533-1 +2082,1,7326-1 +2083,1,377-2 +2084,1,9476-1 +2085,1,8833-2 +2086,1,7572-1 +2087,1,5000214-1 +2088,1,30180-1 +2089,1,6033-1 +2090,1,16-1 +2093,1,643-2 +2096,1,1560-1 +2097,1,8142-2 +2101,1,8650-1 +2102,1,981-1 +2103,1,K7896-1 +2105,1,10600-1 +2107,1,4562-1 +2109,1,9594-1 +2110,1,6022-1 +2111,1,278-1 +2112,1,70734-1 +2113,1,510-1 +2114,1,951-2 +2116,1,41573-1 +2117,1,6020-1 +2118,1,5980-1 +2119,1,8119-1 +2120,1,2070-1 +2123,1,3079-1 +2124,1,483-4 +2125,1,918-1 +2126,1,10244-1 +2128,1,30055-1 +2129,1,5978-1 +2130,1,LLBUS-1 +2131,1,850597-1 +2132,1,1332-1 +2134,1,8791-1 +2135,1,1228-2 +2137,1,294-1 +2138,1,1745-1 +2139,1,5182-1 +2140,1,305-2 +2143,1,1162-1 +2144,1,7413-1 +2145,1,4966-1 +2147,1,70108-1 +2148,1,6392-1 +2150,1,6780-1 +2151,1,2138-1 +2152,1,10191-1 +2154,1,9349-1 +2155,1,1857-1 +2159,1,4186870-1 +2161,1,75029-1 +2162,1,6649-1 +2163,1,60131-1 +2164,1,30266-1 +2166,1,703-3 +2167,1,3508-1 +2169,1,1645-1 +2170,1,926-1 +2171,1,4891-1 +2172,1,1798-1 +2173,1,10285-1 +2174,1,6296-1 +2175,1,5004-1 +2176,1,71017-11 +2178,1,10043-1 +2179,1,260-3 +2180,1,9470-1 +2181,1,7647-1 +2182,1,76012-1 +2185,1,71011-3 +2186,1,5004237-1 +2188,1,6151-1 +2189,1,7724-3 +2191,1,75904-1 +2193,1,71207-1 +2195,1,4283-1 +2196,1,1221-1 +2197,1,5854-1 +2198,1,3853-1 +2201,1,1638-1 +2203,1,740-2 +2205,1,7266-1 +2209,1,6824-1 +2210,1,9822-1 +2211,1,8864-1 +2213,1,7726-1 +2214,1,Calgary-1 +2216,1,0011-3 +2217,1,41231-1 +2219,1,3846-1 +2220,1,821-1 +2222,1,LLCA13-1 +2223,1,7093-1 +2224,1,75010-1 +2225,1,4655-1 +2226,1,41534-1 +2227,1,3643-1 +2228,1,1283-1 +2230,1,79120-1 +2232,1,NIN891503-1 +2234,1,41061-1 +2235,1,850841-1 +2237,1,9798-1 +2239,1,K4852-1 +2240,1,44024-1 +2241,1,4544-1 +2242,1,5221-1 +2243,1,8376-1 +2244,1,9566-1 +2245,1,8911-1 +2246,1,5404-1 +2247,1,71004-2 +2248,1,4645-1 +2250,1,8552-1 +2251,1,1322-1 +2252,1,8060-1 +2253,1,BAG6-1 +2254,1,9750-1 +2257,1,263-1 +2258,1,K8916-1 +2259,1,5065-1 +2260,1,30115-1 +2261,1,5001621-1 +2262,1,41173-1 +2263,1,8639-1 +2264,1,1225-2 +2265,1,40216-1 +2266,1,6748-1 +2267,1,852293-1 +2268,1,10215-1 +2269,1,853463-1 +2270,1,KT404-1 +2272,1,30133-1 +2274,1,76003-1 +2275,1,3472-1 +2276,1,3604-1 +2277,1,7958-11 +2279,1,2159-1 +2280,1,981-2 +2282,1,8683-3 +2284,1,5510-1 +2285,1,NIN891617-1 +2286,1,10011-1 +2287,1,9498-1 +2288,1,70222-1 +2289,1,328-2 +2290,1,8589-1 +2291,1,5293-1 +2292,1,156-2 +2293,1,4434-1 +2294,1,1662-1 +2297,1,4546-1 +2298,1,b55dk-01 +2300,1,SAMURAI-DROID-1 +2301,1,31018-1 +2302,1,6945-1 +2303,1,11995-1 +2304,1,7923-1 +2308,1,223-2 +2309,1,4079-1 +2310,1,30197-1 +2311,1,8410-1 +2313,1,7705-1 +2314,1,6619-1 +2317,1,21201-1 +2318,1,30230-1 +2321,1,5079-1 +2322,1,4348-3 +2323,1,30276-1 +2325,1,31008-1 +2326,1,6659-1 +2328,1,8683-14 +2329,1,6112-1 +2331,1,6740-1 +2334,1,79014-1 +2335,1,6381-1 +2336,1,Berlin-1 +2337,1,4912-1 +2338,1,852554-1 +2339,1,40094-1 +2342,1,1307-1 +2344,1,10580-1 +2346,1,75136-1 +2349,1,853378-1 +2350,1,40079-1 +2351,1,60118-1 +2352,1,71206-1 +2353,1,45301-1 +2354,1,41054-1 +2355,1,8836-1 +2356,1,7075-1 +2357,1,7893-2 +2358,1,4993-1 +2359,1,5004388-1 +2360,1,1298-11 +2361,1,8202-1 +2362,1,5761-1 +2363,1,4195-1 +2364,1,K8130-1 +2365,1,950-1 +2366,1,5900-1 +2367,1,874-1 +2368,1,5932-1 +2371,1,2521-1 +2372,1,3866-1 +2373,1,5943-1 +2375,1,45300-1 +2376,1,71012-9 +2377,1,70814-1 +2379,1,1105-1 +2382,1,65182-1 +2384,1,850789-1 +2385,1,8831-8 +2386,1,558-1 +2387,1,850618-1 +2388,1,60033-1 +2390,1,30002-1 +2391,1,231-1 +2392,1,10044-1 +2393,1,30166-1 +2395,1,9892-1 +2397,1,611-2 +2398,1,4157-1 +2399,1,41234-1 +2401,1,40155-1 +2403,1,71009-7 +2405,1,21011-1 +2406,1,MMMB026-1 +2407,1,850779-1 +2409,1,218-1 +2411,1,7643-1 +2412,1,6217-1 +2414,1,1032-1 +2415,1,4124-8 +2416,1,4898-1 +2417,1,5876-1 +2418,1,MS1034-1 +2419,1,518-14 +2420,1,1418-1 +2421,1,6982-1 +2422,1,4189224-1 +2423,1,9918-1 +2425,1,7907-16 +2426,1,30035-1 +2427,1,K8588-1 +2428,1,71012-13 +2429,1,9023-1 +2430,1,4757-1 +2431,1,8803-8 +2432,1,5133-1 +2434,1,6360-1 +2436,1,21030-1 +2439,1,7808-1 +2442,1,8450-1 +2443,1,TRUGHOST-1 +2444,1,9971-1 +2445,1,880012-1 +2446,1,851352-1 +2447,1,SoOuest-1 +2449,1,8063-1 +2450,1,5106-1 +2454,1,9898-1 +2455,1,724-1 +2456,1,K3801-1 +2460,1,9790-1 +2461,1,3562-1 +2462,1,1233-1 +2464,1,1768-1 +2466,1,8827-13 +2467,1,40114-1 +2469,1,7578-1 +2470,1,7580-1 +2471,1,60006-1 +2472,1,712-1 +2474,1,66392-1 +2475,1,4066-1 +2478,1,70789-1 +2479,1,30226-1 +2481,1,65518-1 +2482,1,5004607-1 +2483,1,5147-1 +2484,1,6028-1 +2485,1,1878-1 +2486,1,2194-1 +2487,1,5122-1 +2488,1,K10131-1 +2490,1,4022-1 +2491,1,6030-1 +2492,1,6425-1 +2493,1,5903-1 +2494,1,60054-1 +2495,1,3460-1 +2499,1,7936-1 +2500,1,8004-1 +2501,1,llca21-1 +2502,1,970-1 +2503,1,5004249-1 +2504,1,8553-1 +2507,1,6939-1 +2508,1,7153-1 +2509,1,459-1 +2512,1,2132-1 +2514,1,cokesoccer-1 +2515,1,1333-1 +2516,1,tf05-1 +2517,1,8303-1 +2518,1,8545-1 +2520,1,3051-1 +2521,1,8978-1 +2523,1,6515-1 +2525,1,6154-1 +2526,1,8591-3 +2527,1,4440-1 +2530,1,9965-1 +2531,1,8684-9 +2535,1,75102-1 +2536,1,6081-1 +2539,1,75110-1 +2540,1,7879-1 +2541,1,851335-1 +2542,1,6388-1 +2543,1,386-1 +2544,1,5004869-1 +2546,1,322-1 +2548,1,1873-1 +2549,1,1345-1 +2550,1,8804-4 +2551,1,6965-2 +2553,1,970627-1 +2554,1,1652-1 +2558,1,7904-19 +2559,1,66363-1 +2560,1,850705-1 +2563,1,4480-1 +2564,1,4068-1 +2565,1,2508-1 +2566,1,6686-1 +2567,1,454-1 +2569,1,75112-1 +2571,1,75145-1 +2572,1,132-2 +2573,1,2506-1 +2574,1,3942-1 +2575,1,10706-1 +2576,1,7507-1 +2577,1,K4755-1 +2578,1,851331-1 +2579,1,9293-1 +2580,1,6721-1 +2581,1,3001-1 +2584,1,75056-1 +2585,1,7952-2 +2586,1,76023-1 +2588,1,3710-1 +2590,1,236-2 +2592,1,3455-1 +2594,1,71174-1 +2596,1,5825-1 +2597,1,75876-1 +2598,1,8737-1 +2599,1,41090-1 +2601,1,41040-16 +2602,1,3742-1 +2603,1,6234-1 +2604,1,8783-2 +2606,1,8561-1 +2607,1,41171-1 +2608,1,6260-1 +2610,1,8256-1 +2611,1,7669-2 +2612,1,8919-1 +2613,1,40121-1 +2615,1,8805-8 +2616,1,852950-1 +2617,1,8758-1 +2618,1,7754-1 +2619,1,7760-1 +2620,1,8492-1 +2621,1,4629-1 +2624,1,5400-1 +2626,1,76049-1 +2627,1,2855113-1 +2628,1,5171-1 +2629,1,40084-1 +2630,1,6538-1 +2632,1,2146-1 +2635,1,4166-1 +2636,1,K7029-1 +2637,1,7979-12 +2638,1,612-1 +2639,1,1580-1 +2641,1,4595400-1 +2642,1,4795-1 +2643,1,66426-1 +2644,1,71007-3 +2646,1,8839-1 +2647,1,45011-1 +2648,1,K7741-1 +2649,1,7137-1 +2650,1,066-1 +2651,1,850423-1 +2653,1,5001623-1 +2654,1,6542-1 +2656,1,76044-1 +2657,1,1715-1 +2658,1,21021-1 +2663,1,7575-3 +2665,1,4564-1 +2666,1,4461-1 +2668,1,8683-11 +2669,1,70012-2 +2670,1,9552-1 +2672,1,21305-1 +2673,1,754-1 +2676,1,850635-1 +2677,1,K4512-1 +2678,1,10516-1 +2679,1,9509-6 +2681,1,70787-1 +2683,1,21126-1 +2684,1,10070-1 +2685,1,4467-1 +2687,1,806-1 +2688,1,7549-1 +2691,1,71004-11 +2692,1,1923-1 +2693,1,7736-1 +2694,1,1520-1 +2695,1,7779-1 +2696,1,9500-1 +2697,1,1076-5 +2698,1,2852725-1 +2699,1,970612-1 +2700,1,NIN891616-1 +2703,1,42035-1 +2704,1,70169-1 +2705,1,BauMit-1 +2706,1,6702-1 +2709,1,9447-1 +2710,1,970018-1 +2711,1,8162-1 +2712,1,71002-1 +2713,1,7121-1 +2715,1,5287-1 +2717,1,7776-1 +2718,1,4038-1 +2719,1,7313-1 +2720,1,71010-0 +2722,1,fruit5-1 +2723,1,66282-1 +2724,1,3719-1 +2725,1,66492-1 +2726,1,4920-1 +2727,1,970672-1 +2728,1,7952-25 +2729,1,9669-1 +2730,1,7468-1 +2733,1,8845-1 +2737,1,4659597-1 +2738,1,K4511-1 +2740,1,60092-1 +2743,1,8700-1 +2745,1,21204-1 +2748,1,60000-1 +2749,1,60063-17 +2750,1,7979-23 +2751,1,7139-1 +2752,1,60053-1 +2754,1,4608-1 +2757,1,1620-1 +2759,1,6810-1 +2760,1,2871-1 +2762,1,60046-1 +2763,1,70793-1 +2764,1,30375-1 +2765,1,40219-1 +2766,1,6450-1 +2767,1,853191-1 +2768,1,71013-14 +2769,1,7575-4 +2770,1,7670-2 +2771,1,296-1 +2772,1,41527-1 +2774,1,fruit4-1 +2777,1,30202-1 +2778,1,6808-1 +2779,1,6657-1 +2780,1,7724-6 +2781,1,2129-1 +2782,1,1149-1 +2784,1,6921-1 +2785,1,5822-1 +2786,1,850702-1 +2788,1,5242-1 +2789,1,9974-1 +2790,1,5126-1 +2791,1,9701-1 +2792,1,8962-1 +2793,1,65297-1 +2794,1,1-10 +2796,1,10234-1 +2798,1,10830-1 +2799,1,7904-11 +2800,1,7292-1 +2801,1,30108-1 +2802,1,75920-1 +2803,1,4586-1 +2805,1,820-1 +2808,1,8465972-1 +2809,1,970117-1 +2811,1,41021-1 +2812,1,70101-1 +2813,1,79104-2 +2814,1,1024601-1 +2819,1,1231-2 +2821,1,10068-1 +2822,1,20004-1 +2824,1,1974-3 +2825,1,6766-1 +2826,1,75902-1 +2827,1,8993-1 +2828,1,9567-1 +2829,1,30218-1 +2833,1,7574-5 +2834,1,73129-1 +2835,1,2856203-1 +2836,1,00-6 +2839,1,8094-1 +2841,1,71013-10 +2843,1,1841-1 +2845,1,8617-1 +2846,1,6105-1 +2847,1,8669-1 +2848,1,214.10-1 +2849,1,9369-1 +2851,1,comcon007-1 +2852,1,853301-1 +2853,1,7091-1 +2854,1,10115-1 +2855,1,9675-1 +2856,1,5222-1 +2857,1,8213-1 +2858,1,853146-1 +2859,1,60105-1 +2860,1,4707-1 +2861,1,71229-1 +2863,1,7269-1 +2864,1,53850016-1 +2865,1,5244-1 +2866,1,5642-1 +2867,1,8151-1 +2868,1,3420-2 +2870,1,NIN891620-1 +2871,1,1633-1 +2872,1,3314-1 +2873,1,71200-1 +2874,1,970620-1 +2875,1,5175-1 +2876,1,2025-1 +2879,1,502-2 +2880,1,60063-13 +2881,1,1282-1 +2882,1,llca4-1 +2883,1,3316-1 +2884,1,10654-1 +2885,1,521-9 +2886,1,4201-1 +2887,1,6642-1 +2888,1,30374-1 +2889,1,70105-1 +2890,1,5834-1 +2892,1,2853303-1 +2893,1,60024-10 +2895,1,7324-6 +2896,1,4574-1 +2898,1,Kabinsect-1 +2899,1,8266-1 +2900,1,4548-1 +2901,1,10056-1 +2902,1,5140-1 +2903,1,454-2 +2904,1,853380-1 +2905,1,4186872-1 +2907,1,851463-1 +2909,1,40056-1 +2910,1,3729-1 +2911,1,75153-1 +2913,1,70731-1 +2914,1,7979-14 +2915,1,K4701-1 +2916,1,1977-1 +2917,1,4524-1 +2918,1,5591-1 +2919,1,153-1 +2921,1,30066-1 +2922,1,6083-1 +2923,1,7958-24 +2925,1,20203-1 +2926,1,8848-1 +2928,1,208-1 +2929,1,7713-1 +2930,1,5004751-1 +2931,1,4103-1 +2932,1,8288-1 +2933,1,4410-1 +2934,1,8574-1 +2935,1,7316-1 +2936,1,6229-1 +2937,1,4057-1 +2938,1,8186-1 +2939,1,214-1 +2940,1,40002-1 +2941,1,1111-1 +2943,1,4207901-1 +2944,1,7979-10 +2947,1,lwp06-1 +2948,1,kabbion2-1 +2950,1,377-1 +2951,1,238-9 +2952,1,8833-3 +2953,1,5014-1 +2954,1,79101-1 +2955,1,6054-1 +2956,1,10112-1 +2957,1,8470-1 +2959,1,9681-1 +2962,1,055-2 +2963,1,7476-1 +2965,1,850850-1 +2966,1,325-1 +2967,1,130-1 +2969,1,1231-1 +2970,1,10082-1 +2972,1,41175-1 +2973,1,891611-1 +2974,1,853439-1 +2976,1,lmg006-1 +2978,1,971-1 +2979,1,7686-1 +2981,1,7528-1 +2982,1,614-1 +2984,1,31013-1 +2985,1,8909-2 +2986,1,385-1 +2987,1,MFCN-2 +2988,1,4124-13 +2989,1,5001270-1 +2990,1,3831-1 +2991,1,471602-1 +2992,1,2824-6 +2993,1,1298-21 +2995,1,1425-1 +2996,1,10216-1 +2998,1,75042-1 +2999,1,280-2 +3001,1,4600-1 +3005,1,3520-1 +3006,1,4659758-1 +3007,1,5517-1 +3008,1,895-1 +3010,1,21118-1 +3011,1,31007-1 +3012,1,3332-1 +3014,1,6366-1 +3016,1,7412-1 +3017,1,41543-1 +3018,1,comcon037-1 +3019,1,3792-1 +3021,1,5811-1 +3022,1,4620-1 +3024,1,60024-21 +3025,1,6110-1 +3026,1,4524-25 +3027,1,7575-2 +3028,1,8087-1 +3031,1,8585-1 +3033,1,9493-1 +3036,1,760-2 +3037,1,71007-13 +3038,1,3594-1 +3039,1,9855-1 +3040,1,6887-1 +3041,1,40098-1 +3042,1,7324-22 +3043,1,10668-1 +3044,1,66404-1 +3045,1,6847-1 +3051,1,5061-1 +3052,1,44029-1 +3053,1,65743-1 +3055,1,9933-1 +3057,1,10663-1 +3060,1,10701-1 +3061,1,1839-1 +3062,1,8699-1 +3063,1,5192-1 +3064,1,318-1 +3065,1,5004264-1 +3066,1,200-5 +3067,1,4953-1 +3069,1,6865-1 +3071,1,e1a1404-1 +3073,1,5843-1 +3076,1,4924-24 +3077,1,555-1 +3079,1,30011-1 +3080,1,4957-1 +3081,1,3428-1 +3082,1,599-1 +3084,1,71285-1 +3085,1,5004067-1 +3087,1,4403-1 +3089,1,4930-1 +3090,1,41235-1 +3091,1,10597-1 +3092,1,casbon-1 +3093,1,4563-1 +3094,1,8782-2 +3096,1,8494-1 +3097,1,70724-1 +3098,1,6815-1 +3099,1,41556-1 +3100,1,21031-1 +3102,1,4778-1 +3103,1,6026-1 +3104,1,4466-1 +3105,1,6709-1 +3106,1,1363-1 +3107,1,41518-1 +3108,1,851659-1 +3109,1,65777-1 +3110,1,5001308-1 +3111,1,1822-1 +3112,1,1298-9 +3113,1,5267-1 +3115,1,850458-1 +3116,1,4011-1 +3118,1,7252-1 +3120,1,71017-14 +3121,1,71001-13 +3122,1,7907-20 +3124,1,8408-1 +3125,1,8803-0 +3126,1,759-1 +3131,1,561503-1 +3133,1,10512-1 +3134,1,8068-1 +3135,1,6227-1 +3138,1,6991-1 +3139,1,42060-1 +3140,1,9355-1 +3141,1,40018-1 +3142,1,970645-1 +3143,1,369-1 +3144,1,7184-1 +3146,1,4147-1 +3149,1,8612-1 +3150,1,1596-1 +3151,1,226-1 +3152,1,C8509-4 +3153,1,1817-1 +3154,1,5264-1 +3156,1,1049-1 +3157,1,7918-1 +3159,1,7844-1 +3160,1,3017-1 +3161,1,7324-24 +3162,1,41040-1 +3165,1,7964-1 +3166,1,71013-1 +3167,1,5573-2 +3168,1,7418-1 +3169,1,346-1 +3170,1,5017-1 +3171,1,4654-1 +3172,1,9324-1 +3173,1,4743-1 +3176,1,4512-1 +3177,1,40190-1 +3178,1,40066-1 +3179,1,4024-24 +3180,1,5004389-1 +3181,1,6618-1 +3183,1,9633-1 +3184,1,2518-1 +3186,1,40061-1 +3187,1,850889-1 +3188,1,1190-1 +3189,1,3316-10 +3190,1,644-2 +3191,1,1391-1 +3193,1,2153-1 +3194,1,4032-10 +3197,1,10014-1 +3198,1,75089-1 +3201,1,30067-3 +3202,1,1289-1 +3204,1,9509-13 +3206,1,3222-1 +3207,1,LLCAPUM1-1 +3209,1,4606-1 +3210,1,8537-1 +3212,1,4208-1 +3213,1,7707-1 +3214,1,3789-1 +3215,1,41033-1 +3217,1,31015-1 +3218,1,71017-7 +3219,1,41057-1 +3221,1,853352-1 +3224,1,30131-1 +3225,1,2775-1 +3227,1,10937-1 +3228,1,414-6 +3229,1,3466-1 +3230,1,4539-1 +3231,1,6536-1 +3235,1,8970-1 +3237,1,3449-1 +3238,1,5951-1 +3239,1,6803-1 +3240,1,10557-1 +3241,1,9945-1 +3243,1,5002041-1 +3244,1,8246-1 +3246,1,932-1 +3247,1,3624-1 +3248,1,1120-1 +3249,1,8619-1 +3250,1,116-2 +3251,1,75822-1 +3252,1,1321-1 +3253,1,70592-1 +3254,1,373-2 +3255,1,8575-1 +3256,1,3874-1 +3258,1,8554-1 +3259,1,4167-1 +3260,1,KT304-1 +3262,1,671-1 +3264,1,71005-9 +3265,1,MiniNXT-1 +3266,1,561504-1 +3268,1,381-2 +3269,1,1884-1 +3270,1,45501-1 +3271,1,71007-17 +3273,1,8712-1 +3274,1,540-2 +3277,1,4837-1 +3279,1,Glasgow-1 +3280,1,8663-1 +3283,1,10521-1 +3284,1,65128-1 +3287,1,1932-1 +3288,1,30151-1 +3289,1,1-11 +3292,1,K8578-1 +3293,1,3563-1 +3294,1,5003564-1 +3295,1,4109-1 +3296,1,1924-1 +3297,1,6984-1 +3301,1,253-2 +3302,1,7907-17 +3304,1,8286-1 +3305,1,41571-1 +3307,1,4508-1 +3308,1,7324-17 +3309,1,8831-18 +3310,1,6804-1 +3311,1,970679-1 +3312,1,8409-1 +3313,1,65800-1 +3317,1,4970-1 +3319,1,321-1 +3320,1,71227-1 +3321,1,6669-1 +3322,1,6302-1 +3328,1,75016-1 +3330,1,8729-1 +3331,1,30140-1 +3332,1,FRNDSMAGJNGLE-1 +3334,1,75908-1 +3335,1,15-1 +3336,1,comcon035-1 +3337,1,7904-13 +3338,1,1428-2 +3339,1,66307-1 +3340,1,8365-1 +3341,1,70147-1 +3343,1,K8603-1 +3344,1,5001133-1 +3345,1,50011-1 +3346,1,7531-1 +3347,1,8907-1 +3348,1,6550-1 +3349,1,5004608-1 +3350,1,30061-1 +3351,1,8909-17 +3352,1,41230-1 +3354,1,616-1 +3355,1,5154-1 +3356,1,6881-1 +3357,1,2173-1 +3358,1,4428-23 +3359,1,1715-2 +3360,1,2150-1 +3361,1,5493-1 +3363,1,6046-1 +3365,1,KFruit-1 +3366,1,802-2 +3367,1,kabmars-1 +3368,1,6253-1 +3369,1,4464-1 +3371,1,41119-1 +3372,1,033-2 +3374,1,6210-1 +3375,1,20005-1 +3376,1,3005-1 +3378,1,6299-6 +3379,1,2250-5 +3382,1,8157-1 +3383,1,7952-22 +3386,1,7904-14 +3388,1,71002-16 +3389,1,5812-1 +3390,1,21020-1 +3391,1,3467-1 +3392,1,8909-18 +3393,1,1970-1 +3394,1,6452-1 +3395,1,60112-1 +3396,1,6972-1 +3397,1,1590-2 +3398,1,Toronto-3 +3399,1,71010-4 +3401,1,114-1 +3402,1,5002928-1 +3403,1,1187-1 +3404,1,2870-1 +3405,1,8486-1 +3406,1,2962-1 +3407,1,1298-25 +3408,1,10143-1 +3410,1,1298-12 +3411,1,4652-1 +3413,1,71017-17 +3414,1,6829-1 +3415,1,6261-1 +3416,1,6891-1 +3418,1,5002947-1 +3419,1,5003580-1 +3420,1,71014-5 +3422,1,4184912-1 +3423,1,60130-1 +3424,1,7644-1 +3426,1,7616-1 +3427,1,634-1 +3428,1,8960-1 +3429,1,lmg005-1 +3430,1,5283-1 +3432,1,4994-1 +3433,1,6409-1 +3434,1,1475-1 +3435,1,K8672-1 +3437,1,3832-1 +3440,1,7724-5 +3441,1,238-2 +3442,1,434-1 +3443,1,535-1 +3444,1,3380-1 +3445,1,8357-1 +3446,1,71008-9 +3453,1,71009-1 +3454,1,Lightbulb-1 +3456,1,8769-1 +3459,1,SW911506-1 +3460,1,6306-1 +3461,1,9937-1 +3462,1,10681-1 +3463,1,71202-1 +3464,1,422-1 +3465,1,1362-1 +3466,1,75014-1 +3467,1,swminifigs-1 +3470,1,42052-1 +3471,1,6431-1 +3472,1,3842-1 +3473,1,75910-1 +3475,1,2856217-1 +3476,1,8620-1 +3477,1,6092-1 +3481,1,4594-1 +3482,1,128-2 +3484,1,557-1 +3485,1,10686-1 +3486,1,75023-14 +3487,1,24-1 +3489,1,6159-1 +3490,1,41001-1 +3491,1,970047-1 +3494,1,9617-1 +3495,1,5885-1 +3496,1,30305-1 +3497,1,3807-1 +3498,1,6664-1 +3500,1,970004-1 +3501,1,3442-1 +3502,1,5804-1 +3505,1,75023-19 +3506,1,10566-1 +3507,1,1076-15 +3508,1,6653-1 +3509,1,8683-1 +3510,1,8905-1 +3511,1,10049-1 +3512,1,9464-1 +3513,1,comcon027-1 +3514,1,1316-1 +3515,1,30184-1 +3516,1,legobricks-1 +3517,1,30066-4 +3518,1,60071-1 +3519,1,5000281-1 +3522,1,6739-1 +3526,1,5132-1 +3528,1,7910-1 +3530,1,5833-1 +3531,1,30204-1 +3532,1,4798-1 +3533,1,41570-1 +3534,1,2866-1 +3538,1,831-1 +3540,1,2535-1 +3541,1,846-1 +3544,1,8953-1 +3545,1,8785452-1 +3546,1,7512-1 +3547,1,2145-1 +3548,1,8827-12 +3550,1,K8381-1 +3551,1,8771-1 +3554,1,5508-1 +3555,1,8818-1 +3556,1,6056-1 +3557,1,256-1 +3558,1,5266-1 +3560,1,1646-2 +3561,1,5614-1 +3563,1,970616-1 +3564,1,7574-22 +3567,1,214.3-1 +3569,1,70411-1 +3570,1,3918-1 +3571,1,7670-1 +3572,1,lfv1-1 +3574,1,00-7 +3575,1,7673-1 +3578,1,5220-1 +3579,1,9700-1 +3581,1,5004197-1 +3582,1,3388-1 +3583,1,75003-1 +3585,1,4447-1 +3586,1,K8572-1 +3587,1,40-1 +3589,1,4547551-1 +3590,1,10675-1 +3591,1,3672-1 +3593,1,308-3 +3594,1,3550-1 +3595,1,4124-2 +3596,1,2045-1 +3597,1,8653-1 +3598,1,2186-1 +3599,1,42021-1 +3600,1,9570-1 +3602,1,41005-1 +3603,1,6967-2 +3604,1,75147-1 +3605,1,492-2 +3606,1,6820-1 +3607,1,1944-1 +3608,1,3368-1 +3609,1,5001709-1 +3611,1,5004600-1 +3612,1,7814-1 +3614,1,4348-1 +3615,1,40161-1 +3616,1,6467-1 +3617,1,6200-2 +3618,1,41508-1 +3619,1,71014-12 +3620,1,7994-1 +3621,1,5004557-1 +3622,1,1290-1 +3623,1,2858-1 +3624,1,5041-1 +3626,1,8827-7 +3627,1,8056-1 +3628,1,6199-1 +3629,1,71009-14 +3630,1,3582-1 +3631,1,8150-1 +3632,1,9022-1 +3633,1,4536-1 +3634,1,20011-1 +3637,1,5073-1 +3638,1,7073-1 +3639,1,1325-1 +3643,1,1385-1 +3644,1,41545-1 +3645,1,6059-1 +3646,1,8091-1 +3647,1,6926-1 +3648,1,30605-1 +3649,1,41504-1 +3650,1,79017-1 +3653,1,3185-1 +3655,1,242-2 +3659,1,2505-1 +3660,1,60063-8 +3661,1,5321-1 +3662,1,41130-1 +3663,1,700.C.4-1 +3665,1,5120-1 +3667,1,2636-1 +3668,1,75025-1 +3669,1,115-2 +3670,1,10587-1 +3671,1,901503-1 +3672,1,1245-1 +3673,1,10683-1 +3674,1,850886-1 +3679,1,1371-1 +3680,1,4438-1 +3681,1,7952-13 +3682,1,4-4 +3683,1,7514-1 +3684,1,5030-1 +3686,1,5983-1 +3690,1,5000067-1 +3691,1,66410-1 +3692,1,70202-1 +3693,1,6706-1 +3694,1,KT207-1 +3695,1,70103-1 +3696,1,303-2 +3697,1,7222-1 +3698,1,4788-1 +3699,1,65580-1 +3700,1,71008-2 +3702,1,7303-1 +3703,1,852771-1 +3704,1,8041-1 +3705,1,KB565-1 +3707,1,41516-1 +3708,1,3560-1 +3710,1,1096-1 +3711,1,214-2 +3712,1,42004-1 +3713,1,852753-1 +3716,1,5862-2 +3717,1,71010-5 +3719,1,TRUNINJAGO-3 +3720,1,9579-1 +3722,1,10057-1 +3723,1,6222-1 +3724,1,8147-1 +3725,1,5013-1 +3726,1,7301-1 +3727,1,6832-1 +3729,1,41542-1 +3731,1,6002-2 +3732,1,10504-1 +3733,1,7276-1 +3735,1,8617-2 +3736,1,8805-11 +3737,1,7600-25 +3740,1,7789-1 +3741,1,40093-1 +3742,1,6732-1 +3745,1,7324-7 +3746,1,7745-1 +3747,1,2995-1 +3748,1,5700-1 +3749,1,4024-12 +3751,1,30067-4 +3752,1,7799-1 +3753,1,4959-1 +3755,1,1506-1 +3756,1,4589-1 +3757,1,5202-1 +3758,1,8984-1 +3759,1,11-3 +3760,1,518-11 +3761,1,7785-1 +3762,1,5152-1 +3763,1,71303-1 +3764,1,66360-1 +3765,1,4529-1 +3766,1,7571-1 +3767,1,41016-13 +3770,1,4540315-1 +3771,1,70310-1 +3773,1,70402-1 +3774,1,3050-1 +3776,1,71242-1 +3780,1,8148-1 +3781,1,6023-1 +3782,1,853516-1 +3783,1,31043-1 +3784,1,4032-8 +3786,1,1274-1 +3787,1,852948-1 +3788,1,71002-6 +3789,1,4854-1 +3791,1,3914-1 +3792,1,65034-1 +3793,1,9934-1 +3794,1,7553-4 +3795,1,8888-1 +3796,1,75132-1 +3798,1,705-1 +3801,1,41105-1 +3802,1,347-3 +3803,1,3751-1 +3804,1,8662-1 +3805,1,1992-1 +3806,1,112-2 +3808,1,4591726-1 +3809,1,6632-1 +3816,1,4754-1 +3817,1,6204-1 +3818,1,10736-1 +3819,1,490-2 +3820,1,480-7 +3821,1,4417-1 +3822,1,4737-1 +3824,1,10173-1 +3825,1,281-1 +3828,1,60063-4 +3831,1,5970-1 +3834,1,4924-11 +3835,1,8577-1 +3838,1,70756-1 +3839,1,4531-1 +3841,1,7600-18 +3842,1,8260-1 +3843,1,986-1 +3845,1,21100-1 +3846,1,1517-1 +3847,1,71170-1 +3849,1,7958-12 +3851,1,6168-1 +3853,1,970634-1 +3854,1,4904-1 +3856,1,6279-1 +3857,1,10051-1 +3858,1,2-11 +3859,1,1186-1 +3861,1,786-1 +3862,1,4549-1 +3863,1,8355-1 +3864,1,71013-8 +3865,1,5049-1 +3866,1,3382-1 +3867,1,852842-1 +3869,1,6194-1 +3870,1,1265-1 +3871,1,7470-1 +3873,1,4428-6 +3874,1,1121-1 +3875,1,5001384-1 +3878,1,1339-1 +3880,1,5000143-1 +3881,1,8136-1 +3883,1,195-1 +3884,1,75023-20 +3885,1,1599-1 +3886,1,4212847-1 +3887,1,4286024-1 +3890,1,7907-6 +3893,1,6634-1 +3894,1,3758-1 +3895,1,6312-1 +3896,1,700.C.1-1 +3897,1,7836-1 +3898,1,5386-1 +3899,1,1182-1 +3900,1,8230-1 +3902,1,852555-1 +3903,1,7952-16 +3904,1,75044-1 +3905,1,9649-1 +3906,1,9799-1 +3907,1,5003563-1 +3909,1,6929-1 +3910,1,5540-1 +3911,1,4131-1 +3912,1,555-2 +3913,1,30161-1 +3915,1,7636-1 +3916,1,6218-1 +3918,1,4558-1 +3919,1,4216-1 +3920,1,8610-1 +3921,1,6936-1 +3924,1,5187-1 +3925,1,5599-1 +3926,1,10114-1 +3927,1,70806-1 +3928,1,1795-1 +3931,1,42023-1 +3932,1,31031-1 +3934,1,644-1 +3935,1,8945-1 +3938,1,41040-7 +3939,1,7958-13 +3941,1,66449-1 +3943,1,2133-1 +3944,1,482-3 +3945,1,71001-14 +3946,1,70782-1 +3947,1,41040-6 +3948,1,5542-1 +3949,1,21308-1 +3951,1,4024-5 +3953,1,5882-1 +3954,1,71009-10 +3956,1,9604-1 +3959,1,5004118-1 +3960,1,3753-1 +3961,1,76039-1 +3962,1,683-1 +3963,1,66138-1 +3964,1,3800-1 +3965,1,850595-1 +3967,1,6903-1 +3970,1,Wiesbaden-1 +3972,1,4615-1 +3973,1,79109-1 +3974,1,70339-1 +3975,1,242A-1 +3976,1,5414-1 +3980,1,7773-1 +3982,1,3477-1 +3983,1,851318-1 +3985,1,6503-1 +3986,1,1678-1 +3987,1,8064-1 +3988,1,5955-1 +3989,1,K8591-1 +3990,1,6086-1 +3991,1,510-2 +3992,1,70726-1 +3993,1,1550-1 +3994,1,41127-1 +3995,1,8124-1 +3996,1,44023-1 +3997,1,30111-1 +3999,1,6901-1 +4000,1,1225-1 +4001,1,8120-1 +4003,1,30132-1 +4004,1,8833-14 +4005,1,7952-24 +4006,1,60026-1 +4007,1,8100-1 +4008,1,4194-1 +4009,1,8786-1 +4010,1,4169306a-1 +4012,1,934-1 +4013,1,42026-1 +4014,1,6482-1 +4015,1,41040-15 +4016,1,3344-1 +4017,1,70324-1 +4019,1,10605-1 +4021,1,4030-1 +4022,1,3796-1 +4023,1,5229-1 +4024,1,5941-1 +4025,1,879-1 +4026,1,8804-10 +4027,1,4582-1 +4028,1,4903-1 +4029,1,6004-1 +4032,1,5002888-1 +4034,1,3385-1 +4035,1,1895-1 +4036,1,221-1 +4037,1,8805-0 +4038,1,1435-1 +4039,1,918-blue-2 +4040,1,6631-1 +4041,1,5004868-1 +4042,1,2744-1 +4043,1,71017-12 +4044,1,4293-1 +4045,1,542-1 +4047,1,4191-1 +4049,1,41506-1 +4051,1,75023-1 +4054,1,4458-1 +4055,1,6301-1 +4056,1,71000-9 +4058,1,480-1 +4059,1,200-1 +4060,1,10661-1 +4063,1,8683-16 +4064,1,851464-1 +4065,1,1328-1 +4066,1,325-2 +4067,1,1420-1 +4069,1,1076-4 +4070,1,30150-1 +4071,1,71005-0 +4073,1,71342-1 +4075,1,7082-1 +4076,1,7575-10 +4079,1,8869-1 +4080,1,30285-1 +4081,1,2879-1 +4082,1,3713-1 +4083,1,65145-1 +4085,1,8943-1 +4087,1,B001-1 +4088,1,5960-1 +4091,1,40142-1 +4092,1,7666-1 +4093,1,71007-12 +4094,1,10225-1 +4095,1,5071-1 +4096,1,850953-1 +4097,1,44013-1 +4099,1,4294-1 +4100,1,4918-1 +4102,1,9758-1 +4103,1,10061-1 +4105,1,NIN891501-1 +4108,1,2728-1 +4109,1,75043-1 +4110,1,8566-1 +4113,1,10020-1 +4114,1,1461-1 +4115,1,429-1 +4116,1,6864-1 +4117,1,40117-1 +4120,1,60145-1 +4121,1,60024-13 +4123,1,4524-9 +4124,1,7325-1 +4126,1,9509-23 +4127,1,4020-1 +4128,1,853358-1 +4130,1,40044-1 +4131,1,10196-1 +4132,1,Maine-1 +4133,1,8804-18 +4135,1,70130-1 +4138,1,76026-1 +4139,1,8638-1 +4140,1,7553-17 +4141,1,75139-1 +4143,1,41547-1 +4144,1,5186-1 +4145,1,991328-1 +4146,1,8995-1 +4147,1,5121-1 +4150,1,3033-2 +4151,1,5119-1 +4152,1,21200-1 +4153,1,7236-2 +4154,1,5004120-1 +4156,1,6639-1 +4159,1,6616-1 +4160,1,4879-1 +4162,1,1113-1 +4164,1,7687-20 +4165,1,4459-1 +4166,1,2855040-1 +4168,1,4439-1 +4169,1,10158-1 +4171,1,3923-1 +4172,1,1033-1 +4173,1,125-2 +4174,1,1560-2 +4176,1,9333-1 +4177,1,7907-10 +4182,1,853441-1 +4184,1,75012-1 +4185,1,6607-1 +4187,1,K7890-1 +4189,1,991452-1 +4192,1,71002-14 +4195,1,6602-2 +4196,1,5399-1 +4201,1,1859-1 +4202,1,2250-7 +4203,1,955-1 +4204,1,5859-1 +4206,1,8682-1 +4209,1,45509-1 +4212,1,970618-1 +4213,1,6299-5 +4214,1,5912-1 +4216,1,4074-1 +4217,1,5050-1 +4219,1,3324-1 +4220,1,8918-1 +4221,1,5884-1 +4222,1,10015-1 +4223,1,8994-1 +4224,1,1953-1 +4225,1,1298-16 +4226,1,3431-1 +4227,1,1232-1 +4229,1,401-3 +4230,1,8827-6 +4231,1,40101-1 +4232,1,2000415-1 +4233,1,7753-1 +4234,1,41003-1 +4236,1,8268-1 +4237,1,8382-1 +4239,1,621-1 +4240,1,8145-1 +4241,1,8169-1 +4243,1,4124-6 +4245,1,5004283-1 +4246,1,3058-1 +4247,1,391-2 +4248,1,4565-1 +4249,1,6414-1 +4250,1,5261-1 +4252,1,40137 +4254,1,4111-1 +4255,1,4893-1 +4258,1,6040-1 +4259,1,8480-1 +4261,1,K7945-1 +4262,1,30053-1 +4263,1,7501-1 +4265,1,5255-1 +4266,1,1170-1 +4268,1,70809-1 +4269,1,1066-1 +4270,1,6655-1 +4271,1,1785-1 +4274,1,70705-1 +4275,1,624-1 +4276,1,10656-1 +4277,1,70134-1 +4278,1,7952-1 +4281,1,5817-1 +4282,1,8231-1 +4285,1,1298-14 +4286,1,8805-6 +4288,1,5003096-1 +4289,1,6144-1 +4290,1,70589-1 +4296,1,2257-1 +4297,1,7958-25 +4298,1,4211-1 +4300,1,8483-1 +4302,1,5303-1 +4303,1,605-1 +4304,1,40154-1 +4305,1,3701-1 +4306,1,988-1 +4307,1,60024-16 +4309,1,7732-1 +4312,1,5004282-1 +4313,1,10075-1 +4314,1,llca27-1 +4316,1,LLCA31-1 +4317,1,3471-1 +4318,1,60063-10 +4321,1,7148-1 +4322,1,41093-1 +4323,1,31054-1 +4325,1,79015-1 +4326,1,6223-1 +4327,1,10722-1 +4328,1,75091-1 +4329,1,71011-4 +4332,1,7574-4 +4333,1,7691-1 +4334,1,8868-1 +4335,1,8562-1 +4336,1,5044-1 +4337,1,2759-1 +4338,1,7690-1 +4339,1,4584-1 +4341,1,274-1 +4343,1,4892-1 +4344,1,4024-6 +4345,1,4514-1 +4346,1,4473-1 +4347,1,7626-1 +4352,1,7050-1 +4353,1,8227-1 +4354,1,2000431-1 +4357,1,852001-1 +4358,1,6899-1 +4359,1,196-1 +4360,1,6628-1 +4361,1,6610-1 +4362,1,3711-1 +4363,1,7894-1 +4365,1,65535-1 +4366,1,3038-1 +4367,1,3468-1 +4369,1,2520-1 +4370,1,75088-1 +4373,1,DKBATMANVD-1 +4374,1,5134-1 +4375,1,4796-1 +4377,1,5068-1 +4379,1,1609-1 +4381,1,8402-1 +4382,1,lmg009-1 +4383,1,213-2 +4385,1,391407-1 +4387,1,1129-2 +4389,1,1430-1 +4391,1,30260-1 +4392,1,8080-1 +4394,1,1974-1 +4397,1,5003562-1 +4400,1,B110-1 +4402,1,4797-1 +4403,1,1827-1 +4406,1,5059-1 +4407,1,8904-1 +4408,1,1181-1 +4410,1,7317-1 +4411,1,Beachwood-1 +4412,1,30031-1 +4413,1,9495-1 +4415,1,7324-9 +4418,1,8805-15 +4421,1,5300-1 +4422,1,6834-1 +4423,1,7597-1 +4424,1,7648-1 +4425,1,2532-1 +4426,1,45508-1 +4427,1,390-1 +4428,1,1223-1 +4429,1,5004248-1 +4430,1,4499536-1 +4434,1,3654-1 +4436,1,2147-1 +4439,1,1656-2 +4440,1,744-1 +4441,1,5531-1 +4442,1,7816-1 +4443,1,7714-1 +4444,1,3179-1 +4446,1,1727-1 +4451,1,9509-15 +4452,1,llca12-1 +4453,1,3470-1 +4454,1,7596-1 +4455,1,71002-8 +4456,1,112-1 +4457,1,7907-18 +4458,1,8154-1 +4459,1,650-1 +4460,1,60003-1 +4462,1,381-1 +4463,1,70335-1 +4464,1,709-1 +4467,1,1983-1 +4469,1,8803-16 +4470,1,40205-1 +4471,1,8604-1 +4472,1,10129-1 +4475,1,912-1 +4477,1,6752-1 +4478,1,9509-7 +4479,1,7645-1 +4480,1,9093-1 +4481,1,6486-1 +4482,1,4150-1 +4486,1,70704-1 +4487,1,6761-1 +4488,1,987-1 +4489,1,108-1 +4490,1,5107-1 +4491,1,45302-1 +4492,1,1965-1 +4493,1,8005-1 +4494,1,TRUBATSIGNAL-1 +4496,1,3668-1 +4498,1,7090-1 +4499,1,8899-1 +4500,1,1357-1 +4502,1,41015-1 +4504,1,1670-1 +4505,1,8482-1 +4506,1,7712-1 +4507,1,9091-1 +4508,1,384-1 +4509,1,41016-24 +4510,1,6085-1 +4511,1,41554-1 +4512,1,8445-1 +4513,1,8837-1 +4514,1,4552-1 +4516,1,9445-1 +4517,1,6202-2 +4518,1,6477-1 +4520,1,40217-1 +4521,1,4024-16 +4525,1,5076-1 +4526,1,8126-1 +4527,1,9824-1 +4528,1,853143-1 +4529,1,7857-1 +4530,1,10152-1 +4531,1,456-1 +4532,1,1865-1 +4533,1,2250-19 +4535,1,4025-1 +4536,1,kabstud-1 +4537,1,71315-1 +4538,1,6567-1 +4539,1,2853835-1 +4542,1,3194-1 +4545,1,1694-1 +4548,1,41040-10 +4550,1,4622-1 +4551,1,70162-1 +4552,1,4017-1 +4553,1,K8978-1 +4558,1,2845-1 +4559,1,5002112-1 +4560,1,3025-1 +4563,1,1979-1 +4564,1,991404-1 +4565,1,3195-1 +4567,1,10213sup-1 +4568,1,10692-1 +4570,1,66290-1 +4574,1,75917-1 +4576,1,235-1 +4577,1,66207-1 +4578,1,75126-1 +4579,1,5626-1 +4580,1,10252-1 +4581,1,75900-1 +4582,1,10567-1 +4583,1,7574-25 +4584,1,41034-1 +4585,1,3839-1 +4586,1,10237-1 +4587,1,6902-1 +4588,1,8704-1 +4589,1,3189-1 +4590,1,6401-1 +4591,1,7958-22 +4592,1,1069-1 +4593,1,60136-1 +4594,1,7615-1 +4596,1,71240-1 +4597,1,5272-1 +4598,1,5617-1 +4601,1,7948-1 +4604,1,1703-1 +4605,1,7312-1 +4606,1,10676-1 +4607,1,71007-5 +4608,1,6403-1 +4609,1,0013-1 +4610,1,21029-1 +4611,1,9-3 +4612,1,4596-1 +4616,1,8067-1 +4617,1,8813-1 +4618,1,9833-3 +4619,1,7952-11 +4620,1,4202-1 +4622,1,282-2 +4624,1,71002-9 +4625,1,200M-1 +4629,1,2585-1 +4634,1,9960-1 +4635,1,3075-1 +4636,1,991331-2 +4638,1,4002014-1 +4639,1,70004-1 +4640,1,60063-20 +4641,1,2069-1 +4643,1,VP-7 +4645,1,40126-1 +4646,1,6436-1 +4648,1,TRUXWING-1 +4649,1,852996-1 +4650,1,6591-1 +4652,1,6898-1 +4653,1,9509-11 +4654,1,7810-1 +4655,1,5003575-1 +4657,1,7907-25 +4661,1,7600-15 +4663,1,5986-1 +4665,1,2250-6 +4666,1,71008-18 +4667,1,1269-1 +4668,1,5048-1 +4669,1,3300002-1 +4670,1,8804-8 +4671,1,3865-1 +4672,1,350-3 +4674,1,70225-1 +4676,1,30073-1 +4678,1,6323-1 +4679,1,75056-10 +4682,1,30080-1 +4684,1,NIN891612-1 +4685,1,8816-1 +4686,1,41095-1 +4687,1,30280-1 +4690,1,bilmasks-1 +4693,1,970621-1 +4696,1,3342-1 +4698,1,30091-1 +4699,1,853353-1 +4700,1,9852-1 +4701,1,1296-1 +4702,1,2912-1 +4704,1,613-1 +4705,1,4502-2 +4708,1,9218-1 +4709,1,6036-1 +4710,1,124-1 +4712,1,9457-1 +4714,1,1577-1 +4716,1,3622-1 +4717,1,7579-1 +4718,1,7522-1 +4719,1,4117463-1 +4720,1,5116-1 +4721,1,4679-2 +4722,1,Manchester-1 +4723,1,5062-1 +4726,1,8555-1 +4728,1,5199-1 +4732,1,7143-1 +4733,1,5506-1 +4737,1,7553-25 +4739,1,66414-1 +4740,1,4421-1 +4741,1,700.B.1-1 +4744,1,30105-1 +4745,1,4452-1 +4746,1,7031-1 +4748,1,6021-1 +4749,1,7072-1 +4751,1,30244-1 +4752,1,2187-1 +4753,1,10568-1 +4754,1,602-1 +4756,1,533-1 +4757,1,6087-1 +4760,1,15-2 +4761,1,2250-9 +4763,1,6161-1 +4764,1,10659-1 +4765,1,4644-1 +4766,1,382-1 +4767,1,9930-1 +4768,1,387-1 +4769,1,41566-1 +4771,1,66331-1 +4773,1,10030-1 +4775,1,3429-1 +4776,1,7566-1 +4779,1,3500-1 +4780,1,8465-1 +4782,1,9479-1 +4783,1,853444-1 +4788,1,4214-1 +4790,1,4287082-1 +4791,1,8827-8 +4792,1,fruit3-1 +4794,1,44011-1 +4795,1,30015-1 +4796,1,60091-1 +4798,1,561410-1 +4799,1,391-1 +4801,1,648-1 +4805,1,6231-1 +4806,1,KT305-1 +4807,1,5004251-1 +4808,1,7047-1 +4810,1,8203-1 +4811,1,3347-1 +4813,1,7962-1 +4814,1,4482-1 +4815,1,41040-17 +4816,1,1267-1 +4817,1,60147-1 +4819,1,6099-1 +4820,1,1495-1 +4821,1,70322-1 +4822,1,5590-1 +4824,1,427-1 +4827,1,494-1 +4828,1,7668-1 +4829,1,4504-2 +4832,1,kk2vp1-1 +4835,1,6441-1 +4836,1,FR561609-1 +4838,1,158-1 +4840,1,8081-1 +4841,1,3605-1 +4844,1,4625-1 +4845,1,31050-1 +4846,1,71008-12 +4847,1,1991-1 +4848,1,8696-1 +4849,1,1624-1 +4854,1,75076-1 +4856,1,79001-1 +4857,1,9376-1 +4858,1,530-1 +4859,1,75017-1 +4860,1,8833-6 +4861,1,970009-1 +4862,1,6325-1 +4863,1,66188-1 +4864,1,42048-1 +4865,1,5289-1 +4866,1,20018-1 +4867,1,70232-1 +4868,1,vwkit-1 +4869,1,41043-1 +4871,1,75023-11 +4872,1,4553-1 +4874,1,K8586-1 +4875,1,71000-0 +4877,1,41016-14 +4878,1,5004196-1 +4880,1,42006-1 +4881,1,6351-1 +4883,1,8901-1 +4884,1,5002123-1 +4885,1,4613-1 +4886,1,858-1 +4887,1,6713-1 +4888,1,6946-1 +4889,1,30312-1 +4890,1,7684-1 +4891,1,8690-1 +4892,1,10040-1 +4893,1,6611-1 +4894,1,71014-7 +4895,1,7813-1 +4899,1,4113-1 +4902,1,6712-1 +4904,1,10002-1 +4905,1,7221-1 +4906,1,7324-19 +4907,1,6043173-1 +4908,1,41131-1 +4909,1,120438-1 +4912,1,125-1 +4913,1,7016-1 +4914,1,9558-1 +4917,1,758-1 +4918,1,65642-1 +4920,1,4024-17 +4921,1,2130-1 +4922,1,755-1 +4923,1,4286784-1 +4924,1,4738-1 +4925,1,622-1 +4926,1,7786-1 +4928,1,1276-1 +4929,1,5841-1 +4930,1,497-1 +4932,1,8714-1 +4933,1,8207-1 +4934,1,3530-1 +4935,1,622-2 +4936,1,7600-11 +4937,1,2519-1 +4938,1,1702-1 +4939,1,44004-1 +4940,1,6133-1 +4941,1,66495-1 +4943,1,1910-1 +4944,1,5136-1 +4945,1,41177-1 +4946,1,8892-1 +4947,1,4286013-1 +4948,1,C8509-1 +4950,1,60024-18 +4951,1,3937-1 +4952,1,6975-1 +4953,1,6606-1 +4954,1,6896-1 +4955,1,4493-1 +4957,1,304-2 +4958,1,6311-1 +4959,1,70100-1 +4961,1,4744-1 +4963,1,231-2 +4964,1,5043-1 +4965,1,1329-1 +4966,1,8721-1 +4967,1,1980-1 +4968,1,324-1 +4969,1,65799-1 +4971,1,5004260-1 +4974,1,4548431-1 +4975,1,658-1 +4976,1,6370-1 +4977,1,8829-1 +4978,1,4709-1 +4979,1,4163-1 +4980,1,8133-1 +4982,1,4428-19 +4985,1,EL241501-1 +4987,1,8684-17 +4989,1,4933-1 +4990,1,5924-1 +4991,1,60104-1 +4992,1,1905-1 +4993,1,VP-1 +4994,1,2008-1 +4995,1,45001-1 +4999,1,7510-1 +5000,1,720-2 +5001,1,4924-19 +5002,1,70226-1 +5003,1,71012-3 +5004,1,0014-1 +5005,1,40120-1 +5007,1,5387-1 +5008,1,3900-1 +5009,1,8742-1 +5013,1,8804-11 +5014,1,41176-1 +5015,1,42058-1 +5016,1,3426-1 +5017,1,4635-1 +5018,1,41058-1 +5020,1,6119-1 +5021,1,41016-5 +5023,1,853261-1 +5025,1,30033-1 +5027,1,6826-1 +5028,1,853373-1 +5029,1,5861-1 +5032,1,6719-1 +5033,1,8297-1 +5034,1,60129-1 +5035,1,8573-1 +5036,1,5415-1 +5037,1,70318-1 +5038,1,31045-1 +5039,1,K7422-1 +5040,1,5763-1 +5044,1,fruit7-1 +5048,1,71004-13 +5049,1,8793-1 +5050,1,6473-1 +5052,1,2586-1 +5053,1,7600-3 +5054,1,3000-1 +5056,1,8979-1 +5057,1,901-2 +5059,1,6208-1 +5061,1,6889-1 +5062,1,4428-2 +5065,1,40011-1 +5066,1,4024-10 +5067,1,7741-1 +5068,1,8518-1 +5069,1,5491-1 +5070,1,9496-1 +5071,1,519-15 +5073,1,6090-1 +5075,1,4428-22 +5079,1,70736-1 +5080,1,010-3 +5081,1,60095-1 +5082,1,852786-1 +5083,1,70135-1 +5086,1,7243-1 +5087,1,0011-2 +5088,1,comcon011-1 +5091,1,4000005-1 +5093,1,6271-2 +5095,1,40191-1 +5097,1,1723-1 +5098,1,2849-1 +5102,1,lmg003-2 +5104,1,30261-1 +5107,1,70204-1 +5109,1,1230-1 +5110,1,66328-1 +5111,1,3559-1 +5112,1,7946-1 +5114,1,K7699-1 +5115,1,970662-1 +5119,1,30278-1 +5120,1,4042-1 +5121,1,70747-1 +5122,1,8031-1 +5123,1,NEO1048-1 +5125,1,6651-1 +5126,1,4506-1 +5127,1,LLCA29-1 +5128,1,6352-1 +5129,1,2250-15 +5131,1,851341-1 +5133,1,71004-17 +5134,1,6623-1 +5137,1,K8614-1 +5138,1,60056-1 +5139,1,21000-2 +5141,1,8301-1 +5142,1,2885-1 +5144,1,DKStarWars-1 +5145,1,8-4 +5146,1,2540-1 +5147,1,10186-1 +5148,1,1202-1 +5149,1,1215-1 +5150,1,10046-1 +5152,1,41006-1 +5153,1,10178-1 +5154,1,8774-1 +5156,1,5394-1 +5157,1,4733-1 +5159,1,3480-1 +5160,1,8586-1 +5162,1,fruit6-1 +5163,1,71213-1 +5164,1,30203-1 +5165,1,5870-1 +5166,1,7958-19 +5167,1,70201-1 +5169,1,75915-1 +5170,1,10156-1 +5171,1,4649858-1 +5172,1,75106-1 +5173,1,5930-1 +5174,1,9973-1 +5175,1,4524-2 +5176,1,8143-1 +5178,1,8827-5 +5180,1,70808-1 +5181,1,75140-1 +5183,1,K8915-1 +5184,1,283-1 +5185,1,60051-1 +5186,1,30185-1 +5188,1,71013-15 +5189,1,8508-1 +5190,1,4578-1 +5191,1,7685-1 +5192,1,8163-1 +5193,1,3316-20 +5194,1,4428-4 +5195,1,KT403-1 +5196,1,4924-2 +5197,1,71011-0 +5198,1,6205-1 +5202,1,640-2 +5204,1,5880-1 +5205,1,7880-1 +5206,1,8831-14 +5208,1,10677-1 +5210,1,6850-1 +5211,1,21103-1 +5212,1,7704-1 +5213,1,10249-1 +5214,1,4119-1 +5217,1,880001-1 +5218,1,8759-1 +5219,1,7168-1 +5222,1,71010-7 +5223,1,260-1 +5225,1,1887-1 +5227,1,75023-12 +5230,1,7907-21 +5232,1,71012-7 +5234,1,5010-1 +5237,1,71007-10 +5238,1,6299-4 +5239,1,7952-20 +5240,1,7692-1 +5241,1,30057-1 +5243,1,2890-1 +5244,1,71239-1 +5245,1,4756-1 +5246,1,1129-1 +5247,1,852271-1 +5248,1,K8102-1 +5249,1,41023-1 +5251,1,71011-15 +5252,1,70164-1 +5254,1,7631-1 +5255,1,344-1 +5257,1,850918-1 +5258,1,6697-1 +5259,1,1218-1 +5261,1,7727-1 +5262,1,361-1 +5263,1,3059-1 +5266,1,700GP0-1 +5268,1,71013-16 +5270,1,3186-1 +5273,1,71010-9 +5274,1,70133-1 +5275,1,10721-1 +5276,1,75023-17 +5278,1,8805-4 +5280,1,8645-1 +5281,1,76058-1 +5284,1,1171-1 +5285,1,8503-1 +5287,1,989-1 +5288,1,8441-1 +5291,1,8865-1 +5292,1,8664-1 +5293,1,2255-1 +5294,1,3439-1 +5295,1,71005-12 +5297,1,151-1 +5299,1,70403-1 +5300,1,6451-1 +5302,1,40153-1 +5304,1,76060-1 +5305,1,851353-1 +5306,1,3316-21 +5307,1,70700-1 +5308,1,852553-1 +5309,1,1286-1 +5313,1,lmg007-1 +5314,1,41040-22 +5315,1,2139-1 +5316,1,8440-1 +5317,1,5533-1 +5320,1,5401-1 +5321,1,21127-1 +5322,1,60048-1 +5323,1,10012-1 +5324,1,5246-1 +5325,1,70701-1 +5326,1,5512-1 +5327,1,70590-1 +5328,1,132-1 +5329,1,7158-1 +5330,1,3072-1 +5331,1,565-2 +5332,1,697-1 +5334,1,6900-1 +5336,1,75872-1 +5337,1,71013-4 +5338,1,922-2 +5339,1,75125-1 +5341,1,961-1 +5342,1,30398-1 +5343,1,6478-1 +5344,1,8684-2 +5345,1,4841-1 +5346,1,8384-1 +5347,1,10708-1 +5348,1,3983-1 +5351,1,5001622-1 +5353,1,60062-1 +5354,1,4301-1 +5355,1,30243-1 +5356,1,2164-1 +5357,1,4962-1 +5358,1,K10158-1 +5361,1,4753-1 +5363,1,2824-8 +5366,1,71001-17 +5368,1,30371-1 +5369,1,7280-1 +5370,1,FRNDSMAGBEACH-1 +5372,1,6654-1 +5373,1,7336-1 +5374,1,7835-1 +5375,1,6346-1 +5376,1,7212-1 +5377,1,60109-1 +5379,1,148-1 +5381,1,7600-16 +5385,1,10622-1 +5386,1,8831-17 +5387,1,7998-1 +5388,1,851400-1 +5389,1,7575-12 +5390,1,60114-1 +5391,1,428-1 +5393,1,6790-1 +5394,1,10520-1 +5395,1,3419-1 +5399,1,6963-2 +5400,1,4559-1 +5401,1,9938-1 +5403,1,6136-1 +5404,1,comcon015-1 +5408,1,6291-1 +5409,1,10055-1 +5410,1,9555-1 +5411,1,1063-1 +5412,1,1207-1 +5413,1,79107-1 +5414,1,ldd3-1 +5415,1,183-1 +5416,1,5845-1 +5417,1,2161-1 +5419,1,520-8 +5422,1,642-2 +5424,1,1336-1 +5425,1,9092-1 +5426,1,8293-1 +5427,1,6429-1 +5428,1,852844-1 +5429,1,8469-1 +5430,1,40128-1 +5431,1,9569-1 +5432,1,K7418-1 +5433,1,7324-5 +5434,1,76046-1 +5435,1,4945-1 +5436,1,1555-2 +5437,1,71007-8 +5441,1,10113-1 +5443,1,7600-9 +5444,1,5985-1 +5445,1,5002941-1 +5447,1,850648-1 +5448,1,8117-1 +5450,1,330-2 +5451,1,911506-1 +5452,1,3479-1 +5453,1,30141-1 +5454,1,5610-1 +5455,1,6608-1 +5456,1,5004250-1 +5457,1,853340-1 +5458,1,8038-1 +5460,1,5004606-1 +5461,1,134-1 +5463,1,8156-1 +5464,1,8799-1 +5465,1,4842-1 +5468,1,45506-1 +5469,1,480-4 +5471,1,2229-1 +5472,1,6848-2 +5473,1,40081-5 +5474,1,8495-1 +5475,1,8831-13 +5476,1,1818-1 +5477,1,7904-3 +5478,1,970113-1 +5481,1,60058-1 +5482,1,30396-1 +5483,1,3928-1 +5484,1,LOC391508-1 +5486,1,Chandler-1 +5487,1,3926-1 +5488,1,20006-1 +5489,1,3663-1 +5490,1,9442-1 +5491,1,65801-1 +5492,1,5317-1 +5493,1,688-1 +5496,1,71014-4 +5497,1,8475-1 +5498,1,8786-2 +5499,1,3219-1 +5500,1,78777-1 +5502,1,850936-1 +5505,1,8527-1 +5506,1,4124-14 +5507,1,1219-2 +5508,1,850653-1 +5509,1,10682-1 +5511,1,4999-1 +5512,1,785-1 +5513,1,8294-1 +5514,1,10183-1 +5516,1,10240-1 +5517,1,40116-1 +5518,1,71001-0 +5519,1,1973-1 +5520,1,3732-1 +5521,1,4942-1 +5522,1,4604-1 +5523,1,8034-1 +5524,1,5003027-1 +5525,1,7241-1 +5526,1,157-2 +5530,1,2824-25 +5532,1,9842-1 +5533,1,6082-1 +5534,1,8429-1 +5537,1,75115-1 +5539,1,372-1 +5541,1,2856224-1 +5542,1,3408-1 +5544,1,1235-1 +5545,1,Victor-1 +5549,1,41024-1 +5551,1,NIN891508-1 +5553,1,8803-18 +5554,1,8804-17 +5555,1,7066-1 +5556,1,70819-1 +5559,1,76028-1 +5560,1,71251-1 +5561,1,3384-1 +5562,1,4611-1 +5563,1,394-1 +5564,1,7324-8 +5565,1,1137-1 +5566,1,8541-1 +5567,1,9571-1 +5572,1,8191-1 +5573,1,2856236-1 +5574,1,00-1 +5575,1,5184-1 +5576,1,8954-1 +5577,1,1236-3 +5579,1,4679a-2 +5580,1,4497-1 +5581,1,9509-20 +5582,1,71006-1 +5583,1,1995-1 +5584,1,75080-1 +5586,1,10514-1 +5587,1,1974-4 +5588,1,9961-1 +5589,1,8519-1 +5590,1,850670-1 +5593,1,233-1 +5595,1,cnminifigs-1 +5596,1,6327-1 +5597,1,2963-1 +5599,1,8944-1 +5600,1,5004550-1 +5601,1,comcon038-1 +5602,1,75873-1 +5604,1,6511-1 +5606,1,277-1 +5607,1,6362-1 +5609,1,7223-2 +5611,1,400-4 +5612,1,9353-1 +5613,1,6061-1 +5614,1,9217-1 +5615,1,31002-1 +5619,1,4643-1 +5621,1,3243-1 +5623,1,7574-23 +5624,1,561505-1 +5625,1,8846-1 +5626,1,fruit1-1 +5629,1,5680-1 +5630,1,6093-1 +5631,1,6407-1 +5632,1,8804-5 +5633,1,60022-1 +5634,1,6447-1 +5635,1,71004-5 +5636,1,10583-1 +5638,1,7942-1 +5639,1,2136-1 +5640,1,Watford-1 +5642,1,2193-1 +5643,1,1164-1 +5644,1,4662-1 +5645,1,K8747-1 +5646,1,70142-1 +5647,1,9781409350545-1 +5649,1,3750-1 +5651,1,8637-1 +5652,1,8458-1 +5654,1,4868-1 +5655,1,8831-9 +5658,1,71011-2 +5659,1,10554-1 +5660,1,6017-1 +5661,1,9361-1 +5662,1,3939-1 +5663,1,140-2 +5665,1,41111-1 +5667,1,31020-1 +5669,1,1076-7 +5671,1,4297-1 +5672,1,1581-2 +5673,1,4244-1 +5674,1,7656-1 +5675,1,tktour-1 +5677,1,9632-1 +5680,1,7015-1 +5681,1,1969-1 +5682,1,7658-1 +5684,1,70723-1 +5685,1,4212838-1 +5686,1,9840-1 +5687,1,40105-1 +5690,1,10146-1 +5691,1,9441-1 +5693,1,6848-3 +5694,1,980-2 +5698,1,9287-1 +5699,1,3226-1 +5700,1,3305-3 +5701,1,1929-1 +5702,1,9845-1 +5703,1,1174-1 +5704,1,5294-1 +5705,1,7594-1 +5706,1,SanDiego-1 +5708,1,45120-1 +5709,1,3637-1 +5710,1,200A-1 +5714,1,40214-1 +5715,1,7687-16 +5718,1,850686-1 +5721,1,4924-14 +5723,1,7-3 +5725,1,5003569-1 +5726,1,8827-16 +5730,1,60086-1 +5732,1,1218-2 +5734,1,3074-1 +5735,1,30274-1 +5736,1,5706-1 +5737,1,8114-1 +5738,1,7207-1 +5739,1,9585-1 +5740,1,K8380-1 +5741,1,1762-1 +5742,1,705-4 +5744,1,4483-1 +5745,1,4051-1 +5748,1,7720-1 +5749,1,1604-1 +5750,1,3828-1 +5751,1,850487-1 +5753,1,9667-1 +5754,1,75004-1 +5756,1,3406-1 +5757,1,4288-1 +5760,1,365-1 +5762,1,8096-1 +5766,1,7017-1 +5768,1,6490-1 +5769,1,1896-1 +5771,1,30187-1 +5776,1,3659-1 +5777,1,7907-7 +5778,1,970120-1 +5779,1,4347-2 +5781,1,70141-1 +5782,1,6299-16 +5783,1,4446-1 +5784,1,8683-7 +5786,1,3013-1 +5787,1,371-2 +5788,1,9972-1 +5789,1,30216-1 +5791,1,1076-22 +5794,1,60063-5 +5795,1,6671-1 +5796,1,7912-1 +5798,1,41016-10 +5799,1,1246-1 +5801,1,44005-1 +5803,1,8284-2 +5804,1,6335-1 +5805,1,71210-1 +5806,1,70596-1 +5807,1,9786-1 +5808,1,C8500-1 +5809,1,2172-1 +5810,1,8255-1 +5812,1,41016-19 +5815,1,850952-1 +5819,1,8616-2 +5820,1,2250-25 +5821,1,1557-1 +5822,1,5000023-1 +5824,1,4940-1 +5825,1,3724-1 +5827,1,1773-1 +5829,1,396-1 +5830,1,282-1 +5831,1,31040-1 +5833,1,4000002-1 +5834,1,71007-16 +5835,1,3782-1 +5837,1,4206-1 +5838,1,850581-1 +5839,1,66311-1 +5840,1,5235-2 +5841,1,6741-1 +5842,1,4742-1 +5843,1,8155-1 +5845,1,7553-2 +5846,1,4527-1 +5847,1,853471-1 +5848,1,6753-1 +5849,1,8833-1 +5850,1,70591-1 +5852,1,7574-12 +5853,1,8009-1 +5854,1,9509-9 +5855,1,65364-1 +5856,1,Nashville-1 +5857,1,66357-1 +5858,1,7600-6 +5859,1,4723-1 +5860,1,8719-1 +5861,1,3316-7 +5862,1,370-1 +5864,1,30349-1 +5865,1,3453-1 +5866,1,8866-1 +5867,1,420-1 +5869,1,7297-1 +5870,1,1743-1 +5871,1,1298-22 +5872,1,5060-1 +5873,1,10165-1 +5875,1,41016-18 +5878,1,6281-1 +5879,1,60064-1 +5880,1,2840-1 +5881,1,6965-1 +5882,1,10005-1 +5884,1,1210-1 +5886,1,Indianapolis-1 +5887,1,137-2 +5889,1,10242-1 +5890,1,8097-1 +5892,1,6114-1 +5893,1,6781-1 +5894,1,8122-1 +5895,1,565-1 +5896,1,71235-1 +5898,1,60027-1 +5899,1,71008-14 +5901,1,7422-2 +5902,1,10579-1 +5903,1,8821-1 +5904,1,66362-1 +5906,1,4070-1 +5907,1,70114-1 +5909,1,31041-1 +5910,1,8827-2 +5913,1,606-1 +5914,1,5195-1 +5915,1,5004605-1 +5916,1,561507-1 +5918,1,9939-1 +5919,1,1660-1 +5920,1,7681-1 +5921,1,30032-1 +5922,1,6932-1 +5924,1,79011-1 +5925,1,7675-1 +5927,1,994-1 +5929,1,21303-1 +5930,1,30023-1 +5932,1,41541-1 +5934,1,4947-1 +5938,1,7965-1 +5939,1,8259-1 +5940,1,llca7-1 +5943,1,70802-1 +5944,1,2856223-1 +5945,1,lwp01-1 +5946,1,8748-1 +5947,1,951-1 +5949,1,8741-1 +5951,1,4895-1 +5953,1,75824-1 +5954,1,6047-1 +5955,1,K9916-1 +5959,1,8111-1 +5960,1,7731-1 +5962,1,4243532-1 +5963,1,4793-1 +5965,1,41040-4 +5966,1,4567-1 +5967,1,7952-8 +5968,1,8952-1 +5970,1,K8929-1 +5972,1,40222-1 +5973,1,30083-1 +5974,1,7798-1 +5975,1,5070-1 +5976,1,6175-1 +5977,1,781-1 +5978,1,800-2 +5979,1,5001371-1 +5980,1,2982-1 +5982,1,3331-1 +5984,1,224-3 +5985,1,6508-1 +5986,1,6299-7 +5987,1,7795-1 +5989,1,10616-1 +5990,1,K8107-1 +5993,1,8140-1 +5994,1,42009-1 +5995,1,5938-1 +5996,1,FR561611-1 +5997,1,7914-1 +6000,1,7261-1 +6001,1,4469-1 +6003,1,220-1 +6004,1,5475-1 +6005,1,31033-1 +6006,1,10511-1 +6007,1,5288-1 +6008,1,4161-1 +6009,1,8-2 +6011,1,41579-1 +6014,1,7204-1 +6017,1,4000013-1 +6020,1,7274-1 +6021,1,5004115-1 +6022,1,1115-1 +6023,1,LOC391406-1 +6024,1,891503-1 +6026,1,75021-1 +6027,1,30242-1 +6029,1,7324-11 +6030,1,3018-1 +6031,1,1922-2 +6032,1,4585-1 +6033,1,5489-1 +6034,1,65542-1 +6035,1,42027-1 +6037,1,31039-1 +6038,1,75023-9 +6041,1,706-4 +6042,1,6228-1 +6044,1,41040-13 +6045,1,2283-1 +6046,1,30110-1 +6050,1,65524-1 +6051,1,265-1 +6054,1,8619-2 +6055,1,237-1 +6056,1,1135-3 +6057,1,2250-3 +6058,1,5935-1 +6061,1,3856-1 +6064,1,10026-1 +6066,1,66451-1 +6067,1,3716-1 +6068,1,30054-1 +6069,1,60047-1 +6070,1,7600-20 +6072,1,21005-1 +6074,1,5245-1 +6075,1,2824-14 +6076,1,6530-1 +6079,1,853448-1 +6080,1,4524-17 +6081,1,6602-1 +6083,1,351-1 +6086,1,4924-1 +6089,1,519-9 +6092,1,71001-5 +6093,1,1597-1 +6094,1,3676-1 +6095,1,30120-1 +6098,1,420-4 +6099,1,8380-1 +6101,1,7287-1 +6102,1,4134-1 +6103,1,3316-4 +6105,1,3323-1 +6106,1,40124-1 +6107,1,42059-1 +6108,1,1076-16 +6109,1,7860-1 +6111,1,156-1 +6112,1,Munich-1 +6113,1,10067-1 +6114,1,2064-1 +6116,1,31060-1 +6117,1,K8645-1 +6118,1,10167-1 +6119,1,60084-1 +6120,1,7830-1 +6121,1,1284-1 +6125,1,7715-1 +6127,1,930-1 +6128,1,2856453-1 +6129,1,606-2 +6130,1,5853-1 +6131,1,70128-1 +6132,1,10561-1 +6134,1,970119-1 +6135,1,8879-1 +6136,1,60126-1 +6137,1,4428-12 +6139,1,9888-1 +6140,1,494-2 +6141,1,871-1 +6144,1,7200-1 +6145,1,5260-1 +6146,1,10236-1 +6148,1,6772-1 +6149,1,214.8-1 +6150,1,60024-17 +6151,1,75058-1 +6152,1,7534-1 +6156,1,6315-1 +6159,1,3860-1 +6160,1,9695-1 +6161,1,2111-1 +6164,1,8684-1 +6165,1,9021-1 +6167,1,8603-1 +6168,1,3066-3 +6170,1,TRULUMIERE-1 +6172,1,41144-1 +6173,1,6699-1 +6174,1,7979-1 +6175,1,30302-1 +6177,1,7722-1 +6179,1,851015-1 +6180,1,7246-1 +6181,1,K8008-1 +6183,1,75111-1 +6184,1,242-1 +6185,1,21123-1 +6186,1,5002930-1 +6187,1,41035-1 +6188,1,948-1 +6189,1,4000007-1 +6190,1,8957-1 +6192,1,8443-1 +6193,1,805-1 +6194,1,K8942-1 +6196,1,40218-1 +6199,1,6492-1 +6200,1,5275-1 +6202,1,75114-1 +6203,1,1492-1 +6204,1,40012-1 +6205,1,66247-1 +6206,1,2250-2 +6208,1,71008-1 +6209,1,40193-1 +6210,1,1342-1 +6211,1,3677-1 +6212,1,7721-1 +6213,1,9664-1 +6215,1,3558-1 +6216,1,383-2 +6217,1,5003586-1 +6218,1,8517-1 +6219,1,708-3 +6220,1,7179-1 +6223,1,6299-10 +6224,1,3430-1 +6225,1,4117-1 +6226,1,42038-1 +6227,1,970623-1 +6229,1,7725-1 +6231,1,8859-1 +6232,1,30167-1 +6233,1,933-1 +6235,1,27-2 +6236,1,21128-1 +6237,1,5271-1 +6238,1,4616-1 +6239,1,5003-1 +6240,1,70739-1 +6241,1,K9833-1 +6242,1,75055-1 +6243,1,4746-1 +6246,1,1215-2 +6248,1,238-5 +6249,1,7504-1 +6251,1,75023-21 +6253,1,kabdino-1 +6254,1,5914-1 +6255,1,9395-1 +6257,1,76029-1 +6258,1,4428-9 +6259,1,10144-1 +6261,1,3464-1 +6262,1,970669-1 +6263,1,45500-1 +6264,1,1562-1 +6265,1,421-1 +6266,1,8827-15 +6267,1,60063-12 +6268,1,70502-1 +6269,1,3316-12 +6272,1,7094-1 +6274,1,8264-1 +6275,1,75056-21 +6276,1,66397-1 +6277,1,75056-16 +6279,1,214.5-1 +6280,1,75023-24 +6282,1,K7906-1 +6283,1,4219-1 +6284,1,4024-2 +6288,1,60063-24 +6290,1,503-1 +6291,1,3540-1 +6292,1,6848-1 +6293,1,5038-1 +6294,1,7853-1 +6296,1,66329-1 +6298,1,155-1 +6301,1,4181-1 +6302,1,4998-1 +6303,1,8115-1 +6307,1,21034-1 +6309,1,3636-1 +6310,1,30310-1 +6311,1,7958-6 +6312,1,7664-1 +6316,1,6049-1 +6317,1,45507-1 +6319,1,2856089-1 +6320,1,4032-2 +6321,1,40081-2 +6322,1,7724-24 +6323,1,3183-1 +6324,1,8589-3 +6325,1,2171-1 +6326,1,2260-1 +6327,1,5113-1 +6328,1,31014-1 +6329,1,3557-1 +6330,1,K4531-1 +6331,1,K8725-1 +6332,1,41301-1 +6333,1,10697-1 +6334,1,7683-1 +6335,1,6350-1 +6336,1,65849-1 +6337,1,21033-1 +6338,1,3346-1 +6340,1,3647-1 +6341,1,19-2 +6344,1,1480-1 +6345,1,918-yellow-2 +6346,1,7110-1 +6347,1,7251-1 +6349,1,10007-1 +6350,1,21015-1 +6351,1,8229-1 +6352,1,71171-1 +6354,1,8800-1 +6355,1,40030-1 +6356,1,1146-1 +6357,1,TRUJOKERMECH-1 +6358,1,30320-1 +6360,1,7955-1 +6361,1,5952-1 +6362,1,6016-1 +6363,1,3759-1 +6368,1,4991-1 +6369,1,8542-1 +6371,1,K4479-1 +6375,1,4428-14 +6377,1,5279-1 +6378,1,601-1 +6379,1,415-1 +6381,1,643-1 +6382,1,7996-1 +6383,1,8967-1 +6384,1,LBCITYSPACE-1 +6385,1,40133-1 +6386,1,853092-1 +6387,1,8661-1 +6388,1,3564-1 +6389,1,1109-1 +6390,1,2872-1 +6391,1,7044-1 +6392,1,6031-1 +6394,1,70721-1 +6395,1,6666-1 +6397,1,213-1 +6398,1,615-2 +6399,1,DKAtlantis-1 +6400,1,30088-1 +6402,1,5004853-1 +6403,1,70012-1 +6404,1,979760-1 +6405,1,41040-23 +6408,1,1240-2 +6409,1,10179-1 +6410,1,632-1 +6411,1,41049-1 +6412,1,1867-1 +6413,1,42029-1 +6414,1,NEX271611-1 +6415,1,LOC391507-1 +6416,1,20214-1 +6417,1,660-1 +6418,1,5319-1 +6419,1,42032-1 +6420,1,7173-1 +6421,1,333-1 +6422,1,2964-1 +6423,1,65186-1 +6424,1,65573-1 +6426,1,65767-1 +6427,1,10542-1 +6428,1,3432-1 +6430,1,1380-1 +6432,1,891-1 +6434,1,812-2 +6435,1,103-1 +6437,1,1310-1 +6438,1,7890-1 +6439,1,6299-22 +6440,1,7724-22 +6441,1,21115-1 +6442,1,7679-1 +6443,1,238-3 +6444,1,41505-1 +6447,1,K8927-1 +6448,1,853176-1 +6449,1,970677-1 +6451,1,comcon004-1 +6452,1,7574-13 +6453,1,kabspace-1 +6454,1,8851-1 +6455,1,7417-1 +6456,1,7257-1 +6457,1,2841-1 +6458,1,7772-1 +6462,1,21304-1 +6463,1,4806-1 +6464,1,266-1 +6466,1,7724-17 +6467,1,521-14 +6469,1,851343-1 +6470,1,3300000-1 +6471,1,3788-1 +6474,1,8667-1 +6477,1,9486-1 +6480,1,3761-1 +6481,1,7553-18 +6484,1,41538-1 +6485,1,5307-1 +6486,1,65769-1 +6487,1,852351-1 +6490,1,31049-1 +6494,1,297-1 +6495,1,5129-1 +6496,1,8684-5 +6497,1,30012-1 +6499,1,3721-1 +6500,1,6514-1 +6503,1,7235-1 +6504,1,40148-1 +6505,1,9584-1 +6506,1,10539-1 +6508,1,45570-1 +6509,1,7261-2 +6510,1,3081-1 +6511,1,44019-1 +6513,1,4013-1 +6514,1,K7419-1 +6517,1,70138-1 +6521,1,7800-1 +6522,1,10555-1 +6523,1,9756-1 +6524,1,875-1 +6525,1,1545-1 +6526,1,41109-1 +6529,1,79110-1 +6530,1,66427-1 +6531,1,8578-1 +6532,1,5004129-1 +6535,1,41016-15 +6536,1,850445-1 +6538,1,9999-1 +6539,1,21113-1 +6540,1,10575-1 +6541,1,Annapolis-1 +6542,1,4186875-1 +6543,1,60021-1 +6544,1,KCCHP-1 +6545,1,2707-1 +6546,1,7979-11 +6547,1,75028-1 +6550,1,106-1 +6553,1,3791-1 +6554,1,40194-1 +6556,1,5002467-1 +6557,1,117-1 +6558,1,2250-11 +6560,1,8701-1 +6561,1,6516-1 +6562,1,9303-1 +6563,1,964-1 +6564,1,7735-1 +6567,1,70816-1 +6568,1,7604-1 +6569,1,70161-1 +6571,1,60100-1 +6572,1,65028-1 +6573,1,10728-1 +6574,1,7314-1 +6575,1,10066-1 +6577,1,7575-15 +6578,1,4491-1 +6579,1,852701-1 +6581,1,10827-1 +6583,1,970118-1 +6584,1,991118-1 +6585,1,42011-1 +6588,1,7724-16 +6590,1,5233-1 +6591,1,71309-1 +6592,1,70605-1 +6593,1,8860-1 +6596,1,Frisco-1 +6597,1,5919-1 +6598,1,4801-1 +6600,1,5000437-1 +6601,1,136-1 +6603,1,8991-1 +6606,1,10116-1 +6607,1,LOC391502-1 +6609,1,5858-1 +6610,1,75000-1 +6611,1,8909-1 +6612,1,7049-1 +6615,1,5679-1 +6616,1,775-1 +6617,1,4524-24 +6618,1,7175-1 +6619,1,10211-1 +6622,1,3504-1 +6623,1,1360-1 +6624,1,928-1 +6626,1,b63de-01 +6627,1,5802-1 +6629,1,3830-1 +6630,1,8969-1 +6631,1,6410-1 +6632,1,2539-1 +6633,1,9823-1 +6635,1,6027-1 +6636,1,6861-1 +6637,1,b56de-01 +6638,1,75151-1 +6639,1,2928-1 +6646,1,3420-3 +6647,1,7345-1 +6648,1,5871-1 +6650,1,7592-1 +6654,1,1076-20 +6656,1,7264-1 +6658,1,333-2 +6660,1,4347-3 +6663,1,5004419-1 +6665,1,71000-4 +6666,1,4805-1 +6667,1,309-2 +6668,1,41124-1 +6669,1,1792-1 +6672,1,113-1 +6673,1,7719-1 +6674,1,6934-1 +6675,1,970041-1 +6676,1,10723-1 +6679,1,491-2 +6680,1,6682-1 +6681,1,8291-1 +6684,1,40037-1 +6686,1,1767-1 +6688,1,4924-25 +6689,1,6095-1 +6690,1,30221-1 +6691,1,5000672-1 +6692,1,1338-1 +6694,1,41056-1 +6695,1,1347-1 +6696,1,10197-1 +6697,1,4099-1 +6699,1,30130-1 +6701,1,7660-1 +6702,1,7904-1 +6704,1,3003-1 +6706,1,30050-1 +6707,1,157-3 +6708,1,70334-1 +6709,1,3422-1 +6711,1,30448-1 +6712,1,3584-1 +6713,1,8703-1 +6714,1,PS3038-1 +6716,1,4072-1 +6717,1,1172-1 +6718,1,452-2 +6719,1,71232-1 +6720,1,7676-1 +6722,1,311-4 +6726,1,1029-1 +6728,1,255-2 +6729,1,6000-1 +6733,1,K7744-1 +6734,1,5004262-1 +6735,1,6195-1 +6737,1,3708-1 +6738,1,8854-1 +6739,1,991336-1 +6740,1,10601-1 +6742,1,6358-1 +6743,1,8058-1 +6745,1,7958-21 +6747,1,970631-1 +6749,1,70725-1 +6750,1,3456-1 +6752,1,9755-1 +6754,1,NEX271609-1 +6756,1,851317-1 +6757,1,1217-2 +6758,1,8930-1 +6761,1,9440-1 +6762,1,41564-1 +6763,1,970643-1 +6764,1,60024-15 +6765,1,2853944-1 +6766,1,120-1 +6767,1,5205-1 +6768,1,75135-1 +6769,1,10518-1 +6770,1,41544-1 +6771,1,1888-1 +6772,1,044-1 +6773,1,8131-1 +6774,1,41179-1 +6777,1,60024-23 +6781,1,41523-1 +6783,1,7141-1 +6784,1,10177-1 +6785,1,8827-11 +6786,1,8556-1 +6787,1,1490-1 +6789,1,5002212-1 +6791,1,5004554-1 +6795,1,66378-1 +6797,1,2256-1 +6798,1,850910-1 +6800,1,44014-1 +6802,1,1076-25 +6804,1,31042-1 +6805,1,4032-1 +6807,1,5223-1 +6808,1,7687-22 +6810,1,70790-1 +6811,1,1749-1 +6813,1,1589-2 +6814,1,5770-1 +6815,1,60151-1 +6816,1,706-3 +6818,1,42030-1 +6819,1,8454-1 +6822,1,852815-1 +6823,1,71314-1 +6824,1,41030-1 +6826,1,3402-1 +6828,1,50003-1 +6829,1,2011-2 +6830,1,71002-10 +6832,1,022-1 +6833,1,Orlando-1 +6834,1,4592-1 +6836,1,30472-1 +6839,1,66305-1 +6840,1,850632-1 +6841,1,7575-11 +6842,1,852333-1 +6843,1,4870-1 +6844,1,NIN561609-1 +6846,1,8803-12 +6847,1,3872-1 +6848,1,4759-1 +6849,1,5004116-1 +6850,1,853313-1 +6851,1,4766-1 +6854,1,7585-1 +6855,1,76054-1 +6856,1,8611-1 +6858,1,700GP6-2 +6859,1,79003-1 +6860,1,8513-1 +6861,1,6601-1 +6862,1,70818-1 +6863,1,7160-1 +6864,1,4217-1 +6865,1,9554-1 +6866,1,2000416-1 +6867,1,8381-1 +6868,1,700.C.5-1 +6869,1,30113-1 +6870,1,21117-1 +6871,1,5004549-1 +6874,1,348-1 +6875,1,316-2 +6876,1,248-2 +6877,1,K7317-1 +6879,1,111-1 +6880,1,30292-1 +6883,1,70124-1 +6884,1,6852-1 +6885,1,7203-1 +6886,1,8833-5 +6888,1,60119-1 +6889,1,355-1 +6890,1,3330-1 +6894,1,41512-1 +6895,1,75118-1 +6897,1,9473-1 +6898,1,314-2 +6900,1,1098-1 +6901,1,6868-1 +6902,1,21109-1 +6904,1,8000-1 +6906,1,5524-1 +6907,1,970640-1 +6908,1,1277-1 +6909,1,4023-1 +6910,1,8269-1 +6911,1,6104-1 +6912,1,1806-1 +6914,1,4024-9 +6915,1,1224-2 +6916,1,5256-1 +6917,1,7419-1 +6918,1,4595-1 +6920,1,9713-1 +6921,1,TRUTIE-1 +6923,1,60133-1 +6926,1,75120-1 +6927,1,4177-1 +6928,1,6299-12 +6929,1,40038-1 +6931,1,88000-1 +6932,1,41533-1 +6933,1,1605-1 +6934,1,6673-1 +6937,1,8414-1 +6938,1,NK271604-1 +6940,1,60063-18 +6941,1,30170-1 +6942,1,40183-1 +6944,1,700.28-1 +6945,1,5000-1 +6946,1,41016-11 +6949,1,42026-2 +6950,1,1920-1 +6951,1,3549-1 +6952,1,445A-1 +6953,1,6971-1 +6956,1,8624-1 +6957,1,7634-1 +6958,1,70167-1 +6959,1,417-3 +6960,1,518-9 +6966,1,5057-1 +6967,1,1231-3 +6968,1,3714-1 +6969,1,4000015-1 +6970,1,1477-1 +6971,1,5837-1 +6973,1,2063-1 +6974,1,4537-1 +6975,1,3182-1 +6977,1,5004602-1 +6979,1,3488-1 +6981,1,75150-1 +6982,1,8576-1 +6984,1,6520-1 +6985,1,9764-1 +6986,1,10507-1 +6987,1,8132-1 +6988,1,700-1 +6989,1,4566-1 +6990,1,K5862-1 +6991,1,7553-9 +6992,1,31022-1 +6993,1,30186-1 +6994,1,2170-1 +6995,1,6552-1 +6996,1,76016-1 +6997,1,853345-1 +6999,1,Columbus-1 +7000,1,161-1 +7001,1,30254-1 +7003,1,10831-1 +7004,1,9780545703307-1 +7005,1,368-1 +7006,1,71014-11 +7007,1,9694-1 +7008,1,853469-1 +7009,1,3581-1 +7010,1,4000008-1 +7011,1,8875-1 +7013,1,60010-1 +7014,1,1355-1 +7015,1,1076-2 +7016,1,30304-1 +7017,1,8708-1 +7018,1,75015-1 +7020,1,2878-1 +7021,1,1224.1-1 +7022,1,4648933-1 +7023,1,850-1 +7024,1,8358-1 +7025,1,71004-0 +7026,1,4659607-1 +7027,1,3481-1 +7028,1,9929-1 +7029,1,71009-11 +7031,1,6532-1 +7032,1,8199-1 +7033,1,5259-1 +7034,1,60090-1 +7035,1,7743-1 +7036,1,2710-1 +7037,1,7733-1 +7038,1,6400-1 +7039,1,3305-2 +7040,1,60098-1 +7041,1,670-1 +7042,1,4291-1 +7044,1,2047-1 +7045,1,7474-1 +7046,1,795-1 +7047,1,6440-1 +7049,1,10693-1-s1 +7050,1,6867-1 +7051,1,CCegg-1 +7054,1,8190-1 +7056,1,8258-1 +7057,1,1097-1 +7060,1,4575-1 +7061,1,71004-3 +7062,1,2000421-1 +7063,1,10673-1 +7064,1,620-1 +7065,1,9793-1 +7067,1,40058-1 +7068,1,4800-1 +7070,1,9870-1 +7072,1,491-1 +7073,1,8913-1 +7075,1,3537-1 +7076,1,8423-1 +7078,1,8728-1 +7079,1,1054-1 +7080,1,9301-1 +7081,1,79106-1 +7084,1,4000001-1 +7085,1,685-2 +7087,1,MMMB010-1 +7089,1,8858-1 +7090,1,Leeds-1 +7094,1,41016-22 +7096,1,6299-17 +7097,1,799-1 +7098,1,comcon028-1 +7099,1,79122-1 +7100,1,3548-1 +7101,1,9975-1 +7102,1,7945-1 +7103,1,NIN891507-1 +7104,1,1324-1 +7105,1,647-1 +7106,1,4588-1 +7108,1,7667-1 +7109,1,5114-1 +7110,1,3743-1 +7111,1,60065-1 +7114,1,4524-8 +7115,1,1713-1 +7116,1,11909-1 +7118,1,9867-1 +7119,1,70113-1 +7120,1,7904-16 +7121,1,3646-1 +7122,1,9864-1 +7123,1,7697-1 +7124,1,258-1 +7126,1,1349-1 +7127,1,5004263-1 +7128,1,1060-1 +7130,1,1843-3 +7131,1,75134-1 +7132,1,373-1 +7133,1,8672-1 +7134,1,1386-1 +7135,1,520-16 +7136,1,40025-1 +7137,1,3930-1 +7139,1,30062-1 +7141,1,3809-1 +7142,1,3409-2 +7145,1,366-1 +7146,1,852146-1 +7148,1,LBFIRERESCUE-1 +7149,1,3184-1 +7151,1,66345-1 +7153,1,70132-1 +7156,1,75152-1 +7157,1,970017-1 +7158,1,5103-1 +7159,1,970613-1 +7161,1,450-1 +7163,1,1680-1 +7166,1,71012-4 +7167,1,4428-15 +7168,1,2774-1 +7169,1,7220-1 +7172,1,4298-1 +7174,1,70014-1 +7175,1,71000-15 +7176,1,4347-1 +7177,1,8608-1 +7180,1,7042-1 +7182,1,10004-1 +7184,1,7135-1 +7185,1,5003026-1 +7186,1,250-1 +7187,1,K3538-1 +7188,1,1651-1 +7190,1,5380-1 +7191,1,5000463-1 +7193,1,8007-1 +7194,1,1253-1 +7195,1,6691-1 +7196,1,44018-1 +7197,1,60137-1 +7198,1,620-3 +7199,1,SW911607-1 +7200,1,3454-1 +7201,1,65363-1 +7202,1,3601-1 +7203,1,9480-1 +7204,1,70801-1 +7205,1,40003-1 +7208,1,3569-1 +7209,1,65153-1 +7211,1,163-1 +7212,1,7892-1 +7213,1,7724-21 +7214,1,7324-4 +7216,1,70171-1 +7217,1,5159-1 +7218,1,7198-1 +7219,1,10241-1 +7220,1,673F-1 +7221,1,1646-1 +7222,1,354-1 +7223,1,2876-1 +7224,1,41051-1 +7225,1,40024-1 +7227,1,9942-1 +7228,1,3071-1 +7229,1,4924-3 +7230,1,851687-1 +7231,1,3571-1 +7233,1,MS1040-1 +7234,1,6738-1 +7235,1,8139-1 +7238,1,20008-1 +7239,1,3683-1 +7240,1,1223-3 +7241,1,3197-1 +7242,1,1189-1 +7243,1,654-1 +7244,1,700.20-1 +7245,1,7687-6 +7246,1,3847-1 +7248,1,6506-1 +7249,1,4209-1 +7250,1,21019-1 +7251,1,313-1 +7253,1,8805-9 +7254,1,8805-1 +7255,1,7553-14 +7256,1,5144-1 +7257,1,60082-1 +7259,1,7078-1 +7260,1,71009-4 +7261,1,K4706-1 +7263,1,3736-1 +7264,1,8546-1 +7265,1,6006139-1 +7267,1,10118-1 +7268,1,919-1 +7269,1,31026-1 +7271,1,40008-1 +7272,1,1140-1 +7275,1,3781-1 +7276,1,1205-1 +7277,1,5004553-1 +7278,1,9644-1 +7281,1,238-4 +7282,1,9580-1 +7284,1,71014-13 +7286,1,VPorient-1 +7287,1,70131-1 +7288,1,6010-1 +7290,1,10693-1 +7291,1,1699-1 +7292,1,9743-1 +7294,1,7166-1 +7296,1,1825-1 +7298,1,6419-1 +7299,1,10212-1 +7300,1,6073-1 +7302,1,75056-18 +7304,1,8889-1 +7307,1,9783-1 +7308,1,70144-1 +7309,1,6453-1 +7310,1,4169306b-1 +7311,1,5584-1 +7313,1,1275-1 +7314,1,4587-1 +7315,1,6094-1 +7316,1,9452-1 +7318,1,327-1 +7319,1,LOC391409-1 +7320,1,7952-3 +7321,1,1562-3 +7322,1,7952-6 +7323,1,6364-1 +7324,1,1298-17 +7325,1,MMMB023-1 +7326,1,71010-3 +7327,1,71004-1 +7329,1,5001266-1 +7330,1,1185-1 +7331,1,SDCC2015-3 +7332,1,5969-1 +7334,1,5306-1 +7336,1,4630-1 +7338,1,1428-1 +7339,1,70205-1 +7340,1,41150-1 +7341,1,8466-1 +7344,1,5529-2 +7345,1,41025-1 +7347,1,40103-1 +7348,1,66435-1 +7351,1,7324-3 +7354,1,9469-1 +7355,1,41568-1 +7356,1,5125-1 +7357,1,1772-1 +7359,1,5164-1 +7361,1,4027-1 +7363,1,7324-1 +7365,1,7537-1 +7366,1,7904-5 +7367,1,2855057-1 +7368,1,5001357-1 +7369,1,8804-9 +7370,1,5801-1 +7371,1,8880-1 +7373,1,1188-1 +7374,1,7804-1 +7375,1,4524-15 +7376,1,6257-1 +7377,1,1695-1 +7378,1,7921-1 +7379,1,1787-1 +7380,1,5821-1 +7381,1,5659-1 +7382,1,41016-21 +7384,1,5003584-1 +7385,1,853464-1 +7386,1,5269-1 +7388,1,7734-1 +7389,1,5254-1 +7390,1,5004066-1 +7391,1,K10194-1 +7396,1,900-2 +7397,1,8077-1 +7398,1,LOC214-1 +7399,1,75053-1 +7400,1,2856081-1 +7401,1,75051-1 +7402,1,B100-1 +7406,1,140-1 +7407,1,41999-1 +7408,1,6535-1 +7409,1,9742-1 +7412,1,41103-1 +7413,1,60024-19 +7415,1,7730-1 +7417,1,3658-1 +7418,1,6600-1 +7419,1,5234-1 +7420,1,10224-1 +7421,1,21001-1 +7422,1,6053-1 +7424,1,llca10-1 +7426,1,8964-1 +7427,1,71009-8 +7428,1,5313-1 +7429,1,1370-1 +7430,1,kabbasic-1 +7434,1,5084-1 +7437,1,40073-1 +7438,1,6005188-1 +7441,1,4282-1 +7444,1,2250-10 +7445,1,9608-1 +7447,1,2155-1 +7448,1,8683-6 +7449,1,40016-1 +7451,1,75090-1 +7452,1,53850006-1 +7454,1,71001-10 +7455,1,8828-1 +7456,1,651-1 +7457,1,8531-2 +7458,1,5006-1 +7462,1,8792-1 +7463,1,8655-1 +7464,1,30521-1 +7465,1,1551-1 +7466,1,6662-1 +7467,1,5000245-1 +7468,1,1198-1 +7469,1,1168-1 +7470,1,71017-3 +7472,1,4124-11 +7473,1,7046-1 +7474,1,K10039-1 +7475,1,8529-1 +7476,1,6918-1 +7477,1,8831-5 +7478,1,880010-1 +7479,1,60023-1 +7481,1,852347-1 +7482,1,K4487-1 +7483,1,9847-2 +7484,1,9213-1 +7486,1,1730-1 +7487,1,KT205-1 +7489,1,5618-1 +7493,1,40227-1 +7496,1,8587-3 +7499,1,8959-1 +7500,1,956-1 +7501,1,71004-14 +7502,1,8856-1 +7503,1,1815-1 +7504,1,4816-1 +7505,1,75101-1 +7507,1,425-1 +7509,1,689-1 +7510,1,8386-1 +7513,1,8109-1 +7514,1,819-1 +7515,1,75874-1 +7516,1,KT106-1 +7519,1,10801-1 +7520,1,71004-8 +7521,1,75056-2 +7523,1,30114-1 +7524,1,K720x-1 +7525,1,lwp04-1 +7527,1,comcon021-1 +7529,1,4428-11 +7532,1,5001377-1 +7534,1,1200-2 +7536,1,5139-1 +7537,1,3486-1 +7538,1,60063-14 +7540,1,1076-17 +7541,1,621-2 +7543,1,10176-1 +7545,1,8621-1 +7547,1,7851-1 +7548,1,6690-1 +7550,1,8803-2 +7551,1,Braintree-1 +7552,1,6693-1 +7553,1,6546-1 +7554,1,6958-1 +7555,1,3067-1 +7557,1,853-1 +7558,1,970622-1 +7559,1,520-4 +7562,1,5001309-1 +7563,1,8902-1 +7565,1,MFCN-1 +7566,1,3870-1 +7568,1,5188-1 +7569,1,7886-1 +7573,1,70151-1 +7577,1,71002-4 +7579,1,75008-1 +7581,1,70720-1 +7582,1,6156-1 +7583,1,4524-4 +7584,1,2235-1 +7585,1,4505-1 +7587,1,7475-1 +7588,1,6417-1 +7589,1,214.2-1 +7590,1,30446-1 +7592,1,75870-1 +7594,1,6597-1 +7595,1,8092-1 +7596,1,853461-1 +7597,1,70160-1 +7598,1,9735-1 +7599,1,745-1 +7602,1,5901-1 +7603,1,5681-1 +7604,1,45504-1 +7606,1,7958-14 +7608,1,21303-2 +7609,1,30210-1 +7610,1,40145-1 +7611,1,850602-1 +7612,1,6127-1 +7613,1,1392-1 +7614,1,5003574-1 +7615,1,71011-5 +7618,1,66225-1 +7619,1,7155-1 +7620,1,6329-1 +7621,1,10584-1 +7622,1,6937-1 +7623,1,723-2 +7624,1,1197-2 +7626,1,9581-1 +7627,1,340-3 +7629,1,5056-1 +7631,1,853213-1 +7635,1,5-4 +7636,1,7146-1 +7637,1,6166-1 +7638,1,9478-1 +7640,1,7641-1 +7641,1,852331-1 +7642,1,1211-2 +7643,1,5315-1 +7644,1,560-1 +7645,1,700.24-1 +7647,1,20020-1 +7648,1,44021-1 +7649,1,9348-1 +7650,1,70781-1 +7651,1,852113-1 +7653,1,3628-1 +7655,1,492-1 +7656,1,60125-1 +7658,1,LLCA30-1 +7659,1,8045-1 +7665,1,1295-1 +7666,1,1056-1 +7667,1,60050-1 +7670,1,65545-1 +7671,1,1620-2 +7672,1,1525-1 +7673,1,1330-1 +7674,1,5004750-1 +7676,1,71301-1 +7679,1,5824-1 +7682,1,10058-1 +7683,1,6525-1 +7684,1,9471-1 +7685,1,3544-1 +7686,1,5000022-1 +7687,1,3675-1 +7688,1,8400-1 +7690,1,5892-1 +7692,1,8827-3 +7693,1,8606-1 +7695,1,801-2 +7697,1,40192-1 +7700,1,403-3 +7701,1,1843-2 +7703,1,K7000-1 +7705,1,1260-2 +7707,1,K8587-1 +7708,1,2250-17 +7709,1,65127-1 +7710,1,290-2 +7712,1,8362-1 +7713,1,3599-1 +7714,1,5762-1 +7715,1,9889-1 +7716,1,1954-1 +7717,1,8644-1 +7719,1,4810-1 +7725,1,7575-22 +7726,1,10508-1 +7727,1,FR561608-1 +7729,1,41075-1 +7730,1,31055-1 +7731,1,3014-1 +7733,1,852980-1 +7736,1,1704-1 +7740,1,30034-1 +7742,1,7929-1 +7743,1,4741-1 +7745,1,66434-1 +7746,1,6259-1 +7747,1,4285970-1 +7748,1,10231-1 +7749,1,60107-1 +7750,1,7822-1 +7751,1,8630-1 +7752,1,10729-1 +7753,1,75023-23 +7754,1,75035-1 +7755,1,5895-1 +7756,1,9702-1 +7757,1,7797-1 +7758,1,41038-1 +7759,1,8683-5 +7760,1,70749-1 +7761,1,60024-22 +7764,1,3886-1 +7765,1,7324-16 +7766,1,66330-1 +7767,1,8613-1 +7769,1,60070-1 +7770,1,105-2 +7771,1,8512-1 +7773,1,9753-1 +7774,1,6569-1 +7775,1,5001386-1 +7776,1,6125-1 +7778,1,5002203-1 +7779,1,922-1 +7780,1,3733-1 +7781,1,609-1 +7782,1,6433-1 +7788,1,5204-1 +7789,1,5193-1 +7790,1,53850009-1 +7791,1,42055-1 +7792,1,71010-14 +7793,1,8095-1 +7795,1,5795-1 +7796,1,40028-1 +7797,1,41110-1 +7799,1,41040-14 +7801,1,5483-1 +7803,1,9241-1 +7804,1,1724-1 +7805,1,66491-1 +7806,1,10025-1 +7807,1,797-1 +7811,1,561502-1 +7812,1,137-1 +7813,1,3731-1 +7814,1,6345-1 +7815,1,850929-1 +7816,1,2856080-1 +7817,1,6841-1 +7819,1,71012-17 +7821,1,8674-1 +7822,1,4910-1 +7823,1,LLKING-1 +7824,1,7907-8 +7827,1,8820-1 +7828,1,5860-1 +7830,1,10029-1 +7831,1,356-1 +7832,1,710-3 +7833,1,8287-1 +7834,1,5003570-1 +7835,1,6593-1 +7836,1,7687-8 +7837,1,5761-1-b1 +7839,1,41040-2 +7841,1,8507-1 +7842,1,8149-1 +7843,1,6722-1 +7844,1,8138-1 +7845,1,6418-1 +7846,1,7553-3 +7847,1,2000409-1 +7848,1,6012-1 +7849,1,8589-2 +7850,1,9509-1 +7851,1,5002204-1 +7853,1,8216-1 +7854,1,5975-1 +7856,1,850449-1 +7858,1,1258-1 +7860,1,SW911510-1 +7861,1,6576-1 +7864,1,8763-1 +7865,1,938-1 +7866,1,8805-16 +7867,1,30018-1 +7869,1,75159-1 +7870,1,9509-18 +7872,1,7979-15 +7873,1,2191-1 +7874,1,65221-1 +7875,1,8920-1 +7876,1,4078-1 +7879,1,9707-1 +7881,1,7687-1 +7883,1,6505-1 +7884,1,10024-1 +7885,1,340-2 +7886,1,5179-1 +7887,1,1139-1 +7888,1,10079-1 +7890,1,5002422-1 +7891,1,42033-1 +7893,1,4026-1 +7897,1,4139-1 +7899,1,4279-1 +7901,1,3548-2 +7902,1,kabsoccer-1 +7903,1,6018-1 +7904,1,1871-1 +7906,1,2000413-1 +7908,1,10544-1 +7909,1,60148-1 +7910,1,2709-1 +7912,1,5002915-1 +7913,1,8505-1 +7914,1,6701-1 +7915,1,comcon033-1 +7916,1,71012-14 +7917,1,2824-19 +7918,1,6143-1 +7919,1,1601-1 +7920,1,6385-1 +7922,1,71001-1 +7924,1,2148-2 +7925,1,7187-1 +7927,1,3615-1 +7928,1,8926-1 +7929,1,8684-18 +7930,1,4225-1 +7933,1,rrminifigs-1 +7939,1,10037-1 +7940,1,30246-1 +7941,1,40146-1 +7944,1,66389-1 +7945,1,42049-1 +7946,1,5643-1 +7947,1,8549-1 +7948,1,9854-1 +7950,1,76066-1 +7951,1,6862-2 +7953,1,8051-1 +7954,1,7723-1 +7956,1,672-1 +7957,1,41040-18 +7958,1,107-2 +7959,1,8040-1 +7960,1,30027-1 +7963,1,341-2 +7965,1,7506-1 +7966,1,2250-22 +7968,1,53850012-1 +7969,1,7574-11 +7970,1,7861-1 +7971,1,VP-5 +7972,1,75019-1 +7973,1,6-4 +7974,1,5855-1 +7975,1,10565-1 +7977,1,6650-1 +7978,1,6518-1 +7979,1,71005-8 +7981,1,199-1 +7982,1,7577-1 +7983,1,1068-1 +7984,1,5150-1 +7986,1,2-1 +7988,1,3457-1 +7991,1,9849-1 +7992,1,60140-1 +7993,1,5018-1 +7994,1,79118-1 +7995,1,7473-1 +7997,1,911613-1 +7998,1,71308-1 +7999,1,2149-1 +8000,1,5004799-1 +8002,1,3660-1 +8003,1,5528-1 +8004,1,6190-1 +8005,1,404-1 +8006,1,31038-1 +8009,1,71008-11 +8011,1,409-1 +8013,1,41040-19 +8016,1,7324-25 +8017,1,3300020-1 +8018,1,SW911616-1 +8019,1,7075-2 +8023,1,1094-1 +8025,1,65110-1 +8027,1,3745-1 +8028,1,5055-1 +8029,1,8698-1 +8030,1,21105-1 +8033,1,lfv3-1 +8034,1,7150-1 +8035,1,3760-1 +8037,1,6354-1 +8044,1,30021-1 +8045,1,4128-1 +8046,1,3857-1 +8047,1,40115-1 +8051,1,Sphinx-1 +8052,1,8417-1 +8055,1,LLCA24-1 +8058,1,8838-1 +8059,1,71005-6 +8061,1,8535-2 +8062,1,4496-1 +8063,1,8584-1 +8065,1,1636-1 +8066,1,6679-2 +8067,1,SW911608-1 +8068,1,1266-1 +8069,1,1100-1 +8070,1,6894-1 +8071,1,VP-15 +8073,1,970112-1 +8074,1,8160-1 +8075,1,640-1 +8076,1,75082-1 +8077,1,SDCC2015-1 +8080,1,10696-1 +8081,1,21119-1 +8083,1,10078-1 +8085,1,7979-5 +8086,1,4963-1 +8087,1,10134-1 +8088,1,851338-1 +8090,1,375-3 +8091,1,65468-1 +8092,1,10593-1 +8094,1,6135-1 +8095,1,8842-1 +8096,1,8197-1 +8098,1,Elizabeth-1 +8099,1,6339-1 +8100,1,8735-1 +8102,1,851502-1 +8103,1,70316-1 +8105,1,7001-1 +8106,1,1608-1 +8107,1,5964-1 +8108,1,21027-1 +8109,1,4076-1 +8110,1,518-13 +8111,1,3816-1 +8113,1,700.B.4-1 +8114,1,44015-1 +8115,1,41048-1 +8116,1,520-11 +8120,1,5848-1 +8121,1,75056-7 +8122,1,7938-1 +8124,1,852986-1 +8125,1,10569-1 +8126,1,1252-1 +8128,1,5031-1 +8129,1,6319-1 +8130,1,3915-1 +8132,1,4471-1 +8134,1,991751-1 +8135,1,1441-1 +8137,1,970602-1 +8140,1,4024-1 +8141,1,41089-1 +8142,1,1335-1 +8143,1,40156-1 +8144,1,170-1 +8145,1,41530-1 +8146,1,8374-1 +8149,1,10531-1 +8150,1,Ramboll-1 +8151,1,7895-1 +8152,1,10184-1 +8153,1,8204-1 +8154,1,75056-6 +8156,1,10669-1 +8157,1,30101-1 +8158,1,5250-1 +8159,1,5004261-1 +8160,1,4651-1 +8161,1,7700-1 +8162,1,1053-1 +8164,1,60093-1 +8166,1,4668-1 +8167,1,40076-1 +8169,1,75138-1 +8170,1,70500-1 +8172,1,5233-2 +8173,1,4024-4 +8174,1,139-1 +8175,1,70804-1 +8176,1,852774-1 +8177,1,10806-1 +8179,1,8863-1 +8180,1,30067-2 +8181,1,1429-1 +8182,1,30004-1 +8183,1,41063-1 +8184,1,7958-17 +8187,1,10050-1 +8188,1,2928-2 +8190,1,3503-1 +8191,1,940-1 +8194,1,5521-1 +8195,1,8520-1 +8196,1,6827-1 +8197,1,DKLEGOBOOK-1 +8198,1,60063-23 +8201,1,k34431-1 +8202,1,K10041-1 +8203,1,41059-1 +8204,1,7782-1 +8205,1,40047-1 +8206,1,670F-1 +8209,1,2722-1 +8210,1,40001-1 +8211,1,10-2 +8212,1,320-2 +8213,1,9966-1 +8214,1,8500-1 +8215,1,4981-1 +8216,1,65844-1 +8217,1,70331-1 +8218,1,4636-1 +8219,1,6097-1 +8222,1,66284-1 +8223,1,852942-1 +8225,1,7687-11 +8226,1,K6290-1 +8227,1,9670-1 +8228,1,7778-1 +8230,1,5002207-1 +8231,1,3181-1 +8232,1,6265-1 +8233,1,4348-2 +8234,1,787-1 +8235,1,1523-1 +8236,1,1298-10 +8237,1,5416-1 +8238,1,10617-1 +8239,1,Liverpool-1 +8241,1,4024-8 +8246,1,30194-1 +8249,1,7598-1 +8250,1,914-2 +8251,1,75107-1 +8252,1,6831-1 +8255,1,7771-1 +8256,1,5291-1 +8257,1,41174-1 +8258,1,1602-1 +8259,1,41118-1 +8261,1,60101-1 +8262,1,70745-1 +8263,1,71009-9 +8265,1,8804-12 +8267,1,5904-1 +8268,1,79004-1 +8269,1,3411-1 +8273,1,1197-1 +8275,1,30252-1 +8276,1,4555-1 +8277,1,3491-1 +8278,1,76018-1 +8279,1,44016-1 +8280,1,4000014-1 +8281,1,9723-1 +8283,1,8272-1 +8284,1,4413-1 +8285,1,K4488-1 +8286,1,4124-18 +8287,1,2850828-1 +8288,1,71005-14 +8289,1,8824-1 +8290,1,8694-1 +8291,1,5549-1 +8292,1,7746-1 +8293,1,1775-1 +8295,1,Peabody-1 +8296,1,1229-1 +8297,1,6905-1 +8298,1,9684-1 +8299,1,6571-1 +8300,1,376-1 +8301,1,4453-1 +8302,1,9494-1 +8303,1,5003025-1 +8304,1,1298-8 +8306,1,7991-1 +8307,1,7270-1 +8309,1,40096-1 +8310,1,6155-1 +8311,1,6980-1 +8312,1,65295-1 +8314,1,75113-1 +8318,1,1498-1 +8319,1,9911-1 +8320,1,5077-1 +8321,1,3300003-1 +8322,1,8219-1 +8323,1,4528-1 +8324,1,6160-1 +8325,1,10618-1 +8329,1,7958-23 +8331,1,65579-1 +8332,1,4518-1 +8334,1,9646-1 +8335,1,9090-1 +8337,1,302-2 +8338,1,8569-1 +8339,1,6487-1 +8340,1,8146-1 +8341,1,41053-1 +8342,1,70333-1 +8343,1,4096-1 +8344,1,8770-1 +8345,1,75129-1 +8346,1,42024-1 +8347,1,924-1 +8348,1,7907-1 +8352,1,5004798-1 +8353,1,1123-1 +8354,1,7041-1 +8355,1,9869-1 +8357,1,40052-1 +8358,1,10607-1 +8360,1,4224-1 +8362,1,8925-1 +8364,1,1235-2 +8365,1,4337-1 +8369,1,8810-1 +8371,1,970665-1 +8372,1,1107-1 +8373,1,4569-1 +8374,1,9391-1 +8376,1,628-2 +8379,1,79006-1 +8380,1,7600-7 +8381,1,7216-3 +8384,1,8536-2 +8389,1,811-1 +8390,1,135-1 +8391,1,268-1 +8392,1,8987-1 +8393,1,8874-1 +8395,1,9943-1 +8397,1,31012-1 +8398,1,66388-1 +8399,1,7931-1 +8400,1,60063-22 +8401,1,66364-1 +8402,1,70588-1 +8403,1,853037-1 +8404,1,011-1 +8405,1,75056-14 +8406,1,6292-1 +8408,1,4060-1 +8409,1,Houston-2 +8410,1,71017-8 +8411,1,8209-1 +8412,1,41100-1 +8413,1,9397-1 +8414,1,4483-2 +8415,1,5189-1 +8416,1,6237-1 +8417,1,6624-1 +8418,1,6770-1 +8419,1,5004238-1 +8425,1,kabrace-1 +8426,1,75023-6 +8427,1,3670-1 +8428,1,970609-1 +8429,1,6609-1 +8431,1,70312-1 +8433,1,1779-1 +8435,1,41122-1 +8438,1,76042-1 +8440,1,1891-1 +8441,1,9322-1 +8442,1,4193-1 +8443,1,71230-1 +8445,1,1245-2 +8446,1,850507-1 +8447,1,4504-1 +8450,1,7575-9 +8451,1,5658-1 +8454,1,8285-1 +8457,1,3635-1 +8458,1,40081-1 +8459,1,5252-1 +8461,1,75827-1 +8462,1,10-3 +8463,1,8042-1 +8465,1,65851-1 +8466,1,3916-1 +8468,1,sw218promo-1 +8470,1,5587-1 +8471,1,k8612-1 +8472,1,C8521-1 +8473,1,1558-1 +8475,1,416-1 +8476,1,5274-1 +8478,1,8354-1 +8481,1,60102-1 +8482,1,70788-1 +8483,1,8660-1 +8484,1,800-1 +8485,1,5157-1 +8486,1,3308-1 +8487,1,2175-1 +8488,1,850939-1 +8489,1,9876-1 +8490,1,4894-1 +8491,1,66450-1 +8492,1,4917-1 +8493,1,839-1 +8494,1,60032-1 +8495,1,10287-1 +8496,1,8826-1 +8498,1,5290-1 +8499,1,7781-1 +8500,1,991426-1 +8501,1,K8605-1 +8502,1,3041-1 +8504,1,8485-1 +8505,1,7283-1 +8506,1,970005-1 +8507,1,41526-1 +8508,1,8909-9 +8509,1,3678-1 +8511,1,850502-1 +8512,1,70741-1 +8513,1,10162-1 +8517,1,3591-1 +8518,1,FR561602-1 +8519,1,4349-2 +8520,1,1528-1 +8521,1,6116-1 +8524,1,41509-1 +8525,1,7309-1 +8527,1,853609-1 +8528,1,76025-1 +8531,1,638-1 +8532,1,371-1 +8534,1,1248-2 +8535,1,6232-1 +8536,1,10174-1 +8537,1,5003583-1 +8540,1,8198-1 +8543,1,30084-1 +8544,1,5258-1 +8545,1,5393-1 +8546,1,6716-1 +8547,1,6078-1 +8549,1,comcon003-1 +8550,1,LOC391404-1 +8551,1,76014-1 +8554,1,852194-1 +8555,1,1257-1 +8556,1,9335-1 +8557,1,4137-1 +8558,1,KT204-1 +8559,1,10665-1 +8560,1,2531-1 +8561,1,7824-1 +8562,1,8731-1 +8563,1,5000646-1 +8565,1,30241-1 +8566,1,2154-1 +8567,1,851394-1 +8569,1,6742-1 +8570,1,1271-1 +8572,1,10572-1 +8576,1,4561-1 +8580,1,850909-1 +8584,1,3390-1 +8585,1,66433-1 +8586,1,4455-1 +8588,1,9463-1 +8589,1,7904-10 +8591,1,7891-1 +8594,1,217-2 +8595,1,71004-15 +8596,1,5225-1 +8598,1,8675-1 +8600,1,8020-1 +8602,1,7687-25 +8603,1,45560-1 +8606,1,MOMENTS-1 +8607,1,1809-1 +8608,1,5003579-1 +8609,1,10023-1 +8612,1,5002201-1 +8613,1,4478-2 +8617,1,9640-1 +8618,1,4943-1 +8620,1,1710-1 +8622,1,480-6 +8626,1,316-1 +8627,1,70172-1 +8628,1,7196-1 +8632,1,9247-1 +8633,1,636-1 +8634,1,7130-1 +8635,1,LLSWAN-1 +8637,1,6509-1 +8638,1,420-3 +8639,1,4883-1 +8640,1,4599605-1 +8641,1,4002-1 +8642,1,4267-1 +8643,1,8825-1 +8644,1,8804-16 +8646,1,5000728-1 +8648,1,8065-1 +8649,1,7979-8 +8650,1,76009-1 +8652,1,6858-1 +8654,1,4427-1 +8655,1,5110-2 +8656,1,7548-1 +8657,1,5206-1 +8658,1,7553-15 +8660,1,40065-1 +8666,1,75086-1 +8667,1,1793-1 +8668,1,3543-1 +8669,1,10671-1 +8670,1,79005-1 +8671,1,970122-1 +8672,1,7134-1 +8673,1,3886-2 +8674,1,4657-1 +8676,1,4571-1 +8677,1,1489-1 +8678,1,71007-0 +8679,1,8804-6 +8680,1,4924-13 +8681,1,6705-1 +8682,1,102-1 +8683,1,10243-1 +8684,1,5003566-1 +8685,1,1142-1 +8686,1,7290-1 +8690,1,8158-1 +8691,1,LOC391503-1 +8692,1,3496-1 +8693,1,8093-1 +8694,1,483-1 +8695,1,20021-1 +8696,1,7575-23 +8697,1,21014-1 +8700,1,6390-1 +8702,1,2234-1 +8703,1,70212-1 +8704,1,8401-1 +8705,1,71002-3 +8706,1,9751-1 +8707,1,5612-1 +8708,1,3316-11 +8709,1,1747-1 +8711,1,75056-9 +8712,1,4924-9 +8717,1,HPG03-1 +8718,1,FR561605-1 +8719,1,9851-1 +8720,1,7970-1 +8722,1,60024-2 +8723,1,30421-1 +8724,1,45000-1 +8725,1,41107-1 +8726,1,5532-1 +8727,1,8982-1 +8728,1,10062-1 +8729,1,8550-1 +8730,1,8915-1 +8731,1,30068-1 +8734,1,71009-17 +8735,1,4401-1 +8736,1,970021-1 +8737,1,8596-1 +8740,1,1668-1 +8741,1,6293-1 +8742,1,2-8 +8745,1,6372-1 +8748,1,3706-1 +8749,1,880011-1 +8750,1,2453-1 +8752,1,4557-1 +8753,1,9767-1 +8755,1,515-1 +8756,1,653-1 +8757,1,850682-1 +8758,1,42039-1 +8759,1,66341-1 +8760,1,4881-1 +8761,1,2718-1 +8762,1,850933-1 +8764,1,21110-1 +8765,1,1163-1 +8767,1,7575-17 +8771,1,850506-1 +8772,1,4429-1 +8773,1,850751-1 +8774,1,70594-1 +8776,1,6644-1 +8777,1,970636-1 +8779,1,70740-1 +8780,1,518-12 +8781,1,5002887-1 +8782,1,71005-18 +8784,1,7-2 +8785,1,4719-1 +8786,1,30275-1 +8787,1,5180-1 +8789,1,211-1 +8790,1,7803-1 +8793,1,2933-1 +8794,1,328-1 +8795,1,60079-1 +8798,1,40004-1 +8799,1,31057-1 +8801,1,6754-1 +8802,1,4428-24 +8803,1,6823-1 +8805,1,5141-1 +8806,1,Stratford-1 +8812,1,1064-1 +8813,1,372-2 +8814,1,852837-1 +8815,1,9356-1 +8817,1,9444-1 +8818,1,98959-1 +8819,1,192-1 +8820,1,7553-1 +8822,1,850949-1 +8824,1,8805-2 +8825,1,520-7 +8826,1,8772-1 +8827,1,60024-12 +8828,1,8183-1 +8833,1,70155-1 +8835,1,45100-1 +8836,1,40209-1 +8837,1,KT406-1 +8838,1,6973-1 +8840,1,30-2 +8841,1,8370-1 +8842,1,5537-1 +8844,1,6674-1 +8847,1,Houston-3 +8849,1,TRUXWINGTIE-1 +8851,1,8725-1 +8852,1,1427-1 +8853,1,76021-1 +8854,1,9574-1 +8855,1,8781-1 +8857,1,60057-1 +8858,1,8571-1 +8859,1,851325-1 +8860,1,71001-19 +8862,1,70003-1 +8863,1,3542-1 +8865,1,1346-1 +8867,1,8018-1 +8868,1,8831-10 +8869,1,41008-1 +8870,1,585-1 +8871,1,8626-1 +8873,1,6377-1 +8875,1,5004752-1 +8876,1,8359-1 +8878,1,2163-1 +8879,1,346-2 +8880,1,71010-10 +8881,1,30348-1 +8882,1,8502-1 +8883,1,4612-1 +8884,1,4095-1 +8885,1,K4346-1 +8887,1,10576-1 +8888,1,5004284-1 +8890,1,71253-1 +8891,1,181-1 +8892,1,8804-15 +8893,1,4002015-1 +8894,1,4105-2 +8895,1,853433-1 +8897,1,8232-1 +8898,1,7599-1 +8901,1,8909-8 +8902,1,41072-1 +8903,1,31030-1 +8905,1,550-1 +8907,1,75105-1 +8909,1,65229-1 +8910,1,5000030-1 +8911,1,4169306c-1 +8913,1,60117-1 +8914,1,9394-1 +8917,1,7687-19 +8918,1,K1062-1 +8919,1,521-12 +8920,1,703-1 +8923,1,521-11 +8925,1,10814-1 +8927,1,70002-1 +8929,1,41018-1 +8930,1,4980-1 +8931,1,70791-1 +8932,1,9709-1 +8933,1,7854-1 +8935,1,4005-1 +8936,1,8235-1 +8937,1,4500-2 +8938,1,5749-1 +8939,1,10808-1 +8941,1,10074-1 +8942,1,8588-1 +8944,1,5714-1 +8945,1,71005-13 +8946,1,75875-1 +8948,1,6211-1 +8949,1,60004-1 +8950,1,1979-2 +8951,1,6696-1 +8953,1,3303-1 +8955,1,2853590-1 +8956,1,79108-1 +8957,1,03093-1 +8958,1,8070-1 +8960,1,75056-8 +8961,1,4924-22 +8962,1,7985-1 +8964,1,71212-1 +8966,1,10657-1 +8967,1,41102-1 +8968,1,5004119-1 +8969,1,7186-1 +8971,1,Raleigh-1 +8972,1,21116-1 +8974,1,7655-1 +8975,1,6964-2 +8976,1,tech007promo-1 +8979,1,238-7 +8980,1,65768-1 +8982,1,celebvi-1 +8983,1,5000215-1 +8985,1,SWCOMIC1-1 +8986,1,10219-1 +8987,1,10195-1 +8988,1,9509-14 +8990,1,6844-1 +8991,1,71017-16 +8992,1,60122-1 +8995,1,8597-1 +8997,1,K2159-1 +8998,1,FR561603-1 +8999,1,1860-1 +9000,1,852858-1 +9001,1,10159-1 +9002,1,75075-1 +9003,1,8642-1 +9004,1,8210-1 +9005,1,991405-1 +9007,1,970673-1 +9009,1,10589-1 +9010,1,6812-1 +9011,1,70327-1 +9012,1,8684-15 +9013,1,71008-13 +9014,1,88002-1 +9016,1,NIN891614-1 +9017,1,6146-1 +9018,1,9752-1 +9020,1,41028-1 +9021,1,42043-1 +9025,1,162-1 +9028,1,8565-1 +9030,1,6363-1 +9031,1,6570-1 +9032,1,4016-1 +9033,1,71008-17 +9035,1,9230-1 +9036,1,852273-1 +9037,1,3495-1 +9038,1,8827-9 +9039,1,309314-1 +9042,1,3864-1 +9044,1,519-11 +9045,1,6355-1 +9047,1,71307-1 +9048,1,3852-1 +9049,1,8572-1 +9050,1,8893-1 +9051,1,20012-1 +9052,1,8200-1 +9053,1,9688-1 +9054,1,8222-1 +9055,1,8961-1 +9056,1,8803-10 +9057,1,1211-1 +9058,1,3316-9 +9062,1,6643-1 +9063,1,7717-1 +9064,1,9863-1 +9065,1,21010-1 +9066,1,30228-1 +9068,1,4792-1 +9069,1,1242-2 +9071,1,3061-1 +9072,1,9674-1 +9073,1,10550-1 +9074,1,4-3 +9075,1,851490-1 +9076,1,715-1 +9077,1,3536-1 +9078,1,7553-21 +9080,1,7780-1 +9085,1,1314-1 +9086,1,7609-1 +9088,1,1758-1 +9089,1,30100-1 +9090,1,2824-2 +9091,1,71011-7 +9092,1,60072-1 +9093,1,2232-1 +9094,1,K8566-1 +9095,1,41044-1 +9097,1,41016-23 +9098,1,157-1 +9101,1,335-1 +9102,1,k1062b +9103,1,7752-1 +9104,1,4601-1 +9105,1,iFountain-1 +9106,1,8135-1 +9107,1,1512-1 +9108,1,4024-22 +9111,1,7600-21 +9112,1,SW911612-1 +9113,1,71223-1 +9114,1,8076-1 +9115,1,70115-1 +9116,1,236-1 +9119,1,6399-1 +9120,1,6842-1 +9121,1,40067-1 +9122,1,71005-5 +9123,1,K5858-1 +9125,1,5309-1 +9127,1,1426-1 +9128,1,7268-1 +9129,1,40134-1 +9130,1,4105-3 +9131,1,75081-1 +9132,1,kabrobo-1 +9133,1,41031-1 +9136,1,275-1 +9138,1,6341-1 +9139,1,3566-1 +9141,1,6560-1 +9142,1,4124-12 +9144,1,7099-1 +9145,1,970028-1 +9146,1,NIN891506-1 +9148,1,5519-1 +9149,1,65030-1 +9152,1,4124-15 +9154,1,700.2-2 +9157,1,3727-1 +9159,1,8887-1 +9163,1,2853508-1 +9164,1,30211-1 +9165,1,1708-1 +9166,1,4495173-1 +9167,1,71001-15 +9168,1,41046-1 +9169,1,4470-1 +9170,1,481-4 +9171,1,comcon029-1 +9172,1,7905-1 +9173,1,71004-12 +9174,1,71012-10 +9175,1,2250-14 +9177,1,53850001-1 +9178,1,66175-1 +9181,1,8530-1 +9183,1,OrlandPark-1 +9185,1,2537-1 +9186,1,8827-0 +9187,1,4617-1 +9188,1,1647-1 +9190,1,488-1 +9193,1,5241-1 +9194,1,8827-10 +9195,1,8805-14 +9196,1,7674-1 +9197,1,6299-3 +9198,1,70783-1 +9199,1,853187-1 +9200,1,8457-1 +9201,1,2824-22 +9202,1,519-14 +9204,1,7884-1 +9205,1,674-1 +9206,1,8054-1 +9207,1,8522-1 +9210,1,1520-2 +9211,1,6600-2 +9212,1,347-2 +9213,1,70815-1 +9214,1,7553-10 +9216,1,5000062-1 +9217,1,489-1 +9220,1,75056-19 +9221,1,4000010-1 +9222,1,918-2 +9224,1,5373-1 +9225,1,40034-1 +9227,1,6517-1 +9228,1,2743-1 +9230,1,4205-1 +9232,1,7545-1 +9233,1,LLCABR1-1 +9234,1,4609-1 +9235,1,1714-1 +9236,1,76022-1 +9237,1,7255-1 +9239,1,4667-1 +9240,1,6901-2 +9241,1,7535-1 +9243,1,5004103-1 +9244,1,71004-16 +9245,1,6444-1 +9246,1,31058-1 +9247,1,8015-1 +9248,1,4000016-1 +9249,1,7706-1 +9251,1,1472-1 +9252,1,561501-1 +9253,1,9248-1 +9254,1,41537-1 +9255,1,3498-1 +9257,1,9509-8 +9259,1,1643-1 +9260,1,304-1 +9261,1,71008-7 +9263,1,4115-1 +9264,1,1649-1 +9265,1,3623-1 +9267,1,7682-1 +9268,1,60106-1 +9269,1,comcon005-1 +9270,1,7907-15 +9271,1,8833-11 +9273,1,3648-1 +9274,1,4936-1 +9275,1,75158-1 +9276,1,7346-1 +9278,1,922-3 +9279,1,70785-1 +9280,1,631-1 +9283,1,66411-1 +9287,1,3073-1 +9288,1,6192-1 +9289,1,3600-1 +9290,1,7583-1 +9291,1,8808-1 +9293,1,8974-1 +9294,1,60085-1 +9295,1,3840-1 +9296,1,2250-12 +9297,1,2853216-1 +9299,1,5893-1 +9300,1,520-14 +9301,1,75049-1 +9302,1,8618-1 +9304,1,70708-1 +9305,1,3633-1 +9306,1,70753-1 +9307,1,10545-1 +9310,1,comcon020-1 +9311,1,8747-1 +9312,1,41574-1 +9313,1,42050-1 +9314,1,1076-18 +9315,1,6672-1 +9316,1,4024-23 +9317,1,40068-1 +9320,1,303-1 +9321,1,350-1 +9323,1,71017-2 +9326,1,8099-1 +9327,1,3630-1 +9328,1,1619-1 +9329,1,66448-1 +9331,1,8986-1 +9334,1,42031-1 +9336,1,71002-2 +9338,1,8534-1 +9340,1,4144-1 +9341,1,10734-1 +9342,1,7622-1 +9343,1,3932-1 +9344,1,8218-1 +9345,1,7612-1 +9346,1,6857-1 +9348,1,5117-1 +9349,1,694-1 +9350,1,9697-1 +9351,1,8587-1 +9352,1,5002916-1 +9354,1,6769-1 +9355,1,229-1 +9357,1,1340-1 +9358,1,4727-1 +9360,1,3797-1 +9364,1,41565-1 +9365,1,4428-21 +9366,1,4486-1 +9369,1,8460-1 +9372,1,1497-1 +9377,1,7818-1 +9379,1,1431-1 +9380,1,8514-1 +9381,1,kk2vp2-1 +9382,1,9941-1 +9383,1,7197-1 +9384,1,3661-1 +9386,1,5004551-1 +9389,1,5595-1 +9390,1,10235-1 +9394,1,5810-1 +9395,1,41232-1 +9396,1,1126-1 +9398,1,4183-1 +9400,1,1575-1 +9401,1,71011-11 +9402,1,31010-1 +9403,1,8897-1 +9404,1,6405-1 +9405,1,5649-1 +9406,1,66405-1 +9408,1,GardenCity-1 +9409,1,7952-10 +9410,1,6140-1 +9411,1,241-1 +9412,1,65106-1 +9414,1,76052-1 +9415,1,6459-1 +9417,1,852-1 +9418,1,lmg010-1 +9419,1,4500-1 +9422,1,7248-1 +9424,1,6177-1 +9425,1,6648-2 +9426,1,2853301-1 +9427,1,4445-1 +9429,1,4152-1 +9431,1,6822-1 +9432,1,4032-11 +9433,1,8356-1 +9434,1,1656-1 +9435,1,42005-1 +9438,1,1251-1 +9440,1,1642-2 +9442,1,1584-1 +9443,1,66208-1 +9444,1,8451-1 +9447,1,3642-1 +9450,1,4631-1 +9451,1,75056-23 +9452,1,671F-1 +9453,1,6326-1 +9454,1,7288-1 +9456,1,7119-1 +9457,1,8832-1 +9461,1,41074-1 +9462,1,306-2 +9465,1,7950-1 +9466,1,71222-1 +9467,1,3433-1 +9468,1,3935-1 +9470,1,6856-1 +9471,1,VP-10 +9472,1,850999-1 +9473,1,2824-7 +9475,1,1076-10 +9476,1,4423-1 +9477,1,1731-1 +9478,1,70902-1 +9479,1,5823-1 +9480,1,5002122-1 +9481,1,7671-1 +9482,1,41560-1 +9483,1,7687-21 +9484,1,637-1 +9487,1,6914-1 +9488,1,4142-1 +9491,1,20215-1 +9492,1,7239-1 +9493,1,8595-1 +9495,1,6083-2 +9496,1,970608-1 +9497,1,782-1 +9499,1,8444-1 +9502,1,66156-1 +9503,1,8830-1 +9504,1,lmg001-1 +9505,1,322-2 +9506,1,810-4 +9508,1,1361-1 +9509,1,146-1 +9510,1,1298-4 +9511,1,6626-2 +9512,1,4254-1 +9513,1,42-1 +9514,1,8973-1 +9515,1,8651-1 +9516,1,6873-1 +9517,1,941-1 +9518,1,6849-1 +9519,1,10213-1 +9521,1,55001-1 +9522,1,45305-1 +9524,1,4924-8 +9526,1,31001-1 +9528,1,6799-1 +9529,1,41147-1 +9532,1,76010-1 +9533,1,5003082-1 +9534,1,7907-13 +9538,1,100-2 +9540,1,K4492-1 +9541,1,3302-1 +9543,1,JUNGLE-ADV-1 +9544,1,6562-1 +9547,1,4789-1 +9549,1,4428-10 +9551,1,6428-1 +9552,1,DesPeres-1 +9554,1,9320-1 +9555,1,6454-1 +9556,1,7871-1 +9557,1,8947-1 +9558,1,4886-1 +9559,1,8002-1 +9562,1,455-2 +9564,1,852838-1 +9565,1,5228-1 +9567,1,8543-1 +9569,1,8670-1 +9570,1,30181-1 +9571,1,853395-1 +9572,1,6216-1 +9573,1,40048-1 +9575,1,6970-1 +9576,1,60132-1 +9577,1,6764-1 +9579,1,379-2 +9581,1,4869-1 +9582,1,3744-1 +9584,1,911614-1 +9585,1,5004195-1 +9586,1,8375-1 +9588,1,5124-1 +9590,1,851358-1 +9591,1,5191-1 +9592,1,5002943-1 +9593,1,5002773-1 +9595,1,751-1 +9596,1,923-1 +9597,1,5002136-1 +9598,1,6814-1 +9599,1,7724-1 +9600,1,Miami-1 +9601,1,3458-1 +9602,1,851091-1 +9605,1,7019-1 +9606,1,970604-1 +9607,1,6434-1 +9608,1,1666-1 +9611,1,3069-1 +9612,1,8647-1 +9613,1,4124-22 +9614,1,2000414-1 +9615,1,Vienna-1 +9616,1,10245-1 +9617,1,7221-2 +9620,1,K8590-1 +9621,1,9360-1 +9622,1,6420-1 +9623,1,31019-1 +9624,1,71010-18 +9625,1,2729-1 +9627,1,7710-1 +9629,1,40212-1 +9630,1,7724-4 +9631,1,76035-1 +9632,1,851351-1 +9633,1,30200-1 +9635,1,75056-24 +9636,1,8017-1 +9638,1,2135-1 +9639,1,71005-2 +9641,1,9509-17 +9642,1,7894-2 +9643,1,222-1 +9644,1,254-1 +9646,1,5075-1 +9647,1,630-3 +9648,1,5236-1 +9649,1,41549-1 +9651,1,comcon039-1 +9652,1,345-1 +9653,1,21006-1 +9655,1,30262-1 +9657,1,1843-1 +9658,1,601-2 +9660,1,70817-1 +9662,1,6548-1 +9664,1,852744-1 +9665,1,66386-1 +9670,1,3667-1 +9671,1,8835-1 +9675,1,852820-1 +9677,1,4200-1 +9678,1,65515-1 +9679,1,261-1 +9680,1,8102-1 +9681,1,5609-1 +9682,1,8446-1 +9685,1,8784-2 +9686,1,5392-1 +9687,1,3076-1 +9688,1,6304-1 +9689,1,8777-1 +9690,1,21004-1 +9691,1,66452-1 +9692,1,402-2 +9693,1,75073-1 +9694,1,1725-1 +9695,1,fruit8-1 +9696,1,30182-1 +9698,1,1838-1 +9699,1,7570-1 +9700,1,66319-1 +9701,1,comcon026-1 +9702,1,3825-1 +9703,1,810-2 +9704,1,6966-2 +9705,1,4642-1 +9707,1,8990-1 +9708,1,66221-1 +9709,1,66394-1 +9712,1,41000-1 +9714,1,7737-1 +9715,1,79018-1 +9716,1,5002812-1 +9718,1,41094-1 +9720,1,70229-1 +9722,1,6245-1 +9723,1,4158-1 +9724,1,5657-1 +9726,1,5111-1 +9727,1,75121-1 +9728,1,KT303-1 +9729,1,200-3 +9730,1,5001273-1 +9731,1,6076-1 +9732,1,71011-10 +9733,1,40081-3 +9734,1,5909-1 +9735,1,7882-1 +9736,1,30293-1 +9737,1,851938-1 +9741,1,7553-5 +9743,1,7749-1 +9744,1,76005-1 +9745,1,4122-1 +9746,1,2824-23 +9749,1,50799-1 +9750,1,K1376-1 +9752,1,2824-4 +9753,1,7979-19 +9754,1,8428-1 +9756,1,8862-1 +9757,1,1870-1 +9759,1,7518-1 +9760,1,4819-1 +9765,1,71004-18 +9766,1,6071-1 +9767,1,71233-1 +9768,1,5000644-1 +9770,1,217-1 +9771,1,7872-1 +9772,1,6941-1 +9774,1,1611-2 +9775,1,8580-1 +9776,1,850664-1 +9777,1,852981-1 +9778,1,8570-1 +9779,1,1874-1 +9784,1,8692-1 +9785,1,5003023-1 +9787,1,1128-1 +9789,1,3929-1 +9790,1,53850003-1 +9791,1,13-3 +9792,1,3849-1 +9793,1,31024-1 +9794,1,6367-1 +9795,1,1546-1 +9796,1,8248-1 +9797,1,8468-1 +9798,1,2259-1 +9799,1,6373-1 +9800,1,30347-1 +9801,1,5004274-1 +9806,1,4729-1 +9807,1,850150-1 +9809,1,7180-1 +9813,1,Toronto-2 +9814,1,10199-1 +9815,1,7979-25 +9816,1,6002-1 +9817,1,5301-1 +9818,1,3300005-1 +9819,1,75119-1 +9820,1,comcon010-1 +9821,1,10685-1 +9822,1,7324-15 +9823,1,851344-1 +9824,1,6365-1 +9825,1,6755-1 +9826,1,8257-1 +9827,1,7600-14 +9828,1,7164-1 +9830,1,4048-1 +9832,1,8762-1 +9833,1,3925-1 +9835,1,2769-1 +9836,1,1876-1 +9837,1,8072-1 +9838,1,5589-1 +9839,1,6791-1 +9840,1,40051-1 +9841,1,9897-1 +9842,1,5215-1 +9843,1,71000-7 +9844,1,21124-1 +9846,1,60045-1 +9847,1,1968-1 +9849,1,8805-3 +9850,1,4501-2 +9851,1,198-1 +9852,1,4000012-1 +9854,1,40095-1 +9855,1,4524-6 +9857,1,30103-1 +9858,1,75117-1 +9862,1,11910-1 +9864,1,41132-1 +9866,1,6760-1 +9867,1,41060-1 +9868,1,40125-1 +9869,1,7324-14 +9870,1,1070-1 +9871,1,4996-1 +9872,1,4164-1 +9873,1,1177-1 +9875,1,79119-1 +9876,1,40132-1 +9877,1,9472-1 +9882,1,2824-11 +9883,1,10159-2 +9885,1,4101-1 +9886,1,4124-25 +9888,1,76020-1 +9889,1,242I-1 +9892,1,4032-4 +9894,1,70727-1 +9896,1,e1a1402-1 +9897,1,DCSHDVD1-1 +9898,1,3665-1 +9899,1,5945-1 +9900,1,8419-1 +9901,1,7236-1 +9902,1,180-1 +9903,1,8726-1 +9904,1,comcon002-1 +9905,1,8833-17 +9906,1,551-1 +9907,1,104-1 +9909,1,4507-1 +9910,1,686-1 +9912,1,6596-1 +9913,1,3709-1 +9914,1,4308-1 +9915,1,493-1 +9916,1,41515-1 +9917,1,7157-1 +9919,1,1556-1 +9920,1,6252-1 +9921,1,1617-1 +9922,1,5074-1 +9924,1,236-3 +9925,1,K5300-1 +9926,1,41016-1 +9928,1,75085-1 +9929,1,4924-4 +9930,1,7117-1 +9932,1,60138-1 +9934,1,5263-1 +9935,1,8085-1 +9936,1,190-1 +9937,1,8560-1 +9938,1,71004-9 +9939,1,4751-1 +9940,1,10695-1 +9941,1,7801-1 +9942,1,3535-1 +9943,1,5000068-1 +9945,1,70336-1 +9946,1,335-2 +9947,1,31000-1 +9948,1,6817-1 +9950,1,4032-7 +9952,1,2856134-1 +9953,1,9456-1 +9954,1,1726-1 +9955,1,5000021-1 +9956,1,8037-1 +9957,1,6854-1 +9958,1,5857-1 +9959,1,134-2 +9960,1,71005-17 +9961,1,5576-1 +9963,1,8641-1 +9964,1,4665-1 +9965,1,auditt-1 +9967,1,10615-1 +9969,1,20014-1 +9970,1,1598-1 +9971,1,10247-1 +9973,1,70784-1 +9974,1,359-1 +9975,1,8939-1 +9978,1,970-2 +9981,1,1831-1 +9982,1,7101-1 +9984,1,75056-13 +9985,1,1625-1 +9986,1,10000-1 +9987,1,471-1 +9988,1,30602-1 +9989,1,3734-1 +9990,1,10152-3 +9991,1,9642-1 +9992,1,10527-1 +9993,1,8803-13 +9995,1,7181-1 +9996,1,5127-1 +9999,1,6465-1 +10000,1,70901-1 +10001,1,71008-10 +10002,1,3021-1 +10003,1,4559385-1 +10004,1,803-2 +10005,1,853344-1 +10006,1,70208-1 +10008,1,76067-1 +10009,1,6299-9 +10010,1,6463-1 +10011,1,1478-1 +10013,1,852549-1 +10014,1,C8511-1 +10015,1,1222-2 +10016,1,262-2 +10018,1,5033-1 +10021,1,6933-1 +10022,1,8225-1 +10024,1,7600-1 +10025,1,71001-11 +10026,1,4151-1 +10027,1,4032-6 +10028,1,66255-1 +10029,1,3444-1 +10031,1,4916-1 +10032,1,5000196304-1 +10034,1,5153-1 +10036,1,1160-1 +10037,1,7452-1 +10038,1,76055-1 +10039,1,30259-1 +10041,1,901-1 +10042,1,1039-1 +10043,1,66256-1 +10047,1,76065-1 +10048,1,21013-1 +10050,1,1432-1 +10052,1,71001-18 +10054,1,3341-1 +10055,1,8687-1 +10056,1,20001-1 +10059,1,30271-1 +10060,1,6089-1 +10062,1,4866-1 +10063,1,AMFlag-1 +10064,1,8790-1 +10066,1,7687-7 +10067,1,5302-1 +10069,1,75072-1 +10071,1,8602-1 +10072,1,6153-1 +10073,1,8211-1 +10074,1,8883-1 +10075,1,3343-1 +10077,1,7904-7 +10078,1,4222-1 +10079,1,40010-1 +10080,1,3507-1 +10081,1,7796-1 +10082,1,8369-2 +10083,1,8636-1 +10084,1,6625-1 +10085,1,6271-1 +10088,1,LLOlli-1 +10089,1,cokejpiii-1 +10090,1,7724-7 +10091,1,5001380-1 +10092,1,5913-1 +10094,1,5883-1 +10096,1,6830-1 +10097,1,5285-1 +10098,1,6845-1 +10100,1,1990-1 +10101,1,3817-1 +10104,1,30019-1 +10107,1,3489-1 +10109,1,4884-1 +10110,1,4212-1 +10114,1,4919-1 +10115,1,6457-1 +10116,1,1255-1 +10117,1,1688-1 +10119,1,228-1 +10121,1,4990-1 +10122,1,LLCA26-1 +10123,1,5973-1 +10124,1,852445-1 +10125,1,3487-1 +10127,1,31035-1 +10128,1,71216-1 +10129,1,8557-1 +10131,1,1422-1 +10132,1,4515-1 +10133,1,3421-1 +10136,1,850913-1 +10137,1,230-2 +10138,1,7904-18 +10139,1,71017-10 +10141,1,71312-1 +10143,1,9392-1 +10145,1,639-1 +10146,1,41085-1 +10147,1,1320-1 +10148,1,7553-7 +10149,1,8601-1 +10150,1,41513-1 +10151,1,9935-1 +10152,1,41558-1 +10153,1,60007-1 +10154,1,30087-1 +10155,1,10558-1 +10157,1,4186868-1 +10158,1,K10020-1 +10160,1,41531-1 +10161,1,79102-1 +10162,1,4590-1 +10163,1,8900-1 +10165,1,7045-1 +10166,1,40069-1 +10168,1,6710-1 +10170,1,60013-1 +10172,1,70903-1 +10173,1,8521-1 +10174,1,6239-1 +10175,1,2584-1 +10176,1,71012-8 +10177,1,8755-1 +10178,1,7092-1 +10179,1,70750-1 +10180,1,66412-1 +10182,1,40123-1 +10183,1,8640-1 +10184,1,30152-1 +10187,1,30397-1 +10188,1,4024-25 +10190,1,3871-1 +10191,1,6066-1 +10192,1,41098-1 +10195,1,6369-1 +10199,1,41577-1 +10200,1,75828-1 +10201,1,7976-1 +10202,1,60068-1 +10203,1,3490-1 +10206,1,4619-1 +10207,1,6406-1 +10208,1,8941-1 +10209,1,6176-1 +10210,1,1076-11 +10212,1,850529-1 +10213,1,SDCC2015-2 +10214,1,1151-1 +10215,1,71013-2 +10216,1,10517-1 +10218,1,7904-12 +10219,1,3461-1 +10220,1,75023-13 +10221,1,21009-1 +10222,1,5248-1 +10223,1,5002210-1 +10225,1,5003561-1 +10226,1,700.3.4-1 +10227,1,821264-1 +10228,1,30082-1 +10229,1,K4751-1 +10230,1,462-1 +10231,1,995-1 +10232,1,7979-22 +10234,1,1642-1 +10235,1,65362-1 +10236,1,8432-1 +10237,1,1572-1 +10240,1,5600-1 +10243,1,852995-1 +10244,1,250-3 +10246,1,5310-1 +10248,1,7959-1 +10250,1,8635-1 +10251,1,311-3 +10252,1,850896-1 +10254,1,2824-3 +10255,1,6491-1 +10256,1,5838-1 +10257,1,71014-9 +10259,1,5001130-1 +10261,1,8909-7 +10262,1,7124-1 +10263,1,952-1 +10264,1,521-10 +10265,1,C8512-1 +10266,1,742-1 +10267,1,9645-1 +10269,1,1766-1 +10271,1,8026-1 +10273,1,880002-1 +10277,1,30279-1 +10279,1,4285969-1 +10281,1,71012-6 +10282,1,2000430-1 +10283,1,3026-1 +10284,1,5685-1 +10286,1,723-1 +10288,1,70210-1 +10289,1,1203-1 +10291,1,9255-1 +10293,1,3578-1 +10294,1,10148-1 +10298,1,10192-1 +10299,1,7695-1 +10301,1,76002-1 +10302,1,4346-2 +10304,1,10076-1 +10305,1,691-1 +10306,1,10193-1 +10309,1,1045-2 +10315,1,2996-1 +10316,1,8089-1 +10318,1,K4609-1 +10319,1,8683-8 +10321,1,623-1 +10326,1,6957-1 +10327,1,70221-1 +10328,1,4572-1 +10331,1,31011-1 +10332,1,5574-1 +10333,1,315-3 +10334,1,7575-24 +10335,1,361-2 +10336,1,3704-1 +10339,1,6863-1 +10341,1,Elmhurst-1 +10343,1,5308-1 +10344,1,9650-1 +10345,1,40035-1 +10346,1,8066-1 +10347,1,60063-16 +10348,1,3318-1 +10350,1,9859-1 +10351,1,76056-1 +10352,1,6310-1 +10353,1,lwp02-1 +10355,1,6658-1 +10356,1,4064-1 +10357,1,850791-1 +10359,1,5247-1 +10360,1,6235-1 +10361,1,7900-1 +10364,1,71014-1 +10366,1,334-1 +10367,1,41007-1 +10368,1,836-1 +10369,1,40215-1 +10370,1,4626-1 +10371,1,41511-1 +10372,1,9959-1 +10373,1,5397-1 +10374,1,8681-1 +10377,1,6990-1 +10378,1,7904-24 +10380,1,EL241502-1 +10382,1,41529-1 +10383,1,8841-1 +10385,1,41016-16 +10387,1,850839-1 +10388,1,8912-1 +10389,1,8592-1 +10391,1,VP-13 +10392,1,9968-1 +10394,1,75821-1 +10396,1,5515-1 +10397,1,79116-1 +10401,1,1103-2 +10402,1,3425-2 +10404,1,75023-25 +10405,1,kaborient-1 +10406,1,1720-1 +10407,1,42001-1 +10408,1,693-1 +10409,1,128-1 +10410,1,700.1.4-1 +10413,1,7208-1 +10414,1,DKPirates-1 +10415,1,3774-1 +10416,1,40045-2 +10418,1,41077-1 +10419,1,40136-1 +10420,1,45002-1 +10421,1,K5974-1 +10424,1,71017-5 +10425,1,1227-1 +10426,1,212-1 +10427,1,sw117promo-1 +10428,1,60019-1 +10429,1,519-12 +10430,1,7529-1 +10431,1,1309-1 +10432,1,9509-2 +10433,1,6439-1 +10435,1,66246-1 +10436,1,810-3 +10437,1,8461-1 +10439,1,70504-1 +10441,1,911615-1 +10442,1,5280-1 +10443,1,6620-1 +10446,1,70805-1 +10447,1,1388-1 +10448,1,8363-1 +10449,1,8239-1 +10451,1,4924-23 +10452,1,7600-12 +10454,1,113-2 +10455,1,comcon031-1 +10456,1,2824-21 +10457,1,853472-1 +10459,1,9785-1 +10460,1,1437-1 +10463,1,20207-1 +10465,1,8233-1 +10466,1,344-2 +10467,1,347-1 +10468,1,3555-1 +10469,1,71302-1 +10471,1,5962-1 +10472,1,4782-2 +10473,1,7961-1 +10474,1,40029-1 +10476,1,3561-1 +10478,1,71000-1 +10480,1,6884-1 +10481,1,K5850-1 +10482,1,3349-1 +10484,1,6878-1 +10485,1,9843-1 +10486,1,75823-1 +10487,1,1513-2 +10489,1,Hanover-1 +10492,1,10804-1 +10493,1,71010-16 +10494,1,8668-1 +10495,1,7324-23 +10496,1,853451-1 +10498,1,3739-1 +10500,1,7774-1 +10501,1,5625-1 +10502,1,45103-1 +10503,1,852132-1 +10505,1,NEX271610-1 +10507,1,42037-1 +10508,1,10147-1 +10509,1,45514-1 +10511,1,W991526-1 +10514,1,40063-1 +10515,1,78579-2 +10516,1,271605-1 +10517,1,8129-1 +10519,1,3673-1 +10522,1,3579-1 +10525,1,41524-1 +10526,1,4015-1 +10527,1,60024-14 +10528,1,8623-1 +10530,1,4666-1 +10531,1,4781-1 +10532,1,10090-1 +10533,1,3-8 +10535,1,5078-1 +10538,1,3425-1 +10539,1,850152-1 +10540,1,5873-1 +10541,1,9516-1 +10542,1,851369-1 +10543,1,1547-1 +10545,1,3933-1 +10546,1,1637-1 +10547,1,8214-1 +10548,1,6951-1 +10551,1,7575-19 +10554,1,6266-1 +10557,1,30195-1 +10558,1,9492-1 +10559,1,2192-1 +10560,1,42054-1 +10561,1,5001137-1 +10563,1,5384-1 +10564,1,8307-1 +10565,1,4310-1 +10568,1,60063-9 +10569,1,6949-1 +10570,1,10132-1 +10572,1,5003024-1 +10573,1,7687-13 +10574,1,7624-1 +10575,1,810005-1 +10576,1,10124-1 +10577,1,70603-1 +10580,1,8981-1 +10581,1,5002127-1 +10582,1,71010-12 +10583,1,7335-1 +10584,1,6955-1 +10585,1,30473-1 +10586,1,20015-1 +10587,1,7821-1 +10588,1,8646-1 +10590,1,40013-1 +10591,1,4982-1 +10592,1,7553-6 +10593,1,40009-1 +10599,1,40158-1 +10601,1,8582-1 +10602,1,6268-1 +10604,1,504-1 +10607,1,2125-1 +10608,1,218-2 +10610,1,4488-1 +10611,1,4032-9 +10614,1,8194-1 +10616,1,7819-1 +10618,1,5304-1 +10619,1,6384-1 +10620,1,5004127-1 +10621,1,7958-8 +10622,1,8490-1 +10623,1,8484-1 +10627,1,2140-1 +10628,1,8378-1 +10629,1,3077-1 +10631,1,4524-7 +10632,1,10590-1 +10633,1,41535-1 +10634,1,5381-1 +10635,1,4400-1 +10637,1,302-1 +10638,1,8236-1 +10639,1,8684-13 +10640,1,71305-1 +10641,1,6309-1 +10642,1,41178-1 +10643,1,3838-1 +10645,1,K7153-1 +10646,1,53850015-1 +10648,1,392-1 +10649,1,8801-1 +10650,1,7595-1 +10651,1,5002942-1 +10652,1,7553-13 +10653,1,5072-1 +10654,1,LOC471408-1 +10655,1,850967-1 +10656,1,66306-1 +10657,1,2856195-1 +10660,1,7907-5 +10663,1,9509-5 +10665,1,5034-1 +10668,1,70315-1 +10669,1,509-1 +10670,1,5525-1 +10671,1,60120-1 +10674,1,30196-1 +10675,1,6783-1 +10676,1,66395-1 +10677,1,1741-1 +10678,1,853465-1 +10681,1,6079-1 +10682,1,7958-15 +10683,1,8679-1 +10684,1,comcon006-1 +10685,1,30051-1 +10686,1,70732-1 +10687,1,6968-1 +10689,1,7867-1 +10690,1,6638-1 +10692,1,3366-1 +10693,1,4853-1 +10696,1,8128-1 +10697,1,936-1 +10698,1,4124-9 +10702,1,41502-1 +10703,1,1076-23 +10704,1,8590-1 +10705,1,645-2 +10706,1,76061-1 +10707,1,5053-1 +10708,1,41123-1 +10709,1,4435-1 +10710,1,71004-4 +10711,1,42000-1 +10712,1,8098-1 +10713,1,4938-1 +10716,1,6775-1 +10717,1,3348-1 +10718,1,4229-1 +10719,1,1254-1 +10720,1,7286-1 +10721,1,4956-1 +10722,1,3627-1 +10723,1,970121-1 +10724,1,392-2 +10727,1,4132-1 +10728,1,10595-1 +10729,1,426-1 +10731,1,70200-1 +10732,1,6299-24 +10734,1,6627-1 +10735,1,3679-1 +10737,1,7669-1 +10738,1,41086-1 +10739,1,6100-1 +10740,1,970043-1 +10742,1,4896-1 +10744,1,6580-1 +10747,1,7065-1 +10748,1,677-1 +10750,1,40020-1 +10751,1,30272-1 +10752,1,4659602-1 +10753,1,6307-1 +10754,1,1769-1 +10755,1,5526-1 +10757,1,6107-1 +10760,1,853450-1 +10761,1,1200-1 +10762,1,4280-1 +10764,1,358-1 +10766,1,4437-1 +10769,1,1209-1 +10770,1,1298-1 +10773,1,40139-1 +10775,1,1298-18 +10776,1,1114-1 +10778,1,comcon024-1 +10779,1,K8615-1 +10780,1,914-1 +10781,1,14-3 +10782,1,75056-25 +10783,1,3316-2 +10784,1,7907-22 +10787,1,8024-1 +10788,1,31017-1 +10789,1,1479-1 +10790,1,K3731-1 +10791,1,2126-1 +10792,1,1971-1 +10793,1,1298-2 +10794,1,40210-1 +10795,1,5370-1 +10796,1,721-1 +10797,1,4014-1 +10798,1,1323-1 +10799,1,K10176-1 +10801,1,8688-1 +10802,1,8894-1 +10803,1,10047-1 +10804,1,235-2 +10806,1,66387-1 +10808,1,21107-1 +10809,1,6299-2 +10810,1,21032-1 +10811,1,4911-1 +10812,1,41101-1 +10813,1,7469-1 +10817,1,70320-1 +10819,1,5627-1 +10821,1,7896-1 +10822,1,5842-1 +10823,1,700.C.3-1 +10824,1,4428-5 +10825,1,7574-1 +10827,1,8532-1 +10828,1,6892-1 +10829,1,850972-1 +10830,1,5003545-1 +10831,1,8208-1 +10832,1,6150-1 +10833,1,40026-1 +10834,1,5004281-1 +10835,1,41016-2 +10836,1,LOC2-14 +10837,1,1510-1 +10838,1,7151-1 +10840,1,30006-1 +10841,1,7415-1 +10843,1,7285-1 +10844,1,8980-1 +10846,1,6060-1 +10847,1,4476-1 +10848,1,600-1 +10850,1,K8592-1 +10851,1,4000011-1 +10852,1,44002-1 +10854,1,1417-2 +10855,1,7687-12 +10856,1,4124-4 +10857,1,8795-1 +10858,1,7784-1 +10860,1,75001-1 +10861,1,75056-11 +10864,1,3057-1 +10867,1,3221-1 +10868,1,5148-1 +10869,1,4882-1 +10870,1,1101-1 +10871,1,4524-16 +10873,1,6605-1 +10874,1,7558-1 +10875,1,71012-16 +10876,1,194-1 +10877,1,1352-1 +10878,1,3312-1 +10880,1,8463-1 +10883,1,970628-1 +10884,1,850997-1 +10885,1,8734-1 +10887,1,4513-1 +10888,1,HPG02-1 +10889,1,832-1 +10890,1,10687-1 +10891,1,71008-15 +10893,1,4024-18 +10894,1,6964-1 +10895,1,850894-1 +10896,1,2541-1 +10897,1,6564-1 +10898,1,2134-1 +10899,1,8803-3 +10900,1,4180878 +10901,1,10254-1 +10902,1,71306-1 +10903,1,70104-1 +10904,1,345-2 +10905,1,2068-1 +10906,1,9583-1 +10909,1,3420-4 +10911,1,44020-1 +10913,1,7907-14 +10914,1,71007-2 +10915,1,1665-1 +10916,1,3634-1 +10917,1,8424-1 +10918,1,40180-1 +10919,1,60074-1 +10921,1,K4612-1 +10923,1,41062-1 +10927,1,6278-1 +10929,1,8366-1 +10932,1,1549-1 +10934,1,4414-1 +10935,1,40083-1 +10937,1,554-1 +10938,1,4538-1 +10939,1,7575-7 +10940,1,9780-1 +10941,1,9856-1 +10942,1,90-2 +10944,1,8785490-1 +10945,1,40135-1 +10946,1,8188-1 +10948,1,3313-1 +10949,1,1226-1 +10950,1,6539-1 +10951,1,41500-1 +10952,1,HPG04-1 +10953,1,10027-1 +10955,1,3538-1 +10956,1,7952-18 +10957,1,5160-1 +10958,1,1194-1 +10961,1,9862-1 +10962,1,10623-1 +10964,1,991337-1 +10965,1,8184-1 +10966,1,4878-1 +10967,1,1242-1 +10969,1,4790-1 +10970,1,4175-1 +10972,1,853429-1 +10974,1,8998-1 +10976,1,K9833-2 +10980,1,6846-1 +10981,1,7639-1 +10982,1,5867-1 +10983,1,1711-1 +10985,1,5135-1 +10987,1,481-3 +10988,1,75092-1 +10990,1,1875-1 +10992,1,232-1 +10993,1,1675-1 +10994,1,88004-1 +10995,1,K1383-1 +10996,1,6305-1 +10997,1,66380-1 +10998,1,6273-1 +10999,1,4706-1 +11000,1,6324-1 +11001,1,970614-1 +11002,1,10251-1 +11003,1,41013-1 +11006,1,12-3 +11007,1,970671-1 +11008,1,8784-1 +11010,1,7188-1 +11011,1,3502-1 +11012,1,1353-1 +11013,1,70013-1 +11014,1,7608-1 +11015,1,42056-1 +11017,1,239-2 +11018,1,53850013-1 +11020,1,5944-1 +11021,1,7755-1 +11022,1,853175-1 +11025,1,423-3 +11026,1,2127-1 +11027,1,8975-1 +11028,1,6062-1 +11029,1,4579-1 +11030,1,71013-3 +11031,1,1467-1 +11033,1,7815-1 +11034,1,7775-1 +11035,1,10726-1 +11037,1,5830-1 +11038,1,10081-1 +11041,1,40104-1 +11042,1,7411-1 +11043,1,K8596-1 +11044,1,853393-1 +11046,1,1663-1 +11049,1,4124-20 +11050,1,K7094-1 +11051,1,71001-16 +11053,1,5004558-1 +11056,1,75156-1 +11057,1,6109-1 +11058,1,8078-1 +11059,1,5529-1 +11060,1,453-1 +11062,1,503-2 +11063,1,7952-9 +11064,1,71017-13 +11065,1,40049-1 +11067,1,214.7-1 +11068,1,6805-1 +11069,1,4679a-1 +11070,1,DKFriends-1 +11072,1,fruit2-1 +11073,1,5934-1 +11075,1,9660-2 +11077,1,41016-3 +11078,1,5155-1 +11079,1,1272-1 +11080,1,6321-1 +11082,1,1794-1 +11083,1,238-6 +11084,1,2824-5 +11085,1,4223-1 +11086,1,7310-1 +11087,1,5176-1 +11088,1,4722-1 +11090,1,10001-1 +11093,1,9636-1 +11094,1,4554-1 +11095,1,9509-24 +11096,1,1575-2 +11098,1,7898-1 +11099,1,6103-1 +11100,1,1826-1 +11101,1,7530-1 +11102,1,1411-1 +11103,1,4053-1 +11104,1,20013-1 +11105,1,2142-1 +11107,1,1899-1 +11108,1,5217-1 +11112,1,553-1 +11113,1,3234-1 +11115,1,5000027-1 +11116,1,8683-17 +11118,1,6283-1 +11119,1,118-3 +11120,1,70150-1 +11121,1,673-1 +11122,1,8533-2 +11123,1,70006-1 +11124,1,9280-1 +11126,1,6299-19 +11127,1,3365-1 +11130,1,76017-1 +11131,1,21302-1 +11132,1,7034-1 +11134,1,31063-1 +11136,1,10041-1 +11138,1,8683-9 +11139,1,mln09-1 +11140,1,4782-1 +11141,1,5047-1 +11143,1,71000-18 +11144,1,41106-1 +11147,1,5620-1 +11148,1,75911-1 +11150,1,1230-2 +11151,1,8732-1 +11152,1,1179-1 +11153,1,7661-1 +11157,1,1831-2 +11158,1,8510-1 +11159,1,4524-11 +11161,1,128-3 +11163,1,5277-1 +11164,1,7831-1 +11165,1,1912-1 +11166,1,4526-1 +11167,1,852845-1 +11168,1,10045-1 +11169,1,10253-1 +11171,1,4107-1 +11173,1,7574-21 +11175,1,1722-1 +11176,1,6067-1 +11177,1,9698-1 +11178,1,6221-1 +11184,1,6348-1 +11185,1,30263-1 +11188,1,1889-1 +11189,1,3726-1 +11190,1,71002-17 +11191,1,1143-1 +11192,1,697-2 +11194,1,65527-1 +11195,1,1242D-1 +11196,1,6249-1 +11197,1,10594-1 +11198,1,3445-1 +11199,1,6132-1 +11201,1,5001-1 +11202,1,70165-1 +11205,1,76019-1 +11206,1,76062-1 +11207,1,21028-1 +11208,1,4073-1 +11210,1,75023-16 +11212,1,21007-1 +11213,1,71014-3 +11214,1,60035-1 +11215,1,7952-5 +11216,1,855-1 +11217,1,8683-12 +11219,1,7777-1 +11220,1,76007-1 +11221,1,625-1 +11223,1,1374-1 +11224,1,41016-7 +11225,1,8439-1 +11226,1,8053-1 +11227,1,76041-1 +11228,1,9848-1 +11229,1,7272-1 +11230,1,10606-1 +11231,1,5292-1 +11235,1,2165-1 +11236,1,1237-1 +11237,1,pk1062 +11238,1,970601-1 +11241,1,7161-1 +11242,1,41120-1 +11244,1,45800-1 +11245,1,398-1 +11246,1,71238-1 +11247,1,1383-1 +11248,1,41180-1 +11249,1,8657-1 +11250,1,3804-1 +11251,1,50006-1 +11252,1,70703-1 +11253,1,K4915-1 +11255,1,HPG01-1 +11259,1,8971-1 +11260,1,10133-1 +11262,1,2009-2 +11263,1,7131-1 +11265,1,700.F-1 +11267,1,CELEBV-1 +11268,1,4432-1 +11269,1,C8511-2 +11272,1,3712-1 +11276,1,1308-1 +11277,1,7620-1 +11279,1,8134-1 +11280,1,71013-11 +11281,1,LOC391405-1 +11282,1,5001267-1 +11283,1,9844-1 +11285,1,10250-1 +11287,1,9491-1 +11289,1,3669-1 +11290,1,5748-1 +11291,1,1327-1 +11292,1,9001-2 +11294,1,21102-1 +11295,1,8963-1 +11296,1,4285-1 +11297,1,10145-1 +11301,1,5167-1 +11302,1,7993-1 +11303,1,8430-1 +11304,1,K7467-1 +11306,1,4597-1 +11307,1,9027-1 +11309,1,852114-1 +11310,1,5953-1 +11311,1,31034-1 +11313,1,371-3 +11314,1,5866-1 +11315,1,853091-1 +11317,1,4428-1 +11318,1,5807-1 +11320,1,5016-1 +11321,1,852979-1 +11322,1,75918-1 +11323,1,9461-1 +11324,1,8195-1 +11325,1,KT206-1 +11327,1,7990-1 +11328,1,900-1 +11329,1,1076-19 +11330,1,8804-0 +11331,1,1836-1 +11332,1,4852-1 +11333,1,6589-1 +11334,1,410-1 +11338,1,30042-1 +11340,1,8695-1 +11341,1,8438-1 +11342,1,10704-1 +11344,1,K4482-1 +11345,1,8016-1 +11346,1,2824-17 +11347,1,41550-1 +11348,1,1234-3 +11349,1,435-2 +11350,1,9371-1 +11351,1,403-2 +11353,1,1223-2 +11354,1,30474-1 +11356,1,7600-4 +11357,1,9364-1 +11358,1,30212-1 +11359,1,79121-1 +11360,1,7169-1 +11361,1,857-1 +11363,1,8929-1 +11364,1,720-1 +11365,1,7217-2 +11367,1,40226-1 +11368,1,5001121-1 +11369,1,9784-1 +11370,1,9872-1 +11371,1,30346-1 +11374,1,6193-1 +11376,1,71013-9 +11379,1,990-1 +11380,1,8805-17 +11381,1,6013-1 +11384,1,KT104-1 +11385,1,845-1 +11386,1,1850-1 +11387,1,853515-1 +11388,1,5002946-1 +11391,1,4278-1 +11392,1,9641-1 +11393,1,8506-1 +11394,1,70413-1 +11395,1,4000009-1 +11396,1,852552-1 +11398,1,71014-14 +11399,1,8420-1 +11400,1,10161-1 +11401,1,76045-1 +11402,1,Lille-1 +11403,1,310-4 +11404,1,3070-1 +11405,1,1548-1 +11406,1,6397-1 +11407,1,6037-1 +11408,1,41572-1 +11409,1,9861-1 +11411,1,6462-1 +11415,1,5507-1 +11416,1,3541-1 +11417,1,70102-1 +11418,1,4228383-1 +11419,1,2824-9 +11421,1,3317-1 +11423,1,4450-1 +11424,1,6944-1 +11426,1,1469-1 +11427,1,3858-1 +11428,1,7575-25 +11429,1,4955-1 +11431,1,1095-1 +11434,1,2131-1 +11436,1,K8362-1 +11437,1,7508-1 +11438,1,6670-1 +11440,1,70409-1 +11441,1,6875-1 +11442,1,5054-1 +11443,1,75045-1 +11444,1,1823-1 +11445,1,3309-1 +11446,1,71241-1 +11447,1,5197-1 +11453,1,970635-1 +11454,1,1974-2 +11455,1,910-1 +11456,1,8295-1 +11457,1,850838-1 +11459,1,8882-1 +11460,1,7420-1 +11461,1,5918-1 +11462,1,71005-3 +11463,1,8473-1 +11464,1,756-1 +11465,1,7687-23 +11466,1,7977-1 +11468,1,LIT2009-1 +11469,1,5001159-1 +11470,1,4660865-1 +11471,1,6299-18 +11472,1,7174-1 +11474,1,7275-1 +11476,1,K8533-1 +11479,1,Alpharetta-1 +11480,1,8739-1 +11481,1,70404-1 +11483,1,TRU01-1 +11484,1,Honolulu-1 +11485,1,363-1 +11487,1,5112-1 +11488,1,937-1 +11489,1,6198-1 +11490,1,872-1 +11491,1,66375-1 +11492,1,5888-1 +11493,1,7525-1 +11494,1,MiniRCX-1 +11496,1,71173-1 +11500,1,1184-1 +11501,1,20017-1 +11502,1,7627-1 +11503,1,42041-1 +11505,1,5231-1 +11506,1,70337-1 +11507,1,21026-1 +11508,1,60124-1 +11509,1,393-2 +11510,1,10009-1 +11511,1,10591-1 +11512,1,4472-1 +11514,1,20202-1 +11515,1,8666-1 +11516,1,6862-1 +11517,1,7864-1 +11519,1,7855-1 +11520,1,10214-1 +11522,1,5001382-1 +11523,1,40127-1 +11524,1,6912-1 +11526,1,10010-1 +11527,1,850794-1 +11528,1,31053-1 +11529,1,llca34-1 +11530,1,70593-1 +11531,1,41032-1 +11532,1,8242-1 +11533,1,70779-1 +11536,1,1263-1 +11537,1,850353-1 +11538,1,75142-1 +11539,1,4794-1 +11540,1,970626-1 +11541,1,5003084-1 +11542,1,7081-1 +11543,1,71009-3 +11544,1,7210-1 +11545,1,561407-1 +11546,1,31037-1 +11547,1,8-3 +11549,1,3039-1 +11550,1,K8944-1 +11551,1,K8755-1 +11552,1,10042-1 +11553,1,10526-1 +11554,1,65771-1 +11555,1,7952-17 +11557,1,6117-1 +11558,1,1655-1 +11559,1,41536-1 +11560,1,21101-1 +11562,1,6349-1 +11563,1,700.1.2-1 +11565,1,850446-1 +11566,1,6206-1 +11567,1,41300-1 +11569,1,5161-1 +11570,1,2250-20 +11571,1,FR561607-1 +11572,1,Paramus-1 +11573,1,7167-1 +11574,1,75037-1 +11576,1,5923-1 +11579,1,7242-1 +11581,1,70706-1 +11582,1,9388-1 +11583,1,229.1-1 +11584,1,5003083-1 +11585,1,7523-1 +11587,1,21121-1 +11588,1,45544-1 +11589,1,8292-1 +11590,1,60063-25 +11591,1,71234-1 +11592,1,31028-1 +11597,1,5874-1 +11598,1,7952-14 +11599,1,205-2 +11600,1,1952-1 +11601,1,7224-1 +11602,1,7680-1 +11603,1,1103-1 +11605,1,66359-1 +11606,1,991330-1 +11607,1,10813-1 +11608,1,nqstudios-1 +11610,1,5219-1 +11612,1,3459-1 +11613,1,8014-1 +11614,1,4745-1 +11615,1,8910-1 +11616,1,3019-1 +11619,1,1552-2 +11621,1,70311-1 +11622,1,8548-1 +11623,1,8831-11 +11626,1,7052-1 +11627,1,4817-1 +11629,1,850851-1 +11631,1,8764-1 +11632,1,70000-1 +11633,1,40022-1 +11634,1,6603-1 +11635,1,8831-7 +11636,1,8803-9 +11639,1,LLCABR3-1 +11640,1,5002813-1 +11641,1,793-1 +11643,1,3664-1 +11644,1,6851-1 +11645,1,41039-1 +11646,1,30224-1 +11647,1,9609-1 +11648,1,llca23-1 +11649,1,7574-14 +11650,1,6985-1 +11653,1,7724-10 +11654,1,8462-1 +11655,1,9696-1 +11656,1,9665-1 +11657,1,1381-1 +11658,1,5002938-1 +11659,1,30205-1 +11662,1,5921-1 +11663,1,40225-1 +11666,1,853447-1 +11668,1,41040-20 +11669,1,5232-1 +11670,1,4495-1 +11671,1,6660-1 +11672,1,3836-1 +11673,1,Cincinnati-1 +11675,1,970659-1 +11676,1,6680-1 +11677,1,5004612-1 +11679,1,8397-1 +11680,1,9450-1 +11683,1,8803-7 +11684,1,2949-1 +11685,1,71010-11 +11686,1,3911-1 +11687,1,570-1 +11688,1,7893-1 +11690,1,5999-1 +11691,1,918-black-2 +11692,1,561408-1 +11693,1,31021-1 +11694,1,7724-11 +11695,1,6774-1 +11697,1,2065-1 +11698,1,6586-1 +11700,1,8949-1 +11701,1,3948-1 +11702,1,75093-1 +11703,1,1149-2 +11704,1,9612-1 +11705,1,60024-8 +11706,1,6244-1 +11707,1,comcon016-1 +11709,1,850852-1 +11716,1,6393-1 +11717,1,7258-1 +11718,1,629-1 +11719,1,300-1 +11720,1,3754-1 +11721,1,8241-1 +11722,1,4492-1 +11723,1,75011-1 +11725,1,9656-1 +11726,1,802-1 +11728,1,4900-1 +11729,1,886-1 +11730,1,809-1 +11731,1,6203-1 +11733,1,10694-1 +11734,1,41040-11 +11735,1,5905-1 +11737,1,7142-1 +11738,1,618-1 +11741,1,3568-1 +11743,1,9865-1 +11745,1,4525-1 +11746,1,8996-1 +11747,1,NMS1035-1 +11748,1,comcon046-1 +11749,1,4162-1 +11752,1,3638-1 +11753,1,20200-1 +11755,1,NIN891610-1 +11757,1,4524-20 +11759,1,66493-1 +11760,1,7793-1 +11761,1,6263-1 +11762,1,21018-1 +11764,1,41076-1 +11765,1,5270-1 +11767,1,1969-2 +11768,1,1414-1 +11769,1,30253-1 +11772,1,242.1-1 +11773,1,FR561606-1 +11774,1,75146-1 +11776,1,41510-1 +11777,1,75023-5 +11778,1,5898-1 +11779,1,2842-1 +11780,1,725-2 +11784,1,71009-18 +11785,1,1-8 +11786,1,66396-1 +11787,1,6636-1 +11788,1,71001-9 +11789,1,70795-1 +11791,1,30240-1 +11795,1,6187-1 +11797,1,70313-1 +11798,1,30399-1 +11802,1,8253-1 +11803,1,2856197-1 +11806,1,e1a1401-1 +11807,1,6256-1 +11808,1,160-1 +11809,1,852777-1 +11810,1,851097 +11812,1,2555-1 +11815,1,45020-1 +11820,1,4958-1 +11821,1,851395-1 +11822,1,3682-1 +11825,1,60141-1 +11826,1,8538-1 +11827,1,856-1 +11829,1,60108-1 +11830,1,4621-1 +11831,1,700.1.1-1 +11832,1,60063-15 +11833,1,30168-1 +11835,1,9846-1 +11836,1,552-1 +11837,1,4524-19 +11839,1,7770-1 +11840,1,4603-1 +11841,1,850884-1 +11842,1,3662-1 +11843,1,770-1 +11844,1,8896-1 +11845,1,8871-1 +11846,1,10123-1 +11847,1,4924-18 +11848,1,8215-1 +11849,1,709-2 +11850,1,9563-1 +11851,1,7979-6 +11853,1,7952-19 +11854,1,41112-1 +11855,1,K7776-1 +11856,1,5370b-1 +11857,1,6430-1 +11858,1,5369-1 +11859,1,70173-1 +11860,1,1298-15 +11861,1,66174-1 +11862,1,70813-1 +11863,1,8012-1 +11864,1,3233-1 +11865,1,3666-1 +11866,1,8723-1 +11867,1,4478-1 +11868,1,1331-1 +11869,1,44012-1 +11870,1,3703-1 +11871,1,8691-1 +11872,1,41133-1 +11873,1,70168-1 +11875,1,7502-1 +11877,1,6966-1 +11878,1,7956-1 +11879,1,VP-11 +11882,1,7958-4 +11883,1,1315-1 +11884,1,364-1 +11885,1,1241-1 +11886,1,853118-1 +11887,1,4950-1 +11890,1,419-3 +11892,1,21022-1 +11893,1,2141-1 +11894,1,8745-1 +11895,1,6483-1 +11896,1,7924-1 +11899,1,7071-1 +11901,1,8618-2 +11902,1,31025-1 +11903,1,6555-1 +11905,1,60009-1 +11906,1,60142-1 +11907,1,680-1 +11909,1,6498-1 +11910,1,4648939-1 +11913,1,75005-1 +11915,1,463-1 +11916,1,70900-1 +11917,1,1415-1 +11918,1,4428-13 +11920,1,12-1 +11921,1,8130-1 +11922,1,517-1 +11924,1,Duck75-1 +11925,1,547-1 +11926,1,4285968-1 +11927,1,814-1 +11929,1,9094-1 +11931,1,1150-1 +11932,1,5004252-1 +11933,1,240-1 +11934,1,853346-1 +11935,1,2853302-1 +11936,1,603-1 +11937,1,60073-1 +11938,1,3748-1 +11939,1,149-1 +11940,1,1591-1 +11941,1,8616-1 +11943,1,10552-1 +11944,1,3023-1 +11946,1,10509-1 +11947,1,2137-1 +11948,1,8273-1 +11949,1,41022-1 +11950,1,6876-1 +11951,1,4460-1 +11954,1,3755-1 +11955,1,5004266-1 +11956,1,2121-1 +11957,1,4811-1 +11959,1,8385-1 +11960,1,1679-1 +11961,1,4274-1 +11962,1,9354-1 +11963,1,40166-1 +11965,1,41134-1 +11966,1,380-1 +11967,1,8804-14 +11968,1,4428-16 +11969,1,1693-1 +11970,1,10020-2 +11971,1,71005-11 +11974,1,6415-1 +11976,1,9224-1 +11977,1,8697-1 +11980,1,970629-1 +11981,1,970619-1 +11983,1,40112-1 +11984,1,6553-1 +11985,1,4433-1 +11987,1,309-1 +11989,1,3529-1 +11990,1,4061-1 +11991,1,8833-0 +11992,1,41575-1 +11993,1,7127-1 +11995,1,41525-1 +11999,1,10232-1 +12000,1,2878-4 +12001,1,3801-1 +12002,1,30017-1 +12004,1,5128-1 +12005,1,5004404-1 +12007,1,71005-10 +12008,1,8689-1 +12009,1,3465-1 +12010,1,242.3-1 +12011,1,75099-1 +12015,1,5886-1 +12016,1,9209-1 +12017,1,121-1 +12020,1,4104-1 +12022,1,8515-1 +12023,1,991319-1 +12024,1,41521-1 +12025,1,830-1 +12029,1,5278-1 +12031,1,10077-1 +12032,1,1298-23 +12036,1,2114-1 +12038,1,5477-1 +12039,1,Minneapolis-1 +12041,1,7979-17 +12043,1,71300-1 +12044,1,71008-0 +12045,1,76032-1 +12047,1,5388-1 +12048,1,10121-1 +12049,1,9279-2 +12050,1,LADYBIRD2-1 +12051,1,7602-1 +12052,1,42028-1 +12053,1,1239-1 +12054,1,6665-1 +12055,1,7009-1 +12056,1,40171-1 +12057,1,241602-1 +12060,1,7074-1 +12061,1,75154-1 +12062,1,970611-1 +12063,1,561509-1 +12064,1,3446-1 +12065,1,60111-1 +12066,1,550-2 +12068,1,C8509-2 +12070,1,2824-13 +12073,1,60063-3 +12074,1,75103-1 +12076,1,5984-1 +12077,1,803-1 +12078,1,9631-1 +12080,1,4418-1 +12082,1,8782-1 +12083,1,722-2 +12084,1,6240-1 +12085,1,317-1 +12086,1,6656-1 +12087,1,4997-1 +12089,1,3028-1 +12090,1,5805-1 +12094,1,30227-1 +12096,1,6513-1 +12097,1,1496-1 +12099,1,7498-1 +12101,1,4948-1 +12102,1,30264-1 +12103,1,60055-1 +12104,1,8958-1 +12106,1,3423-1 +12107,1,30313-1 +12108,1,8833-10 +12109,1,8917-1 +12110,1,66257-1 +12111,1,3404-1 +12112,1,7611-1 +12113,1,65230-1 +12115,1,2258-1 +12118,1,SW911610-1 +12120,1,6882-1 +12121,1,K10079-1 +12123,1,7787-1 +12124,1,6714-1 +12126,1,4560-1 +12127,1,41040-3 +12128,1,9443-1 +12129,1,851336-1 +12130,1,490-1 +12131,1,602-2 +12132,1,6331-1 +12133,1,6034-1 +12134,1,60078-1 +12135,1,7678-1 +12136,1,9446-1 +12137,1,kabkk-1 +12138,1,850807-1 +12139,1,6-3 +12140,1,7574-17 +12141,1,41114-1 +12142,1,8415-1 +12143,1,684-1 +12144,1,4339-1 +12145,1,7133-1 +12146,1,78597-1 +12147,1,LOC213-1 +12148,1,3012-1 +12150,1,7750-1 +12151,1,4865-1 +12152,1,10163-1 +12155,1,3506-1 +12156,1,7414-1 +12157,1,9970-1 +12160,1,6645-1 +12161,1,SWMP-1 +12164,1,21106-1 +12166,1,8831-3 +12167,1,71010-13 +12169,1,269-1 +12170,1,7195-1 +12172,1,561506-1 +12175,1,4124-5 +12176,1,71211-1 +12177,1,700.A-1 +12178,1,3052-1 +12179,1,1588-1 +12180,1,8730-1 +12185,1,851007-1 +12186,1,1963-1 +12189,1,7904-2 +12190,1,4179-1 +12192,1,44010-1 +12193,1,65062-1 +12194,1,6676-1 +12196,1,9754-1 +12197,1,5002939-1 +12198,1,5002792-1 +12200,1,4593-1 +12202,1,71012-12 +12203,1,3936-1 +12205,1,6592-1 +12206,1,8831-1 +12208,1,0015-1 +12216,1,4524081-1 +12217,1,105-1 +12218,1,276-1 +12219,1,1544-1 +12220,1,40041-1 +12222,1,66514-1 +12223,1,10664-1 +12225,1,251-1 +12226,1,9757-1 +12228,1,3827-1 +12231,1,4024-3 +12232,1,337-2 +12233,1,991327-1 +12234,1,6173-1 +12235,1,6115-1 +12237,1,40053-1 +12238,1,682-1 +12239,1,71017-9 +12240,1,1436-1 +12242,1,76047-1 +12243,1,6893-1 +12244,1,1348-1 +12245,1,6541-1 +12246,1,75024-1 +12247,1,7499-1 +12249,1,60041-1 +12250,1,1719-1 +12251,1,6299-23 +12252,1,152-1 +12255,1,4215-1 +12256,1,264-1 +12257,1,10039-1 +12258,1,1911-1 +12261,1,6641-1 +12263,1,5-3 +12264,1,9365-1 +12266,1,5971-1 +12267,1,3794-1 +12268,1,8238-1 +12269,1,9561-1 +12270,1,8206-1 +12272,1,432-1 +12273,1,KT307-1 +12274,1,3389-1 +12275,1,9448-1 +12277,1,7581-1 +12278,1,8815-1 +12279,1,8988-1 +12280,1,8785-2 +12281,1,8305-1 +12282,1,970605-1 +12283,1,1994-1 +12285,1,70754-1 +12286,1,6458-1 +12287,1,6411-1 +12288,1,4428-3 +12290,1,641-1 +12294,1,5550-1 +12295,1,138-1 +12296,1,71009-13 +12297,1,OverlandPark-1 +12298,1,7213-1 +12299,1,6765-1 +12300,1,9730-1 +12301,1,320-1 +12304,1,7278-1 +12305,1,30162-1 +12307,1,66308-1 +12311,1,70220-1 +12312,1,75023-18 +12313,1,4178-1 +12314,1,4407-1 +12317,1,5847-1 +12318,1,8656-1 +12319,1,1972-1 +12322,1,5004870-1 +12323,1,4436-1 +12324,1,71248-1 +12325,1,5522-1 +12326,1,4623-1 +12328,1,338-1 +12329,1,5210-1 +12330,1,6626-1 +12332,1,970036-1 +12334,1,7209-1 +12335,1,4305-1 +12337,1,8411-1 +12338,1,41172-1 +12339,1,6290-1 +12341,1,71311-1 +12342,1,50004-1 +12344,1,8833-18 +12346,1,K8371-1 +12348,1,5563-1 +12349,1,7324-20 +12352,1,707-1 +12354,1,41108-1 +12356,1,6813-1 +12358,1,3403-1 +12359,1,545-2 +12361,1,70728-1 +12363,1,402-1 +12365,1,9833-2 +12367,1,3416-1 +12368,1,40054-1 +12369,1,4172-1 +12371,1,8079-1 +12372,1,71219-1 +12373,1,7311-1 +12375,1,725-1 +12376,1,1214-2 +12377,1,6675-1 +12378,1,40182-1 +12381,1,Glendale-1 +12382,1,9618-1 +12383,1,41078-1 +12384,1,76000-1 +12385,1,1562-2 +12386,1,71007-11 +12388,1,3784-1 +12389,1,70780-1 +12391,1,40141-1 +12392,1,7979-4 +12393,1,4124-7 +12396,1,7020-1 +12397,1,71040-1 +12399,1,8631-1 +12406,1,42053-1 +12407,1,4568-1 +12408,1,1563-1 +12412,1,NK271602-1 +12414,1,31009-1 +12415,1,5151-1 +12416,1,7952-21 +12417,1,7600-10 +12419,1,8062-1 +12420,1,6011-1 +12424,1,8805-12 +12426,1,561512-1 +12427,1,comcon018-1 +12431,1,2504-1 +12432,1,44006-1 +12433,1,7687-3 +12435,1,8833-16 +12437,1,8803-17 +12438,1,4494-1 +12440,1,6332-1 +12441,1,147-1 +12444,1,8304-1 +12445,1,K8956-1 +12446,1,970615-1 +12447,1,76040-1 +12448,1,985-1 +12449,1,375-2 +12451,1,1351-1 +12452,1,42040-1 +12453,1,8833-12 +12454,1,70743-1 +12455,1,6807-1 +12456,1,6048-1 +12460,1,8265-1 +12461,1,30010-1 +12463,1,10727-1 +12464,1,7600-13 +12465,1,1729-1 +12466,1,8632-1 +12467,1,376-2 +12468,1,4071-1 +12469,1,3187-1 +12470,1,9847-1 +12471,1,6773-1 +12474,1,41548-1 +12476,1,7687-14 +12477,1,852231-1 +12478,1,5004117-1 +12479,1,9398-1 +12481,1,9488-1 +12482,1,3316-6 +12483,1,6035-1 +12484,1,1524-1 +12485,1,4443-1 +12487,1,40140-1 +12488,1,5936-1 +12489,1,1433-1 +12490,1,6927-1 +12491,1,88003-1 +12492,1,6461-1 +12494,1,851320-1 +12495,1,6557-1 +12496,1,9485-1 +12497,1,520-1 +12498,1,1191-1 +12499,1,3644-1 +12500,1,10586-1 +12501,1,3300001-1 +12502,1,4726-1 +12503,1,8185-1 +12505,1,487-2 +12506,1,791-1 +12507,1,Troy-1 +12508,1,2509-1 +12509,1,1628-1 +12511,1,970607-1 +12513,1,4721-1 +12514,1,8396-1 +12515,1,1106-1 +12517,1,7701-1 +12518,1,75871-1 +12519,1,79013-1 +12520,1,853449-1 +12521,1,7978-1 +12522,1,7038-1 +12523,1,6836-1 +12524,1,7600-24 +12525,1,6590-1 +12526,1,76034-1 +12527,1,3438-1 +12528,1,6502-1 +12529,1,NK271601-1 +12532,1,1196-1 +12533,1,8144-2 +12537,1,990-2 +12538,1,970030-1 +12539,1,60024-25 +12540,1,10063-1 +12541,1,6543-1 +12542,1,5004064-1 +12545,1,4807-1 +12546,1,40059-1 +12547,1,8453-1 +12548,1,8071-1 +12551,1,5295-1 +12552,1,LOC391411-1 +12553,1,8011-1 +12554,1,6096-1 +12556,1,5286-1 +12557,1,9243-1 +12558,1,3497-1 +12559,1,5002914-1 +12561,1,7279-1 +12562,1,4056-1 +12565,1,MMMB003-1 +12566,1,3938-1 +12567,1,5173-1 +12571,1,2981-1 +12573,1,41117-1 +12575,1,7739-1 +12578,1,7051-1 +12579,1,611-1 +12582,1,6299-15 +12583,1,9875-1 +12584,1,6568-1 +12585,1,8858-2 +12588,1,41010-1 +12589,1,8683-10 +12590,1,66237-1 +12591,1,4906-1 +12592,1,60005-1 +12593,1,1134-1 +12595,1,71246-1 +12596,1,40100-1 +12598,1,70230-1 +12600,1,1341-1 +12601,1,5032-1 +12602,1,75087-1 +12604,1,7554-1 +12605,1,9693-1 +12606,1,9928-1 +12609,1,131-1 +12610,1,8043-1 +12611,1,60076-1 +12612,1,8684-7 +12616,1,4124-21 +12617,1,3725-1 +12619,1,76064-1 +12623,1,6402-1 +12624,1,MS1046-1 +12625,1,4024-20 +12626,1,10570-1 +12627,1,3316-25 +12628,1,3311-1 +12630,1,7687-24 +12633,1,10230-1 +12634,1,970111-1 +12635,1,8831-16 +12636,1,60049-1 +12637,1,71002-0 +12638,1,8881-1 +12640,1,71000-10 +12641,1,6041-1 +12642,1,10585-1 +12643,1,45502-1 +12644,1,7191-1 +12645,1,537-1 +12646,1,6977-1 +12648,1,9797-1 +12649,1,7575-14 +12650,1,852272-1 +12651,1,8885-1 +12652,1,41520-1 +12653,1,9465-1 +12655,1,10153-1 +12656,1,60097-1 +12657,1,7327-1 +12658,1,338-2 +12659,1,312-3 +12661,1,6330-1 +12662,1,3680-1 +12663,1,76053-1 +12666,1,970680-1 +12669,1,4151270-1 +12670,1,6986-1 +12672,1,9509-16 +12673,1,60024-7 +12676,1,41142-1 +12678,1,458-1 +12679,1,3300006-1 +12681,1,9338-1 +12686,1,75006-1 +12687,1,8353-1 +12691,1,42025-1 +12692,1,9630-1 +12696,1,Wauwatosa-1 +12697,1,8237-1 +12698,1,41129-1 +12699,1,6379-1 +12700,1,5001388-1 +12703,1,41128-1 +12704,1,8586-2 +12706,1,9771-1 +12707,1,8924-1 +12709,1,9509-19 +12710,1,5183-1 +12711,1,6001095-1 +12712,1,4021-1 +12713,1,4511-1 +12714,1,75009-1 +12717,1,41047-1 +12720,1,8539-1 +12722,1,7032-1 +12723,1,10577-1 +12724,1,70709-1 +12725,1,9497-1 +12726,1,4406-1 +12727,1,MS1042-1 +12729,1,5765-1 +12731,1,5262-1 +12734,1,5143-1 +12736,1,540-1 +12737,1,LOC391410-1 +12738,1,306-1 +12740,1,1639-1 +12741,1,851-1 +12742,1,6952-1 +12743,1,7904-21 +12744,1,3401-2 +12746,1,3386-1 +12747,1,41104-1 +12748,1,66515-1 +12749,1,518-1 +12750,1,6866-1 +12751,1,6242-1 +12752,1,5948-1 +12753,1,71011-8 +12754,1,911611-1 +12755,1,5196-1 +12756,1,75116-1 +12758,1,700.C.6-1 +12759,1,VP-4 +12761,1,7633-1 +12764,1,1249-1 +12765,1,71011-12 +12766,1,79103-1 +12768,1,518-10 +12769,1,8073-1 +12770,1,6446-1 +12772,1,7904-15 +12773,1,41546-1 +12774,1,8296-1 +12775,1,1879-1 +12777,1,5035-1 +12778,1,4791-1 +12781,1,10538-1 +12782,1,1270-2 +12783,1,7958-7 +12784,1,6039-1 +12785,1,3316-3 +12786,1,75079-1 +12787,1,42022-1 +12789,1,5701-1 +12790,1,76063-1 +12792,1,3722-1 +12793,1,70338-1 +12794,1,60025-1 +12795,1,30014-1 +12796,1,8707-1 +12797,1,7021-1 +12798,1,70751-1 +12799,1,850617-1 +12800,1,10157-1 +12801,1,931-1 +12802,1,30213-1 +12803,1,60081-1 +12804,1,8684-6 +12805,1,30052-1 +12806,1,6527-1 +12807,1,7672-1 +12809,1,6186-1 +12810,1,10106-1 +12811,1,10198-1 +12813,1,66479-1 +12814,1,8086-1 +12817,1,71256-1 +12818,1,970676-1 +12819,1,30220-1 +12820,1,224-1 +12822,1,166-1 +12823,1,7128-1 +12824,1,145-1 +12826,1,460-1 +12827,1,833-1 +12830,1,kk2vp3-1 +12831,1,6558-1 +12832,1,30265-1 +12833,1,2856079-1 +12834,1,8744-1 +12836,1,9373-1 +12837,1,13-2 +12838,1,75919-1 +12839,1,7625-1 +12840,1,3412-1 +12841,1,675-1 +12842,1,891505-1 +12843,1,4860-1 +12844,1,30041-1 +12845,1,76037-1 +12846,1,3484-1 +12848,1,75098-1 +12851,1,2824-1 +12855,1,7422-1 +12856,1,kabbion-1 +12861,1,1677-1 +12863,1,70604-1 +12865,1,76059-1 +12866,1,LOC391506-1 +12867,1,20-1 +12868,1,3440-1 +12869,1,8399-1 +12871,1,580-1 +12873,1,1220-1 +12875,1,4130-1 +12876,1,4135-1 +12878,1,5771-1 +12879,1,8805-10 +12880,1,2250-16 +12881,1,4489-1 +12882,1,10709-1 +12884,1,970683-1 +12885,1,3196-1 +12886,1,75018-1 +12887,1,10746-1 +12889,1,10513-1 +12890,1,71001-3 +12891,1,6396-1 +12893,1,75083-1 +12895,1,41009-1 +12896,1,4559288-1 +12897,1,8827-4 +12899,1,4583-1 +12900,1,8166-1 +12901,1,1108-1 +12902,1,Sacramento-1 +12904,1,41050-1 +12905,1,6599-1 +12906,1,5002929-1 +12907,1,9310-1 +12908,1,1589-1 +12909,1,4524-21 +12910,1,3351-1 +12911,1,2965-1 +12913,1,3551-1 +12914,1,5008-1 +12915,1,4143-1 +12916,1,40039-1 +12917,1,41068-1 +12918,1,6967-1 +12919,1,3775-1 +12920,1,5929-1 +12921,1,5389-1 +12922,1,1034-1 +12923,1,41016-20 +12924,1,6314-1 +12926,1,6614-1 +12927,1,5004280-1 +12928,1,7527-1 +12929,1,6207-1 +12930,1,4032-13 +12934,1,6299-14 +12935,1,30283-1 +12936,1,5582-1 +12938,1,349-1 +12939,1,8585-2 +12940,1,960-1 +12943,1,70746-1 +12944,1,31006-1 +12945,1,3848-1 +12946,1,1031-1 +12948,1,8615-1 +12949,1,2151-1 +12950,1,8536-1 +12952,1,4346-3 +12955,1,VP-8 +12956,1,9525-1 +12957,1,4524-3 +12958,1,30072-1 +12961,1,10532-1 +12962,1,8425-1 +12963,1,70111-1 +12965,1,3625-1 +12967,1,897-1 +12968,1,6979-1 +12971,1,3223-1 +12972,1,60044-1 +12975,1,6683-1 +12976,1,1259-1 +12977,1,60043-1 +12979,1,7575-13 +12981,1,70001-1 +12982,1,5972-1 +12985,1,700.1-2 +12986,1,3333-1 +12987,1,5004609-1 +12988,1,8535-1 +12989,1,LLCABR2-1 +12991,1,8057-1 +12992,1,6243-1 +12993,1,8516-1 +12996,1,1998-1 +12997,1,5002506-1 +12998,1,9370-1 +12999,1,880002-2 +13000,1,10674-1 +13002,1,8487-1 +13003,1,853440-1 +13004,1,7324-21 +13005,1,1135-1 +13007,1,7724-12 +13008,1,40070-1 +13009,1,6157-1 +13010,1,6230-1 +13011,1,71004-7 +13012,1,7657-1 +13013,1,5382-1 +13014,1,4153-1 +13017,1,5174-1 +13019,1,4336-1 +13021,1,8581-1 +13022,1,76031-1 +13023,1,8280-1 +13025,1,5172-1 +13026,1,5004268-1 +13027,1,75133-1 +13028,1,8283-1 +13029,1,31062-1 +13030,1,2824-16 +13031,1,7630-1 +13032,1,853430-1 +13035,1,970646-1 +13036,1,2250-4 +13038,1,3413-1 +13039,1,1083-1 +13040,1,71001-2 +13042,1,2167-1 +13043,1,8403-1 +13044,1,71004-10 +13046,1,7694-1 +13047,1,8433-1 +13048,1,1224A-1 +13049,1,8431-1 +13050,1,1429-2 +13052,1,42020-1 +13053,1,71009-2 +13054,1,2892-1 +13055,1,70139-1 +13057,1,3177-1 +13058,1,7147-1 +13059,1,21024-1 +13061,1,70149-1 +13063,1,8992-1 +13067,1,70803-1 +13068,1,3499-1 +13069,1,8493-1 +13070,1,1298-13 +13071,1,4468-1 +13073,1,K6762-1 +13074,1,5253-1 +13076,1,1227-2 +13078,1,76030-1 +13079,1,10847-1 +13080,1,8226-1 +13082,1,71209-1 +13083,1,K10022-1 +13084,1,SWDVDBD-1 +13085,1,30030-1 +13087,1,1484-1 +13088,1,1147-1 +13089,1,9302-1 +13090,1,4052-1 +13092,1,1214-1 +13093,1,272-1 +13095,1,1291-1 +13098,1,1606-1 +13099,1,60077-1 +13100,1,10168-1 +13101,1,2891-1 +13103,1,1243-1 +13105,1,10805-1 +13106,1,7574-2 +13107,1,9509-4 +13110,1,71009-15 +13111,1,10525-1 +13113,1,843-1 +13115,1,2160-1 +13116,1,7575-21 +13117,1,7043-1 +13118,1,70752-1 +13119,1,8531-1 +13121,1,5085-1 +13122,1,6874-1 +13123,1,4995-1 +13125,1,5844-1 +13127,1,4100-1 +13128,1,7237-2 +13129,1,9509-21 +13130,1,8802-1 +13131,1,970603-1 +13132,1,5002518-1 +13134,1,5003582-1 +13137,1,970660-1 +13139,1,10181-1 +13140,1,4679b-2 +13141,1,10204-1 +13145,1,850646-1 +13146,1,664-1 +13147,1,30315-1 +13148,1,5003565-1 +13149,1,lmg008-1 +13150,1,4428-17 +13151,1,8534-2 +13152,1,2852726-1 +13153,1,KT107-1 +13154,1,7638-1 +13157,1,8033-1 +13158,1,CostaMesa-1 +13159,1,5000249-1 +13160,1,646-1 +13161,1,240-2 +13162,1,876-1 +13163,1,1199-1 +13164,1,5003568-1 +13166,1,31027-1 +13167,1,6707-1 +13168,1,700L-1 +13170,1,9747-1 +13171,1,71012-1 +13172,1,1135-2 +13173,1,8052-1 +13174,1,31059-1 +13175,1,9686-1 +13176,1,7649-1 +13179,1,7817-1 +13181,1,6801-1 +13183,1,79105-1 +13184,1,5194-1 +13185,1,4032-12 +13186,1,10505-1 +13187,1,6818-1 +13188,1,853470-1 +13189,1,4105-1 +13190,1,6668-1 +13191,1,75825-1 +13194,1,4012-1 +13196,1,70807-1 +13199,1,71215-1 +13200,1,5004611-1 +13201,1,40014-1 +13202,1,906-1 +13203,1,5850-1 +13205,1,649-1 +13207,1,3639-1 +13208,1,8684-12 +13209,1,4628-1 +13210,1,5403-1 +13211,1,1268-1 +13212,1,5063-1 +13213,1,42010-1 +13215,1,6493-1 +13216,1,646-2 +13221,1,171-1 +13224,1,KSB28-1 +13226,1,4533-1 +13227,1,30191-1 +13228,1,40097-1 +13229,1,1658-1 +13230,1,21301-1 +13231,1,Newark-1 +13232,1,6704-1 +13233,1,5001387-1 +13235,1,3747-1 +13237,1,8886-1 +13238,1,65109-1 +13240,1,2708-1 +13242,1,8082-1 +13243,1,41-1 +13244,1,30165-1 +13245,1,40102-1 +13246,1,3803-1 +13248,1,44003-1 +13250,1,7947-1 +13251,1,1592-2 +13254,1,66318-1 +13255,1,7600-5 +13256,1,6950-1 +13257,1,7573-1 +13258,1,6344-1 +13259,1,452-1 +13262,1,850996-1 +13263,1,991332-1 +13265,1,850888-1 +13266,1,60015-1 +13267,1,8263-1 +13268,1,6442-1 +13269,1,4195641-1 +13271,1,LOC391501-1 +13272,1,4069-1 +13273,1,30188-1 +13275,1,1960-2 +13277,1,4914-1 +13279,1,1682-1 +13280,1,6145-1 +13281,1,6126-1 +13283,1,7979-2 +13285,1,8684-8 +13286,1,VP-2 +13287,1,3414-1 +13288,1,6134-1 +13289,1,9509-22 +13293,1,41041-1 +13294,1,9954-1 +13296,1,7159-1 +13297,1,7911-1 +13299,1,1210-2 +13300,1,4730-1 +13301,1,1062-1 +13302,1,8803-11 +13303,1,5163-1 +13304,1,5004409-1 +13305,1,DKIDEASBOOK-1 +13306,1,3483-1 +13307,1,3066-1 +13309,1,8036-1 +13310,1,305-1 +13311,1,75054-1 +13312,1,4711-1 +13313,1,30303-1 +13315,1,40130-1 +13317,1,8796-1 +13318,1,8976-1 +13319,1,41011-1 +13321,1,10546-1 +13322,1,8590-3 +13323,1,7897-1 +13324,1,8923-1 +13326,1,852987-1 +13327,1,5102-1 +13328,1,4941-1 +13329,1,TRUCOGSWORTH-1 +13330,1,comcon030-1 +13331,1,6584-1 +13332,1,70748-1 +13333,1,7295-1 +13334,1,850452-1 +13336,1,6353-1 +13337,1,4408-1 +13339,1,5002-1 +13340,1,1292-1 +13342,1,8805-5 +13343,1,6474-1 +13344,1,1962-1 +13345,1,6870-1 +13346,1,40110-1 +13351,1,0016-1 +13355,1,66116-1 +13356,1,261-4 +13357,1,842-1 +13359,1,10543-1 +13360,1,71221-1 +13362,1,470-1 +13363,1,7237-1 +13365,1,8736-1 +13366,1,5001096-1 +13367,1,8590-2 +13368,1,3735-1 +13369,1,10608-1 +13370,1,K7894-1 +13372,1,970661-1 +13373,1,1846-1 +13374,1,70227-1 +13377,1,6130-1 +13378,1,3401-1 +13380,1,shtown99small-1 +13381,1,3913-1 +13382,1,21122-1 +13385,1,75056-20 +13386,1,60001-1 +13387,1,4428-8 +13388,1,40106-1 +13390,1,5101-1 +13391,1,41091-1 +13392,1,5890-1 +13393,1,60110-1 +13394,1,21000-1 +13398,1,66193-1 +13399,1,854-1 +13400,1,75013-1 +13401,1,8046-1 +13402,1,4173-1 +13403,1,9390-1 +13404,1,1298-24 +13406,1,10022-1 +13409,1,2544-1 +13410,1,2855028-1 +13411,1,6495-1 +13412,1,K4415-1 +13413,1,7557-1 +13415,1,4877-1 +13416,1,40085-1 +13417,1,75031-1 +13418,1,75109-1 +13420,1,1038-1 +13421,1,852949-1 +13423,1,65296-1 +13424,1,21050-1 +13425,1,6317-1 +13426,1,8833-4 +13427,1,1976-1 +13428,1,6559-1 +13430,1,30107-1 +13433,1,8831-15 +13434,1,5840-1 +13436,1,1244-1 +13439,1,3795-1 +13440,1,44027-1 +13441,1,70126-1 +13442,1,6630-1 +13446,1,6276-1 +13447,1,8827-18 +13448,1,5138-1 +13450,1,K7471-1 +13451,1,1712-1 +13452,1,Edmonton-1 +13453,1,9679-1 +13454,1,2000422-1 +13455,1,5002919-1 +13457,1,4465-1 +13458,1,7904-6 +13461,1,4428-18 +13463,1,7738-1 +13464,1,6391-1 +13465,1,642-1 +13466,1,30215-1 +13467,1,8509-1 +13468,1,010-1 +13469,1,9387-1 +13471,1,75149-1 +13472,1,211-2 +13473,1,493-3 +13474,1,6138-1 +13475,1,127-1 +13476,1,31051-1 +13477,1,8061-1 +13478,1,3016-1 +13480,1,71002-18 +13483,1,llca35-1 +13485,1,71009-0 +13486,1,4924-15 +13487,1,71237-1 +13488,1,3723-1 +13489,1,1178-1 +13490,1,215-1 +13491,1,1555-1 +13493,1,1224-1 +13494,1,31048-1 +13495,1,9474-1 +13496,1,7632-1 +13498,1,70601-1 +13499,1,8857-2 +13500,1,60060-1 +13501,1,Pleasanton-1 +13503,1,8683-0 +13505,1,970010-1 +13506,1,2757-1 +13507,1,71002-13 +13508,1,45802-1 +13509,1,5012-1 +13510,1,970633-1 +13511,1,560-2 +13512,1,30-1 +13514,1,5623-1 +13517,1,367-1 +13520,1,5005-1 +13521,1,851417-1 +13522,1,SW911509-1 +13523,1,9916-1 +13524,1,31065-1 +13525,1,7904-9 +13526,1,9573-1 +13527,1,70211-1 +13528,1,30291-1 +13529,1,5509-1 +13530,1,10574-1 +13532,1,6029-1 +13533,1,2174-1 +13535,1,214.9-1 +13536,1,9776-1 +13538,1,K8727-1 +13539,1,379-1 +13540,1,71013-12 +13541,1,4110-1 +13542,1,1802-1 +13544,1,1632-1 +13546,1,30112-1 +13547,1,6953-1 +13548,1,404-4 +13551,1,8153-1 +13553,1,9590-1 +13554,1,7106-1 +13555,1,4632-1 +13556,1,71008-5 +13557,1,75096-1 +13558,1,41143-1 +13561,1,850849-1 +13562,1,60083-1 +13563,1,5004838-1 +13564,1,30102-1 +13565,1,460-2 +13567,1,4454-1 +13568,1,8434-1 +13569,1,4124-17 +13570,1,453-2 +13571,1,1376-1 +13574,1,1222-1 +13575,1,71005-7 +13576,1,C8509-5 +13577,1,5000439-1 +13578,1,6681-1 +13581,1,3316-5 +13582,1,708-1 +13584,1,6383-1 +13585,1,7663-1 +13586,1,5615-1 +13588,1,1630-1 +13589,1,4731-1 +13590,1,1076-13 +13592,1,8779-1 +13595,1,6629-1 +13596,1,comcon009-1 +13601,1,9927-1 +13603,1,8683-18 +13604,1,9676-1 +13605,1,76006-1 +13606,1,6445-1 +13608,1,31003-1 +13610,1,6613-1 +13611,1,6692-1 +13614,1,8615-2 +13615,1,9732-1 +13616,1,4108-1 +13617,1,K7623-1 +13618,1,4146-1 +13620,1,3078-1 +13621,1,6375-2 +13622,1,30163-1 +13624,1,42008-1 +13625,1,40032-1 +13627,1,6024-1 +13628,1,6747-1 +13629,1,2854-1 +13631,1,DKCastle-1 +13632,1,5200-1 +13633,1,7904-23 +13634,1,10054-1 +13635,1,970606-1 +13637,1,71304-1 +13642,1,5000202-1 +13643,1,8540-1 +13644,1,1264-1 +13647,1,Minneapolis-2 +13648,1,4335-1 +13652,1,75141-1 +13653,1,519-10 +13654,1,5002145-1 +13655,1,5398-1 +13656,1,1233-2 +13659,1,1760-1 +13660,1,735-1 +13661,1,K7895-1 +13662,1,1898-1 +13663,1,6877-1 +13664,1,6368-1 +13665,1,7575-20 +13666,1,608-1 +13668,1,5002126-1 +13671,1,1279-1 +13673,1,42045-1 +13675,1,SW911617-1 +13676,1,6648-1 +13678,1,5858-2 +13679,1,6057-1 +13680,1,4924-10 +13681,1,DKSWYoda-1 +13682,1,1514-1 +13683,1,2856225-1 +13684,1,6504-1 +13685,1,3316-13 +13686,1,75095-1 +13687,1,9489-1 +13688,1,41066-1 +13693,1,110-1 +13694,1,1649-2 +13695,1,3934-1 +13696,1,4287744-1 +13697,1,2538-1 +13700,1,5413-1 +13701,1,30524-1 +13702,1,MMMB009-1 +13703,1,5416-2 +13704,1,8705-1 +13706,1,7324-10 +13707,1,851368-1 +13709,1,60016-1 +13710,1,79104-1 +13711,1,8435-1 +13712,1,2188-1 +13713,1,8921-1 +13714,1,4116-1 +13716,1,4924-12 +13717,1,5856-1 +13720,1,4441-1 +13721,1,41026-1 +13722,1,5004130-1 +13723,1,8221-1 +13724,1,70742-1 +13725,1,8262-1 +13726,1,7516-1 +13730,1,5585-1 +13731,1,44026-1 +13732,1,628-1 +13733,1,7958-9 +13734,1,4520-1 +13736,1,7958-2 +13737,1,2148-1 +13738,1,3178-1 +13739,1,10016-1 +13740,1,FR561610-1 +13743,1,6251-1 +13744,1,700.B-1 +13745,1,6334-1 +13746,1,8831-4 +13747,1,41559-1 +13748,1,6679-1 +13750,1,76001-1 +13751,1,40143-1 +13752,1,60103-1 +13753,1,40144-1 +13754,1,75038-1 +13756,1,2122-1 +13758,1,70326-1 +13759,1,4641-1 +13760,1,60063-11 +13763,1,317-2 +13764,1,10702-1 +13765,1,119-1 +13766,1,9820-1 +13767,1,6880-1 +13769,1,10131-1 +13770,1,5003022-1 +13771,1,1076-24 +13772,1,71017-15 +13774,1,2882-1 +13776,1,7967-1 +13777,1,623-2 +13779,1,Birmingham-1 +13780,1,1206-1 +13783,1,4062-1 +13785,1,6534-1 +13786,1,8164-1 +13787,1,3367-1 +13789,1,8665-1 +13790,1,Sunrise-1 +13792,1,8804-1 +13795,1,852843-1 +13797,1,10720-1 +13798,1,4032-3 +13799,1,40023-1 +13801,1,8804-2 +13802,1,5560-1 +13803,1,5835-1 +13804,1,1144-1 +13805,1,7687-4 +13806,1,4521221-1 +13807,1,71008-4 +13812,1,2144-1 +13813,1,00-2 +13814,1,5004065-1 +13816,1,71257-1 +13817,1,7859-1 +13818,1,6802-1 +13819,1,10529-1 +13820,1,7646-1 +13821,1,6032-1 +13822,1,1236-1 +13823,1,4828-1 +13824,1,853305-1 +13830,1,8412-1 +13831,1,70722-1 +13832,1,Sheffield-1 +13833,1,3612-1 +13835,1,1580-2 +13836,1,1260-1 +13838,1,7526-1 +13839,1,6540-1 +13840,1,915-2 +13841,1,841-1 +13842,1,40223-1 +13845,1,6088-1 +13846,1,71014-10 +13847,1,7477-1 +13848,1,41569-1 +13849,1,1226-2 +13852,1,10019-1 +13853,1,41055-1 +13854,1,10194-1 +13856,1,75002-1 +13857,1,7467-1 +13858,1,7067-1 +13860,1,5003578-1 +13862,1,6437-1 +13865,1,2304-1 +13868,1,6628-2 +13869,1,1964-1 +13871,1,5899-1 +13872,1,41020-1 +13873,1,970678-1 +13874,1,6427-1 +13876,1,40019-1 +13877,1,llca8-1 +13878,1,Toronto-1 +13879,1,5007-1 +13883,1,65845-1 +13884,1,1176-1 +13885,1,8684-14 +13886,1,7347-1 +13887,1,088-1 +13888,1,400-3 +13891,1,2846-1 +13893,1,3320-1 +13894,1,70125-1 +13895,1,2166-1 +13896,1,2254-1 +13898,1,3093-1 +13901,1,9763-1 +13903,1,7471-1 +13905,1,2554-1 +13906,1,K8924-1 +13907,1,K8606-1 +13909,1,30085-1 +13910,1,4118-1 +13911,1,70110-1 +13912,1,8465934-1 +13913,1,8547-1 +13914,1,e1a1403-1 +13915,1,21108-1 +13916,1,6270-1 +13917,1,65537-1 +13918,1,4037-1 +13919,1,4405-1 +13920,1,9899-1 +13921,1,5002793-1 +13922,1,LLCAPUM2-1 +13923,1,1837-1 +13924,1,6468-1 +13925,1,60024-1 +13926,1,3-6 +13927,1,D100340-1 +13928,1,31005-1 +13931,1,212-2 +13933,1,3387-1 +13935,1,7136-1 +13936,1,5149-1 +13938,1,7574-15 +13939,1,7320-1 +13941,1,K10001-1 +13942,1,8592-2 +13943,1,8605-1 +13944,1,3350-1 +13945,1,1326-1 +13948,1,8684-0 +13950,1,30373-1 +13951,1,7979-16 +13953,1,8069-1 +13955,1,10151-1 +13956,1,71014-16 +13959,1,2719-1 +13960,1,K8900-1 +13962,1,6703-1 +13963,1,70332-1 +13965,1,710-1 +13966,1,442A-1 +13968,1,5169-1 +13969,1,5257-1 +13970,1,41563-1 +13971,1,353-1 +13973,1,4277678-1 +13974,1,704-1 +13975,1,445-1 +13976,1,70412-1 +13978,1,NIN891619-1 +13979,1,7321-1 +13980,1,1334-1 +13981,1,2742-1 +13982,1,7033-1 +13984,1,331-1 +13988,1,9841-1 +13989,1,30193-1 +13990,1,991335-1 +13991,1,9466-1 +13992,1,71007-18 +13994,1,41040-24 +13995,1,7308-1 +13996,1,101-1 +13997,1,3808-1 +14000,1,4304-1 +14002,1,71010-1 +14005,1,7952-23 +14006,1,70325-1 +14007,1,6531-1 +14008,1,3047-1 +14009,1,9449-1 +14010,1,7724-19 +14011,1,66428-1 +14012,1,NIN891618-1 +14013,1,1319-1 +14014,1,7907-24 +14015,1,7823-1 +14016,1,30009-1 +14017,1,6667-1 +14018,1,40228-1 +14019,1,6897-1 +14020,1,75077-1 +14021,1,10506-1 +14022,1,850808-1 +14026,1,8940-1 +14027,1,8827-14 +14028,1,1154-1 +14029,1,10217-1 +14030,1,41517-1 +14031,1,70702-1 +14034,1,122-1 +14036,1,7747-1 +14038,1,6785-1 +14039,1,8643-1 +14040,1,10200-1 +14041,1,3410-1 +14042,1,2250-13 +14043,1,9467-1 +14044,1,850951-1 +14045,1,4949-1 +14046,1,700.16-1 +14048,1,71011-14 +14050,1,330-1 +14053,1,3316-8 +14054,1,7901-1 +14055,1,1434-1 +14056,1,1337-1 +14058,1,9890-1 +14059,1,853219-1 +14060,1,9762-1 +14061,1,41097-1 +14062,1,1804-1 +14064,1,79000-1 +14067,1,1106-2 +14068,1,71228-1 +14069,1,7163-1 +14072,1,1750-1 +14073,1,3316-14 +14075,1,8281-1 +14076,1,1789-1 +14077,1,687-1 +14079,1,kabrock-1 +14080,1,8633-1 +14081,1,3552-1 +14082,1,5081-1 +14083,1,2536-1 +14084,1,850425-1 +14085,1,41540-1 +14087,1,8261-1 +14090,1,7904-4 +14091,1,4708-1 +14093,1,7263-1 +14094,1,7575-5 +14096,1,66383-1 +14097,1,9967-1 +14099,1,8559-1 +14104,1,71002-15 +14106,1,1592-1 +14107,1,LLCA25-1 +14108,1,42061-1 +14109,1,2162-1 +14110,1,6426-1 +14111,1,6828-1 +14112,1,7307-1 +14113,1,9912-1 +14115,1,30270-1 +14119,1,60113-1 +14120,1,76048-1 +14121,1,8833-13 +14123,1,4475-1 +14124,1,40131-1 +14126,1,8455-1 +14127,1,K8667-1 +14129,1,521-1 +14131,1,1955-1 +14132,1,2250-21 +14134,1,4591-1 +14136,1,30201-1 +14137,1,246-2 +14139,1,3180-1 +14141,1,520-10 +14142,1,7642-1 +14143,1,421-2 +14144,1,4750-1 +14146,1,818-1 +14149,1,9251-1 +14151,1,1076-12 +14152,1,66437-1 +14153,1,9490-1 +14154,1,66374-1 +14155,1,31064-1 +14157,1,850608-1 +14158,1,5487-1 +14159,1,42044-1 +14160,1,1468-1 +14161,1,3835-1 +14164,1,8909-0 +14165,1,41040-8 +14166,1,8724-1 +14167,1,4924-16 +14168,1,10604-1 +14172,1,3476-1 +14173,1,2886-1 +14174,1,1993-1 +14175,1,7300-1 +14176,1,70800-1 +14177,1,6102-1 +14179,1,6137-1 +14181,1,710-2 +14182,1,702-1 +14183,1,350-2 +14184,1,807-1 +14186,1,9725-1 +14187,1,6267-1 +14188,1,8831-2 +14189,1,430-2 +14190,1,1847-1 +14191,1,8673-1 +14192,1,4212852-1 +14194,1,60020-1 +14195,1,8916-1 +14196,1,75137-1 +14197,1,891613-1 +14198,1,65277-1 +14199,1,4124-24 +14200,1,30036-1 +14203,1,939-1 +14204,1,8159-1 +14205,1,41037-1 +14207,1,60012-1 +14208,1,70810-1 +14209,1,6612-1 +14215,1,7574-8 +14219,1,577-1 +14220,1,10698-1 +14222,1,K3433-1 +14228,1,1959-1 +14229,1,9591-1 +14231,1,79010-1 +14232,1,6264-1 +14233,1,comcon001-1 +14235,1,5218-1 +14237,1,3585-1 +14238,1,8125-1 +14239,1,700GP6-1 +14240,1,8168-1 +14241,1,31313-1 +14242,1,10003-1 +14243,1,6526-1 +14244,1,8050-1 +14245,1,804-1 +14247,1,66373-1 +14248,1,66431-1 +14249,1,7724-23 +14250,1,853474-1 +14251,1,30001-1 +14252,1,7724-14 +14254,1,6176782-1 +14255,1,851393-1 +14256,1,8035-1 +14258,1,60080-1 +14259,1,75030-1 +14260,1,75056-15 +14261,1,41016-9 +14263,1,10662-1 +14265,1,6652-1 +14266,1,850154-1 +14267,1,4124-23 +14268,1,70792-1 +14269,1,71009-12 +14270,1,3549-2 +14271,1,7628-1 +14272,1,5251-1 +14274,1,60128-1 +14276,1,65081-1 +14277,1,78800-1 +14279,1,6289-1 +14280,1,K8764-1 +14281,1,8182-1 +14282,1,1075-1 +14284,1,8271-1 +14285,1,21003-1 +14286,1,7848-1 +14290,1,1124-1 +14291,1,6871-1 +14292,1,850642-1 +14294,1,6241-1 +14297,1,C8509-3 +14298,1,4924-20 +14299,1,315-1 +14300,1,76068-1 +14301,1,5958-1 +14302,1,8803-15 +14303,1,457-1 +14306,1,8922-1 +14307,1,1273-1 +14308,1,783-1 +14309,1,5611-1 +14310,1,273-1 +14311,1,5099-1 +14314,1,4882-2 +14317,1,70738-1 +14318,1,71008-3 +14319,1,471518-1 +14321,1,2855127-1 +14322,1,8250-1 +14324,1,1138-1 +14326,1,850899-1 +14327,1,4636204-1 +14328,1,66239-1 +14329,1,3022-1 +14331,1,70778-1 +14332,1,70010-1 +14334,1,5421-1 +14335,1,8614-1 +14337,1,30058-1 +14338,1,7915-1 +14339,1,40108-1 +14342,1,834-1 +14343,1,3510-1 +14344,1,3448-1 +14345,1,4858-1 +14347,1,1782-1 +14349,1,7637-1 +14352,1,4577-1 +14353,1,9789-2 +14355,1,53850008-1 +14356,1,41040-25 +14357,1,3573-1 +14358,1,9637-1 +14359,1,6537-1 +14360,1,5162-1 +14361,1,60135-1 +14362,1,3787-1 +14363,1,8804-7 +14365,1,70109-1 +14367,1,740-1 +14369,1,852095-1 +14371,1,9900-1 +14373,1,9628-1 +14375,1,3315-1 +14377,1,3316-24 +14378,1,4752-1 +14380,1,4605-1 +14383,1,3020-1 +14384,1,41016-4 +14385,1,6246-1 +14386,1,9334-1 +14387,1,8932-1 +14388,1,30056-1 +14389,1,8833-9 +14390,1,6469-1 +14391,1,480-5 +14392,1,1183-1 +14394,1,2998-1 +14395,1,911609-1 +14397,1,7805-1 +14398,1,6759-1 +14399,1,70730-1 +14401,1,8683-2 +14402,1,1651-2 +14403,1,60149-1 +14406,1,7997-1 +14408,1,8849-1 +14409,1,7199-1 +14410,1,1581-1 +14411,1,519-1 +14413,1,7553-11 +14415,1,6821-1 +14416,1,75007-1 +14417,1,2856130-1 +14418,1,2878-2 +14421,1,40129-1 +14423,1,41036-1 +14424,1,71203-1 +14426,1,comcon019-1 +14428,1,850798-1 +14429,1,71231-1 +14431,1,71204-1 +14432,1,60024-24 +14435,1,41121-1 +14436,1,71007-4 +14437,1,5131-1 +14438,1,6254-1 +14440,1,362-1 +14441,1,8977-1 +14442,1,71011-17 +14444,1,9719-1 +14445,1,1882-1 +14448,1,41042-1 +14449,1,7600-8 +14451,1,8909-6 +14454,1,7958-10 +14456,1,2181-1 +14457,1,6480-1 +14459,1,6581-1 +14461,1,31056-1 +14462,1,226-2 +14464,1,10166-1 +14465,1,K8383-1 +14467,1,6663-1 +14468,1,75913-1 +14469,1,k34432-1 +14471,1,1208-1 +14472,1,41027-1 +14473,1,10522-1 +14474,1,7687-9 +14475,1,75023-4 +14476,1,4024-7 +14477,1,3844-1 +14481,1,7877-1 +14482,1,8001-1 +14484,1,30086-1 +14485,1,527-1 +14486,1,10190-1 +14488,1,8456-1 +14489,1,6423-1 +14490,1,71011-1 +14491,1,1716-1 +14492,1,2889-1 +14493,1,1967-2 +14494,1,4349-1 +14495,1,66366-1 +14496,1,4501-1 +14498,1,65808-1 +14499,1,2312-1 +14500,1,71012-15 +14501,1,71007-9 +14505,1,271-1 +14506,1,3837-1 +14507,1,8942-1 +14508,1,71011-18 +14509,1,7952-7 +14510,1,8934-1 +14511,1,850814-1 +14512,1,8715-1 +14513,1,60052-1 +14514,1,7687-18 +14518,1,LOC113-1 +14521,1,10018-1 +14523,1,3707-1 +14524,1,65258-1 +14526,1,DC1-1 +14527,1,2112-1 +14528,1,70011-1 +14529,1,4010-1 +14531,1,7748-1 +14532,1,75039-1 +14533,1,3850-1 +14535,1,WishingWell-1 +14536,1,5146-1 +14538,1,7553-24 +14539,1,1204-1 +14540,1,9932-1 +14541,1,4838-1 +14543,1,40122-1 +14544,1,4145-1 +14545,1,2543-1 +14547,1,3424-1 +14549,1,45505-1 +14550,1,9891-1 +14551,1,23-1 +14552,1,3861-1 +14554,1,70330-1 +14556,1,5002424-1 +14558,1,9833-1 +14560,1,4221-1 +14561,1,3805-1 +14562,1,1195-1 +14564,1,10553-1 +14568,1,66409-1 +14569,1,8055-1 +14570,1,6915-1 +14573,1,8844-1 +14574,1,852535-1 +14575,1,1175-1 +14576,1,6164-1 +14578,1,71008-6 +14579,1,70737-1 +14580,1,53850017-1 +14581,1,75128-1 +14582,1,8847-1 +14583,1,3063-1 +14586,1,8049-1 +14587,1,NIN891505-1 +14588,1,7958-18 +14589,1,6943-1 +14591,1,41017-1 +14592,1,9969-1 +14594,1,1300-1 +14595,1,3316-23 +14596,1,comcon008-1 +14598,1,5906-1 +14599,1,75023-22 +14602,1,880-1 +14605,1,DKSS-1 +14607,1,5100-1 +14608,1,1212-2 +14609,1,40064-1 +14610,1,5305-1 +14611,1,71218-1 +14614,1,6519-1 +14615,1,4899-1 +14616,1,5004420-1 +14617,1,4024-14 +14618,1,1491-1 +14619,1,7018-1 +14620,1,20206-1 +14621,1,1626-1 +14622,1,70501-1 +14623,1,40000-1 +14624,1,4767-1 +14625,1,7711-1 +14627,1,2250-24 +14628,1,4669-1 +14629,1,4770-1 +14630,1,6885-1 +14632,1,2230-1 +14633,1,71001-12 +14634,1,5976-1 +14635,1,889-1 +14636,1,7070-1 +14637,1,219-1 +14638,1,6919-1 +14639,1,7850-1 +14642,1,W098-1 +14644,1,70595-1 +14645,1,71011-13 +14646,1,1828-1 +14649,1,40055-1 +14650,1,5987-1 +14652,1,3065-1 +14653,1,4120-1 +14654,1,4524-14 +14655,1,7907-3 +14657,1,8843-1 +14658,1,794-1 +14659,1,70207-1 +14660,1,7267-1 +14662,1,4349-3 +14663,1,700.3A-2 +14664,1,991403-1 +14666,1,41088-1 +14667,1,7000-1 +14668,1,40078-1 +14670,1,10592-1 +14671,1,71013-7 +14673,1,6563-1 +14674,1,852922-1 +14675,1,111-2 +14676,1,1742-1 +14677,1,70129-1 +14680,1,991402-1 +14682,1,5320-1 +14683,1,8201-1 +14684,1,5015-1 +14686,1,k34433-1 +14687,1,1561-1 +14688,1,2075-1 +14689,1,8684-16 +14690,1,4192-1 +14691,1,70009-1 +14694,1,9668-1 +14695,1,71009-16 +14697,1,9396-1 +14701,1,6376-1 +14702,1,8805-7 +14704,1,70163-1 +14705,1,8059-1 +14706,1,40220-1 +14707,1,21307-1 +14708,1,7968-1 +14710,1,53850005-1 +14711,1,shell98small-1 +14713,1,6128-1 +14714,1,1954-2 +14715,1,79115-1 +14716,1,7582-1 +14717,1,tsuper-1 +14720,1,7869-1 +14721,1,41561-1 +14722,1,5865-1 +14723,1,4627-1 +14724,1,6733-1 +14725,1,1868-1 +14726,1,8591-2 +14727,1,41551-1 +14729,1,6098-1 +14730,1,10036-1 +14731,1,70007-1 +14732,1,8876-1 +14734,1,41099-1 +14736,1,21012-1 +14737,1,4207-1 +14738,1,1424-1 +14739,1,7820-1 +14741,1,76057-1 +14742,1,5066-1 +14743,1,1560-3 +14744,1,1631-1 +14747,1,70811-1 +14749,1,4547-1 +14750,1,1890-1 +14751,1,7291-1 +14752,1,852708-1 +14753,1,3843-1 +14754,1,4659-1 +14755,1,853475-1 +14756,1,319-1 +14757,1,71007-1 +14759,1,2887-1 +14760,1,41115-1 +14761,1,626-2 +14767,1,9386-1 +14768,1,8192-1 +14769,1,60024-9 +14770,1,30496-1 +14772,1,8756-1 +14774,1,1088-1 +14775,1,3188-1 +14777,1,75056-5 +14778,1,41126-1 +14779,1,343-1 +14780,1,7575-8 +14781,1,5868-1 +14782,1,NEX271607-1 +14785,1,5080-1 +14786,1,4712-1 +14790,1,65716-1 +14791,1,116-1 +14793,1,545-1 +14794,1,1552-1 +14796,1,8047-1 +14797,1,8030-1 +14798,1,6784-1 +14800,1,414-4 +14801,1,6566-1 +14802,1,4206-2 +14803,1,4286025-1 +14804,1,9564-1 +14805,1,7913-1 +14806,1,10248-1 +14807,1,5396-1 +14810,1,44000-1 +14811,1,B004-1 +14812,1,K10124-1 +14813,1,7002-1 +14814,1,8702-1 +14815,1,214.1-1 +14817,1,970039-1 +14818,1,700.C.2-1 +14820,1,10500-1 +14822,1,K4480-1 +14824,1,9736-1 +14825,1,3316-15 +14828,1,75048-1 +14830,1,8946-1 +14832,1,10111-1 +14833,1,7907-19 +14834,1,7590-1 +14835,1,71258-1 +14836,1,FR561502-1 +14837,1,75032-1 +14838,1,4090-1 +14839,1,7113-1 +14841,1,75916-1 +14842,1,8491-1 +14844,1,79008-1 +14845,1,6735-1 +14846,1,1219-1 +14847,1,3674-1 +14848,1,7574-6 +14849,1,880002-3 +14851,1,4915-1-b1 +14852,1,200-4 +14854,1,4524-18 +14855,1,540-3 +14857,1,5190-1 +14858,1,10218-1 +14859,1,4924-5 +14861,1,6938-1 +14862,1,60115-1 +14863,1,71009-5 +14864,1,8167-1 +14868,1,10064-1 +14869,1,200-2 +14870,1,9866-1 +14872,1,340-1 +14873,1,8479-1 +14874,1,celeb2015-1 +14875,1,5979-1 +14877,1,4820-1 +14878,1,5571-1 +14879,1,10510-1 +14882,1,30247-1 +14884,1,810-1 +14885,1,75903-1 +14886,1,430-1 +14887,1,3418-1 +14888,1,4556-1 +14889,1,31004-1 +14890,1,10573-1 +14891,1,8289-1 +14893,1,5002780-1 +14894,1,21-2 +14895,1,lwp03-1 +14896,1,7724-15 +14898,1,28-1 +14899,1,6835-1 +14900,1,8300-1 +14902,1,40040-1 +14903,1,70755-1 +14905,1,5168-1 +14906,1,70127-1 +14908,1,1247-1 +14910,1,1278-1 +14912,1,7040-1 +14913,1,242B-1 +14914,1,4597068-1 +14915,1,3310-1 +14917,1,10660-1 +14918,1,40213-1 +14919,1,78579-1 +14921,1,K4611-1 +14923,1,5417-1 +14924,1,40033-1 +14926,1,2507-1 +14927,1,1746-1 +14928,1,1881-1 +14929,1,6236-1 +14931,1,66325-1 +14935,1,234-1 +14938,1,71014-6 +14939,1,1518-1 +14940,1,5846-1 +14941,1,5002423-1 +14942,1,KT407-1 +14945,1,4524-5 +14948,1,850802-1 +14949,1,70145-1 +14950,1,9795-1 +14951,1,853148-1 +14952,1,60031-1 +14953,1,10065-1 +14954,1,K7417-1 +14956,1,70166-1 +14957,1,414-5 +14959,1,852848-1 +14960,1,8686-1 +14961,1,1256-1 +14962,1,5037-1 +14963,1,53850002-1 +14965,1,6816-1 +14966,1,852856-1 +14967,1,5145-1 +14969,1,603-3 +14972,1,31023-1 +14973,1,700K-1 +14974,1,MS1060-1 +14975,1,5410-1 +14976,1,30222-1 +14977,1,6677-1 +14978,1,6075-2 +14979,1,850598-1 +14980,1,324-2 +14981,1,8299-1 +14982,1,7659-1 +14984,1,7574-20 +14986,1,730-1 +14987,1,2116-1 +14989,1,1728-1 +14990,1,7600-2 +14991,1,5314-1 +14992,1,6529-1 +14993,1,5004603-1 +14994,1,8914-1 +14996,1,1732-1 +14997,1,8805-18 +14999,1,k8647-1 +15002,1,71001-7 +15003,1,4986-1 +15005,1,4058-1 +15007,1,1133-1 +15008,1,307-2 +15010,1,kabtec-1 +15011,1,8003-1 +15012,1,30000-1 +15013,1,lmg003-1 +15015,1,31044-1 +15016,1,C8504-1 +15017,1,2250-23 +15019,1,K7204-1 +15020,1,3391-1 +15023,1,75050-1 +15024,1,71008-8 +15025,1,970008-1 +15026,1,3863-1 +15027,1,7858-1 +15028,1,8831-6 +15030,1,60121-1 +15031,1,8118-1 +15032,1,757-1 +15033,1,1616-1 +15034,1,KingofPrussia-1 +15035,1,6103-2 +15036,1,1593-1 +15037,1,101-3 +15039,1,2010-1 +15041,1,6387-1 +15042,1,10188-1 +15043,1,70503-1 +15044,1,5383-1 +15045,1,30422-1 +15046,1,6533-1 +15047,1,5235-1 +15048,1,6622-1 +15049,1,6398-1 +15050,1,71000-2 +15051,1,29-1 +15052,1,71014-8 +15053,1,3409-3 +15055,1,Houston-1 +15057,1,42034-1 +15059,1,8142-1 +15060,1,K8685-1 +15061,1,5004273-1 +15062,1,2000423-1 +15067,1,115-1 +15068,1,8833-8 +15069,1,71012-18 +15070,1,5622-1 +15075,1,1737-1 +15077,1,7546-1 +15080,1,kabcreat-1 +15081,1,970675-1 +15082,1,7505-1 +15084,1,71000-6 +15085,1,442-1 +15086,1,70008-1 +15087,1,4524-12 +15088,1,7904-25 +15092,1,3829-1 +15093,1,801-1 +15094,1,1863-1 +15097,1,100-1 +15098,1,6322-1 +15099,1,600-2 +15100,1,6347-1 +15102,1,8780-1 +15103,1,3567-1 +15104,1,1916-1 +15105,1,3888-1 +15107,1,40196-1 +15108,1,9874-1 +15109,1,2123-1 +15110,1,70744-1 +15111,1,8588-3 +15113,1,41555-1 +15115,1,1298-3 +15116,1,8908-1 +15117,1,8803-6 +15118,1,8709-1 +15119,1,850513-1 +15121,1,690-1 +15122,1,10080-1 +15123,1,5311-1 +15124,1,2824-10 +15125,1,75909-1 +15126,1,2236-1 +15127,1,6925-1 +15130,1,41092-1 +15131,1,10221-1 +15134,1,9572-1 +15135,1,7979-21 +15136,1,5942-1 +15138,1,30164-1 +15140,1,6595-1 +15141,1,3259-1 +15142,1,7600-22 +15143,1,4924-7 +15144,1,10667-1 +15146,1,71000-11 +15147,1,6861-2 +15149,1,5004279-1 +15150,1,1104-1 +15153,1,41140-1 +15154,1,1705-1 +15155,1,K8800-1 +15156,1,1090-1 +15157,1,4018-1 +15158,1,41087-1 +15159,1,1116-1 +15160,1,6209-1 +15161,1,6077-1 +15162,1,1761-1 +15163,1,40207-1 +15164,1,K4519-1 +15166,1,8785506-1 +15167,1,10802-1 +15169,1,6743-1 +15170,1,7416-1 +15172,1,3717-1 +15174,1,7567-1 +15175,1,6258-1 +15178,1,329-2 +15179,1,41501-1 +15181,1,5000438-1 +15182,1,4124-16 +15184,1,970641-1 +15185,1,522-1 +15186,1,6736-1 +15187,1,21016-1 +15188,1,8794-1 +15189,1,2032-1 +15190,1,4000006-1 +15191,1,7832-1 +15192,1,66326-1 +15193,1,4915-1 +15194,1,8594-1 +15195,1,5405-1 +15199,1,71011-16 +15200,1,8588-2 +15201,1,4456-1 +15202,1,7865-1 +15203,1,45517-1 +15204,1,4614-1 +15205,1,9362-1 +15206,1,4524-13 +15207,1,1913-1 +15208,1,7600-17 +15212,1,7324-2 +15213,1,5238-1 +15215,1,9311-1 +15216,1,6394-1 +15217,1,8684-10 +15219,1,41069-1 +15220,1,6547-1 +15222,1,MissionViejo-1 +15223,1,8282-1 +15224,1,2856227-1 +15225,1,741-1 +15226,1,1790-1 +15228,1,42066-1 +15229,1,7029-1 +15230,1,40211-1 +15232,1,7553-23 +15233,1,40221-1 +15235,1,970687-1 +15236,1,4075-1 +15237,1,5239-1 +15238,1,4659018-1 +15240,1,7171-1 +15241,1,79117-1 +15242,1,850486-1 +15243,1,8909-3 +15247,1,5561-1 +15249,1,7037-1 +15252,1,3550-2 +15254,1,1906-1 +15256,1,7699-1 +15257,1,40042-1 +15259,1,7305-1 +15260,1,4534-1 +15261,1,8251-1 +15262,1,44017-1 +15263,1,1463-1 +15265,1,696-1 +15266,1,75034-1 +15267,1,4299-1 +15269,1,76027-1 +15270,1,1644-2 +15271,1,40043-1 +15272,1,6277-1 +15274,1,71017-6 +15275,1,71245-1 +15276,1,4704-1 +15277,1,6274-1 +15279,1,6299-25 +15283,1,5573-1 +15287,1,6456-1 +15289,1,20009-1 +15290,1,1698-1 +15291,1,9544-1 +15292,1,6954-1 +15294,1,21002-1 +15295,1,1858-1 +15296,1,970653-1 +15298,1,7903-1 +15299,1,comcon032-1 +15300,1,1298-19 +15301,1,76038-1 +15302,1,41522-1 +15303,1,21023-1 +15304,1,K8688-1 +15305,1,4121-1 +15307,1,9455-1 +15308,1,9738-1 +15309,1,3841-1 +15311,1,30282-1 +15312,1,6055-1 +15313,1,139A-1 +15314,1,5243-1 +15315,1,336-1 +15317,1,4306-1 +15320,1,8422-1 +15321,1,1241-2 +15326,1,6698-1 +15328,1,4524-10 +15329,1,44009-1 +15331,1,75826-1 +15332,1,7839-1 +15333,1,5372-1 +15334,1,5998-1 +15335,1,30183-1 +15336,1,6959-1 +15337,1,561411-1 +15338,1,8803-1 +15340,1,7190-1 +15345,1,7260-1 +15346,1,2157-1 +15347,1,70400-1 +15348,1,75130-1 +15349,1,10073-1 +15350,1,6806-1 +15351,1,4855-1 +15353,1,2-7 +15357,1,3340-1 +15359,1,4720-1 +15360,1,41578-1 +15361,1,4570-1 +15362,1,7245-2 +15363,1,70146-1 +15364,1,7939-1 +15365,1,4404-1 +15368,1,9509-3 +15372,1,7409-1 +15374,1,4165-1 +15375,1,70733-1 +15376,1,45801-1 +15377,1,30471-1 +15380,1,850842-1 +15381,1,75023-3 +15385,1,44001-1 +15386,1,4695-1 +15387,1,71013-13 +15388,1,789-1 +15389,1,70224-1 +15390,1,5268-1 +15391,1,6299-8 +15393,1,2851193-1 +15395,1,431-1 +15396,1,8809-1 +15397,1,1119-1 +15398,1,4184-1 +15399,1,604-2 +15400,1,561510-1 +15401,1,4338-1 +15402,1,1213-1 +15404,1,8279-1 +15407,1,4840-1 +15408,1,9453-1 +15409,1,556-1 +15414,1,159-1 +15415,1,3427-1 +15416,1,1318-1 +15417,1,30294-1 +15418,1,30251-1 +15419,1,7145-1 +15420,1,10006-1 +15421,1,8878-1 +15423,1,8684-11 +15425,1,5181-1 +15426,1,5803-1 +15427,1,1112-1 +15428,1,7979-24 +15429,1,30311-1 +15432,1,4768-1 +15433,1,7218-1 +15435,1,8277-1 +15437,1,75023-7 +15438,1,1122-1 +15440,1,3146-1 +15441,1,561412-1 +15442,1,10602-1 +15444,1,8648-1 +15448,1,71010-8 +15449,1,2878-3 +15450,1,8074-1 +15453,1,1610-2 +15455,1,3862-1 +15458,1,7079-1 +15460,1,7574-10 +15462,1,41040-21 +15463,1,75040-1 +15465,1,7423-2 +15466,1,4032-5 +15467,1,6286-1 +15468,1,970042-1 +15469,1,75020-1 +15470,1,9468-1 +15475,1,20003-1 +15476,1,10229-1 +15477,1,1423-1 +15478,1,32-2 +15479,1,698-1 +15482,1,7575-16 +15484,1,239-1 +15485,1,8141-1 +15486,1,7703-1 +15488,1,44022-1 +15490,1,2-10 +15491,1,42057-1 +15493,1,30013-1 +15497,1,21208-1 +15498,1,6043-1 +15500,1,NAA1030-1 +15501,1,3631-1 +15503,1,700.H-1 +15505,1,2881-1 +15506,1,9685-1 +15507,1,9515-1 +15509,1,10149-1 +15513,1,4705-1 +15514,1,8683-13 +15515,1,822-1 +15516,1,6340-1 +15518,1,4024-13 +15519,1,K7283-1 +15520,1,7238-1 +15521,1,5814-1 +15523,1,1853-1 +15524,1,662-1 +15525,1,3645-1 +15526,1,4067-1 +15527,1,5273-1 +15528,1,3554-1 +15529,1,730-2 +15530,1,1516-1 +15531,1,853379-1 +15533,1,1152-1 +15535,1,633-1 +15536,1,9860-1 +15538,1,10246-1 +15539,1,comcon042-1 +15542,1,10735-1 +15543,1,3818-1 +15544,1,5875-1 +15545,1,TRUXWING-2 +15548,1,MS1049-1 +15550,1,4762-1 +15551,1,7952-15 +15552,1,1-7 +15553,1,10242-2 +15554,1,418-3 +15555,1,5226-1 +15557,1,30025-1 +15558,1,5178-1 +15560,1,kabextreme-1 +15561,1,60024-11 +15562,1,NEX271608-1 +15563,1,20201-1 +15564,1,7873-1 +15566,1,40015-1 +15567,1,10155-1 +15568,1,9249-1 +15570,1,4232-1 +15571,1,7696-1 +15572,1,126-1 +15573,1,5785-1 +15574,1,75056-22 +15575,1,891504-1 +15576,1,8244-1 +15577,1,6255-1 +15580,1,1676-1 +15581,1,3806-1 +15582,1,9605-1 +15583,1,681-1 +15585,1,Saarbrucken-1 +15586,1,417-4 +15587,1,70323-1 +15588,1,41552-1 +15589,1,30231-1 +15590,1,918-tclear-2 +15591,1,71002-5 +15593,1,4677-1 +15594,1,78675-1 +15595,1,40138-1 +15596,1,1740-1 +15598,1,7949-1 +15599,1,10223-1 +15600,1,10152-2 +15601,1,7944-1 +15602,1,6688-1 +15605,1,41557-1 +15606,1,6545-1 +15608,1,8783-1 +15609,1,70735-1 +15610,1,5002125-1 +15611,1,604-1 +15614,1,7223-1 +15615,1,70136-1 +15616,1,7201-1 +15617,1,1099-1 +15619,1,661-1 +15620,1,1474-1 +15622,1,3598-1 +15624,1,10021-1 +15625,1,lwp05-1 +15628,1,6935-1 +15630,1,71000-14 +15631,1,5004556-1 +15632,1,575-2 +15633,1,7783-1 +15634,1,7322-1 +15635,1,6169-1 +15637,1,812-1 +15639,1,6833-1 +15640,1,10581-1 +15641,1,8811-1 +15642,1,1344-1 +15643,1,8528-1 +15645,1,42042-1 +15646,1,9499-1 +15648,1,3493-1 +15650,1,8855-1 +15651,1,7296-1 +15653,1,404-3 +15654,1,10053-1 +15655,1,8850-1 +15657,1,6262-1 +15659,1,20010-1 +15661,1,1076-8 +15664,1,1212-1 +15665,1,3626-1 +15669,1,1819-1 +15671,1,645-1 +15672,1,2542-1 +15673,1,71000-3 +15674,1,6556-1 +15676,1,6163-1 +15678,1,1430-2 +15679,1,10599-1 +15680,1,Concord-1 +15681,1,8426-1 +15682,1,4463-1 +15683,1,8464-1 +15684,1,71009-6 +15686,1,1030-1 +15687,1,5981-1 +15688,1,76051-1 +15689,1,10703-1 +15690,1,1200M-1 +15691,1,30028-1 +15692,1,2233-1 +15694,1,66195-1 +15695,1,FR561601-1 +15696,1,970110-1 +15697,1,3505-1 +15698,1,6549-1 +15702,1,DKLEGOBOOK-2 +15703,1,6872-1 +15704,1,7862-1 +15705,1,746-1 +15708,1,6983-1 +15711,1,4856-1 +15713,1,1880-1 +15714,1,8558-1 +15717,1,840-1 +15718,1,VP-3 +15719,1,2873-1 +15720,1,4428-20 +15722,1,3068-1 +15723,1,7214-1 +15725,1,607-1 +15726,1,5004610-1 +15728,1,8247-1 +15729,1,5638-1 +15730,1,DCSHDVD2-1 +15731,1,7298-1 +15732,1,3345-1 +15733,1,10203-1 +15734,1,5003246-1 +15736,1,2884-1 +15737,1,1612-1 +15739,1,1076-6 +15740,1,1791-1 +15741,1,7553-16 +15742,1,4496-3 +15743,1,9389-1 +15744,1,K8111-1 +15745,1,216-1 +15746,1,9227-1 +15747,1,8364-1 +15749,1,7591-1 +15750,1,852750-1 +15751,1,6333-1 +15753,1,makepromo-1 +15754,1,852227-1 +15757,1,6528-1 +15759,1,241601-1 +15760,1,75052-1 +15761,1,3532-1 +15764,1,5813-1 +15765,1,1854-1 +15766,1,9556-1 +15767,1,7917-1 +15769,1,8740-1 +15770,1,8778-1 +15771,1,8107-1 +15772,1,1288-1 +15774,1,891501-1 +15776,1,K8741-1 +15777,1,5994-1 +15779,1,7930-1 +15782,1,8822-1 +15784,1,5826-1 +15785,1,918-red-2 +15786,1,30066-2 +15787,1,8683-15 +15790,1,71001-6 +15791,1,6689-1 +15792,1,7240-1 +15793,1,6131-1 +15794,1,30192-1 +15797,1,TRUNINJAGO-4 +15799,1,4924-17 +15802,1,31032-1 +15803,1,5977-1 +15805,1,5541-1 +15806,1,22-1 +15807,1,6080-1 +15808,1,154-1 +15810,1,8189-1 +15811,1,4524-22 +15813,1,10707-1 +15814,1,10185-1 +15815,1,4055-1 +15816,1,566-1 +15817,1,8891-1 +15818,1,5108-1 +15819,1,1287-1 +15820,1,281-2 +15821,1,6481-1 +15822,1,7574-16 +15823,1,7262-1 +15824,1,40090-1 +15827,1,1522-1 +15828,1,30081-1 +15830,1,385-2 +15831,1,5001252-1 +15832,1,4271-1 +15833,1,5390-1 +15834,1,4412-1 +15836,1,31046-1 +15837,1,6999-1 +15839,1,6180-1 +15841,1,7574-24 +15842,1,31029-1 +15844,1,5004601-1 +15845,1,4243534-1 +15846,1,850932-1 +15847,1,40091-1 +15849,1,75022-1 +15850,1,FR561612-1 +15851,1,6720-1 +15855,1,71012-5 +15856,1,10672-1 +15857,1,30008-1 +15858,1,1393-1 +15859,1,71017-18 +15860,1,8634-1 +15861,1,8564-1 +15863,1,10596-1 +15864,1,852551-1 +15865,1,663-1 +15868,1,8884-1 +15869,1,8029-1 +15870,1,41040-5 +15872,1,41576-1 +15873,1,6008-1 +15874,1,8985-1 +15875,1,6497-1 +15876,1,7984-1 +15878,1,6248-1 +15881,1,45003-1 +15883,1,comcon034-1 +15884,1,MS1038-1 +15885,1,30284-1 +15887,1,4024-19 +15892,1,4484-1 +15893,1,comcon023-1 +15894,1,75084-1 +15895,1,8568-1 +15896,1,4624-1 +15897,1,60063-7 +15898,1,123-1 +15899,1,4239-1 +15903,1,5130-1 +15905,1,6374-1 +15907,1,4203-1 +15909,1,10666-1 +15911,1,45007-1 +15912,1,71010-6 +15913,1,5004102-1 +15914,1,7907-11 +15916,1,7574-7 +15917,1,41016-25 +15918,1,71244-1 +15920,1,7424-2 +15922,1,20007-1 +15923,1,1901-2 +15925,1,6342-1 +15926,1,1551-2 +15928,1,6213-1 +15930,1,8123-1 +15931,1,7852-1 +15932,1,71313-1 +15933,1,41313-1 +15935,1,7693-1 +15938,1,1885-1 +15939,1,8350-1 +15940,1,850426-1 +15941,1,6617-1 +15942,1,7189-1 +15943,1,4915-1-b2 +15944,1,75023-10 +15946,1,7206-1 +15947,1,9020-1 +15948,1,5946-1 +15949,1,8658-1 +15951,1,kkchrome-1 +15952,1,6075-1 +15953,1,2734-1 +15955,1,K7775-1 +15956,1,8785476-1 +15957,1,5580-1 +15960,1,5011-1 +15961,1,626-1 +15962,1,8591-1 +15963,1,10220-1 +15964,1,635-1 +15966,1,6074-1 +15967,1,6594-1 +15968,1,5891-1 +15969,1,40071-1 +15970,1,9509-25 +15973,1,K10068-1 +15974,1,374-2 +15975,1,891507-1 +15976,1,891610-1 +15977,1,3032-1 +15978,1,7553-8 +15979,1,fdp01-1 +15980,1,66194-1 +15981,1,6930-1 +15983,1,4524-23 +15985,1,3305-1 +15987,1,30024-1 +15989,1,21125-1 +15990,1,KLLCA21-1 +15991,1,419-2 +15992,1,2824-15 +15994,1,5682-1 +15996,1,652-2 +15997,1,4701-1 +15999,1,4502-1 +16000,1,401-2 +16003,1,7979-20 +16004,1,1696-1 +16005,1,227-1 +16006,1,852715-1 +16007,1,4736-1 +16008,1,753-1 +16009,1,7574-18 +16010,1,352-1 +16011,1,6416-1 +16012,1,8022-1 +16013,1,8106-1 +16014,1,8532-2 +16015,1,71007-14 +16016,1,1221-2 +16018,1,850457-1 +16020,1,1621-1 +16022,1,1110-1 +16023,1,66260-1 +16024,1,5539-1 +16025,1,8804-13 +16026,1,520-3 +16027,1,3851-1 +16029,1,VP-14 +16031,1,4124-1 +16032,1,1736-1 +16033,1,1872-1 +16034,1,K7734-1 +16035,1,1076-21 +16036,1,6684-1 +16037,1,20204-1 +16040,1,TRUNINJAGO-2 +16041,1,590-1 +16042,1,DKNinjago-1 +16043,1,71316-1 +16045,1,1285-1 +16047,1,2824-24 +16050,1,4124-10 +16051,1,8972-1 +16052,1,5646-1 +16054,1,10060-1 +16055,1,42007-1 +16056,1,3602-1 +16057,1,b66de-01 +16059,1,7140-1 +16060,1,3056-1 +16064,1,4607-1 +16065,1,7902-1 +16066,1,7176-1 +16067,1,1464-1 +16069,1,314-1 +16070,1,322-3 +16071,1,10170-1 +16073,1,7718-1 +16074,1,293-1 +16075,1,970686-1 +16076,1,31036-1 +16077,1,5613-1 +16078,1,70223-1 +16079,1,6171-1 +16080,1,627-1 +16081,1,7097-1 +16084,1,7540-1 +16085,1,970624-1 +16086,1,395-1 +16087,1,2183-1 +16088,1,7907-2 +16090,1,970116-1 +16091,1,5052-1 +16092,1,75056-17 +16093,1,970658-1 +16095,1,8840-1 +16096,1,5001370-1 +16097,1,45304-1 +16098,1,4346-1 +16099,1,238-8 +16100,1,41580-1 +16101,1,4535-1 +16102,1,66365-1 +16104,1,7423-1 +16106,1,5002113-1 +16107,1,1526-1 +16108,1,4543-1 +16110,1,890-2 +16111,1,8217-1 +16113,1,2282-1 +16114,1,60146-1 +16115,1,4028-1 +16117,1,10202-1 +16118,1,1774-1 +16119,1,41045-1 +16122,1,301-1 +16123,1,5963-1 +16124,1,10684-1 +16125,1,10724-1 +16126,1,K8564-1 +16127,1,K3451-1 +16128,1,6009-1 +16129,1,5950-1 +16130,1,71000-16 +16131,1,1509-1 +16132,1,70321-1 +16133,1,4029-1 +16135,1,7907-4 +16136,1,7876-1 +16137,1,1788-1 +16138,1,kabninja-1 +16139,1,71016-1 +16140,1,41113-1 +16141,1,DKNINJAGO2-1 +16143,1,7553-12 +16145,1,7104-1 +16146,1,3405-1 +16148,1,5966-1 +16150,1,3885-3 +16151,1,70123-1 +16152,1,9885-1 +16153,1,9689-1 +16156,1,10603-1 +16157,1,2735-1 +16158,1,6598-1 +16159,1,2853300-1 +16162,1,LOC391403-1 +16165,1,8909-5 +16166,1,3181-2 +16167,1,10571-1 +16168,1,4851-1 +16170,1,40165-1 +16171,1,970098-1 +16174,1,393-1 +16175,1,44007-1 +16176,1,7162-1 +16177,1,3316-18 +16178,1,970040-1 +16179,1,620-2 +16180,1,5001132-1 +16181,1,4850-1 +16182,1,41503-1 +16183,1,40062-1 +16185,1,9531-1 +16187,1,7126-1 +16188,1,comcon013-1 +16189,1,1603-1 +16190,1,991268-1 +16193,1,2067-1 +16196,1,5982-1 +16197,1,5911-1 +16199,1,4954-1 +16201,1,935-1 +16203,1,8471-1 +16204,1,7244-1 +16206,1,4171-1 +16210,1,1721-1 +16212,1,lmg006-2 +16213,1,6751-1 +16214,1,7144-1 +16215,1,7294-1 +16218,1,7217-1 +16221,1,42065-1 +16222,1,TLMPS-1 +16223,1,1914-1 +16225,1,4049-1 +16226,1,KT103-1 +16228,1,1298-5 +16229,1,3737-1 +16230,1,8833-15 +16231,1,5639-1 +16232,1,851339-1 +16233,1,4481-1 +16236,1,3545-1 +16237,1,970625-1 +16238,1,1148-1 +16242,1,150-1 +16243,1,79012-1 +16244,1,LOC114-1 +16245,1,7979-9 +16249,1,4714-1 +16250,1,5185-1 +16251,1,LOC391408-1 +16254,1,6200-1 +16255,1,7971-1 +16256,1,B005-1 +16257,1,70143-1 +16258,1,5216-1 +16260,1,3462-1 +16261,1,414-3 +16263,1,230-1 +16264,1,6299-21 +16265,1,1481-1 +16266,1,8472-1 +16267,1,30090-1 +16268,1,9936-1 +16269,1,6318-1 +16270,1,1281-1 +16271,1,8607-1 +16273,1,60024-5 +16274,1,41019-1 +16275,1,442B-1 +16277,1,4479-1 +16278,1,8504-1 +16284,1,71005-1 +16286,1,210-1 +16287,1,6762-1 +16288,1,4024-11 +16289,1,LoneTree-1 +16290,1,13-1 +16293,1,4124-19 +16294,1,5004076-1 +16296,1,41004-1 +16297,1,2000445-1 +16298,1,8654-1 +16299,1,41002-1 +16300,1,225-1 +16301,1,796-1 +16302,1,3740-1 +16303,1,1648-1 +16304,1,41016-12 +16305,1,6422-1 +16308,1,8803-4 +16309,1,6988-1 +16311,1,5928-1 +16314,1,70112-1 +16315,1,6494-1 +16316,1,71008-16 +16317,1,75078-1 +16318,1,4728-1 +16319,1,20216-1 +16320,1,182-1 +16321,1,214-3 +16323,1,60066-1 +16324,1,3924-1 +16325,1,75104-1 +16326,1,75901-1 +16327,1,NK271603-1 +16330,1,7702-1 +16331,1,1145-1 +16332,1,970632-1 +16333,1,3681-1 +16336,1,OklahomaCity-1 +16337,1,66368-1 +16338,1,70203-1 +16341,1,6800-1 +16342,1,8722-1 +16344,1,9247-2 +16345,1,8551-1 +16346,1,1613-1 +16348,1,3531-1 +16349,1,7324-12 +16351,1,9454-1 +16352,1,252-1 +16353,1,4897-1 +16355,1,8761-1 +16356,1,70317-1 +16357,1,6357-1 +16360,1,60008-1 +16361,1,G577-1 +16362,1,3786-1 +16363,1,1840-1 +16364,1,2113-1 +16367,1,LLPlane-1 +16368,1,1924-2 +16369,1,5644-1 +16371,1,65572-1 +16375,1,60088-1 +16376,1,40036-1 +16380,1,2883-1 +16382,1,8827-1 +16383,1,1076-9 +16384,1,10160-1 +16385,1,10182-1 +16386,1,8101-1 +16388,1,9562-1 +16391,1,6316-1 +16392,1,6285-1 +16393,1,71172-1 +16394,1,42047-1 +16395,1,7979-18 +16396,1,10501-1 +16397,1,7825-1 +16399,1,7958-5 +16403,1,6524-1 +16404,1,60075-1 +16406,1,30040-1 +16407,1,7259-1 +16409,1,852921-1 +16410,1,41016-6 +16411,1,10083-1 +16412,1,5004077-1 +16414,1,1298-7 +16415,1,1778-1 +16416,1,6604-1 +16417,1,5004128-1 +16420,1,5965-1 +16421,1,5378-1 +16422,1,815-1 +16423,1,71013-17 +16424,1,40252-1 +16427,1,10820-1 +16446,1,75164-1 +16460,1,71012-19 +16462,1,BIO601602-1 +16463,1,10825-1 +16465,1,BIO601601-1 +16466,1,21306-1 +16480,1,30603-1 +16482,1,41149-1 +16490,2,6515-1 +16492,1,60152-1 +16498,1,30424-1 +16510,1,30546-1 +16516,1,76078-1 +16524,1,trucapam-1 +16540,1,30523-1 +16550,1,41184-1 +16579,1,ISBN1338112120-1 +16589,1,30354-1 +16591,1,70905-1 +16593,1,71014-17 +16594,1,71017-21 +16597,1,76069-1 +16606,1,SW911720-1 +16615,1,30022-1 +16617,1,7607-1 +16626,1,42064-1 +16649,1,75168-1 +16653,1,75165-1 +16674,1,30447-1 +16678,1,4002016-1 +16689,1,SW911719-1 +16691,1,70908-1 +16722,1,76070-1 +16728,1,76072-1 +16730,1,76073-1 +16732,1,41311-1 +16741,1,41148-1 +16742,1,41302-1 +16745,1,70366-1 +16747,1,41303-1 +16748,1,41304-1 +16749,1,41305-1 +16750,1,41306-1 +16751,1,41307-1 +16753,1,41308-1 +16754,1,41309-1 +16755,1,41310-1 +16756,1,41312-1 +16757,1,41314-1 +16760,2,11905-1 +16761,1,75169-1 +16764,1,30376-1 +16781,1,70907-1 +16791,1,70904-1 +16794,1,40240-1 +16796,1,70906-1 +16802,1,70910-1 +16806,1,10824-1 +16809,1,40236-1 +16810,1,41233-1 +16813,1,70912-1 +16814,1,70909-1 +16821,1,42062-1 +16842,1,30423-1 +16877,1,30601-1 +16878,2,8030-1 +16883,1,5004406-1 +16921,1,30604-1 +16924,1,30606-1 +16927,1,75160-1 +16932,1,30607-1 +16938,1,71340-1 +16939,1,30476-1 +16943,1,5004932 +16969,1,5004854-1 +17033,1,75161-1 +17036,1,75163-1 +17049,1,75877-1 +17064,1,41585-1 +17065,1,21129-1 +17066,1,21130-1 +17067,1,21131-1 +17068,1,21133-1 +17069,1,21134-1 +17071,1,41590-1 +17084,1,41586-1 +17085,1,41587-1 +17086,1,41588-1 +17087,1,41589-1 +17088,1,41591-1 +17089,1,41592-1 +17090,1,41595-1 +17091,1,41596-1 +17094,1,21132-1 +17095,1,75879-1 +17096,1,75882-1 +17097,1,75883-1 +17128,1,40174-1 +17134,1,70621-1 +17172,1,30351-1 +17181,1,851342-1 +17190,1,75162-1 +17194,1,75172-1 +17202,1,70363-1 +17215,1,3300-1 +17227,1,76080-1 +17230,1,76079-1 +17236,1,30352-1 +17256,1,70365-1 +17277,1,41182-1 +17291,1,NEX271712-1 +17297,1,852115 +17323,1,70362-1 +17324,1,70372-1 +17325,1,70364-1 +17326,1,70348-1 +17336,1,30338-1 +17349,1,75175-1 +17356,1,40237-1 +17367,1,41185-1 +17370,1,75881-1 +17375,1,851362-1 +17402,1,30321-1 +17405,1,10810-1 +17406,1,MYERNEXO-1 +17407,1,MYERNEXO-2 +17408,1,TRUNEXO-2 +17409,1,TRUNEXO-1 +17410,1,TRUFRIENDS-1 +17420,1,70627-1 +17421,1,70626-1 +17422,1,70625-1 +17423,1,70624-1 +17424,1,70623-1 +17425,1,70622-1 +17499,1,75525-1 +17500,1,75524-1 +17580,1,11912-1 +17594,1,75523-1 +17597,1,40242-1 +17615,1,CITY951701-1 +17675,1,41593-1 +17676,1,41594-1 +17677,1,71042-1 +17679,1,76076-1 +17680,1,76077-1 +17713,1,5380-2 +17752,1,10852-1 +17763,1,21035-1 +17785,1,41183-1 +17793,2,76081-1 +17799,2,214.6-1 +17816,1,71286-1 +17826,1,75878-1 +17827,1,41181-1 +17848,2,421-2 +17849,3,421-2 +17850,4,421-2 +17851,5,421-2 +17907,1,NEX271714-1 +17911,1,70347-1 +17912,1,70349-1 +17926,1,70350-1 +17943,1,70351-1 +17950,1,40241-1 +17951,1,70358-1 +17952,1,70359-1 +17958,1,10849-1 +17965,1,41492-1 +17966,1,41493-1 +17974,1,SW911722-1 +17978,1,70352-1 +17984,1,75173-1 +17992,1,820-2 +17994,1,40243-1 +18006,1,71018-18 +18018,1,30401-1 +18019,1,40265-1 +18020,1,853687-1 +18045,1,75144-1 +18064,1,3850031-1 +18087,1,40172-1 +18099,1,75170-1 +18122,1,FR561701-1 +18129,1,MMMB0908 +18155,1,9286-1 +18161,1,71018-13 +18165,1,853605-1 +18169,1,71018-3 +18170,1,71018-4 +18174,1,71018-16 +18183,1,71018-12 +18184,1,71018-15 +18185,1,71018-11 +18203,1,71018-6 +18221,2,8880-1 +18231,2,31015-1 +18245,1,30449-1 +18274,2,75053-1 +18278,1,42063-40 +18293,1,30400-1 +18318,1,21309-1 +18322,1,75171-1 +18334,1,850355-1 +18340,1,75174-1 +18348,1,40072 +18351,1,5004408-1 +18360,1,30377-1 +18362,1,853648-1 +18400,1,SW911723-1 +18402,1,75880-1 +18417,1,30611-1 +18428,1,31067-1 +18429,1,31068-1 +18430,1,31069-1 +18431,1,31070-1 +18432,1,76082-1 +18433,1,76083-1 +18438,1,40179-1 +18439,1,70913-1 +18440,1,70914-1 +18441,1,70915-1 +18442,1,70916-1 +18458,1,71018-1 +18459,1,71018-2 +18460,1,71018-5 +18462,1,71018-8 +18463,1,71018-10 +18464,1,71018-9 +18466,1,71018-14 +18467,1,75178-1 +18468,1,75180-1 +18479,1,10257-1 +18480,1,76075-1 +18483,1,75185-1 +18484,1,75186-1 +18485,1,75191-1 +18486,1,75531-1 +18493,1,40244-1 +18527,1,SW911724-1 +18575,1,75166-1 +18576,1,75167-1 +18577,1,75182-1 +18578,1,75183-1 +18579,1,75532-1 +18584,1,60160-1 +18593,1,31066-1 +18645,1,71018-7 +18701,1,71018-17 +18704,1,60159-1 +18708,1,75090-2 diff --git a/inventory_parts.csv b/inventory_parts.csv new file mode 100644 index 0000000..8768b3f --- /dev/null +++ b/inventory_parts.csv @@ -0,0 +1,580252 @@ +inventory_id,part_num,color_id,quantity,is_spare +1,48379c01,72,1,f +1,48395,7,1,f +1,mcsport6,25,1,f +1,paddle,0,1,f +3,11816pr0005,78,1,f +3,2343,47,1,f +3,3003,29,1,f +3,30176,2,1,f +3,3020,15,1,f +3,3022,15,2,f +3,3023,15,1,f +3,30357,29,4,f +3,3039,15,1,f +3,3062b,15,1,f +3,3068b,29,1,f +3,3069b,29,2,f +3,3069b,27,5,f +3,33291,191,3,f +3,33291,191,1,t +3,3795,15,1,f +3,3941,27,1,f +3,3960,27,1,f +3,4032a,70,1,f +3,4865a,41,3,f +3,6141,27,2,f +3,6141,29,1,f +3,6141,27,1,t +3,6141,29,1,t +3,63965,15,1,f +3,85080,322,4,f +3,92258,0,1,f +3,92456pr0011c01,78,1,f +3,92818pr0002c01,26,1,f +4,30214,34,1,f +4,3069bp53,0,1,f +4,3298pb005,8,1,f +4,3475b,1,2,f +4,3626bpx175,8,1,f +4,3795,0,1,f +4,4589,42,2,f +4,4590,1,3,f +4,4596,0,1,f +4,4598,8,1,f +4,4740,42,1,f +4,6141,42,1,t +4,6141,42,1,f +4,6919,42,2,f +4,970x027,0,1,f +4,973pb0037c01,8,1,f +15,2360p02,2,1,f +15,2361p02,2,1,f +16,7049b,15,2,f +16,737,4,2,f +16,737bc01,4,2,f +16,wheel2b,4,4,f +17,12708pr01,47,2,f +17,12825,0,4,f +17,2540,0,2,f +17,298c02,15,2,f +17,3021,0,1,f +17,3021,15,1,f +17,3022,1,1,f +17,3023,0,1,f +17,3024,15,6,f +17,3069b,15,2,f +17,3794b,0,3,f +17,44375b,15,1,f +17,47905,0,1,f +17,49668,0,2,f +17,52107,0,1,f +17,54200,15,1,f +17,6141,29,1,f +17,98138pr0008,15,2,f +19,3626bpx16,14,1,f +19,4530,0,1,f +19,970c00,0,1,f +19,973px173c01,4,1,f +21,3009,7,50,f +22,15573,72,1,f +22,2412b,179,3,f +22,2654,72,4,f +22,3020,0,2,f +22,3022,0,1,f +22,3023,71,2,f +22,3023,46,2,f +22,3024,0,1,t +22,3024,0,2,f +22,3024,46,4,f +22,3024,46,1,t +22,3070b,72,1,f +22,3070b,72,1,t +22,3666,72,1,f +22,3710,0,2,f +22,3795,71,1,f +22,4081b,72,1,f +22,41769,72,4,f +22,41770,72,4,f +22,43719,72,1,f +22,43722,71,2,f +22,43723,71,2,f +22,51739,71,3,f +22,54200,71,1,t +22,54200,71,2,f +22,54383,71,1,f +22,54384,71,1,f +22,6141,41,3,f +22,6141,41,1,t +22,85984,72,3,f +22,98138,71,1,t +22,98138,71,1,f +22,99206,71,2,f +25,24634pr0001,5,1,f +25,24782pr0001,5,1,f +25,25841,78,1,f +25,88646,0,1,f +25,970c00pr1033,15,1,f +25,973pr3314c01,5,1,f +26,14226c11,0,3,f +26,2340px2,15,1,f +26,2340px3,15,1,f +26,2412b,7,2,f +26,2421,0,1,f +26,2432,4,1,f +26,2437,33,1,f +26,2446,15,2,f +26,2447,41,1,f +26,2454a,15,1,f +26,2460,7,1,f +26,2479,0,1,f +26,2486,4,1,f +26,2493b,0,2,f +26,2540,4,4,f +26,2547,8,1,f +26,2548,8,1,f +26,2569,0,3,f +26,2610,14,3,f +26,298c02,4,2,f +26,3001,7,5,f +26,3001,15,1,f +26,3003,2,1,f +26,3003,15,2,f +26,3003,14,2,f +26,3004,0,3,f +26,3006,14,1,f +26,3007,7,6,f +26,3008,15,3,f +26,30086,14,1,f +26,30089,0,1,f +26,3008pb034,14,2,f +26,30090,33,1,f +26,30091,15,1,f +26,3010,0,1,f +26,30151a,47,1,f +26,30162,0,1,f +26,30179,15,1,f +26,30180,15,3,f +26,30181,1,2,f +26,30183,0,1,f +26,30185c02pb01,1,1,f +26,30187c01,14,1,f +26,30191,7,1,f +26,3020,14,1,f +26,30235,0,1,f +26,30237a,15,2,f +26,30237a,1,2,f +26,30237a,14,1,f +26,30248,7,1,f +26,30249,15,4,f +26,30250pr04,14,1,f +26,30251,33,1,f +26,30254,1,1,f +26,30256,15,1,f +26,30257,15,2,f +26,30258pb007,15,1,f +26,30261px6,15,1,f +26,30322,1,3,f +26,30338,6,1,f +26,30339,2,1,f +26,30340,25,5,f +26,30343c01,15,1,f +26,3037,4,2,f +26,3037pc0,14,1,f +26,3037pr0005,14,1,f +26,3037px11,7,1,f +26,3039,34,1,f +26,3039,36,1,f +26,3039,15,1,f +26,3039pr0005,15,1,f +26,3040b,33,2,f +26,3040b,0,1,f +26,3062b,15,1,f +26,3068bp66,15,1,f +26,3069bp02,7,2,f +26,3069bp52,15,1,f +26,3127,7,1,f +26,32084,15,1,f +26,32086,33,1,f +26,3460,0,2,f +26,3460,1,2,f +26,3626bp02,14,2,f +26,3626bp03,14,1,f +26,3626bp06,14,1,f +26,3626bpb0004,33,1,f +26,3626bpb0110,14,2,f +26,3794a,0,3,f +26,3829c01,4,1,f +26,3832,15,1,f +26,3867,2,1,f +26,3901,0,1,f +26,3962b,0,1,f +26,4032a,2,1,f +26,4079,4,1,f +26,4083,4,1,f +26,4151a,0,1,f +26,4162,0,1,f +26,4175,0,4,f +26,4289,15,1,f +26,4485,1,1,f +26,4488,7,1,f +26,4495b,4,1,f +26,4495b,2,1,f +26,4533,15,1,f +26,4595,0,1,f +26,4599a,15,1,f +26,4623,7,7,f +26,4714,15,1,f +26,51595p01,2,1,f +26,6014a,15,4,f +26,6015,0,4,f +26,6019,0,1,f +26,6020,14,1,f +26,6091,7,1,f +26,6093,0,1,f +26,6140,4,2,f +26,6141,36,7,f +26,6141,42,3,f +26,6141,34,2,f +26,6160c03,1,1,f +26,6212,1,1,f +26,6228a,7,1,f +26,71610pb02,7,1,f +26,76041c04,1,1,f +26,892pb11,15,2,f +26,92410,1,1,f +26,970c00,0,4,f +26,970x026,14,1,f +26,973pb0237c01,1,3,f +26,973pb0264c01,1,2,f +26,973pb0265c01,1,1,f +27,3004,7,1,f +27,30147,7,1,f +27,30167,6,1,f +27,3023,19,1,f +27,3044c,0,1,f +27,3626bpa3,14,1,f +27,3641,0,4,f +27,3795,8,1,f +27,3829c01,7,1,f +27,4600,0,2,f +27,4624,7,4,f +27,4865a,7,1,f +27,970c00,0,1,f +27,973pb0391c01,19,1,f +28,2340,15,4,f +28,2357,15,4,f +28,2412b,15,3,f +28,2412b,4,2,f +28,2431,4,2,f +28,2431,72,1,f +28,2432,1,1,f +28,2437,40,2,f +28,2445,15,2,f +28,2446,15,1,f +28,2447,40,1,f +28,2447,40,1,t +28,2460,72,1,f +28,2479,0,1,f +28,2483,40,1,f +28,2555,0,1,f +28,2569,72,1,t +28,2569,72,2,f +28,2610,14,1,f +28,2654,46,1,f +28,298c02,15,1,t +28,298c02,15,2,f +28,3002,1,4,f +28,30031,0,1,f +28,3004,15,6,f +28,3004,0,1,f +28,3005,15,4,f +28,30055,0,4,f +28,3008,15,1,f +28,3009,15,2,f +28,30162,72,3,f +28,3020,72,1,f +28,3020,0,2,f +28,3023,72,2,f +28,30237a,15,2,f +28,30248,0,1,f +28,3032,15,1,f +28,3034,0,2,f +28,3034,15,1,f +28,3035,15,1,f +28,30359b,0,2,f +28,3036,15,1,f +28,30361c,72,1,f +28,30363,15,3,f +28,3039pr0001,15,1,f +28,3039pr0002,15,1,f +28,3040b,15,2,f +28,30592,72,1,f +28,3069b,15,1,f +28,3069b,33,2,f +28,3070b,34,1,t +28,3070b,34,1,f +28,3070b,36,1,f +28,3070b,36,1,t +28,3245b,15,4,f +28,3624,15,1,f +28,3626bpr0126,14,1,f +28,3626bpr0282,14,1,f +28,3626bpr0410,14,1,f +28,3633,0,2,f +28,3660,15,2,f +28,3665,15,2,f +28,3678b,15,2,f +28,3710,1,1,f +28,3749,19,1,f +28,3794a,1,3,f +28,3795,14,2,f +28,3829c01,1,1,f +28,3900,15,1,f +28,3937,71,1,f +28,3938,0,1,f +28,3939,40,2,f +28,3941,15,1,f +28,3962b,0,2,f +28,4079,1,2,f +28,4081b,1,1,f +28,41334,0,1,f +28,4162,72,2,f +28,41767,15,1,f +28,41768,15,1,f +28,42022,15,4,f +28,4289,15,1,f +28,43093,1,1,f +28,4315,15,1,f +28,43337,4,2,f +28,43337,15,2,f +28,43337,40,4,f +28,43722,15,1,f +28,43723,15,1,f +28,44126,15,2,f +28,44661,15,1,f +28,44675,71,2,f +28,44728,15,2,f +28,4477,15,2,f +28,4599a,71,2,f +28,4617b,0,1,f +28,4733,0,1,f +28,48064c02,25,1,f +28,4865a,14,4,f +28,50304,15,1,f +28,50305,15,1,f +28,54100,0,1,f +28,54101,72,1,f +28,54200,33,6,f +28,6087,15,1,f +28,6140,15,4,f +28,6141,36,2,t +28,6141,46,3,f +28,6141,36,2,f +28,6141,34,1,f +28,6141,34,1,t +28,6141,46,2,t +28,6141,1,5,f +28,6141,1,2,t +28,6231,4,2,f +28,6553,72,1,f +28,970c00,72,1,f +28,970c00,0,2,f +28,973pr1186c01,0,1,f +28,973pr1188c01,0,1,f +28,973pr1197c01,15,1,f +29,3003,0,1,f +29,3004,15,1,f +29,3005pe1,15,2,f +29,3020,0,1,f +29,3022,0,1,f +29,3039,15,2,f +29,3660,15,2,f +29,3731,4,1,f +30,11062,0,1,f +30,2423,2,1,f +30,2432,4,1,f +30,3003,71,3,f +30,3010,322,2,f +30,3020,322,6,f +30,3020,4,1,f +30,3022,322,3,f +30,3023,322,2,f +30,3035,15,3,f +30,30374,19,2,f +30,3039,15,2,f +30,3040b,15,5,f +30,30565,15,3,f +30,3069b,41,24,f +30,3069b,320,1,f +30,3069b,47,8,f +30,3069b,15,6,f +30,3070b,19,1,t +30,3070b,19,2,f +30,32474,15,2,f +30,33291,10,1,t +30,33291,10,4,f +30,3626b,47,1,f +30,3626bpr0677,14,1,f +30,3626cpr0499,14,1,f +30,3795,15,1,f +30,3937,72,1,f +30,4081b,0,1,f +30,41879a,272,1,f +30,4286,15,9,f +30,4740,0,1,f +30,6005,320,2,f +30,60481,320,2,f +30,61252,19,2,f +30,6134,1,1,f +30,6141,15,5,f +30,6141,4,2,f +30,6141,71,1,t +30,6141,15,1,t +30,6141,4,1,t +30,6141,71,4,f +30,85984,4,1,f +30,87991,484,1,f +30,88286,308,1,f +30,93555,179,4,f +30,93555,179,1,t +30,970c00,1,1,f +30,973pr1573c01,15,1,f +30,973pr1772c01,10,1,f +30,98138,179,2,f +30,98138,179,1,t +31,x555c01,0,1,f +32,3004,72,1,f +32,3004pr20,15,1,f +32,3021,0,1,f +32,3023,4,3,f +32,3039,4,1,f +32,3040b,4,1,f +32,3298,15,1,f +32,3660,72,1,f +32,3710,4,2,f +32,6141,15,1,t +32,6141,15,1,f +33,2340,4,2,f +33,2413,15,2,f +33,2420,4,4,f +33,2421,0,4,f +33,2431,4,1,f +33,2431,15,1,f +33,2437,41,1,f +33,3002,0,1,f +33,3004,15,2,f +33,3005,15,6,f +33,3020,15,4,f +33,3020,4,1,f +33,3021,4,1,f +33,3021,15,3,f +33,3022,4,2,f +33,3023,4,3,f +33,3023,15,2,f +33,3024,4,2,f +33,3024,15,2,f +33,3030,15,1,f +33,3034,15,1,f +33,3037,15,2,f +33,3039pc4,0,1,f +33,3040b,15,2,f +33,3068bp52,15,1,f +33,3069b,15,2,f +33,3069b,4,2,f +33,3139,0,6,f +33,3460,15,2,f +33,3624,0,1,f +33,3626apr0001,14,3,f +33,3660,4,2,f +33,3660,15,3,f +33,3665,4,2,f +33,3665,15,2,f +33,3666,15,2,f +33,3666,4,3,f +33,3676,15,2,f +33,3679,7,1,f +33,3680,15,1,f +33,3710,4,2,f +33,3710,15,3,f +33,3901,0,1,f +33,4161,15,2,f +33,4162,4,2,f +33,4282,15,1,f +33,4282,4,1,f +33,4477,4,1,f +33,4477,15,2,f +33,4488,4,4,f +33,4530,0,1,f +33,4624,7,6,f +33,4625,15,2,f +33,4714,15,1,f +33,4715,15,2,f +33,4854,15,3,f +33,4855,15,1,f +33,4857,15,2,f +33,4858,15,1,f +33,4859,4,1,f +33,4859,15,1,f +33,4861,15,2,f +33,4862,41,4,f +33,4863,15,2,f +33,4864a,15,6,f +33,4864ap02,15,2,f +33,4865a,15,2,f +33,4865a,41,2,f +33,4870,7,3,f +33,6141,36,2,f +33,6141,34,1,t +33,6141,34,1,f +33,73983,4,2,f +33,970c00,4,1,f +33,970c00,0,1,f +33,970c00,7,1,f +33,973c07,1,1,f +33,973p24c01,15,1,f +33,973px189c01,0,1,f +34,28555,41,2,f +34,3626cpr2127,78,1,f +34,88646,0,1,f +34,93563,272,1,f +34,970c00pr1196,26,1,f +34,973pr3677c01,0,1,f +36,3003pe2,14,1,f +36,3004,1,1,f +36,3021,4,2,f +36,3039,14,1,f +36,3040b,1,2,f +36,3660,14,1,f +37,2780,0,2,f +37,2780,0,1,t +37,2825,4,1,f +37,32002,72,1,t +37,32002,72,1,f +37,32013,71,1,f +37,32062,4,1,f +37,32174,0,5,f +37,32199,72,1,f +37,32476,0,1,f +37,32524,0,1,f +37,43093,1,6,f +37,44807,320,1,f +37,47300,72,4,f +37,50858,320,2,f +37,50858,0,2,f +37,50898,0,2,f +37,54271,148,1,f +37,54821,182,2,f +37,56160,135,1,f +37,59426,72,1,f +37,59577pat0001,320,1,f +37,6587,72,1,f +37,6632,0,1,f +38,12825,14,9,f +38,14226c11,0,1,f +38,2357,14,8,f +38,2456,2,1,f +38,2456,15,2,f +38,2456,19,1,f +38,2542,70,2,f +38,3001,15,9,f +38,3001,4,2,f +38,3001,2,16,f +38,3001,19,1,f +38,3001,70,3,f +38,3001,27,8,f +38,3002,2,2,f +38,3002,19,5,f +38,3002,4,2,f +38,3002,15,6,f +38,3002,70,1,f +38,3003,14,7,f +38,3003,2,14,f +38,3003,70,14,f +38,3003,19,8,f +38,3003,4,2,f +38,3003,27,8,f +38,3003,28,2,f +38,3003,1,1,f +38,3004,29,1,f +38,3004,25,8,f +38,3004,19,4,f +38,3004,15,50,f +38,3004,26,127,f +38,3004,4,9,f +38,3004,70,44,f +38,3004,72,3,f +38,3004,0,4,f +38,3004,27,10,f +38,3004,2,40,f +38,3004,73,4,f +38,30044,15,2,f +38,30046,297,2,f +38,3004pr0001,14,6,f +38,3004pr0002,14,6,f +38,3005,27,10,f +38,3005,29,114,f +38,3005,25,4,f +38,3005,4,6,f +38,3005,70,5,f +38,3005,114,20,f +38,3005,182,28,f +38,3005pr0003,15,2,f +38,3005pr0003,14,2,f +38,3006,15,4,f +38,3007,14,1,f +38,3009,19,3,f +38,3009,25,2,f +38,3009,4,3,f +38,3010,25,2,f +38,3010,15,2,f +38,3010,4,10,f +38,30115,4,2,f +38,30115,2,2,f +38,30136,70,4,f +38,30137,70,4,f +38,30150,70,2,f +38,30153,36,2,f +38,30153,47,2,f +38,30153,41,2,f +38,30153,45,2,f +38,30153,34,2,f +38,30176,2,5,f +38,3020,15,1,f +38,3020,4,2,f +38,3021,4,2,f +38,3021,72,1,f +38,3021,25,2,f +38,3022,4,6,f +38,3022,15,1,f +38,3022,70,3,f +38,3022,0,2,f +38,3023,14,5,f +38,3023,4,3,f +38,3023,33,7,f +38,3023,15,10,f +38,3023,1,6,f +38,3023,72,6,f +38,3023,0,4,f +38,30238,0,3,f +38,3024,4,2,f +38,3029,1,7,f +38,3030,72,2,f +38,3031,14,1,f +38,3031,70,1,f +38,3031,19,3,f +38,3031,15,4,f +38,3032,70,1,f +38,3032,4,4,f +38,3033,72,1,f +38,3034,19,2,f +38,3034,4,2,f +38,3035,1,2,f +38,3035,70,3,f +38,3036,70,2,f +38,30367b,4,3,f +38,30374,19,3,f +38,30385,36,1,f +38,30385,82,1,f +38,30385,42,1,f +38,3039,2,3,f +38,3039,25,6,f +38,3039,15,18,f +38,3039,4,4,f +38,3039,72,1,f +38,3039,70,19,f +38,3039,14,3,f +38,3039,26,2,f +38,3039,1,3,f +38,3040b,29,2,f +38,3040b,2,2,f +38,3040b,70,4,f +38,3040b,4,8,f +38,30414,4,1,f +38,3045,14,4,f +38,3048c,297,10,f +38,3062b,0,5,f +38,3062b,15,5,f +38,3062b,70,2,f +38,3068b,70,1,f +38,3068b,2,1,f +38,3068b,4,15,f +38,3068b,14,1,f +38,3068b,15,1,f +38,3069b,70,4,f +38,3070b,15,10,f +38,3298,14,4,f +38,3298,4,3,f +38,33006,320,1,f +38,33048c01,484,1,f +38,3308,15,2,f +38,33183,10,3,f +38,3460,70,3,f +38,3622,4,4,f +38,3622,70,2,f +38,3623,19,2,f +38,3626b,14,4,f +38,3659,15,2,f +38,3660,15,5,f +38,3660,4,3,f +38,3666,4,3,f +38,3676,14,4,f +38,3678b,0,1,f +38,3710,70,2,f +38,3710,0,2,f +38,3710,4,2,f +38,3741,2,11,f +38,3742,5,3,t +38,3742,15,3,f +38,3742,5,9,f +38,3742,4,2,t +38,3742,15,1,t +38,3742,4,6,f +38,3747b,14,4,f +38,3747b,4,1,f +38,3794b,2,1,f +38,3794b,19,3,f +38,3795,25,2,f +38,3795,4,3,f +38,3795,19,5,f +38,3837,72,1,f +38,3839b,15,4,f +38,3847,135,2,f +38,3899,14,2,f +38,3942c,0,1,f +38,3942c,15,2,f +38,3958,15,1,f +38,3958,19,1,f +38,3958,4,1,f +38,3958,72,1,f +38,4070,4,6,f +38,4070,15,6,f +38,4070,0,4,f +38,4070,71,4,f +38,4070,1,4,f +38,4083,0,2,f +38,4150,0,4,f +38,4332,0,1,f +38,4341,0,1,f +38,43713,15,1,f +38,43719,0,1,f +38,43719,4,4,f +38,44567a,14,4,f +38,4477,70,4,f +38,4495b,82,3,f +38,4532,4,2,f +38,4533,41,1,f +38,4536,15,2,f +38,4589,297,3,f +38,4738a,70,2,f +38,4739a,70,2,f +38,4871,15,1,f +38,49668,191,4,f +38,49668,0,8,f +38,50745,4,2,f +38,54200,14,7,f +38,54200,70,4,f +38,54200,15,5,f +38,6019,4,2,f +38,60471,4,4,f +38,60474,0,1,f +38,6124,45,1,f +38,6141,29,14,f +38,6141,15,8,f +38,6141,25,8,f +38,6141,4,5,f +38,6141,14,3,f +38,6141,0,12,f +38,6251,15,2,f +38,6255,2,4,f +38,6255,10,3,f +38,63965,15,3,f +38,64647,57,2,f +38,6636,15,1,f +40,2412b,15,2,f +40,2540,19,4,f +40,3023,71,1,f +40,3023,15,3,f +40,3023,47,1,f +40,30374,15,4,f +40,3062b,15,4,f +40,3069bps4,15,2,f +40,3069bps5,15,2,f +40,3623,19,1,f +40,3710,320,1,f +40,3710,15,1,f +40,3794a,15,1,f +40,3794a,320,1,f +40,6019,15,8,f +40,6141,71,1,f +40,6141,71,1,t +40,6538b,15,4,f +42,3626bpr0645,14,1,f +42,74188,4,1,f +42,86035,4,1,f +42,87079pr0052,15,1,f +42,970c00,1,1,f +42,973pr2370c01,15,1,f +43,3003,2,3,f +43,3004,70,3,f +43,3004,71,3,f +43,3004,73,3,f +43,3005,2,3,f +43,3005,70,6,f +43,3005,27,3,f +43,3005,25,3,f +43,3020,1,6,f +43,3020,19,3,f +43,30238,0,3,f +43,30374,70,3,f +43,3062b,19,3,f +43,33291,5,3,f +43,3626cpr0891,14,3,f +43,3626cpr1580,14,3,f +43,3835,0,3,f +43,41539,71,3,f +43,59363,70,3,f +43,6126a,57,3,f +43,6131,0,3,f +43,6141,27,3,f +43,6141,14,3,f +43,6141,25,3,f +43,6251,15,3,f +43,86035,27,3,f +43,970c00,4,3,f +43,970c00,0,3,f +43,973c02,4,3,f +43,973c18,0,3,f +45,12825,71,4,f +45,2412b,179,1,f +45,2437,40,2,f +45,3004,288,2,f +45,3005,288,2,f +45,3020,72,1,f +45,3023,15,2,f +45,3023,288,2,f +45,3024,36,2,f +45,3024,36,1,t +45,30374,71,2,f +45,3069b,15,1,f +45,3070b,288,1,t +45,3070b,288,4,f +45,3710,288,5,f +45,3710,72,1,f +45,3795,71,2,f +45,4600,0,2,f +45,4865b,19,2,f +45,50944pr0001,0,4,f +45,50951,0,4,f +45,54200,288,2,f +45,54200,288,1,t +45,60212,0,2,f +45,6141,0,1,f +45,6141,0,1,t +45,63864,288,2,f +45,93273,15,1,f +45,93274,0,2,f +45,93604,15,1,f +45,98138,47,2,f +45,98138,47,1,t +45,99780,71,1,f +49,3003,14,1,f +49,3004,1,1,f +49,3020,1,1,f +49,3022,4,1,f +49,3023,4,1,f +49,3024,14,2,f +49,3039,4,1,f +49,3040b,1,2,f +49,3040b,14,1,f +49,3298px11,14,1,f +49,3660,14,1,f +49,3665,14,2,f +49,3665,1,2,f +49,3710,14,2,f +49,3710,4,1,f +49,4286,14,3,f +49,6141,15,1,t +49,6141,15,2,f +51,2555,71,1,f +51,3004,71,2,f +51,30194,72,1,f +51,3024,1,2,f +51,3710,1,1,f +51,3794a,1,2,f +51,3795,71,1,f +51,4070,1,2,f +51,4697b,71,1,f +51,4697b,71,1,t +52,194cx1,7,4,f +52,298c02,7,2,f +52,3001,14,2,f +52,3003,15,6,f +52,3004,15,11,f +52,3004,0,5,f +52,3005,0,6,f +52,3005,15,13,f +52,3008,15,7,f +52,3008,0,3,f +52,3009,15,5,f +52,3009,0,1,f +52,3010,4,1,f +52,3020,15,4,f +52,3021,15,1,f +52,3021,0,2,f +52,3021,4,3,f +52,3021,14,6,f +52,3022,4,4,f +52,3022,0,1,f +52,3022,14,4,f +52,3023,15,5,f +52,3024,15,7,f +52,3024,36,2,f +52,3024,47,2,f +52,3034,4,2,f +52,3035,15,1,f +52,3035,0,2,f +52,3040p33,0,1,f +52,3044p37,7,2,f +52,3062b,7,2,f +52,3062b,14,5,f +52,3062b,4,1,f +52,3068b,7,3,f +52,3068b,15,13,f +52,3069b,15,7,f +52,3070b,15,2,f +52,309p01,7,1,f +52,3135c02,1,1,f +52,3456,0,1,f +52,3456,4,3,f +52,3460,14,8,f +52,3460,15,2,f +52,3622,15,8,f +52,3623,1,2,f +52,3623,15,4,f +52,3626apr0001,14,2,f +52,3641,0,7,f +52,3666,15,1,f +52,3710,15,3,f +52,3710,14,8,f +52,3710,7,1,f +52,3788,15,2,f +52,3794a,15,2,f +52,3795,15,1,f +52,3821pb04,15,1,f +52,3822pb04,15,1,f +52,3823,47,1,f +52,3829c01,4,1,f +52,3852a,6,1,f +52,3937,0,1,f +52,3937,15,3,f +52,3938,0,1,f +52,3938,15,3,f +52,3941p01,7,2,f +52,4006,0,1,f +52,4070,4,4,f +52,4070,15,3,f +52,4081a,15,4,f +52,4083,1,2,f +52,4083,7,1,f +52,4085b,15,4,f +52,4175,7,1,f +52,4212b,4,1,f +52,4213,4,1,f +52,4214,4,1,f +52,4345a,15,1,f +52,4346,15,1,f +52,4347,7,2,f +52,4477,14,4,f +52,4477,7,1,f +52,4485,1,1,f +52,4522,0,1,f +52,4530,0,1,f +52,4590,0,2,f +52,4599a,4,1,f +52,4600,0,2,f +52,4624,7,7,f +52,4629c01,1,1,f +52,4859,15,2,f +52,6141,15,4,f +52,6141,46,2,f +52,6141,0,6,f +52,6141,4,2,f +52,73194c01,0,1,f +52,73590c01a,0,1,f +52,970c00,1,2,f +52,973p60c01,15,1,f +52,973pb0201c01,15,1,f +54,2412b,0,2,f +54,2460,14,1,f +54,2479,1,1,f +54,30000,8,2,f +54,3001,1,1,f +54,3001,15,1,f +54,3003,1,2,f +54,3003,14,2,f +54,3003,15,2,f +54,3003,4,2,f +54,3004,14,4,f +54,3004,1,4,f +54,3004,15,4,f +54,3004,4,2,f +54,3005,4,4,f +54,3005,14,6,f +54,3005,15,6,f +54,3005,1,6,f +54,3005pe1,4,2,f +54,3010,4,2,f +54,3010,15,4,f +54,3010,14,2,f +54,3010,1,4,f +54,3020,4,2,f +54,3030,4,1,f +54,3034,4,2,f +54,3039,1,2,f +54,3039,47,1,f +54,3062b,15,8,f +54,3297,1,2,f +54,3298,1,4,f +54,3298p11,1,2,f +54,3483,0,4,f +54,3622,1,2,f +54,3626bp05,14,1,f +54,3633,14,2,f +54,3660,1,2,f +54,3710,4,2,f +54,3741,2,1,f +54,3742,4,1,t +54,3742,4,3,f +54,3829c01,14,1,f +54,3865,2,1,f +54,3957a,14,1,f +54,4070,1,2,f +54,4286,1,2,f +54,4287,1,2,f +54,4485,15,1,f +54,6248,4,4,f +54,970c00,7,1,f +54,973px28c01,15,1,f +55,3626apr0001,14,4,f +55,3838,15,2,f +55,3838,14,1,f +55,3838,4,1,f +55,3842a,15,2,f +55,3842a,14,1,f +55,3842a,4,1,f +55,3959,7,1,f +55,4349,0,1,f +55,4360,7,1,f +55,4479,0,1,f +55,970c00,14,1,f +55,970c00,15,2,f +55,970c00,4,1,f +55,973p90c02,4,1,f +55,973p90c04,14,1,f +55,973p90c05,15,2,f +56,2343,1,1,f +56,2357,19,4,f +56,2420,72,10,f +56,2420,73,8,f +56,2431,73,11,f +56,2432,19,2,f +56,2445,0,1,f +56,2449,19,4,f +56,2458,71,2,f +56,2554,0,2,f +56,2564,0,1,f +56,2566,0,1,f +56,2817,0,1,f +56,30000,71,1,f +56,3001,19,1,f +56,3001,71,4,f +56,3001,0,1,f +56,3002,320,2,f +56,3002,19,2,f +56,3003,0,4,f +56,3004,19,12,f +56,3004,0,2,f +56,30044,320,3,f +56,30046,134,3,f +56,3007,0,2,f +56,3008,19,2,f +56,3008,0,1,f +56,3009,0,2,f +56,30099,19,6,f +56,3010,19,5,f +56,30103,0,1,f +56,30104,0,1,f +56,30126,72,1,f +56,30126,72,1,t +56,30136,19,4,f +56,30152pat0001,0,1,f +56,30154,72,1,f +56,3020,14,2,f +56,3020,70,4,f +56,3021,0,3,f +56,3022,19,4,f +56,3023,72,14,f +56,3023,73,16,f +56,30237a,71,4,f +56,3024,73,4,f +56,3024,72,6,f +56,3027,72,1,f +56,3031,70,1,f +56,3034,0,1,f +56,30355,72,1,f +56,30356,72,1,f +56,30374,70,1,f +56,30374,0,1,f +56,3039,72,2,f +56,3039,320,3,f +56,3040b,320,4,f +56,3040b,19,4,f +56,3040b,72,8,f +56,30414,72,2,f +56,3044b,19,2,f +56,3062b,320,46,f +56,3062b,0,5,f +56,3062b,19,12,f +56,3062b,47,5,f +56,3068b,73,8,f +56,3068bp30,15,1,f +56,3068bpr0131,15,1,f +56,3069b,73,8,f +56,3069bpr0055,15,1,f +56,32013,0,1,f +56,32073,71,1,f +56,32123b,71,1,t +56,32123b,71,4,f +56,32324,71,1,f +56,32530,0,2,f +56,33009,4,1,f +56,3455,19,2,f +56,3460,320,3,f +56,3581,19,2,f +56,3622,19,12,f +56,3623,73,18,f +56,3623,320,7,f +56,3659,320,1,f +56,3660,19,2,f +56,3665,19,4,f +56,3666,320,4,f +56,3673,71,2,f +56,3700,0,9,f +56,3705,0,2,f +56,3710,70,2,f +56,3710,320,2,f +56,3710,0,9,f +56,3710,73,5,f +56,3710,72,3,f +56,3747b,0,5,f +56,3794a,0,4,f +56,3795,70,1,f +56,3830,71,2,f +56,3831,71,2,f +56,3832,72,2,f +56,3832,19,2,f +56,3846p45,71,2,f +56,3846pb19,71,2,f +56,3849,0,3,f +56,3937,1,2,f +56,3941,0,1,f +56,3957a,19,4,f +56,4070,0,2,f +56,4085c,0,2,f +56,40902,0,1,f +56,4151,0,1,f +56,41532,0,4,f +56,41539,71,1,f +56,41769,0,3,f +56,41770,0,3,f +56,4274,1,1,t +56,4274,1,1,f +56,43093,1,1,f +56,4332,0,1,f +56,43892,19,2,f +56,4424,73,2,f +56,44302a,0,3,f +56,4460b,19,4,f +56,4477,72,2,f +56,4477,19,2,f +56,4477,0,6,f +56,4490,19,12,f +56,4528,135,1,f +56,4589,182,2,f +56,4599a,0,1,f +56,4623,0,4,f +56,4740,334,4,f +56,4740,47,4,f +56,4740,0,2,f +56,4790,70,1,f +56,47980,0,1,f +56,47981,72,2,f +56,47986,0,1,f +56,47988,72,1,f +56,47994,0,4,f +56,47996,0,2,f +56,48002,0,4,f +56,48005,0,1,f +56,4865a,0,4,f +56,6060,320,2,f +56,6091,320,4,f +56,6112,0,2,f +56,6126a,41,1,f +56,6134,71,2,f +56,6141,334,4,f +56,6141,57,1,t +56,6141,57,1,f +56,6141,15,1,t +56,6141,320,4,f +56,6141,334,1,t +56,6141,320,1,t +56,6141,15,4,f +56,6182,19,2,f +56,6231,0,2,f +56,6628,0,1,f +56,6636,0,3,f +56,x1558px1,14,3,f +58,10201,71,2,f +58,10247,71,2,f +58,10247,72,10,f +58,10928,72,2,f +58,11153,320,4,f +58,11153,71,8,f +58,11203,19,2,f +58,11211,19,2,f +58,11211,71,8,f +58,11212,71,6,f +58,11212,72,2,f +58,11214,72,4,f +58,11215,71,3,f +58,11290,71,4,f +58,11458,72,6,f +58,11477,71,21,f +58,11477,288,1,f +58,11477,72,4,f +58,11610,0,4,f +58,11833,71,2,f +58,12825,72,4,f +58,12939,71,2,f +58,13731,72,4,f +58,13731,320,2,f +58,15068,378,15,f +58,15068,0,6,f +58,15068,72,5,f +58,15207,71,2,f +58,15459,71,2,f +58,15573,71,2,f +58,16477,47,1,f +58,16497,1,1,f +58,19159,0,2,f +58,2357,320,6,f +58,23794,28,1,f +58,2412b,0,3,f +58,2412b,179,4,f +58,2412b,72,10,f +58,2412b,71,13,f +58,2419,72,1,f +58,2420,320,2,f +58,2420,71,6,f +58,2420,19,11,f +58,2431,71,2,f +58,2431,288,2,f +58,2445,0,4,f +58,2445,72,7,f +58,2450,71,4,f +58,2450,320,8,f +58,2456,2,2,f +58,2465,0,1,f +58,2540,72,3,f +58,2555,0,17,f +58,2639,72,4,f +58,2654,72,1,f +58,2654,19,5,f +58,2730,0,4,f +58,2730,71,8,f +58,2780,0,103,f +58,2780,0,7,t +58,2817,71,8,f +58,2825,4,2,f +58,3001,0,2,f +58,3001,72,12,f +58,3001,71,1,f +58,3001,19,5,f +58,3002,72,4,f +58,3002,0,2,f +58,3002,25,1,f +58,3003,272,1,f +58,3003,320,2,f +58,3003,72,6,f +58,3004,288,4,f +58,3004,320,11,f +58,3004,71,2,f +58,3005,71,4,f +58,3006,19,1,f +58,3007,71,2,f +58,3008,71,2,f +58,3009,71,1,f +58,3010,19,1,f +58,3010,72,2,f +58,3010,0,4,f +58,30165,0,2,f +58,3020,72,10,f +58,3020,320,8,f +58,3020,0,3,f +58,3021,71,9,f +58,3021,0,2,f +58,3021,19,32,f +58,3022,320,9,f +58,3022,15,6,f +58,3022,72,17,f +58,3023,71,12,f +58,3023,28,85,f +58,3023,0,8,f +58,3023,72,1,f +58,3023,320,4,f +58,30237b,71,2,f +58,3024,0,4,f +58,3024,320,2,t +58,3024,72,1,t +58,3024,320,8,f +58,3024,0,1,t +58,3024,71,4,f +58,3024,72,2,f +58,3024,1,6,f +58,3024,71,1,t +58,3024,1,2,t +58,3029,72,1,f +58,3029,71,1,f +58,3030,72,2,f +58,3030,71,1,f +58,3031,72,4,f +58,3031,2,3,f +58,3032,72,4,f +58,3034,19,2,f +58,3034,71,6,f +58,3034,0,1,f +58,3035,71,2,f +58,3035,72,1,f +58,3035,0,2,f +58,3036,0,1,f +58,30363,320,2,f +58,30363,0,1,f +58,30363,72,5,f +58,30374,71,2,f +58,30377,71,4,f +58,30377,71,2,t +58,30383,72,2,f +58,3039,320,6,f +58,3039,71,4,f +58,3039pr0014,0,1,f +58,3039pr0015,0,1,f +58,30408pr0007,15,1,f +58,3040b,71,11,f +58,3040b,28,1,f +58,3040b,320,12,f +58,3040b,288,8,f +58,30414,0,2,f +58,30414,71,12,f +58,30414,72,14,f +58,3046a,72,2,f +58,30503,0,4,f +58,30565,320,2,f +58,30565,72,4,f +58,30565,71,6,f +58,3062b,71,2,f +58,3068b,288,2,f +58,3068b,320,6,f +58,3068b,71,2,f +58,3068b,72,1,f +58,3069b,320,2,f +58,3069b,71,14,f +58,3069b,378,28,f +58,3069b,0,2,f +58,3069bpr0070,0,1,f +58,3070b,72,2,t +58,3070b,72,2,f +58,32000,0,1,f +58,32001,0,2,f +58,32009,0,2,f +58,32016,71,4,f +58,32018,0,2,f +58,32028,71,18,f +58,32054,4,16,f +58,32059,378,2,f +58,32064a,72,6,f +58,32073,71,2,f +58,32123b,14,2,t +58,32123b,14,10,f +58,32138,71,2,f +58,32138,0,4,f +58,32140,72,4,f +58,32140,0,2,f +58,32187,71,8,f +58,32278,0,8,f +58,32316,0,4,f +58,32523,0,2,f +58,32523,4,4,f +58,32524,72,2,f +58,32524,71,4,f +58,32526,0,2,f +58,32531,0,3,f +58,32532,71,3,f +58,32555,0,2,f +58,3298,72,1,f +58,3460,19,2,f +58,3622,71,12,f +58,3622,72,4,f +58,3623,19,8,f +58,3623,320,6,f +58,3623,71,9,f +58,3623,378,37,f +58,3626bpr0854,78,1,f +58,3626cpr1149,78,1,f +58,3626cpr1531,78,1,f +58,3626cpr1532,78,1,f +58,3660,72,2,f +58,3665,71,6,f +58,3666,288,2,f +58,3666,0,15,f +58,3666,71,15,f +58,3666,72,9,f +58,3678b,71,4,f +58,3700,0,12,f +58,3700,71,4,f +58,3701,1,2,f +58,3701,71,1,f +58,3702,71,7,f +58,3702,0,2,f +58,3703,71,2,f +58,3706,0,4,f +58,3708,0,1,f +58,3709,72,10,f +58,3709,0,2,f +58,3710,72,21,f +58,3710,288,4,f +58,3710,0,7,f +58,3710,320,4,f +58,3710,71,30,f +58,3713,71,6,f +58,3713,71,1,t +58,3738,0,2,f +58,3743,71,2,f +58,3749,19,2,f +58,3794b,72,6,f +58,3795,72,1,f +58,3795,14,2,f +58,3795,71,3,f +58,3795,0,6,f +58,3832,19,2,f +58,3832,70,3,f +58,3832,71,4,f +58,3894,72,4,f +58,3894,71,2,f +58,3895,72,2,f +58,3901,70,1,f +58,3937,0,2,f +58,3941,4,2,f +58,3960,41,2,f +58,4032a,72,1,f +58,4032a,1,3,f +58,40490,72,4,f +58,41539,72,1,f +58,4161,320,4,f +58,4162,0,4,f +58,41677,0,2,f +58,41747,72,2,f +58,41748,72,2,f +58,41749,320,1,f +58,41750,320,1,f +58,41769,320,2,f +58,41769,71,4,f +58,41770,320,2,f +58,41770,71,4,f +58,41862,71,1,f +58,42003,72,2,f +58,42023,72,4,f +58,42060,320,2,f +58,42061,320,2,f +58,4274,71,2,f +58,4274,71,1,t +58,4274,1,6,f +58,4274,1,2,t +58,4282,15,2,f +58,4286,378,2,f +58,4286,320,4,f +58,4286,71,6,f +58,4287,71,10,f +58,43093,1,17,f +58,43708,320,2,f +58,43713,71,1,f +58,43722,71,5,f +58,43723,71,5,f +58,43857,71,4,f +58,44294,71,3,f +58,44301a,72,2,f +58,44301a,0,1,f +58,44302a,71,3,f +58,44567a,72,1,f +58,44728,0,8,f +58,4477,72,2,f +58,4477,71,4,f +58,4510,71,2,f +58,4519,71,3,f +58,4590,72,2,f +58,4599b,0,8,f +58,4599b,0,1,t +58,4600,71,2,f +58,47397,0,1,f +58,47397,71,2,f +58,47398,0,1,f +58,47398,71,2,f +58,47458,0,4,f +58,47905,72,10,f +58,48336,71,7,f +58,48336,19,12,f +58,4869,71,1,f +58,4871,71,4,f +58,50950,288,18,f +58,50950,71,10,f +58,50990b,71,1,f +58,52107,71,12,f +58,54200,0,1,t +58,54200,288,8,f +58,54200,0,2,f +58,54200,288,1,t +58,54200,71,2,t +58,54200,71,3,f +58,54200,378,1,t +58,54200,378,1,f +58,54200,320,4,f +58,54200,320,2,t +58,54383,71,4,f +58,54384,71,4,f +58,58247,0,1,f +58,58846,320,2,f +58,59426,72,2,f +58,59443,72,12,f +58,59900,80,2,f +58,59900,0,2,f +58,59900,33,1,f +58,59900,71,4,f +58,6005,72,4,f +58,6005,288,4,f +58,60470a,0,12,f +58,60471,0,3,f +58,60474,72,2,f +58,60474,71,2,f +58,60477,320,18,f +58,60478,72,11,f +58,60479,71,2,f +58,60481,320,6,f +58,60483,72,2,f +58,60484,14,4,f +58,6091,0,8,f +58,6091,72,4,f +58,6091,71,2,f +58,6111,71,2,f +58,61190c,72,4,t +58,61252,71,2,f +58,6134,0,2,f +58,61409,0,4,f +58,6141,0,1,t +58,6141,179,5,t +58,6141,72,7,f +58,6141,0,4,f +58,6141,46,2,f +58,6141,179,18,f +58,6141,46,2,t +58,6141,47,1,t +58,6141,72,2,t +58,6141,47,12,f +58,6179,72,1,f +58,6232,71,2,f +58,62361,71,2,f +58,62462,71,4,f +58,62462,0,2,f +58,63586,72,1,f +58,63586,72,3,t +58,63864,71,11,f +58,63864,288,2,f +58,63864,320,8,f +58,63868,71,1,f +58,63965,0,8,f +58,64567,0,2,f +58,64567,0,2,t +58,64644,71,4,f +58,64799,71,2,f +58,64802,378,1,f +58,6541,72,6,f +58,6558,1,23,f +58,6587,28,8,f +58,6589,19,4,f +58,6589,19,2,t +58,6628,0,2,f +58,6628,0,1,t +58,6632,4,4,f +58,6636,71,3,f +58,73983,71,2,f +58,76766,0,1,f +58,85080,71,4,f +58,85984,72,6,f +58,86652,71,2,f +58,87079,378,2,f +58,87079,71,2,f +58,87083,72,3,f +58,87087,0,10,f +58,87559,320,2,f +58,87559,288,4,f +58,87561pr01,148,1,f +58,87580,71,1,f +58,87610pr0001a,378,1,f +58,87618,71,4,f +58,88293,72,2,f +58,88930,71,6,f +58,88930,288,6,f +58,90194,71,1,f +58,90498,0,1,f +58,91988,72,2,f +58,91988,0,2,f +58,92593,71,7,f +58,92593,72,1,f +58,92690,71,4,f +58,92738,0,1,f +58,92946,72,4,f +58,93274,72,4,f +58,93604,378,1,f +58,93606,0,4,f +58,95188,288,4,f +58,95188,320,6,f +58,95199,0,2,f +58,96874,25,1,t +58,970c00,1,1,f +58,970c00,70,1,f +58,970c00pr0719,15,1,f +58,970c00pr0746,379,1,f +58,973pr1620c01,15,1,f +58,973pr2767c01,15,1,f +58,973pr2809c01,71,1,f +58,973pr2810c01,1,1,f +58,98138,41,1,t +58,98138,47,12,f +58,98138,71,2,f +58,98138,179,2,f +58,98138,41,9,f +58,98138,71,1,t +58,98138,179,1,t +58,98138,47,1,t +58,99207,71,3,f +58,99780,0,6,f +58,99781,71,4,f +58,99784,71,2,f +60,32171pb004,0,1,f +60,32573,1,1,f +60,32576,1,2,f +60,32577,73,1,f +60,32578,73,1,f +60,32579,8,1,f +60,40507,73,1,f +61,2412b,0,2,f +61,2424,0,1,f +61,2431,8,2,f +61,2431,4,2,f +61,2432,0,4,f +61,2436,7,2,f +61,2453a,4,2,f +61,2454a,4,5,f +61,2486,7,5,f +61,2569,0,1,f +61,2584,0,2,f +61,2585,7,2,f +61,2780,0,1,t +61,2780,0,18,f +61,2926,7,4,f +61,2927,0,4,f +61,3001,0,2,f +61,3001,8,2,f +61,3001,4,10,f +61,3003,0,3,f +61,3004,7,1,f +61,3004,8,1,f +61,3004,0,4,f +61,3005,8,2,f +61,3008,4,1,f +61,3009,8,2,f +61,3010,4,4,f +61,3010,14,2,f +61,30134,0,4,f +61,30179,8,2,f +61,30194,8,1,f +61,3020,4,5,f +61,3020,7,1,f +61,3021,0,3,f +61,3022,14,2,f +61,3022,4,8,f +61,3022,7,2,f +61,30228,8,1,f +61,3023,46,2,f +61,3023,0,1,f +61,3023,4,1,f +61,30237a,14,2,f +61,3024,7,2,f +61,3024,0,4,f +61,30256,7,4,f +61,30258,0,8,f +61,3029,8,1,f +61,3031,8,2,f +61,3035,7,1,f +61,3035,8,1,f +61,3036,8,2,f +61,30388,7,1,f +61,3039,0,1,f +61,3040b,0,2,f +61,3068bpr0136,72,1,f +61,3069bp08,15,2,f +61,3069bpr0030,8,1,f +61,3070bp01,14,1,f +61,3070bp01,14,1,t +61,3176,7,2,f +61,3297p15,7,1,f +61,3460,0,4,f +61,3471,2,1,f +61,3624,320,1,f +61,3626bpb0173,14,1,f +61,3626bpr0126,14,1,f +61,3660,4,4,f +61,3665,4,6,f +61,3666,7,2,f +61,3705,0,2,f +61,3710,0,4,f +61,3710,8,1,f +61,3754,4,1,f +61,3794a,7,1,f +61,3795,0,4,f +61,3795,7,2,f +61,3821,14,1,f +61,3822,14,1,f +61,3823,40,1,f +61,3829c01,7,1,f +61,3832,4,1,f +61,3833,4,1,f +61,3836,6,1,f +61,3837,8,1,f +61,3857,2,1,f +61,3899,14,1,f +61,3937,14,4,f +61,3937,8,1,f +61,3962b,72,1,f +61,3963,0,1,f +61,4006,0,1,f +61,4070,14,2,f +61,4081b,7,3,f +61,4083,7,5,f +61,40996,46,1,f +61,41532,0,1,f +61,4162,8,12,f +61,41749,40,1,f +61,4175,0,1,f +61,41750,40,1,f +61,42022,0,2,f +61,4274,7,1,t +61,4274,7,2,f +61,44126,0,5,f +61,44302a,8,1,f +61,44336pr01,2,1,f +61,4477,8,1,f +61,4477,4,1,f +61,4515,8,4,f +61,4522,0,1,f +61,45677,14,1,f +61,46212,40,1,f +61,4872,40,3,f +61,6014b,7,4,f +61,6015,0,4,f +61,6106,7,2,f +61,6111,4,3,f +61,6134,0,5,f +61,6140,14,2,f +61,6141,36,1,t +61,6141,34,3,f +61,6141,46,4,f +61,6141,36,3,f +61,6141,34,1,t +61,6141,46,1,t +61,6536,7,2,f +61,6553,7,2,f +61,74746,8,3,f +61,75535,15,10,f +61,75535,4,8,f +61,76041c02,7,2,f +61,970c00,272,1,f +61,970c00,1,1,f +61,973pb0008c01,272,1,f +61,973pr1183c01,25,1,f +62,2412b,297,1,f +62,2540,0,2,f +62,2654,71,1,f +62,30028,0,2,f +62,3020,71,3,f +62,3023,19,1,f +62,3023,0,4,f +62,3068b,0,1,f +62,3460,0,4,f +62,3700,71,3,f +62,3710,19,2,f +62,3794b,0,2,f +62,42610,71,1,f +62,4286,0,1,f +62,43722,0,1,f +62,43723,0,1,f +62,44676,0,2,f +62,44728,72,2,f +62,4600,0,1,f +62,54200,40,2,f +62,54200,0,2,f +62,56890,0,2,f +62,6014b,71,2,f +62,6141,72,4,f +62,6157,71,1,f +62,6232,72,1,f +62,74967,71,2,f +62,85984,0,4,f +62,92593,0,1,f +62,93273,72,1,f +63,2357,0,2,f +63,2408p01,42,1,f +63,2412a,0,2,f +63,2412a,15,10,f +63,2418a,42,5,f +63,2431,0,4,f +63,2434,0,4,f +63,2443,0,1,f +63,2444,15,2,f +63,2446,0,2,f +63,2447,42,2,f +63,2450,0,2,f +63,2458,15,2,f +63,2458,0,2,f +63,2460,0,1,f +63,2465,0,2,f +63,2466,42,2,f +63,2516,15,2,f +63,2540,0,2,f +63,2555,0,2,f +63,2569,42,2,f +63,3001,0,2,f +63,3004,15,6,f +63,3004,0,4,f +63,3020,0,6,f +63,3021,0,2,f +63,3022,0,4,f +63,3022,15,4,f +63,3023,0,12,f +63,3023,15,6,f +63,3024,0,4,f +63,3024,15,2,f +63,3029,0,1,f +63,3036,0,1,f +63,3039,15,2,f +63,3039,0,4,f +63,3040b,0,4,f +63,3068b,0,2,f +63,3069b,0,1,f +63,3069bp06,15,2,f +63,3069bp68,15,2,f +63,3298,0,2,f +63,3460,0,3,f +63,3479,0,6,f +63,3623,15,2,f +63,3626apr0001,14,2,f +63,3641,0,8,f +63,3660,0,4,f +63,3666,0,4,f +63,3700,0,2,f +63,3709,0,1,f +63,3710,15,1,f +63,3710,0,3,f +63,3747a,15,2,f +63,3795,15,2,f +63,3838,0,2,f +63,3839b,0,8,f +63,3933,0,2,f +63,3934,0,2,f +63,3935,0,1,f +63,3936,0,1,f +63,3937,0,4,f +63,3956,0,2,f +63,4032a,0,2,f +63,4032a,15,2,f +63,4081b,0,2,f +63,4083,0,1,f +63,4162,0,2,f +63,4229,15,6,f +63,4275b,0,4,f +63,4275b,15,4,f +63,4276b,15,2,f +63,4276b,0,4,f +63,4285a,0,1,f +63,4476b,0,2,f +63,4477,0,3,f +63,4531,15,2,f +63,4591,15,2,f +63,4596,15,2,f +63,4600,0,4,f +63,4623,0,2,f +63,4624,15,8,f +63,4735,0,2,f +63,4859,0,2,f +63,4859,15,2,f +63,6019,0,2,f +63,6023,15,1,f +63,6141,42,2,f +63,6141,15,8,f +63,970x026,15,2,f +63,973p51c01,15,2,f +64,2335pr02,15,1,f +64,2412b,0,5,f +64,2431px13,4,1,f +64,2431px8,1,1,f +64,2446,1,1,f +64,2446,4,1,f +64,2447,41,2,f +64,3004,1,1,f +64,3004,14,1,f +64,3006,15,1,f +64,3010,15,2,f +64,3010a,0,2,f +64,3010apr014,0,2,f +64,3010apr015,1,2,f +64,3010px2,1,1,f +64,30180,7,1,f +64,30182pb01,15,1,f +64,30182pb02,0,1,f +64,3023,4,1,f +64,30278c01,15,1,f +64,30278c01,4,1,f +64,3037pb006,0,1,f +64,3039,4,1,f +64,3039pb020,0,1,f +64,3062b,34,1,f +64,3062b,36,1,f +64,3298,0,1,f +64,3626bp04,14,1,f +64,3626bp05,14,2,f +64,3823,41,2,f +64,3829c01,7,1,f +64,3829c01,0,1,f +64,3901,0,1,f +64,3941,15,1,f +64,3941pb01,15,1,f +64,4032a,4,1,f +64,4070,4,2,f +64,4286,4,2,f +64,4488,4,1,f +64,4589,7,6,f +64,4596,15,1,f +64,4599a,7,1,f +64,4600,0,2,f +64,4629c01,1,1,f +64,55295,8,1,f +64,55296,8,1,f +64,55297,8,1,f +64,55298,8,1,f +64,55299,8,1,f +64,55300,8,1,f +64,6014a,15,13,f +64,6015,0,13,f +64,6140,0,2,f +64,63965,15,1,f +64,71137,383,2,f +64,970c00,1,1,f +64,970c00,4,1,f +64,970c00,0,1,f +64,973pr1156c01,1,1,f +64,973px28c01,15,1,f +64,973px36c01,4,1,f +64,973px9c01,0,1,f +65,2432,8,1,f +65,2526,15,1,t +65,2526,15,1,f +65,2540,7,1,f +65,3004,14,1,f +65,30132,8,1,f +65,30132,8,1,t +65,30147,8,1,f +65,30155,7,4,f +65,30165,8,2,f +65,30170,8,1,t +65,30170,8,1,f +65,30171,7,1,f +65,3020,0,1,f +65,3020,8,1,f +65,3023,0,2,f +65,3029,4,1,f +65,3483,0,4,f +65,3626bpa7,14,1,f +65,3665,8,2,f +65,3666,4,2,f +65,3829c01,15,1,f +65,4070,0,4,f +65,4599a,7,4,f +65,4599a,7,1,t +65,4854,8,1,f +65,4865a,47,1,f +65,6091,4,4,f +65,6141,47,2,f +65,6141,47,2,t +65,6216,4,1,f +65,6249,7,2,f +65,970c00,7,1,f +65,973pa7c01,19,1,f +67,2336,25,1,f +67,2432,0,1,f +67,2555,1,1,f +67,30031,0,1,f +67,3022,1,1,f +67,3022,7,1,f +67,30287p01,2,1,f +67,3626bp7b,14,1,f +67,3710,0,1,f +67,3794a,0,1,f +67,6019,0,2,f +67,6117,7,2,f +67,6120,7,2,f +67,6141,42,1,t +67,6141,42,2,f +67,72544,9999,1,t +67,970x026,2,1,f +67,973p7bc01,2,1,f +68,2412b,14,1,f +68,2466,40,1,f +68,2540,72,4,f +68,2723,0,1,f +68,2780,0,4,f +68,2780,0,1,t +68,3001,72,1,f +68,3020,0,1,f +68,3022,15,2,f +68,3023,71,2,f +68,3038,0,2,f +68,30383,71,2,f +68,3039,0,2,f +68,3040b,15,2,f +68,30602,15,2,f +68,3068b,272,4,f +68,3068b,15,1,f +68,32013,72,2,f +68,32039,0,3,f +68,32062,4,1,f +68,32064b,72,1,f +68,32174,72,1,f +68,32199,0,1,f +68,32524,15,1,f +68,32529,0,2,f +68,3475b,14,4,f +68,3626bpr0445,14,1,f +68,3700,72,2,f +68,3701,15,1,f +68,3705,0,1,f +68,3706,0,1,f +68,3747b,15,1,f +68,3795,0,4,f +68,40244,0,1,f +68,4070,15,4,f +68,40902,71,2,f +68,41532,0,4,f +68,43093,1,4,f +68,44126,15,2,f +68,4519,71,4,f +68,4588,72,2,f +68,4589,182,2,f +68,4589,14,4,f +68,4598,19,1,f +68,47306,15,2,f +68,47432,72,2,f +68,47452,72,2,f +68,47455,0,6,f +68,47753,272,1,f +68,48170,72,2,f +68,48172,0,1,f +68,48336,15,1,f +68,4868b,15,2,f +68,4869,71,2,f +68,53981,73,1,f +68,53989,135,4,f +68,54200,46,2,f +68,54271,148,1,f +68,54821,42,2,f +68,57906,272,4,f +68,57912c01,14,1,f +68,58765,14,1,f +68,6019,15,2,f +68,6153b,272,2,f +68,6153b,15,2,f +68,62712,72,3,f +68,6558,0,3,f +68,6636,15,1,f +68,78c06,179,2,f +68,8103stk01,9999,1,t +68,970c00,272,1,f +68,973pr1304c01,272,1,f +70,3045,1,10,f +70,3046a,1,5,f +70,3048a,1,3,f +70,3049b,1,1,f +70,962,1,1,f +73,10247,71,2,f +73,11153,14,4,f +73,11153,4,4,f +73,11203,72,2,f +73,11211,4,5,f +73,11458,72,2,f +73,11610,19,2,f +73,12825,72,2,f +73,13349,70,1,f +73,13770,297,1,f +73,14682,71,2,f +73,14769,297,2,f +73,15207,70,2,f +73,15535,72,4,f +73,2340,15,2,f +73,2412b,36,3,f +73,2412b,297,6,f +73,2412b,15,4,f +73,2412b,0,2,f +73,2460,72,2,f +73,2476a,28,2,f +73,2489,70,2,f +73,2654,72,6,f +73,2817,71,2,f +73,2926,0,1,f +73,298c02,4,1,f +73,298c02,14,1,t +73,298c02,4,1,t +73,298c02,14,1,f +73,3003,14,2,f +73,3010,0,1,f +73,30132,72,2,f +73,30132,72,1,t +73,30136,28,11,f +73,3020,19,2,f +73,3020,71,1,f +73,3021,71,2,f +73,3021,0,8,f +73,3023,28,4,f +73,3023,36,1,f +73,30237b,71,1,f +73,3030,70,2,f +73,3031,0,6,f +73,3033,15,1,f +73,3034,4,1,f +73,3034,70,4,f +73,30386,0,2,f +73,30414,72,5,f +73,30553,72,4,f +73,30553,71,2,f +73,30554a,71,2,f +73,30565,70,2,f +73,30602,0,2,f +73,3062b,34,2,f +73,3062b,47,2,f +73,3062b,4,1,f +73,3062b,71,4,f +73,3062b,14,1,t +73,3062b,14,1,f +73,3062b,4,1,t +73,3068b,15,1,f +73,3069bpr0101,71,2,f +73,3070bpr0007,71,2,f +73,3070bpr0007,71,1,t +73,3176,72,4,f +73,32016,70,4,f +73,32062,4,10,f +73,32064b,72,10,f +73,32072,0,2,f +73,32123b,14,1,t +73,32123b,14,1,f +73,32316,72,1,f +73,32530,72,1,f +73,3460,14,1,f +73,3623,70,1,f +73,3623,15,2,f +73,3626cpr0892,14,1,f +73,3626cpr1350,14,1,f +73,3626cpr1352,14,1,f +73,3626cpr1353,14,1,f +73,3660,0,2,f +73,3666,15,5,f +73,3678bpr0042,1,1,f +73,37,72,2,f +73,3700,0,4,f +73,3705,0,2,f +73,3710,19,4,f +73,3710,0,4,f +73,3710,72,4,f +73,3747b,72,1,f +73,3749,19,2,f +73,3794b,72,3,f +73,3795,72,1,f +73,3899,4,1,f +73,3899,14,1,f +73,3937,0,1,f +73,3937,71,1,f +73,3938,0,1,f +73,3940b,70,4,f +73,4032a,70,3,f +73,4032a,308,4,f +73,4032a,4,4,f +73,4070,15,2,f +73,40902,0,2,f +73,41532,0,8,f +73,41769,70,5,f +73,41770,70,5,f +73,4274,1,1,t +73,4274,1,4,f +73,4282,72,1,f +73,43722,28,1,f +73,43723,28,1,f +73,43898,70,1,f +73,4449,0,1,f +73,4460b,70,1,f +73,44728,71,1,f +73,4519,71,2,f +73,4528,0,2,f +73,4599b,4,2,t +73,4599b,14,1,f +73,4599b,4,1,f +73,4599b,14,2,t +73,4624,71,2,f +73,4738a,70,2,f +73,4739a,70,2,f +73,47456,70,1,f +73,48336,297,2,f +73,4865b,70,2,f +73,4871,70,6,f +73,53451,179,1,t +73,53451,179,8,f +73,55982,0,4,f +73,58176,36,1,f +73,59426,72,1,f +73,59895,0,2,f +73,59900,36,2,f +73,59900,72,5,f +73,60470a,4,2,f +73,60470a,0,2,f +73,60475a,15,4,f +73,60478,14,4,f +73,60583a,0,1,f +73,60800b,2,3,f +73,6081,15,3,f +73,60897,72,6,f +73,60897,71,2,f +73,6091,15,8,f +73,61072,179,3,f +73,61184,71,3,f +73,61252,0,2,f +73,6134,71,1,f +73,61409,0,1,f +73,61409,72,5,f +73,6141,4,4,f +73,6141,27,1,t +73,6141,179,2,t +73,6141,27,2,f +73,6141,179,6,f +73,6141,70,1,t +73,6141,297,6,f +73,6141,297,2,t +73,6141,4,1,t +73,6141,70,2,f +73,6180,0,2,f +73,6231,0,4,f +73,6233,70,1,f +73,62361,70,1,f +73,62711,308,1,f +73,63868,72,2,f +73,64644,308,4,f +73,64728,4,2,f +73,64951,70,1,f +73,6564,15,1,f +73,6565,15,1,f +73,6636,28,2,f +73,75c03,70,1,f +73,75c03,70,1,t +73,84943,148,2,f +73,85974,84,1,f +73,85984,72,2,f +73,87079,4,1,f +73,87083,72,1,f +73,87087,4,2,f +73,87407,71,1,f +73,87552,70,6,f +73,87580,28,1,f +73,88704,70,2,f +73,88930,308,1,f +73,92280,71,2,f +73,92593,72,1,f +73,92842,0,1,f +73,92946,72,2,f +73,93219pr0008,4,1,f +73,93274,72,1,f +73,94925,71,3,f +73,95228,34,2,f +73,95228,47,2,f +73,95674,70,1,f +73,970c00,272,1,f +73,970c00,308,1,f +73,970c00pr0616,308,1,f +73,973pr0040c01,1,1,f +73,973pr0050c01,70,1,f +73,973pr0060c01,272,1,f +73,973pr0070c01,326,1,f +73,98138,36,1,t +73,98138,36,2,f +73,99780,72,4,f +73,99781,71,4,f +74,2412b,0,2,f +74,2420,1,2,f +74,2431,73,1,f +74,2444,72,4,f +74,2445,72,3,f +74,3004,19,4,f +74,3005,72,2,f +74,3020,73,3,f +74,3020,1,4,f +74,3022,0,2,f +74,3022,19,2,f +74,3023,15,8,f +74,3023,36,2,f +74,3023,19,4,f +74,3024,1,1,t +74,3024,15,1,t +74,3024,1,4,f +74,3024,15,4,f +74,3034,15,1,f +74,3034,1,3,f +74,3036,15,1,f +74,30663,0,1,f +74,3068b,1,2,f +74,3068b,72,2,f +74,3069b,14,2,f +74,3069b,1,4,f +74,3460,1,2,f +74,3665,1,4,f +74,3666,72,3,f +74,3666,15,4,f +74,3673,71,1,t +74,3673,71,4,f +74,3710,14,3,f +74,3795,0,4,f +74,4081b,71,2,f +74,4085c,1,4,f +74,41669,47,2,f +74,43093,1,2,f +74,43722,1,1,f +74,43723,1,1,f +74,44728,15,2,f +74,48336,0,2,f +74,48729b,71,1,f +74,48729b,71,1,t +74,50950,15,2,f +74,54200,73,1,t +74,54200,73,2,f +74,54200,1,1,t +74,54200,182,2,f +74,54200,1,4,f +74,54200,182,1,t +74,56902,71,4,f +74,58181,47,1,f +74,60478,71,1,f +74,6091,19,4,f +74,61254,0,4,f +74,61409,72,2,f +74,6141,182,1,t +74,6141,71,1,t +74,6141,71,2,f +74,6141,182,2,f +74,6141,47,2,f +74,6141,47,1,t +74,61678,73,2,f +74,61678,1,2,f +74,63864,15,4,f +74,6541,1,2,f +74,6636,1,1,f +74,93274,4,1,f +76,2339,15,8,f +76,2357,15,12,f +76,2412b,71,60,f +76,2419,15,12,f +76,2420,19,36,f +76,2420,15,72,f +76,2431,70,16,f +76,2431,15,64,f +76,2436,15,8,f +76,2450,15,32,f +76,2453a,15,8,f +76,2454a,71,4,f +76,2456,71,13,f +76,2577,0,4,f +76,2730,15,28,f +76,2730,71,2,f +76,2780,0,52,f +76,2780,0,1,t +76,2877,15,240,f +76,3001,1,12,f +76,3001,15,8,f +76,3002,4,16,f +76,3002,15,8,f +76,3003,15,8,f +76,3003,14,69,f +76,30033,15,1,f +76,3004,19,102,f +76,3004,15,69,f +76,30044,15,48,f +76,3005,15,216,f +76,3006,15,5,f +76,3008,1,18,f +76,3009,15,22,f +76,3010,15,61,f +76,3020,70,4,f +76,3020,15,33,f +76,3021,15,32,f +76,3021,19,16,f +76,3021,14,4,f +76,3022,19,44,f +76,3022,15,8,f +76,3023,4,1,t +76,3023,73,24,f +76,3023,15,174,f +76,3023,19,54,f +76,3023,4,36,f +76,3023,320,8,f +76,3024,47,388,f +76,3024,19,44,f +76,3024,14,76,f +76,3024,73,60,f +76,3024,15,236,f +76,3028,70,2,f +76,3030,70,22,f +76,3030,15,4,f +76,3031,15,21,f +76,3032,15,9,f +76,3033,15,24,f +76,3034,15,18,f +76,3035,15,1,f +76,30363,72,4,f +76,30367b,14,9,f +76,30374,14,9,f +76,30414,14,4,f +76,30503,70,4,f +76,30505,0,8,f +76,3062b,15,276,f +76,3063b,15,36,f +76,3068b,15,70,f +76,3069b,19,48,f +76,3069b,15,54,f +76,3069b,73,40,f +76,3069b,70,36,f +76,3070b,71,40,f +76,3070b,73,2,t +76,3070b,71,2,t +76,3070b,15,4,t +76,3070b,73,8,f +76,3070b,15,32,f +76,3070b,70,4,f +76,3070b,70,2,t +76,32018,72,4,f +76,32028,15,46,f +76,32028,19,100,f +76,32324,0,4,f +76,3245b,15,39,f +76,32531,71,8,f +76,32532,15,1,f +76,32555,14,4,f +76,3307,15,24,f +76,3460,15,75,f +76,3460,0,24,f +76,3622,15,16,f +76,3623,15,70,f +76,3623,19,16,f +76,3623,14,4,f +76,3626b,14,6,f +76,3626b,15,16,f +76,3659,15,2,f +76,3660,15,76,f +76,3660,1,22,f +76,3665,15,8,f +76,3666,19,20,f +76,3666,15,17,t +76,3666,15,66,f +76,3666,320,24,f +76,3680,15,208,f +76,3700,1,8,f +76,3701,72,8,f +76,3702,4,4,f +76,3707,0,4,f +76,3710,15,92,f +76,3710,19,42,f +76,3710,73,12,f +76,3737,0,8,f +76,3794a,19,24,f +76,3794a,70,24,f +76,3794a,15,80,f +76,3795,4,8,f +76,3795,19,1,f +76,3795,15,40,f +76,3832,15,30,f +76,3857,1,6,f +76,3941,4,8,f +76,3958,4,1,f +76,3960,15,1,f +76,4032a,19,19,f +76,4070,15,156,f +76,4081b,19,104,f +76,4085c,15,40,f +76,4162,71,16,f +76,43337,15,36,f +76,43898,15,9,f +76,44375a,15,17,f +76,44567a,71,16,f +76,44568,71,8,f +76,44728,4,8,f +76,4477,15,22,f +76,4490,15,78,f +76,4510,19,27,f +76,4589,14,13,f +76,4589,15,16,f +76,4740,15,20,f +76,47457,1,8,f +76,47905,19,64,f +76,4864b,15,8,f +76,4865a,15,8,f +76,52107,0,24,f +76,54200,47,4,t +76,54200,47,16,f +76,59443,4,8,f +76,6019,14,8,f +76,60208,15,4,f +76,60471,15,32,f +76,60474,15,16,f +76,60479,15,12,f +76,6111,15,7,f +76,6112,71,4,f +76,6141,19,172,f +76,6141,19,4,t +76,6141,14,3,t +76,6141,14,14,f +76,6178,15,4,f +76,6180,15,8,f +76,6182,19,8,f +76,6231,15,108,f +76,6232,19,28,f +76,6259,15,32,f +76,6558,1,16,f +76,6587,72,4,f +76,6636,15,10,f +76,6636,70,4,f +76,73983,19,12,f +76,73983,15,36,f +80,22239,89,1,f +80,22667,5,1,t +80,22667,5,2,f +80,22670,334,1,t +80,22670,334,1,f +80,2343,15,1,f +80,2431,18,2,f +80,3010,15,8,f +80,30153,33,4,f +80,30153,45,1,f +80,30153,34,1,f +80,30217,13,1,f +80,3030,5,2,f +80,3062b,73,2,f +80,33061,41,2,f +80,33202px1,15,1,f +80,33209,15,1,f +80,33210,73,1,f +80,33211,1,2,f +80,33212,1,2,f +80,33243px1,15,4,f +80,3626b,47,2,f +80,3659,18,2,f +80,3673,7,1,t +80,3673,7,2,f +80,3741,10,1,t +80,3741,10,1,f +80,3742,13,3,f +80,3742,13,1,t +80,3794a,15,3,f +80,3832,18,1,f +80,4088,15,2,f +80,4237,47,1,f +80,4238,47,1,f +80,4429,45,1,f +80,45,334,1,f +80,4728,73,2,f +80,4735,15,2,f +80,4740,334,2,f +80,4740pb01,13,1,f +80,6111,18,4,f +80,6124,47,1,f +80,6141,46,2,f +80,6141,46,1,t +80,6171pr01,15,1,f +80,6176,1,1,f +80,6176,74,1,f +80,6184,45,2,f +80,6187,18,2,f +80,belvfair6,-1,1,f +80,belvfem26,-1,1,f +80,belvmale13,-1,1,f +80,belvskirt18,15,1,f +80,cloth5,15,1,f +82,2412b,14,1,f +82,30027b,73,2,f +82,30028,0,2,f +82,3021,14,1,f +82,3022,0,1,f +82,30602,1,1,f +82,30602pb016,0,1,f +82,32028,14,1,f +82,3710,0,2,f +82,3710,1,2,f +82,3795,72,1,f +82,4081b,14,2,f +82,43719,1,1,f +82,44674,1,1,f +82,4589,14,2,f +82,4600,71,1,f +82,6014b,73,2,f +82,6015,0,2,f +82,6141,14,1,t +82,6141,14,4,f +82,6157,72,1,f +83,2357,14,2,f +83,2376,0,1,f +83,2377,14,2,f +83,2412b,0,6,f +83,2412b,72,14,f +83,2420,0,2,f +83,2431,14,8,f +83,2432,71,3,f +83,2436,71,2,f +83,2460,0,1,f +83,2540,72,4,f +83,2555,14,9,f +83,2654,72,17,f +83,2780,0,7,f +83,2780,0,1,t +83,2819,71,1,f +83,2877,0,2,f +83,298c02,4,1,t +83,298c02,4,2,f +83,3001,14,2,f +83,3001,72,4,f +83,3004,14,11,f +83,3004,72,3,f +83,3005,72,2,f +83,3008,14,10,f +83,3009,14,8,f +83,3010,14,7,f +83,30165,14,2,f +83,3020,14,4,f +83,3020,72,3,f +83,3021,72,5,f +83,3022,14,4,f +83,3022,0,2,f +83,3023,14,5,f +83,3023,72,9,f +83,3024,14,2,f +83,30283,14,8,f +83,30285,71,4,f +83,3030,14,4,f +83,3032,71,1,f +83,3034,14,2,f +83,30361c,72,8,f +83,30365,72,2,f +83,30366,40,2,f +83,30367a,14,4,f +83,3037,72,1,f +83,30383,14,4,f +83,30384,40,1,f +83,30386,14,1,f +83,30387,14,1,f +83,30388,14,3,f +83,30389b,14,1,f +83,3039,14,1,f +83,3040b,14,6,f +83,3040b,72,8,f +83,30414,14,14,f +83,3045,14,2,f +83,30553,72,5,f +83,30592,72,1,f +83,30602,40,5,f +83,3063b,14,6,f +83,3066,40,6,f +83,30663,0,1,f +83,3068b,14,3,f +83,32001,71,1,f +83,32013,14,1,f +83,32039,0,3,f +83,32054,0,4,f +83,32062,4,8,f +83,32064a,72,4,f +83,32123b,71,1,f +83,32123b,71,1,t +83,32474,0,1,f +83,3298,14,3,f +83,3460,14,2,f +83,3623,14,3,f +83,3660,14,4,f +83,3660,72,2,f +83,3665,14,4,f +83,3666,72,2,f +83,3673,71,7,f +83,3673,71,1,t +83,3684,14,2,f +83,3700,14,7,f +83,3702,14,8,f +83,3709,0,1,f +83,3710,72,11,f +83,3737,0,2,f +83,3747a,72,3,f +83,3749,19,2,f +83,3795,72,6,f +83,3832,14,1,f +83,3894,14,1,f +83,3937,14,2,f +83,3941,14,20,f +83,3941,4,3,f +83,4032a,0,2,f +83,4032a,72,5,f +83,4070,14,10,f +83,4081b,71,2,f +83,41532,0,4,f +83,4162,71,4,f +83,41747,14,1,f +83,41748,14,1,f +83,4175,0,2,f +83,41752,72,1,t +83,41764,14,1,f +83,41765,14,1,f +83,41855,14,1,f +83,42022,14,4,f +83,42023,14,2,f +83,4274,15,1,f +83,4274,15,1,t +83,4282,71,1,f +83,43093,1,5,f +83,43121,71,1,f +83,43337,14,3,f +83,43712,14,1,f +83,43713,72,1,f +83,43719,14,3,f +83,43903,0,2,f +83,44301a,0,4,f +83,44302a,72,20,f +83,44567a,71,16,f +83,44570,14,1,f +83,4460a,14,5,f +83,44728,14,1,f +83,4477,72,6,f +83,4519,71,8,f +83,45677,14,3,f +83,4589,0,1,f +83,4623,71,2,f +83,4740,14,1,f +83,47905,0,4,f +83,4854,72,3,f +83,4862,40,2,f +83,50373,14,1,f +83,54200,72,2,f +83,6040,72,2,f +83,6041,0,4,f +83,6081,14,10,f +83,6112,14,6,f +83,6134,71,2,f +83,6141,4,10,f +83,6141,4,1,t +83,6141,47,30,f +83,6141,47,1,t +83,6191,14,9,f +83,6192,14,4,f +83,6541,71,4,f +83,6636,14,1,f +83,73983,14,6,f +83,75535,14,2,f +83,75c25,0,2,f +83,78c14,0,2,f +83,85543,15,1,f +84,2420,1,2,f +84,2458,1,1,f +84,2555,0,5,f +84,2569,0,1,f +84,2569,42,4,f +84,2607,8,1,f +84,30014,8,2,f +84,30035,0,2,f +84,30121,8,1,f +84,30208,42,2,f +84,30209,8,2,f +84,3021,0,1,f +84,30211,8,4,f +84,30213,42,1,f +84,30214,42,1,f +84,3022,1,2,f +84,3023,1,1,f +84,3023,8,1,f +84,3023,0,1,f +84,30230px1,33,1,f +84,30230px2,33,1,f +84,3024,1,1,f +84,3039,0,2,f +84,3040b,0,2,f +84,3040p58,8,2,f +84,3068bpx7,0,1,f +84,3475b,0,2,f +84,3623,1,2,f +84,3626bpb0081,1,1,f +84,3665,1,2,f +84,3710,1,6,f +84,3794a,1,2,f +84,3795,0,1,f +84,3832,0,1,f +84,3937,0,2,f +84,3938,1,2,f +84,4081b,1,2,f +84,412,8,2,f +84,4229,0,1,f +84,4286,1,4,f +84,4287,0,4,f +84,4589,42,4,f +84,4595,0,1,f +84,4740,42,3,f +84,4746,0,1,f +84,4859,1,1,f +84,71603,8,1,f +84,73092,0,1,f +84,73590c02a,0,2,f +84,970x023,8,1,f +84,973pb0080c01,0,1,f +84,insectmask,0,1,f +86,2357,15,2,f +86,2357,4,2,f +86,3001,4,2,f +86,3001,15,3,f +86,3001,14,2,f +86,3002,4,2,f +86,3002,15,2,f +86,3003,14,1,f +86,3003,4,2,f +86,3003,15,4,f +86,3004,14,6,f +86,3004,47,3,f +86,3004,4,10,f +86,3004,15,12,f +86,3005,14,6,f +86,3005,15,12,f +86,3005,47,2,f +86,3005,4,10,f +86,3008,15,1,f +86,3009,4,3,f +86,3009,15,3,f +86,3010,15,10,f +86,3010,14,4,f +86,3010,4,6,f +86,3020,4,2,f +86,3021,4,2,f +86,3022,4,2,f +86,3031,4,2,f +86,3032,1,1,f +86,3034,4,2,f +86,3039,4,2,f +86,3039,47,1,f +86,3081cc01,1,2,f +86,3137c01,0,2,f +86,3297,4,2,f +86,3298,4,4,f +86,3299,4,1,f +86,3300,4,2,f +86,3622,4,4,f +86,3622,15,4,f +86,3622,14,2,f +86,3626apr0001,14,1,f +86,3633,14,2,f +86,3641,0,4,f +86,3660,4,2,f +86,3665,4,2,f +86,3710,4,2,f +86,3741,2,2,f +86,3742,1,1,t +86,3742,1,3,f +86,3742,14,3,f +86,3742,14,1,t +86,3823,47,1,f +86,3853,1,3,f +86,3854,14,6,f +86,3861b,14,1,f +86,3865,2,1,f +86,3901,0,1,f +86,3957a,1,1,f +86,6007,8,1,f +86,970c00,1,1,f +86,973c18,0,1,f +87,8887-1,9999,1,f +88,2356,1,1,f +88,2412b,15,4,f +88,2412b,0,1,f +88,2431pr0017,14,4,f +88,2432,7,4,f +88,2432,15,3,f +88,2446,15,1,f +88,2450,15,2,f +88,2454a,15,6,f +88,2458,15,2,f +88,2540,0,1,f +88,2555,7,4,f +88,2569,0,2,f +88,298c02,15,2,f +88,3001,15,11,f +88,3003,15,1,f +88,3004,4,2,f +88,3004,15,3,f +88,3004pb010,15,1,f +88,3005,33,2,f +88,3008,15,1,f +88,3010,15,2,f +88,3010,1,2,f +88,30151a,14,1,f +88,30151a,4,1,f +88,30157,8,1,f +88,30162,8,1,f +88,30180,15,2,f +88,3020,14,1,f +88,30208,334,1,f +88,30209,15,1,f +88,3022,7,3,f +88,3022,19,2,f +88,3023,4,1,f +88,3023,42,4,f +88,3023,15,4,f +88,30236,0,1,f +88,30249,15,2,f +88,30256,15,1,f +88,30259p01,14,1,f +88,3032,7,1,f +88,3034,0,1,f +88,30343c01,15,1,f +88,3039,7,2,f +88,3039,15,2,f +88,3039p15,15,1,f +88,3039pc1,0,1,f +88,3039pr0005,15,1,f +88,3040b,33,2,f +88,3068bpx27,15,3,f +88,3070b,36,1,f +88,3070b,34,1,t +88,3070b,36,1,t +88,3070b,34,1,f +88,3070bpr0007,7,1,f +88,3297,15,2,f +88,3623,7,2,f +88,3623,15,2,f +88,3626bp69,14,1,f +88,3626bpr0126,14,1,f +88,3626bpx24,14,1,f +88,3639,7,2,f +88,3640,7,2,f +88,3660,7,2,f +88,3665,0,2,f +88,3666,15,1,f +88,3679,7,1,f +88,3680,0,1,f +88,3700,14,1,f +88,3700,15,2,f +88,3706,0,1,f +88,3710,14,2,f +88,3710,15,1,f +88,3710,7,1,f +88,3788,14,2,f +88,3794a,7,1,f +88,3795,15,2,f +88,3829c01,15,1,f +88,3832,7,1,f +88,3833,15,1,f +88,3857,19,1,f +88,3867,19,1,f +88,3941,4,1,f +88,3941,14,1,f +88,3941,33,4,f +88,3943b,15,1,f +88,3958,1,1,f +88,3962b,0,1,f +88,3963,7,2,f +88,4032a,4,1,f +88,4081b,15,2,f +88,4083,15,1,f +88,4085c,0,2,f +88,4266,0,1,f +88,4274,7,5,f +88,4274,7,2,t +88,4286,15,2,f +88,4485,4,1,f +88,4598,0,1,f +88,4599a,15,1,f +88,4599a,4,2,f +88,4599a,0,1,f +88,4600,0,2,f +88,4729,15,1,f +88,4855,0,1,f +88,4859,15,2,f +88,4865a,15,3,f +88,4871,0,3,f +88,4872,33,2,f +88,55295,8,1,f +88,55296,8,1,f +88,55297,8,1,f +88,55298,8,1,f +88,55299,8,1,f +88,55300,8,1,f +88,6014,15,4,f +88,6015,0,4,f +88,6019,15,3,f +88,6020,0,1,f +88,6063,0,1,f +88,6126a,57,4,f +88,6140,15,2,f +88,6141,0,1,t +88,6141,33,2,t +88,6141,34,2,t +88,6141,33,3,f +88,6141,4,1,t +88,6141,4,2,f +88,6141,36,2,f +88,6141,34,2,f +88,6141,0,1,f +88,6141,36,2,t +88,6141,42,11,f +88,6141,42,4,t +88,6152,15,1,f +88,6152,33,1,f +88,6179,15,1,f +88,6212,1,1,f +88,6232,4,1,f +88,6583,7,1,f +88,75535,15,1,f +88,769,334,1,f +88,970c00,4,1,f +88,970c00,0,1,f +88,970x002,15,1,f +88,973pb0059c01,4,1,f +88,973px176c01,15,1,f +88,973px24c01,15,1,f +89,10247,71,10,f +89,11203,15,4,f +89,11211,15,4,f +89,11212,15,5,f +89,11214,72,2,f +89,11458,15,6,f +89,14718,15,1,f +89,14719,71,4,f +89,14719,15,2,f +89,15068,15,6,f +89,15100,0,6,f +89,15303,35,4,f +89,15307pr0001,308,1,f +89,15400,72,2,f +89,15573,72,3,f +89,21018,19,1,f +89,2357,15,2,f +89,2412b,0,5,f +89,2412b,72,6,f +89,2412b,71,2,f +89,2412b,15,18,f +89,2420,71,13,f +89,2420,15,4,f +89,2431,72,3,f +89,2431,71,3,f +89,2431,15,4,f +89,2431,41,4,f +89,2432,15,2,f +89,2432,0,2,f +89,2436,71,1,f +89,2444,15,2,f +89,2445,15,10,f +89,2445,71,2,f +89,2450,15,2,f +89,2454a,15,1,f +89,2524,70,1,f +89,2570,148,1,f +89,2639,72,1,f +89,2654,15,6,f +89,2654,46,2,f +89,2730,71,2,f +89,2780,0,52,f +89,2780,0,5,t +89,2825,71,4,f +89,3004,71,2,f +89,3004,15,7,f +89,3009,15,5,f +89,3010,15,3,f +89,3010,71,2,f +89,30150,14,1,f +89,30157,71,4,f +89,3020,72,10,f +89,3021,15,15,f +89,3022,71,2,f +89,3022,15,8,f +89,3022,72,6,f +89,3023,0,4,f +89,3023,72,17,f +89,3023,71,6,f +89,3023,15,14,f +89,3024,15,5,f +89,3024,47,2,f +89,3024,47,1,t +89,3024,71,2,t +89,3024,71,5,f +89,3024,15,1,t +89,3024,46,1,t +89,3024,46,1,f +89,30249,15,3,f +89,3029,15,2,f +89,3031,15,2,f +89,3032,15,1,f +89,3034,72,1,f +89,30363,0,1,f +89,30374,71,2,f +89,3039,0,1,f +89,30586,15,2,f +89,3069b,0,2,f +89,3069b,47,2,f +89,3069b,15,6,f +89,3069b,41,4,f +89,3070b,72,2,f +89,3070b,72,1,t +89,32000,15,8,f +89,32000,71,2,f +89,32028,71,3,f +89,32054,0,2,f +89,32059,15,2,f +89,32123b,14,2,t +89,32123b,14,12,f +89,32124,15,2,f +89,32140,71,4,f +89,32271,71,4,f +89,32278,15,2,f +89,32316,15,2,f +89,32316,72,4,f +89,3245b,71,3,f +89,3245c,15,2,f +89,32524,15,2,f +89,32524,71,2,f +89,32530,72,2,f +89,32556,19,2,f +89,3460,71,4,f +89,3460,15,7,f +89,3623,0,4,f +89,3623,15,8,f +89,3626bpr0854,78,1,f +89,3626cpr1368,78,1,f +89,3626cpr1659,78,1,f +89,3626cpr1661,78,1,f +89,3648b,72,2,f +89,3665,15,6,f +89,3666,15,8,f +89,3666,0,2,f +89,3666,71,3,f +89,3685,15,2,f +89,3703,72,2,f +89,3705,0,2,f +89,3710,71,3,f +89,3710,15,12,f +89,3710,72,2,f +89,3713,4,2,f +89,3713,4,1,t +89,3737,0,2,f +89,3794b,71,2,f +89,3795,71,6,f +89,3795,72,2,f +89,3795,15,2,f +89,3832,15,2,f +89,3894,72,4,f +89,3895,71,4,f +89,3895,0,1,f +89,3901,70,1,f +89,3957b,71,4,f +89,40490,15,5,f +89,4079b,0,3,f +89,41531,15,4,f +89,4161,15,1,f +89,4162,15,14,f +89,41677,72,4,f +89,41678,71,1,f +89,41769,15,3,f +89,41770,15,3,f +89,42003,0,2,f +89,42003,4,2,f +89,4274,71,1,t +89,4274,71,4,f +89,4286,15,2,f +89,43093,1,16,f +89,43857,14,3,f +89,43898,15,4,f +89,44224,72,2,f +89,44225,71,2,f +89,44294,71,2,f +89,44567a,0,2,f +89,4460b,15,5,f +89,44728,15,12,f +89,4477,15,2,f +89,4477,72,2,f +89,47397,15,3,f +89,47398,15,3,f +89,4740,15,4,f +89,47456,15,2,f +89,47905,4,2,f +89,48336,71,2,f +89,4865b,71,4,f +89,48729b,72,4,f +89,48729b,72,1,t +89,50304,15,1,f +89,50305,15,1,f +89,50950,71,4,f +89,51739,15,4,f +89,51739,71,1,f +89,52107,71,2,f +89,54200,0,1,t +89,54200,0,2,f +89,54200,15,2,t +89,54200,15,10,f +89,58247,0,2,f +89,59443,0,1,f +89,60208,15,2,f +89,60219,71,2,f +89,60470b,15,2,f +89,60471,0,2,f +89,60475b,71,4,f +89,60479,71,2,f +89,60481,71,4,f +89,60481,15,1,f +89,60581,0,1,f +89,6081,15,2,f +89,60849,71,2,f +89,60849,71,1,t +89,60897,71,6,f +89,61409,72,4,f +89,6141,25,1,t +89,6141,72,4,t +89,6141,25,2,f +89,6141,72,20,f +89,6178,15,4,f +89,6179,71,1,f +89,6231,71,4,f +89,62462,15,4,f +89,63864,15,8,f +89,64453,40,1,f +89,64567,71,4,f +89,64567,71,1,t +89,64803pr0002,28,2,f +89,64807,308,1,f +89,6541,15,40,f +89,6541,72,2,f +89,6541,71,8,f +89,6558,1,27,f +89,85984,15,8,f +89,87079,15,6,f +89,87079,71,6,f +89,87082,71,1,f +89,87083,72,4,f +89,87087,71,8,f +89,87580,0,1,f +89,88646,71,1,f +89,92099,72,1,f +89,92107,72,1,f +89,92280,71,2,f +89,92738,0,2,f +89,93095,0,2,f +89,93273,15,11,f +89,93604,15,2,f +89,96874,25,1,t +89,970c00,379,1,f +89,970c00pr0632,308,1,f +89,970c00pr0846,326,2,f +89,970c00pr0848,308,1,f +89,973c63,308,1,f +89,973pr3000c01,28,1,f +89,973pr3001c01,326,1,f +89,973pr3002c01,28,1,f +89,973pr3004c01,28,1,f +89,98138,46,3,f +89,98138,46,2,t +89,98138pr0010,179,1,t +89,98138pr0010,179,2,f +89,98138pr0018,84,1,t +89,98138pr0018,84,1,f +89,98313,72,4,f +89,98560,15,1,f +89,99206,15,2,f +89,99207,71,9,f +89,99207,4,4,f +91,2412b,0,1,f +91,2412b,71,2,f +91,2431,378,1,f +91,2431pr0036,70,1,f +91,2431pr0040,70,1,f +91,2431pr0058,378,1,f +91,2431pr0059,378,1,f +91,2432,70,2,f +91,2436,0,2,f +91,2437pr0004,378,1,f +91,2540,70,2,f +91,2780,0,2,f +91,2780,0,1,t +91,3001pr0002,70,2,f +91,30027b,70,2,f +91,30028,0,2,f +91,30033,0,1,f +91,3004,378,1,f +91,3005,378,1,f +91,3010,378,1,f +91,3020,378,1,f +91,3020,15,2,f +91,3020,70,1,f +91,3021,72,3,f +91,3022,1,1,f +91,3022,71,2,f +91,3023,378,2,f +91,3023,1,2,f +91,3031,71,1,f +91,3034,72,2,f +91,3037,378,1,f +91,30377,0,1,t +91,30377,0,2,f +91,30395,72,1,f +91,30414,71,1,f +91,3069b,378,1,f +91,3069bpr0125,378,1,f +91,32187,71,2,f +91,32530,0,1,f +91,3623,70,1,f +91,3666,70,2,f +91,3710,378,1,f +91,3710,72,2,f +91,3794b,71,2,f +91,3794b,72,4,f +91,4070,0,1,f +91,4081b,72,1,f +91,4083,0,1,f +91,4085c,0,2,f +91,4150,72,1,f +91,4589,4,1,f +91,4600,71,3,f +91,4624,70,2,f +91,4624,71,4,f +91,4740,14,4,f +91,47905,0,1,f +91,53989,70,2,f +91,53989,72,4,f +91,54200,15,1,f +91,54200,0,1,f +91,54200,0,1,t +91,54200,15,1,t +91,57515,72,1,f +91,59895,0,6,f +91,59900,182,2,f +91,60212,73,1,f +91,60212,378,2,f +91,61184,71,1,f +91,6126a,182,2,f +91,6141,0,1,f +91,6141,182,1,f +91,6141,47,3,f +91,6141,15,1,t +91,6141,0,1,t +91,6141,36,3,f +91,6141,15,1,f +91,6141,182,1,t +91,6141,36,1,t +91,6141,47,2,t +91,6157,0,1,f +91,63864,378,4,f +91,63864pr0004,71,1,f +91,63965,71,2,f +91,6541,70,2,f +91,6541,71,2,f +91,6541,0,2,f +91,72306,47,1,f +91,85940,0,1,f +91,85973,0,2,f +91,87079,378,1,f +91,87083,72,2,f +91,93274,378,2,f +91,93590,70,1,f +91,93598pr0008,70,1,f +92,122c02,0,2,f +92,2348b,41,2,f +92,2349a,15,1,f +92,2349a,0,1,f +92,2493a,0,6,f +92,2494,47,6,f +92,298c02,15,2,f +92,298c02,0,2,f +92,3002,15,1,f +92,3004,4,3,f +92,3004,15,35,f +92,3005,15,18,f +92,3008,0,2,f +92,3008,15,5,f +92,3009,0,1,f +92,3009,15,10,f +92,3009p18,15,1,f +92,3010,15,6,f +92,3010,0,1,f +92,3020,15,2,f +92,3020,0,4,f +92,3020,4,2,f +92,3021,0,2,f +92,3022,0,1,f +92,3023,15,6,f +92,3023,0,1,f +92,3024,0,2,f +92,3024,7,2,f +92,3024,36,2,f +92,3024,46,2,f +92,3024,33,8,f +92,3024,15,3,f +92,3027,0,1,f +92,3030,15,1,f +92,3033,0,3,f +92,3034,0,1,f +92,3039p23,15,1,f +92,3039p34,1,1,f +92,3040p33,0,1,f +92,3062b,4,2,f +92,3062b,0,4,f +92,3068b,4,1,f +92,3068b,0,1,f +92,3069b,15,1,f +92,3069b,0,3,f +92,3069bpb001,15,6,f +92,3070b,15,2,f +92,3070b,36,3,f +92,3070b,0,2,f +92,3176,0,1,f +92,3185,7,3,f +92,3185,4,2,f +92,3456,0,1,f +92,3461,0,1,f +92,3462,0,1,f +92,3464,4,4,f +92,3480,15,1,f +92,3481,0,1,f +92,3622,15,14,f +92,3622,4,1,f +92,3623,15,2,f +92,3624,15,1,f +92,3626apr0001,14,4,f +92,3641,0,4,f +92,3660,15,2,f +92,3665,0,1,f +92,3666,0,2,f +92,3676,15,2,f +92,3679,7,4,f +92,3680,0,4,f +92,3710,15,6,f +92,3710,0,5,f +92,3741,2,4,f +92,3742,4,12,f +92,3742,4,4,t +92,3788,15,2,f +92,3794a,7,2,f +92,3794a,0,2,f +92,3795,4,1,f +92,3821p02,15,1,f +92,3822p02,15,1,f +92,3823,41,2,f +92,3829c01,0,1,f +92,3832,4,1,f +92,3832,0,1,f +92,3832,15,1,f +92,3842b,15,3,f +92,3853,0,1,f +92,3855a,47,1,f +92,3861b,0,2,f +92,3899,14,1,f +92,3900,15,1,f +92,3935,15,2,f +92,3936,15,2,f +92,3937,4,2,f +92,3937,15,1,f +92,3938,4,2,f +92,3938,0,1,f +92,3942cpr01,15,1,f +92,3957a,15,1,f +92,3959,4,2,f +92,3962a,0,2,f +92,3963,15,1,f +92,4070,4,2,f +92,4070,0,2,f +92,4079,15,2,f +92,4081a,0,1,f +92,4081a,1,1,f +92,4084,0,4,f +92,4085b,15,4,f +92,4150p00,15,2,f +92,4162,4,2,f +92,4162,15,2,f +92,4175,15,1,f +92,4214,15,1,f +92,4216,15,12,f +92,4217,0,2,f +92,4218,47,3,f +92,4218,0,5,f +92,4219,0,1,f +92,4285a,15,1,f +92,4286,0,1,f +92,4286,15,2,f +92,4349,1,1,f +92,4460a,15,4,f +92,4478p02,7,1,f +92,4480c01,15,2,f +92,4589,0,2,f +92,4590,4,1,f +92,4596,4,1,f +92,4596,0,2,f +92,4599a,4,1,f +92,4625,0,1,f +92,4735,1,1,f +92,4855,15,1,f +92,4859,0,2,f +92,4864a,0,2,f +92,4871,15,1,f +92,4873,0,2,f +92,6141,36,4,f +92,6141,46,8,f +92,6141,34,2,f +92,6141,0,2,f +92,6386stk01,9999,1,t +92,73194c01,0,1,f +92,970c00,0,4,f +92,973pb0079c01,0,3,f +92,973pb0091c01,0,1,f +94,2340,0,4,f +94,2412b,25,1,f +94,2412b,72,2,f +94,2431,15,2,f +94,2431,27,17,f +94,2458,14,20,f +94,2466,40,1,f +94,2515,72,2,f +94,2540,72,9,f +94,2540,25,6,f +94,2555,72,12,f +94,2566,0,2,f +94,2654,15,3,f +94,2714a,0,12,f +94,2736,71,4,f +94,2780,0,5,t +94,2780,0,64,f +94,2825,0,4,f +94,2877,72,6,f +94,298c02,14,8,f +94,298c02,14,2,t +94,3001,14,5,f +94,3002,71,9,f +94,30043,71,6,f +94,3009,71,4,f +94,3010,19,1,f +94,30162,72,4,f +94,3020,0,1,f +94,3021,72,1,f +94,3022,71,10,f +94,3023,25,9,f +94,3023,4,4,f +94,3032,72,11,f +94,3034,0,17,f +94,3035,0,12,f +94,30359b,72,6,f +94,30363,72,1,f +94,30374,36,4,f +94,30386,71,2,f +94,3039,25,2,f +94,3039,0,14,f +94,30407,0,2,f +94,30414,0,2,f +94,30503,15,4,f +94,30541,0,2,f +94,30552,72,2,f +94,30602,25,2,f +94,30603,0,3,f +94,3062b,27,12,f +94,3068b,14,6,f +94,3069bpb078c,15,1,f +94,32000,72,4,f +94,32002,72,22,f +94,32013,0,4,f +94,32014,72,2,f +94,32015,0,1,f +94,32018,72,21,f +94,32034,4,4,f +94,32054,71,16,f +94,32056,0,4,f +94,32062,4,3,f +94,32064b,15,3,f +94,32064b,71,5,f +94,32123b,14,4,f +94,32123b,14,1,t +94,32138,0,4,f +94,32140,71,4,f +94,32174,27,2,f +94,32199,72,2,f +94,32524,71,6,f +94,32525,27,6,f +94,32526,27,4,f +94,32558pat0001,4,2,f +94,3460,15,2,f +94,3626bpr0463,14,1,f +94,3626bpr0895,15,2,f +94,3660,14,8,f +94,3673,71,1,t +94,3673,71,4,f +94,3700,0,19,f +94,3702,0,2,f +94,3705,0,4,f +94,3706,0,2,f +94,3707,0,3,f +94,3710,0,9,f +94,3713,4,2,t +94,3713,4,10,f +94,3747b,72,3,f +94,3749,19,18,f +94,3794a,71,6,f +94,3795,72,17,f +94,3894,14,12,f +94,3894,71,1,f +94,3937,14,8,f +94,3938,0,8,f +94,3941,25,2,f +94,3942c,0,4,f +94,3956,0,2,f +94,3959,72,2,f +94,4032a,71,4,f +94,4070,19,18,f +94,41239,0,12,f +94,4151b,0,4,f +94,41529,71,2,f +94,41532,0,12,f +94,4162,14,1,f +94,41677,0,4,f +94,41747,4,1,f +94,41748,4,1,f +94,41753,72,1,f +94,4185,27,8,f +94,41854,25,2,f +94,42022,0,6,f +94,42022,15,2,f +94,42022,14,4,f +94,42023,72,2,f +94,4274,1,3,t +94,4274,1,8,f +94,4286,72,2,f +94,4286,0,6,f +94,43093,1,2,f +94,4360,0,6,f +94,43857,4,4,f +94,44567a,14,2,f +94,44661,15,2,f +94,44676,0,4,f +94,44728,15,2,f +94,4519,71,8,f +94,45705,40,3,f +94,4588,135,2,f +94,4589,42,2,f +94,4589,36,8,f +94,4598,19,1,f +94,4599a,0,2,f +94,4733,72,1,f +94,47406,72,2,f +94,47432,72,2,f +94,47452,72,2,f +94,47455,0,6,f +94,47456,297,1,f +94,47458,0,2,f +94,47757,0,2,f +94,47759,0,2,f +94,48170,72,2,f +94,48172,0,1,f +94,48288,0,2,f +94,48336,71,3,f +94,4868b,15,2,f +94,48729a,72,24,f +94,50745,15,2,f +94,50747,42,4,f +94,50923,72,3,f +94,50943,71,6,f +94,53550,0,2,f +94,53982,85,1,f +94,53984,297,2,f +94,53984,135,6,f +94,53984,134,12,f +94,53988,134,6,f +94,53988,135,3,f +94,53988pat02,0,1,f +94,53989,135,6,f +94,53989,134,12,f +94,53989,297,10,f +94,54200,36,2,f +94,54200,25,2,f +94,54271,148,2,f +94,54821,182,6,f +94,57028c01,71,1,f +94,57568,135,2,f +94,57796,72,1,f +94,57906,27,4,f +94,57906,25,2,f +94,57908,72,2,f +94,57910,72,5,f +94,59230,15,1,t +94,59230,15,4,f +94,59426,72,7,f +94,59521,27,4,f +94,60115,15,2,f +94,6019,15,2,f +94,6019,4,4,f +94,6111,0,10,f +94,6126a,57,2,f +94,6141,42,3,t +94,6141,36,21,f +94,6141,36,3,t +94,6141,42,10,f +94,6153b,15,2,f +94,6232,72,1,f +94,6239,72,3,f +94,6239,15,2,f +94,6266,15,4,f +94,6541,72,2,f +94,6558,0,2,f +94,6587,72,5,f +94,78c09,179,2,f +94,85544,10,4,f +94,970c00,288,1,f +94,973pr1303c01,288,1,f +95,46281,57,1,f +95,47912,45,1,f +96,3037,335,50,f +98,2446,0,1,f +98,3626bpr0001,14,1,f +98,87079pb013,71,1,f +99,3023a,14,50,f +99,3024,14,30,f +99,728,7,1,f +99,729,47,1,f +100,14769,297,1,f +100,18868a,41,1,f +100,19981pr0033,41,1,f +100,2540,1,1,f +100,2540,15,2,f +100,3023,47,1,f +100,3023,1,2,f +100,30374,297,1,f +100,30602,40,1,f +100,30663,0,2,f +100,3069b,15,1,f +100,3626cpr1570,179,1,f +100,3709,15,2,f +100,3794b,15,3,f +100,3941,41,1,f +100,4032a,15,1,f +100,4032a,1,1,f +100,44676,15,2,f +100,47456,15,1,f +100,47905,71,1,f +100,48729b,0,1,f +100,48729b,0,1,t +100,54200,1,2,f +100,54200,1,1,t +100,54200,71,2,f +100,54200,71,1,t +100,6141,182,1,f +100,6141,41,1,t +100,6141,41,2,f +100,6141,182,1,t +100,63868,15,2,f +100,64567,297,2,f +100,64567,297,1,t +100,93058b,297,2,f +100,93058b,297,2,t +100,970c00pr0777,71,1,f +100,973pr2858c01,71,1,f +100,98132,179,1,f +100,98133pr0013,179,1,f +100,99780,15,1,f +101,2420,72,2,f +101,3002,27,1,f +101,30027b,71,2,f +101,30028,0,2,f +101,3020,72,1,f +101,3022,72,1,f +101,3023,27,2,f +101,3023,72,2,f +101,3069b,27,5,f +101,3623,0,1,f +101,3623,27,1,f +101,3710,72,1,f +101,3794b,27,4,f +101,3795,0,1,f +101,4070,0,2,f +101,41854,27,1,f +101,4624,71,2,f +101,50943,72,1,f +101,50946p01,0,1,f +101,50947,27,2,f +101,54200,27,2,f +101,54200,27,1,t +101,59895,0,2,f +101,60470a,0,1,f +101,6091,27,5,f +101,6157,0,2,f +102,18746pr0001,272,1,f +102,2446,26,1,f +102,3626bpr0732,14,1,f +102,46304,15,1,f +102,88646,0,1,f +102,970c00pr0182,15,1,f +102,973pr1700c01,15,1,f +103,2357,2,2,f +103,2357,6,3,f +103,2362b,15,1,f +103,2362b,6,1,f +103,2413,8,2,f +103,2431,462,2,f +103,2431,484,1,f +103,2432,73,2,f +103,2456,15,2,f +103,2456,1,2,f +103,2456,4,2,f +103,2456,71,2,f +103,2456,14,2,f +103,3001,2,4,f +103,3001,0,9,f +103,3001,4,14,f +103,3001,14,14,f +103,3001,25,4,f +103,3001,22,1,f +103,3001,462,2,f +103,3001,71,4,f +103,3001,5,1,f +103,3001,484,2,f +103,3001,1,14,f +103,3001,15,14,f +103,3002,14,8,f +103,3002,6,2,f +103,3002,25,2,f +103,3002,2,2,f +103,3002,5,1,f +103,3002,1,8,f +103,3002,379,2,f +103,3002,0,6,f +103,3002,15,10,f +103,3002,484,3,f +103,3002,71,2,f +103,3002,4,8,f +103,3003,36,12,f +103,3003,5,4,f +103,3003,71,6,f +103,3003,14,27,f +103,3003,25,6,f +103,3003,4,30,f +103,3003,33,12,f +103,3003,2,18,f +103,3003,15,30,f +103,3003,1,30,f +103,3003,0,18,f +103,3003pe2,4,1,f +103,3004,14,28,f +103,3004,2,22,f +103,3004,71,8,f +103,3004,15,40,f +103,3004,0,28,f +103,3004,1,36,f +103,3004,72,10,f +103,3004,25,8,f +103,3004,4,34,f +103,3004pt6,8,1,f +103,3005,1,30,f +103,3005,15,28,f +103,3005,4,30,f +103,3005,2,14,f +103,3005,33,4,f +103,3005,0,26,f +103,3005pe1,14,4,f +103,3005pe1,4,1,f +103,3005pe2,72,2,f +103,3005pe3,72,2,f +103,3005px2,14,2,f +103,3007,14,2,f +103,3007,1,2,f +103,3007,4,2,f +103,3007,15,2,f +103,3008,71,2,f +103,3008,484,1,f +103,3009,15,4,f +103,3009,4,4,f +103,3009,14,2,f +103,3009,1,4,f +103,3010,4,6,f +103,3010,15,6,f +103,3010,14,6,f +103,3010,0,4,f +103,3010,25,2,f +103,3010,72,2,f +103,3010,2,4,f +103,3010,1,6,f +103,3010p01,14,2,f +103,30136,7,4,f +103,30137,7,2,f +103,30165,8,1,f +103,3020,1,2,f +103,3020,71,2,f +103,3020,14,2,f +103,3020,4,2,f +103,3020,2,2,f +103,3020,15,4,f +103,3020,25,2,f +103,3020,0,2,f +103,3021,25,2,f +103,3021,4,2,f +103,3021,15,4,f +103,3021,462,2,f +103,3021,14,2,f +103,3021,1,4,f +103,3021,72,2,f +103,3021,2,2,f +103,3022,4,4,f +103,3022,14,4,f +103,3022,72,2,f +103,3022,0,2,f +103,3022,2,2,f +103,3022,366,1,f +103,3022,27,3,f +103,3022,15,6,f +103,3022,1,6,f +103,3032,73,2,f +103,3032,6,2,f +103,3034,1,2,f +103,3034,4,2,f +103,3034,14,2,f +103,3034,15,2,f +103,30363,8,2,f +103,30363,27,1,f +103,30363,1,1,f +103,3037,4,8,f +103,3038,8,2,f +103,3038,7,2,f +103,3039,47,2,f +103,3039,15,4,f +103,3039,36,2,f +103,3039,4,6,f +103,3039,33,4,f +103,3039,22,1,f +103,3039,72,2,f +103,3039,1,4,f +103,3040b,1,4,f +103,3040b,71,2,f +103,3040b,14,2,f +103,3040b,15,4,f +103,3040b,27,4,f +103,3040b,4,4,f +103,3040b,272,2,f +103,3040b,72,2,f +103,3040b,42,1,f +103,3040b,25,4,f +103,3040b,2,2,f +103,3041,7,1,f +103,3041,4,2,f +103,3043,1,2,f +103,3043,4,2,f +103,3048c,7,1,f +103,3049b,8,1,f +103,3049b,15,1,f +103,30503,27,1,f +103,30503,6,1,f +103,30565,4,1,f +103,30602,379,2,f +103,30602,1,1,f +103,3062b,41,3,f +103,3065,33,14,f +103,3065,47,8,f +103,3065,36,14,f +103,3065,52,2,f +103,3066,36,2,f +103,3185,4,2,f +103,3245b,14,2,f +103,3245b,8,1,f +103,3298,272,1,f +103,3298,3,1,f +103,3298,1,4,f +103,3298,4,4,f +103,3298,15,4,f +103,3300,2,2,f +103,3307,7,1,f +103,3622,2,2,f +103,3622,72,2,f +103,3622,462,2,f +103,3659,14,1,f +103,3659,25,1,f +103,3660,1,2,f +103,3660,4,2,f +103,3660,15,2,f +103,3665,72,2,f +103,3665,25,4,f +103,3665,14,2,f +103,3665,15,4,f +103,3665,1,4,f +103,3665,71,2,f +103,3665,2,2,f +103,3665,4,4,f +103,3678a,15,1,f +103,3678b,6,1,f +103,3688,0,1,f +103,3710,15,2,f +103,3710,462,3,f +103,3710,1,2,f +103,3710,4,2,f +103,3747a,1,2,f +103,3747a,3,1,f +103,3795,15,2,f +103,3795,1,2,f +103,3795,4,2,f +103,3795,14,2,f +103,3832,1,1,f +103,3861b,1,1,f +103,3941,320,2,f +103,3957a,47,1,f +103,3957a,19,3,f +103,3957a,1,2,f +103,4070,379,3,f +103,4070,73,2,f +103,4150,462,3,f +103,41747,6,1,f +103,41748,6,1,f +103,4175,7,2,f +103,4175,8,1,f +103,41767,27,1,f +103,41768,27,1,f +103,41769,27,1,f +103,41770,27,1,f +103,41854,135,2,f +103,41854,27,1,f +103,41855,27,2,f +103,41855,15,3,f +103,41862,25,1,f +103,42022,462,1,f +103,42022,40,1,f +103,42022,8,5,f +103,42023,27,2,f +103,4286,1,4,f +103,4286,379,1,f +103,4286,19,1,f +103,4286,4,4,f +103,4286,72,2,f +103,4286,15,4,f +103,4287,72,2,f +103,4287,1,4,f +103,4287,4,4,f +103,4287,15,4,f +103,43713,2,1,f +103,43898,14,1,f +103,4490,8,1,f +103,4495b,14,1,f +103,4495b,15,2,f +103,4589,379,1,f +103,4589,1,3,f +103,4589,135,1,f +103,4589,25,2,f +103,4727,10,1,f +103,4728,14,2,f +103,4740,4,4,f +103,4859,1,1,f +103,4859,2,1,f +103,4859,71,2,f +103,4859,7,1,f +103,4859,15,1,f +103,4864b,19,2,f +103,4864b,14,2,f +103,4865a,6,4,f +103,6091,320,1,f +103,6091,7,2,f +103,6182,6,2,f +103,6182,0,1,f +103,6215,15,1,f +103,6215,6,1,f +103,6636,462,1,f +103,6636,320,1,f +103,6636,27,2,f +103,73983,15,2,f +105,2397,25,1,f +105,2412b,0,2,f +105,2419,7,1,f +105,2444,0,1,f +105,2452,0,1,f +105,2654,7,2,f +105,3003,1,1,f +105,30031,0,1,f +105,30094,0,1,f +105,30193,8,1,t +105,30193,8,1,f +105,3021,1,1,f +105,30219,0,1,f +105,3022,1,2,f +105,3023,1,1,f +105,3023,0,1,f +105,30287p01,2,1,f +105,30322,1,1,f +105,3039,0,1,f +105,3039pc5,7,1,f +105,3613,15,1,f +105,3626bp7b,14,1,f +105,3794a,0,1,f +105,3849,0,1,f +105,3962b,8,1,f +105,4349,0,2,f +105,4596,25,2,f +105,4732,25,1,f +105,6019,1,3,f +105,6048a,0,1,f +105,6120,7,3,f +105,6579stk01,9999,1,t +105,970x026,2,1,f +105,973p7bc01,2,1,f +105,x772px2,47,1,f +106,17355pr0001,191,1,f +106,2447,40,1,f +106,3626cpr1470,14,1,f +106,72326pr0004,72,1,f +106,87993,25,1,f +106,88646,0,1,f +106,89522,179,1,f +106,970c00pr0707,71,1,f +106,973pr2739c01,71,1,f +110,3001apb01,1,3,f +110,3020,7,1,f +110,3020,1,3,f +110,3021,4,1,f +110,3021,1,1,f +110,3022,1,4,f +110,3023,1,4,f +110,3023,47,1,f +110,3034,7,2,f +110,3034,1,2,f +110,3139,0,3,f +110,3460,7,2,f +110,3464,4,3,f +110,3475a,7,2,f +110,3479,1,1,f +110,8,1,3,f +111,57518,0,60,f +111,57518,72,60,f +112,2357,72,6,f +112,2412b,1,1,f +112,2412b,15,2,f +112,2412b,320,7,f +112,2412b,71,8,f +112,2412b,0,2,f +112,2420,72,4,f +112,2431,0,1,f +112,2432,320,1,f +112,2444,71,2,f +112,2449,71,6,f +112,2449,72,6,f +112,2454a,71,2,f +112,2456,71,4,f +112,2460,71,1,f +112,2540,0,1,f +112,2569,143,2,f +112,2654,143,2,f +112,2730,71,4,f +112,298c02,71,1,t +112,298c02,71,2,f +112,3001,71,2,f +112,3002,71,3,f +112,3003,0,1,f +112,30031,0,1,f +112,3004,72,12,f +112,3004,15,3,f +112,3004,71,10,f +112,3004,0,9,f +112,3005,72,10,f +112,3007,0,1,f +112,3009,71,1,f +112,3010,71,1,f +112,3010,0,2,f +112,3010,72,1,f +112,30106,47,2,f +112,30152pat0003,0,1,f +112,3020,0,4,f +112,3021,71,2,f +112,3022,0,2,f +112,3022,320,2,f +112,3023,72,3,f +112,30237a,0,2,f +112,30237a,15,2,f +112,30271px6,15,1,f +112,30283,0,1,f +112,30285,71,4,f +112,30332,0,1,f +112,3034,15,2,f +112,30355,320,1,f +112,30356,320,1,f +112,30377,72,1,f +112,30377,72,1,t +112,30388,0,3,f +112,3039,0,2,f +112,30391,0,4,f +112,3040b,143,2,f +112,3040b,15,6,f +112,3040b,71,4,f +112,3040b,0,6,f +112,30414,71,1,f +112,30414,72,2,f +112,3048c,71,2,f +112,30505,0,2,f +112,30517,0,2,f +112,3065,143,2,f +112,3068b,71,4,f +112,3068bpb0070,72,1,f +112,3069bp80,15,1,f +112,3069bpb040,72,1,f +112,3069bpb091,0,1,f +112,32002,72,1,t +112,32002,72,4,f +112,32028,0,4,f +112,32054,15,2,f +112,32064b,320,6,f +112,32074c01,0,1,f +112,32138,0,2,f +112,32506,0,2,f +112,32558,0,6,f +112,3298,320,2,f +112,3298,15,2,f +112,3403c01,0,1,f +112,3460,0,1,f +112,3622,0,2,f +112,3622,71,2,f +112,3623,0,2,f +112,3626bpb0091,15,3,f +112,3659,0,1,f +112,3660,0,2,f +112,3660,320,1,f +112,3665,71,4,f +112,3666,0,2,f +112,3673,71,10,f +112,3673,71,1,t +112,3684,71,2,f +112,3684,15,4,f +112,3700,0,3,f +112,3700,15,4,f +112,3706,0,2,f +112,3710,0,4,f +112,3710,71,2,f +112,3710,72,4,f +112,3747b,15,2,f +112,3754,71,2,f +112,3794a,0,2,f +112,3795,72,7,f +112,3832,0,2,f +112,3894,71,2,f +112,3894,0,2,f +112,3937,0,2,f +112,3937,72,1,f +112,3938,71,2,f +112,3957a,143,4,f +112,40379,0,6,f +112,4079,15,1,f +112,4081b,0,2,f +112,4085c,72,2,f +112,40902,0,1,f +112,4151,72,1,f +112,41532,0,1,f +112,41539,143,2,f +112,41747,272,1,f +112,41747,320,1,f +112,41748,272,1,f +112,41748,320,1,f +112,41862,0,2,f +112,42003,71,2,f +112,4215b,36,1,f +112,4286,15,2,f +112,4286,71,4,f +112,4287,71,4,f +112,43710,320,1,f +112,43711,320,1,f +112,44036,0,2,f +112,4460b,71,8,f +112,4476b,72,2,f +112,4589,182,2,f +112,4623,0,2,f +112,4748stk01,9999,1,t +112,47843,379,1,f +112,47844pb01,47,1,f +112,47847pat0001,143,4,f +112,4854,0,1,f +112,4865a,36,3,f +112,6019,0,2,f +112,6082,71,3,f +112,6087,0,2,f +112,6111,71,2,f +112,6112,0,3,f +112,6112,71,1,f +112,6112,15,1,f +112,6117,143,3,f +112,6134,0,1,f +112,6141,36,2,f +112,6141,33,1,t +112,6141,33,2,f +112,6141,143,1,t +112,6141,143,6,f +112,6141,36,1,t +112,6538b,72,2,f +112,6583,320,5,f +112,76110c01,71,1,f +113,2412b,14,2,f +113,2419,2,1,f +113,2432,14,2,f +113,2458,4,1,f +113,2479,7,1,f +113,2625,4,2,f +113,3001,4,4,f +113,3001,383,1,f +113,3001,15,2,f +113,3001,0,2,f +113,3001,14,4,f +113,3001,2,2,f +113,3001,1,4,f +113,3002,14,2,f +113,3002,1,2,f +113,3002,4,2,f +113,3002,0,2,f +113,3002,15,2,f +113,3003,1,6,f +113,3003,0,2,f +113,3003,14,6,f +113,3003,4,6,f +113,3003,15,2,f +113,3004,1,20,f +113,3004,2,6,f +113,3004,4,20,f +113,3004,0,10,f +113,3004,14,20,f +113,3004,15,10,f +113,3005,14,12,f +113,3005,2,4,f +113,3005,4,12,f +113,3005,0,6,f +113,3005,1,12,f +113,3005,15,6,f +113,3005pe1,2,2,f +113,3008,14,2,f +113,3008,4,2,f +113,3009,1,2,f +113,3009,14,2,f +113,3009,15,2,f +113,3009,4,4,f +113,3010,0,6,f +113,3010,14,14,f +113,3010,4,14,f +113,3010,1,14,f +113,3010,15,6,f +113,3010p01,14,1,f +113,30161,47,1,f +113,3020,1,2,f +113,3021,2,2,f +113,3021,1,2,f +113,3022,1,2,f +113,3022,2,2,f +113,3030,1,1,f +113,3032,1,1,f +113,3040b,4,2,f +113,3062b,2,4,f +113,3062b,15,8,f +113,3149c01,4,1,f +113,3297,4,2,f +113,3297px3,4,2,f +113,3298,4,2,f +113,3298p12,4,2,f +113,3299,4,2,f +113,3300,4,2,f +113,3307,15,2,f +113,3334,2,1,f +113,3483,0,6,f +113,3622,2,2,f +113,3622,15,2,f +113,3622,14,2,f +113,3622,1,6,f +113,3622,4,6,f +113,3626bpr0001,14,1,f +113,3626bpx19,14,1,f +113,3633,15,2,f +113,3665,4,2,f +113,3666,1,2,f +113,3666,2,2,f +113,3679,7,1,f +113,3680,4,1,f +113,3710,1,2,f +113,3730,4,1,f +113,3731,4,1,f +113,3741,2,2,f +113,3742,4,3,f +113,3742,15,1,t +113,3742,4,1,t +113,3742,15,3,f +113,3747b,4,2,f +113,3795,1,2,f +113,3795,2,2,f +113,3823,41,1,f +113,3829c01,14,2,f +113,3853,1,2,f +113,3854,14,4,f +113,3856,2,4,f +113,3861b,14,1,f +113,3957a,15,1,f +113,3960p03,15,1,f +113,3962b,0,1,f +113,4070,4,2,f +113,4079,14,2,f +113,4175,14,2,f +113,4286,4,4,f +113,4287,4,4,f +113,4485,0,1,f +113,4485,4,1,f +113,4495b,2,1,f +113,4625,1,1,f +113,6041,0,1,f +113,6064,2,1,f +113,6248,15,6,f +113,6249,8,3,f +113,6564,4,1,f +113,6565,4,1,f +113,970c00,0,1,f +113,970c00,1,1,f +113,973p01c01,15,1,f +113,973px33c01,15,1,f +115,2335,4,1,f +115,2420,15,2,f +115,2421,0,1,f +115,2435,2,1,f +115,2456,71,1,f +115,2456,1,4,f +115,2456,14,3,f +115,2456,4,3,f +115,2456,15,4,f +115,2495,4,1,f +115,2496,0,1,f +115,2877,72,1,f +115,2926,0,4,f +115,3001,27,2,f +115,3001,15,6,f +115,3001,14,7,f +115,3001,4,6,f +115,3001,2,3,f +115,3001,1,6,f +115,3001,0,4,f +115,3001,25,4,f +115,3002,1,14,f +115,3002,0,7,f +115,3002,71,2,f +115,3002,2,7,f +115,3002,4,14,f +115,3002,14,14,f +115,3002,15,14,f +115,3003,0,8,f +115,3003,2,8,f +115,3003,4,16,f +115,3003,1,16,f +115,3003,71,2,f +115,3003,25,6,f +115,3003,27,8,f +115,3003,14,16,f +115,3003,15,16,f +115,3004,4,12,f +115,3004,27,4,f +115,3004,1,12,f +115,3004,71,8,f +115,3004,0,6,f +115,3004,14,12,f +115,3004,25,4,f +115,3004,15,12,f +115,3004,2,6,f +115,30044,15,2,f +115,30046,0,2,f +115,3005,14,8,f +115,3005,4,8,f +115,3005,0,4,f +115,3005,15,8,f +115,3005,2,4,f +115,3005,1,8,f +115,3005pe1,14,2,f +115,3005pe1,15,6,f +115,3007,4,2,f +115,3007,14,2,f +115,3007,15,2,f +115,3007,1,2,f +115,3008,1,4,f +115,3008,14,3,f +115,3008,4,3,f +115,3008,15,4,f +115,3009,4,6,f +115,3009,14,6,f +115,3009,15,7,f +115,3009,1,7,f +115,3010,14,3,f +115,3010,2,2,f +115,3010,15,3,f +115,3010,1,3,f +115,3010,0,2,f +115,3010,27,2,f +115,3010,25,2,f +115,3010,4,3,f +115,3020,14,2,f +115,3020,15,1,f +115,3020,1,3,f +115,3020,4,4,f +115,3020,71,1,f +115,3020,0,1,f +115,3021,14,1,f +115,3021,72,1,f +115,3021,15,2,f +115,3022,15,2,f +115,3022,0,2,f +115,3023,15,4,f +115,3023,0,3,f +115,3023,72,2,f +115,3023,1,2,f +115,3034,1,2,f +115,30363,1,2,f +115,30363,4,10,f +115,3037,4,8,f +115,3039,14,2,f +115,3039,47,2,f +115,3039,1,2,f +115,3039,4,6,f +115,3039,2,4,f +115,3040b,14,2,f +115,3040b,4,4,f +115,3040b,72,2,f +115,3040b,2,4,f +115,3041,4,1,f +115,3043,4,2,f +115,3044b,4,2,f +115,3062b,0,6,f +115,3062b,70,2,f +115,3065,47,2,f +115,3190,15,1,f +115,3298,0,8,f +115,33303,15,2,f +115,3403,15,1,f +115,3404,15,1,f +115,3471,2,1,f +115,3622,2,6,f +115,3622,27,2,f +115,3622,1,8,f +115,3622,14,8,f +115,3622,0,6,f +115,3622,15,8,f +115,3622,4,8,f +115,3623,1,2,f +115,3623,0,2,f +115,3633,0,2,f +115,3659,4,4,f +115,3660,4,2,f +115,3660,71,1,f +115,3660,0,4,f +115,3660,14,1,f +115,3665,14,2,f +115,3665,15,2,f +115,3665,4,8,f +115,3684,0,4,f +115,3684,2,2,f +115,3710,1,4,f +115,3794a,0,1,f +115,3795,71,2,f +115,3795,1,2,f +115,3795,4,4,f +115,3823,47,1,f +115,3829c01,15,2,f +115,3832,71,3,f +115,3839b,71,1,f +115,3857,10,1,f +115,3957a,15,1,f +115,4070,14,4,f +115,4130,15,1,f +115,4130,14,1,f +115,4131,0,2,f +115,4132,4,3,f +115,4132,1,2,f +115,4133,14,2,f +115,4133,15,3,f +115,4488,0,1,f +115,4600,71,2,f +115,4727,10,3,f +115,4728,14,2,f +115,6014b,15,4,f +115,6014b,14,4,f +115,6015,0,8,f +115,6141,25,1,t +115,6141,36,1,t +115,6141,25,2,f +115,6141,46,1,t +115,6141,46,2,f +115,6141,36,2,f +115,6216,2,2,f +116,10884,27,1,f +116,11213,322,1,f +116,13336pr0001,27,1,f +116,30176,2,1,f +116,3020,19,2,f +116,3040b,19,2,f +116,3062b,70,3,f +116,33291,5,2,f +116,3794a,19,1,f +116,3957a,70,1,f +116,4032a,14,1,f +116,87580,28,1,f +116,98138,15,2,f +118,3626bpx16,14,1,f +118,3901,0,1,f +118,970c00,0,1,f +118,973pb0005c01,15,1,f +119,132a,7,12,f +119,3001a,0,6,f +119,3001a,4,10,f +119,3002a,47,10,f +119,3002a,0,5,f +119,3003,0,2,f +119,3003,4,1,f +119,3005,4,2,f +119,3006,4,2,f +119,3008a,4,2,f +119,3009a,4,4,f +119,3020,7,38,f +119,3020,15,1,f +119,3020,1,9,f +119,3021,1,8,f +119,3021,4,2,f +119,3022,7,9,f +119,3022,1,3,f +119,3022,15,2,f +119,3022,4,2,f +119,3023a,0,4,f +119,3023a,1,8,f +119,3023a,7,2,f +119,3023a,4,6,f +119,3023a,47,2,f +119,3024,4,12,f +119,3024,1,4,f +119,3035,15,6,f +119,3037,4,2,f +119,3045,4,2,f +119,3048a,1,2,f +119,3062a,4,1,f +119,3065,0,8,f +119,3065,4,29,f +119,3065,47,16,f +119,650,79,1,f +119,7039,4,12,f +119,7049a,15,6,f +123,10247,0,2,f +123,11203,19,1,f +123,11211,15,8,f +123,11253,25,2,f +123,11477,26,2,f +123,11609,297,2,f +123,11618,26,1,f +123,11640pr0002,85,1,f +123,11816pr0001,84,1,f +123,11816pr0022,78,1,f +123,11833,30,1,f +123,11833,47,1,f +123,13770,297,1,f +123,14418,71,1,f +123,14716,15,4,f +123,14718,15,2,f +123,14719,15,3,f +123,14769,0,3,f +123,14769,297,1,f +123,14769pr1020,297,1,f +123,15395,26,1,f +123,15470,29,1,f +123,15573,0,1,f +123,15573,297,1,f +123,15677,26,1,f +123,18674,15,1,f +123,18674,72,1,f +123,18674,70,1,f +123,18854,52,1,f +123,18854,45,1,f +123,20482,297,2,f +123,21008,85,1,f +123,21008,26,1,f +123,21008,15,1,f +123,22667,26,1,f +123,2343,47,2,f +123,2357,15,3,f +123,2412b,297,4,f +123,2412b,85,4,f +123,2420,0,1,f +123,2431,191,2,f +123,2431,26,8,f +123,2431,19,8,f +123,2431,15,1,f +123,2431,85,4,f +123,2449,15,4,f +123,2450,85,1,f +123,2453b,15,3,f +123,2454a,15,1,f +123,2456,70,1,f +123,2488,0,1,f +123,2780,0,1,f +123,3002,15,2,f +123,3003,15,1,f +123,3003,0,1,f +123,3004,15,16,f +123,3004,0,3,f +123,3004,322,1,f +123,3005,47,6,f +123,3005,41,4,f +123,3005,15,13,f +123,3008,15,2,f +123,3009,15,6,f +123,3010,15,7,f +123,3010,31,2,f +123,30153,42,1,f +123,30176,2,2,f +123,3020,26,5,f +123,3020,322,1,f +123,3021,0,6,f +123,3021,85,5,f +123,3022,0,2,f +123,3022,31,2,f +123,30222,42,1,f +123,3023,0,3,f +123,3023,85,12,f +123,3023,15,13,f +123,3023,26,5,f +123,3023,41,5,f +123,3023,322,1,f +123,3024,15,6,f +123,3024,297,3,f +123,3024,19,2,f +123,3030,19,1,f +123,3031,71,1,f +123,3032,322,3,f +123,3033,15,1,f +123,3036,19,1,f +123,30586,15,4,f +123,3065,47,9,f +123,3065,33,3,f +123,3068b,19,2,f +123,3068b,191,2,f +123,3068b,0,1,f +123,3068bpr0255,15,1,f +123,3069b,19,3,f +123,3069b,322,2,f +123,3069b,191,1,f +123,3069b,26,5,f +123,3069b,15,1,f +123,3070b,15,1,f +123,3070b,26,2,f +123,3070b,19,5,f +123,3245b,15,1,f +123,33051,4,1,f +123,33125,484,1,f +123,33172,25,1,f +123,33183,10,1,f +123,33291,10,8,f +123,33291,70,1,f +123,33291,31,1,f +123,33291,26,9,f +123,33291,191,5,f +123,3460,70,1,f +123,3460,15,5,f +123,3623,0,1,f +123,3623,85,1,f +123,3659,15,1,f +123,3660,15,1,f +123,3660,0,1,f +123,3665,15,2,f +123,3666,0,1,f +123,3666,85,8,f +123,3666,26,1,f +123,3700,15,1,f +123,3710,26,5,f +123,3710,15,5,f +123,3710,0,1,f +123,3747a,0,1,f +123,3795,19,2,f +123,3795,0,1,f +123,3795,15,1,f +123,3830,15,2,f +123,3831,15,2,f +123,3940b,0,1,f +123,3941,85,1,f +123,3960,191,1,f +123,4032a,85,2,f +123,4032a,15,1,f +123,4150,72,6,f +123,4215b,15,1,f +123,4346,47,1,f +123,4477,15,2,f +123,4528,179,1,f +123,4533,41,2,f +123,4533,15,1,f +123,4536,15,2,f +123,4595,0,1,f +123,4599b,71,1,f +123,46212,41,6,f +123,4740,0,3,f +123,48092,15,1,f +123,48336,0,3,f +123,4865a,40,1,f +123,4865a,0,2,f +123,54200,46,12,f +123,57894,15,5,f +123,57895,47,5,f +123,57895,41,1,f +123,59349,47,3,f +123,59900,52,1,f +123,59900,70,2,f +123,59900,34,1,f +123,59900,0,2,f +123,6003,15,1,f +123,60470a,0,3,f +123,60596,15,1,f +123,60596,0,1,f +123,60616a,47,1,f +123,6091,322,2,f +123,6141,42,1,f +123,6141,70,2,f +123,6141,85,13,f +123,6141,15,3,f +123,6141,41,3,f +123,6141,47,1,f +123,6148,2,2,f +123,6231,0,1,f +123,63965,0,1,f +123,64647,57,1,f +123,6541,0,1,f +123,6628,0,1,f +123,6636,26,8,f +123,6636,19,10,f +123,73983,15,2,f +123,85984,191,2,f +123,86208,72,1,f +123,87079,191,1,f +123,87079,26,2,f +123,87079,0,1,f +123,87087,15,3,f +123,87544,40,2,f +123,87552,47,5,f +123,87552,41,14,f +123,87580,26,5,f +123,88072,15,1,f +123,88930,31,1,f +123,91405,19,1,f +123,91405,10,1,f +123,92410,15,2,f +123,92438,19,1,f +123,92456pr0097c01,78,1,f +123,92593,71,2,f +123,92818pr0006c01,323,1,f +123,93088pr0003,15,1,f +123,93094,5,1,f +123,93160,15,1,f +123,93352,308,1,f +123,96874,25,1,t +123,97781,191,3,f +123,97782,191,3,f +123,97783,191,3,f +123,97784,191,3,f +123,97785,191,1,f +123,97787,191,1,f +123,97790,191,1,f +123,97791,191,1,f +123,97793,191,1,f +123,98138,78,1,f +123,98138,52,1,f +123,98138,46,6,f +123,98138,71,14,f +123,98138,36,1,f +123,98138pr0017,29,1,f +123,98138pr0049,0,2,f +123,99781,15,6,f +125,2460,4,1,f +125,2479,1,1,f +125,3001,4,1,f +125,3003,1,1,f +125,3020,4,1,f +125,3039,47,1,f +125,3298p17,14,1,f +125,3666,14,2,f +125,3747b,1,1,f +126,5306bc020,0,1,f +126,5306bc036,0,1,f +126,5306bc162,0,1,f +127,3001,4,1,f +127,3003,4,1,f +127,3020,1,1,f +127,3034,1,1,f +127,3039,4,1,f +127,3039,47,1,f +127,3297p02,1,1,f +127,3641,0,4,f +127,4600,0,2,f +127,4624,14,4,f +128,2412b,19,1,f +128,2420,462,2,f +128,2458,14,4,f +128,2654,0,1,f +128,2847c01,7,1,f +128,298c02,4,1,t +128,298c02,4,6,f +128,3001,7,2,f +128,3002,7,2,f +128,3003,4,2,f +128,3003,14,2,f +128,3004,8,4,f +128,3005,14,2,f +128,3007,14,2,f +128,3008,14,2,f +128,3009,14,2,f +128,3010,462,4,f +128,3010,14,2,f +128,3020,8,2,f +128,3020,462,2,f +128,3020,14,2,f +128,3021,14,2,f +128,3021,0,1,f +128,3022,0,2,f +128,3023,14,5,f +128,3023,0,2,f +128,3024,462,4,f +128,3031,14,2,f +128,3034,7,1,f +128,30355,14,1,f +128,30356,14,1,f +128,3039,14,3,f +128,3040b,14,2,f +128,32013,7,5,f +128,32015,8,2,f +128,32018,14,2,f +128,32039,0,2,f +128,32062,0,8,f +128,32064b,7,6,f +128,32126,7,2,f +128,32192,0,8,f +128,32449,0,4,f +128,3298,14,4,f +128,3648b,7,2,f +128,3660,8,2,f +128,3665,8,2,f +128,3665,14,2,f +128,3673,7,2,f +128,3679,7,2,f +128,3680,0,2,f +128,3700,8,4,f +128,3701,14,2,f +128,3702,14,2,f +128,3705,0,4,f +128,3706,0,2,f +128,3707,0,2,f +128,3710,19,3,f +128,3710,8,6,f +128,3710,4,1,f +128,3710,14,2,f +128,3713,7,6,f +128,3713,7,1,t +128,3737,0,2,f +128,3747a,8,2,f +128,3749,19,6,f +128,3795,8,2,f +128,3795,7,2,f +128,3894,14,2,f +128,3933,8,1,f +128,3934,8,1,f +128,4032a,19,1,f +128,4070,14,4,f +128,41669,40,6,f +128,41677,4,6,f +128,41753,8,1,t +128,42090,0,1,f +128,4286,8,4,f +128,4287,7,2,f +128,4287,8,2,f +128,43093,1,4,f +128,44292,7,1,f +128,44486c01,47,1,f +128,4519,7,1,f +128,45337c01,47,1,f +128,46224c01,47,1,f +128,4740,15,2,f +128,5306bc162,0,1,f +128,6112,8,2,f +128,6141,0,1,t +128,6141,15,1,t +128,6141,15,2,f +128,6141,0,2,f +128,6536,8,4,f +128,6541,7,2,f +128,6587,8,5,f +128,6632,7,4,f +128,6636,8,2,f +128,75c10,0,8,f +128,rb00166,4,1,f +128,rb00170,0,4,f +132,2348a,41,1,f +132,2349a,4,1,f +132,2412a,15,1,f +132,2420,15,2,f +132,2431,15,1,f +132,2436,15,1,f +132,2441,0,1,f +132,298c02,15,1,f +132,3005,15,2,f +132,3022,15,1,f +132,3023,15,2,f +132,3024,15,2,f +132,3024,46,2,f +132,3024,36,2,f +132,3623,4,2,f +132,3626apr0001,14,1,f +132,3641,0,4,f +132,3710,15,3,f +132,3788,15,2,f +132,3821,15,1,f +132,3822,15,1,f +132,3823,41,1,f +132,3829c01,4,1,f +132,4213,4,1,f +132,4315,4,2,f +132,4449,6,1,f +132,4530,0,1,f +132,4624,15,4,f +132,4864ap02,15,2,f +132,6141,33,2,f +132,970c00,15,1,f +132,973p24c01,15,1,f +136,2431,4,2,f +136,2444,4,2,f +136,2654,7,1,f +136,2712,0,1,f +136,2717,4,1,f +136,2780,0,6,f +136,2815,0,2,f +136,2819,7,1,f +136,2905,0,1,f +136,3021,4,1,f +136,3022,0,2,f +136,3024,36,1,f +136,3024,4,2,f +136,3024,34,1,f +136,3070b,36,1,f +136,3070b,36,1,t +136,3070b,4,3,f +136,3070b,34,1,t +136,3070b,4,1,t +136,3070b,34,1,f +136,32002,8,1,t +136,32002,8,2,f +136,3460,4,1,f +136,3623,0,3,f +136,3647,7,1,f +136,3648a,7,1,f +136,3650c,7,1,f +136,3665,0,2,f +136,3666,0,5,f +136,3700,0,1,f +136,3701,0,3,f +136,3703,0,2,f +136,3705,0,2,f +136,3707,0,2,f +136,3708,0,2,f +136,3710,4,4,f +136,3710,0,5,f +136,3713,7,3,f +136,3713,7,1,t +136,3749,7,6,f +136,3894,0,2,f +136,3937,0,2,f +136,3938,0,2,f +136,4019,7,2,f +136,4185,7,2,f +136,4265b,7,1,t +136,4265b,7,6,f +136,4287,0,2,f +136,4519,0,2,f +136,4856a,0,1,f +136,4859,4,1,f +136,4865a,0,2,f +136,6152,0,1,f +136,6536,7,7,f +136,6538b,7,4,f +136,6553,7,4,f +136,6558,0,4,f +136,6632,7,2,f +136,75c20,8,1,f +136,tech018,9999,1,f +137,10247,14,1,f +137,15068,0,1,f +137,2419,0,2,f +137,2817,71,2,f +137,3020,72,1,f +137,3022,14,3,f +137,3023,46,2,f +137,3034,71,1,f +137,30602,40,1,f +137,30602,0,1,f +137,3749,19,1,f +137,3832,0,1,f +137,41854,0,1,f +137,43719,0,1,f +137,43722,0,2,f +137,43723,0,2,f +137,4477,72,2,f +137,51739,0,1,f +137,54200,46,2,f +137,54200,0,1,t +137,54200,46,1,t +137,54200,0,2,f +137,54383,0,2,f +137,54384,0,2,f +137,58176,33,2,f +137,59900,71,1,f +137,61184,71,2,f +137,6126b,57,1,f +137,92593,0,2,f +137,93273,0,2,f +137,99206,0,1,f +138,3022,47,40,f +138,728,7,1,f +138,729,47,1,f +140,3001,14,3,f +140,3001,1,3,f +140,3001,4,3,f +140,3002,14,2,f +140,3003,1,2,f +140,3003,0,2,f +140,3003,14,2,f +140,3003,4,2,f +140,3003,15,2,f +140,3004,14,5,f +140,3004,1,5,f +140,3004,15,2,f +140,3004,0,4,f +140,3004,4,5,f +140,3005,4,2,f +140,3005,14,2,f +140,3005,1,2,f +140,3010,4,2,f +140,3020,4,1,f +140,3021,4,2,f +140,3022,4,1,f +140,3034,4,2,f +140,3039,47,2,f +140,3137c01,0,2,f +140,3641,0,4,f +140,3659,4,2,f +142,2335,4,5,f +142,2335,1,5,f +142,2412b,0,6,f +142,2458,15,4,f +142,2460,15,4,f +142,2465,15,2,f +142,2540,0,10,f +142,3003,15,8,f +142,3004,15,8,f +142,30043,4,4,f +142,3006,7,4,f +142,3010,15,4,f +142,3020,4,8,f +142,3021,0,16,f +142,3022,4,46,f +142,3023,7,12,f +142,3037,15,4,f +142,3039,15,8,f +142,30488,7,2,f +142,30488c01,15,5,f +142,30488c01,0,5,f +142,30489,2,10,f +142,30492,2,2,f +142,30493,0,2,f +142,3068b,2,46,f +142,32064b,7,16,f +142,3403c01,0,2,f +142,3626bp03,14,2,f +142,3626bp05,14,2,f +142,3626bpa3,14,2,f +142,3626bpb0103,14,2,f +142,3626bpx134,14,2,f +142,3626bpx33,14,2,f +142,3700,15,8,f +142,3710,15,4,f +142,3900,7,8,f +142,3901,19,2,f +142,3901,0,4,f +142,3901,6,4,f +142,3957a,15,4,f +142,41732,4,2,f +142,41733,4,2,f +142,4176,15,14,f +142,41819c01,2,2,f +142,4204,2,2,f +142,4476b,15,4,f +142,4477,15,10,f +142,4485,0,1,f +142,4485,15,1,f +142,4495b,4,4,f +142,4871,7,12,f +142,6636,15,2,f +142,71509,0,4,f +142,72824p01,15,2,f +142,72824pr02,15,1,f +142,78c11,15,4,f +142,970c00,1,5,f +142,970c00,15,5,f +142,970c00,8,1,f +142,970c00,7,1,f +142,973pb0165c01,0,1,f +142,973pb0166c01,0,1,f +142,973pb0167c01,4,1,f +142,973pb0168c01,15,1,f +142,973pb0169c01,4,1,f +142,973pb0170c01,15,1,f +142,973pb0171c01,4,1,f +142,973pb0172c01,15,1,f +142,973pb0173c01,4,1,f +142,973pb0174c01,15,1,f +142,973pb0175c01,4,1,f +142,973pb0176c01,15,1,f +142,x386,15,2,f +143,3708,0,1,f +143,44817,135,2,f +143,45274,297,1,f +143,48989,71,2,f +143,60176,57,1,f +143,60895,72,1,f +143,60896,72,2,f +143,60899,72,2,f +143,60900,72,1,f +143,60902,191,2,f +143,64251,191,2,f +143,87793pat0002,191,1,f +145,14417,72,2,f +145,14418,71,2,f +145,14704,71,3,f +145,15068,14,2,f +145,15456,71,2,f +145,22890,72,1,f +145,24246,15,1,t +145,24246,15,4,f +145,30165,14,1,f +145,3022,14,2,f +145,3023,14,2,f +145,3062b,85,2,f +145,3069bp02,71,1,f +145,3660,14,2,f +145,3710,14,1,f +145,3960,71,1,f +145,4032a,85,3,f +145,4083,71,1,f +145,44728,14,2,f +145,52107,14,2,f +145,54200,85,2,f +145,54200,85,1,t +145,59900,71,1,f +145,60474,14,2,f +145,60897,14,1,f +145,60897,72,2,f +145,6141,85,1,t +145,6141,71,2,f +145,6141,85,2,f +145,6141,71,1,t +145,63868,14,2,f +145,63965,71,1,f +145,86500,14,2,f +145,98138pr0027,15,1,t +145,98138pr0027,15,1,f +146,15712,70,1,f +146,22888,19,1,f +146,24183pr0002,484,1,f +146,3004,26,2,f +146,3062b,41,1,f +146,33183,10,1,f +146,3666,26,1,f +146,3700,15,1,f +146,3749,19,2,f +146,4599b,14,1,f +146,60581,47,1,f +146,61252,14,8,f +146,6141,5,2,f +146,75937,179,1,f +146,87580,27,1,f +147,4180c04,4,2,f +148,10907,320,1,f +148,10908pr0002,320,1,f +148,11211,71,2,f +148,11455,0,2,f +148,13269,0,1,f +148,2412b,0,2,f +148,2456,72,1,f +148,2654,71,2,f +148,3001,4,1,f +148,3003,0,2,f +148,3021,288,1,f +148,3040b,288,4,f +148,30553,71,1,f +148,3062b,41,1,t +148,3062b,41,2,f +148,30663,71,1,f +148,32123b,71,1,t +148,32123b,71,3,f +148,32184,71,1,f +148,3626cpr0961,78,1,f +148,3626cpr1219,78,1,f +148,3665,71,4,f +148,3794b,14,1,f +148,3829c01,14,1,f +148,3832,72,3,f +148,3937,72,1,f +148,3938,0,1,f +148,4274,1,1,f +148,4274,1,1,t +148,43710,72,1,f +148,43711,72,1,f +148,4589,182,2,f +148,48336,0,1,f +148,57539,179,1,f +148,59426,72,1,f +148,6014b,14,4,f +148,60474,72,1,f +148,60475b,71,2,f +148,61184,71,2,f +148,6126b,182,1,f +148,6132,0,1,f +148,61409,288,4,f +148,6141,41,2,f +148,6141,46,1,t +148,6141,36,3,f +148,6141,36,1,t +148,6141,46,1,f +148,6141,41,1,t +148,61485,0,1,f +148,6157,0,2,f +148,62462,0,1,f +148,6558,1,1,f +148,85940,0,1,f +148,87082,71,1,f +148,87697,0,4,f +148,92081,0,1,f +148,92582,0,1,f +148,93273,0,1,f +148,95199,72,1,f +148,970c00,326,1,f +148,970c00pr0541,320,1,f +148,973pr2379c01,320,1,f +148,973pr2432c01,288,1,f +148,99781,71,2,f +151,2339,308,8,f +151,2420,70,4,f +151,2431,72,4,f +151,2432,71,4,f +151,2444,72,2,f +151,2446,135,1,f +151,2449,308,2,f +151,2488,0,1,f +151,2542,70,4,f +151,2542,70,1,t +151,2551,70,2,f +151,2560,308,4,f +151,2570,135,2,f +151,2586px14,71,1,f +151,2587pr19,135,1,f +151,2594,80,1,f +151,2714a,71,4,f +151,2780,0,2,f +151,2780,0,1,t +151,3001,15,8,f +151,3004,71,7,f +151,3005,70,10,f +151,30055,72,9,f +151,3008,308,2,f +151,30099,308,1,f +151,3010,70,4,f +151,30104,72,4,f +151,3020,70,6,f +151,3021,72,4,f +151,3022,71,1,f +151,3022,19,3,f +151,3023,320,22,f +151,30237a,72,6,f +151,3032,70,2,f +151,3032,71,1,f +151,3034,70,8,f +151,3037,70,2,f +151,30374,70,2,f +151,30383,72,4,f +151,30395,72,1,f +151,3040b,308,10,f +151,30488c01,0,1,f +151,30516,71,2,f +151,30526,71,1,f +151,3062b,19,2,f +151,30658,0,2,f +151,3069b,70,1,f +151,3070b,70,1,f +151,3070b,70,1,t +151,3176,71,2,f +151,32016,0,5,f +151,32039,0,3,f +151,32073,71,3,f +151,32333,0,2,f +151,32474,4,3,f +151,32556,19,1,f +151,3403,71,1,f +151,3404,71,1,f +151,3456,72,2,f +151,3622,0,3,f +151,3623,72,3,f +151,3626bpr0348,14,1,f +151,3626bpr0433,14,1,f +151,3626bpr0511,378,6,f +151,3679,71,2,f +151,3680,0,2,f +151,3701,0,2,f +151,3705,0,2,f +151,3710,70,16,f +151,3713,4,1,f +151,3713,4,1,t +151,3749,19,4,f +151,3794a,4,6,f +151,3795,72,2,f +151,3849,135,1,f +151,3941,71,5,f +151,3957a,0,2,f +151,40234,71,1,f +151,40378,288,1,f +151,40379,288,1,f +151,40379,15,6,f +151,40395,288,1,f +151,40490,72,1,f +151,4070,320,38,f +151,4079b,70,1,f +151,4162,72,2,f +151,41879a,70,1,f +151,42023,72,1,f +151,4274,1,1,t +151,4274,1,1,f +151,43093,1,9,f +151,4424,70,2,f +151,44294,71,1,f +151,4460b,308,6,f +151,44728,19,1,f +151,4495b,378,2,f +151,4510,0,2,f +151,4519,71,2,f +151,47757,308,2,f +151,47905,19,2,f +151,48002a,0,2,f +151,48723,70,1,f +151,49668,135,13,f +151,51342pat0006a,82,2,f +151,51874pat0003,288,1,f +151,53451,15,1,t +151,53451,15,4,f +151,53451,135,1,t +151,53451,135,3,f +151,53452,308,1,f +151,54200,4,1,t +151,54200,4,2,f +151,56823c50,0,1,f +151,59217pat01,288,1,f +151,59218pat01,288,1,f +151,59224pat0003,288,1,f +151,59225c01,288,1,f +151,59227pr03,288,1,f +151,59900,72,6,f +151,6019,71,4,f +151,60474,71,1,f +151,60477,308,1,f +151,60479,308,4,f +151,60596,72,1,f +151,60621,71,1,f +151,60639c02,378,1,f +151,60640,378,1,f +151,60641,378,1,f +151,60642c02,378,1,f +151,60671,378,1,f +151,60674,71,1,f +151,60748,80,1,f +151,60750,484,1,f +151,60751,132,5,f +151,60751,134,1,f +151,60752,135,2,f +151,60752,134,2,f +151,6112,308,6,f +151,6126a,57,1,f +151,6141,71,2,t +151,6141,71,12,f +151,61639pr0001,288,1,f +151,61856p40,72,4,f +151,6222,70,2,f +151,62408,148,1,f +151,62436pat0003,288,1,f +151,62438pat0003,288,1,f +151,62808,72,2,f +151,6587,72,1,f +151,6628,0,4,f +151,6636,70,21,f +151,71155,0,1,f +151,75c10,0,4,f +151,75c10,0,1,t +151,970x026,71,1,f +151,970x199,70,6,f +151,973c47,71,1,f +151,973pr1321c01,72,1,f +151,973pr1349c01,70,3,f +151,973pr1352c01,72,3,f +151,sailbb41,320,2,f +152,11090,0,1,f +152,11399,15,1,f +152,11458,72,2,f +152,13756,47,1,f +152,13760,2,1,f +152,14210,15,1,f +152,15207,71,1,f +152,2412b,72,4,f +152,2412b,0,4,f +152,2420,0,2,f +152,2431,15,3,f +152,2780,0,2,f +152,2780,0,1,t +152,2817,0,2,f +152,3001,2,3,f +152,3002,71,1,f +152,3003,71,1,f +152,3004,2,6,f +152,3005,71,2,f +152,3009,71,2,f +152,30153,47,2,f +152,30157,71,2,f +152,3020,19,3,f +152,3021,15,4,f +152,3021,0,2,f +152,3022,4,1,f +152,3023,2,2,f +152,3023,46,1,f +152,3023,19,2,f +152,3023,182,2,f +152,3023,0,2,f +152,3024,2,1,t +152,3024,2,8,f +152,3031,71,1,f +152,3036,0,1,f +152,30374,71,4,f +152,30374,0,2,f +152,30385,297,1,f +152,30414,72,1,f +152,30552,72,4,f +152,30553,72,4,f +152,30554a,71,8,f +152,3069b,14,1,f +152,3069b,71,1,f +152,3069bpr0100,2,2,f +152,3623,71,2,f +152,3624,0,1,f +152,3626cpr0937,78,1,f +152,3626cpr0966,4,1,f +152,3626cpr1382,78,1,f +152,3665,71,4,f +152,3666,72,2,f +152,3666,2,1,f +152,3666,0,1,f +152,3710,19,2,f +152,3710,72,2,f +152,3795,15,1,f +152,3821,4,1,f +152,3821,2,1,f +152,3822,4,1,f +152,3822,2,1,f +152,3829c01,0,1,f +152,40240,70,1,f +152,4070,2,4,f +152,4070,72,2,f +152,4162,15,2,f +152,4274,71,4,f +152,4274,71,1,t +152,4282,72,1,f +152,4345b,71,4,f +152,4346,47,4,f +152,4510,72,2,f +152,45677,0,1,f +152,47457,72,1,f +152,48336,15,2,f +152,4865b,71,4,f +152,48723,72,1,f +152,48724,71,1,f +152,48729a,71,1,t +152,48729a,71,4,f +152,54200,47,2,f +152,54200,47,1,t +152,54200,72,2,f +152,54200,72,1,t +152,55981,71,4,f +152,59900,0,1,f +152,60476,71,2,f +152,60478,0,1,f +152,60479,71,2,f +152,60581,2,2,f +152,60583a,71,4,f +152,6141,182,6,f +152,6141,0,1,t +152,6141,36,2,f +152,6141,0,2,f +152,6141,36,1,t +152,6141,182,1,t +152,63864,0,2,f +152,63965,0,1,f +152,64728,4,1,f +152,6541,2,4,f +152,6564,0,1,f +152,6565,0,1,f +152,6636,0,4,f +152,87087,4,2,f +152,87552,71,2,f +152,89201,0,4,f +152,90981,15,1,f +152,91988,0,1,f +152,92280,71,2,f +152,92593,0,3,f +152,970c00,1,1,f +152,970c00,0,1,f +152,970c00pr0652,10,1,f +152,973pr1991c01,73,1,f +152,973pr2047c01,1,1,f +152,973pr2625c01,15,1,f +152,98282,72,4,f +152,98283,28,2,f +152,99780,72,2,f +153,11211,71,1,f +153,11458,72,2,f +153,2412b,71,1,f +153,2431,71,2,f +153,2431,14,4,f +153,2440,72,1,f +153,2540,4,2,f +153,2780,0,5,f +153,2780,0,1,t +153,3001,71,2,f +153,3004,14,1,f +153,3020,71,1,f +153,3021,4,3,f +153,3022,14,3,f +153,3023,15,10,f +153,3024,47,4,f +153,3024,182,2,f +153,3031,0,1,f +153,3068b,71,1,f +153,3069b,182,3,f +153,3069b,15,1,f +153,3069b,47,2,f +153,3176,14,2,f +153,32028,0,3,f +153,32530,72,1,f +153,3464,15,1,f +153,3475b,0,1,f +153,3626cpr0498,14,1,f +153,3626cpr0955,14,1,f +153,3666,71,2,f +153,3666,0,1,f +153,3666,15,1,f +153,3666,14,1,f +153,3680,4,1,f +153,3710,72,6,f +153,3794b,4,3,f +153,3795,14,2,f +153,3821,14,1,f +153,3822,14,1,f +153,3829c01,1,1,f +153,3833,4,1,f +153,3837,72,1,f +153,3899,4,1,f +153,3941,71,1,f +153,3956,71,2,f +153,4032a,4,1,f +153,40620,71,1,f +153,4150,71,1,f +153,4176,47,1,f +153,4282,71,1,f +153,43722,14,1,f +153,43723,14,1,f +153,44728,14,4,f +153,4488,0,8,f +153,4519,71,1,f +153,47457,71,1,f +153,48336,14,4,f +153,50745,14,2,f +153,50745,0,6,f +153,52031,14,1,f +153,52107,4,1,f +153,54200,71,2,f +153,54200,71,1,t +153,57792,71,2,f +153,59895,0,1,t +153,59895,0,1,f +153,60018stk01,9999,1,t +153,6014b,71,8,f +153,60478,0,4,f +153,6112,72,2,f +153,61252,0,8,f +153,6134,71,1,f +153,6141,182,1,t +153,6141,182,2,f +153,6141,72,1,t +153,6141,72,20,f +153,6141,36,1,t +153,6141,36,2,f +153,6585,0,1,f +153,6589,19,2,f +153,6589,19,1,t +153,6636,72,2,f +153,73983,14,2,f +153,85984,14,2,f +153,85984,72,2,f +153,85984,0,1,f +153,86035,0,1,f +153,87079,14,1,f +153,87079,72,1,f +153,87079,71,1,f +153,87083,72,1,f +153,87609,14,2,f +153,87697,0,8,f +153,92280,71,2,f +153,93273,72,3,f +153,93274,14,1,f +153,970c00,28,1,f +153,970c00,25,1,f +153,973pr1160c01,1,1,f +153,973pr1182c01,25,1,f +153,98138,71,1,t +153,98138,71,2,f +153,98280,14,1,f +153,98288,4,1,f +153,99207,71,4,f +154,2357,72,2,f +154,2420,0,4,f +154,2449,72,2,f +154,2653,71,5,f +154,3004,71,1,f +154,3005,70,2,f +154,3005,33,1,f +154,30103,0,4,f +154,30153,34,1,f +154,3020,72,1,f +154,3021,70,6,f +154,3022,70,2,f +154,3022,0,3,f +154,3023,72,5,f +154,3034,70,1,f +154,3040b,72,7,f +154,3048c,71,2,f +154,3062b,47,4,f +154,3068bprg0001,19,1,f +154,3068bprg0002,19,2,f +154,3068bprg0003,19,2,f +154,3068bprg0004,0,1,f +154,3070b,70,1,t +154,3070b,70,2,f +154,3660,71,1,f +154,3665,72,2,f +154,3678b,71,1,f +154,3710,0,1,f +154,3710,14,1,f +154,3710,4,1,f +154,3795,72,1,f +154,3795,0,4,f +154,3958,19,2,f +154,3958,0,5,f +154,4085c,71,2,f +154,41539,0,1,f +154,4460a,72,6,f +154,53451,179,2,f +154,53451,179,1,t +154,54200,288,7,f +154,54200,288,1,t +154,59900,297,10,f +154,59900,4,12,f +154,59900,70,4,f +154,59900,36,3,f +154,6141,1,1,t +154,6141,4,1,t +154,6141,72,1,t +154,6141,71,1,t +154,6141,71,4,f +154,6141,72,9,f +154,6141,1,1,f +154,6141,4,1,f +154,64644,297,1,f +154,64644,308,5,f +154,64647,57,5,f +154,64647,57,1,t +154,64776pat0001,0,1,f +154,85863pr0052,0,1,f +154,85863pr0053,14,1,f +154,85863pr0055,4,1,f +154,85863pr0074,71,3,f +154,85863pr0075,72,1,f +154,87087,72,2,f +154,87580,70,4,f +154,87580,72,22,f +154,87580,28,22,f +154,87580,19,4,f +154,92585,4,1,f +154,95049,72,1,f +154,95050,72,1,f +154,95051,72,1,f +154,95052,72,1,f +154,95053,72,1,f +154,95054,72,2,f +155,2335,71,5,f +155,2412b,0,4,f +155,2412b,71,17,f +155,2413,71,8,f +155,2419,72,1,f +155,2420,71,2,f +155,2431,71,14,f +155,2432,71,3,f +155,2450,72,4,f +155,2450,71,6,f +155,2456,0,2,f +155,2465,71,2,f +155,2465,0,2,f +155,2540,71,3,f +155,2555,71,24,f +155,2555,0,16,f +155,2598pr0001,47,1,f +155,2618,71,1,f +155,2780,0,56,f +155,2817,71,2,f +155,2825,71,2,f +155,298c02,4,2,f +155,3001,0,5,f +155,3004,0,10,f +155,30042,72,4,f +155,3005,0,2,f +155,3006,0,1,f +155,3008,71,6,f +155,30145,0,1,f +155,30162,72,2,f +155,3020,72,30,f +155,3020,0,20,f +155,3020,4,2,f +155,3021,71,22,f +155,3021,0,13,f +155,3022,71,15,f +155,3023,72,20,f +155,3023,0,16,f +155,30236,71,2,f +155,3029,0,2,f +155,3030,71,9,f +155,3031,0,8,f +155,3033,0,4,f +155,3034,0,29,f +155,3034,71,10,f +155,3035,72,5,f +155,3035,0,2,f +155,30350b,72,2,f +155,30365,4,2,f +155,30367b,71,1,f +155,3037,0,4,f +155,30374,71,10,f +155,3039pr0008,0,2,f +155,3040b,36,2,f +155,3040b,71,16,f +155,30414,0,4,f +155,3068b,0,3,f +155,3068b,72,5,f +155,3069b,71,10,f +155,3070b,71,6,f +155,32000,72,4,f +155,32013,72,1,f +155,32018,72,2,f +155,32028,71,22,f +155,32059,71,4,f +155,32062,0,2,f +155,32123b,71,16,f +155,32140,0,2,f +155,32184,0,8,f +155,32324,71,2,f +155,32523,71,6,f +155,32524,71,4,f +155,32531,71,4,f +155,32532,71,4,f +155,3297,71,2,f +155,3298,0,8,f +155,3308,0,1,f +155,3460,0,30,f +155,3460,72,10,f +155,3622,0,6,f +155,3623,4,4,f +155,3623,71,6,f +155,3660,72,10,f +155,3665,71,4,f +155,3666,0,12,f +155,3700,0,4,f +155,3701,0,2,f +155,3702,0,2,f +155,3702,71,2,f +155,3703,72,2,f +155,3705,0,8,f +155,3706,0,1,f +155,3710,71,17,f +155,3710,0,2,f +155,3713,71,6,f +155,3737,0,4,f +155,3747b,71,2,f +155,3794a,71,9,f +155,3795,71,6,f +155,3795,0,23,f +155,3832,72,8,f +155,3832,0,10,f +155,3894,71,8,f +155,3895,0,8,f +155,3937,72,2,f +155,4032a,72,5,f +155,40490,0,2,f +155,4081b,72,8,f +155,4085c,72,8,f +155,4095,71,9,f +155,4151,0,16,f +155,41539,0,4,f +155,4162,0,12,f +155,4162,71,32,f +155,41764,72,1,f +155,41765,72,1,f +155,41769,71,5,f +155,41770,71,5,f +155,41854,72,1,f +155,41862,71,1,f +155,42023,72,10,f +155,4274,71,20,f +155,4282,72,2,f +155,4285b,72,2,f +155,43337,72,12,f +155,43722,0,5,f +155,43722,71,8,f +155,43723,0,5,f +155,43723,71,8,f +155,44301a,0,24,f +155,44301a,4,2,f +155,44301a,71,16,f +155,44302a,72,16,f +155,44302a,0,24,f +155,44375apr03,71,1,f +155,4477,71,20,f +155,4589,71,6,f +155,4599a,71,17,f +155,4735,71,10,f +155,47405,71,2,f +155,54383,0,8,f +155,54384,0,8,f +155,56142,9999,1,t +155,6019,71,14,f +155,6141,36,10,f +155,6179,71,10,f +155,6190,72,6,f +155,64567,71,2,f +155,6541,71,4,f +155,6558,0,4,f +155,6629,0,2,f +155,6636,71,29,f +155,75c10,71,8,f +155,75c14,71,2,f +158,141ac96,15,2,f +159,266bc01,15,2,f +159,3001,0,4,f +159,3001,4,2,f +159,3003,0,8,f +159,3003,14,3,f +159,3004,7,3,f +159,3004,0,36,f +159,3004,14,4,f +159,3005,14,28,f +159,3008,4,10,f +159,3008,0,7,f +159,3009,0,16,f +159,3009,4,8,f +159,3009,14,6,f +159,3010,14,5,f +159,3010,4,12,f +159,3010,0,6,f +159,3010,1,2,f +159,3020,0,16,f +159,3023,0,24,f +159,3023,4,10,f +159,3023,7,16,f +159,3024,0,4,f +159,3026,7,1,f +159,3029,0,2,f +159,3029,14,6,f +159,3030,0,2,f +159,3031,0,2,f +159,3031,1,2,f +159,3032,7,1,f +159,3032,0,1,f +159,3034,14,2,f +159,3034,4,1,f +159,3034,7,1,f +159,3039,14,4,f +159,3039,7,4,f +159,3039p23,1,2,f +159,3039p34,7,1,f +159,3039p34,1,2,f +159,3040b,7,4,f +159,3062a,0,2,f +159,3068b,7,6,f +159,3081cc01,14,4,f +159,3081cc01,7,10,f +159,3228b,7,12,f +159,3229b,7,16,f +159,3230b,7,16,f +159,3241,7,16,f +159,3242,7,6,f +159,3297,7,26,f +159,3298,14,4,f +159,3298,7,10,f +159,3622,14,4,f +159,3622,4,12,f +159,3623,0,12,f +159,3624,4,2,f +159,3624,0,1,f +159,3625,0,3,f +159,3626apr0001,14,10,f +159,3660,4,6,f +159,3660,0,20,f +159,3666,14,8,f +159,3666,0,7,f +159,3675,14,4,f +159,3710,0,9,f +159,3710,7,12,f +159,3794a,7,8,f +159,3795,14,2,f +159,3795,7,4,f +159,3795,0,8,f +159,3829c01,7,1,f +159,3839b,7,1,f +159,3898,15,1,f +159,3899,15,2,f +159,3900,7,1,f +159,3901,6,2,f +159,3901,0,1,f +159,3940b,7,2,f +159,4022,0,6,f +159,4023,0,6,f +159,4032a,0,16,f +159,4032a,7,6,f +159,4033,14,18,f +159,4034,47,18,f +159,4035,14,2,f +159,4036,47,2,f +159,4079,4,3,f +159,4079,7,10,f +159,4083,0,1,f +159,4092,0,5,f +159,4093b,0,3,f +159,4161,14,4,f +159,4162,14,14,f +159,4170,4,2,f +159,4171,47,4,f +159,4176,47,2,f +159,4180c01,0,11,f +159,4181p02,14,6,f +159,4182p02,14,6,f +159,4183,47,12,f +159,458,7,6,f +159,501a,0,1,f +159,6141,46,2,f +159,6141,36,2,f +159,73090a,4,2,f +159,73092,0,6,f +159,765c28,7,2,f +159,767,8,44,f +159,7740stk01,9999,1,t +159,867,0,2,f +159,970c00,1,4,f +159,970c00,7,1,f +159,970c00,15,1,f +159,970c00,0,1,f +159,970c00,4,2,f +159,973c02,4,3,f +159,973c07,1,3,f +159,973c18,0,1,f +159,973p18c01,1,2,f +159,973px3c01,15,1,f +162,3437,14,1,f +162,51269,71,1,f +162,55886pr0003,2,1,f +162,57052,0,1,f +162,63710pr0003,19,1,f +162,6446,484,1,f +162,6510,4,1,f +162,6510,10,1,f +162,88540,19,1,f +163,11092,179,1,f +163,13608,179,1,f +163,15068,15,1,f +163,15573,72,1,f +163,2420,4,2,f +163,2446,4,1,f +163,2447,40,1,f +163,2447,40,1,t +163,30028,0,4,f +163,3020,0,3,f +163,3020,2,1,f +163,3022,15,2,f +163,3023,4,1,f +163,32028,15,2,f +163,3626cpr0499,14,1,f +163,3710,15,2,f +163,3829c01,4,1,f +163,4595,71,1,f +163,4733,72,1,f +163,50949,0,1,f +163,61409,4,2,f +163,6157,71,2,f +163,6187,0,1,f +163,63965,71,1,f +163,74967,15,4,f +163,92947,71,1,f +163,970x021,2,1,f +163,973pr0656c01,15,1,f +163,98138,34,2,f +163,98138,34,1,t +163,98138,36,2,f +163,98138,36,1,t +166,2412b,71,5,f +166,2415,71,1,f +166,2431,0,11,f +166,2444,72,2,f +166,2445,0,2,f +166,2445,71,1,f +166,2508,0,1,f +166,2780,0,4,f +166,2780,0,1,t +166,2877,72,2,f +166,3001,14,2,f +166,30033,15,1,f +166,3004,15,1,f +166,3005,71,2,f +166,3005,0,1,f +166,3010,14,2,f +166,3020,15,2,f +166,3020,0,7,f +166,3022,14,3,f +166,3022,71,3,f +166,3022,0,7,f +166,3023,14,2,f +166,3023,0,6,f +166,3024,15,5,f +166,3024,46,2,f +166,3030,0,1,f +166,3034,14,2,f +166,3035,14,2,f +166,30367b,4,1,f +166,3037,14,4,f +166,3039,15,2,f +166,3039,14,2,f +166,3040b,14,4,f +166,3040b,0,4,f +166,30602,40,2,f +166,3062b,72,2,f +166,3065,40,1,f +166,3068b,15,1,f +166,3069b,15,2,f +166,3070b,0,2,f +166,3070b,0,1,t +166,3176,14,1,f +166,32000,71,2,f +166,32013,71,4,f +166,32062,4,2,f +166,32123b,71,1,t +166,32123b,71,1,f +166,32125,71,1,f +166,3298,14,6,f +166,3464,15,1,f +166,3622,0,1,f +166,3623,14,1,f +166,3623,71,2,f +166,3623,0,5,f +166,3660,15,4,f +166,3660,71,2,f +166,3665,14,1,f +166,3665,15,2,f +166,3666,0,2,f +166,3666,14,1,f +166,3673,71,2,f +166,3673,71,1,t +166,3700,14,2,f +166,3710,14,2,f +166,3710,71,2,f +166,3747b,14,1,f +166,3794b,14,4,f +166,3795,0,2,f +166,3832,15,1,f +166,3941,72,1,f +166,4032a,71,2,f +166,4081b,72,2,f +166,41531,15,1,f +166,41764,15,1,f +166,41765,15,1,f +166,41769,14,2,f +166,41770,14,2,f +166,42610,71,2,f +166,4287,71,4,f +166,43093,1,1,f +166,4477,0,2,f +166,4589,71,4,f +166,4599a,71,2,f +166,4865a,71,2,f +166,50304,14,1,f +166,50305,14,1,f +166,51011,0,2,f +166,51739,14,1,f +166,52107,0,2,f +166,54200,182,2,f +166,54200,0,1,t +166,54200,36,1,t +166,54200,36,1,f +166,54200,0,1,f +166,54200,182,1,t +166,55013,72,1,f +166,59895,0,1,f +166,6019,71,2,f +166,6019,0,10,f +166,60478,72,4,f +166,60479,71,2,f +166,61409,72,2,f +166,6141,80,1,t +166,6141,72,1,t +166,6141,80,16,f +166,6141,72,2,f +166,6541,14,1,f +166,6558,1,1,f +166,6564,14,1,f +166,6565,14,1,f +166,6587,72,1,f +168,2456,4,2,f +168,3001,15,1,f +168,3001,4,1,f +168,3002,15,2,f +168,3002,4,2,f +168,3003,1,2,f +168,3003,4,4,f +168,3003,14,2,f +168,3003,15,2,f +168,4130,4,1,f +168,4131,14,1,f +168,4132,4,1,f +168,4133,14,1,f +168,4727,2,1,f +168,4728,14,1,f +168,4744pb16,1,1,f +168,4744px15,0,1,f +169,2420,70,2,f +169,2555,0,2,f +169,3023,70,1,f +169,3062b,72,2,f +169,64647,57,1,f +169,64648,135,1,f +171,3003,4,1,f +171,3004,14,2,f +171,3010,47,1,f +171,3010,4,2,f +171,3020,0,2,f +171,3021,0,3,f +171,3023,0,15,f +171,3024,14,2,f +171,3030,4,1,f +171,3063b,4,4,f +171,3137c01,0,2,f +171,3139,0,4,f +172,2420,0,4,f +172,2431,2,2,f +172,2436,15,3,f +172,2445,15,1,f +172,2456,1,1,f +172,2780,0,6,f +172,2921,15,2,f +172,3002,15,2,f +172,3003,15,2,f +172,3004,4,1,f +172,3005,2,2,f +172,3005,4,2,f +172,3008,0,1,f +172,3020,2,1,f +172,3020,15,1,f +172,3020,4,2,f +172,3021,14,1,f +172,3021,15,1,f +172,3022,71,3,f +172,3023,2,4,f +172,3023,15,2,f +172,3024,15,2,f +172,3030,15,1,f +172,3031,2,1,f +172,3032,0,1,f +172,3033,15,1,f +172,3034,4,1,f +172,30350b,15,2,f +172,3040b,15,1,f +172,30414,15,2,f +172,30503,15,4,f +172,3062b,2,1,f +172,3068b,15,1,f +172,3068b,2,1,f +172,3068b,4,1,f +172,3069b,4,2,f +172,3069b,2,2,f +172,3069b,15,1,f +172,3139,0,4,f +172,32028,15,1,f +172,32123b,14,4,f +172,3245c,15,2,f +172,3460,4,2,f +172,3622,4,2,f +172,3623,72,6,f +172,3623,4,2,f +172,3623,15,3,f +172,3660pb12,4,1,f +172,3665,4,2,f +172,3666,15,2,f +172,3678bpr0021,4,1,f +172,3700,4,2,f +172,3703,4,2,f +172,3708,0,2,f +172,3710,15,2,f +172,3794b,4,6,f +172,3795,15,1,f +172,3795,0,1,f +172,3895,0,2,f +172,4085c,0,2,f +172,41747,2,1,f +172,41748,2,1,f +172,41767,2,1,f +172,41767,15,1,f +172,41768,15,1,f +172,41768,2,1,f +172,4286,2,1,f +172,4286,15,1,f +172,43710,4,1,f +172,43711,4,1,f +172,43722,15,1,f +172,43722,2,3,f +172,43723,2,3,f +172,43723,15,1,f +172,44126,4,1,f +172,44302a,15,2,f +172,4510,15,2,f +172,4528,0,2,f +172,4600,71,2,f +172,4623,15,1,f +172,4624,71,4,f +172,50950,15,2,f +172,54200,15,4,f +172,54200,2,2,f +172,54383,15,1,f +172,54384,15,1,f +172,55978,0,4,f +172,56145,4,4,f +172,60481,15,2,f +172,6141,72,2,f +172,61678,0,2,f +172,6215,2,1,f +172,62462,0,4,f +172,62701,4,4,f +172,6541,2,1,f +172,6636,15,1,f +172,6636,4,2,f +172,85970,4,2,f +172,86500pr0002,4,1,f +172,93274,4,1,f +172,95120,15,1,f +173,11211,71,1,f +173,11477,70,2,f +173,11816pr0031,78,1,f +173,14769,30,1,f +173,15573,297,1,f +173,15675,18,1,f +173,15875pr0012c01,30,1,f +173,18674,70,1,f +173,18853,29,1,f +173,18853,30,1,f +173,18980,30,1,f +173,20482,47,1,f +173,22888,2,2,f +173,23988,297,1,f +173,2423,2,2,f +173,2454a,70,2,f +173,2654,15,1,f +173,2714a,226,2,f +173,2877,14,2,f +173,3003,5,1,f +173,3004,19,2,f +173,3004,5,1,f +173,3005,84,1,f +173,30136,70,6,f +173,30165,15,1,f +173,3020,70,1,f +173,3020,27,2,f +173,3020,30,1,f +173,3022,70,4,f +173,3022,15,1,f +173,3023,30,1,f +173,3023,19,1,f +173,3023,15,1,f +173,3034,15,1,f +173,3039,71,1,f +173,3040b,71,2,f +173,3040b,85,2,f +173,30613,19,1,f +173,3062b,14,1,f +173,3062b,2,1,f +173,3068b,15,1,f +173,32000,19,2,f +173,3245b,19,3,f +173,3298,85,3,f +173,33051,10,1,f +173,33125,484,1,f +173,33291,31,2,f +173,33291,26,9,f +173,33291,191,1,f +173,33291,212,2,f +173,3660,19,1,f +173,3660,70,4,f +173,3666,70,2,f +173,3666,30,1,f +173,3666,15,1,f +173,3710,27,1,f +173,3741,2,2,f +173,3832,2,2,f +173,4523,70,1,f +173,4528,0,1,f +173,59900,34,1,f +173,59900,297,1,f +173,60475b,84,1,f +173,60897,15,2,f +173,6141,27,6,f +173,6141,42,1,f +173,6141,0,3,f +173,6141,41,4,f +173,6141,297,1,f +173,6141,70,3,f +173,6141,182,1,f +173,6232,19,2,f +173,6541,70,2,f +173,85984,85,3,f +173,87079,322,1,f +173,87079,30,1,f +173,87926,71,1,f +173,87994,297,1,f +173,92456pr0110c01,78,1,f +173,92947,19,1,f +173,93085pr0005,15,1,f +173,93552pr0001,70,1,f +173,98138,71,2,f +173,98283,84,4,f +174,11609,191,1,f +174,11609,191,1,t +174,15573,15,1,f +174,15573,73,1,f +174,15573,27,1,f +174,3005,25,1,f +174,3022,2,4,f +174,3023,4,1,f +174,3023,73,1,f +174,3023,15,2,f +174,3024,47,1,f +174,3024,47,1,t +174,3040b,2,8,f +174,3070b,0,1,f +174,3070b,0,1,t +174,33291,4,1,t +174,33291,4,2,f +174,3623,4,1,f +174,3941,70,1,f +174,4070,2,1,f +174,4286,2,8,f +174,4595,0,1,f +174,54200,4,1,t +174,54200,4,1,f +174,54200,297,2,f +174,54200,297,1,t +174,59900,2,1,f +174,60474,4,1,f +174,6141,0,2,f +174,6141,4,3,f +174,6141,25,3,f +174,6141,25,1,t +174,6141,14,1,t +174,6141,4,1,t +174,6141,14,3,f +174,6141,1,3,f +174,6141,72,4,f +174,6141,72,1,t +174,6141,29,2,f +174,6141,0,1,t +174,6141,1,1,t +174,6141,29,1,t +174,6141,27,1,t +174,6141,27,3,f +175,2780,0,14,f +175,2825,0,2,f +175,2905,135,2,f +175,32002,72,2,t +175,32002,72,7,f +175,32013,135,4,f +175,32039,0,1,f +175,32062,0,12,f +175,32073,71,1,f +175,32174,288,4,f +175,32192,135,4,f +175,32271,288,6,f +175,32291,135,2,f +175,32348,288,2,f +175,32524,0,2,f +175,32525,0,4,f +175,32533pb638,21,1,f +175,32580,179,6,f +175,3673,71,4,f +175,3713,71,1,t +175,3713,71,2,f +175,3749,19,4,f +175,41669,135,4,f +175,41669,0,2,f +175,41678,0,4,f +175,41678,135,2,f +175,43093,1,1,f +175,44810,288,1,f +175,44813,179,6,f +175,4519,71,4,f +175,45274,179,1,f +175,45749,288,2,f +175,47296,288,1,f +175,47298,288,2,f +175,47299,179,2,f +175,47299,288,5,f +175,47306,288,1,f +175,47326pat01,288,2,f +175,47332,72,1,f +175,47334,179,1,f +175,6536,0,10,f +175,6536,135,2,f +175,6558,0,14,f +175,6587,72,13,f +175,6629,135,4,f +175,x1190,34,1,f +177,2412b,0,1,f +177,2431,15,1,f +177,2436,15,1,f +177,2436,0,2,f +177,3010,15,2,f +177,3020,0,3,f +177,3020,15,1,f +177,3023,15,1,f +177,3031,0,1,f +177,3068b,15,1,f +177,3069b,15,2,f +177,3069b,182,2,f +177,32028,15,1,f +177,3710,15,5,f +177,3788,15,1,f +177,3795,15,1,f +177,4070,15,2,f +177,44674,15,1,f +177,50944pr0001,0,4,f +177,50951,0,4,f +177,54200,182,2,f +177,54200,36,2,f +177,54200,182,1,t +177,54200,36,1,t +177,6141,0,1,t +177,6141,0,2,f +177,6157,0,2,f +177,88930,0,2,f +179,2412b,1,1,f +179,2446,7,1,f +179,2447,33,1,f +179,2540,7,1,f +179,2817,0,2,f +179,298c02,7,1,f +179,3020,7,1,f +179,30237a,15,2,f +179,30367a,15,4,f +179,3626bpx24,14,1,f +179,3749,7,4,f +179,3829c01,15,1,f +179,3957a,0,1,f +179,4032a,0,4,f +179,4349,0,1,f +179,4740,15,1,f +179,970x026,1,1,f +179,973px57c01,7,1,f +180,45474,35,5,f +180,46281,45,8,f +180,46281,25,5,f +180,46296,45,3,f +180,clikits004,46,5,f +180,clikits004,57,5,f +180,clikits005,46,4,f +180,clikits021,57,1,f +180,clikits025,57,28,f +180,clikits028,45,5,f +180,clikits034,5,3,f +180,clikits034,14,4,f +180,clikits034,100,4,f +180,clikits035,5,2,f +180,clikits035,14,3,f +180,clikits035,100,2,f +180,clikits036,14,1,f +180,clikits036,5,1,f +180,clikits036,100,1,f +180,clikits075,14,1,f +180,clikits101,25,1,f +180,clikits127,57,2,f +182,3626bpr1029,14,1,f +182,87990,19,1,f +182,88646,0,1,f +182,90509,26,2,f +182,90540,15,2,f +182,970c00pr0382,15,1,f +182,973pr2123c01,30,1,f +183,21,47,1,f +183,3004,14,4,f +183,3010,4,2,f +183,3010pb035e,4,1,f +183,3020,4,3,f +183,3022,4,1,f +183,3030,4,1,f +183,3137c01,0,1,f +183,3137c02,0,2,f +183,3139,0,2,f +183,7b,0,4,f +183,818,1,1,f +185,3626bpr0270,14,1,f +185,4006,0,1,f +185,4485,4,1,f +185,970c00,1,1,f +185,973pr1244c01,73,1,f +186,11213,322,1,f +186,11256,15,1,f +186,11476,71,2,f +186,12885,0,1,f +186,13760,15,1,f +186,14769,4,1,f +186,15210pr0003,15,1,f +186,18855,323,1,f +186,20877,484,1,f +186,24312,71,1,f +186,24314,47,2,f +186,2435,2,2,f +186,2496,0,5,f +186,25128,15,1,f +186,25386,19,1,f +186,2540,4,1,f +186,2655,71,2,f +186,26556,14,1,f +186,3001,70,1,f +186,30031,71,1,f +186,3004,15,1,f +186,3020,2,1,f +186,3020,15,1,f +186,3020,71,3,f +186,3020,72,1,f +186,3021,15,1,f +186,3022,4,1,f +186,3022,71,1,f +186,3032,70,1,f +186,30377,0,1,f +186,30377,0,1,t +186,3062b,15,1,f +186,33051,4,1,f +186,33078,4,1,f +186,33078,4,1,t +186,33125,484,1,f +186,33303,15,1,f +186,3460,71,2,f +186,3626bpr0645,14,1,f +186,3626cpr0752,14,1,f +186,3626cpr1580,14,1,f +186,3626cpr1614,14,1,f +186,3626cpr1635,14,1,f +186,3626cpr1662,14,1,f +186,3626cpr1771,14,1,f +186,3626cpr1786,14,1,f +186,3626cpr1963,14,1,f +186,3626cpr1964,14,1,f +186,3626cpr1965,14,1,f +186,3626cpr1966,14,1,f +186,3626cpr1967,14,1,f +186,3626cpr1988,14,1,f +186,3666,272,1,f +186,3666,70,2,f +186,3741,2,1,t +186,3741,2,1,f +186,3742,29,4,f +186,3795,2,1,f +186,3839b,0,1,f +186,3901,71,1,f +186,3937,15,1,f +186,3938,15,1,f +186,3957b,15,1,f +186,3957b,15,1,t +186,3960,191,1,f +186,41879a,28,1,f +186,41879a,321,1,f +186,41879a,30,1,f +186,41879a,272,1,f +186,44301a,71,2,f +186,44302a,72,2,f +186,4449,70,1,f +186,4598,0,1,f +186,4599b,14,1,t +186,4599b,4,1,f +186,4599b,4,1,t +186,4599b,14,1,f +186,4600,0,1,f +186,4624,71,1,t +186,4624,71,2,f +186,46303,15,1,f +186,4719,4,1,f +186,48336,71,1,f +186,4865b,47,2,f +186,48729b,72,1,f +186,48729b,72,1,t +186,54200,0,1,t +186,54200,0,2,f +186,59895,0,2,f +186,59895,0,1,t +186,6141,46,1,f +186,6141,72,1,t +186,6141,46,1,t +186,6141,72,2,f +186,61485,0,1,f +186,6177,2,1,f +186,6187,14,4,f +186,62696,308,1,f +186,62711,28,1,f +186,6636,15,1,f +186,6636,70,2,f +186,6636,272,3,f +186,72824,15,1,f +186,85984,0,1,f +186,86035,1,1,f +186,87990,84,1,f +186,87990,226,1,f +186,90541,72,1,f +186,92586pr0006,84,1,f +186,92851,47,2,f +186,93092,191,1,f +186,95343,71,1,f +186,95344,28,1,f +186,95344,28,1,t +186,970c00,28,1,f +186,970c00,2,1,f +186,970c00,0,1,f +186,970c00,19,1,f +186,970c00,73,1,f +186,970c00,272,2,f +186,970c00,1,1,f +186,970c00,70,1,f +186,970c00pr1094,71,1,f +186,973pr3415c01,272,1,f +186,973pr3424c01,30,1,f +186,973pr3425c01,4,1,f +186,973pr3426c01,212,1,f +186,973pr3427c01,84,1,f +186,973pr3429c01,0,1,f +186,973pr3430c01,15,1,f +186,973pr3431c01,321,1,f +186,973pr3432c01,15,1,f +186,973pr3433c01,29,1,f +186,973pr3434c01,212,1,f +186,973pr3451c01,71,1,f +186,973pr3490c01,15,1,f +186,973pr3491c01,4,1,f +186,98381,15,1,f +186,98385,226,1,f +186,98549,71,1,f +186,99240,70,1,f +186,99780,0,1,f +186,99930,0,1,f +187,62840,151,1,f +188,10201,71,2,f +188,11153,25,2,f +188,11153,2,2,f +188,11477,25,4,f +188,11477,73,2,f +188,11477,2,4,f +188,11477,15,2,f +188,11477,179,2,f +188,14769,72,1,f +188,15068,15,4,f +188,2412b,72,4,f +188,2431pr0017,14,2,f +188,3001,0,2,f +188,3001,73,2,f +188,3003,73,2,f +188,3004,25,2,f +188,3004,2,2,f +188,3010,73,2,f +188,3010,25,2,f +188,3010,2,2,f +188,3020,0,6,f +188,3020,73,2,f +188,3020,15,3,f +188,3020,25,2,f +188,3021,2,1,f +188,3021,71,2,f +188,3022,0,2,f +188,3022,71,2,f +188,3023,25,4,f +188,3023,15,6,f +188,3023,73,2,f +188,3023,72,4,f +188,3023,2,2,f +188,3028,71,1,f +188,3039,71,2,f +188,3039,73,2,f +188,3040b,0,2,f +188,3062b,0,8,f +188,3062b,71,6,f +188,32028,0,2,f +188,3666,73,2,f +188,3666,0,2,f +188,3710,2,2,f +188,3795,2,1,f +188,3795,71,3,f +188,3795,25,2,f +188,3832,72,1,f +188,4032a,72,2,f +188,4070,0,2,f +188,4150pr0022,71,1,f +188,42022,25,2,f +188,42022,2,2,f +188,4286,15,2,f +188,43722,15,1,f +188,43723,15,1,f +188,47458,0,2,f +188,47720,0,2,f +188,4865b,0,2,f +188,50943,179,1,f +188,50950,15,2,f +188,50950,73,4,f +188,51739,15,2,f +188,51739,0,2,f +188,54200,40,2,f +188,54200,36,2,f +188,54200,2,2,f +188,55981,15,12,f +188,56891,0,4,f +188,58090,0,4,f +188,61072,179,2,f +188,61409,72,4,f +188,6141,179,24,f +188,6178pr0003,71,1,f +188,64225,0,2,f +188,85984,0,2,f +188,87609,0,2,f +188,88930,0,2,f +188,89201,0,4,f +188,92593,72,2,f +188,96874,25,1,t +190,3010,15,1,f +190,3031,0,1,f +190,3062b,15,1,f +190,3794b,15,1,f +190,4599b,1,1,t +190,4599b,4,1,f +190,4599b,1,1,f +190,4599b,4,1,t +190,4735,71,1,f +190,4735,71,1,t +190,4740,47,1,t +190,4740,47,1,f +190,63965,15,1,f +191,64783,72,2,f +191,64784pat01,42,1,f +191,64785,72,1,f +192,3031,10,1,f +192,3245bpx7,5,1,f +192,3852b,115,1,f +192,4154180,15,1,f +192,4237,45,1,f +192,4238,45,1,f +192,42498,5,1,f +192,4727,115,2,f +192,4728,45,1,f +192,4728,143,1,f +192,4728,46,1,f +192,6250pr01,15,1,f +192,6256pb01,5,1,f +192,x248,14,1,f +192,xleash,14,1,f +193,3004,4,1,f +193,3005,4,2,f +193,3005,4,1,t +193,3010,4,1,f +193,3040b,4,2,f +193,3665,4,4,f +193,3700,71,1,f +194,3626cpr0901,78,1,f +194,50231,4,1,f +194,970x021,1,1,f +194,973pr1957bc01,1,1,f +194,98726,0,1,f +196,3020,71,2,f +196,30663,0,1,f +196,3069b,82,2,f +196,4623,72,1,f +196,6141,0,1,f +196,6141,0,1,t +196,61780,72,2,f +196,87580,72,1,f +197,2730,14,9,f +197,3665,14,4,f +197,3700,14,14,f +197,3701,14,10,f +197,3702,14,14,f +197,3703,14,14,f +197,3894,14,11,f +198,11211,71,2,f +198,15207,71,1,f +198,2357,19,6,f +198,2412b,19,8,f +198,2420,71,8,f +198,2420,19,8,f +198,2431,71,21,f +198,2431,0,2,f +198,2431,72,4,f +198,2445,71,2,f +198,2445,0,1,f +198,2454a,19,6,f +198,2456,19,1,f +198,3001,19,4,f +198,3002,0,2,f +198,3003,19,4,f +198,3004,0,10,f +198,3004,19,22,f +198,3005,19,12,f +198,3005,15,10,f +198,3008,19,11,f +198,3009,19,6,f +198,3010,19,10,f +198,3010,0,2,f +198,3020,19,2,f +198,3020,71,2,f +198,3021,19,20,f +198,3021,71,10,f +198,3022,19,10,f +198,3023,72,14,f +198,3023,40,107,f +198,3023,15,17,f +198,3023,19,16,f +198,3023,71,16,f +198,3024,40,40,f +198,3024,15,8,f +198,3024,71,58,f +198,3024,71,2,t +198,3024,15,2,t +198,3024,19,52,f +198,3024,40,2,t +198,3024,19,2,t +198,3027,0,6,f +198,3028,0,5,f +198,3030,0,6,f +198,3031,71,2,f +198,3034,19,2,f +198,3034,72,4,f +198,3035,19,1,f +198,30374,71,10,f +198,30414,0,2,f +198,3068b,71,6,f +198,3068b,72,6,f +198,3069b,72,6,f +198,3069b,378,10,f +198,3069b,71,29,f +198,3069b,40,32,f +198,3069b,19,8,f +198,3069b,0,1,f +198,3070b,0,2,f +198,3070b,0,1,t +198,3070b,72,1,t +198,3070b,72,4,f +198,3070b,71,3,t +198,3070b,71,49,f +198,32028,19,44,f +198,3460,71,2,f +198,3460,19,18,f +198,3622,19,6,f +198,3622,0,2,f +198,3623,72,2,f +198,3623,19,6,f +198,3660,72,2,f +198,3666,71,5,f +198,3666,19,12,f +198,3675,378,6,f +198,3700,19,2,f +198,3710,71,4,f +198,3710,19,12,f +198,3794b,19,47,f +198,3794b,71,56,f +198,3795,19,2,f +198,4070,72,10,f +198,4085c,19,28,f +198,4162,0,12,f +198,4162,72,7,f +198,4162,71,9,f +198,4162pr0023,0,1,f +198,4282,19,1,f +198,4286,378,10,f +198,4460b,72,2,f +198,4477,71,3,f +198,4477,19,11,f +198,4477,0,2,f +198,47905,19,2,f +198,4865b,71,2,f +198,6111,15,2,f +198,6111,19,1,f +198,6141,71,13,f +198,6141,71,1,t +198,6141,19,2,t +198,6141,19,28,f +198,6179,71,6,f +198,6231,71,2,f +198,63864,71,8,f +198,63864,0,4,f +198,6636,71,15,f +198,87079,71,22,f +198,87079,72,16,f +198,87087,19,14,f +198,96874,25,1,t +198,99301,378,2,f +199,10197,72,2,f +199,11334,15,2,f +199,15365pat0001,1,1,f +199,15366,148,1,f +199,15376pat01,70,1,f +199,2780,0,2,f +199,32062,4,5,f +199,3707,0,2,f +199,3749,19,1,f +199,41531,148,1,f +199,53451,15,2,f +199,53585,0,2,f +199,59443,72,3,f +199,64276,72,2,f +199,64951,70,2,f +199,74261,72,2,f +199,87841,41,1,f +199,87841,0,1,f +199,90609,0,3,f +199,90609,41,2,f +199,90612,0,1,f +199,90612,70,1,f +199,90617,72,4,f +199,90623,0,1,f +199,90639pr0034,148,1,f +199,90640,148,5,f +199,90640,70,1,f +199,90641,15,2,f +199,90641,41,1,f +199,90650,148,1,f +199,93571,70,1,f +199,93571,0,2,f +199,93575,41,2,f +199,98577,72,1,f +199,98578,41,2,f +203,3021,72,4,f +203,3021,0,3,f +203,3023,72,6,f +203,3023,0,2,f +203,3024,72,4,f +203,3024,0,1,f +203,3069b,0,2,f +203,3070b,0,3,f +203,3623,0,5,f +203,3623,72,6,f +203,3710,0,2,f +203,3710,72,4,f +203,4085c,72,2,f +203,41769,0,2,f +203,41770,0,2,f +203,43722,0,4,f +203,43723,0,4,f +203,4733,0,1,f +203,48336,0,4,f +203,49668,0,2,f +203,54200,0,12,f +203,6019,72,2,f +203,60470a,0,4,f +203,6541,0,1,f +204,12825,0,1,f +204,2412b,0,1,f +204,2420,14,2,f +204,2431,14,2,f +204,2431,25,1,f +204,2432,71,1,f +204,2444,0,2,f +204,2446,0,1,f +204,2447,0,1,f +204,2447,0,1,t +204,2540,0,1,f +204,2877,71,2,f +204,3004,320,3,f +204,3005,14,1,f +204,3020,25,2,f +204,3021,14,2,f +204,3021,15,3,f +204,3022,14,2,f +204,3022,25,2,f +204,3023,15,8,f +204,3023,25,4,f +204,3023,14,1,f +204,3023,0,4,f +204,3024,15,2,f +204,3024,14,2,f +204,3032,14,1,f +204,30391,0,2,f +204,30648,0,4,f +204,3068bpr0137,15,1,f +204,3069b,15,4,f +204,3069b,14,2,f +204,3069b,25,1,f +204,32073,71,2,f +204,32140,0,2,f +204,3460,15,1,f +204,3623,15,3,f +204,3666,15,2,f +204,3673,71,10,f +204,3673,71,1,t +204,3701,0,4,f +204,3705,0,1,f +204,3710,71,1,f +204,3713,71,2,f +204,3713,71,1,t +204,3795,14,1,f +204,3795,15,3,f +204,3829c01,71,1,f +204,4006,0,1,f +204,4070,14,1,f +204,4085c,0,2,f +204,41677,0,4,f +204,41747,15,1,f +204,41748,15,1,f +204,41769,15,1,f +204,41770,15,1,f +204,4282,15,1,f +204,44728,15,2,f +204,44728,25,1,f +204,4599b,71,1,f +204,4733,15,1,f +204,4865a,15,4,f +204,48729b,71,4,f +204,50943,80,1,f +204,50944pr0001,0,2,f +204,51011,0,2,f +204,52031,15,1,f +204,54200,15,1,t +204,54200,40,2,f +204,54200,15,2,f +204,54200,320,6,f +204,54200,40,1,t +204,54200,320,1,t +204,54383,14,1,f +204,54384,14,1,f +204,55981,71,4,f +204,60478,71,2,f +204,60483,0,4,f +204,61409,0,2,f +204,6141,80,1,t +204,6141,36,1,f +204,6141,36,1,t +204,6141,80,6,f +204,6157,71,1,f +204,61678,15,8,f +204,63868,0,4,f +204,85543,15,4,f +204,85984,15,4,f +204,87087,71,4,f +204,87580,15,1,f +206,2412b,0,2,f +206,2419,15,1,f +206,2431,15,1,f +206,2432,15,6,f +206,2432,72,2,f +206,2432,1,1,f +206,2445,15,2,f +206,2445,71,1,f +206,2446,15,1,f +206,2447,0,1,t +206,2447,0,3,f +206,2456,15,4,f +206,2555,15,2,f +206,2555,72,3,f +206,2569,0,1,t +206,2569,0,3,f +206,2653,0,2,f +206,2723,0,4,f +206,2780,0,12,f +206,2780,0,3,t +206,2817,71,2,f +206,298c02,1,2,t +206,298c02,1,4,f +206,3001,15,1,f +206,3001,0,3,f +206,3002,72,2,f +206,3003,72,4,f +206,30031,0,3,f +206,30033,15,2,f +206,3004,15,16,f +206,3008,1,5,f +206,3008,15,12,f +206,3009,15,3,f +206,3010,15,6,f +206,3010,1,2,f +206,30171,0,3,f +206,3020,15,1,f +206,3020,1,2,f +206,3021,0,2,f +206,3023,15,5,f +206,3023,0,10,f +206,3024,15,3,f +206,3029,15,2,f +206,3034,15,4,f +206,3034,1,1,f +206,3034,4,1,f +206,3034,0,2,f +206,30355,15,3,f +206,30356,15,3,f +206,3036,15,1,f +206,3036,0,6,f +206,30367b,15,4,f +206,30367b,72,1,f +206,30383,0,2,f +206,3039,15,2,f +206,3039,1,1,f +206,30391,0,4,f +206,3039pr0002,15,2,f +206,3039pr0005,15,1,f +206,3039pr0013,15,1,f +206,3040b,15,2,f +206,3046a,15,4,f +206,30526,71,6,f +206,30553,0,2,f +206,3065,33,6,f +206,3068b,1,3,f +206,3068b,15,2,f +206,3069b,1,5,f +206,3069b,15,4,f +206,3069bpr0090,72,1,f +206,3070b,15,1,t +206,3070b,15,1,f +206,32002,72,1,t +206,32002,72,2,f +206,32008,15,8,f +206,32013,0,2,f +206,32018,0,2,f +206,32020,71,2,f +206,32028,15,13,f +206,32034,0,4,f +206,32034,71,4,f +206,32039,0,5,f +206,32054,4,8,f +206,32062,4,12,f +206,32064a,1,3,f +206,32064b,15,7,f +206,32073,71,4,f +206,32123b,71,1,f +206,32123b,71,1,t +206,32138,0,6,f +206,32278,0,4,f +206,32531,0,3,f +206,32532,15,1,f +206,32556,19,4,f +206,3298,0,2,f +206,3460,15,2,f +206,3622,15,7,f +206,3626bpr0279,14,1,f +206,3626bpr0495,14,1,f +206,3626bpr0499,14,1,f +206,3626bpr0598,378,1,f +206,3626c,15,1,f +206,3660,0,2,f +206,3665,15,4,f +206,3666,0,5,f +206,3675,15,2,f +206,3679,71,1,f +206,3680,15,1,f +206,3700,71,10,f +206,3700,72,4,f +206,3702,0,5,f +206,3705,0,2,f +206,3706,0,1,f +206,3710,15,4,f +206,3710,0,2,f +206,3747b,72,2,f +206,3749,19,4,f +206,3794b,15,2,f +206,3794b,1,4,f +206,3794b,4,1,f +206,3829c01,15,1,f +206,3838,15,1,f +206,3838,0,3,f +206,3839b,15,4,f +206,3937,15,1,f +206,3937,0,2,f +206,3937,72,1,f +206,3941,15,6,f +206,3941,72,14,f +206,3943b,0,2,f +206,3956,0,2,f +206,3959,15,1,f +206,3959,71,5,f +206,3962b,0,2,f +206,4032a,72,4,f +206,4032a,0,2,f +206,40490,0,4,f +206,4070,1,2,f +206,4070,15,2,f +206,4079,1,2,f +206,4085c,15,6,f +206,41751,33,1,f +206,41766,0,2,f +206,41881,33,1,f +206,42022,15,2,f +206,4274,71,2,t +206,4274,71,18,f +206,4286,15,2,f +206,4287,72,4,f +206,43093,1,4,f +206,43713,0,2,f +206,44126,15,2,f +206,44301a,0,2,f +206,44302a,15,2,f +206,44661,0,4,f +206,44675,0,2,f +206,44728,0,16,f +206,44728,72,1,f +206,4477,0,2,f +206,4477,15,1,f +206,4479,0,1,f +206,4519,71,2,f +206,4589,34,27,f +206,4589,0,1,f +206,4589,72,2,f +206,4599b,0,1,f +206,4623,0,1,f +206,4623,15,2,f +206,4697b,71,2,f +206,4697b,71,2,t +206,4733,0,1,f +206,47397,0,1,f +206,47398,0,1,f +206,4740,57,2,f +206,47457,15,1,f +206,48336,0,2,f +206,4861,15,2,f +206,48729a,72,2,f +206,48729a,72,1,t +206,48989,71,5,f +206,50949,0,6,f +206,50950,0,8,f +206,54096,15,4,f +206,54200,34,1,t +206,54200,33,1,t +206,54200,0,1,t +206,54200,33,2,f +206,54200,36,1,t +206,54200,15,22,f +206,54200,72,2,f +206,54200,34,1,f +206,54200,0,8,f +206,54200,72,1,t +206,54200,36,3,f +206,54200,15,4,t +206,54383,15,1,f +206,54384,15,1,f +206,55982,0,4,f +206,57028c01,71,1,f +206,57539,0,2,f +206,57796,0,1,f +206,57909a,72,2,f +206,58176,33,4,f +206,58176,36,5,f +206,59426,72,2,f +206,5974stk01,9999,1,t +206,60169,71,1,f +206,60176,0,2,f +206,6019,15,4,f +206,60470a,4,1,f +206,60479,15,2,f +206,6081,15,10,f +206,6087,0,1,f +206,61184,71,1,f +206,6134,0,3,f +206,6134,71,1,f +206,61409,0,8,f +206,6141,34,1,t +206,6141,33,1,t +206,6141,34,1,f +206,6141,33,1,f +206,6141,42,1,t +206,6141,57,8,f +206,6141,57,1,t +206,6141,36,2,t +206,6141,36,15,f +206,6141,42,2,f +206,6141,72,1,t +206,6141,72,8,f +206,6180,15,3,f +206,61800,0,8,f +206,6215,15,2,f +206,6222,15,4,f +206,6239,15,4,f +206,62462,0,12,f +206,6266,15,4,f +206,63868,71,8,f +206,64391,15,2,f +206,64392,15,1,f +206,64682,15,1,f +206,64683,15,2,f +206,6553,71,4,f +206,6558,1,6,f +206,6587,72,7,f +206,6636,72,2,f +206,6636,15,2,f +206,85940,0,1,f +206,85941,33,8,f +206,85943,72,4,f +206,85944,72,1,f +206,85948pr0001,25,1,f +206,85959pat0001,36,1,f +206,970c00,15,1,f +206,970c00pr0127,72,3,f +206,970c00pr0131,0,1,f +206,970c00pr0132,70,1,f +206,973pr1490c01,72,3,f +206,973pr1491c01,15,1,f +206,973pr1512c01,0,1,f +206,973pr1515c01,70,1,f +207,11477,308,2,f +207,2420,70,2,f +207,3003,15,1,f +207,3003,70,2,f +207,3004,70,2,f +207,3004,2,4,f +207,3004,0,3,f +207,3004,4,3,f +207,3005,4,1,f +207,3005,2,1,f +207,3020,70,3,f +207,3020,15,1,f +207,3021,4,2,f +207,3021,2,2,f +207,3021,72,2,f +207,3022,0,2,f +207,3022,70,3,f +207,3022,19,2,f +207,3023,70,4,f +207,3023,19,6,f +207,3023,15,2,f +207,3024,19,1,t +207,3024,72,1,t +207,3024,72,4,f +207,3024,4,3,f +207,3024,4,1,t +207,3024,19,2,f +207,30367c,0,1,f +207,3039,70,1,f +207,3068b,70,2,f +207,3069b,70,2,f +207,3070b,70,2,f +207,3070b,70,1,t +207,32064b,15,1,f +207,3623,4,1,f +207,3660,70,2,f +207,3660,15,1,f +207,3665,70,2,f +207,3700,70,1,f +207,3794b,4,3,f +207,3794b,2,3,f +207,3794b,70,1,f +207,3942c,4,1,f +207,4032a,15,2,f +207,4070,70,6,f +207,43093,1,3,f +207,4871,70,1,f +207,54200,70,1,t +207,54200,27,2,f +207,54200,70,8,f +207,54200,15,1,t +207,54200,27,1,t +207,54200,15,5,f +207,54200,19,1,t +207,54200,19,4,f +207,60478,71,2,f +207,6141,27,1,t +207,6141,15,1,t +207,6141,15,2,f +207,6141,27,1,f +207,63868,72,2,f +207,6541,0,2,f +207,73983,19,4,f +207,88292,19,2,f +207,92280,0,2,f +207,92946,0,4,f +207,93273,70,1,f +207,98138pr0008,15,2,f +207,98138pr0008,15,1,t +207,99781,0,1,f +208,29bc01,4,2,f +208,3001a,14,4,f +208,3001a,47,4,f +208,3002a,14,6,f +208,3003,14,3,f +208,3004,14,18,f +208,3004,0,2,f +208,3005,14,38,f +208,3008,14,10,f +208,3008,0,4,f +208,3009,14,5,f +208,3009,0,2,f +208,3010,14,16,f +208,3010,0,2,f +208,3020,7,4,f +208,3020,14,14,f +208,3021,14,2,f +208,3021,7,10,f +208,3022,0,1,f +208,3023,7,10,f +208,3035,7,1,f +208,3036,7,3,f +208,3081bc01,4,18,f +208,32bc01,4,3,f +208,33bc01,4,3,f +208,453bc01,4,4,f +208,648,2,1,f +208,ftcyph,2,1,f +209,32028,7,100,f +210,2335pr02,15,1,f +210,2348b,41,1,f +210,2349a,15,1,f +210,2357,1,2,f +210,2357,14,2,f +210,2412a,7,4,f +210,2412a,14,1,f +210,2420,0,1,f +210,2420,15,4,f +210,2420,4,2,f +210,2431,0,2,f +210,2431,4,1,f +210,2431pr0077,15,5,f +210,2432,14,3,f +210,2432,0,2,f +210,2432,1,1,f +210,2436,0,1,f +210,2436,14,1,f +210,2441,14,1,f +210,2441,0,1,f +210,2441,4,2,f +210,2445,0,1,f +210,2446,15,1,f +210,2446,0,1,f +210,2446,4,1,f +210,2446,1,1,f +210,2447,41,4,f +210,2448,0,1,f +210,2453a,15,2,f +210,2465,15,2,f +210,2465,4,1,f +210,2466,15,5,f +210,2467,15,10,f +210,2486,15,8,f +210,298c02,15,2,f +210,298c03,0,1,f +210,3003,15,1,f +210,3004,15,8,f +210,3004,4,1,f +210,3004,0,1,f +210,3004p60,15,5,f +210,3005,4,2,f +210,3005p03,15,2,f +210,3006,15,1,f +210,3007,15,1,f +210,3008,4,5,f +210,3008,15,3,f +210,3009,15,4,f +210,3009pb004,15,4,f +210,3010,15,7,f +210,3010,14,1,f +210,3010,1,1,f +210,3010,4,6,f +210,3020,14,7,f +210,3020,0,1,f +210,3020,1,2,f +210,3020,4,3,f +210,3020,15,1,f +210,3021,4,3,f +210,3021,0,1,f +210,3022,15,3,f +210,3022,14,1,f +210,3022,1,1,f +210,3022,4,4,f +210,3022,0,2,f +210,3023,15,5,f +210,3023,4,1,f +210,3023,14,3,f +210,3024,47,2,f +210,3024,36,2,f +210,3024,15,3,f +210,3024,4,2,f +210,3026,4,3,f +210,3031,15,1,f +210,3032,0,1,f +210,3034,1,1,f +210,3034,0,1,f +210,3035,15,2,f +210,3035,4,1,f +210,3036,1,1,f +210,3037,15,1,f +210,3039p11,14,1,f +210,3039p23,1,1,f +210,3040b,15,15,f +210,3040b,4,4,f +210,3062b,4,3,f +210,3068b,0,2,f +210,3068b,4,1,f +210,3068b,15,2,f +210,3068bp18,15,3,f +210,3069b,4,2,f +210,3069b,14,2,f +210,3069b,1,1,f +210,3069bp08,15,2,f +210,3069bp25,15,2,f +210,3070b,15,1,f +210,3070b,36,2,f +210,3070bp01,14,2,f +210,3070bp02,14,2,f +210,3070bp03,14,2,f +210,3070bp04,14,2,f +210,3070bp05,1,1,f +210,3070bp08,15,1,f +210,3298p54,15,1,f +210,3298p55,1,1,f +210,3298p56,4,1,f +210,3298p57,0,1,f +210,3456,4,1,f +210,3460,15,3,f +210,3460,4,7,f +210,3460,1,2,f +210,3622,15,6,f +210,3623,1,2,f +210,3623,4,2,f +210,3623,14,4,f +210,3624,4,1,f +210,3626apr0001,14,13,f +210,3633,4,16,f +210,3641,0,27,f +210,3660,15,5,f +210,3660p01,15,2,f +210,3666,1,1,f +210,3679,7,3,f +210,3680,15,1,f +210,3680,14,2,f +210,3710,14,7,f +210,3710,1,1,f +210,3710,15,2,f +210,3710,4,9,f +210,3730,0,1,f +210,3747a,15,4,f +210,3788,14,1,f +210,3794a,1,2,f +210,3794a,0,2,f +210,3821pb04,15,1,f +210,3822pb04,15,1,f +210,3823,41,1,f +210,3829c01,4,1,f +210,3829c01,0,1,f +210,3829c01,14,2,f +210,3829c01,15,1,f +210,3839b,0,4,f +210,3901,0,1,f +210,3937,15,1,f +210,3938,15,1,f +210,3941,15,2,f +210,3941,14,2,f +210,3957a,15,7,f +210,3962a,0,2,f +210,3963,15,1,f +210,4006,0,2,f +210,4032a,4,2,f +210,4070,15,8,f +210,4079,14,2,f +210,4081b,1,4,f +210,4081b,4,4,f +210,4081b,14,4,f +210,4081b,7,1,f +210,4083,0,2,f +210,4085b,1,4,f +210,4085b,14,4,f +210,4150p00,15,1,f +210,4162,0,2,f +210,4208,0,1,f +210,4209,15,1,f +210,4211,14,1,f +210,4214,15,1,f +210,425p01,7,2,f +210,4275b,0,1,f +210,4286,15,6,f +210,4286,0,2,f +210,4286,4,6,f +210,4287,15,4,f +210,4477,4,2,f +210,4477,1,1,f +210,4485,15,1,f +210,4485,4,2,f +210,4485,1,3,f +210,4495b,14,6,f +210,4522,0,2,f +210,4530,0,1,f +210,4531,0,1,f +210,4533,15,2,f +210,4589,0,1,f +210,4595,0,1,f +210,4599a,0,2,f +210,4599a,4,3,f +210,4600,0,4,f +210,4624,14,10,f +210,4624,15,15,f +210,4629c01,1,2,f +210,4714,15,1,f +210,4715,15,2,f +210,4733,7,1,f +210,4865a,14,5,f +210,4865a,1,5,f +210,4865a,0,2,f +210,4865a,4,2,f +210,4865a,15,4,f +210,4871,14,1,f +210,4872,41,2,f +210,56823,0,1,f +210,6141,36,6,f +210,6141,34,6,f +210,6141,0,8,f +210,6141,7,1,f +210,6141,46,4,f +210,73590c01a,0,2,f +210,73983,15,1,f +210,817c02,1,1,f +210,92410,15,2,f +210,970c00,0,2,f +210,970c00,1,4,f +210,970c00,15,2,f +210,970c00,4,4,f +210,970c00,7,1,f +210,973p0ac01,1,1,f +210,973p0ac02,0,1,f +210,973p0ac04,4,1,f +210,973p13c01,4,1,f +210,973p14c01,15,1,f +210,973p18c01,1,1,f +210,973p24c01,15,1,f +210,973p26c01,1,1,f +210,973p60c01,15,2,f +210,973pb0006c01,15,1,f +210,973pb0202c01,15,1,f +210,973px61c01,15,1,f +211,4022,0,2,f +211,4023,0,2,f +211,73092,0,2,f +212,2421,0,1,f +212,2433,0,2,f +212,2446,2,1,f +212,2447,0,1,f +212,2555,0,2,f +212,3021,0,1,f +212,3626bp7c,14,1,f +212,3933,4,1,f +212,3934,4,1,f +212,4095,0,2,f +212,4276b,4,2,f +212,4488,7,1,f +212,73590c02b,14,1,f +212,970x024,0,1,f +212,973p8ac01,0,1,f +214,3004,14,2,f +214,3062b,4,1,f +214,3741,2,3,f +214,3742,4,1,t +214,3742,15,6,f +214,3742,15,2,t +214,3742,4,3,f +214,3795,14,1,f +214,4094a,4,1,f +214,4325,27,1,f +214,63965,4,1,f +214,fab6e,-1,1,f +215,3020,14,3,f +215,3021,14,2,f +215,3023,14,3,f +215,3024,0,2,f +215,3641,0,2,f +215,4085c,0,4,f +215,43337,14,1,f +215,44674,14,1,f +215,4600,71,2,f +215,4624,71,2,f +215,47457,14,1,f +215,48336,0,3,f +215,4864b,40,3,f +215,6014b,71,2,f +215,6015,0,2,f +215,6019,71,2,f +215,6231,14,2,f +215,73983,14,2,f +216,bfp001,9999,12,f +216,bfp002,9999,12,f +217,2412b,15,1,f +217,2412b,7,2,f +217,2421,0,1,f +217,2431,0,1,f +217,2446,15,1,f +217,2447,34,1,f +217,2460,15,1,f +217,2479,7,1,f +217,2620,34,1,f +217,3001,8,1,f +217,3001,0,2,f +217,3004,4,1,f +217,3004,15,1,f +217,3004pb008,7,2,f +217,3006,15,1,f +217,3010,15,2,f +217,3010pr0016,0,2,f +217,30182,0,1,f +217,30183p01,15,1,f +217,30184,7,1,f +217,3023,4,1,f +217,30278c01,7,1,f +217,3037pb006,0,1,f +217,3040b,36,4,f +217,3040b,33,4,f +217,3040b,15,1,f +217,3062b,33,4,f +217,3069b,33,2,f +217,3069bp52,15,1,f +217,3460,0,4,f +217,3626bp04,14,2,f +217,3710,0,2,f +217,3710,15,1,f +217,3823,34,1,f +217,3829c01,15,1,f +217,3962b,0,1,f +217,4070,0,2,f +217,4085c,15,2,f +217,4162,8,2,f +217,4315,7,1,f +217,4349,4,1,f +217,4485,0,1,f +217,4488,0,1,f +217,4600,0,3,f +217,6014a,15,10,f +217,6015,0,10,f +217,6140,7,2,f +217,6140,15,2,f +217,6141,34,1,t +217,6141,36,2,f +217,6141,34,1,f +217,71137,383,2,f +217,970c00,0,2,f +217,973px67c01,0,1,f +217,973px9c01,0,1,f +218,11153,25,2,f +218,11187,70,2,f +218,11215,71,1,f +218,11293,25,1,f +218,11295,72,1,f +218,11297,41,1,f +218,11458,72,2,f +218,11477,25,2,f +218,14716,71,4,f +218,15535,72,3,f +218,15540,72,6,f +218,15541pat0001,1,1,f +218,15573,71,1,f +218,15790,0,1,f +218,16606pat0001,15,4,f +218,17660,9999,1,f +218,18738,71,1,t +218,18738,71,1,f +218,2412b,72,2,f +218,2412b,25,2,f +218,2432,25,2,f +218,2447,40,1,f +218,2447,40,1,t +218,2584,0,1,f +218,2585,71,1,f +218,2780,0,1,t +218,2780,0,2,f +218,298c02,71,1,f +218,298c02,71,1,t +218,30000,1,2,f +218,3002,15,1,f +218,3004,25,7,f +218,3005,25,2,f +218,30089b,0,1,f +218,30150,70,1,f +218,30165,72,1,f +218,30171,0,1,f +218,3020,15,3,f +218,3021,25,4,f +218,3022,15,1,f +218,3022,19,1,f +218,3023,72,3,f +218,3023,0,2,f +218,30293,41,1,f +218,30294,41,1,f +218,3031,72,1,f +218,3034,71,2,f +218,3035,72,1,f +218,30385,80,1,f +218,3039,71,1,f +218,30395,72,1,f +218,3039pr0014,0,1,f +218,3062b,0,1,f +218,3068b,0,1,f +218,32013,71,3,f +218,32039,0,4,f +218,32062,4,2,f +218,32064a,15,2,f +218,32064a,72,6,f +218,32073,71,2,f +218,32123b,14,1,t +218,32123b,14,1,f +218,32124,0,12,f +218,32192,25,4,f +218,32270,0,2,f +218,3622,25,2,f +218,3623,15,2,f +218,3626cpr0889,14,1,f +218,3626cpr1395b,14,1,f +218,3666,0,2,f +218,3673,71,1,t +218,3673,71,1,f +218,3703,71,2,f +218,3706,0,2,f +218,3709,0,1,f +218,3710,25,2,f +218,3713,71,1,t +218,3713,71,2,f +218,3749,19,1,f +218,3795,72,2,f +218,3839b,71,1,f +218,3962b,0,1,f +218,4070,72,3,f +218,4079b,70,1,f +218,4162,72,2,f +218,4274,1,6,f +218,4274,1,1,t +218,43093,1,5,f +218,43722,25,1,f +218,43723,25,1,f +218,44567b,0,4,f +218,45301,25,1,f +218,4697b,71,1,t +218,4697b,71,1,f +218,476,0,1,f +218,47753,25,2,f +218,4865b,71,4,f +218,4868b,71,2,f +218,4869,71,2,f +218,50943,71,1,f +218,50949,0,4,f +218,54200,143,1,f +218,54200,46,1,t +218,54200,143,1,t +218,54200,46,2,f +218,56823c50,0,1,f +218,60032,25,3,f +218,60219,25,3,f +218,60471,15,2,f +218,60601,41,1,f +218,60897,0,4,f +218,6091,71,4,f +218,61252,71,2,f +218,6141,34,1,f +218,6141,36,1,t +218,6141,46,2,f +218,6141,34,1,t +218,6141,46,1,t +218,6141,36,1,f +218,62462,0,1,f +218,62743,0,6,f +218,63082,71,1,f +218,64451,25,1,f +218,64566,0,1,f +218,6558,1,3,f +218,6587,28,2,f +218,6636,71,2,f +218,6636,25,4,f +218,74698,0,1,f +218,85984,25,2,f +218,87082,71,1,f +218,87580,72,3,f +218,91988,72,1,f +218,93106,0,1,f +218,970c00,28,1,f +218,970c00pr0645,1,1,f +218,973pr2661c01,25,1,f +218,973pr2678c01,70,1,f +218,98138,47,1,f +218,98138,47,1,t +218,98302,0,2,f +218,98397,71,2,f +218,99206,71,2,f +218,99207,71,2,f +218,99781,15,2,f +220,2399,4,1,f +220,2432,4,1,f +220,30103,0,1,f +220,30105,0,1,f +220,30106,47,1,f +220,3022,7,1,f +220,3626bpx74,14,1,f +220,3794a,14,2,f +220,4070,0,1,f +220,4497,6,2,f +220,4732,0,1,f +220,59,383,1,f +220,6019,7,2,f +220,6126a,57,1,f +220,970x026,8,1,f +220,973px125c01,4,1,f +221,2412b,7,1,f +221,2432,8,1,f +221,2610,14,1,f +221,3001,4,1,f +221,30236,7,1,f +221,3039,4,1,f +221,3626bpb0083,14,1,f +221,3710,15,2,f +221,3794a,4,1,f +221,3795,14,1,f +221,3829c01,14,1,f +221,3834,15,1,f +221,3962b,8,1,f +221,4081b,15,2,f +221,4349,7,1,f +221,4589,33,2,f +221,4589,7,1,f +221,4856a,4,1,f +221,4859,15,1,f +221,970c00,0,1,f +221,973pb0099c01,0,1,f +222,2780,0,10,f +222,2780,0,2,t +222,3022,0,1,f +222,32009,14,2,f +222,32013,0,2,f +222,32014,0,2,f +222,32039,7,4,f +222,32064a,0,2,f +222,32073,0,5,f +222,32123b,7,1,t +222,32123b,7,20,f +222,32138,0,3,f +222,32140,14,4,f +222,32140,0,2,f +222,32184,14,1,f +222,32201,179,2,f +222,32278,0,1,f +222,32291,0,2,f +222,32291,14,3,f +222,32294,14,2,f +222,32316,14,4,f +222,32449,0,4,f +222,32527,14,1,f +222,32528,14,1,f +222,3705,0,2,f +222,3707,0,6,f +222,3713,7,2,t +222,3713,7,11,f +222,3737,0,2,f +222,3749,7,2,t +222,3749,7,3,f +222,4519,0,7,f +222,6536,0,2,f +222,6536,7,4,f +222,6538b,7,2,f +222,6553,0,1,f +222,6553,14,1,f +222,6558,0,7,f +222,6575,0,2,f +222,6579,0,4,f +222,6580,14,4,f +222,6587,8,4,f +222,6589,7,1,f +222,6628,0,1,f +222,6629,0,3,f +222,6632,14,2,f +222,6632,0,2,f +222,rb00167,0,2,f +222,rb00167,0,2,t +222,rb00168,0,1,f +222,rb00168,0,2,t +224,10113,0,1,f +224,29017,4,1,f +224,3626cpr2073,78,1,f +224,6256pr0002,15,1,f +224,88646,0,1,f +224,970c00pr1159,320,1,f +224,973pr3679c01,320,1,f +225,4760c01,0,1,f +226,11233pr0002,71,1,f +226,15071,0,1,f +226,30162,72,2,f +226,3626cpr1134,71,1,f +226,61409,4,1,f +226,970c00pr0663,4,1,f +226,973pr2666c01,4,1,f +226,98138pr0023,182,1,f +227,3005,71,2,f +227,30374,70,1,f +227,32064b,71,1,f +227,3455,71,1,f +227,3794a,71,1,f +227,3846pr24,71,1,f +227,4460b,72,2,f +227,4495b,82,1,f +228,2432,1,2,f +228,3795,72,1,f +228,3839b,0,1,f +228,4449,70,1,f +228,4449,0,1,f +228,4600,0,1,f +228,50254,0,2,f +229,122c01,0,6,f +229,3001,14,1,f +229,3004,1,12,f +229,3004,0,3,f +229,3004,14,4,f +229,3005,14,2,f +229,3005,0,1,f +229,3005,1,8,f +229,3008,1,1,f +229,3008,0,1,f +229,3009,1,7,f +229,3009,0,2,f +229,3010,14,2,f +229,3010,1,3,f +229,3010,0,1,f +229,3020,14,2,f +229,3020,4,1,f +229,3020,15,1,f +229,3020,0,5,f +229,3021,14,2,f +229,3022,14,1,f +229,3022,0,1,f +229,3023,0,5,f +229,3023,14,9,f +229,3023,1,2,f +229,3023,4,1,f +229,3023,15,1,f +229,3024,1,2,f +229,3024,36,4,f +229,3024,46,4,f +229,3030,14,1,f +229,3032,14,1,f +229,3033,0,1,f +229,3034,0,2,f +229,3039,0,1,f +229,3039p05,4,1,f +229,3039p0u,15,1,f +229,3040p03,15,1,f +229,3068b,0,1,f +229,3069b,0,1,f +229,3070b,14,2,f +229,3185,15,4,f +229,3324c01,0,1,f +229,3460,14,2,f +229,3470,2,1,f +229,3622,1,9,f +229,3622,0,1,f +229,3623,1,3,f +229,3623,0,5,f +229,3626apr0001,14,2,f +229,3641,0,18,f +229,3660,0,1,f +229,3665,1,2,f +229,3666,1,2,f +229,3679,7,1,f +229,3680,0,1,f +229,3710,15,1,f +229,3710,4,1,f +229,3710,0,4,f +229,3741,2,2,f +229,3742,4,6,f +229,3742,4,2,t +229,3747b,1,1,f +229,3788,14,1,f +229,3795,14,1,f +229,3795,4,1,f +229,3795,0,4,f +229,3795,15,1,f +229,3821,0,1,f +229,3822,0,1,f +229,3829c01,15,1,f +229,3829c01,4,2,f +229,3829c01,0,1,f +229,3832,14,1,f +229,3832,0,3,f +229,3853,4,2,f +229,3855,47,2,f +229,3861b,4,1,f +229,3939,47,4,f +229,3957a,4,2,f +229,4006,0,1,f +229,4070,0,2,f +229,4079,4,1,f +229,4083,0,2,f +229,4083,15,1,f +229,4083,4,1,f +229,4084,0,6,f +229,4085b,14,2,f +229,4085b,1,2,f +229,4175,0,1,f +229,4211,14,1,f +229,4213,14,1,f +229,4216,1,12,f +229,4216,0,2,f +229,4217,1,2,f +229,4218,47,9,f +229,4219,4,1,f +229,4275b,0,2,f +229,4275b,14,2,f +229,4276b,0,2,f +229,4286,14,2,f +229,4315,14,1,f +229,4347,4,2,f +229,4477,0,1,f +229,4485,4,2,f +229,4522,0,1,f +229,4531,0,2,f +229,4589,4,3,f +229,4590,0,1,f +229,4594,47,1,f +229,4599a,4,1,f +229,4600,0,6,f +229,4624,15,12,f +229,4629c01,1,1,f +229,6100p04,7,1,f +229,6140,7,1,f +229,970c00,0,2,f +229,973p26c01,1,1,f +229,973pb0202c01,15,1,f +232,2412b,42,3,f +232,2419,0,1,f +232,2432,7,1,f +232,2447,0,1,f +232,2447,0,1,t +232,2456,0,1,f +232,2460,14,6,f +232,2476a,1,3,f +232,2569,42,2,f +232,2625,0,1,f +232,2639,7,2,f +232,2880,0,6,f +232,298c01,0,2,f +232,298c01,0,1,t +232,3001,4,1,f +232,3001,0,3,f +232,3002,0,3,f +232,3003,0,1,f +232,3003,7,3,f +232,30038,42,1,f +232,3004,7,5,f +232,3004,0,1,f +232,3007,14,1,f +232,3020,0,4,f +232,3020,7,4,f +232,3021,7,3,f +232,3022,1,1,f +232,3022,7,1,f +232,3023,4,4,f +232,3023,7,3,f +232,3023,14,3,f +232,3031,7,1,f +232,3032,0,1,f +232,3034,0,1,f +232,3037,0,2,f +232,3039,0,8,f +232,3039pb016,0,2,f +232,3039pb021,0,2,f +232,3040b,14,4,f +232,3048c,7,3,f +232,3049b,0,10,f +232,3062b,7,4,f +232,3069bpx33,0,3,f +232,32017,0,6,f +232,3299,0,1,f +232,3300,0,3,f +232,3403,0,1,f +232,3404,0,1,f +232,3460,0,2,f +232,3623,7,2,f +232,3626bp68,14,1,f +232,3660,0,4,f +232,3666,7,4,f +232,3747a,0,3,f +232,3795,7,3,f +232,3838,0,1,f +232,3933,0,1,f +232,3934,0,1,f +232,4070,0,2,f +232,4081b,14,4,f +232,4275b,0,10,f +232,4276b,7,16,f +232,4286,7,4,f +232,4345b,0,2,f +232,4346,42,2,f +232,4589,42,2,f +232,4590,0,2,f +232,4595,0,2,f +232,4595,7,2,f +232,4596,7,1,f +232,4599a,0,2,f +232,4856a,0,1,f +232,6044,0,4,f +232,6069,0,2,f +232,6069pb02,0,1,f +232,6141,42,11,f +232,6141,42,1,t +232,73590c02a,7,4,f +232,970c11pb05b,0,1,f +232,973pb0088c01,8,1,f +233,15427pr0001,0,1,f +233,15428pr0001,0,1,f +233,2412b,72,1,t +233,2412b,72,1,f +233,298c02,71,1,t +233,298c02,71,1,f +233,3003,4,1,f +233,30377,0,6,f +233,30377,0,1,t +233,3626cpr1326,14,1,f +233,4006,0,1,f +233,4032a,71,1,f +233,44728,0,2,f +233,6117,72,1,f +233,6141,36,1,t +233,6141,36,1,f +233,6141,71,1,t +233,6141,71,1,f +233,64644,0,2,f +233,75937,179,1,f +233,92338,72,1,f +233,970c00pr0628,0,1,f +233,973pr2590c01,0,1,f +233,99207,0,2,f +234,10247,72,2,f +234,11153,71,4,f +234,11212,72,2,f +234,11217pr0010,15,2,f +234,11477,72,10,f +234,13349,72,1,f +234,14137,0,6,f +234,15303,33,3,f +234,15400,72,2,f +234,2412b,14,4,f +234,2412b,72,4,f +234,2431,0,2,f +234,2431,72,2,f +234,2445,71,1,f +234,2449,72,4,f +234,2462,71,2,f +234,2476,71,1,f +234,2654,71,5,f +234,2654,47,1,f +234,2780,0,1,f +234,3001,4,1,f +234,3002,72,2,f +234,3004,71,2,f +234,3004,272,12,f +234,3005,272,6,f +234,3010,71,2,f +234,3020,1,2,f +234,3020,71,2,f +234,3021,71,2,f +234,3021,272,8,f +234,3022,72,20,f +234,3023,0,1,f +234,3023,71,17,f +234,3024,71,2,f +234,3024,0,2,f +234,3024,272,6,f +234,3031,71,2,f +234,3032,71,3,f +234,3034,71,2,f +234,3037,272,2,f +234,30374,0,1,f +234,30374,35,2,f +234,30374,41,1,f +234,3038,71,2,f +234,3039,36,4,f +234,3040b,72,2,f +234,30503,71,4,f +234,30552,72,2,f +234,3065,36,8,f +234,3068b,0,1,f +234,3068b,72,4,f +234,3068b,71,1,f +234,3069b,272,4,f +234,3069b,36,1,f +234,3069b,33,1,f +234,3070b,36,2,f +234,32000,71,2,f +234,32013,0,4,f +234,32014,71,2,f +234,32016,0,2,f +234,32054,0,1,f +234,32062,4,8,f +234,32064a,0,3,f +234,32064a,4,1,f +234,32192,72,2,f +234,32348,0,2,f +234,3245c,71,4,f +234,32523,4,1,f +234,32525,71,1,f +234,32530,0,1,f +234,3297,71,2,f +234,3298,272,2,f +234,3460,72,4,f +234,3622,72,2,f +234,3623,4,6,f +234,3623,72,10,f +234,3626cpr0514,78,1,f +234,3626cpr0525,78,2,f +234,3626cpr1187,25,1,f +234,3660,71,3,f +234,3665,72,2,f +234,3666,0,5,f +234,3666,71,13,f +234,3666,272,2,f +234,3673,71,2,f +234,3700,72,1,f +234,3701,72,3,f +234,3710,71,2,f +234,3710,0,4,f +234,3710,272,7,f +234,3795,72,3,f +234,4070,72,8,f +234,41769,0,2,f +234,41770,0,2,f +234,4274,71,5,f +234,4286,71,2,f +234,43093,1,6,f +234,44301a,0,4,f +234,44302a,72,4,f +234,44358,71,2,f +234,44359,72,4,f +234,44567a,72,4,f +234,44570,72,2,f +234,44728,72,10,f +234,4733,0,1,f +234,47397,71,1,f +234,47398,71,1,f +234,4740,0,2,f +234,47457,72,2,f +234,48336,0,2,f +234,4871,72,1,f +234,50304,71,2,f +234,50305,71,2,f +234,51739,72,2,f +234,52501,72,1,f +234,54200,71,2,f +234,54200,36,2,f +234,54383,72,1,f +234,54383,0,2,f +234,54384,0,2,f +234,54384,72,1,f +234,58247,0,2,f +234,59349,71,2,f +234,59900,15,1,f +234,60219,71,2,f +234,60475a,71,2,f +234,60479,71,2,f +234,60581,72,3,f +234,60849,0,1,f +234,60897,72,5,f +234,61183,70,1,f +234,61195pr02,15,1,f +234,61409,72,2,f +234,6141,36,1,f +234,6180,71,2,f +234,6180,272,2,f +234,63864,71,2,f +234,63965,72,3,f +234,64567,80,3,f +234,6541,71,6,f +234,6553,72,2,f +234,6558,1,5,f +234,6587,28,1,f +234,6636,72,2,f +234,6636,272,2,f +234,85984,72,10,f +234,87544,272,2,f +234,87606,36,2,f +234,87615,272,1,f +234,87616,71,1,f +234,92280,0,2,f +234,92582,0,4,f +234,96874,25,1,t +234,970c00pr0304,308,1,f +234,970c01pr0644,15,2,f +234,970c120pr0498,308,1,f +234,973pr2331c01,70,1,f +234,973pr2638c01,0,1,f +234,973pr2639c01,15,2,f +234,98138,47,2,f +234,99780,0,4,f +236,2431,27,2,f +236,3004,2,1,f +236,3004,19,1,f +236,3004,5,4,f +236,3009,15,5,f +236,3009,27,2,f +236,3009,14,2,f +236,3009,2,1,f +236,3009,19,1,f +236,3010,15,10,f +236,3010,5,8,f +236,3010,27,4,f +236,3010,14,4,f +236,3010,19,11,f +236,3010,2,11,f +236,3022,27,2,f +236,3023,27,2,f +236,3023,14,1,f +236,3034,2,2,f +236,30565,27,3,f +236,3069b,15,2,f +236,3069b,27,1,f +236,33291,10,1,f +236,33291,5,1,t +236,33291,191,1,t +236,33291,191,3,f +236,33291,5,3,f +236,33291,10,1,t +236,33303,15,2,f +236,3460,30,1,f +236,3666,14,2,f +236,3666,27,5,f +236,3666,73,2,f +236,3710,73,4,f +236,3710,14,7,f +236,3710,27,8,f +236,3741,2,1,f +236,3741,2,1,t +236,3742,5,1,t +236,3742,15,3,f +236,3742,5,3,f +236,3742,15,1,t +236,41539,2,2,f +236,6141,85,1,t +236,6141,29,1,f +236,6141,29,1,t +236,6141,85,2,f +236,6191,30,2,f +236,6255,2,1,f +236,6256,191,1,f +236,6636,15,1,f +236,6636,30,2,f +236,87079pr133,15,1,f +236,87087,73,2,f +236,98387pr0001,15,1,f +236,98389pr0001,19,1,f +238,122c01,0,3,f +238,16542,7,1,f +238,3001,15,1,f +238,3004,15,1,f +238,3009,15,4,f +238,3010,15,2,f +238,3010,14,1,f +238,3020,14,1,f +238,3020,0,3,f +238,3022,0,2,f +238,3023,4,4,f +238,3023,0,6,f +238,3023,14,2,f +238,3024,36,2,f +238,3024,46,2,f +238,3024,14,2,f +238,3034,0,1,f +238,3037,15,6,f +238,3038,15,2,f +238,3062b,14,2,f +238,3460,4,2,f +238,3623,14,1,f +238,3624,4,1,f +238,3626apr0001,14,1,f +238,3660,14,11,f +238,3665,14,3,f +238,3666,4,2,f +238,3679,7,1,f +238,3680,0,1,f +238,3710,4,2,f +238,3787,0,2,f +238,3795,14,1,f +238,3821pb04,15,1,f +238,3822pb04,15,1,f +238,3823,47,1,f +238,3829c01,15,1,f +238,3832,0,1,f +238,3937,0,1,f +238,3938,0,1,f +238,4032a,0,2,f +238,4070,14,1,f +238,4070,15,2,f +238,4081a,0,4,f +238,4084,0,6,f +238,4175,0,1,f +238,4208,0,1,f +238,4209,14,1,f +238,4211,4,1,f +238,4213,15,1,f +238,4214,15,1,f +238,970c00,1,1,f +238,973p60c01,15,1,f +239,15573,70,4,f +239,18791,70,1,f +239,18792,70,1,f +239,19727pr0001,70,1,f +239,19727pr0004,15,1,f +239,19729pr0001,308,1,f +239,19729pr0002,15,1,f +239,19729pr0005,25,1,f +239,2357,15,2,f +239,2431,84,2,f +239,2456,70,3,f +239,2456,19,2,f +239,2456,71,1,f +239,3001,71,1,f +239,3001,2,3,f +239,3001,19,2,f +239,3001,70,12,f +239,3001,288,2,f +239,3003,71,4,f +239,3003,2,3,f +239,3003,15,4,f +239,3003,84,8,f +239,3003,19,5,f +239,3003,33,5,f +239,3003,70,11,f +239,3004pr0014,84,2,f +239,3005,84,12,f +239,3005,0,2,f +239,3020,70,3,f +239,3021,15,2,f +239,3022,72,6,f +239,3022,15,1,f +239,3022,70,7,f +239,3023,33,2,f +239,3023,29,1,f +239,3023,70,10,f +239,3023,15,1,f +239,3024,182,2,f +239,3024,15,6,f +239,3024,46,2,f +239,3031,10,1,f +239,3034,70,2,f +239,3039,33,6,f +239,3062b,27,11,f +239,3068bpr0236,84,1,f +239,3069b,84,4,f +239,33172,25,1,f +239,33183,10,4,f +239,33183,191,4,f +239,33291,70,20,f +239,33291,4,1,f +239,33291,191,1,f +239,33291,10,9,f +239,4032a,0,1,f +239,4032a,308,9,f +239,4216,19,2,f +239,4216,70,2,f +239,4342,19,1,f +239,44728,2,4,f +239,4727,10,2,f +239,4738a,84,1,f +239,4739a,84,1,f +239,60115,15,1,f +239,60475b,84,2,f +239,60478,70,2,f +239,6266,15,2,f +239,64644,308,2,f +239,6636,84,2,f +239,87580,72,2,f +239,87580,10,2,f +239,87580,2,4,f +239,87580,84,4,f +239,91405,10,1,f +239,92438,10,1,f +239,92438,1,1,f +239,93061,15,2,f +239,970c00,85,1,f +239,973pr2819c01,321,1,f +239,98283,71,4,f +240,2335pr02,15,1,f +240,2343,14,1,f +240,2343,7,4,f +240,2358p02,2,1,f +240,2412b,0,2,f +240,2436,15,2,f +240,2436,7,2,f +240,2440,15,1,f +240,2440,0,1,f +240,2445,7,2,f +240,2446,0,1,f +240,2446,4,1,f +240,2447,41,2,f +240,2452,4,1,f +240,2456,4,1,f +240,2555,1,2,f +240,2877,7,1,f +240,2880,4,1,f +240,298c02,4,2,f +240,3001,4,2,f +240,3003,15,1,f +240,3004,7,1,f +240,3005,4,4,f +240,3005,1,4,f +240,3020,7,2,f +240,3020,0,4,f +240,3021,0,2,f +240,3021,15,1,f +240,3022,0,1,f +240,3022,4,1,f +240,3023,15,1,f +240,3023,0,4,f +240,3023,7,1,f +240,3024,46,4,f +240,3031,15,1,f +240,3031,0,1,f +240,3034,7,1,f +240,3037,4,2,f +240,3062b,7,8,f +240,3069b,15,1,f +240,3070b,1,2,f +240,3070b,4,4,f +240,3070b,36,6,f +240,3298,0,1,f +240,3626bp03,14,1,f +240,3626bp04,14,1,f +240,3626bp05,14,1,f +240,3660,1,1,f +240,3660,4,1,f +240,3710,7,4,f +240,3710,15,3,f +240,3710,0,1,f +240,3787,4,1,f +240,3794a,15,3,f +240,3795,7,3,f +240,3821,4,1,f +240,3821,1,1,f +240,3822,4,1,f +240,3822,1,1,f +240,3823,41,2,f +240,3829c01,4,2,f +240,3938,4,2,f +240,3957a,15,1,f +240,4070,0,2,f +240,4081b,7,2,f +240,4175,4,1,f +240,4211,15,1,f +240,4213,0,1,f +240,4213,1,1,f +240,4214,0,1,f +240,4214,1,1,f +240,4275b,4,1,f +240,4276b,4,1,f +240,4349,7,4,f +240,4485,4,1,f +240,4531,4,1,f +240,4599a,7,2,f +240,4600,7,2,f +240,4859,1,1,f +240,6014a,15,12,f +240,6015,0,12,f +240,6141,0,8,f +240,6141,46,10,f +240,6157,0,4,f +240,970c00,15,1,f +240,970c00,1,1,f +240,970c00,4,1,f +240,973pb0101c01,15,1,f +240,973pr1156c01,1,1,f +240,973px36c01,4,1,f +241,3001,2,1,f +241,3023,15,3,f +241,30414,15,1,f +241,3710,15,1,f +241,3741,2,1,t +241,3741,2,1,f +241,3742,15,1,t +241,3742,15,3,f +241,3899,4,1,f +241,3957a,15,2,f +241,54200,4,2,f +241,54200,4,1,t +241,54200,15,2,f +241,54200,15,1,t +242,2926,0,2,f +242,30000,71,4,f +242,30157,71,4,f +242,30391,0,6,f +242,30648,0,8,f +242,3483,0,4,f +242,3641,0,8,f +242,4488,71,4,f +242,4600,0,4,f +242,4624,71,8,f +242,55981,71,8,f +242,55981,14,6,f +242,56902,71,4,f +242,6014b,14,8,f +242,6014b,15,4,f +242,6015,0,12,f +242,6157,15,4,f +242,6232,15,4,f +242,6249,71,4,f +243,10056pr0001,308,1,f +243,10065,70,1,f +243,11610,0,2,f +243,15535,72,4,f +243,15571,71,2,f +243,15712,71,2,f +243,18674,70,1,f +243,18868a,41,1,f +243,19981pr0038,41,1,f +243,2540,71,2,f +243,2780,0,1,f +243,2780,0,1,t +243,3020,0,1,f +243,3022,72,1,f +243,30374,70,1,f +243,3049c,71,1,f +243,3626cpr1772,78,1,f +243,3701,70,2,f +243,3749,19,4,f +243,3941,41,1,f +243,4032a,72,4,f +243,41879a,308,1,f +243,43722,71,1,f +243,43723,71,1,f +243,44728,72,2,f +243,53454,148,1,t +243,53454,148,3,f +243,60470a,0,2,f +243,6141,71,1,f +243,6141,71,1,t +243,64647,182,2,f +243,64647,182,1,t +243,87087,71,2,f +243,87994,0,2,f +243,87994,0,1,t +243,973pr2079c01,320,1,f +243,99780,0,4,f +245,2357,71,8,f +245,2412b,70,24,f +245,2412b,71,20,f +245,2412b,0,23,f +245,2413,71,2,f +245,2431,71,10,f +245,2432,71,9,f +245,2444,71,10,f +245,2445,0,1,f +245,2449,71,2,f +245,2454a,72,5,f +245,2460,72,1,f +245,2654,72,7,f +245,2736,71,1,f +245,2780,0,24,f +245,2780,0,2,t +245,2817,0,1,f +245,2877,72,48,f +245,2921,0,14,f +245,298c02,4,1,t +245,298c02,4,2,f +245,3001,72,10,f +245,3001,70,6,f +245,3002,0,6,f +245,3002,70,6,f +245,3003,0,8,f +245,3003,70,6,f +245,3004,0,11,f +245,3004,70,11,f +245,3008,70,18,f +245,3009,70,15,f +245,3010,70,8,f +245,3010,72,6,f +245,3010,0,16,f +245,30145,71,4,f +245,30162,72,2,f +245,3020,72,5,f +245,3021,72,18,f +245,3022,0,8,f +245,3023,0,23,f +245,3023,70,5,f +245,3023,19,7,f +245,3024,0,8,f +245,3029,0,1,f +245,3030,70,3,f +245,3031,0,3,f +245,3033,70,8,f +245,3034,0,7,f +245,3035,72,5,f +245,30357,70,4,f +245,3036,70,1,f +245,30363,70,13,f +245,30367b,134,1,f +245,3037,70,20,f +245,30374,0,4,f +245,30375,1,2,f +245,30375,320,2,f +245,30375,19,16,f +245,30376,19,20,f +245,30377,71,2,f +245,30377,71,1,t +245,30377,19,2,t +245,30377,19,20,f +245,30378,19,20,f +245,30384,70,2,f +245,3039,70,16,f +245,3039,71,2,f +245,3040b,71,4,f +245,3040b,70,8,f +245,3040b,0,4,f +245,3045,72,8,f +245,30602,134,2,f +245,3062b,19,40,f +245,3068b,70,15,f +245,3069bpr0090,72,4,f +245,3070b,71,1,t +245,3070b,71,2,f +245,3176,0,2,f +245,32000,71,21,f +245,32013,0,6,f +245,32018,72,15,f +245,32028,0,4,f +245,32039,71,1,f +245,32054,4,2,f +245,32059,0,1,f +245,32192,72,3,f +245,32270,0,2,f +245,32324,0,2,f +245,32532,71,3,f +245,32556,71,6,f +245,3298,70,12,f +245,3456,0,4,f +245,3622,0,10,f +245,3622,19,14,f +245,3623,19,4,f +245,3647,71,1,t +245,3647,71,1,f +245,3660,70,14,f +245,3665,72,10,f +245,3665,71,4,f +245,3678b,70,4,f +245,3684b,70,34,f +245,3685,70,12,f +245,3700,19,5,f +245,3702,71,3,f +245,3710,71,15,f +245,3713,71,1,t +245,3713,71,1,f +245,3743,71,7,f +245,3747a,70,17,f +245,3794a,71,4,f +245,3795,72,5,f +245,3832,70,1,f +245,3832,71,3,f +245,3839b,71,1,f +245,3937,71,4,f +245,3938,15,1,f +245,3958,0,2,f +245,3960,72,1,f +245,4032a,72,5,f +245,4070,71,10,f +245,4070,72,26,f +245,4081b,71,6,f +245,4162,71,20,f +245,41677,0,3,f +245,41751,70,2,f +245,41769,0,1,f +245,41770,0,1,f +245,42022,70,4,f +245,4274,71,1,t +245,4274,71,3,f +245,43093,1,10,f +245,43857,0,2,f +245,43857,71,1,f +245,43898,72,1,f +245,44126,0,2,f +245,44294,71,3,f +245,44300,71,4,f +245,44302a,72,4,f +245,44358,70,2,f +245,44359,70,4,f +245,44568,15,1,f +245,44570,71,1,f +245,4460a,72,12,f +245,4460a,70,4,f +245,44728,15,2,f +245,4477,70,2,f +245,4519,71,2,f +245,4589,182,1,f +245,4598,19,1,f +245,4697b,71,1,t +245,4697b,71,1,f +245,47456,70,1,f +245,48336,71,3,f +245,48729a,72,1,t +245,48729a,72,2,f +245,50950,72,2,f +245,50990a,70,2,f +245,52107,0,4,f +245,53451,135,3,f +245,53451,135,1,t +245,53989,148,2,f +245,53989,134,2,f +245,54200,70,2,t +245,54200,70,18,f +245,54200,182,16,f +245,56902,71,6,f +245,57585,71,1,f +245,57899,0,2,f +245,58247,0,4,t +245,58247,0,16,f +245,59230,19,2,t +245,59230,19,20,f +245,6019,15,3,f +245,6081,72,4,f +245,60849,71,4,f +245,6111,0,4,f +245,6112,71,2,f +245,6134,0,3,f +245,6141,72,70,f +245,6141,72,3,t +245,6178,70,2,f +245,6180,70,7,f +245,6215,0,6,f +245,6538b,72,1,f +245,6541,15,3,f +245,6558,0,12,f +245,6564,0,1,f +245,6565,0,1,f +245,6629,72,2,f +245,6636,72,21,f +246,2340,15,2,f +246,2357,73,2,f +246,2412b,73,4,f +246,2431,0,2,f +246,2450,15,2,f +246,2456,15,2,f +246,2458,7,2,f +246,2460,7,1,f +246,2479,0,1,f +246,2496,0,4,f +246,2540,4,4,f +246,2655,7,4,f +246,3001,15,2,f +246,3001,1,1,f +246,3003,15,4,f +246,3004,15,2,f +246,3008,15,2,f +246,3020,1,7,f +246,3020,7,2,f +246,3021,15,6,f +246,3022,15,6,f +246,3022,7,1,f +246,3023,7,8,f +246,3024,7,2,f +246,3034,15,2,f +246,3039,15,2,f +246,3039,73,1,f +246,3039,40,1,f +246,3040b,33,2,f +246,3040b,1,3,f +246,30414,15,2,f +246,3062b,1,4,f +246,3068b,73,4,f +246,3070b,46,1,t +246,3070b,46,2,f +246,3298,15,2,f +246,3298,1,1,f +246,3460,1,3,f +246,3475b,0,2,f +246,3623,15,4,f +246,3660,7,3,f +246,3665,73,2,f +246,3666,1,2,f +246,3673,7,2,f +246,3710,7,2,f +246,3710,1,5,f +246,3747a,15,1,f +246,3747a,7,2,f +246,3794a,15,4,f +246,3795,1,1,f +246,3795,15,2,f +246,3933,15,1,f +246,3934,15,1,f +246,3937,15,2,f +246,4070,15,2,f +246,4081b,7,4,f +246,4162,0,2,f +246,41769,1,4,f +246,41769,15,1,f +246,41770,1,4,f +246,41770,15,1,f +246,42022,1,2,f +246,4286,73,6,f +246,4287,7,4,f +246,43710,15,1,f +246,43710,1,1,f +246,43711,15,1,f +246,43711,1,1,f +246,43720,15,1,f +246,43721,15,1,f +246,44661,15,1,f +246,4589,34,2,f +246,4617b,0,2,f +246,4855,7,3,f +246,6070,143,1,f +246,6134,0,2,f +246,6141,4,4,f +246,6141,36,1,t +246,6141,36,2,f +246,6141,4,1,t +246,6541,7,2,f +246,6564,15,2,f +246,6565,15,2,f +248,2412b,71,2,f +248,2419,72,1,f +248,2431,288,1,f +248,3002,72,1,f +248,3003,71,1,f +248,30162,72,2,f +248,30165,72,2,f +248,3020,71,3,f +248,3022,15,1,f +248,3023,0,1,f +248,30357,72,2,f +248,30357,19,2,f +248,30383,72,2,f +248,3040b,320,6,f +248,30553,71,2,f +248,30602,0,2,f +248,3069b,71,4,f +248,32123b,71,1,t +248,32123b,71,2,f +248,3660,71,1,f +248,3666,288,2,f +248,3700,70,3,f +248,3713,71,2,f +248,3713,71,1,t +248,3795,72,1,f +248,4032a,71,1,f +248,43710,320,1,f +248,43711,320,1,f +248,44294,71,1,f +248,4600,71,1,f +248,48729b,0,2,f +248,48729b,0,1,t +248,50950,288,2,f +248,54200,71,1,t +248,54200,320,6,f +248,54200,320,1,t +248,54200,71,2,f +248,6091,288,4,f +248,6141,182,5,f +248,6141,182,1,t +248,6192,72,1,f +248,85984,72,1,f +248,87087,0,2,f +250,2039,13,2,f +250,2039,15,1,f +250,22239,89,1,f +250,22670,383,3,f +250,2356,110,1,f +250,2357,15,3,f +250,2566,15,2,f +250,3003,2,1,f +250,3003,5,2,f +250,3004,5,2,f +250,3005,13,7,f +250,30056,18,4,f +250,30077,5,1,f +250,30103,0,1,f +250,30106,47,1,f +250,30134,18,1,f +250,30151a,47,1,f +250,30153,36,1,f +250,30153,33,8,f +250,30153,41,2,f +250,3022,1,1,f +250,30238,7,1,f +250,3028,15,1,f +250,3069bpr0055,15,1,f +250,33008,110,2,f +250,33009,17,1,f +250,33048c01,366,1,f +250,33051,10,1,f +250,33051,2,1,f +250,33051,4,1,f +250,33061,41,3,f +250,3308,5,2,f +250,33172,25,1,f +250,33183,10,1,f +250,33201,0,1,f +250,33203,6,1,f +250,33207p01,15,1,f +250,33213,18,5,f +250,33214pb02,17,1,f +250,33215,114,4,f +250,33216,45,2,f +250,33217,34,2,f +250,33227,5,1,f +250,33230,20,1,f +250,3622,13,2,f +250,3626bpb0004,33,1,f +250,3626bpr0895,15,1,f +250,3710,18,1,f +250,3741,2,3,f +250,3742,5,3,f +250,3742,1,3,f +250,3742,4,3,f +250,3742,1,1,t +250,3742,4,1,t +250,3742,5,1,t +250,3794a,15,6,f +250,3940b,110,1,f +250,3942c,18,8,f +250,3942c,15,1,f +250,3957a,13,2,f +250,4032a,0,1,f +250,4032a,15,1,f +250,4032a,5,1,f +250,4088,15,3,f +250,4151a,17,1,f +250,4202,20,1,f +250,4237,5,1,f +250,4238,5,1,f +250,4341,0,1,f +250,4342,18,1,f +250,4345b,47,1,f +250,4346,47,1,f +250,4495b,5,2,f +250,45,383,1,f +250,4589,15,7,f +250,4589,46,8,f +250,4728,15,1,f +250,4740,15,2,f +250,4743,15,1,f +250,57503,334,1,f +250,57504,334,1,f +250,57505,334,1,f +250,57506,334,1,f +250,6112,15,2,f +250,6112,13,1,f +250,6124,42,1,f +250,6131,0,1,f +250,6141,57,1,t +250,6141,15,1,f +250,6141,15,1,t +250,6141,57,4,f +250,6162,20,3,f +250,6176,13,1,f +250,6179,13,2,f +250,6179,5,2,f +250,6179px3,13,1,f +250,6180,4,1,f +250,6182,15,9,f +250,6191,15,2,f +250,6192,5,2,f +250,6215,5,2,f +250,6254,18,3,f +250,6255,2,2,f +250,6255,10,1,f +250,6256,383,3,f +250,6942,47,1,f +250,6944,13,1,f +250,72515,383,1,f +250,75347,15,3,f +250,belvcloak1,4,1,f +250,belvfair4,-1,1,f +250,belvfem14,-1,1,f +250,belvfem18,-1,1,f +250,belvmale7,-1,1,f +250,belvskirt13,89,1,f +250,belvskirt20,15,1,f +250,x16,17,1,f +250,x682c01,15,1,f +254,2340,4,1,f +254,2412b,7,2,f +254,2419,4,1,f +254,2420,4,4,f +254,2445,0,2,f +254,2450,4,4,f +254,2536,7,1,f +254,2654,0,1,f +254,2711,0,2,f +254,2717,1,1,f +254,2730,4,1,f +254,2780,0,10,f +254,2825,7,4,f +254,2952,0,1,f +254,3021,4,1,f +254,3022,4,1,f +254,3022,0,2,f +254,3023,4,1,f +254,3024,4,1,f +254,3031,4,1,f +254,3069b,14,2,f +254,3069b,4,2,f +254,3460,0,2,f +254,3482,7,2,f +254,3483,0,2,f +254,3623,4,3,f +254,3647,7,4,f +254,3650c,7,3,f +254,3651,7,4,f +254,3665,4,4,f +254,3666,4,1,f +254,3673,7,1,f +254,3700,4,4,f +254,3701,4,5,f +254,3702,4,4,f +254,3703,4,1,f +254,3705,0,3,f +254,3706,0,3,f +254,3707,0,2,f +254,3708,0,2,f +254,3709,4,2,f +254,3710,4,4,f +254,3713,7,7,f +254,3737,0,1,f +254,3749,7,4,f +254,3794a,0,2,f +254,4185,7,2,f +254,4262,4,2,f +254,4265b,7,10,f +254,4274,7,3,f +254,4477,0,2,f +254,4746,0,1,f +254,4871,4,1,f +254,6536,7,2,f +254,6538a,7,1,f +254,6553,7,4,f +254,6558,0,2,f +254,75c11,8,2,f +255,12825,0,1,f +255,3020,4,1,f +255,3710,70,1,f +255,54200,70,4,f +255,54200,70,1,t +255,6182,19,1,f +255,64647,182,1,t +255,64647,182,1,f +255,98283,28,2,f +256,6007,2,1,f +258,3626bpb0437,14,1,f +258,87995,4,1,f +258,87996pr0001,297,1,f +258,88646,0,1,f +258,970d11pr0137,4,1,f +258,973pr1534c01,27,1,f +259,10201,0,1,f +259,11097,179,1,f +259,11113pr0005,85,1,f +259,11127,41,11,f +259,11477,72,2,f +259,11767,72,1,f +259,12825,0,2,f +259,15065pr0001,379,1,f +259,15082,0,4,f +259,2419,320,1,f +259,2654,0,6,f +259,2780,0,2,f +259,3021,0,2,f +259,3023,320,1,f +259,3023,72,3,f +259,3034,0,1,f +259,3062b,41,1,f +259,32062,4,2,f +259,32064b,320,4,f +259,3626cpr1323,379,1,f +259,3705,0,1,f +259,3710,320,2,f +259,3710,72,1,f +259,4032a,70,5,f +259,4497,0,1,f +259,45590,0,2,f +259,50950,0,2,f +259,52031,0,1,f +259,55706,0,2,f +259,59443,72,2,f +259,59900,15,5,f +259,59900,0,1,f +259,60481,320,2,f +259,61252,72,2,f +259,6141,42,5,f +259,64567,0,1,f +259,73983,72,2,f +259,85984,72,1,f +259,93273,320,1,f +259,970c00pr0587,379,1,f +259,973pr2536c01,379,1,f +259,98138,41,1,f +259,98139,148,1,f +262,3032,70,1,f +262,3048c,4,1,f +262,3062b,4,2,f +262,3062b,70,4,f +262,3062b,15,2,f +262,3626bpr0579,14,1,f +262,3666,4,1,f +262,4460b,4,2,f +262,4495b,297,1,f +262,4495b,4,1,f +262,6141,1,1,f +262,6141,4,1,t +262,6141,15,1,f +262,6141,4,1,f +262,6141,15,1,t +262,6141,1,1,t +262,62537pr0003a,15,1,f +262,970d10,15,1,f +262,973pr1629c01,4,1,f +265,3001,71,3,f +265,3002,71,2,f +265,3003,19,1,f +265,30033,15,1,f +265,3005,72,4,f +265,3020,72,2,f +265,3020,19,3,f +265,3021,19,7,f +265,3021,72,6,f +265,3022,19,3,f +265,3022,72,3,f +265,3022,2,1,f +265,3023,19,7,f +265,3023,0,1,f +265,3023,71,11,f +265,3023,72,5,f +265,3024,0,3,f +265,3024,71,2,f +265,3024,19,3,f +265,3035,19,3,f +265,3044b,4,9,f +265,3048c,4,2,f +265,3622,19,1,f +265,3623,72,1,f +265,3623,19,4,f +265,3623,71,1,f +265,3706,0,1,f +265,3794b,71,1,f +265,3941,72,5,f +265,3943b,72,1,f +265,3960,320,1,f +265,4032a,2,2,f +265,4490,72,4,f +265,54200,4,12,f +265,6141,2,4,f +265,85080,72,6,f +267,11211,4,2,f +267,14417,72,2,f +267,14418,71,2,f +267,14769,0,1,f +267,15068,25,1,f +267,15573,0,2,f +267,2420,70,2,f +267,2420,0,2,f +267,2420,72,4,f +267,3001,2,2,f +267,3002,70,1,f +267,3002,0,1,f +267,3004,15,3,f +267,3004,0,2,f +267,3005,70,2,f +267,3020,25,1,f +267,3020,15,1,f +267,3020,70,1,f +267,3020,19,1,f +267,3021,0,5,f +267,3021,19,2,f +267,3022,0,2,f +267,3022,19,1,f +267,3022,70,2,f +267,3023,70,4,f +267,3023,25,4,f +267,3023,4,2,f +267,3023,72,3,f +267,3023,15,2,f +267,3023,19,4,f +267,3023,0,2,f +267,3024,70,2,f +267,3024,25,2,f +267,3024,0,6,f +267,3024,15,2,f +267,3024,297,4,f +267,3037,0,2,f +267,3040b,0,2,f +267,30414,14,2,f +267,3069b,25,2,f +267,3069b,0,2,f +267,3070b,25,2,f +267,3070b,0,2,f +267,33057,484,2,f +267,33291,10,2,f +267,3623,0,6,f +267,3660,70,2,f +267,3660,0,6,f +267,3665,0,2,f +267,3665,19,2,f +267,3700,19,1,f +267,3710,72,1,f +267,4274,71,1,f +267,44375b,0,1,f +267,54200,0,4,f +267,54200,19,4,f +267,54200,15,2,f +267,6091,70,4,f +267,6091,0,4,f +267,61252,19,2,f +267,6141,19,1,f +267,6233,0,1,f +267,63864,0,2,f +267,73983,0,4,f +267,85984,0,3,f +267,87087,19,4,f +267,88930,25,3,f +267,98138,19,1,f +267,98138pr0008,15,2,f +268,30103,0,1,f +268,30105,0,1,f +268,3626bpx74,14,1,f +268,3957a,36,1,f +268,59,383,1,f +268,6027,0,1,f +268,6028,0,1,f +268,6126a,57,1,f +268,6127,0,1,f +268,6128,0,1,f +268,6133,57,2,f +268,75174,0,1,f +268,970x026,8,1,f +268,973px125c01,4,1,f +268,bb190pb01,7,1,f +269,10247,71,1,f +269,10928,72,2,f +269,11215,71,4,f +269,11293,272,1,f +269,11295,72,1,f +269,11297,41,1,f +269,11458,72,2,f +269,11476,71,1,f +269,14210,0,1,f +269,15068,72,4,f +269,15068,0,1,f +269,15573,15,5,f +269,18904,288,1,f +269,18905pr0001,288,1,f +269,18906,288,1,f +269,2412b,72,5,f +269,2417,288,1,f +269,2432,72,3,f +269,2445,71,6,f +269,2446,15,1,f +269,2447,40,1,f +269,2447,40,1,t +269,2456,0,4,f +269,2654,46,1,f +269,2654,0,7,f +269,298c02,4,1,t +269,298c02,4,2,f +269,3001,71,2,f +269,3004,4,3,f +269,3010,71,2,f +269,3020,72,2,f +269,3020,15,1,f +269,3022,0,2,f +269,3023,36,2,f +269,3023,0,2,f +269,3023,272,2,f +269,3024,36,1,f +269,3024,36,1,t +269,3024,34,1,f +269,3024,34,1,t +269,3032,2,1,f +269,30332,0,1,f +269,3035,72,1,f +269,3037,14,2,f +269,30374,14,4,f +269,3039,272,2,f +269,3039pr0013,15,1,f +269,3040b,288,3,f +269,30553,0,1,f +269,30592,72,1,f +269,30602,72,1,f +269,3068b,72,1,f +269,3068b,14,3,f +269,3069b,33,3,f +269,3069bpr0100,2,2,f +269,32059,28,1,f +269,32124,0,12,f +269,3245b,15,2,f +269,3460,14,4,f +269,3626cpr0914,14,1,f +269,3626cpr1628,14,1,f +269,3626cpr1663,14,1,f +269,3666,15,3,f +269,3666,28,2,f +269,3666,272,4,f +269,3673,71,1,f +269,3673,71,1,t +269,3710,272,3,f +269,3710,4,1,f +269,3749,19,2,f +269,3795,15,1,f +269,3795,28,1,f +269,3829c01,71,1,f +269,3839b,71,1,f +269,3941,70,2,f +269,4032a,71,2,f +269,4079,70,1,f +269,41770,15,1,f +269,42022,4,2,f +269,42023,4,2,f +269,4274,1,1,f +269,4274,1,1,t +269,43093,1,2,f +269,43712,14,4,f +269,43713,14,4,f +269,43719,14,4,f +269,44126,72,2,f +269,47406,72,1,f +269,47457,72,1,f +269,50943,72,1,f +269,51739,72,2,f +269,51739,28,1,f +269,52501,72,2,f +269,54200,72,1,t +269,54200,72,2,f +269,60219,72,2,f +269,60601,41,4,f +269,60897,15,8,f +269,61072,0,2,f +269,61345,15,2,f +269,61409,72,4,f +269,61482,71,1,f +269,61482,71,1,t +269,6154,15,2,f +269,62360,47,1,f +269,6239,15,1,f +269,62462,0,1,f +269,62743,0,6,f +269,63864,72,2,f +269,64566,0,1,f +269,72454,14,2,f +269,87079,272,4,f +269,87615,272,1,f +269,87616,72,1,f +269,87991,484,1,f +269,91988,72,1,f +269,92582,15,1,f +269,92585,4,1,f +269,92590,28,1,f +269,93606,72,2,f +269,970c00,379,1,f +269,970c00,272,1,f +269,970c00pr0293,272,1,f +269,973pr1947bc01,272,1,f +269,973pr2931c01,19,1,f +269,973pr2942c01,15,1,f +269,98138,36,1,t +269,98138,34,1,f +269,98138,36,1,f +269,98138,34,1,t +269,98279,28,1,f +269,98284,70,1,f +269,99207,71,4,f +269,99780,72,2,f +272,15319,71,1,f +272,16597,14,1,f +272,17492,14,1,f +272,20302,25,2,f +272,2302,10,4,f +272,3437,10,2,f +272,3437,4,2,f +272,41969,0,1,f +272,44524,10,1,f +272,47510pr0005,73,1,f +272,47511pr0004,71,1,f +272,6510,5,1,f +272,76371,25,4,f +272,76371,73,1,f +272,93535,14,1,f +272,98233,4,1,f +272,98465,1,1,f +274,3651,7,5,f +274,3673,7,10,f +274,3713,7,5,f +274,9244,7,1,f +276,3626bpr0689,14,1,f +276,3878,0,1,f +276,88646,0,1,f +276,88704,15,1,f +276,970x001,0,1,f +276,973pr1651c01,4,1,f +279,3022,15,1,f +279,3023,71,3,f +279,3024,71,3,f +279,3031,0,1,f +279,3032,71,4,f +279,3035,0,4,f +279,3062b,71,112,f +279,3068b,71,22,f +279,3069b,0,6,f +279,3069b,71,1,f +279,32123b,71,1,f +279,32123b,71,1,t +279,32125,71,2,f +279,3623,71,3,f +279,3710,71,3,f +279,3794b,71,5,f +279,3957a,71,13,f +279,4162,0,3,f +279,4162pr0005,0,1,f +279,6141,71,18,f +279,6141,71,1,t +279,63965,71,2,f +280,120630,89,1,f +280,2711,7,2,f +280,2780,0,8,f +280,2854,7,1,f +280,3022,14,2,f +280,3023,14,2,f +280,3023,7,2,f +280,3127,7,1,f +280,3648a,7,1,f +280,3673,7,4,f +280,3700,4,2,f +280,3701,4,1,f +280,3702,4,3,f +280,3703,4,4,f +280,3704,0,1,f +280,3705,0,4,f +280,3706,0,3,f +280,3708,0,1,f +280,3709,14,1,f +280,3710,14,2,f +280,3713,7,9,f +280,3738,14,2,f +280,3832,4,1,f +280,3941,4,4,f +280,4185,7,3,f +280,4864a,14,4,f +280,4864a,0,4,f +280,56823c75,0,1,f +280,9614bc,9999,1,f +280,rb00169,0,2,f +282,30176,2,1,f +282,3021,70,2,f +282,3022,70,2,f +282,3023,70,1,f +282,3035,2,1,f +282,3062b,70,1,f +282,3068b,70,1,f +282,3068bpr0003,15,1,f +282,33291,4,1,f +282,3626cpr0645,14,1,f +282,3626cpr0647,14,1,f +282,3937,0,1,f +282,59900,70,5,f +282,6134,0,1,f +282,6266,0,1,f +282,87580,70,1,f +282,90370pr0001,0,1,f +282,92814,0,1,f +282,970c00,71,1,f +282,97302,0,1,f +282,973c18,0,1,f +284,122c01,0,2,f +284,3003,15,4,f +284,3003,14,2,f +284,3003,47,1,f +284,3004,15,40,f +284,3004,0,7,f +284,3004,14,6,f +284,3004p13,15,1,f +284,3004p18,15,2,f +284,3005,15,35,f +284,3005,14,6,f +284,3005,0,4,f +284,3007,0,1,f +284,3007,15,1,f +284,3008,0,2,f +284,3008,15,13,f +284,3009,0,2,f +284,3009,15,14,f +284,3009p18,15,1,f +284,3010,15,1,f +284,3020,47,1,f +284,3020,0,2,f +284,3020,14,2,f +284,3021,15,1,f +284,3021,0,2,f +284,3022,15,2,f +284,3022,0,1,f +284,3023,14,3,f +284,3023,0,13,f +284,3024,36,3,f +284,3024,0,6,f +284,3024,15,6,f +284,3027,0,2,f +284,3030,0,1,f +284,3031,15,1,f +284,3032,0,1,f +284,3033,0,3,f +284,3036,0,2,f +284,3039,0,2,f +284,3040b,15,4,f +284,3040b,0,4,f +284,3040p02,4,2,f +284,3062a,33,9,f +284,3062a,15,7,f +284,3062a,0,5,f +284,3062a,36,1,f +284,3068b,14,3,f +284,3069b,4,2,f +284,3069b,14,2,f +284,3144,7,1,f +284,3185,14,3,f +284,3460,15,2,f +284,3460,14,3,f +284,3460,7,6,f +284,3461,7,1,f +284,3462,0,1,f +284,3464,4,2,f +284,3471,2,1,f +284,3480,7,1,f +284,3481,15,1,f +284,3581,15,4,f +284,3622,15,6,f +284,3623,15,1,f +284,3623,0,1,f +284,3624,15,1,f +284,3626apr0001,14,4,f +284,3633,14,6,f +284,3641,0,6,f +284,3644,47,4,f +284,3660,15,5,f +284,3660,0,3,f +284,3665,15,4,f +284,3666,7,2,f +284,3710,15,7,f +284,3710,0,6,f +284,3788,15,2,f +284,3794a,14,2,f +284,3794a,15,1,f +284,3795,0,1,f +284,3795,15,1,f +284,3795,14,1,f +284,3821p02,15,2,f +284,3822p02,15,2,f +284,3823,47,2,f +284,3829c01,15,1,f +284,3832,0,1,f +284,3842a,15,4,f +284,3853,14,3,f +284,3854,0,6,f +284,3856,2,6,f +284,3861b,14,3,f +284,3901,6,1,f +284,3957a,7,1,f +284,3962a,0,2,f +284,3963,7,1,f +284,4212a,15,1,f +284,606p02,7,1,f +284,69c01,15,1,f +284,8,15,2,f +284,970c00,0,3,f +284,970c00,1,1,f +284,973p26c01,1,1,f +284,973pb0079c01,0,2,f +284,973pb0091c01,0,1,f +286,3626cpr1149,78,1,f +286,87556pr0004,0,1,f +286,970c00pr0583,0,1,f +286,973pr2293c01,0,1,f +293,2339,0,1,t +293,2357,484,1,t +293,2419,7,1,t +293,2420,1,1,t +293,2420,73,1,t +293,2420,462,1,t +293,2431,73,1,t +293,2432,70,1,t +293,2445,7,1,t +293,2449,14,1,t +293,2450,1,1,t +293,2454a,15,1,t +293,2454a,7,1,t +293,2460,14,1,t +293,2626,4,1,t +293,2639,7,1,t +293,2921,8,1,t +293,3001,0,2,f +293,3001,2,2,f +293,3001,1,2,f +293,3001,4,2,f +293,3001,29,1,t +293,3001,15,2,f +293,3001,14,2,f +293,3001,3,1,t +293,3002,4,2,f +293,3002,0,2,f +293,3002,2,2,f +293,3002,14,4,f +293,3002,15,4,f +293,3002,1,2,f +293,3003,1,6,f +293,3003,36,8,f +293,3003,14,6,f +293,3003,0,6,f +293,3003,2,6,f +293,3003,4,6,f +293,3003,33,8,f +293,3003,7,1,t +293,3003,15,8,f +293,3004,14,8,f +293,3004,288,1,t +293,3004,2,8,f +293,3004,0,10,f +293,3004,15,10,f +293,3004,4,6,f +293,3004,1,6,f +293,3005,15,8,f +293,3005,4,8,f +293,3005,1,8,f +293,3005,0,8,f +293,30055,15,1,t +293,3005pe1,14,2,f +293,3008,484,1,t +293,30099,7,1,t +293,3010,14,2,f +293,3010,2,2,f +293,3010,15,2,f +293,30136,7,1,t +293,30137,6,1,t +293,3020,15,2,f +293,3020,1,1,t +293,3020,0,2,f +293,3020,27,1,t +293,3021,15,2,f +293,3022,15,2,f +293,3022,73,1,t +293,3022,0,2,f +293,3024,8,1,t +293,3029,1,1,t +293,3031,2,1,t +293,3031,10,1,t +293,3033,4,1,t +293,3033,15,1,t +293,3036,8,1,t +293,30363pb006,15,1,t +293,30367b,15,1,t +293,30367b,14,1,t +293,30367b,4,1,t +293,3037,320,1,t +293,3037ps3,7,1,t +293,3037px7,7,1,t +293,3039,33,2,f +293,3039,36,2,f +293,3039pc2,15,1,t +293,3040b,73,1,t +293,3040b,14,2,f +293,3041,8,1,t +293,3043,484,1,t +293,3044c,484,1,t +293,3045,2,1,t +293,3045,25,1,t +293,3048c,70,1,t +293,3048c,2,1,t +293,3049b,484,1,t +293,30504,15,1,t +293,30602,15,1,t +293,30602,320,1,t +293,30602,2,1,t +293,30603pb11,73,1,t +293,3062b,36,1,t +293,3062b,378,1,t +293,3065,33,6,f +293,3065,36,6,f +293,3069b,25,1,t +293,3070b,8,1,t +293,3185,0,1,t +293,32018,0,1,t +293,32064a,1,1,t +293,32064a,71,1,t +293,32064a,0,1,t +293,32064b,71,1,t +293,32064b,7,1,t +293,32064b,2,1,t +293,32064b,0,1,t +293,32064b,14,1,t +293,32064b,288,1,t +293,3297,15,1,t +293,3297,1,1,t +293,3297px9,15,1,t +293,3298,2,1,t +293,3298p10,15,1,t +293,3298p19,14,1,t +293,3298p71,0,1,t +293,3298p76,2,1,t +293,3298pb028,15,1,t +293,3300,2,1,t +293,3455,72,1,t +293,3626b,46,1,t +293,3626b,92,1,t +293,3626b,0,1,t +293,3626bpx85,47,1,t +293,3659,7,1,t +293,3665,14,2,f +293,3675,0,1,t +293,3678b,2,1,t +293,3684,19,1,t +293,3700,6,1,t +293,3730,1,1,t +293,3731,1,1,t +293,3731,70,1,t +293,3747a,8,1,t +293,3747a,2,1,t +293,3747a,320,1,t +293,3830,4,1,t +293,3830,7,2,t +293,3831,7,1,t +293,3831,1,1,t +293,3861b,6,1,t +293,3937,25,1,t +293,3938,70,1,t +293,4032a,7,1,t +293,4032a,2,1,t +293,4088px1,15,1,t +293,4150,14,1,t +293,4161,14,1,t +293,41747pb010,15,1,t +293,41748pb010,15,1,t +293,4175,14,1,t +293,41764,8,1,t +293,41765,8,1,t +293,41767,15,1,t +293,41768,15,1,t +293,41854,8,1,t +293,41854,0,1,t +293,41862,7,1,t +293,4287,320,1,t +293,43720,7,1,t +293,43721,7,1,t +293,43722,22,1,t +293,43722,73,1,t +293,43722,4,1,t +293,43723,22,1,t +293,43723,73,1,t +293,43723,4,1,t +293,4445,8,1,t +293,44675,0,1,t +293,44728,15,1,t +293,4589,70,1,t +293,4589,378,1,t +293,4728,143,1,t +293,4740,36,1,t +293,47457,85,1,t +293,48183,0,1,t +293,4859,7,1,t +293,4859,1,1,t +293,4871,7,1,t +293,6060,8,1,t +293,6091,14,1,t +293,6112,7,1,t +293,6141,19,1,t +293,6182,19,1,t +293,6182,0,1,t +293,6187,226,1,t +293,6191,14,1,t +293,6222,15,1,t +293,6541,6,1,t +293,73983,8,1,t +294,13808,297,1,f +294,15524pr0002,14,1,f +294,16709pat01,4,1,f +294,16820,4,1,f +294,88646,0,1,f +294,973pr652c01,4,1,f +295,2357,0,30,f +295,2357,15,93,f +295,3001,15,2,f +295,3002,0,1,f +295,3002,15,3,f +295,3004,15,19,f +295,3004,0,7,f +295,3005,15,20,f +295,3005,0,1,f +295,3008,0,3,f +295,3008,15,15,f +295,3009,0,6,f +295,3009,15,32,f +295,3010,0,5,f +295,3010,15,16,f +295,3020,0,2,f +295,3023,0,4,f +295,3024,0,4,f +295,3035,0,1,f +295,3070b,0,4,f +295,3622,0,4,f +295,3622,15,6,f +295,3666,15,2,f +295,3666,0,2,f +295,3710,0,6,f +295,3710,15,2,f +295,3958,0,3,f +295,4162,0,4,f +297,3811,10,1,f +299,11477,1,2,f +299,11477,4,2,f +299,15712,72,1,f +299,18674,72,1,f +299,18868a,41,1,f +299,19981pr0018,41,1,f +299,2540,1,3,f +299,30162,72,2,f +299,3021,1,1,f +299,3023,1,5,f +299,30602,47,1,f +299,3626cpr1767,78,1,f +299,3941,41,1,f +299,4032a,1,1,f +299,41769,1,1,f +299,41770,1,1,f +299,43722,4,1,f +299,43723,4,1,f +299,44676,47,2,f +299,4740,41,2,f +299,47458,4,1,f +299,50231,4,1,f +299,61409,4,2,f +299,6141,41,4,f +299,87087,72,6,f +299,970x021,1,1,f +299,973pr1957c01,1,1,f +299,98726,0,1,f +300,3008,4,25,f +301,2412b,15,1,f +301,2419,0,1,f +301,2433,0,2,f +301,2446,0,1,f +301,2447,42,1,f +301,2450,0,2,f +301,2452,0,2,f +301,3020,0,1,f +301,3069bp13,15,2,f +301,3626apr0001,14,1,f +301,3838,0,1,f +301,4276b,0,2,f +301,4531,0,2,f +301,4591,15,1,f +301,4598,0,1,f +301,970x026,15,1,f +301,973p51c01,15,1,f +302,10201,71,1,f +302,11212,72,1,f +302,11458,72,2,f +302,15573,71,4,f +302,2412b,71,1,f +302,2460,72,2,f +302,3005,71,1,f +302,30135,0,1,f +302,3020,72,1,f +302,3023,36,2,f +302,3034,72,1,f +302,3068b,0,1,f +302,3069b,71,3,f +302,32028,0,2,f +302,3623,71,3,f +302,3626cpr1363,78,1,f +302,3665,71,2,f +302,3666,71,1,f +302,3700,71,1,f +302,3710,4,1,f +302,3794a,72,1,f +302,3794b,72,1,f +302,3795,71,1,f +302,3894,71,1,f +302,4032a,72,3,f +302,4081b,71,2,f +302,41769,71,2,f +302,41770,71,2,f +302,44728,72,6,f +302,4477,71,1,f +302,4740,41,3,f +302,51739,72,1,f +302,54200,72,1,t +302,54200,71,1,t +302,54200,72,4,f +302,54200,71,4,f +302,59900,71,2,f +302,60481,71,11,f +302,61184,71,2,f +302,6141,179,7,f +302,6141,179,1,t +302,6141,36,1,t +302,6141,36,4,f +302,6541,72,1,f +302,85984,71,2,f +302,90194,72,1,f +302,92738,0,1,f +302,970c00pr0583,0,1,f +302,973pr0300c01,0,1,f +303,298c02,7,2,f +303,3020,1,1,f +303,3024,36,2,f +303,3626apr0001,14,1,f +303,3838,15,1,f +303,3842b,15,1,f +303,3933a,1,1,f +303,3934a,1,1,f +303,3941,7,2,f +303,3957a,36,1,f +303,4032a,7,1,f +303,4360,7,1,f +303,4589,36,4,f +303,4590,7,1,f +303,4590,1,2,f +303,4595,7,2,f +303,4596,1,3,f +303,4598,1,1,f +303,4623,1,1,f +303,4735,7,2,f +303,4740,36,3,f +303,6141,46,2,f +303,73590c01a,46,2,f +303,970c00,15,1,f +303,973p90c05,15,1,f +304,2399,4,1,f +304,2413,15,2,f +304,2415,7,3,f +304,2421,0,2,f +304,2437,41,1,f +304,3002,4,1,f +304,3003,0,1,f +304,3004,15,4,f +304,3020,15,5,f +304,3021,15,3,f +304,3021,0,1,f +304,3021,4,2,f +304,3022,0,1,f +304,3022,15,3,f +304,3023,0,3,f +304,3024,15,2,f +304,3034,15,1,f +304,3039pc4,0,1,f +304,3139,0,3,f +304,3464,47,3,f +304,3479,15,1,f +304,3626apr0001,14,2,f +304,3747a,4,1,f +304,3795,15,1,f +304,3900,15,2,f +304,3901,0,1,f +304,4213,15,1,f +304,4315,15,1,f +304,4485,4,1,f +304,4488,4,2,f +304,4855,15,1,f +304,4856a,15,1,f +304,4858,15,1,f +304,4858,4,1,f +304,4859,15,1,f +304,4859,0,2,f +304,4865a,0,1,f +304,4865a,4,4,f +304,6141,36,3,f +304,6141,47,2,f +304,6141,34,1,f +304,970c00,7,1,f +304,970c00,15,1,f +304,973p16c01,15,1,f +304,973p18c01,1,1,f +307,2362b,0,2,f +307,2412b,0,1,f +307,2432,6,2,f +307,2456,6,1,f +307,2540,0,2,f +307,2921,6,12,f +307,3004,0,4,f +307,3004,6,21,f +307,3009,6,1,f +307,3020,6,1,f +307,3023,6,2,f +307,3037,6,6,f +307,3040b,6,6,f +307,3062b,8,2,f +307,3068b,0,1,f +307,32064b,15,1,f +307,3297,0,4,f +307,3623,6,2,f +307,3660,6,4,f +307,3794a,0,1,f +307,3941,0,1,f +307,3960,0,1,f +307,4032a,0,1,f +307,4175,0,2,f +307,4215b,0,2,f +307,4349,0,1,f +307,4510,0,2,f +307,6019,0,2,f +307,6111,6,2,f +307,6141,42,4,f +307,6141,8,8,f +307,6141,36,3,f +307,6587,8,1,f +308,2431,7,4,f +308,30285,7,6,f +308,30300,7,1,f +308,30391,0,6,f +308,30397,0,2,f +308,30619,2,1,f +308,30633pb02,40,1,f +308,30642,0,1,f +308,45408,383,2,f +308,45409pb02,2,1,f +308,4j003a,9999,1,f +308,6249,8,2,f +310,4774c02,15,1,f +311,48419,0,1,f +312,2450,2,4,f +312,2458,14,1,f +312,2460,4,1,f +312,2496,0,5,f +312,2655,7,4,f +312,2655,14,1,f +312,2877,4,2,f +312,3001,1,1,f +312,3002,14,1,f +312,3002,0,1,f +312,3002,4,2,f +312,3003,7,1,f +312,3003,0,1,f +312,3003,14,1,f +312,3003,4,2,f +312,3003,15,1,f +312,3003,1,1,f +312,3003pe2,14,3,f +312,3003pe2,4,2,f +312,3004,2,3,f +312,3004,4,8,f +312,3004,15,3,f +312,3004,14,7,f +312,3004,1,5,f +312,3004,0,6,f +312,3004p0b,14,3,f +312,3004pr20,15,1,f +312,3005,14,1,f +312,3005,0,1,f +312,3005pe1,15,2,f +312,3005pe1,14,4,f +312,3010,4,1,f +312,3010,14,2,f +312,3020,7,1,f +312,3020,0,2,f +312,3020,14,3,f +312,3020,4,6,f +312,3020,1,2,f +312,3020,2,2,f +312,3021,4,6,f +312,3021,2,1,f +312,3021,14,7,f +312,3021,0,5,f +312,3022,15,2,f +312,3022,4,3,f +312,3022,1,1,f +312,3022,14,4,f +312,3022,0,7,f +312,3022,2,2,f +312,3023,4,4,f +312,3023,0,1,f +312,3039,15,3,f +312,3039,0,2,f +312,3039,1,3,f +312,3039,47,10,f +312,3039,14,3,f +312,3039,4,9,f +312,3040b,4,3,f +312,3040b,0,2,f +312,3040b,14,2,f +312,3062b,15,5,f +312,3062b,1,5,f +312,3298,2,1,f +312,3298px11,14,1,f +312,3660,15,3,f +312,3660,1,3,f +312,3660,4,2,f +312,3660,14,2,f +312,3660,7,2,f +312,3665,4,1,f +312,3700,4,3,f +312,3710,1,3,f +312,3710,14,2,f +312,3710,0,1,f +312,3710,15,1,f +312,3710,4,1,f +312,3731,4,1,f +312,3747b,4,2,f +312,3839b,15,1,f +312,4070,14,2,f +312,4287,1,2,f +312,4617b,0,1,f +312,4871,1,1,f +312,4871,14,1,f +312,6141,15,2,f +312,6141,46,2,f +312,6141,34,4,f +312,6141,36,2,f +312,6215,4,1,f +312,6564,1,1,f +312,6564,2,1,f +312,6565,2,1,f +312,6565,1,1,f +313,2412b,14,3,f +313,2412b,72,3,f +313,2431,0,6,f +313,2555,0,2,f +313,2555,71,2,f +313,2654,71,3,f +313,2730,15,2,f +313,2736,71,1,f +313,2780,0,1,t +313,2780,0,2,f +313,3002,0,1,f +313,3004,4,2,f +313,30088,72,1,f +313,3010,14,2,f +313,30132,72,1,t +313,30132,72,1,f +313,30153,47,1,f +313,3023,0,2,f +313,3029,71,1,f +313,3031,2,1,f +313,30363,0,3,f +313,3037,0,4,f +313,30374,71,1,f +313,30384,40,1,f +313,3039,0,4,f +313,3039pr0005,15,1,f +313,3040b,0,2,f +313,30503,4,2,f +313,3063b,0,4,f +313,3068b,191,4,f +313,3070b,15,1,t +313,3070b,14,2,f +313,3070b,14,1,t +313,3070b,15,2,f +313,3070b,0,2,f +313,3070b,0,1,t +313,32013,0,2,f +313,32039,4,1,f +313,3460,71,2,f +313,3623,14,2,f +313,3626bpr0473,78,1,f +313,3626bpr0474,78,1,f +313,3660,15,14,f +313,3665,71,4,f +313,3666,2,2,f +313,3666,0,2,f +313,3700,15,2,f +313,3709,72,2,f +313,3710,72,7,f +313,3747b,71,2,f +313,3749,19,3,f +313,3794a,4,2,f +313,3878,0,1,f +313,3941,14,1,f +313,3960,0,1,f +313,4032a,71,2,f +313,4081b,0,2,f +313,4085c,4,2,f +313,4095,71,1,f +313,4150,14,2,f +313,41531,0,2,f +313,41747,0,1,f +313,41747,191,1,f +313,41748,0,1,f +313,41748,191,1,f +313,41764,15,2,f +313,41765,15,2,f +313,41769,14,1,f +313,41769,4,1,f +313,41770,14,1,f +313,41770,4,1,f +313,41879a,85,1,f +313,42023,71,2,f +313,4286,0,2,f +313,43093,1,2,f +313,43712,4,1,f +313,43713,72,2,f +313,43719,14,2,f +313,44661,14,1,f +313,4477,14,2,f +313,4519,71,1,f +313,45705,0,1,f +313,4589,46,2,f +313,4589,34,2,f +313,4733,15,2,f +313,47406,15,1,f +313,4868b,2,2,f +313,4869,71,2,f +313,4871,72,1,f +313,49668,0,2,f +313,49668,191,4,f +313,50231,14,1,f +313,54200,0,7,f +313,54200,0,1,t +313,57028c01,71,1,f +313,57796,72,1,f +313,59900,72,1,f +313,6041,0,1,f +313,6041,191,2,f +313,61184,71,2,f +313,6141,4,1,t +313,6141,4,6,f +313,6232,4,1,f +313,62810,0,1,f +313,6541,71,2,f +313,7885stk01,9999,1,t +313,970x021,2,1,f +313,973pr1278c01,0,1,f +313,973pr1279c01,4,1,f +315,265bc01,14,2,f +315,3065,46,2,f +315,3065,34,2,f +315,3065,36,2,f +315,3065,33,2,f +315,3067p11,34,1,f +315,3067p12,33,1,f +315,3067pb02,36,1,f +315,3134,4,2,f +315,766c28,7,2,f +316,2339,0,2,f +316,2343,297,1,f +316,2420,71,2,f +316,2423,2,1,f +316,2446,0,1,f +316,2458,71,1,f +316,2780,0,1,f +316,2780,0,1,t +316,3002,72,1,f +316,3003,70,2,f +316,3004,72,2,f +316,3004,0,3,f +316,3005,182,1,f +316,30090,41,1,f +316,30090,41,1,t +316,3010,0,1,f +316,3020,70,1,f +316,3020,0,1,f +316,3021,0,2,f +316,3021,71,1,f +316,3022,71,2,f +316,3023,72,7,f +316,3023,182,7,f +316,3023,0,2,f +316,30238,0,2,f +316,3024,72,4,f +316,3029,0,1,f +316,3034,70,2,f +316,3036,72,2,f +316,3039,72,4,f +316,3040b,72,5,f +316,3040b,25,7,f +316,3062b,0,4,f +316,3062b,33,2,f +316,3069b,71,4,f +316,32054,0,2,f +316,32064a,72,2,f +316,32316,0,1,f +316,32525,0,1,f +316,33320,2,1,f +316,3622,0,1,f +316,3623,0,2,f +316,3665,72,6,f +316,3665,0,1,f +316,3684,72,2,f +316,3701,71,4,f +316,3708,0,1,f +316,3710,70,3,f +316,3713,4,1,f +316,3794a,70,1,f +316,3794a,25,1,f +316,4162,0,2,f +316,42446,72,1,f +316,4286,72,2,f +316,4460b,0,9,f +316,44728,72,2,f +316,4510,71,2,f +316,4599b,0,2,f +316,4733,0,1,f +316,4740,72,1,f +316,47847,72,3,f +316,54200,72,1,t +316,54200,72,4,f +316,54200,70,1,f +316,54200,182,1,t +316,54200,182,16,f +316,54200,70,1,t +316,59900,0,1,f +316,60475a,71,2,f +316,60583a,0,2,f +316,60596,15,1,f +316,60621,71,1,f +316,60849,0,1,f +316,6141,34,1,f +316,6141,70,1,t +316,6141,70,3,f +316,6141,0,1,f +316,6141,34,1,t +316,6141,0,1,t +316,6541,0,4,f +316,73590c03a,0,1,f +316,87087,72,2,f +316,87580,0,4,f +316,92690,71,1,f +316,92950,0,2,f +317,3470,2,1,f +317,3471,2,1,f +317,3741,2,4,f +317,3742,15,3,f +317,3742,14,1,t +317,3742,4,6,f +317,3742,14,3,f +317,3742,4,2,t +317,3742,15,1,t +319,2376,0,1,f +319,2412b,14,2,f +319,2413,0,1,f +319,2421,7,1,f +319,2431,14,2,f +319,2431,0,2,f +319,2432,0,1,f +319,2433,0,3,f +319,2436,14,1,f +319,2446,15,2,f +319,2447,33,1,t +319,2447,33,1,f +319,2447,41,1,f +319,2453a,0,8,f +319,2454a,14,2,f +319,2456,7,2,f +319,2460,7,1,f +319,2479,7,1,f +319,2508,7,1,f +319,2540,7,6,f +319,2555,7,2,f +319,2555,15,6,f +319,2569,4,1,f +319,2584,7,3,f +319,2585,0,3,f +319,2610,14,2,f +319,2617,8,1,f +319,2620,33,1,f +319,2625,0,2,f +319,2626,0,1,f +319,2626,14,1,f +319,2642,8,1,f +319,2654,7,3,f +319,2654,15,1,f +319,2875,0,1,f +319,2917,0,1,f +319,2918,33,1,f +319,2921,0,2,f +319,2926,7,4,f +319,298c02,15,1,t +319,298c02,15,6,f +319,3003,0,2,f +319,30035,0,1,f +319,3004,14,1,f +319,3004,0,7,f +319,3005,0,2,f +319,3008,14,2,f +319,30086,14,1,f +319,3009,0,5,f +319,30090,33,1,f +319,30091,7,1,f +319,30094,7,1,f +319,3010,14,2,f +319,3010,0,4,f +319,3010,7,4,f +319,30162,8,1,f +319,30180,0,1,f +319,30181,0,1,f +319,30185c02,14,1,f +319,30187c01,0,1,f +319,30191,7,1,f +319,30192,8,2,f +319,30193,8,1,f +319,30194,8,1,f +319,3020,14,2,f +319,3020,0,6,f +319,3021,14,4,f +319,3022,0,1,f +319,3022,14,1,f +319,3022,8,4,f +319,3022,7,1,f +319,30228,8,1,f +319,30229,8,1,f +319,3023,14,2,f +319,3023,15,4,f +319,3024,42,4,f +319,3024,46,5,f +319,3026,7,2,f +319,3028,0,2,f +319,3034,7,1,f +319,3039pr0005,15,2,f +319,3039px14,15,1,f +319,3040b,0,7,f +319,3040b,33,2,f +319,3062b,4,3,f +319,3062b,15,3,f +319,3069b,14,2,f +319,3069bp09,15,1,f +319,3069bp68,15,1,f +319,3070b,36,1,t +319,3070b,36,6,f +319,3127,7,2,f +319,3176,7,1,f +319,3460,7,4,f +319,3460,14,4,f +319,3622,14,2,f +319,3623,0,4,f +319,3626bp03,14,1,f +319,3626bp04,14,2,f +319,3626bp06,14,2,f +319,3641,0,2,f +319,3660,14,2,f +319,3665,14,2,f +319,3665,15,2,f +319,3666,0,1,f +319,3666,14,2,f +319,3679,7,2,f +319,3680,4,1,f +319,3680,15,1,f +319,3700,7,2,f +319,3710,15,1,f +319,3710,0,1,f +319,3710,14,3,f +319,3710,7,4,f +319,3730,7,1,f +319,3747b,0,2,f +319,3794a,14,9,f +319,3794a,7,1,f +319,3795,14,2,f +319,3795,7,2,f +319,3829c01,15,2,f +319,3832,7,1,f +319,3834,15,1,f +319,3835,7,1,f +319,3837,8,1,f +319,3838,14,1,f +319,3839b,0,1,f +319,3901,0,1,f +319,3939,15,1,f +319,3939,33,1,f +319,3941,46,1,f +319,3942c,15,2,f +319,3962b,0,2,f +319,4079,15,1,f +319,4081b,0,6,f +319,4081b,15,4,f +319,4085c,7,8,f +319,4150,15,1,f +319,4162,14,3,f +319,4162,8,2,f +319,4213,0,1,f +319,4276b,7,2,f +319,4285b,4,1,f +319,4286,14,2,f +319,4315,0,1,f +319,4319,0,2,f +319,4349,7,1,f +319,4477,0,1,f +319,4485,0,3,f +319,4488,0,1,f +319,4531,7,2,f +319,4533,14,2,f +319,4589,36,2,f +319,4589,34,2,f +319,4596,15,1,f +319,4599a,4,2,f +319,4599a,15,1,f +319,4623,14,7,f +319,4624,15,2,f +319,4625,0,1,f +319,4714,15,1,f +319,4715,15,2,f +319,4740,42,2,f +319,4773,33,4,f +319,4773,33,1,t +319,4773,36,6,f +319,4773,36,1,t +319,4856a,14,1,f +319,4859,7,1,f +319,55298,8,1,f +319,56823,0,4,f +319,56823,0,1,t +319,59275,0,2,f +319,6014a,15,6,f +319,6015,0,6,f +319,6019,0,6,f +319,6111,7,6,f +319,6111,0,9,f +319,6140,0,5,f +319,6140,14,2,f +319,6141,15,1,t +319,6141,42,1,f +319,6141,15,2,f +319,6141,42,1,t +319,6158,0,1,f +319,6219,7,1,f +319,6219,0,2,f +319,63965,15,1,f +319,73037,0,1,f +319,73983,7,2,f +319,92410,0,2,f +319,970x026,15,5,f +319,973p8bc01,15,2,f +319,973px101c01,15,1,f +319,973px79c01,15,2,f +321,264,4,1,f +321,3004,14,4,f +321,3020,14,2,f +321,3741,2,1,f +321,3742,15,1,t +321,3742,15,3,f +321,3899,1,1,f +321,4341,0,1,f +321,4429,4,1,f +321,4452,4,1,f +321,4461,4,1,f +321,4608,14,2,f +321,4796c01,14,2,f +321,fab7c,9999,1,f +321,fabah4,4,1,f +321,fabah4-hinge,4,1,f +321,fabaj1,14,1,f +321,fabaj3,14,1,f +322,3065,1,26,f +322,3065,0,26,f +322,3065,15,26,f +322,3065,47,26,f +322,3065,4,26,f +322,3065,14,26,f +323,2736,7,3,f +323,2780,0,11,f +323,2780,0,1,t +323,2825,0,2,f +323,2854,0,4,f +323,32002,8,2,t +323,32002,8,5,f +323,32009,0,4,f +323,32013,0,5,f +323,32015,0,2,f +323,32016,0,9,f +323,32034,0,3,f +323,32039,0,4,f +323,32039,8,2,f +323,32054,0,4,f +323,32056,0,8,f +323,32062,0,35,f +323,32062,15,10,f +323,32068,0,2,f +323,32073,0,1,f +323,32123b,7,4,t +323,32123b,7,14,f +323,32138,0,2,f +323,32140,0,3,f +323,32165,0,2,f +323,32174,8,1,f +323,32175,0,1,f +323,32184,8,2,f +323,32184,0,10,f +323,32192,0,5,f +323,32249,0,4,f +323,32250,0,16,f +323,32291,0,3,f +323,32293,0,2,f +323,32310,0,1,f +323,32316,0,5,f +323,32348,0,2,f +323,32449,0,10,f +323,32474,0,1,f +323,32523,0,2,f +323,32524,0,1,f +323,32527,0,1,f +323,32528,0,1,f +323,3705,0,18,f +323,3706,0,7,f +323,3707,0,1,f +323,3713,7,10,f +323,3713,7,2,t +323,3737,0,1,f +323,3749,7,6,f +323,41671,0,1,f +323,41677,0,18,f +323,41678,0,6,f +323,41752,8,2,f +323,41753,8,1,f +323,4274,7,7,f +323,4274,7,2,t +323,43363,0,1,f +323,4519,0,31,f +323,60169,7,1,f +323,6536,0,10,f +323,6538b,135,1,f +323,6538b,36,12,f +323,6538b,0,4,f +323,6558,0,14,f +323,6575,0,2,f +323,6628,0,3,f +323,6632,8,4,f +323,6632,0,14,f +323,71509,0,1,f +323,71509,0,3,t +323,75535,0,2,f +323,75c09,0,1,t +323,75c09,0,2,f +323,78c12,0,2,f +323,8010cape,0,1,f +323,8010stk01,9999,1,t +323,rb00168,0,2,f +323,rb00168,0,4,t +323,x209,0,2,f +324,x469bc,7,1,f +325,10509pr0001,70,1,f +325,2039,0,1,f +325,2397,72,1,f +325,2420,4,4,f +325,2423,2,1,f +325,2435,2,2,f +325,2488,0,1,f +325,3003,15,1,f +325,3004,70,1,f +325,3021,0,1,f +325,3021,15,4,f +325,3023,70,4,f +325,3029,15,1,f +325,3032,4,1,f +325,3034,15,2,f +325,30565,15,3,f +325,3069b,70,1,f +325,3070b,4,1,t +325,3070b,4,4,f +325,33291,10,1,t +325,33291,10,2,f +325,3460,72,2,f +325,3626c,47,2,f +325,3626cpr0677,14,2,f +325,3626cpr0679,14,1,f +325,3626cpr0893,14,1,f +325,3659,0,2,f +325,3665,4,2,f +325,3666,70,1,f +325,3700,4,2,f +325,3710,0,2,f +325,3710,4,4,f +325,3878,0,1,f +325,41879a,71,1,f +325,41879a,85,1,f +325,4274,71,1,t +325,4274,71,2,f +325,44301a,0,2,f +325,44302a,0,2,f +325,4599b,0,1,t +325,4599b,0,2,f +325,4740,0,1,f +325,47905,0,2,f +325,4865b,4,1,f +325,54200,72,2,f +325,54200,72,1,t +325,54200,15,8,f +325,54200,4,1,t +325,54200,4,2,f +325,54200,15,1,t +325,59363,0,1,f +325,6091,4,4,f +325,6141,0,5,f +325,6141,4,2,f +325,6141,0,1,t +325,6141,4,1,t +325,62696,308,1,f +325,62810,484,1,f +325,6636,70,3,f +325,85984,4,2,f +325,970c00,0,1,f +325,970c00,272,1,f +325,973pr1184c01,0,1,f +325,973pr1724bc01,15,1,f +325,973pr1772c01,10,1,f +325,973pr1800c01,73,1,f +326,2412b,0,2,f +326,2446,0,1,f +326,2447,41,1,f +326,2460,4,1,f +326,2540,7,3,f +326,2555,8,1,f +326,3004,4,1,f +326,3008p08,4,1,f +326,30183,4,1,f +326,30386,4,1,f +326,30389a,4,1,f +326,3039,4,1,f +326,30395,8,1,f +326,30396,4,1,f +326,3460,8,2,f +326,3460,0,2,f +326,3475b,0,1,f +326,3626bp69,14,1,f +326,3823,41,1,f +326,4589,4,1,f +326,6140,7,2,f +326,6141,46,1,f +326,6248,7,1,f +326,970x026,7,1,f +326,973pb0252c01,7,1,f +327,32062,0,2,f +327,32174,320,4,f +327,32174,72,2,f +327,3706,0,1,f +327,42003,72,2,f +327,4519,71,1,f +327,47296,72,1,f +327,47300,72,2,f +327,47311,320,2,f +327,48253,82,1,f +327,50921,320,1,f +327,53069,82,1,f +327,6558,0,2,f +328,2412b,80,1,f +328,2555,0,2,f +328,2921,15,2,f +328,30035,0,1,f +328,3005,15,2,f +328,30162,72,2,f +328,3022,15,2,f +328,3023,0,3,f +328,3062b,15,2,f +328,3623,0,1,f +328,3623,0,1,t +328,3710,0,2,f +328,4032b,0,2,f +328,41855,15,2,f +328,4589,33,1,f +328,4740,33,2,f +328,47674,33,1,f +328,47675,15,1,f +328,47676,15,1,f +328,47905,72,2,f +328,50950,15,2,f +328,54200,15,4,f +328,6019,15,2,f +328,6091,15,1,f +328,6141,33,1,t +328,6141,15,2,f +328,6141,15,1,t +328,6141,33,6,f +328,6141,80,2,f +328,6141,0,1,t +328,6141,0,6,f +328,6141,80,1,t +328,6541,0,4,f +328,6558,0,1,f +328,73983,15,2,f +330,10314,0,1,f +330,12825,14,1,f +330,2039,0,1,f +330,2343,0,1,f +330,2357,19,2,f +330,2412b,72,3,f +330,2420,70,5,f +330,2420,28,2,f +330,2420,72,2,f +330,2420,19,2,f +330,2423,2,3,f +330,2431,0,3,f +330,2431,70,3,f +330,2431,15,7,f +330,2431,288,3,f +330,2435,2,1,f +330,2436,71,1,f +330,2488,0,1,f +330,3001,71,1,f +330,3001,70,2,f +330,3003,71,1,f +330,3003,14,1,f +330,30033,0,1,f +330,3004,19,11,f +330,3004,72,4,f +330,3004,71,4,f +330,3005,72,2,f +330,3005,71,3,f +330,3005,19,22,f +330,3009,19,2,f +330,30099,19,4,f +330,3010,4,3,f +330,3010,72,2,f +330,3010,19,1,f +330,30133,4,1,f +330,30136,70,7,f +330,30151a,47,1,f +330,3020,288,8,f +330,3020,72,1,f +330,3020,70,3,f +330,3020,4,3,f +330,3021,4,2,f +330,3021,72,3,f +330,3021,19,3,f +330,3021,71,1,f +330,3022,0,1,f +330,3022,2,2,f +330,3022,19,4,f +330,3022,71,1,f +330,3023,15,7,f +330,3023,73,20,f +330,3023,71,4,f +330,3023,28,7,f +330,3023,70,15,f +330,3023,0,3,f +330,3023,4,2,f +330,3024,182,2,f +330,3024,28,6,f +330,3024,19,9,f +330,3024,36,2,f +330,3024,4,2,f +330,3024,73,7,f +330,30261,15,1,f +330,3028,15,3,f +330,30284,70,2,f +330,30287pr04,10,1,f +330,3029,15,3,f +330,3032,4,1,f +330,3032,72,2,f +330,3033,288,2,f +330,3034,19,1,f +330,3035,288,4,f +330,3035,15,1,f +330,3035,4,1,f +330,30367c,0,1,f +330,30374,0,1,f +330,30374,19,1,f +330,3040b,19,8,f +330,3040b,15,2,f +330,30414,19,3,f +330,3043,0,1,f +330,30565,28,3,f +330,30565,288,8,f +330,3062b,72,3,f +330,3062b,0,8,f +330,3068b,71,1,f +330,3068b,72,4,f +330,3068b,272,5,f +330,3068b,15,1,f +330,3068b,28,5,f +330,3069b,19,2,f +330,3069b,15,20,f +330,3069b,73,1,f +330,3069b,272,5,f +330,3069b,71,6,f +330,3069b,28,9,f +330,3069b,72,5,f +330,3069bpr0099,15,6,f +330,3070b,15,10,f +330,3070b,73,4,f +330,3070b,15,1,t +330,3070b,73,1,t +330,3070b,71,5,f +330,3070b,71,1,t +330,32028,14,1,f +330,32062,4,2,f +330,32064a,4,2,f +330,32123b,14,1,t +330,32123b,14,1,f +330,32124,0,2,f +330,32530,72,5,f +330,3460,19,1,f +330,3471,2,1,f +330,3622,19,4,f +330,3622,71,4,f +330,3623,71,2,f +330,3623,70,4,f +330,3623,4,1,f +330,3626bpr0580,14,1,f +330,3626c,47,1,f +330,3626cpr0389,14,1,f +330,3626cpr0498,14,1,f +330,3626cpr0649,14,1,f +330,3626cpr0677,14,1,f +330,3626cpr0893,14,1,f +330,3626cpr1665,14,1,f +330,3633,0,2,f +330,3660,72,1,f +330,3665,19,3,f +330,3666,70,7,f +330,3666,288,5,f +330,3666,72,1,f +330,3678b,0,1,f +330,3679,71,3,f +330,3680,0,3,f +330,3700,15,2,f +330,3701,0,2,f +330,3705,0,2,f +330,3710,72,4,f +330,3710,15,4,f +330,3710,70,2,f +330,3710,4,2,f +330,3794a,15,4,f +330,3794a,28,8,f +330,3794b,4,2,f +330,3794b,72,3,f +330,3794b,70,2,f +330,3794b,0,1,f +330,3795,28,1,f +330,3821,4,1,f +330,3822,4,1,f +330,3829c01,71,1,f +330,3832,71,1,f +330,3837,72,1,f +330,3899,14,1,f +330,3901,0,1,f +330,3901,70,1,f +330,3941,0,3,f +330,3958,28,1,f +330,4070,72,20,f +330,4081b,14,1,f +330,41334,0,1,f +330,4150pr0001,15,1,f +330,4150pr0022,71,1,f +330,41769,4,2,f +330,41770,4,2,f +330,41879a,1,1,f +330,42409,46,1,f +330,4274,1,1,t +330,4274,1,1,f +330,4286,15,1,f +330,43093,1,1,f +330,4345b,4,2,f +330,4346,4,2,f +330,43892,0,1,f +330,44728,0,1,f +330,45677,4,1,f +330,4599b,71,2,f +330,4599b,14,2,f +330,4733,71,2,f +330,47720,71,2,f +330,48092,71,5,f +330,48336,0,2,f +330,4865b,0,8,f +330,4865b,4,3,f +330,49668,0,6,f +330,54200,70,6,f +330,54200,70,1,t +330,54200,4,9,f +330,54200,288,1,t +330,54200,19,1,t +330,54200,288,4,f +330,54200,19,18,f +330,54200,4,1,t +330,56902,71,4,f +330,59900,182,2,f +330,59900,0,1,f +330,6005,72,2,f +330,60470b,71,1,f +330,60474,288,1,f +330,60478,19,8,f +330,60481,19,4,f +330,60481,71,2,f +330,60581,4,2,f +330,60592,70,14,f +330,60594,70,3,f +330,60596,70,1,f +330,60601,47,14,f +330,60607,15,4,f +330,60623,15,1,f +330,60897,0,3,f +330,60897,73,4,f +330,60897,72,2,f +330,6091,72,2,f +330,61184,71,1,f +330,61252,71,1,f +330,61252,4,1,f +330,61254,0,4,f +330,6126b,41,4,f +330,6141,15,1,t +330,6141,14,1,t +330,6141,80,1,t +330,6141,297,2,f +330,6141,70,1,t +330,6141,70,3,f +330,6141,14,1,f +330,6141,46,7,f +330,6141,36,17,f +330,6141,36,1,t +330,6141,297,1,t +330,6141,80,1,f +330,6141,47,1,t +330,6141,47,2,f +330,6141,72,1,t +330,6141,72,7,f +330,6141,46,1,t +330,6141,15,4,f +330,6231,4,8,f +330,62696,484,1,f +330,62930,72,1,f +330,63864,4,1,f +330,63864,15,16,f +330,63868,71,4,f +330,6541,4,2,f +330,6564,4,1,f +330,6565,4,1,f +330,6636,70,3,f +330,85974,226,1,f +330,86035,0,1,f +330,87087,19,4,f +330,87544,0,2,f +330,87552,47,2,f +330,87580,0,1,f +330,87580,4,2,f +330,87580,2,1,f +330,87580,14,1,f +330,87617,0,4,f +330,90202,0,1,f +330,92280,71,4,f +330,92586pr0002,484,1,f +330,92590,28,2,f +330,92692,0,3,f +330,92950,19,3,f +330,93160,15,1,f +330,970c00,19,1,f +330,970c00,320,1,f +330,970c00,1,1,f +330,970c00,0,1,f +330,970c00,272,1,f +330,973c47,71,1,f +330,973pr1163c01,272,1,f +330,973pr1166c01,272,1,f +330,973pr1356c01,4,2,f +330,973pr1580c01,15,1,f +330,973pr1800c01,73,1,f +331,3001a,4,2,f +331,3001a,14,2,f +331,3002a,14,1,f +331,3003,0,4,f +331,3003,4,1,f +331,3003,14,1,f +331,3004,14,7,f +331,3004,4,4,f +331,3005,4,2,f +331,3009,4,1,f +331,3010,0,6,f +331,3010,4,6,f +331,3020,14,13,f +331,3020,4,2,f +331,3020,1,1,f +331,3021,14,4,f +331,3022,4,2,f +331,3022,1,6,f +331,3022,0,2,f +331,3023,14,2,f +331,3023,4,1,f +331,3024,4,4,f +331,3024,14,4,f +331,3027,0,4,f +331,3029,14,1,f +331,3030,14,1,f +331,3031,14,3,f +331,3031,0,2,f +331,3032,0,2,f +331,3034,0,14,f +331,3039,14,2,f +331,3039,4,2,f +331,3040b,0,8,f +331,3068b,14,1,f +331,3139,0,1,f +331,3464,4,1,f +331,3482,7,4,f +331,3483,0,4,f +331,3623,14,2,f +331,3647,7,3,f +331,3648a,7,2,f +331,3650a,7,3,f +331,3651,7,36,f +331,3660,0,2,f +331,3660,4,1,f +331,3660,14,3,f +331,3665,14,2,f +331,3665,1,2,f +331,3666,0,2,f +331,3673,7,43,f +331,3700,1,4,f +331,3700,14,22,f +331,3701,1,4,f +331,3701,14,18,f +331,3702,14,4,f +331,3703,1,2,f +331,3703,14,10,f +331,3704,0,2,f +331,3705,0,3,f +331,3706,0,13,f +331,3707,0,5,f +331,3708,0,3,f +331,3709,1,3,f +331,3709,14,3,f +331,3710,14,5,f +331,3710,1,4,f +331,3713,7,16,f +331,3736,7,1,f +331,3737,0,4,f +331,3738,4,3,f +331,3743,7,2,f +331,8,7,1,f +331,9244,7,3,f +332,2357,4,4,f +332,2357,72,2,f +332,2377,4,2,f +332,2412b,72,11,f +332,2412b,57,3,f +332,2420,0,2,f +332,2431,4,2,f +332,2431pb022,19,1,f +332,2445,0,1,f +332,2454a,72,1,f +332,2456,4,1,f +332,2456,72,2,f +332,2495,4,1,f +332,2496,0,1,f +332,2653,4,4,f +332,2877,0,16,f +332,2920,0,4,f +332,2921,4,2,f +332,298c02,0,1,t +332,298c02,0,3,f +332,3001,72,2,f +332,3001,70,3,f +332,3004,4,10,f +332,3004,0,5,f +332,3004,72,1,f +332,3005,4,8,f +332,3008,4,8,f +332,3009,72,3,f +332,3009,0,2,f +332,3010,71,2,f +332,3010,4,4,f +332,30155,0,18,f +332,30157,72,9,f +332,3020,0,1,f +332,3020,70,8,f +332,3022,4,2,f +332,3023,14,4,f +332,3023,0,4,f +332,3027,71,1,f +332,3032,0,3,f +332,3035,0,1,f +332,30363,72,1,f +332,3037,4,4,f +332,30374,366,1,f +332,30374,71,1,f +332,30374,0,1,f +332,3038,0,4,f +332,3039,57,2,f +332,3040b,0,2,f +332,3048c,0,4,f +332,3062b,0,7,f +332,3068b,72,3,f +332,3069b,0,4,f +332,3069bph0,72,1,f +332,3069bph1,19,1,f +332,3070bp01,14,1,t +332,3070bp01,14,2,f +332,3070bp02,14,1,t +332,3070bp02,14,2,f +332,32028,71,2,f +332,32064b,71,1,f +332,32083,0,7,f +332,3245b,72,1,f +332,3297,378,1,f +332,33009pb002,19,1,f +332,33303,15,1,f +332,3455,4,2,f +332,3460,0,4,f +332,3460,19,4,f +332,3622,4,2,f +332,3622,0,2,f +332,3623,4,2,f +332,3659,72,1,f +332,3660,0,2,f +332,3665,0,2,f +332,3666,0,6,f +332,3675,378,2,f +332,3710,0,1,f +332,3794a,4,4,f +332,3795,72,9,f +332,3795,70,1,f +332,3832,320,1,f +332,3941,4,1,f +332,3941,0,1,f +332,3960px6,0,1,f +332,4022,0,4,f +332,40232,15,1,f +332,40234,71,1,f +332,4032a,0,1,f +332,4032a,14,1,f +332,4033,4,10,f +332,4034,47,10,f +332,4070,0,1,f +332,4070,72,8,f +332,4162,4,4,f +332,4162,0,2,f +332,4286,4,2,f +332,4286,378,2,f +332,4287,72,2,f +332,43337,4,2,f +332,44301a,72,2,f +332,44302a,70,2,f +332,4449,15,1,f +332,4449,73,1,f +332,4589,4,2,f +332,4623,71,1,f +332,4740,71,1,f +332,4854,4,2,f +332,6019,0,6,f +332,6081,4,2,f +332,6111,71,1,f +332,6141,46,1,f +332,6141,47,2,f +332,6141,46,1,t +332,6141,0,2,t +332,6141,47,1,t +332,6141,71,1,f +332,6141,57,7,f +332,6141,71,1,t +332,6141,57,2,t +332,6141,0,6,f +332,6265,378,1,t +332,6584,0,2,f +332,6587,72,1,f +332,6636,4,2,f +332,6636,70,2,f +332,6636,72,2,f +332,73092,0,4,f +332,75c16,0,2,f +333,3811,2,1,f +334,11258,379,1,f +334,24085,71,1,f +334,3626cpr1839,14,1,f +334,63965,70,1,f +334,88646,0,1,f +334,970c00pr1001,379,1,f +334,973pr3229c01,379,1,f +335,15,0,2,f +335,17,0,2,f +335,21,47,1,f +335,3001a,15,1,f +335,3002apb06,15,2,f +335,3008,0,2,f +335,3008,47,2,f +335,3010,15,1,f +335,3010p20b,15,1,f +335,3020,0,3,f +335,3022,0,1,f +335,3023,15,2,f +335,3023,0,1,f +335,3024,1,2,f +335,3030,0,1,f +335,3030,15,1,f +335,3062a,0,1,f +335,3137c01,0,2,f +335,3139,0,7,f +335,3464,4,3,f +335,3581,0,2,f +335,3582,0,2,f +335,3624,15,2,f +335,3626a,14,2,f +335,8,15,3,f +336,10169,84,1,f +336,11303,1,2,f +336,11476,71,2,f +336,14682,71,2,f +336,15444,15,2,f +336,18455,71,2,f +336,18937,72,1,f +336,19001,10,1,f +336,2412b,71,1,f +336,2412b,36,2,f +336,2415,71,2,f +336,2431,71,1,f +336,2431pr0028,72,1,f +336,2431pr0077,15,2,f +336,2456,10,1,f +336,2495,4,1,f +336,2496,0,3,f +336,2540,72,1,f +336,3001,0,4,f +336,3001,1,1,f +336,3003,70,4,f +336,3004,10,2,f +336,3010,25,1,f +336,3032,0,1,f +336,3040b,15,2,f +336,3069b,182,2,f +336,3069b,40,2,f +336,3069b,46,2,f +336,3069bpr0101,71,1,f +336,3245cpr0001,10,2,f +336,33183,10,1,f +336,3626cpr1147,14,1,f +336,3626cpr1662,14,1,f +336,3829c01,71,1,f +336,3836,70,1,f +336,4079b,0,1,f +336,4175,71,1,f +336,4176,47,1,f +336,48336,71,2,f +336,55981,15,4,f +336,59900,182,2,f +336,60475b,15,2,f +336,6179,14,2,f +336,6192,71,1,f +336,64648,179,1,f +336,6541,71,2,f +336,6636,4,4,f +336,87079pr0066,72,1,f +336,92280,71,1,f +336,92402,0,4,f +336,92593,15,3,f +336,92926,2,1,f +336,93273,72,1,f +336,93273,14,2,f +336,970c00,1,1,f +336,970c00,25,1,f +336,973pr1160c01,1,1,f +336,973pr1182c01,25,1,f +336,98280,14,2,f +337,2335,15,2,f +337,2418a,33,2,f +337,2419,15,2,f +337,2432,1,2,f +337,2436,15,2,f +337,298c02,15,2,f +337,3020,15,2,f +337,3022,15,1,f +337,3023,15,2,f +337,3024,1,4,f +337,3031,15,1,f +337,3034,1,1,f +337,3069bp05,15,3,f +337,3069bp06,15,2,f +337,3069bp25,15,1,f +337,3070b,36,2,f +337,3460,15,2,f +337,3479,1,1,f +337,3623,15,2,f +337,3626apr0001,14,2,f +337,3666,15,6,f +337,3710,15,8,f +337,3829c01,15,2,f +337,3832,1,1,f +337,3838,14,2,f +337,3842b,14,2,f +337,3937,15,2,f +337,3957a,36,2,f +337,3959,0,2,f +337,4081b,15,4,f +337,4085b,15,2,f +337,4349,1,2,f +337,4588,36,2,f +337,4589,36,1,f +337,4590,15,1,f +337,4597,1,2,f +337,4746,1,1,f +337,4854,15,1,f +337,4858p90,15,1,f +337,4871,15,1,f +337,6141,34,2,f +337,970c00,14,2,f +337,973p90c04,14,2,f +338,2736,71,3,f +338,2780,0,3,t +338,2780,0,33,f +338,30374,36,4,f +338,32013,14,5,f +338,32016,0,4,f +338,32034,71,4,f +338,32039,0,4,f +338,32054,4,7,f +338,32054,71,4,f +338,32054,0,8,f +338,32056,14,4,f +338,32062,4,13,f +338,32072,0,4,f +338,32073,71,9,f +338,32138,71,2,f +338,32140,0,4,f +338,32184,0,5,f +338,32199,0,1,f +338,32249,14,2,f +338,32250,0,2,f +338,32271,0,7,f +338,32278,0,10,f +338,32291,72,4,f +338,32523,0,1,f +338,32523,14,2,f +338,32525,0,6,f +338,32551,135,2,f +338,3673,71,1,t +338,3673,71,2,f +338,3705,0,4,f +338,3707,0,2,f +338,3708,0,2,f +338,3713,71,1,t +338,3713,71,5,f +338,3737,0,1,f +338,3749,19,4,f +338,40490,14,7,f +338,41239,14,4,f +338,41677,71,6,f +338,41678,0,5,f +338,41752,72,1,f +338,42003,0,5,f +338,42003,71,4,f +338,4274,1,2,t +338,4274,1,4,f +338,43093,1,21,f +338,44294,71,6,f +338,44350,0,2,f +338,44351,0,2,f +338,44809,71,2,f +338,44809,0,2,f +338,4519,71,14,f +338,45749,320,2,f +338,47297,320,2,f +338,47298,320,2,f +338,47306,320,1,f +338,47312,72,1,f +338,47314,135,4,f +338,53543,320,2,f +338,53544,320,2,f +338,53564,320,1,f +338,53586,135,2,f +338,53983pat0001,0,2,f +338,54272,135,2,f +338,54821,135,12,f +338,55817,72,4,f +338,57528,135,2,f +338,57536,42,1,f +338,57539,135,2,f +338,57544,135,2,f +338,57546,135,1,f +338,57585,71,3,f +338,59443,0,8,f +338,59577,135,1,f +338,60176,0,5,f +338,60483,71,2,f +338,60924,135,6,f +338,60928,135,1,f +338,60930,135,2,f +338,61054,0,4,f +338,61800,135,2,f +338,61803,135,1,f +338,61805,14,3,f +338,61814,320,1,f +338,62233,135,3,f +338,63149,135,2,f +338,6536,0,2,f +338,6536,71,4,f +338,6553,0,2,f +338,6558,1,21,f +338,6575,72,4,f +338,6587,72,13,f +338,6628,0,5,f +338,6629,14,8,f +338,6632,72,4,f +338,6632,0,4,f +338,85543,15,3,t +338,85543,15,3,f +345,30033,15,2,f +345,3020,0,1,f +345,3021,0,1,f +345,3022,0,1,f +345,3023,4,1,f +345,3794b,72,1,f +345,3960,0,1,f +345,4032a,0,2,f +345,4150,0,1,f +345,6019,0,32,f +345,60474,0,2,f +345,60478,0,8,f +345,6141,4,1,f +345,6141,4,1,t +347,11203,72,2,f +347,11477,2,4,f +347,3021,2,1,f +347,3022,2,2,f +347,3023,0,1,f +347,3070b,71,1,f +347,3623,2,4,f +347,3710,2,2,f +347,3794a,2,3,f +347,3795,72,1,f +347,4070,71,1,f +347,43722,2,1,f +347,43723,2,1,f +347,54200,47,2,f +347,54200,71,2,f +347,54200,2,2,f +347,6141,179,3,f +347,63864,2,2,f +347,64567,71,1,f +347,85984,72,1,f +347,99780,2,2,f +347,99780,71,4,f +348,64251,27,2,f +348,64262,57,1,f +348,87794,0,1,f +348,87796,0,4,f +348,87797,27,2,f +348,87798,27,2,f +348,87799,36,1,f +348,87803pat0002,135,2,f +348,87805,27,1,f +348,87807,27,1,f +348,93571,0,2,f +349,10178pr0002,52,1,f +349,2397,72,1,f +349,2570,179,1,f +349,2654,71,3,f +349,298c02,15,2,f +349,298c02,15,1,t +349,30136,84,1,f +349,30169,297,1,f +349,3020,72,2,f +349,3022,19,2,f +349,30332,0,1,f +349,30357,70,2,f +349,3039,0,1,f +349,3048c,297,4,f +349,3062b,42,2,f +349,3176,72,1,f +349,32064b,72,2,f +349,3626bpr0977,15,1,f +349,3626cpr0998,14,1,f +349,3705,0,1,f +349,3710,70,1,f +349,3713,4,1,t +349,3713,4,1,f +349,3749,19,1,f +349,3794b,320,3,f +349,4081b,0,2,f +349,4085c,71,3,f +349,4488,0,2,f +349,4489b,70,2,f +349,4497,148,2,f +349,4590,72,2,f +349,4598,1,1,f +349,48729b,0,4,f +349,48729b,0,1,t +349,57467,179,2,f +349,59228,1000,1,f +349,59229,72,1,f +349,59443,72,1,f +349,59900,320,2,f +349,60481,308,2,f +349,6141,297,4,f +349,6141,179,1,t +349,6141,297,1,t +349,6141,179,4,f +349,64647,57,1,t +349,64647,57,2,f +349,85080,28,4,f +349,87087,72,4,f +349,87747,297,2,f +349,92947,71,1,f +349,95326,484,1,f +349,970c00pr0331,379,1,f +349,970c00pr0332,15,1,f +349,973pr2059c01,15,1,f +349,973pr2061c01,15,1,f +349,99774,72,2,f +350,16542,7,1,f +350,194cx1,7,2,f +350,200,0,1,f +350,202,0,1,f +350,2357,4,2,f +350,2362a,0,2,f +350,2409,42,1,f +350,2412b,4,12,f +350,2412b,0,15,f +350,2420,4,8,f +350,2422,4,1,f +350,2428,4,1,f +350,2431,0,4,f +350,2432,4,2,f +350,2432,0,1,f +350,2433,0,2,f +350,2440p69,0,1,f +350,2444,0,1,f +350,2445,4,6,f +350,2446,0,3,f +350,2447,42,3,f +350,2450,0,2,f +350,2452,0,1,f +350,2452,4,2,f +350,2456,4,2,f +350,2460,0,3,f +350,2465,0,2,f +350,2465,4,2,f +350,2540,0,6,f +350,2569,42,1,f +350,2573,0,6,f +350,2582p68,7,4,f +350,2607,4,4,f +350,2609,0,3,f +350,2817,0,3,f +350,3001,4,1,f +350,3002,4,1,f +350,3004,0,4,f +350,3004,4,3,f +350,3005,0,4,f +350,3005,4,2,f +350,3006,4,1,f +350,3009,0,1,f +350,3009,4,9,f +350,3010,4,7,f +350,3020,4,3,f +350,3020,0,2,f +350,3022,4,6,f +350,3022,7,1,f +350,3022,0,4,f +350,3023,0,25,f +350,3023,4,18,f +350,3024,4,2,f +350,3024,0,2,f +350,3028,4,1,f +350,3031,4,2,f +350,3031,0,1,f +350,3032,4,3,f +350,3032,0,1,f +350,3033,4,1,f +350,3034,0,5,f +350,3034,4,2,f +350,3039,4,1,f +350,3040b,4,2,f +350,3062b,4,4,f +350,3068b,0,2,f +350,3068b,4,1,f +350,3068bp08,15,2,f +350,3068bp68,4,1,f +350,3069b,0,4,f +350,3069bp68,15,5,f +350,3070bp06,15,2,f +350,3070bpc2,15,1,f +350,3149c01,4,1,f +350,3298p68,4,2,f +350,3324c01,0,2,f +350,3403,0,2,f +350,3404,0,2,f +350,3460,0,2,f +350,3475b,7,2,f +350,3475b,0,1,f +350,3622,4,2,f +350,3623,0,2,f +350,3623,4,4,f +350,3626apr0001,14,3,f +350,3639,0,2,f +350,3640,0,2,f +350,3641,0,8,f +350,3660,4,2,f +350,3665,0,1,f +350,3666,4,1,f +350,3666,0,4,f +350,3673,7,1,f +350,3679,7,4,f +350,3680,4,1,f +350,3680,0,3,f +350,3700,0,12,f +350,3700,4,4,f +350,3705,0,3,f +350,3706,0,1,f +350,3707,0,6,f +350,3710,0,9,f +350,3710,4,2,f +350,3713,7,6,f +350,3794a,0,2,f +350,3795,0,4,f +350,3830,4,2,f +350,3831,4,2,f +350,3832,4,1,f +350,3838,0,3,f +350,3839b,0,4,f +350,3938,4,1,f +350,3941,4,6,f +350,3956,0,2,f +350,3958,4,1,f +350,3961,0,1,f +350,3962a,0,2,f +350,3963,0,2,f +350,4006,0,2,f +350,4032a,0,1,f +350,4070,0,2,f +350,4070,4,4,f +350,4079,0,2,f +350,4081b,0,4,f +350,4085c,0,9,f +350,4151a,4,2,f +350,4208,0,1,f +350,4209,4,1,f +350,4213,4,1,f +350,4228,4,2,f +350,4276b,0,2,f +350,4286,4,10,f +350,4287,0,6,f +350,4288,0,1,f +350,4315,4,4,f +350,4315,0,1,f +350,4345a,4,1,f +350,4346p68,7,1,f +350,4522,0,1,f +350,4531,4,3,f +350,4588,42,1,f +350,4589,42,10,f +350,4590,0,1,f +350,4591,7,2,f +350,4597,0,1,f +350,4598,0,1,f +350,4600,0,4,f +350,4624,15,8,f +350,4735,7,2,f +350,4736,0,2,f +350,4737,0,2,f +350,4740,42,1,f +350,4854,4,1,f +350,4859,4,1,f +350,4864a,4,8,f +350,4865a,0,1,f +350,4871,4,3,f +350,4873,0,2,f +350,6141,42,6,f +350,73092,0,7,f +350,970x026,15,3,f +350,973p68c01,4,3,f +352,3022,4,40,f +352,728,7,1,f +352,729,47,1,f +353,4689c01,14,1,f +354,2340,15,2,f +354,2412b,7,9,f +354,2420,1,6,f +354,2441,0,1,f +354,2446,15,1,f +354,2456,15,1,f +354,2458,1,2,f +354,2540,8,2,f +354,2555,0,2,f +354,2569,0,1,f +354,298c02,7,1,t +354,298c02,7,1,f +354,3001,15,4,f +354,3001,8,3,f +354,3002,0,3,f +354,3002,1,1,f +354,3003,15,4,f +354,3003,1,1,f +354,3004,1,5,f +354,3009,1,2,f +354,3020,8,2,f +354,30208,15,1,f +354,3022,1,6,f +354,3022,15,6,f +354,3023,15,1,f +354,3023,1,3,f +354,30237a,7,4,f +354,30293,57,1,f +354,30294,57,1,f +354,3031,8,3,f +354,3034,0,3,f +354,30355,15,1,f +354,30356,15,1,f +354,30365,7,4,f +354,30383,8,5,f +354,3039,73,7,f +354,3039px8,8,1,f +354,30485p60,40,1,f +354,30526,15,9,f +354,30535,8,2,f +354,30553,8,2,f +354,30554a,0,4,f +354,30596,25,1,f +354,3062b,34,1,f +354,3062b,0,4,f +354,3068bpx7,0,2,f +354,3069bp21,0,1,f +354,3069bp53,0,1,f +354,3069bpr0090,8,1,f +354,32000,15,9,f +354,3298,73,2,f +354,3626bpr0126,14,1,f +354,3626bpx43,14,1,f +354,3626bpx44,14,1,f +354,3641,0,4,f +354,3700,8,1,f +354,3703,15,2,f +354,3705,0,1,f +354,3795,7,2,f +354,3937,7,4,f +354,3938,15,4,f +354,3941,0,2,f +354,3943b,0,1,f +354,3959,0,2,f +354,3960,0,1,f +354,4032a,0,16,f +354,4070,15,4,f +354,4085c,0,2,f +354,4150px5,15,1,f +354,4286,73,2,f +354,4360,0,1,f +354,4589,36,6,f +354,4624,15,4,f +354,6060,15,4,f +354,6091,15,2,f +354,6141,36,3,t +354,6141,36,9,f +354,6183,15,1,f +354,6191,15,2,f +354,6219,15,1,f +354,6564,15,2,f +354,6565,15,2,f +354,6587,8,1,f +354,6628,0,6,f +354,6636,7,2,f +354,71966,61,2,f +354,76385,8,1,f +354,769,61,3,f +354,970x002,0,1,f +354,970x002,8,1,f +354,970x027,15,1,f +354,973px57c02,7,1,f +354,973px80c01,15,1,f +354,973px81c01,7,1,f +354,x152px1,15,1,f +355,3001,14,2,f +355,3001,4,2,f +355,3001,1,2,f +355,3002,1,2,f +355,3002,4,2,f +355,3003,14,2,f +355,3003,4,2,f +355,3003,0,2,f +355,3003,15,2,f +355,3003,1,2,f +355,3003pe2,14,2,f +355,4727,2,1,f +355,4744pr0002,4,1,f +355,4744px4,2,1,f +356,2983,7,10,f +357,30173b,135,1,f +357,32002,72,1,t +357,32002,72,3,f +357,3626cpr0746,14,1,f +357,4589,42,2,f +357,4643611,9999,2,f +357,4643612,9999,1,f +357,4643613,9999,1,f +357,4643614,9999,1,f +357,4643615,9999,1,f +357,6117,297,1,f +357,63965,70,1,f +357,64567,0,1,f +357,64727,1,2,f +357,92947,71,1,f +357,970c00pr0274,1,1,f +357,973pr1896c01,1,1,f +357,98132,179,1,f +357,98133pr0002,1,1,f +357,98139,179,1,f +357,98141,297,2,f +357,98347,135,3,f +358,10197,72,2,f +358,10928,72,1,f +358,11214,72,6,f +358,11478,71,4,f +358,14696,0,1,t +358,14696,0,30,f +358,14720,71,1,f +358,15100,0,5,f +358,15462,28,2,f +358,18654,72,1,t +358,18654,72,1,f +358,2780,0,1,t +358,2780,0,37,f +358,2850a,71,4,f +358,2851,14,4,f +358,2852,71,4,f +358,2853,14,4,f +358,2909c03,0,2,f +358,32009,72,4,f +358,32009,4,2,f +358,32013,4,2,f +358,32015,4,3,f +358,32016,0,6,f +358,32034,71,1,f +358,32054,4,4,f +358,32062,4,9,f +358,32073,71,2,f +358,32123b,71,1,t +358,32123b,71,11,f +358,32140,4,1,f +358,32184,4,3,f +358,32192,73,2,f +358,32200,4,3,f +358,32271,73,2,f +358,32291,0,1,f +358,32316,72,3,f +358,32333,71,2,f +358,32348,71,1,f +358,32523,0,4,f +358,32524,72,1,f +358,32525,72,4,f +358,32526,72,3,f +358,32557,0,2,f +358,3648b,72,2,f +358,3705,0,3,f +358,3713,4,13,f +358,3713,4,1,t +358,3749,19,2,f +358,41239,4,2,f +358,41669,4,2,f +358,41669,47,2,f +358,41677,4,2,f +358,41678,0,2,f +358,42003,71,4,f +358,4274,1,1,t +358,4274,1,6,f +358,43093,1,12,f +358,43857,4,4,f +358,44294,71,7,f +358,4519,71,19,f +358,48989,71,7,f +358,55013,72,2,f +358,59443,4,2,f +358,60483,71,4,f +358,60484,0,2,f +358,6141,80,2,f +358,6141,36,2,f +358,6141,80,1,t +358,6141,36,1,t +358,62462,71,5,f +358,63869,0,1,f +358,64391,73,2,f +358,64393,73,1,f +358,64394,0,1,f +358,64680,0,1,f +358,64681,73,1,f +358,64683,73,2,f +358,6536,0,12,f +358,6542b,72,1,f +358,6558,1,33,f +358,6629,72,1,f +358,6632,0,1,f +358,76537,14,1,f +358,78c11,179,2,f +358,87080,73,2,f +358,87083,72,1,f +358,87086,73,2,f +358,88516,0,2,f +358,88517,72,2,f +358,92907,0,2,f +358,94925,71,5,f +358,99008,19,1,f +358,99773,0,6,f +361,3708,0,50,f +362,2431,4,4,f +362,2444,4,2,f +362,2654,1,1,f +362,2780,0,1,t +362,2780,0,83,f +362,3022,4,1,f +362,30367b,1,2,f +362,30647,135,2,f +362,32002,72,4,f +362,32002,72,1,t +362,32009,0,3,f +362,32013,27,2,f +362,32013,135,2,f +362,32013,0,2,f +362,32015,27,4,f +362,32034,0,4,f +362,32034,72,3,f +362,32039,27,4,f +362,32039,135,4,f +362,32039,0,2,f +362,32054,0,6,f +362,32054,71,14,f +362,32062,0,23,f +362,32063,0,2,f +362,32063,27,4,f +362,32073,71,9,f +362,32123b,71,1,t +362,32123b,71,11,f +362,32138,0,2,f +362,32140,27,6,f +362,32140,0,14,f +362,32184,0,8,f +362,32192,27,6,f +362,32192,0,2,f +362,32195b,0,2,f +362,32199,27,4,f +362,32199,179,2,f +362,32200,179,2,f +362,32201,27,8,f +362,32209,0,2,f +362,32235,179,1,f +362,32250,4,4,f +362,32269,71,1,f +362,32270,71,3,f +362,32271,27,8,f +362,32271,4,4,f +362,32271,36,2,f +362,32278,0,4,f +362,32278,27,3,f +362,32278,72,6,f +362,32291,135,4,f +362,32291,0,6,f +362,32291,27,2,f +362,32316,135,1,f +362,32316,27,2,f +362,32316,0,1,f +362,32348,27,2,f +362,32348,4,2,f +362,32449,0,6,f +362,32449,27,2,f +362,32523,0,3,f +362,32523,27,6,f +362,32524,0,1,f +362,32525,27,2,f +362,32526,27,6,f +362,32526,0,2,f +362,32534,27,1,f +362,32535,27,1,f +362,32557,0,2,f +362,32557,27,2,f +362,3647,71,1,f +362,3647,71,1,t +362,3666,71,1,f +362,3673,71,2,f +362,3673,71,1,t +362,3705,4,6,f +362,3705,0,9,f +362,3706,0,5,f +362,3708,4,2,f +362,3713,4,1,t +362,3713,4,4,f +362,3713,71,1,t +362,3713,71,12,f +362,3737,0,1,f +362,3743,71,1,f +362,3749,19,3,f +362,3795,4,2,f +362,3941,1,4,f +362,3941,71,2,f +362,40001,72,1,f +362,4032a,1,2,f +362,40490,0,1,f +362,41239,0,2,f +362,41669,135,4,f +362,41669,143,2,f +362,41677,0,4,f +362,41678,0,2,f +362,42003,0,5,f +362,4274,71,7,f +362,4274,71,1,t +362,43093,1,38,f +362,43857,27,6,f +362,43898,41,2,f +362,44294,71,5,f +362,44350,27,1,f +362,44350,148,1,f +362,44351,148,1,f +362,44351,27,1,f +362,44352,27,1,f +362,44353,27,1,f +362,44771,0,4,f +362,44772,71,4,f +362,4519,71,17,f +362,4599a,4,2,f +362,46452,135,1,f +362,4740,72,2,f +362,48989,71,2,f +362,6536,27,6,f +362,6536,0,7,f +362,6538b,71,5,f +362,6538b,27,8,f +362,6538b,4,8,f +362,6558,0,45,f +362,6587,72,4,f +362,6632,27,6,f +362,6632,0,2,f +362,6632,72,4,f +362,6636,4,2,f +362,70973,135,2,f +362,78c05,179,1,f +362,78c09,179,1,f +362,8649stk01,9999,1,t +363,122c01,0,2,f +363,3137c01,0,4,f +363,3483,0,4,f +363,3641,0,12,f +363,7039,4,4,f +363,7049b,0,2,f +364,2780,0,2,f +364,32013,73,2,f +364,32015,73,2,f +364,32039,0,2,f +364,32062,0,2,f +364,32138,0,1,f +364,32140,0,2,f +364,32553,1,3,f +364,32554,54,1,f +364,32574,73,1,f +364,3705,0,2,f +364,3749,7,1,f +364,40339,1,1,f +364,4519,0,2,f +364,6553,73,2,f +364,71509,0,1,f +364,71509,0,1,t +369,13790,72,1,f +369,15661pr0001,14,1,f +369,4349pr0001,71,1,f +369,88646,0,1,f +369,970c00pr0636,1,1,f +369,973pr2616c01,1,1,f +371,2780,0,14,f +371,2780,0,2,t +371,32013,0,4,f +371,32054,8,2,f +371,32062,0,7,f +371,32073,7,3,f +371,32123b,7,2,t +371,32123b,7,6,f +371,32138,0,1,f +371,32174,4,7,f +371,32270,7,1,f +371,32291,0,1,f +371,32310,148,2,f +371,32316,8,3,f +371,32348,8,4,f +371,32449,0,4,f +371,32449,8,2,f +371,32474,0,1,f +371,32523,4,2,f +371,32524,8,2,f +371,32526,8,2,f +371,32553,4,1,f +371,32554,143,1,f +371,3705,0,6,f +371,3706,0,3,f +371,3708,0,2,f +371,3713,7,5,f +371,3713,7,1,t +371,3749,19,2,f +371,41669,135,4,f +371,41672,0,4,f +371,41677,4,12,f +371,41678,0,1,f +371,41679,8,4,f +371,41680,0,2,f +371,41681,135,2,f +371,42003,4,3,f +371,43093,1,11,f +371,43558,148,4,f +371,43559,148,2,f +371,44036,179,3,f +371,44135,8,1,f +371,44136,8,3,f +371,44139,4,3,f +371,44140,148,3,f +371,44148,8,2,f +371,44810,4,1,f +371,44813,179,2,f +371,44814,179,2,f +371,44815,0,1,f +371,4519,7,13,f +371,45749,8,2,f +371,6536,0,4,f +371,6536,8,6,f +371,6538b,135,2,f +371,6558,0,13,f +371,78c15,179,1,f +372,2335,15,2,f +372,2335,14,2,f +372,2343,297,2,f +372,2412b,72,2,f +372,2420,0,2,f +372,2431,14,1,f +372,2456,19,1,f +372,2456,70,4,f +372,2540,0,4,f +372,2654,19,2,f +372,2877,70,6,f +372,30027b,71,4,f +372,30028,0,4,f +372,3004,0,1,f +372,3004,70,21,f +372,3005,70,2,f +372,3005,1,1,f +372,3009,0,4,f +372,3010,70,2,f +372,30137,70,4,f +372,30179,0,2,f +372,3020,72,1,f +372,3020,70,1,f +372,3021,19,2,f +372,3022,19,1,f +372,3023,19,9,f +372,3027,19,1,f +372,3034,70,3,f +372,3034,19,2,f +372,30357,19,8,f +372,30383,0,2,f +372,3039,72,1,f +372,3062b,4,6,f +372,3069bpr0100,2,2,f +372,3070b,19,4,f +372,3070b,0,2,f +372,3070b,0,1,t +372,3070b,19,1,t +372,3460,0,1,f +372,3623,0,2,f +372,3660,19,2,f +372,3665,70,2,f +372,3666,0,1,f +372,3710,4,2,f +372,3710,70,2,f +372,3829c01,14,1,f +372,3832,70,5,f +372,3899,4,1,f +372,3941,71,3,f +372,3957a,71,2,f +372,4032a,14,3,f +372,4032a,19,2,f +372,4032a,4,2,f +372,4070,1,1,f +372,4070,19,4,f +372,41879a,70,1,f +372,41879a,1,1,f +372,43337,40,1,f +372,4345b,71,1,f +372,4346,15,1,f +372,43723,27,4,f +372,44302a,72,2,f +372,4477,70,1,f +372,4495b,4,2,f +372,52107,0,1,f +372,54200,70,1,t +372,54200,70,2,f +372,54872pr0006,14,1,f +372,54873pr0003,78,1,f +372,54874pr0002,4,1,f +372,6060,70,2,f +372,60616a,47,2,f +372,6091,19,2,f +372,6141,47,1,t +372,6141,14,2,f +372,6141,27,1,t +372,6141,4,1,t +372,6141,70,1,t +372,6141,14,1,t +372,6141,36,2,f +372,6141,47,2,f +372,6141,27,2,f +372,6141,4,2,f +372,6141,36,1,t +372,6141,70,8,f +372,6157,0,2,f +372,6179,15,1,f +372,6191,19,2,f +372,6256,191,1,f +372,970c00pr0108,78,1,f +372,973c11,14,1,f +372,973pr1257c01,73,1,f +372,973pr1259c01,78,1,f +373,2412b,4,3,f +373,2432,4,1,f +373,2496,0,2,f +373,2815,0,3,f +373,298c02,4,2,f +373,298c02,4,1,t +373,30157,8,1,f +373,3020,25,2,f +373,30219,0,1,f +373,3022,4,2,f +373,30237a,4,1,f +373,30602,25,1,f +373,30608,0,1,f +373,32013,8,1,f +373,32064b,0,3,f +373,3626bpb0053,14,1,f +373,3626bpr0216,14,1,f +373,3666,0,2,f +373,3737,0,1,f +373,3749,7,3,f +373,3795,7,1,f +373,3849,0,1,f +373,4185,57,3,f +373,42445,7,1,f +373,42446,2,1,f +373,42446,2,1,t +373,42511,14,1,f +373,4485,15,1,f +373,4855,14,2,f +373,4859,0,2,f +373,4871,14,1,f +373,6734stk01,9999,1,t +373,75535,0,2,f +373,78c02,0,1,t +373,78c02,0,1,f +373,970c00pb010,1,1,f +373,970x026,14,1,f +373,973pb0057c01,4,1,f +373,973pr0805c01,15,1,f +373,x772px1,47,1,f +374,2432,0,1,f +374,2458,14,2,f +374,2512,14,1,f +374,3001,14,1,f +374,30157,8,1,f +374,3020,0,1,f +374,30277,14,1,f +374,3031,0,1,f +374,30397,0,2,f +374,3068b,1,1,f +374,3626bpx43,14,1,f +374,3829c01,1,1,f +374,3833,15,1,f +374,6014a,14,4,f +374,6015,0,4,f +374,970c00,25,1,f +374,973pb0010c01,25,1,f +375,11303,4,1,f +375,12825,4,4,f +375,2431,71,1,f +375,2435,2,3,f +375,3001,19,1,f +375,30133,4,1,f +375,30136,19,6,f +375,30136,70,3,f +375,3020,19,1,f +375,3020,71,1,f +375,3023,70,3,f +375,3023,19,5,f +375,3032,15,1,f +375,3039,19,2,f +375,3040b,19,4,f +375,3069bpr0100,2,2,f +375,33291,10,6,f +375,33291,10,1,t +375,3623,19,4,f +375,3626cpr0645,14,1,f +375,3626cpr0893,14,1,f +375,3665,70,2,f +375,3666,70,1,f +375,3666,19,2,f +375,3710,70,1,f +375,3794a,19,2,f +375,3795,70,1,f +375,3795,19,1,f +375,3835,0,1,f +375,3836,70,1,f +375,3899,47,1,f +375,3937,15,2,f +375,4032a,288,1,f +375,4083,0,1,f +375,4085c,0,2,f +375,41334,30,1,f +375,54200,19,1,t +375,54200,19,2,f +375,6020,0,2,f +375,60475a,15,2,f +375,60583b,71,2,f +375,60800b,70,2,f +375,6134,71,2,f +375,6141,4,2,f +375,6141,4,1,t +375,6141,15,3,f +375,6141,15,1,t +375,6141,36,1,t +375,6141,34,6,f +375,6141,36,6,f +375,6141,34,1,t +375,6180,320,2,f +375,62113,0,2,f +375,6636,4,4,f +375,85984,19,2,f +375,970c00,272,1,f +375,970c00,2,1,f +375,973pr1446c01,4,1,f +375,973pr1918c01,73,1,f +375,99207,71,1,f +376,164c01,1,1,f +376,185c01,1,3,f +376,3001a,0,1,f +376,3001a,14,18,f +376,3001a,15,2,f +376,3002a,4,1,f +376,3002a,15,3,f +376,3004,0,1,f +376,3004,15,2,f +376,3005,47,6,f +376,3005,15,4,f +376,3008,15,2,f +376,3009,15,1,f +376,3009,47,1,f +376,3010,15,2,f +376,3020,15,2,f +376,3021,7,6,f +376,3021,15,5,f +376,3023,7,1,f +376,3024,15,4,f +376,3024,4,2,f +376,3032,15,1,f +376,3037,15,3,f +376,3039,0,1,f +376,3040a,15,4,f +376,315.2stk01,9999,1,t +376,315.2stk02,9999,1,t +376,3633,15,2,f +376,3706,79,1,f +376,997c01,1,1,f +376,x148,4,1,f +376,x149,4,2,f +377,851210,9999,1,f +378,12893pr0001,14,1,f +378,3068bpr0008,71,1,f +378,3626bpb0924,14,1,f +378,3899,15,1,f +378,88646,0,1,f +378,970c00,28,1,f +378,973pr2320c01,19,1,f +379,14226c11,0,4,f +379,14226c21,0,6,f +379,2335,4,2,f +379,2357,4,2,f +379,2357,19,2,f +379,2412b,6,2,f +379,2412b,8,4,f +379,2413,8,1,f +379,2413,1,1,f +379,2420,19,6,f +379,2431,7,4,f +379,2431,8,2,f +379,2431,6,1,f +379,2431,4,1,f +379,2432,7,2,f +379,2433,0,2,f +379,2444,0,5,f +379,2445,6,1,f +379,2450,6,4,f +379,2452,0,1,f +379,2458,1,1,f +379,2465,0,4,f +379,2529,6,4,f +379,2540,19,2,f +379,2540,8,2,f +379,2625,8,1,f +379,2653,0,2,f +379,2736,7,2,f +379,2741,0,2,f +379,2780,0,18,f +379,2877,4,2,f +379,2880,0,1,f +379,3001,4,1,f +379,3001,7,2,f +379,3001,19,1,f +379,3002,4,3,f +379,3003,19,1,f +379,3004,19,1,f +379,3004,8,3,f +379,3004,15,1,f +379,3004,4,1,f +379,3005,8,2,f +379,3005,19,2,f +379,30056,4,4,f +379,3008,8,4,f +379,3010,4,2,f +379,3010,8,5,f +379,3010,15,2,f +379,30162,8,1,f +379,3020,6,6,f +379,3020,19,4,f +379,3020,0,3,f +379,3020,8,9,f +379,3021,19,3,f +379,3021,1,3,f +379,3021,6,4,f +379,3021,8,3,f +379,3021,7,2,f +379,3022,1,3,f +379,3022,15,1,f +379,3022,4,1,f +379,3022,19,2,f +379,3023,4,4,f +379,3023,6,4,f +379,3023,14,5,f +379,3023,8,13,f +379,3023,19,6,f +379,3023,1,3,f +379,3024,8,4,f +379,3024,4,1,f +379,3028,6,1,f +379,3029,6,1,f +379,3032,6,6,f +379,3034,19,2,f +379,3034,8,1,f +379,3035,6,2,f +379,30357,6,6,f +379,3036,6,2,f +379,3037,8,2,f +379,3037,4,2,f +379,30383,8,2,f +379,3039,19,6,f +379,30407,6,2,f +379,3040b,19,6,f +379,30414,8,1,f +379,30503,6,2,f +379,3068b,4,2,f +379,3068b,6,5,f +379,3069b,15,1,f +379,3069b,4,4,f +379,3069b,6,1,f +379,3069bpr0101,7,1,f +379,32000,7,1,f +379,32002,8,1,t +379,32002,8,3,f +379,32013,6,12,f +379,32015,6,8,f +379,32059,8,1,f +379,32123b,7,5,f +379,32123b,7,1,t +379,32124,7,1,f +379,32184,19,2,f +379,32293,6,2,f +379,32294,6,4,f +379,32531,0,1,f +379,33286,0,2,f +379,3451stk01,9999,1,t +379,3460,19,2,f +379,3460,8,11,f +379,3622,8,3,f +379,3622,19,4,f +379,3622,4,2,f +379,3623,6,2,f +379,3623,1,2,f +379,3660,4,1,f +379,3660,8,3,f +379,3665,8,1,f +379,3666,4,2,f +379,3666,8,4,f +379,3678a,19,2,f +379,3700,1,2,f +379,3702,19,4,f +379,3702,4,2,f +379,3705,6,10,f +379,3707,6,4,f +379,3708,0,1,f +379,3710,8,2,f +379,3710,14,3,f +379,3710,19,5,f +379,3713,7,1,t +379,3713,7,3,f +379,3731,7,1,f +379,3737,0,1,f +379,3749,7,4,f +379,3794a,4,2,f +379,3794a,1,2,f +379,3794a,7,4,f +379,3794a,0,8,f +379,3794a,15,1,f +379,3794a,8,3,f +379,3795,14,1,f +379,3795,6,1,f +379,3795,8,1,f +379,3795,19,4,f +379,3830,8,4,f +379,3831,8,4,f +379,3832,8,1,f +379,3894,7,1,f +379,3933,6,2,f +379,3934,6,2,f +379,3941,4,4,f +379,3960,19,2,f +379,4032a,7,1,f +379,4070,0,4,f +379,4162,8,2,f +379,4185,6,3,f +379,4215b,15,2,f +379,4274,7,1,t +379,4274,7,10,f +379,4282,8,1,f +379,4282,6,1,f +379,4286,8,2,f +379,4349,7,6,f +379,4460a,4,1,f +379,4510,0,2,f +379,4531,0,2,f +379,4589,0,2,f +379,4740,7,12,f +379,4740,8,6,f +379,6005,4,1,f +379,6091,8,2,f +379,6091,4,2,f +379,6111,8,2,f +379,6112,8,2,f +379,6141,1,6,f +379,6141,1,1,t +379,6141,7,1,t +379,6141,6,6,f +379,6141,8,8,f +379,6141,8,1,t +379,6141,7,1,f +379,6141,6,1,t +379,6179,6,8,f +379,6180,6,4,f +379,6205,6,8,f +379,6232,4,1,f +379,6232,8,1,f +379,6232,15,1,f +379,6541,4,4,f +379,6541,0,2,f +379,6628,0,2,f +379,6636,19,2,f +379,6636,8,2,f +379,73983,8,4,f +379,75535,6,3,f +379,75535,0,4,f +380,3647,7,50,f +380,3648a,7,14,f +380,3649,7,8,f +380,3650b,7,8,f +380,4019,7,10,f +380,4143,7,30,f +380,73071,7,2,f +382,22670,334,1,f +382,2343,15,1,f +382,2431,226,2,f +382,3010,15,8,f +382,30153,33,4,f +382,30153,45,1,f +382,3030,5,2,f +382,3062b,73,2,f +382,33202px1,15,1,f +382,33209,15,1,f +382,33210,73,1,f +382,33211,1,2,f +382,33212,1,2,f +382,33243px1,15,4,f +382,3626b,47,2,f +382,3659,226,2,f +382,3673,7,3,f +382,3673,7,1,t +382,3741,10,1,f +382,3741,10,1,t +382,3742,5,3,f +382,3742,5,1,t +382,3794a,15,3,f +382,3832,15,1,f +382,4088,15,2,f +382,45,334,1,f +382,4728,73,2,f +382,4735,15,2,f +382,4740,45,1,f +382,4740,334,2,f +382,6111,226,4,f +382,6141,46,2,f +382,6141,46,1,t +382,6171pr01,15,1,f +382,6176,5,1,f +382,6184,45,2,f +382,6187,226,2,f +382,belveilpb01,15,1,f +382,belvfem64,-1,1,f +382,belvmale16,-1,1,f +382,belvskirt24,15,1,f +384,2793c01,14,1,f +384,2797c02,14,1,f +384,75215,7,1,f +385,3004,4,2,f +385,3005,4,5,f +385,3021,4,2,f +385,3023,4,4,f +385,3024,0,4,f +385,3024,36,1,f +385,3024,4,2,f +385,3031,4,2,f +385,3039,4,1,f +385,3040b,4,6,f +385,3062a,0,2,f +385,3062a,14,2,f +385,3460,0,6,f +385,3461,0,1,f +385,3462,4,1,f +385,3480,0,1,f +385,3481,4,1,f +385,3623,4,6,f +385,3626apr0001,14,1,f +385,3665,4,2,f +385,3666,0,2,f +385,3710,4,8,f +385,3747a,4,1,f +385,3794a,4,1,f +385,3823,47,1,f +385,3832,4,2,f +385,3835,7,1,f +385,3842a,15,1,f +385,3941,14,2,f +385,3956,4,1,f +385,3959,14,3,f +385,3962a,0,1,f +385,4070,4,2,f +385,4070,0,2,f +385,4079,14,1,f +385,4081a,4,2,f +385,4085a,0,2,f +385,4213,4,1,f +385,4284,47,1,f +385,4315,4,1,f +385,4349,0,4,f +385,6141,46,2,f +385,6685stk01,9999,1,t +385,970c00,0,1,f +385,973p21c01,0,1,f +385,x467c10,14,2,f +387,2423,2,1,f +387,3001,70,1,f +387,30136,19,1,f +387,3020,15,1,f +387,3062b,19,2,f +387,3710,15,1,f +387,4070,70,2,f +387,6141,29,1,t +387,6141,29,2,f +387,64644,297,2,f +387,88930,322,1,f +388,3004,0,2,f +388,3005,47,4,f +388,3005,4,8,f +388,3007,4,2,f +388,3008,4,4,f +388,3009,47,2,f +388,3009,4,8,f +388,3010,4,2,f +388,3020,0,6,f +388,3021,4,4,f +388,3021,14,4,f +388,3023,0,22,f +388,3023,4,4,f +388,3027,0,1,f +388,3038,47,4,f +388,3298,7,2,f +388,3460,0,4,f +388,3460,14,4,f +388,3475a,7,2,f +388,3581,0,8,f +388,3582,0,8,f +388,3710,14,2,f +388,429c02,0,2,f +388,458,0,8,f +388,772p01,47,4,f +388,wheel2a,0,8,f +388,x550b,0,1,f +388,x555c01,0,1,f +388,x946,0,2,f +389,2302,5,1,f +389,2302,4,1,f +389,3437,73,1,f +389,3437,14,1,f +389,3437pr0049,5,1,f +389,3437pr0049,10,1,f +389,3664pb13,4,1,f +389,40666,10,1,f +389,40666,25,1,f +389,4066pb434,25,1,f +389,4892,14,1,f +389,6474,10,1,f +389,98223,10,1,f +389,98223,73,1,f +389,98224,85,2,f +389,98224,25,1,f +389,b12dup03,9999,1,f +390,30556,19,1,f +390,30598,0,1,f +390,30600pb03,19,1,f +390,30603pb18,19,1,f +390,racerbase,19,1,f +390,rb00168,0,2,f +392,3002,71,1,f +392,3004,71,1,f +392,3020,2,1,f +392,3021,71,1,f +392,3021,2,1,f +392,3022,71,1,f +392,30365,71,1,f +392,30386,71,1,f +392,30389c,71,1,f +392,3039,71,1,f +392,3040b,2,6,f +392,3298,2,1,f +392,3660,2,2,f +392,3660,71,1,f +392,3665,2,2,f +392,4070,71,2,f +392,4286,2,4,f +392,6141,15,4,f +392,6141,15,1,t +392,6141,0,2,f +392,6141,0,1,t +393,47510pr0002,212,1,f +393,47510pr0003c02,29,1,f +393,47510pr0006,15,1,f +393,47511pr0001,15,1,f +393,47511pr0005,212,1,f +393,47511pr0006,1,1,f +393,47511pr0007,15,1,f +393,63716,85,1,f +393,63716,26,1,f +393,75113pr0008,212,1,f +393,75115pr0009,378,1,f +393,75115pr0010,0,1,f +393,75115pr0012,15,1,f +393,75121pr0007,15,1,f +393,75121pr0008,10,1,f +393,75126,1,1,f +394,2342,0,1,f +394,2412b,0,1,t +394,2412b,0,1,f +394,2420,0,4,f +394,2431,4,2,f +394,2434,0,2,f +394,2445,4,1,f +394,2460,0,2,f +394,2871a,0,2,f +394,2875,7,4,f +394,2876,7,2,f +394,2877,4,24,f +394,2877,7,8,f +394,2877,15,4,f +394,2878c01,0,4,f +394,2880,0,4,f +394,2881,0,2,f +394,2920,0,2,f +394,2924a,4,2,f +394,298c02,7,2,f +394,298c02,7,1,t +394,3001,4,2,f +394,3001,0,2,f +394,3001,7,1,f +394,3003,4,2,f +394,3003,0,1,f +394,3004,0,3,f +394,3004,4,12,f +394,3005,4,10,f +394,3009,4,2,f +394,3009,15,2,f +394,3010,0,1,f +394,3010,4,6,f +394,3020,4,3,f +394,3020,0,4,f +394,3021,0,10,f +394,3021,7,4,f +394,3022,0,5,f +394,3023,0,7,f +394,3023,4,26,f +394,3023,7,6,f +394,3029,4,1,f +394,3031,7,2,f +394,3032,0,1,f +394,3032,7,2,f +394,3034,0,8,f +394,3036,4,2,f +394,3037,0,2,f +394,3039pc4,0,1,f +394,3045,0,2,f +394,3069b,0,4,f +394,3069bp25,15,2,f +394,3069bp52,15,2,f +394,3298,0,1,f +394,3460,15,4,f +394,3475b,0,2,f +394,3624,4,1,f +394,3626apr0001,14,1,f +394,3626b,0,2,f +394,3660,0,4,f +394,3665,4,2,f +394,3666,0,1,f +394,3700,4,2,f +394,3709,0,2,f +394,3710,0,5,f +394,3710,15,2,f +394,3710,4,4,f +394,3738,0,4,f +394,3747a,0,2,f +394,3794a,7,6,f +394,3795,4,1,f +394,3832,0,1,f +394,3956,0,1,f +394,4022,0,2,f +394,4025,0,1,f +394,4070,4,4,f +394,4079,14,2,f +394,4081b,0,4,f +394,4162,4,4,f +394,4181p08,4,2,f +394,4182p08,4,2,f +394,4183,47,4,f +394,4274,7,1,t +394,4274,7,2,f +394,4477,4,4,f +394,4531,7,2,f +394,4551stk01,9999,1,t +394,4588,0,1,f +394,4589,0,1,f +394,4744,4,2,f +394,4746,0,1,f +394,4871,0,1,f +394,6141,0,4,f +394,6141,47,6,f +394,70358,0,1,f +394,73092,0,2,f +394,970c00,0,1,f +394,973px1c01,1,1,f +395,2335,4,1,f +395,2412b,72,16,f +395,2412b,0,5,f +395,2419,14,1,f +395,2420,72,2,f +395,2431,15,2,f +395,2432,72,2,f +395,2445,0,1,f +395,2456,71,2,f +395,2456,0,2,f +395,2456,15,1,f +395,2555,72,6,f +395,2730,0,2,f +395,2780,0,2,t +395,2780,0,19,f +395,2877,15,4,f +395,2921,15,2,f +395,3001,0,1,f +395,3002,0,2,f +395,3003,15,2,f +395,3004,15,3,f +395,3004,1,4,f +395,3004,71,4,f +395,3005,72,4,f +395,3008,14,2,f +395,3009,15,2,f +395,3010,72,5,f +395,3010,71,2,f +395,3020,14,1,f +395,3020,72,4,f +395,3021,72,1,f +395,3021,0,3,f +395,3022,72,2,f +395,3022,15,1,f +395,3022,0,1,f +395,30222,42,2,f +395,3023,1,2,f +395,3023,14,6,f +395,3023,15,1,f +395,3027,72,1,f +395,3031,0,2,f +395,3031,72,2,f +395,3032,0,1,f +395,3035,14,2,f +395,3035,0,1,f +395,3036,0,1,f +395,30367b,4,2,f +395,30367b,27,2,f +395,30374,0,2,f +395,3039,0,8,f +395,3039pr0014,0,1,f +395,3040b,0,16,f +395,30503,72,2,f +395,30526,1,1,f +395,3062b,19,8,f +395,3062b,72,2,f +395,3068b,0,4,f +395,3069b,0,10,f +395,3070b,46,2,f +395,3070b,46,1,t +395,32000,0,1,f +395,32013,0,2,f +395,32016,71,1,f +395,32018,0,2,f +395,32062,0,1,f +395,32064b,2,2,f +395,32270,0,2,f +395,3245b,15,2,f +395,32523,0,2,f +395,32531,0,2,f +395,32532,0,2,f +395,32556,19,1,f +395,3297,0,2,f +395,3298,0,5,f +395,3298,72,2,f +395,3460,0,2,f +395,3626bpr0347,78,1,f +395,3626bpr0469,15,1,f +395,3626bpr0476,78,1,f +395,3660,0,1,f +395,3665,72,2,f +395,3665,15,4,f +395,3666,27,2,f +395,3666,0,2,f +395,3666,14,1,f +395,3675,0,2,f +395,3700,14,2,f +395,3702,0,2,f +395,3705,0,1,f +395,3710,0,1,f +395,3710,71,2,f +395,3710,14,3,f +395,3713,71,4,f +395,3713,71,2,t +395,3795,15,3,f +395,3829c01,14,2,f +395,3839b,72,1,f +395,3941,19,1,f +395,3942c,19,1,f +395,3958,27,1,f +395,4070,71,2,f +395,4070,72,2,f +395,4081b,0,6,f +395,41334,0,1,f +395,4176,40,1,f +395,41767,0,1,f +395,41768,0,1,f +395,41769,0,1,f +395,41770,0,1,f +395,4215b,15,2,f +395,42444,2,1,f +395,4274,1,4,f +395,4274,1,1,t +395,4282,72,1,f +395,4286,0,6,f +395,43093,1,4,f +395,4349,72,3,f +395,43710,0,2,f +395,43711,0,2,f +395,43722,0,2,f +395,43723,0,2,f +395,44309,0,2,f +395,44728,29,3,f +395,44728,15,4,f +395,44728,19,1,f +395,4488,71,4,f +395,45590,0,1,f +395,4589,19,1,f +395,4589,46,2,f +395,48336,71,4,f +395,4864b,40,2,f +395,4865a,71,1,f +395,50745,27,4,f +395,50943,71,1,f +395,50950,72,2,f +395,52031,15,2,f +395,52501,15,1,f +395,54200,0,18,f +395,54200,15,3,f +395,54200,72,1,t +395,54200,182,2,f +395,54200,0,3,t +395,54200,182,1,t +395,54200,72,2,f +395,54383,0,1,f +395,54384,0,1,f +395,55013,72,2,f +395,55704,0,1,f +395,55707a,0,1,f +395,55707e,0,2,f +395,55976,0,4,f +395,56145,0,6,f +395,56619,0,1,f +395,56630,0,1,f +395,57028c01,71,2,f +395,57796,72,1,f +395,57796,0,1,f +395,59426,72,2,f +395,6014b,71,4,f +395,6015,0,4,f +395,60470a,0,2,f +395,60477,0,6,f +395,60657,15,1,f +395,60658,15,1,f +395,6070,0,3,f +395,6070,40,3,f +395,6111,14,1,f +395,6111,0,1,f +395,61184,71,2,f +395,6141,46,1,t +395,6141,72,1,t +395,6141,46,2,f +395,6141,42,1,t +395,6141,36,4,f +395,6141,42,2,f +395,6141,72,6,f +395,6141,36,2,t +395,6215,15,2,f +395,6541,0,2,f +395,6564,0,1,f +395,6565,0,1,f +395,6636,0,2,f +395,85973,0,1,f +395,970c00,85,1,f +395,970c00,72,2,f +395,973c43,85,1,f +395,973pr1282c01,85,1,f +395,973pr1382c01,72,1,f +395,98721,0,3,f +397,23186,70,1,f +397,26562,15,1,f +397,3626cpr1928,78,1,f +397,88646pr0002,15,1,f +397,970c00pr1051,0,1,f +397,973pr3377c01,15,1,f +401,11090,0,1,f +401,11211,15,2,f +401,11477,4,1,f +401,14769,72,1,f +401,15625,72,2,f +401,3009,15,2,f +401,3020,71,2,f +401,3020,15,4,f +401,3023,14,1,f +401,3023,4,1,f +401,30236,15,2,f +401,30292,4,1,f +401,3034,15,3,f +401,3034,4,2,f +401,3037,15,4,f +401,3062b,4,1,f +401,3062b,41,1,f +401,3068b,15,2,f +401,3069b,15,2,f +401,3245c,15,1,f +401,3460,14,2,f +401,3460,71,4,f +401,3623,72,1,f +401,3626cpr1665,14,1,f +401,3710,14,2,f +401,3710,4,2,f +401,3710,71,4,f +401,3795,72,4,f +401,4006,0,1,f +401,4599b,71,1,t +401,4599b,4,1,t +401,4599b,4,1,f +401,4599b,71,2,f +401,48729b,72,1,f +401,48729b,72,1,t +401,60897,71,1,f +401,6091,4,1,f +401,61345,15,4,f +401,6141,36,1,t +401,6141,36,1,f +401,6141,34,1,t +401,6141,34,1,f +401,6141,57,1,t +401,6141,57,1,f +401,62810,308,1,f +401,63868,4,3,f +401,92947,71,1,f +401,970c00,0,1,f +401,973c01,15,1,f +401,99207,4,2,f +402,3001a,47,1,f +402,3001a,1,2,f +402,3001a,14,3,f +402,3002a,1,2,f +402,3003,1,2,f +402,3004,1,8,f +402,3005,1,4,f +402,3010,1,12,f +402,3020,1,1,f +402,3020,7,7,f +402,3021,1,1,f +402,3022,1,2,f +402,3022,15,1,f +402,3022,4,2,f +402,3029,7,4,f +402,3039,1,1,f +402,3040a,1,2,f +402,3062a,1,8,f +402,3062a,14,1,f +402,3176,4,3,f +402,3176c01,4,3,f +402,7049b,15,6,f +402,wheel1a,4,12,f +403,11211,71,3,f +403,11476,71,4,f +403,11477,0,1,f +403,14769,19,1,f +403,15068,0,2,f +403,15068,71,1,f +403,15210,72,2,f +403,15332,70,1,f +403,15391,0,2,f +403,15392,72,2,f +403,15392,72,1,t +403,15445,72,1,f +403,15571,71,1,f +403,18674,72,1,f +403,18895,0,1,f +403,18896,0,1,f +403,20877,484,1,f +403,21778,0,1,f +403,2412b,70,6,f +403,24135,71,1,f +403,24135,71,1,t +403,24144,0,1,f +403,25266pr0001,71,1,f +403,26150,9999,1,t +403,2817,71,1,f +403,2877,70,2,f +403,3001,19,1,f +403,30031,72,2,f +403,3004,484,9,f +403,30157,70,2,f +403,3020,326,1,f +403,3023,71,1,f +403,3023,0,1,f +403,3031,72,2,f +403,30367c,40,2,f +403,30374,41,2,f +403,3040b,484,2,f +403,30663,0,2,f +403,3068b,320,1,f +403,3069b,0,2,f +403,32028,70,4,f +403,3626cpr1673,78,1,f +403,3626cpr1907,0,1,f +403,3626cpr1908,70,1,f +403,3665,0,6,f +403,3666,0,3,f +403,3673,71,1,t +403,3673,71,2,f +403,3710,484,2,f +403,3747a,0,2,f +403,3829c01,71,1,f +403,3958,0,1,f +403,4449,2,1,f +403,44676,72,2,f +403,48336,0,2,f +403,50861,0,2,f +403,50862,4,2,f +403,55981,0,2,f +403,55981,71,2,f +403,56891,0,4,f +403,59900,182,2,f +403,60478,0,2,f +403,60478,70,2,f +403,60481,0,2,f +403,60592,70,2,f +403,60594,0,2,f +403,60897,4,3,f +403,6112,0,2,f +403,61184,71,2,f +403,6126b,57,1,f +403,6141,4,1,t +403,6141,4,4,f +403,6141,25,1,t +403,6141,36,2,f +403,6141,36,1,t +403,6141,25,6,f +403,64567,71,1,t +403,64567,71,2,f +403,6541,0,2,f +403,87079,484,1,f +403,87079,0,1,f +403,87087,484,2,f +403,87552,40,1,f +403,92410,71,2,f +403,92593,0,6,f +403,92593,326,2,f +403,95199,0,2,f +403,970c00,72,2,f +403,970c00pr0853,0,1,f +403,973pr3013c01,0,1,f +403,973pr3354c01,0,1,f +403,973pr3355c01,71,1,f +403,98138,71,2,f +403,98138,182,1,t +403,98138,47,1,t +403,98138,182,2,f +403,98138,47,3,f +403,98281,71,1,f +403,99206,71,1,f +403,99207,0,1,f +404,3626bpr0126,14,1,f +404,3836,70,1,f +404,4485,1,1,f +404,970c00,25,1,f +404,973pr1182c01,25,1,f +405,75215,7,5,f +406,2780,0,5,f +406,2907,71,1,f +406,32062,0,1,f +406,32174,72,7,f +406,32270,71,1,f +406,32482,0,1,f +406,3706,0,1,f +406,41669,34,2,f +406,43093,1,3,f +406,4519,71,4,f +406,47296,72,2,f +406,47299,179,2,f +406,47306,0,1,f +406,50899,179,1,f +406,50899pr0002,179,1,f +406,50900,72,1,f +406,50901,72,1,f +406,50903,14,1,f +406,50919,179,2,f +406,50920,0,2,f +406,50921,0,1,f +406,50922,0,1,f +406,50923,72,1,f +406,50925,0,1,f +406,50926,179,1,f +406,50927,0,1,f +406,50937pat01,0,2,f +407,2436,0,2,f +407,2711,0,6,f +407,3021,0,8,f +407,3022,4,2,f +407,3023,4,10,f +407,3030,0,2,f +407,3036,0,2,f +407,32001,4,8,f +407,3460,0,8,f +407,3460,4,8,f +407,3623,0,12,f +407,3623,4,12,f +407,3666,4,8,f +407,3666,0,8,f +407,3709,4,8,f +407,3709,0,12,f +407,3710,0,12,f +407,3710,4,12,f +407,3738,0,8,f +407,3738,4,4,f +407,3794a,4,4,f +407,3832,0,2,f +407,3941,0,4,f +407,4162,7,4,f +408,3626bpr0126,14,1,f +408,3833,4,1,f +408,970x199,25,1,f +408,973pr1183c01,25,1,f +409,11289,40,1,f +409,11477,272,4,f +409,11833,191,2,f +409,11833,272,2,f +409,15392,72,1,t +409,15392,72,2,f +409,15403,0,2,f +409,15535pr0001,72,2,f +409,18663,47,1,f +409,2540,71,2,f +409,2654,72,1,f +409,30171,0,1,f +409,3020,28,1,f +409,3020,71,1,f +409,3022,191,1,f +409,3022,71,1,f +409,3023,47,2,f +409,32028,0,2,f +409,32062,4,1,f +409,32064a,0,4,f +409,32187,71,3,f +409,3626cpr1536,78,1,f +409,3626cpr1703,0,1,f +409,3626cpr1704,4,1,f +409,3666,272,3,f +409,3673,71,2,f +409,3673,71,1,t +409,3709,0,2,f +409,3710,272,1,f +409,3749,19,1,f +409,4345b,71,1,f +409,4346,71,1,f +409,43719,272,1,f +409,44301a,72,2,f +409,44302a,0,2,f +409,44567a,72,2,f +409,44676,272,2,f +409,47456,272,1,f +409,48724,0,1,f +409,48729b,72,1,t +409,48729b,72,2,f +409,51739,272,1,f +409,55236,4,5,f +409,60471,0,2,f +409,60476,0,2,f +409,60478,191,2,f +409,6141,57,1,t +409,6141,47,1,t +409,6141,47,2,f +409,6141,57,5,f +409,61482,71,1,f +409,61482,71,1,t +409,76766,71,1,f +409,90202,0,1,f +409,92280,71,2,f +409,93606,272,1,f +409,95199,0,1,f +409,970c00,0,1,f +409,970c00pr0885,4,1,f +409,970x001,272,1,f +409,973pr3058c01,0,1,f +409,973pr3059c01,272,1,f +409,973pr3061c01,4,1,f +409,99781,15,1,f +410,3068b,4,100,f +411,122c01,0,2,f +411,3001a,47,1,f +411,3003,0,1,f +411,3005,14,2,f +411,3010,14,1,f +411,3020,0,2,f +411,3021,14,1,f +411,3022,14,2,f +411,3023,0,2,f +411,3024,14,2,f +411,3024,46,2,f +411,3024,0,2,f +411,3031,0,1,f +411,3034,0,2,f +411,3035,14,1,f +411,3062a,7,1,f +411,3062b,46,1,f +411,3069b,0,4,f +411,3149c01,0,2,f +411,3460,14,2,f +411,3491,0,1,f +411,3492c01,14,1,f +411,3626apr0001,14,1,f +411,3679,7,1,f +411,3680,0,1,f +411,3710,14,3,f +411,3823,47,1,f +411,3829c01,4,1,f +411,3833,4,1,f +411,3959,7,2,f +411,3959,0,2,f +411,4070,14,2,f +411,4079,4,1,f +411,4083,0,1,f +411,4084,0,4,f +411,4085a,0,2,f +411,970c00,0,1,f +411,973c07,1,1,f +412,11089,15,2,f +412,11089,70,4,f +412,11097,297,2,f +412,11103,297,1,f +412,11127,41,2,f +412,11129pr0003,320,1,f +412,11129pr0004,308,1,f +412,11153,191,3,f +412,11153,70,6,f +412,11211,71,2,f +412,12551pr0002,326,1,f +412,2412b,19,2,f +412,2412b,70,2,f +412,2420,0,4,f +412,2432,71,3,f +412,2436,15,2,f +412,2444,14,4,f +412,2639,72,2,f +412,2654,4,5,f +412,2730,71,2,f +412,2780,0,4,t +412,2780,0,23,f +412,2921,19,2,f +412,3001,4,1,f +412,30136,19,4,f +412,3020,70,4,f +412,3021,19,4,f +412,3022,191,3,f +412,3023,28,6,f +412,3031,72,1,f +412,30357,19,2,f +412,30374,14,1,f +412,30374,33,1,f +412,30414,19,2,f +412,3048c,0,1,f +412,30541,0,2,f +412,3062b,0,2,f +412,3062b,33,3,f +412,3068b,72,2,f +412,3068b,28,1,f +412,3069b,191,2,f +412,32001,71,1,f +412,32002,72,1,t +412,32002,72,2,f +412,32009,72,2,f +412,32034,71,2,f +412,32054,4,2,f +412,32062,4,9,f +412,32064b,71,2,f +412,32072,0,1,f +412,32123b,14,1,t +412,32123b,71,8,f +412,32123b,71,1,t +412,32123b,14,5,f +412,32192,72,4,f +412,32198,19,1,f +412,32270,0,1,f +412,32316,0,2,f +412,32348,71,4,f +412,32530,72,2,f +412,32531,0,1,f +412,3298,15,1,f +412,3300,4,1,f +412,3623,0,2,f +412,3626cpr1121,19,1,f +412,3626cpr1122,28,1,f +412,3626cpr1140,326,1,f +412,3660,19,2,f +412,3666,19,3,f +412,3700,72,1,f +412,3701,70,1,f +412,3705,0,2,f +412,3706,0,1,f +412,3710,191,3,f +412,3710,72,3,f +412,3713,71,1,t +412,3713,71,4,f +412,3747b,72,1,f +412,3794b,19,2,f +412,3829c01,71,1,f +412,3895,72,2,f +412,4032a,19,8,f +412,4085c,4,2,f +412,41239,0,6,f +412,4162,72,1,f +412,41678,0,4,f +412,41747,191,2,f +412,41748,191,2,f +412,41769,72,1,f +412,41770,72,1,f +412,4185,19,2,f +412,42003,14,3,f +412,42060,191,1,f +412,42061,191,1,f +412,4282,72,1,f +412,43093,1,8,f +412,43713,72,1,f +412,43857,0,12,f +412,44302a,0,2,f +412,4477,19,2,f +412,4740,36,1,f +412,48336,0,4,f +412,50231,272,1,f +412,50304,28,2,f +412,50305,28,2,f +412,53451,4,4,f +412,53451,15,2,f +412,53451,15,1,t +412,53451,4,1,t +412,53992,0,4,f +412,54200,191,10,f +412,54200,0,1,t +412,54200,70,2,f +412,54200,19,4,f +412,54200,70,1,t +412,54200,0,2,f +412,54200,191,2,t +412,54200,19,2,t +412,56145,0,8,f +412,57539pat0004,47,2,f +412,59426,72,9,f +412,59443,72,4,f +412,6019,72,4,f +412,60470a,4,3,f +412,60474,72,1,f +412,60478,72,2,f +412,60484,0,2,f +412,60581,0,1,f +412,6091,191,4,f +412,6091,4,2,f +412,6091,71,2,f +412,61409,72,2,f +412,6141,70,2,t +412,6141,1,2,f +412,6141,70,11,f +412,6141,1,1,t +412,62462,0,4,f +412,6541,15,1,f +412,6558,1,17,f +412,6587,28,3,f +412,6636,191,2,f +412,70005stk01,9999,1,t +412,85984,72,1,f +412,87083,72,6,f +412,87747,15,4,f +412,87747,15,1,t +412,92280,71,4,f +412,92690,71,1,f +412,92947,19,2,f +412,93273,72,1,f +412,970c00pr0431,28,1,f +412,970c02pr0430,19,1,f +412,970c155pr0443,326,1,f +412,973pr2224c01,1,1,f +412,973pr2227c01,28,1,f +412,973pr2247c01,326,1,f +412,98138,41,1,t +412,98138,41,2,f +412,98585,41,1,f +412,99780,72,2,f +412,99781,71,2,f +416,2421,0,1,f +416,2432,1,1,f +416,2460,0,1,f +416,2479,7,1,f +416,298c02,0,2,f +416,3004,1,1,f +416,3023,7,2,f +416,3023,1,1,f +416,3024,36,1,f +416,3070b,1,1,f +416,3176,7,1,f +416,3666,4,2,f +416,3666,15,2,f +416,3666,1,1,f +416,3794a,1,1,f +416,3795,4,1,f +416,3839b,7,1,f +416,4287,1,1,f +416,4488,15,1,f +416,4859,15,2,f +416,6140,4,2,f +419,2420,2,1,f +419,3004,4,1,f +419,3024,0,1,f +419,3024,4,2,f +419,3665,4,2,f +419,3794a,4,1,f +419,6091,4,2,f +422,194cx1,2,3,f +422,2357,15,2,f +422,2412b,0,1,f +422,2412b,1,4,f +422,2412b,2,1,f +422,2413,15,2,f +422,2420,4,1,f +422,2420,0,1,f +422,2431,15,2,f +422,2431,0,2,f +422,2432,7,2,f +422,2433,0,1,f +422,2436,4,4,f +422,2436,2,1,f +422,2445,4,1,f +422,2453a,15,1,f +422,2454a,15,2,f +422,2454a,0,3,f +422,2458,15,2,f +422,2460,15,2,f +422,2465,15,2,f +422,2465,0,2,f +422,2474,7,3,f +422,2475,0,3,f +422,2476a,15,2,f +422,2493b,7,2,f +422,2494,47,2,f +422,2496,0,2,f +422,2498,73,9,f +422,2540,0,1,f +422,2555,0,1,f +422,2584,4,1,f +422,2585,7,1,f +422,2655,7,2,f +422,2877,15,2,f +422,298c02,7,2,f +422,3002,15,3,f +422,3003,15,1,f +422,3004,4,1,f +422,3004,15,2,f +422,3004,0,19,f +422,3005,0,10,f +422,3005,15,8,f +422,3008,15,5,f +422,3009,15,6,f +422,3010,15,2,f +422,3020,4,6,f +422,3020,7,2,f +422,3020,15,1,f +422,3020,2,1,f +422,3021,2,4,f +422,3021,4,7,f +422,3022,15,3,f +422,3022,2,1,f +422,3022,7,1,f +422,3023,2,1,f +422,3023,0,9,f +422,3023,15,9,f +422,3023,4,4,f +422,3023,7,1,f +422,3024,2,3,f +422,3024,46,2,f +422,3024,36,4,f +422,3024,15,8,f +422,3024,47,6,f +422,3024,4,4,f +422,3027,15,1,f +422,3031,4,1,f +422,3034,0,1,f +422,3035,4,4,f +422,3039p34,15,1,f +422,3040p32,15,4,f +422,3062b,7,2,f +422,3062b,14,1,f +422,3062b,4,2,f +422,3068b,15,3,f +422,3068bp06,15,1,f +422,3068bp18,15,1,f +422,3069b,0,4,f +422,3069bp52,15,1,f +422,3070b,4,1,f +422,3070b,34,1,t +422,3070b,4,1,t +422,3070b,36,1,f +422,3070b,0,3,f +422,3070b,0,1,t +422,3070b,36,1,t +422,3070b,34,1,f +422,309p03,2,1,f +422,3127,7,1,f +422,3139,0,1,f +422,32123b,7,1,f +422,32123b,7,1,t +422,3460,2,2,f +422,3460,15,3,f +422,3460,4,3,f +422,3622,0,2,f +422,3622,15,5,f +422,3623,0,6,f +422,3623,4,4,f +422,3623,15,10,f +422,3626bpr0001,14,3,f +422,3641,0,6,f +422,3665,15,1,f +422,3665,0,2,f +422,3666,15,1,f +422,3666,2,3,f +422,3666,0,4,f +422,3666,4,2,f +422,3700,15,1,f +422,3705,0,1,f +422,3710,2,4,f +422,3710,4,5,f +422,3710,15,2,f +422,3741,2,2,f +422,3741,2,1,t +422,3742,14,2,t +422,3742,14,6,f +422,3788,4,3,f +422,3794a,15,4,f +422,3821,15,1,f +422,3821,4,1,f +422,3822,4,1,f +422,3822,15,1,f +422,3823,41,3,f +422,3829c01,15,1,f +422,3829c01,7,1,f +422,3832,0,1,f +422,3832,15,1,f +422,3852b,6,1,f +422,3901,0,1,f +422,3941,15,1,f +422,4006,0,2,f +422,4070,15,5,f +422,4079,4,1,f +422,4081b,15,2,f +422,4081b,7,2,f +422,4083,1,1,f +422,4085c,0,2,f +422,4085c,15,4,f +422,4162,0,2,f +422,4162,15,2,f +422,4162,7,8,f +422,4187,2,1,f +422,4211,4,1,f +422,4212b,4,1,f +422,4213,0,1,f +422,4213,15,1,f +422,4276b,7,1,f +422,4282,15,2,f +422,4286,15,2,f +422,4315,0,1,f +422,4319,0,1,f +422,4447,15,8,f +422,4448,47,8,f +422,4477,15,1,f +422,4477,2,4,f +422,4477,4,5,f +422,4485,4,1,f +422,4522,0,1,f +422,4530,0,1,f +422,4531,0,1,f +422,4599a,14,1,f +422,4600,0,5,f +422,4624,15,6,f +422,4625,15,1,f +422,4626,7,1,f +422,4629c01,1,1,f +422,4733,7,1,f +422,4864b,15,4,f +422,4865a,7,2,f +422,4865a,15,1,f +422,6014,15,4,f +422,6015,0,4,f +422,6091,0,4,f +422,6141,1,1,f +422,6141,1,1,t +422,6141,46,6,f +422,6141,36,2,f +422,6141,7,1,t +422,6141,7,2,f +422,6141,36,1,t +422,6141,46,1,t +422,73194c01,7,1,f +422,73590c02a,7,2,f +422,970c00,2,2,f +422,970c00,0,1,f +422,973p22c01,0,1,f +422,973px130c01,15,2,f +423,10247,0,4,f +423,10247,72,8,f +423,11211,71,4,f +423,11295,72,1,f +423,11303,272,1,f +423,11303,4,1,f +423,11458,72,4,f +423,11476,71,1,f +423,11477,14,2,f +423,13269,0,1,f +423,14181,71,2,f +423,14518,72,1,f +423,14720,71,2,f +423,14769,14,1,f +423,15068,14,8,f +423,15068,71,2,f +423,15207,4,2,f +423,15573,72,2,f +423,15573,15,3,f +423,15790,0,2,f +423,17485,25,3,f +423,17485,14,4,f +423,18907,272,1,f +423,18908,41,1,f +423,18980,71,3,f +423,2412b,14,17,f +423,2412b,272,5,f +423,2420,0,2,f +423,2420,14,2,f +423,2420,72,2,f +423,2423,2,2,f +423,2431,14,8,f +423,2431,71,4,f +423,2445,72,1,f +423,2446,4,1,f +423,2456,14,2,f +423,2465,72,2,f +423,2465,14,6,f +423,2540,72,2,f +423,2566,0,1,f +423,2584,0,1,f +423,2585,71,1,f +423,2653,71,2,f +423,2654,0,17,f +423,2780,0,8,f +423,2877,72,1,f +423,3001,71,1,f +423,3001,72,2,f +423,3001,1,1,f +423,3002,14,7,f +423,3002,72,2,f +423,3003,14,1,f +423,30031,72,1,f +423,3004,15,1,f +423,3004,14,18,f +423,3004,71,3,f +423,3004,0,2,f +423,3005,14,8,f +423,3005,71,2,f +423,3007,14,1,f +423,3008,14,2,f +423,30088,0,1,f +423,3009,72,1,f +423,3009,14,7,f +423,3009,71,2,f +423,30090,41,1,f +423,30093,10,1,f +423,3010,71,2,f +423,3010,4,4,f +423,30153,42,1,f +423,30153,34,1,f +423,30153,36,1,f +423,3020,72,6,f +423,3020,14,2,f +423,3020,4,1,f +423,3020,272,2,f +423,3020,71,8,f +423,3021,72,8,f +423,3021,14,4,f +423,3022,0,2,f +423,3022,72,2,f +423,3022,4,3,f +423,3022,14,11,f +423,3023,71,2,f +423,3023,272,3,f +423,3023,15,1,f +423,3023,0,3,f +423,3023,72,15,f +423,3023,14,14,f +423,30236,71,4,f +423,3024,36,2,f +423,3024,0,2,f +423,3024,72,3,f +423,3024,34,2,f +423,3028,71,2,f +423,3031,72,2,f +423,3032,0,2,f +423,3032,72,1,f +423,3032,71,1,f +423,3034,14,2,f +423,3034,72,4,f +423,3035,28,1,f +423,30357,0,2,f +423,30367c,25,3,f +423,30367c,14,2,f +423,30367c,71,2,f +423,3037,72,2,f +423,3038,272,4,f +423,3039,272,2,f +423,3039,14,5,f +423,30395,72,1,f +423,3040b,0,1,f +423,30414,14,1,f +423,30553,72,2,f +423,30553,0,1,f +423,30554a,0,3,f +423,3062b,70,1,f +423,3062b,4,1,f +423,30663,0,4,f +423,3068b,71,1,f +423,3068b,14,8,f +423,3068b,28,2,f +423,3069b,71,1,f +423,3069b,82,1,f +423,3069b,14,1,f +423,3069b,72,4,f +423,3069bpr0030,15,1,f +423,3070b,14,2,f +423,3176,14,1,f +423,32000,72,2,f +423,32001,71,1,f +423,32001,0,4,f +423,32013,72,2,f +423,32028,0,4,f +423,32059,72,1,f +423,32064a,72,4,f +423,32073,71,8,f +423,32123b,14,5,f +423,32126,0,1,f +423,3460,1,2,f +423,3622,14,3,f +423,3623,71,2,f +423,3626bpr0389,14,1,f +423,3626cpr0893,14,1,f +423,3626cpr1087,14,1,f +423,3626cpr1580,14,1,f +423,3626cpr1664,14,1,f +423,3660,71,2,f +423,3660,4,1,f +423,3660,14,4,f +423,3665,72,4,f +423,3665,14,1,f +423,3666,72,3,f +423,3666,0,6,f +423,3666,272,1,f +423,3666,14,6,f +423,3666,15,4,f +423,3673,71,2,f +423,3679,71,1,f +423,3680,0,1,f +423,3703,72,2,f +423,3705,0,1,f +423,3709,72,12,f +423,3710,72,1,f +423,3710,14,4,f +423,3710,0,2,f +423,3710,272,1,f +423,3710,4,2,f +423,3710,15,1,f +423,3747b,72,4,f +423,3747b,71,5,f +423,3749,19,2,f +423,3795,14,8,f +423,3795,71,3,f +423,3829c01,4,1,f +423,3830,71,2,f +423,3831,71,2,f +423,3832,72,2,f +423,3838,14,1,f +423,3941,14,4,f +423,3941,71,17,f +423,3941,25,6,f +423,3942c,71,2,f +423,3958,71,3,f +423,3958,272,1,f +423,3958,72,6,f +423,4032a,0,3,f +423,4032a,72,15,f +423,4032a,71,4,f +423,4032a,14,2,f +423,4070,71,2,f +423,4079,4,1,f +423,4079,1,2,f +423,4081b,14,2,f +423,41529,71,1,f +423,41532,0,2,f +423,4162,14,2,f +423,4162,72,4,f +423,4175,0,6,f +423,42022,14,4,f +423,4274,1,9,f +423,4282,272,2,f +423,4282,72,4,f +423,4287,0,2,f +423,43093,1,2,f +423,44300,72,2,f +423,44567a,71,2,f +423,44567a,72,4,f +423,4460b,72,1,f +423,4510,71,4,f +423,4519,71,5,f +423,4599b,4,1,f +423,4738a,70,1,f +423,4739a,70,1,f +423,48336,0,3,f +423,48336,14,2,f +423,48729b,71,2,f +423,50303,72,1,f +423,50747,47,3,f +423,50950,72,8,f +423,50950,71,2,f +423,51739,71,1,f +423,54200,272,2,f +423,56823c50,0,1,f +423,59275,4,2,f +423,6019,0,6,f +423,6020,0,1,f +423,60219,72,3,f +423,6041,0,4,f +423,60475b,14,6,f +423,60479,4,2,f +423,60581,72,2,f +423,60596,71,2,f +423,60601,41,4,f +423,60616b,71,2,f +423,60621,71,1,f +423,6111,14,2,f +423,6117,72,1,f +423,61345,71,2,f +423,6140,0,3,f +423,61409,72,4,f +423,6141,14,2,f +423,6141,0,4,f +423,6141,71,4,f +423,6141,4,8,f +423,6141,47,1,f +423,6183,14,5,f +423,63864,72,4,f +423,63864,0,2,f +423,64567,0,1,f +423,64799,71,3,f +423,6541,14,2,f +423,6558,1,4,f +423,6583,0,2,f +423,6636,72,2,f +423,6636,14,2,f +423,6636,71,2,f +423,6636,272,3,f +423,73590c03a,0,2,f +423,75c14,0,1,f +423,87079,14,2,f +423,87079,71,4,f +423,87079,72,2,f +423,87087,14,4,f +423,87087,72,2,f +423,87580,71,6,f +423,87587pr0001,72,1,f +423,87611,72,1,f +423,87614,272,1,f +423,87615,272,1,f +423,87616,72,1,f +423,87620,14,8,f +423,87754,71,1,f +423,87991,484,1,f +423,87994,71,1,f +423,88072,71,1,f +423,89159,41,1,f +423,90258,72,2,f +423,91988,71,3,f +423,91988,72,2,f +423,92280,0,2,f +423,92280,71,2,f +423,92338,72,1,f +423,92585,4,1,f +423,92946,0,2,f +423,92947,0,1,f +423,93273,71,4,f +423,93606,72,3,f +423,95347,14,6,f +423,96874,25,1,t +423,970c00,71,1,f +423,970c00,272,2,f +423,970c00pr0827,0,1,f +423,970c00pr0841,25,1,f +423,973pr2955c01,0,1,f +423,973pr2991c01,25,1,f +423,973pr3010c01,4,2,f +423,973pr3084c01,1,1,f +423,98138,71,3,f +423,98138,46,5,f +423,98138,47,14,f +423,98281,14,1,f +423,99207,0,6,f +423,99780,14,1,f +423,99780,71,6,f +423,99781,15,2,f +424,4201,2,4,f +424,4202,2,4,f +424,4204,2,2,f +427,2412b,70,2,f +427,2450,71,1,f +427,2780,0,1,t +427,2780,0,2,f +427,30031,0,2,f +427,3004,72,5,f +427,3010,72,2,f +427,3022,14,5,f +427,3023,71,9,f +427,3023,70,6,f +427,30374,41,1,f +427,30374,36,4,f +427,3039,72,9,f +427,3045,71,2,f +427,3068b,72,6,f +427,3069b,70,4,f +427,3070b,36,1,t +427,3070b,36,1,f +427,32000,72,4,f +427,3460,71,3,f +427,3622,72,3,f +427,3623,70,9,f +427,3623,72,3,f +427,3626bpr0514,78,1,f +427,3626bpr0549,15,1,f +427,3626bpr0808,0,1,f +427,3666,19,2,f +427,3666,72,4,f +427,3710,70,4,f +427,3710,72,2,f +427,4070,70,2,f +427,4287,72,10,f +427,43722,72,2,f +427,43723,72,2,f +427,44728,71,3,f +427,4477,70,1,f +427,4497,148,1,f +427,4589,72,2,f +427,48933pr0001,72,2,f +427,48933pr0002,72,4,f +427,50304,72,2,f +427,50305,72,2,f +427,50955,72,1,f +427,50956,72,2,f +427,52107,0,6,f +427,53454,148,1,f +427,54200,40,4,f +427,54200,40,1,t +427,54200,72,1,t +427,54200,72,5,f +427,54383,71,1,f +427,54384,71,1,f +427,55013,72,1,f +427,58176,36,2,f +427,60470a,71,2,f +427,60477,72,11,f +427,60481,70,2,f +427,61183,70,1,f +427,61184,71,3,f +427,61199,71,2,f +427,61199,71,1,t +427,63864,71,2,f +427,63864,72,3,f +427,63965,0,2,f +427,64567,80,2,f +427,6541,1,2,f +427,6541,71,10,f +427,85970,72,1,f +427,87083,72,1,f +427,92280,71,2,f +427,92761pr0001,0,1,f +427,92761pr0001,0,1,t +427,93274,4,4,f +427,93565pb02,0,1,f +427,970c00,0,2,f +427,970c00pr0259,0,1,f +427,973pr1794c01,0,1,f +427,973pr1795c01,0,1,f +427,973pr1796c01,0,1,f +431,10201,15,4,f +431,11153,25,4,f +431,11153,27,4,f +431,11260,25,1,f +431,11458,72,2,f +431,11589pr0001,25,1,f +431,11597,25,2,f +431,11598,42,2,f +431,13754,42,2,f +431,14137,42,2,f +431,15207,15,2,f +431,2357,15,2,f +431,2412b,320,3,f +431,2412b,15,1,f +431,2431,25,4,f +431,2431,72,2,f +431,2444,0,1,f +431,2447,47,1,f +431,2447,47,1,t +431,2654,182,1,f +431,2654,47,1,f +431,2654,72,2,f +431,2780,0,2,t +431,2780,0,7,f +431,2817,71,2,f +431,30000,72,3,f +431,3001,15,2,f +431,3001,72,2,f +431,30035,0,1,f +431,30136,71,5,f +431,30162,72,2,f +431,3020,72,4,f +431,3021,25,4,f +431,3021,0,2,f +431,3022,25,7,f +431,3022,72,4,f +431,3023,25,6,f +431,3023,71,6,f +431,3023,27,2,f +431,3024,25,2,f +431,3024,25,1,t +431,3031,72,2,f +431,3032,72,1,f +431,3039,15,2,f +431,3039,72,2,f +431,30414,72,1,f +431,30553,72,1,f +431,30592,72,1,f +431,30602,15,5,f +431,3062b,71,1,f +431,30663,71,1,f +431,3068b,15,4,f +431,3069b,41,1,f +431,3069bpr0086,71,1,f +431,32001,15,4,f +431,32054,0,10,f +431,32059,15,1,f +431,32062,4,3,f +431,32073,71,2,f +431,32123b,14,1,f +431,32123b,14,1,t +431,32138,71,2,f +431,32523,72,1,f +431,32526,72,2,f +431,32556,19,1,f +431,3460,72,2,f +431,3622,71,2,f +431,3626cpr1156,14,1,f +431,3660,15,3,f +431,3665,15,2,f +431,3666,15,2,f +431,3701,15,3,f +431,3705,0,1,f +431,3706,0,2,f +431,3709,15,4,f +431,3710,15,2,f +431,3713,71,1,t +431,3713,71,1,f +431,3738,72,2,f +431,3794b,320,4,f +431,3795,25,2,f +431,3894,15,1,f +431,3937,72,2,f +431,3941,71,12,f +431,4032a,72,3,f +431,4032a,0,2,f +431,4081b,0,4,f +431,4150,71,3,f +431,41532,0,2,f +431,41669,25,2,f +431,4274,71,5,f +431,4274,71,2,t +431,4286,15,2,f +431,43093,1,9,f +431,43722,25,1,f +431,43723,25,1,f +431,44301a,15,2,f +431,44302a,72,2,f +431,44567a,72,1,f +431,44728,25,7,f +431,4590,72,1,f +431,4740,41,1,f +431,47455,72,2,f +431,47755,72,2,f +431,48170,72,2,f +431,48172,15,1,f +431,48336,71,2,f +431,4855,15,1,f +431,4871,72,2,f +431,50304,15,1,f +431,50305,15,1,f +431,50373,15,1,f +431,51739,72,1,f +431,53451,27,1,t +431,53451,27,5,f +431,55981,71,2,f +431,55982,0,1,f +431,57909b,72,2,f +431,59426,72,1,f +431,59900,46,7,f +431,60208,15,4,f +431,60470a,0,2,f +431,60478,72,2,f +431,60478,71,2,f +431,60484,72,2,f +431,61184,71,7,f +431,61252,25,2,f +431,6134,0,2,f +431,61409,25,4,f +431,61409,27,4,f +431,61409,15,2,f +431,6141,45,6,f +431,6141,71,8,f +431,6141,41,1,t +431,6141,41,6,f +431,6141,45,1,t +431,6141,71,2,t +431,6215,15,1,f +431,6232,15,1,f +431,62462,4,1,f +431,62462,15,4,f +431,63868,0,2,f +431,64276,72,2,f +431,6587,28,1,f +431,70707stk01,9999,1,t +431,72454,15,1,f +431,85984,27,2,f +431,85984,15,2,f +431,85984,72,2,f +431,87079,15,5,f +431,87083,72,5,f +431,87544,15,4,f +431,87781,25,1,f +431,90194,72,1,f +431,92013,72,4,f +431,92280,0,2,f +431,92280,15,2,f +431,92474,47,1,f +431,92579,47,1,f +431,92692,0,4,f +431,92946,72,2,f +431,93273,25,4,f +431,93273,15,2,f +431,95199,72,2,f +431,970c00pr0460,25,1,f +431,970c00pr0464,25,1,f +431,973pr2257c01,71,1,f +431,973pr2299c01,71,1,f +431,98138,36,1,f +431,98138,36,1,t +431,98141,179,8,f +431,98285,0,1,f +431,98286,71,1,f +431,98313,320,8,f +431,99207,71,9,f +431,99780,0,8,f +431,99781,71,2,f +432,11203,15,9,f +432,11215,71,2,f +432,11399,15,3,f +432,11458,15,2,f +432,11477,72,2,f +432,14716,15,2,f +432,14718,15,1,f +432,15068,15,2,f +432,15068,0,1,f +432,15461,0,2,f +432,15530,272,1,f +432,15535,72,1,f +432,15573,1,4,f +432,18895pr03,15,1,f +432,18896,0,1,f +432,19220,0,1,f +432,20877,484,1,f +432,2412b,71,1,f +432,2412b,4,1,f +432,2412b,0,6,f +432,2431,1,2,f +432,2431,15,2,f +432,2432,0,1,f +432,2445,0,1,f +432,2446,15,1,f +432,2447,40,1,f +432,2453b,15,1,f +432,2454a,15,3,f +432,2456,1,1,f +432,2569,0,1,f +432,2654,71,6,f +432,28809,71,2,f +432,2926,0,4,f +432,298c02,15,1,f +432,3002,1,2,f +432,3002,0,1,f +432,3003,72,1,f +432,3003,15,2,f +432,30031,72,1,f +432,3004,1,2,f +432,3004,14,1,f +432,3004,71,1,f +432,30043,0,1,f +432,3005,15,2,f +432,3005,1,2,f +432,3007,71,1,f +432,3008,1,4,f +432,3009,15,1,f +432,30145,15,1,f +432,30162,72,2,f +432,30165,72,2,f +432,3020,2,1,f +432,3020,72,2,f +432,3020,0,2,f +432,3021,71,1,f +432,3021,15,1,f +432,3022,71,1,f +432,3022,1,6,f +432,3023,33,1,f +432,3023,14,4,f +432,3023,36,2,f +432,3023,71,2,f +432,3024,15,1,f +432,3031,72,1,f +432,3031,0,2,f +432,3032,0,1,f +432,3032,15,2,f +432,3034,1,1,f +432,3034,71,1,f +432,3035,1,3,f +432,3036,15,1,f +432,3037,15,1,f +432,30395,72,1,f +432,30414,71,2,f +432,3068b,72,2,f +432,3069b,72,2,f +432,3069b,33,3,f +432,3069bpr0030,15,1,f +432,3069bpr0100,2,2,f +432,3070b,0,2,f +432,3245b,15,6,f +432,3460,15,2,f +432,3460,71,2,f +432,3460,1,2,f +432,3622,1,2,f +432,3623,15,3,f +432,3623,71,2,f +432,3626cpr1147,14,1,f +432,3626cpr1350,14,1,f +432,3626cpr2134,14,1,f +432,3626cpr2141,14,1,f +432,3660,15,2,f +432,3666,0,1,f +432,3679,71,1,f +432,3680,0,1,f +432,3710,1,2,f +432,3710,71,2,f +432,3794b,15,3,f +432,3795,0,1,f +432,3795,15,3,f +432,3795,72,2,f +432,3821,1,1,f +432,3822,1,1,f +432,3829c01,71,1,f +432,3829c01,14,1,f +432,3899,4,1,f +432,3900,15,1,f +432,3958,15,2,f +432,4006,0,1,f +432,4032a,4,1,f +432,4079,14,1,f +432,41334,0,1,f +432,4176,41,1,f +432,4274,71,2,f +432,43719,4,1,f +432,43722,15,1,f +432,43723,15,1,f +432,43898,72,1,f +432,44301a,0,2,f +432,44674,4,2,f +432,44728,1,4,f +432,4488,71,2,f +432,4510,15,1,f +432,4740,1,2,f +432,47457,71,1,f +432,48336,71,8,f +432,4865b,71,4,f +432,48729b,72,1,f +432,50745,72,2,f +432,50861,0,2,f +432,50862,71,2,f +432,51739,4,1,f +432,52031,15,1,f +432,54200,1,2,f +432,54200,46,2,f +432,54200,15,2,f +432,59349,15,5,f +432,59900,15,2,f +432,6014b,71,14,f +432,60169,72,1,f +432,60471,15,2,f +432,60475b,71,2,f +432,60478,0,3,f +432,60479,15,1,f +432,60596,15,2,f +432,60621,71,2,f +432,6111,72,2,f +432,61252,72,2,f +432,61482,71,1,f +432,6157,0,2,f +432,6180,15,1,f +432,63868,71,5,f +432,6583,15,2,f +432,6636,71,2,f +432,6636,15,1,f +432,76766,0,3,f +432,85984,0,2,f +432,85984,4,2,f +432,87580,15,1,f +432,87697,0,14,f +432,88072,15,2,f +432,88072,72,1,f +432,88292,15,2,f +432,91988,72,3,f +432,92280,0,2,f +432,92438,15,1,f +432,92586pr0001,84,1,f +432,92590,28,1,f +432,970c00,72,1,f +432,970c00,272,2,f +432,970c00,0,1,f +432,973pr3627,212,1,f +432,973pr3693,25,1,f +432,973pr3694,272,1,f +432,973pr3753,72,1,f +432,98138,46,2,f +432,98138,0,2,f +432,98138,33,11,f +432,98138,36,2,f +432,98138,182,4,f +432,98560,15,2,f +432,99780,15,2,f +432,99780,0,1,f +432,99781,71,1,f +433,2412b,72,2,f +433,2431,72,1,f +433,2524,15,3,f +433,2654,15,3,f +433,2877,15,4,f +433,3006,71,1,f +433,3010,15,1,f +433,3022,72,1,f +433,3030,72,1,f +433,30363,71,1,f +433,30370pr03,15,1,f +433,3038,15,4,f +433,3063b,71,2,f +433,3063b,15,2,f +433,3068b,19,1,f +433,32000,71,2,f +433,3622,71,2,f +433,3626bpr0360,78,1,f +433,3626bpr0631,78,1,f +433,3626bpr0632,78,2,f +433,3679,71,1,f +433,3680,15,1,f +433,3839b,71,1,f +433,3937,71,1,f +433,3938,15,1,f +433,3940b,0,1,f +433,4032a,19,1,f +433,4079,72,1,f +433,43710,15,1,f +433,43711,15,1,f +433,43719,72,1,f +433,46304,15,3,f +433,46304,15,1,t +433,54200,15,1,t +433,54200,15,4,f +433,57899,0,1,f +433,58247,0,3,f +433,59900,15,2,f +433,61184,71,4,f +433,6141,36,1,t +433,6141,36,1,f +433,61780,72,1,f +433,87087,71,2,f +433,87555,19,3,f +433,970c00,28,2,f +433,970x194,15,1,f +433,970x199,25,1,f +433,973pr0450c01,19,1,f +433,973pr0460c01,19,2,f +433,973pr1578c01,25,1,f +434,11090,72,2,f +434,11153,320,6,f +434,11156,297,2,f +434,11439pat0003,42,1,f +434,11439pat0003,42,1,t +434,11458,72,2,f +434,14682,297,2,f +434,15068,320,1,f +434,15395,0,1,f +434,15462,28,2,f +434,15573,4,1,f +434,15712,0,6,f +434,18041,179,2,f +434,18041,179,1,t +434,18649,0,1,f +434,18927,288,1,f +434,18986,47,1,f +434,19857pat0002,0,1,f +434,19857pat0006,320,1,f +434,22889,0,1,f +434,23984,148,1,f +434,23985,15,1,f +434,2412b,72,2,f +434,2412b,320,1,f +434,2432,0,2,f +434,24468,9999,1,f +434,2458,4,2,f +434,2654,0,1,f +434,2723,0,4,f +434,2780,0,1,t +434,2780,0,4,f +434,30031,72,1,f +434,30173b,297,5,f +434,30173b,297,2,t +434,3020,0,1,f +434,3021,71,1,f +434,3022,0,2,f +434,3022,14,1,f +434,3023,0,3,f +434,3023,41,3,f +434,3031,0,1,f +434,30383,0,2,f +434,30553,72,2,f +434,30602,4,1,f +434,3068b,4,2,f +434,32000,72,2,f +434,32000,4,2,f +434,32013,72,4,f +434,32016,71,4,f +434,32034,0,2,f +434,32062,4,8,f +434,32123b,71,2,f +434,32123b,71,1,t +434,32449,0,1,f +434,32474,0,1,t +434,32474,0,2,f +434,3626cpr0893,14,1,f +434,3626cpr1365,14,1,f +434,3626cpr1561,14,1,f +434,3705,0,4,f +434,3710,72,1,f +434,3713,4,1,t +434,3713,4,2,f +434,3937,72,1,f +434,4081b,0,2,f +434,41854,320,1,f +434,42446,0,1,t +434,42446,0,1,f +434,43093,1,4,f +434,44294,71,2,f +434,44676,72,6,f +434,4590,72,1,f +434,47458,4,3,f +434,4871,72,1,f +434,53454,148,2,f +434,55978,0,2,f +434,55982,0,2,f +434,56145,297,2,f +434,59443,72,4,f +434,59900,72,4,f +434,59900,297,2,f +434,59900,25,2,f +434,60478,0,2,f +434,60483,0,4,f +434,60849,0,1,t +434,60849,0,2,f +434,60897,0,2,f +434,61072,179,1,f +434,61252,71,2,f +434,6134,0,1,f +434,61409,484,2,f +434,6141,70,1,t +434,6141,41,2,f +434,6141,70,2,f +434,6141,182,1,t +434,6141,182,5,f +434,6141,41,1,t +434,61800,484,2,f +434,64647,182,2,f +434,64647,182,1,t +434,6536,72,4,f +434,85861,320,1,t +434,85861,71,4,f +434,85861,71,1,t +434,85861,320,2,f +434,85943,72,2,f +434,85975,70,1,f +434,87994,70,2,f +434,87994,70,1,t +434,88072,72,2,f +434,92280,4,2,f +434,92402,0,2,f +434,92926,72,1,f +434,93274,71,2,f +434,970c00pr0875,320,1,f +434,970c00pr0889,0,1,f +434,970d00pr9999,70,1,f +434,973pr3036c01,320,1,f +434,973pr9982c01,288,1,f +434,973pr9990c01,0,1,f +434,98137,297,2,f +434,98138,41,1,t +434,98138,41,2,f +434,98138pr9998,40,1,f +434,98138pr9998,40,1,t +434,98139,297,1,t +434,98139,297,1,f +434,98313,70,2,f +434,99207,4,4,f +434,99207,0,1,f +434,99780,0,2,f +436,2412b,42,6,f +436,2420,1,2,f +436,2432,0,1,f +436,2436,1,1,f +436,2445,1,2,f +436,2445,0,1,f +436,2446,47,2,f +436,2458,1,1,f +436,2569,42,2,f +436,2653,0,2,f +436,298c02,0,2,f +436,30014,8,2,f +436,3002,1,1,f +436,3002,8,1,f +436,3003,1,6,f +436,30037,8,1,f +436,3004,8,2,f +436,3004,1,1,f +436,3007,1,1,f +436,3008,1,1,f +436,3010,8,3,f +436,30118,8,2,f +436,30119,8,2,f +436,30121,0,1,f +436,30159,8,4,f +436,3020,1,2,f +436,30208,42,2,f +436,30209,8,2,f +436,3021,8,1,f +436,30212,8,2,f +436,30213,42,3,f +436,30214,42,1,f +436,3022,1,4,f +436,3022,8,2,f +436,3022,0,2,f +436,3023,1,3,f +436,3023,8,1,f +436,3023,0,13,f +436,3023,4,1,f +436,30230px1,33,1,f +436,30230px2,33,1,f +436,30231pb01,33,2,f +436,30231pb02,33,2,f +436,3031,0,1,f +436,3034,8,1,f +436,3039,1,7,f +436,3039px8,8,4,f +436,3040b,1,2,f +436,3040b,0,2,f +436,3062b,1,2,f +436,3068b,1,2,f +436,3068bpx7,0,2,f +436,3069b,1,1,f +436,3069bp017,0,2,f +436,3069bp21,0,1,f +436,3069bp53,0,3,f +436,3070b,0,2,f +436,3298,1,6,f +436,3298pb005,8,2,f +436,3475b,0,4,f +436,3585,8,1,f +436,3586,8,1,f +436,3626bpb0034,0,2,f +436,3626bpx139,1,1,f +436,3660,0,2,f +436,3660,8,4,f +436,3666,1,1,f +436,3700,8,5,f +436,3701,1,1,f +436,3710,0,3,f +436,3710,1,3,f +436,3747a,8,4,f +436,3794a,1,2,f +436,3795,0,1,f +436,3839b,1,2,f +436,3937,0,1,f +436,3938,1,1,f +436,4032a,0,1,f +436,4070,8,4,f +436,4081b,0,2,f +436,412,8,2,f +436,4204,0,1,f +436,4213,0,1,f +436,4229,0,2,f +436,4286,8,2,f +436,4315,1,1,f +436,4349,0,2,f +436,4460a,0,2,f +436,4477,1,1,f +436,4510,0,2,f +436,4589,0,4,f +436,4589,33,4,f +436,4598,8,2,f +436,4740,42,6,f +436,4868a,0,2,f +436,4871,1,1,f +436,6019,1,2,f +436,6048a,0,4,f +436,6061,0,2,f +436,6070,42,3,f +436,6106,8,2,f +436,6141,42,6,f +436,6232,8,2,f +436,6259,33,1,f +436,6919,42,4,f +436,6969stk01,9999,3,t +436,71603,8,1,f +436,73092,0,4,f +436,970c10pb01,8,1,f +436,970c11pb04,0,2,f +436,973pb0198c01,0,2,f +436,973px92c01,0,1,f +437,11203,72,2,f +437,11211,71,36,f +437,11211,19,1,f +437,11295,72,1,f +437,11303,28,1,f +437,14716,71,1,f +437,14716,15,2,f +437,14719,71,2,f +437,15068,71,1,f +437,15068,72,2,f +437,15210,72,1,f +437,15534,72,1,f +437,15573,71,2,f +437,15573,4,1,f +437,15573,15,4,f +437,15712,72,2,f +437,18904,288,1,f +437,18905pr0001,288,1,f +437,18906,288,1,f +437,19220,0,3,f +437,2340,15,2,f +437,2412b,72,2,f +437,2412b,0,2,f +437,2412b,71,3,f +437,2431,272,7,f +437,2431,15,1,f +437,2432,0,2,f +437,2445,72,5,f +437,2446,15,1,f +437,2447,40,1,t +437,2447,40,1,f +437,2453b,71,1,f +437,2454a,70,1,f +437,2454a,71,2,f +437,2460,15,1,f +437,2465,71,2,f +437,2476a,71,1,f +437,2486,14,2,f +437,2508,0,1,f +437,2654,46,1,f +437,2654,71,5,f +437,2877,72,2,f +437,298c02,14,1,f +437,298c02,14,1,t +437,298c02,71,1,t +437,298c02,71,2,f +437,30000,72,1,f +437,3001,71,3,f +437,3001,28,1,f +437,3002,72,3,f +437,3003,72,4,f +437,3003,70,1,f +437,3004,4,2,f +437,3004,15,1,f +437,3004,70,7,f +437,3005,71,4,f +437,3005,272,4,f +437,3007,71,3,f +437,3008,71,3,f +437,3008,15,2,f +437,3010,320,1,f +437,3010,70,1,f +437,30115,4,1,t +437,30115,4,2,f +437,30134,70,2,f +437,30157,72,2,f +437,30162,72,1,f +437,30176,2,7,f +437,3020,70,4,f +437,3020,28,2,f +437,3020,288,1,f +437,3020,19,6,f +437,3021,28,3,f +437,3022,4,1,f +437,3023,46,4,f +437,3023,71,1,f +437,3023,288,1,f +437,3023,320,1,f +437,3023,28,6,f +437,3023,15,1,f +437,3023,14,4,f +437,3024,36,4,f +437,3024,36,1,t +437,3031,71,2,f +437,3032,72,1,f +437,3034,2,1,f +437,3034,15,1,f +437,30340,15,1,f +437,30340,14,2,f +437,3035,2,1,f +437,3035,28,2,f +437,30350a,0,1,f +437,30375,72,1,f +437,30414,71,14,f +437,3065,47,1,f +437,3068b,4,1,f +437,3068b,71,13,f +437,3069b,272,38,f +437,3069b,15,2,f +437,3069b,28,1,f +437,3069b,71,2,f +437,3069b,72,1,f +437,3069bpr0030,15,1,f +437,3069bpr0100,2,5,f +437,3070b,72,5,f +437,3070b,72,1,t +437,32013,15,1,f +437,32028,72,6,f +437,32059,320,1,f +437,3245c,71,11,f +437,3460,2,1,f +437,3622,15,2,f +437,3622,71,3,f +437,3626cpr1091,14,1,f +437,3626cpr1147,14,1,f +437,3626cpr1580,14,1,f +437,3626cpr1628,14,1,f +437,3626cpr1662,14,1,f +437,3626cpr1663,14,1,f +437,3660,71,2,f +437,3665,15,6,f +437,3666,70,1,f +437,3666,272,8,f +437,3666,72,5,f +437,3678b,15,2,f +437,3679,71,3,f +437,3680,15,1,f +437,3680,0,2,f +437,3700,72,2,f +437,3701,72,1,f +437,3710,15,1,f +437,3710,71,2,f +437,3710,72,1,f +437,3710,28,1,f +437,3710,70,2,f +437,3710,272,3,f +437,3710,19,1,f +437,3749,19,2,f +437,3795,19,1,f +437,3795,72,2,f +437,3795,28,1,f +437,3823,41,1,f +437,3829c01,14,2,f +437,3832,71,4,f +437,3835,0,1,f +437,3894,72,1,f +437,3899,4,1,f +437,3899,14,2,f +437,3900,15,1,f +437,3941,70,54,f +437,4032a,288,1,f +437,4032a,2,1,f +437,4079,4,1,f +437,4079,14,4,f +437,4079,70,1,f +437,41334,72,1,f +437,4162,15,2,f +437,4162,272,5,f +437,4175,72,2,f +437,4176,41,1,f +437,4217,71,4,f +437,4274,1,1,f +437,4274,1,1,t +437,4282,72,2,f +437,4285b,71,2,f +437,44568,71,1,f +437,44728,72,2,f +437,4477,320,2,f +437,4477,72,2,f +437,4515,72,2,f +437,4519,71,1,f +437,45677,272,1,f +437,4598,0,1,f +437,4599b,1,1,t +437,4599b,1,1,f +437,4599b,0,1,t +437,4599b,0,1,f +437,4697b,71,1,t +437,4697b,71,2,f +437,48336,71,6,f +437,4865b,28,5,f +437,50304,288,1,f +437,50859b,179,1,f +437,50860,272,1,f +437,50861,0,2,f +437,50862,71,2,f +437,50943,179,1,f +437,52501,72,2,f +437,54200,36,1,t +437,54200,36,2,f +437,54200,34,1,t +437,54200,34,2,f +437,55981,71,4,f +437,57895,41,2,f +437,59900,72,4,f +437,6003,2,1,f +437,60069stk01,9999,1,f +437,60169,72,1,f +437,60219,72,1,f +437,6041,0,1,f +437,60470a,15,4,f +437,60474,326,1,f +437,60475b,71,3,f +437,60477,15,2,f +437,60481,272,2,f +437,60592,15,12,f +437,60594,15,1,f +437,60596,15,7,f +437,60603,41,1,f +437,60616a,41,1,f +437,60621,71,1,f +437,6064,2,1,f +437,60897,72,2,f +437,61072,179,2,f +437,6140,71,3,f +437,6141,46,2,t +437,6141,1000,3,f +437,6141,72,2,t +437,6141,1000,1,t +437,6141,46,2,f +437,6141,72,2,f +437,61482,71,2,f +437,61482,71,2,t +437,6231,15,2,f +437,6232,71,4,f +437,62462,15,1,f +437,62812,272,1,f +437,63864,72,3,f +437,63868,72,4,f +437,64567,0,1,t +437,64567,0,1,f +437,6636,72,6,f +437,75c08,71,2,f +437,85984,72,2,f +437,85984,71,2,f +437,85984pr0001,15,1,f +437,87079,71,1,f +437,87079,272,2,f +437,87087,71,3,f +437,87990,308,1,f +437,87991,484,1,f +437,88072,0,1,f +437,88072,72,1,f +437,91405,2,1,f +437,91405,28,2,f +437,92092,72,1,f +437,92099,72,1,f +437,92107,72,1,f +437,92280,15,6,f +437,92280,71,2,f +437,92338,72,6,f +437,92402,0,4,f +437,92409,0,6,f +437,92585,4,1,f +437,92586pr0001,84,1,f +437,92589,71,3,f +437,92590,28,1,f +437,92842,0,1,f +437,93274,71,1,f +437,95347,0,2,f +437,96874,25,1,t +437,970c00,28,1,f +437,970c00,272,4,f +437,970c00,379,1,f +437,973pr2879c01,19,2,f +437,973pr2880c01,15,1,f +437,973pr2931c01,19,2,f +437,973pr2942c01,15,1,f +437,97895,14,1,f +437,98100,15,3,f +437,98138,46,1,t +437,98138,33,7,f +437,98138,33,2,t +437,98138,46,6,f +437,98279,28,2,f +437,98282,15,4,f +437,99207,71,1,f +437,99780,15,2,f +438,2423,320,2,f +438,3005,70,2,f +438,3040b,70,3,f +438,30565,2,2,f +438,33291,14,2,f +438,33291,4,3,f +438,3659,308,1,f +438,4623,19,1,f +438,4740,4,1,f +438,59900,15,1,f +438,87580,320,1,f +438,98389pr0002,19,1,f +440,30408pr0002,383,1,f +440,3626b,0,1,f +440,57899,0,1,f +440,74188,72,1,f +440,970c00,383,1,f +440,973pb0588c01,383,1,f +441,2335p31,15,1,f +441,2524,6,1,f +441,2526,1,1,f +441,2526,14,1,f +441,2530,8,1,t +441,2530,8,3,f +441,2542,6,2,f +441,2543,1,1,f +441,2544,0,1,f +441,2545,0,1,f +441,2551,4,1,f +441,2561,6,1,f +441,2562,6,2,f +441,3020,7,2,f +441,3023,7,2,f +441,3626bp44,14,1,f +441,3626bp48,14,1,f +441,3626bpr0001,14,1,f +441,3710,7,2,f +441,3837,8,1,f +441,3841,8,1,f +441,3957a,0,1,f +441,4738b,6,1,f +441,4739b,6,1,f +441,57503,334,1,f +441,57504,334,1,f +441,57505,334,1,f +441,57506,334,1,f +441,970c00,0,1,f +441,970c00,15,2,f +441,973p33c01,14,1,f +441,973pb0206c01,15,2,f +442,3004,0,2,f +442,30043,0,2,f +442,30359b,0,1,f +442,3626b,0,1,f +442,3626bpr0446,14,1,f +442,41747,4,1,f +442,41748,4,1,f +442,4360,0,1,f +442,4623,0,2,f +442,50947,4,2,f +442,52107,0,1,f +442,53982,10,1,f +442,54200,72,2,f +442,6141,42,1,t +442,6141,42,2,f +442,970c00,4,1,f +442,973pr1233c01,4,1,f +443,10039,0,1,f +443,11002,0,1,f +443,2420,4,2,f +443,2432,4,1,f +443,30028,0,4,f +443,30190stk01,9999,1,t +443,3020,0,1,f +443,3023,4,3,f +443,3024,4,1,f +443,3069b,15,1,f +443,3070b,15,1,t +443,3070b,15,2,f +443,3794b,4,3,f +443,3794b,0,2,f +443,50950,4,1,f +443,60470a,4,1,f +443,6141,1,1,f +443,6141,1,1,t +443,6141,27,1,t +443,6141,27,1,f +443,61678,4,2,f +443,74967,0,4,f +443,93589,4,1,f +444,11153,71,2,f +444,11211,4,4,f +444,11213,71,1,f +444,11299,15,1,f +444,15118,15,1,f +444,16542,14,1,f +444,2412b,15,6,f +444,2412b,72,2,f +444,2431,4,1,f +444,2431,15,2,f +444,2447,40,1,t +444,2447,40,1,f +444,2456,4,1,f +444,2877,71,4,f +444,3009,4,1,f +444,3010,4,4,f +444,30150,14,1,f +444,30194,72,1,f +444,3020,72,1,f +444,3020,15,2,f +444,3021,71,2,f +444,3022,15,3,f +444,3023,4,2,f +444,3023,33,4,f +444,30237b,71,1,f +444,3032,4,1,f +444,3032,14,2,f +444,3034,0,1,f +444,30374,14,4,f +444,30383,71,2,f +444,30565,72,1,f +444,3062b,14,1,f +444,3062b,4,1,f +444,3068b,15,1,f +444,3069b,33,2,f +444,32028,72,6,f +444,32028,15,4,f +444,3245c,4,1,f +444,3460,15,6,f +444,3622,71,1,f +444,3626cpr0754,14,1,f +444,3626cpr1146,14,1,f +444,3665,4,8,f +444,3710,4,8,f +444,3710,72,2,f +444,3795,15,1,f +444,3795,72,2,f +444,3829c01,1,1,f +444,3832,71,1,f +444,3834,320,2,f +444,3835,0,1,f +444,3838,14,1,f +444,3958,72,1,f +444,3962b,0,1,f +444,4006,0,1,f +444,4079,1,2,f +444,4150,0,2,f +444,4208,0,1,f +444,4209,4,1,f +444,44302a,72,2,f +444,4488,0,4,f +444,4599b,14,1,t +444,4599b,14,1,f +444,47905,4,1,f +444,4865a,41,2,f +444,50745,72,4,f +444,52031,4,2,f +444,54200,15,1,t +444,54200,36,1,t +444,54200,36,2,f +444,54200,15,4,f +444,54200,46,2,f +444,54200,46,1,t +444,59900,14,1,f +444,6014b,15,4,f +444,60475b,71,5,f +444,60581,4,2,f +444,60583b,4,4,f +444,6126b,41,1,f +444,6141,71,1,t +444,6141,71,4,f +444,61485,0,1,f +444,6154,4,2,f +444,6155,15,2,f +444,6158,72,1,f +444,6179,71,1,f +444,64453,41,1,f +444,6636,15,4,f +444,73590c03a,0,1,f +444,85861,14,1,f +444,85861,14,1,t +444,87079,0,1,f +444,87087,72,2,f +444,87552,41,4,f +444,87609,15,2,f +444,87697,0,4,f +444,87913,71,1,f +444,92593,15,5,f +444,92593,71,1,f +444,970c00pr0408,0,2,f +444,973pr2188c01,0,1,f +444,973pr2189c01,0,1,f +444,98138,33,4,f +445,3001a,14,1,f +445,3004,14,6,f +445,3004,47,5,f +445,3004p50,4,1,f +445,3005,47,3,f +445,3008,14,2,f +445,3009,14,1,f +445,3009,47,1,f +445,3010,14,4,f +445,3010,47,2,f +445,3020,4,3,f +445,3020,14,4,f +445,3021,4,2,f +445,3021,14,7,f +445,3023,4,2,f +445,3035,7,1,f +445,3062a,4,2,f +445,3149c01,4,4,f +445,468c01,1,1,f +445,498,0,2,f +445,7039b,4,4,f +445,996bc01,1,4,f +445,bb07pb01,1,1,f +445,x466,15,1,f +446,3004,15,1,f +446,3004,1,2,f +446,3004p06,7,1,f +446,3010ap04,1,2,f +446,3021,15,2,f +446,3021,7,1,f +446,3022,15,4,f +446,3023,1,4,f +446,3023,15,7,f +446,3023,7,1,f +446,3024,36,4,f +446,3024,15,4,f +446,3039,15,2,f +446,3062b,34,2,f +446,3065,33,2,f +446,3069b,15,2,f +446,3298,15,1,f +446,3298p90,15,1,f +446,3460,15,2,f +446,3460,1,1,f +446,3622,15,2,f +446,3623,15,4,f +446,3626apr0001,14,1,f +446,3666,1,1,f +446,3710,15,4,f +446,3710,1,1,f +446,3795,1,1,f +446,3795,15,1,f +446,3829c01,15,1,f +446,3832,15,1,f +446,3838,4,1,f +446,3839a,15,1,f +446,3839a,0,1,f +446,3842a,4,1,f +446,3933a,15,3,f +446,3934a,15,3,f +446,3937,1,1,f +446,3938,7,1,f +446,3939,33,1,f +446,3939p90,1,1,f +446,3940b,0,2,f +446,3941,0,2,f +446,3943a,0,1,f +446,3956,0,1,f +446,3957a,0,2,f +446,3957a,7,2,f +446,3963,7,2,f +446,4081a,15,4,f +446,4085a,7,2,f +446,4175,7,2,f +446,4212b,15,1,f +446,4213,33,1,f +446,4229,0,3,f +446,4286,1,4,f +446,4287,1,2,f +446,4287,15,2,f +446,4315,1,1,f +446,6141,36,2,f +446,970c00,4,1,f +446,973p90c02,4,1,f +447,10928,72,1,f +447,11211,4,2,f +447,11215,71,2,f +447,11477,4,2,f +447,14181,14,2,f +447,15068,14,1,f +447,15207,0,2,f +447,15790,0,1,f +447,18649,0,1,f +447,18671,272,1,f +447,2415,71,2,f +447,2420,4,2,f +447,2432,4,1,f +447,2446,4,1,f +447,2447,40,1,t +447,2447,40,1,f +447,28326,4,1,f +447,298c02,14,1,f +447,298c02,14,1,t +447,3002,1,1,f +447,30136,71,2,f +447,3020,71,3,f +447,3021,0,1,f +447,3023,0,4,f +447,3024,2,1,t +447,3024,2,2,f +447,3034,0,2,f +447,3068b,0,2,f +447,3069b,14,1,f +447,3070b,4,2,f +447,3070b,4,1,t +447,32064a,0,1,f +447,32807,0,4,f +447,32807,4,2,f +447,3460,0,2,f +447,3464,15,2,f +447,3626cpr1663,14,1,f +447,3794b,15,1,f +447,3832,14,1,f +447,4032a,2,1,f +447,41769,0,1,f +447,41770,0,1,f +447,42023,4,2,f +447,43713,4,1,f +447,43719,0,2,f +447,43722,14,1,f +447,43723,14,1,f +447,47457,72,1,f +447,4871,4,1,f +447,49668,0,2,f +447,50373,4,1,f +447,59895,0,2,f +447,59900,14,1,f +447,6239,14,1,f +447,6587,28,1,f +447,72454,4,1,f +447,87079,0,2,f +447,87752,47,1,f +447,92280,14,2,f +447,970c00,0,1,f +447,973pr2930c01,0,1,f +447,98138,71,2,f +447,98138,71,1,t +448,45573,72,9,f +448,45574,71,5,f +448,45575,71,36,f +448,45783,14,1,f +448,45784,135,1,f +448,45784,14,2,f +448,45785,14,1,f +448,45786,135,1,f +448,45786,14,2,f +448,45799,71,4,f +448,45803,0,2,f +448,45805c01,0,1,f +448,47324,14,4,f +448,47349c01,0,4,f +448,47371,135,1,f +448,47385c01,0,1,f +448,47871c01,0,1,f +448,48912c01,72,2,f +448,5282,0,1,f +448,85544,10,2,f +448,bat9volt,89,1,f +448,bb236,0,1,f +448,bb90,89,1,f +448,rb00178,0,2,f +448,x1220,89,1,f +451,4081b,4,3,f +451,4081b,0,3,f +451,4081b,15,3,f +451,4085c,0,3,f +451,4085c,4,3,f +451,4085c,1,3,f +452,2432,15,1,f +452,2543,4,1,f +452,3004,4,1,f +452,3004,1,1,f +452,3005,14,1,f +452,3020,15,1,f +452,3069b,14,1,f +452,3623,0,2,f +452,3623,15,1,f +452,3626bpr0001,14,1,f +452,3666,0,2,f +452,4523,0,1,f +452,6132,15,1,f +452,970c00,7,1,f +452,973c02,4,1,f +454,23306,383,1,f +454,2412b,71,6,f +454,2413,71,1,f +454,2420,15,8,f +454,2431,4,4,f +454,2431,15,2,f +454,2431pr0027,15,2,f +454,2432,19,2,f +454,2445,15,4,f +454,2456,72,1,f +454,2654,19,4,f +454,2736,71,4,f +454,2877,4,8,f +454,298c02,14,1,f +454,298c02,14,1,t +454,3001,72,1,f +454,3003,1,1,f +454,3004,72,7,f +454,3004,15,9,f +454,3005,15,8,f +454,3010,15,5,f +454,30136,72,1,f +454,3020,15,1,f +454,3020,19,1,f +454,3020,4,7,f +454,3021,19,2,f +454,3021,72,1,f +454,3022,15,6,f +454,3022,4,2,f +454,3023,71,6,f +454,3023,4,5,f +454,3031,72,4,f +454,3032,72,2,f +454,3032,15,2,f +454,3034,15,1,f +454,30355,15,2,f +454,30356,15,2,f +454,30359b,72,4,f +454,30360,15,4,f +454,30361dps1,15,1,f +454,30362,15,2,f +454,30364,71,2,f +454,30367apr01,15,1,f +454,30367b,15,1,f +454,3037,15,2,f +454,30370pr01,15,1,f +454,30370ps2,15,1,f +454,30372,15,1,f +454,30372pr0001,40,1,f +454,30374,41,1,f +454,30389b,0,1,f +454,3039,72,4,f +454,3039pr0008,0,1,f +454,30409,70,1,f +454,3040b,15,4,f +454,30414,1,2,f +454,30483pr01,70,1,f +454,30526,72,2,f +454,30553,0,2,f +454,3068b,4,4,f +454,3068b,71,2,f +454,3068bpr0071,19,2,f +454,3070b,4,6,f +454,3070b,15,1,t +454,3070b,15,4,f +454,3070b,4,1,t +454,3176,4,1,f +454,32000,71,18,f +454,32123b,71,1,t +454,32123b,71,2,f +454,32124,1,1,f +454,32269,71,1,f +454,32556,71,8,f +454,3460,4,2,f +454,3460,19,2,f +454,3623,4,12,f +454,3626bpr0342,78,1,f +454,3626bpr0378,78,1,f +454,3626bpr0449,78,1,f +454,3626bpr0635,78,1,f +454,3648b,71,1,f +454,3660,71,8,f +454,3665,15,2,f +454,3666,4,13,f +454,3666,15,1,f +454,3666,71,2,f +454,3666,19,6,f +454,3700,14,1,f +454,3701,0,2,f +454,3706,0,1,f +454,3707,0,1,f +454,3710,4,4,f +454,3710,15,1,f +454,3710,19,1,f +454,3710,71,4,f +454,3713,71,1,t +454,3713,71,4,f +454,3747a,15,1,f +454,3794a,1,2,f +454,3794a,4,3,f +454,3795,15,1,f +454,3830,15,2,f +454,3830,71,2,f +454,3831,15,2,f +454,3831,71,2,f +454,3901,70,1,f +454,3941,19,4,f +454,3941,71,4,f +454,4032a,0,6,f +454,4162,4,2,f +454,4162,15,4,f +454,41747,15,1,f +454,41748,15,1,f +454,41752,72,1,t +454,41769,15,3,f +454,41770,15,3,f +454,42446,71,4,f +454,4287,15,4,f +454,43093,1,4,f +454,43712,15,2,f +454,43713,15,1,f +454,43719,4,1,f +454,44300,72,1,f +454,44568,71,1,f +454,44571,15,1,f +454,4477,15,4,f +454,4519,71,11,f +454,4589,71,4,f +454,4716,71,1,f +454,4740,57,4,f +454,4740,72,4,f +454,4865a,15,2,f +454,4871,15,1,f +454,6141,72,1,t +454,6141,72,3,f +454,6141,57,1,f +454,6141,47,1,t +454,6141,57,1,t +454,6141,47,4,f +454,6538b,72,10,f +454,6541,71,4,f +454,6553,0,2,f +454,6588,47,1,f +454,6628,0,8,f +454,6636,4,2,f +454,6636,19,4,f +454,75535,71,1,f +454,76385,0,2,f +454,85543,15,6,f +454,970c00,15,1,f +454,970c00,70,1,f +454,970c00pr0033,70,1,f +454,970x199,25,2,f +454,973c32,70,1,f +454,973pr1142c01,272,1,f +454,973pr1145c01,19,1,f +454,973pr1301c01,25,2,f +457,11477,0,2,f +457,11477,191,2,f +457,15392,72,1,f +457,15392,72,1,t +457,15403,0,1,f +457,15573,4,1,f +457,15573,72,2,f +457,15573,15,1,f +457,18651,0,2,f +457,18671,72,4,f +457,2420,71,4,f +457,2450,15,4,f +457,2654,57,2,f +457,3005,15,2,f +457,30136,0,1,f +457,3020,72,1,f +457,3021,15,2,f +457,3022,19,2,f +457,3023,4,2,f +457,3023,71,3,f +457,3032,71,1,f +457,30367c,47,1,f +457,3040b,15,2,f +457,3069b,378,2,f +457,3626cpr1520,27,1,f +457,3665,71,6,f +457,3700,72,2,f +457,3795,71,1,f +457,3942c,0,2,f +457,4032a,0,3,f +457,4032a,72,2,f +457,4287,15,2,f +457,44728,4,2,f +457,54200,47,1,t +457,54200,47,1,f +457,60470b,0,4,f +457,60470b,191,2,f +457,60478,0,4,f +457,60478,15,4,f +457,61409,72,4,f +457,6141,35,3,f +457,6141,57,2,f +457,6141,35,1,t +457,6141,57,1,t +457,63965,0,2,f +457,87571pr0003,27,1,f +457,92738,0,1,f +457,92947,15,2,f +457,970c00pr0732,25,1,f +457,973pr2792c01,308,1,f +457,98100,71,2,f +457,98138,46,2,f +457,98138,46,1,t +457,99781,0,2,f +459,2301,1,2,f +459,2302,10,2,f +459,3011,10,3,f +459,3011,1,3,f +459,3011,14,3,f +459,3011,25,3,f +459,3011,4,3,f +459,31043,2,2,f +459,31191,4,1,f +459,31191,14,4,f +459,31195,1,6,f +459,31195,4,6,f +459,31195,2,6,f +459,31195,14,6,f +459,31367,14,1,f +459,31367,4,1,f +459,3437,10,16,f +459,3437,14,16,f +459,3437,4,16,f +459,3437,1,16,f +459,3437,25,12,f +459,3437pe1,14,2,f +459,40973,1,1,f +459,41184,1,1,f +459,41186,4,2,f +459,41216,14,1,f +459,41217,4,2,f +459,41246,2,1,f +459,41288,4,2,f +459,41288,14,2,f +459,41288,2,2,f +459,4199,14,1,f +459,47219,5,1,f +459,47510pr0002,212,1,f +459,47511pr0001,15,1,f +459,47511pr0002c02,1,1,f +459,6352,1,1,f +460,2335,19,1,f +460,2357,19,14,f +460,2456,19,4,f +460,2540,19,1,f +460,3001,19,5,f +460,3002,19,6,f +460,3003,19,3,f +460,3004,19,14,f +460,3005,19,11,f +460,3007,19,1,f +460,3009,19,3,f +460,3010,19,1,f +460,3021,19,1,f +460,30218,15,1,f +460,3022,19,3,f +460,3023,19,2,f +460,3024,19,5,f +460,3034,19,16,f +460,30367b,19,1,f +460,30374,19,1,f +460,3040b,19,16,f +460,3044b,19,1,f +460,3048c,19,8,f +460,3062b,19,5,f +460,3070b,19,3,f +460,33121,191,1,f +460,3622,19,4,f +460,3623,19,1,f +460,3659,19,1,f +460,3665,19,1,f +460,3666,19,12,f +460,3678b,19,2,f +460,3684,19,3,f +460,3685,19,5,f +460,3710,19,1,f +460,3794b,19,2,f +460,3795,19,4,f +460,3837,72,1,f +460,3941,19,9,f +460,4070,19,3,f +460,4286,19,5,f +460,4460b,19,3,f +460,4477,19,4,f +460,4490,19,4,f +460,4495b,4,3,f +460,4589,19,6,f +460,4733,19,1,f +460,4740,19,1,f +460,49668,19,4,f +460,54200,19,16,f +460,6141,19,5,f +461,250pb01,4,1,f +461,3001a,15,4,f +461,3005,4,1,f +461,3005,15,11,f +461,3008a,15,3,f +461,3008apb14,15,1,f +461,3009a,15,4,f +461,3034a,15,1,f +461,3035a,15,1,f +461,3035oldpb01,15,1,f +461,3036a,15,2,f +461,3036oldpb01,15,1,f +461,3036oldpb02,15,1,f +461,3063b,15,2,f +461,3063b,47,2,f +461,3063b,4,1,f +461,3065,15,23,f +461,3065,47,4,f +461,3065,4,20,f +461,31bc01,15,2,f +461,32bc01,15,1,f +461,453bc01,15,2,f +461,712a,15,1,f +461,712apb01,15,1,f +461,820,15,1,f +461,821,15,1,f +461,822ac01,15,1,f +461,bb108pb01,15,1,f +461,x887px1,15,1,f +465,2339,0,10,f +465,2339,7,8,f +465,2345,0,8,f +465,2345,7,2,f +465,2345p02,7,2,f +465,2357,7,6,f +465,2357,0,5,f +465,2417,2,11,f +465,2419,0,1,f +465,2420,0,2,f +465,2423,2,2,f +465,2431,0,1,f +465,2436,0,1,f +465,2450,7,2,f +465,2453a,7,2,f +465,2462,7,2,f +465,2488,2,1,f +465,2489,6,4,f +465,3003,0,2,f +465,3003,7,2,f +465,3004,0,8,f +465,3004,7,34,f +465,3005,7,24,f +465,3005,0,12,f +465,3008,7,1,f +465,3009,7,2,f +465,3010,7,2,f +465,3010,0,1,f +465,3020,7,2,f +465,3020,0,2,f +465,3022,0,1,f +465,3023,0,6,f +465,3023,7,7,f +465,3024,0,2,f +465,3024,7,3,f +465,3030,0,1,f +465,3032,0,1,f +465,3033,7,1,f +465,3034,2,1,f +465,3035,7,1,f +465,3039,0,2,f +465,3040b,7,4,f +465,3045,0,9,f +465,3069b,0,1,f +465,3069b,7,3,f +465,3070b,7,4,f +465,3070b,0,1,f +465,3176,0,2,f +465,3298,0,2,f +465,3455,7,2,f +465,3622,7,5,f +465,3622,0,1,f +465,3623,0,12,f +465,3623,7,2,f +465,3626apr0001,14,6,f +465,3660,7,2,f +465,3665,7,6,f +465,3666,7,1,f +465,3700,7,1,f +465,3710,7,1,f +465,3710,0,1,f +465,3794a,7,1,f +465,3795,7,1,f +465,3795,0,1,f +465,3811,1,1,f +465,3830,7,2,f +465,3831,7,2,f +465,3844,8,1,f +465,3846p48,6,2,f +465,3847a,8,3,f +465,3849,8,1,f +465,3937,7,1,f +465,3938,7,1,f +465,3957a,0,6,f +465,4032a,6,6,f +465,4070,0,1,f +465,4070,7,3,f +465,4085b,7,2,f +465,4085b,0,1,f +465,4150p40,14,1,f +465,4162,0,4,f +465,4208,0,1,f +465,4209,7,1,f +465,4275b,0,2,f +465,4276b,0,2,f +465,4286,0,8,f +465,4444,7,4,f +465,4460a,0,4,f +465,4477,7,1,f +465,4490,7,2,f +465,4495a,4,1,f +465,4495a,15,1,f +465,4497,6,2,f +465,4498,6,2,f +465,4499,6,2,f +465,4506,6,2,f +465,4506,2,3,f +465,4519,0,2,f +465,4738b,6,1,f +465,4739b,6,1,f +465,56823c30,0,1,f +465,6141,14,4,f +465,73983,7,1,f +465,87692,4,1,t +465,87692,1,1,t +465,87692,14,1,t +465,87693,1,1,f +465,87693,4,1,f +465,87693,14,1,f +465,87694,14,1,f +465,87694,4,1,f +465,87694,1,1,t +465,970c00,2,5,f +465,970c00,4,1,f +465,973p46c01,2,1,f +465,973p48c01,2,2,f +465,973p49c01,2,2,f +465,973px138c01,4,1,f +466,3001,15,2,f +466,3003,4,2,f +466,3003,15,2,f +466,3004,14,4,f +466,3004,47,2,f +466,3004,0,2,f +466,3004,15,2,f +466,3004,4,4,f +466,3005,14,2,f +466,3007,15,1,f +466,3010,14,4,f +466,3020,4,2,f +466,3021,4,2,f +466,3022,4,1,f +466,3034,4,2,f +466,3039,4,2,f +466,3039,47,2,f +466,3039,15,2,f +466,3137c01,0,2,f +466,3460,1,4,f +466,3461,4,1,f +466,3462,4,1,f +466,3480,0,1,f +466,3481,4,1,f +466,3641,0,4,f +466,3660,15,2,f +466,3747b,15,2,f +466,3795,1,2,f +467,3001,1,1,f +467,3003,1,3,f +467,3004,1,3,f +467,3004p06,1,2,f +467,3004p90,1,2,f +467,3005,1,2,f +467,3010,1,2,f +467,3020,1,2,f +467,3022,1,4,f +467,3023,1,10,f +467,3024,1,4,f +467,3024,36,2,f +467,3039,1,1,f +467,3039p23,1,1,f +467,3065,46,4,f +467,3066,46,2,f +467,3069b,1,11,f +467,3622,1,2,f +467,3623,1,8,f +467,3626apr0001,14,2,f +467,3639,1,1,f +467,3640,1,1,f +467,3673,7,4,f +467,3700,1,4,f +467,3710,1,7,f +467,3713,7,8,f +467,3737,0,4,f +467,3747a,1,6,f +467,3794a,1,1,f +467,3829c01,1,1,f +467,3830,1,2,f +467,3831,1,2,f +467,3838,15,1,f +467,3838,0,1,f +467,3842a,0,1,f +467,3842a,15,1,f +467,3876,36,2,f +467,3894,1,4,f +467,3957a,7,2,f +467,3957a,36,1,f +467,3959,0,1,f +467,3959,7,2,f +467,3960,7,4,f +467,3962a,0,1,f +467,4006,0,1,f +467,4070,1,4,f +467,4081a,1,2,f +467,4085a,1,6,f +467,4175,7,3,f +467,4213,46,1,f +467,4275a,1,2,f +467,4276a,7,2,f +467,4286,1,4,f +467,4288,0,16,f +467,4315,1,2,f +467,4349,7,2,f +467,4474,46,1,f +467,4479,7,2,f +467,4522,0,1,f +467,4588,7,2,f +467,4590,1,2,f +467,4596,1,6,f +467,4596,7,2,f +467,4597,1,2,f +467,6141,36,4,f +467,970c00,0,1,f +467,970c00,15,1,f +467,973p90c03,0,1,f +467,973p90c05,15,1,f +468,10201,71,6,f +468,10202,71,2,f +468,11458,72,2,f +468,12825,15,2,f +468,14769,4,1,f +468,15672,72,4,f +468,2412b,72,4,f +468,2412b,179,2,f +468,2412b,71,4,f +468,2420,70,4,f +468,2431,71,4,f +468,2432,72,2,f +468,2465,14,2,f +468,2496,0,2,f +468,2723,0,2,f +468,2780,0,20,f +468,2780,0,2,t +468,2878,0,2,f +468,2921,15,2,f +468,2926,0,3,f +468,3002,0,4,f +468,3003,71,1,f +468,3004,14,6,f +468,3004,326,6,f +468,3004,0,2,f +468,3005,14,12,f +468,30136,72,4,f +468,30173b,297,1,t +468,30173b,297,1,f +468,30173b,179,2,t +468,30173b,179,2,f +468,3020,19,2,f +468,3020,326,2,f +468,3020,0,1,f +468,3020,2,1,f +468,3020,72,2,f +468,3020,4,1,f +468,3021,71,2,f +468,3021,2,2,f +468,3021,72,1,f +468,3022,14,4,f +468,3022,71,5,f +468,3022,15,2,f +468,3023,14,22,f +468,3023,70,18,f +468,3023,36,2,f +468,3023,47,2,f +468,3024,72,1,t +468,3024,15,2,f +468,3024,182,2,f +468,3024,19,1,t +468,3024,72,8,f +468,3024,19,16,f +468,3024,15,1,t +468,3024,182,1,t +468,3029,71,1,f +468,3030,72,2,f +468,3032,19,1,f +468,3034,72,2,f +468,3035,4,1,f +468,3036,2,1,f +468,30361c,4,1,f +468,30374,15,2,f +468,30377,15,2,f +468,30377,15,1,t +468,3040b,14,10,f +468,3065,46,2,f +468,3068b,14,2,f +468,3068b,15,1,f +468,3068bpr0137,15,1,f +468,3069b,14,2,f +468,3069b,2,4,f +468,3069b,72,2,f +468,3069b,15,5,f +468,3069bpr0030,15,1,f +468,3176,71,2,f +468,32019,0,2,f +468,32062,4,1,f +468,32064a,4,2,f +468,32073,71,1,f +468,32184,71,8,f +468,32291,0,4,f +468,32530,4,2,f +468,32531,71,2,f +468,3460,19,4,f +468,3622,14,4,f +468,3622,15,6,f +468,3623,19,6,f +468,3665,4,2,f +468,3666,14,9,f +468,3666,19,1,f +468,3666,0,6,f +468,3666,2,1,f +468,3673,71,1,t +468,3673,71,2,f +468,3678b,72,2,f +468,3702,0,2,f +468,3703,0,2,f +468,3706,0,1,f +468,3710,4,1,f +468,3710,14,1,f +468,3710,72,4,f +468,3794b,72,2,f +468,3795,14,7,f +468,3829c01,71,1,f +468,3832,0,2,f +468,3894,14,4,f +468,3937,14,8,f +468,3938,71,8,f +468,3941,72,18,f +468,3941,4,4,f +468,3941,42,2,f +468,3958,72,3,f +468,4032a,71,6,f +468,4070,14,8,f +468,4150,15,4,f +468,4150,72,2,f +468,4150,326,2,f +468,4150,71,2,f +468,4162,0,2,f +468,4162,72,2,f +468,4175,28,8,f +468,4176,40,1,f +468,42003,14,1,f +468,42446,71,1,t +468,42511,25,1,f +468,4274,1,2,f +468,4274,1,1,t +468,4274,71,1,f +468,4274,71,1,t +468,43722,72,2,f +468,43723,72,1,f +468,4460b,14,4,f +468,44728,0,1,f +468,44728,72,1,f +468,4477,72,4,f +468,4519,71,1,f +468,45677,326,8,f +468,4624,71,2,f +468,47905,72,2,f +468,4865b,71,4,f +468,4865b,14,8,f +468,51011,0,4,f +468,52501,4,2,f +468,53451,179,1,f +468,53451,179,1,t +468,55013,72,8,f +468,55981,71,2,f +468,56891,0,2,f +468,57028c01,71,1,f +468,57051,383,2,f +468,57796,72,1,f +468,57878,0,4,f +468,60032,14,8,f +468,60470b,71,1,f +468,60474,326,2,f +468,60478,72,4,f +468,60481,326,4,f +468,60601,47,8,f +468,60657,15,1,f +468,60658,15,1,f +468,60897,72,6,f +468,6141,47,3,t +468,6141,71,2,t +468,6141,47,10,f +468,6141,36,1,t +468,6141,71,10,f +468,6141,36,2,f +468,61485,0,1,f +468,6180,5,2,f +468,6232,19,10,f +468,6232,72,4,f +468,62462,4,1,f +468,63868,71,4,f +468,79104stk01,-1,1,f +468,85984,72,1,f +468,85984,14,4,f +468,86652,71,2,f +468,87079,15,3,f +468,87079,14,4,f +468,87081,4,1,f +468,87083,72,2,f +468,87087,72,8,f +468,87087,484,4,f +468,88930,2,2,f +468,91988,71,1,f +468,92338,72,1,t +468,92338,72,1,f +468,92593,0,2,f +468,92593,326,10,f +468,92593,15,2,f +468,92690,70,2,f +468,92926,4,1,f +468,93594,179,4,f +468,95199,72,1,f +468,96874,25,1,t +468,99780,0,1,f +468,99780,72,1,f +468,99781,71,4,f +468,99781,15,2,f +469,3021,15,1,f +469,3023,15,1,f +469,3023,27,2,f +469,3069b,27,2,f +469,3069bpr0055,15,1,f +469,3794b,15,1,f +470,3003,0,1,f +470,3004,0,1,f +470,3004,1,4,f +470,3004p50,1,1,f +470,3005,47,4,f +470,3005,1,4,f +470,3007,1,2,f +470,3010,1,3,f +470,3022,14,1,f +470,3022,15,1,f +470,3023,0,2,f +470,3032,1,1,f +470,3037,47,1,f +470,3037,4,2,f +470,3039,0,1,f +470,3062a,0,4,f +470,3062a,14,5,f +470,3063b,0,2,f +470,3069a,7,1,f +470,997c02,4,1,f +470,x146c02,4,1,f +470,x147c02,4,1,f +470,x149a,4,1,f +472,2377,0,2,f +472,2412b,0,2,f +472,2412b,7,4,f +472,2413,7,4,f +472,2419,7,1,f +472,2458,7,2,f +472,298c03,0,1,f +472,3004,0,1,f +472,30132,8,1,f +472,30162,0,1,f +472,30165,0,2,f +472,30170,0,1,f +472,30171,6,1,f +472,3021,7,1,f +472,3021,0,2,f +472,3022,0,1,f +472,3022,4,2,f +472,3023,15,1,f +472,3032,0,1,f +472,3040b,6,2,f +472,3048c,0,3,f +472,3068b,4,1,f +472,3069bp03,7,1,f +472,3460,7,1,f +472,3587,6,1,f +472,3622,19,2,f +472,3626bpa5,14,1,f +472,3710,0,1,f +472,3747a,6,1,f +472,3794a,4,1,f +472,3795,7,1,f +472,3837,8,1,f +472,3841,8,1,f +472,4287,6,4,f +472,4617b,6,2,f +472,4854,19,1,f +472,4855,19,2,f +472,4859,0,1,f +472,4865a,47,1,f +472,4865a,6,2,f +472,6019,0,2,f +472,6069,19,1,f +472,6069,6,1,f +472,6141,36,1,t +472,6141,36,2,f +472,6182,0,2,f +472,970c00,0,1,f +472,973pa5c01,6,1,f +474,273,0,50,f +474,3001a,4,11,f +474,3002a,1,1,f +474,3003,1,1,f +474,3003,4,2,f +474,3003,14,1,f +474,3004,1,2,f +474,3004,4,2,f +474,3004,0,1,f +474,3004pb007,4,1,f +474,3007,4,2,f +474,3009,0,2,f +474,3009,4,2,f +474,3010,0,2,f +474,3020,4,2,f +474,3023,1,1,f +474,3024,0,1,f +474,3030,14,1,f +474,3030,4,1,f +474,3032,4,1,f +474,3034,4,1,f +474,3034,14,4,f +474,3035,4,1,f +474,3039,4,2,f +474,3062a,0,2,f +474,3149c01,14,2,f +474,3183a,4,1,f +474,3184,4,1,f +474,3185,4,1,f +474,3298,1,1,f +474,3482,4,2,f +474,3483,0,2,f +474,3707,79,3,f +474,3709a,7,3,f +474,569,4,4,f +474,pinpw2,80,4,f +474,x148,4,9,f +475,10b,2,1,f +475,15,0,2,f +475,15,1,1,f +475,17,1,1,f +475,17,0,2,f +475,21,47,2,f +475,242c01,4,4,f +475,29c,14,2,f +475,3001a,4,2,f +475,3001a,1,2,f +475,3002a,4,2,f +475,3003,0,2,f +475,3003,1,2,f +475,3003,4,4,f +475,3004,4,21,f +475,3004,1,4,f +475,3004,47,2,f +475,3005,4,18,f +475,3005,1,4,f +475,3006,4,2,f +475,3007,4,2,f +475,3008,4,12,f +475,3008,1,4,f +475,3009,4,12,f +475,3009,1,4,f +475,3010,4,10,f +475,3010,1,4,f +475,3010,47,2,f +475,3010pb035e,4,1,f +475,3020,1,2,f +475,3020,4,2,f +475,3021,1,2,f +475,3021,4,2,f +475,3022,1,2,f +475,3022,4,2,f +475,3023,1,2,f +475,3023,4,2,f +475,3024,4,5,f +475,3029,1,2,f +475,3030,4,1,f +475,3030,1,1,f +475,3032,1,1,f +475,3034,1,4,f +475,3035,1,2,f +475,3036,1,1,f +475,3037,1,4,f +475,3039,4,4,f +475,3039,1,2,f +475,3039,47,2,f +475,3040a,4,2,f +475,3062a,14,4,f +475,3063b,4,4,f +475,3081cc01,14,6,f +475,3087cc01,14,2,f +475,3127b,4,1,f +475,3137c01,0,4,f +475,3139,0,4,f +475,3144,79,1,f +475,3149c01,4,2,f +475,3183a,4,1,f +475,3183a,1,1,f +475,3184,4,1,f +475,3184,1,1,f +475,3228a,1,2,f +475,3297,1,16,f +475,3297,47,1,f +475,3298,1,8,f +475,3299,1,4,f +475,3300,1,2,f +475,3308,4,2,f +475,33bc01,14,2,f +475,3430c02,0,1,f +475,3464,4,4,f +475,3471,2,1,f +475,3480,7,2,f +475,3481,4,2,f +475,3483,0,4,f +475,3579,4,2,f +475,3581,4,4,f +475,3582,1,4,f +475,3587,1,1,f +475,3624,0,2,f +475,3624,1,1,f +475,3626a,14,3,f +475,3633,1,4,f +475,3641,0,8,f +475,3659,4,4,f +475,3660,4,8,f +475,3660,1,2,f +475,420,14,1,f +475,421,14,1,f +475,56823,0,1,f +475,586c01,4,1,f +475,604c01,14,1,f +475,7049b,0,2,f +475,7930,14,2,f +475,8,1,4,f +477,2376,0,1,f +477,2412b,320,2,f +477,2412b,15,1,f +477,2460,0,1,f +477,30033,0,1,f +477,30162,72,1,f +477,3022,0,3,f +477,3023,15,1,f +477,3024,15,2,f +477,30370ps3,15,1,f +477,3062b,15,4,f +477,3176,71,1,f +477,3623,320,1,f +477,3623,19,2,f +477,3626cpr0631,78,1,f +477,3710,71,1,f +477,3794a,15,1,f +477,3795,0,2,f +477,3957a,71,4,f +477,4032a,19,1,f +477,42446,71,1,f +477,4274,71,5,f +477,4274,71,1,t +477,43722,15,2,f +477,43723,15,2,f +477,54200,40,1,t +477,54200,40,1,f +477,58247,0,1,f +477,60470a,71,4,f +477,61184,71,4,f +477,61252,72,4,f +477,6141,80,1,f +477,6141,72,4,f +477,6141,72,1,t +477,6141,182,4,f +477,6141,182,1,t +477,6141,80,1,t +477,6179pr0004,0,1,f +477,62462,0,1,f +477,63864,15,1,f +477,63868,71,4,f +477,92946,72,1,f +477,970x199,25,1,f +477,973pr1578c01,25,1,f +477,98107pat0001,378,2,f +479,2339,15,4,f +479,2343,14,2,f +479,2346,0,4,f +479,2357,4,4,f +479,2357,15,4,f +479,2357,1,4,f +479,2357,14,4,f +479,2419,1,1,f +479,2423,2,4,f +479,2431p06,1,2,f +479,2434,14,1,f +479,2435,2,1,f +479,2450,1,2,f +479,2456,1,2,f +479,2456,15,2,f +479,2456,14,2,f +479,2456,4,2,f +479,2460,7,1,f +479,2479,1,1,f +479,2488,2,1,f +479,2577,15,4,f +479,2625,1,2,f +479,3001,1,6,f +479,3001,4,6,f +479,3001,15,6,f +479,3001,14,6,f +479,3001,0,4,f +479,3002,15,2,f +479,3002,1,2,f +479,3002,14,2,f +479,3002,0,2,f +479,3002,4,2,f +479,3003,1,8,f +479,3003,4,8,f +479,3003,14,8,f +479,3003,0,4,f +479,3003,15,8,f +479,3004,4,24,f +479,3004,15,24,f +479,3004,0,12,f +479,3004,14,24,f +479,3004,1,24,f +479,3005,4,16,f +479,3005,15,16,f +479,3005,1,16,f +479,3005,14,16,f +479,3005,0,10,f +479,3005pe1,14,4,f +479,3007,14,2,f +479,3007,4,2,f +479,3008,1,4,f +479,3008,15,4,f +479,3008,0,2,f +479,3008,4,4,f +479,3008,14,4,f +479,3009,14,6,f +479,3009,15,6,f +479,3009,1,6,f +479,3009,0,4,f +479,3009,4,6,f +479,3010,0,8,f +479,3010,15,14,f +479,3010,4,14,f +479,3010,14,14,f +479,3010,1,14,f +479,3010p01,14,2,f +479,3020,1,2,f +479,3020,15,2,f +479,3021,15,2,f +479,3021,1,2,f +479,3022,15,2,f +479,3022,1,2,f +479,3030,1,2,f +479,3031,1,1,f +479,3031,15,1,f +479,3032,1,1,f +479,3034,1,2,f +479,3035,15,1,f +479,3039,47,2,f +479,3039,14,4,f +479,3039p12,0,1,f +479,3040b,14,4,f +479,3062b,15,8,f +479,3065,47,2,f +479,3081cc01,4,2,f +479,3149c01,4,1,f +479,3297,14,4,f +479,3297p01,14,6,f +479,3298,14,4,f +479,3298p17,14,4,f +479,3299,14,2,f +479,3300,14,4,f +479,3460,1,4,f +479,3471,2,1,f +479,3582,1,4,f +479,3622,4,6,f +479,3622,14,6,f +479,3622,15,6,f +479,3622,1,6,f +479,3622,0,4,f +479,3626bp03,14,1,f +479,3626bp04,14,1,f +479,3626bpr0001,14,1,f +479,3633,4,6,f +479,3660,14,4,f +479,3665,14,2,f +479,3679,7,1,f +479,3680,14,1,f +479,3710,15,2,f +479,3710,1,2,f +479,3741,2,4,f +479,3742,1,3,f +479,3742,4,1,t +479,3742,1,1,t +479,3742,15,1,t +479,3742,15,3,f +479,3742,4,3,f +479,3742,14,1,t +479,3742,14,3,f +479,3747a,14,4,f +479,3795,15,2,f +479,3823,47,1,f +479,3829c01,14,2,f +479,3837,8,1,f +479,3852b,6,1,f +479,3853,4,5,f +479,3854,14,10,f +479,3861b,4,2,f +479,3867,2,2,f +479,3901,0,1,f +479,3957a,15,2,f +479,3957a,14,2,f +479,3960p01,15,2,f +479,4070,15,4,f +479,4079,14,2,f +479,4286,14,2,f +479,4287,14,2,f +479,4485,1,1,f +479,4495a,2,2,f +479,4730,1,2,f +479,6041,14,2,f +479,6093,6,1,f +479,6183,14,2,f +479,6215,14,4,f +479,6215,15,4,f +479,6248,4,4,f +479,6249,8,2,f +479,6564,1,2,f +479,6565,1,2,f +479,970c00,4,1,f +479,970c00,1,1,f +479,970c00,7,1,f +479,973p01c01,15,1,f +479,973p73c01,2,1,f +479,973pr1204c01,15,1,f +480,2412b,1,8,f +480,2654,72,1,f +480,32064b,72,2,f +480,32123b,71,1,t +480,32123b,71,2,f +480,3707,0,1,f +480,3709,1,2,f +480,3710,0,4,f +480,3738,0,2,f +480,4032a,1,5,f +480,4032a,71,3,f +480,41769,0,4,f +480,41770,0,4,f +480,44728,72,2,f +480,4740,47,1,f +480,4740,71,1,f +480,6141,0,1,t +480,6141,0,2,f +481,10928,72,4,f +481,11271,179,1,f +481,11272,148,1,f +481,19049,179,1,f +481,19050,42,1,f +481,19062,321,1,f +481,19062,297,1,f +481,19086,72,1,f +481,19087,179,2,f +481,19089,179,2,f +481,20251,179,1,f +481,20252,148,4,f +481,2780,0,5,f +481,32039,14,5,f +481,32062,4,3,f +481,32072,14,3,f +481,32123b,14,2,f +481,33299a,71,1,f +481,3705,0,1,f +481,3707,0,2,f +481,3713,71,1,f +481,4274,71,1,f +481,43093,1,2,f +481,44294,71,1,f +481,4497,297,1,f +481,53585,0,4,f +481,64727,71,2,f +481,6558,1,1,f +481,87083,72,2,f +481,90607,41,2,f +481,90609,41,2,f +481,90612,41,2,f +481,90616,0,2,f +481,90617,72,2,f +481,90626,0,1,f +481,90639,321,4,f +481,90640,148,2,f +481,90641,41,3,f +481,90650,148,2,f +481,90661,148,2,f +481,93575,179,2,f +481,98137,179,2,f +481,98577,72,1,f +481,98603s02pr0005,148,1,f +482,2335p44,4,1,f +482,2343,14,1,f +482,2420,0,2,f +482,2431,1,1,f +482,2470,6,4,f +482,2488,0,1,f +482,2489,6,1,f +482,251,0,1,f +482,2546,8,1,f +482,2570,8,1,f +482,2926,0,2,f +482,3004,0,1,f +482,3020,0,1,f +482,3022,0,2,f +482,3023,1,6,f +482,3023,0,4,f +482,3024,1,2,f +482,3024,0,2,f +482,3035,1,1,f +482,3069b,1,2,f +482,3460,0,4,f +482,3623,1,2,f +482,3626bp35,14,1,f +482,3626bp49,14,1,f +482,3665,1,2,f +482,3666,1,2,f +482,3679,7,1,f +482,3710,0,4,f +482,3710,1,1,f +482,3846p44,7,1,f +482,3847a,8,1,t +482,3847a,8,3,f +482,3849,8,1,f +482,3937,1,2,f +482,3938,1,2,f +482,4032a,6,1,f +482,4085c,1,6,f +482,4491b,1,1,f +482,4493c01pb02,0,1,f +482,4495b,4,1,f +482,4497,6,1,f +482,4498,6,1,f +482,4499,6,1,f +482,4505,0,1,f +482,4505,6,1,f +482,4524,0,1,f +482,4524,4,1,f +482,4587,4,1,f +482,4623,1,2,f +482,4738a,6,1,f +482,4739a,6,1,f +482,4865a,1,4,f +482,6141,14,4,f +482,6141,14,1,t +482,970x021,0,1,f +482,970x026,7,1,f +482,973p44c01,6,1,f +482,973p44c02,6,1,f +483,3020,15,3,f +483,3021,15,1,f +483,3022,15,5,f +483,3023,47,5,f +483,3023,15,4,f +483,3023,4,5,f +483,3034,4,1,f +483,3034,15,7,f +483,3139,0,3,f +483,3460,15,2,f +483,3464,4,3,f +483,3475a,15,2,f +483,3479,15,1,f +483,8,15,3,f +484,2339,70,2,f +484,2357,2,2,f +484,2357,70,5,f +484,2420,19,1,f +484,2420,70,2,f +484,2431,71,2,f +484,2524,2,1,f +484,2654,46,2,f +484,2780,0,1,t +484,2780,0,1,f +484,3001,19,3,f +484,3003,70,2,f +484,3003,2,1,f +484,3003,19,13,f +484,3004,19,2,f +484,3004,71,3,f +484,3004,70,14,f +484,3004,2,4,f +484,3005,71,2,f +484,3005,70,12,f +484,3009,70,7,f +484,3009,71,2,f +484,3010,70,15,f +484,3010,71,4,f +484,30136,72,2,f +484,3020,2,2,f +484,3023,14,2,f +484,3023,70,5,f +484,3023,71,5,f +484,3024,19,7,f +484,3027,1,1,f +484,3031,2,1,f +484,3034,14,1,f +484,3037,320,12,f +484,3039,320,10,f +484,3040b,2,2,f +484,3040b,70,3,f +484,3040b,71,4,f +484,3062b,57,2,f +484,3062b,0,4,f +484,3068b,19,1,f +484,3069b,14,2,f +484,3069b,71,3,f +484,3069b,19,5,f +484,3070b,19,1,t +484,3070b,19,9,f +484,33057,484,2,f +484,3460,71,2,f +484,3622,70,14,f +484,3623,71,2,f +484,3623,19,3,f +484,3626bpr0645,14,1,f +484,3659,71,1,f +484,3710,14,2,f +484,3710,2,5,f +484,3710,19,2,f +484,3795,70,1,f +484,3795,19,4,f +484,3795,2,1,f +484,3830,70,2,f +484,3831,70,2,f +484,3832,19,2,f +484,3941,70,2,f +484,4032a,0,1,f +484,4081b,15,2,f +484,4162,19,3,f +484,4162,71,1,f +484,42446,72,1,f +484,4445,320,14,f +484,4477,19,3,f +484,4599b,0,2,f +484,48336,71,1,f +484,4865a,71,2,f +484,49668,288,8,f +484,49668,27,7,f +484,53451,15,2,f +484,53451,15,1,t +484,54200,72,2,f +484,54200,72,1,t +484,54200,71,1,t +484,54200,71,3,f +484,54200,14,4,f +484,54200,14,1,t +484,59900,2,3,f +484,60592,19,1,f +484,60594,19,5,f +484,60596,19,1,f +484,60608,14,10,f +484,60623,14,1,f +484,6141,57,1,t +484,6141,27,6,f +484,6141,4,1,t +484,6141,0,5,f +484,6141,0,1,t +484,6141,4,4,f +484,6141,27,1,t +484,6141,57,6,f +484,61678,14,4,f +484,6266,0,2,f +484,63965,0,1,f +484,6541,0,1,f +484,86035,4,1,f +484,87087,19,10,f +484,87585,70,1,f +484,91405,10,1,f +484,92438,10,1,f +484,970c00,19,1,f +484,973c07,1,1,f +485,3242c,1,8,f +486,11203pr0006,19,10,f +486,11203pr0007,19,1,f +486,11203pr0008,19,8,f +486,11203pr0009,19,1,f +486,11203pr0010,19,8,f +486,11203pr0011,19,6,f +486,2420,70,8,f +486,3004,2,48,f +486,3005,4,3,f +486,3005,15,3,f +486,3005,27,4,f +486,3021,70,8,f +486,3022,70,4,f +486,3023,70,16,f +486,3023,2,6,f +486,3045,4,2,f +486,3045,15,2,f +486,3062b,2,32,f +486,3062b,4,2,f +486,3062b,72,4,f +486,3062b,15,2,f +486,3068bpr0142,15,2,f +486,3068bpr0143,15,2,f +486,3068bpr0181,15,1,f +486,3068bpr0216,19,1,f +486,33291,191,4,f +486,33291,191,1,t +486,33291,10,6,f +486,33291,10,1,t +486,3700,19,16,f +486,3710,70,4,f +486,3795,70,8,f +486,3832,1,4,f +486,3958,10,17,f +486,4495b,4,1,f +486,4740,2,16,f +486,4740,71,1,f +486,53451,179,1,f +486,53451,179,1,t +486,59900,72,4,f +486,59900,70,4,f +486,6141,4,1,t +486,6141,4,3,f +486,6141,25,3,f +486,6141,25,1,t +486,62361,71,4,f +486,64644,308,2,f +486,64647,182,2,f +486,64647,182,1,t +486,64776pat0001,0,1,f +486,73983,71,3,f +486,73983,2,3,f +486,85863pr0108,71,1,f +486,85863pr0109,19,1,f +486,85863pr0110,272,1,f +486,85863pr0111,28,1,f +486,85984,2,48,f +486,86208,72,1,f +486,87580,2,16,f +486,87580,28,16,f +486,87580,15,1,f +486,92585,4,1,f +486,93273,2,16,f +488,3001a,1,1,f +488,3001a,14,12,f +488,3004,47,2,f +488,3005,1,2,f +488,3010,47,1,f +488,3010pb035e,1,1,f +488,3021,1,2,f +488,3029,1,1,f +488,3030,1,3,f +488,3137c01,0,1,f +488,3137c02,0,4,f +488,3139,0,2,f +488,3183b,1,1,f +488,3184,1,1,f +488,3190,14,4,f +488,3191,14,4,f +488,7b,0,8,f +489,2376,0,1,f +489,3001,7,2,f +489,3001,25,5,f +489,30150,25,1,f +489,3039,42,1,f +489,30619,15,1,f +489,30633pb03,143,1,f +489,30636c01,25,1,f +489,30644,0,2,f +489,3068b,15,1,f +489,42601,15,1,f +489,42602,15,1,f +489,42604pr03,15,1,f +489,42605pb02,15,1,f +489,42608,0,3,f +489,42610,7,6,f +489,43121c04,7,2,f +489,4349,7,1,f +489,46667,383,2,f +489,4729,15,2,f +489,51011,0,6,f +489,js026,9999,1,f +489,js029,9999,1,f +491,2417,2,2,f +491,2453a,15,2,f +491,2454a,15,1,f +491,2470,0,2,f +491,2488,0,1,f +491,251,0,1,f +491,2546p01,4,1,f +491,2926,7,2,f +491,30032,6,1,f +491,3004,0,1,f +491,3004,15,1,f +491,3010,15,1,f +491,3023,15,2,f +491,3027,74,1,f +491,3035,15,1,f +491,3069b,15,2,f +491,3069b,0,1,f +491,3455,15,2,f +491,3626bp02,14,1,f +491,3626bp03,14,1,f +491,3633,15,2,f +491,3665,15,2,f +491,3679,7,1,f +491,3741,2,1,f +491,3742,5,4,f +491,3833,0,1,f +491,3899,13,2,f +491,3901,0,1,f +491,3941,15,1,f +491,3960,13,1,f +491,4079,5,4,f +491,4095,15,1,f +491,4489,0,2,f +491,4491b,1,1,f +491,4493c01pb02,0,1,f +491,4587,15,1,f +491,4589,15,3,f +491,4865a,15,2,f +491,6079,15,1,f +491,6093,0,1,f +491,6141,46,2,f +491,970c00,7,1,f +491,970x001,14,1,f +491,973pr1190c01,0,1,f +491,973px5c01,15,1,f +492,27bc01,4,6,f +492,3001a,1,17,f +492,3002a,47,2,f +492,3002a,4,9,f +492,3002a,15,4,f +492,3003,1,2,f +492,3005,15,6,f +492,3005,1,4,f +492,3005pt1,15,2,f +492,3005ptu,15,2,f +492,3007,1,6,f +492,3008a,1,6,f +492,3008a,15,4,f +492,3036,15,1,f +492,3062c,14,10,f +492,3062c,15,2,f +492,3062c,1,4,f +492,3063b,1,6,f +492,3065,1,8,f +492,3065,15,6,f +493,33057,484,1,f +493,3626bpr0325,14,1,f +493,3901,0,1,f +493,970c00,70,1,f +493,973pr1155c01,19,1,f +496,3022,0,2,f +496,3024,71,360,f +496,3024,72,450,f +496,3024,15,810,f +496,3024,0,540,f +496,3037,0,44,f +496,3038,0,2,f +496,3046a,0,6,f +496,3176,0,1,f +496,4186,71,1,f +496,6007,72,1,t +497,2412b,71,1,f +497,2444,0,2,f +497,2654,71,2,f +497,2780,0,1,t +497,2780,0,19,f +497,2815,0,2,f +497,2850b,71,2,f +497,2851,14,2,f +497,2852,71,2,f +497,2853,71,2,f +497,3020,0,1,f +497,30332,0,1,f +497,3069bpr0101,71,1,f +497,32000,0,4,f +497,32002,19,1,t +497,32002,19,3,f +497,32015,0,2,f +497,32039,0,6,f +497,32054,0,3,f +497,32062,4,3,f +497,32073,71,1,f +497,32123b,14,6,f +497,32123b,14,1,t +497,32140,0,5,f +497,32140,1,2,f +497,32198,19,1,f +497,32269,19,1,f +497,32270,0,3,f +497,32291,0,1,f +497,32316,0,2,f +497,32333,0,2,f +497,32449,0,4,f +497,32523,0,2,f +497,32523,4,1,f +497,32524,71,1,f +497,32525,0,2,f +497,3705,0,4,f +497,3713,4,1,f +497,3713,4,1,t +497,41239,71,2,f +497,41677,4,2,f +497,4185,71,2,f +497,42003,71,2,f +497,4274,71,1,t +497,4274,71,4,f +497,43093,1,7,f +497,44294,71,2,f +497,4519,71,5,f +497,48989,71,1,f +497,55615,71,2,f +497,59443,4,2,f +497,60484,0,1,f +497,61409,72,4,f +497,6239,72,1,f +497,64391,0,2,f +497,64393,0,1,f +497,64681,0,1,f +497,64683,0,2,f +497,6536,72,1,f +497,6558,1,15,f +497,6587,28,2,f +497,75c12,179,2,f +497,75c23,179,1,t +497,75c23,179,1,f +497,78c09,0,2,f +497,87082,71,1,f +497,87083,72,1,f +497,99773,72,4,f +498,298c02,0,2,f +498,3004,15,1,f +498,3004p18,15,1,f +498,3020,0,1,f +498,3020,15,1,f +498,3024,33,2,f +498,3039p12,0,1,f +498,3069bpb001,15,4,f +498,3464,47,4,f +498,3626apr0001,14,2,f +498,3641,0,4,f +498,3842b,15,2,f +498,4480c01,15,2,f +498,4861,15,1,f +498,4864a,41,2,f +498,6141,46,2,f +498,6141,36,2,f +498,970c00,0,2,f +498,973pb0079c01,0,2,f +499,122c01,7,2,f +499,270c02,0,1,f +499,3001a,0,1,f +499,3004,0,2,f +499,3010,0,2,f +499,3020,0,1,f +499,3021,14,3,f +499,3021,0,2,f +499,3022,0,3,f +499,3023,0,6,f +499,3023,14,2,f +499,3024,4,4,f +499,3024,0,2,f +499,3028,7,1,f +499,3031,7,1,f +499,3034,15,2,f +499,3034,0,1,f +499,3035,0,2,f +499,3039,0,1,f +499,3039,47,1,f +499,3040b,0,6,f +499,3068b,7,2,f +499,3149c01,7,1,f +499,3186,0,2,f +499,3228a,1,4,f +499,3359,0,2,f +499,3488,0,6,f +499,3622,0,2,f +499,3624,4,1,f +499,3626apr0001,14,2,f +499,3633,4,6,f +499,3633,7,6,f +499,3641,0,4,f +499,3660,0,1,f +499,3710,0,4,f +499,3787,14,2,f +499,3795,14,2,f +499,3833,14,1,f +499,3840,14,1,f +499,3900,7,1,f +499,970c00,0,1,f +499,970c00,1,1,f +499,973c07,1,1,f +499,973p18c01,1,1,f +501,2570,70,1,f +501,3626bpr0496,0,1,f +501,59230,0,2,f +501,59230,0,1,t +501,60115,0,1,f +501,6266,0,2,f +502,12939,4,4,f +502,2465,15,2,f +502,3001,4,1,f +502,3001,2,1,f +502,3001,14,1,f +502,3001,15,2,f +502,3002,14,1,f +502,3002,1,1,f +502,3003,1,1,f +502,3003,14,2,f +502,3003,4,2,f +502,3003,15,1,f +502,3004,15,4,f +502,3004,0,4,f +502,3004,2,1,f +502,3004,25,8,f +502,3004,14,2,f +502,3004,1,3,f +502,3005,4,2,f +502,3005,15,5,f +502,3005,25,4,f +502,3005,0,1,f +502,30089,0,1,f +502,3009,15,2,f +502,3022,15,1,f +502,3022,1,2,f +502,3023,4,2,f +502,3027,1,1,f +502,3031,2,2,f +502,3034,2,6,f +502,3036,1,2,f +502,3039,2,2,f +502,3040b,15,1,f +502,3040b,0,1,f +502,3040b,4,1,f +502,3062b,15,8,f +502,3062b,2,7,f +502,3062b,4,2,f +502,3622,15,2,f +502,3622,0,2,f +502,3626cpr0499,14,1,f +502,3648b,72,1,f +502,3649,71,1,f +502,3659,15,4,f +502,3700,71,2,f +502,3749,19,2,f +502,3942c,1,1,f +502,3942c,15,1,f +502,3957a,1,2,f +502,4286,14,1,f +502,4460b,1,2,f +502,4495b,2,1,f +502,4495b,4,1,f +502,86035,4,1,f +502,970c00,1,1,f +502,973pr1580c01,15,1,f +503,3068bpr0142,15,1,f +503,3068bpr0143,15,1,f +503,3068bpr0144,15,1,f +503,3068bpr0145,15,1,f +503,3068bpr0148,15,1,f +503,3068bpr0163,15,1,f +503,64776pat0001,0,1,f +504,2847c01,7,1,f +505,10173,1000,2,f +505,12825,297,2,f +505,12825,72,34,f +505,12825,297,1,t +505,15207,70,1,f +505,2343,47,2,f +505,2357,71,22,f +505,2419,72,4,f +505,2420,19,4,f +505,2420,0,2,f +505,2420,70,1,f +505,2420,71,12,f +505,2431,71,18,f +505,2431,70,4,f +505,2431,308,8,f +505,2431pr0060,70,6,f +505,2432,0,6,f +505,2449,71,2,f +505,2453a,378,15,f +505,2456,71,9,f +505,2489,308,1,f +505,2540,71,35,f +505,2540,0,29,f +505,2561,70,1,f +505,298c02,0,1,t +505,298c02,0,1,f +505,3001,70,10,f +505,3001,71,13,f +505,3002,71,13,f +505,3003,19,2,f +505,3003,71,20,f +505,3003,70,8,f +505,3004,15,7,f +505,3004,71,18,f +505,3004,378,74,f +505,3005,71,47,f +505,3005,70,28,f +505,3005,15,2,f +505,3005,378,94,f +505,30055,0,4,f +505,30055,70,3,f +505,3006,71,2,f +505,3008,70,2,f +505,3009,70,1,f +505,3009,378,56,f +505,3010,378,42,f +505,3010,71,12,f +505,30103,0,1,f +505,30115,2,1,f +505,30126,72,1,t +505,30126,72,1,f +505,30136,70,54,f +505,30136,71,59,f +505,30145,71,1,f +505,30150,70,1,f +505,30151a,47,2,f +505,30172,72,1,f +505,30176,2,2,f +505,3020,0,13,f +505,3020,70,3,f +505,3020,72,2,f +505,3020,71,15,f +505,3021,71,4,f +505,3021,70,4,f +505,3023,70,1,f +505,3023,14,8,f +505,3023,15,2,f +505,3023,378,20,f +505,3023,72,2,f +505,30237a,71,8,f +505,30238,0,1,f +505,3024,70,2,f +505,3024,71,2,t +505,3024,71,14,f +505,3024,70,1,t +505,3032,70,1,f +505,3033,71,3,f +505,3034,71,11,f +505,3034,0,1,f +505,3035,71,4,f +505,3036,0,3,f +505,3036,71,8,f +505,3037,0,12,f +505,30374,0,8,f +505,3038,0,14,f +505,3040b,0,10,f +505,3045,0,12,f +505,3046a,0,2,f +505,3048c,0,24,f +505,3062b,71,37,f +505,3062b,47,1,f +505,3062bpr0001,320,1,f +505,3068b,71,6,f +505,3068b,70,2,f +505,3068b,19,2,f +505,3069b,71,31,f +505,3069b,70,1,f +505,3069bpr0055,15,1,f +505,3070b,71,4,f +505,3070b,71,1,t +505,3070b,0,3,t +505,3070b,15,1,t +505,3070b,70,4,f +505,3070b,0,34,f +505,3070b,15,2,f +505,3070b,70,1,t +505,32028,15,7,f +505,32062,4,1,f +505,3245c,71,46,f +505,3460,70,15,f +505,3460,71,1,f +505,3623,71,5,f +505,3623,0,1,f +505,3626c,0,2,f +505,3626c,47,4,f +505,3626cpr0895,15,1,f +505,3626cpr1013,71,5,f +505,3626cpr1015,1000,1,f +505,3626cpr1037,1000,1,f +505,3626cpr1039,71,1,f +505,3633,0,1,f +505,3665,378,4,f +505,3665,71,90,f +505,3666,70,14,f +505,3666,71,6,f +505,3666,0,14,f +505,3666,15,2,f +505,3678bpr0033,320,1,f +505,3684,0,49,f +505,3685,0,18,f +505,3705,0,1,f +505,3710,70,5,f +505,3710,0,25,f +505,3794b,70,8,f +505,3794b,0,1,f +505,3795,0,1,f +505,3795,70,7,f +505,3795,15,1,f +505,3795,71,4,f +505,3830,15,1,f +505,3830,71,4,f +505,3831,72,5,f +505,3832,71,10,f +505,3878,0,1,f +505,3898,15,1,f +505,3937,72,1,f +505,3958,0,2,f +505,4032a,308,6,f +505,4081b,71,20,f +505,4150,0,2,f +505,41539,0,2,f +505,42446,70,1,f +505,42448,0,2,f +505,42450,0,1,f +505,4282,72,3,f +505,4341,0,1,f +505,4345b,15,1,f +505,4346,15,1,f +505,43888,71,20,f +505,4460b,0,6,f +505,4503,80,1,f +505,4528,179,1,f +505,4529,0,1,f +505,4599b,15,2,f +505,4738a,70,1,f +505,4739a,70,1,f +505,48336,0,2,f +505,48729b,0,38,f +505,48729b,0,3,t +505,54200,70,4,f +505,54200,71,7,f +505,54200,70,1,t +505,54200,71,1,t +505,58380,70,1,f +505,59443,0,1,f +505,59900,0,23,f +505,59900,33,1,f +505,59900,72,2,f +505,59900,70,8,f +505,60478,0,1,f +505,60479,71,1,f +505,60479,308,15,f +505,60592,19,29,f +505,60596,19,2,f +505,60601,47,9,f +505,60623,0,2,f +505,6064,28,2,f +505,60800a,70,4,f +505,61252,72,1,f +505,6134,71,1,f +505,6141,70,1,t +505,6141,71,46,f +505,6141,0,4,t +505,6141,0,58,f +505,6141,70,11,f +505,6141,71,4,t +505,63965,0,6,f +505,64644,308,8,f +505,64644,297,2,f +505,64647,288,1,f +505,64647,288,1,t +505,64798,0,1,f +505,64951,70,1,f +505,6541,72,1,f +505,6636,71,16,f +505,6636,70,18,f +505,73983,72,4,f +505,73983,71,1,f +505,87079,70,3,f +505,87087,378,9,f +505,87087,15,2,f +505,87087,71,28,f +505,87552,0,2,f +505,87580,15,2,f +505,87580,0,2,f +505,87580,70,1,f +505,90981,72,1,f +505,92099,72,1,f +505,92107,72,1,f +505,92438,72,5,f +505,92950,15,1,f +505,92950,71,3,f +505,93061,15,4,f +505,93061,15,1,t +505,93160,15,1,f +505,93556pr0002,71,1,f +505,95225,0,1,f +505,95228,40,3,f +505,95228pr0001,47,1,f +505,95229,0,2,f +505,96874,25,1,t +505,970c00,72,1,f +505,970c00,0,1,f +505,970c00pr0363,0,1,f +505,973c09,15,2,f +505,973pr2100c01,0,1,f +505,973pr2124c01,320,1,f +505,973pr2129c01,0,1,f +505,973pr2141c01,15,1,f +505,98138,179,3,f +505,98138,179,1,t +505,98283,28,38,f +505,98283,71,29,f +506,2335,15,1,f +506,2420,0,2,f +506,2431,0,2,f +506,2436,15,1,f +506,2445,72,2,f +506,2447,36,1,t +506,2447,40,1,t +506,2450,27,2,f +506,2456,15,1,f +506,2736,71,1,f +506,3002,71,1,f +506,3003,15,1,f +506,3003,72,2,f +506,3004,0,2,f +506,3004,71,1,f +506,3008,0,1,f +506,3008,15,1,f +506,3009,0,2,f +506,30192,72,4,f +506,3020,14,2,f +506,3020,0,2,f +506,3020,4,1,f +506,3021,15,1,f +506,3022,4,3,f +506,3022,15,2,f +506,3023,15,2,f +506,3023,4,4,f +506,3023,27,6,f +506,3024,46,2,f +506,3024,36,4,f +506,3031,0,4,f +506,3034,15,1,f +506,3036,15,1,f +506,3036,0,1,f +506,3039,15,1,f +506,3062b,72,2,f +506,30648,0,8,f +506,3068b,0,2,f +506,3068b,15,1,f +506,3069b,15,2,f +506,3070b,4,1,t +506,3070b,4,2,f +506,32000,0,4,f +506,32002,72,1,f +506,32002,72,1,t +506,32013,71,2,f +506,32013,0,1,f +506,32014,0,1,f +506,32062,4,2,f +506,32073,71,2,f +506,32123b,71,2,t +506,32123b,71,4,f +506,32524,4,1,f +506,3460,27,1,f +506,3460,0,5,f +506,3623,4,6,f +506,3623,27,4,f +506,3647,72,4,f +506,3660,0,5,f +506,3665,0,6,f +506,3666,0,1,f +506,3700,72,2,f +506,3701,0,3,f +506,3703,0,2,f +506,3705,0,3,f +506,3710,0,1,f +506,3710,4,2,f +506,3713,71,2,t +506,3713,71,8,f +506,3737,0,4,f +506,3794b,15,4,f +506,3795,0,3,f +506,3829c01,4,1,f +506,3829c01,71,1,f +506,3957a,15,1,f +506,41677,15,1,f +506,41769,15,5,f +506,41770,15,5,f +506,42003,4,2,f +506,4286,27,2,f +506,4286,0,2,f +506,43722,27,2,f +506,43722,0,2,f +506,43723,0,2,f +506,43723,27,2,f +506,44567a,0,2,f +506,44661,0,2,f +506,44675,71,1,f +506,4510,0,1,f +506,4519,71,2,f +506,45590,0,1,f +506,4588,72,2,f +506,4589,4,2,f +506,51739,15,1,f +506,54200,40,1,t +506,54200,40,2,f +506,55982,71,4,f +506,55982,0,4,f +506,58827,72,2,f +506,59426,72,2,f +506,60477,0,2,f +506,6087,0,2,f +506,61072,135,4,f +506,6117,72,2,f +506,61409,27,2,f +506,61409,4,2,f +506,6141,72,2,f +506,6141,34,2,f +506,6141,34,1,t +506,6141,36,1,t +506,6141,72,1,t +506,6141,36,2,f +506,61678,4,6,f +506,61678,15,2,f +506,62360,47,1,f +506,62361,4,4,f +506,63864,0,2,f +506,6536,0,2,f +506,6558,1,1,f +506,6628,0,1,f +506,6632,0,2,f +506,6632,72,2,f +506,6636,15,1,f +506,87087,0,2,f +506,88930,0,1,f +506,89801,80,1,f +508,1,15,1,f +508,2,15,1,f +508,3,4,2,f +508,3005,4,10,f +508,3010,15,4,f +508,3030,15,1,f +508,3031,4,1,f +508,3062a,47,2,f +508,3068a,15,14,f +508,3068a,4,4,f +508,3070a,1,4,f +508,837,15,2,f +508,838,4,1,f +508,838,15,2,f +508,839,15,1,f +508,840c01,15,1,f +509,3022,484,2,f +509,3069b,29,2,f +509,4865b,29,2,f +509,59900,4,8,f +511,2431,288,4,f +511,2436,0,1,f +511,2453a,19,6,f +511,2454a,19,2,f +511,2456,19,3,f +511,3003,19,5,f +511,3004,19,2,f +511,3004,28,13,f +511,30044,70,6,f +511,30046,0,6,f +511,3005,33,1,f +511,30055,70,2,f +511,30056,70,2,f +511,3009,84,1,f +511,3009,72,6,f +511,30106,47,1,f +511,30115,2,1,f +511,30136,19,16,f +511,30153,41,1,f +511,3020,70,2,f +511,3021,72,4,f +511,3022,72,2,f +511,3023,72,4,f +511,3023,28,6,f +511,3023,70,1,f +511,3032,72,3,f +511,3034,72,1,f +511,3036,72,3,f +511,30367b,71,1,f +511,30374,0,2,f +511,30374,70,4,f +511,30377,72,1,t +511,30377,72,2,f +511,30381,0,2,f +511,3039,70,1,f +511,3039,378,12,f +511,3040b,28,12,f +511,3040b,72,4,f +511,3040b,19,6,f +511,3045,378,4,f +511,3048c,378,2,f +511,30526,19,4,f +511,30608,70,1,f +511,3062b,19,14,f +511,3062b,70,10,f +511,3069b,72,4,f +511,3069b,14,4,f +511,3069b,320,4,f +511,32000,19,6,f +511,32073,71,1,f +511,3307,19,4,f +511,33215,378,2,f +511,3622,19,2,f +511,3623,320,2,f +511,3626b,1,1,f +511,3626bpr0703,78,1,f +511,3626bpr0704,78,1,f +511,3626bpr0719,72,1,f +511,3626bpr0895,15,1,f +511,3626cpr0858,78,1,f +511,3626cpr0859,78,1,f +511,3626cpr0860,78,1,f +511,3626cpr0861,78,1,f +511,3659,19,11,f +511,3660,72,4,f +511,3660,19,2,f +511,3666,288,2,f +511,3666,70,1,f +511,3678bpr0026a,28,1,f +511,3679,71,1,f +511,3680,71,1,f +511,3700,15,2,f +511,3710,70,5,f +511,3710,72,6,f +511,3713,4,1,t +511,3713,4,2,f +511,3794a,70,2,f +511,3795,15,2,f +511,3830,72,2,f +511,3831,72,2,f +511,3899,4,1,f +511,3899,14,1,f +511,3937,378,1,f +511,3941,19,4,f +511,3942c,378,6,f +511,40233,0,1,f +511,40239,19,1,f +511,4032a,19,3,f +511,4032a,15,1,f +511,4079b,70,1,f +511,4085c,72,4,f +511,41334,72,1,f +511,4150,15,2,f +511,4162,72,2,f +511,41669,57,3,f +511,4287,84,2,f +511,4332,70,1,f +511,43337,19,7,f +511,43751,484,1,f +511,43898,47,1,f +511,4460b,72,24,f +511,4510,72,2,f +511,48457,72,1,f +511,4867stk01,9999,1,t +511,50231,0,1,f +511,54200,288,8,f +511,54200,70,4,f +511,54200,288,2,t +511,54200,70,1,t +511,55013,72,1,f +511,59443,71,1,f +511,59900,40,1,f +511,59900,70,2,f +511,59900,378,12,f +511,60115,72,1,f +511,60474,71,1,f +511,6111,72,2,f +511,61287pr0006,28,1,f +511,61287pr0007,28,1,f +511,6134,71,1,f +511,6141,72,1,t +511,6141,72,1,f +511,6141,15,1,t +511,6141,297,1,t +511,6141,27,2,t +511,6141,297,6,f +511,6141,27,8,f +511,6141,15,1,f +511,6231,19,2,f +511,62462,4,1,f +511,62810,308,1,f +511,64647,15,1,f +511,64647,15,1,t +511,73983,19,2,f +511,73983,71,4,f +511,85984,72,10,f +511,87079,0,2,f +511,87087,19,12,f +511,87421,19,6,f +511,87552,70,1,f +511,89523,72,8,f +511,90460,28,1,f +511,92099,28,1,f +511,92280,0,2,f +511,92593,71,2,f +511,92865,0,1,f +511,92947,71,1,f +511,92950,19,2,f +511,970c00,0,4,f +511,970c00,28,1,f +511,973pr1671c01,72,1,f +511,973pr1672c01,0,1,f +511,973pr1692c01,72,1,f +511,973pr1862c01,72,1,f +511,973pr1865c01,28,1,f +511,973pr1917c01,28,1,f +512,2412b,72,2,f +512,2555,71,1,f +512,3062b,14,1,f +512,3062b,4,2,f +512,33057,484,1,f +512,3626bpr0270,14,1,f +512,3898,15,1,f +512,3960,15,1,f +512,4085c,71,2,f +512,4345b,15,1,f +512,4346,47,1,f +512,44728,15,1,f +512,4599a,4,1,f +512,4599a,14,1,f +512,6141,182,2,f +512,6141,182,1,t +512,63965,70,1,f +512,970c00,0,1,f +512,973pr1196c01,15,1,f +516,3001a,0,4,f +516,3003,0,2,f +516,3004,0,6,f +516,3005,0,6,f +516,3009,0,4,f +516,3009,47,2,f +516,3010,0,10,f +516,3020,0,1,f +516,3020,4,2,f +516,3020,7,1,f +516,3021,7,2,f +516,3021,0,4,f +516,3022,7,1,f +516,3023,0,3,f +516,3023,7,20,f +516,3023,47,2,f +516,3023,14,3,f +516,3024,7,6,f +516,3024,0,4,f +516,3027,7,1,f +516,3062a,47,2,f +516,3062a,14,2,f +516,3062a,0,6,f +516,3087bc01,4,2,f +516,35,4,5,f +516,36,7,5,f +516,7049b,15,5,f +517,3626bpb0103,14,1,f +517,4530,6,1,f +517,970c00,0,1,f +517,973pb0005c01,15,1,f +518,2336,25,1,f +518,2412b,1,1,f +518,2412b,15,1,f +518,2440,0,2,f +518,2445,7,1,f +518,2460,1,1,f +518,2540,1,1,f +518,2654,7,1,f +518,2743,0,2,f +518,2877,0,1,f +518,3004,1,1,f +518,3004,0,1,f +518,3008,0,2,f +518,30082,8,1,f +518,3010,0,2,f +518,30157,7,3,f +518,30162,8,1,f +518,30193,8,1,f +518,3020,4,1,f +518,3020,1,1,f +518,3021,1,2,f +518,3022,14,1,f +518,3023,7,3,f +518,3023,42,3,f +518,3023,1,2,f +518,30238,42,1,f +518,3024,36,2,f +518,30284,14,2,f +518,30285,15,6,f +518,30286,41,1,f +518,30287p01,1,1,f +518,3029,7,1,f +518,30322,1,1,f +518,3034,0,1,f +518,30342,41,1,f +518,3040b,25,4,f +518,3068b,1,1,f +518,3069bp68,15,1,f +518,3069bpr0101,7,1,f +518,32059,25,1,f +518,32086,33,1,f +518,3613,15,1,f +518,3614b,7,1,f +518,3622,25,2,f +518,3623,1,2,f +518,3626bp7b,14,1,f +518,3626bpx88,14,1,f +518,3794a,1,1,f +518,3795,0,1,f +518,3829c01,7,1,f +518,3832,25,2,f +518,3837,8,1,f +518,3962b,8,1,f +518,4081b,15,2,f +518,4083,0,2,f +518,4213,0,1,f +518,4485,2,1,f +518,4599a,0,1,f +518,4625,0,1,f +518,6014a,15,4,f +518,6015,0,4,f +518,6019,15,2,f +518,6048a,0,3,f +518,6134,1,2,f +518,6141,42,4,f +518,6141,42,1,t +518,6141,36,1,t +518,6141,36,2,f +518,6157,0,2,f +518,6217,1,2,f +518,6573stk01,9999,1,t +518,71965,0,2,f +518,75535,15,3,f +518,970c00,0,1,f +518,970x026,2,1,f +518,973p7bc01,2,1,f +518,973px140c01,1,1,f +521,298c02,4,1,f +521,298c02,4,1,t +521,3005,73,27,f +521,3005,25,9,f +521,3005,70,18,f +521,3005,2,37,f +521,3005,15,41,f +521,3005,14,19,f +521,3005,27,24,f +521,3005,4,40,f +521,3005,1,34,f +521,3005,0,19,f +521,3040b,4,2,f +521,3176,1,1,f +521,3623,4,2,f +521,3867,47,1,f +521,4032a,0,2,f +521,4070,72,2,f +521,4495b,4,1,f +521,6141,46,1,t +521,6141,46,2,f +521,6141,0,2,f +521,6141,4,1,t +521,6141,0,1,t +521,6141,4,2,f +523,2412b,71,49,f +523,2431,320,13,f +523,2432,0,4,f +523,2436,0,4,f +523,2444,72,12,f +523,2445,71,10,f +523,2450,72,8,f +523,2476a,28,12,f +523,2555,72,18,f +523,2653,71,8,f +523,2654,19,22,f +523,2730,0,8,f +523,2780,0,44,f +523,2780,0,1,t +523,2817,71,8,f +523,3001,71,6,f +523,3009,71,6,f +523,3010,72,4,f +523,3020,72,25,f +523,3021,71,37,f +523,3023,0,22,f +523,3023,71,30,f +523,3030,72,3,f +523,3032,72,12,f +523,3033,72,5,f +523,3034,71,18,f +523,3035,71,9,f +523,30355,71,6,f +523,30356,71,6,f +523,3036,71,2,f +523,30367b,71,1,f +523,30503,71,8,f +523,30552,0,6,f +523,3062b,272,15,f +523,3068b,72,13,f +523,32000,0,4,f +523,32013,72,4,f +523,32054,4,16,f +523,32059,72,4,f +523,32062,4,3,f +523,32064a,71,1,f +523,32072,14,3,f +523,32073,71,1,f +523,32123b,71,1,t +523,32123b,71,12,f +523,32140,0,4,f +523,32184,0,7,f +523,32316,71,6,f +523,32524,0,6,f +523,32557,4,8,f +523,3297,71,2,f +523,33299a,0,15,f +523,3455,0,1,f +523,3460,72,4,f +523,3623,19,4,f +523,3626bpr0525,78,4,f +523,3626bpr0581,36,1,f +523,3626bpr0583,78,1,f +523,3660,72,12,f +523,3665,0,2,f +523,3666,71,21,f +523,3666,320,7,f +523,3678b,72,7,f +523,3679,71,9,f +523,3680,0,9,f +523,3701,19,2,f +523,3705,0,12,f +523,3706,0,4,f +523,3710,72,15,f +523,3747b,1,1,f +523,3794a,320,25,f +523,3795,72,14,f +523,3894,72,10,f +523,3895,72,8,f +523,3937,72,3,f +523,3941,41,5,f +523,3960,71,1,f +523,4032a,0,10,f +523,40490,71,2,f +523,4070,0,2,f +523,4079,288,1,f +523,41239,72,4,f +523,4150pr0022,71,2,f +523,4162,320,27,f +523,41678,71,1,f +523,41769,72,7,f +523,41770,72,7,f +523,41862,71,1,f +523,4274,1,1,t +523,4274,1,5,f +523,43093,1,41,f +523,43722,71,3,f +523,43723,71,3,f +523,44301a,4,10,f +523,44302a,0,16,f +523,44568,71,2,f +523,44570,71,2,f +523,4460b,0,2,f +523,44728,19,7,f +523,4510,0,2,f +523,4519,71,1,f +523,4623,4,2,f +523,47457,71,17,f +523,48183,72,6,f +523,48496,0,4,f +523,4854,0,1,f +523,50304,72,4,f +523,50305,72,4,f +523,50950,0,2,f +523,54383,71,15,f +523,54384,71,15,f +523,55982,71,5,f +523,56145,71,4,f +523,57899,0,2,f +523,59443,72,10,f +523,59900,272,5,f +523,59900,4,7,f +523,60208,72,8,f +523,60470a,4,3,f +523,60474,72,1,f +523,60478,19,2,f +523,60483,0,1,f +523,60849,71,16,f +523,6106,71,12,f +523,61184,71,7,f +523,61189pr0001,15,1,f +523,61189pr0006,15,1,f +523,6134,71,3,f +523,6141,41,2,t +523,6141,297,1,t +523,6141,41,24,f +523,6141,297,10,f +523,61485,0,1,f +523,61780,72,1,f +523,6191,320,1,f +523,62462,71,6,f +523,6259,72,2,f +523,64798,19,1,f +523,6536,1,1,f +523,6541,19,4,f +523,6558,1,12,f +523,6587,72,12,f +523,6629,71,8,f +523,6632,71,2,f +523,6636,72,4,f +523,6881b,71,3,f +523,73983,72,15,f +523,8039stk01,9999,1,t +523,86301,320,1,f +523,86408pr0001a,1,2,f +523,970c00,4,1,f +523,970x026,1,2,f +523,970x026,15,2,f +523,973pr1389c01,15,1,f +523,973pr1451c01,15,1,f +523,973pr1476c01,1,2,f +523,973pr1502c01,4,1,f +526,3001,4,1,f +526,3022,4,1,f +526,3023,2,1,f +526,3039,4,2,f +526,3660,4,2,f +526,6141,14,1,f +531,3081bc01,4,15,f +532,2431,6,2,f +532,2431ps1,8,4,f +532,2450,6,2,f +532,3002,7,1,f +532,3003,8,1,f +532,3004,0,2,f +532,3010,0,4,f +532,3020,6,2,f +532,3021,6,5,f +532,3021,19,3,f +532,3022,7,1,f +532,3024,36,2,f +532,3024,36,1,t +532,3031,0,4,f +532,30357,19,2,f +532,30364,8,2,f +532,30365,7,2,f +532,30382,6,4,f +532,3068b,8,2,f +532,3069bpr0086,7,1,t +532,3069bpr0086,7,1,f +532,3660,8,3,f +532,3700,6,1,f +532,3795,8,1,f +532,3956,6,4,f +532,4070,8,2,f +532,4859,6,1,f +532,6069ps3,8,1,f +532,6091,19,2,f +532,6232,19,1,f +533,4215b,47,25,f +537,bwindow02,14,1,f +537,bwindow02,4,1,f +537,bwindow02,2,1,f +537,bwindow02,1,1,f +537,bwindow02,15,3,f +538,3624,0,1,f +538,3626bpr0314,14,1,f +538,3900,15,1,t +538,3900,15,1,f +538,6141,36,2,t +538,6141,36,1,f +538,970c00,72,1,f +538,973pr1183c01,25,1,f +539,2444,0,2,f +539,2780,0,14,f +539,2907,7,3,f +539,298c02,4,1,t +539,298c02,4,2,f +539,3022,0,2,f +539,32001,0,2,f +539,32002,8,4,f +539,32039,0,4,f +539,32054,4,2,f +539,32062,0,6,f +539,32063,0,4,f +539,32064b,0,4,f +539,32073,0,1,f +539,32123b,7,12,f +539,32137,47,3,f +539,32138,4,2,f +539,32140,0,4,f +539,32271,0,4,f +539,32291,47,2,f +539,32316,0,2,f +539,32348,0,8,f +539,32526,0,2,f +539,32561c01,33,1,f +539,3641,0,4,f +539,3648b,4,2,f +539,3705,0,4,f +539,3706,0,1,f +539,3713,7,2,f +539,3737,0,3,f +539,3749,7,12,f +539,3895,0,2,f +539,4142877,9999,1,f +539,4274,7,2,f +539,4716,216,2,f +539,6538b,7,1,f +539,6538b,0,2,f +539,6558,0,4,f +539,6588,47,2,f +539,75535,0,1,f +539,75c10,0,4,f +540,2412b,0,5,f +540,2412b,71,6,f +540,2420,14,4,f +540,2431,14,4,f +540,2431,72,2,f +540,2436,71,1,f +540,2436,14,2,f +540,2445,72,1,f +540,2458,71,4,f +540,298c02,71,1,t +540,298c02,71,1,f +540,3004,0,2,f +540,3009,14,1,f +540,3010,14,2,f +540,3020,72,2,f +540,3020,14,2,f +540,3021,14,2,f +540,3022,0,4,f +540,3023,14,5,f +540,3023,72,9,f +540,3023,320,2,f +540,3024,14,8,f +540,3024,320,2,f +540,3031,14,1,f +540,3034,14,1,f +540,3035,72,3,f +540,30414,72,2,f +540,30648,0,4,f +540,30663,0,1,f +540,3068b,320,2,f +540,3069b,72,2,f +540,3070b,14,4,f +540,3070b,14,1,t +540,32028,0,2,f +540,3298,14,1,f +540,3460,14,2,f +540,3623,72,4,f +540,3623,14,4,f +540,3666,14,4,f +540,3666,72,3,f +540,3666,320,2,f +540,3710,14,1,f +540,3710,0,4,f +540,3794a,71,1,f +540,3794a,320,2,f +540,3795,14,1,f +540,4070,14,8,f +540,4081b,0,2,f +540,4081b,14,2,f +540,41769,14,1,f +540,41770,14,1,f +540,43722,14,1,f +540,43723,14,1,f +540,48336,0,4,f +540,48336,71,1,f +540,50950,72,2,f +540,50950,14,2,f +540,54200,72,1,t +540,54200,14,1,t +540,54200,14,18,f +540,54200,72,4,f +540,54200,40,12,f +540,54200,40,1,t +540,54200,0,1,t +540,54200,0,4,f +540,55981,71,4,f +540,58181,40,1,f +540,6019,14,6,f +540,6141,36,1,t +540,6141,36,4,f +540,6141,80,2,f +540,6141,0,1,t +540,6141,0,4,f +541,10113,0,1,f +541,10314,0,1,f +541,11211,15,1,f +541,11476,71,2,f +541,14769pr1050,14,2,f +541,15071,0,1,f +541,15571,15,2,f +541,15573,1,2,f +541,16968,71,1,f +541,18394pat0002,1003,1,f +541,19220,0,1,f +541,21845,0,1,f +541,2412b,71,4,f +541,28779,0,2,f +541,28925,0,1,f +541,3002,71,1,f +541,3003,72,1,f +541,3004,1,1,f +541,3009,72,1,f +541,30153,41,2,f +541,3022,4,1,f +541,3023,40,1,f +541,3031,15,1,f +541,30374,41,1,f +541,3039,71,3,f +541,3039pr0014,0,1,f +541,30602,15,1,f +541,3626cpr0896,78,1,f +541,3626cpr6175942,15,1,f +541,3829c01,1,1,f +541,4286,0,2,f +541,43713,1,1,f +541,44728,0,1,f +541,47847,41,1,f +541,59900,15,2,f +541,6126b,182,2,f +541,61409,0,2,f +541,87079pr0090,0,1,f +541,87752,40,1,f +541,87754,71,1,f +541,89159,41,1,f +541,92280,0,2,f +541,970c00,0,2,f +541,973pr3683,72,1,f +541,973pr6174029,0,1,f +541,98721,0,1,f +542,x543,7,1,f +544,11096,297,2,f +544,14137,34,2,f +544,14417,72,2,f +544,14704,71,2,f +544,14769pr0002,15,1,f +544,15068,4,1,f +544,15208,15,2,f +544,15209,15,2,f +544,15397,15,1,f +544,15571,297,1,f +544,15571,72,2,f +544,15573,15,1,f +544,15573,4,1,f +544,15573,19,2,f +544,15623pr0003,71,1,f +544,15626pr0005,4,1,f +544,16770,15,4,f +544,18649,0,1,f +544,18653,71,4,f +544,19000,27,1,f +544,22888,19,1,f +544,24054,70,2,f +544,2412b,4,4,f +544,2412b,297,2,f +544,2412b,57,4,f +544,2431,19,1,f +544,2432,70,2,f +544,2458,4,1,f +544,2460,0,1,f +544,2479,0,1,f +544,2540,4,1,f +544,3001,1,1,f +544,3001,0,1,f +544,3002,72,2,f +544,3003,70,4,f +544,3003,4,1,f +544,30173b,0,1,f +544,3020,71,1,f +544,3020,0,1,f +544,3022,0,1,f +544,3023,46,1,f +544,30237b,1,1,f +544,30248,72,1,f +544,30293,57,1,f +544,30294,57,1,f +544,3031,4,1,f +544,3037,0,4,f +544,30383,71,2,f +544,30389c,0,2,f +544,30414,4,1,f +544,30602,288,2,f +544,3062b,0,3,f +544,3065,36,1,f +544,3065,35,1,f +544,3068b,19,4,f +544,3068b,0,1,f +544,3069bpr0101,71,1,f +544,32013,71,1,f +544,32124,70,1,f +544,32530,0,1,f +544,3298,72,1,f +544,3626cpr1366,14,1,f +544,3626cpr1367,14,1,f +544,3660,1,1,f +544,3710,73,1,f +544,3848,148,1,f +544,41535,297,2,f +544,4286,0,2,f +544,44567a,14,1,f +544,4460b,72,2,f +544,47753pr0007,0,1,f +544,48336,15,1,f +544,4865a,0,1,f +544,48723,70,1,f +544,50950,272,2,f +544,50950,288,2,f +544,52501,0,1,f +544,57906,33,2,f +544,59233pat0001,41,1,f +544,59900,179,4,f +544,59900,182,3,f +544,60169,71,1,f +544,60219,0,1,f +544,60470a,0,4,f +544,60471,71,1,f +544,60481,0,2,f +544,61072,179,2,f +544,6126b,182,3,f +544,61406pat0006,1,1,f +544,61409,0,2,f +544,64647,182,4,f +544,86208,72,2,f +544,90194,288,1,f +544,92474,47,1,f +544,93055,297,1,f +544,93273,27,1,f +544,93273,1,1,f +544,93273,0,1,f +544,970c00,2,1,f +544,970c00,1,1,f +544,970c00pr1011,27,1,f +544,973pr2474c01,1,1,f +544,973pr2475c01,2,1,f +544,973pr3259c01,27,1,f +544,98133pr0002,1,1,f +544,98133pr0005,2,1,f +544,98137,297,2,f +544,98139,148,2,f +545,2437,40,1,f +545,3003,0,2,f +545,3004,14,2,f +545,3004,4,1,f +545,30180,14,3,f +545,30254,0,1,f +545,30285,14,4,f +545,30322,1,4,f +545,30340,25,1,f +545,30358,0,2,f +545,30359a,8,1,f +545,30363,14,5,f +545,3039,14,2,f +545,3039,42,6,f +545,30391,0,4,f +545,30625,7,1,f +545,30626,8,1,f +545,3062b,42,8,f +545,30636c01,8,1,f +545,30639,8,1,f +545,30640,0,2,f +545,30640,7,2,f +545,30643,8,1,f +545,30645,0,3,f +545,30646a,14,6,f +545,30647,14,2,f +545,30649px1,40,1,f +545,30650pb03,40,1,f +545,30663,7,1,f +545,30663,0,1,f +545,3297px25,14,1,f +545,3298,4,1,f +545,3962b,8,1,f +545,4006,0,2,f +545,40996,42,2,f +545,4285b,42,1,f +545,4349,1,2,f +545,60169,7,1,f +545,6239px3,14,2,f +545,6583,7,3,f +545,71610,14,1,f +545,js003,9999,1,f +545,js010,9999,1,f +545,js015,9999,1,f +545,js017,9999,1,f +546,14418,71,2,f +546,14704,71,2,f +546,14769pr1044,15,1,f +546,15068,15,2,f +546,15208,0,1,f +546,15456,0,1,f +546,18970,15,1,f +546,22890,72,2,f +546,2921,0,2,f +546,3020,15,2,f +546,3022,0,3,f +546,3023,70,4,f +546,3023,15,4,f +546,30340,15,1,f +546,30350a,70,1,f +546,3070b,15,2,f +546,3070b,15,1,t +546,33291,10,2,f +546,33291,10,1,t +546,3660,70,1,f +546,4032a,15,2,f +546,4081b,15,1,f +546,44676,0,1,f +546,44728,15,2,f +546,4495b,4,1,f +546,4735,0,2,f +546,47457,4,2,f +546,60478,0,3,f +546,60752,179,1,f +546,62462,70,1,f +546,63868,308,2,f +546,6628,0,2,f +546,85984,4,2,f +546,85984,70,1,f +546,87087,15,4,f +546,98138,297,1,t +546,98138,297,2,f +546,98138pr0008,15,1,t +546,98138pr0008,15,1,f +546,99780,0,2,f +547,41879pr0007,1,1,f +547,87769pr0001,27,1,f +547,88646,0,1,f +547,973pr3328c01,1,1,f +549,2343,47,1,f +549,2529,1,4,f +549,3001,15,1,f +549,3001,4,1,f +549,3002,4,2,f +549,3002,15,2,f +549,3003,4,2,f +549,3003,14,2,f +549,3003,0,2,f +549,3003,15,2,f +549,3003,1,2,f +549,3004,14,4,f +549,3004,15,12,f +549,3004,1,4,f +549,3004,4,6,f +549,3004,0,2,f +549,3005,0,2,f +549,3005,4,4,f +549,3005,15,8,f +549,3005,14,4,f +549,3005,1,4,f +549,3005pe1,14,2,f +549,3009,4,2,f +549,3009,15,2,f +549,3009pb012,15,1,f +549,3010,4,2,f +549,3010,1,2,f +549,3010,14,2,f +549,3010,15,6,f +549,3020,4,4,f +549,3021,4,2,f +549,3022,4,2,f +549,3030,4,1,f +549,3032,4,1,f +549,3040b,4,2,f +549,3040b,14,2,f +549,3062b,1,4,f +549,3297,4,2,f +549,3298,4,2,f +549,3298p12,4,2,f +549,3299,4,1,f +549,3300,4,2,f +549,3622,4,2,f +549,3622,15,4,f +549,3622,14,2,f +549,3622,1,2,f +549,3633,14,2,f +549,3660,14,2,f +549,3660,4,2,f +549,3665,14,2,f +549,3665,4,2,f +549,3741,2,2,f +549,3742,14,4,f +549,3742,1,4,f +549,3795,4,2,f +549,3853,4,2,f +549,3861b,4,1,f +549,3865,10,1,f +549,3957a,15,1,f +549,3960p01,15,1,f +550,6821,15,1,f +551,3626bp06,14,1,f +551,4485,15,1,t +551,4485,15,1,f +551,970c00,15,1,f +551,973px131ac01,4,1,f +552,2950,0,1,f +552,2951,0,1,f +552,70496,0,1,f +554,3001,2,1,f +554,3020,2,1,f +554,3023,27,1,t +554,3023,27,4,f +554,3040b,2,4,f +554,3623,2,2,f +554,3660,2,1,f +554,3710,27,2,f +554,4070,71,2,f +554,4070,71,1,t +554,4286,2,2,f +554,4740,15,1,t +554,4740,15,2,f +554,54200,288,4,f +554,54200,288,1,t +554,6141,0,2,t +554,6141,0,4,f +554,73983,2,4,f +556,2412b,15,2,f +556,2412b,72,1,f +556,3024,19,2,f +556,3069b,71,1,f +556,3176,1,2,f +556,3710,71,1,f +556,3794b,72,2,f +556,4032a,71,1,f +556,4070,71,1,f +556,42446,72,2,f +556,4733,15,1,f +556,54200,71,1,f +556,54200,40,2,f +556,87087,72,1,f +557,2460,7,2,f +557,3001,0,4,f +557,3004,15,4,f +557,3006,7,12,f +557,3007,4,2,f +557,3009,15,4,f +557,3020,4,26,f +557,3020,2,2,f +557,3021,0,8,f +557,3022,7,4,f +557,3023,0,16,f +557,30488,7,2,f +557,30488c01,15,5,f +557,30488c01,0,5,f +557,30489,2,12,f +557,30493,0,2,f +557,3068b,2,46,f +557,3403c01,0,2,f +557,3626bp03,14,2,f +557,3626bpr0001,14,6,f +557,3626bpx101,14,2,f +557,3626bpx33,14,2,f +557,3678a,15,4,f +557,3700,7,4,f +557,3701,7,4,f +557,3795,15,14,f +557,3901,0,2,f +557,3901,6,4,f +557,3901,19,2,f +557,3957a,15,8,f +557,4176,15,20,f +557,4204,2,2,f +557,4282,15,2,f +557,4476b,15,4,f +557,4485,15,1,f +557,4485,1,1,f +557,4495b,4,4,f +557,4599a,4,4,f +557,6019,4,8,f +557,6636,15,2,f +557,72824p01,15,4,f +557,72824pr01,15,1,f +557,85543,15,2,t +557,85543,15,2,f +557,970c00,0,2,f +557,970c00,15,5,f +557,970c00,1,5,f +557,973pb0083c01,8,1,f +557,973pb0083c02,1,1,f +557,973pb0126c01,15,1,f +557,973pb0244c01,15,1,f +557,973pb0245c01,15,1,f +557,973pb0246c01,15,1,f +557,973pb0254c01,15,1,f +557,973pb0365c01,2,1,f +557,973pb0367c01,2,1,f +557,973pb0368c01,2,1,f +557,973pb0369c01,2,1,f +557,973pb0370c01,2,1,f +557,bb68,0,2,f +558,11215,71,2,f +558,15391,70,2,f +558,15392,72,2,f +558,15392,72,1,t +558,18789,70,1,f +558,18791,70,1,f +558,19729pr0001,308,1,f +558,19729pr0005,25,1,f +558,19729pr0006,2,1,f +558,19734,2,1,f +558,2431,70,1,f +558,2431,84,2,f +558,2456,15,5,f +558,2456,72,2,f +558,2456,19,1,f +558,2639,15,2,f +558,2921,84,1,f +558,3001,71,9,f +558,3001,72,1,f +558,3001,15,15,f +558,3001,19,3,f +558,3001,288,1,f +558,3001,70,12,f +558,3003,70,11,f +558,3003,320,1,f +558,3003,143,8,f +558,3003,15,21,f +558,3003,84,2,f +558,3003,33,1,f +558,3003,72,4,f +558,3003,34,3,f +558,3003,71,4,f +558,3004,288,8,f +558,3004,71,3,f +558,3004,84,3,f +558,3004,15,8,f +558,3004pr0014,84,2,f +558,3004pr0016,15,1,f +558,3005,84,5,f +558,3007,15,2,f +558,3010,15,1,f +558,30157,71,1,f +558,3020,2,2,f +558,3020,15,3,f +558,3020,70,1,f +558,3022,15,1,f +558,3022,71,2,f +558,3022,19,4,f +558,3023,46,2,f +558,3023,182,1,f +558,3024,46,1,t +558,3024,15,1,t +558,3024,71,1,t +558,3024,71,8,f +558,3024,182,2,f +558,3024,15,1,f +558,3024,46,2,f +558,3024,182,1,t +558,3029,1,1,f +558,3029,15,1,f +558,3034,19,1,f +558,3035,15,1,f +558,3036,15,2,f +558,3036,1,1,f +558,3039,33,4,f +558,3068b,73,7,f +558,3068b,15,5,f +558,3068bpr0236,84,1,f +558,3069b,15,3,f +558,3069b,2,2,f +558,3070b,15,1,t +558,3070b,15,1,f +558,3070bpr0150,15,1,f +558,3070bpr0150,15,1,t +558,3176,0,2,f +558,33291,70,8,f +558,3701,19,2,f +558,3710,70,2,f +558,3741,2,1,f +558,3794b,70,6,f +558,3795,2,1,f +558,3830,71,2,f +558,3830,15,1,f +558,3831,71,2,f +558,3831,84,1,f +558,3832,15,1,f +558,4032a,15,1,f +558,4032a,0,1,f +558,4070,15,2,f +558,41539,15,1,f +558,44728,2,4,f +558,4733,15,1,f +558,54200,182,1,t +558,54200,182,2,f +558,59900,182,2,f +558,6141,0,8,f +558,6141,33,1,t +558,6141,33,1,f +558,6141,0,1,t +558,6141,15,4,f +558,6141,15,1,t +558,6179,15,1,f +558,64644,308,2,f +558,87079,70,1,f +558,87079,15,1,f +558,87580,2,2,f +558,87580,71,4,f +558,87580,84,2,f +558,87580,15,28,f +558,87580,72,2,f +558,87580,320,1,f +558,91405,15,1,f +558,95343,71,1,f +558,95344,28,1,t +558,95344,28,1,f +558,970c00,85,1,f +558,973pr2819c01,321,1,f +558,98283,72,6,f +560,15443,70,1,f +560,3626cpb1101,14,1,f +560,970c00pr0289,212,1,f +560,973pr1957ac01,212,1,f +563,3020,4,1,f +563,3731,71,1,f +563,4600,0,2,f +563,4865a,4,2,f +563,50254,0,1,t +563,50254,0,4,f +563,6231,4,1,t +563,6231,4,4,f +563,63082,71,1,f +565,2352,4,2,f +565,3001,15,16,f +565,3001,14,16,f +565,3001,4,14,f +565,3001,1,14,f +565,3001,0,8,f +565,3001pr1,14,1,f +565,3002,0,4,f +565,3002,14,4,f +565,3002,1,4,f +565,3002,4,4,f +565,3002,15,4,f +565,3003,15,20,f +565,3003,1,18,f +565,3003,0,16,f +565,3003,4,14,f +565,3003,14,17,f +565,3003pe1,14,2,f +565,3006,4,2,f +565,3007,1,2,f +565,3007,14,2,f +565,3039,47,2,f +565,3137c01,0,2,f +565,3185,4,6,f +565,3471,2,1,f +565,3483,0,4,f +565,3596pb03,15,1,f +565,3641,0,4,f +565,4130,14,2,f +565,4131,4,2,f +565,4132,14,3,f +565,4133,4,3,f +565,4180c02,0,2,f +565,4202,4,1,f +565,4204,2,1,f +565,4727,2,1,f +565,4728,4,1,f +565,4728,14,1,f +565,4743,1,1,f +565,4744,14,1,f +565,bfp001,9999,1,f +565,bfp002,9999,1,f +566,3134,15,1,f +566,394ac48,15,1,f +566,x456c01,47,1,f +567,11090,0,1,f +567,11110pr0006,0,1,f +567,11126,321,1,f +567,11126,4,1,f +567,11127,41,12,f +567,11129pr0006,28,1,f +567,11767,72,2,f +567,11833,47,1,f +567,12825,0,1,f +567,15064,308,1,f +567,15074pr0001,179,1,f +567,15475pr0002,179,1,f +567,2540,72,2,f +567,2654,72,2,f +567,2780,0,4,f +567,3023,4,1,f +567,3023,72,1,f +567,3062b,41,1,f +567,3626cpr1293,70,1,f +567,3626cpr1321,0,1,f +567,3709,4,1,f +567,3747b,0,1,f +567,3957a,0,1,f +567,4032a,4,2,f +567,4588,72,1,f +567,4740,33,1,f +567,53451,4,4,f +567,59900,42,1,f +567,6117,72,1,f +567,6141,41,5,f +567,6141,42,3,f +567,63965,70,1,f +567,63965,0,1,f +567,64567,297,1,f +567,87747,15,1,f +567,87846,0,1,f +567,88072,0,2,f +567,970c00pr0570,0,1,f +567,970c00pr0586,0,1,f +567,973pr2481c01,0,1,f +567,973pr2533c01,0,1,f +567,98313,0,5,f +567,99780,0,1,f +570,2444,0,2,f +570,2736,71,2,f +570,2780,0,41,f +570,2780,0,1,t +570,2819,71,1,f +570,3068b,0,2,f +570,32002,72,1,t +570,32002,72,6,f +570,32005b,0,2,f +570,32009,0,4,f +570,32013,0,4,f +570,32017,71,6,f +570,32034,0,3,f +570,32039,0,4,f +570,32054,0,8,f +570,32062,4,4,f +570,32072,14,2,f +570,32073,71,6,f +570,32123b,71,1,t +570,32123b,71,15,f +570,32140,27,4,f +570,32140,71,3,f +570,32140,0,5,f +570,32184,71,2,f +570,32270,0,2,f +570,32271,0,1,f +570,32291,0,2,f +570,32316,0,2,f +570,32316,4,3,f +570,32348,0,4,f +570,32523,0,6,f +570,32524,27,2,f +570,32524,0,6,f +570,32526,0,2,f +570,32526,72,2,f +570,32526,71,1,f +570,3647,72,1,t +570,3647,72,3,f +570,3648b,72,3,f +570,3673,71,4,f +570,3673,71,1,t +570,3705,0,9,f +570,3706,0,5,f +570,3707,0,1,f +570,3713,71,1,t +570,3713,71,11,f +570,3749,19,3,f +570,41239,0,2,f +570,41669,47,2,f +570,41677,4,5,f +570,41678,0,1,f +570,4185,71,4,f +570,42003,71,1,f +570,43093,1,17,f +570,43857,0,1,f +570,44294,71,1,f +570,4519,71,14,f +570,4716,71,1,f +570,48989,71,6,f +570,55013,72,3,f +570,55976,0,2,f +570,56145,71,2,f +570,56908,71,2,f +570,58177,0,2,f +570,59426,72,2,f +570,59443,0,3,f +570,59443,14,1,f +570,59443,71,4,f +570,60483,71,4,f +570,60484,71,2,f +570,61070,27,1,f +570,61071,27,1,f +570,6141,36,2,f +570,6141,182,2,f +570,6141,36,1,t +570,6141,182,1,t +570,61480,0,2,f +570,61903,71,1,f +570,63869,71,4,f +570,64391,27,1,f +570,64683,27,1,f +570,6536,0,10,f +570,6553,0,2,f +570,6558,1,16,f +570,6587,28,3,f +570,6589,19,1,t +570,6589,19,4,f +570,6628,0,4,f +570,6632,0,3,f +570,6632,71,3,f +570,87082,71,3,f +570,87083,72,5,f +570,87408,0,2,f +570,87761,0,1,f +570,99773,71,2,f +571,2357,15,2,f +571,2357,0,2,f +571,2357,14,2,f +571,2420,15,4,f +571,2423,2,1,f +571,2540,15,1,f +571,2540,0,2,f +571,2540,4,2,f +571,298c02,4,2,f +571,3001,2,3,f +571,3001,73,1,f +571,3001,4,1,f +571,3001,15,2,f +571,3001,1,1,f +571,3001,14,2,f +571,3001,71,1,f +571,3002,1,4,f +571,3002,0,3,f +571,3002,71,1,f +571,3002,15,2,f +571,3003,1,3,f +571,3003,4,2,f +571,3003,0,1,f +571,3003,15,6,f +571,3003,2,2,f +571,3003,73,1,f +571,3004,71,2,f +571,3004,4,2,f +571,3004,19,1,f +571,3004,14,7,f +571,3004,0,1,f +571,3004,72,1,f +571,3004,2,4,f +571,3004,15,9,f +571,3004,73,4,f +571,3004,1,8,f +571,3004p0b,14,1,f +571,3005,72,5,f +571,3005,1,4,f +571,3005,70,2,f +571,3005,14,12,f +571,3005,4,2,f +571,3005,15,8,f +571,3005,0,6,f +571,3005pe1,72,2,f +571,3005pe1,15,2,f +571,3005pe1,14,4,f +571,3005px2,14,4,f +571,3009,1,1,f +571,3009,72,2,f +571,3009,70,2,f +571,3010,70,5,f +571,3010,15,4,f +571,3010,2,6,f +571,3010,73,6,f +571,3010,14,1,f +571,3010,1,6,f +571,3010,0,2,f +571,3020,4,1,f +571,3020,2,2,f +571,3020,15,3,f +571,3020,0,2,f +571,3020,70,3,f +571,3021,71,3,f +571,3021,4,2,f +571,3021,0,3,f +571,3021,72,2,f +571,3021,14,5,f +571,3022,0,1,f +571,3022,14,4,f +571,3022,4,1,f +571,3022,72,3,f +571,3022,22,2,f +571,3022,15,2,f +571,3023,19,3,f +571,3023,73,2,f +571,3023,4,1,f +571,3023,0,3,f +571,3023,47,1,f +571,3023,70,3,f +571,3023,72,1,f +571,3023,15,1,f +571,3023,14,3,f +571,3023,71,1,f +571,3024,4,1,f +571,3024,0,11,f +571,3024,72,1,f +571,3024,14,4,f +571,3029,15,1,f +571,3031,15,1,f +571,3034,15,1,f +571,30357,4,4,f +571,30363,15,1,f +571,30367b,15,2,f +571,3037,70,2,f +571,3038,0,1,f +571,30385,383,2,f +571,3039,0,1,f +571,3039,15,4,f +571,3039,1,2,f +571,3039,4,2,f +571,3039,14,2,f +571,3039,73,2,f +571,3040b,15,2,f +571,3040b,72,2,f +571,3040b,14,8,f +571,3040b,0,8,f +571,3045,4,4,f +571,3062b,15,11,f +571,3069b,70,2,f +571,3298,71,1,f +571,3298,15,1,f +571,3298,25,1,f +571,3307,15,2,f +571,3622,70,1,f +571,3622,0,1,f +571,3622,1,2,f +571,3622,71,1,f +571,3623,72,3,f +571,3623,0,7,f +571,3623,71,1,f +571,3623,14,2,f +571,3626b,15,8,f +571,3659,15,2,f +571,3660,71,1,f +571,3660,0,3,f +571,3660,14,2,f +571,3660,15,4,f +571,3660,72,2,f +571,3660,70,2,f +571,3665,72,2,f +571,3665,14,7,f +571,3665,0,2,f +571,3665,71,1,f +571,3665,1,2,f +571,3665,15,4,f +571,3676,4,4,f +571,3679,7,1,f +571,3679,71,2,f +571,3680,14,1,f +571,3680,0,1,f +571,3680,15,1,f +571,3684,15,1,f +571,3710,72,1,f +571,3710,70,1,f +571,3710,15,4,f +571,3710,71,1,f +571,3710,14,6,f +571,3794a,14,4,f +571,3794a,72,1,f +571,3794a,15,2,f +571,3794a,19,1,f +571,3795,15,1,f +571,3795,73,1,f +571,3795,2,2,f +571,3795,70,4,f +571,3839b,14,1,f +571,4070,15,2,f +571,4070,70,2,f +571,4070,1,2,f +571,4070,0,2,f +571,4081b,4,4,f +571,4085c,14,1,f +571,4085c,15,2,f +571,40996,4,1,f +571,4286,14,4,f +571,4286,25,2,f +571,4286,71,3,f +571,4286,15,4,f +571,44302a,72,1,f +571,44567a,14,2,f +571,44567a,72,1,f +571,4589,15,1,f +571,54200,182,2,f +571,59,383,1,f +571,6019,14,1,f +571,6091,19,4,f +571,6091,4,10,f +571,6126a,57,1,f +571,6141,19,4,f +571,6141,0,4,f +571,6141,34,4,f +571,6141,42,2,f +571,6182,1,2,f +571,6636,70,2,f +571,73983,0,2,f +575,2335,1,1,f +575,2542,70,1,f +575,2610,14,1,f +575,2654,15,1,f +575,30033,15,1,f +575,3022,25,1,f +575,3023,15,2,f +575,3069b,25,1,f +575,3626bpr0409,14,1,f +575,3942c,4,1,f +575,3957a,15,1,f +575,43722,25,2,f +575,43723,25,2,f +575,46303,71,1,f +575,4855,15,2,f +575,970c00,1,1,f +575,973pr1363c01,14,1,f +576,3626bpb0923,14,1,f +576,75902pr0003a,308,1,f +576,88646,0,1,f +576,90391pr02,308,1,f +576,90396,0,1,f +576,970c00pr0484,84,1,f +576,973pr2314c01,70,1,f +577,12825,4,1,f +577,12825,71,8,f +577,12825,14,1,f +577,2357,72,8,f +577,2412b,72,5,f +577,2419,0,1,f +577,2420,72,2,f +577,2420,14,2,f +577,2431,71,4,f +577,2431,14,4,f +577,2432,72,2,f +577,2436,71,4,f +577,2450,0,2,f +577,2450,72,1,f +577,2453a,0,4,f +577,2454a,71,1,f +577,2458,71,10,f +577,2465,72,2,f +577,2540,0,4,f +577,2540,71,3,f +577,2654,46,2,f +577,2654,72,2,f +577,2921,0,2,f +577,3002,71,2,f +577,30031,72,1,f +577,3004,72,5,f +577,3004,14,1,f +577,30043,71,2,f +577,3005,72,5,f +577,3005,14,3,f +577,3007,0,2,f +577,3008,72,2,f +577,30095,72,1,f +577,3010,72,8,f +577,3010,14,2,f +577,30103,0,1,f +577,30136,72,2,f +577,30162,72,1,f +577,30192,72,1,f +577,3020,72,1,f +577,3020,0,1,f +577,3020,71,1,f +577,3021,71,2,f +577,3021,70,1,f +577,3021,272,2,f +577,3021,72,3,f +577,3022,0,2,f +577,3022,71,7,f +577,3023,272,3,f +577,3023,71,10,f +577,3023,72,6,f +577,30236,0,4,f +577,30237a,72,2,f +577,30237a,14,1,f +577,3029,0,1,f +577,30292,41,3,f +577,3030,72,4,f +577,3031,72,2,f +577,3032,0,1,f +577,3034,72,2,f +577,3035,0,1,f +577,30350b,0,1,f +577,30363,72,2,f +577,3037,72,2,f +577,30374,41,6,f +577,30377,72,4,f +577,30377,72,1,t +577,3038,72,2,f +577,3039,0,5,f +577,3039,72,1,f +577,3040b,72,9,f +577,30414,0,4,f +577,3046a,72,2,f +577,30526,72,4,f +577,30586,71,2,f +577,3062b,72,14,f +577,3062b,19,2,f +577,3068b,71,6,f +577,3069b,15,17,f +577,3070bpr0007,71,1,t +577,3070bpr0007,71,1,f +577,32001,71,1,f +577,32013,72,8,f +577,32028,14,2,f +577,32054,4,1,f +577,32059,72,1,f +577,32062,4,2,f +577,32064b,0,4,f +577,32123b,14,1,t +577,32123b,14,1,f +577,32269,0,1,f +577,32270,0,1,f +577,32278,0,2,f +577,32316,0,4,f +577,32316,14,1,f +577,3245c,72,5,f +577,32524,72,2,f +577,3460,0,2,f +577,3622,0,1,f +577,3623,0,2,f +577,3626cpr0896,78,1,f +577,3626cpr0897,78,1,f +577,3626cpr0935,78,1,f +577,3626cpr0936,0,1,f +577,3626cpr0937,78,1,f +577,3650c,71,1,f +577,3660,72,6,f +577,3660,0,3,f +577,3665,0,4,f +577,3665,15,4,f +577,3666,4,4,f +577,3666,0,6,f +577,3666,71,1,f +577,3666,14,1,f +577,3666,272,6,f +577,3673,71,6,f +577,3673,71,2,t +577,3679,71,5,f +577,3680,14,5,f +577,3685,0,2,f +577,3700,14,8,f +577,3701,0,1,f +577,3702,0,2,f +577,3705,0,1,f +577,3709,15,1,f +577,3710,19,2,f +577,3710,272,13,f +577,3710,0,3,f +577,3710,71,1,f +577,3710,14,2,f +577,3713,4,2,f +577,3713,4,2,t +577,3749,19,4,f +577,3794b,4,1,f +577,3794b,272,4,f +577,3794b,14,3,f +577,3795,0,1,f +577,3795,71,2,f +577,3795,72,5,f +577,3829c01,4,1,f +577,3832,71,3,f +577,3899,4,1,f +577,3937,0,3,f +577,3940b,0,1,f +577,3958,72,1,f +577,3960pr0011,0,1,f +577,4032a,14,3,f +577,4032a,72,4,f +577,4151,0,3,f +577,41539,72,1,f +577,4162,14,2,f +577,4162,71,1,f +577,4282,72,1,f +577,4286,71,1,f +577,4286,72,4,f +577,43093,1,4,f +577,4349,0,1,f +577,43898,272,2,f +577,43903,0,2,f +577,44301a,72,8,f +577,44568,71,1,f +577,4460b,72,6,f +577,44728,14,1,f +577,4477,0,3,f +577,4519,71,1,f +577,4589,36,2,f +577,46212,41,9,f +577,47753,0,1,f +577,47755,0,2,f +577,47847,72,2,f +577,4865a,41,6,f +577,4871,272,1,f +577,48729b,72,1,t +577,48729b,72,1,f +577,50950,0,2,f +577,51739,0,1,f +577,54200,71,13,f +577,54200,46,2,f +577,54200,14,2,f +577,54200,71,4,t +577,54200,46,1,t +577,54200,14,1,t +577,55013,72,1,f +577,55236,288,1,f +577,55704,272,1,f +577,55981,14,2,f +577,55982,4,6,f +577,56630,272,1,f +577,56630,0,1,f +577,58176,33,6,f +577,58176,36,2,f +577,59349,0,4,f +577,59349,41,2,f +577,59349,71,2,f +577,59426,72,1,f +577,6011773,9999,1,f +577,6019,0,1,f +577,6020,0,2,f +577,60471,0,8,f +577,60476,14,3,f +577,60478,71,2,f +577,60478,72,4,f +577,60479,71,1,f +577,60485,71,1,f +577,61072,135,1,f +577,61184,71,8,f +577,6134,71,3,f +577,6140,0,2,f +577,6141,41,12,f +577,6141,41,3,t +577,6141,46,1,t +577,6141,135,4,f +577,6141,135,1,t +577,6141,14,1,t +577,6141,14,2,f +577,6141,46,1,f +577,61482,71,1,f +577,61482,71,1,t +577,61484,4,1,f +577,6190,4,1,f +577,63864,72,2,f +577,63868,4,4,f +577,63868,71,2,f +577,63965,72,2,f +577,64448,72,2,f +577,64713,179,1,f +577,64728,4,1,f +577,64799,14,1,f +577,6541,0,2,f +577,6585,0,1,f +577,6589,19,2,f +577,6589,19,1,t +577,6636,71,2,f +577,6636,0,2,f +577,73983,15,2,f +577,85974pr0002b,4,1,f +577,85984,4,1,f +577,85984,0,2,f +577,87079,71,2,f +577,87580,272,3,f +577,88930,71,2,f +577,89201,0,1,f +577,92081,0,1,f +577,92099,72,1,f +577,92107,72,1,f +577,92280,71,4,f +577,92402,0,1,f +577,92584,0,1,f +577,92692,0,2,f +577,92946,72,2,f +577,93606,71,8,f +577,93606,0,1,f +577,95347,272,7,f +577,96874,25,1,t +577,970c00,0,1,f +577,970c00,379,1,f +577,970c00pr0301,27,1,f +577,970x026,4,1,f +577,970x140,71,1,f +577,973pr1948bc01,71,1,f +577,973pr1949bc01,4,1,f +577,973pr2017c01,27,1,f +577,973pr2018c01,78,1,f +577,973pr2019c01,379,1,f +577,98721,0,2,f +577,98721,0,1,t +577,99784,272,2,f +577,99930,0,1,f +578,2302,2,4,f +578,3011,4,10,f +578,3011,27,4,f +578,3011,14,10,f +578,3011,73,4,f +578,3011,25,4,f +578,3011,1,10,f +578,3011,15,2,f +578,3011,2,10,f +578,3011,0,2,f +578,3437,15,3,f +578,3437,4,30,f +578,3437,1,30,f +578,3437,14,30,f +578,3437,0,6,f +578,3437,73,12,f +578,3437,2,30,f +578,3437,27,12,f +578,3437,25,12,f +578,3437pe1,14,3,f +578,4066,4,2,f +578,4066,1,2,f +578,40666,0,2,f +578,40666,2,4,f +578,40666,4,4,f +578,6474,14,4,f +578,6474,4,4,f +579,45452,230,1,f +579,45464,45,1,f +579,45469,45,16,f +579,46277,230,1,f +579,46296,52,1,f +579,clikits005,143,1,f +579,clikits006pb04,45,1,f +579,clikits015a,45,3,f +579,clikits015ac,45,1,f +579,clikits015ae,45,1,f +579,clikits015b,45,2,f +579,clikits015c,45,1,f +579,clikits015d,45,1,f +579,clikits015e,45,2,f +579,clikits015f,45,2,f +579,clikits015g,45,1,f +579,clikits015h,45,2,f +579,clikits015i,45,2,f +579,clikits015j,45,1,f +579,clikits015k,45,1,f +579,clikits015l,45,2,f +579,clikits015m,45,2,f +579,clikits015n,45,2,f +579,clikits015o,45,2,f +579,clikits015osla,45,1,f +579,clikits015ou,45,1,f +579,clikits015p,45,1,f +579,clikits015q,45,1,f +579,clikits015r,45,1,f +579,clikits015s,45,3,f +579,clikits015t,45,2,f +579,clikits015u,45,1,f +579,clikits015uu,45,1,f +579,clikits015v,45,1,f +579,clikits015w,45,1,f +579,clikits015x,45,1,f +579,clikits015y,45,1,f +579,clikits015z,45,1,f +579,clikits085,52,1,f +579,clikits110,383,1,f +579,clikits120,230,2,f +579,clikits222,63,1,f +581,11478,0,4,f +581,15107,148,6,f +581,15362,179,2,f +581,19049,179,1,f +581,19050,57,1,f +581,19082pat0001,297,1,f +581,20473,42,1,f +581,20474,179,4,f +581,20478,179,1,f +581,20479,179,2,f +581,2736,71,2,f +581,2780,0,2,f +581,32005a,72,2,f +581,32014,0,2,f +581,32016,71,2,f +581,32034,0,2,f +581,32039,0,2,f +581,32056,0,2,f +581,32062,4,8,f +581,32073,71,3,f +581,32192,0,4,f +581,32291,0,1,f +581,3673,71,2,f +581,3705,0,4,f +581,3713,71,6,f +581,40490,0,1,f +581,41239,0,1,f +581,41669,57,2,f +581,41669,42,2,f +581,42003,0,1,f +581,4519,71,1,f +581,50923,72,2,f +581,6536,0,2,f +581,6558,1,3,f +581,6628,0,2,f +581,6632,0,2,f +581,85545,1,1,f +581,87747,0,3,f +581,90611,42,2,f +581,90612,0,1,f +581,90622,0,1,f +581,90626,179,1,f +581,90641,42,2,f +581,92220,57,4,f +581,93571,0,3,f +581,98577,72,1,f +581,99021,72,2,f +582,4215b,41,25,f +583,2357,14,8,f +583,2357,71,4,f +583,3001,29,2,f +583,3002,73,2,f +583,3002,14,2,f +583,3010,15,4,f +583,3022,1,1,f +583,3022,73,1,f +583,3022,15,1,f +583,3031,10,1,f +583,3037,15,4,f +583,54200,29,16,f +583,54200,73,16,f +586,2420,4,4,f +586,2431pr0037,4,1,f +586,2437pr0001,4,1,f +586,2441,0,1,f +586,2921,72,1,f +586,3002,71,1,f +586,30027b,71,4,f +586,30028,0,4,f +586,3003,4,2,f +586,3004,4,2,f +586,3020,4,2,f +586,3021,4,1,f +586,3022,14,2,f +586,3023,1,2,f +586,3023,4,2,f +586,3069b,15,1,f +586,3069b,71,1,f +586,3070b,4,2,f +586,3070b,4,1,t +586,3710,0,1,f +586,4035,71,1,f +586,53989,0,1,f +586,54200,71,2,f +586,54200,71,1,t +586,60212,4,2,f +586,60602,41,1,f +586,6179,4,1,f +586,63864,4,2,f +586,85959pat0001,36,1,f +586,87087,4,1,f +586,87618,71,1,f +586,88930,4,1,f +586,92280,71,1,f +586,93274,4,2,f +587,2496,0,2,f +587,3069b,0,1,f +587,3626bpr0216,14,1,f +587,3939,8,2,f +587,42445,7,1,t +587,42445,7,1,f +587,42446,2,1,f +587,42511,14,1,f +587,4485,15,1,f +587,6187,0,1,f +587,970c00pb010,1,1,f +587,973pb0057c01,4,1,f +588,2555,14,1,f +588,30256,71,1,f +588,4070,0,2,f +588,49668,0,1,f +588,6141,36,1,f +588,6141,36,1,t +588,6141,34,1,f +588,6141,34,1,t +589,13786pr0002,484,1,f +589,3626cpr1306,14,1,f +589,88646,0,1,f +589,95225,71,1,f +589,970c00pr0598,379,1,f +589,973pr0601c01,29,1,f +590,11302pat0001,36,1,f +590,15365pat0002,14,1,f +590,15366,297,1,f +590,15367,297,2,f +590,15368,179,2,f +590,15369,297,2,f +590,15377pat01,57,1,f +590,2780,0,2,f +590,32062,4,2,f +590,59443,70,3,f +590,61184,71,1,f +590,90608,72,2,f +590,90609,0,2,f +590,90612,0,1,f +590,90616,0,2,f +590,90617,72,2,f +590,90625,0,1,f +590,90639pr0033,320,2,f +590,90640,57,4,f +590,90652,320,1,f +590,92220,57,8,f +590,92233,297,2,f +590,93571,0,1,f +590,98138,182,1,f +590,98577,72,1,f +590,98606pr0002,297,1,f +591,15535,72,2,f +591,15573,71,1,f +591,15672,71,4,f +591,18677,71,2,f +591,298c02,71,1,f +591,298c02,71,1,t +591,3020,71,3,f +591,3021,25,1,f +591,3022,19,1,f +591,3023,15,1,f +591,3023,72,3,f +591,3024,71,1,t +591,3024,71,4,f +591,3031,72,1,f +591,30370pr0001,71,1,f +591,32054,71,2,f +591,3298pr0031,15,1,f +591,3626cpr1441,78,1,f +591,3710,15,6,f +591,3743,0,2,f +591,3795,0,1,f +591,4032a,71,2,f +591,42610,71,2,f +591,43722,15,1,f +591,43723,15,1,f +591,44568,71,2,f +591,51739,15,2,f +591,54200,40,4,f +591,54200,25,4,f +591,54200,15,6,f +591,54200,15,1,t +591,54200,25,1,t +591,54200,40,1,t +591,54383,15,1,f +591,54384,15,1,f +591,59900,36,2,f +591,59900,71,2,f +591,60471,71,4,f +591,60897,71,2,f +591,61184,71,4,f +591,6541,15,4,f +591,6587,28,2,f +591,85984,15,2,f +591,87087,71,2,f +591,92593,71,2,f +591,92738,0,1,f +591,92947,71,2,f +591,970c00pr0476,25,1,f +591,973pr2289c01,25,1,f +591,99207,0,2,f +592,3020,2,16,f +592,3021,2,12,f +592,3022,2,16,f +592,3034,2,4,f +592,3795,2,4,f +592,3832,2,4,f +593,14210,15,1,f +593,2357,72,1,f +593,2357,4,5,f +593,2412b,14,1,f +593,2412b,36,4,f +593,2412b,0,1,f +593,2431,0,1,f +593,2431,4,1,f +593,2432,1,1,f +593,2439,72,1,f +593,2445,0,1,f +593,2456,72,1,f +593,2540,15,1,f +593,2540,0,4,f +593,2555,15,1,f +593,2653,4,2,f +593,2654,15,1,f +593,2877,4,8,f +593,3004,72,1,f +593,30041,72,1,f +593,30042,72,1,f +593,3005,4,9,f +593,3005,72,1,f +593,3005,15,1,f +593,3008,4,1,f +593,3009,72,1,f +593,3009,4,2,f +593,3010,72,1,f +593,3020,72,2,f +593,3022,15,2,f +593,3022,72,2,f +593,3023,0,4,f +593,3024,4,2,f +593,3031,15,1,f +593,3032,15,1,f +593,30375,14,4,f +593,30377,1,1,t +593,30377,1,8,f +593,3039,72,1,f +593,30552,72,4,f +593,30553,71,4,f +593,30554a,71,8,f +593,30608,70,1,f +593,3062b,47,2,f +593,3062b,46,2,f +593,3063b,1,4,f +593,3068b,14,1,f +593,3069bp80,15,1,f +593,3070b,46,2,f +593,32123b,71,1,t +593,32123b,71,1,f +593,3245b,4,2,f +593,3297px24,15,1,f +593,3307,71,5,f +593,3307,4,1,f +593,3456,71,2,f +593,3460,15,2,f +593,3626bpb0198,78,1,f +593,3626bpr0325,78,1,f +593,3626bpx125,4,1,f +593,3626bpx276,86,1,f +593,3633,0,1,f +593,3647,71,1,f +593,3665,4,6,f +593,3666,4,2,f +593,3666,72,2,f +593,3700,4,1,f +593,3710,4,1,f +593,3710,15,1,f +593,3743,71,2,f +593,3794a,15,1,f +593,3795,72,1,f +593,3821,4,1,f +593,3822,4,1,f +593,3823,41,1,f +593,3829c01,1,1,f +593,3830,72,1,f +593,3831,72,1,f +593,3832,72,3,f +593,3853,0,2,f +593,3854,0,4,f +593,3861b,0,1,f +593,3901,0,1,f +593,3940b,72,1,f +593,40240,70,1,f +593,4032a,14,1,f +593,4081b,15,2,f +593,4095,0,1,f +593,4211,15,2,f +593,4215b,15,4,f +593,4215b,40,1,f +593,43898,52,2,f +593,4449,15,1,f +593,44568,4,1,f +593,44570,4,1,f +593,44728,15,2,f +593,45677,15,1,f +593,4589,14,2,f +593,4600,71,2,f +593,4714,15,1,f +593,4715,15,2,f +593,4733,0,1,f +593,4740,72,1,f +593,4857stk01,9999,1,t +593,4865a,1,3,f +593,48723,71,1,f +593,48724,71,1,f +593,48729a,72,4,f +593,48729a,72,1,t +593,6014b,15,4,f +593,6015,0,4,f +593,6141,36,6,f +593,6141,33,2,f +593,6141,33,1,t +593,6141,36,1,t +593,6179,15,1,f +593,6587,72,1,f +593,6632,1,1,f +593,6636,15,6,f +593,970c00,0,1,f +593,970c00,71,1,f +593,970c00,72,1,f +593,970c63pb01,272,1,f +593,973pb0323c01,72,1,f +593,973pb0324c01,272,1,f +593,973pb0325c01,4,1,f +593,973pb0327c01,71,1,f +594,2780,0,6,f +594,32013,71,1,f +594,32054,0,1,f +594,32062,0,1,f +594,32174,378,5,f +594,32199,72,1,f +594,3705,0,1,f +594,43093,1,1,f +594,47296,378,2,f +594,47306,378,1,f +594,47311,288,1,f +594,50898,378,2,f +594,53500,57,1,f +594,53563,288,1,f +594,53564,297,1,f +594,53566,288,2,f +594,53568,288,2,f +594,53572,297,1,f +594,53574,288,2,f +594,53579,288,1,f +594,54271,297,1,f +594,54821,42,3,f +594,54821,35,1,f +594,55095pr0001,15,1,f +594,55304,288,1,f +594,59426,72,1,f +595,3001,1,2,f +595,3001,15,2,f +595,3001,4,2,f +595,3001,2,2,f +595,3001,14,2,f +595,3001,0,2,f +595,3001,72,4,f +595,3002,15,4,f +595,3002,0,2,f +595,3002,2,2,f +595,3002,1,2,f +595,3002,14,2,f +595,3002,4,2,f +595,3002,72,4,f +595,3003,2,4,f +595,3003,4,4,f +595,3003,72,8,f +595,3003,14,6,f +595,3003,15,6,f +595,3003,1,4,f +595,3003,0,4,f +595,3004,1,8,f +595,3004,4,8,f +595,3004,14,8,f +595,3004,0,8,f +595,3004,2,6,f +595,3004,15,8,f +595,3004,72,12,f +595,3005,72,8,f +595,3005,1,8,f +595,3005,0,8,f +595,3005,4,8,f +595,3005,2,6,f +595,3005pe1,14,2,f +595,3009,4,2,f +595,3010,0,2,f +595,3010,15,2,f +595,3010,72,2,f +595,3010,14,2,f +595,3020,15,2,f +595,3020,72,2,f +595,3022,72,2,f +595,3022,14,2,f +595,3040b,4,2,f +595,3040b,1,2,f +595,3622,72,2,f +595,3626bpr0252,14,1,f +595,3665,4,2,f +595,3665,1,2,f +595,3833,4,1,f +595,4070,15,2,f +595,73590c02a,0,2,f +595,970c00,2,1,f +595,973pr1245c01,1,1,f +597,21980,15,1,f +599,2376,0,1,f +599,2412b,72,2,f +599,2460,0,1,f +599,2540,72,2,f +599,30033,0,1,f +599,3022,0,2,f +599,3023,72,2,f +599,3023,25,6,f +599,30602,25,4,f +599,3068b,25,2,f +599,32000,71,2,f +599,3626bpr0919,78,1,f +599,3700,0,1,f +599,3710,71,1,f +599,3710,25,8,f +599,3794b,25,2,f +599,3794b,72,4,f +599,3795,0,2,f +599,3942c,25,2,f +599,4274,1,1,t +599,4274,1,5,f +599,44728,72,2,f +599,44728,25,4,f +599,54200,40,1,t +599,54200,40,4,f +599,58247,0,1,f +599,6141,41,1,t +599,6141,41,2,f +599,6179pr48,0,1,f +599,62462,0,1,f +599,87087,72,6,f +599,93273,25,2,f +599,970c00,71,1,f +599,973pr1988c01,71,1,f +599,98107pat0002,19,2,f +601,2350ap01,14,1,f +601,2351,0,1,f +601,2362a,1,2,f +601,298c03,0,2,f +601,3001,0,1,f +601,3006,0,1,f +601,3010,14,2,f +601,3010,1,3,f +601,3020,14,4,f +601,3020,0,3,f +601,3021,0,4,f +601,3021,14,2,f +601,3022,14,1,f +601,3022,0,3,f +601,3023,0,10,f +601,3023,14,2,f +601,3024,36,2,f +601,3024,46,6,f +601,3024,14,2,f +601,3024,0,2,f +601,3035,1,2,f +601,3035,14,1,f +601,3040b,14,4,f +601,3062b,0,2,f +601,3068b,14,7,f +601,3069b,0,1,f +601,3069b,14,2,f +601,3070b,36,2,f +601,3315,0,1,f +601,3403,0,1,f +601,3404,0,1,f +601,3597,0,1,f +601,3623,14,2,f +601,3623,0,2,f +601,3626apr0001,14,1,f +601,3660,14,2,f +601,3665,14,6,f +601,3666,0,2,f +601,3673,7,2,f +601,3700,14,2,f +601,3710,14,2,f +601,3710,0,1,f +601,3794a,1,2,f +601,3794a,14,2,f +601,3795,0,1,f +601,3829c01,14,1,f +601,3833,4,1,f +601,3853,1,1,f +601,3856,1,2,f +601,3959,0,4,f +601,4084,0,6,f +601,4213,14,1,f +601,4214,14,1,f +601,4215a,1,2,f +601,4282,0,1,f +601,4286,14,2,f +601,4287,14,2,f +601,4477,0,2,f +601,4531,14,1,f +601,4589,0,2,f +601,4590,0,1,f +601,4594,47,1,f +601,4600,0,3,f +601,4624,14,6,f +601,4735,0,4,f +601,4740,0,4,f +601,4859,14,1,f +601,4873,7,1,f +601,56823,0,1,f +601,6141,0,2,f +601,6361stk01,9999,1,t +601,70278,0,1,f +601,73037,14,1,f +601,970c00,0,1,f +601,973pb0202c01,15,1,f +603,2412b,0,1,f +603,2420,2,4,f +603,2436,0,2,f +603,298c02,0,1,f +603,298c02,0,1,t +603,3022,0,2,f +603,3022,2,1,f +603,3068b,2,2,f +603,3626bpr0636,2,1,f +603,3795,2,1,f +603,3962b,2,1,f +603,4600,71,2,f +603,4624,71,4,f +603,48336,2,2,f +603,4865a,2,1,f +603,6141,34,1,t +603,6141,34,4,f +603,87414,0,4,f +603,87998,2,1,f +603,88000,2,1,f +603,970c00,2,1,f +603,973pr1571c01,2,1,f +604,45449,13,2,f +604,45451,45,2,f +604,45452,45,2,f +604,45463,236,2,f +604,46277,45,2,f +604,46286,236,2,f +604,clikits004,143,2,f +604,clikits005,143,2,f +604,clikits037,9,2,f +604,clikits080,45,2,f +604,clikits114,45,1,f +604,clikits115,143,1,f +605,18674,72,1,f +605,18868b01,46,2,f +605,19981pr0063,46,1,f +605,19981pr0064,46,1,f +605,20482,297,1,t +605,20482,297,1,f +605,21445,71,4,f +605,21445,0,4,f +605,2654,71,1,f +605,3005,73,2,f +605,30165,4,2,f +605,3020,71,1,f +605,3023,73,3,f +605,3023,4,2,f +605,3023,47,6,f +605,3069b,15,2,f +605,3069b,73,1,f +605,3069b,4,1,f +605,3070b,4,1,t +605,3070b,4,1,f +605,3070b,47,2,f +605,3070b,47,1,t +605,32028,4,4,f +605,3623,0,2,f +605,3626bpr0703,78,1,f +605,3626cpr2003,15,1,f +605,3710,73,1,f +605,3795,4,1,f +605,3937,72,1,f +605,3938,71,1,f +605,3941,46,2,f +605,4032a,0,2,f +605,4070,4,2,f +605,4624,71,1,t +605,4624,71,4,f +605,4740,0,1,f +605,4865a,4,1,f +605,50231,0,1,f +605,50254,0,4,f +605,54200,15,2,f +605,54200,47,1,t +605,54200,15,1,t +605,54200,47,6,f +605,59895,0,4,f +605,6141,15,1,t +605,6141,15,8,f +605,6141,36,1,t +605,6141,36,2,f +605,85861,0,1,t +605,85861,0,7,f +605,85984,0,2,f +605,87991,0,1,f +605,87994,70,2,f +605,87994,70,1,t +605,92947,0,1,f +605,93597,73,2,f +605,970c00,0,2,f +605,973pr1671c01,72,1,f +605,973pr3498c01,0,1,f +605,98138,47,1,t +605,98138,47,2,f +605,99206,0,1,f +605,99780,4,1,f +605,99780,71,2,f +605,99781,15,2,f +605,99781,0,3,f +606,3005,71,2,f +606,3005,72,2,f +606,30055,0,1,f +606,3622,72,2,f +606,3666,72,1,f +606,3795,0,1,f +606,4460b,72,2,f +606,54200,0,2,f +606,54200,0,1,t +606,61482,71,1,t +606,61482,71,1,f +607,30179,4,5,f +607,76041c03,0,5,f +608,5102,7,1,f +609,3647,7,4,f +609,3648a,7,2,f +609,3650,7,3,f +609,3743,7,4,f +609,4019,7,2,f +609,4143,7,4,f +609,4716,0,2,f +609,6542a,8,1,f +609,9244,7,1,f +610,2432,0,1,f +610,2437,41,1,f +610,2513,15,1,f +610,3021,15,1,f +610,3022,0,1,f +610,3024,46,2,f +610,3641,0,4,f +610,3710,15,1,f +610,3795,0,1,f +610,3829c01,0,1,f +610,4211,15,1,f +610,4600,0,2,f +610,4624,15,4,f +610,4865p18,15,2,f +613,2412b,72,2,f +613,2456,0,1,f +613,2540,71,1,f +613,3023,14,4,f +613,3024,182,2,f +613,3024,182,1,t +613,3031,14,1,f +613,30552,0,1,f +613,30553,0,1,f +613,3069bpr0101,71,1,f +613,3626cpr0955,14,1,f +613,3707,0,1,f +613,3795,71,1,f +613,3833,4,1,f +613,4006,0,1,f +613,43722,14,1,f +613,43723,14,1,f +613,50950,14,2,f +613,51858,71,1,f +613,6014b,14,4,f +613,6141,46,1,t +613,6141,46,2,f +613,6157,0,2,f +613,87697,0,4,f +613,92582,71,1,f +613,970c00,25,1,f +613,973pr1182c01,25,1,f +613,99781,71,1,f +618,2341,4,4,f +618,2357,4,3,f +618,2412b,15,1,f +618,2412b,0,1,f +618,2412b,7,14,f +618,2419,7,2,f +618,2420,15,2,f +618,2420,4,6,f +618,2421,0,1,f +618,2432,15,1,f +618,2436,15,1,f +618,2446,15,1,f +618,2447,41,1,f +618,2449,4,2,f +618,2452,0,1,f +618,2453a,4,4,f +618,2454a,4,9,f +618,2460,4,1,f +618,2479,7,1,f +618,2483,41,1,f +618,2486,15,1,f +618,2493b,15,7,f +618,2494,41,7,f +618,2583,14,2,f +618,2584,4,2,f +618,2585,0,2,f +618,2817,0,2,f +618,298c02,0,1,t +618,298c02,0,5,f +618,298c03,7,1,f +618,298c04,15,2,f +618,3001,0,1,f +618,3004,4,35,f +618,3004,14,1,f +618,3005,4,19,f +618,3005,15,5,f +618,3005,47,1,f +618,3009,4,2,f +618,3010,4,8,f +618,3010,15,8,f +618,3020,4,3,f +618,3020,15,2,f +618,3021,4,5,f +618,3021,15,1,f +618,3023,4,11,f +618,3023,15,4,f +618,3024,36,5,f +618,3024,33,4,f +618,3024,46,6,f +618,3024,34,1,f +618,3024,15,3,f +618,3024,4,23,f +618,3028,4,1,f +618,3030,4,1,f +618,3031,4,1,f +618,3033,4,4,f +618,3034,0,1,f +618,3034,4,1,f +618,3037,4,1,f +618,3039p23,15,1,f +618,3039p34,15,1,f +618,3040b,4,1,f +618,3062b,4,1,f +618,3062b,15,3,f +618,3068b,14,1,f +618,3069b,0,2,f +618,3069b,15,2,f +618,3069b,4,2,f +618,3069bp02,7,1,f +618,3069bp25,15,1,f +618,3070b,33,2,f +618,3070b,0,2,f +618,3176,4,1,f +618,3188,4,1,f +618,3189,4,1,f +618,3297,4,1,f +618,3460,15,10,f +618,3460,4,1,f +618,3581,4,2,f +618,3582,4,2,f +618,3622,15,2,f +618,3622,4,1,f +618,3623,0,2,f +618,3623,15,1,f +618,3626apr0001,14,4,f +618,3660,4,2,f +618,3665,4,8,f +618,3666,15,1,f +618,3666,0,2,f +618,3666,4,2,f +618,3679,7,3,f +618,3680,4,1,f +618,3680,0,1,f +618,3680,14,1,f +618,3710,15,7,f +618,3710,4,6,f +618,3747a,4,1,f +618,3749,7,4,f +618,3788,15,2,f +618,3794a,15,4,f +618,3794a,4,1,f +618,3795,15,1,f +618,3821p09,4,1,f +618,3822p09,4,1,f +618,3823,41,1,f +618,3829c01,14,2,f +618,3832,4,3,f +618,3834,15,1,f +618,3835,0,1,f +618,3837,0,1,f +618,3838,14,2,f +618,3839b,0,1,f +618,3899,1,1,f +618,3901,0,2,f +618,3937,4,2,f +618,3937,7,1,f +618,3937,15,1,f +618,3938,7,1,f +618,3938,4,2,f +618,3938,15,1,f +618,3939,41,2,f +618,3957a,15,2,f +618,3958,7,1,f +618,3960,15,1,f +618,3962b,0,1,f +618,3963,15,1,f +618,4070,15,5,f +618,4070,4,8,f +618,4079,14,1,f +618,4081b,15,4,f +618,4084,0,6,f +618,4085c,15,3,f +618,4085c,4,2,f +618,4162,0,2,f +618,4162,14,2,f +618,4210,7,2,f +618,4213,4,2,f +618,4214,4,1,f +618,4215apx4,15,1,f +618,4216,4,26,f +618,4217,4,4,f +618,4218,15,2,f +618,4218,4,2,f +618,4218,41,13,f +618,4219,4,2,f +618,4276b,0,1,f +618,4282,0,2,f +618,4286,4,4,f +618,4288,0,4,f +618,4315,4,2,f +618,4460a,4,2,f +618,4474,41,1,f +618,4477,15,1,f +618,4477,4,1,f +618,4488,15,1,f +618,4495a,14,1,f +618,4589,15,4,f +618,4589,7,1,f +618,4599a,15,1,f +618,4600,0,3,f +618,4624,15,6,f +618,4625,4,1,f +618,4859,4,1,f +618,4864a,4,1,f +618,4865a,4,5,f +618,4865a,14,1,f +618,4865pb04,4,2,f +618,4872,41,2,f +618,6100p04,7,1,f +618,6141,15,5,f +618,6141,46,4,f +618,6141,33,5,f +618,6141,36,3,f +618,73590c01a,15,3,f +618,970c00,0,4,f +618,973p21c01,0,4,f +618,rb00164,0,2,f +620,11055pr0011,15,1,f +620,14518,72,1,f +620,15624,27,1,f +620,15627pr0008,15,1,f +620,18646,19,1,f +620,18927,4,1,f +620,2343,297,1,f +620,2431,2,3,f +620,2454a,15,2,f +620,2489,72,1,f +620,2528pr0001,0,1,f +620,2530,72,1,f +620,2551,70,1,f +620,2562,70,1,f +620,3001,4,1,f +620,3003,28,2,f +620,3004,28,4,f +620,3007,19,1,f +620,30153,36,1,f +620,30153,33,1,f +620,30176,2,1,f +620,3068bpr0243,19,1,f +620,3626cpr0895,15,1,f +620,3626cpr0929,14,1,f +620,3957b,71,1,f +620,4738a,0,1,f +620,4739a,0,1,f +620,59900,4,2,f +620,59900,297,1,f +620,59900,70,2,f +620,60607,70,2,f +620,6260,15,1,f +620,6265,15,2,f +620,6266,15,2,f +620,87580,28,2,f +620,87585,70,2,f +620,87587pr0001,72,1,f +620,92338,72,1,f +620,970d09,0,1,f +620,973pr2886c01,1,1,f +620,98138,297,2,f +620,98283,84,1,f +621,10201,0,2,f +621,10247,72,14,f +621,10928,72,6,f +621,11211,19,4,f +621,11212,72,10,f +621,11213,71,4,f +621,11214,72,1,t +621,11214,72,12,f +621,11458,72,2,f +621,11477,308,6,f +621,11478,0,10,f +621,12825,70,30,f +621,13547,0,8,f +621,13971,71,80,f +621,14720,71,1,f +621,14769,70,18,f +621,15207,70,7,f +621,15379,0,304,f +621,15379,0,10,t +621,15456,71,6,f +621,15462,28,1,f +621,15535,72,7,f +621,2357,70,14,f +621,2412b,70,74,f +621,2419,28,5,f +621,2420,28,32,f +621,2431,72,4,f +621,2431,308,18,f +621,2431,19,16,f +621,2431,70,26,f +621,2432,19,13,f +621,2445,70,14,f +621,2450,70,36,f +621,2450,28,22,f +621,2453a,70,4,f +621,2476,28,3,f +621,2489,308,2,f +621,2489,72,2,f +621,2654,72,16,f +621,2780,0,109,f +621,2780,0,10,t +621,2877,70,2,f +621,298c02,71,1,t +621,298c02,71,3,f +621,30000,72,7,f +621,3001,72,5,f +621,3002,70,4,f +621,3003,0,7,f +621,3004,70,13,f +621,3004,71,30,f +621,3005,28,26,f +621,3007,14,4,f +621,3008,70,2,f +621,30162,72,4,f +621,3020,19,6,f +621,3020,484,8,f +621,3021,71,48,f +621,3021,28,8,f +621,3022,484,4,f +621,3022,72,38,f +621,3023,484,21,f +621,3023,72,84,f +621,30237a,70,8,f +621,3024,288,1,t +621,3024,288,2,f +621,3028,70,2,f +621,3030,70,17,f +621,3031,70,13,f +621,3032,70,19,f +621,3033,70,10,f +621,3034,70,12,f +621,3034,1,1,f +621,3035,70,12,f +621,30350b,70,12,f +621,30357,72,30,f +621,3036,70,10,f +621,30361pr0010,15,1,f +621,30361pr1001,15,1,f +621,30361pr1004,15,1,f +621,30362,15,6,f +621,30367cpr1001,179,1,f +621,30367cpr1004,15,1,f +621,30374,41,1,f +621,30374,70,9,f +621,30377,15,4,f +621,30377,15,1,t +621,30377,0,1,t +621,30377,0,2,f +621,30381,70,4,f +621,3039,72,8,f +621,30395,72,2,f +621,30414,72,29,f +621,3043,0,1,f +621,30480ps0,297,1,f +621,30503,70,4,f +621,3062b,19,12,f +621,3068b,72,2,f +621,3068b,71,4,f +621,3068bpr0231,72,1,f +621,3069b,71,4,f +621,3069b,308,25,f +621,3069b,72,2,f +621,3069b,70,26,f +621,3069b,46,7,f +621,3070b,28,1,t +621,3070b,288,2,f +621,3070b,288,1,t +621,3070b,28,4,f +621,32000,19,14,f +621,32001,4,2,f +621,32009,71,2,f +621,32013,71,8,f +621,32017,71,6,f +621,32018,71,8,f +621,32028,70,11,f +621,32034,0,16,f +621,32054,0,24,f +621,32054,0,1,t +621,32062,4,32,f +621,32064b,72,2,f +621,32073,71,17,f +621,32123b,14,4,t +621,32123b,14,26,f +621,32124,70,4,f +621,32138,71,1,f +621,32140,71,10,f +621,32184,0,2,f +621,32249,0,2,f +621,32269,0,1,f +621,32270,0,3,f +621,32278,71,5,f +621,32291,0,34,f +621,32316,71,8,f +621,32449,15,4,f +621,32449,4,6,f +621,32523,1,6,f +621,32524,72,4,f +621,32525,71,3,f +621,32526,71,4,f +621,32531,0,2,f +621,32556,19,58,f +621,32556,19,1,t +621,32557,71,18,f +621,33299a,0,3,f +621,3460,308,13,f +621,3622,70,10,f +621,3623,0,14,f +621,3623,70,12,f +621,3626cpr1403,78,1,f +621,3626cpr1456,0,4,f +621,3626cpr1458,78,1,f +621,3660,70,17,f +621,3665,308,22,f +621,3666,70,20,f +621,3673,71,1,t +621,3673,71,8,f +621,3676,70,2,f +621,3678b,28,4,f +621,3679,71,4,f +621,3680,0,4,f +621,3700,1,1,f +621,3701,19,4,f +621,3702,71,16,f +621,3702,4,5,f +621,3703,72,6,f +621,3706,0,1,f +621,3710,28,6,f +621,3710,71,18,f +621,3713,4,4,t +621,3713,4,7,f +621,3737,0,1,f +621,3738,72,2,f +621,3747b,70,7,f +621,3749,19,12,f +621,3794b,28,5,f +621,3794b,72,3,f +621,3795,72,4,f +621,3795,70,6,f +621,3832,72,9,f +621,3894,72,2,f +621,3895,0,6,f +621,3937,0,5,f +621,3941,1,4,f +621,3943b,0,1,f +621,3957b,70,1,t +621,3957b,70,4,f +621,3958,70,6,f +621,40490,0,2,f +621,4070,72,2,f +621,4070,70,8,f +621,41239,72,2,f +621,4162,70,31,f +621,41677,4,32,f +621,41678,72,4,f +621,41769,70,14,f +621,41770,70,14,f +621,41879a,70,4,f +621,42003,72,4,f +621,42610,71,1,f +621,4274,1,16,f +621,4274,1,3,t +621,4282,0,1,f +621,4287,72,2,f +621,43093,1,30,f +621,4349,0,2,f +621,43722,70,23,f +621,43723,70,23,f +621,43898,70,4,f +621,44294,71,4,f +621,4445,0,2,f +621,4460b,28,2,f +621,44728,71,7,f +621,44728,72,3,f +621,44728,70,32,f +621,4477,70,14,f +621,44809,71,2,f +621,4519,71,9,f +621,4697b,71,2,f +621,4697b,71,1,t +621,4733,71,3,f +621,47397,70,5,f +621,47398,70,5,f +621,4740,72,1,f +621,47456,70,2,f +621,47457,70,6,f +621,47759,70,1,f +621,48496,0,1,f +621,48729a,72,1,t +621,48729a,72,2,f +621,48989,71,1,f +621,50304,28,5,f +621,50305,28,5,f +621,54200,288,1,t +621,54200,46,1,t +621,54200,288,3,f +621,54200,46,4,f +621,54383,28,5,f +621,54384,28,5,f +621,55013,72,4,f +621,56823c50,0,2,f +621,59426,72,3,f +621,59443,70,9,f +621,59900,72,1,f +621,59900,70,8,f +621,60169,72,2,f +621,6020,70,1,f +621,60470a,71,6,f +621,60474,71,2,f +621,60477,72,2,f +621,60478,72,32,f +621,60479,0,8,f +621,60481,19,2,f +621,60483,0,12,f +621,60484,71,5,f +621,60581,28,3,f +621,60849,71,1,t +621,60849,71,5,f +621,60897,72,2,f +621,6091,70,10,f +621,6091,19,12,f +621,6111,72,3,f +621,6112,70,1,f +621,61184,71,2,f +621,6134,71,5,f +621,61409,72,20,f +621,6141,72,26,f +621,6141,72,5,t +621,6141,4,42,f +621,6141,4,8,t +621,6141,70,94,f +621,6141,70,8,t +621,61485,0,4,f +621,61510,71,2,f +621,61780,70,2,f +621,6179,70,21,f +621,6180,70,14,f +621,6187,0,4,f +621,6191,70,2,f +621,6191,19,6,f +621,62113,72,2,f +621,6231,70,2,f +621,62462,71,9,f +621,62810,71,1,f +621,63082,0,6,f +621,63864,72,20,f +621,63864,28,16,f +621,63869,0,2,f +621,63965,70,9,f +621,64567,80,1,f +621,64567,80,1,t +621,64799,71,2,f +621,64951,70,2,f +621,6536,72,26,f +621,6541,0,2,f +621,6553,72,3,f +621,6558,1,25,f +621,6587,28,12,f +621,6589,19,1,t +621,6589,19,2,f +621,6632,0,2,f +621,6632,1,8,f +621,6636,71,12,f +621,6636,70,14,f +621,74698,0,3,f +621,75937,0,1,f +621,85984,28,1,t +621,85984,28,30,f +621,86208,72,2,f +621,87079,70,22,f +621,87082,71,5,f +621,87083,72,10,f +621,87552,0,2,f +621,87580,28,1,f +621,88072,71,2,f +621,90202,0,1,f +621,91988,72,1,f +621,92099,72,2,f +621,92107,72,2,f +621,92280,71,8,f +621,92746,19,1,f +621,92907,71,4,f +621,92946,72,12,f +621,92947,0,1,f +621,92950,19,2,f +621,93273,70,4,f +621,93274,72,8,f +621,96874,25,1,t +621,970c00pr0650,15,1,f +621,970c00pr0693,297,1,f +621,970c00pr0694,308,1,f +621,973pr2648c01,15,1,f +621,973pr2720c01,70,2,f +621,973pr2721c01,297,1,f +621,973pr2723c01,70,2,f +621,973pr2725c01,19,1,f +621,98100pr0001,15,1,f +621,98100pr1001,288,1,f +621,98280,71,6,f +621,98286,71,4,f +621,98313,0,4,f +621,98585,71,3,f +621,99206,71,5,f +621,99207,0,22,f +621,99780,72,5,f +622,10197,72,2,f +622,11438,0,1,f +622,11477,1,2,f +622,15535,4,1,f +622,18587,71,2,f +622,18588,72,2,f +622,22385pr0066,57,1,f +622,22388,57,7,f +622,22388,57,1,t +622,22390,179,1,f +622,22391,179,1,f +622,22392,4,2,f +622,22400,179,1,f +622,22408,179,1,f +622,22410,148,2,f +622,22411,320,1,f +622,22483,57,1,f +622,24078,71,1,f +622,24097,179,1,f +622,2412b,179,6,f +622,2419,1,2,f +622,2436,71,2,f +622,2446,4,1,f +622,2515,148,1,f +622,2780,0,14,f +622,2780,0,1,t +622,2877,72,1,f +622,3022,1,2,f +622,3023,4,4,f +622,3031,71,1,f +622,3039,72,1,f +622,3040b,1,2,f +622,3068b,272,3,f +622,3070bpr0154,4,1,t +622,3070bpr0154,4,1,f +622,32018,72,2,f +622,32056,72,2,f +622,32064a,0,2,f +622,32073,14,1,f +622,32123b,14,4,f +622,32123b,14,1,t +622,32291,4,2,f +622,32348,57,2,f +622,32523,4,2,f +622,3626cpr1780,14,1,f +622,3626cpr1785,179,1,f +622,3626cpr1818,4,1,f +622,3666,4,5,f +622,3700,1,2,f +622,3701,72,1,f +622,3706,0,1,f +622,3708,0,1,f +622,3710,272,5,f +622,3713,4,1,t +622,3713,4,4,f +622,3795,1,2,f +622,3894,1,4,f +622,4032a,14,1,f +622,4070,1,2,f +622,41769,1,1,f +622,41770,1,1,f +622,4185,57,2,f +622,42610,71,1,f +622,4274,71,6,f +622,4274,71,1,t +622,43093,1,3,f +622,43710,1,1,f +622,43711,1,1,f +622,43719,57,1,f +622,44294,71,1,f +622,4503,179,1,f +622,4733,72,1,f +622,48493,0,1,f +622,4865b,57,1,f +622,48729b,71,1,t +622,48729b,71,2,f +622,55982,0,1,f +622,59426,72,1,f +622,6070,272,2,f +622,60752,179,2,f +622,61184,71,1,f +622,6141,57,28,f +622,6141,57,1,t +622,64647,4,1,t +622,64647,4,1,f +622,6585,0,1,f +622,6589,19,2,f +622,76764,179,1,f +622,76764,179,1,t +622,87083,72,2,f +622,92280,0,2,f +622,93062c02,179,2,f +622,93274,72,4,f +622,94925,71,4,f +622,970c00pr0936,72,1,f +622,970c00pr0969,4,1,f +622,973pr3149c01,72,1,f +622,973pr3191c01,4,1,f +623,2348b,33,1,f +623,2349a,0,1,f +623,2412b,7,2,f +623,2420,0,2,f +623,2422,0,1,f +623,2444,14,2,f +623,2780,0,6,f +623,2920,0,1,f +623,2926,0,2,f +623,2927,0,4,f +623,298c02,14,1,f +623,298c02,14,1,t +623,3010,14,3,f +623,3010,0,2,f +623,30194,8,1,f +623,3020,4,2,f +623,3020,0,1,f +623,3020,15,1,f +623,30228,8,1,f +623,3023,14,2,f +623,3029,14,1,f +623,3031,0,1,f +623,3032,0,1,f +623,3068b,15,1,f +623,3069bp50,15,1,f +623,3069bp52,15,1,f +623,3070b,34,1,t +623,3070b,36,2,f +623,3070b,34,2,f +623,3070b,36,1,t +623,32065,14,4,f +623,3460,0,2,f +623,3622,14,2,f +623,3623,0,2,f +623,3626bp03,14,1,f +623,3626bp04,14,1,f +623,3633,0,2,f +623,3710,0,1,f +623,3795,4,1,f +623,3823,41,1,f +623,3829c01,15,1,f +623,3832,0,2,f +623,3833,15,2,f +623,3937,7,4,f +623,4022,0,1,f +623,4084,0,4,f +623,4085c,0,12,f +623,4214,0,1,f +623,4349,4,2,f +623,4477,0,1,f +623,4488,7,4,f +623,4624,14,4,f +623,4865a,14,4,f +623,55295,8,1,f +623,55296,8,1,f +623,55297,8,1,f +623,55298,8,1,f +623,55299,8,1,f +623,55300,8,1,f +623,6016,0,1,f +623,6134,4,4,f +623,6541,14,2,f +623,6583,14,2,f +623,73092,0,1,f +623,73983,0,1,f +623,970c00,8,2,f +623,973px8c01,1,2,f +624,298c02,0,4,f +624,3004p06,15,1,f +624,3021,15,4,f +624,3023,15,5,f +624,3024,34,3,f +624,3024,36,2,f +624,3040b,15,2,f +624,3068bp08,15,2,f +624,3069b,15,2,f +624,3069bp06,15,2,f +624,3612,15,8,f +624,3613,15,2,f +624,3623,15,2,f +624,3626apr0001,14,2,f +624,3660p01,15,1,f +624,3679,7,1,f +624,3680,0,1,f +624,3794a,15,3,f +624,3795,15,1,f +624,3838,4,1,f +624,3838,1,1,f +624,3842b,1,1,f +624,3842b,4,1,f +624,3956,15,4,f +624,3957a,36,2,f +624,3958,0,1,f +624,3963,15,2,f +624,4032a,0,2,f +624,4085b,0,2,f +624,4089,0,2,f +624,4220,15,2,f +624,4221,0,4,f +624,4229,0,4,f +624,4286,15,2,f +624,4349,15,4,f +624,4588,36,2,f +624,4589,36,2,f +624,4598,15,2,f +624,4735,0,2,f +624,4757,15,1,f +624,4758,15,1,f +624,4760c01,15,1,f +624,4767,15,1,f +624,4773,46,2,f +624,4773,34,2,f +624,4773,36,2,f +624,4774c02,15,1,f +624,73590c01a,46,2,f +624,792c02,15,2,f +624,970c00,4,1,f +624,970c00,1,1,f +624,973p90c02,4,1,f +624,973pr1594c01,1,1,f +625,2458,15,1,f +625,3001,70,3,f +625,3002,70,4,f +625,3003,70,4,f +625,3004,19,4,f +625,3004,70,7,f +625,3005,70,2,f +625,3005,15,2,f +625,3010,70,1,f +625,3020,19,3,f +625,3021,70,2,f +625,3021,19,1,f +625,3022,70,6,f +625,3022,19,3,f +625,3023,70,2,f +625,3023,15,1,f +625,30363,70,5,f +625,3039,70,4,f +625,3040b,15,2,f +625,3298,70,2,f +625,3660,70,4,f +625,3660,19,1,f +625,3665,15,2,f +625,3679,71,1,f +625,3680,0,1,f +625,3700,14,1,f +625,3747b,70,2,f +625,3794b,19,1,f +625,3956,0,2,f +625,54200,36,1,f +625,54200,36,1,t +625,6141,15,1,t +625,6141,19,1,t +625,6141,15,2,f +625,6141,19,4,f +627,3004,19,4,f +627,3004,70,2,f +627,3005,19,2,f +627,3005,70,4,f +627,3020,70,1,f +627,3022,19,3,f +627,3023,70,1,f +627,3023,19,1,f +627,3039,19,1,f +627,3660,19,2,f +627,3710,70,1,f +627,3794a,19,4,f +627,41855,19,1,f +627,44301a,70,2,f +627,44302a,19,3,f +627,44567a,19,1,f +627,4589,19,2,f +627,49668,19,2,f +630,2446,15,1,f +630,2446px5,1,1,f +630,2446px5,2,1,f +630,2446px5,15,1,f +630,2446px9,4,1,f +630,2447,41,1,f +630,2447,0,4,f +630,3629,6,1,f +630,3629,7,1,f +630,3629,15,1,f +630,3629,1,1,f +630,3878,0,1,f +630,3898,15,1,f +630,3901,0,1,f +630,3901,6,1,f +630,4485,15,1,f +630,4485,0,1,f +630,4485,1,1,f +630,4485,2,1,f +630,4485,4,1,f +630,6093,4,1,f +630,6093,0,1,f +630,6093,6,1,f +635,3006,4,1,f +635,3006,15,2,f +635,3007,4,2,f +635,3007,15,1,f +635,702,15,1,f +635,702,4,2,f +637,23306,383,1,f +637,2412b,72,8,f +637,2412b,14,2,f +637,2412b,0,2,f +637,2420,71,2,f +637,2431,72,2,f +637,2436,0,2,f +637,2444,72,2,f +637,2450,272,2,f +637,2458,19,1,f +637,298c02,71,1,f +637,298c02,71,1,t +637,3004,71,2,f +637,3010,72,4,f +637,3020,0,1,f +637,3020,14,1,f +637,3021,71,1,f +637,3021,19,1,f +637,3022,72,4,f +637,3023,19,1,f +637,3023,72,1,f +637,3024,320,2,f +637,3031,0,4,f +637,3034,72,1,f +637,3034,71,1,f +637,30365,71,2,f +637,30365,0,2,f +637,30367apr01,15,1,f +637,30374,0,4,f +637,30374,41,1,f +637,30382,379,4,f +637,30383,0,2,f +637,30387,71,2,f +637,30389b,71,1,f +637,3044b,19,1,f +637,30503,0,2,f +637,30503,72,4,f +637,30565,379,2,f +637,3062b,71,4,f +637,3068b,72,2,f +637,3068b,272,3,f +637,3068b,71,2,f +637,32062,0,1,f +637,32064b,72,4,f +637,3622,71,2,f +637,3626bpx298,78,1,f +637,3660,15,1,f +637,3666,71,2,f +637,3700,15,1,f +637,3710,0,2,f +637,3747b,15,1,f +637,3747b,14,2,f +637,3795,72,1,f +637,3937,72,1,f +637,3960pr13,40,1,f +637,4070,0,2,f +637,4079,70,1,f +637,4081b,71,6,f +637,4085c,72,8,f +637,4095,71,2,f +637,4150pr0002,19,2,f +637,4150pr0005,15,1,f +637,41532,0,2,f +637,4162,14,4,f +637,41677,19,2,f +637,41769,72,1,f +637,41770,72,1,f +637,4210,71,1,t +637,4210,71,2,f +637,42446,0,2,f +637,42610,71,4,f +637,4286,0,2,f +637,43710,14,1,f +637,43711,14,1,f +637,43722,14,1,f +637,43723,14,1,f +637,44300,72,1,f +637,44302a,71,2,f +637,44568,71,2,f +637,44570,71,2,f +637,4477,72,2,f +637,4530,86,1,f +637,4589,41,2,f +637,4589,36,6,f +637,47753,72,1,f +637,47753,272,1,f +637,50304,14,1,f +637,50305,14,1,f +637,50986pr0001,40,1,f +637,51000,14,4,f +637,6091,0,2,f +637,6134,0,1,f +637,6141,41,2,f +637,6141,72,6,f +637,6141,72,1,t +637,6141,41,1,t +637,6587,72,4,f +637,6636,272,4,f +637,970c00,0,1,f +637,973pb0363c01,0,1,f +639,14226c41,0,1,f +639,3003,15,20,f +639,3005,15,20,f +639,3062b,15,1,t +639,3062b,41,4,f +639,3062b,15,4,f +639,3679,71,5,f +639,3680,15,5,f +639,3857,15,2,f +639,44301a,4,2,f +639,44302a,4,2,f +639,6141,41,1,t +639,6141,46,3,f +639,6141,182,4,f +639,6141,36,1,t +639,6141,41,6,f +639,6141,34,4,f +639,6141,34,1,t +639,6141,15,6,f +639,6141,36,3,f +639,6141,15,1,t +639,6141,182,1,t +640,3001,15,5,f +640,3002,15,2,f +640,3003,15,3,f +640,3004,0,2,f +640,3004,15,9,f +640,3007,15,1,f +640,3009,15,11,f +640,3009p22,15,10,f +640,3009p23,15,12,f +640,3009p24,15,10,f +640,3010,15,2,f +640,3020,15,5,f +640,3020,0,1,f +640,3021,15,3,f +640,3022,0,3,f +640,3023,0,5,f +640,3023,15,9,f +640,3024,0,2,f +640,3024,15,8,f +640,3024,34,1,f +640,3024,36,1,f +640,3027,0,1,f +640,3028,0,1,f +640,3029,15,1,f +640,3031,15,1,f +640,3033,15,1,f +640,3036,0,1,f +640,3037,15,1,f +640,3039,15,3,f +640,3040b,15,6,f +640,3069b,4,6,f +640,3298,15,1,f +640,3456,15,1,f +640,3622,15,12,f +640,3660,15,2,f +640,3665,15,8,f +640,3666,0,2,f +640,3666,15,4,f +640,3678a,15,6,f +640,3678a,0,1,f +640,3710,15,1,f +640,3710,0,2,f +640,3794a,15,1,f +640,3795,15,3,f +640,3958,15,1,f +640,4289,15,1,f +640,4477,15,2,f +641,2335,1,1,f +641,2412b,1,23,f +641,2432,14,6,f +641,2432,15,2,f +641,2444,0,4,f +641,2445,72,4,f +641,2447,40,1,t +641,2449,15,4,f +641,2453a,15,2,f +641,2453a,25,2,f +641,2456,1,1,f +641,2458,15,1,f +641,2460,72,5,f +641,2465,72,2,f +641,2476a,71,2,f +641,2479,0,1,f +641,2540,15,5,f +641,2555,15,1,f +641,2569,72,1,t +641,2569,72,1,f +641,2584,0,1,f +641,2585,71,1,f +641,2610,14,1,f +641,2637,71,4,f +641,2654,15,1,f +641,2714a,71,2,f +641,2907,71,1,f +641,298c02,71,3,f +641,298c02,71,2,t +641,3001,1,9,f +641,3003,15,4,f +641,3003,1,2,f +641,30033,15,1,f +641,3004,71,5,f +641,3005,25,2,f +641,3005,15,4,f +641,3008,15,1,f +641,30086,25,1,f +641,30088,0,1,f +641,3010,15,8,f +641,30162,72,1,f +641,30179,72,5,f +641,3020,72,7,f +641,3020,71,5,f +641,3021,15,1,f +641,3022,15,8,f +641,3022,25,3,f +641,3023,72,1,f +641,3023,46,4,f +641,3024,36,1,f +641,3024,34,1,f +641,3030,72,3,f +641,3031,1,2,f +641,3032,72,5,f +641,3032,15,1,f +641,3034,71,1,f +641,30340,14,3,f +641,30367b,15,1,f +641,30367b,25,4,f +641,3037,15,1,f +641,30372,40,1,f +641,30395,72,1,f +641,3039pr0002,15,1,f +641,3039pr0005,15,1,f +641,30407,72,2,f +641,30504,15,4,f +641,30562,25,2,f +641,30602,1,1,f +641,3062b,15,5,f +641,3062b,4,2,f +641,3068b,1,1,f +641,3068bpr0137,15,2,f +641,3069b,33,6,f +641,3069bpr0030,15,1,f +641,3069bpr0101,71,1,f +641,32002,72,1,t +641,32002,72,1,f +641,32039,71,1,f +641,32062,4,3,f +641,32064b,72,2,f +641,32123b,14,4,f +641,32123b,14,1,t +641,32449,71,2,f +641,32529,71,2,f +641,3308,15,1,f +641,3623,72,1,f +641,3623,15,1,f +641,3623,1,2,f +641,3660,15,1,f +641,3666,1,5,f +641,3673,71,1,t +641,3673,71,1,f +641,3679,71,1,f +641,3680,0,1,f +641,3700,15,2,f +641,3705,0,1,f +641,3706,0,1,f +641,3708,0,2,f +641,3710,72,3,f +641,3713,71,1,t +641,3713,71,1,f +641,3747b,15,1,f +641,3795,71,1,f +641,3795,15,1,f +641,3829c01,1,1,f +641,3894,25,2,f +641,3899,4,2,f +641,3937,15,4,f +641,3938,71,4,f +641,3942c,15,1,f +641,3942c,4,1,f +641,3962b,0,1,f +641,40490,71,1,f +641,4070,15,3,f +641,4079,1,5,f +641,4081b,1,1,f +641,4151b,72,1,f +641,41531,15,1,f +641,4162,71,6,f +641,41747,15,1,f +641,41748,15,1,f +641,4175,0,5,f +641,4274,1,12,f +641,4274,1,2,t +641,4282,72,2,f +641,4285b,72,1,f +641,43093,1,2,f +641,43337,71,2,f +641,43722,72,1,f +641,43723,72,1,f +641,44126,15,1,f +641,44301a,72,4,f +641,4485,1,1,f +641,4589,46,2,f +641,4589,72,3,f +641,4599a,4,2,f +641,4599a,71,2,f +641,4623,71,12,f +641,4714,15,1,f +641,4740,36,1,f +641,47905,72,1,f +641,48092,15,4,f +641,48183,1,1,f +641,4854,15,1,f +641,4855,15,1,f +641,4868b,25,4,f +641,4868b,15,1,f +641,4873,0,2,f +641,52040,72,2,f +641,53989,15,8,f +641,55013,72,3,f +641,55767,25,2,f +641,56823c50,0,1,f +641,57779,0,1,f +641,57895,40,4,f +641,58827,72,12,f +641,59275,25,2,f +641,59349,41,1,f +641,59426,72,4,f +641,59443,14,1,f +641,59443,71,1,f +641,6003,72,4,f +641,60169,72,1,f +641,6019,71,4,f +641,6020,0,1,f +641,6041,0,1,f +641,60474,15,1,f +641,60475a,15,1,f +641,60477,15,4,f +641,6087,71,2,f +641,6141,1,1,t +641,6141,71,1,t +641,6141,1,4,f +641,6141,46,2,f +641,6141,71,2,f +641,6141,46,2,t +641,61485,15,1,f +641,6232,71,2,f +641,6249,72,4,f +641,63965,15,2,f +641,6587,72,9,f +641,6636,25,4,f +641,75c17,1,2,f +641,76041c02,0,1,f +642,3624,15,1,f +642,3626bpr0411,14,1,f +642,3900,15,1,t +642,3900,15,1,f +642,6141,33,2,t +642,6141,33,1,f +642,970c00,0,1,f +642,973pr1188c01,0,1,f +646,2343,47,2,f +646,2412b,4,4,f +646,2431,7,3,f +646,2439,8,1,f +646,2449,0,4,f +646,2456,0,2,f +646,2456,4,3,f +646,2456,14,1,f +646,2470,0,2,f +646,2489,6,1,f +646,2493b,0,2,f +646,2512,14,1,f +646,2871a,0,2,f +646,2878c01,0,6,f +646,2880,0,2,f +646,2920,0,8,f +646,2921,0,4,f +646,2926,4,1,f +646,298c02,7,1,t +646,298c02,7,1,f +646,3001,14,1,f +646,30022,14,2,f +646,3003,0,2,f +646,3004,0,6,f +646,3008,0,2,f +646,3009,0,4,f +646,3010,0,2,f +646,30104,8,1,f +646,30137,6,12,f +646,30150,6,2,f +646,3020,4,3,f +646,3020,7,7,f +646,3021,14,2,f +646,3022,4,12,f +646,3023,4,5,f +646,3024,46,2,f +646,3027,0,3,f +646,3030,4,1,f +646,3031,4,2,f +646,3034,0,5,f +646,3035,14,2,f +646,3037,0,2,f +646,3038,0,2,f +646,3039,0,2,f +646,3040b,8,4,f +646,3040b,0,2,f +646,3062b,8,8,f +646,3069bpr0099,15,1,f +646,3069bpr0100,2,1,f +646,3225stk01,9999,1,t +646,3297,0,10,f +646,3298,14,2,f +646,3460,0,2,f +646,3624,0,1,f +646,3626bp03,14,2,f +646,3626bp05,14,1,f +646,3660,0,4,f +646,3665,0,2,f +646,3666,4,2,f +646,3700,14,7,f +646,3710,8,6,f +646,3795,4,2,f +646,3832,0,1,f +646,3833,15,1,f +646,3836,6,1,f +646,3837,8,1,f +646,3839b,0,1,f +646,3841,8,1,f +646,3901,0,1,f +646,3941,0,1,f +646,3960,0,1,f +646,4022,0,8,f +646,4032a,4,1,f +646,4032a,7,2,f +646,4034,41,6,f +646,4070,8,2,f +646,4079,2,3,f +646,4161,0,2,f +646,4175,4,4,f +646,4176,41,2,t +646,4274,7,1,f +646,4274,7,1,t +646,4275b,4,2,f +646,4345b,14,1,f +646,4346p03,14,1,f +646,4349,7,1,f +646,4460a,8,4,f +646,4738a,6,1,f +646,4739a,6,1,f +646,6112,4,4,f +646,6556,4,6,f +646,6558,0,2,f +646,6583,8,4,f +646,6583,14,2,f +646,6636,7,8,f +646,70358,0,1,f +646,73092,0,8,f +646,970c00,1,1,f +646,970c00,8,2,f +646,973p83c01,14,1,f +646,973px28c01,15,1,f +646,973px8c01,1,1,f +647,2357,0,1,f +647,2431,36,2,f +647,2436,15,1,f +647,2444,0,2,f +647,2540,15,7,f +647,2555,15,2,f +647,2653,71,2,f +647,2780,0,4,t +647,2780,0,26,f +647,3001,0,1,f +647,3002,72,5,f +647,3003,0,2,f +647,30031,0,1,f +647,3004,15,3,f +647,3004,72,4,f +647,3005,15,1,f +647,3009,0,1,f +647,3010,15,1,f +647,30173b,179,1,f +647,30177,0,1,f +647,30177,1,1,f +647,3020,71,3,f +647,3020,15,2,f +647,3021,15,1,f +647,3021,71,5,f +647,3022,15,2,f +647,3022,71,1,f +647,3023,15,7,f +647,3023,36,2,f +647,3023,71,2,f +647,30374,297,1,f +647,30377,15,1,t +647,30377,15,1,f +647,3038,0,2,f +647,30414,0,2,f +647,3048c,15,4,f +647,3068bpr0187,15,1,f +647,32014,0,1,f +647,32015,71,2,f +647,32018,0,4,f +647,32054,4,1,f +647,32062,4,2,f +647,32123b,14,1,t +647,32123b,14,6,f +647,32316,0,3,f +647,32333,0,2,f +647,32523,15,5,f +647,3626bpr0745,14,1,f +647,3626bpr0746,14,1,f +647,3626bpr0751a,15,1,f +647,3647,72,1,f +647,3648b,72,1,f +647,3666,0,2,f +647,3673,71,1,t +647,3673,71,1,f +647,3700,0,4,f +647,3701,72,1,f +647,3702,0,1,f +647,3710,0,3,f +647,3747b,15,1,f +647,3795,0,1,f +647,3795,71,2,f +647,3832,72,1,f +647,3894,72,3,f +647,4032a,0,1,f +647,40379,15,6,f +647,4081b,15,2,f +647,4081b,0,2,f +647,41769,0,2,f +647,41770,0,2,f +647,41854,85,3,f +647,42610,71,2,f +647,4274,71,2,f +647,4274,71,1,t +647,43093,1,2,f +647,43710,0,1,f +647,43711,0,1,f +647,43722,85,1,f +647,43722,15,3,f +647,43723,85,1,f +647,43723,15,3,f +647,44126,15,1,f +647,44675,0,1,f +647,44728,71,2,f +647,4497,308,1,f +647,4589,72,8,f +647,47753,0,2,f +647,48336,0,4,f +647,50943,0,1,f +647,50950,85,2,f +647,50950,15,2,f +647,53451,15,12,f +647,53451,15,2,t +647,53989,15,6,f +647,53992,0,2,f +647,56145,0,6,f +647,59426,72,2,f +647,59443,71,2,f +647,60219,71,1,f +647,60470a,71,2,f +647,60477,0,1,f +647,60483,0,1,f +647,60484,71,2,f +647,6141,85,2,f +647,6141,85,1,t +647,6232,4,2,f +647,62462,15,2,f +647,63868,0,4,f +647,63965,0,2,f +647,64712,0,4,f +647,6558,1,7,f +647,6587,28,4,f +647,85959pat0001,36,2,f +647,85970,15,2,f +647,87083,72,1,f +647,87087,4,4,f +647,87747,15,2,f +647,87747,297,1,f +647,92690,297,1,f +647,93059,19,1,f +647,93061,15,2,f +647,93061,15,1,t +647,93062c01,15,2,f +647,93271pr0001,15,1,f +647,94071pr0002,0,1,f +647,970c00pr0191,0,1,f +647,970c00pr0192,1,1,f +647,973pr1717c01,1,1,f +647,973pr1718c01,0,1,f +651,30361c,15,1,f +651,3626b,15,1,f +651,3626bpr0387,14,1,f +651,3705,0,1,f +651,3878,0,1,f +651,3943b,15,1,f +651,4081b,15,1,t +651,4081b,15,2,f +651,4332,0,1,f +651,4530,0,1,f +651,59900,15,2,f +651,59900,15,1,t +651,6141,15,1,f +651,6141,15,1,t +651,970c00,1,1,f +651,973pr1201c01,15,1,f +653,15501,72,1,f +653,23012,320,1,f +653,2528pr0008,0,1,f +653,3626cpr1734,71,1,f +653,60752,179,1,f +653,88646,0,1,f +653,973pr3119c01,320,1,f +654,2780,0,2,f +654,32054,0,2,f +654,32062,0,2,f +654,32174,72,5,f +654,32209,15,1,f +654,32270,7,3,f +654,32533pb001,36,1,f +654,3705,0,2,f +654,3713,7,2,f +654,43093,1,4,f +654,4519,7,2,f +654,47296,72,4,f +654,47297,320,2,f +654,47298,320,2,f +654,47299,320,2,f +654,47305,320,1,f +654,47306,320,1,f +654,47308,320,1,f +654,47310,320,2,f +654,47311,320,2,f +654,47312,72,1,f +654,47313,42,1,f +654,47318,179,1,f +654,49423,320,1,f +654,6538b,72,1,f +655,11100,297,2,f +655,11816pr0018,78,1,f +655,13965,19,2,f +655,14769,30,1,f +655,14769pr1017,30,1,f +655,15573,297,1,f +655,15573,15,3,f +655,15712,297,2,f +655,18674,15,1,f +655,18920,179,1,f +655,19206pr0001,31,1,f +655,20379pr0001,15,1,f +655,2420,70,2,f +655,2431pr0078,15,1,f +655,2453b,19,2,f +655,3003,15,1,f +655,3003,70,1,f +655,3004,70,3,f +655,3005,52,2,f +655,3020,26,1,f +655,3021,15,1,f +655,30237a,70,1,f +655,3024,47,3,f +655,3024,4,1,f +655,3024,4,1,t +655,3024,2,1,f +655,3024,0,1,f +655,3024,47,1,t +655,3024,0,1,t +655,3024,2,1,t +655,3031,19,1,f +655,3032,30,1,f +655,3040b,19,2,f +655,3065,52,2,f +655,3068bpr0247,19,1,f +655,3069b,85,3,f +655,3069b,70,2,f +655,3069bpr0055,15,1,f +655,33183,70,1,t +655,33183,70,2,f +655,33291,31,1,t +655,33291,31,1,f +655,3622,15,1,f +655,3622,70,4,f +655,3623,15,2,f +655,3710,70,1,f +655,3710,26,1,f +655,3839b,71,1,f +655,4070,19,2,f +655,4081b,26,4,f +655,4599b,71,1,f +655,4599b,71,1,t +655,4697b,71,1,f +655,4697b,71,1,t +655,4865b,19,1,f +655,50950,85,2,f +655,54200,297,1,t +655,54200,297,1,f +655,6141,45,1,t +655,6141,45,1,f +655,6141,85,1,t +655,6141,85,2,f +655,6231,15,2,f +655,64647,15,3,f +655,64647,15,1,t +655,6636,15,1,f +655,85984,30,1,f +655,87079pr0067,26,1,f +655,87087,15,1,f +655,92456pr0072c01,78,1,f +655,98138,297,1,t +655,98138,52,1,t +655,98138,52,1,f +655,98138,297,3,f +655,98138pr0018,84,1,f +655,98138pr0018,84,1,t +655,98388pr0006,15,1,f +655,99207,71,2,f +655,99780,15,1,f +656,10288,308,1,f +656,15339,148,1,f +656,15341,179,2,f +656,15343,179,2,f +656,15351,179,1,f +656,15353,25,1,f +656,15354,27,1,f +656,15355,1,1,f +656,15358pat0002,41,3,f +656,15391,0,1,f +656,15392,72,1,f +656,2780,0,4,f +656,30374,42,4,f +656,32002,19,1,f +656,32054,0,2,f +656,32073,71,1,f +656,32187,71,2,f +656,32271,25,2,f +656,32449,0,2,f +656,32523,0,2,f +656,32557,0,1,f +656,3626b,27,1,f +656,3706,0,1,f +656,3713,71,2,f +656,41531,148,1,f +656,42003,71,1,f +656,4274,1,2,f +656,43093,1,2,f +656,4519,71,1,f +656,48729b,0,4,f +656,48989,71,1,f +656,53989,148,2,f +656,58176,182,2,f +656,59443,14,1,f +656,59900,42,4,f +656,60115,0,1,f +656,61184,71,4,f +656,6141,42,5,f +656,62462,0,2,f +656,64451,72,2,f +656,64713,25,1,f +656,6553,0,2,f +656,6558,1,5,f +656,6587,28,1,f +656,85940,0,2,f +656,90611,0,2,f +656,90617,72,4,f +656,90622,0,2,f +656,90625,0,1,f +656,90639pr0031,179,2,f +656,90640,148,2,f +656,90641,25,4,f +656,93571,0,2,f +656,98138pr0019,15,1,f +656,98577,72,1,f +656,98585,42,2,f +656,98592,148,2,f +658,2838c01,7,1,f +659,2343,47,1,f +659,3626bpb0174,14,1,f +659,3898,15,1,f +659,6254,15,1,f +659,970c00,7,1,f +659,973pr1196c01,15,1,f +660,3626bpr0126,14,1,f +660,4485,0,1,f +660,4485,0,1,t +660,970c00,0,1,f +660,973px65c01,15,1,f +661,2412b,4,4,f +661,2412b,0,11,f +661,2431,0,1,f +661,2431,15,1,f +661,2431,4,1,f +661,2445,72,2,f +661,2445,4,3,f +661,2456,71,2,f +661,2456,4,5,f +661,2780,0,1,t +661,2780,0,22,f +661,2817,0,2,f +661,2877,0,16,f +661,3001,71,3,f +661,3002,4,3,f +661,3004,4,3,f +661,3005,71,2,f +661,3005,4,4,f +661,3006,4,2,f +661,3007,4,1,f +661,3007,71,1,f +661,3008,1,1,f +661,30099,4,2,f +661,3010,4,6,f +661,3020,4,5,f +661,3020,0,3,f +661,3021,71,2,f +661,3021,4,12,f +661,3022,4,4,f +661,3023,71,4,f +661,3023,4,8,f +661,3023,0,8,f +661,3030,0,1,f +661,3033,0,1,f +661,3034,0,2,f +661,3034,4,1,f +661,3036,1,1,f +661,30363pb008,4,1,f +661,30363pb009,4,1,f +661,3039,71,2,f +661,3039,4,2,f +661,30414,4,3,f +661,3068b,0,1,f +661,3068b,4,7,f +661,3069b,71,1,f +661,3069b,4,20,f +661,3069b,0,3,f +661,3070b,4,1,t +661,3070b,4,4,f +661,32000,0,3,f +661,32018,0,2,f +661,32056,0,4,f +661,32064b,71,2,f +661,32123b,71,1,t +661,32123b,71,1,f +661,32198,71,1,f +661,32209,0,4,f +661,32316,0,2,f +661,3245b,4,4,f +661,32526,0,4,f +661,32530,1,4,f +661,32555,4,2,f +661,3308,4,4,f +661,3456,0,2,f +661,3622,4,4,f +661,3623,4,12,f +661,3665,0,2,f +661,3666,4,2,f +661,3666,0,2,f +661,3700,71,2,f +661,3702,4,1,f +661,3703,4,2,f +661,3705,0,1,f +661,3707,0,1,f +661,3710,4,6,f +661,3710,0,4,f +661,3713,71,4,f +661,3713,71,1,t +661,3794a,4,5,f +661,3795,71,2,f +661,3795,1,1,f +661,3795,0,2,f +661,3832,0,1,f +661,3832,4,2,f +661,3894,4,2,f +661,3937,4,6,f +661,3938,71,6,f +661,3958,0,1,f +661,3958,4,1,f +661,4081b,4,2,f +661,4150px21,0,2,f +661,4162,0,2,f +661,4162,4,5,f +661,41749,40,1,f +661,41750,40,1,f +661,41767,0,1,f +661,41767,4,2,f +661,41768,4,2,f +661,41768,0,1,f +661,41769,4,5,f +661,41770,4,5,f +661,42022,4,2,f +661,42022,40,6,f +661,4274,71,2,t +661,4274,71,6,f +661,4286,4,5,f +661,4287,4,2,f +661,43093,1,5,f +661,4349,71,2,f +661,43719,4,1,f +661,43722,4,2,f +661,43723,4,2,f +661,44292,80,4,f +661,44301a,72,4,f +661,44302a,72,4,f +661,44309,0,4,f +661,4460b,4,2,f +661,4477,4,5,f +661,44822,72,1,f +661,4623,4,2,f +661,46413,40,1,f +661,50950,4,4,f +661,50955,4,2,f +661,50956,4,2,f +661,50967,4,6,f +661,6091,4,2,f +661,6112,71,2,f +661,6112,4,1,f +661,6141,71,2,t +661,6141,36,1,t +661,6141,80,1,t +661,6141,0,1,t +661,6141,71,21,f +661,6141,36,4,f +661,6141,0,2,f +661,6141,80,6,f +661,6191,71,1,f +661,6212,1,2,f +661,6558,0,6,f +661,6564,4,1,f +661,6565,4,1,f +661,6632,1,4,f +661,6636,0,1,f +661,6636,4,14,f +662,64251,0,1,f +662,64262,57,1,f +662,87794,0,1,f +662,87796,25,3,f +662,87797,0,2,f +662,87798,0,2,f +662,87799,182,1,f +662,87815,0,1,f +662,87816,0,1,f +662,87817,0,1,f +662,93571,0,3,f +663,2926,0,4,f +663,30027,7,9,f +663,30028,0,8,f +663,3641,0,8,f +663,4600,7,4,f +663,4624,7,8,f +663,6014,7,8,f +663,6015,0,8,f +663,6157,0,4,f +666,3176,71,1,f +666,3794b,72,1,f +666,3937,72,1,f +666,57899,0,1,f +666,58247,0,1,f +666,60897,72,2,f +666,6134,1,1,f +666,85984,71,1,f +666,92738,0,1,f +666,93273,71,1,f +667,2757,7,2,f +667,3069b,14,2,f +667,3069b,0,2,f +667,3069b,4,2,f +667,3069b,7,2,f +667,3069b,2,2,f +667,766c01,7,12,f +667,x157,15,12,f +667,x466,7,6,f +668,3001,15,1,f +668,3004,15,1,f +668,3005pb013,15,1,f +668,3005pr0003,15,1,f +668,3021,15,1,f +668,3022,15,3,f +668,3023,15,1,f +668,3023,0,1,f +668,3024,15,2,f +668,3035,4,1,f +668,3039,15,1,f +668,3298,15,1,f +668,3660,15,3,f +668,3678b,15,1,f +668,3794b,15,1,f +668,4032a,4,1,f +668,4070,15,4,f +668,4613985box,47,1,f +668,49668,15,2,f +668,50950,15,2,f +668,54200,15,1,f +668,85984,15,1,f +671,3020,2,1,f +671,3062b,4,4,f +671,33291,10,2,f +671,3666,4,2,f +671,3710,4,1,f +671,54200,0,2,f +671,61409,0,2,f +671,6141,0,4,f +673,3003,4,4,f +673,3010,14,4,f +673,3027,4,1,f +673,3033,14,1,f +673,3185,14,2,f +673,3741,2,2,f +673,3742,15,3,f +673,3742,14,3,f +673,3742,14,1,t +673,3742,15,1,t +673,3899,1,1,f +673,3900,7,2,f +673,4222a,450,1,f +673,4433,14,1,f +673,4440,4,1,f +673,4461,1,1,f +673,4607,1,2,f +673,4608,14,4,f +673,4608,1,2,f +673,4612,1,1,f +673,4613c01,1,1,f +673,4616ac01,1,1,f +673,608,2,1,f +673,787c01,14,2,f +673,787c02,4,3,f +673,787c03,14,1,f +673,fab4d,9999,1,f +673,fab9a,9999,1,f +673,fab9c,9999,1,f +673,fabad5c01,450,1,f +673,fabbc1,4,1,f +673,fabca2,450,1,f +673,fabed4,7,1,f +673,x636c02,4,3,f +674,2913c01,1,1,f +676,11610,19,1,f +676,11816pr0005,78,1,f +676,30222,42,1,f +676,3023,19,6,f +676,3040b,29,2,f +676,3040b,5,3,f +676,3070b,29,1,t +676,3070b,29,1,f +676,3660,19,1,f +676,3794b,15,2,f +676,3795,323,2,f +676,3839b,15,1,f +676,4489b,70,2,f +676,4600,71,1,f +676,6141,70,1,f +676,6141,29,1,t +676,6141,29,3,f +676,6141,70,1,t +676,85984,29,1,f +676,90195,15,2,f +676,92258,0,1,f +676,92456pr0011c01,78,1,f +676,92818pr0001c01,272,1,f +678,3036,7,1,f +678,3134,15,1,f +678,394ac48,15,1,f +678,x456c01,47,1,f +680,122c01,0,2,f +680,3004,0,2,f +680,3004,47,1,f +680,3020,0,1,f +680,3021,1,3,f +680,3023,1,1,f +680,3023,0,1,f +680,3039,47,1,f +680,3069bp11,0,1,t +680,3069bp11,0,1,f +680,3624,0,1,f +680,3626apr0001,14,1,f +680,3641,0,4,f +680,3787,1,2,f +680,3795,0,1,f +680,3795,1,1,f +680,970c00,1,1,f +680,973p22c01,0,1,f +681,10247,72,2,f +681,11303,4,1,f +681,11477,1,2,f +681,11477,15,2,f +681,13547,15,2,f +681,13731,15,4,f +681,15068,71,2,f +681,15573,15,2,f +681,15790,0,2,f +681,2340,15,2,f +681,2412b,72,2,f +681,2431,71,2,f +681,2432,1,1,f +681,2445,15,1,f +681,2446,4,1,f +681,2446,0,1,f +681,2447,40,2,f +681,2447,40,1,t +681,24491,9999,1,f +681,2654,4,2,f +681,3005,15,2,f +681,3008,4,2,f +681,3010,15,2,f +681,3021,71,2,f +681,3021,15,2,f +681,3022,4,2,f +681,3023,15,4,f +681,3023,14,3,f +681,3024,34,2,f +681,3024,36,1,t +681,3024,34,1,t +681,3024,36,2,f +681,3030,71,1,f +681,3032,71,2,f +681,3034,72,2,f +681,3039pr0013,15,1,f +681,3068b,71,4,f +681,3069b,71,2,f +681,3069b,33,2,f +681,3070b,15,1,t +681,3070b,15,2,f +681,32028,4,2,f +681,3626cpr0893,14,1,f +681,3626cpr1579,14,1,f +681,3626cpr1664,14,1,f +681,3665,4,2,f +681,3665,15,4,f +681,3673,71,1,t +681,3673,71,2,f +681,3710,4,2,f +681,3747b,71,2,f +681,3832,71,2,f +681,3839b,72,2,f +681,4162,1,2,f +681,4282,15,2,f +681,4477,14,2,f +681,4624,71,6,f +681,4697b,71,1,t +681,4697b,71,1,f +681,47397,15,1,f +681,47398,15,1,f +681,47457,72,3,f +681,4870,71,2,f +681,50859b,0,1,f +681,50860,27,1,f +681,50861,0,2,f +681,50862,71,2,f +681,52501,72,1,f +681,59895,0,6,f +681,60219,72,1,f +681,60479,15,4,f +681,60479,4,2,f +681,60601,41,4,f +681,61252,71,2,f +681,61345,15,2,f +681,6141,72,1,t +681,6141,72,4,f +681,61483,71,1,f +681,6179,15,1,f +681,63864,4,2,f +681,63864,15,2,f +681,63868,15,2,f +681,87611,72,1,f +681,87612,41,1,f +681,87613,15,1,f +681,87989,212,1,f +681,87989,212,1,t +681,88292,15,2,f +681,90194,71,2,f +681,92099,15,2,f +681,92950,15,3,f +681,93140,15,1,f +681,970c00,15,2,f +681,970c00,72,1,f +681,973pr0190c01,27,1,f +681,973pr1914c01,4,1,f +681,973pr1976c01,4,1,f +681,98138,46,1,f +681,98138,33,1,t +681,98138,182,1,t +681,98138,182,4,f +681,98138,46,1,t +681,98138,33,2,f +681,99206,71,2,f +682,2780,0,4,f +682,32034,0,1,f +682,32062,0,2,f +682,32073,0,1,f +682,32174,0,4,f +682,32174,1,1,f +682,32269,7,1,f +682,32270,7,3,f +682,32475,1,2,f +682,32476,73,2,f +682,32482,73,2,f +682,32489,1,1,f +682,32551,1,2,f +682,32553,7,1,f +682,32554,54,1,f +682,32571,33,1,f +682,3706,0,1,f +682,3713,7,2,f +682,4519,0,3,f +685,3626b,0,1,f +685,87556pr0001,0,1,f +685,970c00,0,1,f +685,973pr1148c01,0,1,f +686,2780,0,7,f +686,32062,4,3,f +686,3673,71,2,f +686,4519,71,1,f +686,47306,0,1,f +686,47312,72,1,f +686,47313,57,1,f +686,49423,135,1,f +686,50898,0,6,f +686,50920,0,2,f +686,50923,72,2,f +686,53563,0,2,f +686,55615,71,1,f +686,57526,135,1,f +686,57541,135,1,f +686,60176,0,1,f +686,60902,0,2,f +686,60916pat0001,135,1,f +686,60918,0,1,f +686,60919pat01,0,2,f +686,60928,135,2,f +686,60929,41,4,f +686,60933,135,1,f +686,60934,57,2,f +687,11215,0,2,f +687,11458,72,10,f +687,11477,72,2,f +687,15071,0,1,f +687,15303,36,3,f +687,15400,72,2,f +687,2431,320,2,f +687,2561,70,1,f +687,2780,0,10,f +687,2780,0,2,t +687,2817,0,1,f +687,298c02,71,1,t +687,298c02,71,4,f +687,30048,70,1,f +687,3005,71,4,f +687,3020,72,2,f +687,3021,272,4,f +687,3022,1,1,f +687,30229,72,1,f +687,3023,320,2,f +687,3032,0,1,f +687,3034,272,4,f +687,30367cpr0012,72,2,f +687,30375ps2,1,1,f +687,30376,19,1,f +687,30377,19,1,f +687,30377,19,1,t +687,30378,19,1,f +687,30503,72,2,f +687,3068b,272,2,f +687,32013,71,4,f +687,32014,0,1,f +687,32039,71,2,f +687,32054,0,12,f +687,32062,4,6,f +687,32123b,71,1,t +687,32123b,71,4,f +687,32523,71,14,f +687,3626cpr1381,326,1,f +687,3666,272,8,f +687,3700,71,4,f +687,3710,272,8,f +687,3747b,72,3,f +687,42023,72,2,f +687,43093,1,6,f +687,43710,72,1,f +687,43711,72,1,f +687,43712,72,1,f +687,4733,71,1,f +687,50950,272,8,f +687,50955,379,4,f +687,50956,379,4,f +687,59230,19,1,t +687,59230,19,1,f +687,59426,72,2,f +687,59900,40,1,f +687,59900,36,4,f +687,6003,72,2,f +687,60477,72,2,f +687,6141,297,1,t +687,6141,57,1,t +687,6141,57,2,f +687,6141,297,4,f +687,63868,72,1,f +687,64225,272,2,f +687,6541,0,4,f +687,6587,28,2,f +687,76766,71,1,f +687,85984,71,1,f +687,90194,72,1,f +687,92738,0,1,f +687,95188,379,2,f +687,970c00pr0640,308,1,f +687,973pr2623c01,308,1,f +687,99207,71,2,f +687,99780,0,4,f +688,3062oldpx1,4,3,t +688,3062oldpx1,15,3,t +688,bb108pb01,15,1,f +688,x887px1,15,1,f +690,3134,15,1,f +690,394ac48,15,1,f +690,x456c01,47,1,f +691,3009,6,50,f +692,2431,0,3,f +692,2431,15,2,f +692,2431,7,2,f +692,2450,7,6,f +692,2639,0,2,f +692,2730,0,7,f +692,2736,7,4,f +692,2741,0,1,f +692,2744,0,6,f +692,2780,0,185,f +692,2825,0,10,f +692,2850a,47,8,f +692,2851,14,8,f +692,2852,7,8,f +692,2853,7,2,f +692,2854,8,3,f +692,2905,0,16,f +692,3002,7,1,f +692,3005,0,2,f +692,3021,0,4,f +692,3021,7,2,f +692,3022,7,4,f +692,3023,0,2,f +692,3023,7,5,f +692,3039,7,2,f +692,3062b,7,1,f +692,3068b,0,1,f +692,3176,0,4,f +692,32000,7,7,f +692,32000,15,4,f +692,32000,0,16,f +692,32001,0,5,f +692,32002,8,15,f +692,32005b,8,2,f +692,32009,15,4,f +692,32009,0,12,f +692,32013,7,2,f +692,32013,4,6,f +692,32013,0,16,f +692,32014,0,2,f +692,32014,4,10,f +692,32015,0,4,f +692,32015,4,14,f +692,32016,4,10,f +692,32016,0,8,f +692,32016,7,4,f +692,32017,0,30,f +692,32017,1,4,f +692,32017,4,4,f +692,32017,7,2,f +692,32018,0,3,f +692,32028,0,2,f +692,32034,7,4,f +692,32034,0,8,f +692,32034,4,8,f +692,32039,0,5,f +692,32039,4,2,f +692,32039,7,6,f +692,32054,4,23,f +692,32056,0,16,f +692,32056,4,2,f +692,32062,0,74,f +692,32063,4,2,f +692,32063,7,4,f +692,32063,0,10,f +692,32064a,0,2,f +692,32068,0,8,f +692,32069,0,2,f +692,32073,0,20,f +692,32123b,7,27,f +692,32124,7,4,f +692,32124,0,1,f +692,32125,14,1,f +692,32126,7,4,f +692,32138,0,2,f +692,32140,7,4,f +692,32140,0,4,f +692,32175,0,2,f +692,32184,7,8,f +692,32185,7,1,f +692,32186,7,2,f +692,32187,8,1,f +692,32188,4,2,f +692,32189,4,2,f +692,32190,4,2,f +692,32191,4,2,f +692,32192,4,2,f +692,32195a,8,4,f +692,32196,0,4,f +692,32197,80,4,f +692,32198,7,2,f +692,32199,4,2,f +692,32200,4,1,f +692,32201,4,1,f +692,32202,4,2,f +692,32209,15,3,f +692,32235,4,2,f +692,32269,7,2,f +692,32270,7,2,f +692,3460,0,6,f +692,3623,0,2,f +692,3647,7,3,f +692,3648b,7,4,f +692,3665,0,2,f +692,3666,7,4,f +692,3666,0,6,f +692,3673,7,5,f +692,3700,7,2,f +692,3700,0,8,f +692,3701,0,8,f +692,3702,0,3,f +692,3703,0,14,f +692,3705,0,33,f +692,3706,0,11,f +692,3707,0,15,f +692,3708,4,13,f +692,3708,0,3,f +692,3709,0,2,f +692,3710,7,3,f +692,3710,0,6,f +692,3713,7,21,f +692,3737,0,3,f +692,3738,0,6,f +692,3749,7,40,f +692,3794a,7,9,f +692,3832,0,5,f +692,3894,0,6,f +692,3895,0,2,f +692,4019,7,5,f +692,4150,15,2,f +692,4162,0,2,f +692,4274,7,6,f +692,4287,0,2,f +692,4477,0,5,f +692,4477,7,4,f +692,4519,0,46,f +692,6087,0,4,f +692,6141,7,15,f +692,6536,1,8,f +692,6536,0,32,f +692,6536,4,2,f +692,6536,15,4,f +692,6536,7,13,f +692,6538b,0,8,f +692,6538b,4,3,f +692,6538b,7,12,f +692,6539,7,3,f +692,6541,0,4,f +692,6541,7,7,f +692,6542a,8,6,f +692,6553,0,2,f +692,6553,7,8,f +692,6558,0,65,f +692,6573,8,1,f +692,6575,7,2,f +692,6587,8,15,f +692,6589,7,3,f +692,6592,0,1,f +692,6629,15,7,f +692,6629,14,2,f +692,6629,4,18,f +692,6629,0,22,f +692,6630,0,2,f +692,6631,7,2,f +692,6632,15,4,f +692,6632,0,28,f +692,6641,7,1,f +692,75535,0,5,f +692,75535,15,8,f +692,76138,8,4,f +692,76320,0,2,f +692,78c03,7,2,f +692,78c14,4,3,f +692,78c16,7,2,f +692,8448stk01,9999,1,t +692,9244,7,6,f +693,45464,52,1,f +693,clikits004,9,2,f +693,clikits005,143,2,f +693,clikits006pb03,15,1,f +693,clikits037,22,1,f +694,cdoor01,4,1,f +694,cdoor01,15,2,f +694,cdoor01,14,1,f +694,cwindow01,4,1,f +694,cwindow01,1,1,f +694,cwindow01,14,1,f +694,cwindow01,15,1,f +694,cwindow02,14,1,f +694,cwindow02,15,1,f +694,cwindow02,4,1,f +694,cwindow02,1,1,f +694,cwindow03,14,1,f +694,cwindow03,4,1,f +694,cwindow03,1,1,f +694,cwindow03,15,1,f +694,cwindow04,15,2,f +694,cwindow04,4,1,f +694,cwindow04,14,1,f +694,cwindow05,1,1,f +694,cwindow05,14,1,f +694,cwindow05,4,1,f +694,cwindow05,15,1,f +697,2456,4,1,f +697,2456,15,2,f +697,2456,1,2,f +697,2456,14,1,f +697,2877,71,4,f +697,3001,1,6,f +697,3001,25,4,f +697,3001,27,4,f +697,3001,14,6,f +697,3001,2,3,f +697,3001,15,6,f +697,3001,4,6,f +697,3001,0,3,f +697,3002,4,6,f +697,3002,0,3,f +697,3002,14,6,f +697,3002,1,6,f +697,3002,2,3,f +697,3002,15,6,f +697,3003,4,16,f +697,3003,15,16,f +697,3003,0,8,f +697,3003,14,16,f +697,3003,2,8,f +697,3003,27,8,f +697,3003,25,8,f +697,3003,1,16,f +697,3004,27,4,f +697,3004,14,12,f +697,3004,25,4,f +697,3004,2,6,f +697,3004,0,6,f +697,3004,1,12,f +697,3004,15,12,f +697,3004,4,12,f +697,3004p0b,14,2,f +697,3005,15,4,f +697,3005,1,8,f +697,3005,2,4,f +697,3005,4,8,f +697,3005,0,4,f +697,3005,14,4,f +697,3005pe1,14,4,f +697,3005pe1,15,4,f +697,3007,4,1,f +697,3007,1,1,f +697,3007,14,1,f +697,3007,15,1,f +697,3008,1,2,f +697,3008,14,1,f +697,3008,4,1,f +697,3008,15,2,f +697,3009,1,3,f +697,3009,14,2,f +697,3009,15,3,f +697,3009,4,2,f +697,3010,2,2,f +697,3010,14,3,f +697,3010,4,3,f +697,3010,15,3,f +697,3010,1,3,f +697,3010,0,2,f +697,3020,14,2,f +697,3020,4,4,f +697,3021,0,2,f +697,3021,1,2,f +697,3021,4,2,f +697,3022,0,2,f +697,3022,15,4,f +697,3022,4,2,f +697,3023,4,4,f +697,3023,14,4,f +697,3028,10,1,f +697,3034,4,2,f +697,3037,4,4,f +697,3037,1,8,f +697,3039,4,4,f +697,3039,14,2,f +697,3039,1,4,f +697,3039,0,4,f +697,3040b,14,4,f +697,3040b,1,2,f +697,3040b,0,4,f +697,3040b,4,4,f +697,3062b,15,6,f +697,33303,15,2,f +697,3622,14,4,f +697,3622,4,4,f +697,3622,1,4,f +697,3622,15,4,f +697,3622,0,2,f +697,3622,2,2,f +697,3659,15,2,f +697,3660,15,2,f +697,3660,14,4,f +697,3660,1,2,f +697,3665,14,4,f +697,3666,1,2,f +697,3710,1,4,f +697,3795,4,2,f +697,3823,47,2,f +697,3839b,71,1,f +697,3957a,15,1,f +697,4132,4,2,f +697,4495b,4,1,f +697,4600,0,2,f +697,4624,71,4,f +697,6014b,15,4,f +697,60476,0,2,f +697,60599,4,1,f +697,60608,15,4,f +697,60623,15,1,f +697,60700,0,4,f +697,6141,4,4,f +697,6141,4,1,t +697,6157,71,2,f +697,87414,0,4,f +698,141ac96,15,1,f +698,3647,7,2,f +698,3648a,7,1,f +698,3650a,7,1,f +698,3700,14,4,f +698,3701,14,2,f +698,3705,0,2,f +698,3709,14,2,f +698,3713,7,1,f +698,3736,7,1,f +698,3738,14,2,f +698,468c03,7,1,f +698,6216a,7,1,f +698,rb00168,0,1,f +701,10247,72,2,f +701,11212,71,2,f +701,11458,72,1,f +701,11477,71,4,f +701,11610,0,1,f +701,15068,71,4,f +701,15392,72,1,t +701,15392,72,1,f +701,15403,0,1,f +701,15712,71,1,f +701,18587,71,2,f +701,18588,0,2,f +701,18649,71,4,f +701,18677,71,1,f +701,21527,9999,1,t +701,23295,15,3,f +701,23813,0,1,f +701,2412b,0,13,f +701,2412b,72,9,f +701,2420,72,8,f +701,2431,72,1,f +701,2431,71,2,f +701,2450,71,6,f +701,2476a,71,4,f +701,2654,72,2,f +701,2780,0,3,t +701,2780,0,8,f +701,2921,71,2,f +701,3004,2,2,f +701,3009,71,4,f +701,3010,72,1,f +701,3010,71,3,f +701,3020,19,3,f +701,3020,72,4,f +701,3021,1,2,f +701,3021,71,16,f +701,3022,71,2,f +701,3022,0,3,f +701,3023,71,24,f +701,3024,71,4,f +701,3024,4,2,f +701,3024,4,1,t +701,3024,71,1,t +701,3030,72,2,f +701,3031,71,2,f +701,30363,71,4,f +701,3039,71,2,f +701,3040b,71,4,f +701,3062b,15,1,f +701,3068b,0,2,f +701,3068b,71,5,f +701,3069b,71,4,f +701,3069bpr0070,0,1,f +701,3070b,15,2,f +701,3070b,15,1,t +701,3070b,71,1,t +701,3070b,71,2,f +701,3070bpr0152,15,3,f +701,3070bpr0152,15,2,t +701,32000,14,2,f +701,32034,0,1,f +701,32064a,4,2,f +701,32123b,14,1,t +701,32123b,14,4,f +701,32523,15,1,f +701,32526,72,1,f +701,3460,72,1,f +701,3622,71,1,f +701,3623,71,2,f +701,3626cpr1149,78,3,f +701,3666,71,9,f +701,3700,0,2,f +701,3701,72,2,f +701,3701,1,1,f +701,3702,0,2,f +701,3705,0,2,f +701,3706,0,4,f +701,3709,72,1,f +701,3710,15,4,f +701,3710,71,7,f +701,3738,72,1,f +701,3743,0,1,f +701,3747b,71,4,f +701,3747b,0,1,f +701,3749,19,4,f +701,3795,19,3,f +701,3795,71,6,f +701,3830,71,2,f +701,3831,71,2,f +701,3832,72,1,f +701,3832,19,1,f +701,3894,72,2,f +701,3895,71,2,f +701,3937,0,5,f +701,3938,0,1,f +701,4032a,1,4,f +701,4185,47,4,f +701,42446,0,3,f +701,42446,0,2,t +701,4274,71,2,f +701,4274,71,1,t +701,4282,71,3,f +701,4286,71,2,f +701,4287,71,2,f +701,43719,72,2,f +701,44728,72,2,f +701,44728,15,2,f +701,44728,19,2,f +701,4519,71,1,f +701,4595,0,1,f +701,4599b,15,1,f +701,4599b,15,1,t +701,50304,72,1,f +701,50305,72,1,f +701,50955,71,1,f +701,50956,71,1,f +701,54200,71,2,f +701,54200,15,1,t +701,54200,15,1,f +701,54200,0,2,f +701,54200,71,1,t +701,54200,0,1,t +701,58247,0,2,f +701,59443,4,3,f +701,60208,72,2,f +701,60470a,71,2,f +701,60484,0,2,f +701,60897,72,3,f +701,6134,71,4,f +701,6141,36,2,t +701,6141,35,27,f +701,6141,35,1,t +701,6141,36,7,f +701,61780,72,3,f +701,6233,0,2,f +701,63864,71,3,f +701,63868,72,4,f +701,64567,0,2,f +701,64567,15,1,t +701,64567,15,1,f +701,64567,0,1,t +701,64644,0,1,f +701,6541,1,2,f +701,6558,1,8,f +701,6587,28,1,f +701,6636,71,4,f +701,73983,71,2,f +701,74664,15,3,f +701,85984,71,2,f +701,87079,72,3,f +701,87580,0,3,f +701,92280,71,1,f +701,92280,0,4,f +701,92738,0,1,f +701,92947,0,2,f +701,93274,72,4,f +701,970c00pr0929,15,3,f +701,973pr3141c01,15,3,f +701,99207,71,2,f +701,99780,72,6,f +701,99781,15,4,f +702,x149,4,1,f +703,10172,297,1,f +703,10247,71,2,f +703,10314,25,2,f +703,10314,15,2,f +703,11055,15,3,f +703,11090,0,8,f +703,11291,15,2,f +703,11303,4,1,f +703,11303,272,2,f +703,11458,72,2,f +703,11477,25,2,f +703,11477,15,6,f +703,15068,71,6,f +703,15535,72,2,f +703,18972,40,2,f +703,18974,25,4,f +703,18974,15,4,f +703,18975,72,4,f +703,18976,179,9,f +703,18977,0,9,f +703,18979a,0,4,t +703,18979a,179,4,t +703,18979b,179,4,f +703,18979b,0,4,f +703,2343,179,1,f +703,2412b,71,1,f +703,2412b,15,1,f +703,2420,0,12,f +703,2431,15,2,f +703,2431,4,1,f +703,2431,25,2,f +703,2446,1,1,f +703,2446,4,1,f +703,2447,47,2,f +703,2447,47,2,t +703,2454a,4,4,f +703,2454a,15,2,f +703,2654,46,2,f +703,2730,71,1,f +703,2780,0,6,f +703,2780,0,2,t +703,2817,0,3,f +703,2877,71,4,f +703,3001,1,2,f +703,3002,4,2,f +703,30029,0,2,f +703,3003,40,4,f +703,3004,15,9,f +703,3004,0,8,f +703,3005,71,1,f +703,3005,15,3,f +703,3005,25,4,f +703,30089,0,1,f +703,3009,14,1,f +703,3010,15,4,f +703,3020,0,4,f +703,3020,71,2,f +703,3020,15,5,f +703,3021,0,4,f +703,3022,72,1,f +703,3022,1,3,f +703,3022,2,3,f +703,3022,4,2,f +703,3022,71,8,f +703,3023,71,11,f +703,3023,25,4,f +703,3023,15,5,f +703,3023,40,4,f +703,3023,4,1,f +703,3024,0,2,f +703,3024,0,1,t +703,3032,72,1,f +703,3034,72,2,f +703,3035,72,2,f +703,30357,0,2,f +703,30357,15,2,f +703,3037,71,2,f +703,30374,71,3,f +703,3039,15,1,f +703,30414,0,2,f +703,30565,72,2,f +703,30565,4,2,f +703,3062b,0,1,f +703,3068b,4,1,f +703,3068b,15,1,f +703,3068b,1,1,f +703,3069b,15,8,f +703,3069b,71,1,f +703,3069b,4,2,f +703,32000,71,4,f +703,32054,4,2,f +703,32270,0,2,f +703,3245b,72,3,f +703,32530,4,1,f +703,3456,72,1,f +703,3460,1,1,f +703,3622,71,2,f +703,3623,4,4,f +703,3623,72,4,f +703,3626bpr0743,14,1,f +703,3626cpr0498,14,1,f +703,3626cpr0893,14,1,f +703,3626cpr1664,14,1,f +703,3660,71,4,f +703,3666,4,4,f +703,3666,1,4,f +703,3666,15,4,f +703,3666,25,4,f +703,3666,71,1,f +703,3678b,4,1,f +703,3678b,1,1,f +703,3700,72,2,f +703,3701,71,1,f +703,3708,0,1,f +703,3710,71,1,f +703,3710,15,2,f +703,3710,1,1,f +703,3713,71,2,f +703,3713,71,1,t +703,3749,19,9,f +703,3795,72,1,f +703,3795,4,1,f +703,3795,0,1,f +703,3829c01,4,1,f +703,3829c01,1,1,f +703,3830,0,2,f +703,3830,15,2,f +703,3831,0,2,f +703,3831,15,2,f +703,3938,0,4,f +703,40490,0,2,f +703,41678,72,3,f +703,42003,0,2,f +703,4274,1,10,f +703,4274,1,2,t +703,44728,72,5,f +703,4477,0,4,f +703,4536,15,2,f +703,48336,0,4,f +703,50950,25,2,f +703,50950,15,4,f +703,51739,15,1,f +703,54200,25,4,f +703,54200,1,1,t +703,54200,15,2,t +703,54200,4,2,t +703,54200,25,1,t +703,54200,15,8,f +703,54200,4,6,f +703,54200,1,2,f +703,59443,4,1,f +703,604547,0,1,f +703,604548,0,1,f +703,604549,0,1,f +703,604550,0,1,f +703,604551,0,1,f +703,604552,0,1,f +703,604553,0,1,f +703,604614,0,1,f +703,604615,0,1,f +703,60474,4,2,f +703,60478,15,4,f +703,60478,72,2,f +703,60485,71,1,f +703,60897,72,4,f +703,60897,15,4,f +703,6091,15,6,f +703,6091,25,2,f +703,6111,72,1,f +703,6112,71,1,f +703,6141,15,10,f +703,6141,1,2,t +703,6141,15,2,t +703,6141,1,14,f +703,6154,4,4,f +703,6180,71,1,f +703,63864,72,2,f +703,64567,71,4,f +703,64567,71,2,t +703,6558,1,4,f +703,6636,0,2,f +703,6636,15,3,f +703,75912stk01,9999,1,t +703,75912stk02,9999,1,t +703,75912stk03,9999,1,t +703,75c32,0,1,f +703,85974,70,1,f +703,85984,71,1,f +703,85984,15,3,f +703,85984,0,2,f +703,87079,0,1,f +703,87079,15,9,f +703,87079,25,1,f +703,87083,72,2,f +703,87580,72,2,f +703,87609,15,1,f +703,87609,25,1,f +703,88072,71,6,f +703,92410,4,1,f +703,92946,4,2,f +703,92946,1,2,f +703,93273,15,3,f +703,93606,15,4,f +703,93606,25,2,f +703,93609,15,2,t +703,93609,15,4,f +703,95347,0,2,f +703,96874,25,1,t +703,970c00,0,2,f +703,970x026,15,1,f +703,970x199,25,1,f +703,973pr1470c01,1,1,f +703,973pr1783c01,4,1,f +703,973pr2962c01,15,1,f +703,973pr2963c01,15,1,f +703,98138,182,2,f +703,98138,36,1,t +703,98138,36,2,f +703,98138,47,1,f +703,98138,34,1,t +703,98138,182,1,t +703,98138,34,2,f +703,98138,47,1,t +703,99207,0,2,f +703,99780,0,3,f +705,122c01,7,2,f +705,3001a,4,2,f +705,3001a,1,1,f +705,3002a,1,2,f +705,3002a,4,2,f +705,3003,1,2,f +705,3003,4,2,f +705,3004,4,23,f +705,3004,1,8,f +705,3004,47,4,f +705,3005,1,4,f +705,3005,4,16,f +705,3008,4,14,f +705,3008,1,4,f +705,3009,4,18,f +705,3009,1,6,f +705,3010,4,21,f +705,3010,47,2,f +705,3010,1,4,f +705,3020,1,4,f +705,3020,4,4,f +705,3020,7,4,f +705,3021,1,2,f +705,3021,4,2,f +705,3022,1,4,f +705,3022,4,2,f +705,3022,7,4,f +705,3023,4,4,f +705,3023,1,5,f +705,3024,4,1,t +705,3024,4,4,f +705,3024,1,1,t +705,3024,46,1,t +705,3024,46,4,f +705,3024,1,4,f +705,3029,1,1,f +705,3032,1,1,f +705,3032,4,1,f +705,3034,4,2,f +705,3034,1,2,f +705,3034,7,5,f +705,3035,1,2,f +705,3036,4,2,f +705,3036,1,2,f +705,3037,1,16,f +705,3038,1,4,f +705,3039,47,3,f +705,3039,1,8,f +705,3040b,4,4,f +705,3040b,1,4,f +705,3041,1,3,f +705,3042,1,1,f +705,3043,1,2,f +705,3044a,1,2,f +705,3045,1,8,f +705,3046a,1,8,f +705,3048a,1,2,f +705,3049b,1,2,f +705,3062a,7,4,f +705,3062a,46,2,f +705,3069b,4,4,f +705,3069b,1,4,f +705,3070b,1,1,t +705,3070b,1,2,f +705,3127,7,1,f +705,3188,1,1,f +705,3189,1,1,f +705,3228b,7,4,f +705,3298,1,3,f +705,3315,7,1,f +705,3324c01,7,1,f +705,3403c01,0,1,f +705,3460,1,4,f +705,3460,4,4,f +705,3461,7,2,f +705,3462,1,1,f +705,3481,1,1,f +705,3482,7,10,f +705,3483,0,10,f +705,3491,7,1,f +705,3492c01,14,1,f +705,3581,4,2,f +705,3597,7,1,f +705,3622,4,8,f +705,3622,1,4,f +705,3623,4,2,f +705,3623,1,4,f +705,3641,0,4,f +705,3644,1,2,f +705,3647,7,1,f +705,3650a,7,1,f +705,3660,1,12,f +705,3660,4,2,f +705,3665,1,10,f +705,3665,4,8,f +705,3666,4,2,f +705,3666,1,4,f +705,3673,7,1,f +705,3678a,47,4,f +705,3679,7,1,f +705,3680,1,1,f +705,3700,1,10,f +705,3705,0,1,f +705,3706,0,5,f +705,3709,4,2,f +705,3710,4,2,f +705,3710,1,4,f +705,3713,7,2,f +705,3730,7,1,f +705,3731,7,1,f +705,3736,7,1,f +705,3737,0,1,f +705,3738,4,1,f +705,3747b,1,3,f +705,3749,7,6,f +705,3795,4,2,f +705,3795,1,4,f +705,3811,2,1,f +705,3821,1,1,f +705,3822,1,1,f +705,3829c01,1,1,f +705,3830,4,2,f +705,3831,4,2,f +705,3839a,7,2,f +705,3853,1,4,f +705,3854,15,8,f +705,3856,1,4,f +705,3861b,15,1,f +705,3937,7,2,f +705,3938,7,2,f +705,3939,47,1,f +705,3941,7,2,f +705,3956,7,2,f +705,3957a,7,1,f +705,3959,7,1,f +705,3960,7,1,f +705,3961,7,1,f +705,3962a,0,1,f +705,3963,7,2,f +705,4006,0,1,f +705,4070,4,2,f +705,4085a,7,2,f +705,56823,0,2,f +705,73037,1,2,f +706,3624,15,1,f +706,3626bpr0314,14,1,f +706,4349,0,1,f +706,970c00,0,1,f +706,973pr1188c01,0,1,f +707,3034,8,2,f +707,3245bp01,0,2,f +707,3795,8,2,f +707,73112,7,2,f +707,73696,7,1,f +707,73697,7,1,f +707,767,8,6,f +712,31180,70,1,f +712,40666,272,1,f +712,4657,0,1,f +712,4658,70,1,f +712,51703,182,1,f +712,51706,179,1,f +712,51708,70,1,f +712,51725pr0004,0,1,f +712,54034,0,1,f +712,54037,135,1,f +712,54042,0,1,f +712,54043,0,2,f +712,54058,70,2,f +712,54060,0,1,f +712,54068,0,1,f +712,54849,70,1,f +712,54860,70,1,f +712,55343,70,1,f +712,56403,272,4,f +716,3001a,4,13,f +716,3001a,47,6,f +716,3001a,15,13,f +716,3001a,0,7,f +716,3001a,14,13,f +716,3001a,1,13,f +718,3034,7,2,f +718,3245bp01,0,1,f +718,4707c01,7,1,f +718,73112,7,1,f +718,766c01,7,2,f +718,x466,7,1,f +722,11127,41,1,f +722,12551pr0002,326,1,f +722,3626cpr1140,326,1,f +722,4360,0,1,f +722,4589,36,1,f +722,4740,36,1,f +722,53451,15,2,f +722,53451,15,1,t +722,6141,34,1,f +722,6141,34,1,t +722,970c155pr0443,326,1,f +722,973pr2247c01,326,1,f +723,242c01,4,6,f +723,3001a,0,2,f +723,3002a,0,3,f +723,3004,0,1,f +723,3004p50,14,1,f +723,3009,47,2,f +723,3009,0,6,f +723,3010,0,6,f +723,3010,14,1,f +723,3020,0,3,f +723,3020,14,1,f +723,3021,0,2,f +723,3022,0,1,f +723,3023,0,1,f +723,3024,14,4,f +723,3032,0,1,f +723,3034,0,3,f +723,3036,0,1,f +723,3183a,14,1,f +723,3184,14,1,f +723,3483,0,6,f +723,7049b,0,2,f +723,800,0,1,f +723,827,14,1,f +723,871,0,1,f +725,56823,0,4,f +725,rb00167,0,8,f +725,rb00168,0,8,f +725,rb00169,0,8,f +725,rb00170,0,8,f +728,2362ap53,0,1,f +728,2362ap54,0,1,f +728,2412a,1,1,f +728,2431,0,3,f +728,2446,15,1,f +728,2446,0,1,f +728,2447,0,1,f +728,2447,36,1,f +728,2450,0,2,f +728,2450,1,2,f +728,2468pb02,0,1,f +728,2468pb03,0,1,f +728,2507,36,1,f +728,298c02,0,2,f +728,3001,0,1,f +728,3004,1,3,f +728,3020,0,2,f +728,3022,0,2,f +728,3023,1,4,f +728,3023,0,1,f +728,3024,0,6,f +728,3024,1,2,f +728,3034,1,1,f +728,3039p23,1,1,f +728,3068b,0,2,f +728,3069b,1,2,f +728,3460,0,2,f +728,3623,1,1,f +728,3623,0,3,f +728,3626apr0001,14,2,f +728,3666,0,4,f +728,3710,0,2,f +728,3710,1,1,f +728,3747a,1,1,f +728,3794a,1,4,f +728,3794a,0,6,f +728,3838,0,2,f +728,3855,36,1,f +728,3957a,36,4,f +728,4033,1,1,f +728,4070,1,4,f +728,4275b,0,2,f +728,4276b,0,2,f +728,4315,1,1,f +728,4589,36,2,f +728,4590,0,2,f +728,4623,0,2,f +728,4625,1,1,f +728,4733,0,2,f +728,4854,1,3,f +728,4856a,0,1,f +728,4857,1,1,f +728,4859,0,1,f +728,4865a,0,4,f +728,4873,0,1,f +728,6141,36,6,f +728,73983,1,2,f +728,970c00,0,1,f +728,970x026,15,1,f +728,973p52c01,0,1,f +728,973p6bc01,15,1,f +731,2412b,383,2,f +731,2432,73,1,f +731,2458,8,2,f +731,2584,0,1,f +731,2585,7,1,f +731,2625,1,1,f +731,2625,7,1,f +731,2626,15,1,f +731,2654,0,4,f +731,3001,0,1,f +731,3003,15,1,f +731,30031,8,1,f +731,3004,1,1,f +731,3009,15,5,f +731,3010,15,1,f +731,3020,15,2,f +731,3021,1,2,f +731,3036,7,1,f +731,30395,8,1,f +731,30603,0,1,f +731,30603pb01,0,4,f +731,30622,0,2,f +731,30640,0,1,f +731,30663,7,1,f +731,3068b,0,1,f +731,3069b,73,2,f +731,3298,15,2,f +731,3460,7,1,f +731,3626bpb0048,14,1,f +731,3626bpb0051,14,1,f +731,3666,1,1,f +731,3701,15,4,f +731,3710,1,4,f +731,3795,1,2,f +731,3937,15,4,f +731,3938,15,2,f +731,3942c,0,2,f +731,3958,7,1,f +731,4006,0,1,f +731,41334,0,1,f +731,4175,0,2,f +731,42060pb02,15,1,f +731,42061pb02,15,1,f +731,4515,8,1,f +731,4589,7,4,f +731,4865a,1,1,f +731,56823,0,1,f +731,6041,0,2,f +731,6075,25,1,f +731,6093,0,1,f +731,6134,0,2,f +731,6141,57,1,t +731,6141,57,2,f +731,970c00,0,1,f +731,970c00pb009,0,1,f +731,973pb0056c01,15,1,f +731,973pb0058c01,320,1,f +732,32062,0,1,t +732,32062,0,1,f +732,32174,72,6,f +732,32533pb685,21,1,f +732,32553,72,1,f +732,32554,34,1,f +732,32573pb01,0,1,f +732,41668,0,2,f +732,43093,1,6,f +732,43093,1,1,t +732,47295,0,1,f +732,47300,72,4,f +732,47304,179,1,f +732,6553,0,1,f +732,6558,0,1,f +732,6558,0,1,t +734,11291,320,1,f +734,14520,72,2,f +734,2412b,71,2,f +734,2431,71,4,f +734,2432,71,1,f +734,2436,71,8,f +734,2584,0,1,f +734,2585,71,1,f +734,2654,0,1,f +734,2780,0,1,f +734,2780,0,1,t +734,3003,1,1,f +734,3004,1,1,f +734,3005,25,4,f +734,3009,25,2,f +734,3010,72,2,f +734,3020,1,1,f +734,3023,25,7,f +734,3023,0,8,f +734,3023,320,2,f +734,30237a,71,1,f +734,3024,182,1,t +734,3024,36,1,t +734,3024,182,4,f +734,3024,47,2,f +734,3024,36,2,f +734,3024,47,1,t +734,3032,15,1,f +734,30395,72,1,f +734,3040b,25,2,f +734,30565,72,1,f +734,3069b,15,4,f +734,3069b,36,2,f +734,3069b,33,3,f +734,32028,71,2,f +734,32123b,71,1,t +734,32123b,71,1,f +734,32270,0,1,f +734,3456,71,1,f +734,3626bpr0388,14,1,f +734,3626bpr0893,14,1,f +734,3660,0,2,f +734,3666,15,2,f +734,3666,25,3,f +734,3666,0,1,f +734,3700,71,1,f +734,3706,0,1,f +734,3710,72,2,f +734,3710,320,1,f +734,3710,70,3,f +734,3795,0,2,f +734,3821,25,1,f +734,3822,25,1,f +734,3829c01,71,1,f +734,3829c01,1,1,f +734,3832,72,1,f +734,3899,4,1,f +734,4006,0,1,f +734,4070,25,2,f +734,4162,15,2,f +734,4282,72,2,f +734,43337,320,2,f +734,44301a,72,2,f +734,44301a,0,2,f +734,44302a,0,2,f +734,4449,0,1,f +734,4485,0,1,f +734,4488,71,4,f +734,47456,0,1,f +734,4871,71,1,f +734,49668,0,1,f +734,50745,15,2,f +734,50745,320,4,f +734,50950,72,2,f +734,50950,320,4,f +734,51739,15,1,f +734,52031,25,1,f +734,52036,72,1,f +734,52501,320,2,f +734,54200,36,2,f +734,54200,47,2,f +734,54200,36,1,t +734,54200,47,1,t +734,54200,320,1,t +734,54200,320,2,f +734,56823c50,0,1,f +734,57783,40,1,f +734,6014b,71,8,f +734,60481,71,2,f +734,6141,36,1,f +734,6141,46,1,t +734,6141,36,1,t +734,6141,34,1,f +734,6141,46,1,f +734,6141,34,1,t +734,6157,71,2,f +734,6179,71,1,f +734,63864,25,4,f +734,85974,484,1,f +734,85984,14,2,f +734,85984,0,2,f +734,87079,70,1,f +734,87087,0,3,f +734,87552,40,2,f +734,87697,0,8,f +734,92583,40,1,f +734,92593,15,3,f +734,93273,320,2,f +734,970c00,1,1,f +734,970c00,28,1,f +734,973pr1470c01,1,1,f +734,973pr1576c01,72,1,f +734,98138,33,1,t +734,98138,33,2,f +734,98282,72,2,f +734,98285,14,1,f +734,98286,71,1,f +734,98549,71,1,f +734,98835,25,1,f +734,99206,71,1,f +735,2420,25,4,f +735,2540,0,4,f +735,2555,7,6,f +735,2566,14,2,f +735,2609b,0,1,f +735,298c02,1,2,f +735,298c02,1,1,t +735,3023,25,4,f +735,3024,0,4,f +735,30359b,47,2,f +735,30374,57,2,f +735,3062b,0,1,f +735,3626b,25,2,f +735,4032a,7,2,f +735,4070,1,1,f +735,4589,25,1,f +735,4589,8,4,f +735,4599a,25,2,f +735,4733,0,5,f +735,4733,8,3,f +735,4740,47,4,f +735,4740,7,2,f +735,4740,25,2,f +735,4854,0,1,f +735,4871,0,1,f +735,6141,14,2,f +735,6141,1,2,f +735,6141,1,1,t +735,6141,7,4,f +735,6141,14,1,t +735,6141,7,1,t +735,6636,0,2,f +736,10164pr0001,15,1,f +736,10169,84,1,f +736,10170,84,1,t +736,10170,84,1,f +736,11477,4,2,f +736,14417,72,1,f +736,14769pr0001,15,1,f +736,15397,70,2,f +736,15470,29,1,f +736,15470,29,1,t +736,15541pat0001,1,1,f +736,15573,27,1,f +736,15573,14,3,f +736,15573,72,1,f +736,15573,272,1,f +736,15712,71,1,f +736,15712,0,1,f +736,16606pat0001,15,1,f +736,19220,0,2,f +736,2421,0,1,f +736,2423,2,2,f +736,2431,41,3,f +736,2432,72,1,f +736,2496,0,1,f +736,2566,0,1,f +736,2654,0,1,f +736,2655,71,1,f +736,298c02,0,2,f +736,298c02,0,1,t +736,30031,71,1,f +736,3004,2,2,f +736,3005,70,2,f +736,30089,0,1,f +736,30089,0,1,t +736,30133,4,1,f +736,30136,70,4,f +736,30165,4,1,f +736,3020,15,2,f +736,3021,27,1,f +736,3021,70,2,f +736,3021,4,1,f +736,3021,15,2,f +736,3022,14,1,f +736,3022,71,1,f +736,3022,70,2,f +736,3022,1,1,f +736,3022,72,1,f +736,3023,25,2,f +736,3023,72,1,f +736,3023,36,1,f +736,3023,4,2,f +736,3023,2,2,f +736,3023,27,1,f +736,3023,0,1,f +736,3023,15,2,f +736,3024,0,1,t +736,3024,47,2,f +736,3024,47,1,t +736,3024,0,1,f +736,30367c,15,1,f +736,30374,70,2,f +736,3040b,2,4,f +736,3062b,15,4,f +736,3062b,0,4,f +736,3062b,47,1,f +736,3062b,70,5,f +736,3069b,25,2,f +736,3069b,4,1,f +736,3069b,2,2,f +736,3069bpr0100,2,1,f +736,3069bpr0100,2,1,t +736,3069bpr0130,322,1,f +736,3069bpr0130,322,1,t +736,3069bpr0175,29,1,f +736,3069bpr0175,29,1,t +736,3070b,27,1,t +736,3070b,1,1,t +736,3070b,0,1,t +736,3070b,27,1,f +736,3070b,1,1,f +736,3070b,0,1,f +736,33183,70,1,t +736,33183,70,2,f +736,33291,70,1,f +736,33291,70,1,t +736,3623,14,2,f +736,3623,0,1,f +736,3626b,15,1,f +736,3626bpr0677,14,2,f +736,3626bpr0952,14,1,f +736,3626cpr1091,14,1,f +736,3626cpr1147,14,1,f +736,3626cpr1162,14,1,f +736,3710,4,4,f +736,3710,72,1,f +736,3710,272,2,f +736,3710,2,7,f +736,3710,15,1,f +736,3794b,15,3,f +736,3878,0,1,f +736,3899,4,1,f +736,4032a,70,1,f +736,4032a,15,1,f +736,4070,15,2,f +736,4070,0,2,f +736,4079,4,1,f +736,4081b,71,4,f +736,41334,72,1,t +736,41334,72,1,f +736,41854,15,1,f +736,41879a,1,1,f +736,41879a,30,1,f +736,41879a,19,1,f +736,4286,2,4,f +736,4349,0,1,t +736,4349,0,1,f +736,43722,1,2,f +736,43723,1,2,f +736,44661,15,1,f +736,4488,71,1,f +736,4523,70,1,f +736,4588,0,2,f +736,4595,0,1,f +736,4600,0,4,f +736,4740,0,1,f +736,47905,15,1,f +736,47905,70,2,f +736,48336,0,1,f +736,50254,0,8,f +736,51739,15,1,f +736,54200,0,1,t +736,54200,40,1,f +736,54200,40,1,t +736,54200,47,1,t +736,54200,15,1,t +736,54200,47,2,f +736,54200,15,2,f +736,54200,0,1,f +736,59900,70,1,f +736,59900,2,1,f +736,59900,0,3,f +736,6141,297,11,f +736,6141,70,2,f +736,6141,0,3,t +736,6141,4,2,t +736,6141,36,1,t +736,6141,179,1,t +736,6141,34,1,f +736,6141,297,2,t +736,6141,47,1,t +736,6141,72,4,f +736,6141,72,1,t +736,6141,179,4,f +736,6141,36,1,f +736,6141,15,1,t +736,6141,70,2,t +736,6141,34,1,t +736,6141,0,10,f +736,6141,15,1,f +736,6141,47,1,f +736,6141,4,2,f +736,61482,71,1,f +736,61482,71,1,t +736,6256,191,1,f +736,63082,71,1,f +736,64644,308,2,f +736,64647,182,1,f +736,64647,182,1,t +736,6632,0,2,f +736,85974,70,1,f +736,85984pr0001,15,1,f +736,87580,4,2,f +736,87580,14,1,f +736,87991,484,1,f +736,92585,4,1,t +736,92585,4,1,f +736,92590,28,1,f +736,93160,15,1,t +736,93160,15,1,f +736,93223,15,1,t +736,93223,15,1,f +736,93273,4,1,f +736,93555,179,1,t +736,93555,179,2,f +736,93568pat0001,84,1,f +736,970c00,4,1,f +736,970c00,28,1,f +736,970c00,272,1,f +736,973c07,1,1,f +736,973pr1617c01,2,1,f +736,973pr1800c01,73,1,f +736,973pr2300c01,4,1,f +736,973pr2879c01,19,1,f +736,973pr2880c01,15,1,f +736,98100,0,2,f +736,98279,28,1,f +736,98375,179,1,f +736,98375,179,1,t +736,99774,72,3,f +736,99780,72,1,f +736,99780,71,1,f +737,2335pr0001,15,1,f +737,2335pr0002,15,1,f +737,2526,297,2,f +737,2526,1,1,f +737,2526,4,1,f +737,2528,0,1,f +737,2528pr0001,0,1,f +737,2530,72,1,f +737,2543,288,2,f +737,2545pr0001,0,1,f +737,2546pat0001,4,1,f +737,2550c01,70,1,f +737,2561,70,1,f +737,2562,70,1,f +737,30153,45,1,f +737,30153,41,1,f +737,3068bpr0139a,19,1,f +737,3626bpr0348,14,1,f +737,3626bpr0564,14,1,f +737,3626bpr0566,14,1,f +737,3626bpr0567,14,1,f +737,4738a,297,1,f +737,4739a,297,1,f +737,57503,334,1,f +737,57504,334,1,f +737,57505,334,1,f +737,57506,334,1,f +737,62808,72,1,f +737,63965,15,1,f +737,63965,70,1,f +737,64644,308,1,f +737,64647,4,1,f +737,970c00,288,1,f +737,970c00,15,2,f +737,970d09,0,1,f +737,973pr1439c01,70,1,f +737,973pr1441c01,4,1,f +737,973pr1442c01,0,1,f +737,973pr1445c01,272,1,f +738,48379c01,0,1,f +738,hockeypuck,0,1,f +738,hockeystickl,135,1,f +740,10509pr0004,0,1,f +740,11153,70,2,f +740,11211,71,1,f +740,13745,4,1,f +740,2357,4,2,f +740,2397,72,1,f +740,2419,72,1,f +740,2423,2,1,f +740,2431,70,1,f +740,2431,4,2,f +740,2432,70,1,f +740,2449,0,2,f +740,2488,0,1,f +740,2540,72,2,f +740,2714a,0,2,f +740,2926,0,1,f +740,3002,4,1,f +740,3004,0,1,f +740,3004,70,1,f +740,3004,71,4,f +740,3005,70,5,f +740,3009,0,2,f +740,30136,70,3,f +740,30137,70,1,f +740,30153,46,1,f +740,30153,34,1,f +740,30153,36,1,f +740,30176,2,1,f +740,3020,0,2,f +740,3021,70,2,f +740,3022,72,1,f +740,3023,4,2,f +740,3023,0,1,f +740,3023,70,4,f +740,30237a,72,1,f +740,3024,1,2,f +740,3024,1,1,t +740,30273,80,1,f +740,3030,72,2,f +740,3032,2,1,f +740,3032,72,1,f +740,30374,70,1,f +740,3040b,70,2,f +740,3040b,71,2,f +740,3068b,1,1,f +740,3069b,71,1,f +740,3069b,72,1,f +740,3176,1,2,f +740,33320,2,1,f +740,3623,72,2,f +740,3626bpr0325,14,1,f +740,3626cpr0411,14,1,f +740,3626cpr1226,14,1,f +740,3660,4,1,f +740,3660,0,2,f +740,3665,4,4,f +740,3666,72,2,f +740,3666,0,1,f +740,3678b,0,2,f +740,3710,70,2,f +740,3731,0,1,f +740,3795,72,1,f +740,3844,80,1,f +740,3846pr0005,71,1,f +740,3848,72,1,f +740,4070,72,2,f +740,4274,71,1,t +740,4274,71,2,f +740,4286,0,2,f +740,4488,0,4,f +740,4489b,148,4,f +740,4489b,70,2,f +740,4738a,70,1,f +740,4739a,70,1,f +740,47457,72,1,f +740,48493,0,1,f +740,48729b,72,1,t +740,48729b,72,2,f +740,52501,4,3,f +740,53705,148,1,t +740,53705,148,1,f +740,54200,4,1,t +740,54200,4,8,f +740,54200,1,1,t +740,54200,0,1,t +740,54200,0,2,f +740,54200,1,2,f +740,59900,297,3,f +740,60475b,0,4,f +740,60596,0,2,f +740,60621,148,1,f +740,61184,71,4,f +740,61252,72,2,f +740,6182,71,1,f +740,63082,0,1,f +740,64644,308,2,f +740,64647,57,2,f +740,64647,57,1,t +740,6541,0,8,f +740,6636,0,2,f +740,76764,179,1,f +740,76764,179,1,t +740,85984,1,1,f +740,87079,4,2,f +740,87083,72,1,f +740,87580,0,2,f +740,87620,71,6,f +740,92338,72,1,f +740,92589,148,1,f +740,92950,71,1,f +740,93273,1,1,f +740,93274,72,1,f +740,970c00,0,1,f +740,970x026,72,2,f +740,973pr0090c01,72,1,f +740,973pr0100c01,72,1,f +740,973pr2395c01,0,1,f +740,98138,297,1,t +740,98138,297,6,f +740,98138pr0014,297,1,t +740,98138pr0014,297,1,f +741,15,4,1,f +741,17,15,1,f +741,3001a,1,1,f +741,3002a,1,2,f +741,3004,47,2,f +741,3010pb035e,1,1,f +741,3030,15,1,f +741,3031,0,1,f +741,3037,47,1,f +741,3039,47,1,f +741,3040a,15,2,f +741,3137c01,0,2,f +741,3624,4,1,f +741,3626a,14,1,f +741,3641,0,4,f +742,10247,71,3,f +742,10884,2,4,f +742,14137,0,4,f +742,14769,71,2,f +742,2357,72,51,f +742,2412b,0,1,f +742,2420,320,12,f +742,2432,0,1,f +742,2445,72,1,f +742,2446,320,2,f +742,2447,47,2,f +742,2447,47,1,t +742,2450,72,2,f +742,2453b,72,8,f +742,2454a,72,6,f +742,2454b,14,4,f +742,2458,71,24,f +742,2462,72,6,f +742,2465,72,3,f +742,2479,0,1,f +742,2540,0,13,f +742,2555,0,3,f +742,2569,0,1,f +742,2584,0,1,f +742,2585,71,1,f +742,2654,19,1,f +742,2780,0,1,f +742,2877,71,8,f +742,2922,0,1,f +742,298c02,14,3,f +742,3001,19,2,f +742,3001,72,4,f +742,3001,14,4,f +742,3002,71,9,f +742,3003,14,15,f +742,3004,14,16,f +742,3005,72,24,f +742,3008,72,11,f +742,3009,14,4,f +742,3010,14,2,f +742,30136,308,4,f +742,30150,70,1,f +742,30170,72,1,f +742,30171,70,2,f +742,3020,19,2,f +742,3021,70,1,f +742,3022,71,2,f +742,3023,19,2,f +742,30259,14,3,f +742,3027,72,2,f +742,3028,72,1,f +742,3029,71,1,f +742,3031,72,2,f +742,3034,2,7,f +742,3034,72,3,f +742,3035,72,1,f +742,30365,72,2,f +742,30383,72,4,f +742,3039,71,9,f +742,30395,72,2,f +742,30396,14,1,f +742,3039pr0001,15,1,f +742,3039pr0002,15,1,f +742,30554a,0,1,f +742,30592,71,1,f +742,3069b,320,28,f +742,32013,14,2,f +742,32018,71,1,f +742,32064a,72,2,f +742,32270,0,1,f +742,32278,14,4,f +742,3245c,72,22,f +742,32524,71,4,f +742,3460,71,1,f +742,3622,72,16,f +742,3622,19,4,f +742,3623,70,4,f +742,3626bpr0756,14,1,f +742,3626bpr0920,14,1,f +742,3626bpr0925,14,1,f +742,3626cpr0933,14,1,f +742,3660,71,4,f +742,3673,71,1,t +742,3673,71,1,f +742,3679,71,1,f +742,3680,0,1,f +742,3700,71,28,f +742,3705,0,1,f +742,3710,320,17,f +742,3747a,19,2,f +742,3794a,14,5,f +742,3795,71,2,f +742,3795,4,2,f +742,3829c01,1,1,f +742,3832,71,2,f +742,3894,71,2,f +742,3937,14,1,f +742,3941,42,2,f +742,3941,71,8,f +742,3956,71,1,f +742,3960,320,1,f +742,3962b,0,2,f +742,4006,0,1,f +742,4032a,72,2,f +742,4070,4,1,f +742,4079,70,1,f +742,4083,0,1,f +742,4162,320,4,f +742,4216,4,8,f +742,4282,71,3,f +742,43337,14,2,f +742,44301a,72,2,f +742,44302a,71,2,f +742,44567a,14,3,f +742,4460b,72,4,f +742,44661,14,1,f +742,44675,14,2,f +742,44728,71,2,f +742,4488,0,4,f +742,4522,0,1,f +742,4740,47,3,f +742,4856a,14,2,f +742,4865b,47,2,f +742,51739,320,1,f +742,52031,14,2,f +742,52501,14,2,f +742,56823c100,0,1,f +742,59349,14,5,f +742,59900,42,6,f +742,59900,71,2,f +742,6014b,14,4,f +742,60219,14,1,f +742,60475b,84,9,f +742,60479,14,2,f +742,60897,4,2,f +742,6091,14,2,f +742,6111,71,1,f +742,6112,14,3,f +742,61184,71,3,f +742,6134,4,1,f +742,6141,14,1,t +742,6141,47,4,f +742,6141,36,2,f +742,6141,47,1,t +742,6141,14,2,f +742,6141,34,2,f +742,6141,36,2,t +742,6141,34,2,t +742,61485,0,2,f +742,61678,14,4,f +742,6190,72,2,f +742,6249,71,2,f +742,63868,14,2,f +742,63965,0,1,f +742,64453,47,2,f +742,64644,0,3,f +742,64727,71,8,f +742,6558,1,4,f +742,6583,0,13,f +742,6587,28,1,f +742,71155,0,1,f +742,75937,0,1,f +742,85940,0,1,f +742,87079,72,4,f +742,87081,72,2,f +742,87421,14,6,f +742,87544,47,4,f +742,87580,320,25,f +742,87620,14,16,f +742,87697,0,4,f +742,87989,27,3,f +742,87989,27,1,t +742,87990,308,1,f +742,88292,84,4,f +742,88393,71,6,f +742,88930,14,1,f +742,89523,72,3,f +742,89523,2,2,f +742,90258,72,6,f +742,92338,72,1,f +742,92438,2,1,f +742,92582,0,1,f +742,92842,0,1,f +742,93273,14,5,f +742,970c00pr0312,19,1,f +742,970x308,326,2,f +742,970x308,28,1,f +742,973pr1990c01,320,1,f +742,973pr1999c01,326,1,f +742,973pr2011ac01,15,1,f +742,973pr2013c01,19,1,f +742,98057pr0002,326,1,f +742,98058pr0002,326,1,f +742,98059pr0002,326,1,f +742,98065pr0002,84,1,f +742,98067pr0002,84,1,f +742,98068pr0002,84,1,f +742,98069pr0002,84,1,f +742,98071pr0002,84,1,f +742,98072pr0002,84,1,f +742,98159pr0002,326,1,f +742,98160pr0002,70,1,f +742,98161pr0002,326,1,f +742,98162pr02,326,1,f +742,98163pr02,326,1,f +742,98165pr0002,84,1,f +742,98166pr0002,326,1,f +742,98313,320,8,f +742,99061,0,3,f +742,99809,148,3,f +742,99930,0,1,f +743,41889,148,1,f +743,41890,148,2,f +743,42687,148,1,f +745,2444,0,1,f +745,2780,0,1,t +745,2780,0,2,f +745,30104,72,1,f +745,32013,72,1,f +745,32062,0,2,f +745,3737,0,1,f +745,43093,1,2,f +745,47430,379,2,f +745,47431,379,2,f +745,47432,0,2,f +745,47452,0,2,f +745,47454,379,2,f +745,47455,0,10,f +745,47456,75,2,f +745,47457,0,2,f +745,50659c02pb02,379,1,f +745,54170,75,1,f +745,54175,75,2,f +745,54176,0,2,f +745,54177,135,2,f +745,54183pb01,134,1,f +745,bb153pr0012,379,1,f +747,2488,0,1,f +747,3010,15,1,f +747,30153,45,3,f +747,30153,52,2,f +747,3023,118,2,f +747,30248,52,1,f +747,3032,26,1,f +747,3034,118,2,f +747,30385,143,4,f +747,3065,143,3,f +747,33207p01,15,1,f +747,33210,118,1,f +747,33322,143,1,f +747,33322,143,1,t +747,3460,118,2,f +747,3471pat0001,10,1,f +747,3659,15,1,f +747,3666,26,1,f +747,3794a,15,2,f +747,3830,15,1,f +747,3831,15,1,f +747,40234,15,1,f +747,4070,15,2,f +747,4088,15,1,f +747,42013,179,2,f +747,42409,52,1,f +747,4243440,117,1,f +747,4589,15,2,f +747,4589,52,2,f +747,4623,15,1,f +747,4728,143,2,f +747,6019,15,2,f +747,6083pat0002,15,2,f +747,6141,47,1,t +747,6141,47,1,f +747,6171pr01,15,1,f +747,6183,15,1,f +747,x1476px1,118,1,f +751,122c01,0,2,f +751,3004,0,1,f +751,3022,4,1,f +751,3024,46,2,f +751,3024,4,2,f +751,3031,4,1,f +751,3034,0,1,f +751,3062b,7,1,f +751,3626apr0001,14,1,f +751,3633,4,1,f +751,3641,0,4,f +751,3679,7,1,f +751,3680,4,1,f +751,3710,4,3,f +751,3821,4,1,f +751,3822,4,1,f +751,3823,47,1,f +751,3829c01,1,1,f +751,3834,15,1,f +751,3956,4,1,f +751,4070,4,2,f +751,4207,7,1,f +751,4211,4,1,f +751,4275a,4,2,f +751,4276a,4,2,f +751,4599a,7,1,f +751,970c00,0,1,f +751,973p21c01,0,1,f +752,10247,0,4,f +752,11208,71,8,f +752,11209,0,8,f +752,11211,4,2,f +752,11291,0,1,f +752,11291,1,1,f +752,11303,272,1,f +752,11477,71,4,f +752,14520,72,2,f +752,14520,15,2,f +752,15068,15,1,f +752,15118,71,2,f +752,15533,84,1,f +752,15534,72,1,f +752,15573,71,1,f +752,15573,72,1,f +752,18892,0,1,f +752,19220,0,1,f +752,22385,15,1,f +752,23444,0,1,f +752,2412b,71,2,f +752,2412b,72,4,f +752,2412b,0,4,f +752,2419,72,1,f +752,2431,71,1,f +752,2431,72,1,f +752,2431,33,1,f +752,2432,4,2,f +752,2432,14,2,f +752,2432,72,2,f +752,2445,0,2,f +752,2456,14,1,f +752,2736,71,1,f +752,2780,0,3,t +752,2780,0,11,f +752,2817,71,6,f +752,2926,0,2,f +752,3001,1,1,f +752,3004,71,2,f +752,3004,14,2,f +752,3004,1,5,f +752,3005,71,2,f +752,3010,71,4,f +752,3010,15,2,f +752,30162,72,1,f +752,30165,4,1,f +752,3020,72,4,f +752,3020,15,1,f +752,3020,4,1,f +752,3021,0,2,f +752,3021,1,2,f +752,3022,4,2,f +752,3022,1,1,f +752,3022,72,3,f +752,3023,46,1,f +752,3023,4,6,f +752,3023,72,8,f +752,3023,71,9,f +752,3023,14,2,f +752,3023,0,2,f +752,30237b,15,2,f +752,3024,182,3,t +752,3024,15,4,f +752,3024,72,1,t +752,3024,33,2,f +752,3024,15,1,t +752,3024,72,2,f +752,3024,33,1,t +752,3024,182,6,f +752,3028,72,1,f +752,3031,15,1,f +752,3031,72,1,f +752,3034,15,2,f +752,30350b,72,2,f +752,3038,0,1,f +752,3040b,1,2,f +752,3040b,15,2,f +752,30414,1,3,f +752,30552,72,1,f +752,30602,4,1,f +752,3065,41,2,f +752,3069b,15,1,f +752,3069b,33,2,f +752,3069bpr0100,2,2,f +752,3070b,36,2,f +752,3070b,36,1,t +752,3070b,182,1,t +752,3070b,182,4,f +752,30725,70,1,f +752,3185,0,1,f +752,32013,71,8,f +752,32015,0,1,f +752,3245b,15,2,f +752,33299a,0,1,f +752,3460,71,2,f +752,3622,0,1,f +752,3626cpr1578,14,1,f +752,3626cpr1623,14,1,f +752,3626cpr2113,14,1,f +752,3626cpr2141,14,1,f +752,3666,15,2,f +752,3666,71,1,f +752,3666,72,2,f +752,3673,71,1,t +752,3673,71,1,f +752,3700,0,2,f +752,3705,0,1,f +752,3706,0,4,f +752,3710,15,3,f +752,3710,1,2,f +752,3710,19,1,f +752,3749,19,1,f +752,3795,71,6,f +752,3821,15,1,f +752,3821,1,1,f +752,3821,0,1,f +752,3822,0,1,f +752,3822,1,1,f +752,3822,15,1,f +752,3829c01,14,2,f +752,3829c01,4,1,f +752,3958,72,1,f +752,41334,0,1,f +752,4176,41,1,f +752,42610,71,1,f +752,4282,71,2,f +752,4282,15,1,f +752,43093,1,4,f +752,44301a,72,2,f +752,44301a,0,2,f +752,44302a,0,2,f +752,44302a,72,2,f +752,44567a,0,2,f +752,44728,4,1,f +752,45677,15,2,f +752,47457,72,1,f +752,48336,0,2,f +752,4865b,72,4,f +752,4865b,40,1,f +752,50745,0,4,f +752,50745,72,6,f +752,50859b,0,1,f +752,50861,0,2,f +752,50862,71,2,f +752,50947,4,1,f +752,50950,4,2,f +752,52031,15,1,f +752,52036,72,2,f +752,52501,15,2,f +752,52501,0,2,f +752,54200,1,1,t +752,54200,72,2,f +752,54200,72,1,t +752,54200,46,4,f +752,54200,46,2,t +752,54200,1,2,f +752,54200,47,1,t +752,54200,47,2,f +752,57783,40,1,f +752,57783,41,2,f +752,59443,14,2,f +752,6014b,71,6,f +752,6141,47,1,t +752,6141,47,1,f +752,61482,71,1,t +752,61482,71,1,f +752,6157,71,4,f +752,6192,72,2,f +752,6231,0,2,f +752,6231,15,2,f +752,62462,14,2,f +752,62462,0,2,f +752,62696,320,1,f +752,63864,15,4,f +752,6558,1,1,f +752,85983,4,1,f +752,85984,0,2,f +752,85984pr0143,72,1,f +752,87079,71,6,f +752,87079,15,1,f +752,87087,1,2,f +752,87697,0,6,f +752,88072,15,1,f +752,91988,19,1,f +752,92280,4,2,f +752,92338,72,1,f +752,92409,0,1,f +752,92582,71,1,f +752,92590,28,1,f +752,92593,72,2,f +752,93273,72,4,f +752,93273,0,2,f +752,970c00,272,2,f +752,970c00,288,1,f +752,970c00,72,1,f +752,973pr2503c01,0,1,f +752,973pr3627,212,1,f +752,973pr3699,212,1,f +752,973pr3728c01,288,1,f +752,98138,36,1,t +752,98138,36,2,f +752,98834,0,1,f +752,99206,15,1,f +752,99206,71,1,f +752,99784,71,1,f +753,11113pr0001,179,1,f +753,11126,4,1,f +753,11127,41,6,f +753,11233pr0003,71,1,f +753,11767,72,1,f +753,2654,0,1,f +753,2780,0,1,t +753,2780,0,2,f +753,3001,15,1,f +753,3001,72,5,f +753,3004,15,2,f +753,3004,72,4,f +753,3005,72,4,f +753,30176,2,4,f +753,3020,71,1,f +753,3022,15,1,f +753,30342,41,1,f +753,30374,0,2,f +753,3040b,15,12,f +753,3062b,36,1,f +753,3068b,71,1,f +753,3069b,71,2,f +753,3622,15,4,f +753,3626cpr1137,71,1,f +753,3660,15,2,f +753,3678b,15,4,f +753,3710,15,2,f +753,3941,41,1,f +753,3958,2,1,f +753,4623,71,2,f +753,53705,0,2,f +753,54200,143,10,f +753,54200,15,1,t +753,54200,15,2,f +753,54200,143,1,t +753,54821,143,1,f +753,6021450,9999,1,f +753,6021451,9999,1,f +753,6021452,9999,1,f +753,6021453,9999,1,f +753,6021454,9999,1,f +753,6117,72,2,f +753,6126b,182,1,f +753,64644,0,2,f +753,87079,15,1,f +753,970c00pr0436,71,1,f +753,973pr2237c01,71,1,f +753,98313,70,2,f +754,13608,4,1,f +754,2412b,0,2,f +754,2450,4,2,f +754,2780,0,1,t +754,2780,0,2,f +754,2926,0,2,f +754,298c02,4,1,t +754,298c02,4,1,f +754,30027b,15,4,f +754,30028,0,4,f +754,3009,321,2,f +754,30151a,47,1,f +754,3020,15,4,f +754,3022,2,3,f +754,3032,4,1,f +754,30361pr0009,288,1,f +754,3039,4,1,f +754,3062bpr0002,378,1,f +754,3069bpr0123,15,1,f +754,32000,14,2,f +754,32059,0,1,f +754,32523,14,2,f +754,3298,4,1,f +754,3710,14,4,f +754,3747b,321,2,f +754,3749,19,1,f +754,3794b,4,1,f +754,3794b,0,2,f +754,3795,321,1,f +754,3829c01,4,1,f +754,3832,0,1,f +754,3898,47,2,f +754,4032a,0,1,f +754,4150pr0003,0,1,f +754,41879a,73,1,f +754,4274,71,2,f +754,4274,71,1,t +754,4286,14,2,f +754,44661,0,1,f +754,48729a,80,2,f +754,48729a,80,1,t +754,50231,2,1,f +754,50304,321,1,f +754,50305,321,1,f +754,54872pr0009,1,1,f +754,54873pr0004,78,1,f +754,60219,14,1,f +754,6041,0,2,f +754,61184,4,2,f +754,61409,4,2,f +754,6141,14,4,f +754,6141,4,2,f +754,6141,4,1,t +754,6141,14,1,t +754,6141,41,4,f +754,6141,41,1,t +754,6190,4,1,f +754,6232,14,1,f +754,62360,47,1,f +754,6254,321,1,f +754,87611,14,1,f +754,970c00pr0253,2,1,f +754,973c56,1,1,f +754,973pr1854c01,14,1,f +754,97489,1,1,f +755,2357,70,1,f +755,2420,0,1,f +755,2432,70,2,f +755,2453a,0,1,f +755,2458,72,1,f +755,2489,308,1,f +755,2540,0,1,f +755,30169,0,1,f +755,30173b,0,1,f +755,30176,2,1,f +755,30177,0,1,f +755,3023,4,1,f +755,32062,4,1,f +755,3626bpr0745,14,1,f +755,37,72,2,f +755,3700,72,1,f +755,3957a,0,1,f +755,4032a,1,2,f +755,4085c,0,1,f +755,4085c,4,1,f +755,4497,0,1,f +755,4499,70,1,f +755,4595,0,1,f +755,54200,70,1,t +755,54200,4,2,f +755,54200,70,2,f +755,54200,4,1,t +755,6003,72,1,f +755,60474,14,1,f +755,60583a,4,2,f +755,6141,0,1,f +755,6141,297,4,f +755,6141,15,3,f +755,6141,0,1,t +755,6141,297,1,t +755,6141,15,1,t +755,63868,71,1,f +755,87620,0,1,f +755,970c00pr0191,0,1,f +755,973pr1718c01,0,1,f +756,2543,2,1,f +756,30177,15,1,f +756,3625,0,1,f +756,3626bp02,14,1,f +756,3626bp40,14,1,f +756,3626bpr0001,14,1,f +756,3626bpr0098,14,1,f +756,3626bpr0137,14,1,f +756,4530,0,1,f +756,6093,70,1,f +756,970c00,2,1,f +756,970c00,15,2,f +756,970c00,4,1,f +756,970x026,15,1,f +756,973p25c01,15,1,f +756,973pb0031c01,1,1,f +756,973pb0240c02,15,1,f +756,973pb0640c01,15,1,f +756,973px78ac01,4,1,f +760,3001,1,2,f +760,3001,4,2,f +760,3002,1,2,f +760,3003,4,4,f +760,3003,1,1,f +760,3004,14,2,f +760,3004,4,2,f +760,3004,1,2,f +760,3137c01,0,1,f +760,3641,0,2,f +761,122c01,0,6,f +761,3137c01,0,4,f +761,3483,0,4,f +761,3641,0,20,f +761,7039,4,4,f +761,7049b,0,2,f +762,3003,14,6,f +762,3004,1,9,f +762,3004,0,8,f +762,3005,1,25,f +762,3005,0,22,f +762,3006,0,3,f +762,3009,7,2,f +762,3009,0,3,f +762,3010,4,4,f +762,3010,1,6,f +762,3020,0,1,f +762,3021,4,4,f +762,3022,0,2,f +762,3023,1,3,f +762,3023,0,2,f +762,3024,1,4,f +762,3027,1,1,f +762,3027,0,1,f +762,3028,7,3,f +762,3029,7,2,f +762,3031,0,1,f +762,3031,4,1,f +762,3032,0,1,f +762,3033,0,1,f +762,3035,4,1,f +762,3037,7,10,f +762,3039,7,6,f +762,3039p23,7,1,f +762,3039p34,7,1,f +762,3040b,4,2,f +762,3048c,4,4,f +762,3062b,0,12,f +762,3066,47,3,f +762,3176,0,2,f +762,3228b,7,4,f +762,3403c01,0,1,f +762,3436,4,4,f +762,3492c01,14,1,f +762,3622,7,2,f +762,3622,4,2,f +762,3622,1,3,f +762,3622,0,2,f +762,3623,7,2,f +762,3623,1,3,f +762,3624,4,1,f +762,3626apr0001,14,3,f +762,3633,15,2,f +762,3660,4,2,f +762,3660,0,4,f +762,3665,0,12,f +762,3665,1,6,f +762,3666,7,2,f +762,3666,1,1,f +762,3666,0,2,f +762,3679,7,1,f +762,3680,0,1,f +762,3710,0,6,f +762,3795,1,2,f +762,3795,0,6,f +762,3811p01,7,1,f +762,3823,47,1,f +762,3832,0,4,f +762,3833,4,2,f +762,3837,8,1,f +762,3939,47,2,f +762,3959,7,1,f +762,3962a,0,1,f +762,4022,0,2,f +762,4023,0,2,f +762,4079,7,2,f +762,4083,7,2,f +762,4083,0,1,f +762,4085a,0,1,f +762,4166,8,5,f +762,4175,0,3,f +762,4180c01,0,2,f +762,4213,4,1,f +762,4214,4,1,f +762,4275a,0,10,f +762,4276a,0,2,f +762,4347,15,3,f +762,4476a,0,5,f +762,4510,0,4,f +762,4510,7,12,f +762,4511,15,2,f +762,4531,0,8,f +762,47899c01,15,1,f +762,56823,0,1,f +762,73037,4,1,f +762,73092,0,2,f +762,970c00,0,2,f +762,970c00,1,1,f +762,973p13c01,4,2,f +762,973p26c01,1,1,f +763,2446,15,1,f +763,2447,40,1,f +763,2447,40,1,t +763,298c02,15,1,t +763,298c02,15,1,f +763,3021,15,1,f +763,3023,15,4,f +763,3069b,15,2,f +763,3626bpr0409,14,1,f +763,3962b,72,1,f +763,4085c,15,1,f +763,4697b,71,2,f +763,4697b,71,1,t +763,50859a,0,1,f +763,50861,0,2,f +763,50862,71,2,f +763,54200,36,2,f +763,54200,46,1,f +763,54200,33,2,f +763,7235.2stk01,9999,1,t +763,89536,15,1,f +763,970c00,0,1,f +763,973pr1186c01,0,1,f +764,2555,0,1,f +764,3003,27,1,f +764,30031,0,1,f +764,30153,36,1,f +764,3021,0,1,f +764,30325,1,1,f +764,30385,36,1,f +764,30391,0,1,f +764,30526,72,2,f +764,32009,27,2,f +764,32073,71,1,f +764,3626bpr0559,14,1,f +764,3706,0,1,f +764,3736,25,1,f +764,3794b,71,1,f +764,41530,25,2,f +764,4274,71,1,t +764,4274,71,1,f +764,55981,71,1,f +764,6087,0,1,f +764,61072,135,1,f +764,6141,27,1,t +764,6141,27,2,f +764,64783,72,2,f +764,64784pat01,36,1,f +764,64785,72,1,f +764,6589,19,2,f +764,8956stk01,9999,1,t +764,970c00pr0122,1,1,f +764,973pr1432c01,71,1,f +766,4625992,89,1,f +768,501c,0,1,f +769,98342pr05,27,1,f +770,3002,4,1,f +770,3004,15,1,f +770,3010,15,1,f +770,3020,1,1,f +770,3022,1,1,f +770,3039,14,1,f +770,3062b,14,1,f +770,3062b,14,1,t +770,3622,15,1,f +770,3747b,4,1,f +770,6141,46,1,f +770,6141,46,2,t +771,2340,0,2,f +771,2376,0,1,f +771,2412b,15,9,f +771,2432,14,3,f +771,2445,15,1,f +771,2516,14,1,f +771,2540,4,1,f +771,2569,72,1,f +771,2569,72,1,t +771,2780,0,1,t +771,2780,0,2,f +771,3001,15,4,f +771,3004,14,2,f +771,3008,4,2,f +771,30086,14,1,f +771,30162,72,3,f +771,3021,15,3,f +771,3032,4,1,f +771,30340,15,1,f +771,30350b,0,1,f +771,3036,0,1,f +771,30363,4,4,f +771,30367b,14,3,f +771,30395,72,1,f +771,3039pr0014,0,1,f +771,3062b,71,3,f +771,30663,0,2,f +771,3069b,33,2,f +771,32009,71,2,f +771,32018,15,2,f +771,32123b,14,2,f +771,32123b,14,1,t +771,3623,14,2,f +771,3666,4,1,f +771,3678b,4,10,f +771,3679,71,1,f +771,3680,14,1,f +771,3701,4,3,f +771,3710,15,2,f +771,3737,0,1,f +771,3794a,0,2,f +771,3795,15,1,f +771,3829c01,14,1,f +771,3899,14,1,f +771,3939,4,1,f +771,3957a,71,1,f +771,3962b,0,2,f +771,4079,14,2,f +771,4081b,15,1,f +771,4083,14,2,f +771,4085c,71,4,f +771,4175,71,1,f +771,41862,71,1,f +771,4274,71,1,t +771,4274,71,3,f +771,4286,4,4,f +771,43093,1,4,f +771,43337,71,1,f +771,4349,72,1,f +771,44809,71,2,f +771,4510,15,2,f +771,4589,14,4,f +771,4740,15,2,f +771,47457,4,6,f +771,48064c02,25,1,f +771,48336,71,1,f +771,4864b,41,4,f +771,4865a,15,2,f +771,53586,135,2,f +771,53989,0,1,f +771,54100,4,1,f +771,54101,71,1,f +771,54200,33,9,f +771,54383,15,1,f +771,54384,15,1,f +771,58181,41,1,f +771,6141,36,2,f +771,6141,34,2,f +771,6141,46,1,t +771,6141,34,1,t +771,6141,36,1,t +771,6141,46,2,f +771,6141,1,1,f +771,6141,1,1,t +771,6541,0,3,f +771,6587,72,2,f +771,6636,0,6,f +772,2847c01,7,1,f +773,2357,7,2,f +773,2357,15,3,f +773,2412b,15,6,f +773,2420,0,2,f +773,2431,0,2,f +773,2431,7,1,f +773,2431px14,15,1,f +773,2432,15,2,f +773,2432,7,4,f +773,2437,40,1,f +773,2445,0,1,f +773,2449,15,7,f +773,2453a,7,3,f +773,2453a,15,5,f +773,2454a,15,6,f +773,2454a,7,2,f +773,2456,7,1,f +773,2486,0,2,f +773,2540,15,1,f +773,2555,7,5,f +773,2569,8,1,f +773,2780,0,1,t +773,2780,0,1,f +773,2877,15,22,f +773,2877,8,4,f +773,2921,8,5,f +773,3001,15,1,f +773,3001,1,2,f +773,3002,8,2,f +773,3003,7,1,f +773,3004,0,6,f +773,3004,1,2,f +773,3004,7,10,f +773,30043,0,1,f +773,3005,15,5,f +773,30055,0,5,f +773,3008,7,4,f +773,3008,15,2,f +773,3009,15,3,f +773,3010,15,4,f +773,3010,0,4,f +773,30152pat0001,0,1,f +773,30162,8,1,f +773,30179,0,3,f +773,30181,0,3,f +773,3020,15,1,f +773,3021,7,1,f +773,3022,15,4,f +773,3022,0,2,f +773,3023,8,4,f +773,3023,46,2,f +773,30236,0,3,f +773,30237a,15,6,f +773,3024,36,2,f +773,30249,7,2,f +773,3028,0,2,f +773,30285,7,4,f +773,3030,8,1,f +773,30304,8,2,f +773,3031,15,1,f +773,3033,0,1,f +773,3039,8,2,f +773,30391,0,4,f +773,3039pb043,15,1,f +773,3039pr0001,15,1,f +773,3039pr0002,15,1,f +773,3040b,0,4,f +773,3040bpr0003,7,2,f +773,30517,8,1,f +773,30536,15,1,f +773,30553,0,1,f +773,30562,40,4,f +773,3062b,15,3,f +773,3068b,7,1,f +773,3068b,15,4,f +773,3068bpb0061,15,1,f +773,3069b,334,2,f +773,3069b,0,2,f +773,3069b,33,2,f +773,3069b,36,2,f +773,3069bp02,7,1,f +773,3069bp80,15,1,f +773,3069bpr0090,8,1,f +773,3070b,46,1,t +773,3070b,46,2,f +773,3070bp70,7,1,f +773,3070bp70,7,1,t +773,3176,7,2,f +773,32529,0,1,f +773,3622,15,4,f +773,3622,8,2,f +773,3623,15,4,f +773,3626bpb0181,14,1,f +773,3626bpr0410,14,1,f +773,3626bpr0411,14,1,f +773,3626bpx304,14,1,f +773,3660,15,4,f +773,3665,15,2,f +773,3665,0,2,f +773,3666,0,3,f +773,3666,15,1,f +773,3679,7,1,f +773,3680,15,1,f +773,3700,7,2,f +773,3710,0,3,f +773,3710,15,1,f +773,3747a,15,3,f +773,3754,15,1,f +773,3788,0,2,f +773,3794a,7,6,f +773,3795,1,1,f +773,3829c01,1,2,f +773,3832,8,1,f +773,3857,8,1,f +773,3899,1,1,f +773,3900,15,1,f +773,3901,7,1,f +773,3901,6,1,f +773,3962b,8,2,f +773,3963,8,1,f +773,4070,7,1,f +773,4079,1,2,f +773,4085c,0,6,f +773,41334,8,1,f +773,41532,0,1,f +773,4162,0,4,f +773,41747,8,2,f +773,41747,15,1,f +773,41747pb010,15,1,f +773,41748,8,2,f +773,41748,15,1,f +773,41748pb010,15,1,f +773,41862,8,1,f +773,4215b,40,1,f +773,4285b,0,1,f +773,4286,15,2,f +773,43337,8,2,f +773,4345b,7,1,f +773,4346,7,1,f +773,4349,8,4,f +773,4360,8,1,f +773,43898,15,2,f +773,44570,0,1,f +773,4460a,7,4,f +773,4460a,15,5,f +773,44728,7,1,f +773,4477,15,2,f +773,44822,0,1,f +773,4485,0,1,f +773,4533,0,2,f +773,45677,0,1,f +773,4599a,7,2,f +773,4600,7,2,f +773,46212,40,7,f +773,46667,7,1,f +773,4740,36,1,f +773,4854,0,1,f +773,4864b,0,2,f +773,6014b,15,4,f +773,6015,0,4,f +773,6016,8,1,f +773,6019,7,4,f +773,6020,0,2,f +773,6141,36,1,t +773,6141,0,4,f +773,6141,0,1,t +773,6141,46,1,t +773,6141,46,3,f +773,6141,36,6,f +773,6141,33,1,t +773,6141,33,1,f +773,6212,0,3,f +773,6231,0,2,f +773,6238,0,1,f +773,6249,7,2,f +773,6556,0,1,f +773,7035stk01,9999,1,t +773,75c08,8,1,f +773,76041c02,7,3,f +773,76385,8,2,f +773,890p01,15,1,f +773,92410,0,2,f +773,970c00,272,1,f +773,970c00,462,1,f +773,970c00,0,2,f +773,973pb0286c01,462,1,f +773,973pb0290c01,272,1,f +773,973pb0354c01,272,2,f +774,2348a,47,1,f +774,2349a,15,1,f +774,2412b,0,3,f +774,2420,15,1,f +774,2432,0,1,f +774,2435,2,1,f +774,2436,15,1,f +774,2439,8,1,f +774,2493b,4,10,f +774,2494,47,10,f +774,298c02,15,1,f +774,3001,14,2,f +774,3003,14,2,f +774,3004,15,58,f +774,3004,14,2,f +774,3005,0,4,f +774,3005,15,6,f +774,3008,4,2,f +774,3008,15,3,f +774,3009,15,3,f +774,3010,15,4,f +774,3010,4,4,f +774,3020,15,2,f +774,3021,0,1,f +774,3023,15,8,f +774,3024,33,6,f +774,3024,46,2,f +774,3024,15,12,f +774,3024,36,2,f +774,3032,15,1,f +774,3033,15,4,f +774,3034,0,1,f +774,3039p23,15,1,f +774,3040b,15,14,f +774,3040p32,7,1,f +774,3062b,0,2,f +774,3068bp52,15,3,f +774,3069b,7,1,f +774,3069b,15,2,f +774,3070b,15,2,f +774,3460,15,1,f +774,3460,4,2,f +774,3622,15,12,f +774,3623,15,2,f +774,3624,15,1,f +774,3625,0,1,f +774,3626a,47,1,f +774,3626apr0001,14,5,f +774,3641,0,4,f +774,3665,15,1,f +774,3666,15,3,f +774,3679,7,1,f +774,3680,0,1,f +774,3710,0,1,f +774,3710,15,1,f +774,3710,4,1,f +774,3741,2,2,f +774,3742,14,2,t +774,3742,14,6,f +774,3788,15,1,f +774,3795,14,1,f +774,3821,4,1,f +774,3822,4,1,f +774,3823,47,1,f +774,3829c01,15,1,f +774,3838,15,1,f +774,3899,47,3,f +774,3901,0,2,f +774,3957a,0,1,f +774,3959,0,1,f +774,4032a,0,2,f +774,4070,0,2,f +774,4070,4,4,f +774,4079,14,2,f +774,4079,0,1,f +774,4081b,15,1,f +774,4211,15,1,f +774,4213,15,1,f +774,4215ap01,47,4,f +774,4315,15,2,f +774,4345a,14,1,f +774,4346,14,1,f +774,4447,4,2,f +774,4448,47,2,f +774,4477,15,3,f +774,4478p01,2,1,f +774,4530,6,1,f +774,4590,15,1,f +774,4600,0,2,f +774,4624,15,4,f +774,4714,15,2,f +774,4715,15,4,f +774,4740,8,2,f +774,4740,34,1,f +774,4740,15,1,f +774,6141,46,8,f +774,6380stk01,9999,1,t +774,970c00,4,1,f +774,970c00,1,1,f +774,970c00,7,1,f +774,970c00,15,2,f +774,973p13c01,4,1,f +774,973p24c01,15,2,f +774,973p25c01,15,1,f +774,973pb0203c01,15,1,f +775,3001,4,2,f +775,3001,15,1,f +775,3001,1,1,f +775,3001pr1,14,1,f +775,3002,1,2,f +775,3002,15,2,f +775,3003,4,4,f +775,3003,1,2,f +775,3003,15,2,f +775,3003pe1,14,2,f +775,4130,14,1,f +775,4131,4,1,f +775,4132,14,1,f +775,4133,4,1,f +775,4202,14,1,f +776,2361p01,7,2,f +777,22119,71,1,f +777,2357,19,8,f +777,2413,15,4,f +777,2419,15,1,f +777,2431,72,2,f +777,2449,72,2,f +777,2458,19,2,f +777,2555,71,3,f +777,2614,0,1,f +777,2654,4,5,f +777,2780,0,2,t +777,2780,0,4,f +777,298c02,4,1,f +777,298c02,4,1,t +777,3001,15,2,f +777,3001,72,2,f +777,3002,0,2,f +777,3003,4,2,f +777,30033,72,2,f +777,3004,19,4,f +777,3006,19,1,f +777,3008,19,2,f +777,3009,72,3,f +777,30103,0,1,f +777,30115,2,1,f +777,30132,72,1,f +777,30132,72,1,t +777,30136,72,21,f +777,30136,19,22,f +777,30172,28,1,f +777,30176,72,4,f +777,30176,2,20,f +777,3020,72,5,f +777,3020,71,1,f +777,3021,19,7,f +777,3022,15,3,f +777,3023,2,20,f +777,3023,72,6,f +777,30238,0,2,f +777,3024,72,15,f +777,30240,15,1,f +777,30332,0,1,f +777,30367b,71,1,f +777,30374,19,1,f +777,3039,72,1,f +777,3040b,2,9,f +777,3040b,70,11,f +777,30414,19,1,f +777,30464,72,2,f +777,30602,15,1,f +777,3062b,72,10,f +777,3068b,28,4,f +777,3068b,19,17,f +777,32000,72,11,f +777,32001,71,2,f +777,32014,14,2,f +777,32039,0,2,f +777,32064b,14,1,f +777,32073,71,1,f +777,32123b,14,1,t +777,32123b,14,2,f +777,32269,19,1,f +777,33172,308,1,f +777,3455,71,1,f +777,3460,71,1,f +777,3460,72,3,f +777,3622,72,3,f +777,3626bpr0387,78,1,f +777,3626bpr0472,78,1,f +777,3626bpr0501,78,1,f +777,3626bpr0516a,78,1,f +777,3626bpr0895,15,3,f +777,3648b,72,1,f +777,3665,72,2,f +777,3676,72,2,f +777,3678b,71,4,f +777,3684,72,9,f +777,3700,71,5,f +777,3701,72,4,f +777,3705,0,2,f +777,3710,71,5,f +777,3743,71,2,f +777,3749,19,3,f +777,3794a,4,1,f +777,3794a,19,11,f +777,3830,72,5,f +777,3831,70,5,f +777,3832,70,2,f +777,3832,1,1,f +777,3832,4,2,f +777,3832,71,2,f +777,3941,72,2,f +777,3941,71,2,f +777,40233,0,1,f +777,4070,70,3,f +777,4070,19,15,f +777,4081b,72,4,f +777,41854,72,2,f +777,4274,71,1,t +777,4274,71,1,f +777,43337,71,2,f +777,43337,15,2,f +777,43713,15,1,f +777,43719,72,1,f +777,4460b,19,11,f +777,4477,19,3,f +777,4477,72,2,f +777,4485,0,1,f +777,4497,0,4,f +777,4515,19,1,f +777,47397,288,1,f +777,47398,288,1,f +777,47755,72,2,f +777,47990,72,2,f +777,4871,15,3,f +777,48724,72,2,f +777,49668,0,4,f +777,51739,15,1,f +777,52040,72,5,f +777,53451,135,11,f +777,53451,135,2,t +777,53989,148,8,f +777,55236,70,6,f +777,57503,334,2,f +777,57504,334,2,f +777,57505,334,2,f +777,57506,334,2,f +777,58846,72,2,f +777,59229,72,2,f +777,59230,15,2,t +777,59230,15,2,f +777,59349,19,2,f +777,60032,72,4,f +777,60115,15,1,f +777,60208,0,1,f +777,6081,15,2,f +777,6082pat0001,72,2,f +777,6083,72,1,f +777,6091,72,4,f +777,6111,72,1,f +777,6126a,182,1,f +777,6141,72,3,t +777,6141,19,1,t +777,6141,19,6,f +777,6141,72,10,f +777,6148,2,5,f +777,61506,70,1,f +777,6179,71,1,f +777,61975,70,1,f +777,61976,70,1,f +777,6215,15,4,f +777,6231,15,4,f +777,62363,28,1,f +777,6239,15,1,f +777,6266,15,2,f +777,62713,82,1,f +777,63965,70,1,f +777,6587,72,3,f +777,6636,28,6,f +777,75c22,0,2,f +777,7623stk01,9999,1,t +777,772,72,9,f +777,970c00,71,1,f +777,970c00,28,1,f +777,970c00,19,1,f +777,973pr1370c01,308,1,f +777,973pr1372c01,28,1,f +777,973pr1375c01,19,1,f +777,973pr1380c01,73,1,f +779,2412b,383,2,f +779,2450,4,2,f +779,2456,4,2,f +779,2456,14,2,f +779,3001,69,4,f +779,3001,14,6,f +779,3001,0,8,f +779,3001,25,4,f +779,3001,4,10,f +779,3001,15,8,f +779,3001,1,6,f +779,3002,1,4,f +779,3002,0,4,f +779,3002,4,6,f +779,3002,25,2,f +779,3002,14,4,f +779,3002,15,6,f +779,3003,1,12,f +779,3003,25,6,f +779,3003,15,12,f +779,3003,14,12,f +779,3003,69,6,f +779,3003,0,12,f +779,3003,8,4,f +779,3003,4,16,f +779,3004,25,6,f +779,3004,8,6,f +779,3004,14,12,f +779,3004,4,16,f +779,3004,15,12,f +779,3004,69,6,f +779,3004,0,12,f +779,3004,1,12,f +779,3004p0b,14,1,f +779,3005,1,22,f +779,3005,0,18,f +779,3005,4,22,f +779,3005,15,18,f +779,3005,14,22,f +779,3005pe1,8,2,f +779,3007,15,2,f +779,3008,1,2,f +779,3008,14,2,f +779,3008,4,2,f +779,3009,15,2,f +779,3009,0,2,f +779,3009,4,2,f +779,3009,69,2,f +779,3009,1,2,f +779,3010,0,6,f +779,3010,1,4,f +779,3010,15,4,f +779,3010,25,4,f +779,3010,4,6,f +779,3010,69,4,f +779,3010,14,4,f +779,3020,14,2,f +779,3020,4,2,f +779,3020,1,2,f +779,3020,15,2,f +779,3020,0,2,f +779,3020,25,2,f +779,3020,69,2,f +779,3021,4,4,f +779,3021,0,2,f +779,3021,14,4,f +779,3021,15,4,f +779,3021,1,4,f +779,3022,4,4,f +779,3022,15,4,f +779,3022,69,4,f +779,3022,8,4,f +779,3022,0,4,f +779,3022,1,4,f +779,3022,25,4,f +779,3022,14,4,f +779,3039,69,2,f +779,3040b,4,4,f +779,3040b,25,4,f +779,3040b,0,4,f +779,3665,25,4,f +779,3665,69,4,f +779,3665,0,4,f +779,3665,4,4,f +779,3839b,0,1,f +779,4286,8,2,f +779,4287,8,2,f +779,4740,42,2,f +779,73590c01b,14,2,f +780,2412b,0,6,f +780,2413,7,1,f +780,2420,4,2,f +780,2431,0,1,f +780,2555,15,4,f +780,3004,7,4,f +780,3010,7,5,f +780,3022,1,1,f +780,3023,1,5,f +780,3023,14,1,f +780,30249,7,1,f +780,30249ps0,7,1,f +780,30304,8,1,f +780,30355,7,1,f +780,30356,7,1,f +780,30365,0,2,f +780,30370,4,1,f +780,3037ps2,7,1,f +780,3037ps3,7,1,f +780,3038,7,2,f +780,3038p01,7,2,f +780,3040b,7,3,f +780,3062b,0,1,f +780,3070b,8,1,t +780,3070b,8,3,f +780,3070bps0,19,1,f +780,3070bps0,19,1,t +780,32054,0,1,f +780,3460,8,3,f +780,3460,15,1,f +780,3622,8,1,f +780,3626bpse,14,1,f +780,3660,15,1,f +780,3666,4,4,f +780,3700,15,4,f +780,3710,8,1,f +780,3794a,4,7,f +780,3795,15,2,f +780,3849,15,1,f +780,3941,15,2,f +780,4070,0,1,f +780,4213,15,2,f +780,4287,8,1,f +780,4315,0,2,f +780,4349,0,1,f +780,4740,36,1,f +780,4856a,15,1,f +780,4859,8,1,f +780,6141,57,1,t +780,6141,57,1,f +780,63965,15,2,f +780,76385,0,2,f +780,970x026,4,1,f +780,973pb0191c01,4,1,f +781,4332,70,1,f +781,6141,15,4,t +781,6141,15,4,f +781,70973,5,1,f +782,122c01,7,4,f +782,3002a,1,1,f +782,3003,1,1,f +782,3004,1,7,f +782,3005,1,7,f +782,3008,1,1,f +782,3009,1,4,f +782,3010,1,2,f +782,3020,7,4,f +782,3020,1,1,f +782,3022,7,1,f +782,3023,14,2,f +782,3023,7,2,f +782,3024,1,1,f +782,3024,36,2,f +782,3024,34,4,f +782,3029,1,1,f +782,3034,1,1,f +782,3036,46,1,f +782,3036,1,1,f +782,3039p23,1,1,f +782,3039p34,7,1,f +782,3039p34,1,2,f +782,3062a,7,2,f +782,3062a,36,3,f +782,3062a,34,2,f +782,3066,46,9,f +782,3149c01,1,1,f +782,3479,1,4,f +782,3622,1,1,f +782,3626apr0001,14,3,f +782,3641,0,8,f +782,3660p01,1,3,f +782,3666,1,2,f +782,3679,7,1,f +782,3680,7,1,f +782,3710,7,1,f +782,3710,14,2,f +782,3710,1,2,f +782,3730,7,1,f +782,3731,7,1,f +782,3787,7,2,f +782,3788,7,2,f +782,3794a,7,3,f +782,3795,7,1,f +782,3829c01,1,2,f +782,3829c01,7,2,f +782,3832,1,2,f +782,3838,4,1,f +782,3838,7,1,f +782,3838,15,2,f +782,3839b,7,8,f +782,3842a,4,1,f +782,3842a,15,2,f +782,3937,7,1,f +782,3938,7,1,f +782,3941,7,11,f +782,3941,0,2,f +782,3941,1,6,f +782,3941,15,8,f +782,3942a,15,1,f +782,3942a,0,1,f +782,3947a,7,1,f +782,3956,1,4,f +782,3956,7,3,f +782,3957a,7,3,f +782,3960,7,1,f +782,3962a,0,2,f +782,4006,0,1,f +782,69c01,1,4,f +782,970c00,15,2,f +782,970c00,4,1,f +782,973p90c02,4,1,f +782,973p90c05,15,2,f +782,x467c12,0,3,f +783,2412b,72,2,f +783,2419,14,1,f +783,2456,0,2,f +783,2540,72,3,f +783,2555,14,1,f +783,2569,0,1,f +783,2780,0,1,t +783,2780,0,4,f +783,2877,72,2,f +783,3021,0,1,f +783,3031,14,2,f +783,30350b,72,1,f +783,3037,14,4,f +783,30373,72,3,f +783,30407,72,1,f +783,3040b,0,4,f +783,30414,14,1,f +783,3048c,0,4,f +783,30552,72,1,f +783,3068b,14,3,f +783,32013,0,1,f +783,32034,71,1,f +783,32054,0,1,f +783,32062,4,1,f +783,32064b,72,2,f +783,32072,0,1,f +783,32073,71,1,f +783,32192,0,2,f +783,32530,72,1,f +783,3626bpr0446,14,1,f +783,3660,14,2,f +783,3666,14,1,f +783,3684,0,6,f +783,3709,14,4,f +783,3709,0,4,f +783,3710,14,2,f +783,3737,0,1,f +783,3795,14,2,f +783,3839b,0,2,f +783,3957a,0,1,f +783,4079,70,1,f +783,4081b,72,2,f +783,4095,0,2,f +783,41747,14,2,f +783,41748,14,2,f +783,41883,182,1,f +783,42023,14,4,f +783,43722,14,1,f +783,43723,14,1,f +783,44126,14,2,f +783,4519,71,3,f +783,45677,14,2,f +783,45705,14,2,f +783,4588,72,2,f +783,4589,36,1,f +783,4589,0,1,f +783,4740,72,2,f +783,4740,33,1,f +783,47452,72,2,f +783,47455,0,4,f +783,47905,0,1,f +783,48171,72,2,f +783,48172,0,1,f +783,48336,0,1,f +783,48729a,0,2,t +783,48729a,0,3,f +783,50950,320,3,f +783,53982,10,1,f +783,53989,148,3,f +783,53989,320,2,f +783,54200,320,3,f +783,57909a,72,4,f +783,59443,4,1,f +783,60475a,0,4,f +783,60478,72,1,f +783,60849,14,2,f +783,6117,72,2,f +783,61403,71,1,f +783,61409,72,2,f +783,6141,36,1,t +783,6141,36,2,f +783,62020,9999,1,t +783,62712,72,4,f +783,6553,0,1,f +783,8113cdb01,9999,1,t +783,970c00,320,1,f +783,973pr1360c01,320,1,f +784,2540,71,1,f +784,30031,71,1,f +784,30377,0,1,f +784,30377,0,1,t +784,32530,72,1,f +784,43898,0,1,f +784,61184,71,1,f +786,2431,41,8,f +786,2444,71,1,f +786,2780,0,5,f +786,3031,15,2,f +786,3626bpr0743,14,1,f +786,4006,0,1,f +786,4150,71,1,f +786,4274,1,1,f +786,43898,15,1,f +786,44809,71,1,f +786,4589,33,1,f +786,6141,46,1,f +786,6141,36,1,f +786,6222,71,1,f +786,62462,71,2,f +786,63965,71,1,f +786,87081,15,1,f +786,87754,15,1,f +786,89159,82,1,f +786,970c00,15,1,f +786,973pr1695c01,15,1,f +788,2412b,0,5,f +788,2540,72,1,f +788,2555,71,1,f +788,2654,0,5,f +788,2780,0,1,t +788,2780,0,2,f +788,2877,70,3,f +788,3020,70,1,f +788,3023,71,1,f +788,3024,70,1,f +788,3024,70,1,t +788,3035,71,2,f +788,30359b,47,1,f +788,30374,71,2,f +788,30375,19,4,f +788,30376,19,4,f +788,30377,19,8,f +788,30377,19,1,t +788,30378,19,4,f +788,3070b,72,1,t +788,3070b,72,1,f +788,32530,0,2,f +788,3623,70,2,f +788,3666,72,2,f +788,3679,71,1,f +788,3680,0,1,f +788,3794a,70,2,f +788,3839b,72,1,f +788,3956,71,1,f +788,3960,47,1,f +788,41889,148,3,f +788,41890,148,6,f +788,42060,70,1,f +788,42061,70,1,f +788,42687,148,3,f +788,4349,0,2,f +788,4349,0,2,t +788,4349,72,2,f +788,44675,70,3,f +788,4589,70,4,f +788,4733,0,1,f +788,4742,72,1,f +788,47905,72,4,f +788,50950,72,3,f +788,54200,72,1,f +788,6141,57,2,f +788,6141,57,3,t +788,6222,72,1,f +788,64567,71,4,f +788,6541,71,1,f +789,2446,15,1,f +789,2447,82,1,t +789,2447,82,1,f +789,30153,42,1,f +789,30162,72,1,f +789,30377,15,1,t +789,30377,15,2,f +789,3626bpr0250,14,1,f +789,3794a,15,3,f +789,3841,72,1,f +789,4345b,15,1,f +789,4346,15,1,f +789,4349,0,1,f +789,4479,0,1,f +789,4590,72,1,f +789,4623,15,2,f +789,54200,25,1,t +789,54200,25,1,f +789,6141,42,2,f +789,6141,42,1,t +789,970x194,15,1,f +789,973pr1317c01,15,1,f +791,2586p4g,7,1,f +791,3626bpx73,14,1,f +791,6027,0,1,f +791,6028,0,1,f +791,6122,383,1,f +791,6123,8,1,f +791,6126a,57,1,f +791,6127,0,1,f +791,6128,0,1,f +791,6133,57,2,f +791,75174,0,1,f +791,87695,15,1,t +791,87695,15,1,f +791,87696,15,1,t +791,970c00pb015,0,1,f +791,973px120c01,0,1,f +792,x507,9999,4,f +794,2714a,0,1,f +794,2716,0,1,f +794,2780,0,1,t +794,2780,0,2,f +794,32062,0,3,f +794,32073,0,1,f +794,32123b,7,1,f +794,32123b,7,1,t +794,32165,73,1,f +794,32166,15,2,f +794,32168,15,1,f +794,32171pb013,15,1,f +794,32171pb026,14,1,f +794,32172,1,2,f +794,32173,15,3,f +794,32174,1,3,f +794,32174,73,2,f +794,32176,15,1,f +794,32177,15,2,f +794,32194,1,1,f +794,3647,1,1,t +794,3647,1,1,f +794,3649,15,1,f +794,3705,0,1,f +794,3706,0,1,f +794,4716,1,1,f +795,2432,72,1,f +795,2585,71,1,f +795,2780,0,1,t +795,2780,0,2,f +795,2825,71,4,f +795,2905,14,2,f +795,30391,0,4,f +795,30395,72,1,f +795,32062,0,5,f +795,32064b,14,2,f +795,32123b,71,10,f +795,32123b,71,1,t +795,32140,14,4,f +795,32140,0,4,f +795,32184,71,1,f +795,32249,14,2,f +795,32270,71,2,f +795,32278,0,1,f +795,32316,71,2,f +795,32348,14,2,f +795,32498,0,1,f +795,32523,0,4,f +795,32556,71,4,f +795,3647,71,3,f +795,3647,71,1,t +795,3702,4,1,f +795,3705,0,1,f +795,3706,0,7,f +795,3707,0,2,f +795,3713,71,4,f +795,3713,71,1,t +795,42003,0,2,f +795,43093,1,4,f +795,44294,71,1,f +795,4716,0,1,f +795,51739,14,2,f +795,55981,71,4,f +795,56823c50,0,1,f +795,57779,14,1,f +795,59426,72,1,f +795,6536,14,4,f +795,6538b,71,1,f +795,6558,0,3,f +795,6632,14,4,f +796,2341,0,2,f +796,2420,0,2,f +796,2446,8,1,f +796,2470,6,4,f +796,2488,0,1,f +796,251,0,1,f +796,2587,8,1,f +796,2594,8,1,f +796,3004,15,1,f +796,3004,4,1,f +796,3004,0,1,f +796,3005,1,4,f +796,3010,1,3,f +796,3020,0,2,f +796,3020,4,1,f +796,3021,0,1,f +796,3022,0,1,f +796,3023,0,2,f +796,3023,15,1,f +796,3023,1,3,f +796,3024,1,2,f +796,3024,0,4,f +796,3035,0,1,f +796,3062b,0,8,f +796,3623,0,2,f +796,3626apr0001,14,3,f +796,3659,1,2,f +796,3666,0,2,f +796,3679,7,1,f +796,3710,1,1,f +796,3844,8,1,f +796,3846p4h,7,1,f +796,3847,8,2,f +796,3849,8,1,f +796,3957a,0,8,f +796,4085c,0,4,f +796,4085c,1,6,f +796,4488,0,4,f +796,4491a,4,1,f +796,4493c01pb02,0,1,f +796,4495a,15,2,f +796,4497,6,2,f +796,4498,6,1,f +796,4499,6,1,f +796,4506,6,1,f +796,4587,4,1,f +796,4623,0,1,f +796,4732,4,2,f +796,4873,0,2,f +796,75998pr0007,15,1,f +796,87692,4,1,f +796,87693,4,1,f +796,87694,4,1,t +796,970c00,2,1,f +796,970x026,1,2,f +796,973p40c02,1,1,f +796,973p48c01,2,1,f +796,973px138c01,4,1,f +799,122c01,7,2,f +799,3003,1,2,f +799,3004,15,1,f +799,3004,1,5,f +799,3004p20,1,2,f +799,3004p90,1,2,f +799,3008,1,2,f +799,3009,1,1,f +799,3010,1,3,f +799,3010pr0924,1,2,f +799,3020,1,6,f +799,3020,15,2,f +799,3020,7,4,f +799,3021,1,2,f +799,3021,7,4,f +799,3022,1,2,f +799,3023,1,8,f +799,3023,15,2,f +799,3024,34,2,f +799,3024,36,2,f +799,3027,7,1,f +799,3030,7,3,f +799,3030,46,1,f +799,3032,7,1,f +799,3039p23,7,1,f +799,3039p34,7,1,f +799,3062a,34,1,f +799,3065,46,4,f +799,3066,46,2,f +799,3068b,1,4,f +799,3069b,1,8,f +799,3430c03,7,1,f +799,3460,1,2,f +799,3460,7,2,f +799,3479,1,2,f +799,3479,7,4,f +799,3622,1,2,f +799,3623,0,2,f +799,3623,1,2,f +799,3623,7,2,f +799,3623,14,2,f +799,3626apr0001,14,2,f +799,3641,0,4,f +799,3660,1,2,f +799,3665,1,2,f +799,3666,7,2,f +799,3666,1,1,f +799,3710,1,7,f +799,3795,7,1,f +799,3821,15,1,f +799,3822,15,1,f +799,3829c01,7,2,f +799,3830,1,2,f +799,3831,1,2,f +799,3838,4,1,f +799,3838,15,1,f +799,3839a,7,1,f +799,3842a,15,1,f +799,3842a,4,1,f +799,3933a,7,3,f +799,3934a,7,3,f +799,3937,1,2,f +799,3938,1,2,f +799,3939,46,2,f +799,3939p91,1,1,f +799,3940a,7,4,f +799,3941,7,2,f +799,3943a,7,2,f +799,3956,1,2,f +799,3957a,7,1,f +799,3958,7,2,f +799,3959,7,1,f +799,3963,7,2,f +799,4006,0,1,f +799,970c00,4,1,f +799,970c00,15,1,f +799,973p90c02,4,1,f +799,973p90c05,15,1,f +800,2458,4,1,f +800,3003,4,2,f +800,3004,4,1,f +800,3034,2,1,f +800,3039,42,1,f +800,3298p72,14,1,f +800,3641,0,2,f +800,3660,4,1,f +800,3795,0,3,f +800,4600,7,1,f +800,4617b,14,1,f +800,4624,14,2,f +801,2357,72,2,f +801,2431,1,2,f +801,2444,71,6,f +801,2458,15,6,f +801,2462,1,2,f +801,2654,15,5,f +801,2654,182,4,f +801,2780,0,1,t +801,2780,0,2,f +801,3003,1,2,f +801,3004,1,6,f +801,3008,1,1,f +801,3020,71,3,f +801,3022,1,10,f +801,3023,27,4,f +801,3023,72,6,f +801,3031,72,1,f +801,3033,71,1,f +801,30367b,27,3,f +801,3039pr0002,15,1,f +801,3062b,27,8,f +801,30663,71,1,f +801,3068b,1,5,f +801,3069b,27,5,f +801,3069b,1,1,f +801,32000,71,2,f +801,32474,4,1,f +801,3623,72,1,f +801,3660,71,8,f +801,3666,1,2,f +801,3666,27,2,f +801,3710,27,5,f +801,3747b,72,2,f +801,3795,1,5,f +801,3943b,72,3,f +801,3956,71,3,f +801,3957a,42,2,f +801,4032a,72,4,f +801,4032a,27,2,f +801,41747,15,1,f +801,41748,15,1,f +801,41751,40,1,f +801,41764,1,1,f +801,41765,1,1,f +801,41769,1,1,f +801,41770,1,1,f +801,41854,85,2,f +801,42021,71,1,f +801,42022,1,2,f +801,4274,1,1,t +801,4274,1,4,f +801,43093,1,2,f +801,4600,71,2,f +801,4624,71,4,f +801,4740,45,2,f +801,47457,85,4,f +801,48336,1,3,f +801,48336,71,6,f +801,50950,27,2,f +801,50950,1,4,f +801,54200,1,1,t +801,54200,1,2,f +801,6091,85,4,f +801,6106,1,2,f +801,61184,71,1,f +801,6141,57,20,f +801,6141,72,2,t +801,6141,72,13,f +801,6141,57,2,t +801,61487,15,4,f +801,63868,15,6,f +801,63868,1,2,f +801,6541,15,2,f +801,73983,1,2,f +801,85940,0,1,f +801,87079,15,4,f +801,87087,27,2,f +801,87414,0,4,f +801,88062pr0001,78,1,f +801,88064pr0001,15,1,f +801,88065pr0001,27,2,f +801,88066,47,1,f +801,88685,4,1,f +801,970c00pr0162,15,1,f +801,973pr1552c01,15,1,f +802,3007,1,6,f +802,3007,4,6,f +802,3007,0,6,f +802,3007,14,6,f +802,3007,15,6,f +803,2346,0,4,f +803,2493c01,15,8,f +803,2711,0,2,f +803,2713,4,2,f +803,2713,14,2,f +803,2714a,4,2,f +803,2714a,14,2,f +803,2717,0,1,f +803,3002,15,2,f +803,3003,1,3,f +803,3004,15,6,f +803,3004,14,2,f +803,3004,4,1,f +803,3005,7,4,f +803,3005,4,2,f +803,3008,15,4,f +803,3010,15,1,f +803,3010,1,2,f +803,3020,15,7,f +803,3020,1,5,f +803,3020,14,2,f +803,3022,15,2,f +803,3022,4,2,f +803,3022,1,1,f +803,3023,15,6,f +803,3023,1,2,f +803,3023,4,8,f +803,3023,7,9,f +803,3027,7,8,f +803,3029,14,4,f +803,3031,14,8,f +803,3031,7,1,f +803,3032,15,1,f +803,3034,4,1,f +803,3034,15,4,f +803,3034,7,6,f +803,3035,1,1,f +803,3035,15,5,f +803,3039,4,1,f +803,3039p23,1,1,f +803,3039p34,1,1,f +803,3040b,4,2,f +803,3040b,1,1,f +803,3062b,33,1,f +803,3068b,15,8,f +803,3069b,15,2,f +803,3069b,14,2,f +803,3298,14,4,f +803,3456,15,2,f +803,3456,4,2,f +803,3460,4,1,f +803,3482,7,7,f +803,3483,0,3,f +803,3623,0,2,f +803,3623,15,2,f +803,3623,4,2,f +803,3648a,7,1,f +803,3650a,7,2,f +803,3651,7,4,f +803,3660,4,1,f +803,3660p01,1,2,f +803,3665,4,1,f +803,3666,15,6,f +803,3666,4,4,f +803,3666,0,2,f +803,3666,14,16,f +803,3673,7,19,f +803,3700,15,6,f +803,3700,4,9,f +803,3700,1,1,f +803,3701,7,5,f +803,3701,1,3,f +803,3701,15,2,f +803,3702,4,6,f +803,3702,1,6,f +803,3703,14,8,f +803,3703,15,12,f +803,3704,0,6,f +803,3705,0,7,f +803,3706,0,3,f +803,3707,0,3,f +803,3708,0,1,f +803,3709,4,4,f +803,3710,1,2,f +803,3710,4,2,f +803,3710,7,1,f +803,3710,15,8,f +803,3710,14,4,f +803,3713,7,11,f +803,3736,7,1,f +803,3737,0,1,f +803,3743,7,3,f +803,3747b,14,8,f +803,3749,7,5,f +803,3795,15,3,f +803,3795,4,1,f +803,3832,4,2,f +803,3894,1,1,f +803,3894,15,2,f +803,3894,7,1,f +803,3894,4,4,f +803,3895,1,5,f +803,3895,15,10,f +803,3895,4,1,f +803,3895,7,1,f +803,4019,7,4,f +803,4070,1,4,f +803,4085b,15,4,f +803,4143,7,2,f +803,4150p00,15,2,f +803,4162,1,1,f +803,4185,7,2,f +803,4265a,7,18,f +803,4273b,7,8,f +803,4286,15,2,f +803,4447,15,8,f +803,4448,15,8,f +803,4459,0,47,f +803,4477,4,1,f +803,4477,0,2,f +803,4519,0,1,f +803,4689c01,14,2,f +803,4692c01,7,1,f +803,4697a,7,1,f +803,4701c01,14,1,f +803,4716,0,1,f +803,5102c08,0,1,f +803,5102c08,7,2,f +803,5102c16,0,2,f +803,5102c20,0,1,f +803,75215,7,1,f +803,tech011,9999,1,f +803,tech028,9999,1,f +804,3003,15,1,f +804,3005,15,5,f +804,3009pb082,15,1,f +804,3036a,15,2,f +804,3062c,1,4,f +804,3065,15,14,f +804,32bc01,4,1,f +804,453bc01,4,1,f +804,604c01,4,1,f +805,612p01,2,2,f +806,3001a,15,21,f +807,2397,1,1,f +807,2420,0,4,f +807,2436,1,4,f +807,2470,6,2,f +807,2488,0,1,f +807,3003,14,3,f +807,3004,1,1,f +807,3004,15,1,f +807,3004,15,1,t +807,3020,0,1,f +807,3022,0,3,f +807,3023,0,3,f +807,3023,15,1,f +807,3024,0,2,f +807,3034,1,2,f +807,3035,1,1,f +807,3460,0,2,f +807,3626apr0001,14,2,f +807,3710,0,1,f +807,3847,8,1,f +807,3876,8,1,f +807,4085c,0,2,f +807,4275b,0,2,f +807,4488,0,2,f +807,4491a,4,1,f +807,4496,6,1,f +807,4506,2,1,f +807,4506,6,1,f +807,4531,0,2,f +807,4865a,0,4,f +807,75998pr0007,15,1,f +807,87692,4,1,f +807,87693,4,1,f +807,87694,4,1,t +807,970c00,2,2,f +807,973p46c01,2,1,f +807,973p49c01,2,1,f +808,2362ap53,0,1,f +808,2362ap54,0,1,f +808,2412b,0,2,f +808,2419,1,1,f +808,2420,0,2,f +808,2431,0,3,f +808,2444,1,2,f +808,2444,0,2,f +808,2446,15,1,f +808,2446,0,1,f +808,2447,36,1,f +808,2447,0,1,f +808,2458,0,2,f +808,2507,36,1,f +808,2515,0,4,f +808,298c02,0,2,f +808,3001,1,1,f +808,3004,1,2,f +808,3020,1,1,f +808,3020,0,3,f +808,3021,0,6,f +808,3022,0,2,f +808,3023,0,2,f +808,3023,1,8,f +808,3024,0,2,f +808,3024,1,2,f +808,3031,0,1,f +808,3032,0,1,f +808,3032,1,1,f +808,3034,0,1,f +808,3037,1,1,f +808,3039,0,2,f +808,3040b,0,4,f +808,3068b,0,2,f +808,3069b,1,2,f +808,3298p53,0,2,f +808,3623,0,2,f +808,3626apr0001,14,2,f +808,3639,0,2,f +808,3639,1,2,f +808,3640,1,2,f +808,3640,0,2,f +808,3660,0,2,f +808,3666,0,6,f +808,3673,7,4,f +808,3679,7,4,f +808,3680,1,4,f +808,3700,0,4,f +808,3707,0,1,f +808,3710,0,3,f +808,3747a,0,2,f +808,3794a,0,1,f +808,3795,0,1,f +808,3838,0,2,f +808,3855,36,1,f +808,3957a,36,4,f +808,3962a,0,1,f +808,3963,0,2,f +808,4033,1,1,f +808,4081b,1,2,f +808,4085b,1,2,f +808,4315,0,1,f +808,4590,0,2,f +808,4623,0,2,f +808,4625,1,1,f +808,4732,0,1,f +808,4735,0,1,f +808,4854,1,1,f +808,4857,1,1,f +808,4859,0,1,f +808,4873,0,1,f +808,6141,36,4,f +808,970c00,0,1,f +808,970x026,15,1,f +808,973p52c01,0,1,f +808,973p6bc01,15,1,f +811,2437,34,1,f +811,2513p02,15,1,f +811,3006,0,1,f +811,3010,15,1,f +811,3021,1,2,f +811,30285,15,4,f +811,30390b,7,2,f +811,30391,0,4,f +811,3040b,33,2,f +811,3626bp04,14,1,f +811,3666,15,2,f +811,3788,15,1,f +811,3829c01,1,1,f +811,3962b,8,1,f +811,4083,7,1,f +811,4349,1,1,f +811,4485,0,1,f +811,4854,15,1,f +811,970c00,0,1,f +811,973px9c01,0,1,f +813,2412b,71,1,f +813,3005,71,2,f +813,3022,0,2,f +813,3022,71,2,f +813,3040b,71,2,f +813,3048c,15,1,f +813,33291,10,1,t +813,33291,10,3,f +813,3665,71,2,f +813,3710,15,2,f +813,6141,6,1,f +813,6141,4,1,t +813,6141,57,2,f +813,6141,4,1,f +813,6141,57,1,t +813,6141,6,1,t +814,2341,15,1,f +814,2357,0,1,f +814,2423,2,3,f +814,2431,1,4,f +814,2456,7,1,f +814,2540,0,1,f +814,2546,8,1,f +814,2586pw1,19,1,f +814,3001,7,1,f +814,3002,7,1,f +814,3004,7,1,f +814,3004,2,1,f +814,3004,0,1,f +814,3005,2,1,f +814,3008,7,1,f +814,3009,7,1,f +814,3009,0,1,f +814,3010,0,1,f +814,3010,7,1,f +814,30113,6,1,f +814,30114,0,1,f +814,30115,0,2,f +814,30126p01,15,1,f +814,30127p01,15,1,f +814,30131,6,1,f +814,3023,2,1,f +814,3027,7,1,f +814,3034,7,1,f +814,3062b,4,1,f +814,3062b,6,2,f +814,3069b,7,1,f +814,3298,1,1,f +814,3626bpx57,14,1,f +814,3626bpx61,14,1,f +814,3795,0,1,f +814,3835,0,1,f +814,3937,0,1,f +814,3938,1,1,f +814,3941,6,2,f +814,4286,1,1,f +814,4491b,2,1,f +814,4493cx6,15,1,f +814,4497,0,1,f +814,4498,0,2,f +814,4499,0,2,f +814,4865a,7,6,f +814,6020,6,1,f +814,6064,2,1,f +814,6091,4,1,f +814,6141,0,5,f +814,6141,0,1,t +814,970c00pb026,19,1,f +814,970c02pb02,19,1,f +814,973px103c01,19,1,f +814,973px107c01,6,1,f +815,3039,8,2,f +815,3040b,7,2,f +815,3298,379,2,f +815,3665,8,2,f +815,3700,8,4,f +815,3795,7,1,f +815,40379,379,1,f +815,40385,8,1,f +815,40396,379,1,f +815,4274,7,1,f +815,4274,7,1,t +815,6127,379,1,f +815,6128,379,1,f +815,x158,379,1,f +817,12825,0,4,f +817,15573,15,2,f +817,2412b,320,4,f +817,2412b,0,1,f +817,2431,72,2,f +817,2431,71,2,f +817,2436,0,2,f +817,2444,72,6,f +817,2489,72,1,f +817,2780,0,3,f +817,2817,71,1,f +817,2877,0,1,f +817,3003,0,1,f +817,3004,71,1,f +817,3005,320,2,f +817,3005,71,2,f +817,3010,72,2,f +817,3020,320,2,f +817,3020,0,1,f +817,3020,15,3,f +817,3021,71,4,f +817,3022,0,1,f +817,3023,0,3,f +817,3023,15,2,f +817,30259,71,4,f +817,3031,0,1,f +817,3032,15,1,f +817,3034,15,2,f +817,30375pr01,308,1,f +817,30377,308,1,f +817,30602,40,1,f +817,3069b,27,1,f +817,3069b,15,1,f +817,32064b,72,1,f +817,3245c,15,2,f +817,3622,15,1,f +817,3623,72,1,f +817,3623,15,2,f +817,3626cpr0525,78,1,f +817,3710,320,2,f +817,3794b,320,2,f +817,3794b,72,7,f +817,3795,15,2,f +817,3941,72,5,f +817,3941,0,4,f +817,4032a,72,5,f +817,4081b,0,3,f +817,41769,15,1,f +817,41770,15,1,f +817,42687,308,1,f +817,4287,15,2,f +817,43093,1,4,f +817,44294,71,1,f +817,4460b,15,1,f +817,44728,15,1,f +817,4740,33,3,f +817,4740,72,2,f +817,50304,15,1,f +817,50305,15,1,f +817,54200,71,1,t +817,54200,15,4,f +817,54200,71,2,f +817,54200,15,1,t +817,58247,0,2,f +817,59230,308,1,t +817,59230,308,1,f +817,59900,0,3,f +817,6005,71,2,f +817,60470b,15,2,f +817,60478,71,12,f +817,60481,15,1,f +817,61189pr0011,15,1,f +817,6141,0,2,f +817,6141,36,1,t +817,6141,0,1,t +817,6141,36,2,f +817,6231,71,2,f +817,63864,320,3,f +817,63868,72,4,f +817,63965,0,2,f +817,6541,72,2,f +817,6636,71,2,f +817,73983,72,4,f +817,85984,72,4,f +817,87087,0,3,f +817,92947,71,1,f +817,970c00pr0309,15,1,f +817,973pr2008c01,15,1,f +817,98103pr0001,308,1,f +817,98285,71,1,f +817,98286,71,1,f +818,3001a,1,2,f +818,3003,1,7,f +818,3003,14,4,f +818,3005,47,1,f +818,3020,4,1,f +818,3021,1,2,f +818,3021,0,3,f +818,3022,0,1,f +818,3023,0,3,f +818,3024,0,1,f +818,3039,1,4,f +818,3062a,47,2,f +818,3068b,15,2,f +818,3612,1,6,f +818,3613,1,6,f +818,3614a,14,6,f +818,685p01,14,2,f +818,685px4,14,1,f +818,792c03,1,3,f +818,x196,0,2,f +818,x407,1,1,f +820,2357,15,2,f +820,2362b,0,2,f +820,2412b,0,4,f +820,2412b,14,1,f +820,2420,0,4,f +820,2431,72,1,f +820,2431,0,1,f +820,2431,14,4,f +820,2431pr0017,14,1,f +820,2432,0,2,f +820,2445,15,2,f +820,2454a,15,1,f +820,2456,15,1,f +820,2465,15,8,f +820,2555,0,1,f +820,2654,15,5,f +820,2780,0,23,f +820,2815,0,5,f +820,2825,0,4,f +820,3001,14,3,f +820,3002,15,1,f +820,3002,14,1,f +820,3003,0,1,f +820,3003,72,4,f +820,3003,15,4,f +820,30031,0,1,f +820,3004,15,9,f +820,3006,15,1,f +820,3008,15,8,f +820,3008,70,24,f +820,3009,0,8,f +820,3009,15,4,f +820,3010,15,13,f +820,30144,15,1,f +820,30170,72,1,t +820,30170,72,4,f +820,30171,70,2,f +820,30171,0,2,f +820,30179,0,1,f +820,3020,15,10,f +820,3020,4,1,f +820,3020,0,4,f +820,3021,15,6,f +820,3022,14,1,f +820,3022,71,1,f +820,3022,0,6,f +820,3022,15,1,f +820,3023,15,8,f +820,3023,4,1,f +820,3023,14,1,f +820,3023,47,1,f +820,3024,0,2,f +820,30250,14,1,f +820,3027,15,1,f +820,3028,15,2,f +820,3029,15,6,f +820,3031,15,9,f +820,3032,0,1,f +820,3032,15,6,f +820,3034,72,1,f +820,3034,15,1,f +820,3034,0,10,f +820,3035,15,1,f +820,30359b,0,2,f +820,30367c,25,1,f +820,30367c,4,1,f +820,3037,15,2,f +820,30374,0,8,f +820,3038,15,2,f +820,3039,14,1,f +820,30391,0,2,f +820,3040b,15,18,f +820,30517,0,1,f +820,30552,0,1,f +820,30602,4,2,f +820,3063b,15,4,f +820,3063b,4,4,f +820,3068b,72,2,f +820,3069b,0,5,f +820,3069b,71,2,f +820,3069b,15,4,f +820,32000,15,1,f +820,32001,0,7,f +820,32009,0,2,f +820,32013,4,1,f +820,32015,4,2,f +820,32016,4,1,f +820,32016,71,2,f +820,32018,0,2,f +820,32034,0,3,f +820,32034,4,1,f +820,32039,71,2,f +820,32039,0,12,f +820,32054,0,5,f +820,32054,4,1,f +820,32062,4,28,f +820,32064b,72,5,f +820,32064b,15,12,f +820,32069,0,8,f +820,32072,14,2,f +820,32123b,71,3,f +820,32140,0,18,f +820,32140,71,4,f +820,32192,4,4,f +820,32192,72,2,f +820,32278,0,2,f +820,32278,4,1,f +820,32449,0,2,f +820,32523,0,2,f +820,32524,4,1,f +820,32524,15,1,f +820,32525,4,4,f +820,32555,0,4,f +820,3456,72,1,f +820,3460,15,9,f +820,3622,15,5,f +820,3626bpr0043,14,6,f +820,3626bpr0245,14,1,f +820,3626bpr0251,14,1,f +820,3626bpr0252,14,1,f +820,3626bpr0314,14,1,f +820,3626bpr0386,14,1,f +820,3626bpr0499,14,1,f +820,3648b,72,4,f +820,3666,15,4,f +820,3666,0,1,f +820,3673,71,9,f +820,3700,14,1,f +820,3701,0,4,f +820,3702,0,3,f +820,3703,0,2,f +820,3705,0,2,f +820,3706,0,10,f +820,3707,0,8,f +820,3708,0,3,f +820,3710,15,3,f +820,3710,72,2,f +820,3713,71,5,f +820,3737,0,5,f +820,3749,19,9,f +820,3794a,0,1,f +820,3795,15,1,f +820,3832,71,3,f +820,3832,15,3,f +820,3832,72,2,f +820,3832,0,4,f +820,3832,14,4,f +820,3901,70,1,f +820,3901,71,1,f +820,3941,15,2,f +820,3961,25,3,f +820,40233,0,1,f +820,4032a,14,6,f +820,40902,0,1,f +820,41334,0,1,f +820,4150,4,1,f +820,41677,4,2,f +820,41677,0,4,f +820,4175,0,2,f +820,41767,15,3,f +820,41768,15,3,f +820,4185,71,2,f +820,41854,72,1,f +820,42023,15,4,f +820,4282,0,2,f +820,4282,71,3,f +820,4282,15,8,f +820,43093,1,1,f +820,43722,14,2,f +820,43722,0,6,f +820,43723,14,2,f +820,43723,0,6,f +820,43857,0,8,f +820,44294,71,3,f +820,44300,71,2,f +820,44302a,0,2,f +820,4445,15,7,f +820,4477,15,6,f +820,44809,0,1,f +820,4515,0,4,f +820,4516302,9999,1,f +820,4519,71,11,f +820,4530,0,1,f +820,4719,4,1,f +820,51930,14,1,f +820,51930,72,4,f +820,52037,72,1,f +820,54200,72,2,f +820,54383,0,6,f +820,54383,14,2,f +820,54384,14,2,f +820,54384,0,6,f +820,56902,71,2,f +820,59349,15,2,f +820,59363,0,1,f +820,59363,70,1,f +820,59443,14,2,f +820,59443,0,18,f +820,60797c01,72,1,f +820,6093,70,1,f +820,6111,15,4,f +820,6112,15,3,f +820,61409,14,2,f +820,6141,72,2,f +820,6141,0,4,f +820,6232,14,1,f +820,62462,4,5,f +820,6541,0,8,f +820,6541,15,14,f +820,6558,1,2,f +820,6587,72,4,f +820,6628,0,4,f +820,6632,4,4,f +820,6636,15,2,f +820,75c25,0,2,f +820,78c12,4,1,f +820,85543,15,4,f +820,92851,47,2,f +820,970c00,379,2,f +820,970c00,1,2,f +820,970c00,4,2,f +820,970c00,15,4,f +820,970c00,0,2,f +820,973c01,1,2,f +820,973c01,15,4,f +820,973c42,0,2,f +820,973c50,379,2,f +820,973pr1264c01,4,2,f +820,polarc01pb02,15,1,f +820,x39,4,1,f +823,3020,72,1,f +823,3039,4,2,f +823,3062b,0,1,f +823,3062b,0,1,t +823,3068b,0,1,f +823,3660,15,2,f +823,6182,15,2,f +826,273,0,40,f +826,3001a,1,4,f +826,3001a,4,12,f +826,3002a,4,2,f +826,3003,4,16,f +826,3003,0,1,f +826,3003,47,5,f +826,3004,4,8,f +826,3004,14,4,f +826,3005,4,2,f +826,3006,4,2,f +826,3007,4,2,f +826,3009,4,2,f +826,3010,4,2,f +826,3020,1,14,f +826,3020,4,4,f +826,3021,4,2,f +826,3022,4,2,f +826,3023,4,4,f +826,3028,1,1,f +826,3034,14,8,f +826,3062a,4,2,f +826,3149c01,4,2,f +826,3404ac01,4,1,f +826,3705,79,5,f +826,3706,79,2,f +826,3707,79,2,f +826,3708,79,1,f +826,3709a,7,8,f +826,569,4,4,f +826,570,1,2,f +826,572,14,1,f +826,700ed,1,1,f +826,pinpw2,80,4,f +826,rb00164,0,1,f +826,x148,4,8,f +827,3626bpr0831,14,1,f +827,88646,0,1,f +827,96204,4,1,f +827,970c00pr0245,4,1,f +827,973pb0929c01,14,1,f +829,6575,72,25,f +831,15068,72,2,f +831,15071,0,1,f +831,15391,0,4,f +831,15392,72,1,t +831,15392,72,5,f +831,15403,0,1,f +831,23851,28,3,f +831,23947pr0001,28,3,f +831,2412b,72,3,f +831,2420,72,2,f +831,2654,47,5,f +831,3020,72,1,f +831,3022,14,2,f +831,3023,0,7,f +831,3024,71,2,f +831,3024,71,1,t +831,3030,71,1,f +831,3034,71,1,f +831,30552,0,1,f +831,30553,72,1,f +831,3062b,0,1,f +831,3070b,72,1,t +831,3070b,72,2,f +831,32062,4,1,f +831,32064a,72,5,f +831,3460,71,2,f +831,3626cpr0937,78,1,f +831,3626cpr1363,78,1,f +831,3626cpr1709,78,1,f +831,3626cpr1815,78,1,f +831,3957a,0,1,f +831,4079,0,1,f +831,43722,72,1,f +831,43723,72,1,f +831,45677,72,1,f +831,4599b,0,1,t +831,4599b,0,4,f +831,4740,182,2,f +831,4740,71,2,f +831,50950,72,2,f +831,59900,41,2,f +831,59900,41,1,t +831,6141,41,10,f +831,6141,179,2,f +831,6141,179,1,t +831,6141,41,1,t +831,6553,0,1,f +831,6587,28,2,f +831,85984,71,1,f +831,88072,0,1,f +831,92081,70,1,f +831,92947,71,2,f +831,970c00,72,3,f +831,970c00,308,1,f +831,973pr3168c01,28,1,f +831,973pr3289c01,19,2,f +831,973pr3294c01,28,1,f +831,98100,71,2,f +831,99780,71,2,f +831,99780,14,1,f +831,99781,0,2,f +832,11289,41,1,f +832,11303,1,2,f +832,11458,72,2,f +832,11476,71,1,f +832,14045,0,1,t +832,14045,0,1,f +832,14137,0,2,f +832,14518,72,3,f +832,2340,15,4,f +832,2412b,1,10,f +832,2412b,71,9,f +832,2421,0,1,f +832,2431,15,1,f +832,2446,15,1,f +832,2447,40,1,t +832,2447,40,1,f +832,2449,15,4,f +832,2450,15,2,f +832,2460,72,1,f +832,2460,15,1,f +832,2479,0,1,f +832,2516,14,2,f +832,2540,25,1,f +832,2569,14,2,f +832,2584,0,1,f +832,2585,71,1,f +832,2654,0,4,f +832,2780,0,6,f +832,298c02,15,1,t +832,298c02,14,2,t +832,298c02,14,5,f +832,298c02,15,1,f +832,3001,25,2,f +832,3001,72,5,f +832,3003,0,10,f +832,3005,15,2,f +832,30151a,47,1,f +832,30162,72,3,f +832,30192,72,1,f +832,3020,25,2,f +832,3021,1,2,f +832,3022,72,2,f +832,30222,42,1,f +832,3023,25,3,f +832,3023,15,4,f +832,3028,72,1,f +832,3029,72,1,f +832,3031,15,1,f +832,3033,25,1,f +832,3034,1,2,f +832,3034,15,1,f +832,30340,14,2,f +832,30361c,15,2,f +832,30363,72,3,f +832,30367c,25,12,f +832,30383,72,2,f +832,3039,25,6,f +832,3039pr0005,15,1,f +832,3039pr0013,15,1,f +832,3040b,15,4,f +832,3040b,72,5,f +832,30414,15,1,f +832,30554b,0,2,f +832,3068b,14,1,f +832,3069b,46,1,f +832,3176,0,2,f +832,32529,0,1,f +832,33121,191,1,f +832,3623,72,2,f +832,3624,15,1,f +832,3626cpr0386,14,1,f +832,3626cpr0389,14,1,f +832,3626cpr0646,14,1,f +832,3626cpr0889,14,1,f +832,3626cpr0891,14,1,f +832,3626cpr0893,14,1,f +832,3666,14,1,f +832,3673,71,1,f +832,3678b,15,2,f +832,3684,0,2,f +832,3700,72,1,f +832,3701,15,4,f +832,3705,0,1,f +832,3707,0,2,f +832,3710,15,1,f +832,3710,25,2,f +832,3710,1,4,f +832,3749,19,2,f +832,3794b,72,4,f +832,3829c01,14,1,f +832,3829c01,71,1,f +832,3839b,0,1,f +832,3899,4,1,f +832,3941,25,12,f +832,3941,46,3,f +832,3957b,0,1,f +832,3962b,0,1,f +832,4032a,0,1,f +832,4079,1,2,f +832,4079,0,2,f +832,4150,15,4,f +832,41529,71,2,f +832,41532,0,2,f +832,4175,72,2,f +832,41770,15,1,f +832,42610,71,2,f +832,4286,15,4,f +832,4289,14,1,f +832,43710,25,1,f +832,43711,25,1,f +832,43722,1,1,f +832,43723,1,1,f +832,43898,15,1,f +832,44661,15,1,f +832,44675,0,1,f +832,44728,25,3,f +832,4477,1,1,f +832,4488,71,1,f +832,4510,72,3,f +832,4519,71,4,f +832,4623,15,4,f +832,4623,14,2,f +832,4733,71,1,f +832,47720,0,1,f +832,47755,71,1,f +832,47847,72,2,f +832,48336,15,5,f +832,48496,0,2,f +832,4865a,47,2,f +832,4865a,15,8,f +832,4865a,41,8,f +832,4865b,14,2,f +832,50946,0,1,f +832,50950,25,2,f +832,54200,36,1,t +832,54200,34,1,f +832,54200,36,1,f +832,54200,34,1,t +832,56823c50,0,1,f +832,58176,36,1,f +832,59900,14,2,f +832,60014stk01,9999,1,t +832,6003,72,2,f +832,6041,0,3,f +832,60470a,71,2,f +832,60474,71,1,f +832,60479,15,1,f +832,60481,15,2,f +832,6112,15,2,f +832,6140,71,4,f +832,61409,72,2,f +832,61409,1,4,f +832,6141,36,2,f +832,6141,34,2,f +832,6141,46,6,f +832,6141,47,2,f +832,6141,47,1,t +832,6141,15,4,f +832,6141,15,1,t +832,6179,71,1,f +832,62113,72,1,f +832,62462,14,2,f +832,62462,25,2,f +832,62576,15,1,f +832,6259,15,4,f +832,62791c01,15,1,f +832,62812,10,1,f +832,63864,14,1,f +832,63864,71,2,f +832,63868,0,6,f +832,63965,15,1,f +832,64451,72,2,f +832,6558,1,2,f +832,6636,25,8,f +832,6636,1,3,f +832,72454,15,1,f +832,72475,41,1,f +832,85984,15,3,f +832,86035,4,1,f +832,87081,4,2,f +832,87081,15,1,f +832,87552,15,4,f +832,87580,15,2,f +832,87580,1,8,f +832,87587,72,3,f +832,88283,308,1,f +832,88930,15,1,f +832,89648,15,3,f +832,89649,41,3,f +832,92280,15,2,f +832,92338,72,4,f +832,92438,1,1,f +832,92586pr0001,84,1,f +832,93273,72,1,f +832,93606,0,2,f +832,96874,25,1,t +832,970c00,1,4,f +832,970c00,272,1,f +832,970x199,25,1,f +832,973pr1585c01,25,1,f +832,973pr1720c01,15,1,f +832,973pr2334c01,71,3,f +832,973pr2351c01,25,1,f +832,97895,14,5,f +832,98100,15,2,f +832,98302,0,2,f +832,98313,72,2,f +832,99780,0,1,f +833,2412b,71,3,f +833,2412b,4,14,f +833,2431,0,1,f +833,2431,15,1,f +833,2436,71,1,f +833,2508,0,1,f +833,2540,0,1,f +833,2555,0,4,f +833,2571,15,4,f +833,3004,70,1,f +833,3004,0,2,f +833,3008,4,2,f +833,3024,36,10,f +833,3024,182,2,f +833,30283,72,1,f +833,3031,71,1,f +833,3034,0,4,f +833,3035,15,1,f +833,30357,0,4,f +833,30374,71,2,f +833,30414,14,1,f +833,3063b,4,2,f +833,3069b,70,1,f +833,3069b,15,2,f +833,3626bpr0270,14,1,f +833,3626cpr0892,14,1,f +833,3665,0,6,f +833,3665,4,4,f +833,3666,0,4,f +833,3710,72,4,f +833,3794b,15,2,f +833,3795,0,3,f +833,3823,47,1,f +833,3829c01,4,1,f +833,3832,71,2,f +833,3833,0,1,f +833,4079,4,1,f +833,4081b,4,2,f +833,4176,47,1,f +833,44728,0,2,f +833,4477,4,4,f +833,4488,0,8,f +833,4491b,72,1,f +833,47457,71,1,f +833,4864b,47,4,f +833,50745,0,4,f +833,52031,0,2,f +833,52501,72,2,f +833,54200,182,2,f +833,54200,0,1,t +833,54200,46,2,f +833,54200,0,4,f +833,54200,182,1,t +833,54200,46,1,t +833,6014b,71,8,f +833,6015,0,8,f +833,6019,0,1,f +833,60470a,71,2,f +833,60478,71,2,f +833,60481,0,2,f +833,6059,15,2,f +833,6079,15,1,f +833,6081,72,1,f +833,6141,47,2,t +833,6141,47,3,f +833,6180,0,1,f +833,62810,484,1,f +833,63082,71,1,f +833,75998pr0005,70,1,f +833,7635stk01,9999,1,f +833,88930,0,1,f +833,970c00,19,1,f +833,970c00,15,1,f +833,973pr1163c01,272,1,f +833,973pr1184c01,0,1,f +835,3626bpb0146,6,1,f +835,3626bpb0147,6,1,f +835,3626bpb0148,92,1,f +835,45522,19,3,f +835,973bpb146c01,2,1,f +835,973bpb148c01,272,1,f +835,973bpb224c01,1,1,f +835,bbcard16,9999,1,f +835,bbcard17,9999,1,f +835,bbcard18gl,9999,1,f +835,x494cx1,272,1,f +835,x494cx1,1,1,f +835,x494cx1,2,1,f +838,2357,1,4,f +838,2357,14,2,f +838,2412b,7,9,f +838,2412b,0,4,f +838,2420,14,2,f +838,2431,15,4,f +838,2431,14,6,f +838,2456,7,1,f +838,2456,1,4,f +838,2465,1,4,f +838,2540,7,3,f +838,2555,7,4,f +838,2877,7,4,f +838,298c02,14,2,f +838,298c02,14,1,t +838,3001,7,1,f +838,3001,8,2,f +838,3002,8,4,f +838,3002,14,2,f +838,3003,14,4,f +838,3004,0,4,f +838,3004,15,2,f +838,3005,15,2,f +838,3007,1,1,f +838,3008,1,6,f +838,3009,1,8,f +838,3010,15,2,f +838,3010,1,10,f +838,30165,8,4,f +838,3020,1,2,f +838,3021,1,2,f +838,3021,14,1,f +838,3021,7,2,f +838,3023,1,3,f +838,3023,7,2,f +838,3023,14,2,f +838,3024,1,6,f +838,3028,8,1,f +838,3029,1,2,f +838,3030,1,6,f +838,3032,1,2,f +838,3034,7,3,f +838,3035,1,1,f +838,30359b,8,2,f +838,30363,15,1,f +838,30365,8,2,f +838,3040b,1,4,f +838,3040b,14,2,f +838,30414,7,3,f +838,30602,1,4,f +838,3062b,7,4,f +838,3068b,8,1,f +838,3068b,1,2,f +838,3068b,15,1,f +838,3069b,7,11,f +838,3069b,14,4,f +838,3069b,1,4,f +838,3069b,15,4,f +838,3176,1,2,f +838,32000,7,16,f +838,32013,0,2,f +838,32039,0,2,f +838,32062,0,5,f +838,32064b,8,2,f +838,32073,7,1,f +838,32123b,7,1,t +838,32123b,7,2,f +838,3245b,14,4,f +838,32530,8,2,f +838,3297,1,6,f +838,3297,15,2,f +838,3298,1,2,f +838,3460,7,4,f +838,3460,1,14,f +838,3622,1,10,f +838,3623,14,4,f +838,3623,1,4,f +838,3623,7,2,f +838,3647,7,4,f +838,3660,8,34,f +838,3665,1,4,f +838,3665,14,2,f +838,3665,15,2,f +838,3665,8,6,f +838,3666,1,2,f +838,3673,7,2,f +838,3679,7,2,f +838,3680,1,2,f +838,3700,14,1,f +838,3705,0,2,f +838,3708,0,2,f +838,3710,14,4,f +838,3710,8,2,f +838,3710,1,2,f +838,3713,7,1,f +838,3713,7,1,t +838,3747b,14,1,f +838,3749,19,1,f +838,3794a,7,2,f +838,3794a,1,4,f +838,3794a,14,6,f +838,3795,14,1,f +838,3894,1,3,f +838,3933,1,2,f +838,3934,1,2,f +838,3941,4,2,f +838,3958,1,6,f +838,40001,8,1,f +838,4081b,14,2,f +838,4150,4,2,f +838,4162,14,2,f +838,4162,1,2,f +838,41751,40,1,f +838,41764,8,1,f +838,41765,8,1,f +838,41767,15,1,f +838,41768,15,1,f +838,41862,7,4,f +838,42022,40,2,f +838,42022,15,6,f +838,42022,14,4,f +838,42022,1,2,f +838,42023,15,2,f +838,42023,1,2,f +838,42023,14,2,f +838,42060,1,2,f +838,42060,8,1,f +838,42061,8,1,f +838,42061,1,2,f +838,4274,15,1,t +838,4274,15,36,f +838,4286,15,2,f +838,4287,15,2,f +838,4287,8,2,f +838,4287,1,8,f +838,4287,14,2,f +838,43337,14,2,f +838,43722,1,1,f +838,43723,1,1,f +838,44126,8,2,f +838,44300,14,2,f +838,44301a,7,1,f +838,44302a,14,2,f +838,44302a,7,1,f +838,44568,1,4,f +838,44570,1,4,f +838,4519,7,2,f +838,4589,14,2,f +838,4864b,7,1,f +838,6019,0,1,f +838,6041,135,2,f +838,6111,1,2,f +838,6112,1,2,f +838,6141,4,1,t +838,6141,4,8,f +838,6141,15,1,t +838,6141,14,1,t +838,6141,14,2,f +838,6141,15,2,f +838,6179,0,1,f +838,6180,1,4,f +838,6231,14,2,f +838,6538b,7,2,f +838,6541,4,2,f +838,6592,7,1,f +838,6636,15,2,f +838,6636,1,2,f +838,6636,14,2,f +838,73590c02a,7,4,f +838,75535,1,2,f +838,76385,8,2,f +838,9244,7,4,f +839,2456,4,1,f +839,3001,1,2,f +839,3001,2,10,f +839,3001,4,2,f +839,3001,15,3,f +839,3002,1,2,f +839,3002,0,2,f +839,3002,15,2,f +839,3002,4,2,f +839,3003,15,2,f +839,3003,0,2,f +839,3003,2,10,f +839,3003,1,2,f +839,3003,4,4,f +839,3004,0,2,f +839,3004,1,3,f +839,3004,15,5,f +839,3004,4,3,f +839,3004,14,7,f +839,3005,4,2,f +839,3005,1,2,f +839,3005,15,2,f +839,3009,1,2,f +839,3010,4,2,f +839,3010,1,4,f +840,13808pr0001,297,1,f +840,3626cpr1237,14,1,f +840,61506,0,1,f +840,88646,0,1,f +840,970c00,0,1,f +840,973pr2409c01,0,1,f +841,2218c01,1,1,f +841,2222,14,1,f +841,4555pb199,9999,1,f +841,4662,1,1,f +842,271pb01,89,1,f +842,271pb02,89,1,f +842,271pb03,89,1,f +842,271pb04,89,1,f +842,271pb05,89,1,f +842,271pb06,89,1,f +844,3626bpr0314,14,1,f +844,3901,0,1,f +844,4449,71,1,f +844,970c00,15,1,f +844,973pr1241c01,15,1,f +845,10247,72,1,f +845,10928,72,1,f +845,11090,72,1,f +845,11153,27,2,f +845,11293,27,1,f +845,11295,72,1,f +845,11297,41,1,f +845,11477,72,2,f +845,13731,72,2,f +845,15068,72,4,f +845,15397,0,1,f +845,15535,72,2,f +845,15790,0,1,f +845,18671,72,1,f +845,18738,71,1,f +845,19220,0,1,f +845,23447,182,4,f +845,2412b,0,3,f +845,2412b,72,1,f +845,2415,71,2,f +845,2420,4,1,f +845,2432,14,1,f +845,2432,72,2,f +845,2445,0,1,f +845,2446,15,1,f +845,2447,40,2,f +845,24538,9999,1,f +845,2479,0,1,f +845,2584,0,1,f +845,2585,71,1,f +845,2653,0,1,f +845,2654,15,2,f +845,2780,0,1,f +845,298c02,1,1,f +845,298c02,4,1,f +845,3004,27,2,f +845,3004,71,3,f +845,3005,72,2,f +845,3009,71,2,f +845,30150,70,1,f +845,30157,72,3,f +845,3020,0,3,f +845,3020,14,2,f +845,3020,15,1,f +845,3021,72,2,f +845,3022,1,3,f +845,3023,72,4,f +845,3023,0,4,f +845,3023,27,1,f +845,3023,4,4,f +845,30237b,0,1,f +845,3024,0,3,f +845,3024,27,2,f +845,3024,14,1,f +845,3030,72,2,f +845,3031,0,1,f +845,3032,71,1,f +845,3034,71,1,f +845,3035,0,1,f +845,30374,0,1,f +845,30385,33,2,f +845,30386,14,2,f +845,30387,14,1,f +845,30395,72,1,f +845,3039pr0014,0,1,f +845,30414,71,2,f +845,30553,0,1,f +845,30592,71,1,f +845,3068b,27,2,f +845,3069b,27,2,f +845,3069b,4,2,f +845,3176,72,1,f +845,3176,71,1,f +845,32002,19,4,f +845,32009,14,1,f +845,32062,0,2,f +845,32065,14,2,f +845,32123b,71,1,f +845,32123b,14,2,f +845,32291,0,1,f +845,3464,72,2,f +845,3622,72,2,f +845,3623,0,2,f +845,3626cpr1580,14,1,f +845,3626cpr1638,14,1,f +845,3626cpr1663,14,1,f +845,3673,71,1,f +845,3700,27,2,f +845,3701,71,1,f +845,3710,27,8,f +845,3710,4,1,f +845,3713,4,3,f +845,3738,0,2,f +845,3749,19,2,f +845,3794b,71,1,f +845,3795,0,3,f +845,3795,27,3,f +845,3795,72,2,f +845,3795,71,2,f +845,3833,15,1,f +845,3838,14,1,f +845,3937,71,2,f +845,3958,72,1,f +845,4079,1,1,f +845,4081b,0,2,f +845,41532,0,1,f +845,41747,72,1,f +845,41748,72,1,f +845,41769,0,2,f +845,41769,72,1,f +845,41770,0,2,f +845,41770,72,2,f +845,4287,72,4,f +845,4360,0,1,f +845,43898,72,1,f +845,43903,0,2,f +845,4477,71,2,f +845,4624,71,2,f +845,4740,0,2,f +845,47457,72,2,f +845,48336,14,4,f +845,4865a,71,1,f +845,54200,72,8,f +845,54383,27,1,f +845,54384,27,1,f +845,55013,72,1,f +845,55981,71,6,f +845,56823c50,0,1,f +845,58176,182,2,f +845,59895,0,4,f +845,59900,0,1,f +845,60032,27,2,f +845,60219,72,2,f +845,60474,14,1,f +845,60479,0,2,f +845,60479,72,2,f +845,60479,14,2,f +845,60601,41,2,f +845,60897,14,1,f +845,6091,27,4,f +845,6134,71,2,f +845,61409,72,2,f +845,6141,36,1,f +845,6141,47,1,f +845,6141,46,2,f +845,6141,34,1,f +845,61483,71,1,f +845,61485,0,1,f +845,6158,72,1,f +845,6179,72,1,f +845,62361,0,2,f +845,6239,27,1,f +845,62743,0,4,f +845,63864,72,2,f +845,63868,71,4,f +845,64450,0,1,f +845,6636,72,2,f +845,74698,0,1,f +845,85543,15,2,f +845,85984,72,6,f +845,85984,14,4,f +845,87552,27,2,f +845,90202,0,1,f +845,91347,72,4,f +845,92280,0,2,f +845,93273,72,1,f +845,93606,72,2,f +845,93606,27,3,f +845,970c00,379,1,f +845,970c00pr1057,326,2,f +845,973pr3388c01,326,2,f +845,973pr3390c01,326,1,f +845,98138,34,2,f +845,98138,36,2,f +845,99207,71,2,f +845,99780,0,2,f +845,99781,0,2,f +846,3651,7,16,f +846,3713,7,32,f +846,4265a,7,24,f +846,6538a,7,12,f +846,9244,7,4,f +847,11090,0,1,f +847,11477,27,2,f +847,14769pr1001,15,1,f +847,15068,0,1,f +847,15209,15,1,f +847,2540,0,1,f +847,3004,2,1,f +847,3020,0,1,f +847,3022,27,1,f +847,3023,2,2,f +847,3040b,2,4,f +847,32028,0,1,f +847,32474pr1001,15,2,f +847,3623,27,2,f +847,3710,27,1,f +847,3747b,0,1,f +847,4590,72,2,f +847,47905,0,1,f +847,4871,0,1,f +847,49668,0,4,f +847,49668,15,2,f +847,50947,27,2,f +847,54200,0,3,f +847,54200,27,2,f +847,54200,0,1,t +847,54200,34,1,t +847,54200,34,3,f +847,54200,27,1,t +847,55236,27,1,f +847,60478,0,2,f +847,61252,0,2,f +847,87087,27,4,f +847,87580,27,1,f +847,92280,0,2,f +847,92946,0,2,f +847,98348,42,2,f +847,99780,0,2,f +847,99781,71,1,f +848,14226c21,0,2,f +848,14226c41,0,3,f +848,2431,4,1,f +848,2445,0,2,f +848,2449,15,2,f +848,2452,0,1,f +848,2458,4,2,f +848,2489,6,1,f +848,2527,2,1,f +848,2530,8,4,f +848,2537b,0,1,f +848,2538,0,1,f +848,2539,15,1,f +848,2555,0,4,f +848,2561,6,1,f +848,2562,6,1,f +848,2564,0,1,f +848,2566,0,1,f +848,2582,0,1,f +848,2653,4,2,f +848,3001,0,4,f +848,3003,15,2,f +848,30033,15,2,f +848,30036,0,1,f +848,3004,0,1,f +848,3004,15,2,f +848,30041,15,1,f +848,30042,1,1,f +848,30043,0,3,f +848,30044,2,1,f +848,30046,0,1,f +848,30047,0,2,f +848,30048,0,3,f +848,3005,4,9,f +848,3005,15,5,f +848,30056,2,2,f +848,3008,1,2,f +848,3020,15,1,f +848,3020,0,1,f +848,3021,4,2,f +848,3021,15,1,f +848,3022,0,3,f +848,3022,14,1,f +848,3022,15,3,f +848,3023,15,5,f +848,3023,14,2,f +848,3023,0,6,f +848,3023,4,6,f +848,3024,15,6,f +848,3034,0,2,f +848,3040b,15,4,f +848,3040b,4,2,f +848,3062b,36,1,f +848,3062b,0,6,f +848,3062b,4,6,f +848,3062b,15,2,f +848,3069b,1,1,f +848,3070b,4,1,f +848,3070b,0,1,f +848,3070b,4,1,t +848,3070b,0,1,t +848,3184,0,4,f +848,3308,15,1,f +848,3403,0,1,f +848,3404,0,1,f +848,3455,15,1,f +848,3460,0,5,f +848,3622,4,1,f +848,3626bp3e,14,1,f +848,3626bpb0020,14,1,f +848,3626bpx81,14,1,f +848,3659,15,1,f +848,3659,4,1,f +848,3660,15,3,f +848,3660,0,2,f +848,3666,0,8,f +848,3666,15,2,f +848,3676,0,2,f +848,3700,4,1,f +848,3700,0,1,f +848,3705,0,1,f +848,3710,1,1,f +848,3710,14,1,f +848,3710,0,2,f +848,3713,7,1,t +848,3713,7,2,f +848,3747a,15,2,f +848,3794a,0,1,f +848,3794a,14,3,f +848,3795,0,1,f +848,3849,15,3,f +848,3933,0,2,f +848,3934,0,2,f +848,3957a,0,1,f +848,3958,15,1,f +848,4032a,6,1,f +848,4081b,0,2,f +848,4085c,0,3,f +848,4213,0,1,f +848,4274,7,1,f +848,4274,7,1,t +848,4275b,0,1,f +848,4276b,0,1,f +848,4286,15,2,f +848,4315,0,2,f +848,4319,0,1,f +848,4477,0,4,f +848,4495b,4,2,f +848,4531,0,2,f +848,4589,0,1,f +848,4589,14,1,f +848,4589,15,1,f +848,4589,4,6,f +848,4623,0,3,f +848,4625,0,2,f +848,4738a,6,1,f +848,4739a,6,1,f +848,4740,0,1,f +848,4790,6,1,f +848,57503,334,2,f +848,57504,334,2,f +848,57505,334,2,f +848,57506,334,2,f +848,6051c02,15,1,f +848,6053c02,15,1,f +848,6054,15,1,f +848,6057,6,2,f +848,6067,0,2,f +848,6091,4,6,f +848,6091,14,4,f +848,6091,15,1,f +848,6141,0,1,t +848,6141,4,1,t +848,6141,0,2,f +848,6141,4,2,f +848,6191,15,2,f +848,6541,0,1,f +848,6564,15,2,f +848,6565,15,2,f +848,70001pb02,0,1,f +848,71155,0,1,f +848,84943,8,1,f +848,87692,15,1,f +848,87693,15,1,t +848,87694,15,1,f +848,970c00,7,2,f +848,970c00,15,1,f +848,973pb0019c01,4,1,f +848,973px135c01,2,1,f +848,973px136c01,4,1,f +848,sailbb02,15,1,f +848,sailbb03,15,1,f +848,x190,383,1,f +848,x376px5,15,1,f +850,11211,15,1,f +850,11211,71,1,f +850,11407pr0001c01,26,1,f +850,11816pr0001,84,1,f +850,11816pr0002,78,1,f +850,13392pr0001,212,1,f +850,14769,29,1,f +850,14769pr0009,15,1,f +850,15068,322,2,f +850,15332,15,3,f +850,15535,27,1,f +850,15573,27,1,f +850,15624,84,1,f +850,15624,322,1,f +850,15627pr0013,15,1,f +850,22667,26,1,f +850,22667,26,1,t +850,2343,47,2,f +850,23969,26,2,f +850,24184,25,2,t +850,24184,25,2,f +850,2431,14,2,f +850,2454a,15,4,f +850,2456,322,1,f +850,28387,14,1,f +850,28925,15,1,f +850,29161,27,2,f +850,29889,226,1,f +850,3001,29,3,f +850,3002,27,1,f +850,3003,27,2,f +850,3003,322,2,f +850,3003,84,1,f +850,3003,15,1,f +850,3004,15,1,f +850,3004,27,1,f +850,3010,26,1,f +850,30137,84,5,f +850,30145pr0001,15,1,f +850,30151b,47,1,f +850,30165,15,1,f +850,3020,26,2,f +850,30222,42,2,f +850,3023,15,1,f +850,3032,70,2,f +850,3034,71,1,f +850,30350b,26,2,f +850,3039pr0020,15,1,f +850,3040b,26,2,f +850,3062b,14,1,f +850,3069bpr0100,2,1,f +850,32064a,14,1,f +850,3298,26,2,f +850,33051,10,1,f +850,33085,14,1,f +850,33291,10,1,t +850,33291,26,3,f +850,33291,10,1,f +850,33291,26,2,t +850,3626cpr1296a,14,1,f +850,3710,70,2,f +850,3795,226,1,f +850,3795,322,1,f +850,3795,29,1,f +850,3829c01,15,1,f +850,3852b,322,1,f +850,3941,15,1,f +850,3957a,15,1,f +850,4094b,45,1,f +850,4175,26,1,f +850,4286,322,2,f +850,4345b,15,1,f +850,4346,47,1,f +850,44728,15,1,f +850,4495b,2,1,f +850,4528,179,1,f +850,4536,15,1,f +850,4599b,15,1,f +850,4599b,15,1,t +850,4599b,71,1,t +850,4599b,71,1,f +850,48336,15,2,f +850,4865b,15,3,f +850,50950,14,2,f +850,59900,26,1,f +850,60603,47,1,f +850,6182,84,4,f +850,62360,41,1,f +850,63864,15,2,f +850,64644,297,1,f +850,85984pr0143,72,1,f +850,87079,70,1,f +850,87079,14,1,f +850,87079pr0097,15,1,f +850,87079pr0116,15,1,f +850,87580,322,1,f +850,88072,15,1,f +850,92255,226,1,f +850,92338,72,1,f +850,92410,27,1,f +850,92456pr0029c01,78,1,f +850,92456pr0101c01,84,1,f +850,92593,26,3,f +850,92818pr0005c01,191,1,f +850,93095,322,2,f +850,93352,308,1,f +850,98549,15,1,f +852,15395,15,1,f +852,3002,15,1,f +852,3003,15,2,f +852,3004,15,1,f +852,3005,70,1,f +852,3005,322,1,f +852,3005pr0006,73,1,f +852,3020,14,1,f +852,3021,322,1,f +852,3023,14,1,f +852,3062b,15,1,f +852,3070bpr0007,71,1,f +852,32028,71,1,f +852,3710,14,1,f +852,4345b,71,1,f +852,4346,47,1,f +852,4599b,71,1,f +852,6141,71,1,f +852,6141,72,1,f +852,6141,29,1,f +852,6231,322,3,f +852,98138,15,1,f +852,98138,297,1,f +852,98138pr0018,84,2,f +854,2496,0,1,f +854,2655,14,1,f +854,3004,14,1,f +854,3020,1,1,f +854,3021,4,2,f +854,3021,1,1,f +854,3022,1,1,f +854,3039,47,1,f +854,3039,14,1,f +856,26073,272,1,f +856,3068bpr0301b,73,1,f +856,3070bpr0169,47,1,f +856,3626cpr2024,14,1,f +856,88646,0,1,f +856,970c00pr1111,19,1,f +856,973pr3531c01,2,1,f +856,98385,28,1,f +859,16542,7,3,f +859,3001,0,2,f +859,3001,14,3,f +859,3001,15,2,f +859,3001,1,2,f +859,3001,4,3,f +859,3004,15,4,f +859,3009,15,2,f +859,3010,4,1,f +859,3010,14,5,f +859,3010,1,3,f +859,3010p08,0,1,f +859,3010p08,14,2,f +859,3010p08,15,1,f +859,3010p08,1,1,f +859,3010p08,4,1,f +859,3010p09,15,1,f +859,3010p09,1,1,f +859,3010p09,4,1,f +859,3010p09,14,2,f +859,3010p09,0,1,f +859,3020,4,1,f +859,3024,36,2,f +859,3024,46,2,f +859,3029,15,1,f +859,3029,0,1,f +859,3030,4,1,f +859,3030,1,1,f +859,3035,0,1,f +859,3035,14,1,f +859,3037,15,2,f +859,3037,4,1,f +859,3037,14,2,f +859,3040b,15,2,f +859,3046a,1,2,f +859,3062b,46,1,f +859,3062b,33,4,f +859,3069bpr0099,15,12,f +859,3135,1,1,f +859,3136,7,2,f +859,3137c01,0,12,f +859,3149c01,1,1,f +859,3149c01,4,1,f +859,3297,14,1,f +859,3297,0,1,f +859,3403,4,1,f +859,3404,4,1,f +859,3464,4,4,f +859,3624,1,1,f +859,3624,0,1,f +859,3624,15,1,f +859,3626apr0001,14,14,f +859,3633,15,1,f +859,3641,0,28,f +859,3665,14,2,f +859,3710,14,1,f +859,3710,15,2,f +859,3710,1,1,f +859,3821,14,3,f +859,3821,1,1,f +859,3821p02,15,1,f +859,3821p09,4,1,f +859,3821p24,15,1,f +859,3822,14,3,f +859,3822,1,1,f +859,3822p02,15,1,f +859,3822p09,4,1,f +859,3822p24,15,1,f +859,3823,47,4,f +859,3829c01,0,1,f +859,3829c01,4,1,f +859,3829c01,14,2,f +859,3829c01,1,1,f +859,3829c01,15,1,f +859,3832,14,2,f +859,3834,15,1,f +859,3842b,4,2,f +859,3853,15,1,f +859,3856,15,2,f +859,3901,0,2,f +859,4207,14,2,f +859,4208,0,1,f +859,4209,4,1,f +859,4215ap66,15,2,f +859,4345ap03,14,2,f +859,4346p03,14,2,f +859,4480c01,14,1,f +859,4480c01,1,1,f +859,4485,15,1,f +859,4485,4,1,f +859,4530,6,2,f +859,4530,4,1,f +859,4530,0,1,f +859,4594,47,3,f +859,4719,4,4,f +859,92851,47,8,f +859,970c00,15,3,f +859,970c00,7,2,f +859,970c00,4,3,f +859,970c00,1,3,f +859,970c00,0,3,f +859,973c01,15,1,f +859,973c02,4,1,f +859,973p0ac02,0,1,f +859,973p0bc01,15,1,f +859,973p13c01,4,1,f +859,973p17c01,0,1,f +859,973p18c01,1,1,f +859,973p21c01,0,1,f +859,973p24c01,15,1,f +859,973p26c01,1,1,f +859,973pb0035c01,4,1,f +859,973pb0091c01,0,1,f +859,973pb0201c01,15,1,f +859,973px62c02,15,1,f +860,11455,0,4,f +860,11458,72,6,f +860,12825,72,1,f +860,14210,15,1,t +860,14210,15,1,f +860,2357,19,2,f +860,2412b,179,4,f +860,2420,72,2,f +860,2431,2,2,f +860,2431,0,2,f +860,2432,19,2,f +860,2444,71,2,f +860,2654,71,1,f +860,2780,0,2,t +860,2780,0,8,f +860,2817,0,1,f +860,30031,0,1,f +860,3004,19,2,f +860,3020,14,4,f +860,3020,4,1,f +860,3020,0,1,f +860,3021,72,1,f +860,3021,4,1,f +860,3023,25,4,f +860,3023,36,1,f +860,3023,46,2,f +860,3024,2,2,f +860,3024,2,1,t +860,3032,72,1,f +860,30350b,0,1,f +860,30602,72,1,f +860,3069b,2,4,f +860,3069b,0,5,f +860,3069bpr0090,72,2,f +860,32013,71,4,f +860,32316,0,2,f +860,3460,0,1,f +860,3623,2,2,f +860,3626bpr0966,4,1,f +860,3626cpr1068,70,1,f +860,3626cpr1069,0,1,f +860,3666,71,1,f +860,3673,71,2,t +860,3673,71,8,f +860,3710,1,2,f +860,3794b,4,1,f +860,3795,0,1,f +860,3795,2,2,f +860,3795,72,4,f +860,3829c01,0,1,f +860,4032a,72,1,f +860,4176,40,1,f +860,4274,1,1,t +860,4274,1,6,f +860,43722,2,1,f +860,43723,2,1,f +860,44728,72,6,f +860,4597,15,1,f +860,4733,0,2,f +860,47456,0,1,f +860,47458,4,1,f +860,48336,2,3,f +860,4865b,40,2,f +860,4871,0,1,f +860,4871,15,4,f +860,48724,0,1,f +860,49668,0,4,f +860,50950,0,4,f +860,52031,2,1,f +860,54200,0,6,f +860,54200,47,2,f +860,54200,47,1,t +860,54200,0,1,t +860,54200,36,2,f +860,54200,36,1,t +860,55236,0,8,f +860,56902,71,8,f +860,6037284,9999,1,t +860,60483,0,4,f +860,61184,71,1,f +860,61254,0,8,f +860,61409,0,4,f +860,6141,36,1,t +860,6141,36,2,f +860,6541,4,4,f +860,6541,15,4,f +860,6587,28,4,f +860,6636,0,3,f +860,76004stk01,9999,1,t +860,85984,19,3,f +860,85984,0,2,f +860,87747,0,6,f +860,87747,0,1,t +860,90202,0,1,f +860,91988,72,1,f +860,92280,71,2,f +860,92593,15,2,f +860,93274,0,2,f +860,95199,72,1,f +860,970c00,1,1,f +860,970c00,0,2,f +860,973pr2047c01,1,1,f +860,973pr2166c01,272,1,f +860,973pr2167c01,0,1,f +860,98138,179,1,t +860,98138,36,1,t +860,98138,36,1,f +860,98138,179,2,f +860,99781,71,2,f +861,2343,82,1,f +861,2453a,15,2,f +861,3004,15,3,f +861,3004,26,3,f +861,3020,2,2,f +861,3031,26,3,f +861,3040b,29,4,f +861,3065,114,3,f +861,3069b,15,1,f +861,33175,4,1,f +861,3659,15,8,f +861,3741,2,2,f +861,3742,5,2,t +861,3742,5,6,f +861,3794a,15,1,f +861,4070,15,1,f +861,54200,4,6,f +861,6112,4,1,f +861,6124,45,2,f +861,6171pr03,484,1,f +861,6185,70,1,f +861,6189,0,1,f +861,6204,0,1,f +861,6255,10,2,f +861,belvfem78,9999,1,f +862,10201,70,1,f +862,11211,71,3,f +862,12825,70,8,f +862,14769,4,1,f +862,3020,70,2,f +862,3021,4,1,f +862,3022,484,1,f +862,3023,70,2,f +862,3040b,308,4,f +862,3069b,308,1,f +862,32474pr1001,15,2,f +862,3700,70,1,f +862,3710,70,2,f +862,3794b,70,2,f +862,40378,0,1,f +862,40379,0,1,f +862,4590,72,2,f +862,51739,70,3,f +862,53451,15,1,t +862,53451,15,8,f +862,54200,308,8,f +862,54200,308,1,t +862,59900,70,1,f +862,60478,4,2,f +862,92280,0,2,f +862,92946,0,2,f +864,3002,0,1,f +864,3003pe2,4,1,f +864,3004,0,2,f +864,3021,0,1,f +864,3022,0,1,f +864,3023,0,2,f +864,3039,0,2,f +864,3839b,15,1,f +865,2456,1,2,f +865,2456,71,2,f +865,2456,4,2,f +865,2456,14,2,f +865,2456,15,2,f +865,3001,14,18,f +865,3001,15,12,f +865,3001,27,6,f +865,3001,71,6,f +865,3001,2,6,f +865,3001,82,8,f +865,3001,4,18,f +865,3001,25,6,f +865,3001,1,18,f +865,3001,0,6,f +865,3001,73,6,f +865,3002,14,8,f +865,3002,0,4,f +865,3002,71,4,f +865,3002,1,8,f +865,3002,4,8,f +865,3002,2,4,f +865,3002,73,4,f +865,3002,25,4,f +865,3002,27,4,f +865,3002,15,6,f +865,3003,73,18,f +865,3003,4,32,f +865,3003,1,32,f +865,3003,14,32,f +865,3003,0,18,f +865,3003,15,28,f +865,3003,71,18,f +865,3003,27,18,f +865,3003,2,18,f +865,3003,25,18,f +865,3004,15,24,f +865,3004,71,16,f +865,3004,25,16,f +865,3004,0,16,f +865,3004,73,16,f +865,3004,2,16,f +865,3004,1,45,f +865,3004,27,16,f +865,3004,14,28,f +865,3004,4,28,f +865,3005,73,12,f +865,3005,15,18,f +865,3005,25,12,f +865,3005,71,12,f +865,3005,1,21,f +865,3005,0,12,f +865,3005,4,20,f +865,3007,4,2,f +865,3007,1,2,f +865,3008,4,2,f +865,3008,14,2,f +865,3008,1,2,f +865,3009,4,4,f +865,3009,1,4,f +865,3009,15,2,f +865,3009,14,2,f +865,3010,4,8,f +865,3010,2,4,f +865,3010,27,4,f +865,3010,71,4,f +865,3010,15,6,f +865,3010,14,8,f +865,3010,73,4,f +865,3010,0,4,f +865,3010,25,2,f +865,3010,1,6,f +865,3020,2,2,f +865,3020,15,4,f +865,3020,14,2,f +865,3020,71,2,f +865,3020,1,2,f +865,3020,4,2,f +865,3020,0,2,f +865,3021,1,4,f +865,3021,15,4,f +865,3021,4,2,f +865,3021,14,2,f +865,3021,25,2,f +865,3021,2,2,f +865,3022,15,6,f +865,3022,2,2,f +865,3022,1,6,f +865,3022,4,4,f +865,3022,0,2,f +865,3022,14,4,f +865,3034,4,2,f +865,3034,15,2,f +865,3034,14,2,f +865,3034,1,2,f +865,3037,4,6,f +865,3039,33,2,f +865,3039,1,4,f +865,3039,4,6,f +865,3039,15,4,f +865,3040b,4,4,f +865,3040b,25,4,f +865,3040b,14,2,f +865,3040b,71,2,f +865,3040b,15,4,f +865,3040b,1,4,f +865,3040b,2,2,f +865,3041,4,2,f +865,3043,4,2,f +865,3298,4,4,f +865,3298,1,4,f +865,3298,15,4,f +865,3622,2,2,f +865,3660,1,2,f +865,3660,4,2,f +865,3660,15,2,f +865,3665,1,4,f +865,3665,25,4,f +865,3665,2,2,f +865,3665,4,4,f +865,3665,14,2,f +865,3665,71,2,f +865,3665,15,4,f +865,3710,4,2,f +865,3710,1,2,f +865,3710,15,2,f +865,3747b,1,2,f +865,3795,14,2,f +865,3795,1,2,f +865,3795,4,2,f +865,3795,15,2,f +865,4286,15,4,f +865,4286,4,4,f +865,4286,1,4,f +865,4287,15,4,f +865,4287,4,4,f +865,4287,1,4,f +866,2412b,72,8,f +866,2431pr0017,14,1,f +866,2432,0,2,f +866,2445,71,1,f +866,2456,72,2,f +866,2476a,71,2,f +866,2780,0,2,t +866,2780,0,17,f +866,30000,1,1,f +866,3004,14,6,f +866,3005,72,2,f +866,3006,0,4,f +866,3008,14,4,f +866,3009,72,3,f +866,3010,0,3,f +866,3010,14,1,f +866,30180,14,4,f +866,3022,14,4,f +866,3035,71,1,f +866,30359b,72,2,f +866,3040b,182,2,f +866,30414,71,1,f +866,30663,0,2,f +866,3069b,36,2,f +866,3069b,182,2,f +866,3069b,46,2,f +866,32039,0,2,f +866,32054,4,4,f +866,32209,0,4,f +866,32523,14,4,f +866,32524,15,2,f +866,32531,0,1,f +866,32532,14,3,f +866,3460,0,2,f +866,3623,14,2,f +866,3626bpb0172,14,1,f +866,3700,72,2,f +866,3701,1,1,f +866,3703,71,4,f +866,3707,0,3,f +866,3710,0,2,f +866,3829c01,1,1,f +866,3832,14,1,f +866,3833,4,1,f +866,3837,72,1,f +866,3841,72,1,f +866,4081b,71,2,f +866,4083,0,1,f +866,4175,72,8,f +866,4176,40,1,f +866,41862,71,3,f +866,41893,0,4,f +866,41896,14,4,f +866,42022,0,2,f +866,42023,14,4,f +866,43337,0,1,f +866,44302a,14,2,f +866,47973,72,2,f +866,48989,4,4,f +866,52031,14,1,f +866,52045,14,1,f +866,6111,0,2,f +866,6141,71,10,f +866,6141,71,1,t +866,6192,14,2,f +866,6232,14,4,f +866,6249,72,1,f +866,6553,71,2,f +866,6583,14,3,f +866,970c00,25,1,f +866,973pr1182c01,25,1,f +867,45462,11,2,f +867,45462,52,2,f +867,45462,41,3,f +867,45463,52,2,f +867,45463,41,4,f +867,45463,118,2,f +867,45469,41,4,f +867,45469,47,2,f +867,45469,45,2,f +867,46286,43,4,f +867,46286,52,1,f +867,46286,41,6,f +867,46296,41,2,f +867,46296,47,2,f +867,clikits015,45,3,f +867,clikits015,52,2,f +867,clikits015,42,3,f +867,clikits016pb01,41,4,f +867,clikits017,383,5,f +867,clikits018,41,1,f +867,clikits040,47,1,f +867,clikits044,47,1,f +867,clikits045,47,1,f +867,clikits061,52,2,f +867,clikits061,61,3,f +867,clikits062,52,1,f +867,clikits062,41,1,f +867,clikits063,383,2,f +867,clikits064,383,1,f +867,clikits110,383,1,f +867,clikits201,41,2,f +869,4688c01,14,1,f +870,2412b,42,1,t +870,2412b,42,1,f +870,2450,7,2,f +870,30120p02,7,1,f +870,30121,0,1,f +870,3020,7,1,f +870,3048c,7,1,f +870,3626bp6y,57,1,f +870,3795,0,1,f +870,3937,0,2,f +870,6134,4,2,f +870,970c07pb01,4,1,f +870,973px123c01,7,1,f +871,3037,4,12,f +871,3041,4,2,f +874,x482,0,1,f +875,30480ps0,383,1,f +875,970c00,383,1,f +875,973pb1126c01,383,1,f +878,12825,71,4,f +878,2540,71,1,f +878,3005,71,1,f +878,30229,72,4,f +878,3062b,72,1,f +878,4733,0,1,f +878,4740,47,1,f +878,61184,71,1,f +878,61252,72,1,f +878,6141,15,1,t +878,6141,15,1,f +878,6141,4,1,t +878,6141,14,1,f +878,6141,14,1,t +878,6141,4,1,f +879,2343,47,1,f +879,2454a,0,2,f +879,2454a,7,4,f +879,2586ph2,0,1,f +879,2921,2,2,f +879,3004,7,2,f +879,3004,8,1,f +879,3009,8,2,f +879,30115,0,2,f +879,30153,34,1,f +879,3020,6,1,f +879,3021,6,1,f +879,3023,0,8,f +879,3023,7,2,f +879,3024,36,1,f +879,30374,6,3,f +879,30608,0,1,f +879,3062b,0,4,f +879,3062b,36,1,f +879,3062b,42,1,f +879,3062b,33,1,f +879,3068bp40,15,1,f +879,3308,8,1,f +879,3456,8,1,f +879,3623,0,2,f +879,3626bph2,14,1,f +879,3626bph4,14,1,f +879,3626bph5,14,1,f +879,3665,7,2,f +879,3666,8,1,f +879,3710,0,3,f +879,3710,7,2,f +879,3754pb02,7,1,f +879,3794a,2,1,f +879,3847,7,1,f +879,3901,0,1,f +879,3901,19,1,f +879,40232,0,1,f +879,4286,2,4,f +879,4529,0,1,f +879,4623,0,1,f +879,4735,0,2,f +879,4740,34,2,f +879,50231px1,0,3,f +879,6019,0,2,f +879,6112,8,1,f +879,6126a,57,2,f +879,6141,0,1,t +879,6141,0,3,f +879,73983,7,2,f +879,970c00,7,3,f +879,973px147c01,7,3,f +881,2357,1,1,f +881,2412b,0,2,f +881,2420,0,2,f +881,2423,2,2,f +881,2431,7,3,f +881,2465,7,1,f +881,2546,8,2,f +881,2555,0,2,f +881,2586pw1,19,1,f +881,2586px3,19,1,f +881,3001,0,1,f +881,3003,7,4,f +881,3003,4,1,f +881,3004,2,2,f +881,3004,0,7,f +881,3004,4,2,f +881,3004,1,1,f +881,3007,0,1,f +881,30114,0,2,f +881,30115,0,2,f +881,30126p01,15,2,f +881,30127p01,15,4,f +881,30129,6,2,f +881,30131,6,1,f +881,30138pb01,15,1,f +881,3023,1,3,f +881,3034,0,1,f +881,3035,0,1,f +881,3039,14,1,f +881,3039,0,1,f +881,3062b,0,2,f +881,3062b,6,2,f +881,3069b,1,1,f +881,3298,1,1,f +881,3622,7,2,f +881,3622,0,2,f +881,3626bpx58,14,1,f +881,3626bpx59,14,1,f +881,3626bpx60,14,1,f +881,3679,7,1,f +881,3680,0,1,f +881,3794a,4,3,f +881,3835,0,2,f +881,3857,19,1,f +881,3941,6,4,f +881,4070,0,2,f +881,4162,7,1,f +881,4162,1,2,f +881,4287,15,2,f +881,4491b,1,1,f +881,4493c01px2,6,1,f +881,4497,0,4,f +881,4498,0,2,f +881,4499,0,2,f +881,4529,0,1,f +881,4865a,7,2,f +881,6020,6,1,f +881,6064,2,2,f +881,6091,14,2,f +881,6091,1,2,f +881,6107,7,4,f +881,6126a,57,2,f +881,6141,57,2,f +881,6141,57,1,t +881,6231,7,4,f +881,6541,7,4,f +881,6558,0,2,f +881,6628,0,1,f +881,970c00pb025,4,1,f +881,970c00pb026,19,1,f +881,970c02pb01,19,1,f +881,973px104c01,4,1,f +881,973px105c01,19,1,f +881,973px106c01,19,1,f +881,x172px1,15,1,f +882,3404bc01,15,5,f +883,11437,2,2,f +883,11477,4,2,f +883,11610,71,2,f +883,15573,27,2,f +883,18986,47,1,f +883,2412b,179,2,f +883,2431,2,2,f +883,24326,71,2,f +883,26064,2,1,f +883,28839,27,1,f +883,30028,0,6,f +883,3021,14,2,f +883,3022,28,3,f +883,3023,1,1,f +883,30238,0,1,f +883,3626cpr2077,2,1,f +883,3626cpr2078,4,1,f +883,3710,27,2,f +883,3829c01,14,1,f +883,3829c01,1,1,f +883,4083,0,1,f +883,41854,4,1,f +883,41879a,1,1,f +883,41879a,2,1,f +883,4624,14,2,f +883,4865b,40,1,f +883,4871,4,1,f +883,48729b,72,2,f +883,50943,179,1,f +883,53451,14,1,f +883,59895,0,2,f +883,60470a,71,1,f +883,60897,4,2,f +883,60897,71,2,f +883,6141,36,2,f +883,6141,46,2,f +883,72454,2,1,f +883,74967,14,6,f +883,85861,71,2,f +883,85984,1,1,f +883,88072,2,2,f +883,973pr3334c01,1,1,f +883,973pr3616c01,2,1,f +883,98138,47,2,f +883,98313,326,2,f +883,99780,71,1,f +883,99781,1,1,f +885,3001a,14,1,f +885,3002a,14,1,f +885,3004,15,8,f +885,3004,4,1,f +885,3004,47,2,f +885,3005,15,4,f +885,3005,47,8,f +885,3008,4,2,f +885,3010,4,2,f +885,3021,0,2,f +885,3021,4,1,f +885,3022,14,1,f +885,3023,4,2,f +885,3023,14,2,f +885,3030,4,1,f +885,3032,4,1,f +885,3032,15,1,f +885,3039,0,2,f +885,3041,1,1,f +885,3062a,4,2,f +885,3062a,14,6,f +885,3062a,0,6,f +885,3063b,15,10,f +885,3063b,47,2,f +885,3063b,0,4,f +885,3063b,4,4,f +885,997c02,4,1,f +885,x146c02,4,2,f +885,x147c02,4,1,f +885,x149a,4,1,f +887,11212,15,3,f +887,3010,15,2,f +887,3021,15,2,f +887,3023,71,1,f +887,3023,15,1,f +887,3024,70,2,f +887,3038,15,1,f +887,3069b,15,1,f +887,32474,0,1,f +887,3622,14,1,f +887,3623,15,3,f +887,3665,15,6,f +887,4081b,15,2,f +887,54200,15,1,f +887,6141,15,1,f +887,85984,15,2,f +887,87087,15,4,f +887,92946,72,4,f +887,98138pr0008,15,2,f +888,3068b,0,100,f +890,2412b,71,1,f +890,3004,71,1,f +890,3020,71,1,f +890,3659,71,1,f +890,3710,71,1,f +890,4589,15,1,f +890,60474,0,1,f +890,60481,71,2,f +890,6141,46,1,t +890,6141,46,1,f +890,64647,57,1,t +890,64647,57,1,f +890,87087,71,2,f +891,2357,0,1,f +891,2419,2,4,f +891,2420,7,4,f +891,2456,0,2,f +891,2817,7,2,f +891,2902,0,1,f +891,2903,15,1,f +891,2994,15,1,f +891,3001,2,1,f +891,3001,0,5,f +891,3003,0,9,f +891,3004,14,2,f +891,3004,2,2,f +891,3004,0,14,f +891,3007,0,2,f +891,3010,0,2,f +891,3020,14,2,f +891,3022,7,4,f +891,3022,2,2,f +891,3022,1,2,f +891,3023,7,20,f +891,3024,7,8,f +891,3033,7,1,f +891,3034,2,2,f +891,3039,2,2,f +891,3040b,14,2,f +891,3040b,0,8,f +891,30552,0,2,f +891,30553,0,2,f +891,3069b,1,4,f +891,32000,8,2,f +891,32007,15,2,f +891,32009,14,4,f +891,32013,1,2,f +891,32014,1,4,f +891,32015,7,2,f +891,32017,7,2,f +891,32034,1,2,f +891,32054,1,4,f +891,32056,7,4,f +891,32060,7,1,f +891,32064b,2,8,f +891,32065,0,4,f +891,32068,7,2,f +891,32069,0,2,f +891,32137,33,4,f +891,32138,14,2,f +891,32184,1,2,f +891,32250,1,2,f +891,32449,1,2,f +891,3460,7,2,f +891,3623,14,2,f +891,3634,0,2,f +891,3665,0,2,f +891,3665,14,2,f +891,3666,7,4,f +891,3679,7,1,f +891,3680,1,1,f +891,3700,0,8,f +891,3701,0,4,f +891,3710,7,6,f +891,3738,7,2,f +891,3747b,0,4,f +891,3832,7,2,f +891,3941,0,6,f +891,3956,7,2,f +891,3960,15,2,f +891,4032a,15,2,f +891,4032a,1,2,f +891,4085c,0,2,f +891,41529,14,2,f +891,41532,0,2,f +891,41752,8,3,f +891,41753,8,1,f +891,44300,0,2,f +891,44302a,0,2,f +891,4477,7,2,f +891,4589,15,1,f +891,4589,14,1,f +891,6019,0,2,f +891,6133,57,1,f +891,6141,15,1,t +891,6141,1,2,f +891,6141,0,1,t +891,6141,1,1,t +891,6141,0,2,f +891,6141,15,2,f +891,6215,2,2,f +891,6536,7,2,f +891,6578,0,1,f +891,6594,0,1,f +891,6595,15,1,f +891,6629,0,4,f +891,6630,7,1,f +891,6632,7,2,f +891,680c01,0,1,f +891,71128,383,1,f +891,71509,0,4,f +891,75c16,14,2,f +891,76019,15,1,f +891,78c08,0,2,f +891,78c08,3,2,f +891,78c11,22,2,f +891,85543,15,3,f +891,85544,1,3,f +891,85545,14,3,f +893,132a,0,4,f +893,3001a,15,30,f +893,3001a,1,3,f +893,3001a,4,24,f +893,3001a,47,4,f +893,3001a,0,8,f +893,3001a,14,5,f +893,3002a,14,2,f +893,3002a,15,8,f +893,3002a,4,8,f +893,3003,15,16,f +893,3003,0,1,f +893,3003,4,12,f +893,3004,15,16,f +893,3004,14,2,f +893,3004,4,8,f +893,3004,1,2,f +893,3004,0,4,f +893,3004,47,2,f +893,3005,14,2,f +893,3007,15,2,f +893,3008,4,2,f +893,3010,4,2,f +893,3010,15,2,f +893,3030,1,2,f +893,3035,1,1,f +893,3081cc01,4,3,f +893,3579,15,1,f +893,3581,15,2,f +893,3582,1,2,f +893,453cc01,4,2,f +893,604c01,4,1,f +893,700ed,2,1,f +893,7039,4,4,f +893,7049b,0,2,f +893,7930,4,1,f +894,120626,9999,1,f +894,167914,47,1,f +894,2780,0,5,f +894,2854,7,1,f +894,3002,4,1,f +894,3003,4,2,f +894,3021,14,2,f +894,3022,14,1,f +894,3023,14,2,f +894,3626bpr0001,14,2,f +894,3647,7,1,t +894,3647,7,3,f +894,3648a,7,1,f +894,3649,7,2,f +894,3650b,7,1,f +894,3673,7,4,f +894,3700,4,4,f +894,3701,4,2,f +894,3702,4,2,f +894,3704,0,1,f +894,3705,0,3,f +894,3706,0,1,f +894,3707,0,1,f +894,3708,0,1,f +894,3709,14,2,f +894,3710,14,1,f +894,3713,7,5,f +894,3736,7,1,f +894,3738,14,2,f +894,3865,2,1,f +894,3895,4,2,f +894,3901,0,1,f +894,3941,4,5,f +894,4032a,4,2,f +894,6093,0,1,f +894,71084,47,1,f +894,9610b01,9999,1,f +894,9610b02,9999,1,f +894,9610bc,9999,1,f +894,970c00,4,1,f +894,970c00,1,1,f +894,973pb0201c01,15,1,f +894,973pb0203c01,15,1,f +894,bin04,14,1,f +895,2495,4,1,f +895,2496,0,1,t +895,2496,0,1,f +895,3941,15,1,f +895,4032b,2,1,f +895,4032b,4,1,f +895,4032b,15,1,f +895,4599a,71,1,t +895,4599a,71,1,f +896,99455,15,1,f +898,15,15,1,f +898,15,14,1,f +898,17,15,1,f +898,17,1,1,f +898,3002a,15,1,f +898,3003,15,1,f +898,3004,0,7,f +898,3004,4,18,f +898,3005,4,12,f +898,3005,15,2,f +898,3005,0,2,f +898,3008,4,14,f +898,3008,0,2,f +898,3009,4,6,f +898,3010,0,1,f +898,3010,4,9,f +898,3022,4,1,f +898,3023,1,6,f +898,3023,0,3,f +898,3024,0,1,f +898,3024,4,2,f +898,3036,15,2,f +898,3037,1,3,f +898,3038,1,2,f +898,3039,1,2,f +898,3040a,15,5,f +898,3040a,0,3,f +898,3040a,1,6,f +898,3041,1,1,f +898,3042,1,3,f +898,3049b,1,2,f +898,3062a,0,6,f +898,3081cc01,15,4,f +898,3087c,15,4,f +898,3185,15,1,f +898,31cc01,15,2,f +898,32bc01,4,2,f +898,3497,2,1,f +898,3579,15,2,f +898,3625,0,1,f +898,3625,4,1,f +898,3626a,14,2,f +898,7930,1,2,f +899,3626bp05,14,1,f +899,3901,6,1,f +899,970c00,15,1,f +899,973c04,25,1,f +901,33125,484,1,f +901,3626cpr0893,14,1,f +901,88286,308,1,f +901,970c00,2,1,f +901,973pr1446c01,4,1,f +903,1650stk01,9999,1,t +903,1650stk02,9999,1,t +903,3002a,7,72,f +903,3002a,15,11,f +903,3002a,0,2,f +903,3004,15,7,f +903,3005,47,12,f +903,3005,15,16,f +903,3009,47,1,f +903,3009,15,1,f +903,3010,15,4,f +903,3020,7,6,f +903,3020,15,2,f +903,3021,15,2,f +903,3021,0,2,f +903,3022,0,1,f +903,3023,0,1,f +903,3023,14,2,f +903,3023,15,7,f +903,3024,15,6,f +903,3032,15,3,f +903,3062a,15,28,f +903,3063b,15,2,f +903,3068b,7,18,f +903,3069a,7,2,f +903,997c02,313,1,f +903,x146c02,313,5,f +903,x147c02,313,1,f +903,x149a,4,3,f +906,2412b,14,1,f +906,2419,0,1,f +906,2540,0,4,f +906,2540,14,2,f +906,3004,0,1,f +906,3021,72,4,f +906,3023,0,6,f +906,3038,0,4,f +906,3039,0,4,f +906,3068b,0,5,f +906,32039,0,1,f +906,32054,4,4,f +906,32062,4,1,f +906,32064b,72,3,f +906,32174,0,1,f +906,32184,0,1,f +906,32534,0,1,f +906,32535,0,1,f +906,3298,0,2,f +906,3460,0,1,f +906,3475b,14,2,f +906,3666,0,5,f +906,3684,0,2,f +906,3700,71,3,f +906,3706,0,1,f +906,3707,0,2,f +906,3710,0,1,f +906,3713,71,1,t +906,3713,71,1,f +906,3795,14,4,f +906,3957a,0,1,f +906,43093,1,6,f +906,44350,0,1,f +906,44351,0,1,f +906,44675,0,2,f +906,44676,0,2,f +906,4519,71,1,f +906,4588,72,1,f +906,4589,36,4,f +906,4589,14,1,f +906,47432,72,2,f +906,47452,72,2,f +906,47455,0,6,f +906,47757,0,3,f +906,47759,0,2,f +906,48170,72,2,f +906,48172,0,1,f +906,48729a,72,2,f +906,50923,72,2,f +906,53451,4,1,t +906,53451,4,3,f +906,53984,135,2,f +906,53988pat03,36,1,f +906,53989,135,5,f +906,57028c01,4,1,f +906,57796,0,1,f +906,57908,72,2,f +906,57910u,72,5,f +906,58776,14,1,f +906,6141,46,1,f +906,6141,46,1,t +906,6153b,14,2,f +906,6536,0,2,f +906,6558,0,2,f +906,6587,72,1,f +907,194cx1,2,1,f +907,2357,15,2,f +907,2362a,15,1,f +907,2413,15,2,f +907,2415,7,1,f +907,2420,4,3,f +907,2431,15,1,f +907,2437,41,1,f +907,2458,15,2,f +907,2926,0,1,f +907,3002,7,1,f +907,3003,15,1,f +907,3004,7,2,f +907,3004,15,7,f +907,3004px1,15,1,f +907,3005,15,4,f +907,3008,15,1,f +907,3020,4,1,f +907,3021,4,1,f +907,3022,2,1,f +907,3022,15,1,f +907,3023,0,1,f +907,3023,7,1,f +907,3023,4,3,f +907,3023,15,3,f +907,3024,4,2,f +907,3029,2,1,f +907,3034,15,1,f +907,3039pc5,7,1,f +907,3062b,14,1,f +907,3068b,4,1,f +907,3068b,15,1,f +907,3070b,34,1,f +907,3070b,36,1,f +907,3139,0,3,f +907,3297,4,2,f +907,3460,4,2,f +907,3460,15,1,f +907,3464,47,1,f +907,3474,15,1,f +907,3587,15,1,f +907,3626bp04,14,2,f +907,3665,15,2,f +907,3710,4,2,f +907,3794a,15,1,f +907,3795,4,2,f +907,3821,15,1,f +907,3822,15,1,f +907,3829c01,4,1,f +907,3839b,0,2,f +907,3855,41,1,f +907,3942c,4,1,f +907,4033,15,1,f +907,4070,15,1,f +907,4085c,4,7,f +907,4162,15,2,f +907,4213,15,1,f +907,4315,15,1,f +907,4449,0,1,f +907,4485,15,1,f +907,4485,1,1,f +907,4589,15,1,f +907,4599a,14,1,f +907,4617b,0,2,f +907,4624,15,2,f +907,476,15,1,f +907,4854,15,1,f +907,4855,15,2,f +907,4858,15,1,f +907,4859,15,2,f +907,4859,4,1,f +907,55298,8,1,f +907,6141,0,2,f +907,6231,15,3,f +907,970c00,1,2,f +907,973c11,0,1,f +907,973p73c01,2,1,f +911,11208,71,6,f +911,11477,72,1,f +911,11477,85,1,f +911,14417,72,1,f +911,15573,71,1,f +911,15712,0,1,f +911,18031,148,1,f +911,18654,0,1,t +911,18654,0,2,f +911,27170,85,1,f +911,28809,71,2,f +911,30031,72,1,f +911,3020,0,2,f +911,3021,85,2,f +911,30526,72,1,f +911,3062b,41,3,f +911,32062,4,1,f +911,32523,72,2,f +911,3626cpr2065,379,1,f +911,3673,71,1,t +911,3673,71,3,f +911,3941,0,1,f +911,41678,0,1,f +911,4600,0,3,f +911,55981,71,2,f +911,6141,14,2,f +911,6141,14,1,t +911,63082,71,1,f +911,6558,1,2,f +911,88289,308,1,f +911,970c00pr1153,379,1,f +911,973pr3602c01,379,1,f +913,13607,321,1,f +913,14923,191,1,f +913,15320,71,1,f +913,15868,27,1,f +913,15899,4,1,f +913,16097,484,1,f +913,16121,10,1,f +913,2302,4,3,f +913,3437,10,1,f +913,3437,191,2,f +913,3437,27,3,f +913,4066,191,2,f +913,45141,179,1,f +913,47509,179,1,f +913,58086,70,1,f +913,61896,321,1,f +913,6510,10,1,f +913,75115bpr0014,70,1,f +913,98233,10,1,f +913,98460,70,4,f +915,18962,19,1,f +915,3626cpr1568,14,1,f +915,60752,28,1,f +915,63965,70,1,f +915,64567,15,1,f +915,970c00pr0767,85,1,f +915,973pr2852c01,14,1,f +918,2456,4,4,f +918,2496,0,2,f +918,3002,1,4,f +918,3002,2,4,f +918,3002,14,6,f +918,3003,15,11,f +918,3003p01,15,1,f +918,3003p02,15,1,f +918,3003p03,15,1,f +918,3003p04,15,1,f +918,3003p05,15,1,f +918,3003p06,15,1,f +918,3003p07,15,1,f +918,3003p08,15,1,f +918,3003p09,15,1,f +918,3003p10,15,1,f +918,3003p11,15,1,f +918,3003p12,15,1,f +918,3003p13,15,1,f +918,3003p14,15,1,f +918,3003p15,15,1,f +918,3003p16,15,1,f +918,3003p17,15,1,f +918,3003p18,15,1,f +918,3003p19,15,1,f +918,3003p20,15,1,f +918,3003p21,15,1,f +918,3003p22,15,1,f +918,3003p23,15,1,f +918,3003p24,15,1,f +918,3003p25,15,1,f +918,3003p26,15,1,f +918,3003p27,15,1,f +918,3003p28,15,1,f +918,3003p29,15,1,f +918,3003p30,15,1,f +918,3003p31,15,1,f +918,3003pb066,14,1,f +918,3003pb067,14,1,f +918,3003pb068,14,1,f +918,3003pb069,14,1,f +918,3003pb070,14,1,f +918,3003pb071,14,1,f +918,3003pb072,14,1,f +918,3006pb002,15,1,f +918,3006pb003,15,1,f +918,3006pb004,15,1,f +918,3006pb005,15,1,f +918,3006pb006,15,1,f +918,3006pr007,15,1,f +918,3007,4,2,f +918,3020,4,30,f +918,3030,2,2,f +918,3626bpr0627,14,1,f +918,3626bpr0628,14,1,f +918,42511,1,1,f +918,62696,226,1,f +918,87991,0,1,f +918,87997pr0001,15,2,f +918,970c00,272,1,f +918,970c00pr0139,15,1,f +918,973pr1547c01,1,1,f +918,973pr1548c01,378,1,f +923,cre011,9999,1,f +924,2397,0,1,f +924,2412b,0,2,f +924,2540,0,1,f +924,3022,4,1,f +924,3062b,7,2,f +924,3641,0,2,f +924,3829c01,14,1,f +924,3937,14,1,f +924,3938,14,1,f +924,4600,0,2,f +924,4624,14,2,f +924,4732,4,1,f +924,6014a,14,2,f +924,6015,0,2,f +926,2412b,15,1,f +926,2513p02,15,1,f +926,2569,8,1,f +926,3004,15,1,f +926,3007,0,1,f +926,30365,8,1,f +926,30389a,15,1,f +926,3070b,36,2,f +926,3626bp04,14,1,f +926,3788,15,1,f +926,3829c01,15,1,f +926,3962b,8,1,f +926,4085c,0,2,f +926,4485,0,1,f +926,4740,15,1,f +926,4859,15,1,f +926,4859,0,1,f +926,6014a,15,4,f +926,6015,0,4,f +926,6141,46,2,f +926,6157,8,2,f +926,6187,0,1,f +926,970c00,0,1,f +926,973px9c01,0,1,f +927,2397,15,1,f +927,2415,7,1,f +927,2432,2,1,f +927,2444,15,1,f +927,2446px5,1,1,f +927,2447,0,1,t +927,2447,0,1,f +927,2569,42,1,f +927,2654,7,1,f +927,2815,0,2,f +927,2817,15,1,f +927,2926,0,1,f +927,298c02,15,1,t +927,298c02,15,1,f +927,3004,0,1,f +927,3021,2,1,f +927,30219,0,1,f +927,3023,2,1,f +927,3023,15,1,f +927,3068bpb0035,15,1,f +927,3139,0,1,f +927,3464,47,1,f +927,3613,15,1,f +927,3626bp7c,14,1,f +927,3626bpx27,14,1,f +927,3641,0,2,f +927,3708,0,1,f +927,3713,7,1,t +927,3713,7,2,f +927,3829c01,1,1,f +927,3839b,15,1,f +927,3849,0,1,f +927,4185,42,2,f +927,4485,2,1,f +927,4624,15,2,f +927,4732,15,2,f +927,6014a,15,2,f +927,6015,0,2,f +927,6019,1,1,f +927,6048a,0,1,f +927,6157,0,1,f +927,6187,1,1,f +927,970x024,0,2,f +927,973p8ac01,0,1,f +927,973p8ac04,0,1,f +927,x772px5,47,1,f +928,2348b,33,2,f +928,2349a,14,1,f +928,2349a,4,1,f +928,2412b,4,2,f +928,2420,7,2,f +928,2420,4,2,f +928,2431,1,1,f +928,2446,0,1,f +928,2447,0,1,f +928,2453a,15,3,f +928,2454a,15,2,f +928,2495c01,4,1,f +928,2540,7,3,f +928,2921,4,1,f +928,2926,7,2,f +928,2926,4,2,f +928,298c02,4,1,f +928,3002,4,1,f +928,3003,1,1,f +928,3004,15,9,f +928,3004,4,1,f +928,3004,14,1,f +928,3004,0,1,f +928,3005,4,2,f +928,3005,14,2,f +928,3005,15,5,f +928,3009,15,1,f +928,3010,15,2,f +928,3020,4,1,f +928,3020,14,2,f +928,3020,0,2,f +928,3020,7,1,f +928,3021,0,1,f +928,3023,7,2,f +928,3023,14,1,f +928,3023,0,4,f +928,3024,14,2,f +928,3024,15,2,f +928,3024,36,5,f +928,3024,46,4,f +928,3027,7,1,f +928,3028,2,1,f +928,3029,2,1,f +928,3040p32,7,1,f +928,3062b,14,1,f +928,3069b,0,1,f +928,3139,0,2,f +928,3460,4,3,f +928,3460,15,2,f +928,3464,47,2,f +928,3622,4,1,f +928,3626bp04,14,1,f +928,3626bp05,14,1,f +928,3626bp7e,14,1,f +928,3641,0,6,f +928,3660,14,2,f +928,3666,14,2,f +928,3710,0,4,f +928,3710,4,3,f +928,3710,14,2,f +928,3794a,0,1,f +928,3794a,14,5,f +928,3795,7,1,f +928,3821,0,1,f +928,3821,14,1,f +928,3822,14,1,f +928,3822,0,1,f +928,3829c01,4,2,f +928,3832,2,1,f +928,3836,6,1,f +928,3837,0,1,f +928,3901,0,2,f +928,3937,7,2,f +928,3937,0,2,f +928,3938,7,2,f +928,3938,0,2,f +928,4006,0,1,f +928,4081b,0,2,f +928,4081b,14,2,f +928,4083,4,2,f +928,4085c,7,10,f +928,4212b,0,1,f +928,4315,4,1,f +928,4315,14,1,f +928,4466,383,1,f +928,4467,383,1,f +928,4480c01,0,1,f +928,4485,15,1,f +928,4515,4,1,f +928,4522,0,1,f +928,4533,41,1,f +928,4589,46,3,f +928,4599a,14,1,f +928,4624,15,4,f +928,4624,14,2,f +928,4629c01,1,1,f +928,4732,14,1,f +928,4735,0,1,f +928,4865a,14,2,f +928,4865a,41,5,f +928,4865a,0,3,f +928,6014a,15,4,f +928,6014a,14,2,f +928,6015,0,6,f +928,6019,1,1,f +928,6081,14,1,f +928,6081,0,1,f +928,6091,4,2,f +928,6091,0,2,f +928,6112,15,3,f +928,6141,4,7,f +928,6141,14,2,f +928,6141,4,1,t +928,6141,47,2,f +928,6141,7,1,f +928,6141,46,2,f +928,6141,7,1,t +928,6157,0,2,f +928,92410,15,1,f +928,970c00,0,1,f +928,970c00,7,1,f +928,970c00,15,1,f +928,973c11,0,1,f +928,973p28c01,0,1,f +928,973p70c01,6,1,f +929,2412b,0,2,f +929,2412b,7,3,f +929,2413,15,2,f +929,2436,7,2,f +929,2444,4,2,f +929,2540,15,1,f +929,2877,15,2,f +929,2877,7,1,f +929,2921,0,2,f +929,298c02,7,3,f +929,298c02,7,1,t +929,3002,15,2,f +929,3003,15,1,f +929,3004,8,1,f +929,3020,8,1,f +929,3021,7,2,f +929,3021,15,1,f +929,3022,7,2,f +929,3023,320,2,f +929,3023,40,2,f +929,3023,8,3,f +929,3032,7,1,f +929,30363,15,3,f +929,30367b,7,4,f +929,3039,15,1,f +929,3040b,4,2,f +929,30526,7,1,f +929,3062b,15,2,f +929,3062b,320,4,f +929,3062b,7,2,f +929,3069b,15,1,f +929,3070b,40,1,t +929,3070b,40,2,f +929,32000,7,2,f +929,32015,8,1,f +929,3660,15,1,f +929,3665,7,2,f +929,3678a,15,4,f +929,3700,15,1,f +929,3710,320,1,f +929,3795,7,1,f +929,3832,15,2,f +929,3933,15,1,f +929,3934,15,1,f +929,4070,27,2,f +929,4081b,15,2,f +929,41769,320,1,f +929,41770,320,1,f +929,4216,27,1,f +929,4274,7,1,f +929,4274,7,1,t +929,43093,1,2,f +929,43093,1,1,t +929,4589,320,2,f +929,4599a,15,1,f +929,6019,7,3,f +929,6141,7,1,t +929,6141,0,1,t +929,6141,15,2,f +929,6141,15,1,t +929,6141,0,2,f +929,6141,7,4,f +929,6232,7,1,f +930,30374,35,1,f +930,64567,80,1,f +931,2357,19,8,f +931,2412b,0,4,f +931,2431,0,4,f +931,2877,1,4,f +931,2878c01,0,4,f +931,2920,0,2,f +931,3004,19,14,f +931,3004,0,2,f +931,3004,1,2,f +931,3005,19,8,f +931,3009,19,4,f +931,3009,1,6,f +931,3010,1,2,f +931,3020,0,3,f +931,3023,0,6,f +931,30237a,19,2,f +931,3031,0,2,f +931,3034,8,2,f +931,3039,19,30,f +931,3040b,19,4,f +931,3062b,8,11,f +931,32000,19,8,f +931,32039,0,4,f +931,32054,0,4,f +931,32062,0,4,f +931,32449,0,4,f +931,3298,1,2,f +931,3298,0,8,f +931,3300,1,5,f +931,3622,1,4,f +931,3660,19,14,f +931,3666,0,4,f +931,3706,0,4,f +931,3795,0,2,f +931,3836,6,1,f +931,3837,8,1,f +931,4022,0,2,f +931,4025,0,2,f +931,4162,0,4,f +931,4175,0,6,f +931,4274,7,1,t +931,4274,7,4,f +931,6553,0,12,f +931,6583,0,2,f +931,6584,0,1,f +931,73092,0,2,f +932,122c01,0,3,f +932,3004,1,1,f +932,3020,1,3,f +932,3021,1,1,f +932,3023,1,7,f +932,3023,0,1,f +932,3024,46,2,f +932,3024,7,1,f +932,3062a,7,1,f +932,3070b,7,1,f +932,3184,1,1,f +932,3471,2,1,f +932,3626apr0001,14,1,f +932,3641,0,4,f +932,3710,1,5,f +932,3730,1,1,f +932,3788,1,1,f +932,3794a,1,1,f +932,3795,0,1,f +932,3829c01,1,1,f +932,3833,4,1,f +932,3837,8,1,f +932,3840,14,1,f +932,3841,8,1,f +932,4032a,0,1,f +932,4079,14,1,f +932,4081a,0,2,f +932,4083,4,1,f +932,4084,0,2,f +932,4085a,0,2,f +932,649pb09,15,1,f +932,6647stk01,9999,1,t +932,970c00,0,1,f +932,973c02,4,1,f +933,3069bpr0099,15,1,f +933,3626cpr0499,14,1,f +933,41879a,1,1,f +933,62810,484,1,f +933,973pr1573c01,15,1,f +934,51800,73,1,f +934,51806,366,1,f +934,51813,151,1,f +935,14210,2,1,f +935,22667,4,2,f +935,22670,63,1,f +935,22670,383,1,f +935,2412b,0,2,f +935,2540,15,2,f +935,2555,74,3,f +935,3004,74,4,f +935,3005,45,1,f +935,30056,73,2,f +935,30078,462,1,f +935,30078,5,1,f +935,30153,143,1,t +935,30153,143,2,f +935,30153,45,1,t +935,30153,45,1,f +935,3020,27,3,f +935,3020,13,3,f +935,3035,15,1,f +935,3065,34,2,f +935,3069b,15,1,f +935,3069bpr0055,15,2,f +935,32202,10,1,f +935,33009px5,5,1,f +935,33061,34,2,f +935,3308,15,2,f +935,33213,13,1,f +935,33215,26,1,f +935,33217,34,1,f +935,33286,115,9,f +935,33291,15,2,f +935,33325,4,1,f +935,33326,4,1,f +935,3455,15,2,f +935,3622,45,1,f +935,3659,15,2,f +935,3710,15,4,f +935,3794a,15,1,f +935,3898pb01,125,1,f +935,3937,4,1,f +935,3941,10,2,f +935,3942c,15,2,f +935,3957a,13,1,f +935,3958,15,1,f +935,3958,26,1,f +935,3960p0a,4,1,f +935,4032a,10,2,f +935,4150,125,1,f +935,4150px26,14,1,f +935,4150px30,462,1,f +935,4201,74,1,f +935,44510pb02,10,1,f +935,44512,10,2,f +935,4495b,5,1,f +935,45024pb01c01,13,1,f +935,45719,2,1,f +935,4589,46,4,f +935,4727,115,6,f +935,4727,10,2,f +935,4728,15,2,f +935,4728,13,1,f +935,4740,45,3,f +935,4740,34,4,f +935,4865a,15,1,f +935,6079,15,2,f +935,6108,15,2,f +935,6124,45,2,f +935,6134,4,1,f +935,6141,57,5,f +935,6141,5,1,t +935,6141,5,4,f +935,6141,14,4,f +935,6178,5,1,f +935,6179,5,2,f +935,6182,5,5,f +935,6182,10,2,f +935,6254,13,2,f +935,6256,13,3,f +935,6992,4,1,f +935,pouch04,10,1,f +935,x222,5,1,f +937,11090,70,1,f +937,11097,297,1,f +937,11107,179,1,f +937,11127,182,1,f +937,11458,72,2,f +937,11477,71,2,f +937,11477,326,4,f +937,12551pr0007,326,1,f +937,12551pr0008,326,1,f +937,12551pr0009,326,1,f +937,14769pr1012,4,3,f +937,15208,15,4,f +937,15391,0,1,f +937,15392,72,1,f +937,16768pat0001,4,1,f +937,16968,71,1,f +937,20170,47,1,f +937,2432,70,1,f +937,2780,0,2,f +937,2817,71,1,f +937,3004,19,1,f +937,3020,326,3,f +937,3626cpr1595,326,2,f +937,3626cpr1618,326,1,f +937,3942c,71,1,f +937,4460b,70,2,f +937,4497,308,1,f +937,4740,57,1,f +937,54383,28,1,f +937,54384,28,1,f +937,61252,71,2,f +937,6126b,182,2,f +937,6141,4,3,f +937,6141,182,2,f +937,6141,15,2,f +937,63965,70,1,f +937,64567,297,1,f +937,64867,326,1,f +937,87081,70,1,f +937,91884,179,1,f +937,92290,297,1,f +937,92593,71,1,f +937,970c00pr0797,326,2,f +937,970c00pr0808,326,1,f +937,973pr2893c01,326,3,f +937,98138,326,2,f +937,98138pr0023,182,1,f +941,22667,4,4,f +941,2417,288,4,f +941,2431,15,1,t +941,2431,288,2,f +941,2431,15,50,f +941,3001,4,26,f +941,3001,334,2,f +941,3001pb042,4,1,f +941,3001pb043,4,1,f +941,3001pb044,4,1,f +941,3001pb045,4,1,f +941,3001pb046,4,1,f +941,3001pb047,4,1,f +941,3001pb048,4,1,f +941,3001pb049,4,1,f +941,3001pb050,4,1,f +941,3001pb051,4,1,f +941,3001pb052,4,1,f +941,3001pb053,4,1,f +941,3001pb054,4,1,f +941,3001pb055,4,1,f +941,3001pb056,4,1,f +941,3001pb057,4,1,f +941,3001pb058,4,1,f +941,3001pb059,4,1,f +941,3001pb060,4,1,f +941,3001pb061,4,1,f +941,3001pb062,4,1,f +941,3001pb063,4,1,f +941,3001pb064,4,1,f +941,3001pb065,4,1,f +941,3020,15,25,f +941,3031,15,2,f +941,30565,288,8,f +941,3666,288,2,f +941,3941,0,1,f +941,3958,4,1,f +941,3958,70,1,f +941,4727,10,4,f +941,58176,36,4,f +941,6148,2,4,f +941,85959pat0001,36,1,f +944,3001a,47,1,f +944,3005,0,2,f +944,3010,4,1,f +944,3010,0,3,f +944,3010pb035e,1,1,f +944,3020,4,1,f +944,3024,14,2,f +944,3032,0,1,f +944,3046a,4,2,f +944,3137c01,0,1,f +944,3137c02,0,2,f +944,3139,0,2,f +944,3149c01,14,1,f +944,3185,14,4,f +944,3324c01,14,1,f +944,3404ac01,0,1,f +944,7b,0,4,f +944,967,1,1,f +944,968,1,1,f +944,969,7,1,f +945,2555,0,1,f +945,2555,0,1,t +945,2654,47,1,f +945,30035,0,1,f +945,30367b,0,1,f +945,3794a,71,1,f +945,3795,72,1,f +945,3957a,15,1,f +945,4079,0,1,f +946,2412b,42,5,f +946,2431,0,1,f +946,2540,72,1,f +946,2780,0,1,t +946,2780,0,5,f +946,3004,0,3,f +946,3005,72,2,f +946,3020,0,1,f +946,3021,72,9,f +946,3022,0,2,f +946,3023,71,3,f +946,3031,72,1,f +946,3034,0,1,f +946,3039,0,2,f +946,30414,72,2,f +946,30603,0,4,f +946,3069bpb078b,27,1,f +946,32000,72,1,f +946,32016,0,3,f +946,32054,71,1,f +946,32062,4,6,f +946,32064b,72,8,f +946,32184,0,1,f +946,32192,27,2,f +946,32316,0,1,f +946,32530,0,2,f +946,3623,72,1,f +946,3626bpr0190,15,1,f +946,3665,72,1,f +946,3701,0,1,f +946,3705,0,2,f +946,3713,71,1,f +946,3713,71,1,t +946,3747b,72,4,f +946,3795,2,2,f +946,3795,71,2,f +946,40244,0,2,f +946,4081b,0,2,f +946,42445,47,2,f +946,4274,71,1,f +946,4274,71,1,t +946,43093,1,2,f +946,43710,0,1,f +946,43711,0,1,f +946,44036,27,1,f +946,44822,0,2,f +946,4519,71,2,f +946,45301,0,3,f +946,4589,42,2,f +946,4623,72,1,f +946,47455,0,3,f +946,47457,72,1,f +946,47757,0,4,f +946,47759,0,1,f +946,48169,72,3,f +946,48171,72,3,f +946,48729a,72,2,f +946,50747,42,2,f +946,52107,0,2,f +946,53451,27,1,t +946,53451,27,2,f +946,53984,135,2,f +946,53988pat01,42,1,f +946,53989,135,2,f +946,53990,40,1,f +946,53993pat0001,4,10,f +946,54200,27,1,f +946,57909a,72,2,f +946,57910,72,2,f +946,6141,36,2,f +946,6141,36,1,t +946,6141,42,1,t +946,6141,42,2,f +946,6260,15,1,f +946,6265,15,1,t +946,6265,15,2,f +946,6266,15,2,f +946,6558,0,1,f +946,78c15,179,1,f +948,10199,10,1,f +948,11169,10,2,f +948,11371,15,1,f +948,12602,1,1,f +948,14721,10,1,f +948,16121,10,1,f +948,17304,4,1,f +948,18783,70,2,f +948,19034,484,1,f +948,19053,71,1,f +948,19134,84,1,f +948,19349,191,1,f +948,2301,10,2,f +948,3011,484,1,f +948,3437,2,1,f +948,3437,1,2,f +948,3437,27,2,f +948,3437,484,1,f +948,4066,484,1,f +948,40666,70,2,f +948,4672,14,1,f +948,47510wpr0003,73,1,f +948,47511pr0004,71,1,f +948,58086,70,1,f +948,61896,321,1,f +948,6446,484,1,f +948,6510,10,1,f +948,76371,4,2,f +948,98460,70,4,f +950,30374,42,4,f +950,32013,0,2,f +950,32123b,7,4,f +950,32138,0,2,f +950,32294,0,2,f +950,32310pb02,27,1,f +950,32439a,2,2,f +950,3705,0,1,f +950,3706,0,1,f +950,3749,7,4,f +950,4288,0,2,f +951,2412b,7,1,f +951,2431,15,2,f +951,2736,7,2,f +951,2780,0,20,f +951,2825,15,1,f +951,2825,0,1,f +951,3023,15,1,f +951,32000,0,2,f +951,32002,8,3,t +951,32002,8,8,f +951,32013,15,4,f +951,32014,0,1,f +951,32015,15,2,f +951,32015,0,2,f +951,32016,15,3,f +951,32017,15,2,f +951,32034,15,19,f +951,32034,0,4,f +951,32039,0,6,f +951,32039,15,8,f +951,32056,15,2,f +951,32062,0,52,f +951,32073,0,2,f +951,32074c01,0,1,f +951,32123b,7,13,f +951,32123b,7,3,t +951,32138,15,1,f +951,32165,0,2,f +951,32174,0,3,f +951,32174,15,1,f +951,32175,15,2,f +951,32177,15,2,f +951,32184,0,1,f +951,32184,15,1,f +951,32192,0,1,f +951,32192,15,2,f +951,32249,15,4,f +951,32249,25,1,f +951,32250,15,6,f +951,32269,7,1,f +951,32270,7,2,f +951,32291,15,7,f +951,32310,15,1,f +951,32449,15,8,f +951,32474,0,4,f +951,32489,0,1,f +951,32527,15,6,f +951,32528,15,6,f +951,32534,15,1,f +951,32535,15,1,f +951,3673,7,1,f +951,3705,0,11,f +951,3706,0,4,f +951,3713,7,17,f +951,3737,0,1,f +951,3749,7,14,f +951,4274,7,1,t +951,4274,7,2,f +951,4519,0,17,f +951,4590,7,1,f +951,6536,0,4,f +951,6536,7,2,f +951,6536,15,17,f +951,6538b,0,2,f +951,6538b,15,1,f +951,6541,15,2,f +951,6558,0,4,f +951,6575,0,3,f +951,6575,15,3,f +951,6587,8,4,f +951,6628,0,1,f +951,6632,15,11,f +951,6636,15,2,f +951,6644,0,2,f +951,75c07,0,2,f +951,75c09,0,1,f +951,75c10,15,1,f +951,76110c01,7,1,f +951,78c03,15,2,f +951,flex08c10l,7,1,f +951,x209,15,2,f +952,219,72,2,t +952,2412b,14,10,f +952,2412b,71,16,f +952,2431,72,2,f +952,2431,4,14,f +952,2437,47,2,f +952,2454a,71,2,f +952,2465,0,10,f +952,2524,70,1,f +952,3002,71,2,f +952,3003,15,2,f +952,3004,14,1,f +952,3004,71,1,f +952,3005,4,2,f +952,3009,71,1,f +952,3009,0,8,f +952,3010,71,4,f +952,30134,72,4,f +952,3020,15,1,f +952,3020,72,2,f +952,3022,70,2,f +952,3022,14,2,f +952,3022,15,5,f +952,3023,15,7,f +952,3023,46,4,f +952,3023,4,1,f +952,30237a,71,4,f +952,3027,71,1,f +952,3028,72,1,f +952,3032,72,22,f +952,3033,71,2,f +952,3040bpr0003,71,1,f +952,30552,71,4,f +952,30586,71,2,f +952,3062b,15,20,f +952,3068bpr0137,15,1,f +952,3069b,14,1,f +952,3069b,15,5,f +952,3069b,4,1,f +952,3069bpr0030,15,1,f +952,3070b,15,1,t +952,3070b,15,1,f +952,3297,14,1,f +952,3298,0,6,f +952,3460,4,1,f +952,3622,71,1,f +952,3622,14,2,f +952,3623,71,2,f +952,3624,0,1,f +952,3626bpr0314,14,1,f +952,3626bpr0386,14,1,f +952,3626bpr0498,14,1,f +952,3626bpr0891,14,1,f +952,3665,4,1,f +952,3666,71,9,f +952,3666,72,4,f +952,3673,71,2,f +952,3673,71,1,t +952,3700,0,10,f +952,3710,4,5,f +952,3710,14,4,f +952,3710,72,2,f +952,3741,2,1,t +952,3741,2,2,f +952,3742,15,3,f +952,3742,15,1,t +952,3742,4,3,f +952,3742,4,1,t +952,3795,71,4,f +952,3795,72,9,f +952,3829c01,1,1,f +952,3900,15,1,f +952,3901,70,1,f +952,3937,15,1,f +952,3963,14,1,f +952,4032a,14,2,f +952,4079,1,3,f +952,4150pr0001,15,1,f +952,43337,14,2,f +952,44302a,71,4,f +952,4449,70,1,f +952,4449,0,1,f +952,4523,1,1,f +952,45677,15,2,f +952,4589,46,2,f +952,4589,34,3,f +952,4864b,47,1,f +952,4865a,14,5,f +952,50745,72,4,f +952,52036,72,1,f +952,52038,72,2,f +952,52501,14,2,f +952,53401,72,4,f +952,54200,4,1,t +952,54200,4,2,f +952,54200,72,4,f +952,54200,47,1,t +952,54200,47,2,f +952,54200,36,1,t +952,54200,36,2,f +952,57895,47,3,f +952,57895,15,2,f +952,6014b,15,4,f +952,60478,15,1,f +952,60479,4,1,f +952,60596,4,5,f +952,60700,0,4,f +952,6093,70,1,f +952,6134,71,1,f +952,6141,34,1,f +952,6141,34,1,t +952,6157,71,2,f +952,62810,484,1,f +952,63868,14,1,f +952,63965,15,4,f +952,64448,15,8,f +952,64453,4,1,f +952,64453,47,1,f +952,6636,4,7,f +952,6636,15,6,f +952,970c00,19,1,f +952,970c00,1,1,f +952,970c00,72,1,f +952,970c00,0,1,f +952,973pr1164c01,272,1,f +952,973pr1173c01,4,1,f +952,973pr1192c01,0,1,f +952,973pr1485c01,4,1,f +953,11211,4,1,f +953,11477,4,1,f +953,11477,15,5,f +953,11477,2,2,f +953,15470,179,1,t +953,15470,179,1,f +953,15533,84,2,f +953,2431,14,3,f +953,2780,0,1,t +953,2780,0,2,f +953,3005,84,3,f +953,3005,47,3,f +953,3023,70,2,f +953,3023,15,3,f +953,3023,47,7,f +953,3023,4,4,f +953,3024,71,1,t +953,3024,47,9,f +953,3024,47,1,t +953,3024,15,3,f +953,3024,2,1,t +953,3024,4,6,f +953,3024,2,2,f +953,3024,15,1,t +953,3024,4,1,t +953,3024,71,4,f +953,3036,0,1,f +953,3070b,71,8,f +953,3070b,15,1,t +953,3070b,70,1,t +953,3070b,15,2,f +953,3070b,71,1,t +953,3070b,70,3,f +953,32000,72,2,f +953,33291,10,4,f +953,33291,10,1,t +953,3623,2,1,f +953,3666,71,2,f +953,3710,4,5,f +953,3710,71,4,f +953,3795,71,3,f +953,4081b,0,4,f +953,4150p02,14,1,f +953,4740,4,1,f +953,49668,15,1,f +953,54200,47,2,f +953,54200,47,1,t +953,61409,72,1,f +953,6141,0,1,t +953,6141,179,3,f +953,6141,14,2,f +953,6141,179,1,t +953,6141,14,1,t +953,6141,0,8,f +953,63864,15,1,f +953,64644,0,3,f +953,98138,25,1,t +953,98138,25,2,f +953,98138,179,1,f +953,98138,179,1,t +953,98283,84,11,f +954,2412b,25,3,f +954,2431,25,4,f +954,2444,0,2,f +954,2516,0,1,f +954,2540,0,2,f +954,2540,25,2,f +954,2555,0,6,f +954,2780,0,1,f +954,2780,0,1,t +954,298c02,0,2,f +954,298c02,0,1,t +954,30151a,42,2,f +954,3020,25,1,f +954,3020,0,1,f +954,3022,25,2,f +954,3023,14,4,f +954,3023,25,1,f +954,30386,0,6,f +954,30407,0,6,f +954,30552,0,6,f +954,3069b,25,1,f +954,3069b,0,3,f +954,32054,0,2,f +954,32062,4,3,f +954,32064b,0,2,f +954,32529,0,2,f +954,3626bpr0895,15,1,f +954,3710,25,4,f +954,3794a,0,1,f +954,3941,42,1,f +954,4032a,0,3,f +954,4070,0,2,f +954,4081b,14,2,f +954,4274,1,1,t +954,4274,1,1,f +954,44676,0,2,f +954,4589,42,2,f +954,4589,0,2,f +954,4599a,0,2,f +954,48336,71,1,f +954,4854,0,1,f +954,4871,0,1,f +954,48729a,72,3,f +954,50950,25,2,f +954,53451,25,1,t +954,53451,14,1,t +954,53451,14,4,f +954,53451,25,6,f +954,53984,135,2,f +954,53988,135,1,f +954,53989,135,2,f +954,53989,0,6,f +954,54200,25,2,f +954,54200,25,1,t +954,54200,0,2,f +954,57585,71,2,f +954,6070,40,1,f +954,6117,72,2,f +954,6126a,57,2,f +954,6141,25,2,f +954,6141,25,1,t +955,10314,29,4,f +955,11476,0,4,f +955,11477,30,4,f +955,11477,4,4,f +955,11477,5,4,f +955,11477,226,4,f +955,14719,4,2,f +955,15571,323,4,f +955,15573,14,2,f +955,15573,70,4,f +955,15573,85,4,f +955,22885,71,2,f +955,2357,15,4,f +955,2357,4,4,f +955,2412b,179,8,f +955,2415,71,2,f +955,2420,320,4,f +955,2436,71,1,f +955,2449,15,4,f +955,2449,4,4,f +955,2453b,15,2,f +955,2569,71,1,f +955,2877,71,4,f +955,298c02,4,2,f +955,3001,288,2,f +955,3001,191,4,f +955,3001,25,2,f +955,3001,29,2,f +955,3001,1,8,f +955,3001,14,6,f +955,3001,321,2,f +955,3001,70,4,f +955,3001,28,2,f +955,3001,4,4,f +955,3001,85,4,f +955,3001,0,4,f +955,3001,19,4,f +955,3001,2,6,f +955,3002,15,4,f +955,3002,27,4,f +955,3002,29,4,f +955,3002,4,4,f +955,3002,72,10,f +955,3002,14,4,f +955,3003,4,4,f +955,3003,19,4,f +955,3003,85,8,f +955,3003,25,4,f +955,3003,27,6,f +955,3003,0,8,f +955,3003,320,4,f +955,3003,272,4,f +955,3003,28,4,f +955,3003,1,4,f +955,3003,72,4,f +955,3003,31,4,f +955,3003,15,4,f +955,3003,14,12,f +955,3003,5,4,f +955,3003,2,8,f +955,3004,484,4,f +955,3004,191,4,f +955,3004,30,12,f +955,3004,27,4,f +955,3004,14,8,f +955,3004,321,4,f +955,3004,212,10,f +955,3004,320,4,f +955,3004,10,8,f +955,3004,0,4,f +955,3004,323,8,f +955,3004,158,4,f +955,3004,226,8,f +955,3004,28,3,f +955,3004,29,8,f +955,3004,84,4,f +955,3004,1,8,f +955,3004,15,4,f +955,3005,27,4,f +955,3005,33,4,f +955,3005,5,8,f +955,3005,72,4,f +955,3005,1,4,f +955,3005,19,4,f +955,3005,52,4,f +955,3005,30,4,f +955,3005,31,4,f +955,3005,14,4,f +955,3005,73,8,f +955,3005,28,8,f +955,3005,288,4,f +955,3005,29,8,f +955,3005,47,4,f +955,3005,484,4,f +955,3005,41,4,f +955,3005,45,4,f +955,3005,322,4,f +955,3009,484,2,f +955,3009,4,2,f +955,3010,28,4,f +955,3010,73,4,f +955,3010,1,4,f +955,3010,70,4,f +955,3010,5,4,f +955,3010,226,4,f +955,3010,288,4,f +955,3010,26,4,f +955,3010,272,4,f +955,3010,72,4,f +955,30136,19,4,f +955,30136,31,4,f +955,30137,29,4,f +955,30137,71,4,f +955,30165,4,2,f +955,3020,212,4,f +955,3020,272,4,f +955,3020,71,2,f +955,3020,320,2,f +955,3020,191,4,f +955,3020,484,4,f +955,3021,29,4,f +955,3021,28,2,f +955,3021,70,4,f +955,3022,484,4,f +955,3022,191,4,f +955,3022,2,4,f +955,3022,320,4,f +955,3022,73,4,f +955,3023,14,2,f +955,3023,30,4,f +955,3023,321,4,f +955,3023,4,4,f +955,3030,1,1,f +955,3031,1,1,f +955,3034,85,1,f +955,3034,70,1,f +955,30367c,27,4,f +955,3039,4,4,f +955,3039,47,2,f +955,3039,191,4,f +955,3039,27,4,f +955,3039,15,4,f +955,3040b,320,4,f +955,3040b,26,4,f +955,3040b,25,4,f +955,3040b,84,6,f +955,3062b,484,4,f +955,3062b,29,4,f +955,3062b,71,8,f +955,3062b,85,10,f +955,3062b,14,8,f +955,3062b,46,4,f +955,3062b,1,4,f +955,3065,52,4,f +955,3065,36,4,f +955,3065,46,4,f +955,3065,47,4,f +955,3065,45,4,f +955,3068b,71,4,f +955,3069b,31,4,f +955,3070b,70,3,f +955,3245c,0,4,f +955,3298,71,4,f +955,33243,484,4,f +955,33291,191,3,f +955,33291,4,3,f +955,33291,5,2,f +955,33291,10,6,f +955,3460,14,2,f +955,3464,72,2,f +955,3622,1,4,f +955,3622,2,4,f +955,3622,19,4,f +955,3622,25,4,f +955,3623,85,2,f +955,3623,158,4,f +955,3623,191,4,f +955,3660,70,4,f +955,3660,25,4,f +955,3660,19,4,f +955,3660,4,4,f +955,3660,27,4,f +955,3660,15,4,f +955,3660,14,4,f +955,3665,308,4,f +955,3665,5,7,f +955,3665,30,4,f +955,3679,71,1,f +955,3680,15,1,f +955,3710,26,4,f +955,3710,29,1,f +955,3710,272,4,f +955,3710,10,4,f +955,3788,1,2,f +955,3795,2,3,f +955,3832,0,1,f +955,3941,2,4,f +955,3941,1,4,f +955,3941,25,4,f +955,3941,14,4,f +955,3941,85,4,f +955,4032a,2,4,f +955,4286,14,4,f +955,4286,2,4,f +955,4477,70,1,f +955,4600,0,4,f +955,4624,15,8,f +955,4727,10,2,f +955,4740,19,2,f +955,48336,15,4,f +955,50947,4,2,f +955,50950,31,4,f +955,50950,0,4,f +955,52107,0,4,f +955,52107,4,2,f +955,54200,47,2,f +955,54200,14,3,f +955,57894,15,2,f +955,57895,47,2,f +955,59895,0,2,f +955,59900,2,4,f +955,59900,71,4,f +955,59900,0,4,f +955,59900,320,2,f +955,6005,2,2,f +955,60478,72,4,f +955,60479,71,2,f +955,60479,0,1,f +955,60481,70,4,f +955,60481,212,2,f +955,60481,5,2,f +955,60594,15,1,f +955,60596,71,1,f +955,60603,47,1,f +955,60608,2,4,f +955,60616a,47,1,f +955,60806,15,2,f +955,6091,288,4,f +955,6091,320,4,f +955,6091,2,4,f +955,6141,25,3,f +955,63868,308,2,f +955,6636,85,2,f +955,85984,70,4,f +955,87087,14,4,f +955,87087,4,4,f +955,87087,0,3,f +955,87414,0,8,f +955,87580,27,4,f +955,87580,25,2,f +955,88930,1,1,f +955,92280,0,4,f +955,92438,10,1,f +955,93273,320,4,f +955,96874,25,1,t +955,98138pr0026,15,2,f +955,98138pr0027,15,2,f +956,13965,19,4,f +956,15332,0,2,f +956,2449,71,2,f +956,3004,71,12,f +956,3004,19,8,f +956,3004,288,12,f +956,3005,19,6,f +956,3005,71,12,f +956,3005,288,6,f +956,3008,71,3,f +956,3009,19,3,f +956,3009,71,3,f +956,3010,19,4,f +956,3010,288,4,f +956,3010,71,4,f +956,30136,70,8,f +956,30137,70,4,f +956,3040b,288,4,f +956,3040b,19,4,f +956,3040b,70,4,f +956,3040b,71,4,f +956,3062b,70,12,f +956,3069b,71,2,f +956,3307,71,2,f +956,3665,70,4,f +956,3665,19,4,f +956,3665,71,4,f +956,4286,71,4,f +956,4286,70,4,f +956,4287,288,4,f +956,4460b,70,2,f +956,4460b,71,2,f +956,4490,71,4,f +956,60481,288,4,f +956,60594,15,4,f +956,60607,297,8,f +956,6178pr0002,71,1,f +956,6182,71,4,f +956,6182,19,2,f +956,63864,71,2,f +956,87552,19,4,f +956,90195,71,4,f +956,90195,19,4,f +956,92950,19,2,f +956,98283,378,12,f +957,x1446,1,7,f +957,x1446,4,1,f +957,x1447c01,15,1,f +959,2423,2,6,f +959,6141,4,1,t +959,6141,4,6,f +961,3021,70,1,f +961,3062b,70,2,f +961,3623,70,2,f +961,3846pr0001a,71,1,f +961,3848,148,1,f +961,4085c,72,3,f +961,4497,135,1,f +964,3004,0,1,f +964,3005,19,1,f +964,3010,19,1,f +964,30115,4,1,f +964,30153,34,1,f +964,30153,36,1,f +964,30169,0,1,f +964,30173b,135,2,f +964,30176,72,1,f +964,3020,28,1,f +964,3021,19,1,f +964,3031,19,1,f +964,3040b,28,1,f +964,3040b,19,2,f +964,30503,19,2,f +964,3068b,0,1,f +964,3069b,19,1,f +964,3069b,0,1,f +964,3626bpr0652,78,1,f +964,3626bpr0654,78,1,f +964,3626bpr0660,78,1,f +964,3626bpr0895,15,1,f +964,3937,71,1,f +964,3938,0,1,f +964,4491b,379,1,f +964,4497,308,2,f +964,53705,132,2,f +964,54200,71,1,t +964,54200,71,2,f +964,59900,72,2,f +964,6064,28,1,f +964,6260,15,1,f +964,6265,15,1,t +964,6265,15,2,f +964,6266,15,2,f +964,63965,70,1,f +964,75998pr0002,0,1,f +964,88283,308,1,f +964,88287,0,2,f +964,88290,308,1,f +964,88295,179,1,f +964,88811,135,1,t +964,88811,135,2,f +964,970c00,272,1,f +964,970c00,0,1,f +964,970c00pr0150,0,1,f +964,973pr1558c01,308,1,f +964,973pr1564c01,272,1,f +964,973pr1583c01,72,1,f +966,2412b,72,1,f +966,2436,4,2,f +966,3001,72,1,f +966,3020,15,2,f +966,3020,14,1,f +966,3023,2,2,f +966,3023,14,2,f +966,3034,71,1,f +966,3069b,4,2,f +966,3069b,15,2,f +966,3460,72,1,f +966,3710,71,2,f +966,3794b,1,4,f +966,49668,0,2,f +966,50951,0,4,f +966,54200,14,2,f +966,54200,14,1,t +966,60212,14,1,f +966,6141,36,3,f +966,6141,36,1,t +966,6141,34,1,f +966,6141,34,1,t +966,6157,0,2,f +966,63868,0,2,f +966,64644,0,1,f +966,87079pr0034,14,1,f +966,87079pr0035,14,1,f +966,87087,71,2,f +966,87580,0,1,f +966,93274,14,1,f +966,93591pr0016,14,1,f +966,93595,72,4,f +966,98834pr0003,0,1,f +966,98835pr0003,14,1,f +968,12825,0,2,f +968,3023,71,1,f +968,32064a,4,1,f +968,3794b,1,1,f +968,3960,72,2,f +968,4032a,1,2,f +968,4085c,72,4,f +968,4519,71,1,f +968,4697b,71,2,f +968,4740,71,1,f +968,48729a,72,4,f +968,53989,72,2,f +968,54200,0,2,f +968,60478,71,2,f +968,6141,143,3,f +968,6942,47,1,f +970,2412b,72,3,f +970,2432,72,1,f +970,2436,4,1,f +970,2446pr0011,15,1,f +970,2780,0,6,f +970,2780,0,1,t +970,3020,0,1,f +970,3022,1,2,f +970,3023,72,2,f +970,3024,4,2,f +970,3031,0,1,f +970,32034,71,1,f +970,32062,4,1,f +970,32291,4,1,f +970,32526,27,2,f +970,3626bpr0669,14,1,f +970,3702,4,2,f +970,3705,0,1,f +970,3708,0,2,f +970,3710,27,2,f +970,3710,0,2,f +970,3713,4,8,f +970,3713,4,1,t +970,3749,19,3,f +970,4274,1,1,f +970,4274,1,1,t +970,47456,0,1,f +970,48336,2,4,f +970,4865a,40,1,f +970,50943,72,1,f +970,54200,34,1,t +970,54200,34,2,f +970,56145,0,4,f +970,60212,27,2,f +970,61481,0,4,f +970,62462,4,4,f +970,64451,27,2,f +970,6558,1,2,f +970,87083,72,1,f +970,90258,72,2,f +970,92907,71,1,f +970,93273,27,6,f +970,970c00,2,1,f +970,973pr1942c01,4,1,f +972,2780,0,2,f +972,2780,0,1,t +972,32062,0,2,f +972,32062,0,1,t +972,32174,272,2,f +972,32174,73,2,f +972,32270,7,1,f +972,32571,33,1,f +972,32576,272,2,f +972,32579,7,1,f +972,3713,7,1,t +972,3713,7,1,f +972,3749,19,1,t +972,3749,19,1,f +972,41670,73,2,f +972,43093,1,1,f +972,43093,1,1,t +972,44137,73,1,f +972,44809,272,2,f +972,44810,73,1,f +972,44811,179,1,f +972,44812,179,1,f +972,4519,7,1,f +973,8887-1,9999,1,f +974,12825,71,1,f +974,22667,27,1,f +974,22667,27,1,t +974,2412b,15,2,f +974,2412b,72,4,f +974,2419,25,2,f +974,2423,2,2,f +974,2431,4,2,f +974,2431,1,2,f +974,2431,15,2,f +974,2449,25,10,f +974,2453a,25,2,f +974,2458,4,2,f +974,2458,1,2,f +974,2540,14,2,f +974,2540,1,1,f +974,2555,14,3,f +974,2555,15,2,f +974,2654,4,2,f +974,2654,19,1,f +974,2817,0,3,f +974,2877,15,1,f +974,298c02,71,2,f +974,298c02,71,1,t +974,3001,25,1,f +974,3004,1,8,f +974,3004,15,1,f +974,3004,25,27,f +974,3004,4,2,f +974,3005,4,4,f +974,3005,25,17,f +974,3005,1,2,f +974,3009,25,5,f +974,3010,25,11,f +974,3010,1,3,f +974,30176,2,2,f +974,3020,4,2,f +974,3020,25,8,f +974,3020,70,1,f +974,3021,15,3,f +974,3021,25,5,f +974,3022,4,1,f +974,3022,70,4,f +974,3023,4,10,f +974,3023,25,9,f +974,3023,15,2,f +974,3023,27,1,f +974,3023,1,2,f +974,3023,72,3,f +974,3024,4,10,f +974,3031,70,1,f +974,3031,4,1,f +974,3032,1,1,f +974,3034,0,1,f +974,30503,25,4,f +974,3062b,1,2,f +974,3062b,4,2,f +974,3062b,19,10,f +974,3068b,4,3,f +974,3069b,4,4,f +974,3069b,15,4,f +974,3069b,1,2,f +974,3070b,4,2,f +974,3070b,4,1,t +974,3070bpr0007,71,1,t +974,3070bpr0007,71,1,f +974,3139,0,4,f +974,32034,15,1,f +974,33009,26,1,f +974,3455,1,1,f +974,3460,0,2,f +974,3660,25,2,f +974,3665,72,2,f +974,3666,19,2,f +974,3673,71,1,f +974,3673,71,1,t +974,3700,1,1,f +974,3710,15,1,f +974,3710,1,1,f +974,3710,25,3,f +974,3794b,15,1,f +974,3794b,72,3,f +974,3794b,2,1,f +974,3795,25,3,f +974,3795,72,1,f +974,3829c01,1,1,f +974,3830,1,1,f +974,3831,1,1,f +974,3898,45,1,f +974,3899,4,2,f +974,3937,4,6,f +974,3941,1,1,f +974,3941,2,1,f +974,3941,70,1,f +974,3942c,1,1,f +974,3960p01,15,1,f +974,3961,25,1,f +974,4032a,19,1,f +974,4070,4,3,f +974,4070,15,2,f +974,4081b,19,2,f +974,4150pr0003,0,2,f +974,41764,4,1,f +974,41765,4,1,f +974,41769,15,1,f +974,41770,15,1,f +974,41879a,70,1,f +974,4215b,25,2,f +974,4274,71,1,t +974,4274,71,1,f +974,43719,0,1,f +974,44301a,4,2,f +974,44302a,71,2,f +974,4460b,25,8,f +974,44728,4,3,f +974,4495b,4,1,f +974,4522,0,1,f +974,4528,0,1,f +974,4589,4,1,f +974,4599a,1,1,f +974,4624,15,4,f +974,4740pr0004a,29,1,f +974,4790,70,1,f +974,47905,19,1,f +974,48336,15,2,f +974,4854,4,1,f +974,4864bpr16,47,2,f +974,4865a,15,1,f +974,4865a,4,1,f +974,4865a,47,2,f +974,4871,4,1,f +974,50950,25,4,f +974,54200,15,1,t +974,54200,15,2,f +974,54383,25,4,f +974,54384,25,4,f +974,54872pr0007,14,1,f +974,54873pr0001,78,1,f +974,6019,14,1,f +974,6041,0,1,f +974,6091,1,2,f +974,6091,4,4,f +974,6126a,41,1,f +974,6134,1,6,f +974,6141,14,2,f +974,6141,70,1,f +974,6141,36,1,f +974,6141,36,1,t +974,6141,14,1,t +974,6141,70,1,t +974,6141,27,1,f +974,6141,72,1,t +974,6141,72,12,f +974,6141,4,1,t +974,6141,15,3,f +974,6141,4,2,f +974,6141,15,1,t +974,6141,27,1,t +974,6148,2,4,f +974,6157,0,2,f +974,6179,71,1,f +974,63965,15,2,f +974,64567,71,1,f +974,64767pr0001,378,1,f +974,6541,72,2,f +974,6541,15,1,f +974,73590c02b,14,1,f +974,73983,4,12,f +974,970c00,378,1,f +974,970c00pr0108,78,1,f +974,973c11,14,1,f +974,973pr1259c01,78,1,f +974,973pr1455c01,19,1,f +975,3022,1,40,f +976,2431pr0028,72,1,f +976,2654,0,1,f +976,2780,0,74,f +976,2780,0,2,t +976,2817,0,2,f +976,2819,71,1,f +976,2825,0,4,f +976,2850a,71,4,f +976,2851,14,4,f +976,2852,71,4,f +976,2853,71,2,f +976,2854,72,3,f +976,2905,0,4,f +976,2905,4,4,f +976,3024,47,12,f +976,3068b,0,2,f +976,3069b,0,2,f +976,32002,72,2,t +976,32002,72,3,f +976,32009,0,8,f +976,32013,0,11,f +976,32014,0,2,f +976,32015,0,1,f +976,32034,0,4,f +976,32034,71,10,f +976,32039,0,4,f +976,32039,4,5,f +976,32054,4,6,f +976,32054,0,17,f +976,32056,0,23,f +976,32062,4,38,f +976,32072,14,2,f +976,32073,71,23,f +976,32123b,71,2,t +976,32123b,71,10,f +976,32126,71,6,f +976,32140,0,13,f +976,32140,27,1,f +976,32140,1,1,f +976,32184,71,8,f +976,32198,71,1,f +976,32199,0,1,f +976,32200,15,1,f +976,32201,27,6,f +976,32250,0,12,f +976,32269,71,1,f +976,32270,71,3,f +976,32278,27,2,f +976,32278,0,2,f +976,32291,0,5,f +976,32291,72,2,f +976,32316,27,1,f +976,32316,1,4,f +976,32348,0,8,f +976,32449,15,4,f +976,32523,27,3,f +976,32523,0,4,f +976,32524,27,2,f +976,32524,0,2,f +976,32524,4,5,f +976,32525,15,3,f +976,32525,0,3,f +976,32525,4,2,f +976,32526,0,2,f +976,32556,71,2,f +976,33299a,0,2,f +976,3623,0,1,f +976,3647,71,2,f +976,3647,71,1,t +976,3648b,71,3,f +976,3650c,71,1,f +976,3673,71,2,f +976,3673,71,2,t +976,3705,0,12,f +976,3706,0,21,f +976,3713,71,2,t +976,3713,71,42,f +976,3737,0,4,f +976,3743,71,1,f +976,3749,19,2,f +976,3794a,71,2,f +976,3941,57,1,f +976,3941,0,3,f +976,4019,71,6,f +976,4032a,0,1,f +976,40490,0,9,f +976,4095,4,6,f +976,41239,0,3,f +976,41669,1,4,f +976,41677,71,9,f +976,41677,0,8,f +976,41678,0,5,f +976,4185,71,2,f +976,41896,71,2,f +976,42003,0,7,f +976,42003,71,13,f +976,4274,71,23,f +976,4274,71,3,t +976,43093,1,55,f +976,44294,71,7,f +976,44352,27,1,f +976,44353,27,1,f +976,4477,0,1,f +976,44772,71,2,f +976,4519,71,34,f +976,45982,0,2,f +976,4716,71,1,f +976,48496,0,2,f +976,48989,71,2,f +976,54120,0,2,f +976,59426,72,5,f +976,6141,182,4,f +976,6141,36,2,f +976,6141,36,2,t +976,6141,182,2,t +976,6536,71,12,f +976,6536,0,11,f +976,6536,15,6,f +976,6538b,71,15,f +976,6538b,4,13,f +976,6538b,0,15,f +976,6539,4,1,f +976,6542a,72,2,f +976,6558,0,25,f +976,6573,72,1,f +976,6587,72,8,f +976,6589,71,10,f +976,6629,0,4,f +976,6629,72,2,f +976,6632,1,2,f +976,6632,4,17,f +976,6636,0,1,f +976,6641,4,1,f +976,75535,0,2,f +976,75c12,0,2,f +976,75c30,4,2,f +976,9244,71,1,f +977,70049,89,1,f +978,3005,15,4,f +978,3008a,15,1,f +978,3062c,4,4,f +978,3063a,15,2,f +978,3063b,15,1,f +978,3065,15,5,f +978,31ac01,4,1,f +978,31c,4,1,f +978,32ac01,4,1,f +978,32c,4,1,f +978,713a,15,2,f +980,10201,4,2,f +980,11211,71,1,f +980,14718,4,1,f +980,15535,72,1,f +980,16542,14,1,f +980,2412b,14,12,f +980,2412b,72,13,f +980,2431,4,4,f +980,2447,40,1,f +980,2447,40,1,t +980,2456,0,1,f +980,2730,71,4,f +980,2877,71,6,f +980,3001,1,6,f +980,3003,14,1,f +980,3003,72,2,f +980,3005,33,4,f +980,3005,4,2,f +980,3006,71,1,f +980,3008,4,4,f +980,3009,72,1,f +980,3010,15,3,f +980,30150,14,1,f +980,30194,72,1,f +980,3020,14,1,f +980,3020,71,4,f +980,3020,0,1,f +980,3022,2,1,f +980,3023,33,8,f +980,3023,14,9,f +980,30237b,71,1,f +980,3030,0,1,f +980,3034,4,2,f +980,3034,72,5,f +980,3035,72,1,f +980,3037,71,1,f +980,30414,4,6,f +980,30663,0,1,f +980,3069b,15,1,f +980,3069b,33,7,f +980,3069bpr0101,71,2,f +980,32013,14,1,f +980,32187,71,1,f +980,3245c,4,2,f +980,3460,72,8,f +980,3623,0,2,f +980,3626cpr0754,14,1,f +980,3626cpr0892,14,1,f +980,3660,72,14,f +980,3660,4,4,f +980,3666,71,7,f +980,3673,71,1,t +980,3673,71,8,f +980,3678b,72,2,f +980,3709,4,1,f +980,3710,4,3,f +980,3710,71,6,f +980,3795,71,6,f +980,3829c01,1,1,f +980,3834,320,2,f +980,3835,0,1,f +980,3838,14,1,f +980,3958,72,2,f +980,4162,4,4,f +980,4208,0,1,f +980,4209,4,1,f +980,43093,1,1,f +980,43121,71,1,f +980,44568,15,1,f +980,44570,71,2,f +980,4519,71,1,f +980,46667,72,1,f +980,48336,4,6,f +980,50943,72,1,f +980,52031,4,1,f +980,54200,46,1,t +980,54200,46,2,f +980,54200,33,2,t +980,54200,33,6,f +980,55981,0,8,f +980,59443,14,1,f +980,59900,14,1,f +980,60470a,71,6,f +980,60475a,71,2,f +980,60481,4,2,f +980,60483,0,2,f +980,6081,4,8,f +980,6091,4,4,f +980,6126b,57,2,f +980,6126b,41,1,f +980,61409,0,5,f +980,6141,33,1,t +980,6141,33,4,f +980,6158,72,1,f +980,6553,72,1,f +980,6558,1,1,f +980,6636,14,5,f +980,76766,0,2,f +980,84954,40,2,f +980,85861,14,1,t +980,85861,14,1,f +980,85959pat0002,41,1,f +980,87087,72,2,f +980,87580,71,4,f +980,88292,4,2,f +980,92402,0,8,f +980,93273,72,8,f +980,93606,72,1,f +980,970c00pr0408,0,2,f +980,973pr2188c01,0,1,f +980,973pr2189c01,0,1,f +980,98138,36,1,t +980,98138,36,2,f +980,99206,0,2,f +980,99780,71,4,f +981,1851pr0001,15,1,f +981,1853pr0001,15,1,f +981,260pb01,2,1,f +981,260pb01,1,1,f +981,27bc01,15,4,f +981,3001a,15,2,f +981,3002a,15,1,f +981,3003,15,2,f +981,3005,15,2,f +981,3007,1,1,f +981,3008a,1,2,f +981,3008a06,15,1,f +981,3036a,15,2,f +981,3065,47,2,f +981,3065,15,18,f +981,3065,1,4,f +982,2456,15,2,f +982,2456,1,2,f +982,3001,25,2,f +982,3001,15,12,f +982,3001,1,12,f +982,3001,14,8,f +982,3001,0,4,f +982,3001,4,8,f +982,3001,2,6,f +982,3002,2,2,f +982,3002,1,8,f +982,3002,15,8,f +982,3002,0,4,f +982,3002,4,4,f +982,3002,14,4,f +982,3002,25,2,f +982,3003,25,6,f +982,3003,0,10,f +982,3003,2,14,f +982,3003,4,16,f +982,3003,15,28,f +982,3003,14,16,f +982,3003,1,28,f +982,3004,4,18,f +982,3004,25,6,f +982,3004,15,28,f +982,3004,1,28,f +982,3004,14,18,f +982,3004,2,14,f +982,3004,0,14,f +982,3005,1,18,f +982,3005,15,18,f +982,3005,4,14,f +982,3005,0,12,f +982,3005,2,12,f +982,3005,25,6,f +982,3005,14,14,f +982,3007,1,2,f +982,3007,15,2,f +982,3008,15,4,f +982,3008,1,4,f +982,3009,14,4,f +982,3009,15,4,f +982,3009,1,4,f +982,3009,4,4,f +982,3010,2,2,f +982,3010,4,4,f +982,3010,14,4,f +982,3010,15,8,f +982,3010,1,6,f +982,3010,25,2,f +982,3622,14,4,f +982,3622,1,4,f +982,3622,2,2,f +982,3622,15,4,f +982,3622,4,4,f +982,3622,25,2,f +984,10197,72,1,f +984,11269pr0003,42,1,f +984,11270,42,1,f +984,11271,179,1,f +984,11273,148,2,f +984,11277,1,1,f +984,11302pat0002,33,2,f +984,2780,0,2,f +984,2780,0,1,t +984,30374,42,2,f +984,32062,4,2,f +984,3713,71,2,f +984,3713,71,1,t +984,42003,0,2,f +984,4519,71,2,f +984,53451,14,4,f +984,59426,72,1,f +984,59443,14,1,f +984,59900,42,2,f +984,60484,72,1,f +984,61184,71,2,f +984,63869,71,1,f +984,6536,0,2,f +984,6558,1,2,f +984,90608,72,2,f +984,90609,0,2,f +984,90616,0,2,f +984,90617,72,2,f +984,90626,0,1,f +984,90639,179,2,f +984,90639,1,2,f +984,90641,33,2,f +984,90641,42,2,f +984,90661,179,2,f +984,92202,179,1,f +984,93575,1,2,f +984,98313,1,4,f +984,98570pat01,15,1,f +984,98585,42,1,f +984,98589,179,1,f +985,14226c11,0,4,f +985,2335,4,2,f +985,2357,4,8,f +985,2412b,4,4,f +985,2412b,0,4,f +985,2420,4,18,f +985,2420,72,4,f +985,2420,71,4,f +985,2431,14,4,f +985,2431,4,10,f +985,2432,4,4,f +985,2436,71,3,f +985,2444,0,2,f +985,2446pr27,14,1,f +985,2447,40,5,f +985,2453a,71,2,f +985,2454a,4,8,f +985,2454a,71,1,f +985,2465,71,2,f +985,2495,4,1,f +985,2496,0,1,f +985,2508,15,1,f +985,2540,4,6,f +985,2653,71,2,f +985,298c02,14,1,f +985,3001,14,3,f +985,3001,15,2,f +985,3002,14,1,f +985,30029,0,2,f +985,3004,71,2,f +985,3004,4,11,f +985,3005,71,6,f +985,3008,4,1,f +985,3009,4,6,f +985,3009,71,4,f +985,3010,4,2,f +985,3010,14,2,f +985,30179,4,1,f +985,30187b,15,1,f +985,30187c05,15,1,t +985,30189,15,1,f +985,30190,71,1,f +985,3020,0,5,f +985,3020,15,2,f +985,3020,4,6,f +985,3020,72,1,f +985,3021,72,2,f +985,3022,71,2,f +985,3022,4,7,f +985,3023,4,18,f +985,3023,15,2,f +985,3023,72,3,f +985,3023,71,18,f +985,3023,0,11,f +985,30237a,4,2,f +985,3024,4,4,f +985,30261,15,1,f +985,3031,14,1,f +985,3031,4,4,f +985,3032,4,2,f +985,3032,15,1,f +985,3034,15,1,f +985,3035,15,1,f +985,30367b,72,1,f +985,30367b,0,1,f +985,30414,71,2,f +985,3062b,1,1,f +985,3062b,4,1,f +985,3062b,15,2,f +985,30648,0,10,f +985,3068b,0,2,f +985,3068b,71,2,f +985,3068b,15,1,f +985,3069b,4,14,f +985,3069b,14,5,f +985,3069b,0,1,f +985,3069bpr0030,15,1,f +985,3070b,36,1,f +985,3070b,4,4,f +985,3070b,15,4,f +985,3070b,14,2,f +985,3070bpr0007,71,1,f +985,32123b,71,14,f +985,3245b,4,10,f +985,3245b,71,8,f +985,3460,4,6,f +985,3460,15,2,f +985,3623,0,6,f +985,3623,4,2,f +985,3626bpr0279,14,1,f +985,3626bpr0282,14,1,f +985,3626bpr0367,78,1,f +985,3660,72,1,f +985,3666,71,38,f +985,3666,4,15,f +985,3710,0,1,f +985,3710,71,1,f +985,3710,14,1,f +985,3710,4,11,f +985,3754,4,4,f +985,3755,71,4,f +985,3794a,4,12,f +985,3795,4,3,f +985,3795,15,2,f +985,3795,0,8,f +985,3795,71,2,f +985,3811,15,1,f +985,3829c01,4,2,f +985,3857,72,1,f +985,3857,15,1,f +985,3941,14,1,f +985,3941,71,4,f +985,3962b,0,1,f +985,4006,0,1,f +985,4032a,14,1,f +985,4032a,4,1,f +985,4032a,72,1,f +985,4032b,0,1,f +985,4070,4,4,f +985,4070,14,2,f +985,4083,0,4,f +985,4085c,0,1,f +985,4085c,4,4,f +985,4150,15,1,f +985,4162,71,3,f +985,4162,14,3,f +985,42445,71,2,f +985,42446,72,4,f +985,4286,4,4,f +985,4286,71,4,f +985,4349,0,2,f +985,43719,4,4,f +985,43722,4,2,f +985,43723,4,2,f +985,44126,4,3,f +985,4449,0,2,f +985,4460b,71,4,f +985,44728,71,2,f +985,44728,4,5,f +985,4477,4,16,f +985,4485,4,2,f +985,4533,0,8,f +985,4589,15,2,f +985,4589,4,2,f +985,4589,0,4,f +985,4599a,1,2,f +985,4599a,71,3,f +985,4599a,0,3,f +985,4600,0,7,f +985,4623,15,2,f +985,47720,0,4,f +985,4864b,0,4,f +985,4865a,4,18,f +985,4873,0,2,f +985,50373,4,2,f +985,50950,4,4,f +985,55295,0,1,f +985,55296,0,1,f +985,55297,0,1,f +985,55298,0,1,f +985,55299,0,1,f +985,55300,0,1,f +985,55982,71,10,f +985,6014b,71,2,f +985,6015,0,3,f +985,6019,4,6,f +985,6019,0,2,f +985,6111,71,6,f +985,6112,71,4,f +985,6141,47,6,f +985,6141,36,2,f +985,6141,14,1,f +985,6141,41,1,f +985,6141,0,4,f +985,6141,71,8,f +985,6178,71,2,f +985,6187,0,2,f +985,63965,15,3,f +985,6636,4,10,f +985,73590c02a,0,1,f +985,76041c02,0,1,f +985,92410,71,4,f +985,92410,4,4,f +985,970c00,4,3,f +985,973c02,4,1,f +985,973c31,4,2,f +986,11477,14,4,f +986,12825,14,1,f +986,14417,72,2,f +986,14419,72,2,f +986,14704,71,2,f +986,15208,15,1,f +986,3003,14,2,f +986,3023,14,7,f +986,3039,191,1,f +986,32474pr1001,15,2,f +986,3660,14,2,f +986,3937,14,1,f +986,4085c,72,2,f +986,44728,14,1,f +986,4740,14,3,f +986,47457,14,2,f +986,54200,191,12,f +986,54200,191,1,t +986,59233pat0001,41,1,f +986,60478,72,2,f +986,61252,14,2,f +986,6134,71,1,f +986,6141,14,2,f +986,6141,14,1,t +986,87087,14,2,f +986,87580,14,1,f +986,99207,71,3,f +987,2419,72,1,f +987,2421,0,2,f +987,2431,1,1,f +987,30162,72,1,f +987,3020,15,1,f +987,3020,25,1,f +987,30340,14,1,f +987,30407,15,2,f +987,3626cpr0282,14,1,f +987,3666,72,1,f +987,3710,15,1,f +987,3794b,15,2,f +987,3795,25,1,f +987,3829c01,1,1,f +987,44661,15,1,f +987,4488,71,2,f +987,48336,71,1,f +987,50304,15,1,f +987,50305,15,1,f +987,50950,25,2,f +987,54200,25,1,t +987,54200,25,2,f +987,60470a,15,1,f +987,6141,34,1,t +987,6141,46,2,f +987,6141,36,1,f +987,6141,36,1,t +987,6141,46,1,t +987,6141,34,1,f +987,76766,71,1,f +987,86035,1,1,f +987,970c00,1,1,f +987,973pr2334c01,71,1,f +987,97895,14,1,f +988,3004,1,16,f +988,3004,7,1,f +988,3005,1,2,f +988,3008,1,3,f +988,3009,1,7,f +988,3010,1,5,f +988,3037,4,12,f +988,3039,4,6,f +988,3039p34,7,1,f +988,3041,4,2,f +988,3043,4,1,f +988,3228b,7,4,f +988,3242,7,2,f +988,3624,1,1,f +988,3626apr0001,14,1,f +988,3778,2,1,f +988,3853,15,2,f +988,3854,15,4,f +988,3861b,15,1,f +988,4032a,14,4,f +988,4079,14,2,f +988,606p02,7,1,f +988,649p01,15,2,f +988,767,8,4,f +988,812,7,1,f +988,813,7,1,f +988,814,1,2,f +988,815,15,2,f +988,816,4,2,f +988,970c00,1,1,f +988,973c02,4,1,f +989,2357,0,1,f +989,3001,4,2,f +989,3003,0,3,f +989,3003,4,1,f +989,3004,15,1,f +989,3004p51,14,1,f +989,3005,4,3,f +989,3021,0,2,f +989,3022,15,3,f +989,3023,0,3,f +989,3024,15,4,f +989,3024,14,2,f +989,3039,15,1,f +989,3040b,4,3,f +989,3040b,0,1,f +989,3045,0,1,f +989,3665,4,2,f +989,3676,0,2,f +990,2825,71,1,f +990,32002,72,1,t +990,32002,72,1,f +990,32015,71,1,f +990,32062,4,2,f +990,41678,71,1,f +990,47297,27,2,f +990,54821,42,1,f +990,57585,71,6,f +990,60176,0,2,f +990,60896,0,2,f +990,60902,0,2,f +990,64262,57,1,f +990,64275,0,2,f +990,87082,71,1,f +990,87083,72,1,f +990,87794,0,1,f +990,87820,0,3,f +990,87823,27,1,f +990,87827,27,6,f +990,87839,0,2,f +993,32013,0,4,f +993,32014,0,4,f +993,32015,0,4,f +993,32016,0,4,f +993,32034,0,4,f +994,2412b,7,2,f +994,2412b,0,2,f +994,2412b,14,2,f +994,2412b,15,4,f +994,2419,4,1,f +994,2420,4,2,f +994,2431,4,2,f +994,2431,15,2,f +994,2432,7,2,f +994,2436,0,1,f +994,2436,14,1,f +994,2445,8,2,f +994,2456,4,2,f +994,2458,8,2,f +994,2540,0,2,f +994,2540,14,1,f +994,2877,8,2,f +994,2877,0,2,f +994,2877,4,1,f +994,298c02,14,2,f +994,3001,8,1,f +994,3001,4,3,f +994,3001,14,1,f +994,3001,0,2,f +994,3002,14,2,f +994,30027b,14,4,f +994,30028,0,4,f +994,3003,14,2,f +994,3003,4,1,f +994,3003,8,1,f +994,3004,8,2,f +994,3004,0,1,f +994,3004,4,6,f +994,3004,14,4,f +994,3005,14,2,f +994,3005,4,2,f +994,3006,4,1,f +994,3009,4,5,f +994,3010,4,8,f +994,3010,14,4,f +994,3010,8,2,f +994,30157,7,2,f +994,3020,0,4,f +994,3020,14,4,f +994,3020,15,2,f +994,3020,8,1,f +994,3020,4,3,f +994,3021,14,2,f +994,3021,4,5,f +994,3021,15,1,f +994,3021,0,2,f +994,3021,8,6,f +994,3022,8,4,f +994,3022,15,1,f +994,3022,14,2,f +994,3023,0,2,f +994,3023,8,11,f +994,3023,47,5,f +994,3023,15,4,f +994,3023,4,4,f +994,3024,4,4,f +994,3024,0,2,f +994,3024,46,4,f +994,3024,47,2,f +994,30285,15,10,f +994,3031,8,1,f +994,3033,8,2,f +994,3034,8,1,f +994,3034,0,1,f +994,3034,7,1,f +994,30363,4,1,f +994,30388,4,2,f +994,30389b,4,1,f +994,3039,47,2,f +994,3039,14,2,f +994,3039,4,2,f +994,30391,0,6,f +994,30395,8,1,f +994,30396,0,1,f +994,3040b,0,2,f +994,3040b,4,2,f +994,3040b,14,4,f +994,30414,8,3,f +994,30603,0,1,f +994,3062b,7,2,f +994,3062b,0,2,f +994,30648,0,4,f +994,3065,47,2,f +994,3068b,4,1,f +994,3068b,0,2,f +994,3069b,0,3,f +994,3176,0,2,f +994,3298,15,1,f +994,3460,14,2,f +994,3460,7,2,f +994,3622,4,4,f +994,3622,8,4,f +994,3622,14,2,f +994,3623,8,4,f +994,3623,14,2,f +994,3623,4,4,f +994,3641,0,8,f +994,3660,0,1,f +994,3660,8,2,f +994,3660,4,5,f +994,3665,4,6,f +994,3665,8,2,f +994,3666,4,2,f +994,3666,8,2,f +994,3666,7,5,f +994,3673,7,6,f +994,3679,7,3,f +994,3680,14,1,f +994,3680,4,2,f +994,3684,8,1,f +994,3702,0,2,f +994,3710,4,4,f +994,3710,7,4,f +994,3710,8,1,f +994,3710,14,4,f +994,3710,0,2,f +994,3730,0,1,f +994,3731,0,1,f +994,3747b,4,2,f +994,3788,14,3,f +994,3794a,0,2,f +994,3794a,4,2,f +994,3794a,15,1,f +994,3795,7,1,f +994,3795,8,3,f +994,3795,4,3,f +994,3795,15,1,f +994,3823,47,2,f +994,3832,8,2,f +994,3832,4,2,f +994,3937,0,2,f +994,3937,4,2,f +994,3938,14,2,f +994,3941,7,3,f +994,3942b,7,1,f +994,3957a,0,2,f +994,4032a,0,1,f +994,4032a,8,1,f +994,4070,14,4,f +994,4070,0,2,f +994,4070,8,2,f +994,4081b,4,2,f +994,4081b,14,4,f +994,4081b,0,2,f +994,4085c,0,2,f +994,41767,4,1,f +994,41768,4,1,f +994,41769,4,1,f +994,41769,14,1,f +994,41770,14,1,f +994,41770,4,1,f +994,41855,14,2,f +994,41862,8,2,f +994,42023,4,2,f +994,4274,7,3,f +994,4282,8,2,f +994,4286,15,2,f +994,4286,14,4,f +994,4286,4,4,f +994,4287,4,2,f +994,43710,4,1,f +994,43710,15,1,f +994,43711,15,1,f +994,43711,4,1,f +994,43719,14,1,f +994,43719,4,1,f +994,43720,4,2,f +994,43721,4,2,f +994,43722,4,1,f +994,43723,4,1,f +994,44126,15,1,f +994,44661,15,1,f +994,4477,7,2,f +994,4589,0,5,f +994,4600,0,4,f +994,4623,0,1,f +994,4624,14,8,f +994,4733,7,2,f +994,4865a,0,4,f +994,6014b,14,4,f +994,6015,0,4,f +994,6134,15,2,f +994,6141,46,3,f +994,6141,14,3,f +994,6141,36,12,f +994,6141,0,6,f +994,6141,4,6,f +994,6141,7,5,f +994,6141,47,6,f +994,6157,8,4,f +994,6215,4,1,f +994,6231,0,4,f +994,6238,47,1,f +994,6249,8,3,f +994,6564,4,1,f +994,6565,4,1,f +995,2357,72,2,f +995,2412b,4,7,f +995,2419,0,1,f +995,2431,72,4,f +995,2444,4,2,f +995,2445,0,4,f +995,2456,72,10,f +995,2460,72,2,f +995,2540,71,3,f +995,2540,0,2,f +995,2730,0,3,f +995,2780,0,3,t +995,2780,0,30,f +995,2817,71,15,f +995,298c02,15,2,f +995,298c02,71,2,t +995,298c02,15,1,t +995,298c02,71,2,f +995,30000,72,2,f +995,3001,72,2,f +995,3003,72,13,f +995,3004,4,6,f +995,3004,72,3,f +995,3009,0,1,f +995,3009,72,5,f +995,3020,72,6,f +995,3021,71,6,f +995,3022,19,9,f +995,3023,4,10,f +995,3027,0,2,f +995,3028,0,1,f +995,3029,0,2,f +995,3032,72,1,f +995,3033,0,1,f +995,3034,0,1,f +995,30365,72,6,f +995,30374,36,1,f +995,3039,0,7,f +995,3040b,72,4,f +995,3048c,0,1,f +995,30552,71,8,f +995,30553,72,5,f +995,30663,71,5,f +995,3176,72,1,f +995,32000,0,4,f +995,32000,71,2,f +995,32013,4,8,f +995,32013,0,1,f +995,32054,4,11,f +995,32062,4,8,f +995,32064b,71,7,f +995,32064b,72,2,f +995,32073,71,1,f +995,32174,72,2,f +995,32174,0,2,f +995,32192,0,4,f +995,32316,71,1,f +995,32348,4,5,f +995,32476,0,4,f +995,32506,15,2,f +995,32524,72,3,f +995,32525,0,2,f +995,32534,0,1,f +995,32535,0,1,f +995,3403c01,0,1,f +995,3460,71,2,f +995,3622,4,2,f +995,3666,72,8,f +995,3678b,72,4,f +995,3684,72,2,f +995,3700,72,11,f +995,3701,71,6,f +995,3705,0,1,f +995,3710,0,1,f +995,3713,71,2,f +995,3713,71,1,t +995,3737,0,1,f +995,3747b,0,5,f +995,3794a,71,6,f +995,3795,0,13,f +995,3894,0,4,f +995,3941,71,1,f +995,3960,57,1,f +995,4032a,4,4,f +995,40378,0,6,f +995,40379,0,6,f +995,40395,0,4,f +995,4151b,0,2,f +995,41532,0,4,f +995,4162,72,4,f +995,41677,4,8,f +995,41881,36,1,f +995,42003,0,2,f +995,42074,135,2,f +995,4274,1,5,f +995,4274,1,2,t +995,4282,0,1,f +995,4287,72,6,f +995,43093,1,7,f +995,43121,0,1,f +995,43936,0,3,f +995,44126,0,4,f +995,44301a,71,4,f +995,44302a,72,6,f +995,44375a,41,1,f +995,44375a,71,2,f +995,44567a,72,1,f +995,4477,0,3,f +995,44813,179,2,f +995,4519,71,5,f +995,4589,15,2,f +995,46667,72,1,f +995,4733,0,3,f +995,47457,72,1,f +995,48183,72,1,f +995,50914,135,6,f +995,50923,72,1,f +995,53451,15,3,t +995,53451,15,18,f +995,53550,148,2,f +995,53586,135,1,f +995,53989,148,5,f +995,54200,72,4,f +995,54821,182,6,f +995,55236,320,1,t +995,55236,21,4,f +995,55236,320,4,f +995,55236,21,1,t +995,55237a,135,1,f +995,55237b,135,1,f +995,55237c,135,1,f +995,55237d,135,1,f +995,55237e,135,1,f +995,55237f,135,1,f +995,55237g,135,1,f +995,55237h,135,1,f +995,55237i,135,1,f +995,55237j,135,1,f +995,55237k,135,1,f +995,55237l,135,1,f +995,55706pat0002,0,2,f +995,57523c01,135,1,f +995,57525,4,18,f +995,57539,4,3,f +995,57548pat0001,15,1,f +995,57551,15,1,f +995,57554,135,2,f +995,57554,15,1,f +995,57555,46,5,f +995,57563,135,11,f +995,57564,0,2,f +995,57565,135,2,f +995,57566pat0001,15,2,f +995,57587,0,2,f +995,57908,72,1,f +995,57909a,72,4,f +995,57910,72,8,f +995,58176,36,4,f +995,59814,0,1,f +995,6111,0,2,f +995,6140,71,2,f +995,6141,57,1,t +995,6141,57,4,f +995,6232,71,4,f +995,6541,0,2,f +995,6558,0,9,f +995,6587,72,2,f +995,6632,0,2,f +997,2432,4,1,f +997,2446,0,1,f +997,2625,0,1,f +997,298c02,4,2,f +997,298c02,4,1,t +997,30121,0,1,f +997,30359a,8,2,f +997,30407,4,2,f +997,30552,8,2,f +997,3626bpx40,14,1,f +997,3673,7,1,t +997,3673,7,1,f +997,3795,7,1,f +997,3956,0,1,f +997,4083,7,2,f +997,4285b,36,1,f +997,4617b,0,1,f +997,4740,57,2,f +997,6126a,57,2,f +997,6140,0,2,f +997,769,334,1,f +997,970c00,0,1,f +997,973c14,0,1,f +998,193au,15,2,f +998,21,47,1,f +998,3001a,4,2,f +998,3001a,0,7,f +998,3003,15,3,f +998,3003,4,5,f +998,3004,14,2,f +998,3004,0,16,f +998,3004,4,34,f +998,3004,15,3,f +998,3005,0,5,f +998,3005,4,12,f +998,3008,0,2,f +998,3008,4,2,f +998,3009,0,16,f +998,3009,47,2,f +998,3009,4,7,f +998,3010,4,9,f +998,3010,0,9,f +998,3020,15,8,f +998,3020,14,1,f +998,3020,0,2,f +998,3022,15,5,f +998,3023,15,1,f +998,3024,4,4,f +998,3027,0,2,f +998,3028,0,1,f +998,3030,0,1,f +998,3031,4,1,f +998,3033,0,1,f +998,3034,15,3,f +998,3035,15,1,f +998,3036,0,1,f +998,3039,15,4,f +998,3039,4,3,f +998,3039,47,2,f +998,3040b,0,14,f +998,3062a,34,3,f +998,3062a,36,3,f +998,3069b,15,12,f +998,3081cc01,14,8,f +998,3144,79,1,f +998,3183a,15,1,f +998,3184,15,1,f +998,3359,0,1,f +998,3460,7,4,f +998,3461,7,1,f +998,3462,15,1,f +998,3475b,7,8,f +998,3480,7,4,f +998,3481,4,4,f +998,3579,4,1,f +998,3596,15,1,f +998,3624,15,3,f +998,3626apr0001,14,5,f +998,3633,14,14,f +998,3645p02,1,1,f +998,3659,4,2,f +998,3660,15,7,f +998,3660,4,8,f +998,3838,7,1,f +998,420,14,1,f +998,7930,14,1,f +998,970c00,15,5,f +998,973c07,1,5,f +1000,2412b,15,3,f +1000,2412b,4,2,f +1000,2421,0,1,f +1000,2431,15,1,f +1000,2432,15,1,f +1000,2436,0,2,f +1000,2437,41,1,f +1000,2446,15,2,f +1000,2447,41,2,f +1000,2460,7,1,f +1000,2479,0,1,f +1000,2540,7,1,f +1000,2540,4,1,f +1000,298c02,4,4,f +1000,3004,15,1,f +1000,3010,0,3,f +1000,3020,0,3,f +1000,3020,15,2,f +1000,3021,0,1,f +1000,3021,15,1,f +1000,3021,4,1,f +1000,3022,0,3,f +1000,3023,0,5,f +1000,3023,4,2,f +1000,3023,15,2,f +1000,3024,0,1,f +1000,3024,15,2,f +1000,3024,33,1,f +1000,3024,36,5,f +1000,3034,4,1,f +1000,3037,0,1,f +1000,3069b,0,1,f +1000,3069bpr0016,15,5,f +1000,3070b,15,1,f +1000,3070b,46,4,f +1000,3070b,36,2,f +1000,3070b,33,2,f +1000,3070b,0,2,f +1000,3176,0,1,f +1000,3460,15,1,f +1000,3464,47,2,f +1000,3623,15,3,f +1000,3623,4,2,f +1000,3626bp03,14,1,f +1000,3626bp04,14,2,f +1000,3626bpx11,14,1,f +1000,3641,0,2,f +1000,3666,15,5,f +1000,3666,0,2,f +1000,3710,0,5,f +1000,3710,15,2,f +1000,3747b,15,1,f +1000,3788,0,1,f +1000,3788,15,1,f +1000,3794a,0,2,f +1000,3795,0,1,f +1000,3821,0,1,f +1000,3822,0,1,f +1000,3823,41,1,f +1000,3829c01,4,2,f +1000,3832,7,1,f +1000,3901,0,2,f +1000,3937,7,1,f +1000,3938,0,1,f +1000,4033,0,2,f +1000,4070,15,4,f +1000,4083,7,1,f +1000,4211,0,1,f +1000,4213,15,2,f +1000,4315,0,1,f +1000,4480c01,15,1,f +1000,4488,15,1,f +1000,4600,7,2,f +1000,4625,15,1,f +1000,4859,15,2,f +1000,4864a,41,1,f +1000,4864a,0,2,f +1000,4865a,7,2,f +1000,6014a,15,4,f +1000,6014a,14,4,f +1000,6015,0,8,f +1000,6016,7,2,f +1000,6140,0,2,f +1000,6141,46,1,t +1000,6141,36,2,f +1000,6141,7,2,f +1000,6141,33,1,f +1000,6141,46,3,f +1000,6141,33,1,t +1000,6141,1,8,f +1000,6157,0,2,f +1000,970c00,15,1,f +1000,970c00,0,3,f +1000,973pr0145c01,15,1,f +1000,973px20c01,0,1,f +1000,973px9c01,0,2,f +1001,2780,0,1,f +1001,32002,72,1,t +1001,32002,72,2,f +1001,32062,0,4,f +1001,32173,73,2,f +1001,32174,73,4,f +1001,3673,71,2,f +1001,41669,57,2,f +1001,41678,0,1,f +1001,41752,72,1,f +1001,43093,1,4,f +1001,44809,71,1,f +1001,4519,71,2,f +1001,45749,272,2,f +1001,47296,272,1,f +1001,47299,272,2,f +1001,47330,272,1,f +1001,50858,272,4,f +1001,50898,73,2,f +1001,50899,179,1,f +1001,50899pr0002,179,1,f +1001,50900,0,1,f +1001,50901,72,1,f +1001,50903,14,1,f +1001,50904,71,1,f +1001,50905,272,1,f +1001,50906,179,2,f +1001,rb00167,14,1,f +1001,rb00167,14,1,t +1002,2412b,71,4,f +1002,2412b,72,3,f +1002,2540,0,6,f +1002,2555,71,1,f +1002,2569,0,1,f +1002,2654,1,5,f +1002,2780,0,1,t +1002,2780,0,10,f +1002,298c02,71,1,t +1002,298c02,71,1,f +1002,3002,73,1,f +1002,30031,72,1,f +1002,3004,71,1,f +1002,3020,0,3,f +1002,3020,72,2,f +1002,3021,25,2,f +1002,3022,0,2,f +1002,3023,27,1,f +1002,3023,4,2,f +1002,3024,72,1,f +1002,30332,135,1,f +1002,3048c,25,2,f +1002,30663,0,2,f +1002,3068b,71,1,f +1002,3068b,72,2,f +1002,3069b,71,1,f +1002,3069bpr0100,2,3,f +1002,3069bpr0101,71,1,f +1002,3070b,46,2,f +1002,3070b,46,1,t +1002,3139,0,2,f +1002,32000,72,4,f +1002,32001,0,1,f +1002,32013,0,1,f +1002,32013,71,2,f +1002,32034,71,1,f +1002,32054,0,2,f +1002,32062,4,2,f +1002,32064b,0,4,f +1002,32073,71,1,f +1002,32123b,14,1,t +1002,32123b,14,3,f +1002,32192,0,2,f +1002,32270,0,4,f +1002,3245b,71,2,f +1002,32531,71,1,f +1002,3460,0,3,f +1002,3623,72,1,f +1002,3626bpr0540,14,1,f +1002,3626bpr0585,14,1,f +1002,3626bpr0586,14,1,f +1002,3660,25,9,f +1002,3700,71,1,f +1002,3702,0,3,f +1002,3705,0,2,f +1002,3710,73,2,f +1002,3710,25,2,f +1002,3713,71,1,t +1002,3713,71,4,f +1002,3794b,72,3,f +1002,3795,25,6,f +1002,3830,71,1,f +1002,3831,71,1,f +1002,3937,0,1,f +1002,3941,25,2,f +1002,3941,27,2,f +1002,4032a,2,2,f +1002,4070,0,1,f +1002,4150,27,2,f +1002,41854,73,1,f +1002,4274,1,1,f +1002,4274,1,1,t +1002,43093,1,4,f +1002,43713,71,1,f +1002,4519,71,1,f +1002,4589,4,2,f +1002,47406,25,2,f +1002,47753,272,1,f +1002,4865a,71,4,f +1002,4871,71,2,f +1002,54200,25,1,t +1002,54200,25,2,f +1002,59443,71,1,f +1002,6019,0,2,f +1002,60475a,0,1,f +1002,60479,71,1,f +1002,60849,82,1,f +1002,6091,72,2,f +1002,61072,135,1,f +1002,61184,71,2,f +1002,6134,71,1,f +1002,61409,27,2,f +1002,6232,72,2,f +1002,62711,4,1,f +1002,62810,484,1,f +1002,64728,4,1,f +1002,64798,2,1,f +1002,6541,71,2,f +1002,6553,0,2,f +1002,6587,72,1,f +1002,6636,272,2,f +1002,73983,72,1,f +1002,75c23,148,1,f +1002,85961pr01,72,1,f +1002,970c00,0,2,f +1002,970c00pr0118,272,1,f +1002,973pr1386c01,272,1,f +1002,973pr1508c01,0,1,f +1002,973pr1510c01,0,1,f +1003,2412b,71,1,f +1003,2412b,25,1,f +1003,2432,4,1,f +1003,2436,4,1,f +1003,298c02,4,2,f +1003,298c02,4,1,t +1003,30027b,71,4,f +1003,30028,0,4,f +1003,3020,4,1,f +1003,3020,0,1,f +1003,3021,0,2,f +1003,3022,25,2,f +1003,3023,0,2,f +1003,3023,4,4,f +1003,3024,46,2,f +1003,30602,40,1,f +1003,3069b,25,2,f +1003,3710,4,2,f +1003,3788,4,2,f +1003,4081b,4,2,f +1003,4600,71,2,f +1003,47674,36,1,f +1003,47675,25,1,f +1003,47676,25,1,f +1003,54200,25,2,f +1003,54200,36,2,f +1003,54200,4,6,f +1003,6019,4,2,f +1003,6141,0,2,f +1003,6141,0,1,t +1004,4697a,7,4,f +1004,5102c128,0,1,f +1004,5102c76,7,1,f +1006,3830,7,4,f +1006,3831,7,4,f +1006,3937,7,4,f +1006,3938,7,4,f +1008,2335,1,2,f +1008,2343,14,1,f +1008,2431,0,1,f +1008,2445,0,1,f +1008,2488,0,1,f +1008,251,0,1,f +1008,2540,0,2,f +1008,2586p4d,15,1,f +1008,2926,0,1,f +1008,3001,0,1,f +1008,3002,0,1,f +1008,3004,0,2,f +1008,3004,15,2,f +1008,3004,1,2,f +1008,3010,1,4,f +1008,3020,0,1,f +1008,3020,14,1,f +1008,3020,15,1,f +1008,3020,1,1,f +1008,3021,1,1,f +1008,3021,0,1,f +1008,3022,1,1,f +1008,3022,0,2,f +1008,3023,0,1,f +1008,3023,15,2,f +1008,3023,1,1,f +1008,3024,1,4,f +1008,3024,14,4,f +1008,3031,1,1,f +1008,3031,0,2,f +1008,3040b,1,4,f +1008,3068b,0,1,f +1008,3626bpr0001,14,3,f +1008,3626bpx122,14,1,f +1008,3659,0,2,f +1008,3660,1,1,f +1008,3660,0,1,f +1008,3665,1,4,f +1008,3679,7,2,f +1008,3680,0,1,f +1008,3710,14,2,f +1008,3794a,4,2,f +1008,3846p4d,15,3,f +1008,3847,8,2,f +1008,3849,15,2,f +1008,3896,0,3,f +1008,4070,1,2,f +1008,4081b,0,2,f +1008,4085c,14,4,f +1008,4213,0,1,f +1008,4315,0,1,f +1008,4488,0,2,f +1008,4489,6,4,f +1008,4504,1,1,f +1008,4507,1,1,f +1008,4738a,6,1,f +1008,4739a,6,1,f +1008,4865a,0,2,f +1008,4865a,4,1,f +1008,59,383,2,f +1008,6087,1,2,f +1008,6126a,57,2,f +1008,6141,36,1,t +1008,6141,46,2,f +1008,6141,46,1,t +1008,6141,36,2,f +1008,71015,334,1,f +1008,75998pr0007,15,2,f +1008,87692,15,1,f +1008,87693,15,1,t +1008,87694,15,1,t +1008,970x026,15,4,f +1008,973p41c02,4,3,f +1008,973p4ec01,4,1,f +1008,x560px1,15,1,f +1010,4274,7,10,f +1010,6643,8,12,f +1010,6644,0,2,f +1010,75c05,8,1,f +1010,75c06,8,1,f +1010,75c10,8,1,f +1010,75c14,8,1,f +1010,75c16,8,1,f +1010,flex08c09l,7,1,f +1010,flex08c11l,7,2,f +1010,flex08c15l,7,1,f +1010,flex08c19l,7,1,f +1010,flex08c20l,7,1,f +1011,30132,8,1,f +1011,30132,8,1,t +1011,3626bpx127,14,1,f +1011,3878,0,1,f +1011,970c00,8,1,f +1011,973px181c01,0,1,f +1012,2484c01,4,2,f +1012,6014,15,4,f +1012,6015,0,4,f +1013,2397,1,1,f +1013,2412b,42,2,f +1013,2432,0,1,f +1013,2432,1,1,f +1013,2436,1,1,f +1013,2445,8,2,f +1013,2593,1,2,f +1013,2607,8,1,f +1013,30121,0,1,f +1013,3020,0,2,f +1013,3020,1,1,f +1013,30208,34,2,f +1013,30209,1,2,f +1013,3021,8,1,f +1013,30211,8,4,f +1013,30213,42,1,f +1013,30214,34,1,f +1013,3023,0,1,f +1013,3034,8,2,f +1013,3039,8,2,f +1013,3068bpx7,0,1,f +1013,3298pb005,8,1,f +1013,3626bpx175,8,1,f +1013,3641,0,2,f +1013,3700,1,1,f +1013,3710,1,1,f +1013,3747a,8,1,f +1013,3839b,1,1,f +1013,3937,1,1,f +1013,3938,0,1,f +1013,4360,0,1,f +1013,4589,42,1,f +1013,4624,1,2,f +1013,6048a,0,1,f +1013,6141,42,1,t +1013,6141,42,2,f +1013,6157,0,1,f +1013,6217,0,1,f +1013,6232,1,2,f +1013,6837stk01,9999,2,t +1013,6919,42,1,f +1013,73092,0,1,f +1013,970x027,0,1,f +1013,973pb0037c01,8,1,f +1015,10928,72,2,f +1015,15619,1,1,f +1015,2530,8,1,f +1015,30173b,179,1,f +1015,3626cpr1367,14,1,f +1015,62810,484,1,f +1015,64567,297,1,f +1015,87994,297,1,f +1015,88290,308,1,f +1015,92338,297,1,f +1015,970c00pr0774,1,1,f +1015,973pr2855c01,1,1,f +1015,98139,297,1,f +1016,11211,19,3,f +1016,11477,15,2,f +1016,11477,71,4,f +1016,15573,71,1,f +1016,2540,25,1,f +1016,3004,15,3,f +1016,3004,71,2,f +1016,3020,71,1,f +1016,3021,19,3,f +1016,3022,19,4,f +1016,3023,71,11,f +1016,3023,25,1,f +1016,3023,15,4,f +1016,3034,71,1,f +1016,30367b,25,1,f +1016,30367b,15,1,f +1016,3039,71,6,f +1016,3069b,72,4,f +1016,33183,10,1,t +1016,33183,10,1,f +1016,3623,19,2,f +1016,3666,71,3,f +1016,3705,0,1,f +1016,3710,19,1,f +1016,3747b,71,2,f +1016,3795,19,1,f +1016,3941,25,2,f +1016,3942c,25,1,f +1016,4032a,25,1,f +1016,48336,19,2,f +1016,50950,15,2,f +1016,50950,71,2,f +1016,54200,15,3,f +1016,54200,15,1,t +1016,54200,71,4,f +1016,54200,71,1,t +1016,60470a,71,2,f +1016,61252,72,2,f +1016,6141,29,1,t +1016,6141,29,1,f +1016,6215,71,2,f +1016,73983,72,2,f +1016,85984,71,7,f +1016,93274,71,1,f +1016,93606,71,2,f +1016,98138pr0008,15,2,f +1016,98138pr0008,15,1,t +1016,99206,71,4,f +1018,2335,72,2,f +1018,2343,0,2,f +1018,2345,71,2,f +1018,2357,71,10,f +1018,2431,0,1,f +1018,2446,320,1,f +1018,2446,4,1,f +1018,2453a,71,2,f +1018,2454a,288,2,f +1018,2454a,71,9,f +1018,2456,0,1,f +1018,2489,70,1,f +1018,2540,72,1,f +1018,2555,71,2,f +1018,2566,0,2,f +1018,2570,70,2,f +1018,2586pr0002,71,1,f +1018,2586px18,71,1,f +1018,2587pr0011,297,1,f +1018,2587pr0012,0,1,f +1018,2587pr0013,4,1,f +1018,2587pr0016,0,1,f +1018,2654,0,2,f +1018,2730,0,3,f +1018,3003,71,4,f +1018,3003,72,1,f +1018,3004,71,24,f +1018,3004,72,6,f +1018,3004,15,1,f +1018,30045,0,2,f +1018,3005,0,1,f +1018,3005,71,6,f +1018,3005,72,2,f +1018,3008,0,1,f +1018,3010,72,2,f +1018,3010,71,1,f +1018,30104,72,1,f +1018,30165,0,2,f +1018,3020,72,3,f +1018,3020,70,1,f +1018,30208,61,1,f +1018,30209,72,1,f +1018,3022,71,1,f +1018,30223,0,2,f +1018,30236,72,1,f +1018,30237a,71,2,f +1018,30238,0,1,f +1018,30240,15,1,f +1018,30246,71,1,f +1018,30275,70,1,f +1018,3029,288,5,f +1018,3030,0,2,f +1018,3030,72,3,f +1018,3030,71,1,f +1018,3033,71,2,f +1018,3034,0,1,f +1018,3036,0,3,f +1018,30374,70,1,f +1018,30383,72,2,f +1018,3039,71,1,f +1018,3039,72,3,f +1018,3040b,71,3,f +1018,3040b,72,4,f +1018,3048c,297,13,f +1018,30526,72,2,f +1018,30553,0,4,f +1018,3062b,0,5,f +1018,3062b,57,6,f +1018,3069b,15,1,f +1018,32062,4,2,f +1018,32064b,0,1,f +1018,32123b,71,2,f +1018,32123b,71,1,t +1018,32524,0,1,f +1018,32530,0,4,f +1018,32556,71,2,f +1018,3307,0,2,f +1018,3308,71,2,f +1018,3308,72,3,f +1018,3403,71,1,f +1018,3404,71,1,f +1018,3455,71,1,f +1018,3455,72,2,f +1018,3581,71,2,f +1018,3622,71,2,f +1018,3622,72,8,f +1018,3623,70,8,f +1018,3626bpr0251,14,1,f +1018,3626bpr0350,14,1,f +1018,3626bpr0353,14,1,f +1018,3626bpr0435,14,1,f +1018,3626bpr0459,14,1,f +1018,3626bpr0895,15,1,f +1018,3647,71,1,f +1018,3647,71,1,t +1018,3659,71,4,f +1018,3660,71,2,f +1018,3660,72,6,f +1018,3665,0,1,f +1018,3665,72,2,f +1018,3666,72,1,f +1018,3675,0,2,f +1018,3684,71,2,f +1018,3684,72,4,f +1018,3688,379,2,f +1018,3700,71,1,f +1018,3701,288,2,f +1018,3705,0,1,f +1018,3710,70,2,f +1018,3710,72,1,f +1018,3710,0,2,f +1018,3713,71,1,f +1018,3713,71,1,t +1018,3737,0,1,f +1018,3747a,72,1,f +1018,3749,19,2,f +1018,3794a,72,2,f +1018,3795,70,1,f +1018,3795,288,1,f +1018,3795,72,2,f +1018,3832,72,1,f +1018,3846pb23,71,1,f +1018,3846pr21,297,1,f +1018,3846pr22,297,1,f +1018,3848,0,2,f +1018,3849,0,2,f +1018,3937,71,1,f +1018,3938,0,1,f +1018,3941,57,2,f +1018,40241,70,1,f +1018,40242,71,1,f +1018,41530,71,1,f +1018,41669,135,2,f +1018,4185,70,2,f +1018,4274,71,1,t +1018,4274,71,2,f +1018,4286,72,2,f +1018,4287,71,3,f +1018,43888,72,4,f +1018,43899,72,2,f +1018,44294,71,1,f +1018,44567a,72,2,f +1018,4460a,71,2,f +1018,4460a,72,9,f +1018,4477,70,2,f +1018,4491b,72,1,f +1018,4519,71,2,f +1018,4522,0,1,f +1018,4589,71,2,f +1018,4738a,70,1,f +1018,4739a,70,1,f +1018,47847pat0003,135,4,f +1018,48336,71,2,f +1018,48487,76,1,f +1018,48489,132,1,f +1018,48490,71,1,f +1018,48492,272,1,f +1018,48493,75,1,f +1018,48495,135,1,f +1018,48495,0,1,f +1018,48495,178,2,f +1018,48495,320,1,f +1018,4865a,0,4,f +1018,48723,70,1,f +1018,49668,135,10,f +1018,50231,4,1,f +1018,50231,0,1,f +1018,50687,71,1,f +1018,53456,135,2,f +1018,54177,135,1,f +1018,57503,334,2,f +1018,57504,334,2,f +1018,57505,334,2,f +1018,57506,334,2,f +1018,6020,0,3,f +1018,6066,72,2,f +1018,6066,71,2,f +1018,6108,71,2,f +1018,6111,72,1,f +1018,6111,71,3,f +1018,6112,72,2,f +1018,6123,72,2,f +1018,6126a,57,6,f +1018,6132,71,1,f +1018,6141,0,1,t +1018,6141,0,2,f +1018,6222,70,2,f +1018,6260,15,1,f +1018,6265,15,1,t +1018,6265,15,2,f +1018,6266,15,2,f +1018,6266,15,1,t +1018,63965,0,1,f +1018,6541,0,2,f +1018,6553,0,2,f +1018,6587,72,2,f +1018,6629,0,2,f +1018,6636,72,1,f +1018,71015,334,1,f +1018,75998pr0007,15,1,f +1018,8823stk01,9999,1,t +1018,970c00,70,1,f +1018,970c00,4,1,f +1018,970c00,379,1,f +1018,970x154,0,1,f +1018,970x194,15,1,f +1018,973c32,70,1,f +1018,973c45,0,1,f +1018,973c46,0,1,f +1018,973c47,71,2,f +1019,1850pr0001,15,1,f +1019,1850pr0002,15,1,f +1019,1851pr0001,15,1,f +1019,1852pr0004,15,1,f +1019,1853pr0001,15,1,f +1019,747p01c01,15,1,f +1019,747p03c01,15,1,f +1019,747pb01c01,15,1,t +1019,747pb02c01,15,1,f +1019,747pb03c01,15,1,f +1019,747pb05c01,15,1,f +1019,747pb06c01,15,1,f +1019,bb131pb03c01,15,1,t +1019,bb134pb01c01,15,1,f +1019,bb134pb02c01,15,1,t +1019,bb139pb02c01,15,1,f +1019,bb140pb01c01,15,1,f +1019,bb140pb02c01,15,1,t +1019,bb140pb04c01,15,1,f +1019,bb140pb06c01,15,1,f +1019,bb140pb07c01,15,1,t +1021,2412b,297,2,f +1021,2431,320,1,f +1021,2432,70,4,f +1021,2454a,19,4,f +1021,3001,15,1,f +1021,3004,19,10,f +1021,3007,0,2,f +1021,3008,19,8,f +1021,30115,4,5,f +1021,30115,2,5,f +1021,30137,19,7,f +1021,30153,33,1,f +1021,3020,19,1,f +1021,3020,70,2,f +1021,3022,14,3,f +1021,3022,0,2,f +1021,3023,0,2,f +1021,3023,14,2,f +1021,30237a,72,2,f +1021,3028,28,2,f +1021,3032,19,3,f +1021,3033,0,1,f +1021,30374,14,2,f +1021,3039,0,6,f +1021,3040b,19,8,f +1021,3062b,320,12,f +1021,3062b,272,6,f +1021,3068b,28,6,f +1021,32000,19,10,f +1021,32062,4,4,f +1021,32064b,0,8,f +1021,32123b,14,1,t +1021,32123b,14,4,f +1021,32474,4,2,f +1021,3297,0,3,f +1021,3298,4,1,f +1021,33172,308,2,f +1021,3626bpr0190,15,1,f +1021,3626bpr0516a,78,1,f +1021,3626bpr0519,78,1,f +1021,3660,0,2,f +1021,3665,19,2,f +1021,3666,0,2,f +1021,3673,71,1,t +1021,3673,71,4,f +1021,3684,0,2,f +1021,3737,0,2,f +1021,3794a,4,7,f +1021,3794a,297,2,f +1021,3832,19,2,f +1021,3941,19,20,f +1021,4032a,70,2,f +1021,4274,1,2,f +1021,4274,1,1,t +1021,4286,0,6,f +1021,43899,72,2,f +1021,4510,0,2,f +1021,45590,0,2,f +1021,4623,71,1,f +1021,47457,297,4,f +1021,48336,19,6,f +1021,48729a,0,4,f +1021,49668,0,6,f +1021,53989,0,4,f +1021,54200,1,4,f +1021,59230,15,2,f +1021,59230,15,1,t +1021,59349,19,3,f +1021,59363,0,1,f +1021,59426,72,2,f +1021,60115,15,1,f +1021,60169,72,1,f +1021,6019,297,6,f +1021,6126a,182,2,f +1021,6141,297,1,t +1021,6141,297,2,f +1021,61506,70,1,f +1021,6179,71,1,f +1021,6182,19,1,f +1021,61975,70,1,f +1021,61976,70,1,f +1021,62363,28,1,f +1021,6266,15,2,f +1021,63965,70,2,f +1021,6541,0,4,f +1021,6636,28,2,f +1021,7621stk01,9999,1,t +1021,970c00,15,1,f +1021,973pr1370c01,308,1,f +1021,973pr1373c01,15,1,f +1021,973pr1375c01,19,1,f +1022,2730,4,3,f +1022,3004,14,4,f +1022,3020,14,6,f +1022,3022,4,2,f +1022,3023,4,6,f +1022,3040b,14,4,f +1022,3065,41,1,f +1022,3068b,4,2,f +1022,32009,14,4,f +1022,32013,14,4,f +1022,32065,14,2,f +1022,3460,4,1,f +1022,3623,14,2,f +1022,3665,4,2,f +1022,3665,14,4,f +1022,3700,14,4,f +1022,3700,4,7,f +1022,3702,4,3,f +1022,3703,4,2,f +1022,3832,4,2,f +1022,3894,4,3,f +1022,3895,4,2,f +1022,4589,14,2,f +1022,71509,0,2,f +1022,75c20,14,2,f +1022,85546,14,3,f +1023,4186,71,1,f +1024,3004,15,1,f +1024,3005,322,1,f +1024,3021,85,1,f +1024,3021,322,1,f +1024,3794a,15,1,f +1024,4345b,15,1,f +1024,4346,47,1,f +1024,6141,0,1,t +1024,6141,0,5,f +1024,87087,15,1,f +1025,14226c21,0,1,f +1025,14226c41,0,1,f +1025,2375,0,1,f +1025,2450,0,2,f +1025,2489,6,2,f +1025,2526,6,1,f +1025,2527,6,1,f +1025,2528pb01,0,1,f +1025,2530,8,3,f +1025,2538,0,1,f +1025,2543,4,1,f +1025,2544,6,1,f +1025,2555,0,2,f +1025,2562,6,1,f +1025,2566,0,1,f +1025,3001,7,2,f +1025,3003,0,1,f +1025,30033,4,1,f +1025,3004,4,2,f +1025,30043,0,2,f +1025,3008,0,1,f +1025,3008,7,1,f +1025,3008,4,2,f +1025,3010,0,5,f +1025,3020,0,1,f +1025,3020,4,1,f +1025,3021,4,1,f +1025,3022,0,1,f +1025,3023,7,2,f +1025,3023,4,1,f +1025,3024,14,2,f +1025,3024,4,4,f +1025,3024,0,1,f +1025,3031,7,1,f +1025,3032,0,1,f +1025,3036,0,1,f +1025,3062b,14,4,f +1025,3062b,7,6,f +1025,3062b,36,1,f +1025,3068b,4,1,f +1025,3068bp30,15,1,f +1025,3184,0,2,f +1025,3455,7,1,f +1025,3460,0,4,f +1025,3626bp40,14,1,f +1025,3626bp47,14,1,f +1025,3626bpr0895,15,1,f +1025,3626bpx108,14,1,f +1025,3660,4,2,f +1025,3666,0,2,f +1025,3700,7,1,f +1025,3710,7,4,f +1025,3710,4,1,f +1025,3710,0,6,f +1025,3747b,4,2,f +1025,3794a,14,2,f +1025,3849,0,1,f +1025,4032a,6,2,f +1025,4032a,0,1,f +1025,4070,4,2,f +1025,4081b,0,2,f +1025,4085c,14,2,f +1025,4085c,0,1,f +1025,4276b,0,1,f +1025,4286,0,4,f +1025,4319,0,1,f +1025,4507,7,1,f +1025,4589,4,5,f +1025,4623,0,1,f +1025,476,4,1,f +1025,4790,6,1,f +1025,57503,334,1,f +1025,57504,334,1,f +1025,57505,334,1,f +1025,57506,334,1,f +1025,6051c04,0,1,f +1025,6053c04,0,1,f +1025,6067,0,1,f +1025,6091,4,7,f +1025,6091,14,1,f +1025,6107,0,2,f +1025,6141,4,1,t +1025,6141,15,1,t +1025,6141,14,1,f +1025,6141,4,4,f +1025,6141,14,1,t +1025,6141,15,2,f +1025,84943,8,1,f +1025,970c00,0,1,f +1025,970c00,4,1,f +1025,970d01,0,1,f +1025,973p36c01,0,1,f +1025,973p38c01,15,1,f +1025,973p3cc01,15,1,f +1025,sailbb18,15,1,f +1025,x376px4,0,1,f +1026,3001a,47,2,f +1026,3001a,0,6,f +1026,3001a,4,12,f +1026,3001a,1,12,f +1026,3001a,15,10,f +1026,3001a,14,12,f +1026,3001pr1,14,2,f +1026,3002a,14,4,f +1026,3002a,4,4,f +1026,3002a,0,4,f +1026,3002a,15,4,f +1026,3002a,1,4,f +1026,3003,14,8,f +1026,3003,1,8,f +1026,3003,4,8,f +1026,3003,15,8,f +1026,3003,0,6,f +1026,3003,47,2,f +1026,3003pe1,14,4,f +1026,3006,4,2,f +1026,3007,1,2,f +1026,3007,14,2,f +1026,3137c01,0,2,f +1026,3185,4,6,f +1026,3471,2,2,f +1026,3483,0,4,f +1026,3596pb02,15,1,f +1026,3641,0,4,f +1026,4130,4,2,f +1026,4131,14,2,f +1026,4132,4,2,f +1026,4133,14,2,f +1026,4180c02,0,2,f +1026,4201,2,1,f +1026,4202,4,1,f +1026,4204,2,1,f +1026,bfp001,9999,1,f +1026,bfp002,9999,1,f +1027,298c02,15,3,f +1027,3835,0,1,f +1027,3836,6,1,f +1027,3837,8,1,f +1027,3900,0,2,f +1027,3957a,36,1,f +1027,3959,7,2,f +1027,3962a,0,2,f +1027,4006,0,1,f +1027,4081b,1,2,f +1027,4083,7,2,f +1027,4085b,1,2,f +1027,4349,0,2,f +1027,4360,7,1,f +1027,4449,15,2,f +1027,4479,8,1,f +1027,4522,0,1,f +1027,4599a,7,2,f +1027,4623,1,2,f +1027,4735,7,2,f +1027,4740,36,2,f +1028,2456,4,2,f +1028,2456,14,2,f +1028,3001,0,6,f +1028,3001,71,6,f +1028,3001,15,6,f +1028,3001,2,6,f +1028,3001,1,6,f +1028,3001,14,6,f +1028,3001,4,6,f +1028,3001,27,6,f +1028,3002,71,4,f +1028,3002,1,6,f +1028,3002,27,4,f +1028,3002,0,4,f +1028,3002,2,4,f +1028,3002,14,6,f +1028,3002,4,6,f +1028,3002,15,6,f +1028,3003,4,24,f +1028,3003,14,24,f +1028,3003,71,16,f +1028,3003,27,16,f +1028,3003,1,24,f +1028,3003,2,16,f +1028,3003,0,16,f +1028,3003,15,24,f +1028,3004,4,15,f +1028,3004,27,10,f +1028,3004,14,15,f +1028,3004,1,15,f +1028,3004,0,10,f +1028,3004,15,15,f +1028,3004,71,10,f +1028,3004,2,10,f +1028,3005,15,10,f +1028,3005,2,6,f +1028,3005,27,6,f +1028,3005,71,6,f +1028,3005,14,10,f +1028,3005,0,6,f +1028,3005,4,10,f +1028,3005,1,10,f +1028,3007,1,1,f +1028,3007,15,1,f +1028,3008,15,2,f +1028,3008,1,2,f +1028,3008,4,2,f +1028,3008,14,2,f +1028,3009,4,2,f +1028,3009,15,2,f +1028,3009,71,2,f +1028,3009,2,2,f +1028,3009,1,2,f +1028,3009,14,2,f +1028,3009,0,2,f +1028,3010,4,6,f +1028,3010,14,6,f +1028,3010,71,2,f +1028,3010,0,2,f +1028,3010,2,2,f +1028,3010,15,6,f +1028,3010,27,2,f +1028,3010,1,6,f +1028,3622,71,2,f +1028,3622,27,2,f +1028,3622,1,4,f +1028,3622,0,4,f +1028,3622,15,4,f +1028,3622,14,4,f +1028,3622,2,4,f +1028,3622,4,4,f +1030,2431,14,2,f +1030,2456,15,2,f +1030,3010,15,2,f +1030,3020,15,1,f +1030,3023,15,2,f +1030,3034,15,4,f +1030,3034,14,2,f +1030,3039,15,8,f +1030,3045,15,4,f +1030,3062b,1,3,f +1030,3460,14,2,f +1030,3666,14,4,f +1030,3666,15,2,f +1030,3684,14,8,f +1030,3685,14,4,f +1030,3710,15,8,f +1030,3710,14,6,f +1030,3795,15,2,f +1030,3832,15,4,f +1030,4162,14,4,f +1030,4589,182,1,f +1030,6141,1,4,f +1030,6141,14,4,f +1030,6141,4,5,f +1030,6141,46,2,f +1030,6636,14,2,f +1031,2456,4,2,f +1031,2456,1,2,f +1031,2456,15,2,f +1031,2456,14,2,f +1031,3001,4,44,f +1031,3001,14,40,f +1031,3001,15,44,f +1031,3001,1,44,f +1031,3001,0,32,f +1031,3001pr1,14,1,f +1031,3002,0,6,f +1031,3002,15,16,f +1031,3002,1,14,f +1031,3002,4,16,f +1031,3002,14,12,f +1031,3003,2,2,f +1031,3003,0,20,f +1031,3003,15,36,f +1031,3003,4,36,f +1031,3003,1,36,f +1031,3003,14,32,f +1031,3005pe1,14,2,f +1031,3006,14,2,f +1031,3006,4,2,f +1031,3007,1,2,f +1031,3007,15,2,f +1031,4727,2,2,f +1031,4728,15,1,f +1031,4728,1,1,f +1031,4744,7,1,f +1031,4744,14,1,f +1031,4744,6,1,f +1031,4744,4,2,f +1031,6215,4,4,f +1031,6215,2,2,f +1031,6215,1,2,f +1032,12799,72,1,f +1032,18352,72,1,f +1032,18651,0,3,f +1032,2723,0,4,f +1032,2780,0,34,f +1032,2780,0,1,t +1032,32009,72,2,f +1032,32013,72,2,f +1032,32013,0,2,f +1032,32015,0,4,f +1032,32054,0,2,f +1032,32062,4,2,f +1032,32073,71,5,f +1032,32123b,71,2,f +1032,32123b,71,1,t +1032,32140,0,4,f +1032,32249,0,2,f +1032,32278,72,2,f +1032,32291,0,2,f +1032,32316,72,2,f +1032,32524,72,4,f +1032,32526,72,7,f +1032,3706,0,1,f +1032,3708,0,2,f +1032,3713,71,1,t +1032,3713,71,7,f +1032,40490,72,1,f +1032,41677,0,2,f +1032,41678,0,2,f +1032,42003,0,2,f +1032,42046stk01,9999,1,f +1032,4274,71,4,f +1032,4274,71,1,t +1032,43093,1,7,f +1032,4519,71,2,f +1032,55978,0,4,f +1032,56145,297,4,f +1032,59443,0,1,f +1032,60483,71,2,f +1032,60484,0,2,f +1032,6141,36,2,f +1032,6141,36,1,t +1032,62462,179,2,f +1032,63869,0,1,f +1032,64391,0,3,f +1032,64683,0,3,f +1032,6536,72,2,f +1032,6558,1,20,f +1032,87082,0,2,f +1032,98138,47,4,f +1032,98138,47,1,t +1033,11253,0,2,f +1033,3626bpr1053,14,1,f +1033,46303pr0001,321,1,f +1033,88646,0,1,f +1033,970c00pr0392,321,1,f +1033,973pr2151c01,4,1,f +1036,2335,14,1,f +1036,2479,0,1,f +1036,2654,0,1,f +1036,2926,0,1,f +1036,30148,0,1,f +1036,3023,8,1,f +1036,30374,8,1,f +1036,30602,14,1,f +1036,3626bpr0126,14,1,f +1036,3795,7,1,f +1036,3942c,14,1,f +1036,4274,7,1,f +1036,4274,7,1,t +1036,4485,0,1,f +1036,4623,0,1,f +1036,4624,7,2,f +1036,4735,7,2,f +1036,6636,7,2,f +1036,970c00,0,1,f +1036,973px65c01,15,1,f +1038,2540,8,1,f +1038,30141,8,1,f +1038,30148,0,1,f +1038,30172,15,1,f +1038,3022,19,1,f +1038,3031,0,1,f +1038,3069bpa3,15,1,f +1038,3626bpa1,14,1,f +1038,3660,7,1,f +1038,3673,7,1,f +1038,3710,2,1,f +1038,3794a,2,2,f +1038,3794a,4,2,f +1038,3837,8,1,f +1038,4070,4,2,f +1038,4085c,4,2,f +1038,4599a,4,1,f +1038,4617b,0,1,f +1038,6019,7,2,f +1038,6141,47,1,t +1038,6141,47,1,f +1038,75535,15,1,f +1038,970c00,2,1,f +1038,973pa1c01,15,1,f +1039,3624,15,3,f +1039,3626apr0001,14,4,f +1039,3842a,15,1,f +1039,3900,4,1,f +1039,3962a,0,2,f +1039,4349,7,1,f +1039,970c00,0,4,f +1039,973pb0079c01,0,1,f +1039,973pb0091c01,0,3,f +1040,32054,0,1,f +1040,32174,72,1,f +1040,32174,0,2,f +1040,32175,0,2,f +1040,32524,0,1,f +1040,3673,71,2,f +1040,43093,1,1,f +1040,47296,72,2,f +1040,47300,72,2,f +1040,47301,15,1,f +1040,47311,0,2,f +1040,50899,179,1,f +1040,50900,0,1,f +1040,50901,72,1,f +1040,50903,14,1,f +1041,2412b,7,1,f +1041,2431,0,1,f +1041,2436,0,1,f +1041,2441,0,1,f +1041,3022,0,2,f +1041,3023,0,1,f +1041,3024,46,2,f +1041,3623,7,2,f +1041,3626apr0001,14,1,f +1041,3641,0,4,f +1041,3788,0,2,f +1041,3821,0,1,f +1041,3822,0,1,f +1041,3823,47,1,f +1041,3829c01,7,1,f +1041,4083,0,1,f +1041,4530,6,1,f +1041,4624,7,4,f +1041,970c00,15,1,f +1041,973p71c01,15,1,f +1043,2412b,14,1,f +1043,2412b,25,2,f +1043,2412b,4,2,f +1043,2412b,2,2,f +1043,2412b,8,1,f +1043,2412b,0,2,f +1043,2420,14,2,f +1043,2420,0,2,f +1043,2420,8,1,f +1043,2436,4,1,f +1043,2436,7,2,f +1043,2460,7,1,f +1043,2476a,8,1,f +1043,2516,0,1,f +1043,2540,8,2,f +1043,2540,0,1,f +1043,2540,4,2,f +1043,2555,8,2,f +1043,2555,7,3,f +1043,2555,4,1,f +1043,2555,0,1,f +1043,2654,8,1,f +1043,2654,14,1,f +1043,298c02,4,2,f +1043,298c02,14,3,f +1043,3001,7,1,f +1043,3003,0,2,f +1043,30162,8,2,f +1043,30165,14,2,f +1043,3020,8,2,f +1043,3021,25,1,f +1043,3021,4,1,f +1043,3021,8,1,f +1043,3022,0,1,f +1043,3022,7,1,f +1043,3022,8,2,f +1043,3023,2,1,f +1043,3023,14,1,f +1043,3023,4,1,f +1043,3024,2,1,f +1043,30365,8,4,f +1043,30374,0,1,f +1043,30383,0,6,f +1043,30386,7,7,f +1043,3039,2,2,f +1043,3039,4,1,f +1043,3040b,14,2,f +1043,3040b,4,2,f +1043,3048c,2,1,f +1043,30540,7,8,f +1043,30603,2,2,f +1043,3062b,0,4,f +1043,3062b,4,1,f +1043,3062b,14,2,f +1043,3176,14,3,f +1043,3176,0,1,f +1043,3176,27,2,f +1043,32062,0,1,f +1043,3300,27,1,f +1043,3475b,8,2,f +1043,3623,7,2,f +1043,3660,8,4,f +1043,3665,8,2,f +1043,3665,4,2,f +1043,3710,0,2,f +1043,3710,2,1,f +1043,3794a,4,1,f +1043,3794a,7,2,f +1043,3794a,8,1,f +1043,3794a,14,1,f +1043,3795,0,1,f +1043,3839b,0,2,f +1043,3839b,27,2,f +1043,3937,27,2,f +1043,3937,14,2,f +1043,3938,2,2,f +1043,3938,0,2,f +1043,3941,7,1,f +1043,3957a,0,2,f +1043,3959,0,1,f +1043,4019,7,1,f +1043,4070,2,1,f +1043,4070,8,2,f +1043,4070,14,2,f +1043,4081b,4,1,f +1043,4085c,4,2,f +1043,41532,0,6,f +1043,41769,4,1,f +1043,41770,4,1,f +1043,4286,4,2,f +1043,4360,0,1,f +1043,43722,2,1,f +1043,43723,2,1,f +1043,4589,8,3,f +1043,4617b,0,1,f +1043,4733,2,1,f +1043,4740,33,1,f +1043,4859,0,2,f +1043,6019,14,1,f +1043,6091,14,2,f +1043,6091,2,4,f +1043,6126a,57,1,f +1043,6141,27,5,f +1043,6141,57,3,f +1043,6141,14,3,f +1043,6141,0,6,f +1043,6141,8,6,f +1043,6141,36,3,f +1043,6141,25,7,f +1043,6141,34,2,f +1043,6541,7,6,f +1043,73983,0,2,f +1044,2780,0,5,f +1044,2780,0,1,t +1044,30648,0,4,f +1044,32002,72,2,f +1044,32002,72,1,t +1044,32039,71,3,f +1044,32062,4,4,f +1044,32073,71,2,f +1044,32140,14,1,f +1044,32184,71,2,f +1044,32250,14,2,f +1044,32250,0,2,f +1044,32291,72,2,f +1044,32449,71,2,f +1044,32523,14,2,f +1044,32524,14,2,f +1044,3701,19,2,f +1044,3705,0,1,f +1044,3713,71,4,f +1044,3713,71,1,t +1044,3737,0,2,f +1044,3749,19,4,f +1044,3795,19,2,f +1044,40490,0,2,f +1044,41753,72,1,f +1044,42003,0,2,f +1044,4274,71,3,f +1044,4274,71,1,t +1044,43093,1,2,f +1044,4519,71,5,f +1044,48989,71,3,f +1044,55982,71,4,f +1044,6141,36,2,f +1044,6141,182,1,f +1044,6141,36,1,t +1044,6141,182,1,t +1044,6536,14,2,f +1044,6536,72,3,f +1044,6558,1,4,f +1044,6628,0,1,f +1044,6628,0,1,t +1044,6632,71,2,f +1044,85545,1,1,f +1044,85545,1,1,t +1045,3700,1,24,f +1045,3700,4,24,f +1045,3701,4,16,f +1045,3701,1,24,f +1045,3702,1,4,f +1045,3702,4,6,f +1045,3703,1,8,f +1045,3703,4,4,f +1045,3894,4,4,f +1045,3894,1,4,f +1045,3895,4,4,f +1045,3895,1,4,f +1046,2041,4,2,f +1046,2145,15,2,f +1046,3001,4,2,f +1046,3032,15,1,f +1046,3062b,15,1,f +1046,3185,15,2,f +1046,3795,14,2,f +1046,3865,2,1,f +1046,3899,1,2,f +1046,4094a,14,1,f +1046,4095,14,1,f +1046,4429,4,1,f +1046,4727,2,3,f +1046,4728,15,2,f +1046,4728,1,1,f +1046,fab6f,9999,1,f +1047,3005,15,8,f +1047,3008a,15,2,f +1047,3008apb26,15,1,f +1047,3034a,15,1,f +1047,3036a,15,2,f +1047,3065,15,24,f +1047,3065,4,16,f +1047,645ac01,4,2,f +1047,820,15,1,f +1047,821,4,1,f +1047,822ac01,4,1,f +1049,10b,2,2,f +1050,2540,15,2,f +1050,30162,72,1,f +1050,3070b,27,1,f +1050,3070b,27,1,t +1050,3665,15,1,f +1050,44676,15,2,f +1050,4595,71,1,f +1050,60478,4,1,f +1050,60481,15,1,f +1050,6141,47,2,f +1050,6141,15,1,t +1050,6141,47,1,t +1050,6141,15,1,f +1050,63868,15,1,f +1054,3001a,0,1,f +1054,3002apb08,0,2,f +1054,3004,47,2,f +1054,3010pb035e,0,1,f +1054,3020,0,2,f +1054,3030,0,1,f +1054,3037,47,2,f +1054,3069a,14,1,f +1054,3137c01,0,2,f +1054,3139,0,4,f +1058,12825,15,2,f +1058,2654,71,1,f +1058,3021,85,1,f +1058,3023,321,2,f +1058,3024,73,1,f +1058,3024,15,1,f +1058,3070b,27,1,f +1058,3176,71,1,f +1058,33291,5,2,f +1058,33291,191,2,f +1058,3623,27,1,f +1058,3852b,191,1,f +1058,3956,71,3,f +1058,6141,29,1,f +1058,6141,85,1,f +1058,85984,191,2,f +1058,87079pr0051,15,1,f +1058,87087,323,2,f +1058,93089pr0002,15,1,f +1058,93091pr0003,323,1,f +1058,98389pr0001,19,1,f +1058,fpen01,15,1,t +1059,bel001,17,1,f +1059,crutch,8,2,f +1059,legcast,15,1,f +1062,271pb01,89,1,f +1062,271pb02,89,1,f +1062,271pb03,89,1,f +1062,271pb04,89,1,f +1062,271pb05,89,1,f +1062,271pb06,89,1,f +1063,3007,0,25,f +1064,2412b,41,3,f +1064,2431,232,1,f +1064,2555,15,1,f +1064,3001,212,2,f +1064,3003,117,2,f +1064,3004,15,2,f +1064,3004,0,2,f +1064,30089,14,1,f +1064,3009,25,4,f +1064,3009,26,4,f +1064,3010,15,4,f +1064,3020,71,1,f +1064,30222,45,1,f +1064,3023,3,2,f +1064,3023,72,4,f +1064,3029,115,2,f +1064,3031,3,1,f +1064,3034,15,1,f +1064,3035,26,1,f +1064,30357,232,1,f +1064,3036,15,1,f +1064,3039,25,2,f +1064,3066,45,4,f +1064,3068b,26,1,f +1064,3068bpb0094,232,1,f +1064,3069b,232,2,f +1064,3069b,1,1,f +1064,3069bp80,15,1,f +1064,33009,14,1,f +1064,33011,25,1,f +1064,33016,115,1,f +1064,33057,366,1,f +1064,33061,33,1,f +1064,33078,92,1,t +1064,33078,92,3,f +1064,33125,366,1,f +1064,33172,25,1,f +1064,33176,15,5,f +1064,33183,10,1,t +1064,33183,10,1,f +1064,3710,232,1,f +1064,3731,0,1,f +1064,3741,2,1,t +1064,3741,10,1,t +1064,3741,2,1,f +1064,3741,10,1,f +1064,3742,26,1,t +1064,3742,5,3,f +1064,3742,26,3,f +1064,3742,5,1,t +1064,3754,41,2,f +1064,3755,15,2,f +1064,3849,135,1,f +1064,3852b,115,1,f +1064,3899,14,3,f +1064,3937,15,1,f +1064,3940b,379,3,f +1064,3942c,15,1,f +1064,3958,15,1,f +1064,4085c,15,1,f +1064,4150px35,71,4,f +1064,4162,15,1,f +1064,4212151,9999,1,f +1064,4215966,9999,1,f +1064,4215967,9999,1,f +1064,4215969,9999,1,f +1064,4215974,9999,1,f +1064,4215b,212,2,f +1064,4222a,26,3,f +1064,44301a,72,2,f +1064,44302a,3,2,f +1064,4523,25,1,f +1064,4532,212,1,f +1064,4533,41,1,f +1064,4589,46,11,f +1064,45917,115,1,f +1064,45918,15,2,f +1064,47115,142,1,f +1064,47115,120,2,f +1064,47116,142,1,f +1064,47117,46,1,f +1064,47122,15,2,f +1064,4735,15,1,f +1064,4740,41,1,f +1064,4740,45,1,f +1064,4740,42,1,f +1064,47681,25,1,f +1064,47682,272,1,f +1064,47684,383,1,f +1064,4865a,33,5,f +1064,4865pb08,47,1,f +1064,6081,3,2,f +1064,6081,26,2,f +1064,6134,115,1,f +1064,6141,72,1,f +1064,6141,57,1,f +1064,6141,57,1,t +1064,6141,25,2,f +1064,6141,72,1,t +1064,6141,25,2,t +1064,6141,41,5,f +1064,6178,5,1,f +1064,6179,15,2,f +1064,6180,15,1,f +1064,6195,15,2,f +1064,6196,47,1,f +1064,6196,135,1,f +1064,6196,15,1,f +1064,6197b,379,4,f +1064,6198,135,1,f +1064,6198,212,1,f +1064,6199,182,1,f +1064,6250pr01,15,1,f +1064,6256,25,3,f +1064,6919,33,1,f +1064,6933a,5,1,f +1064,6933b,5,1,f +1064,6933c,5,1,f +1064,6936,135,2,f +1064,6992,14,1,f +1064,x14,115,1,f +1064,x1904cx1,15,14,f +1066,3005,14,40,f +1066,3005,47,40,f +1066,3005,0,40,f +1066,3005,1,40,f +1066,3005,4,40,f +1066,3005,15,40,f +1067,16197,9999,1,f +1067,3003,0,36,f +1067,3003,4,216,f +1067,3003,15,216,f +1067,3003,14,216,f +1067,3003,1,216,f +1070,30602,4,2,f +1070,40996,4,2,f +1070,41855,4,4,f +1070,43093,1,1,f +1070,4740,47,1,t +1070,4740,47,1,f +1070,47430,4,2,f +1070,47431,4,2,f +1070,47432,4,2,f +1070,47452,72,2,f +1070,47454,72,2,f +1070,47455,28,10,f +1070,47457,4,2,f +1070,47458,4,4,f +1070,47462,137,1,f +1070,47472,4,1,f +1070,47474,28,1,f +1070,47477c01pb05,4,1,f +1070,47501,4,4,f +1070,48081,89,1,f +1070,bb153pb04,72,1,f +1071,2420,0,2,f +1071,2695,7,4,f +1071,2696,0,4,f +1071,3004,0,2,f +1071,3020,14,2,f +1071,3020,0,3,f +1071,3021,14,6,f +1071,3022,0,4,f +1071,3023,14,6,f +1071,3023,0,12,f +1071,3024,14,4,f +1071,3034,0,1,f +1071,3035,0,1,f +1071,3069b,7,4,f +1071,3069bp05,14,2,f +1071,3069bp06,7,4,f +1071,3070b,14,2,f +1071,3460,14,1,f +1071,3460,0,5,f +1071,3623,0,6,f +1071,3623,14,4,f +1071,3647,7,2,f +1071,3648a,7,1,f +1071,3651,7,18,f +1071,3666,0,2,f +1071,3666,14,2,f +1071,3673,7,9,f +1071,3700,14,11,f +1071,3700,0,8,f +1071,3701,0,2,f +1071,3701,14,1,f +1071,3701,7,1,f +1071,3702,0,11,f +1071,3702,14,4,f +1071,3703,14,2,f +1071,3703,0,2,f +1071,3704,0,8,f +1071,3705,0,7,f +1071,3706,0,2,f +1071,3707,0,2,f +1071,3708,0,2,f +1071,3709,14,2,f +1071,3710,0,1,f +1071,3710,14,5,f +1071,3713,7,13,f +1071,3736,7,1,f +1071,3737,0,2,f +1071,3743,7,7,f +1071,3749,7,6,f +1071,3894,0,2,f +1071,3894,14,9,f +1071,3895,0,2,f +1071,3941,14,1,f +1071,4019,7,4,f +1071,4032a,0,2,f +1071,4035,0,2,f +1071,4070,0,2,f +1071,4143,7,2,f +1071,4150,14,1,f +1071,4150p00,15,2,f +1071,4185,7,2,f +1071,4220,7,2,f +1071,4221,7,4,f +1071,4261,7,2,f +1071,4262,7,1,f +1071,4265a,7,3,f +1071,4273b,7,16,f +1071,4274,7,8,f +1071,4442,7,3,f +1071,4447,14,2,f +1071,4459,0,28,f +1071,4519,0,5,f +1071,4716,0,1,f +1071,6141,36,2,f +1071,73983,14,4,f +1071,792c01,7,2,f +1072,2341,14,2,f +1072,2420,15,2,f +1072,2452,15,2,f +1072,3001,15,1,f +1072,3004,15,2,f +1072,3005,14,2,f +1072,3020,15,2,f +1072,3021,15,3,f +1072,3021,0,1,f +1072,3021,14,2,f +1072,3022,15,2,f +1072,3023,15,3,f +1072,3023,8,1,f +1072,3023,14,6,f +1072,3023,15,2,t +1072,3024,0,2,f +1072,3024,14,5,f +1072,3024,15,1,f +1072,3039,15,1,f +1072,3040b,15,2,f +1072,3040b,14,2,f +1072,3069b,14,2,f +1072,3070b,14,1,f +1072,3070b,15,1,f +1072,3298,15,3,f +1072,3623,15,2,t +1072,3623,14,6,f +1072,3623,15,2,f +1072,3660,15,1,f +1072,3665,15,3,f +1072,3665,14,2,f +1072,3666,14,1,f +1072,3673,7,1,f +1072,3710,0,1,f +1072,3710,15,1,f +1072,3747b,15,2,f +1072,3794a,15,2,f +1072,3794a,14,3,f +1072,4286,15,2,f +1072,4287,15,2,f +1072,4287,14,1,f +1072,6541,8,2,f +1073,15,4,3,f +1073,15,0,2,f +1073,17,15,2,f +1073,3001a,14,4,f +1073,3003,14,3,f +1073,3004,4,1,f +1073,3004,14,13,f +1073,3004,0,1,f +1073,3005,14,4,f +1073,3009,0,2,f +1073,3009,14,2,f +1073,3010,1,2,f +1073,3010,0,1,f +1073,3010,14,8,f +1073,3020,4,1,f +1073,3021,0,1,f +1073,3021,4,1,f +1073,3022,4,2,f +1073,3023,0,1,f +1073,3023,4,1,f +1073,3024,0,1,f +1073,3034,1,4,f +1073,3035,1,1,f +1073,3037,4,6,f +1073,3038,4,4,f +1073,3039,4,12,f +1073,3040a,4,2,f +1073,3042,4,2,f +1073,3043,4,4,f +1073,3046a,4,4,f +1073,3048a,4,2,f +1073,3137c01,0,2,f +1073,3183a,14,1,f +1073,3184,14,1,f +1073,3185,15,1,f +1073,3471,2,1,f +1073,3497,2,1,f +1073,3579,14,1,f +1073,3624,15,1,f +1073,3624,4,1,f +1073,3626a,14,2,f +1073,3633,15,2,f +1073,3641,0,4,f +1073,3659,14,3,f +1073,3660a,14,4,f +1073,3660a,4,1,f +1073,7039,4,1,f +1073,7049b,0,1,f +1073,7930,1,1,f +1074,x165,47,8,f +1075,3626bpr0693,10,1,f +1075,3678bpr0001,0,1,f +1075,4332,70,1,f +1075,88646,0,1,f +1075,90460,0,1,f +1075,973pr1658c01,0,1,f +1078,10199,1,1,f +1078,11198,27,1,f +1078,11198,5,1,f +1078,11249,297,1,f +1078,11374pb01,14,1,f +1078,12785pr0002,15,1,f +1078,16375,322,2,f +1078,18918,322,1,f +1078,20678,41,2,f +1078,2301,1,2,f +1078,25139,78,1,f +1078,31333pb04,15,1,f +1078,3437,29,1,f +1078,3437,26,1,f +1078,3437,10,1,f +1078,3437,5,1,f +1078,3437,14,1,f +1078,3437pb044,29,1,f +1078,4066,41,2,f +1078,4066,10,2,f +1078,40666,27,4,f +1078,4066pb432,41,1,f +1078,62664,5,1,f +1078,6510,14,1,f +1078,6510,4,1,f +1078,75737,4,1,f +1078,89158,2,1,f +1078,93150,322,1,f +1078,98215,5,1,f +1078,98220,322,1,f +1078,98233,10,1,f +1083,2346,0,4,f +1083,2357,0,4,f +1083,2419,2,2,f +1083,2420,7,8,f +1083,2456,0,6,f +1083,2654,0,2,f +1083,2730,0,8,f +1083,2780,0,24,f +1083,2815,0,2,f +1083,2817,7,4,f +1083,2825,7,2,f +1083,2854,7,2,f +1083,2902,0,4,f +1083,2903,15,4,f +1083,2982c01,1,2,f +1083,2983,7,4,f +1083,2994,15,2,f +1083,3001,0,25,f +1083,3001,2,1,f +1083,3003,0,20,f +1083,3004,14,4,f +1083,3004,2,4,f +1083,3004,0,20,f +1083,3007,0,8,f +1083,3010,0,6,f +1083,3020,14,6,f +1083,3022,2,2,f +1083,3022,1,4,f +1083,3022,7,8,f +1083,3023,7,20,f +1083,3024,7,8,f +1083,3033,7,1,f +1083,3034,2,4,f +1083,3039,2,3,f +1083,3040b,0,12,f +1083,3040b,14,4,f +1083,3069b,1,4,f +1083,32000,8,2,f +1083,32001,7,4,f +1083,32002,8,16,f +1083,32007,15,4,f +1083,32009,14,4,f +1083,32013,1,4,f +1083,32014,1,4,f +1083,32015,7,4,f +1083,32017,7,4,f +1083,32028,7,8,f +1083,32034,1,2,f +1083,32039,7,8,f +1083,32054,1,4,f +1083,32056,7,4,f +1083,32060,7,1,f +1083,32062,0,10,f +1083,32064b,2,8,f +1083,32065,0,4,f +1083,32068,7,2,f +1083,32069,0,2,f +1083,32073,7,2,f +1083,32123b,7,18,f +1083,32137,33,4,f +1083,32138,14,2,f +1083,32140,0,2,f +1083,32184,1,2,f +1083,32250,1,2,f +1083,32269,15,1,f +1083,32449,1,2,f +1083,3460,7,8,f +1083,3482,14,10,f +1083,3483,0,2,f +1083,3623,14,2,f +1083,3634,0,4,f +1083,3647,7,6,f +1083,3648b,7,4,f +1083,3649,7,4,f +1083,3650c,7,4,f +1083,3665,0,4,f +1083,3665,14,4,f +1083,3666,7,10,f +1083,3673,7,24,f +1083,3679,7,2,f +1083,3680,1,2,f +1083,3700,0,12,f +1083,3700,14,4,f +1083,3701,0,10,f +1083,3701,2,2,f +1083,3702,0,8,f +1083,3703,0,6,f +1083,3705,0,7,f +1083,3706,0,8,f +1083,3707,0,7,f +1083,3708,0,2,f +1083,3709,7,4,f +1083,3710,7,10,f +1083,3713,7,40,f +1083,3736,7,2,f +1083,3737,0,4,f +1083,3738,7,8,f +1083,3743,7,4,f +1083,3747b,0,4,f +1083,3749,19,16,f +1083,3832,7,6,f +1083,3894,0,8,f +1083,3895,0,6,f +1083,3941,0,8,f +1083,3956,7,4,f +1083,3960,15,2,f +1083,4019,7,4,f +1083,4032a,1,2,f +1083,4032a,15,2,f +1083,4085c,0,2,f +1083,4185,7,4,f +1083,4220,14,2,f +1083,4221,0,4,f +1083,4274,7,8,f +1083,4275b,0,2,f +1083,4477,7,6,f +1083,4519,7,3,f +1083,4531,0,2,f +1083,4589,14,2,f +1083,4589,15,2,f +1083,4716,0,4,f +1083,5306bc015,0,6,f +1083,6007,2,1,t +1083,6019,0,2,f +1083,6035,15,1,f +1083,6048a,8,2,f +1083,6133,57,2,f +1083,6141,1,2,f +1083,6141,0,2,f +1083,6141,15,2,f +1083,6215,2,4,f +1083,6536,7,6,f +1083,6538a,7,8,f +1083,6553,7,4,f +1083,6558,0,8,f +1083,6573,8,1,f +1083,6575,7,2,f +1083,6578,0,2,f +1083,6587,8,2,f +1083,6588,14,1,f +1083,6589,7,8,f +1083,6594,0,2,f +1083,6595,15,2,f +1083,6629,0,4,f +1083,6630,7,1,f +1083,6632,7,4,f +1083,680c01,0,2,f +1083,71082,47,1,f +1083,71128,383,1,f +1083,71427c01,7,1,f +1083,71509,0,4,f +1083,75c16,14,2,f +1083,78c08,3,4,f +1083,78c08,0,4,f +1083,78c11,22,4,f +1083,85543,15,3,f +1083,85544,1,3,f +1083,85545,14,3,f +1083,879,7,2,f +1083,884,14,1,f +1083,9244,7,2,f +1083,9794bc,9999,1,f +1083,bb277,7,1,f +1083,bin03,10,1,f +1083,x431c01,8,1,f +1085,14417,72,2,f +1085,14418,71,2,f +1085,15068,0,2,f +1085,15068,15,1,f +1085,15068,4,3,f +1085,15573,297,1,f +1085,2420,1,2,f +1085,2420,15,6,f +1085,2431,288,2,f +1085,3001,15,1,f +1085,3001,4,1,f +1085,3002,15,2,f +1085,3003,14,1,f +1085,3004,288,3,f +1085,3004,19,2,f +1085,3005,15,4,f +1085,3010,288,5,f +1085,3020,4,2,f +1085,3020,15,1,f +1085,3021,0,2,f +1085,3021,19,1,f +1085,3021,4,3,f +1085,3022,15,1,f +1085,3022,4,5,f +1085,3022,0,2,f +1085,3023,0,2,f +1085,3023,19,1,f +1085,3023,4,4,f +1085,3023,15,2,f +1085,3024,15,1,t +1085,3024,15,4,f +1085,3035,288,1,f +1085,3037,4,1,f +1085,30414,15,1,f +1085,3069b,4,2,f +1085,3070b,0,2,f +1085,3070b,0,1,t +1085,32028,15,6,f +1085,3623,4,8,f +1085,3660,4,1,f +1085,3665,15,8,f +1085,3666,70,2,f +1085,3710,70,4,f +1085,3710,15,1,f +1085,4081b,15,2,f +1085,4081b,19,2,f +1085,44728,15,1,f +1085,54200,19,1,t +1085,54200,0,2,f +1085,54200,19,2,f +1085,54200,0,1,t +1085,54200,4,1,t +1085,54200,4,2,f +1085,6081,288,2,f +1085,6081,15,1,f +1085,60897,19,2,f +1085,6091,288,6,f +1085,6091,19,2,f +1085,6091,15,4,f +1085,6141,0,1,t +1085,6141,70,1,t +1085,6141,19,1,t +1085,6141,70,4,f +1085,6141,0,1,f +1085,6141,19,2,f +1085,6215,4,2,f +1085,63864,288,2,f +1085,64647,15,2,f +1085,64647,15,1,t +1085,87087,15,2,f +1085,87087,19,2,f +1085,93606,4,1,f +1085,98138pr0008,15,2,f +1085,98138pr0008,15,1,t +1087,2357,14,4,f +1087,2412b,14,16,f +1087,2412b,0,2,f +1087,2412b,72,13,f +1087,2420,72,4,f +1087,2431,72,15,f +1087,2432,71,5,f +1087,2432,72,2,f +1087,2445,72,1,f +1087,2456,14,1,f +1087,2458,72,4,f +1087,2460,14,1,f +1087,2486,14,1,f +1087,2540,14,5,f +1087,2654,182,3,f +1087,2695,14,8,f +1087,2696,0,8,f +1087,2730,14,5,f +1087,2780,0,2,t +1087,2780,0,22,f +1087,2856c02,0,1,f +1087,2877,72,6,f +1087,2905,0,4,f +1087,2922,0,1,f +1087,298c02,4,1,t +1087,298c02,4,2,f +1087,30000,72,1,f +1087,3001,0,5,f +1087,3002,14,2,f +1087,3002,0,1,f +1087,3003,14,9,f +1087,3004,14,4,f +1087,3005,71,2,f +1087,3006,0,1,f +1087,3007,0,4,f +1087,3008,0,1,f +1087,3009,71,4,f +1087,3010,72,2,f +1087,3010,14,8,f +1087,30104,71,1,f +1087,30183,72,1,f +1087,3020,72,12,f +1087,3022,72,2,f +1087,3022,71,18,f +1087,3023,14,10,f +1087,3023,46,3,f +1087,30237a,72,2,f +1087,3024,15,2,f +1087,30250,14,1,f +1087,30251,40,1,f +1087,30283,72,3,f +1087,30285,14,2,f +1087,3029,72,2,f +1087,30295,72,2,f +1087,30296,72,4,f +1087,3031,72,1,f +1087,3032,72,2,f +1087,3034,14,3,f +1087,3034,72,2,f +1087,30363,14,1,f +1087,3037,71,2,f +1087,3039pr0002,15,1,f +1087,30414,72,2,f +1087,30526,71,2,f +1087,3068b,14,2,f +1087,3069b,36,2,f +1087,3069b,72,2,f +1087,3176,14,4,f +1087,32000,0,2,f +1087,32012,72,1,f +1087,32013,0,2,f +1087,32018,71,2,f +1087,32054,4,4,f +1087,32062,4,2,f +1087,32123b,19,1,f +1087,32123b,19,2,t +1087,32209,0,1,f +1087,32316,14,1,f +1087,3245b,14,2,f +1087,32532,14,2,f +1087,32556,71,1,f +1087,33299a,71,1,f +1087,3460,0,4,f +1087,3622,14,2,f +1087,3626bpb0172,14,1,f +1087,3626bpb0173,14,1,f +1087,3647,71,1,t +1087,3647,71,1,f +1087,3660,72,2,f +1087,3665,72,4,f +1087,3666,0,10,f +1087,3678b,72,1,f +1087,3700,72,2,f +1087,3710,72,3,f +1087,3710,14,10,f +1087,3713,71,4,f +1087,3713,71,1,t +1087,3737,0,1,f +1087,3747b,14,2,f +1087,3749,19,5,f +1087,3794a,72,2,f +1087,3795,72,2,f +1087,3795,71,2,f +1087,3821,14,1,f +1087,3822,14,1,f +1087,3829c01,4,1,f +1087,3830,72,2,f +1087,3831,72,2,f +1087,3832,14,1,f +1087,3833,4,2,f +1087,3837,72,1,f +1087,3894,14,2,f +1087,3941,14,2,f +1087,3942c,14,3,f +1087,3962b,72,1,f +1087,4006,0,1,f +1087,4032a,0,3,f +1087,40620,71,2,f +1087,4070,14,6,f +1087,4079,4,2,f +1087,4151,72,1,f +1087,41532,0,5,f +1087,4162,72,8,f +1087,4162,14,4,f +1087,4175,14,2,f +1087,4176,40,2,f +1087,41862,71,4,f +1087,42022,72,2,f +1087,42610,71,1,f +1087,4282,14,1,f +1087,4282,72,2,f +1087,4286,14,2,f +1087,43898,0,4,f +1087,44302a,14,4,f +1087,44675,14,4,f +1087,44728,72,2,f +1087,4477,72,4,f +1087,4477,14,13,f +1087,45575,71,2,f +1087,4589,182,3,f +1087,4740,0,2,f +1087,48989,71,2,f +1087,50950,14,6,f +1087,52031,14,2,f +1087,52041,14,5,f +1087,54200,182,14,f +1087,56823,0,1,f +1087,6019,71,2,f +1087,6087,0,4,f +1087,6111,14,2,f +1087,6112,72,2,f +1087,6112,0,4,f +1087,6180,14,1,f +1087,6232,72,4,f +1087,6249,71,1,f +1087,6541,14,4,f +1087,6553,0,1,f +1087,6632,14,2,f +1087,7249stk01,9999,1,t +1087,75347,14,2,f +1087,75535,14,6,f +1087,970c00,25,2,f +1087,973pr1160c01,1,1,f +1087,973pr1182c01,25,1,f +1089,22670,63,1,f +1089,30153,36,1,f +1089,30153,36,2,t +1089,31333,45,2,f +1089,31334,45,2,f +1089,33006,383,1,f +1089,33013pb03,15,1,f +1089,3899,45,1,t +1089,3899,45,2,f +1089,4154181,9999,1,f +1090,2357,8,5,f +1090,2412b,4,8,f +1090,2412b,0,12,f +1090,2418b,4,2,f +1090,2420,8,2,f +1090,2431,8,8,f +1090,2444,0,2,f +1090,2446,0,1,f +1090,2453a,0,2,f +1090,2454a,0,15,f +1090,2458,7,5,f +1090,2460,4,3,f +1090,2512,4,1,f +1090,2526,4,2,f +1090,2540,0,3,f +1090,2540,7,1,f +1090,2569,57,1,f +1090,2582,36,4,f +1090,2653,8,8,f +1090,2654,7,1,f +1090,298c02,4,6,f +1090,298c02,4,3,t +1090,3001,0,1,f +1090,3003,7,3,f +1090,3004,8,9,f +1090,30041,0,2,f +1090,30042,8,2,f +1090,3005,8,4,f +1090,3005,7,4,f +1090,30055,0,2,f +1090,3009,7,1,f +1090,3009,8,4,f +1090,3009,0,4,f +1090,3010,0,5,f +1090,30121,0,1,f +1090,30137,15,1,f +1090,30151a,42,3,f +1090,3020,8,3,f +1090,3022,4,5,f +1090,3023,4,6,f +1090,3023,1,4,f +1090,30236,8,1,f +1090,30249,0,2,f +1090,30283,0,3,f +1090,30288,4,1,f +1090,3031,4,1,f +1090,3032,7,1,f +1090,30332,0,1,f +1090,3034,0,3,f +1090,3035,0,1,f +1090,3035,4,1,f +1090,30359a,57,2,f +1090,3036,7,1,f +1090,30372,36,1,f +1090,30389a,4,1,f +1090,3039,57,6,f +1090,3039,0,4,f +1090,3039pc0,8,1,f +1090,3040b,7,4,f +1090,3040b,0,10,f +1090,30503,8,2,f +1090,30516,4,1,f +1090,30540,4,2,f +1090,30541,0,2,f +1090,30553,8,1,f +1090,30562,0,1,f +1090,30658,0,1,f +1090,3066,36,1,f +1090,3176,1,1,f +1090,32059,4,1,f +1090,32064b,7,1,f +1090,32084,0,1,f +1090,3298,8,1,f +1090,3460,7,6,f +1090,354,36,1,f +1090,3622,8,1,f +1090,3623,0,2,f +1090,3624,0,2,f +1090,3626bpr0895,15,7,f +1090,3626bpx40,14,1,f +1090,3660,4,4,f +1090,3665,7,6,f +1090,3666,4,5,f +1090,3673,7,1,f +1090,3700,0,5,f +1090,3701,4,3,f +1090,3710,8,2,f +1090,3710,4,4,f +1090,3749,7,2,f +1090,3794a,0,4,f +1090,3795,7,4,f +1090,3795,0,2,f +1090,3839b,0,2,f +1090,3937,0,7,f +1090,3938,7,2,f +1090,3940b,8,1,f +1090,3943b,0,3,f +1090,3960,4,1,f +1090,4032a,4,8,f +1090,4070,4,2,f +1090,4079,0,1,f +1090,4081b,0,2,f +1090,4150px20,0,2,f +1090,4151a,0,2,f +1090,4162,8,6,f +1090,4213,0,1,f +1090,4282,4,1,f +1090,4286,8,2,f +1090,4286,7,2,f +1090,4287,8,2,f +1090,4345b,0,2,f +1090,4346,36,2,f +1090,4476b,4,3,f +1090,4497,0,2,f +1090,4589,57,9,f +1090,4625,4,5,f +1090,4740,57,1,f +1090,4855,0,1,f +1090,4865a,4,4,f +1090,6003,7,2,f +1090,6092pb02,8,1,f +1090,6106,0,2,f +1090,6111,8,1,f +1090,6134,4,3,f +1090,6141,57,2,t +1090,6141,57,25,f +1090,6232,4,4,f +1090,6239,0,3,f +1090,6259,36,1,f +1090,6587,8,1,f +1090,6636,7,5,f +1090,75535,4,1,f +1090,76385,8,2,f +1090,769,334,1,f +1090,970c00,0,1,f +1090,970d03,4,2,f +1090,973c14,0,1,f +1090,973pb0107c01,0,2,f +1090,rb00167,0,1,t +1090,rb00167,0,1,f +1093,3058b,0,1,f +1093,3482,4,4,f +1093,3483,0,4,f +1093,3706,79,2,f +1093,3709a,7,1,f +1093,458,0,4,f +1093,468c03,0,1,f +1093,498,0,2,f +1093,7039,4,4,f +1093,bb141c01,1,2,f +1093,wheel2a,4,4,f +1093,x466,15,1,f +1093,x469b,0,1,f +1094,2337,42,1,f +1094,2340,0,2,f +1094,2357,4,2,f +1094,2412b,4,4,f +1094,2420,0,2,f +1094,2431,4,2,f +1094,2432,0,1,f +1094,2445,4,1,f +1094,2446,0,2,f +1094,2447,42,2,f +1094,2456,4,2,f +1094,2458,0,2,f +1094,2460,0,1,f +1094,2465,4,2,f +1094,2507,42,1,f +1094,2516,0,1,f +1094,2569,42,4,f +1094,2582p68,7,2,f +1094,2607,4,5,f +1094,2609,0,3,f +1094,2744,0,2,f +1094,3001,0,1,f +1094,3002,0,1,f +1094,3003,0,1,f +1094,3008,4,2,f +1094,3009,4,1,f +1094,3010,4,2,f +1094,3020,0,3,f +1094,3020,4,2,f +1094,3021,0,1,f +1094,3021,4,2,f +1094,3022,4,2,f +1094,3023,4,5,f +1094,3023,0,1,f +1094,3027,0,1,f +1094,3032,4,1,f +1094,3034,4,1,f +1094,3034,0,3,f +1094,3035,0,3,f +1094,3039p68,4,2,f +1094,3068bp68,4,2,f +1094,3069bp13,15,1,f +1094,3069bp68,15,1,f +1094,3070b,0,2,f +1094,3176,0,2,f +1094,3185,4,2,f +1094,3188,0,1,f +1094,3189,0,1,f +1094,3298,0,3,f +1094,3324c01,4,1,f +1094,3460,0,2,f +1094,3475b,7,2,f +1094,3585,0,1,f +1094,3586,0,1,f +1094,3622,4,2,f +1094,3626apr0001,14,2,f +1094,3633,4,4,f +1094,3641,0,4,f +1094,3710,0,1,f +1094,3710,4,2,f +1094,3747b,0,2,f +1094,3795,4,2,f +1094,3795,0,7,f +1094,3829c01,0,2,f +1094,3832,4,1,f +1094,3838,0,2,f +1094,3839b,0,3,f +1094,3933,0,2,f +1094,3934,0,2,f +1094,3939p68,4,1,f +1094,3956,0,2,f +1094,3960,42,2,f +1094,3962b,0,1,f +1094,3963,7,2,f +1094,4006,0,1,f +1094,4070,4,2,f +1094,4085c,4,2,f +1094,4215a,0,2,f +1094,4229,0,9,f +1094,4282,0,1,f +1094,4286,4,2,f +1094,4315,0,2,f +1094,4315,4,1,f +1094,4345a,4,2,f +1094,4346p68,7,2,f +1094,4349,0,1,f +1094,4476b,4,1,f +1094,4476b,0,2,f +1094,4588,42,2,f +1094,4589,42,4,f +1094,4591,7,2,f +1094,4599a,7,2,f +1094,4600,0,2,f +1094,4624,7,4,f +1094,4730,4,2,f +1094,4735,7,2,f +1094,4735,0,1,f +1094,4737,0,2,f +1094,4740,42,2,f +1094,4741,4,4,f +1094,4859,4,1,f +1094,6019,0,2,f +1094,6141,42,10,f +1094,73092,0,8,f +1094,73590c01a,7,2,f +1094,970x026,15,2,f +1094,973p68c01,4,2,f +1095,45463,73,2,f +1095,46286,143,2,f +1095,46286,36,1,f +1095,46296,36,1,f +1095,clikits013pb02,15,1,f +1095,clikits038,36,1,f +1095,clikits038,143,2,f +1095,clikits040,41,1,f +1095,clikits086pb02,15,1,f +1095,clikits086pb03,73,1,f +1095,clikits086pb04,15,1,f +1096,2412b,4,1,f +1096,2436,4,1,f +1096,2513,15,1,f +1096,3020,15,1,f +1096,3021,15,1,f +1096,3024,36,2,f +1096,3034,7,1,f +1096,3070b,46,1,t +1096,3070b,46,2,f +1096,3623,4,2,f +1096,3641,0,4,f +1096,3666,15,2,f +1096,3710,4,1,f +1096,3710,15,1,f +1096,3829c01,7,1,f +1096,4211,15,1,f +1096,4624,15,4,f +1096,6157,0,2,f +1096,6238,33,1,f +1097,12825,71,1,t +1097,12825,71,1,f +1097,13610,9999,1,t +1097,2412b,72,1,t +1097,2412b,72,1,f +1097,2446,1,1,f +1097,2447,40,1,t +1097,2447,40,1,f +1097,2547,72,1,f +1097,3001,15,1,f +1097,30031,72,1,f +1097,3004,72,1,f +1097,3020,1,1,f +1097,30340,14,1,f +1097,3626cpr0499,14,1,f +1097,3626cpr1664,14,1,f +1097,3794a,15,2,f +1097,3794b,15,1,t +1097,3795,0,1,f +1097,43713,15,1,f +1097,43719,25,1,f +1097,47755,1,1,f +1097,6636,25,2,f +1097,72454,15,1,f +1097,85984,15,1,f +1097,87587,72,1,f +1097,88283,484,1,f +1097,90397,15,1,f +1097,93606,15,1,f +1097,970c00,0,1,f +1097,970c00,1,1,f +1097,973pr2334c01,71,1,f +1097,973pr2335c01,0,1,f +1097,97895,14,1,f +1097,97895,14,1,t +1101,2377,6,2,f +1101,2551,7,1,f +1101,298c02,7,1,t +1101,298c02,7,1,f +1101,3001,0,1,f +1101,3004,0,2,f +1101,3005,15,2,f +1101,3010,0,1,f +1101,30104,8,1,f +1101,30115,4,1,f +1101,30132,8,1,f +1101,30132,8,1,t +1101,30141,8,1,f +1101,30150,6,1,f +1101,30153,33,1,f +1101,30153,46,1,f +1101,30153,36,1,f +1101,30167,6,1,f +1101,30176,2,2,f +1101,3020,8,1,f +1101,3020,6,1,f +1101,3021,6,1,f +1101,30276,14,1,f +1101,3031,2,1,f +1101,3062b,7,1,f +1101,30663,0,1,f +1101,3069bp03,7,2,f +1101,3070bpr0007,7,1,t +1101,3070bpr0007,7,1,f +1101,3626bpr0190,15,1,f +1101,3626bpr0247,14,1,f +1101,3659,15,1,f +1101,3700,6,2,f +1101,3794a,0,1,f +1101,3837,8,1,f +1101,3841,8,1,f +1101,3937,15,1,f +1101,3938,7,1,f +1101,3941,0,3,f +1101,4081b,8,2,f +1101,4274,7,2,f +1101,4274,7,1,t +1101,4349,7,1,f +1101,43888,484,2,f +1101,43892,272,2,f +1101,4599a,7,1,f +1101,4733,15,1,f +1101,4740,0,1,f +1101,4740,0,1,t +1101,4865a,7,3,f +1101,6026,2,1,f +1101,6027,2,1,f +1101,6028,2,1,f +1101,6126a,57,1,f +1101,6141,7,1,t +1101,6141,7,1,f +1101,970c00pb018,19,1,f +1101,973pb0281c01,2,1,f +1102,11212,72,1,f +1102,11215,71,1,f +1102,11303,4,1,f +1102,11477,2,2,f +1102,12825,72,2,f +1102,14045,0,1,t +1102,14045,0,1,f +1102,15462,28,1,f +1102,15535,72,1,f +1102,17105,9999,1,t +1102,2412b,0,5,f +1102,2412b,71,5,f +1102,2420,72,2,f +1102,2435,2,2,f +1102,2458,72,1,f +1102,2465,0,2,f +1102,298c02,1,2,f +1102,298c02,1,1,t +1102,3004,1,1,f +1102,30165,72,4,f +1102,3020,72,4,f +1102,3021,2,9,f +1102,3022,71,3,f +1102,3023,2,9,f +1102,3023,19,1,f +1102,3032,2,1,f +1102,30374,14,1,f +1102,30387,14,2,f +1102,30396,14,1,f +1102,30552,0,1,f +1102,3062b,0,1,f +1102,3069b,2,1,f +1102,32001,0,4,f +1102,32028,0,2,f +1102,32062,4,1,f +1102,3623,1,1,f +1102,3626cpr0914,14,1,f +1102,3626cpr0929,14,1,f +1102,3666,0,3,f +1102,3666,2,4,f +1102,3666,14,1,f +1102,3680,1,1,f +1102,3700,14,1,f +1102,3708,0,2,f +1102,3710,14,2,f +1102,3795,71,2,f +1102,3821,2,1,f +1102,3822,2,1,f +1102,3829c01,1,1,f +1102,3832,72,2,f +1102,3832,71,1,f +1102,3833,4,1,f +1102,3837,72,1,f +1102,3899,4,1,f +1102,3941,14,2,f +1102,3941,70,20,f +1102,4032a,14,1,f +1102,4032a,71,1,f +1102,4079,1,1,f +1102,4150,14,1,f +1102,4176,47,1,f +1102,4488,0,6,f +1102,4733,0,1,f +1102,48336,0,2,f +1102,50745,0,6,f +1102,52031,2,1,f +1102,54200,47,1,t +1102,54200,47,2,f +1102,58176,182,2,f +1102,59900,25,1,f +1102,6014b,71,6,f +1102,60849,0,1,t +1102,60849,0,1,f +1102,60897,71,2,f +1102,60897,0,8,f +1102,6117,72,1,f +1102,6141,182,2,t +1102,6141,36,1,t +1102,6141,0,1,t +1102,6141,1,1,t +1102,6141,36,2,f +1102,6141,182,4,f +1102,6141,1,1,f +1102,6141,0,2,f +1102,6232,14,1,f +1102,63869,71,1,f +1102,6583,0,2,f +1102,6628,0,1,f +1102,6636,0,7,f +1102,87544,2,4,f +1102,87609,2,2,f +1102,87617,0,4,f +1102,87697,0,6,f +1102,92220,14,3,f +1102,92280,71,4,f +1102,92338,72,2,f +1102,92589,148,1,f +1102,93274,14,2,f +1102,970c00,28,1,f +1102,970c00,379,1,f +1102,973pr0250c01,320,1,f +1102,973pr1163c01,272,1,f +1102,98138,25,1,f +1102,98138,25,1,t +1102,98284,70,2,f +1102,99780,71,2,f +1103,2357,14,2,f +1103,2420,14,4,f +1103,2736,71,1,f +1103,2780,0,1,t +1103,2780,0,2,f +1103,3001,14,2,f +1103,3003,14,1,f +1103,3004,14,2,f +1103,3020,14,2,f +1103,3021,14,3,f +1103,3022,14,3,f +1103,3023,0,2,f +1103,3023,14,10,f +1103,3024,15,2,f +1103,3024,0,2,f +1103,3024,14,4,f +1103,3040b,14,2,f +1103,3062b,14,2,f +1103,3068b,14,1,f +1103,3622,14,2,f +1103,3660,14,2,f +1103,3665,14,2,f +1103,3794b,14,1,f +1103,3937,14,2,f +1103,3941,14,2,f +1103,4032a,15,2,f +1103,4070,15,2,f +1103,4070,14,2,f +1103,4150,14,2,f +1103,44728,14,3,f +1103,4651886,15,1,f +1103,54200,14,1,t +1103,54200,14,8,f +1103,6019,14,2,f +1103,60478,15,2,f +1103,6134,15,2,f +1103,6141,0,1,t +1103,6141,14,1,t +1103,6141,0,3,f +1103,6141,14,2,f +1103,6541,14,4,f +1103,85984,14,2,f +1104,2456,1,4,f +1104,2456,14,4,f +1104,2456,4,4,f +1104,2456,15,4,f +1104,3001,1,24,f +1104,3001,0,12,f +1104,3001,2,12,f +1104,3001,15,24,f +1104,3001,14,24,f +1104,3001,4,24,f +1104,3002,4,12,f +1104,3002,2,8,f +1104,3002,15,12,f +1104,3002,0,8,f +1104,3002,14,12,f +1104,3002,1,12,f +1104,3003,2,20,f +1104,3003,4,40,f +1104,3003,14,40,f +1104,3003,0,20,f +1104,3003,1,40,f +1104,3003,15,40,f +1104,3004,2,28,f +1104,3004,1,60,f +1104,3004,14,60,f +1104,3004,0,28,f +1104,3004,4,60,f +1104,3004,15,60,f +1104,3005,2,12,f +1104,3005,0,20,f +1104,3005,15,40,f +1104,3005,1,40,f +1104,3005,4,40,f +1104,3005,14,40,f +1104,3008,4,4,f +1104,3008,15,4,f +1104,3008,1,4,f +1104,3008,14,4,f +1104,3009,15,8,f +1104,3009,1,8,f +1104,3009,14,8,f +1104,3009,4,8,f +1104,3010,15,40,f +1104,3010,2,20,f +1104,3010,0,24,f +1104,3010,1,40,f +1104,3010,14,40,f +1104,3010,4,40,f +1104,3622,0,8,f +1104,3622,1,12,f +1104,3622,2,4,f +1104,3622,4,12,f +1104,3622,14,12,f +1104,3622,15,12,f +1105,10178,52,3,f +1105,10201,15,2,f +1105,10288,308,1,f +1105,11289,41,4,f +1105,11458,72,2,f +1105,13731,179,2,f +1105,14704,71,2,f +1105,15068,0,1,f +1105,15068,15,2,f +1105,15092,72,1,f +1105,15303,182,5,f +1105,15391,15,2,f +1105,15392,72,6,f +1105,15400,72,4,f +1105,15403,15,4,f +1105,15411,0,4,f +1105,15462,28,1,f +1105,15535,72,1,f +1105,15573,85,2,f +1105,17485,71,2,f +1105,18654,72,2,f +1105,18731c01pr0001,52,1,f +1105,18827pr0002,41,1,f +1105,18946,4,1,f +1105,19023c01,15,1,f +1105,19179,148,2,f +1105,19220,0,1,f +1105,2412b,15,15,f +1105,2431,41,4,f +1105,2432,0,1,f +1105,2454a,0,4,f +1105,2456,0,1,f +1105,2476a,15,8,f +1105,2540,72,16,f +1105,2780,0,23,f +1105,30000,72,3,f +1105,3001,4,1,f +1105,3003,0,3,f +1105,3004,71,3,f +1105,3005,14,2,f +1105,3008,0,2,f +1105,3009,15,2,f +1105,30153,52,1,f +1105,30165,0,1,f +1105,3020,0,4,f +1105,3021,72,2,f +1105,3022,72,2,f +1105,3023,41,14,f +1105,3023,0,10,f +1105,3031,71,1,f +1105,3032,0,3,f +1105,30355,0,1,f +1105,30356,0,1,f +1105,3039,0,4,f +1105,30414,71,9,f +1105,3062b,0,1,f +1105,3069b,15,3,f +1105,3070bpr0001,34,1,f +1105,32001,0,7,f +1105,32012,72,1,f +1105,32015,71,1,f +1105,32018,0,2,f +1105,32028,14,2,f +1105,32062,4,1,f +1105,32064a,15,4,f +1105,32073,71,1,f +1105,32123b,14,2,f +1105,32184,71,2,f +1105,32270,0,2,f +1105,32316,14,1,f +1105,32324,71,1,f +1105,32449,15,4,f +1105,32498,0,1,f +1105,32523,0,2,f +1105,32524,0,4,f +1105,32525,0,2,f +1105,32526,72,2,f +1105,32556,19,1,f +1105,3300,15,1,f +1105,33299a,71,2,f +1105,3626c,1000,1,f +1105,3626cpr1508,14,1,f +1105,3626cpr1630,14,1,f +1105,3626cpr1631,14,1,f +1105,3660,0,1,f +1105,3666,0,5,f +1105,3673,71,7,f +1105,3700,0,1,f +1105,3701,14,1,f +1105,3703,72,4,f +1105,3705,0,7,f +1105,3710,0,2,f +1105,3738,72,4,f +1105,3749,19,3,f +1105,3795,71,2,f +1105,3795,72,1,f +1105,3839b,15,2,f +1105,3894,71,2,f +1105,3942c,71,3,f +1105,3956,71,1,f +1105,3958,72,1,f +1105,3960pr0018,52,1,f +1105,3961,148,1,f +1105,40244,0,4,f +1105,4032a,19,2,f +1105,4032a,0,7,f +1105,40490,72,6,f +1105,4162,0,6,f +1105,4185,41,3,f +1105,42023,72,4,f +1105,4209,71,2,f +1105,42610,71,3,f +1105,4274,1,18,f +1105,4285b,41,2,f +1105,4285b,52,1,f +1105,43093,1,6,f +1105,43121,0,3,f +1105,43857,71,2,f +1105,44375b,0,2,f +1105,44728,15,2,f +1105,4477,72,2,f +1105,4519,71,2,f +1105,45301,0,2,f +1105,4598,15,2,f +1105,4624,71,2,f +1105,4733,0,1,f +1105,4733,71,1,f +1105,4740,41,8,f +1105,4740pr0004b,52,1,f +1105,47846,15,1,f +1105,4871,72,2,f +1105,48729b,71,1,f +1105,48933,0,6,f +1105,48989,71,1,f +1105,50231,272,1,f +1105,50950,0,10,f +1105,54200,182,4,f +1105,55013,72,1,f +1105,55615,71,2,f +1105,56823c50,15,1,f +1105,59426,72,1,f +1105,59443,4,3,f +1105,59895,0,2,f +1105,59900,52,6,f +1105,59900,182,4,f +1105,60470a,0,2,f +1105,60477,15,2,f +1105,60478,72,4,f +1105,60479,0,6,f +1105,60484,71,1,f +1105,60485,71,1,f +1105,60849,71,1,f +1105,6091,15,4,f +1105,61184,71,2,f +1105,61409,15,6,f +1105,6141,36,2,f +1105,6141,15,4,f +1105,6141,182,10,f +1105,6141,179,9,f +1105,6141,297,4,f +1105,61483,71,1,f +1105,61485,0,2,f +1105,6154,15,2,f +1105,6155,71,2,f +1105,6239,0,3,f +1105,62462,15,2,f +1105,6249,71,1,f +1105,62743,0,4,f +1105,62810,71,1,f +1105,63868,71,4,f +1105,63965,0,1,f +1105,6536,15,2,f +1105,6541,4,2,f +1105,6553,71,2,f +1105,6558,1,5,f +1105,6636,0,10,f +1105,87079,0,2,f +1105,87081,72,2,f +1105,87082,0,1,f +1105,87083,72,4,f +1105,87544,71,1,f +1105,87580,72,5,f +1105,87990,321,1,f +1105,92280,15,4,f +1105,92409,0,2,f +1105,93273,15,4,f +1105,93273,0,3,f +1105,93273,179,4,f +1105,94925,71,2,f +1105,96874,25,1,t +1105,970c00pr0734,0,1,f +1105,970c00pr0805,272,1,f +1105,970c00pr0820,0,1,f +1105,970c00pr0821,0,1,f +1105,973pr2781c01,0,1,f +1105,973pr2909c01,272,1,f +1105,973pr2938c01,0,1,f +1105,973pr2943c01,15,1,f +1105,98585,41,1,f +1105,99009,71,1,f +1105,99010,0,1,f +1105,99206,71,1,f +1105,99207,71,2,f +1105,99780,15,12,f +1105,99781,71,3,f +1108,122c01,7,4,f +1108,3001a,7,1,f +1108,3004,7,4,f +1108,3004p90,7,2,f +1108,3005,7,2,f +1108,3020,7,2,f +1108,3021,7,4,f +1108,3022,7,2,f +1108,3023,7,2,f +1108,3024,36,1,f +1108,3034,7,1,f +1108,3039p23,7,1,f +1108,3062a,7,2,f +1108,3062a,34,1,f +1108,3065,46,3,f +1108,3069b,7,3,f +1108,3070b,7,2,f +1108,3622,7,2,f +1108,3626apr0001,14,1,f +1108,3641,0,8,f +1108,3651,7,1,f +1108,3679,7,1,f +1108,3680,7,1,f +1108,3710,7,2,f +1108,3730,7,1,f +1108,3731,7,1,f +1108,3787,7,2,f +1108,3788,7,2,f +1108,3794a,7,2,f +1108,3829c01,7,1,f +1108,3830,7,2,f +1108,3831,7,2,f +1108,3838,7,1,f +1108,3838,15,1,f +1108,3839a,7,1,f +1108,3842a,15,1,f +1108,3876,47,2,f +1108,3937,7,1,f +1108,3938,7,1,f +1108,3957a,7,1,f +1108,3959,7,1,f +1108,3960,7,1,f +1108,970c00,15,1,f +1108,973p90c05,15,1,f +1109,3001,25,1,f +1109,3022,25,1,f +1109,3024,2,1,f +1109,3039,25,2,f +1109,3660,25,2,f +1109,6141,14,1,f +1111,44341pr02,72,1,f +1111,44342pr02,72,1,f +1112,2566,0,1,f +1112,3004,1,2,f +1112,30173a,0,2,f +1112,3024,72,1,f +1112,4495b,4,1,f +1112,4631444,9999,1,f +1112,4631447,89,1,f +1112,47905,72,1,f +1112,54200,72,1,f +1112,55236,21,1,f +1112,59233pat0001,41,1,f +1112,59233pat0002,42,1,f +1112,6117,72,2,f +1112,61199,71,3,f +1112,6126b,57,1,f +1112,63965,70,3,f +1112,63965,0,1,f +1112,64567,0,2,f +1112,64727,71,1,f +1112,92338,72,1,f +1113,3009,71,4,f +1113,3024,15,1,f +1113,30367b,71,12,f +1113,3068b,25,1,f +1113,3068bpr0142,15,1,f +1113,3068bpr0143,15,1,f +1113,3068bpr0181,15,1,f +1113,3068bpr382,1,2,f +1113,33320,2,5,f +1113,33320,70,5,f +1113,33320,14,5,f +1113,33320,4,5,f +1113,3794b,72,8,f +1113,3794b,4,1,f +1113,3794b,14,1,f +1113,3794b,2,1,f +1113,3794b,70,1,f +1113,4081b,0,1,f +1113,49668,15,2,f +1113,49668,191,1,f +1113,54200,15,1,f +1113,54200,15,1,t +1113,6141,182,1,t +1113,6141,15,1,f +1113,6141,182,1,f +1113,6141,71,20,f +1113,6141,71,1,t +1113,6141,15,1,t +1113,64644,25,1,f +1113,64776pat0001,0,1,f +1113,87580,71,12,f +1113,87580,1,9,f +1113,91405,10,1,f +1113,92585,4,1,f +1114,11609,191,1,f +1114,14417,72,1,f +1114,14418,71,1,f +1114,3002,0,1,f +1114,3020,26,1,f +1114,3021,0,1,f +1114,3022,0,2,f +1114,3023,72,1,f +1114,3069b,85,1,f +1114,3069bpr0086,71,1,f +1114,3069bpr0130,322,1,f +1114,3666,26,1,f +1114,3700,0,2,f +1114,3937,0,1,f +1114,4740,71,1,f +1114,6134,71,1,f +1114,6141,46,1,f +1114,6141,71,1,f +1114,6141,36,1,f +1114,63868,0,1,f +1114,87580,26,1,f +1114,95347,0,1,f +1114,98782,36,1,f +1114,99780,0,1,f +1115,2456,1,4,f +1115,2456,4,4,f +1115,2456,15,4,f +1115,2456,14,4,f +1115,3001,15,28,f +1115,3001,1,28,f +1115,3001,0,14,f +1115,3001,4,28,f +1115,3001,14,28,f +1115,3001,2,14,f +1115,3002,14,14,f +1115,3002,0,6,f +1115,3002,2,6,f +1115,3002,1,14,f +1115,3002,15,14,f +1115,3002,4,14,f +1115,3003,4,38,f +1115,3003,1,38,f +1115,3003,2,20,f +1115,3003,14,38,f +1115,3003,0,20,f +1115,3003,15,38,f +1115,3006,4,2,f +1115,3006,1,2,f +1115,3006,14,2,f +1115,3007,1,2,f +1115,3007,14,2,f +1115,3007,4,2,f +1116,10247,14,4,f +1116,10247,71,4,f +1116,11090,0,2,f +1116,11127,41,1,f +1116,11203,72,4,f +1116,11211,71,1,f +1116,11212,71,2,f +1116,11213,71,6,f +1116,11214,72,2,f +1116,11215,71,1,f +1116,11476,71,2,f +1116,11477,72,4,f +1116,13547,0,2,f +1116,14181,71,1,f +1116,14226c11,0,2,f +1116,14718,0,4,f +1116,15207,71,2,f +1116,15303,33,3,f +1116,15400,72,1,f +1116,15462,28,4,f +1116,15573,320,2,f +1116,15573,14,1,f +1116,15672,72,4,f +1116,15672,70,1,f +1116,15672,28,4,f +1116,15712,72,3,f +1116,16577,72,2,f +1116,18671,71,1,f +1116,18673,148,1,f +1116,18674,70,4,f +1116,18677,71,2,f +1116,23444,0,1,f +1116,2412b,72,4,f +1116,2412b,70,1,f +1116,2412b,0,6,f +1116,2412b,320,2,f +1116,2419,71,4,f +1116,2420,28,2,f +1116,2431,71,6,f +1116,2431,320,2,f +1116,2432,71,3,f +1116,2436,14,2,f +1116,2445,72,3,f +1116,2450,71,4,f +1116,2450,19,2,f +1116,2450,72,2,f +1116,2456,1,1,f +1116,2540,71,2,f +1116,26138,72,1,f +1116,2639,72,2,f +1116,2653,71,3,f +1116,26933,0,1,f +1116,2730,71,2,f +1116,2780,0,43,f +1116,2877,72,2,f +1116,2921,71,4,f +1116,3001,72,2,f +1116,3004,72,2,f +1116,30043,71,1,f +1116,3005,71,2,f +1116,3005,320,6,f +1116,3008,71,1,f +1116,3009,72,3,f +1116,3010,19,2,f +1116,30136,70,1,f +1116,3020,72,3,f +1116,3020,70,1,f +1116,3020,0,5,f +1116,3020,14,2,f +1116,3020,71,13,f +1116,3021,28,4,f +1116,3022,14,4,f +1116,3022,84,1,f +1116,3023,72,6,f +1116,3023,36,2,f +1116,3023,70,8,f +1116,3023,14,3,f +1116,3024,28,7,f +1116,3024,70,1,f +1116,3024,320,8,f +1116,3024,71,1,f +1116,3024,14,10,f +1116,3024,72,4,f +1116,3028,72,1,f +1116,3029,72,1,f +1116,30304,15,1,f +1116,3031,72,2,f +1116,3032,72,4,f +1116,3033,71,1,f +1116,3034,71,1,f +1116,3035,72,4,f +1116,30350a,70,1,f +1116,30357,72,4,f +1116,30374,71,6,f +1116,30374,36,2,f +1116,30377,72,14,f +1116,3038,71,2,f +1116,3039,70,4,f +1116,3039,71,4,f +1116,3039,72,16,f +1116,30408pr0008,15,1,f +1116,3040b,70,2,f +1116,3040b,71,3,f +1116,3045,71,4,f +1116,30552,72,2,f +1116,3062b,46,4,f +1116,3068b,28,8,f +1116,3068b,72,2,f +1116,3069b,0,2,f +1116,3069b,40,2,f +1116,3069b,320,1,f +1116,3069b,72,2,f +1116,3070b,72,4,f +1116,3070b,70,1,f +1116,3070b,28,5,f +1116,3070bpr0164,28,1,f +1116,3176,72,2,f +1116,3176,14,2,f +1116,32009,72,2,f +1116,32013,72,6,f +1116,32013,14,2,f +1116,32018,71,2,f +1116,32028,71,2,f +1116,32054,0,2,f +1116,32062,4,16,f +1116,32064a,72,2,f +1116,32073,71,1,f +1116,32123b,14,1,f +1116,32123b,71,1,f +1116,32184,4,2,f +1116,32184,0,4,f +1116,32187,71,1,f +1116,32192,72,4,f +1116,32523,72,4,f +1116,32530,72,8,f +1116,32531,71,4,f +1116,3297,71,2,f +1116,3460,71,6,f +1116,3622,0,2,f +1116,3623,72,2,f +1116,3623,15,2,f +1116,3623,71,2,f +1116,3626cpr1149,78,1,f +1116,3626cpr1956,78,1,f +1116,3626cpr1957,78,1,f +1116,3626cpr1958,78,1,f +1116,3626cpr1981,0,1,f +1116,3660,72,4,f +1116,3660,71,1,f +1116,3665,72,4,f +1116,3665,71,1,f +1116,3665,70,1,f +1116,3666,71,2,f +1116,3666,72,6,f +1116,3666,70,1,f +1116,3673,71,4,f +1116,3700,19,5,f +1116,3701,70,1,f +1116,3701,71,2,f +1116,3705,0,1,f +1116,3707,0,3,f +1116,3710,484,2,f +1116,3710,320,4,f +1116,3710,71,9,f +1116,3710,14,2,f +1116,3710,72,2,f +1116,3713,71,2,f +1116,3743,0,2,f +1116,3747b,72,2,f +1116,3749,19,10,f +1116,3794b,71,2,f +1116,3795,72,3,f +1116,3832,71,2,f +1116,3839b,72,3,f +1116,3895,72,2,f +1116,3895,0,4,f +1116,3899,15,1,f +1116,3941,70,6,f +1116,3941,72,1,f +1116,3957a,71,1,f +1116,3960,70,1,f +1116,3960,72,5,f +1116,4006,0,1,f +1116,4032a,70,8,f +1116,4032a,72,8,f +1116,40490,72,2,f +1116,4079,70,2,f +1116,4081b,0,2,f +1116,4083,14,1,f +1116,4083,71,1,f +1116,41239,0,1,f +1116,4162,71,1,f +1116,41677,72,6,f +1116,41769,72,3,f +1116,41770,72,3,f +1116,41854,72,1,f +1116,42003,71,4,f +1116,4216,71,1,f +1116,42610,71,3,f +1116,4274,1,4,f +1116,4274,71,8,f +1116,4282,72,1,f +1116,4286,70,1,f +1116,4286,72,4,f +1116,4286,71,1,f +1116,4287,70,1,f +1116,4287,71,1,f +1116,4287,72,4,f +1116,43093,1,6,f +1116,43720,72,1,f +1116,43721,72,1,f +1116,43898,71,5,f +1116,43898,70,1,f +1116,44302a,72,1,f +1116,44358,71,2,f +1116,44359,72,4,f +1116,44375a,71,7,f +1116,44375a,484,1,f +1116,44567a,14,4,f +1116,44570,71,1,f +1116,4460b,72,2,f +1116,44728,19,4,f +1116,4477,72,3,f +1116,4519,71,6,f +1116,4697b,71,4,f +1116,47457,71,5,f +1116,4865a,72,2,f +1116,4865a,71,2,f +1116,4871,72,2,f +1116,48729b,0,2,f +1116,50304,72,1,f +1116,50304,71,1,f +1116,50305,72,1,f +1116,50305,71,1,f +1116,51739,72,1,f +1116,51739,70,2,f +1116,54383,71,2,f +1116,54384,71,2,f +1116,57899,0,2,f +1116,58247,0,2,f +1116,59349,71,2,f +1116,59426,72,4,f +1116,59443,0,2,f +1116,59443,72,4,f +1116,59900,72,6,f +1116,60470b,71,6,f +1116,60471,0,5,f +1116,60474,72,6,f +1116,60475b,71,2,f +1116,60478,71,10,f +1116,60483,25,4,f +1116,60581,71,2,f +1116,60581,47,1,f +1116,60596,72,1,f +1116,60616b,71,1,f +1116,60897,71,4,f +1116,60897,14,2,f +1116,6091,72,2,f +1116,6106,71,6,f +1116,61252,0,2,f +1116,61409,0,2,f +1116,6141,36,1,f +1116,6141,179,4,f +1116,61485,71,1,f +1116,6178,73,2,f +1116,61780,72,2,f +1116,6179,71,4,f +1116,6179,72,1,f +1116,6180,14,2,f +1116,62113,72,3,f +1116,6232,72,3,f +1116,62462,14,3,f +1116,62462,70,1,f +1116,63868,14,2,f +1116,63965,72,2,f +1116,64451,72,2,f +1116,64799,14,1,f +1116,6536,0,2,f +1116,6541,72,10,f +1116,6541,1,2,f +1116,6541,70,2,f +1116,6558,1,15,f +1116,6572,71,1,f +1116,6587,28,1,f +1116,6629,72,4,f +1116,85861,71,1,f +1116,85943,72,2,f +1116,85984,28,2,f +1116,85984pr0006,72,2,f +1116,87079,70,4,f +1116,87079,322,1,f +1116,87079,14,1,f +1116,87081,72,1,f +1116,87421,71,2,f +1116,87544,40,4,f +1116,87552,71,1,f +1116,87580,71,1,f +1116,87580,28,1,f +1116,87611,72,1,f +1116,87618,71,2,f +1116,87620,72,8,f +1116,87994,0,2,f +1116,87994,71,2,f +1116,87994,70,4,f +1116,88072,72,1,f +1116,88072,14,1,f +1116,90194,72,2,f +1116,91988,71,1,f +1116,92107,72,1,f +1116,92280,71,2,f +1116,92593,0,6,f +1116,92593,71,2,f +1116,92738,0,1,f +1116,95120,72,1,f +1116,95229,70,4,f +1116,96874,25,1,t +1116,970c00,72,2,f +1116,970c00,28,1,f +1116,970c00pr0735,15,1,f +1116,970c00pr1089,72,1,f +1116,973pr2795c01,15,1,f +1116,973pr3443c01,15,1,f +1116,973pr3444c01,15,1,f +1116,973pr3445c01,71,1,f +1116,973pr3467c01,72,1,f +1116,98100,71,1,f +1116,98138pr0010,179,2,f +1116,99021,72,1,f +1116,99207,0,4,f +1117,11211,71,2,f +1117,11477,85,8,f +1117,14704,71,2,f +1117,14769pr1003,15,1,f +1117,15208,19,2,f +1117,15456,0,2,f +1117,2412b,85,2,f +1117,3004,30,2,f +1117,3005,30,2,f +1117,3021,72,2,f +1117,3021,85,2,f +1117,3022,0,1,f +1117,3023,15,3,f +1117,3039,30,2,f +1117,3660,72,2,f +1117,3710,30,2,f +1117,3937,0,2,f +1117,4070,72,2,f +1117,47457,85,2,f +1117,47759,85,1,f +1117,49668,19,2,f +1117,54200,85,1,t +1117,54200,85,2,f +1117,58176,182,1,f +1117,58176,35,1,f +1117,6019,0,4,f +1117,60478,0,2,f +1117,6134,4,2,f +1117,6141,15,1,t +1117,6141,15,2,f +1117,87552,47,2,f +1117,87580,85,1,f +1117,98138pr0008,15,1,t +1117,98138pr0008,15,2,f +1117,99207,0,1,f +1117,99780,0,2,f +1117,99781,15,1,f +1118,3065,14,26,f +1118,3065,15,26,f +1118,3065,4,26,f +1118,3065,1,26,f +1119,10639,9999,1,t +1119,13731,72,4,f +1119,14226c11,0,1,t +1119,14226c11,0,8,f +1119,14226c41,0,3,f +1119,2357,70,2,f +1119,2420,70,10,f +1119,2420,28,2,f +1119,2431,70,5,f +1119,2431pr0028,72,1,f +1119,2445,72,4,f +1119,2540,71,4,f +1119,2654,0,2,t +1119,2654,0,6,f +1119,2736,71,2,f +1119,2780,0,1,t +1119,2780,0,12,f +1119,2817,0,6,f +1119,2921,1,2,f +1119,3003,70,5,f +1119,3003,28,3,f +1119,30033,179,1,f +1119,3004,71,3,f +1119,3004,70,4,f +1119,3004,28,10,f +1119,3005,1,2,f +1119,3005,15,6,f +1119,3005,28,18,f +1119,3009,19,1,f +1119,3010,70,2,f +1119,3010,15,3,f +1119,3010,71,1,f +1119,3010,28,13,f +1119,30136,19,8,f +1119,3020,72,4,f +1119,3020,288,27,f +1119,3021,70,5,f +1119,3021,0,2,f +1119,3021,288,17,f +1119,3022,70,4,f +1119,3023,1,8,f +1119,3023,28,32,f +1119,3023,4,1,f +1119,3023,70,18,f +1119,30237a,72,5,f +1119,3024,71,12,f +1119,3024,1,2,f +1119,3024,15,5,f +1119,3024,28,12,f +1119,3028,72,1,f +1119,3031,72,1,f +1119,3033,19,4,f +1119,3034,19,2,f +1119,3034,70,2,f +1119,3035,288,2,f +1119,3035,72,2,f +1119,30357,288,6,f +1119,3036,72,1,f +1119,3039,70,4,f +1119,3039,72,2,f +1119,3040b,70,6,f +1119,30565,288,4,f +1119,3068b,288,4,f +1119,3068b,71,1,f +1119,3069b,70,5,f +1119,3184,0,18,f +1119,32002,72,16,f +1119,32002,72,1,t +1119,32013,0,1,f +1119,32015,71,1,f +1119,32028,15,3,f +1119,32054,0,2,f +1119,32123b,71,1,f +1119,32123b,71,1,t +1119,32124,0,3,f +1119,32198,19,2,f +1119,32293,0,1,f +1119,32294,70,4,f +1119,32294,0,4,f +1119,32324,71,1,f +1119,32530,0,4,f +1119,32556,19,4,f +1119,3298,70,4,f +1119,3460,15,2,f +1119,3460,71,1,f +1119,3460,72,12,f +1119,3622,70,4,f +1119,3622,15,1,f +1119,3623,71,5,f +1119,3623,70,10,f +1119,3665,71,6,f +1119,3666,4,2,f +1119,3666,71,5,f +1119,3666,288,10,f +1119,3673,71,1,t +1119,3673,71,2,f +1119,3701,71,4,f +1119,3706,0,1,f +1119,3708,0,1,f +1119,3709,71,10,f +1119,3710,71,3,f +1119,3710,28,10,f +1119,3710,72,7,f +1119,3710,19,2,f +1119,3736,0,2,f +1119,3738,0,2,f +1119,3794b,72,6,f +1119,3794b,28,4,f +1119,3795,71,5,f +1119,3941,19,2,f +1119,3956,0,1,f +1119,3960,15,2,f +1119,4032a,72,8,f +1119,40490,15,1,f +1119,4070,19,4,f +1119,4085c,1,1,f +1119,4085c,71,1,f +1119,4151b,72,1,f +1119,4162,72,6,f +1119,41669,25,1,f +1119,41769,288,1,f +1119,41770,288,1,f +1119,41770,70,4,f +1119,4185,71,1,f +1119,4215b,28,2,f +1119,4274,71,8,f +1119,4282,288,16,f +1119,4286,0,2,f +1119,4286,71,2,f +1119,43337,40,1,f +1119,43722,72,3,f +1119,43723,72,3,f +1119,4519,71,2,f +1119,47397,72,1,f +1119,47398,72,1,f +1119,48092,80,8,f +1119,50950,4,2,f +1119,52107,0,1,f +1119,54200,4,1,t +1119,54200,1,1,f +1119,54200,71,10,f +1119,54200,1,1,t +1119,54200,4,2,f +1119,54200,71,1,t +1119,6005,71,4,f +1119,6019,72,16,f +1119,60474,71,1,f +1119,60583b,15,2,f +1119,60607,297,2,f +1119,6091,0,2,f +1119,6091,15,1,f +1119,6091,71,5,f +1119,6141,0,8,f +1119,6141,0,1,t +1119,6141,80,1,t +1119,6141,70,3,t +1119,6141,80,16,f +1119,6141,70,8,f +1119,61510,71,1,f +1119,62462,0,2,f +1119,63082,0,12,f +1119,63864,288,63,f +1119,63868,72,8,f +1119,63965,71,2,f +1119,64179,71,1,f +1119,6541,70,2,f +1119,6628,0,6,f +1119,6636,71,3,f +1119,6881b,288,4,f +1119,73983,72,8,f +1119,76138,71,2,f +1119,85543,15,5,f +1119,85545,1,2,f +1119,85984,72,4,f +1119,87082,0,2,f +1119,87083,72,1,f +1119,87087,71,4,f +1119,87087,1,5,f +1119,87994,0,1,f +1119,90195,19,2,f +1119,92438,288,4,f +1119,92438,19,4,f +1119,92907,71,1,f +1119,92950,70,2,f +1119,93273,0,1,f +1119,93273,70,2,f +1119,93274,0,1,f +1119,96874,25,1,t +1119,98138,179,1,t +1119,98138,179,10,f +1119,98263,71,2,f +1119,99206,71,3,f +1119,99780,72,2,f +1119,99781,71,2,f +1120,2341,4,2,f +1120,2357,7,1,f +1120,2359p03,19,1,f +1120,2412b,0,2,f +1120,2417,2,1,f +1120,2423,2,4,f +1120,2431,7,1,f +1120,2453a,6,2,f +1120,2454a,7,2,f +1120,2465,7,1,f +1120,2540,0,3,f +1120,2542,6,1,f +1120,2546,8,2,f +1120,2555,0,4,f +1120,2586pw1,19,1,f +1120,2586px3,19,2,f +1120,3001,7,1,f +1120,3002,0,4,f +1120,3002,7,1,f +1120,3003,0,2,f +1120,3003,7,6,f +1120,3003,2,2,f +1120,3004,2,1,f +1120,3004,0,6,f +1120,3004,1,1,f +1120,3004,7,1,f +1120,3004,6,12,f +1120,30041,0,2,f +1120,30042,0,2,f +1120,3005,2,11,f +1120,3005,0,2,f +1120,3005,6,9,f +1120,3005,15,1,f +1120,3006,7,3,f +1120,3008,1,1,f +1120,3008,7,1,f +1120,3008,0,1,f +1120,3009,7,1,f +1120,3009,0,2,f +1120,3010,7,3,f +1120,3010,0,2,f +1120,30113,6,1,f +1120,30114,0,5,f +1120,30115,0,2,f +1120,30126p01,15,1,t +1120,30126p01,15,7,f +1120,30127p01,15,8,f +1120,30127p01,15,1,t +1120,30129,6,4,f +1120,30131,6,2,f +1120,30136,6,5,f +1120,30137,6,8,f +1120,30138pb01,15,1,f +1120,3020,7,1,f +1120,3021,0,1,f +1120,3023,6,1,f +1120,3023,1,1,f +1120,3023,2,1,f +1120,3023,0,2,f +1120,3032,0,1,f +1120,3035,0,1,f +1120,3036,0,1,f +1120,3040b,15,2,f +1120,3040b,1,5,f +1120,3040b,4,5,f +1120,3062b,14,2,f +1120,3062b,6,2,f +1120,3062b,7,1,f +1120,3062b,36,2,f +1120,3068b,7,4,f +1120,3069b,0,1,f +1120,3460,1,1,f +1120,3622,7,7,f +1120,3622,0,5,f +1120,3623,6,1,f +1120,3626bpx57,14,2,f +1120,3626bpx58,14,2,f +1120,3626bpx59,14,1,f +1120,3626bpx60,14,1,f +1120,3626bpx61,14,1,f +1120,3665,4,3,f +1120,3665,1,1,f +1120,3666,7,2,f +1120,3679,7,4,f +1120,3680,0,4,f +1120,3710,0,2,f +1120,3794a,4,3,f +1120,3795,0,5,f +1120,3795,7,1,f +1120,3835,0,4,f +1120,3857,19,2,f +1120,3941,6,8,f +1120,4070,15,2,f +1120,4070,1,2,f +1120,4070,4,2,f +1120,4213,0,1,f +1120,4282,0,3,f +1120,4286,15,1,f +1120,4287,15,2,f +1120,4315,0,1,f +1120,4491b,1,1,f +1120,4491b,2,1,f +1120,4493c01px2,6,1,f +1120,4493cx6,15,1,f +1120,4497,0,6,f +1120,4498,0,5,f +1120,4499,0,5,f +1120,4515,0,1,f +1120,4515,1,3,f +1120,4529,0,1,f +1120,4865a,0,1,f +1120,4865a,7,4,f +1120,6020,6,4,f +1120,6021,6,1,f +1120,6064,2,4,f +1120,6082,7,5,f +1120,6083,7,3,f +1120,6107,7,8,f +1120,6111,7,2,f +1120,6112,7,1,f +1120,6126a,57,3,f +1120,6141,57,4,f +1120,6141,57,1,t +1120,6541,7,8,f +1120,6558,0,4,f +1120,6628,0,2,f +1120,970c00pb025,4,1,f +1120,970c00pb026,19,2,f +1120,970c02pb01,19,2,f +1120,970c02pb02,19,2,f +1120,973px103c01,19,2,f +1120,973px104c01,4,2,f +1120,973px105c01,19,1,f +1120,973px106c01,19,1,f +1120,973px107c01,6,1,f +1120,x172px1,15,1,f +1120,x172px2,15,1,f +1121,2496,0,2,f +1121,2655,7,2,f +1121,3020,15,2,f +1121,3021,15,1,f +1121,33078,4,1,f +1121,33078,92,1,f +1121,3839b,15,1,f +1121,3937,15,1,f +1121,3938,7,1,f +1121,4589,4,1,f +1121,4589,14,1,f +1121,4865a,15,2,f +1121,6231,15,2,f +1122,14226c11,0,1,f +1122,2335,4,2,f +1122,2432,1,4,f +1122,2432,0,4,f +1122,2456,1,2,f +1122,2456,72,3,f +1122,2489,70,2,f +1122,2495,4,1,f +1122,2496,0,1,f +1122,2540,71,2,f +1122,2610,14,2,f +1122,3001,4,7,f +1122,3001,1,13,f +1122,3001,72,30,f +1122,3001,70,9,f +1122,3001,15,12,f +1122,3001,19,8,f +1122,3001,73,9,f +1122,3002,4,3,f +1122,3002,72,16,f +1122,3002,1,8,f +1122,3002,14,3,f +1122,3002,15,10,f +1122,3002,73,6,f +1122,3002,2,3,f +1122,3003,25,6,f +1122,3003,15,14,f +1122,3003,72,14,f +1122,3003,14,26,f +1122,3003,1,4,f +1122,3004,1,12,f +1122,3004,4,6,f +1122,3004,14,2,f +1122,3004,72,6,f +1122,3004,70,9,f +1122,3004,73,34,f +1122,3004,15,3,f +1122,3005,19,6,f +1122,3005,25,9,f +1122,3005,15,16,f +1122,3005,4,12,f +1122,3005pr0003,2,2,f +1122,3007,0,2,f +1122,3008,0,4,f +1122,3009,2,3,f +1122,3009,1,13,f +1122,3009,4,5,f +1122,3009,14,3,f +1122,3010,70,7,f +1122,3010,15,10,f +1122,3010,14,9,f +1122,3010,1,9,f +1122,30137,70,4,f +1122,30165,4,3,f +1122,3020,19,4,f +1122,3020,14,2,f +1122,3021,0,6,f +1122,3021,1,2,f +1122,30218,15,1,f +1122,3022,4,2,f +1122,3022,14,4,f +1122,30222,42,1,f +1122,3023,73,15,f +1122,3023,14,6,f +1122,3028,72,1,f +1122,3031,2,2,f +1122,3031,4,1,f +1122,3031,15,1,f +1122,3034,72,3,f +1122,3034,15,2,f +1122,30340,15,2,f +1122,3035,1,2,f +1122,3036,72,1,f +1122,3037,14,4,f +1122,3038,15,4,f +1122,3038,72,14,f +1122,3039,72,4,f +1122,3039,1,2,f +1122,30395,72,2,f +1122,3040b,70,4,f +1122,3040b,2,2,f +1122,3040b,4,2,f +1122,3040b,71,2,f +1122,30414,72,2,f +1122,3044c,72,6,f +1122,3045,4,4,f +1122,3062b,72,6,f +1122,3065,46,8,f +1122,3069b,4,2,f +1122,3069b,15,8,f +1122,33121,191,1,f +1122,3460,15,2,f +1122,3622,15,10,f +1122,3622,19,2,f +1122,3622,71,8,f +1122,3622,14,2,f +1122,3622,25,2,f +1122,3622,0,8,f +1122,3623,4,4,f +1122,3623,15,6,f +1122,3624,15,1,f +1122,3626bpr0387,14,6,f +1122,3626bpr0580,14,6,f +1122,3660,4,1,f +1122,3660,70,5,f +1122,3665,15,22,f +1122,3665,70,12,f +1122,3665,1,6,f +1122,3665,0,8,f +1122,3666,73,4,f +1122,3684,15,4,f +1122,3700,19,2,f +1122,3710,70,2,f +1122,3710,0,18,f +1122,3710,25,3,f +1122,3710,19,6,f +1122,3710,15,7,f +1122,3731,71,1,f +1122,3747b,70,1,f +1122,3747b,1,1,f +1122,3794b,1,2,f +1122,3795,0,6,f +1122,3795,72,6,f +1122,3795,15,6,f +1122,3829c01,15,5,f +1122,3833,4,1,f +1122,3835,0,1,f +1122,3941,0,4,f +1122,3941,1,2,f +1122,3941,4,2,f +1122,3957a,0,1,f +1122,3958,70,2,f +1122,3958,4,3,f +1122,4070,15,4,f +1122,4085c,72,2,f +1122,4150,0,2,f +1122,41539,0,4,f +1122,42022,2,2,f +1122,4286,15,4,f +1122,4349,4,1,f +1122,43722,25,1,f +1122,43723,25,1,f +1122,43888,72,1,f +1122,44301a,0,8,f +1122,44302a,14,8,f +1122,4485,25,1,f +1122,4485,27,1,f +1122,4485,1,1,f +1122,4485,4,1,f +1122,4530,0,1,f +1122,4600,0,2,f +1122,4624,15,4,f +1122,4790,70,2,f +1122,4855,15,1,f +1122,4871,15,2,f +1122,50303,0,2,f +1122,54383,27,1,f +1122,59363,484,1,f +1122,60169,72,2,f +1122,6019,14,2,f +1122,6020,71,1,f +1122,60474,0,1,f +1122,60592,0,4,f +1122,60594,0,5,f +1122,60596,15,2,f +1122,60623,15,2,f +1122,6075,14,1,f +1122,6093,0,1,f +1122,6093,70,1,f +1122,6141,36,3,f +1122,6141,36,1,t +1122,6141,1,1,t +1122,6141,15,1,t +1122,6141,25,1,t +1122,6141,15,2,f +1122,6141,47,1,t +1122,6141,25,3,f +1122,6141,47,2,f +1122,6141,1,2,f +1122,61485,0,1,f +1122,6215,1,4,f +1122,6215,15,5,f +1122,62696,308,1,f +1122,63082,0,1,f +1122,63965,0,4,f +1122,64648,179,4,f +1122,64951,70,1,f +1122,6881b,71,2,f +1122,71155,0,1,f +1122,73983,0,2,f +1122,85974,70,1,f +1122,87087,72,4,f +1122,87414,0,4,f +1122,92438,1,5,f +1122,970c00,0,2,f +1122,970c00,71,2,f +1122,970c00,272,1,f +1122,970c00,4,1,f +1122,970c00,25,2,f +1122,970c00,1,2,f +1122,970c00,15,1,f +1122,970x026,14,1,f +1122,973c01,1,2,f +1122,973c01,15,1,f +1122,973c07,1,2,f +1122,973pr1173c01,4,1,f +1122,973pr1183c01,25,1,f +1122,973pr1244c01,73,1,f +1122,973pr1444c01,14,1,f +1122,973pr1480c01,15,1,f +1122,973pr1517c01,73,1,f +1122,973pr1580c01,15,1,f +1126,2421,0,1,f +1126,2654,0,1,f +1126,3021,25,1,f +1126,3023,1,1,f +1126,3039,14,1,f +1126,3039,47,1,f +1126,3068b,25,1,f +1126,3298,25,1,f +1126,3795,4,6,f +1126,4488,0,1,f +1126,4600,0,1,f +1126,4624,71,2,f +1126,59895,0,2,f +1126,59900,0,4,f +1127,2399,1,1,f +1127,2412b,1,1,f +1127,2420,15,2,f +1127,2431,1,1,f +1127,2431,15,1,f +1127,2431,0,2,f +1127,2432,14,1,f +1127,2436,15,3,f +1127,2437,41,1,f +1127,2445,7,2,f +1127,2446,15,1,f +1127,2452,0,2,f +1127,2460,7,2,f +1127,251,0,1,f +1127,2540,15,1,f +1127,2582,15,6,f +1127,2780,0,1,f +1127,2875,7,4,f +1127,2880,0,2,f +1127,3002,7,2,f +1127,3003,0,1,f +1127,3003,7,3,f +1127,3004,1,1,f +1127,3009,1,4,f +1127,3010,15,1,f +1127,3010,1,2,f +1127,3020,15,3,f +1127,3020,7,4,f +1127,3020,1,1,f +1127,3021,0,2,f +1127,3021,7,1,f +1127,3022,7,4,f +1127,3022,0,4,f +1127,3023,7,2,f +1127,3023,0,3,f +1127,3023,14,1,f +1127,3023,1,1,f +1127,3023,15,1,f +1127,3023,4,3,f +1127,3024,36,1,f +1127,3024,0,2,f +1127,3024,1,4,f +1127,3024,34,1,f +1127,3034,14,1,f +1127,3035,7,1,f +1127,3039pc5,7,2,f +1127,3039pr0005,15,1,f +1127,3040b,7,2,f +1127,3040b,15,2,f +1127,3062b,14,1,f +1127,3068b,0,2,f +1127,3068b,7,2,f +1127,3068bp11,15,1,f +1127,3069b,15,1,f +1127,3070b,15,2,f +1127,3070b,46,2,f +1127,3070b,1,2,f +1127,3139,0,6,f +1127,3176,15,1,f +1127,3176,7,1,f +1127,3460,7,1,f +1127,3474,7,1,f +1127,3585,7,1,f +1127,3586,7,1,f +1127,3613,15,1,f +1127,3614b,7,1,f +1127,3623,4,2,f +1127,3623,15,4,f +1127,3626bp06,14,3,f +1127,3641,0,4,f +1127,3660,7,3,f +1127,3666,1,5,f +1127,3666,15,5,f +1127,3666,7,1,f +1127,3679,7,1,f +1127,3710,15,9,f +1127,3710,1,1,f +1127,3749,7,2,f +1127,3788,15,1,f +1127,3794a,14,1,f +1127,3794a,7,1,f +1127,3795,15,1,f +1127,3795,0,1,f +1127,3829c01,1,1,f +1127,3832,0,1,f +1127,3838,15,1,f +1127,3870,7,3,f +1127,3935,7,1,f +1127,3936,7,1,f +1127,3956,15,1,f +1127,3956,0,1,f +1127,3962b,0,1,f +1127,4083,15,1,f +1127,4085c,15,2,f +1127,4162,15,2,f +1127,4211,15,1,f +1127,4274,7,2,f +1127,4274,7,1,t +1127,4276b,7,1,f +1127,4276b,14,1,f +1127,4282,14,1,f +1127,4319,14,1,f +1127,4477,15,4,f +1127,4477,1,2,f +1127,4477,4,2,f +1127,4485,4,2,f +1127,4531,15,2,f +1127,4533,1,4,f +1127,4596,15,1,f +1127,4623,7,1,f +1127,4624,15,4,f +1127,4624,7,6,f +1127,4625,1,3,f +1127,4625,15,6,f +1127,4740,33,1,f +1127,4854,7,5,f +1127,4855,7,2,f +1127,4856a,0,1,f +1127,4856a,1,2,f +1127,4857,7,3,f +1127,4858,15,1,f +1127,4858,1,1,f +1127,4859,15,1,f +1127,4859,4,1,f +1127,4859,0,2,f +1127,4861,15,1,f +1127,4861,7,1,f +1127,4862,41,4,f +1127,4863,1,2,f +1127,4864a,1,4,f +1127,4865a,15,5,f +1127,4865a,1,2,f +1127,4867,7,1,f +1127,4868a,15,4,f +1127,4869,7,4,f +1127,4870,7,3,f +1127,55295,8,1,f +1127,55296,8,1,f +1127,55297,8,1,f +1127,55298,8,1,f +1127,55299,8,1,f +1127,55300,8,1,f +1127,6048c,0,3,f +1127,6141,46,2,f +1127,6141,36,8,f +1127,6141,34,1,f +1127,6141,36,1,t +1127,6141,14,1,t +1127,6141,46,1,t +1127,6141,34,1,t +1127,6141,14,4,f +1127,6157,0,2,f +1127,6192,15,2,f +1127,6217b,0,2,f +1127,6219,0,1,f +1127,6219,15,1,f +1127,6230,0,6,f +1127,6231,15,2,f +1127,6233,0,3,f +1127,6238,33,1,f +1127,6239,15,1,f +1127,6541,15,2,f +1127,6564,15,2,f +1127,6565,15,2,f +1127,75535,0,2,f +1127,75535,15,3,f +1127,769,334,1,f +1127,92410,1,4,f +1127,970c00,15,1,f +1127,970c00,1,2,f +1127,973px112c01,1,2,f +1127,973px113c01,15,1,f +1128,11640,4,1,f +1128,15573,15,3,f +1128,15573,0,1,f +1128,15672,71,2,f +1128,15712,72,2,f +1128,15712,0,2,f +1128,18868a,41,2,f +1128,19981pr0006,41,1,f +1128,21445,71,4,f +1128,22652,5,1,f +1128,2540,71,2,f +1128,2540,0,1,f +1128,30028,0,4,f +1128,3020,71,2,f +1128,3021,0,1,f +1128,3023,41,8,f +1128,3024,72,1,t +1128,3024,47,1,t +1128,3024,47,2,f +1128,3024,72,2,f +1128,3065,47,1,f +1128,3070b,40,1,t +1128,3070b,40,2,f +1128,32028,71,2,f +1128,3626cpr1276,78,1,f +1128,3710,71,1,f +1128,3710,72,1,f +1128,3941,41,2,f +1128,4032a,0,1,f +1128,4081b,71,2,f +1128,44676,15,2,f +1128,4599b,71,2,f +1128,4599b,71,1,t +1128,4735,71,2,f +1128,4740,15,2,f +1128,54200,40,1,t +1128,54200,40,2,f +1128,60849,71,1,t +1128,60849,71,2,f +1128,60897,15,2,f +1128,6141,41,1,t +1128,6141,41,6,f +1128,6141,182,4,f +1128,6141,182,1,t +1128,62810,308,1,f +1128,74967,71,4,f +1128,87079,71,1,f +1128,87994,0,1,t +1128,87994,0,2,f +1128,92280,0,2,f +1128,970c00,73,1,f +1128,973pr2463c01,4,1,f +1128,99780,71,4,f +1129,64022,72,64,f +1132,2431,6,1,f +1132,3003,15,2,f +1132,3004,6,2,f +1132,3022,4,7,f +1132,3022,1,1,f +1132,3022,2,4,f +1132,3024,6,4,f +1132,3040b,6,2,f +1132,3069b,6,6,f +1132,3070b,6,4,f +1132,3307,6,2,f +1132,3623,6,6,f +1132,3710,6,3,f +1132,3794a,6,2,f +1132,3795,6,2,f +1132,3832,6,3,f +1132,4032a,4,1,f +1132,4032a,14,4,f +1132,4032a,1,4,f +1132,4032a,15,1,f +1132,4275b,6,2,f +1132,4276b,6,2,f +1132,4286,6,4,f +1132,4477,6,2,f +1132,6141,4,2,f +1132,6141,1,1,f +1132,6141,15,2,f +1134,1382stk01,9999,1,t +1134,1382stk02,9999,1,t +1134,2357,7,4,f +1134,2412b,379,19,f +1134,2432,8,1,f +1134,2453a,8,2,f +1134,2454a,7,5,f +1134,2454a,8,15,f +1134,2456,0,1,f +1134,2458,8,2,f +1134,2496,0,2,f +1134,2540,0,2,f +1134,2569,42,1,f +1134,2588,21,1,f +1134,2653,7,2,f +1134,2655,7,2,f +1134,2877,0,7,f +1134,298c02,14,1,t +1134,298c02,14,1,f +1134,30000,8,4,f +1134,3002,379,1,f +1134,3004,8,6,f +1134,3004,379,19,f +1134,3004,7,5,f +1134,30044,7,2,f +1134,30045,0,2,f +1134,3005,7,2,f +1134,3005,8,18,f +1134,3005,0,1,f +1134,3008,8,2,f +1134,3009,8,3,f +1134,3010,8,9,f +1134,3010,379,4,f +1134,30103,0,2,f +1134,30105,8,1,f +1134,30148,0,1,f +1134,30151a,47,1,f +1134,30169,0,1,f +1134,3020,8,5,f +1134,3020,379,3,f +1134,3021,379,3,f +1134,3022,0,5,f +1134,3023,8,3,f +1134,3023,0,5,f +1134,30236,7,3,f +1134,30237a,8,4,f +1134,3027,0,1,f +1134,30274,8,1,f +1134,3031,8,1,f +1134,3032,0,3,f +1134,3034,0,4,f +1134,3034,8,2,f +1134,3037,8,2,f +1134,3039,8,4,f +1134,30397,0,1,f +1134,3040b,8,10,f +1134,3045,8,2,f +1134,30608,0,1,f +1134,3062b,7,13,f +1134,3062b,42,13,f +1134,3068b,379,7,f +1134,3068bpb0013,0,2,f +1134,3069b,379,3,f +1134,3069bp02,7,1,f +1134,3069bpb004,8,2,f +1134,32028,15,4,f +1134,32124,0,1,f +1134,32269,7,1,f +1134,32270,7,1,f +1134,32278,8,4,f +1134,3245b,7,12,f +1134,32530,0,2,f +1134,33299a,7,1,f +1134,3460,0,3,f +1134,3622,8,2,f +1134,3626b,7,1,f +1134,3626bpb0011,25,1,f +1134,3626bpb0042,378,1,f +1134,3626bpr0126,14,1,f +1134,3626bpr0190,15,1,f +1134,3626bpr0895,15,2,f +1134,3626bpx111,14,1,f +1134,3626bpx116,14,1,f +1134,3626bpx117,14,1,f +1134,3626bpx150,47,1,f +1134,3647,7,1,f +1134,3647,7,1,t +1134,3648b,7,2,f +1134,3659,7,2,f +1134,3660,8,8,f +1134,3665,8,6,f +1134,3666,379,2,f +1134,3673,7,1,t +1134,3673,7,1,f +1134,3678a,320,1,f +1134,3679,7,1,f +1134,3680,0,1,f +1134,3700,7,5,f +1134,3705,0,2,f +1134,3707,6,1,f +1134,3709,0,2,f +1134,3710,379,5,f +1134,3737,0,1,f +1134,3738,0,1,f +1134,3749,7,2,f +1134,3754,7,2,f +1134,3794a,0,11,f +1134,3794a,7,5,f +1134,3795,379,3,f +1134,3795,8,2,f +1134,3830,7,2,f +1134,3831,7,2,f +1134,3901,6,1,f +1134,3937,7,5,f +1134,3938,0,5,f +1134,3941,42,1,f +1134,3941,379,1,f +1134,3957a,320,1,f +1134,3960px2,52,1,f +1134,40234,6,1,f +1134,4032a,379,5,f +1134,4070,379,12,f +1134,4079,15,1,f +1134,41539,0,5,f +1134,4162,8,2,f +1134,4163021,9999,1,t +1134,41862,8,1,f +1134,42445,47,1,f +1134,42446,7,1,f +1134,42446,7,1,t +1134,42448,0,2,f +1134,4274,7,1,f +1134,4274,7,2,t +1134,4287,8,6,f +1134,4349,7,1,f +1134,4476b,8,2,f +1134,4485,0,1,f +1134,4497,0,2,f +1134,4519,4,1,f +1134,4589,42,5,f +1134,4589,34,2,f +1134,4716,7,2,f +1134,4738a,6,1,f +1134,4739a,6,1,f +1134,4740,42,12,f +1134,55295,0,1,f +1134,55296,0,1,f +1134,55297,0,1,f +1134,55298,0,1,f +1134,55299,0,1,f +1134,55300,0,1,f +1134,60169,7,2,f +1134,6093,25,1,f +1134,6126a,57,4,f +1134,6141,46,1,t +1134,6141,15,3,f +1134,6141,36,1,f +1134,6141,34,1,t +1134,6141,34,2,f +1134,6141,36,1,t +1134,6141,15,1,t +1134,6141,46,4,f +1134,6179,15,1,f +1134,6232,8,4,f +1134,6260,15,1,f +1134,6265,15,1,t +1134,6265,15,2,f +1134,6266,15,1,t +1134,6266,15,2,f +1134,6538b,7,1,f +1134,6553,0,1,f +1134,6636,0,2,f +1134,78c02,179,2,f +1134,970c00,8,1,f +1134,970c00,19,1,f +1134,970c00,0,1,f +1134,970c11pb06,0,1,f +1134,973pb0029c01,6,1,f +1134,973px166c01,15,1,f +1134,973px171c01,320,1,f +1134,973px172c01,19,1,f +1134,973px65c01,15,1,f +1134,x231px1,378,1,f +1137,10b,2,1,f +1137,15,0,2,f +1137,15,4,2,f +1137,17,0,2,f +1137,17,4,2,f +1137,21,47,2,f +1137,242c01,4,4,f +1137,3001a,14,2,f +1137,3001a,1,4,f +1137,3002a,1,4,f +1137,3002a,14,2,f +1137,3003,14,2,f +1137,3003,1,4,f +1137,3004,0,2,f +1137,3004,14,4,f +1137,3004,1,24,f +1137,3004,47,2,f +1137,3005,14,4,f +1137,3005,1,14,f +1137,3006,1,2,f +1137,3007,1,2,f +1137,3008,14,4,f +1137,3008,1,14,f +1137,3009,1,15,f +1137,3009,14,4,f +1137,3009p01,1,1,f +1137,3009p01,14,1,f +1137,3010,47,2,f +1137,3010,1,12,f +1137,3010,14,4,f +1137,3010pb035e,1,1,f +1137,3020,4,1,f +1137,3020,1,6,f +1137,3020,14,4,f +1137,3021,14,2,f +1137,3021,1,4,f +1137,3022,14,2,f +1137,3022,1,2,f +1137,3023,14,6,f +1137,3023,1,6,f +1137,3024,1,1,f +1137,3024,14,2,f +1137,3029,1,2,f +1137,3030,1,2,f +1137,3031,14,1,f +1137,3031,1,1,f +1137,3032,14,1,f +1137,3032,1,1,f +1137,3034,14,2,f +1137,3034,4,2,f +1137,3034,1,4,f +1137,3035,14,2,f +1137,3035,1,2,f +1137,3036,1,1,f +1137,3037,47,2,f +1137,3037,4,14,f +1137,3038,4,4,f +1137,3039,4,8,f +1137,3039,14,6,f +1137,3039,47,2,f +1137,3039,1,6,f +1137,3040a,1,2,f +1137,3040a,4,2,f +1137,3041,4,4,f +1137,3042,4,2,f +1137,3043,4,1,f +1137,3044a,4,1,f +1137,3045,4,4,f +1137,3046a,4,4,f +1137,3046a,1,2,f +1137,3048a,4,2,f +1137,3049b,4,1,f +1137,3062a,1,2,f +1137,3081cc01,4,8,f +1137,3127b,4,1,f +1137,3137c01,0,4,f +1137,3139,0,3,f +1137,3145,14,2,f +1137,3149c01,4,1,f +1137,3176,4,1,f +1137,3183a,14,1,f +1137,3183a,1,1,f +1137,3184,1,1,f +1137,3184,14,1,f +1137,3228a,1,4,f +1137,3317,1,1,f +1137,3317,14,1,f +1137,3324c01,4,2,f +1137,3403c01,0,1,f +1137,3433,14,1,f +1137,3436,14,1,f +1137,3455,1,4,f +1137,3460,7,4,f +1137,3460,4,2,f +1137,3461,7,1,f +1137,3462,14,1,f +1137,3464,4,3,f +1137,3475a,14,2,f +1137,3480,7,2,f +1137,3481,14,2,f +1137,3483,0,4,f +1137,3491,4,1,f +1137,3492c01,14,1,f +1137,3579,1,2,f +1137,3581,1,4,f +1137,3582,14,4,f +1137,3624,4,2,f +1137,3624,0,2,f +1137,3626a,14,4,f +1137,3633,14,4,f +1137,3634,0,4,f +1137,3641,0,8,f +1137,3660,14,6,f +1137,3660,1,10,f +1137,453cc01,4,2,f +1137,56823,0,1,f +1137,586c01,14,1,f +1137,7039,4,4,f +1137,7049b,0,4,f +1137,7930,4,2,f +1137,8,1,3,f +1137,828,4,1,f +1138,2542,4,1,f +1138,2555,0,1,f +1138,3009,6,2,f +1138,30115,4,1,f +1138,30141,8,1,f +1138,30153,42,1,f +1138,30158,6,1,f +1138,30167,0,1,f +1138,3068bpx24,19,1,f +1138,3069bp03,7,1,f +1138,3626bpx93,14,1,f +1138,3794a,4,1,f +1138,3841,8,1,f +1138,3937,4,1,f +1138,3938,0,1,f +1138,3958,6,1,f +1138,970c00,6,1,f +1138,973paac01,8,1,f +1140,2412b,71,4,f +1140,2420,4,2,f +1140,2436,4,1,f +1140,2877,72,1,f +1140,3005,4,2,f +1140,3020,15,1,f +1140,3020,4,2,f +1140,3021,4,3,f +1140,3022,4,1,f +1140,3023,4,4,f +1140,3065,40,4,f +1140,3069b,14,2,f +1140,3666,72,2,f +1140,3679,71,1,f +1140,3680,15,1,f +1140,3710,4,2,f +1140,3795,4,1,f +1140,4081b,71,2,f +1140,44728,15,2,f +1140,4589,14,1,f +1140,4600,71,2,f +1140,4624,71,4,f +1140,48336,71,2,f +1140,54200,33,1,t +1140,54200,46,2,f +1140,54200,33,2,f +1140,54200,36,1,t +1140,54200,46,1,t +1140,54200,71,2,f +1140,54200,36,2,f +1140,54200,71,1,t +1140,60470a,71,1,f +1140,60478,71,2,f +1140,6141,0,1,t +1140,6141,0,4,f +1140,87414,0,4,f +1140,92280,0,2,f +1140,92690,71,1,f +1141,2431pr0017,14,2,f +1141,2540,1,1,f +1141,30171,7,1,f +1141,3021,1,1,f +1141,3032,7,1,f +1141,3068bpx5,0,1,f +1141,3069b,14,1,f +1141,3069bp0a,0,1,f +1141,3626bpr0126,14,1,f +1141,3626bpx33,14,1,f +1141,3666,0,1,f +1141,3710,7,1,f +1141,3794a,7,3,f +1141,4349,7,1,f +1141,4485,0,1,f +1141,6019,1,2,f +1141,6020,0,1,f +1141,6126a,57,3,f +1141,73983,0,1,f +1141,970c00,0,2,f +1141,973px65c01,15,1,f +1141,973px66c01,0,1,f +1144,bin06,15,1,f +1148,48456,15,3,f +1148,48459,15,4,f +1148,48462,15,1,f +1148,48469,15,2,f +1148,48470,15,2,f +1148,48471,15,2,f +1148,48472,15,1,f +1148,48473,15,2,f +1148,48474,15,2,f +1148,48475,15,5,f +1148,48477,15,2,f +1148,48478,15,1,f +1148,48479,15,2,f +1148,48480,15,1,f +1148,48481,15,2,f +1148,48482,15,3,f +1148,48483,15,2,f +1148,48484,15,1,f +1148,48498,15,2,f +1148,48499,15,1,f +1148,48519,15,2,f +1148,48520,15,1,f +1148,48525,15,2,f +1148,48526,15,1,f +1148,48527,15,2,f +1148,48529,15,1,f +1148,48530,15,6,f +1148,48532,15,1,f +1148,48533,15,2,f +1148,48534,15,1,f +1148,48543,15,2,f +1148,48545,15,1,f +1148,48547,15,2,f +1148,48548,15,1,f +1148,48550,15,2,f +1148,48552,15,2,f +1148,48553,15,4,f +1148,48554,15,2,f +1148,48557,15,5,f +1148,48558,15,1,f +1148,48560,15,2,f +1148,48561,15,1,f +1148,48563,15,2,f +1148,48564,15,2,f +1148,48565,15,3,f +1148,48585,15,1,f +1148,48586,15,2,f +1148,48587,15,1,f +1148,48588,15,2,f +1148,48589,15,1,f +1148,48591,15,2,f +1148,48652,15,1,f +1148,48653,15,1,f +1148,48655,15,1,f +1148,48677,15,1,f +1148,48680,15,1,f +1148,6309,15,26,f +1148,6851,15,2,f +1149,11211,14,2,f +1149,11211,71,2,f +1149,11212,15,1,f +1149,11476,15,2,f +1149,11477,25,8,f +1149,14719,15,1,f +1149,14769pr1003,15,2,f +1149,15068,14,2,f +1149,15070,14,10,f +1149,15571,25,1,f +1149,2420,14,4,f +1149,3001,14,1,f +1149,3003,15,1,f +1149,3004,14,2,f +1149,3010,4,1,f +1149,3020,14,3,f +1149,3020,15,1,f +1149,3021,14,1,f +1149,3021,25,1,f +1149,3021,15,2,f +1149,3022,15,2,f +1149,3022,14,2,f +1149,3023,25,2,f +1149,3023,4,1,f +1149,3023,14,2,f +1149,3024,191,3,f +1149,3031,14,1,f +1149,30357,191,2,f +1149,3039,14,4,f +1149,3069b,14,2,f +1149,3070b,15,2,f +1149,3622,14,2,f +1149,3660,14,4,f +1149,3665,14,2,f +1149,3679,71,2,f +1149,3680,15,2,f +1149,50950,14,4,f +1149,52501,14,2,f +1149,54200,191,6,f +1149,60478,191,2,f +1149,61252,25,6,f +1149,85984,14,3,f +1149,92692,15,2,f +1149,93273,14,1,f +1149,99206,71,1,f +1149,99780,14,1,f +1152,2684c01a,15,1,f +1154,11170,322,4,f +1154,16598,322,1,f +1154,18825pr0012,4,1,f +1154,19084,179,1,f +1154,23146,1,1,f +1154,23991,25,1,f +1154,24186,70,1,f +1154,31042,179,1,f +1154,3437,4,1,f +1154,3437,72,1,f +1154,3437,15,6,f +1154,4066,41,2,f +1154,40666,15,1,f +1154,4196,71,1,f +1154,51703,41,1,f +1154,61649,15,1,f +1154,64148,15,1,f +1154,6446,484,1,f +1154,76371,15,2,f +1154,98223,15,1,f +1154,98233,15,2,f +1156,2723pr01,15,2,f +1156,x1161cx1,0,2,f +1157,3001,4,2,f +1157,3001,1,2,f +1157,3002,4,2,f +1157,3004,14,3,f +1157,3888ac01,0,1,f +1157,4006,0,1,f +1157,4086,14,1,f +1157,4088px3,1,1,f +1157,691,4,1,f +1157,692,4,1,f +1157,fab1c,9999,1,f +1157,fabai1,14,1,f +1158,1,15,2,f +1158,2,15,1,f +1158,3,4,2,f +1158,3003,15,2,f +1158,3005,4,2,f +1158,3010,0,1,f +1158,3010,15,11,f +1158,3023,0,4,f +1158,3023,14,1,f +1158,3023,4,2,f +1158,3023,15,1,f +1158,3029,15,1,f +1158,3030,15,1,f +1158,3031,15,1,f +1158,3032,15,1,f +1158,3037,0,2,f +1158,3039,0,1,f +1158,3068b,4,2,f +1158,3068b,15,23,f +1158,3069a,0,5,f +1158,3069a,15,9,f +1158,3069a,14,1,f +1158,3069a,4,2,f +1158,3070a,1,2,f +1161,15,1,2,f +1161,17,1,2,f +1161,21,47,1,f +1161,3003pt1,14,1,f +1161,3004,14,3,f +1161,3008,14,2,f +1161,3010,14,5,f +1161,3010pb035e,1,1,f +1161,3020,14,3,f +1161,3020,7,1,f +1161,3020,1,1,f +1161,3022,0,1,f +1161,3023,7,1,f +1161,3023,1,1,f +1161,3030,1,1,f +1161,3031,1,1,f +1161,3035,14,1,f +1161,3062a,4,1,f +1161,3137c01,0,5,f +1161,3139,0,13,f +1161,3183a,1,1,f +1161,3314,4,1,f +1161,3317,14,1,f +1161,3464,4,1,f +1161,3624,1,2,f +1161,3626a,14,2,f +1161,649pb09,15,1,f +1161,784,14,1,f +1161,8,7,1,f +1161,817c01,1,1,f +1162,2431,15,1,f +1162,30027b,71,1,t +1162,30027b,71,4,f +1162,30028,0,4,f +1162,3020,15,1,f +1162,3023,36,2,f +1162,3024,47,2,f +1162,3024,47,1,t +1162,3031,0,1,f +1162,30374,294,1,t +1162,30374,294,2,f +1162,3710,4,3,f +1162,3794a,4,3,f +1162,3795,0,1,f +1162,4865a,40,1,f +1162,50947,4,2,f +1162,50950,15,3,f +1162,6019,4,1,t +1162,6019,4,2,f +1162,6157,72,2,f +1163,2780,0,2,f +1163,32013,25,2,f +1163,32015,25,2,f +1163,32039,25,1,f +1163,32062,0,2,f +1163,32138,0,1,f +1163,32140,0,2,f +1163,32553,4,3,f +1163,32554,45,1,f +1163,32573,25,1,f +1163,3749,7,1,f +1163,40342,4,1,f +1163,4519,0,5,f +1163,6553,0,3,f +1163,71509,0,1,f +1163,71509,0,1,t +1164,2335,4,1,f +1164,2335,0,1,f +1164,2335,1,1,f +1164,2335,14,1,f +1164,2335pr02,15,1,f +1164,2343,14,1,f +1164,2348b,33,1,f +1164,2349a,15,1,f +1164,2357,15,2,f +1164,2431,0,3,f +1164,2431,4,3,f +1164,2432,0,2,f +1164,2436,2,1,f +1164,2446p01,15,1,f +1164,2446px3,4,1,f +1164,2447,41,2,f +1164,2450,0,2,f +1164,2453a,15,4,f +1164,2454a,15,6,f +1164,2456,15,1,f +1164,2555,7,3,f +1164,2877,15,2,f +1164,298c02,15,1,f +1164,30027a,15,12,f +1164,30028,0,12,f +1164,30029,4,2,f +1164,3003,15,1,f +1164,30030p01,2,1,f +1164,3004,15,3,f +1164,3005,4,8,f +1164,3008,15,5,f +1164,3009,4,1,f +1164,3009,15,6,f +1164,3020,15,2,f +1164,3020,14,1,f +1164,3020,2,1,f +1164,3021,0,2,f +1164,3022,2,1,f +1164,3022,15,1,f +1164,3023,4,2,f +1164,3023,15,3,f +1164,3023,14,1,f +1164,3024,15,2,f +1164,3024,1,2,f +1164,3024,2,1,f +1164,3024,46,3,f +1164,3024,36,2,f +1164,3030,0,1,f +1164,3030,4,2,f +1164,3034,4,1,f +1164,3034,0,1,f +1164,3036,4,1,f +1164,3037,15,2,f +1164,3039,4,1,f +1164,3039,0,1,f +1164,3039p71,0,2,f +1164,3039p73,4,2,f +1164,3040p33,0,1,f +1164,3062b,4,2,f +1164,3068bp80,15,1,f +1164,3069b,15,1,f +1164,3069bp08,15,1,f +1164,3070b,46,2,f +1164,3070bp01,14,1,f +1164,3070bp03,14,1,f +1164,3135c02,4,1,f +1164,3298p71,0,1,f +1164,3298pb002,4,1,f +1164,3300,4,7,f +1164,3300,15,6,f +1164,3460,4,1,f +1164,3460,2,1,f +1164,3622,15,2,f +1164,3623,15,1,f +1164,3623,4,2,f +1164,3626bp02,14,1,f +1164,3626bp03,14,1,f +1164,3626bp04,14,3,f +1164,3626bp05,14,1,f +1164,3641,0,4,f +1164,3665,15,4,f +1164,3666,4,1,f +1164,3666,2,2,f +1164,3666,0,4,f +1164,3666,15,1,f +1164,3679,7,1,f +1164,3680,14,1,f +1164,3710,2,4,f +1164,3710,0,1,f +1164,3710,4,3,f +1164,3710,15,2,f +1164,3710,14,2,f +1164,3754,14,1,f +1164,3788,4,1,f +1164,3794a,15,2,f +1164,3794a,7,2,f +1164,3795,2,1,f +1164,3795,7,1,f +1164,3821,15,1,f +1164,3822,15,1,f +1164,3823,41,1,f +1164,3829c01,0,3,f +1164,3839b,0,2,f +1164,3941,15,2,f +1164,3957a,15,7,f +1164,3963,1,1,f +1164,4032a,2,2,f +1164,4032a,15,2,f +1164,4032a,4,2,f +1164,4079,14,1,f +1164,4085c,4,12,f +1164,4085c,15,4,f +1164,4187,2,1,f +1164,4211,4,1,f +1164,4214,15,1,f +1164,4275b,7,2,f +1164,4477,15,1,f +1164,4477,4,2,f +1164,4485,4,2,f +1164,4485,1,1,f +1164,4495b,14,2,f +1164,4531,7,2,f +1164,4599a,4,4,f +1164,4623,15,4,f +1164,4624,15,4,f +1164,4629c01,1,2,f +1164,476,15,3,f +1164,4865a,0,1,f +1164,4865a,15,10,f +1164,4865a,4,1,f +1164,4872,41,2,f +1164,55298,8,2,f +1164,6019,15,2,f +1164,6019,0,4,f +1164,6093,0,1,f +1164,6111,15,3,f +1164,6141,7,4,f +1164,6141,36,2,f +1164,6141,34,2,f +1164,6141,46,4,f +1164,6157,0,6,f +1164,6187,15,1,f +1164,970c00,15,1,f +1164,970c00,4,4,f +1164,970c00,1,1,f +1164,973pb0101c01,15,1,f +1164,973pr1156c01,1,1,f +1164,973px124c01,15,1,f +1164,973px18c01,15,1,f +1164,973px36c01,4,2,f +1164,x353px2,15,1,f +1165,22119,1,3,f +1165,22119,4,3,f +1165,22119,14,2,f +1165,2335,4,2,f +1165,2357,0,6,f +1165,2420,0,6,f +1165,2456,71,1,f +1165,2730,0,2,f +1165,2780,0,268,f +1165,2780,0,4,t +1165,3001,0,6,f +1165,3001,71,1,f +1165,3002,2,4,f +1165,3002,25,12,f +1165,3002,19,1,f +1165,30028,0,4,f +1165,3003,25,3,f +1165,3003,15,4,f +1165,3003,2,1,f +1165,3004,71,2,f +1165,3004,1,1,f +1165,3004,2,2,f +1165,3004,25,6,f +1165,3004,0,4,f +1165,3005,0,4,f +1165,3005,2,4,f +1165,3005,19,4,f +1165,3005,25,12,f +1165,3005,15,2,f +1165,3005pr0003,15,2,f +1165,3008,15,8,f +1165,3009,25,6,f +1165,3009,15,11,f +1165,3009,0,4,f +1165,3009,2,2,f +1165,3010,2,1,f +1165,3010,15,13,f +1165,3010,71,2,f +1165,3010,25,3,f +1165,3010,1,3,f +1165,30176,2,8,f +1165,3020,0,4,f +1165,3020,15,2,f +1165,3022,0,4,f +1165,3022,72,1,f +1165,3022,19,2,f +1165,3023,1,4,f +1165,3023,19,2,f +1165,3024,15,5,f +1165,3024,19,4,f +1165,3028,0,1,f +1165,3032,1,1,f +1165,3032,71,2,f +1165,3034,0,1,f +1165,3036,0,3,f +1165,30363,0,2,f +1165,30374,0,2,f +1165,3039,25,6,f +1165,3039,2,2,f +1165,3040b,19,4,f +1165,30565,15,4,f +1165,3062b,15,18,f +1165,3062b,2,3,f +1165,3062b,15,1,t +1165,3068b,4,4,f +1165,3068b,1,4,f +1165,3068bpr0136,72,1,f +1165,3069b,323,16,f +1165,3069b,73,16,f +1165,3069b,25,16,f +1165,3069b,14,16,f +1165,3069b,0,4,f +1165,3070b,73,1,t +1165,3070b,15,1,f +1165,3070b,25,32,f +1165,3070b,73,32,f +1165,3070b,25,1,t +1165,3070b,4,32,f +1165,3070b,15,1,t +1165,3070b,1,32,f +1165,3070b,4,2,t +1165,32002,19,1,t +1165,32002,19,3,f +1165,32009,4,12,f +1165,32009,0,2,f +1165,32009,15,6,f +1165,32013,0,8,f +1165,32013,15,2,f +1165,32014,15,4,f +1165,32014,4,6,f +1165,32015,0,4,f +1165,32034,4,5,f +1165,32034,0,5,f +1165,32039,4,2,f +1165,32054,0,10,f +1165,32062,4,29,f +1165,32072,0,5,f +1165,32073,71,1,f +1165,32123b,71,8,f +1165,32123b,71,2,t +1165,32124,15,2,f +1165,32126,71,2,f +1165,32138,71,1,f +1165,32140,4,10,f +1165,32270,0,2,f +1165,32278,4,5,f +1165,32316,4,28,f +1165,32316,0,2,f +1165,32316,15,5,f +1165,32449,4,6,f +1165,32498,0,4,f +1165,32523,15,5,f +1165,32523,4,24,f +1165,32524,4,9,f +1165,32525,0,5,f +1165,32525,4,2,f +1165,32525,15,5,f +1165,32526,0,2,f +1165,32526,15,4,f +1165,32526,4,14,f +1165,32532,0,2,f +1165,33172,25,2,f +1165,33183,10,2,f +1165,33183,10,1,t +1165,33291,191,8,f +1165,33291,191,2,t +1165,33299a,71,11,f +1165,3622,15,6,f +1165,3647,72,1,t +1165,3647,72,2,f +1165,3648b,72,2,f +1165,3649,71,2,f +1165,3666,0,6,f +1165,3673,71,1,t +1165,3673,71,7,f +1165,3700,15,10,f +1165,3701,4,1,f +1165,3702,0,2,f +1165,3705,0,7,f +1165,3706,0,8,f +1165,3707,0,2,f +1165,3708,0,2,f +1165,3710,15,3,f +1165,3710,0,6,f +1165,3710,19,4,f +1165,3713,71,1,t +1165,3713,71,17,f +1165,3737,0,9,f +1165,3749,19,4,f +1165,3795,25,3,f +1165,3795,0,6,f +1165,3795,19,1,f +1165,3795,2,1,f +1165,3832,15,2,f +1165,3894,71,4,f +1165,3941,70,4,f +1165,3941,19,5,f +1165,3941,14,4,f +1165,3942c,15,6,f +1165,3958,4,4,f +1165,3958,1,4,f +1165,3958,71,2,f +1165,3958,70,4,f +1165,40490,0,4,f +1165,40490,4,11,f +1165,40490,15,4,f +1165,41239,15,10,f +1165,41239,4,21,f +1165,4150,0,6,f +1165,4150,4,2,f +1165,41539,15,1,f +1165,4162,15,2,f +1165,41677,4,4,f +1165,4185,72,2,f +1165,42003,0,7,f +1165,43093,1,57,f +1165,43857,4,9,f +1165,44294,71,8,f +1165,4496,70,1,f +1165,4519,71,10,f +1165,4600,0,2,f +1165,4623,0,1,f +1165,4727,10,5,f +1165,48989,71,2,f +1165,51739,1,2,f +1165,52107,15,4,f +1165,55982,71,3,f +1165,56898,0,2,f +1165,56904,71,2,f +1165,58090,0,3,f +1165,58176,35,6,f +1165,58176,36,3,f +1165,59443,4,11,f +1165,59443,70,10,f +1165,59443,0,7,f +1165,60484,0,4,f +1165,60485,71,3,f +1165,6141,4,12,f +1165,6141,4,2,t +1165,6141,15,2,t +1165,6141,15,6,f +1165,61780,70,1,f +1165,61903,71,2,f +1165,6222,70,2,f +1165,6233,14,2,f +1165,62462,15,2,f +1165,63965,0,5,f +1165,64179,71,1,f +1165,64782,15,4,f +1165,64782,0,28,f +1165,6536,71,1,f +1165,6558,1,121,f +1165,6587,28,4,f +1165,6629,4,4,f +1165,6629,0,5,f +1165,6636,0,4,f +1165,6636,15,2,f +1165,74967,71,4,f +1165,78c09,0,12,f +1165,87079,15,4,f +1165,87079,0,7,f +1165,87082,71,2,f +1165,87083,72,2,f +1165,87087,19,2,f +1165,98262,14,2,f +1165,98262,4,1,f +1165,98567,0,1,f +1166,263,0,2,f +1166,3001a,0,2,f +1166,3003,0,2,f +1166,3004,0,8,f +1166,3005,0,8,f +1166,3006,0,4,f +1166,3008,0,2,f +1166,3009,0,6,f +1166,3010,0,3,f +1166,3020,0,1,f +1166,3021,0,2,f +1166,3022,15,1,f +1166,3022,4,1,f +1166,3024,0,6,f +1166,3032,0,1,f +1166,3036,0,1,f +1166,3037,0,2,f +1166,3039,0,7,f +1166,3488,0,4,f +1166,4178a,0,1,f +1166,458,0,5,f +1166,7049b,0,3,f +1166,wheel2a,4,4,f +1166,wheel2a,0,1,f +1166,x515,14,2,f +1166,x564,4,2,f +1167,10201,15,2,f +1167,11090,297,2,f +1167,11090,0,9,f +1167,11211,71,2,f +1167,11215,0,1,f +1167,11439pat0003,33,4,f +1167,11439pat0003,41,1,f +1167,11458,0,2,f +1167,11477,1,6,f +1167,11833,272,2,f +1167,13564,15,1,t +1167,13564,15,1,f +1167,14417,72,2,f +1167,14419,72,3,f +1167,14704,71,4,f +1167,14769pr1025,297,2,f +1167,15068,272,1,f +1167,15070,15,2,f +1167,15303,33,3,f +1167,15391,70,1,f +1167,15392,72,1,f +1167,15392,72,1,t +1167,15400,72,2,f +1167,15440,272,1,f +1167,15456,0,1,f +1167,15571,15,1,f +1167,15573,1,7,f +1167,15573,72,2,f +1167,15706,0,2,f +1167,15712,70,3,f +1167,15976,0,4,f +1167,16770,41,2,f +1167,18587,71,1,f +1167,18588,0,1,f +1167,18653,15,2,f +1167,18674,70,2,f +1167,18677,4,4,f +1167,19857pat0003,0,1,f +1167,20877,0,1,f +1167,23984,15,2,f +1167,23984,148,2,f +1167,23985,15,1,f +1167,2420,1,2,f +1167,2432,70,1,f +1167,2450,1,4,f +1167,2450,72,4,f +1167,2530,72,1,f +1167,2540,71,1,f +1167,2550c02,179,1,f +1167,2562,70,2,f +1167,2562,70,1,t +1167,2654,46,1,f +1167,2654,72,1,f +1167,30031,72,1,f +1167,3005,41,4,f +1167,30173b,297,2,f +1167,30173b,297,1,t +1167,30192,72,1,f +1167,3020,272,1,f +1167,3020,72,2,f +1167,3021,1,1,f +1167,3021,0,4,f +1167,3022,0,4,f +1167,3022,71,1,f +1167,3023,41,9,f +1167,3023,70,2,f +1167,3023,15,6,f +1167,3023,1,2,f +1167,30259,70,2,f +1167,30377,71,1,t +1167,30377,71,2,f +1167,30383,72,4,f +1167,3039,41,4,f +1167,32062,4,3,f +1167,32064a,72,7,f +1167,32192,72,2,f +1167,3626cpr1367,14,1,f +1167,3626cpr1560,14,1,f +1167,3660,72,7,f +1167,3706,0,1,f +1167,3710,72,2,f +1167,3710,15,3,f +1167,3795,70,1,f +1167,3832,0,2,f +1167,4006,0,1,f +1167,4079,70,1,f +1167,4081b,15,2,f +1167,4286,1,2,f +1167,43093,1,2,f +1167,44301a,0,2,f +1167,44302a,71,2,f +1167,44676,0,1,f +1167,47455,0,4,f +1167,47456,272,5,f +1167,47457,1,1,f +1167,47458,297,4,f +1167,47755,1,2,f +1167,48170,41,4,f +1167,48172,0,2,f +1167,48336,297,2,f +1167,49668,1,4,f +1167,49668,15,2,f +1167,49668,182,2,f +1167,50943,72,1,f +1167,51739,272,1,f +1167,53451,297,1,t +1167,53451,297,8,f +1167,53454,148,2,f +1167,54200,46,1,t +1167,54200,15,15,f +1167,54200,41,2,f +1167,54200,46,4,f +1167,54200,15,3,t +1167,54200,41,1,t +1167,57906,272,2,f +1167,57906,33,2,f +1167,57909b,72,4,f +1167,60169,72,1,f +1167,60478,72,4,f +1167,60897,72,2,f +1167,60897,0,2,f +1167,61252,15,2,f +1167,6141,70,1,f +1167,6141,41,4,f +1167,6141,15,2,f +1167,6141,72,1,t +1167,6141,70,1,t +1167,6141,72,12,f +1167,6141,15,1,t +1167,6141,41,1,t +1167,61800,484,2,f +1167,63965,0,1,f +1167,6587,28,1,f +1167,6628,0,1,f +1167,75c03,70,1,t +1167,75c03,70,1,f +1167,87989,27,1,f +1167,87989,27,1,t +1167,88072,0,4,f +1167,88290,308,1,f +1167,92338,297,2,f +1167,92690,70,2,f +1167,92692,0,1,f +1167,93606,272,1,f +1167,970c00pr0877,0,1,f +1167,970d00pr9999,70,1,f +1167,98137,297,2,f +1167,98138,41,1,t +1167,98138,41,2,f +1167,98138pr0025,41,1,t +1167,98138pr0025,41,1,f +1167,98139,297,1,t +1167,98139,297,1,f +1167,98141,297,2,f +1167,98313,297,5,f +1167,98585,484,1,f +1167,99780,0,4,f +1167,99780,1,1,f +1167,99781,71,2,f +1170,12825,15,2,f +1170,14769,15,1,f +1170,15573,15,6,f +1170,2412b,297,6,f +1170,2456,15,2,f +1170,2508,0,2,f +1170,2654,15,4,f +1170,2736,71,2,f +1170,2780,0,1,f +1170,2780,0,1,t +1170,2877,72,1,f +1170,3001,71,2,f +1170,3004,15,2,f +1170,3010,15,2,f +1170,3010,72,2,f +1170,30162,72,5,f +1170,3021,72,4,f +1170,3022,15,4,f +1170,3023,15,5,f +1170,3023,72,2,f +1170,3024,15,1,t +1170,3024,0,1,t +1170,3024,15,4,f +1170,3024,0,2,f +1170,30261,15,1,f +1170,3036,15,1,f +1170,3040b,15,2,f +1170,30414,15,2,f +1170,3062b,15,2,f +1170,3062b,72,1,f +1170,3068b,15,4,f +1170,3069b,15,9,f +1170,3070b,15,1,t +1170,3070b,15,12,f +1170,32013,72,4,f +1170,32016,0,5,f +1170,32028,15,1,f +1170,32039,0,18,f +1170,32062,0,10,f +1170,32064b,71,1,f +1170,32073,71,3,f +1170,32123b,71,1,t +1170,32123b,71,4,f +1170,32530,72,2,f +1170,3298,72,20,f +1170,3622,15,2,f +1170,3623,72,1,f +1170,3659,15,1,f +1170,3666,15,3,f +1170,3679,71,1,f +1170,3680,0,1,f +1170,3700,15,3,f +1170,3705,0,2,f +1170,3710,15,3,f +1170,3713,71,2,f +1170,3713,71,1,t +1170,3749,19,2,f +1170,3795,15,3,f +1170,4032a,15,3,f +1170,4070,15,7,f +1170,4070,72,1,f +1170,4085c,15,2,f +1170,4150,0,1,f +1170,42446,71,1,t +1170,42446,71,2,f +1170,4274,71,1,t +1170,4274,71,1,f +1170,4287,15,2,f +1170,43093,1,4,f +1170,43722,15,2,f +1170,43723,15,2,f +1170,4519,71,4,f +1170,4522,0,1,f +1170,4697b,71,2,f +1170,4697b,71,1,t +1170,4733,72,1,f +1170,4740,15,1,f +1170,48729b,72,1,t +1170,48729b,72,4,f +1170,54200,72,2,f +1170,54200,0,1,f +1170,54200,72,1,t +1170,54200,0,1,t +1170,55981,15,1,f +1170,55981,71,6,f +1170,59900,72,2,f +1170,59900,0,3,f +1170,60483,0,2,f +1170,60849,71,1,t +1170,60849,71,2,f +1170,6141,72,5,f +1170,6141,36,1,t +1170,6141,36,1,f +1170,6141,72,1,t +1170,62462,0,4,f +1170,63868,15,6,f +1170,6536,72,2,f +1170,6558,1,1,f +1170,6571,0,2,f +1170,6587,28,7,f +1170,6632,72,2,f +1170,75937,15,2,f +1170,85984,15,2,f +1170,87083,72,2,f +1170,87609,15,1,f +1170,92402,0,6,f +1170,92438,19,2,f +1170,98138,71,2,f +1170,98138,71,1,t +1170,99206,71,2,f +1171,200,0,2,f +1171,202,0,2,f +1171,2339,0,2,f +1171,2342,0,2,f +1171,2345,0,3,f +1171,2362a,46,2,f +1171,2401,0,3,f +1171,2408p02,0,2,f +1171,2409,46,1,f +1171,2412b,0,1,f +1171,2419,14,2,f +1171,2420,0,3,f +1171,2428,14,2,f +1171,2431,0,4,f +1171,2436,0,2,f +1171,2446,0,5,f +1171,2447,0,5,f +1171,2448,46,1,f +1171,2449,0,4,f +1171,2450,0,4,f +1171,2452,0,2,f +1171,2453a,0,1,f +1171,2465,0,6,f +1171,2466,0,10,f +1171,2466,46,3,f +1171,2467,0,2,f +1171,2468,46,3,f +1171,2681,0,2,f +1171,298c01,0,6,f +1171,3003,0,10,f +1171,3004,0,15,f +1171,3005,0,7,f +1171,3008,0,3,f +1171,3009,0,7,f +1171,3010,0,2,f +1171,3020,14,1,f +1171,3020,0,4,f +1171,3021,0,2,f +1171,3022,14,10,f +1171,3022,0,16,f +1171,3023,14,3,f +1171,3023,0,14,f +1171,3024,36,8,f +1171,3024,0,5,f +1171,3024,14,2,f +1171,3028,0,1,f +1171,3030,0,1,f +1171,3031,0,2,f +1171,3032,0,3,f +1171,3032,46,1,f +1171,3034,0,2,f +1171,3035,14,2,f +1171,3036,0,1,f +1171,3039,0,3,f +1171,3039p33,0,3,f +1171,3040b,0,15,f +1171,3040p01,0,3,f +1171,3062b,36,11,f +1171,3062b,0,2,f +1171,3068b,0,2,f +1171,3068b,14,2,f +1171,3068bp00,0,1,f +1171,3069b,0,3,f +1171,3069bp017,0,2,f +1171,3069bp25,14,5,f +1171,3070bp06,14,2,f +1171,3460,0,1,f +1171,3479,0,1,f +1171,3622,0,11,f +1171,3623,0,18,f +1171,3626apr0001,14,5,f +1171,3633,14,6,f +1171,3633,0,4,f +1171,3660,0,12,f +1171,3665,0,11,f +1171,3666,0,3,f +1171,3679,7,5,f +1171,3680,0,5,f +1171,3684,0,2,f +1171,3700,0,2,f +1171,3708,0,1,f +1171,3710,0,11,f +1171,3737,0,1,f +1171,3747a,0,9,f +1171,3794a,0,12,f +1171,3795,0,3,f +1171,3795,14,1,f +1171,3811,7,1,f +1171,3830,0,1,f +1171,3831,0,1,f +1171,3832,0,3,f +1171,3838,0,5,f +1171,3933a,0,1,f +1171,3934a,0,1,f +1171,3935,0,1,f +1171,3936,0,2,f +1171,3937,0,9,f +1171,3938,0,9,f +1171,3942c,14,2,f +1171,3947a,7,1,f +1171,3956,0,1,f +1171,3957a,36,9,f +1171,3957a,14,2,f +1171,3959,0,3,f +1171,3960,14,2,f +1171,3961,0,1,f +1171,3962a,0,1,f +1171,4006,0,1,f +1171,4070,0,6,f +1171,4081b,0,2,f +1171,4083,0,2,f +1171,4085b,14,5,f +1171,4162,0,4,f +1171,4175,0,2,f +1171,4213,0,2,f +1171,4215a,46,1,f +1171,4229,0,2,f +1171,4276b,0,2,f +1171,4282,0,3,f +1171,4287,0,5,f +1171,4288,0,4,f +1171,4345a,0,1,f +1171,4346,0,1,f +1171,4349,0,2,f +1171,4360,0,1,f +1171,4460a,0,6,f +1171,4476b,0,14,f +1171,4479,0,1,f +1171,4588,36,1,f +1171,4589,36,1,f +1171,4590,0,5,f +1171,4596,0,2,f +1171,4596,14,2,f +1171,4598,14,1,f +1171,4600,0,2,f +1171,4624,14,4,f +1171,4625,0,2,f +1171,4732,0,1,f +1171,4733,0,4,f +1171,4735,0,2,f +1171,4737,0,2,f +1171,4740,36,11,f +1171,4740,0,2,f +1171,4859,0,1,f +1171,4864a,0,1,f +1171,4871,0,1,f +1171,4873,0,4,f +1171,6141,0,2,f +1171,6141,36,2,f +1171,73590c01b,14,3,f +1171,9244,7,1,f +1171,970c00,0,5,f +1171,973p52c01,0,5,f +1172,2489,70,1,f +1172,30136,70,2,f +1172,3021,4,1,f +1172,3835,0,1,f +1172,61482,71,1,t +1172,61482,71,1,f +1172,88072,71,1,f +1172,92585,4,1,f +1173,3008,0,25,f +1174,2357,4,3,f +1174,3004,4,4,f +1174,3004p51,14,1,f +1174,3020,15,3,f +1174,3022,7,2,f +1174,3022,15,1,f +1174,3023,15,1,f +1174,3023,0,2,f +1174,3024,14,2,f +1174,3039,7,1,f +1174,3039,15,1,f +1174,3040b,4,6,f +1174,3062b,0,2,f +1174,3660,7,1,f +1174,3665,4,2,f +1174,3700,4,2,f +1174,4070,0,1,f +1174,6141,15,4,f +1175,30174,72,1,f +1175,3626bpr0745,14,1,f +1175,4274,1,1,t +1175,4274,1,3,f +1175,4643601,9999,1,f +1175,4643602,9999,1,f +1175,4643603,9999,1,f +1175,4643604,9999,1,f +1175,4643605,9999,1,f +1175,54200,72,2,f +1175,54200,72,1,t +1175,60481,71,2,f +1175,6117,297,1,f +1175,63965,70,1,f +1175,63965,297,1,f +1175,64567,0,2,f +1175,92338,179,3,f +1175,92947,71,1,f +1175,970c00pr0191,0,1,f +1175,973pr1718c01,0,1,f +1175,98130pr0001,72,1,f +1175,98139,179,2,f +1177,3703,0,10,f +1180,2350b,4,1,f +1180,2351,0,1,f +1180,2357,15,2,f +1180,2362a,0,1,f +1180,2362a,4,1,f +1180,2412b,14,1,f +1180,2412b,7,2,f +1180,2431,15,2,f +1180,2431pb023,15,1,f +1180,2432,15,2,f +1180,2446,4,1,f +1180,2447,41,1,f +1180,2452,0,1,f +1180,2540,4,2,f +1180,2540,15,1,f +1180,2555,15,3,f +1180,2555,0,2,f +1180,2585,7,1,f +1180,2711,0,1,f +1180,2744,15,2,f +1180,2780,0,2,f +1180,2877,15,1,f +1180,2983,7,1,f +1180,2984,4,1,f +1180,2985,4,1,f +1180,2986,4,1,f +1180,298c02,15,4,f +1180,298c02,15,1,t +1180,3001,14,1,f +1180,3004,15,3,f +1180,3004,7,1,f +1180,3005,15,2,f +1180,3008,15,1,f +1180,3009,15,1,f +1180,3009pb045,15,3,f +1180,3010,4,2,f +1180,3020,15,1,f +1180,3020,4,2,f +1180,3021,15,5,f +1180,3023,0,2,f +1180,3024,46,3,f +1180,3024,0,2,f +1180,3034,15,1,f +1180,3034,7,1,f +1180,3034,0,1,f +1180,3039,15,2,f +1180,3040b,36,2,f +1180,3043,0,1,f +1180,3062b,7,2,f +1180,3068bp70,15,2,f +1180,3069b,46,2,f +1180,3069b,0,1,f +1180,3069b,15,4,f +1180,3069bp52,15,1,f +1180,3070b,15,2,f +1180,3070b,36,2,f +1180,3070bp01,14,1,f +1180,3070bp01,14,1,t +1180,3070bp03,14,1,f +1180,3070bp03,14,1,t +1180,3139,0,2,f +1180,3176,7,1,f +1180,3298pb003,15,1,f +1180,3460,15,4,f +1180,3460,0,1,f +1180,3623,15,2,f +1180,3623,7,2,f +1180,3626bp04,14,3,f +1180,3641,0,4,f +1180,3665,4,6,f +1180,3666,0,1,f +1180,3666,15,1,f +1180,3700,4,2,f +1180,3704,0,2,f +1180,3706,0,1,f +1180,3710,15,4,f +1180,3710,0,1,f +1180,3710,4,7,f +1180,3713,7,1,f +1180,3747b,4,3,f +1180,3795,4,1,f +1180,3821,15,1,f +1180,3822,15,1,f +1180,3829c01,15,2,f +1180,3832,0,1,f +1180,3832,15,2,f +1180,3901,0,1,f +1180,3957a,7,2,f +1180,3958,4,1,f +1180,3962a,0,1,f +1180,4070,15,10,f +1180,4070,7,4,f +1180,4085c,0,2,f +1180,4085c,15,10,f +1180,4176,41,1,f +1180,4185,7,1,f +1180,4212b,0,1,f +1180,4213,15,1,f +1180,4214,15,1,f +1180,4215b,4,2,f +1180,4263,0,2,f +1180,4265b,7,3,f +1180,4286,15,4,f +1180,4477,0,4,f +1180,4485,1,1,f +1180,4488,7,6,f +1180,4531,0,1,f +1180,4589,46,2,f +1180,4624,15,4,f +1180,4629c01,1,1,f +1180,4735,7,4,f +1180,4755,15,3,f +1180,4757,0,1,f +1180,4757,15,1,f +1180,4760c01,4,1,f +1180,4771,15,1,f +1180,4773,33,2,f +1180,4773,36,3,f +1180,4773,46,2,f +1180,4773,34,3,f +1180,5306bc015,0,1,f +1180,55295,8,1,f +1180,55296,8,1,f +1180,55297,8,1,f +1180,55298,8,1,f +1180,55299,8,1,f +1180,55300,8,1,f +1180,56823,0,1,f +1180,6014a,15,6,f +1180,6015,0,6,f +1180,6016,0,2,f +1180,6019,15,4,f +1180,6141,15,1,f +1180,6141,46,1,f +1180,6141,15,1,t +1180,6141,4,1,t +1180,6141,4,2,f +1180,6141,46,1,t +1180,6157,0,2,f +1180,6551c01,7,1,f +1180,70278,0,1,f +1180,85546,14,1,t +1180,85546,14,1,f +1180,970c00,4,1,f +1180,970c00,1,2,f +1180,973pr1245c01,1,2,f +1180,973px36c01,4,1,f +1181,10197,72,2,f +1181,10288,308,4,f +1181,11214,72,2,f +1181,11478,0,2,f +1181,15100,0,4,f +1181,15367,0,2,f +1181,15462,28,1,f +1181,18587,71,1,f +1181,18588,0,1,f +1181,19049,179,1,f +1181,20473,35,1,f +1181,20480,179,1,f +1181,22961,71,1,f +1181,24187,57,1,f +1181,24188,148,2,f +1181,24189,148,1,f +1181,24190,0,1,f +1181,24191,148,1,f +1181,2780,0,4,f +1181,30552,71,1,f +1181,30553,72,1,f +1181,32002,19,1,f +1181,32034,0,1,f +1181,32062,4,11,f +1181,32072,0,1,f +1181,32123b,71,1,f +1181,32140,0,2,f +1181,32192,0,4,f +1181,32270,0,1,f +1181,3705,0,1,f +1181,3707,0,1,f +1181,3749,19,2,f +1181,4185,72,1,f +1181,4274,71,3,f +1181,43093,1,10,f +1181,4519,71,3,f +1181,50923,72,8,f +1181,53451,28,4,f +1181,53551,179,7,f +1181,58176,36,1,f +1181,59443,70,3,f +1181,60483,0,2,f +1181,6141,35,12,f +1181,62462,70,1,f +1181,63869,0,1,f +1181,6536,10,1,f +1181,6558,1,3,f +1181,6587,28,2,f +1181,74261,0,2,f +1181,87083,72,1,f +1181,90608,35,2,f +1181,90615,72,2,f +1181,90617,72,2,f +1181,90622,0,2,f +1181,90639,0,2,f +1181,90640,0,5,f +1181,92907,0,3,f +1181,93571,0,2,f +1181,93575,0,2,f +1181,98577,72,1,f +1181,98603s02pr0019,0,1,f +1182,2343,7,1,f +1182,2432,0,1,f +1182,2512,14,1,f +1182,3003,14,1,f +1182,3010p15,14,4,f +1182,30277,14,2,f +1182,30278c01,14,1,f +1182,3037pr0005,14,1,f +1182,3039pb012,14,2,f +1182,3062b,46,5,f +1182,3062b,0,2,f +1182,3314,0,1,f +1182,3317,14,1,f +1182,3433,14,1,f +1182,3626bp03,14,2,f +1182,3626bpr0001,14,1,f +1182,3823,41,1,f +1182,3829c01,7,3,f +1182,3833,4,3,f +1182,3836,6,1,f +1182,3837,8,1,f +1182,3942cpr01,15,2,f +1182,4083,0,1,f +1182,4600,0,1,f +1182,6014a,14,14,f +1182,6015,0,14,f +1182,6140,7,2,f +1182,6583,14,2,f +1182,970c00,1,3,f +1182,973pb0201c01,15,1,f +1182,973px122c01,1,2,f +1184,2343,0,5,f +1184,2412b,36,11,f +1184,2412b,1,1,f +1184,2419,72,2,f +1184,2419,0,2,f +1184,2420,0,2,f +1184,2431,72,5,f +1184,2431,15,2,f +1184,2432,1,1,f +1184,2432,0,4,f +1184,2436,1,2,f +1184,2444,15,2,f +1184,2445,72,14,f +1184,2454a,72,12,f +1184,2454a,71,8,f +1184,2456,70,2,f +1184,2540,71,18,f +1184,2555,14,2,f +1184,2555,71,2,f +1184,2555,4,2,f +1184,2566,0,2,f +1184,2569,0,8,f +1184,2569,0,3,t +1184,2654,47,2,f +1184,2780,0,6,t +1184,2780,0,28,f +1184,2817,0,10,f +1184,2823,0,2,f +1184,298c02,14,1,t +1184,298c02,14,2,f +1184,298c02,1,2,t +1184,298c02,1,7,f +1184,30000,72,2,f +1184,3001,72,12,f +1184,3002,0,2,f +1184,3003,72,12,f +1184,3003,14,1,f +1184,30033,72,1,f +1184,3004,72,9,f +1184,30043,0,2,f +1184,3008,72,12,f +1184,30088,0,8,f +1184,3009,15,1,f +1184,3010,72,1,f +1184,3010,14,2,f +1184,30132,72,1,t +1184,30132,72,2,f +1184,30145,71,4,f +1184,30150,70,2,f +1184,30152pat0001,0,1,f +1184,30162,72,11,f +1184,3020,72,2,f +1184,3020,71,9,f +1184,3021,0,11,f +1184,3022,71,14,f +1184,3022,1,2,f +1184,30228,72,1,f +1184,3023,72,1,f +1184,3023,15,16,f +1184,30249,71,6,f +1184,3031,72,8,f +1184,3032,72,6,f +1184,3034,0,10,f +1184,3034,72,8,f +1184,30355,72,2,f +1184,30356,72,2,f +1184,30357,72,2,f +1184,30360,15,1,f +1184,30367b,27,7,f +1184,30367b,4,1,f +1184,30374,0,1,f +1184,30377,0,1,t +1184,30377,0,2,f +1184,30387,14,2,f +1184,3039,0,3,f +1184,3039,25,1,f +1184,30395,72,1,f +1184,30396,14,1,f +1184,3048c,0,2,f +1184,3049b,0,8,f +1184,30503,15,2,f +1184,30503,72,4,f +1184,30504,0,8,f +1184,30540,71,16,f +1184,30552,71,13,f +1184,30553,72,1,f +1184,30554a,0,1,f +1184,30602,1,5,f +1184,30603,0,2,f +1184,3062b,27,4,f +1184,3062b,0,12,f +1184,30663,71,2,f +1184,3068b,71,12,f +1184,3068b,14,2,f +1184,3070b,36,6,f +1184,3070b,36,2,t +1184,3176,72,2,f +1184,32000,72,5,f +1184,32013,72,4,f +1184,32015,71,6,f +1184,32016,71,4,f +1184,32018,72,20,f +1184,32034,4,1,f +1184,32039,0,11,f +1184,32054,0,8,f +1184,32060,71,1,f +1184,32062,4,16,f +1184,32064b,0,29,f +1184,32072,14,1,f +1184,32140,0,2,f +1184,32192,0,26,f +1184,32270,71,1,f +1184,32316,0,2,f +1184,32316,72,1,f +1184,32523,14,5,f +1184,32524,71,2,f +1184,32530,72,8,f +1184,3298,72,4,f +1184,3298,0,2,f +1184,3403c01,71,1,f +1184,3460,0,2,f +1184,3460,14,4,f +1184,3622,72,42,f +1184,3623,14,4,f +1184,3623,72,8,f +1184,3623,71,2,f +1184,3626bpr0445,14,1,f +1184,3626bpr0446,14,1,f +1184,3626bpr0452,14,1,f +1184,3626bpr0463,14,1,f +1184,3626bpr0487,14,1,f +1184,3660,71,2,f +1184,3660,72,13,f +1184,3665,0,4,f +1184,3666,25,2,f +1184,3666,72,5,f +1184,3673,71,5,f +1184,3673,71,2,t +1184,3679,71,4,f +1184,3680,0,4,f +1184,3684,0,4,f +1184,3700,14,16,f +1184,3700,15,1,f +1184,3705,0,21,f +1184,3706,0,2,f +1184,3707,0,4,f +1184,3710,71,4,f +1184,3710,14,2,f +1184,3713,71,6,f +1184,3713,71,3,t +1184,3737,0,2,f +1184,3738,1,1,f +1184,3747b,0,1,f +1184,3754,71,4,f +1184,3794a,71,20,f +1184,3795,72,9,f +1184,3795,0,2,f +1184,3839b,0,3,f +1184,3894,0,3,f +1184,3937,71,5,f +1184,3940b,72,2,f +1184,3941,72,3,f +1184,3941,4,2,f +1184,3941,0,2,f +1184,3956,0,2,f +1184,3959,72,1,f +1184,40002,47,2,f +1184,40239,71,1,f +1184,40244,0,8,f +1184,4032a,71,1,f +1184,4070,14,6,f +1184,4079,70,8,f +1184,40902,71,1,f +1184,4150,15,10,f +1184,4150,0,1,f +1184,4151b,72,4,f +1184,41532,0,10,f +1184,4162,71,3,f +1184,41677,71,1,f +1184,41678,0,1,f +1184,41747,15,2,f +1184,41747,1,1,f +1184,41748,1,1,f +1184,41748,15,2,f +1184,41764,0,1,f +1184,41765,0,1,f +1184,41767,72,1,f +1184,41768,72,1,f +1184,41854,73,3,f +1184,41862,73,3,f +1184,41883,40,1,f +1184,42022,0,2,f +1184,42060,1,1,f +1184,42061,1,1,f +1184,424,0,4,t +1184,424,0,5,f +1184,42610,71,1,f +1184,4274,71,24,f +1184,4274,71,6,t +1184,4286,1,2,f +1184,4286,72,4,f +1184,43093,1,36,f +1184,4328,71,1,f +1184,4349,72,2,f +1184,4360,0,2,f +1184,43710,0,3,f +1184,43711,0,3,f +1184,43712,73,6,f +1184,43722,71,1,f +1184,43723,71,1,f +1184,43898,0,2,f +1184,44301a,72,2,f +1184,44302a,71,8,f +1184,44567a,14,2,f +1184,44728,71,13,f +1184,4476b,72,5,f +1184,4519,71,1,f +1184,45301,25,16,f +1184,45705,40,2,f +1184,4588,72,9,f +1184,4589,1,5,f +1184,4589,14,8,f +1184,4589,46,1,f +1184,4589,0,1,f +1184,4589,42,10,f +1184,4589,36,19,f +1184,4599a,0,2,f +1184,4623,71,4,f +1184,4733,0,1,f +1184,4740,72,1,f +1184,47406,72,2,f +1184,47432,72,4,f +1184,47452,72,6,f +1184,47455,0,16,f +1184,47456,1,2,f +1184,47462,1,2,f +1184,47753,0,2,f +1184,47757,0,7,f +1184,47759,0,2,f +1184,47847,70,2,f +1184,48169,72,2,f +1184,48170,72,6,f +1184,48172,0,2,f +1184,48336,0,1,f +1184,4864b,40,4,f +1184,4868b,71,2,f +1184,48729a,72,1,t +1184,48729a,72,8,f +1184,50745,14,3,f +1184,50950,0,4,f +1184,52041,25,6,f +1184,52107,0,1,f +1184,53981,73,1,f +1184,53982,4,1,f +1184,53982,10,1,f +1184,53982,85,1,f +1184,53983pat0001,0,1,f +1184,53984,134,4,f +1184,53984,297,2,f +1184,53988,134,2,f +1184,53988,135,1,f +1184,53988pat02,0,1,f +1184,53989,135,17,f +1184,53989,134,4,f +1184,53989,297,2,f +1184,53990,40,2,f +1184,53993pat0001,4,10,f +1184,53993pat0003,27,10,f +1184,54200,15,2,f +1184,54605,47,2,f +1184,55295,0,1,f +1184,55296,0,1,f +1184,55297,0,1,f +1184,55298,0,1,f +1184,55299,0,1,f +1184,55300,0,1,f +1184,55767,25,2,f +1184,59426,72,7,f +1184,6019,15,2,f +1184,6019,0,8,f +1184,6020,71,4,f +1184,6111,72,10,f +1184,6120,15,2,f +1184,6134,71,1,f +1184,6134,0,5,f +1184,6140,15,2,f +1184,6141,36,10,f +1184,6141,42,4,t +1184,6141,42,15,f +1184,6141,36,1,t +1184,6180,0,1,f +1184,6187,0,8,f +1184,6232,71,4,f +1184,6536,0,1,f +1184,6538b,71,10,f +1184,6541,72,17,f +1184,6558,0,15,f +1184,6587,72,5,f +1184,6636,19,25,f +1184,6636,0,2,f +1184,7709stk01,9999,1,t +1184,78c24,179,1,f +1184,970c00,15,1,f +1184,970c00,4,1,f +1184,970x026,15,2,f +1184,970x199,25,1,f +1184,973pr1232c01,15,2,f +1184,973pr1233c01,4,1,f +1184,973pr1247c01,25,1,f +1184,973pr1291c01,15,1,f +1187,3010pb035e,4,4,f +1187,3010pb035e,14,4,f +1187,3010pb035e,0,2,f +1187,3010pb035e,1,4,f +1187,3030,15,6,f +1187,3031,4,4,f +1187,3032,1,8,f +1187,3035,4,10,f +1187,3037,47,8,f +1187,3135c03,1,2,f +1187,3137c01,0,28,f +1187,3149c01,4,4,f +1187,3183a,4,3,f +1187,3184,4,3,f +1187,3403c01,0,4,f +1187,3639,4,3,f +1187,3640,4,3,f +1187,3641,0,56,f +1187,3823,47,6,f +1187,4207,14,8,f +1189,10202,71,8,f +1189,12825,0,8,f +1189,12825,72,4,f +1189,15379,71,1,t +1189,15379,71,36,f +1189,2412b,72,2,f +1189,2412b,0,8,f +1189,2412b,71,13,f +1189,2419,0,3,f +1189,2420,0,4,f +1189,2431,71,4,f +1189,2431,72,6,f +1189,2432,72,1,f +1189,2444,14,4,f +1189,2445,71,4,f +1189,2456,15,2,f +1189,2456,72,2,f +1189,2476a,15,2,f +1189,2488,0,1,f +1189,2585,71,2,f +1189,2654,19,5,f +1189,2730,0,2,f +1189,2780,0,38,f +1189,2780,0,9,t +1189,3002,4,2,f +1189,3002,0,8,f +1189,3003,72,2,f +1189,3003,1,4,f +1189,3004,4,6,f +1189,30044,71,2,f +1189,3010,19,5,f +1189,30136,70,2,f +1189,30162,72,2,f +1189,30165,72,2,f +1189,3020,72,31,f +1189,3020,71,8,f +1189,3020,15,9,f +1189,3021,72,4,f +1189,3021,2,9,f +1189,3021,71,13,f +1189,3021,19,3,f +1189,3022,72,7,f +1189,3022,71,8,f +1189,3022,4,13,f +1189,3023,46,2,f +1189,3023,71,5,f +1189,3023,19,40,f +1189,30236,72,6,f +1189,3024,72,8,f +1189,3027,0,2,f +1189,3030,71,2,f +1189,3030,0,2,f +1189,3031,14,4,f +1189,3031,71,4,f +1189,3032,15,6,f +1189,3032,4,8,f +1189,3032,71,5,f +1189,3033,0,2,f +1189,3034,71,15,f +1189,3035,14,6,f +1189,3035,72,2,f +1189,3035,71,2,f +1189,30355,71,1,f +1189,30356,71,1,f +1189,30363,71,1,f +1189,3037,72,2,f +1189,30374,71,8,f +1189,30374,0,6,f +1189,3038,72,2,f +1189,30383,0,12,f +1189,3040b,0,1,f +1189,30414,71,2,f +1189,30414,0,4,f +1189,3044c,72,1,f +1189,30503,72,2,f +1189,30553,72,2,f +1189,30565,72,4,f +1189,3068b,72,2,f +1189,3068b,71,5,f +1189,3069b,19,3,f +1189,3069b,46,2,f +1189,3069b,72,10,f +1189,3069b,71,13,f +1189,3069bpr0090,72,1,f +1189,3070b,72,1,f +1189,3070b,72,1,t +1189,3176,0,1,f +1189,32000,71,8,f +1189,32001,15,4,f +1189,32002,72,4,f +1189,32002,72,4,t +1189,32009,0,4,f +1189,32054,0,6,f +1189,32059,71,1,f +1189,32064b,71,10,f +1189,32064b,2,8,f +1189,32073,71,3,f +1189,32123b,14,1,f +1189,32123b,71,4,t +1189,32123b,14,1,t +1189,32123b,71,6,f +1189,32187,71,1,f +1189,32291,72,2,f +1189,32316,0,1,f +1189,32524,0,2,f +1189,32526,0,2,f +1189,32530,72,5,f +1189,32531,71,2,f +1189,32531,0,2,f +1189,3297,71,4,f +1189,3460,71,4,f +1189,3460,72,4,f +1189,3623,71,6,f +1189,3623,1,16,f +1189,3647,72,3,f +1189,3647,72,3,t +1189,3660,72,4,f +1189,3666,72,4,f +1189,3666,19,10,f +1189,3666,0,4,f +1189,3673,71,1,f +1189,3673,71,1,t +1189,3701,71,3,f +1189,3702,0,4,f +1189,3705,0,4,f +1189,3707,0,2,f +1189,3708,0,4,f +1189,3709,71,1,f +1189,3710,0,2,f +1189,3710,72,2,f +1189,3710,71,12,f +1189,3710,2,11,f +1189,3738,1,12,f +1189,3743,0,4,f +1189,3794b,71,2,f +1189,3794b,72,8,f +1189,3794b,1,2,f +1189,3795,72,3,f +1189,3795,4,19,f +1189,3795,71,2,f +1189,3832,1,2,f +1189,3832,71,4,f +1189,3937,72,2,f +1189,3941,19,12,f +1189,3941,71,17,f +1189,3942c,71,7,f +1189,3943b,72,1,f +1189,3956,71,2,f +1189,3958,71,2,f +1189,3958,72,10,f +1189,4032a,0,1,f +1189,4032a,71,7,f +1189,40620,71,4,f +1189,4070,0,2,f +1189,4150,72,2,f +1189,4150,0,1,f +1189,41532,0,2,f +1189,41539,72,2,f +1189,4162,71,8,f +1189,4162,72,2,f +1189,41747,71,2,f +1189,41748,71,2,f +1189,41749,71,2,f +1189,41750,71,2,f +1189,41769,71,2,f +1189,41769,72,2,f +1189,41770,71,2,f +1189,41770,72,2,f +1189,42023,72,2,f +1189,42610,71,11,f +1189,4274,71,1,t +1189,4274,71,1,f +1189,43093,1,8,f +1189,43121,0,4,f +1189,43712,72,1,f +1189,43722,71,3,f +1189,43723,71,3,f +1189,43723,72,1,f +1189,43857,0,2,f +1189,43898,72,1,f +1189,44126,72,2,f +1189,44301a,71,4,f +1189,44302a,72,7,f +1189,44302a,71,12,f +1189,44567a,72,1,f +1189,44569,72,2,f +1189,44661,72,6,f +1189,44728,72,5,f +1189,4477,71,10,f +1189,4519,71,4,f +1189,45677,72,1,f +1189,4590,72,1,f +1189,4735,0,2,f +1189,47397,71,3,f +1189,47398,71,3,f +1189,4740,57,8,f +1189,47457,72,10,f +1189,47755,71,2,f +1189,48002,0,2,f +1189,48092,71,4,f +1189,48336,71,2,f +1189,48336,4,8,f +1189,48933,72,1,f +1189,50943,72,2,f +1189,50950,71,2,f +1189,50950,72,8,f +1189,50955,71,2,f +1189,50956,71,2,f +1189,50967,72,2,f +1189,50986pr0004,40,1,f +1189,52107,0,1,f +1189,52501,72,1,f +1189,54200,72,2,t +1189,54200,72,7,f +1189,54383,72,1,f +1189,54383,71,6,f +1189,54384,71,6,f +1189,54384,72,1,f +1189,55013,72,1,f +1189,57909a,72,2,f +1189,59443,72,2,f +1189,6019,72,2,f +1189,60470a,71,14,f +1189,60470a,0,8,f +1189,60474,71,1,f +1189,60478,71,10,f +1189,60483,71,5,f +1189,60484,0,1,f +1189,60485,71,1,f +1189,6081,71,6,f +1189,6081,72,8,f +1189,6091,71,8,f +1189,6091,72,4,f +1189,6106,71,4,f +1189,6134,1,2,f +1189,61409,72,10,f +1189,6141,71,1,t +1189,6141,71,4,f +1189,6141,70,20,f +1189,6141,70,7,t +1189,61678,71,12,f +1189,61678,72,4,f +1189,6179,72,4,f +1189,6179,71,12,f +1189,6191,72,4,f +1189,6191,71,4,f +1189,6192,71,7,f +1189,6231,71,6,f +1189,6232,19,8,f +1189,62462,71,15,f +1189,6249,72,2,f +1189,63864,0,2,f +1189,63864,71,6,f +1189,63868,0,8,f +1189,63965,0,2,f +1189,63965,72,5,f +1189,64644,297,2,f +1189,64711,72,1,f +1189,64782,0,1,f +1189,6553,72,4,f +1189,6558,1,15,f +1189,6564,0,1,f +1189,6575,72,4,f +1189,6587,28,2,f +1189,6636,72,6,f +1189,6636,71,12,f +1189,72454,72,1,f +1189,75937,0,1,f +1189,85984,72,7,f +1189,85984,71,9,f +1189,87079,71,16,f +1189,87079,72,13,f +1189,87083,72,5,f +1189,87087,0,6,f +1189,87609,0,4,f +1189,87611,72,2,f +1189,87615,0,4,f +1189,87615,72,1,f +1189,88517,71,2,f +1189,88930,71,6,f +1189,90498,0,1,f +1189,91988,71,8,f +1189,92438,72,1,f +1189,92582,0,2,f +1189,92946,72,2,f +1189,93273,71,4,f +1189,93575,0,2,f +1189,93606,71,36,f +1189,93606,72,8,f +1189,95120,72,2,f +1189,96874,25,2,t +1189,98138,71,2,t +1189,98138,71,4,f +1189,99206,71,38,f +1189,99207,71,2,f +1189,99780,72,7,f +1189,99781,71,7,f +1191,30374,297,1,f +1191,32002,72,1,t +1191,32002,72,3,f +1191,3848,148,1,f +1191,40379,27,2,f +1191,4070,2,2,f +1191,4643678,9999,1,f +1191,4643679,9999,1,f +1191,4643680,9999,1,f +1191,4643681,9999,1,f +1191,4643682,9999,1,f +1191,53705,297,1,f +1191,59232,179,1,f +1191,92690,297,1,f +1191,92947,71,1,f +1191,970c00pr0267,27,1,f +1191,973pr1892c01,27,1,f +1191,98141,297,1,f +1191,98146pr0002,288,1,f +1191,98348,42,3,f +1192,30167,0,1,f +1192,3626bpx8,14,1,f +1192,970c00,0,1,f +1192,973px14ac01,4,1,f +1193,2780,0,2,f +1193,32013,7,2,f +1193,32015,7,2,f +1193,32039,0,2,f +1193,32138,0,1,f +1193,32140,0,2,f +1193,32553,15,3,f +1193,32554,143,1,f +1193,32570,7,1,f +1193,3705,0,2,f +1193,3713,7,2,f +1193,3749,7,1,f +1193,40582,15,1,f +1193,4519,0,4,f +1193,6553,7,2,f +1193,71509,0,1,f +1193,71509,0,1,t +1194,15,4,1,f +1194,17,4,1,f +1194,3003,1,1,f +1194,3003,4,1,f +1194,3004,14,1,f +1194,3004,1,3,f +1194,3004,47,5,f +1194,3004,4,2,f +1194,3005,15,4,f +1194,3005,14,9,f +1194,3010,15,4,f +1194,3010,1,1,f +1194,3020,14,3,f +1194,3020,4,1,f +1194,3020,1,2,f +1194,3021,14,1,f +1194,3021,15,2,f +1194,3022,0,4,f +1194,3022,1,1,f +1194,3022,15,1,f +1194,3022,4,1,f +1194,3023,4,1,f +1194,3023,14,4,f +1194,3023,7,1,f +1194,3023,0,2,f +1194,3023,15,3,f +1194,3023,1,2,f +1194,3024,15,4,f +1194,3024,0,11,f +1194,3024,14,5,f +1194,3032,14,1,f +1194,3032,15,1,f +1194,3035,14,1,f +1194,3039,1,2,f +1194,3039,4,2,f +1194,3040a,0,1,f +1194,3062a,7,1,f +1194,3137c01,0,3,f +1194,3183a,14,1,f +1194,3184,14,1,f +1194,3185,15,2,f +1194,3623,14,5,f +1194,3623,0,2,f +1194,3626a,14,1,f +1194,3629,15,1,f +1194,3641,0,6,f +1194,3659,14,4,f +1194,3660,4,1,f +1194,3710,15,6,f +1194,3710,0,1,f +1194,3710,14,4,f +1195,3003,15,5,f +1195,3004,15,20,f +1195,3005,15,6,f +1195,3005,47,1,f +1195,3008,15,1,f +1195,3009,15,2,f +1195,3020,0,4,f +1195,3022,0,1,f +1195,3037,1,6,f +1195,3038,1,2,f +1195,3039,1,6,f +1195,3040a,1,2,f +1195,3041,1,1,f +1195,3048a,1,2,f +1195,3065,47,2,f +1195,32bc01,4,1,f +1195,645bc01,4,1,f +1197,10197,72,2,f +1197,11090,72,1,f +1197,11946,15,1,f +1197,11947,15,1,f +1197,18654,72,1,f +1197,21560,25,2,f +1197,21561pr0001,15,1,f +1197,21562,15,2,f +1197,22183,15,1,f +1197,2780,0,7,f +1197,32034,0,4,f +1197,32039,0,1,f +1197,32062,4,6,f +1197,32123b,71,2,f +1197,32126,0,1,f +1197,32184,0,2,f +1197,32523,15,2,f +1197,3705,0,2,f +1197,41669,0,1,f +1197,41677,0,2,f +1197,42003,72,1,f +1197,43093,1,2,f +1197,4519,71,1,f +1197,59443,0,1,f +1197,60483,0,2,f +1197,6553,0,2,f +1197,6558,1,2,f +1197,6587,28,1,f +1197,74261,72,2,f +1197,90607,0,2,f +1197,90608,72,2,f +1197,90609,0,2,f +1197,90615,72,2,f +1197,90623,0,1,f +1197,90638,15,1,f +1197,90638pr0001,15,1,f +1197,90639,15,2,f +1197,90640,15,3,f +1197,90641,15,2,f +1197,90661,15,2,f +1197,92907,0,1,f +1197,93550,179,1,f +1197,93575,0,2,f +1197,98577,72,1,f +1197,99021,72,1,f +1198,2412b,71,3,f +1198,2412b,14,14,f +1198,2412b,72,10,f +1198,2431,15,14,f +1198,2431,72,5,f +1198,2431,0,6,f +1198,2432,71,9,f +1198,2436,71,1,f +1198,2437,41,1,f +1198,2446,15,1,f +1198,2447,40,1,t +1198,2447,40,1,f +1198,2450,0,2,f +1198,2453a,15,12,f +1198,2454a,15,29,f +1198,2456,15,3,f +1198,2456,72,2,f +1198,2465,71,2,f +1198,2486,14,2,f +1198,2540,71,1,f +1198,2555,15,2,f +1198,2569,0,1,t +1198,2569,0,2,f +1198,2654,46,2,f +1198,2654,1,1,f +1198,2736,71,2,f +1198,298c02,1,1,f +1198,298c02,1,1,t +1198,3001,15,1,f +1198,3001,71,5,f +1198,3001,0,1,f +1198,3002,72,1,f +1198,3002,15,2,f +1198,3003,14,1,f +1198,3003,15,1,f +1198,3004,0,11,f +1198,30043,71,3,f +1198,3005,15,9,f +1198,3005,0,1,f +1198,30055,71,6,f +1198,30055,0,6,f +1198,3008,0,2,f +1198,3008,71,1,f +1198,3009,15,33,f +1198,3009,72,6,f +1198,3010,0,4,f +1198,3010,15,17,f +1198,3010,1,1,f +1198,30106,71,1,f +1198,30134,0,1,f +1198,30136,19,6,f +1198,30145,15,3,f +1198,30151a,47,1,f +1198,30162,72,1,f +1198,30165,4,1,f +1198,30179,72,2,f +1198,3020,15,1,f +1198,3020,70,3,f +1198,3020,4,3,f +1198,3020,14,1,f +1198,3021,0,1,f +1198,3021,15,1,f +1198,3022,4,2,f +1198,3022,14,1,f +1198,30225,72,1,f +1198,3023,0,2,f +1198,3023,46,2,f +1198,3023,1,12,f +1198,3023,14,2,f +1198,30237a,72,7,f +1198,3024,15,2,f +1198,3024,47,2,f +1198,3024,36,2,f +1198,30249,15,2,f +1198,30261,15,2,f +1198,3027,0,2,f +1198,3030,0,2,f +1198,3030,71,4,f +1198,3031,15,2,f +1198,3033,0,7,f +1198,3034,0,2,f +1198,30340,15,2,f +1198,3035,0,1,f +1198,3037,15,2,f +1198,3037,0,2,f +1198,30383,15,1,f +1198,3039,72,1,f +1198,3039pr0001,15,1,f +1198,3039pr0002,15,1,f +1198,3039pr0005,15,1,f +1198,3040b,72,2,f +1198,30552,71,2,f +1198,30553,71,1,f +1198,3062b,4,1,f +1198,3062b,15,10,f +1198,3068b,15,3,f +1198,3068bpr0137,15,1,f +1198,3069b,15,2,f +1198,3069b,33,4,f +1198,3069b,0,3,f +1198,3069bp02,71,3,f +1198,3069bpr0030,15,1,f +1198,3069bpr0086,71,1,f +1198,3069bpr0099,15,1,f +1198,3070b,0,2,t +1198,3070b,0,4,f +1198,3176,0,2,f +1198,32014,0,2,f +1198,32028,15,2,f +1198,32062,4,8,f +1198,3245b,72,4,f +1198,3245b,15,4,f +1198,32530,72,4,f +1198,3460,71,2,f +1198,3622,15,2,f +1198,3623,0,4,f +1198,3624,15,3,f +1198,3626bpr0279,14,1,f +1198,3626bpr0325,14,1,f +1198,3626bpr0386,14,1,f +1198,3626bpr0389,14,1,f +1198,3626bpr0410,14,1,f +1198,3626bpr0411,14,1,f +1198,3626bpr0498,14,1,f +1198,3660,71,7,f +1198,3660,15,7,f +1198,3665,15,6,f +1198,3665,71,1,f +1198,3666,0,2,f +1198,3666,14,6,f +1198,3679,71,4,f +1198,3680,1,4,f +1198,3684,15,2,f +1198,3700,1,1,f +1198,3701,71,4,f +1198,3710,15,1,f +1198,3710,1,11,f +1198,3741,2,2,t +1198,3741,2,2,f +1198,3742,4,6,f +1198,3742,4,2,t +1198,3794a,1,1,f +1198,3794a,15,3,f +1198,3794a,0,10,f +1198,3829c01,71,2,f +1198,3832,4,3,f +1198,3832,15,1,f +1198,3836,70,1,f +1198,3837,72,1,f +1198,3857,72,1,f +1198,3899,47,2,f +1198,3899,14,2,f +1198,3900,15,4,f +1198,3901,70,1,f +1198,3937,15,1,f +1198,3941,15,2,f +1198,3957a,15,3,f +1198,3958,0,6,f +1198,3959,72,2,f +1198,3962b,0,3,f +1198,3963,71,2,f +1198,4006,0,1,f +1198,4032a,19,4,f +1198,4070,72,4,f +1198,4070,4,5,f +1198,4079,14,4,f +1198,4083,14,2,f +1198,4085c,1,1,f +1198,41334,0,2,f +1198,4151b,72,2,f +1198,4162,15,8,f +1198,4162,0,1,f +1198,41677,4,4,f +1198,4175,0,2,f +1198,4215b,40,1,f +1198,4215b,41,2,f +1198,4215b,15,2,f +1198,4216,15,44,f +1198,4217,15,5,f +1198,4218,41,16,f +1198,4219,15,2,f +1198,4286,15,7,f +1198,43337,1,4,f +1198,4345b,4,1,f +1198,4346,4,1,f +1198,4349,72,2,f +1198,4349,4,2,f +1198,4360,0,2,f +1198,43898,72,1,f +1198,44302a,15,2,f +1198,44375a,71,1,f +1198,4449,70,1,f +1198,44728,71,1,f +1198,4477,0,8,f +1198,4519,71,2,f +1198,4522,0,1,f +1198,4523,1,2,f +1198,4532,71,1,f +1198,4533,15,1,f +1198,45677,15,2,f +1198,4599a,71,1,f +1198,4599a,1,1,f +1198,4599a,15,1,f +1198,4697b,71,2,f +1198,4697b,71,1,t +1198,4740,15,1,f +1198,4740,14,2,f +1198,4740,71,3,f +1198,48336,71,2,f +1198,4865a,71,3,f +1198,4872,41,1,f +1198,48729a,72,6,f +1198,48812,70,1,f +1198,50745,15,4,f +1198,50745,72,4,f +1198,50859a,0,1,f +1198,50861,0,2,f +1198,50862,71,2,f +1198,50950,0,2,f +1198,52036,72,2,f +1198,52038,15,3,f +1198,52501,15,2,f +1198,54200,0,4,f +1198,54200,33,12,f +1198,54200,46,5,f +1198,54200,36,4,f +1198,57783,41,2,f +1198,57895,41,8,f +1198,58827,0,1,f +1198,59349,15,1,f +1198,59349,72,7,f +1198,59443,4,2,f +1198,59443,0,4,f +1198,59443,14,1,t +1198,59443,14,4,f +1198,6014b,15,8,f +1198,6015,0,8,f +1198,6019,4,2,f +1198,6019,71,4,f +1198,6020,71,1,f +1198,60470a,0,3,f +1198,60475a,0,7,f +1198,60475a,15,4,f +1198,60478,15,2,f +1198,60594,15,1,f +1198,60596,0,13,f +1198,60616a,41,1,f +1198,60621,71,2,f +1198,6064,2,2,f +1198,61068,15,1,f +1198,6111,15,8,f +1198,6111,72,2,f +1198,6134,71,1,f +1198,6141,34,4,f +1198,6141,34,3,t +1198,6141,47,2,f +1198,6141,47,1,t +1198,6141,71,5,f +1198,6141,36,3,t +1198,6141,46,4,t +1198,6141,33,4,f +1198,6141,33,3,t +1198,6141,71,2,t +1198,6141,46,5,f +1198,6141,36,12,f +1198,61482,71,4,f +1198,61482,71,1,t +1198,6157,71,4,f +1198,62113,72,1,f +1198,6232,4,2,f +1198,62808,72,2,f +1198,64567,71,2,f +1198,6541,14,8,f +1198,6553,0,2,f +1198,6558,1,4,f +1198,6636,0,18,f +1198,6636,15,2,f +1198,6636,14,2,f +1198,75c18,0,1,f +1198,89536,15,1,f +1198,970c00,72,2,f +1198,970c00,0,5,f +1198,973pr1186c01,0,1,f +1198,973pr1188c01,0,4,f +1198,973pr1197c01,15,2,f +1199,3003,4,2,f +1199,3004,15,4,f +1199,3004p51,14,2,f +1199,3005,4,4,f +1199,3022,4,2,f +1199,3022,0,4,f +1199,3022,15,2,f +1199,3023,4,2,f +1199,3024,15,4,f +1199,3040a,4,4,f +1199,3048a,4,2,f +1199,3049a,4,2,f +1199,3062a,4,4,f +1199,3471,2,1,f +1200,3626bpr0777,14,1,f +1200,64647,15,1,f +1200,88646,0,1,f +1200,93550,179,1,f +1200,93554,0,1,f +1200,970c00pr0212,0,1,f +1200,973pr1764c01,1,1,f +1202,2423,2,3,f +1202,2453a,70,1,f +1202,3031,2,1,f +1202,6251,15,1,f +1206,10247,72,10,f +1206,10928,72,1,f +1206,11090,14,2,f +1206,11091,308,2,f +1206,11097,297,1,f +1206,11098,41,2,f +1206,11100,71,4,f +1206,11100,25,2,f +1206,11127,182,1,f +1206,11127,41,2,f +1206,11153,179,4,f +1206,11153,0,3,f +1206,11215,71,1,f +1206,11215,0,2,f +1206,11458,72,2,f +1206,11477,14,2,f +1206,11477,308,6,f +1206,11477,179,2,f +1206,11601,41,2,f +1206,13549,41,1,f +1206,14719,71,2,f +1206,14769,72,2,f +1206,15068,308,3,f +1206,15071,0,2,f +1206,15107,41,2,f +1206,15365pat0001,1,2,f +1206,15571,72,1,f +1206,15571,25,1,f +1206,15712,72,5,f +1206,15712,297,2,f +1206,15712,71,4,f +1206,16656pr0004,25,1,f +1206,16659pr0003,30,1,f +1206,16659pr0005,212,1,f +1206,16768pat0001,4,1,f +1206,18395,191,2,f +1206,18396pat0001,4,2,f +1206,18649,0,1,f +1206,18651,0,4,f +1206,18654,72,4,f +1206,18671,72,1,f +1206,2412b,179,3,f +1206,2412b,72,1,f +1206,2419,0,1,f +1206,2420,19,2,f +1206,2431,41,2,f +1206,2450,72,2,f +1206,2450,308,2,f +1206,2540,0,7,f +1206,2566,0,2,f +1206,2654,0,4,f +1206,2780,0,8,f +1206,2817,0,1,f +1206,2877,0,2,f +1206,2922,0,2,f +1206,298c02,71,2,f +1206,3001,4,1,f +1206,3010,71,5,f +1206,3020,25,1,f +1206,3020,0,6,f +1206,3021,19,7,f +1206,3022,70,4,f +1206,3023,308,8,f +1206,3023,41,8,f +1206,3023,71,8,f +1206,3023,28,4,f +1206,3024,41,10,f +1206,3031,72,2,f +1206,3049b,308,1,f +1206,30526,71,1,f +1206,30552,72,2,f +1206,30565,28,2,f +1206,3062b,41,2,f +1206,3068b,72,2,f +1206,3069b,73,1,f +1206,3070b,19,2,f +1206,32000,19,1,f +1206,32002,19,4,f +1206,32013,0,2,f +1206,32016,71,1,f +1206,32017,71,2,f +1206,32028,70,3,f +1206,32039,71,4,f +1206,32039,0,2,f +1206,32062,4,1,f +1206,32064a,71,4,f +1206,32072,0,4,f +1206,32084,308,1,f +1206,32123b,14,11,f +1206,32123b,71,4,f +1206,32140,72,2,f +1206,32184,4,2,f +1206,32187,71,3,f +1206,32192,72,2,f +1206,32523,72,2,f +1206,3460,308,3,f +1206,3626cpr1421,25,1,f +1206,3626cpr1434,30,1,f +1206,3626cpr1620,212,1,f +1206,3660,71,1,f +1206,3665,308,2,f +1206,3666,28,3,f +1206,3700,14,1,f +1206,3705,0,2,f +1206,3706,0,2,f +1206,3710,0,8,f +1206,3713,71,2,f +1206,3747a,70,1,f +1206,3894,72,4,f +1206,40379,0,2,f +1206,4081b,0,4,f +1206,41854,25,1,f +1206,41862,308,1,f +1206,42610,71,4,f +1206,43093,1,8,f +1206,43710,0,1,f +1206,43711,0,1,f +1206,43713,0,1,f +1206,43719,0,1,f +1206,43722,71,1,f +1206,43722,28,1,f +1206,43723,28,1,f +1206,43723,71,1,f +1206,44294,71,2,f +1206,44567a,72,1,f +1206,44661,72,1,f +1206,44676,0,2,f +1206,44728,72,2,f +1206,4477,70,2,f +1206,4519,71,2,f +1206,4716,71,1,f +1206,4871,72,2,f +1206,49668,179,4,f +1206,50304,28,4,f +1206,50305,28,4,f +1206,51739,28,2,f +1206,53454,41,1,f +1206,54200,182,2,f +1206,54200,41,4,f +1206,55013,72,1,f +1206,59426,72,3,f +1206,59443,0,6,f +1206,59900,320,1,f +1206,59900,71,2,f +1206,6003,28,2,f +1206,60470a,2,1,f +1206,60470a,71,2,f +1206,60471,71,1,f +1206,60474,308,3,f +1206,60478,71,2,f +1206,60849,0,1,f +1206,60897,72,2,f +1206,6091,72,2,f +1206,61252,14,1,f +1206,61252,72,3,f +1206,6141,179,10,f +1206,6141,46,2,f +1206,6141,70,2,f +1206,61485,0,1,f +1206,64567,0,2,f +1206,64647,182,2,f +1206,6536,72,3,f +1206,6558,1,1,f +1206,6632,0,2,f +1206,76766,0,1,f +1206,85984,28,6,f +1206,87083,72,2,f +1206,87580,28,1,f +1206,90194,72,1,f +1206,92593,4,1,f +1206,92692,0,1,f +1206,92906,72,2,f +1206,92947,0,2,f +1206,93273,72,1,f +1206,94925,71,2,f +1206,970c00pr0669,320,1,f +1206,970c00pr0673,71,1,f +1206,970d00pr0817,71,1,f +1206,973pr2685c01,4,1,f +1206,973pr2686c01,71,1,f +1206,973pr2887c01,71,1,f +1206,98138,41,3,f +1206,98138,179,6,f +1206,98138pr0023,182,1,f +1206,98564,148,4,f +1206,98834,0,2,f +1206,98835,308,4,f +1206,99207,0,1,f +1206,99207,71,4,f +1206,99780,0,2,f +1206,99780,4,1,f +1206,99781,71,2,f +1207,2336,25,1,f +1207,2348b,33,1,f +1207,2349a,0,1,f +1207,2362b,15,1,f +1207,2362b,0,2,f +1207,2397,0,1,f +1207,2412b,1,2,f +1207,2412b,0,19,f +1207,2419,15,2,f +1207,2421,7,1,f +1207,2431,1,3,f +1207,2432,4,1,f +1207,2432,1,2,f +1207,2433,14,2,f +1207,2437,33,1,f +1207,2445,25,1,f +1207,2445,0,2,f +1207,2446,15,1,f +1207,2447,33,1,f +1207,2448,0,2,f +1207,2454a,1,9,f +1207,2458,1,3,f +1207,2460,7,1,f +1207,2467,7,4,f +1207,2479,1,1,f +1207,2508,1,1,f +1207,2540,1,1,f +1207,2540,0,1,f +1207,2555,1,1,f +1207,2584,0,1,f +1207,2585,7,1,f +1207,2598,33,1,f +1207,2618,7,1,f +1207,2620,33,1,f +1207,2780,0,1,f +1207,3001,4,2,f +1207,30022,7,2,f +1207,3003,1,4,f +1207,3003,0,1,f +1207,3003,4,2,f +1207,3003,7,2,f +1207,3003,14,1,f +1207,30031,0,1,f +1207,30033,15,1,f +1207,30033,8,2,f +1207,3004,7,1,f +1207,3004,0,1,f +1207,3004,4,1,f +1207,3004pc0,15,1,f +1207,3005,1,7,f +1207,3008,1,1,f +1207,3010,7,3,f +1207,30136,8,1,f +1207,30151a,4,1,f +1207,30151a,14,1,f +1207,30152pat0001,0,1,f +1207,30157,7,3,f +1207,30162,8,2,f +1207,30169,42,1,f +1207,30180,1,2,f +1207,30191,7,1,f +1207,30192,8,1,f +1207,30193,8,2,f +1207,30194,8,2,f +1207,3020,1,1,f +1207,3020,0,1,f +1207,3020,7,5,f +1207,3021,7,1,f +1207,3022,7,2,f +1207,3022,0,3,f +1207,30229,8,1,f +1207,3023,1,5,f +1207,3023,0,2,f +1207,30236,1,1,f +1207,30237a,4,4,f +1207,3024,42,2,f +1207,3024,0,1,f +1207,30248,0,1,f +1207,30249,1,11,f +1207,30283,25,3,f +1207,30284,14,6,f +1207,30285,15,6,f +1207,30286,41,1,f +1207,30287p01,0,1,f +1207,30287p01,2,1,f +1207,30287p01,1,1,f +1207,30288,7,6,f +1207,3031,0,1,f +1207,30322,1,2,f +1207,30323,14,1,f +1207,30342,41,1,f +1207,3037,4,2,f +1207,3037,7,1,f +1207,3039,25,3,f +1207,3039,14,2,f +1207,3039p23,15,1,f +1207,3039pr0005,15,1,f +1207,3039px37,15,1,f +1207,3040b,0,1,f +1207,3040p04,7,1,f +1207,3045,25,2,f +1207,3068b,7,1,f +1207,3068bp12,15,1,f +1207,3068bpb0037,15,1,f +1207,3068bpb0038,15,1,f +1207,3068bpx30,14,1,f +1207,3069bp80,15,1,f +1207,3069bpr0101,7,1,f +1207,3070bpr0007,7,1,f +1207,32072,15,1,f +1207,3460,0,4,f +1207,354,33,6,f +1207,3613,15,1,f +1207,3614b,7,1,f +1207,3623,1,2,f +1207,3626bp02,14,1,f +1207,3626bp7b,14,2,f +1207,3626bp7c,14,1,f +1207,3626bpr0126,14,1,f +1207,3626bpx88,14,1,f +1207,3660,7,2,f +1207,3660,0,1,f +1207,3660,25,5,f +1207,3666,1,1,f +1207,3666,7,1,f +1207,3679,7,1,f +1207,3680,1,1,f +1207,3700,0,1,f +1207,3701,0,2,f +1207,3710,25,6,f +1207,3710,0,7,f +1207,3730,1,1,f +1207,3749,7,1,f +1207,3794a,0,2,f +1207,3794a,1,1,f +1207,3795,0,1,f +1207,3821,0,1,f +1207,3822,0,1,f +1207,3829c01,7,1,f +1207,3832,7,4,f +1207,3832,1,1,f +1207,3839b,0,2,f +1207,3867,15,4,f +1207,3899,47,1,f +1207,3900,15,2,f +1207,3937,14,2,f +1207,3937,0,1,f +1207,3938,1,1,f +1207,3941,4,1,f +1207,3941,7,1,f +1207,3941,14,1,f +1207,3962b,8,1,f +1207,4032a,0,2,f +1207,4079,4,1,f +1207,4081b,15,2,f +1207,4085c,1,2,f +1207,4085c,0,3,f +1207,4213,0,1,f +1207,4215b,33,1,f +1207,4286,1,9,f +1207,4286,7,2,f +1207,4315,7,1,f +1207,4315,0,1,f +1207,4318,14,1,f +1207,4349,4,2,f +1207,4476b,14,2,f +1207,4485,2,1,f +1207,4485,15,1,f +1207,4485pb02,15,1,f +1207,4488,0,1,f +1207,4589,57,1,f +1207,4589,42,3,f +1207,4590,0,2,f +1207,4599a,1,4,f +1207,4599a,0,1,f +1207,4623,0,2,f +1207,4623,4,1,f +1207,4625,0,1,f +1207,4714,15,1,f +1207,4715,15,2,f +1207,4729,1,2,f +1207,4735,15,1,f +1207,4740,42,2,f +1207,4740,15,8,f +1207,4871,1,2,f +1207,56823,0,1,f +1207,6019,15,3,f +1207,6019,1,4,f +1207,6019,7,4,f +1207,6020,0,1,f +1207,6048a,0,3,f +1207,6111,0,2,f +1207,6120,7,6,f +1207,6140,0,3,f +1207,6141,42,5,t +1207,6141,36,4,t +1207,6141,34,2,t +1207,6141,34,3,f +1207,6141,0,1,t +1207,6141,0,1,f +1207,6141,36,5,f +1207,6141,42,10,f +1207,6217,1,2,f +1207,63965,15,2,f +1207,6583,7,1,f +1207,6587,8,1,f +1207,71965,0,2,f +1207,75535,15,3,f +1207,75535,14,1,f +1207,78c09,14,2,f +1207,970c00,0,1,f +1207,970x001,4,2,f +1207,970x026,2,2,f +1207,970x026,1,1,f +1207,973p7ac01,0,1,f +1207,973p7bc01,2,2,f +1207,973pb0102c01,4,1,f +1207,973pb0103c01,4,1,f +1207,973px140c01,1,1,f +1207,x206c01,15,1,f +1208,2412b,72,4,f +1208,2420,14,2,f +1208,2420,71,8,f +1208,2431,15,2,f +1208,2431,0,12,f +1208,2436,14,2,f +1208,2444,71,2,f +1208,2456,0,1,f +1208,2540,72,1,f +1208,2654,0,2,f +1208,2730,0,4,f +1208,2736,71,1,f +1208,2780,0,1,t +1208,2780,0,6,f +1208,2819,0,1,f +1208,2877,72,3,f +1208,3001,0,2,f +1208,3002,15,2,f +1208,3004,14,14,f +1208,3009,14,2,f +1208,3010,14,5,f +1208,3020,14,7,f +1208,3020,15,7,f +1208,3021,15,8,f +1208,3021,14,4,f +1208,3022,14,5,f +1208,3022,0,4,f +1208,3023,36,4,f +1208,3023,14,12,f +1208,3023,47,2,f +1208,3023,1,8,f +1208,3024,182,2,f +1208,3024,14,4,f +1208,3031,0,2,f +1208,3033,72,2,f +1208,3034,0,4,f +1208,3035,0,1,f +1208,30374,71,2,f +1208,3039,14,2,f +1208,3039,0,4,f +1208,3040b,14,8,f +1208,30414,0,4,f +1208,30552,72,1,f +1208,3062b,71,20,f +1208,3068b,0,2,f +1208,3069b,0,4,f +1208,3069b,14,7,f +1208,3069b,1,2,f +1208,3069bpr0101,71,1,f +1208,3070b,0,1,t +1208,3070b,0,2,f +1208,3176,72,1,f +1208,32000,4,2,f +1208,32002,72,4,f +1208,32017,71,2,f +1208,32018,71,2,f +1208,32039,0,1,f +1208,32068,0,2,f +1208,32069,0,2,f +1208,32073,71,3,f +1208,32123b,71,1,t +1208,32123b,71,14,f +1208,32270,0,1,f +1208,3298,72,2,f +1208,3308,14,2,f +1208,3460,0,8,f +1208,3622,15,2,f +1208,3622,14,6,f +1208,3623,0,6,f +1208,3623,14,12,f +1208,3647,72,2,f +1208,3660,14,18,f +1208,3665,14,10,f +1208,3666,14,10,f +1208,3676,14,2,f +1208,3700,71,5,f +1208,3701,71,2,f +1208,3705,0,1,f +1208,3709,0,6,f +1208,3710,14,9,f +1208,3710,15,5,f +1208,3710,0,5,f +1208,3713,4,5,f +1208,3749,19,3,f +1208,3794b,71,1,f +1208,3795,0,1,f +1208,3795,14,7,f +1208,3832,71,1,f +1208,4032a,72,1,f +1208,4070,14,10,f +1208,4070,47,2,f +1208,4085c,0,4,f +1208,41747,14,2,f +1208,41748,14,2,f +1208,41749,14,1,f +1208,41750,14,1,f +1208,42022,14,4,f +1208,4274,1,2,f +1208,4274,1,1,t +1208,43722,14,2,f +1208,43722,0,1,f +1208,43723,0,1,f +1208,43723,14,2,f +1208,44126,14,2,f +1208,44301a,15,4,f +1208,44302a,71,5,f +1208,44309,0,4,f +1208,4477,71,1,f +1208,48336,71,2,f +1208,50950,1,4,f +1208,50950,15,2,f +1208,52107,14,10,f +1208,54200,0,1,t +1208,54200,1,1,t +1208,54200,14,1,t +1208,54200,182,2,f +1208,54200,182,1,t +1208,54200,0,6,f +1208,54200,1,4,f +1208,54200,14,18,f +1208,56145,71,4,f +1208,59426,72,2,f +1208,59443,72,4,f +1208,6019,71,5,f +1208,60478,72,6,f +1208,60479,0,9,f +1208,60485,71,1,f +1208,6060,14,2,f +1208,6091,72,4,f +1208,6141,15,1,t +1208,6141,4,8,f +1208,6141,71,6,f +1208,6141,4,1,t +1208,6141,1,1,t +1208,6141,15,4,f +1208,6141,1,2,f +1208,6141,71,1,t +1208,6141,47,8,f +1208,6141,47,1,t +1208,6141,0,1,t +1208,6141,0,10,f +1208,61678,14,14,f +1208,6179,71,1,f +1208,62462,0,1,f +1208,63864,1,14,f +1208,63864,14,6,f +1208,6558,1,4,f +1208,6589,19,2,f +1208,6630,0,1,f +1208,73983,72,2,f +1208,73983,14,4,f +1208,85984,0,3,f +1208,85984,14,7,f +1208,87083,72,2,f +1208,87087,0,2,f +1208,87620,0,2,f +1208,88292,0,2,f +1208,92280,0,4,f +1209,3001,15,14,f +1209,3002,15,8,f +1209,3003,15,12,f +1209,3004,15,8,f +1209,3005,15,4,f +1209,3006,15,1,f +1209,3007,15,1,f +1209,3008,15,2,f +1209,3009,15,4,f +1209,3010,15,4,f +1209,3622,15,4,f +1210,3001,0,6,f +1210,3001,14,22,f +1210,3001,1,22,f +1210,3001,15,22,f +1210,3001,2,22,f +1210,3001,4,22,f +1210,3002,0,6,f +1210,3002,1,6,f +1210,3002,15,12,f +1210,3002,2,6,f +1210,3002,4,6,f +1210,3002,14,12,f +1210,3003,4,20,f +1210,3003,15,26,f +1210,3003,36,24,f +1210,3003,33,24,f +1210,3003,1,20,f +1210,3003,14,20,f +1210,3003,2,20,f +1210,3003,0,20,f +1210,3004,0,30,f +1210,3004,2,24,f +1210,3004,4,18,f +1210,3004,1,18,f +1210,3004,14,24,f +1210,3004,15,30,f +1210,3006,4,4,f +1210,3006,1,4,f +1210,3006,14,4,f +1210,3006,15,4,f +1210,3006,71,4,f +1210,3010,15,6,f +1210,3010,14,6,f +1210,3010,2,6,f +1210,3020,15,6,f +1210,3020,0,6,f +1210,3021,15,6,f +1210,3022,15,6,f +1210,3022,0,6,f +1210,3039,33,6,f +1210,3039,36,6,f +1210,3040b,14,6,f +1210,3065,33,18,f +1210,3065,36,18,f +1210,3665,14,6,f +1211,15664pr0001,14,1,f +1211,3626cpr1404,47,1,f +1211,87994,35,1,f +1211,88646,0,1,f +1211,970c00,288,1,f +1211,973pr2610c01,288,1,f +1212,2412b,0,4,f +1212,2877,1,10,f +1212,2878c01,0,4,f +1212,2920,0,2,f +1212,3009,1,2,f +1212,3020,0,2,f +1212,30237a,1,10,f +1212,3031,0,2,f +1212,3034,8,2,f +1212,3069bp0a,0,2,f +1212,3623,0,4,f +1212,3795,0,2,f +1212,3941,6,36,f +1212,4022,0,2,f +1212,4025,0,2,f +1212,4070,1,4,f +1212,4095,0,10,f +1212,4175,0,4,f +1212,4215b,0,2,f +1212,4460a,0,4,f +1212,4477,0,2,f +1212,60169,7,2,f +1212,6187,7,2,f +1212,6583,8,2,f +1212,6584,0,1,f +1212,73092,0,2,f +1213,11213,322,2,f +1213,11408pr0004c01,78,1,f +1213,11618,31,1,t +1213,11618,31,1,f +1213,11816pr0013,78,1,f +1213,11818pr0002,78,1,f +1213,15279,10,3,f +1213,15469,322,1,f +1213,15470,297,1,t +1213,15470,297,4,f +1213,15677,4,1,f +1213,15745,45,2,f +1213,15745,45,1,t +1213,15875pr0002c01,29,1,f +1213,16411,9999,1,t +1213,16925pr0001c01,379,1,f +1213,2343,297,2,f +1213,2423,2,6,f +1213,2431,70,3,f +1213,2454a,15,2,f +1213,2551,29,1,f +1213,3001,70,1,f +1213,3004,19,7,f +1213,3004,15,3,f +1213,3004,272,4,f +1213,3004,2,1,f +1213,3005,26,3,f +1213,30056,26,2,f +1213,30093,10,4,f +1213,30136,70,4,f +1213,3020,15,2,f +1213,3021,272,2,f +1213,3021,5,5,f +1213,3023,28,3,f +1213,3023,15,6,f +1213,3023,5,2,f +1213,3029,322,1,f +1213,3032,15,1,f +1213,3032,70,1,f +1213,3035,19,2,f +1213,30367b,322,1,f +1213,30374,15,2,f +1213,3039,19,4,f +1213,3039,33,1,f +1213,3040b,26,2,f +1213,3040b,19,11,f +1213,3040b,70,4,f +1213,3048c,297,1,f +1213,30562,15,2,f +1213,30565,322,1,f +1213,30565,28,2,f +1213,30613,15,3,f +1213,3062b,70,6,f +1213,3297,26,2,f +1213,33051,10,1,f +1213,33085,14,1,f +1213,33125,484,1,f +1213,33291,191,2,t +1213,33291,5,13,f +1213,33291,191,7,f +1213,33291,5,2,t +1213,33320,2,1,f +1213,33322,297,1,t +1213,33322,297,1,f +1213,3460,15,1,f +1213,3626c,47,2,f +1213,3665,15,4,f +1213,3710,28,4,f +1213,3710,70,3,f +1213,3741,2,1,t +1213,3741,2,2,f +1213,3794b,27,2,f +1213,3794b,297,5,f +1213,3941,70,2,f +1213,4150,29,2,f +1213,4175,191,1,f +1213,4286,2,5,f +1213,4460b,70,2,f +1213,4495b,2,2,f +1213,4495b,191,1,f +1213,4727,10,3,f +1213,47759,26,1,f +1213,48729b,72,1,f +1213,48729b,72,1,t +1213,50950,15,2,f +1213,54200,33,1,t +1213,54200,33,2,f +1213,59900,297,14,f +1213,61183,0,1,f +1213,6141,297,1,t +1213,6141,297,8,f +1213,6141,47,1,f +1213,6141,47,1,t +1213,6256,29,1,f +1213,6259,15,1,f +1213,64644,308,1,f +1213,85984,19,2,f +1213,87079,26,3,f +1213,87580,28,1,f +1213,87580,272,2,f +1213,87585,70,2,f +1213,87585,70,1,t +1213,88072,72,1,f +1213,92438,226,1,f +1213,92456pr0049c01,78,1,f +1213,92690,70,2,f +1213,93092,5,1,f +1213,93095,29,2,f +1213,98138,41,2,f +1213,98138,41,1,t +1213,98284,70,1,f +1214,2343,4,2,f +1214,2412b,7,1,f +1214,2412b,4,4,f +1214,2420,1,2,f +1214,2431,15,1,f +1214,2431p06,1,1,f +1214,2431p51,4,1,f +1214,2436,15,2,f +1214,2437,41,1,f +1214,2446,15,1,f +1214,2447,41,1,f +1214,3004,15,2,f +1214,3020,1,1,f +1214,3020,4,1,f +1214,3020,15,1,f +1214,3021,4,2,f +1214,3022,15,1,f +1214,3023,1,1,f +1214,3023,15,1,f +1214,3070b,14,2,f +1214,3455,15,2,f +1214,3626apr0001,14,1,f +1214,3641,0,2,f +1214,3710,4,3,f +1214,3710,15,1,f +1214,3829c01,15,1,f +1214,3937,7,2,f +1214,3937,15,1,f +1214,3938,15,1,f +1214,3938,7,2,f +1214,4083,1,1,f +1214,4085c,7,4,f +1214,4466,7,1,f +1214,4467,7,1,f +1214,4600,0,2,f +1214,4624,15,2,f +1214,4732,4,1,f +1214,4865a,15,2,f +1214,6014a,15,2,f +1214,6015,0,2,f +1214,970c00,4,1,f +1214,973p0ac04,4,1,f +1215,11211,19,1,f +1215,11291,4,1,f +1215,11458,4,2,f +1215,11477,4,8,f +1215,15573,0,1,f +1215,15712,0,3,f +1215,18973,40,1,f +1215,18974,4,4,f +1215,18975,72,2,f +1215,18976,179,4,f +1215,18977,0,4,f +1215,18978a,179,4,f +1215,18978b,179,4,t +1215,18980,0,1,f +1215,2420,0,2,f +1215,2431,0,1,f +1215,2446,0,1,f +1215,2447,47,1,f +1215,2447,47,1,t +1215,3001,14,1,f +1215,30029,0,1,f +1215,3003,40,2,f +1215,3004,71,3,f +1215,30043,4,1,f +1215,3020,71,3,f +1215,3020,0,1,f +1215,3021,1,1,f +1215,3022,14,3,f +1215,3023,4,8,f +1215,3024,4,1,t +1215,3024,4,6,f +1215,3039,0,1,f +1215,3040b,71,2,f +1215,3062b,4,2,f +1215,3068b,0,1,f +1215,3069b,4,1,f +1215,3070b,4,1,t +1215,3070b,0,1,t +1215,3070b,71,1,t +1215,3070b,0,2,f +1215,3070b,71,2,f +1215,3070b,4,5,f +1215,3176,72,1,f +1215,3626bpr0389,14,1,f +1215,3678b,71,1,f +1215,3710,4,2,f +1215,3710,0,3,f +1215,3749,19,4,f +1215,3795,71,1,f +1215,3829c01,71,1,f +1215,3942c,0,1,f +1215,4006,0,1,f +1215,4070,15,2,f +1215,4274,1,1,t +1215,4274,1,2,f +1215,43722,4,3,f +1215,43723,4,3,f +1215,54200,4,1,t +1215,54200,15,1,t +1215,54200,15,1,f +1215,54200,4,3,f +1215,6141,1,4,f +1215,6141,182,1,f +1215,6141,1,1,t +1215,6141,182,1,t +1215,6141,36,3,f +1215,6141,34,1,t +1215,6141,36,1,t +1215,6141,34,3,f +1215,63864,4,6,f +1215,63965,0,1,f +1215,6636,0,2,f +1215,75899stk01,9999,1,f +1215,87609,4,1,f +1215,93273,4,4,f +1215,93606,4,1,f +1215,93606,0,1,f +1215,970c00,4,1,f +1215,973pr2958c01,4,1,f +1215,99206,15,2,f +1215,99207,0,6,f +1215,99780,0,6,f +1215,99781,71,6,f +1216,604c01,15,6,f +1216,604c01,4,6,f +1219,4092,0,2,f +1220,2412b,72,2,f +1220,2420,72,2,f +1220,2431,71,2,f +1220,2431,4,2,f +1220,2431pr0054,4,1,f +1220,2437,27,1,f +1220,2437pr0002,27,1,f +1220,2441,0,1,f +1220,2456,72,1,f +1220,2540,71,2,f +1220,3001,4,2,f +1220,3002,72,2,f +1220,30027b,71,4,f +1220,30028,0,4,f +1220,3004,27,2,f +1220,3005,4,2,f +1220,3009,4,1,f +1220,3010,4,1,f +1220,3020,19,1,f +1220,3020,71,2,f +1220,3022,71,2,f +1220,3023,4,2,f +1220,3023,1,10,f +1220,3023,15,2,f +1220,3023,0,3,f +1220,3024,36,2,f +1220,3034,15,2,f +1220,30367b,72,1,f +1220,3039,72,2,f +1220,30414,14,3,f +1220,3068b,27,1,f +1220,3069b,71,2,f +1220,3070b,4,1,t +1220,3070b,4,4,f +1220,32013,71,1,f +1220,3245c,72,1,f +1220,3623,72,2,f +1220,3660,71,2,f +1220,3665,71,2,f +1220,3666,0,2,f +1220,3666,14,2,f +1220,3666,4,1,f +1220,3710,2,2,f +1220,3710,27,1,f +1220,3795,4,3,f +1220,3795,71,2,f +1220,3941,72,2,f +1220,3958,4,1,f +1220,3958,71,1,f +1220,4032a,72,2,f +1220,4032a,4,2,f +1220,4035,71,1,f +1220,4460b,4,2,f +1220,4488,71,4,f +1220,4697b,71,1,t +1220,4697b,71,1,f +1220,4865a,4,2,f +1220,50745,4,4,f +1220,50950,71,2,f +1220,52031,4,1,f +1220,54200,4,4,f +1220,54200,4,1,t +1220,58176,33,2,f +1220,59900,71,1,f +1220,6014b,4,4,f +1220,6020,71,1,f +1220,60212,27,2,f +1220,60470b,0,1,f +1220,60475b,71,4,f +1220,60476,4,4,f +1220,60478,71,2,f +1220,60581,4,2,f +1220,6091,4,4,f +1220,61184,71,3,f +1220,6126b,182,1,f +1220,6141,36,1,t +1220,6141,36,1,f +1220,6141,72,4,f +1220,6141,182,1,f +1220,6141,47,2,t +1220,6141,182,1,t +1220,6141,47,6,f +1220,6141,72,1,t +1220,6215,4,2,f +1220,64453,4,1,f +1220,64567,0,1,f +1220,73590c03a,0,2,f +1220,85940,0,1,f +1220,85984,4,3,f +1220,85984,4,1,t +1220,87079pr0036,4,1,f +1220,87087,72,2,f +1220,87544,4,2,f +1220,87580,4,1,f +1220,87609,14,1,f +1220,87618,71,1,f +1220,87697,0,4,f +1220,88072,0,1,f +1220,88930,27,2,f +1220,92280,71,5,f +1220,93273pr0004,27,1,f +1220,93274,27,1,f +1220,9484stk01,9999,1,t +1220,98138pr0005,71,1,f +1220,98138pr0005,71,1,t +1221,32073,0,1,f +1221,32174,0,6,f +1221,32556,7,1,f +1221,3706,0,2,f +1221,41661,4,2,f +1221,41665,4,2,f +1221,41666,7,2,f +1221,41667,7,1,f +1221,41668,4,2,f +1221,41669,33,2,f +1221,41670,25,4,f +1221,41671pat0002,4,1,f +1221,41672,0,2,f +1221,41752,8,1,f +1221,42042,7,1,f +1221,42042und,1,1,f +1221,42074,15,2,f +1221,4519,0,5,f +1221,6628,0,2,f +1221,85544,10,1,f +1222,2780,0,2,t +1222,2780,0,5,f +1222,32002,72,1,t +1222,32002,72,2,f +1222,32017,0,2,f +1222,32039,0,4,f +1222,32062,0,7,f +1222,32138,0,2,f +1222,32174,72,2,f +1222,32174,0,17,f +1222,32175,179,4,f +1222,32316,0,2,f +1222,32449,0,2,f +1222,32525,0,4,f +1222,32580,179,1,f +1222,3705,0,7,f +1222,3706,0,2,f +1222,3708,0,1,f +1222,3713,71,1,t +1222,3713,71,4,f +1222,41669,135,2,f +1222,41669,0,4,f +1222,41677,72,4,f +1222,41677,0,6,f +1222,42003,0,2,f +1222,43093,1,19,f +1222,43558,135,1,f +1222,43559,135,2,f +1222,44816,179,2,f +1222,4519,71,7,f +1222,47299,135,4,f +1222,47300,72,8,f +1222,47306,0,1,f +1222,47312,72,1,f +1222,47313,42,1,f +1222,47326pat03,0,4,f +1222,47328,320,4,f +1222,50858,179,2,f +1222,50858,320,2,f +1222,50919,135,4,f +1222,53564,320,1,f +1222,53582,179,1,f +1222,53585,0,2,f +1222,53586,135,2,f +1222,53587,179,2,f +1222,55013,0,2,f +1222,6536,0,8,f +1222,6538b,72,2,f +1222,6553,0,5,f +1222,6558,0,9,f +1222,6575,0,2,f +1222,6587,72,4,f +1222,6632,135,4,f +1222,6632,0,4,f +1223,2343,47,2,f +1223,2439,8,4,f +1223,2447,41,1,f +1223,2495,4,1,f +1223,2496,0,1,f +1223,2610,14,2,f +1223,2614,0,1,f +1223,3834,15,1,f +1223,3835,0,1,f +1223,3836,6,1,f +1223,3837,8,1,f +1223,3838,14,1,f +1223,3852b,6,1,f +1223,3899,4,2,f +1223,3900,15,2,f +1223,3901,6,1,f +1223,3901,0,1,f +1223,3962b,0,1,f +1223,4006,0,1,f +1223,4081b,4,1,f +1223,4349,7,1,f +1223,4360,0,1,f +1223,4449,15,1,f +1223,4449,6,1,f +1223,4522,0,1,f +1223,4528,0,1,f +1223,4529,0,1,f +1223,4599a,1,1,f +1223,4599a,4,1,f +1223,4740,8,4,f +1223,56823,0,1,f +1223,6093,4,1,f +1223,6141,46,1,f +1223,6158,0,1,f +1224,2452,0,2,f +1224,251,0,1,f +1224,3679,7,1,f +1224,3830,15,2,f +1224,3830,7,2,f +1224,3831,7,2,f +1224,3831,15,2,f +1224,3937,15,2,f +1224,3937,7,2,f +1224,3938,7,2,f +1224,3938,15,2,f +1224,4275b,0,2,f +1224,4276b,0,2,f +1224,4504,0,2,f +1224,4531,0,2,f +1224,73983,15,2,f +1224,73983,0,2,f +1225,2420,14,4,f +1225,2436,14,1,f +1225,2444,14,2,f +1225,2444,0,6,f +1225,2452,14,2,f +1225,2717,1,1,f +1225,2730,14,2,f +1225,2730,0,2,f +1225,2744,14,2,f +1225,2780,0,49,f +1225,2793c01,14,3,f +1225,2797c02,14,1,f +1225,2819,7,1,f +1225,2825,7,7,f +1225,2825,0,4,f +1225,2825,14,4,f +1225,2850a,7,6,f +1225,2851,8,6,f +1225,2852,7,6,f +1225,2853,7,8,f +1225,2854,8,2,f +1225,2905,14,2,f +1225,2905,7,1,f +1225,2995,0,4,f +1225,2996,14,4,f +1225,3004,7,1,f +1225,3005,14,2,f +1225,3021,14,10,f +1225,3021,0,2,f +1225,3022,0,1,f +1225,3022,7,4,f +1225,3023,14,10,f +1225,3023,7,9,f +1225,3023,0,4,f +1225,3069b,14,2,f +1225,3069b,7,2,f +1225,32000,0,4,f +1225,32000,14,2,f +1225,32000,7,10,f +1225,32001,7,1,f +1225,32001,14,3,f +1225,32002,8,9,f +1225,32009,14,4,f +1225,32013,14,2,f +1225,32013,0,2,f +1225,32015,0,2,f +1225,32017,14,3,f +1225,32017,7,2,f +1225,32030,0,1,f +1225,32034,7,3,f +1225,32039,0,2,f +1225,32054,0,2,f +1225,32062,0,9,f +1225,3245b,7,2,f +1225,3623,14,6,f +1225,3647,7,5,f +1225,3649,7,1,f +1225,3650c,7,2,f +1225,3665,14,4,f +1225,3666,14,1,f +1225,3666,7,1,f +1225,3666,0,1,f +1225,3673,7,1,f +1225,3700,14,8,f +1225,3700,0,2,f +1225,3701,7,3,f +1225,3702,14,4,f +1225,3702,0,2,f +1225,3703,14,4,f +1225,3703,0,2,f +1225,3705,0,11,f +1225,3706,0,15,f +1225,3707,0,12,f +1225,3709,7,1,f +1225,3709,14,2,f +1225,3709,0,4,f +1225,3710,14,7,f +1225,3710,7,1,f +1225,3713,7,13,f +1225,3737,0,3,f +1225,3747b,14,2,f +1225,3749,7,12,f +1225,3794a,7,2,f +1225,3894,0,4,f +1225,3894,14,2,f +1225,3895,0,2,f +1225,3935,14,1,f +1225,3936,14,1,f +1225,3941,46,1,f +1225,4019,7,5,f +1225,4032a,14,1,f +1225,4081b,14,2,f +1225,4150,14,1,f +1225,4263,0,2,f +1225,4265b,7,47,f +1225,4274,7,3,f +1225,4519,0,13,f +1225,4697b,7,3,f +1225,4859,14,4,f +1225,5102c02,1,2,f +1225,5102c03,0,2,f +1225,5102c06,1,1,f +1225,5102c09,0,2,f +1225,5102c11,1,1,f +1225,5102c19,0,4,f +1225,5102c34,1,2,f +1225,6091,14,2,f +1225,6141,14,13,f +1225,6141,7,3,f +1225,6180,14,1,f +1225,6536,7,16,f +1225,6536,0,12,f +1225,6536,14,2,f +1225,6538b,7,3,f +1225,6553,7,2,f +1225,6558,0,17,f +1225,6573,8,2,f +1225,6583,14,2,f +1225,6587,8,2,f +1225,6589,7,7,f +1225,6632,14,6,f +1225,6632,0,10,f +1225,6632,7,9,f +1225,6636,0,1,f +1225,6641,7,2,f +1225,75215,7,2,f +1225,75535,0,4,f +1225,75535,14,2,f +1225,75974,1,1,f +1225,75c04,8,2,f +1225,9244,7,1,f +1226,10197,0,5,f +1226,11214,72,9,f +1226,11272,148,2,f +1226,11478,71,10,f +1226,11946,1,2,f +1226,11947,1,2,f +1226,11957,0,2,f +1226,14720,71,2,f +1226,15100,0,16,f +1226,15462,70,1,f +1226,18575,19,1,f +1226,18651,0,4,f +1226,18654,72,1,t +1226,18654,72,6,f +1226,22961,71,4,f +1226,24116,71,2,f +1226,24116,47,1,f +1226,26287,4,1,f +1226,2736,71,1,f +1226,2780,0,120,f +1226,2780,0,4,t +1226,27940,72,1,f +1226,2825,71,2,f +1226,2850a,71,2,f +1226,2851,14,2,f +1226,2852,71,2,f +1226,2853,14,2,f +1226,3068b,0,1,f +1226,3069b,47,1,f +1226,32009,0,2,f +1226,32013,71,2,f +1226,32014,0,2,f +1226,32016,0,2,f +1226,32016,1,6,f +1226,32016,71,2,f +1226,32034,0,4,f +1226,32054,71,11,f +1226,32054,0,2,f +1226,32056,71,2,f +1226,32062,4,25,f +1226,32073,71,13,f +1226,32123b,14,10,f +1226,32123b,14,1,t +1226,32140,0,2,f +1226,32140,1,2,f +1226,32184,71,6,f +1226,32192,72,2,f +1226,32198,19,1,f +1226,32249,71,2,f +1226,32270,0,1,f +1226,32278,0,2,f +1226,32291,0,2,f +1226,32316,71,45,f +1226,32316,1,2,f +1226,32523,1,6,f +1226,32523,0,11,f +1226,32523pr0001,15,1,f +1226,32524,0,6,f +1226,32526,71,3,f +1226,32526,0,4,f +1226,3673,71,2,f +1226,3673,71,1,t +1226,3705,4,13,f +1226,3706,0,2,f +1226,3713,71,10,f +1226,3713,71,1,t +1226,3749,19,1,f +1226,40490,71,2,f +1226,41677,71,6,f +1226,41678,71,4,f +1226,4185,71,2,f +1226,42003,0,9,f +1226,42063stk01,9999,1,f +1226,4274,71,5,f +1226,4274,71,1,t +1226,43093,1,10,f +1226,44294,14,2,f +1226,4519,14,7,f +1226,4740,47,1,f +1226,4740,71,1,f +1226,48989,71,2,f +1226,57515,72,2,f +1226,60483,71,12,f +1226,60484,0,4,f +1226,60485,71,2,f +1226,6141,47,1,t +1226,6141,47,2,f +1226,61903,71,2,f +1226,62462,71,1,f +1226,63869,0,3,f +1226,64178,71,1,f +1226,64179,71,6,f +1226,64391,0,1,f +1226,64683,0,1,f +1226,6536,1,3,f +1226,6536,0,12,f +1226,6558,1,45,f +1226,6589,19,1,f +1226,6628,0,2,f +1226,6629,1,4,f +1226,6629,0,1,f +1226,76537,14,2,f +1226,78c07,179,2,f +1226,87080,0,1,f +1226,87082,71,6,f +1226,87083,72,3,f +1226,87086,0,1,f +1226,87408,0,1,f +1226,88517,0,2,f +1226,92907,71,4,f +1226,98138,47,1,f +1226,98138,47,1,t +1227,32062,0,2,f +1227,32174,72,2,f +1227,32174,320,4,f +1227,3706,0,1,f +1227,42003,72,2,f +1227,4519,71,1,f +1227,47296,72,1,f +1227,47300,72,2,f +1227,47311,320,2,f +1227,48253,82,1,f +1227,50921,320,1,f +1227,53069,82,1,f +1227,6558,0,2,f +1232,51035,43,2,f +1232,51035,143,2,f +1232,51036,43,2,f +1232,51036,143,2,f +1232,clikits111,47,1,f +1233,22667,4,1,f +1233,22667,4,1,t +1233,2412b,0,1,f +1233,2417,10,1,f +1233,2546,13,1,f +1233,3005,462,1,f +1233,3005,45,3,f +1233,30153,52,1,f +1233,30153,45,1,f +1233,3020,22,1,f +1233,3022,22,1,f +1233,3031,26,1,f +1233,3062b,5,2,f +1233,3068bpb0056,15,1,f +1233,3659,25,1,f +1233,3899,45,1,f +1233,4088,26,1,f +1233,4528,5,1,f +1233,4529,5,1,f +1233,4589,34,2,f +1233,6141,5,5,f +1233,6141,5,2,t +1233,6141,57,2,f +1233,6141,57,1,t +1233,6182,462,1,f +1233,6186,462,1,f +1234,10055pr0001,484,1,f +1234,11477,70,1,f +1234,11477,71,2,f +1234,12825,72,1,f +1234,13349,70,2,f +1234,14226c11,0,1,f +1234,14395,70,4,f +1234,14716,308,2,f +1234,15068,308,2,f +1234,15303,0,2,f +1234,15332,70,1,f +1234,15400,72,1,f +1234,18166,0,2,f +1234,2357,70,2,f +1234,2420,19,2,f +1234,2431,70,1,f +1234,2432,70,2,f +1234,2453b,70,5,f +1234,2460,0,1,f +1234,2489,308,1,f +1234,2540,0,3,f +1234,2654,71,3,f +1234,2736,71,1,f +1234,2780,0,1,t +1234,2780,0,1,f +1234,3004,288,5,f +1234,3005,288,10,f +1234,30136,70,6,f +1234,30136,308,4,f +1234,30137,70,3,f +1234,3020,19,5,f +1234,3020,70,1,f +1234,3021,288,2,f +1234,3022,72,1,f +1234,30229,72,1,f +1234,3023,70,9,f +1234,3024,0,2,f +1234,3024,0,1,t +1234,3031,72,1,f +1234,3032,70,3,f +1234,3034,1,2,f +1234,3034,0,2,f +1234,3035,70,2,f +1234,3036,70,1,f +1234,30374,0,1,f +1234,3040b,71,2,f +1234,30410,0,1,f +1234,3045,72,2,f +1234,3062b,0,3,f +1234,3062b,46,1,f +1234,3062b,320,2,f +1234,3069b,70,2,f +1234,3070b,70,2,f +1234,3070b,70,1,t +1234,32013,72,1,f +1234,32016,70,2,f +1234,32028,71,2,f +1234,32062,0,2,f +1234,32064a,71,2,f +1234,32123b,71,1,t +1234,32123b,71,1,f +1234,32126,0,2,f +1234,32530,72,1,f +1234,3460,70,1,f +1234,3622,70,3,f +1234,3623,0,4,f +1234,3626cpr1110,78,1,f +1234,3626cpr1524,78,1,f +1234,3626cpr1525,78,1,f +1234,3626cpr1530,28,2,f +1234,3659,308,1,f +1234,3665,308,4,f +1234,3665,320,3,f +1234,3666,70,1,f +1234,3673,71,1,t +1234,3673,71,1,f +1234,3705,0,1,f +1234,3710,71,2,f +1234,3710,0,1,f +1234,3710,70,4,f +1234,3794b,71,2,f +1234,3794b,72,2,f +1234,3795,1,2,f +1234,3941,70,7,f +1234,3958,70,1,f +1234,4032a,70,1,f +1234,4070,0,2,f +1234,41669,0,1,f +1234,41879a,308,1,f +1234,43093,1,1,f +1234,43722,15,5,f +1234,43898,179,1,f +1234,4498,70,1,f +1234,4499,70,1,f +1234,4519,71,2,f +1234,4697b,71,1,t +1234,4697b,71,1,f +1234,4740,0,1,f +1234,48336,15,6,f +1234,4865a,0,1,f +1234,50950,308,4,f +1234,53585,0,1,f +1234,54200,15,4,f +1234,54200,70,5,f +1234,54200,70,2,t +1234,54200,15,1,t +1234,54383,288,3,f +1234,54384,288,3,f +1234,59443,70,2,f +1234,59900,320,5,f +1234,6020,70,1,f +1234,60470a,0,2,f +1234,60583b,0,1,f +1234,60594,288,2,f +1234,60596,0,2,f +1234,60607,297,2,f +1234,60752,179,1,f +1234,60897,0,1,f +1234,6141,182,1,t +1234,6141,0,1,t +1234,6141,0,7,f +1234,6141,70,1,t +1234,6141,182,2,f +1234,6141,70,9,f +1234,62462,0,1,f +1234,63868,72,8,f +1234,64648,179,1,f +1234,6541,0,3,f +1234,6553,72,1,f +1234,6636,70,7,f +1234,85984,70,4,f +1234,85984,15,2,f +1234,87079,71,1,f +1234,87087,72,6,f +1234,87991,484,1,f +1234,87994,70,1,f +1234,90194,70,2,f +1234,92280,0,2,f +1234,92593,72,1,f +1234,92950,72,1,f +1234,93231,70,2,f +1234,970c00pr0469,28,2,f +1234,970c00pr0578,308,1,f +1234,970c00pr0744,70,1,f +1234,973pr2063c01,308,2,f +1234,973pr2508c01,308,1,f +1234,973pr2799c01,326,1,f +1234,973pr2804c01,2,1,f +1236,3005pt0,15,5,f +1236,3005pt1,15,5,f +1236,3005pt2,15,5,f +1236,3005pt3,15,5,f +1236,3005pt4,15,5,f +1236,3005pt5,15,5,f +1236,3005pt6,15,5,f +1236,3005pt7,15,5,f +1236,3005pt8,15,5,f +1236,3005pt9,15,5,f +1237,2780,0,3,f +1237,2780,0,1,t +1237,32062,4,2,f +1237,42003,4,1,f +1237,43093,1,2,f +1237,4519,71,1,f +1237,47297,19,5,f +1237,47306,19,1,f +1237,47311,0,1,f +1237,49423,19,1,f +1237,53545,0,1,f +1237,53562,19,2,f +1237,57527,135,1,f +1237,57543,135,1,f +1237,59426,72,1,f +1237,60176,0,4,f +1237,60896,19,1,f +1237,61054,0,4,f +1237,62386,19,1,f +1237,64251,19,2,f +1237,64261,19,1,f +1237,64262,57,1,f +1237,64272pat0001,19,4,f +1237,64275,135,2,f +1237,64277c01,297,1,f +1237,64889pr0001,135,1,f +1237,6558,1,6,f +1241,10187stk01,9999,1,t +1241,14226c11,0,2,f +1241,2339,272,16,f +1241,2357,272,6,f +1241,2357,71,4,f +1241,2357,72,4,f +1241,2412b,0,40,f +1241,2412b,80,14,f +1241,2420,272,85,f +1241,2420,72,2,f +1241,2420,19,4,f +1241,2431,15,1,f +1241,2465,19,1,f +1241,2465,72,3,f +1241,2540,71,2,f +1241,2555,0,3,f +1241,2654,46,2,f +1241,2780,0,1,t +1241,2780,0,24,f +1241,2921,71,4,f +1241,298c05,71,1,t +1241,298c05,71,2,f +1241,3001,19,2,f +1241,3001,73,2,f +1241,3001,72,2,f +1241,3002,71,1,f +1241,3003,272,11,f +1241,3004,272,39,f +1241,3004,72,5,f +1241,3004,19,6,f +1241,3004,73,22,f +1241,3004,0,2,f +1241,3005,73,10,f +1241,3005,272,26,f +1241,3008,19,3,f +1241,3008,72,8,f +1241,3008,71,1,f +1241,3008,0,1,f +1241,3009,72,3,f +1241,3009,19,4,f +1241,3010,0,1,f +1241,3010,272,15,f +1241,3010,71,4,f +1241,3010,73,35,f +1241,3010,19,2,f +1241,3010,72,2,f +1241,30165,0,11,f +1241,3020,19,2,f +1241,3020,272,80,f +1241,3020,72,6,f +1241,3021,72,4,f +1241,3021,19,2,f +1241,3022,19,12,f +1241,3022,72,1,f +1241,3022,71,2,f +1241,3022,272,61,f +1241,3023,19,2,f +1241,3023,272,95,f +1241,3023,72,12,f +1241,3023,73,9,f +1241,3023,71,5,f +1241,3024,72,12,f +1241,3024,272,112,f +1241,3024,0,3,f +1241,3024,71,4,f +1241,3024,73,29,f +1241,3024,19,6,f +1241,3030,72,7,f +1241,3032,72,1,f +1241,3033,72,3,f +1241,3033,272,5,f +1241,3034,272,12,f +1241,3034,19,2,f +1241,3035,272,12,f +1241,3036,272,2,f +1241,30374,71,2,f +1241,30374,0,1,f +1241,30383,0,3,f +1241,3040b,0,3,f +1241,30553,0,3,f +1241,3062b,0,1,f +1241,3062b,72,10,f +1241,3068b,15,2,f +1241,3069b,272,20,f +1241,3069b,71,18,f +1241,3069b,73,4,f +1241,3070b,0,1,t +1241,3070b,0,3,f +1241,32018,72,4,f +1241,32019,0,5,f +1241,32020,15,5,f +1241,32054,71,2,f +1241,32064b,0,4,f +1241,32123b,14,1,t +1241,32123b,14,4,f +1241,32474,0,1,f +1241,32523,19,4,f +1241,32555,14,4,f +1241,3460,19,8,f +1241,3460,72,3,f +1241,3622,72,7,f +1241,3622,19,4,f +1241,3622,0,2,f +1241,3623,71,1,f +1241,3623,72,7,f +1241,3660,72,11,f +1241,3666,19,5,f +1241,3666,272,49,f +1241,3666,71,6,f +1241,3666,0,1,f +1241,3666,72,6,f +1241,3666,73,16,f +1241,3673,71,1,f +1241,3673,71,1,t +1241,3700,71,3,f +1241,3705,0,1,f +1241,3710,19,4,f +1241,3710,73,14,f +1241,3710,272,86,f +1241,3710,72,21,f +1241,3710,71,8,f +1241,3713,4,4,f +1241,3713,4,1,t +1241,3736,15,1,f +1241,3747b,72,8,f +1241,3749,19,1,f +1241,3794a,72,2,f +1241,3794a,272,23,f +1241,3795,19,2,f +1241,3795,72,2,f +1241,3832,72,6,f +1241,3937,72,6,f +1241,3938,71,3,f +1241,3941,0,1,f +1241,3958,19,4,f +1241,3960,80,4,f +1241,4006,0,1,f +1241,4070,0,34,f +1241,4070,72,6,f +1241,4085c,71,3,f +1241,4150,0,1,f +1241,4150,71,2,f +1241,4162,272,1,f +1241,41753,72,1,t +1241,41769,72,1,f +1241,41770,72,1,f +1241,4185,71,1,f +1241,42610,71,1,f +1241,4274,1,1,t +1241,4274,1,2,f +1241,4282,72,8,f +1241,4287,72,2,f +1241,43898,80,2,f +1241,43898,47,2,f +1241,44294,71,6,f +1241,44301a,72,6,f +1241,44302a,0,8,f +1241,44567a,72,2,f +1241,4460b,272,4,f +1241,44728,72,1,f +1241,4477,72,5,f +1241,4599a,71,1,f +1241,4623,71,2,f +1241,4735,71,1,f +1241,4740,71,3,f +1241,48288,0,1,f +1241,48336,71,2,f +1241,48336,0,2,f +1241,4865a,19,2,f +1241,50950,0,4,f +1241,54200,272,18,f +1241,54200,272,1,t +1241,59443,0,4,f +1241,6019,0,5,f +1241,60478,0,2,f +1241,60897,73,8,f +1241,6091,71,4,f +1241,6111,72,4,f +1241,6112,72,7,f +1241,6112,71,6,f +1241,6134,4,3,f +1241,6141,36,2,f +1241,6141,71,1,t +1241,6141,71,8,f +1241,6141,36,1,t +1241,6141,15,1,t +1241,6141,15,1,f +1241,6141,4,1,f +1241,6141,80,14,f +1241,6141,0,1,t +1241,6141,4,1,t +1241,6141,80,1,t +1241,6141,0,16,f +1241,6141,182,4,f +1241,6141,182,1,t +1241,6541,0,3,f +1241,6541,19,18,f +1241,6587,72,3,f +1241,6636,71,1,f +1241,85544,4,1,f +1242,4701c01,4,1,f +1245,32077,80,2,f +1245,32078,0,2,f +1246,2483,41,1,f +1246,2507,42,1,f +1246,3005,46,2,f +1246,3024,34,2,f +1246,3024,36,2,f +1246,3062b,36,2,f +1246,3065,33,2,f +1246,3067,36,2,f +1246,4213,33,1,f +1246,4315,15,1,f +1246,4625,15,1,f +1247,3647,7,4,f +1247,3648a,7,3,f +1247,3649,7,2,f +1247,3650a,7,2,f +1247,3736,7,1,f +1247,3743,7,6,f +1247,4019,7,2,f +1247,4185,7,1,f +1248,3001a,4,2,f +1248,3002a,4,2,f +1248,3003,4,2,f +1248,3004,4,24,f +1248,3004,47,1,t +1248,3004,47,3,f +1248,3004,7,6,f +1248,3005,7,2,f +1248,3005,4,18,f +1248,3008,7,2,f +1248,3008,4,12,f +1248,3009,4,12,f +1248,3009,7,2,f +1248,3010,7,2,f +1248,3010,47,2,f +1248,3010,4,10,f +1248,3010ap04,7,2,f +1248,3020,4,6,f +1248,3020,7,5,f +1248,3021,4,2,f +1248,3022,7,3,f +1248,3022,4,4,f +1248,3023,7,2,f +1248,3023,4,7,f +1248,3024,7,1,t +1248,3024,46,1,t +1248,3024,4,1,t +1248,3024,4,2,f +1248,3024,46,4,f +1248,3024,7,2,f +1248,3027,4,1,f +1248,3028,4,1,f +1248,3029,4,2,f +1248,3032,4,1,f +1248,3032,7,1,f +1248,3034,7,2,f +1248,3036,7,1,f +1248,3036,4,1,f +1248,3039,47,2,f +1248,3039,4,4,f +1248,3040a,4,2,f +1248,3040a,7,4,f +1248,3062a,0,4,f +1248,3062a,46,2,f +1248,3069b,4,4,f +1248,3070b,4,2,f +1248,3070b,4,1,t +1248,3127,7,1,f +1248,3176,7,1,f +1248,3188,4,1,f +1248,3189,4,1,f +1248,3192,7,1,f +1248,3193,7,1,f +1248,3298,4,3,f +1248,3324c01,7,1,f +1248,3455,4,2,t +1248,3455,4,2,f +1248,3460,4,2,f +1248,3461,14,2,f +1248,3462,4,1,f +1248,3480,7,2,f +1248,3481,4,2,f +1248,3482,7,8,f +1248,3483,0,8,f +1248,3581,4,2,f +1248,3622,4,4,f +1248,3622,7,2,f +1248,3623,4,4,f +1248,3644,14,2,f +1248,3660,7,4,f +1248,3660,4,8,f +1248,3665,4,4,f +1248,3665,7,4,f +1248,3666,7,2,f +1248,3666,4,4,f +1248,3678a,47,3,f +1248,3679,7,1,f +1248,3680,4,1,f +1248,3700,4,8,f +1248,3706,0,4,f +1248,3710,7,6,f +1248,3710,4,6,f +1248,3730,7,1,f +1248,3731,7,1,f +1248,3747a,4,3,f +1248,3749,7,2,f +1248,3795,4,2,f +1248,3795,7,1,f +1248,3821,7,1,f +1248,3822,7,1,f +1248,3829c01,7,1,f +1248,3939,47,2,f +1248,3956,7,2,f +1248,3957a,0,1,f +1248,4006,0,1,t +1248,4006,0,1,f +1248,4085a,7,1,f +1248,56823,0,1,f +1248,73037,4,1,f +1249,32203,0,2,f +1249,32205,4,1,f +1249,32209,15,4,f +1249,32219,0,2,f +1249,32242,4,2,f +1249,32246,4,2,f +1249,3713,7,4,f +1249,6581,0,2,f +1249,6582,15,2,f +1249,zbb013,22,6,f +1249,zbb014,7,2,f +1249,zbb015,0,6,f +1250,2453a,15,2,f +1250,2454a,15,1,f +1250,2465,15,1,f +1250,2569,7,1,f +1250,2582,41,6,f +1250,2584,0,2,f +1250,2585,0,2,f +1250,2780,0,16,f +1250,3001,0,2,f +1250,3004,15,1,f +1250,3005,15,2,f +1250,3008,15,1,f +1250,3008,0,2,f +1250,3009,0,1,f +1250,3010,0,1,f +1250,3020,7,1,f +1250,3021,0,2,f +1250,3023,0,2,f +1250,3034,0,1,f +1250,3034,2,2,f +1250,3035,0,1,f +1250,3036,0,1,f +1250,3037,0,2,f +1250,3039p12,4,1,f +1250,3062b,0,2,f +1250,3062b,4,2,f +1250,3069bp68,15,1,f +1250,3070b,0,1,t +1250,3070b,0,2,f +1250,3460,0,1,f +1250,3471,2,1,f +1250,3622,15,1,f +1250,3624,4,1,f +1250,3626bp03,14,1,f +1250,3665,15,1,f +1250,3679,7,1,f +1250,3680,0,1,f +1250,3705,0,2,f +1250,3710,0,2,f +1250,3710,7,2,f +1250,4079,14,3,f +1250,4162,7,8,f +1250,4162,15,3,f +1250,4282,2,3,f +1250,4286,0,1,f +1250,4515,7,4,f +1250,4532stk01,9999,1,t +1250,4623,0,2,f +1250,4625,0,6,f +1250,4872,41,3,f +1250,6141,0,1,f +1250,6141,0,1,t +1250,6160c01,15,1,f +1250,6536,7,2,f +1250,6553,7,2,f +1250,74746,8,2,f +1250,75535,15,8,f +1250,75535,4,8,f +1250,80547pb01,7,1,f +1250,970c00,0,1,f +1250,973p83c01,14,1,f +1251,2838c01,7,1,f +1251,2847c01,7,1,f +1251,3023,7,4,f +1251,3647,7,2,f +1251,3648a,7,1,f +1251,3650a,7,1,f +1251,3673,7,4,f +1251,3700,7,4,f +1251,3701,7,2,f +1251,3705,0,2,f +1251,3706,0,2,f +1251,3707,0,1,f +1251,3709,7,2,f +1251,3710,7,4,f +1251,3713,7,3,f +1251,3737,0,1,f +1251,3738,7,1,f +1251,3749,7,1,f +1251,3894,7,2,f +1251,4019,7,1,f +1251,4143,7,2,f +1251,4185,7,2,f +1251,4265b,7,3,f +1251,4519,0,1,f +1251,4716,0,1,f +1251,4757,15,1,f +1251,4758,15,1,f +1251,5306bc162,0,1,f +1251,85543,15,2,f +1251,85544,7,1,f +1251,85545,1,1,f +1251,85546,14,1,f +1252,3003,15,24,f +1252,30136,72,10,f +1252,3020,72,2,f +1252,3022,0,11,f +1252,30414,0,8,f +1252,3068b,15,8,f +1252,3068bpr0168,15,1,f +1252,3069b,27,2,f +1252,3069b,29,2,f +1252,3069b,72,2,f +1252,3069b,15,4,f +1252,3069b,0,4,f +1252,3623,72,3,f +1252,3660,72,1,f +1252,3747b,72,1,f +1252,3795,72,2,f +1252,4006,0,1,f +1252,44302a,72,1,f +1252,44567a,72,1,f +1252,44567a,0,4,f +1252,44728,0,4,f +1252,49668,15,1,f +1252,54200,0,2,f +1252,60471,0,4,f +1252,6141,14,2,f +1252,6141,14,1,t +1252,64776pat0001,0,1,f +1252,85861,15,12,f +1252,85861,15,1,t +1253,2555,71,2,f +1253,30162,72,2,f +1253,3020,19,1,f +1253,3021,71,1,f +1253,3022,70,2,f +1253,3023,19,1,f +1253,30259,70,2,f +1253,30374,70,2,f +1253,30408pr0002,15,1,f +1253,3062b,70,2,f +1253,3626b,0,1,f +1253,3794b,70,1,f +1253,3848,72,2,f +1253,3937,72,1,f +1253,42446,72,1,f +1253,4589,72,1,f +1253,47456,70,1,f +1253,6019,71,4,f +1253,60849,71,2,f +1253,6134,0,1,f +1253,970x026,15,1,f +1253,973pr0520c01,15,1,f +1258,2489,70,1,f +1258,3837,0,1,f +1258,3841,72,1,f +1259,2420,4,2,f +1259,2695,15,4,f +1259,2696,0,4,f +1259,2780,0,12,f +1259,2793c02,14,1,f +1259,2797c03,14,1,f +1259,3002,4,1,f +1259,3004,4,2,f +1259,3010,4,2,f +1259,3021,4,2,f +1259,3022,4,2,f +1259,3023,7,2,f +1259,3023,4,12,f +1259,3023,0,1,f +1259,3024,4,2,f +1259,3031,4,2,f +1259,3032,4,4,f +1259,3037,4,1,f +1259,3069b,4,2,f +1259,3460,4,1,f +1259,3622,4,2,f +1259,3623,4,2,f +1259,3647,7,3,f +1259,3648a,7,1,f +1259,3650a,7,1,f +1259,3651,7,4,f +1259,3665,4,4,f +1259,3666,4,3,f +1259,3673,7,10,f +1259,3700,4,9,f +1259,3701,4,6,f +1259,3702,4,4,f +1259,3703,4,2,f +1259,3705,0,3,f +1259,3706,0,2,f +1259,3707,0,3,f +1259,3708,0,2,f +1259,3709,4,4,f +1259,3710,7,1,f +1259,3710,4,8,f +1259,3713,7,10,f +1259,3737,0,2,f +1259,3738,4,3,f +1259,3743,7,1,f +1259,3749,7,2,f +1259,3795,4,1,f +1259,3894,4,8,f +1259,3895,4,4,f +1259,3941,46,1,f +1259,4032a,4,1,f +1259,4143,7,2,f +1259,4150,4,1,f +1259,4185,7,2,f +1259,4261,7,2,f +1259,4265a,7,4,f +1259,4274,7,4,f +1259,4275b,4,4,f +1259,4276b,4,4,f +1259,4442,7,3,f +1259,5102c08,7,1,f +1259,5102c13,0,1,f +1259,5102c20,7,1,f +1259,5102c20,0,1,f +1259,75215,7,1,f +1260,3020,6,4,f +1260,3021,6,4,f +1260,3022,6,4,f +1260,3023,6,4,f +1260,3029,6,2,f +1260,3031,6,2,f +1260,3032,6,2,f +1260,3034,6,2,f +1260,3035,6,2,f +1260,3036,6,2,f +1260,3460,6,2,f +1260,3623,6,2,f +1260,3666,6,2,f +1260,3710,6,2,f +1260,3795,6,2,f +1260,3832,6,2,f +1260,4477,6,2,f +1261,2995,0,2,f +1261,2996,15,2,f +1264,2377,15,2,f +1264,2456,14,2,f +1264,2456,4,2,f +1264,2456,15,2,f +1264,2456,1,2,f +1264,3001,4,8,f +1264,3001,14,8,f +1264,3001,70,2,f +1264,3001,1,6,f +1264,3001,0,3,f +1264,3001,15,14,f +1264,3001,2,3,f +1264,3001,27,2,f +1264,3002,27,2,f +1264,3002,14,8,f +1264,3002,15,14,f +1264,3002,2,4,f +1264,3002,0,4,f +1264,3002,4,10,f +1264,3002,70,2,f +1264,3002,1,8,f +1264,3003,1,16,f +1264,3003,0,8,f +1264,3003,15,32,f +1264,3003,4,20,f +1264,3003,2,8,f +1264,3003,70,6,f +1264,3003,27,6,f +1264,3003,14,18,f +1264,3004,70,8,f +1264,3004,2,10,f +1264,3004,27,8,f +1264,3004,15,24,f +1264,3004,0,10,f +1264,3004,14,22,f +1264,3004,4,24,f +1264,3004,1,20,f +1264,3005,0,6,f +1264,3005,1,10,f +1264,3005,4,14,f +1264,3005,70,6,f +1264,3005,15,16,f +1264,3005,2,6,f +1264,3005,14,12,f +1264,3005,27,6,f +1264,3005pe1,14,2,f +1264,3005pe1,15,2,f +1264,3007,14,1,f +1264,3007,15,2,f +1264,3007,4,1,f +1264,3007,1,1,f +1264,3008,15,4,f +1264,3008,4,2,f +1264,3008,14,2,f +1264,3008,1,2,f +1264,3009,4,4,f +1264,3009,1,4,f +1264,3009,14,4,f +1264,3009,15,8,f +1264,3010,0,2,f +1264,3010,15,10,f +1264,3010,2,2,f +1264,3010,27,2,f +1264,3010,4,6,f +1264,3010,70,2,f +1264,3010,14,4,f +1264,3010,1,3,f +1264,3020,4,2,f +1264,3020,15,2,f +1264,3021,4,2,f +1264,3021,15,2,f +1264,3022,15,2,f +1264,3022,4,2,f +1264,3031,4,1,f +1264,3034,4,2,f +1264,3034,15,2,f +1264,3035,4,1,f +1264,3037,0,6,f +1264,3039,14,4,f +1264,3039,0,2,f +1264,3039,2,2,f +1264,3040b,0,4,f +1264,3040b,14,2,f +1264,3041,0,1,f +1264,3043,0,2,f +1264,3065,33,2,f +1264,3297,4,12,f +1264,3298,4,8,f +1264,3299,4,3,f +1264,3300,4,2,f +1264,3307,4,2,f +1264,33303,15,4,f +1264,3622,4,6,f +1264,3622,14,4,f +1264,3622,2,4,f +1264,3622,0,4,f +1264,3622,27,2,f +1264,3622,70,2,f +1264,3622,1,4,f +1264,3622,15,8,f +1264,3660,2,2,f +1264,3660,14,2,f +1264,3665,14,2,f +1264,3666,4,2,f +1264,3684,2,2,f +1264,3795,4,2,f +1264,3941,15,2,f +1264,4130,15,2,f +1264,4130,14,2,f +1264,4131,0,4,f +1264,4132,15,4,f +1264,4132,4,4,f +1264,4132,1,4,f +1264,4133,15,8,f +1264,4133,72,4,f +1264,4202,2,2,f +1264,4204,2,1,f +1264,4286,4,4,f +1264,4600,71,2,f +1264,4727,10,2,f +1264,4728,1,1,f +1264,4728,4,1,f +1264,4864b,47,2,f +1264,6014b,71,4,f +1264,6015,0,4,f +1264,6064,2,1,f +1264,6215,4,2,f +1266,10314,4,2,f +1266,11476,15,2,f +1266,12622,4,1,f +1266,15068,4,2,f +1266,15207,4,2,f +1266,18455,71,1,f +1266,24055,4,1,f +1266,2412b,14,1,f +1266,2431,33,2,f +1266,2431pr0081,84,1,f +1266,2432,14,1,f +1266,2437,41,1,f +1266,2446,15,1,f +1266,2447,47,1,f +1266,2458,19,1,f +1266,2508,0,1,f +1266,2540,0,1,f +1266,2817,0,1,f +1266,3001,19,1,f +1266,3001,28,1,f +1266,3003,1,1,f +1266,3010,28,1,f +1266,30136,308,1,f +1266,30194,72,1,f +1266,3020,4,1,f +1266,3021,0,1,f +1266,3023,1,1,f +1266,3036,27,1,f +1266,30387,14,1,f +1266,30414,19,1,f +1266,3062b,46,1,f +1266,3062b,321,2,f +1266,3068bpr0245,14,1,f +1266,3069b,36,2,f +1266,3297,72,1,f +1266,3298,0,2,f +1266,3626cpr0893,14,1,f +1266,3626cpr1826,14,1,f +1266,3710,14,2,f +1266,3829c01,71,1,f +1266,3834,15,1,f +1266,3835,0,1,f +1266,3838,14,2,f +1266,4349,72,1,f +1266,4599b,71,2,f +1266,50859b,0,1,f +1266,50861,0,2,f +1266,50862,4,2,f +1266,51858,71,1,f +1266,59900,182,4,f +1266,59900,33,2,f +1266,6014b,15,6,f +1266,60598,4,2,f +1266,60598,71,1,f +1266,60599,70,1,f +1266,60607,70,2,f +1266,60614,72,4,f +1266,60623,0,1,f +1266,6126a,41,1,f +1266,6126b,182,4,f +1266,63082,71,1,f +1266,73590c03b,14,1,f +1266,87580,25,1,f +1266,87697,0,6,f +1266,89536,4,1,f +1266,92593,15,2,f +1266,93273,0,2,f +1266,970c00,25,2,f +1266,973pr2189c01,0,2,f +1267,4519,7,100,f +1268,insectmask,0,1,f +1270,3001a,4,2,f +1270,3002a,14,3,f +1270,3003,0,2,f +1270,3004,0,4,f +1270,3004,47,1,f +1270,3005,0,10,f +1270,3005,4,2,f +1270,3008,4,8,f +1270,3009,4,5,f +1270,3009,0,1,f +1270,3009,47,2,f +1270,3010,0,4,f +1270,3010,4,7,f +1270,3020,0,4,f +1270,3021,0,2,f +1270,3022,0,24,f +1270,3023,0,36,f +1270,3023,4,13,f +1270,3024,0,4,f +1270,3024,4,6,f +1270,3030,0,1,f +1270,3031,4,1,f +1270,3032,0,1,f +1270,3032,4,1,f +1270,3033,0,1,f +1270,3036,0,3,f +1270,3037,4,2,f +1270,3038,4,6,f +1270,3040a,4,4,f +1270,3040a,0,8,f +1270,3046a,4,2,f +1270,3063b,14,4,f +1270,3087c,14,4,f +1270,3297,4,1,f +1270,3298,4,1,f +1270,3460,4,4,f +1270,35,4,5,f +1270,36,0,5,f +1270,7049b,0,5,f +1271,453bc01,15,9,f +1271,453bc01,4,9,f +1272,3703,0,4,f +1272,3895,0,4,f +1274,11816pr0002,78,1,f +1274,15696pr0001,15,1,f +1274,2412b,14,3,f +1274,2453a,15,2,f +1274,2454b,26,2,f +1274,3004,26,2,f +1274,3009,26,2,f +1274,3020,19,1,f +1274,3020,15,1,f +1274,3030,19,1,f +1274,3031,15,2,f +1274,30350b,15,2,f +1274,30357,19,2,f +1274,3062b,322,4,f +1274,3062b,47,1,f +1274,3062b,15,5,f +1274,3298,26,4,f +1274,3300,15,1,f +1274,33291,10,1,t +1274,33291,4,2,f +1274,33291,4,1,t +1274,33291,10,1,f +1274,3622,27,1,f +1274,3623,70,1,f +1274,3660,15,1,f +1274,3665,15,2,f +1274,3666,15,1,f +1274,3710,15,1,f +1274,3710,14,3,f +1274,4150,29,1,f +1274,4477,15,1,f +1274,4533,41,1,f +1274,4599b,0,1,f +1274,4599b,0,1,t +1274,48336,14,2,f +1274,58176,143,2,f +1274,59900,70,4,f +1274,60594,15,1,f +1274,60608,14,2,f +1274,64951,30,1,f +1274,85984,14,5,f +1274,87087,15,2,f +1274,92255,226,1,f +1274,92410,30,1,f +1274,92456pr0042c01,78,1,f +1274,92820pr0006c01a,85,1,f +1274,94717,322,4,f +1274,94718,322,1,f +1274,94719,322,1,f +1274,94720,322,2,f +1274,94721,322,1,f +1274,94722,322,1,f +1274,94723,322,1,f +1274,94724,322,1,f +1274,94725,322,4,f +1275,2654,0,4,f +1275,2736,71,4,f +1275,2780,0,24,f +1275,2815,0,4,f +1275,2902,0,4,f +1275,2903,15,4,f +1275,2905,72,4,f +1275,3003,71,4,f +1275,3004,71,8,f +1275,3023,71,8,f +1275,3069b,72,2,f +1275,32001,71,4,f +1275,32002,72,8,f +1275,32005a,72,3,f +1275,32009,72,4,f +1275,32013,0,4,f +1275,32014,0,16,f +1275,32015,71,4,f +1275,32016,71,4,f +1275,32018,71,4,f +1275,32034,0,4,f +1275,32039,0,4,f +1275,32054,0,8,f +1275,32062,4,16,f +1275,32064b,72,4,f +1275,32068,0,2,f +1275,32069,0,2,f +1275,32072,0,4,f +1275,32073,71,4,f +1275,32074c01,72,1,f +1275,32123b,14,8,f +1275,32138,0,4,f +1275,32140,72,6,f +1275,32184,0,4,f +1275,32192,0,4,f +1275,32269,71,4,f +1275,32270,0,4,f +1275,32271,72,4,f +1275,32278,72,8,f +1275,32291,72,4,f +1275,32293,0,2,f +1275,32316,72,6,f +1275,32348,72,16,f +1275,32498,0,4,f +1275,32523,72,8,f +1275,32524,72,6,f +1275,32525,72,6,f +1275,32556,71,16,f +1275,32557,0,4,f +1275,33299a,71,4,f +1275,3460,71,4,f +1275,3647,71,6,f +1275,3648b,71,4,f +1275,3649,71,4,f +1275,3650c,71,4,f +1275,3666,71,4,f +1275,3673,71,12,f +1275,3700,71,4,f +1275,3701,71,4,f +1275,3702,71,4,f +1275,3705,0,4,f +1275,3706,0,4,f +1275,3707,0,4,f +1275,3708,0,4,f +1275,3709,71,4,f +1275,3710,71,4,f +1275,3711a,0,42,f +1275,3713,71,12,f +1275,3737,0,4,f +1275,3738,71,4,f +1275,3743,71,2,f +1275,3749,19,8,f +1275,3894,71,4,f +1275,3895,71,4,f +1275,3941,0,4,f +1275,4019,71,4,f +1275,4032a,72,4,f +1275,40490,72,4,f +1275,41239,72,2,f +1275,41669,25,8,f +1275,41678,72,6,f +1275,4185,71,4,f +1275,42003,72,4,f +1275,4274,71,8,f +1275,43093,1,36,f +1275,44294,71,8,f +1275,44309,0,2,f +1275,44809,71,2,f +1275,4519,71,4,f +1275,45590,0,8,f +1275,4589,15,4,f +1275,4716,0,2,f +1275,48989,71,12,f +1275,50914,135,4,f +1275,53992,0,2,f +1275,54190,47,1,f +1275,55615,71,8,f +1275,55976,0,2,f +1275,56145,71,4,f +1275,6536,71,8,f +1275,6538b,0,8,f +1275,6553,71,4,f +1275,6558,0,24,f +1275,6573,72,1,f +1275,6575,72,4,f +1275,6587,72,4,f +1275,6588,47,1,f +1275,6589,71,4,f +1275,6628,0,8,f +1275,6630,0,2,f +1275,70496,0,1,f +1275,75535,0,4,f +1275,76110c01,71,1,f +1275,85544,4,2,f +1275,85545,15,2,f +1275,9244,71,2,f +1275,bin05,1,1,f +1279,2412b,7,1,f +1279,2450,1,6,f +1279,2458,1,1,f +1279,2460,15,1,f +1279,2496,0,6,f +1279,2543,4,1,f +1279,2655,7,3,f +1279,2655,14,1,f +1279,3001,14,1,f +1279,3001,4,1,f +1279,3002,0,1,f +1279,3002,4,1,f +1279,3003,14,2,f +1279,3003,2,2,f +1279,3003,0,5,f +1279,3003,15,1,f +1279,3003,4,1,f +1279,3003pe2,15,2,f +1279,3003pe2,4,2,f +1279,3003pe2,14,1,f +1279,3004,4,4,f +1279,3004,2,1,f +1279,3004,14,8,f +1279,3004,1,2,f +1279,3004,15,5,f +1279,3004,0,8,f +1279,3004p0b,14,4,f +1279,3004pr20,15,1,f +1279,3005pe1,14,2,f +1279,3005pe1,15,2,f +1279,3005pe1,4,2,f +1279,3010,14,2,f +1279,3010,4,1,f +1279,3010,1,1,f +1279,3020,14,3,f +1279,3020,4,3,f +1279,3020,2,1,f +1279,3020,0,3,f +1279,3020,1,2,f +1279,3020,15,2,f +1279,3021,4,5,f +1279,3021,0,3,f +1279,3021,15,3,f +1279,3021,7,2,f +1279,3021,14,3,f +1279,3021,1,2,f +1279,3022,15,4,f +1279,3022,4,4,f +1279,3022,14,2,f +1279,3022,0,7,f +1279,3022,1,1,f +1279,3023,0,3,f +1279,3023,15,2,f +1279,3039,1,1,f +1279,3039,14,2,f +1279,3039,47,10,f +1279,3039,0,4,f +1279,3039,15,5,f +1279,3039,4,3,f +1279,3039,2,2,f +1279,3040b,14,2,f +1279,3040b,4,3,f +1279,3040b,0,2,f +1279,3298p19,14,1,f +1279,3623,15,1,f +1279,3626bpr0001,14,1,f +1279,3660,1,1,f +1279,3660,14,1,f +1279,3660,15,5,f +1279,3660,7,1,f +1279,3665,15,2,f +1279,3665,4,1,f +1279,3710,0,4,f +1279,3710,14,3,f +1279,3710,7,1,f +1279,3710,2,3,f +1279,3731,4,1,f +1279,3747b,4,2,f +1279,3747b,2,1,f +1279,3794a,4,1,f +1279,3941,4,1,f +1279,3957a,15,1,f +1279,4032a,7,1,f +1279,4085c,14,2,f +1279,4859,4,2,f +1279,4871,14,1,f +1279,6041,4,1,f +1279,6041,0,1,f +1279,6124,34,1,f +1279,6141,34,3,f +1279,6141,33,3,f +1279,6141,15,2,f +1279,6141,36,3,f +1279,6215,4,1,f +1279,6215,15,1,f +1279,970x026,4,1,f +1279,973c02,4,1,f +1280,2431,14,1,f +1280,2654,47,2,f +1280,2654,46,2,f +1280,2780,0,3,t +1280,2780,0,188,f +1280,2797c02,14,1,f +1280,2819,71,1,f +1280,2825,71,2,f +1280,2825,0,2,f +1280,2850a,71,6,f +1280,2851,14,6,f +1280,2852,71,6,f +1280,2853,71,4,f +1280,2854,72,2,f +1280,30647,0,2,f +1280,32002,72,14,f +1280,32002,72,3,t +1280,32009,0,2,f +1280,32009,71,4,f +1280,32013,71,4,f +1280,32013,0,2,f +1280,32015,4,4,f +1280,32017,0,2,f +1280,32017,72,4,f +1280,32019,0,6,f +1280,32020,71,6,f +1280,32034,0,7,f +1280,32034,71,4,f +1280,32034,4,2,f +1280,32039,71,2,f +1280,32039,4,2,f +1280,32054,72,2,f +1280,32054,0,16,f +1280,32054,4,9,f +1280,32054,71,4,f +1280,32062,0,36,f +1280,32063,71,4,f +1280,32063,0,2,f +1280,32065,0,4,f +1280,32073,71,18,f +1280,32123b,71,2,t +1280,32123b,71,16,f +1280,32138,0,4,f +1280,32140,72,4,f +1280,32140,0,12,f +1280,32140,71,6,f +1280,32140,4,6,f +1280,32184,0,3,f +1280,32184,71,8,f +1280,32188,4,2,f +1280,32189,4,2,f +1280,32190,4,1,f +1280,32191,4,1,f +1280,32199,0,2,f +1280,32249,72,4,f +1280,32250,71,2,f +1280,32269,0,3,f +1280,32270,0,2,f +1280,32270,71,1,f +1280,32271,0,10,f +1280,32271,4,2,f +1280,32278,4,1,f +1280,32278,0,8,f +1280,32278,71,2,f +1280,32291,71,8,f +1280,32291,72,4,f +1280,32291,0,5,f +1280,32316,0,2,f +1280,32316,71,2,f +1280,32333,71,2,f +1280,32348,72,6,f +1280,32348,0,2,f +1280,32449,72,6,f +1280,32449,0,6,f +1280,32449,71,2,f +1280,32523,71,3,f +1280,32523,0,9,f +1280,32524,0,2,f +1280,32524,72,4,f +1280,32524,71,5,f +1280,32525,4,1,f +1280,32525,72,2,f +1280,32525,71,2,f +1280,32525,0,4,f +1280,32526,4,4,f +1280,32526,0,8,f +1280,32526,71,4,f +1280,32526,19,4,f +1280,32527,0,1,f +1280,32527,4,2,f +1280,32528,0,1,f +1280,32528,4,2,f +1280,32529,14,2,f +1280,32534,4,1,f +1280,32535,4,1,f +1280,32551,71,1,f +1280,32556,71,2,f +1280,32557,72,2,f +1280,32557,0,2,f +1280,3647,0,1,t +1280,3647,0,1,f +1280,3666,0,1,f +1280,3673,71,2,t +1280,3673,71,4,f +1280,3705,0,31,f +1280,3706,0,9,f +1280,3707,0,3,f +1280,3708,0,2,f +1280,3713,71,3,t +1280,3713,71,7,f +1280,3713,0,2,f +1280,3713,0,1,t +1280,3737,0,2,f +1280,3743,0,1,f +1280,3749,19,12,f +1280,3941,46,2,f +1280,4019,71,2,f +1280,40244,4,2,f +1280,4032a,71,4,f +1280,40490,71,2,f +1280,40490,0,7,f +1280,41239,71,9,f +1280,41677,71,6,f +1280,41677,1,2,f +1280,41678,4,6,f +1280,41678,71,2,f +1280,41678,0,15,f +1280,41678,72,6,f +1280,4185,71,1,f +1280,42003,0,4,f +1280,42003,72,7,f +1280,4274,1,22,f +1280,4274,1,2,t +1280,43093,1,46,f +1280,43857,71,1,f +1280,44294,71,3,f +1280,44352,4,1,f +1280,44353,4,1,f +1280,4519,71,25,f +1280,4697b,71,1,f +1280,4697b,71,1,t +1280,4716,71,1,f +1280,47223a,72,2,f +1280,47225,14,2,f +1280,47474,71,4,f +1280,48989,71,2,f +1280,50163,72,1,f +1280,5102c06,0,1,f +1280,5102c06,71,1,f +1280,5102c14,0,1,f +1280,5102c18,0,1,f +1280,5102c22,0,1,f +1280,5102c39,71,1,f +1280,5102c44,71,1,f +1280,6141,182,4,f +1280,6141,182,2,t +1280,6141,36,4,f +1280,6141,47,2,t +1280,6141,47,8,f +1280,6141,36,1,t +1280,6536,72,4,f +1280,6536,71,15,f +1280,6536,0,10,f +1280,6536,4,2,f +1280,6538b,0,7,f +1280,6538b,4,2,f +1280,6538b,71,5,f +1280,6538b,72,4,f +1280,6553,0,4,f +1280,6558,0,1,t +1280,6558,0,55,f +1280,6573,72,1,f +1280,6587,72,4,f +1280,6589,71,4,f +1280,6629,72,2,f +1280,6632,72,4,f +1280,6632,0,6,f +1280,6632,71,6,f +1280,75535,19,2,f +1280,75535,72,2,f +1280,75535,4,4,f +1280,75535,0,6,f +1281,298c02,15,1,f +1281,298c02,15,1,t +1281,3020,15,1,f +1281,3022,15,1,f +1281,30602,40,1,f +1281,3070b,4,1,t +1281,3070b,15,1,t +1281,3070b,15,2,f +1281,3070b,4,2,f +1281,32530,72,1,f +1281,3794b,4,1,f +1281,3795,71,1,f +1281,4081b,72,2,f +1281,4081b,27,2,f +1281,41769,1,2,f +1281,41770,1,2,f +1281,41879a,1,1,f +1281,4589,182,2,f +1281,54200,15,2,f +1281,54200,15,1,t +1281,6141,57,1,t +1281,6141,57,3,f +1281,87769pr0001,27,1,f +1281,973pr1532c01,1,1,f +1282,2432,71,1,f +1282,2653,0,2,f +1282,2654,71,4,f +1282,3003,272,1,f +1282,3004,71,1,f +1282,3004,272,1,f +1282,3010,272,1,f +1282,30162,72,2,f +1282,3021,71,1,f +1282,3021,0,1,f +1282,3023,272,2,f +1282,3024,71,4,f +1282,3031,72,1,f +1282,3039,272,2,f +1282,3040b,71,2,f +1282,3068b,71,1,f +1282,32028,0,3,f +1282,3794b,272,2,f +1282,3794b,71,2,f +1282,4081b,72,4,f +1282,4740,71,1,f +1282,54200,71,4,f +1282,54200,272,4,f +1282,59900,272,2,f +1282,6019,71,1,f +1282,60478,71,1,f +1283,2994,14,2,f +1283,32009,14,2,f +1283,32012,1,1,f +1283,32016,0,2,f +1283,32017,0,2,f +1283,32017,14,2,f +1283,32039,0,2,f +1283,32062,0,1,f +1283,3482,14,2,f +1283,3483,0,2,f +1283,3703,14,1,f +1283,3705,0,4,f +1283,3706,0,2,f +1283,3707,0,3,f +1283,3713,7,2,f +1283,3749,7,5,f +1283,4019,7,3,f +1283,4265b,7,6,f +1283,4519,0,1,f +1283,6141,7,1,f +1283,6536,0,2,f +1283,6538b,7,1,f +1283,6553,7,1,f +1283,6558,0,2,f +1283,6578,0,2,f +1283,6632,0,6,f +1283,75c11,14,2,f +1283,bb298c82,15,1,f +1284,2357,4,3,f +1284,3004,4,4,f +1284,3004pr20,15,1,f +1284,3020,15,3,f +1284,3022,15,1,f +1284,3022,7,2,f +1284,3023,15,1,f +1284,3023,0,2,f +1284,3024,14,2,f +1284,3039,7,1,f +1284,3039,15,1,f +1284,3040b,4,6,f +1284,3062b,0,2,f +1284,3660,7,1,f +1284,3665,4,2,f +1284,3700,4,2,f +1284,4070,0,1,f +1284,6141,15,4,f +1284,6141,15,1,t +1285,3004,47,2,f +1285,3004,1,1,f +1285,3020,1,2,f +1285,3021,15,3,f +1285,3022,15,2,f +1285,3039,47,1,f +1285,3039,4,2,f +1285,3040b,15,1,f +1285,3460,15,1,f +1285,3461,0,1,f +1285,3462,15,1,f +1285,3480,0,1,f +1285,3481,15,1,f +1285,3660,1,1,f +1285,3660,4,2,f +1285,3666,0,2,f +1285,3666,1,2,f +1286,46277,45,2,f +1286,46277,5,2,f +1286,46277,13,2,f +1286,clikits022,118,2,f +1286,clikits022,43,2,f +1286,clikits025,45,5,f +1286,clikits053,5,1,f +1286,clikits054,118,1,f +1286,clikits103,13,1,f +1290,132a,0,8,f +1290,3001a,15,4,f +1290,3001a,4,2,f +1290,3001a,14,1,f +1290,3001a,0,1,f +1290,3002a,14,7,f +1290,3002a,0,3,f +1290,3002a,1,1,f +1290,3003,15,2,f +1290,3003,0,3,f +1290,3003,14,1,f +1290,3003,4,6,f +1290,3004,1,1,f +1290,3004,4,7,f +1290,3004,0,11,f +1290,3004,14,4,f +1290,3005,1,4,f +1290,3006,14,2,f +1290,3007,4,1,f +1290,3008,1,2,f +1290,3009,1,4,f +1290,3009,47,2,f +1290,3009,14,2,f +1290,3010,14,2,f +1290,3010,15,1,f +1290,3028,15,1,f +1290,3033,1,1,f +1290,3039,4,4,f +1290,3062a,14,4,f +1290,3183a,14,1,f +1290,3184,1,1,f +1290,3613,4,2,f +1290,3613,1,2,f +1290,3614a,14,4,f +1290,685p01,14,1,f +1290,685px3,14,1,f +1290,7039,4,8,f +1290,7049b,0,4,f +1290,792c03,4,1,f +1290,792c03,1,1,f +1290,x196,0,1,f +1290,x407,4,1,f +1291,2921,0,2,f +1291,30141,8,1,f +1291,30147,8,1,f +1291,30150,6,1,f +1291,30157,8,2,f +1291,30162,8,1,f +1291,30162,8,1,t +1291,3023,14,1,f +1291,3034,8,1,f +1291,3626bpx127,14,1,f +1291,3829c01,14,1,f +1291,3878,0,1,f +1291,42610,7,4,f +1291,43719,0,1,f +1291,4865a,47,1,f +1291,51011,0,4,f +1291,6141,46,1,t +1291,6141,46,2,f +1291,6141,0,1,f +1291,6141,0,1,t +1291,970c00,8,1,f +1291,973px181c01,0,1,f +1292,3023,14,6,f +1292,3460,14,2,f +1292,3623,14,4,f +1292,3647,7,3,f +1292,3648a,7,2,f +1292,3650a,7,3,f +1292,3651,7,4,f +1292,3673,7,8,f +1292,3700,14,4,f +1292,3701,14,4,f +1292,3702,14,2,f +1292,3703,14,2,f +1292,3704,0,4,f +1292,3705,0,4,f +1292,3706,0,2,f +1292,3707,0,2,f +1292,3708,0,2,f +1292,3709,14,2,f +1292,3710,14,4,f +1292,3713,7,8,f +1292,3737,0,2,f +1292,3738,14,2,f +1292,3749,7,4,f +1292,3894,14,4,f +1292,3895,14,2,f +1292,4143,7,4,f +1292,4185,7,2,f +1292,4265a,7,8,f +1292,4273b,7,12,f +1292,4274,7,10,f +1292,9244,7,2,f +1293,122c01,0,4,f +1293,2357,15,4,f +1293,2357,14,4,f +1293,2435,2,1,f +1293,2456,15,1,f +1293,2493c01,4,2,f +1293,2508,15,1,f +1293,3001,15,4,f +1293,3001,14,2,f +1293,3001,4,2,f +1293,3001,1,2,f +1293,3001,0,2,f +1293,3002,4,4,f +1293,3002,1,6,f +1293,3002,0,2,f +1293,3002,14,6,f +1293,3002,15,8,f +1293,3003,14,6,f +1293,3003,15,8,f +1293,3003,0,4,f +1293,3003,1,6,f +1293,3003,4,4,f +1293,3004,47,4,f +1293,3004,14,28,f +1293,3004,0,14,f +1293,3004,4,24,f +1293,3004,1,28,f +1293,3004,15,38,f +1293,3005,0,18,f +1293,3005,14,30,f +1293,3005,15,30,f +1293,3005,4,30,f +1293,3005,1,30,f +1293,3005,47,4,f +1293,3008,15,4,f +1293,3008,1,4,f +1293,3008,4,2,f +1293,3008,0,2,f +1293,3008,14,2,f +1293,3009,4,4,f +1293,3009,14,6,f +1293,3009,15,8,f +1293,3009,1,6,f +1293,3009,0,2,f +1293,3010,15,18,f +1293,3010,4,10,f +1293,3010,14,14,f +1293,3010,0,6,f +1293,3010,1,14,f +1293,3010p08,4,1,f +1293,3010p09,4,1,f +1293,3020,4,2,f +1293,3021,4,2,f +1293,3022,4,2,f +1293,3030,4,1,f +1293,3031,4,1,f +1293,3032,4,1,f +1293,3034,4,2,f +1293,3035,4,1,f +1293,3036,4,1,f +1293,3039,47,2,f +1293,3039,14,4,f +1293,3040b,14,4,f +1293,3062b,33,2,f +1293,3062b,34,2,f +1293,3062b,15,4,f +1293,3062b,36,2,f +1293,3081cc01,4,2,f +1293,3183a,15,1,f +1293,3297,4,12,f +1293,3298,4,8,f +1293,3299,4,4,f +1293,3300,4,4,f +1293,3307,15,2,f +1293,3460,4,2,f +1293,3471,2,1,f +1293,3622,1,18,f +1293,3622,0,6,f +1293,3622,14,18,f +1293,3622,4,14,f +1293,3622,15,22,f +1293,3626bpr0001,14,2,f +1293,3633,14,6,f +1293,3641,0,8,f +1293,3659,15,2,f +1293,3660,14,4,f +1293,3665,14,4,f +1293,3666,4,2,f +1293,3679,7,1,f +1293,3680,0,1,f +1293,3710,4,2,f +1293,3741,2,4,f +1293,3742,1,3,f +1293,3742,15,3,f +1293,3742,1,1,t +1293,3742,4,1,t +1293,3742,15,1,t +1293,3742,14,1,t +1293,3742,4,3,f +1293,3742,14,3,f +1293,3788,4,2,f +1293,3795,4,2,f +1293,3821,4,1,f +1293,3822,4,1,f +1293,3823,47,2,f +1293,3829c01,15,1,f +1293,3853,4,4,f +1293,3854,14,4,f +1293,3855,47,2,f +1293,3856,2,8,f +1293,3861b,4,2,f +1293,3867,2,2,f +1293,3901,6,1,f +1293,3957a,4,2,f +1293,3957a,1,2,f +1293,3958,4,1,f +1293,3960,15,1,f +1293,4079,14,2,f +1293,4212b,15,1,f +1293,4286,14,2,f +1293,4287,14,2,f +1293,4449,6,1,f +1293,4477,4,2,f +1293,4495b,14,2,f +1293,4495b,2,2,f +1293,4530,6,1,f +1293,970c00,4,1,f +1293,970c00,7,1,f +1293,973c01,1,1,f +1293,973px62c01,15,1,f +1298,3626bpr0582,71,1,f +1298,64797,72,1,f +1298,970c00,320,1,f +1298,973pr1484c01,320,1,f +1300,4168,7,4,f +1300,4169,7,4,f +1302,3844,71,1,f +1302,3847,135,1,f +1302,3852b,191,1,f +1302,3898,15,1,f +1302,4528,0,1,f +1302,970c00,71,1,f +1302,970c00,15,1,f +1302,970c00,272,1,f +1303,3471,2,10,f +1305,10170,84,1,f +1305,11062,15,2,f +1305,11090,14,8,f +1305,11090,0,4,f +1305,11153,71,2,f +1305,11203,0,1,f +1305,11211,19,73,f +1305,11211,0,2,f +1305,11212,71,2,f +1305,11212,72,2,f +1305,11213,71,3,f +1305,11214,72,2,f +1305,11253,0,1,t +1305,11253,0,3,f +1305,11476,71,2,f +1305,11476,0,1,f +1305,11477,326,6,f +1305,11610,19,4,f +1305,11640,4,1,f +1305,12888pr0001,84,1,f +1305,13548,71,2,f +1305,13790,72,1,t +1305,13790,72,1,f +1305,13793,72,2,f +1305,13808,297,1,f +1305,14395,0,4,f +1305,14413,71,1,f +1305,14413,0,1,f +1305,14716,71,7,f +1305,14716,0,3,f +1305,14719,71,12,f +1305,14719,272,4,f +1305,14769,15,4,f +1305,14769pr0001,15,1,f +1305,14769pr1054,70,1,f +1305,15068,15,2,f +1305,15068,4,1,f +1305,15070,15,8,f +1305,15070,14,8,f +1305,15207,70,1,f +1305,15208,19,1,f +1305,15254,15,2,f +1305,15279,10,1,f +1305,15332,0,2,f +1305,15332,70,1,f +1305,15395,15,1,f +1305,15439,0,1,t +1305,15439,0,1,f +1305,15470,179,1,t +1305,15470,179,2,f +1305,15470,15,1,t +1305,15470,15,3,f +1305,15535,19,1,f +1305,15573,4,1,f +1305,15573,70,6,f +1305,15573,28,24,f +1305,15573,272,4,f +1305,15573,19,4,f +1305,15573,72,10,f +1305,15573,320,4,f +1305,15573,0,1,f +1305,15672,70,1,f +1305,15672,71,4,f +1305,15712,15,1,f +1305,15712,0,32,f +1305,16091,71,4,f +1305,16770,10,2,f +1305,18653,272,6,f +1305,18653,15,8,f +1305,18674,70,2,f +1305,18674,15,5,f +1305,18674,72,1,f +1305,18674,4,1,f +1305,18838,70,1,f +1305,18943,0,2,f +1305,19119,484,1,f +1305,19119,2,1,f +1305,20193,15,1,f +1305,20309,0,2,f +1305,20310,15,25,f +1305,20482,297,1,t +1305,20482,0,2,f +1305,20482,297,4,f +1305,20482,0,1,t +1305,21229,0,3,f +1305,21268,70,1,f +1305,21445,71,2,f +1305,22385,15,1,f +1305,22385,71,4,f +1305,22484,35,2,f +1305,22484,72,3,f +1305,22667,4,2,f +1305,22667,4,1,t +1305,22885,71,2,f +1305,23443,0,6,f +1305,23443,71,4,f +1305,2357,72,4,f +1305,2357,15,2,f +1305,2357,71,4,f +1305,2357,70,1,f +1305,2357,19,6,f +1305,24087,15,1,f +1305,2412b,0,8,f +1305,2412b,15,14,f +1305,2412b,71,3,f +1305,2412b,80,6,f +1305,2420,15,2,f +1305,2420,71,6,f +1305,2420,72,5,f +1305,2420,70,10,f +1305,2420,0,12,f +1305,2423,2,5,f +1305,24246,15,2,f +1305,24246,71,46,f +1305,24246,71,1,t +1305,24246,15,1,t +1305,2431,15,10,f +1305,2431,0,2,f +1305,2431,71,16,f +1305,2445,15,2,f +1305,2445,72,1,f +1305,24482,15,1,f +1305,24482,15,1,t +1305,2450,71,2,f +1305,2453b,19,2,f +1305,2453b,71,2,f +1305,2453b,0,4,f +1305,2462,71,1,f +1305,25128,15,1,f +1305,25269,0,2,t +1305,25269,71,4,f +1305,25269,71,1,t +1305,25269,19,1,t +1305,25269,19,8,f +1305,25269,0,4,f +1305,25269pr01,19,2,f +1305,25269pr01,19,1,t +1305,2540,0,12,f +1305,2546pat0002,14,1,f +1305,2566,19,2,f +1305,26047,0,4,f +1305,2639,72,4,f +1305,2653,0,2,f +1305,2654,46,3,f +1305,2654,47,4,f +1305,2654,0,1,f +1305,26556,14,1,f +1305,26603pr0001,212,1,f +1305,26604,19,36,f +1305,27186,308,1,f +1305,2723,0,2,f +1305,27263,272,4,f +1305,27263,71,7,f +1305,27263,72,18,f +1305,27263,15,12,f +1305,27507,71,4,f +1305,2780,0,3,f +1305,2780,0,2,t +1305,27925,71,6,f +1305,27989,84,1,f +1305,28192,15,2,f +1305,28192,72,2,f +1305,28327,0,1,f +1305,28327,15,1,f +1305,2877,0,2,f +1305,2877,379,50,f +1305,2921,71,8,f +1305,298c02,0,2,t +1305,298c02,71,2,f +1305,298c02,71,1,t +1305,298c02,0,3,f +1305,3001,70,2,f +1305,3002,0,4,f +1305,3003,272,1,f +1305,3003,72,4,f +1305,3004,71,19,f +1305,3004,379,20,f +1305,3004,70,1,f +1305,3004,72,10,f +1305,3004,19,9,f +1305,3004,28,5,f +1305,3004,0,21,f +1305,3004,378,16,f +1305,30044,15,7,f +1305,30044,72,2,f +1305,30046,0,2,f +1305,3005,19,11,f +1305,3005,379,22,f +1305,3005,272,2,f +1305,3005,28,6,f +1305,3005,2,2,f +1305,3005,71,18,f +1305,3005,73,4,f +1305,3005,72,14,f +1305,3005,47,4,f +1305,3005,15,12,f +1305,3005,0,3,f +1305,3005,378,36,f +1305,3008,72,6,f +1305,3008,71,7,f +1305,3008,19,13,f +1305,3009,72,13,f +1305,3009,379,51,f +1305,3009,28,1,f +1305,3009,19,5,f +1305,3009,71,22,f +1305,3009,15,4,f +1305,3009,70,14,f +1305,3009,378,12,f +1305,3010,71,19,f +1305,3010,19,14,f +1305,3010,15,3,f +1305,3010,28,5,f +1305,3010,72,11,f +1305,3010,378,4,f +1305,3010,70,3,f +1305,30134,0,2,f +1305,30134,70,3,f +1305,30136,70,3,f +1305,30136,71,26,f +1305,30151b,47,1,f +1305,30153,47,1,f +1305,3020,72,5,f +1305,3020,272,2,f +1305,3020,0,9,f +1305,3020,70,8,f +1305,3020,15,4,f +1305,3020,71,10,f +1305,3021,70,5,f +1305,3021,0,7,f +1305,3021,71,3,f +1305,3021,272,2,f +1305,3022,19,1,f +1305,3022,0,9,f +1305,3022,15,2,f +1305,3022,71,9,f +1305,3022,70,2,f +1305,3023,0,25,f +1305,3023,272,8,f +1305,3023,70,5,f +1305,3023,15,25,f +1305,3023,19,12,f +1305,3023,47,1,f +1305,3023,326,3,f +1305,3023,71,41,f +1305,3023,72,6,f +1305,3023,28,3,f +1305,30236,19,6,f +1305,30237b,72,7,f +1305,3024,0,4,t +1305,3024,70,2,t +1305,3024,272,2,t +1305,3024,72,22,f +1305,3024,288,1,f +1305,3024,272,7,f +1305,3024,72,1,t +1305,3024,71,5,t +1305,3024,288,1,t +1305,3024,19,3,t +1305,3024,70,5,f +1305,3024,0,17,f +1305,3024,15,34,f +1305,3024,19,38,f +1305,3024,71,47,f +1305,3024,15,3,t +1305,3024,73,1,t +1305,3024,73,2,f +1305,3028,71,2,f +1305,3029,71,1,f +1305,3030,72,2,f +1305,3031,72,1,f +1305,3031,2,1,f +1305,3032,72,8,f +1305,3032,19,4,f +1305,3033,72,2,f +1305,3034,71,6,f +1305,3034,0,1,f +1305,30340,70,1,f +1305,30340,0,1,f +1305,30350b,70,1,f +1305,30357,15,6,f +1305,30357,71,3,f +1305,30357,0,3,f +1305,3036,19,2,f +1305,3036,72,1,f +1305,30367c,4,2,f +1305,30374,0,5,f +1305,30374,41,1,f +1305,3039,70,3,f +1305,3040b,272,4,f +1305,3040b,2,2,f +1305,3040b,15,14,f +1305,3040b,71,4,f +1305,3040b,72,4,f +1305,30414,71,1,f +1305,30503,70,1,f +1305,30503,0,1,f +1305,30503,2,1,f +1305,30565,72,2,f +1305,30565,71,5,f +1305,30586,71,4,f +1305,3062b,71,2,f +1305,3062b,320,1,f +1305,3062b,15,5,f +1305,3062b,297,2,f +1305,3062b,272,2,f +1305,3062b,47,4,f +1305,3062b,70,9,f +1305,3065,33,1,f +1305,3065,34,7,f +1305,3068b,15,18,f +1305,3068b,320,4,f +1305,3068b,71,15,f +1305,3068b,212,2,f +1305,3068b,72,51,f +1305,3068b,19,12,f +1305,3068bpr0197,28,1,f +1305,3068bpr0201,15,1,f +1305,3068bpr0273,70,1,f +1305,3068bpr0292,70,1,f +1305,3069b,84,49,f +1305,3069b,15,36,f +1305,3069b,72,53,f +1305,3069b,19,27,f +1305,3069b,320,3,f +1305,3069b,323,8,f +1305,3069b,71,25,f +1305,3069b,0,12,f +1305,3069b,379,1,f +1305,3069b,272,13,f +1305,3069b,73,4,f +1305,3069b,28,2,f +1305,3069b,70,1,f +1305,3069bpr0100,2,2,f +1305,3069bpr0144,15,1,f +1305,3070b,272,14,f +1305,3070b,70,2,t +1305,3070b,25,1,t +1305,3070b,0,3,f +1305,3070b,15,13,f +1305,3070b,0,1,t +1305,3070b,272,2,t +1305,3070b,72,4,f +1305,3070b,73,1,t +1305,3070b,15,4,t +1305,3070b,72,1,t +1305,3070b,28,39,f +1305,3070b,379,1,f +1305,3070b,84,2,f +1305,3070b,1,5,f +1305,3070b,73,3,f +1305,3070b,28,1,t +1305,3070b,70,4,f +1305,3070b,25,1,f +1305,3070b,71,4,f +1305,3070b,84,1,t +1305,3070b,1,1,t +1305,3070b,379,1,t +1305,3176,0,1,f +1305,32000,71,5,f +1305,32028,15,2,f +1305,32028,72,14,f +1305,32028,70,2,f +1305,32028,4,4,f +1305,32028,71,10,f +1305,32028,28,30,f +1305,32062,4,1,f +1305,32474,80,1,f +1305,33125,15,1,f +1305,33183,10,1,f +1305,33183,10,1,t +1305,33291,191,5,f +1305,33291,26,1,t +1305,33291,31,1,t +1305,33291,4,1,t +1305,33291,2,1,t +1305,33291,10,3,t +1305,33291,26,2,f +1305,33291,30,3,f +1305,33291,4,9,f +1305,33291,191,3,t +1305,33291,31,6,f +1305,33291,10,15,f +1305,33291,30,1,t +1305,33291,2,9,f +1305,3456,72,7,f +1305,3456,19,2,f +1305,3460,19,1,f +1305,3460,0,6,f +1305,3460,15,5,f +1305,3460,71,9,f +1305,3622,72,6,f +1305,3622,4,2,f +1305,3622,15,3,f +1305,3622,71,16,f +1305,3622,70,4,f +1305,3622,0,1,f +1305,3622,19,16,f +1305,3623,4,4,f +1305,3623,72,2,f +1305,3623,70,2,f +1305,3623,272,4,f +1305,3623,71,6,f +1305,3623,15,7,f +1305,3623,0,4,f +1305,3626b,47,2,f +1305,3626bpr0001,14,8,f +1305,3633,15,1,f +1305,3633,0,5,f +1305,3659,15,14,f +1305,3660,71,2,f +1305,3660,19,1,f +1305,3665,15,17,f +1305,3665,71,4,f +1305,3665,0,6,f +1305,3666,70,2,f +1305,3666,19,4,f +1305,3666,0,11,f +1305,3666,72,5,f +1305,3666,15,7,f +1305,3666,71,21,f +1305,3676,15,1,f +1305,3678b,320,4,f +1305,3679,71,4,f +1305,3680,15,2,f +1305,3680,0,2,f +1305,3685,272,7,f +1305,3688,272,1,f +1305,3700,19,5,f +1305,3700,15,1,f +1305,3705,4,1,f +1305,3710,15,10,f +1305,3710,70,6,f +1305,3710,379,6,f +1305,3710,28,2,f +1305,3710,0,5,f +1305,3710,72,9,f +1305,3710,19,5,f +1305,3710,71,49,f +1305,3794b,15,61,f +1305,3794b,71,84,f +1305,3795,308,3,f +1305,3795,0,2,f +1305,3795,71,2,f +1305,3811,2,1,f +1305,3832,71,2,f +1305,3836,70,1,f +1305,3837,72,1,f +1305,3839b,0,1,f +1305,3857,2,1,f +1305,3898,15,1,f +1305,3899,14,2,f +1305,3899,4,3,f +1305,3940b,0,3,f +1305,3941,70,1,f +1305,3956,71,1,f +1305,3958,72,1,f +1305,3960,41,1,f +1305,4032a,72,2,f +1305,4032a,15,4,f +1305,4032a,1,5,f +1305,4032a,0,6,f +1305,4032a,19,1,f +1305,4070,72,8,f +1305,4070,71,19,f +1305,4070,15,4,f +1305,4070,320,4,f +1305,4079,1,2,f +1305,4081b,0,4,f +1305,4081b,71,3,f +1305,4162,15,2,f +1305,4162,71,19,f +1305,4162,0,1,f +1305,4176,47,1,f +1305,4218,47,18,f +1305,4274,1,1,t +1305,4274,1,14,f +1305,4282,15,1,f +1305,4282,71,1,f +1305,4345b,71,2,f +1305,4346,47,2,f +1305,43722,70,1,f +1305,43888,72,2,f +1305,43898,15,1,f +1305,44302a,71,1,f +1305,44375b,15,1,f +1305,44567a,71,1,f +1305,4460b,71,3,f +1305,4477,15,5,f +1305,4477,71,13,f +1305,4477,72,4,f +1305,4510,15,2,f +1305,4510,71,2,f +1305,4519,14,1,f +1305,4528,0,1,f +1305,4529,0,1,f +1305,4533,41,1,f +1305,4536,15,2,f +1305,4536,84,1,f +1305,4599b,71,7,f +1305,4599b,0,3,f +1305,4599b,71,3,t +1305,4599b,0,2,t +1305,4733,72,1,f +1305,4740,0,7,f +1305,4740,41,1,f +1305,4740,71,4,f +1305,4740,14,3,f +1305,4740,80,1,f +1305,4740,15,4,f +1305,4740,19,2,f +1305,4740,80,1,t +1305,4740,72,1,f +1305,47457,326,2,f +1305,47457,15,1,f +1305,48336,15,2,f +1305,48336,0,5,f +1305,4865b,15,3,f +1305,4865b,4,2,f +1305,4865b,47,1,f +1305,4865b,0,1,f +1305,48729b,71,4,f +1305,48729b,0,7,f +1305,48729b,71,1,t +1305,48729b,0,5,t +1305,50950,15,8,f +1305,50950,14,8,f +1305,54200,0,1,t +1305,54200,72,8,f +1305,54200,84,2,t +1305,54200,320,1,t +1305,54200,71,17,f +1305,54200,47,2,f +1305,54200,0,1,f +1305,54200,84,60,f +1305,54200,47,1,t +1305,54200,71,2,t +1305,54200,320,1,f +1305,54200,272,1,t +1305,54200,72,1,t +1305,54200,272,4,f +1305,57895,47,7,f +1305,58181,40,2,f +1305,59900,2,1,f +1305,59900,33,1,f +1305,59900,46,2,f +1305,59900,0,2,f +1305,6003,19,2,f +1305,6003,72,1,f +1305,60208,15,1,f +1305,60470a,0,3,f +1305,60470a,15,2,f +1305,60474,0,1,f +1305,60475b,0,4,f +1305,60475b,84,2,f +1305,60476,15,2,f +1305,60476,71,2,f +1305,60477,15,2,f +1305,60478,28,2,f +1305,60478,1,2,f +1305,60478,0,2,f +1305,60479,72,1,f +1305,60592,0,30,f +1305,60592,15,8,f +1305,60592,70,1,f +1305,60592,379,1,f +1305,60593,15,15,f +1305,60594,15,2,f +1305,60594,0,7,f +1305,60596,0,19,f +1305,60601,41,1,f +1305,60601,15,8,f +1305,60601,47,30,f +1305,60602,47,15,f +1305,60603,47,7,f +1305,60603pr0005,47,1,f +1305,60608,15,2,f +1305,60616b,70,1,f +1305,60616b,47,4,f +1305,60623,15,7,f +1305,60623,70,1,f +1305,60797c02,0,1,f +1305,60849,71,1,t +1305,60849,71,1,f +1305,60897,0,12,f +1305,60897,72,12,f +1305,60897,71,2,f +1305,60897,15,1,f +1305,6091,30,4,f +1305,6091,4,2,f +1305,6091,71,5,f +1305,6091,26,4,f +1305,61183,72,1,f +1305,6141,72,1,f +1305,6141,70,1,t +1305,6141,0,3,t +1305,6141,46,6,f +1305,6141,72,1,t +1305,6141,179,9,f +1305,6141,71,1,t +1305,6141,15,2,t +1305,6141,46,2,t +1305,6141,19,4,f +1305,6141,19,1,t +1305,6141,71,10,f +1305,6141,70,4,f +1305,6141,297,3,f +1305,6141,297,1,t +1305,6141,15,7,f +1305,6141,0,10,f +1305,6141,29,2,t +1305,6141,14,4,f +1305,6141,179,1,t +1305,6141,29,9,f +1305,6141,14,2,t +1305,6154,15,1,f +1305,6155,71,1,f +1305,61780,70,2,f +1305,6179,15,1,f +1305,6179,71,1,f +1305,6231,70,6,f +1305,6231,71,2,f +1305,62462,15,2,f +1305,62711,0,1,f +1305,63864,71,32,f +1305,63864,19,9,f +1305,63864,4,2,f +1305,63868,0,1,f +1305,63965,297,1,f +1305,63965,0,1,f +1305,64567,0,1,t +1305,64567,0,1,f +1305,64644,0,3,f +1305,64644,71,8,f +1305,64647,182,1,f +1305,64647,15,1,f +1305,64647,182,1,t +1305,64647,15,1,t +1305,64727,2,2,f +1305,6541,72,12,f +1305,6564,0,1,f +1305,6636,19,5,f +1305,6636,71,36,f +1305,6636,0,2,f +1305,6636,15,14,f +1305,6636,70,2,f +1305,75904,71,6,f +1305,85080,28,2,f +1305,85861,15,1,t +1305,85861,320,5,f +1305,85861,182,3,f +1305,85861,0,2,t +1305,85861,15,1,f +1305,85861,182,1,t +1305,85861,320,1,t +1305,85861,0,16,f +1305,85975,297,2,f +1305,85975,320,2,f +1305,85975,15,1,f +1305,85984,71,3,f +1305,85984,0,2,f +1305,87079,0,3,f +1305,87079,4,2,f +1305,87079,272,1,f +1305,87083,72,1,f +1305,87087,72,1,f +1305,87087,15,18,f +1305,87087,71,6,f +1305,87087,0,4,f +1305,87087,288,2,f +1305,87087,19,19,f +1305,87087,378,4,f +1305,87544,15,14,f +1305,87552,70,6,f +1305,87552,15,17,f +1305,87580,70,9,f +1305,87580,2,1,f +1305,87580,28,3,f +1305,87580,0,2,f +1305,87580,71,2,f +1305,87580,379,2,f +1305,87585,70,1,f +1305,87620,0,4,f +1305,87989,71,1,t +1305,87989,71,1,f +1305,87990,84,1,f +1305,87994,71,4,f +1305,87994,71,2,t +1305,87994,10,2,t +1305,87994,0,2,f +1305,87994,10,3,f +1305,87994,0,1,t +1305,88072,71,2,f +1305,88292,15,15,f +1305,88293,72,3,f +1305,88646,71,1,f +1305,90195,19,4,f +1305,90258,72,1,f +1305,90386,0,1,f +1305,91501,71,1,f +1305,91988,19,2,f +1305,91988,72,1,f +1305,91988,71,13,f +1305,92280,71,2,f +1305,92410,15,2,f +1305,92410,0,1,f +1305,92438,71,1,f +1305,92589,148,1,f +1305,92946,0,5,f +1305,92946,72,4,f +1305,92947,15,4,f +1305,92947,4,2,f +1305,92950,72,3,f +1305,93273,15,1,f +1305,93609,0,1,t +1305,93609,0,2,f +1305,95342,15,1,f +1305,96874,25,1,t +1305,970c00,326,1,f +1305,970c00,72,1,f +1305,970c00,19,1,f +1305,970c00,70,1,f +1305,970c00,71,1,f +1305,970c00,28,1,f +1305,970c00,15,1,f +1305,970c00pr0601,379,1,f +1305,973pr3017c01,29,1,f +1305,973pr3083c01,15,1,f +1305,973pr3424c01,30,1,f +1305,973pr3425c01,4,1,f +1305,973pr3434c01,212,1,f +1305,973pr3451c01,71,1,f +1305,973pr3490c01,15,1,f +1305,973pr6176783c01,15,1,f +1305,98100,0,1,f +1305,98138,36,1,t +1305,98138,15,1,t +1305,98138,15,1,f +1305,98138,47,2,f +1305,98138,297,1,t +1305,98138,41,1,t +1305,98138,36,1,f +1305,98138,70,1,t +1305,98138,70,2,f +1305,98138,41,1,f +1305,98138,71,5,f +1305,98138,47,1,t +1305,98138,297,6,f +1305,98138pr0012,179,2,t +1305,98138pr0012,179,2,f +1305,98138pr0013,15,2,f +1305,98138pr0013,15,1,t +1305,98138pr0022,84,2,f +1305,98138pr0022,84,1,t +1305,98138pr0050,19,6,f +1305,98138pr0050,19,1,t +1305,98283,71,2,f +1305,98283,320,2,f +1305,98283,84,6,f +1305,98313,15,1,f +1305,98549,15,1,f +1305,99206,0,3,f +1305,99206,15,2,f +1305,99207,71,3,f +1305,99207,0,5,f +1305,99780,15,1,f +1305,99780,71,1,f +1305,99780,0,1,f +1305,99930,28,1,f +1306,15573,15,2,f +1306,2431,15,1,f +1306,2877,15,16,f +1306,3008,15,2,f +1306,3020,15,1,f +1306,3021,15,4,f +1306,3023,15,1,f +1306,3024,15,4,f +1306,3036,2,1,f +1306,32028,15,4,f +1306,3710,15,3,f +1306,4032a,15,1,f +1306,59900,15,16,f +1306,60474,15,1,f +1306,61409,15,2,f +1307,16195,25,1,f +1307,16265,179,1,f +1307,18816,322,1,f +1307,19343,226,1,f +1307,19818pr0025,322,1,f +1307,24911,71,1,f +1307,25013,118,1,f +1307,25117,15,1,f +1307,3011,14,2,f +1307,31170,4,1,f +1307,31213pr0009,4,1,f +1307,40666,1,1,f +1307,4672,72,1,f +1307,61649,1,1,f +1307,76371,1,2,f +1307,89398,4,1,f +1311,11211,15,4,f +1311,14210,15,2,f +1311,14769,15,1,f +1311,2555,71,4,f +1311,2555,15,2,f +1311,3003,72,3,f +1311,3004,72,6,f +1311,3004,15,8,f +1311,3010,72,6,f +1311,3022,72,8,f +1311,3023,15,4,f +1311,3024,15,4,f +1311,30374,15,8,f +1311,30377,15,24,f +1311,3065,40,4,f +1311,3068b,72,3,f +1311,3069b,0,4,f +1311,3626cpr0891,14,1,f +1311,3626cpr1580,14,1,f +1311,3633,72,2,f +1311,3666,72,2,f +1311,3710,72,2,f +1311,3710,15,6,f +1311,3710,2,4,f +1311,3794b,15,8,f +1311,3794b,72,4,f +1311,3794b,71,4,f +1311,3941,15,18,f +1311,3960,0,1,f +1311,4282,0,3,f +1311,44375a,71,1,f +1311,4727,10,5,f +1311,4740,71,1,f +1311,54200,15,8,f +1311,54200,40,24,f +1311,54200,73,6,f +1311,60474,0,1,f +1311,60474,15,2,f +1311,6091,72,12,f +1311,6141,297,2,f +1311,6141,15,4,f +1311,62696,0,1,f +1311,63864,15,4,f +1311,75937,15,3,f +1311,86035,27,1,f +1311,92438,71,1,f +1311,970c00,15,1,f +1311,970c00,19,1,f +1311,973c02,4,1,f +1311,973c07,1,1,f +1311,98313,15,8,f +1311,99780,15,4,f +1312,2412b,72,3,f +1312,2780,0,2,f +1312,2780,0,1,t +1312,3003,0,2,f +1312,3009,0,2,f +1312,30136,72,2,f +1312,3022,72,1,f +1312,3023,27,2,f +1312,3023,0,4,f +1312,3031,0,1,f +1312,32028,72,2,f +1312,32123b,71,4,f +1312,32123b,71,1,t +1312,3460,27,2,f +1312,3460,0,2,f +1312,3660,0,2,f +1312,3665,0,2,f +1312,3666,0,2,f +1312,3702,0,2,f +1312,3708,0,2,f +1312,3709,0,3,f +1312,3749,19,4,f +1312,40490,0,2,f +1312,4286,0,2,f +1312,43093,1,2,f +1312,43722,27,2,f +1312,43723,27,2,f +1312,44728,0,2,f +1312,45677,27,1,f +1312,47456,0,1,f +1312,47715,72,1,f +1312,47755,72,2,f +1312,52031,27,1,f +1312,54200,27,1,t +1312,54200,46,1,t +1312,54200,27,2,f +1312,54200,46,4,f +1312,56145,25,4,f +1312,61409,72,2,f +1312,6141,71,4,f +1312,6141,71,1,t +1312,61481,0,4,f +1312,62462,0,4,f +1312,6636,0,1,f +1312,8165cdb01,89,1,f +1313,3022,7,18,f +1313,3023,0,2,f +1313,3023,14,16,f +1313,3023,7,2,f +1313,3024,46,2,f +1313,3024,36,2,f +1313,3035,0,6,f +1313,3069b,7,2,f +1313,3460,14,4,f +1313,3647,7,2,f +1313,3648a,7,4,f +1313,3649,7,1,f +1313,3650a,7,2,f +1313,3651,7,8,f +1313,3652,7,3,f +1313,3666,14,5,f +1313,3673,7,7,f +1313,3700,14,8,f +1313,3701,14,8,f +1313,3702,14,4,f +1313,3703,14,10,f +1313,3704,0,10,f +1313,3705,0,5,f +1313,3706,0,4,f +1313,3707,0,4,f +1313,3708,0,2,f +1313,3709,7,1,f +1313,3709,14,2,f +1313,3710,14,6,f +1313,3710,0,12,f +1313,3713,7,9,f +1313,3736,7,1,f +1313,3737,0,2,f +1313,3738,14,2,f +1313,3738,7,1,f +1313,3743,7,2,f +1313,3749,7,10,f +1313,3894,14,4,f +1313,3895,14,4,f +1313,4019,7,1,f +1313,4143,7,4,f +1313,4185,7,1,f +1313,4261,7,2,f +1313,4262,7,3,f +1313,4263,7,3,f +1313,4265a,7,9,f +1313,4266,7,4,f +1313,4267,0,4,f +1313,4273b,7,16,f +1313,4274,7,9,f +1313,4459,0,18,f +1313,73071,7,1,f +1313,73129,7,2,f +1313,9244,7,2,f +1313,rb00164,0,1,f +1314,30150,70,1,f +1314,3022,15,1,f +1314,3023,15,1,f +1314,3176,71,1,f +1314,50949,1,2,f +1316,2780,0,1,t +1316,2780,0,2,f +1316,32062,0,2,f +1316,32174,19,2,f +1316,32174,484,2,f +1316,32270,7,1,f +1316,32568,484,1,f +1316,32576,484,2,f +1316,32579,7,1,f +1316,3713,7,1,f +1316,3713,7,1,t +1316,3749,19,1,f +1316,41670,19,2,f +1316,43093,1,1,f +1316,44137,19,1,f +1316,44809,484,2,f +1316,44810,19,1,f +1316,44811,179,1,f +1316,44812,179,1,f +1316,4519,7,1,f +1318,2,4,1,f +1318,3,15,2,f +1318,3005,4,14,f +1318,3005,14,16,f +1318,3008,0,5,f +1318,3010,4,5,f +1318,3020,14,1,f +1318,3021,14,4,f +1318,3029,4,1,f +1318,3031,4,1,f +1318,3062a,15,1,f +1318,3068a,4,14,f +1318,3069a,4,4,f +1318,3069a,14,15,f +1318,3069a,0,1,f +1318,3069a,7,1,f +1318,3070a,14,2,f +1320,3003,6,1,f +1320,3022,2,1,f +1320,3031,2,1,f +1320,3040b,2,8,f +1320,3688,2,1,f +1320,3941,6,1,f +1320,4286,2,20,f +1321,2341,0,2,f +1321,2343,0,2,f +1321,2357,0,4,f +1321,2357,7,6,f +1321,2412b,4,8,f +1321,2420,14,3,f +1321,2420,0,6,f +1321,2431,1,3,f +1321,2431pa0,19,1,f +1321,2436,7,1,f +1321,2436,4,1,f +1321,2450,4,4,f +1321,2454a,19,2,f +1321,2454pa0,19,1,f +1321,2454px1,19,1,f +1321,2454px3,19,1,f +1321,2454px4,19,1,f +1321,2462,4,8,f +1321,2465px1,19,1,f +1321,2489,6,1,f +1321,2518,2,4,f +1321,2526,15,1,f +1321,2530,8,1,t +1321,2530,8,1,f +1321,2536,6,12,f +1321,2540,15,1,f +1321,2546,8,6,f +1321,2555,0,2,f +1321,2563,6,2,f +1321,2566,2,2,f +1321,2598,19,1,f +1321,2609b,15,1,f +1321,2618,19,1,f +1321,298c01,0,1,f +1321,298c01,0,1,t +1321,298c03,0,1,f +1321,298c03,0,1,t +1321,3001,0,1,f +1321,3001,19,2,f +1321,3002,8,2,f +1321,3002,0,3,f +1321,3003,7,7,f +1321,3003,8,8,f +1321,3003,0,6,f +1321,3003,19,4,f +1321,3004,4,8,f +1321,3004,7,13,f +1321,30041,19,2,f +1321,30042,19,2,f +1321,3005,0,2,f +1321,3005,7,2,f +1321,3006,0,1,f +1321,3006,19,1,f +1321,3007,7,2,f +1321,3008,7,2,f +1321,3009,8,6,f +1321,3010,7,7,f +1321,3010,0,3,f +1321,30101,7,1,f +1321,30102,19,1,f +1321,30103,8,1,f +1321,30104,8,2,f +1321,30115,4,1,f +1321,30115,0,2,f +1321,30132,8,1,f +1321,30132,8,1,t +1321,30136,8,18,f +1321,30136,15,4,f +1321,30136,19,15,f +1321,30137,15,1,f +1321,30137,19,12,f +1321,30141,8,3,f +1321,30147,8,1,f +1321,30148,0,1,f +1321,30149,8,1,f +1321,30150,6,2,f +1321,30151a,14,1,f +1321,30151a,47,1,f +1321,30152pat0001,0,1,f +1321,30153,36,1,f +1321,30155,8,6,f +1321,30156,19,2,f +1321,30156px3,19,1,f +1321,30156px4,19,1,f +1321,30157,7,3,f +1321,30158,6,1,f +1321,30159,15,1,f +1321,30161pa1,47,1,f +1321,30162,0,2,f +1321,30163,1,1,f +1321,30164,8,1,f +1321,30164p01,19,1,f +1321,30165,8,1,f +1321,30167,6,1,f +1321,30168px1,14,1,f +1321,30169,0,3,f +1321,30170,0,1,f +1321,30170,0,1,t +1321,30171,6,1,f +1321,30172,15,3,f +1321,3020,7,1,f +1321,3020,14,4,f +1321,3021,4,4,f +1321,3022,0,5,f +1321,3022,7,2,f +1321,3022,8,6,f +1321,3022,4,2,f +1321,3023,6,2,f +1321,3023,7,10,f +1321,3023,0,12,f +1321,3023,4,4,f +1321,3024,7,4,f +1321,3035,7,1,f +1321,3036,19,1,f +1321,3036,7,1,f +1321,3039,19,12,f +1321,3039,1,2,f +1321,3039,7,2,f +1321,3040b,7,8,f +1321,3045,19,8,f +1321,3062b,4,23,f +1321,3062b,34,2,f +1321,3062b,36,4,f +1321,3062b,7,8,f +1321,3068b,14,4,f +1321,3068bp40,15,2,f +1321,3068bpx13,19,1,f +1321,3069b,1,1,f +1321,3069bp03,7,1,f +1321,3069bpa0,19,1,f +1321,3069bpa1,0,1,f +1321,3069bpa4,15,1,f +1321,3298,8,2,f +1321,3298,19,2,f +1321,3455,0,4,f +1321,3460,8,2,f +1321,3460,7,2,f +1321,3460,19,1,f +1321,3483,0,6,f +1321,3622,19,2,f +1321,3622,7,6,f +1321,3622,0,2,f +1321,3623,14,2,f +1321,3623,7,4,f +1321,3626b,7,4,f +1321,3626bpa1,14,1,f +1321,3626bpa2,7,1,f +1321,3626bpa3,14,1,f +1321,3626bpa5,14,1,f +1321,3626bpa7,14,1,f +1321,3626bpa9,14,1,f +1321,3626bpr0098,14,1,f +1321,3626bpr0895,15,3,f +1321,3659,8,2,f +1321,3660,8,9,f +1321,3666,0,2,f +1321,3666,14,1,f +1321,3666,7,2,f +1321,3684,19,2,f +1321,3684,8,2,f +1321,3688,19,1,f +1321,3700,0,2,f +1321,3708,0,1,f +1321,3710,7,4,f +1321,3710,15,2,f +1321,3710,4,1,f +1321,3710,14,1,f +1321,3710,0,10,f +1321,3713,7,1,f +1321,3713,7,1,t +1321,3754px1,19,1,f +1321,3754px2,19,1,f +1321,3794a,4,4,f +1321,3795,15,2,f +1321,3795,14,2,f +1321,3829c01,7,1,f +1321,3841,8,3,f +1321,3849,0,2,f +1321,3857,19,2,f +1321,3878,0,1,f +1321,3895,15,1,f +1321,3899,15,2,f +1321,3937,1,1,f +1321,3937,7,2,f +1321,3941,0,1,f +1321,3942b,0,1,f +1321,3957a,4,1,f +1321,3958,0,1,f +1321,4032a,2,2,f +1321,4032a,14,3,f +1321,4032a,0,1,f +1321,4070,7,1,f +1321,4070,0,4,f +1321,4085c,4,3,f +1321,4213,7,1,f +1321,4282,0,1,f +1321,4286,0,2,f +1321,4315,0,1,f +1321,4460a,7,2,f +1321,4528,0,1,f +1321,4589,0,10,f +1321,4590,7,1,f +1321,4599a,15,4,f +1321,4625,7,1,f +1321,4738a,0,1,f +1321,4739a,0,1,f +1321,4865a,1,3,f +1321,57503,334,1,f +1321,57504,334,1,f +1321,57505,334,1,f +1321,57506,334,1,f +1321,6019,7,24,f +1321,6020,6,2,f +1321,6026,8,2,f +1321,6027,8,2,f +1321,6028,8,2,f +1321,6037,19,10,f +1321,6057,0,4,f +1321,6064,2,2,f +1321,6079,6,2,f +1321,6081,7,2,f +1321,6082,8,2,f +1321,6083,19,2,f +1321,6111,8,2,f +1321,6111,0,1,f +1321,6112,19,3,f +1321,6123,8,1,f +1321,6126a,57,4,f +1321,6134,4,1,f +1321,6141,4,10,f +1321,6141,4,1,t +1321,6141,36,2,f +1321,6141,42,1,f +1321,6141,36,1,t +1321,6141,14,1,t +1321,6141,42,1,t +1321,6141,14,4,f +1321,6141,46,1,t +1321,6141,46,2,f +1321,6148,2,4,f +1321,6182,0,1,f +1321,6232,4,1,f +1321,6260,15,3,f +1321,6265,15,1,t +1321,6265,15,6,f +1321,6266,15,6,f +1321,6587,8,2,f +1321,71155,0,1,f +1321,73092,0,2,f +1321,73590c02a,0,1,f +1321,970c00,0,3,f +1321,970c00,2,1,f +1321,970c00,7,1,f +1321,970c00,4,1,f +1321,970c11pb01,0,1,f +1321,973p22c01,0,1,f +1321,973pa1c01,15,1,f +1321,973pa2c01,0,1,f +1321,973pa5c01,6,1,f +1321,973pa6c01,19,1,f +1321,973pa7c01,19,1,f +1321,973pb0391c01,19,1,f +1321,rb00168,0,1,t +1321,rb00168,0,4,f +1324,2399,4,1,f +1324,2413,4,4,f +1324,2415,7,2,f +1324,2420,4,2,f +1324,2432,4,1,f +1324,2445,4,1,f +1324,2446,0,1,f +1324,2447,41,1,f +1324,2655,7,1,f +1324,2780,0,2,f +1324,3002,4,1,f +1324,3020,4,2,f +1324,3022,4,2,f +1324,3022,0,5,f +1324,3023,0,2,f +1324,3038,4,2,f +1324,3069b,0,1,f +1324,3139,0,2,f +1324,3464,4,1,f +1324,3464,47,2,f +1324,3474,4,1,f +1324,3479,4,2,f +1324,3587,4,1,f +1324,3622,4,2,f +1324,3626bp04,14,1,f +1324,3660,4,2,f +1324,3700,4,2,f +1324,3705,0,1,f +1324,3710,4,2,f +1324,3747a,4,1,f +1324,3829c01,15,1,f +1324,4070,4,2,f +1324,4185,7,1,f +1324,4265b,7,1,t +1324,4265b,7,2,f +1324,4266,4,1,f +1324,4477,4,2,f +1324,4617b,0,1,f +1324,4865a,41,1,f +1324,4871,4,1,f +1324,6141,7,1,t +1324,6141,7,8,f +1324,6615stk01,9999,1,t +1324,71137,383,2,f +1324,970c00,0,1,f +1324,973p70c01,6,1,f +1325,2343,47,1,f +1325,3626bpr0270,14,1,f +1325,3898,15,1,f +1325,970c00,71,1,f +1325,973pr1196c01,15,1,f +1326,bb06bd,383,2,f +1327,3037,4,14,f +1327,3038,4,4,f +1327,3039,4,8,f +1327,3040b,4,4,f +1327,3041,4,3,f +1327,3042,4,1,f +1327,3043,4,2,f +1327,3044a,4,2,f +1327,3045,4,8,f +1327,3046a,4,8,f +1327,3048a,4,2,f +1327,3049b,4,2,f +1328,tray01,4,2,f +1328,tray02,1,2,f +1328,tray03,15,1,f +1330,2412b,0,1,f +1330,2441,0,1,f +1330,30027,71,4,f +1330,30028,0,4,f +1330,3020,0,1,f +1330,3022,15,3,f +1330,3023,71,3,f +1330,3622,15,2,f +1330,3821,15,1,f +1330,3822,15,1,f +1330,3829c01,15,1,f +1330,4081b,0,2,f +1330,44728,15,2,f +1330,45677,0,1,f +1330,4865a,15,1,f +1330,54200,0,2,f +1330,57783,40,1,f +1330,60212,0,1,f +1330,60212,15,1,f +1330,60481,0,2,f +1330,93273,71,1,f +1330,98138,47,4,f +1332,3437,27,1,f +1332,3437,14,1,f +1332,3437,10,1,f +1332,47575pr0005,15,1,f +1332,6427,1,1,f +1332,6510,5,1,f +1332,88760,0,1,f +1332,88762c01pb06,0,2,f +1332,93346,0,1,f +1332,95445,10,1,f +1333,2206,10,2,f +1333,2300,4,1,f +1333,2301,1,2,f +1333,2302,1,2,f +1333,2302,14,2,f +1333,2312a,1,1,f +1333,2332b,14,2,f +1333,3011,14,3,f +1333,3011,73,1,f +1333,3011,1,3,f +1333,3011,10,3,f +1333,3011,4,3,f +1333,3437,73,6,f +1333,3437,10,6,f +1333,3437,25,6,f +1333,3437,14,6,f +1333,3437,4,6,f +1333,3437,41,2,f +1333,3437,1,6,f +1333,4066,4,2,f +1333,40666,10,2,f +1333,40666,1,2,f +1333,6474,4,2,f +1333,6510,4,2,f +1333,6510,10,2,f +1335,2431,15,2,f +1335,2715px2,15,1,f +1335,2716,0,1,f +1335,2780,0,27,f +1335,2780,0,1,t +1335,2994,15,1,f +1335,3062b,33,1,f +1335,3062b,36,1,f +1335,3069b,1,2,f +1335,32013,15,8,f +1335,32016,15,2,f +1335,32039,1,1,f +1335,32068,15,4,f +1335,32069,1,2,f +1335,32069,0,2,f +1335,32123b,7,6,t +1335,32123b,7,24,f +1335,32137,33,6,f +1335,32138,15,2,f +1335,32140,15,6,f +1335,3702,0,2,f +1335,3705,0,6,f +1335,3706,0,1,f +1335,3713,7,1,f +1335,3713,7,2,t +1335,3749,7,2,t +1335,3749,7,12,f +1335,4274,7,4,f +1335,4274,7,1,t +1335,4519,0,6,f +1335,4868a,15,2,f +1335,6141,33,2,f +1335,6141,33,1,t +1335,6536,1,2,f +1335,6538b,0,1,f +1335,6558,0,6,f +1335,6578,0,1,f +1335,6579,0,4,f +1335,6580,15,4,f +1335,6587,8,4,f +1335,6629,1,6,f +1335,6630,1,1,f +1335,6630,0,1,f +1335,71509,0,1,t +1335,71509,0,2,f +1335,75535,15,1,f +1335,75c04,15,1,t +1335,75c04,15,1,f +1335,75c17,15,2,f +1335,78c12,15,2,f +1335,tech019,9999,1,f +1338,200,0,2,f +1338,202,0,2,f +1338,2339,0,2,f +1338,2342,0,2,f +1338,2345,0,3,f +1338,2362a,46,2,f +1338,2401,0,3,f +1338,2408p02,0,2,f +1338,2409,46,1,f +1338,2412b,0,1,f +1338,2419,14,2,f +1338,2420,0,3,f +1338,2428,14,2,f +1338,2431,0,4,f +1338,2436,0,2,f +1338,2446,0,5,f +1338,2447,0,5,f +1338,2448,46,1,f +1338,2449,0,4,f +1338,2450,0,4,f +1338,2452,0,2,f +1338,2453a,0,1,f +1338,2465,0,6,f +1338,2466,0,10,f +1338,2466,46,3,f +1338,2467,0,2,f +1338,2468,46,3,f +1338,2476a,0,2,f +1338,2681,0,2,f +1338,298c01,0,6,f +1338,3003,0,10,f +1338,3004,0,15,f +1338,3005,0,7,f +1338,3008,0,3,f +1338,3009,0,7,f +1338,3010,0,2,f +1338,3020,0,4,f +1338,3020,14,1,f +1338,3021,0,2,f +1338,3022,0,16,f +1338,3022,14,10,f +1338,3023,14,3,f +1338,3023,0,16,f +1338,3024,0,5,f +1338,3024,36,8,f +1338,3024,14,2,f +1338,3028,0,1,f +1338,3030,0,1,f +1338,3031,0,2,f +1338,3032,0,3,f +1338,3032,46,1,f +1338,3034,0,2,f +1338,3035,14,2,f +1338,3036,0,1,f +1338,3039,0,3,f +1338,3039p33,0,3,f +1338,3040b,0,15,f +1338,3040p01,0,3,f +1338,3062b,36,11,f +1338,3062b,0,2,f +1338,3068b,14,2,f +1338,3068b,0,2,f +1338,3068bp00,0,1,f +1338,3069b,0,3,f +1338,3069bp017,0,2,f +1338,3069bp25,14,5,f +1338,3070bp06,14,2,f +1338,3460,0,1,f +1338,3479,0,1,f +1338,3622,0,11,f +1338,3623,0,18,f +1338,3626apr0001,14,5,f +1338,3633,14,6,f +1338,3633,0,4,f +1338,3660,0,12,f +1338,3665,0,11,f +1338,3666,0,3,f +1338,3679,7,3,f +1338,3680,0,3,f +1338,3684,0,2,f +1338,3700,0,4,f +1338,3708,0,1,f +1338,3710,0,11,f +1338,3737,0,1,f +1338,3747a,0,9,f +1338,3794a,0,12,f +1338,3795,14,1,f +1338,3795,0,3,f +1338,3811,7,1,f +1338,3830,0,1,f +1338,3831,0,1,f +1338,3832,0,3,f +1338,3838,0,5,f +1338,3933a,0,1,f +1338,3934a,0,1,f +1338,3935,0,1,f +1338,3936,0,2,f +1338,3937,0,7,f +1338,3938,0,7,f +1338,3942c,14,2,f +1338,3947a,7,1,f +1338,3956,0,1,f +1338,3957a,14,2,f +1338,3957a,36,9,f +1338,3959,0,3,f +1338,3960,14,2,f +1338,3961,0,1,f +1338,3962a,0,1,f +1338,4006,0,1,f +1338,4070,0,6,f +1338,4081b,0,2,f +1338,4083,0,2,f +1338,4085b,14,5,f +1338,4162,0,4,f +1338,4175,0,2,f +1338,4213,0,2,f +1338,4215a,46,1,f +1338,4229,0,2,f +1338,4276b,0,2,f +1338,4282,0,3,f +1338,4287,0,5,f +1338,4288,0,4,f +1338,4345a,0,1,f +1338,4346,0,1,f +1338,4349,0,2,f +1338,4360,0,1,f +1338,4460a,0,6,f +1338,4476b,0,14,f +1338,4479,0,1,f +1338,4588,36,1,f +1338,4589,36,1,f +1338,4590,0,5,f +1338,4596,14,2,f +1338,4596,0,2,f +1338,4598,14,1,f +1338,4600,0,2,f +1338,4624,14,4,f +1338,4625,0,2,f +1338,4732,0,1,f +1338,4733,0,4,f +1338,4735,0,2,f +1338,4737,0,2,f +1338,4740,36,11,f +1338,4740,0,2,f +1338,4859,0,1,f +1338,4864a,0,1,f +1338,4871,0,1,f +1338,4873,0,4,f +1338,6141,36,2,f +1338,6141,0,2,f +1338,73590c01b,14,3,f +1338,9244,7,1,f +1338,970c00,0,5,f +1338,973p52c01,0,5,f +1339,458,7,8,f +1340,2377,4,2,f +1340,2399,4,2,f +1340,2431,1,2,f +1340,2431,4,1,f +1340,2431,15,1,f +1340,2432,15,2,f +1340,2437,41,1,f +1340,298c02,15,2,f +1340,298c02,15,1,t +1340,3003,15,1,f +1340,3004,4,1,f +1340,3010,4,3,f +1340,3020,15,2,f +1340,3020,4,1,f +1340,3022,4,1,f +1340,3022,7,2,f +1340,3022,1,1,f +1340,3023,0,1,f +1340,3023,7,2,f +1340,3023,15,1,f +1340,3023,4,5,f +1340,3024,4,3,f +1340,3024,7,4,f +1340,3024,46,2,f +1340,3031,4,1,f +1340,3032,15,1,f +1340,3034,7,1,f +1340,3039,4,2,f +1340,3039pc4,0,1,f +1340,3040b,15,2,f +1340,3068b,4,1,t +1340,3068b,4,1,f +1340,3068b,15,1,f +1340,3069b,4,1,f +1340,3069b,7,1,f +1340,3069b,15,1,f +1340,3070b,4,2,f +1340,3139,0,10,f +1340,3298,4,2,f +1340,3430c01,7,1,f +1340,3460,15,3,f +1340,3474,15,1,f +1340,3585,15,1,f +1340,3586,15,1,f +1340,3622,4,6,f +1340,3623,4,3,f +1340,3623,15,2,f +1340,3624,0,1,f +1340,3626apr0001,14,2,f +1340,3641,0,6,f +1340,3666,15,2,f +1340,3666,4,3,f +1340,3679,7,1,f +1340,3680,7,1,f +1340,3710,15,1,f +1340,3710,4,3,f +1340,3710,7,1,f +1340,3747a,7,1,f +1340,3788,4,1,f +1340,3794a,15,1,f +1340,3795,0,1,f +1340,3795,4,1,f +1340,3829c01,4,1,f +1340,4081b,4,2,f +1340,4084,0,2,f +1340,4162,1,2,f +1340,4175,4,1,f +1340,4282,1,1,f +1340,4286,4,2,f +1340,4345a,14,3,f +1340,4346,14,3,f +1340,4477,15,3,f +1340,4485,1,1,f +1340,4600,0,4,f +1340,4624,15,8,f +1340,4624,7,10,f +1340,4625,4,3,f +1340,4854,7,3,f +1340,4855,7,1,f +1340,4856a,4,1,f +1340,4856a,15,1,f +1340,4857,15,3,f +1340,4858,4,1,f +1340,4859,15,2,f +1340,4861,15,1,f +1340,4862,41,2,f +1340,4864a,4,4,f +1340,4864apx13,4,2,f +1340,4865a,1,1,f +1340,4865a,4,6,f +1340,4867pb04,15,1,f +1340,4868a,15,4,f +1340,4869,7,4,f +1340,4870,7,5,f +1340,4871,7,2,f +1340,6141,34,1,t +1340,6141,36,2,f +1340,6141,34,1,f +1340,73983,4,2,f +1340,970c00,1,1,f +1340,970c00,0,1,f +1340,973p16c01,15,1,f +1340,973px189c01,0,1,f +1341,2343,297,3,f +1341,3003,19,7,f +1341,30151a,28,6,f +1341,30385,297,3,f +1341,3039,19,2,f +1341,3040b,19,4,f +1341,3048c,297,1,f +1341,3068b,0,1,f +1341,3068bpr0164,15,2,f +1341,3069b,1,1,f +1341,3069b,2,2,f +1341,3069b,25,1,f +1341,3069b,4,1,f +1341,3069b,14,1,f +1341,3069b,85,2,f +1341,3069b,19,14,f +1341,3070b,19,1,t +1341,3070b,19,2,f +1341,3666,19,1,f +1341,4162,19,9,f +1341,4589,36,2,f +1341,4589,33,2,f +1341,4589,46,2,f +1341,4589,52,3,f +1341,4589,182,2,f +1341,4589,297,3,f +1341,4589,34,3,f +1341,64644,297,3,f +1341,64776pat0001,0,1,f +1341,85863pr0016,15,1,f +1341,85863pr0063,1,1,f +1341,85863pr0064,25,1,f +1341,85863pr0065,14,1,f +1341,85863pr0066,4,1,f +1341,87580,19,8,f +1341,91405,28,1,f +1341,92585,4,1,f +1342,3857,14,1,f +1344,3011,1,2,f +1344,3011,0,2,f +1344,3437,4,2,f +1344,3437,0,2,f +1344,3437,1,8,f +1344,4197,1,2,f +1344,4199,1,2,f +1344,4375,14,1,f +1344,4376,14,1,f +1344,4555pb126,9999,1,f +1344,4555pb161,9999,2,f +1344,4575,14,1,f +1344,4654c04,14,2,f +1344,4655,14,2,f +1344,4657,4,1,f +1344,4658,14,1,f +1344,4668,4,4,f +1344,4671,15,1,f +1344,4672,15,2,f +1344,dupraft,14,1,f +1344,dupship,15,1,f +1345,3004,1,2,f +1345,3004,73,4,f +1345,3021,1,1,f +1346,45575,71,4,f +1346,bat9volt,89,1,f +1346,bb90,89,1,f +1353,2421,0,1,f +1353,3004,1,1,f +1353,3004,15,2,f +1353,3020,1,3,f +1353,3022,0,1,f +1353,3023,0,2,f +1353,3023,1,2,f +1353,3024,36,2,f +1353,30602,40,2,f +1353,3070b,14,1,t +1353,3070b,14,2,f +1353,3460,0,2,f +1353,3660,1,1,f +1353,3666,272,2,f +1353,3679,71,1,f +1353,3680,1,1,f +1353,3747b,15,1,f +1353,3794a,1,3,f +1353,4081b,72,2,f +1353,4150,71,1,f +1353,43722,15,1,f +1353,43723,15,1,f +1353,44728,0,1,f +1353,4477,1,1,f +1353,4488,71,1,f +1353,59900,71,2,f +1353,6140,71,2,f +1353,61409,72,1,f +1353,6141,72,1,t +1353,6141,46,1,t +1353,6141,72,4,f +1353,6141,46,2,f +1353,6231,71,2,f +1353,87087,15,2,f +1354,2607,4,3,f +1354,2609,0,3,f +1354,73092,0,6,f +1355,2454a,19,2,f +1355,2540,0,2,f +1355,3004,0,2,f +1355,3005,8,2,f +1355,3008,19,1,f +1355,3008,0,1,f +1355,30103,0,1,f +1355,30153,36,1,t +1355,30153,36,1,f +1355,30238,57,1,f +1355,30240,8,1,f +1355,30374,6,1,f +1355,3040b,19,6,f +1355,30614,378,1,f +1355,3062b,8,9,f +1355,3308,8,2,f +1355,3308,0,1,f +1355,3455,19,1,f +1355,3626bph1,14,1,f +1355,3626bpx118,14,1,f +1355,3665,8,4,f +1355,3794a,0,1,f +1355,3794a,7,1,f +1355,40232,0,1,f +1355,40233,0,1,f +1355,40235,22,1,f +1355,40249,0,1,f +1355,40253,6,1,f +1355,4070,19,2,f +1355,4081b,7,2,f +1355,4201,8,1,f +1355,4702stk01,9999,1,t +1355,50231,0,1,f +1355,50231px1,0,1,f +1355,6126a,57,2,f +1355,6126a,57,1,t +1355,970c00,0,1,f +1355,970c00,7,1,f +1355,973px146c01,7,1,f +1355,973px175c01,22,1,f +1356,3038,4,5,f +1356,3040a,4,5,f +1356,3042,4,1,f +1356,3044a,4,3,f +1356,3045,4,6,f +1356,3046a,4,6,f +1356,3048a,4,4,f +1356,3049b,4,2,f +1356,962,4,2,f +1357,11458,72,2,f +1357,12607ass02pr01,10,1,f +1357,12608,5,1,f +1357,12609pr0001,28,1,f +1357,2458,72,2,f +1357,2476a,71,1,f +1357,2817,0,1,f +1357,298c02,4,1,t +1357,298c02,4,1,f +1357,3021,85,1,f +1357,3022,15,1,f +1357,3023,85,3,f +1357,3032,71,2,f +1357,3039pr0002,15,1,f +1357,32001,0,1,f +1357,3622,71,1,f +1357,3626c,5,1,f +1357,3626cpr1150,0,1,f +1357,3710,15,2,f +1357,3839b,71,1,f +1357,3941,42,1,f +1357,3957a,42,4,f +1357,4032a,71,3,f +1357,4070,71,1,f +1357,4150,0,1,f +1357,4150p02,14,1,f +1357,4285b,72,1,f +1357,4740,72,1,f +1357,4865b,4,1,f +1357,50747,47,1,f +1357,59232,179,1,f +1357,59900,42,2,f +1357,59900,36,2,f +1357,60474,71,2,f +1357,60475b,71,2,f +1357,60478,72,2,f +1357,61184,71,2,f +1357,6141,85,1,t +1357,6141,85,11,f +1357,63868,0,2,f +1357,75937,179,1,f +1357,75c03,70,2,f +1357,85941,47,1,f +1357,87079,71,1,f +1357,87580,85,1,f +1357,92220,179,4,f +1357,92338,72,1,f +1357,93273,71,3,f +1357,95120,72,1,f +1357,970c00,0,1,f +1357,970c00pr0473,10,1,f +1357,973pr2262c01,10,1,f +1357,973pr2264c01,0,1,f +1357,98138pr0012,179,1,t +1357,98138pr0012,179,2,f +1357,99780,72,3,f +1359,2456,2,1,f +1359,2456,71,1,f +1359,3001,14,1,f +1359,3001,25,1,f +1359,3002,72,1,f +1359,3003,14,1,f +1359,3003,25,1,f +1359,3003pr0001,14,1,f +1359,3004,14,1,f +1359,3004,2,1,f +1359,3005,5,1,f +1359,3007,1,1,f +1359,3009,1,1,f +1359,3010,2,1,f +1359,3020,4,1,f +1359,3021,4,1,f +1359,3022,15,1,f +1359,3031,27,1,f +1359,3037,0,1,f +1359,3795,0,1,f +1360,11097,297,1,f +1360,11100,15,2,f +1360,11127,41,1,f +1360,12549pr0003,15,1,f +1360,12825,15,5,f +1360,2540,14,2,f +1360,30031,71,1,f +1360,3020,72,1,f +1360,3024,14,1,f +1360,3024,14,1,t +1360,3626cpr1126,212,1,f +1360,3794b,1,2,f +1360,3795,19,1,f +1360,4081b,1,2,f +1360,41769,15,1,f +1360,41769,272,1,f +1360,41770,272,1,f +1360,41770,15,1,f +1360,50950,15,1,f +1360,85984,15,2,f +1360,970c01pr0435,15,1,f +1360,973pr2231c01,212,1,f +1360,98138,41,1,f +1360,98138,41,1,t +1360,99774,72,2,f +1363,132a,0,5,f +1363,242c01,4,6,f +1363,3001a,15,1,f +1363,3004,1,3,f +1363,3005,15,4,f +1363,3009,47,2,f +1363,3010,15,5,f +1363,3020,1,1,f +1363,3020,7,2,f +1363,3021,15,4,f +1363,3022,15,4,f +1363,3023,1,2,f +1363,3023,15,19,f +1363,3024,15,2,f +1363,3029,7,1,f +1363,7049b,15,4,f +1364,10113,0,1,f +1364,10247,14,2,f +1364,10301pr0003,70,1,f +1364,10677pr0003,70,1,f +1364,12825,72,2,f +1364,15535,72,1,f +1364,15871,9999,1,t +1364,2415,71,3,f +1364,2419,4,1,f +1364,2420,0,2,f +1364,2479,0,1,f +1364,2540,0,2,f +1364,2584,0,1,f +1364,2585,71,1,f +1364,2654,182,1,f +1364,2654,4,1,f +1364,2780,0,1,t +1364,2780,0,2,f +1364,2877,71,5,f +1364,30192,72,2,f +1364,3024,46,2,t +1364,3024,46,2,f +1364,3030,0,1,f +1364,3031,14,1,f +1364,30332,0,1,f +1364,30361c,0,2,f +1364,3039,0,1,f +1364,3039,19,1,f +1364,30395,72,1,f +1364,30592,71,1,f +1364,3069bpr0101,71,1,f +1364,32013,72,2,f +1364,32064b,72,1,f +1364,32269,0,1,f +1364,3298,0,2,f +1364,3460,0,2,f +1364,3464,72,3,f +1364,3622,71,2,f +1364,3623,71,4,f +1364,3626bpr0896,78,1,f +1364,3626cpr1286,70,1,f +1364,3626cpr1287,78,1,f +1364,3665,0,4,f +1364,3673,71,1,t +1364,3673,71,1,f +1364,3700,1,1,f +1364,3701,0,3,f +1364,3710,0,1,f +1364,3710,14,1,f +1364,3795,0,1,f +1364,3795,71,1,f +1364,3941,14,1,f +1364,3941,0,1,f +1364,3942c,0,2,f +1364,3956,0,2,f +1364,4032a,14,3,f +1364,41764,0,2,f +1364,41765,0,2,f +1364,4274,1,4,f +1364,4274,1,1,t +1364,4274,71,1,f +1364,4274,71,1,t +1364,43093,1,2,f +1364,44301a,72,2,f +1364,44676,0,2,f +1364,47457,14,1,f +1364,47458,0,1,f +1364,4865b,0,2,f +1364,49668,0,2,f +1364,50950,0,2,f +1364,55706,0,1,f +1364,56630,0,1,f +1364,56823c50,0,1,f +1364,57906,0,2,f +1364,59426,72,1,f +1364,59895,0,3,f +1364,59900,182,4,f +1364,60219,0,1,f +1364,60477,0,4,f +1364,60478,71,2,f +1364,60478,0,2,f +1364,61184,71,4,f +1364,61409,4,2,f +1364,61409,0,4,f +1364,61409,14,2,f +1364,6141,182,1,t +1364,6141,14,1,t +1364,6141,72,2,t +1364,6141,72,8,f +1364,6141,14,1,f +1364,6141,182,1,f +1364,63864,72,1,f +1364,64728,4,2,f +1364,6553,72,1,f +1364,6587,28,1,f +1364,85984,71,3,f +1364,85984,0,1,f +1364,92280,0,4,f +1364,92579,40,1,f +1364,92946,0,6,f +1364,93606,0,1,f +1364,95347,0,1,f +1364,970c00,0,2,f +1364,970c00,272,1,f +1364,973pr1961c01,0,1,f +1364,973pr2490c01,0,1,f +1364,98313,148,2,f +1364,98385,0,1,f +1364,98721,0,1,f +1364,98721,0,1,t +1364,99207,4,1,f +1365,3001a,15,2,f +1365,3002a,15,2,f +1365,3002a,1,2,f +1365,3004,47,2,f +1365,3009,15,4,f +1365,3010p20c,1,1,f +1365,3020,1,2,f +1365,3020,15,4,f +1365,3022,47,1,f +1365,3023,15,4,f +1365,3023,1,2,f +1365,3030,1,1,f +1365,3030,4,1,f +1365,3030,15,1,f +1365,3031,0,1,f +1365,3039,47,1,f +1365,3040a,0,2,f +1365,3081cc01,15,2,f +1365,3137c01,0,3,f +1365,3139,0,6,f +1365,3183b,1,1,f +1365,3184,15,1,f +1365,453cc01,15,2,f +1365,x453,47,1,f +1366,3176,4,1,f +1366,3491,4,1,f +1366,3492c01,14,1,f +1368,10113,0,1,f +1368,15712,320,8,f +1368,18041,179,1,t +1368,18041,179,4,f +1368,19185,0,1,f +1368,27145,14,1,f +1368,27145,14,1,t +1368,30374,0,1,f +1368,30374,41,4,f +1368,3070b,320,3,f +1368,3070b,320,1,t +1368,3623,320,4,f +1368,3626cpr2106,78,1,f +1368,3957a,47,1,f +1368,4070,320,2,f +1368,43898,47,1,f +1368,4733,0,2,f +1368,4740,41,2,f +1368,47905,71,1,f +1368,48729b,72,8,f +1368,48729b,72,1,t +1368,6141,0,2,t +1368,6141,0,4,f +1368,75937,0,2,f +1368,87580,320,2,f +1368,970c00,0,1,f +1368,973pr3650,0,1,f +1368,98138,36,1,t +1368,98138,36,3,f +1368,98721,0,1,f +1368,98721,0,1,t +1369,23306,383,1,f +1369,2357,8,2,f +1369,2412b,8,2,f +1369,2412b,1,5,f +1369,2420,14,2,f +1369,2431,15,7,f +1369,2431,7,1,f +1369,2450,7,4,f +1369,2458,7,1,f +1369,2462,15,2,f +1369,2462,8,2,f +1369,2540,4,4,f +1369,2577,1,2,f +1369,2637,7,8,f +1369,2780,0,16,f +1369,2877,7,8,f +1369,298c02,15,2,f +1369,3001,8,3,f +1369,3001,15,2,f +1369,3002,14,3,f +1369,3002,7,2,f +1369,3003,0,6,f +1369,3004,0,4,f +1369,3004,7,5,f +1369,3005,0,2,f +1369,3005,7,2,f +1369,3010,8,2,f +1369,3010,7,5,f +1369,3020,14,2,f +1369,3020,8,3,f +1369,3020,1,6,f +1369,3020,0,1,f +1369,30208,15,2,f +1369,3021,1,4,f +1369,3021,7,5,f +1369,3022,1,4,f +1369,3022,14,4,f +1369,3022,7,2,f +1369,3023,8,9,f +1369,3029,0,4,f +1369,3031,8,4,f +1369,3031,0,2,f +1369,3032,8,2,f +1369,3033,0,2,f +1369,3033,8,1,f +1369,3034,4,3,f +1369,3035,8,1,f +1369,30357,8,2,f +1369,30359b,8,2,f +1369,3036,0,2,f +1369,30361apr1,15,1,f +1369,30362,15,2,f +1369,30363,1,2,f +1369,30364,8,8,f +1369,30365,7,8,f +1369,30366ps1,40,1,f +1369,30367bpr0007,15,1,f +1369,30368,0,1,f +1369,3037,8,1,f +1369,30370ps5,15,1,f +1369,30372pr0001,40,1,f +1369,30373,8,2,f +1369,30374,36,1,f +1369,3039,8,1,f +1369,3039,7,5,f +1369,3039pr0008,0,1,f +1369,3040b,7,2,f +1369,3040b,1,8,f +1369,3045,7,2,f +1369,3068b,0,3,f +1369,3068b,15,1,f +1369,3068bpr0071,19,2,f +1369,3069b,0,3,f +1369,3069bpr0086,7,1,f +1369,3298,0,1,f +1369,3460,1,4,f +1369,3460,4,2,f +1369,3623,0,2,f +1369,3626bp69,14,1,f +1369,3626bps7,7,1,f +1369,3660,0,4,f +1369,3660,7,6,f +1369,3665,8,4,f +1369,3666,1,4,f +1369,3666,8,5,f +1369,3666,14,1,f +1369,3679,7,1,f +1369,3680,4,1,f +1369,3701,0,3,f +1369,3708,0,2,f +1369,3710,8,8,f +1369,3747a,7,4,f +1369,3794a,0,2,f +1369,3795,8,8,f +1369,3832,7,5,f +1369,3933,8,1,f +1369,3934,8,1,f +1369,3935,0,4,f +1369,3936,0,4,f +1369,3937,7,3,f +1369,3938,0,3,f +1369,3940b,0,3,f +1369,3958,8,1,f +1369,4070,15,2,f +1369,4070,8,4,f +1369,4085c,4,2,f +1369,4150,7,1,f +1369,4150ps5,7,3,f +1369,4286,7,16,f +1369,4345b,15,1,f +1369,4346ps1,7,1,f +1369,4589,15,2,f +1369,4599a,0,4,f +1369,4871,7,4,f +1369,50231,0,1,f +1369,6112,7,2,f +1369,6141,36,6,f +1369,6141,4,4,f +1369,6222,7,2,f +1369,6222,14,2,f +1369,6222,8,8,f +1369,6232,7,4,f +1369,6233,0,2,f +1369,6249,8,4,f +1369,6259,7,4,f +1369,6564,15,3,f +1369,6565,15,3,f +1369,76385,8,2,f +1369,970c00,0,1,f +1369,970x027,25,1,f +1369,973pr1301c01,25,1,f +1369,973ps7c01,0,1,f +1374,14728,0,1,f +1374,167915,47,1,f +1374,2420,7,4,f +1374,2431,7,2,f +1374,2695,15,2,f +1374,2696,0,2,f +1374,2730,4,6,f +1374,2780,0,14,f +1374,2815,0,2,f +1374,2825,7,2,f +1374,2838c01,7,1,f +1374,2847c01,7,1,f +1374,2983,7,4,f +1374,3001,4,3,f +1374,3003,4,2,f +1374,3004,4,6,f +1374,3022,7,2,f +1374,3023,7,24,f +1374,3033,7,3,f +1374,3043,4,3,f +1374,3460,7,4,f +1374,3482,7,6,f +1374,3623,7,4,f +1374,3647,7,4,f +1374,3647,7,1,t +1374,3648a,7,3,f +1374,3649,7,2,f +1374,3650c,7,2,f +1374,3651,7,2,f +1374,3666,7,4,f +1374,3673,7,6,f +1374,3700,4,12,f +1374,3701,4,4,f +1374,3702,4,4,f +1374,3703,4,4,f +1374,3704,0,2,f +1374,3705,0,2,f +1374,3706,0,7,f +1374,3707,0,3,f +1374,3708,0,1,f +1374,3709,4,4,f +1374,3709,7,4,f +1374,3710,7,6,f +1374,3711a,0,2,t +1374,3711a,0,30,f +1374,3713,7,10,f +1374,3713,7,1,t +1374,3737,0,1,f +1374,3738,7,2,f +1374,3743,7,2,f +1374,3749,7,2,f +1374,3795,7,3,f +1374,3894,4,4,f +1374,3895,4,4,f +1374,3941,4,2,f +1374,4019,7,2,f +1374,4143,7,4,f +1374,4162,7,2,f +1374,4185,7,5,f +1374,4265b,7,10,f +1374,4265b,7,1,t +1374,4274,7,1,t +1374,4274,7,8,f +1374,4519,0,2,f +1374,4716,0,1,f +1374,5306bc162,0,1,f +1374,6536,7,2,f +1374,6538a,7,4,f +1374,6573,8,1,f +1374,6575,7,2,f +1374,70496,0,1,f +1374,71082,47,1,f +1374,71509,0,2,t +1374,71509,0,4,f +1374,73090b,0,1,f +1374,85544,7,2,f +1374,85544,7,1,t +1374,85545,1,1,t +1374,85545,1,1,f +1374,85546,14,1,f +1374,9607b1,9999,1,f +1374,9607b10,9999,1,f +1374,9607b11,9999,1,f +1374,9607b12,9999,1,f +1374,9607b13,9999,1,f +1374,9607b14,9999,1,f +1374,9607b15,9999,1,f +1374,9607b2,9999,1,f +1374,9607b3,9999,1,f +1374,9607b4,9999,1,f +1374,9607b5,9999,1,f +1374,9607b6,9999,1,f +1374,9607b7,9999,1,f +1374,9607b8,9999,1,f +1374,9607b9,9999,1,f +1374,9607bc,9999,1,f +1374,9607bm,9999,1,f +1374,bin01,4,1,f +1374,rb00168,0,2,f +1374,rb00168,0,2,t +1374,rb00169,0,1,t +1374,rb00169,0,8,f +1375,2524,6,2,f +1375,2526,14,1,t +1375,2526,14,1,f +1375,2526,1,1,f +1375,2526,1,1,t +1375,2528pb01,0,1,f +1375,2528pb02,15,1,f +1375,2530,8,1,t +1375,2530,8,2,f +1375,2542,4,2,f +1375,2543,1,1,f +1375,2543,4,1,f +1375,2544,6,2,f +1375,2545,0,2,f +1375,2561,6,2,f +1375,2562,6,2,f +1375,3068bp30,15,1,f +1375,57503,334,2,f +1375,57504,334,2,f +1375,57505,334,2,f +1375,57506,334,2,f +1375,87692,15,1,f +1375,87693,15,1,f +1375,87694,15,1,f +1377,3041,6,25,f +1379,27bc01,4,4,f +1379,3001a,0,1,f +1379,3003,0,10,f +1379,3004,0,2,f +1379,3005,14,4,f +1379,3009,14,6,f +1379,3010,14,8,f +1379,3020,0,30,f +1379,3021,14,4,f +1379,3021,0,4,f +1379,3022,0,4,f +1379,3023,14,28,f +1379,3027,7,1,f +1379,3034,15,4,f +1379,3035,7,2,f +1379,3192,1,4,f +1379,3193,1,4,f +1379,811,2,1,f +1379,ftoakh,2,2,f +1380,2335px3,4,2,f +1380,2343,14,2,f +1380,2357,8,2,f +1380,2420,0,4,f +1380,2420,4,2,f +1380,2456,8,1,f +1380,2458,6,1,f +1380,2540,0,2,f +1380,2543,0,1,f +1380,2561,0,1,f +1380,3004,8,3,f +1380,3004,6,1,f +1380,3005,8,1,f +1380,3007,0,1,f +1380,3009,8,1,f +1380,3010,8,1,f +1380,30136,6,2,f +1380,30137,8,3,f +1380,30153,42,1,f +1380,30173a,0,1,f +1380,30173a,7,1,f +1380,30175,0,1,f +1380,30176,2,6,f +1380,30177,0,1,f +1380,30224,7,2,f +1380,3023,7,2,f +1380,3039,7,2,f +1380,3062b,6,2,f +1380,3062b,4,13,f +1380,32000,0,4,f +1380,3297,0,2,f +1380,3626bpx5,14,1,f +1380,3626bpx8,14,1,f +1380,3626bpx9,14,1,f +1380,3684,0,2,f +1380,3710,8,1,f +1380,3839b,7,1,f +1380,3848,7,1,f +1380,3849,6,3,f +1380,3865,2,1,f +1380,3940b,8,1,f +1380,3957a,7,1,f +1380,4070,4,2,f +1380,4085c,0,4,f +1380,4085c,4,2,f +1380,4460a,8,4,f +1380,4497,6,2,f +1380,4589,0,2,f +1380,6083,8,1,f +1380,6141,36,2,f +1380,6541,0,1,f +1380,970c00,0,1,f +1380,970x021,0,1,f +1380,970x026,4,1,f +1380,973px11c01,0,1,f +1380,973px14c01,4,1,f +1380,973px15c01,4,1,f +1380,x65,47,1,f +1380,x66px1,47,2,f +1381,2412b,0,1,f +1381,2436,0,2,f +1381,3023,4,1,f +1381,3031,4,1,f +1381,30602,72,1,f +1381,3068b,0,1,f +1381,3795,0,1,f +1381,50943,72,1,f +1381,50944pr0001,0,4,f +1381,50947,0,4,f +1381,50949,0,1,f +1381,50951,0,4,f +1381,6141,14,2,t +1381,6141,14,4,f +1381,6157,0,2,f +1384,236ac01,1,2,f +1384,3004,47,4,f +1384,3004,14,6,f +1384,3004p50,4,1,f +1384,3005,47,2,f +1384,3005,14,2,f +1384,3008,14,1,f +1384,3009,14,1,f +1384,3009,47,1,f +1384,3010,47,1,f +1384,3010,14,4,f +1384,3020,4,2,f +1384,3020,14,5,f +1384,3023,14,2,f +1384,3023,4,4,f +1384,3034,14,1,f +1384,3035,7,1,f +1384,3062a,4,2,f +1384,3149c01,4,4,f +1384,468c01,1,1,f +1384,498,0,2,f +1384,564c01,1,1,f +1384,7039b,4,4,f +1384,711,14,1,f +1384,x466,15,1,f +1386,298c02,71,1,f +1386,298c02,71,1,t +1386,3023,70,1,f +1386,3023,72,1,f +1386,3069b,70,2,f +1386,3666,70,2,f +1386,4595,71,1,f +1386,54200,40,1,t +1386,54200,40,2,f +1386,6141,57,1,t +1386,6141,57,1,f +1387,2340,0,2,f +1387,2340,4,2,f +1387,2342,0,1,f +1387,2343,7,2,f +1387,2412a,0,2,f +1387,2412a,4,1,f +1387,2419,4,4,f +1387,2431,4,2,f +1387,2432,0,4,f +1387,2433,0,1,f +1387,2434,4,1,f +1387,2446,0,1,f +1387,2447,42,1,f +1387,2447,42,1,t +1387,2450,4,2,f +1387,2452,4,2,f +1387,2460,0,1,f +1387,2465,0,2,f +1387,2507,42,1,f +1387,2516,0,1,f +1387,2540,7,3,f +1387,2555,7,1,f +1387,2569,42,3,f +1387,2582p68,7,2,f +1387,2607,4,1,f +1387,2609,0,1,f +1387,298c03,0,2,f +1387,298c03,0,1,t +1387,3002,4,1,f +1387,3004,0,2,f +1387,3004,4,2,f +1387,3005,0,2,f +1387,3020,4,1,f +1387,3022,0,1,f +1387,3022,7,1,f +1387,3023,4,5,f +1387,3023,0,3,f +1387,3024,4,2,f +1387,3024,0,2,f +1387,3031,4,1,f +1387,3034,0,3,f +1387,3035,4,1,f +1387,3036,0,1,f +1387,3039,4,2,f +1387,3039p05,4,1,f +1387,3039p68,4,2,f +1387,3068b,4,1,f +1387,3068bp68,4,2,f +1387,3069b,4,3,f +1387,3069b,0,2,f +1387,3069bp68,15,1,f +1387,3479,0,2,f +1387,3626apr0001,14,1,f +1387,3633,0,1,f +1387,3665,4,4,f +1387,3666,4,6,f +1387,3679,7,1,f +1387,3680,7,1,f +1387,3710,4,1,f +1387,3710,7,2,f +1387,3794a,4,2,f +1387,3832,4,1,f +1387,3838,0,1,f +1387,3937,0,4,f +1387,3937,4,1,f +1387,3938,0,1,f +1387,3938,4,4,f +1387,3962a,0,1,f +1387,4006,0,1,f +1387,4032a,0,4,f +1387,4070,4,4,f +1387,4070,0,2,f +1387,4081b,0,1,f +1387,4085c,0,6,f +1387,4229,0,2,f +1387,4275b,4,1,f +1387,4276b,0,1,f +1387,4276b,4,1,f +1387,4287,4,1,f +1387,4315,4,3,f +1387,4345a,4,1,f +1387,4346p68,7,1,f +1387,4475,0,1,f +1387,4522,0,1,f +1387,4531,0,1,f +1387,4588,42,1,f +1387,4589,4,1,f +1387,4589,42,6,f +1387,4589,0,3,f +1387,4590,0,1,f +1387,4595,7,2,f +1387,4595,0,2,f +1387,4733,0,1,f +1387,4735,0,3,f +1387,4740,42,2,f +1387,4854,4,1,f +1387,4855,4,1,f +1387,4859,4,1,f +1387,4859,7,1,f +1387,4871,4,2,f +1387,6019,0,2,f +1387,6141,4,2,f +1387,73092,0,2,f +1387,73590c01a,0,2,f +1387,970x026,15,1,f +1387,973p68c01,4,1,f +1388,10113,0,1,f +1388,11055,4,1,f +1388,11458,72,2,f +1388,13547,4,2,f +1388,13731,0,4,f +1388,15553pr0001,0,1,f +1388,2357,70,2,f +1388,2412b,71,2,f +1388,2412b,0,6,f +1388,2420,0,2,f +1388,2420,14,6,f +1388,2431,14,2,f +1388,2432,14,4,f +1388,2436,14,2,f +1388,2445,0,4,f +1388,2460,0,6,f +1388,2540,0,2,f +1388,2540,71,3,f +1388,2653,71,4,f +1388,2654,47,2,f +1388,2723,0,2,f +1388,2780,0,4,f +1388,2877,0,2,f +1388,3001,0,2,f +1388,3001,72,1,f +1388,3001,27,1,f +1388,3004,71,1,f +1388,3004,14,4,f +1388,3005,27,6,f +1388,3007,71,1,f +1388,3010,0,1,f +1388,3020,4,1,f +1388,3020,71,2,f +1388,3020,14,1,f +1388,3020,27,1,f +1388,3021,71,1,f +1388,3021,14,2,f +1388,3022,27,4,f +1388,3023,19,3,f +1388,3023,46,20,f +1388,3023,70,2,f +1388,3024,36,4,f +1388,3024,34,4,f +1388,3031,0,2,f +1388,3032,4,1,f +1388,3035,71,1,f +1388,3035,0,1,f +1388,30355,0,1,f +1388,30356,0,1,f +1388,3036,72,1,f +1388,30363,0,2,f +1388,30363,70,1,f +1388,30367cpr0020,15,2,f +1388,30374,71,3,f +1388,3062b,71,12,f +1388,3062b,15,6,f +1388,3069b,0,2,f +1388,3069b,27,3,f +1388,3069b,70,1,f +1388,3069bpr0101,71,1,f +1388,32013,71,2,f +1388,32028,14,10,f +1388,32062,4,1,f +1388,32063,71,1,f +1388,32064b,14,1,f +1388,32065,0,2,f +1388,32291,71,1,f +1388,32523,71,4,f +1388,32530,72,4,f +1388,3460,72,3,f +1388,3622,0,2,f +1388,3626bpr0896,78,1,f +1388,3626cpr1289,78,1,f +1388,3626cpr1290,78,1,f +1388,3626cpr1291,15,1,f +1388,3626cpr1314,78,1,f +1388,3660,72,2,f +1388,3665,72,2,f +1388,3665,4,2,f +1388,3666,72,3,f +1388,3673,71,4,f +1388,3700,72,2,f +1388,3701,71,4,f +1388,3702,0,2,f +1388,3705,0,2,f +1388,3710,14,2,f +1388,3710,27,2,f +1388,3710,0,2,f +1388,3713,71,2,f +1388,3794b,19,2,f +1388,3794b,2,2,f +1388,3794b,72,8,f +1388,3795,72,5,f +1388,3795,14,5,f +1388,3829c01,14,1,f +1388,3832,4,1,f +1388,3833,14,1,f +1388,3894,72,2,f +1388,3937,72,1,f +1388,3938,71,1,f +1388,3941,4,2,f +1388,3941,71,1,f +1388,3960pr20,15,2,f +1388,4032a,71,2,f +1388,4032a,19,3,f +1388,4070,70,2,f +1388,4081b,0,2,f +1388,4162,0,8,f +1388,4176,47,2,f +1388,41879a,0,1,f +1388,42022,0,4,f +1388,42023,14,2,f +1388,4274,1,4,f +1388,4287,0,8,f +1388,43093,1,2,f +1388,4349,0,1,f +1388,43722,0,4,f +1388,43723,0,4,f +1388,44728,71,1,f +1388,4477,0,2,f +1388,4510,71,2,f +1388,47455,0,1,f +1388,48169,72,1,f +1388,48170,72,1,f +1388,4864b,47,2,f +1388,4868b,71,2,f +1388,48989,71,1,f +1388,50451,0,1,f +1388,50950,0,4,f +1388,50950,4,2,f +1388,52031,2,2,f +1388,54200,4,4,f +1388,54200,14,2,f +1388,54200,46,10,f +1388,54383,0,2,f +1388,54384,0,2,f +1388,55706,0,1,f +1388,55817,85,2,f +1388,56630,30,1,f +1388,56630,0,1,f +1388,58176,182,2,f +1388,59900,182,4,f +1388,60592,0,4,f +1388,60601,47,4,f +1388,60897,71,6,f +1388,6091,27,8,f +1388,61184,71,4,f +1388,61409,72,6,f +1388,6141,15,4,f +1388,6141,47,2,f +1388,6141,4,4,f +1388,61506,85,1,f +1388,6153b,0,1,f +1388,6187,0,2,f +1388,6232,71,4,f +1388,62462,0,1,f +1388,6249,72,1,f +1388,62810,0,1,f +1388,63864,0,2,f +1388,63965,0,1,f +1388,64711,25,4,f +1388,64711,72,2,f +1388,6553,72,1,f +1388,6558,1,2,f +1388,6564,71,1,f +1388,6565,71,1,f +1388,6636,71,1,f +1388,6636,0,2,f +1388,73983,72,4,f +1388,85943,72,1,f +1388,85984,0,2,f +1388,87620,14,2,f +1388,88930,0,2,f +1388,92280,71,2,f +1388,92579,40,1,f +1388,92585,4,1,f +1388,92593,0,4,f +1388,92946,0,4,f +1388,93274,71,2,f +1388,970c00,0,2,f +1388,970c00,85,2,f +1388,973pr0295c01,4,1,f +1388,973pr0296c01,0,1,f +1388,973pr0297c01,85,1,f +1388,973pr0298c01,25,1,f +1388,973pr1961c01,0,1,f +1388,98721,0,2,f +1388,99464,14,1,f +1388,99780,72,4,f +1388,99781,71,2,f +1389,32087,8,1,f +1390,2412b,0,6,f +1390,2431,4,8,f +1390,2878c01,0,4,f +1390,2920,0,2,f +1390,2921,1,8,f +1390,3005,1,8,f +1390,30136,1,6,f +1390,3020,0,2,f +1390,3023,4,12,f +1390,3023,47,10,f +1390,3031,0,2,f +1390,3034,8,2,f +1390,30414,0,2,f +1390,3062b,0,16,f +1390,3068b,4,2,f +1390,3069b,4,4,f +1390,3069bpa1,0,2,f +1390,32083,0,6,f +1390,3623,8,1,f +1390,3666,1,18,f +1390,3710,1,2,f +1390,3795,0,2,f +1390,3795,7,2,f +1390,3861b,1,2,f +1390,4022,0,2,f +1390,4025,0,2,f +1390,4035,1,14,f +1390,4036,41,14,f +1390,4079,6,4,f +1390,4490,8,1,f +1390,4510,0,6,f +1390,4589,0,4,f +1390,6112,0,2,f +1390,6141,0,1,t +1390,6141,0,8,f +1390,6141,36,1,f +1390,6141,36,1,t +1390,6583,0,2,f +1390,6584,0,1,f +1390,73092,0,2,f +1391,3626bpr0924,78,1,f +1391,57900,71,1,f +1391,970x026,72,1,f +1391,973pr1566c01,72,1,f +1392,3002,1,1,f +1392,3007,1,1,f +1392,3009,14,2,f +1392,3020,14,1,f +1392,3034,4,1,f +1392,3039,47,1,f +1392,3039,4,1,f +1392,3298,4,2,f +1392,3298p13,4,1,f +1392,3747b,1,1,f +1392,3795,14,2,f +1392,4730,1,1,f +1392,4745,14,1,f +1393,2343,0,2,f +1393,2412b,72,5,f +1393,2412b,71,6,f +1393,2431,15,2,f +1393,2431,72,4,f +1393,2445,71,2,f +1393,2454a,72,2,f +1393,2456,4,4,f +1393,2458,72,4,f +1393,2736,71,1,f +1393,2780,0,2,f +1393,2780,0,1,t +1393,2817,4,2,f +1393,2817,71,2,f +1393,2877,72,25,f +1393,3001,71,2,f +1393,3001,72,1,f +1393,3003,71,10,f +1393,3004,71,6,f +1393,3004,320,10,f +1393,3005,71,2,f +1393,3005,72,10,f +1393,3006,0,1,f +1393,3007,71,2,f +1393,3009,72,1,f +1393,3010,72,4,f +1393,3010,0,1,f +1393,3010,71,4,f +1393,3020,320,2,f +1393,3020,28,6,f +1393,3020,0,1,f +1393,3020,72,4,f +1393,3021,72,11,f +1393,3021,71,4,f +1393,3022,71,4,f +1393,3022,0,11,f +1393,3023,72,2,f +1393,3023,28,10,f +1393,3023,320,8,f +1393,3023,0,5,f +1393,3024,320,2,f +1393,3029,72,1,f +1393,3030,72,1,f +1393,3032,72,2,f +1393,3034,72,3,f +1393,3034,71,9,f +1393,3035,0,6,f +1393,30355,320,2,f +1393,30356,320,2,f +1393,3036,71,2,f +1393,30374,52,1,f +1393,30374,36,1,f +1393,30374,35,2,f +1393,30374,41,2,f +1393,30414,0,1,f +1393,30503,15,2,f +1393,30503,0,2,f +1393,30504,72,4,f +1393,30526,1,2,f +1393,30562,47,2,f +1393,30565,72,2,f +1393,3062b,71,14,f +1393,3068b,71,3,f +1393,3069b,72,2,f +1393,3069b,15,1,f +1393,3069b,0,3,f +1393,3069b,71,11,f +1393,3069b,41,6,f +1393,3069bpr0070,0,1,f +1393,32000,14,2,f +1393,32013,4,1,f +1393,32028,15,2,f +1393,32039,0,3,f +1393,32062,4,1,f +1393,32064a,71,3,f +1393,32556,19,2,f +1393,3297,71,1,f +1393,3460,72,3,f +1393,3622,72,2,f +1393,3623,4,1,f +1393,3623,72,10,f +1393,3623,320,4,f +1393,3626bpr0650,70,1,f +1393,3626bpr1045,70,1,f +1393,3626cpr1043,78,1,f +1393,3626cpr1046,78,1,f +1393,3626cpr1047,78,1,f +1393,3665,0,2,f +1393,3666,320,1,f +1393,3666,72,2,f +1393,3679,71,2,f +1393,3680,0,2,f +1393,3700,72,12,f +1393,3700,15,3,f +1393,3700,4,4,f +1393,3701,71,2,f +1393,3702,71,9,f +1393,3710,320,1,f +1393,3710,15,2,f +1393,3710,72,1,f +1393,3710,28,5,f +1393,3710,71,7,f +1393,3795,72,3,f +1393,3795,0,1,f +1393,3830,320,4,f +1393,3831,320,4,f +1393,3941,1,1,f +1393,3960,71,3,f +1393,4032a,71,2,f +1393,4070,72,2,f +1393,4070,14,2,f +1393,4070,320,6,f +1393,4081b,0,2,f +1393,4081b,72,2,f +1393,4150,0,1,f +1393,4162,72,4,f +1393,4162,71,3,f +1393,41769,320,2,f +1393,41770,320,2,f +1393,4274,1,2,f +1393,4274,1,1,t +1393,4287,0,2,f +1393,43093,1,2,f +1393,43898,72,5,f +1393,44294,71,1,f +1393,4460b,0,2,f +1393,4510,71,1,f +1393,4519,71,1,f +1393,45590,0,1,f +1393,4740,47,5,f +1393,4740,71,2,f +1393,48336,71,2,f +1393,4865b,4,2,f +1393,4871,71,2,f +1393,4871,0,2,f +1393,50231,70,5,f +1393,50950,71,2,f +1393,50950,320,4,f +1393,54200,0,2,f +1393,54200,0,1,t +1393,57901pr0001,378,1,f +1393,58176,143,2,f +1393,58846,15,2,f +1393,59233pat0001,41,2,f +1393,59349,47,2,f +1393,59426,72,2,f +1393,59443,0,1,f +1393,59900,297,18,f +1393,59900,0,2,f +1393,60474,71,5,f +1393,60479,71,1,f +1393,60481,15,1,f +1393,60481,71,2,f +1393,6091,320,2,f +1393,6091,15,2,f +1393,6091,71,4,f +1393,6106,71,4,f +1393,61183,308,1,f +1393,61184,71,2,f +1393,6141,71,8,f +1393,6141,0,3,t +1393,6141,0,11,f +1393,6141,72,1,t +1393,6141,297,6,f +1393,6141,47,2,t +1393,6141,47,20,f +1393,6141,72,2,f +1393,6141,71,1,t +1393,6141,297,1,t +1393,61678,0,2,f +1393,61678,71,2,f +1393,6179,72,1,f +1393,6232,15,1,f +1393,63864,72,2,f +1393,63864,15,1,f +1393,63864,71,2,f +1393,64567,80,5,f +1393,64567,297,1,f +1393,6541,15,4,f +1393,6541,0,4,f +1393,6541,71,2,f +1393,6553,71,2,f +1393,6558,1,3,f +1393,6636,71,5,f +1393,85080,71,10,f +1393,85863,297,2,f +1393,85984,72,9,f +1393,87580,71,2,f +1393,92279,47,1,f +1393,92280,15,2,f +1393,92744pr0001,78,1,f +1393,92760pr0002,0,1,f +1393,92950,72,2,f +1393,92950,0,1,f +1393,9526stk01,9999,1,t +1393,96874,25,1,t +1393,970c00,28,1,f +1393,970c00,320,1,f +1393,970c00,70,1,f +1393,970c00,0,1,f +1393,970c00,19,1,f +1393,970c00pr0304,308,1,f +1393,973pr1316c01,70,1,f +1393,973pr1459c01,28,1,f +1393,973pr1997c01,0,1,f +1393,973pr2135c01,19,1,f +1393,973pr2137c01,308,1,f +1393,973pr2138c01,320,1,f +1393,98138,36,2,f +1393,98138,36,1,t +1394,11403pr0001c01,5,1,f +1394,11477,31,4,f +1394,11477,71,4,f +1394,11816pr0013,78,1,f +1394,2341,15,2,f +1394,2412b,71,2,f +1394,2431,27,3,f +1394,3020,19,2,f +1394,3023,4,3,f +1394,3023,71,2,f +1394,3024,30,4,f +1394,3024,30,1,t +1394,3069b,14,2,f +1394,3623,1,2,f +1394,3666,30,6,f +1394,3710,14,4,f +1394,3795,0,2,f +1394,4081b,15,2,f +1394,4488,71,4,f +1394,50745,15,4,f +1394,6014b,15,4,f +1394,6141,182,2,f +1394,6141,46,1,t +1394,6141,36,1,t +1394,6141,182,1,t +1394,6141,36,2,f +1394,6141,46,2,f +1394,62360,47,1,f +1394,87697,0,4,f +1394,88930,31,2,f +1394,92258,226,1,f +1394,92456pr0040c01,78,1,f +1394,93095,15,2,f +1394,93274,0,2,f +1398,3002,15,1,f +1398,3003,15,1,f +1398,3004,15,1,f +1398,3004,72,1,f +1398,3020,15,1,f +1398,3021,15,12,f +1398,3021,0,2,f +1398,3022,15,1,f +1398,3023,0,1,f +1398,3023,15,18,f +1398,3024,72,1,f +1398,3024,15,8,f +1398,3024,0,2,f +1398,3460,15,2,f +1398,3622,15,1,f +1398,3622,72,1,f +1398,3623,0,4,f +1398,3623,15,19,f +1398,3666,15,3,f +1398,3710,15,12,f +1399,2339,72,4,f +1399,2412b,71,8,f +1399,2412b,4,6,f +1399,2420,4,6,f +1399,2431,71,2,f +1399,2432,4,3,f +1399,2456,72,2,f +1399,2458,72,2,f +1399,2460,72,1,f +1399,2540,72,1,f +1399,2555,4,3,f +1399,2654,47,5,f +1399,2743,72,2,f +1399,2780,0,17,f +1399,2780,0,3,t +1399,298c02,0,2,t +1399,298c02,0,3,f +1399,3001,72,1,f +1399,3001,4,1,f +1399,3002,72,1,f +1399,30029,0,1,f +1399,3003,72,9,f +1399,30031,0,1,f +1399,3004,72,4,f +1399,3005,4,4,f +1399,30088,0,4,f +1399,30099,72,4,f +1399,3010,4,6,f +1399,30165,4,2,f +1399,3020,0,9,f +1399,3021,71,5,f +1399,3023,71,6,f +1399,3024,4,2,f +1399,3032,0,2,f +1399,3034,0,1,f +1399,30350b,4,4,f +1399,30367b,27,2,f +1399,30367b,0,2,f +1399,3039,4,2,f +1399,3039,72,3,f +1399,3039pr0002,15,1,f +1399,3039pr0014,0,1,f +1399,30414,4,1,f +1399,30414,72,6,f +1399,3043,0,2,f +1399,30526,1,1,f +1399,30602,35,1,f +1399,3062b,27,4,f +1399,30663,0,6,f +1399,3070b,36,1,t +1399,3070b,34,1,t +1399,3070b,34,1,f +1399,3070b,36,1,f +1399,32000,4,9,f +1399,32013,72,2,f +1399,32013,0,2,f +1399,32014,0,2,f +1399,32028,0,2,f +1399,32039,71,3,f +1399,32062,4,2,f +1399,32524,0,1,f +1399,3308,72,2,f +1399,3475b,72,2,f +1399,3622,71,4,f +1399,3623,72,2,f +1399,3626bpr0630,71,1,f +1399,3626bpr0640,14,1,f +1399,3626bpr0641,14,1,f +1399,3626bpr0642,14,1,f +1399,3660,72,3,f +1399,3660,4,2,f +1399,3666,4,10,f +1399,3678b,4,1,f +1399,3700,4,1,f +1399,3700,0,1,f +1399,3747b,72,1,f +1399,3749,19,3,f +1399,3794b,4,7,f +1399,3795,72,3,f +1399,3832,72,4,f +1399,3937,1,3,f +1399,3941,27,1,f +1399,4006,0,1,f +1399,4032a,71,10,f +1399,40378,0,1,f +1399,4081b,72,4,f +1399,4162,71,2,f +1399,4274,71,8,f +1399,4274,71,2,t +1399,4282,72,1,f +1399,4287,4,2,f +1399,4287,72,2,f +1399,4289,72,1,f +1399,43093,1,3,f +1399,43712,0,2,f +1399,43712,4,2,f +1399,43722,4,2,f +1399,43723,4,2,f +1399,44301a,72,2,f +1399,44302a,4,2,f +1399,44728,0,11,f +1399,4519,71,4,f +1399,4522,0,1,f +1399,45301,4,1,f +1399,47457,297,1,f +1399,47458,0,2,f +1399,47720,71,2,f +1399,48336,4,6,f +1399,4855,15,2,f +1399,4858,4,1,f +1399,4865a,72,2,f +1399,48729a,72,2,f +1399,48729a,72,1,t +1399,50949,0,1,f +1399,50950,4,2,f +1399,50986,35,1,f +1399,52107,0,1,f +1399,53451,15,1,f +1399,53451,15,1,t +1399,53989,148,2,f +1399,54200,47,1,t +1399,54200,47,2,f +1399,54383,72,2,f +1399,54384,72,2,f +1399,55236,21,2,f +1399,57792,4,2,f +1399,58176,35,10,f +1399,59275,27,6,f +1399,59443,0,2,f +1399,6041,135,4,f +1399,60477,4,2,f +1399,6087,71,1,f +1399,6091,4,3,f +1399,6106,0,2,f +1399,61072,0,1,f +1399,6118,4,4,f +1399,61184,71,4,f +1399,6134,71,3,f +1399,61345,4,2,f +1399,61409,27,2,f +1399,61409,72,7,f +1399,6141,47,4,f +1399,6141,27,4,t +1399,6141,71,1,t +1399,6141,71,6,f +1399,6141,47,2,t +1399,6141,27,14,f +1399,61678,4,3,f +1399,6178,4,1,f +1399,6215,4,1,f +1399,62462,71,5,f +1399,63864,4,3,f +1399,64392,4,1,f +1399,64682,4,1,f +1399,6636,72,4,f +1399,73983,71,8,f +1399,852906,89,1,f +1399,85940,0,2,f +1399,85970,4,2,f +1399,87087,72,8,f +1399,87748pr0002,35,1,f +1399,87751,135,1,f +1399,87754,72,3,f +1399,87758pr01,272,1,f +1399,89159,35,3,f +1399,92290,297,1,f +1399,970c00,272,1,f +1399,970c00pr0145,72,3,f +1399,973pr1555c01,272,1,f +1399,973pr1557c01,72,3,f +1402,2348a,47,1,f +1402,2349a,15,1,f +1402,251,0,1,f +1402,2815,0,2,f +1402,3004,4,3,f +1402,3004,0,1,f +1402,3004p06,4,1,f +1402,3009,15,1,f +1402,3009,4,4,f +1402,3010,4,2,f +1402,3020,1,1,f +1402,3020,0,2,f +1402,3020,15,3,f +1402,3020,4,1,f +1402,3021,0,1,f +1402,3022,4,3,f +1402,3022,15,1,f +1402,3022,0,1,f +1402,3023,1,2,f +1402,3023,4,3,f +1402,3023,15,4,f +1402,3024,36,4,f +1402,3024,4,2,f +1402,3024,15,2,f +1402,3024,47,2,f +1402,3040b,15,2,f +1402,3068b,4,2,f +1402,3069b,0,1,f +1402,3188,4,1,f +1402,3189,4,1,f +1402,3622,4,2,f +1402,3623,4,2,f +1402,3626apr0001,14,1,f +1402,3641,0,4,f +1402,3666,15,2,f +1402,3679,7,1,f +1402,3700,1,2,f +1402,3710,4,6,f +1402,3710,15,4,f +1402,3730,0,1,f +1402,3731,0,1,f +1402,3749,7,2,f +1402,3788,15,2,f +1402,3788,4,1,f +1402,3795,0,1,f +1402,3821,4,1,f +1402,3822,4,1,f +1402,3823,47,1,f +1402,3829c01,15,1,f +1402,3833,0,1,f +1402,4070,0,2,f +1402,4070,4,2,f +1402,4081a,1,2,f +1402,4084,0,4,f +1402,4162,15,2,f +1402,4185,47,2,f +1402,4211,4,1,f +1402,4212b,15,1,f +1402,4213,4,1,f +1402,4214,4,1,f +1402,4275b,15,2,f +1402,4276b,4,2,f +1402,4315,15,1,f +1402,4491a,1,1,f +1402,4493c01pb02,0,1,f +1402,4587,1,1,f +1402,4600,0,4,f +1402,4624,15,8,f +1402,4625,15,1,f +1402,4857,15,1,f +1402,4858,15,1,f +1402,4859,15,2,f +1402,4861,15,2,f +1402,4864a,15,4,f +1402,970c00,7,1,f +1402,973p23c01,14,1,f +1405,122c02,0,4,f +1405,2340p90,1,1,f +1405,2399,1,1,f +1405,2419,1,2,f +1405,2420,1,4,f +1405,2433,0,2,f +1405,298c02,0,2,f +1405,3004,15,1,f +1405,3004,1,2,f +1405,3004,0,2,f +1405,3021,1,1,f +1405,3023,15,2,f +1405,3023,1,5,f +1405,3023,0,2,f +1405,3024,36,2,f +1405,3024,46,4,f +1405,3040b,1,2,f +1405,3062b,0,2,f +1405,3062b,1,1,f +1405,3062b,15,1,f +1405,3068b,0,1,f +1405,3626apr0001,14,1,f +1405,3639,1,1,f +1405,3640,1,1,f +1405,3710,1,5,f +1405,3794a,15,5,f +1405,3795,1,1,f +1405,3838,15,1,f +1405,3839b,15,2,f +1405,3842b,15,1,f +1405,3941,15,1,f +1405,3957a,36,4,f +1405,3960,15,2,f +1405,3962a,0,1,f +1405,3963,15,2,f +1405,4006,0,1,f +1405,4084,0,8,f +1405,4085b,0,2,f +1405,4276b,1,2,f +1405,4282,1,1,f +1405,4476b,1,2,f +1405,4588,36,1,f +1405,4590,1,3,f +1405,4595,0,4,f +1405,4595,1,1,f +1405,4740,15,4,f +1405,4740,36,2,f +1405,73983,1,4,f +1405,970c00,15,1,f +1405,973p90c05,15,1,f +1406,122c01,0,4,f +1406,16542,7,2,f +1406,3001,4,3,f +1406,3004,0,2,f +1406,3004,4,46,f +1406,3005,4,12,f +1406,3008,0,2,f +1406,3009,1,2,f +1406,3009,4,14,f +1406,3010,0,2,f +1406,3010,4,15,f +1406,3020,0,1,f +1406,3021,0,11,f +1406,3021,4,3,f +1406,3022,0,4,f +1406,3022,4,2,f +1406,3023,0,2,f +1406,3023,4,13,f +1406,3024,46,4,f +1406,3024,33,4,f +1406,3024,36,4,f +1406,3024,0,3,f +1406,3024,4,8,f +1406,3030,0,2,f +1406,3031,4,1,f +1406,3031,7,1,f +1406,3032,0,2,f +1406,3033,4,1,f +1406,3039p34,1,1,f +1406,3040b,0,1,f +1406,3068b,4,1,f +1406,3068b,15,1,f +1406,3149c01,4,1,f +1406,3403c01,4,1,f +1406,3456,0,1,f +1406,3460,0,1,f +1406,3470,2,1,f +1406,3622,4,4,f +1406,3622,0,2,f +1406,3625,0,1,f +1406,3626apr0001,14,4,f +1406,3633,4,2,f +1406,3641,0,4,f +1406,3660,4,2,f +1406,3666,0,4,f +1406,3666,4,4,f +1406,3679,7,2,f +1406,3680,1,2,f +1406,3710,0,3,f +1406,3710,4,6,f +1406,3741,2,2,f +1406,3742,14,2,t +1406,3742,14,6,f +1406,3788,4,2,f +1406,3794a,0,1,f +1406,3795,0,2,f +1406,3795,4,2,f +1406,3821p09,4,2,f +1406,3822p09,4,2,f +1406,3823,47,2,f +1406,3829c01,7,2,f +1406,3832,4,8,f +1406,3832,0,6,f +1406,3834,0,3,f +1406,3835,7,2,f +1406,3838,7,1,f +1406,3853,4,1,f +1406,3853,15,11,f +1406,3855a,47,11,f +1406,3856,4,2,f +1406,3861b,15,1,f +1406,3937,7,1,f +1406,3938,7,1,f +1406,3939,47,8,f +1406,3957a,7,2,f +1406,3962a,0,1,f +1406,3963,7,1,f +1406,4070,4,5,f +1406,4079,1,2,f +1406,4083,14,2,f +1406,4084,0,4,f +1406,4085a,0,3,f +1406,4175,0,2,f +1406,4207,7,2,f +1406,4208,0,2,f +1406,4209,4,2,f +1406,4211,4,2,f +1406,4212b,4,1,f +1406,4213,4,2,f +1406,4214,4,2,f +1406,4216,4,24,f +1406,4216,0,4,f +1406,4217,4,4,f +1406,4218,47,18,f +1406,4219,7,2,f +1406,6100px2,7,1,f +1406,970c00,0,4,f +1406,973p17c01,0,1,f +1406,973p21c01,0,3,f +1407,3001a,1,4,f +1407,3003,14,14,f +1407,3004,0,16,f +1407,3004,4,32,f +1407,3004,1,22,f +1407,3005,4,9,f +1407,3008,14,2,f +1407,3008,4,8,f +1407,3008,0,4,f +1407,3009,4,11,f +1407,3009,1,1,f +1407,3010,4,4,f +1407,3010,1,1,f +1407,3020,14,1,f +1407,3023,0,9,f +1407,3027,7,1,f +1407,3034,15,6,f +1407,3035,4,1,f +1407,3035,7,8,f +1407,3039,1,4,f +1407,3069b,14,2,f +1407,3139,0,4,f +1407,3144,79,1,f +1407,3176,7,1,f +1407,3228a,1,18,f +1407,3460,7,3,f +1407,3460,1,22,f +1407,3460,0,2,f +1407,3464,4,4,f +1407,3581,4,4,f +1407,3622,4,5,f +1407,3624,1,1,f +1407,3624,0,1,f +1407,3626apr0001,14,2,f +1407,3644,15,4,f +1407,3665,1,4,f +1407,3710,4,2,f +1407,3710,1,10,f +1407,3811,7,1,f +1407,3853,15,1,f +1407,3854,15,2,f +1407,3861b,15,2,f +1407,56823,0,1,f +1407,604c01,15,3,f +1407,73037,14,1,f +1407,8,1,4,f +1407,970c00,1,1,f +1407,970c00,0,1,f +1407,973c01,15,1,f +1407,973c02,4,1,f +1408,2446,14,1,f +1408,2526,4,1,f +1408,2545,0,1,f +1408,3626bp03,14,1,f +1408,3626bpr0001,14,3,f +1408,3626bpx23,14,1,f +1408,3629pw1,1,1,f +1408,3838,14,1,f +1408,3844,0,1,f +1408,3898,15,1,f +1408,970c00,15,1,f +1408,970c00,14,1,f +1408,970c00,0,3,f +1408,973p43c01,1,1,f +1408,973p90c04,14,1,f +1408,973pb0204c01,15,1,f +1408,973px3c01,15,1,f +1408,973px41c01,1,1,f +1409,2431,15,1,f +1409,32016,0,2,f +1409,32034,15,2,f +1409,32039,4,2,f +1409,32056,0,1,f +1409,32062,0,8,f +1409,32073,7,2,f +1409,32579,7,1,f +1409,3707,0,1,f +1409,3713,7,2,f +1409,3749,19,1,f +1409,41677,0,2,f +1409,4274,7,3,f +1409,43093,1,2,f +1409,43559,15,2,f +1409,43559,2,2,f +1409,43559,25,2,f +1409,43559,1,2,f +1409,43559,0,2,f +1409,43559,4,2,f +1409,44790,15,1,f +1409,44791,15,1,f +1409,44846,135,1,f +1409,44847,0,2,f +1409,44848,0,1,f +1409,44849,0,1,f +1409,44850,15,1,f +1409,44851,15,1,f +1409,44852,15,1,f +1409,44855,7,1,f +1409,45590,0,1,f +1409,6558,0,2,f +1410,3626apr0001,14,4,f +1410,3838,15,2,f +1410,3838,4,2,f +1410,3842a,15,2,f +1410,3842a,4,2,f +1410,3962a,0,2,f +1410,4006,0,2,f +1410,970c00,4,2,f +1410,970c00,15,2,f +1410,973p90c02,4,2,f +1410,973p90c05,15,2,f +1411,53989,0,2,f +1411,90609,72,4,f +1411,90617,0,4,f +1411,90626,0,1,f +1411,90639,179,2,f +1411,90639pr0016,34,1,f +1411,90640,179,3,f +1411,90652,0,1,f +1411,90661,179,2,f +1411,92199,25,1,f +1411,92201,179,1,f +1411,92222,148,2,f +1411,92228,179,1,f +1411,92235,179,2,f +1411,93277,25,1,f +1411,93575,179,2,f +1412,11090,72,1,f +1412,11477,0,4,f +1412,11477,27,2,f +1412,14417,72,3,f +1412,14418,71,2,f +1412,14704,71,3,f +1412,15209,15,1,f +1412,15456,0,2,f +1412,2412b,297,2,f +1412,2412b,0,2,f +1412,2540,15,1,f +1412,30151a,47,1,f +1412,3022,27,3,f +1412,3023,27,2,f +1412,3039,0,1,f +1412,3070b,27,1,t +1412,3070b,27,4,f +1412,32474pr1001,15,1,f +1412,3660,15,2,f +1412,4032a,15,3,f +1412,41854,15,1,f +1412,44661,0,1,f +1412,47457,15,2,f +1412,4871,15,1,f +1412,49668,0,2,f +1412,54383,15,1,f +1412,54384,15,1,f +1412,6126b,182,1,f +1412,6141,36,1,t +1412,6141,36,3,f +1412,63868,0,2,f +1412,87087,0,2,f +1412,98138,27,1,t +1412,98138,27,2,f +1412,99206,15,1,f +1412,99207,27,2,f +1414,3626apr0001,14,2,f +1414,3838,4,2,f +1414,3842a,4,2,f +1414,3962a,0,2,f +1414,970c00,4,2,f +1414,973p90c02,4,2,f +1416,2412b,71,2,f +1416,2412b,4,7,f +1416,2412b,14,2,f +1416,2456,15,1,f +1416,2458,71,3,f +1416,2460,72,1,f +1416,2479,0,2,f +1416,2508,0,1,f +1416,2877,71,1,f +1416,2926,0,4,f +1416,3001,1,2,f +1416,3001,4,4,f +1416,3001,71,2,f +1416,3001,27,2,f +1416,3002,14,2,f +1416,3002,27,2,f +1416,30027b,71,8,f +1416,30028,0,8,f +1416,3003,73,4,f +1416,3003,25,3,f +1416,3003,15,4,f +1416,3003,1,2,f +1416,3004,4,4,f +1416,3004,70,4,f +1416,3004,14,4,f +1416,3004,1,2,f +1416,3004,25,3,f +1416,3005,2,4,f +1416,3009,25,2,f +1416,3009,14,2,f +1416,3010,15,4,f +1416,3010,2,2,f +1416,3010,27,4,f +1416,3010,1,2,f +1416,3010,4,2,f +1416,3020,72,1,f +1416,3020,4,2,f +1416,3020,2,3,f +1416,3021,15,2,f +1416,3022,14,2,f +1416,3022,25,4,f +1416,3023,72,7,f +1416,30237a,15,2,f +1416,3031,4,1,f +1416,3031,2,3,f +1416,3032,0,2,f +1416,3032,4,1,f +1416,3035,4,2,f +1416,30367b,4,1,f +1416,30367b,15,4,f +1416,3039,2,8,f +1416,3039,4,2,f +1416,3039,47,2,f +1416,3039,71,2,f +1416,3039pr0013,15,1,f +1416,3040b,2,4,f +1416,30414,14,1,f +1416,30503,4,4,f +1416,3062b,46,2,f +1416,3062b,57,3,f +1416,3065,47,2,f +1416,30663,0,1,f +1416,3069b,70,4,f +1416,3622,25,2,f +1416,3624,1,1,f +1416,3626bpr0387,14,1,f +1416,3626bpr0677,14,1,f +1416,3660,2,6,f +1416,3665,25,2,f +1416,3665,71,6,f +1416,3666,4,2,f +1416,3676,72,2,f +1416,3710,4,6,f +1416,3747b,71,2,f +1416,3794b,14,2,f +1416,3821,2,1,f +1416,3822,2,1,f +1416,3823,47,1,f +1416,3829c01,1,2,f +1416,3832,0,2,f +1416,3900,15,2,f +1416,3957a,15,1,f +1416,4070,14,4,f +1416,4287,4,2,f +1416,43337,14,4,f +1416,43337,4,2,f +1416,44568,71,1,f +1416,44570,25,1,f +1416,44661,0,1,f +1416,44728,4,1,f +1416,4600,71,2,f +1416,4624,15,6,f +1416,48183,4,1,f +1416,4855,72,1,f +1416,4870,71,3,f +1416,4871,72,3,f +1416,50373,25,1,f +1416,50950,4,8,f +1416,57783,41,1,f +1416,59895,0,6,f +1416,6007,2,1,t +1416,6014b,14,4,f +1416,60700,0,4,f +1416,61345,4,2,f +1416,6141,57,1,t +1416,6141,34,2,f +1416,6141,25,4,f +1416,6141,34,1,t +1416,6141,42,1,t +1416,6141,25,1,t +1416,6141,33,1,t +1416,6141,33,4,f +1416,6141,57,5,f +1416,6141,42,4,f +1416,6215,14,2,f +1416,62810,308,1,f +1416,63082,71,1,f +1416,758c02,71,1,f +1416,87079,71,1,f +1416,970c00,25,1,f +1416,970c00,1,1,f +1416,973pr1160c01,1,1,f +1416,973pr1240c01,1,1,f +1419,3005,14,2,f +1419,3005,0,2,f +1419,3005,4,2,f +1419,3020,0,1,f +1419,3023,4,2,f +1419,3023,0,2,f +1419,3023,14,2,f +1419,3024,36,2,f +1419,3024,46,2,f +1419,3626apr0001,14,1,f +1419,3641,0,4,f +1419,3788,0,2,f +1419,3821,0,1,f +1419,3822,0,1,f +1419,3823,47,2,f +1419,3829c01,15,1,f +1419,3901,6,1,f +1419,4070,0,4,f +1419,4079,0,1,f +1419,4212b,0,1,f +1419,4213,15,1,f +1419,4315,15,1,f +1419,4600,0,2,f +1419,4624,15,4,f +1419,970c00,1,1,f +1419,973p01c01,15,1,f +1420,2346,0,4,f +1420,2357,4,4,f +1420,2357,14,4,f +1420,2412b,14,4,f +1420,2413,4,2,f +1420,2419,4,2,f +1420,2432,14,2,f +1420,2445,1,2,f +1420,2458,14,2,f +1420,2460,14,1,f +1420,2479,7,1,f +1420,2488,2,1,f +1420,2625,4,2,f +1420,30000,8,1,f +1420,3001,2,4,f +1420,3001,1,8,f +1420,3001,4,8,f +1420,3001,0,4,f +1420,3001,15,8,f +1420,3001,14,8,f +1420,3002,4,4,f +1420,3002,1,4,f +1420,3002,15,4,f +1420,3002,14,4,f +1420,3003,0,6,f +1420,3003,2,12,f +1420,3003,1,12,f +1420,3003,4,16,f +1420,3003,15,12,f +1420,3003,14,16,f +1420,3004,2,28,f +1420,3004,4,58,f +1420,3004,14,58,f +1420,3004,0,14,f +1420,3004,15,42,f +1420,3004,1,54,f +1420,3005,1,42,f +1420,3005,0,34,f +1420,3005,2,32,f +1420,3005,15,42,f +1420,3005,14,54,f +1420,3005,4,54,f +1420,3005pe1,2,2,f +1420,3005pe1,14,2,f +1420,3008,4,2,f +1420,3008,2,2,f +1420,3008,1,2,f +1420,3008,14,2,f +1420,3009,15,2,f +1420,3009,1,2,f +1420,3009,14,2,f +1420,3009,4,2,f +1420,3010,14,30,f +1420,3010,1,26,f +1420,3010,2,16,f +1420,3010,4,30,f +1420,3010,15,16,f +1420,3010p01,14,1,f +1420,3010p01,4,1,f +1420,30183,4,1,f +1420,3020,1,4,f +1420,3021,1,2,f +1420,3022,1,2,f +1420,3032,1,1,f +1420,3035,1,1,f +1420,3036,1,1,f +1420,3062b,15,8,f +1420,3149c01,1,1,f +1420,3297,4,6,f +1420,3297px3,4,4,f +1420,3298,4,4,f +1420,3298p12,4,4,f +1420,3299,4,4,f +1420,3300,4,4,f +1420,3475b,8,2,f +1420,3483,0,2,f +1420,3622,0,4,f +1420,3622,4,10,f +1420,3622,14,10,f +1420,3622,1,10,f +1420,3622,2,6,f +1420,3622,15,6,f +1420,3626bp02,14,1,f +1420,3626bpx19,14,1,f +1420,3633,14,4,f +1420,3666,0,4,f +1420,3679,7,1,f +1420,3680,1,1,f +1420,3741,2,2,f +1420,3742,15,1,t +1420,3742,15,3,f +1420,3742,4,3,f +1420,3742,4,1,t +1420,3747b,4,4,f +1420,3795,1,2,f +1420,3823,41,2,f +1420,3829c01,14,2,f +1420,3853,1,2,f +1420,3854,14,4,f +1420,3857,2,1,f +1420,3861b,14,1,f +1420,3865,2,3,f +1420,3937,4,2,f +1420,3938,7,2,f +1420,3957a,15,1,f +1420,3962b,0,1,f +1420,4070,0,4,f +1420,4079,14,2,f +1420,4116426pb01,10,1,f +1420,4175,14,2,f +1420,4286,4,4,f +1420,4287,4,4,f +1420,4485,4,1,f +1420,4495b,2,1,f +1420,4589,14,8,f +1420,6041,0,2,f +1420,6064,2,1,f +1420,6093,0,1,f +1420,6182,1,2,f +1420,6183,15,2,f +1420,6215,2,4,f +1420,6248,14,6,f +1420,6249,8,2,f +1420,970c00,4,1,f +1420,970c00,1,1,f +1420,973px2c01,1,1,f +1420,973px33c01,15,1,f +1422,10197,72,3,f +1422,10288,308,1,f +1422,11153,28,3,f +1422,11217pr0008b,15,2,f +1422,11458,72,3,f +1422,13971,71,2,f +1422,15308pr0001,15,2,f +1422,15391,0,4,f +1422,15392,72,4,f +1422,15392,72,1,t +1422,3023,28,3,f +1422,30367b,71,1,f +1422,30386,71,3,f +1422,30387,71,3,f +1422,30553,72,3,f +1422,32125,71,1,f +1422,3626cpr1149,78,4,f +1422,3941,70,1,f +1422,4032a,72,1,f +1422,44567a,72,3,f +1422,59900,36,3,f +1422,60208,72,1,f +1422,60470b,71,3,f +1422,60474,71,1,f +1422,60485,71,1,f +1422,61184,71,3,f +1422,6141,41,1,t +1422,6141,72,1,t +1422,6141,72,3,f +1422,6141,41,10,f +1422,74664,71,2,f +1422,86500,28,1,f +1422,970c00pr0637,15,2,f +1422,970c00pr0638,15,2,f +1422,973pr2620c01,15,2,f +1422,973pr2622c01,15,2,f +1426,2412b,4,2,f +1426,2412b,14,5,f +1426,2431,71,2,f +1426,2431,14,1,f +1426,2431,15,1,f +1426,3002,4,2,f +1426,3004,71,2,f +1426,3005,15,2,f +1426,3009,72,1,f +1426,3009,15,3,f +1426,3010,15,3,f +1426,3020,1,3,f +1426,3021,0,1,f +1426,3023,33,3,f +1426,3023,4,7,f +1426,3024,36,2,f +1426,3024,36,1,t +1426,3024,33,2,f +1426,30256,71,1,f +1426,3032,71,1,f +1426,3032,4,1,f +1426,3034,1,2,f +1426,3036,72,1,f +1426,30377,71,1,f +1426,30377,71,1,t +1426,30414,71,2,f +1426,3062b,4,1,f +1426,3062b,47,1,f +1426,3068b,15,1,f +1426,3069b,33,5,f +1426,3069b,15,1,f +1426,3069bpr0101,71,2,f +1426,32001,15,1,f +1426,3297,15,1,f +1426,3626bpr0314,14,1,f +1426,3626cpr0645,14,1,f +1426,3626cpr0892,14,1,f +1426,3665,15,6,f +1426,3666,4,1,f +1426,3710,4,9,f +1426,3795,4,1,f +1426,3795,72,1,f +1426,3821,15,1,f +1426,3822,15,1,f +1426,3829c01,14,1,f +1426,3832,14,2,f +1426,3901,28,1,f +1426,4070,0,3,f +1426,4070,4,1,f +1426,4079,14,2,f +1426,4150pr0022,71,1,f +1426,4282,0,1,f +1426,4286,15,2,f +1426,44728,15,3,f +1426,4477,4,4,f +1426,4488,71,4,f +1426,4599b,1,1,f +1426,46303,71,1,f +1426,4719,2,1,f +1426,4740,2,1,f +1426,48336,15,1,f +1426,48336,2,2,f +1426,48336,4,4,f +1426,49668,0,1,f +1426,50745,15,4,f +1426,50950,72,4,f +1426,54200,33,2,f +1426,54200,46,1,t +1426,54200,33,1,t +1426,54200,46,2,f +1426,58181,15,1,f +1426,59349,15,1,f +1426,6014b,71,4,f +1426,6019,4,2,f +1426,60479,15,2,f +1426,60581,15,2,f +1426,60700,0,4,f +1426,6106,71,1,f +1426,6111,15,2,f +1426,6134,71,2,f +1426,6141,71,2,f +1426,6141,34,1,t +1426,6141,34,1,f +1426,6141,47,1,f +1426,6141,33,4,f +1426,6141,36,1,t +1426,6141,36,4,f +1426,6141,46,1,f +1426,62711,0,1,f +1426,62810,484,1,f +1426,64453,41,2,f +1426,6636,14,1,f +1426,6636,15,4,f +1426,87079,71,1,f +1426,87544,15,2,f +1426,87609,15,1,f +1426,88930,15,1,f +1426,92099,15,1,f +1426,92280,0,2,f +1426,92583,41,1,f +1426,92851,47,2,f +1426,92926,2,1,f +1426,93140,15,1,f +1426,970c00,4,2,f +1426,970c00,71,1,f +1426,973pr1163c01,272,1,f +1426,973pr1914c01,4,2,f +1427,15207,72,2,f +1427,16542,14,1,f +1427,2412b,4,2,f +1427,2412b,71,13,f +1427,2431,72,1,f +1427,2431,14,2,f +1427,2432,14,1,f +1427,2436,71,1,f +1427,2447,40,1,t +1427,2447,40,1,f +1427,2456,4,1,f +1427,2456,1,2,f +1427,2540,4,3,f +1427,2569,14,1,f +1427,2569,14,1,t +1427,2780,0,1,t +1427,2780,0,8,f +1427,2877,15,2,f +1427,2926,0,2,f +1427,30000,1,10,f +1427,3001,19,1,f +1427,3004,4,11,f +1427,3004,72,2,f +1427,3004,1,1,f +1427,30043,71,1,f +1427,3005,4,10,f +1427,3005,0,1,f +1427,3009,4,11,f +1427,3010,4,1,f +1427,3022,15,8,f +1427,3023,15,15,f +1427,3023,33,2,f +1427,3023,72,4,f +1427,3023,2,7,f +1427,3023,0,1,f +1427,3023,36,2,f +1427,3023,4,1,f +1427,30236,72,6,f +1427,3024,47,1,f +1427,3028,15,1,f +1427,3031,15,2,f +1427,3032,15,1,f +1427,3032,14,1,f +1427,3033,14,2,f +1427,3034,72,2,f +1427,3035,72,1,f +1427,30357,4,2,f +1427,30391,0,8,f +1427,3040b,0,8,f +1427,30414,1,2,f +1427,30414,72,3,f +1427,3062b,14,1,f +1427,3066,40,1,f +1427,3068b,71,1,f +1427,3068bpr0136,72,1,f +1427,3069b,0,1,f +1427,3069b,33,10,f +1427,3069b,15,4,f +1427,3069bpr0030,72,1,f +1427,3070b,15,1,t +1427,3070b,15,2,f +1427,32000,71,2,f +1427,32001,15,1,f +1427,32013,71,2,f +1427,32018,71,4,f +1427,32028,15,2,f +1427,32059,15,1,f +1427,32059,4,1,f +1427,32059,14,1,f +1427,32084,4,2,f +1427,3245c,4,3,f +1427,32523,72,4,f +1427,3300,4,4,f +1427,3623,19,2,f +1427,3626bpr0386,14,1,f +1427,3626cpr0754,14,1,f +1427,3626cpr0920,14,1,f +1427,3660,71,2,f +1427,3666,14,5,f +1427,3666,15,9,f +1427,3666,4,3,f +1427,3679,71,2,f +1427,3680,1,2,f +1427,3700,14,6,f +1427,3703,0,2,f +1427,3710,4,2,f +1427,3710,15,7,f +1427,3710,14,3,f +1427,3738,71,4,f +1427,3747b,72,2,f +1427,3794b,71,4,f +1427,3795,72,3,f +1427,3795,1,1,f +1427,3795,15,2,f +1427,3821,4,1,f +1427,3822,4,1,f +1427,3829c01,1,2,f +1427,3830,4,1,f +1427,3831,4,1,f +1427,3832,4,5,f +1427,3832,0,1,f +1427,3834,320,2,f +1427,3835,0,1,f +1427,3838,14,1,f +1427,3899,47,1,f +1427,3899,14,2,f +1427,3937,72,1,f +1427,3958,72,1,f +1427,4032a,0,3,f +1427,40620,71,2,f +1427,4070,2,2,f +1427,4079,1,3,f +1427,4083,14,2,f +1427,4150,71,2,f +1427,4151b,72,3,f +1427,4175,72,3,f +1427,4176,41,1,f +1427,41769,15,1,f +1427,41770,15,1,f +1427,4208,0,1,f +1427,4209,4,1,f +1427,4274,1,4,f +1427,4274,1,1,t +1427,43722,4,1,f +1427,43722,14,1,f +1427,43723,14,1,f +1427,43723,4,1,f +1427,43898,72,1,f +1427,4445,0,2,f +1427,4477,15,2,f +1427,4488,0,8,f +1427,4510,72,1,f +1427,4533,15,1,f +1427,4599b,14,1,f +1427,4623,0,1,f +1427,46667,72,1,f +1427,47458,4,6,f +1427,47720,71,4,f +1427,4865b,72,4,f +1427,4865b,4,2,f +1427,4871,0,4,f +1427,50745,72,2,f +1427,51739,15,2,f +1427,54200,33,2,t +1427,54200,47,4,f +1427,54200,47,2,t +1427,54200,33,8,f +1427,55981,15,8,f +1427,6014b,15,12,f +1427,6019,15,2,f +1427,6019,4,1,f +1427,6020,0,2,f +1427,60474,14,1,f +1427,60478,15,2,f +1427,6091,4,2,f +1427,6111,4,3,f +1427,6134,0,1,f +1427,61409,4,2,f +1427,6141,33,2,f +1427,6141,33,1,t +1427,6141,36,8,f +1427,6141,71,1,t +1427,6141,71,2,f +1427,6141,36,2,t +1427,61484,4,1,f +1427,61485,0,1,f +1427,6158,72,1,f +1427,6192,71,2,f +1427,6231,4,2,f +1427,62360,41,1,f +1427,62462,14,1,f +1427,63864,1,2,f +1427,63868,71,1,f +1427,64448,4,1,f +1427,64453,4,1,f +1427,6558,1,2,f +1427,6587,28,2,f +1427,6636,14,2,f +1427,72454,0,1,f +1427,73983,15,1,f +1427,85984,72,8,f +1427,87079,71,1,f +1427,87079,14,1,f +1427,87079,4,4,f +1427,87087,4,2,f +1427,87087,72,2,f +1427,87552,41,11,f +1427,87697,0,12,f +1427,92410,4,1,f +1427,92438,72,1,f +1427,92593,0,2,f +1427,92946,72,2,f +1427,93274,1,1,f +1427,970c00pr0282,191,3,f +1427,973pr1919c01,191,3,f +1427,98138,71,1,t +1427,98138,71,2,f +1427,98313,15,1,f +1428,2039,72,1,f +1428,2346,0,4,f +1428,2420,85,4,f +1428,2420,0,7,f +1428,2431,0,8,f +1428,2431px24,0,2,f +1428,2456,85,2,f +1428,2654,15,6,f +1428,3001,85,4,f +1428,3001,15,1,f +1428,3003,85,1,f +1428,3004,85,16,f +1428,3005,85,20,f +1428,3007,15,1,f +1428,3007,0,1,f +1428,3009,85,7,f +1428,3010,85,5,f +1428,30147,0,1,f +1428,3020,72,1,f +1428,3023,0,7,f +1428,3024,85,2,f +1428,3027,0,1,f +1428,3028,0,1,f +1428,3031,85,3,f +1428,3031,0,1,f +1428,3032,4,3,f +1428,3032,85,2,f +1428,3036,0,1,f +1428,30374,0,1,f +1428,3039ph2,15,3,f +1428,3040b,0,2,f +1428,30414,71,2,f +1428,3062b,46,1,f +1428,3069b,0,3,f +1428,3069bp0e,19,1,f +1428,3070b,0,5,f +1428,3070b,0,3,t +1428,3188,85,1,f +1428,3455,85,2,f +1428,3624,85,1,f +1428,3626bph1,78,1,f +1428,3626bpx260,78,1,f +1428,3666,0,3,f +1428,3666,85,1,f +1428,3710,85,1,f +1428,3747a,0,2,f +1428,3794a,85,1,f +1428,3795,85,2,f +1428,3795,0,1,f +1428,3829c01,4,1,f +1428,3958,0,1,f +1428,40232,15,1,f +1428,40233,0,1,f +1428,4034,47,18,f +1428,4035,85,2,f +1428,4079,71,1,f +1428,4162,15,2,f +1428,4162,0,6,f +1428,4176,47,2,f +1428,4287,85,2,f +1428,4589,42,1,f +1428,4594px1,47,1,f +1428,4738a,70,1,f +1428,4739a,70,1,f +1428,4740,72,1,f +1428,47720,71,2,f +1428,48812,72,1,f +1428,6005,0,2,f +1428,6064,2,1,f +1428,6091,85,4,f +1428,6111,85,5,f +1428,6112,0,2,f +1428,6141,47,2,f +1428,6141,47,1,t +1428,6191,85,8,f +1428,6248,85,4,f +1428,6556,85,18,f +1428,6636,0,1,f +1428,970c00,85,1,f +1428,970c00,19,1,f +1428,970c00,19,1,t +1428,973pb0313c01,1,1,f +1428,973px397c01,85,1,f +1429,3004,14,4,f +1429,3004,0,2,f +1429,3005,14,1,f +1429,3005,0,1,f +1429,3005pe1,14,2,f +1429,3021,14,1,f +1429,3022,14,1,f +1429,3039,14,1,f +1431,2420,0,4,f +1431,2420,14,6,f +1431,2420,7,2,f +1431,2431,14,2,f +1431,2814,14,1,f +1431,3001,14,1,f +1431,3004,14,4,f +1431,3005,14,4,f +1431,3010,14,1,f +1431,3020,7,1,f +1431,3020,0,1,f +1431,3020,14,10,f +1431,3021,14,2,f +1431,3022,7,1,f +1431,3022,0,1,f +1431,3022,14,2,f +1431,3023,14,13,f +1431,3023,7,6,f +1431,3023,0,3,f +1431,3024,0,2,f +1431,3031,14,4,f +1431,3032,14,1,f +1431,3037,14,2,f +1431,3040b,0,2,f +1431,3040b,14,2,f +1431,3069b,14,2,f +1431,3623,14,6,f +1431,3647,7,6,f +1431,3650a,7,3,f +1431,3651,7,4,f +1431,3660,7,2,f +1431,3666,14,2,f +1431,3673,7,6,f +1431,3700,14,10,f +1431,3700,7,2,f +1431,3701,7,2,f +1431,3701,14,10,f +1431,3702,14,2,f +1431,3703,14,2,f +1431,3704,0,2,f +1431,3705,0,2,f +1431,3706,0,6,f +1431,3707,0,1,f +1431,3708,0,3,f +1431,3708,0,1,t +1431,3709,14,6,f +1431,3710,7,2,f +1431,3710,14,26,f +1431,3713,7,13,f +1431,3736,7,2,f +1431,3737,0,4,f +1431,3738,14,1,f +1431,3743,7,1,f +1431,3749,7,9,f +1431,3894,14,4,f +1431,3895,14,8,f +1431,3941,46,1,f +1431,4032a,14,1,f +1431,4070,14,2,f +1431,4143,7,2,t +1431,4143,7,4,f +1431,4150,14,1,f +1431,4261,7,2,f +1431,4262,7,2,f +1431,4263,14,4,f +1431,4265a,7,31,f +1431,4266,14,4,f +1431,4267,0,4,f +1431,4273b,7,4,f +1431,4274,7,2,f +1431,4275b,14,6,f +1431,4276b,14,6,f +1431,4442,7,3,f +1431,4459,0,14,f +1431,4477,14,2,f +1431,4504,14,2,f +1431,4519,0,1,f +1431,4716,0,2,f +1431,9244,7,1,f +1432,2412b,71,4,f +1432,2412b,4,2,f +1432,2420,0,2,f +1432,2436,14,1,f +1432,2444,0,1,f +1432,2780,0,3,f +1432,2877,72,1,f +1432,298c02,15,1,t +1432,298c02,15,1,f +1432,3002,71,1,f +1432,3003,4,2,f +1432,3003,71,2,f +1432,30136,71,2,f +1432,3020,0,4,f +1432,3021,4,2,f +1432,3021,72,2,f +1432,3022,4,2,f +1432,3023,46,2,f +1432,3023,0,10,f +1432,3024,14,4,f +1432,3024,4,4,f +1432,30383,0,4,f +1432,3040b,4,2,f +1432,30602,80,1,f +1432,3068b,4,2,f +1432,3070b,72,2,f +1432,3070b,72,1,t +1432,32524,0,1,f +1432,3298,4,2,f +1432,3622,4,2,f +1432,3623,0,2,f +1432,3660,4,2,f +1432,3666,4,2,f +1432,3676,4,2,f +1432,3679,71,1,f +1432,3680,0,1,f +1432,3700,71,1,f +1432,3710,72,2,f +1432,3794b,72,2,f +1432,3795,4,1,f +1432,4081b,0,2,f +1432,43722,0,2,f +1432,43723,0,2,f +1432,44302a,4,4,f +1432,44728,72,1,f +1432,4589,46,2,f +1432,4599b,0,2,f +1432,47458,72,1,f +1432,48336,0,2,f +1432,49668,135,2,f +1432,53989,135,4,f +1432,54200,0,1,t +1432,54200,14,2,f +1432,54200,4,6,f +1432,54200,4,1,t +1432,54200,14,1,t +1432,54200,0,2,f +1432,57909a,72,4,f +1432,6005,4,2,f +1432,6005,0,2,f +1432,6091,0,4,f +1432,61409,14,2,f +1432,6141,46,3,f +1432,6141,0,1,t +1432,6141,46,1,t +1432,6141,0,2,f +1432,62712,72,4,f +1432,62930,47,1,f +1432,63868,72,2,f +1432,73983,4,4,f +1432,85984,72,2,f +1433,2838c01,7,1,f +1433,2847c01,7,1,f +1433,5306bc162,0,1,f +1434,2412b,383,2,f +1434,2450,4,2,f +1434,2456,4,2,f +1434,2456,14,2,f +1434,3001,15,8,f +1434,3001,22,4,f +1434,3001,1,6,f +1434,3001,4,10,f +1434,3001,14,6,f +1434,3001,0,8,f +1434,3001,25,4,f +1434,3002,25,2,f +1434,3002,1,4,f +1434,3002,14,4,f +1434,3002,0,4,f +1434,3002,15,6,f +1434,3002,4,6,f +1434,3003,1,12,f +1434,3003,0,12,f +1434,3003,14,12,f +1434,3003,8,4,f +1434,3003,15,12,f +1434,3003,4,16,f +1434,3003,22,6,f +1434,3003,25,6,f +1434,3004,15,12,f +1434,3004,25,6,f +1434,3004,4,16,f +1434,3004,14,12,f +1434,3004,1,12,f +1434,3004,8,6,f +1434,3004,22,6,f +1434,3004,0,12,f +1434,3004p0b,14,1,f +1434,3005,0,18,f +1434,3005,1,22,f +1434,3005,15,18,f +1434,3005,14,22,f +1434,3005,4,22,f +1434,3005pe1,8,2,f +1434,3007,15,2,f +1434,3008,14,2,f +1434,3008,1,2,f +1434,3008,4,2,f +1434,3009,22,2,f +1434,3009,15,2,f +1434,3009,1,2,f +1434,3009,0,2,f +1434,3009,4,2,f +1434,3010,25,4,f +1434,3010,14,4,f +1434,3010,22,4,f +1434,3010,4,6,f +1434,3010,0,6,f +1434,3010,15,4,f +1434,3010,1,4,f +1434,3020,25,2,f +1434,3020,4,2,f +1434,3020,14,2,f +1434,3020,0,2,f +1434,3020,22,2,f +1434,3020,15,2,f +1434,3020,1,2,f +1434,3021,1,4,f +1434,3021,4,4,f +1434,3021,15,4,f +1434,3021,14,4,f +1434,3021,0,2,f +1434,3022,8,4,f +1434,3022,15,4,f +1434,3022,14,4,f +1434,3022,25,4,f +1434,3022,1,4,f +1434,3022,0,4,f +1434,3022,22,4,f +1434,3022,4,4,f +1434,3039,22,2,f +1434,3040b,4,4,f +1434,3040b,0,4,f +1434,3040b,25,4,f +1434,3665,4,4,f +1434,3665,22,4,f +1434,3665,0,4,f +1434,3665,25,4,f +1434,3839b,0,1,f +1434,4286,8,2,f +1434,4287,8,2,f +1434,4740,42,2,f +1434,73590c02b,14,2,f +1435,2431,15,1,f +1435,2432,15,1,f +1435,2446,4,1,f +1435,2447,0,1,f +1435,30027a,15,2,f +1435,30028,0,2,f +1435,3039,15,1,f +1435,3626bp05,14,1,f +1435,3795,4,1,f +1435,3829c01,15,1,f +1435,3832,14,1,f +1435,3839b,0,1,f +1435,6014a,15,2,f +1435,6015,0,2,f +1435,6019,4,2,f +1435,6157,0,2,f +1435,970c00,0,1,f +1435,973pb0242c01,15,1,f +1436,2780,0,1,t +1436,2780,0,2,f +1436,2817,4,1,f +1436,30091,7,1,f +1436,30214,42,1,f +1436,32529,0,2,f +1436,3626bpr0190,15,1,f +1436,3795,0,1,f +1436,4497,42,2,f +1436,4589,42,2,f +1436,6086,0,1,f +1436,6141,42,2,f +1436,6141,42,1,t +1436,970d03,4,1,f +1436,973pb0107c01,0,1,f +1437,2336p68,4,1,f +1437,2412b,0,2,f +1437,2446,0,1,f +1437,2447,42,1,f +1437,2569,42,1,f +1437,3020,0,1,f +1437,3023,4,1,f +1437,3023,0,2,f +1437,3626apr0001,14,1,f +1437,3829c01,4,1,f +1437,3838,0,1,f +1437,3935,0,1,f +1437,3936,0,1,f +1437,3962a,0,1,f +1437,4085c,0,1,f +1437,4588,42,1,f +1437,4589,42,2,f +1437,4590,0,2,f +1437,4598,4,1,f +1437,4735,0,1,f +1437,970x026,15,1,f +1437,973p68c01,4,1,f +1439,2412b,80,4,f +1439,2412b,25,2,f +1439,2431,15,1,f +1439,2431,27,2,f +1439,2476a,71,6,f +1439,2780,0,3,t +1439,2780,0,67,f +1439,2817,4,1,f +1439,2905,72,2,f +1439,3001,0,2,f +1439,3003,15,1,f +1439,3020,25,1,f +1439,3020,0,5,f +1439,3020,15,1,f +1439,3021,15,2,f +1439,3022,15,2,f +1439,3022,4,2,f +1439,3023,15,1,f +1439,3031,15,1,f +1439,3034,15,2,f +1439,3038,0,2,f +1439,32002,72,1,t +1439,32002,72,2,f +1439,32013,72,1,f +1439,32017,72,6,f +1439,32018,0,2,f +1439,32059,0,1,f +1439,32062,4,4,f +1439,32073,71,4,f +1439,32123b,71,2,t +1439,32123b,14,1,t +1439,32123b,14,2,f +1439,32123b,71,24,f +1439,32138,0,2,f +1439,32140,0,2,f +1439,32140,71,2,f +1439,32192,72,2,f +1439,32271,0,2,f +1439,32278,72,2,f +1439,32291,0,4,f +1439,32291,71,2,f +1439,32316,72,2,f +1439,32316,0,1,f +1439,32316,14,4,f +1439,32348,71,8,f +1439,32348,27,2,f +1439,32523,14,6,f +1439,32523,71,2,f +1439,32524,71,1,f +1439,32525,0,2,f +1439,32526,14,3,f +1439,32526,27,2,f +1439,32556,19,10,f +1439,3460,14,4,f +1439,3660,25,3,f +1439,3665,0,4,f +1439,3700,0,4,f +1439,3701,0,8,f +1439,3703,0,2,f +1439,3705,0,4,f +1439,3706,0,7,f +1439,3708,0,3,f +1439,3710,0,4,f +1439,3713,4,2,t +1439,3713,4,18,f +1439,3958,0,1,f +1439,40379,15,2,f +1439,40490,0,3,f +1439,4070,15,2,f +1439,4081b,71,2,f +1439,41239,0,24,f +1439,41669,36,4,f +1439,41677,0,2,f +1439,41753,72,1,f +1439,42022,25,2,f +1439,43093,1,53,f +1439,43713,0,2,f +1439,43722,15,1,f +1439,43723,15,1,f +1439,4519,71,1,f +1439,45705,72,1,f +1439,47715,72,1,f +1439,47753,0,2,f +1439,52031,27,2,f +1439,53566,25,2,f +1439,54200,182,1,t +1439,54200,182,2,f +1439,54200,46,4,f +1439,54200,46,1,t +1439,55978,0,4,f +1439,56145,71,4,f +1439,56145,0,4,f +1439,58181,40,1,f +1439,59426,72,2,f +1439,59443,0,8,f +1439,59443,71,2,f +1439,6091,71,2,f +1439,61069,72,4,f +1439,61070,27,1,f +1439,61071,27,1,f +1439,61072,135,2,f +1439,61072,0,4,f +1439,61073,0,3,f +1439,6141,42,1,t +1439,6141,15,1,t +1439,6141,15,2,f +1439,6141,42,2,f +1439,61481,0,4,f +1439,61678,15,2,f +1439,61678,0,4,f +1439,6180,0,2,f +1439,62462,71,5,f +1439,6249,71,1,f +1439,6541,15,2,f +1439,6553,0,4,f +1439,6558,1,29,f +1439,6564,0,2,f +1439,6565,0,2,f +1439,6628,0,2,f +1439,6629,0,4,f +1439,6629,14,3,f +1439,6632,0,2,f +1439,78c04,179,2,f +1439,8496cdb01,9999,2,f +1439,85545,4,2,f +1440,2335px1,0,2,f +1440,2342,1,2,f +1440,2431,1,2,f +1440,2453a,19,2,f +1440,2454a,19,4,f +1440,2465,19,3,f +1440,2489,6,1,f +1440,2490px1,0,1,f +1440,2527,6,1,f +1440,2540,1,2,f +1440,2555,0,4,f +1440,2873,0,2,f +1440,3004,19,18,f +1440,3004,15,1,f +1440,30041,8,1,f +1440,30042,0,1,f +1440,3005,1,2,f +1440,30055,8,4,f +1440,3008,0,2,f +1440,3009,19,7,f +1440,30136,0,15,f +1440,30137,0,6,f +1440,30137,19,7,f +1440,30140,0,2,f +1440,30153,42,1,f +1440,30156px2,8,2,f +1440,30173a,0,2,f +1440,30173a,7,2,f +1440,30174,8,1,f +1440,30175,0,1,f +1440,30177,4,2,f +1440,30177,15,1,f +1440,30192,8,2,f +1440,3022,0,2,f +1440,30223,6,2,f +1440,30229,8,1,f +1440,3023,15,1,f +1440,3023,8,12,f +1440,3034,1,1,f +1440,3036,0,1,f +1440,3038,0,4,f +1440,3039,1,2,f +1440,3040b,0,2,f +1440,3062b,0,14,f +1440,3062b,19,12,f +1440,3068b,0,2,f +1440,3068b,4,1,f +1440,3069b,4,1,f +1440,3069b,1,3,f +1440,3297,1,5,f +1440,3298,1,10,f +1440,3456,0,1,f +1440,3581,0,2,f +1440,3622,19,14,f +1440,3623,19,4,f +1440,3623,8,6,f +1440,3626bpr0137,14,1,f +1440,3626bpx6,14,1,f +1440,3626bpx7,14,2,f +1440,3660,8,2,f +1440,3666,0,2,f +1440,3675,1,2,f +1440,3684,0,2,f +1440,3703,0,1,f +1440,3710,0,6,f +1440,3795,0,3,f +1440,3839b,0,3,f +1440,3849,6,1,f +1440,3849,0,1,f +1440,3857,6,1,f +1440,3941,6,2,f +1440,3942c,0,2,f +1440,3958,0,1,f +1440,3959,0,2,f +1440,4070,8,16,f +1440,4081b,1,4,f +1440,4175,0,7,f +1440,4215b,0,4,f +1440,4286,1,10,f +1440,4315,1,2,f +1440,4497,6,1,f +1440,4497,0,1,f +1440,4589,46,2,f +1440,4733,0,2,f +1440,4738a,6,1,f +1440,4739a,6,1,f +1440,4740,0,4,f +1440,4865a,1,5,f +1440,529,334,3,f +1440,56823c28,0,1,f +1440,57503,334,1,f +1440,57504,334,1,f +1440,57505,334,1,f +1440,57506,334,1,f +1440,6083,8,2,f +1440,6133,57,2,f +1440,6141,57,6,f +1440,6587,8,1,f +1440,75998pr0007,15,1,f +1440,84943,8,1,f +1440,970c11pb02a,0,1,f +1440,970x026,15,1,f +1440,970x026,4,2,f +1440,973pb0240c01,4,2,f +1440,973pb0240c02,15,1,f +1440,973pn0c01,15,1,f +1440,x73,0,2,f +1441,2412b,72,1,f +1441,2420,71,2,f +1441,2420,70,2,f +1441,2638,72,1,f +1441,2780,0,8,f +1441,2780,0,1,t +1441,3001,378,2,f +1441,3002,378,2,f +1441,3002,72,2,f +1441,3003,73,2,f +1441,3004,70,8,f +1441,3005,70,6,f +1441,3005,14,8,f +1441,3008,14,1,f +1441,3008,70,1,f +1441,3008,0,1,f +1441,3009,70,2,f +1441,3010,70,2,f +1441,30165,70,2,f +1441,3020,72,1,f +1441,3020,70,1,f +1441,3021,70,3,f +1441,3021,0,2,f +1441,3022,70,2,f +1441,3023,70,13,f +1441,3023,73,10,f +1441,3023,71,2,f +1441,3024,73,10,f +1441,3024,70,4,f +1441,3030,70,1,f +1441,3035,0,1,f +1441,30357,70,2,f +1441,30395,72,1,f +1441,30414,71,1,f +1441,3069b,70,3,f +1441,3070b,70,1,t +1441,3070b,70,2,f +1441,32000,71,2,f +1441,32013,0,1,f +1441,32018,72,4,f +1441,32028,484,8,f +1441,32062,4,1,f +1441,32123b,71,6,f +1441,32123b,71,1,t +1441,3245c,14,2,f +1441,3460,70,1,f +1441,3460,72,5,f +1441,3460,0,1,f +1441,3623,70,2,f +1441,3623,71,2,f +1441,3665,73,4,f +1441,3665,70,2,f +1441,3665,378,2,f +1441,3666,0,3,f +1441,3666,70,3,f +1441,3700,72,1,f +1441,3702,0,2,f +1441,3705,0,1,f +1441,3707,0,1,f +1441,3710,70,2,f +1441,3710,71,1,f +1441,3713,71,1,t +1441,3713,71,4,f +1441,3737,0,3,f +1441,3794a,71,1,f +1441,3795,70,5,f +1441,3832,70,2,f +1441,3937,72,2,f +1441,3938,71,2,f +1441,3941,15,1,f +1441,3942c,4,1,f +1441,3960,72,1,f +1441,4032a,308,1,f +1441,4032a,484,2,f +1441,41677,72,2,f +1441,41678,72,1,f +1441,42003,0,1,f +1441,4274,1,2,f +1441,4274,1,1,t +1441,43093,1,3,f +1441,43337,70,1,f +1441,44309,0,4,f +1441,4460b,70,4,f +1441,4477,70,5,f +1441,4591,4,1,f +1441,4740,47,1,f +1441,4864b,35,1,f +1441,54200,70,2,f +1441,54200,70,1,t +1441,56145,70,4,f +1441,56823c50,0,1,f +1441,60475a,0,4,f +1441,60484,71,2,f +1441,6081,72,2,f +1441,6091,70,8,f +1441,6141,36,1,t +1441,6141,70,4,f +1441,6141,71,2,f +1441,6141,182,2,t +1441,6141,70,1,t +1441,6141,36,2,f +1441,6141,182,5,f +1441,6141,71,1,t +1441,61510,71,1,f +1441,6187,0,2,f +1441,6191,70,8,f +1441,62361,484,4,f +1441,64453pr0001,70,1,f +1441,6541,72,2,f +1441,6636,70,4,f +1441,8677stk01,9999,1,t +1441,87079pr0022a,70,1,f +1441,87087,71,8,f +1442,8890,9999,1,f +1444,2420,0,4,f +1444,2431,25,1,f +1444,2436,0,2,f +1444,2436,15,2,f +1444,3020,25,2,f +1444,3022,25,2,f +1444,3023,36,1,f +1444,3031,0,1,f +1444,30602,0,1,f +1444,3069b,73,4,f +1444,4589,72,2,f +1444,47456,0,1,f +1444,50944pr0001,0,4,f +1444,50947,73,4,f +1444,50951,0,4,f +1444,54200,25,1,t +1444,54200,73,1,t +1444,54200,73,4,f +1444,54200,25,2,f +1444,6141,15,1,t +1444,6141,15,6,f +1444,6157,0,2,f +1445,11090,0,5,f +1445,11214,72,4,f +1445,11478,0,4,f +1445,11950,71,4,f +1445,14720,71,2,f +1445,15100,0,8,f +1445,15461,0,2,f +1445,18450,0,2,f +1445,18654,72,2,f +1445,18975,72,1,f +1445,2412b,0,2,f +1445,2420,72,2,f +1445,2450,72,4,f +1445,2654,0,3,f +1445,2780,0,23,f +1445,2825,0,2,f +1445,298c02,71,2,f +1445,3003,0,1,f +1445,3004,0,1,f +1445,3020,72,2,f +1445,3021,0,2,f +1445,3021,72,4,f +1445,3022,71,2,f +1445,3023,0,4,f +1445,3023,72,5,f +1445,3031,0,2,f +1445,30363,72,1,f +1445,30363,0,1,f +1445,3045,72,2,f +1445,3062b,0,4,f +1445,3068b,0,1,f +1445,32009,0,2,f +1445,32034,0,2,f +1445,32054,0,8,f +1445,32062,0,14,f +1445,32062,4,3,f +1445,32123b,71,4,f +1445,32449,72,4,f +1445,32523,0,2,f +1445,32557,0,2,f +1445,3464,72,1,f +1445,3701,72,2,f +1445,3703,72,2,f +1445,3705,0,2,f +1445,3707,0,3,f +1445,3710,0,1,f +1445,3957b,0,6,f +1445,4032a,0,5,f +1445,41677,0,4,f +1445,41678,0,4,f +1445,41769,72,2,f +1445,41769,0,1,f +1445,41770,0,1,f +1445,41770,72,2,f +1445,4274,71,17,f +1445,43093,1,10,f +1445,43710,72,1,f +1445,43711,72,1,f +1445,44301a,72,2,f +1445,44302a,0,2,f +1445,44728,72,3,f +1445,4519,71,6,f +1445,4595,0,2,f +1445,4599b,0,1,f +1445,4735,0,1,f +1445,4740,0,2,f +1445,47456,0,2,f +1445,47456,72,2,f +1445,47458,72,2,f +1445,47753,72,2,f +1445,47994,0,2,f +1445,48729b,72,1,f +1445,55615,71,2,f +1445,56908,71,2,f +1445,59443,0,3,f +1445,59443,71,2,f +1445,59900,71,4,f +1445,60470a,0,2,f +1445,60483,0,3,f +1445,60849,71,2,f +1445,61409,0,5,f +1445,6141,0,1,f +1445,6141,71,6,f +1445,62462,71,4,f +1445,62462,0,1,f +1445,63869,0,2,f +1445,63965,0,1,f +1445,64567,0,1,f +1445,6553,0,2,f +1445,6558,1,5,f +1445,6629,0,4,f +1445,6632,71,4,f +1445,6632,0,6,f +1445,6636,72,2,f +1445,73590c03a,0,2,f +1445,85984,72,1,f +1445,87083,72,2,f +1445,87617,0,2,f +1445,87618,71,2,f +1445,92222,148,6,f +1445,92582,0,1,f +1445,92692,0,1,f +1445,92907,0,2,f +1445,92909,72,4,f +1445,93609,15,2,f +1445,98286,71,2,f +1445,98313,72,2,f +1445,99207,0,3,f +1445,99781,71,2,f +1447,2346,7,4,f +1447,2412b,7,4,f +1447,2412b,15,2,f +1447,2420,7,4,f +1447,2420,15,4,f +1447,2444,0,2,f +1447,2654,15,4,f +1447,2736,7,4,f +1447,2744,15,2,f +1447,2780,0,34,f +1447,2780,0,1,t +1447,2825,15,7,f +1447,2825,7,1,f +1447,2905,15,2,f +1447,3020,15,2,f +1447,3021,15,4,f +1447,3022,7,6,f +1447,3023,15,4,f +1447,3023,7,7,f +1447,3034,15,2,f +1447,3037,15,6,f +1447,3039,15,4,f +1447,3040b,15,4,f +1447,3045,15,4,f +1447,3068b,15,2,f +1447,32000,15,4,f +1447,32002,8,16,f +1447,32002,8,1,t +1447,32009,15,3,f +1447,32009,1,4,f +1447,32013,1,4,f +1447,32013,15,6,f +1447,32014,15,4,f +1447,32015,15,4,f +1447,32016,15,2,f +1447,32017,7,5,f +1447,32017,15,4,f +1447,32028,7,8,f +1447,32034,15,4,f +1447,32034,0,3,f +1447,32039,7,8,f +1447,32039,1,6,f +1447,32054,3,8,f +1447,32054,1,8,f +1447,32056,15,4,f +1447,32062,0,19,f +1447,32063,7,8,f +1447,32064b,15,1,f +1447,32064b,7,2,f +1447,32065,7,2,f +1447,32068,7,2,f +1447,32069,0,2,f +1447,32073,0,5,f +1447,32123b,7,21,f +1447,32126,7,5,f +1447,32138,15,4,f +1447,32140,7,5,f +1447,32166,15,2,f +1447,32173,15,2,f +1447,32174,15,4,f +1447,32175,15,2,f +1447,32177,15,2,f +1447,32177,1,2,f +1447,32188,15,2,f +1447,32189,15,2,f +1447,32199,8,4,f +1447,32199,15,4,f +1447,32200,7,1,f +1447,32235,7,1,f +1447,32269,7,3,f +1447,32270,7,2,f +1447,32271,7,2,f +1447,32271,15,7,f +1447,32273c01,1,1,f +1447,32344c01,15,1,f +1447,3482,7,4,f +1447,3623,7,2,f +1447,3647,7,1,f +1447,3648b,7,3,f +1447,3700,15,5,f +1447,3701,15,12,f +1447,3702,15,2,f +1447,3703,15,4,f +1447,3705,0,12,f +1447,3706,0,9,f +1447,3707,0,3,f +1447,3708,0,1,f +1447,3710,7,2,f +1447,3710,15,6,f +1447,3713,7,17,f +1447,3737,0,2,f +1447,3749,7,33,f +1447,3794a,7,2,f +1447,3832,7,2,f +1447,3894,15,8,f +1447,4019,7,4,f +1447,4128535,89,1,f +1447,4185,7,4,f +1447,4274,7,1,t +1447,4274,7,12,f +1447,4287,15,2,f +1447,4477,15,4,f +1447,4519,0,19,f +1447,4716,7,1,f +1447,4740,15,2,f +1447,51ps1,80,1,f +1447,51ps2,80,1,f +1447,6141,36,1,t +1447,6141,36,2,f +1447,6141,7,1,t +1447,6141,7,18,f +1447,6536,15,14,f +1447,6536,7,11,f +1447,6536,0,2,f +1447,6538b,15,10,f +1447,6538b,1,4,f +1447,6541,7,6,f +1447,6558,0,20,f +1447,6587,8,3,f +1447,6589,7,6,f +1447,6632,15,12,f +1447,6632,7,2,f +1447,6636,15,4,f +1447,6644,0,4,f +1447,71509,0,2,f +1447,71509,0,1,t +1447,75535,15,2,f +1447,75c03,8,2,f +1447,75c03,8,1,t +1447,78c04,7,2,f +1447,78c08,15,1,t +1447,78c08,1,2,f +1447,78c08,15,1,f +1447,85545,1,2,f +1447,flex08c04l,7,2,f +1448,3700,14,4,f +1448,3701,14,4,f +1448,3702,14,4,f +1448,3709,14,2,f +1448,3738,14,2,f +1448,3894,14,4,f +1449,10201,4,1,f +1449,11477,4,2,f +1449,14704,71,2,f +1449,15068,0,1,f +1449,15208,15,1,f +1449,15395,4,2,f +1449,15456,0,2,f +1449,15573,320,1,f +1449,15712,320,1,f +1449,2431,320,1,f +1449,3022,4,1,f +1449,3023,0,2,f +1449,30374,0,1,f +1449,3040b,4,2,f +1449,30553,0,1,f +1449,3069b,4,2,f +1449,32474pr1001,15,2,f +1449,3660,4,2,f +1449,48336,4,1,f +1449,4871,4,1,f +1449,49668,15,2,f +1449,51739,4,1,f +1449,53451,0,2,f +1449,53451,0,1,t +1449,54200,320,1,t +1449,54200,182,1,t +1449,54200,182,6,f +1449,54200,320,4,f +1449,61252,4,4,f +1449,73983,4,2,f +1449,85861,15,2,f +1449,85861,15,1,t +1449,85959pat0003,36,1,f +1449,88072,4,2,f +1449,92280,4,2,f +1449,92582,0,1,f +1449,99781,0,1,f +1450,3651,7,12,f +1450,3652,7,2,f +1450,3673,7,12,f +1450,3704,0,4,f +1450,3705,0,4,f +1450,3706,0,2,f +1450,3707,0,4,f +1450,3708,0,2,f +1450,3713,7,8,f +1450,3737,0,2,f +1452,2514c01,0,1,f +1452,4514c02,0,1,f +1452,45573,72,4,f +1452,45574,71,6,f +1452,45575,71,20,f +1452,45793c02,148,4,f +1452,45799,71,4,f +1452,45803,25,1,f +1452,49817,148,1,f +1452,49818,148,1,f +1452,49821,25,1,f +1452,49822,25,1,f +1452,49823,148,1,f +1452,49828,148,2,f +1452,49829,148,1,f +1452,78c11,179,2,f +1452,rb00178,0,2,f +1453,2412b,1,2,f +1453,2421,0,1,f +1453,2431,33,1,f +1453,2431,72,6,f +1453,2460,72,1,f +1453,2479,0,1,f +1453,3004,1,2,f +1453,3010,2,2,f +1453,3010,15,1,f +1453,3020,15,1,f +1453,3021,15,2,f +1453,30236,72,2,f +1453,3035,2,1,f +1453,30377,0,2,f +1453,30663,0,1,f +1453,3069b,36,1,f +1453,3069b,82,2,f +1453,3069b,33,2,f +1453,3069bpr0115,15,1,f +1453,3176,71,1,f +1453,3460,15,1,f +1453,3460,72,4,f +1453,3626bpr0410,14,1,f +1453,3626cpr0499,14,1,f +1453,3660,15,1,f +1453,3710,15,1,f +1453,3710,2,2,f +1453,3794b,71,1,f +1453,3795,1,1,f +1453,3821,15,1,f +1453,3822,15,1,f +1453,3829c01,14,1,f +1453,3962b,0,1,f +1453,4032a,1,1,f +1453,41334,0,1,f +1453,41862,71,1,f +1453,4286,15,1,f +1453,43337,15,2,f +1453,4360,0,1,f +1453,4488,71,1,f +1453,45677,0,1,f +1453,45677,15,1,f +1453,4589,71,2,f +1453,4623,71,1,f +1453,4697b,71,1,f +1453,47457,72,3,f +1453,48336,15,1,f +1453,4865a,0,4,f +1453,4865a,41,1,f +1453,4865a,2,6,f +1453,50745,72,4,f +1453,50944pr0001,0,4,f +1453,51011,0,4,f +1453,52036,72,1,f +1453,52038,72,2,f +1453,52501,1,2,f +1453,53989,15,1,f +1453,54200,36,2,f +1453,54200,72,2,f +1453,54200,46,3,f +1453,57783,41,1,f +1453,6014b,71,4,f +1453,6019,15,1,f +1453,60475a,15,2,f +1453,60478,72,8,f +1453,60700,0,4,f +1453,6087,1,1,f +1453,6140,71,2,f +1453,6141,36,4,f +1453,6141,33,2,f +1453,6157,0,2,f +1453,86035,15,1,f +1453,87752,41,1,f +1453,88930,0,1,f +1453,88930,15,1,f +1453,92280,0,2,f +1453,92585,4,1,f +1453,970c00,0,2,f +1453,973pr1197c01,15,1,f +1453,973pr1693c01,0,1,f +1454,2342,15,1,f +1454,2412b,15,1,f +1454,2412b,1,2,f +1454,2419,0,1,f +1454,2446,15,1,f +1454,2452,1,1,f +1454,2463,15,2,f +1454,2466,57,1,f +1454,2516,1,1,f +1454,2540,0,1,f +1454,2569,57,1,f +1454,2625,15,1,f +1454,2654,0,1,f +1454,3020,15,1,f +1454,3020,0,1,f +1454,3021,15,1,f +1454,3023,15,2,f +1454,3023,0,4,f +1454,3030,0,1,f +1454,3069bp61,15,2,f +1454,3070b,15,2,f +1454,3298p61,1,1,f +1454,3475b,0,2,f +1454,3626bp62,14,1,f +1454,3666,0,1,f +1454,3679,7,1,f +1454,3680,1,1,f +1454,3700,0,2,f +1454,3749,7,1,f +1454,3795,0,2,f +1454,3795,1,2,f +1454,3838,15,1,f +1454,3933,15,1,f +1454,3934,15,1,f +1454,3937,1,1,f +1454,3938,15,1,f +1454,3941,0,1,f +1454,3941,57,1,f +1454,3960,57,1,f +1454,4032a,0,1,f +1454,4070,15,2,f +1454,4275b,1,6,f +1454,4276b,1,1,f +1454,4477,1,2,f +1454,4589,57,2,f +1454,4623,1,2,f +1454,4730,0,1,f +1454,4740,57,2,f +1454,6019,0,1,f +1454,6117,57,1,f +1454,6119,57,1,f +1454,6120,57,8,f +1454,970x023,0,1,f +1454,973p62c01,0,1,f +1456,3483,0,4,f +1456,384,14,1,f +1456,4234,4,2,f +1456,7039,4,2,f +1456,7049b,0,1,f +1457,32062,4,1,f +1457,32062,4,1,t +1457,41677,0,2,f +1457,4519,71,1,f +1457,48729b,0,1,f +1457,48729b,0,1,t +1457,53551,148,3,f +1457,53585,0,1,f +1457,54821,1,1,f +1457,64262,143,1,f +1457,87083,72,1,f +1457,87817,0,1,f +1457,90609,0,2,f +1457,90611,0,2,f +1457,90617,72,2,f +1457,90617,0,2,f +1457,90626,0,1,f +1457,90641,1,4,f +1457,90641,0,2,f +1457,90661,0,2,f +1457,92202,179,1,f +1457,93571,0,1,f +1457,93575,0,2,f +1457,98562,148,2,f +1457,98563,179,1,f +1457,98564,179,1,f +1457,98569pr0010,143,1,f +1457,98570pat01,15,1,f +1457,98593,148,2,f +1460,3437,27,1,f +1460,3437,14,1,f +1460,3437,191,1,f +1460,63710pr0013,19,1,f +1460,6510,4,1,f +1461,12825,0,2,f +1461,2339,308,3,f +1461,2376,0,1,f +1461,2420,2,2,f +1461,2436,0,1,f +1461,2530,72,2,f +1461,2530,72,1,t +1461,2540,19,1,f +1461,2546pat0001,4,1,f +1461,2654,19,1,f +1461,2817,0,1,f +1461,3001,70,2,f +1461,3003,70,3,f +1461,30094,19,2,f +1461,30115,4,1,f +1461,30115,2,1,f +1461,30136,308,11,f +1461,30137,70,7,f +1461,30176,2,5,f +1461,3020,19,1,f +1461,3021,70,5,f +1461,3022,72,1,f +1461,3023,28,9,f +1461,30239,28,2,f +1461,30239,2,2,f +1461,3028,28,1,f +1461,3034,28,3,f +1461,30357,70,2,f +1461,30365,0,2,f +1461,30374,19,8,f +1461,30377,28,1,t +1461,30377,28,2,f +1461,30383,71,2,f +1461,3039,70,5,f +1461,3040b,308,4,f +1461,3045,28,2,f +1461,30552,72,2,f +1461,30565,28,2,f +1461,3062b,70,17,f +1461,3062b,0,1,f +1461,3068b,19,1,f +1461,3069b,19,4,f +1461,3070bpr0058,272,1,f +1461,3070bpr0058,272,1,t +1461,32034,71,1,f +1461,32062,4,1,f +1461,3298,70,2,f +1461,3307,19,2,f +1461,3623,70,6,f +1461,3626bpr0788,78,1,f +1461,3626bpr0801,78,1,f +1461,3626bpr0802,70,1,f +1461,3626bpr0803,70,1,f +1461,3626bpr0895,15,6,f +1461,3665,70,4,f +1461,3673,71,1,f +1461,3673,71,1,t +1461,3678b,70,1,f +1461,3684,308,2,f +1461,3700,0,4,f +1461,3710,70,4,f +1461,3747b,70,2,f +1461,3794b,70,7,f +1461,3832,70,1,f +1461,3937,71,2,f +1461,4070,70,2,f +1461,4081b,15,2,f +1461,4085c,72,3,f +1461,4274,1,1,f +1461,4274,1,1,t +1461,43093,1,2,f +1461,43888,70,2,f +1461,44302a,72,2,f +1461,4477,70,1,f +1461,4497,308,2,f +1461,4623,0,1,f +1461,4644157,9999,1,t +1461,47847,70,2,f +1461,48723,70,2,f +1461,53451,15,3,f +1461,53451,15,1,t +1461,53989,15,14,f +1461,54200,70,3,t +1461,54200,70,10,f +1461,55236,70,2,f +1461,59443,70,2,f +1461,60169,72,2,f +1461,6019,19,1,f +1461,6025,0,2,f +1461,6134,0,2,f +1461,6141,80,1,f +1461,6141,19,1,t +1461,6141,27,3,f +1461,6141,57,2,f +1461,6141,80,1,t +1461,6141,57,1,t +1461,6141,27,1,t +1461,6141,19,2,f +1461,61780,70,1,f +1461,63965,70,2,f +1461,64647,57,2,f +1461,64647,57,1,t +1461,6587,28,2,f +1461,87079pr0021,19,1,f +1461,92590,28,1,f +1461,92691,15,4,f +1461,93160,15,2,f +1461,93609,15,8,f +1461,95221pr0001,0,1,f +1461,95226,308,1,f +1461,95228,40,1,f +1461,95348,308,1,f +1461,970c00,308,1,f +1461,970c00pr0218,70,1,f +1461,970c00pr0241,70,1,f +1461,970c00pr0256,70,1,f +1461,973pr1771c01,272,1,f +1461,973pr1789c01,71,1,f +1461,973pr1790c01,70,1,f +1461,973pr1850c01,70,1,f +1462,30213,42,2,f +1462,3024,47,2,f +1462,3024,42,2,f +1462,3024,34,2,f +1462,3024,33,2,f +1462,3024,46,2,f +1462,3024,36,2,f +1462,3062b,46,2,f +1462,3062b,47,2,f +1462,3062b,34,2,f +1462,3062b,33,2,f +1462,3062b,36,2,f +1462,3960,42,2,f +1462,4589,34,2,f +1462,4589,46,2,f +1462,4589,57,2,f +1462,4589,42,2,f +1462,4589,36,2,f +1462,4589,33,2,f +1462,4740,57,2,f +1462,4740,34,2,f +1462,4740,42,2,f +1462,4740,33,2,f +1462,6141,46,2,f +1462,6141,33,2,f +1462,6141,42,2,f +1462,6141,57,2,f +1462,6141,36,2,f +1462,6141,47,2,f +1462,6141,34,2,f +1465,11090,72,1,f +1465,11091,297,2,f +1465,11153,322,2,f +1465,11203,19,1,f +1465,11211,19,1,f +1465,11407pr0003c01,322,1,f +1465,11458,15,2,f +1465,11477,26,2,f +1465,11477,85,8,f +1465,11477,322,2,f +1465,11816pr0018,78,1,f +1465,11816pr0019,78,1,f +1465,12939,19,1,f +1465,13965,19,2,f +1465,13965,272,2,f +1465,14704,71,2,f +1465,14769,30,4,f +1465,14769pr1015,323,1,f +1465,15068,272,2,f +1465,15279,297,2,f +1465,15456,0,2,f +1465,15535,72,1,f +1465,18970,15,2,f +1465,18970,297,2,f +1465,19118,323,1,f +1465,19121,297,1,f +1465,19201pr0001,323,1,f +1465,19206pr0001,31,1,f +1465,19250,15,1,f +1465,20221,9999,1,f +1465,20379pr0001,15,1,f +1465,2343,297,2,f +1465,2343,47,1,f +1465,2357,70,2,f +1465,2412b,0,1,f +1465,2423,27,5,f +1465,2431,85,2,f +1465,2431,19,2,f +1465,2456,272,3,f +1465,2654,47,10,f +1465,2780,0,1,f +1465,2780,0,1,t +1465,3001,322,2,f +1465,3003,272,1,f +1465,3004,272,1,f +1465,3004,322,9,f +1465,30044,70,2,f +1465,30046,297,2,f +1465,3005,322,4,f +1465,3005,52,1,f +1465,30099,322,2,f +1465,30153,41,7,f +1465,30153,47,1,f +1465,3020,19,1,f +1465,3020,322,2,f +1465,3020,272,3,f +1465,3021,70,6,f +1465,3021,272,2,f +1465,3022,70,2,f +1465,3023,0,10,f +1465,30237b,322,2,f +1465,3024,182,1,f +1465,3024,182,1,t +1465,3031,19,1,f +1465,3035,19,1,f +1465,3036,19,1,f +1465,30367c,297,1,f +1465,30383,0,2,f +1465,3040b,19,4,f +1465,30414,0,2,f +1465,30553,0,2,f +1465,30565,19,6,f +1465,30565,70,2,f +1465,3062b,33,4,f +1465,3062b,297,4,f +1465,3068b,272,2,f +1465,3068b,322,1,f +1465,3068bpr0247,19,1,f +1465,3069b,85,1,f +1465,32013,0,3,f +1465,32016,70,2,f +1465,32034,0,2,f +1465,32062,4,4,f +1465,32064a,2,1,f +1465,32073,71,6,f +1465,33183,10,2,f +1465,33183,10,1,t +1465,33243,272,2,f +1465,33291,10,7,f +1465,33291,5,9,f +1465,33291,5,2,t +1465,33291,10,2,t +1465,3460,19,3,f +1465,3623,0,2,f +1465,3666,19,2,f +1465,3666,0,2,f +1465,3673,71,1,t +1465,3673,71,1,f +1465,3701,0,1,f +1465,3709,0,1,f +1465,3710,70,2,f +1465,3710,19,2,f +1465,3710,322,2,f +1465,3710,26,1,f +1465,3747b,272,2,f +1465,3795,19,1,f +1465,3795,70,1,f +1465,3852b,5,1,f +1465,3941,70,1,f +1465,41749,272,1,f +1465,41750,272,1,f +1465,41764,272,1,f +1465,41765,272,1,f +1465,41769,70,1,f +1465,41770,70,1,f +1465,42022,0,2,f +1465,42023,15,2,f +1465,4477,0,2,f +1465,4519,71,1,f +1465,4528,0,1,f +1465,45590,0,1,f +1465,47457,19,1,f +1465,48336,297,2,f +1465,50950,297,4,f +1465,59443,0,3,f +1465,6005,85,2,f +1465,60474,322,1,f +1465,60897,0,1,f +1465,6141,45,1,t +1465,6141,45,1,f +1465,6179,5,2,f +1465,6182,322,2,f +1465,63864,322,2,f +1465,64644,297,1,f +1465,6585,0,1,f +1465,6589,19,1,t +1465,6589,19,2,f +1465,6628,0,1,t +1465,6628,0,3,f +1465,85975,297,1,f +1465,87079,70,1,f +1465,87087,19,4,f +1465,88072,72,3,f +1465,92456pr0072c01,78,1,f +1465,92456pr0073c01,78,1,f +1465,92593,272,2,f +1465,95343,70,1,f +1465,95344,297,1,f +1465,95344,297,1,t +1465,98138,52,1,t +1465,98138,33,3,f +1465,98138,52,1,f +1465,98138,297,3,f +1465,98138,297,2,t +1465,98138,33,2,t +1465,98138pr0032,33,1,t +1465,98138pr0032,33,1,f +1465,98284,70,1,f +1465,99206,0,1,f +1465,99781,0,2,f +1466,51798,85,1,f +1466,51804,72,1,f +1466,51811,14,1,f +1469,2039,15,2,f +1469,2335pr02,15,1,f +1469,2335px13,15,1,f +1469,2419,8,1,f +1469,2432,0,2,f +1469,2432,7,1,f +1469,2458,8,2,f +1469,2460,4,1,f +1469,2479,0,2,f +1469,3001,0,2,f +1469,3001,4,2,f +1469,3001,14,2,f +1469,3001,7,2,f +1469,3001,15,2,f +1469,3001,1,2,f +1469,3002,7,2,f +1469,3002,1,2,f +1469,3002,4,2,f +1469,3002,0,2,f +1469,3002,14,2,f +1469,3002,15,2,f +1469,3003,4,6,f +1469,3003,14,6,f +1469,3003,1,6,f +1469,3003,0,4,f +1469,3003,2,4,f +1469,3003,15,8,f +1469,3003,7,4,f +1469,3004,15,8,f +1469,3004,7,10,f +1469,3004,14,8,f +1469,3004,2,4,f +1469,3004,1,8,f +1469,3004,0,4,f +1469,3004,4,12,f +1469,3005pe1,14,2,f +1469,3006,2,1,f +1469,30076,4,1,f +1469,30076,1,1,f +1469,3008,1,2,f +1469,3008,15,3,f +1469,3008,14,2,f +1469,3009,14,2,f +1469,3009,1,2,f +1469,3010,1,6,f +1469,3010,4,6,f +1469,3010,14,6,f +1469,3010,0,4,f +1469,3010,15,6,f +1469,3010,2,4,f +1469,3010,7,6,f +1469,3010p72,4,1,f +1469,3020,0,2,f +1469,3020,7,2,f +1469,3020,4,2,f +1469,3022,0,2,f +1469,30248,0,1,f +1469,30248,7,1,f +1469,30285,7,4,f +1469,30285,14,4,f +1469,30285,15,4,f +1469,3033,4,1,f +1469,3034,7,2,f +1469,3034,0,2,f +1469,3035,14,1,f +1469,3035,15,1,f +1469,3035,8,1,f +1469,3036,4,1,f +1469,30364,8,2,f +1469,30365,8,2,f +1469,30391,0,12,f +1469,3039pc5,7,2,f +1469,3297,4,1,f +1469,3297,14,2,f +1469,3297px9,15,1,f +1469,3298,2,2,f +1469,3298,8,2,f +1469,3298,15,2,f +1469,3298,14,4,f +1469,3298p72,14,1,f +1469,3298pb002,4,1,f +1469,33303,14,3,f +1469,3623,15,2,f +1469,3747a,2,2,f +1469,3747a,8,2,f +1469,3747a,4,2,f +1469,3747a,14,2,f +1469,3795,4,2,f +1469,3795,7,2,f +1469,3823,41,1,f +1469,3829c01,4,1,f +1469,3829c01,7,1,f +1469,3829c01,0,1,f +1469,3832,7,2,f +1469,3857,2,1,f +1469,3941,383,1,f +1469,3941,42,2,f +1469,3957a,383,2,f +1469,3957a,15,2,f +1469,3958,4,1,f +1469,4070,7,4,f +1469,4083,383,1,f +1469,4083,0,2,f +1469,4132,4,1,f +1469,4133,15,1,f +1469,4175,7,2,f +1469,4286,8,6,f +1469,4287,8,2,f +1469,4495b,4,2,f +1469,4727,2,2,f +1469,4728,1,2,f +1469,4872,41,2,f +1469,6064,2,1,f +1469,6079,0,2,f +1469,6160c01,4,2,f +1469,6234,15,1,f +1469,6235,4,1,f +1469,6249,8,2,f +1469,71075,383,2,f +1469,71076,383,2,f +1469,73590c02a,0,2,f +1469,cre004,9999,1,f +1469,cre005,9999,1,f +1469,cre006,9999,1,f +1470,2780,0,3,f +1470,32013,0,1,f +1470,32054,0,2,f +1470,32056,8,2,f +1470,32062,0,3,f +1470,32073,0,1,f +1470,32123b,7,4,f +1470,32166,8,2,f +1470,32184,0,1,f +1470,32306,15,1,f +1470,32307,8,2,f +1470,32310pb01,15,1,f +1470,32311,15,2,f +1470,32439a,41,2,f +1470,3647,15,1,f +1470,3648b,15,1,f +1470,3705,0,2,f +1470,3706,0,2,f +1470,3749,7,2,f +1470,4497,41,2,f +1470,4716,15,1,f +1470,6536,0,2,f +1470,6536,15,2,f +1470,78c07,15,2,f +1470,rb00182,15,1,t +1471,2341,15,2,f +1471,2348b,33,1,f +1471,2349a,15,1,f +1471,2399,15,1,f +1471,2412b,15,2,f +1471,2419,15,1,f +1471,2421,0,1,f +1471,2431,15,2,f +1471,2432,4,2,f +1471,2445,15,2,f +1471,2446,4,1,f +1471,2447,41,1,f +1471,2452,0,1,f +1471,2460,1,1,f +1471,2479,7,1,f +1471,2483,41,1,f +1471,2736,7,1,f +1471,2873,15,1,f +1471,2877,0,2,f +1471,2880,0,1,f +1471,2926,7,2,f +1471,298c02,4,3,f +1471,3003,15,1,f +1471,3005,15,2,f +1471,3009,15,1,f +1471,3010,15,1,f +1471,3010,1,1,f +1471,3021,7,1,f +1471,3022,1,1,f +1471,3022,0,1,f +1471,3023,7,2,f +1471,3023,15,5,f +1471,3023,0,5,f +1471,3024,15,1,f +1471,3024,36,1,t +1471,3024,36,1,f +1471,3024,46,4,f +1471,3024,34,1,f +1471,3031,15,2,f +1471,3034,0,2,f +1471,3039,15,2,f +1471,3068b,0,1,f +1471,3068bp12,15,1,f +1471,3068bp80,15,1,f +1471,3069b,15,5,f +1471,3069b,0,1,f +1471,3069bp02,7,1,f +1471,3176,15,1,f +1471,3460,0,2,f +1471,3460,15,1,f +1471,3460,7,2,f +1471,3491,0,1,f +1471,3623,15,2,f +1471,3626bp06,14,2,f +1471,3665,15,2,f +1471,3666,1,1,f +1471,3666,15,7,f +1471,3679,7,1,f +1471,3680,0,1,f +1471,3709,7,1,f +1471,3710,15,3,f +1471,3710,0,1,f +1471,3747b,1,1,f +1471,3794a,1,2,f +1471,3794a,0,2,f +1471,3795,15,4,f +1471,3829c01,4,1,f +1471,3832,7,2,f +1471,3839b,0,1,f +1471,4081b,15,2,f +1471,4176,41,1,f +1471,4285b,7,1,f +1471,4286,15,3,f +1471,4315,15,2,f +1471,4360,7,1,f +1471,4477,1,1,f +1471,4485,4,1,f +1471,4488,15,1,f +1471,4531,0,1,f +1471,4625,15,1,f +1471,4740,33,1,f +1471,4864a,41,2,f +1471,4865a,41,2,f +1471,4865a,7,4,f +1471,6014a,15,8,f +1471,6015,0,8,f +1471,6087,0,1,f +1471,6140,4,1,f +1471,6140,7,2,f +1471,6141,46,1,t +1471,6141,15,4,f +1471,6141,46,5,f +1471,6141,7,3,f +1471,6141,36,1,f +1471,6141,15,1,t +1471,6157,0,2,f +1471,6231,15,2,f +1471,970c00,1,2,f +1471,973px112c01,1,2,f +1472,2412b,1,1,f +1472,2413,1,1,f +1472,2432,1,1,f +1472,2489,6,2,f +1472,2526,14,1,f +1472,2555,0,4,f +1472,2655,7,1,f +1472,2743,0,2,f +1472,2815,0,2,f +1472,2952,7,1,f +1472,2983,7,1,f +1472,30103,0,2,f +1472,3020,0,1,f +1472,3021,1,1,f +1472,3022,1,1,f +1472,3023,0,1,f +1472,3023,1,2,f +1472,32005a,8,2,f +1472,3464,4,1,f +1472,3479,0,2,f +1472,3624,0,1,f +1472,3626bpx78,14,1,f +1472,3666,0,2,f +1472,3700,0,2,f +1472,3705,0,1,f +1472,3707,0,1,f +1472,3710,7,1,f +1472,3713,7,3,f +1472,3730,1,2,f +1472,3794a,7,1,f +1472,3795,0,1,f +1472,3829c01,1,1,f +1472,3832,0,1,f +1472,3849,7,2,f +1472,3956,1,2,f +1472,4083,0,1,f +1472,4085c,1,1,f +1472,4110153,9999,1,f +1472,4185,6,2,f +1472,4265b,7,2,f +1472,4589,57,5,f +1472,4740,57,2,f +1472,476,8,2,f +1472,4865a,33,1,f +1472,6126a,57,1,f +1472,6133,0,1,f +1472,6141,0,2,f +1472,6628,0,2,f +1472,71342,334,2,f +1472,85546,14,1,t +1472,85546,14,1,f +1472,970c00,8,1,f +1472,973p28c01,0,1,f +1472,x66px4,47,2,f +1475,132a,0,10,f +1475,242c01,4,14,f +1475,3001a,14,3,f +1475,3002a,14,5,f +1475,3003,0,1,f +1475,3003,47,1,f +1475,3003,14,1,f +1475,3004,1,2,f +1475,3004,47,1,f +1475,3004p50,4,1,f +1475,3005,14,4,f +1475,3009,1,2,f +1475,3009,0,2,f +1475,3009,47,1,f +1475,3009p01,1,1,f +1475,3010,1,2,f +1475,3010,0,2,f +1475,3010,47,1,f +1475,3020,1,1,f +1475,3020,4,1,f +1475,3020,0,1,f +1475,3022,0,2,f +1475,3022,14,1,f +1475,3022,1,1,f +1475,3023,14,2,f +1475,3023,0,2,f +1475,3026,4,1,f +1475,3030,14,1,f +1475,3034,4,2,f +1475,3035,0,1,f +1475,3037,14,3,f +1475,3039,47,1,f +1475,3062a,0,1,f +1475,3149c01,4,1,f +1475,3176,4,1,f +1475,3315,4,2,f +1475,3324c01,4,3,f +1475,3404ac01,0,2,f +1475,3433,14,1,f +1475,3597,4,1,f +1475,498,0,2,f +1475,56823,0,1,f +1475,586c01,14,1,f +1475,7049b,0,6,f +1475,709,1,1,f +1475,711,1,1,f +1475,799c800,0,1,f +1475,801,1,1,f +1475,802,1,1,f +1475,804,0,1,f +1476,43559,135,1,f +1476,60176,4,2,f +1476,60894,4,1,f +1476,60896,25,2,f +1476,60899,25,2,f +1476,60901,42,1,f +1476,64251,4,2,f +1476,64297pat0001,4,1,f +1476,87788,4,1,f +1476,87788,297,1,f +1476,87790,25,1,f +1476,87790,4,2,f +1476,87791,4,2,f +1478,10113pr0002,70,1,f +1478,21845,70,1,f +1478,3626cpr2088,78,1,f +1478,88001,70,1,f +1478,88646,0,1,f +1478,970c00pr1170,84,1,f +1478,973pr3662c01,84,1,f +1479,2489,308,1,f +1479,30374,0,3,f +1479,30385,82,1,f +1479,30385,80,1,f +1479,33172,308,1,f +1479,3626bpr0389,14,1,f +1479,3626bpr0433,14,1,f +1479,3626bpr0458,14,1,f +1479,3626bpr0499,14,1,f +1479,3626bpr0500,14,1,f +1479,3837,72,1,f +1479,3841,72,1,f +1479,41879a,70,5,f +1479,4522,0,1,f +1479,53705,134,6,f +1479,59231pr0002,72,3,f +1479,60747,80,1,f +1479,60747,82,1,f +1479,60748,80,1,f +1479,60748,134,2,f +1479,60749,308,2,f +1479,60750,484,2,f +1479,60750,0,1,f +1479,6126a,182,1,f +1479,973pr1212c01,72,2,f +1479,973pr1321c01,72,3,f +1480,107pr0001,15,1,f +1480,27bc01,14,2,f +1480,3001apb02,15,1,f +1480,3002a,15,1,f +1480,3003,15,1,f +1480,3004,4,2,f +1480,3004,15,19,f +1480,3004pb011,4,1,f +1480,3005,15,8,f +1480,3006,15,1,f +1480,3008,15,6,f +1480,3009,15,19,f +1480,3034,15,1,f +1480,3035,7,8,f +1480,3036,7,5,f +1480,3062a,47,8,f +1480,3081bc01,14,2,f +1480,33bc01,14,1,f +1480,604c01,14,1,f +1480,649pb02,14,1,f +1480,820,7,2,f +1480,821,7,2,f +1480,823a,47,2,f +1480,bb300lr,47,4,f +1480,x1721,14,2,f +1481,2357,15,5,f +1481,2377,15,1,f +1481,2412b,71,4,f +1481,2431,27,3,f +1481,2435,2,1,f +1481,2445,15,1,f +1481,2453a,15,4,f +1481,2454a,15,3,f +1481,2736,71,1,f +1481,2921,15,2,f +1481,298c02,0,2,f +1481,298c02,0,2,t +1481,3001,15,5,f +1481,3001,29,8,f +1481,30016,29,2,f +1481,3002,29,6,f +1481,3003,15,2,f +1481,3004,26,5,f +1481,3004,0,2,f +1481,3004,15,9,f +1481,3005,114,10,f +1481,3005,33,3,f +1481,3005,182,1,f +1481,30055,15,1,f +1481,3007,15,2,f +1481,3008,15,8,f +1481,3009,15,5,f +1481,3010,15,9,f +1481,30111,15,1,f +1481,30144,15,1,f +1481,30185c04,5,1,f +1481,3020,0,1,f +1481,3021,15,1,f +1481,3023,27,3,f +1481,30236,71,1,f +1481,3028,15,1,f +1481,3031,27,3,f +1481,3031,15,3,f +1481,3032,0,1,f +1481,3032,25,1,f +1481,3032,15,3,f +1481,3035,29,1,f +1481,30367b,71,1,f +1481,30374,15,3,f +1481,3040b,5,12,f +1481,3040b,15,2,f +1481,30565,15,4,f +1481,30613,15,1,f +1481,3062b,27,18,f +1481,3065,114,8,f +1481,3068b,15,1,f +1481,3069b,15,1,f +1481,3069b,27,2,f +1481,33006,4,1,f +1481,33009,26,1,f +1481,33050,5,1,f +1481,33051,10,3,f +1481,33057,484,1,f +1481,33061,34,2,f +1481,3307,15,4,f +1481,33078,4,2,f +1481,33085,14,1,f +1481,33125,484,2,f +1481,33230,5,1,f +1481,33291,5,2,t +1481,33291,5,4,f +1481,3455,15,2,f +1481,3471,2,1,f +1481,3622,15,6,f +1481,3626b,15,4,f +1481,3626b,14,1,f +1481,3659,15,10,f +1481,3666,15,1,f +1481,3684,15,2,f +1481,3710,25,4,f +1481,3710,27,3,f +1481,3741,2,1,t +1481,3741,2,2,f +1481,3742,5,6,f +1481,3742,5,2,t +1481,3747b,15,2,f +1481,3794a,70,1,f +1481,3794a,15,1,f +1481,3830,15,2,f +1481,3831,15,2,f +1481,3837,72,1,f +1481,3852b,462,1,f +1481,3857,212,1,f +1481,3867,212,1,f +1481,3898,45,1,f +1481,3899,45,4,f +1481,3937,0,2,f +1481,3938,0,2,f +1481,3940b,26,3,f +1481,3942c,85,1,f +1481,3957a,80,1,f +1481,4032a,70,1,f +1481,4085c,71,1,f +1481,4132,15,4,f +1481,4150,0,2,f +1481,4150pr0001,15,1,f +1481,41539,143,1,f +1481,4215b,15,1,f +1481,4215b,41,1,f +1481,4222a,26,2,f +1481,4286,26,18,f +1481,4325,5,1,f +1481,43337,15,2,f +1481,4429,41,1,f +1481,44359pat0002,15,1,f +1481,44570,15,1,f +1481,4460b,15,2,f +1481,44728,15,1,f +1481,44728,0,1,f +1481,4523,27,2,f +1481,4532,25,2,f +1481,4536,15,2,f +1481,4589,36,1,f +1481,4589,29,1,f +1481,4589,182,5,f +1481,4589,46,4,f +1481,4589,297,3,f +1481,4599a,71,1,f +1481,46212,41,10,f +1481,4623,14,1,f +1481,4728,45,4,f +1481,4740,45,1,f +1481,47682,272,1,f +1481,48183,14,1,f +1481,50950,15,4,f +1481,52107,0,1,f +1481,54869,36,1,f +1481,57894,29,5,f +1481,59349,15,3,f +1481,6019,0,2,f +1481,6019,15,2,f +1481,6020,71,1,f +1481,60594,15,1,f +1481,60603,47,2,f +1481,6111,15,4,f +1481,6112,15,2,f +1481,6126a,57,1,f +1481,6141,36,1,t +1481,6141,33,1,t +1481,6141,41,2,t +1481,6141,33,2,f +1481,6141,0,3,f +1481,6141,41,3,f +1481,6141,5,2,f +1481,6141,5,1,t +1481,6141,46,1,t +1481,6141,57,1,t +1481,6141,0,1,t +1481,6141,36,3,f +1481,6141,46,2,f +1481,6141,70,3,f +1481,6141,57,16,f +1481,6141,70,1,t +1481,6162,5,2,f +1481,6165,29,2,f +1481,6182,15,2,f +1481,6186,462,1,f +1481,6191,15,2,f +1481,6195,15,2,f +1481,6196,47,1,f +1481,6197b,27,1,f +1481,6197b,73,2,f +1481,6198,15,1,f +1481,6206,15,1,f +1481,6255,10,3,f +1481,6256,82,4,f +1481,6936,297,2,f +1481,6945,4,1,f +1481,7586stk01,9999,1,t +1481,7586stk02,9999,1,t +1481,95120,27,1,f +1481,belvfem79,9999,1,f +1481,pillow05,191,2,f +1481,x1925cx1,1,1,f +1481,x248pb01,462,1,f +1482,32034,0,1,f +1482,32062,0,1,f +1482,32073,0,1,f +1482,32174,0,4,f +1482,32174,2,2,f +1482,32269,7,1,f +1482,32270,7,3,f +1482,32474,0,1,t +1482,32474,0,2,f +1482,32475,2,2,f +1482,32482,27,2,f +1482,32489,2,1,f +1482,32553,7,1,f +1482,32554,42,1,f +1482,3706,0,1,f +1482,3713,7,2,f +1482,43093,0,1,f +1482,43557,27,2,f +1482,43558,179,1,f +1482,43559,179,2,f +1482,43614,2,1,f +1482,44033,179,2,f +1482,4519,0,3,f +1483,2780,0,16,f +1483,3673,7,32,f +1483,3749,7,8,f +1483,4274,7,8,f +1484,16542,7,1,f +1484,2343,7,2,f +1484,2356,15,1,f +1484,2356,4,1,f +1484,2412b,4,3,f +1484,2421,0,1,f +1484,2431,14,1,f +1484,2432,4,3,f +1484,2435,2,2,f +1484,2437,41,1,f +1484,2446,15,1,f +1484,2446,4,1,f +1484,2447,33,2,f +1484,2447,41,1,f +1484,2454a,4,2,f +1484,2456,15,1,f +1484,2456,4,4,f +1484,2460,7,1,f +1484,2479,0,1,f +1484,2486,4,2,f +1484,2486,14,1,f +1484,2539,8,1,f +1484,2540,1,3,f +1484,2569,0,1,f +1484,2569,4,1,f +1484,298c02,15,2,f +1484,3001,4,1,f +1484,3001,0,1,f +1484,3003,2,2,f +1484,3003,15,1,f +1484,3003,14,1,f +1484,3004,4,1,f +1484,3004,15,1,f +1484,3006,0,1,f +1484,3006,4,1,f +1484,3009,15,4,f +1484,3009,0,1,f +1484,3010,4,3,f +1484,30104,8,1,f +1484,3010p70,4,5,f +1484,3010p72,4,2,f +1484,3010pr0016,0,1,f +1484,3010px1,4,3,f +1484,30179,4,1,f +1484,30180,15,2,f +1484,30180,4,1,f +1484,30180,7,2,f +1484,30181,0,1,f +1484,30182,0,1,f +1484,30182,4,1,f +1484,30183,7,1,f +1484,30183,4,1,f +1484,30184,4,1,f +1484,30185c05,0,1,f +1484,30187c01,0,1,f +1484,3020,15,1,f +1484,30235,0,2,f +1484,30237a,7,2,f +1484,30237a,14,2,f +1484,30248,0,2,f +1484,30250pr01,15,1,f +1484,30251,41,1,f +1484,30256,7,5,f +1484,30256,15,1,f +1484,30257,4,2,f +1484,30257,15,3,f +1484,30257,1,2,f +1484,30258p02,14,1,f +1484,30258p04,15,1,f +1484,30258pb006,15,1,f +1484,30259p02,15,1,f +1484,30259p03,15,1,f +1484,30261p03,15,1,f +1484,30261px6,15,1,f +1484,30262,0,1,f +1484,30263,7,1,f +1484,30277,0,1,f +1484,30343c02,0,1,f +1484,30350b,7,2,f +1484,3039,33,2,f +1484,3039,14,1,f +1484,3039pc2,15,1,f +1484,3039pc5,7,1,f +1484,3040b,33,10,f +1484,3040b,15,1,f +1484,3040p04,7,1,f +1484,3062b,46,2,f +1484,3062b,14,2,f +1484,3062b,7,2,f +1484,3068b,7,1,f +1484,3068bp70,15,1,f +1484,3069bp02,7,1,f +1484,3069bp13,15,2,f +1484,3069bp52,15,2,f +1484,3069bpr0016,15,2,f +1484,3069bpr0099,15,3,f +1484,3135c02,4,1,f +1484,3297px14,14,1,f +1484,3314,0,1,f +1484,3317,14,1,f +1484,3324c01,7,2,f +1484,3403c01,4,2,f +1484,3433,14,1,f +1484,3460,0,2,f +1484,3622,1,2,f +1484,3622,4,2,f +1484,3626b,15,1,f +1484,3626bp02,14,2,f +1484,3626bp04,14,1,f +1484,3626bp05,14,1,f +1484,3660,7,4,f +1484,3666,0,2,f +1484,3710,7,3,f +1484,3741,2,1,f +1484,3742,14,3,f +1484,3742,14,1,t +1484,3754,4,2,f +1484,3795,15,1,f +1484,3823,41,2,f +1484,3829c01,15,3,f +1484,3834,15,1,f +1484,3835,0,2,f +1484,3838,14,2,f +1484,3865,2,3,f +1484,3941,4,2,f +1484,3941,42,2,f +1484,3962b,0,2,f +1484,4032a,0,1,f +1484,4079,1,2,f +1484,4083,15,1,f +1484,4083,0,2,f +1484,4085c,4,2,f +1484,4207,15,6,f +1484,4208,0,1,f +1484,4209,4,2,f +1484,4211,14,1,f +1484,4285b,0,1,f +1484,4345b,14,3,f +1484,4346pb01,14,3,f +1484,4349,1,4,f +1484,4485,4,2,f +1484,4485,0,1,f +1484,4488,15,1,f +1484,4533,14,2,f +1484,4533,33,4,f +1484,4595,0,1,f +1484,4599a,14,3,f +1484,4600,7,3,f +1484,4623,15,6,f +1484,4740,14,1,f +1484,4740,0,2,f +1484,4865a,14,3,f +1484,4865a,15,2,f +1484,55295,8,1,f +1484,55296,8,1,f +1484,55297,8,1,f +1484,55298,8,2,f +1484,55299,8,1,f +1484,55300,8,1,f +1484,6014a,15,20,f +1484,6014a,14,4,f +1484,6015,0,25,f +1484,6016,7,1,f +1484,6019,15,1,f +1484,611p01,2,1,f +1484,612p01,2,1,f +1484,6140,4,1,f +1484,6141,46,3,f +1484,6141,36,3,f +1484,6141,33,2,f +1484,6158,0,1,f +1484,6160c01,0,1,f +1484,6212,0,1,f +1484,76041c01,0,1,f +1484,890p01,15,1,f +1484,92410,4,4,f +1484,970c00,0,2,f +1484,970c00,4,1,f +1484,970c00,1,1,f +1484,973p28c01,0,1,f +1484,973pb0113c01,15,1,f +1484,973px67c01,0,1,f +1484,973px9c01,0,1,f +1484,firec006,-1,1,f +1484,firec023,-1,1,f +1485,10201,0,2,f +1485,11213,71,2,f +1485,11477,308,2,f +1485,11477,4,1,f +1485,13548,1,2,f +1485,14769,0,3,f +1485,15068,308,14,f +1485,15208,15,2,f +1485,15462,28,2,f +1485,17485,71,1,f +1485,18649,0,4,f +1485,22385pr0005,57,1,f +1485,22385pr0006,47,1,f +1485,22388,297,6,f +1485,22388,297,1,t +1485,22388,179,6,f +1485,22388,179,1,t +1485,22391,272,1,f +1485,22400,179,1,f +1485,22408,179,1,f +1485,22411,320,1,f +1485,24093pr0006,46,1,f +1485,24097,179,1,f +1485,24324,297,1,f +1485,24377,4,1,f +1485,2446,4,1,f +1485,2462,72,4,f +1485,2476a,71,1,f +1485,2540,1,1,f +1485,2780,0,1,t +1485,2780,0,6,f +1485,2817,71,2,f +1485,3002,4,2,f +1485,3003,14,1,f +1485,3004,4,2,f +1485,3010,0,3,f +1485,30136,308,4,f +1485,3022,72,11,f +1485,3023,182,10,f +1485,30294,57,1,f +1485,3035,72,1,f +1485,30375,1,1,f +1485,3045,0,6,f +1485,3049c,308,2,f +1485,3069bpr0157,19,1,f +1485,32000,0,4,f +1485,32062,4,1,f +1485,32064a,71,5,f +1485,32187,71,2,f +1485,32187,179,1,f +1485,32250,0,2,f +1485,32278,0,2,f +1485,32291,71,2,f +1485,32316,0,2,f +1485,32474,0,1,f +1485,32474pr1003,4,1,f +1485,32474pr1004,4,1,f +1485,32474pr1007,25,1,f +1485,32474pr1008,25,1,f +1485,32530,0,1,f +1485,33299a,0,4,f +1485,3626cpr1780,14,1,f +1485,3626cpr1796,4,1,f +1485,3665,0,2,f +1485,3666,70,1,f +1485,3679,71,1,f +1485,3680,0,1,f +1485,3701,71,2,f +1485,3710,4,3,f +1485,3713,71,1,f +1485,3713,71,1,t +1485,3747a,0,5,f +1485,3795,308,2,f +1485,3895,72,2,f +1485,40490,72,1,f +1485,4081b,4,2,f +1485,41764,0,1,f +1485,41765,0,1,f +1485,42610,71,1,f +1485,4274,1,2,t +1485,4274,1,10,f +1485,43093,1,2,f +1485,43710,0,1,f +1485,43711,0,1,f +1485,44301a,72,4,f +1485,44375b,0,2,f +1485,44728,0,6,f +1485,44728,4,1,f +1485,4505,308,1,f +1485,4733,0,1,f +1485,47759,308,2,f +1485,48729b,57,4,f +1485,48729b,57,1,t +1485,48989,71,1,f +1485,49668,15,8,f +1485,50747pr0001b,4,1,f +1485,50747pr0002b,4,1,f +1485,50860,272,1,f +1485,50950,272,1,f +1485,54200,4,1,t +1485,54200,4,2,f +1485,54383,320,1,f +1485,54384,320,1,f +1485,55013,72,2,f +1485,60169,182,2,f +1485,6019,1,1,f +1485,60477,308,2,f +1485,60483,71,1,f +1485,60849,71,2,f +1485,60849,71,1,t +1485,61184,71,1,f +1485,61409,72,4,f +1485,6141,57,1,t +1485,6141,57,8,f +1485,6141,182,1,t +1485,6141,182,4,f +1485,62462,0,2,f +1485,63868,1,1,f +1485,63868,4,1,f +1485,63868,0,8,f +1485,64867pr0001,182,2,f +1485,6536,0,3,f +1485,6553,72,2,f +1485,6558,1,9,f +1485,85959pat0003,36,2,f +1485,85984,71,1,f +1485,87083,72,2,f +1485,87087,0,2,f +1485,87620,0,4,f +1485,92338,0,2,f +1485,970c00pr0936,72,1,f +1485,970c00pr0945,4,1,f +1485,973pr3149c01,72,1,f +1485,973pr3160c01,4,1,f +1485,98313,179,2,f +1485,99021,72,1,f +1485,99207,0,4,f +1485,99780,72,2,f +1485,99781,71,2,f +1486,2412b,72,2,f +1486,2419,15,1,f +1486,3020,72,1,f +1486,3021,71,1,f +1486,3021,15,1,f +1486,3022,25,2,f +1486,3022,15,2,f +1486,3031,71,1,f +1486,3034,72,1,f +1486,30503,15,2,f +1486,30602,40,1,f +1486,3062b,72,2,f +1486,3069b,4,2,f +1486,3623,4,1,f +1486,3794b,25,7,f +1486,3942c,4,1,f +1486,4081b,72,2,f +1486,44728,25,1,f +1486,51739,15,1,f +1486,54200,72,4,f +1486,54200,72,1,t +1486,54200,36,1,f +1486,54200,40,1,f +1486,54200,36,1,t +1486,54200,40,1,t +1486,60477,4,1,f +1486,6141,36,2,f +1486,6141,36,1,t +1486,87087,72,2,f +1487,sh043,-1,1,f +1489,2357,378,509,f +1489,2357,14,9,f +1489,2420,14,4,f +1489,2420,378,63,f +1489,2456,14,4,f +1489,2456,378,195,f +1489,3001,378,415,f +1489,3002,378,327,f +1489,3003,14,1,f +1489,3003,378,93,f +1489,3004,378,216,f +1489,3004,14,6,f +1489,3005,14,2,f +1489,3005,378,115,f +1489,3007,378,130,f +1489,3008,378,25,f +1489,3009,378,87,f +1489,3010,14,2,f +1489,3010,378,159,f +1489,3020,378,14,f +1489,3021,378,13,f +1489,3022,14,1,f +1489,3022,378,19,f +1489,3023,378,51,f +1489,3024,378,36,f +1489,3034,378,1,f +1489,30361a,378,4,t +1489,3040b,378,4,f +1489,3062b,378,28,f +1489,3063b,378,4,f +1489,3069b,378,1,f +1489,3070b,378,4,f +1489,3460,378,5,f +1489,3622,14,2,f +1489,3622,378,220,f +1489,3623,378,30,f +1489,3665,378,8,f +1489,3666,378,7,f +1489,3700,378,2,f +1489,3710,378,19,f +1489,3747a,378,1,f +1489,3749,7,1,f +1489,3794a,378,53,f +1489,3795,378,3,f +1489,3811,7,1,f +1489,3941,378,4,f +1489,3942c,378,1,f +1489,4274,7,3,f +1489,4286,378,1,f +1491,6256,191,1,f +1491,92586pr0003,15,1,f +1491,93160,15,1,t +1491,93160,15,1,f +1492,2780,0,5,f +1492,32013,71,1,f +1492,32062,0,1,f +1492,32174,182,5,f +1492,32199,72,1,f +1492,3705,0,1,f +1492,43093,1,1,f +1492,4519,71,2,f +1492,47297,320,2,f +1492,47306,320,1,f +1492,50898,182,4,f +1492,53542,320,2,f +1492,53543,320,2,f +1492,53544,320,2,f +1492,53545,320,1,f +1492,53547,297,1,f +1492,53548,320,2,f +1492,53550,320,1,f +1492,53558pat01,27,1,f +1492,53560,320,1,f +1492,53585,0,1,f +1492,54271,297,1,f +1492,54821,42,4,f +1492,55824,297,1,f +1492,59426,72,1,f +1492,6558,0,1,f +1493,3700,4,4,f +1493,3701,4,4,f +1493,3702,4,4,f +1493,3709,4,2,f +1493,3738,4,2,f +1493,3894,4,4,f +1494,11618,26,1,t +1494,11618,26,2,f +1494,11618,31,1,t +1494,11618,31,1,f +1494,11816pr0005,78,1,f +1494,15675,18,1,f +1494,15875pr0004c01,30,1,f +1494,2508,0,1,f +1494,3003,19,2,f +1494,3020,70,2,f +1494,3020,19,1,f +1494,3023,0,1,f +1494,3040b,322,2,f +1494,3040b,29,2,f +1494,33125,484,1,f +1494,33291,5,3,f +1494,33291,5,1,t +1494,3710,70,1,f +1494,3741,2,1,t +1494,3741,2,1,f +1494,4488,0,2,f +1494,4523,1,1,f +1494,50254,0,2,f +1494,59900,70,2,f +1494,6191,322,2,f +1494,64644,297,1,t +1494,64644,297,2,f +1494,87580,322,1,f +1494,92456pr0025c01,78,1,f +1494,93092,5,1,f +1495,10830pat0001,0,1,f +1495,11187,70,4,f +1495,11203,72,2,f +1495,11289,41,1,f +1495,11290,25,2,f +1495,11477,25,5,f +1495,11477,71,12,f +1495,12825,71,2,f +1495,13547,0,2,f +1495,14137,0,2,f +1495,14707,71,2,f +1495,14769,71,3,f +1495,15068pr0003,25,1,f +1495,15207,72,2,f +1495,15210,0,2,f +1495,15540,72,2,f +1495,15541pat0001,1,4,f +1495,16606pat0001,15,4,f +1495,18738,71,1,f +1495,18738,71,1,t +1495,2335,15,1,f +1495,2412b,71,4,f +1495,2412b,25,1,f +1495,2421,0,1,f +1495,2431,25,16,f +1495,2432,72,3,f +1495,2432,0,4,f +1495,2432,15,2,f +1495,2447,40,1,t +1495,2447,40,1,f +1495,2460,72,1,f +1495,2465,72,1,f +1495,2479,0,1,f +1495,2540,0,2,f +1495,2569,0,2,f +1495,2569,0,2,t +1495,2584,0,1,f +1495,2585,71,1,f +1495,2614,0,1,f +1495,2654,71,1,f +1495,2780,0,11,f +1495,2780,0,2,t +1495,2877,71,1,f +1495,298c02,71,2,f +1495,298c02,71,2,t +1495,3001,0,2,f +1495,3001,25,1,f +1495,3003,25,11,f +1495,3003,72,2,f +1495,30031,0,1,f +1495,3004,25,10,f +1495,3004,15,1,f +1495,3004,72,4,f +1495,3005,25,4,f +1495,3005,4,1,f +1495,3008,72,2,f +1495,3009,25,3,f +1495,3010,1,2,f +1495,3010,71,2,f +1495,3010,72,1,f +1495,3010,25,5,f +1495,30150,70,1,f +1495,30162,71,1,f +1495,30171,0,1,f +1495,30194,72,1,f +1495,3020,25,2,f +1495,3020,15,7,f +1495,3020,72,3,f +1495,3021,25,1,f +1495,3022,15,11,f +1495,3022,0,4,f +1495,3023,46,2,f +1495,3023,25,9,f +1495,3023,15,11,f +1495,3023,71,8,f +1495,3023,0,5,f +1495,3023,72,4,f +1495,30236,71,1,f +1495,3024,25,2,f +1495,3024,47,1,t +1495,3024,25,1,t +1495,3024,14,1,t +1495,3024,14,3,f +1495,3024,47,1,f +1495,3028,72,2,f +1495,3029,72,1,f +1495,30293,41,2,f +1495,30294,41,2,f +1495,3030,72,1,f +1495,3031,71,2,f +1495,3032,72,2,f +1495,3033,72,2,f +1495,3034,0,1,f +1495,3034,15,1,f +1495,30350b,41,2,f +1495,3036,71,2,f +1495,30385,80,3,f +1495,30387,14,1,f +1495,30388,14,1,f +1495,30389b,0,1,f +1495,30395,72,1,f +1495,3040b,25,4,f +1495,30414,0,1,f +1495,30414,15,1,f +1495,30553,72,2,f +1495,30586,71,2,f +1495,3062b,34,1,f +1495,3062b,36,1,f +1495,3068b,25,4,f +1495,3068b,15,1,f +1495,3069b,0,1,f +1495,3069bp02,71,1,f +1495,32028,15,2,f +1495,32064b,14,2,f +1495,32073,71,2,f +1495,32123b,14,1,t +1495,32123b,14,2,f +1495,3245c,25,8,f +1495,32530,72,2,f +1495,3456,72,1,f +1495,3460,0,2,f +1495,3460,71,7,f +1495,3460,15,6,f +1495,3622,72,2,f +1495,3623,15,11,f +1495,3626cpr0914,14,1,f +1495,3626cpr1147,14,1,f +1495,3626cpr1395a,14,1,f +1495,3626cpr1410,14,2,f +1495,3626cpr1420,14,1,f +1495,3626cpr1440,14,1,f +1495,3666,15,5,f +1495,3700,72,8,f +1495,3700,71,2,f +1495,3702,71,1,f +1495,3705,0,2,f +1495,3710,0,3,f +1495,3713,4,1,t +1495,3713,4,1,f +1495,3747b,25,1,f +1495,3749,19,3,f +1495,3794b,25,4,f +1495,3794b,4,2,f +1495,3795,72,1,f +1495,3795,71,6,f +1495,3795,0,1,f +1495,3821,25,1,f +1495,3822,25,1,f +1495,3829c01,71,1,f +1495,3832,71,1,f +1495,3839b,71,1,f +1495,3899,4,2,f +1495,3940b,0,18,f +1495,3941,15,2,f +1495,3957a,0,1,f +1495,3962b,0,2,f +1495,4032a,14,1,f +1495,4079b,70,2,f +1495,4079b,15,1,f +1495,4081b,14,1,f +1495,4081b,72,2,f +1495,4083,14,1,f +1495,41239,0,2,f +1495,41334,272,1,f +1495,4176,41,1,f +1495,4182,0,1,f +1495,4183,41,1,f +1495,4274,1,2,f +1495,4274,1,1,t +1495,4286,72,2,f +1495,4287,72,2,f +1495,43093,1,4,f +1495,4360,0,1,f +1495,44375b,15,1,f +1495,44661,15,1,f +1495,4488,71,1,f +1495,4510,15,1,f +1495,4519,71,2,f +1495,4697b,71,1,t +1495,4697b,71,1,f +1495,4733,0,1,f +1495,4740,15,2,f +1495,476,0,1,f +1495,47720,0,1,f +1495,47755,25,1,f +1495,47973,72,1,f +1495,48336,71,4,f +1495,48336,71,1,t +1495,4865b,71,2,f +1495,4871,72,2,f +1495,50949,0,4,f +1495,50950,25,2,f +1495,51739,72,1,f +1495,51739,15,1,f +1495,52031,25,1,f +1495,54200,14,1,t +1495,54200,14,2,f +1495,54200,47,1,t +1495,54200,25,2,f +1495,54200,47,2,f +1495,54200,25,1,t +1495,55978,0,1,f +1495,55981,71,1,f +1495,56145,71,1,f +1495,56823c50,0,1,t +1495,56823c50,0,2,f +1495,57520,0,6,f +1495,59443,4,2,f +1495,59443,14,1,f +1495,59900,182,2,f +1495,59900,72,2,f +1495,60471,15,2,f +1495,60478,71,4,f +1495,60581,71,1,f +1495,60601,41,18,f +1495,6081,25,6,f +1495,60849,71,1,t +1495,60849,71,2,f +1495,60897,25,2,f +1495,60897,15,8,f +1495,6091,4,1,f +1495,6112,72,1,f +1495,6117,72,1,f +1495,61252,0,4,f +1495,61252,15,4,f +1495,61345,25,9,f +1495,6141,25,2,t +1495,6141,47,3,t +1495,6141,47,9,f +1495,6141,71,8,f +1495,6141,25,2,f +1495,6141,71,1,t +1495,61485,0,1,f +1495,61487,25,6,f +1495,6232,14,4,f +1495,6232,72,2,f +1495,62462,4,3,f +1495,62462,15,2,f +1495,63082,71,1,f +1495,63864,72,1,f +1495,63868,71,2,f +1495,63868,15,5,f +1495,64448,15,2,f +1495,64567,71,1,f +1495,64567,71,1,t +1495,64648,179,2,f +1495,64713,179,1,f +1495,6587,28,1,f +1495,6636,14,3,f +1495,6636,25,1,f +1495,6636,71,2,f +1495,6636,72,3,f +1495,71155,0,1,f +1495,74698,0,1,f +1495,85984,15,2,f +1495,85984,0,1,f +1495,85984,25,3,f +1495,86208,71,1,f +1495,87079,25,1,f +1495,87079,1,2,f +1495,87079,71,2,f +1495,87081,0,1,f +1495,87083,72,4,f +1495,87087,72,4,f +1495,87580,71,1,f +1495,87609,25,1,f +1495,87617,0,2,f +1495,88323,72,2,t +1495,88323,72,44,f +1495,91405,72,1,f +1495,91501,15,4,f +1495,92081,308,1,f +1495,92280,71,6,f +1495,92582,71,2,f +1495,92715c01,72,1,f +1495,92947,71,3,f +1495,96874,25,1,t +1495,970c00,28,1,f +1495,970c00,272,1,f +1495,970c00,1,1,f +1495,970c00pr0645,1,4,f +1495,973pr1709c01,1,1,f +1495,973pr2641c01,25,3,f +1495,973pr2661c01,25,1,f +1495,973pr2678c01,70,1,f +1495,973pr2693c01,15,1,f +1495,98138,47,2,f +1495,98138,36,1,t +1495,98138,47,1,t +1495,98138,36,2,f +1495,98284,0,1,f +1495,98397,71,2,f +1495,98496pr0001b,15,1,f +1495,99780,0,2,f +1495,99781,71,1,f +1497,2456,1,1,f +1497,2456,15,1,f +1497,2456,14,1,f +1497,2456,4,1,f +1497,3001,0,4,f +1497,3001,15,8,f +1497,3001,4,7,f +1497,3001,14,7,f +1497,3001,1,8,f +1497,3002,4,4,f +1497,3002,0,2,f +1497,3002,15,4,f +1497,3002,14,4,f +1497,3002,1,4,f +1497,3003,15,10,f +1497,3003,1,10,f +1497,3003,4,8,f +1497,3003,0,4,f +1497,3003,14,8,f +1497,3004,0,10,f +1497,3004,14,16,f +1497,3004,15,20,f +1497,3004,4,16,f +1497,3004,1,20,f +1497,3005,15,20,f +1497,3005,0,12,f +1497,3005,14,17,f +1497,3005,1,20,f +1497,3005,4,17,f +1497,3008,0,2,f +1497,3008,1,2,f +1497,3008,4,4,f +1497,3008,14,4,f +1497,3008,15,2,f +1497,3009,15,8,f +1497,3009,4,6,f +1497,3009,14,6,f +1497,3009,0,2,f +1497,3009,1,8,f +1497,3010,14,12,f +1497,3010,0,8,f +1497,3010,4,12,f +1497,3010,15,14,f +1497,3010,1,14,f +1497,3622,0,4,f +1497,3622,15,8,f +1497,3622,1,8,f +1497,3622,4,6,f +1497,3622,14,6,f +1498,2412b,25,3,f +1498,2446,15,1,f +1498,2447,82,1,f +1498,2447,82,1,t +1498,2540,15,2,f +1498,3020,0,1,f +1498,3023,1,2,f +1498,30503,15,2,f +1498,3062b,33,2,f +1498,3626bpr0500,14,1,f +1498,3829c01,15,1,f +1498,3957a,15,2,f +1498,4070,15,2,f +1498,41769,15,1,f +1498,41770,15,1,f +1498,6019,0,2,f +1498,970x194,15,1,f +1498,973pr1317c01,15,1,f +1499,3626bpr1093,14,1,f +1499,87990,0,1,f +1499,88646pr0001,15,1,f +1499,970c00pr0412,15,1,f +1499,973pr2200c01,15,1,f +1499,99250pr0001,4,1,f +1500,2342,0,1,f +1500,2343,14,5,f +1500,2377,4,2,f +1500,2412b,15,4,f +1500,2419,15,2,f +1500,2420,15,2,f +1500,2421,0,1,f +1500,2431,15,9,f +1500,2432,0,2,f +1500,2446,0,1,f +1500,2447,41,1,t +1500,2447,41,1,f +1500,2449,4,4,f +1500,2460,0,1,f +1500,2479,7,1,f +1500,2483,41,1,f +1500,2610,14,1,f +1500,298c02,0,2,f +1500,298c02,0,1,t +1500,298c03,7,1,t +1500,298c03,7,9,f +1500,3001,15,1,f +1500,3002,0,2,f +1500,3003,0,1,f +1500,3004,15,10,f +1500,3004,4,12,f +1500,3005,4,8,f +1500,3008,7,4,f +1500,3008,15,2,f +1500,3009,7,4,f +1500,3010,4,4,f +1500,3021,4,2,f +1500,3021,14,3,f +1500,3023,0,3,f +1500,3023,15,7,f +1500,3023,4,2,f +1500,3024,36,2,f +1500,3024,15,2,f +1500,3024,34,1,f +1500,3024,47,2,f +1500,3028,7,2,f +1500,3029,7,1,f +1500,3034,7,2,f +1500,3034,4,1,f +1500,3035,7,1,f +1500,3036,7,1,f +1500,3037,4,1,f +1500,3038,4,2,f +1500,3039,4,1,f +1500,3039p12,4,1,f +1500,3039p12,0,1,f +1500,3040b,0,2,f +1500,3040b,4,7,f +1500,3045,4,4,f +1500,3062b,14,11,f +1500,3062b,33,1,f +1500,3069bp02,7,1,f +1500,3070b,36,1,t +1500,3070b,34,1,f +1500,3070b,36,1,f +1500,3192,4,1,f +1500,3193,4,1,f +1500,3460,7,2,f +1500,3622,4,6,f +1500,3623,14,2,f +1500,3624,0,1,f +1500,3626apr0001,14,4,f +1500,3660,7,4,f +1500,3660,4,1,f +1500,3660,15,3,f +1500,3665,4,4,f +1500,3665,0,2,f +1500,3666,0,2,f +1500,3666,4,2,f +1500,3666,15,1,f +1500,3679,7,4,f +1500,3680,4,2,f +1500,3680,0,2,f +1500,3684,1,2,f +1500,3709,4,1,f +1500,3710,15,4,f +1500,3747a,4,1,f +1500,3794a,4,4,f +1500,3794a,0,4,f +1500,3795,15,2,f +1500,3795,4,3,f +1500,3829c01,15,1,f +1500,3832,0,1,f +1500,3834,0,2,f +1500,3835,0,1,f +1500,3937,15,1,f +1500,3937,0,4,f +1500,3938,15,1,f +1500,3938,0,4,f +1500,3957a,15,1,f +1500,3958,15,1,f +1500,3960,7,1,f +1500,4031stk01,9999,1,t +1500,4070,0,2,f +1500,4070,4,12,f +1500,4079,14,2,f +1500,4081b,0,2,f +1500,4081b,15,2,f +1500,4162,0,2,f +1500,4162,4,1,f +1500,4175,15,4,f +1500,4213,4,2,f +1500,4213,15,1,f +1500,4275b,7,6,f +1500,4284,41,2,f +1500,4286,4,4,f +1500,4315,15,1,f +1500,4315,4,3,f +1500,4349,0,1,f +1500,4349,15,1,f +1500,4460a,1,2,f +1500,4477,0,2,f +1500,4477,4,1,f +1500,4477,15,3,f +1500,4488,4,1,f +1500,4531,7,6,f +1500,4589,14,2,f +1500,4589,15,1,f +1500,4599a,14,4,f +1500,4862,41,6,f +1500,4863,4,2,f +1500,4864a,4,2,f +1500,4873,14,2,f +1500,6141,33,4,f +1500,6141,33,1,t +1500,6141,15,1,t +1500,6141,46,2,t +1500,6141,46,5,f +1500,6141,47,2,f +1500,6141,15,10,f +1500,73090b,0,3,f +1500,73590c01b,14,2,f +1500,970c00,1,4,f +1500,973p0ac01,1,3,f +1500,973p18c01,1,1,f +1500,bfloat4c01,4,1,f +1502,242c01,4,2,f +1502,3001a,4,1,f +1502,3001a,14,1,f +1502,3002a,4,2,f +1502,3002a,0,1,f +1502,3003,4,1,f +1502,3003,14,1,f +1502,3003,1,1,f +1502,3004,14,17,f +1502,3004,4,1,f +1502,3004p50,14,1,f +1502,3005,4,1,f +1502,3008,4,2,f +1502,3009,4,4,f +1502,3010,4,2,f +1502,3020,4,2,f +1502,3023,4,2,f +1502,3034,14,4,f +1502,3034,4,1,f +1502,3037,4,1,f +1502,3039,4,1,f +1502,3062a,4,1,f +1502,3183b,4,1,f +1502,3184,4,1,f +1502,3456,4,1,f +1502,3482,4,2,f +1502,3483,0,4,f +1502,3612,4,2,f +1502,3613,4,2,f +1502,3614a,14,2,f +1502,3634b,0,2,f +1502,3705,79,2,f +1502,3706,79,2,f +1502,3709a,7,4,f +1502,569,4,2,f +1502,685px4,14,1,f +1502,792c03,4,1,f +1502,800,0,1,f +1502,800c01,0,1,f +1502,827,14,1,f +1502,871,0,1,f +1502,rb00170,0,1,f +1502,x148,4,3,f +1502,x197,0,1,f +1502,x407,1,1,f +1503,26562,15,1,f +1503,3626cpr1930,78,1,f +1503,62810,28,1,f +1503,88646pr0002,15,1,f +1503,970c00pr1054,15,1,f +1503,973pr3386c01,0,1,f +1504,11601,41,3,f +1504,14417,72,1,f +1504,14704,71,3,f +1504,14769pr1002,15,1,f +1504,14769pr1003,15,1,f +1504,15208,15,1,f +1504,15208,0,1,f +1504,15209,15,2,f +1504,2736,71,2,f +1504,2921,0,2,f +1504,3020,1,2,f +1504,3021,15,1,f +1504,3021,71,1,f +1504,3022,0,2,f +1504,3023,4,1,f +1504,3023,72,3,f +1504,3040b,322,2,f +1504,32064a,71,2,f +1504,3700,0,2,f +1504,3710,1,2,f +1504,43898,41,1,f +1504,4735,0,2,f +1504,48729b,0,1,t +1504,48729b,0,2,f +1504,50950,1,2,f +1504,50950,4,2,f +1504,51739,1,2,f +1504,6019,1,3,f +1504,60474,1,1,f +1504,60478,0,2,f +1504,6141,41,2,f +1504,6141,41,1,t +1504,87580,322,1,f +1504,98313,322,2,f +1504,99207,0,2,f +1504,99781,0,1,f +1505,2456,14,2,f +1505,2456,4,2,f +1505,2456,15,2,f +1505,2456,1,2,f +1505,2926,0,2,f +1505,3001,4,12,f +1505,3001,1,12,f +1505,3001,0,6,f +1505,3001,14,12,f +1505,3001,2,6,f +1505,3001,15,12,f +1505,3002,15,8,f +1505,3002,1,8,f +1505,3002,14,8,f +1505,3002,0,4,f +1505,3002,4,8,f +1505,3002,2,4,f +1505,3003,15,36,f +1505,3003,2,16,f +1505,3003,1,36,f +1505,3003,0,16,f +1505,3003,4,34,f +1505,3003,14,32,f +1505,3004,0,12,f +1505,3004,2,12,f +1505,3004,4,24,f +1505,3004,1,24,f +1505,3004,14,24,f +1505,3004,15,24,f +1505,3005,4,16,f +1505,3005,15,16,f +1505,3005,14,16,f +1505,3005,0,8,f +1505,3005,2,8,f +1505,3005,1,16,f +1505,3005pe1,14,2,f +1505,3007,4,1,f +1505,3007,1,1,f +1505,3007,14,1,f +1505,3007,15,1,f +1505,3008,15,2,f +1505,3008,1,2,f +1505,3008,14,2,f +1505,3008,4,2,f +1505,3009,14,4,f +1505,3009,15,4,f +1505,3009,4,4,f +1505,3009,1,4,f +1505,3010,15,6,f +1505,3010,1,6,f +1505,3010,4,6,f +1505,3010,14,6,f +1505,3010,0,4,f +1505,3010,2,4,f +1505,3010p01,14,1,f +1505,3020,4,2,f +1505,3020,1,2,f +1505,3021,1,2,f +1505,3021,4,2,f +1505,3022,1,2,f +1505,3022,4,2,f +1505,3032,4,1,f +1505,3034,4,2,f +1505,3035,4,1,f +1505,3039,47,2,f +1505,3062b,14,4,f +1505,3062b,4,4,f +1505,3065,47,4,f +1505,3185,4,4,f +1505,3185,0,2,f +1505,3188,14,1,f +1505,3189,14,1,f +1505,3297,4,4,f +1505,3298,4,6,f +1505,3298,14,4,f +1505,3299,4,2,f +1505,3300,4,2,f +1505,3307,4,2,f +1505,3307,15,2,f +1505,3471,2,1,f +1505,3622,4,4,f +1505,3622,1,4,f +1505,3622,2,4,f +1505,3622,0,4,f +1505,3622,15,4,f +1505,3622,14,4,f +1505,3730,1,1,f +1505,3731,1,1,f +1505,3741,2,3,f +1505,3742,4,6,f +1505,3742,15,1,t +1505,3742,4,2,t +1505,3742,15,3,f +1505,3747b,4,2,f +1505,3823,47,1,f +1505,3839b,15,2,f +1505,3937,4,1,f +1505,3957a,1,1,f +1505,3957a,15,1,f +1505,3960,4,1,f +1505,3960,15,1,f +1505,4070,1,2,f +1505,4070,4,2,f +1505,4130,15,2,f +1505,4131,0,2,f +1505,4132,15,2,f +1505,4132,4,2,f +1505,4133,72,2,f +1505,4133,15,2,f +1505,4175,0,2,f +1505,4204,2,1,f +1505,4286,4,4,f +1505,4286,14,2,f +1505,4287,4,4,f +1505,4600,71,2,f +1505,4744pr0002,4,1,f +1505,4744pr0004,2,1,f +1505,6014b,71,8,f +1505,6015,0,8,f +1505,6134,0,1,f +1505,6141,36,2,f +1505,6141,42,2,t +1505,6141,36,2,t +1505,6141,42,2,f +1509,14226c31,0,2,f +1509,14728c250,0,1,f +1509,2420,14,2,f +1509,2431,14,2,f +1509,2431,0,1,f +1509,2444,0,2,f +1509,2456,14,4,f +1509,2654,0,3,f +1509,2744,14,6,f +1509,2780,0,234,f +1509,2797c02,14,1,f +1509,2817,14,1,f +1509,2819,71,1,f +1509,2847c03,14,1,f +1509,2850a,71,6,f +1509,2851,14,6,f +1509,2852,71,6,f +1509,2853,71,2,f +1509,2854,72,2,f +1509,2905,0,14,f +1509,30155,0,2,f +1509,3021,14,1,f +1509,3022,14,3,f +1509,3023,14,13,f +1509,3023,72,2,f +1509,3032,72,1,f +1509,3034,14,1,f +1509,3035,72,1,f +1509,30622,14,2,f +1509,3069b,14,4,f +1509,32002,72,3,t +1509,32002,72,12,f +1509,32009,72,8,f +1509,32009,0,2,f +1509,32009,14,1,f +1509,32013,71,8,f +1509,32013,0,1,f +1509,32013,14,12,f +1509,32015,0,2,f +1509,32016,0,2,f +1509,32017,71,2,f +1509,32018,14,5,f +1509,32018,0,2,f +1509,32019,0,8,f +1509,32020,71,8,f +1509,32034,0,5,f +1509,32034,71,2,f +1509,32039,14,6,f +1509,32039,0,2,f +1509,32054,14,29,f +1509,32054,0,4,f +1509,32054,71,17,f +1509,32056,1,14,f +1509,32062,4,24,f +1509,32064b,14,2,f +1509,32065,14,1,f +1509,32065,0,1,f +1509,32072,14,4,f +1509,32073,71,40,f +1509,32123b,14,1,t +1509,32123b,71,4,t +1509,32123b,71,30,f +1509,32123b,14,4,f +1509,32124,0,4,f +1509,32138,71,3,f +1509,32138,0,1,f +1509,32140,72,32,f +1509,32140,14,6,f +1509,32140,0,2,f +1509,32140,1,3,f +1509,32184,0,28,f +1509,32184,71,7,f +1509,32198,71,1,f +1509,32209,72,15,f +1509,32250,0,6,f +1509,32251,0,4,f +1509,32269,71,5,f +1509,32270,71,5,f +1509,32271,14,3,f +1509,32278,71,19,f +1509,32278,14,8,f +1509,32278,0,6,f +1509,32291,0,2,f +1509,32316,71,24,f +1509,32316,0,1,f +1509,32316,14,18,f +1509,32333,71,2,f +1509,32348,71,2,f +1509,32449,14,4,f +1509,32449,71,17,f +1509,32498,0,1,f +1509,32523,72,12,f +1509,32523,14,7,f +1509,32523,71,2,f +1509,32524,71,29,f +1509,32524,14,10,f +1509,32525,71,6,f +1509,32525,14,3,f +1509,32526,71,11,f +1509,32526,14,4,f +1509,32526,1,6,f +1509,32526,0,8,f +1509,32529,0,2,f +1509,32556,71,13,f +1509,33299a,0,4,f +1509,3460,72,8,f +1509,3460,14,6,f +1509,3623,14,6,f +1509,3623,72,2,f +1509,3647,71,11,f +1509,3648b,71,1,f +1509,3650c,71,1,f +1509,3665,72,4,f +1509,3666,0,1,f +1509,3666,14,10,f +1509,3666,71,1,f +1509,3701,14,4,f +1509,3702,14,4,f +1509,3703,14,16,f +1509,3703,72,2,f +1509,3705,0,34,f +1509,3706,0,5,f +1509,3707,0,7,f +1509,3708,0,2,f +1509,3710,14,16,f +1509,3713,71,3,t +1509,3713,71,52,f +1509,3713,0,17,f +1509,3713,0,1,t +1509,3737,0,5,f +1509,3743,71,9,f +1509,3749,19,2,f +1509,3794a,71,6,f +1509,3794a,14,2,f +1509,3894,14,4,f +1509,3941,57,3,f +1509,4019,71,8,f +1509,4032a,0,3,f +1509,40490,71,1,f +1509,40490,72,11,f +1509,40490,14,4,f +1509,40490,0,2,f +1509,41239,0,14,f +1509,41239,14,7,f +1509,41239,71,2,f +1509,4162,14,14,f +1509,41672,0,2,f +1509,41677,72,6,f +1509,41677,0,2,f +1509,41677,4,12,f +1509,41677,71,4,f +1509,41678,14,2,f +1509,41767,14,4,f +1509,41768,14,4,f +1509,4185,0,2,f +1509,4185,71,3,f +1509,42003,71,19,f +1509,42003,14,3,f +1509,4274,71,20,f +1509,4274,71,3,t +1509,42908,0,1,f +1509,43093,1,106,f +1509,43857,71,1,f +1509,43857,14,2,f +1509,43857,0,2,f +1509,43857,1,2,f +1509,44294,71,30,f +1509,4477,0,2,f +1509,4519,71,55,f +1509,4697b,71,1,f +1509,4697b,71,1,t +1509,4716,0,1,f +1509,4716,71,1,f +1509,47223a,72,1,f +1509,47225,14,2,f +1509,48989,71,14,f +1509,50163,72,1,f +1509,50450,0,1,f +1509,5102c16,0,1,f +1509,5102c16,1,1,f +1509,5306bc020,0,1,f +1509,53178,14,2,f +1509,6141,36,2,f +1509,6141,47,6,f +1509,6141,57,2,t +1509,6141,57,4,f +1509,6141,47,2,t +1509,6141,36,1,t +1509,6536,71,18,f +1509,6536,72,8,f +1509,6536,0,17,f +1509,6536,14,34,f +1509,6538b,0,15,f +1509,6538b,71,27,f +1509,6539,4,1,f +1509,6541,14,2,f +1509,6542a,72,5,f +1509,6553,0,2,f +1509,6558,0,158,f +1509,6573,72,1,f +1509,6587,72,1,f +1509,6589,71,5,f +1509,6629,14,3,f +1509,6629,0,3,f +1509,6632,14,2,f +1509,6632,71,15,f +1509,6641,4,1,f +1509,70496,0,1,f +1509,75535,0,2,f +1509,76244,15,2,f +1511,3068bpfb,15,1,f +1511,3899,1,1,f +1511,4094a,4,1,f +1511,4222a,450,1,f +1511,63965,4,1,f +1512,3626bpr0389,14,1,f +1512,3834,15,1,f +1512,3962b,0,1,f +1512,970c00,0,1,f +1512,973pr1187c01,0,1,f +1513,2654,72,1,f +1513,3004,15,2,f +1513,3022,15,1,f +1513,3626bpr0752a,15,1,f +1513,3841,297,1,f +1513,4612946,9999,1,f +1513,4612947,9999,1,f +1513,4612948,9999,1,f +1513,4612949,9999,1,f +1513,4612950,9999,1,f +1513,53705,132,1,f +1513,59232,179,1,f +1513,92547pr0005,0,1,f +1513,92691,15,1,f +1513,93062c01,15,2,f +1513,93062c01,15,2,t +1513,93609,15,2,f +1513,93609,15,2,t +1513,93764pr0004,15,1,f +1513,93796pr0001,0,1,f +1515,2412b,71,4,f +1515,2420,15,2,f +1515,298c02,15,3,f +1515,298c02,15,1,t +1515,3001,72,1,f +1515,3002,15,1,f +1515,3005,71,3,f +1515,3010,15,1,f +1515,30162,72,2,f +1515,3023,0,1,f +1515,30249,15,1,f +1515,3032,71,1,f +1515,3034,15,2,f +1515,3039,15,1,f +1515,3062b,15,6,f +1515,3065,33,1,f +1515,3068b,15,1,f +1515,3069b,15,1,f +1515,3069b,0,1,f +1515,3070b,46,3,f +1515,3070b,46,1,t +1515,32028,0,1,f +1515,3460,15,1,f +1515,3665,15,1,f +1515,3710,15,4,f +1515,3747b,15,1,f +1515,3794b,71,5,f +1515,4032a,15,2,f +1515,4095,71,2,f +1515,4460b,15,2,f +1515,4589,71,3,f +1515,48336,71,1,f +1515,50304,15,1,f +1515,50305,15,1,f +1515,6019,15,4,f +1515,60470a,15,3,f +1515,6636,15,2,f +1517,11100,297,2,f +1517,15086,297,1,f +1517,15712,297,2,f +1517,24088,297,1,f +1517,3626cpr1832,14,1,f +1517,88646,0,1,f +1517,90391pr02,297,1,f +1517,970c00pr0993,297,1,f +1517,973pr3221c01,297,1,f +1519,702,1,5,f +1519,702,14,5,f +1519,702,4,5,f +1519,702,15,5,f +1520,10201,0,2,f +1520,10247,71,4,f +1520,11153,1,4,f +1520,11212,72,2,f +1520,11212,71,2,f +1520,11214,72,6,f +1520,11458,15,4,f +1520,11833,71,1,f +1520,13252,47,1,f +1520,13548,15,4,f +1520,14417,72,4,f +1520,15068,1,2,f +1520,15068,15,2,f +1520,15303,36,3,f +1520,15391,0,2,f +1520,15392,72,1,t +1520,15392,72,2,f +1520,15400,72,2,f +1520,18651,0,4,f +1520,18674,72,1,t +1520,18674,72,1,f +1520,18738,71,1,t +1520,18738,71,4,f +1520,21849pr0002,47,1,f +1520,23443,0,2,f +1520,2412b,14,3,f +1520,2412b,72,18,f +1520,2420,4,2,f +1520,2432,70,3,f +1520,2445,15,4,f +1520,2450,15,2,f +1520,2456,72,1,f +1520,2639,72,4,f +1520,2653,71,2,f +1520,2654,15,2,f +1520,2730,71,2,f +1520,2780,0,4,t +1520,2780,0,37,f +1520,28223,72,1,f +1520,2825,71,4,f +1520,28581,28,1,f +1520,28583,28,1,f +1520,2877,72,1,f +1520,3001,72,2,f +1520,3003,14,1,f +1520,3004,19,5,f +1520,3005,0,4,f +1520,3009,72,1,f +1520,3010,71,2,f +1520,3010,1,1,f +1520,3020,19,2,f +1520,3020,15,12,f +1520,3021,71,4,f +1520,3021,72,12,f +1520,3022,4,2,f +1520,3022,0,7,f +1520,3022,71,10,f +1520,3023,19,23,f +1520,3030,72,3,f +1520,3032,0,1,f +1520,3032,71,3,f +1520,3034,71,6,f +1520,3035,72,2,f +1520,3036,71,1,f +1520,30363,72,2,f +1520,30370pr0007,15,1,f +1520,3040b,1,2,f +1520,30503,15,2,f +1520,30503,72,2,f +1520,3062b,19,8,f +1520,3068b,1,1,f +1520,3068b,72,2,f +1520,3068b,71,2,f +1520,3069b,1,6,f +1520,3069b,70,1,f +1520,3070b,14,1,t +1520,3070b,14,1,f +1520,31511,71,12,f +1520,3176,72,2,f +1520,32000,4,8,f +1520,32028,72,1,f +1520,32054,4,4,f +1520,32126,0,2,f +1520,32184,4,4,f +1520,32324,71,1,f +1520,32449,72,1,f +1520,32523,72,4,f +1520,32524,15,4,f +1520,32524,0,2,f +1520,32531,0,1,f +1520,3297,15,4,f +1520,3297,72,1,f +1520,3300,4,1,f +1520,3460,71,6,f +1520,3460,1,2,f +1520,3623,72,2,f +1520,3623,0,8,f +1520,3623,15,2,f +1520,3626cpr1441,78,1,f +1520,3626cpr1709,78,1,f +1520,3626cpr2049,78,1,f +1520,3626cpr2050,78,1,f +1520,3626cpr2052,92,1,f +1520,3660,72,1,f +1520,3665,71,6,f +1520,3666,72,6,f +1520,3676,72,2,f +1520,3701,0,4,f +1520,3703,72,2,f +1520,3710,0,6,f +1520,3713,71,1,t +1520,3713,71,4,f +1520,3747a,70,1,f +1520,3749,19,2,f +1520,3795,72,8,f +1520,3832,72,5,f +1520,3894,72,1,f +1520,41531,15,8,f +1520,4162,1,6,f +1520,4162,71,4,f +1520,41769,15,2,f +1520,41770,15,2,f +1520,4185,72,4,f +1520,4274,71,2,f +1520,4274,1,2,t +1520,4274,1,16,f +1520,4274,71,1,t +1520,4282,71,1,f +1520,4282,0,2,f +1520,4286,0,2,f +1520,4287,72,2,f +1520,43093,1,5,f +1520,43722,71,2,f +1520,43723,71,2,f +1520,4445,15,2,f +1520,44567a,14,2,f +1520,4477,72,8,f +1520,4510,72,2,f +1520,46304,15,1,f +1520,46304,15,1,t +1520,47397,15,4,f +1520,47398,15,4,f +1520,48729b,0,1,t +1520,48729b,0,1,f +1520,50943,72,1,f +1520,50955,15,1,f +1520,50956,15,1,f +1520,54200,72,2,f +1520,54200,72,1,t +1520,55013,72,4,f +1520,55981,71,4,f +1520,58176,0,2,f +1520,58247,148,3,f +1520,59426,72,2,f +1520,59900,182,4,f +1520,60208,71,4,f +1520,60478,72,4,f +1520,60897,0,2,f +1520,6141,36,2,t +1520,6141,179,12,f +1520,6141,179,2,t +1520,6141,36,12,f +1520,6179,72,4,f +1520,6180,15,5,f +1520,61976,70,1,f +1520,62810,308,1,f +1520,63082,0,2,f +1520,63864,14,7,f +1520,63864,15,4,f +1520,63868,71,6,f +1520,63965,0,2,f +1520,64567,148,1,f +1520,64567,148,1,t +1520,6541,14,4,f +1520,6587,28,4,f +1520,73983,71,6,f +1520,76766,71,2,f +1520,85984,72,1,t +1520,85984,15,6,f +1520,85984,72,2,f +1520,85984pr0006,72,1,f +1520,87079,15,1,f +1520,87087,72,2,f +1520,87087,0,2,f +1520,87544,0,1,f +1520,87620,72,2,f +1520,88072,0,2,f +1520,88646,15,2,f +1520,88811,179,1,t +1520,88811,179,1,f +1520,91988,72,3,f +1520,92099,72,1,f +1520,92280,0,2,f +1520,92593,71,5,f +1520,92738,0,1,f +1520,92738,179,1,f +1520,93095,70,1,f +1520,93273,72,2,f +1520,96874,25,1,t +1520,970c00,0,1,f +1520,970c00pr1130,84,1,f +1520,970c00pr1131,28,1,f +1520,970c00pr1132,272,1,f +1520,970c00pr1133,326,1,f +1520,973pr3562c01,72,1,f +1520,973pr3564c01,272,1,f +1520,973pr3566c01,326,1,f +1520,973pr3568c01,272,1,f +1520,973pr3570c01,326,1,f +1520,98138,15,1,t +1520,98138,15,4,f +1520,98263,71,2,f +1520,99207,0,2,f +1520,99207,71,2,f +1520,99780,72,2,f +1521,11303,272,1,f +1521,15068,0,1,f +1521,15068pr0007,15,1,f +1521,15207,72,2,f +1521,15573,0,2,f +1521,15712,71,2,f +1521,19220,0,1,f +1521,2412b,4,2,f +1521,2412b,4,2,t +1521,2431,4,1,f +1521,3001,72,2,f +1521,30031,72,2,f +1521,30136,70,1,f +1521,3020,70,1,f +1521,3023,1,3,f +1521,3030,19,1,f +1521,30350b,72,1,f +1521,3038,72,2,f +1521,3062b,46,1,f +1521,3062b,0,1,f +1521,3069bpr0100,2,2,f +1521,3626cpr1091,14,1,f +1521,3626cpr1580,14,1,f +1521,3626cpr1581,14,1,f +1521,3626cpr1663,14,1,f +1521,3678b,72,1,f +1521,3795,1,1,f +1521,3795,0,1,f +1521,3795,71,2,f +1521,3832,70,1,f +1521,3841,72,1,f +1521,41334,72,1,f +1521,41334,0,1,f +1521,43713,0,1,f +1521,43719,4,1,f +1521,44674,15,2,f +1521,4590,72,1,f +1521,4871,0,1,f +1521,54200,72,3,f +1521,54200,72,1,t +1521,6014b,71,4,f +1521,60478,71,2,f +1521,60897,72,2,f +1521,6141,47,2,f +1521,6141,47,1,t +1521,61482,71,1,f +1521,61482,71,1,t +1521,6157,0,2,f +1521,64450,0,1,t +1521,64450,0,1,f +1521,64567,0,1,f +1521,64567,0,1,t +1521,85984,14,1,f +1521,87697,0,4,f +1521,87990,84,1,f +1521,92280,71,2,f +1521,92590,28,1,f +1521,92593,15,1,f +1521,970c00,379,1,f +1521,970c00,272,2,f +1521,970c00pr0985,15,1,f +1521,973pr2503c01,0,1,f +1521,973pr3209c01,15,1,f +1521,973pr3214c01,212,1,f +1521,973pr3215c01,212,1,f +1521,98138,46,3,f +1521,98138,33,1,t +1521,98138,46,1,t +1521,98138,33,2,f +1521,99781,0,2,f +1522,3957a,4,25,f +1522,3957a,0,25,f +1522,4495a,14,25,f +1522,4495a,1,25,f +1524,777p01,15,1,f +1524,777p03,15,1,f +1524,777p10,15,1,f +1524,777p11,15,1,f +1524,777p12,15,1,f +1524,777p14,15,1,f +1526,16542,7,1,f +1526,2356,4,4,f +1526,2412b,4,4,f +1526,2421,0,1,f +1526,2432,15,1,f +1526,2437,41,1,f +1526,2446,0,1,f +1526,2447,41,2,f +1526,2454a,4,2,f +1526,2460,7,1,f +1526,2465,15,1,f +1526,2465p70,15,1,f +1526,2479,0,1,f +1526,2483,41,1,f +1526,2486,14,3,f +1526,2493b,15,4,f +1526,2494,41,2,f +1526,2494pb07,41,2,f +1526,2513p03,4,1,f +1526,2540,8,4,f +1526,2555,7,3,f +1526,2569,0,1,f +1526,298c02,15,2,f +1526,3001,7,5,f +1526,3001,4,1,f +1526,3001,14,2,f +1526,3003,0,5,f +1526,30033,8,1,f +1526,3004,15,2,f +1526,3004p70,4,2,f +1526,3004pc0,15,1,f +1526,3006,14,1,f +1526,3006,4,1,f +1526,3007,4,4,f +1526,3007p01,4,2,f +1526,3009,15,6,f +1526,30094,15,1,f +1526,3010,14,1,f +1526,3010,15,2,f +1526,3010p70,4,4,f +1526,3010px1,4,1,f +1526,3020,14,1,f +1526,3022,0,1,f +1526,3024,46,4,f +1526,30278c01,0,1,f +1526,3031,0,1,f +1526,3039,33,2,f +1526,3039pc2,15,1,f +1526,3039pt1,33,1,f +1526,3039pt2,33,1,f +1526,3039px14,15,1,f +1526,3040b,14,1,f +1526,3062b,14,2,f +1526,3062b,33,2,f +1526,3068b,14,1,f +1526,3069bp52,15,1,f +1526,3069bp80,15,1,f +1526,3069bpr0099,15,2,f +1526,3149c01,4,1,f +1526,3403,4,1,f +1526,3404,4,1,f +1526,3460,0,4,f +1526,3471,2,1,f +1526,3626b,15,1,f +1526,3626bp03,14,1,f +1526,3626bp05,14,2,f +1526,3626bpb0083,14,1,f +1526,3678apc0,4,2,f +1526,3710,15,1,f +1526,3710,0,1,f +1526,3741,2,2,f +1526,3742,14,6,f +1526,3742,14,2,t +1526,3747a,7,4,f +1526,3754,4,8,f +1526,3823,41,1,f +1526,3829c01,1,2,f +1526,3832,7,2,f +1526,3834,15,2,f +1526,3834p01,15,1,f +1526,3835,7,1,f +1526,3838,14,4,f +1526,3865,2,2,f +1526,3867,2,1,f +1526,3899,47,4,f +1526,3901,0,1,f +1526,3957a,15,3,f +1526,3963,7,2,f +1526,4079,1,4,f +1526,4085c,0,1,f +1526,4151a,8,1,f +1526,4162,14,2,f +1526,4207,15,2,f +1526,4208,0,1,f +1526,4209p70,4,1,f +1526,4212b,15,1,f +1526,4286,14,2,f +1526,4315,14,1,f +1526,4345b,7,1,f +1526,4346,7,1,f +1526,4349,15,1,f +1526,4488,4,1,f +1526,4495b,14,2,f +1526,4515,8,1,f +1526,4533,15,5,f +1526,4599a,14,3,f +1526,4600,7,1,f +1526,6014a,15,10,f +1526,6015,0,10,f +1526,6117,8,1,f +1526,6140,7,4,f +1526,6141,34,1,f +1526,6141,36,6,f +1526,6141,33,2,f +1526,6157,0,2,f +1526,6158,0,1,f +1526,6212,4,1,f +1526,6583,8,4,f +1526,92410,4,5,f +1526,970c00,7,1,f +1526,970c00,0,3,f +1526,973p29c01,7,1,f +1526,973pb0099c01,0,1,f +1526,973px121c01,0,2,f +1526,firec006,-1,1,f +1527,2654,47,2,f +1527,2780,0,1,t +1527,2780,0,32,f +1527,2850a,71,4,f +1527,2851,14,4,f +1527,2852,71,4,f +1527,2853,71,2,f +1527,2854,72,1,f +1527,3022,4,1,f +1527,3023,0,2,f +1527,32002,72,4,f +1527,32002,72,1,t +1527,32005b,72,2,f +1527,32013,4,2,f +1527,32013,0,2,f +1527,32015,4,4,f +1527,32016,0,6,f +1527,32034,4,5,f +1527,32039,4,2,f +1527,32054,0,10,f +1527,32062,4,13,f +1527,32072,14,2,f +1527,32073,71,3,f +1527,32123b,71,1,t +1527,32123b,71,9,f +1527,32138,0,2,f +1527,32140,0,2,f +1527,32184,71,2,f +1527,32269,19,1,f +1527,32270,0,4,f +1527,32271,0,2,f +1527,32278,0,2,f +1527,32291,0,1,f +1527,32333,0,2,f +1527,32348,0,2,f +1527,32523,0,3,f +1527,32523,4,2,f +1527,32524,4,1,f +1527,32524,0,1,f +1527,32525,0,2,f +1527,32526,0,2,f +1527,32526,1,4,f +1527,32580,4,2,f +1527,3647,72,1,f +1527,3666,0,1,f +1527,3705,0,2,f +1527,3706,0,8,f +1527,3707,0,4,f +1527,3713,71,1,t +1527,3713,71,10,f +1527,3894,0,2,f +1527,40001,72,1,f +1527,4019,71,3,f +1527,4032a,0,2,f +1527,41669,4,2,f +1527,41896,71,2,f +1527,4274,71,6,f +1527,4274,71,1,t +1527,43093,1,16,f +1527,44294,71,2,f +1527,4519,71,20,f +1527,55976,0,2,f +1527,56145,71,2,f +1527,59426,72,1,f +1527,59443,71,3,f +1527,59443,0,2,f +1527,60483,72,10,f +1527,60485,71,1,f +1527,61480,0,2,f +1527,62462,4,1,f +1527,64391,4,1,f +1527,64393,4,1,f +1527,64681,4,1,f +1527,64683,4,1,f +1527,6536,0,18,f +1527,6536,4,2,f +1527,6553,0,2,f +1527,6558,1,8,f +1527,6571,0,2,f +1527,6572,71,4,f +1527,6574,0,1,f +1527,6587,28,4,f +1527,6632,0,4,f +1527,76138,71,3,f +1527,87080,4,1,f +1527,87086,4,1,f +1530,3937,7,4,f +1530,3938,7,4,f +1531,2555,15,2,f +1531,2569,0,1,f +1531,2877,71,3,f +1531,3001,15,2,f +1531,3003,25,2,f +1531,3003,4,6,f +1531,3004,4,8,f +1531,3005,4,2,f +1531,3006,4,1,f +1531,3010,15,2,f +1531,3010,25,2,f +1531,3010,4,4,f +1531,3020,15,2,f +1531,3022,0,1,f +1531,3023,25,2,f +1531,30237a,14,2,f +1531,3032,0,1,f +1531,3035,15,2,f +1531,3035,2,1,f +1531,3037,4,2,f +1531,3039,1,2,f +1531,3040b,4,2,f +1531,3062b,46,2,f +1531,3062b,36,2,f +1531,3455,4,1,f +1531,3622,15,2,f +1531,3622,4,6,f +1531,3622,25,4,f +1531,3626bpr0387,14,1,f +1531,3710,4,1,f +1531,3710,25,4,f +1531,3747b,1,2,f +1531,3794b,15,1,f +1531,3821,4,1,f +1531,3822,4,1,f +1531,3823,47,1,f +1531,3829c01,1,1,f +1531,3834,80,1,f +1531,3962b,0,1,f +1531,3963,15,1,f +1531,4070,71,2,f +1531,4132,4,1,f +1531,4287,4,2,f +1531,4349,72,1,f +1531,43888,14,1,f +1531,43898,15,1,f +1531,4600,0,2,f +1531,6014b,14,4,f +1531,6015,0,4,f +1531,6020,71,1,f +1531,60599,4,1,f +1531,60608,14,2,f +1531,60623,14,1,f +1531,6111,4,1,f +1531,6126a,57,1,f +1531,6126a,41,1,f +1531,6141,33,1,t +1531,6141,33,3,f +1531,6636,25,1,f +1531,970c00,4,1,f +1531,973pr1187c01,0,1,f +1534,2412b,72,2,f +1534,2555,72,1,f +1534,30031,0,1,f +1534,3004,4,1,f +1534,3004,15,2,f +1534,30162,72,1,f +1534,3020,4,1,f +1534,3023,1,1,f +1534,3031,19,1,f +1534,30340,15,1,f +1534,3039,1,1,f +1534,30602,1,2,f +1534,3070b,14,1,t +1534,3070b,14,2,f +1534,3626bpr0387,14,1,f +1534,3794a,14,1,f +1534,3795,1,1,f +1534,3957a,15,1,f +1534,3960,320,1,f +1534,4079,14,1,f +1534,4085c,1,2,f +1534,4095,15,1,f +1534,4349,72,1,f +1534,43713,15,1,f +1534,43719,14,1,f +1534,4460b,4,2,f +1534,4495b,4,1,f +1534,4599a,1,1,f +1534,4871,15,1,f +1534,6093,70,1,f +1534,6141,36,1,t +1534,6141,36,1,f +1534,970c00,1,1,f +1534,973pr1204c01,15,1,f +1535,3482,7,2,f +1535,3634,0,2,f +1536,45481,46,2,f +1536,45499,182,1,f +1536,46281,182,2,f +1536,46281,35,2,f +1536,46281,45,2,f +1536,46281,46,2,f +1536,46296,45,1,f +1536,46296,182,1,f +1536,clikits004,182,2,f +1536,clikits004,46,4,f +1536,clikits004,57,2,f +1536,clikits004,45,4,f +1536,clikits004,35,2,f +1536,clikits005,45,2,f +1536,clikits005,57,2,f +1536,clikits005,182,2,f +1536,clikits005,46,2,f +1536,clikits005,35,2,f +1536,clikits012,47,2,f +1536,clikits025,182,2,f +1536,clikits026,45,1,f +1536,clikits032,35,1,f +1536,clikits033,35,1,f +1536,clikits035,46,2,f +1536,clikits084,182,1,f +1536,clikits084,45,1,f +1536,clikits092,45,1,f +1536,clikits129,45,1,f +1537,12825,71,5,f +1537,15207,14,6,f +1537,2412b,71,2,f +1537,2412b,0,6,f +1537,2412b,14,2,f +1537,2412b,72,6,f +1537,2420,70,4,f +1537,2431,14,1,f +1537,2431,2,1,f +1537,2431,0,1,f +1537,2431,72,3,f +1537,2431,70,4,f +1537,2432,4,1,f +1537,2436,0,1,f +1537,2436,71,1,f +1537,2445,72,1,f +1537,2445,4,1,f +1537,2453a,4,1,f +1537,2454a,72,1,f +1537,2456,71,2,f +1537,2456,72,1,f +1537,2458,14,2,f +1537,2584,0,1,f +1537,2585,71,1,f +1537,2653,71,2,f +1537,2780,0,4,f +1537,2780,0,2,t +1537,2817,4,1,f +1537,2877,14,2,f +1537,2926,0,1,f +1537,298c02,4,2,t +1537,298c02,4,3,f +1537,3001,71,2,f +1537,3001,14,2,f +1537,3002,14,1,f +1537,3002,70,1,f +1537,3002,4,1,f +1537,3003,0,2,f +1537,3003,14,2,f +1537,3003,70,2,f +1537,3003,19,1,f +1537,3003,72,5,f +1537,3004,0,4,f +1537,3004,2,1,f +1537,3004,4,8,f +1537,3004,71,7,f +1537,3005,2,2,f +1537,3005,70,6,f +1537,3008,4,2,f +1537,3008,72,1,f +1537,3009,0,1,f +1537,3009,71,7,f +1537,3010,2,2,f +1537,3010,0,2,f +1537,3010,4,2,f +1537,3010,70,4,f +1537,3010,14,3,f +1537,30150,70,1,f +1537,30162,72,1,f +1537,3020,72,8,f +1537,3020,14,9,f +1537,3020,15,1,f +1537,3020,71,1,f +1537,3020,70,3,f +1537,3021,72,2,f +1537,3021,71,1,f +1537,3021,1,2,f +1537,3022,70,4,f +1537,3022,1,1,f +1537,3022,4,1,f +1537,3022,71,1,f +1537,30228,72,1,f +1537,3023,70,4,f +1537,3023,72,3,f +1537,3023,46,3,f +1537,3023,4,4,f +1537,3023,14,7,f +1537,3023,2,6,f +1537,3023,36,2,f +1537,3024,14,2,f +1537,3024,4,3,f +1537,30259,71,1,f +1537,3029,72,1,f +1537,30293,72,2,f +1537,30294,72,2,f +1537,3030,28,2,f +1537,3030,0,1,f +1537,3031,70,1,f +1537,3031,71,1,f +1537,3031,14,1,f +1537,3031,2,1,f +1537,3032,72,3,f +1537,3032,0,1,f +1537,3033,72,2,f +1537,3034,71,1,f +1537,3034,72,1,f +1537,3036,72,1,f +1537,3036,0,1,f +1537,30374,0,2,f +1537,30374,71,1,f +1537,30385,297,6,f +1537,3040b,70,5,f +1537,3040b,14,3,f +1537,3062b,71,13,f +1537,3062b,70,12,f +1537,3062b,4,4,f +1537,3062b,19,12,f +1537,3066,40,1,f +1537,30663,0,1,f +1537,3068b,71,10,f +1537,3068b,0,1,f +1537,3068b,14,1,f +1537,3069b,14,4,f +1537,3069b,72,1,f +1537,3069b,82,2,f +1537,3069b,4,1,f +1537,3070bpr0007,71,1,t +1537,3070bpr0007,71,1,f +1537,32002,72,1,t +1537,32002,72,2,f +1537,32028,0,2,f +1537,32062,4,1,f +1537,32249,0,1,f +1537,32270,0,1,f +1537,3228c,72,8,f +1537,32525,14,1,f +1537,3308,72,2,f +1537,3460,72,2,f +1537,3464,15,1,f +1537,3492c01,14,1,f +1537,3622,2,6,f +1537,3622,71,1,f +1537,3623,4,2,f +1537,3623,14,4,f +1537,3623,70,3,f +1537,3626cpr0754,14,1,f +1537,3626cpr0920,14,1,f +1537,3626cpr0929,14,1,f +1537,3626cpr0955,14,1,f +1537,3659,72,1,f +1537,3660,0,2,f +1537,3665,14,8,f +1537,3665,72,4,f +1537,3666,72,5,f +1537,3666,4,1,f +1537,3666,2,1,f +1537,3700,14,4,f +1537,3700,71,3,f +1537,3701,71,4,f +1537,3705,0,2,f +1537,3710,2,6,f +1537,3710,0,7,f +1537,3710,71,2,f +1537,3710,14,3,f +1537,3713,4,2,t +1537,3713,4,3,f +1537,3731,71,2,f +1537,3737,0,1,f +1537,3794b,0,1,f +1537,3795,70,1,f +1537,3795,2,2,f +1537,3795,14,1,f +1537,3795,72,1,f +1537,3821,14,1,f +1537,3822,14,1,f +1537,3829c01,1,1,f +1537,3829c01,4,2,f +1537,3836,70,1,f +1537,3837,0,1,f +1537,3841,72,1,f +1537,3899,4,2,f +1537,3937,4,1,f +1537,3957a,71,1,f +1537,3958,0,2,f +1537,3962b,0,1,f +1537,4070,4,1,f +1537,4079,1,1,f +1537,4079,4,2,f +1537,4081b,72,2,f +1537,4150,4,2,f +1537,4162,0,5,f +1537,4162,2,6,f +1537,4162,72,2,f +1537,4175,72,3,f +1537,4185,14,1,f +1537,4215b,15,1,f +1537,4286,72,1,f +1537,4349,4,1,f +1537,44302a,0,2,f +1537,44567a,0,8,f +1537,44728,14,3,f +1537,4477,4,1,f +1537,4488,0,6,f +1537,4510,71,2,f +1537,4519,71,2,f +1537,4533,72,1,f +1537,4600,0,4,f +1537,4697b,71,2,f +1537,4697b,71,1,t +1537,4740,72,5,f +1537,47457,71,2,f +1537,47720,0,2,f +1537,47998,15,1,f +1537,48336,4,1,f +1537,48336,0,1,f +1537,4864b,14,2,f +1537,4865a,40,1,f +1537,4865b,14,4,f +1537,4872,40,1,f +1537,50254,0,8,f +1537,50745,72,2,f +1537,50950,72,2,f +1537,54200,182,5,f +1537,54200,47,3,f +1537,54200,182,4,t +1537,54200,71,3,t +1537,54200,14,2,f +1537,54200,14,1,t +1537,54200,72,1,t +1537,54200,47,3,t +1537,54200,71,3,f +1537,54200,72,4,f +1537,55981,71,4,f +1537,56823c50,0,1,f +1537,57779,14,1,f +1537,58176,182,4,f +1537,59349,72,3,f +1537,59443,4,2,f +1537,59895,0,1,f +1537,59895,0,1,t +1537,60032,14,2,f +1537,6014b,71,8,f +1537,6019,0,1,f +1537,60470a,71,2,f +1537,60471,71,2,f +1537,60474,15,1,f +1537,60475b,0,2,f +1537,60475b,14,1,f +1537,60477,14,1,f +1537,60581,15,2,f +1537,60583a,0,1,f +1537,60583b,4,2,f +1537,60594,0,1,f +1537,60596,0,1,f +1537,60601,40,2,f +1537,60623,14,1,f +1537,6079,15,1,f +1537,6082,72,2,f +1537,6083,72,2,f +1537,61072,0,3,f +1537,6108,71,2,f +1537,6111,71,2,f +1537,6134,71,1,f +1537,61409,1,2,f +1537,6141,4,1,t +1537,6141,34,1,f +1537,6141,0,1,t +1537,6141,4,2,f +1537,6141,36,1,f +1537,6141,0,1,f +1537,6141,36,1,t +1537,6141,1,1,t +1537,6141,1,2,f +1537,6141,34,1,t +1537,61485,0,1,f +1537,6157,71,1,f +1537,61678,2,2,f +1537,61780,2,1,f +1537,6179,72,1,f +1537,62113,72,1,f +1537,63082,71,1,f +1537,63864,0,2,f +1537,63868,71,2,f +1537,64451,72,2,f +1537,64453,40,1,f +1537,64712,0,1,f +1537,64728,4,3,f +1537,64799,14,1,f +1537,6558,1,2,f +1537,6636,71,2,f +1537,6636,0,1,f +1537,73983,2,2,f +1537,85984,71,3,f +1537,85984,2,2,f +1537,87079,0,2,f +1537,87079,71,3,f +1537,87079,72,3,f +1537,87082,71,1,f +1537,87083,72,1,f +1537,87087,15,2,f +1537,87087,71,4,f +1537,87544,40,2,f +1537,87544,71,1,f +1537,87552,40,2,f +1537,87552,14,2,f +1537,87580,14,1,f +1537,87580,72,1,f +1537,87609,2,1,f +1537,87697,0,8,f +1537,91405,28,1,f +1537,91988,71,1,f +1537,92092,72,2,f +1537,92099,72,1,f +1537,92280,71,2,f +1537,92402,0,4,f +1537,92410,71,1,f +1537,92438,28,2,f +1537,92715c01,72,1,f +1537,92947,4,2,f +1537,93274,71,2,f +1537,93606,71,1,f +1537,96874,25,1,t +1537,970c00,308,1,f +1537,970c00,0,2,f +1537,970c00,379,1,f +1537,973pr0250c01,320,1,f +1537,973pr1580c01,15,1,f +1537,973pr2037c01,272,1,f +1537,973pr2083c01,15,1,f +1537,98138,71,2,t +1537,98138,47,5,f +1537,98138,36,8,f +1537,98138,71,5,f +1537,98138,36,2,t +1537,98138,47,4,t +1537,98263,71,2,f +1537,98280,71,3,f +1537,98281,71,1,f +1537,98285,14,2,f +1537,98286,71,2,f +1537,98287,71,8,f +1537,98288,4,1,f +1537,98289,179,4,f +1537,99206,71,2,f +1537,99781,71,2,f +1538,22119,4,4,f +1538,22119,1,4,f +1538,2444,0,8,f +1538,2445,19,2,f +1538,2780,0,181,f +1538,2825,0,1,f +1538,3003,19,6,f +1538,3003,0,7,f +1538,3004,19,7,f +1538,3004,0,6,f +1538,3006,19,2,f +1538,3007,0,6,f +1538,30145,19,8,f +1538,3022,19,7,f +1538,3022,7,31,f +1538,3022,0,6,f +1538,3028,4,12,f +1538,3029,4,4,f +1538,30565,19,8,f +1538,3068b,0,4,f +1538,31101,484,1,f +1538,32013,25,26,f +1538,32013,0,29,f +1538,32014,15,4,f +1538,32014,0,36,f +1538,32014,25,4,f +1538,32015,0,4,f +1538,32016,25,38,f +1538,32016,135,4,f +1538,32016,0,6,f +1538,32034,0,27,f +1538,32034,135,2,f +1538,32034,15,1,f +1538,32039,25,8,f +1538,32054,0,18,f +1538,32062,0,88,f +1538,32064b,0,4,f +1538,32073,7,18,f +1538,32123b,7,4,f +1538,32138,0,3,f +1538,32140,135,4,f +1538,32140,0,4,f +1538,32140,15,2,f +1538,32184,25,18,f +1538,32184,0,2,f +1538,32192,0,1,f +1538,32192,135,4,f +1538,32192,15,8,f +1538,32278,0,4,f +1538,32278,135,4,f +1538,32291,135,5,f +1538,32291,0,9,f +1538,32316,0,2,f +1538,32316,4,6,f +1538,32316,15,4,f +1538,32523,0,3,f +1538,32524,0,20,f +1538,32524,15,6,f +1538,32525,0,2,f +1538,32526,0,4,f +1538,3460,19,8,f +1538,3673,7,3,f +1538,3700,19,30,f +1538,3700,0,8,f +1538,3702,0,10,f +1538,3703,0,18,f +1538,3705,0,33,f +1538,3708,0,8,f +1538,3709,7,9,f +1538,3710,19,8,f +1538,3713,7,4,f +1538,3713,25,28,f +1538,3713,0,1,f +1538,3713,15,4,f +1538,3737,0,5,f +1538,3738,7,15,f +1538,3832,19,4,f +1538,3894,0,4,f +1538,3895,0,6,f +1538,3941,0,6,f +1538,3941,14,3,f +1538,3941,46,3,f +1538,3941,25,3,f +1538,3941,2,3,f +1538,3941,57,3,f +1538,3941,33,3,f +1538,3942c,0,1,f +1538,4032a,0,1,f +1538,40490,0,10,f +1538,40490,15,3,f +1538,41539,19,1,f +1538,42003,0,5,f +1538,4251753,9999,1,f +1538,43093,1,104,f +1538,43857,0,7,f +1538,44294,7,2,f +1538,4477,19,8,f +1538,4519,7,27,f +1538,4589,25,4,f +1538,47674,47,1,f +1538,47676,4,1,f +1538,48835,7,1,f +1538,6003,19,4,f +1538,6111,19,8,f +1538,6222,0,1,f +1538,6536,0,8,f +1538,6536,25,12,f +1538,6538b,25,4,f +1538,6538b,0,37,f +1538,6538b,135,4,f +1538,6541,19,6,f +1538,6558,0,71,f +1538,6587,8,4,f +1538,6632,135,8,f +1538,6632,0,2,f +1538,75535,0,34,f +1538,78c03,15,16,f +1538,78c03,0,10,f +1538,78c04,179,4,f +1538,78c05,179,4,f +1538,78c06,143,16,f +1538,78c09,179,2,f +1538,78c09,0,6,f +1538,78c09,143,10,f +1538,78c10,0,4,f +1538,78c14,0,4,f +1548,11090,72,1,f +1548,11126,25,1,f +1548,11126,321,1,f +1548,11127,41,12,f +1548,11129pr0007,320,1,f +1548,15070,15,3,f +1548,15083pr0001,15,1,f +1548,15094pr0001,191,1,f +1548,15094pr0002,321,1,f +1548,15100,0,4,f +1548,15101,41,2,f +1548,15101,182,2,f +1548,15104,182,1,f +1548,15104,41,1,f +1548,15336c01,41,1,f +1548,15336c02,182,1,f +1548,15365pat0001,1,1,f +1548,15395,15,1,f +1548,15571,297,2,f +1548,2357,15,1,f +1548,2449,71,3,f +1548,2780,0,4,f +1548,3022,71,1,f +1548,30374,297,1,f +1548,3039,320,2,f +1548,3062b,41,1,f +1548,32062,4,4,f +1548,3626cpr1121,19,1,f +1548,3626cpr1418,15,1,f +1548,3660,72,2,f +1548,3665,15,1,f +1548,3688,72,1,f +1548,3849,0,1,f +1548,3941,41,1,f +1548,43899,72,1,f +1548,4460b,15,1,f +1548,4590,72,2,f +1548,53451,15,1,f +1548,59900,182,1,f +1548,60474,15,1,f +1548,60474,71,1,f +1548,6126b,57,4,f +1548,6141,41,3,f +1548,6256,191,1,f +1548,64644,0,1,f +1548,85984,72,2,f +1548,87580,72,1,f +1548,87580,15,1,f +1548,87747,297,1,f +1548,95753pat0005,25,1,f +1548,970c00pr0665,4,1,f +1548,970d19pr0659,15,1,f +1548,973pr2660c01,71,1,f +1548,973pr2669c01,4,1,f +1548,98283,71,2,f +1549,122c01,0,3,f +1549,3004,14,1,f +1549,3004,1,1,f +1549,3005,1,2,f +1549,3020,1,2,f +1549,3021,15,2,f +1549,3022,15,1,f +1549,3022,47,2,f +1549,3023,15,3,f +1549,3023,14,2,f +1549,3023,1,5,f +1549,3024,36,4,f +1549,3024,1,4,f +1549,3024,46,2,f +1549,3024,15,2,f +1549,3037,1,2,f +1549,3039,1,1,f +1549,3069b,15,3,f +1549,3623,15,6,f +1549,3626apr0001,14,2,f +1549,3641,0,6,f +1549,3660,15,2,f +1549,3665,15,2,f +1549,3666,1,1,f +1549,3666,15,3,f +1549,3710,1,2,f +1549,3730,1,1,f +1549,3731,15,1,f +1549,3788,1,2,f +1549,3821,1,1,f +1549,3822,1,1,f +1549,3823,47,2,f +1549,3829c01,14,1,f +1549,3832,1,1,f +1549,3855,47,2,f +1549,3899,4,2,f +1549,3901,0,1,f +1549,3959,0,2,f +1549,4033,1,2,f +1549,4035,1,2,f +1549,4036,47,2,f +1549,4070,1,4,f +1549,4079,14,1,f +1549,4085a,15,2,f +1549,4211,15,1,f +1549,4212b,15,1,f +1549,4213,15,2,f +1549,4315,15,1,f +1549,4530,4,1,f +1549,4594,47,2,f +1549,4625,1,1,f +1549,970c00,0,1,f +1549,970c00,4,1,f +1549,973c02,4,1,f +1549,973p01c02,15,1,f +1552,31059,2,1,f +1552,31061,484,2,f +1552,40666,72,1,f +1552,4672,19,1,f +1552,48036,70,1,f +1552,48647,297,1,f +1552,51741,15,1,f +1552,54037,135,1,f +1552,55343,70,1,f +1554,3482,7,8,f +1554,3483,0,4,f +1554,3634,0,4,f +1555,2412b,320,6,f +1555,2412b,182,2,f +1555,2420,0,2,f +1555,2431,0,3,f +1555,2436,0,8,f +1555,2540,379,2,f +1555,2540,320,1,f +1555,2654,143,2,f +1555,2780,0,2,f +1555,30031,72,1,f +1555,3004,320,6,f +1555,3010,320,1,f +1555,30106,47,2,f +1555,3020,0,7,f +1555,3021,320,2,f +1555,3022,72,1,f +1555,3023,72,10,f +1555,3023,19,4,f +1555,30236,320,1,f +1555,3031,320,1,f +1555,3034,272,2,f +1555,30364,72,2,f +1555,30365,71,2,f +1555,30374,379,1,f +1555,30377,379,3,f +1555,3038,320,2,f +1555,30383,0,4,f +1555,30536,40,1,f +1555,30536,0,1,f +1555,30541,320,2,f +1555,3068bpb0070,72,1,f +1555,3069b,72,2,f +1555,32000,320,1,f +1555,32013,0,1,f +1555,32039,72,6,f +1555,32062,0,3,f +1555,32064b,0,2,f +1555,32073,71,2,f +1555,32174,320,2,f +1555,32174,0,8,f +1555,32476,0,6,f +1555,3623,0,3,f +1555,3626bpb0091,15,2,f +1555,3626bpb0228,14,1,f +1555,3660,320,5,f +1555,3701,71,2,f +1555,3706,0,6,f +1555,3957a,182,2,f +1555,41678,320,1,f +1555,41747,320,1,f +1555,41748,320,1,f +1555,41752,72,1,f +1555,4274,71,1,t +1555,4274,1,1,t +1555,4274,71,4,f +1555,4274,1,2,f +1555,4286,320,10,f +1555,43093,1,4,f +1555,43557,320,2,f +1555,43710,0,4,f +1555,43710,320,1,f +1555,43711,0,4,f +1555,43711,320,1,f +1555,43713,0,1,f +1555,44036,320,2,f +1555,44036,0,1,f +1555,44301a,71,7,f +1555,44302a,72,6,f +1555,4519,71,2,f +1555,4589,320,6,f +1555,47455,320,2,f +1555,47844,143,2,f +1555,48169,71,2,f +1555,48171,71,2,f +1555,50303,0,2,f +1555,50304,272,1,f +1555,50305,272,1,f +1555,6019,71,2,f +1555,6120,15,2,f +1555,6141,143,4,f +1555,6141,143,1,t +1555,6636,72,2,f +1555,85543,15,1,f +1556,2412b,72,1,f +1556,2421,0,1,f +1556,2432,1,1,f +1556,3023,0,3,f +1556,3660,72,5,f +1556,3666,15,2,f +1556,3794b,72,1,f +1556,3829c01,1,1,f +1556,3958,0,1,f +1556,41764,72,1,f +1556,41765,72,1,f +1556,43722,15,1,f +1556,43722,0,1,f +1556,43723,0,1,f +1556,43723,15,1,f +1556,4488,71,1,f +1556,6091,27,4,f +1556,6141,46,1,f +1556,64225,27,1,f +1556,85984,27,4,f +1557,2431,0,1,f +1557,2431px12,15,1,f +1557,2436,320,1,f +1557,2555,7,1,f +1557,298c02,7,2,f +1557,298c02,7,1,t +1557,3021,2,1,f +1557,3021,0,1,f +1557,3023,0,1,f +1557,3023,19,2,f +1557,3023,378,1,f +1557,3024,320,1,f +1557,3024,14,1,f +1557,3024,15,2,f +1557,30361apr4,379,1,f +1557,3040b,272,2,f +1557,3069bps3,15,1,f +1557,3070b,320,1,t +1557,3070b,40,1,t +1557,3070b,320,2,f +1557,3070b,40,1,f +1557,3666,15,1,f +1557,3710,320,1,f +1557,3794a,272,2,f +1557,3794a,378,2,f +1557,3794a,15,1,f +1557,3794a,320,3,f +1557,3795,8,1,f +1557,4032a,7,1,f +1557,4070,272,2,f +1557,4081b,14,1,f +1557,41769,320,1,f +1557,41770,320,1,f +1557,4287,15,1,f +1557,4589,15,2,f +1557,4599a,15,2,f +1557,4740,7,1,f +1557,6005,0,1,f +1557,6069ps2,272,1,f +1557,6091,15,1,f +1557,6141,0,1,f +1557,6141,7,1,t +1557,6141,0,1,t +1557,6141,36,1,f +1557,6141,7,2,f +1557,6141,36,1,t +1558,45474,43,1,f +1558,45481,41,1,f +1558,46296,45,1,f +1558,clikits011,41,1,f +1558,clikits068,47,1,f +1558,clikits205,89,1,f +1560,11198,27,1,f +1560,11248c01,4,2,f +1560,18823,4,1,f +1560,18825pr0011,9999,1,f +1560,19417,25,2,f +1560,19426,1,2,f +1560,21046,15,1,f +1560,24180,25,2,f +1560,24972,15,2,f +1560,24973,14,2,f +1560,24976,27,2,f +1560,24980,4,2,f +1560,24988,322,2,f +1560,24989,484,2,f +1560,24990,4,1,f +1560,24992,322,1,f +1560,3011,322,1,f +1560,3011,4,1,f +1560,6446,484,1,f +1562,3001,14,18,f +1562,3001,4,18,f +1562,3001,15,18,f +1562,3001,0,12,f +1562,3001,1,18,f +1562,3002,4,10,f +1562,3002,0,8,f +1562,3002,15,10,f +1562,3002,1,10,f +1562,3002,14,10,f +1562,3003,4,24,f +1562,3003,15,24,f +1562,3003,1,24,f +1562,3003,0,22,f +1562,3003,14,24,f +1562,3004,1,46,f +1562,3004,0,40,f +1562,3004,14,46,f +1562,3004,4,46,f +1562,3004,15,46,f +1562,3005,15,40,f +1562,3005,0,36,f +1562,3005,1,40,f +1562,3005,4,40,f +1562,3005,14,40,f +1562,3009,0,4,f +1562,3009,14,6,f +1562,3009,1,6,f +1562,3009,4,6,f +1562,3009,15,6,f +1562,3010,14,32,f +1562,3010,0,28,f +1562,3010,15,32,f +1562,3010,4,32,f +1562,3010,1,32,f +1562,3622,4,20,f +1562,3622,14,20,f +1562,3622,15,20,f +1562,3622,0,16,f +1562,3622,1,20,f +1563,2412b,36,1,f +1563,3001,0,1,f +1563,3010,72,2,f +1563,3022,71,1,f +1563,3023,25,2,f +1563,3034,72,2,f +1563,3069b,72,1,f +1563,3069b,182,2,f +1563,32000,72,2,f +1563,32062,0,1,f +1563,32123b,71,2,f +1563,32192,0,2,f +1563,32271,0,1,f +1563,3666,72,1,f +1563,3666,25,2,f +1563,3673,71,2,f +1563,3702,0,2,f +1563,3705,0,1,f +1563,3708,0,2,f +1563,3713,71,8,f +1563,3956,0,2,f +1563,3958,0,1,f +1563,43093,1,4,f +1563,44126,72,2,f +1563,4519,71,1,f +1563,47715,72,1,f +1563,4868b,71,2,f +1563,50943,71,2,f +1563,52031,72,1,f +1563,54200,0,4,f +1563,55978,0,4,f +1563,56145,0,4,f +1563,6538b,72,1,f +1563,6632,71,2,f +1566,11203,72,2,f +1566,11211,71,1,f +1566,11215,71,1,f +1566,11253,0,1,t +1566,11253,0,1,f +1566,11458,72,5,f +1566,11477,71,2,f +1566,11477,28,2,f +1566,11477,321,6,f +1566,13349,19,2,f +1566,14769,19,2,f +1566,15068,19,4,f +1566,15068,484,2,f +1566,15100,0,4,f +1566,15391,0,1,f +1566,15392,72,1,f +1566,15392,72,1,t +1566,15535,28,2,f +1566,15573,72,3,f +1566,15712,72,4,f +1566,18671,72,1,f +1566,18671,71,1,f +1566,18674,72,2,f +1566,18677,71,4,f +1566,20952pr0001,15,1,f +1566,20953pr0001,15,1,f +1566,21777,308,1,f +1566,2412b,179,7,f +1566,2419,28,1,f +1566,2419,71,2,f +1566,2420,28,4,f +1566,2420,72,1,f +1566,2420,70,3,f +1566,24299,321,6,f +1566,24307,321,6,f +1566,2431,72,1,f +1566,2449,70,2,f +1566,2449,19,4,f +1566,2450,71,1,f +1566,2462,72,1,f +1566,2540,19,2,f +1566,2540,72,4,f +1566,26269,28,1,f +1566,26270,28,1,f +1566,26271,28,1,f +1566,26272,28,1,f +1566,26337,47,1,f +1566,2653,71,2,f +1566,2654,19,1,f +1566,2654,71,2,f +1566,2654pr0010,72,2,f +1566,26885,78,1,f +1566,26889,326,1,f +1566,2736,71,1,f +1566,2780,0,2,t +1566,2780,0,10,f +1566,2877,72,4,f +1566,3001,70,1,f +1566,3002,72,1,f +1566,3002,19,1,f +1566,3003,28,2,f +1566,3004,70,3,f +1566,3004,28,5,f +1566,3005,28,6,f +1566,3005,70,7,f +1566,3010,72,1,f +1566,3020,484,3,f +1566,3020,72,4,f +1566,3020,71,2,f +1566,3020,28,6,f +1566,3021,19,1,f +1566,3021,321,4,f +1566,3021,28,4,f +1566,3022,19,9,f +1566,3022,72,2,f +1566,3022,484,2,f +1566,3023,70,5,f +1566,3023,28,4,f +1566,3023,484,15,f +1566,3023,19,2,f +1566,3024,70,13,f +1566,3024,28,1,t +1566,3024,28,2,f +1566,3024,19,10,f +1566,3024,72,1,t +1566,3024,70,2,t +1566,3024,72,2,f +1566,3024,19,2,t +1566,3029,71,1,f +1566,3031,19,1,f +1566,3031,71,1,f +1566,3032,71,1,f +1566,3034,70,2,f +1566,3034,28,1,f +1566,3035,19,1,f +1566,3035,71,1,f +1566,3037,71,2,f +1566,30375,484,1,f +1566,30376,19,1,f +1566,30377,19,1,f +1566,30377,19,1,t +1566,30378,19,1,f +1566,3039,72,1,f +1566,3039,0,1,f +1566,3040b,70,3,f +1566,3040b,71,2,f +1566,30414,71,1,f +1566,30503,71,2,f +1566,3062b,41,1,f +1566,3068b,28,1,f +1566,3069b,72,3,f +1566,3069b,19,7,f +1566,3070b,379,1,t +1566,3070b,28,1,t +1566,3070b,28,4,f +1566,3070b,379,2,f +1566,32028,72,3,f +1566,32028,28,2,f +1566,32028,321,8,f +1566,32062,0,2,f +1566,32524,72,2,f +1566,32556,19,1,f +1566,3460,70,2,f +1566,3460,71,1,f +1566,3622,70,7,f +1566,3622,71,1,f +1566,3623,71,1,f +1566,3626cpr1778,78,1,f +1566,3660,70,5,f +1566,3665,70,4,f +1566,3665,19,2,f +1566,3666,28,1,f +1566,3700,70,2,f +1566,3710,484,6,f +1566,3710,28,8,f +1566,3795,19,1,f +1566,3795,0,3,f +1566,3795,28,2,f +1566,3830,70,1,f +1566,3831,70,1,f +1566,3832,70,1,f +1566,3836,70,1,f +1566,3899,47,1,f +1566,3957a,0,2,f +1566,4006,0,1,f +1566,40490,71,1,f +1566,4070,70,6,f +1566,4081b,72,1,f +1566,4151b,72,1,f +1566,4175,71,4,f +1566,4345b,71,1,f +1566,4346,71,1,f +1566,44567a,0,1,f +1566,44728,0,6,f +1566,44728,71,1,f +1566,4477,19,2,f +1566,44809,71,1,f +1566,4599b,0,1,f +1566,4599b,0,1,t +1566,4599b,71,1,f +1566,4599b,71,1,t +1566,4740,19,2,f +1566,4740,72,2,f +1566,48172,0,2,f +1566,4865a,28,2,f +1566,4871,19,2,f +1566,51739,28,1,f +1566,51739,19,2,f +1566,54200,19,1,t +1566,54200,19,2,f +1566,54200,72,1,t +1566,54200,484,2,t +1566,54200,72,2,f +1566,54200,484,8,f +1566,59230,19,1,f +1566,59230,19,1,t +1566,59443,0,1,f +1566,60471,71,1,f +1566,60476,71,1,f +1566,60478,71,2,f +1566,60481,70,1,f +1566,60483,72,1,f +1566,60592,70,4,f +1566,60594,70,1,f +1566,60897,0,2,f +1566,60897,71,1,f +1566,6091,28,2,f +1566,6106,71,1,f +1566,61252,19,2,f +1566,6141,41,4,f +1566,6141,19,1,t +1566,6141,46,1,t +1566,6141,179,2,t +1566,6141,46,1,f +1566,6141,41,1,t +1566,6141,19,4,f +1566,6141,179,11,f +1566,61780,72,1,f +1566,62113,72,1,f +1566,63864,28,2,f +1566,63868,70,1,f +1566,63868,71,2,f +1566,63965,72,1,f +1566,63965,0,1,f +1566,64567,0,1,t +1566,64567,0,3,f +1566,64644,71,2,f +1566,6541,71,5,f +1566,6541,72,1,f +1566,6589,19,4,f +1566,6628,0,4,f +1566,6636,71,1,f +1566,6636,28,1,f +1566,73983,71,1,f +1566,85861,71,1,f +1566,85861,71,1,t +1566,85984,19,2,f +1566,87079,379,1,f +1566,87994,0,1,f +1566,87994,0,1,t +1566,88072,72,1,f +1566,88704,0,2,f +1566,92280,0,2,f +1566,92280,15,1,f +1566,92338,179,2,f +1566,92338,179,1,t +1566,92585,297,1,f +1566,92738,0,1,f +1566,93274,0,2,f +1566,93274,71,1,f +1566,96874,25,1,t +1566,970c00pr0932,28,1,f +1566,970c00pr1085,28,1,f +1566,970c00pr1086,308,1,f +1566,973pr3145c01,71,1,f +1566,973pr3461c01,28,1,f +1566,973pr3482c01,28,1,f +1566,98138,297,4,f +1566,98138,297,2,t +1566,98138,47,1,f +1566,98138,47,1,t +1566,98560,28,2,f +1566,99206,71,2,f +1566,99207,71,7,f +1566,99780,72,1,f +1568,11090,72,1,f +1568,11601,41,1,f +1568,11610,0,1,f +1568,13549,41,1,f +1568,30153,41,2,f +1568,3022,19,2,f +1568,30374,36,1,f +1568,3666,70,4,f +1568,4733,72,1,f +1568,4740,4,1,f +1568,59900,182,2,f +1568,60897,0,6,f +1568,6126b,182,1,f +1568,6141,19,2,f +1568,63965,297,1,f +1568,63965,0,1,f +1568,64644,297,1,f +1568,64644,71,1,f +1568,64647,57,2,f +1568,64727,4,1,f +1568,87994,0,1,f +1568,92690,71,1,f +1568,92690,297,1,f +1568,98138,182,2,f +1569,30602,4,2,f +1569,40996,4,2,f +1569,41855,4,4,f +1569,43093,1,1,f +1569,4740,47,1,t +1569,4740,47,1,f +1569,47430,4,2,f +1569,47431,4,2,f +1569,47432,4,2,f +1569,47452,72,2,f +1569,47454,72,2,f +1569,47455,28,10,f +1569,47457,4,2,f +1569,47458,4,4,f +1569,47462,137,1,f +1569,47472,4,1,f +1569,47474,72,1,f +1569,47477c01pb05,4,1,f +1569,47501,4,4,f +1569,48081,89,1,f +1569,bb153pb04,72,1,f +1569,kkc19,89,1,f +1569,kkc22,89,1,f +1569,kkc24,89,1,f +1570,2412b,0,2,f +1570,2412b,15,1,f +1570,2436,14,3,f +1570,2444,15,1,f +1570,2460,15,1,f +1570,2479,0,1,f +1570,2555,4,2,f +1570,3001,15,1,f +1570,3002,1,1,f +1570,3003,19,2,f +1570,3010,14,2,f +1570,3020,0,1,f +1570,3020,15,1,f +1570,3021,15,1,f +1570,3022,72,1,f +1570,3023,0,1,f +1570,3023,14,2,f +1570,30261,15,1,f +1570,3031,14,1,f +1570,30363,0,1,f +1570,30374,15,1,f +1570,3062b,15,3,f +1570,3068b,15,1,f +1570,3068b,0,2,f +1570,3068b,19,2,f +1570,3069b,0,2,f +1570,3069b,14,2,f +1570,3070b,36,1,t +1570,3070b,36,2,f +1570,32028,15,1,f +1570,32064b,15,1,f +1570,32184,15,1,f +1570,32278,0,2,f +1570,3475b,0,2,f +1570,3666,0,2,f +1570,3707,0,1,f +1570,3710,14,1,f +1570,3710,0,5,f +1570,3747b,1,2,f +1570,3749,19,1,f +1570,3788,14,2,f +1570,3795,0,4,f +1570,3957a,71,3,f +1570,4070,71,4,f +1570,4080,4,1,f +1570,4162,0,2,f +1570,41669,15,1,f +1570,4274,71,3,f +1570,4274,71,1,t +1570,43093,1,8,f +1570,4589,71,2,f +1570,47456,0,1,f +1570,50944pr0001,0,4,f +1570,50951,0,4,f +1570,54200,1,4,f +1570,54200,14,2,f +1570,54200,1,1,t +1570,54200,14,1,t +1570,59443,0,4,f +1570,6041,0,1,f +1570,60470a,4,1,f +1570,60581,0,1,f +1570,6140,15,2,f +1570,61409,14,2,f +1570,6141,34,3,f +1570,6141,34,2,t +1570,6141,46,1,f +1570,6141,4,1,t +1570,6141,36,2,t +1570,6141,46,1,t +1570,6141,36,3,f +1570,6141,4,6,f +1570,6157,0,2,f +1570,64700,14,1,f +1570,6536,1,1,f +1570,6636,28,2,f +1570,6636,15,1,f +1570,85984,0,3,f +1570,86501,72,1,f +1571,3626cpr0677,14,1,f +1571,41879a,272,1,f +1571,46303,71,1,t +1571,46303,71,1,f +1571,6141,15,1,f +1571,6141,15,4,t +1571,973pr1772c01,10,1,f +1572,3001a,1,10,f +1572,3001a,14,6,f +1572,3001a,0,6,f +1572,3001a,4,15,f +1572,3002a,4,4,f +1572,3002a,1,4,f +1572,3002a,14,4,f +1572,3003,4,8,f +1572,3003,1,6,f +1572,3004,14,4,f +1572,3004,4,4,f +1572,3006,4,1,f +1572,3010,1,2,f +1572,3010,14,2,f +1572,3031,4,1,f +1572,3035,1,1,f +1572,3037,47,2,f +1572,3137c01,0,2,f +1572,3185,14,3,f +1572,3297,1,4,f +1572,3299,1,1,f +1572,3300,1,2,f +1572,3471,2,1,f +1572,3641,0,4,f +1572,3853,15,5,f +1572,3854,15,10,f +1572,3856,2,2,f +1572,3861b,15,1,f +1572,x1454,2,1,f +1573,3001,14,2,f +1573,3002,0,1,f +1573,3002,14,1,f +1573,3003,4,1,f +1573,3003,14,7,f +1573,3003,0,5,f +1573,3003pe2,14,1,f +1577,2780,0,4,f +1577,30374,36,2,f +1577,32054,0,2,f +1577,32062,4,5,f +1577,42003,72,1,f +1577,43093,1,1,f +1577,4519,71,1,f +1577,47306,15,1,f +1577,47312,72,1,f +1577,48989,71,1,f +1577,53543,15,4,f +1577,53544,135,1,f +1577,53545,15,1,f +1577,53547,148,1,f +1577,53549,15,2,f +1577,53574,72,4,f +1577,54821,135,4,f +1577,57536,42,1,f +1577,60176,72,5,f +1577,60912,15,1,f +1577,60924,135,1,f +1577,60935,135,2,f +1577,61054,72,4,f +1577,62233,135,1,f +1577,6558,1,2,f +1578,13809pr0003,70,1,f +1578,30089,0,1,f +1578,88646,0,1,f +1578,970c00pr0915,70,1,f +1578,973c48,70,1,f +1579,10062,28,1,f +1579,10064,28,1,f +1579,2335,71,2,f +1579,2343,297,2,f +1579,2357,0,2,f +1579,2357,71,20,f +1579,2376,0,1,f +1579,2431,70,6,f +1579,2449,71,2,f +1579,2454a,71,4,f +1579,2458,72,3,f +1579,2460,288,2,f +1579,2460,71,1,f +1579,2476a,288,2,f +1579,2489,70,3,f +1579,2512,71,1,f +1579,2540,0,5,f +1579,2555,71,6,f +1579,2566,0,2,f +1579,2587,80,1,f +1579,2780,0,4,f +1579,2780,0,1,t +1579,2877,70,4,f +1579,3001,288,3,f +1579,3001,72,4,f +1579,3002,70,2,f +1579,3003,288,8,f +1579,3003,72,4,f +1579,3004,72,16,f +1579,3004,71,22,f +1579,3004,70,2,f +1579,3005,72,2,f +1579,3005,71,2,f +1579,3008,72,4,f +1579,3009,71,5,f +1579,3010,71,6,f +1579,3010,0,1,f +1579,3010,288,3,f +1579,3010,70,1,f +1579,3010,72,2,f +1579,30153,36,1,f +1579,3020,70,2,f +1579,3021,70,4,f +1579,3022,0,2,f +1579,3022,70,3,f +1579,30223,70,2,f +1579,3023,72,2,f +1579,3023,70,1,f +1579,30236,72,1,f +1579,30237a,70,1,f +1579,3024,0,2,f +1579,3028,72,3,f +1579,3029,71,2,f +1579,30293pat0002,72,1,f +1579,30294pat0001,72,1,f +1579,3030,72,7,f +1579,3034,71,1,f +1579,30374,0,6,f +1579,30385,80,4,f +1579,3039,71,4,f +1579,30395,72,1,f +1579,3040b,0,4,f +1579,3045,0,2,f +1579,3046a,72,2,f +1579,3048c,297,9,f +1579,3062b,70,2,f +1579,3069b,72,2,f +1579,3070b,72,2,f +1579,3070b,72,1,t +1579,3188,288,2,f +1579,3189,288,2,f +1579,32012,72,1,f +1579,3228c,71,6,f +1579,32316,71,2,f +1579,32530,0,2,f +1579,32530,72,4,f +1579,32556,19,2,f +1579,32580,135,1,f +1579,33057,484,1,f +1579,3308,71,2,f +1579,3403c01,0,1,f +1579,3460,71,1,f +1579,3460,70,2,f +1579,3581,71,2,f +1579,3622,71,6,f +1579,3623,0,4,f +1579,3623,70,4,f +1579,3626bpr0325,14,1,f +1579,3626bpr0389,14,1,f +1579,3626bpr0433,14,1,f +1579,3626bpr0511,378,2,f +1579,3626cpr0499,14,1,f +1579,3659,0,1,f +1579,3660,71,2,f +1579,3665,72,8,f +1579,3665,71,4,f +1579,3666,70,2,f +1579,3673,71,2,f +1579,3673,71,1,t +1579,3684,72,4,f +1579,3688,272,2,f +1579,3700,72,4,f +1579,3701,72,2,f +1579,3710,70,1,f +1579,3713,71,1,t +1579,3713,71,1,f +1579,3730,0,2,f +1579,3731,0,2,f +1579,3794a,0,3,f +1579,3795,70,11,f +1579,3830,70,2,f +1579,3831,70,2,f +1579,3832,70,2,f +1579,3837,0,1,f +1579,3841,72,2,f +1579,3847,135,1,f +1579,3894,72,4,f +1579,3937,71,1,f +1579,3941,70,9,f +1579,4032a,70,1,f +1579,4070,72,2,f +1579,4070,71,2,f +1579,41239,72,2,f +1579,41539,72,1,f +1579,41879a,70,4,f +1579,4274,71,1,t +1579,4274,71,10,f +1579,4287,70,4,f +1579,4287,72,4,f +1579,43093,1,2,f +1579,43337,71,8,f +1579,4424,70,2,f +1579,4460b,71,10,f +1579,4460b,72,4,f +1579,4477,70,2,f +1579,4503,80,1,f +1579,4522,0,1,f +1579,4589,0,5,f +1579,4600,0,4,f +1579,4735,0,4,f +1579,47847,72,2,f +1579,47905,72,1,f +1579,47905,0,5,f +1579,48183,288,4,f +1579,48723,70,3,f +1579,50254,0,8,f +1579,53451,15,2,f +1579,53451,15,1,t +1579,53451,135,3,f +1579,53451,135,1,t +1579,53705,134,8,f +1579,54200,288,4,f +1579,54200,0,1,f +1579,54200,0,1,t +1579,54200,272,14,f +1579,54200,288,1,t +1579,54200,272,3,t +1579,55013,72,1,f +1579,55817,132,1,f +1579,56823c50,0,1,f +1579,59231pr0002,72,3,f +1579,6020,0,3,f +1579,60639c01,28,1,f +1579,60642c01,28,1,f +1579,60671pr0002,28,1,f +1579,60674,71,1,f +1579,60747,80,1,f +1579,60747,82,1,f +1579,60748,80,1,f +1579,60748,134,1,f +1579,60749,308,2,f +1579,60750,0,1,f +1579,60750,484,1,f +1579,60751,132,1,f +1579,60752,134,2,f +1579,6082pat0001,72,1,f +1579,6083,72,1,f +1579,6111,71,5,f +1579,6126a,57,4,f +1579,6134,0,1,f +1579,6141,71,1,t +1579,6141,0,4,f +1579,6141,57,4,f +1579,6141,71,4,f +1579,6141,57,2,t +1579,6141,0,1,t +1579,61856p40,72,1,f +1579,6231,71,4,f +1579,6232,72,2,f +1579,62462,71,1,f +1579,6249,72,1,f +1579,6541,71,1,f +1579,6636,70,12,f +1579,75c32,148,1,f +1579,970x199,70,2,f +1579,973pr1212c01,72,2,f +1579,973pr1215c01,272,1,f +1579,973pr1321c01,72,1,f +1579,973pr1349c01,70,2,f +1580,2348b,41,2,f +1580,2349a,1,2,f +1580,2377,1,2,f +1580,298c01,1,2,f +1580,298c01,1,1,t +1580,3010,1,1,f +1580,3020,1,1,f +1580,3022,0,1,f +1580,3023,1,4,f +1580,3023,7,1,f +1580,3024,1,2,f +1580,3024,46,2,f +1580,3024,36,2,f +1580,3034,0,1,f +1580,3062b,7,2,f +1580,3069b,1,4,f +1580,3070b,1,3,f +1580,3070bp02,14,2,f +1580,3070bp02,14,1,t +1580,3626apr0001,14,1,f +1580,3641,0,4,f +1580,3660p01,15,1,f +1580,3679,7,1,f +1580,3680,1,1,f +1580,3710,7,2,f +1580,3710,1,1,f +1580,3794a,1,1,f +1580,3821,1,1,f +1580,3822,1,1,f +1580,3823,41,1,f +1580,3829c01,14,1,f +1580,3937,1,1,f +1580,3938,1,1,f +1580,3960,15,1,f +1580,4070,15,1,f +1580,4079,14,1,f +1580,4081b,7,1,f +1580,4211,7,2,f +1580,4215ap09,1,2,f +1580,4315,1,2,f +1580,4485,1,1,f +1580,4589,15,1,f +1580,4589,7,1,f +1580,4595,7,1,f +1580,4600,0,2,f +1580,4624,7,4,f +1580,4740,0,1,f +1580,4862,41,2,f +1580,6141,7,3,f +1580,970c00,15,1,f +1580,973p0bc01,15,1,f +1582,2356,71,2,f +1582,2357,0,4,f +1582,2412b,71,3,f +1582,2431pr0028,72,1,f +1582,2449,14,32,f +1582,2456,14,7,f +1582,2456,15,2,f +1582,2465,14,2,f +1582,2555,0,2,f +1582,2577,0,4,f +1582,298c02,4,1,t +1582,298c02,0,6,f +1582,298c02,378,1,t +1582,298c02,0,1,t +1582,298c02,4,1,f +1582,298c02,378,2,f +1582,30000,1,2,f +1582,3001,71,2,f +1582,3003,14,10,f +1582,3003,0,4,f +1582,3003,71,3,f +1582,3004,14,24,f +1582,3004,72,7,f +1582,3004,0,6,f +1582,3004,70,6,f +1582,3005,14,18,f +1582,3005,0,8,f +1582,3009,14,26,f +1582,3009,0,2,f +1582,3009,15,2,f +1582,3010,70,8,f +1582,3010,15,5,f +1582,3010,14,14,f +1582,3020,15,2,f +1582,3022,15,4,f +1582,3023,14,3,f +1582,3023,15,3,f +1582,3031,72,2,f +1582,3032,14,4,f +1582,3033,14,3,f +1582,3034,72,2,f +1582,30357,72,4,f +1582,30367b,14,1,f +1582,3039,0,4,f +1582,3039pr0005,15,1,f +1582,3040b,0,4,f +1582,30414,4,3,f +1582,30565,72,4,f +1582,3063b,0,8,f +1582,3068b,4,2,f +1582,3069b,14,2,f +1582,3069bpr0030,15,1,f +1582,3176,14,1,f +1582,32013,0,1,f +1582,32034,0,1,f +1582,32062,4,1,f +1582,32123b,71,1,t +1582,32123b,71,2,f +1582,32269,71,1,f +1582,32270,71,2,f +1582,32498,0,1,f +1582,3307,14,1,f +1582,3626b,15,2,f +1582,3660,14,10,f +1582,3666,14,6,f +1582,3666,4,1,f +1582,3700,19,8,f +1582,3705,0,1,f +1582,3710,15,1,f +1582,3737,0,2,f +1582,3749,19,2,f +1582,3795,70,3,f +1582,3795,14,4,f +1582,3795,4,1,f +1582,3826stk01,9999,1,t +1582,3894,14,1,f +1582,3898,47,4,f +1582,3937,14,1,f +1582,3938,15,1,f +1582,3941,14,6,f +1582,3941,378,3,f +1582,3941,15,6,f +1582,3958,70,2,f +1582,3961pr03,15,2,f +1582,4032a,1,2,f +1582,4032a,15,4,f +1582,4032a,4,3,f +1582,4070,14,6,f +1582,4081b,4,2,f +1582,41753,72,1,f +1582,41767,0,4,f +1582,41768,0,4,f +1582,41769,72,2,f +1582,41770,72,2,f +1582,42022,0,4,f +1582,43337,72,1,f +1582,43722,4,2,f +1582,43722,15,1,f +1582,43723,4,2,f +1582,43723,15,1,f +1582,44126,0,2,f +1582,44301a,14,2,f +1582,44302a,14,4,f +1582,4599a,71,1,f +1582,4740,0,1,f +1582,47431,14,2,f +1582,47454,14,2,f +1582,47455,14,4,f +1582,48092,0,4,f +1582,48169,15,2,f +1582,48336,0,1,f +1582,6081,14,2,f +1582,6091,14,4,f +1582,6111,14,4,f +1582,6112,15,2,f +1582,6112,70,4,f +1582,6141,46,1,t +1582,6141,46,1,f +1582,6141,33,1,t +1582,6141,33,1,f +1582,6178,14,2,f +1582,6222,70,2,f +1582,6587,72,2,f +1582,6636,0,4,f +1582,85545,1,1,f +1585,3002,15,2,f +1585,3003,14,2,f +1585,3003,15,5,f +1585,3004,15,1,f +1585,3004p60,15,1,f +1585,3009pt1,15,1,f +1585,3022,15,2,f +1585,3022,4,2,f +1585,3030,4,1,f +1585,3030,0,1,f +1585,3626apr0001,14,2,f +1585,3794a,15,4,f +1585,4006,0,1,f +1585,4083,14,1,f +1585,4485,4,2,f +1585,970c00,4,2,f +1585,973p60c01,15,2,f +1586,2654,15,1,f +1586,2780,0,1,t +1586,2780,0,4,f +1586,3003,15,1,f +1586,30176,2,1,f +1586,3021,15,1,f +1586,3022,15,1,f +1586,3022,0,1,f +1586,3023,15,1,f +1586,30367c,15,1,f +1586,3039,0,1,f +1586,3040b,0,4,f +1586,3070b,0,4,f +1586,3070b,0,1,t +1586,32028,15,1,f +1586,3665,0,4,f +1586,3700,0,4,f +1586,3710,15,2,f +1586,3794b,0,4,f +1586,47457,15,1,f +1586,48336,15,2,f +1586,48336,0,1,f +1586,4871,15,1,f +1586,52501,15,2,f +1586,54200,15,1,t +1586,54200,15,2,f +1586,6019,0,2,f +1586,60470a,0,1,f +1586,6091,15,2,f +1586,6091,0,2,f +1586,6141,0,1,f +1586,6141,0,1,t +1586,63864,15,2,f +1586,6541,0,4,f +1586,87087,15,2,f +1587,13392pr0001,212,1,f +1587,3795,27,1,f +1587,48995pr0004,15,1,f +1587,87079pr0054,15,1,f +1589,2335,1,8,f +1589,2343,297,1,f +1589,2412b,70,6,f +1589,2412b,19,13,f +1589,2431,308,48,f +1589,2431,71,19,f +1589,2432,71,5,f +1589,2445,0,1,f +1589,2449,308,14,f +1589,2453a,72,2,f +1589,2453a,0,3,f +1589,2527,4,4,f +1589,2530,72,2,t +1589,2530,72,2,f +1589,2540,0,12,f +1589,2547,72,1,f +1589,2555,71,2,f +1589,2560,308,4,f +1589,2561,70,3,f +1589,2562,70,3,f +1589,2564,0,1,f +1589,2566,0,3,f +1589,2654,72,4,f +1589,2780,0,1,t +1589,2780,0,21,f +1589,2817,71,8,f +1589,3001,70,7,f +1589,3003,70,6,f +1589,3004,73,14,f +1589,3004,0,27,f +1589,3004,19,8,f +1589,30046,0,2,f +1589,3005,73,4,f +1589,30055,71,4,f +1589,3008,308,4,f +1589,30085,72,1,f +1589,3009,19,6,f +1589,30099,308,2,f +1589,3010,73,8,f +1589,3010,19,6,f +1589,30136,308,84,f +1589,30137,70,6,f +1589,30150,15,2,f +1589,30153,41,1,f +1589,30153,34,1,f +1589,30153,46,1,f +1589,30153,33,1,f +1589,30153,36,1,f +1589,30154,72,1,f +1589,3020,19,6,f +1589,3020,70,8,f +1589,3021,19,12,f +1589,3022,70,7,f +1589,3023,0,12,f +1589,3023,272,25,f +1589,30237a,70,2,f +1589,3024,19,8,f +1589,3027,70,4,f +1589,3029,70,4,f +1589,3033,70,2,f +1589,3035,70,3,f +1589,30357,70,2,f +1589,3039,19,3,f +1589,3040b,308,31,f +1589,3040b,0,24,f +1589,30503,70,2,f +1589,30565,272,2,f +1589,3062b,19,19,f +1589,3062b,71,6,f +1589,3062b,72,10,f +1589,3068bpr0139b,19,1,f +1589,3070b,15,6,f +1589,3070b,15,2,t +1589,32001,0,1,f +1589,32013,0,10,f +1589,32015,71,1,f +1589,32018,72,6,f +1589,32034,71,1,f +1589,32062,4,78,f +1589,32073,71,1,f +1589,32199,0,4,f +1589,32523,0,1,f +1589,32530,72,3,f +1589,33057,484,2,f +1589,33172,25,1,f +1589,3455,0,8,f +1589,3460,308,13,f +1589,3460,70,2,f +1589,3581,0,2,f +1589,3622,70,10,f +1589,3623,19,6,f +1589,3623,70,2,f +1589,3633,15,2,f +1589,3633,72,32,f +1589,3659,19,8,f +1589,3660,70,8,f +1589,3660,0,3,f +1589,3665,0,36,f +1589,3665,19,4,f +1589,3666,272,13,f +1589,3678b,0,3,f +1589,37,72,2,f +1589,3709,72,3,f +1589,3710,0,3,f +1589,3747b,19,2,f +1589,3794b,28,12,f +1589,3795,70,5,f +1589,3795,19,4,f +1589,3832,70,2,f +1589,3832,19,8,f +1589,3849,0,2,f +1589,3937,0,4,f +1589,3938,71,4,f +1589,3941,70,14,f +1589,3957a,70,9,f +1589,40234,71,1,f +1589,40241,70,2,f +1589,4032a,19,5,f +1589,4070,0,63,f +1589,4085c,71,3,f +1589,4151b,72,2,f +1589,41678,0,2,f +1589,41769,70,1,f +1589,41770,70,1,f +1589,42003,72,4,f +1589,42023,0,2,f +1589,4274,1,15,f +1589,4274,1,1,t +1589,4286,72,4,f +1589,43093,1,12,f +1589,44294,71,2,f +1589,44300,72,1,f +1589,4477,19,6,f +1589,4490,0,28,f +1589,4495b,4,2,f +1589,4519,71,25,f +1589,4528,135,1,f +1589,4529,0,1,f +1589,4589,70,24,f +1589,4589,71,5,f +1589,4589,33,1,f +1589,4599b,71,3,f +1589,4600,0,8,f +1589,4623,71,19,f +1589,4624,71,16,f +1589,4733,71,1,f +1589,4735,0,3,f +1589,4738a,70,1,f +1589,4739a,70,1,f +1589,47404,70,1,f +1589,4790,70,1,f +1589,47996,0,6,f +1589,48002,70,4,f +1589,4865a,19,3,f +1589,48723,70,2,f +1589,48729a,72,1,t +1589,48729a,72,6,f +1589,50450,0,3,f +1589,52107,0,9,f +1589,53989,135,12,f +1589,57503,334,1,f +1589,57504,334,1,f +1589,57505,334,1,f +1589,57506,334,1,f +1589,59443,70,91,f +1589,59443,0,4,f +1589,60169,72,1,f +1589,6020,0,3,f +1589,60470a,71,10,f +1589,60471,0,4,f +1589,60475a,0,10,f +1589,60477,308,6,f +1589,60479,308,6,f +1589,60594,0,6,f +1589,60607,15,12,f +1589,6108,19,1,f +1589,6112,0,3,f +1589,6141,25,1,f +1589,6141,0,1,t +1589,6141,4,2,f +1589,6141,46,3,f +1589,6141,4,2,t +1589,6141,297,76,f +1589,6141,182,3,f +1589,6141,46,1,t +1589,6141,297,2,t +1589,6141,0,10,f +1589,6141,182,1,t +1589,6141,71,37,f +1589,6141,71,1,t +1589,61482,71,1,f +1589,61482,71,1,t +1589,61678,308,18,f +1589,61780,70,2,f +1589,6222,70,10,f +1589,6232,71,4,f +1589,62462,71,1,f +1589,6266,0,14,f +1589,63965,70,3,f +1589,64644,308,3,f +1589,64644,297,2,f +1589,64645,308,2,f +1589,64647,272,4,f +1589,64647,57,4,f +1589,64648,135,2,f +1589,64651,308,2,f +1589,64727,71,1,f +1589,6536,71,6,f +1589,6587,72,1,f +1589,75347,70,6,f +1589,84624,9999,1,f +1589,84943,148,4,f +1589,87675,15,1,f +1589,87676,15,7,f +1594,2412b,72,6,f +1594,2431,15,1,f +1594,2436,15,1,f +1594,30055,72,2,f +1594,3010,15,4,f +1594,30162,72,1,f +1594,3020,72,1,f +1594,3022,14,2,f +1594,3036,15,1,f +1594,3038,15,2,f +1594,3069b,46,2,f +1594,3070b,36,2,f +1594,3190,72,1,f +1594,3191,72,1,f +1594,3245b,15,2,f +1594,3623,15,2,f +1594,3624,15,1,f +1594,3626bpr0410,14,1,f +1594,3626bpr0411,14,1,f +1594,3665,15,4,f +1594,3710,0,3,f +1594,3710,1,3,f +1594,3794a,0,1,f +1594,3795,15,1,f +1594,3829c01,71,1,f +1594,3959,0,1,f +1594,4079,14,1,f +1594,41334,0,1,f +1594,4176,40,1,f +1594,4349,72,1,f +1594,44728,71,2,f +1594,4488,0,4,f +1594,4532,15,2,f +1594,4533,15,2,f +1594,4740,71,1,f +1594,4864b,40,1,f +1594,50745,72,4,f +1594,52031,15,1,f +1594,52037,72,1,f +1594,52501,15,2,f +1594,54200,33,8,f +1594,6014b,71,4,f +1594,6015,0,4,f +1594,6112,15,2,f +1594,6141,4,1,t +1594,6141,4,1,f +1594,6141,46,1,t +1594,6141,46,1,f +1594,6636,15,3,f +1594,7245.1stk01,9999,1,t +1594,970c00,72,1,f +1594,970c00,0,1,f +1594,973pr1188c01,0,1,f +1594,973pr1197c01,15,1,f +1596,3811,19,1,f +1598,3010,7,50,f +1599,2412b,72,4,f +1599,2420,72,2,f +1599,2431,15,3,f +1599,2450,272,2,f +1599,2525,15,1,f +1599,2540,71,2,f +1599,2540,0,9,f +1599,2654,72,4,f +1599,2817,0,2,f +1599,3004,71,2,f +1599,3008,72,2,f +1599,3009,72,2,f +1599,3010,15,3,f +1599,30194,72,2,f +1599,3020,72,6,f +1599,3021,320,2,f +1599,3021,71,2,f +1599,3022,0,3,f +1599,3023,72,20,f +1599,30236,19,1,f +1599,30237a,15,1,f +1599,3024,320,2,f +1599,3031,72,1,f +1599,3034,0,4,f +1599,3035,71,2,f +1599,30355,320,1,f +1599,30356,320,1,f +1599,30361pr0002,320,1,f +1599,30362,320,2,f +1599,30364,0,2,f +1599,30367cpr0001,72,4,f +1599,30367cpr0010,15,1,f +1599,3037,320,2,f +1599,30374,42,1,f +1599,30374,0,1,f +1599,30376,72,2,f +1599,30377,0,10,f +1599,30377,0,1,t +1599,30382,272,4,f +1599,30383,15,2,f +1599,30386,0,3,f +1599,3039,15,2,f +1599,3039pr0014,0,1,f +1599,30553,0,2,f +1599,30565,272,2,f +1599,3062b,272,2,f +1599,3068b,320,5,f +1599,3068b,272,3,f +1599,3068b,15,1,f +1599,3069b,15,8,f +1599,3070b,15,1,t +1599,3070b,15,1,f +1599,3176,0,1,f +1599,32000,72,2,f +1599,32015,71,2,f +1599,32062,4,4,f +1599,3626bpr0555,25,1,f +1599,3665,72,2,f +1599,3666,320,2,f +1599,3679,71,1,f +1599,3680,0,1,f +1599,3710,72,10,f +1599,3710,320,10,f +1599,3747b,72,1,f +1599,3794b,320,1,f +1599,3794b,72,4,f +1599,4085c,71,2,f +1599,4150,15,1,f +1599,4150,0,2,f +1599,4162,15,2,f +1599,41747,15,1,f +1599,41748,15,1,f +1599,41767,15,1,f +1599,41768,15,1,f +1599,41769,72,1,f +1599,41770,72,1,f +1599,41883,40,1,f +1599,42060pr0002,320,1,f +1599,42061pr0002,320,1,f +1599,43719,15,1,f +1599,43722,15,4,f +1599,43723,15,4,f +1599,44300,72,3,f +1599,44302a,0,2,f +1599,44302a,71,2,f +1599,44568,71,2,f +1599,44570,71,2,f +1599,4477,71,2,f +1599,4589,36,2,f +1599,4589,33,2,f +1599,47753,272,2,f +1599,4855,15,1,f +1599,4868b,71,2,f +1599,54200,72,1,t +1599,54200,72,2,f +1599,54383,71,1,f +1599,54383,320,2,f +1599,54384,71,1,f +1599,54384,320,2,f +1599,60471,4,1,f +1599,60477,0,2,f +1599,60479,4,2,f +1599,61184,71,4,f +1599,61195pr01,15,1,f +1599,6141,57,6,f +1599,6141,72,1,t +1599,6141,72,12,f +1599,6141,57,1,t +1599,6191,320,2,f +1599,6232,71,2,f +1599,64567,80,1,f +1599,6541,15,2,f +1599,6636,72,8,f +1599,7751stk01,9999,1,t +1599,970x192,71,1,f +1599,973pr1388c01,25,1,f +1600,2420,19,8,f +1600,2450,72,2,f +1600,2921,70,4,f +1600,3003,70,2,f +1600,3003,19,2,f +1600,3004,0,2,f +1600,3004,28,1,f +1600,3004,70,6,f +1600,3005,0,9,f +1600,3005,19,1,f +1600,3005,47,7,f +1600,3010,0,1,f +1600,3020,19,1,f +1600,3020,72,1,f +1600,3021,70,1,f +1600,3021,19,3,f +1600,3022,19,1,f +1600,3022,70,2,f +1600,3023,0,7,f +1600,3023,19,14,f +1600,3023,70,2,f +1600,3024,19,13,f +1600,3024,70,13,f +1600,3024,47,12,f +1600,3024,0,5,f +1600,3024,71,2,f +1600,3040b,71,6,f +1600,3062b,70,1,f +1600,3622,0,1,f +1600,3623,72,2,f +1600,3623,0,3,f +1600,3623,19,7,f +1600,3666,19,1,f +1600,3710,72,1,f +1600,3795,70,1,f +1600,54200,71,11,f +1600,6141,71,1,f +1602,3020,71,3,f +1602,3022,15,2,f +1602,3022,71,3,f +1602,3023,71,1,f +1602,30363,71,1,f +1602,3040b,71,2,f +1602,3623,71,1,f +1602,3665,71,1,f +1602,3710,71,2,f +1602,3710,15,1,f +1602,3794b,71,4,f +1602,3795,15,3,f +1602,43722,71,1,f +1602,43723,71,1,f +1602,54200,71,1,f +1603,2357,378,8,f +1603,2357,6,3,f +1603,2357,484,11,f +1603,2357,19,84,f +1603,2420,484,2,f +1603,2420,19,7,f +1603,2420,378,72,f +1603,2431,484,4,f +1603,2456,19,15,f +1603,2456,378,3,f +1603,2458,1,2,f +1603,2465,19,2,f +1603,3001,6,4,f +1603,3001,19,73,f +1603,3001,484,15,f +1603,3001,378,4,f +1603,3002,6,3,f +1603,3002,19,57,f +1603,3002,484,1,f +1603,3002,378,1,f +1603,3003,6,10,f +1603,3003,19,27,f +1603,3003,378,4,f +1603,3003,484,3,f +1603,3004,6,5,f +1603,3004,484,2,f +1603,3004,378,10,f +1603,3004,19,55,f +1603,3004pt6,8,1,f +1603,3005,378,9,f +1603,3005,19,8,f +1603,3007,19,19,f +1603,3008,378,2,f +1603,3008,19,16,f +1603,3009,19,42,f +1603,3009,378,2,f +1603,3009,484,4,f +1603,3010,19,54,f +1603,3010,378,6,f +1603,3010,6,1,f +1603,3010,484,7,f +1603,30104,8,2,f +1603,3020,19,5,f +1603,3020,6,1,f +1603,3020,378,23,f +1603,3020,484,3,f +1603,3021,484,1,f +1603,3021,6,1,f +1603,3021,378,24,f +1603,3021,19,3,f +1603,3022,6,2,f +1603,3022,484,1,f +1603,3022,378,22,f +1603,3023,0,3,f +1603,3023,378,46,f +1603,3023,7,3,f +1603,3024,378,33,f +1603,3032,19,2,f +1603,3034,378,3,f +1603,3039,378,2,f +1603,3040b,7,2,f +1603,30526,8,2,f +1603,3062b,8,6,f +1603,3068b,378,3,f +1603,3068b,6,1,f +1603,3069b,378,13,f +1603,3070b,378,2,f +1603,3070b,378,1,t +1603,3070b,0,2,f +1603,3070b,0,1,t +1603,32000,0,2,f +1603,32028,378,5,f +1603,32064a,15,2,f +1603,32073,15,1,f +1603,32174,15,2,f +1603,32474,7,2,f +1603,3308,15,1,f +1603,3403,0,1,f +1603,3404,0,1,f +1603,3460,15,1,f +1603,3460,378,5,f +1603,3622,484,2,f +1603,3622,19,46,f +1603,3622,378,2,f +1603,3623,378,24,f +1603,3623,15,2,f +1603,3623,8,2,f +1603,3666,378,12,f +1603,3666,19,1,f +1603,3710,0,1,f +1603,3710,378,16,f +1603,3710,484,4,f +1603,3794a,6,8,f +1603,3794a,378,26,f +1603,3795,6,1,f +1603,3795,378,21,f +1603,3895,15,1,f +1603,4070,378,3,f +1603,4282,19,1,f +1603,4282,484,1,f +1603,4286,7,6,f +1603,6111,19,1,f +1603,6141,0,2,f +1603,6141,8,1,f +1603,6141,8,1,t +1603,6141,0,1,t +1604,10247,71,2,f +1604,2540,15,2,f +1604,2780,0,2,f +1604,3001,4,1,f +1604,3004,4,1,f +1604,3020,272,3,f +1604,3021,15,1,f +1604,3023,71,2,f +1604,3065,40,1,f +1604,3068b,15,1,f +1604,3623,71,2,f +1604,3673,71,2,f +1604,3747b,4,1,f +1604,3794b,15,1,f +1604,3795,72,2,f +1604,4070,72,2,f +1604,41769,272,1,f +1604,41770,272,1,f +1604,44676,15,2,f +1604,44728,4,1,f +1604,47457,4,1,f +1604,54200,40,2,f +1604,61409,15,2,f +1604,6141,46,1,t +1604,6141,0,2,f +1604,6141,46,1,f +1604,6141,0,1,t +1604,63864,71,2,f +1604,6541,71,4,f +1604,92842,0,2,f +1604,93273,15,2,f +1606,2456,71,1,f +1606,3002,14,2,f +1606,3004,72,2,f +1606,3004,71,4,f +1606,3010,72,1,f +1606,30176,2,1,f +1606,3022,71,1,f +1606,3039,71,2,f +1606,3040b,72,2,f +1606,3062b,27,2,f +1606,3660,72,2,f +1606,3795,2,1,f +1606,3839b,15,1,f +1606,6141,27,1,f +1606,87087,71,2,f +1606,98138pr0008,15,2,f +1607,10201,0,4,f +1607,11477,4,2,f +1607,11477,15,2,f +1607,13349,15,1,f +1607,15068,4,8,f +1607,15207,4,2,f +1607,15573,4,5,f +1607,15672,15,2,f +1607,18651,0,1,f +1607,18677,71,2,f +1607,22885,71,2,f +1607,22961,71,4,f +1607,2412b,179,6,f +1607,2420,4,4,f +1607,2445,0,3,f +1607,2540,72,5,f +1607,2654,0,1,f +1607,2655,71,1,f +1607,2780,0,2,f +1607,2780,0,1,t +1607,3004,0,3,f +1607,3004,4,2,f +1607,3005,4,2,f +1607,3010,4,4,f +1607,3020,71,1,f +1607,3020,4,4,f +1607,3020,15,2,f +1607,3022,4,4,f +1607,3022,72,2,f +1607,3023,15,3,f +1607,3023,71,3,f +1607,3023,14,4,f +1607,3024,4,1,t +1607,3024,46,1,t +1607,3024,46,3,f +1607,3024,4,4,f +1607,3031,4,2,f +1607,30350b,72,1,f +1607,30367c,0,1,f +1607,3039pr0018,0,1,f +1607,3040b,15,1,f +1607,3069b,4,2,f +1607,3069b,15,4,f +1607,3070b,14,1,t +1607,3070b,14,6,f +1607,3176,4,1,f +1607,32123b,14,2,f +1607,32123b,14,1,t +1607,32125,71,2,f +1607,3464,15,1,f +1607,3622,4,2,f +1607,3622,15,1,f +1607,3666,4,2,f +1607,3666,0,2,f +1607,3666,15,2,f +1607,3673,71,2,f +1607,3673,71,1,t +1607,3700,71,4,f +1607,3701,15,1,f +1607,3710,15,7,f +1607,3747b,4,1,f +1607,3832,15,3,f +1607,3941,72,1,f +1607,4032a,14,4,f +1607,41769,0,2,f +1607,41770,0,2,f +1607,42610,71,2,f +1607,47397,4,1,f +1607,47397,15,1,f +1607,47398,4,1,f +1607,47398,15,1,f +1607,4742,0,1,f +1607,47753,4,1,f +1607,4871,15,3,f +1607,48729b,71,1,t +1607,48729b,71,1,f +1607,50373,4,3,f +1607,50950,0,1,f +1607,50951,0,2,f +1607,51739,0,2,f +1607,54383,0,1,f +1607,54384,0,1,f +1607,59443,71,2,f +1607,59900,71,2,f +1607,60474,15,1,f +1607,60478,72,2,f +1607,60481,0,1,f +1607,61409,72,4,f +1607,6141,14,1,t +1607,6141,14,2,f +1607,6141,71,2,t +1607,6141,71,4,f +1607,63864,15,2,f +1607,85984,71,2,f +1607,87079,4,5,f +1607,87083,72,2,f +1607,92279,40,1,f +1607,92280,0,2,f +1607,92593,0,6,f +1607,92946,4,10,f +1607,93606,4,2,f +1608,2437,41,1,f +1608,2516,14,1,f +1608,3666,4,4,f +1608,3794a,15,1,f +1608,3829c01,15,1,f +1608,4081b,4,2,f +1608,4083,15,1,f +1608,4085c,14,1,f +1608,43713,15,1,f +1608,43719,4,1,f +1608,4589,14,1,f +1608,47457,4,2,f +1608,4854,15,1,f +1608,6141,33,5,f +1608,6141,33,1,t +1610,2032,1,1,f +1610,3437,191,1,f +1610,40554,14,1,f +1610,4550,4,1,f +1610,62835pr0002,4,1,f +1610,62981,4,1,f +1610,64665,1,1,f +1610,64668,191,1,f +1610,73355,10,1,f +1610,89879,72,1,f +1611,2610,14,1,f +1611,2654,0,2,f +1611,3062b,15,2,f +1611,3626bp7e,14,1,f +1611,3901,0,1,f +1611,4032a,4,2,f +1611,476,15,1,f +1611,6075,4,1,f +1611,6141,15,2,f +1611,6141,34,1,f +1611,6141,4,2,f +1611,6141,36,1,f +1611,63965,15,1,f +1611,970c00,2,1,f +1611,973p73c01,2,1,f +1611,x66px7,47,1,f +1612,2489,308,1,f +1612,3835,0,1,f +1612,3835,0,1,t +1612,3837,72,1,t +1612,3837,72,1,f +1612,3941,19,2,f +1613,3022,47,40,f +1616,10830pat0001,0,1,f +1616,13971,71,4,f +1616,2343,47,2,f +1616,2419,2,1,f +1616,2434,0,1,f +1616,2446,1,1,f +1616,2453a,19,4,f +1616,2458,72,2,f +1616,2460,72,2,f +1616,2479,0,2,f +1616,2524,15,1,f +1616,3001,70,2,f +1616,3001,14,2,f +1616,3001,2,2,f +1616,3002,4,2,f +1616,3003,14,2,f +1616,3003,5,2,f +1616,3003,4,2,f +1616,3003pr0001,14,2,f +1616,3004,27,2,f +1616,3004,2,2,f +1616,3004,72,2,f +1616,3004,14,2,f +1616,3004,73,2,f +1616,3005pr0003,14,3,f +1616,30090,41,1,f +1616,3010,1,3,f +1616,3010,70,2,f +1616,3010,2,3,f +1616,30153,47,1,f +1616,30153,36,1,f +1616,30162,72,2,f +1616,3020,25,2,f +1616,3021,4,2,f +1616,30246,0,1,f +1616,30286,41,1,f +1616,30342,41,1,f +1616,3035,15,1,f +1616,3039,33,2,f +1616,3039,47,2,f +1616,3040b,25,2,f +1616,3065,47,2,f +1616,3065,36,2,f +1616,30663,71,1,f +1616,3068bpr0139a,19,1,f +1616,3069bpr0100,2,1,f +1616,32014,4,2,f +1616,32034,0,2,f +1616,32140,27,2,f +1616,32200,15,1,f +1616,3298,25,1,f +1616,3626bpr0895,15,1,f +1616,3626cpr0891,14,2,f +1616,3626cpr0892,14,2,f +1616,3659,71,3,f +1616,3679,71,2,f +1616,3680,0,2,f +1616,3700,0,2,f +1616,3708,0,2,f +1616,3738,0,1,f +1616,3747b,25,1,f +1616,3749,19,4,f +1616,3795,14,1,f +1616,3823,47,1,f +1616,3829c01,71,1,f +1616,3836,70,1,f +1616,3837,72,2,f +1616,3852b,191,1,f +1616,3857,72,1,f +1616,3878,0,1,f +1616,3901,0,1,f +1616,3937,15,1,f +1616,3938,15,1,f +1616,3941,46,2,f +1616,3957b,42,2,f +1616,3957b,0,1,f +1616,3962b,0,2,f +1616,4070,4,2,f +1616,4175,72,2,f +1616,4286,15,2,f +1616,4287,72,2,f +1616,4449,70,1,f +1616,4477,0,2,f +1616,4495b,2,2,f +1616,4727,10,2,f +1616,4728,45,2,f +1616,48493,0,1,f +1616,55295,0,1,f +1616,55296,0,1,f +1616,55297,0,1,f +1616,55298,0,1,f +1616,55299,0,1,f +1616,55300,0,1,f +1616,60169,72,2,f +1616,6020,71,1,f +1616,6060,0,2,f +1616,6064,2,1,f +1616,6093,70,1,f +1616,6124,42,2,f +1616,61254,0,4,f +1616,6131,0,1,f +1616,6190,72,2,f +1616,6232,19,2,f +1616,6260,15,2,f +1616,6265,15,4,f +1616,6266,15,4,f +1616,62808,72,2,f +1616,71015,334,1,f +1616,71155,0,1,f +1616,73590c01a,0,1,f +1616,86035,4,1,f +1616,87081,72,1,f +1616,88283,308,1,f +1616,94925,71,2,f +1616,970c00,15,3,f +1616,973c01,15,1,f +1616,973c02,4,1,f +1616,973c07,1,1,f +1616,973c18,0,1,f +1616,98302,0,2,f +1618,11618,322,1,t +1618,11618,322,1,f +1618,14769,323,1,f +1618,15068pr0008,212,6,f +1618,15395,15,1,f +1618,15573,297,2,f +1618,15712,297,3,f +1618,15745,45,1,f +1618,15745,41,1,f +1618,18674,15,1,f +1618,22885,5,2,f +1618,23969,85,1,f +1618,23988,297,1,f +1618,23988,297,1,t +1618,24666,15,1,f +1618,3004,5,2,f +1618,30153,47,2,f +1618,3020,212,2,f +1618,3020,5,1,f +1618,3021,5,2,f +1618,3021,212,2,f +1618,3022,15,1,f +1618,3023,85,4,f +1618,3031,10,1,f +1618,3034,71,1,f +1618,30367c,297,1,f +1618,3068b,15,2,f +1618,3069b,71,2,f +1618,3069bpr0055,15,1,f +1618,33291,10,1,t +1618,33291,10,3,f +1618,33291,31,1,f +1618,33291,31,1,t +1618,3633,15,1,f +1618,3659,15,2,f +1618,4489,297,4,f +1618,60481,212,4,f +1618,60593,15,2,f +1618,6124,45,1,f +1618,6141,25,1,t +1618,6141,25,1,f +1618,6157,71,2,f +1618,64644,297,3,f +1618,85984,85,1,f +1618,87580,297,1,f +1618,87580,85,2,f +1618,92593,15,1,f +1618,92950,5,2,f +1618,93160,15,1,t +1618,93160,15,2,f +1619,3001,4,6,f +1619,3001,1,9,f +1619,3001,0,2,f +1619,3001,14,6,f +1619,3001,15,1,f +1619,3002,0,2,f +1619,3002,4,2,f +1619,3002,1,2,f +1619,3002,15,2,f +1619,3002,14,2,f +1619,3003,15,2,f +1619,3003,0,2,f +1619,3003,14,4,f +1619,3003,1,4,f +1619,3003,4,4,f +1619,3004,15,10,f +1619,3004,4,25,f +1619,3004,1,19,f +1619,3004,47,2,f +1619,3004,14,22,f +1619,3004,0,8,f +1619,3005,1,14,f +1619,3005,4,16,f +1619,3005,0,6,f +1619,3005,14,16,f +1619,3005,15,10,f +1619,3008,14,2,f +1619,3008,1,1,f +1619,3008,4,1,f +1619,3009,1,8,f +1619,3009,4,6,f +1619,3009,14,6,f +1619,3009,0,2,f +1619,3010,1,12,f +1619,3010,4,14,f +1619,3010,15,8,f +1619,3010,14,14,f +1619,3010,0,4,f +1619,3020,1,2,f +1619,3020,4,2,f +1619,3021,1,2,f +1619,3022,1,2,f +1619,3031,1,1,f +1619,3032,1,1,f +1619,3032,4,1,f +1619,3034,1,4,f +1619,3035,4,1,f +1619,3039,47,2,f +1619,3039,1,4,f +1619,3081cc01,4,2,f +1619,3137c01,0,2,f +1619,3297,1,6,f +1619,3298,1,4,f +1619,3299,1,3,f +1619,3300,1,2,f +1619,3460,1,4,f +1619,3461,15,1,f +1619,3462,1,1,f +1619,3480,7,1,f +1619,3481,1,1,f +1619,3622,4,14,f +1619,3622,14,14,f +1619,3622,1,11,f +1619,3622,15,5,f +1619,3622,0,4,f +1619,3626apr0001,14,1,f +1619,3633,4,4,f +1619,3641,0,4,f +1619,3660,1,4,f +1619,3710,1,2,f +1619,3741,2,2,f +1619,3742,4,1,t +1619,3742,15,3,f +1619,3742,4,3,f +1619,3742,15,1,t +1619,3823,47,1,f +1619,3853,15,4,f +1619,3854,4,8,f +1619,3856,2,4,f +1619,3857,2,1,f +1619,3861b,15,1,f +1619,3901,6,1,f +1619,970c00,0,1,f +1619,973c01,15,1,f +1620,10197,72,2,f +1620,10288,308,1,f +1620,11289,41,2,f +1620,15339,148,1,f +1620,15339,179,1,f +1620,15341,1,2,f +1620,15341,297,2,f +1620,15343,1,2,f +1620,15343,297,2,f +1620,15349,297,1,f +1620,15350,1,1,f +1620,15353,25,2,f +1620,15354,27,1,f +1620,15354,25,1,f +1620,15355,0,2,f +1620,15358pat0003,36,3,f +1620,15391,0,2,f +1620,15392,72,2,f +1620,15976,0,2,f +1620,2780,0,1,f +1620,32002,19,2,f +1620,32013,1,2,f +1620,32014,71,2,f +1620,32015,0,6,f +1620,32039,0,5,f +1620,32054,0,4,f +1620,32062,4,6,f +1620,32073,71,1,f +1620,32199,0,1,f +1620,32316,1,2,f +1620,3626b,4,1,f +1620,3626b,27,1,f +1620,3673,71,2,f +1620,3705,0,1,f +1620,3706,0,2,f +1620,3713,71,4,f +1620,42003,0,3,f +1620,43093,1,7,f +1620,4519,71,4,f +1620,48729b,0,4,f +1620,48989,71,2,f +1620,54821,35,1,f +1620,55615,71,1,f +1620,59900,35,10,f +1620,60115,0,2,f +1620,60484,0,2,f +1620,60935,179,2,f +1620,61184,71,10,f +1620,6141,35,2,f +1620,62462,179,2,f +1620,6536,0,2,f +1620,74261,72,4,f +1620,87080,1,1,f +1620,87086,1,1,f +1620,90605,0,2,f +1620,90607,0,2,f +1620,90608,72,2,f +1620,90609,0,4,f +1620,90612,0,3,f +1620,90616,0,3,f +1620,90617,72,4,f +1620,90622,0,3,f +1620,90625,0,2,f +1620,90639,1,7,f +1620,90639pr0032,179,2,f +1620,90640,148,3,f +1620,93571,0,4,f +1620,98138pr0019,15,2,f +1620,98563,148,1,f +1620,98564,35,1,f +1620,98565,72,1,f +1620,98577,72,1,f +1620,98585,41,1,f +1620,98592,148,2,f +1620,98597,148,2,f +1623,11203,19,1,f +1623,12708pr01,47,2,f +1623,12825,4,2,f +1623,2540,4,2,f +1623,3023,19,1,f +1623,3024,19,1,f +1623,3070b,4,1,f +1623,3300,4,1,f +1623,3794b,15,1,f +1623,4081b,19,2,f +1623,44375a,15,1,f +1623,53451,4,1,f +1623,60897,4,2,f +1623,61252,19,1,f +1623,6141,19,1,f +1623,92946,4,3,f +1623,93160,15,1,f +1623,98313,320,1,f +1624,2412b,71,1,f +1624,2412b,15,4,f +1624,2412b,72,9,f +1624,2419,15,1,f +1624,2431,71,8,f +1624,2431,72,15,f +1624,2431,15,2,f +1624,2431,14,2,f +1624,2432,4,1,f +1624,2445,1,1,f +1624,2453a,15,2,f +1624,2456,15,1,f +1624,2458,71,2,f +1624,2460,0,5,f +1624,2498,1,2,f +1624,2653,4,2,f +1624,2654,46,5,f +1624,2780,0,2,t +1624,2780,0,4,f +1624,2877,15,4,f +1624,2922,0,2,f +1624,2926,0,5,f +1624,30000,72,2,f +1624,3003,71,1,f +1624,3003,1,2,f +1624,3003,0,3,f +1624,3004,4,2,f +1624,3004,15,2,f +1624,3004,71,1,f +1624,3005,15,2,f +1624,3005,0,1,f +1624,3005,14,2,f +1624,3007,1,2,f +1624,3009,0,2,f +1624,3009,27,8,f +1624,3009,1,1,f +1624,3009,25,5,f +1624,3009,15,8,f +1624,3010,27,2,f +1624,3010,15,5,f +1624,3010,0,16,f +1624,30157,72,4,f +1624,30165,72,2,f +1624,30165,4,1,f +1624,3020,4,4,f +1624,3020,1,3,f +1624,3020,14,3,f +1624,3021,15,2,f +1624,3022,4,5,f +1624,3023,36,2,f +1624,3023,46,4,f +1624,3023,1,11,f +1624,3023,72,4,f +1624,3023,27,16,f +1624,3024,47,3,f +1624,3024,182,8,f +1624,3028,72,2,f +1624,30292,41,8,f +1624,3030,72,2,f +1624,3030,15,1,f +1624,3031,14,1,f +1624,3032,15,1,f +1624,3032,1,2,f +1624,3032,72,4,f +1624,3033,15,3,f +1624,3034,4,4,f +1624,3034,72,7,f +1624,30357,72,8,f +1624,3036,71,9,f +1624,3039,4,1,f +1624,3039,15,2,f +1624,30414,1,1,f +1624,30554b,0,2,f +1624,30562,15,2,f +1624,3068b,2,2,f +1624,3068b,72,1,f +1624,3068bpr0136,72,1,f +1624,3069b,14,1,f +1624,3069b,0,3,f +1624,3069b,71,2,f +1624,3069b,72,5,f +1624,3069b,15,8,f +1624,3070b,72,3,t +1624,3070b,72,6,f +1624,3070bpr0007,71,2,f +1624,3070bpr0007,71,2,t +1624,3183c,71,4,f +1624,3184,0,4,f +1624,32028,71,2,f +1624,32028,15,18,f +1624,32083,1,8,f +1624,32324,71,4,f +1624,3245b,15,2,f +1624,33299a,71,2,f +1624,3460,72,4,f +1624,3622,15,8,f +1624,3623,72,2,f +1624,3624,0,1,f +1624,3626bpr0325,14,1,f +1624,3626bpr0389,14,1,f +1624,3626bpr0645,14,1,f +1624,3626bpr0646,14,1,f +1624,3626bpr0647,14,1,f +1624,3626bpr0649,14,1,f +1624,3665,15,8,f +1624,3666,71,1,f +1624,3666,25,1,f +1624,3666,4,1,f +1624,3666,27,8,f +1624,3666,15,12,f +1624,3700,72,2,f +1624,3700,71,6,f +1624,3710,0,3,f +1624,3710,14,3,f +1624,3738,15,2,f +1624,3794b,72,6,f +1624,3794b,4,6,f +1624,3795,71,5,f +1624,3821,25,1,f +1624,3821,14,1,f +1624,3822,25,1,f +1624,3822,14,1,f +1624,3829c01,4,2,f +1624,3829c01,1,1,f +1624,3832,0,2,f +1624,3832,71,10,f +1624,3836,70,1,f +1624,3894,1,2,f +1624,3899,47,1,f +1624,3901,0,1,f +1624,3958,72,2,f +1624,3958,71,1,f +1624,4032a,14,4,f +1624,4032a,1,2,f +1624,4079,1,12,f +1624,4079,4,3,f +1624,4085c,15,2,f +1624,4151b,72,4,f +1624,4162,72,4,f +1624,41751,40,2,f +1624,4176,40,2,f +1624,42022,15,4,f +1624,4282,71,1,f +1624,43337,15,1,f +1624,43337,25,2,f +1624,4345b,4,1,f +1624,4346,4,1,f +1624,44300,72,2,f +1624,44301a,15,2,f +1624,44302a,71,4,f +1624,4449,70,1,f +1624,44567a,72,6,f +1624,44571,15,2,f +1624,4460b,25,2,f +1624,44728,15,26,f +1624,4477,71,2,f +1624,4488,0,8,f +1624,4515,71,4,f +1624,4519,71,4,f +1624,4532,15,4,f +1624,4533,15,4,f +1624,4719,2,1,f +1624,4733,71,1,f +1624,4740,1,1,f +1624,47457,4,6,f +1624,47905,72,3,f +1624,48336,71,2,f +1624,50254,0,10,f +1624,50745,14,4,f +1624,50745,72,4,f +1624,50745,27,4,f +1624,52031,15,1,f +1624,52031,25,1,f +1624,52031,27,1,f +1624,52036,72,1,f +1624,52038,72,2,f +1624,52107,0,1,f +1624,52501,14,2,f +1624,54200,182,4,f +1624,54200,14,2,f +1624,54200,72,2,f +1624,54200,36,6,f +1624,54200,182,1,t +1624,54200,15,2,f +1624,54200,14,1,t +1624,54200,47,2,f +1624,54200,15,1,t +1624,54200,47,1,t +1624,54200,36,2,t +1624,54200,72,1,t +1624,54200,40,2,f +1624,54200,40,1,t +1624,57783,40,1,f +1624,57895,47,1,f +1624,58827,15,2,f +1624,6005,15,4,f +1624,6014b,71,12,f +1624,6019,4,4,f +1624,60470a,0,9,f +1624,60581,15,1,f +1624,60581,40,22,f +1624,60581,0,4,f +1624,60583a,0,2,f +1624,60596,0,6,f +1624,60596,15,1,f +1624,60616a,40,6,f +1624,6081,15,1,f +1624,6087,71,4,f +1624,6087,1,1,f +1624,6091,72,6,f +1624,61409,0,2,f +1624,6141,71,2,f +1624,6141,71,1,t +1624,6141,4,2,t +1624,6141,36,2,t +1624,6141,36,2,f +1624,6141,4,2,f +1624,6141,182,6,f +1624,6141,182,1,t +1624,6157,71,2,f +1624,61780,2,2,f +1624,6179,71,1,f +1624,6180,27,1,f +1624,62113,0,1,f +1624,62810,308,1,f +1624,63864,27,12,f +1624,64453,47,1,f +1624,64453,40,1,f +1624,6587,28,2,f +1624,6636,15,2,f +1624,6636,0,10,f +1624,6636,1,5,f +1624,85080,1,4,f +1624,85974,70,1,f +1624,85984,15,2,f +1624,86035,4,1,f +1624,87079,0,4,f +1624,87079,1,14,f +1624,87087,27,4,f +1624,87087,4,6,f +1624,87609,15,1,f +1624,87617,0,1,f +1624,87619,15,1,f +1624,87697,0,12,f +1624,88283,308,1,f +1624,88930,14,1,f +1624,88930,15,8,f +1624,88930,0,1,f +1624,92851,47,2,f +1624,970c00,15,1,f +1624,970c00,272,1,f +1624,970c00,1,1,f +1624,970c00,0,2,f +1624,970c00,25,1,f +1624,973pr1160c01,1,1,f +1624,973pr1184c01,0,1,f +1624,973pr1192c01,0,1,f +1624,973pr1573c01,15,1,f +1624,973pr1576c01,72,1,f +1624,973pr1617c01,2,1,f +1625,2339,70,2,f +1625,2345,0,4,f +1625,2357,0,6,f +1625,2357,72,7,f +1625,2397,72,1,f +1625,2420,72,1,f +1625,2431,71,1,f +1625,2431,0,1,f +1625,2445,28,1,f +1625,2446,320,1,f +1625,2446,72,1,f +1625,2446,28,1,f +1625,2446,288,1,f +1625,2446,272,1,f +1625,2453a,72,2,f +1625,2453a,0,2,f +1625,2453a,320,13,f +1625,2454a,0,16,f +1625,2454a,72,2,f +1625,2465,0,5,f +1625,2540,73,1,f +1625,2555,71,3,f +1625,2555,0,1,f +1625,2555,320,2,f +1625,2566,0,4,f +1625,2570,72,2,f +1625,2586px16,320,1,f +1625,2587,132,3,f +1625,2587pb06,4,1,f +1625,2587pb07,2,1,f +1625,2587pb08,73,1,f +1625,2587pb09,320,1,f +1625,2587pb10,85,1,f +1625,2654,19,1,f +1625,2654,0,1,f +1625,2736,71,4,f +1625,2780,0,8,f +1625,2817,0,1,f +1625,2921,71,2,f +1625,3001,0,3,f +1625,3001,72,6,f +1625,3002,72,2,f +1625,3003,70,2,f +1625,3003,72,6,f +1625,3003,0,1,f +1625,3004,72,11,f +1625,3004,0,69,f +1625,30044,320,1,f +1625,30045,0,2,f +1625,30045,320,2,f +1625,3005,72,16,f +1625,3005,71,1,f +1625,3005,0,20,f +1625,3008,0,7,f +1625,3008,71,2,f +1625,3009,72,8,f +1625,3009,0,4,f +1625,3010,72,3,f +1625,3010,0,5,f +1625,30104,72,2,f +1625,30134,70,2,f +1625,30156pb02,72,5,f +1625,30157,70,1,f +1625,30165,0,2,f +1625,30169,4,3,f +1625,3020,70,2,f +1625,3020,72,1,f +1625,3020,320,4,f +1625,3021,320,2,f +1625,3021,0,5,f +1625,3022,70,1,f +1625,3022,71,3,f +1625,30223,320,2,f +1625,3023,71,3,f +1625,3023,0,2,f +1625,3023,72,6,f +1625,3023,15,2,f +1625,3023,320,1,f +1625,30237a,0,3,f +1625,30238,57,1,f +1625,30240,71,1,f +1625,3027,0,3,f +1625,3027,320,3,f +1625,3027,28,9,f +1625,3028,320,6,f +1625,3029,28,2,f +1625,30293,70,1,f +1625,30294,70,1,f +1625,3031,72,1,f +1625,3031,70,2,f +1625,3032,0,1,f +1625,3035,28,1,f +1625,3036,0,1,f +1625,30374,70,2,f +1625,30383,72,6,f +1625,3039,71,2,f +1625,3039,70,1,f +1625,3040b,70,2,f +1625,3040b,0,4,f +1625,3040b,71,2,f +1625,3046a,70,2,f +1625,3048c,112,5,f +1625,30505,0,6,f +1625,30526,72,4,f +1625,30553,0,8,f +1625,3062b,0,2,f +1625,3062b,57,8,f +1625,3062b,19,3,f +1625,3063b,0,4,f +1625,3068b,72,2,f +1625,3068b,70,1,f +1625,3070b,71,3,f +1625,3070b,71,1,t +1625,3176,19,1,f +1625,3183c,71,1,f +1625,3185,0,1,f +1625,32000,71,1,f +1625,32013,135,4,f +1625,32015,0,4,f +1625,32034,0,1,f +1625,32062,4,12,f +1625,32064a,72,1,f +1625,32064a,320,6,f +1625,32069,0,1,f +1625,32123b,71,1,t +1625,32123b,71,10,f +1625,32140,72,4,f +1625,32192,0,2,f +1625,32269,71,1,f +1625,32530,72,4,f +1625,32532,0,1,f +1625,3297,72,4,f +1625,3308,72,2,f +1625,3308,0,7,f +1625,33176,143,1,f +1625,3403,71,2,f +1625,3404,71,2,f +1625,3455,0,3,f +1625,3460,70,8,f +1625,3581,0,2,f +1625,3622,72,5,f +1625,3622,0,17,f +1625,3622,70,1,f +1625,3623,71,1,f +1625,3623,0,1,f +1625,3626bpb0218,14,1,f +1625,3626bpb0220,14,1,f +1625,3626bpr0190,15,3,f +1625,3626bpr0348,14,1,f +1625,3626bpr0350,14,4,f +1625,3626bpr0351,14,1,f +1625,3633,72,2,f +1625,3648b,0,2,f +1625,3659,72,1,f +1625,3659,0,5,f +1625,3660,320,14,f +1625,3665,320,8,f +1625,3666,70,2,f +1625,3666,320,1,f +1625,3673,71,6,f +1625,3678b,0,2,f +1625,3684,0,8,f +1625,3684,72,9,f +1625,3684,71,1,f +1625,3700,70,12,f +1625,3701,72,2,f +1625,3702,0,4,f +1625,3705,0,2,f +1625,3706,0,1,f +1625,3708,0,1,f +1625,3710,0,4,f +1625,3710,320,1,f +1625,3713,0,6,f +1625,3713,71,2,f +1625,3731,0,1,f +1625,3749,19,9,f +1625,3754,72,2,f +1625,3754pb07,72,1,f +1625,3794a,320,2,f +1625,3794a,72,2,f +1625,3795,72,1,f +1625,3795,320,3,f +1625,3795,0,2,f +1625,3830,72,4,f +1625,3831,72,4,f +1625,3832,320,2,f +1625,3832,70,1,f +1625,3832,0,1,f +1625,3839b,320,4,f +1625,3846pb15,151,1,f +1625,3846pb16,151,1,f +1625,3846pb17,151,1,f +1625,3846pb18,151,1,f +1625,3848,132,3,f +1625,3849,135,4,f +1625,3894,71,1,f +1625,3941,0,3,f +1625,40241,320,1,f +1625,40242,0,1,f +1625,40249,0,1,f +1625,40253,0,1,f +1625,4032a,73,4,f +1625,4032a,71,1,f +1625,4070,0,4,f +1625,4070,72,1,f +1625,4070,320,2,f +1625,4081b,71,2,f +1625,4085c,72,1,f +1625,41530,57,2,f +1625,41539,72,2,f +1625,41539,320,3,f +1625,4162,72,2,f +1625,41752,8,1,t +1625,41753,72,1,t +1625,4185,70,1,f +1625,4201,72,1,f +1625,4274,71,2,f +1625,4274,71,1,t +1625,4286,0,4,f +1625,4286,112,2,f +1625,43093,1,2,f +1625,43888,72,9,f +1625,43898,70,1,f +1625,43899,72,5,f +1625,4424,70,1,f +1625,44294,71,2,f +1625,4444,0,6,f +1625,44567a,72,2,f +1625,4460a,0,4,f +1625,4491b,72,1,f +1625,4495a,320,4,f +1625,4497,135,6,f +1625,4497,0,5,f +1625,4519,71,4,f +1625,4529,0,1,f +1625,45590,0,2,f +1625,4588,135,4,f +1625,4623,0,5,f +1625,4623,70,1,f +1625,4735,0,2,f +1625,47461,179,2,f +1625,47847,70,2,f +1625,48485,85,1,f +1625,48486,73,1,f +1625,48487,4,1,f +1625,48488,2,1,f +1625,48489,0,1,f +1625,48490,0,2,f +1625,48492,73,1,f +1625,48492,112,1,f +1625,48493,132,3,f +1625,48494pb06,151,2,f +1625,48495,178,1,f +1625,48495,179,1,f +1625,48495,137,1,f +1625,48495,134,1,f +1625,48495,0,1,f +1625,4865a,19,1,f +1625,4871,0,2,f +1625,48723,70,1,f +1625,49668,135,37,f +1625,50602,178,2,f +1625,52107,0,4,f +1625,53613,132,1,f +1625,54200,4,1,f +1625,6019,0,2,f +1625,6066,0,9,f +1625,6082,70,1,f +1625,6083,70,1,f +1625,6111,72,1,f +1625,6111,0,3,f +1625,6112,72,2,f +1625,6112,0,8,f +1625,6123,72,1,f +1625,6126a,57,8,f +1625,6141,36,3,f +1625,6141,57,1,t +1625,6141,36,1,t +1625,6141,57,3,f +1625,6182,71,2,f +1625,6212,320,2,f +1625,6222,70,5,f +1625,6222,72,4,f +1625,6260,15,1,f +1625,6265,15,2,f +1625,6265,15,1,t +1625,6266,15,2,f +1625,6538b,70,6,f +1625,6541,72,2,f +1625,6553,0,1,f +1625,6558,0,1,f +1625,6587,72,1,f +1625,6630,0,1,f +1625,6636,72,7,f +1625,75347,0,3,f +1625,75998pr0007,15,2,f +1625,76110c04,0,1,f +1625,85543,15,1,f +1625,85544,4,3,f +1625,970x138,4,1,f +1625,970x140,73,1,f +1625,970x141,2,1,f +1625,970x154,0,4,f +1625,970x199,85,1,f +1625,973c12,2,1,f +1625,973c39,4,1,f +1625,973c40,73,1,f +1625,973c41,0,4,f +1625,973c49,85,1,f +1625,bb181set,47,2,f +1627,2357,19,2,f +1627,3009,19,3,f +1627,30136,19,2,f +1627,30141,72,1,f +1627,30170,72,1,t +1627,30170,72,1,f +1627,30171,70,1,f +1627,30176,2,1,f +1627,3020,19,1,f +1627,3023,484,1,f +1627,3023,320,2,f +1627,3035,19,1,f +1627,3040b,28,7,f +1627,3044b,272,1,f +1627,3046a,72,2,f +1627,3062b,272,2,f +1627,3298,72,1,f +1627,3626bpr0754a,14,1,f +1627,3626bpr0755a,71,2,f +1627,3700,0,1,f +1627,3941,72,1,f +1627,4085c,0,2,f +1627,4460b,19,2,f +1627,50859b,0,1,f +1627,50861,0,2,f +1627,50862,71,2,f +1627,54200,272,1,t +1627,54200,272,2,f +1627,6019,72,1,f +1627,60478,72,1,f +1627,6141,36,1,f +1627,6141,36,1,t +1627,6141,297,3,f +1627,6141,47,2,f +1627,6141,297,1,t +1627,6141,47,1,t +1627,64728,4,1,f +1627,6587,28,1,f +1627,85983pr02,320,1,f +1627,87580,272,1,f +1627,90462,0,2,f +1627,93247,148,2,f +1627,93251,148,2,f +1627,93252,297,1,f +1627,970c00,308,1,f +1627,970c00pr0195a,71,2,f +1627,973pb0780c01,71,2,f +1627,973pr1722bc01,15,1,f +1628,2419,0,1,f +1628,2431,14,2,f +1628,2458,15,1,f +1628,2780,0,1,t +1628,2780,0,2,f +1628,3020,0,1,f +1628,3020,71,1,f +1628,3022,0,6,f +1628,3023,14,4,f +1628,3031,14,1,f +1628,3035,0,1,f +1628,30363,14,1,f +1628,3039,14,2,f +1628,3068b,14,1,f +1628,32018,0,2,f +1628,3666,0,4,f +1628,3710,14,2,f +1628,3713,71,4,f +1628,3713,71,1,t +1628,3795,0,1,f +1628,41769,14,2,f +1628,41769,0,2,f +1628,41770,14,2,f +1628,41770,0,2,f +1628,4274,1,6,f +1628,4274,1,1,t +1628,47753,0,1,f +1628,54200,14,1,t +1628,54200,14,2,f +1628,55982,0,4,f +1628,58090,0,4,f +1628,60485,71,2,f +1628,61678,14,4,f +1628,62462,15,1,f +1628,62701,135,4,f +1628,6636,14,2,f +1628,87552,0,2,f +1628,87941,72,1,f +1628,87943,27,1,f +1628,87944,72,1,f +1628,88496,72,1,f +1630,10113,0,1,f +1630,10190,25,1,f +1630,11399,0,1,f +1630,11477,72,4,f +1630,11477,15,2,f +1630,11477,0,1,f +1630,11610,71,2,f +1630,15068,0,2,f +1630,15068,15,10,f +1630,15068,19,1,f +1630,15303,33,3,f +1630,15400,72,2,f +1630,15535pr0001,72,1,f +1630,15573,72,6,f +1630,15573,297,1,f +1630,15712,297,6,f +1630,18653,15,2,f +1630,18674,72,4,f +1630,18969,15,2,f +1630,18974,15,4,f +1630,20482,297,2,f +1630,20482,297,1,t +1630,22889,15,1,f +1630,2357,0,2,f +1630,2412b,297,1,f +1630,2420,0,2,f +1630,2437,40,1,f +1630,2445,0,1,f +1630,2654,47,2,f +1630,27145,14,1,f +1630,27145,14,1,t +1630,27149,0,1,f +1630,27150,0,1,f +1630,2730,71,2,f +1630,27325,15,1,f +1630,2780,0,2,f +1630,2780,0,1,t +1630,2926,0,1,f +1630,3001,0,1,f +1630,3002,4,1,f +1630,3004,70,4,f +1630,3005,71,2,f +1630,30132,72,1,t +1630,30132,72,4,f +1630,30157,72,2,f +1630,3020,28,5,f +1630,3022,15,2,f +1630,3022,14,1,f +1630,3022,72,1,f +1630,3023,15,4,f +1630,3023,1,3,f +1630,3023,0,9,f +1630,3023,71,3,f +1630,3024,0,1,t +1630,3024,15,1,t +1630,3024,15,7,f +1630,3024,0,2,f +1630,3031,0,3,f +1630,3035,0,1,f +1630,30357,0,2,f +1630,3040b,0,2,f +1630,30414,0,1,f +1630,30426,0,1,f +1630,30586,71,2,f +1630,3065,40,1,f +1630,3069b,191,2,f +1630,3069b,72,2,f +1630,30715,9999,1,f +1630,32000,72,2,f +1630,32123b,71,1,t +1630,32123b,71,1,f +1630,32270,0,1,f +1630,3460,72,2,f +1630,3626cpr9998,78,1,f +1630,3626cpr9999,323,1,f +1630,3666,72,2,f +1630,3666,15,3,f +1630,3709,0,2,f +1630,3710,0,2,f +1630,3710,19,4,f +1630,3713,4,1,t +1630,3713,4,4,f +1630,3738,71,1,f +1630,3795,15,1,f +1630,3795,19,4,f +1630,3829c01,0,1,f +1630,3829c01,71,1,f +1630,3832,71,1,f +1630,3839b,72,1,f +1630,3960,15,1,f +1630,4032a,71,2,f +1630,4070,0,6,f +1630,41879a,0,1,f +1630,4286,0,4,f +1630,4477,71,2,f +1630,4697b,71,1,f +1630,4697b,71,1,t +1630,4740,82,2,f +1630,4865b,19,2,f +1630,49668,191,1,f +1630,50745,179,1,f +1630,51739,71,1,f +1630,53451,297,2,f +1630,53451,297,1,t +1630,54200,36,2,f +1630,55978,0,2,f +1630,55981,297,4,f +1630,56145,297,2,f +1630,59900,72,2,f +1630,59900,33,2,f +1630,60474,15,1,f +1630,60478,15,2,f +1630,60478,0,2,f +1630,60478,71,2,f +1630,60849,0,1,t +1630,60849,0,2,f +1630,60897,72,4,f +1630,61252,297,2,f +1630,61409,297,2,f +1630,6141,72,1,t +1630,6141,47,4,f +1630,6141,297,1,t +1630,6141,47,1,t +1630,6141,297,4,f +1630,6141,72,4,f +1630,61678,15,2,f +1630,6231,0,2,f +1630,63868,0,2,f +1630,64648,179,2,f +1630,6541,70,2,f +1630,76766,0,1,f +1630,85861,0,5,f +1630,85975,297,2,f +1630,85984,72,1,f +1630,85984,15,2,f +1630,85984,25,1,f +1630,87079,70,1,f +1630,87083,72,4,f +1630,87087,4,2,f +1630,87580,71,1,f +1630,87994,297,2,f +1630,87994,297,1,t +1630,89201,0,4,f +1630,89522,4,1,t +1630,89522,4,2,f +1630,92280,0,2,f +1630,92946,0,2,f +1630,93061,72,2,f +1630,93061,72,1,t +1630,93273,15,1,f +1630,93274,72,3,f +1630,970c00,0,1,f +1630,973pr3650,0,1,f +1630,973pr9999c01,0,1,f +1630,98281,0,1,f +1630,98721,0,1,t +1630,98721,0,2,f +1631,6581,0,2,f +1631,6582,15,2,f +1632,2412b,14,1,f +1632,2432,0,1,f +1632,2446pb12,0,1,f +1632,2447,46,1,f +1632,30027b,25,4,f +1632,30028,0,4,f +1632,30602pb016,0,1,f +1632,3626bpb0189,14,1,f +1632,4081b,0,2,f +1632,41854,14,1,f +1632,42289,8,1,f +1632,44674,0,1,f +1632,4600,0,1,f +1632,6141,36,2,t +1632,6141,36,2,f +1632,x351,25,1,f +1633,2780,0,1,f +1633,32002,72,1,t +1633,32002,72,2,f +1633,32062,0,4,f +1633,32173,27,2,f +1633,32174,27,4,f +1633,3673,71,2,f +1633,41669,36,2,f +1633,41678,0,1,f +1633,41752,72,1,f +1633,43093,1,4,f +1633,44809,71,1,f +1633,4519,71,2,f +1633,45749,288,2,f +1633,47296,288,1,f +1633,47299,288,2,f +1633,47330,288,1,f +1633,50858,288,4,f +1633,50898,27,2,f +1633,50899,179,1,f +1633,50899pr0002,179,1,f +1633,50900,0,1,f +1633,50901,72,1,f +1633,50903,14,1,f +1633,50904,71,1,f +1633,50907,288,1,f +1633,50908,179,2,f +1633,rb00167,14,1,t +1633,rb00167,14,1,f +1635,30150,70,1,f +1635,3068b,70,1,f +1635,3794a,272,1,t +1635,3794a,272,2,f +1635,50254,0,1,t +1635,50254,0,4,f +1635,6157,71,2,f +1636,2780,0,3,f +1636,2780,0,1,t +1636,30285,14,4,f +1636,30394,0,1,f +1636,30648,0,4,f +1636,32002,72,2,f +1636,32002,72,1,t +1636,32009,14,2,f +1636,32039,71,4,f +1636,32062,0,1,f +1636,32063,0,4,f +1636,32123b,71,1,t +1636,32123b,71,2,f +1636,32140,0,1,f +1636,32270,71,1,f +1636,32316,0,2,f +1636,32449,14,2,f +1636,3647,71,1,f +1636,3673,71,2,f +1636,3673,71,1,t +1636,3705,0,2,f +1636,3706,0,3,f +1636,3713,14,2,f +1636,3713,0,2,f +1636,3713,0,1,t +1636,3713,14,1,t +1636,3749,19,2,f +1636,44294,71,2,f +1636,4519,71,3,f +1636,4716,71,1,f +1636,47973,0,1,f +1636,6536,71,2,f +1636,6536,0,2,f +1636,6558,0,2,f +1636,6575,0,2,f +1636,6632,0,4,f +1637,122c01,0,4,f +1637,194cx1,7,2,f +1637,3003,15,6,f +1637,3003,14,3,f +1637,3004,7,2,f +1637,3004,15,14,f +1637,3005,1,1,f +1637,3005,14,3,f +1637,3008,15,2,f +1637,3010,1,1,f +1637,3010,14,3,f +1637,3020,7,2,f +1637,3020,4,1,f +1637,3020,1,1,f +1637,3022,14,1,f +1637,3022,15,3,f +1637,3022,4,3,f +1637,3022,1,2,f +1637,3023,14,7,f +1637,3023,4,6,f +1637,3023,1,6,f +1637,3023,15,7,f +1637,3024,46,6,f +1637,3024,15,2,f +1637,3024,4,2,f +1637,3024,36,2,f +1637,3027,4,2,f +1637,3028,4,2,f +1637,3039p32,15,2,f +1637,3039p34,1,1,f +1637,3062b,1,4,f +1637,3062b,15,8,f +1637,3062b,47,6,f +1637,3068b,7,2,f +1637,3068b,1,1,f +1637,3069b,15,2,f +1637,3069b,7,2,f +1637,3135c01,14,1,f +1637,3149c01,7,2,f +1637,3464,4,2,f +1637,3622,15,12,f +1637,3625,0,1,f +1637,3626apr0001,14,3,f +1637,3641,0,12,f +1637,3660,15,1,f +1637,3666,15,12,f +1637,3666,14,14,f +1637,3673,7,6,f +1637,3702,14,2,f +1637,3703,14,2,f +1637,3710,15,2,f +1637,3710,4,1,f +1637,3710,14,2,f +1637,3788,4,1,f +1637,3788,1,2,f +1637,3794a,4,2,f +1637,3794a,15,4,f +1637,3795,7,1,f +1637,3795,14,1,f +1637,3821,1,1,f +1637,3821,15,1,f +1637,3822,15,1,f +1637,3822,1,1,f +1637,3823,47,3,f +1637,3829c01,1,1,f +1637,3829c01,15,1,f +1637,3836,6,1,f +1637,3837,0,1,f +1637,3842a,15,1,f +1637,3937,0,1,f +1637,3938,0,1,f +1637,3956,7,1,f +1637,4006,0,1,f +1637,4070,15,2,f +1637,4070,1,5,f +1637,4079,0,1,f +1637,4081a,15,4,f +1637,4085a,4,3,f +1637,4211,4,1,f +1637,4212b,0,1,f +1637,4213,0,1,f +1637,4213,15,1,f +1637,4214,15,1,f +1637,425p02,7,1,f +1637,4286,7,4,f +1637,4315,0,1,f +1637,4347,0,2,f +1637,4480c01,1,1,f +1637,4483,47,1,f +1637,4485,15,1,f +1637,6141,36,1,t +1637,6141,46,1,t +1637,6141,36,1,f +1637,6141,46,1,f +1637,73194c01,0,1,f +1637,970c00,4,1,f +1637,970c00,0,1,f +1637,970c00,1,1,f +1637,973c02,4,1,f +1637,973p13c01,4,1,f +1637,973p60c01,15,1,f +1638,3001,14,9,f +1638,3001,0,2,f +1638,3001,4,9,f +1638,3001,1,9,f +1638,3001,15,4,f +1638,3002,15,4,f +1638,3002,0,2,f +1638,3002,1,4,f +1638,3002,14,4,f +1638,3002,4,4,f +1638,3003,0,2,f +1638,3003,15,4,f +1638,3003,4,6,f +1638,3003,14,6,f +1638,3003,1,6,f +1638,3006,4,2,f +1638,3185,15,4,f +1638,3483,0,4,f +1638,4130,14,1,f +1638,4131,4,1,f +1638,4132,14,2,f +1638,4133,4,2,f +1638,4180c02,0,2,f +1638,4202,1,1,f +1638,4204,2,1,f +1638,4594,47,1,f +1638,4727,2,2,f +1638,4728,15,1,f +1638,4728,14,1,f +1638,4743,1,1,f +1638,4744,14,1,f +1638,bfp002,9999,1,f +1639,2419,15,1,f +1639,2450,15,1,f +1639,2450,7,1,f +1639,3004,15,1,f +1639,30193,8,1,t +1639,30193,8,1,f +1639,30238,33,1,f +1639,30249,15,1,f +1639,30287p01,0,1,f +1639,3032,15,1,f +1639,30322,4,1,f +1639,30323,7,1,f +1639,3040b,15,2,f +1639,3298,15,1,f +1639,3626bp7c,14,1,f +1639,4460a,15,2,f +1639,4599a,4,1,f +1639,6070,41,1,f +1639,6141,46,1,t +1639,6141,46,1,f +1639,970x026,1,1,f +1639,973p7ac01,0,1,f +1640,2412b,71,2,f +1640,2412b,14,1,f +1640,2780,0,2,f +1640,2780,0,1,t +1640,3020,14,1,f +1640,3020,1,3,f +1640,3021,1,2,f +1640,3023,71,1,f +1640,3034,73,1,f +1640,3040b,1,2,f +1640,3068bpb0022,1,1,f +1640,32056,0,2,f +1640,3705,0,2,f +1640,3707,0,2,f +1640,3710,71,2,f +1640,3710,1,1,f +1640,3713,71,1,t +1640,3713,71,4,f +1640,3795,73,1,f +1640,3894,0,2,f +1640,3937,71,2,f +1640,3938,14,2,f +1640,4175,1,1,f +1640,41854pb12,73,1,f +1640,43093,1,2,f +1640,45677,73,1,f +1640,47715,72,1,f +1640,47753pb001,73,1,f +1640,4859,73,1,f +1640,4871,1,1,f +1640,6141,14,1,t +1640,6141,71,8,f +1640,6141,14,6,f +1640,6141,71,1,t +1640,6141,36,1,t +1640,6141,36,2,f +1640,6579,0,4,f +1640,6580,14,4,f +1641,3039,1,18,f +1641,3043,1,4,f +1642,2420,70,4,f +1642,3024,70,4,f +1642,3024,25,3,f +1642,3035,288,2,f +1642,33303,15,2,f +1642,3464,15,1,f +1642,3626bpr0645,14,1,f +1642,3626bpr0677,14,1,f +1642,3626cpr0893,14,1,f +1642,3836,70,1,f +1642,41879a,85,1,f +1642,4460b,70,6,f +1642,4485,4,1,f +1642,4496,70,1,f +1642,4530,19,1,f +1642,4740pr0001a,4,3,f +1642,49668,191,3,f +1642,49668,320,5,f +1642,49668,288,14,f +1642,59895,0,1,f +1642,59900,15,3,f +1642,76768,70,6,f +1642,87990,308,1,f +1642,970c00,2,1,f +1642,970c00,1,1,f +1642,973c02,4,1,f +1642,973pr1446c01,4,1,f +1642,973pr1580c01,15,1,f +1642,98288,4,1,f +1644,2357,7,2,f +1644,2357,4,10,f +1644,2412b,14,2,f +1644,2412b,7,3,f +1644,2412b,0,6,f +1644,2420,7,4,f +1644,2420,0,4,f +1644,2420,14,2,f +1644,2420,4,16,f +1644,2431,7,2,f +1644,2431,4,1,f +1644,2431,0,1,f +1644,2445,4,2,f +1644,2462,4,2,f +1644,2540,7,2,f +1644,2556stk01,9999,1,t +1644,2819,7,1,f +1644,298c03,7,1,f +1644,298c03,7,1,t +1644,3001,15,1,f +1644,3002,1,2,f +1644,3002,4,4,f +1644,3003,4,1,f +1644,3004,0,2,f +1644,3004,4,9,f +1644,3004,1,1,f +1644,30044,4,2,f +1644,30046,0,1,f +1644,3005,4,4,f +1644,3008,0,1,f +1644,3008,7,1,f +1644,3009,1,2,f +1644,3009,4,4,f +1644,3009,15,2,f +1644,3010,4,2,f +1644,3010,7,2,f +1644,3020,15,1,f +1644,3020,1,1,f +1644,3020,0,8,f +1644,3020,14,2,f +1644,3020,7,2,f +1644,3020,4,6,f +1644,3021,1,3,f +1644,3021,4,6,f +1644,3021,0,1,f +1644,3021,14,1,f +1644,3021,7,2,f +1644,3022,14,1,f +1644,3022,0,2,f +1644,3022,4,4,f +1644,3022,1,2,f +1644,3023,7,2,f +1644,3023,0,3,f +1644,3023,1,6,f +1644,3023,47,1,f +1644,3023,4,36,f +1644,3023,14,2,f +1644,3024,0,2,f +1644,3024,47,1,f +1644,3024,4,9,f +1644,3024,15,1,f +1644,3030,0,1,f +1644,3031,15,1,f +1644,3032,4,3,f +1644,3033,0,2,f +1644,3034,0,1,f +1644,3036,7,1,f +1644,3037,0,2,f +1644,3037,4,2,f +1644,3038,4,2,f +1644,3039,15,2,f +1644,3039p05,15,5,f +1644,3040b,1,2,f +1644,3040b,4,2,f +1644,3040b,0,2,f +1644,3062b,7,4,f +1644,3063b,4,2,f +1644,3068b,14,2,f +1644,3068b,4,4,f +1644,3068b,7,2,f +1644,3069b,4,19,f +1644,3069b,0,3,f +1644,3069b,14,3,f +1644,3070b,1,1,t +1644,3070b,1,2,f +1644,32005b,8,2,f +1644,32123b,7,1,t +1644,32123b,7,9,f +1644,3298,4,3,f +1644,3460,7,2,f +1644,3460,0,4,f +1644,3622,0,4,f +1644,3622,14,2,f +1644,3622,1,2,f +1644,3623,4,24,f +1644,3623,15,2,f +1644,3623,0,4,f +1644,3623,1,2,f +1644,3623,14,2,f +1644,3647,7,1,f +1644,3665,4,2,f +1644,3666,4,4,f +1644,3666,0,2,f +1644,3666,7,2,f +1644,3700,0,4,f +1644,3700,7,2,f +1644,3705,0,3,f +1644,3706,0,2,f +1644,3710,15,1,f +1644,3710,7,4,f +1644,3710,4,5,f +1644,3710,0,3,f +1644,3710,14,1,f +1644,3713,7,1,t +1644,3713,7,2,f +1644,3743,7,1,f +1644,3749,7,2,f +1644,3794a,4,3,f +1644,3794a,0,1,f +1644,3794a,7,4,f +1644,3795,4,3,f +1644,3795,0,4,f +1644,3795,14,1,f +1644,3832,7,1,f +1644,3832,0,2,f +1644,3933,4,1,f +1644,3933,0,1,f +1644,3934,0,1,f +1644,3934,4,1,f +1644,3937,0,1,f +1644,3937,1,2,f +1644,3938,0,1,f +1644,3938,15,2,f +1644,3957a,7,2,f +1644,3958,0,1,f +1644,4070,7,4,f +1644,4070,4,4,f +1644,4070,0,2,f +1644,4085c,4,2,f +1644,4162,15,1,f +1644,4185,7,4,f +1644,4261,7,2,f +1644,4262,0,4,f +1644,4263,0,2,f +1644,4274,7,1,t +1644,4274,7,2,f +1644,4275b,14,2,f +1644,4286,4,14,f +1644,4286,15,4,f +1644,4477,4,2,f +1644,4519,0,1,f +1644,4531,14,2,f +1644,4599a,7,2,f +1644,4859,4,1,f +1644,4864a,0,2,f +1644,4864a,4,10,f +1644,6005,4,2,f +1644,6019,7,4,f +1644,6060,4,4,f +1644,6069pb04,4,1,f +1644,6081,4,2,f +1644,6091,1,2,f +1644,6091,4,14,f +1644,6111,1,1,f +1644,6141,14,2,f +1644,6141,14,1,t +1644,6141,4,2,f +1644,6141,4,1,t +1644,6141,7,22,f +1644,6141,7,1,t +1644,6180,0,2,f +1644,6180,4,2,f +1644,6541,4,2,f +1644,6541,7,6,f +1644,6564,4,9,f +1644,6565,4,9,f +1644,6594,0,4,f +1644,6595,15,4,f +1644,6636,4,4,f +1644,6636,0,2,f +1644,9244,7,1,f +1646,11264pr0001,15,1,f +1646,3068bpr0007,19,1,f +1646,3626bpr1061,14,1,f +1646,88646,0,1,f +1646,970c00pr0397,14,1,f +1646,973pr2159c01,320,1,f +1647,3001mib,14,4,f +1647,3001mib,1,2,f +1647,3003mib,14,5,f +1647,3007mib,4,1,f +1647,3007mib,14,1,f +1647,3007mib,1,1,f +1647,archmia,4,1,f +1647,carbasemi,14,1,f +1647,m3001,4,5,f +1647,m3003,1,1,t +1647,m3003,4,5,f +1647,m3003,1,4,f +1647,rb00166,15,1,f +1648,2420,14,4,f +1648,2431,27,2,f +1648,3004,27,8,f +1648,3005,27,4,f +1648,3010,27,6,f +1648,3020,14,2,f +1648,3020,27,1,f +1648,3022,27,5,f +1648,3023,27,4,f +1648,3024,14,4,f +1648,30367b,14,1,f +1648,30367b,4,1,f +1648,30367b,27,1,f +1648,30367b,15,1,f +1648,30414,14,2,f +1648,30565,27,4,f +1648,3068b,27,5,f +1648,3710,14,2,f +1648,4032a,4,2,f +1648,4032a,1,2,f +1648,4032a,15,4,f +1648,4032a,2,2,f +1648,4032a,14,2,f +1648,48336,14,6,f +1648,60470a,14,6,f +1648,6141,4,1,t +1648,6141,4,1,f +1648,6141,29,1,t +1648,6141,57,1,t +1648,6141,29,1,f +1648,6141,25,1,t +1648,6141,25,1,f +1648,6141,57,2,f +1651,30361c,27,2,f +1651,30367b,27,2,f +1651,43093,1,1,t +1651,43093,1,2,f +1651,57539pat0002,47,2,f +1651,60902,0,2,f +1651,90609,0,4,f +1651,90611,27,1,f +1651,90612,0,1,f +1651,90617,72,2,f +1651,90617,27,2,f +1651,90625,0,1,f +1651,90634,0,1,f +1651,90641,42,6,f +1651,90641,0,3,f +1651,90650,0,2,f +1651,93571,57,1,f +1651,93571,72,2,f +1651,94448pat0002,34,2,f +1651,98570pat01,15,1,f +1651,98571,0,2,f +1651,98579,27,1,f +1653,45452,45,1,f +1653,clikits080,5,1,f +1653,clikits108,45,1,f +1654,3626bpr0939,14,1,f +1654,3899pr0001,15,1,f +1654,62698,72,1,f +1654,88646,0,1,f +1654,970c00,70,1,f +1654,973pr2021c01,19,1,f +1654,99930,0,1,f +1655,30133,4,1,f +1655,3626bpr0498,14,1,f +1655,46303,71,1,f +1655,49668,15,2,f +1655,970c00,2,1,f +1655,973c01,15,1,f +1656,2397,14,1,f +1656,2412b,7,1,f +1656,2431,4,1,f +1656,2446,1,1,f +1656,2447,41,1,f +1656,2447,41,1,t +1656,2540,0,2,f +1656,2555,7,1,f +1656,3062b,14,2,f +1656,3068bp04,0,1,f +1656,3626apr0001,14,1,f +1656,3641,0,2,f +1656,3794a,7,1,f +1656,3829c01,4,1,f +1656,4590,15,1,f +1656,4600,0,2,f +1656,4624,15,2,f +1656,4732,0,1,f +1656,4735,15,2,f +1656,6014a,15,2,f +1656,6015,0,2,f +1656,6141,46,1,t +1656,6141,46,2,f +1656,6141,7,2,f +1656,970c00,1,1,f +1656,973c01,1,1,f +1657,3001a,1,12,f +1657,3001a,47,1,f +1657,3001a,4,2,f +1657,3003,4,1,f +1657,3003,1,3,f +1657,3004,1,8,f +1657,3007,1,2,f +1657,3008,1,1,f +1657,3009,1,5,f +1657,3027,7,3,f +1657,3034,15,18,f +1657,3039,1,1,f +1657,3039,4,1,f +1657,3065,47,1,f +1657,3228a,1,4,f +1657,3229a,1,16,f +1657,3230a,1,16,f +1657,7049b,15,6,f +1657,737,4,2,f +1657,737c01,4,2,f +1657,wheel1a,4,12,f +1658,3068pb01,15,1,f +1658,4231,1,1,f +1658,fab2c,9999,1,f +1658,fabef1,1,1,f +1660,10066pr0001,0,2,f +1660,11212,71,2,f +1660,11421pr0001,0,1,f +1660,11429pr0001,15,1,f +1660,11429pr0002,72,1,f +1660,11908,0,1,f +1660,12825,72,1,f +1660,13206pr0001,15,1,f +1660,13206pr0002,72,1,f +1660,2357,70,3,f +1660,2417,2,8,f +1660,2419,2,1,f +1660,2420,71,1,f +1660,2420,70,6,f +1660,2423,326,9,f +1660,2431,70,6,f +1660,2456,0,2,f +1660,2458,71,2,f +1660,2817,71,1,f +1660,3001,0,2,f +1660,3002,72,1,f +1660,3003,70,2,f +1660,3003,71,1,f +1660,3004,72,1,f +1660,3004,15,1,f +1660,3005,70,3,f +1660,3005,72,3,f +1660,30136,70,6,f +1660,30136,308,6,f +1660,30176,2,1,f +1660,3020,71,1,f +1660,3020,2,3,f +1660,3021,72,4,f +1660,3022,71,2,f +1660,3023,70,6,f +1660,3023,72,5,f +1660,3023,2,11,f +1660,3023,15,1,f +1660,3024,72,1,f +1660,3024,72,1,t +1660,3030,2,1,f +1660,3034,2,1,f +1660,30357,70,4,f +1660,30385,297,1,f +1660,3039,71,5,f +1660,3039,70,4,f +1660,3040b,72,9,f +1660,3040b,308,8,f +1660,30503,2,2,f +1660,30565,70,12,f +1660,3062b,41,2,f +1660,3062b,57,2,f +1660,3062b,70,8,f +1660,3062b,72,2,f +1660,3068b,2,5,f +1660,3069b,70,8,f +1660,3070b,2,1,t +1660,3070b,2,5,f +1660,32062,0,1,f +1660,32064a,72,2,f +1660,3298,72,4,f +1660,3623,70,4,f +1660,3623,2,2,f +1660,3626bpr0895,15,1,f +1660,3626cpr0980,28,2,f +1660,3626cpr1102,78,1,f +1660,3626cpr1105,78,1,f +1660,3626cpr1159,78,1,f +1660,3659,308,1,f +1660,3660,308,6,f +1660,3665,308,4,f +1660,3678b,70,10,f +1660,3678b,71,1,f +1660,3795,72,1,f +1660,3941,70,10,f +1660,3941,4,3,f +1660,4032a,72,2,f +1660,4032a,70,2,f +1660,4081b,0,8,f +1660,41769,2,2,f +1660,41769,71,1,f +1660,41770,2,3,f +1660,41879a,308,1,f +1660,41879a,0,1,f +1660,4286,71,7,f +1660,4287,70,4,f +1660,4460b,308,4,f +1660,4491b,70,2,f +1660,4498,70,1,f +1660,4499,70,1,f +1660,47397,71,2,f +1660,47397,72,1,f +1660,4740pr0006,28,1,t +1660,4740pr0006,28,2,f +1660,48336,71,1,f +1660,4865b,71,2,f +1660,50304,72,2,f +1660,53705,148,1,f +1660,53705,134,1,f +1660,53705,148,1,t +1660,54200,71,9,f +1660,54200,2,1,t +1660,54200,71,1,t +1660,54200,2,3,f +1660,59443,4,2,f +1660,59900,19,2,f +1660,6003,2,4,f +1660,60474,72,1,f +1660,60478,71,2,f +1660,60481,308,6,f +1660,60752,179,1,f +1660,6126b,182,2,f +1660,6126b,41,2,f +1660,6141,70,4,f +1660,6141,182,1,t +1660,6141,182,10,f +1660,6141,70,2,t +1660,61485,0,2,f +1660,63868,71,2,f +1660,64647,182,8,f +1660,64647,182,1,t +1660,6541,4,2,f +1660,6587,28,2,f +1660,6636,70,3,f +1660,76768,70,7,f +1660,85984,72,1,f +1660,87079,70,1,f +1660,87081,0,2,f +1660,87580,70,4,f +1660,87994,70,3,f +1660,87994,0,1,f +1660,90391pr01,70,1,f +1660,92593,71,2,f +1660,92691,15,1,f +1660,92950,70,1,f +1660,93056,19,1,f +1660,93160,15,1,t +1660,93160,15,1,f +1660,95673,179,1,f +1660,970c00,308,1,f +1660,970c00pr0469,28,2,f +1660,973pr2063c01,308,2,f +1660,973pr2210c01,272,1,f +1660,973pr2213c01,484,1,f +1660,973pr2286c01,0,1,f +1660,98284,70,1,f +1660,99464,70,1,f +1661,3626bp03,14,1,f +1661,3901,0,1,f +1661,970c00,0,1,f +1661,973pb0005c01,15,1,f +1662,2555,14,2,f +1662,30602,15,1,f +1662,3068b,272,2,f +1662,3626bpr0445,14,1,f +1662,3795,72,1,f +1662,3957a,0,2,f +1662,44302a,14,2,f +1662,44567a,72,2,f +1662,4868b,15,1,f +1662,53981,73,1,f +1662,54383,15,1,f +1662,54384,15,1,f +1662,6141,42,2,f +1662,6239,15,1,f +1662,970c00,272,1,f +1662,973pr1304c01,272,1,f +1664,2780,0,2,f +1664,32062,0,4,f +1664,32174,72,2,f +1664,32270,71,2,f +1664,32475,72,2,f +1664,32476,320,2,f +1664,32533pb199,25,1,f +1664,3749,19,2,f +1664,41413,178,1,f +1664,44135,72,1,f +1664,44810,320,1,f +1664,4519,71,2,f +1664,47296,72,2,f +1664,47328,320,2,f +1664,47330,320,1,f +1664,47331,320,1,f +1664,47332,320,1,f +1664,47334,179,1,f +1664,47338,135,2,f +1664,x1190,34,1,f +1665,3022,14,1,f +1665,3176,14,1,f +1665,3633,27,2,f +1665,3710,15,2,f +1665,3839b,71,2,f +1666,2444,0,2,f +1666,2569,72,1,f +1666,2736,71,1,f +1666,2780,0,119,f +1666,2819,71,1,f +1666,2825,71,4,f +1666,2905,4,8,f +1666,298c02,71,2,f +1666,298c02,71,1,t +1666,3023,47,2,f +1666,3032,71,1,f +1666,3068b,0,3,f +1666,3139,0,2,f +1666,32000,0,4,f +1666,32005a,72,1,f +1666,32009,72,8,f +1666,32009,71,6,f +1666,32009,27,2,f +1666,32014,0,2,f +1666,32015,71,1,f +1666,32016,71,2,f +1666,32034,71,18,f +1666,32039,71,10,f +1666,32054,4,35,f +1666,32056,71,18,f +1666,32062,4,26,f +1666,32072,14,8,f +1666,32073,71,19,f +1666,32123b,71,30,f +1666,32138,0,2,f +1666,32140,72,8,f +1666,32184,71,8,f +1666,32251,72,4,f +1666,32269,71,2,f +1666,32271,15,2,f +1666,32278,72,2,f +1666,32278,27,10,f +1666,32278,15,3,f +1666,32278,71,6,f +1666,32291,0,6,f +1666,32316,27,3,f +1666,32348,71,5,f +1666,32449,72,10,f +1666,32523,1,4,f +1666,32523,15,3,f +1666,32523,71,6,f +1666,32523,0,1,f +1666,32524,0,2,f +1666,32524,15,1,f +1666,32524,72,8,f +1666,32525,4,3,f +1666,32525,72,2,f +1666,32525,15,2,f +1666,32525,27,4,f +1666,32526,27,2,f +1666,32526,71,14,f +1666,32527,15,2,f +1666,32528,15,2,f +1666,33299a,0,5,f +1666,3647,71,1,t +1666,3647,71,2,f +1666,3648b,71,5,f +1666,3673,71,2,f +1666,3673,71,1,t +1666,3705,0,21,f +1666,3706,0,2,f +1666,3707,0,7,f +1666,3708,0,5,f +1666,3713,71,1,t +1666,3713,71,34,f +1666,3737,0,2,f +1666,3743,71,1,f +1666,3749,19,2,f +1666,3794a,0,2,f +1666,40490,4,1,f +1666,40490,15,3,f +1666,40490,71,14,f +1666,41239,4,2,f +1666,41239,72,4,f +1666,41239,71,3,f +1666,41669,135,16,f +1666,41677,4,30,f +1666,41678,71,2,f +1666,41896,71,2,f +1666,42003,0,6,f +1666,4274,71,19,f +1666,43093,1,112,f +1666,43857,71,1,f +1666,43857,0,1,f +1666,44294,71,8,f +1666,44350,27,1,f +1666,44351,27,1,f +1666,44374,135,4,f +1666,44809,0,1,f +1666,4519,71,52,f +1666,45982,0,2,f +1666,4716,0,2,f +1666,48989,71,4,f +1666,55976,0,2,f +1666,56145,71,2,f +1666,59426,72,4,f +1666,6141,36,1,t +1666,6141,182,12,f +1666,6141,34,2,f +1666,6141,36,2,f +1666,6141,182,1,t +1666,6141,34,1,t +1666,6179,15,2,f +1666,6536,71,42,f +1666,6538b,4,5,f +1666,6538b,71,48,f +1666,6558,0,36,f +1666,6573,72,1,f +1666,6589,71,3,f +1666,6628,0,1,f +1666,6629,72,2,f +1666,6629,0,4,f +1666,6632,72,4,f +1666,75c04,0,1,f +1666,75c04,0,1,t +1666,75c18,4,6,f +1666,75c22,0,1,f +1666,9244,71,1,f +1668,23306,383,1,f +1668,2412b,0,2,f +1668,2432,7,3,f +1668,2540,8,2,f +1668,2540,335,2,f +1668,2907,7,1,f +1668,30000,8,1,f +1668,30031,0,1,f +1668,3022,14,1,f +1668,3022,8,2,f +1668,3023,8,3,f +1668,3031,19,1,f +1668,3034,7,1,f +1668,30374,42,1,f +1668,30374,8,1,f +1668,30374,36,1,f +1668,30377,7,2,f +1668,3039,7,2,f +1668,30602,379,1,f +1668,3062b,379,1,f +1668,32013,6,1,f +1668,32015,6,2,f +1668,32062,4,2,f +1668,32073,0,1,f +1668,32174,19,1,f +1668,32474,0,2,f +1668,32530,379,1,f +1668,32530,8,2,f +1668,3626bpx106,14,1,f +1668,3660,7,2,f +1668,3706,0,1,f +1668,3710,8,1,f +1668,3794a,379,1,f +1668,3794a,6,1,f +1668,3839b,320,1,f +1668,3846,379,2,f +1668,3901,7,1,f +1668,3941,320,2,f +1668,4070,0,2,f +1668,41747pb003,379,1,f +1668,41748pb003,379,1,f +1668,41879a,19,1,f +1668,41880,378,1,f +1668,42023,7,2,f +1668,42114,383,1,f +1668,4274,1,1,f +1668,4274,1,1,t +1668,4275b,8,1,f +1668,4531,0,1,f +1668,4589,379,1,f +1668,4859,8,1,f +1668,50231,6,1,f +1668,6019,8,5,f +1668,6091,379,2,f +1668,6157,0,1,f +1668,75535,320,1,f +1668,970c00,0,1,f +1668,973px158c01,19,1,f +1668,973px159c01,0,1,f +1669,2412b,0,1,f +1669,2431p00,14,1,f +1669,298c02,0,1,f +1669,3020,14,1,f +1669,3024,36,2,f +1669,3024,14,6,f +1669,3024,47,2,f +1669,3626apr0001,14,1,f +1669,3641,0,4,f +1669,3710,14,1,f +1669,3788,14,2,f +1669,3821,14,1,f +1669,3822,14,1,f +1669,3823,47,1,f +1669,3829c01,14,1,f +1669,4006,0,1,f +1669,4070,14,6,f +1669,4085b,14,2,f +1669,4212b,14,1,f +1669,4213,14,1,f +1669,4485,4,1,f +1669,4522,0,1,f +1669,4600,0,2,f +1669,4624,15,4,f +1669,4625,14,1,f +1669,4864ap01,14,2,f +1669,4865a,14,4,f +1669,6141,46,2,f +1669,6141,36,2,f +1669,970c00,7,1,f +1669,973p27c01,1,1,f +1670,2412b,383,2,f +1670,2450,4,2,f +1670,2456,4,2,f +1670,2456,14,2,f +1670,3001,0,8,f +1670,3001,22,4,f +1670,3001,1,8,f +1670,3001,25,4,f +1670,3001,15,9,f +1670,3001,14,8,f +1670,3001,4,12,f +1670,3002,4,8,f +1670,3002,15,8,f +1670,3002,14,6,f +1670,3002,1,6,f +1670,3002,25,2,f +1670,3002,0,6,f +1670,3003,15,24,f +1670,3003,4,28,f +1670,3003,14,24,f +1670,3003,8,4,f +1670,3003,22,6,f +1670,3003,25,8,f +1670,3003,0,24,f +1670,3003,1,24,f +1670,3004,14,12,f +1670,3004,8,6,f +1670,3004,1,12,f +1670,3004,0,12,f +1670,3004,15,12,f +1670,3004,25,6,f +1670,3004,4,16,f +1670,3004,22,6,f +1670,3004p0b,14,1,f +1670,3005,14,22,f +1670,3005,4,22,f +1670,3005,1,22,f +1670,3005,0,18,f +1670,3005,15,18,f +1670,3005pe1,8,2,f +1670,3007,15,2,f +1670,3008,1,2,f +1670,3008,14,2,f +1670,3008,4,2,f +1670,3009,0,2,f +1670,3009,15,2,f +1670,3009,22,2,f +1670,3009,4,2,f +1670,3009,1,2,f +1670,3010,4,6,f +1670,3010,25,4,f +1670,3010,1,4,f +1670,3010,15,4,f +1670,3010,0,6,f +1670,3010,14,4,f +1670,3010,22,4,f +1670,3020,4,2,f +1670,3020,25,2,f +1670,3020,15,2,f +1670,3020,22,2,f +1670,3020,0,2,f +1670,3020,14,2,f +1670,3020,1,2,f +1670,3021,0,2,f +1670,3021,15,4,f +1670,3021,1,4,f +1670,3021,14,4,f +1670,3021,4,4,f +1670,3022,8,4,f +1670,3022,25,4,f +1670,3022,14,8,f +1670,3022,22,4,f +1670,3022,4,8,f +1670,3022,1,8,f +1670,3022,0,8,f +1670,3022,15,8,f +1670,3039,22,2,f +1670,3040b,4,4,f +1670,3040b,25,4,f +1670,3040b,0,4,f +1670,3665,4,4,f +1670,3665,22,4,f +1670,3665,0,4,f +1670,3665,25,4,f +1670,3839b,0,2,f +1670,4286,8,2,f +1670,4287,8,2,f +1670,4740,42,2,f +1670,73590c02b,14,2,f +1671,3003,14,2,f +1671,3032,14,1,f +1671,3068pb01,15,1,f +1671,3068pb02,15,1,f +1671,4231,1,1,f +1671,4610c01,4,1,f +1671,749,0,1,f +1671,fab2c,9999,1,f +1671,fabef1,1,1,f +1671,u9204c01,14,1,f +1672,2420,14,2,f +1672,2454a,14,1,f +1672,3004,14,3,f +1672,3005,25,10,f +1672,3005,14,11,f +1672,3010,14,1,f +1672,30176,2,3,f +1672,3020,14,2,f +1672,3021,14,6,f +1672,3022,14,4,f +1672,3024,70,3,f +1672,3024,14,3,f +1672,30363,14,1,f +1672,3069b,15,1,f +1672,3069b,14,1,f +1672,3623,14,2,f +1672,3660,14,2,f +1672,3710,14,3,f +1672,3747b,14,1,f +1672,3794b,14,4,f +1672,4070,14,2,f +1672,4740,15,2,f +1672,50950,25,2,f +1672,54200,70,1,f +1672,59900,14,2,f +1672,60470b,14,1,f +1672,60474,14,1,f +1672,60478,14,4,f +1672,61252,25,2,f +1672,6141,14,4,f +1672,6141,70,4,f +1672,6177,2,1,f +1673,3001,14,2,f +1673,3001,1,2,f +1673,3001,4,4,f +1673,3002,4,2,f +1673,3002,14,2,f +1673,3002,0,2,f +1673,3003,14,2,f +1673,3003,0,2,f +1673,3003,1,3,f +1673,3003,4,4,f +1673,3007,4,1,f +1673,3483,0,4,f +1673,4180c02,0,2,f +1673,4204,2,1,f +1673,4594,47,1,f +1675,14226c41,0,2,f +1675,2654,4,1,f +1675,2730,19,4,f +1675,2780,0,106,f +1675,2780,0,2,t +1675,2819,71,1,f +1675,2825,72,2,f +1675,2905,1,1,f +1675,2905,0,4,f +1675,2905,72,3,f +1675,3022,19,2,f +1675,3023,19,4,f +1675,3023,72,2,f +1675,3035,72,1,f +1675,3069b,0,2,f +1675,3069bpr0090,72,1,f +1675,32000,71,2,f +1675,32002,72,2,f +1675,32002,72,1,t +1675,32009,72,2,f +1675,32009,71,2,f +1675,32009,4,2,f +1675,32013,4,2,f +1675,32013,72,4,f +1675,32034,72,2,f +1675,32034,0,9,f +1675,32039,0,2,f +1675,32054,71,10,f +1675,32054,1,2,f +1675,32056,72,2,f +1675,32062,0,11,f +1675,32073,71,11,f +1675,32123b,71,2,t +1675,32123b,71,18,f +1675,32138,0,8,f +1675,32140,4,4,f +1675,32140,0,22,f +1675,32184,0,11,f +1675,32192,72,2,f +1675,32198,71,1,f +1675,32250,0,2,f +1675,32269,71,2,f +1675,32270,71,1,f +1675,32271,4,2,f +1675,32271,0,2,f +1675,32278,4,1,f +1675,32278,0,12,f +1675,32278,72,2,f +1675,32278,71,2,f +1675,32294,4,2,f +1675,32316,72,2,f +1675,32316,4,1,f +1675,32316,0,2,f +1675,32348,71,2,f +1675,32523,0,4,f +1675,32524,72,4,f +1675,32524,4,3,f +1675,32524,0,6,f +1675,32525,0,5,f +1675,32525,72,2,f +1675,32526,0,12,f +1675,32526,72,2,f +1675,32557,1,1,f +1675,33299a,71,1,f +1675,3647,71,2,f +1675,3647,71,1,t +1675,3650c,71,1,f +1675,3673,71,1,t +1675,3673,71,4,f +1675,3703,0,2,f +1675,3705,0,14,f +1675,3706,0,5,f +1675,3708,0,1,f +1675,3713,4,2,f +1675,3713,71,15,f +1675,3713,71,2,t +1675,3713,0,8,f +1675,3713,4,1,t +1675,3713,0,2,t +1675,3737,0,1,f +1675,3743,71,11,f +1675,3749,19,3,f +1675,3794a,71,2,f +1675,3941,46,1,f +1675,3960,4,4,f +1675,4019,71,4,f +1675,4032a,4,1,f +1675,40490,0,10,f +1675,41239,71,1,f +1675,41239,4,2,f +1675,41239,0,2,f +1675,41669,36,2,f +1675,41669,1,6,f +1675,41677,72,8,f +1675,41678,0,2,f +1675,41893,0,4,f +1675,41896,71,4,f +1675,42003,71,8,f +1675,42003,0,4,f +1675,42610,320,4,f +1675,4274,71,2,t +1675,4274,71,15,f +1675,4282,19,3,f +1675,43093,1,54,f +1675,43857,71,2,f +1675,43857,0,2,f +1675,44294,71,8,f +1675,44352,4,1,f +1675,44353,4,1,f +1675,44809,0,1,f +1675,4519,71,39,f +1675,4716,71,1,f +1675,48989,71,2,f +1675,50451,15,1,f +1675,6141,72,1,t +1675,6141,1,2,f +1675,6141,72,2,f +1675,6141,1,1,t +1675,6536,0,16,f +1675,6536,1,3,f +1675,6536,72,2,f +1675,6538b,0,2,f +1675,6538b,4,2,f +1675,6538b,71,9,f +1675,6538b,72,2,f +1675,6558,0,57,f +1675,6587,72,4,f +1675,6589,71,3,f +1675,6629,71,6,f +1675,6632,0,6,f +1675,75535,71,1,f +1675,9244,71,2,f +1677,11211,71,2,f +1677,11477,72,6,f +1677,13349,15,1,f +1677,15672,72,2,f +1677,2540,71,2,f +1677,3003,15,1,f +1677,3021,19,1,f +1677,3021,15,1,f +1677,3022,15,2,f +1677,3023,15,2,f +1677,3023,4,3,f +1677,3023,72,1,f +1677,30367c,72,1,f +1677,3039,72,2,f +1677,3070b,72,1,t +1677,3070b,72,2,f +1677,3700,71,1,f +1677,3957b,71,1,f +1677,43093,1,1,f +1677,43719,72,1,f +1677,47759,72,1,f +1677,48336,15,1,f +1677,48933,72,1,f +1677,51739,72,1,f +1677,60470a,0,1,f +1677,6141,19,1,t +1677,6141,19,2,f +1677,90194,15,1,f +1677,92280,71,2,f +1677,98138pr0026,15,2,f +1677,98138pr0026,15,1,t +1678,2335pr02,15,1,f +1678,2412b,179,2,f +1678,2431,14,2,f +1678,2437,47,1,f +1678,2437,40,1,f +1678,2446,0,1,f +1678,2447,47,1,t +1678,2447,47,1,f +1678,298c02,15,2,f +1678,298c02,15,1,t +1678,3001,321,3,f +1678,3001,0,2,f +1678,3001,14,2,f +1678,3001,27,2,f +1678,3001,72,2,f +1678,3001,15,1,f +1678,3001,4,2,f +1678,3003,27,2,f +1678,3003,15,2,f +1678,3003,0,2,f +1678,3004,14,4,f +1678,3004,72,2,f +1678,3004,0,2,f +1678,3004,321,4,f +1678,30076,0,3,f +1678,3009,4,2,f +1678,3010,27,2,f +1678,3010,14,2,f +1678,3020,0,4,f +1678,3020,27,1,f +1678,3023,14,2,f +1678,3032,14,1,f +1678,3034,0,1,f +1678,3037,14,1,f +1678,30386,0,1,f +1678,30388,0,1,f +1678,3039,0,2,f +1678,30395,72,1,f +1678,30396,0,1,f +1678,3040b,27,2,f +1678,30414,4,2,f +1678,30414,15,2,f +1678,30414,0,2,f +1678,3069b,27,2,f +1678,3069bpr0115,15,1,f +1678,3298,72,4,f +1678,3475b,0,2,f +1678,3626cpr0499,14,1,f +1678,3626cpr0500,14,1,f +1678,3626cpr0889,14,1,f +1678,3666,0,1,f +1678,3679,71,1,f +1678,3680,15,1,f +1678,3710,15,1,f +1678,3710,4,1,f +1678,3829c01,15,1,f +1678,3829c01,71,2,f +1678,3941,0,1,f +1678,3941,4,1,f +1678,3957b,15,3,f +1678,4006,0,1,f +1678,4079,72,1,f +1678,4079,15,1,f +1678,4079,4,1,f +1678,4081b,0,2,f +1678,4083,15,1,f +1678,4083,0,1,f +1678,4495b,0,2,f +1678,4522,0,1,f +1678,45677,4,1,f +1678,4589,15,4,f +1678,4594,47,1,f +1678,4599b,0,1,t +1678,4599b,0,4,f +1678,4733,0,1,f +1678,47457,15,1,f +1678,47458,4,1,f +1678,50943,80,1,f +1678,53451,4,2,f +1678,53451,4,1,t +1678,55981,14,4,f +1678,55981,15,4,f +1678,55981,71,4,f +1678,61072,179,1,f +1678,6126b,182,4,f +1678,6140,0,1,f +1678,61409,27,2,f +1678,6141,179,1,t +1678,6141,46,1,t +1678,6141,36,1,t +1678,6141,179,2,f +1678,6141,33,1,t +1678,6141,47,1,t +1678,6141,36,4,f +1678,6141,33,2,f +1678,6141,46,4,f +1678,6141,47,4,f +1678,61506,19,1,f +1678,6215,14,1,f +1678,74698,0,1,f +1678,87087,14,2,f +1678,87747,15,4,f +1678,87747,15,1,t +1678,87991,484,1,f +1678,88930,15,1,f +1678,89801,80,1,f +1678,92338,72,1,f +1678,92402,0,12,f +1678,92582,0,1,f +1678,93273,4,1,f +1678,970c00,72,1,f +1678,970c00,4,1,f +1678,970c00,0,1,f +1678,973pr1186c01,0,1,f +1678,973pr2274c01,27,1,f +1678,973pr2276c01,4,1,f +1681,700ed,1,1,f +1681,700ed,4,1,f +1682,3009,0,50,f +1684,2458,1,1,f +1684,3004,1,1,f +1684,3022,14,1,f +1684,3022,2,2,f +1684,3039,47,1,f +1684,3710,2,2,f +1684,4871,14,1,f +1684,6041,4,1,f +1685,3003,4,1,f +1685,3004,4,1,f +1685,3007,4,1,f +1685,3009,14,2,f +1685,3039,47,1,f +1685,3460,7,4,f +1685,3461,7,1,f +1685,3462,4,1,f +1685,3660,14,1,f +1685,3660,4,3,f +1685,3795,14,1,f +1686,2412b,4,3,f +1686,2415,71,3,f +1686,2441,0,1,f +1686,2445,15,2,f +1686,2540,71,3,f +1686,298c02,4,1,t +1686,298c02,4,1,f +1686,30027b,71,4,f +1686,30028,0,4,f +1686,3003,14,1,f +1686,3010,4,1,f +1686,3020,0,1,f +1686,3020,15,1,f +1686,3021,2,1,f +1686,3022,4,1,f +1686,3022,1,2,f +1686,3023,15,4,f +1686,3031,4,1,f +1686,30332,0,1,f +1686,3035,1,1,f +1686,30350b,4,1,f +1686,30503,4,2,f +1686,3062b,14,1,f +1686,3068b,1,2,f +1686,3464,15,3,f +1686,3623,1,2,f +1686,3623,4,2,f +1686,3623,2,2,f +1686,3626bpr0409,14,1,f +1686,3666,1,2,f +1686,3673,71,1,f +1686,3673,71,1,t +1686,3700,1,1,f +1686,3710,71,3,f +1686,3710,4,1,f +1686,3794b,14,1,f +1686,3829c01,15,1,f +1686,3832,1,1,f +1686,4006,0,1,f +1686,4083,14,1,f +1686,4085c,4,2,f +1686,42023,4,2,f +1686,43337,4,2,f +1686,4345b,15,2,f +1686,4346,15,2,f +1686,4522,0,1,f +1686,4599b,14,1,f +1686,47397,15,1,f +1686,47398,15,1,f +1686,48183,1,1,f +1686,4854,15,1,f +1686,4855,15,2,f +1686,50373,4,2,f +1686,50947,4,2,f +1686,54383,15,1,f +1686,54384,15,1,f +1686,59895,0,3,f +1686,61409,4,2,f +1686,6141,36,1,f +1686,6141,36,1,t +1686,6141,34,1,f +1686,6141,182,1,t +1686,6141,34,1,t +1686,6141,182,2,f +1686,6239,15,1,f +1686,85984,15,1,f +1686,86035,4,1,f +1686,87079,15,1,f +1686,87752,41,1,f +1686,970c00,0,1,f +1686,973pr1173c01,4,1,f +1688,12694,73,1,f +1688,3437,1,1,f +1688,89406,15,1,f +1690,777p01,15,1,f +1690,777p06,15,1,f +1690,777p08,15,1,f +1690,777p09,15,1,f +1690,777p10,15,1,f +1690,777p12,15,1,f +1690,777p13,15,1,f +1690,777px7,15,1,f +1691,2346,0,6,f +1691,2362a,4,2,f +1691,2420,0,2,f +1691,2420,7,2,f +1691,2420,15,2,f +1691,2420,4,14,f +1691,2420,14,8,f +1691,2431,0,1,f +1691,2445,4,1,f +1691,2450,14,6,f +1691,2654,0,2,f +1691,2695,15,12,f +1691,2696,0,12,f +1691,2711,0,4,f +1691,2717,1,3,f +1691,2730,0,2,f +1691,2730,4,8,f +1691,2730,14,2,f +1691,2744,0,2,f +1691,2780,0,56,f +1691,2790,7,1,f +1691,2791,7,1,f +1691,2792,0,1,f +1691,2817,4,2,f +1691,2819,7,1,f +1691,2823,14,2,f +1691,2825,14,4,f +1691,2825,0,4,f +1691,2825,7,4,f +1691,2853,7,3,f +1691,2854,7,6,f +1691,2876,0,1,f +1691,2905,0,8,f +1691,2989,0,2,f +1691,3020,0,5,f +1691,3020,14,2,f +1691,3020,4,2,f +1691,3021,0,2,f +1691,3022,15,1,f +1691,3022,7,2,f +1691,3023,7,5,f +1691,3023,0,4,f +1691,3023,14,14,f +1691,3023,4,8,f +1691,3024,14,4,f +1691,3024,7,2,f +1691,3024,46,2,f +1691,3029,4,4,f +1691,3032,4,4,f +1691,3039,14,1,f +1691,3069b,15,2,f +1691,3069b,14,4,f +1691,3069b,0,6,f +1691,3070b,0,2,f +1691,3460,14,2,f +1691,3482,15,6,f +1691,3623,0,4,f +1691,3623,7,2,f +1691,3623,14,2,f +1691,3647,7,5,f +1691,3650a,7,3,f +1691,3651,7,2,f +1691,3665,7,2,f +1691,3665,15,2,f +1691,3665,14,8,f +1691,3665,4,6,f +1691,3666,4,4,f +1691,3666,0,6,f +1691,3673,7,7,f +1691,3700,14,7,f +1691,3700,4,9,f +1691,3700,7,2,f +1691,3701,0,2,f +1691,3701,14,3,f +1691,3701,4,2,f +1691,3702,7,4,f +1691,3702,15,1,f +1691,3702,4,20,f +1691,3702,0,1,f +1691,3703,7,2,f +1691,3703,0,2,f +1691,3703,4,2,f +1691,3704,0,12,f +1691,3705,0,14,f +1691,3706,0,9,f +1691,3707,0,4,f +1691,3708,0,7,f +1691,3709,7,1,f +1691,3709,14,4,f +1691,3709,4,6,f +1691,3709,0,2,f +1691,3710,7,4,f +1691,3710,4,9,f +1691,3710,15,4,f +1691,3710,0,3,f +1691,3710,14,7,f +1691,3711a,0,43,f +1691,3713,7,15,f +1691,3737,0,2,f +1691,3738,0,1,f +1691,3738,4,1,f +1691,3738,14,1,f +1691,3743,7,1,f +1691,3749,7,21,f +1691,3795,0,1,f +1691,3795,14,4,f +1691,3832,4,1,f +1691,3873,0,2,f +1691,3894,14,2,f +1691,3894,4,6,f +1691,3894,7,4,f +1691,3895,4,4,f +1691,3895,0,2,f +1691,3895,14,4,f +1691,3895,15,1,f +1691,3941,46,1,f +1691,4019,7,4,f +1691,4032a,4,1,f +1691,4070,0,6,f +1691,4143,7,9,f +1691,4150,4,1,f +1691,4162,0,4,f +1691,4185,7,2,f +1691,4261,7,4,f +1691,4262,0,1,f +1691,4265b,7,36,f +1691,4273b,7,6,f +1691,4274,7,23,f +1691,4275b,0,2,f +1691,4287,4,4,f +1691,4442,7,3,f +1691,4442,0,2,f +1691,4477,4,3,f +1691,4477,0,3,f +1691,4477,7,1,f +1691,4504,0,2,f +1691,4519,0,10,f +1691,4531,14,2,f +1691,4716,0,2,f +1691,6141,0,6,f +1691,6141,7,2,f +1691,6536,7,7,f +1691,6538a,7,12,f +1691,6541,14,2,f +1691,6541,0,6,f +1691,6553,7,3,f +1691,6558,0,8,f +1691,70961,0,2,f +1692,15,0,5,f +1692,17,1,3,f +1692,263,0,2,f +1692,270c02,0,1,f +1692,29,14,4,f +1692,29,4,4,f +1692,3001a,0,1,f +1692,3002a,0,1,f +1692,3003,14,1,f +1692,3003,0,1,f +1692,3004,0,7,f +1692,3004,4,4,f +1692,3004,14,6,f +1692,3005,4,10,f +1692,3005,0,3,f +1692,3005,14,16,f +1692,3008,14,2,f +1692,3009,4,9,f +1692,3009,1,4,f +1692,3009,14,2,f +1692,3010,4,1,f +1692,3010,0,2,f +1692,3020,0,2,f +1692,3020,1,1,f +1692,3021,0,3,f +1692,3021,4,2,f +1692,3021,14,1,f +1692,3021,1,2,f +1692,3022,1,2,f +1692,3022,0,4,f +1692,3023,1,4,f +1692,3023,0,9,f +1692,3023,14,2,f +1692,3024,14,1,f +1692,3024,0,8,f +1692,3027,1,1,f +1692,3032,1,2,f +1692,3032,0,2,f +1692,3034,15,16,f +1692,3037,0,2,f +1692,3038,1,4,f +1692,3039,1,1,f +1692,3039,0,2,f +1692,3062a,14,1,f +1692,3062a,4,8,f +1692,3069a,0,1,f +1692,3081cc01,14,1,f +1692,3081cc01,4,2,f +1692,3087c,14,4,f +1692,3185,4,2,f +1692,3185,14,4,f +1692,3186,4,4,f +1692,3187,4,4,f +1692,3229a,1,16,f +1692,3230a,1,16,f +1692,3241b,1,16,f +1692,3298,1,2,f +1692,3488,0,12,f +1692,3579,4,2,f +1692,3626a,14,3,f +1692,3629,15,3,f +1692,3660,0,4,f +1692,4178a,4,1,f +1692,429c02,0,2,f +1692,458,0,5,f +1692,7049b,0,1,f +1692,736c02,0,1,f +1692,7930,14,2,f +1692,wheel2a,4,5,f +1692,x515,14,2,f +1692,x550b,0,1,f +1692,x564,4,2,f +1696,3005,33,6,f +1696,3005,46,6,f +1696,3037,4,12,f +1696,3039,4,6,f +1696,3040p33,0,3,f +1696,3041,4,6,f +1696,3043,4,6,f +1696,3069bpr0099,15,6,f +1696,3081cc01,15,6,f +1696,3144,79,2,f +1696,3185,1,6,f +1696,3245bpx10,0,2,f +1696,3245bpx11,1,2,f +1696,3245bpx4,14,2,f +1696,3245bpx8,4,2,f +1696,3245bpx9,15,2,f +1696,3470,2,2,f +1696,3596p01,15,3,f +1696,3741,2,8,f +1696,3742,1,2,t +1696,3742,14,6,f +1696,3742,1,6,f +1696,3742,4,6,f +1696,3742,4,2,t +1696,3742,14,2,t +1696,3853,15,9,f +1696,3854,4,12,f +1696,3855,47,3,f +1696,3856,2,12,f +1696,3861b,4,2,f +1696,3899,47,3,f +1696,3957a,15,6,f +1696,3960p06,15,2,f +1696,4079,14,6,f +1696,4345ap03,14,2,f +1696,4346p03,14,2,f +1696,4347,15,3,f +1696,4445,4,12,f +1696,4495a,1,2,f +1696,4534,15,2,f +1696,4535,1,2,f +1696,4536,1,4,f +1696,73194c01,4,2,f +1696,73312,4,2,f +1696,92410,15,2,f +1700,2412b,0,5,f +1700,2444,0,12,f +1700,2445,15,2,f +1700,2456,0,1,f +1700,2515,15,2,f +1700,2654,71,4,f +1700,2730,15,2,f +1700,2780,0,3,t +1700,2780,0,14,f +1700,2877,0,4,f +1700,2877,15,9,f +1700,3001,71,1,f +1700,3003,15,1,f +1700,3004,320,4,f +1700,3009,320,2,f +1700,3020,19,5,f +1700,3021,15,4,f +1700,3022,71,3,f +1700,3023,320,13,f +1700,3031,72,3,f +1700,3032,15,2,f +1700,3034,19,3,f +1700,3035,71,1,f +1700,30357,320,2,f +1700,30361c,0,2,f +1700,30361pr0005,15,1,f +1700,30362,15,2,f +1700,30367b,72,2,f +1700,30367bpr0012,288,1,f +1700,3037,320,4,f +1700,30374,42,1,f +1700,3038,71,2,f +1700,3039,72,4,f +1700,30552,71,2,f +1700,30553,0,2,f +1700,3176,320,7,f +1700,32000,4,1,f +1700,32013,72,4,f +1700,32028,72,1,f +1700,32062,4,1,f +1700,32123b,14,1,t +1700,32123b,14,4,f +1700,32140,71,4,f +1700,32184,15,4,f +1700,3460,72,6,f +1700,3626bpr0631,78,2,f +1700,3648b,72,1,f +1700,3659,15,4,f +1700,3660,15,7,f +1700,3665,0,4,f +1700,3666,71,2,f +1700,3700,72,1,f +1700,3707,0,3,f +1700,3710,0,4,f +1700,3710,15,3,f +1700,3713,71,1,t +1700,3713,71,2,f +1700,3737,0,7,f +1700,3794b,72,3,f +1700,3795,15,6,f +1700,3830,320,4,f +1700,3831,320,4,f +1700,3937,72,3,f +1700,3941,72,5,f +1700,4019,71,5,f +1700,4032a,71,4,f +1700,40490,15,4,f +1700,4150,19,3,f +1700,41531,15,2,f +1700,41531,0,2,f +1700,41677,72,4,f +1700,41764,15,1,f +1700,41765,15,1,f +1700,41769,15,1,f +1700,41770,15,1,f +1700,41896,320,2,f +1700,42023,15,4,f +1700,4274,1,1,t +1700,4274,1,2,f +1700,4287,15,4,f +1700,43093,1,2,f +1700,43337,15,2,f +1700,43710,15,2,f +1700,43711,15,2,f +1700,43720,15,1,f +1700,43721,15,1,f +1700,44728,71,2,f +1700,4519,71,9,f +1700,4589,34,2,f +1700,4716,71,1,f +1700,47397,15,5,f +1700,47398,15,5,f +1700,4740,45,2,f +1700,50304,15,2,f +1700,50305,15,2,f +1700,50950,320,2,f +1700,51739,320,2,f +1700,54383,320,1,f +1700,54384,320,1,f +1700,55982,0,4,f +1700,57901pr0001,378,1,f +1700,58181,15,4,f +1700,59443,0,5,f +1700,60208,72,2,f +1700,60483,71,4,f +1700,6111,15,2,f +1700,61184,71,2,f +1700,6134,71,3,f +1700,6141,47,1,f +1700,6141,47,1,t +1700,61678,15,2,f +1700,6180,320,2,f +1700,63965,0,4,f +1700,64567,80,1,f +1700,6541,0,4,f +1700,6558,1,10,f +1700,6588,47,1,f +1700,6636,71,4,f +1700,8088stk01,9999,1,t +1700,85545,1,2,f +1700,85984,15,6,f +1700,87079,15,11,f +1700,87082,71,4,f +1700,87557pr0001a,15,1,f +1700,87557pr0002,15,1,f +1700,89762,40,3,f +1700,970c00,379,2,f +1700,970c00,70,1,f +1700,973pr1316c01,70,1,f +1700,973pr1569c01,15,2,f +1701,132a,7,4,f +1701,3001a,4,1,f +1701,3004,4,4,f +1701,3004p50,4,1,f +1701,3005,1,2,f +1701,3009,4,2,f +1701,3009,47,1,f +1701,3010,47,1,f +1701,3021,4,2,f +1701,3022,47,2,f +1701,3022,4,4,f +1701,3022,0,2,f +1701,3023,4,14,f +1701,3028,7,1,f +1701,3127b,4,1,f +1701,3176,4,1,f +1701,559c01,4,1,f +1701,7039,4,4,f +1701,7049b,15,1,f +1701,709,4,1,f +1701,711,4,1,f +1701,799c800,15,1,f +1701,801,4,1,f +1701,802,4,1,f +1701,804,7,1,f +1701,rb00164,0,1,f +1702,2335p30,15,1,f +1702,2436,0,2,f +1702,2530,8,1,f +1702,2530,8,1,t +1702,2542,4,1,f +1702,2543,1,1,f +1702,2654,0,2,f +1702,3020,14,1,f +1702,3022,14,1,f +1702,3032,0,1,f +1702,3062b,14,8,f +1702,3626bp48,14,1,f +1702,3957a,0,1,f +1702,970c00,1,1,f +1702,973p33c01,14,1,f +1705,3626bpr0732,14,1,f +1705,85974pr0001,0,1,f +1705,88646,0,1,f +1705,90508,70,2,f +1705,93496,2,1,f +1705,970c00pr0184,14,1,f +1705,973pr1702c01,14,1,f +1706,11090,72,2,f +1706,11127,41,1,f +1706,14704,71,2,f +1706,15064,179,2,f +1706,15068,179,2,f +1706,15068,15,1,f +1706,15208,15,2,f +1706,15209,15,2,f +1706,18392pr0008,15,1,f +1706,2540,72,2,f +1706,2654,72,1,f +1706,2736,71,2,f +1706,30602,41,1,f +1706,3062b,41,4,f +1706,3068b,72,1,f +1706,32064a,15,2,f +1706,3626cpr1584,15,1,f +1706,3839b,15,1,f +1706,47458,72,1,f +1706,48729b,72,2,f +1706,970d00pr0798,15,1,f +1706,973pr2900c01,15,1,f +1706,98313,15,2,f +1706,99207,71,2,f +1707,2736,7,5,f +1707,2780,0,11,f +1707,32039,0,2,f +1707,32062,0,5,f +1707,32073,0,4,f +1707,32165,14,1,f +1707,32165,0,2,f +1707,32166,0,2,f +1707,32166,14,6,f +1707,32168,0,2,f +1707,32171pb059,0,1,f +1707,32171pb060,14,1,f +1707,32172,8,2,f +1707,32173,14,2,f +1707,32173,0,4,f +1707,32174,14,10,f +1707,32174,0,3,f +1707,32190,0,1,f +1707,32191,0,2,f +1707,3647,7,4,f +1707,3649,0,1,f +1707,3705,0,5,f +1707,3706,0,1,f +1707,4519,0,4,f +1707,4716,0,1,f +1707,6536,0,3,f +1707,71509,0,1,f +1707,78c02,179,2,f +1707,x209pb01,0,1,f +1708,57518,72,100,f +1708,57520,0,10,f +1709,3021,14,4,f +1709,3022,14,4,f +1709,3023,14,16,f +1709,3031,14,2,f +1709,3032,14,2,f +1709,3033,14,2,f +1709,32001,14,2,f +1709,3460,14,4,f +1709,3623,14,8,f +1709,3666,14,4,f +1709,3709,14,8,f +1709,3710,14,8,f +1709,3738,14,4,f +1709,4477,14,4,f +1710,2412a,0,1,f +1710,298c02,0,1,t +1710,298c02,0,2,f +1710,3022,14,1,f +1710,3022,0,1,f +1710,3023,14,1,f +1710,3314,0,1,f +1710,3317,14,1,f +1710,3626bpr0001,14,1,f +1710,3710,14,1,f +1710,3795,14,1,f +1710,3901,0,1,f +1710,3937,14,1,f +1710,3938,14,1,f +1710,4070,14,2,f +1710,4081b,14,2,f +1710,4083,14,1,f +1710,4600,0,2,f +1710,6014a,14,4,f +1710,6015,0,4,f +1710,6070,41,1,f +1710,6141,47,1,t +1710,6141,36,2,f +1710,6141,36,1,t +1710,6141,47,2,f +1710,784,14,1,f +1710,970c00,4,1,f +1710,973pb0203c01,15,1,f +1711,3460,4,1,f +1711,3647,7,2,f +1711,3650a,7,1,f +1711,3666,4,2,f +1711,3679,7,6,f +1711,3680,4,6,f +1711,3706,0,2,f +1711,3707,0,2,f +1711,3713,7,4,f +1711,3736,7,1,f +1711,3743,7,2,f +1711,9244,7,1,f +1713,2412b,1,2,f +1713,30027a,15,4,f +1713,30028,0,4,f +1713,3626bp69,14,1,f +1713,3700,15,1,f +1713,3795,15,1,f +1713,3829c01,15,1,f +1713,3937,15,1,f +1713,3938,0,1,f +1713,3960,42,1,f +1713,3962b,0,1,f +1713,4485,1,1,f +1713,6141,0,1,t +1713,6141,36,1,f +1713,6141,0,1,f +1713,6141,36,1,t +1713,6157,0,2,f +1713,970c00,15,1,f +1713,973px176c01,15,1,f +1714,53989,148,2,f +1714,90608,0,2,f +1714,90609,72,2,f +1714,90617,0,4,f +1714,90626,0,1,f +1714,90639,297,2,f +1714,90639pr0013,34,1,f +1714,90641,0,3,f +1714,90652,148,1,f +1714,90661,297,2,f +1714,92199,15,1,f +1714,92201,297,1,f +1714,92218,179,2,f +1714,92220,148,2,f +1714,92224,297,1,f +1714,92233,297,1,f +1714,93277,15,1,f +1714,93575,0,1,f +1719,15,0,1,f +1719,17,1,2,f +1719,3003,0,1,f +1719,3004,0,2,f +1719,3005,14,4,f +1719,3005,4,2,f +1719,3020,0,1,f +1719,3022,0,1,f +1719,3022,4,1,f +1719,3023,0,3,f +1719,3023,7,2,f +1719,3023,4,2,f +1719,3024,14,2,f +1719,3034,7,1,f +1719,3039,0,4,f +1719,3040a,4,2,f +1719,3069a,0,1,f +1719,3460,14,2,f +1719,3626a,14,2,f +1719,3629,0,1,f +1719,3629,15,1,f +1719,3660,0,3,f +1720,3711a,0,350,f +1721,3001a,15,11,f +1721,3001a,4,11,f +1721,3002a,15,2,f +1721,3002a,4,3,f +1721,3003,4,2,f +1721,3003,15,4,f +1721,3005,15,4,f +1721,3005,4,2,f +1721,3006,4,1,f +1721,3007,15,1,f +1721,3065,15,4,f +1721,3065,4,4,f +1721,32ac01,4,1,f +1721,453bc01,4,2,f +1721,645bc01,4,1,f +1721,700e,7,1,f +1722,2905,4,2,f +1722,32002,8,1,f +1722,32017,4,2,f +1722,32017,0,2,f +1722,32062,0,2,f +1722,32123b,7,6,f +1722,3482,14,2,f +1722,3483,0,2,f +1722,3705,0,3,f +1722,6558,0,4,f +1722,6629,2,1,f +1722,6632,4,2,f +1722,71509,0,1,f +1723,2419,2,2,f +1723,2431,70,2,f +1723,2460,15,1,f +1723,3003pr0002,15,1,f +1723,3005pr0001,14,2,f +1723,3022,14,1,f +1723,3022,15,1,f +1723,3022,4,1,f +1723,3023,14,1,f +1723,3032,2,1,f +1723,3032,70,1,f +1723,3039,15,1,f +1723,3040b,14,2,f +1723,3660,14,1,f +1723,3679,71,1,f +1723,3680,0,1,f +1723,3794b,15,1,f +1723,3794b,14,1,f +1723,3960,15,1,f +1723,4070,15,2,f +1723,4216,15,1,f +1723,4274,71,2,f +1723,4274,71,1,t +1723,4733,72,4,f +1723,60208,15,1,f +1723,60470a,15,1,f +1723,60478,15,2,f +1723,6141,0,1,f +1723,6141,0,1,t +1723,6141,70,12,f +1723,6141,70,1,t +1723,6636,70,2,f +1723,85984,14,1,f +1727,723a,7,6,f +1728,2352,14,1,f +1728,2456,14,2,f +1728,2456,1,1,f +1728,3001,4,6,f +1728,3001,1,4,f +1728,3001,15,4,f +1728,3001,14,6,f +1728,3002,4,4,f +1728,3002,0,2,f +1728,3002,15,2,f +1728,3002,1,4,f +1728,3002,14,4,f +1728,3003,1,8,f +1728,3003,15,8,f +1728,3003,14,10,f +1728,3003,4,10,f +1728,3003,0,5,f +1728,3003pe2,14,2,f +1728,3007,4,2,f +1728,3185,15,4,f +1728,3483,0,4,f +1728,4204,2,1,f +1728,4727,2,3,f +1728,4728,15,1,f +1728,4728,14,1,f +1728,4728,4,1,f +1728,4743,1,1,f +1728,4744,4,1,f +1728,4744pr0002,4,1,f +1728,4744px1,6,1,f +1728,4744px2,2,1,f +1728,4745,14,1,f +1728,600,14,1,f +1728,601,14,2,f +1728,6212,4,1,f +1728,6213p02,4,1,f +1728,6214px2,2,1,f +1728,6215,1,8,f +1728,6216,2,1,f +1728,6216,1,2,f +1728,6232,4,1,f +1728,6235,4,1,f +1728,6236,4,2,f +1728,6248,4,4,f +1728,6249,4,2,f +1728,82248,1,1,f +1728,82249,15,1,f +1731,2352,4,2,f +1731,2352,14,2,f +1731,2456,15,2,f +1731,2456,4,4,f +1731,2456,14,4,f +1731,2456,1,2,f +1731,3001,0,24,f +1731,3001,1,24,f +1731,3001,15,32,f +1731,3001,14,24,f +1731,3001,2,10,f +1731,3001,4,32,f +1731,3001pr1,14,4,f +1731,3002,0,8,f +1731,3002,15,12,f +1731,3002,1,8,f +1731,3002,2,8,f +1731,3002,4,12,f +1731,3002,14,8,f +1731,3003,15,24,f +1731,3003,1,12,f +1731,3003,2,12,f +1731,3003,14,12,f +1731,3003,4,24,f +1731,3003,0,22,f +1731,3003pe2,15,4,f +1731,3003pe2,14,4,f +1731,3003pe2,4,2,f +1731,3006,1,2,f +1731,3006,4,2,f +1731,3007,1,2,f +1731,3007,4,4,f +1731,3007,14,4,f +1731,30072,2,1,f +1731,30076,4,2,f +1731,30076,1,2,f +1731,30077,14,4,f +1731,30144px6,14,1,f +1731,30145,14,2,f +1731,30145,4,2,f +1731,3483,0,32,f +1731,3823,47,2,f +1731,4132,4,4,f +1731,4133,14,4,f +1731,4201,2,1,f +1731,4202,2,2,f +1731,4204,2,1,f +1731,4594,47,2,f +1731,4727,2,8,f +1731,4728,1,2,f +1731,4728,14,2,f +1731,4728,15,2,f +1731,4728,4,2,f +1731,4729,14,1,f +1731,4743,14,1,f +1731,4743,1,1,f +1731,4744,4,1,f +1731,4744p04,0,1,f +1731,4744pr0001,0,1,f +1731,4744pr0002,4,1,f +1731,4744pr0003,4,1,f +1731,4744pr0004,1,1,f +1731,4744px15,0,1,f +1731,4744px41,2,1,f +1731,4745,14,2,f +1731,4747,4,4,f +1731,4748,4,4,f +1731,4751c,4,1,f +1731,600,14,4,f +1731,601,14,8,f +1731,6212,4,2,f +1731,6212,14,2,f +1731,6213px1,4,1,f +1731,6232,4,2,f +1731,6235,4,2,f +1731,6235,1,2,f +1731,6236,1,2,f +1731,6236,4,2,f +1731,6248,4,16,f +1731,6248,14,16,f +1731,6249,4,8,f +1733,48379c01,1,1,f +1733,hockeypuck,0,1,f +1733,hockeystickr,135,1,f +1734,2335,4,2,f +1734,2447,40,1,t +1734,3002,15,2,f +1734,3003,15,1,f +1734,3030,72,1,f +1734,3957a,15,2,f +1734,4460b,4,2,f +1734,4485,4,2,f +1734,72092,383,1,f +1736,2412b,7,1,f +1736,2419,7,1,f +1736,2446,0,1,f +1736,2447,34,1,f +1736,2540,0,2,f +1736,298c03,7,2,f +1736,3023,0,1,f +1736,3068bp69,0,1,f +1736,3626bp69,14,1,f +1736,3795,4,1,f +1736,3838,0,1,f +1736,4032a,7,1,f +1736,4588,7,2,f +1736,4589,4,2,f +1736,4735,0,2,f +1736,4859,7,1,f +1736,970x001,2,1,f +1736,973p69c01,15,1,f +1737,3001,19,50,f +1738,2489,70,1,f +1738,3837,0,1,f +1738,6141,14,1,t +1738,6141,14,2,f +1738,6186,191,1,f +1743,2431,4,4,f +1743,3068b,4,2,f +1743,3069b,4,4,f +1743,4162,4,2,f +1744,3743,7,10,f +1744,3749,7,2,f +1744,4143,7,4,f +1744,4261,7,2,f +1744,4262,7,3,f +1744,4263,7,3,f +1744,4442,7,3,f +1744,73071,7,1,f +1747,3001a,0,2,f +1747,3001a,1,1,f +1747,3001a,4,2,f +1747,3001a,47,1,f +1747,3002a,0,3,f +1747,3003,0,4,f +1747,3003,4,1,f +1747,3004,1,1,f +1747,3004,14,29,f +1747,3005,4,2,f +1747,3005,14,10,f +1747,3005,15,7,f +1747,3008,14,16,f +1747,3009,14,9,f +1747,3010,1,2,f +1747,3010,14,19,f +1747,3010,0,1,f +1747,3010,4,2,f +1747,3010p30,4,2,f +1747,3010p30,14,1,f +1747,3010pb035u,4,1,f +1747,3020,1,2,f +1747,3020,0,2,f +1747,3020,4,2,f +1747,3021,4,4,f +1747,3022,1,1,f +1747,3023,0,1,f +1747,3030,4,1,f +1747,3031,0,1,f +1747,3032,0,1,f +1747,3032,1,1,f +1747,3033,4,1,f +1747,3034,4,1,f +1747,3035,4,1,f +1747,3036,4,1,f +1747,3037,47,1,f +1747,3039,47,1,f +1747,3062a,0,3,f +1747,3081cc01,4,1,f +1747,3137c01,0,3,f +1747,3137c02,0,5,f +1747,3139,0,6,f +1747,3149c01,4,3,f +1747,3176,4,1,f +1747,31cc01,4,3,f +1747,3228a,1,2,f +1747,3297,4,8,f +1747,3298,4,4,f +1747,3299,4,2,f +1747,32bc01,4,1,f +1747,3308,14,4,f +1747,3315,4,1,f +1747,3324c01,4,1,f +1747,3404ac01,0,1,f +1747,3455,14,3,f +1747,3492c01,14,1,f +1747,3581,14,2,f +1747,3582,1,2,f +1747,586c01,4,1,f +1747,630,4,1,f +1747,784,4,1,f +1747,7b,0,10,f +1747,809,2,1,f +1747,818,1,1,f +1747,rb00164,0,1,f +1748,48989,71,1,f +1748,74261,72,2,f +1748,90609,0,6,f +1748,90611,27,2,f +1748,90611,0,4,f +1748,90612,0,1,f +1748,90616,0,2,f +1748,90617,72,2,f +1748,90622,0,2,f +1748,90623,0,1,f +1748,90626,0,1,f +1748,90639,148,2,f +1748,90639,27,2,f +1748,90639,1,2,f +1748,90652,148,3,f +1748,90661,27,2,f +1748,92233,27,2,f +1748,98604,27,1,f +1748,98611pr01,27,1,f +1749,11816pr0009,84,1,f +1749,11816pr0011,78,1,f +1749,11816pr0013,78,1,f +1749,2412b,0,2,f +1749,30136,70,2,f +1749,3020,27,1,f +1749,3021,71,1,f +1749,3022,191,1,f +1749,33078,4,1,f +1749,33291,4,2,f +1749,3899,45,3,f +1749,48729b,72,1,f +1749,59900,4,1,f +1749,59900,14,1,f +1749,60897,71,1,f +1749,6141,57,2,f +1749,6141,36,1,f +1749,6141,2,1,f +1749,6141,15,2,f +1749,92255,0,1,f +1749,92256,0,1,f +1749,92258,226,1,f +1749,92456pr0100c01,78,1,f +1749,92456pr0101c01,84,1,f +1749,92456pr0102c01,78,1,f +1749,92818pr0005c01,191,1,f +1749,92819pr0002a,27,1,f +1749,92820pr0007c01,379,1,f +1750,3037,4,12,f +1750,3039,4,6,f +1750,3041,4,3,f +1750,3043,4,2,f +1751,165395,9999,1,t +1751,2335pr02,15,1,f +1751,2358p02,2,1,f +1751,2412b,15,3,f +1751,2412b,0,3,f +1751,2440p01,0,1,f +1751,2440pb006,15,1,f +1751,2446,15,1,f +1751,2446,4,1,f +1751,2447,41,2,f +1751,2453a,15,2,f +1751,2484c01,4,4,f +1751,2540,4,2,f +1751,2540,0,2,f +1751,2569,4,2,f +1751,298c02,7,1,f +1751,3004,1,2,f +1751,3004,0,2,f +1751,3005,15,8,f +1751,3020,1,1,f +1751,3020,0,1,f +1751,3021,4,4,f +1751,3022,0,1,f +1751,3022,4,1,f +1751,3023,0,1,f +1751,3023,1,1,f +1751,3033,4,1,f +1751,3040b,15,2,f +1751,3040b,0,2,f +1751,3062b,4,2,f +1751,3062b,15,1,f +1751,3185,15,2,f +1751,3455,15,2,f +1751,3626bp04,14,1,f +1751,3626bpr0001,14,5,f +1751,3665,1,2,f +1751,3665,0,2,f +1751,3710,1,1,f +1751,3710,0,2,f +1751,3710,15,1,f +1751,3794a,0,2,f +1751,3794a,1,2,f +1751,3829c01,4,2,f +1751,3901,0,1,f +1751,3937,0,1,f +1751,3937,15,1,f +1751,3938,0,2,f +1751,3938,15,2,f +1751,3941,15,1,f +1751,3957a,7,3,f +1751,3962b,0,1,f +1751,4006,0,1,f +1751,4032a,2,1,f +1751,4032a,4,1,f +1751,4032a,15,1,f +1751,4070,15,4,f +1751,4081b,0,2,f +1751,4081b,15,2,f +1751,4083,14,1,f +1751,4085c,15,2,f +1751,4275b,0,1,f +1751,4275b,15,1,f +1751,4276b,0,1,f +1751,4276b,15,1,f +1751,4485,15,1,f +1751,4485,1,1,f +1751,4495a,1,1,f +1751,4495a,14,2,f +1751,4522,0,1,f +1751,4589,0,2,f +1751,4589,7,2,f +1751,4599a,4,3,f +1751,4629c01,1,1,f +1751,4732,4,1,f +1751,4732,0,1,f +1751,4871,1,1,f +1751,4871,0,1,f +1751,6014a,14,4,f +1751,6014a,7,4,f +1751,6015,0,8,f +1751,6019,15,2,f +1751,6019,0,2,f +1751,6064,2,1,f +1751,6069,15,1,f +1751,6069,0,1,f +1751,6070,41,2,f +1751,6079,15,3,f +1751,6093,0,1,f +1751,6141,46,10,f +1751,6141,36,1,t +1751,6141,4,4,f +1751,6141,36,1,f +1751,6141,34,1,f +1751,6141,14,4,f +1751,6141,34,1,t +1751,63965,4,1,f +1751,970c00,15,2,f +1751,970c00,1,1,f +1751,970c00,0,2,f +1751,970c00,7,1,f +1751,973c11,0,1,f +1751,973p01c01,15,1,f +1751,973p0bc01,15,2,f +1751,973p31c01,14,1,f +1751,973pr1190c01,0,1,f +1754,2432,2,1,f +1754,30027,4,4,f +1754,30028,0,4,f +1754,3023,4,1,f +1754,30603,2,1,f +1754,3626bpb0124,14,1,f +1754,3626bpx69,14,1,f +1754,41854,27,1,f +1754,41861c01,7,1,f +1754,4485,15,1,f +1754,6093,0,1,f +1754,6141,4,2,f +1754,6141,4,1,t +1754,6157,0,1,f +1754,x351,0,1,f +1756,298c02,0,4,f +1756,298c03,1,1,f +1756,3001,7,1,f +1756,3003,7,1,f +1756,3004,7,1,f +1756,3004p01,7,2,f +1756,3005,1,10,f +1756,3005,46,2,f +1756,3006,1,1,f +1756,3008,1,2,f +1756,3009,1,4,f +1756,3010,1,1,f +1756,3010,7,2,f +1756,3010p42,1,2,f +1756,3020,1,1,f +1756,3020,7,2,f +1756,3021,7,7,f +1756,3021,0,1,f +1756,3022,7,2,f +1756,3023,0,2,f +1756,3023,7,10,f +1756,3023,14,1,f +1756,3024,1,2,f +1756,3032,1,1,f +1756,3032,7,1,f +1756,3036,7,1,f +1756,3039,1,1,f +1756,3039p05,1,2,f +1756,3039p32,7,3,f +1756,3040p05,1,2,f +1756,3068b,0,1,f +1756,3068bp08,7,2,f +1756,3068bp08,1,2,f +1756,3069b,7,2,f +1756,3069b,0,1,f +1756,3069b,1,3,f +1756,3069bp06,1,2,f +1756,3069bp06,7,4,f +1756,3069bp25,7,1,f +1756,3298,1,1,f +1756,3475b,7,2,f +1756,3622,1,4,f +1756,3626apr0001,14,1,f +1756,3641,0,6,f +1756,3660,1,2,f +1756,3665,1,2,f +1756,3666,7,2,f +1756,3673,7,1,f +1756,3700,1,1,f +1756,3700,7,1,f +1756,3710,7,5,f +1756,3710,1,6,f +1756,3747a,7,2,f +1756,3747a,1,1,f +1756,3794a,0,1,f +1756,3794a,1,2,f +1756,3795,7,1,f +1756,3832,1,2,f +1756,3838,14,1,f +1756,3839b,7,2,f +1756,3842b,14,1,f +1756,3933a,7,1,f +1756,3934a,7,1,f +1756,3935,7,1,f +1756,3936,7,1,f +1756,3937,0,1,f +1756,3938,0,1,f +1756,3957a,36,2,f +1756,3963,0,2,f +1756,4032a,0,2,f +1756,4070,0,2,f +1756,4070,1,2,f +1756,4213,1,1,f +1756,4213,7,2,f +1756,4215a,33,1,f +1756,4229,0,4,f +1756,4286,1,2,f +1756,4315,7,1,f +1756,4315,1,3,f +1756,4474,33,1,f +1756,4475,7,3,f +1756,4476a,1,1,f +1756,4588,36,2,f +1756,4589,0,4,f +1756,4589,36,4,f +1756,4589,46,2,f +1756,4589,1,2,f +1756,4591,0,2,f +1756,4595,7,4,f +1756,4600,7,3,f +1756,4624,7,6,f +1756,4732,0,1,f +1756,4733,0,1,f +1756,4735,7,4,f +1756,4735,0,2,f +1756,4736,1,1,f +1756,4740,7,2,f +1756,4740,33,2,f +1756,4740,36,2,f +1756,4746,7,2,f +1756,6141,46,2,f +1756,73590c01a,0,4,f +1756,970c00,14,1,f +1756,973p90c04,14,1,f +1757,3081bc01,4,15,f +1757,3081bc01,15,15,f +1758,266bc01,15,2,f +1759,60902,0,2,f +1759,87747,0,4,t +1759,87747,0,2,f +1759,87837,0,4,f +1759,90608,0,5,f +1759,90609,72,5,f +1759,90617,0,8,f +1759,90625,0,1,f +1759,90634,0,1,f +1759,90636,46,2,f +1759,90639pr0019,0,3,f +1759,90640,14,6,f +1759,90650,14,1,f +1759,90652,14,1,f +1759,92218,179,3,f +1759,92232,14,1,f +1759,92234,0,1,f +1759,92235pat0002,0,2,f +1760,2352,4,1,f +1760,2456,15,2,f +1760,2456,4,2,f +1760,2577,1,4,f +1760,2745storc02,4,1,f +1760,3001,14,22,f +1760,3001,15,27,f +1760,3001,0,10,f +1760,3001,1,26,f +1760,3001,4,26,f +1760,3001pr1,14,1,f +1760,3002,0,2,f +1760,3002,15,6,f +1760,3002,1,6,f +1760,3002,4,6,f +1760,3002,14,6,f +1760,3003,1,36,f +1760,3003,0,24,f +1760,3003,15,30,f +1760,3003,14,26,f +1760,3003,4,34,f +1760,3003pe1,14,2,f +1760,3003pe2,15,2,f +1760,3003pe5,15,2,f +1760,3007,1,2,f +1760,3185,4,4,f +1760,3471,2,1,f +1760,3483,0,4,f +1760,4130,4,2,f +1760,4131,15,2,f +1760,4132,4,2,f +1760,4133,15,2,f +1760,4180c02,0,2,f +1760,4727,2,3,f +1760,4728,15,1,f +1760,4728,1,1,f +1760,4728,4,1,f +1760,4730,4,1,f +1760,4743,4,1,f +1760,4744pb15,14,1,f +1760,4745,14,1,f +1760,6007,8,1,f +1760,bfp002,9999,1,f +1762,2825,0,2,f +1762,2905,0,2,f +1762,32009,0,2,f +1762,32017,0,2,f +1762,32056,0,2,f +1762,32063,0,2,f +1762,32065,0,2,f +1762,32140,0,2,f +1762,32249,0,2,f +1762,32250,0,2,f +1762,32271,0,2,f +1762,32278,0,2,f +1762,32316,0,2,f +1762,32348,0,2,f +1762,32449,0,2,f +1762,32523,0,2,f +1762,32524,0,2,f +1762,32525,0,2,f +1762,32526,0,2,f +1762,33299a,0,2,f +1762,40490,0,2,f +1762,41677,0,2,f +1762,43857,0,2,f +1762,44374,135,2,f +1762,6575,0,2,f +1762,6629,0,2,f +1762,6632,0,2,f +1762,75535,0,2,f +1764,11211,71,2,f +1764,11213,71,2,f +1764,14769,71,1,f +1764,3001,0,1,f +1764,3004,0,2,f +1764,3005,71,2,f +1764,30162,72,1,f +1764,3021,71,2,f +1764,3022,71,1,f +1764,3023,71,4,f +1764,3024,41,2,f +1764,30357,72,4,f +1764,3039,71,1,f +1764,3062b,41,4,f +1764,4070,71,2,f +1764,41769,71,2,f +1764,41770,71,2,f +1764,44728,71,1,f +1764,4599b,71,1,f +1764,4740,71,1,f +1764,60474,71,2,f +1764,6141,71,1,f +1764,6564,71,1,f +1764,6565,71,1,f +1764,98100,0,1,f +1766,11055,71,1,f +1766,15391,71,1,f +1766,15392,72,1,t +1766,15392,72,1,f +1766,22388,57,4,f +1766,22388,57,1,t +1766,2412b,57,1,f +1766,2540,72,1,f +1766,3005,272,4,f +1766,3010,1,3,f +1766,3020,72,2,f +1766,3031,1,1,f +1766,32028,0,1,f +1766,32124,1,1,f +1766,3626cpr1786,14,1,f +1766,3665,1,2,f +1766,3710,71,2,f +1766,3710,1,1,f +1766,3829c01,1,1,f +1766,4175,71,1,f +1766,41879a,1,1,f +1766,4600,0,2,f +1766,4865b,57,2,f +1766,6091,272,2,f +1766,6141,57,3,f +1766,6141,57,1,t +1766,74967,71,4,f +1766,92746,84,1,f +1766,973pr3153c01,1,1,f +1768,11097,41,1,f +1768,18392pr0008,15,1,f +1768,3626cpr1584,15,1,f +1768,4497,0,1,f +1768,53705,41,1,f +1768,92747,41,1,f +1768,970d00pr0798,15,1,f +1768,98138,41,1,f +1770,10201,71,2,f +1770,10233stk01,9999,1,t +1770,11153,25,2,f +1770,11153,15,2,f +1770,11203,72,3,f +1770,12825,0,6,f +1770,13269,0,2,f +1770,2357,0,10,f +1770,2357,15,2,f +1770,2377,0,4,f +1770,2412b,0,2,f +1770,2412b,72,11,f +1770,2412b,25,10,f +1770,2412b,15,6,f +1770,2420,71,14,f +1770,2420,0,6,f +1770,2431,25,4,f +1770,2431,0,18,f +1770,2432,1,2,f +1770,2444,72,16,f +1770,2445,72,3,f +1770,2653,71,2,f +1770,2730,0,2,f +1770,2780,0,3,t +1770,2780,0,8,f +1770,2871b,0,2,f +1770,2877,15,7,f +1770,2877,0,24,f +1770,2878,0,8,f +1770,2921,0,12,f +1770,2921,25,4,f +1770,2922,0,2,f +1770,30000,72,2,f +1770,3001,0,5,f +1770,3002,15,4,f +1770,3003,0,2,f +1770,3004,25,4,f +1770,3004,0,9,f +1770,3004,15,7,f +1770,3005,25,4,f +1770,3005,0,25,f +1770,3005,15,4,f +1770,3009,15,14,f +1770,3009,25,12,f +1770,3010,15,5,f +1770,3010,25,5,f +1770,30153,47,1,f +1770,30165,72,2,f +1770,30165,0,1,f +1770,3020,15,3,f +1770,3020,0,16,f +1770,3020,72,8,f +1770,3021,0,8,f +1770,3022,25,6,f +1770,3022,72,3,f +1770,3023,25,18,f +1770,3023,4,1,f +1770,3023,70,24,f +1770,3023,0,61,f +1770,3023,47,5,f +1770,3023,15,4,f +1770,30237b,72,1,f +1770,3024,15,1,t +1770,3024,4,1,f +1770,3024,25,16,f +1770,3024,4,1,t +1770,3024,0,2,t +1770,3024,25,3,t +1770,3024,0,25,f +1770,3024,15,2,f +1770,3024,71,3,f +1770,3024,71,1,t +1770,3028,0,2,f +1770,3030,72,1,f +1770,3031,0,2,f +1770,3032,0,2,f +1770,3033,0,1,f +1770,3034,72,1,f +1770,30357,0,2,f +1770,3039,25,1,f +1770,3040b,15,2,f +1770,3040b,25,4,f +1770,3040bpr0003,71,1,f +1770,30414,71,4,f +1770,30552,72,2,f +1770,30553,0,3,f +1770,3062b,47,1,f +1770,3062b,4,1,f +1770,3062b,72,2,f +1770,3068b,0,4,f +1770,3068b,25,4,f +1770,3068bpr0136,72,1,f +1770,3068bpr0201,15,2,f +1770,3069b,4,1,f +1770,3069b,25,11,f +1770,3069b,0,18,f +1770,3070b,25,4,f +1770,3070b,71,1,f +1770,3070b,71,1,t +1770,3070b,25,1,t +1770,3070b,15,1,t +1770,3070b,0,3,t +1770,3070b,15,2,f +1770,3070b,0,37,f +1770,3176,72,4,f +1770,32028,0,4,f +1770,32028,28,2,f +1770,32064a,72,2,f +1770,32084,25,3,f +1770,32123b,71,4,f +1770,32123b,71,1,t +1770,3245c,0,8,f +1770,3460,15,6,f +1770,3460,0,23,f +1770,3622,25,2,f +1770,3622,15,2,f +1770,3623,15,24,f +1770,3623,71,4,f +1770,3623,0,16,f +1770,3624,320,1,f +1770,3626c,0,2,f +1770,3626cpr0646,14,1,f +1770,3626cpr0679,14,1,f +1770,3626cpr0892,14,1,f +1770,3626cpr0893,14,2,f +1770,3626cpr0955,14,1,f +1770,3660,25,6,f +1770,3665,25,2,f +1770,3666,25,9,f +1770,3666,0,7,f +1770,3673,71,1,t +1770,3673,71,2,f +1770,3701,70,6,f +1770,3705,0,1,f +1770,3706,0,2,f +1770,3710,25,3,f +1770,3710,0,8,f +1770,3710,70,4,f +1770,3710,71,3,f +1770,3794a,0,21,f +1770,3794a,15,4,f +1770,3795,71,8,f +1770,3795,25,2,f +1770,3795,15,3,f +1770,3832,71,2,f +1770,3899,14,2,f +1770,3901,71,1,f +1770,3956,0,6,f +1770,3958,0,3,f +1770,4025,0,4,f +1770,4032a,71,14,f +1770,4035,0,19,f +1770,4070,0,24,f +1770,4070,47,2,f +1770,4079b,1,7,f +1770,4162,0,17,f +1770,42446,71,1,f +1770,42446,71,1,t +1770,4287,15,1,f +1770,43719,0,1,f +1770,44300,0,3,f +1770,4449,70,3,f +1770,44728,0,5,f +1770,4519,71,2,f +1770,4536,15,2,f +1770,45677,72,1,f +1770,45677,0,1,f +1770,4590,72,2,f +1770,4595,71,1,f +1770,47905,72,1,f +1770,48336,71,9,f +1770,4865a,71,6,f +1770,51739,25,4,f +1770,51739,72,1,f +1770,52107,14,2,f +1770,54200,47,1,t +1770,54200,47,2,f +1770,54200,0,22,f +1770,54200,0,2,t +1770,54200,15,18,f +1770,54200,15,1,t +1770,57051,383,8,f +1770,57878,0,16,f +1770,57999,0,4,f +1770,60478,15,1,f +1770,60479,15,6,f +1770,60479,0,4,f +1770,60581,15,1,f +1770,60601,47,4,f +1770,60602,47,19,f +1770,60849,0,2,t +1770,60849,0,3,f +1770,60897,15,16,f +1770,60897,0,20,f +1770,60897,1,8,f +1770,6091,71,1,f +1770,6091,0,8,f +1770,61409,0,26,f +1770,6141,80,2,t +1770,6141,80,12,f +1770,6179,0,2,f +1770,6191,0,4,f +1770,62360pr0001,47,1,f +1770,62711,0,1,f +1770,62810,308,1,f +1770,63864,25,12,f +1770,63864,15,9,f +1770,63965,71,4,f +1770,6558,1,4,f +1770,6632,72,4,f +1770,6636,25,10,f +1770,6636,15,2,f +1770,75c19,0,1,f +1770,75c22,0,1,f +1770,87079,70,4,f +1770,87079,25,8,f +1770,87079,0,4,f +1770,87079pr0049,0,1,f +1770,87079pr0050,0,1,f +1770,87544,15,1,f +1770,87552,1,2,f +1770,87609,0,2,f +1770,87620,15,2,f +1770,88286,308,1,f +1770,88292,15,4,f +1770,88930,0,24,f +1770,91994,0,3,f +1770,92280,15,3,f +1770,92339,25,3,f +1770,92410,15,1,f +1770,92746,19,1,f +1770,92946,0,4,f +1770,92947,15,4,f +1770,93273,25,1,f +1770,93274,0,6,f +1770,95228,34,1,f +1770,96874,2,1,t +1770,970c00,72,1,f +1770,970c00,15,1,f +1770,970c00,71,1,f +1770,970c00,272,1,f +1770,970c00,0,1,f +1770,970c00,308,1,f +1770,973pr1164c01,272,1,f +1770,973pr1183c01,25,1,f +1770,973pr1617c01,2,1,f +1770,973pr1918c01,73,1,f +1770,973pr2001c01,85,1,f +1770,973pr2084c01,71,1,f +1770,99021,72,4,f +1770,99206,71,4,f +1770,99207,71,5,f +1770,99780,0,13,f +1771,12602,135,2,f +1771,2223,0,1,f +1771,2224,72,1,f +1771,2291,14,1,f +1771,2318,135,1,f +1771,3011,0,2,f +1771,31025,1,1,f +1771,31026,4,1,f +1771,3437,19,2,f +1771,3437,28,2,f +1771,3437,484,2,f +1771,3437,72,2,f +1771,40666,4,2,f +1771,44524,28,1,f +1771,45141,135,1,f +1771,4672,28,2,f +1771,47202bpr0001,25,1,f +1771,47202bpr0002,25,1,f +1771,47537,72,1,f +1771,47538,14,1,f +1771,47540,14,1,f +1771,47541,14,1,f +1771,51269,71,1,f +1771,58080,1,1,f +1771,6394,1,4,f +1771,6474pb20,4,1,f +1771,73351,71,2,f +1771,92938,1,1,f +1772,11458,72,1,f +1772,15100,0,1,f +1772,18041,179,1,f +1772,2447,40,1,f +1772,2450,72,1,f +1772,2780,0,2,f +1772,298c02,14,2,f +1772,3001,0,1,f +1772,3023,182,1,f +1772,3031,72,1,f +1772,30385,33,1,f +1772,3068b,27,1,f +1772,3069b,27,1,f +1772,32013,14,2,f +1772,32028,71,1,f +1772,3626cpr1826,14,1,f +1772,3679,71,1,f +1772,3680,0,1,f +1772,3705,0,1,f +1772,3833,15,1,f +1772,3838,14,1,f +1772,4274,1,1,f +1772,4286,72,1,f +1772,48336,0,1,f +1772,50950,27,2,f +1772,54200,182,2,f +1772,59900,0,1,f +1772,6014b,71,4,f +1772,60470b,71,1,f +1772,6141,0,3,f +1772,6157,0,2,f +1772,6158,72,1,f +1772,62462,14,2,f +1772,85984,72,1,f +1772,87697,0,4,f +1772,970c00pr1057,326,1,f +1772,973pr3388c01,326,1,f +1772,98834,72,1,f +1775,2637,71,1,f +1775,2780,0,15,f +1775,2780,0,1,t +1775,30648,0,4,f +1775,32002,72,4,f +1775,32002,72,1,t +1775,32013,0,1,f +1775,32034,0,3,f +1775,32062,4,16,f +1775,32138,0,2,f +1775,32140,71,1,f +1775,32174,191,7,f +1775,32175,0,2,f +1775,32271,0,2,f +1775,32523,0,6,f +1775,32524,0,3,f +1775,3705,0,2,f +1775,3713,71,1,t +1775,3713,71,2,f +1775,3749,19,4,f +1775,41669,135,10,f +1775,4274,71,4,f +1775,4274,71,1,t +1775,43093,1,4,f +1775,44036,191,2,f +1775,44036,179,2,f +1775,44294,71,1,f +1775,44809,0,1,f +1775,4519,71,10,f +1775,47298,191,1,f +1775,47302,0,1,f +1775,47312,72,1,f +1775,47326pat01,288,4,f +1775,47328,288,2,f +1775,47330,288,1,f +1775,49423,179,3,f +1775,50898,288,2,f +1775,50899pat01,288,2,f +1775,50900,0,1,f +1775,50901,72,1,f +1775,50903,14,1,f +1775,53451,135,1,t +1775,53451,135,4,f +1775,53500,57,1,f +1775,53544,135,2,f +1775,53564,135,1,f +1775,53566,288,4,f +1775,53574,288,2,f +1775,53585,0,2,f +1775,53586,135,2,f +1775,55013,0,2,f +1775,55827c01,135,1,f +1775,55981,71,4,f +1775,6536,0,8,f +1775,6538b,0,5,f +1775,6558,0,9,f +1775,78c11,179,2,f +1775,bion013c01,135,1,f +1776,10201,15,1,f +1776,11203,72,6,f +1776,11208,71,4,f +1776,11209,0,4,f +1776,11212,71,4,f +1776,14769pr1070,19,1,f +1776,15207,72,1,f +1776,15396,4,1,f +1776,18980,71,1,f +1776,22886,14,2,f +1776,2412b,14,6,f +1776,2412b,72,1,f +1776,2447,40,1,t +1776,2447,40,1,f +1776,25269pr03,19,1,t +1776,25269pr03,19,1,f +1776,2877,72,6,f +1776,2877,15,7,f +1776,29583,9999,1,f +1776,3001,72,1,f +1776,3001,2,1,f +1776,3003,27,1,f +1776,30031,71,1,f +1776,3004,4,1,f +1776,3005,71,3,f +1776,3005,14,2,f +1776,3009,72,1,f +1776,3010,4,1,f +1776,30171,15,1,f +1776,3020,14,1,f +1776,3020,72,1,f +1776,3020,71,2,f +1776,3021,14,1,f +1776,3022,0,4,f +1776,3023,0,2,f +1776,3023,320,2,f +1776,3023,36,2,f +1776,3023,15,2,f +1776,3023,1,1,f +1776,3024,71,1,t +1776,3024,320,1,t +1776,3024,182,4,f +1776,3024,71,2,f +1776,3024,182,1,t +1776,3024,320,2,f +1776,3035,72,1,f +1776,30385,14,1,f +1776,3040b,14,2,f +1776,3040bpr0003,71,1,f +1776,3062b,320,1,f +1776,3062b,41,1,f +1776,3068b,72,1,f +1776,3068b,15,1,f +1776,3069b,27,2,f +1776,3070b,34,1,t +1776,3070b,36,2,f +1776,3070b,34,1,f +1776,3070b,36,1,t +1776,3070bpr0166,71,1,t +1776,3070bpr0166,71,1,f +1776,32028,71,6,f +1776,3245b,14,2,f +1776,3464,15,2,f +1776,3623,14,2,f +1776,3626cpr1580,14,1,f +1776,3626cpr1988,14,1,f +1776,3665,72,6,f +1776,3666,72,2,f +1776,3666,14,4,f +1776,3666,320,4,f +1776,3666,0,2,f +1776,3710,71,8,f +1776,3795,320,2,f +1776,3821,14,1,f +1776,3822,14,1,f +1776,3829c01,1,1,f +1776,3937,72,2,f +1776,3940b,72,1,f +1776,3957b,15,1,f +1776,3958,72,1,f +1776,4070,71,2,f +1776,4070,14,4,f +1776,4081b,71,8,f +1776,4094b,27,1,f +1776,4282,71,3,f +1776,4488,0,4,f +1776,4533,41,1,f +1776,4599b,4,1,f +1776,4599b,14,1,f +1776,4599b,14,1,t +1776,4599b,4,1,t +1776,4865b,40,6,f +1776,50745,72,4,f +1776,50950,72,2,f +1776,51739,0,3,f +1776,52031,320,1,f +1776,54200,0,2,f +1776,54200,0,1,t +1776,59895,0,2,f +1776,59895,0,1,t +1776,60474,71,2,f +1776,60478,14,2,f +1776,60478,71,4,f +1776,60479,14,2,f +1776,60581,14,1,f +1776,6091,320,6,f +1776,61252,0,2,f +1776,6134,71,2,f +1776,6141,27,4,f +1776,6141,27,1,t +1776,6179,71,2,f +1776,6180,14,2,f +1776,63868,0,4,f +1776,6636,320,2,f +1776,87079,14,1,f +1776,87580,15,2,f +1776,92081,70,1,f +1776,92083,308,1,f +1776,92410,71,1,f +1776,92583,40,1,f +1776,95344,28,1,t +1776,95344,28,1,f +1776,970c00,0,1,f +1776,970c00,15,1,f +1776,973pr3490c01,15,1,f +1776,973pr3688c01,212,1,f +1776,98138,47,1,t +1776,98138,47,2,f +1776,98138,46,1,t +1776,98138,46,1,f +1776,98138pr0035,179,1,t +1776,98138pr0035,179,1,f +1776,98835,14,1,f +1778,3020,14,24,f +1778,728,7,1,f +1778,729,47,1,f +1782,2774,7,1,f +1782,3941,7,1,f +1782,4150p04,7,1,f +1785,2444,0,4,f +1785,2445,0,1,f +1785,2456,7,1,f +1785,2456,8,1,f +1785,2458,1,2,f +1785,2530,8,1,f +1785,2564,8,1,f +1785,2625,0,2,f +1785,2626,0,4,f +1785,2653,14,2,f +1785,3001,1,1,f +1785,3003,7,1,f +1785,3004,4,3,f +1785,30080,7,2,f +1785,3010,7,2,f +1785,30141,8,2,f +1785,30151a,47,1,f +1785,30152pat0001,0,1,f +1785,30155,8,4,f +1785,30158,6,1,f +1785,30161,47,1,f +1785,30162,0,1,f +1785,30167,0,1,f +1785,30167,6,1,f +1785,30170,0,1,f +1785,30171,6,1,f +1785,30172,15,1,f +1785,3020,1,6,f +1785,3021,7,4,f +1785,3022,1,3,f +1785,3022,4,3,f +1785,3023,0,1,f +1785,3023,1,1,f +1785,30236,1,2,f +1785,30238,0,1,f +1785,30240,8,1,f +1785,3036,0,1,f +1785,3036,2,1,f +1785,3040b,7,6,f +1785,3048c,7,1,f +1785,3062b,1,5,f +1785,3068bpx24,19,1,f +1785,3070b,15,1,f +1785,32000,7,5,f +1785,32009,0,4,f +1785,3298,1,1,f +1785,3483,0,4,f +1785,3626bpa1,14,1,f +1785,3626bpa3,14,1,f +1785,3626bpa5,14,1,f +1785,3626bpr0895,15,2,f +1785,3626bpx93,14,1,f +1785,3666,7,4,f +1785,3673,7,12,f +1785,3684,7,2,f +1785,3710,7,5,f +1785,3794a,1,2,f +1785,3829c01,7,1,f +1785,3839b,4,2,f +1785,3937,0,4,f +1785,3938,7,4,f +1785,3957a,7,4,f +1785,4070,7,2,f +1785,4083,7,1,f +1785,4085c,1,1,f +1785,4590,4,1,f +1785,4599a,7,1,f +1785,4617b,6,2,f +1785,4625,8,1,f +1785,5956stk01,9999,1,t +1785,5956stk02,9999,1,t +1785,60169,7,1,f +1785,6112,0,2,f +1785,6141,4,8,f +1785,6255,2,1,f +1785,72490c01,7,1,f +1785,970c00,6,1,f +1785,970c00,2,1,f +1785,970c00,0,2,f +1785,973pa1c01,15,1,f +1785,973pa5c01,6,1,f +1785,973paac01,8,1,f +1785,973pb0391c01,19,1,f +1785,x276,334,1,f +1786,3626bpr0001,14,2,f +1786,4485,15,1,f +1786,4485,7,1,f +1786,970c00,0,2,f +1786,973c19,14,1,f +1786,973c21,1,1,f +1787,2357,320,2,f +1787,2412b,0,16,f +1787,2412b,15,14,f +1787,2420,320,4,f +1787,2431,71,6,f +1787,2431,14,4,f +1787,2432,15,2,f +1787,2444,4,11,f +1787,2445,15,2,f +1787,2445,320,3,f +1787,2449,4,2,f +1787,2450,320,10,f +1787,2456,71,2,f +1787,2460,71,3,f +1787,2540,19,10,f +1787,2555,71,5,f +1787,2654,57,10,f +1787,2695,320,2,f +1787,2730,0,2,f +1787,2780,0,1,t +1787,2780,0,33,f +1787,2825,0,2,f +1787,2853,71,2,f +1787,2877,0,8,f +1787,2877,4,12,f +1787,298c02,4,2,f +1787,298c02,4,1,t +1787,3001,4,7,f +1787,3001,15,1,f +1787,3003,4,6,f +1787,3004,15,2,f +1787,3005,320,4,f +1787,3008,4,2,f +1787,3009,320,12,f +1787,3009,15,4,f +1787,3010,4,6,f +1787,30157,71,4,f +1787,30165,0,1,f +1787,3020,72,4,f +1787,3020,4,5,f +1787,3021,71,16,f +1787,3022,14,8,f +1787,3023,71,21,f +1787,3023,4,6,f +1787,3029,4,1,f +1787,30304,72,1,f +1787,3031,4,9,f +1787,3032,4,8,f +1787,3034,4,2,f +1787,3034,15,4,f +1787,3035,4,3,f +1787,3036,0,2,f +1787,30361cpr0001,15,1,f +1787,30362,15,2,f +1787,30363,4,4,f +1787,30364,19,8,f +1787,30365,71,8,f +1787,30367bpr0005,15,1,f +1787,30374,42,1,f +1787,30374,0,6,f +1787,30374,41,1,f +1787,30377,71,5,f +1787,30377,71,1,t +1787,30381,70,2,f +1787,30383,15,1,f +1787,3039,4,6,f +1787,3039pr0002,15,1,f +1787,30414,72,4,f +1787,30503,4,2,f +1787,30503,15,4,f +1787,30504,4,4,f +1787,30504,15,2,f +1787,30526,72,2,f +1787,30562,320,12,f +1787,30565,72,24,f +1787,3062b,70,11,f +1787,3063b,4,12,f +1787,3066,40,1,f +1787,3068b,320,16,f +1787,3068b,0,3,f +1787,3069b,25,6,f +1787,3069bpr0086,71,1,f +1787,32000,71,10,f +1787,32009,4,2,f +1787,32013,72,1,f +1787,32034,71,1,f +1787,32054,4,18,f +1787,32062,4,10,f +1787,32064b,14,1,f +1787,32072,14,1,f +1787,32123b,14,6,f +1787,32123b,14,1,t +1787,32291,4,2,f +1787,32449,72,2,f +1787,32524,72,8,f +1787,32529,71,8,f +1787,32531,71,1,f +1787,3456,72,2,f +1787,3460,15,4,f +1787,3623,4,6,f +1787,3624,1,1,f +1787,3626bpr0001,78,2,f +1787,3626bpr0146,78,1,f +1787,3626bpr0635,78,1,f +1787,3659,320,1,f +1787,3660,320,12,f +1787,3666,320,16,f +1787,3700,4,2,f +1787,3702,71,8,f +1787,3703,71,4,f +1787,3707,0,2,f +1787,3710,320,28,f +1787,3710,15,6,f +1787,3738,71,3,f +1787,3794a,320,8,f +1787,3795,15,4,f +1787,3795,4,5,f +1787,3894,72,4,f +1787,3894,4,2,f +1787,3895,4,4,f +1787,3901,0,1,f +1787,3958,15,2,f +1787,3958,4,6,f +1787,3960,320,1,f +1787,4032a,71,6,f +1787,4079,1,2,f +1787,4081b,72,5,f +1787,4150pr0022,71,2,f +1787,41531,4,4,f +1787,4162,0,2,f +1787,4162,320,1,f +1787,41677,0,2,f +1787,41678,0,2,f +1787,41752,72,1,f +1787,41769,4,2,f +1787,41770,4,2,f +1787,42022,15,2,f +1787,42023,4,5,f +1787,4274,1,6,f +1787,4274,1,1,t +1787,4282,71,1,f +1787,4282,4,2,f +1787,4287,4,4,f +1787,43093,1,6,f +1787,43337,40,2,f +1787,43337,71,4,f +1787,43712,4,2,f +1787,43898,72,1,f +1787,44126,4,2,f +1787,44294,71,6,f +1787,44301a,4,1,f +1787,44302a,72,6,f +1787,44375a,4,1,f +1787,44375a,15,3,f +1787,44567a,71,4,f +1787,4460b,15,2,f +1787,44676,15,2,f +1787,4532,71,2,f +1787,4533,72,2,f +1787,45677,15,1,f +1787,4589,42,4,f +1787,4599a,0,2,f +1787,4740,320,6,f +1787,47543,320,4,f +1787,47759,320,3,f +1787,47905,0,4,f +1787,48092,4,12,f +1787,48183,4,1,f +1787,48336,0,2,f +1787,4865a,71,2,f +1787,4865a,14,6,f +1787,50231,70,2,f +1787,50304,15,2,f +1787,50305,15,2,f +1787,50950,320,2,f +1787,52107,0,10,f +1787,54200,15,4,f +1787,54200,15,1,t +1787,54383,72,2,f +1787,54384,72,2,f +1787,58247,0,2,f +1787,6019,0,2,f +1787,6141,0,13,f +1787,6141,0,1,t +1787,6191,0,3,f +1787,6215,4,3,f +1787,64567,71,2,f +1787,6536,0,4,f +1787,6538b,19,4,f +1787,6541,0,8,f +1787,6558,0,10,f +1787,6628,0,6,f +1787,6632,71,6,f +1787,6636,4,4,f +1787,6636,15,4,f +1787,6636,71,2,f +1787,73983,72,2,f +1787,85543,15,1,f +1787,970c00,19,2,f +1787,970c00,272,2,f +1787,973pr1324c01,19,2,f +1787,973pr1345c01,1,2,f +1788,2302,14,2,f +1788,31333pb02,15,1,f +1788,3437,4,1,f +1788,3437,484,2,f +1788,3437,27,1,f +1788,3437,2,1,f +1788,3437pb039,10,1,f +1788,4066,31,2,f +1788,40666,27,3,f +1788,40666,31,1,f +1788,47394pb148,212,1,f +1788,61649,31,1,f +1788,6474,14,2,f +1788,6478,4,2,f +1788,6497,5,1,f +1788,6510,5,1,f +1788,6510,73,1,f +1788,89406,15,1,f +1788,90265,15,1,f +1788,98223,14,1,f +1788,99771,14,1,f +1789,2343,47,2,f +1789,2413,15,2,f +1789,2419,2,1,f +1789,2434,0,1,f +1789,2446,1,1,f +1789,2453a,19,4,f +1789,2458,72,2,f +1789,2460,72,2,f +1789,2479,0,2,f +1789,2524,15,2,f +1789,3001,2,2,f +1789,3001,14,2,f +1789,3001,70,2,f +1789,3003,4,2,f +1789,3003,5,2,f +1789,3003,14,2,f +1789,3003pr0001,14,2,f +1789,3004,2,2,f +1789,3004,73,2,f +1789,3004,72,2,f +1789,3004,14,2,f +1789,3004,27,2,f +1789,3005pr0003,14,3,f +1789,30090,41,1,f +1789,3010,1,3,f +1789,3010,70,2,f +1789,3010,2,3,f +1789,30104,72,1,f +1789,30152pat0001,0,2,f +1789,30162,72,2,f +1789,3020,25,2,f +1789,30209,72,1,f +1789,3021,4,2,f +1789,30246,0,1,f +1789,30286,41,1,f +1789,30342,41,1,f +1789,3039,33,2,f +1789,3039,47,2,f +1789,3040b,25,2,f +1789,3065,47,2,f +1789,3065,36,2,f +1789,3068bpr0139a,19,1,f +1789,32014,4,2,f +1789,32034,0,2,f +1789,32140,27,2,f +1789,32200,15,1,f +1789,3298,25,1,f +1789,3475b,0,2,f +1789,3626bpr0190,15,2,f +1789,3626cpr0891,14,2,f +1789,3626cpr0892,14,2,f +1789,3659,71,3,f +1789,3679,71,2,f +1789,3680,0,2,f +1789,3700,0,4,f +1789,3708,0,2,f +1789,3738,0,1,f +1789,3747b,25,1,f +1789,3749,19,4,f +1789,3795,14,1,f +1789,3823,41,1,f +1789,3829c01,71,1,f +1789,3837,72,2,f +1789,3852b,191,2,f +1789,3857,72,1,f +1789,3878,0,1,f +1789,3901,0,1,f +1789,3937,15,1,f +1789,3938,15,1,f +1789,3941,46,2,f +1789,3957a,0,1,f +1789,3957a,42,2,f +1789,3962b,0,2,f +1789,4175,72,2,f +1789,4207,15,1,f +1789,4286,15,2,f +1789,4287,72,2,f +1789,4332,0,1,f +1789,4449,70,1,f +1789,4477,0,2,f +1789,4485,4,1,f +1789,4495b,2,2,f +1789,4530,0,1,f +1789,4727,10,2,f +1789,4728,45,2,f +1789,48493,0,1,f +1789,48723,70,1,f +1789,55295,0,1,f +1789,55296,0,1,f +1789,55297,0,1,f +1789,55298,0,1,f +1789,55299,0,1,f +1789,55300,0,1,f +1789,56902,71,4,f +1789,57503,334,1,f +1789,57504,334,1,f +1789,57505,334,1,f +1789,57506,334,1,f +1789,6060,0,2,f +1789,6064,2,1,f +1789,6093,70,1,f +1789,6124,42,2,f +1789,61254,0,4,f +1789,6131,0,1,f +1789,6190,72,2,f +1789,6232,19,2,f +1789,6260,15,2,f +1789,6265,15,4,f +1789,6266,15,4,f +1789,62808,72,2,f +1789,71015,334,1,f +1789,73590c02a,0,2,f +1789,94925,71,2,f +1789,970c00,15,3,f +1789,973c01,1,1,f +1789,973c01,15,1,f +1789,973c01,4,1,f +1789,973c01,0,1,f +1790,29155,15,1,f +1790,30115,2,1,f +1790,3626cpr2085,78,1,f +1790,50231,4,1,f +1790,88646,0,1,f +1790,90390,297,1,f +1790,970c00pr1165,320,1,f +1791,4202476,9999,1,f +1792,11928,47,1,f +1792,11929,27,1,f +1792,12602,1,4,f +1792,16205,1,1,f +1792,17940,15,1,f +1792,2302,14,2,f +1792,3011,4,2,f +1792,3011,15,2,f +1792,31170,10,1,f +1792,31465,4,1,f +1792,3437,4,3,f +1792,4066,10,1,f +1792,4066,15,6,f +1792,40666,4,2,f +1792,42234,14,2,f +1792,44524,4,1,f +1792,51262,1,1,f +1792,51262,226,2,f +1792,60364pr0001,0,1,f +1792,61649,73,2,f +1792,61896,484,2,f +1792,64146,14,1,f +1792,64150,70,1,f +1792,70048,14,1,f +1792,75121pr0006,2,1,f +1792,76371,4,9,f +1792,85964,27,1,f +1792,87084,4,2,f +1792,88693,15,1,f +1792,90265,14,1,f +1792,95445,10,1,f +1792,98192,1,1,f +1792,98233,226,1,f +1792,99460,15,2,f +1794,2419,4,1,f +1794,2419,8,2,f +1794,2432,0,1,f +1794,2456,8,1,f +1794,2460,4,1,f +1794,2479,0,1,f +1794,2625,4,2,f +1794,2877,0,2,f +1794,3001,8,1,f +1794,3001,4,2,f +1794,3002,8,2,f +1794,3003,14,3,f +1794,3003,4,2,f +1794,3004,1,2,f +1794,3004,4,2,f +1794,3004,8,2,f +1794,3004,14,5,f +1794,3008,4,2,f +1794,3010,1,2,f +1794,3010,0,2,f +1794,3010,15,2,f +1794,3010,14,2,f +1794,3020,14,4,f +1794,3020,4,3,f +1794,3021,4,1,f +1794,3021,14,1,f +1794,30239,2,2,f +1794,30364,7,2,f +1794,30365,7,2,f +1794,30386,14,2,f +1794,3039,1,2,f +1794,3039,8,5,f +1794,3039,14,2,f +1794,3039,15,1,f +1794,3039,4,2,f +1794,3040b,8,2,f +1794,3040b,15,4,f +1794,3040b,1,2,f +1794,3062b,7,2,f +1794,3298,0,2,f +1794,3298,8,1,f +1794,3298p10,15,2,f +1794,3460,15,2,f +1794,3660,14,2,f +1794,3660,4,6,f +1794,3665,1,2,f +1794,3666,15,2,f +1794,3710,14,2,f +1794,3747b,4,2,f +1794,3795,15,2,f +1794,3795,14,1,f +1794,3823,41,1,f +1794,3829c01,7,1,f +1794,3832,15,2,f +1794,3839b,14,2,f +1794,3870,7,4,f +1794,3941,15,3,f +1794,3941,7,2,f +1794,3942c,15,1,f +1794,3942c,383,2,f +1794,3957a,57,2,f +1794,3958,15,1,f +1794,4070,7,2,f +1794,4083,0,1,f +1794,4286,1,4,f +1794,4287,4,2,f +1794,4589,0,1,f +1794,4617b,0,2,f +1794,4623,0,2,f +1794,4729,14,1,f +1794,4740,36,4,f +1794,4740,383,2,f +1794,6106,2,2,f +1794,6140,0,2,f +1794,6216p02,14,1,f +1794,6230,0,8,f +1794,6232,8,2,f +1794,6248,4,3,f +1794,6249,8,1,f +1794,6541,14,2,f +1794,73590c02a,0,2,f +1794,cre004,9999,1,f +1796,3022,7,2,f +1796,3024,36,2,f +1796,3024,36,1,t +1796,3034,7,1,f +1796,3062a,33,2,f +1796,3298p90,7,1,f +1796,3460,7,1,f +1796,3626apr0001,14,1,f +1796,3633,7,1,f +1796,3829c01,7,1,f +1796,3838,4,1,f +1796,3839a,7,1,f +1796,3842a,4,1,f +1796,3933a,7,1,f +1796,3934a,7,1,f +1796,3957a,7,1,f +1796,970c00,4,1,f +1796,973p90c02,4,1,f +1797,3895,0,10,f +1799,2877,72,2,f +1799,3003,36,1,f +1799,3022,71,2,f +1799,30374,35,1,f +1799,30374,41,1,f +1799,4285b,71,1,f +1799,57899,0,1,f +1799,58247,0,1,f +1799,60897,72,4,f +1799,64567,80,2,f +1800,2412b,0,1,f +1800,2524,15,1,f +1800,2555,0,2,f +1800,30187b,15,1,f +1800,3020,0,1,f +1800,3022,72,1,f +1800,3023,15,2,f +1800,30259,15,2,f +1800,30304,72,1,f +1800,3035,15,1,f +1800,30377,0,2,f +1800,30377,0,1,t +1800,3039pr0005,15,1,f +1800,3040b,15,1,f +1800,3048c,15,1,f +1800,30602,15,1,f +1800,3069b,72,2,f +1800,3069b,36,1,f +1800,32000,72,2,f +1800,32002,72,1,t +1800,32002,72,1,f +1800,32270,0,1,f +1800,3626b,0,3,f +1800,3626bpr0472,78,1,f +1800,3679,71,1,f +1800,3680,0,1,f +1800,3710,72,1,f +1800,3794b,0,1,f +1800,3849,0,2,f +1800,4032a,0,1,f +1800,41677,0,2,f +1800,42003,0,1,f +1800,4349,0,1,f +1800,44360,15,2,f +1800,4588,72,1,f +1800,4599b,0,3,f +1800,4600,0,1,f +1800,4623,72,1,f +1800,4740,15,1,f +1800,57899,0,1,f +1800,57900,71,1,f +1800,58247,0,2,f +1800,59426,72,1,f +1800,59900,36,1,f +1800,60475a,15,2,f +1800,61184,71,2,f +1800,6120,72,2,f +1800,6141,36,1,t +1800,6141,36,1,f +1800,87087,15,2,f +1800,87556pr0002,15,1,f +1800,970c00,72,1,f +1800,970x194,15,2,f +1800,970x194,72,1,f +1800,973pr1344c01,15,2,f +1800,973pr1346c01,15,1,f +1800,973pr1566c01,72,1,f +1801,2437,41,1,f +1801,3823,41,2,f +1801,3829c01,14,2,f +1801,3829c01,4,2,f +1801,4079,4,2,f +1801,4079,14,2,f +1801,4594,41,1,f +1801,6070,41,1,f +1801,6070,34,1,f +1802,3023,1,1,f +1802,3023,4,1,f +1802,3623,15,2,f +1802,54200,40,2,f +1802,54200,40,1,t +1802,54200,15,2,f +1802,54200,15,1,t +1802,63864,4,1,f +1802,63864,1,1,f +1803,2555,4,1,f +1803,2555,4,1,t +1803,3010,72,1,f +1803,3020,72,1,f +1803,30259,14,1,f +1803,30340,15,1,f +1803,3062b,0,2,f +1803,3062b,71,1,f +1803,63965,4,1,f +1805,11477,15,1,f +1805,11477,0,3,f +1805,14704,71,2,f +1805,15068,0,2,f +1805,15070,15,2,f +1805,15208,15,2,f +1805,15571,71,1,f +1805,22890,72,2,f +1805,2357,0,2,f +1805,2420,0,2,f +1805,2420,71,2,f +1805,2420,30,2,f +1805,2449,72,4,f +1805,2639,72,2,f +1805,2654,72,2,f +1805,3002,0,1,f +1805,3003,85,2,f +1805,3004,0,1,f +1805,3005,0,2,f +1805,3005,27,2,f +1805,3010,30,2,f +1805,3020,0,1,f +1805,3020,71,1,f +1805,3021,71,2,f +1805,3021,0,1,f +1805,3022,71,2,f +1805,3022,0,1,f +1805,3023,85,6,f +1805,3023,72,2,f +1805,3023,4,4,f +1805,3023,0,2,f +1805,3024,0,6,f +1805,3024,71,4,f +1805,3024,72,2,f +1805,3024,71,2,t +1805,3024,0,1,t +1805,3037,0,2,f +1805,3045,0,2,f +1805,3069b,0,1,f +1805,3460,72,1,f +1805,3622,0,4,f +1805,3665,71,2,f +1805,3666,0,1,f +1805,3710,0,2,f +1805,3710,30,2,f +1805,41854,0,1,f +1805,4460b,0,4,f +1805,44728,15,1,f +1805,49668,0,4,f +1805,49668,179,2,f +1805,51739,0,2,f +1805,53451,15,1,t +1805,53451,0,1,t +1805,53451,15,2,f +1805,53451,0,2,f +1805,54200,0,1,t +1805,54200,71,1,t +1805,54200,85,2,f +1805,54200,0,2,f +1805,54200,71,2,f +1805,54200,85,1,t +1805,60470a,71,1,f +1805,60475b,0,2,f +1805,60478,72,2,f +1805,60897,0,4,f +1805,6091,0,6,f +1805,85984,15,2,f +1805,85984,0,1,f +1805,87087,71,4,f +1805,93273,0,2,f +1805,98138pr0008,15,1,t +1805,98138pr0008,15,4,f +1805,98560,0,2,f +1805,99206,71,1,f +1805,99780,15,1,f +1805,99780,0,2,f +1807,2654,0,1,f +1807,2780,0,24,f +1807,2780,0,1,t +1807,2905,0,4,f +1807,2951,14,1,f +1807,32002,8,4,f +1807,32009,14,2,f +1807,32017,0,3,f +1807,32034,0,1,f +1807,32054,0,1,f +1807,32056,14,2,f +1807,32062,0,2,f +1807,32063,7,2,f +1807,32073,7,11,f +1807,32123b,7,5,f +1807,32140,14,2,f +1807,32140,0,2,f +1807,32184,0,1,f +1807,32250,0,2,f +1807,32270,7,3,f +1807,32291,0,4,f +1807,32316,14,2,f +1807,32348,14,2,f +1807,32449,0,8,f +1807,32523,14,4,f +1807,32523,0,4,f +1807,32524,14,2,f +1807,32524,0,2,f +1807,32526,14,4,f +1807,32556,7,2,f +1807,32557,7,2,f +1807,3647,7,2,f +1807,3648b,7,1,f +1807,3650c,7,1,f +1807,3673,7,4,f +1807,3705,0,7,f +1807,3706,0,2,f +1807,3713,7,3,f +1807,3749,19,6,f +1807,3941,46,1,f +1807,4032a,0,1,f +1807,40490,14,2,f +1807,41677,0,8,f +1807,41678,14,2,f +1807,42003,14,1,f +1807,42003,0,7,f +1807,43093,1,5,f +1807,43857,14,2,f +1807,4519,7,12,f +1807,4716,0,1,f +1807,6141,36,1,t +1807,6141,36,4,f +1807,6536,0,4,f +1807,6536,7,1,f +1807,6538b,0,1,f +1807,6558,0,11,f +1807,6579,0,4,f +1807,6580,14,4,f +1807,6587,8,2,f +1807,6632,14,2,f +1807,6632,0,3,f +1807,9244,7,1,f +1808,2420,1,2,f +1808,2458,1,1,f +1808,2555,0,5,f +1808,2569,0,1,f +1808,2569,42,4,f +1808,2607,8,1,f +1808,30014,8,2,f +1808,30035,0,2,f +1808,30121,8,1,f +1808,30208,42,2,f +1808,30209,8,2,f +1808,3021,0,1,f +1808,30211,8,4,f +1808,30213,42,1,f +1808,30214,42,1,f +1808,3022,1,2,f +1808,3023,0,1,f +1808,3023,8,1,f +1808,3023,1,1,f +1808,30230px1,33,1,f +1808,30230px2,33,1,f +1808,3024,1,1,f +1808,3039,0,2,f +1808,3040b,0,2,f +1808,3040p58,8,2,f +1808,3068bpx7,0,1,f +1808,3475b,0,2,f +1808,3623,1,2,f +1808,3626bpb0081,1,1,f +1808,3665,1,2,f +1808,3710,1,6,f +1808,3794a,1,2,f +1808,3795,0,1,f +1808,3832,0,1,f +1808,3937,0,2,f +1808,3938,1,2,f +1808,4081b,1,2,f +1808,412,8,2,f +1808,4229,0,1,f +1808,4286,1,4,f +1808,4287,0,4,f +1808,4589,42,4,f +1808,4595,0,1,f +1808,4740,42,3,f +1808,4746,0,1,f +1808,4859,1,1,f +1808,6907stk01,9999,1,t +1808,71603,8,1,f +1808,73092,0,1,f +1808,73590c02a,0,2,f +1808,970x023,8,1,f +1808,973pb0080c01,0,1,f +1809,11055,15,1,f +1809,11477,70,5,f +1809,11477,0,1,f +1809,13547,0,2,f +1809,14417,72,3,f +1809,14418,71,1,f +1809,14419,72,4,f +1809,14704,71,5,f +1809,15071,0,1,f +1809,15573,70,3,f +1809,15706,0,2,f +1809,15712,0,3,f +1809,15976,0,2,f +1809,18649,0,1,f +1809,19857pat0004,0,1,f +1809,22890,72,1,f +1809,23984,148,1,f +1809,23985,15,1,f +1809,2562,70,1,f +1809,2736,71,2,f +1809,3021,70,1,f +1809,3022,72,1,f +1809,3022,0,1,f +1809,3023,71,1,f +1809,30259,70,2,f +1809,3069b,70,2,f +1809,3626bpr0745,14,1,f +1809,3626cpr1557,14,1,f +1809,4081b,72,1,f +1809,41854,308,1,f +1809,42446,72,1,f +1809,4733,0,1,f +1809,47457,308,1,f +1809,50923,72,2,f +1809,50950,308,1,f +1809,53451,297,1,t +1809,53451,297,4,f +1809,53454,148,2,f +1809,54200,378,1,t +1809,54200,378,5,f +1809,54200,0,1,f +1809,54200,0,1,t +1809,60478,70,1,f +1809,60897,0,1,f +1809,63868,70,1,f +1809,63965,70,1,f +1809,64644,308,1,f +1809,87747,0,2,f +1809,87994,70,1,f +1809,92280,0,4,f +1809,970c00pr0879,0,1,f +1809,970x192pr0001,70,1,f +1809,973pr9992,70,1,f +1809,98138,34,2,f +1809,98138,34,1,t +1809,98138pr0006,47,1,f +1809,98138pr0006,47,1,t +1809,98141,297,5,f +1810,3068bp67,14,6,f +1810,3068bpb0050,14,4,f +1810,3068bpf1,14,6,f +1810,3068pb35,14,4,f +1810,3068pr0001,14,1,f +1810,3068pr0002,14,1,f +1810,3068pr0003,14,1,f +1810,3068pr0004,14,1,f +1810,312c,14,16,f +1812,3045,1,10,f +1812,3046a,1,5,f +1812,3048a,1,3,f +1812,3049a,1,1,f +1812,962,1,1,f +1814,2412b,80,2,f +1814,2456,0,1,f +1814,3002,14,2,f +1814,3020,0,1,f +1814,3022,0,1,f +1814,30236,72,1,f +1814,3068b,72,2,f +1814,3069b,72,2,f +1814,3788,14,1,f +1814,44674,14,1,f +1814,50950,72,2,f +1814,54200,36,1,t +1814,54200,36,2,f +1814,6014b,15,4,f +1814,6015,0,4,f +1814,6157,0,2,f +1817,2423,2,4,f +1817,4032a,15,2,f +1817,56823,0,1,f +1817,6141,42,8,f +1817,6141,15,1,t +1817,6141,15,3,f +1817,6141,42,1,t +1818,2412b,19,2,f +1818,2420,19,2,f +1818,2450,6,2,f +1818,2540,6,3,f +1818,3023,0,4,f +1818,3031,19,1,f +1818,30365,8,2,f +1818,30375,25,1,f +1818,30377,3,3,f +1818,30377,3,1,t +1818,30383,0,2,f +1818,30530,25,1,f +1818,30554a,8,2,f +1818,3069bp55,8,1,f +1818,4150,0,1,f +1818,4286,8,2,f +1818,x117px5,3,1,f +1819,10509pr0003,15,1,f +1819,11458,72,5,f +1819,12825,297,1,t +1819,12825,297,2,f +1819,13562,148,1,f +1819,13562,179,2,f +1819,13562,179,1,t +1819,13562,148,1,t +1819,13565,15,1,f +1819,13664pr0001,308,1,f +1819,13665,0,1,f +1819,13748pr0001,0,1,f +1819,13761pr0001,272,1,f +1819,15332,0,3,f +1819,219,72,10,t +1819,2357,72,4,f +1819,2412b,71,2,f +1819,2412b,0,12,f +1819,2420,0,4,f +1819,2431,72,2,f +1819,2431,71,1,f +1819,2456,72,1,f +1819,2489,72,1,f +1819,2489,308,1,f +1819,2530,72,1,f +1819,2530,72,1,t +1819,2540,0,4,f +1819,2555,0,6,f +1819,2730,0,2,f +1819,2736,71,2,f +1819,2780,0,1,t +1819,2780,0,2,f +1819,2817,71,1,f +1819,2854,19,1,f +1819,2878,0,8,f +1819,2921,70,4,f +1819,298c02,0,1,t +1819,298c02,0,2,f +1819,30000,72,2,f +1819,3001,72,2,f +1819,3001,19,3,f +1819,3001,0,1,f +1819,3002,71,1,f +1819,3003,71,1,f +1819,3003,0,1,f +1819,3004,288,2,f +1819,3004,72,2,f +1819,3004,15,1,f +1819,3005,288,2,f +1819,3010,288,12,f +1819,3010,72,5,f +1819,30136,71,6,f +1819,30136,70,12,f +1819,30137,70,12,f +1819,30139,70,1,f +1819,30141,72,1,f +1819,30150,84,1,f +1819,30162,72,4,f +1819,3020,0,2,f +1819,3020,288,2,f +1819,3020,71,6,f +1819,3021,72,6,f +1819,3023,28,7,f +1819,3023,14,3,f +1819,3023,47,4,f +1819,3023,72,2,f +1819,3023,15,1,f +1819,3023,0,11,f +1819,30236,0,6,f +1819,3024,47,2,f +1819,3024,47,1,t +1819,3029,72,1,f +1819,3031,70,1,f +1819,3033,72,1,f +1819,3034,72,4,f +1819,30357,0,2,f +1819,3036,72,1,f +1819,30367c,0,1,f +1819,30374,0,6,f +1819,30377,0,2,f +1819,30377,0,1,t +1819,3038,72,2,f +1819,30385,80,2,f +1819,3039,0,1,f +1819,3040b,288,2,f +1819,3040b,71,4,f +1819,30414,0,2,f +1819,3044b,72,2,f +1819,30553,0,1,f +1819,3062b,0,4,f +1819,3062b,72,4,f +1819,3062b,41,4,f +1819,3062b,70,12,f +1819,3062b,47,4,f +1819,3069b,72,4,f +1819,3069bpr0131,19,1,f +1819,3070b,71,2,f +1819,3070b,71,1,t +1819,3070bpr0145,71,1,t +1819,3070bpr0145,71,1,f +1819,3176,0,4,f +1819,32015,4,1,f +1819,32028,72,4,f +1819,32062,4,4,f +1819,32123b,14,1,t +1819,32123b,14,1,f +1819,32348,72,3,f +1819,3298,72,2,f +1819,3298,0,1,f +1819,3456,72,2,f +1819,3622,72,2,f +1819,3623,71,2,f +1819,3626cpr1191,78,1,f +1819,3626cpr1192,78,1,f +1819,3626cpr1194,84,1,f +1819,3626cpr1197,78,1,f +1819,3626cpr1199,78,1,f +1819,3626cpr1200,78,1,f +1819,3626cpr1201,78,1,f +1819,3633,0,4,f +1819,3660,72,2,f +1819,3666,320,4,f +1819,3666,71,4,f +1819,3666,0,3,f +1819,3673,71,6,f +1819,3673,71,3,t +1819,3678bpr0036,320,1,f +1819,3680,0,2,f +1819,3700,71,4,f +1819,3701,70,1,f +1819,3705,0,1,f +1819,3710,19,2,f +1819,3710,72,5,f +1819,3710,320,2,f +1819,3747b,0,1,f +1819,3749,19,8,f +1819,3795,72,4,f +1819,3795,0,1,f +1819,3837,0,1,f +1819,3837,179,1,f +1819,3894,71,2,f +1819,3941,71,4,f +1819,3958,28,2,f +1819,3960,0,1,f +1819,3960,71,1,f +1819,3960,70,1,f +1819,4032a,484,5,f +1819,4032a,0,2,f +1819,4032a,71,3,f +1819,41532,0,1,f +1819,4162,0,2,f +1819,4175,0,2,f +1819,41879a,72,1,f +1819,4274,1,2,f +1819,4274,1,2,t +1819,4286,71,2,f +1819,43857,0,1,f +1819,44728,71,2,f +1819,44728,72,7,f +1819,4477,72,2,f +1819,4491b,70,1,f +1819,4510,0,4,f +1819,4511,72,2,f +1819,4599b,0,1,f +1819,4599b,0,1,t +1819,4697b,71,1,f +1819,4697b,71,1,t +1819,4733,71,1,f +1819,4740,0,1,f +1819,47456,0,1,f +1819,47457,72,4,f +1819,50950,72,5,f +1819,52107,0,2,f +1819,53400,72,16,f +1819,53401,72,4,f +1819,54200,71,2,t +1819,54200,72,1,t +1819,54200,0,6,f +1819,54200,0,1,t +1819,54200,72,2,f +1819,54200,19,1,t +1819,54200,19,3,f +1819,54200,71,4,f +1819,57051,383,8,f +1819,57878,0,16,f +1819,59900,0,3,f +1819,59900,71,2,f +1819,60470a,0,3,f +1819,60475b,0,8,f +1819,60475b,71,2,f +1819,60592,70,4,f +1819,60596,0,1,f +1819,60621,71,1,f +1819,6064,28,1,f +1819,6081,288,4,f +1819,60897,0,4,f +1819,6091,71,2,f +1819,6091,0,4,f +1819,6091,19,3,f +1819,6141,0,2,t +1819,6141,297,14,f +1819,6141,0,17,f +1819,6141,297,3,t +1819,61485,0,1,f +1819,6222,70,1,f +1819,6233,71,1,f +1819,6249,71,1,f +1819,63868,0,8,f +1819,63965,0,2,f +1819,64449,72,2,f +1819,64567,0,1,t +1819,64567,0,2,f +1819,64728,4,3,f +1819,64799,71,2,f +1819,6553,0,4,f +1819,6589,19,2,f +1819,6589,19,1,t +1819,6636,71,2,f +1819,6636,0,9,f +1819,72454,0,2,f +1819,75c12,0,2,f +1819,85557,0,4,f +1819,85558,0,2,f +1819,85975,297,1,f +1819,85984,0,6,f +1819,87079,0,4,f +1819,87081,72,1,f +1819,87083,72,1,f +1819,87580,0,2,f +1819,87609,15,4,f +1819,87994,0,2,f +1819,88283,308,1,f +1819,88286,308,1,f +1819,88930,288,4,f +1819,88930,0,12,f +1819,89523,19,1,f +1819,90201,0,1,f +1819,91988,0,1,f +1819,91994,0,7,f +1819,92099,72,1,f +1819,92107,72,1,f +1819,92280,0,1,f +1819,92593,72,6,f +1819,92593,0,2,f +1819,92946,19,1,f +1819,93059,179,1,f +1819,93274,71,4,f +1819,95228,34,1,f +1819,95348,308,1,t +1819,95348,308,1,f +1819,95674,0,1,f +1819,96874,25,1,t +1819,970c00,72,1,f +1819,970c00pr0502,308,1,f +1819,970c00pr0503,272,1,f +1819,970c00pr0506,0,1,f +1819,970c00pr0545,28,1,f +1819,973pr2340c01,0,1,f +1819,973pr2341c01,272,1,f +1819,973pr2344c01,84,1,f +1819,973pr2346c01,0,1,f +1819,973pr2348c01,72,1,f +1819,973pr2349c01,72,1,f +1819,973pr2350c01,320,1,f +1819,99207,0,3,f +1819,99563,80,2,f +1819,99781,71,2,f +1820,2340,0,2,f +1820,2343,47,1,f +1820,2415,7,1,f +1820,2431,0,2,f +1820,2432,0,1,f +1820,2526,14,1,f +1820,2540,0,2,f +1820,2555,0,2,f +1820,2570,8,2,f +1820,2588,21,1,f +1820,2654,0,2,f +1820,2744,0,2,f +1820,2815,0,2,f +1820,2817,0,2,f +1820,2952,7,2,f +1820,2983,7,1,f +1820,30018,15,1,f +1820,3003,0,1,f +1820,3004,1,2,f +1820,30083,41,1,f +1820,3010,0,2,f +1820,30103,0,1,f +1820,3020,1,4,f +1820,3021,0,1,f +1820,3022,1,1,f +1820,3023,1,4,f +1820,3023,0,3,f +1820,30385,383,1,f +1820,3139,0,1,f +1820,32001,0,2,f +1820,32002,8,2,f +1820,32002,8,1,t +1820,3464,47,1,f +1820,3624,0,1,f +1820,3626b,0,1,f +1820,3626bpr0895,15,2,f +1820,3626bpx54,14,1,f +1820,3666,15,1,f +1820,3666,0,3,f +1820,3673,7,2,f +1820,37,383,2,f +1820,3700,0,4,f +1820,3706,0,3,f +1820,3707,0,1,f +1820,3709,0,3,f +1820,3713,7,1,f +1820,3794a,1,2,f +1820,3829c01,1,1,f +1820,3878,0,2,f +1820,3960p02,1,1,f +1820,4032a,1,4,f +1820,4185,6,2,f +1820,4265b,7,1,f +1820,4265b,7,1,t +1820,4449,6,1,f +1820,4477,0,2,f +1820,4477,1,2,f +1820,4589,57,4,f +1820,4589,0,2,f +1820,4625,0,1,f +1820,4742,1,2,f +1820,4858,0,1,f +1820,57503,334,2,f +1820,57504,334,2,f +1820,57505,334,2,f +1820,57506,334,2,f +1820,6016,0,1,f +1820,6019,0,4,f +1820,6124,36,2,f +1820,6125,4,2,f +1820,6126a,57,4,f +1820,6127,0,1,f +1820,6128,0,1,f +1820,6133,0,2,f +1820,6141,36,1,t +1820,6141,46,2,f +1820,6141,57,1,t +1820,6141,57,2,f +1820,6141,36,3,f +1820,6141,42,1,t +1820,6141,33,2,f +1820,6141,34,3,f +1820,6141,46,1,t +1820,6141,34,1,t +1820,6141,42,2,f +1820,6141,33,1,t +1820,6183,1,1,f +1820,6259,41,2,f +1820,6556,1,1,f +1820,6636,0,1,f +1820,71342,334,2,f +1820,85546,14,1,f +1820,85546,14,1,t +1820,970c00,8,1,f +1820,970c00,15,1,f +1820,973c09,15,1,f +1820,973px90c01,0,1,f +1821,3001,14,8,f +1821,3001,1,5,f +1821,3001,4,4,f +1821,3001,15,2,f +1821,3002,1,4,f +1821,3002,14,4,f +1821,3002,4,3,f +1821,3003,15,2,f +1821,3003,14,2,f +1821,3003,4,4,f +1821,3003,1,4,f +1821,3004,4,6,f +1821,3004,15,2,f +1821,3004,1,4,f +1821,3004,14,8,f +1821,3004,47,3,f +1821,3005,1,4,f +1821,3005,4,6,f +1821,3005,14,2,f +1821,3008,4,2,f +1821,3009,4,2,f +1821,3010,4,4,f +1821,3010,14,4,f +1821,3010,1,4,f +1821,3020,4,2,f +1821,3021,4,2,f +1821,3022,4,2,f +1821,3034,4,2,f +1821,3039,47,2,f +1821,3137c01,0,2,f +1821,3297,4,2,f +1821,3298,4,4,f +1821,3299,4,1,f +1821,3300,4,2,f +1821,3624,4,1,f +1821,3626apr0001,14,1,f +1821,3641,0,4,f +1821,3741,2,2,f +1821,3742,15,3,f +1821,3742,15,1,t +1821,3742,4,1,t +1821,3742,4,3,f +1821,3853,15,3,f +1821,3854,15,6,f +1821,3856,2,6,f +1821,3861b,15,1,f +1821,3867,2,1,f +1821,970c00,0,1,f +1821,973c07,1,1,f +1822,132a,0,4,f +1822,3001a,14,1,f +1822,3003,1,1,f +1822,3004,0,1,f +1822,3004p50,14,1,f +1822,3020,14,2,f +1822,3034,14,1,f +1822,3035,14,2,f +1822,3062a,0,1,f +1822,3069a,0,1,f +1822,3145,14,1,f +1822,3149c01,4,1,f +1822,3183b,14,1,f +1822,3317,1,1,f +1822,3433,14,1,f +1822,3436,14,1,f +1822,36,0,2,f +1822,7039,4,4,f +1822,7049b,0,2,f +1822,715,4,2,f +1822,800,0,1,f +1822,827,14,1,f +1822,828,4,1,f +1822,871,0,1,f +1822,bb85,4,1,f +1823,2446,0,1,f +1823,2446,1,1,f +1823,2447,0,1,f +1823,2543,4,1,f +1823,3626bpr0001,14,5,f +1823,3838,1,1,f +1823,3838,0,1,f +1823,3844,71,1,f +1823,6132,15,1,f +1823,87693,4,1,f +1823,88489,70,1,f +1823,970c00,1,1,f +1823,970c00,2,1,f +1823,970c00,0,1,f +1823,970x026,4,2,f +1823,973c02,4,1,f +1823,973p46c01,2,1,f +1823,973p52c01,0,1,f +1823,973pr1594c01,1,1,f +1823,973px45c01,0,1,f +1825,2340,0,2,f +1825,2341,7,2,f +1825,2346,0,4,f +1825,2357,0,2,f +1825,2412b,7,3,f +1825,2412b,14,2,f +1825,2419,4,1,f +1825,2419,14,1,f +1825,2419,0,4,f +1825,2420,7,4,f +1825,2420,4,4,f +1825,2420,0,16,f +1825,2431,4,1,f +1825,2431,7,2,f +1825,2431,0,4,f +1825,2436,0,3,f +1825,2437,41,1,f +1825,2445,0,2,f +1825,2452,7,1,f +1825,2453a,7,2,f +1825,2458,7,2,f +1825,2465,0,2,f +1825,2486,15,1,f +1825,2508,0,1,f +1825,2540,0,2,f +1825,2540,14,2,f +1825,2555,7,6,f +1825,2555,15,4,f +1825,2555,0,2,f +1825,2569,7,3,f +1825,2654,7,4,f +1825,2694,41,1,f +1825,2695,7,5,f +1825,2696,0,5,f +1825,2714a,7,1,f +1825,2714a,0,1,f +1825,2780,0,5,f +1825,2780,0,1,t +1825,2819,7,1,f +1825,2873,0,2,f +1825,2921,0,4,f +1825,298c03,7,1,t +1825,298c03,7,3,f +1825,3001,7,1,f +1825,3002,0,1,f +1825,3003,0,2,f +1825,3004,7,2,f +1825,3004,0,7,f +1825,3004,4,2,f +1825,3004,14,6,f +1825,3005,14,4,f +1825,3005,0,10,f +1825,3005,4,2,f +1825,3007,7,1,f +1825,3007,0,2,f +1825,3008,0,2,f +1825,3009,0,2,f +1825,3010,14,2,f +1825,3010,1,1,f +1825,3010,0,2,f +1825,3020,0,10,f +1825,3020,4,1,f +1825,3021,4,5,f +1825,3021,0,6,f +1825,3022,14,4,f +1825,3022,0,11,f +1825,3022,4,3,f +1825,3022,7,5,f +1825,3023,1,3,f +1825,3023,15,1,f +1825,3023,0,30,f +1825,3023,4,22,f +1825,3023,14,8,f +1825,3023,7,7,f +1825,3024,14,2,f +1825,3024,4,6,f +1825,3024,7,2,f +1825,3024,0,1,t +1825,3024,0,17,f +1825,3024,46,6,f +1825,3030,4,1,f +1825,3030,0,3,f +1825,3031,7,1,f +1825,3032,0,2,f +1825,3033,0,3,f +1825,3034,0,8,f +1825,3034,4,2,f +1825,3035,7,1,f +1825,3036,7,2,f +1825,3036,0,1,f +1825,3038,0,2,f +1825,3039,14,2,f +1825,3039pc4,0,1,f +1825,3040b,7,6,f +1825,3040b,4,1,f +1825,3040b,0,8,f +1825,3040p33,0,3,f +1825,3045,0,2,f +1825,3062b,7,17,f +1825,3063b,14,2,f +1825,3065,47,2,f +1825,3068b,4,1,f +1825,3068b,0,1,f +1825,3069b,0,11,f +1825,3069b,14,2,f +1825,3070b,7,1,t +1825,3070b,36,4,f +1825,3070b,46,2,f +1825,3070b,46,1,t +1825,3070b,7,2,f +1825,3070b,36,1,t +1825,3297,0,1,f +1825,3460,4,3,f +1825,3460,7,1,f +1825,3460,0,3,f +1825,3460,14,4,f +1825,3482,7,4,f +1825,3622,0,2,f +1825,3623,0,17,f +1825,3623,1,2,f +1825,3623,7,4,f +1825,3623,4,2,f +1825,3623,14,6,f +1825,3647,7,2,f +1825,3651,7,2,f +1825,3660,0,7,f +1825,3665,0,6,f +1825,3666,4,5,f +1825,3666,0,7,f +1825,3666,7,7,f +1825,3666,14,3,f +1825,3673,7,3,f +1825,3673,7,1,t +1825,3684,14,2,f +1825,3700,0,2,f +1825,3701,0,1,f +1825,3703,7,4,f +1825,3704,0,1,f +1825,3705,0,1,f +1825,3706,0,1,f +1825,3708,0,1,f +1825,3709,7,1,f +1825,3709,14,1,f +1825,3710,0,12,f +1825,3710,4,4,f +1825,3710,7,2,f +1825,3713,7,7,f +1825,3713,7,1,t +1825,3730,7,1,f +1825,3737,0,2,f +1825,3738,0,1,f +1825,3743,7,1,f +1825,3747a,0,3,f +1825,3749,7,3,f +1825,3749,7,1,t +1825,3794a,7,3,f +1825,3794a,0,4,f +1825,3795,0,3,f +1825,3795,7,6,f +1825,3829c01,4,1,f +1825,3832,14,1,f +1825,3832,0,1,f +1825,3849,7,2,f +1825,3894,0,2,f +1825,3894,7,1,f +1825,3933,0,1,f +1825,3934,0,1,f +1825,3937,0,1,f +1825,3937,7,2,f +1825,3937,1,2,f +1825,3938,7,4,f +1825,3938,0,1,f +1825,3957a,7,6,f +1825,3959,7,2,f +1825,4033,0,2,f +1825,4034,41,2,f +1825,4070,0,2,f +1825,4070,14,8,f +1825,4070,7,14,f +1825,4070,4,2,f +1825,4081b,0,2,f +1825,4081b,7,4,f +1825,4085c,0,4,f +1825,4085c,4,1,f +1825,4095,4,1,f +1825,4143,7,2,f +1825,4162,0,3,f +1825,4162,7,4,f +1825,4175,0,2,f +1825,4175,7,5,f +1825,4181p07,0,1,f +1825,4182p07,0,1,f +1825,4183,41,2,f +1825,4185,7,1,f +1825,4213,0,3,f +1825,4215a,41,4,f +1825,4261,7,2,f +1825,4265a,7,1,f +1825,4265a,7,1,t +1825,4273b,7,1,f +1825,4274,7,3,f +1825,4274,7,1,t +1825,4275b,4,4,f +1825,4276b,7,1,f +1825,4276b,4,2,f +1825,4286,4,2,f +1825,4286,0,4,f +1825,4287,0,6,f +1825,4315,0,2,f +1825,4349,7,6,f +1825,4442,7,3,f +1825,4460a,0,2,f +1825,4460a,4,2,f +1825,4477,7,2,f +1825,4477,4,3,f +1825,4477,0,8,f +1825,4531,4,2,f +1825,4599a,1,2,f +1825,4599a,7,2,f +1825,4623,0,2,f +1825,4625,0,3,f +1825,4855,0,2,f +1825,4864a,0,2,f +1825,4864a,4,1,f +1825,4865a,4,1,f +1825,4871,0,2,f +1825,5581stk01,9999,1,t +1825,6019,0,2,f +1825,6019,15,2,f +1825,6019,7,10,f +1825,6041,0,1,f +1825,6091,0,2,f +1825,6091,7,6,f +1825,6140,7,2,f +1825,6141,0,4,f +1825,6141,36,1,t +1825,6141,0,1,t +1825,6141,7,1,t +1825,6141,7,8,f +1825,6141,47,4,f +1825,6141,47,1,t +1825,6141,46,1,t +1825,6141,46,4,f +1825,6141,36,2,f +1825,9244,7,1,f +1826,32207,8,4,f +1826,32208,0,2,f +1826,32214,0,2,f +1826,32219,14,4,f +1826,3749,7,4,f +1826,zbb013,22,4,f +1826,zbb014,7,4,f +1826,zbb015,14,2,f +1828,2555,7,1,t +1828,2555,7,6,f +1828,2586ps1,22,1,f +1828,3004,19,6,f +1828,3009,6,2,f +1828,3010,0,3,f +1828,30191,7,2,f +1828,3022,0,1,f +1828,3031,2,2,f +1828,3032,19,2,f +1828,30363,1,1,f +1828,30371,19,2,f +1828,3039,8,2,f +1828,3045,7,4,f +1828,30486c01,366,2,f +1828,3062b,33,6,f +1828,3069bp0g,19,1,f +1828,3069bp0g,19,1,t +1828,3679,7,2,f +1828,3680,0,2,f +1828,3700,1,2,f +1828,3700,0,2,f +1828,3749,7,1,t +1828,3749,7,2,f +1828,3941,0,2,f +1828,3961,19,2,f +1828,4085c,7,1,t +1828,4085c,7,2,f +1828,4213,8,1,f +1828,4315,7,1,f +1828,4491b,6,2,f +1828,4497,0,2,f +1828,6141,8,4,f +1828,6141,8,2,t +1828,75c10,19,2,f +1828,75c11,8,2,f +1828,75c17,8,2,f +1828,970c00,2,1,f +1828,970c00,8,1,f +1828,973pb0068c01,2,1,f +1828,973px59c01,19,1,f +1830,2362b,0,2,t +1830,2377,0,4,f +1830,2412b,0,1,f +1830,2431,0,1,f +1830,2432,0,2,f +1830,2449,0,2,f +1830,2456,0,5,f +1830,2540,0,4,f +1830,2878c01,0,6,f +1830,2920,0,4,f +1830,2921,0,12,f +1830,3001,0,2,f +1830,3004,0,27,f +1830,3009,0,2,f +1830,3010,0,6,f +1830,3020,0,4,f +1830,3021,7,6,f +1830,3021,0,2,f +1830,3023,0,3,f +1830,3028,0,1,f +1830,3031,7,2,f +1830,3034,0,2,f +1830,30367b,0,2,f +1830,3037,0,6,f +1830,3040b,0,8,f +1830,3062b,8,2,f +1830,3068b,0,1,f +1830,32028,0,16,f +1830,32064a,15,1,f +1830,3297,0,4,f +1830,3455,0,4,f +1830,3623,0,2,f +1830,3660,0,4,f +1830,3678a,0,6,f +1830,3794a,0,1,f +1830,3795,7,8,f +1830,3832,7,2,f +1830,3941,0,1,f +1830,3960,0,1,f +1830,4022,0,4,f +1830,4025,0,2,f +1830,4032a,0,1,f +1830,4070,0,4,f +1830,4095,0,2,f +1830,4150pr0022,7,1,f +1830,4175,0,6,f +1830,4215b,0,5,f +1830,4286,0,2,f +1830,4349,0,1,f +1830,4460a,0,2,f +1830,4510,0,2,f +1830,4589,14,1,f +1830,4623,0,1,f +1830,4865a,0,2,f +1830,6019,0,8,f +1830,6111,0,2,f +1830,6141,46,1,t +1830,6141,36,2,f +1830,6141,36,1,t +1830,6141,46,3,f +1830,6141,8,1,t +1830,6141,8,7,f +1830,6584,0,1,f +1830,6587,8,1,f +1830,73092,0,4,f +1831,3022,0,40,f +1831,728,7,1,f +1831,729,47,1,f +1832,2431,15,1,f +1832,2432,4,1,f +1832,2540,4,1,f +1832,3005,41,2,f +1832,3010,7,2,f +1832,30136,8,4,f +1832,30157,8,2,f +1832,3020,15,1,f +1832,3020,4,1,f +1832,3021,4,2,f +1832,3022,4,2,f +1832,3023,15,4,f +1832,3023,4,1,f +1832,30236,0,1,f +1832,3024,46,4,f +1832,3024,36,4,f +1832,3032,0,1,f +1832,3032,15,3,f +1832,3035,7,2,f +1832,30365,8,2,f +1832,30383,8,2,f +1832,3069b,0,3,f +1832,3069b,4,2,f +1832,3297,4,1,f +1832,3460,4,2,f +1832,3483,0,4,f +1832,3622,15,2,f +1832,3626bp03,14,1,f +1832,3626bp05,14,1,f +1832,3626bpa3,14,1,f +1832,3626bpr0001,14,2,f +1832,3626bpx19,14,1,f +1832,3665,7,2,f +1832,3666,0,1,f +1832,3666,15,1,f +1832,3710,4,6,f +1832,3795,4,2,f +1832,3795,0,2,f +1832,3829c01,0,1,f +1832,3855,41,7,f +1832,3901,0,2,f +1832,3901,19,1,f +1832,3901,6,2,f +1832,4033,4,7,f +1832,4085c,7,2,f +1832,4162,7,4,f +1832,4176,41,2,f +1832,4282,7,1,f +1832,4287,7,2,f +1832,4349,0,2,f +1832,4485,4,1,f +1832,6112,15,2,f +1832,6248,7,4,f +1832,72824p01,15,1,f +1832,970c00,0,1,f +1832,970c00,15,5,f +1832,973c02,4,5,f +1832,973c12,2,1,f +1833,2335,15,4,f +1833,2419,72,2,f +1833,2420,71,4,f +1833,2420,14,2,f +1833,2420,15,4,f +1833,2420,0,2,f +1833,2431,72,2,f +1833,2431,14,1,f +1833,2432,14,1,f +1833,2432,0,1,f +1833,2446,0,2,f +1833,2446pr0004,15,1,f +1833,2450,15,2,f +1833,2454a,71,4,f +1833,2454a,15,10,f +1833,2456,71,2,f +1833,2458,71,2,f +1833,2458,15,2,f +1833,2540,0,4,f +1833,2550c01,70,1,f +1833,2555,0,8,f +1833,2780,0,1,t +1833,2780,0,4,f +1833,3004,4,1,f +1833,3004,0,5,f +1833,3007,71,1,f +1833,3007,0,1,f +1833,3008,15,3,f +1833,3009,72,1,f +1833,3010,71,1,f +1833,3010,15,4,f +1833,3020,72,4,f +1833,3020,0,7,f +1833,3020,4,1,f +1833,3020,71,2,f +1833,3021,0,5,f +1833,3022,15,4,f +1833,3022,72,1,f +1833,3023,0,2,f +1833,3023,15,1,f +1833,3023,72,6,f +1833,3023,71,4,f +1833,30249,71,4,f +1833,3031,71,4,f +1833,3031,72,4,f +1833,3032,0,1,f +1833,3034,15,2,f +1833,3034,71,1,f +1833,3034,0,4,f +1833,3035,15,2,f +1833,30355,71,2,f +1833,30356,71,2,f +1833,30357,0,2,f +1833,3036,0,1,f +1833,30374,0,2,f +1833,3038,0,2,f +1833,3039,15,1,f +1833,30540,0,4,f +1833,30592,72,1,f +1833,30648,0,14,f +1833,3068b,0,2,f +1833,3068b,72,1,f +1833,3068b,15,1,f +1833,3069b,72,11,f +1833,3069b,0,16,f +1833,3069b,14,2,f +1833,3069b,15,18,f +1833,32123b,71,1,t +1833,32123b,71,4,f +1833,32531,71,1,f +1833,3460,0,6,f +1833,3622,72,4,f +1833,3622,0,2,f +1833,3623,15,4,f +1833,3626bpr0387,78,1,f +1833,3626bpr0427,78,1,f +1833,3626bpr0530,78,1,f +1833,3626bpr0532,78,1,f +1833,3626bpr0533,78,1,f +1833,3626bpr0534,78,1,f +1833,3626bpr0550,78,1,f +1833,3665,15,2,f +1833,3665,0,2,f +1833,3666,0,7,f +1833,3666,4,1,f +1833,3666,71,3,f +1833,3666,15,8,f +1833,3676,15,2,f +1833,3679,71,2,f +1833,3680,0,2,f +1833,3700,71,1,f +1833,3703,0,6,f +1833,3707,0,2,f +1833,3710,15,2,f +1833,3710,71,2,f +1833,3749,19,9,f +1833,3794a,15,2,f +1833,3794a,0,15,f +1833,3795,0,4,f +1833,3795,15,1,f +1833,3829c01,15,2,f +1833,3829c01,14,1,f +1833,3830,15,4,f +1833,3831,15,4,f +1833,3901,0,1,f +1833,3938,0,4,f +1833,3941,0,2,f +1833,3957a,71,4,f +1833,4006,0,1,f +1833,40233,0,1,f +1833,4032a,71,2,f +1833,4032a,15,2,f +1833,4070,0,10,f +1833,4079,0,2,f +1833,4081b,71,2,f +1833,4085c,15,4,f +1833,41539,0,1,f +1833,4162,15,3,f +1833,41767,15,1,f +1833,41768,15,1,f +1833,41769,72,2,f +1833,41769,0,4,f +1833,41769,15,6,f +1833,41770,0,4,f +1833,41770,72,2,f +1833,41770,15,6,f +1833,41879a,272,1,f +1833,42022,0,1,f +1833,42060,15,1,f +1833,42061,15,1,f +1833,4282,71,4,f +1833,4286,0,4,f +1833,43710,72,2,f +1833,43711,72,2,f +1833,43712,15,1,f +1833,43720,0,1,f +1833,43721,0,1,f +1833,44126,15,1,f +1833,44126,0,1,f +1833,44301a,0,4,f +1833,4476b,15,5,f +1833,4477,0,1,f +1833,4485,4,1,f +1833,4485,0,1,f +1833,4515,71,1,f +1833,4522,0,1,f +1833,4528,0,4,f +1833,4533,15,1,f +1833,4589,72,2,f +1833,4599a,71,2,f +1833,4735,0,1,f +1833,48092,71,4,f +1833,48336,0,2,f +1833,4865a,15,2,f +1833,4865a,71,3,f +1833,49668,135,2,f +1833,50950,72,4,f +1833,54200,14,1,t +1833,54200,0,4,f +1833,54200,72,4,f +1833,54200,0,2,t +1833,54200,15,4,f +1833,54200,72,1,t +1833,54200,14,9,f +1833,54200,15,1,t +1833,54383,15,1,f +1833,54384,15,1,f +1833,55295,0,1,f +1833,55296,0,1,f +1833,55297,0,1,f +1833,55298,0,1,f +1833,55299,0,1,f +1833,55300,0,1,f +1833,55982,0,13,f +1833,58827,72,4,f +1833,59349,15,2,f +1833,61073,0,2,f +1833,6111,71,4,f +1833,6112,15,3,f +1833,6141,0,1,t +1833,6141,0,5,f +1833,6141,14,7,f +1833,6141,14,1,t +1833,61678,14,5,f +1833,61678,0,14,f +1833,61678,15,11,f +1833,6183,0,4,f +1833,6231,15,2,f +1833,6231,71,4,f +1833,6232,15,2,f +1833,62361,15,5,f +1833,6636,72,2,f +1833,6636,14,2,f +1833,6636,0,2,f +1833,92410,4,1,f +1833,970c00,15,1,f +1833,970c00,379,1,f +1833,970c00,0,2,f +1833,970c00pr0119,78,1,f +1833,970x026,72,1,f +1833,973pr1405c01,14,1,f +1833,973pr1407c01,15,1,f +1833,973pr1408c01,0,1,f +1833,973pr1410c01,5,1,f +1833,973pr1411c01,0,1,f +1833,973pr1412c01,4,1,f +1833,973pr1416c01,0,1,f +1835,2346,0,30,f +1835,30000,8,12,f +1835,3641,0,30,f +1835,4600,0,20,f +1835,4624,15,30,f +1835,6248,4,50,f +1835,6249,8,12,f +1838,458,0,4,f +1838,wheel2a,4,4,f +1840,2357,71,2,f +1840,2412b,72,10,f +1840,2420,71,8,f +1840,2436,0,5,f +1840,2444,15,12,f +1840,2445,0,2,f +1840,2445,320,2,f +1840,2450,71,2,f +1840,2460,0,2,f +1840,2654,72,3,f +1840,2736,71,1,f +1840,2780,0,1,t +1840,2780,0,6,f +1840,2825,0,2,f +1840,2853,14,2,f +1840,3001,320,3,f +1840,3003,71,3,f +1840,3004,71,1,f +1840,3010,71,4,f +1840,30180,15,2,f +1840,3020,71,12,f +1840,3020,0,1,f +1840,3020,320,8,f +1840,3021,0,2,f +1840,3021,71,8,f +1840,3021,320,4,f +1840,3022,15,7,f +1840,3023,71,8,f +1840,3023,320,10,f +1840,3023,14,2,f +1840,3030,71,1,f +1840,3031,71,4,f +1840,3032,71,1,f +1840,3034,15,6,f +1840,3035,71,6,f +1840,30350b,72,1,f +1840,3036,71,3,f +1840,3037,320,1,f +1840,30374,52,1,f +1840,30374,0,4,f +1840,30384,40,1,f +1840,3040b,320,4,f +1840,3040b,71,4,f +1840,30414,0,1,f +1840,3062b,27,12,f +1840,3062b,0,2,f +1840,3062b,33,4,f +1840,3062b,14,4,f +1840,3068b,320,3,f +1840,3068b,14,2,f +1840,3068b,15,6,f +1840,3069b,71,4,f +1840,3069b,320,5,f +1840,32000,71,4,f +1840,32002,72,2,f +1840,32002,72,1,t +1840,32018,72,4,f +1840,32034,15,1,f +1840,32054,0,14,f +1840,32062,4,2,f +1840,32064b,15,4,f +1840,32123b,14,1,t +1840,32123b,14,4,f +1840,32138,0,2,f +1840,32140,72,1,f +1840,32249,1,2,f +1840,32348,71,4,f +1840,32523,1,2,f +1840,32525,15,1,f +1840,3298,15,6,f +1840,3455,71,2,f +1840,3460,15,3,f +1840,3626bpr0525,78,2,f +1840,3626bpr0571,70,1,f +1840,3660,71,6,f +1840,3665,71,6,f +1840,3666,320,6,f +1840,3666,15,6,f +1840,3700,0,4,f +1840,3701,72,2,f +1840,3702,71,4,f +1840,3705,0,5,f +1840,3707,0,1,f +1840,3710,71,4,f +1840,3710,320,4,f +1840,3737,0,2,f +1840,3747b,71,4,f +1840,3749,19,2,f +1840,3794b,320,3,f +1840,3795,71,10,f +1840,3795,14,5,f +1840,3832,71,4,f +1840,3937,0,6,f +1840,3937,15,6,f +1840,3957a,71,1,f +1840,4032a,14,3,f +1840,4079,1,3,f +1840,4162,15,2,f +1840,41678,0,2,f +1840,41769,71,1,f +1840,41770,71,1,f +1840,4274,1,16,f +1840,4274,1,1,t +1840,4287,71,4,f +1840,43093,1,10,f +1840,43719,320,2,f +1840,43722,71,2,f +1840,43723,71,2,f +1840,43898,0,2,f +1840,44301a,0,2,f +1840,44302a,1,2,f +1840,44728,71,4,f +1840,4477,72,2,f +1840,4510,71,2,f +1840,4519,71,2,f +1840,4522,0,2,f +1840,4589,33,4,f +1840,47753,320,1,f +1840,48183,71,1,f +1840,4865a,15,4,f +1840,50304,71,1,f +1840,50305,71,1,f +1840,50373,71,1,f +1840,54200,320,1,t +1840,54200,320,4,f +1840,54200,72,1,t +1840,54200,72,4,f +1840,54383,71,1,f +1840,54383,320,3,f +1840,54384,71,1,f +1840,54384,320,3,f +1840,58176,33,8,f +1840,58247,0,2,f +1840,59426,72,1,f +1840,6019,72,2,f +1840,60208,71,8,f +1840,60208,15,8,f +1840,60208,320,2,f +1840,60470a,15,2,f +1840,60478,15,10,f +1840,6091,0,2,f +1840,6091,15,8,f +1840,6112,71,4,f +1840,61184,71,8,f +1840,61189pr0001,15,1,f +1840,61189pr0003,15,1,f +1840,6134,71,6,f +1840,6134,1,6,f +1840,61409,72,4,f +1840,6141,41,1,t +1840,6141,41,20,f +1840,6141,0,6,f +1840,6141,0,1,t +1840,61678,15,4,f +1840,6179,71,1,f +1840,6180,71,4,f +1840,6180,320,4,f +1840,63868,71,4,f +1840,63965,71,4,f +1840,64567,80,1,f +1840,6536,0,6,f +1840,6558,1,12,f +1840,6628,0,3,f +1840,6632,1,4,f +1840,6636,71,4,f +1840,85543,15,1,f +1840,88930,71,8,f +1840,970c00,28,1,f +1840,970x026,15,2,f +1840,973pr0470c01,15,1,f +1840,973pr1389c01,15,1,f +1840,973pr1459c01,28,1,f +1842,11090,15,1,f +1842,11211,71,1,f +1842,11476,71,1,f +1842,11477,2,1,f +1842,11477,19,2,f +1842,11816pr0003,78,1,f +1842,11816pr1012,78,1,f +1842,14716,15,2,f +1842,14769,19,2,f +1842,14769,71,2,f +1842,15068,308,1,f +1842,15070,297,6,f +1842,15429,19,2,f +1842,15470,70,2,f +1842,15470,297,2,f +1842,15470,70,2,t +1842,15470,297,1,t +1842,15573,70,1,f +1842,15573,297,5,f +1842,15712,297,4,f +1842,16577,15,3,f +1842,18646,19,1,f +1842,18674,15,2,f +1842,18674,70,2,f +1842,18980,71,1,f +1842,20482,47,1,f +1842,20482,47,1,t +1842,21229,297,2,f +1842,22888,19,1,f +1842,2343,297,3,f +1842,2357,71,1,f +1842,2357,31,5,f +1842,23955,70,1,f +1842,23986pr0001,15,1,f +1842,23988,297,1,t +1842,23988,297,1,f +1842,24093,70,1,f +1842,2420,15,2,f +1842,2423,2,2,f +1842,2431,2,2,f +1842,2431,71,2,f +1842,24324,70,1,f +1842,2449,15,2,f +1842,2450,320,2,f +1842,2453b,15,4,f +1842,2454a,15,1,f +1842,2454b,31,1,f +1842,2496,0,2,f +1842,26292,84,1,f +1842,26293pr0001,226,1,f +1842,2655,71,2,f +1842,26584,85,1,f +1842,3001,15,1,f +1842,3003,31,2,f +1842,3004,320,1,f +1842,3004,31,9,f +1842,3004,15,1,f +1842,3004,484,1,f +1842,3005,71,1,f +1842,3005,320,3,f +1842,3005,15,3,f +1842,3009,31,1,f +1842,3010,31,1,f +1842,30136,70,1,f +1842,30145,15,1,f +1842,30151b,117,2,f +1842,30153,47,6,f +1842,30153,45,5,f +1842,3020,15,1,f +1842,3020,70,5,f +1842,3020,19,1,f +1842,3020,320,2,f +1842,3020,2,1,f +1842,3022,70,2,f +1842,3022,19,2,f +1842,3023,19,3,f +1842,3023,70,2,f +1842,30237b,71,1,f +1842,3024,297,4,f +1842,30261,15,1,f +1842,30274,71,1,f +1842,3029,2,1,f +1842,3034,19,1,f +1842,3035,19,1,f +1842,3036,19,1,f +1842,30367c,0,1,f +1842,3039,320,4,f +1842,3040b,71,4,f +1842,30504,19,1,f +1842,30562,19,2,f +1842,30565,2,2,f +1842,3062b,34,1,f +1842,3062bpr0010,15,1,f +1842,3062bpr0011,19,1,f +1842,3065,45,2,f +1842,3068b,272,4,f +1842,3068b,5,6,f +1842,3069b,15,3,f +1842,3069b,5,3,f +1842,3069b,70,3,f +1842,3245b,15,1,f +1842,33291,10,1,f +1842,33291,4,1,f +1842,33291,5,1,t +1842,33291,31,1,f +1842,33291,31,1,t +1842,33291,4,1,t +1842,33291,191,2,t +1842,33291,191,4,f +1842,33291,5,1,f +1842,33291,10,1,t +1842,3633,297,4,f +1842,3660,72,1,f +1842,3660,15,1,f +1842,3660,320,2,f +1842,3666,272,2,f +1842,3679,71,3,f +1842,3680,15,3,f +1842,3700,70,1,f +1842,3700,19,1,f +1842,3700,15,1,f +1842,3822,71,1,f +1842,3898,15,1,f +1842,3899pr0006,15,1,f +1842,3942c,320,3,f +1842,4032a,308,1,f +1842,4032a,15,2,f +1842,4032a,85,1,f +1842,42448,297,2,f +1842,4274,71,2,t +1842,4274,71,3,f +1842,4286,15,2,f +1842,43888,31,1,f +1842,4460b,320,1,f +1842,4495b,297,3,f +1842,4529,0,1,f +1842,4599a,297,2,f +1842,4599a,297,1,t +1842,4733,70,1,f +1842,47457,15,1,f +1842,48336,297,1,f +1842,48723,297,1,f +1842,48729b,72,1,f +1842,48729b,72,1,t +1842,54200,70,2,f +1842,54200,70,1,t +1842,54200,297,2,f +1842,54200,297,1,t +1842,59349,31,1,f +1842,59900,297,7,f +1842,59900,34,1,f +1842,60474,15,2,f +1842,60581,47,1,f +1842,60581,19,1,f +1842,60583b,15,2,f +1842,60594,15,1,f +1842,60614,158,2,f +1842,6106,19,1,f +1842,61184,71,1,f +1842,6141,182,6,f +1842,6141,2,1,t +1842,6141,182,3,t +1842,6141,45,2,t +1842,6141,15,3,f +1842,6141,36,2,t +1842,6141,29,1,f +1842,6141,15,1,t +1842,6141,2,1,f +1842,6141,0,1,t +1842,6141,36,1,f +1842,6141,0,2,f +1842,6141,45,4,f +1842,6141,27,5,f +1842,6141,29,1,t +1842,6141,27,2,t +1842,6259,31,1,f +1842,64644,297,6,f +1842,6636,5,4,f +1842,85861,297,2,t +1842,85861,297,14,f +1842,85975,297,1,f +1842,85984,320,5,f +1842,85984,15,1,f +1842,85984,71,1,f +1842,87079,26,1,f +1842,87087,70,2,f +1842,87544,15,3,f +1842,87580,15,3,f +1842,87926,31,1,f +1842,87994,15,2,f +1842,87994,15,1,t +1842,88072,2,1,f +1842,92438,19,1,f +1842,92456pr0111c01,78,1,f +1842,92815pr0004c01,78,1,f +1842,92819pr0010c01,0,1,f +1842,92947,19,1,f +1842,92947,15,4,f +1842,92950,15,3,f +1842,95226,484,1,f +1842,96874,25,1,t +1842,98138,297,2,f +1842,98138,71,3,f +1842,98138,297,1,t +1842,98138,71,1,t +1842,98138pr0013,15,1,f +1842,98138pr0013,15,1,t +1842,98397,71,1,f +1842,98560,320,4,f +1845,3021,47,30,f +1845,728,7,1,f +1845,729,47,1,f +1846,2450,0,2,f +1846,3004,15,1,f +1846,3020,15,1,f +1846,3020,0,1,f +1846,3022,15,1,f +1846,3039,15,1,f +1846,3039,47,1,f +1846,6141,33,2,t +1846,6141,33,1,f +1847,32171pb003,0,1,f +1847,32566,22,1,f +1847,32576,22,2,f +1847,32577,0,1,f +1847,32578,0,1,f +1847,32579,8,1,f +1847,40507,0,1,f +1848,3626bpr0216,14,1,f +1848,46303,71,1,f +1848,6141,15,1,t +1848,6141,15,3,f +1848,970c00,272,1,f +1848,973c01,1,1,f +1849,11609,191,1,f +1849,22667,26,2,f +1849,22667,27,2,f +1849,2343,47,1,f +1849,3020,25,1,f +1849,3021,85,1,f +1849,3062b,14,1,f +1849,3062b,27,1,f +1849,3069b,26,1,f +1849,33291,10,2,f +1849,6141,29,1,f +1852,3023a,47,50,f +1852,3024,47,30,f +1852,728,7,1,f +1852,729,47,1,f +1853,3005,52,1,f +1853,3005,41,1,f +1853,3005,45,1,f +1853,30111,15,1,f +1853,3031,26,1,f +1853,3065,46,1,f +1853,33050,5,1,f +1853,33286,15,5,f +1853,4908,5,1,f +1853,6186,118,1,f +1853,6197,15,1,f +1853,6198,15,1,f +1853,6198,13,1,f +1853,6203,14,1,f +1853,6206,15,1,f +1853,6256,13,1,f +1853,carpet02,15,1,f +1853,skirt01,15,1,f +1853,x248,462,1,f +1854,2654,0,50,f +1855,2543,4,1,f +1855,30236,71,1,f +1855,3069b,4,1,f +1855,3626cpr0891,14,1,f +1855,3795,2,1,f +1855,3829c01,15,1,f +1855,47457,4,1,f +1855,50949,0,2,f +1855,6132,15,1,f +1855,85984,0,1,f +1855,970c00,4,1,f +1855,973c31,4,1,f +1856,33122,25,1,f +1856,3626bpr1064,14,1,f +1856,88646,0,1,f +1856,95225,226,1,f +1856,95351pr0004,212,1,f +1856,973pr2162c01,14,1,f +1859,14226c41,2,2,f +1859,2412b,72,1,f +1859,2454a,272,2,f +1859,2654,0,4,f +1859,2730,272,2,f +1859,2780,0,12,f +1859,2780,0,1,t +1859,3004,272,4,f +1859,3005,272,2,f +1859,3010,272,2,f +1859,30104,72,2,f +1859,3023,272,4,f +1859,3023,72,2,f +1859,30293pat0002,72,2,f +1859,30294pat0001,72,2,f +1859,3034,72,5,f +1859,3040b,272,4,f +1859,3063b,0,2,f +1859,32016,135,1,f +1859,32017,71,2,f +1859,32062,4,8,f +1859,32064a,72,4,f +1859,32069,0,1,f +1859,32123b,71,6,f +1859,32123b,71,1,t +1859,32174,72,8,f +1859,32278,0,2,f +1859,32316,0,1,f +1859,32348,135,2,f +1859,3245b,272,2,f +1859,32523,135,3,f +1859,32524,0,2,f +1859,32553,178,1,f +1859,32556,71,2,f +1859,3308,272,3,f +1859,3403,0,1,f +1859,3404,0,1,f +1859,3700,272,2,f +1859,3705,0,3,f +1859,3895,72,2,f +1859,41539,72,1,f +1859,41669,36,2,f +1859,41753,72,1,t +1859,42003,135,1,f +1859,4274,71,1,t +1859,4274,71,4,f +1859,43093,1,9,f +1859,43093,1,1,t +1859,44036,179,1,f +1859,4460a,272,4,f +1859,44813,135,2,f +1859,4497,135,4,f +1859,4519,71,2,f +1859,47328,272,4,f +1859,48989,71,1,f +1859,50858,272,4,f +1859,50907,178,1,f +1859,51635,0,1,f +1859,51636,288,1,f +1859,51637,320,1,f +1859,51638,272,1,f +1859,51639,86,1,f +1859,51640,15,1,f +1859,51641,179,1,f +1859,51642,179,1,f +1859,51643,179,1,f +1859,51644,179,1,f +1859,51645,179,1,f +1859,51663,179,1,f +1859,51991a,0,1,f +1859,51991b,0,1,f +1859,51991c,0,2,f +1859,51991d,0,1,f +1859,51991e,0,2,f +1859,51991f,0,1,f +1859,6066,272,1,f +1859,6536,0,2,f +1859,6538b,0,6,f +1859,6553,0,1,f +1859,6558,0,6,f +1859,6628,0,1,f +1859,85544,4,2,f +1860,11262pr0001,15,1,f +1860,11938,15,1,f +1860,3626bpr1052,14,1,f +1860,970c00pr0423,191,1,f +1864,2412b,7,1,f +1864,2412b,0,1,f +1864,2431,7,2,f +1864,2432,7,1,f +1864,2436,15,4,f +1864,2437,40,1,f +1864,30027b,15,4,f +1864,30028,0,4,f +1864,30029,15,1,f +1864,3003,1,1,f +1864,3004,1,1,f +1864,3010,0,1,f +1864,3022,7,1,f +1864,3023,1,3,f +1864,3024,0,4,f +1864,3069b,36,1,f +1864,3069b,33,1,f +1864,3626bpb0181,14,1,f +1864,3710,0,1,f +1864,3710,15,1,f +1864,3829c01,1,1,f +1864,3962b,8,1,f +1864,40996,36,1,f +1864,40996,46,1,f +1864,41769,0,1,f +1864,41770,0,1,f +1864,41855,0,1,f +1864,43337,15,2,f +1864,4485,0,1,f +1864,45677,0,2,f +1864,6157,7,2,f +1864,970c00,0,1,f +1864,973pb0354c01,272,1,f +1865,2456,14,4,f +1865,2456,1,4,f +1865,2456,15,4,f +1865,2456,71,4,f +1865,2456,4,4,f +1865,3001,25,8,f +1865,3001,1,28,f +1865,3001,2,8,f +1865,3001,4,28,f +1865,3001,71,8,f +1865,3001,0,16,f +1865,3001,15,28,f +1865,3001,14,28,f +1865,3002,0,12,f +1865,3002,1,16,f +1865,3002,71,4,f +1865,3002,4,16,f +1865,3002,2,4,f +1865,3002,14,16,f +1865,3002,15,20,f +1865,3002,25,4,f +1865,3003,2,36,f +1865,3003,36,24,f +1865,3003,4,60,f +1865,3003,71,12,f +1865,3003,25,12,f +1865,3003,15,60,f +1865,3003,0,36,f +1865,3003,33,24,f +1865,3003,1,60,f +1865,3003,14,54,f +1865,3004,4,68,f +1865,3004,72,20,f +1865,3004,15,80,f +1865,3004,25,16,f +1865,3004,0,56,f +1865,3004,2,44,f +1865,3004,14,56,f +1865,3004,71,16,f +1865,3004,1,72,f +1865,3005,33,8,f +1865,3005,0,52,f +1865,3005,4,60,f +1865,3005,1,60,f +1865,3005,2,28,f +1865,3005,15,56,f +1865,3005pe1,14,8,f +1865,3005pe2,72,4,f +1865,3005pe3,72,4,f +1865,3005px2,14,4,f +1865,3007,4,4,f +1865,3007,14,4,f +1865,3007,15,4,f +1865,3007,1,4,f +1865,3008,71,4,f +1865,3009,4,8,f +1865,3009,1,8,f +1865,3009,15,8,f +1865,3009,14,4,f +1865,3010,1,12,f +1865,3010,0,8,f +1865,3010,72,4,f +1865,3010,2,8,f +1865,3010,4,12,f +1865,3010,14,12,f +1865,3010,15,12,f +1865,3010,25,4,f +1865,3010p01,14,4,f +1865,3020,0,4,f +1865,3020,71,4,f +1865,3020,15,8,f +1865,3020,1,4,f +1865,3020,4,4,f +1865,3020,14,4,f +1865,3020,25,4,f +1865,3020,2,4,f +1865,3021,14,4,f +1865,3021,4,4,f +1865,3021,25,4,f +1865,3021,1,8,f +1865,3021,15,8,f +1865,3021,72,4,f +1865,3021,2,4,f +1865,3022,2,4,f +1865,3022,0,4,f +1865,3022,72,4,f +1865,3022,1,12,f +1865,3022,15,12,f +1865,3022,4,8,f +1865,3022,14,8,f +1865,3034,4,4,f +1865,3034,15,4,f +1865,3034,14,4,f +1865,3034,1,4,f +1865,3037,4,16,f +1865,3039,36,4,f +1865,3039,33,8,f +1865,3039,4,12,f +1865,3039,47,4,f +1865,3039,1,8,f +1865,3039,72,4,f +1865,3039,15,8,f +1865,3040b,71,4,f +1865,3040b,4,8,f +1865,3040b,14,4,f +1865,3040b,72,4,f +1865,3040b,25,8,f +1865,3040b,15,8,f +1865,3040b,1,8,f +1865,3040b,2,4,f +1865,3041,4,4,f +1865,3043,4,4,f +1865,3065,36,28,f +1865,3065,33,28,f +1865,3065,47,16,f +1865,3066,36,4,f +1865,3298,1,8,f +1865,3298,15,8,f +1865,3298,4,8,f +1865,3622,2,4,f +1865,3622,72,4,f +1865,3660,1,4,f +1865,3660,4,4,f +1865,3660,15,4,f +1865,3665,4,8,f +1865,3665,71,4,f +1865,3665,25,8,f +1865,3665,1,8,f +1865,3665,15,8,f +1865,3665,72,4,f +1865,3665,14,4,f +1865,3665,2,4,f +1865,3710,15,4,f +1865,3710,1,4,f +1865,3710,4,4,f +1865,3747b,1,4,f +1865,3795,1,4,f +1865,3795,4,4,f +1865,3795,15,4,f +1865,3795,14,4,f +1865,3957a,1,4,f +1865,4286,1,8,f +1865,4286,4,8,f +1865,4286,15,8,f +1865,4286,72,4,f +1865,4287,72,4,f +1865,4287,15,8,f +1865,4287,1,8,f +1865,4287,4,8,f +1865,4495b,14,2,f +1868,11212,72,1,f +1868,16599,1,1,f +1868,18868a,41,1,f +1868,19981pr0028,41,1,f +1868,30162,72,2,f +1868,3023,71,3,f +1868,3069b,46,1,f +1868,3623,1,1,f +1868,3623,71,2,f +1868,3626cpr1407,14,1,f +1868,3666,71,1,f +1868,3710,1,1,f +1868,3794b,71,2,f +1868,3838,1,1,f +1868,3941,41,1,f +1868,3963,71,1,f +1868,41769,71,1,f +1868,41770,71,1,f +1868,4349,72,1,f +1868,4599b,71,1,t +1868,4599b,71,2,f +1868,49668,1,1,f +1868,54200,46,3,f +1868,54200,46,1,t +1868,59900,36,2,f +1868,61409,1,2,f +1868,6141,71,3,f +1868,6141,36,1,t +1868,6141,36,6,f +1868,6141,71,1,t +1868,63864,1,1,f +1868,970c00,1,1,f +1868,973pr2650c01,1,1,f +1869,2335px10,7,2,f +1869,2338,0,1,f +1869,2343,47,1,f +1869,2357,0,2,f +1869,2357,7,12,f +1869,2431,0,4,f +1869,2444,7,2,f +1869,2446,0,1,f +1869,2449,0,4,f +1869,2453a,7,6,f +1869,2454a,7,16,f +1869,2456,0,2,f +1869,2458,1,2,f +1869,2490px4,7,1,f +1869,2540,8,2,f +1869,2546,6,1,f +1869,2555,6,8,f +1869,2570,6,4,f +1869,2586p4g,7,3,f +1869,2594,0,1,f +1869,2921,8,2,f +1869,3002,0,2,f +1869,3004,19,6,f +1869,3004,7,61,f +1869,3004,4,1,f +1869,3004,15,1,f +1869,3005,7,4,f +1869,30055,6,3,f +1869,30072,2,1,f +1869,3008,7,11,f +1869,3009,7,6,f +1869,3010,7,3,f +1869,30101,8,1,f +1869,30102px2,47,1,f +1869,30145,0,4,f +1869,30153,34,1,f +1869,3020,0,1,f +1869,3020,4,2,f +1869,3021,1,3,f +1869,3022,7,1,f +1869,3022,0,4,f +1869,3023,0,6,f +1869,3023,4,2,f +1869,3023,15,1,f +1869,3023,7,2,f +1869,30237a,8,2,f +1869,30246,8,2,f +1869,30246,7,4,f +1869,30271px2,2,1,f +1869,30272,7,1,f +1869,30273,8,2,f +1869,30274,19,2,f +1869,30275,8,1,f +1869,3030,8,2,f +1869,3032,8,2,f +1869,3034,7,5,f +1869,3035,0,3,f +1869,3039,7,2,f +1869,3039,1,2,f +1869,3040b,7,2,f +1869,3062b,19,31,f +1869,3068b,0,1,f +1869,3068b,7,2,f +1869,3069b,7,2,f +1869,3069b,0,1,f +1869,32064b,0,1,f +1869,32074c01,0,1,f +1869,3245b,7,4,f +1869,3307,0,2,f +1869,3308,7,2,f +1869,3403,0,1,f +1869,3404,0,1,f +1869,3455,8,8,f +1869,3456,6,1,f +1869,3622,7,2,f +1869,3622,0,2,f +1869,3623,0,6,f +1869,3626bpr0895,15,1,f +1869,3626bpx67,14,1,f +1869,3626bpx68,14,1,f +1869,3626bpx69,14,1,f +1869,3626bpx70,14,1,f +1869,3626bpx71,14,1,f +1869,3626bpx72,14,1,f +1869,3626bpx73,14,1,f +1869,3659,4,2,f +1869,3660,19,6,f +1869,3666,7,2,f +1869,3673,7,1,f +1869,3678ap4h,4,1,f +1869,3679,7,2,f +1869,3680,1,2,f +1869,3684,6,2,f +1869,3684,0,6,f +1869,3685,1,16,f +1869,3688,1,5,f +1869,3700,8,2,f +1869,3701,0,2,f +1869,3701,1,2,f +1869,3702,0,2,f +1869,3731,1,2,f +1869,3749,7,6,f +1869,3794a,8,1,f +1869,3795,0,2,f +1869,3846p4e,7,1,f +1869,3847,8,2,f +1869,3848,7,1,f +1869,3848,0,2,f +1869,3849,0,1,f +1869,3937,8,3,f +1869,3938,0,3,f +1869,3957a,0,4,f +1869,4032a,4,1,f +1869,4032a,7,4,f +1869,4070,0,2,f +1869,4070,8,6,f +1869,4070,6,7,f +1869,4081b,1,1,f +1869,4085c,1,1,f +1869,4201,8,4,f +1869,4204,8,1,f +1869,4286,8,4,f +1869,4444,8,4,f +1869,4477,0,2,f +1869,4490,8,2,f +1869,4495a,1,4,f +1869,4495a,4,1,f +1869,4497,6,1,f +1869,4498,6,1,f +1869,4499,6,1,f +1869,4590,0,1,f +1869,4623,1,1,f +1869,4623,4,2,f +1869,4738a,6,1,f +1869,4739a,6,1,f +1869,4859,1,1,f +1869,4865a,0,7,f +1869,4865a,7,4,f +1869,4871,4,1,f +1869,57503,334,1,f +1869,57504,334,1,f +1869,57505,334,1,f +1869,57506,334,1,f +1869,59,383,3,f +1869,6019,0,1,f +1869,6046,6,1,f +1869,6056,7,2,f +1869,6066,7,3,f +1869,6091,0,4,f +1869,6112,7,3,f +1869,6122,0,2,f +1869,6125,4,1,f +1869,6126a,57,9,f +1869,6141,34,3,f +1869,6141,0,1,t +1869,6141,0,8,f +1869,6222,6,4,f +1869,6249,8,2,f +1869,6260,15,1,f +1869,6265,15,2,f +1869,6265,15,1,t +1869,6266,15,2,f +1869,6541,0,2,f +1869,71015,334,1,f +1869,75998pr0007,15,1,f +1869,76110c01,7,1,f +1869,87692,4,1,f +1869,87693,4,1,t +1869,87694,4,1,t +1869,87695,15,2,f +1869,87696,15,1,t +1869,970c00,0,1,f +1869,970c00pb013,0,1,f +1869,970c00pb014,0,1,f +1869,970c00pb015,0,1,f +1869,970c09pb01,7,1,f +1869,970x026,4,1,f +1869,973px114c01,4,1,f +1869,973px115c01,8,1,f +1869,973px116c01,8,1,f +1869,973px117c01,8,1,f +1869,973px118c01,7,1,f +1869,973px119c01,0,1,f +1869,973px120c01,0,1,f +1869,x58px1,15,1,f +1869,x95px1,1,1,f +1870,2377,0,4,f +1870,2431,0,1,f +1870,2449,0,2,f +1870,2878c01,0,4,f +1870,2920,0,2,f +1870,3001,0,2,f +1870,3009,0,1,f +1870,3010,0,5,f +1870,3020,0,2,f +1870,3021,7,4,f +1870,3023,0,1,f +1870,3031,7,2,f +1870,30367b,0,2,f +1870,3040b,0,2,f +1870,32028,0,16,f +1870,3455,0,4,f +1870,3678a,0,6,f +1870,3795,7,8,f +1870,3832,7,2,f +1870,4022,0,2,f +1870,4025,0,2,f +1870,4070,0,4,f +1870,4095,0,2,f +1870,4589,14,1,f +1870,4623,0,1,f +1870,4865a,0,2,f +1870,6019,0,4,f +1870,6584,0,1,f +1870,73092,0,2,f +1871,2412b,15,4,f +1871,2420,0,8,f +1871,2508,14,4,f +1871,2654,0,1,f +1871,2712,14,1,f +1871,2730,0,2,f +1871,2780,0,23,f +1871,2817,0,1,f +1871,2819,7,1,f +1871,2850a,47,4,f +1871,2851,216,4,f +1871,2852,7,4,f +1871,2853,216,2,f +1871,2853,7,2,f +1871,2854,4,1,f +1871,2995,0,4,f +1871,2996,15,4,f +1871,3021,0,1,f +1871,3022,0,6,f +1871,3023,15,4,f +1871,3023,14,2,f +1871,3023,0,16,f +1871,3040b,14,2,f +1871,3069b,0,3,f +1871,32000,0,6,f +1871,32001,0,2,f +1871,32002,8,18,f +1871,32009,1,2,f +1871,32013,1,4,f +1871,32017,0,2,f +1871,32017,14,4,f +1871,32018,1,2,f +1871,32028,0,2,f +1871,32034,1,4,f +1871,32039,14,1,f +1871,32039,1,4,f +1871,32062,0,8,f +1871,3623,15,8,f +1871,3623,0,8,f +1871,3647,7,4,f +1871,3650c,7,2,f +1871,3666,14,2,f +1871,3666,0,4,f +1871,3700,0,3,f +1871,3701,0,4,f +1871,3701,1,2,f +1871,3702,1,2,f +1871,3705,0,6,f +1871,3706,0,10,f +1871,3707,0,2,f +1871,3708,0,2,f +1871,3709,0,1,f +1871,3709,15,4,f +1871,3709,1,1,f +1871,3710,0,4,f +1871,3710,15,2,f +1871,3713,7,12,f +1871,3737,0,3,f +1871,3749,7,14,f +1871,3894,0,3,f +1871,3895,0,2,f +1871,4019,7,3,f +1871,4032a,0,1,f +1871,4265b,7,7,f +1871,4274,7,6,f +1871,4275b,0,4,f +1871,4276b,0,4,f +1871,4519,0,11,f +1871,4856a,15,2,f +1871,6536,7,7,f +1871,6536,1,4,f +1871,6538b,7,4,f +1871,6538b,15,1,f +1871,6538b,1,2,f +1871,6541,0,10,f +1871,6542a,8,3,f +1871,6553,14,1,f +1871,6558,0,12,f +1871,6571,7,2,f +1871,6573,8,1,f +1871,6587,8,4,f +1871,6589,7,10,f +1871,6629,0,6,f +1871,6629,1,8,f +1871,6632,7,2,f +1871,6632,15,4,f +1871,6632,0,2,f +1871,6632,1,10,f +1871,6642,8,1,f +1871,6644,0,2,f +1871,73129,7,2,f +1871,75535,14,2,f +1871,75535,0,3,f +1871,75c03,8,3,f +1871,75c15,1,2,f +1871,75c18,1,2,f +1871,75c20,1,1,f +1871,75c30,1,1,f +1871,flex08c05l,79,2,f +1873,10928,72,1,f +1873,11055,4,2,f +1873,11203,73,2,f +1873,11211,15,2,f +1873,11303,272,1,f +1873,11458,72,2,f +1873,11458,70,4,f +1873,11476,15,6,f +1873,11477,15,2,f +1873,11477,28,4,f +1873,11477,308,6,f +1873,13547,14,6,f +1873,13548,308,4,f +1873,13971,71,4,f +1873,14417,72,1,f +1873,14704,71,1,f +1873,14716,15,2,f +1873,15068,71,1,f +1873,15207,71,1,f +1873,15332,0,2,f +1873,15395,15,1,f +1873,15573,70,3,f +1873,15573,19,3,f +1873,15672,379,4,f +1873,15712,71,4,f +1873,18671,71,6,f +1873,22961,71,2,f +1873,2357,15,3,f +1873,2412b,72,5,f +1873,2412b,15,4,f +1873,2420,15,3,f +1873,2431,4,6,f +1873,2431,73,4,f +1873,2431,15,8,f +1873,2432,14,1,f +1873,2458,15,4,f +1873,2496,0,2,f +1873,2508,0,1,f +1873,2540,4,2,f +1873,26243,14,1,f +1873,2653,71,2,f +1873,2654,0,6,f +1873,2780,0,12,f +1873,2780,0,1,t +1873,30000,71,1,f +1873,3001,15,2,f +1873,3001,19,1,f +1873,3003,70,1,f +1873,3004,70,1,f +1873,3004,15,11,f +1873,3004,272,5,f +1873,3005,15,20,f +1873,3005,70,2,f +1873,3005,19,4,f +1873,30089,0,1,f +1873,3009,15,9,f +1873,3009,14,2,f +1873,3010,19,4,f +1873,3010,15,12,f +1873,30157,72,2,f +1873,3020,71,2,f +1873,3020,14,2,f +1873,3020,70,1,f +1873,3020,2,2,f +1873,3021,70,3,f +1873,3022,19,3,f +1873,3022,15,2,f +1873,3022,70,1,f +1873,3023,272,7,f +1873,3023,4,11,f +1873,3023,36,2,f +1873,3023,15,3,f +1873,3023,28,2,f +1873,3023,71,8,f +1873,3024,15,12,f +1873,3024,14,4,f +1873,3024,272,2,f +1873,3024,272,1,t +1873,3024,182,2,f +1873,3024,15,1,t +1873,3024,47,2,f +1873,3024,47,1,t +1873,3024,182,1,t +1873,3024,14,1,t +1873,3031,15,1,f +1873,3032,15,2,f +1873,30340,14,1,f +1873,3035,14,1,f +1873,3035,2,1,f +1873,30350a,70,1,f +1873,3036,272,4,f +1873,3036,2,2,f +1873,30374,0,4,f +1873,3038,272,8,f +1873,30383,0,2,f +1873,3039,272,9,f +1873,3040b,272,5,f +1873,3040b,308,2,f +1873,3040b,288,12,f +1873,30553,71,2,f +1873,30565,2,2,f +1873,3062b,0,1,f +1873,3062b,71,2,f +1873,3062b,70,6,f +1873,3068b,28,2,f +1873,3068b,15,3,f +1873,3068b,14,3,f +1873,3068bpr0136,72,1,f +1873,3068bpr0219b,19,1,f +1873,3069b,272,2,f +1873,3069b,28,2,f +1873,3069b,4,2,f +1873,3069b,40,1,f +1873,3069b,15,3,f +1873,3070b,4,10,f +1873,3070b,14,1,t +1873,3070b,70,1,t +1873,3070b,70,4,f +1873,3070b,14,1,f +1873,3070b,4,1,t +1873,32013,71,4,f +1873,32028,19,2,f +1873,32034,71,4,f +1873,32062,4,3,f +1873,32073,71,2,f +1873,3297,15,2,f +1873,33057,484,1,f +1873,33291,10,1,t +1873,33291,10,6,f +1873,3460,72,1,f +1873,3623,28,1,f +1873,3623,272,6,f +1873,3623,4,4,f +1873,3626bpr0677,14,1,f +1873,3626cpr0893,14,1,f +1873,3660,15,4,f +1873,3665,14,6,f +1873,3665,15,1,f +1873,3665,70,2,f +1873,3666,71,3,f +1873,3666,2,1,f +1873,3666,14,3,f +1873,3666,4,2,f +1873,3666,272,4,f +1873,3666,15,4,f +1873,3673,71,1,t +1873,3673,71,6,f +1873,3701,71,2,f +1873,3702,71,2,f +1873,3703,1,2,f +1873,3710,14,4,f +1873,3710,15,7,f +1873,3747a,15,2,f +1873,3794b,71,6,f +1873,3795,15,2,f +1873,3829c01,1,2,f +1873,3830,15,2,f +1873,3831,15,2,f +1873,3832,71,2,f +1873,3839b,0,1,f +1873,3899,14,2,f +1873,3937,14,2,f +1873,3938,0,2,f +1873,4032a,71,4,f +1873,4032a,288,4,f +1873,4070,19,4,f +1873,4070,70,2,f +1873,4079b,1,3,f +1873,4081b,0,2,f +1873,4162,272,1,f +1873,4162,71,4,f +1873,4162,4,3,f +1873,41879a,28,1,f +1873,4215b,15,2,f +1873,42511,27,1,f +1873,42610,71,2,f +1873,4274,1,1,f +1873,4274,1,1,t +1873,4286,15,2,f +1873,43093,1,5,f +1873,43722,71,1,f +1873,43723,71,1,f +1873,4449,2,1,f +1873,4449,70,1,f +1873,44570,71,1,f +1873,4477,15,2,f +1873,4510,71,1,f +1873,4519,14,1,f +1873,4528,179,1,f +1873,4533,72,1,f +1873,4599b,71,1,f +1873,4599b,71,1,t +1873,48336,0,4,f +1873,4865a,40,1,f +1873,4865b,19,3,f +1873,4871,70,1,f +1873,48729b,71,1,f +1873,48729b,71,1,t +1873,59443,14,2,f +1873,59900,46,3,f +1873,60470b,71,5,f +1873,60476,15,2,f +1873,60478,70,4,f +1873,60478,71,3,f +1873,60478,15,3,f +1873,60481,15,4,f +1873,60481,288,4,f +1873,60592,379,12,f +1873,60596,379,1,f +1873,60601,47,12,f +1873,60797c02,0,1,f +1873,60897,15,3,f +1873,6091,14,4,f +1873,61252,19,4,f +1873,61254,0,4,f +1873,6140,71,1,f +1873,61409,0,4,f +1873,6141,36,1,t +1873,6141,14,3,f +1873,6141,15,1,t +1873,6141,34,3,f +1873,6141,70,2,f +1873,6141,182,1,t +1873,6141,15,2,f +1873,6141,47,5,f +1873,6141,14,1,t +1873,6141,29,3,f +1873,6141,0,1,t +1873,6141,182,6,f +1873,6141,29,1,t +1873,6141,47,1,t +1873,6141,0,7,f +1873,6141,36,3,f +1873,6141,34,1,t +1873,6141,70,1,t +1873,6180,71,1,f +1873,6231,19,2,f +1873,6232,15,6,f +1873,62462,71,2,f +1873,63082,0,1,f +1873,63864,1,1,f +1873,63864,14,6,f +1873,63965,71,4,f +1873,64648,179,1,f +1873,6541,72,4,f +1873,6541,70,4,f +1873,6587,28,2,f +1873,6628,0,4,f +1873,72475,40,2,f +1873,73983,4,2,f +1873,85984,15,8,f +1873,87079,71,9,f +1873,87544,272,2,f +1873,87544,40,2,f +1873,87580,72,2,f +1873,87990,308,1,f +1873,88292,15,2,f +1873,92280,71,4,f +1873,92280,4,4,f +1873,92409,0,2,f +1873,92410,15,1,f +1873,92593,72,1,f +1873,92593,4,2,f +1873,92950,15,5,f +1873,95120,72,1,f +1873,96874,25,1,t +1873,970c00,272,1,f +1873,973pr2875c01,2,1,f +1873,973pr3010c01,4,1,f +1873,98100,0,1,f +1873,98138pr0008,15,1,t +1873,98138pr0008,15,2,f +1873,98138pr0012,179,1,t +1873,98138pr0012,179,1,f +1873,99206,70,1,f +1873,99207,71,4,f +1873,99780,4,2,f +1873,99780,72,5,f +1873,99781,0,2,f +1875,11477,71,2,f +1875,11618,322,1,t +1875,11618,322,1,f +1875,11816pr0002,78,1,f +1875,11816pr0003,78,1,f +1875,14719,71,1,f +1875,15712,71,4,f +1875,16925pr0005c01,19,1,f +1875,22885,71,2,f +1875,2357,320,2,f +1875,2412b,72,1,f +1875,2412b,71,4,f +1875,2420,15,3,f +1875,2420,71,1,f +1875,2420,320,2,f +1875,2431,30,1,f +1875,2431,322,8,f +1875,2431,320,1,f +1875,2436,71,1,f +1875,2445,71,1,f +1875,2456,320,2,f +1875,2486,14,2,f +1875,25279,272,1,f +1875,26518,9999,1,t +1875,2654,19,2,f +1875,2654,71,1,f +1875,26568,71,1,f +1875,3001,30,2,f +1875,3001,19,1,f +1875,3001,320,1,f +1875,3003,19,1,f +1875,3004,30,1,f +1875,3004,320,1,f +1875,3004,15,1,f +1875,3004pr0015,15,2,f +1875,3005,15,6,f +1875,3005,30,5,f +1875,3005,322,2,f +1875,3008,15,2,f +1875,3008,30,1,f +1875,3009,15,3,f +1875,3009,320,2,f +1875,3010,320,1,f +1875,3010,15,1,f +1875,3010,30,3,f +1875,30165,71,1,f +1875,3020,15,4,f +1875,3020,30,2,f +1875,3020,19,3,f +1875,3020,320,1,f +1875,3020,322,1,f +1875,3022,15,2,f +1875,3022,71,1,f +1875,3023,15,7,f +1875,3023,33,2,f +1875,3023,46,1,f +1875,3023,30,1,f +1875,3023,320,7,f +1875,3024,322,1,t +1875,3024,15,1,t +1875,3024,322,4,f +1875,3024,30,3,f +1875,3024,15,2,f +1875,3030,15,1,f +1875,3031,15,1,f +1875,3031,322,1,f +1875,3032,15,2,f +1875,3032,19,2,f +1875,3033,15,1,f +1875,30350a,70,1,f +1875,30374,14,1,f +1875,30377,71,1,f +1875,30414,71,2,f +1875,3068b,322,3,f +1875,3069b,322,6,f +1875,3069b,191,3,f +1875,3070b,322,1,t +1875,3070b,36,4,f +1875,3070b,36,1,t +1875,3070b,322,4,f +1875,3176,71,1,f +1875,32028,71,6,f +1875,3245b,15,6,f +1875,33009,26,1,f +1875,33172,25,1,f +1875,33183,10,1,f +1875,33183,10,1,t +1875,33243,15,6,f +1875,33291,26,4,f +1875,33291,26,1,t +1875,3460,15,1,f +1875,3460,320,2,f +1875,3460,322,4,f +1875,3460,30,1,f +1875,3622,15,10,f +1875,3622,30,3,f +1875,3623,320,2,f +1875,3623,15,3,f +1875,3623,322,4,f +1875,3659,15,2,f +1875,3665,322,4,f +1875,3666,72,6,f +1875,3666,320,2,f +1875,3666,322,3,f +1875,3666,15,3,f +1875,3710,71,3,f +1875,3710,322,4,f +1875,3710,15,3,f +1875,3710,72,5,f +1875,3747a,71,1,f +1875,3795,322,2,f +1875,3795,320,3,f +1875,3829c01,15,1,f +1875,3832,15,1,f +1875,4032a,72,1,f +1875,4081b,71,2,f +1875,4162,322,2,f +1875,4175,71,1,f +1875,4176,47,1,f +1875,4181,322,1,f +1875,4183,41,1,f +1875,4488,71,8,f +1875,48336,19,2,f +1875,48336,71,1,f +1875,4865b,19,2,f +1875,4865b,41,1,f +1875,50745,320,4,f +1875,52031,322,2,f +1875,52037,72,1,f +1875,54200,322,2,f +1875,54200,322,1,t +1875,59900,34,1,f +1875,59900,36,1,f +1875,6014b,15,8,f +1875,60478,71,2,f +1875,60581,47,3,f +1875,6091,320,4,f +1875,6091,322,2,f +1875,6112,15,2,f +1875,6141,46,2,f +1875,6141,46,1,t +1875,6179,15,1,f +1875,63864,322,3,f +1875,6636,30,1,f +1875,73983,71,2,f +1875,87079,19,1,f +1875,87079,71,1,f +1875,87079,26,1,f +1875,87079,191,1,f +1875,87552,15,2,f +1875,87552,47,4,f +1875,87697,0,8,f +1875,88072,4,1,f +1875,88292,30,2,f +1875,88930,26,1,f +1875,92254pr0004,70,1,f +1875,92255,308,1,f +1875,92456pr0069c01,78,1,f +1875,92456pr0106c01,78,1,f +1875,92593,322,5,f +1875,92818pr0001c01,272,1,f +1875,92950,15,3,f +1875,93086,30,1,f +1875,93095,15,2,f +1875,98138,47,4,f +1875,98138,71,2,f +1875,98138,297,2,f +1875,98138,47,1,t +1875,98138,71,1,t +1875,98138,297,1,t +1875,98393a,323,1,f +1875,98393b,323,1,f +1875,98393c,323,1,f +1875,98393d,323,1,f +1875,98393e,323,1,f +1875,98393f,323,1,f +1875,98393g,323,1,f +1875,98393h,323,1,f +1875,98393i,323,1,f +1875,98393j,323,1,f +1875,99781,71,1,f +1879,2780,0,8,f +1879,2825,0,2,f +1879,30374,0,1,f +1879,32013,135,2,f +1879,32039,0,6,f +1879,32039,191,1,f +1879,32062,0,16,f +1879,32073,71,2,f +1879,32123b,71,2,f +1879,32138,0,3,f +1879,32140,72,2,f +1879,32174,0,2,f +1879,32174,72,3,f +1879,32175,191,6,f +1879,32175,179,6,f +1879,32175,0,4,f +1879,32177,0,2,f +1879,32184,0,4,f +1879,32192,0,2,f +1879,32291,0,1,f +1879,32310,0,2,f +1879,32310,191,1,f +1879,32316,0,2,f +1879,32348,0,3,f +1879,32348,191,2,f +1879,32523,135,2,f +1879,33299a,135,1,f +1879,3705,0,5,f +1879,3708,0,2,f +1879,3713,71,9,f +1879,41669,135,10,f +1879,41677,135,4,f +1879,41677,0,8,f +1879,41677,72,2,f +1879,42003,72,2,f +1879,42003,0,2,f +1879,42074,179,1,f +1879,43093,1,15,f +1879,44036,179,3,f +1879,44807,179,2,f +1879,44813,135,1,f +1879,4519,71,12,f +1879,45275,179,2,f +1879,45749,0,4,f +1879,45749,72,1,f +1879,47296,72,1,f +1879,47296,191,2,f +1879,47298,191,2,f +1879,47298,179,2,f +1879,47326pat01,72,6,f +1879,47326pat03,0,3,f +1879,47328,72,2,f +1879,47330,0,1,f +1879,47332,0,1,f +1879,48729a,57,2,f +1879,50858,179,1,f +1879,50858,0,2,f +1879,50899pr0002,179,1,f +1879,50900,72,1,f +1879,50901,0,1,f +1879,50903,14,1,f +1879,50919,191,1,f +1879,50923,72,1,f +1879,6141,1000,1,f +1879,6536,0,5,f +1879,6536,72,1,f +1879,6538b,0,2,f +1879,6553,71,2,f +1879,6553,0,3,f +1879,6558,0,7,f +1879,6632,72,4,f +1879,6632,135,2,f +1879,78c02,179,2,f +1879,78c04,179,2,f +1880,15500,0,1,f +1880,27505,0,1,f +1880,30238,0,1,f +1880,3626cpr2009,15,1,f +1880,88646,0,1,f +1880,970c00pr1108,71,1,f +1880,973pr3519c01,0,1,f +1881,11153,15,2,f +1881,11437,0,2,f +1881,11438,4,1,f +1881,11439pat0001,46,1,f +1881,11439pat0002,47,1,f +1881,11439pat0003,33,1,f +1881,11439pat0004,34,1,f +1881,11691pr0002,0,1,f +1881,12825,0,8,f +1881,12825,4,1,f +1881,12825,15,1,f +1881,2357,4,2,f +1881,2412b,297,11,f +1881,2420,19,4,f +1881,2420,0,2,f +1881,2431,4,1,f +1881,2453b,4,10,f +1881,2454a,4,2,f +1881,2540,19,6,f +1881,2570,148,1,f +1881,2654,15,8,f +1881,2736,71,1,f +1881,298c02,15,1,t +1881,298c02,15,2,f +1881,3001,15,2,f +1881,3005,0,8,f +1881,3005,320,2,f +1881,3009,320,2,f +1881,3010,4,1,f +1881,30173b,0,1,f +1881,30173b,297,1,f +1881,30173b,0,1,t +1881,30173b,297,1,t +1881,3020,19,4,f +1881,3020,0,2,f +1881,3021,19,6,f +1881,3022,71,5,f +1881,3022,19,18,f +1881,3023,72,9,f +1881,30236,72,4,f +1881,3027,0,1,f +1881,3028,28,2,f +1881,3031,15,1,f +1881,3034,28,2,f +1881,3034,15,1,f +1881,30350b,0,2,f +1881,3036,72,1,f +1881,3036,0,1,f +1881,30374,297,1,f +1881,30377,15,1,t +1881,30377,15,1,f +1881,3039,19,2,f +1881,30414,4,2,f +1881,3048c,0,4,f +1881,3062b,46,2,f +1881,3068b,297,8,f +1881,3069b,0,8,f +1881,3070b,0,1,t +1881,3070b,0,2,f +1881,32062,4,4,f +1881,32073,71,2,f +1881,32348,15,2,f +1881,32474,0,1,f +1881,32556,19,2,f +1881,3460,19,4,f +1881,3626cpr0748,14,1,f +1881,3626cpr0781,0,1,f +1881,3626cpr1083,0,1,f +1881,3626cpr1084,0,1,f +1881,3626cpr1118,297,1,f +1881,3660,15,9,f +1881,3665,4,2,f +1881,3666,4,4,f +1881,3666,0,2,f +1881,3678b,15,4,f +1881,3713,4,1,t +1881,3713,4,1,f +1881,3795,19,1,f +1881,3832,19,2,f +1881,3894,15,2,f +1881,3937,4,1,f +1881,3938,15,1,f +1881,3960,320,4,f +1881,3961pr0001a,15,1,f +1881,4032a,72,3,f +1881,4032a,71,3,f +1881,4032a,15,7,f +1881,4070,15,4,f +1881,4085c,0,4,f +1881,4150,297,1,f +1881,41535,297,2,f +1881,4162,4,1,f +1881,41769,15,1,f +1881,41770,15,1,f +1881,41879a,0,1,f +1881,42610,71,4,f +1881,44375b,320,4,f +1881,44676,15,4,f +1881,44728,19,14,f +1881,44728,72,1,f +1881,4477,4,4,f +1881,4497,179,1,f +1881,4498,4,1,f +1881,4740,0,4,f +1881,47407,15,2,f +1881,47455,72,2,f +1881,47457,297,2,f +1881,48170,72,2,f +1881,48172,0,1,f +1881,48336,15,4,f +1881,48336,297,2,f +1881,48729b,0,4,f +1881,48729b,0,1,t +1881,48933,297,9,f +1881,50950,297,8,f +1881,52501,15,2,f +1881,53451,297,1,t +1881,53451,297,2,f +1881,54200,297,3,t +1881,54200,297,22,f +1881,55013,72,1,f +1881,57895pr0004,47,4,f +1881,57908,72,2,f +1881,57909a,72,2,f +1881,59349,15,2,f +1881,59443,4,1,f +1881,59443,14,1,f +1881,6020,0,2,f +1881,60475b,0,1,f +1881,60478,15,2,f +1881,60481,320,2,f +1881,60596,0,4,f +1881,6091,15,2,f +1881,61252,4,2,f +1881,6141,297,3,t +1881,6141,34,1,f +1881,6141,34,1,t +1881,6141,297,36,f +1881,62462,4,1,f +1881,6255,2,1,f +1881,6259,15,4,f +1881,63965,297,5,f +1881,63965,0,1,f +1881,64567,0,1,f +1881,64567,0,1,t +1881,64644,297,2,f +1881,6553,72,1,f +1881,6587,28,1,f +1881,70505stk01,9999,1,t +1881,73983,19,4,f +1881,75937,179,1,f +1881,76764,179,2,t +1881,76764,179,1,f +1881,85943,72,4,f +1881,85959pat0003,36,1,f +1881,87079,15,1,f +1881,87079,0,1,f +1881,87081,15,5,f +1881,91405,28,1,f +1881,92013,15,6,f +1881,92099,72,1,f +1881,92107,72,1,f +1881,92280,15,4,f +1881,92690,297,2,f +1881,92946,4,4,f +1881,92947,4,18,f +1881,92947,15,2,f +1881,92950,4,4,f +1881,93059,4,2,f +1881,93059,297,2,f +1881,93069,15,1,f +1881,96874,25,1,t +1881,970c00pr0278,0,1,f +1881,970c00pr0279,15,1,f +1881,970c00pr0422,0,1,f +1881,970c00pr0428,297,1,f +1881,973pr0808c01,15,1,f +1881,973pr1741c01,0,1,f +1881,973pr2187c01,72,2,f +1881,973pr2222c01,297,1,f +1881,98128,148,1,f +1881,98132,297,1,f +1881,98133,297,1,f +1881,98135,297,1,f +1881,98137,297,2,f +1881,98138,297,5,f +1881,98138,297,1,t +1881,98139,297,1,t +1881,98139,297,2,f +1881,98313,297,8,f +1881,99207,71,11,f +1881,99415,148,1,f +1881,99780,72,8,f +1881,99781,71,8,f +1882,2715,3,1,f +1882,2716,0,1,f +1882,2723,15,1,f +1882,2736,7,1,f +1882,2780,0,5,f +1882,2825,0,2,f +1882,2905,14,2,f +1882,2994,0,2,f +1882,2994,14,3,f +1882,32002,8,12,f +1882,32002,8,1,t +1882,32009,22,4,f +1882,32009,0,2,f +1882,32012,22,1,f +1882,32013,0,1,f +1882,32014,0,3,f +1882,32015,14,1,f +1882,32017,0,4,f +1882,32039,0,6,f +1882,32039,7,2,f +1882,32056,22,4,f +1882,32062,0,15,f +1882,32065,0,3,f +1882,32065,3,6,f +1882,32068,0,2,f +1882,32073,0,2,f +1882,32123b,7,1,t +1882,32123b,7,6,f +1882,3482,0,3,f +1882,3483,0,3,f +1882,3647,7,1,f +1882,3648a,7,1,f +1882,3673,7,2,f +1882,3705,0,11,f +1882,3706,0,4,f +1882,3707,0,2,f +1882,3713,7,21,f +1882,3749,7,11,f +1882,4032a,0,8,f +1882,4150,0,4,f +1882,4519,0,10,f +1882,6536,7,3,f +1882,6536,0,2,f +1882,6538b,7,4,f +1882,6553,0,1,f +1882,6553,14,6,f +1882,6558,0,1,f +1882,6578,0,5,f +1882,6629,0,5,f +1882,6629,3,1,f +1882,6632,3,2,f +1882,6632,0,5,f +1882,75535,3,1,f +1882,75535,0,3,f +1882,76110c01,14,1,f +1882,78c10,0,2,f +1882,78c12,3,1,f +1882,bb298c82,15,1,f +1882,rb00168,0,4,f +1882,rb00168,0,2,t +1882,tech001,9999,1,f +1884,2412b,0,30,f +1884,2412b,14,6,f +1884,2431,14,2,f +1884,2431,71,3,f +1884,2445,71,5,f +1884,2730,14,6,f +1884,2736,71,2,f +1884,2780,0,5,t +1884,2780,0,156,f +1884,2817,71,6,f +1884,2825,71,4,f +1884,2850a,71,6,f +1884,2851,14,6,f +1884,2852,71,6,f +1884,2853,71,2,f +1884,2854,72,2,f +1884,2905,0,6,f +1884,2905,14,24,f +1884,3020,14,4,f +1884,3021,14,4,f +1884,3021,71,2,f +1884,3022,14,4,f +1884,3022,71,1,f +1884,3023,14,6,f +1884,3023,47,2,f +1884,3029,71,1,f +1884,3031,71,2,f +1884,3031,14,1,f +1884,3034,71,1,f +1884,3034,14,2,f +1884,3035,72,1,f +1884,3036,72,1,f +1884,3069b,4,2,f +1884,3069b,1,2,f +1884,32002,72,12,f +1884,32002,72,2,t +1884,32013,0,6,f +1884,32017,14,16,f +1884,32028,14,2,f +1884,32034,0,13,f +1884,32039,0,4,f +1884,32054,71,26,f +1884,32054,0,6,f +1884,32054,4,4,f +1884,32056,71,12,f +1884,32062,4,15,f +1884,32063,0,4,f +1884,32065,0,6,f +1884,32073,71,26,f +1884,32123b,71,25,f +1884,32123b,71,3,t +1884,32123b,14,6,f +1884,32123b,14,2,t +1884,32140,14,8,f +1884,32184,71,22,f +1884,32269,71,3,f +1884,32270,0,4,f +1884,32271,71,4,f +1884,32278,14,11,f +1884,32278,0,4,f +1884,32291,0,2,f +1884,32316,0,8,f +1884,32316,14,2,f +1884,32316,1,1,f +1884,32333,71,2,f +1884,32449,1,2,f +1884,32449,0,16,f +1884,32449,14,6,f +1884,32523,14,16,f +1884,32524,71,5,f +1884,32524,14,6,f +1884,32525,71,3,f +1884,32525,14,4,f +1884,32525,0,18,f +1884,32526,14,2,f +1884,32526,1,2,f +1884,32526,0,6,f +1884,32529,14,4,f +1884,32530,72,1,f +1884,32531,71,1,f +1884,32532,14,2,f +1884,32556,71,8,f +1884,32557,0,6,f +1884,3460,14,5,f +1884,3647,71,2,f +1884,3648b,71,2,f +1884,3665,14,2,f +1884,3666,71,1,f +1884,3673,71,1,t +1884,3673,71,2,f +1884,3700,14,4,f +1884,3702,0,2,f +1884,3703,14,7,f +1884,3705,0,15,f +1884,3707,0,2,f +1884,3708,0,5,f +1884,3710,14,4,f +1884,3713,71,40,f +1884,3713,71,2,t +1884,3737,0,3,f +1884,3749,19,3,f +1884,3749,19,3,t +1884,3795,14,2,f +1884,3795,0,1,f +1884,3894,0,4,f +1884,3894,14,9,f +1884,3895,14,2,f +1884,3941,14,8,f +1884,3941,0,6,f +1884,4019,71,8,f +1884,40490,71,2,f +1884,40490,0,2,f +1884,40490,14,9,f +1884,4150,14,2,f +1884,4162,14,7,f +1884,41677,1,16,f +1884,41677,0,1,f +1884,41769,14,3,f +1884,41770,14,3,f +1884,42003,14,17,f +1884,42023,14,3,f +1884,42610,71,16,f +1884,4274,1,16,f +1884,4274,1,2,t +1884,4282,14,2,f +1884,4282,71,1,f +1884,43093,1,76,f +1884,43722,14,1,f +1884,43723,14,1,f +1884,43857,14,6,f +1884,43898,0,2,f +1884,44294,71,8,f +1884,44352,0,1,f +1884,44353,0,1,f +1884,4519,71,44,f +1884,4716,71,2,f +1884,47397,71,1,f +1884,47398,71,1,f +1884,4740,0,1,f +1884,48989,71,8,f +1884,50304,0,1,f +1884,50304,14,2,f +1884,50305,0,1,f +1884,50305,14,2,f +1884,53178,14,4,f +1884,55013,72,3,f +1884,55615,71,2,f +1884,57519,14,4,f +1884,58119,71,1,f +1884,58120,71,2,f +1884,58121,71,2,f +1884,58122,71,1,f +1884,58123a,71,2,f +1884,59426,72,5,f +1884,6141,36,1,t +1884,6141,36,6,f +1884,6178,71,2,f +1884,6179,71,6,f +1884,6180,71,2,f +1884,6536,14,12,f +1884,6536,71,23,f +1884,6538b,71,19,f +1884,6542a,72,2,f +1884,6558,0,75,f +1884,6587,72,11,f +1884,6589,71,8,f +1884,6629,14,8,f +1884,6632,14,2,f +1884,6632,0,14,f +1884,6636,14,10,f +1884,76244,15,2,f +1884,88323,72,84,f +1884,9244,71,1,f +1886,13787pr0002,14,1,f +1886,3003,4,1,f +1886,3068bpr0009,4,1,f +1886,3626cpr1238,14,1,f +1886,41879a,10,1,f +1886,88646,0,1,f +1886,973pr2410c01,2,1,f +1886,98382pr0002,70,1,f +1887,3149c01,0,4,f +1887,3324c01,0,2,f +1889,2542,6,2,f +1889,2570,8,2,f +1889,2586p4d,15,1,f +1889,3020,0,1,f +1889,3626bp35,14,1,f +1889,3710,0,2,f +1889,3794a,0,1,f +1889,3844,8,1,f +1889,4589,0,2,f +1889,4855,4,2,f +1889,4859,0,2,f +1889,4871,4,1,f +1889,6019,0,1,f +1889,970x021,0,1,f +1889,973p4dc01,4,1,f +1890,3001a,15,20,f +1890,3001a,1,20,f +1890,3001a,0,12,f +1890,3001a,4,20,f +1890,3001a,14,20,f +1890,3001a,47,4,f +1890,3002a,4,4,f +1890,3002a,1,4,f +1890,3002a,15,4,f +1890,3002a,14,4,f +1890,3002a,0,4,f +1890,3003,1,8,f +1890,3003,15,8,f +1890,3003,0,8,f +1890,3003,4,8,f +1890,3003,14,8,f +1890,3003,47,4,f +1890,3004,15,8,f +1890,3004,1,8,f +1890,3004,14,8,f +1890,3004,0,4,f +1890,3004,4,8,f +1890,3007,4,4,f +1890,3008,15,4,f +1890,3008,1,4,f +1890,3009,14,4,f +1890,3010,15,4,f +1890,3021,0,4,f +1890,3027,0,1,f +1890,3033,4,2,f +1890,3034,14,4,f +1890,3035,1,2,f +1890,3039,1,4,f +1890,3039,0,2,f +1890,3039,4,4,f +1890,3081cc01,4,4,f +1890,3137c01,0,4,f +1890,3144,79,1,f +1890,3149c01,4,1,f +1890,3185,4,6,f +1890,3297,1,10,f +1890,3297,4,10,f +1890,3298,1,4,f +1890,3298,4,4,f +1890,3299,4,2,f +1890,3299,1,2,f +1890,3300,1,2,f +1890,3300,4,2,f +1890,3307,4,1,f +1890,3308,15,2,f +1890,3471,2,2,f +1890,3483,0,4,f +1890,3579,4,2,f +1890,3581,4,8,f +1890,3582,1,8,f +1890,3612,15,2,f +1890,3612,1,2,f +1890,3612,0,2,f +1890,3612,4,2,f +1890,3613,0,2,f +1890,3613,15,2,f +1890,3613,4,2,f +1890,3613,1,2,f +1890,3614a,14,8,f +1890,3641,0,8,f +1890,3660,1,4,f +1890,3660,0,2,f +1890,3660,4,4,f +1890,420,14,1,f +1890,421,14,1,f +1890,453cc01,4,4,f +1890,685p01,14,1,f +1890,685px2,14,1,f +1890,685px3,14,1,f +1890,685px4,14,1,f +1890,700ed2,2,2,f +1890,7039,4,4,f +1890,7049b,0,2,f +1890,792c03,15,1,f +1890,792c03,4,1,f +1890,792c03,0,1,f +1890,792c03,1,1,f +1890,7930,1,2,f +1890,x196,0,1,f +1890,x197,6,2,f +1890,x197bun,7,1,f +1890,x407,4,1,f +1890,x407,0,1,f +1891,3001a,47,1,f +1891,3001apb06,15,2,f +1891,3010,4,2,f +1891,3020,4,2,f +1891,3021,4,1,f +1891,3022,4,1,f +1891,3035,4,1,f +1891,3039,4,1,f +1891,3039,47,2,f +1891,3460,7,6,f +1891,3461,7,1,f +1891,3462,4,1,f +1891,3480,7,1,f +1891,3481,4,1,f +1891,3660,4,2,f +1891,3660,15,4,f +1891,3666,4,2,f +1891,3666,7,2,f +1891,3710,4,1,f +1891,3795,4,1,f +1893,2456,1,4,f +1893,2456,4,4,f +1893,2456,14,4,f +1893,2456,15,4,f +1893,3001,14,8,f +1893,3001,1,8,f +1893,3001,2,4,f +1893,3001,15,8,f +1893,3001,0,4,f +1893,3001,4,8,f +1893,3002,4,16,f +1893,3002,0,8,f +1893,3002,14,16,f +1893,3002,15,16,f +1893,3002,1,16,f +1893,3002,2,8,f +1893,3003,4,28,f +1893,3003,14,28,f +1893,3003,1,28,f +1893,3003,2,12,f +1893,3003,0,12,f +1893,3003,15,28,f +1893,3004,2,20,f +1893,3004,0,20,f +1893,3004,73,16,f +1893,3004,1,40,f +1893,3004,4,40,f +1893,3004,25,16,f +1893,3004,27,16,f +1893,3004,14,40,f +1893,3004,15,40,f +1893,3005,15,20,f +1893,3005,14,20,f +1893,3005,25,8,f +1893,3005,27,8,f +1893,3005,0,12,f +1893,3005,4,20,f +1893,3005,1,20,f +1893,3005,73,8,f +1893,3005,2,12,f +1893,3007,15,2,f +1893,3007,0,2,f +1893,3007,4,2,f +1893,3007,1,2,f +1893,3007,14,2,f +1893,3008,0,2,f +1893,3008,1,4,f +1893,3008,2,2,f +1893,3008,4,4,f +1893,3008,15,4,f +1893,3008,14,4,f +1893,3009,0,4,f +1893,3009,15,8,f +1893,3009,4,8,f +1893,3009,2,4,f +1893,3009,14,8,f +1893,3009,1,8,f +1893,3010,4,4,f +1893,3010,14,4,f +1893,3010,1,4,f +1893,3010,2,4,f +1893,3010,0,4,f +1893,3010,15,4,f +1893,3020,14,2,f +1893,3020,4,2,f +1893,3020,2,2,f +1893,3020,0,2,f +1893,3020,1,2,f +1893,3020,15,2,f +1893,3021,15,2,f +1893,3021,4,2,f +1893,3021,1,2,f +1893,3021,0,2,f +1893,3021,14,2,f +1893,3021,2,2,f +1893,3022,2,2,f +1893,3022,0,2,f +1893,3022,4,2,f +1893,3022,1,2,f +1893,3022,14,2,f +1893,3022,15,2,f +1893,3039,4,4,f +1893,3039,0,4,f +1893,3039,2,4,f +1893,3039,15,4,f +1893,3039,14,4,f +1893,3039,1,4,f +1893,3040b,1,4,f +1893,3040b,2,4,f +1893,3040b,15,4,f +1893,3040b,4,4,f +1893,3040b,0,4,f +1893,3040b,14,4,f +1893,3622,15,8,f +1893,3622,1,8,f +1893,3622,14,8,f +1893,3622,2,8,f +1893,3622,4,8,f +1893,3622,0,8,f +1893,6111,2,2,f +1893,6111,4,2,f +1893,6111,15,2,f +1893,6111,14,2,f +1893,6111,0,2,f +1894,2352,4,6,f +1894,2577,1,8,f +1894,3001pr1,14,4,f +1894,3003pe2,14,8,f +1894,3003pe4,15,4,f +1894,3003pe5,15,4,f +1894,3185,15,8,f +1894,3483,0,16,f +1894,4130,4,4,f +1894,4131,15,4,f +1894,4132,4,8,f +1894,4133,15,8,f +1894,4180c02,0,8,f +1894,4730,1,4,f +1894,4743,4,3,f +1894,4744,14,3,f +1894,4745,14,4,f +1894,4747,4,2,f +1894,bfp001,9999,2,f +1894,bfp002,9999,2,f +1895,2780,0,1,t +1895,2780,0,7,f +1895,32013,0,1,f +1895,32062,4,2,f +1895,32073,71,2,f +1895,32138,0,2,f +1895,32174,143,9,f +1895,32523,27,4,f +1895,32524,0,2,f +1895,3713,71,4,f +1895,3713,7,1,t +1895,42003,0,4,f +1895,43093,1,8,f +1895,44033,135,2,f +1895,4519,71,10,f +1895,47297,27,4,f +1895,47306,27,2,f +1895,47326pat03,0,4,f +1895,47330,0,1,f +1895,48729b,0,2,t +1895,50898,0,4,f +1895,50923,72,1,f +1895,53451,27,9,f +1895,53451,135,2,f +1895,53451,27,1,t +1895,53451,135,1,t +1895,53548,27,2,f +1895,53562pat0003,272,1,f +1895,53568,27,2,f +1895,53585,0,2,f +1895,53586,135,2,f +1895,55013,72,2,f +1895,57548pat0002,41,1,f +1895,57555,46,2,f +1895,57556,135,1,f +1895,57560pat0001,143,6,f +1895,57562pat0002,41,2,f +1895,57564,135,1,f +1895,58176,36,2,f +1895,58176,36,1,t +1895,6538b,27,2,f +1895,6558,0,2,f +1898,30375,1,1,f +1898,30377,3,2,f +1898,30530,1,1,f +1898,x117px3,3,1,f +1900,30361pr0011b,15,1,f +1900,30362,15,2,f +1900,98100pr0003,15,1,f +1901,2412b,25,8,f +1901,2412b,0,6,f +1901,2431,25,2,f +1901,2431,72,1,f +1901,2431,0,2,f +1901,2444,71,3,f +1901,2445,0,1,f +1901,2654,47,2,f +1901,2654,46,2,f +1901,2736,71,1,f +1901,2741,0,1,f +1901,2780,0,317,f +1901,2780,0,7,t +1901,2817,0,2,f +1901,2850a,71,4,f +1901,2851,14,4,f +1901,2852,71,4,f +1901,2853,71,2,f +1901,2854,72,3,f +1901,3020,0,2,f +1901,3021,0,4,f +1901,3023,25,2,f +1901,3023,0,2,f +1901,3023,47,8,f +1901,3023,182,2,f +1901,3023,71,2,f +1901,30395,72,1,f +1901,3068b,25,1,f +1901,3069b,0,2,f +1901,32000,0,9,f +1901,32002,72,1,t +1901,32002,72,13,f +1901,32005b,0,2,f +1901,32012,72,1,f +1901,32013,14,1,f +1901,32013,4,1,f +1901,32013,0,22,f +1901,32014,0,9,f +1901,32016,0,3,f +1901,32017,71,4,f +1901,32034,4,1,f +1901,32034,0,13,f +1901,32039,0,15,f +1901,32054,0,49,f +1901,32054,4,18,f +1901,32056,0,4,f +1901,32062,4,62,f +1901,32065,71,2,f +1901,32072,14,2,f +1901,32073,71,24,f +1901,32123b,71,16,f +1901,32123b,71,2,t +1901,32123b,14,1,t +1901,32123b,14,27,f +1901,32140,0,15,f +1901,32140,4,4,f +1901,32140,71,2,f +1901,32184,4,5,f +1901,32184,0,4,f +1901,32187,71,6,f +1901,32192,0,5,f +1901,32250,4,2,f +1901,32269,0,1,f +1901,32269,19,2,f +1901,32270,0,3,f +1901,32271,4,6,f +1901,32271,0,2,f +1901,32278,25,7,f +1901,32278,0,16,f +1901,32278,72,1,f +1901,32278,4,4,f +1901,32291,0,12,f +1901,32316,71,12,f +1901,32316,4,5,f +1901,32316,0,12,f +1901,32316,1,2,f +1901,32348,0,4,f +1901,32348,4,2,f +1901,32449,0,8,f +1901,32494,71,3,f +1901,32523,0,8,f +1901,32523,14,4,f +1901,32523,1,2,f +1901,32523,71,6,f +1901,32524,0,24,f +1901,32524,1,4,f +1901,32524,71,2,f +1901,32524,4,6,f +1901,32525,72,19,f +1901,32526,0,27,f +1901,32526,1,2,f +1901,32526,72,2,f +1901,32526,4,12,f +1901,32526,25,8,f +1901,32556,19,11,f +1901,32557,71,7,f +1901,32557,0,2,f +1901,33299a,0,2,f +1901,3647,72,4,f +1901,3648b,72,2,f +1901,3666,0,2,f +1901,3705,0,38,f +1901,3706,0,4,f +1901,3707,0,9,f +1901,3710,25,6,f +1901,3713,4,18,f +1901,3713,71,9,f +1901,3713,4,2,t +1901,3713,71,2,t +1901,3737,0,1,f +1901,3749,19,2,f +1901,3794b,71,1,f +1901,3795,0,4,f +1901,3894,0,1,f +1901,3895,0,1,f +1901,3941,0,4,f +1901,3941,46,2,f +1901,4032a,0,6,f +1901,40490,4,2,f +1901,40490,0,19,f +1901,41239,0,15,f +1901,41239,25,3,f +1901,41239,72,1,f +1901,4162,0,5,f +1901,41677,71,6,f +1901,41677,1,16,f +1901,41678,71,16,f +1901,42003,0,26,f +1901,42003,72,4,f +1901,4274,1,13,f +1901,4274,1,3,t +1901,4282,0,3,f +1901,43093,1,103,f +1901,43857,0,2,f +1901,44294,71,13,f +1901,44728,0,2,f +1901,4477,0,2,f +1901,44772,71,4,f +1901,44809,71,5,f +1901,4519,71,72,f +1901,45590,0,4,f +1901,4697b,71,1,t +1901,4697b,71,2,f +1901,4716,71,2,f +1901,47223a,72,4,f +1901,47225,14,2,f +1901,48989,71,4,f +1901,50163,71,1,f +1901,50950,25,10,f +1901,5102c03,1,1,f +1901,5102c10,1,3,f +1901,5102c14,1,1,f +1901,5102c21,1,1,f +1901,5102c24,1,1,f +1901,5102c33,71,1,f +1901,5102c33,0,1,f +1901,5102c40,1,1,f +1901,5102c54,0,1,f +1901,5102c54,71,1,f +1901,5102c80,71,1,f +1901,5102c80,0,1,f +1901,54200,182,6,f +1901,54200,25,1,t +1901,54200,182,1,t +1901,54200,25,6,f +1901,55013,72,4,f +1901,56823c50,0,1,f +1901,58119,71,1,f +1901,58120,71,1,f +1901,59426,72,3,f +1901,59443,4,5,f +1901,59443,0,29,f +1901,59443,71,16,f +1901,60479,0,1,f +1901,60481,0,2,f +1901,60483,71,24,f +1901,60484,0,6,f +1901,60484,71,8,f +1901,60485,71,9,f +1901,6141,47,1,t +1901,6141,36,2,f +1901,6141,182,2,f +1901,6141,36,1,t +1901,6141,182,1,t +1901,6141,47,2,f +1901,61678,25,8,f +1901,61678,0,2,f +1901,61903,71,7,f +1901,62462,25,6,f +1901,62462,14,4,f +1901,62531,25,2,f +1901,62821,72,2,f +1901,63869,71,8,f +1901,64178,71,1,f +1901,64179,71,4,f +1901,64391,25,1,f +1901,64392,25,1,f +1901,64682,25,1,f +1901,64683,25,1,f +1901,64782,25,1,f +1901,64782,71,12,f +1901,6536,72,4,f +1901,6536,0,40,f +1901,6538b,19,2,f +1901,6539,4,2,f +1901,6542b,72,6,f +1901,6558,1,166,f +1901,6573,72,1,f +1901,6587,28,11,f +1901,6589,19,9,f +1901,6589,19,1,t +1901,6628,0,7,f +1901,6629,1,4,f +1901,6629,0,6,f +1901,6632,4,2,f +1901,6632,0,24,f +1901,6636,0,1,f +1901,6641,4,2,f +1901,74981,14,1,f +1901,76244,15,2,f +1901,8110stk01,9999,1,t +1901,8110stk02,9999,1,t +1901,87079,0,3,f +1901,87082,71,11,f +1901,87083,72,14,f +1901,87761,0,1,f +1901,92906,72,3,f +1901,92907,0,12,f +1901,92908,71,4,f +1901,92909,72,4,f +1901,92910,71,2,f +1901,92911,72,2,f +1901,92912,0,4,f +1901,94925,71,21,f +1901,95292c01,14,4,f +1901,99021,1,2,f +1901,99773,71,2,f +1901,99773,72,6,f +1901,99798,71,1,f +1902,265bc01,14,6,f +1902,2723pr01,15,2,f +1902,2780,0,28,f +1902,2815,0,2,f +1902,3004,46,2,f +1902,3004,34,2,f +1902,3004,36,2,f +1902,3021,0,9,f +1902,3022,0,3,f +1902,3023,0,30,f +1902,3032,0,2,f +1902,3034,0,2,f +1902,3035,0,1,f +1902,3040b,14,4,f +1902,3069b,0,12,f +1902,3139,0,1,f +1902,3403c01,0,1,f +1902,3460,0,7,f +1902,3464,4,1,f +1902,3623,0,4,f +1902,3647,7,14,f +1902,3648a,7,6,f +1902,3649,7,2,f +1902,3650a,7,4,f +1902,3651,7,8,f +1902,3665,14,8,f +1902,3666,0,8,f +1902,367,1,1,f +1902,3673,7,10,f +1902,3679,7,1,f +1902,3680,0,1,f +1902,3700,14,14,f +1902,3701,14,10,f +1902,3702,14,14,f +1902,3703,14,14,f +1902,3704,0,4,f +1902,3705,0,3,f +1902,3705b,0,2,f +1902,3706,0,7,f +1902,3707,0,4,f +1902,3708,0,3,f +1902,3709,0,8,f +1902,3710,0,15,f +1902,3713,7,20,f +1902,3737,0,6,f +1902,3738,0,6,f +1902,3743,7,28,f +1902,3749,7,6,f +1902,3795,0,4,f +1902,3832,0,8,f +1902,3894,14,11,f +1902,3895,14,9,f +1902,3941,0,4,f +1902,3956,0,1,f +1902,4019,7,4,f +1902,4143,7,2,f +1902,4162,0,8,f +1902,4185,7,4,f +1902,4265a,7,10,f +1902,4273b,7,2,f +1902,4274,7,4,f +1902,4477,0,8,f +1902,4519,0,2,f +1902,4698,7,6,f +1902,4716,7,4,f +1902,4962,1,1,f +1902,4963,1,1,f +1902,6216b,7,3,f +1902,766c96,7,8,f +1902,8,7,1,f +1902,9244,7,2,f +1902,rb00168,0,4,f +1902,rb00170,0,4,f +1902,x1161cx1,0,2,f +1902,x1165,1,1,f +1902,x1166,1,1,f +1903,3034,7,2,f +1903,3245bp01,0,1,f +1903,4707c01,7,1,f +1903,70026,7,1,f +1903,766c01,7,1,f +1903,x466,7,1,f +1904,3022,14,40,f +1904,728,7,1,f +1904,729,47,1,f +1907,2357,8,1,f +1907,2377,0,13,f +1907,2412b,0,4,f +1907,2436,4,2,f +1907,2456,0,1,f +1907,2540,0,1,f +1907,2555,0,8,f +1907,2877,4,10,f +1907,2878c01,0,2,f +1907,2920,0,2,f +1907,2921,4,10,f +1907,3004,8,1,f +1907,3005,4,12,f +1907,3009,4,2,f +1907,3010,4,2,f +1907,3020,8,2,f +1907,3021,8,2,f +1907,3022,6,1,f +1907,3023,4,2,f +1907,30236,4,2,f +1907,3027,0,1,f +1907,3032,4,1,f +1907,3034,8,1,f +1907,30374,0,3,f +1907,3062b,0,4,f +1907,3062b,7,4,f +1907,3069bp0a,0,2,f +1907,32028,0,4,f +1907,32083,0,3,f +1907,3297,0,2,f +1907,3622,4,2,f +1907,3623,14,2,f +1907,3666,4,5,f +1907,3710,4,5,f +1907,3710,14,1,f +1907,3861b,4,1,f +1907,4022,0,2,f +1907,4070,8,4,f +1907,4079,6,1,f +1907,4175,0,2,f +1907,4477,14,2,f +1907,4477,4,2,f +1907,4510,0,4,f +1907,4529,0,1,f +1907,4862,41,13,f +1907,6020,0,1,f +1907,6112,4,2,f +1907,6141,7,4,f +1907,6141,8,1,t +1907,6141,7,1,t +1907,6141,8,4,f +1907,6141,36,3,f +1907,6141,36,1,t +1907,6583,0,2,f +1907,73092,0,2,f +1908,32171,89,1,f +1910,2453a,15,4,f +1910,2454a,15,2,f +1910,2465,15,1,f +1910,2540,7,1,f +1910,2610,14,2,f +1910,298c02,15,1,f +1910,3001,15,1,f +1910,3003,7,1,f +1910,3004,15,1,f +1910,3006,15,1,f +1910,3008,7,1,f +1910,30089,0,1,f +1910,3009,7,1,f +1910,3009,15,2,f +1910,3010,15,1,f +1910,3023,7,2,f +1910,3024,15,2,f +1910,3027,7,1,f +1910,3040b,15,2,f +1910,3070bp04,14,2,f +1910,3185,13,2,f +1910,3455,15,3,f +1910,3626bp02,14,1,f +1910,3626bp03,14,1,f +1910,3710,7,3,f +1910,3710,14,1,f +1910,3710,15,2,f +1910,3741,2,1,f +1910,3742,14,3,f +1910,3742,14,1,t +1910,3794a,15,2,f +1910,3795,15,1,f +1910,3899,47,2,f +1910,3901,0,1,f +1910,3941,1,1,f +1910,4079,5,4,f +1910,4085c,7,2,f +1910,4095,15,2,f +1910,4287,15,2,f +1910,4476b,15,2,f +1910,4495b,2,2,f +1910,4515p02,15,2,f +1910,4528,0,1,f +1910,4533,14,1,f +1910,4599a,13,1,f +1910,4876,5,1,f +1910,6003,7,1,f +1910,6020,8,1,f +1910,6091,15,2,f +1910,6093,6,1,f +1910,6112,7,1,f +1910,6140,7,2,f +1910,6228b,7,1,f +1910,92410,15,1,f +1910,970x001,14,1,f +1910,970x026,14,1,f +1910,973pb0038c01,13,1,f +1910,973pr1204c01,15,1,f +1912,194cx1,2,1,f +1912,2412b,42,7,f +1912,2421,7,1,f +1912,2431,0,2,f +1912,2431,15,2,f +1912,2432,15,5,f +1912,2436,15,1,f +1912,2446,8,1,f +1912,2446px5,15,1,f +1912,2446px9,4,1,f +1912,2447,41,1,f +1912,2447,0,2,f +1912,2458,4,2,f +1912,2460,7,1,f +1912,2479,0,1,f +1912,2507,42,1,f +1912,2508,15,1,f +1912,2555,15,2,f +1912,2569,42,2,f +1912,2921,4,2,f +1912,298c02,15,1,f +1912,3001,15,1,f +1912,3001,0,2,f +1912,30027a,15,12,f +1912,30028,0,12,f +1912,3004,0,2,f +1912,3005,4,2,f +1912,3009,0,2,f +1912,3010,0,5,f +1912,30119,0,4,f +1912,30180,15,2,f +1912,3020,0,2,f +1912,3020,15,1,f +1912,3020,4,4,f +1912,3021,15,3,f +1912,3021,7,2,f +1912,3021,0,1,f +1912,3022,4,3,f +1912,3023,0,9,f +1912,3023,15,5,f +1912,3024,36,1,f +1912,3024,34,1,f +1912,3024,46,6,f +1912,3034,15,1,f +1912,3034,4,2,f +1912,3038,0,2,f +1912,3039,15,2,f +1912,3039pr0005,15,1,f +1912,3046a,0,2,f +1912,3068b,15,1,f +1912,3068bp70,15,1,f +1912,3069bp68,15,1,f +1912,3070b,0,2,f +1912,3176,7,1,f +1912,3460,4,2,f +1912,3460,0,2,f +1912,3623,15,1,f +1912,3623,0,4,f +1912,3626bp03,14,1,f +1912,3626bp7b,14,1,f +1912,3626bpx88,14,1,f +1912,3679,7,1,f +1912,3680,0,1,f +1912,3710,15,3,f +1912,3710,4,3,f +1912,3730,0,1,f +1912,3788,15,3,f +1912,3794a,7,4,f +1912,3795,15,1,f +1912,3829c01,7,1,f +1912,3870,7,3,f +1912,3900,15,2,f +1912,3933,0,1,f +1912,3934,0,1,f +1912,3960,0,1,f +1912,3962b,0,1,f +1912,4070,7,2,f +1912,4070,15,3,f +1912,4081b,15,5,f +1912,4083,15,1,f +1912,4085c,15,1,f +1912,4085c,7,2,f +1912,4162,0,1,f +1912,4266,0,1,f +1912,4274,7,1,t +1912,4274,7,4,f +1912,4275b,4,2,f +1912,4276b,0,2,f +1912,4286,0,1,f +1912,4287,0,1,f +1912,4315,0,1,f +1912,4349,7,2,f +1912,4477,0,3,f +1912,4477,15,4,f +1912,4477,4,2,f +1912,4488,0,1,f +1912,4589,42,1,f +1912,4596,7,1,f +1912,4625,0,2,f +1912,4740,57,2,f +1912,476,15,1,f +1912,4773,36,1,t +1912,4773,36,6,f +1912,4854,0,1,f +1912,4855,0,2,f +1912,4856a,0,1,f +1912,4857,0,2,f +1912,4859,0,1,f +1912,4859,4,1,f +1912,4861,0,1,f +1912,4864b,0,6,f +1912,4865a,0,2,f +1912,4865a,15,1,f +1912,4871,0,2,f +1912,6019,0,4,f +1912,6069,0,1,f +1912,6126a,57,6,f +1912,6141,42,1,t +1912,6141,42,3,f +1912,6152,42,1,f +1912,6153a,0,1,f +1912,6157,0,6,f +1912,6219,0,1,f +1912,6230,0,6,f +1912,6238,33,1,f +1912,6239,0,2,f +1912,6582stk01,9999,1,t +1912,6636,4,2,f +1912,970c00,7,1,f +1912,970x024,0,2,f +1912,973p29c01,7,1,f +1912,973p8ac02,0,1,f +1912,973p8ac03,0,1,f +1913,2218c01,2,1,f +1914,10830pat0001,0,1,f +1914,11213,2,1,f +1914,11476,26,2,f +1914,11477,321,4,f +1914,11816pr0003,78,1,f +1914,14395,70,2,f +1914,15207,321,1,f +1914,15672,191,2,f +1914,15712,15,4,f +1914,15712,71,4,f +1914,18674,15,1,f +1914,20482,47,1,t +1914,20482,47,2,f +1914,2412b,71,9,f +1914,2423,2,2,f +1914,24309,26,2,f +1914,2432,70,1,f +1914,2496,0,1,f +1914,2655,71,1,f +1914,298c02,1,1,t +1914,298c02,1,1,f +1914,3003,70,6,f +1914,3004,321,2,f +1914,30162,72,1,f +1914,3020,27,2,f +1914,3022,19,2,f +1914,3023,2,2,f +1914,3023,321,4,f +1914,3024,26,2,f +1914,3024,26,1,t +1914,30414,71,2,f +1914,3062b,70,4,f +1914,3062b,71,2,f +1914,3068b,191,3,f +1914,3069b,26,4,f +1914,3069b,191,1,f +1914,3070b,36,1,t +1914,3070b,36,2,f +1914,3070bpr0163,14,1,t +1914,3070bpr0163,14,1,f +1914,32028,71,2,f +1914,33243,15,2,f +1914,33291,191,1,t +1914,33291,191,7,f +1914,3460,15,2,f +1914,3460,26,2,f +1914,3665,321,4,f +1914,3710,19,4,f +1914,3795,15,2,f +1914,3829c01,15,1,f +1914,3832,72,3,f +1914,3899,5,1,f +1914,3937,15,1,f +1914,3958,27,1,f +1914,4488,0,4,f +1914,4733,15,1,f +1914,56890,0,4,f +1914,59230,15,1,t +1914,59230,15,1,f +1914,6014b,71,4,f +1914,60897,71,1,f +1914,6091,26,2,f +1914,61252,72,1,f +1914,6134,71,1,f +1914,6141,41,3,f +1914,6141,41,1,t +1914,6141,46,1,t +1914,6141,46,8,f +1914,61485,71,1,f +1914,6179,15,1,f +1914,6187,71,2,f +1914,62113,321,1,f +1914,6231,19,2,f +1914,62698,85,1,f +1914,63965,71,1,f +1914,64644,71,1,f +1914,85080,15,4,f +1914,85861,15,1,t +1914,85861,15,1,f +1914,85984,71,1,f +1914,87552,15,2,f +1914,87609,321,2,f +1914,87994,15,1,f +1914,87994,15,1,t +1914,91501,19,2,f +1914,92256,70,1,f +1914,92456pr0098c01,78,1,f +1914,92583,47,1,f +1914,92820pr0006c01a,85,1,f +1914,93095,191,3,f +1914,93273,15,1,f +1914,98138,34,3,f +1914,98138,34,1,t +1914,98282,321,4,f +1914,98560,308,2,f +1917,21,47,2,f +1917,273,0,48,f +1917,3001a,0,2,f +1917,3001a,14,6,f +1917,3001a,4,4,f +1917,3003,14,2,f +1917,3004,14,1,f +1917,3005,14,4,f +1917,3008,4,2,f +1917,3009,4,2,f +1917,3009,14,4,f +1917,3010,47,4,f +1917,3010,4,2,f +1917,3010,14,2,f +1917,3020,14,9,f +1917,3020,4,3,f +1917,3022,14,1,f +1917,3024,14,2,f +1917,3029,4,2,f +1917,3030,14,3,f +1917,3032,14,3,f +1917,3034,14,4,f +1917,3034,4,3,f +1917,3037,14,1,f +1917,3062a,0,2,f +1917,3068b,4,2,f +1917,3145,14,1,f +1917,3149c01,4,3,f +1917,3317,14,1,f +1917,3404ac01,0,1,f +1917,3433,14,1,f +1917,3436,14,1,f +1917,3491,4,1,f +1917,3492c01,14,1,f +1917,3634,0,4,f +1917,3639,4,1,f +1917,3640,4,1,f +1917,3660a,4,4,f +1917,3707,79,2,f +1917,3709a,7,2,f +1917,569,4,4,f +1917,7039,4,4,f +1917,7049b,0,2,f +1917,828,4,1,f +1917,x148,4,4,f +1919,3003,0,1,f +1919,3024,0,1,f +1919,3039,0,1,f +1919,3062b,0,2,f +1919,3070b,0,2,f +1919,3623,0,1,f +1919,3700,0,1,f +1919,3794a,4,1,f +1921,3034,15,16,f +1922,2433,0,2,f +1922,298c02,0,2,f +1922,3021,7,1,f +1922,3022,7,1,f +1922,3023,0,2,f +1922,3023,7,1,f +1922,3039p05,7,1,f +1922,3062b,0,2,f +1922,3069bp25,7,1,f +1922,3626apr0001,14,1,f +1922,3838,1,1,f +1922,3842b,1,1,f +1922,3962a,0,1,f +1922,4032a,0,1,f +1922,4070,0,2,f +1922,4276b,7,2,f +1922,4589,36,2,f +1922,4590,0,1,f +1922,4590,7,1,f +1922,4598,7,1,f +1922,4735,0,2,f +1922,4871,7,2,f +1922,6141,34,2,f +1922,6141,7,2,f +1922,970c00,1,1,f +1922,973pr1594c01,1,1,f +1923,2412b,4,3,f +1923,2446,15,1,f +1923,2446,4,1,f +1923,2447,33,2,f +1923,298c02,4,1,t +1923,298c02,4,2,f +1923,3002,7,2,f +1923,3002,14,1,f +1923,30027a,15,10,f +1923,30028,0,10,f +1923,30029,15,1,f +1923,30029,4,1,f +1923,3004,0,1,f +1923,3004,4,3,f +1923,3009pb016,4,2,f +1923,3009pb044,0,2,f +1923,3010,14,4,f +1923,30182,2,1,f +1923,30184,0,1,f +1923,30237a,14,2,f +1923,30262,0,1,f +1923,30263,14,2,f +1923,30350p01,14,2,f +1923,3039,0,1,f +1923,3039,4,1,f +1923,3040b,36,2,f +1923,3062b,15,2,f +1923,3298p71,0,1,f +1923,3298pb002,4,1,f +1923,3626bp05,14,1,f +1923,3626bpb0110,14,1,f +1923,3666,14,1,f +1923,3710,15,2,f +1923,3710,4,2,f +1923,3787,2,1,f +1923,3823,41,1,f +1923,3829c01,1,3,f +1923,3839b,0,2,f +1923,4079,15,1,f +1923,4079,0,1,f +1923,4085c,7,2,f +1923,4485,1,1,f +1923,4533,33,4,f +1923,4600,7,3,f +1923,55295,8,1,f +1923,55296,8,1,f +1923,55297,8,1,f +1923,55298,8,1,f +1923,55299,8,1,f +1923,55300,8,1,f +1923,6014a,15,10,f +1923,6015,0,10,f +1923,6016,7,1,f +1923,6140,0,1,f +1923,6141,36,2,f +1923,6141,46,2,f +1923,6141,36,1,t +1923,6141,46,1,t +1923,6157,0,4,f +1923,6636,0,4,f +1923,71137,383,2,f +1923,92410,14,4,f +1923,970c00,1,1,f +1923,970c00,15,1,f +1923,973pb0024c01,15,1,f +1923,973pr1156c01,1,1,f +1927,3001a,4,1,f +1927,3004,4,4,f +1927,3004,47,1,f +1927,3006,4,1,f +1927,3008,4,2,f +1927,3010,4,3,f +1927,3010pb035e,4,1,f +1927,3020,4,2,f +1927,3023,4,4,f +1927,3023,0,4,f +1927,3029,4,1,f +1927,3031,4,2,f +1927,3037,4,2,f +1927,3040a,47,2,f +1927,3040a,4,2,f +1927,3046a,4,2,f +1927,3137c01,0,2,f +1927,3137c02,0,2,f +1927,3139,0,4,f +1927,3149c01,4,1,f +1927,3183a,4,1,f +1927,3184,4,1,f +1927,3581,4,4,f +1927,3582,4,4,f +1927,7b,0,4,f +1927,850,14,1,f +1927,851a,14,1,f +1927,852,14,1,f +1928,2412b,15,1,f +1928,2412b,0,2,f +1928,2412b,80,6,f +1928,2412b,1,1,f +1928,2420,15,2,f +1928,2420,0,2,f +1928,2431,71,1,f +1928,2431,15,1,f +1928,2436,0,2,f +1928,2436,15,2,f +1928,2436,71,2,f +1928,2436,1,2,f +1928,298c02,15,1,t +1928,298c02,15,2,f +1928,3001,4,2,f +1928,3002,0,1,f +1928,3002,4,1,f +1928,30027b,0,4,f +1928,30028,0,4,f +1928,3003,4,1,f +1928,3005,15,2,f +1928,3010,15,2,f +1928,3020,72,4,f +1928,3020,4,1,f +1928,3020,0,2,f +1928,3020,15,4,f +1928,3021,1,1,f +1928,3021,0,1,f +1928,3021,72,1,f +1928,3021,4,1,f +1928,3022,72,4,f +1928,3022,71,1,f +1928,3023,15,2,f +1928,3023,0,1,f +1928,3023,4,1,f +1928,3031,0,1,f +1928,3031,1,1,f +1928,3031,72,1,f +1928,30602,80,1,f +1928,3062b,15,4,f +1928,3068b,15,1,f +1928,3069b,71,1,f +1928,3069b,15,1,f +1928,3069b,1,2,f +1928,32028,0,3,f +1928,3623,4,2,f +1928,3710,0,1,f +1928,3710,0,1,t +1928,3788,0,2,f +1928,3794a,15,1,f +1928,3794a,4,6,f +1928,3795,71,1,f +1928,3795,72,2,f +1928,3795,0,1,f +1928,3795,15,1,f +1928,3957a,80,2,f +1928,4032a,72,1,f +1928,4070,0,2,f +1928,4085c,4,2,f +1928,41862,0,1,f +1928,44728,4,1,f +1928,45677,0,1,f +1928,48336,0,1,f +1928,50943,80,1,f +1928,50944pr0001,0,10,f +1928,50947,4,2,f +1928,50947,27,4,f +1928,50947,1,4,f +1928,50950,0,6,f +1928,50950,4,3,f +1928,50951,0,10,f +1928,54200,15,3,f +1928,54200,36,2,f +1928,54200,40,6,f +1928,6014b,0,4,f +1928,6015,0,4,f +1928,6081,0,1,f +1928,6141,27,1,t +1928,6141,33,1,t +1928,6141,36,2,f +1928,6141,0,1,t +1928,6141,33,2,f +1928,6141,0,4,f +1928,6141,36,1,t +1928,6141,27,4,f +1928,6157,0,6,f +1928,6157,72,2,f +1928,6215,0,2,f +1929,12825,72,1,f +1929,14210,0,2,f +1929,2357,4,38,f +1929,2412b,72,2,f +1929,2431,0,4,f +1929,2431,15,4,f +1929,2431,1,6,f +1929,2436,15,2,f +1929,2436,0,4,f +1929,2437,40,1,f +1929,2439,72,1,f +1929,2445,72,4,f +1929,2446,15,1,f +1929,2447,40,1,t +1929,2447,40,1,f +1929,2456,4,2,f +1929,2456,72,2,f +1929,2456,15,1,f +1929,2458,15,1,f +1929,2460,0,1,f +1929,2479,0,1,f +1929,2569,0,1,f +1929,2877,72,10,f +1929,3001,2,6,f +1929,3001,70,2,f +1929,3002,2,7,f +1929,3002,70,1,f +1929,3003,4,16,f +1929,3003,70,4,f +1929,3003,28,2,f +1929,3003,15,16,f +1929,3003,72,28,f +1929,3003,71,9,f +1929,3003,73,11,f +1929,3003,2,1,f +1929,3004,28,2,f +1929,3004,15,85,f +1929,3004,70,2,f +1929,3004,72,4,f +1929,3004,73,7,f +1929,3004,4,25,f +1929,3004,71,12,f +1929,3005,73,38,f +1929,3005,71,18,f +1929,3005,15,21,f +1929,30055,72,9,f +1929,3006,15,1,f +1929,3006,4,10,f +1929,3007,15,1,f +1929,3008,15,8,f +1929,3009,15,53,f +1929,3009,4,24,f +1929,3009,71,4,f +1929,3009,72,8,f +1929,3010,4,22,f +1929,3010,73,14,f +1929,3010,71,14,f +1929,30176,2,2,f +1929,3020,1,4,f +1929,3020,4,5,f +1929,3020,71,1,f +1929,3021,72,2,f +1929,3022,14,1,f +1929,3022,15,3,f +1929,3023,71,2,f +1929,3023,1,2,f +1929,3023,15,19,f +1929,3023,4,8,f +1929,3027,72,2,f +1929,3028,15,1,f +1929,3028,72,1,f +1929,3030,72,2,f +1929,3031,70,1,f +1929,3032,15,3,f +1929,3032,72,6,f +1929,3032,4,4,f +1929,3032,71,1,f +1929,3033,72,2,f +1929,3034,15,6,f +1929,3034,72,2,f +1929,3034,0,8,f +1929,3034,4,9,f +1929,3035,72,2,f +1929,3036,15,13,f +1929,3037,4,4,f +1929,3038,4,4,f +1929,3039,15,2,f +1929,3040b,15,2,f +1929,3040b,4,2,f +1929,30414,15,17,f +1929,3062b,14,2,f +1929,3062b,15,4,f +1929,3062b,46,2,f +1929,3062b,4,2,f +1929,3069b,15,21,f +1929,3069b,4,8,f +1929,3069b,0,20,f +1929,3069b,1,2,f +1929,3070b,15,1,t +1929,3070b,0,1,t +1929,3070b,15,2,f +1929,3070b,72,1,t +1929,3070b,1,10,f +1929,3070b,72,2,f +1929,3070b,4,18,f +1929,3070b,1,2,t +1929,3070b,0,8,f +1929,3070b,4,2,t +1929,3070bpr0007,71,1,t +1929,3070bpr0007,71,2,f +1929,3298,1,4,f +1929,3298,4,4,f +1929,3460,71,2,f +1929,3460,72,4,f +1929,3460,0,4,f +1929,3460,15,6,f +1929,3622,4,4,f +1929,3622,72,6,f +1929,3622,15,42,f +1929,3623,71,2,f +1929,3623,72,2,f +1929,3623,15,2,f +1929,3624,0,2,f +1929,3626bpr0387,14,8,f +1929,3626bpr0495,14,7,f +1929,3660,4,10,f +1929,3660,15,8,f +1929,3665,72,16,f +1929,3665,15,8,f +1929,3665,0,2,f +1929,3666,1,3,f +1929,3666,4,14,f +1929,3666,72,6,f +1929,3666,0,1,f +1929,3666,15,9,f +1929,3710,15,8,f +1929,3710,71,5,f +1929,3710,72,7,f +1929,3710,4,17,f +1929,3710,1,3,f +1929,3710,0,2,f +1929,3747b,4,8,f +1929,3747b,15,16,f +1929,3795,15,1,f +1929,3795,0,8,f +1929,3821,15,4,f +1929,3822,15,4,f +1929,3823,47,2,f +1929,3829c01,0,6,f +1929,3834,15,3,f +1929,3835,0,2,f +1929,3900,71,1,f +1929,3901,70,1,f +1929,3941,0,1,f +1929,3957a,71,1,f +1929,3958,15,2,f +1929,3958,4,1,f +1929,3958,72,1,f +1929,3960,71,1,f +1929,3963,71,2,f +1929,4032a,15,3,f +1929,4070,4,10,f +1929,4070,15,6,f +1929,4079,1,2,f +1929,4079,4,1,f +1929,41334,0,2,f +1929,4151b,72,2,f +1929,4162,4,8,f +1929,4162,72,2,f +1929,4176,41,1,f +1929,4176,47,3,f +1929,42022,15,4,f +1929,4207,15,2,f +1929,4286,0,4,f +1929,4286,15,2,f +1929,4349,72,3,f +1929,43723,4,1,f +1929,44300,72,2,f +1929,44302a,72,2,f +1929,4449,0,1,f +1929,4477,0,2,f +1929,4477,4,6,f +1929,4488,71,24,f +1929,4530,19,1,f +1929,4530,0,1,f +1929,4532,4,2,f +1929,4533,15,2,f +1929,45677,15,2,f +1929,4589,0,2,f +1929,4599b,15,2,f +1929,4599b,14,2,f +1929,4617b,0,1,f +1929,4714,15,1,f +1929,4740,15,2,f +1929,47905,71,4,f +1929,48183,4,2,f +1929,4855,15,2,f +1929,4858,15,1,f +1929,4861,15,1,f +1929,4865a,15,2,f +1929,4871,15,2,f +1929,48933,15,1,f +1929,50859b,0,1,f +1929,50861,0,2,f +1929,50862,71,2,f +1929,52031,4,3,f +1929,52031,72,1,f +1929,54200,33,14,f +1929,54200,33,2,t +1929,59349,41,1,f +1929,6014b,15,24,f +1929,6019,4,2,f +1929,60474,0,1,f +1929,60481,15,4,f +1929,60593,0,17,f +1929,60594,15,10,f +1929,60594,0,4,f +1929,60596,15,3,f +1929,60596,0,5,f +1929,60616a,41,5,f +1929,60621,71,2,f +1929,60657,72,1,f +1929,60657,15,1,f +1929,60658,72,1,f +1929,60658,15,1,f +1929,60700,0,24,f +1929,60797c02,0,1,f +1929,6093,70,1,f +1929,6093,0,4,f +1929,6111,4,6,f +1929,6117,72,2,f +1929,6126b,41,2,f +1929,6126b,182,4,f +1929,6126b,57,2,f +1929,61345,15,2,f +1929,6140,0,3,f +1929,61409,4,1,f +1929,6141,46,1,t +1929,6141,33,2,f +1929,6141,0,5,f +1929,6141,57,2,f +1929,6141,46,2,f +1929,6141,33,1,t +1929,6141,15,1,t +1929,6141,71,2,t +1929,6141,57,1,t +1929,6141,47,2,t +1929,6141,15,4,f +1929,6141,47,12,f +1929,6141,0,1,t +1929,6141,71,4,f +1929,6141,36,1,t +1929,6141,36,14,f +1929,61482,71,1,f +1929,61482,71,1,t +1929,61485,0,1,f +1929,6215,4,1,f +1929,6215,1,1,f +1929,6215,15,4,f +1929,6251,15,1,f +1929,62698,0,2,f +1929,62810,484,1,f +1929,63864,4,10,f +1929,63965,0,1,f +1929,6564,15,1,f +1929,6565,15,1,f +1929,6636,1,4,f +1929,85974,70,1,f +1929,89536,15,1,f +1929,970c00,0,5,f +1929,970c00,4,1,f +1929,970c00,1,1,f +1929,970c00,15,4,f +1929,970c00,72,4,f +1929,973pr1187c01,0,3,f +1929,973pr1188c01,0,4,f +1929,973pr1192c01,0,1,f +1929,973pr1197c01,15,1,f +1929,973pr1239c01,15,2,f +1929,973pr1241c01,15,2,f +1929,973pr1244c01,73,1,f +1929,973pr1485c01,4,1,f +1930,10907,320,1,f +1930,10908pr0001,320,1,f +1930,10909,297,1,f +1930,12825,1,1,f +1930,2343,297,2,f +1930,2357,0,6,f +1930,2412b,85,4,f +1930,2412b,143,30,f +1930,2419,71,4,f +1930,2420,0,10,f +1930,2431,72,2,f +1930,2431,0,2,f +1930,2444,71,2,f +1930,2445,71,2,f +1930,2458,72,4,f +1930,2540,71,1,f +1930,2540,72,4,f +1930,2654,1,10,f +1930,2780,0,10,f +1930,3001,0,2,f +1930,3001,15,1,f +1930,3001,1,2,f +1930,3002,14,2,f +1930,3002,0,2,f +1930,3003,71,4,f +1930,3003,0,2,f +1930,3004,71,4,f +1930,3009,1,2,f +1930,3009,72,14,f +1930,3010,14,2,f +1930,3010,0,5,f +1930,3020,14,1,f +1930,3020,0,9,f +1930,3020,1,2,f +1930,3020,71,3,f +1930,3021,19,1,f +1930,3021,72,20,f +1930,3022,19,3,f +1930,3022,0,5,f +1930,3022,71,6,f +1930,3023,15,2,f +1930,3023,36,10,f +1930,3023,14,4,f +1930,3023,0,21,f +1930,3032,71,2,f +1930,3032,0,1,f +1930,3033,72,4,f +1930,3034,0,6,f +1930,30363,0,2,f +1930,30374,19,1,f +1930,3039,71,1,f +1930,30414,71,4,f +1930,3045,72,2,f +1930,3046a,72,2,f +1930,30602,72,4,f +1930,3062b,15,4,f +1930,3062b,41,2,f +1930,3062b,4,4,f +1930,3068b,1,2,f +1930,3068b,71,8,f +1930,3069b,73,6,f +1930,3069b,72,4,f +1930,3070b,72,3,f +1930,32000,4,2,f +1930,32001,4,3,f +1930,32001,0,1,f +1930,32014,71,2,f +1930,32028,71,3,f +1930,32064b,2,2,f +1930,32123b,14,2,f +1930,32138,71,1,f +1930,32316,4,1,f +1930,32449,0,2,f +1930,32523,14,1,f +1930,32526,0,2,f +1930,32526,1,4,f +1930,32532,71,3,f +1930,32557,71,1,f +1930,3460,72,2,f +1930,3460,71,4,f +1930,3623,71,9,f +1930,3626cpr0937,78,1,f +1930,3626cpr0959,297,1,f +1930,3626cpr0961,78,1,f +1930,3626cpr0964,78,1,f +1930,3626cpr0965,78,1,f +1930,3660,72,16,f +1930,3665,15,4,f +1930,3666,0,8,f +1930,3702,0,3,f +1930,3705,0,2,f +1930,3710,0,3,f +1930,3710,72,10,f +1930,3710,2,2,f +1930,3749,19,1,f +1930,3794b,14,8,f +1930,3794b,1,2,f +1930,3795,0,6,f +1930,3795,15,3,f +1930,3795,71,4,f +1930,3894,4,1,f +1930,3895,72,1,f +1930,3941,57,2,f +1930,4079b,1,2,f +1930,41532,0,6,f +1930,41677,0,1,f +1930,41747,28,1,f +1930,41747,71,1,f +1930,41748,28,1,f +1930,41748,71,1,f +1930,41749,71,1,f +1930,41750,71,1,f +1930,41751,40,1,f +1930,41769,0,1,f +1930,41770,0,1,f +1930,41854,72,1,f +1930,42022,0,2,f +1930,42023,72,2,f +1930,42060,72,1,f +1930,42061,72,1,f +1930,43093,1,2,f +1930,43708,0,2,f +1930,43710,28,1,f +1930,43710,71,2,f +1930,43711,71,2,f +1930,43711,28,1,f +1930,43712,72,1,f +1930,43719,72,1,f +1930,43722,72,1,f +1930,43722,71,1,f +1930,43723,71,1,f +1930,43723,72,1,f +1930,44302a,72,2,f +1930,44567a,71,2,f +1930,44568,71,1,f +1930,44570,71,1,f +1930,44676,0,4,f +1930,44728,71,2,f +1930,44728,0,14,f +1930,4519,71,2,f +1930,45705,40,1,f +1930,4599b,4,1,f +1930,4624,71,6,f +1930,47406,0,1,f +1930,47407,0,1,f +1930,4742,72,2,f +1930,47455,0,2,f +1930,47753,28,1,f +1930,48171,72,2,f +1930,48336,71,4,f +1930,48336,297,3,f +1930,4870,71,2,f +1930,49668,19,2,f +1930,50231,2,1,f +1930,50231,4,1,f +1930,50303,0,2,f +1930,50304,71,1,f +1930,50304,272,1,f +1930,50304,72,2,f +1930,50305,272,1,f +1930,50305,72,2,f +1930,50305,71,1,f +1930,50955,71,1,f +1930,50956,71,1,f +1930,51739,272,4,f +1930,52031,71,1,f +1930,53451,297,3,f +1930,54091,0,2,f +1930,54200,72,3,f +1930,55013,72,2,f +1930,58176,36,4,f +1930,58181,15,1,f +1930,59900,52,4,f +1930,60470a,15,4,f +1930,60470b,0,1,f +1930,60471,71,6,f +1930,60474,71,2,f +1930,60475b,15,1,f +1930,60478,71,4,f +1930,6091,15,2,f +1930,6106,71,4,f +1930,61184,71,4,f +1930,61252,297,2,f +1930,61252,0,4,f +1930,61409,72,10,f +1930,61409,0,8,f +1930,6141,41,10,f +1930,6141,71,13,f +1930,61483,71,1,f +1930,61678,15,2,f +1930,6179,0,2,f +1930,6180,71,1,f +1930,6232,14,4,f +1930,6239,272,4,f +1930,63868,0,4,f +1930,6558,1,6,f +1930,6587,28,1,f +1930,6636,72,2,f +1930,6636,71,4,f +1930,6869stk01,9999,1,t +1930,6881b,71,2,f +1930,75904,71,1,f +1930,85974,484,1,f +1930,85984,71,2,f +1930,85984,0,6,f +1930,87079,15,1,f +1930,87079,272,2,f +1930,87079,0,4,f +1930,87079,72,1,f +1930,87079,71,3,f +1930,87087,14,4,f +1930,87414,0,6,f +1930,88283,226,1,f +1930,88930,0,2,f +1930,90194,71,1,f +1930,92099,72,1,f +1930,92107,72,1,f +1930,92280,71,4,f +1930,92593,15,3,f +1930,92946,72,6,f +1930,92950,71,3,f +1930,93252,297,2,f +1930,93273,72,2,f +1930,93606,71,5,f +1930,96874,25,1,t +1930,970c00,272,1,f +1930,970c00pr0342,71,1,f +1930,970c00pr0345,72,1,f +1930,970c00pr0347,0,1,f +1930,970c00pr0368,320,1,f +1930,973pr2039c01,71,1,f +1930,973pr2042c01,72,1,f +1930,973pr2044c01,272,1,f +1930,973pr2045c01,0,1,f +1930,973pr2046c01,320,1,f +1930,98138,36,2,f +1930,98138,297,5,f +1930,98139,297,1,f +1930,99207,71,6,f +1930,99780,72,5,f +1932,13731,15,2,f +1932,15207,4,2,f +1932,2340,15,1,f +1932,2412b,4,1,f +1932,2413,15,2,f +1932,2419,15,1,f +1932,2431,4,1,f +1932,2508,0,1,f +1932,2654,71,2,f +1932,3001,72,1,f +1932,3020,71,2,f +1932,3021,0,1,f +1932,3023,71,1,f +1932,3023,36,3,f +1932,3028,71,1,f +1932,3030,15,2,f +1932,3031,0,1,f +1932,3034,1,2,f +1932,30363,72,1,f +1932,3039,72,1,f +1932,3040b,71,2,f +1932,3626cpr0743,14,1,f +1932,3626cpr0893,14,1,f +1932,3710,4,6,f +1932,3794b,4,1,f +1932,3829c01,1,1,f +1932,4282,15,1,f +1932,43713,15,2,f +1932,43719,4,1,f +1932,4488,0,2,f +1932,4865b,4,2,f +1932,4865b,71,4,f +1932,50373,4,1,f +1932,50745,4,4,f +1932,51011,0,2,f +1932,51739,15,2,f +1932,52036,72,1,f +1932,52038,4,2,f +1932,52501,4,2,f +1932,54200,40,2,f +1932,54200,40,1,t +1932,57783,40,1,f +1932,6014b,71,4,f +1932,6141,36,1,t +1932,6141,36,2,f +1932,6157,0,2,f +1932,63082,71,1,f +1932,85984,0,2,f +1932,87079,15,2,f +1932,87580,15,1,f +1932,87697,0,4,f +1932,88283,0,1,f +1932,92081,308,1,f +1932,92280,15,2,f +1932,92579,40,1,f +1932,93273,72,2,f +1932,93594,179,2,f +1932,970c00,15,1,f +1932,970c00,19,1,f +1932,973pr1617c01,2,1,f +1932,973pr1918c01,73,1,f +1933,3404ac01,15,5,f +1934,2512,14,1,f +1934,2817,0,2,f +1934,298c02,0,1,f +1934,3021,0,1,f +1934,3626apr0001,14,1,f +1934,3710,14,1,f +1934,3749,7,4,f +1934,3787,14,1,f +1934,3795,0,1,f +1934,3829c01,14,1,f +1934,3833,4,1,f +1934,4079,4,1,f +1934,4275b,14,2,f +1934,4288,0,4,f +1934,4531,0,2,f +1934,6141,14,4,f +1934,970c00,1,1,f +1934,973pb0201c01,15,1,f +1937,30556,14,1,f +1937,30598,4,1,f +1937,30601pb05,25,1,f +1937,30603pb07,25,1,f +1937,racerbase,14,1,f +1937,rb00168,0,2,f +1939,2412b,19,2,f +1939,2420,19,2,f +1939,2450,6,2,f +1939,2540,6,3,f +1939,3023,0,4,f +1939,3031,19,1,f +1939,30365,8,2,f +1939,30375,25,1,f +1939,30377,3,3,f +1939,30377,3,1,t +1939,30383,0,2,f +1939,30530,25,1,f +1939,30554a,8,2,f +1939,3069bp55,8,1,f +1939,4150,0,1,f +1939,4286,8,2,f +1939,x117px5,3,1,f +1945,3482,7,6,f +1945,3483,0,4,f +1945,3634,0,2,f +1946,194cx1,2,1,f +1946,2357,1,2,f +1946,2412b,7,2,f +1946,2420,15,2,f +1946,2420,1,2,f +1946,2421,7,1,f +1946,2431,15,1,f +1946,2432,15,2,f +1946,2432,4,3,f +1946,2436,15,1,f +1946,2437,41,1,f +1946,2446,1,1,f +1946,2447,41,1,f +1946,2453a,15,6,f +1946,2454a,15,1,f +1946,2460,1,1,f +1946,2479,7,1,f +1946,2483,41,1,f +1946,2486,4,2,f +1946,2536,6,5,f +1946,2563,6,1,f +1946,2566,2,1,f +1946,2569,4,2,f +1946,2584,4,1,f +1946,2585,7,1,f +1946,2610,14,2,f +1946,2617,7,1,f +1946,2625,15,1,f +1946,2625,4,1,f +1946,2626,15,1,f +1946,2642,7,1,f +1946,2654,7,3,f +1946,298c02,4,2,f +1946,3001,7,2,f +1946,3003,15,1,f +1946,3003,7,1,f +1946,3003,1,1,f +1946,3004,7,8,f +1946,3004,15,1,f +1946,3004pc0,15,1,f +1946,3004px1,15,1,f +1946,3005,7,3,f +1946,3006,15,1,f +1946,3008,7,1,f +1946,3009,15,8,f +1946,3010,15,4,f +1946,3010,7,6,f +1946,3020,15,3,f +1946,3020,7,3,f +1946,3021,15,1,f +1946,3021,7,1,f +1946,3022,0,2,f +1946,3022,4,2,f +1946,3022,15,2,f +1946,3022,2,1,f +1946,3022,7,6,f +1946,3023,15,7,f +1946,3023,7,6,f +1946,3024,1,1,f +1946,3024,36,3,f +1946,3024,34,1,f +1946,3028,2,2,f +1946,3029,14,2,f +1946,3031,1,1,f +1946,3033,15,2,f +1946,3034,4,1,f +1946,3036,4,1,f +1946,3036,2,1,f +1946,3039pr0005,15,1,f +1946,3040b,15,6,f +1946,3062b,4,1,f +1946,3068b,15,2,f +1946,3068b,4,1,f +1946,3069b,7,2,f +1946,3069b,15,4,f +1946,3069bp02,7,1,f +1946,3069bp52,15,1,f +1946,3069bp80,15,1,f +1946,3069bpb003,15,1,f +1946,3070b,34,2,f +1946,3070b,46,2,f +1946,3070b,15,2,f +1946,3070b,36,2,f +1946,3176,15,1,f +1946,3298,1,1,f +1946,3455,15,3,f +1946,3460,7,4,f +1946,3460,15,3,f +1946,3622,7,6,f +1946,3622,15,4,f +1946,3623,15,3,f +1946,3623,7,1,f +1946,3623,4,2,f +1946,3626bp03,14,1,f +1946,3626bp04,14,2,f +1946,3665,15,2,f +1946,3666,15,3,f +1946,3679,7,1,f +1946,3680,15,1,f +1946,3700,15,2,f +1946,3701,15,1,f +1946,3706,0,1,f +1946,3710,15,4,f +1946,3710,4,1,f +1946,3713,7,2,f +1946,3747b,15,2,f +1946,3788,4,1,f +1946,3794a,7,2,f +1946,3795,15,2,f +1946,3829c01,1,2,f +1946,3855,41,2,f +1946,3937,15,2,f +1946,3938,7,2,f +1946,3959,7,1,f +1946,3962b,0,3,f +1946,3963,7,1,f +1946,4032a,2,1,f +1946,4070,15,2,f +1946,4070,7,8,f +1946,4079,4,1,f +1946,4081b,4,1,f +1946,4081b,15,2,f +1946,4083,1,1,f +1946,4085c,1,1,f +1946,4085c,15,3,f +1946,4085c,7,3,f +1946,4151a,0,1,f +1946,4162,4,2,f +1946,4162,8,4,f +1946,4175,7,2,f +1946,4211,4,1,f +1946,4215b,15,1,f +1946,4282,7,1,f +1946,4285b,0,1,f +1946,4286,15,4,f +1946,4286,1,1,f +1946,4287,7,2,f +1946,4315,15,1,f +1946,4349,0,1,f +1946,4477,15,2,f +1946,4485pb03,1,2,f +1946,4488,15,1,f +1946,4589,0,2,f +1946,4596,7,1,f +1946,4599a,7,2,f +1946,4599a,1,1,f +1946,4599a,4,1,f +1946,4600,0,2,f +1946,4740,36,1,f +1946,4859,15,1,f +1946,4865a,15,3,f +1946,6014a,15,4,f +1946,6015,0,4,f +1946,6019,4,1,f +1946,6064,2,1,f +1946,6111,7,1,f +1946,6140,7,3,f +1946,6141,0,1,t +1946,6141,46,11,f +1946,6141,36,1,t +1946,6141,0,8,f +1946,6141,7,1,t +1946,6141,15,1,t +1946,6141,36,1,f +1946,6141,7,2,f +1946,6141,46,1,t +1946,6141,15,2,f +1946,6148,2,4,f +1946,6152,41,1,f +1946,6153a,15,1,f +1946,6159,1,2,f +1946,6160c01,1,1,f +1946,6228b,7,1,f +1946,6231,15,2,f +1946,6556,1,2,f +1946,970c00,4,3,f +1946,973pb0040c01,7,2,f +1946,973pb0041c01,7,1,f +1946,rb00164,0,1,f +1947,4679a-1,89,1,f +1947,4679b-1,89,1,f +1948,3003,2,1,f +1948,32064b,2,1,f +1948,3298,2,2,f +1948,3700,2,1,f +1948,3795,2,1,f +1948,40378,2,1,f +1948,40379,2,1,f +1948,4286,2,4,f +1948,x158,2,1,f +1949,2420,4,2,f +1949,2444,4,2,f +1949,2711,0,2,f +1949,2730,4,2,f +1949,2780,0,3,t +1949,2780,0,23,f +1949,2819,7,1,f +1949,2825,0,4,f +1949,3021,4,1,f +1949,3022,4,8,f +1949,3023,4,8,f +1949,3024,4,2,f +1949,3068b,4,1,f +1949,3460,4,5,f +1949,3623,4,5,f +1949,3647,7,2,f +1949,3647,7,1,t +1949,3648a,7,1,f +1949,3650c,7,2,f +1949,3651,7,2,f +1949,3665,4,2,f +1949,3673,7,2,f +1949,3700,4,16,f +1949,3701,4,8,f +1949,3702,4,2,f +1949,3703,4,2,f +1949,3704,0,4,f +1949,3705,0,5,f +1949,3706,0,1,f +1949,3707,0,1,f +1949,3708,0,2,f +1949,3709,4,2,f +1949,3710,4,5,f +1949,3713,7,10,f +1949,3736,7,1,f +1949,3737,0,1,f +1949,3743,7,1,f +1949,3749,7,4,f +1949,3794a,4,2,f +1949,3795,4,4,f +1949,3894,4,4,f +1949,3895,4,4,f +1949,4019,7,2,f +1949,4143,7,3,f +1949,4150p01,15,2,f +1949,4261,7,2,f +1949,4262,7,2,f +1949,4262,4,1,f +1949,4265b,7,8,f +1949,4274,7,3,f +1949,4275b,4,2,f +1949,4276b,4,2,f +1949,4477,4,1,f +1949,4519,0,3,f +1949,4716,0,1,f +1949,4730,4,2,f +1949,6141,0,1,t +1949,6141,0,2,f +1949,6536,7,2,f +1949,6538a,7,4,f +1949,6553,7,4,f +1949,6558,0,2,f +1949,6579,0,4,f +1949,6580,15,4,f +1950,2343,0,2,f +1950,2432,0,1,f +1950,2566,0,1,f +1950,2569,0,1,f +1950,2780,0,1,t +1950,2780,0,1,f +1950,298c05,0,2,f +1950,298c05,0,1,t +1950,3004,71,2,f +1950,3023,72,2,f +1950,30365,0,4,f +1950,30387,71,2,f +1950,3039,72,1,f +1950,30552,72,2,f +1950,3069b,71,1,f +1950,32013,0,2,f +1950,32054,0,1,f +1950,32062,4,3,f +1950,3626bpr0463,14,1,f +1950,3678b,71,2,f +1950,3700,72,2,f +1950,3709,72,1,f +1950,40244,0,2,f +1950,4081b,71,2,f +1950,41532,0,2,f +1950,41854,25,2,f +1950,43093,1,4,f +1950,43857,0,1,f +1950,44790,25,2,f +1950,4588,72,2,f +1950,4589,4,2,f +1950,47753,25,2,f +1950,53982,85,1,f +1950,6019,72,2,f +1950,6141,4,2,f +1950,6141,4,1,t +1950,6536,71,2,f +1950,6553,0,2,f +1950,6632,0,2,f +1950,7708stk01,9999,1,t +1950,970x199,25,1,f +1950,973pr1247c01,25,1,f +1952,167914,47,1,f +1952,2711,7,1,f +1952,2854,7,1,f +1952,3023,14,2,f +1952,3040b,4,2,f +1952,3482,14,6,f +1952,3483,0,4,f +1952,3626bpr0001,14,1,f +1952,3634,0,2,f +1952,3700,4,8,f +1952,3701,4,2,f +1952,3705,0,2,f +1952,3706,0,1,f +1952,3708,0,1,f +1952,3709,14,2,f +1952,3710,14,2,f +1952,3713,7,6,f +1952,3736,7,1,f +1952,3737,0,1,f +1952,3738,14,4,f +1952,3749,7,8,f +1952,3895,4,2,f +1952,4032a,15,1,f +1952,4032a,14,1,f +1952,4263,14,2,f +1952,4265a,7,6,f +1952,4477,14,2,f +1952,6093,0,1,f +1952,6553,7,1,f +1952,71084,47,1,f +1952,9616b01,89,1,f +1952,9616b02,89,1,f +1952,9616bc1,9999,1,f +1952,970c00,1,1,f +1952,973pb0201c01,15,1,f +1952,bin04,14,1,f +1952,rb00164,0,1,f +1953,5306bc162,0,3,f +1954,10113,0,1,f +1954,12825,0,1,f +1954,2431,0,2,f +1954,2540,14,2,f +1954,2654,72,2,f +1954,30031,0,1,f +1954,3023,14,2,f +1954,3023,36,2,f +1954,3039pr0015,0,1,f +1954,32013,0,2,f +1954,3626bpr0896,78,1,f +1954,3794b,14,1,f +1954,3795,14,1,f +1954,43093,1,2,f +1954,43713,0,1,f +1954,43719,0,1,f +1954,44676,0,2,f +1954,47753,0,1,f +1954,4871,0,1,f +1954,56630,0,1,f +1954,59900,0,4,f +1954,61184,71,2,f +1954,6141,14,1,t +1954,6141,14,2,f +1954,6541,0,2,f +1954,970c00,0,1,f +1954,973pr1961c01,0,1,f +1955,45449,13,1,f +1955,45462,112,1,f +1955,45463,112,1,f +1955,45499,45,1,f +1955,45499,52,1,f +1955,46277,13,1,f +1955,46281,9,1,f +1955,47912,41,1,f +1955,47912,52,1,f +1955,clikits004,9,1,f +1955,clikits078,52,1,f +1955,clikits080,45,1,f +1955,clikits081,41,1,f +1958,2654,7,1,f +1958,3020,4,2,f +1958,3020,14,2,f +1958,3705,0,1,f +1958,3710,0,2,f +1958,3710,7,2,f +1958,3941,25,1,f +1958,4032a,7,1,f +1960,61930,0,1,f +1961,3001a,15,8,f +1961,3003,1,1,f +1961,3003,15,1,f +1961,3004,15,3,f +1961,3005,15,8,f +1961,3005,1,1,f +1961,3010,15,1,f +1961,3023,15,2,f +1961,3031,15,1,f +1961,3032,15,1,f +1961,3063b,15,2,f +1961,3068a,1,1,f +1961,3068a,15,9,f +1961,3069a,4,1,f +1961,3069a,15,4,f +1961,3307,15,2,f +1962,2412b,72,1,f +1962,2447,40,1,f +1962,2447,40,1,t +1962,2540,0,2,f +1962,2555,14,1,f +1962,3002,72,1,f +1962,3003,14,1,f +1962,3020,14,3,f +1962,3021,15,2,f +1962,3062b,4,1,f +1962,3070b,36,1,t +1962,3070b,36,2,f +1962,3626bpr0389,14,1,f +1962,3665,14,4,f +1962,3666,15,2,f +1962,3710,14,1,f +1962,3829c01,71,1,f +1962,3832,72,1,f +1962,3834,15,1,f +1962,3835,0,1,f +1962,3838,14,1,f +1962,4083,14,1,f +1962,43337,40,1,f +1962,45677,15,1,f +1962,4599a,4,1,f +1962,52038,14,2,f +1962,54200,47,2,f +1962,6014b,15,4,f +1962,6015,0,4,f +1962,60470a,15,1,f +1962,6141,33,1,t +1962,6141,36,1,t +1962,6141,33,3,f +1962,6141,36,3,f +1962,6157,0,2,f +1962,6158,72,1,f +1962,970c00,0,1,f +1962,973pr1187c01,0,1,f +1963,11477,70,2,f +1963,11477,19,2,f +1963,14418,71,4,f +1963,15068,19,7,f +1963,15068,15,2,f +1963,15208,0,2,f +1963,15573,28,1,f +1963,22890,72,4,f +1963,2420,19,4,f +1963,2420,15,4,f +1963,2420,70,4,f +1963,3003,19,2,f +1963,3004,19,4,f +1963,3005,70,2,f +1963,3020,70,3,f +1963,3020,19,4,f +1963,3021,70,3,f +1963,3021,19,2,f +1963,3022,19,3,f +1963,3022,70,3,f +1963,3023,19,12,f +1963,3023,15,2,f +1963,3023,70,2,f +1963,3024,70,1,t +1963,3024,19,1,t +1963,3024,19,4,f +1963,3024,70,4,f +1963,3039,19,1,f +1963,30414,19,3,f +1963,3069b,29,1,f +1963,3069b,19,2,f +1963,3070b,19,4,f +1963,3070b,70,2,f +1963,3070b,70,1,t +1963,3070b,19,1,t +1963,32474,0,1,f +1963,3623,71,2,f +1963,3660,19,1,f +1963,3665,4,2,f +1963,3665,19,2,f +1963,3679,71,1,f +1963,3680,15,1,f +1963,3700,70,2,f +1963,3710,4,1,f +1963,3710,19,3,f +1963,4032a,70,1,f +1963,4274,71,1,t +1963,4274,71,2,f +1963,43892,19,1,f +1963,4499,70,1,f +1963,4871,71,1,f +1963,54200,19,4,f +1963,54200,4,6,f +1963,54200,19,1,t +1963,54200,4,1,t +1963,6091,19,2,f +1963,63868,0,2,f +1963,73983,19,2,f +1963,85984,19,5,f +1963,87087,19,2,f +1963,88072,4,1,f +1963,93273,15,2,f +1963,98138pr0008,15,2,f +1963,98138pr0008,15,1,t +1963,99206,71,1,f +1965,2412b,80,2,f +1965,2412b,0,1,f +1965,2412b,14,1,f +1965,2412b,14,1,t +1965,2412b,0,1,t +1965,2420,0,4,f +1965,2431,0,3,f +1965,2431,15,1,f +1965,2436,0,6,f +1965,2460,14,1,f +1965,2479,0,1,f +1965,3001,14,1,f +1965,3002,14,1,f +1965,3010,27,2,f +1965,3020,72,2,f +1965,3020,0,4,f +1965,3021,14,1,f +1965,3022,1,2,f +1965,3022,14,1,f +1965,3023,27,1,f +1965,3023,15,1,f +1965,3024,0,4,f +1965,3024,0,1,t +1965,3024,36,1,t +1965,3024,36,2,f +1965,3031,0,2,f +1965,3034,14,1,f +1965,3068b,27,1,f +1965,3069b,33,1,f +1965,3069b,36,1,f +1965,3069b,294,2,f +1965,3069b,15,1,f +1965,3069b,27,1,f +1965,3070b,36,1,t +1965,3070b,36,2,f +1965,32013,14,1,f +1965,32028,15,1,f +1965,32028,0,1,f +1965,32064b,14,1,f +1965,3475b,72,2,f +1965,3666,14,2,f +1965,3707,0,1,f +1965,3710,0,1,f +1965,3747b,14,2,f +1965,3749,19,1,f +1965,3749,19,1,t +1965,3788,0,1,f +1965,3788,27,1,f +1965,3795,15,1,f +1965,4070,1,8,f +1965,4162,0,2,f +1965,44674,0,2,f +1965,45677,0,1,f +1965,47456,14,1,f +1965,47458,0,3,f +1965,48336,0,1,f +1965,48336,14,1,f +1965,50944pr0001,0,8,f +1965,50950,15,2,f +1965,50951,0,8,f +1965,54200,27,2,f +1965,54200,15,1,t +1965,54200,36,3,f +1965,54200,27,1,t +1965,54200,36,2,t +1965,54200,294,3,f +1965,54200,0,1,t +1965,54200,294,2,t +1965,54200,0,2,f +1965,54200,33,1,f +1965,54200,33,1,t +1965,54200,15,2,f +1965,6019,0,3,f +1965,6041,0,1,f +1965,6070,40,1,f +1965,6140,0,2,f +1965,6141,34,1,f +1965,6141,36,1,t +1965,6141,36,1,f +1965,6141,80,1,t +1965,6141,80,2,f +1965,6141,34,1,t +1965,6157,0,4,f +1965,6231,0,4,f +1965,6536,14,1,f +1965,88930,0,1,f +1966,266bc02,0,2,f +1966,3003,0,1,f +1966,3004,0,7,f +1966,3004,4,2,f +1966,3005,4,13,f +1966,3005,7,2,f +1966,3009,4,2,f +1966,3010,7,1,f +1966,3022,7,3,f +1966,3023,7,12,f +1966,3023,0,4,f +1966,3024,4,2,f +1966,3031,7,1,f +1966,3033,4,1,f +1966,3034,7,2,f +1966,3035,0,2,f +1966,3039p23,7,1,f +1966,3039p34,7,1,f +1966,3040b,4,4,f +1966,3069b,0,2,f +1966,3228b,7,8,f +1966,3242,7,4,f +1966,3460,4,1,f +1966,3623,4,1,f +1966,3624,4,1,f +1966,3626apr0001,14,1,f +1966,3660,0,5,f +1966,3665,4,6,f +1966,3666,4,2,f +1966,3679,7,1,f +1966,3680,0,1,f +1966,3701,0,2,f +1966,3710,7,11,f +1966,3710,0,4,f +1966,3710,4,3,f +1966,3795,4,2,f +1966,3832,4,2,f +1966,3855,47,6,f +1966,3865,7,1,f +1966,4033,15,6,f +1966,4079,7,1,f +1966,4143,7,4,f +1966,4162,7,12,f +1966,4166,8,10,f +1966,4169,7,2,f +1966,4447,15,2,f +1966,4448,47,2,f +1966,4476a,0,4,f +1966,4512p01,15,2,f +1966,4515,7,4,f +1966,4519,0,2,f +1966,4707pb04,7,1,f +1966,47899c01,15,1,f +1966,512p01,0,2,f +1966,606p01,7,1,f +1966,70026,7,2,f +1966,70163,0,2,f +1966,766c190,7,2,f +1966,766c96,7,2,f +1966,970c00,1,1,f +1966,973p26c01,1,1,f +1966,x543,7,1,f +1968,11260pr0001,15,1,f +1968,11265pr0001,15,1,f +1968,3626bpr1062,15,1,f +1968,88646,0,1,f +1968,970c00pr0398,15,1,f +1968,973pr2160c01,15,1,f +1969,2412b,72,1,f +1969,2431,2,1,f +1969,2436,15,1,f +1969,3020,15,2,f +1969,3020,14,1,f +1969,3020,2,1,f +1969,3021,2,2,f +1969,3022,14,3,f +1969,3023,2,4,f +1969,3023,71,2,f +1969,3024,2,2,f +1969,3024,71,4,f +1969,3024,36,2,f +1969,3069b,15,2,f +1969,3460,72,2,f +1969,3623,2,2,f +1969,3710,15,2,f +1969,3710,0,1,f +1969,3937,15,1,f +1969,3938,71,1,f +1969,4081b,71,2,f +1969,4600,71,2,f +1969,4624,15,4,f +1969,50950,15,2,f +1969,54200,2,4,f +1969,54200,47,1,t +1969,54200,15,4,f +1969,54200,40,4,f +1969,54200,2,1,t +1969,54200,47,2,f +1969,54200,40,1,t +1969,54200,15,1,t +1969,60212,2,1,f +1969,6141,72,4,f +1969,6141,72,1,t +1969,87414,0,4,f +1970,12651,14,1,f +1970,2206,14,2,f +1970,2301,1,2,f +1970,2302,10,2,f +1970,2312c02,14,1,f +1970,3011,15,2,f +1970,3011,25,1,f +1970,3437,27,2,f +1970,3437,10,2,f +1970,3437,4,4,f +1970,3437,1,1,f +1970,3437,484,1,f +1970,3437,25,2,f +1970,40666,27,2,f +1970,40666,10,1,f +1970,44524,10,1,f +1970,44524,4,1,f +1970,47510pr0004,4,1,f +1970,61649,4,2,f +1970,6474,1,2,f +1970,6510,10,1,f +1970,6510,73,1,f +1970,87313,0,1,f +1970,92990,27,1,f +1970,92992,14,1,f +1970,92993,10,1,f +1970,92994,14,1,f +1970,92995,27,1,t +1970,92996,4,1,f +1970,92997,27,1,f +1970,92998,73,1,f +1970,92999,1,1,f +1970,93000,10,1,f +1970,93001,27,1,f +1970,93002,10,1,f +1970,93003,14,1,f +1970,93006,1,1,f +1970,93011,4,1,f +1970,93012,1,1,f +1970,93013,14,1,f +1970,93014,10,1,f +1970,93015,1,1,f +1970,93016,4,1,f +1970,93017,10,1,f +1970,93018,27,1,f +1970,93019,4,1,f +1970,93020,25,1,f +1970,93021,25,1,f +1970,93710,73,1,f +1970,93712,4,1,t +1970,93713,25,1,t +1970,93714,73,1,t +1970,93858,73,1,t +1970,93859,25,1,f +1970,93860,1,1,t +1970,94801,25,1,t +1971,3004,15,1,f +1971,3005,15,2,f +1971,3659,15,2,f +1971,3710,5,1,f +1971,3741,2,2,f +1971,3742,14,2,t +1971,3742,14,6,f +1971,3899,20,1,f +1971,4204,74,1,f +1971,4342,18,1,f +1971,45,383,1,f +1971,4523,1,2,f +1971,6176,20,1,f +1971,6179,15,1,f +1971,6183,15,2,f +1971,6199,18,1,f +1971,6200,5,2,f +1971,6250,0,1,f +1971,6255,2,2,f +1971,6256,14,1,f +1971,6256,1,1,f +1971,towel2,5,1,f +1972,32062,0,6,f +1972,32173,8,2,f +1972,32174,6,10,f +1972,32174,57,1,f +1972,32270,7,1,f +1972,3737,0,1,f +1972,3749,19,4,f +1972,44135,8,1,f +1972,44136,8,1,f +1972,44138,6,2,f +1972,44139,8,1,f +1972,44140,6,1,f +1972,44142,179,1,f +1972,44148,8,2,f +1972,44247,8,1,f +1972,44807,6,1,f +1972,44816,179,2,f +1972,4519,7,3,f +1972,45749,8,2,f +1972,6538b,8,1,f +1972,kraataund,22,1,f +1973,0901,2,1,f +1973,0902,2,1,f +1973,0903,2,1,f +1973,0904,2,1,f +1973,132a,7,8,f +1973,3001a,0,3,f +1973,3001a,14,6,f +1973,3001a,4,20,f +1973,3001a,1,3,f +1973,3001a,47,3,f +1973,3002a,4,8,f +1973,3002a,1,2,f +1973,3002a,15,1,f +1973,3002a,0,1,f +1973,3002a,14,4,f +1973,3003,15,17,f +1973,3003,1,2,f +1973,3003,0,1,f +1973,3003,4,14,f +1973,3004,14,19,f +1973,3004,0,4,f +1973,3004,1,14,f +1973,3004,15,27,f +1973,3004,4,9,f +1973,3005,1,4,f +1973,3005,14,18,f +1973,3005,4,8,f +1973,3005,15,14,f +1973,3006,14,3,f +1973,3007,14,4,f +1973,3007,4,3,f +1973,3008,14,2,f +1973,3008,4,3,f +1973,3008,15,2,f +1973,3008,0,2,f +1973,3009,4,2,f +1973,3009,15,12,f +1973,3009,14,8,f +1973,3010,1,18,f +1973,3010,47,2,f +1973,3010,4,1,f +1973,3010,15,12,f +1973,3010,0,3,f +1973,3010,14,10,f +1973,3020,0,35,f +1973,3020,1,3,f +1973,3020,15,8,f +1973,3020,7,9,f +1973,3021,7,4,f +1973,3021,1,4,f +1973,3021,15,2,f +1973,3021,0,6,f +1973,3022,1,3,f +1973,3022,7,2,f +1973,3022,4,2,f +1973,3022,0,8,f +1973,3022,15,3,f +1973,3023,1,2,f +1973,3023,0,11,f +1973,3023,15,1,f +1973,3024,15,3,f +1973,3024,0,5,f +1973,3024,1,2,f +1973,3029,7,6,f +1973,3034,15,20,f +1973,3035,7,1,f +1973,3037,1,16,f +1973,3037,4,13,f +1973,3038,1,8,f +1973,3038,4,4,f +1973,3039,4,8,f +1973,3039,1,3,f +1973,3040a,1,2,f +1973,3041,4,2,f +1973,3041,1,1,f +1973,3043,4,1,f +1973,3043,1,1,f +1973,3045,4,12,f +1973,3048a,4,2,f +1973,3048a,1,2,f +1973,3049b,1,2,f +1973,3062a,1,8,f +1973,3062a,4,1,f +1973,3062a,14,2,f +1973,3068a,15,3,f +1973,3068a,7,6,f +1973,3068a,1,4,f +1973,3069a,0,6,f +1973,3069a,7,7,f +1973,3070a,0,3,f +1973,3070a,7,3,f +1973,3081bc01,15,4,f +1973,3081bc01,4,20,f +1973,3087bc01,4,2,f +1973,3087bc01,15,2,f +1973,3176,4,3,f +1973,3176c01,4,3,f +1973,3185,4,12,f +1973,3186,4,3,f +1973,3187,4,3,f +1973,3228a,1,9,f +1973,3229a,1,16,f +1973,3230a,1,16,f +1973,32bc01,15,1,f +1973,32bc01,4,5,f +1973,33bc01,15,1,f +1973,33bc01,4,5,f +1973,453bc01,4,2,f +1973,646bc01,4,5,f +1973,7039,4,8,f +1973,7049b,15,10,f +1973,777px7,15,1,f +1973,ftbirchh,2,2,f +1973,ftbushh,2,2,f +1973,ftpineh,2,2,f +1973,wheel1a,4,12,f +1974,2343,71,2,f +1974,2376,0,2,f +1974,2412b,71,10,f +1974,2412b,14,4,f +1974,2431,2,1,f +1974,2444,72,2,f +1974,2453a,72,4,f +1974,2456,0,2,f +1974,2780,0,1,t +1974,2780,0,6,f +1974,30000,72,1,f +1974,3001,0,1,f +1974,3004,2,2,f +1974,3005,2,2,f +1974,3008,2,2,f +1974,3010,2,2,f +1974,30151a,4,4,f +1974,3020,71,1,f +1974,3020,14,3,f +1974,3022,4,3,f +1974,3023,72,5,f +1974,3032,71,2,f +1974,3032,19,1,f +1974,3033,71,2,f +1974,30391,0,6,f +1974,30395,72,1,f +1974,30396,14,1,f +1974,3040b,72,2,f +1974,3062b,71,6,f +1974,3068b,72,1,f +1974,3069b,46,2,f +1974,32002,72,1,t +1974,32002,72,3,f +1974,32028,15,1,f +1974,32062,4,4,f +1974,32123b,71,4,f +1974,32123b,71,1,t +1974,32524,72,2,f +1974,32525,0,1,f +1974,3297,0,1,f +1974,3460,2,5,f +1974,3623,0,8,f +1974,3626bpr0498,14,1,f +1974,3660,2,3,f +1974,3665,2,2,f +1974,3666,72,4,f +1974,3700,15,4,f +1974,3703,71,2,f +1974,3710,19,2,f +1974,3710,71,2,f +1974,3713,4,4,f +1974,3713,4,1,t +1974,3737,0,3,f +1974,3749,19,2,f +1974,3795,72,1,f +1974,3823,40,1,f +1974,3829c01,15,1,f +1974,3832,71,2,f +1974,3833,4,1,f +1974,3937,72,2,f +1974,3938,71,2,f +1974,3941,15,2,f +1974,3962b,0,1,f +1974,4006,0,1,f +1974,4032a,2,2,f +1974,4032a,4,2,f +1974,4032a,15,2,f +1974,4079,14,1,f +1974,4085c,71,2,f +1974,41532,0,1,f +1974,44294,71,1,f +1974,44728,72,4,f +1974,45677,2,1,f +1974,53586,135,2,f +1974,54200,36,4,f +1974,54200,182,4,f +1974,55982,71,6,f +1974,57779,0,1,f +1974,59349,4,4,f +1974,59349,72,2,f +1974,6070,2,6,f +1974,6141,182,1,t +1974,6141,0,4,f +1974,6141,0,1,t +1974,6141,182,2,f +1974,6536,72,3,f +1974,6632,71,2,f +1974,6636,71,4,f +1974,970c00,25,1,f +1974,973pr1182c01,25,1,f +1976,2412b,72,10,f +1976,2431,72,2,f +1976,2436,71,6,f +1976,2555,71,1,f +1976,2714a,71,1,f +1976,2780,0,2,f +1976,2780,0,1,t +1976,2817,71,1,f +1976,298c05,71,1,t +1976,298c05,71,1,f +1976,30031,72,1,f +1976,3020,71,1,f +1976,3022,19,4,f +1976,3023,72,2,f +1976,30365,71,2,f +1976,30387,71,4,f +1976,3039,71,1,f +1976,3062b,71,2,f +1976,3176,71,2,f +1976,32001,71,3,f +1976,32013,72,1,f +1976,32013,320,1,f +1976,32014,72,1,f +1976,32064b,72,4,f +1976,32073,71,1,f +1976,3626b,0,1,f +1976,3700,19,1,f +1976,3710,71,2,f +1976,3794a,2,2,f +1976,3794a,19,5,f +1976,3900,71,2,f +1976,3957a,71,1,f +1976,4032a,72,2,f +1976,4085c,71,1,f +1976,41769,71,1,f +1976,41770,71,1,f +1976,41855,0,1,f +1976,4349,0,1,f +1976,43722,2,1,f +1976,43723,2,1,f +1976,44567a,72,2,f +1976,44728,72,4,f +1976,4519,71,2,f +1976,4589,0,2,f +1976,4740,71,6,f +1976,47456,71,1,f +1976,47757pb02,71,1,f +1976,47758,71,2,f +1976,47905,72,1,f +1976,48336,320,2,f +1976,48336,19,1,f +1976,50995pr02,15,1,f +1976,6019,72,2,f +1976,6141,41,1,f +1976,6141,41,1,t +1976,6141,71,1,t +1976,6141,71,2,f +1976,970x026,15,1,f +1976,973pb0117dc01,15,1,f +1977,2343,15,1,f +1977,43887,0,1,f +1977,4429,36,1,f +1977,4j009,9999,1,f +1977,6026,2,1,f +1977,6027,2,1,f +1977,6028,2,1,f +1978,2357,0,2,f +1978,2412b,0,1,f +1978,2412b,72,2,f +1978,2420,0,6,f +1978,2420,4,12,f +1978,2431,4,8,f +1978,2432,0,2,f +1978,2449,19,4,f +1978,2450,0,2,f +1978,2456,19,1,f +1978,2555,4,4,f +1978,2780,0,8,f +1978,2780,0,1,t +1978,2819,71,1,f +1978,2921,0,4,f +1978,298c02,0,1,t +1978,298c02,0,1,f +1978,3001,4,4,f +1978,3002,4,4,f +1978,3003,0,3,f +1978,3003,4,4,f +1978,3003,19,1,f +1978,3004,19,5,f +1978,3005,72,2,f +1978,3006,4,5,f +1978,3009,4,2,f +1978,3010,72,1,f +1978,3010,0,1,f +1978,30165,72,2,f +1978,3020,4,8,f +1978,3020,0,4,f +1978,3021,4,9,f +1978,3021,0,2,f +1978,3021,19,3,f +1978,3021,72,4,f +1978,3022,0,5,f +1978,3022,19,3,f +1978,3023,4,11,f +1978,3023,0,10,f +1978,3023,19,3,f +1978,3023,36,2,f +1978,3024,4,9,f +1978,3024,4,1,t +1978,3024,0,12,f +1978,3024,0,1,t +1978,3031,4,1,f +1978,3032,0,1,f +1978,3034,0,1,f +1978,3034,4,6,f +1978,3035,72,1,f +1978,3036,0,2,f +1978,3037,0,2,f +1978,3040b,4,2,f +1978,30414,4,3,f +1978,3044b,19,4,f +1978,3045,4,2,f +1978,3068b,0,2,f +1978,3068b,19,6,f +1978,3069b,4,4,f +1978,3069b,19,24,f +1978,3069b,0,9,f +1978,3069b,72,1,f +1978,3070b,4,1,t +1978,3070b,4,6,f +1978,32523,0,4,f +1978,32530,72,4,f +1978,3308,4,4,f +1978,3308,0,2,f +1978,3456,0,2,f +1978,3460,4,4,f +1978,3460,0,1,f +1978,3460,71,2,f +1978,3622,4,4,f +1978,3623,0,7,f +1978,3623,4,16,f +1978,3623,19,4,f +1978,3660,4,1,f +1978,3665,0,2,f +1978,3665,4,2,f +1978,3666,0,4,f +1978,3666,4,7,f +1978,3684,19,1,f +1978,3702,0,4,f +1978,3710,71,2,f +1978,3710,72,1,f +1978,3710,0,2,f +1978,3710,4,12,f +1978,3747b,0,2,f +1978,3794a,0,8,f +1978,3795,4,5,f +1978,3795,0,1,f +1978,3795,19,2,f +1978,3832,4,4,f +1978,3832,0,3,f +1978,3899,4,4,f +1978,3937,0,4,f +1978,3958,0,1,f +1978,4070,71,6,f +1978,4070,0,2,f +1978,4081b,4,2,f +1978,4162,4,9,f +1978,4162,71,2,f +1978,4162,0,4,f +1978,41747,4,1,f +1978,41748,4,1,f +1978,41767,4,3,f +1978,41768,4,3,f +1978,4349,72,2,f +1978,44302a,0,1,f +1978,44302a,4,2,f +1978,44309,0,4,f +1978,44567a,0,1,f +1978,44676,0,4,f +1978,44728,0,4,f +1978,4477,0,5,f +1978,4477,4,2,f +1978,4515,4,1,f +1978,4623,0,2,f +1978,4865a,19,1,f +1978,50950,4,16,f +1978,50967,4,6,f +1978,54086,179,4,f +1978,54087,0,4,f +1978,54200,4,12,f +1978,6019,0,4,f +1978,6070,0,2,f +1978,6081,4,2,f +1978,6091,19,4,f +1978,6091,0,4,f +1978,6111,0,3,f +1978,6111,4,4,f +1978,6134,0,4,f +1978,6141,80,1,t +1978,6141,0,1,t +1978,6141,182,1,t +1978,6141,0,9,f +1978,6141,36,4,f +1978,6141,182,2,f +1978,6141,80,5,f +1978,6141,36,1,t +1978,6231,19,4,f +1978,6587,72,4,f +1978,6636,4,11,f +1978,73983,4,6,f +1978,76385,4,2,f +1978,8671stk01,9999,1,f +1979,3038,1,5,f +1979,3040a,1,5,f +1979,3042,1,1,f +1979,3044a,1,3,f +1979,3045,1,6,f +1979,3046a,1,6,f +1979,3048a,1,4,f +1979,3049b,1,2,f +1979,962,1,2,f +1981,15395,27,1,f +1981,15470,70,4,f +1981,2412b,71,1,f +1981,3004,15,2,f +1981,3020,322,1,f +1981,3022,322,1,f +1981,3022,29,1,f +1981,3023,30,2,f +1981,3069bpr0168,70,1,f +1981,4345b,15,1,f +1981,4346,47,1,f +1981,4529,0,1,f +1981,6141,70,3,f +1981,6141,57,1,f +1981,6141,0,1,f +1981,87580,15,1,f +1981,87994,71,1,f +1983,2458,0,1,f +1983,3004,0,1,f +1983,3004,7,2,f +1983,3005,7,2,f +1983,3034,2,2,f +1983,3039,7,2,f +1983,3626bp42,14,1,f +1983,3700,0,1,f +1983,3844,0,1,f +1983,3847,8,1,f +1983,3848,6,1,f +1983,4085c,0,2,f +1983,4490,0,1,f +1983,4504,0,1,f +1983,4626,0,1,f +1983,970x021,0,1,f +1983,973p41c01,4,1,f +1984,3020,4,100,f +1985,3626bp7a,14,1,f +1985,4485,1,1,f +1985,970c00,1,1,f +1985,973pb0025ac01,15,1,f +1986,3626cpr1235,14,1,f +1986,87990,308,1,f +1986,88646,0,1,f +1986,93549pat03,47,1,f +1986,93549pat04,47,1,f +1986,970c00pr0523,15,1,f +1986,973pr2405c01,15,1,f +1987,10884,27,1,f +1987,11055pr0010,15,1,f +1987,12939,15,1,f +1987,15573,297,2,f +1987,15712,0,1,f +1987,18927,4,1,f +1987,2431,70,1,f +1987,2445,1,1,f +1987,2456,72,2,f +1987,2489,308,5,f +1987,2524,70,1,f +1987,2526,15,1,t +1987,2526,15,1,f +1987,2526,297,1,t +1987,2526,297,1,f +1987,2527,4,1,f +1987,2530,72,1,t +1987,2530,72,1,f +1987,2545pr0001,0,1,f +1987,2561,70,1,f +1987,2562,70,1,f +1987,2562,70,1,t +1987,2566,0,1,f +1987,2921,70,2,f +1987,3002,71,1,f +1987,3002,4,2,f +1987,3003,0,2,f +1987,3003,15,3,f +1987,3004,15,3,f +1987,3005,15,4,f +1987,3010,15,1,f +1987,3010,71,1,f +1987,30136,308,2,f +1987,30153,34,1,f +1987,30153,36,1,f +1987,30153,46,1,f +1987,30153,33,1,f +1987,30176,2,1,f +1987,3021,70,1,f +1987,3023,70,4,f +1987,30237a,70,1,f +1987,3029,1,1,f +1987,3034,70,3,f +1987,3036,70,1,f +1987,3046a,72,4,f +1987,30565,70,4,f +1987,3062b,0,6,f +1987,3062b,46,1,f +1987,3068b,19,1,f +1987,3069b,70,1,f +1987,32530,72,1,f +1987,33121,191,1,f +1987,3622,15,1,f +1987,3622,72,1,f +1987,3626cpr0891,14,1,f +1987,3626cpr1146,14,1,f +1987,3626cpr1561,14,1,f +1987,3660,72,3,f +1987,3665,71,2,f +1987,3673,71,1,f +1987,3673,71,1,t +1987,3679,71,1,f +1987,3680,4,1,f +1987,3795,28,3,f +1987,3941,70,4,f +1987,3957b,0,1,f +1987,4032a,72,5,f +1987,43888,70,1,f +1987,4460b,15,2,f +1987,44728,71,4,f +1987,4735,71,1,f +1987,4738a,70,1,f +1987,4739a,70,1,f +1987,4740,0,1,f +1987,48092,15,2,f +1987,48729b,72,1,t +1987,48729b,72,1,f +1987,54200,71,1,t +1987,54200,71,5,f +1987,60474,72,1,f +1987,60594,0,1,f +1987,6086,0,1,f +1987,61252,4,1,f +1987,6141,182,2,f +1987,6141,297,2,f +1987,6141,182,1,t +1987,6141,297,2,t +1987,61485,0,1,f +1987,6182,15,1,f +1987,62113,0,1,f +1987,63965,70,1,f +1987,64648,179,1,f +1987,64951,70,1,f +1987,6564,71,2,f +1987,84943,148,1,f +1987,85984,15,2,f +1987,86038,15,1,f +1987,87580,71,2,f +1987,87585,70,1,f +1987,88289,308,1,f +1987,92081,308,1,f +1987,92950,71,3,f +1987,95228,34,1,f +1987,970c00,0,1,f +1987,970c00,15,2,f +1987,973pr2825c01,1,2,f +1987,973pr2829c01,4,1,f +1987,98283,320,3,f +1988,5099-1,89,1,f +1988,5107-1,89,1,f +1988,5108-1,89,1,f +1988,5109-1,89,1,f +1991,bwindow01,14,1,f +1991,bwindow01,2,1,f +1991,bwindow01,4,1,f +1991,bwindow01,1,1,f +1991,bwindow01,15,3,f +1993,2431,4,6,f +1993,2654,4,4,f +1993,2654,0,4,f +1993,3003,0,4,f +1993,3005,0,2,f +1993,3008,4,6,f +1993,3008,0,6,f +1993,3010,0,7,f +1993,3010,4,2,f +1993,3010,2,2,f +1993,3023,4,2,f +1993,3023,0,4,f +1993,3024,4,3,f +1993,3028,0,2,f +1993,3029,4,6,f +1993,3030,0,1,f +1993,3031,19,1,f +1993,3033,0,1,f +1993,30503,0,4,f +1993,3068b,4,1,f +1993,3070b,0,1,t +1993,3070b,0,4,f +1993,32249,0,4,f +1993,3623,4,4,f +1993,3626cpr0498,14,1,f +1993,3666,4,12,f +1993,3701,4,4,f +1993,3710,0,8,f +1993,3794b,4,2,f +1993,4162,0,6,f +1993,43093,1,6,f +1993,4445,4,1,f +1993,4477,4,4,f +1993,48336,4,1,f +1993,48336,0,1,f +1993,54200,4,6,f +1993,54200,4,1,t +1993,60479,0,2,f +1993,6111,0,12,f +1993,6111,4,4,f +1993,6112,4,4,f +1993,6112,0,5,f +1993,6141,2,1,t +1993,6141,2,1,f +1993,6636,4,2,f +1993,85984,0,5,f +1993,85984,4,4,f +1993,86035,4,1,f +1993,87079,0,8,f +1993,87079,4,10,f +1993,87081,4,4,f +1993,87081,0,4,f +1993,87580,19,1,f +1993,93552pr0001,70,1,t +1993,93552pr0001,70,1,f +1993,95343,4,1,f +1993,95344,28,1,f +1993,95344,28,1,t +1993,970c00,1,1,f +1993,973pr1580c01,15,1,f +1996,2352,14,2,f +1996,3001,15,24,f +1996,3001,14,26,f +1996,3001,0,18,f +1996,3001,1,27,f +1996,3001,4,24,f +1996,3001pr1,14,1,f +1996,3002,1,8,f +1996,3002,0,4,f +1996,3002,15,8,f +1996,3002,4,8,f +1996,3002,14,8,f +1996,3003,47,2,f +1996,3003,0,16,f +1996,3003,15,20,f +1996,3003,4,22,f +1996,3003,1,22,f +1996,3003,14,22,f +1996,3003pe1,14,2,f +1996,3006,4,2,f +1996,3007,1,2,f +1996,3007,14,2,f +1996,3137c01,0,2,f +1996,3185,14,6,f +1996,3471,2,2,f +1996,3483,0,8,f +1996,3596pb03,15,1,f +1996,3641,0,4,f +1996,4130,14,3,f +1996,4131,4,3,f +1996,4132,14,5,f +1996,4133,4,5,f +1996,4180c02,0,4,f +1996,4201,2,1,f +1996,4202,4,1,f +1996,4204,2,1,f +1996,4727,2,2,f +1996,4728,4,1,f +1996,4728,14,1,f +1996,4730,1,1,f +1996,4743,1,1,f +1996,4743,4,1,f +1996,4744,4,1,f +1996,4744,14,1,f +1996,4745,14,1,f +1996,4747,4,1,f +1996,4748,4,1,f +1996,4960,4,1,f +1996,bfp001,9999,1,f +1996,bfp002,9999,1,f +1997,3010,14,1,f +1997,3020,14,3,f +1997,3020,0,2,f +1997,3023,14,4,f +1997,3023,0,2,f +1997,3023,4,2,f +1997,3030,0,1,f +1997,3032,0,1,f +1997,3034,0,2,f +1997,3034,4,1,f +1997,3035,0,1,f +1997,3037,0,2,f +1997,3038,0,2,f +1997,3039,0,2,f +1997,3040a,0,4,f +1997,3062a,14,8,f +1997,3297,0,1,f +1997,3298,47,1,f +1997,3481,14,2,f +1997,3482,4,6,f +1997,3483,0,6,f +1997,3660a,0,1,f +1997,3700b,0,6,f +1997,3707,79,2,f +1997,69c01,14,2,f +1997,x148,4,2,f +1998,11291,15,1,f +1998,14520,15,2,f +1998,14795,9999,1,t +1998,15068,15,1,f +1998,15207,15,2,f +1998,15530,272,1,f +1998,2412b,72,2,f +1998,2431,15,1,f +1998,2431,33,1,f +1998,3003,71,4,f +1998,3004,14,1,f +1998,3021,15,2,f +1998,3022,72,2,f +1998,3023,72,1,f +1998,3023,1,2,f +1998,3024,182,4,f +1998,3024,182,1,t +1998,3030,71,1,f +1998,3062b,4,1,f +1998,3069b,15,3,f +1998,3069bpr0100,2,2,f +1998,32028,0,4,f +1998,3626cpr0889,14,1,f +1998,3626cpr0892,14,1,f +1998,3626cpr1091,14,1,f +1998,3710,0,1,f +1998,3829c01,1,1,f +1998,41334,0,1,f +1998,44301a,0,2,f +1998,4697b,71,1,t +1998,4697b,71,2,f +1998,50745,15,4,f +1998,50859b,0,1,f +1998,50859b,179,1,f +1998,50860,0,1,f +1998,50860,4,1,f +1998,50861,0,4,f +1998,50862,297,4,f +1998,52036,72,1,f +1998,52501,15,2,f +1998,54200,47,2,f +1998,54200,15,1,t +1998,54200,47,1,t +1998,54200,36,2,f +1998,54200,36,1,t +1998,54200,15,2,f +1998,57783,41,2,f +1998,6014b,71,4,f +1998,60477,72,4,f +1998,6141,71,1,t +1998,6141,71,3,f +1998,61482,71,1,t +1998,61482,71,1,f +1998,6157,71,2,f +1998,85974,70,1,f +1998,87087,4,1,f +1998,87697,0,4,f +1998,92590,28,1,f +1998,92926,2,1,f +1998,92946,15,2,f +1998,970c00,72,2,f +1998,970c00,272,1,f +1998,973pr2501c01,1,1,f +1998,973pr2503c01,0,2,f +1998,98281,15,1,f +1998,98283,28,3,f +2000,13971,71,4,f +2000,22385,179,1,f +2000,2412b,57,1,f +2000,2654,57,1,f +2000,3023,72,2,f +2000,3795,72,1,f +2000,3849,179,1,f +2000,3937,71,1,f +2000,4589,57,2,f +2000,4590,72,1,f +2000,4598,1,1,f +2000,47720,0,2,f +2000,6134,1,1,f +2000,64567,272,1,f +2000,99780,72,1,f +2001,10051,148,1,f +2001,10509pr0002,0,1,f +2001,11089,0,10,f +2001,11211,71,9,f +2001,11212,72,3,f +2001,11435pr0001,70,1,f +2001,11777pr01,70,1,f +2001,11778pr01,70,1,f +2001,13767pr0001,148,1,f +2001,13768,15,1,f +2001,13965,0,2,f +2001,15207,0,4,f +2001,15207,70,1,f +2001,2357,0,2,f +2001,2412b,0,2,f +2001,2431,0,7,f +2001,2449,0,12,f +2001,2454a,0,4,f +2001,2460,0,4,f +2001,2489,70,1,f +2001,2566,0,2,f +2001,2817,0,4,f +2001,2877,0,6,f +2001,3002,0,6,f +2001,3003,70,2,f +2001,3003,71,2,f +2001,3003,72,3,f +2001,3004,0,8,f +2001,3004,72,3,f +2001,3005,71,1,f +2001,3005,0,10,f +2001,3008,72,2,f +2001,3009,0,5,f +2001,3010,0,2,f +2001,3010,72,3,f +2001,3010,19,2,f +2001,30136,0,15,f +2001,30136,308,8,f +2001,3020,0,5,f +2001,3020,70,3,f +2001,3021,70,2,f +2001,3021,72,2,f +2001,3023,70,7,f +2001,3023,0,11,f +2001,30237a,0,4,f +2001,3024,0,7,f +2001,3024,28,7,f +2001,3024,70,5,f +2001,3024,28,2,t +2001,3024,70,3,t +2001,3024,0,2,t +2001,3026,72,1,f +2001,3031,0,2,f +2001,3034,0,2,f +2001,3035,0,4,f +2001,3035,70,2,f +2001,3036,72,1,f +2001,3036,0,1,f +2001,3038,0,2,f +2001,3039,0,4,f +2001,3040b,72,15,f +2001,3040b,0,8,f +2001,30414,0,6,f +2001,30414,71,4,f +2001,3045,72,1,f +2001,3048c,0,6,f +2001,30526,71,3,f +2001,3062b,308,3,f +2001,3062b,72,4,f +2001,3069b,72,2,f +2001,3069b,0,19,f +2001,3070b,72,14,f +2001,3070b,0,2,f +2001,3070b,0,1,t +2001,3070b,72,2,t +2001,32000,71,3,f +2001,32028,0,2,f +2001,32064b,320,1,f +2001,3245c,19,1,f +2001,32526,0,1,f +2001,32530,0,1,f +2001,3460,0,3,f +2001,3622,0,10,f +2001,3622,72,2,f +2001,3623,70,4,f +2001,3626bpr0895,15,2,f +2001,3626cpr0980,28,2,f +2001,3626cpr0988,78,1,f +2001,3626cpr1253,78,1,f +2001,3626cpr1255,19,1,f +2001,3659,0,2,f +2001,3660,70,2,f +2001,3665,70,4,f +2001,3665,0,12,f +2001,3666,70,3,f +2001,3666,72,2,f +2001,3666,0,2,f +2001,3673,71,4,f +2001,3673,71,2,t +2001,3679,71,1,f +2001,3680,0,1,f +2001,3700,0,2,f +2001,3710,0,4,f +2001,3710,70,6,f +2001,3795,308,2,f +2001,3795,0,1,f +2001,3830,72,4,f +2001,3831,72,4,f +2001,3832,70,2,f +2001,3941,0,1,f +2001,3958,70,1,f +2001,4085c,0,10,f +2001,4085c,72,4,f +2001,4150,0,1,f +2001,4162,0,15,f +2001,41770,0,1,f +2001,4274,71,4,f +2001,4274,71,1,t +2001,4286,72,1,f +2001,4286,0,2,f +2001,43723,0,3,f +2001,4460b,72,3,f +2001,4491b,72,1,f +2001,4497,308,2,f +2001,4510,0,2,f +2001,4519,71,1,f +2001,4865b,0,2,f +2001,49668,0,16,f +2001,50231,15,1,f +2001,50231,0,1,f +2001,50231pr003,320,1,f +2001,53451,0,10,f +2001,53451,0,4,t +2001,54200,0,48,f +2001,54200,72,6,f +2001,54200,0,3,t +2001,54200,72,1,t +2001,54383,72,2,f +2001,54384,72,2,f +2001,59232,179,1,f +2001,60477,0,4,f +2001,60583b,0,2,f +2001,60752,179,1,f +2001,6111,0,2,f +2001,61406pat0006,0,4,f +2001,6141,71,4,f +2001,6141,71,1,t +2001,6231,0,2,f +2001,63965,15,1,f +2001,64647,57,2,t +2001,64647,57,2,f +2001,6541,0,12,f +2001,6636,70,1,f +2001,85984,0,10,f +2001,87079,0,7,f +2001,87087,0,22,f +2001,87087,72,4,f +2001,87580,72,2,f +2001,87580,70,1,f +2001,87620,0,6,f +2001,88283,308,1,f +2001,88289,308,1,f +2001,93160,15,1,t +2001,93160,15,1,f +2001,93273,72,3,f +2001,95228,40,1,f +2001,96874,25,1,t +2001,970c00,15,1,f +2001,970c00,308,2,f +2001,970c00pr0536,0,1,f +2001,970c00pr0538,72,1,f +2001,973pr2063c01,308,2,f +2001,973pr2425c01,0,1,f +2001,973pr2426c01,15,1,f +2001,973pr2427c01,272,1,f +2001,98141,0,2,f +2001,98370,179,1,f +2001,98370,148,1,f +2001,98560,72,1,f +2002,2340,0,2,f +2002,2348b,33,2,f +2002,2349a,0,2,f +2002,2357,0,2,f +2002,2399,4,1,f +2002,2412b,14,3,f +2002,2412b,0,1,f +2002,2415,7,1,f +2002,2421,7,1,f +2002,2431,0,2,f +2002,2431,4,2,f +2002,2432,7,1,f +2002,2432,14,1,f +2002,2436,4,1,f +2002,2437,41,1,f +2002,2446,4,2,f +2002,2447,41,2,f +2002,2460,0,1,f +2002,2479,7,1,f +2002,2483,41,1,f +2002,2507,41,1,f +2002,2540,0,1,f +2002,2555,7,1,f +2002,298c02,0,2,f +2002,298c03,7,3,f +2002,3003,7,1,f +2002,3003,0,2,f +2002,3004,0,3,f +2002,3004,7,2,f +2002,3005,0,4,f +2002,3010,0,1,f +2002,3020,14,3,f +2002,3020,4,2,f +2002,3020,0,3,f +2002,3022,14,1,f +2002,3022,7,1,f +2002,3022,4,2,f +2002,3022,0,2,f +2002,3023,4,2,f +2002,3023,14,8,f +2002,3024,0,4,f +2002,3024,4,2,f +2002,3034,0,1,f +2002,3035,0,1,f +2002,3037,0,1,f +2002,3039,0,1,f +2002,3039,7,1,f +2002,3039pc5,7,1,f +2002,3069b,4,1,f +2002,3070b,46,2,f +2002,3070b,34,2,f +2002,3070b,0,2,f +2002,3070b,14,4,f +2002,3070b,36,6,f +2002,3139,0,5,f +2002,3176,0,1,f +2002,3188,0,1,f +2002,3189,0,1,f +2002,3298,4,2,f +2002,3460,0,2,f +2002,3464,47,1,f +2002,3585,0,1,f +2002,3586,0,1,f +2002,3622,0,4,f +2002,3623,0,5,f +2002,3623,14,4,f +2002,3626bp04,14,1,f +2002,3626bpr0001,14,2,f +2002,3660,4,1,f +2002,3660,7,1,f +2002,3665,0,2,f +2002,3666,4,2,f +2002,3679,7,1,f +2002,3680,0,1,f +2002,3710,4,3,f +2002,3710,0,8,f +2002,3710,14,1,f +2002,3747a,0,5,f +2002,3788,0,1,f +2002,3794a,4,2,f +2002,3795,0,1,f +2002,3795,14,1,f +2002,3821,0,1,f +2002,3822,0,1,f +2002,3829c01,14,1,f +2002,3832,0,2,f +2002,3935,0,1,f +2002,3936,0,1,f +2002,3962b,0,2,f +2002,4070,4,4,f +2002,4085c,0,4,f +2002,4162,7,2,f +2002,4211,0,1,f +2002,4275b,0,2,f +2002,4276b,0,2,f +2002,4286,0,2,f +2002,4287,0,2,f +2002,4315,0,4,f +2002,4449,7,6,f +2002,4477,14,2,f +2002,4477,0,1,f +2002,4477,4,4,f +2002,4485,4,1,f +2002,4488,0,1,f +2002,4600,0,2,f +2002,4624,7,4,f +2002,4854,0,1,f +2002,4855,0,2,f +2002,4856a,0,2,f +2002,4859,4,2,f +2002,4859,0,2,f +2002,4864a,0,6,f +2002,4864a,14,4,f +2002,4865a,0,2,f +2002,4868a,0,2,f +2002,4869,7,2,f +2002,4870,7,2,f +2002,4871,0,1,f +2002,57503,334,2,f +2002,57504,334,2,f +2002,57505,334,2,f +2002,57506,334,2,f +2002,6014a,15,4,f +2002,6015,0,4,f +2002,6140,7,2,f +2002,6141,36,1,f +2002,970c00,0,1,f +2002,970c00,4,2,f +2002,973c11,0,1,f +2002,973p13c02,4,2,f +2004,2536,7,2,f +2004,2723,0,1,f +2004,2780,0,4,f +2004,2780,0,1,t +2004,2853,7,2,f +2004,32015,7,2,f +2004,32062,0,4,f +2004,32065,7,2,f +2004,32073,7,5,f +2004,32123b,7,1,t +2004,32123b,7,12,f +2004,32184,7,1,f +2004,32184,0,1,f +2004,32198,7,2,f +2004,32291,8,2,f +2004,32310,19,1,f +2004,32348,0,1,f +2004,32449,7,2,f +2004,32527,19,1,f +2004,32528,19,1,f +2004,32551,8,2,f +2004,3705,0,3,f +2004,3706,0,1,f +2004,3713,7,1,t +2004,3713,7,2,f +2004,3941,0,1,f +2004,4150,7,1,f +2004,41669,36,2,f +2004,41669,4,2,f +2004,41677,7,2,f +2004,41677,0,4,f +2004,42003,0,2,f +2004,43093,1,7,f +2004,44292,7,2,f +2004,44308,0,2,f +2004,4519,7,5,f +2004,6536,7,1,f +2004,6632,7,11,f +2004,motor8,0,1,f +2010,3001,1,1,f +2010,3002,1,1,f +2010,3003pe2,14,1,f +2010,3010,4,2,f +2010,3039,14,1,f +2010,3626bpr0001,14,1,f +2010,3747a,1,2,f +2010,3795,4,1,f +2010,3957a,7,1,f +2010,4485,4,1,f +2010,4730,1,1,f +2010,4745,14,1,f +2010,6215,2,1,f +2010,970c00,4,1,f +2010,973c25,2,1,f +2011,122c01,0,6,f +2011,210,2,1,f +2011,3001a,1,2,f +2011,3001a,4,1,f +2011,3002a,4,1,f +2011,3003,14,1,f +2011,3004,47,2,f +2011,3004,4,6,f +2011,3004,1,2,f +2011,3004,14,46,f +2011,3005,14,38,f +2011,3008,14,7,f +2011,3009,14,13,f +2011,3009,4,2,f +2011,3010,14,10,f +2011,3010ap04,14,1,f +2011,3010pb035e,4,2,f +2011,3020,14,4,f +2011,3020,4,3,f +2011,3021,4,1,f +2011,3022,0,1,f +2011,3022,4,3,f +2011,3023,14,6,f +2011,3023,0,1,f +2011,3023,4,6,f +2011,3024,4,8,f +2011,3027,0,3,f +2011,3030,0,4,f +2011,3030,4,1,f +2011,3031,4,1,f +2011,3034,14,6,f +2011,3036,0,1,f +2011,3040b,0,1,f +2011,3062a,33,2,f +2011,3062a,4,2,f +2011,3062a,0,2,f +2011,3069b,0,3,f +2011,3144,79,1,f +2011,3149c01,4,1,f +2011,3183a,4,1,f +2011,3184,4,1,f +2011,3185,14,3,f +2011,3470,2,1,f +2011,3581,14,6,f +2011,3582,4,2,f +2011,3596,15,1,f +2011,3622,14,17,f +2011,3626bpr0001,14,4,f +2011,3633,7,4,f +2011,3641,0,12,f +2011,3644,4,4,f +2011,3659,14,4,f +2011,3660,4,2,f +2011,3660,14,2,f +2011,3665,14,6,f +2011,3666,4,2,f +2011,3673,7,2,f +2011,3679,7,1,f +2011,3680,4,1,f +2011,3700,14,2,f +2011,3710,4,8,f +2011,3788,4,6,f +2011,3795,4,1,f +2011,3795,1,1,f +2011,3795,0,2,f +2011,3823,47,1,f +2011,3830,14,2,f +2011,3831,14,2,f +2011,3832,0,2,f +2011,3834,0,4,f +2011,3835,7,1,f +2011,3837,8,1,f +2011,3838,7,1,f +2011,3841,8,1,f +2011,3853,4,2,f +2011,3854,4,4,f +2011,3857,2,1,f +2011,3861b,4,2,f +2011,397,2,1,f +2011,420,7,1,f +2011,421,7,1,f +2011,7284,15,1,f +2011,970c00,0,4,f +2011,973c18,0,4,f +2013,30162,4,1,f +2013,3626cpr1485,14,1,f +2013,87991,308,1,f +2013,88646,0,1,f +2013,90395,4,1,f +2013,970c00pr0716,14,1,f +2013,973pr2754c01,14,1,f +2015,32062,0,6,f +2015,32173,8,2,f +2015,32174,4,10,f +2015,32174,57,1,f +2015,32270,7,1,f +2015,3737,0,1,f +2015,3749,19,4,f +2015,44135,8,1,f +2015,44136,8,1,f +2015,44138,4,2,f +2015,44139,8,1,f +2015,44140,4,1,f +2015,44143,179,1,f +2015,44148,8,2,f +2015,44247,8,1,f +2015,44807,4,1,f +2015,44808,179,2,f +2015,4519,7,3,f +2015,45749,8,2,f +2015,6538b,8,1,f +2015,kraataund,134,1,f +2015,turahkcd,9999,1,f +2016,17347pr0002,226,1,f +2016,3626cpr1483,14,1,f +2016,88646,0,1,f +2016,973pr2752c01,323,1,f +2016,98376pr0001,322,1,f +2016,98383,297,1,f +2017,3036,15,6,f +2020,15530,272,1,f +2020,3626cpr0645,14,1,f +2020,3899,4,1,f +2020,61482,71,1,f +2020,970c00,272,1,f +2020,973pr2501c01,1,1,f +2021,3024,46,2,f +2021,3024,34,2,f +2021,3024,33,2,f +2021,3024,36,2,f +2021,3062b,34,2,f +2021,3062b,36,2,f +2021,3062b,33,2,f +2021,3062b,46,2,f +2021,4589,36,4,f +2021,4589,46,4,f +2021,4589,33,4,f +2021,4740,46,4,f +2021,4740,33,4,f +2021,4740,36,4,f +2021,6141,47,4,f +2021,6141,36,4,f +2021,6141,34,4,f +2021,6141,46,4,f +2022,3001a,0,3,f +2022,3002a,0,2,f +2022,3004,47,2,f +2022,3005,0,8,f +2022,3005,47,2,f +2022,3008,0,2,f +2022,3009,0,7,f +2022,3010,0,1,f +2022,3020,0,8,f +2022,3021,0,7,f +2022,3022,14,1,f +2022,3022,0,2,f +2022,3023,4,4,f +2022,3023,0,9,f +2022,3024,4,2,f +2022,3024,0,2,f +2022,3039,0,1,f +2022,3040a,0,4,f +2022,3058b,7,1,f +2022,3062a,0,1,f +2022,3087bc01,4,2,f +2022,458,7,4,f +2022,468c01,0,1,f +2022,7049b,15,2,f +2022,737ac01,4,2,f +2022,737ac02,4,1,f +2022,996ac01,4,4,f +2022,996ac01,1,4,f +2022,wheel1a,4,4,f +2022,wheel1b,4,4,f +2022,x466,15,2,f +2022,x579c02,0,1,f +2022,x869b,15,1,f +2022,x870a,0,1,f +2022,x871a,47,1,f +2024,2412b,0,2,f +2024,2456,7,1,f +2024,2456,2,1,f +2024,2625,0,1,f +2024,2626,2,1,f +2024,298c02,14,2,f +2024,298c02,14,1,t +2024,3001,2,2,f +2024,3002,0,3,f +2024,3003,2,7,f +2024,3004,7,1,f +2024,3004,1,1,f +2024,3004,2,2,f +2024,3007,7,1,f +2024,30167,6,1,f +2024,3020,7,2,f +2024,3021,0,2,f +2024,3032,0,1,f +2024,3039,2,3,f +2024,3040b,15,4,f +2024,3040b,2,4,f +2024,30464,2,1,f +2024,3048c,2,2,f +2024,30526,7,1,f +2024,3068b,4,3,f +2024,32000,0,1,f +2024,32059,0,1,f +2024,3298,2,2,f +2024,3403,0,1,f +2024,3404,0,1,f +2024,3622,0,1,f +2024,3623,2,2,f +2024,3626bp69,14,1,f +2024,3626bpr0098,14,1,f +2024,3665,15,6,f +2024,3684,2,4,f +2024,3702,7,1,f +2024,3703,0,1,f +2024,3795,0,1,f +2024,3958,7,1,f +2024,4079,15,1,f +2024,4485,1,1,f +2024,4589,15,2,f +2024,6141,36,1,f +2024,6141,34,1,t +2024,6141,34,1,f +2024,6141,36,1,t +2024,6232,7,1,f +2024,6249,8,1,f +2024,6251,15,1,f +2024,6541,2,4,f +2024,6564,2,2,f +2024,6565,2,2,f +2024,970c00,1,1,f +2024,970c00,0,1,f +2024,973pa6c01,19,1,f +2024,973px75c01,15,1,f +2026,2446,28,1,f +2026,2587pb06,4,1,f +2026,3020,0,1,f +2026,30236,320,1,f +2026,30237a,0,1,f +2026,3031,70,1,f +2026,3040b,320,2,f +2026,3069b,320,1,t +2026,3069b,320,2,f +2026,3626bpb0217,14,1,f +2026,3626bpb0220,14,1,f +2026,3673,71,2,f +2026,3673,71,1,t +2026,3700,0,2,f +2026,3702,0,2,f +2026,3705,0,1,f +2026,3749,19,1,t +2026,3749,19,2,f +2026,3795,0,1,f +2026,3795,70,1,f +2026,3846pb16,151,1,f +2026,3848,0,1,f +2026,4095,15,1,f +2026,41530,57,1,f +2026,41753,72,1,t +2026,42023,70,2,f +2026,4491b,72,1,f +2026,4495a,112,1,f +2026,48487,4,1,f +2026,48492,4,1,f +2026,48493,0,1,f +2026,48495,137,1,f +2026,49668,135,1,t +2026,49668,135,2,f +2026,6222,70,2,f +2026,75998pr0007,15,1,f +2026,85544,4,1,f +2026,970x138,4,1,f +2026,970x154,0,1,f +2026,973c39,4,1,f +2026,973pb0347c01,0,1,f +2027,3023,70,1,f +2027,3710,70,2,f +2027,3710,15,2,f +2027,3741,2,1,t +2027,3741,2,1,f +2027,3742,4,3,f +2027,3742,4,1,t +2027,6141,15,1,f +2027,6141,15,1,t +2027,87580,15,1,f +2027,93555,179,1,t +2027,93555,179,4,f +2028,3001a,4,8,f +2028,3001a,15,8,f +2028,3002a,15,3,f +2028,3002a,4,3,f +2028,3003,4,3,f +2028,3003,15,3,f +2028,3004,4,3,f +2028,3004,15,3,f +2028,733ex,7,1,f +2033,3009,15,50,f +2035,44294,71,50,f +2038,2543,0,1,f +2038,3626bpr0389,14,1,f +2038,970c00,2,1,f +2038,973pr1440c01,1,1,f +2039,3001a,4,1,f +2039,3003,15,9,f +2039,3004,4,4,f +2039,3004,15,33,f +2039,3004,47,1,f +2039,3004p50,4,5,f +2039,3005,4,8,f +2039,3005,15,8,f +2039,3005,47,2,f +2039,3008,15,3,f +2039,3009,15,9,f +2039,3010,15,22,f +2039,3010,4,11,f +2039,3010,47,1,f +2039,3010p30,15,1,f +2039,3010pb035e,4,3,f +2039,3020,4,3,f +2039,3021,0,2,f +2039,3022,4,1,f +2039,3023,4,10,f +2039,3024,14,3,f +2039,3024,1,3,f +2039,3029,4,1,f +2039,3029,0,6,f +2039,3030,4,1,f +2039,3031,4,5,f +2039,3032,4,1,f +2039,3032,15,1,f +2039,3032,0,1,f +2039,3035,4,2,f +2039,3035,0,2,f +2039,3037,47,2,f +2039,3040a,4,4,f +2039,3062a,14,2,f +2039,3068a,7,5,f +2039,3069a,7,1,f +2039,3081cc01,4,10,f +2039,3137c01,0,6,f +2039,3137c02,0,3,f +2039,3139,0,12,f +2039,3149c01,4,1,f +2039,3183a,4,3,f +2039,3184,4,3,f +2039,3188,4,1,f +2039,3189,4,1,f +2039,32bc01,4,1,f +2039,3308,15,6,f +2039,3404ac01,4,1,f +2039,3455,15,1,f +2039,420,14,1,f +2039,421,14,1,f +2039,777px7ridged,15,1,f +2039,7b,0,6,f +2039,915p01,2,1,f +2040,2362a,40,2,f +2040,2432,4,2,f +2040,2540,4,1,f +2040,2819,7,1,f +2040,2921,4,1,f +2040,3001,15,2,f +2040,3002,7,1,f +2040,3003,2,1,f +2040,3004,15,2,f +2040,3005,15,3,f +2040,3007,15,1,f +2040,3009,15,2,f +2040,3010,15,2,f +2040,3020,7,1,f +2040,3021,0,4,f +2040,3021,15,4,f +2040,3022,4,5,f +2040,3023,15,3,f +2040,30237a,15,4,f +2040,3032,0,1,f +2040,3039,15,1,f +2040,30488,7,1,f +2040,30488c01,15,1,f +2040,30492,2,2,f +2040,30503,15,2,f +2040,3068b,2,4,f +2040,32064b,7,1,f +2040,32123b,7,1,t +2040,32123b,7,1,f +2040,32293,0,1,f +2040,32524,4,1,f +2040,33291,15,5,f +2040,3403c01,0,1,f +2040,3626bpa3,14,1,f +2040,3626bpx33,14,1,f +2040,3705,0,1,f +2040,3706,0,1,f +2040,3710,4,4,f +2040,3710,7,1,f +2040,3710,0,1,f +2040,3731,7,1,f +2040,3900,15,4,f +2040,3901,0,1,f +2040,3937,7,1,f +2040,3938,4,1,f +2040,4032a,15,1,f +2040,41752,8,1,f +2040,4204,2,1,f +2040,42073cx1,8,1,f +2040,4215b,40,2,f +2040,42411a,14,2,f +2040,42411b,14,2,f +2040,4282,2,1,f +2040,4282,15,1,f +2040,4476b,15,2,f +2040,4485,0,1,f +2040,4729,15,1,f +2040,6182,15,1,f +2040,6628,0,2,f +2040,6632,1,2,f +2040,71509,0,4,f +2040,72824p01,15,3,f +2040,970c00,1,1,f +2040,970c00,8,1,f +2040,973pb0165c01,0,1,f +2040,973pb0172c01,15,1,f +2041,2412b,72,1,f +2041,2412b,15,4,f +2041,2420,0,4,f +2041,2431,15,3,f +2041,2431,72,2,f +2041,2431,71,5,f +2041,2432,0,1,f +2041,2436,71,2,f +2041,2525,15,1,f +2041,2540,0,2,f +2041,2540,1,2,f +2041,2555,0,2,f +2041,3003,15,1,f +2041,3004,0,2,f +2041,3008,15,2,f +2041,3010,15,6,f +2041,3020,15,2,f +2041,3020,71,2,f +2041,3021,4,2,f +2041,3022,1,1,f +2041,3022,71,4,f +2041,3023,72,2,f +2041,3023,1,2,f +2041,3023,15,5,f +2041,30237b,71,1,f +2041,30259,71,2,f +2041,3030,71,1,f +2041,3031,72,1,f +2041,3032,71,1,f +2041,30355,15,1,f +2041,30356,15,1,f +2041,30359b,47,2,f +2041,30361pr0008,72,1,f +2041,30362,72,2,f +2041,30367cpr0015,272,1,f +2041,3037,15,2,f +2041,30374,52,1,f +2041,30374,15,1,f +2041,30375,19,2,f +2041,30376,19,2,f +2041,30377,19,1,t +2041,30377,272,2,f +2041,30377,19,4,f +2041,30377,272,1,t +2041,30378,19,2,f +2041,3039pr0014,0,1,f +2041,30554b,0,3,f +2041,30602,1,2,f +2041,30602,71,1,f +2041,3062b,41,2,f +2041,3062b,19,2,f +2041,3068b,320,4,f +2041,3068b,28,2,f +2041,3068b,1,2,f +2041,3069b,320,4,f +2041,3069b,1,2,f +2041,3069b,19,3,f +2041,3070b,1,1,t +2041,3070b,1,1,f +2041,3176,72,1,f +2041,32000,72,2,f +2041,32039,0,2,f +2041,32062,4,2,f +2041,32073,71,2,f +2041,32123b,71,1,t +2041,32123b,71,4,f +2041,3460,72,2,f +2041,3623,71,8,f +2041,3626bpr0571,70,1,f +2041,3666,71,2,f +2041,3701,72,1,f +2041,3710,72,8,f +2041,3710,272,2,f +2041,3794a,1,1,f +2041,3794b,0,2,f +2041,3795,1,1,f +2041,3795,0,2,f +2041,3839b,71,1,f +2041,3839b,72,2,f +2041,3937,71,2,f +2041,3938,0,1,f +2041,3941,47,1,f +2041,3960,47,2,f +2041,4150pr0005,15,1,f +2041,4162,71,2,f +2041,41747,71,1,f +2041,41748,71,1,f +2041,41767,72,1,f +2041,41768,72,1,f +2041,41883,40,1,f +2041,42023,72,2,f +2041,42687,272,1,f +2041,43093,1,2,f +2041,43337,71,2,f +2041,4349,72,4,f +2041,43712,71,1,f +2041,43719,15,3,f +2041,44300,72,3,f +2041,44302a,15,2,f +2041,44568,15,2,f +2041,44676,272,4,f +2041,44728,72,4,f +2041,4477,71,2,f +2041,4477,72,2,f +2041,4589,52,4,f +2041,4599b,0,2,f +2041,4600,71,1,f +2041,4697b,71,4,f +2041,4697b,71,1,t +2041,4733,1,4,f +2041,4735,71,2,f +2041,4855,72,1,f +2041,4865a,0,2,f +2041,4868b,71,2,f +2041,50950,1,4,f +2041,50955,71,1,f +2041,50956,71,1,f +2041,54200,1,1,t +2041,54200,47,1,f +2041,54200,47,1,t +2041,54200,1,2,f +2041,54200,71,1,t +2041,54200,71,1,f +2041,54383,15,3,f +2041,54384,15,3,f +2041,58247,0,2,t +2041,59230,19,3,t +2041,59443,72,2,f +2041,6019,71,2,f +2041,60471,15,5,f +2041,60479,15,2,f +2041,6081,288,2,f +2041,6091,288,2,f +2041,6091,15,2,f +2041,61184,71,4,f +2041,6134,71,1,f +2041,61409,0,2,f +2041,6141,0,1,t +2041,6141,0,2,f +2041,6141,71,4,f +2041,6141,71,1,t +2041,6232,71,2,f +2041,62462,15,2,f +2041,63864,320,2,f +2041,63868,71,2,f +2041,64567,80,1,f +2041,64567,71,4,f +2041,6541,72,2,f +2041,6636,71,1,f +2041,85984,15,2,f +2041,87087,71,6,f +2041,89973pr0001,272,1,f +2041,970c00,28,1,f +2041,973pr1459c01,28,1,f +2042,3024,36,2,f +2042,3024,34,2,f +2042,3024,46,2,f +2042,3024,33,2,f +2042,3062b,46,2,f +2042,3062b,33,2,f +2042,3062b,36,2,f +2042,3062b,34,2,f +2042,4589,36,3,f +2042,4589,42,3,f +2042,4589,46,3,f +2042,4589,33,3,f +2042,4740,42,3,f +2042,4740,33,3,f +2042,4740,36,3,f +2042,4740,46,3,f +2042,6141,42,2,f +2042,6141,34,2,f +2042,6141,47,2,f +2042,6141,36,2,f +2042,6141,46,2,f +2045,57570,135,2,f +2045,60176,0,2,f +2045,60895,0,1,f +2045,60896,272,4,f +2045,60901,57,1,f +2045,60902,0,2,f +2045,60907pat0001,272,1,f +2045,60909,0,1,f +2046,2412b,72,1,f +2046,2432,14,1,f +2046,3023,71,1,f +2046,32123b,71,1,t +2046,32123b,71,8,f +2046,3626bpr0270,14,1,f +2046,3702,14,2,f +2046,3795,72,1,f +2046,3829c01,14,1,f +2046,3833,4,1,f +2046,3957a,71,1,f +2046,41531,71,4,f +2046,4589,182,1,f +2046,4871,14,1,f +2046,6249,71,1,f +2046,6587,72,4,f +2046,970c00,1,1,f +2046,973pr1244c01,73,1,f +2047,2357,71,4,f +2047,2431,2,6,f +2047,2445,72,4,f +2047,3004,71,4,f +2047,3005,72,8,f +2047,3005,71,4,f +2047,3010,72,4,f +2047,3021,0,8,f +2047,3023,72,4,f +2047,3034,72,2,f +2047,30488,15,1,f +2047,30488,0,1,f +2047,30488c01,0,1,f +2047,30488c01,15,1,f +2047,30489,2,4,f +2047,30492,2,2,f +2047,30493,0,2,f +2047,30608,0,1,f +2047,3068b,2,20,f +2047,3069b,2,16,f +2047,3070b,15,1,t +2047,3070b,15,4,f +2047,3185,0,12,f +2047,32002,72,2,f +2047,32002,72,1,t +2047,32062,4,2,f +2047,3245b,72,8,f +2047,3460,71,8,f +2047,3626bpr0136,14,1,f +2047,3626bpr0216,14,1,f +2047,3626bpr0252,14,1,f +2047,3626bpr0387,14,1,f +2047,3633,0,2,f +2047,3666,4,2,f +2047,3666,72,4,f +2047,3709,72,16,f +2047,3710,0,8,f +2047,3795,72,4,f +2047,41334,0,1,f +2047,41752,72,1,f +2047,4485,4,1,f +2047,4485,1,1,f +2047,48294,15,2,f +2047,48298,15,4,f +2047,53533,0,2,f +2047,6536,71,2,f +2047,72824p01,15,1,f +2047,72824pr04,23,1,f +2047,85543,15,2,f +2047,970c00,379,1,f +2047,970c00,4,1,f +2047,970c00,0,1,f +2047,970c00,72,1,f +2047,973c01,1,1,f +2047,973c02,4,1,f +2047,973c07,1,1,f +2047,973c10,0,1,f +2048,164stk01,9999,1,t +2048,3004,0,8,f +2048,3004,47,2,f +2048,3004,4,12,f +2048,3005,0,4,f +2048,3005,4,16,f +2048,3009,4,4,f +2048,3010,4,10,f +2048,3023,14,12,f +2048,3023,0,2,f +2048,3023,4,4,f +2048,3023,7,6,f +2048,3024,0,8,f +2048,3024,4,4,f +2048,3032,4,1,f +2048,3034,7,2,f +2048,3034,4,2,f +2048,3035,4,2,f +2048,3062a,0,1,f +2048,3192,4,2,f +2048,3193,4,2,f +2048,3297,7,8,f +2048,3298,7,2,f +2048,3460,0,2,f +2048,3488,0,4,f +2048,3624,0,1,f +2048,3625,0,1,f +2048,3626apr0001,14,2,f +2048,3666,4,4,f +2048,3666,0,2,f +2048,3710,4,2,f +2048,3710,0,2,f +2048,736c02,0,1,f +2048,772p01,47,6,f +2048,970c00,1,1,f +2048,970c00,0,1,f +2048,973c01,15,1,f +2048,973c07,1,1,f +2050,3003,15,1,f +2050,3003,14,2,f +2050,3004,4,1,f +2050,3004,15,3,f +2050,3004,2,4,f +2050,3004,14,2,f +2050,3005,6,2,f +2050,3005pe1,15,2,f +2050,3005px2,14,4,f +2050,3010,2,1,f +2050,3020,14,2,f +2050,3020,15,1,f +2050,3021,4,4,f +2050,3021,15,1,f +2050,3022,15,1,f +2050,3022,4,2,f +2050,3023,15,1,f +2050,3039,15,2,f +2050,3039,14,2,f +2050,3040b,4,2,f +2050,3660,14,4,f +2050,3660,15,3,f +2050,3710,6,1,f +2050,3710,2,1,f +2050,3741,10,2,f +2050,3742,15,1,t +2050,3742,5,3,f +2050,3742,5,1,t +2050,3742,15,3,f +2050,3794a,15,2,f +2050,4286,4,1,f +2053,11089,71,2,f +2053,11101pat0002,0,1,f +2053,11113pr0004,0,1,f +2053,11126,4,1,f +2053,11127,41,6,f +2053,11767,72,1,f +2053,14290pr0002,0,1,f +2053,2423,2,1,f +2053,2431,0,2,f +2053,2654,0,1,f +2053,2780,0,1,t +2053,2780,0,2,f +2053,3004,1,1,f +2053,3020,72,1,f +2053,3021,0,3,f +2053,3022,1,1,f +2053,3023,15,1,f +2053,30390b,72,1,f +2053,3048c,0,2,f +2053,3062b,41,1,f +2053,3068b,15,1,f +2053,32039,71,1,f +2053,32059,72,1,f +2053,32062,4,1,f +2053,32064b,72,2,f +2053,3298,4,1,f +2053,3623,71,4,f +2053,3626cpr1202,0,1,f +2053,3665,71,2,f +2053,3666,70,1,f +2053,3700,71,2,f +2053,3706,0,1,f +2053,3795,71,1,f +2053,4032a,4,2,f +2053,4081b,27,2,f +2053,4081b,15,2,f +2053,4085c,15,2,f +2053,4085c,4,2,f +2053,44728,71,1,f +2053,4497,308,1,f +2053,47457,71,3,f +2053,51739,71,2,f +2053,53451,15,2,f +2053,53451,15,1,t +2053,54200,15,2,f +2053,54200,15,1,t +2053,54200,36,2,f +2053,54200,36,1,t +2053,54383,72,1,f +2053,54384,72,1,f +2053,54821,143,1,f +2053,55236,288,4,f +2053,6021445,9999,1,f +2053,6021446,9999,1,f +2053,6021447,9999,1,f +2053,6021448,9999,1,f +2053,6021449,9999,1,f +2053,60474,1,1,f +2053,6141,4,1,t +2053,6141,72,2,f +2053,6141,72,1,t +2053,6141,4,2,f +2053,6180,0,1,f +2053,85984,71,1,f +2053,87747,15,1,t +2053,87747,15,2,f +2053,88704,70,1,f +2053,93274,27,1,f +2053,970c00pr0444,0,1,f +2053,973pr2352c01,0,1,f +2055,2736,71,2,f +2055,2780,0,1,t +2055,2780,0,8,f +2055,32002,72,1,t +2055,32002,72,2,f +2055,32062,4,4,f +2055,43093,1,2,f +2055,47297,0,2,f +2055,47306,191,1,f +2055,49423,0,2,f +2055,53542,191,2,f +2055,53545,0,1,f +2055,53548,191,2,f +2055,57544,191,2,f +2055,60176,0,2,f +2055,61053,0,2,f +2055,61802,191,1,f +2055,64251,191,2,f +2055,64262,143,1,f +2055,64275,135,2,f +2055,64276,0,1,f +2055,64277c01,297,1,f +2055,64292,191,2,f +2055,64299,191,2,f +2055,64299,135,2,f +2055,64304,191,1,f +2055,64311,191,2,f +2055,64889pr0001,135,1,f +2056,2342,7,2,f +2056,2342,0,1,f +2056,2343,0,2,f +2056,298c02,7,4,f +2056,298c04,15,2,f +2056,3001,7,2,f +2056,3003,7,8,f +2056,3004,7,5,f +2056,3010,7,9,f +2056,3020,7,3,f +2056,3021,7,4,f +2056,3022,7,7,f +2056,3023,7,7,f +2056,3023,0,2,f +2056,3024,34,6,f +2056,3024,36,10,f +2056,3029,7,1,f +2056,3031,7,1,f +2056,3034,7,2,f +2056,3035,7,1,f +2056,3037,7,2,f +2056,3039,7,3,f +2056,3039p05,7,4,f +2056,3039p34,7,1,f +2056,3040b,7,12,f +2056,3063b,7,8,f +2056,3068b,7,4,f +2056,3068b,0,2,f +2056,3069bp25,7,1,f +2056,3070b,34,4,f +2056,3070b,36,4,f +2056,3298p90,7,1,f +2056,3475b,0,2,f +2056,3612,7,5,f +2056,3623,7,8,f +2056,3626apr0001,14,2,f +2056,3639,7,2,f +2056,3640,7,2,f +2056,3679,7,6,f +2056,3680,7,6,f +2056,3700,7,4,f +2056,3706,0,2,f +2056,3710,7,4,f +2056,3747a,7,6,f +2056,3795,7,5,f +2056,3832,7,1,f +2056,3838,1,1,f +2056,3838,4,1,f +2056,3842b,4,1,f +2056,3842b,1,1,f +2056,3935,7,2,f +2056,3936,7,2,f +2056,3941,15,6,f +2056,3941,0,2,f +2056,3942b,0,2,f +2056,3942b,15,2,f +2056,3957a,36,2,f +2056,3963,0,2,f +2056,4070,7,8,f +2056,4085b,7,4,f +2056,4220,7,1,f +2056,4221,0,2,f +2056,4315,7,1,f +2056,4345a,7,2,f +2056,4346,7,2,f +2056,4448,34,4,f +2056,4448,0,4,f +2056,4474,34,1,f +2056,4589,15,2,f +2056,4589,36,2,f +2056,4589,0,2,f +2056,4595,0,4,f +2056,4623,7,2,f +2056,4730,7,2,f +2056,4740,36,2,f +2056,4740,0,2,f +2056,4741,7,4,f +2056,4859,7,2,f +2056,4865a,7,4,f +2056,73590c01a,7,2,f +2056,792c01,7,1,f +2056,970c00,1,1,f +2056,970c00,4,1,f +2056,973p90c02,4,1,f +2056,973pr1594c01,1,1,f +2057,2412b,15,2,f +2057,2456,71,1,f +2057,2540,71,4,f +2057,3003,71,2,f +2057,3003,70,2,f +2057,3003,27,3,f +2057,3004,73,3,f +2057,3004,70,2,f +2057,3004,19,4,f +2057,3004,14,8,f +2057,3004,71,5,f +2057,3005,27,2,f +2057,3005pr0003,14,2,f +2057,3005pr0003,15,2,f +2057,30089,0,1,f +2057,3010,2,4,f +2057,3020,2,4,f +2057,3020,27,2,f +2057,3021,2,2,f +2057,3021,70,3,f +2057,3022,71,1,f +2057,3022,14,1,f +2057,3022,27,2,f +2057,3023,70,5,f +2057,3023,73,2,f +2057,3023,19,2,f +2057,3023,25,2,f +2057,3023,2,3,f +2057,3032,70,1,f +2057,3035,72,1,f +2057,3039,14,2,f +2057,3039,71,2,f +2057,3040b,71,2,f +2057,3040b,19,2,f +2057,33291,10,1,t +2057,33291,10,2,f +2057,33291,191,2,f +2057,33291,191,1,t +2057,3626bpr0645,14,1,f +2057,3626bpr0677,14,1,f +2057,3633,72,2,f +2057,3660,27,1,f +2057,3660,71,2,f +2057,3710,19,2,f +2057,3794b,2,2,f +2057,3821,2,1,f +2057,3822,2,1,f +2057,3823,47,1,f +2057,3829c01,15,1,f +2057,3839b,15,1,f +2057,4070,19,4,f +2057,4286,2,2,f +2057,4449,0,1,f +2057,4600,0,2,f +2057,4733,15,1,f +2057,49668,191,3,f +2057,54200,4,1,t +2057,54200,14,1,t +2057,54200,4,2,f +2057,54200,14,2,f +2057,60032,19,2,f +2057,6014b,71,4,f +2057,6091,19,2,f +2057,6141,46,2,f +2057,6141,36,1,t +2057,6141,70,4,f +2057,6141,15,2,f +2057,6141,46,1,t +2057,6141,36,2,f +2057,6141,70,1,t +2057,62810,484,1,f +2057,73983,2,1,f +2057,87697,0,4,f +2057,88286,308,1,f +2057,970c00,1,1,f +2057,970c00,4,1,f +2057,973pr1517c01,73,1,f +2057,973pr1724bc01,15,1,f +2059,3626bpr0725,14,1,f +2059,41334,72,1,f +2059,41334,72,1,t +2059,92585,4,1,t +2059,92585,4,1,f +2059,970c00,72,1,f +2059,973pr1197c01,15,1,f +2060,4707pb04,7,1,f +2062,10169,4,1,f +2062,11203,19,2,f +2062,11437,70,1,t +2062,11437,70,1,f +2062,11477,25,2,f +2062,11477,71,1,f +2062,11610,0,2,f +2062,14769,19,1,f +2062,15279,326,1,f +2062,15391,0,1,f +2062,15392,72,2,t +2062,15392,72,3,f +2062,15403,0,2,f +2062,15712,70,1,f +2062,15712,70,1,t +2062,15712,71,4,f +2062,15712,297,4,f +2062,18649,71,4,f +2062,2412b,72,2,f +2062,2432,72,1,f +2062,2436,71,1,f +2062,2524,15,1,f +2062,2540,15,2,f +2062,2780,0,1,t +2062,2780,0,1,f +2062,2877,15,1,f +2062,298c02,0,5,f +2062,298c02,71,1,t +2062,298c02,71,1,f +2062,298c02,0,2,t +2062,3004,484,1,f +2062,3004,71,2,f +2062,30136,71,1,f +2062,30136,308,1,f +2062,30176,2,1,f +2062,3020,72,1,f +2062,3021,72,4,f +2062,3022,72,1,f +2062,3022,15,1,f +2062,3022,71,3,f +2062,3022,70,3,f +2062,3022,19,1,f +2062,3022,0,1,f +2062,3022,484,1,f +2062,3023,0,2,f +2062,3023,308,1,f +2062,3023,71,1,f +2062,3023,28,1,f +2062,3023,72,3,f +2062,3024,72,1,t +2062,3024,47,1,f +2062,3024,4,1,t +2062,3024,33,3,f +2062,3024,33,1,t +2062,3024,4,2,f +2062,3024,71,2,t +2062,3024,72,1,f +2062,3024,47,1,t +2062,3024,71,3,f +2062,3024,40,2,f +2062,3024,40,2,t +2062,3031,19,1,f +2062,30357,19,1,f +2062,30361pr1001,15,1,f +2062,30362,15,2,f +2062,30367cpr1001,179,1,f +2062,30374,35,1,f +2062,30374,41,2,f +2062,30375,72,1,f +2062,30376,72,1,f +2062,30377,72,1,t +2062,30377,72,2,f +2062,30381,70,1,f +2062,30408pr0007,15,1,f +2062,30480ps0,297,1,f +2062,30503,15,1,f +2062,30565,70,1,f +2062,3062b,47,1,f +2062,3062b,70,6,f +2062,3062b,71,3,f +2062,3069b,46,1,f +2062,3069b,0,2,f +2062,3069b,71,1,f +2062,3069bpr0090,72,1,f +2062,3070b,40,1,t +2062,3070b,40,1,f +2062,3070b,72,2,f +2062,3070b,72,1,t +2062,32062,0,2,f +2062,32123b,71,1,f +2062,32123b,71,1,t +2062,32184,71,1,f +2062,32530,0,1,f +2062,3623,71,1,f +2062,3623,70,2,f +2062,3623,4,1,f +2062,3626bpr0854,78,1,f +2062,3626cpr1149,78,1,f +2062,3626cpr1456,0,1,f +2062,3665,70,2,f +2062,3673,71,1,f +2062,3673,71,1,t +2062,3679,71,1,f +2062,3680,0,1,f +2062,3700,70,1,f +2062,3710,72,1,f +2062,3710,28,1,f +2062,3710,70,3,f +2062,3710,71,2,f +2062,3794b,71,3,f +2062,3960,71,1,f +2062,4032a,288,2,f +2062,4032a,70,4,f +2062,4070,71,1,f +2062,4070,70,3,f +2062,41677,0,4,f +2062,41769,71,1,f +2062,41770,71,1,f +2062,41879a,28,1,f +2062,41879a,70,1,f +2062,4274,1,1,f +2062,4274,1,1,t +2062,4286,70,2,f +2062,43898,0,1,f +2062,44358,71,1,f +2062,44359,71,2,f +2062,4499,70,1,f +2062,4595,71,1,f +2062,4595,0,1,f +2062,46304,15,1,t +2062,46304,15,1,f +2062,4733,72,1,f +2062,4740,47,2,f +2062,4740,72,1,f +2062,4740,0,3,f +2062,47905,4,1,f +2062,47905,70,1,f +2062,4865b,41,1,f +2062,48729b,72,2,t +2062,48729b,72,2,f +2062,50950,15,2,f +2062,51739,320,1,f +2062,51739,71,2,f +2062,51739,28,2,f +2062,52107,15,1,f +2062,53451,28,4,f +2062,53451,28,1,t +2062,54200,15,1,t +2062,54200,40,1,t +2062,54200,70,1,t +2062,54200,70,1,f +2062,54200,15,1,f +2062,54200,19,1,t +2062,54200,19,4,f +2062,54200,71,1,f +2062,54200,40,1,f +2062,54200,71,1,t +2062,57899,0,1,f +2062,58247,0,1,f +2062,59900,40,1,f +2062,59900,72,1,f +2062,60897,71,1,f +2062,60897,72,5,f +2062,61252,72,8,f +2062,61409,72,2,f +2062,6141,47,1,t +2062,6141,72,2,t +2062,6141,36,1,f +2062,6141,57,5,f +2062,6141,72,3,f +2062,6141,2,1,t +2062,6141,57,3,t +2062,6141,70,1,t +2062,6141,2,3,f +2062,6141,34,6,f +2062,6141,0,1,t +2062,6141,70,1,f +2062,6141,47,1,f +2062,6141,34,1,t +2062,6141,41,4,f +2062,6141,0,3,f +2062,6141,41,2,t +2062,6141,36,1,t +2062,64567,71,2,f +2062,64567,71,1,t +2062,64805pr0006,28,1,f +2062,6632,72,2,f +2062,85984,15,1,f +2062,85984,70,1,f +2062,85984,71,2,f +2062,86208,71,1,f +2062,87555,15,1,f +2062,87580,72,1,f +2062,88072,71,1,f +2062,88289,308,1,f +2062,90194,71,1,f +2062,92280,4,2,f +2062,92738,0,1,f +2062,92946,72,2,f +2062,93223,15,1,f +2062,93223,15,1,t +2062,970c00pr0693,297,1,f +2062,970c00pr0719,15,1,f +2062,970c00pr0858,71,1,f +2062,973pr2465c01,28,1,f +2062,973pr2723c01,70,1,f +2062,973pr2767c01,15,1,f +2062,973pr3025c01,15,1,f +2062,973pr3026c01,4,1,f +2062,98138,36,1,f +2062,98138,36,1,t +2062,99780,71,1,f +2062,99781,71,1,f +2064,15712,72,2,f +2064,3020,71,1,f +2064,3034,72,1,f +2064,3710,4,2,f +2064,4079,0,1,f +2064,43713,71,2,f +2064,47753,4,2,f +2064,54200,4,6,f +2064,87585,70,1,f +2065,3149c01,4,2,f +2065,3324c01,4,1,f +2066,3626cpr0912,14,1,f +2066,41334,72,1,f +2066,970c00,25,1,f +2066,970c00,0,1,f +2066,970x005,15,1,f +2066,973pr1945ac01,15,1,f +2067,2555,14,2,f +2067,30602,15,1,f +2067,3068b,272,2,f +2067,3626bpr0445,14,1,f +2067,3795,72,1,f +2067,3957a,0,2,f +2067,44302a,14,2,f +2067,44567a,72,2,f +2067,4868b,15,1,f +2067,53981,73,1,f +2067,54383,15,1,f +2067,54384,15,1,f +2067,6141,42,2,f +2067,6239,15,1,f +2067,970c00,272,1,f +2067,973pr1304c01,272,1,f +2068,sh002,9999,1,f +2069,2420,0,2,f +2069,2444,4,4,f +2069,2450,4,4,f +2069,2452,1,2,f +2069,2452,4,4,f +2069,2536,7,2,f +2069,2730,0,4,f +2069,2780,0,26,f +2069,2790,7,1,f +2069,2791,7,1,f +2069,2792,0,1,f +2069,2815,0,2,f +2069,2815,0,1,t +2069,2817,0,1,f +2069,2825,0,8,f +2069,2825,4,4,f +2069,2825,7,2,f +2069,2850a,7,4,f +2069,2851,8,4,f +2069,2852,7,4,f +2069,2853,7,4,f +2069,2854,7,1,f +2069,2902,0,1,f +2069,2903,15,1,f +2069,2904,0,1,f +2069,2905,0,2,f +2069,2997,0,2,f +2069,2998,15,2,f +2069,3020,1,1,f +2069,3021,1,1,f +2069,3022,0,8,f +2069,3023,1,5,f +2069,3023,0,21,f +2069,3024,0,2,f +2069,3031,1,1,f +2069,3032,4,2,f +2069,3034,4,1,f +2069,3623,1,4,f +2069,3647,7,2,f +2069,3648a,7,1,f +2069,3665,4,2,f +2069,3666,0,5,f +2069,3666,7,1,f +2069,3666,1,2,f +2069,3673,7,4,f +2069,3700,0,7,f +2069,3700,7,1,f +2069,3700,4,2,f +2069,3701,7,1,f +2069,3701,0,5,f +2069,3702,0,2,f +2069,3703,0,2,f +2069,3704,0,8,f +2069,3705,0,8,f +2069,3706,0,5,f +2069,3707,0,8,f +2069,3709,0,2,f +2069,3710,7,3,f +2069,3710,1,1,f +2069,3710,0,4,f +2069,3711a,0,1,t +2069,3711a,0,20,f +2069,3713,7,1,t +2069,3713,7,16,f +2069,3737,0,2,f +2069,3749,7,6,f +2069,3794a,0,2,f +2069,3795,4,1,f +2069,3795,0,1,f +2069,3894,4,2,f +2069,3895,0,4,f +2069,3958,1,1,f +2069,4019,7,1,f +2069,4032a,15,1,f +2069,4032a,0,1,f +2069,4081b,0,2,f +2069,4081b,7,2,f +2069,4143,7,4,f +2069,4150p01,15,1,f +2069,4185,7,2,f +2069,4261,7,2,f +2069,4263,0,2,f +2069,4263,4,2,f +2069,4265b,7,37,f +2069,4265b,7,1,t +2069,4273b,7,8,f +2069,4274,7,2,f +2069,4274,7,1,t +2069,4276b,4,4,f +2069,4276b,1,2,f +2069,4287,0,2,f +2069,4442,0,1,f +2069,4504,4,2,f +2069,4519,0,2,f +2069,6141,36,1,t +2069,6141,36,4,f +2069,6536,7,4,f +2069,6538a,7,4,f +2069,6541,7,2,f +2069,6541,0,4,f +2069,6553,7,4,f +2069,73071,7,1,f +2069,73129,7,1,f +2069,73590c01b,14,2,f +2070,3022,4,40,f +2071,2431,1,2,f +2071,2432,1,1,f +2071,2540,71,1,f +2071,3020,0,1,f +2071,3020,71,1,f +2071,3023,15,1,t +2071,3023,15,1,f +2071,30602,40,1,f +2071,4081b,72,2,f +2071,4081b,72,1,t +2071,41769,1,1,f +2071,41770,1,1,f +2071,43713,15,1,f +2071,4871,15,1,f +2071,54200,15,2,f +2071,54200,15,1,t +2071,6141,0,2,t +2071,6141,0,2,f +2072,2412b,36,2,f +2072,2412b,0,1,f +2072,2431,8,2,f +2072,2456,8,1,f +2072,2458,7,2,f +2072,2458,4,6,f +2072,2460,8,3,f +2072,2744,25,2,f +2072,2780,0,7,f +2072,2877,4,4,f +2072,3001,8,1,f +2072,3001,7,3,f +2072,3003,0,1,f +2072,3004,7,4,f +2072,3004,4,2,f +2072,3006,0,1,f +2072,3008,8,2,f +2072,3008,4,4,f +2072,3009,0,2,f +2072,3009,15,1,f +2072,3009,8,2,f +2072,3010,0,2,f +2072,3020,7,1,f +2072,3020,0,1,f +2072,3020,8,3,f +2072,3020,4,3,f +2072,3021,0,4,f +2072,3022,8,2,f +2072,3023,0,2,f +2072,3023,7,18,f +2072,3028,0,1,f +2072,3032,0,1,f +2072,3034,8,2,f +2072,3034,4,1,f +2072,30363,4,1,f +2072,30367b,7,2,f +2072,3037,25,2,f +2072,3038,4,2,f +2072,3039,25,2,f +2072,3040b,8,4,f +2072,3040b,25,4,f +2072,3045,25,2,f +2072,3065,36,2,f +2072,3068b,4,1,f +2072,3069b,4,6,f +2072,32013,8,6,f +2072,32034,0,2,f +2072,32039,0,4,f +2072,32059,4,1,f +2072,32062,15,5,f +2072,32064b,0,6,f +2072,32123b,7,2,f +2072,32123b,7,1,t +2072,32140,0,1,f +2072,32449,4,4,f +2072,32551,0,1,f +2072,32556,7,1,f +2072,3460,0,2,f +2072,3460,4,1,f +2072,3622,0,2,f +2072,3623,0,2,f +2072,3647,7,5,f +2072,3648b,7,2,f +2072,3660,4,2,f +2072,3660,0,2,f +2072,3665,15,2,f +2072,3665,4,2,f +2072,3666,7,2,f +2072,3673,7,1,t +2072,3673,7,2,f +2072,3700,4,4,f +2072,3700,25,2,f +2072,3701,4,6,f +2072,3706,0,5,f +2072,3707,0,4,f +2072,3710,7,6,f +2072,3710,0,2,f +2072,3710,4,2,f +2072,3713,7,3,f +2072,3737,0,1,f +2072,3749,19,5,f +2072,3795,8,1,f +2072,3795,7,3,f +2072,3832,4,1,f +2072,3894,4,4,f +2072,3894,0,2,f +2072,3941,25,4,f +2072,4081b,7,2,f +2072,4162,7,2,f +2072,4162,4,2,f +2072,41752,8,1,t +2072,4185,7,2,f +2072,4274,15,3,f +2072,4286,8,4,f +2072,4286,4,4,f +2072,4287,8,2,f +2072,4287,4,2,f +2072,43898,47,2,f +2072,4460a,25,4,f +2072,4477,4,4,f +2072,4519,7,2,f +2072,45337c01,47,1,f +2072,45721c01,47,1,f +2072,4589,15,2,f +2072,4599a,1,2,f +2072,4599a,4,2,f +2072,4740,15,2,f +2072,4794b,0,1,f +2072,4865a,4,5,f +2072,6141,0,1,t +2072,6141,47,1,t +2072,6141,47,2,f +2072,6141,0,2,f +2072,6141,15,2,f +2072,6141,15,1,t +2072,6192,46,1,f +2072,6538b,7,4,f +2072,6541,4,4,f +2072,6587,8,1,f +2072,6628,0,2,f +2072,6636,4,3,f +2072,71509,0,4,f +2072,78c02,179,2,f +2072,78c02,179,1,t +2072,78c08,179,3,f +2072,bb145c05,6,2,f +2072,bb145c05,6,2,t +2073,11303,272,1,f +2073,11477,288,5,f +2073,15423pr0002,379,1,f +2073,15712,71,2,f +2073,15712,378,2,f +2073,18868a,41,2,f +2073,19981pr0014,41,1,f +2073,19981pr0015,41,1,f +2073,298c02,1,2,f +2073,298c02,1,1,t +2073,3021,71,1,f +2073,3023,272,1,f +2073,3023,1,1,f +2073,3023,378,3,f +2073,3024,272,4,f +2073,3024,288,1,t +2073,3024,272,1,t +2073,3024,288,2,f +2073,30374,41,2,f +2073,30374,0,1,f +2073,3065,47,3,f +2073,3070b,288,1,f +2073,3070b,288,1,t +2073,3623,378,3,f +2073,3623,288,1,f +2073,3626cpr1467,78,1,f +2073,3626cpr1518,84,1,f +2073,37,72,2,f +2073,3794b,71,4,f +2073,3941,41,1,f +2073,3960pr0020,47,2,f +2073,4595,71,1,f +2073,4740,41,2,f +2073,47905,378,1,f +2073,48729b,71,2,f +2073,48729b,71,1,t +2073,53451,0,2,f +2073,53451,0,1,t +2073,54200,1,1,t +2073,54200,71,4,f +2073,54200,1,1,f +2073,54200,71,1,t +2073,59900,33,1,f +2073,60474,326,1,f +2073,60478,71,3,f +2073,6141,41,1,t +2073,6141,1,2,f +2073,6141,46,1,t +2073,6141,41,4,f +2073,6141,14,1,f +2073,6141,71,1,t +2073,6141,46,2,f +2073,6141,1,1,t +2073,6141,71,2,f +2073,6141,14,1,t +2073,62810,84,1,f +2073,64567,0,1,t +2073,64567,0,1,f +2073,6541,72,3,f +2073,6558,1,1,f +2073,85861,15,4,f +2073,85861,15,1,t +2073,87087,1,1,f +2073,87994,71,1,f +2073,87994,71,1,t +2073,88072,71,2,f +2073,92280,378,3,f +2073,93609,378,1,t +2073,93609,378,2,f +2073,970c00pr0886,72,1,f +2073,970c00pr0888,72,1,f +2073,973pr3054c01,70,1,f +2073,973pr3060c01,272,1,f +2074,30374,42,4,f +2074,32013,0,2,f +2074,32123b,7,4,f +2074,32138,0,2,f +2074,32294,0,2,f +2074,32310pb02,27,1,f +2074,32439a,2,2,f +2074,3705,0,1,f +2074,3706,0,1,f +2074,3749,7,4,f +2074,4288,0,2,f +2076,45451,230,1,f +2076,45452,35,2,f +2076,45452,230,2,f +2076,46277,17,2,f +2076,46277,230,2,f +2076,46296,47,1,f +2076,51035,29,4,f +2076,51035,230,4,f +2076,51036,230,4,f +2076,51036,29,4,f +2076,clikits001pb02,29,1,f +2076,clikits018,230,1,f +2076,clikits028,118,4,f +2076,clikits028,35,4,f +2076,clikits028,43,4,f +2076,clikits028,17,4,f +2076,clikits038,35,8,f +2076,clikits038,230,1,f +2076,clikits038,43,8,f +2076,clikits085,230,1,f +2076,clikits086pb01,230,1,f +2076,clikits111,47,3,f +2082,10201,0,2,f +2082,12825,14,2,f +2082,12825,71,2,f +2082,2412b,71,1,f +2082,2420,19,2,f +2082,2431,0,2,f +2082,2445,72,1,f +2082,2449,320,2,f +2082,2454a,19,4,f +2082,2456,14,1,f +2082,2456,19,4,f +2082,2653,71,2,f +2082,3001,0,2,f +2082,3002,19,12,f +2082,3003,19,14,f +2082,3003,272,4,f +2082,3003,0,4,f +2082,3003,28,2,f +2082,3004,0,7,f +2082,3004,28,16,f +2082,3004,19,6,f +2082,30044,71,1,f +2082,30046,0,1,f +2082,3007,19,4,f +2082,3009,19,2,f +2082,3009,71,4,f +2082,3009,0,3,f +2082,3010,0,1,f +2082,3010,14,2,f +2082,3010,19,1,f +2082,30141,72,1,f +2082,30149,320,1,f +2082,30169,297,2,f +2082,30176,2,4,f +2082,3020,72,11,f +2082,3021,19,22,f +2082,3021,72,3,f +2082,3022,19,4,f +2082,3022,484,8,f +2082,3023,28,10,f +2082,3023,4,2,f +2082,3023,0,8,f +2082,30237b,0,1,f +2082,30249,19,4,f +2082,3032,72,2,f +2082,3034,19,1,f +2082,3036,28,3,f +2082,30363,19,7,f +2082,30364,71,8,f +2082,30365,72,16,f +2082,3037,320,1,f +2082,3037,272,3,f +2082,3039,19,5,f +2082,3039,272,3,f +2082,3040b,28,10,f +2082,3040b,272,2,f +2082,3040b,320,8,f +2082,30414,71,2,f +2082,3045,272,4,f +2082,3045,320,4,f +2082,3048c,297,4,f +2082,3062b,19,12,f +2082,3062b,272,6,f +2082,3068b,19,3,f +2082,3068b,28,2,f +2082,3070b,71,2,f +2082,3070b,71,1,t +2082,32028,14,4,f +2082,32474,0,1,f +2082,3623,19,8,f +2082,3626bpr0753a,14,1,f +2082,3626bpr0755a,71,2,f +2082,3678b,0,2,f +2082,3684,28,4,f +2082,3685,0,2,f +2082,3700,71,2,f +2082,3710,19,4,f +2082,3710,0,4,f +2082,3747b,320,6,f +2082,3747b,0,1,f +2082,3794a,272,6,f +2082,3794b,0,3,f +2082,3795,28,5,f +2082,3829c01,0,1,f +2082,3832,19,1,f +2082,3841,72,1,f +2082,4032a,72,4,f +2082,4282,71,2,f +2082,43710,0,1,f +2082,43711,0,1,f +2082,44301a,71,10,f +2082,44302a,0,2,f +2082,44728,71,4,f +2082,4497,0,1,f +2082,45677,0,1,f +2082,4599b,0,2,f +2082,47455,0,4,f +2082,47457,71,1,f +2082,47720,71,2,f +2082,47753,0,1,f +2082,48169,72,4,f +2082,48170,72,4,f +2082,48336,297,2,f +2082,4865a,19,4,f +2082,4865a,47,1,f +2082,49668,0,18,f +2082,54200,0,6,f +2082,54200,72,2,f +2082,54200,297,1,t +2082,54200,297,2,f +2082,54200,0,1,t +2082,54200,72,1,t +2082,55013,72,1,f +2082,56902,71,4,f +2082,59900,297,2,f +2082,6005,320,4,f +2082,60470b,0,2,f +2082,60481,0,12,f +2082,60897,0,2,f +2082,6091,320,2,f +2082,61254,0,4,f +2082,6141,14,1,t +2082,6141,14,4,f +2082,6141,47,1,t +2082,6141,36,2,t +2082,6141,36,10,f +2082,6141,47,2,f +2082,62810,0,1,f +2082,63864,71,4,f +2082,64728,4,1,f +2082,6636,19,6,f +2082,85975,320,2,f +2082,86208,71,2,f +2082,87079,19,4,f +2082,87087,72,2,f +2082,87087,0,6,f +2082,87580,320,2,f +2082,90462,0,2,f +2082,93247,148,1,f +2082,93247,297,1,f +2082,970c00,28,1,f +2082,970c00pr0195a,71,2,f +2082,973pb0780c01,71,2,f +2082,973pr1732c01,308,1,f +2083,132a,0,8,f +2083,242c01,4,12,f +2083,3001a,4,2,f +2083,3002a,47,1,f +2083,3003,4,1,f +2083,3003,47,1,f +2083,3003,0,1,f +2083,3004,4,4,f +2083,3004p50,4,1,f +2083,3005,1,2,f +2083,3005,4,1,f +2083,3009,47,1,f +2083,3009,4,4,f +2083,3009p01,4,1,f +2083,3010,47,1,f +2083,3010,4,3,f +2083,3020,4,2,f +2083,3020,0,2,f +2083,3021,4,2,f +2083,3022,4,3,f +2083,3023,7,2,f +2083,3027,1,1,f +2083,3034,7,4,f +2083,3035,7,2,f +2083,3037,4,1,f +2083,3039,4,3,f +2083,3040a,4,1,f +2083,3149c01,4,2,f +2083,3149c01,7,3,f +2083,3404ac01,4,2,f +2083,498,0,2,f +2083,56823,0,1,f +2083,586c01,4,1,f +2083,7049b,0,5,f +2083,709,4,1,f +2083,711,4,1,f +2083,799c800,0,1,f +2083,801,4,1,f +2083,802,4,1,f +2083,803,0,1,f +2083,x547b,1,1,f +2084,10049pr0001,148,2,f +2084,10050,148,3,f +2084,10050,148,1,t +2084,10051pr01,148,2,f +2084,10066pr0001,0,1,f +2084,2412b,80,4,f +2084,2420,19,2,f +2084,2431,308,4,f +2084,2431pr0060,70,2,f +2084,2587,148,2,f +2084,2654,19,2,f +2084,2780,0,1,t +2084,2780,0,6,f +2084,2877,0,9,f +2084,3002,72,2,f +2084,3004,288,3,f +2084,3005,288,8,f +2084,3005,71,2,f +2084,3010,72,6,f +2084,30136,308,7,f +2084,3020,28,6,f +2084,3023,28,2,f +2084,3023,182,4,f +2084,3024,28,2,f +2084,3028,28,4,f +2084,3031,70,1,f +2084,3032,70,1,f +2084,30350b,72,1,f +2084,30395,72,1,f +2084,3040b,70,2,f +2084,3040b,72,16,f +2084,3045,71,2,f +2084,3046a,72,13,f +2084,30526,1,1,f +2084,3062b,70,7,f +2084,3065,36,2,f +2084,3068b,288,3,f +2084,3069b,308,4,f +2084,32000,4,1,f +2084,32012,72,1,f +2084,32062,4,1,f +2084,32278,0,2,f +2084,32333,0,1,f +2084,32523,71,1,f +2084,3622,1,1,f +2084,3622,4,1,f +2084,3623,70,12,f +2084,3626cpr0976,320,1,f +2084,3626cpr0980,28,2,f +2084,3626cpr0981,70,1,f +2084,3665,72,16,f +2084,3666,70,8,f +2084,3700,70,2,f +2084,3700,1,1,f +2084,3710,28,2,f +2084,3710,0,1,f +2084,3713,4,1,t +2084,3713,4,1,f +2084,3794b,0,1,f +2084,3795,28,1,f +2084,3795,0,2,f +2084,3837,0,1,f +2084,3894,0,1,f +2084,3940b,0,1,f +2084,3958,28,2,f +2084,3958,70,1,f +2084,40239,0,1,f +2084,4032a,72,1,f +2084,4150,0,1,f +2084,4341,0,1,f +2084,43722,28,2,f +2084,43723,28,2,f +2084,43888,70,4,f +2084,43898,70,2,f +2084,4477,70,1,f +2084,4477,4,2,f +2084,4522,0,1,f +2084,4740,0,1,f +2084,47847,72,1,f +2084,47905,0,1,f +2084,4865a,288,4,f +2084,4865b,72,6,f +2084,54200,326,3,t +2084,54200,0,4,f +2084,54200,0,2,t +2084,54200,326,18,f +2084,54383,28,1,f +2084,54384,28,3,f +2084,56823c50,0,1,f +2084,59426,72,1,f +2084,59443,70,1,f +2084,59900,14,4,f +2084,60477,0,1,f +2084,60478,14,4,f +2084,60479,0,1,f +2084,60481,308,4,f +2084,60481,71,17,f +2084,60485,71,1,f +2084,6126b,57,4,f +2084,6141,72,2,t +2084,6141,0,1,t +2084,6141,0,3,f +2084,6141,72,12,f +2084,63864,72,2,f +2084,63868,0,2,f +2084,64448,70,3,f +2084,64566,0,2,f +2084,64644,0,2,f +2084,64647,57,1,t +2084,64647,57,2,f +2084,64951,70,1,f +2084,74698,0,1,f +2084,87087,0,1,f +2084,87580,0,2,f +2084,87620,0,6,f +2084,92280,71,2,f +2084,92593,72,1,f +2084,92947,71,2,f +2084,96874,25,1,t +2084,970c00,308,2,f +2084,970c00pr0334,308,1,f +2084,970x199,70,1,f +2084,973pr2057c01,308,1,f +2084,973pr2063c01,308,2,f +2084,973pr2064c01,70,1,f +2084,98138,179,1,t +2084,98138,179,6,f +2084,98782,36,1,f +2084,99780,72,2,f +2085,2587pr0028,82,1,f +2085,30048,82,1,f +2085,3626bpr0954,14,1,f +2085,64647,4,1,f +2085,88646,0,1,f +2085,93550,179,1,f +2085,970c00pr0369,71,1,f +2085,973c57,320,1,f +2086,2357,72,10,f +2086,2412b,71,4,f +2086,2445,19,2,f +2086,2453a,72,2,f +2086,2454a,72,6,f +2086,2458,19,2,f +2086,2817,71,1,f +2086,3001,72,4,f +2086,3002,19,2,f +2086,3002,72,9,f +2086,3003,72,6,f +2086,3004,84,15,f +2086,3004,72,9,f +2086,3005,71,4,f +2086,3005,72,7,f +2086,3008,72,2,f +2086,3008,0,2,f +2086,3009,72,3,f +2086,3009,0,1,f +2086,3010,0,4,f +2086,30115,4,2,f +2086,30136,72,2,f +2086,30137,72,7,f +2086,30173b,135,2,f +2086,3020,72,3,f +2086,3021,0,4,f +2086,3021,19,1,f +2086,3021,72,3,f +2086,3022,71,2,f +2086,3022,72,2,f +2086,3023,46,4,f +2086,3023,70,2,f +2086,3023,19,8,f +2086,3024,19,6,f +2086,3024,72,4,f +2086,30274,84,2,f +2086,3031,72,1,f +2086,3035,72,1,f +2086,3036,72,1,f +2086,30367b,297,2,f +2086,3037,0,4,f +2086,30374,70,1,f +2086,3039,72,13,f +2086,3040b,72,40,f +2086,3045,72,6,f +2086,3062b,72,4,f +2086,3062b,0,5,f +2086,3062b,46,1,f +2086,3065,46,13,f +2086,3068b,72,20,f +2086,3069b,28,5,f +2086,3069b,72,9,f +2086,3070b,0,1,t +2086,3070b,0,1,f +2086,32000,72,1,f +2086,32013,0,3,f +2086,32028,15,2,f +2086,32270,0,1,f +2086,32524,72,1,f +2086,3298,71,2,f +2086,33172,308,1,f +2086,3460,19,2,f +2086,3622,71,2,f +2086,3622,72,3,f +2086,3623,0,1,f +2086,3623,19,2,f +2086,3626bpr0654,78,1,f +2086,3626bpr0655,78,1,f +2086,3626bpr0657,78,1,f +2086,3626bpr0659,78,1,f +2086,3626bpr0895,15,1,f +2086,3665,72,3,f +2086,3666,19,2,f +2086,3666,0,2,f +2086,3673,71,6,f +2086,3673,71,2,t +2086,3700,71,2,f +2086,3700,72,4,f +2086,3710,0,3,f +2086,3710,19,4,f +2086,3794b,0,3,f +2086,3795,19,4,f +2086,4032a,0,2,f +2086,4032a,70,2,f +2086,4085c,0,2,f +2086,41539,28,10,f +2086,4162,72,2,f +2086,4286,72,8,f +2086,43337,72,3,f +2086,4497,308,3,f +2086,4589,297,4,f +2086,47847,72,2,f +2086,48723,70,4,f +2086,50231,15,1,f +2086,50231,0,1,f +2086,50950,72,2,f +2086,54200,72,4,t +2086,54200,72,32,f +2086,54200,0,1,t +2086,54200,0,4,f +2086,59229,72,1,f +2086,60475a,84,5,f +2086,60485,71,1,f +2086,60752,135,2,f +2086,6091,72,1,f +2086,6126a,57,1,f +2086,61403,71,1,f +2086,6141,297,18,f +2086,6141,297,2,t +2086,6182,71,2,f +2086,62930,47,1,f +2086,64644,297,2,f +2086,64647,57,2,f +2086,6541,72,12,f +2086,87079,71,2,f +2086,87083,72,1,f +2086,87087,0,9,f +2086,87580,28,9,f +2086,88283,308,1,f +2086,88286,308,1,f +2086,88287,0,1,f +2086,88288pat0001,297,1,f +2086,88288pat0001,297,1,t +2086,88290,308,1,f +2086,88292,84,6,f +2086,970c00,308,1,f +2086,970c00,15,1,f +2086,970c00pr0149b,0,1,f +2086,970c00pr0150,0,1,f +2086,973pr1558c01,308,1,f +2086,973pr1559c01,15,1,f +2086,973pr1561c01,0,1,f +2086,973pr1563c01,308,1,f +2087,3626bpr0648,78,1,f +2087,3901,70,1,f +2087,970c00pr0240,272,1,f +2087,973pb0971c01,0,1,f +2088,2412b,72,2,f +2088,2421,0,2,f +2088,2654,15,1,f +2088,3001,4,1,f +2088,30165,4,1,f +2088,3020,4,1,f +2088,3022,4,2,f +2088,3034,15,2,f +2088,3069b,40,1,f +2088,3070b,14,1,t +2088,3070b,14,2,f +2088,3710,15,2,f +2088,3794b,15,1,f +2088,4081b,71,2,f +2088,4286,0,1,f +2088,43722,0,1,f +2088,43722,15,1,f +2088,43723,0,1,f +2088,43723,15,1,f +2088,44728,4,1,f +2088,4488,71,2,f +2088,54200,40,4,f +2088,54200,182,1,t +2088,54200,182,1,f +2088,54200,40,1,t +2088,6141,0,6,f +2088,6141,0,1,t +2088,85984,71,4,f +2088,87580,4,1,f +2088,93606,4,1,f +2089,2397,4,2,f +2089,2543,0,1,f +2089,2654,7,1,f +2089,2873,0,2,f +2089,3002,7,1,f +2089,3002,8,1,f +2089,3004,4,2,f +2089,3004,7,1,f +2089,3004,8,1,f +2089,30104,8,1,f +2089,30151a,47,1,f +2089,30173a,7,3,f +2089,30175,0,1,f +2089,30176,2,2,f +2089,30177,8,1,f +2089,3031,7,1,f +2089,3062b,2,1,f +2089,3068b,0,1,f +2089,3626bpx7,14,1,f +2089,3626bpx8,14,1,f +2089,3626bpx9,14,1,f +2089,3666,4,2,f +2089,3794a,15,2,f +2089,3795,0,1,f +2089,3849,6,1,f +2089,3957a,1,1,f +2089,4085c,0,3,f +2089,4315,0,2,f +2089,4497,6,1,f +2089,4864b,0,2,f +2089,57503,334,2,f +2089,57504,334,2,f +2089,57505,334,2,f +2089,57506,334,2,f +2089,6033stk01,9999,1,t +2089,6141,14,1,t +2089,6141,14,2,f +2089,970c00,8,1,f +2089,970x021,0,1,f +2089,970x026,4,1,f +2089,973pb0240c03,8,1,f +2089,973px14c01,4,1,f +2089,973px15c01,4,1,f +2089,x65,47,1,f +2090,3024,46,4,f +2090,3024,36,4,f +2090,3024,34,4,f +2090,3024,33,4,f +2090,3067,46,2,f +2090,3067,33,2,f +2090,3823,47,2,f +2090,3939,46,1,f +2090,3939,33,1,f +2090,6141,42,4,f +2090,6141,36,4,f +2093,3001a,14,1,f +2093,3003,47,1,f +2093,3004,47,1,f +2093,3005,14,2,f +2093,3010,14,1,f +2093,3010p30,14,2,f +2093,3020,14,1,f +2093,3021,4,1,f +2093,3021,14,1,f +2093,3022,4,1,f +2093,3034,4,1,f +2093,3035,4,1,f +2093,3037,47,1,f +2093,3037,14,1,f +2093,3062a,0,1,f +2093,3127b,4,1,f +2093,3137c02,0,4,f +2093,3149c01,4,1,f +2093,3176,4,1,f +2093,3324c01,4,1,f +2093,56823,0,1,f +2093,586c01a,14,1,f +2093,7b,0,8,f +2096,2421,7,1,f +2096,2431,14,1,f +2096,2446,4,1,f +2096,2447,41,1,f +2096,298c02,14,2,f +2096,3020,0,2,f +2096,3022,0,1,f +2096,3034,0,1,f +2096,3139,0,2,f +2096,3479,0,1,f +2096,3626apr0001,14,1,f +2096,3933,14,1,f +2096,3934,14,1,f +2096,4488,14,1,f +2096,4600,7,1,f +2096,4624,7,2,f +2096,4859,14,2,f +2096,4864a,14,2,f +2096,970c00,4,1,f +2096,973p0bc01,15,1,f +2097,2419,0,1,f +2097,2420,0,2,f +2097,2420,4,4,f +2097,2446,4,1,f +2097,2447,40,1,f +2097,2456,0,1,f +2097,2555,4,2,f +2097,2723,0,2,f +2097,3001,4,6,f +2097,3002,0,1,f +2097,3003,4,2,f +2097,3004,0,1,f +2097,3006,4,1,f +2097,3020,4,2,f +2097,3021,0,2,f +2097,3021,4,4,f +2097,3022,4,1,f +2097,3023,4,4,f +2097,30357,0,2,f +2097,3040b,4,2,f +2097,3068b,4,8,f +2097,3069b,0,1,f +2097,3069b,4,7,f +2097,3070b,0,1,f +2097,32000,4,3,f +2097,3460,4,2,f +2097,3623,4,2,f +2097,3626bpr0369,15,1,f +2097,3666,0,1,f +2097,3708,0,1,f +2097,3710,0,4,f +2097,3710,4,2,f +2097,3737,0,1,f +2097,3794a,4,9,f +2097,3795,0,1,f +2097,3832,0,1,f +2097,4070,4,1,f +2097,4081b,4,2,f +2097,41539,0,1,f +2097,4162,4,1,f +2097,41767,4,3,f +2097,41768,4,3,f +2097,42022,0,2,f +2097,4286,4,1,f +2097,43722,4,4,f +2097,43723,4,4,f +2097,44126,4,1,f +2097,44301a,0,4,f +2097,44302a,4,4,f +2097,44567a,0,1,f +2097,44728,0,2,f +2097,4477,0,2,f +2097,4510,0,2,f +2097,4623,4,4,f +2097,47715,0,1,f +2097,4865a,4,4,f +2097,50950,4,6,f +2097,54200,0,2,f +2097,54200,4,5,f +2097,55982,71,4,f +2097,58090,0,4,f +2097,6231,4,2,f +2097,6636,4,6,f +2097,6636,0,1,f +2097,75535,0,2,f +2101,2780,0,1,t +2101,2780,0,27,f +2101,2825,72,2,f +2101,2905,0,2,f +2101,2994,71,4,f +2101,32009,0,2,f +2101,32013,4,4,f +2101,32015,0,6,f +2101,32015,71,6,f +2101,32017,72,8,f +2101,32034,0,1,f +2101,32039,0,5,f +2101,32039,4,2,f +2101,32054,4,4,f +2101,32056,0,2,f +2101,32062,0,11,f +2101,32073,71,4,f +2101,32123b,71,6,f +2101,32123b,71,1,t +2101,32138,0,2,f +2101,32140,0,4,f +2101,32184,71,2,f +2101,32184,4,1,f +2101,32249,4,2,f +2101,32250,4,2,f +2101,32278,0,4,f +2101,32291,4,6,f +2101,32316,0,4,f +2101,32348,72,2,f +2101,32449,0,2,f +2101,32449,4,4,f +2101,32523,0,2,f +2101,32523,72,1,f +2101,32525,4,3,f +2101,32526,4,2,f +2101,32526,72,1,f +2101,32556,71,10,f +2101,32580,179,2,f +2101,3705,0,1,f +2101,3706,0,4,f +2101,3707,0,3,f +2101,3708,0,2,f +2101,3713,71,2,t +2101,3713,71,11,f +2101,40001,72,1,f +2101,40490,0,1,f +2101,41663,135,1,f +2101,41664,135,1,f +2101,41669,135,4,f +2101,41669,294,2,f +2101,41677,4,12,f +2101,41753,72,1,f +2101,42003,0,2,f +2101,43093,1,10,f +2101,44294,71,1,f +2101,4519,71,15,f +2101,47712,4,2,f +2101,47713,4,2,f +2101,6536,0,3,f +2101,6553,0,1,f +2101,6558,0,7,f +2101,6578,0,4,f +2101,6589,71,4,f +2101,6628,0,2,f +2101,78c06,179,2,f +2101,78c06,179,1,t +2101,78c08,179,1,f +2101,85544,4,2,f +2102,3038,4,4,f +2102,3040a,4,6,f +2102,3042,4,1,f +2102,3044a,4,3,f +2102,3045,4,6,f +2102,3046a,4,6,f +2102,3048a,4,4,f +2102,3049b,4,5,f +2102,962,4,4,f +2105,12592,0,2,f +2105,15449,0,1,f +2105,15450,71,1,f +2105,15956,322,1,f +2105,15958,191,1,f +2105,15962,27,1,f +2105,16265,179,1,f +2105,19708,15,2,f +2105,20678,41,1,f +2105,2291,4,1,f +2105,3437,15,2,f +2105,3437,73,4,f +2105,40666,10,2,f +2105,40666,27,1,f +2105,58498,14,1,f +2105,63017,14,1,f +2105,6474,1,2,f +2105,73241,14,1,f +2105,88764pb01,484,1,f +2105,88765pb03,4,1,f +2105,98233,4,1,f +2107,2339,0,1,t +2107,2357,378,1,t +2107,2357,85,1,t +2107,2357,1,1,t +2107,2376,15,1,t +2107,2412b,70,1,t +2107,2412b,8,1,t +2107,2412b,42,1,t +2107,2420,462,1,t +2107,2420,378,1,t +2107,2431,70,1,t +2107,2432,70,1,t +2107,2432,2,1,t +2107,2456,378,1,t +2107,2540,335,1,t +2107,2555,74,1,t +2107,2555,2,1,t +2107,2653,8,1,t +2107,2654,57,1,t +2107,2654,14,1,t +2107,2723,15,1,t +2107,298c01,0,1,t +2107,3001,0,2,f +2107,3001,14,2,f +2107,3001,484,1,t +2107,3001,2,2,f +2107,3001,212,1,t +2107,3001,15,2,f +2107,3001,1,2,f +2107,3001,5,1,t +2107,3001,69,1,t +2107,3001,3,1,t +2107,3001,4,2,f +2107,3001,191,1,t +2107,3002,19,1,t +2107,3002,1,2,f +2107,3002,14,4,f +2107,3002,0,2,f +2107,3002,15,4,f +2107,3002,2,2,f +2107,3002,379,1,t +2107,3002,7,1,t +2107,3002,4,2,f +2107,3003,0,6,f +2107,3003,4,6,f +2107,3003,15,8,f +2107,3003,1,6,f +2107,3003,36,8,f +2107,3003,5,1,t +2107,3003,33,8,f +2107,3003,2,6,f +2107,3003,14,6,f +2107,3004,378,1,t +2107,3004,484,1,t +2107,3004,69,1,t +2107,3004,4,6,f +2107,3004,3,1,t +2107,3004,14,8,f +2107,3004,1,6,f +2107,3004,2,8,f +2107,3004,0,10,f +2107,3004,15,10,f +2107,3005,378,1,t +2107,3005,1,8,f +2107,3005,13,1,t +2107,3005,6,1,t +2107,3005,71,1,t +2107,3005,0,8,f +2107,3005,15,8,f +2107,3005,379,1,t +2107,3005,4,8,f +2107,3005pe1,8,1,t +2107,3005pe1,14,2,f +2107,30077,14,1,t +2107,3008,19,1,t +2107,3009,8,1,t +2107,3010,69,1,t +2107,3010,15,2,f +2107,3010,14,2,f +2107,3010,2,2,f +2107,30136,7,1,t +2107,30147,8,1,t +2107,3020,69,1,t +2107,3020,15,2,f +2107,3020,85,1,t +2107,3020,0,2,f +2107,3021,7,1,t +2107,3021,0,1,t +2107,3021,462,1,t +2107,3021,15,2,f +2107,3022,0,2,f +2107,3022,6,1,t +2107,3022,15,2,f +2107,3023,40,1,t +2107,3023,484,1,t +2107,30236,27,1,t +2107,3024,15,1,t +2107,3024,378,1,t +2107,3024,71,1,t +2107,3031,8,1,t +2107,3031,5,1,t +2107,3031,7,1,t +2107,3032,4,1,t +2107,3034,71,1,t +2107,30363,1,1,t +2107,30363,15,1,t +2107,30363,8,1,t +2107,30367b,4,1,t +2107,3038,484,1,t +2107,3039,36,2,f +2107,3039,33,2,f +2107,3040b,14,2,f +2107,3041,484,1,t +2107,3043,484,1,t +2107,3044c,484,1,t +2107,3044c,72,1,t +2107,3048c,484,1,t +2107,3048c,378,1,t +2107,3049b,484,1,t +2107,30503,71,1,t +2107,30503,8,1,t +2107,30505,19,1,t +2107,30603,73,1,t +2107,3062b,378,1,t +2107,3062b,4,1,t +2107,3062b,8,1,t +2107,3063b,1,1,t +2107,3063b,14,1,t +2107,3063b,72,1,t +2107,3065,36,6,f +2107,3065,33,6,f +2107,3068b,28,1,t +2107,3069b,2,1,t +2107,3069b,57,1,t +2107,3069b,6,1,t +2107,3069b,40,1,t +2107,3069b,8,1,t +2107,3070b,6,1,t +2107,3070b,72,1,t +2107,32000,27,1,t +2107,32028,2,1,t +2107,32064b,8,1,t +2107,32064b,14,1,t +2107,32064b,288,1,t +2107,3245b,71,1,t +2107,3245b,8,1,t +2107,3299,1,1,t +2107,3460,15,1,t +2107,3460,8,1,t +2107,3622,85,1,t +2107,3622,25,1,t +2107,3622,462,1,t +2107,3622,27,1,t +2107,3623,2,1,t +2107,3623,379,1,t +2107,3626b,0,1,t +2107,3626b,379,1,t +2107,3626b,92,1,t +2107,3665,22,1,t +2107,3665,14,2,f +2107,3666,85,1,t +2107,3678b,2,1,t +2107,3755,7,1,t +2107,3794a,25,1,t +2107,3942c,4,1,t +2107,3942c,15,1,t +2107,4032a,7,1,t +2107,4070,14,1,t +2107,4070,379,1,t +2107,4070,72,1,t +2107,4070,70,1,t +2107,4070,73,1,t +2107,4070,7,1,t +2107,4070,15,1,t +2107,4081b,15,1,t +2107,4081b,2,1,t +2107,4081b,19,1,t +2107,4085c,115,1,t +2107,4150pr0001,15,1,t +2107,4150ps0,7,1,t +2107,4161,14,1,t +2107,41855,1,1,t +2107,41862,6,1,t +2107,41862,7,1,t +2107,41862,1,1,t +2107,4285b,8,1,t +2107,4286,379,1,t +2107,43719,8,1,t +2107,44728,85,1,t +2107,4490,7,1,t +2107,4589,379,1,t +2107,4589,2,1,t +2107,4740,14,1,t +2107,4740,379,1,t +2107,47458,1,1,t +2107,48336,73,1,t +2107,48336,70,1,t +2107,4854,0,1,t +2107,4865a,0,1,t +2107,4865a,47,1,t +2107,48995,15,1,t +2107,49668,15,1,t +2107,54200,182,1,t +2107,6019,8,1,t +2107,6091,25,1,t +2107,6091,14,1,t +2107,6091,378,1,t +2107,6091,7,1,t +2107,6141,8,1,t +2107,6141,7,1,t +2107,6179,25,1,t +2107,6215,19,1,t +2109,2357,70,7,f +2109,2419,72,6,f +2109,2456,70,2,f +2109,2456,72,16,f +2109,2462,71,20,f +2109,2465,4,1,f +2109,2730,71,4,f +2109,2780,0,41,f +2109,3001,4,4,f +2109,3001,14,1,f +2109,3001,70,10,f +2109,3001,72,14,f +2109,3001,71,6,f +2109,3001,27,2,f +2109,3001,73,3,f +2109,3002,70,10,f +2109,3002,71,8,f +2109,3002,72,5,f +2109,3002,73,4,f +2109,3003,28,12,f +2109,3003,2,3,f +2109,3003,0,8,f +2109,3003,33,10,f +2109,3003,71,11,f +2109,3003,70,13,f +2109,3004,73,29,f +2109,3004,72,18,f +2109,3004,71,8,f +2109,3004,4,8,f +2109,3004,28,12,f +2109,3004,14,13,f +2109,3004,27,6,f +2109,3004,25,10,f +2109,3005,288,6,f +2109,3005,25,5,f +2109,3005,27,7,f +2109,3005,73,16,f +2109,3005,1,4,f +2109,3005,14,4,f +2109,3005,4,7,f +2109,3006,71,1,f +2109,3009,0,5,f +2109,3009,1,7,f +2109,3009,72,11,f +2109,3009,14,8,f +2109,3009,4,3,f +2109,3010,27,3,f +2109,3010,72,14,f +2109,3010,0,6,f +2109,3010,73,10,f +2109,3010,70,7,f +2109,3010,14,4,f +2109,3010,4,5,f +2109,30176,2,4,f +2109,3021,71,2,f +2109,3022,70,4,f +2109,3022,72,6,f +2109,3022,25,5,f +2109,3023,2,19,f +2109,3023,73,16,f +2109,3027,71,2,f +2109,3029,72,5,f +2109,3029,2,2,f +2109,3031,2,2,f +2109,3032,1,2,f +2109,3033,0,1,f +2109,3033,14,1,f +2109,3034,15,3,f +2109,3034,71,5,f +2109,3034,14,2,f +2109,3034,0,2,f +2109,3035,4,2,f +2109,3035,72,2,f +2109,3036,4,1,f +2109,3036,72,7,f +2109,30363,72,8,f +2109,3037,71,6,f +2109,3038,0,32,f +2109,3039,72,5,f +2109,3040b,71,4,f +2109,3040b,72,2,f +2109,3043,0,12,f +2109,3045,71,8,f +2109,3045,72,1,f +2109,3062b,70,6,f +2109,3065,33,42,f +2109,3068b,14,11,f +2109,3068b,0,11,f +2109,3069b,272,5,f +2109,3069b,33,25,f +2109,32000,72,10,f +2109,32002,72,13,f +2109,32013,71,3,f +2109,32013,4,3,f +2109,32018,71,10,f +2109,32034,0,2,f +2109,32039,4,3,f +2109,32054,0,6,f +2109,32062,4,9,f +2109,32065,14,6,f +2109,32073,71,6,f +2109,32123b,14,11,f +2109,32125,71,1,f +2109,32140,4,2,f +2109,32140,71,2,f +2109,32184,0,2,f +2109,32250,72,2,f +2109,32270,0,9,f +2109,32278,71,2,f +2109,32278,15,2,f +2109,32316,15,2,f +2109,32316,0,2,f +2109,32316,4,3,f +2109,32474,0,1,f +2109,32498,0,2,f +2109,32523,4,3,f +2109,32524,71,3,f +2109,32525,15,2,f +2109,32526,0,4,f +2109,32556,19,4,f +2109,3298,4,13,f +2109,3298,72,9,f +2109,3460,72,5,f +2109,3460,2,1,f +2109,3460,71,2,f +2109,3622,70,9,f +2109,3622,71,1,f +2109,3622,4,2,f +2109,3622,72,20,f +2109,3622,0,2,f +2109,3622,14,3,f +2109,3626cpr0891,14,1,f +2109,3648b,72,4,f +2109,3649,71,2,f +2109,3666,14,4,f +2109,3666,72,10,f +2109,3666,71,2,f +2109,3666,0,4,f +2109,3673,71,10,f +2109,3684,14,2,f +2109,3684,0,2,f +2109,3700,71,23,f +2109,3700,70,5,f +2109,3701,71,2,f +2109,3702,71,3,f +2109,3703,71,3,f +2109,3705,0,9,f +2109,3706,0,4,f +2109,3707,0,2,f +2109,3709,4,2,f +2109,3709,72,8,f +2109,3710,72,10,f +2109,3710,14,11,f +2109,3710,0,7,f +2109,3713,71,4,f +2109,3737,0,2,f +2109,3738,4,1,f +2109,3741,2,1,f +2109,3742,15,3,f +2109,3742,15,1,t +2109,3749,19,8,f +2109,3795,14,3,f +2109,3795,0,3,f +2109,3795,1,1,f +2109,3795,71,4,f +2109,3795,72,1,f +2109,3832,71,2,f +2109,3894,71,10,f +2109,3894,4,1,f +2109,3895,71,4,f +2109,3937,71,2,f +2109,3941,0,2,f +2109,3941,15,1,f +2109,3941,4,2,f +2109,3941,14,1,f +2109,3941,42,12,f +2109,3958,70,2,f +2109,3958,72,1,f +2109,40490,71,13,f +2109,4150,0,1,f +2109,4150,15,1,f +2109,41539,72,1,f +2109,4161,0,2,f +2109,4162,15,9,f +2109,4162,4,3,f +2109,41677,4,6,f +2109,41677,0,12,f +2109,41769,15,3,f +2109,41770,15,3,f +2109,4185,71,2,f +2109,42003,71,3,f +2109,4286,72,1,f +2109,44294,71,2,f +2109,4477,1,2,f +2109,4477,72,2,f +2109,4519,71,12,f +2109,4523,70,1,f +2109,50450,0,1,f +2109,50451,15,2,f +2109,59443,14,7,f +2109,59443,71,2,f +2109,59443,0,3,f +2109,60477,72,8,f +2109,60484,71,2,f +2109,60592,15,10,f +2109,60593,15,5,f +2109,60596,15,1,f +2109,60623,15,1,f +2109,6093,70,1,f +2109,6111,0,4,f +2109,6111,14,4,f +2109,6111,72,3,f +2109,6111,4,2,f +2109,6112,71,1,f +2109,6134,71,2,f +2109,6141,1,1,f +2109,6141,4,8,f +2109,6141,27,11,f +2109,6179,14,3,f +2109,6179,0,3,f +2109,6222,71,1,f +2109,62462,4,6,f +2109,64391,15,1,f +2109,64683,15,1,f +2109,6541,71,8,f +2109,6558,1,10,f +2109,6575,72,4,f +2109,6587,28,1,f +2109,6589,19,2,f +2109,6628,0,4,f +2109,6632,15,6,f +2109,6636,4,1,f +2109,6636,0,2,f +2109,6636,14,2,f +2109,75347,15,1,f +2109,75347,0,1,f +2109,78c11,179,4,f +2109,85546,14,2,f +2109,87083,72,2,f +2109,92438,71,2,f +2109,970c00,1,1,f +2109,973pr1580c01,15,1,f +2110,251,0,1,f +2110,3004,4,1,f +2110,3004,0,4,f +2110,3010,0,1,f +2110,3020,0,2,f +2110,3023,0,1,f +2110,3032,0,1,f +2110,3623,0,2,f +2110,3626apr0001,14,2,f +2110,3679,7,1,f +2110,3844,8,1,f +2110,3847a,8,1,f +2110,3848,6,1,f +2110,3876,8,1,f +2110,3896,8,1,f +2110,4085a,0,2,f +2110,4488,0,2,f +2110,4489a,6,2,f +2110,4491a,1,1,f +2110,4493c01pb02,0,1,f +2110,4495b,4,1,f +2110,4495b,14,1,f +2110,4497,6,1,f +2110,4498,6,1,f +2110,4499,6,1,f +2110,4587,4,1,f +2110,4590,0,2,f +2110,4623,0,2,f +2110,970x026,4,2,f +2110,973p42c01,4,2,f +2111,3001a,15,2,f +2111,3001a,1,2,f +2111,3003,14,1,f +2111,3004,14,1,f +2111,3005,14,6,f +2111,3005,4,8,f +2111,3009,14,1,f +2111,3010,14,2,f +2111,3021,1,1,f +2111,3022,15,1,f +2111,3022,1,1,f +2111,3023,15,2,f +2111,3023,4,2,f +2111,3024,14,2,f +2111,3030,4,1,f +2111,3031,4,1,f +2111,3032,14,1,f +2111,3039,1,2,f +2111,3040b,14,2,f +2111,3062a,15,2,f +2111,3062a,14,6,f +2111,3068b,4,5,f +2111,3068b,14,2,f +2111,3068b,15,2,f +2111,3069b,4,13,f +2111,3069b,14,8,f +2111,3612,1,2,f +2111,3613,1,2,f +2111,3614b,14,2,f +2111,3626a,47,1,f +2111,3659,4,4,f +2111,3710,14,3,f +2111,3741,2,2,f +2111,3742,14,6,f +2111,3742,14,2,t +2111,3794a,4,5,f +2111,685p01,14,1,f +2111,792c03,1,1,f +2111,x196,0,1,f +2112,10197,72,1,f +2112,10201,15,2,f +2112,10201,0,1,f +2112,10258,0,1,f +2112,10258,0,1,t +2112,11090,0,2,f +2112,11153,272,2,f +2112,11203,19,4,f +2112,11214,72,6,f +2112,11215,15,2,f +2112,11302,297,8,f +2112,11458,15,2,f +2112,11476,71,2,f +2112,11477,272,4,f +2112,11477,15,8,f +2112,11477,308,6,f +2112,11477,70,2,f +2112,11610,0,1,f +2112,12885,0,2,f +2112,13547,484,4,f +2112,14417,72,1,f +2112,14418,71,3,f +2112,14419,72,9,f +2112,14704,71,2,f +2112,14769,297,2,f +2112,14769,158,1,f +2112,14769,15,6,f +2112,14769pr1027,158,3,f +2112,15064,158,2,f +2112,15068,15,3,f +2112,15279,326,2,f +2112,15429,19,2,f +2112,15573,70,2,f +2112,15619,272,1,t +2112,15619,272,1,f +2112,15712,15,2,f +2112,15712,0,4,f +2112,15712,297,3,f +2112,15976,15,4,f +2112,16606pat0001,15,1,f +2112,16968,71,1,f +2112,18654,72,1,t +2112,18654,72,1,f +2112,18674,70,5,f +2112,18674,15,6,f +2112,19857pat0004,0,1,f +2112,19858pat0002,42,1,t +2112,19858pat0002,42,1,f +2112,19859pat0002,42,1,f +2112,19861pr0001,42,1,f +2112,20566pat02,148,1,f +2112,20568pat01,272,1,f +2112,20612,40,1,f +2112,20643,272,1,f +2112,2397,0,1,f +2112,2431,70,4,f +2112,2431,42,1,f +2112,2432,70,1,f +2112,2444,15,4,f +2112,2476a,71,2,f +2112,2570,148,1,f +2112,2654,46,2,f +2112,2723,0,2,f +2112,2736,71,1,f +2112,2780,0,1,f +2112,2780,0,1,t +2112,2817,71,2,f +2112,30043,71,2,f +2112,3007,71,1,f +2112,30089,0,1,f +2112,30136,70,4,f +2112,30136,15,2,f +2112,30150,70,1,f +2112,30173b,297,4,f +2112,30173b,158,2,f +2112,30173b,0,1,f +2112,30173b,158,1,t +2112,30173b,0,1,t +2112,30173b,297,1,t +2112,3020,71,2,f +2112,3020,484,2,f +2112,3020,72,2,f +2112,3020,19,4,f +2112,3021,272,6,f +2112,3021,71,1,f +2112,3022,484,2,f +2112,3022,71,5,f +2112,3022,19,1,f +2112,3022,15,2,f +2112,3023,484,3,f +2112,3023,28,6,f +2112,3023,15,10,f +2112,3023,42,3,f +2112,3024,71,1,t +2112,3024,297,4,f +2112,3024,71,2,f +2112,3024,297,2,t +2112,30367c,71,1,f +2112,30377,484,1,t +2112,30377,484,2,f +2112,30385,42,1,f +2112,3049c,15,1,f +2112,30503,2,2,f +2112,3068b,1,1,f +2112,3069b,19,1,f +2112,32016,15,6,f +2112,32028,72,4,f +2112,32054,71,3,f +2112,32056,72,2,f +2112,32059,2,1,f +2112,32059,0,2,f +2112,32062,0,8,f +2112,32123b,14,1,f +2112,32123b,71,1,t +2112,32123b,71,4,f +2112,32123b,14,1,t +2112,32124,0,1,f +2112,32187,71,1,f +2112,32474,71,1,f +2112,3300,15,1,f +2112,33125,15,2,f +2112,3623,70,2,f +2112,3626b,15,2,f +2112,3626bpr0745,14,1,f +2112,3626cpr1642,14,1,f +2112,3626cpr1687,0,1,f +2112,3626cpr1688,42,1,f +2112,3626cpr1692,42,1,f +2112,37,72,2,f +2112,3700,72,4,f +2112,3710,71,1,f +2112,3731,71,3,f +2112,3738,15,1,f +2112,3747a,71,1,f +2112,3795,71,3,f +2112,3839b,15,1,f +2112,3899,14,2,f +2112,4032a,484,2,f +2112,4070,4,3,f +2112,4081b,15,4,f +2112,4081b,322,2,f +2112,41677,15,12,f +2112,41769,0,1,f +2112,41770,0,1,f +2112,42446,70,1,f +2112,42446,70,1,t +2112,4274,71,6,f +2112,4274,71,1,t +2112,4274,1,4,f +2112,4274,1,1,t +2112,43093,1,2,f +2112,43722,15,1,f +2112,43723,15,1,f +2112,43888,4,2,f +2112,43892,19,2,f +2112,44294,71,1,f +2112,44301a,72,4,f +2112,44302a,15,4,f +2112,44674,15,1,f +2112,44676,379,2,f +2112,44728,19,4,f +2112,4489,148,2,f +2112,4519,71,5,f +2112,4523,70,1,f +2112,4529,15,1,f +2112,4590,72,2,f +2112,4599b,0,1,t +2112,4599b,0,1,f +2112,4697b,0,1,f +2112,4697b,0,1,t +2112,4740,47,2,f +2112,4740,0,2,f +2112,47455,0,4,f +2112,47456,15,4,f +2112,47755,297,4,f +2112,48169,72,2,f +2112,48171,72,4,f +2112,48172,15,1,f +2112,48336,297,1,f +2112,48336,0,2,f +2112,4871,71,1,f +2112,48729b,0,1,t +2112,48729b,0,2,f +2112,49668,15,2,f +2112,51739,15,2,f +2112,51739,272,2,f +2112,53451,0,1,t +2112,53451,158,2,f +2112,53451,0,3,f +2112,53451,297,3,f +2112,53451,158,1,t +2112,53451,297,1,t +2112,53451,15,1,t +2112,53451,15,2,f +2112,53454,148,2,t +2112,53454,148,2,f +2112,53585,0,2,t +2112,53585,0,6,f +2112,59900,1002,1,f +2112,59900,297,1,f +2112,60478,71,2,f +2112,60481,70,2,f +2112,60897,70,7,f +2112,6117,297,1,f +2112,61184,71,2,f +2112,61252,297,2,f +2112,61252,72,2,f +2112,6141,19,2,f +2112,6141,322,4,f +2112,6141,19,1,t +2112,6141,322,3,t +2112,6157,0,1,f +2112,6179,15,1,f +2112,63864,14,2,f +2112,63864,70,6,f +2112,63868,70,2,f +2112,63965,70,1,f +2112,64567,297,2,t +2112,64567,297,2,f +2112,64644,71,1,f +2112,64644,71,1,t +2112,64647,182,2,f +2112,64647,182,1,t +2112,64799,71,1,f +2112,6541,15,6,f +2112,6628,0,1,f +2112,72454,15,1,f +2112,87083,72,2,f +2112,87087,70,1,f +2112,87580,72,1,f +2112,87618,0,2,f +2112,87994,297,2,t +2112,87994,297,4,f +2112,88072,72,1,f +2112,88290,308,1,f +2112,91501,71,2,f +2112,92593,272,2,f +2112,92690,297,2,f +2112,92947,297,1,f +2112,93059,85,1,f +2112,93059,297,3,f +2112,93069,15,1,f +2112,93160,15,1,f +2112,93160,15,1,t +2112,93571,72,2,f +2112,93606,484,2,f +2112,93606,15,2,f +2112,93606,308,1,f +2112,95199,15,2,f +2112,95345,70,1,f +2112,970c00pr0879,0,1,f +2112,970c00pr0880,15,1,f +2112,970x268pr001,42,2,f +2112,973pr3031c01,15,1,f +2112,973pr3032c01,0,1,f +2112,973pr3041c01,85,2,f +2112,973pr3042c01,272,1,f +2112,98132,0,1,f +2112,98138,297,4,t +2112,98138,45,1,t +2112,98138,15,2,t +2112,98138,45,1,f +2112,98138,297,11,f +2112,98138,15,6,f +2112,98139,297,1,f +2112,98139,297,1,t +2112,98383,321,1,f +2112,98397,71,1,f +2112,99207,71,4,f +2112,99780,71,11,f +2112,99780,0,4,f +2112,99781,15,9,f +2113,3001,4,2,f +2113,3001,15,3,f +2113,3003,4,2,f +2113,3004,4,10,f +2113,3004,15,5,f +2113,3005,47,2,f +2113,3005,4,6,f +2113,3005,15,3,f +2113,3009,4,4,f +2113,3010,15,5,f +2113,3010,4,11,f +2113,3020,1,3,f +2113,3021,1,2,f +2113,3031,1,1,f +2113,3039,47,2,f +2113,3081cc01,14,2,f +2113,3137c01,0,2,f +2113,3297,1,2,f +2113,3298,1,4,f +2113,3299,1,1,f +2113,3300,1,2,f +2113,3622,15,4,f +2113,3622,4,4,f +2113,3641,0,4,f +2113,3741,2,2,f +2113,3742,15,3,f +2113,3742,14,3,f +2113,3742,15,1,t +2113,3742,14,1,t +2113,3853,14,2,f +2113,3854,4,4,f +2113,3861b,14,1,f +2113,3865,2,1,f +2114,198323,9999,4,f +2114,198324,9999,2,f +2114,198325,9999,2,f +2114,198326,9999,1,f +2114,198327,9999,1,f +2114,198331,9999,1,f +2114,tclogofloppy1,9999,1,f +2114,tclogofloppy2,9999,1,f +2116,10201,0,1,f +2116,11090,0,1,f +2116,11477,2,4,f +2116,14418,71,4,f +2116,15068,288,2,f +2116,15070,15,2,f +2116,15456,0,2,f +2116,15573,2,2,f +2116,2412b,288,1,f +2116,2498,2,2,f +2116,2736,71,2,f +2116,3020,14,1,f +2116,3023,46,1,f +2116,3039,2,2,f +2116,32013,14,2,f +2116,32123b,71,1,t +2116,32123b,71,2,f +2116,3710,2,2,f +2116,3836,70,1,f +2116,4032a,0,1,f +2116,4032a,15,1,f +2116,4070,2,2,f +2116,48336,0,3,f +2116,49668,0,2,f +2116,54200,2,1,t +2116,54200,2,2,f +2116,60470a,2,2,f +2116,6141,0,1,t +2116,6141,0,1,f +2116,85984,0,3,f +2116,87083,72,2,f +2116,98138pr0008,15,1,t +2116,98138pr0008,15,2,f +2116,99207,71,1,f +2116,99780,0,2,f +2116,99780,2,3,f +2117,2339,0,2,f +2117,2343,47,1,f +2117,2345,6,2,f +2117,2357,0,2,f +2117,2417,2,2,f +2117,2489,6,1,f +2117,2540,0,1,f +2117,2546,8,1,f +2117,3003,7,1,f +2117,3004,0,4,f +2117,3005,0,2,f +2117,3021,0,1,f +2117,3023,0,1,f +2117,3040b,0,2,f +2117,3068bp40,15,1,f +2117,3623,0,2,f +2117,3626bpr0001,14,1,f +2117,3847,8,1,f +2117,3958,2,1,f +2117,4032a,6,1,f +2117,4070,0,2,f +2117,4081b,0,2,f +2117,4524,0,1,f +2117,4589,0,2,f +2117,6020,6,1,f +2117,6124,21,1,f +2117,6126a,57,2,f +2117,6131,1,1,f +2117,6132,15,1,f +2117,6141,36,1,f +2117,6141,34,1,f +2117,970c00,1,1,f +2117,973p46c02,1,1,f +2118,2397,72,1,f +2118,2412b,71,6,f +2118,2431,0,2,f +2118,2431,70,1,f +2118,2432,1,1,f +2118,2444,0,1,f +2118,2447,0,1,t +2118,2453a,70,1,f +2118,2458,71,4,f +2118,2460,0,1,f +2118,2465,0,1,f +2118,2540,14,2,f +2118,2540,25,1,f +2118,2555,72,2,f +2118,2569,0,1,f +2118,2572,47,1,f +2118,2653,71,1,f +2118,2780,0,6,f +2118,2780,0,3,t +2118,2817,71,5,f +2118,2877,72,3,f +2118,2877,70,3,f +2118,2921,4,3,f +2118,298c02,14,1,f +2118,298c02,14,1,t +2118,3001,4,2,f +2118,3003,4,16,f +2118,30031,72,2,f +2118,3008,70,1,f +2118,3008,0,1,f +2118,30094,14,1,f +2118,30132,72,1,t +2118,30132,72,2,f +2118,30136,308,1,f +2118,30194,72,1,f +2118,3020,71,3,f +2118,3021,70,2,f +2118,3021,4,1,f +2118,3022,0,3,f +2118,3023,71,7,f +2118,3023,27,2,f +2118,3023,0,2,f +2118,3023,70,2,f +2118,30236,72,1,f +2118,30236,15,1,f +2118,30237a,70,3,f +2118,3028,71,3,f +2118,3032,0,1,f +2118,3034,0,1,f +2118,30367b,27,1,f +2118,30377,0,1,f +2118,30377,0,1,t +2118,3039,0,2,f +2118,3040b,0,2,f +2118,30414,71,2,f +2118,3049b,0,1,f +2118,30552,72,1,f +2118,30553,0,2,f +2118,30554a,0,1,f +2118,30602,40,1,f +2118,3062b,71,2,f +2118,3062b,15,1,f +2118,3062b,14,2,f +2118,3062b,27,3,f +2118,3062b,1,1,f +2118,3069b,82,3,f +2118,3070b,0,2,f +2118,3070b,0,1,t +2118,3176,4,1,f +2118,3189,14,1,f +2118,32000,15,2,f +2118,32000,4,2,f +2118,32054,0,1,f +2118,32123b,14,1,t +2118,32123b,14,1,f +2118,32316,4,3,f +2118,3245b,4,3,f +2118,3298,0,1,f +2118,3660,15,2,f +2118,3660,0,1,f +2118,3666,70,1,f +2118,3666,0,2,f +2118,3673,71,1,f +2118,3673,71,1,t +2118,3700,0,1,f +2118,3713,71,1,t +2118,3713,71,1,f +2118,3743,71,1,f +2118,3747b,4,1,f +2118,3747b,15,2,f +2118,3794b,4,2,f +2118,3795,71,1,f +2118,3839b,0,1,f +2118,3839b,71,1,f +2118,3899,14,1,f +2118,3937,71,4,f +2118,3938,0,5,f +2118,3940b,0,8,f +2118,3941,27,1,f +2118,3941,14,4,f +2118,3959,71,1,f +2118,3962b,0,1,f +2118,40234,71,1,f +2118,40244,0,1,f +2118,40620,71,2,f +2118,4085c,71,2,f +2118,4085c,4,8,f +2118,4150,0,1,f +2118,4150,14,2,f +2118,41532,0,1,f +2118,41747,15,1,f +2118,41748,15,1,f +2118,41751,33,1,f +2118,41764,15,1,f +2118,41765,15,1,f +2118,41769,15,1,f +2118,41770,15,1,f +2118,4274,71,1,t +2118,4274,71,1,f +2118,4285b,4,1,f +2118,43093,1,2,f +2118,4349,0,4,f +2118,43857,14,1,f +2118,43898,0,1,f +2118,44661,15,1,f +2118,44661,0,1,f +2118,44676,72,2,f +2118,44676,0,2,f +2118,44676,19,2,f +2118,4477,0,2,f +2118,4477,4,4,f +2118,4533,0,1,f +2118,4589,46,7,f +2118,4589,42,2,f +2118,4589,71,5,f +2118,4589,34,1,f +2118,4589,0,1,f +2118,4599a,0,3,f +2118,4600,71,2,f +2118,4623,4,1,f +2118,4740,57,2,f +2118,47407,0,1,f +2118,48336,4,2,f +2118,4864b,71,2,f +2118,4865a,71,1,f +2118,4868b,71,2,f +2118,50304,15,1,f +2118,50305,15,1,f +2118,50943,71,1,f +2118,50950,4,3,f +2118,50950,15,2,f +2118,54200,33,1,t +2118,54200,25,2,f +2118,54200,0,2,t +2118,54200,0,4,f +2118,54200,36,1,f +2118,54200,33,1,f +2118,54200,36,1,t +2118,54200,25,1,t +2118,55295,0,1,f +2118,55296,0,1,f +2118,55297,0,1,f +2118,55298,0,1,f +2118,55299,0,1,f +2118,55300,0,1,f +2118,55981,71,2,f +2118,57539,4,1,f +2118,57562,135,2,f +2118,59443,14,1,f +2118,5980stk01,9999,1,t +2118,6005,0,1,f +2118,6014b,0,4,f +2118,60169,72,1,f +2118,6019,71,1,f +2118,6019,0,1,f +2118,6020,71,1,f +2118,60470a,0,2,f +2118,60479,0,1,f +2118,60700,0,4,f +2118,60849,0,2,f +2118,6087,0,1,f +2118,6091,0,1,f +2118,61072,0,1,f +2118,6111,4,1,f +2118,61184,71,5,f +2118,6126a,182,2,f +2118,6134,0,1,f +2118,61406pat0004,72,2,f +2118,61409,14,3,f +2118,6141,33,1,f +2118,6141,14,5,f +2118,6141,33,1,t +2118,6141,0,2,t +2118,6141,14,3,t +2118,6141,36,1,f +2118,6141,0,7,f +2118,6141,36,1,t +2118,61482,71,1,f +2118,61482,71,1,t +2118,6179,0,1,f +2118,6180,0,1,f +2118,62700,135,2,f +2118,64728,4,1,f +2118,6541,0,5,f +2118,6541,15,2,f +2118,6553,71,1,f +2118,6558,1,3,f +2118,6587,72,2,f +2118,6636,0,1,f +2118,85940,0,2,f +2118,92410,71,1,f +2119,2420,0,2,f +2119,2431,27,1,f +2119,2436,0,2,f +2119,30027b,0,4,f +2119,30028,0,4,f +2119,3010,0,2,f +2119,3020,14,1,f +2119,3020,0,1,f +2119,3021,72,1,f +2119,3022,14,1,f +2119,3022,0,1,f +2119,3023,0,1,f +2119,3023,14,1,f +2119,3024,0,2,f +2119,3031,72,1,f +2119,3068b,0,2,f +2119,3069b,27,3,f +2119,3070b,0,2,f +2119,3070b,0,1,t +2119,3710,0,1,f +2119,3788,0,1,f +2119,3795,0,1,f +2119,3795,72,1,f +2119,4070,72,2,f +2119,44674,0,1,f +2119,54200,27,2,f +2119,54200,27,1,t +2119,6157,72,2,f +2119,6231,0,2,f +2119,64225,0,2,f +2120,2071pb01,14,1,f +2120,dupphonec01,4,1,f +2120,x1718c01,4,1,f +2123,2577,1,2,f +2123,3001,1,1,f +2123,3003pe2,14,1,f +2123,3298,4,2,f +2123,3747b,4,1,f +2123,3795,0,1,f +2123,3795,4,2,f +2123,4727,2,1,f +2123,4728,15,1,f +2123,4745,14,1,f +2123,6232,4,1,f +2124,3045,4,10,f +2124,3046a,4,5,f +2124,3048a,4,3,f +2124,3049b,4,1,f +2124,962,4,1,f +2125,3004,1,2,f +2125,3005,1,2,f +2125,3010,1,3,f +2125,3010p41,7,1,f +2125,3010pr0918,1,2,f +2125,3020,7,2,f +2125,3020,1,1,f +2125,3021,7,2,f +2125,3022,7,1,f +2125,3023,7,4,f +2125,3024,7,2,f +2125,3024,34,2,f +2125,3024,36,2,f +2125,3031,1,1,f +2125,3032,46,1,f +2125,3034,7,3,f +2125,3035,7,1,f +2125,3069b,1,2,f +2125,3479,7,1,f +2125,3622,1,2,f +2125,3626apr0001,14,1,f +2125,3660,1,2,f +2125,3660,7,10,f +2125,3666,7,2,f +2125,3710,1,2,f +2125,3795,1,1,f +2125,3795,7,1,f +2125,3821,7,1,f +2125,3822,7,1,f +2125,3829c01,7,1,f +2125,3832,7,1,f +2125,3838,4,1,f +2125,3839a,7,1,f +2125,3842a,4,1,f +2125,3933a,7,3,f +2125,3934a,7,3,f +2125,3937,1,2,f +2125,3938,1,2,f +2125,3939,46,1,f +2125,3939p91,1,1,f +2125,3940a,7,3,f +2125,3941,7,1,f +2125,3943a,7,1,f +2125,3956,1,1,f +2125,3957a,7,1,f +2125,3963,7,2,f +2125,970c00,4,1,f +2125,973p90c02,4,1,f +2126,10197,72,1,f +2126,10201,71,2,f +2126,10247,0,2,f +2126,10928,72,3,f +2126,11153,0,4,f +2126,11203,15,2,f +2126,11211,71,7,f +2126,11215,71,3,f +2126,11303,1,1,f +2126,11458,15,3,f +2126,11458,72,4,f +2126,11476,15,4,f +2126,11476,71,1,f +2126,11477,1,2,f +2126,11477,71,2,f +2126,11477,0,8,f +2126,11610,19,4,f +2126,12825,1,4,f +2126,12825,14,1,f +2126,12825,0,8,f +2126,14395,15,6,f +2126,14682,71,4,f +2126,14719,15,2,f +2126,14769,4,3,f +2126,15068,15,5,f +2126,15068,0,6,f +2126,15462,28,2,f +2126,15535,72,9,f +2126,22667,27,3,f +2126,22667,27,1,t +2126,2335,0,4,f +2126,2412b,80,4,f +2126,2412b,71,30,f +2126,2412b,80,1,t +2126,2412b,0,10,f +2126,2420,0,1,f +2126,2420,27,3,f +2126,2420,15,4,f +2126,2431,0,5,f +2126,2431,15,3,f +2126,2432,0,6,f +2126,2432,71,4,f +2126,2453b,4,6,f +2126,2453b,15,2,f +2126,2458,14,2,f +2126,2460,72,3,f +2126,2653,0,3,f +2126,2654,72,2,f +2126,2654,0,3,f +2126,2654,47,12,f +2126,2780,0,4,t +2126,2780,0,43,f +2126,2817,71,7,f +2126,2877,0,2,f +2126,2921,15,2,f +2126,298c02,0,1,t +2126,298c02,0,3,f +2126,3001,15,6,f +2126,3003,15,2,f +2126,3003,0,1,f +2126,3004,4,3,f +2126,3004,72,6,f +2126,3004,15,7,f +2126,30043,0,1,f +2126,3005,4,6,f +2126,3005,15,10,f +2126,3005,0,2,f +2126,3005,71,4,f +2126,3005,41,2,f +2126,3005,27,6,f +2126,3005,1,2,f +2126,3007,0,1,f +2126,3008,15,2,f +2126,3009,72,1,f +2126,3009,1,5,f +2126,30095,72,14,f +2126,3010,72,5,f +2126,3010,70,1,f +2126,30134,0,1,f +2126,30135,72,1,f +2126,30165,72,8,f +2126,3020,2,1,f +2126,3020,1,8,f +2126,3021,0,8,f +2126,3021,15,5,f +2126,3021,71,1,f +2126,3022,14,1,f +2126,3022,0,1,f +2126,3022,15,5,f +2126,3022,71,4,f +2126,30222,42,1,f +2126,3023,41,4,f +2126,3023,71,6,f +2126,3023,15,21,f +2126,3023,27,1,f +2126,3023,1,14,f +2126,3023,47,5,f +2126,3023,14,12,f +2126,3023,4,9,f +2126,3023,57,4,f +2126,3023,46,4,f +2126,3023,0,20,f +2126,30237b,14,1,f +2126,30237b,71,2,f +2126,3024,0,4,f +2126,3024,70,1,t +2126,3024,27,1,t +2126,3024,27,3,f +2126,3024,70,1,f +2126,3024,0,1,t +2126,3024,15,2,t +2126,3024,15,6,f +2126,3031,72,2,f +2126,3032,14,1,f +2126,3032,1,2,f +2126,3034,72,2,f +2126,3034,0,2,f +2126,3035,71,1,f +2126,3035,0,1,f +2126,3037,71,1,f +2126,3037,1,1,f +2126,30374,1000,12,f +2126,30377,15,2,t +2126,30377,15,24,f +2126,30383,0,2,f +2126,3039,4,2,f +2126,3039,14,2,f +2126,3039,1,2,f +2126,3040b,1,2,f +2126,3040bpr0003,71,1,f +2126,3062b,0,2,f +2126,3062b,2,2,f +2126,30663,0,1,f +2126,3068b,71,7,f +2126,3068b,14,6,f +2126,3068bpr0136,72,1,f +2126,3069b,28,1,f +2126,3069b,0,9,f +2126,3069b,19,1,f +2126,3069b,71,4,f +2126,3069b,14,5,f +2126,3069b,15,7,f +2126,3069b,2,2,f +2126,3069b,4,3,f +2126,3069bpr0100,2,2,f +2126,3070b,0,3,f +2126,3070b,70,2,f +2126,3070b,25,1,t +2126,3070b,0,1,t +2126,3070b,1,1,t +2126,3070b,1,2,f +2126,3070b,25,4,f +2126,3070b,70,1,t +2126,3176,0,9,f +2126,3185,15,2,f +2126,32000,14,2,f +2126,32001,0,9,f +2126,32028,71,6,f +2126,32039,4,2,f +2126,32059,0,1,f +2126,32062,4,11,f +2126,32064a,71,5,f +2126,32123b,14,10,f +2126,32123b,14,2,t +2126,32124,15,4,f +2126,32184,14,2,f +2126,32198,19,1,f +2126,32270,0,1,f +2126,32316,0,2,f +2126,32324,71,1,f +2126,32474,4,1,t +2126,32474,4,2,f +2126,32524,0,4,f +2126,32526,71,1,f +2126,32530,72,4,f +2126,32530,0,2,f +2126,33299a,71,1,f +2126,3460,72,7,f +2126,3460,14,1,f +2126,3460,15,2,f +2126,3622,15,2,f +2126,3622,1,2,f +2126,3622,72,2,f +2126,3622,71,2,f +2126,3623,15,2,f +2126,3623,72,6,f +2126,3623,0,3,f +2126,3626cpr0579,14,1,f +2126,3626cpr0646,14,1,f +2126,3626cpr0677,14,2,f +2126,3626cpr0892,14,1,f +2126,3626cpr0893,14,2,f +2126,3626cpr1146,14,1,f +2126,3626cpr1337,14,1,f +2126,3626cpr1347,14,1,f +2126,3626cpr1349,14,1,f +2126,3626cpr1769,14,1,f +2126,3648b,72,1,f +2126,3649,71,1,f +2126,3660,4,3,f +2126,3660,15,5,f +2126,3665,71,4,f +2126,3665,15,2,f +2126,3665,1,4,f +2126,3666,27,2,f +2126,3666,0,3,f +2126,3666,14,3,f +2126,3666,15,6,f +2126,3666,71,6,f +2126,3673,71,3,f +2126,3673,71,2,t +2126,3700,72,5,f +2126,3700,15,2,f +2126,3701,72,2,f +2126,3702,71,2,f +2126,3703,71,2,f +2126,3703,1,2,f +2126,3705,0,1,f +2126,3707,0,3,f +2126,3708,15,3,f +2126,3709,0,12,f +2126,3709,15,2,f +2126,3710,14,2,f +2126,3710,1,9,f +2126,3710,71,13,f +2126,3710,0,5,f +2126,3738,0,4,f +2126,3738,72,3,f +2126,3738,71,3,f +2126,3738,15,9,f +2126,3749,19,12,f +2126,3794b,19,1,f +2126,3794b,0,15,f +2126,3794b,28,7,f +2126,3794b,14,2,f +2126,3795,0,5,f +2126,3821,1,1,f +2126,3822,1,1,f +2126,3829c01,71,1,f +2126,3830,0,2,f +2126,3831,0,2,f +2126,3832,0,3,f +2126,3836,70,1,f +2126,3837,72,1,f +2126,3894,4,1,f +2126,3895,72,6,f +2126,3899,4,2,f +2126,3937,72,1,f +2126,3941,46,1,f +2126,3941,182,1,f +2126,3941,41,1,f +2126,3941,70,3,f +2126,3957b,15,32,f +2126,3958,10,2,f +2126,3958,1,1,f +2126,40240,70,1,f +2126,4032a,71,3,f +2126,4070,19,2,f +2126,4079b,4,8,f +2126,4079b,1,8,f +2126,4079b,14,8,f +2126,4079b,70,3,f +2126,4083,14,1,f +2126,41334,72,1,f +2126,4151,0,1,f +2126,41539,0,1,f +2126,4162,0,6,f +2126,4162,71,2,f +2126,41677,1,32,f +2126,4176,47,1,f +2126,41769,4,1,f +2126,41769,1,1,f +2126,41769,14,1,f +2126,41770,14,1,f +2126,41770,4,1,f +2126,41770,1,1,f +2126,4185,47,3,f +2126,41879a,71,1,f +2126,41879a,30,1,f +2126,41879a,321,1,f +2126,41879a,28,1,f +2126,42003,71,2,f +2126,4215b,41,1,f +2126,42610,71,2,f +2126,4274,1,3,t +2126,4274,1,36,f +2126,4282,71,1,f +2126,4286,0,2,f +2126,43093,1,4,f +2126,43722,15,1,f +2126,43723,15,1,f +2126,44301a,72,2,f +2126,44302a,4,1,f +2126,44302a,1,3,f +2126,44302a,71,2,f +2126,44302a,14,1,f +2126,44728,4,2,f +2126,44728,15,3,f +2126,4477,14,1,f +2126,4477,4,1,f +2126,4477,1,1,f +2126,4490,15,1,f +2126,4510,0,4,f +2126,4519,71,5,f +2126,4522,0,1,f +2126,4536,15,2,f +2126,4594,47,2,f +2126,4733,0,1,f +2126,4740,71,1,f +2126,4740,82,1,f +2126,4740,82,1,t +2126,4740,4,1,f +2126,47720,0,1,f +2126,48336,15,16,f +2126,4865b,71,5,f +2126,50451,15,1,f +2126,50951,0,1,t +2126,50951,0,2,f +2126,52031,1,1,f +2126,52107,0,3,f +2126,54200,14,8,f +2126,54200,0,2,f +2126,54200,14,1,t +2126,54200,47,2,f +2126,54200,4,8,f +2126,54200,1,2,t +2126,54200,1,10,f +2126,54200,4,1,t +2126,54200,0,1,t +2126,54200,182,4,f +2126,54200,182,2,t +2126,54200,47,1,t +2126,55982,71,12,f +2126,56903,15,3,f +2126,57585,71,1,f +2126,58090,0,8,f +2126,59426,72,4,f +2126,59443,14,5,f +2126,59443,71,12,f +2126,59900,2,1,f +2126,59900,1000,32,f +2126,59900,25,1,f +2126,59900,1,1,f +2126,6005,0,8,f +2126,60470b,15,4,f +2126,60471,0,1,f +2126,60475b,14,2,f +2126,60478,15,24,f +2126,60478,1,1,f +2126,60478,0,2,f +2126,60478,4,1,f +2126,60478,14,1,f +2126,60592,0,2,f +2126,60601,47,2,f +2126,60657,15,1,f +2126,60658,15,1,f +2126,60897,0,1,f +2126,60897,1,8,f +2126,60897,14,2,f +2126,6091,0,2,f +2126,61183,72,1,f +2126,61184,71,4,f +2126,61254,0,3,f +2126,6134,1,1,f +2126,6141,70,4,f +2126,6141,14,1,t +2126,6141,46,4,f +2126,6141,46,1,t +2126,6141,71,8,f +2126,6141,70,1,t +2126,6141,71,1,t +2126,6141,14,4,f +2126,61485,71,1,f +2126,61487,15,2,f +2126,6179,71,1,f +2126,6180,15,1,f +2126,62113,72,4,f +2126,6231,1,2,f +2126,62462,0,21,f +2126,62462,15,1,f +2126,6254,191,1,f +2126,6259,41,1,f +2126,62696,320,1,f +2126,62711,308,1,f +2126,62810,308,1,f +2126,63082,0,2,f +2126,63864,0,4,f +2126,63864,71,14,f +2126,63868,1,1,f +2126,63868,0,2,f +2126,63868,14,1,f +2126,63868,4,1,f +2126,63868,15,2,f +2126,63965,70,1,f +2126,64179,71,2,f +2126,64567,0,1,f +2126,64567,0,1,t +2126,6536,72,2,f +2126,6541,15,2,f +2126,6558,1,2,f +2126,6587,28,2,f +2126,6589,19,6,f +2126,6589,19,1,t +2126,6632,4,2,f +2126,6636,0,1,f +2126,6636,15,4,f +2126,73983,4,3,f +2126,73983,15,4,f +2126,73983,1,3,f +2126,73983,71,5,f +2126,75c18,0,1,t +2126,75c18,0,1,f +2126,76244,15,1,f +2126,76766,0,6,f +2126,85984,4,3,f +2126,85984,14,4,f +2126,85984,71,2,f +2126,86208,72,2,f +2126,87079,0,8,f +2126,87079,15,5,f +2126,87081,72,1,f +2126,87082,71,2,f +2126,87087,1,2,f +2126,87087,0,6,f +2126,87552,47,2,f +2126,87552,41,2,f +2126,87552,71,2,f +2126,87580,70,2,f +2126,87580,0,2,f +2126,87990,226,1,f +2126,87994,70,1,f +2126,88072,72,2,f +2126,88072,15,1,f +2126,88283,484,1,f +2126,88286,308,1,f +2126,91988,0,1,f +2126,92099,0,1,f +2126,92280,71,2,f +2126,92402,0,4,f +2126,92410,71,1,f +2126,92582,15,3,f +2126,92593,71,3,f +2126,92593,15,4,f +2126,92690,70,1,f +2126,92746,19,1,f +2126,92926,71,1,f +2126,92946,0,2,f +2126,92946,15,14,f +2126,92950,0,1,f +2126,92950,15,1,f +2126,96874,25,1,t +2126,970c00,0,1,f +2126,970c00,19,1,f +2126,970c00,28,1,f +2126,970c00,70,1,f +2126,970c00,1,1,f +2126,970c00,308,1,f +2126,970c00,378,1,f +2126,970c00,4,1,f +2126,973pr1166c01,272,1,f +2126,973pr1173c01,4,1,f +2126,973pr1479c01,15,1,f +2126,973pr1480c01,15,1,f +2126,973pr1573c01,15,1,f +2126,973pr1585c01,25,1,f +2126,973pr1720c01,15,1,f +2126,973pr1801c01,25,1,f +2126,973pr1857c01,1,1,f +2126,973pr1918c01,73,1,f +2126,973pr2001c01,85,1,f +2126,973pr2335c01,0,1,f +2126,98138,182,2,t +2126,98138,47,4,f +2126,98138,46,13,f +2126,98138,36,7,f +2126,98138,41,1,t +2126,98138,41,4,f +2126,98138,47,1,t +2126,98138,1000,1,t +2126,98138,25,2,f +2126,98138,182,12,f +2126,98138,36,2,t +2126,98138,33,1,t +2126,98138,46,2,t +2126,98138,1000,15,f +2126,98138,25,1,t +2126,98138,33,8,f +2126,98138pr0012,179,1,t +2126,98138pr0012,179,1,f +2126,98282,72,2,f +2126,98382pr0001,84,1,f +2126,99008,19,1,f +2126,99206,0,5,f +2126,99207,71,3,f +2126,99207,0,8,f +2126,99780,0,12,f +2126,99780,71,6,f +2126,99781,71,2,f +2126,99781,15,2,f +2128,2412b,71,4,f +2128,2419,72,1,f +2128,2540,71,1,f +2128,2654,71,3,f +2128,3023,272,5,f +2128,30377,0,1,f +2128,30377,0,1,t +2128,3068b,272,2,f +2128,3710,272,4,f +2128,48336,0,2,f +2128,50950,272,1,f +2128,54200,72,1,f +2128,54200,72,1,t +2128,60470a,0,2,f +2128,60478,72,1,f +2128,6141,41,1,t +2128,6141,41,2,f +2128,61678,72,8,f +2128,63864,71,2,f +2128,63868,0,2,f +2129,2341,7,1,f +2129,2341,0,1,f +2129,2343,14,1,f +2129,2420,7,1,f +2129,2431,4,1,f +2129,2431,14,1,f +2129,2431,7,1,f +2129,2431pa0,19,1,f +2129,2436,7,1,f +2129,2436,0,1,f +2129,2454a,19,3,f +2129,2454pa0,19,1,f +2129,2454px3,19,1,f +2129,2454px4,19,1,f +2129,2456,8,2,f +2129,2526,15,1,f +2129,2536,6,7,f +2129,2540,0,2,f +2129,2555,0,4,f +2129,2563,6,1,f +2129,2566,2,1,f +2129,3001,8,1,f +2129,3001,1,3,f +2129,3002,8,1,f +2129,3002,7,4,f +2129,3002,4,1,f +2129,3003,19,1,f +2129,3003,0,1,f +2129,3003,7,9,f +2129,3004,1,3,f +2129,3004,7,2,f +2129,3004,14,1,f +2129,3004,19,2,f +2129,3005,7,4,f +2129,3006,8,2,f +2129,3008,4,1,f +2129,3008,0,2,f +2129,3009,8,4,f +2129,3010,1,1,f +2129,3010,19,2,f +2129,3010,4,1,f +2129,3010,14,1,f +2129,3010,8,9,f +2129,30115,4,1,f +2129,30132,8,3,f +2129,30141,8,1,f +2129,30147,8,1,f +2129,30148,0,1,f +2129,30149,19,1,f +2129,30150,6,2,f +2129,30151a,47,1,f +2129,30152pat0001,0,2,f +2129,30153,36,1,f +2129,30154,0,1,f +2129,30155,19,4,f +2129,30157,8,2,f +2129,30158,6,1,f +2129,30161pa1,47,1,f +2129,30162,0,1,f +2129,30163,0,1,f +2129,30164,0,1,f +2129,30167,6,1,f +2129,30168,15,2,f +2129,30168px1,14,1,f +2129,30169,0,1,f +2129,30172,15,3,f +2129,3020,4,3,f +2129,3020,0,1,f +2129,3020,19,1,f +2129,3020,1,1,f +2129,3021,1,1,f +2129,3021,6,2,f +2129,3021,0,1,f +2129,3022,8,7,f +2129,3022,0,1,f +2129,3022,14,1,f +2129,3022,1,1,f +2129,3022,4,2,f +2129,3023,4,1,f +2129,3023,0,5,f +2129,3024,7,1,f +2129,3029,7,1,f +2129,3031,4,1,f +2129,3032,0,1,f +2129,3033,19,1,f +2129,3034,4,1,f +2129,3035,1,1,f +2129,3036,19,1,f +2129,3038,7,2,f +2129,3039,4,2,f +2129,3039,1,4,f +2129,3039,7,8,f +2129,3040b,1,2,f +2129,3040b,4,4,f +2129,3040b,19,2,f +2129,3040b,7,1,f +2129,3045,4,2,f +2129,3062b,0,4,f +2129,3068b,4,1,f +2129,3068bpx13,19,1,f +2129,3068bpx19,19,1,f +2129,3068bpx20,19,1,f +2129,3068bpx21,19,1,f +2129,3069b,14,1,f +2129,3069b,7,3,f +2129,3069bp03,7,1,f +2129,3069bpa0,19,1,f +2129,3069bpa1,0,1,f +2129,3069bpa4,15,1,f +2129,3070b,7,1,f +2129,3184,6,4,f +2129,3298,7,6,f +2129,3298,4,1,f +2129,3460,7,3,f +2129,3483,0,4,f +2129,3622,8,1,f +2129,3623,0,2,f +2129,3626bpa1,14,1,f +2129,3626bpa2,7,1,f +2129,3626bpa3,14,1,f +2129,3626bpa7,14,1,f +2129,3626bpa9,14,1,f +2129,3626bpr0098,14,1,f +2129,3626bpr0895,15,1,f +2129,3665,7,2,f +2129,3679,7,1,f +2129,3680,0,1,f +2129,3688,19,2,f +2129,3710,0,3,f +2129,3754,8,2,f +2129,3794a,14,4,f +2129,3794a,7,1,f +2129,3795,1,1,f +2129,3795,19,1,f +2129,3829c01,4,1,f +2129,3832,19,1,f +2129,3835,7,1,f +2129,3837,8,1,f +2129,3841,8,1,f +2129,3849,0,1,f +2129,3878,0,1,f +2129,3899,14,1,f +2129,3937,19,2,f +2129,3937,4,1,f +2129,3938,7,2,f +2129,3938,0,1,f +2129,4032a,2,5,f +2129,4070,14,2,f +2129,4081b,7,4,f +2129,4085c,1,1,f +2129,4162,4,2,f +2129,4213,8,1,f +2129,4286,0,1,f +2129,4286,14,2,f +2129,4477,0,2,f +2129,4509,7,1,f +2129,4528,0,1,f +2129,4529,0,1,f +2129,4589,14,2,f +2129,4589,0,3,f +2129,4590,14,1,f +2129,4623,7,2,f +2129,4623,14,1,f +2129,4625,7,2,f +2129,4861,19,1,f +2129,57503,334,1,f +2129,57504,334,1,f +2129,57505,334,1,f +2129,57506,334,1,f +2129,6003,7,3,f +2129,6019,0,2,f +2129,6091,0,5,f +2129,6092pb03,19,1,f +2129,6126a,57,2,f +2129,6141,7,2,f +2129,6141,0,4,f +2129,6141,4,2,f +2129,6141,47,3,f +2129,6141,14,1,f +2129,6148,2,4,f +2129,6260,15,1,f +2129,6265,15,2,f +2129,6266,15,2,f +2129,6541,7,2,f +2129,970c00,0,2,f +2129,970c00,4,1,f +2129,970c00,2,1,f +2129,970c00,7,1,f +2129,970c11pb01,0,1,f +2129,973p22c01,0,1,f +2129,973pa1c01,15,1,f +2129,973pa2c01,0,1,f +2129,973pa6c01,19,1,f +2129,973pa7c01,19,1,f +2129,973pb0391c01,19,1,f +2129,tent,0,1,f +2130,2436,0,1,f +2130,3001,0,2,f +2130,3004,4,4,f +2130,3005,4,2,f +2130,3023,4,2,f +2130,3029,4,1,f +2130,3069bp08,15,1,f +2130,3081cc01,4,12,f +2130,3710,4,1,f +2130,3823,47,1,f +2130,3829c01,7,1,f +2130,3888c01,0,1,f +2130,4035,0,2,f +2130,4079,0,5,f +2130,4088px6,4,1,f +2130,4744,4,1,f +2130,6111,4,2,f +2130,6112,4,2,f +2130,6141,36,2,f +2130,6191,4,1,f +2131,2431,0,6,f +2131,3009,0,4,f +2131,3036,15,1,f +2131,3068b,0,14,f +2131,3666,15,2,f +2131,3679,71,1,f +2131,3680,0,1,f +2131,3958,15,1,f +2131,60474,15,1,f +2132,3702,1,4,f +2132,3702,4,6,f +2132,3894,4,4,f +2132,3894,1,4,f +2134,2444,85,1,f +2134,2460,0,2,f +2134,2780,0,2,f +2134,43093,1,2,f +2134,47430,85,2,f +2134,47431,72,2,f +2134,47432,85,2,f +2134,47452,85,2,f +2134,47454,72,2,f +2134,47455,71,10,f +2134,47456,85,2,f +2134,47457,85,4,f +2134,47469px1,85,1,f +2134,50602,178,2,f +2134,50624,178,1,f +2134,50629,178,2,f +2134,50654pb01,135,1,f +2134,50662c01pb01,85,1,f +2134,bb153pb16,72,1,f +2135,3034a,15,1,f +2135,712a,15,2,f +2135,713a,15,2,f +2137,1,4,3,f +2137,2,4,2,f +2137,3,4,4,f +2137,3002a,0,1,f +2137,3003,1,1,f +2137,3004,4,2,f +2137,3004,15,1,f +2137,3005,1,2,f +2137,3009,4,2,f +2137,3023,15,1,f +2137,3023,1,1,f +2137,3023,0,1,f +2137,3068b,1,1,f +2137,3068b,15,1,f +2137,3068b,4,7,f +2137,3068b,0,1,f +2137,3069a,0,2,f +2137,3069a,1,2,f +2137,3069a,4,15,f +2137,3069a,15,1,f +2137,3070a,4,2,f +2137,3070a,1,1,f +2137,837,4,2,f +2137,838,4,2,f +2138,2456,4,2,f +2138,2456,15,2,f +2138,2456,14,2,f +2138,3001,15,40,f +2138,3001,14,40,f +2138,3001,0,28,f +2138,3001,4,40,f +2138,3001,1,40,f +2138,3002,0,8,f +2138,3002,15,12,f +2138,3002,1,12,f +2138,3002,4,12,f +2138,3002,14,12,f +2138,3003,4,32,f +2138,3003,1,32,f +2138,3003,14,32,f +2138,3003,0,20,f +2138,3003,15,32,f +2138,3006,4,2,f +2138,3006,14,2,f +2138,3007,1,2,f +2139,3149c01,4,1,f +2139,3324c01,4,1,f +2139,3679,7,4,f +2139,3680,15,1,f +2139,3680,0,2,f +2139,3730,4,1,f +2139,3730,0,2,f +2139,3731,0,2,f +2139,3731,4,1,f +2139,4275b,0,2,f +2139,4276b,0,2,f +2140,132a,7,8,f +2140,3001a,4,14,f +2140,3002a,4,23,f +2140,3002a,47,4,f +2140,3003,4,14,f +2140,3003,47,8,f +2140,3004,0,5,f +2140,3004,4,4,f +2140,3004,14,8,f +2140,3005,0,2,f +2140,3005,14,2,f +2140,3006,4,6,f +2140,3007,4,8,f +2140,3008,4,4,f +2140,3008,14,6,f +2140,3009,4,5,f +2140,3009,14,2,f +2140,3035,15,4,f +2140,3037,4,4,f +2140,3038,4,6,f +2140,3039,4,8,f +2140,3040a,4,2,f +2140,3045,4,6,f +2140,3046a,4,4,f +2140,650,79,1,f +2140,7039,4,8,f +2140,7049a,15,4,f +2143,4688c01,14,1,f +2144,2335pb005,4,2,f +2144,2339,4,2,f +2144,2431,4,2,f +2144,2877,4,2,f +2144,3001,378,1,f +2144,3004,19,4,f +2144,3004,378,2,f +2144,3009,4,1,f +2144,3009,19,4,f +2144,30141,8,1,f +2144,30153,36,1,f +2144,30167,6,1,f +2144,3022,0,1,f +2144,30236,0,2,f +2144,30237a,8,2,f +2144,3024,4,4,f +2144,30389b,7,2,f +2144,3039,378,2,f +2144,3040b,0,6,f +2144,30553,0,2,f +2144,30565,6,4,f +2144,3062b,4,4,f +2144,3068b,4,4,f +2144,3460,0,1,f +2144,3626b,46,2,f +2144,3626bpr0247,14,1,f +2144,3633,4,1,f +2144,3675,0,2,f +2144,3679,7,1,f +2144,3680,0,1,f +2144,3684,19,2,f +2144,3700,0,2,f +2144,3710,0,3,f +2144,3794a,4,5,f +2144,3865,7,1,f +2144,4162,8,2,f +2144,4189429pb01,9999,1,t +2144,4189429pb02,9999,1,t +2144,4189429pb03,9999,1,t +2144,43888,4,4,f +2144,43896,0,2,f +2144,43897,0,1,f +2144,43899,8,2,f +2144,43902pb01,4,1,f +2144,4589,378,1,f +2144,6126a,57,2,f +2144,6141,0,1,t +2144,6141,0,2,f +2144,6587,8,2,f +2144,6636,8,2,f +2144,970c00,0,1,f +2144,973pb0391c01,19,1,f +2145,3011,2,1,f +2145,31022,15,6,f +2145,31023,15,3,f +2145,31041,297,1,f +2145,31042,135,1,f +2145,31110,29,6,f +2145,3437,15,2,f +2145,3437,29,2,f +2145,3437,10,1,f +2145,3437,73,1,f +2145,40005,45,1,f +2145,4066,114,2,f +2145,4066,15,1,f +2145,44524,226,1,f +2145,47219,15,1,f +2145,47437,73,1,f +2145,47510pr0003c01,29,1,f +2145,4886,5,1,f +2145,4890,26,2,f +2145,4891,15,2,f +2145,4892,15,1,f +2145,4894,297,1,f +2145,4895,212,2,f +2145,4911,15,1,f +2145,4912,5,1,f +2145,51260,29,4,f +2145,51261,29,2,f +2145,51262,226,1,f +2145,51288,26,1,f +2145,51383,29,4,f +2145,51385,26,2,f +2145,53916,29,2,f +2145,54827,41,1,f +2145,54828,5,1,f +2145,54829,28,1,f +2145,54830,4,1,f +2145,61310,226,3,f +2145,63716,85,1,f +2145,6472,5,1,f +2145,6473,5,1,f +2145,6476,26,1,f +2145,6478,212,4,f +2145,6479,15,1,f +2145,6497,15,4,f +2145,6510,5,1,f +2145,6510,10,4,f +2145,6510,14,2,f +2145,75115pr0009,378,1,f +2145,75473,26,1,f +2145,76317,70,1,f +2145,89158,2,1,f +2147,11110pr0005,297,1,f +2147,11126,14,1,f +2147,11127,41,6,f +2147,11129pr0002,71,1,f +2147,11767,72,1,f +2147,2357,72,4,f +2147,2431,71,2,f +2147,2654,19,1,f +2147,2780,0,1,t +2147,2780,0,2,f +2147,3004,70,6,f +2147,30176,2,4,f +2147,3020,71,1,f +2147,3021,2,2,f +2147,3023,19,3,f +2147,3031,71,1,f +2147,3032,19,2,f +2147,30374,15,1,f +2147,3040b,70,4,f +2147,3048c,297,4,f +2147,3068b,71,1,f +2147,3069b,191,2,f +2147,3069b,72,2,f +2147,3626cpr1120,19,1,f +2147,3941,41,3,f +2147,4032a,15,2,f +2147,4032a,308,1,f +2147,44126,72,2,f +2147,4460b,191,4,f +2147,49668,15,4,f +2147,50231,272,1,f +2147,53705,41,1,f +2147,53705,41,1,t +2147,54821,143,1,f +2147,6019,71,2,f +2147,6019,19,4,f +2147,6021359,9999,1,t +2147,6021367,9999,1,t +2147,6021369,9999,1,t +2147,6021371,9999,1,t +2147,6021373,9999,1,t +2147,6141,41,1,t +2147,6141,41,1,f +2147,64567,297,2,f +2147,64567,297,1,t +2147,75937,0,1,f +2147,87747,15,1,t +2147,87747,15,3,f +2147,970c02pr0430,19,1,f +2147,973pr2228c01,84,1,f +2147,98138,297,4,f +2147,98138,297,1,t +2147,98283,71,2,f +2147,98284,70,1,f +2147,98313,70,4,f +2147,99207,71,2,f +2148,122c01,0,4,f +2148,298c02,0,2,f +2148,3001,15,1,f +2148,3001,0,1,f +2148,3002,15,2,f +2148,3003,15,1,f +2148,3003,0,1,f +2148,3004,14,12,f +2148,3004,0,2,f +2148,3004,4,4,f +2148,3004,15,4,f +2148,3005,14,38,f +2148,3005,4,4,f +2148,3008,0,2,f +2148,3008,15,1,f +2148,3009,14,1,f +2148,3010,4,2,f +2148,3010,0,4,f +2148,3010,14,16,f +2148,3010,15,3,f +2148,3020,0,1,f +2148,3020,47,1,f +2148,3020,15,1,f +2148,3020,2,6,f +2148,3021,15,1,f +2148,3021,4,1,f +2148,3022,4,2,f +2148,3022,15,3,f +2148,3022,0,1,f +2148,3023,4,2,f +2148,3023,0,1,f +2148,3023,15,4,f +2148,3024,4,6,f +2148,3024,14,2,f +2148,3024,15,5,f +2148,3024,36,1,f +2148,3030,14,2,f +2148,3031,15,1,f +2148,3031,0,1,f +2148,3031,4,1,f +2148,3033,14,2,f +2148,3038,15,2,f +2148,3039,4,1,f +2148,3039p34,15,3,f +2148,3040b,14,8,f +2148,3040p32,4,1,f +2148,3062b,15,3,f +2148,3062b,0,2,f +2148,3068b,15,1,f +2148,3069b,4,5,f +2148,3069b,15,1,f +2148,3070b,15,3,f +2148,3070b,4,1,f +2148,3139,0,6,f +2148,3185,4,3,f +2148,3460,0,1,f +2148,3460,4,1,f +2148,3460,15,3,f +2148,3461,0,1,f +2148,3462,15,1,f +2148,3474,15,1,f +2148,3480,0,1,f +2148,3481,15,1,f +2148,3581,14,2,f +2148,3582,4,2,f +2148,3585,15,1,f +2148,3586,15,1,f +2148,3622,14,2,f +2148,3622,0,2,f +2148,3623,15,2,f +2148,3623,4,1,f +2148,3623,14,2,f +2148,3624,15,1,f +2148,3624,0,1,f +2148,3626apr0001,14,8,f +2148,3633,4,2,f +2148,3641,0,8,f +2148,3660,15,2,f +2148,3660,0,4,f +2148,3665,15,1,f +2148,3666,4,3,f +2148,3666,15,1,f +2148,3679,7,3,f +2148,3680,7,2,f +2148,3680,0,1,f +2148,3710,0,1,f +2148,3710,4,3,f +2148,3710,15,1,f +2148,3730,0,1,f +2148,3731,0,1,f +2148,3747a,15,1,f +2148,3794a,15,3,f +2148,3795,15,2,f +2148,3795,0,1,f +2148,3821,15,1,f +2148,3822,15,1,f +2148,3823,41,1,f +2148,3829c01,4,1,f +2148,3832,0,1,f +2148,3842b,4,1,f +2148,3857,2,1,f +2148,3899,4,2,f +2148,3900,15,3,f +2148,3901,0,2,f +2148,3935,0,1,f +2148,3936,0,1,f +2148,3937,0,1,f +2148,3938,0,1,f +2148,3942cpr01,15,1,f +2148,3957a,7,2,f +2148,3958,14,1,f +2148,4070,15,2,f +2148,4079,15,4,f +2148,4079,14,5,f +2148,4079,4,2,f +2148,4085b,4,2,f +2148,4150pr0001,15,1,f +2148,4162,4,1,f +2148,4213,15,1,f +2148,4275b,0,2,f +2148,4276b,0,2,f +2148,4282,4,1,f +2148,4282,2,2,f +2148,4285a,7,1,f +2148,4286,15,1,f +2148,4315,15,1,f +2148,4347,0,6,f +2148,4447,0,2,f +2148,4448,47,2,f +2148,4449,0,1,f +2148,4449,7,1,f +2148,4477,4,1,f +2148,4477,0,3,f +2148,4477,15,2,f +2148,4485,4,1,f +2148,4530,0,2,f +2148,4589,0,2,f +2148,4589,15,1,f +2148,4624,7,6,f +2148,4625,15,4,f +2148,4854,15,4,f +2148,4855,15,4,f +2148,4856a,4,2,f +2148,4856a,15,1,f +2148,4857,15,4,f +2148,4858,15,2,f +2148,4858,4,1,f +2148,4859,15,2,f +2148,4859,4,4,f +2148,4861,15,1,f +2148,4862,41,16,f +2148,4863,4,6,f +2148,4863,15,2,f +2148,4864a,41,2,f +2148,4864a,4,2,f +2148,4865a,4,5,f +2148,4865a,15,5,f +2148,4866,41,1,f +2148,4867pb03,15,1,f +2148,4868a,15,4,f +2148,4869,7,4,f +2148,4870,7,3,f +2148,4871,15,1,f +2148,4872,47,3,f +2148,4873,15,2,f +2148,606p33,2,2,f +2148,608p33,2,1,f +2148,6099p01,2,1,f +2148,6141,15,39,f +2148,6141,34,1,f +2148,6141,34,1,t +2148,6141,36,1,t +2148,6141,33,10,f +2148,6141,47,22,f +2148,6141,36,11,f +2148,6141,47,1,t +2148,6141,46,2,f +2148,6392stk01,9999,1,t +2148,73194c01,0,2,f +2148,970c00,4,1,f +2148,970c00,0,3,f +2148,970c00,1,2,f +2148,970c00,15,2,f +2148,973p0ac01,1,1,f +2148,973p16c01,15,3,f +2148,973p18c01,1,1,f +2148,973pb0091c01,0,1,f +2148,973px189c01,0,1,f +2148,973px61c01,15,1,f +2150,298c02,0,4,f +2150,3002,15,3,f +2150,3003,15,3,f +2150,3004p01,15,2,f +2150,3004p06,15,2,f +2150,3005,15,2,f +2150,3006,15,1,f +2150,3008,15,1,f +2150,3009,15,1,f +2150,3010,15,2,f +2150,3010ap04,15,2,f +2150,3020,0,1,f +2150,3020,15,5,f +2150,3021,0,1,f +2150,3022,0,1,f +2150,3022,15,7,f +2150,3023,15,10,f +2150,3023,0,8,f +2150,3024,15,2,f +2150,3024,36,4,f +2150,3024,34,2,f +2150,3031,15,1,f +2150,3039p34,15,2,f +2150,3040b,15,2,f +2150,3068b,15,2,f +2150,3068bp08,15,2,f +2150,3069b,15,1,f +2150,3069bp06,15,2,f +2150,3069bp25,7,1,f +2150,3298p90,15,1,f +2150,3622,15,2,f +2150,3626apr0001,14,1,f +2150,3660,15,2,f +2150,3665,15,6,f +2150,3673,7,1,f +2150,3700,15,3,f +2150,3747b,15,6,f +2150,3795,15,1,f +2150,3838,14,1,f +2150,3839b,15,2,f +2150,3842b,14,1,f +2150,3935,15,1,f +2150,3936,15,1,f +2150,3937,15,1,f +2150,3938,15,1,f +2150,3956,15,4,f +2150,3957a,36,6,f +2150,3963,0,6,f +2150,4032a,15,3,f +2150,4081b,15,4,f +2150,4085b,15,4,f +2150,4229,0,10,f +2150,4315,15,1,f +2150,4474,33,1,f +2150,4475,15,1,f +2150,4476b,15,6,f +2150,4588,36,2,f +2150,4589,0,2,f +2150,4589,36,4,f +2150,4589,15,1,f +2150,4591,15,1,f +2150,4596,15,1,f +2150,4730,15,1,f +2150,4732,0,2,f +2150,4735,0,2,f +2150,4740,36,3,f +2150,4740,34,2,f +2150,4746,0,3,f +2150,4757,15,1,f +2150,4757,15,1,t +2150,4758,15,1,f +2150,4758,15,1,t +2150,4760c01,15,1,f +2150,4767,15,2,f +2150,4771,15,1,f +2150,4773,46,3,t +2150,4773,34,2,f +2150,4773,34,1,t +2150,4773,36,1,t +2150,4773,36,2,f +2150,4774c02,15,1,f +2150,4865a,15,4,f +2150,73590c01a,0,2,f +2150,73590c01a,46,2,f +2150,970c00,14,1,f +2150,973p90c04,14,1,f +2151,2460,4,1,f +2151,3020,14,1,f +2151,3021,1,1,f +2151,3039,47,1,f +2151,3710,14,2,f +2151,3747b,1,1,f +2151,4617b,14,1,f +2152,2357,72,4,f +2152,2357,15,4,f +2152,2412b,71,25,f +2152,2412b,72,3,f +2152,2412b,1,5,f +2152,2420,71,8,f +2152,2431pr0028,72,2,f +2152,2446,15,4,f +2152,2447,40,4,f +2152,2460,72,2,f +2152,2476,71,3,f +2152,2540,72,10,f +2152,2540,71,3,f +2152,2555,71,8,f +2152,2555,15,8,f +2152,2654,72,11,f +2152,2877,71,7,f +2152,298c02,0,1,t +2152,298c02,0,8,f +2152,3001,72,1,f +2152,3002,15,1,f +2152,3003,15,2,f +2152,3004,72,9,f +2152,3004,15,9,f +2152,3004,1,2,f +2152,3005,15,2,f +2152,3005,72,3,f +2152,3008,15,2,f +2152,3009,71,2,f +2152,3009,15,1,f +2152,3010,15,4,f +2152,3010,71,1,f +2152,3010,72,1,f +2152,30151a,4,4,f +2152,3020,71,4,f +2152,3020,72,2,f +2152,3021,71,1,f +2152,3021,1,3,f +2152,3021,15,1,f +2152,3022,15,1,f +2152,3023,72,2,f +2152,3023,71,19,f +2152,3023,15,6,f +2152,30236,71,2,f +2152,3024,71,4,f +2152,3031,15,1,f +2152,3031,0,1,f +2152,3031,1,2,f +2152,3032,71,1,f +2152,3032,72,1,f +2152,3033,72,1,f +2152,3034,71,1,f +2152,3035,71,2,f +2152,3036,71,1,f +2152,30367c,15,2,f +2152,30374,71,2,f +2152,30377,71,3,t +2152,30377,71,24,f +2152,30384,40,2,f +2152,3039,71,1,f +2152,3039,15,10,f +2152,30391,0,8,f +2152,3039pr0002,15,3,f +2152,3040b,15,8,f +2152,30414,72,6,f +2152,3062b,0,2,f +2152,3062b,15,12,f +2152,3062b,1,8,f +2152,3062b,33,11,f +2152,3068b,15,7,f +2152,3068b,1,4,f +2152,32000,15,6,f +2152,32064b,71,2,f +2152,3460,71,5,f +2152,3622,1,6,f +2152,3622,15,2,f +2152,3626bpr0270,14,1,f +2152,3626bpr0314,14,1,f +2152,3626bpr0389,14,2,f +2152,3660,71,7,f +2152,3665,15,4,f +2152,3666,71,1,f +2152,3666,15,2,f +2152,3673,71,12,f +2152,3679,71,3,f +2152,3680,0,3,f +2152,3700,0,4,f +2152,3710,71,6,f +2152,3710,15,6,f +2152,3710,1,1,f +2152,3794a,15,7,f +2152,3794a,71,11,f +2152,3795,1,1,f +2152,3795,15,2,f +2152,3795,71,6,f +2152,3829c01,15,1,f +2152,3832,1,1,f +2152,3839b,71,1,f +2152,3894,72,8,f +2152,3937,71,13,f +2152,3938,71,8,f +2152,3941,4,4,f +2152,3941,71,8,f +2152,3941,42,6,f +2152,3941,15,14,f +2152,3941,72,7,f +2152,3957a,15,3,f +2152,3957a,71,2,f +2152,3960,15,1,f +2152,4032a,0,4,f +2152,4032a,71,7,f +2152,4070,71,18,f +2152,4070,15,5,f +2152,4070,1,2,f +2152,4081b,71,6,f +2152,4150pr0022,71,8,f +2152,41539,72,4,f +2152,41747,71,1,f +2152,41747,15,2,f +2152,41748,71,1,f +2152,41748,15,2,f +2152,41769,15,3,f +2152,41769,1,2,f +2152,41770,1,2,f +2152,41770,15,3,f +2152,41862,71,8,f +2152,42022,15,4,f +2152,42023,72,8,f +2152,42610,71,4,f +2152,4274,1,20,f +2152,4274,71,6,f +2152,4282,71,1,f +2152,4286,1,2,f +2152,4286,72,1,f +2152,4287,15,2,f +2152,4360,0,6,f +2152,43722,71,6,f +2152,43723,71,6,f +2152,43898,15,5,f +2152,44301a,71,2,f +2152,44302a,72,2,f +2152,44302a,15,2,f +2152,44567a,71,2,f +2152,44568,71,1,f +2152,44728,72,2,f +2152,4477,71,1,f +2152,4519,71,1,f +2152,45677,15,2,f +2152,4588,72,4,f +2152,46413,40,1,f +2152,4697b,71,5,f +2152,4733,72,6,f +2152,4740,0,3,f +2152,4740,15,6,f +2152,4740,71,16,f +2152,47905,0,2,f +2152,4865b,15,9,f +2152,49668,15,2,f +2152,50950,15,12,f +2152,52107,0,5,f +2152,54200,0,4,f +2152,54200,72,20,f +2152,54200,15,4,f +2152,55981,71,11,f +2152,6019,0,2,f +2152,6020,71,2,f +2152,6083,72,1,f +2152,6091,71,8,f +2152,6091,72,1,f +2152,6111,72,1,f +2152,6134,71,5,f +2152,6141,71,15,f +2152,6141,46,13,f +2152,6141,15,8,f +2152,6141,33,4,f +2152,6187,0,2,f +2152,63965,15,11,f +2152,6541,15,8,f +2152,6636,15,2,f +2152,6636,72,12,f +2152,970c00,71,4,f +2152,973c47,71,4,f +2154,2335,0,1,f +2154,2489,70,2,f +2154,2528,0,1,f +2154,2528pr0001,0,1,f +2154,2530,72,4,f +2154,2543,4,2,f +2154,2545pr0001,0,2,f +2154,2561,70,1,f +2154,2654,47,1,f +2154,3005,19,4,f +2154,3005,71,4,f +2154,30093,2,1,f +2154,3010,71,2,f +2154,30115,2,1,f +2154,30115,4,2,f +2154,30133,4,1,f +2154,30151a,47,1,f +2154,30153,41,1,f +2154,30154,72,1,f +2154,30162,72,1,f +2154,30172,28,4,f +2154,30218,15,1,f +2154,3023,19,1,f +2154,30238,4,1,f +2154,30238,0,1,f +2154,30367b,4,1,f +2154,30374,0,1,f +2154,30374,15,2,f +2154,30374,71,1,f +2154,30374,70,1,f +2154,30374,19,1,f +2154,30377,0,1,t +2154,30377,0,4,f +2154,30377,15,5,f +2154,30385,82,1,f +2154,3040b,72,1,f +2154,3044b,4,1,f +2154,3048c,297,1,f +2154,3062b,34,1,f +2154,3062b,2,5,f +2154,3062b,47,1,f +2154,3069b,72,1,f +2154,3069b,19,2,f +2154,3070b,19,1,t +2154,3070b,19,4,f +2154,32474,0,2,f +2154,33121,191,1,f +2154,33320,2,1,f +2154,3460,72,1,f +2154,3623,70,1,f +2154,3626bpr0387,14,12,f +2154,3626bpr0580,14,8,f +2154,3626bpr0895,15,2,f +2154,3647,72,1,f +2154,3659,71,1,f +2154,3666,19,1,f +2154,3678bpr0003,15,1,f +2154,3710,2,1,f +2154,3741,2,3,f +2154,3742,4,2,t +2154,3742,4,6,f +2154,3841,72,1,f +2154,3844,71,1,f +2154,3847,148,2,f +2154,3878,0,1,f +2154,3941,72,1,f +2154,3957a,71,1,f +2154,40235,28,1,f +2154,4032a,4,2,f +2154,4032a,70,1,f +2154,4150,71,1,f +2154,41879a,71,1,f +2154,4286,72,1,f +2154,4332,0,1,f +2154,4341,0,1,f +2154,4460b,72,2,f +2154,4495b,4,1,f +2154,4499,70,1,f +2154,4589,71,1,f +2154,4589,15,1,f +2154,4738a,70,1,f +2154,4739a,70,1,f +2154,4740,72,2,f +2154,50231,4,2,f +2154,51345pr0001,288,2,f +2154,59232,179,1,f +2154,59363,226,1,f +2154,59363,0,1,f +2154,59363,70,1,f +2154,60115,15,2,f +2154,60474,72,1,f +2154,61184,4,1,f +2154,6132,15,1,f +2154,6141,4,1,t +2154,6141,27,1,t +2154,6141,14,5,f +2154,6141,14,2,t +2154,6141,70,2,t +2154,6141,34,1,t +2154,6141,1,1,t +2154,6141,1,1,f +2154,6141,25,1,f +2154,6141,27,1,f +2154,6141,4,1,f +2154,6141,34,1,f +2154,6141,70,6,f +2154,6141,25,1,t +2154,61506,19,1,f +2154,62537pr0003a,15,1,f +2154,6266,15,4,f +2154,62696,320,1,f +2154,62696,308,1,f +2154,62810,484,1,f +2154,63965,0,2,f +2154,63965,15,1,f +2154,64644,0,1,f +2154,64647,4,4,f +2154,64728,4,1,f +2154,71015,334,1,f +2154,88292,84,2,f +2154,89520,148,1,f +2154,90460,0,1,f +2154,90460,288,1,f +2154,92290,297,1,f +2154,970c00,72,1,f +2154,970c00,70,5,f +2154,970c00,0,3,f +2154,970c00,1,2,f +2154,970c00,272,1,f +2154,970c00,288,1,f +2154,970d10,15,1,f +2154,973c11,14,1,f +2154,973c18,0,2,f +2154,973c50,379,1,f +2154,973pr1184c01,0,1,f +2154,973pr1440c01,1,1,f +2154,973pr1441c01,4,2,f +2154,973pr1442c01,0,1,f +2154,973pr1443c01,15,1,f +2154,973pr1444c01,14,1,f +2154,973pr1445c01,272,2,f +2154,973pr1449c01,0,1,f +2154,973pr1485c01,4,1,f +2154,973pr1621c01,320,1,f +2154,973pr1622c01,4,1,f +2154,973pr1623c01,72,1,f +2154,973pr1627c01,15,1,f +2154,973pr1629c01,4,1,f +2155,3001,4,16,f +2155,3001,1,18,f +2155,3001,15,18,f +2155,3001,0,12,f +2155,3001,14,16,f +2155,3002,14,10,f +2155,3002,1,12,f +2155,3002,0,8,f +2155,3002,15,12,f +2155,3002,4,10,f +2155,3003,14,20,f +2155,3003,0,16,f +2155,3003,15,24,f +2155,3003,4,20,f +2155,3003,1,24,f +2155,3004,14,48,f +2155,3004,1,56,f +2155,3004,15,56,f +2155,3004,0,40,f +2155,3004,4,48,f +2155,3005,15,46,f +2155,3005,1,46,f +2155,3005,0,32,f +2155,3005,14,38,f +2155,3005,4,38,f +2155,3009,4,6,f +2155,3009,0,4,f +2155,3009,1,8,f +2155,3009,15,8,f +2155,3009,14,6,f +2155,3010,0,28,f +2155,3010,15,38,f +2155,3010,1,38,f +2155,3010,4,32,f +2155,3010,14,32,f +2155,3622,0,10,f +2155,3622,4,12,f +2155,3622,15,16,f +2155,3622,1,16,f +2155,3622,14,12,f +2159,2412b,0,4,f +2159,2877,1,10,f +2159,2878c01,0,4,f +2159,2920,0,2,f +2159,3009,1,2,f +2159,30104,7,2,f +2159,3020,0,2,f +2159,30237a,1,10,f +2159,3031,0,2,f +2159,3034,8,2,f +2159,3069bp0a,0,2,f +2159,3623,0,4,f +2159,3795,0,2,f +2159,3941,6,36,f +2159,4022,0,2,f +2159,4025,0,2,f +2159,4070,1,4,f +2159,4095,0,10,f +2159,4175,0,4,f +2159,4215b,0,2,f +2159,4460a,0,4,f +2159,4477,0,2,f +2159,6187,7,2,f +2159,6583,8,2,f +2159,6584,0,1,f +2159,73092,0,2,f +2161,11215,71,1,f +2161,11458,72,2,f +2161,12825,72,2,f +2161,2412b,19,1,f +2161,2420,19,4,f +2161,2420,71,2,f +2161,2654,0,2,f +2161,298c02,0,1,f +2161,298c02,0,1,t +2161,3005,19,2,f +2161,30136,19,2,f +2161,3020,71,1,f +2161,3021,72,1,f +2161,3022,19,1,f +2161,3023,19,4,f +2161,30375ps2,1,1,f +2161,30376,19,1,f +2161,30377,19,1,t +2161,30377,19,1,f +2161,30378,19,1,f +2161,30503,19,2,f +2161,30553,0,1,f +2161,30565,72,2,f +2161,3068b,70,1,f +2161,3069b,70,1,f +2161,32062,4,1,f +2161,3660,19,2,f +2161,3679,71,1,f +2161,3680,0,1,f +2161,3937,72,1,f +2161,3938,71,1,f +2161,44728,72,2,f +2161,4740,72,1,f +2161,47905,72,2,f +2161,4865b,40,1,f +2161,54200,19,5,f +2161,54200,19,1,t +2161,59230,19,1,f +2161,59230,19,1,t +2161,59900,0,1,f +2161,59900,19,4,f +2161,6005,19,4,f +2161,60474,71,1,f +2161,6091,72,4,f +2161,6091,70,2,f +2161,61184,71,2,f +2161,6141,41,7,f +2161,6141,0,1,t +2161,6141,41,1,t +2161,6141,0,4,f +2161,64644,0,2,f +2161,85984,19,2,f +2161,88293,19,2,f +2161,92582,0,1,f +2161,92738,0,1,f +2161,99207,0,2,f +2162,2348b,33,1,f +2162,2349a,14,1,f +2162,2420,0,2,f +2162,2436,14,1,f +2162,2498,73,2,f +2162,2540,7,2,f +2162,2540,14,1,f +2162,2555,15,1,f +2162,2578a,14,1,f +2162,3001,14,1,f +2162,3004,14,1,f +2162,3010,14,1,f +2162,3020,14,4,f +2162,3020,0,1,f +2162,3023,4,1,f +2162,3023,0,1,f +2162,3024,36,2,f +2162,3024,46,1,t +2162,3024,46,1,f +2162,3024,36,1,t +2162,3184,14,1,f +2162,3626bp04,14,1,f +2162,3641,0,4,f +2162,3706,0,1,f +2162,3710,4,2,f +2162,3788,14,2,f +2162,3829c01,4,1,f +2162,3836,6,1,f +2162,3837,0,1,f +2162,4085c,14,2,f +2162,4214,14,1,f +2162,4485,4,1,f +2162,4599a,7,4,f +2162,4600,7,2,f +2162,4624,14,4,f +2162,4740,1,1,f +2162,4872,41,1,f +2162,6019,7,1,f +2162,6081,14,2,f +2162,6141,15,1,f +2162,6141,46,1,f +2162,6141,15,1,t +2162,6141,46,1,t +2162,6141,7,1,f +2162,6141,7,1,t +2162,970c00,1,1,f +2162,973pr1245c01,1,1,f +2163,10247,15,1,f +2163,10247,72,2,f +2163,11211,71,2,f +2163,11289,41,1,f +2163,11477,15,1,f +2163,13349,0,1,f +2163,13793,72,1,f +2163,14417,72,1,f +2163,14418,71,1,f +2163,14769pr0001,15,1,f +2163,15207,71,4,f +2163,15397,0,1,f +2163,15672,71,2,f +2163,23405,326,3,f +2163,2357,1,1,f +2163,23996,72,1,f +2163,2412b,1,1,f +2163,2412b,71,2,f +2163,2412b,326,2,f +2163,2420,0,2,f +2163,2420,15,2,f +2163,2420,28,2,f +2163,2431,71,2,f +2163,2431,4,2,f +2163,2446,15,1,f +2163,2447,40,1,t +2163,2447,40,1,f +2163,2454a,326,1,f +2163,2460,72,1,f +2163,2479,0,1,f +2163,2654,0,1,f +2163,2780,0,2,f +2163,2780,0,1,t +2163,298c02,14,1,t +2163,298c02,14,1,f +2163,3002,71,1,f +2163,3002,72,1,f +2163,30031,72,1,f +2163,3004,1,1,f +2163,3010,15,1,f +2163,3010,71,3,f +2163,3010,0,2,f +2163,30136,15,1,f +2163,3020,0,1,f +2163,3020,1,1,f +2163,3020,72,1,f +2163,3021,71,1,f +2163,3021,2,1,f +2163,3022,4,1,f +2163,3022,0,3,f +2163,3023,14,2,f +2163,3023,33,1,f +2163,3023,0,2,f +2163,3023,28,4,f +2163,3023,72,1,f +2163,30237b,72,1,f +2163,3024,72,2,f +2163,3024,72,1,t +2163,30248,72,1,f +2163,3027,72,1,f +2163,3028,72,1,f +2163,3031,72,1,f +2163,3033,70,1,f +2163,3036,72,1,f +2163,3040b,72,2,f +2163,30414,72,1,f +2163,3045,72,1,f +2163,3062b,321,1,f +2163,3062b,47,1,f +2163,3062b,0,1,f +2163,3062b,70,1,f +2163,3068b,72,1,f +2163,3068b,28,1,f +2163,3068bpr0241,15,1,f +2163,3069b,82,1,f +2163,3069bpr0100,2,3,f +2163,3070b,14,4,f +2163,3070b,14,1,t +2163,3176,72,1,f +2163,3623,1,1,f +2163,3623,71,3,f +2163,3626b,47,1,f +2163,3626cpr1091,14,1,f +2163,3626cpr1628,14,1,f +2163,3626cpr1663,14,1,f +2163,3660,15,1,f +2163,3666,72,1,f +2163,3673,71,5,f +2163,3673,71,2,t +2163,3701,71,4,f +2163,3710,72,4,f +2163,3710,15,2,f +2163,3710,28,5,f +2163,3710,1,1,f +2163,3794b,15,4,f +2163,3795,72,1,f +2163,3795,14,1,f +2163,3899,14,1,f +2163,3958,70,1,f +2163,4070,15,2,f +2163,41334,72,1,f +2163,41854,0,1,f +2163,4286,15,1,f +2163,4345b,71,1,f +2163,4346,71,1,f +2163,4360,0,1,f +2163,43713,72,1,f +2163,43722,4,1,f +2163,43723,4,1,f +2163,43898,0,1,f +2163,44661,15,1,f +2163,44728,71,1,f +2163,4477,15,2,f +2163,4477,72,2,f +2163,4477,0,4,f +2163,4740,0,1,f +2163,4740,4,1,f +2163,47755,4,1,f +2163,4871,72,1,f +2163,49668,1,1,f +2163,50373,15,2,f +2163,54200,2,3,f +2163,54200,2,1,t +2163,60131stk01,9999,1,f +2163,60470a,15,1,f +2163,60481,15,2,f +2163,60592,0,1,f +2163,60596,0,1,f +2163,60601,47,1,f +2163,60623,70,1,f +2163,6141,47,1,t +2163,6141,34,2,f +2163,6141,0,1,t +2163,6141,36,1,t +2163,6141,47,1,f +2163,6141,4,1,f +2163,6141,1,2,f +2163,6141,1,1,t +2163,6141,36,2,f +2163,6141,46,2,f +2163,6141,46,1,t +2163,6141,4,1,t +2163,6141,34,1,t +2163,6141,0,4,f +2163,61482,71,1,f +2163,61482,71,1,t +2163,63868,72,1,f +2163,64451,72,2,f +2163,64567,0,1,t +2163,6636,326,4,f +2163,72454,0,1,f +2163,85984,14,1,f +2163,88072,71,1,f +2163,88283,308,1,f +2163,90194,15,2,f +2163,90194,0,1,f +2163,92590,28,1,f +2163,92842,0,1,f +2163,93606,0,1,f +2163,970c00,379,1,f +2163,970c00pr0293,272,1,f +2163,970c00pr0985,15,1,f +2163,973pr1947bc01,272,1,f +2163,973pr2503c01,0,1,f +2163,973pr3209c01,15,1,f +2163,98138,46,1,f +2163,98138,46,1,t +2163,98138,33,1,t +2163,98138,33,2,f +2163,98283,28,8,f +2163,98283,71,5,f +2163,98302,0,2,f +2163,98313,72,1,f +2164,11127,41,1,f +2164,13549,41,2,f +2164,15068,308,1,f +2164,15083pr0004,71,1,f +2164,2654,0,2,f +2164,3020,72,4,f +2164,3626cpr1437,71,1,f +2164,3829c01,0,1,f +2164,60470a,71,2,f +2164,60478,0,2,f +2164,61409,484,2,f +2164,63965,70,2,f +2164,92220,41,2,f +2164,970c00pr0675,71,1,f +2164,973pr2688c01,71,1,f +2166,468c03,0,1,f +2167,2493b,0,10,f +2167,2494,41,10,f +2169,3004,15,1,f +2169,3004,47,1,f +2169,3031,15,1,f +2169,3039,47,1,f +2169,3039,15,2,f +2169,3460,0,4,f +2169,3460,15,1,f +2169,3461,0,1,f +2169,3462,0,1,f +2169,3660,15,2,f +2169,3747b,15,1,f +2169,3795,4,1,f +2169,4287,15,1,f +2169,4477,15,1,f +2170,122c01,7,4,f +2170,3002a,1,8,f +2170,3003,1,3,f +2170,3004,1,20,f +2170,3004p20,1,1,f +2170,3004p90,1,2,f +2170,3008,1,5,f +2170,3009,1,4,f +2170,3010,1,1,f +2170,3020,7,4,f +2170,3021,1,1,f +2170,3021,7,2,f +2170,3023,1,1,f +2170,3023,7,1,f +2170,3027,1,1,f +2170,3036,46,2,f +2170,3039,7,1,f +2170,3039p23,1,3,f +2170,3039p34,1,1,f +2170,3040a,1,6,f +2170,3062a,36,2,f +2170,3062a,34,1,f +2170,3066,46,3,f +2170,3067,46,3,f +2170,3144,7,2,f +2170,3456,1,1,f +2170,3460,1,2,f +2170,3479,1,5,f +2170,3481,1,1,f +2170,3626apr0001,14,4,f +2170,3641,0,8,f +2170,3660,1,4,f +2170,3660p01,1,3,f +2170,3665,1,4,f +2170,3666,1,2,f +2170,3678a,47,2,f +2170,3679,7,4,f +2170,3680,7,3,f +2170,3680,1,1,f +2170,3703,1,1,f +2170,3754pr0001,1,1,f +2170,3787,7,2,f +2170,3794a,7,5,f +2170,3795,7,2,f +2170,3829c01,7,2,f +2170,3838,15,2,f +2170,3838,7,2,f +2170,3838,4,2,f +2170,3839a,7,3,f +2170,3842a,15,2,f +2170,3842a,4,2,f +2170,3937,7,2,f +2170,3938,7,2,f +2170,3940b,7,1,f +2170,3941,1,1,f +2170,3941,7,2,f +2170,3947a,7,1,f +2170,3956,7,1,f +2170,3957a,7,2,f +2170,3959,7,1,f +2170,3960,7,1,f +2170,3961,7,1,f +2170,3962a,0,2,f +2170,970c00,15,2,f +2170,970c00,4,2,f +2170,973p90c02,4,2,f +2170,973p90c05,15,2,f +2171,2412b,0,1,t +2171,2412b,71,2,f +2171,2412b,0,1,f +2171,2420,14,2,f +2171,2432,0,1,f +2171,2436,14,1,f +2171,2540,0,1,f +2171,2555,0,1,t +2171,2555,0,4,f +2171,2877,72,2,f +2171,30027b,71,8,f +2171,30028,0,8,f +2171,3003,14,1,f +2171,3010,14,2,f +2171,3020,0,6,f +2171,3020,14,3,f +2171,3020,72,6,f +2171,3020,4,2,f +2171,3021,14,2,f +2171,3021,0,2,f +2171,3021,72,4,f +2171,3022,4,2,f +2171,3022,14,2,f +2171,3022,0,5,f +2171,3023,0,6,f +2171,3023,72,4,f +2171,3023,14,6,f +2171,3023,47,2,f +2171,3023,36,2,f +2171,3023,4,4,f +2171,3024,14,2,f +2171,3024,14,1,t +2171,3034,0,2,f +2171,30374,0,2,f +2171,3040b,72,2,f +2171,30602,40,2,f +2171,3065,40,2,f +2171,3068b,72,2,f +2171,3068b,14,1,f +2171,3069b,14,3,f +2171,3069b,4,2,f +2171,3070b,14,2,f +2171,3070b,14,1,t +2171,3665,14,2,f +2171,3679,71,1,f +2171,3680,0,1,f +2171,3710,14,3,f +2171,3710,0,2,f +2171,3795,0,2,f +2171,3795,14,1,f +2171,4070,14,4,f +2171,4081b,71,2,f +2171,4081b,14,2,f +2171,41769,14,1,f +2171,41770,14,1,f +2171,41855,14,1,f +2171,4287,14,2,f +2171,44301a,0,2,f +2171,44302a,14,2,f +2171,44728,72,2,f +2171,4477,0,2,f +2171,45677,14,1,f +2171,4600,71,7,f +2171,48336,71,6,f +2171,4871,72,3,f +2171,51739,14,1,f +2171,54200,72,2,f +2171,54200,40,6,f +2171,54200,72,1,t +2171,6014b,71,10,f +2171,6015,0,10,f +2171,6019,71,8,f +2171,6141,71,1,t +2171,6141,42,2,f +2171,6141,71,4,f +2171,6141,42,1,t +2171,6157,0,2,f +2171,6636,72,2,f +2172,6787,14,1,f +2172,6788,2,2,f +2173,ms1034,151,1,f +2174,14226c21,0,2,f +2174,2335p30,15,1,f +2174,2343,47,1,f +2174,2357,7,1,f +2174,2375,0,1,f +2174,2419,15,1,f +2174,2419,7,1,f +2174,2431,7,2,f +2174,2432,1,1,f +2174,2453a,7,2,f +2174,2458,14,2,f +2174,2462,0,2,f +2174,2462,15,2,f +2174,2489,6,1,f +2174,2527,1,1,f +2174,2530,8,2,f +2174,2536,6,4,f +2174,2538,0,1,f +2174,2540,0,1,f +2174,2542,4,1,f +2174,2543,4,1,f +2174,2544,0,1,f +2174,2561,6,2,f +2174,2562,6,3,f +2174,2563,6,1,f +2174,2566,6,1,f +2174,2653,0,2,f +2174,2654,0,3,f +2174,2817,0,1,f +2174,3001,14,5,f +2174,3002,0,1,f +2174,3004,0,5,f +2174,3004,15,3,f +2174,3004,7,3,f +2174,30043,0,1,f +2174,30048,0,1,f +2174,3005,15,1,f +2174,3005,0,9,f +2174,30055,0,3,f +2174,3007,14,1,f +2174,3008,14,2,f +2174,3009,0,1,f +2174,3010,0,1,f +2174,3021,14,1,f +2174,3021,7,1,f +2174,3021,0,2,f +2174,3022,0,1,f +2174,3023,6,3,f +2174,3023,7,1,f +2174,3023,0,2,f +2174,3023,4,2,f +2174,3031,0,1,f +2174,3034,0,1,f +2174,3039,7,1,f +2174,3062b,2,1,f +2174,3062b,0,3,f +2174,3062b,46,1,f +2174,3062b,7,6,f +2174,3068b,4,1,f +2174,3068bp30,15,1,f +2174,3069b,7,3,f +2174,3184,0,2,f +2174,3298,15,1,f +2174,3307,0,1,f +2174,3403,0,1,f +2174,3404,0,1,f +2174,3455,15,1,f +2174,3455,7,1,f +2174,3460,15,1,f +2174,3460,0,2,f +2174,3622,15,2,f +2174,3622,14,2,f +2174,3623,6,4,f +2174,3626bp39,14,1,f +2174,3626bpb0020,14,1,f +2174,3626bpr0895,15,1,f +2174,3626bpx108,14,1,f +2174,3659,15,2,f +2174,3659,7,1,f +2174,3659,0,1,f +2174,3665,0,6,f +2174,3666,0,2,f +2174,3710,15,1,f +2174,3710,0,3,f +2174,3794a,15,1,f +2174,3857,1,1,f +2174,3937,7,2,f +2174,3938,0,2,f +2174,4032a,2,1,f +2174,4032a,6,1,f +2174,4085c,15,3,f +2174,4275b,0,2,f +2174,4276b,0,3,f +2174,4286,15,1,f +2174,4286,14,2,f +2174,4319,0,1,f +2174,4460a,15,2,f +2174,4460a,0,1,f +2174,4477,0,3,f +2174,4510,0,2,f +2174,4589,15,4,f +2174,4599a,0,1,f +2174,4623,0,1,f +2174,4623,4,1,f +2174,4733,0,1,f +2174,4735,1,1,f +2174,4738a,6,1,f +2174,4739a,6,1,f +2174,57503,334,2,f +2174,57504,334,2,f +2174,57505,334,2,f +2174,57506,334,2,f +2174,6019,0,1,f +2174,6026,2,1,f +2174,6027,2,1,f +2174,6028,2,1,f +2174,6067,0,1,f +2174,6083,8,1,f +2174,6141,1,1,f +2174,6141,1,1,t +2174,6148,2,4,f +2174,6180,7,1,f +2174,6260,15,1,f +2174,6265,15,2,f +2174,6266,15,2,f +2174,71155,0,1,f +2174,84943,8,1,f +2174,970c00,7,1,f +2174,970c00,0,1,f +2174,970c00,2,1,f +2174,973p39c01,1,1,f +2174,973p3cc01,15,1,f +2174,973pb0019c01,4,1,f +2174,sailbb25,15,1,f +2175,4234,4,2,f +2176,21845,4,1,f +2176,29460,4,1,f +2176,30151b,4,1,f +2176,3626cpr2101,4,1,f +2176,62885,0,2,f +2176,88646,0,1,f +2176,970c00,0,1,f +2178,5306bc162,0,1,f +2179,1,15,3,f +2179,10b,4,1,f +2179,2,15,2,f +2179,3,4,4,f +2179,3001a,0,6,f +2179,3001a,15,6,f +2179,3003,47,1,f +2179,3003,15,12,f +2179,3004,15,9,f +2179,3005,15,8,f +2179,3006,15,2,f +2179,3007,15,1,f +2179,3008,15,3,f +2179,3010,15,13,f +2179,3022,4,1,f +2179,3023,0,1,f +2179,3024,4,2,f +2179,3031,15,5,f +2179,3033,1,1,f +2179,3062a,15,2,f +2179,3062a,4,1,f +2179,3068a,4,12,f +2179,3068a,1,26,f +2179,3068a,15,6,f +2179,3068a,14,4,f +2179,3069a,1,13,f +2179,3069a,0,2,f +2179,3069a,14,3,f +2179,3069a,4,19,f +2179,3069a,7,2,f +2179,3069a,15,2,f +2179,3070a,1,2,f +2179,837,15,1,f +2179,838,4,1,f +2180,10048,308,1,f +2180,10048,84,1,f +2180,10053,179,1,t +2180,10053,179,1,f +2180,10057pr0001,19,1,f +2180,10058,19,1,t +2180,10058,19,2,f +2180,11010,334,1,f +2180,11010,334,2,t +2180,2540,72,2,f +2180,2817,0,1,f +2180,3005,0,2,f +2180,30153,47,1,f +2180,3020,19,1,f +2180,3020,71,1,f +2180,3022,4,1,f +2180,3023,4,5,f +2180,3023,28,5,f +2180,3031,70,1,f +2180,3034,28,1,f +2180,30395,320,1,f +2180,3040b,72,3,f +2180,30552,0,8,f +2180,3069b,72,3,f +2180,3069b,2,2,f +2180,3069b,70,8,f +2180,3626cpr0974,78,1,f +2180,3626cpr0975,78,1,f +2180,3650c,71,1,f +2180,3665,72,1,f +2180,3665,70,4,f +2180,3673,71,1,f +2180,3673,71,1,t +2180,3700,4,1,f +2180,3710,70,11,f +2180,3710,71,1,f +2180,3795,70,1,f +2180,3832,71,1,f +2180,3937,72,2,f +2180,4085c,71,2,f +2180,41747,0,1,f +2180,41748,0,1,f +2180,41751,0,1,f +2180,41764,0,1,f +2180,41765,0,1,f +2180,41879a,308,2,f +2180,42021,70,1,f +2180,43093,1,1,f +2180,43722,28,1,f +2180,43723,28,1,f +2180,44301a,0,16,f +2180,44302a,70,24,f +2180,4460b,72,3,f +2180,4600,71,1,f +2180,4623,4,2,f +2180,4624,71,2,f +2180,47455,0,1,f +2180,47759pr0002,0,1,f +2180,48169,72,1,f +2180,48171,72,1,f +2180,48336,19,1,f +2180,4865b,72,1,f +2180,49668,0,6,f +2180,53451,15,1,t +2180,53451,15,2,f +2180,54200,70,2,t +2180,54200,4,1,t +2180,54200,0,1,t +2180,54200,72,1,t +2180,54200,0,4,f +2180,54200,72,6,f +2180,54200,4,2,f +2180,54200,70,8,f +2180,54383,0,1,f +2180,54384,0,1,f +2180,55236,288,2,f +2180,56823c100,15,1,f +2180,60476,4,2,f +2180,6091,0,2,f +2180,6134,71,2,f +2180,6141,4,4,f +2180,6141,4,1,t +2180,61510,71,2,f +2180,61678,0,4,f +2180,64648,179,1,f +2180,6541,71,1,f +2180,6589,19,1,t +2180,6589,19,2,f +2180,6636,28,1,f +2180,73983,0,8,f +2180,87083,72,1,f +2180,87747,0,8,f +2180,93273,71,1,f +2180,95673,179,1,f +2180,973pr2055c01,70,1,f +2180,973pr2056c01,28,1,f +2180,98313,0,2,f +2180,99464,72,2,f +2180,99781,71,2,f +2181,2343,0,2,f +2181,2357,14,2,f +2181,2412b,25,5,f +2181,2412b,42,1,f +2181,2431,15,2,f +2181,2444,15,6,f +2181,2444,4,1,f +2181,2445,0,2,f +2181,2446,15,1,f +2181,2447,82,1,f +2181,2456,0,1,f +2181,2540,25,7,f +2181,2555,15,3,f +2181,2653,71,4,f +2181,2654,4,2,f +2181,2780,0,4,f +2181,2877,0,3,f +2181,3001,4,1,f +2181,3003,72,1,f +2181,30031,0,1,f +2181,3010,15,1,f +2181,30153,42,5,f +2181,3020,71,6,f +2181,3021,2,1,f +2181,3021,72,2,f +2181,3022,14,1,f +2181,3023,27,6,f +2181,3024,14,1,f +2181,30304,72,1,f +2181,3034,0,2,f +2181,30526,71,2,f +2181,3062b,42,4,f +2181,30647,0,2,f +2181,3069b,15,1,f +2181,32054,0,1,f +2181,32064b,15,2,f +2181,3623,0,2,f +2181,3626bpr0335,14,1,f +2181,3666,0,5,f +2181,3673,71,6,f +2181,3701,71,2,f +2181,3702,0,2,f +2181,3705,0,1,f +2181,3710,25,5,f +2181,3794a,72,2,f +2181,3795,15,2,f +2181,3839b,0,2,f +2181,3937,0,3,f +2181,3957a,42,4,f +2181,40378,27,2,f +2181,4070,0,4,f +2181,41749,15,1,f +2181,41750,15,1,f +2181,4274,1,4,f +2181,4282,0,2,f +2181,43093,1,2,f +2181,44676,15,4,f +2181,4510,15,2,f +2181,4588,72,2,f +2181,4589,33,4,f +2181,47397,15,1,f +2181,47398,15,1,f +2181,4740,42,2,f +2181,47457,1,1,f +2181,47753,0,2,f +2181,47843,15,1,f +2181,47844,182,1,f +2181,48336,0,4,f +2181,48729a,0,4,f +2181,50950,0,4,f +2181,50955,15,1,f +2181,50956,15,1,f +2181,53451,4,2,f +2181,54200,182,8,f +2181,54383,0,2,f +2181,54384,0,2,f +2181,58843,15,1,f +2181,58844pat0001,34,1,f +2181,58845,34,1,f +2181,58947,182,1,f +2181,59443,71,2,f +2181,6019,4,5,f +2181,60479,0,4,f +2181,6117,72,1,f +2181,6118,25,6,f +2181,61184,71,2,f +2181,6126a,34,2,f +2181,6134,4,3,f +2181,6141,15,1,f +2181,6141,0,2,f +2181,6536,0,2,f +2181,6636,15,2,f +2181,73983,15,6,f +2181,970x194,15,1,f +2181,973pr1317c01,15,1,f +2182,10113,0,1,f +2182,10247,72,3,f +2182,11153,72,2,f +2182,11214,72,2,f +2182,11215,0,3,f +2182,11458,72,2,f +2182,11477,2,4,f +2182,15462,28,2,f +2182,15554pr0001,4,1,f +2182,15571,0,1,f +2182,15872,9999,1,t +2182,2412b,71,2,f +2182,2412b,297,2,f +2182,2420,1,2,f +2182,2431,0,5,f +2182,2432,71,1,f +2182,2440,72,1,f +2182,2476a,71,4,f +2182,2654,71,2,f +2182,2723,0,2,f +2182,3020,0,3,f +2182,3020,14,3,f +2182,3020,4,1,f +2182,3021,71,3,f +2182,3021,2,1,f +2182,3022,19,1,f +2182,3022,71,2,f +2182,3023,72,2,f +2182,3023,36,7,f +2182,3024,34,2,f +2182,3024,71,2,f +2182,3024,71,1,t +2182,3024,34,1,t +2182,3034,0,2,f +2182,3035,71,1,f +2182,3039,14,1,f +2182,30553,71,1,f +2182,3068b,2,1,f +2182,3068b,0,7,f +2182,3069b,0,4,f +2182,3069bpr0100,2,4,f +2182,3070b,72,2,f +2182,3070b,72,1,t +2182,32000,4,2,f +2182,32028,0,2,f +2182,32123b,71,6,f +2182,32123b,71,2,t +2182,32348,0,2,f +2182,32474,0,1,f +2182,32523,72,2,f +2182,33085,14,1,f +2182,3626cpr0896,78,1,f +2182,3626cpr1288,4,1,f +2182,3626cpr1369,78,1,f +2182,3660,72,2,f +2182,3665,0,2,f +2182,3666,15,3,f +2182,3700,71,2,f +2182,3701,72,2,f +2182,3703,71,2,f +2182,3710,2,5,f +2182,3710,72,4,f +2182,3713,4,2,t +2182,3713,4,4,f +2182,3794b,72,4,f +2182,3795,72,2,f +2182,3829c01,4,1,f +2182,3829c01,14,1,f +2182,3937,72,7,f +2182,3938,71,4,f +2182,4032a,4,3,f +2182,41677,71,1,f +2182,41769,0,2,f +2182,41769,2,1,f +2182,41770,2,1,f +2182,41770,0,2,f +2182,42610,71,2,f +2182,4274,71,1,t +2182,4274,71,1,f +2182,4282,0,1,f +2182,43093,1,4,f +2182,43720,0,2,f +2182,43721,0,2,f +2182,44301a,71,1,f +2182,4477,0,1,f +2182,4488,71,1,f +2182,4510,0,2,f +2182,45705,182,1,f +2182,4740,36,2,f +2182,47720,0,2,f +2182,47720,71,2,f +2182,49668,0,2,f +2182,50943,71,1,f +2182,50947,0,2,f +2182,50950,0,2,f +2182,50950,71,2,f +2182,50951,0,2,f +2182,51739,71,1,f +2182,51739,0,4,f +2182,52036,72,1,f +2182,54200,0,2,f +2182,54200,0,1,t +2182,54200,47,4,f +2182,54200,47,1,t +2182,54383,0,1,f +2182,54384,0,1,f +2182,55978,0,4,f +2182,55981,71,2,f +2182,56145,297,4,f +2182,56630,0,1,f +2182,59900,297,2,f +2182,61184,71,2,f +2182,6126a,182,2,f +2182,6134,0,4,f +2182,61409,0,6,f +2182,61409,72,2,f +2182,6141,182,3,f +2182,6141,57,1,t +2182,6141,72,8,f +2182,6141,33,2,f +2182,6141,33,1,t +2182,6141,72,2,t +2182,6558,1,2,f +2182,6636,72,1,f +2182,6636,14,2,f +2182,74967,71,1,f +2182,87079,2,1,f +2182,87079,72,1,f +2182,87083,72,4,f +2182,88072,4,1,f +2182,92402,0,2,f +2182,92585,297,1,f +2182,92590,28,2,f +2182,92690,71,2,f +2182,92946,72,2,f +2182,93606,0,1,f +2182,95674pr0003,2,1,f +2182,970c00,4,1,f +2182,970d18,288,1,f +2182,970x026,72,1,f +2182,973pr0294c01,72,1,f +2182,973pr2492c01,4,1,f +2182,973pr2499c01,2,1,f +2182,98721,0,1,f +2182,98721,0,1,t +2182,99207,71,6,f +2182,99780,72,6,f +2182,99781,0,3,f +2185,18836pr0001b,148,1,f +2185,24084,148,1,f +2185,3626cpr1834,14,1,f +2185,64647,288,1,f +2185,87994,148,1,f +2185,88295,148,1,f +2185,88646,0,1,f +2185,89520,148,1,f +2185,970c00pr0994,288,1,f +2185,973pr3223c01,288,1,f +2188,16375,85,1,f +2188,31022,15,1,f +2188,3437,31,1,f +2188,40666,31,1,f +2188,4066pb414,29,1,f +2188,61649,5,1,f +2188,6477,297,1,f +2188,6510,4,2,f +2188,75681,29,1,f +2188,76338,212,1,f +2188,98225,29,1,f +2188,98233,31,1,f +2188,98238,85,1,f +2188,99427,5,1,f +2188,99771,29,1,f +2189,2431,71,1,f +2189,30055,72,1,f +2189,3710,71,1,f +2189,3937,0,2,f +2189,3938,71,2,f +2189,3938,71,1,t +2189,4070,4,1,f +2189,4854,0,1,f +2189,6126a,57,1,t +2189,6126a,57,1,f +2191,10173,1000,1,f +2191,10304pr0002,0,1,f +2191,10830pat0001,0,1,f +2191,11213,15,1,f +2191,11213,71,1,f +2191,11477,2,2,f +2191,12939,71,2,f +2191,13965,70,4,f +2191,14395,70,2,f +2191,14417,72,1,f +2191,14419,72,1,f +2191,14704,71,1,f +2191,14707,70,3,f +2191,14716,71,2,f +2191,14769,15,4,f +2191,15068,0,2,f +2191,15070,14,4,f +2191,15207,72,1,f +2191,15332,0,8,f +2191,15532,0,1,f +2191,15535,72,2,f +2191,15535,19,1,f +2191,15573,73,1,f +2191,15573,85,6,f +2191,15573,25,1,f +2191,15706,70,8,f +2191,15712,0,1,f +2191,16577,72,5,f +2191,20691pr0001,84,1,f +2191,20693pr01,25,2,f +2191,21042pr0001,84,1,f +2191,21787,84,1,f +2191,21846,4,1,f +2191,22873,25,1,f +2191,2417,288,1,f +2191,2420,70,1,f +2191,2431,2,2,f +2191,2431,70,6,f +2191,2445,70,1,f +2191,2445,0,1,f +2191,2450,0,1,f +2191,2453b,71,2,f +2191,2453b,70,3,f +2191,2456,72,2,f +2191,2524,70,1,f +2191,2587,148,1,f +2191,2654,4,2,f +2191,2654pr0002,19,1,f +2191,2780,0,7,t +2191,2780,0,19,f +2191,2817,71,4,f +2191,30000,71,1,f +2191,3001,72,1,f +2191,3001,71,5,f +2191,3002,70,1,f +2191,3003,71,8,f +2191,3003,15,1,f +2191,3004,27,1,f +2191,3004,378,2,f +2191,3004,15,3,f +2191,3005,70,30,f +2191,3005,378,2,f +2191,30056,0,2,f +2191,3008,71,1,f +2191,30089,0,1,f +2191,3009,71,10,f +2191,3009,72,2,f +2191,30093,10,3,f +2191,30093,288,1,f +2191,3010,71,7,f +2191,30103,0,1,f +2191,30136,71,42,f +2191,30136,70,9,f +2191,30145,71,4,f +2191,30176,2,2,f +2191,3020,0,1,f +2191,3020,70,3,f +2191,3020,72,3,f +2191,3020,27,1,f +2191,3020,71,1,f +2191,3021,322,2,f +2191,3021,70,2,f +2191,3022,14,1,f +2191,3022,4,1,f +2191,3022,0,2,f +2191,3023,0,15,f +2191,3023,85,2,f +2191,3023,2,1,f +2191,3023,73,3,f +2191,3023,70,3,f +2191,3023,27,1,f +2191,30236,72,2,f +2191,3030,70,4,f +2191,3031,85,1,f +2191,3031,70,5,f +2191,3031,72,1,f +2191,3032,72,1,f +2191,3034,70,4,f +2191,3036,70,4,f +2191,3039,70,1,f +2191,3039,72,5,f +2191,3040b,288,2,f +2191,3040b,85,25,f +2191,30414,72,1,f +2191,30565,70,5,f +2191,3062b,70,2,f +2191,3068b,15,3,f +2191,3068b,70,2,f +2191,3068bpr0271,15,1,f +2191,3069b,2,3,f +2191,3069b,70,1,f +2191,3069b,0,6,f +2191,3069b,72,1,f +2191,3069b,82,3,f +2191,3070b,72,1,t +2191,3070b,72,2,f +2191,3070bpr0147,71,1,f +2191,3070bpr0147,71,1,t +2191,32000,19,1,f +2191,32028,0,5,f +2191,32064a,14,1,f +2191,32073,71,1,f +2191,32123b,14,1,t +2191,32123b,14,4,f +2191,32270,0,1,f +2191,3245b,71,2,f +2191,32531,71,1,f +2191,33215,85,1,f +2191,33299a,71,1,f +2191,3460,15,3,f +2191,3460,0,8,f +2191,3622,72,22,f +2191,3623,0,1,f +2191,3623,70,1,f +2191,3626b,57,2,f +2191,3626cpr0895,15,1,f +2191,3626cpr1741,78,1,f +2191,3626cpr1743,15,1,f +2191,3626cpr1748,0,1,f +2191,3626cpr1749,78,1,f +2191,3626cpr1750,0,1,f +2191,3626cpr1751,78,1,f +2191,3633,0,8,f +2191,3665,70,6,f +2191,3666,322,2,f +2191,3666,70,2,f +2191,3666,0,4,f +2191,3673,71,1,t +2191,3673,71,1,f +2191,3675,85,2,f +2191,3679,71,1,f +2191,3680,4,1,f +2191,3700,72,23,f +2191,3705,0,1,f +2191,3706,0,1,f +2191,3710,2,1,f +2191,3710,70,3,f +2191,3710,0,5,f +2191,3710,72,2,f +2191,3710,19,1,f +2191,3795,70,7,f +2191,3832,85,4,f +2191,3894,72,8,f +2191,3937,71,1,f +2191,3938,0,1,f +2191,3942c,0,2,f +2191,3958,70,2,f +2191,40234,71,1,f +2191,4070,70,2,f +2191,4162,2,1,f +2191,41669,25,1,f +2191,42446,0,1,f +2191,42446,0,1,t +2191,42610,71,1,f +2191,4274,1,2,f +2191,4286,70,2,f +2191,4345b,15,1,f +2191,4346,15,1,f +2191,43888,72,6,f +2191,43898,0,1,f +2191,4460b,70,1,f +2191,4477,70,3,f +2191,4519,71,1,f +2191,4529,0,1,f +2191,4533,15,1,f +2191,4533,378,1,f +2191,4599b,71,1,t +2191,4599b,71,1,f +2191,4740,0,1,f +2191,48336,2,2,f +2191,4865a,47,1,f +2191,50859b,179,1,f +2191,50861,0,2,f +2191,50862,71,2,f +2191,50947,322,1,f +2191,53451,0,5,t +2191,53451,0,9,f +2191,53454,148,2,f +2191,54200,70,1,f +2191,54200,47,1,t +2191,54200,85,15,f +2191,54200,47,2,f +2191,54200,85,5,t +2191,54200,70,1,t +2191,55236,288,2,f +2191,59349,71,4,f +2191,59349,47,1,f +2191,59443,72,2,f +2191,59900,46,1,f +2191,59900,0,18,f +2191,60470b,2,2,f +2191,60474,308,1,f +2191,60475b,71,2,f +2191,60477,0,2,f +2191,60481,85,6,f +2191,60581,47,1,f +2191,60592,70,6,f +2191,60593,70,13,f +2191,60596,0,2,f +2191,60601,47,6,f +2191,60602,47,13,f +2191,60623,85,2,f +2191,60808,71,2,f +2191,60897,0,2,f +2191,6091,27,2,f +2191,61252,72,3,f +2191,6141,47,2,f +2191,6141,27,9,f +2191,6141,25,1,t +2191,6141,4,1,t +2191,6141,25,2,f +2191,6141,85,1,t +2191,6141,27,1,t +2191,6141,4,2,f +2191,6141,70,1,t +2191,6141,85,4,f +2191,6141,0,4,f +2191,6141,46,1,f +2191,6141,70,4,f +2191,6141,0,1,t +2191,6141,47,1,t +2191,61485,0,1,f +2191,6179,71,1,f +2191,62113,0,1,f +2191,6231,15,2,f +2191,6233,0,1,f +2191,62808,297,2,f +2191,63965,0,1,f +2191,64225,27,2,f +2191,64647,4,1,t +2191,64647,4,1,f +2191,6541,72,6,f +2191,6585,0,1,f +2191,6589,19,2,f +2191,6636,70,1,f +2191,6636,0,7,f +2191,6636,4,2,f +2191,85983,322,1,f +2191,85984,85,7,f +2191,87079,378,1,f +2191,87079,0,1,f +2191,87079,4,2,f +2191,87083,72,4,f +2191,87087,71,12,f +2191,87544,47,3,f +2191,87552,0,3,f +2191,87552,47,2,f +2191,87580,73,4,f +2191,87580,2,2,f +2191,88685,4,1,f +2191,89520,148,1,f +2191,89523,85,1,f +2191,92081,0,1,f +2191,92409,0,1,f +2191,92410,15,1,f +2191,92410,71,1,f +2191,92947,70,4,f +2191,93160,15,1,f +2191,93160,15,1,t +2191,93273,2,1,f +2191,96874,25,1,t +2191,970c00,72,2,f +2191,970c00,320,1,f +2191,970c00,15,1,f +2191,970c00pr0923,85,1,f +2191,970c00pr0925,4,1,f +2191,973c09,15,1,f +2191,973pr3062c01,27,1,f +2191,973pr3102c01,72,1,f +2191,973pr3123c01,0,1,f +2191,973pr3124c01,25,1,f +2191,973pr3126c01,85,1,f +2191,98283,72,23,f +2191,98560,71,2,f +2191,98578,148,2,f +2193,11153,4,2,f +2193,11477,4,3,f +2193,15573,0,5,f +2193,15712,297,2,f +2193,18575,0,1,f +2193,18649,0,1,f +2193,18868a,41,2,f +2193,19981pr0012,41,1,f +2193,19981pr0031,41,1,f +2193,2420,0,2,f +2193,30162,72,4,f +2193,30173b,297,2,f +2193,3021,0,1,f +2193,3023,0,3,f +2193,3023,72,2,f +2193,3024,182,4,f +2193,3024,40,1,f +2193,30374,297,2,f +2193,3070b,40,1,f +2193,32062,4,2,f +2193,32064a,0,1,f +2193,3623,378,2,f +2193,3626bpr0745,14,1,f +2193,3626cpr1365,14,1,f +2193,37,297,2,f +2193,3700,71,1,f +2193,3794b,71,1,f +2193,3941,41,2,f +2193,41769,0,1,f +2193,41770,0,1,f +2193,42610,71,2,f +2193,44661,72,1,f +2193,4733,0,1,f +2193,47458,4,1,f +2193,50951,0,2,f +2193,54200,308,3,f +2193,54200,40,1,f +2193,59900,0,1,f +2193,61252,4,2,f +2193,61252,297,4,f +2193,6126b,182,2,f +2193,6141,182,2,f +2193,6141,36,1,f +2193,6141,297,5,f +2193,6558,1,1,f +2193,85943,72,2,f +2193,87747,297,1,f +2193,92690,297,1,f +2193,93055,297,1,f +2193,970c00pr0775,0,1,f +2193,970c00pr0776,4,1,f +2193,973pr2853c01,4,1,f +2193,973pr2854c01,0,1,f +2193,98133pr0014,4,1,f +2193,98133pr0016,0,1,f +2193,99781,71,3,f +2195,2456,4,2,f +2195,3001,4,2,f +2195,3001,1,4,f +2195,3001,15,2,f +2195,3001,14,5,f +2195,3001pr1,14,1,f +2195,3002,0,2,f +2195,3002,1,2,f +2195,3002,4,2,f +2195,3002,14,2,f +2195,3003,14,6,f +2195,3003,15,4,f +2195,3003,1,4,f +2195,3003,0,2,f +2195,3003,4,6,f +2195,3003pe2,15,2,f +2195,3003pe2,14,2,f +2195,3007,1,1,f +2195,4744,2,1,f +2195,4744pr0001,0,1,f +2196,3703,14,4,f +2196,3895,14,4,f +2197,14226c21,0,1,f +2197,3004,15,2,f +2197,30108,15,2,f +2197,30109,5,1,f +2197,30112,2,1,f +2197,30136,6,4,f +2197,33051,2,2,f +2197,3741,2,1,f +2197,3742,13,1,t +2197,3742,13,3,f +2197,3794a,0,1,f +2197,3852b,74,1,f +2197,3899,1,1,f +2197,3899,14,1,f +2197,4337,14,1,f +2197,4341,0,1,f +2197,4349,15,1,f +2197,4349,0,1,f +2197,6019,0,2,f +2197,6083,2,1,f +2197,6112,15,1,f +2197,6141,57,2,f +2197,6141,46,2,f +2197,6141,36,2,f +2197,6161,74,1,f +2197,6171pr02,8,1,f +2197,6185,0,1,f +2197,6189,0,1,f +2197,6203,5,1,f +2197,6204,0,1,f +2197,6250,0,1,f +2197,6255,2,1,f +2197,6256,14,1,f +2197,6256,1,1,f +2197,70973,383,1,f +2197,71861,383,2,f +2197,beltent,10,1,f +2197,belvfem58,9999,1,f +2197,belvfem59,9999,1,f +2197,pouch03,17,1,f +2197,pouch07,13,1,f +2198,2417,2,12,f +2198,2550c01,70,1,f +2198,2566,70,1,f +2198,3031,70,1,f +2198,30374,70,1,f +2198,3068b,2,1,f +2198,3068b,70,2,f +2198,3068b,14,1,f +2198,3069b,14,2,f +2198,3069b,2,2,f +2198,32016,70,5,f +2198,32062,4,5,f +2198,33085,14,12,f +2198,3941,70,1,f +2198,64776pat0001,0,1,f +2198,92585,4,1,f +2201,2458,1,1,f +2201,2460,1,1,f +2201,2479,7,2,f +2201,3001,14,6,f +2201,3001,1,9,f +2201,3001,15,5,f +2201,3001,0,2,f +2201,3001,4,6,f +2201,3002,1,2,f +2201,3002,0,2,f +2201,3002,15,2,f +2201,3002,4,2,f +2201,3002,14,2,f +2201,3003,15,2,f +2201,3003,1,4,f +2201,3003,4,4,f +2201,3003,14,4,f +2201,3003,0,2,f +2201,3004,14,24,f +2201,3004,0,12,f +2201,3004,47,2,f +2201,3004,15,18,f +2201,3004,1,21,f +2201,3005,1,18,f +2201,3005,14,20,f +2201,3005,15,14,f +2201,3005,4,18,f +2201,3005,0,12,f +2201,3008,4,1,f +2201,3008,14,2,f +2201,3008,1,1,f +2201,3009,0,2,f +2201,3009,14,6,f +2201,3009,15,4,f +2201,3009,1,8,f +2201,3009,4,6,f +2201,3010,15,8,f +2201,3010,0,4,f +2201,3010,4,14,f +2201,3010,1,12,f +2201,3010,14,14,f +2201,3020,1,2,f +2201,3020,4,2,f +2201,3021,1,2,f +2201,3022,1,2,f +2201,3031,1,1,f +2201,3032,4,1,f +2201,3032,1,1,f +2201,3034,1,4,f +2201,3035,4,1,f +2201,3039,47,2,f +2201,3039,1,4,f +2201,3081cc01,4,2,f +2201,3137c01,0,2,f +2201,3297,1,6,f +2201,3298,1,4,f +2201,3299,1,3,f +2201,3300,1,2,f +2201,3460,1,4,f +2201,3622,1,13,f +2201,3622,14,14,f +2201,3622,0,4,f +2201,3622,4,14,f +2201,3622,15,8,f +2201,3626apr0001,14,1,f +2201,3633,4,4,f +2201,3641,0,4,f +2201,3660,1,4,f +2201,3710,1,2,f +2201,3741,2,2,f +2201,3742,4,4,f +2201,3742,15,4,f +2201,3823,47,1,f +2201,3853,15,4,f +2201,3854,4,8,f +2201,3856,2,4,f +2201,3861b,15,1,f +2201,3867,2,1,f +2201,3901,6,1,f +2201,970c00,0,1,f +2201,973c01,15,1,f +2203,740,1,1,f +2205,2447,40,1,t +2205,2447,40,1,f +2205,2540,14,1,f +2205,3020,72,1,f +2205,3062b,14,1,f +2205,3626bpr0279,14,1,f +2205,3834,15,1,f +2205,3835,7,1,f +2205,3838,14,1,f +2205,3941,14,2,f +2205,4032b,0,2,f +2205,4599a,14,1,f +2205,4599a,14,1,t +2205,6020,0,1,f +2205,6126a,57,2,f +2205,6158,72,1,f +2205,970c00,0,1,f +2205,973pr1667c01,0,1,f +2209,3020,7,1,f +2209,3024,34,2,f +2209,3062b,36,1,f +2209,3626apr0001,14,1,f +2209,3700,7,1,f +2209,3749,7,1,f +2209,3795,7,1,f +2209,3829c01,7,1,f +2209,3838,1,1,f +2209,3842a,1,1,f +2209,3941,0,1,f +2209,3941,7,1,f +2209,3942c,7,1,f +2209,3957a,36,1,f +2209,3957a,7,2,f +2209,3962a,0,1,f +2209,4032a,0,2,f +2209,4070,7,2,f +2209,4085a,7,2,f +2209,4349,0,4,f +2209,4588,0,2,f +2209,4590,7,4,f +2209,4591,0,1,f +2209,4596,7,4,f +2209,4598,7,1,f +2209,6141,46,2,f +2209,6141,36,4,f +2209,970c00,1,1,f +2209,973pr1594c01,1,1,f +2210,2730,4,4,f +2210,3700,4,24,f +2210,3701,4,16,f +2210,3702,4,8,f +2210,3703,4,4,f +2210,3894,4,8,f +2210,3895,4,4,f +2211,16542,14,1,f +2211,2335,15,2,f +2211,2357,15,2,f +2211,2412b,4,1,f +2211,2412b,14,3,f +2211,2412b,71,7,f +2211,2412b,27,1,f +2211,2419,15,1,f +2211,2420,0,6,f +2211,2420,15,2,f +2211,2431,4,1,f +2211,2431,2,5,f +2211,2431,15,2,f +2211,2431,0,1,f +2211,2431,27,5,f +2211,2432,15,5,f +2211,2432,72,1,f +2211,2436,0,1,f +2211,2436,71,4,f +2211,2445,15,2,f +2211,2446pr30,0,2,f +2211,2447,0,2,f +2211,2447,0,1,t +2211,2450,15,2,f +2211,2450,19,1,f +2211,2456,71,3,f +2211,2476a,71,2,f +2211,2540,15,1,f +2211,2654,72,2,f +2211,2780,0,7,t +2211,2780,0,56,f +2211,2817,71,1,f +2211,2877,2,2,f +2211,298c02,4,5,f +2211,298c02,4,2,t +2211,3001,0,2,f +2211,3002,15,2,f +2211,3003,72,4,f +2211,3004,0,2,f +2211,3004,19,1,f +2211,3004,15,4,f +2211,3005,4,2,f +2211,3005,15,2,f +2211,3008,15,2,f +2211,3009,2,2,f +2211,3009,15,2,f +2211,3009,0,2,f +2211,3010,15,3,f +2211,3010,72,1,f +2211,30136,72,10,f +2211,30137,72,2,f +2211,3020,72,2,f +2211,3020,0,15,f +2211,3020,19,2,f +2211,3020,4,1,f +2211,3020,15,4,f +2211,3021,71,1,f +2211,3021,0,4,f +2211,3022,27,1,f +2211,3023,15,2,f +2211,3023,47,2,f +2211,30236,0,2,f +2211,30237a,72,1,f +2211,3024,0,2,f +2211,30258,72,1,f +2211,30261,15,2,f +2211,3030,71,4,f +2211,3032,4,1,f +2211,3034,15,1,f +2211,3034,71,3,f +2211,3036,71,2,f +2211,30367b,0,2,f +2211,3037,72,1,f +2211,30374,15,3,f +2211,3039,19,3,f +2211,30391,0,2,f +2211,30395,72,1,f +2211,30396,0,1,f +2211,3040b,19,1,f +2211,30414,0,10,f +2211,30505,0,2,f +2211,30540,0,2,f +2211,30540,15,2,f +2211,30540,71,2,f +2211,30541,0,2,f +2211,30552,0,5,f +2211,30553,0,1,f +2211,30602,4,4,f +2211,3062b,4,2,f +2211,3068b,0,1,f +2211,3069b,15,1,f +2211,3069b,72,2,f +2211,3070b,0,1,t +2211,3070b,0,2,f +2211,32000,15,4,f +2211,32000,72,1,f +2211,32013,0,2,f +2211,32015,0,2,f +2211,32016,0,2,f +2211,32018,72,10,f +2211,32028,0,2,f +2211,32039,71,2,f +2211,32059,4,1,f +2211,32062,4,11,f +2211,32064b,0,1,f +2211,32064b,2,2,f +2211,32123b,71,2,t +2211,32123b,71,8,f +2211,32138,0,10,f +2211,32140,0,4,f +2211,32270,0,1,f +2211,32291,0,2,f +2211,32316,72,2,f +2211,32474,0,4,f +2211,32526,72,2,f +2211,33299b,71,2,f +2211,3455,72,2,f +2211,3460,15,1,f +2211,3622,0,2,f +2211,3626bpr0279,14,1,f +2211,3626bpr0282,14,1,f +2211,3626bpr0325,14,1,f +2211,3626bpr0560,14,1,f +2211,3626bpr0662,14,1,f +2211,3626bpr0663,14,1,f +2211,3626bpr0669,14,1,f +2211,3626bpr0675,14,1,f +2211,3660,0,1,f +2211,3660,72,3,f +2211,3665,72,2,f +2211,3666,15,2,f +2211,3666,4,1,f +2211,3666,2,1,f +2211,3666,0,2,f +2211,3666,27,2,f +2211,3673,71,4,f +2211,3673,71,1,t +2211,3678b,71,1,f +2211,3684,0,1,f +2211,3700,0,4,f +2211,3701,72,4,f +2211,3701,0,2,f +2211,3701,15,2,f +2211,3702,0,4,f +2211,3702,71,2,f +2211,3703,0,2,f +2211,3705,0,10,f +2211,3706,0,4,f +2211,3707,0,2,f +2211,3709,71,2,f +2211,3710,72,7,f +2211,3710,15,3,f +2211,3710,4,4,f +2211,3710,0,3,f +2211,3710,71,4,f +2211,3710,2,2,f +2211,3713,71,5,t +2211,3713,71,24,f +2211,3737,0,7,f +2211,3741,2,1,t +2211,3741,2,3,f +2211,3749,19,1,f +2211,3794a,15,1,f +2211,3794a,14,2,f +2211,3794a,71,2,f +2211,3795,19,1,f +2211,3795,0,11,f +2211,3795,4,1,f +2211,3829c01,71,1,f +2211,3829c01,0,2,f +2211,3895,0,2,f +2211,3937,72,2,f +2211,3938,0,2,f +2211,3941,0,8,f +2211,4032a,4,1,f +2211,4070,72,2,f +2211,4079b,0,1,f +2211,4081b,15,3,f +2211,4081b,0,2,f +2211,4150,15,1,f +2211,4150,0,1,f +2211,41532,0,2,f +2211,41669,135,2,f +2211,41677,4,6,f +2211,41677,0,1,f +2211,41747,15,1,f +2211,41748,15,1,f +2211,4176,40,1,f +2211,42003,72,2,f +2211,42610,71,4,f +2211,4274,71,4,f +2211,4274,1,10,f +2211,4274,71,1,t +2211,4274,1,1,t +2211,4286,0,4,f +2211,4286,2,2,f +2211,43093,1,14,f +2211,43337,15,2,f +2211,43898,15,2,f +2211,4460b,15,4,f +2211,4460b,4,2,f +2211,44675,71,2,f +2211,44728,0,2,f +2211,4477,72,1,f +2211,45590,0,2,f +2211,4599b,0,3,f +2211,4623,0,2,f +2211,46304,15,2,f +2211,4740,42,2,f +2211,47457,72,1,f +2211,47457,4,2,f +2211,47758,0,1,f +2211,48336,0,3,f +2211,48336,4,2,f +2211,48336,71,2,f +2211,4865a,15,2,f +2211,4871,72,1,f +2211,48989,71,4,f +2211,49668,135,4,f +2211,50923,72,1,f +2211,50943,71,2,f +2211,50950,27,2,f +2211,50955,27,1,f +2211,50956,27,1,f +2211,51739,15,2,f +2211,52031,27,1,f +2211,53989,0,3,f +2211,53989,135,2,f +2211,54200,4,1,t +2211,54200,15,3,f +2211,54200,40,2,t +2211,54200,14,1,t +2211,54200,36,4,f +2211,54200,182,2,f +2211,54200,36,1,t +2211,54200,15,2,t +2211,54200,72,1,t +2211,54200,4,2,f +2211,54200,0,2,t +2211,54200,0,6,f +2211,54200,72,3,f +2211,54200,14,2,f +2211,54200,27,3,t +2211,54200,182,1,t +2211,54200,27,9,f +2211,54200,40,4,f +2211,54200,47,1,t +2211,54200,47,2,f +2211,54821,19,3,f +2211,55295,0,1,f +2211,55296,0,1,f +2211,55297,0,1,f +2211,55298,0,1,f +2211,55299,0,1,f +2211,55300,0,1,f +2211,55982,0,14,f +2211,56891,0,12,f +2211,56897,0,4,f +2211,56902,71,4,f +2211,57028c01,71,1,f +2211,57796,72,1,f +2211,58090,0,2,f +2211,59443,0,2,f +2211,59900,4,4,f +2211,59900,72,10,f +2211,6005,15,4,f +2211,6005,2,2,f +2211,60169,72,1,f +2211,60176,72,1,f +2211,6019,4,2,f +2211,60470a,15,3,f +2211,60471,15,1,f +2211,60478,71,2,f +2211,60479,15,2,f +2211,60483,0,4,f +2211,60897,71,8,f +2211,60897,0,6,f +2211,61069,15,2,f +2211,61072,135,3,f +2211,61184,71,4,f +2211,61409,4,2,f +2211,61409,72,2,t +2211,61409,14,4,f +2211,61409,72,15,f +2211,61409,27,2,f +2211,6141,182,1,t +2211,6141,46,3,t +2211,6141,46,7,f +2211,6141,14,2,f +2211,6141,27,4,f +2211,6141,27,2,t +2211,6141,72,2,t +2211,6141,4,4,f +2211,6141,71,4,f +2211,6141,14,1,t +2211,6141,4,1,t +2211,6141,71,1,t +2211,6141,182,4,f +2211,6141,80,4,f +2211,6141,80,1,t +2211,6141,72,12,f +2211,61485,0,2,f +2211,61678,2,2,f +2211,61678,15,4,f +2211,61678,0,4,f +2211,61678,27,4,f +2211,6180,0,2,f +2211,6191,15,2,f +2211,62233,135,1,f +2211,62361,4,2,f +2211,62462,15,3,f +2211,62462,0,2,f +2211,62531,27,4,f +2211,63864,15,2,f +2211,63864,0,2,f +2211,63965,0,2,f +2211,63965,71,2,f +2211,64393,4,1,f +2211,64681,4,1,f +2211,64782,15,4,f +2211,64782,2,4,f +2211,6536,72,8,f +2211,6541,0,4,f +2211,6553,0,1,f +2211,6553,72,1,f +2211,6558,1,2,f +2211,6583,0,1,f +2211,6589,19,1,f +2211,6628,0,2,f +2211,6636,15,1,f +2211,85984,15,3,f +2211,86035,27,3,f +2211,86035,25,1,f +2211,86208,72,2,f +2211,87080,2,1,f +2211,87081,72,2,f +2211,87082,71,2,f +2211,87086,2,1,f +2211,87544,15,2,f +2211,87580,72,1,f +2211,87781pr0001,72,2,f +2211,8864stk01,9999,1,t +2211,8864stk02,9999,1,t +2211,89801,80,1,f +2211,970c00,72,3,f +2211,970c00pr0151,15,2,f +2211,970x026,72,2,f +2211,970x199,25,1,f +2211,973pr1586c01,27,1,f +2211,973pr1587c01,0,1,f +2211,973pr1589c01,0,1,f +2211,973pr1591c01,15,1,f +2211,973pr1606c01,27,1,f +2211,973pr1610c01,27,3,f +2213,2357,15,4,f +2213,2412b,1,5,f +2213,2412b,0,9,f +2213,2431,0,1,f +2213,2431,25,1,f +2213,2432,72,3,f +2213,2432,1,1,f +2213,2446,1,1,f +2213,2458,72,4,f +2213,2508,72,1,f +2213,2555,14,1,f +2213,2569,72,1,t +2213,2569,72,2,f +2213,2584,0,1,f +2213,2585,71,1,f +2213,2610,14,1,f +2213,3001,25,2,f +2213,3003,0,1,f +2213,30036,72,1,f +2213,3004,15,7,f +2213,3006,0,1,f +2213,3008,15,2,f +2213,3009,15,4,f +2213,30090,41,1,f +2213,30091,72,1,f +2213,3010,25,4,f +2213,3020,25,2,f +2213,3020,0,4,f +2213,3022,1,4,f +2213,3023,15,16,f +2213,3023,1,2,f +2213,3023,46,4,f +2213,30237a,72,2,f +2213,3024,15,4,f +2213,30283,0,1,f +2213,3032,72,2,f +2213,3034,1,4,f +2213,3034,15,2,f +2213,30340,14,2,f +2213,30374,0,2,f +2213,30383,0,2,f +2213,30395,72,1,f +2213,3039pr0005,15,1,f +2213,3039pr0014,0,1,f +2213,3040b,25,2,f +2213,30414,71,4,f +2213,30553,0,4,f +2213,3069b,15,2,f +2213,3176,0,2,f +2213,32000,4,2,f +2213,32014,0,2,f +2213,32014,1,2,f +2213,32039,0,2,f +2213,32062,4,6,f +2213,32064b,71,6,f +2213,32072,14,1,f +2213,32124,0,1,f +2213,32556,19,4,f +2213,3460,72,2,f +2213,3460,1,2,f +2213,3460,15,4,f +2213,3623,14,2,f +2213,3626b,15,1,f +2213,3626bpr0279,14,1,f +2213,3626bpr0282,14,1,f +2213,3666,71,5,f +2213,3673,71,4,f +2213,3673,71,1,t +2213,3678b,15,2,f +2213,3679,71,2,f +2213,3680,0,2,f +2213,3700,0,4,f +2213,3703,72,2,f +2213,3705,0,2,f +2213,3710,1,1,f +2213,3747b,71,1,f +2213,3794a,71,5,f +2213,3795,72,1,f +2213,3821,15,1,f +2213,3822,15,1,f +2213,3823,41,3,f +2213,3829c01,1,2,f +2213,3937,71,2,f +2213,3938,15,2,f +2213,3941,71,1,f +2213,4032a,72,2,f +2213,40620,71,1,f +2213,4079,1,2,f +2213,4095,0,3,f +2213,4151b,72,1,f +2213,42022,15,2,f +2213,42022,25,2,f +2213,4215b,25,1,f +2213,4274,1,3,f +2213,4274,1,2,t +2213,4282,72,2,f +2213,43898,72,1,f +2213,44567a,0,2,f +2213,44568,1,4,f +2213,44569,25,4,f +2213,44675,71,6,f +2213,4485,1,1,f +2213,4510,1,1,f +2213,4532,71,2,f +2213,4533,15,2,f +2213,45677,15,2,f +2213,4599a,71,4,f +2213,4623,14,3,f +2213,46303,71,1,f +2213,47457,72,2,f +2213,47905,0,1,f +2213,48336,71,8,f +2213,50950,25,4,f +2213,52107,0,1,f +2213,52501,72,1,f +2213,54200,25,2,f +2213,54200,25,1,t +2213,54200,182,2,f +2213,54200,36,1,f +2213,54200,182,1,t +2213,54200,34,1,f +2213,54200,0,2,f +2213,54200,34,1,t +2213,54200,15,2,t +2213,54200,15,4,f +2213,54200,0,1,t +2213,54200,36,1,t +2213,55981,71,8,f +2213,56823c50,0,1,f +2213,56891,0,4,f +2213,58090,0,4,f +2213,59275,25,2,f +2213,60169,72,1,f +2213,6019,71,4,f +2213,60470a,0,1,f +2213,60475a,15,4,f +2213,60483,0,4,f +2213,6070,15,2,f +2213,61073,15,2,f +2213,6140,0,1,f +2213,61409,72,1,f +2213,6141,36,10,f +2213,6141,182,4,f +2213,6141,36,4,t +2213,6141,182,2,t +2213,62361,1,2,f +2213,62812,25,1,f +2213,63082,71,1,f +2213,6587,72,3,f +2213,6636,71,2,f +2213,7726stk01,9999,1,t +2213,88930,15,2,f +2213,970c00,1,2,f +2213,973pr1363c01,14,2,f +2214,2357,70,6,f +2214,2420,4,1,f +2214,2420,15,4,f +2214,3002,70,1,f +2214,3003,70,1,f +2214,3003,1,1,f +2214,3004,19,1,f +2214,3004,0,1,f +2214,3004,4,1,f +2214,3004,70,5,f +2214,3005,0,2,f +2214,3005,1,2,f +2214,3005,70,5,f +2214,3021,70,1,f +2214,3022,0,2,f +2214,3022,4,1,f +2214,3022,15,2,f +2214,3022,19,1,f +2214,3023,0,3,f +2214,3023,70,4,f +2214,3023,15,1,f +2214,3024,0,2,f +2214,3024,4,2,f +2214,3024,70,4,f +2214,3028,28,1,f +2214,3039,70,2,f +2214,3040b,70,2,f +2214,3040b,1,2,f +2214,3040b,0,5,f +2214,3069b,4,2,f +2214,3069b,19,2,f +2214,3069b,70,2,f +2214,3070b,0,1,f +2214,3070b,70,4,f +2214,3298,70,1,f +2214,3623,0,2,f +2214,3623,4,1,f +2214,3623,70,3,f +2214,3660,70,4,f +2214,3665,70,4,f +2214,3665,0,1,f +2214,3700,70,2,f +2214,3710,70,2,f +2214,3747b,70,2,f +2214,3794b,70,1,f +2214,4070,4,2,f +2214,4274,71,2,f +2214,4287,70,3,f +2214,47905,0,2,f +2214,49668,0,2,f +2214,54200,70,11,f +2214,54200,0,4,f +2214,60481,0,1,f +2214,6141,19,1,f +2214,6541,0,2,f +2217,11212,29,2,f +2217,11403pr0100,1,1,f +2217,11477,1,6,f +2217,11477,15,6,f +2217,14769,1,2,f +2217,14769,14,1,f +2217,14769pr1058,14,1,f +2217,14769pr1060,322,1,f +2217,14769pr1070,19,1,f +2217,15100,0,4,f +2217,15470,70,1,t +2217,15470,70,2,f +2217,15533,84,3,f +2217,15535,72,2,f +2217,16577,84,1,f +2217,16577,5,1,f +2217,16985pr0101,1,1,f +2217,18651,0,2,f +2217,22888,191,1,f +2217,2357,5,1,f +2217,23969,47,2,f +2217,2412b,71,1,f +2217,2431,71,3,f +2217,2431,15,2,f +2217,2540,15,1,f +2217,26603,15,1,f +2217,29397,19,1,f +2217,29399,78,1,f +2217,29413,78,1,f +2217,298c02,15,1,f +2217,298c02,15,1,t +2217,3001,84,3,f +2217,3003,1,1,f +2217,3004,84,2,f +2217,3004,5,5,f +2217,3005,45,1,f +2217,3005,84,6,f +2217,3005,5,6,f +2217,3005,182,1,f +2217,3008,4,1,f +2217,3010,5,4,f +2217,3020,191,1,f +2217,3023,5,6,f +2217,3023,4,1,f +2217,3029,15,1,f +2217,3035,71,1,f +2217,30350b,41,1,f +2217,30377,72,1,t +2217,30377,72,1,f +2217,3040bpr0003,71,1,f +2217,3062b,322,1,f +2217,3068bpr0317,31,1,f +2217,3069b,29,2,f +2217,3069b,1,5,f +2217,3069bpr0100,2,1,f +2217,3070bpr0171,10,2,t +2217,3070bpr0171,10,2,f +2217,32000,4,2,f +2217,32002,19,1,t +2217,32002,19,1,f +2217,32073,71,1,f +2217,32449,15,1,f +2217,32530,0,1,f +2217,33291,10,1,t +2217,33291,10,4,f +2217,3456,191,1,f +2217,3622,5,2,f +2217,3622,1,2,f +2217,3660,1,1,f +2217,3665,4,2,f +2217,3666,4,2,f +2217,3673,71,1,f +2217,3673,71,1,t +2217,3678b,1,1,f +2217,3679,71,1,f +2217,3680,4,1,f +2217,3705,0,1,f +2217,3709,15,2,f +2217,3710,29,1,f +2217,3741,2,1,f +2217,3741,2,1,t +2217,3899,47,2,f +2217,3941,71,2,f +2217,4032a,4,2,f +2217,4032a,15,1,f +2217,41231stk01,9999,1,f +2217,43121,4,1,f +2217,43337,46,1,f +2217,4533,71,1,f +2217,46212,47,3,f +2217,4733,15,2,f +2217,48336,4,1,f +2217,54200,35,2,t +2217,54200,1,4,f +2217,54200,1,1,t +2217,54200,35,8,f +2217,54200,29,1,t +2217,54200,29,2,f +2217,57895,47,1,f +2217,59349,47,2,f +2217,60169,35,1,f +2217,60596,4,2,f +2217,60616a,47,1,f +2217,6112,4,1,f +2217,61252,10,2,f +2217,6141,46,3,f +2217,6141,47,1,t +2217,6141,71,1,t +2217,6141,71,3,f +2217,6141,29,2,f +2217,6141,29,1,t +2217,6141,47,2,f +2217,6141,46,1,t +2217,61800,15,2,f +2217,6222,15,1,f +2217,6636,4,1,f +2217,71155,15,1,f +2217,85984,191,4,f +2217,87083,72,1,f +2217,87087,1,4,f +2217,87544,47,1,f +2217,87552,0,1,f +2217,87580,4,2,f +2217,88072,71,2,f +2217,88289,322,1,f +2217,92081,226,1,f +2217,92410,4,1,f +2217,92456pr0202,78,1,f +2217,92815pr0100,78,1,f +2217,92947,15,1,f +2217,93273,4,1,f +2217,98397,71,1,f +2217,99781,0,1,f +2219,3022,70,1,f +2219,3022,14,1,f +2219,3022,25,1,f +2219,3022,2,1,f +2219,3031,72,1,f +2219,30373,72,1,f +2219,30374,42,1,f +2219,3048c,72,4,f +2219,30504,71,4,f +2219,3062b,19,6,f +2219,3062b,73,6,f +2219,3062b,0,6,f +2219,3062b,1,6,f +2219,3069b,73,2,f +2219,3069b,1,2,f +2219,3069b,0,2,f +2219,3069b,19,2,f +2219,3942c,72,1,f +2219,4006,0,1,f +2219,4150,4,2,f +2219,4274,71,1,f +2219,43898,4,1,f +2219,43898,0,1,f +2219,44375a,0,1,f +2219,4460b,72,2,f +2219,4460b,71,2,f +2219,4588,15,4,f +2219,4740,0,2,f +2219,4740,4,5,f +2219,48729a,0,1,f +2219,53989,0,1,f +2219,59900,15,4,f +2219,6141,72,5,f +2219,63965,71,1,f +2219,64776pat0001,0,1,f +2219,85863pr0029,4,1,f +2219,87580,72,4,f +2220,6007,8,1,f +2222,2420,14,8,f +2222,2431,14,4,f +2222,3001,14,2,f +2222,3003,14,7,f +2222,3004,14,9,f +2222,3006,14,2,f +2222,3020,14,8,f +2222,3021,14,4,f +2222,3022,14,14,f +2222,3023,14,24,f +2222,3024,14,12,f +2222,3068b,14,13,f +2222,3069b,14,12,f +2222,3070b,14,4,f +2222,3623,14,1,f +2222,3700,14,3,f +2222,3710,14,4,f +2222,3794a,14,2,f +2222,3832,14,1,f +2222,3941,14,14,f +2222,3941,383,2,f +2222,4032a,14,4,f +2222,4274,7,3,f +2222,6091,14,10,f +2222,6541,14,8,f +2222,71128,383,3,f +2223,2357,71,2,f +2223,2376,0,1,f +2223,2444,15,2,f +2223,2458,15,8,f +2223,2460,72,1,f +2223,2462,0,2,f +2223,2462,71,4,f +2223,2490pr0001,272,1,f +2223,2555,320,5,f +2223,2587pr19,135,1,f +2223,2736,71,1,f +2223,3001,71,1,f +2223,3001,320,2,f +2223,3001,0,1,f +2223,3003,15,2,f +2223,3003,0,12,f +2223,3003,71,6,f +2223,30033,15,2,f +2223,3004,15,1,f +2223,3004,0,6,f +2223,3004,71,3,f +2223,3005,71,4,f +2223,3005,0,5,f +2223,3008,71,2,f +2223,3008,0,6,f +2223,3009,0,2,f +2223,3010,0,11,f +2223,3010,71,2,f +2223,30103,0,1,f +2223,30104,72,3,f +2223,30106,47,1,f +2223,3023,15,1,f +2223,3023,320,7,f +2223,30238,0,1,f +2223,3024,71,3,f +2223,3024,70,1,f +2223,30240,15,1,f +2223,30246,0,1,f +2223,3027,0,1,f +2223,3029,72,2,f +2223,3030,0,2,f +2223,3031,4,3,f +2223,3032,0,2,f +2223,30374,0,1,f +2223,30383,0,4,f +2223,3040b,182,6,f +2223,3040b,71,6,f +2223,3045,71,6,f +2223,3048b,0,2,f +2223,3048c,71,1,f +2223,30503,0,4,f +2223,30553,0,4,f +2223,3062b,57,2,f +2223,3062b,320,2,f +2223,3068b,71,2,f +2223,3069b,0,1,f +2223,32034,4,1,f +2223,32069,0,1,f +2223,32523,72,1,f +2223,3308,0,2,f +2223,3623,71,1,f +2223,3626bpr0411,14,1,f +2223,3626bpr0493,14,1,f +2223,3626bpr0494,15,2,f +2223,3626bpr0495,14,1,f +2223,3648b,71,2,f +2223,3660,320,11,f +2223,3660,71,5,f +2223,3666,320,2,f +2223,3678bpr11,272,1,f +2223,3701,72,3,f +2223,3705,0,1,f +2223,3710,320,2,f +2223,3713,4,3,f +2223,3713,4,1,t +2223,3747b,71,2,f +2223,3747b,0,8,f +2223,3749,19,4,f +2223,3795,0,2,f +2223,3832,71,1,f +2223,3846pr24,71,1,f +2223,3941,71,1,f +2223,40378,320,1,f +2223,40379,15,14,f +2223,40379,0,2,f +2223,40395,320,1,f +2223,4070,72,2,f +2223,4081b,4,4,f +2223,41539,0,1,f +2223,4162,72,2,f +2223,41753,72,1,f +2223,4185,70,1,f +2223,42450,0,1,f +2223,4274,1,2,f +2223,4274,1,1,t +2223,4286,70,1,f +2223,4287,71,4,f +2223,43710,71,1,f +2223,43711,71,1,f +2223,44294,71,2,f +2223,4477,70,1,f +2223,4503,80,1,f +2223,4529,0,1,f +2223,4589,15,24,f +2223,4589,34,1,f +2223,45918,0,1,f +2223,47847pat0002,57,2,f +2223,48492,272,1,f +2223,48723,70,1,f +2223,48729a,0,1,f +2223,51342pat0007,0,2,f +2223,51874pat0002,0,1,f +2223,53451,0,1,t +2223,53451,15,2,t +2223,53451,0,3,f +2223,53451,15,20,f +2223,53989,15,13,f +2223,59,383,1,f +2223,59217pat01,320,1,f +2223,59218pat01,320,1,f +2223,59224pat0001,320,1,f +2223,59225c01,320,1,f +2223,59226pr01,320,1,f +2223,59227pr01,320,1,f +2223,59229,72,1,f +2223,59230,15,1,t +2223,59230,15,4,f +2223,59231pr0001,72,1,f +2223,59232,135,1,f +2223,59233pat0001,41,3,f +2223,59363,70,1,f +2223,60115,15,2,f +2223,6066,0,3,f +2223,6066,320,1,f +2223,6082,72,2,f +2223,6108,0,2,f +2223,6111,71,1,f +2223,6112,0,1,f +2223,6112,71,1,f +2223,6126a,57,1,f +2223,6131pr0001,0,1,f +2223,6132,71,1,f +2223,6141,4,2,f +2223,6141,4,1,t +2223,62436pat0002,320,1,f +2223,62438pat0002,320,1,f +2223,6266,15,4,f +2223,63965,0,1,f +2223,6538b,4,1,f +2223,6541,15,3,f +2223,6564,71,1,f +2223,6565,71,1,f +2223,6587,72,1,f +2223,73983,4,2,f +2223,75998pr0007,15,1,f +2223,75c10,0,1,t +2223,75c10,0,1,f +2223,85544,4,1,f +2223,970c00pr0112,4,1,f +2223,970x026,72,1,f +2223,973c45,0,1,f +2223,973pr1264c01,4,1,f +2223,973pr1322c01,272,1,f +2224,10201,71,1,f +2224,11203,72,1,f +2224,12825,0,2,f +2224,14918cpr0001,71,1,f +2224,2436,0,1,f +2224,2447,42,1,t +2224,2447,42,1,f +2224,30171,70,1,f +2224,3021,19,1,f +2224,3021,71,1,f +2224,3022,71,1,f +2224,3022,0,2,f +2224,3023,71,2,f +2224,3023,0,2,f +2224,3024,71,3,f +2224,3024,71,1,t +2224,3024,72,1,t +2224,3024,72,7,f +2224,30367c,71,1,f +2224,3040b,71,1,f +2224,3068b,72,1,f +2224,3069b,0,2,f +2224,3626cpr0472,78,1,f +2224,3710,71,1,f +2224,3794a,71,1,f +2224,3795,0,2,f +2224,43722,71,1,f +2224,43723,71,1,f +2224,44728,0,1,f +2224,4733,0,1,f +2224,49668,179,1,f +2224,54200,71,2,f +2224,54200,71,1,t +2224,54384,71,1,f +2224,60478,72,2,f +2224,60849,71,1,t +2224,60849,71,2,f +2224,60897,72,2,f +2224,61252,71,2,f +2224,6141,25,5,f +2224,6141,25,1,t +2224,6141,182,1,t +2224,6141,182,4,f +2224,6179pr0008,0,1,f +2224,63868,71,4,f +2224,64567,71,1,t +2224,64567,71,3,f +2224,64644,71,3,f +2224,64644,71,1,t +2224,74698,0,1,f +2224,75937,0,1,f +2224,85984,72,2,f +2224,87994,0,1,f +2224,92738,0,1,f +2224,970c00pr0478,4,1,f +2224,973pr2290c01,4,1,f +2224,98107pr0008,212,2,f +2225,3001,0,2,f +2225,3001,14,1,f +2225,3001,15,2,f +2225,3003,15,1,f +2225,30076,0,1,f +2225,30144,4,1,f +2225,30144pb008,15,1,f +2225,30150,0,1,f +2225,30180,15,2,f +2225,3023,42,5,f +2225,30237a,15,2,f +2225,30237a,14,2,f +2225,30263,14,1,f +2225,30285,7,4,f +2225,30350b,0,2,f +2225,30365,15,5,f +2225,30389a,14,5,f +2225,30391,0,4,f +2225,3039p70,15,2,f +2225,30400,0,1,f +2225,30632,0,1,f +2225,30640,15,1,f +2225,30645,7,1,f +2225,30645,0,1,f +2225,30650,15,1,f +2225,30650pb06,143,1,f +2225,30663,0,1,f +2225,3068b,0,1,f +2225,3068b,4,1,f +2225,3068b,14,1,f +2225,3068b,2,1,f +2225,3069bpr0100,2,1,f +2225,3701,14,1,f +2225,3823,33,1,f +2225,3855,143,3,f +2225,3941,0,1,f +2225,3941,46,1,f +2225,3957a,15,3,f +2225,3962b,8,2,f +2225,4006,0,1,f +2225,40996,42,1,f +2225,4202,7,2,f +2225,4286,14,2,f +2225,4328,7,1,f +2225,4495b,4,3,f +2225,4495b,2,3,f +2225,45399,14,1,f +2225,45402px3,143,1,f +2225,45403,0,1,f +2225,45403c01,7,1,f +2225,45405,15,1,f +2225,45695,15,7,f +2225,4629c01,14,1,f +2225,6232,4,2,f +2225,6255,2,1,f +2225,758c01,7,2,f +2225,bb03pb03,143,1,f +2225,js024,-1,1,f +2225,js028,-1,1,f +2226,11089,15,2,f +2226,11090,0,2,f +2226,11211,71,2,f +2226,14704,71,3,f +2226,14769pr1002,15,1,f +2226,15068,272,4,f +2226,15082,0,2,f +2226,15208,0,1,f +2226,15456,0,3,f +2226,18649,0,1,f +2226,2921,0,2,f +2226,3003,272,2,f +2226,3022,0,1,f +2226,3023,272,3,f +2226,3039,272,3,f +2226,4032a,0,2,f +2226,4735,0,2,f +2226,49668,0,2,f +2226,54200,323,6,f +2226,54200,272,1,t +2226,54200,323,1,t +2226,54200,272,4,f +2226,98138pr0008,1000,1,t +2226,98138pr0008,1000,2,f +2226,99206,0,2,f +2226,99207,0,2,f +2226,99780,0,4,f +2226,99781,71,1,f +2227,264,1,1,f +2227,3957a,0,1,f +2227,3962a,0,1,f +2227,4362acx1,0,1,f +2227,4452,1,1,f +2227,4461,1,1,f +2227,fab4b,9999,1,f +2227,fabaj3,14,1,f +2227,u9154,0,1,f +2227,x581c08,1,1,f +2227,x610c03px2,1,2,f +2228,2446,4,1,f +2228,2447,0,1,f +2228,3039,4,1,f +2228,3062b,8,2,f +2228,3626bpx100,14,1,f +2228,3795,0,1,f +2228,3829c01,4,1,f +2228,4600,7,2,f +2228,6014a,14,4,f +2228,6015,0,4,f +2228,970c00,4,1,f +2228,973pb0023c01,15,1,f +2230,10677pr0004,19,1,f +2230,11477,4,4,f +2230,12607ass02pr03,10,1,f +2230,12607ass04pr03,10,1,f +2230,12609pr0001,28,1,f +2230,12610pr0001,28,1,f +2230,15733pr0001,326,1,f +2230,2340,15,3,f +2230,2357,14,4,f +2230,2412b,0,7,f +2230,2412b,72,1,f +2230,2420,0,4,f +2230,2420,71,4,f +2230,2431,72,3,f +2230,2432,0,1,f +2230,2496,0,2,f +2230,2540,2,1,f +2230,2540,15,2,f +2230,2654,71,1,f +2230,2655,71,2,f +2230,2780,0,4,f +2230,298c02,15,2,f +2230,3003,72,2,f +2230,3003,4,1,f +2230,3004,15,2,f +2230,3005,0,2,f +2230,3010,1,1,f +2230,3020,0,1,f +2230,3020,15,1,f +2230,3020,4,2,f +2230,3021,71,4,f +2230,3021,70,1,f +2230,3023,27,4,f +2230,3023,4,10,f +2230,3023,71,7,f +2230,3031,2,1,f +2230,3031,70,1,f +2230,3031,0,1,f +2230,30350b,0,1,f +2230,30357,71,2,f +2230,30357,0,2,f +2230,3039,0,2,f +2230,30414,4,3,f +2230,30565,72,4,f +2230,3062b,41,1,f +2230,3062b,42,2,f +2230,3068b,71,2,f +2230,3069b,70,1,f +2230,32013,0,2,f +2230,32064b,4,1,f +2230,32064b,72,4,f +2230,32192,0,4,f +2230,32531,71,1,f +2230,3460,70,4,f +2230,3622,14,2,f +2230,3623,72,2,f +2230,3626cpr1181,71,1,f +2230,3626cpr1416,326,1,f +2230,3660,0,1,f +2230,3660,71,2,f +2230,3666,72,2,f +2230,3666,4,1,f +2230,3700,0,2,f +2230,3710,2,3,f +2230,3710,0,8,f +2230,3710,71,3,f +2230,3747b,71,3,f +2230,3794b,2,7,f +2230,3839b,71,1,f +2230,3894,4,1,f +2230,3941,71,1,f +2230,3943b,0,1,f +2230,4070,0,4,f +2230,4070,4,2,f +2230,4079,0,1,f +2230,4081b,0,4,f +2230,4150p02,14,2,f +2230,41769,70,1,f +2230,41770,70,1,f +2230,4274,1,2,f +2230,43093,1,2,f +2230,4519,71,8,f +2230,45410,2,2,f +2230,48336,4,1,f +2230,4865b,4,2,f +2230,50747,47,1,f +2230,54200,0,8,f +2230,57519,0,1,f +2230,59426,72,1,f +2230,59900,2,3,f +2230,59900,71,4,f +2230,59900,42,2,f +2230,60849,0,2,f +2230,61184,71,4,f +2230,6141,46,2,f +2230,6141,0,4,f +2230,6141,4,4,f +2230,6141,1000,4,f +2230,62360,47,1,f +2230,6249,72,1,f +2230,64644,308,1,f +2230,6541,71,2,f +2230,6587,28,1,f +2230,75c03,70,4,f +2230,85080,71,4,f +2230,85959pat0003,36,1,f +2230,85984,0,5,f +2230,87559,179,4,f +2230,88930,4,1,f +2230,89523,26,1,f +2230,92338,72,1,f +2230,92593,326,2,f +2230,92947,0,1,f +2230,93095,14,1,f +2230,95120,72,1,f +2230,970c00pr0472,10,1,f +2230,970c00pr0482,73,1,f +2230,970c00pr0656,484,1,f +2230,970c00pr0676,10,1,f +2230,973pr2304c01,73,1,f +2230,973pr2690c01,25,1,f +2230,973pr2691c01,85,1,f +2230,98138,15,1,f +2230,98138,179,1,f +2230,98313,70,2,f +2232,30162,297,1,f +2232,30173b,0,1,f +2232,3626bpr0745,14,1,f +2232,63965,297,1,f +2232,89522,179,2,f +2232,92338,179,1,f +2232,970c00,0,1,f +2232,973pr2472c01,0,1,f +2232,98132,297,1,f +2232,98133,0,1,f +2234,11211,71,1,f +2234,11816pr0016,84,1,f +2234,14734pr0001,191,1,f +2234,14769,297,1,f +2234,15395,15,1,f +2234,15470,297,3,f +2234,15470,297,1,t +2234,15573,15,2,f +2234,19193pr0001,322,1,f +2234,19196pr0001,0,1,f +2234,2445,15,1,f +2234,2454b,30,2,f +2234,2489,70,1,f +2234,2566,0,1,f +2234,2654,19,2,f +2234,3001,70,1,f +2234,3004,30,2,f +2234,3005,19,6,f +2234,3009,15,1,f +2234,3010,19,1,f +2234,30115,2,1,f +2234,30115,2,1,t +2234,30136,70,2,f +2234,30153,33,1,f +2234,30153,46,1,f +2234,3020,70,3,f +2234,3020,30,3,f +2234,3022,70,1,f +2234,3031,191,1,f +2234,3031,19,1,f +2234,3039,71,2,f +2234,3040b,26,2,f +2234,3040b,30,2,f +2234,30562,15,2,f +2234,30565,19,2,f +2234,3062b,70,3,f +2234,3069b,1,1,f +2234,32062,4,1,f +2234,33057,484,1,f +2234,33291,191,6,f +2234,33291,191,2,t +2234,33291,26,8,f +2234,33291,26,2,t +2234,3633,297,1,f +2234,3710,30,1,f +2234,3795,19,1,f +2234,3832,19,1,f +2234,3941,15,2,f +2234,3941,2,1,f +2234,3941,85,1,f +2234,3958,19,2,f +2234,4081b,26,4,f +2234,48092,84,2,f +2234,54200,297,2,t +2234,54200,297,6,f +2234,59900,1002,2,t +2234,59900,129,1,t +2234,59900,1002,2,f +2234,59900,297,2,f +2234,59900,129,1,f +2234,60470b,191,4,f +2234,60474,322,1,f +2234,6126b,1003,1,f +2234,6141,297,4,f +2234,6141,297,2,t +2234,6141,2,5,f +2234,6141,2,2,t +2234,6148,2,2,f +2234,64567,297,1,t +2234,64567,297,1,f +2234,64644,308,2,f +2234,64647,182,1,t +2234,64647,182,2,f +2234,85080,15,4,f +2234,87079,30,1,f +2234,87079pr0064,1,2,f +2234,87580,71,2,f +2234,87580,1,1,f +2234,88292,84,4,f +2234,88293,297,2,f +2234,92456pr0064c01,84,1,f +2234,93095,1,1,f +2234,98383,297,1,f +2237,x1678,89,1,f +2240,15339,179,1,f +2240,15341,1,2,f +2240,15343,1,2,f +2240,15350,1,1,f +2240,15357,0,1,f +2240,15358pat0001,35,1,f +2240,15359pr0002,4,1,f +2240,15362,0,4,f +2240,15391,0,1,f +2240,15392,72,1,f +2240,3069bpr0136,41,1,f +2240,32062,4,3,f +2240,32123b,71,1,f +2240,33299a,71,1,f +2240,3626b,4,1,f +2240,4519,71,1,f +2240,53451,27,4,f +2240,53585,0,1,f +2240,53989,0,4,f +2240,60115,0,1,f +2240,61252,1,1,f +2240,6141,42,2,f +2240,87747,0,2,f +2240,90611,72,6,f +2240,90612,0,2,f +2240,90634,0,1,f +2240,90641,0,1,f +2240,93571,4,7,f +2240,98138pr0019,15,1,f +2240,98590,0,1,f +2240,99021,72,2,f +2241,2420,15,2,f +2241,2431,14,3,f +2241,2431,4,4,f +2241,2432,15,2,f +2241,2432,0,1,f +2241,2433,4,2,f +2241,2436,7,2,f +2241,2437,41,1,f +2241,2513,15,1,f +2241,2873,14,2,f +2241,2878c01,0,2,f +2241,2880,4,2,f +2241,2920,0,2,f +2241,298c02,15,2,f +2241,3005,15,2,f +2241,3006,4,1,f +2241,3020,0,2,f +2241,3021,7,2,f +2241,3022,7,1,f +2241,3023,7,4,f +2241,3024,46,2,f +2241,3024,36,2,f +2241,3024,14,2,f +2241,3024,7,2,f +2241,3027,0,1,f +2241,3028,7,2,f +2241,3032,4,1,f +2241,3039,4,1,f +2241,3040b,4,6,f +2241,3069b,4,3,f +2241,3069b,14,3,f +2241,3403c01,4,2,f +2241,3460,0,2,f +2241,3460,4,1,f +2241,3623,15,2,f +2241,3626bp04,14,1,f +2241,3633,7,4,f +2241,3633,14,6,f +2241,3641,0,4,f +2241,3660,4,2,f +2241,3665,0,4,f +2241,3665,4,2,f +2241,3666,4,3,f +2241,3710,14,1,f +2241,3710,15,3,f +2241,3788,15,1,f +2241,3795,4,1,f +2241,3795,7,1,f +2241,3821,15,1,f +2241,3822,15,1,f +2241,3829c01,15,1,f +2241,3832,0,1,f +2241,3901,6,1,f +2241,3937,4,2,f +2241,4022,0,2,f +2241,4168,7,4,f +2241,4212b,0,1,f +2241,4275b,14,1,f +2241,4315,14,2,f +2241,4477,7,2,f +2241,4531,4,1,f +2241,4531,14,2,f +2241,4624,7,4,f +2241,4865a,14,2,f +2241,6081,15,1,f +2241,6134,4,2,f +2241,6157,0,2,f +2241,73092,0,2,f +2241,970c00,1,1,f +2241,973c11,0,1,f +2242,2780,0,4,f +2242,2780,0,1,t +2242,2994,14,4,f +2242,32002,8,2,f +2242,32002,8,1,t +2242,32062,0,1,f +2242,32065,0,4,f +2242,32073,0,1,f +2242,32123b,7,4,f +2242,32123b,7,1,t +2242,32140,7,1,f +2242,32184,7,2,f +2242,32250,0,2,f +2242,32271,0,1,f +2242,32288c02,0,1,f +2242,32291,22,1,f +2242,3702,7,2,f +2242,3705,0,3,f +2242,3708,0,1,f +2242,3713,7,1,t +2242,3713,7,6,f +2242,3737,0,1,f +2242,3749,7,4,f +2242,6558,0,2,f +2242,6578,0,4,f +2242,6632,7,2,f +2242,75535,0,2,f +2243,2780,0,1,t +2243,2780,0,33,f +2243,32002,8,9,f +2243,32005a,8,2,f +2243,32015,14,2,f +2243,32054,7,12,f +2243,32062,0,2,f +2243,32063,8,6,f +2243,32073,7,1,f +2243,32123b,7,10,f +2243,32123b,7,1,t +2243,32138,0,2,f +2243,32140,7,2,f +2243,32140,0,8,f +2243,32184,0,1,f +2243,32199,14,2,f +2243,32209,0,2,f +2243,32235,14,2,f +2243,32278,8,1,f +2243,32316,0,2,f +2243,32496,0,2,f +2243,32524,7,2,f +2243,32524,14,2,f +2243,32526,7,2,f +2243,32526,0,4,f +2243,32534,148,1,f +2243,32534,14,1,f +2243,32535,148,1,f +2243,32535,14,1,f +2243,3673,7,1,t +2243,3673,7,2,f +2243,3705,0,1,f +2243,3706,0,4,f +2243,3707,0,2,f +2243,3708,0,2,f +2243,3713,7,2,t +2243,3713,7,14,f +2243,3737,0,1,f +2243,40490,14,1,f +2243,40490,0,2,f +2243,41669,42,2,f +2243,41669,36,2,f +2243,41671,148,4,f +2243,41678,14,8,f +2243,41678,0,2,f +2243,4185,7,2,f +2243,41893,0,4,f +2243,41894,0,2,f +2243,41896,7,4,f +2243,42003,0,4,f +2243,42610,320,2,f +2243,4274,7,1,t +2243,4274,7,2,f +2243,42908,0,2,f +2243,43093,1,8,f +2243,44294,7,2,f +2243,44350,14,1,f +2243,44351,14,1,f +2243,44777,0,2,f +2243,4519,7,1,f +2243,46453,179,1,f +2243,51011,0,2,f +2243,5282,0,1,f +2243,5306bc015,0,2,f +2243,6141,7,2,f +2243,6141,7,1,t +2243,6282,0,1,f +2243,6293c01,0,1,f +2243,6536,7,2,f +2243,6536,14,2,f +2243,6558,0,22,f +2243,6587,8,11,f +2243,6629,0,2,f +2243,6632,7,2,f +2243,6632,0,2,f +2243,rb00178,0,2,f +2243,rb00180,0,2,f +2244,2654,0,1,f +2244,3004,4,2,f +2244,30173b,297,1,f +2244,30174,148,1,f +2244,3022,4,1,f +2244,30374,4,1,f +2244,3626cpr0870,14,1,f +2244,43887,0,1,f +2244,4643616,9999,1,f +2244,4643617,9999,1,f +2244,4643618,9999,1,f +2244,4643619,9999,1,f +2244,4643620,9999,1,f +2244,64567,0,1,f +2244,64727,4,1,f +2244,95344,297,1,f +2244,95344,297,1,t +2244,970c00pr0280,4,1,f +2244,973pr1902c01,4,1,f +2244,98128,148,1,f +2244,98129,4,1,f +2244,98341pr0001,4,1,f +2244,98354pr0002,148,1,f +2245,2780,0,6,f +2245,32062,0,1,f +2245,32174,0,6,f +2245,32506,179,2,f +2245,4274,71,3,f +2245,4274,71,1,t +2245,43093,1,3,f +2245,47297,320,2,f +2245,47306,0,1,f +2245,47312,72,1,f +2245,47313,42,1,f +2245,50898,25,4,f +2245,53451,15,4,f +2245,53451,15,1,t +2245,53542,320,2,f +2245,53543,320,4,f +2245,53545,320,1,f +2245,53548,320,2,f +2245,57523c01,135,1,f +2245,57525,4,9,f +2245,57531pat0001,320,1,f +2245,57539,135,2,f +2245,57544,25,1,f +2245,57546,320,2,f +2245,57572,135,1,f +2245,58176,33,2,f +2245,60169,72,1,f +2245,6558,0,2,f +2245,6587,72,2,f +2246,33034,12,1,f +2246,33035,15,1,f +2246,33036c01,15,2,f +2246,33037c01,15,2,f +2246,33055,100,2,f +2246,33062,15,4,f +2246,33232c01,15,4,f +2246,6821,15,2,f +2246,6890pb01c01,18,1,f +2246,6892pb01c01,18,1,f +2246,6895b,15,1,f +2246,6896b,12,1,f +2246,6904,100,2,f +2246,6906,100,1,f +2246,x7,15,3,f +2247,15557pr0001,484,1,f +2247,3626cpr1372,14,1,f +2247,3899pr0004,4,1,f +2247,88646,0,1,f +2247,970c00,72,1,f +2247,973pr0600c01,72,1,f +2248,2412b,15,2,f +2248,2412b,72,1,f +2248,2412b,70,14,f +2248,2412b,4,2,f +2248,2412b,0,12,f +2248,2431,4,2,f +2248,2431,71,15,f +2248,2432,14,8,f +2248,2453a,1,2,f +2248,2454a,72,2,f +2248,2456,1,2,f +2248,2458,14,1,f +2248,2486,14,2,f +2248,2495,4,1,f +2248,2496,0,1,f +2248,2584,0,1,f +2248,2585,71,1,f +2248,2614,0,1,f +2248,2637,71,1,f +2248,2638,14,1,f +2248,2877,15,2,f +2248,2926,0,2,f +2248,298c02,4,3,f +2248,298c02,4,2,t +2248,3001,15,3,f +2248,3003,0,3,f +2248,3003,4,1,f +2248,3004,1,3,f +2248,3004,4,3,f +2248,3004,0,3,f +2248,3005,15,4,f +2248,3005,71,6,f +2248,3007,15,3,f +2248,3008,15,2,f +2248,3009,4,2,f +2248,3009,71,5,f +2248,3010,15,3,f +2248,3010,0,4,f +2248,30162,72,1,f +2248,3020,70,1,f +2248,3021,0,3,f +2248,3022,15,4,f +2248,3022,1,2,f +2248,3023,71,8,f +2248,3023,46,5,f +2248,30237a,15,1,f +2248,3027,72,1,f +2248,3028,2,1,f +2248,3028,71,1,f +2248,3030,70,3,f +2248,3032,15,1,f +2248,3034,14,3,f +2248,3037,4,2,f +2248,30383,72,1,f +2248,3039,72,1,f +2248,3039pr0005,15,1,f +2248,3040b,14,2,f +2248,30414,72,2,f +2248,30552,71,1,f +2248,30586,71,4,f +2248,3062b,36,1,f +2248,3062b,19,42,f +2248,3062b,15,2,f +2248,3062b,4,2,f +2248,3068b,70,1,f +2248,3068b,71,5,f +2248,3068b,0,1,f +2248,3069b,15,6,f +2248,3176,14,1,f +2248,3185,0,6,f +2248,32028,0,4,f +2248,32062,4,3,f +2248,32064a,15,1,f +2248,32064a,72,2,f +2248,3298,15,1,f +2248,3460,70,4,f +2248,3460,15,1,f +2248,3492c01,14,1,f +2248,3622,1,4,f +2248,3624,0,1,f +2248,3626bpr0314,14,1,f +2248,3626bpr0389,14,1,f +2248,3626bpr0646,14,1,f +2248,3626bpr0649,14,1,f +2248,3633,0,6,f +2248,3660,4,2,f +2248,3666,4,2,f +2248,3666,14,2,f +2248,3666,71,2,f +2248,3666,0,2,f +2248,3676,72,2,f +2248,3684,15,3,f +2248,3684,0,1,f +2248,3710,0,3,f +2248,3710,14,4,f +2248,3794a,14,1,f +2248,3795,15,1,f +2248,3795,1,3,f +2248,3821,4,1,f +2248,3822,4,1,f +2248,3829c01,1,2,f +2248,3832,70,2,f +2248,3832,71,2,f +2248,3833,4,1,f +2248,3836,70,1,f +2248,3837,72,1,f +2248,3899,14,1,f +2248,3941,15,1,f +2248,3942c,15,1,f +2248,3957b,0,2,f +2248,3958,0,4,f +2248,3958,1,1,f +2248,3962b,0,1,f +2248,40234,71,1,f +2248,4032a,2,1,f +2248,4032a,4,1,f +2248,4032a,15,1,f +2248,40490,72,1,f +2248,4079,4,1,f +2248,4081b,15,1,f +2248,4083,14,3,f +2248,41334,72,1,f +2248,4150,4,3,f +2248,4150pr0022,71,1,f +2248,4151b,71,2,f +2248,4162,2,1,f +2248,4175,0,1,f +2248,4176,47,1,f +2248,42022,1,2,f +2248,42023,72,2,f +2248,42445,71,1,f +2248,4289,14,1,f +2248,43093,1,2,f +2248,43337,4,8,f +2248,43337,15,1,f +2248,44302a,71,2,f +2248,4460b,1,4,f +2248,44728,71,12,f +2248,4477,0,2,f +2248,4488,0,2,f +2248,4510,72,5,f +2248,4510,15,1,f +2248,4599b,71,1,f +2248,4740,2,1,f +2248,4740,15,1,f +2248,4872,40,1,f +2248,50745,15,2,f +2248,51595,72,3,f +2248,52031,4,1,f +2248,54200,4,1,t +2248,54200,47,2,f +2248,54200,4,4,f +2248,54200,47,1,t +2248,56823c100,0,1,f +2248,57779,14,1,f +2248,59349,1,4,f +2248,6014b,71,6,f +2248,60474,14,1,f +2248,60476,71,2,f +2248,60477,72,4,f +2248,60477,15,2,f +2248,60478,15,4,f +2248,60479,15,2,f +2248,60596,14,1,f +2248,60601,41,6,f +2248,60623,14,1,f +2248,60700,0,6,f +2248,6091,71,2,f +2248,6111,71,4,f +2248,6112,1,3,f +2248,61252,0,4,f +2248,61345,15,3,f +2248,6141,47,4,f +2248,6141,182,2,f +2248,6141,36,5,f +2248,6141,71,1,t +2248,6141,34,1,t +2248,6141,4,1,f +2248,6141,182,1,t +2248,6141,4,1,t +2248,6141,36,2,t +2248,6141,47,2,t +2248,6141,34,3,f +2248,6141,71,1,f +2248,61485,15,1,f +2248,61780,70,2,f +2248,62791c01,2,1,f +2248,64448,14,3,f +2248,64453,4,1,f +2248,64648,179,3,f +2248,6541,14,2,f +2248,6587,28,3,f +2248,6636,15,2,f +2248,6636,71,2,f +2248,85943,72,1,f +2248,85984,0,3,f +2248,86035,0,1,f +2248,87079,71,5,f +2248,87087,0,10,f +2248,87609,4,1,f +2248,87617,14,1,f +2248,87619,1,1,f +2248,88292,15,2,f +2248,89648,15,1,f +2248,89649,41,1,f +2248,91501,15,4,f +2248,92099,72,2,f +2248,92099,15,2,f +2248,92280,71,4,f +2248,92593,15,2,f +2248,92715c01,72,1,f +2248,92926,2,1,f +2248,92947,4,3,f +2248,970c00,2,1,f +2248,970c00,25,1,f +2248,970c00,1,1,f +2248,970c00,0,1,f +2248,973pr1182c01,25,1,f +2248,973pr1244c01,73,1,f +2248,973pr1320c01,15,1,f +2248,973pr1446c01,4,1,f +2250,30173a,7,2,f +2250,32013,27,1,f +2250,32015,27,2,f +2250,32062,0,3,f +2250,32140,0,2,f +2250,32174,0,1,f +2250,32474,0,1,f +2250,32523,0,1,f +2250,32576,2,2,f +2250,41659,2,1,f +2250,41669,36,2,f +2250,42042,2,1,f +2250,42042und,8,1,f +2250,43093,0,2,f +2250,43093,0,1,t +2250,4519,0,1,f +2250,6536,0,1,f +2250,6553,0,2,f +2250,6558,0,2,f +2251,2815,0,12,f +2251,3736,7,4,f +2251,4185,7,16,f +2252,2444,71,1,f +2252,2540,71,1,f +2252,2654,71,1,f +2252,2780,0,14,f +2252,2780,0,1,t +2252,298c02,0,1,f +2252,298c02,0,1,t +2252,3001,4,1,f +2252,3003,72,2,f +2252,3004,19,1,f +2252,30165,4,1,f +2252,3021,71,2,f +2252,3022,72,2,f +2252,3022,4,3,f +2252,3023,4,4,f +2252,3023,72,6,f +2252,3034,4,2,f +2252,3044b,4,6,f +2252,3048c,4,3,f +2252,30552,72,1,f +2252,30553,71,1,f +2252,3068b,71,1,f +2252,3069b,0,2,f +2252,3070b,4,3,f +2252,3070b,4,1,t +2252,32018,72,2,f +2252,32039,71,1,f +2252,32062,4,1,f +2252,32064b,4,4,f +2252,32072,0,2,f +2252,32073,71,1,f +2252,32271,72,2,f +2252,3245b,72,1,f +2252,32524,4,1,f +2252,32529,0,2,f +2252,3299,4,2,f +2252,3460,4,2,f +2252,3626bpr0642,14,1,f +2252,3660,71,1,f +2252,3701,0,2,f +2252,3702,71,2,f +2252,3705,0,3,f +2252,3713,71,2,f +2252,3713,71,1,t +2252,3737,0,1,f +2252,3794b,4,4,f +2252,3832,72,1,f +2252,3941,72,1,f +2252,4081b,4,2,f +2252,41529,71,1,f +2252,41531,71,1,f +2252,41532,0,1,f +2252,4162,71,2,f +2252,41678,71,2,f +2252,4274,1,1,t +2252,4274,1,7,f +2252,4289,72,1,f +2252,43093,1,3,f +2252,43722,4,1,f +2252,43723,4,1,f +2252,44728,72,4,f +2252,4510,72,2,f +2252,46667,72,1,f +2252,48336,4,2,f +2252,50967,4,1,f +2252,52107,4,2,f +2252,55817,4,2,f +2252,57028c01,71,1,f +2252,57796,72,1,f +2252,58176,35,2,f +2252,58177,0,2,f +2252,59275,27,2,f +2252,59443,72,2,f +2252,6005,4,1,f +2252,6019,72,1,f +2252,6019,15,2,f +2252,60483,71,2,f +2252,6091,4,2,f +2252,61072,135,2,f +2252,61184,71,2,f +2252,6141,34,2,f +2252,6141,36,1,t +2252,6141,47,4,f +2252,6141,36,2,f +2252,6141,34,1,t +2252,6141,47,1,t +2252,61678,4,4,f +2252,6232,4,2,f +2252,63864,4,3,f +2252,63868,0,2,f +2252,64393,4,1,f +2252,64681,4,1,f +2252,6536,27,2,f +2252,6628,0,2,f +2252,8060stk01,9999,1,t +2252,852906,9999,1,t +2252,85940,0,2,f +2252,87083,72,2,f +2252,87748pr0005,46,1,f +2252,87751,135,2,f +2252,87752,35,1,f +2252,87754,72,1,f +2252,87756pr01,71,1,f +2252,89159,35,1,f +2252,92290,297,1,f +2252,970c00pr0144,71,1,f +2252,970c00pr0145,72,1,f +2252,973pr1556c01,71,1,f +2252,973pr1557c01,72,1,f +2253,3022,0,2,f +2253,3037,0,44,f +2253,3038,0,2,f +2253,3046a,0,6,f +2253,3176,0,1,f +2253,6007,72,1,f +2254,1093,9999,1,f +2254,70412,7,1,f +2254,70455,0,1,f +2254,bb274,0,1,f +2257,1,14,3,f +2257,2,15,1,f +2257,3,14,2,f +2257,3001a,1,1,f +2257,3002a,15,6,f +2257,3003,15,8,f +2257,3003,14,3,f +2257,3003,4,1,f +2257,3004,15,6,f +2257,3005,47,4,f +2257,3010,15,2,f +2257,3010p40,15,1,f +2257,3010p41,15,2,f +2257,3020,4,1,f +2257,3021,0,1,f +2257,3021,4,1,f +2257,3022,14,2,f +2257,3022,1,1,f +2257,3030,15,2,f +2257,3031,15,5,f +2257,3033,15,1,f +2257,3034,14,2,f +2257,3035,15,1,f +2257,3039,1,2,f +2257,3039,4,2,f +2257,3062a,4,2,f +2257,3062a,47,4,f +2257,3068ap17,15,4,f +2257,3068b,14,39,f +2257,3068b,15,22,f +2257,3070a,4,8,f +2257,3612,4,2,f +2257,3613,15,2,f +2257,3613,14,2,f +2257,3614a,14,4,f +2257,685p01,14,2,f +2257,785,1,1,f +2257,792c03,15,1,f +2257,792c03,4,1,f +2257,837,15,5,f +2257,838,14,4,f +2257,838,15,2,f +2257,839,15,1,f +2257,840c01,15,1,f +2257,841,15,1,f +2257,842,15,1,f +2257,843,15,1,f +2257,x196,0,2,f +2259,2775c01,7,2,f +2259,766c01,7,8,f +2259,x466,7,1,f +2260,11816pr0003,78,1,f +2260,2421,0,1,f +2260,298c02,15,1,f +2260,298c02,15,1,t +2260,3004,19,1,f +2260,3020,71,1,f +2260,3020,15,1,f +2260,3021,1,1,f +2260,3023,29,1,f +2260,3068b,29,1,f +2260,3069b,71,1,f +2260,33291,5,3,f +2260,33291,5,1,t +2260,33320,2,1,f +2260,3623,27,2,f +2260,3660,71,1,f +2260,3962b,191,1,f +2260,4032a,288,1,f +2260,43713,15,1,f +2260,4488,71,1,f +2260,47753,27,1,f +2260,4871,15,1,f +2260,60897,71,2,f +2260,6091,71,2,f +2260,92256,70,1,f +2260,92456pr0034c01,78,1,f +2260,92819pr0002a,27,1,f +2260,93095,29,1,f +2261,3901,70,1,f +2261,95678pr0002,19,1,f +2262,11203,26,1,f +2262,11211,19,2,f +2262,11408pr0014c01,84,1,f +2262,11477,308,1,f +2262,11610,19,2,f +2262,11818pr0010,84,1,f +2262,13965,70,5,f +2262,14769,19,3,f +2262,14769,71,2,f +2262,14769,323,1,f +2262,14769pr1042,27,1,f +2262,15068,308,2,f +2262,15070,297,5,f +2262,15210,15,1,f +2262,15392,72,1,f +2262,15392,72,1,t +2262,15573,26,3,f +2262,15672,70,2,f +2262,15712,71,1,f +2262,16577,19,1,f +2262,18646,19,1,f +2262,18646,27,2,f +2262,19121,297,1,f +2262,19203pr0003,321,1,f +2262,20105,0,1,f +2262,22888,2,3,f +2262,23945pat0001,47,1,f +2262,23969,41,4,f +2262,2417,26,1,f +2262,2423,27,1,f +2262,2423,5,1,f +2262,2432,0,1,f +2262,2540,0,1,f +2262,25861,9999,1,t +2262,26090pr0001,322,1,f +2262,2654,47,2,f +2262,3001,72,2,f +2262,3003,72,2,f +2262,3003,70,1,f +2262,3004,71,2,f +2262,3004,70,3,f +2262,3004,321,3,f +2262,3005,45,2,f +2262,3005,19,2,f +2262,3010,70,1,f +2262,30153,47,3,f +2262,30153,52,3,f +2262,3020,70,3,f +2262,3020,0,1,f +2262,3021,70,1,f +2262,3021,288,4,f +2262,3023,321,6,f +2262,3023,70,2,f +2262,3023,15,2,f +2262,3024,0,4,f +2262,3024,0,1,t +2262,3031,27,1,f +2262,3035,2,1,f +2262,3035,19,1,f +2262,30357,288,2,f +2262,30374,41,2,f +2262,30377,308,1,t +2262,30377,308,1,f +2262,3040b,308,3,f +2262,3045,31,2,f +2262,3065,45,3,f +2262,3069bpr0055,15,1,f +2262,32530,72,1,f +2262,33183,10,1,t +2262,33183,70,1,t +2262,33183,10,1,f +2262,33183,70,1,f +2262,33291,26,1,t +2262,33291,191,3,f +2262,33291,26,3,f +2262,33291,191,1,t +2262,3622,70,2,f +2262,3623,19,2,f +2262,3659,71,2,f +2262,3665,70,3,f +2262,3666,15,2,f +2262,3678b,72,2,f +2262,3700,19,1,f +2262,3710,70,2,f +2262,3747b,70,2,f +2262,3795,70,2,f +2262,3899,47,1,f +2262,3941,70,1,f +2262,41539,2,1,f +2262,4274,71,1,f +2262,4274,71,1,t +2262,4740,191,1,t +2262,4740,52,3,f +2262,4740,191,1,f +2262,50950,321,4,f +2262,54200,47,1,t +2262,54200,47,2,f +2262,58176,15,1,f +2262,59900,15,3,f +2262,60470b,71,2,f +2262,60478,71,2,f +2262,60481,31,1,f +2262,60481,72,2,f +2262,60481,70,5,f +2262,60897,19,6,f +2262,6139040a,9999,2,f +2262,6141,182,2,f +2262,6141,297,2,f +2262,6141,297,1,t +2262,6141,182,1,t +2262,6179,0,1,f +2262,64644,297,3,f +2262,64647,15,1,t +2262,64647,15,1,f +2262,75c26,70,1,f +2262,85975,191,1,f +2262,87079,26,2,f +2262,87079,322,1,f +2262,87087,70,4,f +2262,87580,27,4,f +2262,88072,0,1,f +2262,88292,19,2,f +2262,92280,15,2,f +2262,92593,26,2,f +2262,92819pr0008c01,148,1,f +2262,93606,322,1,f +2262,98138,41,1,t +2262,98138,27,1,t +2262,98138,41,1,f +2262,98138,27,3,f +2262,98138pr0048,70,1,t +2262,98138pr0048,70,1,f +2262,98138pr0050,19,3,f +2262,98138pr0050,19,1,t +2262,99780,72,1,f +2262,99781,0,1,f +2263,10830pat0001,0,1,f +2263,2039,15,1,f +2263,2335,15,2,f +2263,2340,26,2,f +2263,2376,0,1,f +2263,2412b,19,6,f +2263,2412b,0,2,f +2263,2420,73,4,f +2263,2420,378,2,f +2263,2420,72,2,f +2263,2431,15,2,f +2263,2431,73,2,f +2263,2431,26,2,f +2263,2431,0,3,f +2263,2431,19,3,f +2263,2431,71,2,f +2263,2431,1,1,f +2263,2431pr0036,70,1,f +2263,2431pr0040,70,1,f +2263,2431pr0042,4,1,f +2263,2431pr0043,4,1,f +2263,2431pr0045,378,1,f +2263,2431pr0047,71,1,f +2263,2436,4,3,f +2263,2436,71,3,f +2263,2436,0,3,f +2263,2444,72,1,f +2263,2444,4,2,f +2263,2445,71,1,f +2263,2445,72,2,f +2263,2453a,19,2,f +2263,2454a,19,4,f +2263,2458,1,2,f +2263,2540,70,2,f +2263,2555,71,3,f +2263,2585,71,1,f +2263,2653,71,2,f +2263,2780,0,22,f +2263,2780,0,3,t +2263,2921,71,2,f +2263,2921,72,2,f +2263,298c02,15,1,f +2263,298c02,15,1,t +2263,3001,72,2,f +2263,3001pr0002,70,2,f +2263,3002,15,1,f +2263,30027b,70,2,f +2263,30028,0,2,f +2263,30031,71,3,f +2263,30033,179,1,f +2263,3004,72,3,f +2263,3004,378,2,f +2263,3004,71,5,f +2263,3005,15,4,f +2263,3005,19,8,f +2263,3010,0,4,f +2263,30136,19,4,f +2263,30137,19,25,f +2263,3020,72,6,f +2263,3020,378,2,f +2263,3020,15,4,f +2263,3020,0,2,f +2263,3020,71,2,f +2263,3021,1,1,f +2263,3021,72,2,f +2263,3021,4,2,f +2263,3021,15,1,f +2263,3022,15,2,f +2263,3022,0,2,f +2263,3022,70,2,f +2263,3022,212,2,f +2263,3022,19,1,f +2263,3022,71,5,f +2263,3023,72,2,f +2263,3023,4,5,f +2263,3023,0,2,f +2263,3023,1,2,f +2263,3023,2,5,f +2263,3023,71,4,f +2263,30236,0,2,f +2263,3028,71,1,f +2263,3029,71,2,f +2263,3030,72,5,f +2263,3031,71,1,f +2263,3031,72,1,f +2263,3031,73,1,f +2263,3031,1,1,f +2263,3031,378,1,f +2263,3031,26,1,f +2263,3034,72,1,f +2263,3034,71,2,f +2263,3034,14,2,f +2263,3034,0,1,f +2263,3035,19,2,f +2263,3036,72,1,f +2263,30367b,72,1,f +2263,30374,15,2,f +2263,30374,70,7,f +2263,30377,0,1,t +2263,30377,0,2,f +2263,3037pr0001,378,1,f +2263,30385,179,1,f +2263,3039,71,2,f +2263,30395,72,1,f +2263,3040b,71,2,f +2263,3040b,1,2,f +2263,30414,26,2,f +2263,30414,71,2,f +2263,3062b,4,1,f +2263,3068b,15,1,f +2263,3069b,72,4,f +2263,3069b,70,2,f +2263,3069b,26,1,f +2263,3069bpr0121,378,1,f +2263,3069bpr0122,378,1,f +2263,3070b,73,1,t +2263,3070b,19,1,t +2263,3070b,19,2,f +2263,3070b,73,4,f +2263,3139,0,6,f +2263,32013,0,2,f +2263,32028,323,2,f +2263,32028,19,6,f +2263,32062,0,1,f +2263,32140,0,2,f +2263,32270,0,1,f +2263,32316,72,1,f +2263,32523,71,8,f +2263,32530,0,1,f +2263,32556,19,1,f +2263,33299a,71,1,f +2263,3460,72,3,f +2263,3460,70,1,f +2263,3460,19,2,f +2263,3475b,72,2,f +2263,3622,378,4,f +2263,3622,70,2,f +2263,3622,212,2,f +2263,3622,15,2,f +2263,3623,72,2,f +2263,3623,70,1,f +2263,3623,15,1,f +2263,3623,19,2,f +2263,3633,72,1,f +2263,3647,72,1,t +2263,3647,72,4,f +2263,3648b,72,1,f +2263,3666,19,4,f +2263,3666,70,6,f +2263,3678b,323,1,f +2263,3678bpr0013a,323,1,f +2263,3700,72,5,f +2263,3702,71,1,f +2263,3706,0,1,f +2263,3710,73,1,f +2263,3710,1,1,f +2263,3710,212,1,f +2263,3710,378,2,f +2263,3710,19,2,f +2263,3710,72,4,f +2263,3710,0,1,f +2263,3710,71,2,f +2263,3713,71,1,f +2263,3713,71,1,t +2263,3749,19,1,f +2263,3794b,72,9,f +2263,3794b,15,4,f +2263,3794b,1,2,f +2263,3794b,19,3,f +2263,3794b,0,4,f +2263,3795,72,1,f +2263,3795,0,2,f +2263,3832,72,6,f +2263,3895,71,1,f +2263,3937,0,3,f +2263,3941,72,2,f +2263,3958,72,1,f +2263,3962b,0,1,f +2263,4032a,0,2,f +2263,40620,71,2,f +2263,4070,19,6,f +2263,4081b,71,2,f +2263,4083,0,2,f +2263,4085c,0,2,f +2263,4085c,4,3,f +2263,4150,72,1,f +2263,4162,19,2,f +2263,41769,72,3,f +2263,41770,72,3,f +2263,42022,19,2,f +2263,42610,71,2,f +2263,4274,1,2,f +2263,4274,1,1,t +2263,4286,72,4,f +2263,43093,1,3,f +2263,4460b,15,2,f +2263,44728,71,1,f +2263,4477,19,1,f +2263,4490,19,2,f +2263,4495b,297,6,f +2263,45677,0,1,f +2263,4589,19,8,f +2263,4589,46,2,f +2263,4589,72,1,f +2263,4599b,15,2,f +2263,4599b,4,1,f +2263,4600,71,1,f +2263,4624,71,4,f +2263,4624,70,2,f +2263,4733,15,1,f +2263,4740,71,2,f +2263,47457,323,2,f +2263,4865b,70,2,f +2263,50944pr0001,0,4,f +2263,50947,1,2,f +2263,50950,15,3,f +2263,50951,0,20,f +2263,51011,0,2,f +2263,53989,0,1,f +2263,54200,0,1,t +2263,54200,0,4,f +2263,54200,19,3,t +2263,54200,1,2,f +2263,54200,19,20,f +2263,54200,1,1,t +2263,55013,72,1,f +2263,56823c50,0,1,f +2263,57515,72,1,f +2263,59230,0,1,f +2263,59230,0,1,t +2263,59443,72,1,f +2263,6019,0,2,f +2263,60208,72,1,f +2263,60212,0,2,f +2263,60212,73,1,f +2263,60212,1,1,f +2263,60475a,15,2,f +2263,6091,73,2,f +2263,61072,0,1,f +2263,6111,19,1,f +2263,6111,15,1,f +2263,6111,72,3,f +2263,6134,71,3,f +2263,61409,0,2,f +2263,6141,15,1,t +2263,6141,19,1,t +2263,6141,80,1,f +2263,6141,46,2,f +2263,6141,46,1,t +2263,6141,297,2,t +2263,6141,182,2,f +2263,6141,47,2,t +2263,6141,80,1,t +2263,6141,36,3,t +2263,6141,71,4,f +2263,6141,47,9,f +2263,6141,36,10,f +2263,6141,71,1,t +2263,6141,0,1,t +2263,6141,297,6,f +2263,6141,15,1,f +2263,6141,19,4,f +2263,6141,0,4,f +2263,6141,182,1,t +2263,6157,0,13,f +2263,61678,19,4,f +2263,6232,71,2,f +2263,6233,72,1,f +2263,63864,15,1,f +2263,6541,70,4,f +2263,6541,19,4,f +2263,6628,0,2,f +2263,6636,70,4,f +2263,6881b,71,1,f +2263,85973,0,2,f +2263,87079,378,1,f +2263,87079,1,2,f +2263,87079pr0019,4,1,f +2263,87079pr0020,4,1,f +2263,87083,72,2,f +2263,87087,71,4,f +2263,87544,15,2,f +2263,88930,378,1,f +2263,90195,19,12,f +2263,91176,19,8,f +2263,92593,72,2,f +2263,92950,15,2,f +2263,93274,378,1,f +2263,93587pr0005,26,1,f +2263,93587pr0006,4,1,f +2263,93590,73,1,f +2263,93590,378,2,f +2263,93590,4,1,f +2263,93590,70,1,f +2263,93591pr0007,26,1,f +2263,93591pr0009,73,1,f +2263,93591pr0010,4,1,f +2263,93593,71,4,f +2263,93594,179,1,f +2263,93595pr0001,0,4,f +2263,93595pr0002,15,4,f +2263,93597pr0001,26,1,f +2263,93597pr0002,73,1,f +2263,93598pr0005,15,1,f +2263,93598pr0006,70,1,f +2263,97077,9999,1,t +2264,3034a,15,4,f +2264,3035a,15,1,f +2264,3035a,4,1,f +2264,3036a,15,1,f +2264,3036a,4,1,f +2264,712a,15,1,f +2264,712a,4,1,f +2264,713a,15,2,f +2265,10314,14,1,f +2265,15068,14,1,f +2265,15573,14,1,f +2265,2412b,179,1,f +2265,3001,14,1,f +2265,30028,0,4,f +2265,3005,14,5,f +2265,3020,14,1,f +2265,3021,72,1,f +2265,3022,72,1,f +2265,3023,15,1,f +2265,3023,47,1,f +2265,3023,0,1,f +2265,3023,14,2,f +2265,3032,14,1,f +2265,3034,0,1,f +2265,3034,71,1,f +2265,30414,14,2,f +2265,3065,47,4,f +2265,3069b,15,2,f +2265,3070b,36,2,f +2265,3070b,36,1,t +2265,3460,0,2,f +2265,4070,72,1,f +2265,4081b,71,2,f +2265,4600,71,2,f +2265,4865a,4,5,f +2265,4865a,47,2,f +2265,54200,14,2,f +2265,54200,14,1,t +2265,60212,14,2,f +2265,6141,4,1,t +2265,6141,4,1,f +2265,6231,4,1,f +2265,74967,0,4,f +2265,98138,71,1,t +2265,98138,47,1,t +2265,98138,47,2,f +2265,98138,71,3,f +2265,99780,14,1,f +2266,2359p03,19,1,f +2266,2412b,0,2,f +2266,2417,2,2,f +2266,2420,0,1,f +2266,2423,2,6,f +2266,2431,7,3,f +2266,2454a,2,1,f +2266,2456,0,1,f +2266,2462,7,4,f +2266,2463,7,4,f +2266,2464,7,4,f +2266,2476a,1,1,f +2266,2540,0,1,f +2266,2542,6,1,f +2266,2546,8,2,f +2266,2586pw1,19,2,f +2266,2586px3,19,1,f +2266,3001,0,2,f +2266,3002,0,6,f +2266,3003,2,4,f +2266,3003,0,1,f +2266,3004,0,13,f +2266,3004,4,1,f +2266,3004,6,5,f +2266,3004,1,1,f +2266,3004,2,2,f +2266,3005,2,4,f +2266,3005,0,1,f +2266,3005,6,3,f +2266,3008,7,1,f +2266,3009,0,1,f +2266,3009,7,2,f +2266,3010,7,2,f +2266,3010,0,2,f +2266,30113,6,1,f +2266,30114,0,5,f +2266,30115,0,3,f +2266,30126p01,15,1,t +2266,30126p01,15,5,f +2266,30127p01,15,5,f +2266,30129,6,2,f +2266,30131,6,1,f +2266,3020,7,1,f +2266,3021,7,2,f +2266,3022,0,3,f +2266,3023,2,1,f +2266,3023,6,1,f +2266,3023,0,1,f +2266,3023,1,1,f +2266,3039,7,3,f +2266,3040b,14,3,f +2266,3040b,1,5,f +2266,3040b,15,1,f +2266,3040b,4,2,f +2266,3062b,6,2,f +2266,3068b,0,1,f +2266,3297,7,2,f +2266,3298,7,3,f +2266,3622,0,2,f +2266,3622,7,7,f +2266,3623,6,5,f +2266,3623,0,1,f +2266,3626bpx57,14,2,f +2266,3626bpx58,14,2,f +2266,3626bpx60,14,1,f +2266,3626bpx61,14,1,f +2266,3665,14,1,f +2266,3665,1,1,f +2266,3665,4,2,f +2266,3700,7,1,f +2266,3794a,4,2,f +2266,3795,7,1,f +2266,3795,0,2,f +2266,3835,0,3,f +2266,3941,6,7,f +2266,4070,0,2,f +2266,4070,1,2,f +2266,4070,15,2,f +2266,4070,4,2,f +2266,4286,14,2,f +2266,4286,15,2,f +2266,4287,15,2,f +2266,4491b,2,1,f +2266,4491b,1,1,f +2266,4493c01px2,6,1,f +2266,4493cx6,15,1,f +2266,4497,0,5,f +2266,4498,0,4,f +2266,4499,0,5,f +2266,4529,0,1,f +2266,6020,6,1,f +2266,6021,6,1,f +2266,6064,2,2,f +2266,6082,7,2,f +2266,6083,7,2,f +2266,6107,7,4,f +2266,6126a,57,2,f +2266,6141,57,2,f +2266,6141,57,1,t +2266,6231,0,4,f +2266,6541,7,4,f +2266,6558,0,2,f +2266,6628,0,1,f +2266,970c00pb026,19,2,f +2266,970c02pb01,19,2,f +2266,970c02pb02,19,2,f +2266,973px103c01,19,2,f +2266,973px104c01,4,2,f +2266,973px106c01,19,1,f +2266,973px107c01,6,1,f +2266,x172px2,15,1,f +2267,2343,297,2,f +2267,2356,71,4,f +2267,2357,71,18,f +2267,2357,72,4,f +2267,2357,15,4,f +2267,2357,0,6,f +2267,2357,320,12,f +2267,2357,70,2,f +2267,2419,72,4,f +2267,2420,0,3,f +2267,2420,72,2,f +2267,2420,71,2,f +2267,2431,70,1,f +2267,2436,71,2,f +2267,2446,135,1,f +2267,2449,72,4,f +2267,2449,308,8,f +2267,2449,71,1,f +2267,2456,71,2,f +2267,2456,72,1,f +2267,2456,0,2,f +2267,2462,71,8,f +2267,2465,72,6,f +2267,2465,15,6,f +2267,2489,70,2,f +2267,2490pr0001,272,1,f +2267,2490pr0002,272,1,f +2267,2566,0,5,f +2267,2570,70,3,f +2267,2586p4h,71,5,f +2267,2586px14,71,6,f +2267,2587,132,1,f +2267,2587pr0014,0,1,f +2267,2587pr19,135,2,f +2267,2587pr21,297,1,f +2267,2594,80,1,f +2267,2780,0,32,f +2267,2817,0,4,f +2267,3001,71,5,f +2267,3001,72,8,f +2267,3001,0,6,f +2267,3002,72,8,f +2267,3002,0,62,f +2267,3002,71,37,f +2267,3003,272,12,f +2267,3003,72,6,f +2267,3003,71,15,f +2267,3003,0,13,f +2267,3003,320,12,f +2267,3004,15,4,f +2267,3004,70,9,f +2267,3004,320,16,f +2267,3004,0,16,f +2267,3004,72,3,f +2267,3004,272,16,f +2267,3004,71,22,f +2267,30044,320,2,f +2267,30044,70,6,f +2267,30045,0,8,f +2267,3005,70,1,f +2267,3005,72,5,f +2267,3005,71,6,f +2267,3005,0,20,f +2267,3005,182,8,f +2267,30055,0,2,f +2267,3006,0,6,f +2267,3007,0,1,f +2267,3008,0,2,f +2267,3008,71,1,f +2267,3008,72,3,f +2267,3009,71,2,f +2267,3009,70,2,f +2267,3009,72,3,f +2267,3009,0,2,f +2267,3010,0,4,f +2267,3010,72,9,f +2267,3010,71,13,f +2267,30103,0,2,f +2267,30106,47,1,f +2267,30115,4,1,f +2267,30153,33,5,f +2267,3020,0,2,f +2267,3020,70,8,f +2267,3020,71,2,f +2267,3021,71,2,f +2267,3022,72,2,f +2267,3022,71,2,f +2267,3023,320,6,f +2267,3023,71,9,f +2267,3023,70,8,f +2267,3023,0,16,f +2267,3023,72,4,f +2267,30237a,0,10,f +2267,30237a,0,2,t +2267,30237a,71,12,f +2267,30237a,71,2,t +2267,30238,0,2,f +2267,3024,70,4,f +2267,3024,320,4,f +2267,3024,72,2,f +2267,3024,71,3,f +2267,30273,80,1,f +2267,30274,71,2,f +2267,3031,71,2,f +2267,3031,70,4,f +2267,3031,0,4,f +2267,3031,72,4,f +2267,3034,72,1,f +2267,30374,15,4,f +2267,30374,0,1,f +2267,30374,70,13,f +2267,30383,72,1,t +2267,30383,72,1,f +2267,30385,80,1,f +2267,30385,82,7,f +2267,3039,0,18,f +2267,3039,72,18,f +2267,3040b,182,12,f +2267,3040b,71,3,f +2267,3040b,0,26,f +2267,3040b,72,22,f +2267,3045,72,1,f +2267,3046a,72,11,f +2267,3046a,0,2,f +2267,3048c,0,6,f +2267,3048c,297,13,f +2267,3048c,0,1,t +2267,30503,70,2,f +2267,30503,0,3,f +2267,30553,0,4,f +2267,30553,72,1,f +2267,3062b,272,8,f +2267,3062b,0,2,t +2267,3068b,0,288,f +2267,3068b,15,288,f +2267,3070b,72,12,f +2267,3070b,72,1,t +2267,32018,0,8,f +2267,32064a,71,3,f +2267,32064b,71,1,t +2267,32555,14,4,f +2267,3298,72,32,f +2267,3455,71,2,f +2267,3460,72,2,f +2267,3622,14,1,f +2267,3622,2,1,f +2267,3622,1,1,f +2267,3622,72,9,f +2267,3622,70,8,f +2267,3622,15,1,f +2267,3622,0,3,f +2267,3622,71,8,f +2267,3623,72,6,f +2267,3623,0,11,f +2267,3623,71,4,f +2267,3623,70,2,f +2267,3626bpr0325,14,2,f +2267,3626bpr0348,14,1,f +2267,3626bpr0353,14,2,f +2267,3626bpr0387,14,1,f +2267,3626bpr0389,14,1,f +2267,3626bpr0411,14,1,f +2267,3626bpr0433,14,3,f +2267,3626bpr0493,14,1,f +2267,3626bpr0494,15,7,f +2267,3626bpr0495,14,1,f +2267,3626bpr0499,14,3,f +2267,3626bpr0500,14,1,f +2267,3626bpr0511,378,8,f +2267,3626bpr0520,14,1,f +2267,3659,71,9,f +2267,3659,0,3,f +2267,3660,71,38,f +2267,3660,0,36,f +2267,3665,71,2,f +2267,3665,0,2,f +2267,3666,70,1,f +2267,3666,72,2,f +2267,3666,320,2,f +2267,3676,72,1,f +2267,3678bpb012,0,1,f +2267,3678bpr11,272,1,f +2267,3684,0,2,f +2267,3684,308,2,f +2267,3684,72,2,f +2267,3684,71,4,f +2267,3688,272,1,f +2267,3700,0,1,f +2267,3700,71,1,t +2267,3700,0,1,t +2267,3700,71,1,f +2267,3703,0,4,f +2267,3710,0,2,f +2267,3710,72,1,f +2267,3710,70,11,f +2267,3710,320,2,f +2267,3747b,72,36,f +2267,3749,19,8,f +2267,3794a,0,3,f +2267,3794a,71,2,f +2267,3795,71,1,f +2267,3795,70,1,f +2267,3832,71,1,f +2267,3832,70,1,f +2267,3841,72,1,f +2267,3844,80,2,f +2267,3846pr24,71,1,f +2267,3847,135,2,f +2267,3848,0,5,f +2267,3849,135,2,f +2267,3937,71,2,f +2267,3937,0,2,f +2267,3941,70,8,f +2267,3941,72,8,f +2267,4006,0,1,f +2267,40234,71,1,f +2267,4032a,72,5,f +2267,40379,15,6,f +2267,4070,71,19,f +2267,4070,70,14,f +2267,4070,72,10,f +2267,4070,0,13,f +2267,4070,71,2,t +2267,4070,0,2,t +2267,4095,70,4,f +2267,4186,71,2,f +2267,41879a,70,8,f +2267,42450,0,1,f +2267,4286,71,2,f +2267,4286,0,2,f +2267,4287,71,4,f +2267,43093,1,4,f +2267,4349,72,1,f +2267,43899,72,2,f +2267,43899,71,5,f +2267,44567a,0,1,t +2267,44567a,0,4,f +2267,4460b,71,2,f +2267,4460b,308,8,f +2267,4460b,72,4,f +2267,4477,70,1,f +2267,4489b,70,2,f +2267,4495b,378,8,f +2267,4495b,272,7,f +2267,4495b,82,7,f +2267,4497,135,4,f +2267,4498,70,2,f +2267,4499,70,3,f +2267,4522,0,2,f +2267,4588,72,1,f +2267,4589,36,2,f +2267,4589,34,1,f +2267,4589,42,1,f +2267,4589,182,1,f +2267,4623,71,4,f +2267,4623,0,4,f +2267,4623,71,1,t +2267,4623,0,1,t +2267,4733,72,1,t +2267,4733,72,8,f +2267,4733,0,1,t +2267,4733,0,1,f +2267,47456,0,2,f +2267,48492,272,1,f +2267,48492,297,1,f +2267,48493,0,1,f +2267,48493,132,3,f +2267,48729a,72,5,f +2267,48729a,72,1,t +2267,48729a,0,5,f +2267,48729a,0,1,t +2267,49668,135,16,f +2267,50231,272,2,f +2267,53451,15,23,f +2267,53451,0,1,t +2267,53451,0,2,f +2267,53451,15,7,t +2267,53451,135,6,f +2267,53705,132,2,f +2267,53705,134,16,f +2267,53989,15,6,f +2267,54200,0,36,f +2267,54200,72,2,t +2267,54200,182,12,f +2267,54200,71,4,f +2267,54200,4,4,f +2267,54200,72,60,f +2267,59,334,3,f +2267,59,383,1,f +2267,59226pr02,0,1,f +2267,59227pr02,0,1,f +2267,59227pr03,288,1,f +2267,59228,0,2,f +2267,59229,72,5,f +2267,59230,15,6,f +2267,59231pr0002,72,9,f +2267,59232,135,3,f +2267,59233pat0001,41,4,f +2267,59363,70,1,f +2267,59900,272,4,f +2267,59900,0,2,f +2267,59900,15,2,f +2267,60115,15,3,f +2267,60169,72,4,f +2267,60474,71,12,f +2267,60474,0,10,f +2267,60481,71,1,f +2267,60639c01,28,1,f +2267,60639c02,378,1,f +2267,60640,28,1,f +2267,60640,378,1,f +2267,60641,28,1,f +2267,60641,378,1,f +2267,60642c01,28,1,f +2267,60642c02,378,1,f +2267,6066,71,2,f +2267,60671,378,1,f +2267,60671pr0002,28,1,f +2267,60674,71,2,f +2267,60747,82,2,f +2267,60748,134,3,f +2267,60748,80,3,f +2267,60749,308,3,f +2267,60750,0,2,f +2267,60750,484,3,f +2267,60751,134,3,f +2267,60751,132,3,f +2267,60752,135,1,f +2267,60752,134,3,f +2267,6112,72,6,f +2267,6112,0,6,f +2267,6123,72,2,f +2267,6126a,57,2,t +2267,6126a,57,12,f +2267,6131,0,1,f +2267,6131pr0001,0,1,f +2267,6131pr0002,379,2,f +2267,6132,71,1,f +2267,6132,15,2,f +2267,6134,0,2,f +2267,6134,71,2,f +2267,6141,0,3,f +2267,6141,72,6,f +2267,6141,71,2,f +2267,6141,70,8,f +2267,61482,71,1,f +2267,61639pr0001,288,1,f +2267,61747,320,1,f +2267,61856p40,72,11,f +2267,6212,72,2,f +2267,6222,70,20,f +2267,6232,4,4,f +2267,6233,0,1,f +2267,62408,148,2,f +2267,6266,15,6,f +2267,64567,71,1,f +2267,64567,0,1,f +2267,6636,70,3,f +2267,71015,334,1,f +2267,75998pr0007,15,2,f +2267,852293stor,9999,1,f +2267,970c00,272,1,f +2267,970c00pr0112,4,1,f +2267,970c00pr0114,379,2,f +2267,970x026,71,4,f +2267,970x154,0,2,f +2267,970x199,70,8,f +2267,973c42,0,2,f +2267,973c47,71,1,f +2267,973c50,379,2,f +2267,973pr1212c01,72,3,f +2267,973pr1215c01,272,3,f +2267,973pr1264c01,4,1,f +2267,973pr1318c01,272,1,f +2267,973pr1321c01,72,5,f +2267,973pr1322c01,272,1,f +2267,973pr1349c01,70,5,f +2267,973pr1352c01,72,3,f +2267,973pr1377c01,0,1,f +2268,2412b,0,3,f +2268,2420,72,2,f +2268,2431,320,7,f +2268,2445,0,6,f +2268,2445,15,3,f +2268,2450,320,2,f +2268,2456,19,2,f +2268,2540,71,2,f +2268,2654,15,6,f +2268,2780,0,10,f +2268,2780,0,1,t +2268,2877,72,14,f +2268,3001,72,2,f +2268,3002,71,2,f +2268,3004,15,4,f +2268,3004,320,2,f +2268,3005,320,2,f +2268,3009,15,2,f +2268,3010,15,2,f +2268,3020,71,12,f +2268,3020,15,3,f +2268,3021,15,6,f +2268,3021,72,1,f +2268,3022,72,11,f +2268,3023,15,14,f +2268,3023,72,8,f +2268,3023,14,2,f +2268,3023,320,3,f +2268,3029,0,2,f +2268,3032,15,5,f +2268,30355,320,2,f +2268,30355,0,1,f +2268,30356,320,2,f +2268,30356,0,1,f +2268,30363,0,4,f +2268,3037,71,2,f +2268,30383,72,2,f +2268,3039,0,4,f +2268,3040b,27,3,f +2268,3048c,15,2,f +2268,30553,72,4,f +2268,30565,27,2,f +2268,3068b,15,2,f +2268,3068b,320,1,f +2268,3068b,27,2,f +2268,3068bpr0171,71,1,f +2268,3069b,0,5,f +2268,3069b,15,2,f +2268,3069b,320,11,f +2268,3070b,320,1,f +2268,3070b,320,1,t +2268,3176,71,3,f +2268,32054,0,1,f +2268,32059,72,2,f +2268,32064b,72,1,f +2268,32123b,14,2,f +2268,32123b,14,1,t +2268,3297,15,4,f +2268,3298,15,2,f +2268,3456,320,1,f +2268,3460,15,14,f +2268,3622,15,1,f +2268,3623,15,10,f +2268,3660,320,4,f +2268,3660,0,2,f +2268,3665,15,2,f +2268,3665,320,4,f +2268,3666,71,10,f +2268,3666,320,15,f +2268,3679,71,1,f +2268,3680,1,1,f +2268,3700,0,7,f +2268,3710,27,6,f +2268,3710,15,21,f +2268,3737,0,2,f +2268,3738,72,4,f +2268,3794b,71,2,f +2268,3794b,320,4,f +2268,3794b,15,8,f +2268,3795,72,6,f +2268,3895,0,4,f +2268,3937,0,3,f +2268,3941,41,2,f +2268,4032a,15,2,f +2268,4032a,72,8,f +2268,40490,0,2,f +2268,4070,19,44,f +2268,4150pr0005,15,1,f +2268,41531,15,4,f +2268,4162,15,6,f +2268,4162,320,10,f +2268,41747,27,1,f +2268,41748,27,1,f +2268,41769,15,7,f +2268,41770,15,7,f +2268,42022,15,4,f +2268,42060,15,1,f +2268,42061,15,1,f +2268,4274,71,1,f +2268,4274,71,1,t +2268,4282,15,1,f +2268,4287,15,5,f +2268,43713,15,1,f +2268,43720,15,1,f +2268,43721,15,1,f +2268,43722,15,1,f +2268,43722,27,1,f +2268,43723,15,1,f +2268,43723,27,1,f +2268,44301a,72,17,f +2268,4445,15,2,f +2268,44567a,14,2,f +2268,44568,1,4,f +2268,4460b,15,1,f +2268,44728,15,10,f +2268,44728,4,10,f +2268,45301,15,1,f +2268,47457,4,2,f +2268,47753,320,2,f +2268,47905,72,1,f +2268,48183,15,1,f +2268,50950,320,2,f +2268,50986,40,1,f +2268,51739,72,1,f +2268,52107,0,9,f +2268,54200,15,2,t +2268,54200,15,3,f +2268,54200,71,7,f +2268,54200,71,1,t +2268,54383,27,1,f +2268,54383,0,1,f +2268,54383,320,11,f +2268,54384,320,11,f +2268,54384,0,1,f +2268,54384,27,1,f +2268,56145,71,2,f +2268,59426,72,1,f +2268,6005,15,6,f +2268,60208,72,4,f +2268,60470a,71,4,f +2268,60471,4,10,f +2268,60474,72,1,f +2268,60477,15,8,f +2268,60478,71,8,f +2268,60479,0,2,f +2268,60481,15,4,f +2268,60849,71,1,f +2268,6111,15,4,f +2268,6134,71,3,f +2268,61409,72,2,f +2268,6141,80,11,f +2268,6141,27,3,f +2268,6141,27,1,t +2268,6141,80,2,t +2268,6141,47,1,f +2268,6141,33,1,t +2268,6141,47,1,t +2268,6141,33,1,f +2268,6153b,15,2,f +2268,6180,320,4,f +2268,6232,72,5,f +2268,63864,15,4,f +2268,6541,72,1,f +2268,6576,71,1,f +2268,6587,28,1,f +2268,6632,0,2,f +2268,6636,0,2,f +2268,6636,15,5,f +2268,85984,15,2,f +2268,85984,0,2,f +2268,86500pr0001a,320,1,f +2268,87083,72,2,f +2268,87580,15,4,f +2268,88293,15,2,f +2268,90498,0,1,f +2268,91602,9999,1,t +2272,3626bpr0789,78,1,f +2272,95220pr0001,0,1,f +2272,970c00pr0218,70,1,f +2272,973pr1771c01,272,1,f +2274,11153,72,2,f +2274,12825,72,5,f +2274,13812pr0001,148,2,f +2274,13813pr0001,148,1,f +2274,13952,148,2,f +2274,13986pr0001,148,1,f +2274,14769,0,8,f +2274,15207,72,4,f +2274,2412b,80,10,f +2274,2412b,19,2,f +2274,2431,19,2,f +2274,2431,72,2,f +2274,2445,72,1,f +2274,2460,71,4,f +2274,2540,0,1,f +2274,2569,0,3,t +2274,2569,0,4,f +2274,2780,0,1,t +2274,2780,0,6,f +2274,2877,0,4,f +2274,2926,0,2,f +2274,3002,2,1,f +2274,3004,27,2,f +2274,3008,72,2,f +2274,3009,27,2,f +2274,3010,2,3,f +2274,30136,0,12,f +2274,30149,19,1,f +2274,30165,0,1,f +2274,3020,19,1,f +2274,3021,0,1,f +2274,3021,19,5,f +2274,3022,71,7,f +2274,3023,71,4,f +2274,3030,28,1,f +2274,30357,72,4,f +2274,30361c,0,2,f +2274,30383,71,2,f +2274,3039,71,2,f +2274,30414,71,3,f +2274,30553,72,2,f +2274,30565,28,4,f +2274,30592,71,1,f +2274,3062b,0,11,f +2274,3062b,72,4,f +2274,3069bpr0070,0,1,f +2274,3176,72,2,f +2274,32001,15,2,f +2274,32013,72,2,f +2274,32028,19,4,f +2274,32054,0,1,f +2274,32059,72,4,f +2274,32062,4,1,f +2274,32523,14,1,f +2274,3298,72,2,f +2274,3622,72,2,f +2274,3623,72,4,f +2274,3626bpr0472,78,1,f +2274,3626cpr0902,78,1,f +2274,3626cpr0903,78,1,f +2274,3626cpr1215,78,1,f +2274,3626cpr1767,78,1,f +2274,3666,72,2,f +2274,3676,72,2,f +2274,3700,0,3,f +2274,3701,0,1,f +2274,3710,0,4,f +2274,3794b,72,4,f +2274,3795,0,1,f +2274,3829c01,71,1,f +2274,3895,71,4,f +2274,3937,15,2,f +2274,3938,71,2,f +2274,3941,0,2,f +2274,3941,72,5,f +2274,3956,71,2,f +2274,3957b,0,1,t +2274,3957b,0,2,f +2274,3958,71,2,f +2274,40244,0,1,f +2274,4032a,2,6,f +2274,4070,1,12,f +2274,4070,0,2,f +2274,41764,71,2,f +2274,41765,71,2,f +2274,4274,1,1,f +2274,4274,1,1,t +2274,4286,2,2,f +2274,43093,1,4,f +2274,43712,72,6,f +2274,43898,72,1,f +2274,44126,0,2,f +2274,44728,19,2,f +2274,4477,72,2,f +2274,47455,0,2,f +2274,47457,14,2,f +2274,47457,72,2,f +2274,47458,0,8,f +2274,48169,72,2,f +2274,48171,72,2,f +2274,4865a,40,2,f +2274,4865a,19,4,f +2274,4865b,2,2,f +2274,48729b,0,1,t +2274,48729b,0,1,f +2274,50231,0,2,f +2274,50231,4,1,f +2274,54200,0,2,t +2274,54200,34,10,f +2274,54200,0,5,f +2274,54200,34,2,t +2274,56890,0,4,f +2274,57028c01,71,2,f +2274,57796,72,2,f +2274,59443,71,1,f +2274,59900,2,2,f +2274,59900,1,2,f +2274,6003,72,4,f +2274,6005,72,2,f +2274,6014b,71,4,f +2274,60208,72,1,f +2274,60897,72,4,f +2274,61184,71,2,f +2274,61409,0,2,f +2274,6141,34,1,t +2274,6141,182,1,t +2274,6141,36,1,t +2274,6141,47,1,t +2274,6141,36,2,f +2274,6141,182,4,f +2274,6141,80,5,f +2274,6141,80,2,t +2274,6141,47,4,f +2274,6141,34,2,f +2274,6179,19,1,f +2274,6231,19,4,f +2274,62810,308,1,f +2274,6558,1,2,f +2274,6587,28,2,f +2274,73983,2,8,f +2274,85984,28,5,f +2274,87079,71,4,f +2274,87752,72,2,f +2274,92081,0,1,f +2274,92280,0,6,f +2274,92946,72,6,f +2274,93273,72,1,f +2274,95188,72,4,f +2274,95199,72,1,f +2274,970c00,28,1,f +2274,970c00pr0539,272,1,f +2274,970c00pr0539,0,3,f +2274,973pr2374c01,272,1,f +2274,973pr2375c01,0,1,f +2274,973pr2376c01,28,1,f +2274,973pr2377c01,0,1,f +2274,973pr2378c01,0,1,f +2274,98102,47,1,f +2274,98385,0,1,f +2274,98726,0,1,f +2274,99780,72,6,f +2275,3010,4,50,f +2276,276c01,2,1,f +2276,4094a,14,1,f +2276,4095,14,1,f +2276,fab8c,9999,1,f +2277,2540,15,3,f +2277,3069b,33,1,f +2277,44661,15,1,f +2277,44676,15,2,f +2277,54200,40,1,t +2277,54200,40,1,f +2277,6019,15,1,f +2279,73092,0,6,f +2279,74746,72,2,f +2279,74747,72,16,f +2280,3038,1,4,f +2280,3040a,1,6,f +2280,3042,1,1,f +2280,3044a,1,3,f +2280,3045,1,6,f +2280,3046a,1,6,f +2280,3048a,1,4,f +2280,3049b,1,5,f +2280,962,1,4,f +2282,3626bpb0438,14,1,f +2282,87999,0,1,f +2282,88001,70,1,f +2282,88646,0,1,f +2282,970c00pr0147,14,1,f +2282,973pr1546c01,19,1,f +2284,2694,47,1,f +2284,2695,15,5,f +2284,2696,0,5,f +2284,298c02,7,1,f +2284,298c02,0,2,f +2284,3001,0,1,f +2284,3003,0,3,f +2284,3004,14,10,f +2284,3004,0,4,f +2284,3005,0,2,f +2284,3005,14,2,f +2284,3009,14,3,f +2284,3009,0,5,f +2284,3010,14,1,f +2284,3020,14,3,f +2284,3020,0,3,f +2284,3021,14,2,f +2284,3021,0,1,f +2284,3022,14,3,f +2284,3023,7,2,f +2284,3023,0,4,f +2284,3023,14,8,f +2284,3024,14,3,f +2284,3024,7,2,f +2284,3024,0,3,f +2284,3034,0,2,f +2284,3034,7,3,f +2284,3034,14,2,f +2284,3035,14,1,f +2284,3037,14,2,f +2284,3039,14,4,f +2284,3040b,0,1,f +2284,3040b,14,8,f +2284,3062b,0,4,f +2284,3062b,4,1,f +2284,3068b,0,2,f +2284,3127,7,1,f +2284,3460,7,4,f +2284,3460,14,2,f +2284,3622,14,2,f +2284,3622,0,2,f +2284,3623,4,4,f +2284,3623,7,1,f +2284,3623,0,1,f +2284,3623,14,4,f +2284,3647,7,1,f +2284,3660,0,4,f +2284,3660,14,8,f +2284,3660,7,2,f +2284,3665,14,2,f +2284,3665,0,2,f +2284,3666,4,1,f +2284,3666,0,3,f +2284,3666,14,3,f +2284,3673,7,7,f +2284,3700,14,3,f +2284,3700,0,2,f +2284,3702,0,2,f +2284,3703,0,2,f +2284,3706,0,1,f +2284,3708,0,1,f +2284,3710,7,1,f +2284,3710,0,7,f +2284,3710,14,3,f +2284,3713,7,5,f +2284,3743,7,1,f +2284,3749,7,2,f +2284,3794a,7,3,f +2284,3794a,0,2,f +2284,3795,4,4,f +2284,3795,7,2,f +2284,3894,0,1,f +2284,3937,0,3,f +2284,3938,0,3,f +2284,3957a,7,1,f +2284,3958,0,2,f +2284,3959,7,2,f +2284,3962a,0,1,f +2284,4019,7,1,f +2284,4032a,0,2,f +2284,4070,14,4,f +2284,4081a,14,2,f +2284,4081a,7,2,f +2284,4081a,0,2,f +2284,4085b,14,3,f +2284,4085b,7,1,f +2284,4150,15,2,f +2284,4175,7,1,f +2284,4185,7,2,f +2284,4208,0,1,f +2284,4209,14,1,f +2284,4261,7,2,f +2284,4274,7,4,f +2284,4274,7,1,t +2284,4275a,4,2,f +2284,4275b,0,4,f +2284,4276a,4,2,f +2284,4276b,0,2,f +2284,4287,14,2,f +2284,4349,7,2,f +2284,4442,7,3,f +2284,4477,0,1,f +2284,4477,14,1,f +2284,4531,0,2,f +2284,4599a,4,1,f +2284,4623,14,2,f +2284,4873,0,1,f +2284,5510stk01,9999,1,t +2284,556,7,1,f +2284,56823c75,0,1,f +2284,6141,46,1,t +2284,6141,36,4,f +2284,6141,47,2,f +2284,6141,46,4,f +2284,6141,36,1,t +2284,6141,47,2,t +2285,18041,297,2,f +2285,2530,72,1,f +2285,30173b,179,1,f +2285,3626cpr1570,179,1,f +2285,64567,0,2,f +2285,88290,308,1,f +2285,93058b,297,4,f +2285,970c00pr0777,71,1,f +2285,973pr2858c01,71,1,f +2285,98133,179,1,f +2286,3020,1,4,f +2286,3021,1,4,f +2286,3022,1,4,f +2286,3023,1,4,f +2286,3029,1,2,f +2286,3031,1,2,f +2286,3032,1,2,f +2286,3034,1,2,f +2286,3035,1,2,f +2286,3036,1,2,f +2286,3460,1,2,f +2286,3623,1,2,f +2286,3666,1,2,f +2286,3710,1,2,f +2286,3795,1,2,f +2286,3832,1,2,f +2286,4477,1,2,f +2287,10538,9999,1,t +2287,2357,71,2,f +2287,2412b,0,2,f +2287,2431,288,4,f +2287,2432,15,1,f +2287,2436,71,2,f +2287,2444,15,2,f +2287,2445,0,3,f +2287,2450,288,2,f +2287,2450,0,2,f +2287,2654,72,3,f +2287,2780,0,1,t +2287,2780,0,2,f +2287,2817,71,2,f +2287,3004,288,2,f +2287,3007,71,1,f +2287,3009,72,2,f +2287,3020,288,5,f +2287,3020,71,6,f +2287,3021,71,7,f +2287,3022,72,5,f +2287,3022,14,1,f +2287,3023,72,11,f +2287,3023,4,3,f +2287,3034,0,1,f +2287,3034,71,1,f +2287,30355,15,1,f +2287,30356,15,1,f +2287,30361pr0012,2,1,f +2287,30362,2,2,f +2287,30367cpr0023,179,1,f +2287,30374,35,2,f +2287,30383,72,3,f +2287,3039pr0014,0,1,f +2287,3040b,288,4,f +2287,3044c,72,1,f +2287,3048c,288,1,f +2287,30526,71,1,f +2287,30554b,0,3,f +2287,30565,288,2,f +2287,3062b,41,2,f +2287,3068b,0,2,f +2287,3068b,15,1,f +2287,3069b,15,2,f +2287,32000,0,1,f +2287,32028,0,2,f +2287,32523,72,2,f +2287,3622,71,2,f +2287,3626bpr0786,78,1,f +2287,3626cpr0997,78,1,f +2287,3647,72,2,t +2287,3647,72,2,f +2287,3660,71,1,f +2287,3666,288,1,f +2287,3710,71,10,f +2287,3747b,71,1,f +2287,3794a,297,2,f +2287,3795,72,5,f +2287,3832,4,1,f +2287,4150,15,1,f +2287,4162,72,2,f +2287,41769,288,2,f +2287,41770,288,2,f +2287,41879a,0,1,f +2287,4286,15,2,f +2287,43719,15,1,f +2287,44567a,71,8,f +2287,44728,0,2,f +2287,45301,288,1,f +2287,47397,288,1,f +2287,47398,288,1,f +2287,47755,72,4,f +2287,4868b,71,2,f +2287,50304,72,1,f +2287,50305,72,1,f +2287,50950,288,4,f +2287,54200,288,1,t +2287,54200,288,2,f +2287,54383,15,1,f +2287,54383,288,2,f +2287,54384,288,2,f +2287,54384,15,1,f +2287,59900,72,4,f +2287,60471,0,11,f +2287,6081,288,4,f +2287,6091,297,4,f +2287,61184,71,4,f +2287,6141,33,2,t +2287,6141,33,2,f +2287,6179,15,2,f +2287,63868,71,1,f +2287,64567,80,2,f +2287,6587,28,2,f +2287,72454,72,1,f +2287,85984,71,3,f +2287,85984,15,4,f +2287,87079,15,1,f +2287,87087,0,2,f +2287,87752,40,1,f +2287,90194,288,1,f +2287,92280,15,2,f +2287,92744pr0001,78,1,f +2287,93606,71,2,f +2287,970c00,308,1,f +2287,973pr1746c01,308,1,f +2287,973pr2082c01,308,1,f +2287,98106pr0001,78,1,f +2287,99206,71,1,f +2287,99207,71,4,f +2287,99780,72,1,f +2288,10201,4,4,f +2288,10247,4,1,f +2288,11098,41,1,f +2288,11103,179,1,f +2288,11106,179,1,f +2288,11127,182,2,f +2288,11127,41,1,f +2288,11153,0,2,f +2288,11153,320,2,f +2288,11211,4,2,f +2288,11458,72,4,f +2288,11476,71,1,f +2288,11477,15,2,f +2288,11610,0,1,f +2288,12618,179,1,f +2288,13361pr0005,0,1,f +2288,14769,0,2,f +2288,14769pr1013,15,3,f +2288,15068,0,2,f +2288,15068,25,1,f +2288,15083pr0004,71,1,f +2288,15084pr0004,0,1,f +2288,15303,182,3,f +2288,15400,72,2,f +2288,15461,0,4,f +2288,15462,28,2,f +2288,15712,297,2,f +2288,16768pat0001,4,1,f +2288,16770,15,6,f +2288,16770,41,2,f +2288,16968,71,1,f +2288,18394pat0001,36,2,f +2288,18398pr0002,297,1,f +2288,18677,71,2,f +2288,2412b,0,2,f +2288,2419,0,1,f +2288,2432,72,1,f +2288,2450,320,2,f +2288,2458,4,2,f +2288,2540,25,2,f +2288,2654,182,2,f +2288,2780,0,2,f +2288,2921,71,2,f +2288,30031,0,1,f +2288,3004,0,3,f +2288,3004,72,2,f +2288,3005,0,2,f +2288,3020,25,2,f +2288,3020,0,3,f +2288,3020,4,4,f +2288,3021,4,1,f +2288,3022,4,1,f +2288,3022,0,3,f +2288,3022,25,4,f +2288,3023,320,2,f +2288,3023,25,10,f +2288,3024,320,6,f +2288,3031,0,1,f +2288,3032,15,1,f +2288,3039,15,1,f +2288,3040b,71,1,f +2288,30526,72,2,f +2288,32064a,15,1,f +2288,32474,0,1,f +2288,32526,0,2,f +2288,32555,0,2,f +2288,3626cpr1206,0,1,f +2288,3626cpr1437,71,1,f +2288,3626cpr1576,0,1,f +2288,3648b,72,1,f +2288,3660,0,2,f +2288,3665,25,2,f +2288,3666,25,2,f +2288,3666,320,1,f +2288,3700,72,4,f +2288,3700,71,1,f +2288,3700,0,2,f +2288,3701,72,1,f +2288,3705,0,1,f +2288,3706,0,1,f +2288,3710,72,2,f +2288,3710,320,1,f +2288,3713,4,2,f +2288,3747a,25,2,f +2288,3747a,0,1,f +2288,3795,25,1,f +2288,3795,0,1,f +2288,4032a,25,2,f +2288,41530,25,2,f +2288,41669,25,2,f +2288,41669,0,2,f +2288,41769,320,1,f +2288,41770,320,1,f +2288,43093,1,5,f +2288,43710,0,1,f +2288,43711,0,1,f +2288,43722,25,1,f +2288,43723,25,1,f +2288,45677,0,1,f +2288,45677pr0002,25,1,f +2288,47456,0,2,f +2288,47456,15,1,f +2288,4865b,41,1,f +2288,4871,4,1,f +2288,50304,25,1,f +2288,50305,25,1,f +2288,51739,320,2,f +2288,51739,15,1,f +2288,51739,0,1,f +2288,52501,0,2,f +2288,53451,179,1,f +2288,53451,15,4,f +2288,53454,148,1,f +2288,53454,41,1,f +2288,54200,297,1,f +2288,54200,0,5,f +2288,54200,320,2,f +2288,54200,25,4,f +2288,54383,320,1,f +2288,54384,320,1,f +2288,56145,71,2,f +2288,58176,182,2,f +2288,59426,72,2,f +2288,59443,4,4,f +2288,59900,182,1,f +2288,60478,71,2,f +2288,60481,71,1,f +2288,60483,0,2,f +2288,60752,179,1,f +2288,60897,71,2,f +2288,6091,0,4,f +2288,61184,71,2,f +2288,61252,0,2,f +2288,61252,15,2,f +2288,61409,0,4,f +2288,61409,25,2,f +2288,6141,41,2,f +2288,6141,46,2,f +2288,6141,33,2,f +2288,61481,0,2,f +2288,6231,72,1,f +2288,62462,71,1,f +2288,63868,0,1,f +2288,64567,0,1,f +2288,64644,297,1,f +2288,64647,182,1,f +2288,64712,179,2,f +2288,64713,179,1,f +2288,85959pat0003,36,3,f +2288,85984,0,2,f +2288,87083,72,2,f +2288,87580,72,1,f +2288,90194,320,1,f +2288,92593,0,2,f +2288,92690,71,1,f +2288,92692,0,2,f +2288,92946,0,5,f +2288,93273,0,1,f +2288,970c00pr0663,4,1,f +2288,970c00pr0675,71,1,f +2288,970c00pr0769,0,1,f +2288,973pr2671c01,4,1,f +2288,973pr2688c01,71,1,f +2288,973pr2866c01,0,1,f +2288,98138,41,1,f +2288,98283,71,1,f +2288,98313,179,2,f +2288,99781,0,2,f +2288,99781,15,1,f +2288,99781,71,2,f +2289,132a,7,2,f +2289,3001a,4,4,f +2289,3001a,47,1,f +2289,3002a,4,1,f +2289,3003,4,1,f +2289,3020,7,2,f +2289,3020,4,6,f +2289,3021,4,2,f +2289,3022,4,3,f +2289,3023,4,2,f +2289,3023,0,2,f +2289,3024,4,2,f +2289,3029,7,4,f +2289,3040a,4,1,f +2289,3062a,4,6,f +2289,7039,4,3,f +2289,7049b,15,2,f +2290,32062,0,6,f +2290,32173,8,2,f +2290,32174,2,10,f +2290,32174,57,1,f +2290,32270,7,1,f +2290,3737,0,1,f +2290,3749,19,4,f +2290,44135,8,1,f +2290,44136,8,1,f +2290,44138,2,2,f +2290,44139,8,1,f +2290,44140,2,1,f +2290,44144,179,1,f +2290,44148,8,2,f +2290,44247,8,1,f +2290,44807,2,1,f +2290,44818,179,2,f +2290,4519,7,3,f +2290,45749,8,2,f +2290,6538b,8,1,f +2290,kraataund,81,1,f +2291,2847c02,0,1,f +2292,3034,15,9,f +2292,3228a,1,16,f +2293,2412b,0,5,f +2293,2412b,72,1,f +2293,2432,1,2,f +2293,2436,15,1,f +2293,2445,72,1,f +2293,2780,0,1,f +2293,2780,0,1,t +2293,3001,72,1,f +2293,3005,25,2,f +2293,3009,25,1,f +2293,30162,72,2,f +2293,3020,71,2,f +2293,3021,1,2,f +2293,3022,2,2,f +2293,3023,19,4,f +2293,3023,72,2,f +2293,3023,182,2,f +2293,30237a,25,5,f +2293,3032,19,1,f +2293,3034,72,4,f +2293,30374,71,2,f +2293,30414,1,2,f +2293,3062b,72,25,f +2293,3066,40,1,f +2293,3068b,71,6,f +2293,3069b,71,3,f +2293,3069b,182,2,f +2293,3070b,36,6,f +2293,3070b,36,2,t +2293,32000,71,2,f +2293,3464,15,1,f +2293,3626bpr0388,14,1,f +2293,3626bpr0891,14,1,f +2293,3633,0,4,f +2293,3660,25,2,f +2293,3666,25,3,f +2293,3710,25,4,f +2293,3710,71,2,f +2293,3710,0,3,f +2293,3794b,71,6,f +2293,3821,25,1,f +2293,3822,25,1,f +2293,3829c01,71,1,f +2293,3832,19,1,f +2293,3833,4,1,f +2293,3836,70,1,f +2293,3837,0,1,f +2293,3899,14,1,f +2293,3958,72,1,f +2293,40620,71,2,f +2293,4162,71,4,f +2293,4176,40,1,f +2293,4216,71,2,f +2293,44301a,72,2,f +2293,44302a,0,2,f +2293,4488,71,6,f +2293,50745,72,6,f +2293,52031,25,1,f +2293,52107,4,2,f +2293,54200,72,2,f +2293,54200,47,1,t +2293,54200,72,1,t +2293,54200,47,2,f +2293,58176,182,2,f +2293,59895,0,1,f +2293,6014b,71,6,f +2293,6079,15,1,f +2293,6141,46,4,f +2293,6141,14,2,f +2293,6141,14,1,t +2293,6141,46,1,t +2293,6636,25,1,f +2293,6636,71,4,f +2293,73983,71,2,f +2293,85984,25,2,f +2293,85984,0,3,f +2293,86035,0,1,f +2293,87079,25,1,f +2293,87079,0,4,f +2293,87609,25,2,f +2293,87609,15,1,f +2293,87697,0,6,f +2293,92280,71,2,f +2293,92593,72,3,f +2293,970c00,1,2,f +2293,973pr1244c01,73,1,f +2293,973pr1470c01,1,1,f +2293,98280,71,2,f +2293,98285,71,1,f +2293,98286,71,1,f +2293,98287,71,6,f +2293,98288,4,1,f +2294,3001,14,8,f +2294,3001,15,8,f +2294,3001,0,2,f +2294,3001,1,8,f +2294,3001,4,8,f +2294,3002,15,6,f +2294,3002,0,2,f +2294,3002,4,6,f +2294,3002,1,2,f +2294,3002,14,4,f +2294,3003,14,4,f +2294,3003,15,6,f +2294,3003,0,2,f +2294,3003,4,6,f +2294,3003,1,6,f +2294,3004,47,8,f +2294,3004,1,30,f +2294,3004,4,34,f +2294,3004,0,22,f +2294,3004,15,34,f +2294,3004,14,32,f +2294,3005,14,20,f +2294,3005,1,20,f +2294,3005,15,22,f +2294,3005,4,22,f +2294,3005,0,16,f +2294,3005,47,2,f +2294,3008,4,2,f +2294,3008,1,2,f +2294,3008,15,2,f +2294,3009,1,4,f +2294,3009,14,4,f +2294,3009,4,6,f +2294,3009,15,6,f +2294,3010,14,9,f +2294,3010,0,2,f +2294,3010,15,14,f +2294,3010,4,16,f +2294,3010,47,3,f +2294,3010,1,8,f +2294,3020,1,2,f +2294,3020,4,2,f +2294,3021,1,2,f +2294,3021,4,2,f +2294,3022,4,2,f +2294,3030,1,1,f +2294,3031,4,1,f +2294,3032,1,1,f +2294,3034,1,4,f +2294,3034,4,2,f +2294,3035,4,1,f +2294,3039,14,4,f +2294,3039,47,2,f +2294,3039,4,6,f +2294,3081cc01,14,4,f +2294,3137c01,0,2,f +2294,3149c01,4,1,f +2294,3183c,4,1,f +2294,3184,4,1,f +2294,3297,4,6,f +2294,3298,4,6,f +2294,3299,4,3,f +2294,3300,4,2,f +2294,3307,4,2,f +2294,3403c01,4,1,f +2294,3460,4,2,f +2294,3471,2,1,f +2294,3483,0,4,f +2294,3581,4,6,f +2294,3582,14,4,f +2294,3622,4,12,f +2294,3622,0,5,f +2294,3622,14,10,f +2294,3622,1,11,f +2294,3622,15,12,f +2294,3625,0,1,f +2294,3633,14,4,f +2294,3641,0,4,f +2294,3644,14,2,f +2294,3659,4,2,f +2294,3660,4,6,f +2294,3660,14,4,f +2294,3710,1,4,f +2294,3710,4,4,f +2294,3741,2,4,f +2294,3742,4,1,t +2294,3742,14,3,f +2294,3742,15,3,f +2294,3742,14,1,t +2294,3742,15,1,t +2294,3742,4,3,f +2294,3747b,4,2,f +2294,3823,47,1,f +2294,3832,1,2,f +2294,3853,14,4,f +2294,3854,4,8,f +2294,3856,2,8,f +2294,3857,2,1,f +2294,3861b,14,2,f +2294,3901,6,1,f +2294,4207,14,1,f +2294,7039,4,4,f +2294,7049b,0,2,f +2294,970c00,15,1,f +2294,970c00,4,1,f +2294,973c07,1,1,f +2294,973c18,0,1,f +2297,2439,8,1,f +2297,2445,4,1,f +2297,2484c01,4,2,f +2297,2920,0,1,f +2297,2926,4,2,f +2297,2927,0,4,f +2297,298c02,14,1,t +2297,298c02,14,1,f +2297,3010,14,1,f +2297,3020,4,2,f +2297,3021,4,1,f +2297,3022,14,2,f +2297,3022,0,1,f +2297,3022,4,2,f +2297,3023,14,1,f +2297,3024,14,2,f +2297,3037,14,1,f +2297,3062b,7,2,f +2297,3176,4,2,f +2297,3626apr0001,14,1,f +2297,3710,14,2,f +2297,3821,14,1,f +2297,3822,14,1,f +2297,3823,47,1,f +2297,3829c01,14,1,f +2297,3836,6,1,f +2297,3837,8,1,f +2297,3901,6,1,f +2297,3937,4,2,f +2297,4081b,7,2,f +2297,4081b,4,2,f +2297,4085c,14,2,f +2297,4211,14,2,f +2297,4213,14,1,f +2297,4214,14,1,f +2297,4740,8,1,f +2297,4865a,14,5,f +2297,6014a,14,4,f +2297,6015,0,4,f +2297,6134,4,2,f +2297,6141,47,2,f +2297,6141,46,2,f +2297,6141,7,2,f +2297,6141,47,1,t +2297,6141,7,1,t +2297,6141,46,1,t +2297,73092,0,1,f +2297,970c00,1,1,f +2297,973p19c01,1,1,f +2300,11090,297,2,f +2300,15712,297,2,f +2300,30173b,297,1,f +2300,3023,4,4,f +2300,3070b,4,1,f +2300,4070,320,1,f +2300,4595,0,1,f +2300,4697b,0,1,f +2300,4735,71,1,f +2300,49668,179,2,f +2300,58176,182,1,f +2300,60849,0,2,f +2300,61409,4,1,f +2300,6141,179,6,f +2300,6266,0,2,f +2300,64567,71,1,f +2300,98138,179,1,f +2300,98138,297,1,f +2300,98139,297,1,f +2301,10197,72,4,f +2301,12825,72,4,f +2301,13547,0,2,f +2301,2412b,72,2,f +2301,2431,72,2,f +2301,2458,14,1,f +2301,2654,47,1,f +2301,3001,72,1,f +2301,3022,0,2,f +2301,3022,27,1,f +2301,3023,0,1,f +2301,3023,27,6,f +2301,30552,72,2,f +2301,30553,71,2,f +2301,3062b,72,2,f +2301,3069b,36,1,f +2301,32000,71,2,f +2301,32013,71,2,f +2301,32039,0,4,f +2301,32062,4,3,f +2301,32064b,72,2,f +2301,32073,71,1,f +2301,32123b,14,1,t +2301,32123b,71,11,f +2301,32123b,71,1,t +2301,32123b,14,2,f +2301,32192,72,2,f +2301,32557,71,1,f +2301,3623,27,2,f +2301,3660,27,1,f +2301,3706,0,2,f +2301,3710,72,2,f +2301,3713,4,1,t +2301,3713,4,3,f +2301,3795,27,1,f +2301,3957a,71,2,f +2301,4032a,15,1,f +2301,4150,27,1,f +2301,41678,71,1,f +2301,4274,1,2,f +2301,4274,1,1,t +2301,44294,71,2,f +2301,44309,0,1,f +2301,44728,0,2,f +2301,4519,71,4,f +2301,4740,71,2,f +2301,47753,27,1,f +2301,48336,0,3,f +2301,50950,27,2,f +2301,56145,71,1,f +2301,56898,0,1,f +2301,56904,71,1,f +2301,59443,0,2,f +2301,6141,57,1,t +2301,6141,57,4,f +2301,6141,72,1,t +2301,6141,72,6,f +2301,62361,27,2,f +2301,6587,28,1,f +2301,6632,71,2,f +2301,85943,72,1,f +2301,85984,0,1,f +2301,87083,72,1,f +2301,90194,0,1,f +2301,92907,0,1,f +2301,99780,72,2,f +2301,99781,71,3,f +2302,32013,0,1,f +2302,32039,71,1,f +2302,32062,4,4,f +2302,32174,72,1,f +2302,32476,0,3,f +2302,32580,179,2,f +2302,41668,0,2,f +2302,4274,1,2,f +2302,53549,0,1,f +2302,54271,72,1,f +2302,54821,46,1,f +2302,57563,135,1,f +2302,57565,135,2,f +2302,58176,36,2,f +2302,59426,72,1,f +2304,48379c01,1,1,f +2304,x1894px2,89,1,f +2308,3062c,47,40,f +2308,3062c,14,20,f +2308,3062c,1,20,f +2308,3062c,0,40,f +2308,3062c,4,20,f +2308,3062c,15,20,f +2309,3004,8,1,f +2309,30176,2,1,f +2309,3031,19,1,f +2309,30464,4,1,f +2310,11211,19,2,f +2310,11477,1,2,f +2310,15573,70,1,f +2310,15573,15,1,f +2310,2877,19,1,f +2310,3021,4,1,f +2310,3021,0,1,f +2310,3021,15,6,f +2310,3022,15,2,f +2310,3023,15,2,f +2310,3023,1,2,f +2310,3024,15,4,f +2310,3062b,15,2,f +2310,32028,4,1,f +2310,3622,15,1,f +2310,3665,1,1,f +2310,3710,4,1,f +2310,3957a,70,1,f +2310,59230,0,2,f +2310,59900,25,1,f +2310,60478,15,2,f +2310,6091,1,2,f +2310,6091,4,1,f +2310,6141,0,2,f +2310,6141,1,1,f +2310,87087,71,2,f +2310,87087,15,7,f +2310,93273,15,6,f +2310,98138pr0008,15,2,f +2311,87837,378,2,f +2311,87839,378,4,f +2311,87840,378,4,f +2311,87841,378,2,f +2311,88519,4,1,f +2311,88964,288,4,f +2311,88964,4,1,t +2311,88964,4,4,f +2311,88964,288,1,t +2311,89469,378,1,f +2313,2343,0,4,f +2313,2412b,19,3,f +2313,2412b,19,1,t +2313,2432,70,3,f +2313,2444,15,1,f +2313,2444,71,4,f +2313,2454a,19,2,f +2313,2460,71,2,f +2313,2460,72,3,f +2313,2476a,71,2,f +2313,2540,72,2,f +2313,2555,0,2,f +2313,2566,0,1,f +2313,2569,72,1,f +2313,2569,0,1,f +2313,2780,0,5,f +2313,2780,0,2,t +2313,2877,15,1,f +2313,298c05,0,1,t +2313,298c05,0,2,f +2313,3003,72,2,f +2313,3003,15,2,f +2313,30162,72,1,t +2313,30162,72,11,f +2313,3021,4,1,f +2313,3021,19,5,f +2313,3022,72,9,f +2313,3023,0,6,f +2313,30292,40,1,f +2313,30324,0,4,f +2313,3034,72,1,f +2313,3035,72,1,f +2313,30365,72,8,f +2313,3038,72,2,f +2313,30383,72,1,f +2313,30383,72,1,t +2313,30387,71,4,f +2313,3039,25,4,f +2313,3039,72,1,f +2313,3039,15,1,f +2313,30407,47,2,f +2313,3040b,72,2,f +2313,3046a,72,2,f +2313,3049b,0,2,f +2313,30552,72,5,f +2313,30553,71,1,f +2313,30602,15,2,f +2313,3062b,27,2,f +2313,3068b,15,1,f +2313,3069b,71,2,f +2313,32000,15,1,f +2313,32001,71,2,f +2313,32013,0,1,t +2313,32013,0,6,f +2313,32014,0,3,f +2313,32018,0,2,f +2313,32039,71,1,f +2313,32054,0,1,f +2313,32060,71,1,f +2313,32062,4,9,f +2313,32064b,0,6,f +2313,32074c01,72,1,f +2313,32123b,71,4,f +2313,32123b,71,2,t +2313,32184,0,6,f +2313,32187,71,3,f +2313,32474,0,1,t +2313,32474,27,1,f +2313,32474,0,1,f +2313,3460,0,2,f +2313,3626b,71,2,f +2313,3626bpr0452,14,1,f +2313,3626bpr0453,14,1,f +2313,3666,72,3,f +2313,3700,72,9,f +2313,3705,0,1,f +2313,3706,0,6,f +2313,3708,0,5,f +2313,3709,72,9,f +2313,3713,71,1,t +2313,3713,71,2,f +2313,3738,0,5,f +2313,3749,19,4,f +2313,3832,0,4,f +2313,3941,72,2,f +2313,3956,71,2,f +2313,3958,0,2,f +2313,40244,0,7,f +2313,4079,70,1,f +2313,40902,0,3,f +2313,41532,0,9,f +2313,4162,72,4,f +2313,41747,15,1,f +2313,41748,15,1,f +2313,41854,73,2,f +2313,41862,0,2,f +2313,42022,0,2,f +2313,424,0,1,t +2313,424,0,2,f +2313,4274,71,1,t +2313,4274,71,6,f +2313,43093,1,13,f +2313,43558,27,2,f +2313,43857,0,4,f +2313,43857,0,4,t +2313,44302a,0,1,t +2313,44302a,0,1,f +2313,44302a,71,1,f +2313,44567a,25,1,f +2313,4519,71,2,f +2313,45301,25,4,f +2313,4588,72,4,f +2313,4589,320,6,f +2313,4589,72,2,f +2313,4590,72,1,f +2313,45951,15,2,f +2313,4598,19,1,f +2313,4623,0,1,f +2313,47757,320,2,f +2313,47759,320,2,f +2313,47905,0,2,f +2313,48336,0,1,f +2313,4868b,71,1,f +2313,48729a,72,6,f +2313,48933,72,1,f +2313,50943,71,1,f +2313,53981,0,1,f +2313,53982,4,1,f +2313,53984,134,6,f +2313,53988,134,3,f +2313,53989,135,4,f +2313,53989,134,6,f +2313,54175,320,2,f +2313,6019,72,4,f +2313,6070,40,1,f +2313,6141,36,5,f +2313,6141,1,2,f +2313,6141,36,1,t +2313,6141,1,1,t +2313,6178,72,2,f +2313,6536,0,4,f +2313,6538b,71,9,f +2313,6538b,72,1,f +2313,6558,0,4,f +2313,6587,72,2,f +2313,6636,19,4,f +2313,76110c01,71,1,f +2313,78c11,179,2,f +2313,970x026,15,1,f +2313,970x199,25,1,f +2313,973pr1232c01,15,1,f +2313,973pr1247c01,25,1,f +2314,2446,4,1,f +2314,2447,0,1,f +2314,3039,4,1,f +2314,3062b,8,2,f +2314,3626bpx100,14,1,f +2314,3795,0,1,f +2314,3829c01,4,1,f +2314,4600,7,2,f +2314,6014a,14,4,f +2314,6015,0,4,f +2314,970c00,4,1,f +2314,973pb0023c01,15,1,f +2317,10218,9999,1,t +2317,3004,1,8,f +2317,3004,4,8,f +2317,3004,15,8,f +2317,3004,14,8,f +2317,3004,0,8,f +2317,3004,2,8,f +2317,3005,15,6,f +2317,3005,4,6,f +2317,3005,1,6,f +2317,3005,14,6,f +2317,3005,2,6,f +2317,3005,0,6,f +2317,3009,1,2,f +2317,3009,15,2,f +2317,3009,2,2,f +2317,3009,4,2,f +2317,3009,14,2,f +2317,3009,0,2,f +2317,3010,14,4,f +2317,3010,2,4,f +2317,3010,1,4,f +2317,3010,4,4,f +2317,3010,15,4,f +2317,3010,0,4,f +2317,3622,2,4,f +2317,3622,0,4,f +2317,3622,1,4,f +2317,3622,15,4,f +2317,3622,4,4,f +2317,3622,14,4,f +2318,11203,72,1,f +2318,2447,47,1,f +2318,2447,47,1,t +2318,2540,25,1,f +2318,30031,0,1,f +2318,3022,25,1,f +2318,3023,25,1,f +2318,30377,15,1,t +2318,30377,15,1,f +2318,3626cpr1156,14,1,f +2318,3679,71,1,f +2318,3680,0,1,f +2318,3941,47,1,f +2318,4032a,72,1,f +2318,4598,15,1,f +2318,52501,15,1,f +2318,58176,182,4,f +2318,59900,46,2,f +2318,75937,0,1,f +2318,87781,25,1,f +2318,970c00pr0464,25,1,f +2318,973pr2299c01,71,1,f +2318,98313,15,4,f +2321,73112,7,1,f +2322,2460,14,1,f +2322,3020,14,1,f +2322,3021,72,1,f +2322,3022,0,2,f +2322,3023,14,2,f +2322,3023,47,1,f +2322,30602,40,1,f +2322,3068b,14,1,f +2322,3475b,72,2,f +2322,3710,14,2,f +2322,3747b,14,1,f +2322,3839b,71,1,f +2322,4070,14,2,f +2322,4081b,0,2,f +2322,41862,14,1,f +2322,4286,14,2,f +2322,43722,14,1,f +2322,43723,14,1,f +2322,44302a,14,2,f +2322,44567a,14,2,f +2322,44661,14,1,f +2322,4617b,0,1,f +2322,47674,47,1,f +2322,47675,14,1,f +2322,47676,14,1,f +2322,6141,57,1,t +2322,6141,57,2,f +2323,2412b,4,1,f +2323,2412b,0,8,f +2323,2412b,4,1,t +2323,32064a,72,2,f +2323,32269,0,2,f +2323,3707,0,1,f +2323,3738,71,2,f +2323,4032a,4,4,f +2323,4032a,0,5,f +2323,41769,71,4,f +2323,41770,71,4,f +2323,44728,0,2,f +2323,4740pr0001b,47,1,f +2323,60849,0,1,t +2323,60849,0,1,f +2323,6141,36,1,t +2323,6141,36,1,f +2323,63868,0,1,f +2323,64799,71,2,f +2325,11153,15,2,f +2325,11153,1,2,f +2325,2412b,25,2,f +2325,2412b,71,4,f +2325,2412b,0,2,f +2325,2420,72,2,f +2325,2420,15,2,f +2325,2444,71,2,f +2325,2654,15,2,f +2325,2780,0,1,t +2325,2780,0,2,f +2325,298c02,15,1,t +2325,298c02,15,2,f +2325,3003,1,1,f +2325,3003,15,2,f +2325,3004,1,2,f +2325,3010,15,3,f +2325,3020,1,2,f +2325,3020,0,3,f +2325,3020,15,3,f +2325,3021,1,2,f +2325,3021,72,3,f +2325,3021,25,1,f +2325,3022,1,9,f +2325,3023,1,9,f +2325,3023,25,1,f +2325,3023,0,6,f +2325,3024,36,2,f +2325,3032,0,1,f +2325,3034,1,3,f +2325,3034,15,2,f +2325,3035,71,1,f +2325,3040b,25,2,f +2325,30602,40,2,f +2325,3068b,72,1,f +2325,3070b,25,2,f +2325,3070b,15,2,f +2325,3070b,25,1,t +2325,3070b,1,2,f +2325,3070b,15,1,t +2325,3070b,1,1,t +2325,32064b,15,1,f +2325,3460,72,1,f +2325,3623,72,6,f +2325,3665,25,2,f +2325,3665,1,4,f +2325,3673,71,2,f +2325,3673,71,1,t +2325,3700,0,3,f +2325,3710,1,6,f +2325,3795,72,6,f +2325,3942c,0,1,f +2325,4081b,72,2,f +2325,4162,0,2,f +2325,41769,1,2,f +2325,41769,15,2,f +2325,41770,1,2,f +2325,41770,15,2,f +2325,43710,1,2,f +2325,43711,1,2,f +2325,43722,72,2,f +2325,43723,72,2,f +2325,44728,72,4,f +2325,47455,0,2,f +2325,47457,1,1,f +2325,48171,72,2,f +2325,48172,0,1,f +2325,48336,71,2,f +2325,50304,15,1,f +2325,50305,15,1,f +2325,50745,15,2,f +2325,50950,0,2,f +2325,54200,0,1,t +2325,54200,0,4,f +2325,55981,71,2,f +2325,56902,71,2,f +2325,57909a,72,2,f +2325,59426,72,1,f +2325,60478,15,4,f +2325,60478,72,2,f +2325,61254,0,2,f +2325,61409,72,2,f +2325,6141,25,2,f +2325,6141,71,6,f +2325,6141,41,1,t +2325,6141,71,1,t +2325,6141,182,1,t +2325,6141,41,2,f +2325,6141,25,1,t +2325,6141,182,4,f +2325,6232,71,2,f +2325,6233,0,1,f +2325,63864,72,2,f +2325,6564,15,1,f +2325,6564,0,1,f +2325,6565,0,1,f +2325,6565,15,1,f +2325,6636,25,2,f +2325,6636,1,2,f +2325,73983,0,4,f +2325,85984,0,2,f +2325,87087,15,6,f +2325,89201,0,2,f +2325,92013,0,2,f +2325,92280,71,4,f +2325,98313,148,4,f +2325,99781,71,2,f +2326,122c01,0,2,f +2326,251,0,1,f +2326,3002,0,1,f +2326,3020,0,3,f +2326,3021,0,1,f +2326,3023,15,4,f +2326,3024,36,2,f +2326,3024,46,2,f +2326,3024,15,2,f +2326,3034,0,1,f +2326,3068b,15,1,f +2326,3069b,15,3,f +2326,3623,15,2,f +2326,3626apr0001,14,2,f +2326,3679,7,2,f +2326,3680,0,1,f +2326,3710,0,1,f +2326,3710,15,5,f +2326,3788,15,2,f +2326,3794a,0,2,f +2326,3821,15,1,f +2326,3822,15,1,f +2326,3823,47,1,f +2326,3829c01,15,1,f +2326,3901,0,1,f +2326,4079,15,1,f +2326,4081a,15,2,f +2326,4084,0,4,f +2326,4150p00,15,1,f +2326,4213,0,1,f +2326,4214,0,1,f +2326,4275a,0,1,f +2326,4276a,0,2,f +2326,4360,0,1,f +2326,4485,4,1,f +2326,6141,46,2,f +2326,970c00,1,1,f +2326,970c00,4,1,f +2326,973c01,15,1,f +2326,973c02,4,1,f +2328,3626bpb0427,14,1,f +2328,4498,70,1,f +2328,4499,70,1,f +2328,87693,4,1,f +2328,87693,4,1,t +2328,88489,2,1,f +2328,88646,0,1,f +2328,970c00,2,1,f +2328,973pr1542c01,2,1,f +2329,2456,4,4,f +2329,2456,14,4,f +2329,2456,1,4,f +2329,2456,15,4,f +2329,3001,0,6,f +2329,3001,4,12,f +2329,3001,15,12,f +2329,3001,2,6,f +2329,3001,27,6,f +2329,3001,14,12,f +2329,3001,1,12,f +2329,3001,73,6,f +2329,3001,25,8,f +2329,3002,14,16,f +2329,3002,0,8,f +2329,3002,15,16,f +2329,3002,2,8,f +2329,3002,4,16,f +2329,3002,1,16,f +2329,3003,27,20,f +2329,3003,14,42,f +2329,3003,2,18,f +2329,3003,0,18,f +2329,3003,73,20,f +2329,3003,15,42,f +2329,3003,4,42,f +2329,3003,1,42,f +2329,3003,25,28,f +2329,3004,2,20,f +2329,3004,15,40,f +2329,3004,14,40,f +2329,3004,73,18,f +2329,3004,4,40,f +2329,3004,1,40,f +2329,3004,27,18,f +2329,3004,0,20,f +2329,3004,25,24,f +2329,3005,1,20,f +2329,3005,0,12,f +2329,3005,14,20,f +2329,3005,73,12,f +2329,3005,25,16,f +2329,3005,27,12,f +2329,3005,15,20,f +2329,3005,4,20,f +2329,3005,2,12,f +2329,3007,15,2,f +2329,3007,1,2,f +2329,3007,14,2,f +2329,3007,4,2,f +2329,3008,4,4,f +2329,3008,15,4,f +2329,3008,14,4,f +2329,3008,1,4,f +2329,3009,4,8,f +2329,3009,1,8,f +2329,3009,15,8,f +2329,3009,14,8,f +2329,3010,0,6,f +2329,3010,14,6,f +2329,3010,1,6,f +2329,3010,4,6,f +2329,3010,2,6,f +2329,3010,25,4,f +2329,3010,73,4,f +2329,3010,27,4,f +2329,3010,15,6,f +2329,3622,14,8,f +2329,3622,2,8,f +2329,3622,15,8,f +2329,3622,1,8,f +2329,3622,4,8,f +2329,3622,0,8,f +2331,2412b,4,6,f +2331,2412b,383,2,f +2331,2419,0,2,f +2331,2421,0,1,f +2331,2431,8,8,f +2331,2431px15,7,1,f +2331,2432,7,2,f +2331,2454a,18,6,f +2331,2456,4,1,f +2331,2456,18,2,f +2331,2460,8,1,f +2331,2460,4,1,f +2331,2476a,7,1,f +2331,2479,0,1,f +2331,2486,4,1,f +2331,2496,0,2,f +2331,2540,0,1,f +2331,2540,1,2,f +2331,2543,0,2,f +2331,2555,0,7,f +2331,2569,8,1,f +2331,3001,4,2,f +2331,3001,7,1,f +2331,30029,1,1,f +2331,3003,8,1,f +2331,3004,18,14,f +2331,3004,8,2,f +2331,30043,0,2,f +2331,3005,0,4,f +2331,3006,4,3,f +2331,3009,18,4,f +2331,3009,8,2,f +2331,3010,18,13,f +2331,30161,40,1,f +2331,30161pb01,34,1,f +2331,30162,8,1,f +2331,30179,8,2,f +2331,30181,4,1,f +2331,30185c01,8,2,f +2331,3020,8,1,f +2331,3022,4,2,f +2331,3022,0,2,f +2331,3022,14,1,f +2331,30229,8,1,f +2331,3023,42,2,f +2331,3023,0,3,f +2331,3023,4,1,f +2331,30236,0,10,f +2331,3024,7,1,f +2331,30248,0,1,f +2331,3032,7,1,f +2331,30517,8,3,f +2331,30565,4,2,f +2331,30602pb001,73,1,f +2331,30636c01,8,1,f +2331,3068b,7,7,f +2331,3068bp18,14,1,f +2331,3069b,0,2,f +2331,3069bpa2,8,1,f +2331,3069bpr0101,7,1,f +2331,3403c01,0,1,f +2331,3460,0,2,f +2331,3460,4,1,f +2331,3623,7,2,f +2331,3623,0,1,f +2331,3624,4,1,f +2331,3626bpb0043,14,1,f +2331,3626bpb0048,14,1,f +2331,3626bpb0049,14,1,f +2331,3626bpb0051,14,1,f +2331,3626bpb0052,14,1,f +2331,3626bpr0216,14,1,f +2331,3660,7,4,f +2331,3666,15,2,f +2331,3679,7,1,f +2331,3680,15,1,f +2331,3700,7,1,f +2331,3701,0,1,f +2331,3710,4,2,f +2331,3710,7,1,f +2331,3710,0,1,f +2331,3710,25,1,f +2331,3754,18,1,f +2331,3795,7,2,f +2331,3829c01,7,1,f +2331,3839b,0,1,f +2331,3857,10,1,f +2331,3937,7,1,f +2331,3938,0,1,f +2331,3939,40,2,f +2331,3939,7,1,f +2331,3940b,8,1,f +2331,3958,8,1,f +2331,3960,7,2,f +2331,3961,18,1,f +2331,3962b,0,1,f +2331,4006,0,1,f +2331,40243,7,8,f +2331,40244,0,1,f +2331,4032a,4,2,f +2331,4070,0,4,f +2331,4079,4,1,f +2331,4081b,7,2,f +2331,4081b,4,1,f +2331,4085c,0,1,f +2331,41334,0,1,f +2331,4151a,8,1,f +2331,4162,8,1,f +2331,41769,0,1,f +2331,41854,15,2,f +2331,41883,40,1,f +2331,42022,18,4,f +2331,42445,7,1,f +2331,42446,0,1,f +2331,42446,2,1,f +2331,42511,14,1,f +2331,4275b,7,4,f +2331,4285b,7,1,f +2331,4286,0,2,f +2331,4286,25,1,f +2331,43337,25,2,f +2331,43337,7,1,f +2331,4345b,0,1,f +2331,4346,7,1,f +2331,4477,25,1,f +2331,4477,4,2,f +2331,4485,15,1,f +2331,4488,7,5,f +2331,4531,0,4,f +2331,4599a,0,2,f +2331,4623,7,2,f +2331,4625,7,1,f +2331,4625,15,1,f +2331,4740,7,2,f +2331,4855,14,2,f +2331,4859,0,1,f +2331,4865a,7,1,f +2331,4871,14,1,f +2331,6014b,7,4,f +2331,6015,0,4,f +2331,6019,15,4,f +2331,6064,2,1,f +2331,6093,0,1,f +2331,6106,8,4,f +2331,6111,4,2,f +2331,6141,42,2,t +2331,6141,57,4,f +2331,6141,36,1,t +2331,6141,57,1,t +2331,6141,42,6,f +2331,6141,36,2,f +2331,6187,73,1,f +2331,6215,8,1,f +2331,6564,25,2,f +2331,6565,25,2,f +2331,6583,8,2,f +2331,71509,0,2,t +2331,73037,0,1,f +2331,75c19,8,2,f +2331,76041c02,7,2,f +2331,970c00,15,1,f +2331,970c00,73,2,f +2331,970c00,0,1,f +2331,970c00pb009,0,1,f +2331,970c00pb010,1,1,f +2331,973pb0055c01,15,2,f +2331,973pb0056c01,15,1,f +2331,973pb0057c01,4,1,f +2331,973pb0058c01,320,1,f +2331,973pb0233c01,4,1,f +2331,bb298bc52,15,1,f +2334,10050,148,1,f +2334,10052,71,1,f +2334,11010,334,2,t +2334,11010,334,1,f +2334,11090,72,7,f +2334,12825,72,6,f +2334,15490pr0001,70,1,f +2334,15535,72,2,f +2334,16190,28,1,f +2334,16338pr0001,19,1,f +2334,2339,70,1,f +2334,2357,72,34,f +2334,2412b,0,2,f +2334,2420,71,5,f +2334,2423,320,2,f +2334,2431,308,4,f +2334,2449,72,4,f +2334,2450,71,6,f +2334,2450,0,4,f +2334,2453b,72,6,f +2334,2454b,72,5,f +2334,2458,71,2,f +2334,2462,72,5,f +2334,2489,308,1,f +2334,2566,0,1,f +2334,2714a,0,1,f +2334,2817,0,1,f +2334,3002,72,16,f +2334,3003,0,1,f +2334,3003,72,4,f +2334,3003,70,1,f +2334,3004,72,38,f +2334,3005,70,31,f +2334,3005,72,31,f +2334,3005,71,6,f +2334,3007,0,1,f +2334,3008,0,2,f +2334,3008,72,1,f +2334,3009,72,1,f +2334,3010,72,10,f +2334,3010,71,4,f +2334,3020,71,3,f +2334,3020,70,2,f +2334,3021,71,2,f +2334,3021,0,4,f +2334,3022,71,2,f +2334,3022,72,2,f +2334,3023,0,2,f +2334,3023,72,5,f +2334,3023,70,1,f +2334,30238,0,1,f +2334,3024,0,2,t +2334,3024,72,1,t +2334,3024,0,5,f +2334,3024,71,4,t +2334,3024,71,14,f +2334,3024,28,1,t +2334,3024,72,2,f +2334,3024,28,2,f +2334,3031,0,2,f +2334,3031,71,1,f +2334,3032,71,1,f +2334,3033,0,2,f +2334,3034,71,2,f +2334,3035,0,1,f +2334,3036,0,1,f +2334,30374,70,5,f +2334,3039,72,3,f +2334,3040b,72,17,f +2334,3040b,0,2,f +2334,3040b,71,5,f +2334,3048c,72,4,f +2334,30503,0,2,f +2334,30503,72,4,f +2334,30505,0,2,f +2334,3062b,41,1,f +2334,3062b,0,2,f +2334,3068b,72,2,f +2334,3069b,0,2,f +2334,3069b,308,3,f +2334,3069b,72,4,f +2334,3069b,71,12,f +2334,32000,72,3,f +2334,32015,0,2,f +2334,32016,70,1,f +2334,32039,0,1,f +2334,32062,4,5,f +2334,32062,0,8,f +2334,32064a,71,21,f +2334,32073,71,1,f +2334,32123b,71,1,t +2334,32123b,71,2,f +2334,3245c,72,5,f +2334,32530,0,1,f +2334,3460,71,3,f +2334,3460,0,3,f +2334,3622,72,32,f +2334,3623,71,9,f +2334,3623,0,4,f +2334,3626c,72,1,f +2334,3626cpr0895,15,4,f +2334,3626cpr1253,78,1,f +2334,3626cpr1312,84,2,f +2334,3626cpr1315,78,1,f +2334,3626cpr1373,0,1,f +2334,3660,0,3,f +2334,3660,72,2,f +2334,3665,71,6,f +2334,3665,72,38,f +2334,3666,71,4,f +2334,3666,0,2,f +2334,3673,71,4,f +2334,3673,71,3,t +2334,3678bpr0040,72,1,f +2334,3679,71,1,f +2334,3680,0,1,f +2334,3700,0,2,f +2334,3705,0,1,f +2334,3710,71,4,f +2334,3710,0,7,f +2334,3713,71,1,t +2334,3713,71,1,f +2334,3738,71,1,f +2334,3795,0,1,f +2334,3830,72,7,f +2334,3831,72,7,f +2334,3832,72,1,f +2334,3941,72,4,f +2334,40239,71,1,f +2334,4070,0,14,f +2334,4070,71,2,f +2334,41669,179,1,f +2334,41677,72,2,f +2334,41769,72,1,f +2334,41769,0,2,f +2334,41770,0,1,f +2334,41770,72,1,f +2334,42448,0,2,f +2334,4287,72,2,f +2334,43093,1,1,f +2334,44294,71,1,f +2334,4460b,72,8,f +2334,4733,0,1,f +2334,4865b,71,2,f +2334,50231,70,1,f +2334,50231,72,1,f +2334,53451,15,3,t +2334,53451,15,8,f +2334,54200,72,6,t +2334,54200,72,39,f +2334,55236,70,3,f +2334,59349,72,1,f +2334,59443,70,1,f +2334,59900,0,1,f +2334,59900,70,2,f +2334,60470a,0,1,f +2334,60475b,0,4,f +2334,60752,179,3,f +2334,6106,71,2,f +2334,6111,72,1,f +2334,6141,47,1,t +2334,6141,47,1,f +2334,6231,71,2,f +2334,62462,320,1,f +2334,62462,0,1,f +2334,6260,15,1,f +2334,6265,15,1,t +2334,6265,15,2,f +2334,6266,15,1,t +2334,6266,15,2,f +2334,63965,70,2,f +2334,64644,308,1,f +2334,64647,57,2,f +2334,64647,57,2,t +2334,64727,84,5,f +2334,6541,72,5,f +2334,6541,71,1,f +2334,6587,28,1,f +2334,6636,70,1,f +2334,73983,71,4,f +2334,75937,0,2,f +2334,85984,72,10,f +2334,87087,0,11,f +2334,87087,71,2,f +2334,87421,72,4,f +2334,87544,71,4,f +2334,87552,71,2,f +2334,87580,71,2,f +2334,87580,0,1,f +2334,87693,28,1,f +2334,88289,308,1,f +2334,90981,15,1,f +2334,92338,72,1,f +2334,96874,25,1,t +2334,970c00,72,1,f +2334,970c00,0,1,f +2334,970c00,308,1,f +2334,970c00pr0577,84,2,f +2334,970c00pr0629,19,1,f +2334,973pr2053c01,72,1,f +2334,973pr2505c01,308,2,f +2334,973pr2510c01,72,1,f +2334,973pr2512c01,308,1,f +2334,973pr2592c01,19,1,f +2334,973pr2595c01,0,1,f +2334,98283,72,8,f +2334,98370,179,1,f +2334,98560,72,1,f +2335,2339,4,2,f +2335,2412b,0,1,f +2335,2419,4,2,f +2335,2432,15,1,f +2335,2432,1,1,f +2335,2436,15,1,f +2335,2441,4,1,f +2335,2441,15,1,f +2335,298c03,0,1,f +2335,298c03,0,1,t +2335,3003,1,1,f +2335,3004,0,1,f +2335,3004,15,2,f +2335,3004,1,6,f +2335,3005,4,2,f +2335,3005,15,12,f +2335,3008,15,1,f +2335,3010,15,2,f +2335,3020,1,2,f +2335,3020,4,3,f +2335,3020,15,2,f +2335,3021,15,2,f +2335,3022,4,2,f +2335,3023,15,2,f +2335,3023,0,3,f +2335,3029,4,1,f +2335,3039p23,1,1,f +2335,3040b,4,4,f +2335,3062b,4,1,f +2335,3069b,15,1,f +2335,3069b,1,1,f +2335,3069bp06,1,2,f +2335,3070bp02,14,1,f +2335,3070bp02,14,1,t +2335,3070bp03,14,1,t +2335,3070bp03,14,1,f +2335,3070bp05,1,1,t +2335,3070bp05,1,1,f +2335,3185,15,2,f +2335,3298p55,1,1,f +2335,3298p56,4,1,f +2335,3460,15,1,f +2335,3623,1,2,f +2335,3623,15,3,f +2335,3623,4,2,f +2335,3626apr0001,14,5,f +2335,3641,0,10,f +2335,3660,15,2,f +2335,3666,4,1,f +2335,3679,7,1,f +2335,3680,1,1,f +2335,3710,4,1,f +2335,3710,1,1,f +2335,3710,15,1,f +2335,3794a,0,3,f +2335,3794a,15,1,f +2335,3829c01,15,2,f +2335,3839b,0,2,f +2335,3842b,1,1,f +2335,3842b,4,1,f +2335,3900,15,2,f +2335,3901,0,1,f +2335,3937,4,2,f +2335,3937,15,2,f +2335,3938,15,2,f +2335,3938,4,2,f +2335,3941,15,1,f +2335,3941,14,1,f +2335,3957a,4,2,f +2335,3957a,0,2,f +2335,3958,0,1,f +2335,3958,4,1,f +2335,3963,15,1,f +2335,4006,0,1,f +2335,4032a,4,1,f +2335,4081b,15,6,f +2335,4083,1,2,f +2335,4150p00,15,1,f +2335,4162,4,3,f +2335,425p01,7,1,f +2335,4275b,0,1,f +2335,4286,1,2,f +2335,4286,15,2,f +2335,4286,4,2,f +2335,4460a,4,2,f +2335,4460a,15,2,f +2335,4460a,1,2,f +2335,4476b,0,2,f +2335,4477,4,1,f +2335,4485,4,2,f +2335,4495b,14,2,f +2335,4522,0,1,f +2335,4531,0,1,f +2335,4589,0,1,f +2335,4595,0,1,f +2335,4599a,0,1,f +2335,4599a,4,1,f +2335,4623,1,2,f +2335,4624,15,10,f +2335,4629c01,1,1,f +2335,4872,41,1,f +2335,6141,0,4,f +2335,6141,34,2,f +2335,6141,36,2,f +2335,970c00,4,1,f +2335,970c00,7,1,f +2335,970c00,15,2,f +2335,970c00,1,1,f +2335,973p0ac01,1,1,f +2335,973p14c01,15,1,f +2335,973p18c01,1,1,f +2335,973pb0203c01,15,1,f +2335,973px61c01,15,1,f +2336,3001,14,1,f +2336,3001,0,1,f +2336,3004,4,1,f +2336,3005,14,2,f +2336,3010,4,1,f +2336,3010,14,1,f +2336,3020,0,1,f +2336,3022,0,2,f +2336,3023,14,2,f +2336,3023,0,2,f +2336,3024,14,4,f +2336,3024,0,6,f +2336,3037,4,1,f +2336,3039,4,1,f +2336,3068b,0,1,f +2336,3069b,0,2,f +2336,3660,0,1,f +2336,3660,14,4,f +2336,3665,14,2,f +2336,3665,0,4,f +2336,3676,0,2,f +2336,3678b,4,2,f +2336,3700,14,1,f +2336,3710,0,3,f +2336,4286,0,2,f +2336,4287,4,2,f +2336,54200,0,12,f +2336,54200,14,2,f +2336,6141,0,2,f +2336,6141,14,1,f +2337,2610,14,1,f +2337,30031,0,1,f +2337,30236,71,1,f +2337,30377,0,1,f +2337,30377,0,1,t +2337,3626bpr0409,14,1,f +2337,3666,15,4,f +2337,3710,0,1,f +2337,3957a,15,1,f +2337,4083,0,1,f +2337,43713,0,1,f +2337,4485,15,1,f +2337,47758,0,1,f +2337,48183,15,1,f +2337,4871,0,1,f +2337,54200,33,2,f +2337,6141,33,1,f +2337,6141,33,1,t +2337,970c00,0,1,f +2337,973pr1188c01,0,1,f +2338,2570,135,1,f +2338,30368,0,1,f +2338,30374,41,1,f +2338,30374,36,1,f +2338,30381,70,1,f +2338,30483pr01,70,1,f +2338,3626bpr0444,78,1,f +2338,3626bpr0639,71,1,f +2338,50231,70,1,f +2338,50231,0,1,f +2338,64567,80,2,f +2338,74188,72,3,f +2338,970c00,70,1,f +2338,970c00,19,1,f +2338,970c00,0,1,f +2338,973c32,70,1,f +2338,973pr1324c01,19,1,f +2338,973pr1469c01,0,1,f +2339,15207,72,1,f +2339,2412b,71,1,f +2339,3002,14,2,f +2339,3010,14,1,f +2339,3020,0,1,f +2339,3022,72,2,f +2339,3023,0,2,f +2339,3024,36,2,f +2339,3034,71,1,f +2339,3039,47,2,f +2339,3710,14,3,f +2339,3710,72,3,f +2339,3937,72,2,f +2339,41769,14,1,f +2339,41770,14,1,f +2339,4624,15,4,f +2339,54200,46,2,f +2339,60212,14,2,f +2339,6134,71,2,f +2339,6141,57,2,f +2339,6157,0,2,f +2339,87414,0,4,f +2339,93274,71,1,f +2342,260pb01,4,2,f +2342,27bc01,15,2,f +2342,3005,15,8,f +2342,3005,1,3,f +2342,3008a06,15,1,f +2342,3035a,15,2,f +2342,3036a,15,2,f +2342,3063b,47,2,f +2342,3063b,1,1,f +2342,3065,15,13,f +2342,3065,1,8,f +2342,33bc01,15,2,f +2342,713a,15,2,f +2342,723,80,2,f +2342,x1104,47,1,f +2344,10199,10,1,f +2344,11169,4,2,f +2344,11170,1,2,f +2344,11929,27,1,f +2344,11970,4,1,f +2344,14721,10,2,f +2344,15950,191,1,f +2344,15954,27,1,f +2344,15956,322,1,f +2344,15957,322,1,f +2344,15958,191,1,f +2344,15962,27,1,f +2344,17297,4,1,f +2344,17304,4,1,f +2344,17306,25,1,f +2344,17308,25,1,f +2344,20678,41,2,f +2344,2301,4,2,f +2344,2302,191,2,f +2344,3011,321,2,f +2344,3011,27,2,f +2344,3011,191,2,f +2344,31023,15,1,f +2344,3437,14,4,f +2344,3437,10,4,f +2344,3437,484,4,f +2344,3437,27,4,f +2344,3437,1,4,f +2344,3437,322,2,f +2344,3437,4,4,f +2344,3437,25,4,f +2344,40666,4,2,f +2344,40666,1,2,f +2344,40666,25,2,f +2344,47510pr0005,73,1,f +2344,47511pr0003,15,1,f +2344,61649,14,1,f +2344,61649,1,1,f +2344,6510,14,1,f +2344,6510,4,1,f +2344,6510,25,1,f +2344,6510,10,3,f +2344,76371,4,2,f +2344,76371,322,2,f +2344,76371,25,2,f +2344,89406,15,1,f +2344,90265,15,2,f +2344,92094,4,1,f +2344,98223,27,1,f +2344,98224,10,1,f +2344,98225,484,2,f +2344,98233,4,1,f +2344,98252,27,2,f +2346,11213,71,1,f +2346,11833,71,1,f +2346,14719,71,4,f +2346,15573,71,3,f +2346,15712,72,7,f +2346,18646,71,4,f +2346,18646,19,2,f +2346,2412b,72,7,f +2346,2412b,36,4,f +2346,2436,71,1,f +2346,2450,71,8,f +2346,30031,71,1,f +2346,3020,72,2,f +2346,3021,0,1,f +2346,3022,72,1,f +2346,3023,28,6,f +2346,3032,19,1,f +2346,30361pr1001,15,1,f +2346,30362,15,2,f +2346,30367cpr1001,179,1,f +2346,30381,70,2,f +2346,3039,71,4,f +2346,3040b,71,8,f +2346,30480ps0,297,1,f +2346,30562,71,4,f +2346,30565,28,8,f +2346,3068b,19,2,f +2346,3068bpr0287,0,1,f +2346,3069b,72,4,f +2346,3626cpr1456,0,2,f +2346,3676,72,4,f +2346,3710,72,10,f +2346,3795,19,2,f +2346,3960pr13,40,1,f +2346,4032a,72,7,f +2346,41879a,70,2,f +2346,4287,71,8,f +2346,4349,0,1,f +2346,44301a,0,4,f +2346,44301a,72,2,f +2346,44302a,72,4,f +2346,4599b,71,2,f +2346,4599b,71,1,t +2346,4740,182,4,f +2346,4865b,41,1,f +2346,52107,4,5,f +2346,59900,179,6,f +2346,59900,179,1,t +2346,61252,71,4,f +2346,6141,182,6,f +2346,6141,41,2,t +2346,6141,41,2,f +2346,6141,182,1,t +2346,6587,28,1,f +2346,73983,72,4,f +2346,75937,179,1,f +2346,85984,0,1,f +2346,86208,72,1,f +2346,87620,72,4,f +2346,88930,4,2,f +2346,92947,0,1,f +2346,970c00pr0693,297,1,f +2346,973pr2720c01,70,1,f +2346,973pr2723c01,70,1,f +2346,973pr3258c01,297,1,f +2346,98100,71,4,f +2346,98138,71,4,f +2346,98138,71,1,t +2349,2423,2,2,f +2349,2447,40,1,f +2349,2516,14,1,f +2349,30194,72,1,f +2349,3062b,14,3,f +2349,3626bpr0743,14,1,f +2349,3834,320,1,f +2349,3835,0,1,f +2349,3838,14,1,f +2349,3941,70,1,f +2349,3962a,0,1,f +2349,4599b,14,2,f +2349,6126a,41,1,f +2349,6126a,182,1,f +2349,6158,72,1,f +2349,85959pat0001,36,1,f +2349,970c00pr0282,191,1,f +2349,973pr1919c01,191,1,f +2350,2420,4,4,f +2350,2432,15,2,f +2350,3005,47,6,f +2350,3005,15,8,f +2350,3010,4,3,f +2350,3021,25,1,f +2350,3023,0,1,f +2350,3031,15,1,f +2350,30414,4,1,f +2350,3068b,15,1,f +2350,3069b,4,1,f +2350,3070b,36,2,f +2350,3070b,36,1,t +2350,3139,0,4,f +2350,32028,15,4,f +2350,3460,15,2,f +2350,3460,4,2,f +2350,3710,15,1,f +2350,3794b,25,3,f +2350,3794b,4,2,f +2350,3795,4,1,f +2350,3795,15,1,f +2350,3832,72,1,f +2350,4477,0,2,f +2350,4600,71,2,f +2350,4624,71,4,f +2350,4865a,47,3,f +2350,60212,4,2,f +2350,6047838a,9999,1,t +2350,85984,15,4,f +2350,87079,15,1,f +2350,93274,4,1,f +2350,93604,15,2,f +2350,98138,47,1,t +2350,98138,47,2,f +2351,10201,4,1,f +2351,11211,4,1,f +2351,11303,1,2,f +2351,11399,72,1,f +2351,11477,72,2,f +2351,18651,0,1,t +2351,18651,0,2,f +2351,2412b,0,6,f +2351,2431,71,2,f +2351,2780,0,2,f +2351,3002,25,1,f +2351,3004,25,2,f +2351,3007,1,1,f +2351,3009,15,2,f +2351,3009,25,2,f +2351,3010,2,4,f +2351,3020,0,1,f +2351,3020,71,3,f +2351,3020,72,2,f +2351,3021,15,3,f +2351,3023,4,5,f +2351,3023,15,6,f +2351,30237b,25,2,f +2351,3024,182,6,f +2351,3024,182,2,t +2351,3029,0,1,f +2351,3032,71,6,f +2351,3037,1,1,f +2351,3037,71,1,f +2351,3040b,25,2,f +2351,3069b,70,6,f +2351,3069b,182,2,f +2351,3069b,72,2,f +2351,32014,0,4,f +2351,32015,15,2,f +2351,32073,71,7,f +2351,32123b,14,2,f +2351,32123b,14,1,t +2351,3298,25,3,f +2351,33085,14,1,f +2351,3622,25,2,f +2351,3623,71,2,f +2351,3626cpr0891,14,1,f +2351,3626cpr0929,14,1,f +2351,3660,25,2,f +2351,3660,0,2,f +2351,3660,15,2,f +2351,3666,4,1,f +2351,3666,72,9,f +2351,3666,71,2,f +2351,3710,0,2,f +2351,3710,25,1,f +2351,3713,71,2,f +2351,3713,71,1,t +2351,3829c01,1,1,f +2351,3836,70,1,f +2351,3837,72,1,f +2351,4150,72,1,f +2351,41677,15,1,f +2351,42610,71,1,f +2351,4282,71,3,f +2351,43093,1,2,f +2351,44300,71,4,f +2351,44302a,0,2,f +2351,44567a,71,2,f +2351,44728,19,4,f +2351,4477,70,2,f +2351,4488,0,6,f +2351,4865a,2,4,f +2351,4865a,15,2,f +2351,50745,72,2,f +2351,50951,0,1,t +2351,50951,0,1,f +2351,52031,15,1,f +2351,52501,72,1,f +2351,54200,47,2,f +2351,54200,47,1,t +2351,59443,0,2,f +2351,6014b,71,6,f +2351,60478,72,2,f +2351,60581,25,5,f +2351,6141,70,2,f +2351,6141,72,2,f +2351,6141,2,1,f +2351,6141,72,1,t +2351,6141,70,1,t +2351,6141,2,1,t +2351,64453,40,1,f +2351,64648,179,2,f +2351,6541,71,2,f +2351,6553,71,2,f +2351,6636,71,2,f +2351,85984,71,2,f +2351,85984,15,2,f +2351,85984,0,4,f +2351,87079,71,3,f +2351,87544,15,2,f +2351,87544,25,2,f +2351,87609,15,1,f +2351,87697,0,6,f +2351,88930,25,3,f +2351,95228,47,1,f +2351,970c00,25,1,f +2351,970c00,379,1,f +2351,973pr1160c01,1,1,f +2351,973pr1470c01,1,1,f +2351,98138,36,2,f +2351,98138,182,2,t +2351,98138,36,1,t +2351,98138,182,8,f +2351,98285,0,2,f +2351,98286,71,2,f +2351,99207,71,2,f +2352,11477,322,2,f +2352,14769,27,1,f +2352,15573,19,1,f +2352,18868a,41,2,f +2352,19981pr0016,41,1,f +2352,19981pr0017,41,1,f +2352,20690pr0001,84,1,f +2352,20691pr0004,84,1,f +2352,21787,84,1,f +2352,2412b,19,1,f +2352,2432,322,2,f +2352,30028,0,4,f +2352,3004,27,2,f +2352,3005,27,2,f +2352,3020,27,1,f +2352,3022,14,1,f +2352,3022,19,3,f +2352,3023,29,2,f +2352,3023,14,3,f +2352,3023,71,3,f +2352,3070b,322,1,t +2352,3070b,322,2,f +2352,3626cpr1708,78,1,f +2352,3710,322,4,f +2352,3710,27,1,f +2352,3742,4,4,f +2352,3941,41,2,f +2352,4032a,4,2,f +2352,4032a,70,1,f +2352,4081b,27,2,f +2352,4600,0,2,f +2352,60212,27,2,f +2352,60474,15,1,f +2352,6141,2,2,f +2352,6141,2,1,t +2352,64567,0,1,f +2352,64567,0,1,t +2352,64647,27,2,f +2352,64647,27,1,t +2352,6541,27,4,f +2352,74967,15,4,f +2352,87580,19,3,f +2352,93274,27,2,f +2352,93604,322,2,f +2352,970c00,320,1,f +2352,973pr3062c01,27,1,f +2352,98138,46,1,t +2352,98138,46,1,f +2352,98138,47,2,f +2352,98138,47,1,t +2353,19071,15,1,f +2354,11211,19,2,f +2354,11408pr0003c01,78,1,f +2354,11618,322,1,t +2354,11618,322,1,f +2354,11618,26,1,f +2354,11618,26,1,t +2354,11816pr0005,78,1,f +2354,11818pr0003,78,1,f +2354,14769,30,6,f +2354,15470,297,1,t +2354,15470,297,1,f +2354,15675,18,1,f +2354,15678pat0001,2,1,f +2354,15875pr0004c01,30,1,f +2354,16412,9999,1,t +2354,16558,9999,1,t +2354,16925pr0005c01,28,1,f +2354,2343,297,1,f +2354,2357,19,2,f +2354,2412b,297,2,f +2354,2423,2,6,f +2354,2453a,71,2,f +2354,2454a,71,4,f +2354,2460,71,1,f +2354,2476a,15,1,f +2354,2921,71,2,f +2354,3004,19,6,f +2354,3004,272,5,f +2354,30044,70,1,f +2354,30046,297,1,f +2354,3020,15,1,f +2354,3020,27,2,f +2354,3021,70,2,f +2354,3023,70,2,f +2354,3023,27,4,f +2354,3024,29,4,f +2354,3029,71,1,f +2354,3032,2,1,f +2354,30357,70,2,f +2354,3040b,28,6,f +2354,3040b,15,2,f +2354,3040b,70,2,f +2354,30414,71,2,f +2354,30562,19,2,f +2354,30562,71,4,f +2354,3062b,71,4,f +2354,3062b,4,1,f +2354,3062b,322,1,f +2354,3062b,14,1,f +2354,3062b,70,4,f +2354,3062b,2,1,f +2354,3062b,19,4,f +2354,3068b,29,2,f +2354,3069b,29,5,f +2354,3069b,322,2,f +2354,32028,72,1,f +2354,3298,70,4,f +2354,3298,85,7,f +2354,33009,26,1,f +2354,33183,10,4,f +2354,33183,10,2,t +2354,33215,85,1,f +2354,33291,5,3,t +2354,33291,191,14,f +2354,33291,10,1,t +2354,33291,70,1,f +2354,33291,5,11,f +2354,33291,10,2,f +2354,33291,191,3,t +2354,33291,70,1,t +2354,33322,297,1,f +2354,33322,297,1,t +2354,3626c,143,1,f +2354,3659,71,1,f +2354,3665,15,2,f +2354,3666,70,1,f +2354,3675,85,2,f +2354,3710,71,1,f +2354,3710,29,6,f +2354,3710,191,2,f +2354,3710,70,2,f +2354,3741,2,2,f +2354,3741,2,1,t +2354,3794b,297,6,f +2354,3795,29,1,f +2354,3852,322,1,f +2354,3942a,85,1,f +2354,3957b,85,1,f +2354,40243,85,8,f +2354,40244,0,1,f +2354,4032a,85,2,f +2354,4215b,71,1,f +2354,4286,71,2,f +2354,4460b,19,2,f +2354,4528,0,1,f +2354,4533,15,1,f +2354,4738a,30,1,f +2354,4739a,30,1,f +2354,4740pr0001a,4,1,f +2354,48092,71,4,f +2354,48336,297,1,f +2354,54200,15,1,t +2354,54200,15,2,f +2354,54200,70,1,t +2354,54200,70,1,f +2354,59900,15,1,f +2354,59900,297,1,f +2354,6003,2,2,f +2354,6003,29,4,f +2354,60481,70,2,f +2354,6108,19,1,f +2354,6141,0,1,f +2354,6141,36,1,t +2354,6141,36,1,f +2354,6141,297,27,f +2354,6141,297,5,t +2354,64647,57,1,f +2354,64647,57,1,t +2354,85080,19,2,f +2354,85863,19,2,f +2354,85984,85,3,f +2354,87079,30,6,f +2354,87087,70,2,f +2354,87087,19,2,f +2354,87544,15,1,f +2354,87580,322,2,f +2354,88283,0,1,f +2354,88283,308,1,f +2354,91988,71,1,f +2354,92410,30,1,f +2354,92438,2,1,f +2354,92456pr0025c01,78,1,f +2354,92950,70,1,f +2354,93551pr0001,84,1,f +2354,93552pr0001,70,1,f +2354,93552pr0001,70,1,t +2354,95228,47,1,f +2354,98138,71,4,f +2354,98138,71,2,t +2354,98138pr0018,84,2,f +2354,98138pr0018,84,1,t +2355,2420,4,2,f +2355,2711,0,1,f +2355,2717,14,1,f +2355,2736,7,2,f +2355,2743,0,6,f +2355,2743,4,2,f +2355,2744,4,2,f +2355,2744,0,4,f +2355,2780,0,17,f +2355,2825,0,2,f +2355,2850a,7,2,f +2355,2851,8,2,f +2355,2852,7,2,f +2355,2853,7,2,f +2355,2900,8,2,f +2355,2901,0,2,f +2355,2905,0,3,f +2355,2952,7,1,f +2355,3005,0,2,f +2355,3010,0,1,f +2355,3021,4,1,f +2355,3021,0,2,f +2355,3023,0,9,f +2355,3023,4,2,f +2355,3024,36,1,f +2355,3034,0,3,f +2355,3040b,0,3,f +2355,3070b,34,1,f +2355,3070b,36,1,f +2355,3460,0,2,f +2355,3482,15,4,f +2355,3483,0,4,f +2355,3622,4,1,f +2355,3622,0,1,f +2355,3623,4,2,f +2355,3651,7,13,f +2355,3665,4,1,f +2355,3666,4,1,f +2355,3666,0,1,f +2355,3673,7,2,f +2355,3700,0,5,f +2355,3701,0,2,f +2355,3702,0,4,f +2355,3704,0,2,f +2355,3705,0,4,f +2355,3706,0,8,f +2355,3707,0,2,f +2355,3708,0,1,f +2355,3710,0,6,f +2355,3713,7,13,f +2355,3737,0,2,f +2355,3747b,0,1,f +2355,3749,7,4,f +2355,3794a,0,7,f +2355,3795,4,1,f +2355,3795,0,1,f +2355,3894,0,3,f +2355,3895,0,6,f +2355,3933,0,1,f +2355,3934,0,1,f +2355,4185,7,2,f +2355,4261,7,2,f +2355,4262,7,2,f +2355,4263,0,1,f +2355,4265a,7,33,f +2355,4273b,7,17,f +2355,4274,7,6,f +2355,4282,0,4,f +2355,4286,4,1,f +2355,4287,0,2,f +2355,4477,0,2,f +2355,4519,0,11,f +2355,73129,7,1,f +2355,flex08c05l,7,2,f +2356,2335pb008,15,1,f +2356,2343,14,1,f +2356,2376,0,2,f +2356,2376,4,3,f +2356,2431,71,1,f +2356,2489,70,1,f +2356,2525px6,15,1,f +2356,2546,74,1,f +2356,2550c01,70,1,f +2356,2564,0,1,f +2356,3003,2,13,f +2356,3004,4,1,f +2356,30055,4,7,f +2356,30056,4,2,f +2356,30153,41,1,f +2356,30153,36,1,f +2356,30165,70,3,f +2356,30388,4,1,f +2356,3039,4,2,f +2356,3062b,0,2,f +2356,30635,0,1,f +2356,30636,4,1,f +2356,30636c04,72,1,f +2356,32074c01,0,1,f +2356,32324,71,2,f +2356,3700,4,1,f +2356,3832,70,1,f +2356,3849,0,2,f +2356,3941,46,2,f +2356,40902,0,1,f +2356,4151,0,2,f +2356,41529,71,1,f +2356,43887,71,1,f +2356,43887,72,1,f +2356,45695,0,1,f +2356,4589,4,3,f +2356,4738a,70,1,f +2356,4739a,70,1,f +2356,4790,70,1,f +2356,47972,72,1,f +2356,47973,4,6,f +2356,47974c01,71,1,f +2356,47975,0,1,f +2356,47978,0,4,f +2356,47980,4,1,f +2356,47981,71,2,f +2356,47983,4,1,f +2356,47984,71,1,f +2356,47986,4,1,f +2356,47988,70,1,f +2356,47990,15,1,f +2356,47992,71,1,f +2356,47993,0,8,f +2356,47994,2,6,f +2356,47996,70,2,f +2356,47998,4,4,f +2356,48000,70,1,f +2356,48002,0,3,f +2356,48003,70,1,f +2356,48005,0,1,f +2356,4j009,9999,1,f +2356,4j010,9999,1,f +2356,4j013,9999,1,f +2356,4j014,9999,1,f +2356,56823,0,1,f +2356,57503,334,1,f +2356,57504,334,1,f +2356,57505,334,1,f +2356,57506,334,1,f +2356,6112,70,2,f +2356,6179px6,15,1,f +2356,6215,70,2,f +2356,6232,71,2,f +2356,76110c01,71,1,f +2356,sailbb33,15,1,f +2356,sailbb34,15,1,f +2356,sailbb35,15,1,f +2357,23306,71,2,f +2357,2343,47,2,f +2357,2377,15,2,f +2357,2412b,15,6,f +2357,2419,72,1,f +2357,2444,0,2,f +2357,2460,72,1,f +2357,2566,0,4,f +2357,2654,71,4,f +2357,2780,0,20,f +2357,2780,0,2,t +2357,2926,0,2,f +2357,3001,14,2,f +2357,3003,4,2,f +2357,3004,4,3,f +2357,3009,1,1,f +2357,30134,0,1,f +2357,3020,71,3,f +2357,3021,14,2,f +2357,3022,14,3,f +2357,3023,1,15,f +2357,3023,72,4,f +2357,30236,71,1,f +2357,3024,1,1,f +2357,3024,1,1,t +2357,3031,0,1,f +2357,3032,14,1,f +2357,3033,71,4,f +2357,3034,1,4,f +2357,30355,15,1,f +2357,30356,15,1,f +2357,30374,71,2,f +2357,30377,71,1,t +2357,30377,71,4,f +2357,3039pr0002,15,1,f +2357,3039pr0013,15,2,f +2357,30504,15,2,f +2357,30553,72,1,f +2357,3068b,15,2,f +2357,3068bpr0137,15,1,f +2357,3069b,14,8,f +2357,3069b,15,1,f +2357,3139,0,14,f +2357,3245b,15,7,f +2357,32530,72,4,f +2357,3460,72,2,f +2357,3623,1,1,f +2357,3659,15,1,f +2357,3660,1,1,f +2357,3666,1,8,f +2357,3679,71,3,f +2357,3680,0,3,f +2357,3710,72,5,f +2357,3710,1,2,f +2357,3710,15,2,f +2357,3713,71,16,f +2357,3713,71,1,t +2357,3747b,15,5,f +2357,3749,19,1,f +2357,3749,19,1,t +2357,3794a,0,1,f +2357,3794a,15,1,f +2357,3795,71,1,f +2357,3795,14,1,f +2357,3938,0,2,f +2357,3942c,15,4,f +2357,3957a,71,1,f +2357,4032a,4,7,f +2357,4079,4,14,f +2357,4085c,1,2,f +2357,4162,1,5,f +2357,42608,71,2,f +2357,4286,72,2,f +2357,43121,71,4,f +2357,43337,14,2,f +2357,4345b,71,1,f +2357,4346,47,1,f +2357,44126,15,4,f +2357,4449,0,1,f +2357,4449,70,1,f +2357,44567a,14,1,f +2357,44568,15,2,f +2357,44570,15,2,f +2357,4460b,71,4,f +2357,4589,34,1,f +2357,4589,42,3,f +2357,4624,71,14,f +2357,46667,0,4,f +2357,48336,15,1,f +2357,4862,40,38,f +2357,4863,15,18,f +2357,4865a,14,4,f +2357,4870,71,5,f +2357,48729a,72,1,t +2357,48729a,72,2,f +2357,52107,0,2,f +2357,54090,71,1,f +2357,54091,71,5,f +2357,54092c01pr0001,15,1,f +2357,54093,15,1,f +2357,54094pr01,1,1,f +2357,54095,15,3,f +2357,54096,15,2,f +2357,54097,15,2,f +2357,54701c01pb01,15,1,f +2357,6141,36,1,t +2357,6141,1,1,t +2357,6141,34,1,f +2357,6141,34,1,t +2357,6141,47,1,f +2357,6141,1,4,f +2357,6141,36,1,f +2357,6141,47,1,t +2357,6636,1,5,f +2357,69c03,15,1,f +2357,75535,71,3,f +2358,2339,0,4,f +2358,2339,15,8,f +2358,2357,15,2,f +2358,2412b,80,2,f +2358,2412b,71,9,f +2358,2420,71,8,f +2358,2420,15,6,f +2358,2431,14,2,f +2358,2431,0,7,f +2358,2431,320,4,f +2358,2431,15,4,f +2358,2445,72,2,f +2358,2465,15,2,f +2358,2540,72,1,f +2358,2555,0,2,f +2358,2654,15,4,f +2358,2736,71,3,f +2358,2780,0,25,f +2358,2780,0,1,t +2358,2817,0,4,f +2358,2819,71,1,f +2358,298c02,71,1,t +2358,298c02,71,1,f +2358,3002,1,1,f +2358,3004,15,4,f +2358,3005,15,4,f +2358,3008,15,4,f +2358,30173a,0,2,f +2358,3020,15,4,f +2358,3020,72,3,f +2358,3020,71,4,f +2358,3021,0,8,f +2358,3022,15,6,f +2358,3023,15,6,f +2358,3023,0,12,f +2358,3023,320,10,f +2358,3024,0,3,f +2358,3024,15,10,f +2358,3024,320,6,f +2358,3031,15,2,f +2358,3032,72,4,f +2358,3034,72,4,f +2358,3035,15,1,f +2358,3036,15,1,f +2358,3040b,15,4,f +2358,30414,15,2,f +2358,30553,72,1,f +2358,3062b,0,6,f +2358,3068b,71,2,f +2358,3068b,73,6,f +2358,3068b,15,2,f +2358,3069b,0,10,f +2358,3069b,15,8,f +2358,3069b,71,1,f +2358,3069b,73,6,f +2358,3069bpr0070,0,1,f +2358,3069bpr0101,71,1,f +2358,3070b,0,2,f +2358,3070b,36,1,t +2358,3070b,15,4,f +2358,3070b,0,1,t +2358,3070b,15,1,t +2358,3070b,36,2,f +2358,3176,71,1,f +2358,32018,0,8,f +2358,32039,0,2,f +2358,32054,4,2,f +2358,32062,4,5,f +2358,32523,0,4,f +2358,32524,0,4,f +2358,32526,0,4,f +2358,32556,19,2,f +2358,33299a,0,2,f +2358,3460,72,1,f +2358,3622,15,4,f +2358,3623,14,2,f +2358,3623,15,18,f +2358,3623,71,10,f +2358,3660,0,11,f +2358,3665,0,6,f +2358,3666,15,9,f +2358,3666,0,5,f +2358,3679,71,2,f +2358,3680,15,2,f +2358,3700,15,6,f +2358,3701,1,2,f +2358,3705,0,3,f +2358,3706,0,3,f +2358,3710,72,3,f +2358,3710,15,6,f +2358,3710,320,2,f +2358,3713,4,1,t +2358,3713,4,4,f +2358,3794a,71,1,f +2358,3794a,15,4,f +2358,3795,71,1,f +2358,3832,15,2,f +2358,3832,71,5,f +2358,3937,1,1,f +2358,4032a,71,2,f +2358,4032a,0,2,f +2358,40490,0,2,f +2358,4070,15,2,f +2358,4070,320,4,f +2358,4081b,71,2,f +2358,4162,320,2,f +2358,4162,0,3,f +2358,4162,71,2,f +2358,41678,4,2,f +2358,41747,15,1,f +2358,41748,15,1,f +2358,41764,0,1,f +2358,41765,0,1,f +2358,41896,71,4,f +2358,41897,0,4,f +2358,4274,1,8,f +2358,4274,1,1,t +2358,43093,1,9,f +2358,44300,0,2,f +2358,44302a,15,2,f +2358,44567a,71,1,f +2358,44728,15,12,f +2358,4477,71,3,f +2358,4623,15,2,f +2358,4740,71,2,f +2358,4740,47,2,f +2358,48336,71,4,f +2358,48336,15,2,f +2358,48336,0,2,f +2358,4865a,71,8,f +2358,50950,15,8,f +2358,52031,15,1,f +2358,54200,15,12,f +2358,54200,15,1,t +2358,54200,71,1,t +2358,54200,36,2,f +2358,54200,0,1,t +2358,54200,182,1,t +2358,54200,320,2,f +2358,54200,320,1,t +2358,54200,36,1,t +2358,54200,182,4,f +2358,54200,71,4,f +2358,54200,0,2,f +2358,59426,72,4,f +2358,59443,71,8,f +2358,59443,0,6,f +2358,6005,0,2,f +2358,6005,15,2,f +2358,6019,71,1,f +2358,6019,0,4,f +2358,6041,0,1,f +2358,60470a,71,4,f +2358,60478,0,4,f +2358,60479,0,2,f +2358,6060,320,2,f +2358,6060,15,6,f +2358,6091,0,4,f +2358,61072,135,4,f +2358,6111,0,2,f +2358,6134,71,1,f +2358,6141,47,1,t +2358,6141,0,1,t +2358,6141,47,2,f +2358,6141,41,2,f +2358,6141,41,1,t +2358,6141,0,4,f +2358,61487,15,1,f +2358,61678,15,8,f +2358,6179,15,1,f +2358,6191,0,2,f +2358,6215,15,2,f +2358,6231,71,4,f +2358,6232,72,4,f +2358,6536,1,2,f +2358,6541,1,4,f +2358,6558,1,4,f +2358,6636,15,1,f +2358,73983,0,4,f +2358,73983,15,2,f +2358,772,15,6,f +2358,88930,15,4,f +2359,22408,179,1,f +2359,48493,0,1,f +2359,6541,0,1,f +2359,85861,15,1,f +2359,970c00pr0947,0,1,f +2359,973pr3191c01,4,1,f +2360,3003,1,1,f +2360,3021,4,2,f +2360,3022,0,1,f +2360,3062b,15,1,t +2360,3062b,15,4,f +2360,3660,1,2,f +2360,3700,14,2,f +2361,2780,0,2,f +2361,2815,0,2,f +2361,2817,0,1,f +2361,2994,14,2,f +2361,3068b,0,1,f +2361,32009,3,2,f +2361,32012,22,1,f +2361,32013,0,4,f +2361,32015,0,2,f +2361,32034,0,2,f +2361,32039,0,5,f +2361,32062,0,7,f +2361,32123b,7,1,t +2361,32123b,7,2,f +2361,3705,0,2,f +2361,3706,0,2,f +2361,3707,0,1,f +2361,3713,7,5,f +2361,3713,7,1,t +2361,3737,0,2,f +2361,3749,7,5,f +2361,4019,7,3,f +2361,4185,14,2,f +2361,4519,0,2,f +2361,6536,0,1,f +2361,6578,0,2,f +2361,6587,8,1,f +2361,6628,0,1,f +2361,6629,0,1,f +2361,6632,14,4,f +2361,75535,14,1,t +2361,78c07,3,2,f +2361,bb298c82,15,1,f +2362,2436,14,1,f +2362,2540,72,4,f +2362,3020,0,2,f +2362,3021,14,2,f +2362,3022,72,3,f +2362,3062b,72,2,f +2362,3065,40,2,f +2362,3070b,46,2,f +2362,3070b,46,1,t +2362,3176,14,3,f +2362,32028,14,2,f +2362,3710,72,1,f +2362,4081b,14,4,f +2362,4274,71,1,f +2362,4274,71,1,t +2362,44674,14,1,f +2362,4600,71,2,f +2362,4623,72,1,f +2362,4735,0,2,f +2362,4865a,0,1,f +2362,54200,14,1,t +2362,54200,14,2,f +2362,6014b,71,4,f +2362,61409,0,2,f +2362,6141,72,1,t +2362,6141,36,1,t +2362,6141,182,1,t +2362,6141,72,2,f +2362,6141,36,2,f +2362,6141,182,3,f +2362,6231,0,2,f +2362,87697,0,4,f +2363,12825,0,13,f +2363,12825,15,30,f +2363,14226c11,0,2,f +2363,14226c11,0,1,t +2363,2335,0,12,f +2363,2343,297,1,f +2363,2420,19,2,f +2363,2431,0,4,f +2363,2445,0,7,f +2363,2449,0,10,f +2363,2456,0,1,f +2363,2489,70,1,f +2363,2527,70,3,f +2363,2530,72,1,t +2363,2530,72,4,f +2363,2540,19,14,f +2363,2544,19,1,f +2363,2561,70,2,f +2363,2562,70,1,f +2363,2566,0,6,f +2363,2654,19,11,f +2363,2780,0,17,f +2363,2780,0,2,t +2363,2817,0,4,f +2363,3001,320,8,f +2363,3003,0,12,f +2363,3003,320,4,f +2363,30033,0,1,f +2363,3004,308,12,f +2363,3004,19,7,f +2363,3004,0,17,f +2363,3005,71,12,f +2363,3005,70,12,f +2363,3009,0,4,f +2363,3009,71,2,f +2363,30099,0,2,f +2363,3010,0,6,f +2363,30145,0,2,f +2363,30150,70,1,f +2363,3020,72,16,f +2363,3022,72,16,f +2363,3023,72,13,f +2363,3023,28,21,f +2363,30237a,0,2,f +2363,3029,72,1,f +2363,3034,0,2,f +2363,30355,72,1,f +2363,30356,72,1,f +2363,3036,72,1,f +2363,30363,0,4,f +2363,30374,70,2,f +2363,30374,15,6,f +2363,30377,15,10,f +2363,30377,0,2,t +2363,30377,15,2,t +2363,30377,0,6,f +2363,3039,0,15,f +2363,3039,70,3,f +2363,3040b,0,12,f +2363,3040b,71,2,f +2363,30504,0,2,f +2363,3062b,47,1,f +2363,3062b,15,2,f +2363,3062b,72,6,f +2363,3068b,70,15,f +2363,3068bpr0139a,19,1,f +2363,3069b,70,8,f +2363,3069b,0,22,f +2363,3070bpr0058,272,1,t +2363,3070bpr0058,272,1,f +2363,32013,0,20,f +2363,32016,71,1,f +2363,32028,19,6,f +2363,32034,0,16,f +2363,32062,4,3,f +2363,32064b,72,1,f +2363,32530,72,1,f +2363,3308,71,1,f +2363,3460,19,2,f +2363,3623,0,5,f +2363,3626bpr0789,78,1,f +2363,3626bpr0842,70,1,f +2363,3626bpr0843,84,1,f +2363,3626bpr0844,78,1,f +2363,3626bpr0852,78,1,f +2363,3626bpr0853,78,1,f +2363,3626bpr0854,78,1,f +2363,3626bpr0895,15,19,f +2363,3659,308,8,f +2363,3660,0,3,f +2363,3666,72,5,f +2363,3666,19,1,f +2363,3678b,0,2,f +2363,3679,71,1,f +2363,3680,71,1,f +2363,3684,0,4,f +2363,3701,70,4,f +2363,3705,0,10,f +2363,3708,0,3,f +2363,3709,0,2,f +2363,3710,70,7,f +2363,3737,0,1,f +2363,3794b,70,4,f +2363,3795,19,1,f +2363,3795,70,1,f +2363,3832,70,3,f +2363,3832,72,6,f +2363,3849,0,2,f +2363,3941,0,13,f +2363,3956,71,6,f +2363,3957a,0,2,f +2363,40239,0,1,f +2363,4032a,484,1,f +2363,4032a,71,16,f +2363,4081b,72,8,f +2363,4085c,71,10,f +2363,40902,71,1,f +2363,4162,0,2,f +2363,4195stk01,9999,1,t +2363,4274,1,4,f +2363,4274,1,1,t +2363,4282,0,2,f +2363,4286,0,2,f +2363,43093,1,3,f +2363,43892,0,1,f +2363,43898,0,1,f +2363,44294,70,12,f +2363,44375a,0,1,f +2363,44567a,14,1,f +2363,4460b,0,1,f +2363,4477,0,9,f +2363,4495b,0,2,f +2363,4497,0,5,f +2363,4519,71,1,f +2363,4522,0,2,f +2363,4599b,14,2,f +2363,4623,0,2,f +2363,4643137,9999,1,t +2363,4644166,9999,1,t +2363,4733,72,1,f +2363,4733,15,1,f +2363,4740,0,7,f +2363,47457,72,1,f +2363,4790b,70,1,f +2363,47994,0,2,f +2363,47996,0,2,f +2363,48002a,0,4,f +2363,48336,0,9,f +2363,48723,70,1,f +2363,48729b,71,5,f +2363,48729b,71,2,t +2363,50451,15,1,f +2363,50950,0,4,f +2363,54200,72,4,f +2363,54200,72,2,t +2363,57895,47,1,f +2363,59230,15,1,t +2363,59230,15,2,f +2363,59426,72,2,f +2363,59900,34,1,f +2363,59900,70,4,f +2363,59900,182,7,f +2363,59900,0,32,f +2363,60115,0,2,f +2363,60115,15,4,f +2363,60169,72,1,f +2363,6019,15,1,f +2363,60470a,71,4,f +2363,60475a,0,14,f +2363,60477,0,2,f +2363,60478,72,4,f +2363,60594,0,3,f +2363,60596,0,1,f +2363,60603,47,1,f +2363,60607,297,4,f +2363,6091,0,4,f +2363,6091,14,2,f +2363,6111,0,2,f +2363,6126b,182,6,f +2363,6126b,182,1,t +2363,6141,0,1,t +2363,6141,72,104,f +2363,6141,72,5,t +2363,6141,0,2,f +2363,6141,182,1,t +2363,6141,182,2,f +2363,61678,0,2,f +2363,62462,0,1,f +2363,6266,15,4,f +2363,63864,71,2,f +2363,63868,71,4,f +2363,64645,308,2,f +2363,64651,308,2,f +2363,6541,72,4,f +2363,6558,1,2,f +2363,6628,0,24,f +2363,6636,71,1,f +2363,73983,72,4,f +2363,75347,0,3,f +2363,75c12,0,1,f +2363,84943,148,3,f +2363,87081,72,3,f +2363,87087,0,6,f +2363,87580,71,1,f +2363,87693,28,1,f +2363,90398pr0004,28,1,f +2363,92280,71,4,f +2363,92691,15,14,f +2363,92691,15,3,t +2363,92950,0,2,f +2363,93060,182,1,f +2363,93160,15,6,f +2363,95220pr0001,0,1,f +2363,95222pr0001,0,1,f +2363,95224pr0001,0,1,f +2363,95227,308,3,f +2363,95228,40,2,f +2363,95229,0,2,f +2363,95343,70,1,f +2363,95344,28,1,f +2363,95344,28,1,t +2363,95350,179,1,f +2363,95352pr0001,308,1,f +2363,95354,0,1,f +2363,96423,320,4,f +2363,96710,320,2,f +2363,96715,320,1,f +2363,96717,320,1,f +2363,96799,320,1,f +2363,970c00,28,1,f +2363,970c00,72,1,f +2363,970c00,71,1,f +2363,970c00,0,1,f +2363,970c00pr0217,70,1,f +2363,970c00pr0251,308,1,f +2363,970c00pr0252,0,1,f +2363,973pr1770c01,308,1,f +2363,973pr1840c01,70,1,f +2363,973pr1841c01,320,1,f +2363,973pr1842c01,0,1,f +2363,973pr1844c01,288,1,f +2363,973pr1851c01,72,1,f +2363,973pr1852c01,288,1,f +2363,98800pr0002,47,1,f +2365,3003,14,10,f +2365,3004,14,6,f +2365,3005,14,2,f +2365,3009,14,1,f +2365,3010,14,7,f +2365,3010,0,2,f +2365,3020,14,11,f +2365,3021,14,12,f +2365,3022,14,4,f +2365,3023,14,13,f +2365,3030,14,3,f +2365,3031,0,1,f +2365,3032,14,1,f +2365,3034,14,4,f +2365,3039,14,3,f +2365,3040b,0,2,f +2365,3460,14,6,f +2365,3482,7,4,f +2365,3634,0,4,f +2365,3647,7,4,f +2365,3648a,7,2,f +2365,3650a,7,1,f +2365,3651,7,2,f +2365,3660,14,3,f +2365,3666,14,1,f +2365,3673,7,15,f +2365,3679,7,6,f +2365,3680,14,6,f +2365,3700,14,15,f +2365,3701,14,10,f +2365,3702,14,6,f +2365,3703,14,4,f +2365,3705,0,4,f +2365,3706,0,4,f +2365,3707,0,1,f +2365,3709,14,1,f +2365,3710,14,7,f +2365,3713,7,14,f +2365,3736,7,2,f +2365,3737,0,3,f +2365,3738,14,1,f +2365,3743,7,8,f +2366,30132,8,1,t +2366,30132,8,1,f +2366,30141,8,1,f +2366,30150,6,1,f +2366,30152pat0001,0,1,f +2366,30158,6,1,f +2366,30167,6,1,f +2366,30169,0,1,f +2366,3069bp03,7,1,f +2366,3626bpa3,14,1,f +2366,3795,2,1,f +2366,3837,8,1,f +2366,970c00,0,1,f +2366,973pb0391c01,19,1,f +2367,3673,7,20,f +2367,3700,14,4,f +2367,3701,14,4,f +2367,3702,14,4,f +2367,3703,14,2,f +2367,3709,14,2,f +2367,3738,14,2,f +2368,2458,71,1,f +2368,2460,71,1,f +2368,2479,0,1,f +2368,2877,71,1,f +2368,3001,15,4,f +2368,3001,14,4,f +2368,3001,4,4,f +2368,3001,2,2,f +2368,3001,0,2,f +2368,3001,1,4,f +2368,3003,25,1,f +2368,3003,1,14,f +2368,3003,14,14,f +2368,3003,15,14,f +2368,3003,27,4,f +2368,3003,2,6,f +2368,3003,0,6,f +2368,3003,4,14,f +2368,3004,2,2,f +2368,3004,15,2,f +2368,3004,4,4,f +2368,3004,14,6,f +2368,3004,1,2,f +2368,3004,27,2,f +2368,3004,25,2,f +2368,3004pr0003,15,1,f +2368,3005,27,4,f +2368,3005,4,4,f +2368,3005,14,2,f +2368,3005,1,2,f +2368,3008,4,2,f +2368,3010,1,2,f +2368,3010,15,2,f +2368,3010,14,5,f +2368,3010,0,2,f +2368,3010,25,2,f +2368,3010,2,2,f +2368,3010,4,2,f +2368,3020,1,2,f +2368,3020,25,3,f +2368,3021,4,2,f +2368,3023,25,4,f +2368,3023,0,3,f +2368,3037,0,6,f +2368,3037,1,1,f +2368,3039,4,2,f +2368,3039,47,1,f +2368,3039,1,3,f +2368,3039,0,5,f +2368,3039,15,1,f +2368,3659,4,4,f +2368,3666,4,5,f +2368,3710,25,2,f +2368,3710,1,2,f +2368,3794b,0,1,f +2368,3795,1,2,f +2368,3823,47,1,f +2368,3829c01,15,1,f +2368,4006,0,1,f +2368,4600,71,2,f +2368,4623,15,1,f +2368,4624,15,4,f +2368,54200,0,2,f +2368,54200,0,1,t +2368,60598,4,2,f +2368,60599,4,1,f +2368,60608,15,4,f +2368,60623,15,1,f +2368,6141,46,1,t +2368,6141,36,1,t +2368,6141,46,2,f +2368,6141,36,2,f +2368,87414,0,4,f +2368,93608,10,1,f +2371,2376,0,1,f +2371,2419,71,1,f +2371,2420,0,2,f +2371,2420,272,2,f +2371,2431,0,2,f +2371,2432,70,4,f +2371,2436,15,3,f +2371,2444,72,2,f +2371,2456,0,1,f +2371,2460,0,1,f +2371,2479,0,1,f +2371,2489,70,2,f +2371,2540,72,2,f +2371,2555,0,4,f +2371,2654,72,1,f +2371,2714a,0,2,f +2371,2723,0,1,f +2371,2730,0,2,f +2371,2744,0,2,f +2371,3001,272,1,f +2371,3003,14,1,f +2371,3003,71,2,f +2371,30033,15,1,f +2371,3004,272,4,f +2371,3009,0,1,f +2371,30170,72,1,t +2371,30171,0,1,f +2371,30173b,0,1,f +2371,30177,1,1,f +2371,3020,70,1,f +2371,3020,0,5,f +2371,3020,72,1,f +2371,3020,15,2,f +2371,3021,272,3,f +2371,3021,72,10,f +2371,3022,4,6,f +2371,3023,36,4,f +2371,3023,15,3,f +2371,3023,1,1,f +2371,3023,0,2,f +2371,3023,73,8,f +2371,3024,15,2,f +2371,3031,0,4,f +2371,3031,72,2,f +2371,30367b,15,8,f +2371,30374,70,4,f +2371,30386,0,6,f +2371,3039,272,9,f +2371,30395,72,1,f +2371,3040b,15,2,f +2371,30414,72,2,f +2371,30414,15,2,f +2371,3046a,272,2,f +2371,3049d,15,7,f +2371,30553,0,3,f +2371,3062b,33,2,f +2371,3068bpr0187,15,1,f +2371,32013,0,1,f +2371,32015,0,4,f +2371,32054,0,4,f +2371,32059,15,1,f +2371,32059,0,2,f +2371,32062,4,5,f +2371,32064b,71,5,f +2371,32123b,71,1,f +2371,32123b,71,1,t +2371,32556,19,1,f +2371,3623,0,4,f +2371,3626bpr0494,15,4,f +2371,3626bpr0746,14,1,f +2371,3626bpr0748,14,1,f +2371,3626bpr0751a,15,1,f +2371,3647,72,1,f +2371,3647,72,1,t +2371,3648b,72,1,f +2371,3660,15,2,f +2371,3660,72,4,f +2371,3666,272,10,f +2371,3678b,71,2,f +2371,3700,72,1,f +2371,3705,0,2,f +2371,3707,0,1,f +2371,3710,0,3,f +2371,3710,15,2,f +2371,3794b,272,23,f +2371,3794b,15,2,f +2371,3795,0,2,f +2371,4032a,70,4,f +2371,41532,0,1,f +2371,41747,0,1,f +2371,41748,0,1,f +2371,4274,71,1,t +2371,4274,71,2,f +2371,4287,0,2,f +2371,43093,1,3,f +2371,43712,15,1,f +2371,43713,72,2,f +2371,43722,72,4,f +2371,43723,72,4,f +2371,44301a,72,4,f +2371,44568,15,1,f +2371,44570,71,1,f +2371,44728,0,2,f +2371,44728,15,3,f +2371,4497,297,2,f +2371,4519,71,2,f +2371,4589,182,2,f +2371,4589,15,12,f +2371,4697b,71,2,f +2371,4697b,71,1,t +2371,47452,72,2,f +2371,47455,0,7,f +2371,47753,272,1,f +2371,47759,272,6,f +2371,48169,72,5,f +2371,48170,72,3,f +2371,48171,72,2,f +2371,48336,71,1,f +2371,48729b,0,1,t +2371,48729b,0,3,f +2371,48933,15,2,f +2371,50947,4,2,f +2371,50950,85,2,f +2371,50950,272,4,f +2371,52107,0,4,f +2371,53451,297,12,f +2371,53451,297,1,t +2371,53562,0,4,f +2371,53989,15,4,f +2371,53989,0,6,f +2371,54200,272,10,f +2371,54200,85,1,t +2371,54200,143,23,f +2371,54200,73,18,f +2371,54200,272,1,t +2371,54200,73,1,t +2371,54200,85,2,f +2371,54200,143,2,t +2371,54383,72,1,f +2371,54384,72,1,f +2371,54821,33,2,f +2371,55982,71,2,f +2371,56145,71,2,f +2371,56823c50,0,1,f +2371,57585,71,4,f +2371,57906,0,4,f +2371,57908,72,4,f +2371,57909a,72,1,f +2371,59232,179,1,f +2371,59233pat0001,41,1,f +2371,59426,72,1,f +2371,59443,71,3,f +2371,59443,0,1,f +2371,60169,71,2,f +2371,60477,15,2,f +2371,60479,15,2,f +2371,60752,297,1,f +2371,61053,72,1,f +2371,61184,71,4,f +2371,6126b,182,2,f +2371,61403,71,1,f +2371,61409,0,4,f +2371,6141,14,16,f +2371,6141,36,4,f +2371,6141,85,1,t +2371,6141,14,2,t +2371,6141,36,1,t +2371,6141,85,2,f +2371,61510,71,1,f +2371,61678,15,2,f +2371,62462,0,2,f +2371,62743,73,8,f +2371,63864,0,2,f +2371,63868,0,4,f +2371,63868,71,2,f +2371,63965,70,1,f +2371,64275,148,2,f +2371,64567,0,4,f +2371,64727,297,4,f +2371,6541,15,10,f +2371,6541,0,2,f +2371,6564,0,2,f +2371,6565,0,2,f +2371,6587,28,2,f +2371,6636,15,8,f +2371,72454,72,1,f +2371,73983,0,16,f +2371,73983,15,3,f +2371,87079pr0008,15,2,f +2371,87087,72,2,f +2371,87580,272,18,f +2371,87747,297,6,f +2371,87747,15,8,f +2371,87751,85,1,f +2371,89652,72,4,f +2371,92013,72,4,f +2371,92338,297,1,f +2371,92547pr0018,35,1,f +2371,92582,0,2,f +2371,92690,297,2,f +2371,92692,0,2,f +2371,93057pr0001,0,1,f +2371,93061,15,4,f +2371,93061,15,1,t +2371,93062c01,15,4,f +2371,93065pr0001,15,1,f +2371,93069,15,1,f +2371,93070pr0004,73,1,f +2371,93072pr0003,72,1,f +2371,93271pr0001,15,1,f +2371,93763pr0003,15,1,f +2371,94071pr0002,0,1,f +2371,970c00pr0219,1,1,f +2371,970c00pr0238,0,1,f +2371,973pr1749c01,1,1,f +2371,973pr1806c01,0,1,f +2372,12825,71,2,f +2372,12825,15,4,f +2372,2341,71,2,f +2372,2431,47,4,f +2372,2460,15,1,f +2372,298c02,71,5,f +2372,298c02,71,1,t +2372,30162,71,8,f +2372,30162,72,3,f +2372,3021,15,2,f +2372,3021,72,4,f +2372,3022,15,2,f +2372,3023,72,8,f +2372,3023,15,6,f +2372,3023,71,4,f +2372,3024,25,2,f +2372,3024,71,3,f +2372,30374,71,4,f +2372,3062b,0,1,f +2372,3062b,47,3,f +2372,3068b,4,2,f +2372,3068b,15,2,f +2372,3068bpr0206,4,2,f +2372,3068bpr0211,72,1,f +2372,3068bpr0212,72,1,f +2372,3069b,71,1,f +2372,3070b,71,2,f +2372,3070b,71,1,t +2372,3623,15,2,f +2372,3623,71,2,f +2372,3623,72,2,f +2372,3710,71,8,f +2372,3794b,71,2,f +2372,3794b,15,2,f +2372,3795,15,29,f +2372,3795,72,6,f +2372,3957a,47,2,f +2372,4032a,71,6,f +2372,4070,0,1,f +2372,4085c,71,2,f +2372,42446,71,2,f +2372,43722,15,2,f +2372,43723,15,2,f +2372,4595,71,2,f +2372,4733,71,3,f +2372,4740,0,1,f +2372,4740,15,1,f +2372,47905,71,8,f +2372,49668,179,2,f +2372,52107,71,1,f +2372,53451,179,1,t +2372,53451,179,1,f +2372,54200,143,3,f +2372,54200,143,1,t +2372,54200,71,4,f +2372,54200,25,1,t +2372,54200,25,4,f +2372,54200,40,2,f +2372,54200,71,1,t +2372,54200,40,1,t +2372,60474,15,20,f +2372,60474,72,8,f +2372,60478,72,2,f +2372,60897,72,1,f +2372,6141,72,1,t +2372,6141,19,1,t +2372,6141,72,3,f +2372,6141,47,7,f +2372,6141,47,1,t +2372,6141,19,3,f +2372,62462,15,1,f +2372,63864,15,4,f +2372,64776pat0001,0,1,f +2372,73983,71,8,f +2372,85863pr0083,0,1,f +2372,85863pr0084,25,1,f +2372,85863pr0085,272,1,f +2372,85863pr0086,70,1,f +2372,85863pr0089,72,1,f +2372,85863pr0090,378,1,f +2372,85863pr0091,15,12,f +2372,85863pr0092,15,4,f +2372,85863pr0093,19,9,f +2372,85863pr0094,148,1,f +2372,87079,71,4,f +2372,87580,212,14,f +2372,87580,71,14,f +2372,92585,4,1,f +2372,92690,71,1,f +2373,2412b,0,4,f +2373,3003,15,2,f +2373,3004,15,4,f +2373,3009,15,2,f +2373,3010,15,13,f +2373,30153,45,1,f +2373,30153,41,1,f +2373,3020,232,2,f +2373,3023,71,2,f +2373,3030,232,2,f +2373,3031,232,1,f +2373,3032,232,1,f +2373,30362,15,2,f +2373,30374,45,1,f +2373,3063b,15,8,f +2373,33006,4,1,f +2373,33009,14,1,f +2373,33085,14,1,f +2373,33291,5,1,t +2373,33291,5,3,f +2373,33291,14,1,t +2373,33291,14,1,f +2373,33291,25,2,f +2373,33291,25,1,t +2373,3626b,41,1,f +2373,3701,71,2,f +2373,3741,2,2,f +2373,3852b,115,1,f +2373,3899,45,2,f +2373,3941,46,1,f +2373,3941,25,1,f +2373,3957a,14,1,f +2373,3960,33,1,f +2373,4070,15,4,f +2373,4523,1,1,f +2373,4528,0,1,f +2373,4588,33,2,f +2373,4864b,15,4,f +2373,6111,15,2,f +2373,6179,15,2,f +2373,6179,5,2,f +2373,6187,25,1,f +2373,6191,25,3,f +2373,6195,232,1,f +2373,6197b,15,1,f +2373,6198,5,1,f +2373,6936,135,2,f +2375,10928,72,4,f +2375,14769pr1003,15,2,f +2375,15279,10,2,f +2375,15535,72,2,f +2375,17114,0,1,f +2375,18575,0,2,f +2375,18651,0,2,f +2375,18674,15,2,f +2375,18746,191,2,f +2375,19071,15,1,f +2375,20841,15,1,f +2375,20844,15,1,f +2375,21980,15,1,f +2375,23241,0,1,f +2375,2458,71,4,f +2375,2654,0,6,f +2375,2780,0,1,t +2375,2780,0,8,f +2375,2815,0,2,f +2375,298c02,15,1,t +2375,298c02,15,2,f +2375,3001,191,4,f +2375,3001,322,2,f +2375,3003,0,4,f +2375,3003,322,2,f +2375,3004,322,6,f +2375,3010,322,2,f +2375,3023,15,6,f +2375,3040b,27,4,f +2375,3040b,0,2,f +2375,3062b,34,2,f +2375,3062b,46,2,f +2375,3062b,36,2,f +2375,3069b,322,2,f +2375,3176,71,1,f +2375,32001,191,4,f +2375,32012,72,1,f +2375,32013,15,2,f +2375,32016,322,2,f +2375,32059,27,2,f +2375,32062,4,4,f +2375,32064a,72,4,f +2375,32123b,14,1,t +2375,32123b,14,4,f +2375,32192,27,2,f +2375,32198,19,2,f +2375,32270,0,2,f +2375,32474,191,4,f +2375,32524,10,2,f +2375,32526,10,2,f +2375,32530,0,4,f +2375,3648b,72,2,f +2375,3665,191,4,f +2375,3666,15,4,f +2375,3700,27,4,f +2375,3701,27,4,f +2375,3702,27,2,f +2375,3703,27,2,f +2375,3706,0,2,f +2375,3709,191,4,f +2375,3710,15,4,f +2375,3713,71,1,t +2375,3713,71,4,f +2375,3737,0,2,f +2375,3738,10,2,f +2375,3743,15,4,f +2375,3749,19,4,f +2375,3895,27,2,f +2375,3941,41,4,f +2375,4032a,10,2,f +2375,4162,71,4,f +2375,4185,41,6,f +2375,42022,41,2,f +2375,42022,27,4,f +2375,4282,0,2,f +2375,4286,191,4,f +2375,4287,27,4,f +2375,44294,71,2,f +2375,44728,15,2,f +2375,4519,71,2,f +2375,45300stk01,9999,1,t +2375,45590,0,2,f +2375,4716,71,1,f +2375,4727,10,1,f +2375,50950,27,2,f +2375,55982,15,6,f +2375,56891,0,2,f +2375,57909b,72,2,f +2375,59443,71,2,f +2375,60169,72,2,f +2375,60474,322,2,f +2375,60479,15,2,f +2375,60481,71,4,f +2375,6141,0,1,t +2375,6141,0,4,f +2375,61485,0,1,f +2375,62462,10,2,f +2375,64799,71,2,f +2375,6588,47,1,f +2375,85544,4,2,f +2375,85546,14,2,f +2375,85984,191,4,f +2375,87083,72,2,f +2375,87087,15,2,f +2375,92013,41,4,f +2375,92402,0,4,f +2375,93273,322,2,f +2375,96874,25,1,t +2375,98138pr0008,15,2,f +2375,98138pr0008,15,1,t +2375,98262,4,1,f +2376,24633pr0002,15,1,f +2376,24634,29,1,f +2376,24779,15,1,f +2376,88646,0,1,f +2376,970c00pr1035,15,1,f +2376,973pr3316c01,31,1,f +2377,10201,14,4,f +2377,10247,4,2,f +2377,11153,14,2,f +2377,11203,72,4,f +2377,11214,72,2,f +2377,11399,72,4,f +2377,11477,72,2,f +2377,15070,14,14,f +2377,15429pr0002,4,1,f +2377,15443,70,1,f +2377,2335,14,2,f +2377,2357,4,2,f +2377,2412b,71,4,f +2377,2412b,0,14,f +2377,2419,71,1,f +2377,2420,14,10,f +2377,2431pr0002,14,1,f +2377,2432,0,4,f +2377,2460,4,2,f +2377,2540,71,2,f +2377,2540,72,1,f +2377,2654,47,3,f +2377,2780,0,4,f +2377,2780,0,1,t +2377,2877,71,10,f +2377,298c02,71,1,t +2377,298c02,71,2,f +2377,3001,14,1,f +2377,3003,1,4,f +2377,3004,2,2,f +2377,3005,14,4,f +2377,3009,14,8,f +2377,3010,14,6,f +2377,3010,71,2,f +2377,3010,0,4,f +2377,3020,71,20,f +2377,3021,72,12,f +2377,3022,1,2,f +2377,3022,71,4,f +2377,3023,0,11,f +2377,3024,320,1,t +2377,3024,191,2,f +2377,3024,320,2,f +2377,3030,71,2,f +2377,3031,71,3,f +2377,3032,71,3,f +2377,3032,0,1,f +2377,3036,72,1,f +2377,30361c,14,2,f +2377,30364,14,4,f +2377,30365,72,2,f +2377,30367c,0,2,f +2377,30394,0,2,f +2377,3040b,71,4,f +2377,30414,1,2,f +2377,30602,14,2,f +2377,3062b,71,4,f +2377,3069b,14,2,f +2377,3069b,72,2,f +2377,3070b,36,2,f +2377,3070b,14,4,f +2377,3070b,14,1,t +2377,3070b,36,1,t +2377,3070bpr0007,71,2,f +2377,3070bpr0007,71,1,t +2377,32000,14,1,f +2377,32000,71,4,f +2377,32013,71,4,f +2377,32014,14,10,f +2377,32016,0,2,f +2377,32028,14,2,f +2377,32039,71,1,f +2377,32062,4,3,f +2377,32064a,0,7,f +2377,32192,72,2,f +2377,32270,0,1,f +2377,32316,72,2,f +2377,32316,71,1,f +2377,32348,71,4,f +2377,32526,14,4,f +2377,32556,19,12,f +2377,3298,14,3,f +2377,3460,72,2,f +2377,3622pr0004,4,1,f +2377,3623,191,1,f +2377,3623,4,1,f +2377,3623,14,4,f +2377,3626cpr1336,71,2,f +2377,3626cpr1496,14,1,f +2377,3665,0,16,f +2377,3666,71,1,f +2377,3700,14,10,f +2377,3700,72,5,f +2377,3705,0,4,f +2377,3710,72,7,f +2377,3713,4,1,t +2377,3713,4,1,f +2377,3747b,14,6,f +2377,3749,19,1,f +2377,3794b,1,4,f +2377,3795,72,4,f +2377,3894,0,6,f +2377,3937,1,2,f +2377,3941,27,2,f +2377,3943b,72,4,f +2377,3960,71,2,f +2377,4032a,4,2,f +2377,4032a,72,2,f +2377,4032a,1,2,f +2377,4081b,72,2,f +2377,4150,27,2,f +2377,41531,71,3,f +2377,42022,14,2,f +2377,4274,1,2,t +2377,4274,1,6,f +2377,4286,0,4,f +2377,4287,0,2,f +2377,43093,1,2,f +2377,43903,0,4,f +2377,44224,72,2,f +2377,44225,71,2,f +2377,44294,71,4,f +2377,4490pr0002,4,1,f +2377,4519,71,10,f +2377,45677,14,5,f +2377,4590,72,1,f +2377,4740,71,4,f +2377,4742,1,2,f +2377,47455,0,2,f +2377,47456,14,2,f +2377,47457,4,1,f +2377,48169,72,2,f +2377,48171,72,2,f +2377,48336,14,1,f +2377,50745,14,2,f +2377,50950,14,10,f +2377,54200,4,2,f +2377,54200,4,1,t +2377,54200,36,1,t +2377,54200,14,12,f +2377,54200,14,3,t +2377,54200,36,2,f +2377,55981,14,12,f +2377,59230,71,4,f +2377,59230,71,1,t +2377,59426,72,5,f +2377,60115,71,2,f +2377,60474,0,6,f +2377,60477,14,10,f +2377,60478,72,14,f +2377,60481,14,4,f +2377,6091,14,4,f +2377,6112,72,2,f +2377,61252,0,6,f +2377,6134,15,1,f +2377,61409,72,6,f +2377,6141,0,1,t +2377,6141,4,1,f +2377,6141,0,6,f +2377,6141,71,2,t +2377,6141,71,24,f +2377,6141,4,1,t +2377,6232,14,2,f +2377,62462,14,2,f +2377,6259,1,4,f +2377,6266,71,4,f +2377,6266,71,1,t +2377,63864,14,10,f +2377,63868,1,2,f +2377,63965,72,2,f +2377,6541,4,4,f +2377,6553,72,2,f +2377,6558,1,26,f +2377,75937,0,2,f +2377,85545,1,1,f +2377,85861,320,1,t +2377,85861,320,1,f +2377,85984,14,2,f +2377,87580,0,2,f +2377,87617,14,2,f +2377,87618,71,2,f +2377,88072,72,2,f +2377,88930,14,2,f +2377,89522,4,1,t +2377,89522,4,1,f +2377,92220,148,8,f +2377,92338,179,2,f +2377,92946,72,4,f +2377,92946,14,6,f +2377,93273,14,1,f +2377,93274,0,2,f +2377,93550,179,2,f +2377,93550,179,1,t +2377,95347,14,2,f +2377,96874,25,1,t +2377,970c00pr0605,25,1,f +2377,973pr2538c01,25,1,f +2377,98138,47,6,f +2377,98138,47,2,t +2377,98313,72,2,f +2377,99773,14,2,f +2377,99780,72,4,f +2379,498,0,2,f +2382,10127stk01,9999,2,f +2382,10127stk02,9999,1,f +2382,10127stk03,9999,2,f +2382,43559,0,2,f +2382,43559,25,2,f +2382,43559,2,2,f +2382,43559,15,2,f +2382,43559,4,2,f +2382,43559,1,2,f +2382,44791,15,2,f +2382,65182stk01,9999,2,f +2382,rb00184,9999,1,f +2384,30165,15,1,f +2384,3022,15,1,f +2384,3795,30,1,f +2384,48995pr0004,15,1,f +2384,87079pr0054,15,1,f +2384,93085pr02,15,1,f +2385,3626bpr0942,14,1,f +2385,72326pr0001,272,1,f +2385,88646,0,1,f +2385,95199,0,1,f +2385,970c00pr0314,272,1,f +2385,973pr2023c01,272,1,f +2385,99254,272,1,f +2386,122c01,0,2,f +2386,3001,14,1,f +2386,3003,14,1,f +2386,3003,4,2,f +2386,3004,14,2,f +2386,3010pb035e,14,1,f +2386,3020,14,3,f +2386,3020,0,2,f +2386,3021,14,2,f +2386,3022,14,2,f +2386,3023,0,4,f +2386,3031,0,1,f +2386,3032,14,1,f +2386,3039,14,1,f +2386,3062a,7,1,f +2386,3062a,46,1,f +2386,3068b,0,2,f +2386,3127,7,1,f +2386,3149c01,0,1,f +2386,3176,0,2,f +2386,3626apr0001,14,1,f +2386,3641,0,4,f +2386,3678a,47,2,f +2386,3679,7,1,f +2386,3680,0,1,f +2386,3710,14,1,f +2386,3710,0,1,f +2386,3787,0,1,f +2386,3788,14,1,f +2386,3832,0,3,f +2386,3833,4,1,f +2386,3840,14,1,f +2386,56823,0,1,f +2386,73037,14,1,f +2386,970c00,1,1,f +2386,973c02,4,1,f +2387,14226c11,0,1,f +2387,3062b,4,4,f +2387,3062b,41,7,f +2387,3062b,14,2,f +2387,3626cpr0388,14,1,f +2387,3626cpr0893,14,1,f +2387,3626cpr0920,14,1,f +2387,3626cpr0929,14,1,f +2387,3834,320,2,f +2387,4085c,4,1,f +2387,4349,4,2,f +2387,4599b,14,2,f +2387,4740,71,3,f +2387,6126b,57,2,f +2387,6126b,41,1,f +2387,62810,484,1,f +2387,64567,71,1,f +2387,87990,308,1,f +2387,92926,72,1,f +2387,970c00,0,1,f +2387,970c00pr0408,0,3,f +2387,973pr2188c01,0,2,f +2387,973pr2189c01,0,1,f +2387,973pr2249c01,15,1,f +2388,11212,72,2,f +2388,11476,71,3,f +2388,11477,72,6,f +2388,12825,0,1,f +2388,15541pat0001,1,1,f +2388,18738,71,1,t +2388,18738,71,1,f +2388,2412b,71,4,f +2388,2412b,14,2,f +2388,2432,0,1,f +2388,2569,0,1,t +2388,2569,0,1,f +2388,3010,72,1,f +2388,30157,71,3,f +2388,30194,72,1,f +2388,3020,0,3,f +2388,3023,36,2,f +2388,3024,36,1,t +2388,3024,36,2,f +2388,30293,41,1,f +2388,30294,41,1,f +2388,3036,72,1,f +2388,30374,71,1,f +2388,30385,80,1,f +2388,30386,14,2,f +2388,30387,14,1,f +2388,30395,72,1,f +2388,30396,0,1,f +2388,3040b,25,2,f +2388,3176,71,2,f +2388,3626cpr1410,14,1,f +2388,3666,15,1,f +2388,3710,15,4,f +2388,3795,72,1,f +2388,3821,25,1,f +2388,3822,25,1,f +2388,3829c01,71,1,f +2388,3832,0,1,f +2388,41532,0,1,f +2388,4176,41,1,f +2388,43903,0,2,f +2388,44728,0,2,f +2388,4740,15,1,f +2388,47457,14,1,f +2388,52031,25,1,f +2388,54200,47,1,t +2388,54200,47,2,f +2388,55981,71,6,f +2388,60478,72,2,f +2388,60849,71,1,t +2388,60849,71,1,f +2388,60897,25,2,f +2388,6091,15,2,f +2388,6111,72,2,f +2388,61252,72,4,f +2388,6141,47,6,f +2388,6141,47,1,t +2388,64567,71,1,f +2388,64567,71,1,t +2388,6636,71,2,f +2388,74698,0,1,f +2388,85984,25,2,f +2388,85984,72,2,f +2388,970c00pr0645,1,1,f +2388,973pr2641c01,25,1,f +2388,98280,25,1,f +2388,99206,71,2,f +2388,99780,72,4,f +2390,2412b,71,1,f +2390,2432,71,1,f +2390,3034,0,1,f +2390,3040b,15,2,f +2390,3069b,33,2,f +2390,3624,15,1,f +2390,3626bpr0409,14,1,f +2390,3666,1,2,f +2390,3678b,15,1,f +2390,3710,15,1,f +2390,3710,1,1,f +2390,4083,15,1,f +2390,4085c,15,1,f +2390,43713,15,1,f +2390,44675,71,1,f +2390,44728,15,1,f +2390,4599b,71,1,f +2390,48183,1,1,f +2390,4854,15,1,f +2390,4865a,40,1,f +2390,48729b,0,1,t +2390,48729b,0,2,f +2390,59900,71,2,f +2390,6141,46,1,t +2390,6141,46,1,f +2390,970c00,0,1,f +2390,973pr1186c01,0,1,f +2391,272,15,1,f +2391,3003,14,3,f +2391,3003,15,4,f +2391,3003,1,3,f +2391,3004,15,9,f +2391,3004,1,4,f +2391,3004prc,15,2,f +2391,3005,15,11,f +2391,3005,0,4,f +2391,3008,15,12,f +2391,3009,15,12,f +2391,3010,15,7,f +2391,3010,0,4,f +2391,3010,1,2,f +2391,3020,1,1,f +2391,3021,15,2,f +2391,3021,14,2,f +2391,3022,15,1,f +2391,3023,15,1,f +2391,3029,4,1,f +2391,3030,15,1,f +2391,3031,1,1,f +2391,3032,15,3,f +2391,3033,15,2,f +2391,3040b,15,8,f +2391,3040b,1,2,f +2391,3062a,15,9,f +2391,3062a,47,4,f +2391,3068b,1,12,f +2391,3068b,15,14,f +2391,3069b,1,8,f +2391,3069b,15,27,f +2391,3137c01,15,2,f +2391,3139,0,4,f +2391,3183a,15,1,f +2391,3298,15,6,f +2391,3460,0,2,f +2391,3460,4,1,f +2391,3460,15,2,f +2391,3471,2,1,f +2391,3612,15,2,f +2391,3612,1,2,f +2391,3613,1,2,f +2391,3613,15,6,f +2391,3614b,4,1,f +2391,3614b,14,8,f +2391,3622,15,10,f +2391,3623,4,4,f +2391,3665,1,2,f +2391,3665,15,8,f +2391,3666,4,15,f +2391,3666,15,4,f +2391,3684,15,2,f +2391,3710,4,1,f +2391,3710,15,7,f +2391,3741,2,9,f +2391,3742,1,5,t +2391,3742,14,5,t +2391,3742,1,15,f +2391,3742,14,15,f +2391,3754,15,26,f +2391,3755,15,12,f +2391,3761,6,5,f +2391,3762,47,5,f +2391,3794a,15,2,f +2391,3811,4,1,f +2391,3830,15,2,f +2391,3831,15,2,f +2391,3857,4,1,f +2391,670,6,2,f +2391,671,4,2,f +2391,678,4,5,f +2391,679,6,3,f +2391,685p01,14,2,f +2391,685px3,14,1,f +2391,685px4,14,1,f +2391,69c01,15,1,f +2391,791,1,4,f +2391,792c03,15,3,f +2391,792c03,1,1,f +2391,837,15,3,f +2391,838,1,3,f +2391,x196,0,2,f +2391,x197,6,1,f +2391,x197,0,1,f +2392,3853,4,12,f +2392,3854,15,12,f +2392,3855,47,6,f +2392,3856,2,8,f +2392,3861b,4,4,f +2392,73312,4,2,f +2393,11291,4,1,f +2393,12825,0,1,f +2393,30031,0,1,f +2393,3020,0,1,f +2393,3021,72,1,f +2393,32013,0,4,f +2393,32064b,0,4,f +2393,32556,19,2,f +2393,3623,4,2,f +2393,3626cpr0897,78,1,f +2393,3665,4,2,f +2393,3713,4,4,f +2393,3794b,4,1,f +2393,4519,71,4,f +2393,47458,4,1,f +2393,56630,0,1,f +2393,56902,4,2,f +2393,61254,0,2,f +2393,61409,0,2,f +2393,970x026,4,1,f +2393,973pr1949bc01,4,1,f +2393,99930,0,1,f +2395,6007,8,2,f +2397,2340pb030,4,1,f +2397,3001,7,1,f +2397,3009pb102l,15,2,f +2397,3009pb103,15,2,f +2397,3009pb104r,15,2,f +2397,3010pb089,4,10,f +2397,3020,7,1,f +2397,3021,4,2,f +2397,3021,15,2,f +2397,3021,7,2,f +2397,3023,15,1,f +2397,3034,7,2,f +2397,3037,15,8,f +2397,3037pb009,15,2,f +2397,3038,15,2,f +2397,3039,47,1,f +2397,3039,15,2,f +2397,3069b,4,1,f +2397,3139,0,6,f +2397,3585,7,1,f +2397,3586,7,1,f +2397,3660,7,4,f +2397,3665,7,2,f +2397,3794a,15,4,f +2397,3832,15,2,f +2397,3933a,7,1,f +2397,3934a,7,1,f +2397,4624,7,6,f +2397,4854,7,3,f +2397,4855,7,1,f +2397,4856a,15,1,f +2397,4856a,7,1,f +2397,4856a,4,1,f +2397,4858,15,1,f +2397,4859,7,1,f +2397,4861,15,1,f +2397,4868a,15,2,f +2397,4869,7,2,f +2397,4870,7,3,f +2398,3003pe2,14,1,f +2398,3004,1,4,f +2398,3010,14,4,f +2398,3020,4,3,f +2398,3022,4,3,f +2398,3039,4,1,f +2398,3039,47,1,f +2398,3298,1,4,f +2398,3626bpr0001,14,1,f +2398,3660,14,2,f +2398,3741,2,1,f +2398,3741,2,1,t +2398,3742,15,1,t +2398,3742,15,3,f +2398,3747a,14,2,f +2398,3957a,15,1,f +2398,4485,4,1,f +2398,6564,4,1,f +2398,6565,4,1,f +2398,970c00,0,1,f +2398,973c20,15,1,f +2399,11211,15,2,f +2399,11477,322,2,f +2399,14769pr1062,322,2,f +2399,15068,191,4,f +2399,15068,72,1,f +2399,15391,15,1,f +2399,15392,72,1,t +2399,15392,72,3,f +2399,15403,0,2,f +2399,15790,0,2,f +2399,16985pr0103,148,1,f +2399,2420,71,2,f +2399,2420,15,2,f +2399,2540,15,1,f +2399,2780,0,1,t +2399,2780,0,1,f +2399,29227,47,1,f +2399,29553,308,1,f +2399,29555,308,1,f +2399,30153,36,1,f +2399,30153,42,2,f +2399,3020,72,2,f +2399,3021,191,2,f +2399,3021,72,1,f +2399,3022,71,1,f +2399,3022,191,2,f +2399,3023,15,3,f +2399,3023,2,2,f +2399,30357,72,2,f +2399,30385,42,1,f +2399,30385,36,2,f +2399,30414,71,2,f +2399,3069b,72,2,f +2399,3070bpr0174,4,1,t +2399,3070bpr0174,4,2,f +2399,32062,4,2,f +2399,32064a,15,3,f +2399,32192,72,2,f +2399,3660,15,3,f +2399,3710,15,1,f +2399,3710,72,2,f +2399,3710,191,1,f +2399,3749,19,2,f +2399,41234stk01,9999,1,f +2399,41531,15,1,f +2399,43093,1,1,f +2399,4345b,71,2,f +2399,4346,47,2,f +2399,44568,71,2,f +2399,46667,72,1,f +2399,4733,15,2,f +2399,48336,71,2,f +2399,4865a,15,2,f +2399,48729b,72,1,f +2399,48729b,72,1,t +2399,50747,47,1,f +2399,50949,0,2,f +2399,51739,71,1,f +2399,54200,36,1,t +2399,54200,322,2,f +2399,54200,36,6,f +2399,54200,322,1,t +2399,54200,182,2,f +2399,54200,182,1,t +2399,60478,72,4,f +2399,60897,4,4,f +2399,6141,45,1,t +2399,6141,182,4,f +2399,6141,35,1,t +2399,6141,35,2,f +2399,6141,41,4,f +2399,6141,45,2,f +2399,6141,41,1,t +2399,6141,182,1,t +2399,62462,15,1,f +2399,63868,71,2,f +2399,85984,72,2,f +2399,87079,2,2,f +2399,87552,71,2,f +2399,92092,72,1,f +2399,92280,15,2,f +2399,92456pr0206,148,1,f +2399,99207,71,4,f +2399,99781,71,1,f +2401,11211,15,1,f +2401,14417,72,2,f +2401,14418,71,2,f +2401,14769pr1003,15,2,f +2401,15535,4,2,f +2401,2357,4,10,f +2401,2420,4,4,f +2401,2456,4,13,f +2401,2458,14,4,f +2401,2458,4,1,f +2401,2654,15,2,f +2401,3001,4,10,f +2401,3004,4,4,f +2401,3005,4,4,f +2401,3006,4,10,f +2401,3008,4,4,f +2401,3009,72,4,f +2401,3009,4,4,f +2401,3010,4,6,f +2401,3020,4,2,f +2401,3022,4,2,f +2401,3023,4,5,f +2401,30357,4,6,f +2401,30414,15,1,f +2401,32013,4,1,f +2401,32014,4,1,f +2401,32015,4,2,f +2401,32062,0,3,f +2401,33078,4,2,f +2401,3460,4,2,f +2401,3622,4,8,f +2401,3679,71,2,f +2401,3680,4,2,f +2401,3701,71,2,f +2401,3710,4,1,f +2401,3710,72,2,f +2401,3832,4,5,f +2401,6019,4,2,f +2401,60474,71,1,f +2401,6111,4,2,f +2401,87081,4,5,f +2403,20151pr0001,14,1,f +2403,20398pr0001,27,1,f +2403,3068bpr0250,15,1,f +2403,88646,0,1,f +2403,970c00pr0831,73,1,f +2403,973pr2974c01,321,1,f +2405,2431,71,4,f +2405,2431,19,4,f +2405,2445,0,8,f +2405,2456,19,2,f +2405,3001,19,4,f +2405,30055,19,12,f +2405,3020,71,10,f +2405,3020,19,4,f +2405,3021,19,4,f +2405,3022,72,2,f +2405,3023,19,2,f +2405,3024,19,10,f +2405,3030,72,2,f +2405,3033,72,3,f +2405,3062b,19,48,f +2405,3068b,71,7,f +2405,3069b,378,13,f +2405,3069b,0,6,f +2405,3069b,19,8,f +2405,3070b,19,9,f +2405,3070b,19,1,t +2405,3245c,19,12,f +2405,3460,19,2,f +2405,3623,19,2,f +2405,3666,71,6,f +2405,3710,19,1,f +2405,3710,71,8,f +2405,3794b,19,8,f +2405,3795,19,10,f +2405,3795,0,1,f +2405,4162,0,7,f +2405,4162pr0012,0,1,f +2405,4162pr0014,0,1,f +2405,4599b,71,4,f +2405,4623,71,1,f +2405,4733,71,1,f +2405,54200,378,2,t +2405,54200,378,80,f +2405,6141,71,5,f +2405,6141,19,1,t +2405,6141,19,32,f +2405,6141,71,1,t +2405,6636,71,6,f +2405,87580,19,13,f +2406,3004,4,2,f +2406,3010,4,1,f +2406,3020,27,1,f +2406,3020,4,1,f +2406,3020,2,1,f +2406,3020,15,1,f +2406,3022,2,2,f +2406,3023,27,4,f +2406,3023,2,2,f +2406,3023,15,4,f +2406,3024,4,8,f +2406,3039,4,6,f +2406,3795,2,1,f +2406,3795,4,1,f +2406,54200,4,4,f +2406,6141,0,4,f +2407,11097,297,1,f +2407,11097,179,1,f +2407,11100,15,2,f +2407,11100,0,2,f +2407,11103,179,1,f +2407,11127,41,1,f +2407,11129pr0001,70,1,f +2407,11233pr0003,71,1,f +2407,12549pr0003,15,1,f +2407,12550pr0003,0,1,f +2407,12825,15,2,f +2407,12825,0,2,f +2407,30374,41,1,f +2407,30374,71,1,f +2407,3626cpr1119,19,1,f +2407,3626cpr1126,212,1,f +2407,3626cpr1131,0,1,f +2407,3626cpr1137,71,1,f +2407,64567,297,1,f +2407,64644,297,1,f +2407,87747,15,1,f +2407,92690,297,1,f +2407,92690,71,1,f +2407,970c00pr0436,71,1,f +2407,970c00pr0439,0,1,f +2407,970c01pr0435,15,1,f +2407,970c02pr0430,19,1,f +2407,973pr2226c01,19,1,f +2407,973pr2231c01,212,1,f +2407,973pr2237c01,71,1,f +2407,973pr2241c01,0,1,f +2407,98138,41,3,f +2407,98138,36,2,f +2407,98139,297,1,f +2407,98141,179,1,f +2409,3001a,4,13,f +2409,3001a,14,3,f +2409,3001a,0,7,f +2409,3002a,14,4,f +2409,3002a,4,6,f +2409,3003,4,10,f +2409,3003,1,3,f +2409,3003,0,15,f +2409,3004,4,14,f +2409,3005,14,6,f +2409,3008,4,2,f +2409,3009,4,10,f +2409,3009,47,6,f +2409,3010,14,3,f +2409,3010,4,4,f +2409,3022,4,3,f +2409,3026,4,1,f +2409,3030,4,1,f +2409,3031,4,1,f +2409,3032,4,1,f +2409,3034,4,2,f +2409,3037,4,4,f +2409,3038,4,14,f +2409,3040a,4,8,f +2409,3062a,1,6,f +2409,3127b,4,1,f +2409,3149c01,4,1,f +2409,3183a,4,2,f +2409,3184,4,2,f +2409,3403,4,1,f +2409,3404,4,1,f +2409,3456,4,2,f +2409,3483,0,18,f +2409,3613,0,12,f +2409,3614a,14,12,f +2409,3660,4,28,f +2409,559c01,4,1,f +2409,685px2,14,2,f +2409,685px3,14,2,f +2409,685px4,14,2,f +2409,7039,4,18,f +2409,7049b,0,9,f +2409,792c03,0,6,f +2409,850,14,1,f +2409,851a,14,1,f +2409,852,14,1,f +2409,bb15a,4,6,f +2409,rb00164,0,1,f +2411,2343,47,2,f +2411,2412b,72,2,f +2411,2419,15,1,f +2411,2431,4,2,f +2411,2436,0,3,f +2411,2445,15,2,f +2411,2508,0,1,f +2411,2540,0,2,f +2411,3003,72,2,f +2411,3004,4,2,f +2411,30170,72,1,f +2411,30171,70,1,f +2411,3020,14,5,f +2411,3022,0,2,f +2411,3023,15,3,f +2411,3024,14,2,f +2411,30332,0,1,f +2411,3034,71,2,f +2411,30367b,14,1,f +2411,3037,4,4,f +2411,30374,70,1,f +2411,30602,40,1,f +2411,3065,47,1,f +2411,3069b,4,2,f +2411,3069b,15,2,f +2411,3069b,27,2,f +2411,3139,0,2,f +2411,32064b,2,1,f +2411,32123b,14,1,f +2411,32123b,14,1,t +2411,3298,4,1,f +2411,3626bpr0043,14,1,f +2411,3626bpr0270,14,1,f +2411,3666,72,2,f +2411,3710,72,4,f +2411,3795,0,2,f +2411,4032a,15,1,f +2411,4070,15,2,f +2411,4085c,15,6,f +2411,41531,0,1,f +2411,43337,14,1,f +2411,43713,15,1,f +2411,43719,72,1,f +2411,4488,0,2,f +2411,4495b,272,1,f +2411,4599a,15,2,f +2411,4623,0,1,f +2411,4624,15,2,f +2411,47397,15,1,f +2411,47398,15,1,f +2411,4854,15,2,f +2411,50950,4,2,f +2411,54200,80,1,t +2411,54200,80,8,f +2411,59426,72,1,f +2411,6141,29,1,t +2411,6141,70,2,f +2411,6141,29,2,f +2411,6141,70,1,t +2411,6183,0,1,f +2411,6239,15,1,f +2411,62696,308,1,f +2411,63965,15,2,f +2411,970c00,379,1,f +2411,970c00,70,1,f +2411,973pr1166c01,272,1,f +2411,973pr1173c01,4,1,f +2412,32062,4,2,f +2412,32062,4,1,t +2412,4274,71,3,t +2412,4274,71,1,f +2412,48729b,0,1,t +2412,48729b,0,1,f +2412,53551,148,1,t +2412,53551,148,3,f +2412,54821,10,1,f +2412,57539pat0004,47,1,f +2412,64262,42,1,f +2412,87812pat0003,179,1,f +2412,87814,1,1,f +2412,90609,72,2,f +2412,90611,27,2,f +2412,90617,0,4,f +2412,90625,0,1,f +2412,90641,27,2,f +2412,90650,1,2,f +2412,90650,27,2,f +2412,90661,1,2,f +2412,92216,179,2,f +2412,93571,72,1,f +2412,93575,27,1,f +2412,98562,148,2,f +2412,98563,148,1,f +2412,98564,148,1,f +2412,98569pr0003,1,1,f +2412,98570pat01,15,1,f +2414,2815,0,4,f +2414,3001,4,4,f +2414,3021,0,4,f +2414,3460,0,4,f +2414,3623,0,4,f +2414,3647,7,4,f +2414,3648a,7,4,f +2414,3649,7,2,f +2414,3650,7,2,f +2414,3651,7,8,f +2414,3666,0,4,f +2414,3673,7,16,f +2414,3700,4,12,f +2414,3701,4,8,f +2414,3702,4,2,f +2414,3703,4,2,f +2414,3705,0,6,f +2414,3706,0,4,f +2414,3707,0,2,f +2414,3708,0,2,f +2414,3709,0,6,f +2414,3710,0,4,f +2414,3711a,0,90,f +2414,3713,7,16,f +2414,3736,7,1,f +2414,3737,0,2,f +2414,3738,0,4,f +2414,3743,7,2,f +2414,3894,4,2,f +2414,3895,4,2,f +2414,4019,7,2,f +2414,4032a,4,4,f +2414,4143,7,6,f +2414,4185,7,6,f +2414,4204,2,1,f +2414,4265a,7,10,f +2414,4350c02,7,1,f +2414,4716,7,2,f +2414,56823,0,1,f +2414,6216b,7,1,f +2414,73071,7,1,f +2414,766c96,7,1,f +2414,9244,7,1,f +2414,case1032c01,9999,1,f +2414,rb00167,0,3,f +2414,rb00169,0,5,f +2414,rb00170,0,5,f +2415,cre010,9999,1,f +2416,2412b,15,2,f +2416,2446,1,1,f +2416,2447,40,1,f +2416,2447,40,1,t +2416,2540,71,1,f +2416,2610,14,1,f +2416,3020,15,1,f +2416,3023,0,1,f +2416,3024,36,1,f +2416,3024,34,1,f +2416,3298,0,1,f +2416,3626bpr0389,14,1,f +2416,3666,25,2,f +2416,3666,0,2,f +2416,3710,25,1,f +2416,3829c01,15,1,f +2416,3962b,0,1,f +2416,4081b,72,2,f +2416,4085c,15,2,f +2416,43722,25,1,f +2416,43723,25,1,f +2416,47755,25,1,f +2416,4854,72,1,f +2416,4855,72,1,f +2416,4871,72,1,f +2416,54200,25,2,f +2416,54200,25,1,t +2416,54200,47,2,f +2416,54200,47,1,t +2416,970c00,1,1,f +2416,973pr1363c01,14,1,f +2417,2436,15,2,f +2417,30016,15,1,f +2417,3003,15,1,f +2417,3004,15,4,f +2417,3008,5,1,f +2417,3010,15,3,f +2417,3010,1,3,f +2417,3020,15,1,f +2417,3031,15,1,f +2417,3039,14,1,f +2417,3062b,47,2,f +2417,3062b,34,1,f +2417,3062b,36,1,f +2417,3062b,15,2,f +2417,3068b,15,4,f +2417,3069bpr0099,15,2,f +2417,3307,13,4,f +2417,3626bpa1,14,1,f +2417,3659,5,2,f +2417,3741,2,2,f +2417,3742,14,2,t +2417,3742,14,6,f +2417,3855,47,1,f +2417,3899,47,2,f +2417,3940b,15,2,f +2417,4105438f,9999,1,f +2417,4150,15,2,f +2417,4161pb01,74,1,f +2417,45,383,1,f +2417,4589,15,2,f +2417,6141,47,2,f +2417,6141,47,1,t +2417,6161,20,1,f +2417,6165,15,1,f +2417,6178,13,2,f +2417,6179,15,1,f +2417,6179,13,1,f +2417,6179,5,1,f +2417,6180,5,1,f +2417,6182,15,2,f +2417,6182,13,2,f +2417,6183,13,4,f +2417,6184,5,1,f +2417,6186,14,1,f +2417,6187,5,2,f +2417,6190,74,1,f +2417,6191,15,1,f +2417,6192,5,2,f +2417,6197b,5,1,f +2417,6198,5,2,f +2417,6203,15,1,f +2417,6215,5,2,f +2417,6255,2,2,f +2417,6256,1,2,f +2417,6556,1,1,f +2417,bel001,74,1,f +2417,belvfem12,9999,1,f +2417,belvfem20,9999,1,f +2417,belvmale6,9999,1,f +2417,belvmale9,9999,1,f +2417,belvskirt02,15,1,f +2417,crutch,8,2,f +2417,legcast,15,1,f +2417,pouch07,15,2,f +2418,ms1034,151,1,f +2419,3020,15,24,f +2419,728,7,1,f +2419,729,47,1,f +2420,2780,0,2,f +2420,32013,27,2,f +2420,32015,27,2,f +2420,32062,0,2,f +2420,32138,0,1,f +2420,32140,0,2,f +2420,32553,2,3,f +2420,32554,42,1,f +2420,32575,27,1,f +2420,3749,7,1,f +2420,40341,2,1,f +2420,4519,0,2,f +2420,6553,0,2,f +2420,6553,27,2,f +2420,71509,0,1,f +2420,71509,0,1,t +2421,2340,15,4,f +2421,2340,0,2,f +2421,2357,15,3,f +2421,2362a,15,1,f +2421,2412b,15,2,f +2421,2419,15,1,f +2421,2420,7,4,f +2421,2420,15,2,f +2421,2420,0,4,f +2421,2431,15,4,f +2421,2431,0,3,f +2421,2432,0,2,f +2421,2433,0,4,f +2421,2445,0,2,f +2421,2445,15,1,f +2421,2446,8,1,f +2421,2447,42,3,f +2421,2452,0,4,f +2421,2458,15,7,f +2421,2483,33,1,f +2421,2507,33,1,f +2421,2569,42,4,f +2421,2607,15,2,f +2421,2654,15,4,f +2421,2880,0,2,f +2421,298c02,15,1,f +2421,30000,15,1,f +2421,3001,15,4,f +2421,3001,0,3,f +2421,3003,15,7,f +2421,30033,15,1,f +2421,30034,15,4,f +2421,30035,15,2,f +2421,30036,15,5,f +2421,30037,15,4,f +2421,30038,8,2,f +2421,3004,15,12,f +2421,3004,0,14,f +2421,3006,15,2,f +2421,3009,15,2,f +2421,3010,0,2,f +2421,3020,15,8,f +2421,3020,0,7,f +2421,3021,0,8,f +2421,3021,15,8,f +2421,3022,15,5,f +2421,3022,0,17,f +2421,3022,4,2,f +2421,3023,42,6,f +2421,3023,0,17,f +2421,3023,15,16,f +2421,3024,0,9,f +2421,3024,15,2,f +2421,3029,15,1,f +2421,3030,15,2,f +2421,3031,0,2,f +2421,3032,15,1,f +2421,3032,0,1,f +2421,3033,15,2,f +2421,3034,15,3,f +2421,3034,7,1,f +2421,3034,0,1,f +2421,3035,15,1,f +2421,3039,15,6,f +2421,3039p15,15,3,f +2421,3040b,0,1,f +2421,3040b,15,10,f +2421,3062b,33,2,f +2421,3068b,0,3,f +2421,3068b,15,2,f +2421,3068bp10,15,3,f +2421,3069b,15,2,f +2421,3069b,0,8,f +2421,3069bp017,0,1,f +2421,3069bp09,15,3,f +2421,3069bp21,0,5,f +2421,3069bp50,15,2,f +2421,3070b,15,4,f +2421,3298,0,2,f +2421,3403c01,15,1,f +2421,3460,0,4,f +2421,3460,15,1,f +2421,3479,0,1,f +2421,3479,15,2,f +2421,3622,15,8,f +2421,3623,0,2,f +2421,3626bp64,47,1,f +2421,3626bp69,14,2,f +2421,3626bpb0057,14,1,f +2421,3660,15,9,f +2421,3665,15,2,f +2421,3666,0,9,f +2421,3666,15,3,f +2421,3673,7,3,f +2421,3676,15,4,f +2421,3679,7,1,f +2421,3680,15,1,f +2421,3700,7,11,f +2421,3701,7,2,f +2421,3705,0,2,f +2421,3708,0,2,f +2421,3709,7,1,f +2421,3710,0,4,f +2421,3710,15,4,f +2421,3747b,15,8,f +2421,3749,7,2,f +2421,3794a,1,1,f +2421,3795,0,4,f +2421,3795,15,8,f +2421,3832,0,5,f +2421,3832,15,6,f +2421,3838,0,3,f +2421,3839b,0,1,f +2421,3895,15,2,f +2421,3933,0,1,f +2421,3933,15,1,f +2421,3934,0,1,f +2421,3934,15,1,f +2421,3937,15,5,f +2421,3938,0,5,f +2421,3940b,0,2,f +2421,3941,42,3,f +2421,3942b,15,3,f +2421,3943b,15,5,f +2421,3956,15,2,f +2421,3960,33,1,f +2421,3960,42,3,f +2421,3960,36,1,f +2421,4032a,0,3,f +2421,4081b,15,1,f +2421,4084,0,4,f +2421,4085c,15,2,f +2421,4150,0,2,f +2421,4229,15,2,f +2421,4275b,0,18,f +2421,4276b,15,16,f +2421,4282,0,1,f +2421,4285b,0,2,f +2421,4286,15,8,f +2421,4287,15,4,f +2421,4315,15,4,f +2421,4349,15,1,f +2421,4474,33,3,f +2421,4476b,0,1,f +2421,4477,0,1,f +2421,4504,0,4,f +2421,4531,15,12,f +2421,4589,42,4,f +2421,4590,0,2,f +2421,4595,0,4,f +2421,4600,7,2,f +2421,4624,15,4,f +2421,4625,15,1,f +2421,4740,42,17,f +2421,4740,33,2,f +2421,4854,15,3,f +2421,4859,0,1,f +2421,4864a,15,1,f +2421,6044,15,4,f +2421,6058,15,1,f +2421,6069,15,4,f +2421,6118,0,2,f +2421,6141,42,6,f +2421,6141,46,1,f +2421,6179,0,1,f +2421,6249,15,1,f +2421,6259,33,2,f +2421,6536,7,3,f +2421,6541,15,11,f +2421,6564,15,1,f +2421,6565,15,1,f +2421,73092,0,2,f +2421,73983,15,11,f +2421,73983,0,3,f +2421,970c00pb019,15,1,f +2421,970x026,7,3,f +2421,973p63c02,15,1,f +2421,973pb0003c01,15,1,f +2421,973pb0004c01,15,1,f +2421,973px133c01,15,1,f +2422,2452,2,1,f +2422,3001,2,1,f +2422,3002,2,1,f +2422,3020,2,3,f +2422,3021,2,1,f +2422,3022,2,2,f +2422,3023,4,2,f +2422,3023,2,7,f +2422,3023,14,1,f +2422,3024,2,1,f +2422,3024,4,4,f +2422,3069b,4,1,f +2422,32000,2,1,f +2422,3623,4,1,f +2422,3700,2,3,f +2422,3710,2,2,f +2422,3794a,2,7,f +2422,4274,7,3,f +2422,4276b,2,1,f +2422,6141,41,2,f +2422,6141,15,2,f +2423,6588,14,1,f +2425,3001,15,1,f +2425,3003,15,1,f +2425,3004,15,1,f +2425,3020,2,1,f +2425,3020,4,1,f +2425,3039pr0001,15,1,f +2425,3062b,34,2,f +2425,3062b,46,2,f +2425,4865a,47,1,f +2426,2431,25,1,f +2426,3004,72,1,f +2426,3020,25,3,f +2426,3021,25,1,f +2426,3022,72,3,f +2426,3023,0,1,f +2426,30236,72,1,f +2426,3034,72,1,f +2426,30602,0,1,f +2426,30602,72,1,f +2426,3795,25,1,f +2426,3795,72,1,f +2426,50947,72,4,f +2426,6014b,0,4,f +2426,60700,0,4,f +2426,6157,0,2,f +2428,24791,19,1,f +2428,3068bpr0293,15,1,f +2428,3626cpr1888,78,1,f +2428,88646,0,1,f +2428,970c00pr1040,4,1,f +2428,973pr3329c01,4,1,f +2429,29540,4,2,f +2429,29540,2,2,f +2429,29540,1,1,f +2429,29540pb01,14,1,f +2429,29541,2,1,f +2430,14226c11,0,1,f +2430,2339,0,2,f +2430,2343,0,2,f +2430,2357,72,2,f +2430,2362b,71,1,f +2430,2362b,70,2,f +2430,2412b,1,4,f +2430,2431,378,2,f +2430,2444,71,2,f +2430,2453a,19,2,f +2430,2454a,19,7,f +2430,2454a,72,12,f +2430,2489,70,1,f +2430,2493b,70,1,f +2430,2494px1,0,1,f +2430,2540,0,4,f +2430,2555,15,1,f +2430,2586ph1,71,1,f +2430,2654,71,4,f +2430,2780,0,13,f +2430,3003,72,4,f +2430,3003,19,2,f +2430,3004,70,4,f +2430,3004,19,51,f +2430,3004,72,10,f +2430,30041,0,1,f +2430,30042,72,1,f +2430,30044,70,9,f +2430,30046,0,9,f +2430,3005,36,3,f +2430,3005,52,2,f +2430,3005,33,3,f +2430,3005,71,21,f +2430,3005,19,28,f +2430,3008,19,12,f +2430,3009,19,13,f +2430,3010,19,3,f +2430,3010,72,2,f +2430,30103,0,1,f +2430,30106,47,1,f +2430,30126p01,15,4,f +2430,30134,70,2,f +2430,30136,71,67,f +2430,30152pat0001,52,1,f +2430,30181,0,1,f +2430,3020,70,6,f +2430,3021,0,5,f +2430,3021,320,1,f +2430,3021,71,2,f +2430,3022,19,3,f +2430,3023,320,1,f +2430,3023,19,2,f +2430,3023,0,30,f +2430,30237a,71,1,f +2430,30237a,0,1,f +2430,30238,42,2,f +2430,30238,36,1,f +2430,3024,72,1,f +2430,30240,72,2,f +2430,30246,19,2,f +2430,30274,71,1,f +2430,3030,0,1,f +2430,3030,70,1,f +2430,3033,72,2,f +2430,3034,72,2,f +2430,3034,0,1,f +2430,3035,0,2,f +2430,3036,0,1,f +2430,30374,0,1,f +2430,30374,72,1,f +2430,30374,71,1,f +2430,3039,4,2,f +2430,3039,72,17,f +2430,3040b,4,2,f +2430,3040b,72,1,f +2430,3044b,72,2,f +2430,3048c,378,4,f +2430,30562,19,4,f +2430,3062b,33,1,f +2430,3062b,36,4,f +2430,3062b,42,1,f +2430,3062b,70,19,f +2430,3062b,72,2,f +2430,3062b,57,1,f +2430,3068b,0,1,f +2430,3068b,4,2,f +2430,3068b,19,1,f +2430,3068b,72,1,f +2430,3068bpb0014,378,1,f +2430,3069b,72,6,f +2430,3069b,4,2,f +2430,3069b,70,1,f +2430,3069bpr0055,15,1,f +2430,3070b,34,1,f +2430,3070b,34,1,t +2430,3070b,72,1,t +2430,3070b,36,1,t +2430,3070b,36,1,f +2430,3070b,72,2,f +2430,32000,71,1,f +2430,32013,2,2,f +2430,32039,1,1,f +2430,32062,4,1,f +2430,32073,71,1,f +2430,32123b,71,1,t +2430,32123b,71,2,f +2430,32198,71,1,f +2430,32269,71,1,f +2430,32316,71,2,f +2430,33009,2,1,f +2430,33009pb002,19,1,f +2430,3307,71,9,f +2430,3307,19,4,f +2430,3308,71,5,f +2430,3308,19,4,f +2430,33216,70,2,f +2430,33227,72,1,f +2430,33320,2,1,f +2430,3455,19,1,f +2430,3460,0,16,f +2430,3460,70,1,f +2430,3622,19,2,f +2430,3623,320,2,f +2430,3623,71,4,f +2430,3623,72,2,f +2430,3626bpr0190,15,1,f +2430,3647,71,2,f +2430,3648b,71,2,f +2430,3659,71,8,f +2430,3659,19,6,f +2430,3660,19,17,f +2430,3660,72,2,f +2430,3665,4,2,f +2430,3665,71,2,f +2430,3665,19,10,f +2430,3666,72,4,f +2430,3666,71,1,f +2430,3678b,72,6,f +2430,3678b,19,6,f +2430,3679,71,3,f +2430,3680,0,3,f +2430,3684,72,2,f +2430,3700,72,4,f +2430,3701,19,3,f +2430,3702,71,2,f +2430,3702,19,4,f +2430,3705,0,1,f +2430,3706,0,2,f +2430,3710,71,7,f +2430,3710,70,1,f +2430,3710,19,1,f +2430,3710,0,5,f +2430,3713,71,4,f +2430,3737,0,2,f +2430,3749,19,4,f +2430,3794a,4,3,f +2430,3794a,70,1,f +2430,3795,72,2,f +2430,3795,70,11,f +2430,3795,15,2,f +2430,3830,71,2,f +2430,3831,71,2,f +2430,3899,45,1,f +2430,3899,1,1,f +2430,3933,72,2,f +2430,3934,72,2,f +2430,3937,4,1,f +2430,3941,70,2,f +2430,3941,19,3,f +2430,3942c,378,5,f +2430,3943b,378,2,f +2430,3957a,0,1,f +2430,40232,15,1,f +2430,40232,0,1,f +2430,40234,71,1,f +2430,40249,71,1,f +2430,40253,72,1,f +2430,4032a,14,1,f +2430,4032a,4,2,f +2430,4032a,72,5,f +2430,4070,70,2,f +2430,4081b,71,2,f +2430,4085c,71,4,f +2430,4150,4,3,f +2430,41539,0,3,f +2430,41539,72,6,f +2430,4162,71,2,f +2430,4162,72,4,f +2430,41677,0,2,f +2430,4185,71,2,f +2430,42073c02,72,1,f +2430,4215bpx1,70,1,f +2430,42445,0,6,f +2430,42448,0,2,f +2430,4274,1,1,t +2430,4274,1,12,f +2430,4287,72,2,f +2430,4332,0,1,f +2430,43722,72,2,f +2430,43723,72,2,f +2430,43898,0,1,f +2430,44375apr02,15,1,f +2430,4460b,71,2,f +2430,4490,19,8,f +2430,4495a,72,1,f +2430,4510,72,3,f +2430,4589,33,1,f +2430,4589,378,5,f +2430,4589,34,2,f +2430,4589,57,2,f +2430,4599a,0,2,f +2430,4738a,70,1,f +2430,4739a,70,1,f +2430,4740,0,4,f +2430,4740pb02,15,1,f +2430,47543,378,2,f +2430,4757stk01,9999,1,t +2430,47974,71,1,f +2430,48092,19,4,f +2430,48336,70,6,f +2430,4865a,0,2,f +2430,4865a,4,2,f +2430,4871,4,1,f +2430,6019,1,8,f +2430,6111,0,1,f +2430,6126a,57,6,f +2430,6134,0,1,f +2430,6141,71,1,t +2430,6141,34,1,f +2430,6141,34,1,t +2430,6141,33,1,t +2430,6141,36,1,t +2430,6141,42,1,t +2430,6141,33,3,f +2430,6141,42,1,f +2430,6141,0,1,t +2430,6141,0,34,f +2430,6141,36,1,f +2430,6141,71,3,f +2430,6265,378,1,t +2430,6265,15,1,t +2430,62808,60,2,f +2430,6538b,71,3,f +2430,6541,0,2,f +2430,6587,72,1,f +2430,6636,71,2,f +2430,73983,71,4,f +2430,73983,0,2,f +2431,30169,320,1,f +2431,3626bpr0735,15,1,f +2431,88646,0,1,f +2431,970c00pr0187,15,1,f +2431,973pr1705c01,15,1,f +2432,2343,47,2,f +2432,2439,8,4,f +2432,2447,33,1,f +2432,2495,4,1,f +2432,2496,0,1,f +2432,2555,0,1,f +2432,2610,14,2,f +2432,2614,0,1,f +2432,30031,4,1,f +2432,3834,15,1,f +2432,3835,0,1,f +2432,3836,6,1,f +2432,3837,8,1,f +2432,3838,14,1,f +2432,3852b,6,1,f +2432,3899,1,2,f +2432,3900,15,2,f +2432,3901,6,1,f +2432,3901,0,2,f +2432,3962b,0,1,f +2432,4006,0,1,f +2432,4081b,4,1,f +2432,4349,7,1,f +2432,4360,0,1,f +2432,4449,15,1,f +2432,4449,6,1,f +2432,4522,0,1,f +2432,4528,0,1,f +2432,4529,0,1,f +2432,4599a,1,1,f +2432,4599a,4,1,f +2432,4740,8,4,f +2432,56823,0,1,f +2432,6093,4,1,f +2432,6141,46,1,f +2432,6158,0,1,f +2434,3001,15,1,f +2434,3003,14,5,f +2434,3004,4,2,f +2434,3004,15,4,f +2434,3004,14,11,f +2434,3005,0,2,f +2434,3005,14,1,f +2434,3008,14,1,f +2434,3009,14,7,f +2434,3009,0,2,f +2434,3010,14,2,f +2434,3020,4,1,f +2434,3021,15,1,f +2434,3022,0,1,f +2434,3028,14,1,f +2434,3037,15,1,f +2434,3038,4,4,f +2434,3039,4,6,f +2434,3041,4,2,f +2434,3062b,46,1,f +2434,3070b,4,1,f +2434,3070bp05,1,1,f +2434,3300,0,1,f +2434,3497,2,1,f +2434,3622,14,4,f +2434,3626bpr0001,14,2,f +2434,3633,15,2,f +2434,3741,2,2,f +2434,3742,4,3,f +2434,3742,1,1,t +2434,3742,1,3,f +2434,3742,4,1,t +2434,3794a,0,1,f +2434,3794a,14,1,f +2434,3795,15,1,f +2434,3853,15,1,f +2434,3855,47,1,f +2434,3899,47,1,f +2434,3901,6,1,f +2434,4070,14,3,f +2434,4079,15,2,f +2434,4445,4,7,f +2434,4447,15,1,f +2434,4448,47,1,f +2434,4528,0,1,f +2434,4530,0,1,f +2434,4533,15,1,f +2434,4589,1,1,f +2434,4599a,0,1,f +2434,4740,1,1,f +2434,4740,0,1,f +2434,4864a,0,1,f +2434,4865a,15,2,f +2434,6141,46,2,f +2434,6141,0,2,f +2434,73312,15,1,f +2434,92410,1,1,f +2434,970c00,4,1,f +2434,970c00,1,1,f +2434,973p22c01,0,1,f +2434,973px62c01,15,1,f +2436,11212,72,2,f +2436,11213,71,1,f +2436,11213,15,1,f +2436,14716,15,2,f +2436,14719,15,2,f +2436,15068,15,8,f +2436,15332,15,15,f +2436,15573,19,4,f +2436,18674,15,1,f +2436,21229,15,8,f +2436,2357,15,4,f +2436,2420,71,10,f +2436,2450,15,8,f +2436,2456,15,3,f +2436,3004,378,4,f +2436,3008,15,10,f +2436,3009,15,3,f +2436,3010,15,3,f +2436,3020,71,8,f +2436,3020,15,5,f +2436,3020,0,3,f +2436,3021,71,2,f +2436,3021,72,4,f +2436,3022,14,4,f +2436,3022,72,2,f +2436,3023,71,17,f +2436,3023,15,22,f +2436,3023,378,8,f +2436,3024,19,1,t +2436,3024,15,26,f +2436,3024,15,1,t +2436,3024,28,2,f +2436,3024,28,2,t +2436,3024,19,2,f +2436,3034,0,22,f +2436,30357,15,8,f +2436,3036,15,1,f +2436,3036,72,6,f +2436,30565,15,4,f +2436,3062b,15,12,f +2436,3069b,15,18,f +2436,3069b,378,28,f +2436,3069b,72,10,f +2436,3069b,71,14,f +2436,3070b,72,46,f +2436,3070b,71,1,t +2436,3070b,28,2,t +2436,3070b,72,1,t +2436,3070b,19,2,t +2436,3070b,19,12,f +2436,3070b,28,12,f +2436,3070b,71,12,f +2436,3070b,15,1,t +2436,3070b,15,19,f +2436,32000,15,18,f +2436,3460,71,15,f +2436,3622,15,14,f +2436,3623,15,8,f +2436,3623,71,8,f +2436,3666,71,10,f +2436,3675,378,4,f +2436,3710,72,4,f +2436,3710,71,4,f +2436,3794b,15,18,f +2436,3795,71,4,f +2436,3832,71,4,f +2436,4032a,15,7,f +2436,4070,15,178,f +2436,41539,72,2,f +2436,4162,71,5,f +2436,4162,15,4,f +2436,4162,0,17,f +2436,4162pr0047,0,1,f +2436,4286,378,36,f +2436,44375a,378,2,f +2436,4477,71,3,f +2436,4490,15,3,f +2436,4510,71,2,f +2436,4733,0,4,f +2436,48092,15,4,f +2436,54200,378,32,f +2436,54200,15,10,f +2436,54200,378,2,t +2436,54200,15,2,t +2436,59900,72,1,f +2436,60474,15,1,f +2436,6141,15,18,f +2436,6141,15,1,t +2436,6231,71,8,f +2436,63864,326,8,f +2436,63864,15,6,f +2436,64644,15,2,t +2436,64644,15,12,f +2436,6541,15,28,f +2436,6636,326,4,f +2436,6636,15,4,f +2436,6636,71,7,f +2436,6636,72,4,f +2436,85984,15,28,f +2436,87079,378,10,f +2436,87079,72,8,f +2436,87081,15,1,f +2436,87087,15,2,f +2436,88293,15,4,f +2436,90398,72,1,t +2436,90398,72,5,f +2436,90398,15,2,t +2436,90398,15,4,f +2436,92438,72,6,f +2436,92947,15,1,f +2436,96874,25,1,t +2436,98138,71,4,f +2436,98138,326,2,t +2436,98138,326,18,f +2439,2421,0,1,f +2439,3022,14,4,f +2439,3023,15,2,f +2439,3666,0,2,f +2439,3794b,14,2,f +2439,3794b,0,3,f +2439,3795,0,1,f +2439,3795,14,2,f +2439,4081b,71,2,f +2439,4286,0,1,f +2439,43722,14,1,f +2439,43723,14,1,f +2439,4488,0,1,f +2439,54200,40,2,f +2439,54200,15,1,t +2439,54200,40,1,t +2439,54200,36,1,f +2439,54200,15,4,f +2439,54200,14,2,f +2439,54200,14,1,t +2439,54200,36,1,t +2439,54383,14,1,f +2439,54384,14,1,f +2442,14728c100,0,1,f +2442,2412b,3,4,f +2442,2431,0,1,f +2442,2654,0,3,f +2442,2730,3,2,f +2442,2736,7,3,f +2442,2744,3,2,f +2442,2780,0,53,f +2442,2817,0,3,f +2442,2825,14,2,f +2442,3021,0,1,f +2442,3022,0,13,f +2442,3023,0,12,f +2442,3068b,0,3,f +2442,3176,0,4,f +2442,32000,0,4,f +2442,32001,0,1,f +2442,32002,8,11,f +2442,32012,1,1,f +2442,32013,7,1,f +2442,32013,0,10,f +2442,32014,0,3,f +2442,32015,0,4,f +2442,32016,0,7,f +2442,32017,0,2,f +2442,32034,0,4,f +2442,32039,0,20,f +2442,32039,7,1,f +2442,32054,0,5,f +2442,32056,0,8,f +2442,32056,3,6,f +2442,32056,14,2,f +2442,32062,0,24,f +2442,32063,7,4,f +2442,32063,3,2,f +2442,32065,0,2,f +2442,32068,0,6,f +2442,32068,3,1,f +2442,32073,0,12,f +2442,32123b,7,48,f +2442,32138,14,2,f +2442,32140,0,6,f +2442,32140,3,2,f +2442,32172,3,4,f +2442,32173,0,2,f +2442,32177,3,2,f +2442,32184,0,3,f +2442,32184,14,12,f +2442,32188,0,2,f +2442,32189,0,2,f +2442,32190,0,2,f +2442,32191,0,2,f +2442,32192,0,10,f +2442,32199,0,2,f +2442,32200,0,2,f +2442,32235,0,2,f +2442,3298,3,1,f +2442,3623,0,2,f +2442,3641,0,2,f +2442,3660,0,4,f +2442,3665,0,2,f +2442,3676,0,2,f +2442,3701,0,6,f +2442,3702,0,2,f +2442,3702,3,1,f +2442,3703,0,4,f +2442,3703,3,2,f +2442,3705,0,19,f +2442,3706,0,16,f +2442,3707,0,2,f +2442,3708,0,1,f +2442,3709,0,2,f +2442,3710,0,5,f +2442,3713,7,6,f +2442,3737,0,4,f +2442,3747b,0,2,f +2442,3749,7,23,f +2442,3794a,0,2,f +2442,3894,0,2,f +2442,3895,3,2,f +2442,3941,14,8,f +2442,3942c,14,2,f +2442,3943b,8,2,f +2442,4019,7,5,f +2442,4032a,0,3,f +2442,4032a,14,3,f +2442,4286,0,1,f +2442,4288,0,2,f +2442,4515,0,2,f +2442,4519,0,21,f +2442,4716,7,1,f +2442,6081,0,2,f +2442,6091,0,6,f +2442,6141,36,2,f +2442,6141,7,5,f +2442,6141,34,2,f +2442,6180,0,1,f +2442,6247,0,2,f +2442,6536,0,27,f +2442,6538b,0,3,f +2442,6538b,3,3,f +2442,6553,0,2,f +2442,6558,0,10,f +2442,6575,7,2,f +2442,6587,8,13,f +2442,6589,7,2,f +2442,6628,0,8,f +2442,6629,0,6,f +2442,6632,0,12,f +2442,6636,0,2,f +2442,75535,0,4,f +2442,76320,0,1,f +2442,78c14,0,2,f +2442,85543,15,5,f +2442,85545,1,2,f +2442,bb1241,9999,1,f +2443,2420,15,2,f +2443,3020,15,1,f +2443,3021,0,1,f +2443,3022,4,2,f +2443,3022,72,2,f +2443,3024,15,4,f +2443,3070b,72,2,f +2443,3623,15,1,f +2443,3710,15,1,f +2443,3794b,15,5,f +2443,3839b,15,1,f +2443,44567a,0,1,f +2443,51739,71,2,f +2443,54200,40,1,f +2443,54200,15,6,f +2443,59900,0,2,f +2443,6141,47,2,f +2443,87580,15,1,f +2443,98138,71,2,f +2443,99206,71,3,f +2444,3707,0,8,f +2444,3708,0,8,f +2444,3737,0,8,f +2447,30089b,0,1,f +2447,3626bpr0645,14,1,f +2447,3626cpr0386,14,1,f +2447,3626cpr0892,14,1,f +2447,4449,71,1,f +2447,4528,0,1,f +2447,62696,308,1,f +2447,852766,9999,1,f +2447,92081,308,1,f +2447,970c00,0,1,f +2447,970c00,272,1,f +2447,970c00,15,1,f +2447,973pr0805c01,15,1,f +2447,973pr1184c01,0,1,f +2447,973pr1196c01,15,1,f +2449,2431pr0028,72,1,f +2449,2654,0,1,f +2449,2780,0,6,t +2449,2780,0,164,f +2449,2817,0,2,f +2449,2819,71,1,f +2449,2825,0,4,f +2449,2850a,71,4,f +2449,2851,14,4,f +2449,2852,71,4,f +2449,2853,71,2,f +2449,2854,72,3,f +2449,2905,0,4,f +2449,3024,47,11,f +2449,3068b,0,2,f +2449,3069b,0,2,f +2449,3069bpr0085,15,4,f +2449,32002,72,1,t +2449,32002,72,2,f +2449,32009,0,8,f +2449,32013,0,12,f +2449,32014,0,2,f +2449,32015,0,1,f +2449,32019,0,4,f +2449,32020,71,4,f +2449,32034,0,4,f +2449,32034,71,11,f +2449,32039,0,4,f +2449,32039,4,1,f +2449,32054,0,12,f +2449,32054,71,12,f +2449,32054,4,4,f +2449,32056,0,22,f +2449,32062,4,34,f +2449,32063,71,2,f +2449,32072,14,2,f +2449,32073,71,31,f +2449,32123b,71,11,f +2449,32123b,71,3,t +2449,32138,0,4,f +2449,32140,0,13,f +2449,32140,1,1,f +2449,32140,72,2,f +2449,32140,4,1,f +2449,32184,71,8,f +2449,32184,0,2,f +2449,32198,19,1,f +2449,32199,0,1,f +2449,32200,15,1,f +2449,32201,4,6,f +2449,32250,0,8,f +2449,32250,4,4,f +2449,32269,0,3,f +2449,32270,0,3,f +2449,32271,71,2,f +2449,32278,71,3,f +2449,32278,4,12,f +2449,32278,72,1,f +2449,32278,0,2,f +2449,32291,0,5,f +2449,32291,72,2,f +2449,32316,4,1,f +2449,32316,72,13,f +2449,32316,1,4,f +2449,32348,0,4,f +2449,32348,4,4,f +2449,32449,72,16,f +2449,32449,15,4,f +2449,32523,4,3,f +2449,32523,0,6,f +2449,32524,4,3,f +2449,32524,0,2,f +2449,32525,15,3,f +2449,32525,4,2,f +2449,32525,72,14,f +2449,32525,0,2,f +2449,32526,72,6,f +2449,32526,0,3,f +2449,32526,4,8,f +2449,32556,19,6,f +2449,33299a,0,2,f +2449,3623,0,1,f +2449,3647,72,2,f +2449,3650c,71,1,f +2449,3673,71,8,f +2449,3673,71,3,t +2449,3705,0,12,f +2449,3706,0,13,f +2449,3713,71,51,f +2449,3713,71,5,t +2449,3737,0,3,f +2449,3743,71,1,f +2449,3749,19,4,f +2449,3794b,71,2,f +2449,3941,57,1,f +2449,3941,0,3,f +2449,4019,71,5,f +2449,4032a,0,1,f +2449,40490,4,1,f +2449,40490,72,1,f +2449,40490,0,9,f +2449,41239,72,4,f +2449,41239,0,3,f +2449,41669,1,4,f +2449,41677,0,8,f +2449,41677,71,8,f +2449,41678,0,3,f +2449,41896,71,2,f +2449,42003,0,7,f +2449,42003,72,4,f +2449,42003,71,8,f +2449,4274,71,25,f +2449,4274,71,5,t +2449,43093,1,59,f +2449,43857,0,2,f +2449,44294,71,8,f +2449,4477,0,1,f +2449,44772,71,2,f +2449,4519,71,37,f +2449,45982,0,2,f +2449,4716,71,1,f +2449,48989,71,3,f +2449,54120,0,2,f +2449,55615,71,2,f +2449,59426,72,9,f +2449,59443,71,17,f +2449,59443,4,1,f +2449,59443,0,15,f +2449,60169,72,2,f +2449,60483,71,1,f +2449,6141,182,6,f +2449,6141,182,3,t +2449,6141,36,3,t +2449,6141,36,6,f +2449,61904,72,1,f +2449,61927a,71,1,f +2449,62462,0,3,f +2449,64394,4,1,f +2449,64680,4,1,f +2449,64782,2,13,f +2449,6536,71,8,f +2449,6536,15,6,f +2449,6536,72,4,f +2449,6536,0,14,f +2449,6538b,19,1,f +2449,6539,4,1,f +2449,6542a,72,2,f +2449,6558,1,57,f +2449,6573,72,1,f +2449,6587,72,6,f +2449,6589,19,4,f +2449,6629,72,4,f +2449,6629,0,2,f +2449,6632,4,6,f +2449,6632,1,2,f +2449,6636,0,1,f +2449,6641,4,1,f +2449,75c12,0,2,f +2450,4692c01,7,1,f +2450,75215,7,1,f +2454,5306bc378,0,2,f +2455,270c02,0,2,f +2455,29,14,2,f +2455,3001a,14,4,f +2455,3003,14,3,f +2455,3004,14,3,f +2455,3005,14,8,f +2455,3008,14,2,f +2455,3009,14,4,f +2455,3010,14,4,f +2455,3010,0,5,f +2455,3021,14,2,f +2455,3021,0,2,f +2455,3022,0,1,f +2455,3022,4,2,f +2455,3023,4,2,f +2455,3032,0,2,f +2455,3034,4,1,f +2455,3034,15,16,f +2455,3035,4,2,f +2455,3040a,0,4,f +2455,3062a,0,5,f +2455,3087c,14,2,f +2455,3127b,4,1,f +2455,3145,4,2,f +2455,3149c01,4,1,f +2455,3176,4,3,f +2455,3229a,1,16,f +2455,3230a,1,16,f +2455,3241b,1,16,f +2455,3324c01,4,1,f +2455,3404ac01,4,1,f +2455,4178a,0,1,f +2455,433c01,0,2,f +2455,458,0,4,f +2455,56823,0,1,f +2455,801,14,1,f +2455,802,14,1,f +2455,wheel2a,4,4,f +2455,x550a,0,1,f +2460,2346,0,4,f +2460,2357,0,4,f +2460,2419,2,2,f +2460,2456,0,6,f +2460,2654,0,2,f +2460,2730,0,8,f +2460,2780,0,24,f +2460,2815,0,2,f +2460,2817,7,2,f +2460,2825,7,2,f +2460,2854,7,2,f +2460,2902,0,4,f +2460,2903,15,4,f +2460,2982c01,1,1,f +2460,2983,7,4,f +2460,2994,15,2,f +2460,3001,0,25,f +2460,3001,2,1,f +2460,3003,0,20,f +2460,3004,0,20,f +2460,3004,2,4,f +2460,3004,14,4,f +2460,3007,0,8,f +2460,3010,0,6,f +2460,3020,14,6,f +2460,3022,7,8,f +2460,3022,2,2,f +2460,3022,1,4,f +2460,3023,7,20,f +2460,3024,7,8,f +2460,3033,7,1,f +2460,3034,2,4,f +2460,3039,2,3,f +2460,3040b,0,12,f +2460,3040b,14,4,f +2460,32001,7,4,f +2460,32002,8,16,f +2460,32007,15,4,f +2460,32009,14,4,f +2460,32013,1,4,f +2460,32015,7,4,f +2460,32017,7,2,f +2460,32028,7,8,f +2460,32039,7,2,f +2460,32062,0,8,f +2460,32064b,2,8,f +2460,32068,7,2,f +2460,32123b,7,16,f +2460,3460,7,8,f +2460,3482,14,10,f +2460,3483,0,2,f +2460,3623,14,2,f +2460,3634,0,2,f +2460,3647,7,6,f +2460,3648a,7,4,f +2460,3649,7,4,f +2460,3650c,7,4,f +2460,3665,0,4,f +2460,3665,14,4,f +2460,3666,7,10,f +2460,3673,7,24,f +2460,3679,7,2,f +2460,3680,1,2,f +2460,3700,14,4,f +2460,3700,0,12,f +2460,3701,0,10,f +2460,3701,2,2,f +2460,3702,0,8,f +2460,3703,0,6,f +2460,3705,0,2,f +2460,3706,0,6,f +2460,3707,0,6,f +2460,3708,0,2,f +2460,3709,7,4,f +2460,3710,7,10,f +2460,3713,7,40,f +2460,3736,7,2,f +2460,3737,0,4,f +2460,3738,7,8,f +2460,3743,7,4,f +2460,3747b,0,4,f +2460,3749,7,16,f +2460,3832,7,6,f +2460,3894,0,8,f +2460,3895,0,6,f +2460,3941,0,8,f +2460,3956,7,4,f +2460,3960,15,2,f +2460,4019,7,4,f +2460,4032a,1,2,f +2460,4032a,15,2,f +2460,4085c,0,2,f +2460,4185,7,4,f +2460,4220,14,2,f +2460,4221,0,4,f +2460,4274,7,8,f +2460,4275b,0,2,f +2460,4477,7,6,f +2460,4519,0,3,f +2460,4531,0,2,f +2460,4589,14,2,f +2460,4589,15,2,f +2460,4716,0,4,f +2460,5306bc020,0,4,f +2460,5306bc162,0,2,f +2460,6007,8,1,f +2460,6019,0,2,f +2460,6048a,0,2,f +2460,6133,57,2,f +2460,6141,15,2,f +2460,6141,0,2,f +2460,6141,1,2,f +2460,6215,2,4,f +2460,6536,7,2,f +2460,6538b,7,2,f +2460,6553,7,2,f +2460,6558,0,8,f +2460,6573,8,1,f +2460,6575,7,2,f +2460,6578,0,2,f +2460,6587,8,2,f +2460,6589,7,8,f +2460,6594,0,2,f +2460,6595,15,2,f +2460,6629,0,2,f +2460,6632,7,2,f +2460,680c01,0,2,f +2460,71427c01,7,2,f +2460,71509,0,2,f +2460,71793,7,1,f +2460,75c19,14,2,f +2460,78c09,0,4,f +2460,78c09,3,4,f +2460,78c12,22,4,f +2460,85543,15,1,f +2460,85544,1,2,f +2460,85546,14,3,f +2460,879,7,2,f +2460,884a,14,1,f +2460,x87,8,1,f +2461,3626bpb0137,6,1,f +2461,3626bpb0138,78,1,f +2461,3626bpb0139,6,1,f +2461,3901,19,1,f +2461,3901,19,1,t +2461,45522,19,3,f +2461,973bpb137c01,110,1,f +2461,973bpb138c01,272,1,f +2461,973bpb139c01,288,1,f +2461,bbcard07,9999,1,f +2461,bbcard08gl,9999,1,f +2461,bbcard09,9999,1,f +2461,x494cx1,110,1,f +2461,x494cx1,272,1,f +2461,x494cx1,288,1,f +2462,3704,0,2,f +2462,3705,0,6,f +2462,3706,0,6,f +2462,3707,0,6,f +2462,3708,0,6,f +2462,3737,0,6,f +2462,4519,0,2,f +2464,3004,4,1,f +2464,3005pe1,14,2,f +2464,3021,4,1,f +2464,3021,1,1,f +2464,3021,0,1,f +2464,3022,4,1,f +2464,3298p17,14,1,f +2464,3660,14,1,f +2466,2447,41,1,f +2466,3626bpr0886,14,1,f +2466,87781,5,1,f +2466,87993,179,1,f +2466,87994,41,1,f +2466,88646,0,1,f +2466,90396,226,1,f +2466,970c00pr0291,5,1,f +2466,973pr1959c01,5,1,f +2467,11203,19,30,f +2467,2357,15,4,f +2467,2431,27,10,f +2467,2476,15,3,f +2467,3004,26,1,f +2467,3009,26,10,f +2467,3009,322,6,f +2467,3009,15,4,f +2467,3010,26,2,f +2467,3010,15,4,f +2467,3010,322,4,f +2467,3023,30,2,f +2467,3024,0,1,t +2467,3024,0,2,f +2467,3027,71,2,f +2467,3032,322,1,f +2467,3034,15,1,f +2467,3068b,5,16,f +2467,3069b,191,2,f +2467,3069b,27,4,f +2467,32249,0,4,f +2467,33291,5,2,f +2467,33291,5,1,t +2467,33291,191,5,f +2467,33291,191,1,t +2467,3623,19,2,f +2467,3666,15,4,f +2467,3701,15,4,f +2467,3710,30,10,f +2467,3710,15,2,f +2467,3794b,27,4,f +2467,3795,15,1,f +2467,3958,27,2,f +2467,43093,1,6,f +2467,4477,15,2,f +2467,4477,19,2,f +2467,4510,19,1,f +2467,4697b,71,3,f +2467,4697b,71,1,t +2467,54200,27,1,t +2467,54200,0,2,f +2467,54200,0,1,t +2467,54200,27,2,f +2467,6112,15,4,f +2467,6205,30,2,f +2467,6636,191,2,f +2467,85984,15,6,f +2467,87079,26,19,f +2467,87079pr133,15,1,f +2467,87580,27,1,f +2469,14210,2,1,f +2469,22670,63,2,f +2469,2343,47,1,f +2469,2417,10,2,f +2469,2555,15,7,f +2469,3004,15,5,f +2469,30044,15,4,f +2469,30046,52,4,f +2469,3005,114,6,f +2469,3005,15,3,f +2469,30056,5,2,f +2469,3007,15,1,f +2469,3010,15,7,f +2469,30109,191,1,f +2469,30153,47,2,f +2469,30153,45,6,f +2469,3023,15,2,f +2469,3030,5,2,f +2469,3031,191,1,f +2469,3031,26,2,f +2469,3062b,46,1,f +2469,3065,47,1,f +2469,3188,5,2,f +2469,3189,5,2,f +2469,33009,26,1,f +2469,33051,10,1,f +2469,3308,15,2,f +2469,33125,484,2,f +2469,33202,15,1,f +2469,33209,15,1,f +2469,33210,29,1,f +2469,33211,85,2,f +2469,33212,85,2,f +2469,33213,15,1,f +2469,33215,26,1,f +2469,33217,114,1,f +2469,33243,15,8,f +2469,33320,2,1,f +2469,3622,15,5,f +2469,3626b,47,2,f +2469,3673,71,4,f +2469,3710,15,1,f +2469,3741,2,3,f +2469,3742,29,2,t +2469,3742,5,6,f +2469,3742,5,2,t +2469,3742,29,6,f +2469,3794a,15,3,f +2469,3899,45,2,f +2469,3942c,15,2,f +2469,3957a,15,2,f +2469,4088,15,2,f +2469,4204,120,1,f +2469,4495b,5,2,f +2469,4589,46,1,f +2469,4728,45,2,f +2469,4735,15,2,f +2469,4740,45,3,f +2469,6141,46,3,f +2469,6141,5,2,f +2469,6171pr01,15,1,f +2469,6182,15,2,f +2469,6187,71,2,f +2469,6251pr0002,15,1,f +2469,6255,10,1,f +2469,6256,82,1,f +2469,71861,191,1,f +2469,75347,26,1,f +2469,7578stk01,9999,1,t +2469,belvfem39b,9999,1,f +2469,belvfem71b,9999,1,f +2470,22670,63,1,f +2470,2713,85,2,f +2470,30153,45,1,f +2470,30246,29,1,f +2470,3032,15,2,f +2470,33172,25,1,f +2470,33183,10,1,t +2470,33183,10,1,f +2470,33207p01,15,1,f +2470,3659,5,2,f +2470,3942c,15,1,f +2470,3943b,15,1,f +2470,4085c,15,1,f +2470,42013,135,2,f +2470,4589,46,1,f +2470,4589,15,1,f +2470,4740,45,1,f +2470,6187,71,1,f +2470,6203,5,1,f +2471,3003,272,1,f +2471,30153,46,2,f +2471,30153,33,2,f +2471,3023,15,1,f +2471,3024,36,2,f +2471,3024,36,1,t +2471,30374,71,1,f +2471,3464,15,1,f +2471,3626cpr1086,14,1,f +2471,3626cpr1091,14,1,f +2471,3795,72,1,f +2471,3829c01,15,1,f +2471,3962b,0,1,f +2471,4085c,71,2,f +2471,41334,72,1,f +2471,41854,272,1,f +2471,4871,15,1,f +2471,50947,272,2,f +2471,59895,0,1,f +2471,59895,0,1,t +2471,6014b,71,4,f +2471,6019,15,3,f +2471,60470a,15,1,f +2471,61482,71,1,t +2471,61482,71,1,f +2471,6157,0,2,f +2471,6187,0,1,f +2471,85984,15,2,f +2471,86035,0,1,f +2471,87697,0,4,f +2471,92585,4,1,f +2471,970c00,0,1,f +2471,970c00pr0406,272,1,f +2471,973pr2190c01,73,1,f +2471,973pr2196c01,72,1,f +2471,98138,33,1,t +2471,98138,33,2,f +2471,98138,46,1,f +2471,98138,46,1,t +2471,98288,4,1,f +2472,15,4,2,f +2472,17,4,2,f +2472,3001a,1,4,f +2472,3003,1,1,f +2472,3003,4,1,f +2472,3004,0,2,f +2472,3004,4,1,f +2472,3004,47,2,f +2472,3004,1,1,f +2472,3005,1,6,f +2472,3007,15,2,f +2472,3009,15,2,f +2472,3009,1,2,f +2472,3010,15,1,f +2472,3010,1,4,f +2472,3020,15,6,f +2472,3020,1,1,f +2472,3022,1,2,f +2472,3024,1,2,f +2472,3027,1,2,f +2472,3029,1,2,f +2472,3031,1,2,f +2472,3035,1,1,f +2472,3037,1,4,f +2472,3037,47,1,f +2472,3038,1,2,f +2472,3039,0,1,f +2472,3039,1,3,f +2472,3040a,1,4,f +2472,3040a,47,2,f +2472,3046a,1,4,f +2472,3062a,14,2,f +2472,3298,1,1,f +2472,3460,1,4,f +2472,3461,7,1,f +2472,3481,1,1,f +2472,3624,15,2,f +2472,3626a,14,2,f +2472,3660,1,20,f +2472,3660,15,6,f +2472,3665,1,2,f +2472,801,1,1,f +2472,802,1,1,f +2475,3626bpx33,14,1,f +2475,4485,4,1,f +2475,4485,4,1,t +2475,970c00,4,1,f +2475,973px66c01,0,1,f +2478,10197,72,1,f +2478,15100,0,2,f +2478,15367,0,2,f +2478,15462,28,2,f +2478,19049,179,1,f +2478,19050,42,1,f +2478,19077,297,1,f +2478,19077,0,1,f +2478,19086,72,1,f +2478,19087,297,4,f +2478,19151,179,4,f +2478,20251,158,1,f +2478,20252,148,4,f +2478,2780,0,3,f +2478,32013,0,1,f +2478,32039,0,4,f +2478,32062,4,8,f +2478,32072,0,3,f +2478,32072,14,1,f +2478,3705,0,2,f +2478,3713,71,1,f +2478,4274,71,8,f +2478,43093,1,1,f +2478,4519,71,1,f +2478,50923,72,4,f +2478,53585,0,2,f +2478,60483,0,2,f +2478,6558,1,1,f +2478,6632,0,2,f +2478,74261,72,4,f +2478,87082,0,1,f +2478,87083,72,1,f +2478,87841,179,1,f +2478,90609,0,4,f +2478,90612,0,1,f +2478,90617,52,2,f +2478,90617,72,2,f +2478,90625,0,1,f +2478,90640,85,4,f +2478,90640,0,5,f +2478,90650,179,1,f +2478,92907,0,2,f +2478,93571,72,5,f +2478,93575,0,2,f +2478,98577,72,1,f +2478,98604,0,1,f +2479,2421,0,1,f +2479,2446,15,1,f +2479,2447,40,1,t +2479,2447,40,1,f +2479,2460,71,1,f +2479,2479,0,1,f +2479,2540,1,1,f +2479,298c02,15,2,f +2479,298c02,15,1,t +2479,3010,15,1,f +2479,3023,33,4,f +2479,3031,1,1,f +2479,3034,15,1,f +2479,3040b,15,2,f +2479,3626cpr0891,14,1,f +2479,3666,0,4,f +2479,3747b,15,1,f +2479,3795,71,1,f +2479,3839b,71,1,f +2479,4081b,15,2,f +2479,44661,15,1,f +2479,4488,71,1,f +2479,47457,71,1,f +2479,60477,15,2,f +2479,61252,15,1,f +2479,6141,46,4,f +2479,6141,46,1,t +2479,6636,72,2,f +2479,87552,1,2,f +2479,92280,15,2,f +2479,92474,47,1,f +2479,970c00,272,1,f +2479,973pr2504c01,272,1,f +2479,98138,33,1,t +2479,98138,33,2,f +2483,3020,4,4,f +2483,3021,4,4,f +2483,3022,4,4,f +2483,3023,4,4,f +2483,3029,4,2,f +2483,3031,4,2,f +2483,3032,4,2,f +2483,3034,4,2,f +2483,3035,4,2,f +2483,3036,4,2,f +2483,3460,4,2,f +2483,3623,4,2,f +2483,3666,4,2,f +2483,3710,4,2,f +2483,3795,4,2,f +2483,3832,4,2,f +2483,4477,4,2,f +2484,2470,6,2,f +2484,2540,4,1,f +2484,30103,8,1,f +2484,3023,4,1,f +2484,3069b,4,1,f +2484,3626bpx54,14,1,f +2484,3795,7,1,f +2484,3795,0,1,f +2484,3847,8,1,f +2484,4085c,4,2,f +2484,4497,6,1,f +2484,4600,0,1,f +2484,4738a,6,1,f +2484,4739a,6,1,f +2484,6122,0,1,f +2484,6141,46,1,t +2484,6141,33,1,t +2484,6141,46,2,f +2484,6141,33,2,f +2484,970x026,8,1,f +2484,973px90c01,0,1,f +2485,2458,4,1,f +2485,2460,4,1,f +2485,2479,1,2,f +2485,3001,15,4,f +2485,3001,1,4,f +2485,3001,4,2,f +2485,3001,14,2,f +2485,3002,4,2,f +2485,3002,1,2,f +2485,3002,15,4,f +2485,3003,0,2,f +2485,3003,4,4,f +2485,3003,14,2,f +2485,3003,1,4,f +2485,3003,15,8,f +2485,3004,4,26,f +2485,3004,47,4,f +2485,3004,1,36,f +2485,3004,0,10,f +2485,3004,15,40,f +2485,3004,14,20,f +2485,3005,14,12,f +2485,3005,4,16,f +2485,3005,1,20,f +2485,3005,15,24,f +2485,3005,0,12,f +2485,3005,47,2,f +2485,3009,15,4,f +2485,3009,4,2,f +2485,3009,1,2,f +2485,3009,14,2,f +2485,3010,1,6,f +2485,3010,14,4,f +2485,3010,15,8,f +2485,3010,4,4,f +2485,3010,0,4,f +2485,3020,4,4,f +2485,3021,4,2,f +2485,3022,4,2,f +2485,3031,4,1,f +2485,3032,4,1,f +2485,3034,4,2,f +2485,3035,4,1,f +2485,3039,47,2,f +2485,3039,4,4,f +2485,3137c01,0,2,f +2485,3297,4,6,f +2485,3298,4,4,f +2485,3299,4,4,f +2485,3300,4,2,f +2485,3403c01,0,1,f +2485,3460,14,2,f +2485,3622,15,8,f +2485,3622,1,6,f +2485,3622,14,4,f +2485,3622,4,6,f +2485,3626bpr0001,14,1,f +2485,3641,0,4,f +2485,3660,4,4,f +2485,3710,14,2,f +2485,3741,2,2,f +2485,3742,1,1,t +2485,3742,1,3,f +2485,3742,14,1,t +2485,3742,14,3,f +2485,3795,4,2,f +2485,3823,47,1,f +2485,3853,4,4,f +2485,3854,14,8,f +2485,3861b,14,1,f +2485,3867,2,1,f +2485,4530,6,1,f +2485,6007,8,1,f +2485,970c00,0,1,f +2485,973c07,1,1,f +2486,32054,4,1,f +2486,32062,4,2,f +2486,32138,0,1,f +2486,4274,1,1,f +2486,4274,1,1,t +2486,53542,4,2,f +2486,57539,4,1,f +2486,57585,71,1,f +2486,58176,35,1,f +2486,59443,0,1,f +2486,64275,148,2,f +2486,64727,191,8,f +2486,87083,72,1,f +2486,87826,57,1,f +2486,90605,4,1,f +2486,90607,0,2,f +2486,90609,0,2,f +2486,90612,0,1,f +2486,90613,0,1,f +2486,90616,4,3,f +2486,90617,71,1,f +2486,90622,4,1,f +2486,90625,4,1,f +2486,90639,148,4,f +2486,90639pr0008,0,1,f +2486,90641,148,1,f +2486,90652,0,1,f +2486,90652,148,1,f +2486,92212pat0001,4,2,f +2486,92213,4,1,f +2486,92215,148,1,f +2486,92216,148,1,f +2486,92216,4,2,f +2486,92217,148,1,f +2486,93571,0,3,f +2486,93575,4,1,f +2486,95753pat0001,4,1,f +2487,2524,6,1,f +2487,2526,14,1,f +2487,2526,1,1,f +2487,2528pb01,0,1,f +2487,2528pb02,15,1,f +2487,2530,8,1,f +2487,2542,4,2,f +2487,2543,4,1,f +2487,2543,1,1,f +2487,2544,6,1,f +2487,2545,0,1,f +2487,2561,6,2,f +2487,2562,6,1,f +2487,2586p30,15,1,f +2487,3068bp30,15,1,f +2487,57503,334,1,f +2487,57504,334,1,f +2487,57505,334,1,f +2487,57506,334,1,f +2487,6025,0,1,f +2487,6030,4,1,f +2487,87692,15,1,f +2487,87693,15,1,f +2487,87694,15,1,f +2487,87695,15,2,f +2487,87696,15,1,f +2490,2340,1,2,f +2490,2343,7,2,f +2490,2412b,15,1,f +2490,2433,4,2,f +2490,2447,41,1,f +2490,2450,15,6,f +2490,2465,7,2,f +2490,2540,15,3,f +2490,2540,4,5,f +2490,2555,7,3,f +2490,2569,4,2,f +2490,2584,4,1,f +2490,2585,0,1,f +2490,2610,14,3,f +2490,2877,4,6,f +2490,298c03,7,4,f +2490,3002,4,4,f +2490,3004,15,4,f +2490,3004,7,1,f +2490,3005,15,2,f +2490,3007,4,2,f +2490,3008,7,2,f +2490,3009,15,3,f +2490,3021,15,2,f +2490,3022,4,1,f +2490,3022,15,1,f +2490,3023,15,4,f +2490,3023,4,1,f +2490,3024,15,2,f +2490,3024,34,1,f +2490,3024,36,1,f +2490,3024,46,5,f +2490,3034,7,2,f +2490,3034,15,2,f +2490,3036,15,1,f +2490,3036,7,1,f +2490,3039pr0005,15,1,f +2490,3040b,4,2,f +2490,3062b,14,1,f +2490,3069bp52,15,1,f +2490,3070b,36,1,f +2490,3070b,34,1,f +2490,3460,15,1,f +2490,3622,15,2,f +2490,3622,4,4,f +2490,3626bp03,14,1,f +2490,3626bp04,14,2,f +2490,3660,7,1,f +2490,3660,15,2,f +2490,3666,7,1,f +2490,3666,15,3,f +2490,3679,7,1,f +2490,3680,15,1,f +2490,3795,15,1,f +2490,3829c01,4,2,f +2490,3832,1,1,f +2490,3834,15,1,f +2490,3838,14,1,f +2490,3939,41,1,f +2490,3962a,0,1,f +2490,4079,4,2,f +2490,4081b,15,2,f +2490,4081b,7,2,f +2490,4081b,4,1,f +2490,4085c,15,4,f +2490,4162,15,2,f +2490,4276b,15,2,f +2490,4282,7,2,f +2490,4289,15,1,f +2490,4315,15,2,f +2490,4349,4,2,f +2490,4460b,15,2,f +2490,4474,41,2,f +2490,4477,15,2,f +2490,4485,1,3,f +2490,4515,15,1,f +2490,4533,7,2,f +2490,4589,36,2,f +2490,4599a,15,1,f +2490,4599a,14,1,f +2490,4623,15,4,f +2490,4740,7,1,f +2490,4865a,15,4,f +2490,56823,0,1,f +2490,6091,15,2,f +2490,6112,15,2,f +2490,6141,4,2,f +2490,6141,46,5,f +2490,6158,0,1,f +2490,71128,383,2,f +2490,73090b,0,2,f +2490,92410,15,2,f +2490,970c00,4,3,f +2490,973pb0040c01,7,2,f +2490,973pb0041c01,7,1,f +2490,bfloat3c01,1,1,f +2491,3004,0,6,f +2491,3005,0,10,f +2491,3010,0,1,f +2491,3020,0,2,f +2491,3062b,14,4,f +2491,3626apr0001,14,2,f +2491,3639,0,1,f +2491,3666,0,6,f +2491,3684,0,2,f +2491,3700,0,2,f +2491,3702,0,2,f +2491,3706,0,1,f +2491,3713,7,2,f +2491,3738,0,3,f +2491,3749,7,4,f +2491,3749,7,1,t +2491,3844,0,2,f +2491,3847a,8,2,f +2491,3876,8,2,f +2491,3957a,0,1,f +2491,4032a,0,4,f +2491,4085a,0,4,f +2491,4185,7,4,f +2491,4460a,0,4,f +2491,4495a,2,1,f +2491,4495a,15,1,f +2491,4497,6,2,f +2491,4597,0,1,f +2491,4623,0,2,f +2491,784,0,1,f +2491,970c00,0,2,f +2491,973p43c01,1,2,f +2492,2412b,4,2,f +2492,2421,0,1,f +2492,2446,0,1,f +2492,2447,41,1,f +2492,2447,41,1,t +2492,2460,15,1,f +2492,2479,0,1,f +2492,298c02,14,2,f +2492,298c02,14,1,t +2492,3004,14,1,f +2492,3006,7,1,f +2492,30183,7,1,f +2492,3020,7,1,f +2492,3024,42,1,f +2492,30248,0,1,f +2492,30250pr02,2,1,f +2492,30251,41,1,f +2492,3069bp02,7,1,f +2492,3460,0,2,f +2492,3626bp06,14,1,f +2492,4081b,0,2,f +2492,4286,2,1,f +2492,4360,15,1,f +2492,4488,15,1,f +2492,4589,14,2,f +2492,4623,14,1,f +2492,6141,34,2,f +2492,6141,33,2,t +2492,6141,33,1,f +2492,6141,36,1,t +2492,6141,36,2,f +2492,6215,2,1,f +2492,970x026,4,1,f +2492,973px131c01,4,1,f +2493,2412b,15,1,f +2493,2540,15,1,f +2493,30141,8,1,f +2493,30150,6,1,f +2493,30154,0,1,f +2493,30162,0,1,f +2493,30167,6,1,f +2493,3020,7,1,f +2493,3021,0,1,f +2493,3040b,19,2,f +2493,30464,2,1,f +2493,3626bpa3,14,1,f +2493,3641,0,2,f +2493,3841,8,1,f +2493,4085c,15,2,f +2493,4600,0,1,f +2493,4624,1,2,f +2493,970c00,0,1,f +2493,973pb0391c01,19,1,f +2494,11458,72,2,f +2494,15573,71,1,f +2494,16535,9999,1,t +2494,2412b,0,2,f +2494,2431,71,2,f +2494,2780,0,1,t +2494,2780,0,1,f +2494,3003,71,1,f +2494,3004,71,1,f +2494,3010,25,2,f +2494,3020,25,3,f +2494,3021,0,1,f +2494,3023,46,2,f +2494,3023,36,3,f +2494,3031,2,1,f +2494,30552,71,2,f +2494,3069b,182,2,f +2494,32013,71,2,f +2494,3623,72,1,f +2494,3626cpr0955,14,1,f +2494,3660,25,1,f +2494,3665,25,2,f +2494,3705,0,1,f +2494,3710,15,3,f +2494,3710,25,1,f +2494,3821,25,1,f +2494,3822,25,1,f +2494,3829c01,1,1,f +2494,3833,4,1,f +2494,3957a,71,1,f +2494,4006,0,1,f +2494,44301a,0,2,f +2494,44302a,71,1,f +2494,4519,71,1,f +2494,4522,0,1,f +2494,45677,25,1,f +2494,4595,0,1,f +2494,49668,0,1,f +2494,50950,72,2,f +2494,51858,71,1,f +2494,52036,72,1,f +2494,52038,72,1,f +2494,52501,25,2,f +2494,54200,47,1,t +2494,54200,47,2,f +2494,57783,40,1,f +2494,59900,15,2,f +2494,6014b,71,4,f +2494,60474,72,1,f +2494,60897,25,2,f +2494,6141,34,1,f +2494,6141,34,1,t +2494,6141,36,1,t +2494,6141,36,1,f +2494,61485,71,1,f +2494,6157,71,2,f +2494,62462,71,1,f +2494,6536,72,1,f +2494,6558,1,1,f +2494,87697,0,4,f +2494,88930,25,1,f +2494,93273,72,1,f +2494,970c00,1,1,f +2494,973pr1470c01,1,1,f +2494,98138,182,2,f +2494,98138,182,1,t +2494,98282,72,4,f +2494,98549,71,1,f +2495,3001,15,50,f +2499,219,72,2,t +2499,2376,0,1,f +2499,2412b,0,5,f +2499,2431,14,2,f +2499,2436,0,2,f +2499,2456,14,1,f +2499,2780,0,1,t +2499,2780,0,2,f +2499,2877,72,3,f +2499,2926,0,5,f +2499,3010,14,2,f +2499,3020,71,1,f +2499,3021,0,2,f +2499,3023,14,3,f +2499,3034,72,2,f +2499,3035,72,2,f +2499,30386,14,1,f +2499,30387,14,1,f +2499,30388,14,1,f +2499,30389c,14,1,f +2499,3039,72,2,f +2499,30394,14,1,f +2499,30395,72,1,f +2499,30396,0,1,f +2499,30414,1,1,f +2499,3068b,0,2,f +2499,3069b,182,1,f +2499,32530,72,2,f +2499,3460,0,2,f +2499,3700,72,2,f +2499,3710,2,4,f +2499,3710,14,2,f +2499,3710,72,2,f +2499,3794b,15,2,f +2499,3795,2,2,f +2499,3795,72,1,f +2499,3795,14,2,f +2499,3829c01,1,1,f +2499,3849,0,2,f +2499,3941,0,2,f +2499,3958,14,1,f +2499,4162,15,4,f +2499,4162,71,8,f +2499,41770,0,2,f +2499,44301a,15,2,f +2499,4477,15,2,f +2499,4515,71,4,f +2499,45677,14,1,f +2499,50254,0,4,f +2499,50950,14,2,f +2499,52031,14,1,f +2499,53401,72,4,f +2499,54200,36,1,t +2499,54200,36,2,f +2499,6014b,14,4,f +2499,60471,15,2,f +2499,60471,71,4,f +2499,60474,71,1,f +2499,60700,0,4,f +2499,61409,72,2,f +2499,6141,36,2,f +2499,6141,36,1,t +2499,61485,0,1,f +2499,63868,0,4,f +2499,84954,40,1,f +2499,85984,14,2,f +2499,95120,72,2,f +2500,32013,0,3,f +2500,32039,14,1,f +2500,32123b,7,2,f +2500,32193,0,2,f +2500,32310pb03,14,1,f +2500,32449,0,2,f +2500,3647,7,1,f +2500,3647,7,1,t +2500,3705,0,4,f +2500,3706,0,3,f +2500,3713,7,2,f +2500,3749,7,1,f +2500,4716,0,1,f +2500,6536,14,2,f +2500,6538b,14,1,f +2500,6553,0,4,f +2500,6632,14,2,f +2501,3002,4,2,f +2501,3004,19,1,f +2501,3004,15,1,f +2501,3005,4,8,f +2501,3021,0,1,f +2501,3021,4,1,f +2501,3023,0,2,f +2501,3039,4,1,f +2501,3040b,4,3,f +2501,3043,4,1,f +2501,3176,15,1,f +2501,3623,0,1,f +2501,3623,4,1,f +2501,3660,4,1,f +2501,3665,4,3,f +2501,3794a,4,1,f +2501,4081b,19,2,f +2501,4286,4,4,f +2501,4287,4,2,f +2501,6141,15,3,f +2501,6541,4,2,f +2502,141ac96,15,1,f +2502,265ac01,14,2,f +2502,3065,34,2,f +2502,3065,33,2,f +2502,3065,36,2,f +2502,3065,46,2,f +2502,3067p10,36,1,f +2502,3067p11,34,1,f +2502,3067p12,33,1,f +2502,3134,4,2,f +2502,bb141ac14,15,1,f +2504,32013,19,1,f +2504,32015,19,2,f +2504,32062,0,2,f +2504,32140,0,2,f +2504,32174,0,1,f +2504,32474,0,1,f +2504,32523,0,1,f +2504,32576,6,2,f +2504,40581,19,1,f +2504,41662,6,1,f +2504,41669,34,2,f +2504,42042,6,1,f +2504,42042und,19,1,f +2504,43093,0,2,f +2504,43093,0,1,t +2504,4519,0,2,f +2504,6536,0,1,f +2504,6553,0,2,f +2504,6558,0,2,f +2507,2340,4,4,f +2507,2350b,4,1,f +2507,2351,0,1,f +2507,2401,0,4,f +2507,2401,4,4,f +2507,2412b,4,10,f +2507,2419,0,2,f +2507,2431,0,5,f +2507,2433,0,2,f +2507,2446,4,1,f +2507,2446,47,1,f +2507,2447,42,1,f +2507,2452,0,2,f +2507,2507,33,2,f +2507,2516,0,1,f +2507,2540,0,2,f +2507,2555,0,2,f +2507,2569,33,4,f +2507,2880,0,2,f +2507,3004,0,1,f +2507,3008,4,2,f +2507,3020,0,2,f +2507,3021,0,6,f +2507,3022,0,7,f +2507,3023,4,9,f +2507,3023,0,12,f +2507,3029,4,1,f +2507,3034,0,1,f +2507,3039,0,3,f +2507,3039pc1,0,1,f +2507,3068bp51,0,3,f +2507,3069b,0,2,f +2507,3069bp21,0,2,f +2507,3297,4,4,f +2507,3475b,0,8,f +2507,3479,4,2,f +2507,3626bp63,0,1,f +2507,3626bp66,14,1,f +2507,3641,0,8,f +2507,3660,0,2,f +2507,3666,0,1,f +2507,3673,7,2,f +2507,3700,0,4,f +2507,3710,4,2,f +2507,3710,0,2,f +2507,3794a,0,2,f +2507,3795,4,2,f +2507,3795,0,4,f +2507,3838,0,1,f +2507,3839b,4,2,f +2507,3941,0,2,f +2507,3941,4,5,f +2507,3942c,0,2,f +2507,3942c,4,2,f +2507,3956,0,2,f +2507,4032a,0,4,f +2507,4081b,0,2,f +2507,4162,0,1,f +2507,4276b,0,2,f +2507,4276b,4,2,f +2507,4315,4,2,f +2507,4519,0,2,f +2507,4589,33,6,f +2507,4596,0,2,f +2507,4600,0,4,f +2507,4623,0,1,f +2507,4624,7,8,f +2507,4732,0,1,f +2507,4740,42,2,f +2507,4740,33,2,f +2507,6019,0,2,f +2507,6061,4,2,f +2507,6111,0,2,f +2507,6140,0,1,f +2507,6141,33,6,f +2507,970c00pb019,4,1,f +2507,970x021,0,1,f +2507,973p63c01,4,1,f +2507,973p66c01,1,1,f +2508,2357,8,8,f +2508,2412b,14,1,t +2508,2412b,14,9,f +2508,2412b,0,8,f +2508,2420,8,2,f +2508,2449,14,2,f +2508,2449,15,2,f +2508,2456,14,1,f +2508,2458,14,5,f +2508,2476b,8,2,f +2508,2607,1,1,f +2508,2609,0,1,f +2508,2625,8,1,f +2508,2654,19,3,f +2508,2654,57,7,f +2508,2730,15,2,f +2508,2780,0,4,f +2508,2780,0,1,t +2508,2873,19,4,f +2508,2873,0,2,f +2508,2877,15,4,f +2508,3001,4,1,f +2508,3002,14,2,f +2508,3003,4,2,f +2508,3003,8,4,f +2508,3004,7,6,f +2508,3007,8,1,f +2508,30099,0,4,f +2508,3010,15,4,f +2508,3010,1,1,f +2508,30132,8,2,f +2508,3020,8,6,f +2508,3021,7,6,f +2508,3022,15,1,f +2508,3023,19,8,f +2508,3032,8,4,f +2508,3033,8,1,f +2508,3034,0,1,f +2508,30355,7,1,f +2508,30356,7,1,f +2508,30359b,0,4,f +2508,3036,7,1,f +2508,30363,8,2,f +2508,30364,0,2,f +2508,30365,7,2,f +2508,3037,15,2,f +2508,3038,8,4,f +2508,3039,272,4,f +2508,3040b,8,8,f +2508,30625,40,2,f +2508,3062b,19,4,f +2508,30639,8,1,f +2508,3063b,15,6,f +2508,3063b,8,2,f +2508,3069bpb009,14,2,f +2508,3069bpr0086,7,2,f +2508,3069bpr0090,8,1,f +2508,3070b,14,1,f +2508,3070b,0,1,f +2508,3070b,0,1,t +2508,3070b,14,1,t +2508,3176,0,1,f +2508,32064b,4,2,f +2508,32187,8,1,f +2508,32192,19,4,f +2508,32209,15,2,f +2508,32560,19,2,f +2508,3298,15,2,f +2508,3298,272,4,f +2508,3455,7,2,f +2508,3460,0,2,f +2508,3622,4,2,f +2508,3626b,57,3,f +2508,3626bpb0033,0,1,f +2508,3626bpb0039,14,1,f +2508,3660,1,2,f +2508,3666,7,4,f +2508,3673,7,1,t +2508,3673,7,1,f +2508,3678a,15,2,f +2508,3684,15,3,f +2508,3700,378,4,f +2508,3706,0,2,f +2508,3710,8,7,f +2508,3747a,1,1,f +2508,3795,19,2,f +2508,3795,8,5,f +2508,3894,7,2,f +2508,3901,0,1,f +2508,3940b,0,1,f +2508,3943b,8,2,f +2508,3956,0,4,f +2508,4032a,0,5,f +2508,4150,7,2,f +2508,41533,0,2,f +2508,4162,0,1,f +2508,4162,8,1,f +2508,41747,378,1,f +2508,41747,272,1,f +2508,41748,272,1,f +2508,41748,378,1,f +2508,41749,0,2,f +2508,41749,378,1,f +2508,41749pb01,272,1,f +2508,41750,0,2,f +2508,41750,378,1,f +2508,41750pb01,272,1,f +2508,41766,272,8,f +2508,41862,8,2,f +2508,41879a,73,1,f +2508,41881,40,1,f +2508,42022,8,2,f +2508,42022,378,2,f +2508,42022p01,15,2,f +2508,42023,15,2,f +2508,4213,8,3,f +2508,4213,15,4,f +2508,4285b,8,1,f +2508,4286,378,2,f +2508,4286,8,2,f +2508,4315,0,5,f +2508,4477,7,4,f +2508,4530,0,1,f +2508,4532,15,2,f +2508,4533,8,2,f +2508,4588,8,2,f +2508,4589,4,2,f +2508,4589,0,8,f +2508,4623,7,2,f +2508,4625,7,8,f +2508,4735,8,2,f +2508,4735,8,1,t +2508,4854,7,1,f +2508,6003,19,2,f +2508,6106,7,2,f +2508,6111,15,2,f +2508,6111,0,2,f +2508,6179,0,1,f +2508,6180,8,1,f +2508,6192,41,1,f +2508,73092,0,2,f +2508,78c04,19,2,f +2508,970x025,110,1,f +2508,973pb0260c01,73,1,f +2508,973pb0262c01,8,1,f +2508,x50px2,135,1,f +2509,3087bc01,15,20,f +2509,3087bc01,4,20,f +2512,3003,0,2,f +2512,3003pe2,15,1,f +2512,3004,0,1,f +2512,3004,15,2,f +2512,3021,15,1,f +2512,3023,0,1,f +2512,3660,15,1,f +2512,3710,7,1,f +2515,3703,1,8,f +2515,3703,4,4,f +2515,3895,4,4,f +2515,3895,1,4,f +2516,2412b,71,5,f +2516,2412b,71,1,t +2516,2540,19,2,f +2516,2877,71,2,f +2516,3001,72,1,f +2516,30157,72,1,f +2516,3020,72,1,f +2516,30377,19,1,t +2516,3039,19,1,f +2516,3403c01,71,1,f +2516,3666,71,2,f +2516,3684,70,2,f +2516,3700,70,2,f +2516,3795,72,1,f +2516,3941,47,1,f +2516,4095,0,1,f +2516,4150,0,1,f +2516,41539,72,1,f +2516,41855,0,4,f +2516,4740,72,1,t +2516,4864b,71,2,f +2516,55295,72,1,f +2516,55296,72,1,f +2516,55297,72,1,f +2516,55298,72,1,f +2516,55299,72,1,f +2516,55300,72,1,f +2516,73983,71,1,f +2517,2412b,14,1,f +2517,2420,1,2,f +2517,2431,1,2,f +2517,2432,1,2,f +2517,2436,1,1,f +2517,3010,1,2,f +2517,3020,15,1,f +2517,3021,14,2,f +2517,3022,0,1,f +2517,3022,14,1,f +2517,3023,0,2,f +2517,3023,14,1,f +2517,3023,1,2,f +2517,3031,14,1,f +2517,3034,0,1,f +2517,3034,1,1,f +2517,3037,0,1,f +2517,3068b,1,1,f +2517,32028,14,1,f +2517,3660,0,1,f +2517,44674,1,1,f +2517,44728,1,1,f +2517,54200,1,1,t +2517,54200,1,2,f +2517,6014b,14,4,f +2517,60212,1,1,f +2517,6141,15,8,f +2517,6141,15,1,t +2517,6157,0,2,f +2517,87697,0,4,f +2518,2780,0,3,f +2518,32013,8,2,f +2518,32015,8,2,f +2518,32062,0,1,f +2518,32138,0,1,f +2518,32140,0,2,f +2518,32553,0,3,f +2518,32554,34,1,f +2518,32567,8,1,f +2518,3749,7,1,f +2518,40340,0,1,f +2518,4519,0,4,f +2518,6536,0,1,f +2518,6553,0,4,f +2518,71509,0,1,f +2518,71509,0,1,t +2520,2412b,334,2,f +2520,2412b,1,2,f +2520,2431,7,4,f +2520,2456,0,3,f +2520,2470,6,2,f +2520,2527,6,1,f +2520,3004,0,1,f +2520,30055,8,2,f +2520,30099,0,2,f +2520,30153,42,1,f +2520,30153,41,1,f +2520,30153,36,1,f +2520,30173a,0,2,f +2520,30177,4,2,f +2520,3020,8,1,f +2520,3021,0,2,f +2520,3022,0,1,f +2520,3022,1,1,f +2520,3023,4,1,f +2520,30236,0,2,f +2520,30237a,8,8,f +2520,3032,8,2,f +2520,3034,0,4,f +2520,3037,0,1,f +2520,3039,8,4,f +2520,3040b,0,2,f +2520,3049b,8,4,f +2520,3062b,19,2,f +2520,3062b,6,6,f +2520,3068b,19,2,f +2520,3176,0,1,f +2520,32083,0,1,f +2520,3298,0,1,f +2520,3455,0,1,f +2520,3626bpx7,14,1,f +2520,3633,1,1,f +2520,3700,1,4,f +2520,3710,1,4,f +2520,3749,7,4,f +2520,3795,8,2,f +2520,3839b,0,1,f +2520,3849,8,1,f +2520,3937,1,1,f +2520,4070,0,4,f +2520,4081b,4,4,f +2520,4162,8,1,f +2520,4282,0,1,f +2520,4460a,8,2,f +2520,4495a,0,2,f +2520,4499,6,2,f +2520,4856a,0,1,f +2520,4859,1,1,f +2520,4865a,0,2,f +2520,6019,1,4,f +2520,6112,19,2,f +2520,6123,8,2,f +2520,6126a,57,4,f +2520,6127,0,1,f +2520,6128,0,1,f +2520,6133,57,4,f +2520,6134,4,1,f +2520,6157,0,1,f +2520,6222,6,4,f +2520,6541,1,2,f +2520,84943,8,1,f +2520,970x026,4,2,f +2520,973pb0240c01,4,2,f +2520,x73,0,1,f +2521,2780,0,9,f +2521,2780,0,1,t +2521,32034,4,1,f +2521,32062,4,2,f +2521,3749,19,1,f +2521,43093,1,2,f +2521,4519,71,1,f +2521,47297,0,4,f +2521,47306,0,1,f +2521,49423,0,1,f +2521,53542,0,2,f +2521,53545,0,1,f +2521,55615,71,1,f +2521,57528,0,1,f +2521,60176,4,3,f +2521,61054,4,4,f +2521,64251,4,2,f +2521,64253,0,1,f +2521,64262,57,1,f +2521,64263pat0003,0,3,f +2521,64272,0,3,f +2521,64275,135,2,f +2521,64276,0,1,f +2521,64277c01,297,1,f +2521,64889pr0001,135,1,f +2521,64941,0,1,f +2523,2412b,2,2,f +2523,2421,0,1,f +2523,2432,15,1,f +2523,2446,4,1,f +2523,2447,41,1,f +2523,2460,15,1,f +2523,2479,0,1,f +2523,298c02,0,2,f +2523,298c02,0,1,t +2523,3004,15,1,f +2523,3022,7,1,f +2523,3022,15,1,f +2523,3023,0,1,f +2523,3040b,15,1,f +2523,3070b,36,1,f +2523,3176,7,1,f +2523,3626bpr0001,14,1,f +2523,3660,15,1,f +2523,3666,15,3,f +2523,3794a,7,1,f +2523,3795,2,1,f +2523,3839b,0,1,f +2523,4162,15,2,f +2523,4488,4,1,f +2523,4859,15,2,f +2523,6140,4,2,f +2523,970c00,2,1,f +2523,973px130c01,15,1,f +2525,10119,29,1,f +2525,10193,212,1,f +2525,11249,297,1,f +2525,12651,212,2,f +2525,16087,5,2,f +2525,16375,85,3,f +2525,20820,15,2,f +2525,2300,15,1,f +2525,3437,29,3,f +2525,3437,5,3,f +2525,3437,31,1,f +2525,3437,26,1,f +2525,3437,212,4,f +2525,3437,15,1,f +2525,4066,212,2,f +2525,4066,5,3,f +2525,4066,29,3,f +2525,40666,31,1,f +2525,40666,15,1,f +2525,44524,15,1,f +2525,52027,29,1,f +2525,53497,297,1,f +2525,61310,15,1,f +2525,6474,85,2,f +2525,6474,31,2,f +2525,72208,15,1,f +2525,72217,15,1,f +2525,72219,29,2,f +2525,72225,15,1,f +2525,72226,15,1,f +2525,75115pr0014,226,1,f +2525,75689,30,2,f +2525,76338,212,2,f +2525,76371,15,2,f +2525,98215,5,1,f +2525,98218,15,4,f +2525,98218,31,2,f +2525,98222,29,1,f +2525,98225,29,1,f +2525,98233,31,1,f +2525,98236,29,1,f +2525,98238,85,2,f +2525,98239,297,2,f +2525,98252,5,1,f +2525,98457,29,3,f +2525,99771,212,1,f +2526,32062,0,6,f +2526,32173,8,2,f +2526,32174,0,10,f +2526,32174,57,1,f +2526,32270,7,1,f +2526,3737,0,1,f +2526,3749,19,4,f +2526,44135,8,1,f +2526,44136,8,1,f +2526,44138,0,2,f +2526,44139,8,1,f +2526,44140,0,1,f +2526,44146,135,1,f +2526,44148,8,2,f +2526,44247,8,1,f +2526,44807,0,1,f +2526,4519,7,3,f +2526,45425,135,2,f +2526,45749,8,2,f +2526,6538b,8,1,f +2526,kraataund,148,1,f +2527,12825,0,1,f +2527,15210pr01,0,1,f +2527,2412b,15,4,f +2527,2412b,1,7,f +2527,2412b,71,1,f +2527,2417,288,8,f +2527,2417,2,4,f +2527,2421,0,1,f +2527,2423,2,6,f +2527,2431,1,1,f +2527,2431,84,11,f +2527,2431,33,1,f +2527,2431,15,8,f +2527,2431,72,2,f +2527,2432,15,1,f +2527,2432,0,1,f +2527,2432,72,1,f +2527,2445,72,2,f +2527,2445,1,1,f +2527,2445,71,1,f +2527,2446,15,1,f +2527,2447,40,1,f +2527,2447,40,1,t +2527,2454a,15,2,f +2527,2454a,72,2,f +2527,2456,1,2,f +2527,2458,1,4,f +2527,2479,0,1,f +2527,2486,14,1,f +2527,2540,72,2,f +2527,2736,71,1,f +2527,2780,0,1,t +2527,2780,0,5,f +2527,298c02,4,2,t +2527,298c02,4,3,f +2527,3001,72,5,f +2527,3001,70,4,f +2527,3003,14,1,f +2527,3003,15,12,f +2527,3003,4,1,f +2527,3003,70,1,f +2527,30031,72,1,f +2527,3004,71,2,f +2527,3004,0,2,f +2527,3004,72,6,f +2527,3004,1,2,f +2527,3005,72,3,f +2527,3005,15,14,f +2527,3005,1,1,f +2527,3008,1,3,f +2527,3008,72,2,f +2527,3009,1,2,f +2527,3009,15,7,f +2527,3010,1,5,f +2527,3010,71,2,f +2527,3010,19,1,f +2527,30136,84,33,f +2527,30162,71,1,f +2527,3020,15,5,f +2527,3021,4,2,f +2527,3021,72,3,f +2527,3021,1,1,f +2527,3022,1,2,f +2527,3022,0,1,f +2527,3022,72,4,f +2527,3023,320,3,f +2527,3023,33,2,f +2527,3023,14,5,f +2527,3023,46,2,f +2527,3023,1,4,f +2527,3024,182,2,f +2527,3024,36,1,f +2527,3024,1,4,f +2527,3024,34,1,f +2527,30248,72,1,f +2527,3029,72,2,f +2527,3030,72,1,f +2527,3032,1,1,f +2527,3032,72,1,f +2527,3034,72,3,f +2527,3034,71,1,f +2527,3035,2,1,f +2527,30350b,15,2,f +2527,30374,71,1,f +2527,30377,71,2,f +2527,30377,71,1,t +2527,3038,1,2,f +2527,3039,71,1,f +2527,3039pr0005,15,1,f +2527,30592,71,1,f +2527,3065,47,1,f +2527,3068b,2,1,f +2527,3068b,71,2,f +2527,3068b,0,1,f +2527,3069b,82,2,f +2527,3069b,15,3,f +2527,3069b,70,7,f +2527,3069bpr0030,15,1,f +2527,3069bpr0099,15,2,f +2527,3069bpr0100,2,2,f +2527,3176,71,1,f +2527,32014,4,1,f +2527,32028,15,2,f +2527,3245c,15,3,f +2527,3456,72,1,f +2527,3460,1,2,f +2527,3622,1,12,f +2527,3623,1,2,f +2527,3626cpr0889,14,1,f +2527,3626cpr0893,14,1,f +2527,3626cpr0912,14,1,f +2527,3626cpr0914,14,1,f +2527,3626cpr1581,14,1,f +2527,3660,72,1,f +2527,3660,1,1,f +2527,3660,15,2,f +2527,3665,70,2,f +2527,3665,1,4,f +2527,3666,15,3,f +2527,3666,72,5,f +2527,3679,71,2,f +2527,3680,4,2,f +2527,3701,71,4,f +2527,3710,19,1,f +2527,3710,1,4,f +2527,3710,70,3,f +2527,3710,15,2,f +2527,3710,72,2,f +2527,3747b,1,1,f +2527,3794b,15,1,f +2527,3794b,72,3,f +2527,3794b,0,1,f +2527,3795,19,3,f +2527,3795,72,2,f +2527,3795,1,4,f +2527,3795,70,1,f +2527,3829c01,14,1,f +2527,3830,71,1,f +2527,3831,72,1,f +2527,3837,0,1,f +2527,3841,72,1,f +2527,3899,4,2,f +2527,3900,15,1,f +2527,3941,70,13,f +2527,3957b,71,1,f +2527,3962b,0,2,f +2527,4070,1,4,f +2527,4079b,70,1,f +2527,4079b,14,1,f +2527,4081b,15,2,f +2527,4083,14,1,f +2527,41334,72,1,f +2527,4162,0,2,f +2527,41854,320,3,f +2527,4207,70,1,f +2527,4285b,71,1,f +2527,43093,1,1,f +2527,4345b,4,1,f +2527,4345b,71,1,f +2527,4346,71,1,f +2527,4346,4,1,f +2527,43722,1,1,f +2527,43723,1,1,f +2527,43888,70,2,f +2527,43898,15,1,f +2527,4449,70,1,f +2527,44661,15,1,f +2527,44674,320,1,f +2527,44728,1,3,f +2527,4477,15,1,f +2527,4477,1,2,f +2527,4488,71,1,f +2527,4488,0,4,f +2527,4515,72,4,f +2527,4533,15,2,f +2527,4740pr0001a,4,1,f +2527,48336,15,3,f +2527,48336,71,1,f +2527,48336,19,1,f +2527,4871,15,1,f +2527,52031,15,1,f +2527,52501,15,1,f +2527,54200,1,1,t +2527,54200,1,2,f +2527,54200,72,2,t +2527,54200,33,7,f +2527,54200,33,3,t +2527,54200,72,9,f +2527,56890,0,8,f +2527,57894,15,2,f +2527,57895,41,2,f +2527,59900,36,1,f +2527,59900,15,2,f +2527,6014b,71,8,f +2527,60219,15,1,f +2527,60470b,71,1,f +2527,60470b,0,2,f +2527,60475b,15,2,f +2527,60477,72,2,f +2527,60581,15,1,f +2527,60594,0,2,f +2527,60596,15,1,f +2527,60596,0,2,f +2527,60616a,41,1,f +2527,60621,71,2,f +2527,6091,71,2,f +2527,6112,1,3,f +2527,6117,72,1,f +2527,61252,0,2,f +2527,6141,47,2,t +2527,6141,4,7,f +2527,6141,47,5,f +2527,6141,4,2,t +2527,61482,71,1,t +2527,61482,71,1,f +2527,6157,71,2,f +2527,6180,15,1,f +2527,62113,72,2,f +2527,62462,4,2,f +2527,62462,15,3,f +2527,64644,308,1,f +2527,6541,71,2,f +2527,72454,15,1,f +2527,85984,71,3,f +2527,85984,1,1,f +2527,86035,320,1,f +2527,87079,70,1,f +2527,87079,71,1,f +2527,87544,71,2,f +2527,87552,71,2,f +2527,87552,41,10,f +2527,87752,40,1,f +2527,88072,0,1,f +2527,88292,15,2,f +2527,91405,2,2,f +2527,92280,71,2,f +2527,92280,0,1,f +2527,92410,15,2,f +2527,92583,41,1,f +2527,92585,4,1,f +2527,92590,28,1,f +2527,93274,4,1,f +2527,95347,72,1,f +2527,970c00,379,1,f +2527,970c00,308,1,f +2527,970c00,272,1,f +2527,970c00,28,1,f +2527,970c00pr0293,272,1,f +2527,973pr1943c01,28,1,f +2527,973pr1944c01,15,1,f +2527,973pr1945ac01,15,1,f +2527,973pr1946bc01,28,1,f +2527,973pr1947bc01,272,1,f +2527,98138,46,2,f +2527,98138,36,4,f +2527,98138,46,1,t +2527,98138,36,1,t +2527,98279,19,2,f +2527,98282,15,4,f +2527,98283,84,27,f +2527,98284,70,4,f +2527,98496pr0001a,308,1,f +2527,98560,71,1,f +2530,3647,7,10,f +2530,4019,7,8,f +2531,3626bpr0684,15,1,f +2531,3626bpr0698,15,1,f +2531,3626bpr0699,15,1,f +2531,88646,0,1,f +2531,90386,0,1,f +2531,970c00,0,1,f +2531,973pr1646c01,0,1,f +2535,11211,19,4,f +2535,11291,0,3,f +2535,11458,0,16,f +2535,11458,72,4,f +2535,11477,0,6,f +2535,11478,0,2,f +2535,13731,0,2,f +2535,13731,25,2,f +2535,14181,0,2,f +2535,14769,71,2,f +2535,15068,0,5,f +2535,15303,36,6,f +2535,15392,72,2,f +2535,15400,72,4,f +2535,15403,0,2,f +2535,15535,72,1,f +2535,15573,0,2,f +2535,15573,14,6,f +2535,18671,71,3,f +2535,18677,71,4,f +2535,18759,72,2,f +2535,20952pr0001,15,1,f +2535,20953pr0001,15,1,f +2535,21566pr0001,0,1,f +2535,21566pr0002,15,1,f +2535,21849pr0001,47,1,f +2535,23734,326,1,f +2535,2412b,179,13,f +2535,2420,0,2,f +2535,2420,25,10,f +2535,2420,72,6,f +2535,2431,0,2,f +2535,2432,14,1,f +2535,2445,0,3,f +2535,2445,25,2,f +2535,2540,71,4,f +2535,2639,72,8,f +2535,2653,0,4,f +2535,2654,47,4,f +2535,2714a,0,4,f +2535,2780,0,4,f +2535,2877,72,1,f +2535,2877,0,2,f +2535,2921,71,1,f +2535,298c02,71,1,f +2535,298c02,14,2,f +2535,3001,28,1,f +2535,3003,70,1,f +2535,3005,25,2,f +2535,3010,25,4,f +2535,3010,0,2,f +2535,3010,1,2,f +2535,3020,0,7,f +2535,3020,25,5,f +2535,3020,15,4,f +2535,3020,72,1,f +2535,3021,72,8,f +2535,3022,15,4,f +2535,3022,72,4,f +2535,3023,25,17,f +2535,3023,36,2,f +2535,3023,70,4,f +2535,3023,0,14,f +2535,3024,0,4,f +2535,3024,25,8,f +2535,3031,0,4,f +2535,3035,14,1,f +2535,30355,0,1,f +2535,30356,0,1,f +2535,3040b,72,8,f +2535,3040b,0,4,f +2535,3040b,14,2,f +2535,30414,72,4,f +2535,30552,0,1,f +2535,30553,72,2,f +2535,3068b,25,1,f +2535,3069b,25,5,f +2535,3069b,0,7,f +2535,3176,71,1,f +2535,32000,0,4,f +2535,32002,19,4,f +2535,32028,0,2,f +2535,32028,72,2,f +2535,32034,0,3,f +2535,32039,0,2,f +2535,32062,4,10,f +2535,32064a,72,4,f +2535,32064a,71,4,f +2535,32072,0,1,f +2535,32073,71,2,f +2535,32123b,71,5,f +2535,32184,71,1,f +2535,32187,179,4,f +2535,32198,19,1,f +2535,32316,0,2,f +2535,32530,4,1,f +2535,32531,71,1,f +2535,3297,0,4,f +2535,3298,0,4,f +2535,3460,0,10,f +2535,3460,72,2,f +2535,3622,72,2,f +2535,3623,71,2,f +2535,3623,4,8,f +2535,3626cpr1709,78,1,f +2535,3626cpr1792,78,1,f +2535,3626cpr1793,92,1,f +2535,3639,72,4,f +2535,3666,0,3,f +2535,3666,25,10,f +2535,3666,72,2,f +2535,3676,0,2,f +2535,3701,0,2,f +2535,3701,70,2,f +2535,3707,0,4,f +2535,3710,25,8,f +2535,3710,15,2,f +2535,3710,0,2,f +2535,3710,72,10,f +2535,3713,4,2,f +2535,3713,71,4,f +2535,3737,0,1,f +2535,3738,71,1,f +2535,3795,71,8,f +2535,3795,25,3,f +2535,3941,0,8,f +2535,3958,0,1,f +2535,4006,0,1,f +2535,4032a,72,4,f +2535,4070,72,2,f +2535,4079,72,1,f +2535,4081b,71,4,f +2535,41677,72,12,f +2535,41769,72,1,f +2535,41770,72,1,f +2535,4274,71,4,f +2535,4274,1,2,f +2535,43093,1,4,f +2535,4345b,71,1,f +2535,4346,71,1,f +2535,43712,0,1,f +2535,43713,0,2,f +2535,43719,14,1,f +2535,43719,0,1,f +2535,43722,0,1,f +2535,43722,25,1,f +2535,43723,25,1,f +2535,43723,0,1,f +2535,44294,71,4,f +2535,44300,72,1,f +2535,44675,0,4,f +2535,4477,0,2,f +2535,4477,70,1,f +2535,47397,0,1,f +2535,47398,0,1,f +2535,47457,1,2,f +2535,4865a,14,2,f +2535,4871,0,2,f +2535,50304,25,1,f +2535,50305,25,1,f +2535,50745,179,4,f +2535,55013,72,4,f +2535,55982,0,4,f +2535,59443,0,4,f +2535,59900,45,4,f +2535,6020,14,1,f +2535,60219,0,1,f +2535,60475b,72,1,f +2535,60479,0,2,f +2535,60479,71,2,f +2535,60897,14,4,f +2535,6141,36,6,f +2535,6141,179,24,f +2535,6232,19,1,f +2535,62462,179,4,f +2535,62462,0,4,f +2535,63864,0,6,f +2535,63864,25,2,f +2535,6541,19,2,f +2535,6541,72,8,f +2535,6589,19,1,f +2535,6632,72,2,f +2535,6632,1,2,f +2535,6636,0,6,f +2535,73983,0,8,f +2535,85545,1,4,f +2535,85984,0,6,f +2535,85984,72,1,f +2535,87079,25,6,f +2535,87079,0,1,f +2535,87083,72,3,f +2535,87087,0,10,f +2535,87087,72,2,f +2535,87407,71,1,f +2535,87580,28,3,f +2535,87580,72,1,f +2535,88930,0,8,f +2535,92280,71,2,f +2535,92738,0,2,f +2535,92946,72,2,f +2535,93273,0,4,f +2535,96874,25,1,t +2535,970c00pr0942,484,2,f +2535,970c00pr0943,326,1,f +2535,973pr3156c01,484,2,f +2535,973pr3157c01,326,1,f +2535,98138,182,4,f +2535,98138,47,4,f +2535,99206,0,4,f +2535,99781,71,2,f +2536,2338,4,1,f +2536,2339,0,2,f +2536,2341,0,2,f +2536,2343,14,1,f +2536,2345,7,6,f +2536,2357,7,8,f +2536,2400,6,2,f +2536,2417,2,4,f +2536,2419,0,1,f +2536,2420,7,1,f +2536,2432,0,1,f +2536,2435,2,1,f +2536,2444,7,2,f +2536,2445,7,2,f +2536,2446,0,1,f +2536,2446,8,1,f +2536,2449,7,4,f +2536,2454a,7,3,f +2536,2462,7,16,f +2536,2465,7,3,f +2536,2490px3,4,1,f +2536,2536,6,4,f +2536,2540,7,2,f +2536,2546,0,1,f +2536,2552p06,2,1,f +2536,2563,6,1,f +2536,2566,2,1,f +2536,2570,8,5,f +2536,2570,8,1,t +2536,2584,7,1,f +2536,2585,0,1,f +2536,2587,8,2,f +2536,2588,21,1,f +2536,2594,8,2,f +2536,3001,7,1,f +2536,3002,7,6,f +2536,3003,7,3,f +2536,3004,0,5,f +2536,3004,7,53,f +2536,3004,15,2,f +2536,3005,0,2,f +2536,3005,7,18,f +2536,3008,7,2,f +2536,3009,0,1,f +2536,3009,7,9,f +2536,3010,7,10,f +2536,3020,0,1,f +2536,3022,7,3,f +2536,3023,7,1,f +2536,3023,15,2,f +2536,3023,0,4,f +2536,3024,0,4,f +2536,3024,7,14,f +2536,3032,7,2,f +2536,3033,7,2,f +2536,3036,7,1,f +2536,3036,0,1,f +2536,3040b,7,3,f +2536,3040b,0,1,f +2536,3048c,0,1,f +2536,3062b,0,13,f +2536,3185,0,2,f +2536,3307,7,2,f +2536,3308,7,1,f +2536,3455,7,8,f +2536,3455,0,1,f +2536,3456,0,1,f +2536,3456,7,1,f +2536,3460,7,1,f +2536,3581,0,2,f +2536,3622,7,9,f +2536,3623,0,2,f +2536,3626a,0,1,f +2536,3626apr0001,14,6,f +2536,3626apx2,14,1,f +2536,3659,7,6,f +2536,3660,7,3,f +2536,3660,0,5,f +2536,3665,7,2,f +2536,3666,7,4,f +2536,3666,0,2,f +2536,3673,7,1,f +2536,3676,0,1,f +2536,3678a,1,1,f +2536,3685,0,2,f +2536,3700,7,2,f +2536,3706,0,1,f +2536,3710,7,7,f +2536,3830,7,2,f +2536,3831,7,2,f +2536,3839b,0,2,f +2536,3844,8,2,f +2536,3846p4g,7,3,f +2536,3846p4h,7,3,f +2536,3847a,8,2,f +2536,3848,6,1,f +2536,3849,0,6,f +2536,3896,0,2,f +2536,3957a,0,4,f +2536,3958,7,2,f +2536,3959,0,3,f +2536,4070,7,3,f +2536,4071,0,1,f +2536,4085c,7,6,f +2536,4085c,0,2,f +2536,4213,7,1,f +2536,4265a,7,2,f +2536,4265a,7,1,t +2536,4275b,7,1,f +2536,4276b,7,1,f +2536,4315,7,1,f +2536,4444,7,2,f +2536,4444p01,7,1,f +2536,4444p02,7,1,f +2536,4460a,7,1,f +2536,4477,7,4,f +2536,4491a,4,1,f +2536,4493c01pb02,0,1,f +2536,4495a,1,5,f +2536,4495a,4,5,f +2536,4497,6,3,f +2536,4504,7,2,f +2536,4589,46,3,f +2536,4611,8,1,f +2536,4623,0,2,f +2536,4733,0,1,f +2536,4735,0,1,f +2536,4738b,6,1,f +2536,4739b,6,1,f +2536,4865a,0,4,f +2536,4873,0,1,f +2536,56823c50,0,1,f +2536,6141,14,2,f +2536,75998pr0007,15,1,f +2536,87692,4,1,t +2536,87693,4,1,f +2536,87694,4,1,f +2536,970x021,0,5,f +2536,970x026,1,1,f +2536,973c09,15,1,f +2536,973p40c03,4,2,f +2536,973p41c02,4,2,f +2536,973p4nc01,15,1,f +2536,973px138c01,4,2,f +2539,10197,72,1,f +2539,11610,179,1,f +2539,15362,0,2,f +2539,15462,28,1,f +2539,18654,72,2,f +2539,21561pr0004,0,1,f +2539,21562,0,2,f +2539,21755,179,4,f +2539,21987,35,1,f +2539,23194,78,1,f +2539,2780,0,12,f +2539,32062,4,5,f +2539,32123b,71,3,f +2539,32449,0,4,f +2539,32523,0,3,f +2539,41677,0,2,f +2539,43093,1,2,f +2539,4519,71,1,f +2539,53551,179,2,f +2539,59443,0,1,f +2539,6536,0,1,f +2539,6553,0,1,f +2539,6632,0,1,f +2539,74261,72,2,f +2539,90605,0,2,f +2539,90609,0,4,f +2539,90616,0,2,f +2539,90623,0,1,f +2539,90638,0,2,f +2539,90639,0,2,f +2539,90640,0,4,f +2539,90652,0,1,f +2539,90661,0,2,f +2539,92907,0,2,f +2539,93575,78,1,f +2539,93575,0,1,f +2539,98562,179,2,f +2539,98577,72,1,f +2540,12825,14,4,f +2540,12825,71,3,f +2540,15207,72,2,f +2540,15210,72,2,f +2540,2357,15,2,f +2540,2357,72,4,f +2540,2412b,71,21,f +2540,2420,72,1,f +2540,2423,2,1,f +2540,2431,72,1,f +2540,2431,15,2,f +2540,2432,0,4,f +2540,2436,71,2,f +2540,2444,71,2,f +2540,2444,14,2,f +2540,2445,71,1,f +2540,2450,71,4,f +2540,2453a,15,4,f +2540,2454a,15,2,f +2540,2456,72,2,f +2540,2460,0,1,f +2540,2488,0,1,f +2540,2524,15,1,f +2540,2540,0,8,f +2540,2569,72,2,f +2540,2570,148,1,f +2540,2654,72,2,f +2540,2780,0,2,t +2540,2780,0,6,f +2540,2825,0,2,f +2540,2877,71,18,f +2540,298c02,0,1,t +2540,298c02,0,3,f +2540,30031,0,2,f +2540,30033,15,1,f +2540,3004,71,1,f +2540,3004,15,15,f +2540,3004,72,6,f +2540,30043,71,2,f +2540,3008,72,3,f +2540,3008,15,1,f +2540,3010,72,4,f +2540,30187b,15,1,f +2540,3020,72,6,f +2540,3020,71,4,f +2540,3020,15,5,f +2540,3021,0,1,f +2540,3022,71,1,f +2540,3022,15,1,f +2540,30222,42,1,f +2540,3023,33,4,f +2540,3023,15,2,f +2540,3023,72,8,f +2540,3023,71,2,f +2540,30259,15,2,f +2540,3031,72,2,f +2540,3032,15,4,f +2540,30361c,72,1,f +2540,30367b,71,1,f +2540,30374,70,4,f +2540,30374,0,4,f +2540,30376,71,1,f +2540,30377,0,2,f +2540,30377,71,10,f +2540,30377,0,1,t +2540,30377,71,2,t +2540,3039,15,2,f +2540,3040b,15,16,f +2540,30414,71,2,f +2540,3045,71,2,f +2540,30480,4,1,f +2540,30483pr01,70,1,f +2540,3062b,0,13,f +2540,3068b,15,11,f +2540,3069b,71,1,f +2540,3069b,14,2,f +2540,32000,15,4,f +2540,32013,72,3,f +2540,32059,71,2,f +2540,32062,4,2,f +2540,32073,71,2,f +2540,32123b,14,2,f +2540,32123b,14,1,t +2540,3245c,15,7,f +2540,32530,72,1,f +2540,3460,72,1,f +2540,3622,15,9,f +2540,3622,72,3,f +2540,3626b,0,1,f +2540,3626bpr0648,78,1,f +2540,3626bpr0655,78,1,f +2540,3626cpr0840,78,1,f +2540,3660,71,6,f +2540,3666,15,4,f +2540,3678b,72,3,f +2540,3679,71,6,f +2540,3680,0,6,f +2540,3684,15,6,f +2540,3700,14,2,f +2540,3710,72,1,f +2540,3710,15,4,f +2540,3710,71,6,f +2540,3737,0,1,f +2540,3749,19,2,f +2540,3794b,72,2,f +2540,3794b,71,1,f +2540,3795,72,1,f +2540,3830,72,1,f +2540,3831,72,1,f +2540,3832,15,3,f +2540,3839b,71,1,f +2540,3849,0,2,f +2540,3901,70,1,f +2540,3941,71,3,f +2540,3941,0,8,f +2540,3957b,15,4,f +2540,3960,71,1,f +2540,4032a,72,7,f +2540,4070,0,2,f +2540,4070,71,12,f +2540,4079,0,1,f +2540,4085c,71,4,f +2540,4150,71,4,f +2540,4162,15,2,f +2540,4162,72,2,f +2540,41677,0,1,f +2540,4274,1,1,f +2540,4274,1,1,t +2540,4282,72,2,f +2540,4285b,71,2,f +2540,4286,15,12,f +2540,4349,0,6,f +2540,4349,0,1,t +2540,4360,0,2,f +2540,44360,15,1,f +2540,4460b,71,2,f +2540,44728,14,1,f +2540,4477,15,1,f +2540,4491b,70,1,f +2540,4589,0,1,f +2540,4589,33,4,f +2540,4595,0,1,f +2540,4599b,71,1,f +2540,4599b,0,2,f +2540,4600,0,1,f +2540,4623,0,1,f +2540,4733,71,1,f +2540,4740,72,2,f +2540,4740,15,1,f +2540,47456,15,1,f +2540,48336,71,2,f +2540,4865a,14,1,f +2540,48729b,72,2,t +2540,48729b,72,2,f +2540,50950,71,4,f +2540,51739,15,2,f +2540,51739,71,4,f +2540,54200,71,1,f +2540,54200,15,18,f +2540,54200,71,1,t +2540,54200,15,5,t +2540,57585,71,1,f +2540,57899,0,2,f +2540,58247,0,2,f +2540,59230,71,1,t +2540,59230,71,1,f +2540,59443,0,2,f +2540,59443,72,3,f +2540,6005,15,12,f +2540,6020,71,4,f +2540,60470a,71,11,f +2540,60470a,14,6,f +2540,60474,15,1,f +2540,60475a,71,2,f +2540,60478,71,1,f +2540,60478,0,4,f +2540,60481,15,3,f +2540,60581,47,2,f +2540,6082,72,2,f +2540,6112,15,4,f +2540,61184,71,4,f +2540,6120,72,2,f +2540,61409,72,4,f +2540,6141,47,4,t +2540,6141,71,1,t +2540,6141,14,18,f +2540,6141,0,44,f +2540,6141,71,5,f +2540,6141,0,5,t +2540,6141,47,15,f +2540,6141,14,3,t +2540,61780,72,2,f +2540,6187,0,2,f +2540,62113,72,2,f +2540,63868,71,1,f +2540,63868,0,4,f +2540,63965,71,1,f +2540,64644,0,1,t +2540,64644,0,8,f +2540,64800,71,1,f +2540,64807,308,1,f +2540,6541,15,6,f +2540,6541,14,8,f +2540,6587,28,2,f +2540,6636,71,3,f +2540,73590c03a,0,3,f +2540,73983,72,1,f +2540,75c18,0,4,f +2540,7879stk01,9999,1,t +2540,85940,0,2,f +2540,85941,41,2,f +2540,85984,15,7,f +2540,87079,15,3,f +2540,87087,15,2,f +2540,87544,71,2,f +2540,87580,71,11,f +2540,87617,0,4,f +2540,87618,71,4,f +2540,89974pr0002,379,1,f +2540,92280,71,4,f +2540,92280,15,2,f +2540,92438,15,4,f +2540,92738,0,1,f +2540,92746,19,1,f +2540,95678pr01,19,2,f +2540,970c00,4,1,f +2540,970c00,70,1,f +2540,970c00,15,1,f +2540,970c00pr0074,19,1,f +2540,970c90pr0250,78,1,f +2540,970x194,15,1,f +2540,973c32,70,1,f +2540,973pr1142c01,272,1,f +2540,973pr1344c01,15,1,f +2540,973pr1836c01,19,1,f +2540,973pr1837c01,78,1,f +2540,973pr1838c01,4,1,f +2542,2341,4,1,f +2542,2342,15,1,f +2542,2343,47,4,f +2542,2348a,47,1,f +2542,2349a,15,1,f +2542,2362a,15,4,f +2542,2377,15,1,f +2542,2412b,0,3,f +2542,2412b,15,2,f +2542,2420,15,3,f +2542,2431,15,3,f +2542,2435,2,1,f +2542,2436,4,2,f +2542,2436,1,1,f +2542,2437,41,1,f +2542,2439,8,1,f +2542,2441,0,1,f +2542,298c02,15,1,f +2542,298c02,0,1,f +2542,3001,0,1,f +2542,3003,15,2,f +2542,3004,0,4,f +2542,3004,15,4,f +2542,3004,4,11,f +2542,3004p06,15,1,f +2542,3005,4,13,f +2542,3008,4,2,f +2542,3008,15,2,f +2542,3009,15,2,f +2542,3009,4,1,f +2542,3010,15,1,f +2542,3020,1,3,f +2542,3021,4,1,f +2542,3021,15,2,f +2542,3022,15,4,f +2542,3022,1,2,f +2542,3022,4,2,f +2542,3023,15,13,f +2542,3023,1,5,f +2542,3024,15,11,f +2542,3024,47,4,f +2542,3024,36,4,f +2542,3024,1,4,f +2542,3031,15,1,f +2542,3033,4,1,f +2542,3038,14,2,f +2542,3039,14,7,f +2542,3041,14,2,f +2542,3062b,4,1,f +2542,3062b,15,2,f +2542,3069b,15,4,f +2542,3081cc01,15,1,f +2542,3300,0,1,f +2542,3460,15,1,f +2542,3471,2,1,f +2542,3622,4,3,f +2542,3622,15,2,f +2542,3623,15,6,f +2542,3623,4,2,f +2542,3623,1,1,f +2542,3626apr0001,14,4,f +2542,3641,0,10,f +2542,3660,0,1,f +2542,3666,15,3,f +2542,3666,1,1,f +2542,3700,4,1,f +2542,3710,15,4,f +2542,3710,1,4,f +2542,3710,4,2,f +2542,3730,0,1,f +2542,3731,1,1,f +2542,3741,2,4,f +2542,3742,15,6,f +2542,3742,4,6,f +2542,3742,15,2,t +2542,3742,4,2,t +2542,3787,15,1,f +2542,3788,4,2,f +2542,3794a,15,5,f +2542,3794a,0,1,f +2542,3795,15,1,f +2542,3821,4,1,f +2542,3822,4,1,f +2542,3823,47,2,f +2542,3829c01,15,1,f +2542,3829c01,1,1,f +2542,3829c01,4,1,f +2542,3832,0,1,f +2542,3836,6,1,f +2542,3837,0,1,f +2542,3855,47,2,f +2542,3857,2,1,f +2542,3861b,15,1,f +2542,3899,47,2,f +2542,3901,0,2,f +2542,3937,15,1,f +2542,3938,15,1,f +2542,3957a,4,1,f +2542,3960p06,15,1,f +2542,4032a,15,6,f +2542,4033,15,2,f +2542,4079,15,4,f +2542,4079,4,2,f +2542,4081b,7,1,f +2542,4081b,1,3,f +2542,4085b,15,3,f +2542,4211,1,2,f +2542,4213,15,2,f +2542,4276b,1,2,f +2542,4315,15,1,f +2542,4345a,15,1,f +2542,4346,15,1,f +2542,4347,15,1,f +2542,4445,14,10,f +2542,4447,15,1,f +2542,4448,47,1,f +2542,4528,0,1,f +2542,4529,0,1,f +2542,4530,0,2,f +2542,4532,15,1,f +2542,4533,4,1,f +2542,4594,47,1,f +2542,4599a,14,1,f +2542,4599a,1,1,f +2542,4599a,4,1,f +2542,4600,0,3,f +2542,4624,15,10,f +2542,4625,15,2,f +2542,4715,15,1,f +2542,4719,4,1,f +2542,4740,8,1,f +2542,4740,15,2,f +2542,4854,4,1,f +2542,4855,4,1,f +2542,4859,15,1,f +2542,4859,1,1,f +2542,4859,4,1,f +2542,4861,0,1,f +2542,4862,47,1,f +2542,4864a,15,2,f +2542,4864a,0,2,f +2542,4865a,15,3,f +2542,4866,15,1,f +2542,4871,4,1,f +2542,6141,46,6,f +2542,6141,36,4,f +2542,6141,0,2,f +2542,73983,15,2,f +2542,92851,47,2,f +2542,970c00,15,2,f +2542,970c00,1,1,f +2542,970c00,4,1,f +2542,973p01c02,-1,1,f +2542,973p71c01,15,1,f +2542,973px61c02,15,1,f +2542,973px62c01,15,1,f +2543,15,15,3,f +2543,17,15,3,f +2543,21,47,1,f +2543,3001a,15,1,f +2543,3002a,15,4,f +2543,3002a,4,2,f +2543,3003,15,3,f +2543,3004,15,4,f +2543,3004,4,1,f +2543,3005,15,4,f +2543,3005,47,4,f +2543,3007,15,2,f +2543,3008,15,2,f +2543,3009,47,2,f +2543,3010,15,4,f +2543,3010ap04,15,2,f +2543,3010pb036u,15,1,f +2543,3020,15,1,f +2543,3020,4,4,f +2543,3021,4,2,f +2543,3022,4,2,f +2543,3024,1,2,f +2543,3030,15,2,f +2543,3032,15,1,f +2543,3033,4,2,f +2543,3034,15,1,f +2543,3037,15,2,f +2543,3038,47,4,f +2543,3038,4,2,f +2543,3039,4,3,f +2543,3040a,15,2,f +2543,3045,4,4,f +2543,3046a,15,2,f +2543,3068b,4,1,f +2543,3137c01,0,2,f +2543,3139,0,7,f +2543,3192,15,2,f +2543,3193,15,2,f +2543,3298,15,5,f +2543,3460,7,8,f +2543,3461,7,2,f +2543,3462,4,1,f +2543,3464,4,3,f +2543,3475a,4,2,f +2543,3481,4,1,f +2543,3581,15,2,f +2543,3582,15,2,f +2543,3624,15,2,f +2543,3625,0,1,f +2543,3626a,14,3,f +2543,3660,15,10,f +2543,3660,4,4,f +2543,8,4,3,f +2546,3001a,4,4,f +2546,3001a,0,4,f +2546,3001a,47,4,f +2546,3001a,1,4,f +2546,3001a,15,4,f +2546,3001a,14,4,f +2546,3001pr1,14,1,f +2546,3002a,4,4,f +2546,3002a,14,4,f +2546,3002a,1,4,f +2546,3003,4,6,f +2546,3003,14,6,f +2546,3003,1,6,f +2546,3003,0,6,f +2546,3003,15,6,f +2546,3003pe1,14,2,f +2546,3007,4,2,f +2546,3483,0,4,f +2546,4130,4,1,f +2546,4131,14,1,f +2546,4132,4,1,f +2546,4133,14,1,f +2546,4180c02,0,2,f +2546,4202,2,1,f +2548,2335p30,15,1,f +2548,2431,0,1,f +2548,2453a,0,2,f +2548,2489,6,1,f +2548,2518,2,3,f +2548,2528pb01,0,1,f +2548,2562,6,1,f +2548,3002,7,2,f +2548,3004,0,3,f +2548,3004,7,2,f +2548,3005,7,1,f +2548,3005,0,5,f +2548,3008,0,1,f +2548,3010,7,1,f +2548,3023,0,2,f +2548,3027,14,1,f +2548,3069b,0,1,f +2548,3308,7,1,f +2548,3460,0,1,f +2548,3626bp46,14,1,f +2548,3666,0,1,f +2548,3795,0,1,f +2548,3937,0,1,f +2548,3938,0,1,f +2548,3957a,0,1,f +2548,4085c,0,2,f +2548,4623,0,1,f +2548,4738a,6,1,f +2548,4739a,6,1,f +2548,57503,334,1,f +2548,57504,334,1,f +2548,57505,334,1,f +2548,57506,334,1,f +2548,6083,8,1,f +2548,970c00,1,1,f +2548,973p3ac01,14,1,f +2549,3704,0,6,f +2549,3705b,0,4,f +2549,3749,7,10,f +2549,4261,7,4,f +2549,4274,7,12,f +2549,4519,0,6,f +2549,4698,7,10,f +2550,3626bpr0771,14,1,f +2550,88646,0,1,f +2550,93563,26,1,f +2550,93564pr0001,0,1,f +2550,970c00pr0401,73,1,f +2550,973pr1758c01,0,1,f +2551,2555,0,8,f +2551,30374,72,4,f +2551,3069b,0,4,f +2551,3070bps3,379,1,t +2551,3070bps3,379,1,f +2551,41769,0,2,f +2551,41770,0,2,f +2551,4589,0,4,f +2551,4623,0,2,f +2551,4733,0,1,f +2551,4740,47,1,f +2551,4740,379,1,f +2551,4871,0,2,f +2553,3649,7,25,f +2554,3001,4,1,f +2554,3003,4,1,f +2554,3004,47,2,f +2554,3004,15,2,f +2554,3004,14,2,f +2554,3004,0,1,f +2554,3004,4,2,f +2554,3004p51,14,1,f +2554,3005,14,2,f +2554,3005,4,2,f +2554,3010,4,2,f +2554,3020,15,1,f +2554,3021,1,2,f +2554,3022,1,1,f +2554,3039,4,1,f +2554,3039,47,2,f +2554,3040b,4,2,f +2554,3137c01,0,2,f +2554,3622,4,2,f +2554,3641,0,4,f +2554,3660,4,1,f +2554,3665,4,2,f +2554,3679,7,1,f +2554,3680,15,1,f +2554,3710,1,2,f +2554,3795,1,2,f +2558,30035,0,1,f +2558,3021,71,1,f +2558,30377,0,1,t +2558,30377,0,1,f +2558,3069bpr0101,71,1,f +2558,3957a,71,1,f +2558,4085c,0,1,f +2558,4589,36,1,f +2563,23306,383,1,f +2563,2339,19,2,f +2563,2357,19,2,f +2563,2412b,7,2,f +2563,2432,19,1,f +2563,2444,4,1,f +2563,2445,8,5,f +2563,2453a,19,2,f +2563,2454a,0,12,f +2563,2458,6,1,f +2563,2460,7,4,f +2563,2476a,8,2,f +2563,2540,19,1,f +2563,2555,320,1,f +2563,2566,0,4,f +2563,2654,0,1,f +2563,2730,7,1,f +2563,298c02,0,1,f +2563,3004,19,2,f +2563,3004,7,8,f +2563,30041,8,1,f +2563,30042,7,1,f +2563,3005,7,2,f +2563,3005,6,2,f +2563,3007,8,2,f +2563,3009,8,2,f +2563,30104,8,1,f +2563,30106,47,1,f +2563,30134,6,2,f +2563,30151a,42,1,f +2563,30173a,0,4,f +2563,3021,1,1,f +2563,3022,0,1,f +2563,3022,7,2,f +2563,3023,7,8,f +2563,3023,6,2,f +2563,30236,8,4,f +2563,3028,7,1,f +2563,3035,8,2,f +2563,3036,8,2,f +2563,30367a,19,1,f +2563,30374,42,1,f +2563,30375,320,1,f +2563,30376,8,1,f +2563,30377,8,2,f +2563,30381,0,1,f +2563,3039,19,2,f +2563,3040b,6,4,f +2563,3040b,7,6,f +2563,3062b,0,8,f +2563,3068b,8,3,f +2563,3069bpr0070,0,1,f +2563,3245b,19,8,f +2563,33320,34,1,f +2563,3623,7,2,f +2563,3626b,42,2,f +2563,3626bpb0111,320,1,f +2563,3626bpr0378,14,1,f +2563,3626bpr0635,14,1,f +2563,3660,8,1,f +2563,3684,8,2,f +2563,3700,6,1,f +2563,3794a,0,1,f +2563,3830,0,4,f +2563,3831,0,4,f +2563,3901,19,1,f +2563,3958,7,2,f +2563,3958,8,2,f +2563,3960,19,1,f +2563,3961,19,1,f +2563,40244,19,4,f +2563,4032a,0,1,f +2563,4032a,6,1,f +2563,40379,378,1,f +2563,40396,378,1,f +2563,4070,19,6,f +2563,4085c,7,6,f +2563,4162,7,1,f +2563,41752,8,1,t +2563,42446,7,1,f +2563,42448,0,2,f +2563,4274,7,2,f +2563,4274,7,1,t +2563,4345b,8,1,f +2563,4346pb09,8,1,f +2563,44361,378,1,f +2563,4599a,0,1,f +2563,4623,0,2,f +2563,4735,0,6,f +2563,50231,0,1,f +2563,6019,0,1,f +2563,6093,6,1,f +2563,6108,19,1,f +2563,6111,8,2,f +2563,6112,0,2,f +2563,6126a,57,4,f +2563,6141,57,1,t +2563,6141,0,1,t +2563,6141,57,1,f +2563,6141,0,7,f +2563,6141,7,4,f +2563,6141,7,1,t +2563,6587,8,1,f +2563,6636,7,2,f +2563,71509,0,2,t +2563,71509,0,2,f +2563,970c00,0,1,f +2563,970c00pr0066,14,1,f +2563,973pb0087c01,14,1,f +2563,973ps2c01,0,1,f +2564,298c02,14,1,f +2564,298c02,14,1,t +2564,3005,0,1,f +2564,30148,0,1,f +2564,3069bp02,7,1,f +2564,6141,15,2,f +2564,6141,15,1,t +2565,2339,308,2,f +2565,2357,70,1,f +2565,2417,10,2,f +2565,2423,2,1,f +2565,2444,71,2,f +2565,2449,70,1,f +2565,2454a,4,4,f +2565,2460,72,1,f +2565,2555,0,1,f +2565,2654,33,1,f +2565,2780,0,4,f +2565,2780,0,1,t +2565,2921,70,2,f +2565,3004,71,3,f +2565,3005,71,4,f +2565,3005,0,3,f +2565,30136,70,16,f +2565,30137,70,2,f +2565,30173b,297,1,f +2565,30173b,0,1,f +2565,30173b,179,2,f +2565,3020,70,2,f +2565,3022,71,2,f +2565,3023,72,1,f +2565,3034,19,1,f +2565,3036,72,2,f +2565,3039,72,1,f +2565,3040b,70,4,f +2565,3048c,0,2,f +2565,3049b,0,2,f +2565,3068b,0,6,f +2565,3068bpr0194,19,1,f +2565,32002,72,1,f +2565,32002,72,1,t +2565,32054,4,1,f +2565,32123b,71,1,t +2565,32123b,71,2,f +2565,32269,0,1,f +2565,32316,0,1,f +2565,32525,4,2,f +2565,32530,0,2,f +2565,33057,484,1,f +2565,3460,0,2,f +2565,3622,0,6,f +2565,3623,70,4,f +2565,3633,297,2,f +2565,3660,72,1,f +2565,3665,0,1,f +2565,3685,71,2,f +2565,3700,0,2,f +2565,3701,0,2,f +2565,3738,72,1,f +2565,4070,70,4,f +2565,4085c,0,1,f +2565,4085c,4,4,f +2565,4150,0,2,f +2565,42003,0,2,f +2565,4286,70,2,f +2565,43888,70,1,f +2565,43898,72,1,f +2565,43899,71,1,f +2565,44728,0,1,f +2565,4477,70,1,f +2565,4497,179,1,f +2565,4522,0,1,f +2565,4623,72,1,f +2565,48336,71,2,f +2565,49668,0,1,f +2565,50304,72,1,f +2565,50305,72,1,f +2565,52501,72,3,f +2565,54200,70,1,t +2565,54200,70,2,f +2565,55013,72,1,f +2565,59426,72,1,f +2565,60219,71,1,f +2565,60470a,0,2,f +2565,60481,71,2,f +2565,60752,179,1,f +2565,6079,70,2,f +2565,6141,15,1,t +2565,6141,0,1,t +2565,6141,15,4,f +2565,6141,0,6,f +2565,61780,72,1,f +2565,62462,320,1,f +2565,63864,0,1,f +2565,63868,71,2,f +2565,64647,57,1,t +2565,64647,57,1,f +2565,6558,1,2,f +2565,6589,19,1,f +2565,87079,0,1,f +2565,88811,179,2,f +2565,92438,19,1,f +2565,93061,15,1,t +2566,122c01,0,2,f +2566,251,0,1,f +2566,3003,0,1,f +2566,3005,0,7,f +2566,3010p06,15,1,f +2566,3020,14,3,f +2566,3021,0,4,f +2566,3021,14,3,f +2566,3023,15,2,f +2566,3023,14,8,f +2566,3023,0,2,f +2566,3024,14,4,f +2566,3024,36,2,f +2566,3062b,15,2,f +2566,3068b,14,2,f +2566,3068bp05,15,1,f +2566,3068bp06,15,1,f +2566,3314,0,1,f +2566,3317,0,1,f +2566,3433,14,1,f +2566,3626apr0001,14,1,f +2566,3641,0,2,f +2566,3665,14,2,f +2566,3679,7,1,f +2566,3710,0,2,f +2566,3710,14,4,f +2566,3788,14,1,f +2566,3823,47,1,f +2566,3829c01,14,1,f +2566,3832,0,1,f +2566,3833,1,1,f +2566,4070,14,2,f +2566,4084,0,2,f +2566,4213,14,1,f +2566,4275a,0,4,f +2566,4276a,0,3,f +2566,4531,0,1,f +2566,4594,47,1,f +2566,4599a,1,2,f +2566,4625,14,1,f +2566,4626,14,1,f +2566,6141,46,2,f +2566,970c00,1,1,f +2566,973p26c01,1,1,f +2567,608p03,7,1,f +2567,6099p03,7,1,f +2569,11946,19,2,f +2569,11947,19,2,f +2569,14720,71,2,f +2569,15367,0,2,f +2569,15976,0,2,f +2569,20252,148,6,f +2569,20473,148,1,f +2569,21562,19,4,f +2569,21755,179,8,f +2569,21921,19,1,f +2569,21987,35,2,f +2569,21987,41,2,f +2569,2780,0,24,f +2569,32054,71,2,f +2569,32062,4,18,f +2569,32138,0,1,f +2569,32523,0,2,f +2569,32557,0,2,f +2569,40490,0,2,f +2569,4274,71,2,f +2569,43093,1,2,f +2569,4519,71,2,f +2569,48989,71,2,f +2569,60484,0,5,f +2569,63869,71,2,f +2569,6536,0,4,f +2569,6558,1,13,f +2569,74261,72,2,f +2569,87082,0,4,f +2569,90607,0,11,f +2569,90608,72,2,f +2569,90609,0,2,f +2569,90612,72,5,f +2569,90613,72,4,f +2569,90617,72,4,f +2569,90622,0,3,f +2569,90623,0,1,f +2569,90626,0,1,f +2569,90630,0,2,f +2569,90634,0,1,f +2569,90638,19,3,f +2569,90650,19,3,f +2569,90652,19,3,f +2569,93571,0,4,f +2569,93575,19,4,f +2569,98577,72,7,f +2569,98603,19,2,f +2569,98603s02pr0017,19,1,f +2571,10201,0,2,f +2571,10247,0,5,f +2571,11212,72,4,f +2571,11477,72,6,f +2571,11477,0,6,f +2571,11477,28,4,f +2571,14769pr1049,4,2,f +2571,15068,320,4,f +2571,15068,0,8,f +2571,15092,72,8,f +2571,15100,0,2,f +2571,15303,36,3,f +2571,15400,72,2,f +2571,15462,28,1,f +2571,15573,28,1,f +2571,18651,0,2,f +2571,18980,0,1,f +2571,19888,272,1,f +2571,24073,15,1,f +2571,2412b,320,2,f +2571,2412b,72,2,f +2571,2412b,19,1,f +2571,2420,320,4,f +2571,2432,19,1,f +2571,2436,71,2,f +2571,2450,72,4,f +2571,2450,0,2,f +2571,2465,0,2,f +2571,2540,72,3,f +2571,2653,0,4,f +2571,2654,47,1,f +2571,2780,0,6,f +2571,3003,0,1,f +2571,3010,320,1,f +2571,3020,320,3,f +2571,3020,72,4,f +2571,3021,71,2,f +2571,3021,0,2,f +2571,3022,72,1,f +2571,3022,71,6,f +2571,3022,320,3,f +2571,3023,72,14,f +2571,3024,72,1,f +2571,3030,0,1,f +2571,3032,72,1,f +2571,3034,71,1,f +2571,3035,0,1,f +2571,30367c,41,3,f +2571,30374,36,1,f +2571,30377,0,2,f +2571,30381,272,1,f +2571,30503,0,2,f +2571,3068b,72,1,f +2571,3068b,0,2,f +2571,3069b,320,3,f +2571,32002,19,1,f +2571,32028,71,4,f +2571,32028,0,2,f +2571,32062,0,4,f +2571,3623,71,2,f +2571,3626cpr1934,15,1,f +2571,3626cpr1935,78,1,f +2571,3665,0,2,f +2571,3666,0,2,f +2571,3701,72,1,f +2571,3710,71,2,f +2571,3710,28,2,f +2571,3710,0,2,f +2571,3713,71,1,f +2571,3747b,0,3,f +2571,3795,72,1,f +2571,3894,0,2,f +2571,3957b,71,2,f +2571,40490,0,6,f +2571,4081b,71,1,f +2571,4162,72,2,f +2571,41678,0,4,f +2571,41769,0,2,f +2571,41769,320,1,f +2571,41770,0,2,f +2571,41770,320,1,f +2571,42446,71,1,f +2571,4274,71,27,f +2571,4282,72,1,f +2571,43093,1,2,f +2571,43722,72,2,f +2571,43723,72,2,f +2571,44676,0,4,f +2571,44728,72,2,f +2571,44728,71,2,f +2571,4510,71,2,f +2571,45677,0,1,f +2571,4599b,0,2,f +2571,4600,0,1,f +2571,48336,19,1,f +2571,4865a,0,4,f +2571,49668,179,1,f +2571,51739,320,1,f +2571,54200,40,1,f +2571,54383,0,1,f +2571,54384,0,1,f +2571,55982,0,1,f +2571,57899,0,1,f +2571,58176,41,1,f +2571,60470b,71,1,f +2571,60471,0,2,f +2571,60484,0,1,f +2571,60897,72,5,f +2571,6091,0,2,f +2571,61199,71,1,f +2571,61252,71,2,f +2571,61409,72,2,f +2571,6141,41,6,f +2571,6141,0,2,f +2571,6141,70,2,f +2571,61678,0,2,f +2571,63864,0,2,f +2571,64567,71,2,f +2571,6541,71,4,f +2571,85984,320,1,f +2571,85984,28,1,f +2571,85984,0,2,f +2571,87079,0,2,f +2571,87082,71,4,f +2571,88072,72,4,f +2571,90396,0,1,f +2571,92279,36,1,f +2571,92280,0,2,f +2571,92582,0,2,f +2571,92593,72,6,f +2571,92947,0,2,f +2571,93273,0,4,f +2571,93274,72,2,f +2571,93274,0,2,f +2571,93606,0,2,f +2571,970c00,308,1,f +2571,970c00pr1058,72,1,f +2571,973pr3391c01,72,1,f +2571,973pr3392c01,15,1,f +2571,98100,0,2,f +2571,98100,71,2,f +2571,99207,71,2,f +2571,99207,0,1,f +2571,99780,72,3,f +2571,99781,71,5,f +2572,270c02,0,1,f +2572,3001a,14,4,f +2572,3004,0,20,f +2572,3004,4,2,f +2572,3009,0,2,f +2572,3009,1,4,f +2572,3010,0,2,f +2572,3010pt1,1,2,f +2572,3020,14,1,f +2572,3021,0,2,f +2572,3023,4,2,f +2572,3032,0,1,f +2572,3034,4,1,f +2572,3039,0,4,f +2572,3040a,47,2,f +2572,3127b,4,1,f +2572,3149c01,4,1,f +2572,3176,4,1,f +2572,3324c01,4,1,f +2572,3404ac01,0,1,f +2572,56823,0,1,f +2572,586c01a,4,1,f +2572,737,4,1,f +2573,12825,71,1,f +2573,12825,72,8,f +2573,2412b,72,10,f +2573,2431,4,2,f +2573,2437,40,2,f +2573,2444,4,4,f +2573,2450,0,2,f +2573,2540,72,2,f +2573,2540,0,5,f +2573,2654,47,2,f +2573,2780,0,27,f +2573,2780,0,3,t +2573,3001,0,2,f +2573,3004,14,2,f +2573,3005,0,4,f +2573,30055,0,1,f +2573,3010,0,3,f +2573,30175,179,1,f +2573,30177,15,1,f +2573,30177,1,1,f +2573,3020,15,2,f +2573,3020,14,3,f +2573,3020,0,2,f +2573,3021,85,2,f +2573,3022,15,2,f +2573,3022,0,4,f +2573,3023,72,4,f +2573,3023,0,4,f +2573,30236,15,1,f +2573,3032,15,4,f +2573,3034,0,3,f +2573,3034,15,1,f +2573,3036,15,1,f +2573,30367b,0,2,f +2573,30374,71,1,f +2573,3039,4,1,f +2573,3040b,15,2,f +2573,30414,4,1,f +2573,3045,15,2,f +2573,3048c,15,4,f +2573,3049d,15,3,f +2573,30602,85,1,f +2573,3062b,72,4,f +2573,30663,0,1,f +2573,3068bpr0187,15,1,f +2573,3069b,0,6,f +2573,3069b,36,3,f +2573,32014,71,2,f +2573,32054,71,2,f +2573,32062,4,2,f +2573,32123b,14,8,f +2573,32123b,14,1,t +2573,32140,0,2,f +2573,32316,72,4,f +2573,32333,71,4,f +2573,32348,0,4,f +2573,32523,72,6,f +2573,3460,0,2,f +2573,3622,4,2,f +2573,3623,15,2,f +2573,3623,0,2,f +2573,3626bpr0746,14,1,f +2573,3626bpr0747,14,1,f +2573,3626bpr0781,0,1,f +2573,3660,15,4,f +2573,3665,15,2,f +2573,3666,15,1,f +2573,3666,71,2,f +2573,3673,71,1,t +2573,3673,71,2,f +2573,3678b,0,2,f +2573,3700,72,8,f +2573,3701,72,4,f +2573,3702,71,2,f +2573,3703,72,2,f +2573,3705,0,2,f +2573,3707,0,2,f +2573,3710,15,4,f +2573,3713,4,2,f +2573,3713,71,1,t +2573,3713,71,4,f +2573,3713,4,1,t +2573,3795,0,1,f +2573,3795,14,1,f +2573,3795,15,2,f +2573,3832,71,4,f +2573,3895,71,2,f +2573,3958,15,1,f +2573,4032a,72,2,f +2573,4032a,0,2,f +2573,40379,15,4,f +2573,4070,15,4,f +2573,4081b,72,2,f +2573,4081b,0,4,f +2573,4162,15,3,f +2573,41669,15,12,f +2573,41747,0,1,f +2573,41748,0,1,f +2573,41769,85,4,f +2573,41769,0,2,f +2573,41770,0,2,f +2573,41770,85,4,f +2573,4274,71,1,t +2573,4274,71,4,f +2573,43093,1,10,f +2573,43337,0,4,f +2573,43710,15,2,f +2573,43711,15,2,f +2573,43722,15,2,f +2573,43723,15,2,f +2573,44294,71,4,f +2573,4460b,15,2,f +2573,4477,0,1,f +2573,4497,308,1,f +2573,4519,71,2,f +2573,45982,0,4,f +2573,48336,15,2,f +2573,48336,71,4,f +2573,4865a,0,4,f +2573,50943,72,1,f +2573,52501,15,1,f +2573,53705,132,1,f +2573,53989,15,7,f +2573,54200,15,8,f +2573,55013,72,4,f +2573,56908,0,4,f +2573,57585,71,4,f +2573,58176,15,3,f +2573,59233pat0001,41,1,f +2573,59443,72,1,f +2573,59900,72,10,f +2573,59900,0,4,f +2573,60476,15,6,f +2573,60481,0,2,f +2573,60483,71,2,f +2573,60484,72,2,f +2573,6091,72,4,f +2573,61252,15,1,f +2573,61409,0,2,f +2573,6141,85,2,t +2573,6141,14,6,f +2573,6141,85,18,f +2573,6141,14,1,t +2573,61678,15,2,f +2573,62361,0,2,f +2573,62462,4,2,f +2573,6249,72,1,f +2573,64567,71,1,f +2573,6558,1,6,f +2573,6628,0,4,f +2573,6629,72,4,f +2573,6636,0,1,f +2573,6636,15,1,f +2573,76537,14,2,f +2573,85543,15,2,f +2573,85959pat0001,36,2,f +2573,85984,15,2,f +2573,87087,4,2,f +2573,87609,15,2,f +2573,87747,15,2,f +2573,88072,15,10,f +2573,92338,297,1,f +2573,92690,297,2,f +2573,92691,15,5,f +2573,92692,15,1,f +2573,92947,71,8,f +2573,93057pr0002,0,1,f +2573,93059,19,1,f +2573,93061,15,1,t +2573,93061,15,2,f +2573,93062c01,15,2,f +2573,93066pr0001,15,1,f +2573,93160,15,1,f +2573,93609,15,1,t +2573,93609,15,4,f +2573,93764pr0004,15,1,f +2573,970c00,0,1,f +2573,970c00pr0190,15,1,f +2573,970c00pr0192,1,1,f +2573,973pr1715c01,15,1,f +2573,973pr1717c01,1,1,f +2573,973pr1741c01,0,1,f +2574,11816pr0006,78,1,f +2574,2431,29,3,f +2574,2431,322,3,f +2574,2431,27,9,f +2574,2458,14,2,f +2574,2577,5,2,f +2574,2817,4,1,f +2574,3002,15,6,f +2574,3003,14,1,f +2574,3004,15,2,f +2574,3005,71,1,f +2574,3005,15,3,f +2574,30056,15,2,f +2574,3007,5,2,f +2574,3008,15,2,f +2574,30089,0,1,f +2574,3010,15,6,f +2574,30136,19,14,f +2574,30176,2,2,f +2574,3022,15,2,f +2574,3023,15,3,f +2574,3023,29,2,f +2574,3034,15,1,f +2574,3040b,5,4,f +2574,3062b,322,8,f +2574,3062b,0,1,f +2574,3062bpr0003,322,1,f +2574,3070b,27,1,t +2574,3070b,29,1,t +2574,3070b,29,2,f +2574,3070b,27,2,f +2574,3245c,15,6,f +2574,3308,30,1,f +2574,33291,191,2,f +2574,33291,191,1,t +2574,33291,5,1,f +2574,33291,5,1,t +2574,33303,15,3,f +2574,3623,27,2,f +2574,3626c,15,2,f +2574,3710,15,1,f +2574,3741,2,1,t +2574,3741,2,2,f +2574,3742,15,3,f +2574,3742,15,1,t +2574,3742,14,3,f +2574,3742,14,1,t +2574,3794a,14,5,f +2574,3795,27,4,f +2574,3795,19,1,f +2574,3957b,0,2,f +2574,3957b,15,5,f +2574,3958,27,2,f +2574,4070,71,1,f +2574,4150pr0011a,27,1,f +2574,4460b,19,2,f +2574,44728,15,2,f +2574,4495b,5,4,f +2574,4533,15,2,f +2574,4599b,15,1,f +2574,4740,42,2,f +2574,48336,14,2,f +2574,4865b,322,2,f +2574,50950,30,2,f +2574,54200,71,1,t +2574,54200,71,1,f +2574,6141,15,5,f +2574,6141,41,4,f +2574,6141,41,1,t +2574,6141,15,1,t +2574,6179,5,2,f +2574,6231,322,4,f +2574,6256,191,1,f +2574,6266,0,2,f +2574,87580,71,1,f +2574,89801,71,1,f +2574,91405,10,1,f +2574,92257,320,1,f +2574,92410,27,2,f +2574,92456pr0001c01,78,1,f +2574,92820pr0003c01,30,1,f +2574,93088pr0002,15,1,f +2574,93160,15,2,f +2574,94717,30,4,f +2574,94718,30,1,f +2574,94719,30,1,f +2574,94720,30,2,f +2574,94721,30,1,f +2574,94722,30,1,f +2574,94723,30,1,f +2574,94724,30,1,f +2574,94725,30,4,f +2574,98386pr0001,484,1,f +2575,11211,272,1,f +2575,15535,25,1,f +2575,15573,73,1,f +2575,18674,322,1,f +2575,2456,322,1,f +2575,3001,73,1,f +2575,3003,272,1,f +2575,3003,1,1,f +2575,3004,322,4,f +2575,3004,15,6,f +2575,3004,73,4,f +2575,3005,272,2,f +2575,30165,272,1,f +2575,3021,1,2,f +2575,3021,272,1,f +2575,3039,1,8,f +2575,3040b,272,2,f +2575,3065,47,1,f +2575,3065,33,2,f +2575,3660,15,1,f +2575,3665,73,2,f +2575,3665,1,2,f +2575,3795,1,2,f +2575,3795,72,1,f +2575,3795,73,1,f +2575,4600,0,3,f +2575,4740,33,1,f +2575,4740,72,1,f +2575,4871,1,1,f +2575,50950,1,2,f +2575,59900,33,1,f +2575,59900,14,1,f +2575,60594,1,1,f +2575,60608,14,2,f +2575,6091,1,2,f +2575,87087,1,4,f +2575,93273,1,1,f +2575,93594,179,6,f +2575,98138pr0026,15,2,f +2575,98138pr0026,15,1,t +2576,45449,45,6,f +2576,45452,45,5,f +2576,45452,230,10,f +2576,45499,45,1,f +2576,45499,47,1,f +2576,45499,46,1,f +2576,45499,230,1,f +2576,45499,43,1,f +2576,46277,230,11,f +2576,46296,230,3,f +2576,46296,45,1,f +2576,clikits018,230,1,f +2576,clikits022,43,3,f +2576,clikits022,47,4,f +2576,clikits023,47,1,f +2576,clikits024,47,6,f +2576,clikits024,43,3,f +2576,clikits024,45,4,f +2576,clikits040,230,1,f +2576,clikits044,47,1,f +2576,clikits045,47,1,f +2576,clikits046,13,3,f +2576,clikits046,18,2,f +2576,clikits047,45,5,f +2576,clikits048,43,1,f +2576,clikits049,47,1,f +2576,clikits222,63,2,f +2578,3626cpr0893,14,1,f +2578,74188,322,1,f +2578,85974,70,1,f +2578,87079pr0042,15,1,f +2578,970c00,26,1,f +2578,973pr2136c01,15,1,f +2579,2439,8,1,f +2579,2446,1,1,f +2579,2446px3,4,1,f +2579,2447,41,3,f +2579,2495,4,1,f +2579,2496,0,1,f +2579,2540,15,1,f +2579,2546p01,4,1,f +2579,2550c01,6,1,f +2579,2921,0,1,f +2579,30187c01,15,2,f +2579,30187c01,0,2,f +2579,3023,14,1,f +2579,3062b,4,2,f +2579,3069bpr0016,15,2,f +2579,3626bp02,14,2,f +2579,3626bp03,14,1,f +2579,3626bp05,14,1,f +2579,3834,15,1,f +2579,3835,7,1,f +2579,3836,6,2,f +2579,3837,8,2,f +2579,3838,1,2,f +2579,3838,14,1,f +2579,3841,8,1,f +2579,3900,15,4,f +2579,3962b,0,1,f +2579,4150p02,14,1,f +2579,4449,15,2,f +2579,4528,0,1,f +2579,4599a,4,2,f +2579,4629c01,1,1,f +2579,4714,15,1,f +2579,4715,15,2,f +2579,4719,4,1,f +2579,4719,0,1,f +2579,4733,0,1,f +2579,4740,8,1,f +2579,55295,8,1,f +2579,55296,8,1,f +2579,55297,8,1,f +2579,55298,8,1,f +2579,55299,8,1,f +2579,55300,8,1,f +2579,6093,6,1,f +2579,6117,57,1,f +2579,6141,4,3,f +2579,6158,0,1,f +2579,6254,15,1,f +2579,92851,47,4,f +2579,970c00,1,1,f +2579,970c00,4,1,f +2579,970c00,7,2,f +2579,973p29c01,7,1,f +2579,973px121c01,0,1,f +2579,973px18c01,15,2,f +2579,firec017,89,1,f +2580,3039,8,2,f +2580,40373pb03,7,2,f +2580,40374pb03,7,2,f +2580,40375,379,2,f +2580,40378,379,1,f +2580,40379,379,1,f +2580,40380c01pb03,379,1,f +2580,40385,8,1,f +2580,40386,379,4,f +2580,40387px1,379,1,f +2580,40388,7,1,f +2580,40393,379,2,f +2580,40395,379,1,f +2580,40396,379,1,f +2580,6027,4,1,f +2580,6127,379,1,f +2580,6128,379,1,f +2580,x158,379,1,f +2581,2825,0,2,f +2581,2905,1,2,f +2581,32068,7,1,f +2581,32073,0,2,f +2581,32123b,7,4,f +2581,32123b,7,1,t +2581,32193,0,4,f +2581,3705,0,2,f +2581,3713,7,4,f +2581,3713,7,1,t +2581,4274,7,1,f +2581,4274,7,1,t +2581,4519,0,2,f +2581,6041,0,1,f +2581,6536,7,2,f +2581,75c05,8,1,f +2581,rb00168,0,1,t +2581,rb00168,0,1,f +2585,3626bpr0649,14,1,f +2585,4505,308,1,f +2585,4522,0,1,f +2585,4522,0,1,t +2585,970c00,0,1,f +2585,973pr0420c01,70,1,f +2586,10113,0,1,f +2586,10201,71,2,f +2586,10201,0,1,f +2586,10247,72,2,f +2586,11090,0,2,f +2586,11090,297,10,f +2586,11212,72,2,f +2586,11455,0,2,f +2586,11950,297,2,f +2586,12825,0,4,f +2586,12825,72,2,f +2586,14769,297,4,f +2586,14769,71,4,f +2586,15038,0,4,f +2586,15100,0,4,f +2586,15207,0,2,f +2586,15210,72,2,f +2586,15458,0,4,f +2586,18450,0,2,f +2586,2357,0,6,f +2586,2362b,47,2,f +2586,2412b,36,1,f +2586,2412b,72,2,f +2586,2420,0,2,f +2586,2431,71,4,f +2586,2431,0,17,f +2586,2445,71,2,f +2586,2449,0,2,f +2586,2450,0,14,f +2586,2456,0,8,f +2586,2489,72,1,f +2586,2540,0,4,f +2586,2540,72,2,f +2586,2654,72,25,f +2586,2654,71,1,f +2586,2730,71,2,f +2586,2730,0,6,f +2586,2780,0,100,f +2586,2877,0,12,f +2586,2926,0,2,f +2586,298c02,0,6,f +2586,3001,0,7,f +2586,3002,72,2,f +2586,3002,0,9,f +2586,3003,71,4,f +2586,3003,0,8,f +2586,3004,0,18,f +2586,30043,0,2,f +2586,3005,0,18,f +2586,3005,72,4,f +2586,3007,14,2,f +2586,3007,0,6,f +2586,3008,0,2,f +2586,3009,72,2,f +2586,3009,0,2,f +2586,3010,72,2,f +2586,3010,0,13,f +2586,3020,0,21,f +2586,3020,71,3,f +2586,3021,0,52,f +2586,3021,14,4,f +2586,3022,0,8,f +2586,3022,71,8,f +2586,3023,0,22,f +2586,3023,72,33,f +2586,30236,72,2,f +2586,3024,71,2,f +2586,3024,0,22,f +2586,3028,0,1,f +2586,3031,72,2,f +2586,3031,0,1,f +2586,3032,72,2,f +2586,3032,0,1,f +2586,3034,0,10,f +2586,3035,71,5,f +2586,30355,0,1,f +2586,30356,0,1,f +2586,3036,71,5,f +2586,30363,0,4,f +2586,30367c,71,4,f +2586,3037,0,2,f +2586,3037,72,2,f +2586,30374,0,6,f +2586,30374,71,4,f +2586,30374,297,2,f +2586,3038,0,2,f +2586,30382,0,4,f +2586,30383,71,2,f +2586,3039,72,2,f +2586,3039,71,3,f +2586,3039,0,4,f +2586,3040b,0,22,f +2586,30503,0,6,f +2586,30552,0,2,f +2586,30553,0,2,f +2586,30553,72,2,f +2586,3062b,71,1,f +2586,3068b,72,6,f +2586,3068b,0,10,f +2586,3069b,0,24,f +2586,3069b,71,3,f +2586,3069b,72,16,f +2586,3069bpr0030,72,2,f +2586,3070b,71,3,f +2586,3070b,14,4,f +2586,3070b,0,2,f +2586,3070bpr0007,71,2,f +2586,3176,71,8,f +2586,32000,0,2,f +2586,32000,71,4,f +2586,32013,0,2,f +2586,32016,0,4,f +2586,32018,0,2,f +2586,32028,72,5,f +2586,32028,0,2,f +2586,32054,71,16,f +2586,32062,4,6,f +2586,32064b,4,4,f +2586,32064b,72,6,f +2586,32064b,0,4,f +2586,32123b,71,8,f +2586,32140,0,2,f +2586,32278,0,2,f +2586,32316,71,6,f +2586,32324,71,2,f +2586,3245c,0,2,f +2586,3245c,14,1,f +2586,32523,71,2,f +2586,32524,71,1,f +2586,32525,71,2,f +2586,32526,0,2,f +2586,32532,0,10,f +2586,32555,0,4,f +2586,32557,0,2,f +2586,3297,0,2,f +2586,3299,0,6,f +2586,3460,72,4,f +2586,3460,0,7,f +2586,3460,71,9,f +2586,3622,0,2,f +2586,3623,0,32,f +2586,3626cpr1526,78,1,f +2586,3626cpr1527,78,1,f +2586,3660,0,7,f +2586,3666,71,2,f +2586,3666,0,14,f +2586,3678b,71,2,f +2586,3678b,0,6,f +2586,3700,14,4,f +2586,3701,72,2,f +2586,3701,14,2,f +2586,3703,72,2,f +2586,3708,0,4,f +2586,3710,0,21,f +2586,3710,71,4,f +2586,3710,72,8,f +2586,3737,0,2,f +2586,3738,0,2,f +2586,3743,0,2,f +2586,3747b,0,2,f +2586,3749,19,2,f +2586,3794a,0,4,f +2586,3795,71,10,f +2586,3795,0,8,f +2586,3832,0,2,f +2586,3895,0,7,f +2586,3937,0,2,f +2586,3937,71,11,f +2586,3938,71,1,f +2586,3941,71,16,f +2586,3958,0,2,f +2586,4032a,72,6,f +2586,40490,0,3,f +2586,4070,0,10,f +2586,4081b,71,3,f +2586,4081b,0,4,f +2586,4081b,72,2,f +2586,41239,0,4,f +2586,4161,0,2,f +2586,4162,0,6,f +2586,41747,0,1,f +2586,41748,0,1,f +2586,41767,0,2,f +2586,41768,0,2,f +2586,41769,0,5,f +2586,41770,0,5,f +2586,42003,0,10,f +2586,4274,71,46,f +2586,4282,0,2,f +2586,4282,71,3,f +2586,4286,72,2,f +2586,4287,0,2,f +2586,43093,1,6,f +2586,43719,0,2,f +2586,43722,0,5,f +2586,43723,0,5,f +2586,44126,0,1,f +2586,44294,71,2,f +2586,44301a,0,4,f +2586,44302a,72,4,f +2586,4445,0,2,f +2586,44676,0,4,f +2586,44728,72,14,f +2586,4519,71,4,f +2586,4522,0,2,f +2586,4599b,71,4,f +2586,4600,0,2,f +2586,4716,71,4,f +2586,4735,0,2,f +2586,47397,0,1,f +2586,47398,0,1,f +2586,4742,0,1,f +2586,47457,72,5,f +2586,476,0,2,f +2586,48336,0,4,f +2586,4865b,0,4,f +2586,4865b,41,1,f +2586,4871,72,2,f +2586,48729b,0,2,f +2586,48989,71,2,f +2586,49668,0,20,f +2586,51739,0,12,f +2586,53989,297,2,f +2586,54200,0,26,f +2586,54200,71,2,f +2586,54383,0,13,f +2586,54384,0,13,f +2586,55013,72,2,f +2586,55615,71,2,f +2586,56630,0,1,f +2586,56908,0,2,f +2586,57909b,72,2,f +2586,59349,47,2,f +2586,6005,0,20,f +2586,60208,72,4,f +2586,60470a,0,8,f +2586,60470a,71,4,f +2586,60478,71,19,f +2586,60478,0,14,f +2586,60479,0,6,f +2586,60479,71,2,f +2586,60481,0,2,f +2586,60581,47,2,f +2586,60594,0,4,f +2586,60897,0,4,f +2586,6106,0,2,f +2586,6111,72,2,f +2586,6111,0,6,f +2586,61183,2,1,f +2586,61252,72,2,f +2586,61252,0,4,f +2586,6134,0,8,f +2586,6134,71,4,f +2586,6140,0,1,f +2586,6141,71,2,f +2586,6179,0,2,f +2586,6180,0,4,f +2586,6187,0,1,f +2586,6231,0,2,f +2586,62462,0,14,f +2586,62462,70,2,f +2586,63864,0,18,f +2586,63864,14,2,f +2586,63868,0,8,f +2586,63868,71,6,f +2586,63965,0,4,f +2586,6536,0,2,f +2586,6541,72,2,f +2586,6558,1,36,f +2586,6587,28,6,f +2586,6629,0,4,f +2586,6632,72,8,f +2586,6636,0,17,f +2586,73983,72,4,f +2586,85984,72,28,f +2586,85984,0,45,f +2586,85984,71,1,f +2586,87079,0,24,f +2586,87082,0,12,f +2586,87087,0,2,f +2586,87615,0,2,f +2586,87994,297,6,f +2586,87994,0,2,f +2586,88072,0,10,f +2586,88293,0,2,f +2586,90498,0,1,f +2586,92013,72,2,f +2586,92280,0,10,f +2586,92280,71,1,f +2586,92593,0,9,f +2586,92690,297,4,f +2586,92908,71,2,f +2586,92909,72,4,f +2586,92912,0,4,f +2586,92946,0,30,f +2586,96874,25,1,t +2586,970c00,0,1,f +2586,970c00pr0742,85,1,f +2586,973pr2801c01,0,1,f +2586,973pr2802c01,85,1,f +2586,98138,71,2,f +2586,98138,47,8,f +2586,98721,0,1,f +2586,99206,0,4,f +2586,99207,71,6,f +2586,99780,0,3,f +2586,99781,0,2,f +2586,99781,71,2,f +2588,3852a,6,1,f +2588,4424,366,1,f +2588,fab10b,9999,1,f +2590,258pb09,4,1,f +2590,27bc01,4,2,f +2590,3005,15,4,f +2590,3008a,15,2,f +2590,3008apb10,15,1,f +2590,3034a,15,1,f +2590,3036a,15,2,f +2590,3065,15,32,f +2590,3065,4,16,f +2590,3065,47,3,f +2590,3087bc01,4,2,f +2590,820,15,1,f +2590,821,15,1,f +2590,822ac01,4,1,f +2592,3003,15,100,f +2594,10052,71,1,f +2594,10113,0,1,f +2594,11477,0,2,f +2594,11477,272,14,f +2594,11477,71,2,f +2594,15068,272,1,f +2594,15341,179,3,f +2594,15427pr0001,0,1,f +2594,15428pr0001,0,1,f +2594,15535,72,1,f +2594,15573,0,2,f +2594,15573,272,4,f +2594,15706,322,8,f +2594,15712,71,5,f +2594,16770,41,8,f +2594,18601,72,1,f +2594,18649,0,6,f +2594,18651,0,2,f +2594,18868a,41,1,f +2594,19981pr0001,41,1,f +2594,19981pr0002,41,1,f +2594,19981pr0003,41,1,f +2594,21445,0,2,f +2594,21845,0,1,f +2594,2412b,272,4,f +2594,2412b,179,9,f +2594,2419,71,2,f +2594,2540,0,3,f +2594,2540,71,5,f +2594,298c02,71,1,t +2594,298c02,71,1,f +2594,30028,0,4,f +2594,3003,71,2,f +2594,3005,272,2,f +2594,3020,272,2,f +2594,3020,0,2,f +2594,3020,14,1,f +2594,3020,322,1,f +2594,3021,71,6,f +2594,3021,322,6,f +2594,3022,72,3,f +2594,3023,19,1,f +2594,3023,0,4,f +2594,3045,71,2,f +2594,3069b,322,10,f +2594,3069bpr0153,0,1,f +2594,3070b,182,1,f +2594,3070b,182,1,t +2594,32064a,71,2,f +2594,3626cpr0896,78,1,f +2594,3626cpr1644,14,1,f +2594,3626cpr1765,78,1,f +2594,3675,272,2,f +2594,3701,71,1,f +2594,3710,322,1,f +2594,3710,272,1,f +2594,3937,14,1,f +2594,3938,0,1,f +2594,3941,41,1,f +2594,4286,322,2,f +2594,4287,71,2,f +2594,44567a,71,1,f +2594,44676,272,2,f +2594,4477,72,1,f +2594,4595,71,1,f +2594,4600,0,1,f +2594,4740,182,2,f +2594,4865b,41,4,f +2594,48729b,72,1,t +2594,48729b,72,1,f +2594,49668,0,2,f +2594,50231,72,1,f +2594,54200,182,1,t +2594,54200,41,2,f +2594,54200,71,1,t +2594,54200,41,1,t +2594,54200,272,1,t +2594,54200,71,14,f +2594,54200,182,1,f +2594,54200,272,2,f +2594,6019,0,2,f +2594,60476,71,2,f +2594,60477,72,2,f +2594,6091,272,2,f +2594,6131,72,1,f +2594,61409,71,5,f +2594,6141,72,3,f +2594,6141,72,2,t +2594,62360,41,2,f +2594,63868,0,5,f +2594,63965,70,1,f +2594,6553,0,2,f +2594,6632,71,2,f +2594,74967,0,4,f +2594,85984,0,2,f +2594,87580,272,1,f +2594,88072,71,1,f +2594,92747pr0002,52,1,f +2594,92747pr0003,52,1,f +2594,92747pr0004,52,1,f +2594,92747pr0005,52,1,f +2594,92747pr0006,52,1,f +2594,96874,25,1,t +2594,970c00,72,2,f +2594,970c00pr0628,0,1,f +2594,973pr2053c01,72,1,f +2594,973pr2590c01,0,1,f +2594,973pr2922c01,72,1,f +2594,98138,41,1,t +2594,98138,41,14,f +2594,98138,52,1,t +2594,98138,52,1,f +2594,98397,71,2,f +2594,98721,0,3,f +2594,98721,0,2,t +2594,99207,0,1,f +2594,99780,72,1,f +2594,99781,0,1,f +2596,22239,89,1,f +2596,22667,5,2,f +2596,2417,10,1,f +2596,2431,73,2,f +2596,3005,45,1,f +2596,30145,73,1,f +2596,3020,73,1,f +2596,3031,1,1,f +2596,3040b,73,2,f +2596,3065,45,2,f +2596,3069bpx39,33,1,f +2596,3070bph1,15,1,f +2596,33006,383,1,f +2596,33009,73,1,f +2596,33054,383,1,f +2596,33201px1,47,1,f +2596,33229pb02,18,1,f +2596,33240,1,1,f +2596,3679,7,1,f +2596,3680,15,1,f +2596,3956,1,2,f +2596,4088,15,1,f +2596,4237,45,1,f +2596,4238,45,1,f +2596,4449,73,1,f +2596,4589,57,1,f +2596,4589,46,1,f +2596,6108,73,1,f +2596,6124,21,1,f +2596,6124,33,1,f +2596,6141,57,1,f +2596,6141,34,1,f +2596,6162,74,1,f +2596,6176,73,1,f +2596,6177px4,1,1,f +2596,6179,5,1,f +2596,6182,15,3,f +2596,6182,73,1,f +2596,6256,18,1,f +2596,75347,1,1,f +2596,x10,73,1,f +2597,10201,4,2,f +2597,10314,4,2,f +2597,11055,15,2,f +2597,11090,0,4,f +2597,11153,4,2,f +2597,11215,71,1,f +2597,11291,4,1,f +2597,11303,272,1,f +2597,11458,72,4,f +2597,11476,71,2,f +2597,11477,15,13,f +2597,11477,0,2,f +2597,13547,0,8,f +2597,14226c11,0,2,f +2597,14301,71,2,f +2597,14719,71,2,f +2597,15068,72,2,f +2597,15068,0,2,f +2597,15068,71,4,f +2597,15207,15,4,f +2597,15210,0,4,f +2597,15535,72,1,f +2597,15573,15,4,f +2597,15573,71,2,f +2597,15712,0,2,f +2597,18654,72,2,f +2597,18654,72,1,t +2597,18671,72,1,f +2597,18677,71,10,f +2597,18973pr0004,40,1,f +2597,18973pr0005,40,1,f +2597,18974,4,2,f +2597,18974,15,4,f +2597,18975,72,4,f +2597,18976,179,6,f +2597,18976,0,4,f +2597,18977,0,10,f +2597,18979a,179,4,t +2597,18979b,179,4,f +2597,2357,72,4,f +2597,2357,15,2,f +2597,2412b,15,6,f +2597,2420,4,2,f +2597,2420,15,4,f +2597,2420,0,4,f +2597,24309,15,1,f +2597,2431,15,12,f +2597,2431,71,4,f +2597,2445,0,2,f +2597,2446,15,1,f +2597,2446,1,1,f +2597,2447,47,1,t +2597,2447,40,1,t +2597,2447,47,1,f +2597,2447,40,1,f +2597,2454a,15,10,f +2597,2454a,4,4,f +2597,2540,71,1,f +2597,2654,47,6,f +2597,2780,0,13,f +2597,2780,0,2,t +2597,3001,72,2,f +2597,30029,0,2,f +2597,3003,0,2,f +2597,3003,72,6,f +2597,3003,1,1,f +2597,3004,72,1,f +2597,3004,15,3,f +2597,3005,71,2,f +2597,3005,15,4,f +2597,3005,4,2,f +2597,3009,15,3,f +2597,3009,72,2,f +2597,3010,15,1,f +2597,30136,0,2,f +2597,3020,72,2,f +2597,3020,15,5,f +2597,3021,4,4,f +2597,3021,71,4,f +2597,3022,0,1,f +2597,3022,71,1,f +2597,3022,72,2,f +2597,3022,1,2,f +2597,3023,15,9,f +2597,3023,46,14,f +2597,3023,2,4,f +2597,3023,4,4,f +2597,3023,71,7,f +2597,30237b,15,3,f +2597,3024,15,2,f +2597,3024,36,2,f +2597,3024,15,1,t +2597,3024,36,1,t +2597,3028,72,1,f +2597,3029,72,1,f +2597,3032,4,1,f +2597,3034,71,4,f +2597,3035,72,5,f +2597,30367c,72,1,f +2597,30374,71,1,f +2597,30374,0,2,f +2597,30374,71,1,t +2597,30374,0,1,t +2597,30377,0,1,t +2597,30377,0,2,f +2597,3039,15,1,f +2597,3039,4,1,f +2597,3039,72,1,f +2597,3039,71,4,f +2597,3040b,15,2,f +2597,30414,72,6,f +2597,30553,71,3,f +2597,30565,72,2,f +2597,3062b,0,2,f +2597,3062b,4,1,f +2597,3062b,14,2,f +2597,3068b,4,2,f +2597,3068b,71,1,f +2597,3068b,0,4,f +2597,3069b,4,3,f +2597,3069b,0,3,f +2597,3069b,15,10,f +2597,3070b,15,4,f +2597,3070b,15,2,t +2597,3070bpr0007,71,1,t +2597,3070bpr0007,71,2,f +2597,32014,71,2,f +2597,32039,71,2,f +2597,32054,4,2,f +2597,32062,0,1,f +2597,32062,4,2,f +2597,32064a,0,1,f +2597,32123b,71,2,t +2597,32123b,71,2,f +2597,32316,0,2,f +2597,32524,4,2,f +2597,32526,0,2,f +2597,32530,0,4,f +2597,32556,19,2,f +2597,3298,4,4,f +2597,3298,71,2,f +2597,3460,0,4,f +2597,3460,72,1,f +2597,3623,15,2,f +2597,3623,14,2,f +2597,3623,4,4,f +2597,3623pr0012,15,2,f +2597,3623pr0013,15,2,f +2597,3626cpr0891,14,1,f +2597,3626cpr0933,14,1,f +2597,3626cpr1144,14,1,f +2597,3626cpr1146,14,1,f +2597,3626cpr1675,14,1,f +2597,3660,4,2,f +2597,3660,71,3,f +2597,3665,0,2,f +2597,3666,15,1,f +2597,3666,4,2,f +2597,3673,71,2,f +2597,3678b,15,1,f +2597,3705,0,1,f +2597,3709,0,1,f +2597,3710,4,2,f +2597,3710,2,3,f +2597,3710,0,6,f +2597,3747b,72,4,f +2597,3749,19,10,f +2597,3795,4,5,f +2597,3795,0,2,f +2597,3795,15,2,f +2597,3829c01,15,1,f +2597,3829c01,4,1,f +2597,3832,15,5,f +2597,3900,71,1,f +2597,3938,0,6,f +2597,3941,72,2,f +2597,3956,71,1,f +2597,3957b,71,2,f +2597,4032a,71,2,f +2597,4070,15,2,f +2597,4070,0,2,f +2597,4079b,0,2,f +2597,4162,72,6,f +2597,4162,4,2,f +2597,4274,1,1,t +2597,4274,1,3,f +2597,4282,72,3,f +2597,4286,72,2,f +2597,4349,4,2,f +2597,4349,0,2,f +2597,43857,0,2,f +2597,44294,71,4,f +2597,44301a,71,4,f +2597,44728,71,3,f +2597,4477,4,4,f +2597,4533,72,1,f +2597,4536,72,2,f +2597,4599b,4,1,t +2597,4599b,4,1,f +2597,4740,71,2,f +2597,48336,4,2,f +2597,48336,0,4,f +2597,4865b,4,2,f +2597,50950,15,2,f +2597,51739,0,1,f +2597,52107,71,1,f +2597,54200,4,3,t +2597,54200,0,1,t +2597,54200,15,3,t +2597,54200,0,2,f +2597,54200,15,8,f +2597,54200,4,6,f +2597,59349,15,5,f +2597,59443,71,4,f +2597,59900,297,1,f +2597,604547,0,1,f +2597,604548,0,1,f +2597,604549,0,1,f +2597,604550,0,1,f +2597,604551,0,1,f +2597,604552,0,1,f +2597,604553,0,1,f +2597,604614,0,1,f +2597,604615,0,1,f +2597,60470b,0,1,f +2597,60485,71,2,f +2597,60599,4,1,f +2597,6091,15,2,f +2597,6111,71,2,f +2597,6141,72,1,t +2597,6141,19,4,f +2597,6141,25,1,t +2597,6141,19,1,t +2597,6141,71,1,t +2597,6141,72,4,f +2597,6141,25,2,f +2597,6141,71,4,f +2597,61678,15,2,f +2597,6231,4,2,f +2597,62462,4,2,f +2597,62462,0,2,f +2597,63868,0,4,f +2597,63965,71,1,f +2597,64644,297,4,f +2597,6558,1,2,f +2597,6589,19,1,f +2597,6636,15,4,f +2597,6636,0,2,f +2597,73983,71,4,f +2597,75876stk01,9999,1,f +2597,75c18,0,1,f +2597,85984,4,2,f +2597,85984,0,5,f +2597,86035,15,1,f +2597,87079,4,3,f +2597,87079,15,2,f +2597,87079,0,3,f +2597,87081,72,1,f +2597,87087,72,10,f +2597,87580,0,4,f +2597,87580,15,1,f +2597,87990,70,1,f +2597,88072,71,3,f +2597,88072,15,2,f +2597,88930,4,1,f +2597,90258,72,1,f +2597,92410,15,2,f +2597,92593,4,2,f +2597,92946,4,4,f +2597,93095,0,2,f +2597,93273,72,4,f +2597,95347,0,2,f +2597,96874,25,1,t +2597,970c00,71,2,f +2597,970c00,0,1,f +2597,970c00,15,1,f +2597,970c00,4,1,f +2597,973pr1801c01,25,1,f +2597,973pr3263c01,4,1,f +2597,973pr3264c01,15,1,f +2597,973pr3264c02,15,2,f +2597,98283,72,10,f +2597,99206,71,3,f +2597,99207,0,5,f +2597,99207,15,3,f +2597,99780,0,1,f +2597,99780,72,2,f +2597,99780,4,2,f +2597,99780,15,4,f +2598,2780,0,5,f +2598,2907,71,1,f +2598,32062,0,1,f +2598,32174,72,7,f +2598,32270,71,1,f +2598,32482,272,1,f +2598,3706,0,1,f +2598,41669,57,2,f +2598,43093,1,3,f +2598,4519,71,4,f +2598,47296,72,2,f +2598,47299,179,2,f +2598,47306,272,1,f +2598,50899,179,1,f +2598,50899pr0002,179,1,f +2598,50900,72,1,f +2598,50901,72,1,f +2598,50903,14,1,f +2598,50919,179,2,f +2598,50920,272,2,f +2598,50921,272,1,f +2598,50922,272,1,f +2598,50923,72,1,f +2598,50924pat01,272,2,f +2598,50925,272,1,f +2598,50926,179,1,f +2598,50928,272,1,f +2599,11203,29,1,f +2599,11407pr0001c01,26,1,f +2599,11816pr0003,78,1,f +2599,11833,47,1,f +2599,11833,191,1,f +2599,13336pr0001,27,1,f +2599,18853,29,1,t +2599,18853,29,1,f +2599,18854,52,1,f +2599,18854,52,1,t +2599,22667,4,1,f +2599,22667,4,1,t +2599,2343,47,2,f +2599,2412b,0,1,f +2599,3003,15,2,f +2599,3005,84,1,f +2599,3005,15,4,f +2599,30176,2,1,f +2599,3020,27,2,f +2599,3021,2,3,f +2599,3022,19,1,f +2599,3022,2,1,f +2599,3023,4,1,f +2599,30357,2,1,f +2599,3036,322,1,f +2599,3039,15,1,f +2599,30565,2,3,f +2599,3069b,29,1,f +2599,3069b,191,3,f +2599,3069bpr0175,29,1,f +2599,32474,191,1,f +2599,33291,4,1,t +2599,33291,31,1,t +2599,33291,31,2,f +2599,33291,4,4,f +2599,3460,27,1,f +2599,3622,15,2,f +2599,3710,27,4,f +2599,3795,15,1,f +2599,3832,2,2,f +2599,3937,15,1,f +2599,3960pr0015,15,1,f +2599,48336,4,1,f +2599,4865a,29,1,f +2599,59900,14,1,f +2599,6134,0,1,f +2599,6141,2,1,f +2599,6141,2,1,t +2599,6141,29,2,f +2599,6141,29,1,t +2599,85080,15,8,f +2599,85984,191,1,f +2599,87079,26,1,f +2599,92256,70,1,f +2599,92456pr0068c01,78,1,f +2599,98138,71,2,f +2599,98138,45,1,f +2599,98138,71,1,t +2599,98138,45,1,t +2599,98283,84,1,f +2599,98549,71,1,f +2601,3004,15,4,f +2601,3021,85,1,f +2601,4599b,71,1,t +2601,4599b,71,1,f +2601,59900,46,1,f +2601,6231,322,4,f +2601,98138,15,1,t +2601,98138,15,1,f +2602,2456,0,4,f +2602,2540,0,2,f +2602,2878c01,0,2,f +2602,2920,0,2,f +2602,3004,0,2,f +2602,3010,0,1,f +2602,3020,0,1,f +2602,3021,7,2,f +2602,3021,0,2,f +2602,3028,0,1,f +2602,3034,0,2,f +2602,4022,0,2,f +2602,4150pr0022,7,1,f +2602,4175,0,4,f +2602,4215b,0,3,f +2602,4286,0,2,f +2602,4460a,0,2,f +2602,6019,0,2,f +2602,6141,36,2,f +2602,73092,0,2,f +2603,2335p30,15,1,f +2603,2436,0,2,f +2603,2530,8,1,f +2603,2530,8,1,t +2603,2542,6,2,f +2603,2544,6,1,f +2603,2547,8,1,f +2603,2548,8,1,f +2603,2555,0,1,f +2603,2562,6,1,f +2603,3022,7,1,f +2603,3023,0,1,f +2603,3032,0,1,f +2603,3062b,14,16,f +2603,3626apb03,14,1,f +2603,3794a,0,1,f +2603,3937,0,1,f +2603,3938,0,1,f +2603,3957a,0,1,f +2603,4085c,0,2,f +2603,970c00,7,1,f +2603,973p34c01,1,1,f +2604,41855,73,2,f +2604,41855pb11,73,1,f +2604,43093,1,1,f +2604,4740,47,1,f +2604,4740,47,1,t +2604,47430,73,2,f +2604,47431,73,2,f +2604,47432,73,2,f +2604,47452,71,2,f +2604,47454,71,2,f +2604,47455,15,10,f +2604,47456,73,4,f +2604,47458,73,6,f +2604,47460,134,1,f +2604,47471,73,1,f +2604,47474,71,1,f +2604,47477c01pb01,73,1,f +2604,47501,73,4,f +2604,48080,89,1,f +2604,bb153pb02,71,1,f +2604,kkc01,89,1,f +2604,kkc03,89,1,f +2604,kkc04,89,1,f +2604,kkc06,89,1,f +2604,kkc07,89,1,f +2604,kkc09,89,1,f +2606,32073,0,1,f +2606,32174,0,6,f +2606,32556,7,1,f +2606,3706,0,2,f +2606,41663,0,2,f +2606,41665,0,2,f +2606,41666,7,2,f +2606,41667,7,1,f +2606,41668,0,2,f +2606,41669,42,2,f +2606,41670,8,4,f +2606,41671pat0002,0,1,f +2606,41672,0,2,f +2606,41752,8,1,f +2606,42042,7,1,f +2606,42042und,27,1,f +2606,42074,15,2,f +2606,4519,0,5,f +2606,6628,0,2,f +2606,85544,10,1,f +2607,11403pr0007,28,1,f +2607,11477,308,2,f +2607,11605,70,1,f +2607,11816pr0025,78,1,f +2607,11833,27,1,f +2607,13965,70,1,f +2607,14769,158,2,f +2607,14769pr1042,27,2,f +2607,15068,322,1,f +2607,15712,70,1,f +2607,18651,0,1,f +2607,18674,70,1,f +2607,22667,26,2,f +2607,22667,26,1,t +2607,24130,52,1,f +2607,24132,52,1,f +2607,2423,85,1,f +2607,26090pr0003,31,1,f +2607,2817,322,1,f +2607,3003,72,3,f +2607,3005,322,1,f +2607,3010,72,2,f +2607,30153,47,1,f +2607,3020,2,1,f +2607,3024,41,1,t +2607,3024,41,3,f +2607,30565,2,1,f +2607,3062b,46,1,f +2607,3065,45,4,f +2607,3068b,322,2,f +2607,3069bpr0168,70,1,f +2607,33183,70,1,t +2607,33183,70,1,f +2607,33291,191,3,f +2607,33291,191,1,t +2607,3622,27,2,f +2607,3665,72,1,f +2607,3673,71,1,f +2607,3673,71,1,t +2607,3676,72,1,f +2607,3678b,31,2,f +2607,3700,72,2,f +2607,3710,72,2,f +2607,4286,72,2,f +2607,54200,47,6,f +2607,54200,47,1,t +2607,59900,45,2,f +2607,59900,45,1,t +2607,6003,2,1,f +2607,6091,322,2,f +2607,61252,72,1,f +2607,6141,27,1,t +2607,6141,27,5,f +2607,88292,31,2,f +2607,92456pr0093c01,78,1,f +2607,93092,191,1,f +2608,2335,15,1,f +2608,2335p30,15,1,f +2608,2357,7,1,f +2608,2423,2,2,f +2608,2453a,0,2,f +2608,2518,2,4,f +2608,2527,6,1,f +2608,2530,8,1,f +2608,2536,6,5,f +2608,2540,0,1,f +2608,2542,4,1,f +2608,2543,4,1,f +2608,2544,6,1,f +2608,2546p01,4,1,f +2608,2550c01,6,1,f +2608,2562,6,1,f +2608,2563,6,1,f +2608,2566,6,1,f +2608,3004,7,2,f +2608,3005,0,2,f +2608,3009,7,1,f +2608,3010,7,1,f +2608,3032,0,1,f +2608,3062b,0,6,f +2608,3062b,2,1,f +2608,3068b,14,2,f +2608,3622,7,1,f +2608,3626apb03,14,1,f +2608,3626apb04,14,1,f +2608,3659,7,4,f +2608,3867p01,7,1,f +2608,3957a,0,1,f +2608,4032a,2,1,f +2608,4070,0,2,f +2608,4424,6,1,f +2608,4600,0,2,f +2608,4624,6,4,f +2608,4738a,6,1,f +2608,4739a,6,1,f +2608,4865a,7,1,f +2608,57503,334,2,f +2608,57504,334,2,f +2608,57505,334,2,f +2608,57506,334,2,f +2608,84943,8,1,f +2608,970c00,1,1,f +2608,970c00,15,1,f +2608,973p32c01,14,1,f +2608,973p34c01,1,1,f +2610,2780,0,14,f +2610,2780,0,1,t +2610,2819,71,1,f +2610,2825,71,6,f +2610,2850a,71,1,f +2610,2851,14,1,f +2610,2852,71,1,f +2610,2853,71,2,f +2610,32002,72,1,t +2610,32002,72,2,f +2610,32016,71,2,f +2610,32039,71,5,f +2610,32054,71,6,f +2610,32062,4,4,f +2610,32063,0,2,f +2610,32068,0,2,f +2610,32069,0,2,f +2610,32073,71,3,f +2610,32249,1,2,f +2610,32291,72,2,f +2610,32523,27,1,f +2610,32523,72,1,f +2610,32524,27,3,f +2610,32525,0,2,f +2610,32526,1,2,f +2610,32527,27,1,f +2610,32528,27,1,f +2610,32557,71,2,f +2610,32580,135,4,f +2610,3705,0,3,f +2610,3713,71,1,t +2610,3713,71,3,f +2610,3749,19,1,t +2610,3749,19,4,f +2610,4019,71,2,f +2610,40490,0,4,f +2610,41677,72,2,f +2610,43093,1,1,t +2610,43093,1,10,f +2610,44294,71,1,f +2610,4519,71,4,f +2610,48989,71,1,f +2610,55982,0,4,f +2610,58090,0,4,f +2610,59443,72,1,f +2610,60483,71,2,f +2610,60484,0,1,f +2610,60485,71,1,f +2610,62462,71,4,f +2610,6536,27,5,f +2610,6553,72,1,f +2610,6558,1,5,f +2610,6629,72,1,f +2610,6632,0,3,f +2610,6632,27,2,f +2611,2412b,14,3,f +2611,2420,72,2,f +2611,2420,14,2,f +2611,2431,0,1,f +2611,2525,14,1,f +2611,2817,0,2,f +2611,3004,0,1,f +2611,3008,0,2,f +2611,3010,71,3,f +2611,3020,72,5,f +2611,3020,14,2,f +2611,3021,71,4,f +2611,3022,0,2,f +2611,3023,71,2,f +2611,30237a,14,1,f +2611,3031,72,1,f +2611,3034,14,1,f +2611,30355,72,1,f +2611,30356,72,1,f +2611,30363,72,1,f +2611,3037,71,2,f +2611,30374,41,1,f +2611,30374,0,1,f +2611,30386,0,3,f +2611,3039pr0014,0,1,f +2611,30553,0,2,f +2611,3069b,14,4,f +2611,32002,72,1,f +2611,32002,72,1,t +2611,32028,25,2,f +2611,32123b,71,1,f +2611,32123b,71,1,t +2611,32126,71,1,f +2611,32140,71,2,f +2611,3666,72,2,f +2611,3701,72,1,f +2611,3705,0,2,f +2611,3710,71,6,f +2611,3749,19,1,f +2611,3894,0,2,f +2611,4150pr0005,15,1,f +2611,41747,71,2,f +2611,41748,71,2,f +2611,41767,14,1,f +2611,41768,14,1,f +2611,41769,14,3,f +2611,41770,14,3,f +2611,41883,40,1,f +2611,4287,72,2,f +2611,43719,14,1,f +2611,43722,72,1,f +2611,43723,72,1,f +2611,44300,72,5,f +2611,44302a,0,2,f +2611,44568,71,2,f +2611,44570,14,2,f +2611,4477,71,2,f +2611,4589,33,3,f +2611,48183,71,1,f +2611,4855,72,1,f +2611,4868b,71,2,f +2611,54200,72,2,f +2611,54200,72,1,t +2611,54383,72,3,f +2611,54384,72,3,f +2611,60471,4,1,f +2611,60474,14,1,f +2611,60479,14,2,f +2611,60483,0,1,f +2611,61184,71,2,f +2611,6141,0,6,f +2611,6141,0,1,t +2611,6191,71,2,f +2611,6232,14,2,f +2611,64567,71,1,f +2611,6541,72,2,f +2611,6636,14,4,f +2612,2780,0,8,f +2612,32062,4,1,f +2612,32174,72,5,f +2612,40378,0,1,f +2612,40379,0,1,f +2612,42003,0,1,f +2612,43093,1,3,f +2612,44136,0,1,f +2612,4519,71,2,f +2612,45749,0,1,f +2612,47311,0,1,f +2612,47328,0,2,f +2612,47330,0,1,f +2612,48729a,0,2,f +2612,50898,72,4,f +2612,50923,72,1,f +2612,53451,4,4,f +2612,53451,4,1,t +2612,53545,0,1,f +2612,53566,0,2,f +2612,55236,0,2,f +2612,57550pat0001,0,1,f +2612,57554,135,2,f +2612,57555,46,2,f +2612,57556,135,1,f +2612,57565,135,2,f +2612,57569,0,2,f +2612,58176,36,2,f +2612,59490pat0001,0,2,f +2613,10201,15,1,f +2613,14769pr0001,15,1,f +2613,15573,71,1,f +2613,15573,27,1,f +2613,18674,15,1,f +2613,3002,27,1,f +2613,3004,15,4,f +2613,3005,320,2,f +2613,3005,47,3,f +2613,3021,28,1,f +2613,3022,70,1,f +2613,3023,70,1,f +2613,3023,28,4,f +2613,3023,27,1,f +2613,3023,15,9,f +2613,3023,0,2,f +2613,3034,15,2,f +2613,3034,28,1,f +2613,3035,71,2,f +2613,30565,2,1,f +2613,3062b,4,1,f +2613,3062b,2,1,f +2613,3062b,14,1,f +2613,3062b,1,1,f +2613,3069b,15,2,f +2613,3069b,191,2,f +2613,3069b,0,9,f +2613,3070b,15,1,t +2613,3070b,0,4,f +2613,3070b,0,1,t +2613,3070b,15,6,f +2613,33291,70,1,t +2613,33291,70,4,f +2613,3460,15,2,f +2613,3622,15,2,f +2613,3623,15,4,f +2613,3626cpr1349,14,1,f +2613,3626cpr1760,14,1,f +2613,3741,2,1,t +2613,3741,2,2,f +2613,3742,29,3,f +2613,3742,14,3,f +2613,3742,29,1,t +2613,3742,14,1,t +2613,3899,4,1,f +2613,4032a,19,2,f +2613,4162,15,1,f +2613,41879a,1,1,f +2613,4345b,15,1,f +2613,4346,47,1,f +2613,4529,0,1,f +2613,4536,15,2,f +2613,4599b,71,1,t +2613,4599b,71,1,f +2613,49668,191,4,f +2613,58176,15,5,f +2613,60593,19,2,f +2613,60602,47,2,f +2613,6141,19,1,t +2613,6141,19,2,f +2613,6141,0,1,t +2613,6141,0,4,f +2613,6231,71,2,f +2613,62810,484,1,f +2613,64644,297,4,f +2613,85984,71,1,f +2613,87087,15,5,f +2613,87990,70,1,f +2613,92410,27,1,f +2613,93551pr0001,84,1,f +2613,93552pr0001,70,1,f +2613,93552pr0001,70,1,t +2613,95228,34,1,f +2613,95342pr0001,15,1,f +2613,970c00,272,1,f +2613,973pr1479c01,15,1,f +2613,973pr1918c01,73,1,f +2613,98138,25,1,t +2613,98138,179,1,t +2613,98138,179,4,f +2613,98138,25,1,f +2613,98138pr0018,84,2,f +2613,98138pr0018,84,1,t +2613,98283,28,2,f +2613,98283,320,7,f +2615,3626bpr0826,14,1,f +2615,88646,0,1,f +2615,93219pr0003,320,1,f +2615,95330pr0001,70,1,f +2615,970c00,379,1,f +2615,973pr1823c01,4,1,f +2617,14226c41,2,2,f +2617,2357,72,8,f +2617,2420,0,4,f +2617,2420,72,12,f +2617,2431,72,2,f +2617,2465,72,2,f +2617,2540,72,6,f +2617,2653,71,4,f +2617,2825,71,3,f +2617,3001,72,6,f +2617,3003,72,2,f +2617,3004,72,16,f +2617,3005,72,6,f +2617,3008,72,1,f +2617,3009,72,6,f +2617,30145,72,18,f +2617,3020,72,2,f +2617,3021,0,2,f +2617,3023,4,1,f +2617,3023,0,7,f +2617,3023,72,5,f +2617,3027,0,2,f +2617,30293pat0002,72,1,f +2617,30294pat0001,72,1,f +2617,3031,0,2,f +2617,3033,0,1,f +2617,3034,0,1,f +2617,3035,0,2,f +2617,3036,0,2,f +2617,3040b,0,2,f +2617,30553,0,2,f +2617,3062b,0,8,f +2617,3062b,57,4,f +2617,32000,72,8,f +2617,32013,0,3,f +2617,32016,0,1,f +2617,32028,0,4,f +2617,32039,71,2,f +2617,32056,71,2,f +2617,32062,4,8,f +2617,32064a,0,7,f +2617,32073,71,1,f +2617,32074c01,72,1,f +2617,32074c01,0,1,f +2617,32123b,71,2,f +2617,32123b,71,1,t +2617,32174,72,5,f +2617,3245b,72,14,f +2617,32506,179,1,f +2617,32523,0,2,f +2617,32530,0,2,f +2617,32551,179,2,f +2617,32553,135,1,f +2617,3403,71,1,f +2617,3404,71,1,f +2617,3455,72,2,f +2617,3460,0,3,f +2617,3622,0,2,f +2617,3622,72,2,f +2617,3665,0,2,f +2617,3673,71,4,f +2617,3673,71,1,t +2617,3684,72,13,f +2617,3705,0,4,f +2617,3710,0,4,f +2617,3710,72,3,f +2617,3747a,72,2,f +2617,3832,0,1,f +2617,3937,71,2,f +2617,3938,15,1,f +2617,4032a,71,10,f +2617,40379,15,2,f +2617,40490,0,1,f +2617,4070,0,6,f +2617,41539,0,2,f +2617,41671,272,1,f +2617,41677,71,2,f +2617,4215b,0,4,f +2617,4286,0,2,f +2617,43093,1,10,f +2617,43888,72,4,f +2617,44033,179,4,f +2617,44036,179,3,f +2617,44567a,72,2,f +2617,4460a,0,8,f +2617,4460a,72,4,f +2617,44815b,178,1,f +2617,4519,71,3,f +2617,47296,272,2,f +2617,47300,72,4,f +2617,4740,57,1,f +2617,47974,72,2,f +2617,48092,72,2,f +2617,48092,0,4,f +2617,50858,272,4,f +2617,50923,72,1,f +2617,50934pat0002,0,2,f +2617,51635,0,1,f +2617,51636,288,1,f +2617,51637,320,1,f +2617,51638,272,1,f +2617,51639,86,1,f +2617,51640,15,1,f +2617,51641,179,1,f +2617,51642,179,1,f +2617,51643,179,1,f +2617,51644,179,1,f +2617,51645,179,1,f +2617,51663,179,1,f +2617,51991a,0,1,f +2617,51991b,0,1,f +2617,51991c,0,2,f +2617,51991d,0,1,f +2617,51991e,0,2,f +2617,51991f,0,1,f +2617,53394,0,1,f +2617,53451,15,7,t +2617,53451,15,22,f +2617,6020,71,3,f +2617,6126a,57,4,f +2617,6134,0,1,f +2617,6141,57,1,t +2617,6141,57,2,f +2617,6232,72,1,f +2617,6538b,0,1,f +2617,6558,0,1,f +2617,6632,71,1,f +2617,76110c01,71,1,f +2617,76110c04,0,1,f +2617,8758stk01,9999,1,t +2618,2335,15,2,f +2618,2431,72,5,f +2618,2431,71,4,f +2618,2432,14,4,f +2618,2432,19,1,f +2618,2432,70,2,f +2618,2436,15,2,f +2618,2444,72,6,f +2618,2445,15,1,f +2618,2445,71,2,f +2618,2446pr02b,72,1,f +2618,2447,46,1,t +2618,2447,46,1,f +2618,2449,15,2,f +2618,2450,15,2,f +2618,2453a,15,2,f +2618,2454a,15,3,f +2618,2456,71,2,f +2618,2486,15,4,f +2618,2540,15,2,f +2618,2584,0,1,f +2618,2585,71,1,f +2618,2654,71,2,f +2618,2736,71,1,f +2618,2780,0,26,f +2618,2780,0,3,t +2618,2819,71,2,f +2618,2877,15,2,f +2618,2877,72,4,f +2618,3001,72,4,f +2618,3002,4,1,f +2618,3004,15,7,f +2618,3004,70,1,f +2618,3004,72,10,f +2618,3004,71,6,f +2618,3004,288,4,f +2618,30041,72,2,f +2618,30042,72,2,f +2618,3007,71,8,f +2618,3008,72,5,f +2618,3020,15,5,f +2618,3020,71,8,f +2618,3021,72,7,f +2618,3021,15,5,f +2618,3022,71,4,f +2618,3023,71,10,f +2618,3023,4,3,f +2618,3023,15,18,f +2618,3023,72,12,f +2618,3023,0,4,f +2618,30249,71,4,f +2618,30249,15,2,f +2618,3031,15,5,f +2618,3032,71,6,f +2618,3033,72,1,f +2618,3034,15,2,f +2618,3034,71,9,f +2618,3034,72,8,f +2618,3035,15,2,f +2618,3035,72,2,f +2618,3035,19,2,f +2618,3036,71,2,f +2618,30360,288,2,f +2618,30363,15,2,f +2618,30374,15,2,f +2618,30377,15,3,f +2618,30377,15,1,t +2618,30383,0,2,f +2618,30384,40,1,f +2618,3039pr0008,0,1,f +2618,3040b,71,9,f +2618,3040b,15,15,f +2618,3040b,288,4,f +2618,30504,71,2,f +2618,30526,72,2,f +2618,30552,71,1,f +2618,30553,72,1,f +2618,30554b,0,1,f +2618,3062b,15,26,f +2618,3068b,4,2,f +2618,3068b,70,1,f +2618,3068b,15,1,f +2618,3068b,72,7,f +2618,3069b,15,9,f +2618,3069b,14,2,f +2618,3069b,0,2,f +2618,3069b,71,4,f +2618,3070b,70,1,t +2618,3070b,71,1,t +2618,3070b,70,1,f +2618,3070b,71,2,f +2618,32000,72,9,f +2618,32013,72,1,f +2618,32014,14,1,f +2618,32028,0,2,f +2618,32062,4,2,f +2618,32064b,72,15,f +2618,32073,71,2,f +2618,32123b,14,2,t +2618,32123b,14,7,f +2618,32140,71,4,f +2618,32187,71,1,f +2618,32192,72,6,f +2618,32270,0,3,f +2618,32278,71,1,f +2618,32523,0,2,f +2618,32524,72,2,f +2618,32525,72,2,f +2618,32556,19,2,f +2618,3460,71,2,f +2618,3622,71,2,f +2618,3622,15,3,f +2618,3623,4,3,f +2618,3623,71,4,f +2618,3626bpr0001,78,1,f +2618,3626bpr0378,78,1,f +2618,3626bpr0454,70,1,f +2618,3626bpr0607,78,1,f +2618,3660,288,4,f +2618,3660,72,2,f +2618,3660,15,4,f +2618,3660,71,2,f +2618,3665,71,4,f +2618,3665,15,8,f +2618,3666,15,2,f +2618,3666,72,7,f +2618,3700,71,11,f +2618,3701,71,2,f +2618,3702,0,1,f +2618,3705,0,1,f +2618,3706,0,4,f +2618,3710,15,4,f +2618,3710,71,7,f +2618,3713,71,1,f +2618,3713,4,12,f +2618,3713,4,2,t +2618,3713,71,1,t +2618,3737,0,1,f +2618,3738,0,2,f +2618,3794b,4,3,f +2618,3795,15,4,f +2618,3795,72,3,f +2618,3832,19,3,f +2618,3894,72,4,f +2618,3899,47,1,f +2618,3901,28,1,f +2618,3901,0,1,f +2618,3937,72,1,f +2618,3941,42,2,f +2618,3958,19,2,f +2618,3960,41,2,f +2618,3961,72,1,f +2618,4006,0,1,f +2618,4032a,72,7,f +2618,40490,71,2,f +2618,4070,15,2,f +2618,4070,71,6,f +2618,4079,70,2,f +2618,4083,14,2,f +2618,40902,0,1,f +2618,4151b,71,8,f +2618,4162,71,2,f +2618,4162,72,6,f +2618,4162,15,6,f +2618,41764,71,1,f +2618,41765,71,1,f +2618,41769,71,1,f +2618,41770,71,1,f +2618,42023,71,4,f +2618,42060,15,1,f +2618,42061,15,1,f +2618,42610,71,2,f +2618,4274,71,1,t +2618,4274,71,6,f +2618,4285b,15,2,f +2618,4287,71,2,f +2618,43093,1,5,f +2618,43719,15,1,f +2618,43722,15,5,f +2618,43723,15,5,f +2618,44126,288,2,f +2618,44294,71,1,f +2618,44300,72,1,f +2618,44302a,72,2,f +2618,44375a,71,1,f +2618,4476b,15,2,f +2618,4510,0,2,f +2618,4519,71,2,f +2618,4595,0,1,f +2618,4623,71,2,f +2618,4697b,71,2,f +2618,4697b,71,1,t +2618,4740,42,2,f +2618,47457,72,4,f +2618,48336,71,3,f +2618,4865a,15,1,f +2618,50231,379,1,f +2618,50231,15,1,f +2618,50304,72,1,f +2618,50305,72,1,f +2618,50450,0,1,f +2618,50950,4,1,f +2618,50950,288,2,f +2618,51739,15,2,f +2618,52107,0,1,f +2618,54200,36,6,f +2618,54200,36,2,t +2618,54383,71,2,f +2618,54383,15,2,f +2618,54384,15,2,f +2618,54384,71,2,f +2618,55013,72,1,f +2618,56823c50,0,1,f +2618,57539,0,2,f +2618,57585,71,1,f +2618,58247,0,1,f +2618,59349,15,4,f +2618,59900,72,2,f +2618,6019,15,1,f +2618,60470a,15,2,f +2618,60474,71,2,f +2618,60478,15,1,f +2618,60849,71,2,f +2618,6091,14,2,f +2618,60934,57,2,f +2618,6111,0,2,f +2618,61183,70,1,f +2618,61184,71,2,f +2618,6134,0,1,f +2618,61409,72,2,f +2618,6141,36,9,f +2618,6141,41,1,t +2618,6141,0,1,t +2618,6141,0,2,f +2618,6141,36,2,t +2618,6141,15,2,t +2618,6141,41,4,f +2618,6141,15,6,f +2618,61485,0,2,f +2618,61678,15,2,f +2618,6191,15,2,f +2618,6191,14,2,f +2618,62113,72,1,f +2618,6232,71,4,f +2618,63868,71,4,f +2618,64808pr0001,484,2,f +2618,6541,72,1,f +2618,6541,4,1,f +2618,6558,1,2,f +2618,6585,0,2,f +2618,6587,72,2,f +2618,6589,19,4,f +2618,6636,71,2,f +2618,6636,15,2,f +2618,78c09,179,2,f +2618,78c09,179,2,t +2618,970c00,15,2,f +2618,970c00,28,1,f +2618,970c00,19,1,f +2618,970c00,379,1,f +2618,970x026,2,1,f +2618,973pr1522c01,19,1,f +2618,973pr1523c01,15,1,f +2618,973pr1524c01,28,1,f +2618,973pr1525c01,28,1,f +2618,973pr1526c01,2,1,f +2618,973pr2302c01,15,1,f +2619,3004,1,18,f +2619,3005,1,12,f +2619,3008,1,2,f +2619,3009,1,2,f +2619,3010,1,2,f +2619,3010,0,2,f +2619,3020,0,1,f +2619,3021,0,3,f +2619,3022,0,2,f +2619,3023,1,3,f +2619,3023,0,9,f +2619,3024,1,2,f +2619,3031,1,1,f +2619,3031,7,1,f +2619,3032,1,1,f +2619,3068b,7,1,f +2619,3081cc01,1,2,f +2619,31cc01,1,2,f +2619,3581,1,4,f +2619,3582,1,4,f +2619,3622,1,2,f +2619,3624,4,1,f +2619,3626apr0001,14,2,f +2619,3660,0,4,f +2619,3666,0,5,f +2619,3666,1,2,f +2619,3710,1,3,f +2619,3710,0,2,f +2619,3795,1,2,f +2619,3795,0,5,f +2619,3832,0,2,f +2619,3833,4,1,f +2619,3840,14,1,f +2619,4006,0,1,f +2619,4022,0,2,f +2619,4023,0,2,f +2619,4070,0,4,f +2619,4161,7,4,f +2619,4175,7,1,f +2619,4175,0,4,f +2619,4181,1,1,f +2619,4182,1,1,f +2619,4183,47,2,f +2619,458,7,6,f +2619,501a,0,1,f +2619,502,7,2,f +2619,6141,36,2,f +2619,6141,46,2,f +2619,73090a,1,2,f +2619,73092,0,2,f +2619,7760stk01,9999,1,t +2619,867,0,2,f +2619,970c00,1,2,f +2619,973c07,1,1,f +2619,973p18c01,1,1,f +2620,2445,15,1,f +2620,2780,0,6,f +2620,2780,0,1,t +2620,3020,71,2,f +2620,3022,15,1,f +2620,3031,27,1,f +2620,3034,71,1,f +2620,30602,15,1,f +2620,32062,4,2,f +2620,32073,71,2,f +2620,32140,27,2,f +2620,32271,0,2,f +2620,3702,0,2,f +2620,3710,27,2,f +2620,3713,71,8,f +2620,3713,71,1,t +2620,3737,0,1,f +2620,4162,0,2,f +2620,43093,1,4,f +2620,47715,72,1,f +2620,47753,0,1,f +2620,56145,0,4,f +2620,59443,0,1,f +2620,61070,27,1,f +2620,61071,27,1,f +2620,61072,0,2,f +2620,61481,0,4,f +2620,61678,15,2,f +2620,61767,9999,1,f +2621,2301,4,2,f +2621,2302,25,2,f +2621,2302,4,2,f +2621,2302,14,2,f +2621,2302,1,1,f +2621,2302,10,2,f +2621,2302pb03,1,1,f +2621,2312c01,1,1,f +2621,3011,25,1,f +2621,3011,15,2,f +2621,3011,73,2,f +2621,3011,4,3,f +2621,3011,27,2,f +2621,3011,14,3,f +2621,3011,1,3,f +2621,3011,10,3,f +2621,3437,25,6,f +2621,3437,14,9,f +2621,3437,1,9,f +2621,3437,10,9,f +2621,3437,15,4,f +2621,3437,4,9,f +2621,3437,27,6,f +2621,3437,484,6,f +2621,3437,73,6,f +2621,3437,0,4,f +2621,3437pe1,14,1,f +2621,3664pb21,484,1,f +2621,4066,15,2,f +2621,4066,14,2,f +2621,4066,41,2,f +2621,4066,1,2,f +2621,40666,25,2,f +2621,40666,27,4,f +2621,40666,484,2,f +2621,40666,73,2,f +2621,40666,0,2,f +2621,4253,1,1,f +2621,44524,1,1,f +2621,44524,10,1,f +2621,6474,4,2,f +2621,6497,15,1,f +2621,6510,14,2,f +2621,6510,10,2,f +2621,6510,4,2,f +2621,6510,25,2,f +2621,87084,73,2,f +2621,87084,14,2,f +2621,90265,15,1,f +2621,98223,27,2,f +2621,98223,4,1,f +2621,98223,73,1,f +2621,98223,25,1,f +2621,98224,1,1,f +2621,98252,27,2,f +2624,33022,74,2,f +2624,33025,17,1,f +2624,33031,4,1,f +2624,6203,4,1,f +2624,6932,17,1,f +2624,6933a,74,1,f +2624,6933b,74,1,f +2624,6933c,74,1,f +2624,sc003,14,1,f +2624,x15,74,1,f +2624,x16,74,1,f +2624,x17,17,1,f +2626,10124,272,1,f +2626,10126,297,1,f +2626,10127,297,1,f +2626,10154,272,1,f +2626,10247,4,2,f +2626,10907,15,1,f +2626,10908pr0010,15,1,f +2626,11203,72,4,f +2626,11211,4,4,f +2626,11477,0,4,f +2626,11477,4,4,f +2626,14769,297,2,f +2626,15068,15,2,f +2626,15391,0,2,f +2626,15392,72,4,f +2626,15403,0,2,f +2626,15571,0,1,f +2626,15712,4,2,f +2626,18674,72,2,f +2626,18986,47,2,f +2626,2412b,0,15,f +2626,24135,71,1,f +2626,2420,4,8,f +2626,2431,0,2,f +2626,2431,4,2,f +2626,2432,70,1,f +2626,2432,14,1,f +2626,2432,72,2,f +2626,2445,15,1,f +2626,24772,297,1,f +2626,2540,0,2,f +2626,2540,4,4,f +2626,25505,191,1,f +2626,2653,0,2,f +2626,2654,72,2,f +2626,2780,0,9,f +2626,2817,0,5,f +2626,2877,0,3,f +2626,3003,72,1,f +2626,3003,71,1,f +2626,3004,29,2,f +2626,3009,71,1,f +2626,3010,71,2,f +2626,3020,0,4,f +2626,3020,15,11,f +2626,3020,272,4,f +2626,3021,4,2,f +2626,3021,14,3,f +2626,3022,72,20,f +2626,3022,71,1,f +2626,3023,47,10,f +2626,3023,14,3,f +2626,3023,72,14,f +2626,3023,4,1,f +2626,3024,15,2,f +2626,3031,4,1,f +2626,3032,72,1,f +2626,3034,70,1,f +2626,3034,0,1,f +2626,3035,15,2,f +2626,3035,72,1,f +2626,30372,40,2,f +2626,30383,0,6,f +2626,3039,70,1,f +2626,30414,4,1,f +2626,3044b,4,1,f +2626,30526,72,2,f +2626,30602,36,4,f +2626,3062b,41,3,f +2626,3062b,14,1,f +2626,3068b,15,11,f +2626,3068b,0,1,f +2626,3069b,36,2,f +2626,3069b,41,1,f +2626,3069b,73,2,f +2626,3070b,0,2,f +2626,32000,14,2,f +2626,32028,4,1,f +2626,32059,15,1,f +2626,3460,71,2,f +2626,3460,15,2,f +2626,3460,4,2,f +2626,3623,0,2,f +2626,3623,15,4,f +2626,3626cpr0902,78,1,f +2626,3626cpr0961,78,1,f +2626,3626cpr1767,78,1,f +2626,3626cpr1869,1,1,f +2626,3626cpr1875,4,1,f +2626,3700,1,2,f +2626,3701,1,3,f +2626,3710,4,1,f +2626,3710,72,2,f +2626,3795,1,2,f +2626,3839b,72,1,f +2626,3895,71,2,f +2626,3938,71,2,f +2626,4032a,72,2,f +2626,4032a,71,4,f +2626,4070,71,6,f +2626,4081b,0,4,f +2626,4085c,0,2,f +2626,41767,15,1,f +2626,41768,15,1,f +2626,41769,4,1,f +2626,41770,4,1,f +2626,4287,71,2,f +2626,43093,1,2,f +2626,43719,0,1,f +2626,43719,4,1,f +2626,43722,4,1,f +2626,43723,4,1,f +2626,44301a,72,4,f +2626,44302a,15,4,f +2626,44302a,14,2,f +2626,44375bpr0001,0,2,f +2626,44676,4,4,f +2626,44676,272,2,f +2626,44728,4,1,f +2626,44728,15,9,f +2626,4477,15,2,f +2626,4599b,14,1,f +2626,4740,45,2,f +2626,47455,0,2,f +2626,48171,72,2,f +2626,48336,1,1,f +2626,4871,72,5,f +2626,50304,15,2,f +2626,50304,4,1,f +2626,50305,15,2,f +2626,50305,4,1,f +2626,50373,15,1,f +2626,51739,72,1,f +2626,52031,72,1,f +2626,54200,47,2,f +2626,54200,41,2,f +2626,54200,4,4,f +2626,58176,33,5,f +2626,60474,0,2,f +2626,6091,4,2,f +2626,6111,71,2,f +2626,61184,71,5,f +2626,61409,0,2,f +2626,61409,15,6,f +2626,6141,36,2,f +2626,6141,33,4,f +2626,6141,72,8,f +2626,6141,41,3,f +2626,6141,14,4,f +2626,6141,45,8,f +2626,62810,484,1,f +2626,63864,0,2,f +2626,63864,4,8,f +2626,64567,15,2,f +2626,6636,15,5,f +2626,6636,4,2,f +2626,75902pr0004,4,1,f +2626,85984,15,18,f +2626,87079,15,4,f +2626,90194,15,2,f +2626,90194,0,2,f +2626,92593,4,4,f +2626,92593,72,6,f +2626,93273,4,1,f +2626,970c00,1,1,f +2626,970c00pr1025,15,1,f +2626,970c00pr1027,272,1,f +2626,970c00pr1029,297,1,f +2626,973pr2635c01,1,1,f +2626,973pr3275c01,4,1,f +2626,973pr3307c01,15,1,f +2626,973pr3308c01,272,1,f +2626,98138,297,4,f +2626,98138,47,2,f +2626,98138,41,2,f +2626,98138pr0038,1,1,f +2626,98385,226,1,f +2626,99206,0,1,f +2626,99206,15,6,f +2626,99207,0,5,f +2626,99207,71,4,f +2626,99780,15,11,f +2626,99781,0,5,f +2627,12825,72,1,f +2627,2412b,72,7,f +2627,2436,71,5,f +2627,2540,0,1,f +2627,2877,0,3,f +2627,298c02,4,2,f +2627,3002,19,2,f +2627,30162,72,4,f +2627,3020,71,9,f +2627,3021,72,1,f +2627,3021,272,5,f +2627,3022,71,2,f +2627,3022,0,2,f +2627,3023,4,8,f +2627,3023,71,9,f +2627,3024,4,1,f +2627,3032,71,2,f +2627,3037,71,2,f +2627,30375,19,1,f +2627,30376,19,1,f +2627,30377,19,1,f +2627,30378,19,1,f +2627,3039,272,1,f +2627,3040b,72,6,f +2627,3040b,4,2,f +2627,30552,0,1,f +2627,30565,272,2,f +2627,30565,72,2,f +2627,3062b,272,8,f +2627,3062b,71,4,f +2627,3065,47,2,f +2627,3069b,71,4,f +2627,3069b,14,4,f +2627,3069b,272,3,f +2627,3070b,14,4,f +2627,3070b,71,6,f +2627,3623,4,2,f +2627,3626bpr0525,78,1,f +2627,3660,72,2,f +2627,3666,72,4,f +2627,3679,71,1,f +2627,3680,0,1,f +2627,3710,71,6,f +2627,3794a,4,1,f +2627,3794a,71,5,f +2627,3794a,14,1,f +2627,3795,4,6,f +2627,3937,0,1,f +2627,3960,272,1,f +2627,4070,71,1,f +2627,4081b,71,4,f +2627,41769,71,1,f +2627,41769,4,2,f +2627,41770,71,1,f +2627,41770,4,2,f +2627,44728,0,1,f +2627,4595,0,1,f +2627,4697b,71,2,f +2627,4740,0,2,f +2627,4740,72,1,f +2627,50950,272,6,f +2627,54200,4,4,f +2627,54200,71,6,f +2627,54200,40,2,f +2627,54200,72,4,f +2627,58247,0,2,f +2627,59230,19,1,f +2627,59900,0,1,f +2627,59900,272,2,f +2627,60471,71,1,f +2627,60478,4,1,f +2627,60478,72,4,f +2627,61189pr0003,15,1,f +2627,6134,71,1,f +2627,61409,72,2,f +2627,6141,0,18,f +2627,6141,41,6,f +2627,63868,71,5,f +2627,63965,0,1,f +2627,64644,0,1,f +2627,87079,71,2,f +2627,87087,72,6,f +2627,87580,272,1,f +2627,87618,71,2,f +2627,970x026,15,1,f +2627,973pr0470c01,15,1,f +2628,3004p01,1,2,f +2628,3004p06,15,2,f +2628,3004p18,15,2,f +2628,3004p90,15,2,f +2628,3010ap04,15,1,f +2628,3010p42,1,1,f +2628,3039p05,15,1,f +2628,3039p23,15,1,f +2628,3039p32,15,1,f +2628,3039p34,15,1,f +2628,3040p05,1,2,f +2628,3040p32,15,2,f +2628,3068bp08,1,2,f +2628,3068bp52,15,2,f +2628,3069bp25,1,2,f +2628,3069bpb001,15,2,f +2628,3298p54,15,1,f +2628,3298p90,1,1,f +2629,11164pat01,0,1,f +2629,11272,148,1,f +2629,11272,148,1,t +2629,11302pat0001,36,1,f +2629,11305,4,1,f +2629,32062,4,1,t +2629,32062,4,1,f +2629,4519,71,1,f +2629,4519,71,1,t +2630,2348b,41,1,f +2630,2349a,0,1,f +2630,2921,0,2,f +2630,2926,7,2,f +2630,3004,4,1,f +2630,3010,4,1,f +2630,3020,0,2,f +2630,3020,4,1,f +2630,3023,0,2,f +2630,3023,4,1,f +2630,3460,4,2,f +2630,3626bp05,14,1,f +2630,3641,0,2,f +2630,3710,0,1,f +2630,3794a,4,1,f +2630,3821,4,1,f +2630,3822,4,1,f +2630,3829c01,15,1,f +2630,3937,7,2,f +2630,3938,7,2,f +2630,4081b,4,2,f +2630,4212b,0,1,f +2630,4315,0,1,f +2630,4485,15,1,f +2630,4624,15,2,f +2630,4865a,4,4,f +2630,4865a,41,2,f +2630,6014a,15,2,f +2630,6015,0,2,f +2630,6081,0,1,f +2630,6141,14,2,f +2630,6141,0,1,t +2630,6141,46,1,t +2630,6141,0,4,f +2630,6141,46,2,f +2630,6141,4,1,f +2630,6141,4,2,t +2630,970c00,0,1,f +2630,973p28c01,0,1,f +2632,2357,15,2,f +2632,2357,1,2,f +2632,2423,2,2,f +2632,2450,1,2,f +2632,2456,1,2,f +2632,2456,4,1,f +2632,2456,15,2,f +2632,2456,14,1,f +2632,2460,7,1,f +2632,2577,15,4,f +2632,2746,4,1,f +2632,3001,15,11,f +2632,3001,0,6,f +2632,3001,1,10,f +2632,3001,14,9,f +2632,3001,4,10,f +2632,3002,4,6,f +2632,3002,0,4,f +2632,3002,15,6,f +2632,3002,1,6,f +2632,3002,14,6,f +2632,3003,0,6,f +2632,3003,14,11,f +2632,3003,1,13,f +2632,3003,15,12,f +2632,3003,4,10,f +2632,3004,1,40,f +2632,3004,4,36,f +2632,3004,14,38,f +2632,3004,0,18,f +2632,3004,15,40,f +2632,3005,4,29,f +2632,3005,1,32,f +2632,3005,14,29,f +2632,3005,15,32,f +2632,3005,0,22,f +2632,3005pe1,14,2,f +2632,3008,14,4,f +2632,3008,1,4,f +2632,3008,0,2,f +2632,3008,15,4,f +2632,3008,4,4,f +2632,3009,15,10,f +2632,3009,0,4,f +2632,3009,1,10,f +2632,3009,14,8,f +2632,3009,4,8,f +2632,3010,4,20,f +2632,3010,14,20,f +2632,3010,0,12,f +2632,3010,1,22,f +2632,3010,15,22,f +2632,3010p01,14,1,f +2632,3020,14,2,f +2632,3020,1,2,f +2632,3021,1,2,f +2632,3021,14,2,f +2632,3022,14,2,f +2632,3022,1,2,f +2632,3023,14,2,f +2632,3023,1,2,f +2632,3030,1,1,f +2632,3031,1,1,f +2632,3031,14,1,f +2632,3032,1,1,f +2632,3034,1,2,f +2632,3035,14,1,f +2632,3039,14,4,f +2632,3040b,14,4,f +2632,3062b,15,6,f +2632,3081cc01,4,2,f +2632,3149c01,4,1,f +2632,3297p01,14,4,f +2632,3298p17,14,2,f +2632,3299,14,2,f +2632,3300,14,2,f +2632,3307,15,2,f +2632,3470,2,1,f +2632,3483,0,4,f +2632,3622,0,6,f +2632,3622,4,10,f +2632,3622,14,10,f +2632,3622,1,12,f +2632,3622,15,12,f +2632,3626bpr0001,14,2,f +2632,3633,4,6,f +2632,3660,14,2,f +2632,3665,14,2,f +2632,3679,7,1,f +2632,3680,14,1,f +2632,3710,14,2,f +2632,3710,1,2,f +2632,3741,2,3,f +2632,3742,1,3,f +2632,3742,4,3,f +2632,3742,1,1,t +2632,3742,14,3,f +2632,3742,14,1,t +2632,3742,4,1,t +2632,3747b,14,2,f +2632,3794a,14,2,f +2632,3795,14,2,f +2632,3823,47,1,f +2632,3836,6,1,f +2632,3853,4,4,f +2632,3854,14,8,f +2632,3856,1,4,f +2632,3857,14,3,f +2632,3861b,4,1,f +2632,3867,2,1,f +2632,3901,6,1,f +2632,3957a,15,2,f +2632,3960p04,15,1,f +2632,4070,15,4,f +2632,4286,14,2,f +2632,4287,14,2,f +2632,4495b,4,1,f +2632,6093,0,1,f +2632,6215,15,4,f +2632,6248,4,4,f +2632,6249,8,2,f +2632,6853,4,6,f +2632,970c00,1,1,f +2632,970c00,4,1,f +2632,973p01c01,15,1,f +2632,973pb0006c01,15,1,f +2635,264,0,2,f +2635,3001,14,1,f +2635,3001,0,1,f +2635,3001,1,3,f +2635,3003,4,2,f +2635,3003,1,2,f +2635,3007,2,1,f +2635,30076,7,2,f +2635,3008,14,2,f +2635,3010,4,4,f +2635,30144,4,4,f +2635,30145,4,2,f +2635,30150,6,1,f +2635,30155,8,8,f +2635,30180,4,1,f +2635,30263,14,1,f +2635,3035,0,1,f +2635,30350b,14,2,f +2635,30397,1,4,f +2635,33254c00,9999,1,f +2635,33261,9999,1,f +2635,33303,15,1,f +2635,3403c01,4,1,f +2635,3483,0,8,f +2635,3701,14,2,f +2635,3941,0,1,f +2635,3941,57,1,f +2635,3941,7,1,f +2635,3997,4,1,f +2635,4071,4,1,f +2635,4072,14,1,f +2635,4088px5,1,1,f +2635,4088px6,4,1,f +2635,4162,1,2,f +2635,4204,2,1,f +2635,4328,7,1,f +2635,4362bcx1,0,1,f +2635,4438,0,1,f +2635,4440,1,1,f +2635,4461,1,2,f +2635,4461,14,1,f +2635,4727,2,2,f +2635,4728,14,2,f +2635,4744pb01,1,1,f +2635,4744pb02,14,1,f +2635,4781,7,1,f +2635,5102c20,7,1,f +2635,6249,7,3,f +2635,787c02,4,2,f +2635,x1315,14,1,f +2637,2566,0,1,f +2637,3021,72,1,f +2637,30385,82,1,f +2637,3046a,72,1,f +2637,4460b,72,1,f +2637,6126b,57,1,f +2637,6126b,57,1,t +2638,21,47,1,f +2638,3004,14,4,f +2638,3010,4,2,f +2638,3010pb035u,4,1,f +2638,3020,4,3,f +2638,3022,4,1,f +2638,3030,4,1,f +2638,3137c01,0,1,f +2638,3137c02,0,2,f +2638,3139,0,2,f +2638,7b,0,4,f +2638,818,1,1,f +2639,2342,0,1,f +2639,298c02,7,2,f +2639,3001,7,1,f +2639,3002,7,1,f +2639,3020,7,1,f +2639,3022,7,2,f +2639,3023,7,5,f +2639,3024,36,2,f +2639,3039,7,1,f +2639,3039p32,7,1,f +2639,3069b,7,2,f +2639,3069bp25,7,1,f +2639,3297p90,7,1,f +2639,3626apr0001,14,1,f +2639,3660,7,1,f +2639,3700,7,1,f +2639,3702,7,2,f +2639,3706,0,3,f +2639,3713,7,6,f +2639,3838,1,1,f +2639,3842b,1,1,f +2639,3959,0,1,f +2639,4070,7,2,f +2639,4085b,7,4,f +2639,4288,0,6,f +2639,4315,7,1,f +2639,4345a,7,2,f +2639,4346,7,2,f +2639,4349,0,1,f +2639,4474,34,1,f +2639,4479,0,1,f +2639,4595,0,2,f +2639,4730,7,1,f +2639,4735,0,1,f +2639,4740,36,2,f +2639,6141,36,2,t +2639,6141,36,2,f +2639,73590c01a,7,2,f +2639,970c00,1,1,f +2639,973pr1594c01,1,1,f +2641,30374,14,2,f +2641,3062b,72,2,f +2641,4519,71,2,f +2641,4588,72,6,f +2641,4589,4,4,f +2641,4589,36,2,f +2641,4589,14,2,f +2641,61184,71,2,f +2641,64728,4,4,f +2642,2357,0,6,f +2642,2412b,14,1,f +2642,2412b,0,4,f +2642,2419,14,1,f +2642,2419,0,1,f +2642,2420,14,2,f +2642,2420,4,2,f +2642,2444,14,4,f +2642,2446,8,1,f +2642,2446,0,1,f +2642,2450,7,4,f +2642,2458,4,8,f +2642,2460,14,1,f +2642,2476a,4,2,f +2642,2555,0,2,t +2642,2780,0,31,f +2642,3003,4,6,f +2642,3003,0,2,f +2642,3004,0,18,f +2642,3004,7,1,f +2642,3004,4,6,f +2642,3005,4,8,f +2642,3006,0,2,f +2642,3007,0,2,f +2642,3009,7,1,f +2642,30090,33,1,f +2642,30091,8,2,f +2642,30091,7,2,f +2642,3010,7,1,f +2642,30117,0,4,f +2642,30121,0,1,f +2642,30137,15,1,f +2642,30145,0,4,f +2642,30151a,42,2,f +2642,30201,8,4,f +2642,3021,4,8,f +2642,3021,0,4,f +2642,30214,42,2,f +2642,3022,4,1,f +2642,3022,8,3,f +2642,3023,4,11,f +2642,3023,42,2,f +2642,3023,14,2,f +2642,3024,4,16,f +2642,3034,0,1,f +2642,30364,0,2,f +2642,30389b,0,1,f +2642,30397,0,6,f +2642,30397,0,2,t +2642,3040b,7,4,f +2642,3040b,0,6,f +2642,30553,0,4,f +2642,30554a,0,4,f +2642,30608,6,1,f +2642,30632,0,2,f +2642,3068bpb0039,8,2,f +2642,3068bpb0044,8,4,f +2642,3176,0,2,f +2642,32000,7,2,f +2642,32013,0,1,f +2642,32018,7,2,f +2642,32064b,0,16,f +2642,32074c01,0,1,f +2642,32530,0,2,f +2642,3298,4,2,f +2642,3403,4,1,f +2642,3404,4,1,f +2642,3460,7,2,f +2642,3460,8,2,f +2642,3460,0,2,f +2642,3623,4,16,f +2642,3626bpr0190,15,4,f +2642,3626bpx40,14,1,f +2642,3626bpx51,14,1,f +2642,3660,0,1,f +2642,3665,7,6,f +2642,3673,7,9,f +2642,3679,7,6,f +2642,3680,4,6,f +2642,3700,0,2,f +2642,3700,4,1,f +2642,3702,0,4,f +2642,3703,0,6,f +2642,3710,7,1,f +2642,3710,14,2,t +2642,3795,0,4,f +2642,3795,8,1,f +2642,3830,0,2,f +2642,3831,0,2,f +2642,3940b,0,4,f +2642,3941,0,10,f +2642,3943b,8,12,f +2642,40249,33,1,f +2642,40253,0,1,f +2642,4032a,4,2,f +2642,40339,8,4,f +2642,4085c,0,2,f +2642,4151a,0,4,f +2642,41529,7,1,f +2642,41531,0,4,f +2642,41531,14,1,f +2642,41532,0,2,f +2642,41747,8,2,f +2642,41747,14,1,f +2642,41748,14,1,f +2642,41748,8,2,f +2642,41751,40,1,f +2642,42023,0,2,f +2642,4286,14,2,t +2642,4286,7,2,f +2642,4349,8,16,f +2642,4460a,0,2,f +2642,4497,42,2,f +2642,4589,36,8,f +2642,4589,57,2,f +2642,4597,0,1,f +2642,4623,14,2,f +2642,4623,4,2,f +2642,4795stk01,9999,1,t +2642,57467,383,2,f +2642,59275,0,2,f +2642,6041,57,1,t +2642,6041,57,7,f +2642,6086,0,1,f +2642,6141,42,1,t +2642,6141,42,4,f +2642,6222,8,12,f +2642,6232,4,1,f +2642,6541,7,2,f +2642,73983,4,2,f +2642,75535,4,8,f +2642,76110c01,7,1,f +2642,769,334,1,f +2642,970c00,0,1,f +2642,970c00pb033,272,1,f +2642,970d03,4,2,f +2642,973c26,0,1,f +2642,973pb0071c02,272,1,f +2642,973pb0107c01,0,2,f +2642,x353px1sheet,9999,1,f +2644,18143,484,1,f +2644,33320,2,1,f +2644,3626cpr1478,14,1,f +2644,3678bpr0027b,30,1,f +2644,88646,0,1,f +2644,973pr2747c01,30,1,f +2646,2346,0,4,f +2646,2357,4,2,f +2646,2420,4,6,f +2646,2420,0,11,f +2646,2420,7,12,f +2646,2563,7,1,f +2646,2636,7,2,f +2646,2711,7,1,f +2646,2730,7,4,f +2646,2730,0,1,f +2646,2730,4,3,f +2646,2736,7,6,f +2646,2744,0,2,f +2646,2745,4,2,f +2646,2780,0,43,f +2646,2825,15,2,f +2646,2825,7,11,f +2646,2856c01,7,1,f +2646,2900,8,4,f +2646,2901,0,6,f +2646,2905,15,2,f +2646,3002,0,1,f +2646,3003,4,2,f +2646,3005,7,2,f +2646,3021,4,1,f +2646,3021,0,2,f +2646,3022,0,3,f +2646,3022,7,2,f +2646,3023,7,2,f +2646,3023,0,16,f +2646,3023,4,17,f +2646,3033,7,1,f +2646,3039,0,2,f +2646,3039,4,2,f +2646,3068b,7,3,f +2646,3460,15,4,f +2646,3482,4,4,f +2646,3623,4,6,f +2646,3647,7,10,f +2646,3648a,7,3,f +2646,3650b,7,3,f +2646,3651,7,3,f +2646,3660,0,3,f +2646,3660,4,8,f +2646,3665,4,2,f +2646,3666,0,2,f +2646,3666,15,2,f +2646,3666,4,4,f +2646,3666,7,1,f +2646,3673,7,4,f +2646,3700,4,2,f +2646,3700,7,9,f +2646,3701,0,6,f +2646,3701,4,10,f +2646,3701,7,6,f +2646,3701,15,3,f +2646,3702,7,2,f +2646,3702,15,2,f +2646,3702,4,2,f +2646,3703,4,5,f +2646,3703,0,4,f +2646,3704,0,3,f +2646,3705,0,6,f +2646,3706,0,7,f +2646,3707,0,6,f +2646,3708,0,3,f +2646,3709,0,6,f +2646,3709,4,1,f +2646,3710,0,5,f +2646,3710,7,4,f +2646,3710,4,6,f +2646,3713,7,18,f +2646,3737,0,1,f +2646,3738,15,2,f +2646,3747b,4,1,f +2646,3749,7,16,f +2646,3794a,0,2,f +2646,3794a,4,4,f +2646,3795,4,2,f +2646,3795,7,1,f +2646,3894,4,6,f +2646,3894,15,1,f +2646,3894,7,2,f +2646,3895,15,8,f +2646,3895,0,10,f +2646,3933,7,1,f +2646,3934,7,1,f +2646,4019,7,1,f +2646,4032a,15,1,f +2646,4143,7,6,f +2646,4162,15,1,f +2646,4185,7,3,f +2646,4261,7,1,f +2646,4265a,7,28,f +2646,4273b,7,7,f +2646,4274,7,12,f +2646,4287,4,2,f +2646,4288,0,1,f +2646,4519,0,11,f +2646,4716,0,1,f +2646,6041,14,2,f +2646,6141,34,1,f +2646,6141,7,3,f +2646,6141,36,1,f +2646,70496,0,1,f +2646,73983,4,8,f +2646,73983,0,16,f +2646,75c08,8,1,f +2646,9244,7,3,f +2646,flex08c04l,7,1,f +2646,flex08c05l,7,1,f +2646,flex08c06l,7,2,f +2646,flex08c14l,7,1,f +2647,47510pr0001,29,1,f +2647,47510wpr0001,15,1,f +2647,47510wpr0003,73,1,f +2647,47510wpr0005,29,1,f +2647,47511pr0003,15,1,f +2647,47511wpr0002,212,1,f +2647,47511wpr0004,71,1,f +2647,47511wpr0006,71,1,f +2647,75115bpr0001,70,1,f +2647,75115bpr0001,19,1,f +2647,75115bpr0006,73,1,f +2647,75115pr0010,2,1,f +2647,75121,73,1,f +2647,75121,4,1,f +2647,75121,15,2,f +2649,48989,71,1,f +2649,57563,135,1,f +2649,60894,72,1,f +2649,60899,272,2,f +2649,60900,272,2,f +2649,60902,72,2,f +2649,60926,135,1,f +2649,64251,72,2,f +2649,64262,57,1,f +2649,87790,297,1,f +2649,87792,272,1,f +2650,132a,0,8,f +2650,3001a,4,55,f +2650,3001a,14,3,f +2650,3001a,47,4,f +2650,3001a,15,55,f +2650,3001a,0,3,f +2650,3001a,1,10,f +2650,3002a,14,3,f +2650,3002a,15,10,f +2650,3002a,0,3,f +2650,3002a,4,10,f +2650,3002a,47,3,f +2650,3002a,1,3,f +2650,3003,4,12,f +2650,3003,1,8,f +2650,3003,15,12,f +2650,3003,14,6,f +2650,3003,0,6,f +2650,3003,47,6,f +2650,3004,47,4,f +2650,3004,15,10,f +2650,3004,4,10,f +2650,3004,14,4,f +2650,3004,1,6,f +2650,3004,0,6,f +2650,3005,15,4,f +2650,3005,4,4,f +2650,3005,1,2,f +2650,3006,4,2,f +2650,3006,15,2,f +2650,3007,4,2,f +2650,3007,15,2,f +2650,3008,4,3,f +2650,3008,15,3,f +2650,3009,15,3,f +2650,3009,4,3,f +2650,3034,15,4,f +2650,3035,15,4,f +2650,3036,15,2,f +2650,3037,4,54,f +2650,3039,4,12,f +2650,3041,4,8,f +2650,3062a,4,2,f +2650,3062a,15,2,f +2650,3081cc01,4,2,f +2650,31cc01,4,2,f +2650,32bc01,4,1,f +2650,33bc01,4,1,f +2650,453cc01,4,2,f +2650,604c01,4,2,f +2650,645bc01,4,2,f +2650,646bc01,4,2,f +2650,650,79,1,f +2650,700ed,7,2,f +2650,7039c,4,8,f +2650,7049b,15,4,f +2651,2431,15,8,f +2651,2446,1,1,f +2651,3022,15,4,f +2651,3032,15,8,f +2651,3069b,15,8,f +2651,3626bpr0387,14,1,f +2651,3666,15,8,f +2651,3710,15,8,f +2651,3838,1,1,f +2651,57895,47,12,f +2651,60596,15,12,f +2651,87580,15,16,f +2651,970c00,1,1,f +2651,973pr1594c01,1,1,f +2653,3626bpb0977,78,1,f +2653,50231,70,1,f +2653,62810,308,1,f +2653,970c00pr0539,272,1,f +2653,973pb1479c01,272,1,f +2654,200,0,1,f +2654,202,0,1,f +2654,2335,4,1,f +2654,2348b,47,2,f +2654,2348b,41,1,f +2654,2349a,15,1,f +2654,2349a,4,1,f +2654,2349a,1,1,f +2654,2357,15,6,f +2654,2357,7,2,f +2654,2362a,15,4,f +2654,2377,15,4,f +2654,2412b,7,9,f +2654,2412b,0,6,f +2654,2412b,14,2,f +2654,2420,15,10,f +2654,2420,4,2,f +2654,2420,1,6,f +2654,2420,14,8,f +2654,2422,15,3,f +2654,2428,0,1,f +2654,2431,15,3,f +2654,2431,7,7,f +2654,2431,1,4,f +2654,2431pr0077,15,5,f +2654,2432,14,8,f +2654,2436,0,1,f +2654,2436,15,1,f +2654,2436,4,1,f +2654,2437,41,1,f +2654,2453a,15,4,f +2654,2456,4,1,f +2654,2460,14,2,f +2654,2493a,1,3,f +2654,2494,47,3,f +2654,2540,15,1,f +2654,2540,7,1,f +2654,2540,4,2,f +2654,2555,0,8,f +2654,2555,7,3,f +2654,2569,4,3,f +2654,2583,14,1,f +2654,2584,7,1,f +2654,2585,0,1,f +2654,2610,14,2,f +2654,2617,7,5,f +2654,2621,0,1,f +2654,2622,4,3,f +2654,2623,4,1,f +2654,2625,4,1,f +2654,2625,1,1,f +2654,2626,1,2,f +2654,2634c01,15,1,f +2654,2635a,4,2,f +2654,2639,7,3,f +2654,2642,7,1,f +2654,2648,14,2,f +2654,2649,0,2,f +2654,2653,14,4,f +2654,2654,0,15,f +2654,2655,14,2,f +2654,2736,7,1,f +2654,298c02,15,2,f +2654,298c02,0,5,f +2654,298c02,0,1,t +2654,298c02,15,1,t +2654,3001,4,1,f +2654,3002,0,1,f +2654,3002,4,1,f +2654,3003,0,4,f +2654,3003,4,4,f +2654,3003,7,2,f +2654,3003,15,2,f +2654,3004,1,1,f +2654,3004,4,16,f +2654,3004,7,4,f +2654,3004,15,11,f +2654,3004,0,3,f +2654,3005,15,6,f +2654,3005,14,4,f +2654,3005,4,6,f +2654,3005,7,4,f +2654,3007,4,1,f +2654,3008,4,14,f +2654,3008,1,2,f +2654,3008,15,4,f +2654,3009,4,1,f +2654,3009,7,2,f +2654,3009,1,2,f +2654,3009,15,6,f +2654,3010,15,12,f +2654,3010,1,1,f +2654,3010,4,1,f +2654,3020,4,5,f +2654,3020,7,11,f +2654,3020,0,1,f +2654,3020,15,4,f +2654,3021,4,10,f +2654,3021,1,2,f +2654,3021,15,2,f +2654,3022,0,1,f +2654,3022,15,2,f +2654,3022,4,1,f +2654,3022,14,6,f +2654,3022,1,1,f +2654,3022,7,5,f +2654,3023,7,13,f +2654,3023,4,1,f +2654,3023,15,8,f +2654,3023,0,7,f +2654,3023,14,14,f +2654,3023,1,2,f +2654,3024,15,6,f +2654,3024,46,2,f +2654,3024,15,1,t +2654,3024,0,1,f +2654,3027,7,1,f +2654,3028,7,1,f +2654,3031,0,1,f +2654,3031,4,1,f +2654,3032,4,1,f +2654,3033,0,4,f +2654,3033,15,1,f +2654,3033,4,1,f +2654,3034,7,1,f +2654,3034,1,2,f +2654,3034,4,1,f +2654,3035,15,4,f +2654,3035,0,1,f +2654,3035,1,2,f +2654,3039p23,15,1,f +2654,3039p23,7,1,f +2654,3039p34,15,1,f +2654,3040b,4,4,f +2654,3040b,14,2,f +2654,3040b,15,2,f +2654,3040p33,0,1,f +2654,3046a,4,2,f +2654,3062b,15,1,f +2654,3062b,0,2,f +2654,3062b,7,2,f +2654,3068b,4,1,f +2654,3068bp08,15,4,f +2654,3069b,7,6,f +2654,3069b,15,2,f +2654,3069b,14,8,f +2654,3069bp09,15,9,f +2654,3070b,4,1,t +2654,3070b,14,16,f +2654,3070b,36,1,t +2654,3070b,7,1,t +2654,3070b,36,2,f +2654,3070b,14,1,t +2654,3070b,4,2,f +2654,3070b,7,1,f +2654,3127,7,1,f +2654,3139,0,4,f +2654,3228b,7,8,f +2654,3298,0,1,f +2654,3460,1,2,f +2654,3460,0,1,f +2654,3460,15,4,f +2654,3460,14,8,f +2654,3460,7,5,f +2654,3464,4,8,f +2654,3491,0,1,f +2654,3622,1,4,f +2654,3622,15,2,f +2654,3622,4,4,f +2654,3623,7,4,f +2654,3624,15,3,f +2654,3626bpr0001,14,7,f +2654,3641,0,2,f +2654,3660,1,2,f +2654,3660,15,4,f +2654,3665,15,2,f +2654,3666,4,1,t +2654,3666,4,1,f +2654,3666,15,1,f +2654,3666,7,2,f +2654,3679,7,1,f +2654,3680,14,1,f +2654,3684,0,1,f +2654,3701,15,1,f +2654,3704,0,1,f +2654,3709,0,1,f +2654,3710,15,2,f +2654,3710,1,1,f +2654,3710,7,4,f +2654,3710,0,2,f +2654,3710,4,5,f +2654,3738,0,2,f +2654,3747a,4,5,f +2654,3747a,0,1,f +2654,3788,4,1,f +2654,3794a,15,5,f +2654,3794a,0,9,f +2654,3794a,7,20,f +2654,3795,4,1,f +2654,3795,1,2,f +2654,3821,1,1,f +2654,3821,4,1,f +2654,3822,4,1,f +2654,3822,1,1,f +2654,3823,41,1,f +2654,3823,47,1,f +2654,3829c01,4,2,f +2654,3829c01,1,1,f +2654,3829c01,15,1,f +2654,3829c01,7,1,f +2654,3832,4,2,f +2654,3832,15,1,f +2654,3833,4,3,f +2654,3853,15,2,f +2654,3856,15,4,f +2654,3937,1,4,f +2654,3938,1,4,f +2654,3941,4,2,f +2654,3941,15,2,f +2654,3941,0,2,f +2654,3941,7,2,f +2654,3941,1,1,f +2654,3956,1,1,f +2654,3957a,15,3,f +2654,3962b,0,1,f +2654,4032a,7,1,f +2654,4070,4,10,f +2654,4070,14,4,f +2654,4070,1,10,f +2654,4070,0,30,f +2654,4079,14,1,f +2654,4079,15,1,f +2654,4081b,15,3,f +2654,4081b,7,2,f +2654,4081b,0,2,f +2654,4084,0,2,f +2654,4085c,0,1,f +2654,4085c,15,4,f +2654,4150,7,1,f +2654,4162,8,14,f +2654,4162,1,2,f +2654,4162,4,2,f +2654,4162,7,4,f +2654,4168,15,4,f +2654,4175,7,2,f +2654,4175,4,8,f +2654,4175,0,3,f +2654,4211,1,1,f +2654,4213,7,8,f +2654,4213,15,3,f +2654,4214,1,1,f +2654,4214,15,1,f +2654,4214,4,1,f +2654,4215a,15,4,f +2654,4215a,1,2,f +2654,4215a,14,4,f +2654,4275b,0,2,f +2654,4275b,15,1,f +2654,4275b,7,1,f +2654,4276b,4,2,f +2654,4285a,1,1,f +2654,4286,15,4,f +2654,4286,1,2,f +2654,4289,15,2,f +2654,4315,15,3,f +2654,4315,7,8,f +2654,4349,4,2,f +2654,4460a,15,4,f +2654,4477,7,7,f +2654,4485,4,1,f +2654,4510,7,8,f +2654,4515,0,1,f +2654,4518ac01,0,1,f +2654,4531,0,2,f +2654,4531,15,1,f +2654,4531,7,1,f +2654,4589,15,2,f +2654,4589,0,2,f +2654,4599a,14,2,f +2654,4599a,7,1,f +2654,4600,0,8,f +2654,4624,15,4,f +2654,4740,8,2,f +2654,4862,41,10,f +2654,4863,15,3,f +2654,4865a,41,4,f +2654,4865a,15,4,f +2654,4865a,4,33,f +2654,4872,47,1,f +2654,6014a,15,8,f +2654,6014a,14,4,f +2654,6015,0,12,f +2654,6019,1,2,f +2654,6141,34,1,t +2654,6141,46,1,t +2654,6141,4,2,f +2654,6141,36,1,t +2654,6141,46,12,f +2654,6141,7,1,t +2654,6141,34,4,f +2654,6141,7,10,f +2654,6141,0,1,t +2654,6141,4,1,t +2654,6141,36,12,f +2654,6141,0,24,f +2654,6542stk01,9999,1,t +2654,73037,4,1,f +2654,73090b,4,1,f +2654,73590c01a,0,2,f +2654,8,7,4,f +2654,970c00,1,1,f +2654,970c00,0,5,f +2654,970c00,4,1,f +2654,973p09c01,15,1,f +2654,973pb0049c01,0,2,f +2654,973pb0091c01,0,1,f +2654,973pb0201c01,15,1,f +2654,973pb0202c01,15,1,f +2654,973pb0203c01,15,1,f +2654,rb00164,0,2,f +2656,10113,148,1,f +2656,11214,72,1,f +2656,15391,0,1,f +2656,15392,72,1,f +2656,15392,72,1,t +2656,15573,0,2,f +2656,18663,47,1,f +2656,18674,72,1,f +2656,18827,148,1,f +2656,19888,4,1,f +2656,23186,0,1,f +2656,24144,0,1,f +2656,25514,72,1,f +2656,2569,57,2,f +2656,3010,71,6,f +2656,30192,71,1,f +2656,3020,484,3,f +2656,3022,0,1,f +2656,3023,72,3,f +2656,3034,0,1,f +2656,3034,28,1,f +2656,30385,35,1,f +2656,3039,0,2,f +2656,3068b,0,1,f +2656,3069b,28,4,f +2656,32039,0,1,f +2656,3460,0,2,f +2656,3626cpr1767,78,1,f +2656,3626cpr6141699,1000,1,f +2656,3666,28,1,f +2656,3700,71,1,f +2656,3747b,71,2,f +2656,3960pr0021,0,1,f +2656,4151b,28,1,f +2656,41531,148,1,f +2656,4274,71,1,f +2656,4274,71,1,t +2656,4286,71,2,f +2656,4287,71,2,f +2656,43093,1,1,f +2656,52501,72,1,f +2656,59443,0,1,f +2656,59900,57,1,f +2656,60470b,71,1,f +2656,60849,0,1,t +2656,60849,0,2,f +2656,61184,71,1,f +2656,6141,35,1,t +2656,6141,0,5,f +2656,6141,71,1,t +2656,6141,0,1,t +2656,6141,71,2,f +2656,6141,35,4,f +2656,61780,2,1,f +2656,64567,71,1,t +2656,64567,71,2,f +2656,6541,0,2,f +2656,6583,0,1,f +2656,6587,28,1,f +2656,76044stk01b,9999,1,t +2656,87087,72,2,f +2656,87580,2,1,f +2656,93273,72,1,f +2656,970c00,272,1,f +2656,970c00pr6141728,72,1,f +2656,973c00pr6141719,148,1,f +2656,973pr3278c01,272,1,f +2656,98721,179,1,t +2656,98721,179,1,f +2657,2456,14,1,f +2657,2456,4,1,f +2657,2456,15,1,f +2657,2456,1,1,f +2657,3001,4,7,f +2657,3001,1,8,f +2657,3001,15,8,f +2657,3001,14,7,f +2657,3001,0,4,f +2657,3002,0,2,f +2657,3002,1,4,f +2657,3002,15,4,f +2657,3002,4,4,f +2657,3002,14,4,f +2657,3003,4,8,f +2657,3003,15,10,f +2657,3003,14,8,f +2657,3003,1,10,f +2657,3003,0,4,f +2657,3004,0,10,f +2657,3004,14,16,f +2657,3004,4,16,f +2657,3004,1,20,f +2657,3004,15,20,f +2657,3005,4,17,f +2657,3005,14,17,f +2657,3005,0,12,f +2657,3005,15,20,f +2657,3005,1,20,f +2657,3008,15,2,f +2657,3008,0,2,f +2657,3008,4,4,f +2657,3008,1,2,f +2657,3008,14,4,f +2657,3009,1,8,f +2657,3009,0,2,f +2657,3009,15,8,f +2657,3009,14,6,f +2657,3009,4,6,f +2657,3010,15,14,f +2657,3010,1,14,f +2657,3010,14,12,f +2657,3010,4,12,f +2657,3010,0,8,f +2657,3622,14,6,f +2657,3622,15,8,f +2657,3622,1,8,f +2657,3622,0,4,f +2657,3622,4,6,f +2658,11153,15,2,f +2658,14769,15,2,f +2658,15573,15,2,f +2658,2412b,15,90,f +2658,2420,15,1,f +2658,2431,41,39,f +2658,2431,15,5,f +2658,2436,15,2,f +2658,2445,15,3,f +2658,2460,72,2,f +2658,2639,15,1,f +2658,3004,15,3,f +2658,3020,15,17,f +2658,3021,15,18,f +2658,3023,41,98,f +2658,3023,15,42,f +2658,3024,72,1,t +2658,3024,72,4,f +2658,3024,41,1,t +2658,3024,15,1,t +2658,3024,41,18,f +2658,3024,15,22,f +2658,3034,71,1,f +2658,3035,15,3,f +2658,3036,71,4,f +2658,3068b,72,6,f +2658,3069b,15,13,f +2658,3069b,72,4,f +2658,3069b,0,4,f +2658,3069b,41,14,f +2658,3070b,15,1,t +2658,3070b,72,1,t +2658,3070b,15,7,f +2658,3070b,72,4,f +2658,3460,15,2,f +2658,3623,15,20,f +2658,3666,15,6,f +2658,3701,15,4,f +2658,3710,15,21,f +2658,3795,0,2,f +2658,4070,15,1,f +2658,4081b,15,12,f +2658,4162,0,7,f +2658,4162,15,2,f +2658,4162pr0032,0,1,f +2658,4274,71,1,t +2658,4274,71,9,f +2658,4477,15,11,f +2658,4733,15,1,f +2658,52107,15,4,f +2658,60478,15,1,f +2658,60897,15,1,f +2658,6091,15,2,f +2658,63864,15,2,f +2658,6541,15,13,f +2658,6558,1,4,f +2658,6636,15,2,f +2658,73983,15,4,f +2658,87079,72,20,f +2658,91988,0,4,f +2658,96874,25,1,t +2658,98138,326,12,f +2658,98138,326,1,t +2658,99780,15,2,f +2663,46281,45,1,f +2663,46296,47,1,f +2663,clikits040,230,1,f +2663,clikits084,45,1,f +2665,2357,4,2,f +2665,2357,14,4,f +2665,2357,1,2,f +2665,2357,15,2,f +2665,2420,4,4,f +2665,2420,0,1,f +2665,2420,14,4,f +2665,2431,7,2,f +2665,2431,0,3,f +2665,2436,15,1,f +2665,2456,4,1,f +2665,2495,4,1,f +2665,2496,0,1,f +2665,2540,7,1,f +2665,2540,4,2,f +2665,2540,14,1,f +2665,2584,7,2,f +2665,2585,0,2,f +2665,2650,4,1,f +2665,2651,4,1,f +2665,2819,7,2,f +2665,2825,15,10,f +2665,2825,7,12,f +2665,2868b,0,1,f +2665,2871a,0,2,f +2665,2873,4,9,f +2665,2873,14,5,f +2665,2873,0,1,f +2665,2874,7,4,f +2665,2877,0,1,f +2665,2877,14,8,f +2665,2878c01,0,8,f +2665,2919,46,2,f +2665,2920,0,8,f +2665,2921,1,8,f +2665,2921,0,4,f +2665,2928,0,2,f +2665,298c02,15,1,f +2665,298c02,0,1,f +2665,3001,0,2,f +2665,3004,15,1,f +2665,3004,14,9,f +2665,3004,4,4,f +2665,3004,0,1,f +2665,3004,1,2,f +2665,3005,4,2,f +2665,3005,14,2,f +2665,3005,1,8,f +2665,3005,0,4,f +2665,3005,15,2,f +2665,3009,4,2,f +2665,3009,14,1,f +2665,3010,14,2,f +2665,3010,1,1,f +2665,3010,4,1,f +2665,3020,15,2,f +2665,3020,0,7,f +2665,3020,4,2,f +2665,3021,0,5,f +2665,3021,4,1,f +2665,3022,7,2,f +2665,3022,1,1,f +2665,3022,0,2,f +2665,3023,14,4,f +2665,3023,7,2,f +2665,3023,4,9,f +2665,3023,15,1,f +2665,3023,0,13,f +2665,3024,14,8,f +2665,3024,1,2,f +2665,3024,4,2,f +2665,3024,15,4,f +2665,3027,0,2,f +2665,3027,7,1,f +2665,3028,7,1,f +2665,3029,7,1,f +2665,3029,14,1,f +2665,3031,14,1,f +2665,3032,14,1,f +2665,3032,4,1,f +2665,3032,0,1,f +2665,3034,0,1,f +2665,3035,0,1,f +2665,3037,4,1,f +2665,3037,14,1,f +2665,3040b,4,14,f +2665,3040b,0,1,f +2665,3042,4,2,f +2665,3062b,0,11,f +2665,3065,47,1,f +2665,3068b,0,1,f +2665,3068b,14,1,f +2665,3069b,4,1,f +2665,3069b,1,1,f +2665,3069b,14,1,f +2665,3069b,0,2,f +2665,3069bp52,15,1,f +2665,3070b,4,1,f +2665,3070b,36,2,f +2665,3194,14,1,f +2665,3195,14,1,f +2665,3297,4,2,f +2665,3297,7,2,f +2665,3460,4,4,f +2665,3460,0,6,f +2665,3623,0,2,f +2665,3623,14,2,f +2665,3624,4,1,f +2665,3626b,0,2,f +2665,3626bpr0001,14,3,f +2665,3641,0,1,f +2665,3660,4,10,f +2665,3665,4,4,f +2665,3665,0,12,f +2665,3666,4,7,f +2665,3666,1,4,f +2665,3666,0,2,f +2665,3666,15,2,f +2665,3666,14,1,f +2665,3679,7,1,f +2665,3680,0,1,f +2665,3700,4,2,f +2665,3700,15,1,f +2665,3700,1,1,f +2665,3701,1,1,f +2665,3705,0,1,f +2665,3710,0,10,f +2665,3710,1,1,f +2665,3710,14,4,f +2665,3710,4,7,f +2665,3737,0,2,f +2665,3738,4,1,f +2665,3788,4,1,f +2665,3794a,0,3,f +2665,3794a,7,4,f +2665,3795,0,1,f +2665,3821,15,1,f +2665,3822,15,1,f +2665,3823,47,1,f +2665,3829c01,0,1,f +2665,3832,0,4,f +2665,3833,4,1,f +2665,3937,4,2,f +2665,3962a,0,1,f +2665,4022,0,8,f +2665,4025,0,1,f +2665,4032a,7,2,f +2665,4079,4,1,f +2665,4081b,4,2,f +2665,4081b,0,2,f +2665,4162,7,2,f +2665,4162,4,2,f +2665,4211,4,1,f +2665,4213,4,1,f +2665,4215b,7,2,f +2665,4265b,7,3,f +2665,4275b,7,1,f +2665,4282,1,2,f +2665,4286,4,2,f +2665,4315,0,1,f +2665,4315,14,5,f +2665,4315,4,8,f +2665,4315,15,4,f +2665,4477,14,2,f +2665,4485,1,1,f +2665,4509,7,2,f +2665,4510,14,2,f +2665,4510,1,8,f +2665,4531,7,1,f +2665,4531,0,1,f +2665,4564stk01,9999,1,t +2665,4589,0,1,f +2665,4600,0,3,f +2665,4625,4,1,f +2665,4864a,1,6,f +2665,4864ap12,47,2,f +2665,4865a,7,2,f +2665,5306c01,8,1,f +2665,56823c20,0,1,f +2665,6014a,15,6,f +2665,6015,0,6,f +2665,6091,7,4,f +2665,6112,4,2,f +2665,6134,4,2,f +2665,6141,46,2,f +2665,6141,47,2,f +2665,6141,7,4,f +2665,6141,0,1,f +2665,6546,14,8,f +2665,6556,14,4,f +2665,6567c01,0,2,f +2665,6576,0,1,f +2665,6576,14,1,f +2665,6583,14,2,f +2665,6583,7,8,f +2665,6584,0,1,f +2665,70358,0,1,f +2665,70931,0,1,f +2665,71509,0,1,f +2665,73092,0,8,f +2665,74746,8,2,f +2665,74747,8,16,f +2665,970c00,1,3,f +2665,973p19c01,1,1,f +2665,973pb0201c01,15,1,f +2665,973px1c01,1,1,f +2666,2456,15,1,f +2666,3666,2,1,f +2666,3710,2,2,f +2666,3795,15,1,f +2666,4079,4,2,f +2668,3068bpr0001,15,1,f +2668,3626bpb0430,14,1,f +2668,87989,71,1,f +2668,87989,71,1,t +2668,87990,308,1,f +2668,88646,0,1,f +2668,970c00,15,1,f +2668,973pr1541c01,15,1,f +2669,10884,27,2,f +2669,11091,85,4,f +2669,11096,297,1,f +2669,11097,297,1,f +2669,11097,179,2,f +2669,11100,0,4,f +2669,11100,15,2,f +2669,11127,41,2,f +2669,11153,72,6,f +2669,11153,14,2,f +2669,12549pr0003,15,1,f +2669,12550pr0002,0,1,f +2669,12550pr0005,0,1,f +2669,12783,9999,1,f +2669,12825,0,4,f +2669,12825,15,2,f +2669,2339,0,2,f +2669,2412b,179,9,f +2669,2420,0,2,f +2669,2780,0,2,f +2669,2780,0,1,t +2669,2921,71,2,f +2669,3001,288,3,f +2669,3002,0,2,f +2669,3003,71,2,f +2669,30031,72,2,f +2669,3004,73,2,f +2669,3004,0,4,f +2669,3005,72,10,f +2669,30136,19,2,f +2669,30162,71,1,f +2669,30176,2,2,f +2669,3020,0,5,f +2669,3020,72,1,f +2669,3021,72,5,f +2669,3021,14,3,f +2669,3021,85,5,f +2669,3022,4,4,f +2669,3023,28,20,f +2669,3023,72,5,f +2669,30237b,71,1,f +2669,3024,320,12,f +2669,3024,320,2,t +2669,3031,72,2,f +2669,3034,0,1,f +2669,30374,70,1,f +2669,3038,72,2,f +2669,3039,71,2,f +2669,3039pr0013,15,1,f +2669,3040b,320,2,f +2669,30503,288,2,f +2669,30503,0,2,f +2669,3062b,320,2,f +2669,3062b,272,1,f +2669,3068b,72,2,f +2669,3069b,320,7,f +2669,3069b,85,4,f +2669,32000,14,3,f +2669,32013,0,4,f +2669,32028,71,1,f +2669,32039,0,1,f +2669,32523,0,2,f +2669,32531,0,1,f +2669,3298,0,1,f +2669,3460,72,1,f +2669,3623,0,2,f +2669,3626cpr1126,212,1,f +2669,3626cpr1130,0,1,f +2669,3626cpr1133,0,1,f +2669,3660,0,3,f +2669,3665,71,1,f +2669,3710,72,5,f +2669,3710,71,2,f +2669,3710,272,2,f +2669,3747b,72,2,f +2669,3941,41,1,f +2669,3957b,0,1,f +2669,4081b,72,8,f +2669,41854,72,3,f +2669,4287,0,2,f +2669,43093,1,4,f +2669,43121,0,2,f +2669,43713,72,2,f +2669,44300,72,2,f +2669,44567a,0,4,f +2669,4460b,72,4,f +2669,44661,15,2,f +2669,44728,72,2,f +2669,45301,0,1,f +2669,4589,4,4,f +2669,4595,0,1,f +2669,46667,72,2,f +2669,4740,33,1,f +2669,47407,0,1,f +2669,47455,72,4,f +2669,47457,72,3,f +2669,47755,0,1,f +2669,48171,72,4,f +2669,48172,0,2,f +2669,48336,4,2,f +2669,4865b,28,1,f +2669,4871,0,3,f +2669,48729b,0,1,f +2669,48729b,0,1,t +2669,52501,320,2,f +2669,54200,71,1,t +2669,54200,85,1,t +2669,54200,71,3,f +2669,54200,85,2,f +2669,57539pat0004,47,2,f +2669,57906,0,6,f +2669,57909a,72,3,f +2669,6019,72,1,f +2669,60219,0,1,f +2669,6069,72,1,f +2669,6091,320,2,f +2669,61072,179,3,f +2669,61184,71,4,f +2669,61409,288,4,f +2669,6141,85,1,t +2669,6141,33,3,f +2669,6141,36,1,t +2669,6141,71,4,f +2669,6141,36,2,f +2669,6141,71,1,t +2669,6141,33,1,t +2669,6141,85,8,f +2669,6183,0,1,f +2669,6232,72,2,f +2669,63868,4,4,f +2669,63868,0,1,f +2669,64225,0,1,f +2669,64450,0,1,f +2669,64644,297,1,f +2669,6558,1,4,f +2669,72454,0,1,f +2669,73983,72,11,f +2669,85984,72,2,f +2669,85984,0,5,f +2669,87580,85,3,f +2669,87580,73,1,f +2669,87617,0,1,f +2669,87618,71,1,f +2669,87620,28,4,f +2669,90194,72,1,f +2669,92013,0,3,f +2669,92280,71,2,f +2669,92946,288,2,f +2669,92946,0,2,f +2669,92950,72,2,f +2669,93273,320,8,f +2669,93273,72,1,f +2669,93606,0,1,f +2669,970c00pr0433,0,1,f +2669,970c01pr0435,15,1,f +2669,970d16,0,1,f +2669,973pr1358bc01,0,1,f +2669,973pr2231c01,212,1,f +2669,973pr2243c01,0,1,f +2669,98138,41,3,f +2669,98138,41,1,t +2669,98138,179,2,f +2669,98138,179,1,t +2669,98283,71,7,f +2670,12825,4,2,f +2670,30381,0,1,f +2670,3626cpr0866,14,1,f +2670,41879a,0,1,f +2670,4643606,9999,1,f +2670,4643607,9999,1,f +2670,4643608,9999,1,f +2670,4643609,9999,1,f +2670,4643610,9999,1,f +2670,4740,42,1,f +2670,55236,27,4,f +2670,63965,70,1,f +2670,63965,0,1,f +2670,87747,15,2,f +2670,92690,71,2,f +2670,92946,4,2,f +2670,973pr0440c01,0,1,f +2670,98136,297,1,f +2670,99464,0,1,f +2672,10202,71,2,f +2672,22890,72,2,f +2672,2357,19,6,f +2672,2357,1,6,f +2672,2357,0,7,f +2672,2412b,25,2,f +2672,2420,72,1,f +2672,2431,2,3,f +2672,2431,4,1,f +2672,2431,19,9,f +2672,2431,0,3,f +2672,2456,1,1,f +2672,2465,19,7,f +2672,2730,15,3,f +2672,2780,0,14,f +2672,2780,0,1,t +2672,3001,0,7,f +2672,3004,71,10,f +2672,3004,70,6,f +2672,3004,0,8,f +2672,3005,0,1,f +2672,3005,4,2,f +2672,3005,70,4,f +2672,3006,0,8,f +2672,3008,0,3,f +2672,3008,19,2,f +2672,3009,70,5,f +2672,3009,19,8,f +2672,3009,0,7,f +2672,3010,71,5,f +2672,3010,19,6,f +2672,30136,19,19,f +2672,30136,70,2,f +2672,3020,71,4,f +2672,3020,19,1,f +2672,3022,72,1,f +2672,3023,1,4,f +2672,3023,0,2,f +2672,3023,71,2,f +2672,3023,4,4,f +2672,3024,72,1,f +2672,3024,72,1,t +2672,30367c,27,2,f +2672,3039,70,2,f +2672,3040b,0,13,f +2672,30414,19,2,f +2672,3043,0,1,f +2672,3044b,288,2,f +2672,3044b,72,2,f +2672,3062b,70,17,f +2672,3068b,2,3,f +2672,3068b,19,7,f +2672,3069b,2,10,f +2672,3069b,70,8,f +2672,3069b,0,3,f +2672,3069b,19,20,f +2672,3070b,19,6,f +2672,3070b,19,1,t +2672,32000,19,3,f +2672,32005a,72,2,f +2672,32064a,15,2,f +2672,32073,71,1,f +2672,32123b,71,1,t +2672,32123b,71,4,f +2672,32140,14,1,f +2672,32140,1,1,f +2672,32184,15,4,f +2672,32498,0,2,f +2672,32523,0,2,f +2672,32524,0,4,f +2672,32525,71,2,f +2672,32530,72,8,f +2672,3460,0,2,f +2672,3460,19,3,f +2672,3622,0,4,f +2672,3622,19,5,f +2672,3622,70,6,f +2672,3622,71,14,f +2672,3623,70,1,f +2672,3659,71,4,f +2672,3666,19,5,f +2672,3701,72,11,f +2672,3710,0,19,f +2672,3710,70,4,f +2672,3710,19,3,f +2672,3710,71,4,f +2672,3713,71,10,f +2672,3713,71,1,t +2672,3749,19,4,f +2672,3795,72,2,f +2672,3811,71,1,f +2672,3832,70,8,f +2672,3832,71,10,f +2672,3894,14,4,f +2672,3894,1,4,f +2672,3958,19,1,f +2672,4032a,70,1,f +2672,41539,0,1,f +2672,4162,19,18,f +2672,4162,14,4,f +2672,4162,0,21,f +2672,4162,1,5,f +2672,4274,1,6,f +2672,4274,1,1,t +2672,4286,0,10,f +2672,43857,4,4,f +2672,44728,19,8,f +2672,4477,19,12,f +2672,4490,71,1,f +2672,4519,14,2,f +2672,54200,71,8,f +2672,54200,71,1,t +2672,59443,25,3,f +2672,59900,71,4,f +2672,60479,19,2,f +2672,60485,14,4,f +2672,6091,0,4,f +2672,6112,19,15,f +2672,6112,0,9,f +2672,6112,4,2,f +2672,6179,0,1,f +2672,63864,19,24,f +2672,63864,0,3,f +2672,6541,71,2,f +2672,6541,19,3,f +2672,6558,1,14,f +2672,6587,28,2,f +2672,6628,0,2,f +2672,6636,0,11,f +2672,72824,25,4,f +2672,85984,27,2,f +2672,85984,0,4,f +2672,85984,4,6,f +2672,85984,1,2,f +2672,87079,4,1,f +2672,87079,2,22,f +2672,87079,19,45,f +2672,87083,72,2,f +2672,92280,71,4,f +2672,92438,0,4,f +2672,92593,15,1,f +2672,92947,70,1,f +2672,96874,25,1,t +2672,99206,15,4,f +2672,99207,71,8,f +2673,3068ap02,15,1,f +2673,3245ap02,15,1,f +2673,7852,1,1,f +2673,bb93c16,15,1,f +2673,sw12v1lefta,1,1,f +2676,30374,36,1,f +2676,64567,80,1,f +2678,11198,5,1,f +2678,16375,85,1,f +2678,2302,29,1,f +2678,3437,41,2,f +2678,3437,2,4,f +2678,3437,26,1,f +2678,3437,27,1,f +2678,3437,5,1,f +2678,3437,10,1,f +2678,4066,29,1,f +2678,4066pb432,41,1,f +2678,6474,31,1,f +2678,6510,73,1,f +2678,6510,14,1,f +2678,6510,10,1,f +2678,6510,5,1,f +2678,87084,10,2,f +2678,98223,27,1,f +2678,98225,29,1,f +2678,98233,31,1,f +2678,98233,10,1,f +2678,98252,27,2,f +2678,99771,212,1,f +2679,3024,70,1,f +2679,3069b,70,2,f +2679,3623,70,1,f +2679,4595,0,1,f +2679,54200,70,1,t +2679,54200,70,3,f +2679,6141,70,1,f +2679,6141,70,1,t +2681,10928,72,2,f +2681,11302pat0001,36,2,f +2681,11305,297,2,f +2681,15100,0,2,f +2681,15462,28,3,f +2681,19049,179,1,f +2681,19050,41,1,f +2681,19052,297,1,f +2681,19052,4,1,f +2681,19086,72,1,f +2681,19087,297,6,f +2681,19992,179,2,f +2681,20251,158,1,f +2681,20252,148,4,f +2681,2780,0,7,f +2681,32013,0,2,f +2681,32062,4,1,f +2681,32072,0,3,f +2681,32072,14,1,f +2681,32184,0,1,f +2681,3713,71,1,f +2681,4274,71,1,f +2681,43093,1,3,f +2681,53585,0,4,f +2681,63869,0,2,f +2681,6558,1,1,f +2681,74261,72,4,f +2681,90607,0,2,f +2681,90609,0,2,f +2681,90612,0,2,f +2681,90616,0,2,f +2681,90617,72,2,f +2681,90626,0,1,f +2681,90639,4,5,f +2681,90640,57,4,f +2681,90652,4,3,f +2681,90661,179,2,f +2681,93575,179,2,f +2681,98577,72,1,f +2681,98603s02pr0002,297,1,f +2683,11203pr0014,0,1,f +2683,11477,0,1,f +2683,15573,320,1,f +2683,15573,25,3,f +2683,15712,0,2,f +2683,18787,179,2,f +2683,18787,72,2,f +2683,18792,70,1,f +2683,19723,179,1,f +2683,19729pr0001,308,1,f +2683,19729pr0013,0,2,f +2683,19729pr0014,0,2,f +2683,19730,179,1,f +2683,23769,0,4,f +2683,2420,71,2,f +2683,2431,0,2,f +2683,2431,320,2,f +2683,24445,0,2,f +2683,2456,320,1,f +2683,2456,71,2,f +2683,2654,4,4,f +2683,2817,71,2,f +2683,3001,71,4,f +2683,3001,320,4,f +2683,3001,25,1,f +2683,3003,72,2,f +2683,3003,25,9,f +2683,3003,71,10,f +2683,3003,308,4,f +2683,3003,320,5,f +2683,3004,71,14,f +2683,3004,25,5,f +2683,3004,320,7,f +2683,3004pr0036,15,4,f +2683,3005,320,5,f +2683,3005,25,2,f +2683,3005,182,2,f +2683,3008,71,1,f +2683,3009,320,5,f +2683,3010,71,3,f +2683,30157,72,1,f +2683,3020,71,1,f +2683,3020,320,2,f +2683,3022,4,2,f +2683,3022,71,6,f +2683,3022,320,1,f +2683,3022,15,1,f +2683,3023,46,2,f +2683,3023,0,3,f +2683,3023,25,5,f +2683,3023,71,4,f +2683,3024,28,1,t +2683,3024,320,5,f +2683,3024,182,1,t +2683,3024,0,1,f +2683,3024,28,2,f +2683,3024,182,4,f +2683,3024,72,2,f +2683,3031,320,2,f +2683,3032,320,2,f +2683,3033,25,1,f +2683,30383,0,1,f +2683,3039,25,7,f +2683,3068b,0,1,f +2683,3069b,71,5,f +2683,3070b,72,4,f +2683,3070b,320,1,f +2683,32000,72,2,f +2683,32064a,71,6,f +2683,32123b,14,1,t +2683,32123b,14,2,f +2683,32474,4,3,f +2683,32524,4,1,f +2683,3623,72,3,f +2683,3666,0,1,f +2683,3673,71,1,f +2683,3673,71,1,t +2683,3700,25,7,f +2683,3700,71,10,f +2683,3701,72,2,f +2683,3707,4,1,f +2683,3708,0,1,f +2683,3710,0,1,f +2683,3710,71,1,f +2683,3795,25,2,f +2683,3795,71,1,f +2683,3795,72,1,f +2683,3832,71,4,f +2683,3958,25,1,f +2683,4032a,0,2,f +2683,41539,72,1,f +2683,4216,320,2,f +2683,4274,1,3,f +2683,43093,1,2,f +2683,44302a,0,2,f +2683,44567a,0,1,f +2683,4519,71,1,f +2683,45590,0,2,f +2683,48336,0,1,f +2683,54200,182,4,f +2683,59230,0,4,f +2683,59443,0,1,f +2683,59900,182,2,f +2683,59900,4,1,f +2683,6141,71,1,t +2683,6141,4,1,f +2683,6141,4,1,t +2683,6141,71,2,f +2683,6141,15,4,f +2683,6141,36,4,f +2683,63864,72,1,f +2683,64644,308,1,f +2683,85984,25,1,f +2683,87083,72,1,f +2683,87087,0,4,f +2683,87580,71,5,f +2683,87580,72,2,f +2683,87580,320,6,f +2683,87580,4,2,f +2683,91405,25,1,f +2683,970c00,85,1,f +2683,973pr2819c01,321,1,f +2683,98283,320,3,f +2683,98283,72,2,f +2683,98286,71,1,f +2683,99780,72,1,f +2684,2456,15,1,f +2684,3001,15,1,f +2684,3003,15,1,f +2684,3004,15,6,f +2684,3005pe1,15,2,f +2684,3020,15,1,f +2684,3021,15,2,f +2684,3023,14,4,f +2684,3023,15,1,f +2684,3039,15,1,f +2684,3660,15,2,f +2684,3666,14,1,f +2684,3688,4,1,f +2684,3710,15,1,f +2684,6141,15,1,f +2684,6141,15,1,t +2685,3062b,4,1,f +2685,4599a,4,1,f +2685,4714,15,1,f +2687,3020,1,4,f +2687,3021,1,4,f +2687,3022,1,4,f +2687,3023,1,4,f +2687,3029,1,2,f +2687,3031,1,2,f +2687,3032,1,2,f +2687,3034,1,2,f +2687,3035,1,2,f +2687,3036,1,2,f +2687,3460,1,2,f +2687,3623,1,2,f +2687,3666,1,2,f +2687,3710,1,2,f +2687,3795,1,2,f +2687,3832,1,2,f +2687,4477,1,2,f +2688,45481,57,1,f +2688,45481,45,2,f +2688,45481,230,1,f +2688,46296,41,1,f +2688,46296,57,1,f +2688,46296,230,1,f +2688,48176pb01,57,1,f +2688,51675,46,2,f +2688,53657,45,6,f +2688,53657,118,4,f +2688,53657,41,6,f +2688,53657,230,2,f +2688,53657,57,9,f +2688,53657,46,2,f +2688,53657,29,10,f +2688,53657,191,4,f +2688,53658,41,2,f +2688,53658,230,3,f +2688,53658,45,2,f +2688,53658,57,2,f +2688,53660,182,1,f +2688,53660,230,2,f +2688,clikits013pb04,182,1,f +2688,clikits018,45,1,f +2688,clikits021,41,1,f +2688,clikits025,45,17,f +2688,clikits028,35,3,f +2688,clikits028,118,4,f +2688,clikits038,35,2,f +2688,clikits068,47,1,f +2688,clikits069pb02,41,1,f +2688,clikits077pb01,41,1,f +2688,clikits099,230,2,f +2688,clikits100pb04,29,2,f +2688,clikits122,118,4,f +2688,clikits122,18,4,f +2688,clikits135pb01,29,1,f +2688,clikits142pb01,118,2,f +2688,clikits142pb02,68,1,f +2688,clikits142pb02,29,1,f +2688,clikits144,27,2,f +2688,clikits145,27,1,f +2688,clikits162,29,1,f +2688,clikits177,45,1,f +2688,clikits178,9999,1,f +2688,clikits179,9999,1,f +2688,clikits180,9999,1,f +2688,clikits181,45,1,f +2688,clikits182,13,1,f +2688,clikits182,462,1,f +2688,clikits184,118,1,f +2688,clikits185,45,1,f +2688,clikits186,45,1,f +2688,clikits187,45,2,f +2688,clikits189,57,1,f +2688,clikits190,45,1,f +2691,15503,84,1,f +2691,3068bpr0011,0,1,f +2691,3626cpr1301,179,1,f +2691,88646,0,1,f +2691,970c00pr0594,92,1,f +2691,973pr2518c01,191,1,f +2692,3001,15,5,f +2692,3001,4,1,f +2692,3003,15,2,f +2692,3003,4,2,f +2692,3004,15,22,f +2692,3004,4,2,f +2692,3005,15,4,f +2692,3007,15,4,f +2692,3008,4,8,f +2692,3008p22,15,8,f +2692,3008p25,15,6,f +2692,3009,4,13,f +2692,3009,15,1,f +2692,3009p25,15,2,f +2692,3009p26,15,4,f +2692,3010,15,1,f +2692,3010,4,1,f +2692,3020,1,1,f +2692,3020,15,2,f +2692,3021,15,3,f +2692,3022,1,1,f +2692,3022,15,4,f +2692,3023,15,4,f +2692,3023,4,8,f +2692,3024,34,1,f +2692,3024,36,1,f +2692,3024,15,6,f +2692,3027,1,2,f +2692,3029,15,1,f +2692,3032,15,2,f +2692,3037,15,2,f +2692,3040b,15,8,f +2692,3298,15,1,f +2692,3456,15,2,f +2692,3460,15,2,f +2692,3622,4,4,f +2692,3623,15,2,f +2692,3623,0,2,f +2692,3660,4,2,f +2692,3660p02,15,2,f +2692,3665,4,12,f +2692,3665p01,15,2,f +2692,3666,15,2,f +2692,3684,15,3,f +2692,3684p22,15,2,f +2692,3710,15,6,f +2692,3794a,15,1,f +2692,3795,15,1,f +2692,3832,15,1,f +2692,3958,1,1,f +2692,4289,15,1,f +2692,4460b,15,2,f +2692,6141,46,1,f +2693,2335,1,1,f +2693,2412b,15,1,f +2693,2446,1,1,f +2693,2447,40,1,t +2693,2447,40,1,f +2693,2540,72,2,f +2693,2555,72,1,f +2693,30031,72,1,f +2693,3023,71,2,f +2693,3626bpr0389,14,1,f +2693,3794a,15,3,f +2693,3795,72,1,f +2693,3957a,71,1,f +2693,4032b,71,2,f +2693,44674,25,2,f +2693,4600,0,2,f +2693,54200,46,1,t +2693,54200,46,1,f +2693,6014b,15,4,f +2693,6015,0,4,f +2693,970c00,1,1,f +2693,973pr1363c01,14,1,f +2694,3001,1,4,f +2694,3001,4,5,f +2694,3001,14,5,f +2694,3002,4,2,f +2694,3002,1,2,f +2694,3002,14,2,f +2694,3003,14,4,f +2694,3003,4,4,f +2694,3003,1,2,f +2694,3004,1,8,f +2694,3004,47,2,f +2694,3004,14,12,f +2694,3004,4,10,f +2694,3005,1,6,f +2694,3005,14,8,f +2694,3005,4,8,f +2694,3008,14,2,f +2694,3009,14,4,f +2694,3009,4,4,f +2694,3009,1,2,f +2694,3010,1,6,f +2694,3010,14,8,f +2694,3010,4,8,f +2694,3020,1,2,f +2694,3021,1,2,f +2694,3022,1,2,f +2694,3031,1,1,f +2694,3032,1,1,f +2694,3034,1,4,f +2694,3039,1,4,f +2694,3039,47,2,f +2694,3081cc01,4,2,f +2694,3137c01,0,2,f +2694,3297,1,4,f +2694,3298,1,4,f +2694,3299,1,2,f +2694,3300,1,2,f +2694,3460,1,4,f +2694,3461,15,1,f +2694,3462,1,1,f +2694,3480,7,1,f +2694,3481,1,1,f +2694,3622,14,6,f +2694,3622,4,6,f +2694,3622,1,2,f +2694,3626apr0001,14,1,f +2694,3633,4,4,f +2694,3641,0,4,f +2694,3660,1,4,f +2694,3710,1,2,f +2694,3741,2,2,f +2694,3742,4,3,f +2694,3742,4,1,t +2694,3742,15,3,f +2694,3742,15,1,t +2694,3823,47,1,f +2694,3853,15,4,f +2694,3854,4,4,f +2694,3856,2,4,f +2694,3861b,15,1,f +2694,3867,2,1,f +2694,3901,6,1,f +2694,970c00,0,1,f +2694,973c01,15,1,f +2695,2412b,297,2,f +2695,2413,71,1,f +2695,2415,71,1,f +2695,2444,71,1,f +2695,2488,0,1,f +2695,2555,0,1,f +2695,2654,71,1,f +2695,3001,0,1,f +2695,3004,320,1,f +2695,30162,72,4,f +2695,3020,72,1,f +2695,30383,72,2,f +2695,30536,40,1,f +2695,30648,0,2,f +2695,3068b,320,1,f +2695,3069b,72,2,f +2695,3139,0,1,f +2695,32013,72,2,f +2695,32039,0,1,f +2695,32062,4,1,f +2695,32064b,0,1,f +2695,32531,0,1,f +2695,3464,15,1,f +2695,3626bpr0476,78,1,f +2695,3626bpr0481,78,1,f +2695,3679,71,1,f +2695,3680,0,1,f +2695,3710,72,1,f +2695,3832,0,1,f +2695,4081b,72,2,f +2695,41747,0,1,f +2695,41748,0,1,f +2695,41855,0,1,f +2695,41855,71,1,f +2695,42022,0,2,f +2695,4274,1,1,t +2695,4274,1,5,f +2695,43093,1,2,f +2695,43710,0,1,f +2695,43711,0,1,f +2695,43713,0,1,f +2695,44728,0,2,f +2695,45301,0,1,f +2695,4589,36,2,f +2695,4697b,71,2,f +2695,4697b,71,1,t +2695,4733,0,1,f +2695,49668,0,2,f +2695,50859a,0,1,f +2695,50861,0,2,f +2695,50862,71,2,f +2695,50950,0,2,f +2695,51377,297,2,f +2695,55704,0,1,f +2695,55705,0,1,f +2695,55706,0,1,f +2695,56630,0,1,f +2695,6126a,57,3,f +2695,6141,42,1,f +2695,6141,42,1,t +2695,6249,71,1,f +2695,6541,0,2,f +2695,6587,72,2,f +2695,7779stk01,9999,1,t +2695,89536,85,1,f +2695,970c00,0,1,f +2695,970x026,71,1,f +2695,973pr1272c01,71,1,f +2695,973pr1276c01,0,1,f +2696,10555,0,1,f +2696,12825,72,2,f +2696,2335,71,1,f +2696,2357,0,2,f +2696,2412b,0,14,f +2696,2412b,72,6,f +2696,2412b,36,2,f +2696,2419,72,4,f +2696,2420,71,4,f +2696,2431,0,2,f +2696,2436,71,2,f +2696,2444,71,16,f +2696,2445,0,2,f +2696,2450,0,24,f +2696,2450,71,12,f +2696,2456,72,1,f +2696,2476a,71,4,f +2696,2540,72,1,f +2696,2639,72,4,f +2696,2653,71,2,f +2696,2654,0,1,f +2696,2654,72,4,f +2696,2730,71,4,f +2696,2780,0,1,t +2696,2780,0,4,f +2696,2877,0,5,f +2696,298c02,0,4,f +2696,298c02,0,1,t +2696,3001,0,4,f +2696,3003,72,2,f +2696,3004,72,4,f +2696,3007,71,1,f +2696,30088,0,2,f +2696,3010,0,7,f +2696,3020,0,20,f +2696,3021,71,8,f +2696,3021,0,6,f +2696,3021,72,4,f +2696,3022,19,1,f +2696,3022,71,5,f +2696,3022,0,6,f +2696,3023,71,10,f +2696,3023,72,9,f +2696,3031,71,2,f +2696,3031,72,4,f +2696,3032,71,4,f +2696,3034,71,10,f +2696,3034,72,2,f +2696,30355,72,2,f +2696,30356,72,2,f +2696,30363,71,2,f +2696,30374,36,1,f +2696,3038,0,2,f +2696,3039,71,2,f +2696,30414,0,2,f +2696,3046a,71,2,f +2696,30503,71,4,f +2696,30504,71,4,f +2696,3068b,0,4,f +2696,3069b,72,11,f +2696,3069b,71,2,f +2696,3069bpr0086,71,1,f +2696,3070b,72,3,f +2696,3070b,36,5,f +2696,3070b,72,1,t +2696,3070b,36,1,t +2696,32000,71,2,f +2696,32015,71,2,f +2696,32028,71,17,f +2696,32054,4,2,f +2696,32064b,71,10,f +2696,32291,71,8,f +2696,32324,71,2,f +2696,32348,71,2,f +2696,32524,72,6,f +2696,3298,71,2,f +2696,3299,0,2,f +2696,3460,0,2,f +2696,3623,0,2,f +2696,3623,72,4,f +2696,3623,71,4,f +2696,3626bpr1001,71,1,f +2696,3626cpr0937,78,2,f +2696,3665,71,4,f +2696,3666,2,4,f +2696,3666,71,15,f +2696,3700,0,2,f +2696,3700,71,1,f +2696,3701,72,2,f +2696,3710,0,13,f +2696,3710,71,8,f +2696,3713,71,2,f +2696,3731,71,2,f +2696,3747b,72,2,f +2696,3749,19,8,f +2696,3794b,71,2,f +2696,3795,71,1,f +2696,3795,72,12,f +2696,3832,0,2,f +2696,3894,0,1,f +2696,3958,0,1,f +2696,4070,71,2,f +2696,4079b,0,1,f +2696,4085c,72,2,f +2696,4162,0,8,f +2696,4162,15,2,f +2696,41862,71,2,f +2696,4274,1,8,f +2696,4274,1,1,t +2696,4286,71,4,f +2696,4287,0,2,f +2696,43093,1,16,f +2696,43710,71,1,f +2696,43711,71,1,f +2696,43719,0,2,f +2696,43722,0,4,f +2696,43723,0,4,f +2696,43857,0,2,f +2696,44568,71,2,f +2696,44570,72,3,f +2696,44728,0,2,f +2696,4510,71,2,f +2696,4519,71,6,f +2696,45590,0,2,f +2696,4589,72,6,f +2696,4740,57,2,f +2696,47998,72,4,f +2696,48336,0,8,f +2696,4865b,72,2,f +2696,50747pr0005,40,1,f +2696,50950,72,2,f +2696,51739,72,3,f +2696,52501,72,1,f +2696,53585,0,4,f +2696,54200,0,1,t +2696,54200,0,8,f +2696,54383,71,6,f +2696,54383,0,4,f +2696,54384,0,4,f +2696,54384,71,6,f +2696,55981,71,2,f +2696,58247,0,2,f +2696,59443,0,2,f +2696,60219,71,3,f +2696,60477,72,6,f +2696,60479,0,3,f +2696,60479,71,11,f +2696,60484,0,4,f +2696,6091,0,4,f +2696,61184,71,8,f +2696,61409,0,14,f +2696,6141,71,2,f +2696,6141,71,1,t +2696,6232,4,1,f +2696,63864,0,24,f +2696,64567,80,1,f +2696,6558,1,18,f +2696,73983,0,1,f +2696,85984,0,4,f +2696,85984,71,10,f +2696,87079,0,12,f +2696,87083,72,2,f +2696,87617,0,4,f +2696,87618,71,4,f +2696,90194,72,2,f +2696,92582,71,4,f +2696,93274,0,2,f +2696,96874,25,1,t +2696,970c00,0,2,f +2696,970c00pr0359,72,1,f +2696,973pr2088c01,0,1,f +2696,973pr2094c01,0,2,f +2696,98101pr0001,0,1,f +2696,98177pr0001,0,2,f +2696,99207,71,2,f +2696,99781,71,6,f +2697,3004,4,1,f +2697,3004,2,1,f +2697,3004p0b,14,1,f +2697,3010,14,1,f +2697,3021,15,1,f +2697,3022,4,1,f +2697,3039,2,2,f +2698,bb556,89,1,f +2699,3705,0,50,f +2700,18927,288,1,f +2700,30173b,0,1,f +2700,30192,72,1,f +2700,30374,70,1,f +2700,3626cpr1557,14,1,f +2700,64644,308,1,f +2700,92338,179,1,f +2700,970x192pr0001,70,1,f +2700,973pr9992,70,1,f +2703,10928,72,1,f +2703,11214,72,7,f +2703,11478,0,2,f +2703,14682,71,1,f +2703,14696,0,19,f +2703,14696,0,1,t +2703,15413,0,4,f +2703,18575,19,1,f +2703,18945,14,2,f +2703,2412b,71,12,f +2703,2780,0,1,t +2703,2780,0,53,f +2703,2850b,71,1,f +2703,2851,14,1,f +2703,2852,71,1,f +2703,2853,14,2,f +2703,3023,0,2,f +2703,3032,0,1,f +2703,32009,72,2,f +2703,32016,71,2,f +2703,32034,0,3,f +2703,32054,71,2,f +2703,32056,72,4,f +2703,32062,4,1,f +2703,32072,14,2,f +2703,32073,71,1,f +2703,32123b,71,7,f +2703,32123b,71,1,t +2703,32140,14,2,f +2703,32184,0,4,f +2703,32249,0,2,f +2703,32270,0,3,f +2703,32316,14,3,f +2703,32523,14,2,f +2703,32524,72,4,f +2703,32524,14,9,f +2703,32525,72,4,f +2703,32525,14,7,f +2703,32526,72,2,f +2703,3705,0,7,f +2703,3706,0,1,f +2703,3713,71,1,t +2703,3713,71,15,f +2703,3749,19,4,f +2703,40490,14,6,f +2703,4162,14,2,f +2703,42003,71,14,f +2703,42610,71,1,f +2703,4274,1,1,t +2703,4274,1,13,f +2703,43093,1,16,f +2703,43857,14,3,f +2703,44294,71,3,f +2703,4519,71,12,f +2703,48989,71,3,f +2703,54200,47,1,t +2703,54200,47,4,f +2703,55013,72,1,f +2703,56145,14,4,f +2703,59426,72,2,f +2703,59443,0,8,f +2703,60483,0,8,f +2703,60484,71,2,f +2703,60485,71,5,f +2703,6141,47,1,t +2703,6141,47,2,f +2703,62462,14,4,f +2703,64782,14,1,f +2703,6536,14,15,f +2703,6558,1,14,f +2703,6587,28,1,f +2703,6589,19,1,t +2703,6589,19,1,f +2703,6628,0,2,f +2703,87082,71,6,f +2703,87083,72,2,f +2703,87761,0,1,f +2703,94925,71,2,f +2704,10201,0,2,f +2704,11399,72,1,f +2704,11476,71,3,f +2704,11477,179,2,f +2704,14417,72,2,f +2704,14419,72,4,f +2704,14704,71,4,f +2704,15361,41,2,f +2704,15391,15,1,f +2704,15392,72,3,f +2704,15400,72,1,f +2704,15403,15,2,f +2704,15411,0,4,f +2704,15462,28,8,f +2704,15573,27,2,f +2704,15573,15,14,f +2704,15712,0,5,f +2704,18827pr0002,41,1,f +2704,19020,182,1,f +2704,19023c01,15,1,f +2704,2412b,0,2,f +2704,2412b,15,4,f +2704,2431,41,1,f +2704,2515,0,4,f +2704,2540,0,2,f +2704,2540,72,2,f +2704,2654,0,6,f +2704,2654,47,2,f +2704,2736,71,6,f +2704,2780,0,12,f +2704,3003,0,2,f +2704,3009,0,2,f +2704,3010,15,3,f +2704,30151a,42,2,f +2704,3020,0,3,f +2704,3021,72,1,f +2704,3022,191,2,f +2704,3022,71,1,f +2704,30229,72,1,f +2704,3023,27,2,f +2704,3023,41,2,f +2704,3032,0,2,f +2704,3036,72,1,f +2704,30361,0,1,f +2704,30375,72,3,f +2704,30377,71,1,f +2704,30385,42,1,f +2704,3039pr0005,15,1,f +2704,30414,19,1,f +2704,30526,72,2,f +2704,30608,19,1,f +2704,3062b,57,3,f +2704,3068bpr0246b,15,1,f +2704,3069b,47,4,f +2704,3069b,71,2,f +2704,32001,71,1,f +2704,32009,0,2,f +2704,32013,15,4,f +2704,32064a,15,15,f +2704,32073,71,1,f +2704,32124,15,5,f +2704,32140,27,2,f +2704,32316,0,5,f +2704,32348,72,4,f +2704,32523,15,4,f +2704,3297,0,1,f +2704,3298,0,4,f +2704,3460,72,2,f +2704,3622,4,4,f +2704,3623,0,2,f +2704,3626cpr1344,14,1,f +2704,3626cpr1500,14,1,f +2704,3626cpr1605,14,1,f +2704,3626cpr1638,14,1,f +2704,3700,71,2,f +2704,3703,0,2,f +2704,3705,0,1,f +2704,3709,72,1,f +2704,3710,15,2,f +2704,3738,72,2,f +2704,3795,0,2,f +2704,3829c01,15,1,f +2704,3839b,72,4,f +2704,3894,15,2,f +2704,3941,15,4,f +2704,4032a,0,8,f +2704,4032a,72,1,f +2704,4070,71,6,f +2704,4070,0,8,f +2704,41769,72,1,f +2704,41770,72,1,f +2704,41854,0,4,f +2704,41862,71,1,f +2704,42022,0,2,f +2704,4274,1,10,f +2704,4285b,41,4,f +2704,43093,1,17,f +2704,4460b,0,2,f +2704,4519,71,4,f +2704,4598,15,2,f +2704,4740,0,4,f +2704,4740,41,2,f +2704,47455,0,1,f +2704,47457,27,2,f +2704,47458,0,4,f +2704,48169,72,1,f +2704,48171,72,1,f +2704,4871,72,1,f +2704,48729b,0,2,f +2704,48989,71,4,f +2704,50943,179,1,f +2704,50950,0,8,f +2704,52501,0,1,f +2704,53585,0,2,f +2704,53586,179,2,f +2704,54200,41,3,f +2704,55013,72,2,f +2704,56823c50,15,1,f +2704,59900,182,4,f +2704,60475b,0,8,f +2704,60594,0,1,f +2704,60603pr0004,41,1,f +2704,61409,72,8,f +2704,61409,27,6,f +2704,61409,0,2,f +2704,61409,15,4,f +2704,6141,34,2,f +2704,6141,0,2,f +2704,6141,41,2,f +2704,6141,182,3,f +2704,6141,47,2,f +2704,6141,42,12,f +2704,6141,179,14,f +2704,62113,0,2,f +2704,62576,41,1,f +2704,63864,15,4,f +2704,63868,72,1,f +2704,64225,27,2,f +2704,64798,71,1,f +2704,6536,72,1,f +2704,6553,72,1,f +2704,6558,1,2,f +2704,6628,0,1,f +2704,6632,0,2,f +2704,72326,191,1,f +2704,85545,1,2,f +2704,85984,4,2,f +2704,87580,72,2,f +2704,87994,0,6,f +2704,92220,148,2,f +2704,92280,15,2,f +2704,93273,179,2,f +2704,95199,0,1,f +2704,95326,10,1,f +2704,96874,25,1,t +2704,970c00,15,1,f +2704,970c00pr0722,72,1,f +2704,970c00pr0805,272,1,f +2704,970c00pr0821,0,1,f +2704,973pr2758c01,15,1,f +2704,973pr2909c01,272,1,f +2704,973pr2937c01,27,1,f +2704,973pr2949c01,15,1,f +2704,98138pr0030,179,1,f +2704,98313,0,5,f +2704,99206,71,4,f +2705,3001,4,1,f +2706,298c02,7,4,f +2706,3069bp25,7,1,f +2706,3626apr0001,14,4,f +2706,3838,0,1,f +2706,3838,14,1,f +2706,3838,4,1,f +2706,3838,1,1,f +2706,3842b,0,1,f +2706,3842b,1,1,f +2706,3842b,14,1,f +2706,3842b,4,1,f +2706,3962a,0,1,f +2706,4360,7,1,f +2706,4479,7,1,f +2706,4588,7,1,f +2706,4589,0,2,f +2706,4595,7,1,f +2706,4733,7,2,f +2706,4735,0,4,f +2706,4735,7,1,f +2706,4736,7,1,f +2706,4740,0,1,f +2706,6141,36,2,f +2706,970c00,1,1,f +2706,970c00,0,1,f +2706,970c00,14,1,f +2706,970c00,4,1,f +2706,973p90c02,4,1,f +2706,973p90c03,0,1,f +2706,973p90c04,14,1,f +2706,973pr1594c01,1,1,f +2709,12825,0,3,f +2709,2540,72,2,f +2709,2654,27,1,f +2709,2780,0,1,t +2709,2780,0,4,f +2709,2815,0,2,f +2709,3001,28,1,f +2709,3003,27,1,f +2709,3003,72,1,f +2709,30031,71,1,f +2709,3004,288,2,f +2709,3008,0,2,f +2709,3009,27,2,f +2709,3010,72,1,f +2709,30173b,0,1,f +2709,30173b,297,1,f +2709,3020,27,1,f +2709,3021,85,1,f +2709,3022,72,1,f +2709,30238,0,1,f +2709,3032,72,1,f +2709,3035,72,1,f +2709,30365,72,1,f +2709,30389b,0,1,f +2709,30540,0,2,f +2709,30541,0,2,f +2709,3068b,72,1,f +2709,3069b,27,2,f +2709,32013,0,4,f +2709,32016,71,2,f +2709,32034,0,4,f +2709,32039,71,2,f +2709,32059,72,1,f +2709,32062,4,10,f +2709,32064a,0,2,f +2709,32073,71,2,f +2709,32123b,14,1,t +2709,32123b,14,2,f +2709,32474,4,2,f +2709,3623,72,1,f +2709,3626cpr0745,14,1,f +2709,3626cpr0869,27,1,f +2709,3666,27,2,f +2709,3705,0,1,f +2709,3706,0,1,f +2709,3710,27,4,f +2709,3710,4,1,f +2709,3713,71,2,f +2709,3713,71,1,t +2709,3747b,71,1,f +2709,3749,19,1,f +2709,3794b,4,1,f +2709,3795,19,2,f +2709,3795,72,1,f +2709,3894,0,2,f +2709,3937,0,3,f +2709,4032a,0,1,f +2709,4032a,4,4,f +2709,40378,27,1,f +2709,40379,27,1,f +2709,4081b,27,2,f +2709,4085c,71,2,f +2709,41767,72,1,f +2709,41768,72,1,f +2709,4185,27,2,f +2709,43710,288,1,f +2709,43711,288,1,f +2709,43712,288,1,f +2709,43899,72,1,f +2709,44728,27,4,f +2709,4497,179,1,f +2709,4519,71,2,f +2709,4522,0,1,f +2709,4589,71,4,f +2709,4865a,40,1,f +2709,48729b,0,2,f +2709,48729b,0,1,t +2709,50950,85,2,f +2709,53585,0,3,f +2709,54200,297,1,t +2709,54200,27,1,t +2709,54200,288,1,t +2709,54200,36,1,t +2709,54200,297,2,f +2709,54200,288,6,f +2709,54200,27,5,f +2709,54200,36,2,f +2709,55978,0,1,f +2709,56145,0,1,f +2709,59229,72,1,f +2709,59443,0,4,f +2709,59443,71,2,f +2709,60475b,71,4,f +2709,60477,72,2,f +2709,61184,71,2,f +2709,6134,71,3,f +2709,61409,27,2,f +2709,61409,288,5,f +2709,6141,85,2,t +2709,6141,297,2,f +2709,6141,182,1,t +2709,6141,297,1,t +2709,6141,182,2,f +2709,6141,36,2,f +2709,6141,36,1,t +2709,6141,85,6,f +2709,61678,27,8,f +2709,62361,27,4,f +2709,64567,71,1,f +2709,64728,4,1,f +2709,6536,72,2,f +2709,6541,0,1,f +2709,73983,0,6,f +2709,85984,72,4,f +2709,87087,72,4,f +2709,87747,15,2,f +2709,87747,179,1,f +2709,92947,71,2,f +2709,93273,27,2,f +2709,94448pat0003,52,2,f +2709,9447stk01,9999,1,t +2709,970c00pr0269,27,1,f +2709,970c00pr0276,0,1,f +2709,973pr1894c01,27,1,f +2709,973pr1898c01,0,1,f +2709,98132,179,1,f +2709,98138,36,1,t +2709,98138,36,2,f +2709,98138pr0004,34,1,t +2709,98138pr0004,34,1,f +2709,98153pr0002,27,1,f +2709,98283,28,6,f +2709,98560,28,1,f +2709,99780,72,3,f +2710,4185,71,50,f +2711,2412b,25,4,f +2711,2412b,72,1,f +2711,2419,0,1,f +2711,2436,71,3,f +2711,2780,0,1,t +2711,2780,0,2,f +2711,3003,25,3,f +2711,3005,25,2,f +2711,3008,72,1,f +2711,3009,25,1,f +2711,3010,0,1,f +2711,3020,25,1,f +2711,3022,0,3,f +2711,3023,15,1,f +2711,3023,25,5,f +2711,30236,0,1,f +2711,3024,46,2,f +2711,3034,72,1,f +2711,32009,0,2,f +2711,32056,71,2,f +2711,32062,4,5,f +2711,32064b,72,2,f +2711,32123b,71,1,t +2711,32123b,71,6,f +2711,3298,0,1,f +2711,3666,25,2,f +2711,3702,0,2,f +2711,3705,0,1,f +2711,3707,0,2,f +2711,3709,0,2,f +2711,3710,25,1,f +2711,3737,0,1,f +2711,3749,19,2,f +2711,3795,0,1,f +2711,3795,71,1,f +2711,3832,0,1,f +2711,41677,4,2,f +2711,4175,72,2,f +2711,42022,25,2,f +2711,43093,1,2,f +2711,43722,25,1,f +2711,43723,25,1,f +2711,45590,0,2,f +2711,45677,25,1,f +2711,47715,72,1,f +2711,50950,0,2,f +2711,52031,25,1,f +2711,54200,25,2,f +2711,54200,25,1,t +2711,55982,0,4,f +2711,58090,0,4,f +2711,59443,71,1,f +2711,60478,0,2,f +2711,61678,25,2,f +2711,62361,25,2,f +2711,6636,25,2,f +2712,3626cpr1243,14,1,f +2712,88283,0,1,f +2712,88646,0,1,f +2712,95673,179,2,f +2712,970c00pr0530,308,1,f +2712,973pr2415c01,14,1,f +2713,23306,383,1,f +2713,2488,2,3,f +2713,2540,8,2,f +2713,2555,6,6,f +2713,3001,6,4,f +2713,3003,2,6,f +2713,3004,6,7,f +2713,30093,2,4,f +2713,3010,2,2,f +2713,30218,462,1,f +2713,3023,19,2,f +2713,30237a,8,4,f +2713,30259,6,2,f +2713,3027,1,1,f +2713,30359a,47,2,f +2713,30371,19,1,f +2713,30374,8,4,f +2713,30374,42,1,f +2713,30375,19,2,f +2713,30376,19,2,f +2713,30377,19,4,f +2713,30377,19,1,t +2713,30378,19,2,f +2713,30410,6,1,f +2713,3623,6,2,f +2713,3626bps9,14,1,f +2713,3710,6,2,f +2713,3960,47,2,f +2713,4349,0,4,f +2713,4733,6,2,f +2713,50231,6,1,f +2713,970c00,8,1,f +2713,970c00,6,1,f +2713,973px58c01,19,1,f +2713,973px59c01,19,1,f +2715,2444,0,2,f +2715,2711,7,2,f +2715,2719,7,2,f +2715,2817,0,2,f +2715,3743,7,2,f +2715,4261,7,2,f +2715,4442,7,3,f +2715,6587,8,2,f +2715,6592,7,1,f +2717,2412b,1,1,f +2717,2412b,14,5,f +2717,2420,0,4,f +2717,2420,71,2,f +2717,2432,1,1,f +2717,2446pr23,0,1,f +2717,2456,14,1,f +2717,2540,72,3,f +2717,2555,72,3,f +2717,2607,0,1,f +2717,2609b,0,2,f +2717,2780,0,2,f +2717,2780,0,1,t +2717,30000,72,1,f +2717,3001,71,2,f +2717,3001,14,1,f +2717,3003,14,2,f +2717,30031,71,1,f +2717,3004,14,2,f +2717,3004,70,1,f +2717,30088,72,5,f +2717,30090,41,1,f +2717,30091,72,1,f +2717,30093,34,2,f +2717,30115,2,2,f +2717,30153,45,1,f +2717,30153,34,1,f +2717,30153,46,1,f +2717,30153,36,1,f +2717,30153,41,1,f +2717,30153,47,1,f +2717,30153,33,1,f +2717,3020,0,7,f +2717,3020,14,1,f +2717,3020,70,1,f +2717,3021,14,1,f +2717,3023,0,3,f +2717,3023,47,1,f +2717,3023,14,1,f +2717,3023,1,2,f +2717,30283,14,1,f +2717,3032,0,1,f +2717,3040b,72,2,f +2717,3040b,14,2,f +2717,30414,71,4,f +2717,30414,14,2,f +2717,30553,71,2,f +2717,30554a,0,6,f +2717,3062b,34,1,f +2717,3068b,19,1,f +2717,3069bpr0101,71,1,f +2717,32039,0,1,f +2717,32062,4,1,f +2717,32138,0,1,f +2717,32523,14,2,f +2717,33121,191,1,f +2717,3623,14,2,f +2717,3626bpr0136,14,1,f +2717,3626bpr0190,15,1,f +2717,3626bpr0325,14,1,f +2717,3660,14,3,f +2717,3673,71,1,t +2717,3673,71,2,f +2717,3700,72,2,f +2717,3701,14,2,f +2717,3710,0,3,f +2717,3747b,14,1,f +2717,3749,19,1,f +2717,3794a,4,1,f +2717,3794a,70,2,f +2717,3795,70,1,f +2717,3832,14,1,f +2717,3832,0,1,f +2717,3865,19,1,f +2717,4070,14,2,f +2717,41334,0,1,f +2717,41531,14,2,f +2717,41532,0,2,f +2717,4162,71,2,f +2717,41747,14,1,f +2717,41748,14,1,f +2717,41764,14,1,f +2717,41765,14,1,f +2717,43093,1,1,f +2717,4345b,0,2,f +2717,4346,47,2,f +2717,43722,14,1,f +2717,43722,0,1,f +2717,43723,0,1,f +2717,43723,14,1,f +2717,44568,71,1,f +2717,44572,14,2,f +2717,4460b,72,1,f +2717,44661pr0001,14,1,f +2717,44675,14,1,f +2717,44676,0,3,f +2717,4477,70,4,f +2717,44822,72,2,f +2717,4589,33,2,f +2717,4623,0,4,f +2717,4738a,70,1,f +2717,4739a,70,1,f +2717,4790,70,1,f +2717,47905,0,4,f +2717,48002,0,1,f +2717,4865a,71,3,f +2717,48729a,72,6,f +2717,50747,40,1,f +2717,50950,14,2,f +2717,54200,72,4,f +2717,54200,14,2,f +2717,54200,47,2,f +2717,57467,383,2,f +2717,57503,334,1,f +2717,57504,334,1,f +2717,57505,334,1,f +2717,57506,334,1,f +2717,59275,0,2,f +2717,6019,4,1,f +2717,6019,0,4,f +2717,6041,0,2,f +2717,6060,70,9,f +2717,6141,36,2,f +2717,6141,34,1,t +2717,6141,34,2,f +2717,6141,36,1,t +2717,6256,82,1,f +2717,6260,15,1,f +2717,6265,15,2,f +2717,6266,15,2,f +2717,64567,71,2,f +2717,6541,14,2,f +2717,71015,334,1,f +2717,73092,0,3,f +2717,73590c02a,0,2,f +2717,970c00,0,2,f +2717,973pr1300c01,0,2,f +2718,30000,8,1,f +2718,3003,4,3,f +2718,3004,14,3,f +2718,3004,47,2,f +2718,3005pe1,14,2,f +2718,3021,7,1,f +2718,3034,1,5,f +2718,3039,47,1,f +2718,3039,7,2,f +2718,3298,4,1,f +2718,3660,7,2,f +2718,3660,14,1,f +2718,3660,4,2,f +2718,3795,7,1,f +2718,42610,7,2,f +2718,51011,0,2,f +2718,6141,34,1,f +2718,6141,36,2,t +2718,6141,36,1,f +2718,6141,34,2,t +2719,2357,1,2,f +2719,2412b,57,2,f +2719,2412b,379,6,f +2719,2420,1,2,f +2719,2420,8,4,f +2719,2458,7,2,f +2719,2540,1,1,f +2719,2877,8,4,f +2719,3001,7,2,f +2719,3002,1,1,f +2719,3004,1,1,f +2719,3004,7,4,f +2719,30183,7,1,f +2719,3020,8,2,f +2719,3021,1,4,f +2719,3022,8,3,f +2719,3022,7,4,f +2719,3023,8,2,f +2719,3023,1,2,f +2719,3023,0,8,f +2719,30303,8,2,f +2719,3031,7,2,f +2719,30359a,8,3,f +2719,30364,8,6,f +2719,30365,7,8,f +2719,3037,7,1,f +2719,30375,1,1,f +2719,30377,3,2,f +2719,30377,3,1,t +2719,30383,8,4,f +2719,3039,7,4,f +2719,3039,1,5,f +2719,30407,7,1,f +2719,3049b,379,5,f +2719,30526,8,3,f +2719,30530,1,1,f +2719,30535,8,2,f +2719,30536,40,1,f +2719,30592,1,1,f +2719,3062b,1,1,t +2719,3062b,1,6,f +2719,3068b,8,4,f +2719,32000,0,4,f +2719,32138,0,1,t +2719,3298px5,379,2,f +2719,33089,8,1,f +2719,3460,8,1,f +2719,3623,1,2,f +2719,3673,7,2,f +2719,3700,7,4,f +2719,3710,7,2,f +2719,3710,8,3,f +2719,3738,1,1,f +2719,3747a,7,2,f +2719,3747a,8,2,f +2719,3795,8,1,f +2719,3839b,1,4,f +2719,3933,379,1,f +2719,3934,379,1,f +2719,3937,8,3,f +2719,3938,7,3,f +2719,3941,1,1,f +2719,3956,7,1,f +2719,4032a,7,1,f +2719,4070,7,2,f +2719,4150ps1,7,2,f +2719,4150px7,8,1,f +2719,4589,57,2,f +2719,4740,7,2,f +2719,4859,1,2,f +2719,6041,1,2,f +2719,6141,57,6,f +2719,6141,57,1,t +2719,6153a,379,1,f +2719,6232,7,2,f +2719,6232,8,2,f +2719,73983,1,4,f +2719,758c03,7,2,f +2719,76385,8,1,f +2719,x117px3,3,1,f +2722,3001,2,1,f +2722,3022,2,1,f +2722,3039,2,2,f +2722,3623,2,1,f +2722,3660,2,2,f +2722,6141,14,1,f +2724,2041,15,1,f +2724,3030,1,1,f +2724,4781,7,1,f +2724,fab9b,9999,1,f +2724,x222,14,1,f +2726,2412b,7,2,f +2726,2512,7,1,f +2726,2540,0,2,f +2726,3004,0,4,f +2726,3005,8,2,f +2726,30194,8,1,f +2726,3022,14,1,f +2726,30248,7,1,f +2726,30293,6,1,f +2726,30294,6,1,f +2726,30303,8,1,f +2726,30304,8,1,f +2726,30385,42,1,f +2726,3040b,8,2,f +2726,3068bpx1,0,1,f +2726,3069bpr0090,8,1,f +2726,3298px1,3,1,f +2726,3475b,8,2,f +2726,3626bpx15,14,1,f +2726,3795,14,1,f +2726,3833,0,1,f +2726,4085c,7,2,f +2726,4735,7,2,f +2726,4740,8,2,f +2726,6141,42,2,f +2726,970c00,1,1,f +2726,973px25c01,4,1,f +2727,2431,1,2,f +2727,2444,1,4,f +2727,2588,21,1,f +2727,2654,0,2,f +2727,3001,4,2,f +2727,3004,4,4,f +2727,3023,1,6,f +2727,3040b,4,4,f +2727,3068b,1,1,f +2727,3068b,15,1,f +2727,3068b,14,1,f +2727,3068b,4,1,f +2727,3069b,1,1,f +2727,3069b,15,1,f +2727,3069b,14,1,f +2727,3069b,4,1,f +2727,32017,7,4,f +2727,32028,7,4,f +2727,32064b,2,4,f +2727,32124,1,2,f +2727,32125,1,2,f +2727,3700,4,4,f +2727,3710,1,2,f +2727,3743,7,1,f +2727,3794a,1,4,f +2727,3857,2,1,f +2727,3941,4,2,f +2727,3956,1,2,f +2727,4032a,0,2,f +2727,4032a,15,2,f +2727,4444p08,0,2,f +2727,6536,7,2,f +2727,6588,14,1,f +2727,85543,15,2,f +2727,85545,1,2,f +2728,3626bpr0679,14,1,f +2728,6124,42,1,f +2728,6124,42,2,t +2728,6131pr0004,1,1,f +2728,6132,15,1,f +2728,970c00pr0156,1,1,f +2728,973c07,1,1,f +2729,89668,72,1,f +2730,2357,7,4,f +2730,2420,7,1,f +2730,2420,19,4,f +2730,2540,8,2,f +2730,2555,8,2,f +2730,2555,15,1,f +2730,2654,19,4,f +2730,2877,15,1,f +2730,298c02,15,1,f +2730,298c02,15,1,t +2730,3002,7,1,f +2730,3004,7,4,f +2730,3020,8,1,f +2730,3020,15,1,f +2730,3022,7,4,f +2730,3022,19,4,f +2730,3023,19,4,f +2730,3023,15,2,f +2730,3031,19,1,f +2730,30374,15,1,f +2730,30374,8,1,f +2730,30377,8,2,f +2730,30377,8,1,t +2730,3039,7,1,f +2730,3046a,7,2,f +2730,30505,19,8,f +2730,30553,19,4,f +2730,3062b,15,1,f +2730,32001,7,2,f +2730,32016,47,1,f +2730,32123b,19,4,f +2730,32123b,19,1,t +2730,3298,7,1,f +2730,3641,0,4,f +2730,3660,8,2,f +2730,3700,7,1,f +2730,3706,19,4,f +2730,3747a,8,2,f +2730,3795,15,1,f +2730,3941,0,1,f +2730,3941,15,2,f +2730,3941,47,2,f +2730,3942c,15,1,f +2730,3942c,7,6,f +2730,3943b,8,1,f +2730,3943b,15,2,f +2730,3957a,15,2,f +2730,3957a,47,1,f +2730,4032a,19,4,f +2730,4032a,7,1,f +2730,4032a,8,1,f +2730,4032a,0,1,f +2730,4079,15,2,f +2730,4081b,0,1,f +2730,4081b,7,1,f +2730,4085c,0,1,f +2730,41669,0,4,f +2730,43093,1,5,f +2730,44567a,19,4,f +2730,4589,15,1,f +2730,4623,15,1,f +2730,4624,7,4,f +2730,4740,57,8,f +2730,4740,383,3,f +2730,6016,8,1,f +2730,6141,47,5,f +2730,6141,47,1,t +2730,6157,15,2,f +2730,6177,0,2,f +2730,6222,0,2,f +2730,6222,15,4,f +2730,6259,15,10,f +2730,63965,15,2,f +2730,6536,19,4,f +2730,7468bk01,9999,1,t +2730,7468stk01,9999,1,t +2730,7468stk02,9999,1,t +2733,3004,7,1,f +2733,3005,4,2,f +2733,3008,4,1,f +2733,3008,14,2,f +2733,3009,4,3,f +2733,3010,14,2,f +2733,3020,4,2,f +2733,3021,4,4,f +2733,3023,7,2,f +2733,3023,4,2,f +2733,3023,14,4,f +2733,3033,4,1,f +2733,3034,14,1,f +2733,3040b,14,4,f +2733,3068b,7,1,f +2733,3070b,0,2,f +2733,3070b,0,1,t +2733,3460,0,2,f +2733,3482,7,4,f +2733,3634,0,4,f +2733,3647,7,2,f +2733,3651,7,12,f +2733,3666,0,1,f +2733,3666,4,2,f +2733,3666,14,1,f +2733,3673,7,14,f +2733,3673,7,1,t +2733,3700,4,4,f +2733,3701,4,2,f +2733,3702,4,4,f +2733,3704,0,2,f +2733,3705,0,3,f +2733,3706,0,6,f +2733,3707,0,2,f +2733,3708,0,2,f +2733,3710,0,4,f +2733,3710,4,2,f +2733,3710,7,6,f +2733,3713,7,15,f +2733,3737,0,2,f +2733,3738,4,1,f +2733,3743,7,1,f +2733,3749,7,4,f +2733,3795,4,3,f +2733,3795,14,1,f +2733,3832,4,1,f +2733,3894,4,5,f +2733,3895,4,2,f +2733,4019,7,2,f +2733,4185,7,1,f +2733,4261,7,2,f +2733,4262,0,3,f +2733,4263,0,3,f +2733,4273b,7,8,f +2733,4274,7,4,f +2733,73129,7,2,f +2733,9244,7,1,f +2737,3062b,322,2,f +2737,3062b,27,2,f +2740,10190,4,4,f +2740,10247,72,2,f +2740,10928,72,1,f +2740,11090,72,1,f +2740,11295,72,1,f +2740,13564,15,1,t +2740,13564,15,2,f +2740,14518,72,1,f +2740,15068,14,1,f +2740,15462,28,2,f +2740,15535,72,1,f +2740,18654,72,1,t +2740,18654,72,2,f +2740,2412b,0,2,f +2740,2412b,14,2,f +2740,2417,320,1,f +2740,2431,14,2,f +2740,2434,0,1,f +2740,2446,4,2,f +2740,2456,0,1,f +2740,2780,0,7,f +2740,2780,0,2,t +2740,298c02,71,1,t +2740,298c02,71,2,f +2740,298c02,14,2,f +2740,298c02,14,1,t +2740,30000,72,3,f +2740,3001,72,1,f +2740,3003,72,1,f +2740,3005,0,1,f +2740,30089,0,1,f +2740,3009,14,4,f +2740,30090,41,2,f +2740,30090,41,1,t +2740,30091,72,2,f +2740,30093,10,2,f +2740,30153,41,1,f +2740,30153,36,1,f +2740,3020,1,2,f +2740,3021,71,2,f +2740,3022,0,1,f +2740,3023,4,1,f +2740,3024,36,1,f +2740,3024,36,1,t +2740,3024,34,1,f +2740,3024,34,1,t +2740,3032,15,1,f +2740,3034,28,1,f +2740,3034,0,1,f +2740,30361c,14,2,f +2740,30363,72,3,f +2740,30367c,14,2,f +2740,30386,0,2,f +2740,3040b,71,2,f +2740,30552,72,2,f +2740,30553,0,2,f +2740,3069b,82,2,f +2740,3069b,14,2,f +2740,32013,15,1,f +2740,32059,0,1,f +2740,32062,4,1,f +2740,33121,191,1,f +2740,33183,10,1,t +2740,33183,10,1,f +2740,3460,72,4,f +2740,3460,1,2,f +2740,3626bpr0389,14,1,f +2740,3626cpr0499,14,1,f +2740,3626cpr0893,14,1,f +2740,3633,0,1,f +2740,3666,0,2,f +2740,3710,1,2,f +2740,3710,14,1,f +2740,3747a,0,1,f +2740,3795,72,1,f +2740,3795,14,1,f +2740,3943b,72,4,f +2740,3958,28,1,f +2740,4032a,14,1,f +2740,40379,15,4,f +2740,4081b,0,2,f +2740,41334,320,1,f +2740,41531,14,2,f +2740,4274,1,2,t +2740,4274,1,6,f +2740,43093,1,2,f +2740,4345b,71,2,f +2740,4346,71,2,f +2740,44568,71,1,f +2740,44661,14,2,f +2740,4595,0,1,f +2740,46667,0,2,f +2740,4738a,70,1,f +2740,4739a,70,1,f +2740,4740,41,1,f +2740,47456,72,1,f +2740,47457,71,2,f +2740,48336,0,2,f +2740,50745,72,2,f +2740,50747,47,1,f +2740,51739,0,1,f +2740,55981,14,2,f +2740,57909b,72,2,f +2740,58176,179,3,f +2740,60219,72,1,f +2740,60474,71,2,f +2740,60476,71,2,f +2740,6083,72,1,f +2740,60897,72,2,f +2740,6091,4,2,f +2740,6106,28,1,f +2740,6140,0,1,f +2740,61409,72,4,f +2740,6141,36,1,f +2740,6141,36,1,t +2740,6183,14,4,f +2740,6222,72,4,f +2740,62462,0,4,f +2740,6259,72,4,f +2740,6541,72,1,f +2740,6558,1,2,f +2740,73590c03a,0,2,f +2740,75937,0,5,f +2740,75c11,0,4,f +2740,75c11,0,1,t +2740,85984,4,1,f +2740,87083,72,2,f +2740,87087,71,1,f +2740,87552,14,2,f +2740,87580,0,3,f +2740,87587pr0001,72,1,f +2740,87745,15,3,f +2740,92585,4,1,f +2740,92946,1,2,f +2740,93571,0,2,f +2740,93606,14,1,f +2740,970c00,272,1,f +2740,970c00pr0827,0,2,f +2740,973pr2955c01,0,2,f +2740,973pr3010c01,4,1,f +2740,98138,47,3,t +2740,98138,297,5,f +2740,98138,297,1,t +2740,98138,47,17,f +2740,98284,0,1,f +2740,98313,0,8,f +2740,98313,179,3,f +2740,98560,15,1,f +2740,99781,71,2,f +2743,113578,9999,1,f +2743,3647,7,2,f +2743,3648a,7,1,f +2743,3650a,7,1,f +2743,3700,14,4,f +2743,3701,14,2,f +2743,3705,0,2,f +2743,3709,14,2,f +2743,3713,7,2,f +2743,3736,7,1,f +2743,3738,14,2,f +2743,4185,7,1,f +2743,4350c02,7,1,f +2743,6216b,7,1,f +2743,71509,0,1,f +2743,766c28,7,1,f +2743,766c96,7,1,f +2743,rb00168,0,1,f +2745,2877,14,12,f +2745,3004,0,8,f +2745,3004,4,8,f +2745,3004,73,8,f +2745,3004,326,8,f +2745,3004,19,8,f +2745,3005,0,6,f +2745,3005,326,8,f +2745,3005,19,8,f +2745,3005,73,8,f +2745,3005,4,6,f +2745,3009,19,4,f +2745,3009,326,3,f +2745,3009,0,2,f +2745,3009,4,2,f +2745,3010,0,4,f +2745,3010,326,4,f +2745,3010,19,4,f +2745,3010,4,4,f +2745,3010,73,6,f +2745,30136,70,12,f +2745,3040b,326,4,f +2745,3040b,0,8,f +2745,3040b,73,4,f +2745,3040b,19,6,f +2745,3040b,4,8,f +2745,3062b,70,6,f +2745,3069b,71,2,f +2745,33243,0,4,f +2745,3626cpr1537,14,1,f +2745,3665,73,4,f +2745,3665,0,6,f +2745,3665,4,8,f +2745,3665,19,6,f +2745,4216,379,10,f +2745,60477,0,4,f +2745,60477,4,4,f +2745,60481,0,2,f +2745,60481,4,4,f +2745,60481,326,4,f +2745,60592,15,4,f +2745,60593,15,2,f +2745,60594,15,2,f +2745,60596,15,1,f +2745,60623,0,1,f +2745,6178pr0001,71,1,f +2745,62810,308,1,f +2745,63864,71,2,f +2745,970c00,0,1,f +2745,973pr2812c01a,71,1,f +2745,98283,71,12,f +2748,2446,15,1,f +2748,2447,40,1,t +2748,2447,40,1,f +2748,298c02,14,1,f +2748,298c02,14,1,t +2748,3004,2,3,f +2748,3010,2,5,f +2748,3031,72,1,f +2748,30350b,72,1,f +2748,3062b,14,1,f +2748,3062b,70,3,f +2748,3626cpr0933,14,1,f +2748,4286,2,2,f +2748,4599b,14,1,t +2748,4599b,14,1,f +2748,4697b,71,2,f +2748,4697b,71,1,t +2748,48336,71,1,f +2748,4865b,2,1,f +2748,50859b,0,1,f +2748,50861,0,2,f +2748,50861,0,1,t +2748,50862,71,2,f +2748,54200,33,3,f +2748,54200,46,1,t +2748,54200,33,1,t +2748,54200,46,1,f +2748,60000stk01,9999,1,t +2748,6126b,182,1,f +2748,85959pat0001,36,1,f +2748,89536,4,1,f +2748,970c00pr0408,0,1,f +2748,973pr2189c01,0,1,f +2749,3176,1,1,f +2749,3710,15,4,f +2749,3829c01,15,1,f +2749,4590,72,1,f +2749,58176,33,2,f +2749,92946,1,2,f +2749,99774,72,2,f +2750,2736,71,1,f +2750,3021,4,1,f +2750,3040b,0,4,f +2750,32034,0,1,f +2750,32530,4,2,f +2750,32556,19,1,f +2750,3623,2,2,f +2750,4529,0,1,f +2750,4589,36,1,f +2751,2412b,0,1,f +2751,2432,6,2,f +2751,2433,0,2,f +2751,2436,6,1,f +2751,2524,8,1,f +2751,2540,8,1,f +2751,2555,8,1,f +2751,2555,0,1,f +2751,2614,0,2,f +2751,3002,7,1,f +2751,3003,7,1,f +2751,30031,0,1,f +2751,3004,8,1,f +2751,30136,6,2,f +2751,30176,2,2,f +2751,3021,6,3,f +2751,3022,6,2,f +2751,3023,7,1,f +2751,3023,6,2,f +2751,30259,6,2,f +2751,30275,6,1,f +2751,3034,8,3,f +2751,30359b,47,1,f +2751,30359b,8,2,f +2751,30369,15,1,f +2751,3039,6,2,f +2751,30408px2,15,1,f +2751,3040b,6,2,f +2751,3062b,7,2,f +2751,3062b,6,8,f +2751,32016,6,1,f +2751,32062,0,1,f +2751,32064b,7,2,f +2751,32123b,7,2,f +2751,32123b,7,1,t +2751,32174,0,1,f +2751,32474,7,1,f +2751,32530,8,1,f +2751,3626b,14,1,f +2751,3626bpse,14,1,f +2751,3700,6,2,f +2751,3706,0,1,f +2751,3710,0,1,f +2751,3794a,0,2,f +2751,3795,8,2,f +2751,3839b,6,2,f +2751,3849,0,2,f +2751,3941,7,2,f +2751,3960,47,1,f +2751,4032a,6,1,f +2751,4085c,8,2,f +2751,41747,6,1,f +2751,41748,6,1,f +2751,41862,6,1,f +2751,41879a,6,2,f +2751,41882,6,1,f +2751,41882,19,1,f +2751,4274,7,1,t +2751,4274,7,2,f +2751,4349,0,2,f +2751,4499,0,1,f +2751,4733,7,2,f +2751,4735,0,2,f +2751,54255pb01,47,2,f +2751,6019,0,6,f +2751,6111,6,2,f +2751,6120,8,2,f +2751,6141,7,1,f +2751,6141,7,1,t +2751,6141,57,1,t +2751,6141,57,1,f +2751,6141,8,1,t +2751,6141,8,2,f +2751,6232,8,1,f +2751,970x026,15,2,f +2751,973c13,6,2,f +2751,973pr0520c01,15,1,f +2751,973psec01,15,1,f +2752,11208,0,4,f +2752,11209,0,4,f +2752,11477,2,2,f +2752,14860,9999,1,t +2752,15207,15,2,f +2752,2412b,0,3,f +2752,2412b,4,2,f +2752,2446,4,1,f +2752,2447,40,1,f +2752,2447,40,1,t +2752,3001,15,1,f +2752,3003,0,1,f +2752,3004,14,1,f +2752,3020,2,3,f +2752,3020,0,1,f +2752,3021,14,2,f +2752,3022,4,1,f +2752,3024,15,2,f +2752,3024,2,2,f +2752,3024,2,1,t +2752,3024,15,1,t +2752,3031,0,1,f +2752,30377,0,2,f +2752,30377,0,1,t +2752,30414,72,1,f +2752,32028,15,4,f +2752,3626cpr0499,14,1,f +2752,3666,4,1,f +2752,3666,15,1,f +2752,3710,0,4,f +2752,3829c01,4,1,f +2752,42022,2,2,f +2752,43722,4,1,f +2752,43723,4,1,f +2752,4488,71,4,f +2752,45677,15,1,f +2752,48336,0,2,f +2752,50745,15,4,f +2752,52036,72,1,f +2752,54200,46,2,f +2752,54200,4,4,f +2752,54200,4,1,t +2752,54200,46,1,t +2752,54200,15,1,t +2752,54200,47,1,t +2752,54200,47,2,f +2752,54200,15,2,f +2752,57783,40,1,f +2752,60478,15,2,f +2752,6141,14,1,t +2752,6141,14,6,f +2752,6636,0,1,f +2752,85984,0,1,f +2752,89801,71,1,f +2752,93273,4,4,f +2752,93606,0,1,f +2752,93606,15,1,f +2752,970x021,2,1,f +2752,973pr0656c01,15,1,f +2752,98138,36,4,f +2752,98138,36,1,t +2754,2437,33,1,f +2754,2486,15,1,f +2754,3001,4,1,f +2754,3002,14,1,f +2754,3010pb016,0,1,f +2754,30150,15,2,f +2754,30180,15,1,f +2754,30285,15,4,f +2754,30285,7,6,f +2754,3039,1,2,f +2754,3039,15,1,f +2754,30391,0,6,f +2754,30622pb01,2,1,f +2754,30625,0,1,f +2754,30626pb02,2,1,f +2754,30632,0,1,f +2754,30637,15,1,f +2754,30639pb01,33,1,f +2754,30640,15,1,f +2754,30640,7,1,f +2754,30642,8,1,f +2754,30643,0,1,f +2754,30645,8,1,f +2754,30646a,0,2,f +2754,30647,2,2,f +2754,30647pb01,15,1,f +2754,30647pb02,15,1,f +2754,30648,0,4,f +2754,30649,33,1,f +2754,30663,0,2,f +2754,3069bp03,7,2,f +2754,3069bpr0100,2,4,f +2754,3297px16,0,2,f +2754,3298,2,1,f +2754,40942,8,1,f +2754,40996,57,1,f +2754,4202,1,1,f +2754,4349,7,2,f +2754,js011,9999,1,f +2754,js012,9999,1,f +2754,js013,9999,1,f +2757,2412a,0,2,f +2757,2446,14,1,f +2757,2447,33,1,f +2757,2450,15,2,f +2757,2452,0,2,f +2757,298c02,15,1,t +2757,298c02,15,2,f +2757,3020,0,1,f +2757,3024,33,2,f +2757,3070bpc2,15,2,f +2757,3070bpc2,15,1,t +2757,3626apr0001,14,1,f +2757,3838,14,1,f +2757,3839b,0,1,f +2757,3937,0,1,f +2757,3938,15,1,f +2757,3962b,0,1,f +2757,4276b,15,2,f +2757,4589,36,2,f +2757,4590,0,2,f +2757,4598,15,1,f +2757,970c00,14,1,f +2757,973p6ec01,15,1,f +2759,2343,15,2,f +2759,2412a,15,2,f +2759,2446,0,1,f +2759,2447,33,1,f +2759,298c02,15,2,f +2759,3021,0,1,f +2759,3024,33,2,f +2759,3034,15,1,f +2759,3298p90,15,1,f +2759,3475a,0,2,f +2759,3626apr0001,14,1,f +2759,3838,0,1,f +2759,3937,15,3,f +2759,3938,15,1,f +2759,3938,0,2,f +2759,3957a,15,2,f +2759,4081b,15,2,f +2759,4596,15,1,f +2759,4740,36,2,f +2759,4859,15,1,f +2759,4864a,15,2,f +2759,6141,33,2,f +2759,6141,0,2,f +2759,6141,36,2,f +2759,970c00,0,1,f +2759,973p6bc02,15,1,f +2760,2446,4,1,f +2760,2489,6,1,f +2760,2530,8,1,f +2760,2547,15,1,f +2760,2548,15,1,f +2760,30088,14,1,f +2760,30090,33,1,f +2760,30091,7,1,f +2760,30092,14,1,f +2760,3626bpx26,14,1,f +2760,4032a,6,1,f +2760,59275,0,2,f +2760,6141,36,1,f +2760,6141,34,1,t +2760,6141,34,1,f +2760,6141,36,1,t +2760,970x026,4,1,f +2760,973px51c01,4,1,f +2762,11153,72,4,f +2762,11291,2,1,f +2762,11303,272,2,f +2762,11477,15,4,f +2762,12825,71,2,f +2762,13731,15,2,f +2762,14045,0,1,f +2762,14210,0,1,f +2762,14520,72,2,f +2762,15207,72,2,f +2762,15533,84,10,f +2762,2343,297,1,f +2762,2412b,0,9,f +2762,2431,70,2,f +2762,2431,2,1,f +2762,2432,72,1,f +2762,2434,0,1,f +2762,2437,40,1,f +2762,2446,15,1,f +2762,2447,40,1,f +2762,2450,1,2,f +2762,2456,71,2,f +2762,2460,0,1,f +2762,2465,15,3,f +2762,2465,71,1,f +2762,2569,0,1,f +2762,2654,71,2,f +2762,2877,71,2,f +2762,2877,0,2,f +2762,298c02,14,2,f +2762,3001,72,2,f +2762,3002,72,8,f +2762,3004,2,3,f +2762,30044,70,2,f +2762,30045,0,2,f +2762,3005,71,11,f +2762,3005,2,2,f +2762,3005,15,4,f +2762,3007,71,1,f +2762,3008,72,2,f +2762,30089,0,1,f +2762,3009,15,7,f +2762,3009,1,2,f +2762,3010,2,1,f +2762,30137,71,4,f +2762,30139,70,1,f +2762,30150,70,1,f +2762,30153,46,1,f +2762,30153,41,1,f +2762,30165,72,2,f +2762,3020,14,3,f +2762,3021,1,1,f +2762,3021,2,2,f +2762,3021,71,2,f +2762,3022,4,2,f +2762,3022,72,2,f +2762,3022,2,1,f +2762,3022,0,2,f +2762,3023,36,3,f +2762,3023,1,11,f +2762,3023,70,2,f +2762,3024,36,2,f +2762,3027,72,1,f +2762,3028,72,2,f +2762,3031,15,1,f +2762,30332,0,1,f +2762,3034,1,2,f +2762,3034,72,3,f +2762,3035,1,4,f +2762,3035,72,1,f +2762,30350b,0,3,f +2762,30357,0,1,f +2762,3036,1,1,f +2762,30367b,0,1,f +2762,3037,72,8,f +2762,30374,14,1,f +2762,3040b,15,3,f +2762,30414,72,8,f +2762,30503,1,2,f +2762,30586,15,2,f +2762,30586,71,2,f +2762,30592,72,1,f +2762,3062b,72,4,f +2762,3068b,2,3,f +2762,3069b,15,1,f +2762,3069b,82,3,f +2762,3069bpr0100,2,3,f +2762,32124,0,14,f +2762,3245c,15,2,f +2762,3298,72,4,f +2762,3308,15,4,f +2762,33243,0,2,f +2762,3460,70,1,f +2762,3460,0,2,f +2762,3464,15,1,f +2762,3622,1,4,f +2762,3622,15,1,f +2762,3626cpr0754,14,1,f +2762,3626cpr0889,14,1,f +2762,3626cpr1145,14,1,f +2762,3626cpr1147,14,1,f +2762,3626cpr1664,14,1,f +2762,3660,72,6,f +2762,3665,72,2,f +2762,3665,15,8,f +2762,3666,1,7,f +2762,3666,15,5,f +2762,3679,71,1,f +2762,3680,0,1,f +2762,3710,15,1,f +2762,3710,2,1,f +2762,3710,72,2,f +2762,3747b,72,4,f +2762,3794b,14,4,f +2762,3795,0,9,f +2762,3821,2,1,f +2762,3822,2,1,f +2762,3829c01,14,1,f +2762,3832,0,1,f +2762,3937,72,2,f +2762,3958,0,1,f +2762,3958,72,1,f +2762,4070,15,1,f +2762,41334,0,1,f +2762,41334,72,1,f +2762,41539,71,1,f +2762,4162,71,3,f +2762,42022,72,6,f +2762,42022,0,2,f +2762,4282,15,2,f +2762,4286,1,4,f +2762,43093,1,1,f +2762,4345b,71,1,f +2762,4346,71,1,f +2762,43710,72,2,f +2762,43711,72,2,f +2762,43712,72,2,f +2762,44126,72,2,f +2762,44675,0,4,f +2762,44728,15,1,f +2762,4477,1,2,f +2762,4477,71,1,f +2762,4515,72,1,f +2762,4515,0,1,f +2762,45677,72,1,f +2762,4599b,0,1,f +2762,4624,71,6,f +2762,4740,33,1,f +2762,47905,71,2,f +2762,48336,71,2,f +2762,4864b,41,2,f +2762,4865b,40,1,f +2762,4870,71,3,f +2762,50305,15,1,f +2762,50745,0,4,f +2762,50745,72,2,f +2762,50943,72,1,f +2762,50950,1,6,f +2762,52036,72,1,f +2762,52501,72,2,f +2762,54200,15,1,t +2762,54200,15,1,f +2762,59895,0,7,f +2762,6014b,71,4,f +2762,60478,14,2,f +2762,60479,15,2,f +2762,60596,72,1,f +2762,60601,41,4,f +2762,60623,2,1,f +2762,6111,71,2,f +2762,6134,0,2,f +2762,61345,15,2,f +2762,6141,47,2,f +2762,6141,34,1,f +2762,6141,19,5,f +2762,6141,36,2,f +2762,61482,71,2,f +2762,6157,0,2,f +2762,6182,71,2,f +2762,6215,15,3,f +2762,6233,0,1,f +2762,62462,0,1,f +2762,62576,41,1,f +2762,62743,0,6,f +2762,64566,0,1,f +2762,6636,15,2,f +2762,85984,71,4,f +2762,85984,72,2,f +2762,87079,71,3,f +2762,87087,484,6,f +2762,87580,71,3,f +2762,87614,15,1,f +2762,87697,0,4,f +2762,88293,0,1,f +2762,91988,0,2,f +2762,92099,72,1,f +2762,92585,4,1,f +2762,92590,28,1,f +2762,92593,72,2,f +2762,92593,15,2,f +2762,92947,0,2,f +2762,96874,25,1,t +2762,970c00,272,3,f +2762,970c00,72,2,f +2762,973pr2501c01,1,2,f +2762,973pr2502c01,15,1,f +2762,973pr2503c01,0,1,f +2762,973pr2504c01,272,1,f +2762,98138,33,2,f +2762,98283,84,18,f +2762,98288,4,1,f +2762,99780,0,4,f +2763,15367,0,2,f +2763,19049,179,1,f +2763,19050,57,1,f +2763,19077pat0001,297,1,f +2763,20473,52,1,f +2763,20474,179,4,f +2763,20475,148,4,f +2763,20478,179,1,f +2763,20479,179,2,f +2763,2654,4,1,f +2763,2780,0,4,f +2763,32015,0,2,f +2763,32138,0,1,f +2763,32140,0,2,f +2763,32184,0,2,f +2763,32523,71,4,f +2763,32556,19,2,f +2763,3705,0,5,f +2763,3957a,71,1,f +2763,4519,71,2,f +2763,59443,72,2,f +2763,64276,0,2,f +2763,6587,28,2,f +2763,74261,72,2,f +2763,78c03,179,1,f +2763,87747,85,2,f +2763,87846,85,2,f +2763,90609,0,2,f +2763,90617,52,2,f +2763,90626,179,1,f +2763,90640,148,2,f +2763,90641,57,4,f +2763,93575,179,2,f +2763,98577,72,2,f +2763,98603s02pr0014,148,1,f +2764,11100,297,2,f +2764,11816pr0028,78,1,f +2764,14769,30,1,f +2764,15279,10,2,f +2764,19206pr0002,158,1,f +2764,20379pr0004,27,1,f +2764,30162,297,1,f +2764,3068bpr0291,19,1,f +2764,33183,10,1,t +2764,33183,10,2,f +2764,4081b,15,2,f +2764,52501,27,2,f +2764,60470b,15,1,f +2764,64647,15,2,f +2764,64647,15,1,t +2764,85984,30,2,f +2764,92456pr0092c01,78,1,f +2764,93095,15,1,f +2764,98138pr0050,19,1,t +2764,98138pr0050,19,1,f +2765,11211,15,8,f +2765,3005,288,8,f +2765,3020,288,4,f +2765,3022,15,3,f +2765,3023,320,4,f +2765,3070b,320,4,f +2765,3070b,15,1,t +2765,3070b,15,4,f +2765,3070b,320,1,t +2765,3710,288,4,f +2765,54200,297,1,t +2765,54200,297,4,f +2765,63864,15,4,f +2765,63864,288,4,f +2765,63864,320,4,f +2766,298c03,0,1,f +2766,3005,15,2,f +2766,3021,0,3,f +2766,3023,15,2,f +2766,3023,1,2,f +2766,3023,0,2,f +2766,3024,46,2,f +2766,3031,0,1,f +2766,3034,0,1,f +2766,3068bp05,15,1,f +2766,3068bp06,15,1,f +2766,3460,15,2,f +2766,3623,0,4,f +2766,3624,15,1,f +2766,3626bpr0001,14,1,f +2766,3666,0,2,f +2766,3710,0,3,f +2766,3788,0,1,f +2766,3795,0,1,f +2766,3821,15,1,f +2766,3822,15,1,f +2766,3823,41,1,f +2766,3829c01,4,1,f +2766,3832,0,1,f +2766,3853,0,1,f +2766,3856,15,2,f +2766,3900,4,1,f +2766,3962a,0,1,f +2766,4070,15,2,f +2766,4079,4,1,f +2766,4083,15,2,f +2766,4084,0,4,f +2766,4085b,0,6,f +2766,4175,1,1,f +2766,4211,0,1,f +2766,4213,0,1,f +2766,4214,0,1,f +2766,4349,1,1,f +2766,4600,0,2,f +2766,4624,15,4,f +2766,4755,15,1,f +2766,4757,15,1,f +2766,4758,15,1,f +2766,4760c01,15,1,f +2766,4771,15,1,f +2766,4773,33,1,t +2766,4773,33,2,f +2766,4773,36,1,t +2766,4773,46,2,f +2766,4773,46,1,t +2766,4773,36,2,f +2766,4774c01,0,1,f +2766,970c00,0,1,f +2766,973pb0091c01,0,1,f +2768,12897,0,1,f +2768,13783,0,1,f +2768,15446,0,1,f +2768,25976,308,1,f +2768,3626cpr2020,14,1,f +2768,60849,0,1,f +2768,88646,0,1,f +2768,970c00pr1110,0,1,f +2768,973pr3529c01,0,1,f +2769,46281,57,2,f +2769,46281,45,1,f +2769,clikits037,13,1,f +2769,clikits084,45,1,f +2769,clikits084,57,2,f +2770,2431,70,2,f +2770,2450,28,8,f +2770,2877,71,2,f +2770,2921,71,2,f +2770,298c02,0,1,f +2770,298c02,0,1,t +2770,30033,0,1,f +2770,3020,70,2,f +2770,3021,71,1,f +2770,3023,70,1,f +2770,30259,70,2,f +2770,30375,14,1,f +2770,30375,72,4,f +2770,30375,19,2,f +2770,30376,19,3,f +2770,30377,19,1,t +2770,30377,0,1,t +2770,30377,0,1,f +2770,30377,19,3,f +2770,30378,19,3,f +2770,30383,72,4,f +2770,30414,0,2,f +2770,30552,0,2,f +2770,30553,72,3,f +2770,3176,72,1,f +2770,32028,71,2,f +2770,32064b,71,2,f +2770,32123b,71,2,f +2770,32123b,71,1,t +2770,3460,70,2,f +2770,3666,72,4,f +2770,3700,70,1,f +2770,3705,0,2,f +2770,3709,71,4,f +2770,3711a,70,2,t +2770,3711a,70,80,f +2770,3747b,70,1,f +2770,3795,72,1,f +2770,3832,70,2,f +2770,4032a,70,5,f +2770,4150,71,4,f +2770,41889,148,1,f +2770,41890,148,2,f +2770,42003,72,4,f +2770,42687,148,1,f +2770,4274,1,2,f +2770,4274,1,1,t +2770,43719,72,1,f +2770,44302a,71,4,f +2770,44358,70,1,f +2770,44359,70,2,f +2770,44567a,72,1,f +2770,4589,0,1,f +2770,4589,36,8,f +2770,47457,72,4,f +2770,47753,70,2,f +2770,48183,71,1,f +2770,48336,0,1,f +2770,50950,72,2,f +2770,50990a,47,2,f +2770,53989,70,8,f +2770,54200,36,2,f +2770,58247,0,3,f +2770,59230,19,1,t +2770,59230,19,3,f +2770,60470a,71,1,f +2770,60849,71,1,t +2770,60849,71,4,f +2770,61184,71,8,f +2770,6141,72,1,t +2770,6141,36,1,t +2770,6141,72,8,f +2770,6141,36,4,f +2770,6190,72,1,f +2770,6587,72,4,f +2771,3001a,4,2,f +2771,3003,4,2,f +2771,3003,14,1,f +2771,3003,1,1,f +2771,3003,0,1,f +2771,3003,15,1,f +2771,3004,1,3,f +2771,3004,4,1,f +2771,3004,14,4,f +2771,3009,1,4,f +2771,3010,14,4,f +2771,3010,1,4,f +2771,3020,1,1,f +2771,3021,1,1,f +2771,3022,1,2,f +2771,3023,1,4,f +2771,3031,14,2,f +2771,3032,1,2,f +2771,3039,4,2,f +2771,3040a,1,16,f +2771,3062a,47,2,f +2771,3062a,15,4,f +2771,3062a,14,16,f +2771,3063b,14,4,f +2771,3068b,15,1,f +2771,3068b,1,6,f +2771,3069a,14,10,f +2771,3069a,1,6,f +2771,3298,1,1,f +2771,3298,4,1,f +2771,3612,0,2,f +2771,3612,15,2,f +2771,3612,4,2,f +2771,3613,4,2,f +2771,3613,0,2,f +2771,3613,15,2,f +2771,3614a,14,6,f +2771,3659,1,4,f +2771,3665,1,12,f +2771,3710,14,2,f +2771,3741,2,2,f +2771,3742,14,6,f +2771,3742,14,2,t +2771,457,1,1,f +2771,685p01,14,2,f +2771,685px2,14,1,f +2771,792c03,4,1,f +2771,792c03,15,1,f +2771,792c03,0,1,f +2771,x196,0,2,f +2771,x197bun,7,1,f +2772,11477,27,6,f +2772,14417,72,2,f +2772,14418,71,2,f +2772,14704,71,2,f +2772,14769pr1001,15,1,f +2772,15068,72,1,f +2772,15208,15,1,f +2772,15456,0,2,f +2772,2412b,297,2,f +2772,2654,0,1,f +2772,2921,0,2,f +2772,3003,27,1,f +2772,3022,0,1,f +2772,3022,27,3,f +2772,3023,0,3,f +2772,30374,36,2,f +2772,3039,15,2,f +2772,3626cpr1001,15,2,f +2772,3665,0,4,f +2772,4081b,72,2,f +2772,44728,71,1,f +2772,4599b,71,1,f +2772,4599b,71,1,t +2772,4735,0,2,f +2772,49668,15,2,f +2772,49668,0,2,f +2772,60474,15,1,f +2772,61252,0,2,f +2772,6126b,182,2,f +2772,6141,297,1,t +2772,6141,297,3,f +2772,86500,40,1,f +2772,87087,27,2,f +2772,98138,27,1,t +2772,98138,27,2,f +2772,99207,27,2,f +2772,99207,0,1,f +2774,3020,14,1,f +2774,3039,14,1,f +2774,3298,14,1,f +2774,3660,14,1,f +2774,3747b,14,1,f +2774,4623,14,1,f +2777,11618,26,1,t +2777,11618,26,1,f +2777,11816pr0003,78,1,f +2777,15470,29,1,t +2777,15470,29,1,f +2777,2343,47,1,f +2777,2496,0,2,f +2777,2654,47,1,f +2777,2655,71,2,f +2777,3003,15,1,f +2777,3005,15,1,f +2777,30151a,47,1,f +2777,3022,322,1,f +2777,30236,15,1,f +2777,3062b,15,1,f +2777,3069bpr0100,2,1,f +2777,33051,10,1,f +2777,33085,14,1,f +2777,33291,10,1,t +2777,33291,10,1,f +2777,3795,191,1,f +2777,3960pr20,15,1,f +2777,4523,5,1,f +2777,4599b,71,1,t +2777,4599b,71,2,f +2777,4740,4,1,f +2777,4865b,47,2,f +2777,60475b,71,1,f +2777,6141,14,2,f +2777,6141,29,1,t +2777,6141,29,1,f +2777,6141,14,1,t +2777,63965,71,1,f +2777,6541,4,1,f +2777,87580,322,1,f +2777,92256,70,1,f +2777,92456pr0013c01,78,1,f +2777,92819pr0004,272,1,f +2778,3020,15,2,f +2778,3022,15,1,f +2778,3023,15,1,f +2778,3039p05,15,1,f +2778,3069bp25,15,1,f +2778,3626apr0001,14,1,f +2778,3838,1,1,f +2778,3842b,1,1,f +2778,3935,15,1,f +2778,3936,15,1,f +2778,4032a,0,2,f +2778,4070,15,2,f +2778,4349,0,1,f +2778,4589,36,1,f +2778,4589,0,2,f +2778,4596,15,1,f +2778,4598,15,1,f +2778,4740,36,2,f +2778,73590c01a,0,2,f +2778,73983,15,2,f +2778,970c00,1,1,f +2778,973pr1594c01,1,1,f +2779,3003,4,1,f +2779,3004,4,1,f +2779,3020,4,2,f +2779,3022,4,1,f +2779,3023,4,5,f +2779,3024,36,1,f +2779,3040b,4,2,f +2779,3062b,7,1,f +2779,3062b,7,1,t +2779,3070b,15,2,f +2779,3460,4,2,f +2779,3460,0,4,f +2779,3461,0,1,f +2779,3462,4,1,f +2779,3480,0,1,f +2779,3481,4,1,f +2779,3623,0,1,f +2779,3626apr0001,14,1,f +2779,3710,4,3,f +2779,3747a,4,1,f +2779,3794a,4,3,f +2779,3821,4,1,f +2779,3822,4,1,f +2779,3823,41,1,f +2779,3842b,15,1,f +2779,4085b,4,4,f +2779,4213,4,1,f +2779,4286,4,2,f +2779,4315,4,1,f +2779,4345a,4,2,f +2779,4346p01,15,2,f +2779,4349,15,2,f +2779,4599a,7,2,f +2779,4855,4,2,f +2779,4858,4,1,f +2779,4859,4,1,f +2779,4871,4,1,f +2779,4873,0,2,f +2779,73590c01a,15,2,f +2779,970c00,0,1,f +2779,973p21c01,0,1,f +2780,3957a,15,1,f +2780,3960,15,1,f +2780,4345b,15,1,f +2780,4346,15,1,f +2780,44728,4,1,f +2780,6141,14,1,f +2780,6141,14,1,t +2781,2994,15,2,f +2781,32009,4,2,f +2781,32012,1,1,f +2781,32016,0,2,f +2781,32017,4,2,f +2781,32017,0,2,f +2781,32039,0,2,f +2781,32062,0,1,f +2781,3482,15,2,f +2781,3483,0,2,f +2781,3703,4,1,f +2781,3705,0,4,f +2781,3706,0,2,f +2781,3707,0,3,f +2781,3713,7,2,f +2781,3749,7,5,f +2781,4019,7,3,f +2781,4265b,7,6,f +2781,4519,0,1,f +2781,6141,7,1,f +2781,6536,0,2,f +2781,6538b,7,1,f +2781,6553,7,1,f +2781,6558,0,2,f +2781,6578,0,2,f +2781,6632,0,6,f +2781,75c11,4,2,f +2781,bb298c82,15,1,f +2782,2421,0,1,f +2782,2460,7,1,f +2782,3003,0,1,f +2782,3004,0,2,f +2782,3004pb008,7,2,f +2782,30332,0,1,f +2782,3039,0,4,f +2782,3039,34,2,f +2782,3040b,0,1,f +2782,3298,0,1,f +2782,3475b,8,4,f +2782,3795,7,1,f +2782,3832,8,2,f +2782,4488,7,1,f +2784,2670,7,2,f +2784,2671,7,4,f +2784,2672,7,4,f +2784,2680,0,8,f +2784,2681,0,8,f +2784,3710,7,20,f +2785,30109c03,5,1,f +2785,33051,2,1,f +2785,3852b,17,1,f +2785,6193,15,1,f +2785,6206,14,1,f +2786,11062,15,1,f +2786,2412b,14,3,f +2786,3001,71,4,f +2786,3005,71,4,f +2786,3035,1,2,f +2786,30357,4,2,f +2786,30374,70,1,f +2786,3062b,46,1,f +2786,33303,15,3,f +2786,3678b,71,2,f +2786,3795,4,3,f +2786,3833,4,1,f +2786,3836,70,1,f +2786,4599b,0,1,f +2786,4740,15,1,f +2786,59900,14,1,f +2786,60481,71,2,f +2786,6141,41,1,f +2786,61976,19,1,f +2786,63864,71,2,f +2786,64644,308,1,f +2786,87079,71,2,f +2786,92438,1,1,f +2786,92926,2,1,f +2786,95343,70,1,f +2786,95344,28,1,f +2786,970c00,1,1,f +2786,973pr1580c01,15,1,f +2786,98283,71,6,f +2788,3749,7,2,f +2788,4143,7,4,f +2788,4261,7,2,f +2788,4262,7,3,f +2788,4263,7,3,f +2788,4442,7,3,f +2788,73071,7,1,f +2788,9244,7,1,f +2789,3021,14,8,f +2789,3022,14,8,f +2789,3023,14,8,f +2789,3031,14,2,f +2789,3032,14,2,f +2789,3033,14,2,f +2789,3460,14,8,f +2789,3623,14,8,f +2789,3666,14,8,f +2789,3709,14,8,f +2789,3710,14,8,f +2789,3738,14,8,f +2789,3795,14,4,f +2789,3832,14,2,f +2789,4477,14,4,f +2790,2376,0,1,f +2790,2584,4,1,f +2790,2585,0,1,f +2790,2648,4,2,f +2790,2649,0,2,f +2790,3127,7,2,f +2790,3176,4,1,f +2790,3314,0,1,f +2790,3317,14,1,f +2790,3464,4,2,f +2790,56823,0,2,f +2790,73037,4,1,f +2790,784,14,1,f +2791,167915,47,1,f +2791,167916,47,1,f +2791,2357,4,6,f +2791,2415,7,1,f +2791,2420,0,6,f +2791,2431,14,4,f +2791,2431,0,4,f +2791,2431,1,4,f +2791,2454a,1,2,f +2791,2454a,14,4,f +2791,2465,4,1,f +2791,2572,47,2,f +2791,2711,0,2,f +2791,2730,4,8,f +2791,2780,0,24,f +2791,2815,0,4,f +2791,2817,4,2,f +2791,2825,0,5,f +2791,2838c01,7,3,f +2791,2855,7,1,f +2791,2856,7,1,f +2791,2952,7,2,f +2791,2974c01,14,1,f +2791,2977c01,1,2,f +2791,2980c01,14,1,f +2791,2982c01,1,1,f +2791,2983,7,4,t +2791,3001,4,4,f +2791,3004,0,10,f +2791,3004,4,14,f +2791,3005,4,8,f +2791,3008,4,2,f +2791,3009,14,4,f +2791,3009,1,4,f +2791,3010,4,6,f +2791,3021,0,2,f +2791,3022,0,4,f +2791,3023,0,24,f +2791,3031,0,2,f +2791,3040b,4,6,f +2791,3065,46,1,f +2791,3065,34,1,f +2791,3065,33,1,f +2791,3065,36,1,f +2791,3068b,15,2,f +2791,3068bp18,15,1,f +2791,3068bpb0016,15,2,f +2791,3069b,4,2,f +2791,3069b,15,2,f +2791,3069b,7,2,f +2791,3069b,1,6,f +2791,3069b,14,6,f +2791,3069b,0,4,f +2791,3139,0,1,f +2791,32002,8,5,t +2791,32073,0,4,t +2791,3299,0,1,f +2791,3460,0,9,f +2791,3464,47,1,f +2791,3482,14,4,f +2791,3482,7,4,f +2791,3483,0,8,f +2791,3623,0,4,f +2791,3647,7,8,f +2791,3648b,7,4,f +2791,3650c,7,4,f +2791,3666,0,8,f +2791,3673,7,6,t +2791,3679,7,1,f +2791,3680,0,1,f +2791,3700,4,16,f +2791,3701,4,10,f +2791,3702,4,10,f +2791,3703,4,6,f +2791,3705,0,4,f +2791,3706,0,6,f +2791,3707,0,6,f +2791,3708,0,4,f +2791,3709,0,7,f +2791,3710,0,12,f +2791,3713,7,16,f +2791,3713,7,1,t +2791,3737,0,2,f +2791,3737,0,2,t +2791,3738,0,6,f +2791,3743,7,14,f +2791,3749,7,2,t +2791,3749,7,6,f +2791,3794a,0,4,f +2791,3857,7,2,f +2791,3873,0,54,f +2791,3873,0,3,t +2791,3894,4,11,f +2791,3895,4,6,f +2791,4019,7,2,f +2791,4019,7,2,t +2791,4032a,0,4,f +2791,4070,0,6,f +2791,4150,15,4,f +2791,4162,0,8,f +2791,4185,7,5,f +2791,4265b,7,14,f +2791,4265b,7,1,t +2791,4274,7,9,t +2791,4286,4,2,f +2791,4287,4,4,f +2791,4519,0,2,t +2791,4519,0,2,f +2791,4716,7,3,f +2791,4716,0,4,t +2791,4774c01,0,1,f +2791,5306bc015,0,2,f +2791,5306bc036,0,2,f +2791,5306bc069,0,5,t +2791,5306bc162,0,6,f +2791,6002,47,2,f +2791,6035,15,4,f +2791,6538a,7,2,t +2791,6538a,7,2,f +2791,6587,8,4,t +2791,6589,7,8,t +2791,71082,47,2,f +2791,71128,383,2,f +2791,85544,15,2,f +2791,85545,15,4,t +2791,85545,15,4,f +2791,9701b1,9999,1,t +2791,9701b2,9999,1,t +2791,9701b3,9999,1,t +2791,9701b4,9999,1,t +2791,9701b5,9999,1,t +2791,9701b6,9999,1,t +2791,9701b7,9999,1,t +2791,9701bc1,9999,1,t +2791,9701bc2,9999,1,t +2791,bin01,4,2,f +2791,rb00168,0,2,f +2791,rb00168,0,2,t +2791,x157,15,4,f +2792,2420,72,2,f +2792,2540,71,6,f +2792,2780,0,1,t +2792,2780,0,2,f +2792,298c02,71,1,t +2792,298c02,71,1,f +2792,3001,71,3,f +2792,3003,71,1,f +2792,3004,71,1,f +2792,30170,72,1,f +2792,30170,72,1,t +2792,3022,72,6,f +2792,3023,27,12,f +2792,30325,1,1,f +2792,3034,72,1,f +2792,30363,72,1,f +2792,30364,72,4,f +2792,30365,71,4,f +2792,3037,71,2,f +2792,30385,42,4,f +2792,3039,72,9,f +2792,3040b,42,2,f +2792,3044b,72,2,f +2792,3049b,71,8,f +2792,32000,0,1,f +2792,32016,71,2,f +2792,32523,27,1,f +2792,3298,71,2,f +2792,3626bpr0558,14,1,f +2792,3626bpr0561,14,1,f +2792,3673,71,1,f +2792,3673,71,1,t +2792,3676,72,8,f +2792,3749,19,1,f +2792,3795,71,2,f +2792,40244,0,1,f +2792,4081b,71,2,f +2792,41669,25,3,f +2792,43093,1,3,f +2792,44728,71,2,f +2792,4736,0,1,f +2792,48183,71,2,f +2792,48336,0,1,f +2792,54200,71,8,f +2792,54200,71,1,t +2792,57585,71,1,f +2792,57908,72,4,f +2792,60176,0,1,f +2792,6019,72,6,f +2792,60470a,0,1,f +2792,6091,72,6,f +2792,61406pat0004,72,3,f +2792,61409,27,2,f +2792,6141,42,2,f +2792,6141,42,1,t +2792,62712,72,7,f +2792,62810,308,1,f +2792,64727,71,7,f +2792,64728,4,1,f +2792,64867pr01,42,3,f +2792,6541,4,2,f +2792,85045c01pb01,72,1,f +2792,85046c01,72,1,f +2792,970c00pr0122,1,2,f +2792,973pr1432c01,71,1,f +2792,973pr1433c01,71,1,f +2793,44814,178,1,f +2794,3001a,47,1,f +2794,3001a,14,2,f +2794,3003,15,1,f +2794,3004,4,3,f +2794,3004,0,2,f +2794,3005,0,2,f +2794,3010,4,2,f +2794,3010,15,2,f +2794,3010,47,1,f +2794,3010,14,1,f +2794,3010pb036e,14,1,f +2794,3020,0,2,f +2794,3020,14,3,f +2794,3020,15,1,f +2794,3020,4,1,f +2794,3021,15,3,f +2794,3021,14,1,f +2794,3022,4,1,f +2794,3023,15,7,f +2794,3023,0,12,f +2794,3023,4,5,f +2794,3023,14,1,f +2794,3030,15,1,f +2794,3032,4,1,f +2794,3032,0,1,f +2794,3062a,47,4,f +2794,3063b,15,4,f +2794,3135c04,4,1,f +2794,3137c01,0,6,f +2794,3139,0,12,f +2794,709,14,1,f +2796,10288,308,2,f +2796,11153,15,43,f +2796,11153,71,19,f +2796,11153,28,16,f +2796,11153,0,6,f +2796,11212,71,6,f +2796,11477,15,15,f +2796,2357,0,2,f +2796,2420,28,18,f +2796,2420,15,2,f +2796,2431,0,10,f +2796,2445,71,8,f +2796,2450,28,2,f +2796,2450,15,7,f +2796,2450,0,8,f +2796,2456,70,11,f +2796,2465,71,23,f +2796,2476a,28,32,f +2796,2639,15,12,f +2796,2654,71,4,f +2796,2780,0,20,f +2796,2780,0,4,t +2796,2877,72,4,f +2796,3001,14,18,f +2796,3001,28,20,f +2796,3001,0,5,f +2796,3002,15,11,f +2796,3003,28,21,f +2796,3004,28,48,f +2796,3004,14,16,f +2796,3005,71,18,f +2796,3005,28,25,f +2796,3005,0,2,f +2796,3008,71,10,f +2796,3008,0,6,f +2796,3009,28,55,f +2796,3009,15,8,f +2796,3010,28,58,f +2796,30145,0,2,f +2796,3020,28,29,f +2796,3020,71,23,f +2796,3021,15,7,f +2796,3021,71,46,f +2796,3021,28,33,f +2796,3022,72,13,f +2796,3023,2,1,f +2796,3023,40,40,f +2796,3023,71,26,f +2796,3023,28,57,f +2796,3023,14,49,f +2796,3023,25,1,f +2796,3023,1,7,f +2796,3024,14,9,f +2796,3024,15,1,t +2796,3024,15,9,f +2796,3024,28,2,t +2796,3024,28,32,f +2796,3024,14,1,t +2796,3024,0,1,t +2796,3024,0,3,f +2796,3028,28,10,f +2796,3029,72,1,f +2796,3030,71,4,f +2796,3031,71,2,f +2796,3031,15,4,f +2796,3032,71,18,f +2796,3034,71,3,f +2796,3034,28,15,f +2796,3035,28,5,f +2796,3036,28,18,f +2796,3036,72,2,f +2796,30367c,0,2,f +2796,3037,0,13,f +2796,3039,15,9,f +2796,3039,70,4,f +2796,3039,0,2,f +2796,3040b,0,33,f +2796,3040b,28,2,f +2796,30414,1,4,f +2796,3048c,0,2,f +2796,30503,0,2,f +2796,30503,15,10,f +2796,30505,0,8,f +2796,3065,40,58,f +2796,3066,40,4,f +2796,3068b,28,31,f +2796,3069b,33,31,f +2796,3069b,0,5,f +2796,3069b,15,65,f +2796,3069b,28,44,f +2796,3176,14,4,f +2796,3176,72,4,f +2796,32001,0,8,f +2796,32015,4,2,f +2796,32018,72,6,f +2796,32018,71,8,f +2796,32062,4,6,f +2796,32064b,4,10,f +2796,32073,71,1,f +2796,32124,1,1,f +2796,32192,72,9,f +2796,32524,15,4,f +2796,32525,15,4,f +2796,3298,0,5,f +2796,3298,15,116,f +2796,3456,28,3,f +2796,3460,71,25,f +2796,3460,0,2,f +2796,3623,70,7,f +2796,3623,15,2,f +2796,3623,0,6,f +2796,3660,0,42,f +2796,3665,0,12,f +2796,3666,70,11,f +2796,3666,28,60,f +2796,3666,1,1,f +2796,3678b,0,17,f +2796,3679,71,2,f +2796,3680,0,2,f +2796,3700,70,14,f +2796,3701,70,12,f +2796,3706,0,3,f +2796,3709,15,5,f +2796,3710,28,37,f +2796,3710,1,44,f +2796,3710,71,13,f +2796,3737,0,2,f +2796,3747b,72,4,f +2796,3794b,1,2,f +2796,3794b,4,7,f +2796,3795,28,37,f +2796,3795,71,11,f +2796,3811,1,1,f +2796,3832,71,4,f +2796,3857,1,1,f +2796,3937,72,2,f +2796,3941,72,25,f +2796,4032a,19,21,f +2796,40490,14,4,f +2796,4070,0,21,f +2796,41747,15,3,f +2796,41747,0,2,f +2796,41748,15,3,f +2796,41748,0,2,f +2796,41749,15,34,f +2796,41749,40,4,f +2796,41750,40,4,f +2796,41750,15,35,f +2796,41769,15,9,f +2796,41770,15,9,f +2796,4186,1,1,f +2796,42022,0,4,f +2796,4216,15,5,f +2796,4274,1,1,t +2796,4274,1,16,f +2796,4282,71,2,f +2796,4286,28,50,f +2796,4286,15,14,f +2796,4286,71,8,f +2796,4286,0,6,f +2796,43093,1,38,f +2796,43722,28,5,f +2796,43722,15,1,f +2796,43723,28,6,f +2796,43723,15,1,f +2796,44294,71,1,f +2796,4477,70,13,f +2796,4519,71,1,f +2796,46212,40,25,f +2796,4623,19,2,f +2796,47398,72,1,f +2796,47457,1,2,f +2796,47753,15,5,f +2796,50923,72,4,f +2796,51739,28,8,f +2796,54200,28,4,t +2796,54200,28,28,f +2796,54200,40,4,t +2796,54200,40,82,f +2796,54383,28,4,f +2796,54383,71,5,f +2796,54384,71,5,f +2796,54384,28,5,f +2796,57909a,72,2,f +2796,58846,0,2,f +2796,60470a,0,1,f +2796,60478,15,2,f +2796,60479,0,8,f +2796,60481,0,11,f +2796,6112,71,6,f +2796,6112,15,3,f +2796,6134,1,2,f +2796,6141,1,6,f +2796,6141,1,1,t +2796,6141,47,28,f +2796,6141,47,1,t +2796,6179,28,6,f +2796,62462,14,4,f +2796,63864,28,37,f +2796,63864,15,14,f +2796,64276,0,12,f +2796,64644,0,28,f +2796,6558,1,12,f +2796,6587,28,4,f +2796,6636,15,26,f +2796,6636,28,77,f +2796,73983,15,2,f +2796,73983,1,12,f +2796,73983,0,14,f +2796,76768,28,2,f +2796,85080,28,2,f +2796,85943,72,1,f +2796,85984,28,101,f +2796,87079,15,12,f +2796,87609,0,2,f +2796,91405,28,1,f +2796,91988,71,7,f +2796,92013,15,6,f +2796,92013,0,10,f +2796,92438,28,7,f +2796,92947,70,2,f +2796,93571,0,2,f +2796,93606,0,4,f +2796,95188,0,2,f +2796,96874,25,1,t +2796,98138,71,5,f +2796,98138,71,1,t +2796,99301,15,4,f +2796,99780,72,4,f +2796,99781,15,3,f +2798,15211,5,1,f +2798,15515,322,1,f +2798,15947,29,1,f +2798,16196,29,1,f +2798,19819pr0026,322,1,f +2798,2302,5,2,f +2798,2302,29,1,f +2798,24463,5,1,f +2798,24806,14,1,f +2798,25104,5,1,f +2798,25164,29,1,f +2798,34277,14,1,f +2798,3437,85,3,f +2798,3437pr0044,322,1,f +2798,40666,15,1,f +2798,44524,27,1,f +2798,61649,322,1,f +2798,6474,29,2,f +2798,6510,14,1,f +2798,6510,10,1,f +2798,76371,322,2,f +2798,90265,15,1,f +2799,3624,0,1,f +2799,3626bpr0126,14,1,f +2799,3900,15,1,f +2799,3900,15,1,t +2799,6141,36,1,f +2799,6141,36,2,t +2799,970c00,72,1,f +2799,973pr1164c01,272,1,f +2800,13731,4,2,f +2800,2412b,71,2,f +2800,2413,15,2,f +2800,2415,71,1,f +2800,2420,15,2,f +2800,2431,14,2,f +2800,2436,71,4,f +2800,2445,72,1,f +2800,2445,15,2,f +2800,2736,71,2,f +2800,2780,0,5,f +2800,2780,0,1,t +2800,2825,0,2,f +2800,3001,0,1,f +2800,3004,4,3,f +2800,3007,0,1,f +2800,3008,4,2,f +2800,3020,15,2,f +2800,3020,72,2,f +2800,3021,15,2,f +2800,3021,4,4,f +2800,3022,14,4,f +2800,3023,14,6,f +2800,3023,15,4,f +2800,3029,15,1,f +2800,30414,0,2,f +2800,30503,15,2,f +2800,30602,40,2,f +2800,3070b,14,6,f +2800,3070b,14,1,t +2800,32000,71,4,f +2800,32123b,71,1,t +2800,32123b,14,1,t +2800,32123b,14,6,f +2800,32123b,71,12,f +2800,32125,71,2,f +2800,32184,0,2,f +2800,3464,15,1,f +2800,3623,71,6,f +2800,3660,71,11,f +2800,3666,0,7,f +2800,3679,71,1,f +2800,3680,0,1,f +2800,3700,0,4,f +2800,3710,4,3,f +2800,3710,15,4,f +2800,3747b,4,1,f +2800,3749,19,2,f +2800,3794b,4,5,f +2800,3795,71,2,f +2800,3795,15,1,f +2800,41531,71,2,f +2800,41769,15,1,f +2800,41770,15,1,f +2800,42023,4,2,f +2800,42610,71,2,f +2800,4287,15,2,f +2800,43093,1,4,f +2800,44675,71,2,f +2800,47397,15,1,f +2800,47398,15,1,f +2800,4740,0,1,f +2800,47457,4,1,f +2800,4871,71,4,f +2800,50950,4,2,f +2800,50950,0,1,f +2800,50951,0,2,f +2800,51739,0,2,f +2800,54200,72,1,t +2800,54200,4,1,t +2800,54200,72,8,f +2800,54200,4,5,f +2800,57585,71,2,f +2800,59426,72,2,f +2800,59895,0,1,f +2800,60481,0,1,f +2800,6091,71,4,f +2800,61409,72,4,f +2800,6141,46,1,t +2800,6141,46,3,f +2800,6141,34,2,f +2800,6141,36,1,t +2800,6141,34,1,t +2800,6141,36,2,f +2800,63864,4,8,f +2800,64225,4,2,f +2800,6564,4,1,f +2800,6565,4,1,f +2800,6636,0,2,f +2800,85984,4,8,f +2800,87087,71,4,f +2800,87580,4,1,f +2800,92593,0,6,f +2801,11816pr0006,78,1,f +2801,2423,2,3,f +2801,3022,19,1,f +2801,3022,15,5,f +2801,3036,2,1,f +2801,30374,19,1,f +2801,3062b,70,2,f +2801,3068b,19,1,f +2801,3068b,4,4,f +2801,33125,484,1,f +2801,4589,70,1,f +2801,4589,182,1,f +2801,6141,4,1,f +2801,6141,27,1,t +2801,6141,14,2,f +2801,6141,182,1,t +2801,6141,27,2,f +2801,6141,182,2,f +2801,6141,14,1,t +2801,6141,4,1,t +2801,87580,10,1,f +2801,92257,320,1,f +2801,92456pr0001c01,78,1,f +2801,92819pr0002a,27,1,f +2802,10201,1,1,f +2802,10201,0,4,f +2802,11476,71,1,f +2802,15068,1,2,f +2802,15068,72,2,f +2802,15445,72,1,f +2802,15573,1,1,f +2802,15625,72,1,f +2802,15712,0,4,f +2802,2357,71,4,f +2802,2412b,72,11,f +2802,2431,1,3,f +2802,2431pr0017,14,4,f +2802,2432,0,3,f +2802,2445,1,1,f +2802,2453b,72,2,f +2802,2456,72,1,f +2802,2458,15,1,f +2802,2540,71,1,f +2802,2540,72,3,f +2802,2569,0,1,f +2802,2654,46,1,f +2802,2723,0,1,f +2802,2780,0,2,f +2802,30031,0,1,f +2802,3004,71,22,f +2802,3005,71,6,f +2802,3008,72,2,f +2802,30157,72,1,f +2802,3020,0,1,f +2802,3021,71,5,f +2802,3021,2,4,f +2802,3021,1,1,f +2802,3023,0,2,f +2802,3023,72,2,f +2802,3023,1,10,f +2802,3024,182,2,f +2802,3024,1,2,f +2802,3031,72,1,f +2802,3034,1,4,f +2802,3034,2,4,f +2802,30367c,72,1,f +2802,3037,72,2,f +2802,30374,41,2,f +2802,30374,0,1,f +2802,3038,72,6,f +2802,3039,72,1,f +2802,3040b,71,8,f +2802,30586,71,2,f +2802,30602,1,1,f +2802,3068b,15,6,f +2802,3069b,1,5,f +2802,3069b,15,1,f +2802,3070b,1,2,f +2802,32014,71,1,f +2802,32015,0,4,f +2802,32034,0,1,f +2802,32039,0,4,f +2802,32062,4,14,f +2802,32064a,72,15,f +2802,32073,71,2,f +2802,32192,72,2,f +2802,32291,72,2,f +2802,33057,484,1,f +2802,3460,72,1,f +2802,3623,1,4,f +2802,3626cpr1535,78,1,f +2802,3626cpr1825,70,1,f +2802,3666,0,2,f +2802,3666,14,1,f +2802,3666,71,1,f +2802,3700,0,3,f +2802,3710,71,4,f +2802,3713,4,1,f +2802,3737,0,4,f +2802,3738,71,2,f +2802,3795,0,1,f +2802,3830,15,2,f +2802,3831,72,2,f +2802,3937,71,1,f +2802,3941,0,4,f +2802,40240,308,1,f +2802,4081b,0,2,f +2802,4083,0,1,f +2802,4162,1,2,f +2802,41854,15,4,f +2802,4274,1,4,f +2802,4286,71,2,f +2802,43093,1,2,f +2802,44728,1,6,f +2802,4488,0,4,f +2802,47397,71,1,f +2802,47398,71,1,f +2802,47457,1,1,f +2802,48729b,72,4,f +2802,54200,71,2,f +2802,54200,182,10,f +2802,59443,0,4,f +2802,59900,36,1,f +2802,59900,35,1,f +2802,59900,33,1,f +2802,6014b,71,4,f +2802,60479,71,3,f +2802,60481,71,2,f +2802,61184,71,1,f +2802,6134,0,1,f +2802,6141,14,4,f +2802,6179,71,1,f +2802,6187,0,2,f +2802,63864,0,2,f +2802,64448,72,1,f +2802,64567,0,1,f +2802,6541,72,4,f +2802,6553,71,3,f +2802,73983,1,2,f +2802,85940,0,1,f +2802,85984,1,4,f +2802,87079,15,1,f +2802,87697,0,4,f +2802,87989,27,1,f +2802,88072,14,1,f +2802,91501,71,4,f +2802,92946,1,4,f +2802,93273,0,1,f +2802,93274,72,1,f +2802,95347,0,2,f +2802,970c00,28,1,f +2802,970c00,272,1,f +2802,973pr3064c01,19,1,f +2802,973pr3203c01,92,1,f +2802,98065pr0005,326,1,f +2802,98065pr0006,84,1,f +2802,98067pr0001,326,1,f +2802,98067pr0002,84,1,f +2802,98068pr0005,326,1,f +2802,98068pr0006,84,1,f +2802,98069pr0005,326,1,f +2802,98069pr0006,84,1,f +2802,98071pr0005,326,1,f +2802,98071pr0006,84,1,f +2802,98072pr0005,326,1,f +2802,98072pr0006,84,1,f +2802,98138,34,3,f +2802,98138,46,2,f +2802,98138,36,5,f +2802,98138,1,4,f +2802,98165pr0005,326,1,f +2802,98165pr0006,84,1,f +2802,98313,179,1,f +2802,98397,71,1,f +2802,99207,0,2,f +2802,99781,71,1,f +2803,2412b,27,10,f +2803,2412b,4,1,f +2803,2419,8,4,f +2803,2431,27,2,f +2803,2446px5,0,1,f +2803,2447,40,1,t +2803,2447,40,1,f +2803,2456,8,2,f +2803,2460,4,2,f +2803,2488,0,4,f +2803,2555,4,2,f +2803,2780,0,10,f +2803,3001,0,2,f +2803,30027,14,2,f +2803,30028,0,2,f +2803,3004,25,5,f +2803,3004,4,8,f +2803,3005,8,2,f +2803,30180,0,2,f +2803,30192,8,4,f +2803,3020,8,1,f +2803,3021,4,2,f +2803,3022,0,4,f +2803,3023,4,4,f +2803,3024,4,2,f +2803,30322,4,2,f +2803,3034,25,1,f +2803,3039,25,7,f +2803,30603pb10,14,1,f +2803,3176,0,8,f +2803,32014,25,2,f +2803,32018,4,1,f +2803,32039,4,2,f +2803,32062,4,4,f +2803,32064b,7,2,f +2803,32506,27,1,f +2803,32525,0,1,f +2803,32551,27,1,f +2803,3626bpb0031,14,1,f +2803,3660,4,2,f +2803,3665,8,2,f +2803,3666,25,2,f +2803,3700,0,2,f +2803,3705,0,2,f +2803,3708,0,2,f +2803,3713,7,1,t +2803,3713,7,4,f +2803,3749,7,2,f +2803,3832,0,1,f +2803,3941,25,8,f +2803,3959,0,2,f +2803,41854pb09,14,1,f +2803,41861c01,7,1,f +2803,41865,0,2,f +2803,42936,8,3,f +2803,42942,8,2,f +2803,43085,8,1,f +2803,4589,7,2,f +2803,4600,0,1,f +2803,4740,42,4,f +2803,6111,4,4,f +2803,6232,4,1,f +2803,6538b,0,2,f +2803,71155,0,1,f +2803,x351,0,1,f +2805,3020,4,4,f +2805,3021,4,2,f +2805,3022,4,4,f +2805,3023,4,2,f +2805,3029,4,2,f +2805,3032,4,2,f +2805,3034,4,2,f +2805,3035,4,2,f +2805,3036,4,2,f +2805,3460,4,2,f +2805,3623,4,2,f +2805,3666,4,2,f +2805,3710,4,2,f +2805,3795,4,2,f +2805,3832,4,2,f +2808,3003,15,15,f +2808,3004,15,3,f +2808,3005,15,8,f +2808,3023,15,2,f +2808,3023,14,1,f +2808,3023,2,1,f +2808,3062b,36,1,f +2808,3062b,47,2,f +2808,3666,15,3,f +2808,60478,15,1,f +2808,60478,14,1,f +2808,60478,4,1,f +2808,6141,41,1,f +2808,6141,182,2,f +2808,6141,34,7,f +2808,6141,33,4,f +2808,6141,36,2,f +2808,6141,46,1,f +2808,6141,15,4,f +2808,63868,15,1,f +2808,63868,4,1,f +2808,63868,14,1,f +2808,73983,4,1,f +2809,2797c02,14,2,f +2811,11575pr0001,15,1,f +2811,11618,26,1,t +2811,11618,26,1,f +2811,2420,19,2,f +2811,3004,29,3,f +2811,3004,15,2,f +2811,3004,191,2,f +2811,3020,322,2,f +2811,3022,2,2,f +2811,3023,29,2,f +2811,3023,15,1,f +2811,3032,2,1,f +2811,3040b,15,2,f +2811,3040b,29,2,f +2811,3068b,19,1,f +2811,3069b,19,1,f +2811,33291,5,4,f +2811,33291,5,1,t +2811,3659,15,3,f +2811,3710,29,1,f +2811,3852b,191,1,f +2811,54200,29,1,t +2811,54200,29,4,f +2811,60474,212,1,f +2811,6141,80,1,t +2811,6141,80,2,f +2811,6231,212,4,f +2811,93160,15,1,t +2811,93160,15,1,f +2812,11090,72,3,f +2812,11090,72,1,t +2812,11097,297,1,f +2812,11100,15,2,f +2812,11111pr0002,15,1,f +2812,11126,321,1,f +2812,11127,41,6,f +2812,11767,72,1,f +2812,12549pr0004,15,1,f +2812,12825,15,5,f +2812,2540,0,6,f +2812,2780,0,2,f +2812,2780,0,1,t +2812,2817,0,1,f +2812,3031,1,3,f +2812,30374,19,3,f +2812,30377,72,1,t +2812,30377,72,6,f +2812,32013,72,2,f +2812,32039,71,1,f +2812,32062,4,3,f +2812,32064b,15,1,f +2812,32073,71,1,f +2812,32184,71,1,f +2812,3626cpr1126,212,1,f +2812,3666,0,3,f +2812,3673,71,1,t +2812,3673,71,2,f +2812,3701,1,1,f +2812,3713,71,1,f +2812,3713,71,1,t +2812,3942c,72,3,f +2812,43093,1,2,f +2812,4497,179,1,f +2812,45590,0,2,f +2812,4740,2,1,f +2812,4740,14,1,f +2812,4740,4,1,f +2812,53451,179,3,f +2812,53451,179,1,t +2812,53705,41,1,t +2812,53705,41,2,f +2812,53989,0,3,f +2812,57028c01,71,1,f +2812,57796,72,1,f +2812,59443,72,2,f +2812,6019,0,3,f +2812,6021405,9999,1,f +2812,6021406,9999,1,f +2812,6021407,9999,1,f +2812,6021408,9999,1,f +2812,6021409,9999,1,f +2812,6179pr0010,71,1,f +2812,63965,297,1,f +2812,63965,71,3,f +2812,87083,72,1,f +2812,92842,0,2,f +2812,970c01pr0435,15,1,f +2812,973pr2231c01,212,1,f +2812,98138,41,1,f +2812,98138,41,1,t +2813,10202,71,2,f +2813,12607ass01pr02,2,1,f +2813,12607ass02pr02,10,1,f +2813,12609pr0001,28,1,f +2813,12610pr0001,28,1,f +2813,12612pr0001,484,1,f +2813,12613pr0001,484,1,f +2813,12614pr0001,484,1,f +2813,12825,15,2,f +2813,2412b,179,2,f +2813,2412b,71,4,f +2813,2412b,72,4,f +2813,2420,70,4,f +2813,2431,71,4,f +2813,2432,72,2,f +2813,2436,71,6,f +2813,2465,14,2,f +2813,2496,0,2,f +2813,2723,0,2,f +2813,2780,0,20,f +2813,2780,0,2,t +2813,2878,0,2,f +2813,2921,15,2,f +2813,2926,0,3,f +2813,3002,0,4,f +2813,3003,71,1,f +2813,3004,0,2,f +2813,3004,14,6,f +2813,3004,326,6,f +2813,3005,14,12,f +2813,30136,72,4,f +2813,30162,71,1,f +2813,30173b,297,1,f +2813,30173b,179,2,f +2813,30173b,179,2,t +2813,30173b,297,1,t +2813,3020,19,2,f +2813,3020,326,2,f +2813,3020,72,2,f +2813,3020,2,1,f +2813,3020,4,1,f +2813,3020,0,1,f +2813,3021,2,2,f +2813,3021,71,2,f +2813,3021,72,1,f +2813,3022,71,5,f +2813,3022,15,2,f +2813,3022,14,4,f +2813,3023,47,2,f +2813,3023,70,18,f +2813,3023,14,22,f +2813,3023,36,2,f +2813,3024,19,1,t +2813,3024,15,1,t +2813,3024,72,1,t +2813,3024,182,1,t +2813,3024,15,2,f +2813,3024,19,16,f +2813,3024,72,8,f +2813,3029,71,1,f +2813,3030,72,2,f +2813,3032,19,1,f +2813,3034,72,2,f +2813,3035,4,1,f +2813,3036,2,1,f +2813,30361c,4,1,f +2813,30374,15,2,f +2813,30377,15,2,f +2813,30377,15,1,t +2813,3040b,14,10,f +2813,3065,46,2,f +2813,3068b,15,1,f +2813,3068b,14,2,f +2813,3068bpr0137,15,1,f +2813,3069b,72,2,f +2813,3069b,14,2,f +2813,3069b,15,5,f +2813,3069b,2,4,f +2813,3069bpr0030,15,1,f +2813,3176,71,2,f +2813,32019,0,2,f +2813,32062,4,1,f +2813,32064a,4,2,f +2813,32073,71,1,f +2813,32074c01,72,1,f +2813,32184,71,8,f +2813,32291,0,4,f +2813,32530,4,2,f +2813,32531,71,2,f +2813,3460,19,4,f +2813,3622,15,6,f +2813,3622,14,4,f +2813,3623,19,6,f +2813,3626cpr1150,0,1,f +2813,3626cpr1181,71,1,f +2813,3665,4,2,f +2813,3666,14,9,f +2813,3666,2,1,f +2813,3666,19,1,f +2813,3666,0,6,f +2813,3673,71,1,t +2813,3673,71,2,f +2813,3678b,72,2,f +2813,3702,0,2,f +2813,3703,0,2,f +2813,3706,0,1,f +2813,3710,14,1,f +2813,3710,4,1,f +2813,3710,72,4,f +2813,3794b,72,2,f +2813,3795,14,7,f +2813,3829c01,71,1,f +2813,3832,0,2,f +2813,3894,14,4,f +2813,3937,14,8,f +2813,3938,71,8,f +2813,3941,4,4,f +2813,3941,42,2,f +2813,3941,72,18,f +2813,3958,72,3,f +2813,4032a,71,6,f +2813,4070,14,8,f +2813,4150,326,2,f +2813,4150,4,1,f +2813,4150,71,2,f +2813,4150,72,2,f +2813,4150,15,4,f +2813,4162,72,2,f +2813,4162,0,2,f +2813,4175,28,8,f +2813,4176,40,1,f +2813,42003,14,1,f +2813,42446,71,1,f +2813,42446,71,1,t +2813,42511,25,1,f +2813,4274,71,1,t +2813,4274,71,1,f +2813,4274,1,2,f +2813,4274,1,1,t +2813,43722,72,2,f +2813,43723,72,1,f +2813,4460b,14,4,f +2813,44728,72,1,f +2813,44728,0,1,f +2813,4477,72,4,f +2813,4519,71,1,f +2813,45677,326,8,f +2813,4624,71,2,f +2813,47905,72,2,f +2813,4865a,14,8,f +2813,4865a,71,4,f +2813,51011,0,4,f +2813,52501,4,2,f +2813,53451,179,1,f +2813,53451,179,1,t +2813,55013,72,8,f +2813,55981,71,2,f +2813,56891,0,2,f +2813,57028c01,71,1,f +2813,57051,383,2,f +2813,57878,0,4,f +2813,60032,14,8,f +2813,60470b,71,1,f +2813,60474,326,2,f +2813,60478,72,4,f +2813,60481,326,4,f +2813,60601,47,8,f +2813,60657,15,1,f +2813,60658,15,1,f +2813,60897,72,6,f +2813,6141,71,2,t +2813,6141,36,2,f +2813,6141,47,3,t +2813,6141,47,10,f +2813,6141,71,11,f +2813,6141,36,1,t +2813,61485,0,1,f +2813,6180,5,2,f +2813,6232,19,10,f +2813,6232,72,4,f +2813,62462,4,1,f +2813,63868,71,4,f +2813,79104stk01,9999,1,t +2813,85984,14,4,f +2813,85984,72,1,f +2813,86652,71,2,f +2813,87079,14,4,f +2813,87079,15,3,f +2813,87081,4,1,f +2813,87083,72,2,f +2813,87087,72,8,f +2813,87087,484,4,f +2813,88930,2,2,f +2813,91988,71,1,f +2813,92338,72,1,f +2813,92593,0,2,f +2813,92593,326,10,f +2813,92690,70,2,f +2813,92926,4,1,f +2813,92946,72,4,f +2813,93594,179,4,f +2813,95199,72,1,f +2813,96874,25,1,t +2813,970c00pr0473,2,2,f +2813,970c00pr0481,320,1,f +2813,970c00pr0482,73,1,f +2813,970c00pr0507,320,1,f +2813,973pr2262c01,10,1,f +2813,973pr2267c01,2,1,f +2813,973pr2304c01,73,1,f +2813,973pr2305c01,0,1,f +2813,99780,0,1,f +2813,99780,72,1,f +2813,99781,15,2,f +2813,99781,71,4,f +2814,compass,89,1,f +2819,27ac01,4,1,f +2819,29ac01,4,1,f +2819,3081ac01,4,1,f +2819,3087ac01,4,1,f +2819,31ac01,4,1,f +2819,33ac01,4,1,f +2819,453ac01,4,1,f +2819,604ac01,4,1,f +2819,645ac01,4,1,f +2819,646ac01,4,1,f +2821,2357,4,3,f +2821,3004,4,4,f +2821,3004pr20,15,1,f +2821,3020,15,3,f +2821,3022,15,1,f +2821,3022,7,2,f +2821,3023,15,1,f +2821,3023,0,2,f +2821,3024,14,2,f +2821,3039,7,1,f +2821,3039,15,1,f +2821,3040b,4,6,f +2821,3062b,0,2,f +2821,3660,7,1,f +2821,3665,4,2,f +2821,3700,4,2,f +2821,4070,0,1,f +2821,6141,15,1,t +2821,6141,15,4,f +2822,2412b,72,2,f +2822,2420,0,4,f +2822,2431,72,1,f +2822,2432,70,1,f +2822,2540,72,1,f +2822,2555,72,2,f +2822,3021,72,4,f +2822,3023,2,2,f +2822,3034,0,1,f +2822,30374,71,1,f +2822,3068b,288,3,f +2822,3623,0,6,f +2822,3626bpr0516a,78,1,f +2822,3829c01,71,1,f +2822,4070,70,12,f +2822,4081b,72,2,f +2822,42610,71,4,f +2822,43337,40,1,f +2822,44728,0,4,f +2822,47720,0,2,f +2822,4865a,288,6,f +2822,51011,0,4,f +2822,6091,0,4,f +2822,6141,46,1,t +2822,6141,36,1,t +2822,6141,46,2,f +2822,6141,36,2,f +2822,61506,70,1,f +2822,61975,70,1,f +2822,6231,288,6,f +2822,62363,28,1,f +2822,973pr1370c01,308,1,f +2824,2397,1,1,f +2824,2486,0,4,f +2824,2488,2,1,f +2824,3003,14,5,f +2824,3004,0,1,f +2824,3023,0,1,f +2824,3034,0,1,f +2824,3035,0,1,f +2824,3626apr0001,14,2,f +2824,3666,0,2,f +2824,3937,0,4,f +2824,3938,0,4,f +2824,4085b,0,2,f +2824,4488,0,2,f +2824,4489a,6,2,f +2824,4491a,4,1,f +2824,4493c01pb02,0,1,f +2824,4496,6,1,f +2824,4497,6,1,f +2824,4498,6,1,f +2824,4499,6,1,f +2824,4505,0,1,f +2824,4506,2,1,f +2824,4738b,6,1,f +2824,4739b,6,1,f +2824,6141,14,2,f +2824,6141,14,2,t +2824,87692,0,1,t +2824,87693,0,1,f +2824,87694,0,1,t +2824,970c00,2,1,f +2824,970c00,7,1,f +2824,973p46c01,2,1,f +2824,973p46c02,7,1,f +2825,2341,4,2,f +2825,2357,7,1,f +2825,2359p03,19,1,f +2825,2412b,0,2,f +2825,2417,2,1,f +2825,2423,2,4,f +2825,2431,7,1,f +2825,2453a,6,2,f +2825,2454a,7,2,f +2825,2465,7,1,f +2825,2540,0,3,f +2825,2542,6,1,f +2825,2546,8,2,f +2825,2555,0,4,f +2825,2586pw1,19,1,f +2825,2586px3,19,2,f +2825,3001,7,1,f +2825,3002,0,4,f +2825,3002,7,1,f +2825,3003,7,6,f +2825,3003,0,2,f +2825,3003,2,2,f +2825,3004,0,6,f +2825,3004,2,1,f +2825,3004,7,1,f +2825,3004,1,1,f +2825,3004,6,12,f +2825,30041,0,2,f +2825,30042,0,2,f +2825,3005,6,9,f +2825,3005,0,2,f +2825,3005,15,1,f +2825,3005,2,11,f +2825,3006,7,3,f +2825,3008,1,1,f +2825,3008,0,1,f +2825,3008,7,1,f +2825,3009,0,2,f +2825,3009,7,1,f +2825,3010,7,3,f +2825,3010,0,2,f +2825,30113,6,1,f +2825,30114,0,5,f +2825,30115,0,2,f +2825,30126p01,15,7,f +2825,30126p01,15,1,t +2825,30127p01,15,1,t +2825,30127p01,15,8,f +2825,30129,6,4,f +2825,30131,6,2,f +2825,30136,6,5,f +2825,30137,6,8,f +2825,30138pb01,15,1,f +2825,3020,7,1,f +2825,3021,0,1,f +2825,3023,6,1,f +2825,3023,2,1,f +2825,3023,1,1,f +2825,3023,0,2,f +2825,3032,0,1,f +2825,3035,0,1,f +2825,3036,0,1,f +2825,3040b,1,5,f +2825,3040b,15,2,f +2825,3040b,4,5,f +2825,3062b,14,2,f +2825,3062b,36,2,f +2825,3062b,7,1,f +2825,3062b,6,2,f +2825,3068b,7,4,f +2825,3069b,0,1,f +2825,3460,1,1,f +2825,3622,7,7,f +2825,3622,0,5,f +2825,3623,6,1,f +2825,3626bpx57,14,2,f +2825,3626bpx58,14,2,f +2825,3626bpx59,14,1,f +2825,3626bpx60,14,1,f +2825,3626bpx61,14,1,f +2825,3665,4,3,f +2825,3665,1,1,f +2825,3666,7,2,f +2825,3679,7,4,f +2825,3680,0,4,f +2825,3710,0,2,f +2825,3794a,4,3,f +2825,3795,0,5,f +2825,3795,7,1,f +2825,3835,0,4,f +2825,3857,19,2,f +2825,3941,6,8,f +2825,4070,15,2,f +2825,4070,4,2,f +2825,4070,1,2,f +2825,4213,0,1,f +2825,4282,0,3,f +2825,4286,15,1,f +2825,4287,15,2,f +2825,4315,0,1,f +2825,4491b,2,1,f +2825,4491b,1,1,f +2825,4493c01px2,6,1,f +2825,4493cx6,15,1,f +2825,4497,0,6,f +2825,4498,0,5,f +2825,4499,0,5,f +2825,4515,1,3,f +2825,4515,0,1,f +2825,4529,0,1,f +2825,4865a,0,1,f +2825,4865a,7,4,f +2825,6020,6,4,f +2825,6021,6,1,f +2825,6064,2,4,f +2825,6082,7,5,f +2825,6083,7,3,f +2825,6107,7,8,f +2825,6111,7,2,f +2825,6112,7,1,f +2825,6126a,57,3,f +2825,6141,57,4,f +2825,6141,57,1,t +2825,6541,7,8,f +2825,6558,0,4,f +2825,6628,0,2,f +2825,970c00pb025,4,1,f +2825,970c00pb026,19,2,f +2825,970c02pb01,19,2,f +2825,970c02pb02,19,2,f +2825,973px103c01,19,2,f +2825,973px104c01,4,2,f +2825,973px105c01,19,1,f +2825,973px106c01,19,1,f +2825,973px107c01,6,1,f +2825,x172px1,15,1,f +2825,x172px2,15,1,f +2826,10247,4,4,f +2826,10830pat0001,0,1,f +2826,11476,71,1,f +2826,11477,322,2,f +2826,11477,27,4,f +2826,11477,71,2,f +2826,13971,71,4,f +2826,14418,71,2,f +2826,14718,27,4,f +2826,15068,322,4,f +2826,15068,72,1,f +2826,15207,4,1,f +2826,15210,72,2,f +2826,15712,71,4,f +2826,20684,47,1,f +2826,20691pr0003,84,1,f +2826,21042pr0001,84,1,f +2826,21787,84,1,f +2826,21788,226,1,f +2826,22552,78,1,f +2826,2412b,72,2,f +2826,2417,288,2,f +2826,2431,71,4,f +2826,2431,322,5,f +2826,2431,27,2,f +2826,2432,71,2,f +2826,2736,71,2,f +2826,3001,71,3,f +2826,3004,15,5,f +2826,3004,14,1,f +2826,3004,25,4,f +2826,3005,322,4,f +2826,30089,0,1,f +2826,3010,70,2,f +2826,30153,42,1,f +2826,3020,15,2,f +2826,3020,322,6,f +2826,3021,25,4,f +2826,3022,14,1,f +2826,3022,72,5,f +2826,3022,19,1,f +2826,3023,72,4,f +2826,3023,322,6,f +2826,3023,70,1,f +2826,30237a,72,1,f +2826,3029,322,1,f +2826,3031,2,1,f +2826,3032,71,1,f +2826,3034,322,1,f +2826,30383,72,2,f +2826,3039,71,1,f +2826,30414,71,6,f +2826,30553,71,2,f +2826,3068b,19,1,f +2826,3068bpr0269,15,1,f +2826,3069b,322,4,f +2826,3069b,27,1,f +2826,3069bp02,71,1,f +2826,3070b,322,4,f +2826,3070b,322,1,t +2826,32062,0,2,f +2826,32064a,72,4,f +2826,33183,70,1,t +2826,33183,70,2,f +2826,3456,72,1,f +2826,3623,322,14,f +2826,3626cpr1741,78,1,f +2826,3626cpr1744,158,1,f +2826,3666,322,4,f +2826,3666,72,4,f +2826,3666,25,1,f +2826,3678b,322,4,f +2826,3710,71,1,f +2826,3710,72,2,f +2826,3794b,15,5,f +2826,3795,14,1,f +2826,3795,71,6,f +2826,3829c01,4,1,f +2826,3832,72,1,f +2826,3941,70,3,f +2826,4032a,308,2,f +2826,4032a,2,1,f +2826,41769,322,2,f +2826,41770,322,2,f +2826,43710,27,2,f +2826,43711,27,2,f +2826,43898pr1002,27,1,f +2826,4599b,15,1,f +2826,4599b,15,1,t +2826,4740pr0010,27,4,f +2826,54200,71,4,f +2826,54200,71,1,t +2826,59443,70,2,f +2826,60481,70,2,f +2826,6111,71,2,f +2826,61254,0,4,f +2826,6141,4,2,t +2826,6141,70,1,t +2826,6141,4,9,f +2826,6141,70,2,f +2826,6180,322,2,f +2826,6231,15,2,f +2826,6259,70,1,f +2826,64567,0,1,t +2826,64567,0,1,f +2826,6587,28,4,f +2826,73983,322,4,f +2826,75c08,71,2,f +2826,75c08,71,1,t +2826,87087,71,2,f +2826,87609,25,3,f +2826,88072,71,1,f +2826,88930,27,5,f +2826,92593,27,1,f +2826,93274,72,1,f +2826,93606,27,4,f +2826,970c00,320,1,f +2826,970c00,321,1,f +2826,970c00,308,1,f +2826,973pr3062c01,27,1,f +2826,973pr3103c01,326,1,f +2826,973pr3106c01,15,1,f +2826,98138,36,1,t +2826,98138,182,1,t +2826,98138,182,4,f +2826,98138,36,2,f +2826,98138,47,2,t +2826,98138,47,4,f +2826,98284,70,2,f +2826,99206,15,4,f +2826,99206,71,4,f +2826,99781,71,1,f +2827,2780,0,30,f +2827,2780,0,2,t +2827,2825,0,2,f +2827,32016,1,2,f +2827,32054,71,10,f +2827,32054,0,6,f +2827,32062,4,6,f +2827,32073,71,1,f +2827,32123b,71,2,t +2827,32123b,71,8,f +2827,32138,0,2,f +2827,32184,0,4,f +2827,32192,0,2,f +2827,32271,0,3,f +2827,32278,0,2,f +2827,32291,71,1,f +2827,32523,1,4,f +2827,32524,1,4,f +2827,32525,0,3,f +2827,32526,1,3,f +2827,3706,0,2,f +2827,3713,71,2,t +2827,3713,71,5,f +2827,40490,1,1,f +2827,41239,1,4,f +2827,41677,0,2,f +2827,41896,71,1,f +2827,42003,71,1,f +2827,4274,1,2,t +2827,4274,1,5,f +2827,43093,1,13,f +2827,44294,71,6,f +2827,44809,0,4,f +2827,4519,71,9,f +2827,45982,0,1,f +2827,47298,135,4,f +2827,48989,71,2,f +2827,49423,0,2,f +2827,50858,135,2,f +2827,56145,0,3,f +2827,57528,135,2,f +2827,57543,135,2,f +2827,60176,0,4,f +2827,60483,72,5,f +2827,60485,71,2,f +2827,60894,0,1,f +2827,60894,1,1,f +2827,60896,0,4,f +2827,60896,73,4,f +2827,60917,135,2,f +2827,61481,0,3,f +2827,61801,135,4,f +2827,61805,135,4,f +2827,62462,0,1,f +2827,64178,71,1,f +2827,64251,1,4,f +2827,64262,143,2,f +2827,64275,135,2,f +2827,64277c01,297,1,f +2827,64330,135,2,f +2827,64889pr0001,135,2,f +2827,6536,0,13,f +2827,6553,0,4,f +2827,6558,1,13,f +2827,6587,72,2,f +2827,6629,1,1,f +2827,6632,71,1,f +2827,78c04,135,2,f +2827,78c09,135,2,f +2828,2654,27,1,f +2828,3004,25,2,f +2828,3022,25,1,f +2828,30374,70,1,f +2828,3848,72,1,f +2828,4643656,9999,1,f +2828,4643657,9999,1,f +2828,4643658,9999,3,f +2828,4643659,9999,1,f +2828,4643660,9999,1,f +2828,53451,15,1,f +2828,53451,15,1,t +2828,92338,0,1,f +2828,970c00pr0271,15,1,f +2828,973pr1885c01,15,1,f +2828,98136,297,1,f +2828,98148pr0002,4,1,f +2828,98342pr0004,14,1,f +2828,98354pr0004,4,1,f +2829,15989,10,1,f +2829,3437,25,1,f +2829,3437,14,1,f +2829,98223,4,1,f +2829,98252,4,1,f +2829,98252,27,1,f +2833,45463,236,2,f +2833,46286,236,2,f +2833,clikits004,230,2,f +2833,clikits005,230,2,f +2834,73129,7,4,f +2839,117282,9999,1,f +2839,2420,0,8,f +2839,2420,14,6,f +2839,2431,14,4,f +2839,2445,14,2,f +2839,2695,15,4,f +2839,2696,0,4,f +2839,2711,0,2,f +2839,2719,7,2,f +2839,2730,14,2,f +2839,2780,0,1,t +2839,2780,0,32,f +2839,2825,7,10,f +2839,2838c01,7,2,f +2839,2840c01,0,1,f +2839,2854,7,2,f +2839,2856c01,7,1,f +2839,3005,0,4,f +2839,3021,0,4,f +2839,3022,0,2,f +2839,3022,14,5,f +2839,3023,0,16,f +2839,3023,14,18,f +2839,3068b,0,12,t +2839,3068b,0,4,f +2839,3069b,14,4,f +2839,3460,0,2,f +2839,3460,14,2,f +2839,3622,0,1,f +2839,3623,14,4,f +2839,3623,0,4,f +2839,3647,7,12,f +2839,3647,7,1,t +2839,3648a,7,3,f +2839,3649,7,2,f +2839,3650a,7,6,f +2839,3651,7,2,f +2839,3665,0,4,f +2839,3666,14,4,f +2839,3666,0,8,f +2839,367,7,1,f +2839,3673,7,15,f +2839,3700,14,10,f +2839,3700,0,15,f +2839,3701,0,6,f +2839,3701,14,9,f +2839,3702,0,8,f +2839,3702,14,6,f +2839,3703,14,8,f +2839,3703,0,4,f +2839,3704,0,4,f +2839,3705,0,5,f +2839,3705b,0,2,f +2839,3706,0,5,f +2839,3707,0,11,f +2839,3708,0,2,f +2839,3709,14,4,f +2839,3709,0,6,f +2839,3710,14,10,f +2839,3710,0,11,f +2839,3713,7,1,t +2839,3713,7,20,f +2839,3737,0,6,f +2839,3738,14,2,f +2839,3738,0,4,f +2839,3743,7,18,f +2839,3749,7,18,f +2839,3795,0,4,f +2839,3795,14,3,f +2839,3832,14,2,f +2839,3894,0,10,f +2839,3894,14,12,f +2839,3895,14,6,f +2839,3895,0,6,f +2839,4019,7,6,f +2839,4143,7,8,f +2839,4162,14,8,f +2839,4185,7,4,f +2839,4262,7,4,f +2839,4265a,7,28,f +2839,4265a,7,1,t +2839,4273b,7,4,f +2839,4274,7,1,t +2839,4274,7,6,f +2839,4477,0,4,f +2839,4519,0,6,f +2839,4698,7,6,f +2839,4698,7,1,t +2839,4716,0,3,f +2839,5306bc036,0,2,f +2839,5306bc162,0,2,f +2839,70163,0,1,f +2839,70496,0,1,f +2839,85544,15,2,f +2839,85545,15,2,f +2839,9244,7,2,f +2839,bb94,15,1,f +2839,x245px1,0,1,f +2841,28193,0,1,f +2841,28644,0,1,f +2841,3626cpr2007,14,1,f +2841,88646,0,1,f +2841,93555,179,2,f +2841,973pr3517c01,0,1,f +2843,3001,0,1,f +2843,3003,0,1,f +2843,3034,2,2,f +2843,30474pb01,4,1,f +2843,3137c01,0,1,f +2843,3298,0,1,f +2843,3641,0,2,f +2843,3747b,0,1,f +2843,3795,0,3,f +2843,4745,14,1,f +2843,6232,2,1,f +2845,2780,0,2,f +2845,32062,0,4,f +2845,32174,72,2,f +2845,32270,71,2,f +2845,32475,72,2,f +2845,32476,86,2,f +2845,32533pb334,21,1,f +2845,3749,19,2,f +2845,44135,72,1,f +2845,44810,86,1,f +2845,4519,71,2,f +2845,47296,72,2,f +2845,47328,86,2,f +2845,47330,86,1,f +2845,47331,86,1,f +2845,47332,86,1,f +2845,47334,179,1,f +2845,48446,179,2,f +2845,x1190,33,1,f +2846,2570,8,1,f +2846,2586p4b,7,1,f +2846,3004,0,1,f +2846,3023,0,1,f +2846,3626bp35,14,1,f +2846,3626bpx122,14,1,f +2846,3626bpx96,14,1,f +2846,3626bpx97,14,1,f +2846,3844,0,1,f +2846,3846p44,7,1,f +2846,3847,8,3,f +2846,4491b,4,1,f +2846,4493c01pb02,0,1,f +2846,4497,6,1,f +2846,4505,6,1,f +2846,4524,4,1,f +2846,4524,0,1,f +2846,6122,0,2,f +2846,6123,8,1,f +2846,87685,14,1,f +2846,87685,1,1,f +2846,87686,1,1,f +2846,87686,14,1,f +2846,87687,1,1,f +2846,87687,14,1,f +2846,970d02,4,1,f +2846,970x021,0,1,f +2846,970x026,7,2,f +2846,973p44c02,6,1,f +2846,973p4bc02,4,1,f +2846,973pb0074c02,4,1,f +2846,973pb0105c02,4,1,f +2846,x375px1,14,1,f +2847,2412b,80,2,f +2847,2431,0,2,f +2847,2436,71,1,f +2847,2780,0,5,f +2847,2780,0,1,t +2847,2817,71,1,f +2847,2994,0,2,f +2847,3003,0,1,f +2847,3021,71,2,f +2847,3023,4,5,f +2847,3031,0,1,f +2847,30414,72,2,f +2847,32000,71,1,f +2847,32013,72,2,f +2847,32016,71,2,f +2847,32062,4,4,f +2847,32064b,0,2,f +2847,32123b,71,4,f +2847,32123b,71,1,t +2847,32146,0,2,f +2847,32184,0,2,f +2847,32449,0,4,f +2847,3460,4,2,f +2847,3666,0,2,f +2847,3701,0,3,f +2847,3705,0,2,f +2847,3709,4,3,f +2847,3710,4,3,f +2847,3713,71,1,t +2847,3713,71,4,f +2847,3737,0,1,f +2847,3749,19,2,f +2847,3795,72,1,f +2847,3795,0,1,f +2847,41669,36,2,f +2847,41747,0,1,f +2847,41748,0,1,f +2847,41855,0,2,f +2847,43093,1,8,f +2847,43722,0,2,f +2847,43723,0,2,f +2847,44126,0,1,f +2847,4519,71,2,f +2847,45677,0,3,f +2847,47905,0,2,f +2847,50950,4,2,f +2847,50950,72,2,f +2847,50967,0,2,f +2847,54802,0,1,f +2847,6141,36,1,t +2847,6141,36,4,f +2847,6536,0,2,f +2847,6578,0,2,f +2848,32bc01,4,13,f +2848,32bc01,15,13,f +2851,30287pr01,272,1,f +2851,30368,0,1,f +2851,30374,36,1,f +2851,3626b,0,1,f +2851,3626bpr0342,78,1,f +2851,3626bpr0402,71,1,f +2851,44360,15,1,f +2851,50231,0,1,f +2851,58247,0,2,f +2851,64567,80,1,f +2851,970c00,0,1,f +2851,970c00pr0074,19,1,f +2851,970x194,15,1,f +2851,973pr1142c01,272,1,f +2851,973pr1344c01,15,1,f +2851,973pr1469c01,0,1,f +2852,13608,179,2,f +2852,2447,47,2,f +2852,3626cpr0792,14,1,f +2852,3626cpr0807,14,1,f +2852,3626cpr0812,14,1,f +2852,4449,70,1,f +2852,6141,42,2,f +2852,62810,0,1,f +2852,87781,321,2,f +2852,95199,72,2,f +2852,95202pr0001,27,1,f +2852,95203pr0002,27,1,f +2852,970c00,272,1,f +2852,970c00pb120,321,2,f +2852,970c00pr0223,0,1,f +2852,970c00pr0231,0,1,f +2852,973pr1774c01,0,1,f +2852,973pr1775c01,0,1,f +2852,973pr1776c01,272,1,f +2852,973pr1785c01,321,2,f +2853,2431,0,4,f +2853,2555,0,1,f +2853,2570,135,1,f +2853,2586p4h,71,1,f +2853,2654,71,1,f +2853,2780,0,13,f +2853,2780,0,1,t +2853,2877,70,2,f +2853,3022,0,1,f +2853,30293,72,1,f +2853,30294,72,1,f +2853,3031,70,1,f +2853,3031,4,1,f +2853,3032,70,3,f +2853,30383,0,2,f +2853,3048c,297,10,f +2853,30503,0,2,f +2853,30553,0,2,f +2853,32064b,0,2,f +2853,32523,0,2,f +2853,32530,72,2,f +2853,32532,0,1,f +2853,32556,71,2,f +2853,3403,0,1,f +2853,3404,0,1,f +2853,3626bpr0325,14,1,f +2853,3626bpr0458,14,1,f +2853,3626bpr0494,15,1,f +2853,3626bpr0496,0,1,f +2853,3700,72,2,f +2853,3701,72,2,f +2853,3710,70,3,f +2853,3749,19,4,f +2853,3794a,72,1,f +2853,3844,80,2,f +2853,3846pr24,71,2,f +2853,3847,135,1,f +2853,41239,0,2,f +2853,4424,70,1,f +2853,44301a,72,2,f +2853,44302a,4,2,f +2853,4460a,272,4,f +2853,44728,71,1,f +2853,4497,135,3,f +2853,4589,15,2,f +2853,48493,132,1,f +2853,48723,70,2,f +2853,53451,15,2,f +2853,53451,15,1,t +2853,59230,15,1,t +2853,59230,0,1,t +2853,59230,0,2,f +2853,59230,15,2,f +2853,59231pr0001,72,1,f +2853,59232,135,1,f +2853,60115,0,1,f +2853,60115,15,1,f +2853,6222,70,4,f +2853,6266,15,1,t +2853,6266,0,2,f +2853,6266,15,2,f +2853,6266,0,1,t +2853,6636,0,2,f +2853,970x026,71,2,f +2853,973pr1318c01,272,2,f +2854,3794a,15,20,f +2854,3794a,7,20,f +2854,3794a,0,20,f +2854,3794a,8,20,f +2855,12825,71,4,f +2855,2376,0,1,f +2855,2412b,72,4,f +2855,2566,0,2,f +2855,30033,0,1,f +2855,3005,25,4,f +2855,30162,72,2,f +2855,3022,0,2,f +2855,3023,47,2,f +2855,3023,25,3,f +2855,3023,15,4,f +2855,3024,15,1,f +2855,30359b,47,1,f +2855,30374,45,2,f +2855,3070b,25,1,t +2855,3070b,25,4,f +2855,3665,0,4,f +2855,3710,71,1,f +2855,3795,0,2,f +2855,4006,0,1,f +2855,4032a,72,2,f +2855,4085c,25,8,f +2855,4595,0,3,f +2855,54200,25,6,f +2855,54200,25,1,t +2855,59900,25,2,f +2855,6141,72,1,t +2855,6141,72,5,f +2855,6179pr40,0,1,f +2855,87580,0,1,f +2855,92754pr01,72,2,f +2855,92755pr01,72,1,f +2855,92947,71,2,f +2855,98107pr0002,84,2,f +2856,2717,14,1,f +2856,2730,0,2,f +2856,2780,0,1,t +2856,2780,0,18,f +2856,2819,7,1,f +2856,2905,7,2,f +2856,3069b,7,2,f +2856,32001,7,1,f +2856,32002,8,1,t +2856,32002,8,2,f +2856,32009,0,2,f +2856,32018,0,2,f +2856,32034,0,1,f +2856,32054,14,6,f +2856,32056,0,2,f +2856,32062,0,4,f +2856,32068,0,3,f +2856,32069,0,2,f +2856,32073,0,1,f +2856,32123b,7,15,f +2856,32123b,7,1,t +2856,32138,14,1,f +2856,32140,7,2,f +2856,32184,7,1,f +2856,32270,7,2,f +2856,32291,22,2,f +2856,32523,7,2,f +2856,32530,7,2,f +2856,3647,7,1,t +2856,3647,7,2,f +2856,3648b,7,1,f +2856,3666,7,2,f +2856,3701,0,2,f +2856,3703,7,2,f +2856,3705,0,5,f +2856,3706,0,2,f +2856,3707,0,1,f +2856,3709,7,1,f +2856,3710,22,2,f +2856,3713,7,1,t +2856,3713,7,3,f +2856,3749,7,6,f +2856,3894,7,2,f +2856,4519,0,2,f +2856,6536,7,1,f +2856,6538b,7,1,f +2856,6558,0,6,f +2856,6579,0,4,f +2856,6580,14,4,f +2856,6587,8,2,f +2856,6630,7,1,f +2856,6632,0,2,f +2856,6632,7,2,f +2856,75535,0,2,f +2857,2717,2,1,f +2857,2730,2,2,f +2857,2744,2,2,f +2857,2780,0,2,f +2857,2994,15,4,f +2857,3021,2,1,f +2857,32002,8,1,t +2857,32002,8,2,f +2857,32013,2,1,f +2857,32013,0,2,f +2857,32014,2,1,f +2857,32017,2,2,f +2857,32034,0,4,f +2857,32039,2,1,f +2857,32054,2,2,f +2857,32062,0,3,f +2857,32064b,2,3,f +2857,32072,15,4,f +2857,32123b,7,5,t +2857,32123b,7,2,f +2857,3298,0,1,f +2857,3705,0,4,f +2857,3706,0,2,f +2857,3707,0,2,f +2857,3708,0,2,f +2857,3713,7,1,t +2857,3713,7,6,f +2857,3749,7,1,f +2857,3749,7,1,t +2857,3894,2,2,f +2857,4282,0,2,f +2857,4519,0,1,f +2857,6536,0,4,f +2857,6536,7,5,f +2857,6558,0,1,f +2857,6578,0,4,f +2857,6587,8,4,f +2857,6632,15,2,f +2857,6632,0,6,f +2857,75c24,15,2,f +2857,rb00168,0,2,f +2857,rb00168,0,3,t +2859,11477,4,2,f +2859,15068pr0006,4,1,f +2859,15573,15,1,f +2859,15712,0,1,f +2859,2412b,15,2,f +2859,2447,40,1,f +2859,2447,40,1,t +2859,30031,72,1,f +2859,30194,72,1,f +2859,3020,1,1,f +2859,3022,72,2,f +2859,3023,72,2,f +2859,3023,36,1,f +2859,3031,71,1,f +2859,3062b,14,1,f +2859,3070b,4,2,f +2859,3070b,4,1,t +2859,32039,71,2,f +2859,3622,72,2,f +2859,3626cpr1826,14,1,f +2859,3705,0,1,f +2859,3795,71,1,f +2859,3834,15,1,f +2859,3838,14,1,f +2859,41669,4,1,f +2859,44674,4,1,f +2859,4599b,14,1,f +2859,4599b,14,1,t +2859,4871,72,1,f +2859,58176,33,2,f +2859,6014b,71,4,f +2859,60212,4,1,f +2859,60594,72,1,f +2859,60897,71,4,f +2859,6126b,182,2,f +2859,6141,46,2,f +2859,6141,46,1,t +2859,6157,0,2,f +2859,6158,72,1,f +2859,6541,72,1,f +2859,85984,14,1,f +2859,87697,0,4,f +2859,970c00pr0408,0,1,f +2859,973pr2188c01,0,1,f +2859,98283,84,3,f +2859,99781,71,1,f +2860,2343,14,1,f +2860,2362b,6,4,f +2860,2431,8,1,f +2860,2432,8,3,f +2860,2444,7,2,f +2860,2454a,7,1,f +2860,2470,0,2,f +2860,2489,6,1,f +2860,2540,0,1,f +2860,2566,0,1,f +2860,3001,6,1,f +2860,3002,2,2,f +2860,3003,8,1,f +2860,3004,8,8,f +2860,3004,7,12,f +2860,30044,7,2,f +2860,30046,0,3,f +2860,3005,7,12,f +2860,30055,6,1,f +2860,3009,7,3,f +2860,3009,2,1,f +2860,3009,0,1,f +2860,3010,7,3,f +2860,3010,19,1,f +2860,30136,19,2,f +2860,30136,6,9,f +2860,30137,6,5,f +2860,30176,2,5,f +2860,3020,6,1,f +2860,3020,2,1,f +2860,3022,6,1,f +2860,3023,7,1,f +2860,30237a,7,1,f +2860,30238,57,1,f +2860,30246,7,1,f +2860,3031,0,2,f +2860,3032,0,1,f +2860,3038,2,12,f +2860,3062b,34,1,f +2860,3062b,19,19,f +2860,3062b,0,1,f +2860,3062b,57,1,f +2860,3062b,15,1,f +2860,3185,7,1,f +2860,32059,7,1,f +2860,3300,6,1,f +2860,33009px4,8,1,f +2860,3403c01,0,1,f +2860,3455,8,1,f +2860,3581,8,1,f +2860,3614b,7,8,f +2860,3622,8,4,f +2860,3626bpr0374,14,1,f +2860,3626bpr0377,14,1,f +2860,3659,8,2,f +2860,3660,8,7,f +2860,3665,19,2,f +2860,3665,8,1,f +2860,3666,7,1,f +2860,3673,7,2,f +2860,3700,0,2,f +2860,3710,7,2,f +2860,3710,8,1,f +2860,3710,19,2,f +2860,3710,0,4,f +2860,3754,7,2,f +2860,3754px3,7,2,f +2860,3794a,2,9,f +2860,3795,19,1,f +2860,3830,0,14,f +2860,3831,0,14,f +2860,3841,8,1,f +2860,3899,4,1,f +2860,3937,0,3,f +2860,3938,7,3,f +2860,3959,8,1,f +2860,40232,19,1,f +2860,40234,15,1,f +2860,40238,0,1,f +2860,40239,7,1,f +2860,40241,6,1,f +2860,40250pr01,6,1,f +2860,4032a,7,1,f +2860,40362px1,9999,1,f +2860,41535,378,1,f +2860,4161,2,4,f +2860,4286,19,2,f +2860,4438,0,1,f +2860,4488,7,2,f +2860,4623,7,2,f +2860,4740,0,1,f +2860,4864b,7,4,f +2860,4865a,7,2,f +2860,50231,22,1,f +2860,6106,7,8,f +2860,6126a,57,2,f +2860,6132,7,1,f +2860,6141,42,1,t +2860,6141,8,1,t +2860,6141,4,1,f +2860,6141,8,8,f +2860,6141,42,1,f +2860,6141,4,1,t +2860,6182,0,1,f +2860,62808,60,2,f +2860,6541,8,1,f +2860,6587,8,1,f +2860,6636,6,8,f +2860,75347,0,1,f +2860,970c00pb001,22,1,f +2860,973px149c01,22,1,f +2860,rb00169,0,3,t +2860,rb00169,0,1,f +2861,10201,0,1,f +2861,11477,0,2,f +2861,11477,4,2,f +2861,13608,179,1,f +2861,14769,4,2,f +2861,15712,0,1,f +2861,18868a,41,2,f +2861,19981pr0010,41,1,f +2861,19981pr0011,41,1,f +2861,2412b,15,2,f +2861,2460,15,1,f +2861,2540,72,1,f +2861,30028,0,4,f +2861,3020,0,2,f +2861,3022,2,1,f +2861,3022,15,1,f +2861,3023,4,1,f +2861,3023,2,1,f +2861,30374,70,1,f +2861,30602,40,1,f +2861,3062b,0,1,f +2861,3062b,4,1,f +2861,3176,288,2,f +2861,3626cpr0899,15,1,f +2861,3626cpr1763,15,1,f +2861,3700,0,1,f +2861,3710,2,1,f +2861,3788,4,1,f +2861,3839b,15,2,f +2861,3839b,0,1,f +2861,3941,0,2,f +2861,3941,41,2,f +2861,4081b,0,2,f +2861,4081b,26,2,f +2861,4274,71,1,t +2861,4274,71,1,f +2861,4495b,4,1,f +2861,4596,71,1,f +2861,4600,71,2,f +2861,4733,0,2,f +2861,4865a,40,1,f +2861,54200,85,1,t +2861,54200,0,1,f +2861,54200,4,1,f +2861,54200,4,1,t +2861,54200,0,1,t +2861,54200,85,2,f +2861,59900,182,2,f +2861,6141,0,1,t +2861,6141,46,2,f +2861,6141,85,2,f +2861,6141,0,2,f +2861,6141,182,2,f +2861,6141,46,1,t +2861,6141,85,1,t +2861,6141,182,1,t +2861,62537pr0002,4,1,f +2861,64798,2,1,f +2861,74967,15,4,f +2861,85973,0,1,f +2861,87994,0,1,t +2861,87994,0,1,f +2861,92842,0,1,f +2861,970c00,85,1,f +2861,970d03pr0302,4,1,f +2861,973pr0297c01,85,1,f +2861,973pr1951bc01,4,1,f +2861,98138,15,5,f +2861,98138,15,1,t +2861,99780,72,2,f +2861,99781,0,1,f +2863,3020,0,2,f +2863,3022,71,2,f +2863,3023,25,5,f +2863,3024,36,2,f +2863,3031,0,1,f +2863,3040b,25,1,f +2863,30602,25,1,f +2863,3710,25,1,f +2863,43722,25,1,f +2863,43723,25,1,f +2863,44301a,0,8,f +2863,44301a,72,2,f +2863,44302a,0,6,f +2863,44302a,72,3,f +2863,44567a,72,1,f +2864,11477,15,2,f +2864,14417,72,1,f +2864,14704,71,1,f +2864,15070,15,2,f +2864,15208,15,2,f +2864,15573,15,2,f +2864,2412b,15,4,f +2864,3003,19,1,f +2864,3004,70,2,f +2864,3005,72,2,f +2864,3020,19,2,f +2864,3022,71,2,f +2864,3023,71,7,f +2864,3679,71,1,f +2864,3680,15,1,f +2864,44728,15,1,f +2864,54200,0,2,f +2864,60897,71,2,f +2864,6091,28,8,f +2864,6141,0,1,f +2864,87087,71,4,f +2864,98138pr0008,15,2,f +2865,3873,0,54,f +2866,2512,14,1,f +2866,3023,0,1,f +2866,3795,14,1,f +2866,3829c01,1,1,f +2866,3837,72,1,f +2866,3937,14,1,f +2866,4079,14,1,f +2866,4085c,0,2,f +2866,4589,182,1,f +2866,4865a,14,1,f +2866,6014b,14,4,f +2866,6015,0,4,f +2866,6134,0,1,f +2866,6157,71,2,f +2866,63965,71,1,f +2867,2412b,1,3,f +2867,2420,0,4,f +2867,2420,1,2,f +2867,2431,1,3,f +2867,2436,0,4,f +2867,2540,0,1,f +2867,3001,1,2,f +2867,30027b,0,4,f +2867,30028,0,4,f +2867,3021,0,1,f +2867,3022,1,2,f +2867,3023,0,1,f +2867,3023,36,2,f +2867,3024,1,2,f +2867,3031,0,1,f +2867,3037,0,1,f +2867,30602,1,1,f +2867,3788,1,1,f +2867,44674,0,1,f +2867,4865a,0,1,f +2867,50943,80,1,f +2867,50949,0,1,f +2867,54200,294,2,f +2867,54200,1,4,f +2867,6157,0,2,f +2868,2335,4,5,f +2868,2335,1,5,f +2868,2412b,0,6,f +2868,2458,15,4,f +2868,2460,15,4,f +2868,2465,15,2,f +2868,2540,0,10,f +2868,3003,15,8,f +2868,3004,15,8,f +2868,30043,4,4,f +2868,3006,7,4,f +2868,3010,15,4,f +2868,3020,4,8,f +2868,3021,0,16,f +2868,3022,4,46,f +2868,3023,7,12,f +2868,3037,15,4,f +2868,3039,15,8,f +2868,30488,7,2,f +2868,30488c01,15,5,f +2868,30488c01,0,5,f +2868,30489,2,10,f +2868,30492,2,2,f +2868,30493,0,2,f +2868,3068b,2,46,f +2868,32064b,7,16,f +2868,3403c01,0,2,f +2868,3626bp03,14,2,f +2868,3626bp05,14,2,f +2868,3626bpa3,14,2,f +2868,3626bpb0103,14,2,f +2868,3626bpx134,14,2,f +2868,3626bpx33,14,2,f +2868,3700,15,8,f +2868,3710,15,4,f +2868,3900,7,8,f +2868,3901,6,4,f +2868,3901,0,4,f +2868,3901,19,2,f +2868,3957a,15,4,f +2868,41732,4,2,f +2868,41733,4,2,f +2868,4176,15,14,f +2868,41819c01,2,2,f +2868,4204,2,2,f +2868,4476b,15,4,f +2868,4477,15,10,f +2868,4485,15,1,f +2868,4485,0,1,f +2868,4495b,4,4,f +2868,4871,7,12,f +2868,6636,15,2,f +2868,71509,0,4,f +2868,72824p01,15,2,f +2868,72824pr02,15,1,f +2868,78c11,15,4,f +2868,970c00,1,5,f +2868,970c00,15,5,f +2868,970c00,7,1,f +2868,970c00,8,1,f +2868,973pb0165c01,0,1,f +2868,973pb0166c01,0,1,f +2868,973pb0167c01,4,1,f +2868,973pb0168c01,15,1,f +2868,973pb0169c01,4,1,f +2868,973pb0170c01,15,1,f +2868,973pb0171c01,4,1,f +2868,973pb0172c01,15,1,f +2868,973pb0173c01,4,1,f +2868,973pb0174c01,15,1,f +2868,973pb0175c01,4,1,f +2868,973pb0176c01,15,1,f +2868,x386,15,2,f +2870,2530,72,1,f +2870,30153,42,1,f +2870,30173b,179,1,t +2870,30173b,179,1,f +2870,30238,0,1,f +2870,3626cpr1571,14,1,f +2870,53451,25,1,f +2870,62711,0,1,f +2870,970c00pr0772,0,1,f +2870,973pr2859c01,0,1,f +2870,98132,0,1,f +2871,3021,14,1,f +2871,3022,14,1,f +2871,3062b,0,2,f +2871,3314,0,1,f +2871,3317,14,1,f +2871,3641,0,2,f +2871,3795,14,1,f +2871,3829c01,14,1,f +2871,4070,14,2,f +2871,4079,4,1,f +2871,4084,0,2,f +2871,4600,0,2,f +2871,4624,14,4,f +2871,6141,47,2,f +2871,784,14,1,f +2872,2362a,41,3,f +2872,2412b,15,4,f +2872,2431,0,2,f +2872,2431,15,1,f +2872,2445,0,1,f +2872,2446,15,2,f +2872,2447,41,2,f +2872,2723,15,2,f +2872,30027a,15,10,f +2872,30028,0,10,f +2872,3004,1,2,f +2872,3010,1,8,f +2872,30133,15,1,f +2872,3020,1,2,f +2872,3022,7,1,f +2872,3022,4,4,f +2872,3023,0,2,f +2872,3024,46,4,f +2872,3024,15,1,f +2872,3024,33,4,f +2872,3024,36,2,f +2872,3037,1,1,f +2872,3069b,15,3,f +2872,3070b,15,3,f +2872,3314stk01,9999,1,t +2872,3623,15,4,f +2872,3624,0,1,f +2872,3626bp02,14,1,f +2872,3626bp04,14,2,f +2872,3626bpx78,14,1,f +2872,3666,15,2,f +2872,3710,15,2,f +2872,3710,1,2,f +2872,3821,1,2,f +2872,3822,1,2,f +2872,3823,41,2,f +2872,3829c01,15,2,f +2872,3832,0,1,f +2872,3962b,0,1,f +2872,4079,7,1,f +2872,4085c,0,3,f +2872,4211,1,2,f +2872,4213,1,5,f +2872,4214,1,2,f +2872,4215b,41,2,f +2872,4349,4,1,f +2872,4477,15,1,f +2872,4485,0,1,f +2872,4600,7,5,f +2872,4625,15,3,f +2872,4697b,7,2,f +2872,6016,7,3,f +2872,6019,7,1,f +2872,6182,1,1,f +2872,6556,1,2,f +2872,970c00,0,2,f +2872,970c00,7,2,f +2872,973p28c01,0,1,f +2872,973px67c01,0,1,f +2872,973px9c01,0,2,f +2873,10052,71,1,f +2873,10113,0,1,f +2873,11477,0,2,f +2873,11477,272,14,f +2873,11477,71,2,f +2873,15068,272,1,f +2873,15341,179,3,f +2873,15427pr0001,0,1,f +2873,15428pr0001,0,1,f +2873,15535,72,1,f +2873,15573,0,2,f +2873,15573,272,4,f +2873,15706,322,8,f +2873,15712,71,5,f +2873,16770,41,8,f +2873,18601,72,1,f +2873,18649,0,6,f +2873,18651,0,2,f +2873,18868a,41,1,f +2873,19981pr0001,41,1,f +2873,19981pr0002,41,1,f +2873,19981pr0003,41,1,f +2873,21445,0,2,f +2873,21845,0,1,f +2873,2412b,179,9,f +2873,2412b,272,4,f +2873,2419,71,2,f +2873,2540,0,3,f +2873,2540,71,5,f +2873,298c02,71,1,t +2873,298c02,71,1,f +2873,30028,0,4,f +2873,3003,71,2,f +2873,3005,272,2,f +2873,3020,14,1,f +2873,3020,0,2,f +2873,3020,322,1,f +2873,3020,272,2,f +2873,3021,322,6,f +2873,3021,71,6,f +2873,3022,72,3,f +2873,3023,19,1,f +2873,3023,0,4,f +2873,3045,71,2,f +2873,3069b,322,10,f +2873,3069bpr0153,0,1,f +2873,3070b,182,1,f +2873,3070b,182,1,t +2873,32064a,71,2,f +2873,3626cpr0896,78,1,f +2873,3626cpr1644,14,1,f +2873,3626cpr1765,78,1,f +2873,3675,272,2,f +2873,3701,71,1,f +2873,3710,272,1,f +2873,3710,322,1,f +2873,3937,14,1,f +2873,3938,0,1,f +2873,3941,41,1,f +2873,4286,322,2,f +2873,4287,71,2,f +2873,44567a,71,1,f +2873,44676,272,2,f +2873,4477,72,1,f +2873,4595,71,1,f +2873,4600,0,1,f +2873,4740,182,2,f +2873,4865b,41,4,f +2873,48729b,72,1,t +2873,48729b,72,1,f +2873,49668,0,2,f +2873,50231,72,1,f +2873,54200,41,2,f +2873,54200,272,2,f +2873,54200,272,1,t +2873,54200,71,14,f +2873,54200,182,1,t +2873,54200,182,1,f +2873,54200,41,1,t +2873,54200,71,1,t +2873,6019,0,2,f +2873,60476,71,2,f +2873,60477,72,2,f +2873,6091,272,2,f +2873,6131,72,1,f +2873,61409,71,5,f +2873,6141,72,3,f +2873,6141,72,2,t +2873,62360,41,2,f +2873,63868,0,5,f +2873,63965,70,1,f +2873,6553,0,2,f +2873,6632,71,2,f +2873,74967,0,4,f +2873,85984,0,2,f +2873,87580,272,1,f +2873,88072,71,1,f +2873,92747pr0002,52,1,f +2873,92747pr0003,52,1,f +2873,92747pr0004,52,1,f +2873,92747pr0005,52,1,f +2873,92747pr0006,52,1,f +2873,96874,25,1,t +2873,970c00,72,2,f +2873,970c00pr0628,0,1,f +2873,973pr2053c01,72,1,f +2873,973pr2590c01,0,1,f +2873,973pr2922c01,72,1,f +2873,98138,52,1,f +2873,98138,52,1,t +2873,98138,41,1,t +2873,98138,41,14,f +2873,98397,71,2,f +2873,98721,0,3,f +2873,98721,0,2,t +2873,99207,0,1,f +2873,99780,72,1,f +2873,99781,0,1,f +2874,3647,7,100,f +2875,2342,0,2,f +2875,3839b,0,2,f +2875,3956,7,2,f +2875,3960,7,2,f +2875,4070,7,2,f +2875,4175,7,2,f +2875,4285a,7,2,f +2875,4590,7,2,f +2875,4595,0,2,f +2875,4596,7,2,f +2875,4733,7,2,f +2875,4873,0,2,f +2875,73590c01a,0,2,f +2876,2479,0,1,f +2876,3001,4,1,f +2876,3003,4,1,f +2876,3034,1,1,f +2876,30474pb04,4,1,f +2876,3747b,4,3,f +2876,3795,1,3,f +2876,6232,14,1,f +2879,x1446,14,2,f +2879,x1446,15,2,f +2879,x1446,4,2,f +2879,x1446,1,2,f +2880,298c02,4,1,f +2880,298c02,4,1,t +2880,3023,25,1,f +2880,3962b,0,1,f +2880,52107,0,1,f +2880,54200,0,1,t +2880,54200,0,1,f +2880,6141,4,1,t +2880,6141,4,4,f +2880,98138,33,1,t +2880,98138,33,1,f +2881,2412b,7,1,f +2881,30027,15,4,f +2881,30028,0,4,f +2881,3004,1,2,f +2881,30170,0,1,f +2881,30170,0,1,t +2881,30171,1,1,f +2881,3034,15,1,f +2881,3626bpb0031,14,1,f +2881,3829c01,7,1,f +2881,3839b,7,1,f +2881,4286,1,2,f +2881,6157,0,2,f +2881,970c00,1,1,f +2881,973pb0022c01,15,1,f +2882,2357,1,2,f +2882,2357,4,4,f +2882,2420,4,2,f +2882,2449,0,4,f +2882,2449,4,4,f +2882,2456,1,2,f +2882,3001,0,1,f +2882,3003,19,1,f +2882,3003,1,5,f +2882,3003,0,3,f +2882,3004,19,2,f +2882,3005,4,4,f +2882,3005,19,2,f +2882,3009,4,3,f +2882,3010,19,1,f +2882,3020,19,1,f +2882,3020,14,2,f +2882,3020,4,4,f +2882,3020,0,3,f +2882,3020,1,2,f +2882,3022,1,4,f +2882,3022,19,3,f +2882,3022,4,1,f +2882,3022,0,2,f +2882,3022,14,5,f +2882,3023,14,8,f +2882,3023,4,8,f +2882,3023,19,3,f +2882,3023,0,1,f +2882,3024,19,2,f +2882,3024,4,4,f +2882,3024,14,2,f +2882,3024,0,2,f +2882,3034,4,1,f +2882,3034,1,2,f +2882,3039,19,2,f +2882,3039,0,2,f +2882,32000,1,4,f +2882,3660,19,2,f +2882,3665,19,2,f +2882,3666,19,1,f +2882,3666,4,1,f +2882,3700,19,2,f +2882,3710,14,3,f +2882,3710,19,1,f +2882,3710,4,6,f +2882,3795,0,3,f +2882,3795,1,3,f +2882,3795,4,3,f +2882,4274,7,8,f +2882,6111,4,1,f +2882,6141,4,2,f +2882,6141,0,2,f +2882,6141,14,10,f +2882,6212,8,1,f +2882,6541,4,10,f +2882,6541,19,2,f +2884,15573,15,4,f +2884,15573,27,4,f +2884,15573,0,2,f +2884,2412b,71,4,f +2884,2412b,15,4,f +2884,2419,2,2,f +2884,2420,0,2,f +2884,2456,4,4,f +2884,2456,19,2,f +2884,2456,2,2,f +2884,2456,14,4,f +2884,2456,15,4,f +2884,2456,1,4,f +2884,2456,0,4,f +2884,3001,321,6,f +2884,3001,4,14,f +2884,3001,19,2,f +2884,3001,25,6,f +2884,3001,14,14,f +2884,3001,15,14,f +2884,3001,2,7,f +2884,3001,1,14,f +2884,3001,27,6,f +2884,3001,72,2,f +2884,3001,0,7,f +2884,3001,70,2,f +2884,3002,0,8,f +2884,3002,25,4,f +2884,3002,1,16,f +2884,3002,2,8,f +2884,3002,14,16,f +2884,3002,19,4,f +2884,3002,15,16,f +2884,3002,4,16,f +2884,3003,27,14,f +2884,3003,0,20,f +2884,3003,14,44,f +2884,3003,15,44,f +2884,3003,4,44,f +2884,3003,25,14,f +2884,3003,72,7,f +2884,3003,2,20,f +2884,3003,1,44,f +2884,3003,19,8,f +2884,3003,70,7,f +2884,3004,72,10,f +2884,3004,25,10,f +2884,3004,19,5,f +2884,3004,1,52,f +2884,3004,14,52,f +2884,3004,2,26,f +2884,3004,70,8,f +2884,3004,15,52,f +2884,3004,321,20,f +2884,3004,4,52,f +2884,3004,0,26,f +2884,3004,27,10,f +2884,3004pr0001,14,2,f +2884,3005,182,5,f +2884,3005,2,16,f +2884,3005,0,16,f +2884,3005,72,4,f +2884,3005,25,10,f +2884,3005,14,28,f +2884,3005,1,28,f +2884,3005,27,9,f +2884,3005,70,4,f +2884,3005,15,28,f +2884,3005,19,4,f +2884,3005,4,28,f +2884,3006,19,4,f +2884,3007,15,2,f +2884,3007,1,2,f +2884,3007,4,2,f +2884,3007,14,2,f +2884,3008,1,4,f +2884,3008,4,4,f +2884,3008,19,2,f +2884,3008,15,4,f +2884,3008,14,4,f +2884,3009,4,8,f +2884,3009,14,8,f +2884,3009,15,8,f +2884,3009,1,8,f +2884,3010,14,7,f +2884,3010,4,7,f +2884,3010,25,4,f +2884,3010,15,7,f +2884,3010,27,4,f +2884,3010,2,6,f +2884,3010,0,6,f +2884,3010,1,7,f +2884,3010,71,4,f +2884,3020,2,2,f +2884,3020,71,2,f +2884,3020,1,2,f +2884,3020,0,2,f +2884,3021,4,2,f +2884,3021,0,4,f +2884,3022,0,2,f +2884,3022,27,4,f +2884,3022,14,4,f +2884,3022,4,4,f +2884,3022,15,2,f +2884,3023,14,4,f +2884,3023,25,2,f +2884,3023,0,2,f +2884,3023,27,2,f +2884,3031,2,2,f +2884,3032,15,4,f +2884,3032,0,4,f +2884,3034,15,2,f +2884,3034,0,2,f +2884,3034,2,4,f +2884,3034,14,2,f +2884,30363,0,4,f +2884,3037,4,10,f +2884,3037,1,6,f +2884,3039,2,12,f +2884,3039,4,6,f +2884,3039,70,6,f +2884,3039,1,8,f +2884,3039,25,6,f +2884,3039,0,4,f +2884,3039,47,2,f +2884,3040b,4,6,f +2884,3040b,25,8,f +2884,3040b,72,4,f +2884,3040b,15,4,f +2884,3040b,27,10,f +2884,3040b,19,4,f +2884,3045,0,2,f +2884,30503,2,2,f +2884,3062b,0,2,f +2884,3062b,14,2,f +2884,3069b,27,2,f +2884,3297,0,2,f +2884,3297,4,2,f +2884,3298,70,2,f +2884,3298,14,2,f +2884,3298,321,2,f +2884,3298,4,4,f +2884,3300,4,2,f +2884,3622,4,8,f +2884,3622,0,8,f +2884,3622,15,8,f +2884,3622,2,8,f +2884,3622,14,8,f +2884,3622,1,8,f +2884,3660,1,4,f +2884,3660,0,4,f +2884,3660,15,4,f +2884,3660,2,2,f +2884,3660,4,2,f +2884,3660,70,4,f +2884,3660,27,2,f +2884,3660,25,4,f +2884,3660,14,2,f +2884,3665,15,6,f +2884,3666,15,2,f +2884,3666,70,2,f +2884,3684,15,2,f +2884,3710,0,2,f +2884,3710,27,2,f +2884,3747b,1,2,f +2884,3747b,4,4,f +2884,3795,0,4,f +2884,3795,14,2,f +2884,3795,15,4,f +2884,3830,15,2,f +2884,3831,15,2,f +2884,3832,14,4,f +2884,3941,19,4,f +2884,3941,70,14,f +2884,3941,2,6,f +2884,4032a,2,6,f +2884,4081b,15,2,f +2884,4286,4,2,f +2884,4287,4,2,f +2884,4460b,72,4,f +2884,4589,14,6,f +2884,4589,19,4,f +2884,47905,4,10,f +2884,48336,4,4,f +2884,54200,71,4,f +2884,54200,19,4,f +2884,54200,25,4,f +2884,54200,4,1,t +2884,54200,71,1,t +2884,54200,72,1,t +2884,54200,72,4,f +2884,54200,4,4,f +2884,54200,25,1,t +2884,54200,19,1,t +2884,60470b,14,2,f +2884,60470b,0,2,f +2884,6141,15,6,f +2884,6141,25,1,t +2884,6141,4,1,t +2884,6141,2,4,f +2884,6141,36,1,t +2884,6141,4,4,f +2884,6141,34,2,f +2884,6141,25,4,f +2884,6141,15,1,t +2884,6141,14,4,f +2884,6141,34,1,t +2884,6141,14,1,t +2884,6141,36,2,f +2884,6141,2,1,t +2884,6141,27,1,t +2884,6141,27,4,f +2884,6141,29,4,f +2884,6141,29,1,t +2884,63868,4,2,f +2884,85984,2,4,f +2884,85984,1,2,f +2884,85984,27,2,f +2884,87087,15,4,f +2884,87087,72,4,f +2884,87087,0,4,f +2884,87087,19,2,f +2884,87087,14,12,f +2884,87087,1,4,f +2884,87087,321,4,f +2884,96874,25,1,t +2884,98138pr0008,15,18,f +2884,98138pr0008,15,1,t +2885,3023a,0,50,f +2885,3024,0,30,f +2885,728,7,1,f +2885,729,47,1,f +2886,2412b,14,1,f +2886,2412b,0,2,f +2886,2432,4,1,f +2886,2780,0,3,f +2886,2780,0,2,t +2886,2817,71,1,f +2886,298c02,4,2,f +2886,298c02,4,1,t +2886,3001,72,1,f +2886,3006,71,1,f +2886,3022,72,1,f +2886,3022,4,3,f +2886,3023,36,8,f +2886,3023,0,2,f +2886,30236,71,1,f +2886,30259,71,1,f +2886,30293,72,1,f +2886,30294,72,1,f +2886,3031,14,1,f +2886,3032,72,1,f +2886,3037,14,1,f +2886,30385,297,2,f +2886,30394,14,1,f +2886,3069b,15,1,f +2886,3070bpr0007,71,1,f +2886,3070bpr0007,71,1,t +2886,3626cpr0754,14,1,f +2886,3626cpr0920,14,1,f +2886,3665,14,2,f +2886,3710,72,4,f +2886,3710,14,4,f +2886,3795,71,1,f +2886,3823,40,1,f +2886,3829c01,4,1,f +2886,3841,72,1,f +2886,3957a,71,1,f +2886,4080,14,1,f +2886,42610,71,2,f +2886,4287,71,2,f +2886,44301a,0,2,f +2886,44302a,72,2,f +2886,45677,14,1,f +2886,4740,72,1,f +2886,47720,0,2,f +2886,51739,14,1,f +2886,52038,14,1,f +2886,54200,182,1,t +2886,54200,182,2,f +2886,55981,71,4,f +2886,6014b,71,4,f +2886,6019,0,2,f +2886,60700,0,4,f +2886,61409,0,2,f +2886,6141,182,6,f +2886,6141,71,1,t +2886,6141,72,1,t +2886,6141,182,2,t +2886,6141,72,4,f +2886,6141,71,4,f +2886,6157,0,2,f +2886,62361,14,2,f +2886,64450,0,1,f +2886,64451,72,2,f +2886,64728,4,1,f +2886,6541,14,2,f +2886,6558,1,2,f +2886,84954,40,1,f +2886,85984,0,2,f +2886,85984,14,2,f +2886,92280,4,2,f +2886,92402,0,4,f +2886,92582,0,1,f +2886,92593,0,1,f +2886,970c00,28,1,f +2886,970c00,1,1,f +2886,973pr1580c01,15,1,f +2886,973pr2037c01,272,1,f +2886,98138,47,2,t +2886,98138,47,3,f +2886,98285,14,1,f +2886,98286,71,1,f +2886,98289,179,2,f +2887,2377pb01,15,2,f +2887,2421,0,1,f +2887,2446,15,1,f +2887,2447,41,1,f +2887,2460,0,1,f +2887,2479,0,1,f +2887,2483,41,1,f +2887,298c02,15,1,t +2887,298c02,15,2,f +2887,3004,15,1,f +2887,3020,15,2,f +2887,3022,15,1,f +2887,3023,0,1,f +2887,3040b,15,2,f +2887,3069b,0,1,f +2887,3070b,36,2,f +2887,3070b,36,1,t +2887,3070b,34,1,t +2887,3070b,34,1,f +2887,3176,0,1,f +2887,3298,0,1,f +2887,3460,15,4,f +2887,3626apr0001,14,1,f +2887,3660,0,1,f +2887,3665,0,2,f +2887,3665,15,2,f +2887,3710,15,5,f +2887,3747a,15,1,f +2887,3794a,15,2,f +2887,3795,15,1,f +2887,3937,15,1,f +2887,3938,15,1,f +2887,3962a,0,1,f +2887,4081b,0,2,f +2887,4162,0,2,f +2887,4286,0,3,f +2887,4315,15,1,f +2887,4488,15,1,f +2887,4589,0,2,f +2887,4862,41,2,f +2887,4865a,0,1,f +2887,4873,15,2,f +2887,6141,46,2,f +2887,970c00,0,1,f +2887,973pb0079c01,0,1,f +2888,11458,0,2,f +2888,11477,308,2,f +2888,15573,70,1,f +2888,2412b,182,2,f +2888,2877,70,1,f +2888,298c02,4,1,f +2888,3021,70,1,f +2888,3039,70,1,f +2888,3626cpr1818,4,1,f +2888,3673,71,2,f +2888,3710,0,1,f +2888,3795,308,1,f +2888,4081b,72,2,f +2888,41854,308,1,f +2888,48493,0,1,f +2888,4871,70,1,f +2888,53451,297,2,f +2888,59900,182,3,f +2888,6014b,71,4,f +2888,60752,179,1,f +2888,6141,182,2,f +2888,6157,0,2,f +2888,88289,308,2,f +2888,973pr3191c01,4,1,f +2888,99781,0,1,f +2889,10884,27,4,f +2889,11097,179,1,f +2889,11100,15,4,f +2889,11111pr0003,1,1,f +2889,11126,321,1,f +2889,11127,41,6,f +2889,11767,72,1,f +2889,12549pr0002,272,1,f +2889,12825,15,2,f +2889,2540,19,8,f +2889,2654,0,1,f +2889,2780,0,1,t +2889,2780,0,2,f +2889,3023,2,5,f +2889,30377,0,8,f +2889,30377,0,1,t +2889,30552,72,4,f +2889,3062b,41,1,f +2889,3626cpr1125,212,1,f +2889,3707,0,4,f +2889,3957b,15,1,f +2889,4032a,4,2,f +2889,4081b,15,2,f +2889,4285b,15,1,f +2889,43093,1,4,f +2889,43899,72,1,f +2889,44302a,0,4,f +2889,50990b,71,1,f +2889,59443,72,4,f +2889,6021410,9999,1,f +2889,6021411,9999,1,f +2889,6021412,9999,1,f +2889,6021413,9999,1,f +2889,6021414,9999,1,f +2889,6222,70,1,f +2889,75937,15,1,f +2889,87083,72,1,f +2889,90194,70,8,f +2889,92690,297,1,f +2889,970c00pr0441,272,1,f +2889,973pr2230c01,272,1,f +2889,98138,41,1,t +2889,98138,41,1,f +2889,98141,179,2,f +2890,14226c11,15,1,f +2890,22670,61,1,f +2890,22670,383,1,f +2890,2926,13,2,f +2890,3003,45,2,f +2890,3005,52,2,f +2890,3005,45,2,f +2890,3005,143,2,f +2890,3005,34,2,f +2890,30077,15,2,f +2890,30109,14,1,f +2890,30152pat0001,52,1,f +2890,30153,45,1,f +2890,30153,143,2,f +2890,3022,2,4,f +2890,30238,0,1,f +2890,30374,45,1,f +2890,30613,15,2,f +2890,30614,143,1,f +2890,3065,34,1,f +2890,3065,52,1,f +2890,3065,46,2,f +2890,3065,45,2,f +2890,3065pb01,47,1,f +2890,3066,45,2,f +2890,3139,15,4,f +2890,33009,73,1,f +2890,3307,15,4,f +2890,33213,18,1,f +2890,33215,114,1,f +2890,33289px1,10,1,f +2890,3710,18,1,f +2890,3942c,18,2,f +2890,4088,15,2,f +2890,4154183,9999,1,f +2890,4156387,9999,1,f +2890,4156395en,9999,1,f +2890,4201,73,1,f +2890,4201,10,1,f +2890,42498,9,1,f +2890,42498,74,1,f +2890,4325,5,1,f +2890,4461,74,1,f +2890,4624,5,4,f +2890,4727,115,4,f +2890,4727,10,2,f +2890,4728,46,1,f +2890,4728,52,1,f +2890,4728,45,1,f +2890,4728,143,1,f +2890,4728pb01,5,1,f +2890,4738a,45,1,f +2890,4739a,45,1,f +2890,6019,15,1,f +2890,6178,115,1,f +2890,6178,5,1,f +2890,6178,462,1,f +2890,6180,74,1,f +2890,6186,462,1,f +2890,6199,5,1,f +2890,6200,73,2,f +2890,71861,14,1,f +2890,pouch09,13,1,f +2890,pouch09,18,1,f +2890,pouch10,115,1,f +2890,x1438px1,15,1,f +2890,x682c01,15,1,f +2893,30136,19,2,f +2893,3666,70,1,f +2893,6636,70,1,f +2895,3024,33,2,f +2895,3024,33,1,t +2895,3069bpr0016,15,1,t +2895,3069bpr0016,15,1,f +2895,3710,71,1,f +2895,3840,25,1,f +2895,4623,15,2,f +2895,48812,72,1,f +2896,30556,272,1,f +2896,30599,4,1,f +2896,30601pb06,272,1,f +2896,30603pb17,272,1,f +2896,racerbase,272,1,f +2896,rb00168,0,2,f +2899,2346,7,1,f +2899,2555,0,4,f +2899,2654,7,2,f +2899,2715,3,1,f +2899,2716,0,1,f +2899,2717,3,1,f +2899,2723,15,1,f +2899,2780,0,1,t +2899,2780,0,26,f +2899,2817,0,3,f +2899,2909c03,8,1,f +2899,3001,0,1,f +2899,3022,7,1,f +2899,3023,0,5,f +2899,3023,14,1,f +2899,3039,14,1,f +2899,3068b,0,2,f +2899,3069b,4,1,f +2899,3139,0,6,f +2899,32000,0,6,f +2899,32001,0,1,f +2899,32002,8,1,t +2899,32002,8,32,f +2899,32009,3,2,f +2899,32009,22,2,f +2899,32013,0,7,f +2899,32015,7,1,f +2899,32015,0,6,f +2899,32016,0,7,f +2899,32018,0,2,f +2899,32039,0,10,f +2899,32039,7,2,f +2899,32054,1,4,f +2899,32056,7,4,f +2899,32062,0,18,f +2899,32063,0,2,f +2899,32065,0,12,f +2899,32065,3,24,f +2899,32065,22,2,f +2899,32073,0,1,f +2899,32123b,7,23,f +2899,32123b,7,1,t +2899,3482,0,1,f +2899,3673,7,1,t +2899,3673,7,4,f +2899,3700,0,2,f +2899,3701,0,2,f +2899,3702,0,1,f +2899,3703,0,1,f +2899,3705,0,13,f +2899,3706,0,6,f +2899,3707,0,3,f +2899,3708,0,2,f +2899,3709,0,2,f +2899,3713,7,6,f +2899,3713,7,1,t +2899,3737,0,2,f +2899,3749,7,13,f +2899,3894,0,2,f +2899,3895,0,2,f +2899,4032a,14,1,f +2899,4032a,0,2,f +2899,4150,0,2,f +2899,4162,0,2,f +2899,4519,0,2,f +2899,4760c01,0,1,f +2899,5306bc015,0,1,f +2899,6141,42,2,f +2899,6141,42,1,t +2899,6192,0,4,f +2899,6536,0,5,f +2899,6538b,7,2,f +2899,6558,0,9,f +2899,6575,7,2,f +2899,6587,8,3,f +2899,6629,0,17,f +2899,6632,0,6,f +2899,71427c01,7,1,f +2899,75c36,3,2,f +2899,76110c01,14,2,f +2899,78c04,3,4,f +2899,78c08,3,1,f +2899,78c16,22,1,f +2899,rb00168,0,4,f +2899,rb00168,0,2,t +2899,tech007,9999,1,f +2899,tech013,9999,1,f +2900,2868b,0,1,f +2900,5306c01,8,1,f +2900,70931,0,1,f +2901,3020,15,16,f +2901,3021,15,12,f +2901,3022,15,16,f +2901,3034,15,4,f +2901,3795,15,4,f +2901,3832,15,4,f +2902,3001,4,14,f +2902,3002,4,8,f +2902,3003,4,12,f +2902,3004,4,8,f +2902,3005,4,4,f +2902,3006,4,1,f +2902,3007,4,1,f +2902,3008,4,2,f +2902,3009,4,4,f +2902,3010,4,4,f +2902,3622,4,4,f +2903,453bc01,15,9,f +2903,453bc01,4,9,f +2904,3001,322,1,f +2905,2412b,0,6,f +2905,2431,4,8,f +2905,2878c01,0,4,f +2905,2920,0,2,f +2905,2921,2,8,f +2905,3005,2,8,f +2905,30136,2,6,f +2905,3020,0,2,f +2905,3023,47,10,f +2905,3023,4,12,f +2905,3031,0,2,f +2905,3034,8,2,f +2905,30414,0,2,f +2905,3062b,0,16,f +2905,3068b,4,2,f +2905,3069b,4,4,f +2905,3069bpa1,0,2,f +2905,32083,0,6,f +2905,3623,8,1,f +2905,3666,2,18,f +2905,3710,2,2,f +2905,3795,7,2,f +2905,3795,0,2,f +2905,3861b,2,2,f +2905,4022,0,2,f +2905,4025,0,2,f +2905,4035,2,14,f +2905,4036,41,14,f +2905,4079,6,4,f +2905,4490,8,1,f +2905,4510,0,6,f +2905,4589,0,4,f +2905,6112,0,2,f +2905,6141,0,8,f +2905,6141,36,1,f +2905,6141,36,1,t +2905,6141,8,1,t +2905,6141,8,2,f +2905,6141,0,1,t +2905,6583,0,2,f +2905,6584,0,1,f +2905,73092,0,2,f +2909,14769,15,2,f +2909,2431,0,2,f +2909,2489,70,1,f +2909,33048,484,1,f +2909,33057,484,2,f +2909,33078,4,3,f +2909,33172,25,1,f +2909,33183,10,1,t +2909,33183,10,1,f +2909,3626cpr0389,14,1,f +2909,3626cpr0893,14,1,f +2909,3899,47,2,f +2909,3958,19,2,f +2909,4032a,0,3,f +2909,4342,19,1,f +2909,4529,0,1,f +2909,4599b,0,1,t +2909,4599b,0,1,f +2909,60474,15,1,f +2909,60479,0,2,f +2909,6141,0,4,f +2909,6141,0,1,t +2909,6251,308,1,f +2909,6251,15,1,f +2909,6256,82,1,f +2909,62810,0,1,f +2909,85974,70,1,f +2909,92950,0,2,f +2909,93568pat0001,84,1,f +2909,95228,40,1,f +2909,95228pr0001,47,1,f +2909,970c00,4,2,f +2909,973pr1617c01,2,1,f +2909,973pr1627c01,15,1,f +2910,3001,8,50,f +2911,10247,71,3,f +2911,11203,72,2,f +2911,11253,0,1,f +2911,11253,0,1,t +2911,11291,71,1,f +2911,11458,72,2,f +2911,11458,4,1,f +2911,11477,0,4,f +2911,14417,72,2,f +2911,14719,71,2,f +2911,15071,0,1,f +2911,15100,0,2,f +2911,15210,72,3,f +2911,15303,36,3,f +2911,15400,72,2,f +2911,15462,28,2,f +2911,15573,28,2,f +2911,15712,320,1,f +2911,15712,72,6,f +2911,18671,72,1,f +2911,18674,15,2,f +2911,18677,71,4,f +2911,18980,71,2,f +2911,18986,47,1,f +2911,22885,71,2,f +2911,2412b,72,3,f +2911,2420,71,2,f +2911,2420,70,4,f +2911,24201,71,4,f +2911,24299,72,2,f +2911,24307,72,2,f +2911,2431,72,4,f +2911,2432,0,1,f +2911,2540,71,4,f +2911,2654,71,7,f +2911,2730,71,2,f +2911,2780,0,2,t +2911,2780,0,16,f +2911,2817,0,1,f +2911,28362,84,1,f +2911,2877,72,1,f +2911,3004,71,2,f +2911,3005,40,2,f +2911,3020,72,4,f +2911,3021,72,2,f +2911,3021,71,9,f +2911,3022,379,2,f +2911,3023,36,5,f +2911,3023,70,10,f +2911,3023,72,2,f +2911,3024,36,1,t +2911,3024,36,2,f +2911,3031,71,3,f +2911,3032,72,1,f +2911,3032,71,1,f +2911,3034,0,2,f +2911,30503,71,2,f +2911,3069b,379,4,f +2911,3070b,71,1,t +2911,3070b,320,1,t +2911,3070b,71,2,f +2911,3070b,320,1,f +2911,31511,71,2,f +2911,32000,72,2,f +2911,32005a,72,2,f +2911,32009,71,2,f +2911,32028,28,1,f +2911,32039,71,1,f +2911,32054,71,6,f +2911,32062,4,2,f +2911,32073,14,1,f +2911,32124,0,4,f +2911,32138,71,1,f +2911,32271,71,2,f +2911,32291,72,2,f +2911,32316,71,2,f +2911,32449,14,1,f +2911,32524,72,1,f +2911,33299a,0,2,f +2911,3622,71,2,f +2911,3623,379,4,f +2911,3623,71,4,f +2911,3626cpr2010,78,1,f +2911,3626cpr2047,92,1,f +2911,3626cpr2348,70,1,f +2911,3666,71,2,f +2911,3678b,71,1,f +2911,3700,0,4,f +2911,3706,0,1,f +2911,3709,0,2,f +2911,3710,28,2,f +2911,3710,72,4,f +2911,3710,379,2,f +2911,3738,72,2,f +2911,3832,72,4,f +2911,3832,71,2,f +2911,3832,0,1,f +2911,3894,71,1,f +2911,3894,72,4,f +2911,3958,72,1,f +2911,4032a,71,4,f +2911,4070,0,1,f +2911,4150,72,3,f +2911,4162,71,5,f +2911,41677,72,1,f +2911,41769,71,3,f +2911,41770,71,3,f +2911,4274,1,11,f +2911,4274,71,1,t +2911,4274,71,1,f +2911,4274,1,1,t +2911,4287,71,2,f +2911,43093,1,10,f +2911,43712,71,2,f +2911,43719,71,1,f +2911,43857,71,2,f +2911,43857,0,2,f +2911,44224,72,4,f +2911,44225,71,4,f +2911,44728,71,1,f +2911,4477,72,2,f +2911,4510,71,4,f +2911,4522,0,2,f +2911,4599b,4,1,f +2911,4599b,4,1,t +2911,4740,71,4,f +2911,48336,72,2,f +2911,48729b,71,1,t +2911,48729b,71,1,f +2911,48729b,72,1,t +2911,48729b,72,2,f +2911,50304,71,1,f +2911,50305,71,1,f +2911,51739,72,2,f +2911,54383,71,2,f +2911,54384,71,2,f +2911,57900pr0003,72,1,f +2911,58247,0,1,f +2911,59900,72,2,f +2911,60474,71,1,f +2911,60477,71,2,f +2911,60478,0,4,f +2911,60478,72,2,f +2911,60897,72,2,f +2911,6091,71,6,f +2911,61184,71,6,f +2911,61409,72,4,f +2911,6141,179,15,f +2911,6141,25,1,t +2911,6141,25,1,f +2911,6141,179,3,t +2911,61485,71,1,f +2911,6179,71,2,f +2911,63864,71,4,f +2911,63965,71,2,f +2911,64567,71,1,t +2911,64567,71,2,f +2911,6558,1,4,f +2911,6585,0,1,f +2911,6587,28,4,f +2911,6589,19,2,f +2911,6628,0,2,f +2911,6942,72,2,f +2911,76766,71,1,f +2911,85943,72,2,f +2911,85984,71,2,f +2911,87079,71,5,f +2911,87081,72,1,f +2911,87994,71,2,f +2911,87994,71,1,t +2911,88072,15,2,f +2911,88283,0,1,f +2911,92280,71,2,f +2911,92338,0,1,f +2911,92582,71,2,f +2911,92593,71,7,f +2911,92738,0,1,f +2911,92906,72,1,f +2911,92947,71,1,f +2911,93095,0,1,f +2911,970c00pr0705,71,1,f +2911,970c00pr1124,28,1,f +2911,970c00pr1125,70,1,f +2911,973pr2764c01,71,1,f +2911,973pr3556c01,28,1,f +2911,973pr3557c01,72,1,f +2911,98138pr0010,179,1,f +2911,98138pr0010,179,1,t +2911,99206,71,2,f +2911,99207,0,4,f +2911,99207,71,2,f +2913,10247,4,2,f +2913,11055,1,1,f +2913,11089,0,4,f +2913,11153,272,1,f +2913,11214,72,2,f +2913,11458,72,2,f +2913,13731,1,5,f +2913,14769,297,2,f +2913,14769pr1027,158,5,f +2913,15068,0,4,f +2913,15092,72,2,f +2913,15207,0,2,f +2913,15361,41,1,f +2913,15362,297,2,f +2913,15406,0,1,f +2913,15535,4,4,f +2913,15571,72,3,f +2913,15573,272,14,f +2913,15619,272,2,f +2913,15712,297,3,f +2913,16968,71,2,f +2913,19857pat0003,0,1,f +2913,19858pat0002,42,2,f +2913,19859pat0002,42,1,f +2913,19861pr0002,42,1,f +2913,20566pat02,148,1,f +2913,20612,40,1,f +2913,20643,272,1,f +2913,2357,1,2,f +2913,2412b,297,1,f +2913,2419,1,1,f +2913,2431,1,2,f +2913,2432,70,1,f +2913,2515,0,4,f +2913,2570,148,1,f +2913,2654,1,3,f +2913,2730,0,4,f +2913,2780,0,16,f +2913,3001,4,1,f +2913,3005,72,4,f +2913,30150,70,1,f +2913,30165,72,3,f +2913,30169,0,2,f +2913,3020,71,6,f +2913,3020,28,1,f +2913,3021,272,4,f +2913,3022,1,6,f +2913,3023,70,8,f +2913,3034,72,4,f +2913,3035,0,1,f +2913,3036,28,3,f +2913,30367c,297,1,f +2913,30565,28,3,f +2913,3068b,71,1,f +2913,3069b,14,2,f +2913,3069b,41,1,f +2913,3069b,36,3,f +2913,32005b,0,1,f +2913,32039,14,2,f +2913,32064a,0,5,f +2913,32271,0,2,f +2913,32316,1,2,f +2913,32526,71,2,f +2913,32532,71,1,f +2913,3298,14,1,f +2913,3460,71,2,f +2913,3623,19,2,f +2913,3626cpr1367,14,1,f +2913,3626cpr1687,0,1,f +2913,3626cpr1688,42,1,f +2913,3626cpr1693,42,1,f +2913,3666,0,5,f +2913,3666,272,2,f +2913,3701,0,2,f +2913,3705,0,4,f +2913,3710,72,9,f +2913,3713,4,1,f +2913,3795,0,2,f +2913,3829c01,0,1,f +2913,3832,71,2,f +2913,3832,0,1,f +2913,3941,272,1,f +2913,4032a,19,8,f +2913,4085c,0,4,f +2913,4162,0,5,f +2913,42023,72,2,f +2913,4274,1,8,f +2913,43093,1,2,f +2913,43888,158,2,f +2913,44676,272,1,f +2913,44728,1,2,f +2913,44728,71,2,f +2913,4477,0,1,f +2913,4498,70,1,f +2913,48336,297,1,f +2913,4871,272,4,f +2913,48729b,0,1,f +2913,49668,0,2,f +2913,50950,272,2,f +2913,51739,71,1,f +2913,53451,14,3,f +2913,53451,158,2,f +2913,54200,297,8,f +2913,54200,158,3,f +2913,57519,1,4,f +2913,59233pat0001,41,2,f +2913,59426,72,4,f +2913,59443,14,1,f +2913,59900,297,1,f +2913,60478,72,1,f +2913,60481,272,1,f +2913,60596,0,1,f +2913,6091,0,6,f +2913,61409,1,4,f +2913,6141,2,4,f +2913,6141,297,5,f +2913,6141,41,1,f +2913,6141,158,5,f +2913,6266,0,3,f +2913,63864,71,5,f +2913,63868,71,1,f +2913,63965,297,1,f +2913,64567,0,3,f +2913,6628,0,2,f +2913,6636,72,3,f +2913,73983,0,1,f +2913,85984,1,4,f +2913,87747,0,2,f +2913,88704,70,1,f +2913,92280,4,2,f +2913,92593,71,2,f +2913,92690,297,1,f +2913,92946,1,2,f +2913,93059,297,4,f +2913,93059,85,2,f +2913,93273,1,2,f +2913,970c00pr0877,0,1,f +2913,970x268pr001,42,2,f +2913,973pr3034c01,0,1,f +2913,973pr3038c01,272,1,f +2913,973pr3041c01,85,1,f +2913,973pr3043c01,85,1,f +2913,98100,0,1,f +2913,98138,36,2,f +2913,98138,46,1,f +2913,98139,297,2,f +2913,98141,297,2,f +2913,98283,72,2,f +2913,99207,0,4,f +2913,99781,15,2,f +2914,33320,2,1,f +2914,3837,0,1,f +2914,3848,72,1,f +2914,61780,70,1,f +2918,2340,4,2,f +2918,2348b,41,1,f +2918,2349a,15,1,f +2918,2357,15,2,f +2918,2399,4,2,f +2918,2412b,0,4,f +2918,2412b,14,1,f +2918,2412b,7,10,f +2918,2412b,15,1,f +2918,2415,7,1,f +2918,2420,4,12,f +2918,2420,0,24,f +2918,2420,7,2,f +2918,2420,15,10,f +2918,2420,1,2,f +2918,2431,7,4,f +2918,2431,0,2,f +2918,2431,15,12,f +2918,2432,7,2,f +2918,2436,0,1,f +2918,2436,15,1,f +2918,2445,7,2,f +2918,2445,0,2,f +2918,2445,4,6,f +2918,2450,15,6,f +2918,2458,0,4,f +2918,2540,7,2,f +2918,2540,15,2,f +2918,2569,7,2,f +2918,2694,47,1,f +2918,2695,7,10,f +2918,2696,0,10,f +2918,2714a,7,2,f +2918,2745,4,2,f +2918,2780,0,13,f +2918,2819,7,1,f +2918,298c03,7,1,t +2918,298c03,7,7,f +2918,3001,7,1,f +2918,3003,0,2,f +2918,3004,15,1,f +2918,3004,7,2,f +2918,3005,7,2,f +2918,3005,0,6,f +2918,3005,4,2,f +2918,3008,4,3,f +2918,3009,0,3,f +2918,3009,4,5,f +2918,3010,7,2,f +2918,3010,4,4,f +2918,3010,15,5,f +2918,3010,0,1,f +2918,3020,4,6,f +2918,3020,7,5,f +2918,3020,0,6,f +2918,3020,15,6,f +2918,3021,0,13,f +2918,3021,1,3,f +2918,3021,4,8,f +2918,3021,7,4,f +2918,3021,15,2,f +2918,3021,14,4,f +2918,3022,15,1,f +2918,3022,0,4,f +2918,3022,1,2,f +2918,3022,14,5,f +2918,3022,7,6,f +2918,3022,4,8,f +2918,3023,1,6,f +2918,3023,4,30,f +2918,3023,14,7,f +2918,3023,15,11,f +2918,3023,7,22,f +2918,3023,0,5,f +2918,3024,7,8,f +2918,3024,15,6,f +2918,3024,4,12,f +2918,3024,0,18,f +2918,3029,7,1,f +2918,3032,15,1,f +2918,3032,4,2,f +2918,3034,0,5,f +2918,3034,4,3,f +2918,3035,15,2,f +2918,3035,4,3,f +2918,3039pc4,0,1,f +2918,3039pc5,7,1,f +2918,3040b,15,4,f +2918,3040b,0,5,f +2918,3040b,7,8,f +2918,3040p33,0,1,f +2918,3062b,7,14,f +2918,3063b,15,6,f +2918,3068b,7,4,f +2918,3068b,15,4,f +2918,3068b,14,2,f +2918,3069b,15,15,f +2918,3069b,7,7,f +2918,3069b,4,2,f +2918,3069b,0,1,f +2918,3069bp13,15,4,f +2918,3070b,7,1,t +2918,3070b,15,1,t +2918,3070b,15,6,f +2918,3070b,7,2,f +2918,3139,0,1,f +2918,3176,7,3,f +2918,3298,7,1,f +2918,3460,15,4,f +2918,3460,4,1,f +2918,3460,7,5,f +2918,3460,0,5,f +2918,3464,47,1,f +2918,3482,7,4,f +2918,3483,0,2,f +2918,3491,0,1,f +2918,3585,15,1,f +2918,3586,15,1,f +2918,3622,15,2,f +2918,3622,4,6,f +2918,3622,0,3,f +2918,3623,14,4,f +2918,3623,15,8,f +2918,3623,0,8,f +2918,3623,7,10,f +2918,3623,4,28,f +2918,3647,7,1,f +2918,3647,7,1,t +2918,3648a,7,2,f +2918,3651,7,6,f +2918,3660,4,4,f +2918,3665,0,6,f +2918,3665,4,8,f +2918,3665,7,2,f +2918,3666,4,7,f +2918,3666,15,9,f +2918,3666,0,5,f +2918,3666,7,5,f +2918,3673,7,4,f +2918,3679,7,1,f +2918,3680,7,1,f +2918,3700,0,5,f +2918,3700,14,2,f +2918,3700,1,1,f +2918,3700,7,2,f +2918,3701,0,2,f +2918,3701,7,2,f +2918,3701,4,2,f +2918,3702,0,4,f +2918,3703,0,6,f +2918,3704,0,2,f +2918,3705,0,4,f +2918,3707,0,2,f +2918,3708,0,1,f +2918,3709,0,2,f +2918,3710,4,10,f +2918,3710,15,6,f +2918,3710,14,3,f +2918,3710,7,6,f +2918,3710,0,7,f +2918,3713,7,1,t +2918,3713,7,7,f +2918,3737,0,1,f +2918,3738,4,1,f +2918,3738,15,1,f +2918,3743,7,1,f +2918,3747a,15,2,f +2918,3747a,0,6,f +2918,3749,7,10,f +2918,3794a,7,6,f +2918,3794a,1,1,f +2918,3794a,15,4,f +2918,3795,7,1,f +2918,3795,4,2,f +2918,3795,15,2,f +2918,3795,0,3,f +2918,3832,4,5,f +2918,3832,0,2,f +2918,3894,7,2,f +2918,3895,0,2,f +2918,3935,15,1,f +2918,3936,15,1,f +2918,3937,0,3,f +2918,3937,7,2,f +2918,3937,4,6,f +2918,3938,7,2,f +2918,3938,0,3,f +2918,3938,4,6,f +2918,3941,15,1,f +2918,3941,7,2,f +2918,3957a,7,6,f +2918,4032a,7,1,f +2918,4070,7,14,f +2918,4070,0,8,f +2918,4070,15,2,f +2918,4081b,7,18,f +2918,4081b,0,2,f +2918,4081b,15,6,f +2918,4081b,4,8,f +2918,4085c,15,6,f +2918,4143,7,5,f +2918,4150,7,3,f +2918,4150,0,1,f +2918,4168,7,4,f +2918,4175,7,8,f +2918,4175,4,2,f +2918,4175,0,3,f +2918,4181,15,1,f +2918,4182,15,1,f +2918,4183,47,2,f +2918,4261,7,2,f +2918,4263,0,1,f +2918,4265a,7,1,t +2918,4265a,7,11,f +2918,4274,7,10,f +2918,4274,7,1,t +2918,4275b,14,6,f +2918,4276b,14,6,f +2918,4282,4,2,f +2918,4286,4,2,f +2918,4286,15,4,f +2918,4315,15,1,f +2918,4349,7,4,f +2918,4442,7,3,f +2918,4460a,15,2,f +2918,4460a,4,2,f +2918,4477,0,10,f +2918,4477,7,4,f +2918,4477,15,2,f +2918,4519,0,2,f +2918,4589,4,2,f +2918,4599a,7,2,f +2918,4599a,1,2,f +2918,4623,15,2,f +2918,4854,7,2,f +2918,4854,4,1,f +2918,4855,4,3,f +2918,4859,15,1,f +2918,4859,4,2,f +2918,4859,0,2,f +2918,4864a,47,3,f +2918,4865a,41,4,f +2918,4865a,14,2,f +2918,4865a,15,2,f +2918,4865a,7,4,f +2918,5591stk01,9999,1,t +2918,6019,4,4,f +2918,6019,7,6,f +2918,6019,15,4,f +2918,6019,0,2,f +2918,6069,4,2,f +2918,6069,15,1,f +2918,6069p01,15,1,f +2918,6091,4,4,f +2918,6091,7,2,f +2918,6091,15,12,f +2918,6141,36,1,t +2918,6141,36,11,f +2918,6141,46,16,f +2918,6141,47,10,f +2918,6141,15,1,t +2918,6141,15,2,f +2918,6141,1,1,t +2918,6141,7,1,t +2918,6141,1,8,f +2918,6141,46,1,t +2918,6141,34,1,f +2918,6141,7,19,f +2918,6141,34,1,t +2918,6152,41,1,f +2918,63965,15,4,f +2918,6553,7,2,f +2918,6564,15,2,f +2918,6564,4,3,f +2918,6564,0,1,f +2918,6565,4,3,f +2918,6565,0,1,f +2918,6565,15,2,f +2918,6575,7,2,f +2918,73037,4,1,f +2918,rb00164,0,1,f +2919,3026,7,1,f +2919,3176,4,1,f +2919,3176c01,4,1,f +2919,3404bc01,15,2,f +2919,824,15,2,f +2919,wheel1a,4,8,f +2921,12694,73,1,f +2921,3437,1,1,f +2921,75115a,4,1,f +2922,3003,0,1,f +2922,3003,15,1,f +2922,3004,0,2,f +2922,3004,15,4,f +2922,3004,14,2,f +2922,3005,4,6,f +2922,3005,0,6,f +2922,3005,1,6,f +2922,3005,15,6,f +2922,3008,15,1,f +2922,3008,1,6,f +2922,3008,14,1,f +2922,3008,4,2,f +2922,3009,1,8,f +2922,3009,4,2,f +2922,3009,15,5,f +2922,3020,0,1,f +2922,3020,4,1,f +2922,3021,14,4,f +2922,3022,15,2,f +2922,3022,0,2,f +2922,3023,14,1,f +2922,3023,0,3,f +2922,3023,15,3,f +2922,3024,14,1,f +2922,3039,15,2,f +2922,3039,0,2,f +2922,3040a,15,6,f +2922,3040a,0,6,f +2922,3040a,1,6,f +2922,3040a,4,6,f +2922,3062a,0,10,f +2922,3062a,4,2,f +2922,3062a,14,8,f +2922,3069b,0,1,f +2922,3069b,15,1,f +2922,3298,15,12,f +2922,3298,4,9,f +2922,3456,15,1,f +2922,3460,14,2,f +2922,3497,2,1,f +2922,3596,4,2,f +2922,3622,15,2,f +2922,3623,14,2,f +2922,3625,4,1,f +2922,3626apr0001,14,6,f +2922,3659,14,2,f +2922,3660,15,2,f +2922,3660,0,2,f +2922,3665,15,4,f +2922,3665,4,2,f +2922,3665,1,2,f +2922,3778,2,1,f +2922,3794a,14,1,f +2922,3795,15,1,f +2922,3795,0,1,f +2922,3842a,7,2,f +2922,3844,7,2,f +2922,3846p4t,7,1,f +2922,3846p4u,7,1,f +2922,3848,7,2,f +2922,3849,6,2,f +2922,3899,1,2,f +2922,3901,6,1,f +2922,970c00,15,1,f +2922,970c00,4,1,f +2922,970x021,0,2,f +2922,970x023,15,1,f +2922,970x026,4,1,f +2922,973p72c01,15,1,f +2922,973px44c01,4,1,f +2922,973px45c01,0,1,f +2922,973px46c01,1,1,f +2922,973px47c01,4,2,f +2922,rb00192,4,1,f +2922,rb00192,0,1,f +2923,3024,2,1,f +2923,3623,2,2,f +2923,3710,2,2,f +2923,3794b,2,2,f +2923,3794b,70,1,f +2923,4589,2,1,f +2923,6124,42,1,f +2923,6141,36,3,f +2923,6141,182,1,t +2923,6141,182,3,f +2923,6141,36,1,t +2923,6141,33,1,t +2923,6141,33,2,f +2925,12825,14,1,f +2925,2340,15,2,f +2925,2412b,25,2,f +2925,2431,320,3,f +2925,2447,0,1,t +2925,2460,0,1,f +2925,3004,25,2,f +2925,3010,14,1,f +2925,3020,0,2,f +2925,3020,71,4,f +2925,3021,14,1,f +2925,3022,15,4,f +2925,3022,14,2,f +2925,3023,0,5,f +2925,3024,0,2,f +2925,3035,71,1,f +2925,3040b,320,2,f +2925,30503,71,2,f +2925,3068b,25,2,f +2925,3070b,34,2,f +2925,3070b,36,2,f +2925,3139,0,4,f +2925,3622,15,2,f +2925,3623,15,2,f +2925,3660,15,1,f +2925,3666,14,4,f +2925,3710,14,4,f +2925,3794b,72,1,f +2925,3795,71,5,f +2925,3829c01,15,1,f +2925,3832,71,5,f +2925,3937,71,2,f +2925,3938,15,2,f +2925,42022,15,4,f +2925,4274,71,1,f +2925,43722,14,2,f +2925,43723,14,2,f +2925,44728,0,2,f +2925,4599b,0,1,f +2925,4624,15,4,f +2925,47397,71,2,f +2925,47398,71,2,f +2925,4865a,40,1,f +2925,4870,71,2,f +2925,50304,14,1,f +2925,50305,14,1,f +2925,50943,80,1,f +2925,52501,15,1,f +2925,54200,320,6,f +2925,54383,71,2,f +2925,54384,71,2,f +2925,60479,71,2,f +2925,6081,14,2,f +2925,6091,320,4,f +2925,61072,135,1,f +2925,6141,25,6,f +2925,6141,80,4,f +2925,61678,14,4,f +2925,73983,0,4,f +2925,92279,47,1,f +2925,92280,71,2,f +2925,92842,0,2,f +2926,3001,0,1,f +2926,3004,47,4,f +2926,3004,0,2,f +2926,3004,4,6,f +2926,3005,4,6,f +2926,3005,0,2,f +2926,3008,4,3,f +2926,3008,0,1,f +2926,3009,4,1,f +2926,3010,4,3,f +2926,3020,4,1,f +2926,3020,7,2,f +2926,3020,0,6,f +2926,3020,14,1,f +2926,3021,0,7,f +2926,3021,4,2,f +2926,3022,4,2,f +2926,3022,0,11,f +2926,3023,14,1,f +2926,3023,4,8,f +2926,3023,0,17,f +2926,3024,7,2,f +2926,3024,4,4,f +2926,3024,0,12,f +2926,3028,4,2,f +2926,3029,14,2,f +2926,3032,0,1,f +2926,3034,0,3,f +2926,3034,4,1,f +2926,3034,14,2,f +2926,3036,4,1,f +2926,3063b,7,2,f +2926,3068b,0,3,f +2926,3145,14,2,f +2926,3460,7,2,f +2926,3460,0,4,f +2926,3622,0,4,f +2926,3622,7,2,f +2926,3623,7,2,f +2926,3647,7,5,f +2926,3648a,7,3,f +2926,3651,7,11,f +2926,3660,0,2,f +2926,3666,4,6,f +2926,3666,0,6,f +2926,3673,7,10,f +2926,3700,0,24,f +2926,3700,14,1,f +2926,3700,4,2,f +2926,3701,0,3,f +2926,3701,14,1,f +2926,3702,4,2,f +2926,3702,0,1,f +2926,3702,14,3,f +2926,3703,0,2,f +2926,3704,0,3,f +2926,3705,0,13,f +2926,3706,0,6,f +2926,3707,0,4,f +2926,3708,0,1,f +2926,3709,0,1,f +2926,3710,4,5,f +2926,3710,14,1,f +2926,3710,7,1,f +2926,3710,0,6,f +2926,3713,7,29,f +2926,3736,7,1,f +2926,3737,0,5,f +2926,3738,0,1,f +2926,3743,7,3,f +2926,3749,7,4,f +2926,3795,4,2,f +2926,3795,14,2,f +2926,3795,0,3,f +2926,3832,4,5,f +2926,3894,14,2,f +2926,3894,4,2,f +2926,3895,0,4,f +2926,3895,4,2,f +2926,4143,7,7,f +2926,4261,7,2,f +2926,4262,7,5,f +2926,4263,7,3,f +2926,4265a,7,10,f +2926,4266,7,4,f +2926,4267,0,4,f +2926,4273b,7,9,f +2926,4274,7,2,f +2926,73071,7,1,f +2926,9244,7,1,f +2926,u1125,14,2,f +2926,u1125,4,10,f +2926,u1126,4,10,f +2926,u1126,14,2,f +2928,3001a,4,1,f +2928,3003,14,1,f +2928,3003,1,1,f +2928,3003,4,1,f +2928,3004,1,1,f +2928,3005,1,2,f +2928,3010,4,2,f +2928,3010pb018,4,2,f +2928,3020,15,1,f +2928,3020,1,1,f +2928,3021,1,1,f +2928,3031,4,1,f +2928,3037,1,1,f +2928,3039,15,2,f +2928,3137c01,0,2,f +2928,3139,0,4,f +2928,3612,4,2,f +2928,3613,4,2,f +2928,3614b,14,2,f +2928,3622,1,2,f +2928,3625,0,1,f +2928,3626apr0001,14,1,f +2928,3660,4,4,f +2928,3710,14,3,f +2928,685px3,14,1,f +2928,792c03,4,1,f +2928,970c00,15,1,f +2928,973c01,15,1,f +2928,x196,0,1,f +2929,2412b,42,6,f +2929,2419,0,2,f +2929,2420,71,2,f +2929,2444,71,4,f +2929,2460,71,4,f +2929,2540,0,2,f +2929,2566,0,2,f +2929,2569,0,3,f +2929,2654,71,1,f +2929,2780,0,37,f +2929,2780,0,7,t +2929,298c02,0,2,f +2929,298c02,0,2,t +2929,3001,72,2,f +2929,3003,72,3,f +2929,3004,72,3,f +2929,3004,71,2,f +2929,30088,0,2,f +2929,3010,72,2,f +2929,3021,4,4,f +2929,3021,71,8,f +2929,3022,15,7,f +2929,3022,0,4,f +2929,3023,4,4,f +2929,3023,71,9,f +2929,3024,71,2,f +2929,3031,0,4,f +2929,3032,72,1,f +2929,3034,72,2,f +2929,30350b,0,2,f +2929,30361b,0,2,f +2929,30364,72,2,f +2929,30365,71,2,f +2929,30367b,27,5,f +2929,30374,15,1,f +2929,30388,0,2,f +2929,30389c,0,2,f +2929,3039,0,12,f +2929,30407,0,6,f +2929,30503,0,2,f +2929,30540,0,4,f +2929,30553,72,1,f +2929,30553,0,2,f +2929,30602,15,2,f +2929,30603,0,5,f +2929,3062b,4,2,f +2929,3062b,36,4,f +2929,3062b,42,8,f +2929,30647,15,2,f +2929,3068b,4,1,f +2929,3068b,0,1,f +2929,3070b,4,2,f +2929,3070b,4,1,t +2929,32000,72,2,f +2929,32009,0,4,f +2929,32018,0,9,f +2929,32054,0,16,f +2929,32059,0,3,f +2929,32064b,15,2,f +2929,32064b,0,4,f +2929,32074c01,0,1,f +2929,32123b,71,1,t +2929,32123b,71,2,f +2929,32138,0,8,f +2929,32140,0,1,f +2929,32192,72,2,f +2929,32523,0,1,f +2929,3623,72,6,f +2929,3666,0,2,f +2929,3666,72,2,f +2929,3700,0,4,f +2929,3700,72,9,f +2929,3701,71,2,f +2929,3702,0,6,f +2929,3705,0,2,f +2929,3707,0,4,f +2929,3709,72,16,f +2929,3710,71,7,f +2929,3737,0,4,f +2929,3747b,72,3,f +2929,3795,0,7,f +2929,3795,15,2,f +2929,3894,72,2,f +2929,3941,0,4,f +2929,3942c,0,1,f +2929,3943b,0,6,f +2929,40244,0,14,f +2929,41531,0,4,f +2929,41532,0,7,f +2929,41669,36,2,f +2929,41669,42,6,f +2929,41749,15,1,f +2929,41750,15,1,f +2929,4185,27,4,f +2929,4185,71,4,f +2929,4274,71,1,t +2929,4274,71,1,f +2929,4286,15,2,f +2929,4287,15,2,f +2929,43093,1,33,f +2929,43708,0,14,f +2929,43710,0,4,f +2929,43711,0,4,f +2929,43712,15,2,f +2929,44301a,72,2,f +2929,44567a,0,2,f +2929,44728,71,15,f +2929,4519,71,2,f +2929,45301,0,1,f +2929,4598,379,1,f +2929,47298,0,1,f +2929,47432,72,2,f +2929,47452,72,2,f +2929,47454,72,2,f +2929,47455,4,8,f +2929,47455,0,6,f +2929,47757,0,15,f +2929,47759,0,5,f +2929,48169,72,4,f +2929,48170,72,4,f +2929,48171,72,4,f +2929,48172,0,1,f +2929,48336,0,2,f +2929,48336,15,1,f +2929,48729a,72,8,f +2929,48933,15,2,f +2929,50858,0,2,f +2929,50950,15,6,f +2929,53984,297,2,f +2929,53984,135,4,f +2929,53988,135,2,f +2929,53988pat02,0,1,f +2929,53989,297,2,f +2929,53989,135,4,f +2929,53990,40,1,f +2929,53993pat0003,27,10,f +2929,54605,47,2,f +2929,56145,0,4,f +2929,6019,4,2,f +2929,6070,40,3,f +2929,6141,42,2,t +2929,6141,42,30,f +2929,6222,0,1,f +2929,6553,71,2,f +2929,6558,0,18,f +2929,6558,0,1,t +2929,6587,72,5,f +2929,6629,0,8,f +2929,6632,0,4,f +2929,76110c05,71,1,f +2929,78c24,179,1,f +2929,x400c24,47,2,f +2931,3001,8,4,f +2931,3001,4,2,f +2931,3001,0,2,f +2931,3001,15,2,f +2931,3001,14,2,f +2931,3001,1,2,f +2931,3001,2,2,f +2931,3002,4,2,f +2931,3002,0,2,f +2931,3002,8,4,f +2931,3002,2,2,f +2931,3002,14,2,f +2931,3002,1,2,f +2931,3002,15,4,f +2931,3003,15,6,f +2931,3003,1,4,f +2931,3003,0,4,f +2931,3003,8,8,f +2931,3003,2,4,f +2931,3003,14,6,f +2931,3003,4,4,f +2931,3004,15,8,f +2931,3004,1,8,f +2931,3004,2,6,f +2931,3004,0,8,f +2931,3004,8,12,f +2931,3004,14,8,f +2931,3004,4,8,f +2931,3005,0,8,f +2931,3005,1,8,f +2931,3005,8,8,f +2931,3005,4,8,f +2931,3005,2,6,f +2931,3005pe1,14,2,f +2931,3009,4,2,f +2931,3010,8,2,f +2931,3010,14,2,f +2931,3010,0,2,f +2931,3010,15,2,f +2931,3020,8,2,f +2931,3020,15,2,f +2931,3022,8,2,f +2931,3022,14,2,f +2931,3040b,1,2,f +2931,3040b,4,2,f +2931,3622,8,2,f +2931,3665,1,2,f +2931,3665,4,2,f +2931,4070,15,2,f +2931,73590c02a,0,2,f +2932,14226c31,0,4,f +2932,14226c41,0,2,f +2932,2412b,15,4,f +2932,2476a,71,2,f +2932,2780,0,48,f +2932,2780,0,4,t +2932,2905,4,2,f +2932,3003,0,2,f +2932,3023,72,1,f +2932,32000,0,2,f +2932,32002,72,68,f +2932,32002,72,2,t +2932,32012,72,3,f +2932,32013,72,7,f +2932,32017,71,34,f +2932,32034,72,6,f +2932,32039,4,1,f +2932,32054,71,29,f +2932,32056,71,2,f +2932,32056,15,2,f +2932,32062,4,14,f +2932,32073,71,1,f +2932,32123b,71,21,f +2932,32123b,71,1,t +2932,32138,0,2,f +2932,32140,72,9,f +2932,32140,4,6,f +2932,32250,72,4,f +2932,32278,4,8,f +2932,32278,72,8,f +2932,32278,15,1,t +2932,32278,15,21,f +2932,32291,72,2,f +2932,32316,15,14,f +2932,32316,4,2,f +2932,32449,4,6,f +2932,32523,4,6,f +2932,32524,4,2,f +2932,32525,4,2,f +2932,32526,4,8,f +2932,32556,71,14,f +2932,33299a,71,5,f +2932,3623,0,2,f +2932,3647,71,1,t +2932,3647,71,5,f +2932,3650c,71,3,f +2932,3666,0,4,f +2932,3705,0,5,f +2932,3706,0,12,f +2932,3707,0,4,f +2932,3713,71,4,f +2932,3749,19,7,f +2932,3795,0,4,f +2932,3873,0,86,f +2932,4019,71,5,f +2932,40490,4,3,f +2932,40490,15,2,t +2932,40490,15,8,f +2932,41669,15,3,f +2932,41677,71,28,f +2932,41677,15,2,f +2932,41678,72,1,f +2932,41767,0,2,f +2932,41768,0,2,f +2932,42003,71,3,f +2932,42610,71,13,f +2932,4274,71,36,f +2932,4274,71,1,t +2932,43093,1,25,f +2932,44294,71,3,f +2932,4477,15,2,f +2932,4519,71,34,f +2932,45590,0,3,f +2932,48989,71,2,f +2932,50163,72,1,f +2932,56823c500,0,2,f +2932,6179,4,6,f +2932,6536,72,14,f +2932,6538b,71,4,f +2932,6553,71,1,f +2932,6558,0,59,f +2932,6587,72,10,f +2932,6629,4,2,f +2932,6632,71,11,f +2932,73090b,0,2,f +2932,75535,15,3,f +2933,2456,14,2,f +2933,2456,1,2,f +2933,3001,14,6,f +2933,3001,15,6,f +2933,3001,70,2,f +2933,3001,72,2,f +2933,3001,0,2,f +2933,3001,27,2,f +2933,3001,4,6,f +2933,3001,2,2,f +2933,3001,73,2,f +2933,3001,1,6,f +2933,3002,27,2,f +2933,3002,0,2,f +2933,3002,4,4,f +2933,3002,15,4,f +2933,3002,1,4,f +2933,3002,72,2,f +2933,3002,70,2,f +2933,3002,73,2,f +2933,3002,14,4,f +2933,3002,2,2,f +2933,3003,14,14,f +2933,3003,1,12,f +2933,3003,73,6,f +2933,3003,2,8,f +2933,3003,70,6,f +2933,3003,4,14,f +2933,3003,72,6,f +2933,3003,15,14,f +2933,3003,0,8,f +2933,3003,27,6,f +2933,3004,15,22,f +2933,3004,72,10,f +2933,3004,27,10,f +2933,3004,14,22,f +2933,3004,2,8,f +2933,3004,71,10,f +2933,3004,1,20,f +2933,3004,4,22,f +2933,3004,73,4,f +2933,3004,70,10,f +2933,3004,0,8,f +2933,3005,70,6,f +2933,3005,2,8,f +2933,3005,4,14,f +2933,3005,72,6,f +2933,3005,73,8,f +2933,3005,71,8,f +2933,3005,1,14,f +2933,3005,0,8,f +2933,3005,27,6,f +2933,3005pe1,14,2,f +2933,3005pe1,15,2,f +2933,3008,15,2,f +2933,3008,14,2,f +2933,3008,1,2,f +2933,3009,1,2,f +2933,3009,14,2,f +2933,3009,4,2,f +2933,3009,15,2,f +2933,3010,1,6,f +2933,3010,15,6,f +2933,3010,14,4,f +2933,3010,4,4,f +2933,3010p01,14,1,f +2933,3020,73,2,f +2933,3020,4,2,f +2933,3020,71,2,f +2933,3021,4,2,f +2933,3021,73,2,f +2933,3022,71,4,f +2933,3022,73,4,f +2933,3022,4,4,f +2933,3022,72,3,f +2933,3039,70,2,f +2933,3039,73,2,f +2933,3039,14,2,f +2933,3040b,70,2,f +2933,3040b,14,2,f +2933,3062b,0,2,f +2933,3298,14,2,f +2933,3622,15,4,f +2933,3622,1,4,f +2933,3622,14,2,f +2933,3622,4,2,f +2933,3660,14,2,f +2933,3660,70,2,f +2933,3665,70,2,f +2933,3665,14,4,f +2933,3747b,14,2,f +2933,3795,71,2,f +2933,3795,4,2,f +2933,4286,14,2,f +2933,4287,14,2,f +2933,6215,71,4,f +2934,32073,7,1,f +2934,32174,135,6,f +2934,32556,7,1,f +2934,3706,0,2,f +2934,41665,4,2,f +2934,41666,7,2,f +2934,41667,7,1,f +2934,41668,135,2,f +2934,41669,33,2,f +2934,41670,4,4,f +2934,41671pb04,135,1,f +2934,41672,0,2,f +2934,41752,8,1,f +2934,42042,7,1,f +2934,42042und,178,1,f +2934,42074,15,2,f +2934,44937,179,2,f +2934,4519,7,5,f +2934,6628,0,2,f +2934,85544,10,1,f +2934,tahnokkalcd,9999,1,f +2935,2357,8,2,f +2935,2412b,6,10,f +2935,2412b,3,2,f +2935,2419,8,2,f +2935,2420,19,8,f +2935,2431,6,1,f +2935,2431,7,3,f +2935,2432,7,2,f +2935,2445,6,1,f +2935,2445,8,2,f +2935,2450,6,4,f +2935,2512,7,1,f +2935,2540,6,13,f +2935,2791,7,2,f +2935,2877,8,4,f +2935,3001,0,2,f +2935,3001,4,1,f +2935,3002,7,5,f +2935,3003,6,1,f +2935,3003,8,2,f +2935,3004,7,10,f +2935,3005,0,1,f +2935,3010,7,1,f +2935,3020,19,4,f +2935,3021,0,6,f +2935,3022,7,14,f +2935,3023,0,35,f +2935,3029,8,1,f +2935,30293,57,2,f +2935,30294,57,2,f +2935,30303,19,1,f +2935,30303,6,4,f +2935,3031,0,2,f +2935,3032,0,1,f +2935,3035,8,3,f +2935,30359a,19,4,f +2935,30364,7,9,f +2935,30365,8,12,f +2935,30373,19,1,f +2935,30375,25,1,f +2935,30375,7,1,f +2935,30375,19,1,f +2935,30377,19,1,f +2935,30377,3,6,f +2935,30383,8,14,f +2935,30388,19,11,f +2935,30389a,7,1,f +2935,3039,7,12,f +2935,30396,0,2,f +2935,3039px9,8,1,f +2935,3040b,6,6,f +2935,3040b,7,4,f +2935,30526,8,3,f +2935,30526,19,5,f +2935,30528,373,2,f +2935,30529p01,3,1,f +2935,30530,25,1,f +2935,30530,19,1,f +2935,30530,7,1,f +2935,30536,40,1,f +2935,30536,19,1,f +2935,30542,25,4,f +2935,30553,0,6,f +2935,30592,7,1,f +2935,30596,25,2,f +2935,3062b,6,12,f +2935,3062b,33,1,f +2935,3062b,42,4,f +2935,3062b,36,1,f +2935,3068b,7,1,f +2935,3068b,19,1,f +2935,3069bp55,8,3,f +2935,32000,0,1,f +2935,32000,19,6,f +2935,32014,7,4,f +2935,32059,8,1,f +2935,32138,0,1,t +2935,32190,19,1,f +2935,32191,19,1,f +2935,3298,19,11,f +2935,3403,7,1,f +2935,3404,7,1,f +2935,3460,8,2,f +2935,3660,25,3,f +2935,3660,8,6,f +2935,3666,19,1,f +2935,3700,7,2,f +2935,3710,6,3,f +2935,3710,7,1,f +2935,3747a,7,4,f +2935,3749,7,4,f +2935,3795,8,1,f +2935,3832,0,1,f +2935,3937,8,1,f +2935,3938,0,1,f +2935,3941,0,1,f +2935,3942c,0,1,f +2935,4032a,0,4,f +2935,4070,19,4,f +2935,4081b,7,2,f +2935,4085c,7,1,f +2935,4150,0,4,f +2935,4150,25,4,f +2935,4150px9,7,3,f +2935,4282,7,1,f +2935,4285b,25,1,f +2935,4349,0,1,f +2935,4476b,8,4,f +2935,4477,19,2,f +2935,4519,0,4,f +2935,4589,36,1,f +2935,4589,19,6,f +2935,4735,0,2,f +2935,4740,7,7,f +2935,6069px1,19,5,f +2935,6087,6,1,f +2935,6112,7,2,f +2935,6141,36,1,t +2935,6141,36,15,f +2935,6215,19,2,f +2935,6541,8,1,f +2935,6553,19,6,f +2935,6558,0,2,f +2935,6583,7,2,f +2935,6587,8,3,f +2935,73983,8,16,f +2935,75535,6,2,f +2935,78c13,135,2,f +2935,rb00167,14,5,t +2935,rb00167,14,2,f +2935,x117px5,3,1,f +2935,x117px6,3,1,f +2936,2516,14,1,f +2936,2569,57,1,f +2936,3749,19,1,t +2936,3749,19,1,f +2936,57539,0,2,f +2936,58176,36,1,f +2936,58176,36,1,t +2936,61403,179,1,f +2936,87841,14,2,f +2936,90609,0,4,f +2936,90612,0,1,f +2936,90615,71,2,f +2936,90617,71,8,f +2936,90634,0,1,f +2936,90638,0,2,f +2936,90641,14,4,f +2936,92218,179,2,f +2936,92220,148,2,f +2936,93571,72,1,f +2936,98570pat01,15,1,f +2936,98590,0,1,f +2936,bb574,14,1,f +2937,2335,0,2,f +2937,2540,0,2,f +2937,3020,4,1,f +2937,30256,7,1,f +2937,3941,0,1,f +2937,4032a,15,1,f +2937,4740,36,1,f +2937,6019,1,1,f +2938,14226c11,0,2,f +2938,2335,15,2,f +2938,2412b,0,2,f +2938,2412b,14,2,f +2938,2412b,72,2,f +2938,2412b,15,2,f +2938,2412b,80,3,f +2938,2420,0,4,f +2938,2420,71,1,f +2938,2420,14,2,f +2938,2431,14,2,f +2938,2431,0,6,f +2938,2431,27,3,f +2938,2431,4,2,f +2938,2431,15,10,f +2938,2431,25,2,f +2938,2432,4,2,f +2938,2432,0,1,f +2938,2436,14,2,f +2938,2436,0,15,f +2938,2444,4,4,f +2938,2445,15,1,f +2938,2460,0,1,f +2938,2465,71,5,f +2938,2476a,71,10,f +2938,2479,0,1,f +2938,2555,0,4,f +2938,2555,15,1,f +2938,2780,0,2,t +2938,2780,0,13,f +2938,3001,15,2,f +2938,3001,4,2,f +2938,3001,0,1,f +2938,3002,14,1,f +2938,3002,15,1,f +2938,30027b,0,11,f +2938,30028,0,11,f +2938,3003,72,3,f +2938,3003,71,4,f +2938,3004,14,2,f +2938,3004,15,8,f +2938,3004,72,1,f +2938,3004,71,11,f +2938,3005,15,2,f +2938,3007,71,1,f +2938,3009,71,2,f +2938,3010,0,2,f +2938,3010,15,1,f +2938,3010,4,3,f +2938,3010,25,3,f +2938,30145,71,3,f +2938,3020,14,2,f +2938,3020,0,5,f +2938,3020,25,2,f +2938,3020,4,3,f +2938,3020,71,2,f +2938,3021,72,2,f +2938,3021,14,4,f +2938,3021,0,2,f +2938,3021,4,1,f +2938,3021,15,1,f +2938,3022,15,1,f +2938,3022,0,3,f +2938,3022,19,1,f +2938,3022,14,6,f +2938,3022,4,2,f +2938,3022,71,5,f +2938,3022,72,2,f +2938,3023,72,18,f +2938,3023,33,1,f +2938,3023,27,2,f +2938,3023,46,2,f +2938,3023,47,6,f +2938,3023,15,2,f +2938,3023,4,5,f +2938,3023,0,5,f +2938,3023,14,6,f +2938,3023,36,1,f +2938,3024,0,4,f +2938,3024,71,2,f +2938,3024,36,4,f +2938,30258,0,1,f +2938,30261,15,1,f +2938,3031,14,2,f +2938,3031,27,1,f +2938,3031,0,4,f +2938,3032,4,1,f +2938,3034,0,3,f +2938,3035,72,2,f +2938,30350b,0,1,f +2938,30359b,0,2,f +2938,30374,0,4,f +2938,30383,0,2,f +2938,3039,15,2,f +2938,3040b,15,2,f +2938,30414,15,1,f +2938,30414,0,1,f +2938,30526,72,2,f +2938,30552,71,2,f +2938,30553,0,2,f +2938,30553,71,1,f +2938,3062b,15,2,f +2938,3065,47,2,f +2938,3068b,15,1,f +2938,3068b,0,3,f +2938,3068b,27,2,f +2938,3068b,14,1,f +2938,3069b,15,1,f +2938,3069b,0,4,f +2938,3069b,25,4,f +2938,3069b,14,8,f +2938,3069b,27,3,f +2938,3070b,36,1,t +2938,3070b,36,2,f +2938,32002,72,4,f +2938,32002,72,1,t +2938,32013,15,1,f +2938,32014,71,1,f +2938,32018,72,4,f +2938,32028,0,2,f +2938,32028,71,2,f +2938,32062,0,2,f +2938,32062,4,2,f +2938,32064b,15,1,f +2938,32065,71,2,f +2938,32348,4,1,f +2938,32525,0,1,f +2938,3460,72,2,f +2938,3475b,0,2,f +2938,3622,27,2,f +2938,3622,15,2,f +2938,3623,0,3,f +2938,3623,72,6,f +2938,3623,14,2,f +2938,3660,71,4,f +2938,3666,14,1,f +2938,3666,0,2,f +2938,3684,71,4,f +2938,3701,71,3,f +2938,3707,0,1,f +2938,3710,25,3,f +2938,3710,4,4,f +2938,3710,14,6,f +2938,3710,15,4,f +2938,3710,72,2,f +2938,3710,0,4,f +2938,3747b,15,2,f +2938,3749,19,1,f +2938,3788,0,3,f +2938,3788,25,2,f +2938,3788,4,1,f +2938,3788,14,2,f +2938,3794b,14,2,f +2938,3794b,0,2,f +2938,3795,14,3,f +2938,3795,71,1,f +2938,3795,0,4,f +2938,3795,15,1,f +2938,3795,4,2,f +2938,3957a,71,4,f +2938,40490,14,2,f +2938,4070,15,4,f +2938,4070,1,8,f +2938,4081b,0,2,f +2938,4085c,72,4,f +2938,4085c,15,2,f +2938,4162,0,2,f +2938,4162,71,4,f +2938,42022,15,6,f +2938,42074,179,1,f +2938,42445,71,2,f +2938,4274,1,10,f +2938,4274,1,2,t +2938,4282,71,3,f +2938,43093,1,3,f +2938,44302a,71,4,f +2938,44567a,14,1,f +2938,44674,14,1,f +2938,44674,4,1,f +2938,44674,0,1,f +2938,44728,14,5,f +2938,45677,0,1,f +2938,4589,33,4,f +2938,4599b,71,2,f +2938,4600,71,2,f +2938,4740,72,2,f +2938,47456,0,1,f +2938,47905,4,2,f +2938,47973,72,2,f +2938,48288,72,2,f +2938,48336,0,2,f +2938,48336,15,1,f +2938,4865a,14,2,f +2938,50943,72,1,f +2938,50943,80,1,f +2938,50944pr0001,0,16,f +2938,50947,27,4,f +2938,50947,14,2,f +2938,50948,0,1,f +2938,50949,0,3,f +2938,50950,15,2,f +2938,50951,0,16,f +2938,54200,36,7,f +2938,54200,25,1,t +2938,54200,80,1,t +2938,54200,182,2,t +2938,54200,25,6,f +2938,54200,182,6,f +2938,54200,33,1,f +2938,54200,15,2,f +2938,54200,47,2,f +2938,54200,36,2,t +2938,54200,15,1,t +2938,54200,0,6,f +2938,54200,47,1,t +2938,54200,33,1,t +2938,54200,0,2,t +2938,57894,15,2,f +2938,57895,41,2,f +2938,59443,71,1,f +2938,6020,71,4,f +2938,6041,0,1,f +2938,60470a,15,1,f +2938,60470a,0,2,f +2938,60470a,71,3,f +2938,60475a,14,2,f +2938,60479,14,2,f +2938,60484,0,2,f +2938,60596,15,1,f +2938,6070,40,1,f +2938,60797c01,72,1,f +2938,6112,15,1,f +2938,6126a,57,2,f +2938,6140,0,2,f +2938,61409,27,2,f +2938,61409,14,2,f +2938,6141,36,2,t +2938,6141,33,10,f +2938,6141,36,4,f +2938,6141,46,3,f +2938,6141,34,4,f +2938,6141,34,2,t +2938,6141,4,12,f +2938,6141,182,4,f +2938,6141,80,1,t +2938,6141,71,3,f +2938,6141,182,1,t +2938,6141,46,1,t +2938,6141,33,2,t +2938,6141,71,1,t +2938,6141,4,2,t +2938,6157,0,11,f +2938,61678,71,6,f +2938,61678,80,2,f +2938,61678,0,2,f +2938,6179,15,1,f +2938,6231,0,2,f +2938,6231,15,2,f +2938,6238,40,1,f +2938,63965,15,2,f +2938,6536,15,1,f +2938,6558,1,1,f +2938,6632,0,2,f +2938,6636,15,3,f +2938,6636,14,2,f +2938,73983,0,2,f +2938,8186stk01,9999,1,t +2938,85984,0,4,f +2938,85984,15,1,f +2938,85984,14,2,f +2938,86501,72,2,f +2939,3001a,14,2,f +2939,3003,1,5,f +2939,3003,14,1,f +2939,3004,14,2,f +2939,3005,4,4,f +2939,3005,15,6,f +2939,3010,14,2,f +2939,3010,47,1,f +2939,3020,1,1,f +2939,3021,14,1,f +2939,3021,0,1,f +2939,3032,14,1,f +2939,3040a,0,1,f +2939,3062a,0,4,f +2939,3314,4,1,f +2939,3317,14,1,f +2939,3433,14,1,f +2939,3460,15,1,f +2939,3483,0,2,f +2939,3613,1,4,f +2939,3614a,14,4,f +2939,3634,0,2,f +2939,3666,1,2,f +2939,649pb09,15,1,f +2939,685px4,14,2,f +2939,7039,4,4,f +2939,7049b,0,2,f +2939,739p01,15,1,f +2939,792c03,1,2,f +2939,x407,1,2,f +2940,3004,2,2,f +2940,3004,70,1,f +2940,3005,2,6,f +2940,3010,2,3,f +2940,3021,70,1,f +2940,32064b,2,1,f +2940,3460,2,2,f +2940,3622,2,3,f +2940,3666,2,4,f +2940,3700,14,1,f +2940,3710,2,2,f +2940,4477,2,2,f +2940,4589,15,3,f +2940,6141,182,1,t +2940,6141,46,1,t +2940,6141,182,4,f +2940,6141,36,5,f +2940,6141,33,6,f +2940,6141,15,3,f +2940,6141,15,1,t +2940,6141,46,5,f +2940,6141,36,1,t +2940,6141,33,1,t +2940,6541,2,7,f +2941,458,0,8,f +2944,2570,135,1,f +2944,3021,70,1,f +2944,3794a,272,1,f +2944,3839b,0,1,f +2944,4489b,70,2,f +2944,6157,0,1,f +2947,3032,15,1,f +2947,3068bpb0409,15,1,f +2947,3068bpb0410,15,1,f +2947,3068bpb0411,15,1,f +2947,3068bpb0742,15,1,f +2947,3068bpb0743,15,1,f +2947,3068bpb0744,15,1,f +2950,122c01,7,2,f +2950,3001a,4,1,f +2950,3002a,4,2,f +2950,3002a,47,4,f +2950,3002a,14,2,f +2950,3003,14,1,f +2950,3003,15,4,f +2950,3004,47,2,f +2950,3004,15,8,f +2950,3004,14,3,f +2950,3005,47,1,f +2950,3005,15,8,f +2950,3005,4,1,f +2950,3008,15,2,f +2950,3008,14,1,f +2950,3009,15,4,f +2950,3009,14,3,f +2950,3010,15,5,f +2950,3010pb035u,4,1,f +2950,3020,0,1,f +2950,3021,0,2,f +2950,3021,15,4,f +2950,3022,4,3,f +2950,3023,15,4,f +2950,3023,4,10,f +2950,3023,0,1,f +2950,3024,47,1,f +2950,3024,4,1,f +2950,3024,0,2,f +2950,3024,15,2,f +2950,3026,4,1,f +2950,3029,4,1,f +2950,3030,4,1,f +2950,3037,47,1,f +2950,3039,47,1,f +2950,3040b,0,3,f +2950,3062a,1,1,f +2950,3062a,7,2,f +2950,3062a,47,2,f +2950,3069b,0,1,f +2950,3317,14,4,f +2950,3460,15,3,f +2950,3460,4,1,f +2950,3460,14,2,f +2950,3470,2,1,f +2950,3622,15,6,f +2950,3622,14,2,f +2950,3623,14,2,f +2950,3623,4,4,f +2950,3623,15,4,f +2950,3624,4,1,f +2950,3625,0,1,f +2950,3626apr0001,14,2,f +2950,3633,0,2,f +2950,3641,0,6,f +2950,3660,15,2,f +2950,3665,15,2,f +2950,3666,15,4,f +2950,3666,0,1,f +2950,3666,14,4,f +2950,3710,4,1,f +2950,3710,14,5,f +2950,3710,15,9,f +2950,3788,4,2,f +2950,3795,4,2,f +2950,3831,15,4,f +2950,3839b,15,1,f +2950,3853,0,2,f +2950,3861b,0,1,f +2950,606p02,7,1,f +2950,970c00,1,2,f +2950,973c01,15,2,f +2950,rb00166,0,4,f +2952,10170,84,1,f +2952,3626bpr1022,14,1,f +2952,87693,15,1,f +2952,87693,15,1,t +2952,88489,288,1,f +2952,88646,0,1,f +2952,970c00pr0376,28,1,f +2952,973pr2117c01,15,1,f +2953,32039,0,2,f +2953,32039,0,1,t +2953,32175,14,1,f +2953,32175,0,1,f +2953,32316,14,2,f +2953,32316,0,2,f +2953,32523,0,1,f +2953,32523,14,1,f +2953,3673,7,4,f +2953,3673,7,1,t +2953,41677,0,2,f +2953,41677,0,1,t +2953,41752,8,1,f +2953,43559,0,1,f +2953,43559,14,1,f +2953,44848,0,1,f +2953,6587,8,2,f +2953,6628,0,1,t +2953,6628,0,4,f +2953,71509,0,2,f +2953,71509,0,2,t +2954,10201,0,2,f +2954,11153,0,2,f +2954,12607ass04pr01,10,1,f +2954,12610pr0001,28,1,f +2954,12617,179,1,f +2954,12618,179,1,f +2954,12825,72,3,f +2954,13233,272,1,f +2954,2335,0,3,f +2954,2420,0,4,f +2954,2420,70,1,f +2954,2431,70,2,f +2954,2540,71,1,f +2954,2780,0,4,f +2954,2780,0,1,t +2954,298c02,14,1,t +2954,298c02,14,1,f +2954,30028,0,4,f +2954,3004,0,2,f +2954,30173b,179,1,t +2954,30173b,179,1,f +2954,3020,19,3,f +2954,3021,71,1,f +2954,3022,71,1,f +2954,3023,14,2,f +2954,3023,72,4,f +2954,3032,72,1,f +2954,3034,70,1,f +2954,30407,0,1,f +2954,30526,71,4,f +2954,3068bpr0219b,19,1,f +2954,3176,0,2,f +2954,32013,72,2,f +2954,32017,71,2,f +2954,32019,0,1,f +2954,32065,0,2,f +2954,32073,71,1,f +2954,32123b,71,1,t +2954,32123b,71,2,f +2954,32124,0,2,f +2954,32294,0,2,f +2954,3626cpr1150,0,1,f +2954,3626cpr1151,78,1,f +2954,3666,4,2,f +2954,3713,4,1,t +2954,3713,4,2,f +2954,3794b,0,1,f +2954,3795,4,1,f +2954,3849,0,1,f +2954,4081b,0,6,f +2954,4081b,14,1,f +2954,41530,71,2,f +2954,41769,0,1,f +2954,41770,0,1,f +2954,4274,71,1,t +2954,4274,71,3,f +2954,43093,1,2,f +2954,44567a,72,1,f +2954,4588,72,4,f +2954,4589,182,2,f +2954,4599b,71,1,f +2954,4599b,0,2,f +2954,4623,4,1,f +2954,4697b,71,1,f +2954,4697b,71,1,t +2954,47456,0,2,f +2954,4871,72,1,f +2954,50943,326,1,f +2954,51739,0,1,f +2954,53451,0,2,f +2954,54200,0,8,f +2954,54200,0,1,t +2954,54200,4,1,t +2954,54200,4,8,f +2954,56898,0,1,f +2954,56904,71,1,f +2954,6019,14,1,f +2954,60478,0,2,f +2954,60485,71,1,f +2954,6091,0,4,f +2954,61184,71,2,f +2954,6126b,182,2,f +2954,61406pat0006,0,1,f +2954,61409,0,4,f +2954,6141,179,1,t +2954,6141,46,1,t +2954,6141,182,6,f +2954,6141,179,4,f +2954,6141,46,1,f +2954,6141,72,1,t +2954,6141,182,1,t +2954,6141,72,4,f +2954,6157,0,2,f +2954,62462,71,4,f +2954,63864,4,2,f +2954,64644,308,1,f +2954,72454,72,1,f +2954,74967,71,4,f +2954,75c03,70,2,f +2954,75c03,70,1,t +2954,85940,0,1,f +2954,86652,71,1,f +2954,88811,179,1,t +2954,88811,179,2,f +2954,92280,71,2,f +2954,92593,0,1,f +2954,93273,0,1,f +2954,970c00,0,1,f +2954,970c00pr0473,10,1,f +2954,970c00pr0479,320,1,f +2954,973pr2264c01,0,1,f +2954,973pr2266c01,10,1,f +2954,973pr2268c01,320,1,f +2954,98141,179,1,f +2954,99207,71,2,f +2955,2339,0,7,f +2955,2341,0,1,f +2955,2345,0,5,f +2955,2357,0,4,f +2955,2417,2,7,f +2955,2419,7,1,f +2955,2420,0,2,f +2955,2423,2,3,f +2955,2435,2,1,f +2955,2453a,0,1,f +2955,2462,0,2,f +2955,2488,2,2,f +2955,2489,6,1,f +2955,3004,7,2,f +2955,3004,0,12,f +2955,3005,7,1,f +2955,3005,0,20,f +2955,3010,7,3,f +2955,3022,7,1,f +2955,3023,7,1,f +2955,3023,0,7,f +2955,3024,0,10,f +2955,3028,2,2,f +2955,3031,1,1,f +2955,3039,0,1,f +2955,3040b,0,16,f +2955,3062b,0,12,f +2955,3298,0,1,f +2955,3455,0,1,f +2955,3471,2,1,f +2955,3622,0,2,f +2955,3622,7,4,f +2955,3623,0,7,f +2955,3626apr0001,14,2,f +2955,3660,0,1,f +2955,3665,7,4,f +2955,3665,0,5,f +2955,3666,0,1,f +2955,3676,0,1,f +2955,3710,0,3,f +2955,3795,7,1,f +2955,3830,0,3,f +2955,3831,0,3,f +2955,3846p48,6,2,f +2955,3847a,8,1,f +2955,3957a,0,1,f +2955,4032a,6,1,f +2955,4070,0,2,f +2955,4085b,0,3,f +2955,4150p40,14,1,f +2955,4213,1,1,f +2955,4275b,0,1,f +2955,4276b,0,1,f +2955,4287,0,3,f +2955,4315,1,1,f +2955,4490,0,2,f +2955,4495a,4,1,f +2955,4497,6,2,f +2955,4498,6,1,f +2955,4499,6,1,f +2955,4506,2,1,f +2955,4506,6,1,f +2955,6141,14,2,f +2955,87692,14,1,t +2955,87692,15,1,t +2955,87693,14,1,f +2955,87693,15,1,f +2955,87694,15,1,t +2955,87694,14,1,t +2955,970c00,2,2,f +2955,973p46c01,2,1,f +2955,973p48c01,2,1,f +2956,6064,2,25,f +2957,2780,0,1,t +2957,2780,0,10,f +2957,2905,0,2,f +2957,2994,7,4,f +2957,32013,0,4,f +2957,32015,7,6,f +2957,32017,4,6,f +2957,32054,4,4,f +2957,32054,0,2,f +2957,32062,0,4,f +2957,32138,0,4,f +2957,32140,4,2,f +2957,32202,179,2,f +2957,32278,8,2,f +2957,32278,4,2,f +2957,32291,0,1,f +2957,32291,4,1,f +2957,32291,7,2,f +2957,32310,148,2,f +2957,32316,0,4,f +2957,32449,7,2,f +2957,32523,0,3,f +2957,32525,8,2,f +2957,32526,8,2,f +2957,32526,0,1,f +2957,32534,148,2,f +2957,32535,148,2,f +2957,32556,7,10,f +2957,32557,0,2,f +2957,32558,4,2,f +2957,3705,0,3,f +2957,3706,0,4,f +2957,3707,0,1,f +2957,3713,7,1,t +2957,3713,7,6,f +2957,3737,0,1,f +2957,3749,7,2,f +2957,40490,8,3,f +2957,41677,7,4,f +2957,41752,8,1,f +2957,4274,7,1,t +2957,4274,7,2,f +2957,4519,0,1,f +2957,6553,0,1,f +2957,6553,7,1,f +2957,6558,0,11,f +2957,6578,0,4,f +2957,6628,0,2,f +2957,6632,7,2,f +2957,6632,0,4,f +2957,rb00167,0,2,f +2957,rb00167,0,2,t +2959,14728c100,0,1,f +2959,2346,0,4,f +2959,2431,2,4,f +2959,2458,8,8,f +2959,2653,0,4,f +2959,2780,0,44,f +2959,2815,0,2,f +2959,2825,7,2,f +2959,2854,7,2,f +2959,2902,0,4,f +2959,2903,15,4,f +2959,2905,7,4,f +2959,30000,8,2,f +2959,3001,2,2,f +2959,3001,4,4,f +2959,3022,0,4,f +2959,3023,0,20,f +2959,3031,0,2,f +2959,3069b,0,5,f +2959,3069b,4,5,f +2959,3127,7,1,f +2959,3176,0,1,f +2959,32001,0,6,f +2959,32002,8,26,f +2959,32012,1,1,f +2959,32013,1,6,f +2959,32014,1,5,f +2959,32015,7,4,f +2959,32016,1,4,f +2959,32017,7,5,f +2959,32028,7,4,f +2959,32034,7,4,f +2959,32039,7,6,f +2959,32062,0,12,f +2959,32073,0,6,f +2959,32123b,7,24,f +2959,32138,0,4,f +2959,3482,14,10,f +2959,3483,0,2,f +2959,3626bp04,14,1,f +2959,3634,0,2,f +2959,3647,7,2,f +2959,3648a,7,6,f +2959,3649,7,3,f +2959,3650c,7,1,f +2959,3666,0,6,f +2959,3673,7,36,f +2959,3700,14,4,f +2959,3700,4,16,f +2959,3701,4,4,f +2959,3701,14,4,f +2959,3702,4,14,f +2959,3702,14,2,f +2959,3703,14,2,f +2959,3703,4,14,f +2959,3705,0,6,f +2959,3706,0,6,f +2959,3707,0,7,f +2959,3708,0,6,f +2959,3709,0,10,f +2959,3710,2,2,f +2959,3710,0,16,f +2959,3711a,0,72,f +2959,3713,7,60,f +2959,3736,7,1,f +2959,3737,0,6,f +2959,3738,0,4,f +2959,3749,7,32,f +2959,3832,0,2,f +2959,3857,7,1,f +2959,3894,14,2,f +2959,3894,4,4,f +2959,3895,14,4,f +2959,3895,4,4,f +2959,3901,0,1,f +2959,4079,15,4,f +2959,4080,14,4,f +2959,4162,0,4,f +2959,4185,7,2,f +2959,4274,7,12,f +2959,4519,0,6,f +2959,5306bc020,0,1,f +2959,5306bc036,0,1,f +2959,6222,8,2,f +2959,6536,7,6,f +2959,6538b,7,6,f +2959,6553,7,6,f +2959,6558,0,10,f +2959,6575,7,2,f +2959,6587,8,6,f +2959,6632,7,6,f +2959,71427c01,7,1,f +2959,73090b,0,1,f +2959,970c00,15,1,f +2959,973pr1245c01,1,1,f +2959,9912,2,1,f +2959,rb00168,0,5,f +2959,sailbb03,15,4,f +2962,132a,0,4,f +2962,3001a,15,40,f +2962,3001a,47,5,f +2962,3001a,0,3,f +2962,3001a,1,9,f +2962,3001a,14,3,f +2962,3001a,4,40,f +2962,3002a,1,2,f +2962,3002a,15,9,f +2962,3002a,0,2,f +2962,3002a,14,3,f +2962,3002a,47,1,f +2962,3002a,4,9,f +2962,3003,1,7,f +2962,3003,15,8,f +2962,3003,0,3,f +2962,3003,14,5,f +2962,3003,47,4,f +2962,3003,4,9,f +2962,3004,47,5,f +2962,3004,0,6,f +2962,3004,4,9,f +2962,3004,15,9,f +2962,3004,14,5,f +2962,3004,1,5,f +2962,3005,1,2,f +2962,3005,15,2,f +2962,3005,4,2,f +2962,3006,4,1,f +2962,3006,15,1,f +2962,3007,15,1,f +2962,3007,4,1,f +2962,3008,4,3,f +2962,3008,15,3,f +2962,3009,4,3,f +2962,3009,15,3,f +2962,3034,15,4,f +2962,3035,15,4,f +2962,3036,15,1,f +2962,3081cc01,4,2,f +2962,31cc01,4,2,f +2962,32bc01,4,1,f +2962,33bc01,4,1,f +2962,453cc01,4,2,f +2962,604c01,4,2,f +2962,645bc01,4,2,f +2962,700ed,7,2,f +2962,7039c,4,4,f +2962,7049b,15,2,f +2963,2431,1,1,f +2963,2445,72,1,f +2963,2465,72,3,f +2963,2780,0,8,f +2963,2780,0,1,t +2963,2854,72,1,f +2963,3001,0,2,f +2963,3003,0,5,f +2963,3004,0,11,f +2963,3006,0,2,f +2963,3008,72,3,f +2963,3009,0,2,f +2963,3010,71,6,f +2963,30145,0,1,f +2963,30171,0,3,f +2963,3021,19,4,f +2963,3022,4,1,f +2963,3022,71,8,f +2963,30228,0,1,f +2963,3023,71,3,f +2963,3028,72,1,f +2963,3031,320,2,f +2963,3031,19,2,f +2963,3034,15,1,f +2963,30350b,320,1,f +2963,30367b,27,1,f +2963,30414,19,1,f +2963,30516,15,1,f +2963,30658,15,1,f +2963,30663,71,1,f +2963,3068b,71,4,f +2963,3068b,19,2,f +2963,3069b,71,2,f +2963,3070b,72,2,f +2963,3070b,72,1,t +2963,32007,135,12,f +2963,32018,0,6,f +2963,32039,0,2,f +2963,32062,4,6,f +2963,32074c01,72,1,f +2963,32140,71,4,f +2963,32530,72,2,f +2963,32556,71,8,f +2963,3460,72,1,f +2963,3622,72,2,f +2963,3626bpr0440,14,1,f +2963,3626bpr0441,14,1,f +2963,3626bpr0443,71,1,f +2963,3660,0,4,f +2963,3665,19,6,f +2963,3666,19,2,f +2963,3684,19,4,f +2963,3700,19,4,f +2963,3703,19,2,f +2963,3707,0,1,f +2963,3710,19,2,f +2963,3749,19,5,f +2963,3794a,72,4,f +2963,3795,72,1,f +2963,3795,19,1,f +2963,3937,0,1,f +2963,3938,71,1,f +2963,3941,27,2,f +2963,3958,72,1,f +2963,3962b,0,1,f +2963,4079,71,1,f +2963,4162,72,1,f +2963,4175,72,1,f +2963,42060,320,2,f +2963,42061,320,2,f +2963,424,14,1,t +2963,424,14,8,f +2963,4274,71,9,f +2963,4274,71,1,t +2963,4282,72,2,f +2963,4286,19,4,f +2963,43337,40,2,f +2963,4360,0,1,f +2963,44675,19,1,f +2963,44728,0,1,f +2963,4515,19,1,f +2963,4589,42,1,f +2963,4589,36,1,f +2963,4623,0,1,f +2963,47455,0,2,f +2963,47456,19,2,f +2963,48169,19,2,f +2963,48171,19,2,f +2963,48336,19,1,f +2963,53451,15,6,f +2963,53451,15,1,t +2963,54471,9999,1,t +2963,6111,19,2,f +2963,6112,71,4,f +2963,6141,4,4,f +2963,6141,4,1,t +2963,6536,72,1,f +2963,6538b,72,5,f +2963,6558,0,8,f +2963,6636,19,2,f +2963,6636,71,4,f +2963,680c01,0,4,f +2963,76110c05,71,1,f +2963,970c00,0,3,f +2963,973pb0178c01,0,1,f +2963,973pb0179c01,72,1,f +2963,973pb0180c01,72,1,f +2963,datrex1,288,1,f +2965,12708pr01,47,2,f +2965,3004pr20,15,1,f +2965,3022,70,1,f +2965,3022,1,1,f +2965,3022,15,1,f +2965,3023,0,2,f +2965,3023,4,1,f +2965,3024,15,1,f +2965,3040b,4,2,f +2965,3660,4,1,f +2965,3794b,15,1,f +2965,3794b,1,2,f +2965,4287,4,1,f +2965,44375a,15,1,f +2965,54200,15,2,f +2965,6141,15,1,f +2965,6141,14,1,f +2965,85984,15,1,f +2966,2352,4,1,f +2966,2456,14,2,f +2966,2577,1,4,f +2966,3001,4,6,f +2966,3001,0,2,f +2966,3001,15,6,f +2966,3001,14,6,f +2966,3001,1,5,f +2966,3001p11,4,1,f +2966,3001pr1,14,1,f +2966,3002,14,2,f +2966,3002,1,2,f +2966,3002,15,2,f +2966,3002,4,4,f +2966,3003,1,8,f +2966,3003,14,8,f +2966,3003,15,8,f +2966,3003,4,10,f +2966,3003,0,4,f +2966,3003pe1,14,2,f +2966,3007,4,2,f +2966,3185,15,4,f +2966,3483,0,4,f +2966,4130,4,1,f +2966,4131,15,1,f +2966,4132,4,1,f +2966,4133,15,1,f +2966,4180c02,0,2,f +2966,4202,2,1,f +2966,4727,2,2,f +2966,4728,15,2,f +2966,4743,14,1,f +2966,4744,4,1,f +2966,6007,8,1,f +2966,bfp002,9999,1,f +2967,270c02,0,1,f +2967,3001a,0,1,f +2967,3010,0,2,f +2967,3020,4,2,f +2967,3031,4,4,f +2967,3039,0,2,f +2967,3040a,0,4,f +2967,3145,4,4,f +2969,3739,7,2,f +2969,3740,0,2,f +2970,45474,125,6,f +2970,45481,46,2,f +2970,46281,182,4,f +2970,46281,14,4,f +2970,46296,47,2,f +2970,46296,46,4,f +2970,clikits004,182,8,f +2970,clikits004,14,6,f +2970,clikits011,57,1,f +2970,clikits011,46,1,f +2970,clikits012,47,2,f +2970,clikits025,57,4,f +2970,clikits034,100,3,f +2970,clikits034,46,3,f +2970,clikits035,100,2,f +2970,clikits035,46,2,f +2970,clikits036,100,1,f +2970,clikits036,46,1,f +2970,clikits040,182,2,f +2970,clikits084,57,2,f +2970,clikits084,46,4,f +2970,clikits210,89,2,f +2970,clikits211,89,2,f +2970,clikits212,89,2,f +2972,11089,26,2,f +2972,11403pr0007,28,1,f +2972,11458,70,4,f +2972,11477,27,3,f +2972,11477,191,7,f +2972,11477,0,1,f +2972,11605,70,1,f +2972,11816pr0025,78,1,f +2972,11816pr0026,84,1,f +2972,11833,0,1,f +2972,13547,26,4,f +2972,14417,72,5,f +2972,14419,72,3,f +2972,14704,71,10,f +2972,14769,71,5,f +2972,14769pr1042,27,2,f +2972,15068,72,1,f +2972,15068,27,4,f +2972,15068,191,16,f +2972,15070,14,4,f +2972,15070,27,6,f +2972,15208,15,4,f +2972,15208,191,4,f +2972,15254,72,1,f +2972,15397,70,1,f +2972,15571,72,1,f +2972,15573,72,1,f +2972,15573,26,3,f +2972,15573,297,1,f +2972,15712,297,4,f +2972,18395,0,2,f +2972,18395,26,2,f +2972,18671,72,1,f +2972,18980,71,1,f +2972,19204pr0001,320,1,f +2972,20381pr0002,191,1,f +2972,22388,35,1,f +2972,22388,35,1,t +2972,22667,26,1,f +2972,22667,26,1,t +2972,22888,2,3,f +2972,22890,72,4,f +2972,2357,72,4,f +2972,24196pr0003,191,1,f +2972,24199,191,1,f +2972,2420,70,2,f +2972,2420,0,2,f +2972,2420,72,2,f +2972,24201,26,2,f +2972,2423,5,2,f +2972,2431,191,5,f +2972,26038,9999,1,f +2972,2653,71,1,f +2972,2654,26,6,f +2972,2736,71,1,f +2972,2780,0,1,t +2972,2780,0,4,f +2972,3001,72,3,f +2972,3002,72,1,f +2972,3003,72,1,f +2972,3003,0,2,f +2972,3003,85,1,f +2972,3004,191,2,f +2972,3004,72,2,f +2972,3005,191,2,f +2972,3009,72,2,f +2972,30153,45,6,f +2972,30176,2,1,f +2972,3020,191,1,f +2972,3020,26,1,f +2972,3020,27,2,f +2972,3020,15,1,f +2972,3021,191,1,f +2972,3021,72,1,f +2972,3021,71,2,f +2972,3022,27,3,f +2972,3022,70,1,f +2972,3022,72,7,f +2972,3022,15,1,f +2972,3023,26,3,f +2972,3023,19,4,f +2972,3023,0,2,f +2972,3023,191,14,f +2972,3023,71,4,f +2972,3023,70,2,f +2972,3023,72,4,f +2972,3023,15,6,f +2972,3024,191,6,f +2972,3024,191,2,t +2972,3024,26,2,f +2972,3024,26,1,t +2972,3034,2,1,f +2972,30374,0,2,f +2972,30383,71,3,f +2972,30385,35,1,f +2972,3040b,0,2,f +2972,3040b,72,6,f +2972,30414,14,4,f +2972,30565,2,2,f +2972,3062b,72,3,f +2972,3065,45,2,f +2972,3068b,5,2,f +2972,3068b,72,1,f +2972,3068bpr0291,19,1,f +2972,3069b,191,3,f +2972,3069b,35,2,f +2972,3069b,41,2,f +2972,32013,297,4,f +2972,32028,15,1,f +2972,3245c,72,1,f +2972,33291,5,2,t +2972,33291,5,5,f +2972,33291,191,2,t +2972,33291,191,3,f +2972,3622,72,4,f +2972,3623,31,2,f +2972,3623,14,2,f +2972,3623,26,6,f +2972,3623,191,1,f +2972,3659,72,1,f +2972,3660,72,1,f +2972,3666,26,2,f +2972,3666,191,1,f +2972,3666,27,1,f +2972,3710,71,2,f +2972,3710,191,5,f +2972,3795,70,2,f +2972,3795,72,2,f +2972,3937,72,1,f +2972,3958,2,1,f +2972,4081b,72,2,f +2972,4162,71,1,f +2972,4286,71,1,f +2972,43093,1,4,f +2972,43713,26,1,f +2972,43722,191,1,f +2972,43723,191,1,f +2972,44302a,71,1,f +2972,44302b,14,2,f +2972,4460b,72,4,f +2972,44728,15,2,f +2972,4477,72,1,f +2972,46212,182,2,f +2972,4740,129,2,f +2972,4740,191,3,f +2972,4740,191,1,t +2972,47456,191,1,f +2972,48729b,72,1,f +2972,48729b,72,1,t +2972,49668,0,1,f +2972,50950,72,2,f +2972,51342pat0010,191,2,f +2972,53451,158,2,f +2972,53451,158,1,t +2972,54200,47,1,t +2972,54200,85,2,f +2972,54200,85,1,t +2972,54200,47,5,f +2972,54200,297,1,t +2972,54200,297,1,f +2972,59900,15,2,f +2972,6003,2,2,f +2972,60479,71,1,f +2972,60481,31,3,f +2972,6091,191,4,f +2972,6091,70,2,f +2972,6126b,182,1,f +2972,6134,71,1,f +2972,6141,35,1,t +2972,6141,297,1,t +2972,6141,297,4,f +2972,6141,35,1,f +2972,64225,191,2,f +2972,64644,308,1,f +2972,64647,182,2,t +2972,64647,182,2,f +2972,6636,72,1,f +2972,6636,71,2,f +2972,85861,15,2,f +2972,85861,15,2,t +2972,85984,71,1,f +2972,87087,72,3,f +2972,87580,2,1,f +2972,87994,70,1,t +2972,87994,70,1,f +2972,88072,71,1,f +2972,92456pr0090c01,84,1,f +2972,92456pr0093c01,78,1,f +2972,93095,70,2,f +2972,93273,27,2,f +2972,93273,191,4,f +2972,95343,70,1,f +2972,95344,297,1,t +2972,95344,297,1,f +2972,98138,182,2,t +2972,98138,71,1,t +2972,98138,45,1,t +2972,98138,71,3,f +2972,98138,182,4,f +2972,98138,45,2,f +2972,98138,36,1,f +2972,98138,52,1,t +2972,98138,36,1,t +2972,98138,52,1,f +2972,98138pr0031,36,2,f +2972,98138pr0031,36,2,t +2972,99206,15,1,f +2972,99207,71,2,f +2972,99780,72,1,f +2973,15619,0,1,f +2973,19179,148,2,f +2973,2530,8,1,f +2973,30173b,148,1,f +2973,3626cpr0745,14,1,f +2973,64644,297,2,f +2973,87991,0,1,f +2973,89522,179,2,f +2973,92690,297,2,f +2973,970c00pr0775,0,1,f +2973,973pr2854c01,0,1,f +2973,98132,308,1,f +2976,3003,15,1,f +2976,3021,15,1,f +2976,3023,15,1,f +2976,3024,15,1,f +2976,3039,15,1,f +2976,3062b,15,2,f +2976,3070b,15,2,f +2976,3700,15,1,f +2976,3794a,2,1,f +2976,3794a,15,1,f +2976,6141,0,1,f +2978,3068a,7,14,f +2978,3068a,1,14,f +2978,3068a,0,14,f +2978,3068a,14,14,f +2978,3068a,4,14,f +2978,3068a,15,14,f +2978,3069a,4,6,f +2978,3069a,14,6,f +2978,3069a,7,6,f +2978,3069a,1,6,f +2978,3069a,0,6,f +2978,3069a,15,6,f +2978,3070a,7,6,f +2978,3070a,15,6,f +2978,3070a,0,6,f +2978,3070a,4,6,f +2978,3070a,14,6,f +2978,3070a,1,6,f +2979,2412b,25,8,f +2979,2412b,71,5,f +2979,2412b,15,4,f +2979,2431,71,2,f +2979,2431,0,4,f +2979,2431,25,5,f +2979,2432,71,1,f +2979,2436,71,2,f +2979,2446,0,2,f +2979,2447,40,1,t +2979,2447,40,2,f +2979,2456,72,1,f +2979,2460,71,1,f +2979,2479,0,1,f +2979,2877,0,1,f +2979,2926,0,2,f +2979,298c02,15,2,t +2979,298c02,15,3,f +2979,3004,25,7,f +2979,30043,0,1,f +2979,3005,25,2,f +2979,3009,25,1,f +2979,30165,72,1,f +2979,3020,25,11,f +2979,3022,1,6,f +2979,3023,47,2,f +2979,3023,46,4,f +2979,3023,0,10,f +2979,3023,182,2,f +2979,3024,36,1,f +2979,3024,34,1,f +2979,3024,25,2,f +2979,3024,15,2,f +2979,30248,72,1,f +2979,3039,25,3,f +2979,30592,71,1,f +2979,3062b,71,2,f +2979,3062b,4,2,f +2979,3068b,25,1,f +2979,3069b,33,2,f +2979,3069b,15,8,f +2979,3069b,25,2,f +2979,3069bp02,71,1,f +2979,3070b,0,1,t +2979,3070b,0,2,f +2979,32000,15,4,f +2979,32013,15,1,f +2979,32028,0,4,f +2979,32059,15,1,f +2979,32064a,71,2,f +2979,32291,0,1,f +2979,3245b,25,5,f +2979,3460,15,4,f +2979,3475b,72,2,f +2979,3626bpr0279,14,1,f +2979,3626bpr0282,14,1,f +2979,3626bpr0388,14,1,f +2979,3660,25,1,f +2979,3666,15,2,f +2979,3666,0,6,f +2979,3673,71,1,t +2979,3673,71,1,f +2979,3710,15,6,f +2979,3710,1,4,f +2979,3737,0,1,f +2979,3738,0,4,f +2979,3747b,25,1,f +2979,3794a,1,1,f +2979,3795,0,1,f +2979,3795,15,1,f +2979,3795,25,4,f +2979,3821,25,1,f +2979,3822,25,1,f +2979,3829c01,1,1,f +2979,3899,4,1,f +2979,3937,15,2,f +2979,3941,15,1,f +2979,3958,0,1,f +2979,3959,71,1,f +2979,4032a,71,1,f +2979,4032a,4,1,f +2979,4032a,15,1,f +2979,4032a,2,1,f +2979,40620,71,2,f +2979,4079b,1,2,f +2979,4085c,0,4,f +2979,4176,40,1,f +2979,41770,15,1,f +2979,41883,40,1,f +2979,4274,1,1,t +2979,4274,1,6,f +2979,4282,0,1,f +2979,4360,0,1,f +2979,43898,15,1,f +2979,44728,71,6,f +2979,44728,25,2,f +2979,4485,0,1,f +2979,4488,71,6,f +2979,4510,71,4,f +2979,4532,25,4,f +2979,4533,72,4,f +2979,4599a,4,3,f +2979,4617b,0,1,f +2979,4697b,71,1,t +2979,4697b,71,2,f +2979,4735,0,2,f +2979,47457,14,1,f +2979,47755,25,1,f +2979,48183,15,1,f +2979,48336,15,2,f +2979,48336,0,2,f +2979,4854,0,1,f +2979,4855,0,1,f +2979,4865a,71,8,f +2979,50745,15,2,f +2979,50859a,0,1,f +2979,50861,0,2,f +2979,50862,71,2,f +2979,50950,25,4,f +2979,52031,25,1,f +2979,53586,25,1,f +2979,54200,33,3,t +2979,54200,33,14,f +2979,54200,0,1,t +2979,54200,47,2,f +2979,54200,0,6,f +2979,54200,47,1,t +2979,55295,0,1,f +2979,55296,0,1,f +2979,55297,0,1,f +2979,55298,0,1,f +2979,55299,0,1,f +2979,55300,0,1,f +2979,6014b,15,10,f +2979,6015,0,10,f +2979,6019,1,2,f +2979,60470a,71,2,f +2979,60475a,15,4,f +2979,60478,72,2,f +2979,60479,0,2,f +2979,6091,71,6,f +2979,6134,0,2,f +2979,61409,72,4,f +2979,6141,46,1,t +2979,6141,36,7,f +2979,6141,36,3,t +2979,6141,182,2,f +2979,6141,46,1,f +2979,6141,0,2,f +2979,6141,182,1,t +2979,6141,0,1,t +2979,61678,25,2,f +2979,6180,15,1,f +2979,61800,25,1,f +2979,6191,0,2,f +2979,6564,25,1,f +2979,6565,25,1,f +2979,6636,72,1,f +2979,87058,15,1,f +2979,89536,25,1,f +2979,970c00,72,3,f +2979,973pr1470c01,1,3,f +2981,4226398,9999,1,f +2981,45449,13,4,f +2981,45452,45,2,f +2981,45474,43,2,f +2981,46277,45,5,f +2981,46277,5,4,f +2981,46296,45,2,f +2981,48176,45,1,f +2981,clikits001pb01,29,1,f +2981,clikits021,230,1,f +2981,clikits022,47,6,f +2981,clikits022,43,6,f +2981,clikits022,45,11,f +2981,clikits023,118,3,f +2981,clikits024,43,1,f +2981,clikits024,47,2,f +2981,clikits025,230,2,f +2981,clikits053,118,2,f +2981,clikits053,13,4,f +2981,clikits054,118,2,f +2981,clikits088,43,1,f +2981,clikits088,45,1,f +2981,clikits098,230,1,f +2981,clikits160,89,1,f +2981,clikits161,89,1,f +2981,clikits162,29,1,f +2981,clikits163,13,2,f +2981,eraser07,9999,1,f +2982,132a,0,2,f +2982,21,47,1,f +2982,3003px3,14,1,f +2982,3004,14,1,f +2982,3005,14,2,f +2982,3020,14,1,f +2982,3020,4,1,f +2982,3021,14,4,f +2982,3024,14,6,f +2982,3034,14,1,f +2982,3062a,0,1,f +2982,3137c01,0,1,f +2982,3139,0,2,f +2982,3183b,4,1,f +2982,3314,4,1,f +2982,3317,14,1,f +2982,7039,4,2,f +2982,7049b,0,1,f +2982,784,4,1,f +2984,11476,71,2,f +2984,11477,72,2,f +2984,11477,4,4,f +2984,2343,71,2,f +2984,2420,4,1,f +2984,2421,0,1,f +2984,3004,4,1,f +2984,3021,72,1,f +2984,3021,4,2,f +2984,3022,4,2,f +2984,3023,4,2,f +2984,3024,4,1,f +2984,3024,4,1,t +2984,3031,72,1,f +2984,3065,40,2,f +2984,3068b,15,1,f +2984,3176,71,1,f +2984,3460,15,1,f +2984,3666,0,4,f +2984,3666,15,2,f +2984,3679,71,1,f +2984,3680,0,1,f +2984,3710,4,1,f +2984,3747b,4,1,f +2984,3794b,15,2,f +2984,3795,4,1,f +2984,4070,71,2,f +2984,4081b,71,2,f +2984,43722,15,1,f +2984,43723,15,1,f +2984,44728,4,1,f +2984,4488,71,1,f +2984,4740,72,1,f +2984,47457,72,1,f +2984,54200,40,1,t +2984,54200,40,2,f +2984,61409,72,2,f +2984,6141,36,2,f +2984,6141,72,4,f +2984,6141,36,1,t +2984,6141,46,1,t +2984,6141,72,1,t +2984,6141,34,2,f +2984,6141,46,1,f +2984,6141,34,1,t +2984,87580,0,1,f +2984,92946,4,2,f +2985,3626bpr1095,14,1,f +2985,88646pr0001,15,1,f +2985,970c03pb17,14,1,f +2985,973pr2202c01,14,1,f +2985,99241pr0001,15,1,f +2985,99250pr0001,4,1,f +2986,242c01,4,6,f +2986,3001a,0,2,f +2986,3002a,0,3,f +2986,3004,0,1,f +2986,3004p50,14,1,f +2986,3009,47,2,f +2986,3009,0,6,f +2986,3010,14,1,f +2986,3010,0,6,f +2986,3020,14,1,f +2986,3020,0,3,f +2986,3021,0,2,f +2986,3022,0,1,f +2986,3023,0,1,f +2986,3024,14,4,f +2986,3032,0,1,f +2986,3034,0,3,f +2986,3036,0,1,f +2986,3183a,14,1,f +2986,3184,14,1,f +2986,3483,0,6,f +2986,7049b,0,2,f +2986,800,0,1,f +2986,827,14,1,f +2986,871,0,1,f +2987,2496,0,2,f +2987,2610,14,1,f +2987,2654,19,1,f +2987,33085,14,1,f +2987,3626bpr0216,14,1,f +2987,3626bpr0279,14,1,f +2987,3626bpr0409,14,1,f +2987,3626bpr0498,14,1,f +2987,3833,4,1,f +2987,3901,70,1,f +2987,4032a,19,1,f +2987,42511,1,1,f +2987,46303,71,1,f +2987,6093,70,1,f +2987,6141,4,1,f +2987,6141,27,1,f +2987,6141,14,1,f +2987,6141,70,1,f +2987,970c00,4,1,f +2987,970c00,0,1,f +2987,970c00,71,1,f +2987,970c00,1,1,f +2987,973pr0805c01,15,1,f +2987,973pr1173c01,4,1,f +2987,973pr1271c01,15,1,f +2987,973pr1363c01,14,1,f +2988,3003,15,1,f +2988,3003pe1,15,1,f +2988,3004,15,2,f +2988,3020,15,1,f +2988,3021,15,1,f +2988,3023,0,2,f +2988,3660,15,1,f +2988,3710,0,1,f +2990,2335,15,1,f +2990,2339,4,4,f +2990,2412b,14,2,f +2990,2419,0,1,f +2990,2419,72,6,f +2990,2431,70,6,f +2990,2458,15,8,f +2990,2460,71,1,f +2990,2476a,15,1,f +2990,2496,0,2,f +2990,2555,71,2,f +2990,2569,71,1,t +2990,2569,71,1,f +2990,2655,71,2,f +2990,2817,0,1,f +2990,298c02,71,2,t +2990,298c02,71,3,f +2990,30000,71,2,f +2990,3001,4,3,f +2990,3003,15,1,f +2990,3003,2,1,f +2990,30031,0,1,f +2990,3004,4,4,f +2990,30093,34,3,f +2990,3010,4,4,f +2990,3020,15,4,f +2990,3021,1,6,f +2990,3021,15,1,f +2990,3023,71,2,f +2990,3023,4,3,f +2990,3024,19,3,f +2990,3032,70,1,f +2990,3033,0,1,f +2990,30357,0,8,f +2990,3039,2,1,f +2990,3039pr0002,15,1,f +2990,30562,15,8,f +2990,30565,4,18,f +2990,3062b,2,4,f +2990,3062b,4,1,f +2990,3063b,15,8,f +2990,3068b,4,4,f +2990,3068b,71,2,f +2990,3069b,4,5,f +2990,3245b,15,1,f +2990,32530,4,2,f +2990,33243,4,4,f +2990,3660,15,1,f +2990,3666,4,2,f +2990,3666,72,6,f +2990,3666,70,3,f +2990,3673,71,1,t +2990,3673,71,2,f +2990,3710,0,3,f +2990,3731,71,1,f +2990,3794a,15,4,f +2990,3795,15,1,f +2990,3831stk01,9999,1,t +2990,3832,70,3,f +2990,3898,45,5,f +2990,3957a,71,1,f +2990,3958,19,1,f +2990,4079,1,2,f +2990,4081b,0,1,f +2990,4085c,15,2,f +2990,41879a,71,1,f +2990,4274,1,1,t +2990,4274,1,1,f +2990,4286,2,2,f +2990,43337,14,1,f +2990,4349,72,2,f +2990,43888,70,6,f +2990,4433,191,2,f +2990,44567a,71,1,f +2990,44728,15,1,f +2990,4522,0,1,f +2990,4599a,71,1,f +2990,4740,71,1,f +2990,48092,15,4,f +2990,4864b,47,4,f +2990,54872pr0004,15,1,f +2990,54873pr0002,15,1,f +2990,57587,15,1,f +2990,6041,0,1,f +2990,60471,0,1,f +2990,6091,15,2,f +2990,6118,4,4,f +2990,61285pr0001,226,1,f +2990,6140,15,1,f +2990,6141,34,1,f +2990,6141,33,1,t +2990,6141,182,6,f +2990,6141,34,1,t +2990,6141,36,2,t +2990,6141,70,12,f +2990,6141,36,2,f +2990,6141,182,1,t +2990,6141,70,1,t +2990,6141,33,2,f +2990,6231,4,4,f +2990,63082,71,1,f +2990,63965,15,1,f +2990,6541,4,12,f +2990,73983,0,3,f +2990,970c00,71,2,f +2990,973pr1353c01,15,3,f +2991,11241pr0002,19,1,f +2991,11618,322,1,f +2991,15573,70,2,f +2991,23969,26,2,f +2991,2877,14,1,f +2991,298c02,71,1,f +2991,3020,27,2,f +2991,3022,14,1,f +2991,3062b,14,2,f +2991,3062b,71,1,f +2991,33051,10,1,f +2991,33291,26,4,f +2991,3852b,322,1,f +2991,4599b,0,1,f +2991,6141,41,1,f +2991,87087,71,1,f +2991,87580,72,1,f +2991,92593,15,1,f +2991,95343,4,1,f +2991,95344,297,1,f +2991,98283,84,1,f +2992,30374,19,2,f +2992,3710,72,1,f +2992,4079,1,1,f +2992,4150,14,2,f +2992,4740,71,1,f +2992,4740,71,1,t +2992,52107,0,1,f +2992,6141,1,1,t +2992,6141,1,1,f +2992,64644,0,1,f +2992,64644,0,1,t +2993,2460,15,1,f +2993,3004,15,1,f +2993,3020,15,1,f +2993,3021,15,1,f +2993,3023,15,1,t +2993,3023,15,1,f +2993,3039,47,1,f +2993,3710,0,2,f +2993,3710,15,1,f +2993,6041,0,1,f +2993,6141,46,1,f +2993,6141,46,2,t +2995,2446,8,1,f +2995,30088,8,2,f +2995,30090,33,1,f +2995,30091,8,1,f +2995,30094,14,1,f +2995,3022,0,1,f +2995,3023,7,1,f +2995,3475b,14,2,f +2995,3626bpau,14,1,f +2995,3660,0,1,f +2995,4360,7,1,f +2995,4588,42,2,f +2995,4589,36,1,f +2995,4623,14,1,f +2995,59275,0,2,f +2995,6019,0,2,f +2995,970c00pb033,272,1,f +2995,973pb0071c02,272,1,f +2996,10216stk01,9999,1,t +2996,12825,15,8,f +2996,14210,0,1,f +2996,2341,71,2,f +2996,2357,71,5,f +2996,2357,320,8,f +2996,2397,72,1,f +2996,2412b,0,2,f +2996,2420,2,6,f +2996,2420,71,5,f +2996,2431,71,3,f +2996,2431,19,3,f +2996,2431,72,4,f +2996,2435,2,1,f +2996,2445,15,2,f +2996,2460,15,2,f +2996,2488,0,1,f +2996,2639,15,2,f +2996,2714a,0,2,f +2996,2877,0,3,f +2996,2926,0,2,f +2996,3001,320,2,f +2996,3001,0,1,f +2996,3002,71,4,f +2996,3003,71,3,f +2996,3003,27,1,f +2996,3004,320,32,f +2996,3004,15,2,f +2996,3004,71,9,f +2996,3004,84,5,f +2996,30044,71,2,f +2996,30046,0,3,f +2996,3005,84,20,f +2996,3005,320,12,f +2996,3005,71,7,f +2996,3005,0,5,f +2996,30089,0,1,f +2996,3009,320,3,f +2996,3010,71,2,f +2996,30136,72,12,f +2996,30136,70,9,f +2996,30157,72,2,f +2996,3020,71,2,f +2996,3020,70,1,f +2996,3020,15,10,f +2996,3021,71,4,f +2996,3021,70,2,f +2996,3022,71,3,f +2996,3022,15,3,f +2996,3023,320,6,f +2996,3023,70,5,f +2996,3023,27,2,f +2996,3024,15,2,f +2996,3024,71,13,f +2996,3024,47,4,f +2996,30287pr03,272,1,f +2996,3030,15,2,f +2996,3033,15,3,f +2996,3034,15,5,f +2996,3034,71,2,f +2996,3035,70,1,f +2996,3036,71,1,f +2996,3037,71,2,f +2996,3039,71,3,f +2996,3039,15,3,f +2996,3040b,320,16,f +2996,3040b,15,6,f +2996,3040b,71,2,f +2996,3040bpr0003,71,1,f +2996,30414,0,6,f +2996,3045,15,6,f +2996,3062b,0,4,f +2996,3062b,71,7,f +2996,3062b,70,8,f +2996,3068b,73,3,f +2996,3068b,70,5,f +2996,3069b,73,3,f +2996,3069b,19,7,f +2996,3069b,25,2,f +2996,3069bpr0100,2,1,f +2996,3070b,73,1,t +2996,3070b,73,5,f +2996,3070b,72,1,t +2996,3070b,72,5,f +2996,32028,15,2,f +2996,32530,72,4,f +2996,33051,10,1,f +2996,3307,71,1,f +2996,3307,84,2,f +2996,3308,84,1,f +2996,33125,484,1,f +2996,33291,5,8,f +2996,33291,5,1,t +2996,3460,15,3,f +2996,3460,71,2,f +2996,3471,2,3,f +2996,3622,71,4,f +2996,3623,71,8,f +2996,3624,0,1,f +2996,3626bpr0386,14,1,f +2996,3626bpr0387,14,1,f +2996,3626bpr0388,14,1,f +2996,3626bpr0495,14,1,f +2996,3626bpr0499,14,1,f +2996,3626bpr0579,14,1,f +2996,3626bpr0892,14,1,f +2996,3659,320,4,f +2996,3659,71,5,f +2996,3660,71,2,f +2996,3660,15,1,f +2996,3665,72,2,f +2996,3665,70,2,f +2996,3666,0,2,f +2996,3678b,4,1,f +2996,3679,71,1,f +2996,3680,0,1,f +2996,3710,71,5,f +2996,3710,320,2,f +2996,3794b,0,10,f +2996,3794b,72,5,f +2996,3795,15,4,f +2996,3795,71,5,f +2996,3795,19,2,f +2996,3832,15,4,f +2996,3835,0,1,f +2996,3836,70,1,f +2996,3837,0,1,f +2996,3898,15,1,f +2996,3899,4,1,f +2996,3901,0,1,f +2996,3937,71,2,f +2996,3941,46,1,f +2996,3942c,0,1,f +2996,40232,15,1,f +2996,4032a,0,2,f +2996,4032a,2,4,f +2996,4070,71,4,f +2996,4079,0,1,f +2996,4085c,71,2,f +2996,41334,72,1,f +2996,41539,143,2,f +2996,41879a,19,1,f +2996,41879a,1,1,f +2996,4286,1,3,f +2996,4286,4,3,f +2996,4286,15,2,f +2996,4342,19,2,f +2996,43898,0,1,f +2996,44568,71,4,f +2996,44569,72,4,f +2996,44728,0,1,f +2996,4477,71,3,f +2996,4489b,70,4,f +2996,4495b,4,2,f +2996,4510,15,4,f +2996,4589,2,2,f +2996,4589,46,1,f +2996,4733,0,1,f +2996,48336,0,6,f +2996,48336,15,5,f +2996,4864b,47,2,f +2996,49668,135,2,f +2996,49668,0,4,f +2996,54200,320,1,t +2996,54200,320,4,f +2996,57895,47,2,f +2996,59349,47,1,f +2996,59363,226,1,f +2996,6019,0,1,f +2996,60470a,71,7,f +2996,60475a,84,1,f +2996,60475a,0,1,f +2996,60475a,71,4,f +2996,60596,0,2,f +2996,6134,71,2,f +2996,6141,70,9,f +2996,6141,29,8,f +2996,6141,27,1,t +2996,6141,36,4,f +2996,6141,27,2,f +2996,6141,72,1,t +2996,6141,15,4,f +2996,6141,19,6,f +2996,6141,15,1,t +2996,6141,70,1,t +2996,6141,19,1,t +2996,6141,34,1,t +2996,6141,72,7,f +2996,6141,57,4,f +2996,6141,4,11,f +2996,6141,36,1,t +2996,6141,0,1,t +2996,6141,4,1,t +2996,6141,57,1,t +2996,6141,0,6,f +2996,6141,34,4,f +2996,6141,29,1,t +2996,61780,70,2,f +2996,62462,0,2,f +2996,6254,191,2,f +2996,62930,47,1,f +2996,63965,0,1,f +2996,64390,70,1,f +2996,64644,0,2,f +2996,6636,71,1,f +2996,6636,19,2,f +2996,6636,72,1,f +2996,6636,70,3,f +2996,6636,15,2,f +2996,75998pr0005,70,1,f +2996,85974,70,1,f +2996,87079,71,2,f +2996,87585,70,1,f +2996,970c00,0,1,f +2996,970c00,1,1,f +2996,970c00,272,1,f +2996,970c00,4,1,f +2996,970c00,71,1,f +2996,973c42,0,1,f +2996,973pr1160c01,1,1,f +2996,973pr1163c01,272,1,f +2996,973pr1196c01,15,1,f +2996,973pr1470c01,1,1,f +2996,973pr1485c01,4,1,f +2996,973pr1576c01,72,1,f +2998,11089,71,2,f +2998,11090,72,2,f +2998,11153,71,3,f +2998,11203,72,1,f +2998,11215,71,1,f +2998,11291,1,1,f +2998,11477,71,4,f +2998,11477,0,2,f +2998,14769,71,2,f +2998,15303,36,3,f +2998,15307pr0001,308,1,f +2998,15311pr0001,326,1,f +2998,15400,72,2,f +2998,16417,9999,1,t +2998,2412b,179,11,f +2998,2419,71,1,f +2998,2420,71,6,f +2998,2450,1,6,f +2998,2570,148,1,f +2998,2639,72,6,f +2998,2654,72,2,f +2998,2780,0,2,t +2998,2780,0,8,f +2998,3004,15,1,f +2998,3006,0,1,f +2998,3008,71,2,f +2998,3009,0,4,f +2998,3020,0,4,f +2998,3020,1,3,f +2998,3021,272,6,f +2998,3022,15,1,f +2998,3023,72,7,f +2998,3023,28,2,f +2998,30236,71,1,f +2998,3024,71,1,f +2998,3024,71,1,t +2998,3029,71,2,f +2998,3030,1,3,f +2998,3031,71,1,f +2998,3034,71,2,f +2998,30374,71,4,f +2998,30375,19,1,f +2998,30376,19,1,f +2998,30377,19,1,t +2998,30377,19,1,f +2998,30378,19,1,f +2998,30389b,0,4,f +2998,3039,272,2,f +2998,30565,272,4,f +2998,3069b,36,2,f +2998,3069b,71,8,f +2998,3069b,272,4,f +2998,3070b,0,1,t +2998,3070b,0,2,f +2998,3176,14,1,f +2998,32000,72,6,f +2998,32001,0,1,f +2998,32054,71,2,f +2998,32062,4,11,f +2998,32073,71,4,f +2998,32123b,14,1,t +2998,32123b,14,6,f +2998,32523,72,6,f +2998,32524,71,4,f +2998,3460,71,4,f +2998,3622,4,4,f +2998,3626cpr1149,78,1,f +2998,3673,71,1,t +2998,3673,71,2,f +2998,3705,0,1,f +2998,3707,0,2,f +2998,3709,71,6,f +2998,3710,72,5,f +2998,3794b,72,1,f +2998,3794b,272,8,f +2998,3795,72,4,f +2998,3832,1,4,f +2998,3832,72,1,f +2998,4032a,1,2,f +2998,4070,19,6,f +2998,4151,0,1,f +2998,4162,4,2,f +2998,41677,71,4,f +2998,41769,71,3,f +2998,41769,272,2,f +2998,41770,272,2,f +2998,41770,71,3,f +2998,41889,148,1,f +2998,41890,148,2,f +2998,42687,148,1,f +2998,43722,71,1,f +2998,43723,71,1,f +2998,43857,71,2,f +2998,44358,71,2,f +2998,44359,71,4,f +2998,44567a,0,4,f +2998,44570,72,4,f +2998,44728,0,5,f +2998,4519,71,6,f +2998,45590,0,2,f +2998,47457,72,1,f +2998,47755,72,2,f +2998,50745,72,2,f +2998,50950,272,2,f +2998,50950,71,2,f +2998,51739,71,1,f +2998,57909b,72,1,f +2998,58247,0,2,f +2998,58846,71,4,f +2998,59230,19,1,f +2998,59230,19,1,t +2998,59443,0,14,f +2998,59900,36,6,f +2998,60470a,71,2,f +2998,60478,72,2,f +2998,60478,71,6,f +2998,60483,0,8,f +2998,6141,46,2,t +2998,6141,46,10,f +2998,6157,71,1,f +2998,6179,71,2,f +2998,6180,0,3,f +2998,63868,0,4,f +2998,63965,71,3,f +2998,64727,272,2,f +2998,6558,1,2,f +2998,6636,71,3,f +2998,6636,272,4,f +2998,72454,72,2,f +2998,73983,0,1,f +2998,73983,71,2,f +2998,76766,71,1,f +2998,87079,0,1,f +2998,87083,72,6,f +2998,87580,72,2,f +2998,88072,4,2,f +2998,90194,71,1,f +2998,90258,72,1,f +2998,92013,72,1,f +2998,92280,0,2,f +2998,92593,272,2,f +2998,92946,72,8,f +2998,93273,272,4,f +2998,93274,0,4,f +2998,93606,272,11,f +2998,93606,71,1,f +2998,95188,71,4,f +2998,970c00pr0630,308,1,f +2998,970c00pr0632,308,1,f +2998,973c63,308,1,f +2998,973pr2594c01,326,1,f +2998,98313,72,1,f +2998,98313,1,2,f +2999,3037,1,12,f +2999,3041,1,2,f +3001,2412b,383,1,t +3001,2412b,383,1,f +3001,3003,4,1,f +3001,30285,7,4,f +3001,30622,15,1,f +3001,30626,15,1,f +3001,30640,15,1,f +3001,30643,8,1,f +3001,30647pb01,15,1,f +3001,30647pb02,15,1,f +3001,30648,0,4,f +3001,30663,0,1,f +3001,3900,15,1,t +3001,3900,15,1,f +3001,3962b,8,1,f +3001,3962b,8,1,t +3001,4083,0,1,f +3001,40996,57,1,f +3001,6238,33,1,f +3001,js016,9999,1,f +3005,32203,14,2,f +3005,32203,0,2,f +3005,32207,8,2,f +3005,32209,15,1,f +3005,32221,8,1,f +3005,32229,0,2,f +3005,32242,14,2,f +3005,32242,0,2,f +3005,32246,14,2,f +3005,32247,8,4,f +3005,3708,15,2,f +3005,rb00169,0,2,f +3005,zbb013,22,9,f +3005,zbb014,7,2,f +3005,zbb015,14,2,f +3005,zbb015,0,2,f +3006,2420,15,2,f +3006,3001,15,1,f +3006,3004,15,1,f +3006,3005pb013,15,1,f +3006,3005pr0003,15,2,f +3006,3021,15,1,f +3006,3022,15,3,f +3006,3023,15,1,f +3006,3023,0,1,f +3006,3024,15,2,f +3006,3035,4,1,f +3006,3040b,15,2,f +3006,3298,15,1,f +3006,3660,15,3,f +3006,3794b,15,1,f +3006,3836,70,1,f +3006,3941,0,1,f +3006,4032a,4,1,f +3006,4070,15,4,f +3006,4589,25,1,f +3006,4659758box,47,1,f +3006,48729a,0,3,f +3006,49668,15,2,f +3006,50950,15,2,f +3006,54200,15,6,f +3006,60474,0,1,f +3006,60481,15,1,f +3006,6141,0,3,f +3007,2420,2,4,f +3007,2420,15,4,f +3007,2420,0,4,f +3007,2456,1,4,f +3007,2456,14,2,f +3007,2456,15,4,f +3007,2456,4,2,f +3007,3001,27,4,f +3007,3001,15,30,f +3007,3001,25,8,f +3007,3001,0,17,f +3007,3001,2,17,f +3007,3001,1,30,f +3007,3001,4,30,f +3007,3001,14,34,f +3007,3002,15,12,f +3007,3002,0,6,f +3007,3002,4,12,f +3007,3002,1,12,f +3007,3002,14,12,f +3007,3002,2,6,f +3007,3003,4,80,f +3007,3003,14,94,f +3007,3003,1,80,f +3007,3003,25,28,f +3007,3003,2,46,f +3007,3003,15,80,f +3007,3003,27,14,f +3007,3003,0,46,f +3007,3004,0,40,f +3007,3004,27,12,f +3007,3004,4,80,f +3007,3004,15,80,f +3007,3004,25,12,f +3007,3004,1,80,f +3007,3004,14,80,f +3007,3004,2,40,f +3007,3005,15,40,f +3007,3005,2,24,f +3007,3005,1,40,f +3007,3005,14,40,f +3007,3005,4,40,f +3007,3005,27,8,f +3007,3005,25,8,f +3007,3005,0,24,f +3007,3005pe1,14,4,f +3007,3005px2,14,4,f +3007,3007,15,2,f +3007,3007,1,2,f +3007,3007,4,2,f +3007,3007,14,2,f +3007,3008,14,2,f +3007,3008,15,4,f +3007,3008,4,2,f +3007,3008,1,4,f +3007,3009,15,6,f +3007,3009,14,4,f +3007,3009,1,6,f +3007,3009,4,4,f +3007,3010,25,4,f +3007,3010,15,15,f +3007,3010,4,15,f +3007,3010,0,12,f +3007,3010,14,17,f +3007,3010,2,12,f +3007,3010,1,15,f +3007,3010,27,2,f +3007,3020,0,4,f +3007,3020,4,4,f +3007,3021,0,4,f +3007,3021,1,4,f +3007,3021,4,4,f +3007,3022,4,4,f +3007,3022,1,4,f +3007,3022,0,4,f +3007,3037,4,10,f +3007,3037,1,8,f +3007,3039,47,2,f +3007,3039,4,12,f +3007,3039,15,4,f +3007,3039,14,4,f +3007,3039,1,8,f +3007,3040b,4,8,f +3007,3040b,14,8,f +3007,3040b,15,4,f +3007,3040b,1,8,f +3007,3040b,0,4,f +3007,3062b,4,4,f +3007,3062b,0,4,f +3007,3062b,15,4,f +3007,3297,0,6,f +3007,3298,0,10,f +3007,3299,4,4,f +3007,3300,4,4,f +3007,3622,0,4,f +3007,3622,4,8,f +3007,3622,1,8,f +3007,3622,15,8,f +3007,3622,14,8,f +3007,3622,2,4,f +3007,3660,4,4,f +3007,3660,0,4,f +3007,3660,14,4,f +3007,3665,14,8,f +3007,3665,15,4,f +3007,3665,4,8,f +3007,3665,0,8,f +3007,3710,15,4,f +3007,3710,0,4,f +3007,3794a,71,2,f +3007,3794a,4,2,f +3007,3794a,15,2,f +3007,4032a,0,2,f +3007,4070,14,4,f +3007,4081b,0,2,f +3007,4286,0,8,f +3007,4740,15,2,f +3007,54200,4,2,f +3007,54200,0,2,f +3007,6141,0,6,f +3007,6141,27,1,t +3007,6141,25,8,f +3007,6141,0,1,t +3007,6141,25,1,t +3007,6141,4,1,t +3007,6141,4,6,f +3007,6141,27,6,f +3008,3483,0,4,f +3008,384,14,1,f +3008,4234,4,2,f +3008,7039,4,2,f +3008,7049b,0,1,f +3010,15573,72,4,f +3010,15573,70,106,f +3010,15712,71,1,f +3010,18787,179,1,f +3010,18789,179,1,f +3010,18792,70,1,f +3010,19723,179,1,f +3010,19727pr0005,0,1,f +3010,19729pr0001,308,1,f +3010,19729pr0002,15,1,f +3010,19729pr0003,2,1,f +3010,19729pr0006,2,1,f +3010,19730,179,1,f +3010,19734,2,1,f +3010,2431,71,13,f +3010,2431,297,4,f +3010,2445,70,4,f +3010,2453b,84,10,f +3010,2454b,71,14,f +3010,2456,71,27,f +3010,2456,2,2,f +3010,2456,70,8,f +3010,2465,71,2,f +3010,2654,72,1,f +3010,2921,84,40,f +3010,3001,1,6,f +3010,3001,71,38,f +3010,3001,288,4,f +3010,3001,2,4,f +3010,3001,25,8,f +3010,3001,70,5,f +3010,3002,71,1,f +3010,3003,71,102,f +3010,3003,84,8,f +3010,3003,33,12,f +3010,3003,0,3,f +3010,3003,34,5,f +3010,3003,70,18,f +3010,3004,71,17,f +3010,3004pr0036,15,6,f +3010,3005,84,6,f +3010,3006,71,4,f +3010,3006,70,6,f +3010,3007,71,7,f +3010,3020,0,1,f +3010,3020,1,1,f +3010,3020,71,1,f +3010,3021,0,1,f +3010,3022,1,2,f +3010,3022,4,3,f +3010,3022,0,1,f +3010,3022,72,28,f +3010,3022,71,17,f +3010,3023,0,4,f +3010,30236,71,2,f +3010,30237b,71,1,f +3010,3024,71,20,f +3010,3024,182,1,t +3010,3024,46,4,f +3010,3024,46,1,t +3010,3024,182,4,f +3010,3024,71,2,t +3010,3029,72,3,f +3010,3030,72,1,f +3010,3031,10,4,f +3010,3031,72,8,f +3010,3031,71,1,f +3010,3033,72,1,f +3010,3034,71,1,f +3010,3034,72,1,f +3010,3035,72,5,f +3010,3039,33,6,f +3010,3068b,70,8,f +3010,3068b,0,1,f +3010,3068b,71,19,f +3010,3069b,2,2,f +3010,3069b,72,4,f +3010,3069b,0,1,f +3010,3070b,70,1,t +3010,3070b,70,8,f +3010,32064a,4,1,f +3010,32474,4,1,f +3010,3700,71,2,f +3010,3710,70,4,f +3010,3795,72,1,f +3010,3958,1,2,f +3010,3958,72,2,f +3010,4032a,0,3,f +3010,41539,72,2,f +3010,4162,71,16,f +3010,4342,19,2,f +3010,44728,2,8,f +3010,4697b,0,2,f +3010,4697b,0,1,t +3010,4738a,84,1,f +3010,4739a,84,1,f +3010,48336,0,2,f +3010,4865b,71,4,f +3010,59426,72,1,f +3010,60115,15,1,f +3010,6020,70,2,f +3010,6141,0,10,f +3010,6141,70,14,f +3010,6141,36,8,f +3010,6141,36,2,t +3010,6141,322,1,t +3010,6141,322,8,f +3010,6141,0,2,t +3010,6141,70,1,t +3010,6231,71,4,f +3010,6266,15,2,f +3010,6266,15,1,t +3010,63868,0,6,f +3010,64644,308,6,f +3010,73983,0,4,f +3010,75937,15,1,f +3010,87079,71,10,f +3010,87087,0,2,f +3010,87580,4,3,f +3010,87580,71,29,f +3010,87580,4,1,t +3010,87580,72,19,f +3010,87580,10,16,f +3010,87580,28,1,f +3010,88393,71,8,f +3010,92438,72,4,f +3010,93061,15,1,t +3010,93061,15,2,f +3010,96874,25,1,t +3010,970c00,85,2,f +3010,973pr2819c01,321,1,f +3010,973pr2820c01,321,1,f +3010,98138,71,1,t +3010,98138,71,23,f +3010,98283,84,8,f +3011,11153,27,2,f +3011,11153,0,4,f +3011,2412b,71,6,f +3011,2420,0,4,f +3011,2431,27,2,f +3011,2437,40,1,f +3011,2460,0,3,f +3011,2639,72,2,f +3011,2654,72,4,f +3011,2780,0,1,t +3011,2780,0,2,f +3011,298c02,15,2,f +3011,298c02,15,1,t +3011,3001,27,2,f +3011,3004,27,2,f +3011,3010,27,2,f +3011,3020,0,5,f +3011,3021,72,5,f +3011,3022,15,4,f +3011,3022,0,2,f +3011,3023,0,4,f +3011,3023,36,4,f +3011,3023,47,2,f +3011,3023,27,4,f +3011,3024,36,6,f +3011,3024,36,1,t +3011,3024,47,2,f +3011,3024,47,1,t +3011,3032,72,1,f +3011,3040b,27,2,f +3011,30414,15,2,f +3011,30602,40,2,f +3011,3069b,41,2,f +3011,32124,0,2,f +3011,32523,71,1,f +3011,3622,27,2,f +3011,3623,0,2,f +3011,3665,27,4,f +3011,3666,0,2,f +3011,3666,27,2,f +3011,3700,15,2,f +3011,3701,15,2,f +3011,3749,19,1,f +3011,3795,0,2,f +3011,3795,15,2,f +3011,3941,15,1,f +3011,4032a,0,3,f +3011,4081b,27,2,f +3011,43093,1,1,f +3011,43722,27,4,f +3011,43723,27,4,f +3011,44728,0,4,f +3011,45677,27,1,f +3011,47455,0,2,f +3011,47457,27,1,f +3011,47720,0,2,f +3011,48171,72,2,f +3011,48172,0,1,f +3011,48336,0,6,f +3011,50943,72,2,f +3011,51739,0,4,f +3011,51739,27,1,f +3011,54200,0,2,f +3011,54200,0,1,t +3011,54200,27,2,f +3011,54200,27,1,t +3011,56897,0,4,f +3011,56902,71,4,f +3011,57909a,72,2,f +3011,6019,72,2,f +3011,60478,0,4,f +3011,6091,0,2,f +3011,6091,27,4,f +3011,61409,27,4,f +3011,6141,57,8,f +3011,6141,57,1,t +3011,62361,27,4,f +3011,6564,0,1,f +3011,6565,0,1,f +3011,73983,0,4,f +3011,85984,15,2,f +3011,85984,27,7,f +3011,92013,0,2,f +3011,92280,71,4,f +3011,93274,0,2,f +3011,98313,148,6,f +3011,99206,71,2,f +3012,3001,1,2,f +3012,3002,1,1,f +3012,3003,4,1,f +3012,3009b,14,2,f +3012,3020,14,1,f +3012,3034,14,1,f +3012,3039,4,1,f +3012,3039,47,1,f +3012,3298,4,2,f +3012,3298p13,4,1,f +3012,3747b,1,1,f +3012,3795,14,1,f +3012,3795,4,1,f +3012,4745,14,1,f +3012,6232,1,1,f +3014,122c01,0,4,f +3014,16542,7,1,f +3014,3001,4,1,f +3014,3003,4,1,f +3014,3004,4,5,f +3014,3005,4,1,f +3014,3020,4,2,f +3014,3021,4,2,f +3014,3022,0,2,f +3014,3023,4,4,f +3014,3024,36,3,f +3014,3024,4,5,f +3014,3024,33,5,f +3014,3024,46,5,f +3014,3062b,7,2,f +3014,3069b,15,2,f +3014,3149c01,4,1,f +3014,3403,4,1,f +3014,3404,4,1,f +3014,3464,4,2,f +3014,3622,4,3,f +3014,3626apr0001,14,3,f +3014,3641,0,6,f +3014,3710,4,4,f +3014,3788,4,1,f +3014,3795,0,1,f +3014,3821p09,4,2,f +3014,3822p09,4,2,f +3014,3823,47,1,f +3014,3829c01,1,2,f +3014,3832,0,1,f +3014,3834,15,2,f +3014,3835,7,1,f +3014,3842a,15,1,f +3014,4070,4,7,f +3014,4084,0,4,f +3014,4085a,4,1,f +3014,4175,0,2,f +3014,4207,7,1,f +3014,4208,0,1,f +3014,4209,4,1,f +3014,4211,4,3,f +3014,4213,4,2,f +3014,4214,4,2,f +3014,4480c01,4,1,f +3014,4483,47,1,f +3014,4533,4,1,f +3014,4594,47,1,f +3014,4599a,7,2,f +3014,92410,4,1,f +3014,970c00,0,3,f +3014,973p21c01,0,3,f +3016,14226c11,15,1,f +3016,2339,15,2,f +3016,3001,8,1,f +3016,3003,15,2,f +3016,3004,15,5,f +3016,3005,462,2,f +3016,3005,7,2,f +3016,3005,6,1,f +3016,30089,0,1,f +3016,30153,34,1,f +3016,30193,8,1,f +3016,30193,8,1,t +3016,3020,8,2,f +3016,3021,7,3,f +3016,3022,15,1,f +3016,3023,6,1,f +3016,30236,7,1,f +3016,3031,19,2,f +3016,30367a,14,1,f +3016,30374,6,2,f +3016,30374,41,2,f +3016,3040b,8,5,f +3016,3040b,6,2,f +3016,3048c,0,3,f +3016,3062b,0,6,f +3016,3069b,8,4,f +3016,32028,0,4,f +3016,3622,6,1,f +3016,3622,19,2,f +3016,3626bpx128,14,1,f +3016,3647,7,2,f +3016,3647,7,1,t +3016,3666,8,2,f +3016,3675,0,4,f +3016,3684,15,1,f +3016,3700,15,2,f +3016,3710,8,1,f +3016,3794a,7,4,f +3016,3830,7,1,f +3016,3831,7,1,f +3016,3865,15,1,f +3016,4085c,8,5,f +3016,4095,0,1,f +3016,4162,8,1,f +3016,4189425pb01,9999,1,t +3016,4189425pb02,9999,1,t +3016,4189425pb03,9999,1,t +3016,43894,6,1,f +3016,43895,15,1,f +3016,43896,15,2,f +3016,43897,15,1,f +3016,4495b,14,1,f +3016,4589,14,1,f +3016,4740,14,2,f +3016,4865a,15,4,f +3016,6083,15,1,f +3016,6141,47,1,f +3016,6141,41,1,t +3016,6141,41,5,f +3016,6141,47,1,t +3016,6182,6,2,f +3016,6636,7,2,f +3016,970c00,19,1,f +3016,973px179c01,6,1,f +3017,11476,71,2,f +3017,11477,14,2,f +3017,14704,71,2,f +3017,14769pr1002,15,1,f +3017,14769pr1011,71,1,f +3017,18649,191,2,f +3017,2736,71,2,f +3017,2780,0,1,f +3017,2780,0,1,t +3017,3004,191,2,f +3017,3020,71,1,f +3017,3022,0,2,f +3017,3023,4,1,f +3017,3039,14,5,f +3017,32059,191,1,f +3017,32064a,14,2,f +3017,3666,14,1,f +3017,3700,4,1,f +3017,40378,4,1,f +3017,40379,4,1,f +3017,4070,0,2,f +3017,44728,14,1,f +3017,4735,0,2,f +3017,4871,14,1,f +3017,49668,0,2,f +3017,54200,0,2,f +3017,54200,0,1,t +3017,54200,191,1,t +3017,54200,182,1,t +3017,54200,182,4,f +3017,54200,191,2,f +3017,59900,15,2,f +3017,6005,191,2,f +3017,6019,14,2,f +3017,6141,15,2,f +3017,6141,15,1,t +3017,62462,4,1,f +3018,10113,1,1,f +3018,11153,0,2,f +3018,11477,0,2,f +3018,15571,4,1,f +3018,2420,0,4,f +3018,2450,0,2,f +3018,2456,1,2,f +3018,298c02,71,2,f +3018,3001,4,2,f +3018,3020,0,2,f +3018,3020,25,4,f +3018,3021,71,1,f +3018,3022,0,1,f +3018,3023,0,5,f +3018,3024,0,5,f +3018,3024,36,2,f +3018,3028,72,1,f +3018,3034,272,2,f +3018,3034,4,1,f +3018,3034,0,4,f +3018,3039pr0014,0,1,f +3018,3049b,0,1,f +3018,30503,4,2,f +3018,30602,40,4,f +3018,3069bpr0070,0,1,f +3018,3070b,36,2,f +3018,3298,0,2,f +3018,3299,0,2,f +3018,3460,0,1,f +3018,3460,4,2,f +3018,3623,0,2,f +3018,3623,4,2,f +3018,3626cpr0896,78,1,f +3018,3626cpr1371,78,1,f +3018,3665,0,8,f +3018,3666,0,1,f +3018,3710,0,4,f +3018,3710,272,2,f +3018,3794b,0,7,f +3018,3795,0,1,f +3018,3795,1,2,f +3018,3829c01,71,1,f +3018,4032a,14,2,f +3018,4488,71,4,f +3018,45677,0,1,f +3018,4865b,0,2,f +3018,50745,4,4,f +3018,54200,47,4,f +3018,54200,0,2,f +3018,54200,4,6,f +3018,56630,1,1,f +3018,6014b,71,4,f +3018,6141,36,1,f +3018,6141,15,1,f +3018,6231,0,2,f +3018,85959pat0003,36,1,f +3018,85984,0,4,f +3018,87697,0,4,f +3018,92947,71,1,f +3018,93274,0,4,f +3018,970x021,2,1,f +3018,970x023,71,1,f +3018,973pr1949bc01,4,1,f +3018,973pr2149c01,71,1,f +3018,98138,36,1,f +3018,99464,14,1,f +3018,99781,71,1,f +3018,99930,0,1,f +3019,3009,14,3,f +3019,3010,14,2,f +3019,3032,14,1,f +3019,3062b,4,1,f +3019,3062b,0,1,f +3019,3741,2,1,f +3019,3742,4,3,f +3019,3742,4,1,t +3019,3852a,6,1,f +3019,4222a,4,1,f +3019,fab7a,9999,1,f +3019,fabca3,4,1,f +3021,30153,33,1,f +3021,3069bpr0055,15,1,f +3021,59,383,1,f +3021,6175px1,15,1,f +3022,2456,15,1,f +3022,2456,7,1,f +3022,2486,4,8,f +3022,2569,42,1,f +3022,3001,25,2,f +3022,3001,14,1,f +3022,3003,15,3,f +3022,30144,15,1,f +3022,30150,25,2,f +3022,30151a,25,1,f +3022,30151a,4,1,f +3022,30180,15,2,f +3022,3023,42,2,f +3022,30237a,15,2,f +3022,30248,0,1,f +3022,30285,15,4,f +3022,30363,15,1,f +3022,30389b,15,3,f +3022,3039,15,1,f +3022,3039pc3,7,1,f +3022,3039pr0005,15,2,f +3022,30407,42,2,f +3022,3040b,42,2,f +3022,3040p04,7,1,f +3022,3040p58,8,1,f +3022,30621,25,1,f +3022,30622,25,3,f +3022,30640,15,3,f +3022,30640,7,2,f +3022,30640,8,1,f +3022,30643,15,1,f +3022,30644,0,1,f +3022,30645,7,6,f +3022,30646a,15,12,f +3022,30647,15,2,f +3022,30648,0,4,f +3022,30650,143,2,f +3022,30650pb01,143,1,f +3022,30663,0,8,f +3022,3068b,15,2,f +3022,3068bp70,15,1,f +3022,3068bp80,15,1,f +3022,3403c01,7,1,f +3022,3900,15,2,f +3022,3941,25,2,f +3022,3941,4,2,f +3022,3942c,15,1,f +3022,3942c,8,2,f +3022,3957a,42,2,f +3022,3957a,0,1,f +3022,3962b,0,2,f +3022,4006,0,1,f +3022,4083,0,1,f +3022,40902,0,1,f +3022,41751pr4,143,2,f +3022,4222a,4,1,f +3022,42600,25,1,f +3022,42600,15,1,f +3022,42601,15,1,f +3022,42601,25,1,f +3022,42602,143,1,f +3022,42602pb01,15,1,f +3022,42602pb02,15,1,f +3022,42602pb03,25,1,f +3022,42603pb01,10,1,f +3022,42604pr01,15,1,f +3022,42605pb01,15,1,f +3022,42607c01,15,2,f +3022,42608,7,3,f +3022,42610,7,6,f +3022,43121,15,2,f +3022,4328,7,1,f +3022,4360,8,1,f +3022,4495b,15,1,f +3022,4589,57,5,f +3022,4617b,0,1,f +3022,4620cdb01,89,1,f +3022,46667,383,2,f +3022,4729,15,1,f +3022,4740,42,4,f +3022,51011,0,6,f +3022,6140,4,1,f +3022,6239px5,25,1,f +3022,758c03,7,1,f +3022,js014,-1,1,f +3022,js019,-1,1,f +3022,js020,-1,1,f +3022,js022,-1,1,f +3022,js023,-1,1,f +3024,11211,4,1,f +3024,3004,4,1,f +3024,3023,15,2,f +3024,3048c,4,1,f +3024,3794b,4,1,f +3024,4070,15,1,f +3024,54200,40,1,t +3024,54200,40,1,f +3024,6141,33,1,f +3024,6141,33,1,t +3024,88072,14,1,f +3025,2412b,0,1,f +3025,2418b,34,1,f +3025,2921,14,2,f +3025,30200,0,1,f +3025,3068b,7,1,f +3025,3626bpx46,14,1,f +3025,3666,7,1,f +3025,3710,7,1,f +3025,3749,7,1,f +3025,3794a,0,1,f +3025,4070,7,1,f +3025,4590,0,1,f +3025,57467,383,2,f +3025,59275,0,2,f +3025,6040,14,1,f +3025,6041,34,1,f +3025,6090,42,1,f +3025,6141,57,2,f +3025,6141,57,1,t +3025,71966,61,1,f +3025,970x023,0,1,f +3025,973pb0047c01,1,1,f +3026,3004,2,2,f +3026,3004,4,4,f +3026,3021,2,1,f +3026,3660,2,1,f +3027,clikits001pb03,13,1,f +3027,clikits080,45,1,f +3027,clikits088,45,1,f +3028,2357,72,2,f +3028,2412b,71,27,f +3028,2420,71,2,f +3028,2431,71,7,f +3028,2445,72,6,f +3028,2450,71,6,f +3028,2458,71,6,f +3028,2654,4,1,f +3028,2780,0,9,f +3028,2780,0,1,t +3028,2817,71,6,f +3028,2877,71,2,f +3028,3001,71,1,f +3028,3003,72,2,f +3028,3010,71,2,f +3028,3020,71,7,f +3028,3022,71,8,f +3028,3023,0,3,f +3028,3031,0,1,f +3028,3035,0,3,f +3028,30355,0,3,f +3028,30356,0,3,f +3028,30366ps1,40,1,f +3028,30373,72,3,f +3028,3039,72,4,f +3028,30408pr0002,15,1,f +3028,30414,4,1,f +3028,3068b,72,1,f +3028,3070b,71,1,t +3028,3070b,71,2,f +3028,32000,72,12,f +3028,32062,0,6,f +3028,32064b,71,3,f +3028,32192,72,12,f +3028,3298,71,3,f +3028,33299a,0,3,f +3028,3622,72,2,f +3028,3626b,0,2,f +3028,3660,71,7,f +3028,3666,72,6,f +3028,3700,0,2,f +3028,3710,0,5,f +3028,3960ps2,72,1,f +3028,4032a,72,3,f +3028,4162,71,18,f +3028,42003,71,3,f +3028,43093,1,27,f +3028,44374,71,2,f +3028,44567a,72,1,f +3028,4589,71,6,f +3028,4740,33,1,f +3028,4871,72,6,f +3028,54200,71,1,t +3028,54200,71,2,f +3028,54383,0,3,f +3028,54384,0,3,f +3028,58247,0,1,f +3028,59426,72,1,f +3028,60208,71,2,f +3028,60219,72,1,f +3028,60471,71,1,f +3028,6106,0,6,f +3028,61184,71,6,f +3028,6141,36,4,f +3028,6141,36,1,t +3028,6141,72,1,t +3028,6141,72,6,f +3028,6558,1,3,f +3028,6636,71,6,f +3028,85943,72,3,f +3028,87556pr0001,0,1,f +3028,970c00,0,1,f +3028,970x026,15,1,f +3028,973pr0520c01,15,1,f +3028,973pr1148c01,0,1,f +3031,2780,0,2,f +3031,2780,0,1,t +3031,32062,0,2,f +3031,32174,0,2,f +3031,32174,19,2,f +3031,32270,7,1,f +3031,32567,0,1,f +3031,32576,0,2,f +3031,32579,7,1,f +3031,3713,7,1,t +3031,3713,7,1,f +3031,3749,19,1,t +3031,3749,19,1,f +3031,41670,19,2,f +3031,43093,1,1,f +3031,44137,19,1,f +3031,44809,0,2,f +3031,44810,19,1,f +3031,44811,179,1,f +3031,44812,179,1,f +3031,4519,7,1,f +3033,12825,71,1,f +3033,13731,15,4,f +3033,2412b,72,4,f +3033,2412b,71,4,f +3033,2413,15,2,f +3033,2420,71,10,f +3033,2431,15,12,f +3033,2445,15,5,f +3033,2540,71,2,f +3033,2639,72,4,f +3033,2654,19,12,f +3033,2714a,71,4,f +3033,2744,15,4,f +3033,2780,0,8,f +3033,2780,0,3,t +3033,2877,71,4,f +3033,3001,1,1,f +3033,3002,72,4,f +3033,3003,4,2,f +3033,3004,320,4,f +3033,3007,1,1,f +3033,3009,320,2,f +3033,3010,15,1,f +3033,3020,15,2,f +3033,3021,15,4,f +3033,3021,72,2,f +3033,3022,71,5,f +3033,3023,71,13,f +3033,3023,320,23,f +3033,3031,71,1,f +3033,3032,71,1,f +3033,3034,72,6,f +3033,30355,15,2,f +3033,30356,15,2,f +3033,3036,71,4,f +3033,30361dps1,15,1,f +3033,30361pr0010,15,1,f +3033,30362,15,4,f +3033,30367cpr0006,71,1,f +3033,30370pr04,15,1,f +3033,30370pr06,15,1,f +3033,30372pr0001,40,1,f +3033,30374,41,1,f +3033,30383,15,2,f +3033,3039,72,1,f +3033,3040b,71,2,f +3033,30414,4,4,f +3033,30552,0,1,f +3033,3068b,71,2,f +3033,3068bpr0108,72,1,f +3033,3069b,15,6,f +3033,3069b,4,4,f +3033,3069b,71,2,f +3033,3070b,15,1,t +3033,3070b,15,4,f +3033,3176,14,1,f +3033,32000,19,20,f +3033,32002,72,1,t +3033,32002,72,4,f +3033,32013,71,2,f +3033,32017,71,4,f +3033,32034,0,3,f +3033,32054,0,4,f +3033,32062,4,6,f +3033,32064a,2,3,f +3033,32072,0,1,f +3033,32073,71,1,f +3033,32123b,14,2,f +3033,32123b,14,1,t +3033,32198,19,1,f +3033,32270,0,1,f +3033,32530,4,1,f +3033,3298,0,1,f +3033,3460,15,4,f +3033,3460,71,4,f +3033,3623,71,6,f +3033,3626bpr0923,78,1,f +3033,3626cpr0635,78,1,f +3033,3647,72,4,f +3033,3647,72,2,t +3033,3666,19,5,f +3033,3666,15,4,f +3033,3678b,15,8,f +3033,3700,15,3,f +3033,3701,15,2,f +3033,3706,0,4,f +3033,3710,15,4,f +3033,3710,19,14,f +3033,3713,4,1,t +3033,3713,4,5,f +3033,3737,0,1,f +3033,3794b,1,5,f +3033,3795,72,2,f +3033,3941,15,4,f +3033,4032a,72,4,f +3033,4079b,288,1,f +3033,4150,15,4,f +3033,4162,15,2,f +3033,41677,1,2,f +3033,41678,71,4,f +3033,4274,1,2,t +3033,4274,1,7,f +3033,43712,15,1,f +3033,43713,15,1,f +3033,43719,320,1,f +3033,43722,15,3,f +3033,43723,15,3,f +3033,44294,71,4,f +3033,44300,71,1,f +3033,44302a,71,2,f +3033,44728,71,1,f +3033,4477,71,2,f +3033,4477,15,5,f +3033,4519,71,3,f +3033,4716,71,4,f +3033,4740,57,4,f +3033,4740,71,5,f +3033,4740,72,4,f +3033,47457,15,4,f +3033,4856a,15,1,f +3033,54200,320,2,f +3033,54200,320,1,t +3033,55981,15,4,f +3033,55982,71,4,f +3033,58176,15,2,f +3033,58181,15,4,f +3033,58247,0,1,f +3033,59426,72,2,f +3033,59443,72,4,f +3033,59900,72,4,f +3033,60849,71,1,f +3033,6091,320,4,f +3033,61252,72,2,f +3033,61409,72,2,f +3033,6141,72,5,t +3033,6141,72,27,f +3033,61678,71,2,f +3033,62462,71,2,f +3033,63864,15,4,f +3033,63965,72,8,f +3033,64567,80,1,f +3033,64644,71,2,f +3033,64799,71,3,f +3033,6536,15,4,f +3033,6541,72,12,f +3033,6541,1,2,f +3033,6636,15,4,f +3033,73983,4,8,f +3033,85543,15,4,f +3033,85984,19,4,f +3033,85984,15,3,f +3033,87079,4,4,f +3033,87079,15,1,f +3033,92593,71,8,f +3033,92946,72,2,f +3033,93168,15,4,f +3033,9493stk01,9999,1,t +3033,970x199,25,2,f +3033,973pr1578c01,25,2,f +3033,98100pr0001,15,1,f +3036,132a,0,4,f +3036,242c01,4,4,f +3036,3001a,4,2,f +3036,3002a,4,2,f +3036,3003,0,2,f +3036,3004,0,1,f +3036,3004,4,7,f +3036,3005,4,8,f +3036,3006,4,1,f +3036,3008,4,5,f +3036,3009,4,8,f +3036,3010,4,8,f +3036,3033,4,2,f +3036,3036,4,2,f +3036,3037,4,6,f +3036,3039,4,4,f +3036,3040a,4,2,f +3036,3045,4,4,f +3036,3046a,4,2,f +3036,3062a,0,4,f +3036,3081cc01,4,1,f +3036,3087c,15,2,f +3036,31cc01,4,11,f +3036,3455,4,4,f +3036,453cc01,4,10,f +3036,7049b,0,2,f +3036,780,4,1,f +3036,781,4,1,f +3037,3626cpr1474,14,1,f +3037,64647,4,1,f +3037,88646,0,1,f +3037,93550,297,1,f +3037,93554,308,1,f +3037,970c00,0,1,f +3037,973pr2743c01,15,1,f +3038,3011,4,1,f +3038,3011,73,1,f +3038,3437,73,1,f +3038,3437,4,1,f +3038,4066,73,3,f +3038,40666,14,1,f +3038,44524,14,1,f +3038,47202apr0006,25,1,f +3038,55882,73,1,f +3038,55886pr0001c01,1,1,f +3038,57052,0,1,f +3038,73566,73,1,f +3039,2815,0,12,f +3039,3482,7,12,f +3039,3483,0,8,f +3039,3634,0,4,f +3039,3736,7,4,f +3039,4185,7,16,f +3040,2412a,15,6,f +3040,2412a,0,3,f +3040,2418a,42,2,f +3040,2419,15,1,f +3040,2434,0,1,f +3040,2446,0,1,f +3040,2447,42,1,f +3040,2452,0,4,f +3040,2466,42,1,f +3040,2516,0,1,f +3040,2569,42,2,f +3040,3002,0,1,f +3040,3004,0,1,f +3040,3007,15,1,f +3040,3020,0,1,f +3040,3021,0,1,f +3040,3022,0,2,f +3040,3023,15,4,f +3040,3023,0,2,f +3040,3039,0,1,f +3040,3069bp13,15,1,f +3040,3298,0,1,f +3040,3298,15,1,f +3040,3479,0,3,f +3040,3626apr0001,14,1,f +3040,3700,0,1,f +3040,3747a,15,1,f +3040,3747a,0,1,f +3040,3795,0,1,f +3040,3832,0,1,f +3040,3838,0,1,f +3040,3839b,0,1,f +3040,3839b,15,2,f +3040,3937,0,2,f +3040,3940b,0,2,f +3040,3956,0,5,f +3040,3959,0,2,f +3040,4032a,0,7,f +3040,4070,15,2,f +3040,4085c,0,2,f +3040,4150p04,15,4,f +3040,4229,0,2,f +3040,4275b,0,2,f +3040,4276b,0,6,f +3040,4475,0,4,f +3040,4589,15,2,f +3040,4591,15,1,f +3040,4730,15,1,f +3040,4859,0,1,f +3040,970x026,15,1,f +3040,973p51c01,15,1,f +3041,11477,2,4,f +3041,2450,4,2,f +3041,3003,2,1,f +3041,3004,2,1,f +3041,3020,2,3,f +3041,3021,2,2,f +3041,3023,2,2,f +3041,3039,2,1,f +3041,3069b,4,1,f +3041,3660,71,1,f +3041,3678b,71,1,f +3041,3710,2,3,f +3041,4070,2,4,f +3041,41769,4,1,f +3041,41770,4,1,f +3041,44302a,71,3,f +3041,44567a,72,3,f +3041,54200,0,3,f +3041,54200,0,1,t +3041,6126b,182,2,f +3041,87580,2,2,f +3041,98138pr0008,15,1,t +3041,98138pr0008,15,2,f +3042,3626bpb0174,14,1,f +3042,3898,15,1,f +3042,4150p02,14,1,f +3042,970c00,15,1,f +3042,973pr1196c01,15,1,f +3043,11267,30,1,f +3043,13786pr0001,71,1,f +3043,15470,297,2,f +3043,15470,297,1,t +3043,15624,27,2,f +3043,15627pr0002,29,2,f +3043,2423,2,1,f +3043,2431,29,3,f +3043,2453a,29,2,f +3043,2817,71,1,f +3043,3001,29,4,f +3043,3001,27,3,f +3043,3001,15,3,f +3043,3002,27,2,f +3043,3002,29,2,f +3043,3002,15,2,f +3043,3003,29,4,f +3043,3003,14,2,f +3043,3003,322,2,f +3043,3003,27,4,f +3043,3004,14,5,f +3043,3004,29,10,f +3043,30044,15,1,f +3043,30046,297,1,f +3043,3007,15,3,f +3043,3010,29,1,f +3043,30153,41,3,f +3043,3020,30,2,f +3043,3020,27,1,f +3043,3021,85,3,f +3043,30236,15,1,f +3043,3031,27,1,f +3043,3034,15,1,f +3043,3037,15,1,f +3043,3039,14,1,f +3043,30565,322,2,f +3043,3062b,322,1,f +3043,3068b,297,3,f +3043,33183,10,1,t +3043,33183,10,1,f +3043,33243,29,2,f +3043,33291,10,2,f +3043,33291,10,1,t +3043,33291,5,5,f +3043,33291,5,2,t +3043,33291,191,7,f +3043,33291,191,2,t +3043,3626cpr0893,14,1,f +3043,3659,15,3,f +3043,3678bpr0003,15,1,f +3043,3710,28,4,f +3043,3741,2,2,f +3043,3741,2,2,t +3043,3794b,297,4,f +3043,3852b,322,1,f +3043,3941,15,1,f +3043,3942c,297,2,f +3043,3957a,15,2,f +3043,4460b,15,2,f +3043,4495b,297,2,f +3043,4536,15,1,f +3043,52107,15,1,f +3043,6020,71,1,f +3043,60607,297,4,f +3043,6066,29,1,f +3043,6124,45,1,t +3043,6124,45,1,f +3043,6179,15,1,f +3043,6232,71,1,f +3043,6256,191,1,f +3043,85974,70,1,f +3043,87580,85,1,f +3043,91501,15,2,f +3043,92338,297,2,f +3043,92338,297,1,t +3043,92410,15,1,f +3043,92950,29,1,f +3043,96874,25,1,t +3043,973pr0020c01,15,1,f +3043,98560,30,2,f +3045,3021,7,1,f +3045,3024,14,4,f +3045,3032,7,1,f +3045,3039p32,7,1,f +3045,3039p34,7,1,f +3045,3626apr0001,14,1,f +3045,3706,0,1,f +3045,3710,7,2,f +3045,3713,7,2,f +3045,3749,7,4,f +3045,3794a,7,1,f +3045,3838,14,1,f +3045,3841,0,1,f +3045,3842b,14,1,f +3045,3894,7,2,f +3045,3962a,0,1,f +3045,4081b,7,2,f +3045,4085b,7,2,f +3045,4288,0,4,f +3045,4315,7,1,f +3045,4360,0,1,f +3045,4474,7,1,f +3045,4588,36,2,f +3045,4589,36,2,f +3045,4590,7,1,f +3045,4596,7,1,f +3045,4598,7,1,f +3045,4735,0,1,f +3045,4740,34,1,f +3045,73590c01a,0,2,f +3045,970c00,14,1,f +3045,973p90c04,14,1,f +3051,2776c01,7,2,f +3051,766c01,7,2,f +3051,x466,7,2,f +3052,10288,308,2,f +3052,15107,41,4,f +3052,15339,179,1,f +3052,15339,148,2,f +3052,15341,4,2,f +3052,15341,14,2,f +3052,15341,15,2,f +3052,15343,14,2,f +3052,15343,4,2,f +3052,15343,15,2,f +3052,15345,15,1,f +3052,15346,14,1,f +3052,15348,4,1,f +3052,15353,27,1,f +3052,15354,25,1,f +3052,15355,1,1,f +3052,15357,322,1,f +3052,15358pat0001,35,3,f +3052,15358pat0002,41,3,f +3052,15359pr0004,0,1,f +3052,15361,35,2,f +3052,15362,297,3,f +3052,15362,0,4,f +3052,15369,297,1,f +3052,15391,0,1,f +3052,15392,72,1,f +3052,2780,0,8,f +3052,30162,72,1,f +3052,32002,19,1,f +3052,32039,0,3,f +3052,32054,0,2,f +3052,32062,4,7,f +3052,32184,0,1,f +3052,32316,0,2,f +3052,3626b,212,1,f +3052,3626b,4,1,f +3052,3626b,1,1,f +3052,3737,0,2,f +3052,42003,72,2,f +3052,4274,1,3,f +3052,43093,1,3,f +3052,48729b,0,3,f +3052,48989,71,1,f +3052,53451,27,6,f +3052,53989,0,4,f +3052,54821,35,1,f +3052,58176,35,2,f +3052,59443,0,1,f +3052,60115,0,3,f +3052,6141,42,4,f +3052,62462,14,4,f +3052,6558,1,3,f +3052,74261,-1,4,f +3052,87747,297,3,f +3052,87747,0,6,f +3052,90609,0,4,f +3052,90611,14,6,f +3052,90611,72,5,f +3052,90612,0,3,f +3052,90616,0,9,f +3052,90617,72,4,f +3052,90622,0,3,f +3052,90634,0,3,f +3052,90639,179,1,f +3052,90639,0,5,f +3052,90639pr0028,179,1,f +3052,90641,42,7,f +3052,90641,14,4,f +3052,92234,297,1,f +3052,92338,297,1,f +3052,93571,0,1,f +3052,93571,322,12,f +3052,95199,72,1,f +3052,98138pr0019,15,3,f +3052,98313,14,2,f +3052,98564,35,2,f +3052,98577,72,2,f +3052,98590,0,3,f +3052,98603s01pr0011,0,1,f +3052,99021,72,2,f +3055,2357,4,2,f +3055,3001,4,12,f +3055,3002,4,6,f +3055,3003,4,10,f +3055,3004,4,8,f +3055,3005,4,6,f +3055,3006,4,1,f +3055,3007,4,1,f +3055,3008,4,2,f +3055,3009,4,4,f +3055,3010,4,6,f +3055,3622,4,4,f +3057,11055,4,1,f +3057,11208,71,8,f +3057,11209,0,8,f +3057,12622,0,2,f +3057,12825,71,2,f +3057,15207,70,2,f +3057,15207,321,2,f +3057,15207,14,2,f +3057,2412b,179,8,f +3057,2431pr0017,14,2,f +3057,2432,71,2,f +3057,2445,72,1,f +3057,2456,1,4,f +3057,2456,15,7,f +3057,2456,4,4,f +3057,2540,71,2,f +3057,2540,0,1,f +3057,2654,15,2,f +3057,2877,71,1,f +3057,298c02,14,1,f +3057,3001,71,4,f +3057,3001,70,10,f +3057,3001,72,4,f +3057,3001,1,12,f +3057,3001,25,10,f +3057,3001,321,10,f +3057,3001,27,16,f +3057,3001,14,16,f +3057,3001,4,28,f +3057,3001,15,24,f +3057,3001,0,16,f +3057,3002,14,8,f +3057,3002,27,8,f +3057,3003,4,4,f +3057,3003,71,8,f +3057,3003,14,8,f +3057,3003,15,4,f +3057,3003,1,4,f +3057,3003,70,4,f +3057,3004,321,4,f +3057,3004,27,8,f +3057,3004,15,8,f +3057,3004,25,6,f +3057,3004,4,8,f +3057,3004,1,8,f +3057,3005,4,4,f +3057,3005,1,4,f +3057,3005,27,4,f +3057,3005,14,4,f +3057,3005,15,4,f +3057,3007,15,1,f +3057,3010,1,4,f +3057,3010,27,4,f +3057,3010,19,4,f +3057,3010,25,4,f +3057,3010,4,4,f +3057,30137,70,16,f +3057,30145,15,4,f +3057,30150,14,3,f +3057,30162,72,1,f +3057,3020,0,1,f +3057,3021,14,6,f +3057,3022,2,2,f +3057,30237b,71,2,f +3057,3026,71,1,f +3057,3032,19,1,f +3057,3032,72,2,f +3057,30340,14,3,f +3057,3035,14,3,f +3057,30387,14,1,f +3057,30388,14,2,f +3057,30389b,0,1,f +3057,3039,14,1,f +3057,30395,72,1,f +3057,30396,0,1,f +3057,30414,15,3,f +3057,30565,72,2,f +3057,30592,72,1,f +3057,3062b,72,2,f +3057,30663,0,1,f +3057,3069b,15,3,f +3057,3069b,4,1,f +3057,3070bpr0007,71,1,f +3057,3070bpr0007,71,1,t +3057,32059,0,2,f +3057,3245c,15,2,f +3057,3298,321,2,f +3057,33121,191,1,f +3057,3460,4,1,f +3057,3624,15,1,f +3057,3626bpr0314,14,1,f +3057,3626bpr0388,14,1,f +3057,3626bpr0645,14,1,f +3057,3665,72,4,f +3057,3678b,0,1,f +3057,3678b,4,2,f +3057,3679,71,2,f +3057,3680,15,2,f +3057,3710,27,1,f +3057,3710,15,1,f +3057,3747b,0,4,f +3057,3747b,15,2,f +3057,3795,27,2,f +3057,3795,0,2,f +3057,3823,47,2,f +3057,3829c01,71,2,f +3057,3832,15,1,f +3057,3836,70,1,f +3057,3899,14,1,f +3057,3941,15,4,f +3057,3941,46,2,f +3057,3941,70,4,f +3057,3942c,25,2,f +3057,3957b,71,2,f +3057,3957b,15,2,f +3057,3958,2,1,f +3057,3958,0,1,f +3057,3960,0,1,f +3057,3962b,0,2,f +3057,4006,0,1,f +3057,4032a,1,1,f +3057,4032a,15,1,f +3057,4032a,4,2,f +3057,4032a,2,2,f +3057,4079,14,1,f +3057,4079,1,1,f +3057,4083,15,1,f +3057,4083,0,1,f +3057,41334,0,2,f +3057,4150,15,1,f +3057,4349,72,1,f +3057,43888,70,1,f +3057,4495b,2,1,f +3057,4589,36,2,f +3057,4589,71,2,f +3057,4599b,0,1,f +3057,4599b,0,1,t +3057,48336,15,1,f +3057,4863,15,4,f +3057,4865b,15,4,f +3057,50950,321,2,f +3057,54200,36,1,t +3057,54200,34,1,t +3057,54200,182,2,f +3057,54200,33,1,t +3057,54200,33,1,f +3057,54200,182,1,t +3057,54200,46,1,t +3057,54200,46,4,f +3057,54200,34,1,f +3057,54200,36,4,f +3057,60169,72,1,f +3057,60470a,15,1,f +3057,60474,0,1,f +3057,60477,0,4,f +3057,60581,72,1,f +3057,6112,0,6,f +3057,61409,15,2,f +3057,61409,72,2,f +3057,6141,14,4,f +3057,6141,46,1,t +3057,6141,47,6,f +3057,6141,46,2,f +3057,6179,0,2,f +3057,64448,72,4,f +3057,64450,0,1,f +3057,64648,179,4,f +3057,6583,0,2,f +3057,72475,40,1,f +3057,74698,0,1,f +3057,87081,72,1,f +3057,87087,321,2,f +3057,87580,15,6,f +3057,87580,4,6,f +3057,87580,1,6,f +3057,87580,71,12,f +3057,88930,14,2,f +3057,92438,28,1,f +3057,93273,71,3,f +3057,96874,25,1,t +3057,970c00,25,2,f +3057,970c00,1,1,f +3057,973pr1160c01,1,2,f +3057,973pr1470c01,1,1,f +3060,4186,71,1,f +3061,3003,4,2,f +3061,3003pe2,4,1,f +3061,3004,4,2,f +3061,3020,4,2,f +3061,3022,15,1,f +3061,3034,15,1,f +3061,3040b,1,2,f +3061,3298,1,1,f +3061,3741,2,2,f +3061,3742,1,3,f +3061,3742,1,1,t +3061,3747a,4,2,f +3061,6215,14,2,f +3062,2780,0,6,f +3062,2780,0,2,t +3062,32013,0,2,f +3062,32039,71,5,f +3062,32062,4,25,f +3062,32123b,71,1,t +3062,32123b,71,8,f +3062,32138,0,2,f +3062,32177,15,8,f +3062,32184,15,2,f +3062,32249,71,8,f +3062,32250,71,10,f +3062,32291,71,2,f +3062,32449,15,12,f +3062,32523,15,2,f +3062,32525,15,8,f +3062,32557,0,2,f +3062,3705,0,18,f +3062,3706,0,1,f +3062,3708,0,1,f +3062,41239,72,1,f +3062,41669,15,6,f +3062,41678,71,2,f +3062,43093,1,20,f +3062,4519,71,10,f +3062,47312,72,1,f +3062,47330,0,1,f +3062,50919,15,2,f +3062,50921,15,2,f +3062,50923,72,6,f +3062,53545,15,1,f +3062,53548,15,2,f +3062,53549,15,1,f +3062,53585,0,7,f +3062,53586,135,2,f +3062,54821,135,4,f +3062,55013,72,2,f +3062,57536,42,1,f +3062,57551,148,2,f +3062,57563,15,6,f +3062,57565,135,2,f +3062,57585,71,1,f +3062,59443,0,3,f +3062,60176,15,18,f +3062,60896,72,2,f +3062,60917,148,2,f +3062,60921,148,1,f +3062,60923,135,3,f +3062,61053,15,3,f +3062,61805,148,1,f +3062,61806,15,2,f +3062,62233,135,1,f +3062,6536,15,6,f +3062,6553,0,4,f +3062,6558,1,16,f +3062,6587,72,1,f +3063,3778,2,2,f +3064,27bc01,15,2,f +3064,29bc01,15,12,f +3064,3001a,4,8,f +3064,3001a,1,3,f +3064,3002a,4,19,f +3064,3003,1,3,f +3064,3003,4,4,f +3064,3005,4,4,f +3064,3005,1,2,f +3064,3008a,4,6,f +3064,3009a,4,5,f +3064,3009a,1,1,f +3064,3020,1,4,f +3064,3020,15,13,f +3064,3021,1,4,f +3064,3021,15,8,f +3064,3022,1,1,f +3064,3022,15,1,f +3064,3023a,1,1,f +3064,3034,15,4,f +3064,3035,15,1,f +3064,3036,15,1,f +3064,3037,1,12,f +3064,3039,1,8,f +3064,3041,1,2,f +3064,3065,47,3,f +3064,3065,4,8,f +3064,3065,1,5,f +3064,3081bc01,15,2,f +3064,32bc01,15,3,f +3064,646bc01,15,1,f +3064,7039d,4,1,f +3064,7049a,15,1,f +3066,tplan05,89,1,f +3067,2412b,80,2,f +3067,2420,1,2,f +3067,2431,1,2,f +3067,2444,15,2,f +3067,2450,15,2,f +3067,2780,0,1,t +3067,2780,0,4,f +3067,3001,4,1,f +3067,3001,1,1,f +3067,30044,15,8,f +3067,3005,15,3,f +3067,3005,1,2,f +3067,3010,71,2,f +3067,3020,1,3,f +3067,3020,0,1,f +3067,3020,71,1,f +3067,3020,15,6,f +3067,3021,1,2,f +3067,3021,0,1,f +3067,3021,15,2,f +3067,3022,15,3,f +3067,3022,0,1,f +3067,3023,15,3,f +3067,3023,1,4,f +3067,3023,71,2,f +3067,3024,4,4,f +3067,3030,0,1,f +3067,3031,1,1,f +3067,3031,71,1,f +3067,3032,15,1,f +3067,3032,1,2,f +3067,3034,71,1,f +3067,3034,1,2,f +3067,3035,15,1,f +3067,30363,4,1,f +3067,3039,71,2,f +3067,30503,4,2,f +3067,30503,15,2,f +3067,30602,40,2,f +3067,3062b,33,2,f +3067,3065,40,3,f +3067,3068b,1,6,f +3067,3068b,15,4,f +3067,3068b,15,1,t +3067,3069b,1,4,f +3067,3069b,15,10,f +3067,3070b,1,1,t +3067,3070b,15,2,f +3067,3070b,4,1,t +3067,3070b,1,2,f +3067,3070b,15,1,t +3067,3070b,4,2,f +3067,3176,72,2,f +3067,32000,71,3,f +3067,32002,72,1,t +3067,32002,72,2,f +3067,32005a,72,2,f +3067,32014,0,3,f +3067,32039,4,2,f +3067,32062,4,1,f +3067,32123b,71,4,f +3067,32123b,71,1,t +3067,32291,0,1,f +3067,32525,71,2,f +3067,3622,4,2,f +3067,3623,71,4,f +3067,3623,15,2,f +3067,3665,1,2,f +3067,3666,71,2,f +3067,3666,1,3,f +3067,3666,15,6,f +3067,3673,71,1,f +3067,3673,71,1,t +3067,3679,71,4,f +3067,3679,71,3,t +3067,3680,15,2,t +3067,3680,1,2,f +3067,3680,1,1,t +3067,3680,15,2,f +3067,3700,0,3,f +3067,3705,0,3,f +3067,3707,0,1,f +3067,3710,4,2,f +3067,3710,1,4,f +3067,3710,71,2,f +3067,3710,15,3,f +3067,3710,0,2,f +3067,3713,4,5,f +3067,3713,4,1,t +3067,3747b,1,3,f +3067,3749,19,2,f +3067,3795,1,1,f +3067,3795,15,3,f +3067,3832,15,1,f +3067,3941,15,2,f +3067,3941,0,1,f +3067,4162,4,6,f +3067,4162,15,2,f +3067,41747,71,1,f +3067,41748,71,1,f +3067,41767,4,1,f +3067,41768,4,1,f +3067,41769,15,1,f +3067,41770,15,1,f +3067,42022,4,2,f +3067,42023,1,8,f +3067,42610,71,3,f +3067,4286,4,6,f +3067,4287,1,4,f +3067,43093,1,3,f +3067,43121,71,2,f +3067,43722,15,1,f +3067,43723,15,1,f +3067,44728,15,4,f +3067,4477,15,1,f +3067,47397,15,1,f +3067,47398,15,1,f +3067,4740,36,2,f +3067,48336,15,4,f +3067,48336,71,2,f +3067,4865a,15,2,f +3067,50304,15,2,f +3067,50305,15,2,f +3067,50951,0,3,f +3067,54383,15,4,f +3067,54384,15,4,f +3067,6019,15,4,f +3067,6019,71,2,f +3067,6141,36,1,t +3067,6141,34,1,t +3067,6141,33,1,t +3067,6141,36,1,f +3067,6141,33,2,f +3067,6141,34,1,f +3067,6553,0,3,f +3067,6564,4,1,f +3067,6565,4,1,f +3067,6628,0,4,f +3067,6632,4,2,f +3069,13608,179,1,f +3069,2412b,85,1,f +3069,2419,71,1,f +3069,2654,19,1,f +3069,2817,71,1,f +3069,3020,19,2,f +3069,3022,1,2,f +3069,3039,19,2,f +3069,3040b,28,2,f +3069,3048c,297,3,f +3069,30503,72,2,f +3069,32530,0,1,f +3069,3626cpr0958,272,1,f +3069,3626cpr0959,297,1,f +3069,3626cpr0960,297,1,f +3069,3666,71,1,f +3069,3710,71,2,f +3069,3839b,0,1,f +3069,3937,72,1,f +3069,44567a,14,2,f +3069,47753,28,3,f +3069,48336,297,1,f +3069,49668,19,2,f +3069,50859b,0,1,f +3069,50861,0,2,f +3069,50862,71,2,f +3069,54200,33,1,t +3069,54200,47,2,f +3069,54200,47,1,t +3069,54200,33,1,f +3069,59900,52,5,f +3069,60470a,0,3,f +3069,60471,71,2,f +3069,61184,71,2,f +3069,6134,71,1,f +3069,61409,1,2,f +3069,6865stk01,9999,1,t +3069,75902pr0001,320,1,f +3069,89536,320,1,f +3069,92280,0,1,f +3069,970c00,272,1,f +3069,970c00pr0342,71,1,f +3069,970c00pr0343,72,1,f +3069,973pr2038c01,272,1,f +3069,973pr2039c01,71,1,f +3069,973pr2040c01,72,1,f +3069,98141,297,4,f +3071,3003,6,6,f +3071,3003,15,2,f +3071,3004,46,6,f +3071,3004,34,6,f +3071,3005,15,4,f +3071,3062b,46,8,f +3071,3062b,47,5,f +3071,6141,47,12,f +3071,6141,46,15,f +3071,6141,36,15,f +3071,6141,33,15,f +3071,6141,34,15,f +3071,6141,15,5,f +3071,6141,6,6,f +3073,2039,11,1,f +3073,22670,63,1,f +3073,2566,15,1,f +3073,3005,118,2,f +3073,3005,45,1,f +3073,3010,15,1,f +3073,30109c02,73,1,f +3073,30111,15,1,f +3073,30151a,47,1,f +3073,30153,143,4,f +3073,30153,45,1,f +3073,3031,26,1,f +3073,3065,45,1,f +3073,3065,143,1,f +3073,3065,46,1,f +3073,33061,41,1,f +3073,33213,15,2,f +3073,33215,114,2,f +3073,33216,143,2,f +3073,33227,15,1,f +3073,3622,118,2,f +3073,3794a,15,2,f +3073,3898pb01,125,1,f +3073,3899,1,1,f +3073,3942c,15,4,f +3073,4032a,25,1,f +3073,4088,15,1,f +3073,42013,150,2,f +3073,42409,143,2,f +3073,4589,15,2,f +3073,4589,46,4,f +3073,4738a,45,1,f +3073,4739a,45,1,f +3073,4740,15,1,f +3073,4908,73,1,f +3073,6161,125,1,f +3073,6179,5,1,f +3073,6182,15,6,f +3073,6186,11,1,f +3073,6256,383,1,f +3073,62808,383,2,f +3073,towel,14,2,f +3073,x11,77,1,f +3076,3003,70,1,f +3076,3020,70,1,f +3076,3022,2,1,f +3076,3039,2,4,f +3076,3062b,46,1,f +3076,3062b,46,1,t +3076,3298,2,2,f +3076,6141,46,2,f +3076,6141,46,3,t +3077,10p01,2,1,f +3077,15,14,1,f +3077,15,1,1,f +3077,15,0,1,f +3077,15,15,4,f +3077,17,15,4,f +3077,17,1,2,f +3077,17,4,1,f +3077,21,47,1,f +3077,3001a,15,1,f +3077,3003,4,1,f +3077,3004,15,1,f +3077,3004,4,17,f +3077,3005,4,16,f +3077,3008,4,6,f +3077,3009,4,26,f +3077,3009,15,4,f +3077,3010,4,19,f +3077,3010,15,6,f +3077,3010pb036e,15,1,f +3077,3020,15,2,f +3077,3021,15,1,f +3077,3022,15,6,f +3077,3023,4,1,f +3077,3023,15,6,f +3077,3024,15,4,f +3077,3024,4,3,f +3077,3030,15,1,f +3077,3030,0,3,f +3077,3035,15,1,f +3077,3035,0,4,f +3077,3036,0,1,f +3077,3063b,4,2,f +3077,3068b,7,24,f +3077,3070a,15,1,f +3077,3081cc01,15,11,f +3077,3137c01,15,1,f +3077,3137c01,0,2,f +3077,3139,0,6,f +3077,3307,4,1,f +3077,3308,4,3,f +3077,3460,4,2,f +3077,3471,2,1,f +3077,3579,4,4,f +3077,3581,15,2,f +3077,3582,15,2,f +3077,3596,15,1,f +3077,3624,4,1,f +3077,3624,15,3,f +3077,3624,0,1,f +3077,3625,0,1,f +3077,3625,4,1,f +3077,3626a,14,7,f +3077,7284,15,1,f +3077,7930,15,4,f +3079,2610,14,1,f +3079,30086,72,1,f +3079,3298,1,1,f +3079,3626bpr0282,14,1,f +3079,3794b,15,2,f +3079,3829c01,14,1,f +3079,44675,14,1,f +3079,44728,15,1,f +3079,4865a,47,1,f +3079,54200,33,2,f +3079,54200,33,1,t +3079,6187,71,1,f +3079,86035,15,1,f +3079,970c00,0,1,f +3079,973pr1186c01,0,1,f +3080,2419,72,1,f +3080,2420,15,2,f +3080,2431,72,8,f +3080,2444,0,16,f +3080,2460,0,4,f +3080,2555,0,2,f +3080,2780,0,1,t +3080,2780,0,1,f +3080,2877,4,1,f +3080,30033,15,4,f +3080,3004,15,7,f +3080,3004,14,24,f +3080,3005,71,16,f +3080,3008,71,6,f +3080,3010,71,3,f +3080,3020,71,12,f +3080,3020,2,3,f +3080,3021,72,1,f +3080,3022,72,1,f +3080,3023,1,32,f +3080,3023,15,16,f +3080,3023,72,16,f +3080,3024,1,16,f +3080,3024,72,7,f +3080,3032,72,1,f +3080,30357,72,32,f +3080,30359b,0,16,f +3080,30374,0,1,f +3080,3040b,2,8,f +3080,3040b,72,12,f +3080,30552,0,32,f +3080,3062b,19,2,f +3080,3062b,272,2,f +3080,3062b,70,7,f +3080,3062b,15,5,f +3080,3062b,72,2,f +3080,3062b,320,2,f +3080,3063b,14,32,f +3080,3068b,71,10,f +3080,3069b,4,33,f +3080,3070b,0,1,t +3080,3070b,0,2,f +3080,32002,72,2,f +3080,32002,72,1,t +3080,32013,72,16,f +3080,32015,71,8,f +3080,32034,1,16,f +3080,32039,14,16,f +3080,32062,4,33,f +3080,32064b,71,12,f +3080,32073,71,4,f +3080,32123b,71,28,f +3080,32123b,71,1,t +3080,32530,0,2,f +3080,3298,4,3,f +3080,3460,1,16,f +3080,3622,15,16,f +3080,3623,71,15,f +3080,3623,2,6,f +3080,3648b,71,1,f +3080,3665,71,2,f +3080,3666,1,16,f +3080,3684,71,1,f +3080,3700,72,4,f +3080,3701,72,1,f +3080,3702,71,2,f +3080,3705,0,1,f +3080,3706,0,14,f +3080,3709,0,16,f +3080,3710,71,4,f +3080,3713,71,4,f +3080,3713,71,1,t +3080,3737,0,18,f +3080,3749,19,16,f +3080,3794a,71,7,f +3080,3811,2,1,f +3080,3832,1,8,f +3080,3857,2,1,f +3080,3941,71,12,f +3080,4032a,71,12,f +3080,4150,4,1,f +3080,4150,14,8,f +3080,41752,72,1,f +3080,4185,71,2,f +3080,42022,1,32,f +3080,43093,1,2,f +3080,44294,71,1,f +3080,44302a,0,32,f +3080,44375a,71,9,f +3080,4460b,71,4,f +3080,4477,0,16,f +3080,4477,72,24,f +3080,4519,71,13,f +3080,4589,72,2,f +3080,4589,2,8,f +3080,4589,0,2,f +3080,4589,320,2,f +3080,4589,1,2,f +3080,4716,0,1,f +3080,48336,71,8,f +3080,4865a,47,1,f +3080,54200,4,16,f +3080,56823c100,0,1,f +3080,58119,71,1,f +3080,58120,71,1,f +3080,6019,15,32,f +3080,6019,71,16,f +3080,6091,4,2,f +3080,6091,71,6,f +3080,6141,14,9,f +3080,6141,70,1,t +3080,6141,34,4,f +3080,6141,14,1,t +3080,6141,34,1,t +3080,6141,70,24,f +3080,6538b,71,2,f +3080,6541,72,16,f +3080,6553,71,24,f +3080,6558,0,4,f +3080,6588,47,1,f +3080,6636,71,2,f +3080,85543,15,2,f +3081,2453a,15,2,f +3081,2460,4,2,f +3081,2654,7,4,f +3081,3020,0,1,f +3081,3036,4,1,f +3081,30492,19,1,f +3081,30608,0,1,f +3081,32014,0,1,f +3081,32062,0,1,t +3081,32062,0,1,f +3081,32064b,4,2,f +3081,32523,4,1,f +3081,3460,15,1,f +3081,3626bpb0112,14,1,f +3081,3626bpb0161,14,1,f +3081,3660,0,2,f +3081,3666,0,1,f +3081,3708,0,1,f +3081,3754pb05,47,1,f +3081,3943b,1,1,f +3081,4162,15,1,f +3081,4189503,9999,1,f +3081,43093,1,1,t +3081,43093,1,1,f +3081,43372,19,1,f +3081,43373,25,1,f +3081,43374,15,1,f +3081,43702pr0001,25,3,f +3081,973bpb155c01,110,1,f +3081,973bpb156c01,4,1,f +3081,x494cx1,4,1,f +3081,x494cx1,110,1,f +3082,2493c01,4,2,f +3082,3001,4,10,f +3082,3001,1,16,f +3082,3001,0,10,f +3082,3001,15,5,f +3082,3001,14,10,f +3082,3002,4,4,f +3082,3002,14,8,f +3082,3002,1,11,f +3082,3002,15,6,f +3082,3002,0,4,f +3082,3003,4,2,f +3082,3003,47,2,f +3082,3003,0,4,f +3082,3003,1,9,f +3082,3003,15,3,f +3082,3003,14,8,f +3082,3004,0,8,f +3082,3004,14,20,f +3082,3004,15,4,f +3082,3004,4,5,f +3082,3004,1,11,f +3082,3004,47,4,f +3082,3005,47,4,f +3082,3005,1,8,f +3082,3005,15,8,f +3082,3005,14,8,f +3082,3005,4,16,f +3082,3005,0,4,f +3082,3006,14,2,f +3082,3007,4,2,f +3082,3008,1,5,f +3082,3008,14,4,f +3082,3008,4,2,f +3082,3008,15,4,f +3082,3009,1,6,f +3082,3009,4,4,f +3082,3009,15,6,f +3082,3009,14,8,f +3082,3010,47,4,f +3082,3010,15,1,f +3082,3010,14,11,f +3082,3010,1,9,f +3082,3010,4,9,f +3082,3010pb035e,1,1,f +3082,3010pb035e,4,1,f +3082,3020,1,4,f +3082,3020,4,2,f +3082,3021,4,2,f +3082,3021,1,2,f +3082,3021,14,1,f +3082,3022,4,1,f +3082,3022,1,2,f +3082,3022,14,4,f +3082,3028,4,1,f +3082,3030,4,1,f +3082,3030,1,1,f +3082,3031,1,1,f +3082,3031,4,2,f +3082,3032,4,2,f +3082,3032,1,1,f +3082,3033,1,1,f +3082,3034,14,1,f +3082,3034,4,2,f +3082,3034,1,1,f +3082,3035,14,2,f +3082,3035,1,1,f +3082,3035,4,2,f +3082,3036,1,1,f +3082,3036,4,1,f +3082,3039,1,6,f +3082,3039,14,6,f +3082,3039,47,2,f +3082,3039,4,8,f +3082,3039,0,8,f +3082,3040b,4,6,f +3082,3040b,1,4,f +3082,3062a,14,6,f +3082,3063b,14,8,f +3082,3081cc01,4,4,f +3082,3081cc01,14,4,f +3082,3127b,4,1,f +3082,3135c02,4,1,f +3082,3137c01,0,6,f +3082,3139,0,3,f +3082,3144,79,1,f +3082,3145,14,2,f +3082,3149c01,4,2,f +3082,3176,4,2,f +3082,3183a,4,2,f +3082,3184,4,2,f +3082,3190,4,1,f +3082,3191,4,1,f +3082,3297,1,6,f +3082,3297,4,10,f +3082,3298,1,2,f +3082,3298,4,8,f +3082,3299,4,3,f +3082,3299,1,3,f +3082,3300,1,1,f +3082,3300,4,2,f +3082,3307,14,2,f +3082,3308,14,2,f +3082,3308,4,2,f +3082,3315,4,1,f +3082,3324c01,4,3,f +3082,3403c01,4,1,f +3082,3433,14,1,f +3082,3436,14,1,f +3082,3460,1,2,f +3082,3460,15,2,f +3082,3462,4,1,f +3082,3464,4,3,f +3082,3470,2,1,f +3082,3471,2,1,f +3082,3480,7,2,f +3082,3481,4,2,f +3082,3483,0,14,f +3082,3491,4,1,f +3082,3492c01,14,1,f +3082,3581,4,2,f +3082,3582,1,2,f +3082,3596pb02,15,2,f +3082,3622,14,9,f +3082,3622,1,6,f +3082,3623,14,2,f +3082,3624,1,1,f +3082,3625,0,1,f +3082,3626apr0001,14,3,f +3082,3633,14,10,f +3082,3641,0,12,f +3082,3644,14,2,f +3082,3659,14,4,f +3082,3659,1,4,f +3082,3660,1,4,f +3082,3660,14,6,f +3082,3660,0,4,f +3082,3660,4,10,f +3082,3665,4,6,f +3082,3665,1,4,f +3082,3666,4,1,f +3082,3666,1,1,f +3082,3678a,47,4,f +3082,3684,14,8,f +3082,3685,14,4,f +3082,3700,4,3,f +3082,3710,4,5,f +3082,3710,14,1,f +3082,3710,1,5,f +3082,3741,2,4,f +3082,3742,1,1,t +3082,3742,15,3,f +3082,3742,1,3,f +3082,3742,14,3,f +3082,3742,4,1,t +3082,3742,15,1,t +3082,3742,14,1,t +3082,3742,4,3,f +3082,3747b,14,6,f +3082,3747b,4,4,f +3082,3747b,1,2,f +3082,3778,2,1,f +3082,3795,1,2,f +3082,3795,4,2,f +3082,3823,47,4,f +3082,3832,4,1,f +3082,3836,6,1,f +3082,3837,8,1,f +3082,384,4,1,f +3082,3853,4,5,f +3082,3853,14,4,f +3082,3854,4,8,f +3082,3854,14,4,f +3082,3856,2,6,f +3082,3857,2,1,f +3082,3861b,4,2,f +3082,3861b,14,1,f +3082,3867,2,1,f +3082,3901,0,1,f +3082,3941,14,6,f +3082,3942a,14,2,f +3082,3943a,15,2,f +3082,3956,1,4,f +3082,4175,4,2,f +3082,4207,14,2,f +3082,4234,4,1,f +3082,56823,0,1,f +3082,7039,4,12,f +3082,7049,0,6,f +3082,73037,4,1,f +3082,8,4,3,f +3082,970c00,0,1,f +3082,970c00,4,1,f +3082,970c00,1,1,f +3082,973c01,15,1,f +3082,973c02,4,1,f +3082,973c07,1,1,f +3084,11090,0,2,f +3084,12890,0,1,f +3084,18868b01,46,1,f +3084,19981pr0085,46,1,f +3084,2540,0,3,f +3084,3023,85,2,f +3084,3069b,0,1,f +3084,3626cpr9995,15,1,f +3084,3700,0,4,f +3084,3839b,72,1,f +3084,3941,46,1,f +3084,4032a,85,3,f +3084,4595,0,2,f +3084,4740,72,2,f +3084,53451,4,4,f +3084,53454,4,2,f +3084,59900,4,1,f +3084,61252,0,4,f +3084,6126b,182,2,f +3084,6141,72,6,f +3084,63965,4,1,f +3084,75937,0,1,f +3084,85861,0,4,f +3084,85861,71,1,f +3084,88072,0,3,f +3084,970c00pr9999,272,1,f +3084,973pr9995,72,1,f +3084,98313,0,3,f +3084,99780,72,1,f +3087,2357,8,6,f +3087,2362a,40,2,f +3087,2412b,25,6,f +3087,2413,0,1,f +3087,2413,4,1,f +3087,2419,0,2,f +3087,2431,0,6,f +3087,2444,4,1,f +3087,2445,0,5,f +3087,2456,8,1,f +3087,2476a,15,6,f +3087,2625,7,1,f +3087,2654,15,1,f +3087,2780,0,3,f +3087,2780,0,1,t +3087,2877,7,6,f +3087,2877,15,2,f +3087,298c03,0,1,t +3087,298c03,0,2,f +3087,3001,4,2,f +3087,3001,0,4,f +3087,3002,15,2,f +3087,3003,4,2,f +3087,3004,8,7,f +3087,3004,4,7,f +3087,3004,0,2,f +3087,30044,4,16,f +3087,30046,0,4,f +3087,3005,4,10,f +3087,3007,15,1,f +3087,3008,4,2,f +3087,3008,0,2,f +3087,3008,15,2,f +3087,3009,7,2,f +3087,3009,15,2,f +3087,3010,4,6,f +3087,3010,8,14,f +3087,3010,0,2,f +3087,3010,15,3,f +3087,3020,4,4,f +3087,3020,0,10,f +3087,3021,0,5,f +3087,3021,19,4,f +3087,3022,7,1,f +3087,3022,4,2,f +3087,3023,8,7,f +3087,3023,4,6,f +3087,3023,15,7,f +3087,3023,0,8,f +3087,3024,7,8,f +3087,3029,4,1,f +3087,3030,0,4,f +3087,3031,0,2,f +3087,3032,7,2,f +3087,3033,7,1,f +3087,3034,4,6,f +3087,30355,4,1,f +3087,30356,4,1,f +3087,3039,7,2,f +3087,3040b,15,1,f +3087,3040b,7,4,f +3087,3040b,4,17,f +3087,3046a,4,2,f +3087,30503,4,6,f +3087,30505,0,2,f +3087,30526,1,1,f +3087,30647,4,2,f +3087,3069b,15,4,f +3087,3069b,4,5,f +3087,3070b,4,6,f +3087,3070b,15,2,f +3087,3070b,15,1,t +3087,3070b,4,1,t +3087,32000,0,6,f +3087,32001,7,3,f +3087,32002,8,11,f +3087,32013,8,5,f +3087,32017,0,2,f +3087,32039,7,4,f +3087,32062,0,5,f +3087,32064a,4,4,f +3087,32065,0,6,f +3087,32073,7,4,f +3087,32123b,7,12,f +3087,32124,7,3,f +3087,32126,7,2,f +3087,32198,7,1,f +3087,32209,0,1,f +3087,32316,8,2,f +3087,32449,0,1,f +3087,32556,7,5,f +3087,32557,0,1,f +3087,3297,0,1,f +3087,3298,4,4,f +3087,3460,8,12,f +3087,3460,15,4,f +3087,3622,4,4,f +3087,3623,19,12,f +3087,3647,7,1,t +3087,3647,7,7,f +3087,3648b,7,1,f +3087,3660,0,10,f +3087,3665,4,7,f +3087,3665,0,4,f +3087,3665,15,1,f +3087,3666,0,4,f +3087,3673,7,4,f +3087,3676,0,2,f +3087,3684,4,2,f +3087,3684,7,3,f +3087,3685,4,2,f +3087,3700,7,6,f +3087,3702,7,2,f +3087,3703,0,2,f +3087,3705,0,2,f +3087,3707,0,1,f +3087,3708,0,2,f +3087,3710,4,1,f +3087,3710,15,3,f +3087,3710,0,4,f +3087,3710,7,2,f +3087,3713,7,1,t +3087,3713,7,8,f +3087,3737,0,1,f +3087,3749,19,4,f +3087,3794a,4,8,f +3087,3830,15,4,f +3087,3831,15,4,f +3087,3832,8,3,f +3087,3894,0,4,f +3087,3933,15,2,f +3087,3933,4,1,f +3087,3934,4,1,f +3087,3934,15,2,f +3087,3935,15,1,f +3087,3935,0,1,f +3087,3936,15,1,f +3087,3936,0,1,f +3087,3937,4,4,f +3087,3938,7,2,f +3087,3941,15,1,f +3087,3942c,4,1,f +3087,4032a,4,2,f +3087,4150,0,1,f +3087,4162,0,4,f +3087,41747,4,2,f +3087,41748,4,2,f +3087,41749,0,2,f +3087,41750,0,2,f +3087,41752,8,1,t +3087,41764,0,2,f +3087,41765,0,2,f +3087,41767,15,1,f +3087,41768,15,1,f +3087,41769,4,2,f +3087,41769,15,1,f +3087,41770,4,4,f +3087,41770,15,1,f +3087,4185,7,2,f +3087,42022,4,10,f +3087,42023,15,2,f +3087,42023,0,8,f +3087,42610,7,7,f +3087,4274,7,6,f +3087,4282,0,10,f +3087,4286,8,4,f +3087,4287,15,2,f +3087,4287,0,4,f +3087,43121,7,2,f +3087,43722,0,3,f +3087,43722,15,1,f +3087,43723,0,3,f +3087,43723,15,1,f +3087,44126,0,2,f +3087,44126,4,1,f +3087,44301a,25,2,f +3087,44302a,6,2,f +3087,44567a,25,4,f +3087,4460a,4,2,f +3087,44728,7,2,f +3087,4477,4,2,f +3087,4519,7,3,f +3087,45301,0,1,f +3087,4589,0,2,f +3087,4599a,0,2,f +3087,46413,40,2,f +3087,46667,0,1,f +3087,4858,4,1,f +3087,4865a,19,1,f +3087,51011,0,3,f +3087,6091,0,2,f +3087,6111,0,2,f +3087,6134,0,2,f +3087,6141,34,3,f +3087,6141,36,4,f +3087,6141,8,3,f +3087,6141,47,2,f +3087,6232,8,4,f +3087,6538b,7,1,f +3087,6541,0,6,f +3087,6564,0,2,f +3087,6565,0,2,f +3087,6587,8,2,f +3087,6589,7,5,f +3087,6592,7,2,f +3087,6630,7,1,f +3087,6636,4,8,f +3087,71076,383,4,f +3087,71509,0,4,f +3089,2419,8,1,f +3089,2447,42,2,f +3089,2447,42,1,t +3089,298c03,0,2,f +3089,298c03,0,1,t +3089,30038,8,1,f +3089,3009,7,1,f +3089,30133,0,1,f +3089,30135,8,1,f +3089,30170,0,1,f +3089,30170,0,1,t +3089,30194,8,2,f +3089,30293,6,1,f +3089,30294,6,1,f +3089,30304,8,1,f +3089,30325,6,1,f +3089,30325,8,1,f +3089,30385,42,1,f +3089,3039px15,3,1,f +3089,3626bpb0106,14,1,f +3089,3626bpx15,14,1,f +3089,3626bpx32,14,1,f +3089,3626bpx33,14,1,f +3089,3626bpx90,14,1,f +3089,3794a,14,1,f +3089,3833,0,1,f +3089,3839b,0,1,f +3089,3962b,0,1,f +3089,55295,8,1,f +3089,55296,8,1,f +3089,55297,8,1,f +3089,55298,8,1,f +3089,55299,8,1,f +3089,55300,8,1,f +3089,6019,7,2,f +3089,6140,0,1,f +3089,6141,57,1,t +3089,6141,57,1,f +3089,970c00,4,1,f +3089,970c00,1,2,f +3089,970c00,8,1,f +3089,970x026,8,1,f +3089,973pb0044c01,1,1,f +3089,973pb0070c01,8,1,f +3089,973pb0090c01,25,1,f +3089,973px143c01,0,1,f +3089,973px25c01,4,1,f +3090,11153,4,2,f +3090,11476,71,1,f +3090,11477,15,1,f +3090,11816pr0107,78,1,f +3090,14716,15,2,f +3090,14718,4,1,f +3090,14769pr1071,297,1,f +3090,15068,212,1,f +3090,15207,4,1,f +3090,15535,19,1,f +3090,15573,1,3,f +3090,15672,15,2,f +3090,16925pr0104,1,1,f +3090,18674,4,1,f +3090,18895,47,1,f +3090,18896,15,1,f +3090,18980,4,1,f +3090,20310,297,3,f +3090,2343,297,1,f +3090,2357,15,1,f +3090,2420,15,2,f +3090,2431,1,2,f +3090,24316,70,2,f +3090,2454a,4,1,f +3090,2456,1,2,f +3090,26597,71,1,f +3090,2877,15,4,f +3090,29560,0,1,f +3090,3003,15,1,f +3090,3004,4,1,f +3090,3005,1,2,f +3090,3020,1,2,f +3090,3020,4,2,f +3090,3022,1,1,f +3090,3023,4,3,f +3090,3023,1,7,f +3090,3024,15,1,f +3090,3024,15,1,t +3090,3031,71,1,f +3090,3034,1,2,f +3090,3035,4,1,f +3090,30414,4,2,f +3090,3062b,297,5,f +3090,3062b,4,1,f +3090,3065,47,4,f +3090,3069b,1,4,f +3090,3069b,15,2,f +3090,3070bpr0173,25,1,t +3090,3070bpr0173,25,1,f +3090,32123b,71,1,f +3090,32123b,71,1,t +3090,3460,4,1,f +3090,3623,15,1,f +3090,3623,4,4,f +3090,3673,71,1,t +3090,3673,71,2,f +3090,3700,15,1,f +3090,3709,4,2,f +3090,3710,15,2,f +3090,3749,19,1,f +3090,3795,15,1,f +3090,3830,15,1,f +3090,3831,15,1,f +3090,4006,179,1,f +3090,41235stk01,9999,1,f +3090,43888,297,4,f +3090,44728,4,1,f +3090,4733,15,1,f +3090,50861,0,2,f +3090,50862,297,2,f +3090,50950,4,2,f +3090,54200,182,1,t +3090,54200,182,4,f +3090,59232,179,1,f +3090,59900,33,1,f +3090,60475b,15,1,f +3090,60483,71,1,f +3090,60581,41,1,f +3090,60849,0,1,t +3090,60849,0,2,f +3090,60897,1,2,f +3090,61252,25,2,f +3090,6141,47,1,f +3090,6141,297,1,t +3090,6141,297,6,f +3090,6141,47,1,t +3090,64644,297,1,f +3090,6541,15,4,f +3090,6589,19,3,f +3090,73983,15,4,f +3090,85975,320,1,f +3090,85984,1,3,f +3090,87079,1,1,f +3090,87544,47,4,f +3090,87552,4,4,f +3090,87552,47,3,f +3090,87580,272,1,f +3090,88072,15,2,f +3090,92456pr0207,78,1,f +3090,92593,4,3,f +3090,92947,4,1,f +3090,93273,1,1,f +3090,98138,33,1,t +3090,98138,33,6,f +3090,98138pr0038,1,1,t +3090,98138pr0038,1,1,f +3090,98397,297,1,f +3090,99253,297,1,f +3090,99253,297,1,t +3090,99780,71,1,f +3091,11248c01,1,1,f +3091,11248c01,10,1,f +3091,11854,15,1,f +3091,13161,15,1,f +3091,13531pr0001,0,1,f +3091,14222,297,1,f +3091,15956,322,1,f +3091,15958,191,1,f +3091,15962,27,1,f +3091,17297,4,1,f +3091,17306,25,1,f +3091,18805,484,1,f +3091,18918,322,1,f +3091,19818pr0013,0,1,f +3091,19819pr0014,29,1,f +3091,21190pr0001,29,1,f +3091,2312c02,14,1,f +3091,3437,226,1,f +3091,3437pr0044,322,1,f +3091,3437pr0052,25,1,f +3091,40666,4,1,f +3091,40909,4,1,f +3091,92453,4,1,f +3091,98220,226,1,f +3093,2412b,0,6,f +3093,2420,14,4,f +3093,2420,7,4,f +3093,2431,4,1,f +3093,2433,14,8,f +3093,2436,0,2,f +3093,2483,41,1,f +3093,2489,6,8,f +3093,2495,4,1,f +3093,2496,0,1,f +3093,2540,7,2,f +3093,2868b,0,1,f +3093,2871a,0,2,f +3093,2873,1,8,f +3093,2874,7,4,f +3093,2876,7,1,f +3093,2877,4,8,f +3093,2877,1,4,f +3093,2878c01,0,6,f +3093,2919,46,2,f +3093,2920,0,8,f +3093,2921,4,14,f +3093,2921,1,4,f +3093,2921,14,4,f +3093,2924a,4,1,f +3093,2928,4,2,f +3093,298c02,7,4,f +3093,3001,4,3,f +3093,3004,14,3,f +3093,3004,7,1,f +3093,3004,4,3,f +3093,3005,14,4,f +3093,3005,4,11,f +3093,3008,4,2,f +3093,3009,15,1,f +3093,3010,4,1,f +3093,3010,14,2,f +3093,3020,7,1,f +3093,3020,4,2,f +3093,3020,14,1,f +3093,3020,0,2,f +3093,3021,0,3,f +3093,3021,4,1,f +3093,3021,14,1,f +3093,3022,0,9,f +3093,3023,14,2,f +3093,3023,1,2,f +3093,3023,0,10,f +3093,3023,4,5,f +3093,3024,14,7,f +3093,3024,4,3,f +3093,3024,0,3,f +3093,3027,1,1,f +3093,3027,0,1,f +3093,3027,4,1,f +3093,3029,15,1,f +3093,3031,7,1,f +3093,3034,0,3,f +3093,3035,7,1,f +3093,3039,14,2,f +3093,3040b,14,4,f +3093,3040b,0,2,f +3093,3040b,7,3,f +3093,3040b,4,1,f +3093,3058b,0,1,f +3093,3062b,0,3,f +3093,3062b,7,7,f +3093,3069b,0,2,f +3093,3069b,14,1,f +3093,3069b,1,2,f +3093,3069bp52,15,1,f +3093,3070b,0,3,f +3093,3188,4,2,f +3093,3189,4,2,f +3093,3297,7,2,f +3093,3460,14,4,f +3093,3464,47,2,f +3093,3622,4,2,f +3093,3624,4,1,f +3093,3626bpr0001,14,3,f +3093,3641,0,6,f +3093,3666,0,16,f +3093,3666,4,6,f +3093,3666,1,4,f +3093,3710,0,7,f +3093,3710,14,2,f +3093,3710,1,2,f +3093,3710,4,5,f +3093,3710,7,1,f +3093,3747b,0,4,f +3093,3788,14,1,f +3093,3794a,4,2,f +3093,3795,0,10,f +3093,3795,4,2,f +3093,3829c01,14,1,f +3093,3829c01,4,1,f +3093,3833,15,1,f +3093,3901,0,1,f +3093,3962a,0,1,f +3093,4022,0,8,f +3093,4032a,6,8,f +3093,4035,4,2,f +3093,4036,47,2,f +3093,4070,4,2,f +3093,4079,15,2,f +3093,4081b,14,2,f +3093,4084,0,2,f +3093,4162,1,2,f +3093,4162,0,2,f +3093,4175,0,4,f +3093,4181p08,4,1,f +3093,4182p08,4,1,f +3093,4183,47,2,f +3093,4215a,14,2,f +3093,4276b,0,8,f +3093,4282,4,2,f +3093,4286,14,2,f +3093,4315,1,8,f +3093,4315,14,1,f +3093,4477,4,2,f +3093,4480c01,0,1,f +3093,4509,7,2,f +3093,4510,4,8,f +3093,4518ac01,0,1,f +3093,4531,0,2,f +3093,4600,0,4,f +3093,4624,14,2,f +3093,4624,15,4,f +3093,4864a,47,1,f +3093,4864a,4,8,f +3093,4865a,0,2,f +3093,5306c01,8,1,f +3093,6014a,14,2,f +3093,6015,0,2,f +3093,6141,36,2,f +3093,6141,46,6,f +3093,6141,0,1,t +3093,6141,47,2,f +3093,6141,0,4,f +3093,70358,0,1,f +3093,70928,0,1,f +3093,73092,0,8,f +3093,74746,8,2,f +3093,74747,8,16,f +3093,970c00,1,2,f +3093,970c00,0,1,f +3093,973p19c01,1,1,f +3093,973pb0201c01,15,1,f +3093,973px1c01,1,1,f +3094,43093,1,1,f +3094,4740,47,1,f +3094,4740,47,1,t +3094,47430,85,2,f +3094,47431,85,2,f +3094,47432,85,2,f +3094,47452,71,2,f +3094,47454,71,2,f +3094,47455,14,10,f +3094,47456,85,4,f +3094,47457,85,4,f +3094,47457pb02,85,2,f +3094,47459,178,1,f +3094,47469,85,1,f +3094,47474,71,1,f +3094,47477c01pb02,85,1,f +3094,47501,85,4,f +3094,bb153pb01,71,1,f +3094,kkc10,89,1,f +3094,kkc12,89,1,f +3094,kkc13,89,1,f +3094,kkc15,89,1,f +3094,kkc16,89,1,f +3094,kkc18,89,1,f +3094,rb00188,9999,1,f +3096,14728c30,0,1,f +3096,2412b,80,1,f +3096,2419,1,1,f +3096,2730,71,2,f +3096,2780,0,1,t +3096,2780,0,15,f +3096,2905,14,2,f +3096,30000,72,1,f +3096,3004,4,2,f +3096,3020,14,1,f +3096,3021,0,2,f +3096,3022,72,3,f +3096,3023,4,4,f +3096,3031,1,1,f +3096,32012,72,1,f +3096,32014,72,2,f +3096,32016,14,2,f +3096,32016,4,4,f +3096,32017,14,6,f +3096,32039,0,3,f +3096,32054,71,8,f +3096,32062,4,11,f +3096,32073,71,2,f +3096,32123b,14,9,f +3096,32123b,14,1,t +3096,32138,0,5,f +3096,32184,4,1,f +3096,32278,72,6,f +3096,32291,0,2,f +3096,32316,0,10,f +3096,32523,0,3,f +3096,32526,4,1,f +3096,32526,0,4,f +3096,32526,14,2,f +3096,32556,19,10,f +3096,32558,4,4,f +3096,3475b,14,2,f +3096,3647,72,1,f +3096,3647,72,1,t +3096,3648b,72,1,f +3096,3660,1,2,f +3096,3701,14,3,f +3096,3703,71,2,f +3096,3706,0,5,f +3096,3708,0,2,f +3096,3710,1,2,f +3096,3713,4,10,f +3096,3713,4,1,t +3096,3795,1,1,f +3096,40490,72,3,f +3096,40490,14,1,f +3096,41239,0,2,f +3096,41669,15,2,f +3096,41677,0,4,f +3096,41751,0,1,f +3096,41753,72,1,f +3096,41769,1,2,f +3096,41770,1,2,f +3096,42073c02,72,1,f +3096,4274,1,8,f +3096,4274,1,1,t +3096,43093,1,16,f +3096,44294,71,3,f +3096,4519,71,2,f +3096,45590,0,2,f +3096,48729a,72,8,f +3096,54200,0,2,f +3096,56145,0,4,f +3096,59443,71,5,f +3096,61069,1,2,f +3096,61070,1,1,f +3096,61071,1,1,f +3096,61072,0,4,f +3096,61073,1,1,f +3096,6141,80,2,f +3096,6141,80,1,t +3096,61481,0,4,f +3096,61678,15,2,f +3096,61770,9999,1,f +3096,6558,1,9,f +3096,6564,14,2,f +3096,6565,14,2,f +3096,6628,0,2,f +3096,75c63,4,1,f +3096,8494stk01,9999,1,t +3096,85544,4,2,f +3097,10201,0,4,f +3097,11090,0,1,f +3097,11211,71,4,f +3097,11214,72,1,f +3097,11458,72,4,f +3097,11476,71,1,f +3097,11609,484,1,f +3097,12825,15,4,f +3097,13547,0,2,f +3097,13665,0,1,f +3097,15068,15,4,f +3097,15068,0,1,f +3097,15362,297,2,f +3097,15619,15,1,f +3097,15621,41,1,f +3097,15706,0,2,f +3097,15827,0,1,f +3097,16905,9999,1,t +3097,2357,15,6,f +3097,2357,1,2,f +3097,2412b,297,7,f +3097,2412b,85,1,f +3097,2419,85,1,f +3097,2419,1,1,f +3097,2420,1,2,f +3097,2540,71,3,f +3097,2780,0,16,f +3097,2825,71,2,f +3097,2877,0,4,f +3097,298c02,4,2,f +3097,3001,71,1,f +3097,3004,14,2,f +3097,3004,15,9,f +3097,3009,1,1,f +3097,3009,15,3,f +3097,3010,15,2,f +3097,30173a,297,2,f +3097,3020,72,2,f +3097,3020,15,2,f +3097,3021,72,4,f +3097,3021,85,1,f +3097,3021,4,1,f +3097,3023,0,4,f +3097,3023,4,2,f +3097,3023,15,4,f +3097,3032,15,1,f +3097,30332,0,2,f +3097,3034,72,1,f +3097,30367b,0,2,f +3097,30374,0,1,f +3097,30374,41,6,f +3097,30374,297,1,f +3097,3039,71,1,f +3097,3039pr0002,15,1,f +3097,3040b,71,6,f +3097,30414,71,2,f +3097,30526,71,2,f +3097,30608,19,1,f +3097,3068b,15,1,f +3097,3069bpr0030,15,1,f +3097,3176,72,1,f +3097,32013,0,2,f +3097,32054,0,2,f +3097,32062,4,2,f +3097,32062,0,3,f +3097,32064b,72,12,f +3097,32072,14,3,f +3097,32073,71,1,f +3097,32123b,71,8,f +3097,32123b,14,2,f +3097,32523,71,2,f +3097,32524,71,2,f +3097,32526,15,2,f +3097,33299a,71,1,f +3097,3460,1,2,f +3097,3622,1,4,f +3097,3622,15,2,f +3097,3626cpr1281,14,1,f +3097,3626cpr1282,0,2,f +3097,3626cpr1364,15,1,f +3097,3660,15,11,f +3097,3666,0,2,f +3097,3666,71,1,f +3097,3700,71,2,f +3097,3700,1,3,f +3097,3701,15,3,f +3097,3705,0,3,f +3097,3706,0,1,f +3097,3710,15,3,f +3097,3710,72,3,f +3097,3710,71,1,f +3097,3710,1,4,f +3097,3713,4,1,f +3097,3737,0,1,f +3097,3747b,0,1,f +3097,3749,19,2,f +3097,3795,0,3,f +3097,3795,1,3,f +3097,3795,15,1,f +3097,3894,72,2,f +3097,3937,1,3,f +3097,3938,71,2,f +3097,3958,1,2,f +3097,4032a,4,4,f +3097,4070,0,8,f +3097,4070,71,4,f +3097,4079,72,2,f +3097,4081b,15,2,f +3097,4150pr0012,72,1,f +3097,41530,179,2,f +3097,41669,15,2,f +3097,41677,71,2,f +3097,41749,15,2,f +3097,4175,71,2,f +3097,41750,15,2,f +3097,41769,1,5,f +3097,41770,1,5,f +3097,42003,4,2,f +3097,42022,15,2,f +3097,42610,71,1,f +3097,4286,15,2,f +3097,43857,14,2,f +3097,44661,72,1,f +3097,44676,15,2,f +3097,44728,72,4,f +3097,4519,71,1,f +3097,4740,36,4,f +3097,47755,71,1,f +3097,47755,1,4,f +3097,4868b,15,2,f +3097,48724,0,1,f +3097,50304,85,1,f +3097,50305,85,1,f +3097,50943,71,3,f +3097,50950,1,12,f +3097,50955,15,2,f +3097,50956,15,2,f +3097,51739,15,2,f +3097,52107,4,2,f +3097,53454,36,1,f +3097,54200,85,4,f +3097,54383,1,2,f +3097,54384,1,2,f +3097,57028c01,71,2,f +3097,57796,72,2,f +3097,59426,72,1,f +3097,59443,14,2,f +3097,59900,297,8,f +3097,6020,71,1,f +3097,60219,15,2,f +3097,60470a,0,3,f +3097,60478,72,2,f +3097,60897,0,2,f +3097,61070,15,1,f +3097,61071,15,1,f +3097,61072,179,2,f +3097,6108,15,2,f +3097,61184,71,6,f +3097,6134,4,1,f +3097,61409,0,4,f +3097,6141,297,8,f +3097,6141,1,2,f +3097,6141,41,6,f +3097,6141,36,8,f +3097,6141,72,4,f +3097,62462,4,1,f +3097,62462,71,4,f +3097,63864,15,4,f +3097,64644,297,1,f +3097,6541,15,4,f +3097,6553,71,1,f +3097,6587,28,1,f +3097,78c02,179,4,f +3097,85940,0,4,f +3097,85984,72,1,f +3097,85984,1,4,f +3097,87079,0,1,f +3097,87580,71,2,f +3097,87611,15,2,f +3097,88517,297,1,f +3097,90194,0,2,f +3097,92218,179,2,f +3097,92280,0,4,f +3097,92280,71,4,f +3097,92692,0,1,f +3097,93168,71,2,f +3097,93606,71,1,f +3097,94531,47,1,f +3097,95326,179,1,f +3097,96874,25,1,t +3097,970c00,85,1,f +3097,970c00,0,1,f +3097,970c00,15,1,f +3097,970c00pr0603,0,1,f +3097,973pr2473c01,15,1,f +3097,973pr2578c01,0,1,f +3097,973pr2579c01,0,1,f +3097,973pr2583c01,15,1,f +3097,98137,297,2,f +3097,98139,179,2,f +3097,98141,179,2,f +3097,98302,0,4,f +3097,98341,297,3,f +3098,2419,15,2,f +3098,2447,42,1,f +3098,2540,0,2,f +3098,2555,15,2,f +3098,30031,0,1,f +3098,30034,15,1,f +3098,30035,15,1,f +3098,30038,8,1,f +3098,3004,15,1,f +3098,3475a,0,2,f +3098,3626bpb0057,14,1,f +3098,3794a,0,1,f +3098,3838,0,1,f +3098,3937,15,2,f +3098,3938,0,2,f +3098,4150,0,1,f +3098,4589,33,1,f +3098,4740,42,1,f +3098,6177,15,1,f +3098,6815stk01,9999,1,t +3098,6815stk02,9999,1,t +3098,970x026,7,1,f +3098,973pb0003c01,15,1,f +3099,11153,1,2,f +3099,13971,71,2,f +3099,14417,72,1,f +3099,14418,71,2,f +3099,14704,71,1,f +3099,14769pr1011,71,1,f +3099,14769pr1034,70,1,f +3099,15068,0,1,f +3099,15208,15,3,f +3099,15209,15,4,f +3099,15456,0,2,f +3099,2780,0,2,f +3099,2780,0,1,t +3099,3020,0,2,f +3099,3021,1,2,f +3099,3023,0,3,f +3099,3039,0,1,f +3099,30602,15,1,f +3099,30602,40,1,f +3099,32526,0,2,f +3099,3660,1,4,f +3099,3673,71,1,t +3099,3673,71,4,f +3099,3700,1,3,f +3099,4274,1,4,f +3099,4274,1,1,t +3099,44728,1,1,f +3099,61254,0,2,f +3099,6141,36,1,t +3099,6141,33,1,t +3099,6141,33,2,f +3099,6141,36,2,f +3099,87087,1,2,f +3099,92280,0,2,f +3099,93606,4,1,f +3099,99207,4,1,f +3100,11203,71,2,f +3100,11211,71,29,f +3100,13547,71,3,f +3100,14719,71,1,f +3100,14769,71,3,f +3100,15573,19,2,f +3100,22961,71,1,f +3100,2431,0,7,f +3100,2431,71,2,f +3100,2445,0,2,f +3100,2460,0,2,f +3100,2780,0,2,f +3100,3004,71,8,f +3100,3005,71,3,f +3100,3020,71,3,f +3100,3021,71,7,f +3100,3022,71,2,f +3100,3023,72,1,f +3100,3023,71,47,f +3100,3024,71,1,f +3100,3030,72,1,f +3100,3033,72,1,f +3100,3034,71,7,f +3100,3034,0,3,f +3100,3062b,71,1,f +3100,3068b,19,20,f +3100,3069b,72,3,f +3100,3069b,71,5,f +3100,3069b,0,4,f +3100,3069b,19,2,f +3100,3070b,19,2,f +3100,32064a,71,13,f +3100,3700,71,3,f +3100,3794b,71,1,f +3100,3957a,71,1,f +3100,4162pr0042,0,1,f +3100,4185,71,2,f +3100,4274,1,2,f +3100,47905,71,1,f +3100,50950,71,3,f +3100,52107,0,3,f +3100,54200,72,24,f +3100,54200,71,11,f +3100,57585,71,4,f +3100,59426,72,1,f +3100,62462,0,1,f +3100,6636,71,4,f +3100,73983,72,1,f +3100,73983,71,8,f +3100,85861,320,2,f +3100,85984,71,54,f +3100,87087,71,3,f +3100,93273,71,6,f +3100,96874,25,1,t +3100,99780,71,3,f +3100,99781,71,3,f +3102,2340,70,2,f +3102,2412b,70,1,f +3102,2431,0,1,f +3102,2524,70,1,f +3102,3010,14,2,f +3102,30154,72,1,f +3102,30155,72,2,f +3102,30157,70,1,f +3102,30162,71,1,f +3102,30170,0,1,f +3102,30170,0,1,t +3102,30171,0,1,f +3102,3020,0,4,f +3102,3022,71,1,f +3102,3023,0,2,f +3102,30236,72,1,f +3102,3024,0,2,f +3102,30332,0,1,f +3102,30367b,4,1,f +3102,3037,14,2,f +3102,3039,14,2,f +3102,30503,70,2,f +3102,3065,47,2,f +3102,32123b,71,1,t +3102,32123b,71,2,f +3102,32209,72,1,f +3102,3483,0,2,f +3102,3587,70,1,f +3102,3623,14,2,f +3102,3626bpx146,14,1,f +3102,3660,14,1,f +3102,3666,14,2,f +3102,3700,71,2,f +3102,3710,0,5,f +3102,3731,70,1,f +3102,3795,14,1,f +3102,3832,4,1,f +3102,3837,72,1,f +3102,3839b,72,1,f +3102,3841,72,1,f +3102,4032a,14,1,f +3102,40620,71,2,f +3102,4079,71,1,f +3102,4150,14,4,f +3102,41531,14,1,f +3102,43720,14,1,f +3102,43721,14,1,f +3102,44571,14,1,f +3102,44822,0,1,f +3102,47397,70,4,f +3102,47398,70,4,f +3102,48183,14,1,f +3102,4854,14,2,f +3102,4855,14,1,f +3102,4856a,14,1,f +3102,4865a,14,4,f +3102,48729a,72,1,f +3102,54200,70,2,f +3102,6019,71,4,f +3102,6141,70,8,f +3102,6141,70,1,t +3102,6231,14,2,f +3102,970c00,72,1,f +3102,973pb0267c01,0,1,f +3103,3004,7,1,f +3103,3004,15,1,f +3103,3005,7,2,f +3103,3023,15,1,f +3103,30246,8,1,f +3103,30273,8,1,f +3103,3626bpx68,14,1,f +3103,3626bpx71,14,1,f +3103,3846p4e,7,1,f +3103,3847,8,1,f +3103,3849,8,1,f +3103,4491b,1,1,f +3103,4495a,1,1,f +3103,59,383,1,f +3103,71015,334,1,f +3103,75998pr0007,15,1,f +3103,970c00pb014,0,1,f +3103,970c09pb01,7,1,f +3103,973px115c01,8,1,f +3103,973px118c01,7,1,f +3104,3623,0,2,f +3104,4176,15,1,f +3105,2586px3,19,1,f +3105,3004,1,1,f +3105,30115,0,1,f +3105,30127p01,15,3,f +3105,30138pb01,15,1,f +3105,3023,1,1,f +3105,3626bpx59,14,1,f +3105,3835,0,1,f +3105,4491b,1,1,f +3105,4493c01px2,6,1,f +3105,4497,0,1,f +3105,6064,2,1,f +3105,970c00pb025,4,1,f +3105,973px105c01,19,1,f +3106,2446,0,1,f +3106,2447,42,1,t +3106,2447,42,1,f +3106,2540,0,1,f +3106,30027,7,4,f +3106,30028,0,4,f +3106,3023,0,1,f +3106,30602,4,1,f +3106,3626bpx33,14,1,f +3106,3795,4,1,f +3106,3829c01,7,1,f +3106,3839b,4,1,f +3106,4070,0,2,f +3106,6126a,57,2,f +3106,6157,0,2,f +3106,970c00,0,1,f +3106,973px66c01,0,1,f +3107,11477,2,4,f +3107,14417,72,2,f +3107,14419,72,4,f +3107,14704,71,2,f +3107,14769pr1003,15,1,f +3107,15209,15,2,f +3107,3003,27,2,f +3107,3004,2,4,f +3107,3023,27,2,f +3107,3023,2,1,f +3107,3024,2,1,t +3107,3024,2,2,f +3107,3039,2,1,f +3107,3039,27,1,f +3107,3665,27,2,f +3107,3710,27,1,f +3107,4081b,27,2,f +3107,44728,27,1,f +3107,48336,2,2,f +3107,4871,0,1,f +3107,54200,34,1,t +3107,54200,34,4,f +3107,54200,27,6,f +3107,54200,27,1,t +3107,60478,0,2,f +3107,61252,0,6,f +3107,6141,42,4,f +3107,6141,42,1,t +3107,6141,15,1,t +3107,6141,15,2,f +3107,98348,42,2,f +3107,99780,0,1,f +3111,2357,14,2,f +3111,2401,0,2,f +3111,2419,0,2,f +3111,2419,14,1,f +3111,2419,1,1,f +3111,2431,0,2,f +3111,2444,14,1,f +3111,2450,0,2,f +3111,2454a,14,1,f +3111,2456,14,2,f +3111,2456,0,1,f +3111,2460,14,1,f +3111,2462,14,4,f +3111,2462,0,2,f +3111,2516,0,1,f +3111,2540,14,1,f +3111,2555,14,1,f +3111,2555,0,2,f +3111,2582px2,14,2,f +3111,2607,0,1,f +3111,2609a,0,1,f +3111,2654,0,4,f +3111,30014,0,1,f +3111,3004,0,1,f +3111,3004,14,5,f +3111,3005,0,1,f +3111,3005,14,2,f +3111,3007,14,1,f +3111,3020,14,4,f +3111,3022,14,4,f +3111,3023,14,3,f +3111,3023,0,10,f +3111,3024,0,4,f +3111,3031,0,1,f +3111,3035,0,1,f +3111,30385,383,1,f +3111,3039,14,1,f +3111,3040b,14,4,f +3111,3048c,0,1,f +3111,3062b,0,2,f +3111,3065,33,2,f +3111,3068b,14,3,f +3111,3069b,0,2,f +3111,3298,0,1,f +3111,3612,0,1,f +3111,3612,14,1,f +3111,3623,0,2,f +3111,3626bpx101,14,1,f +3111,3626bpx114,14,1,f +3111,3660,14,1,f +3111,3665,14,2,f +3111,3666,14,2,f +3111,37,383,2,f +3111,3710,14,3,f +3111,3747b,0,2,f +3111,3749,7,3,f +3111,3794a,14,2,f +3111,3795,0,2,f +3111,3795,14,5,f +3111,3830,14,2,f +3111,3831,14,2,f +3111,3832,14,1,f +3111,3839b,0,2,f +3111,3933,0,2,f +3111,3934,0,2,f +3111,3941,14,2,f +3111,4070,14,1,f +3111,412,57,2,f +3111,4150pa0,14,1,f +3111,4213,14,1,f +3111,4315,14,2,f +3111,4345b,57,1,f +3111,4346,57,1,f +3111,4623,14,3,f +3111,4625,0,2,f +3111,4740,57,1,f +3111,4865a,14,3,f +3111,57467,383,4,f +3111,59275,1,4,f +3111,6020,0,1,f +3111,6040,14,3,f +3111,6041,57,3,f +3111,6043,14,1,f +3111,6064,2,1,f +3111,6065,4,1,f +3111,6084,33,1,f +3111,6085,33,1,f +3111,6086,0,1,f +3111,6088,15,2,f +3111,6090,0,1,f +3111,6090,33,1,f +3111,6141,57,2,f +3111,6141,57,1,t +3111,6141,14,1,t +3111,6141,14,2,f +3111,6217,14,1,f +3111,70001pb01,0,1,f +3111,71509,0,1,t +3111,71509,0,1,f +3111,73092,0,2,f +3111,970x001,1,2,f +3111,973px170c01,15,2,f +3112,2450,1,2,f +3112,2496,0,1,t +3112,2496,0,1,f +3112,2655,14,1,f +3112,2655,14,1,t +3112,3001,15,1,f +3112,3021,4,1,f +3112,3022,1,1,f +3112,3039,15,1,f +3112,3039,47,1,f +3113,3704,0,2,f +3113,3705,0,2,f +3113,3706,0,2,f +3113,3707,0,2,f +3113,3708,0,2,f +3113,3737,0,2,f +3113,4519,0,2,f +3113,6538a,7,2,f +3115,2447,46,1,f +3115,2586pr0005,71,1,f +3115,30169,297,1,f +3115,33085,14,1,f +3115,3626bpr0734,14,1,f +3115,3626bpr0735,15,1,f +3115,3626bpr0736,14,1,f +3115,3626bpr0738,14,1,f +3115,3626bpr0742,14,1,f +3115,41334,272,1,f +3115,50231,288,1,f +3115,64648,179,1,f +3115,87781,0,1,f +3115,87993,148,1,f +3115,87994,36,1,f +3115,88646,0,5,f +3115,93222,0,1,f +3115,93223,15,1,f +3115,93228pr0001,0,1,f +3115,93229,0,2,f +3115,93230pr0001,19,1,f +3115,93231,70,1,f +3115,970c00,191,1,f +3115,970c00,0,1,f +3115,970c00pr0186,70,1,f +3115,970c00pr0187,15,1,f +3115,970d12,0,1,f +3115,973pb0805c01,0,1,f +3115,973pr1704c01,288,1,f +3115,973pr1705c01,15,1,f +3115,973pr1707c01,73,1,f +3115,973pr1713c01,0,1,f +3116,2372c01,15,1,f +3116,2412b,4,2,f +3116,2437,41,2,f +3116,2450,15,2,f +3116,2547,8,1,f +3116,2548,8,1,f +3116,2584,4,1,f +3116,2585,0,1,f +3116,2610,14,2,f +3116,2614,0,1,f +3116,298c02,15,3,f +3116,3003,14,1,f +3116,3004,1,2,f +3116,3004,14,5,f +3116,3004,15,3,f +3116,3008,15,2,f +3116,3023,4,1,f +3116,3024,15,2,f +3116,3032,14,1,f +3116,3040b,15,4,f +3116,3460,15,2,f +3116,3622,15,2,f +3116,3624,15,1,f +3116,3626apr0001,14,2,f +3116,3660,15,4,f +3116,3794a,15,1,f +3116,3795,1,1,f +3116,3795,15,1,f +3116,3829c01,1,1,f +3116,3939,15,2,f +3116,3939,41,1,f +3116,4011stk01,9999,1,t +3116,4079,1,4,f +3116,4081b,4,1,f +3116,4213,15,2,f +3116,4286,15,6,f +3116,4315,15,2,f +3116,4485,1,1,f +3116,4599a,15,1,f +3116,4865a,15,2,f +3116,4865a,41,4,f +3116,56823c50,0,1,f +3116,6140,4,1,f +3116,6141,36,1,f +3116,6141,34,1,f +3116,6141,46,1,f +3116,6141,7,1,f +3116,73090b,4,1,f +3116,970c00,1,1,f +3116,970c00,15,1,f +3116,973p09c01,15,1,f +3116,973px61c01,15,1,f +3118,2476a,272,2,f +3118,2540,71,1,f +3118,2555,72,3,f +3118,30194,72,1,f +3118,30367bpr0001,72,2,f +3118,30374,71,4,f +3118,30376,72,1,f +3118,30383,0,6,f +3118,30386,379,12,f +3118,30386,0,3,f +3118,3068b,0,6,f +3118,3068b,379,6,f +3118,3068b,272,6,f +3118,3069b,272,2,f +3118,3069bps8,272,4,f +3118,32015,71,2,f +3118,32062,4,4,f +3118,32123b,19,1,t +3118,32123b,19,1,f +3118,32125,272,2,f +3118,32529,0,3,f +3118,3623,71,3,f +3118,3794a,72,5,f +3118,3942c,72,1,f +3118,4032a,71,1,f +3118,4085c,71,1,f +3118,41669,36,2,f +3118,4185,71,2,f +3118,44302a,272,6,f +3118,44822,71,2,f +3118,4519,71,1,f +3118,4589,72,1,f +3118,4589,36,4,f +3118,4740,57,3,f +3118,47456,379,6,f +3118,50747pr0001a,40,2,f +3118,51739,272,6,f +3118,51739,379,6,f +3118,52107,379,15,f +3118,52107,0,3,f +3118,6141,72,1,t +3118,6141,57,2,f +3118,6141,57,1,t +3118,6141,72,3,f +3118,6587,72,1,f +3118,7252stk01,9999,1,t +3120,29179,0,1,f +3120,3626cpr2086,320,1,f +3120,88646,0,1,f +3120,970c00pr1166,15,1,f +3120,973pr3628c01,0,1,f +3121,3626bpb0926,14,1,f +3121,88646,0,1,f +3121,93219pr0006,71,1,f +3121,970c00pb245,71,1,f +3121,973pb1400c01,71,1,f +3122,3626bpr0126,14,1,f +3122,3836,70,1,f +3122,4485,0,1,f +3122,970c00,2,1,f +3122,973pr1182c01,25,1,f +3124,2412b,1,2,f +3124,2412b,7,2,f +3124,2419,0,2,f +3124,2420,7,3,f +3124,2431,0,1,f +3124,2450,0,4,f +3124,2450,14,4,f +3124,2654,0,1,f +3124,2717,1,2,f +3124,2780,0,27,f +3124,2819,7,1,f +3124,2825,0,2,f +3124,2850a,7,2,f +3124,2851,8,2,f +3124,2852,7,2,f +3124,2853,7,2,f +3124,3020,7,1,f +3124,3020,0,2,f +3124,3021,0,4,f +3124,3022,0,1,f +3124,3022,14,2,f +3124,3023,14,2,f +3124,3023,0,2,f +3124,3024,14,4,f +3124,3065,36,2,f +3124,3069b,7,2,f +3124,3176,0,1,f +3124,32000,14,2,f +3124,32000,0,7,f +3124,32001,0,1,f +3124,3460,0,4,f +3124,3623,0,4,f +3124,3623,14,2,f +3124,3647,7,3,f +3124,3650c,7,1,f +3124,3665,14,4,f +3124,3666,0,2,f +3124,3666,14,3,f +3124,3666,7,2,f +3124,3700,0,6,f +3124,3701,7,3,f +3124,3701,0,1,f +3124,3702,14,4,f +3124,3702,0,6,f +3124,3703,14,2,f +3124,3703,0,2,f +3124,3704,0,2,f +3124,3705,0,8,f +3124,3706,0,3,f +3124,3707,0,1,f +3124,3710,7,2,f +3124,3710,0,3,f +3124,3710,14,2,f +3124,3713,7,5,f +3124,3737,0,1,f +3124,3749,7,3,f +3124,3794a,7,1,f +3124,3894,0,5,f +3124,3894,14,2,f +3124,3935,14,1,f +3124,3936,14,1,f +3124,4019,7,1,f +3124,4032a,0,1,f +3124,4175,7,2,f +3124,4261,7,2,f +3124,4263,0,1,f +3124,4263,7,2,f +3124,4265b,7,22,f +3124,4274,7,9,f +3124,4442,0,2,f +3124,4519,0,2,f +3124,4864a,7,1,f +3124,4865a,14,1,f +3124,6091,14,2,f +3124,6141,7,3,f +3124,6536,7,5,f +3124,6536,0,6,f +3124,6538b,7,1,f +3124,6541,7,4,f +3124,6541,0,4,f +3124,6558,0,8,f +3124,6573,8,1,f +3124,6575,7,2,f +3124,6579,0,4,f +3124,6580,15,4,f +3124,6587,8,5,f +3124,6589,7,7,f +3124,6630,7,1,f +3124,6632,0,2,f +3124,75c19,8,2,f +3124,8408stk01,9999,1,t +3126,tray03,15,1,f +3131,11618,26,1,f +3131,13965,70,1,f +3131,14769,19,1,f +3131,18852pr0001,15,1,f +3131,2423,27,1,f +3131,3020,27,1,f +3131,30565,27,1,f +3131,33291,10,3,f +3131,33291,26,1,f +3131,33303,15,1,f +3131,6141,4,1,f +3131,6141,85,1,f +3131,6141,14,1,f +3131,6141,25,1,f +3131,6141,29,1,f +3131,93092,191,1,f +3133,13523,15,1,f +3133,13535,70,1,f +3133,13799,484,1,f +3133,13804,322,1,f +3133,13880,484,1,f +3133,14222pr0002,297,1,f +3133,2302,10,2,f +3133,3437,10,1,f +3133,3437,27,2,f +3133,3437,71,1,f +3133,4066,2,1,f +3133,40666,71,1,f +3133,40666,14,1,f +3133,44524,14,1,f +3133,61649,4,1,f +3133,6474,484,1,f +3133,6510,2,1,f +3133,6510,10,1,f +3133,98218,322,1,f +3133,98459,70,1,f +3134,2780,0,49,f +3134,2780,0,1,t +3134,2825,0,1,f +3134,2905,0,4,f +3134,30395,72,1,f +3134,3069b,0,1,f +3134,32002,72,3,f +3134,32002,72,1,t +3134,32009,4,2,f +3134,32013,4,4,f +3134,32013,0,5,f +3134,32014,0,3,f +3134,32015,4,2,f +3134,32015,0,2,f +3134,32016,0,2,f +3134,32016,4,2,f +3134,32017,71,2,f +3134,32034,0,1,f +3134,32039,0,7,f +3134,32054,0,3,f +3134,32056,0,3,f +3134,32062,4,18,f +3134,32072,0,4,f +3134,32073,71,7,f +3134,32123b,71,1,t +3134,32123b,71,10,f +3134,32125,71,1,f +3134,32140,1,4,f +3134,32140,0,2,f +3134,32184,71,3,f +3134,32187,71,2,f +3134,32192,4,1,f +3134,32192,0,2,f +3134,32199,4,1,f +3134,32199,0,1,f +3134,32250,4,3,f +3134,32270,0,3,f +3134,32291,0,3,f +3134,32316,0,1,f +3134,32316,4,6,f +3134,32348,4,2,f +3134,32449,4,2,f +3134,32523,15,3,f +3134,32524,15,4,f +3134,32524,4,6,f +3134,32525,15,4,f +3134,32526,0,4,f +3134,32580,4,2,f +3134,3460,0,3,f +3134,3647,72,1,f +3134,3673,71,2,f +3134,3673,71,1,t +3134,3705,0,5,f +3134,3706,0,2,f +3134,3708,0,3,f +3134,3713,71,1,t +3134,3713,71,6,f +3134,3737,0,3,f +3134,3749,19,1,f +3134,40490,4,2,f +3134,41239,4,2,f +3134,4162,0,3,f +3134,41677,0,14,f +3134,41677,4,4,f +3134,41769,0,3,f +3134,42003,0,6,f +3134,42610,71,3,f +3134,4274,71,1,t +3134,4274,71,5,f +3134,43093,1,15,f +3134,43857,4,4,f +3134,44294,71,5,f +3134,4519,71,17,f +3134,4716,71,1,f +3134,51011,0,3,f +3134,56823c50,0,1,f +3134,58088,179,1,f +3134,59443,71,10,f +3134,60483,0,3,f +3134,60485,71,2,f +3134,6141,36,1,t +3134,6141,47,1,f +3134,6141,36,1,f +3134,6141,47,1,t +3134,61510,71,1,f +3134,62462,0,2,f +3134,62743,0,3,f +3134,64393,15,1,f +3134,64394,4,1,f +3134,64680,4,1,f +3134,64681,15,1,f +3134,6536,4,4,f +3134,6536,0,8,f +3134,6553,71,1,f +3134,6558,1,30,f +3134,6589,19,6,f +3134,6632,4,1,f +3134,6636,0,1,f +3134,75c08,0,1,f +3134,75c17,4,2,f +3134,87080,4,3,f +3134,87080,15,1,f +3134,87082,0,4,f +3134,87083,72,1,f +3134,87086,15,1,f +3134,87086,4,3,f +3134,87408,0,2,f +3135,2780,0,1,t +3135,2780,0,2,f +3135,32062,4,4,f +3135,4349,4,2,f +3135,4588,72,2,f +3135,4589,72,2,f +3135,48729b,71,1,f +3135,48729b,71,1,t +3135,53551,148,3,f +3135,54821,10,1,f +3135,64262,57,1,f +3135,87797,27,3,f +3135,87805,27,1,f +3135,90607,0,2,f +3135,90608,15,2,f +3135,90616,4,2,f +3135,90617,0,2,f +3135,90625,0,1,f +3135,90639,27,2,f +3135,90639,15,2,f +3135,90641,27,1,f +3135,90650,27,2,f +3135,93571,0,3,f +3135,93575,27,2,f +3135,98562,148,2,f +3135,98563,4,1,f +3135,98564,4,1,f +3135,98566,36,2,f +3135,98568p02,4,2,f +3135,98569pr0006,27,1,f +3135,98570pat01,15,1,f +3135,98571,27,2,f +3138,2340,7,4,f +3138,2357,7,2,f +3138,2362a,0,4,f +3138,2408,33,2,f +3138,2412b,1,1,f +3138,2412b,7,16,f +3138,2412b,0,6,f +3138,2419,0,4,f +3138,2420,0,2,f +3138,2431,7,4,f +3138,2431,0,2,f +3138,2436,0,1,f +3138,2444,7,2,f +3138,2444,0,5,f +3138,2445,7,2,f +3138,2446,47,1,f +3138,2446,14,2,f +3138,2446p51,14,1,f +3138,2447,33,3,f +3138,2452,0,2,f +3138,2453a,0,2,f +3138,2465,7,6,f +3138,2465,0,3,f +3138,2466,33,7,f +3138,2507,33,2,f +3138,2515,0,4,f +3138,2540,7,2,f +3138,2552p02,0,1,f +3138,2555,0,1,f +3138,2569,42,9,f +3138,2654,7,3,f +3138,2670,7,5,f +3138,2671,7,1,f +3138,2672,7,4,f +3138,2677,7,2,f +3138,2678,7,2,f +3138,2680,0,2,f +3138,2681,0,23,f +3138,2684c01b,15,1,f +3138,2686c01,0,2,f +3138,2687,0,2,f +3138,2744,0,2,f +3138,2744,7,2,f +3138,2774,7,2,f +3138,2780,0,2,f +3138,2880,0,2,f +3138,2889,7,1,f +3138,2890,7,1,f +3138,2891,7,1,f +3138,2892,7,1,f +3138,298c02,7,2,f +3138,3001,7,2,f +3138,3001,0,1,f +3138,3002,0,2,f +3138,3002,7,2,f +3138,3003,0,2,f +3138,3003,7,2,f +3138,3004,0,3,f +3138,3004,7,10,f +3138,3007,7,1,f +3138,3008,7,4,f +3138,3008,0,3,f +3138,3009,0,2,f +3138,3010,7,2,f +3138,3020,7,1,f +3138,3020,0,3,f +3138,3022,7,4,f +3138,3022,0,10,f +3138,3022,1,2,f +3138,3023,7,8,f +3138,3023,0,18,f +3138,3023,1,20,f +3138,3024,0,2,f +3138,3027,0,1,f +3138,3030,0,1,f +3138,3032,7,1,f +3138,3032,0,1,f +3138,3034,0,2,f +3138,3035,0,3,f +3138,3039,7,2,f +3138,3039,0,5,f +3138,3039pc1,0,4,f +3138,3039pc7,0,1,f +3138,3040b,7,4,f +3138,3040b,0,2,f +3138,3068b,0,3,f +3138,3068bp00,0,2,f +3138,3069bp017,0,3,f +3138,3069bp08,15,1,f +3138,3069bp21,0,2,f +3138,3176,7,1,f +3138,3297,7,2,f +3138,3298,7,3,f +3138,3298,0,2,f +3138,3300,1,3,f +3138,3403c01,0,2,f +3138,3460,0,4,f +3138,3460,1,4,f +3138,3475b,1,6,f +3138,3479,7,2,f +3138,3482,0,1,f +3138,3623,0,6,f +3138,3623,1,4,f +3138,3626bp63,0,1,f +3138,3626bp68,14,1,f +3138,3626bp69,14,2,f +3138,3634,0,1,f +3138,3660,7,1,f +3138,3666,0,4,f +3138,3673,7,4,f +3138,3710,0,38,f +3138,3710,7,3,f +3138,3713,7,3,f +3138,3737,0,2,f +3138,3738,0,2,f +3138,3747b,0,1,f +3138,3794a,7,6,f +3138,3794a,0,1,f +3138,3795,0,2,f +3138,3829c01,7,1,f +3138,3832,7,1,f +3138,3838,1,3,f +3138,3839b,1,1,f +3138,3839b,0,1,f +3138,3857,0,2,f +3138,3940b,0,4,f +3138,3941,0,2,f +3138,3942b,7,2,f +3138,3943b,0,1,f +3138,3956,0,2,f +3138,3959,0,2,f +3138,3959,7,2,f +3138,3960,33,4,f +3138,3963,1,2,f +3138,3963,0,2,f +3138,4032a,1,2,f +3138,4032a,7,7,f +3138,4070,0,4,f +3138,4081b,0,2,f +3138,4081b,7,2,f +3138,4085c,0,1,f +3138,4150,0,1,f +3138,4151a,0,4,f +3138,4162,7,6,f +3138,4162,0,4,f +3138,4162,1,4,f +3138,4229,0,1,f +3138,4265b,7,1,f +3138,4275b,1,2,f +3138,4276b,0,2,f +3138,4282,0,2,f +3138,4285a,0,1,f +3138,4286,7,1,f +3138,4315,0,2,f +3138,4476b,7,6,f +3138,4477,0,3,f +3138,4589,42,2,f +3138,4590,0,3,f +3138,4596,7,2,f +3138,4730,7,1,f +3138,4733,7,2,f +3138,4740,42,5,f +3138,4740,33,3,f +3138,4760c01,0,1,f +3138,4771,0,1,f +3138,4859,0,1,f +3138,5306bc015,0,1,f +3138,6019,0,3,f +3138,6019,1,4,f +3138,6061,0,1,f +3138,6082,8,1,f +3138,6083,8,1,f +3138,6087,0,1,f +3138,6104,0,2,f +3138,6111,0,2,f +3138,6111,7,2,f +3138,6141,42,8,f +3138,6153a,7,2,f +3138,6541,0,2,f +3138,6991stk01,9999,1,t +3138,73590c01a,7,2,f +3138,9244,7,1,f +3138,970c00pb019,4,1,f +3138,970x024,7,2,f +3138,973p63c01,4,1,f +3138,973p64c01,8,3,f +3139,10928,72,1,f +3139,11214,72,5,f +3139,11478,0,4,f +3139,11946,25,1,f +3139,11947,25,1,f +3139,15100,0,13,f +3139,15379,0,2,t +3139,15379,0,46,f +3139,15458,72,1,f +3139,15461,0,2,f +3139,15462,70,2,f +3139,18575,19,2,f +3139,18651,0,3,f +3139,18654,72,1,t +3139,18654,72,1,f +3139,21709,0,1,f +3139,2736,71,1,f +3139,2780,0,57,f +3139,2780,0,2,t +3139,27938,72,1,f +3139,27940,72,1,f +3139,2825,25,2,f +3139,3023,25,2,f +3139,3023,47,2,f +3139,3024,25,2,f +3139,3024,25,1,t +3139,30552,0,1,f +3139,3069b,25,2,f +3139,32002,19,2,f +3139,32002,19,2,t +3139,32013,71,5,f +3139,32034,0,1,f +3139,32039,0,2,f +3139,32056,71,2,f +3139,32056,0,2,f +3139,32062,4,4,f +3139,32063,71,1,f +3139,32073,14,2,f +3139,32123b,71,1,t +3139,32123b,71,4,f +3139,32140,71,4,f +3139,32270,0,2,f +3139,32316,71,7,f +3139,32316,25,3,f +3139,32316,0,1,f +3139,32523,0,3,f +3139,32523,71,3,f +3139,32523pr0001,15,1,f +3139,32524,25,8,f +3139,32524,71,5,f +3139,32525,71,4,f +3139,32526,72,2,f +3139,32526,25,2,f +3139,32556,19,4,f +3139,33299a,0,4,f +3139,3673,71,2,t +3139,3673,71,6,f +3139,3705,0,3,f +3139,3706,4,1,f +3139,3713,4,2,t +3139,3713,4,2,f +3139,3749,19,4,f +3139,3836,70,1,f +3139,3837,72,1,f +3139,40490,25,2,f +3139,40490,0,2,f +3139,41239,0,3,f +3139,42003,71,9,f +3139,42610,71,2,f +3139,4274,1,1,t +3139,4274,1,5,f +3139,43093,1,10,f +3139,44294,71,2,f +3139,4519,71,4,f +3139,48989,71,4,f +3139,54200,47,2,f +3139,54200,47,1,t +3139,55981,0,4,f +3139,58090,0,4,f +3139,58176,182,1,f +3139,59443,71,3,f +3139,60483,25,6,f +3139,60484,71,2,f +3139,6141,36,2,f +3139,6141,36,1,t +3139,62462,0,1,f +3139,63869,71,1,f +3139,6536,0,1,f +3139,6558,1,23,f +3139,6632,0,3,f +3139,87080,25,1,f +3139,87082,71,1,f +3139,87083,72,4,f +3139,87086,25,1,f +3139,92409,0,2,f +3139,92907,71,3,f +3139,94925,71,4,f +3139,99773,71,2,f +3140,122c02,0,7,f +3140,2340,1,2,f +3140,2357,15,20,f +3140,2432,1,1,f +3140,2436,4,2,f +3140,2446,0,4,f +3140,2446,14,4,f +3140,2447,41,4,f +3140,2447,36,4,f +3140,2454a,15,4,f +3140,2466,33,4,f +3140,2466p07,15,9,f +3140,2467,15,4,f +3140,2468,33,10,f +3140,2580c01,4,4,f +3140,3001,1,2,f +3140,3002,4,1,f +3140,3003,15,12,f +3140,3004,4,5,f +3140,3004,15,16,f +3140,3004,1,19,f +3140,3005,15,4,f +3140,3005,4,2,f +3140,3005,1,3,f +3140,3006,1,1,f +3140,3007,1,1,f +3140,3008,1,3,f +3140,3008,15,3,f +3140,3009,1,3,f +3140,3009,15,10,f +3140,3009,4,2,f +3140,3010,1,13,f +3140,3010p08,1,2,f +3140,3010p09,1,1,f +3140,3020,1,4,f +3140,3020,15,4,f +3140,3021,4,4,f +3140,3021,15,5,f +3140,3022,15,7,f +3140,3022,4,1,f +3140,3023,4,1,f +3140,3023,1,3,f +3140,3023,15,4,f +3140,3028,15,6,f +3140,3031,1,1,f +3140,3032,4,2,f +3140,3032,15,1,f +3140,3034,4,3,f +3140,3034,15,1,f +3140,3037,1,4,f +3140,3039,47,3,f +3140,3039,1,10,f +3140,3039p05,15,2,f +3140,3039pb007,1,4,f +3140,3040b,15,6,f +3140,3040b,1,12,f +3140,3062b,14,12,f +3140,3062b,34,2,f +3140,3062b,4,2,f +3140,3062b,36,11,f +3140,3062b,7,16,f +3140,3062b,1,2,f +3140,3062b,15,6,f +3140,3063b,15,20,f +3140,3068b,4,1,f +3140,3068bp07,15,4,f +3140,3298,15,4,f +3140,3298,1,2,f +3140,3475b,7,2,f +3140,3622,4,4,f +3140,3622,15,4,f +3140,3622,1,7,f +3140,3623,15,2,f +3140,3626apr0001,14,8,f +3140,3633,4,2,f +3140,3660,1,7,f +3140,3660,15,8,f +3140,3665,1,4,f +3140,3665,15,10,f +3140,3666,15,1,f +3140,3676,15,2,f +3140,3679,7,2,f +3140,3680,4,2,f +3140,3710,15,1,f +3140,3730,0,1,f +3140,3731,0,1,f +3140,3747b,15,1,f +3140,3795,15,1,f +3140,3811,7,1,f +3140,3821,1,2,f +3140,3822,1,2,f +3140,3823,41,5,f +3140,3838,0,4,f +3140,3838,14,4,f +3140,3853,1,3,f +3140,3856,15,6,f +3140,3933,15,2,f +3140,3934,15,2,f +3140,3941,1,2,f +3140,3941,15,3,f +3140,3942b,15,1,f +3140,3957a,4,5,f +3140,4032a,4,1,f +3140,4032a,15,3,f +3140,4070,1,6,f +3140,4081b,4,4,f +3140,4084,0,14,f +3140,4175,15,1,f +3140,4229,7,2,f +3140,4275b,1,2,f +3140,4275b,4,2,f +3140,4285a,7,1,f +3140,4286,1,2,f +3140,4476b,15,4,f +3140,4531,1,2,f +3140,4531,4,2,f +3140,4588,7,6,f +3140,4589,14,4,f +3140,4589,7,2,f +3140,4589,4,2,f +3140,4589,15,3,f +3140,4591,15,1,f +3140,4740,36,2,f +3140,4854,15,1,f +3140,4872,41,3,f +3140,6007,8,2,f +3140,608p03,7,2,f +3140,6099p03,7,1,f +3140,970c00,2,4,f +3140,970x026,14,4,f +3140,973p6bc02,15,4,f +3140,973p6dc01,15,4,f +3141,298c02,15,1,t +3141,298c02,15,2,f +3141,3004,2,1,f +3141,3005pe1,15,2,f +3141,3020,70,1,f +3141,3021,70,1,f +3141,3022,1,1,f +3141,3023,4,1,f +3141,3023,70,5,f +3141,3024,4,1,f +3141,3024,70,5,f +3141,30367b,15,1,f +3141,30367b,14,1,f +3141,30367b,27,1,f +3141,3039,70,1,f +3141,3040b,70,8,f +3141,3070b,70,5,f +3141,3070b,19,1,f +3141,3070b,19,1,t +3141,3070b,70,1,t +3141,3623,70,2,f +3141,3623,72,2,f +3141,3660,70,1,f +3141,3665,70,4,f +3141,3679,71,1,f +3141,3680,0,1,f +3141,3700,70,1,f +3141,3710,72,2,f +3141,3710,70,5,f +3141,3794b,70,5,f +3141,4032a,19,1,f +3141,4032a,4,1,f +3141,4032a,1,2,f +3141,4032a,70,1,f +3141,4032a,15,2,f +3141,4032a,14,1,f +3141,4032a,27,1,f +3141,4070,70,4,f +3141,4081b,71,1,f +3141,4150,19,1,f +3141,4274,71,1,f +3141,4274,71,1,t +3141,44728,19,1,f +3141,4728,15,1,f +3141,54200,72,4,f +3141,54200,70,3,f +3141,54200,70,1,t +3141,54200,72,1,t +3141,6141,36,1,t +3141,6141,15,1,f +3141,6141,19,2,f +3141,6141,36,1,f +3141,6141,19,1,t +3141,6141,15,1,t +3141,63868,0,2,f +3141,87087,19,1,f +3141,92692,0,1,f +3142,3711a,0,100,f +3143,15,1,5,f +3143,17,1,5,f +3143,21,47,1,f +3143,3001a,0,7,f +3143,3001a,4,2,f +3143,3003,15,3,f +3143,3003,4,4,f +3143,3003,14,1,f +3143,3004,14,6,f +3143,3004,4,34,f +3143,3004,0,16,f +3143,3005,0,5,f +3143,3005,4,12,f +3143,3008,4,2,f +3143,3008,0,2,f +3143,3009,0,16,f +3143,3009,47,2,f +3143,3009,4,7,f +3143,3010,0,9,f +3143,3010,4,9,f +3143,3020,14,2,f +3143,3020,0,2,f +3143,3022,14,1,f +3143,3024,4,4,f +3143,3027,0,2,f +3143,3028,0,1,f +3143,3030,0,1,f +3143,3031,4,1,f +3143,3033,0,1,f +3143,3034,14,3,f +3143,3035,14,1,f +3143,3036,0,1,f +3143,3039,47,2,f +3143,3039,14,2,f +3143,3040a,0,14,f +3143,3062a,4,2,f +3143,3062a,1,2,f +3143,3081cc01,15,8,f +3143,3144,79,1,f +3143,3183b,15,1,f +3143,3184,15,1,f +3143,3359,0,1,f +3143,3460,7,4,f +3143,3461,7,1,f +3143,3462,14,1,f +3143,3475a,7,8,f +3143,3480,7,4,f +3143,3481,14,3,f +3143,3481,4,1,f +3143,3579,4,1,f +3143,3624,15,5,f +3143,3626a,14,5,f +3143,3633,15,14,f +3143,3645p02,1,1,f +3143,3659,4,2,f +3143,3660a,4,4,f +3143,3660a,14,15,f +3143,420,14,1,f +3143,7930,15,1,f +3144,2362b,7,1,f +3144,2412b,7,6,f +3144,2412b,0,4,f +3144,2445,0,2,f +3144,2454a,19,4,f +3144,2456,0,2,f +3144,2456,6,4,f +3144,2540,8,7,f +3144,2555,0,2,f +3144,2653,0,6,f +3144,2654,7,14,f +3144,2873,6,4,f +3144,3001,6,3,f +3144,3003,6,2,f +3144,3003,4,7,f +3144,3004,19,41,f +3144,3006,15,1,f +3144,3008,8,7,f +3144,3009,6,2,f +3144,3010,19,13,f +3144,3021,8,1,f +3144,3023,19,3,f +3144,30237a,8,4,f +3144,3030,6,8,f +3144,3033,8,6,f +3144,3034,2,3,f +3144,3035,8,4,f +3144,30357,19,4,f +3144,30359a,8,4,f +3144,30360,0,2,f +3144,30363,8,6,f +3144,30365,8,6,f +3144,30366,6,1,f +3144,3037,6,2,f +3144,30375,19,7,f +3144,30376,19,7,f +3144,30377,19,1,t +3144,30377,19,14,f +3144,30378,19,7,f +3144,30384,6,2,f +3144,3039,6,20,f +3144,3039pc0,8,3,f +3144,3040b,6,22,f +3144,3045,8,4,f +3144,3048c,7,1,f +3144,3062b,4,4,f +3144,3065,47,1,f +3144,3068b,0,4,f +3144,32028,2,2,f +3144,3460,19,13,f +3144,3623,7,2,f +3144,3660,0,20,f +3144,3660,8,4,f +3144,3665,7,4,f +3144,3666,0,3,f +3144,3684,8,10,f +3144,3685,8,4,f +3144,3700,4,2,f +3144,3795,19,4,f +3144,3830,7,4,f +3144,3831,7,4,f +3144,3832,7,5,f +3144,3832,6,1,f +3144,3849,8,2,f +3144,3956,7,5,f +3144,3957a,0,2,f +3144,3957a,57,4,f +3144,3959,7,2,f +3144,4070,7,6,f +3144,4213,8,1,f +3144,4286,7,2,f +3144,4315,0,4,f +3144,4349,0,6,f +3144,4445,8,2,f +3144,4460a,8,6,f +3144,4477,0,7,f +3144,4598,0,1,f +3144,4625,7,1,f +3144,4735,0,4,f +3144,4865a,7,4,f +3144,6111,6,14,f +3144,6141,0,8,f +3144,6141,57,1,t +3144,6141,57,12,f +3144,6141,0,1,t +3144,6232,4,2,f +3144,6636,7,1,f +3144,76385,6,6,f +3146,2352,4,1,f +3146,2456,4,2,f +3146,2456,1,2,f +3146,2577,1,4,f +3146,3001,1,8,f +3146,3001,14,8,f +3146,3001,0,4,f +3146,3001,15,6,f +3146,3001,4,8,f +3146,3001pr1,14,1,f +3146,3002,14,4,f +3146,3002,0,2,f +3146,3002,1,4,f +3146,3002,4,4,f +3146,3002,15,2,f +3146,3003,4,16,f +3146,3003,14,14,f +3146,3003,15,10,f +3146,3003,1,16,f +3146,3003,0,6,f +3146,3003pe2,14,2,f +3146,3007,14,2,f +3146,30072,2,1,f +3146,3185,14,4,f +3146,3483,0,4,f +3146,4180c02,4,2,f +3146,4727,2,4,f +3146,4728,15,1,f +3146,4728,1,1,f +3146,4728,4,1,f +3146,4728,14,1,f +3146,4743,1,1,f +3146,4744,4,1,f +3146,4744pr0001,0,1,f +3146,4744px1,6,1,f +3146,4744px4,1,1,f +3146,4745,4,1,f +3146,600,14,1,f +3146,601,14,4,f +3146,6212,4,1,f +3146,6213p02,4,1,f +3146,6214px1,2,1,f +3146,6215,14,8,f +3146,6215,1,4,f +3146,6215,4,4,f +3146,6215,2,4,f +3146,6216,4,1,f +3146,6216,14,2,f +3146,6216,1,1,f +3146,6216,2,2,f +3146,6232,14,1,f +3146,6235,4,1,f +3146,6236,4,2,f +3146,82248,1,1,f +3146,82249,15,1,f +3149,32062,0,2,f +3149,32174,72,6,f +3149,32533pb437,21,1,f +3149,32553,72,1,f +3149,32554,41,1,f +3149,32575pb01,15,1,f +3149,41668,15,2,f +3149,43093,1,7,f +3149,47295,15,1,f +3149,47300,72,4,f +3149,47304,179,1,f +3149,6553,0,1,f +3149,6558,0,2,f +3150,2339,0,1,f +3150,2362a,0,1,f +3150,2417,2,2,f +3150,2420,0,1,f +3150,2431,7,1,f +3150,2546,8,1,f +3150,2588,21,1,f +3150,3004,0,1,f +3150,3004,15,1,f +3150,3005,0,1,f +3150,3008,0,1,f +3150,3023,15,1,f +3150,3023,0,1,f +3150,3040b,0,2,f +3150,3068b,7,2,f +3150,3622,0,2,f +3150,3626b,0,1,f +3150,3626bp49,14,1,f +3150,3794a,0,1,f +3150,3795,0,1,f +3150,3832,2,2,f +3150,3846p44,7,1,f +3150,3847,8,1,f +3150,4085c,0,1,f +3150,4497,6,1,f +3150,4505,0,1,f +3150,4524,4,1,f +3150,4623,0,1,f +3150,6083,8,1,f +3150,970x021,0,1,f +3150,973c09,15,1,f +3150,973p44c01,6,1,f +3151,3008pb015,15,1,f +3151,3009apb23,15,1,f +3151,3009apb44a,15,1,f +3151,3009pb030,15,1,f +3151,3009pb031,15,1,f +3151,3009pb036,15,1,f +3151,3009pb081,15,1,f +3151,3009pte,15,1,f +3152,2780,0,3,f +3152,30173a,3,2,f +3152,30374,36,2,f +3152,32013,0,2,f +3152,32013,19,1,f +3152,32016,19,2,f +3152,32016,0,2,f +3152,32017,0,2,f +3152,32034,7,1,f +3152,32039,0,1,f +3152,32054,0,2,f +3152,32056,27,2,f +3152,32056,8,2,f +3152,32062,0,10,f +3152,32065,19,1,f +3152,32068,0,1,f +3152,32073,0,4,f +3152,32123b,7,6,f +3152,32138,0,2,f +3152,32165,0,2,f +3152,32172,0,2,f +3152,32173,14,2,f +3152,32174,0,2,f +3152,32184,0,1,f +3152,32271,27,2,f +3152,32291,27,2,f +3152,32305,8,1,f +3152,32305,14,1,f +3152,32305,0,1,f +3152,32306,0,2,f +3152,32307,0,4,f +3152,32308,0,1,f +3152,32310pb01,15,1,f +3152,32310pb02,27,1,f +3152,32310pb03,14,1,f +3152,32311,15,2,f +3152,32311,0,2,f +3152,32348,19,1,f +3152,32439a,8,1,f +3152,32439a,3,2,f +3152,32439a,21,2,f +3152,32439a,14,2,f +3152,32439a,41,2,f +3152,3647,15,1,f +3152,3647,0,1,f +3152,3648b,15,1,f +3152,3705,0,8,f +3152,3706,0,5,f +3152,3707,0,2,f +3152,3713,7,4,f +3152,3737,0,1,f +3152,3749,7,2,f +3152,4274,7,2,f +3152,4497,41,2,f +3152,4519,0,5,f +3152,4589,57,2,f +3152,4716,15,1,f +3152,4716,0,2,f +3152,57467,383,2,f +3152,6536,0,2,f +3152,6536,15,2,f +3152,6538b,3,1,f +3152,6538b,14,1,f +3152,6538b,0,2,f +3152,6538b,19,1,f +3152,6628,0,2,f +3152,71509,0,2,f +3152,78c07,15,2,f +3152,rb00168,0,2,f +3152,rb00182,27,1,f +3152,rb00182,0,1,f +3152,rb00182,19,1,f +3152,rb00182,14,1,f +3152,rb00182,15,1,f +3152,x209pb03,0,1,f +3152,x209pw1,0,1,f +3153,1817stk01,9999,1,t +3153,2412b,0,2,f +3153,2412b,15,2,f +3153,2413,15,2,f +3153,2431,15,2,f +3153,2435,2,1,f +3153,2444,7,1,f +3153,2454a,7,2,f +3153,2489,6,1,f +3153,2524,6,1,f +3153,2542,4,1,f +3153,2610,14,2,f +3153,2614,0,1,f +3153,2877,7,6,f +3153,3001,7,1,f +3153,3003,7,1,f +3153,3004,15,1,f +3153,3004,4,1,f +3153,3004,7,1,f +3153,3005,7,4,f +3153,3005,15,2,f +3153,3010,15,1,f +3153,3020,4,4,f +3153,3020,15,1,f +3153,3023,4,4,f +3153,3023,15,2,f +3153,3023,7,1,f +3153,3028,2,1,f +3153,3029,2,1,f +3153,3034,4,1,f +3153,3039pc5,7,1,f +3153,3062b,0,2,f +3153,3070b,36,1,t +3153,3070b,36,1,f +3153,3070b,34,1,f +3153,3070b,34,1,t +3153,3081cc01,4,1,f +3153,3460,0,1,f +3153,3474,15,1,f +3153,3479,15,3,f +3153,3587,15,1,f +3153,3622,7,5,f +3153,3626bp04,14,3,f +3153,3660,15,4,f +3153,3665,0,1,f +3153,3666,4,2,f +3153,3673,7,1,f +3153,3710,15,1,f +3153,3710,4,2,f +3153,3747a,15,2,f +3153,3795,15,1,f +3153,3835,0,1,f +3153,3837,8,1,f +3153,3839b,0,1,f +3153,3861b,4,1,f +3153,3899,4,2,f +3153,4032a,6,1,f +3153,4081b,7,1,f +3153,4315,15,1,f +3153,4449,0,1,f +3153,4474,41,1,f +3153,4485,15,1,f +3153,4485,4,1,f +3153,4485,1,1,f +3153,4515,0,1,f +3153,4528,0,1,f +3153,4617b,0,1,f +3153,4740,8,1,f +3153,4855,15,2,f +3153,4856a,4,1,f +3153,4856a,15,2,f +3153,4858,15,2,f +3153,4859,4,5,f +3153,4865a,15,4,f +3153,4871,15,1,f +3153,6141,4,3,f +3153,6141,57,4,f +3153,6141,57,1,t +3153,6141,4,1,t +3153,970c00,0,2,f +3153,970c00,1,1,f +3153,973c11,0,1,f +3153,973p70c01,6,1,f +3153,973p73c01,2,1,f +3153,rb00164,0,1,f +3154,2711,0,1,f +3154,2712,7,2,f +3154,3749,7,21,f +3156,164c01,1,3,f +3156,185c01,1,6,f +3156,3001,1,2,f +3156,3001,14,2,f +3156,3001,15,12,f +3156,3001,4,2,f +3156,3002,15,6,f +3156,3003,4,2,f +3156,3003,14,2,f +3156,3003,1,2,f +3156,3003,15,4,f +3156,3004,4,12,f +3156,3004,15,20,f +3156,3004,14,12,f +3156,3004,1,12,f +3156,3005,15,12,f +3156,3005,47,14,f +3156,3009,15,4,f +3156,3010,14,6,f +3156,3010,15,12,f +3156,3010,1,6,f +3156,3010,4,6,f +3156,3020,15,2,f +3156,3021,15,2,f +3156,3021,0,2,f +3156,3022,0,2,f +3156,3022,15,2,f +3156,3031,15,4,f +3156,3032,15,4,f +3156,3039,15,4,f +3156,3062b,15,6,f +3156,3062b,46,6,f +3156,3062b,36,3,f +3156,3062b,34,3,f +3156,3127,4,1,f +3156,3622,15,6,f +3156,3633,14,2,f +3156,3633,1,2,f +3156,3633,4,2,f +3156,3660,15,4,f +3156,3684,1,1,f +3156,3684,4,1,f +3156,3684,14,1,f +3156,3710,15,4,f +3156,4208,0,1,f +3156,4209,15,1,f +3156,4284,47,3,f +3156,56823,0,1,f +3156,997c01,1,3,f +3156,x149,0,6,f +3157,48379c01,272,1,f +3157,basketball01,9999,1,f +3157,basketball02l,14,1,f +3157,mcsport8,2,1,f +3159,12602,135,2,f +3159,3011,14,2,f +3159,3011,15,1,f +3159,40643,135,1,f +3159,40644,135,1,f +3159,40666,15,1,f +3159,41169c01,179,1,f +3159,44538,151,1,f +3159,47411,14,1,f +3159,47424,14,1,f +3159,47509,135,1,f +3159,47517pr0003c02,0,1,f +3159,48125c03,15,1,f +3159,51268,179,1,f +3159,51273,135,1,f +3159,51703,41,1,f +3159,54035,135,1,f +3159,55007,0,1,f +3159,58498,0,1,f +3159,6426,135,1,f +3159,6428,15,3,f +3159,75084,15,3,f +3160,2436,4,2,f +3160,2540,8,1,f +3160,2542,4,1,f +3160,2555,0,2,f +3160,30137,6,3,f +3160,30173a,7,1,f +3160,30177,0,1,f +3160,3062b,8,1,f +3160,3626bpx5,14,1,f +3160,3710,0,1,f +3160,3794a,7,1,f +3160,4085c,4,4,f +3160,4497,6,2,f +3160,4499,6,1,f +3160,6019,7,1,f +3160,970c00,0,1,f +3160,973px11c01,0,1,f +3161,2542,70,1,f +3161,3002,15,2,f +3161,3004,15,1,f +3161,30237a,15,1,f +3161,3068b,0,1,f +3161,3659,15,2,f +3161,4864b,0,1,f +3161,6215,15,2,f +3165,2357,320,4,f +3165,2412b,71,17,f +3165,2412b,320,15,f +3165,2412b,72,4,f +3165,2419,72,1,f +3165,2420,320,2,f +3165,2431,72,4,f +3165,2431,320,12,f +3165,2432,71,3,f +3165,2437,40,1,f +3165,2444,4,4,f +3165,2444,0,11,f +3165,2445,72,1,f +3165,2450,72,4,f +3165,2456,72,1,f +3165,2460,72,3,f +3165,2462,71,2,f +3165,2476a,71,2,f +3165,2569,71,1,f +3165,2654,4,12,f +3165,2654,46,4,f +3165,2780,0,6,t +3165,2780,0,38,f +3165,2877,72,18,f +3165,2877,71,2,f +3165,298c02,71,2,f +3165,298c02,71,1,t +3165,3001,71,4,f +3165,3002,71,2,f +3165,3004,320,6,f +3165,3005,71,2,f +3165,3005,320,2,f +3165,3007,4,1,f +3165,3009,71,13,f +3165,3010,71,5,f +3165,3010,72,7,f +3165,30136,19,1,f +3165,30162,72,1,f +3165,3020,71,6,f +3165,3020,320,13,f +3165,3021,0,12,f +3165,3021,71,1,f +3165,3022,71,10,f +3165,3023,72,7,f +3165,3023,28,11,f +3165,3023,320,12,f +3165,3023,71,11,f +3165,3024,320,4,f +3165,3029,0,2,f +3165,3029,71,2,f +3165,30304,72,1,f +3165,3031,14,6,f +3165,3031,72,2,f +3165,3032,71,7,f +3165,3034,71,1,f +3165,3034,72,1,f +3165,3036,0,2,f +3165,30364,0,4,f +3165,30365,71,4,f +3165,30367b,72,5,f +3165,30374,35,3,f +3165,30377,71,1,t +3165,30377,71,1,f +3165,3039,4,1,f +3165,3040b,71,3,f +3165,30414,72,4,f +3165,30503,71,10,f +3165,30504,71,4,f +3165,30504,72,2,f +3165,30540,0,6,f +3165,30562,71,16,f +3165,30565,72,16,f +3165,30565,320,12,f +3165,3062b,320,9,f +3165,3062bpr37,41,1,f +3165,3065,46,4,f +3165,3066,40,3,f +3165,3068b,28,12,f +3165,3068b,320,1,f +3165,3069b,320,6,f +3165,3070b,72,2,f +3165,3070b,72,1,t +3165,3176,320,2,f +3165,32000,71,7,f +3165,32001,71,1,f +3165,32013,72,2,f +3165,32016,71,2,f +3165,32054,4,10,f +3165,32062,4,2,f +3165,32064b,72,2,f +3165,32073,71,3,f +3165,32123b,14,1,t +3165,32123b,14,4,f +3165,32140,71,2,f +3165,32316,71,2,f +3165,32324,71,2,f +3165,32524,0,8,f +3165,32525,71,2,f +3165,32530,72,8,f +3165,32531,0,1,f +3165,3297,71,5,f +3165,3298,72,1,f +3165,3460,71,4,f +3165,3622,72,7,f +3165,3623,71,2,f +3165,3623,72,4,f +3165,3626bpr0525,78,1,f +3165,3626bpr0818,84,1,f +3165,3626bpr0819,92,1,f +3165,3626bpr0839,78,1,f +3165,3660,72,4,f +3165,3660,71,8,f +3165,3665,71,4,f +3165,3666,4,6,f +3165,3666,320,7,f +3165,3666,72,8,f +3165,3679,71,1,f +3165,3680,4,1,f +3165,3701,4,3,f +3165,3701,0,1,f +3165,3702,4,2,f +3165,3703,72,4,f +3165,3705,0,3,f +3165,3710,72,2,f +3165,3710,320,17,f +3165,3710,71,3,f +3165,3713,4,1,t +3165,3713,4,2,f +3165,3713,71,1,f +3165,3713,71,1,t +3165,3737,0,1,f +3165,3747b,71,8,f +3165,3794b,71,4,f +3165,3794b,320,4,f +3165,3795,28,3,f +3165,3894,0,2,f +3165,3894,71,2,f +3165,3895,71,6,f +3165,3943b,72,1,f +3165,3958,72,2,f +3165,3958,71,5,f +3165,3960,320,2,f +3165,40251,0,1,f +3165,4032a,0,2,f +3165,4032a,4,1,f +3165,4070,71,4,f +3165,4081b,72,1,f +3165,4150,71,2,f +3165,4150,19,2,f +3165,4150pr0022,71,2,f +3165,41539,71,2,f +3165,4162,320,2,f +3165,41677,0,2,f +3165,41769,72,1,f +3165,41770,72,1,f +3165,41770,71,1,f +3165,41879a,19,1,f +3165,42022,72,2,f +3165,42023,71,2,f +3165,42446,72,4,f +3165,42610,71,2,f +3165,4274,1,2,f +3165,4274,71,14,f +3165,4274,71,3,t +3165,4274,1,1,t +3165,4282,71,2,f +3165,4286,72,2,f +3165,4287,71,2,f +3165,43093,1,8,f +3165,43337,71,2,f +3165,43719,320,1,f +3165,43720,72,4,f +3165,43721,72,4,f +3165,43898,72,3,f +3165,44301a,4,2,f +3165,44302a,71,4,f +3165,44375a,71,3,f +3165,44567a,0,4,f +3165,44568,71,2,f +3165,45677,320,4,f +3165,4740,71,4,f +3165,47543,71,2,f +3165,47974,71,1,f +3165,48092,71,12,f +3165,4865b,71,7,f +3165,52107,4,4,f +3165,54200,320,2,t +3165,54200,320,5,f +3165,54383,72,2,f +3165,54384,72,2,f +3165,58247,0,1,f +3165,59443,0,1,f +3165,59900,71,24,f +3165,60470a,71,5,f +3165,60474,320,3,f +3165,60474,71,2,f +3165,60478,71,11,f +3165,60479,71,2,f +3165,60479,0,1,f +3165,60483,71,2,f +3165,60484,72,2,f +3165,60897,4,4,f +3165,6091,71,4,f +3165,6106,71,4,f +3165,61184,71,4,f +3165,61189pr0009,15,2,f +3165,61189pr0010,15,1,f +3165,61190a,0,1,f +3165,61190b,0,1,f +3165,61190c,0,1,f +3165,61190f,0,2,f +3165,6141,41,1,t +3165,6141,71,4,f +3165,6141,46,2,t +3165,6141,46,4,f +3165,6141,80,1,t +3165,6141,80,1,f +3165,6141,72,20,f +3165,6141,71,2,t +3165,6141,72,4,t +3165,6141,41,14,f +3165,61485,0,2,f +3165,61678,71,2,f +3165,61780,72,1,f +3165,6179,71,3,f +3165,6190,72,1,f +3165,6191,320,2,f +3165,63585,0,2,f +3165,63586,0,2,f +3165,63868,0,2,f +3165,63965,71,6,f +3165,64567,80,3,f +3165,64799,71,1,f +3165,64802,15,1,f +3165,64804pr01,378,1,f +3165,6558,1,12,f +3165,6628,0,4,f +3165,6632,0,2,f +3165,6636,28,4,f +3165,6636,71,6,f +3165,6636,72,2,f +3165,7964stk01,9999,1,t +3165,85080,71,12,f +3165,85984,71,4,f +3165,87083,72,1,f +3165,87408,0,1,f +3165,87618,71,8,f +3165,92280,71,14,f +3165,92280,0,2,f +3165,92593,0,3,f +3165,92760pr0001,0,1,f +3165,93274,71,2,f +3165,970c00,28,1,f +3165,970c00,0,1,f +3165,970c00pr0239,379,2,f +3165,973pr1458c01,19,1,f +3165,973pr1812c01,28,1,f +3165,973pr1813c01,308,1,f +3165,973pr1814c01,15,2,f +3166,11439pat0002,47,2,f +3166,25893,47,2,f +3166,25974,41,1,f +3166,27409,15,1,f +3166,27414,15,1,f +3166,3626cpr2018,323,1,f +3166,3678bpr0055,15,1,f +3166,64807,15,1,f +3166,88646,0,1,f +3166,973pr3528c01,15,1,f +3167,2421,0,2,f +3167,2456,14,1,f +3167,2456,4,1,f +3167,2456,15,2,f +3167,2456,1,2,f +3167,2877,72,4,f +3167,3001,1,7,f +3167,3001,15,7,f +3167,3001,70,3,f +3167,3001,27,3,f +3167,3001,25,3,f +3167,3001,14,7,f +3167,3001,0,2,f +3167,3001,71,3,f +3167,3001,4,7,f +3167,3001,2,2,f +3167,3002,1,6,f +3167,3002,14,6,f +3167,3002,2,3,f +3167,3002,15,6,f +3167,3002,4,6,f +3167,3002,0,3,f +3167,3003,25,12,f +3167,3003,1,18,f +3167,3003,70,12,f +3167,3003,15,18,f +3167,3003,4,18,f +3167,3003,27,12,f +3167,3003,0,6,f +3167,3003,71,12,f +3167,3003,2,6,f +3167,3003,14,18,f +3167,3004,4,12,f +3167,3004,14,12,f +3167,3004,0,6,f +3167,3004,2,6,f +3167,3004,15,12,f +3167,3004,25,5,f +3167,3004,70,5,f +3167,3004,27,5,f +3167,3004,71,5,f +3167,3004,1,12,f +3167,3005,2,4,f +3167,3005,4,8,f +3167,3005,1,8,f +3167,3005,14,8,f +3167,3005,0,4,f +3167,3005,15,8,f +3167,3005pr0003,15,10,f +3167,3007,14,1,f +3167,3007,1,1,f +3167,3007,15,1,f +3167,3007,4,1,f +3167,3008,4,1,f +3167,3008,15,2,f +3167,3008,1,2,f +3167,3008,14,1,f +3167,3009,4,2,f +3167,3009,15,3,f +3167,3009,14,2,f +3167,3009,1,3,f +3167,3010,25,4,f +3167,3010,0,2,f +3167,3010,14,5,f +3167,3010,27,4,f +3167,3010,4,5,f +3167,3010,1,5,f +3167,3010,15,5,f +3167,3010,71,4,f +3167,3010,2,2,f +3167,3010,70,4,f +3167,3020,14,2,f +3167,3020,4,2,f +3167,3020,1,2,f +3167,3020,71,2,f +3167,3020,15,2,f +3167,3021,71,2,f +3167,3022,15,4,f +3167,3022,4,4,f +3167,3022,1,4,f +3167,3022,14,4,f +3167,3029,2,2,f +3167,3034,14,2,f +3167,3034,71,4,f +3167,3037,0,6,f +3167,3039,0,8,f +3167,3039,47,4,f +3167,3040b,0,8,f +3167,3062b,72,4,f +3167,3065,33,2,f +3167,3065,36,2,f +3167,3065,47,4,f +3167,3297,4,4,f +3167,3298,1,4,f +3167,3298,4,6,f +3167,33303,15,2,f +3167,3455,15,2,f +3167,3622,15,4,f +3167,3622,14,4,f +3167,3622,0,2,f +3167,3622,4,4,f +3167,3622,1,4,f +3167,3622,2,2,f +3167,3659,15,4,f +3167,3659,71,6,f +3167,3660,71,2,f +3167,3660,70,4,f +3167,3660,14,4,f +3167,3710,4,4,f +3167,3710,1,2,f +3167,3710,15,4,f +3167,3710,14,4,f +3167,3747b,1,2,f +3167,3795,4,2,f +3167,3823,47,2,f +3167,3957a,0,2,f +3167,4070,15,4,f +3167,4083,0,2,f +3167,42022,14,4,f +3167,4286,4,8,f +3167,4488,0,2,f +3167,4600,71,2,f +3167,4624,71,4,f +3167,4727,10,4,f +3167,4728,4,4,f +3167,55295,0,1,f +3167,55296,0,1,f +3167,55297,0,1,f +3167,55298,0,1,f +3167,55299,0,1,f +3167,55300,0,1,f +3167,6014b,15,4,f +3167,60598,4,2,f +3167,60599,15,1,f +3167,60608,14,4,f +3167,60623,14,1,f +3167,6141,33,1,t +3167,6141,34,1,t +3167,6141,34,4,f +3167,6141,36,4,f +3167,6141,46,1,t +3167,6141,46,4,f +3167,6141,33,4,f +3167,6141,36,1,t +3167,6157,0,2,f +3167,6215,2,2,f +3167,6215,0,2,f +3167,87414,0,4,f +3167,87697,0,4,f +3168,14226c21,0,1,f +3168,22119,8,1,f +3168,2357,15,4,f +3168,2419,0,1,f +3168,2420,19,2,f +3168,2423,2,2,f +3168,2431,272,9,f +3168,2453a,15,2,f +3168,2454a,15,1,f +3168,2458,15,2,f +3168,2460,8,2,f +3168,2525px3,14,1,f +3168,2540,272,2,f +3168,2554,6,2,f +3168,2555,8,6,f +3168,2586px12,0,1,f +3168,2780,0,4,f +3168,2780,0,1,t +3168,2817,4,3,f +3168,3001,6,1,f +3168,3004,15,9,f +3168,30041,8,1,f +3168,30042,8,1,f +3168,3005,15,12,f +3168,30055,484,2,f +3168,30055,15,4,f +3168,30056,484,2,f +3168,30083,15,2,f +3168,30132,8,2,f +3168,30132,8,1,t +3168,30153,34,1,f +3168,30153,33,1,f +3168,30153,46,1,f +3168,30153,36,5,f +3168,30158,6,1,f +3168,30162,8,1,f +3168,30167,6,1,f +3168,30169,0,2,f +3168,30172,15,1,f +3168,30176,2,2,f +3168,3020,0,1,f +3168,3022,8,4,f +3168,3022,272,2,f +3168,3023,8,4,f +3168,30283,6,1,f +3168,3031,0,1,f +3168,3035,8,2,f +3168,30367a,15,5,f +3168,30374,6,2,f +3168,30386,0,2,f +3168,3039,484,2,f +3168,30553,0,2,f +3168,30602,0,2,f +3168,3062b,272,8,f +3168,3068b,19,6,f +3168,3068bpx34,15,1,f +3168,3069b,15,4,f +3168,32000,7,1,f +3168,32016,8,2,f +3168,32018,15,1,f +3168,32073,7,2,f +3168,32316,8,1,f +3168,3245b,15,6,f +3168,3307,15,8,f +3168,3307px1,15,2,f +3168,3308,15,2,f +3168,3581,19,2,f +3168,3626bpa1,14,1,f +3168,3626bpr0247,14,1,f +3168,3626bpr0250,14,1,f +3168,3626bpr0251,14,1,f +3168,3626bpx127,14,1,f +3168,3659,8,2,f +3168,3660,15,2,f +3168,3665,15,6,f +3168,3665,0,2,f +3168,3666,272,9,f +3168,3710,8,1,f +3168,3747a,8,1,f +3168,3794a,2,2,f +3168,3794a,14,3,f +3168,3795,272,2,f +3168,3832,8,1,f +3168,3837,8,1,f +3168,3857,10,1,f +3168,3867,10,1,f +3168,3878,0,1,f +3168,3941,0,1,f +3168,3942c,272,1,f +3168,3958,8,4,f +3168,3959,0,2,f +3168,40235,15,1,f +3168,40235,0,1,f +3168,4032a,0,2,f +3168,40373,7,2,f +3168,40374,7,2,f +3168,40375,7,1,f +3168,40379,15,2,f +3168,40382c01,7,2,f +3168,40396,7,1,f +3168,4070,272,4,f +3168,4070,2,2,f +3168,4085c,0,6,f +3168,40902,0,1,f +3168,4095,6,1,f +3168,41752,8,1,t +3168,41769,0,2,f +3168,41770,0,2,f +3168,4189436pb01,9999,1,t +3168,4189436pb02,9999,1,t +3168,4189436pb03,9999,1,t +3168,4189436pb04,9999,1,t +3168,4189436pb05,9999,1,t +3168,4189436pb06,9999,1,t +3168,4189436pb07,9999,1,t +3168,4189436pb08,9999,1,t +3168,4189436pb09,9999,1,t +3168,4189436pb10,9999,1,t +3168,4189436pb11,9999,1,t +3168,4189436pb12,9999,1,t +3168,4189436pb13,9999,1,t +3168,4189436pb14,9999,1,t +3168,4189436pb15,9999,1,t +3168,4189436pb16,9999,1,t +3168,4189436pb17,9999,1,t +3168,4189436pb18,9999,1,t +3168,4189443pb01,9999,1,t +3168,4189443pb02,9999,1,t +3168,4189443pb03,9999,1,t +3168,4189443pb04,9999,1,t +3168,4189443pb05,9999,1,t +3168,4189443pb06,9999,1,t +3168,4189443pb07,9999,1,t +3168,4274,1,2,f +3168,4274,1,1,t +3168,4274,7,1,t +3168,4274,7,1,f +3168,4286,7,2,f +3168,4287,7,2,f +3168,43887,14,2,f +3168,43887,7,2,f +3168,43888,484,16,f +3168,43889,7,1,f +3168,43890c01,7,1,f +3168,43891,7,2,f +3168,43892,7,2,f +3168,43898,14,2,f +3168,43898px1,15,2,f +3168,44375a,4,1,f +3168,44511,15,1,f +3168,44567a,8,3,f +3168,4589,14,3,f +3168,4589,46,2,f +3168,4623,4,2,f +3168,4625,0,2,f +3168,4738a,6,1,f +3168,4739a,6,1,f +3168,4865a,484,2,f +3168,6019,4,2,f +3168,6064,2,1,f +3168,6108,15,1,f +3168,6112,15,2,f +3168,6141,272,1,t +3168,6141,36,1,t +3168,6141,272,7,f +3168,6141,36,2,f +3168,6182,15,2,f +3168,6536,7,2,f +3168,6587,8,3,f +3168,6628,0,2,f +3168,6636,8,6,f +3168,71509,14,3,t +3168,71509,14,1,f +3168,75347,15,2,f +3168,75c33,0,2,f +3168,970c00,2,1,f +3168,970c00,8,2,f +3168,970c00,484,1,f +3168,970c00pb018,19,1,f +3168,973pb0281c01,2,1,f +3168,973px180c01,15,1,f +3168,973px181c01,0,1,f +3168,973px187c01,484,1,f +3168,973px188c01,1,1,f +3168,x268px1,15,1,t +3169,3002a,15,1,f +3169,3004,15,1,f +3169,3007,15,3,f +3169,3008,15,2,f +3169,3009,15,3,f +3169,3010,15,2,f +3169,3020,0,8,f +3169,3020,7,4,f +3169,3021,15,16,f +3169,3021,0,12,f +3169,3021,7,4,f +3169,3021,47,1,f +3169,3022,0,2,f +3169,3023,7,6,f +3169,3023,0,3,f +3169,3023,15,28,f +3169,3024,15,6,f +3169,3024,0,2,f +3169,3035,7,4,f +3169,3137c01,0,1,f +3169,3137c02,0,2,f +3169,3139,0,2,f +3169,7b,0,4,f +3170,32039,0,2,f +3170,32175,0,2,f +3170,32316,25,2,f +3170,32316,0,2,f +3170,32523,15,1,f +3170,32523,135,1,f +3170,32556,7,4,f +3170,41677,135,2,f +3170,41752,8,1,f +3170,42074,15,2,f +3170,42074,135,2,f +3170,43559,0,1,f +3170,43559,25,1,f +3170,44848,0,1,f +3170,6536,0,2,f +3170,6536,8,2,f +3170,6587,8,2,f +3170,6628,0,4,f +3170,rb00167,0,2,t +3170,rb00167,0,2,f +3171,30285,14,10,f +3171,30391,0,10,f +3171,30619,14,1,f +3171,30622,14,3,f +3171,30632,0,1,f +3171,30636c02,14,1,f +3171,30642,0,1,f +3171,30663,0,3,f +3171,45400,8,1,f +3171,45406pb001,14,1,f +3171,45407,14,1,f +3171,45409pb01,14,1,f +3171,45410pb01,14,3,f +3171,45411pb01,14,2,f +3171,45411pb02,14,1,f +3171,46103,40,1,f +3171,4j001,-1,1,f +3171,6187,0,1,f +3172,14226c11,0,4,f +3172,2335,1,1,f +3172,2335,4,5,f +3172,2357,15,9,f +3172,2412b,71,4,f +3172,2431,0,6,f +3172,2436,15,1,f +3172,2436,14,1,f +3172,2456,4,1,f +3172,2462,71,2,f +3172,2496,0,43,f +3172,2555,4,1,f +3172,2555,14,1,f +3172,2655,71,43,f +3172,2877,0,2,f +3172,2877,71,2,f +3172,2877,4,3,f +3172,298c02,71,4,f +3172,3001,71,1,f +3172,3001,0,1,f +3172,3001,4,3,f +3172,3001,15,10,f +3172,3002,15,3,f +3172,3002,0,2,f +3172,3003,0,6,f +3172,3003,14,2,f +3172,3003,4,6,f +3172,3003,15,13,f +3172,3003,33,4,f +3172,3004,4,12,f +3172,3004,14,4,f +3172,3004,0,25,f +3172,3004,1,2,f +3172,3004,2,1,f +3172,3004,25,1,f +3172,3004,15,96,f +3172,3004,71,7,f +3172,3005,0,30,f +3172,3005,15,37,f +3172,3005,4,15,f +3172,3005,71,8,f +3172,3005,14,9,f +3172,3005,33,18,f +3172,3006,4,1,f +3172,3007,15,8,f +3172,3008,71,1,f +3172,3008,4,3,f +3172,3008,15,1,f +3172,3009,4,3,f +3172,3009,71,3,f +3172,3009,15,10,f +3172,3010,4,1,f +3172,3010,0,4,f +3172,3010,71,9,f +3172,3010,15,8,f +3172,3020,1,4,f +3172,3020,4,1,f +3172,3020,2,3,f +3172,3020,15,8,f +3172,3020,0,2,f +3172,3021,15,9,f +3172,3021,14,2,f +3172,3021,0,8,f +3172,3021,4,3,f +3172,3021,2,4,f +3172,3021,1,3,f +3172,3022,15,6,f +3172,3022,1,3,f +3172,3022,4,3,f +3172,3022,0,1,f +3172,3022,71,1,f +3172,3022,14,2,f +3172,3023,4,3,f +3172,3023,0,5,f +3172,3023,2,19,f +3172,3023,1,10,f +3172,3023,14,9,f +3172,3023,15,15,f +3172,3023,71,7,f +3172,3023,47,2,f +3172,3024,71,3,f +3172,3029,71,2,f +3172,3031,1,2,f +3172,3034,2,6,f +3172,3034,0,1,f +3172,3034,1,2,f +3172,3034,4,1,f +3172,3035,1,1,f +3172,3035,4,2,f +3172,3036,1,4,f +3172,30367b,14,1,f +3172,30367b,27,3,f +3172,3037,4,8,f +3172,30383,72,2,f +3172,3039,33,3,f +3172,3039,0,2,f +3172,3039,14,2,f +3172,3039,15,1,f +3172,3039,47,5,f +3172,3039,4,4,f +3172,3040b,71,6,f +3172,3040b,14,2,f +3172,3040b,2,42,f +3172,3040b,4,1,f +3172,3040b,15,1,f +3172,3040b,33,10,f +3172,3041,4,2,f +3172,3041,0,1,f +3172,3043,4,4,f +3172,3043,0,1,f +3172,3048c,0,9,f +3172,3062b,15,5,f +3172,3062b,71,2,f +3172,3062b,0,3,f +3172,3062b,70,42,f +3172,3063b,71,2,f +3172,3065,46,6,f +3172,3065,47,29,f +3172,3065,33,60,f +3172,3068b,1,2,f +3172,3068b,71,26,f +3172,3068b,15,1,f +3172,3069b,4,3,f +3172,3069b,14,2,f +3172,3069b,1,7,f +3172,3069b,0,7,f +3172,3069bpr0016,15,2,f +3172,3069bpr0085,15,6,f +3172,3070b,71,16,f +3172,32001,1,2,f +3172,3297,4,4,f +3172,3298,15,2,f +3172,3298,1,6,f +3172,3298,4,4,f +3172,3299,4,1,f +3172,3460,15,4,f +3172,3460,1,1,f +3172,3460,14,4,f +3172,3622,15,16,f +3172,3622,4,6,f +3172,3623,1,2,f +3172,3623,0,1,f +3172,3623,15,1,f +3172,3660,15,6,f +3172,3665,2,34,f +3172,3666,15,2,f +3172,3666,14,1,f +3172,3666,71,1,f +3172,3666,1,5,f +3172,3679,71,2,f +3172,3680,0,2,f +3172,3684,15,1,f +3172,3709,0,1,f +3172,3709,14,1,f +3172,3709,1,6,f +3172,3709,4,2,f +3172,3709,15,9,f +3172,3710,71,3,f +3172,3710,15,14,f +3172,3710,4,1,f +3172,3710,14,1,f +3172,3710,1,1,f +3172,3738,14,1,f +3172,3738,1,5,f +3172,3738,4,1,f +3172,3747b,15,1,f +3172,3747b,0,4,f +3172,3794a,71,4,f +3172,3795,1,1,f +3172,3795,2,1,f +3172,3832,4,1,f +3172,3832,1,1,f +3172,3832,15,2,f +3172,3832,0,1,f +3172,3867,72,12,f +3172,3867,10,4,f +3172,3937,15,5,f +3172,3937,71,3,f +3172,3938,71,8,f +3172,3941,15,3,f +3172,3941,71,18,f +3172,3941,14,6,f +3172,3941,4,1,f +3172,3942c,72,3,f +3172,3957a,0,3,f +3172,3957a,15,3,f +3172,3957a,71,6,f +3172,4032a,15,3,f +3172,4032a,0,8,f +3172,4032a,4,7,f +3172,4032a,14,1,f +3172,4032a,71,3,f +3172,4161,0,9,f +3172,4162,4,2,f +3172,4162,15,6,f +3172,4162,0,4,f +3172,42022,15,10,f +3172,42022,4,8,f +3172,42023,0,1,f +3172,4287,15,2,f +3172,43337,0,4,f +3172,43337,15,10,f +3172,43337,4,6,f +3172,44300,71,2,f +3172,44301a,72,2,f +3172,44301a,4,3,f +3172,44302a,14,2,f +3172,44302a,72,3,f +3172,44302a,4,4,f +3172,44567a,71,2,f +3172,4460b,15,2,f +3172,44728,0,1,f +3172,4477,15,10,f +3172,4477,71,1,f +3172,4477,0,2,f +3172,4589,34,1,f +3172,4589,33,4,f +3172,4589,36,1,f +3172,4589,0,2,f +3172,4589,46,3,f +3172,4589,15,10,f +3172,4589,1,9,f +3172,4589,4,16,f +3172,4589,70,4,f +3172,4740,42,1,f +3172,4864b,47,5,f +3172,4865a,15,3,f +3172,4865a,0,4,f +3172,4865a,4,10,f +3172,4865a,14,5,f +3172,6007,2,2,f +3172,6019,15,2,f +3172,6111,71,1,f +3172,6111,4,3,f +3172,6111,15,8,f +3172,6141,33,18,f +3172,6141,36,14,f +3172,6141,15,13,f +3172,6141,0,34,f +3172,6141,46,18,f +3172,6141,27,8,f +3172,6141,1,6,f +3172,6141,34,2,f +3172,6141,4,10,f +3172,6141,14,38,f +3172,6141,182,4,f +3172,6182,71,2,f +3172,6182,15,2,f +3172,6231,0,2,f +3172,6231,15,9,f +3172,6231,14,8,f +3172,6231,4,7,f +3172,6636,15,2,f +3172,6636,14,2,f +3172,6636,4,2,f +3172,73983,4,3,f +3172,73983,15,3,f +3172,73983,14,2,f +3172,73983,1,2,f +3173,2357,0,2,f +3173,2412b,4,2,f +3173,2420,0,2,f +3173,2431,15,2,f +3173,2432,4,1,f +3173,2444,0,2,f +3173,2445,0,1,f +3173,2654,15,6,f +3173,2654,143,1,f +3173,2743,379,2,f +3173,2780,0,8,f +3173,3001,0,2,f +3173,3001,379,1,f +3173,3003,15,1,f +3173,3003,0,1,f +3173,3004,379,1,f +3173,30106,47,1,f +3173,3020,272,1,f +3173,3020,0,1,f +3173,3020,15,1,f +3173,3021,15,2,f +3173,3035,0,1,f +3173,30363,0,1,f +3173,3039,0,1,f +3173,30397,0,4,f +3173,30407,0,2,f +3173,30552,71,2,f +3173,30592,272,1,f +3173,30602,272,1,f +3173,3068bpr0108,72,1,f +3173,3069b,15,1,f +3173,32013,71,2,f +3173,32034,71,1,f +3173,32064b,0,2,f +3173,32138,0,2,f +3173,3298,379,1,f +3173,3403c01,0,1,f +3173,3626bpb0091,15,1,f +3173,3660,71,1,f +3173,3710,0,1,f +3173,3710,15,1,f +3173,3894,71,2,f +3173,3956,272,2,f +3173,3957a,182,2,f +3173,44032,71,1,f +3173,44034,71,2,f +3173,4519,71,3,f +3173,45301,379,1,f +3173,4589,182,4,f +3173,47456,272,1,f +3173,47843,379,1,f +3173,47844pb01,47,1,f +3173,47846,0,1,f +3173,48183,15,1,f +3173,4854,0,1,f +3173,4868b,272,2,f +3173,4869,71,2,f +3173,6141,33,1,f +3173,6141,33,1,t +3173,6538b,71,1,f +3173,6541,71,4,f +3173,6558,0,1,f +3176,2377,0,1,f +3176,2412b,0,2,f +3176,2412b,8,4,f +3176,2412b,2,6,f +3176,2419,8,1,f +3176,2431,8,10,f +3176,2431p78,15,2,f +3176,2431pr0028,8,1,f +3176,2432,8,8,f +3176,2434,0,1,f +3176,2436,0,2,f +3176,2444,0,4,f +3176,2445,0,1,f +3176,2540,7,2,f +3176,2780,0,1,t +3176,2780,0,4,f +3176,2866,14,1,f +3176,2868b,0,1,f +3176,2871a,0,2,f +3176,2874,7,4,f +3176,2877,8,1,f +3176,2877,2,8,f +3176,2878c01,0,12,f +3176,2919,36,1,f +3176,2919,46,1,f +3176,2920,0,8,f +3176,2921,8,4,f +3176,2928,8,2,f +3176,298c02,14,1,f +3176,298c02,14,1,t +3176,3001,8,2,f +3176,30027b,7,2,f +3176,30028,0,2,f +3176,3004,4,4,f +3176,3004,8,16,f +3176,3005,2,2,f +3176,3005,8,6,f +3176,3009,2,6,f +3176,3009,8,7,f +3176,3009,14,2,f +3176,3010,8,7,f +3176,3010,2,3,f +3176,30133,4,1,f +3176,3021,0,1,f +3176,3022,0,4,f +3176,3022,2,2,f +3176,3023,7,6,f +3176,3023,8,20,f +3176,3023,2,4,f +3176,3023,0,5,f +3176,30283,0,1,f +3176,3031,8,1,f +3176,3032,19,2,f +3176,3032,2,1,f +3176,3032,8,1,f +3176,3034,0,2,f +3176,3034,8,1,f +3176,3037,0,1,f +3176,30374,14,6,f +3176,30383,8,2,f +3176,3039,0,1,f +3176,3040b,2,4,f +3176,3040b,0,5,f +3176,3040b,14,4,f +3176,3041,8,2,f +3176,30602,14,2,f +3176,3062b,7,15,f +3176,3062b,6,6,f +3176,3068b,7,2,f +3176,3069b,334,3,f +3176,3069bpb031,2,2,f +3176,32000,14,2,f +3176,32059,8,2,f +3176,32059,0,2,f +3176,3455,0,4,f +3176,3622,8,4,f +3176,3623,8,6,f +3176,3624,1,1,f +3176,3626bpb0172,14,1,f +3176,3626bpb0173,14,1,f +3176,3626bpr0270,14,1,f +3176,3633,0,4,f +3176,3665,8,4,f +3176,3666,8,8,f +3176,3666,0,12,f +3176,3666,2,3,f +3176,3684,8,2,f +3176,3700,8,4,f +3176,3710,8,11,f +3176,3710,19,2,f +3176,3710,2,3,f +3176,3795,8,4,f +3176,3823,40,1,f +3176,3829c01,7,1,f +3176,3832,8,1,f +3176,3833,4,2,f +3176,3899,14,1,f +3176,3941,15,3,f +3176,3941,7,1,f +3176,3958,8,3,f +3176,4022,0,7,f +3176,4025,0,5,f +3176,4032a,15,3,f +3176,4032a,4,3,f +3176,4032a,2,3,f +3176,4070,2,6,f +3176,4079,14,2,f +3176,4083,14,6,f +3176,4085c,0,12,f +3176,4093a,0,1,f +3176,4150pr0022,7,2,f +3176,4162,8,4,f +3176,4175,0,2,f +3176,4181p09,8,1,f +3176,4182p09,8,1,f +3176,4183,40,2,f +3176,41854,14,1,f +3176,41855,0,2,f +3176,41862,8,1,f +3176,42022,0,1,f +3176,4215b,8,2,f +3176,4274,7,1,t +3176,4274,7,4,f +3176,4286,0,2,f +3176,44569,8,2,f +3176,44572,14,2,f +3176,44728,7,3,f +3176,44822,0,4,f +3176,4509,7,4,f +3176,4510,8,8,f +3176,4512stk01,9999,1,t +3176,4518bc01,0,1,f +3176,45677,0,1,f +3176,45708,0,2,f +3176,4589,8,1,f +3176,4600,7,1,f +3176,4862,40,1,f +3176,4865a,8,4,f +3176,4865a,14,2,f +3176,4865a,40,2,f +3176,5306bc020,0,1,f +3176,5306c01,8,1,f +3176,6014b,7,2,f +3176,6015,0,2,f +3176,6035,15,1,f +3176,6070,4,8,f +3176,6081,8,2,f +3176,6141,46,1,t +3176,6141,46,2,f +3176,6141,36,2,f +3176,6141,36,1,t +3176,6157,0,1,f +3176,6179,2,1,f +3176,6546,8,8,f +3176,6556,8,4,f +3176,6567c02,8,2,f +3176,6576,0,1,f +3176,6576,2,1,f +3176,6584,0,2,f +3176,6636,0,2,f +3176,70358,0,1,f +3176,70931,0,1,f +3176,73092,0,8,f +3176,74746,8,3,f +3176,74747,8,17,f +3176,75541,8,1,f +3176,970c00,1,3,f +3176,973pb0009c01,15,1,f +3176,973pr1183c01,25,2,f +3177,10039,0,1,f +3177,11002,0,1,f +3177,11291,4,1,f +3177,11477,4,1,f +3177,2412b,0,1,t +3177,2412b,0,1,f +3177,30028,0,4,f +3177,3022,0,1,f +3177,3022,4,1,f +3177,3024,15,3,f +3177,3024,15,1,t +3177,3069b,15,1,f +3177,3069b,4,2,f +3177,3070b,15,1,t +3177,3070b,36,1,f +3177,3070b,36,1,t +3177,3070b,15,2,f +3177,3794b,4,3,f +3177,3794b,0,2,f +3177,44301a,15,2,f +3177,49668,4,1,f +3177,6141,0,1,t +3177,6141,1,1,f +3177,6141,0,2,f +3177,6141,27,1,t +3177,6141,27,1,f +3177,6141,1,1,t +3177,74967pr0001,0,4,f +3177,90194,0,1,f +3177,93589pr0003,4,1,f +3177,99781,15,3,f +3178,14226c11,0,1,f +3178,2420,2,2,f +3178,2420,14,2,f +3178,3002,2,1,f +3178,3004,19,3,f +3178,3004,70,1,f +3178,3004,1,2,f +3178,3005,19,2,f +3178,3021,1,1,f +3178,3021,2,1,f +3178,3021,14,1,f +3178,3021,70,1,f +3178,3022,19,1,f +3178,3023,2,3,f +3178,3023,15,1,f +3178,3023,14,1,f +3178,3024,19,1,f +3178,3069b,2,2,f +3178,3176,4,1,f +3178,3794b,19,1,f +3178,4032a,19,1,f +3178,4032a,4,1,f +3178,4081b,19,1,f +3178,4150,4,1,f +3178,54200,2,2,f +3178,64644,0,1,f +3178,64648,25,1,f +3178,87618,0,1,f +3179,2460,4,1,f +3179,3020,0,1,f +3179,3022,4,1,f +3179,3022,25,1,f +3179,3039,47,1,f +3179,3040b,4,1,f +3179,3660,4,1,f +3179,3710,0,2,f +3179,3731,4,1,f +3179,3747b,4,1,f +3179,4286,4,2,f +3179,44302a,4,1,f +3179,44567a,25,1,f +3179,4617b,0,1,f +3180,11477,1,1,f +3180,15712,72,2,f +3180,30292,57,1,f +3180,60478,0,1,f +3180,63864,72,1,f +3180,92280,0,1,f +3180,92438,1,1,f +3181,2412b,7,1,f +3181,30027a,15,4,f +3181,30028,0,4,f +3181,3004,1,2,f +3181,30170,0,1,t +3181,30170,0,1,f +3181,30171,1,1,f +3181,3034,15,1,f +3181,3626bpb0031,14,1,f +3181,3829c01,7,1,f +3181,3839b,7,1,f +3181,4286,1,2,f +3181,6157,0,2,f +3181,970c00,1,1,f +3181,973pb0022c01,15,1,f +3183,167917,47,1,f +3183,2780,0,16,f +3183,2793c01,14,2,f +3183,2825,7,2,f +3183,2838c01,7,1,f +3183,2847c01,7,1,f +3183,2853,7,4,f +3183,3001,4,4,f +3183,3022,0,5,f +3183,3023,0,7,f +3183,3031,0,2,f +3183,32002,8,1,t +3183,32002,8,4,f +3183,32017,7,4,f +3183,32039,7,3,f +3183,3647,7,3,f +3183,3648b,7,1,f +3183,3649,7,1,f +3183,3673,7,4,f +3183,3700,4,20,f +3183,3701,4,4,f +3183,3702,4,10,f +3183,3703,4,2,f +3183,3705,0,3,f +3183,3706,0,6,f +3183,3707,0,3,f +3183,3709,0,4,f +3183,3710,0,7,f +3183,3713,7,1,t +3183,3713,7,12,f +3183,3736,7,1,f +3183,3738,0,3,f +3183,3749,7,10,f +3183,3857,7,1,f +3183,3894,4,4,f +3183,3895,4,4,f +3183,3941,0,2,f +3183,4162,0,4,f +3183,4185,7,1,f +3183,4265b,7,1,t +3183,4265b,7,10,f +3183,4442,7,2,f +3183,4697b,7,4,f +3183,4697b,7,1,t +3183,5102c48,1,1,f +3183,5102c66,7,1,f +3183,5102c68,0,1,f +3183,5306bc069,0,1,f +3183,6553,7,2,f +3183,6587,8,3,f +3183,6589,7,2,f +3183,6632,7,4,f +3183,71082,47,1,f +3183,74981,14,1,f +3183,74982,14,2,f +3183,75215,7,3,f +3183,75974,1,1,f +3183,75c04,8,1,t +3183,75c04,8,4,f +3183,85545,1,2,f +3183,85546,14,2,f +3183,9633b1,9999,1,f +3183,9633b2,9999,1,f +3183,9633bc,9999,1,f +3183,bin01,4,1,f +3184,2431,36,1,f +3184,2540,0,2,f +3184,2555,15,2,f +3184,2654,4,1,f +3184,2654,0,1,f +3184,2780,0,4,f +3184,2780,0,1,t +3184,298c02,15,1,t +3184,298c02,15,2,f +3184,3004,72,1,f +3184,3004,4,1,f +3184,30162,72,1,f +3184,30173b,297,1,f +3184,30177,4,1,f +3184,3020,72,2,f +3184,3020,15,2,f +3184,3021,85,2,f +3184,3023,15,2,f +3184,3034,15,1,f +3184,3048c,15,2,f +3184,32000,0,2,f +3184,32002,72,1,t +3184,32002,72,11,f +3184,32015,71,1,f +3184,32062,4,1,f +3184,32294,72,4,f +3184,32316,0,2,f +3184,3626bpr0744,14,1,f +3184,3660,0,2,f +3184,3666,0,2,f +3184,3710,0,4,f +3184,3713,71,1,t +3184,3713,71,9,f +3184,3747b,15,1,f +3184,3749,19,1,f +3184,3894,0,2,f +3184,40379,15,8,f +3184,4070,15,6,f +3184,4081b,15,4,f +3184,4185,71,4,f +3184,41854,85,2,f +3184,42610,71,1,f +3184,43093,1,3,f +3184,43722,15,3,f +3184,43723,15,3,f +3184,43857,0,2,f +3184,4589,71,2,f +3184,48336,15,2,f +3184,4871,0,1,f +3184,50950,0,4,f +3184,53451,15,1,t +3184,53451,15,6,f +3184,53989,15,6,f +3184,54200,85,1,t +3184,54200,85,2,f +3184,57028c01,71,1,f +3184,57796,0,1,f +3184,59426,72,4,f +3184,6019,72,1,f +3184,60478,15,2,f +3184,61409,0,2,f +3184,6141,36,3,f +3184,6141,36,1,t +3184,6141,85,1,t +3184,6141,85,4,f +3184,6232,72,1,f +3184,63868,0,2,f +3184,64712,0,4,f +3184,6558,1,4,f +3184,85959pat0001,36,1,f +3184,87747,15,2,f +3184,92547pr0014,297,1,f +3184,92691,15,1,f +3184,93061,15,1,t +3184,93061,15,2,f +3184,93062c01,15,2,f +3184,93064pr0001,15,1,f +3184,93761pr0002,15,1,f +3184,94351pr0003,0,1,f +3184,970c00pr0220,4,1,f +3184,973pr1750c01,4,1,f +3186,2456,15,1,f +3186,3004,15,2,f +3186,3032,1,1,f +3186,3063b,15,4,f +3186,3068b,15,1,f +3186,3070b,0,2,f +3186,3070b,15,2,f +3186,3958,1,1,f +3186,4085c,0,2,f +3186,4733,0,2,f +3186,49668,0,4,f +3186,49668,191,2,f +3186,6091,15,4,f +3186,6141,47,3,f +3186,6141,41,5,f +3186,88293,15,4,f +3187,2412b,4,1,f +3187,2586pr0008,71,1,f +3187,2587pr0031,0,1,f +3187,2817,0,2,f +3187,3020,0,1,f +3187,30374,0,1,f +3187,3062b,57,2,f +3187,32530,0,1,f +3187,3626cpr1223,14,1,f +3187,3626cpr1224,14,1,f +3187,3626cpr1225,14,1,f +3187,3626cpr1226,14,1,f +3187,3673,71,1,f +3187,3844,0,2,f +3187,3846pr0004b,71,1,f +3187,4497,148,1,f +3187,48493,0,1,f +3187,53454,148,1,f +3187,54200,4,1,f +3187,59232,179,1,f +3187,6126b,57,1,f +3187,6141,179,4,f +3187,6141,4,1,f +3187,64644,0,1,f +3187,64647,4,1,f +3187,88289,308,1,f +3187,89520,0,1,f +3187,970c00,0,3,f +3187,970c00pr0518,0,1,f +3187,973pr2394c01,0,2,f +3187,973pr2395c01,0,2,f +3187,98370,148,1,f +3188,2412b,14,6,f +3188,2419,4,4,f +3188,2432,14,2,f +3188,2446,4,2,f +3188,2447,41,2,f +3188,2877,7,2,f +3188,30027a,14,4,f +3188,30028,0,4,f +3188,3007,4,2,f +3188,3021,0,4,f +3188,3023,0,2,f +3188,3298,2,2,f +3188,3626bp03,14,2,f +3188,3660,14,2,f +3188,3794a,2,2,f +3188,3829c01,14,2,f +3188,3839b,7,2,f +3188,3937,7,4,f +3188,3938,0,4,f +3188,4070,2,4,f +3188,4081b,0,4,f +3188,4349,7,4,f +3188,4865a,2,4,f +3188,6014a,14,4,f +3188,6015,0,4,f +3188,6141,46,4,f +3188,6157,0,4,f +3188,970c00,15,2,f +3188,973pb0101c01,15,2,f +3189,3005pr0006,73,1,f +3189,3024,70,2,f +3189,33291,5,1,t +3189,33291,5,2,f +3189,3899,5,1,f +3189,54200,15,1,f +3189,54200,15,1,t +3189,6256,29,1,f +3190,122c01,7,2,f +3190,193au,15,1,f +3190,3001a,15,1,f +3190,3002apb05,15,2,f +3190,3004,47,1,f +3190,3005,0,4,f +3190,3010pb036e,15,1,f +3190,3022,15,2,f +3190,3022,4,1,f +3190,3024,7,2,f +3190,3030,0,1,f +3190,3032,0,1,f +3190,3037,47,1,f +3190,3062a,33,2,f +3190,3062a,15,1,f +3190,3464,4,2,f +3190,3622,47,2,f +3190,3623,7,1,f +3190,3626apr0001,14,1,f +3190,3641,0,6,f +3190,3660,15,1,f +3190,3788,15,2,f +3190,3794a,15,1,f +3190,3795,15,1,f +3190,8,15,2,f +3190,970c00,0,1,f +3190,973c18,0,1,f +3191,32171pb006,0,1,f +3191,32505,14,1,f +3191,32576,14,2,f +3191,32577,4,1,f +3191,32578,4,1,f +3191,32579,8,1,f +3191,40507,4,1,f +3193,2357,1,4,f +3193,2412b,57,3,f +3193,2412b,7,6,f +3193,2412b,0,3,f +3193,2419,7,2,f +3193,2420,0,4,f +3193,2420,15,2,f +3193,2431,7,2,f +3193,2431px10,0,2,f +3193,2432,7,1,f +3193,2436,0,1,f +3193,2447,0,2,f +3193,2449,7,2,f +3193,2449,0,4,f +3193,2450,0,4,f +3193,2452,7,2,f +3193,2483,57,1,f +3193,2744,0,6,f +3193,2876,0,1,f +3193,2877,7,1,f +3193,2877,0,7,f +3193,2880,0,3,f +3193,298c05,0,2,f +3193,3001,7,2,f +3193,30037,7,1,f +3193,30038,57,2,f +3193,3020,0,4,f +3193,3020,7,5,f +3193,3021,0,2,f +3193,3021,4,1,f +3193,3021,7,2,f +3193,3022,7,2,f +3193,3022,0,2,f +3193,3022,4,2,f +3193,3023,15,3,f +3193,3023,7,2,f +3193,3031,7,2,f +3193,3034,7,1,f +3193,3034,1,2,f +3193,3039,0,6,f +3193,3039,7,10,f +3193,3040b,7,10,f +3193,3068b,15,1,f +3193,3069bpx33,0,5,f +3193,3070b,33,2,f +3193,3298,7,2,f +3193,3298pb009,0,2,f +3193,3308,0,2,f +3193,3403c01,0,1,f +3193,3460,0,5,f +3193,3460,7,1,f +3193,3623,0,2,f +3193,3623,7,2,f +3193,3626bpx101,14,2,f +3193,3660,0,4,f +3193,3665,7,2,f +3193,3666,7,2,f +3193,3666,0,2,f +3193,3710,7,3,f +3193,3710,0,6,f +3193,3795,0,2,f +3193,3795,7,1,f +3193,3832,0,2,f +3193,3838,0,2,f +3193,3839b,0,3,f +3193,3870,7,4,f +3193,3933,0,1,f +3193,3934,0,1,f +3193,3935,0,1,f +3193,3936,0,1,f +3193,3940b,0,1,f +3193,3956,7,1,f +3193,4032a,7,2,f +3193,4070,7,2,f +3193,4213,0,1,f +3193,4275b,0,10,f +3193,4276b,7,12,f +3193,4285b,0,1,f +3193,4315,7,2,f +3193,4345b,0,2,f +3193,4346,57,2,f +3193,4360,0,1,f +3193,4531,0,3,f +3193,4589,33,2,f +3193,4592,0,4,f +3193,4595,0,1,f +3193,4598,7,1,f +3193,4740,33,1,f +3193,4740,57,2,f +3193,4859,0,4,f +3193,4865a,15,1,f +3193,4872,57,1,f +3193,6069,0,2,f +3193,6069pb02,0,2,f +3193,6117,57,1,f +3193,6141,33,6,f +3193,6141,57,1,f +3193,6153a,7,4,f +3193,6230,0,8,f +3193,73983,0,4,f +3193,970c11pb05a,0,2,f +3193,973pb0076c01,8,2,f +3194,2413,15,2,f +3194,2420,72,2,f +3194,2431,72,1,f +3194,2431,15,1,f +3194,2437,40,1,f +3194,3003,0,1,f +3194,3005,72,1,f +3194,3010,15,2,f +3194,3020,15,3,f +3194,3020,4,1,f +3194,3021,71,1,f +3194,3021,72,4,f +3194,3022,71,1,f +3194,3023,0,5,f +3194,3024,72,2,f +3194,3024,15,1,f +3194,3039pc5,71,1,f +3194,3040b,15,2,f +3194,3068b,4,1,f +3194,3070b,14,1,f +3194,3070b,15,1,t +3194,3070b,14,1,t +3194,3070b,4,1,f +3194,3070b,15,3,f +3194,3070b,4,1,t +3194,3460,71,1,f +3194,3623,72,3,f +3194,3666,72,1,f +3194,3679,7,2,f +3194,3680,15,2,f +3194,3710,15,3,f +3194,3710,72,1,f +3194,3794a,15,1,f +3194,3795,71,2,f +3194,3937,71,1,f +3194,4079,6,3,f +3194,4162,72,1,f +3194,41769,15,4,f +3194,41770,15,4,f +3194,4282,71,1,f +3194,44301a,15,2,f +3194,44302a,15,2,f +3194,4449,73,1,f +3194,4449,0,1,f +3194,44571,15,4,f +3194,4477,15,1,f +3194,4477,72,1,f +3194,44822,15,4,f +3194,4854,71,2,f +3194,4855,71,2,f +3194,4856a,72,2,f +3194,4858,15,1,f +3194,4859,72,1,f +3194,4859,15,1,f +3194,4861,15,1,f +3194,4862,40,12,f +3194,4863,15,6,f +3194,4865a,15,2,f +3194,4865a,4,2,f +3194,4867,15,1,f +3194,4868b,15,2,f +3194,4869,71,2,f +3194,4870c02,71,3,f +3194,4871,71,1,f +3194,6134,0,1,f +3194,6141,47,1,t +3194,6141,34,1,f +3194,6141,15,1,t +3194,6141,15,2,f +3194,6141,47,1,f +3194,6141,34,1,t +3194,6141,36,1,t +3194,6141,36,1,f +3194,6636,15,2,f +3194,73983,72,4,f +3197,2357,8,1,f +3197,2377,0,13,f +3197,2412b,0,4,f +3197,2436,4,2,f +3197,2456,0,1,f +3197,2540,0,1,f +3197,2555,0,8,f +3197,2877,4,10,f +3197,2878c01,0,2,f +3197,2920,0,2,f +3197,2921,4,10,f +3197,3004,8,1,f +3197,3005,4,12,f +3197,3009,4,2,f +3197,3010,4,2,f +3197,3020,8,2,f +3197,3021,8,2,f +3197,3022,6,1,f +3197,3023,4,2,f +3197,30236,4,2,f +3197,3027,0,1,f +3197,3032,4,1,f +3197,3034,8,1,f +3197,30374,0,3,f +3197,3062b,0,4,f +3197,3062b,7,4,f +3197,3069bp0a,0,2,f +3197,32028,0,4,f +3197,32083,0,3,f +3197,3297,0,2,f +3197,3622,4,2,f +3197,3623,14,2,f +3197,3666,4,5,f +3197,3710,14,1,f +3197,3710,4,5,f +3197,3861b,4,1,f +3197,4022,0,2,f +3197,4070,8,4,f +3197,4079,6,1,f +3197,4175,0,2,f +3197,4477,4,2,f +3197,4477,14,2,f +3197,4510,0,4,f +3197,4529,0,1,f +3197,4862,41,13,f +3197,6020,0,1,f +3197,6112,4,2,f +3197,6141,36,3,f +3197,6141,7,4,f +3197,6141,36,1,t +3197,6141,7,1,t +3197,6141,8,4,f +3197,6141,8,1,t +3197,6583,0,2,f +3197,73092,0,2,f +3198,11153,72,2,f +3198,11217pr0011,84,2,f +3198,14769,71,2,f +3198,15068,484,1,f +3198,15308pr0002,84,2,f +3198,15391,0,4,f +3198,15392,72,1,t +3198,15392,72,4,f +3198,18587,71,1,f +3198,18588,72,1,f +3198,2432,0,1,f +3198,2569,0,1,f +3198,2780,0,1,t +3198,2780,0,1,f +3198,2817,71,1,f +3198,3020,484,1,f +3198,3020,72,1,f +3198,3020,71,1,f +3198,3022,72,4,f +3198,3023,484,2,f +3198,30386,71,2,f +3198,30387,71,2,f +3198,3176,0,2,f +3198,32054,0,1,f +3198,32062,4,1,f +3198,32123b,14,1,f +3198,32123b,14,1,t +3198,32523,72,1,f +3198,3626cpr1149,78,2,f +3198,3626cpr1556,78,2,f +3198,3666,0,1,f +3198,3700,71,1,f +3198,3795,0,1,f +3198,43722,484,1,f +3198,43723,484,1,f +3198,44302a,71,2,f +3198,44567a,72,2,f +3198,48336,71,3,f +3198,4865a,71,1,f +3198,54200,484,2,f +3198,54200,484,1,t +3198,59426,72,1,f +3198,59443,0,1,f +3198,59443,71,1,f +3198,60470a,71,2,f +3198,60897,72,3,f +3198,6134,0,1,f +3198,61409,484,2,f +3198,6141,72,1,f +3198,6141,33,1,t +3198,6141,72,1,t +3198,6141,33,20,f +3198,63868,72,2,f +3198,76766,71,1,f +3198,85984,0,1,f +3198,970c00pr0812,84,4,f +3198,973pr2920c01,84,2,f +3198,973pr2921c01,84,2,f +3201,11371,484,1,f +3201,3437,14,1,f +3201,3437,191,1,f +3201,3437,27,1,f +3201,6510,4,1,f +3202,2458,8,2,f +3202,2540,4,1,f +3202,2570,8,1,f +3202,2817,7,1,f +3202,3003,0,1,f +3202,3020,7,1,f +3202,3062b,7,1,f +3202,3626bpx84,14,1,f +3202,3679,7,1,f +3202,3680,4,1,f +3202,3795,0,1,f +3202,3795,2,2,f +3202,3896,0,1,f +3202,4495b,4,1,f +3202,4497,6,1,f +3202,6231,4,4,f +3202,970x021,0,1,f +3202,973px137c01,6,1,f +3204,2524,15,1,f +3204,3626bpr0360,78,1,f +3204,46304,15,2,t +3204,46304,15,1,f +3204,87555,19,1,f +3204,970c00,28,1,f +3204,973pr0460c01,19,1,f +3206,2343,47,2,f +3206,2412b,72,13,f +3206,2412b,80,2,f +3206,2431,72,2,f +3206,2431,1,2,f +3206,2431,15,1,f +3206,2432,1,1,f +3206,2436,15,2,f +3206,2437,0,1,f +3206,2444,15,1,f +3206,2445,4,1,f +3206,2445,72,3,f +3206,2460,15,2,f +3206,2479,0,1,f +3206,2654,46,3,f +3206,3001,4,1,f +3206,30029,0,2,f +3206,3003,19,1,f +3206,3004,15,2,f +3206,3005,1,2,f +3206,3009,15,2,f +3206,3010,15,1,f +3206,3010,0,1,f +3206,3020,15,5,f +3206,3022,4,4,f +3206,3023,0,2,f +3206,3023,72,6,f +3206,3023,14,4,f +3206,3029,72,1,f +3206,3031,72,2,f +3206,30332,0,1,f +3206,3035,15,1,f +3206,3039pr0013,15,1,f +3206,3040b,1,2,f +3206,3040b,15,2,f +3206,30592,71,1,f +3206,30602,15,1,f +3206,3068b,15,2,f +3206,3068bpr0136,72,1,f +3206,3069b,15,1,f +3206,3070b,36,1,f +3206,3070b,36,1,t +3206,3070b,0,2,f +3206,3070b,34,1,f +3206,3070b,34,1,t +3206,3070b,0,1,t +3206,32018,0,2,f +3206,32083,1,2,f +3206,32124,1,1,f +3206,3460,15,6,f +3206,3665,15,4,f +3206,3673,71,1,t +3206,3673,71,1,f +3206,3700,14,2,f +3206,3710,15,7,f +3206,3710,0,4,f +3206,3794b,15,4,f +3206,3795,1,4,f +3206,3821,15,3,f +3206,3822,15,3,f +3206,3829c01,1,1,f +3206,3899,14,2,f +3206,4079,70,3,f +3206,41770,0,2,f +3206,43337,0,2,f +3206,43720,15,1,f +3206,43721,15,1,f +3206,43898,15,1,f +3206,4449,0,1,f +3206,44728,15,1,f +3206,4510,15,4,f +3206,4532,1,2,f +3206,4533,15,2,f +3206,45677,15,2,f +3206,4624,71,6,f +3206,4697b,71,1,f +3206,4697b,71,1,t +3206,48183,15,1,f +3206,4865a,0,2,f +3206,4865a,19,2,f +3206,4868b,15,2,f +3206,4869,71,2,f +3206,4870,71,2,f +3206,48933,15,1,f +3206,50745,15,4,f +3206,52038,15,2,f +3206,54200,40,1,t +3206,54200,36,2,f +3206,54200,36,1,t +3206,54200,40,2,f +3206,54384,15,1,f +3206,57783,40,1,f +3206,59895,0,6,f +3206,6014b,71,4,f +3206,60219,72,1,f +3206,60479,15,5,f +3206,60601,41,8,f +3206,60700,0,4,f +3206,6091,15,4,f +3206,61345,1,4,f +3206,6141,47,2,t +3206,6141,47,4,f +3206,61483,71,1,f +3206,6157,71,2,f +3206,61678,15,4,f +3206,6179,15,1,f +3206,6239,15,1,f +3206,62743,0,2,f +3206,87079,15,5,f +3206,87611,72,1,f +3206,87612,41,1,f +3206,87613,1,1,f +3206,87615,1,1,f +3206,87616,72,1,f +3207,2445,25,2,f +3207,3001,25,2,f +3207,3002,25,2,f +3207,3004,25,2,f +3207,3022,2,1,f +3207,3023,0,2,f +3207,3039,25,2,f +3207,3040b,2,1,f +3207,3298,25,4,f +3207,3623,2,1,f +3207,3660,25,8,f +3207,3747b,25,2,f +3207,3795,25,2,f +3209,2376,1,1,f +3209,3003,1,1,f +3209,30086,0,1,f +3209,30180,14,2,f +3209,30237a,14,1,f +3209,30263,14,1,f +3209,30285,14,6,f +3209,30322,1,1,f +3209,30387,7,1,f +3209,30388,7,1,f +3209,30391,0,6,f +3209,30395,8,1,f +3209,30396,0,1,f +3209,30619,14,1,f +3209,30624,0,1,f +3209,30632,7,1,f +3209,30633pb04,40,1,f +3209,30642,0,1,f +3209,30663,0,1,f +3209,32324,7,1,f +3209,3962b,8,1,f +3209,40996,42,1,f +3209,4349,1,1,f +3209,4477,0,2,f +3209,6583,8,2,f +3209,js010,-1,1,f +3209,js013,-1,1,f +3210,32013,25,2,f +3210,32013,27,2,f +3210,32015,27,2,f +3210,32015,25,2,f +3210,32039,0,2,f +3210,32056,25,2,f +3210,32056,27,2,f +3210,32062,0,6,f +3210,32073,0,6,f +3210,32123b,7,2,t +3210,32123b,7,8,f +3210,32167,0,4,f +3210,32170,0,2,f +3210,32174,25,3,f +3210,32174,27,3,f +3210,32177,27,2,f +3210,32177,25,2,f +3210,32184,27,2,f +3210,32184,0,6,f +3210,32184,25,2,f +3210,32200,179,4,f +3210,32271,0,8,f +3210,32476,0,4,f +3210,32506,25,2,f +3210,32506,27,3,f +3210,32523,25,2,f +3210,32523,27,2,f +3210,32551,25,1,f +3210,32553,0,4,f +3210,32567,33,4,f +3210,3647,7,2,t +3210,3647,7,4,f +3210,3705,0,2,f +3210,3706,0,6,f +3210,3713,7,2,t +3210,3713,7,12,f +3210,41752,8,2,f +3210,6536,0,2,f +3210,6538b,25,1,f +3210,6538b,27,1,f +3210,6553,0,8,f +3210,6558,0,8,f +3210,71509,0,8,f +3212,2412b,72,2,f +3212,2417,10,2,f +3212,2417,288,2,f +3212,2423,2,4,f +3212,2431,71,4,f +3212,2431,33,1,f +3212,2431,4,2,f +3212,2447,40,1,f +3212,2447,40,1,t +3212,2653,71,2,f +3212,2877,72,2,f +3212,3001,14,1,f +3212,3004,4,4,f +3212,3009,4,1,f +3212,30157,71,2,f +3212,3020,4,2,f +3212,3020,1,6,f +3212,3021,72,4,f +3212,3022,15,2,f +3212,3023,33,2,f +3212,3023,36,3,f +3212,3023,4,2,f +3212,3023,71,5,f +3212,30237a,4,4,f +3212,3024,15,9,f +3212,3031,2,1,f +3212,3032,71,1,f +3212,30374,15,6,f +3212,3039pr0013,15,1,f +3212,3040b,15,2,f +3212,30414,72,1,f +3212,3069b,15,4,f +3212,3070b,72,2,f +3212,3070b,72,1,t +3212,32028,72,8,f +3212,3626bpr0743,14,1,f +3212,3660,72,4,f +3212,3665,72,4,f +3212,3666,71,2,f +3212,3666,4,6,f +3212,3666,72,3,f +3212,3710,14,5,f +3212,3710,15,2,f +3212,3710,4,4,f +3212,3795,4,2,f +3212,3821,4,1,f +3212,3822,4,1,f +3212,3829c01,14,1,f +3212,3834,320,1,f +3212,3835,0,1,f +3212,3838,14,1,f +3212,3899,14,1,f +3212,3941,70,7,f +3212,3958,72,1,f +3212,3958,4,1,f +3212,4032a,2,1,f +3212,4079,14,2,f +3212,4085c,72,2,f +3212,4176,41,1,f +3212,4282,71,2,f +3212,44728,72,6,f +3212,4589,72,1,f +3212,4589,14,1,f +3212,4623,0,1,f +3212,48336,15,6,f +3212,52031,4,1,f +3212,53989,72,1,f +3212,54200,46,1,t +3212,54200,46,2,f +3212,55981,71,4,f +3212,6019,14,1,f +3212,60470a,0,2,f +3212,60474,14,1,f +3212,60581,4,3,f +3212,60583b,4,4,f +3212,6126b,182,5,f +3212,6126b,41,1,f +3212,6140,15,3,f +3212,61409,4,2,f +3212,6141,33,2,t +3212,6141,33,10,f +3212,61485,0,1,f +3212,6154,4,3,f +3212,6155,15,2,f +3212,6158,72,1,f +3212,62361,14,4,f +3212,6636,71,1,f +3212,85984,72,8,f +3212,87087,4,2,f +3212,87552,71,2,f +3212,87617,14,1,f +3212,92280,15,1,f +3212,92402,0,4,f +3212,970c00pr0282,191,1,f +3212,973pr1919c01,191,1,f +3212,98284,70,3,f +3213,2412b,42,12,f +3213,2431,72,2,f +3213,2431,0,1,f +3213,2555,71,4,f +3213,2780,0,108,f +3213,2780,0,2,t +3213,2950,0,4,f +3213,3001,0,1,f +3213,3002,71,1,f +3213,3003,0,4,f +3213,30033,72,2,f +3213,3006,0,1,f +3213,30162,72,4,f +3213,3021,0,6,f +3213,3022,71,1,f +3213,3023,36,4,f +3213,3024,15,4,f +3213,3032,72,1,f +3213,30365,72,2,f +3213,3037,0,2,f +3213,30383,0,4,f +3213,3039,72,6,f +3213,3039,0,1,f +3213,3040b,0,2,f +3213,30503,0,1,f +3213,30536,40,5,f +3213,3062b,27,4,f +3213,3069b,72,4,f +3213,32000,71,1,f +3213,32009,0,8,f +3213,32013,0,6,f +3213,32015,71,4,f +3213,32018,0,16,f +3213,32039,0,8,f +3213,32062,4,8,f +3213,32064b,0,10,f +3213,32123b,71,1,t +3213,32123b,71,11,f +3213,32138,0,1,f +3213,32192,0,8,f +3213,32271,0,8,f +3213,32291,72,1,f +3213,32524,0,8,f +3213,32555,14,4,f +3213,3666,0,4,f +3213,3702,0,4,f +3213,3705,0,10,f +3213,3706,0,16,f +3213,3707,0,1,f +3213,3708,0,1,f +3213,3709,71,10,f +3213,3710,71,5,f +3213,3713,71,9,f +3213,3713,71,1,t +3213,3738,0,1,f +3213,3794a,71,32,f +3213,3795,72,4,f +3213,3894,71,8,f +3213,3941,42,7,f +3213,40002,47,1,f +3213,40244,0,18,f +3213,41532,0,10,f +3213,41669,36,2,f +3213,4185,27,6,f +3213,4287,0,2,f +3213,43093,1,12,f +3213,4360,0,4,f +3213,43708,0,8,f +3213,44224,72,8,f +3213,44225,71,8,f +3213,44302a,72,2,f +3213,44728,71,1,f +3213,4519,71,8,f +3213,45301,0,4,f +3213,4589,42,10,f +3213,4733,0,1,f +3213,47397,288,8,f +3213,47398,288,8,f +3213,4740,72,1,f +3213,47757,288,8,f +3213,48729a,72,16,f +3213,53984,134,12,f +3213,53984,297,2,t +3213,53988,135,1,f +3213,53988,134,6,f +3213,53988pat02,0,1,f +3213,53989,297,2,f +3213,53989,135,2,f +3213,53989,134,12,f +3213,53990,40,1,f +3213,53993pat0001,4,10,f +3213,54605,47,1,f +3213,6106,0,3,f +3213,6141,36,1,f +3213,6141,36,1,t +3213,6536,27,8,f +3213,6538b,27,1,f +3213,6558,0,16,f +3213,6632,71,8,f +3213,6636,72,2,f +3213,7707stk01,9999,1,t +3213,78c02,179,4,f +3213,78c02,179,1,t +3213,78c04,179,1,t +3213,78c04,179,1,f +3213,78c06,179,2,f +3214,3900,4,1,f +3214,3957a,7,1,f +3214,3962a,0,1,f +3214,749,0,1,f +3214,u9154,0,1,f +3214,u9204c01,15,1,f +3214,x581c08,1,1,f +3215,10884,27,2,f +3215,10928,72,1,f +3215,11203,19,2,f +3215,11816pr0003,78,1,f +3215,12825,70,1,f +3215,14716,71,3,f +3215,14734pr0001,191,1,f +3215,14769,19,1,f +3215,14769,14,2,f +3215,14769,71,1,f +3215,14769pr0009,15,1,f +3215,15535,72,1,f +3215,15678pat0002,2,1,f +3215,16981,27,1,t +3215,16981,27,1,f +3215,2431,41,2,f +3215,2432,14,1,f +3215,2449,72,1,f +3215,2453a,72,1,f +3215,2454a,71,3,f +3215,3003,72,4,f +3215,3004,71,4,f +3215,3005,41,2,f +3215,3005,72,4,f +3215,3008,71,3,f +3215,3010,71,3,f +3215,30136,70,8,f +3215,30136,484,3,f +3215,30145,71,1,f +3215,30176,2,2,f +3215,3020,19,3,f +3215,3020,70,1,f +3215,3020,322,2,f +3215,3021,2,2,f +3215,3022,2,2,f +3215,3023,19,4,f +3215,3023,71,3,f +3215,3034,15,2,f +3215,3035,19,1,f +3215,30357,2,2,f +3215,3037,72,1,f +3215,30385,42,1,f +3215,3039,70,2,f +3215,3040b,71,3,f +3215,3062b,484,6,f +3215,32028,14,2,f +3215,3245c,72,1,f +3215,33291,10,1,t +3215,33291,10,2,f +3215,33291,5,1,t +3215,33291,5,2,f +3215,3460,70,1,f +3215,3622,72,7,f +3215,3623,72,1,f +3215,3660,71,1,f +3215,3665,72,1,f +3215,3679,71,1,f +3215,3680,4,1,f +3215,3710,70,1,f +3215,3710,15,1,f +3215,3710,19,2,f +3215,3741,2,1,t +3215,3741,2,2,f +3215,3742,14,4,f +3215,3742,15,2,f +3215,3742,15,2,t +3215,3743,71,2,f +3215,3795,19,1,f +3215,3899,45,2,f +3215,3937,0,1,f +3215,3941,27,2,f +3215,3962b,191,1,f +3215,4032a,70,3,f +3215,4032a,1,1,f +3215,4070,19,8,f +3215,4162,0,1,f +3215,4162,322,1,f +3215,4286,72,2,f +3215,4460b,71,1,f +3215,4519,71,1,f +3215,47847,41,1,f +3215,47847,72,1,f +3215,54200,1,1,t +3215,54200,1,1,f +3215,60474,15,1,f +3215,60476,71,1,f +3215,60581,71,1,f +3215,6083,72,1,f +3215,6134,71,1,f +3215,6141,27,3,f +3215,6141,70,1,t +3215,6141,70,1,f +3215,6141,27,1,t +3215,6180,5,1,f +3215,6636,19,4,f +3215,87580,0,1,f +3215,91405,322,1,f +3215,91988,71,1,f +3215,92256,70,1,f +3215,92456pr0054c01,78,1,f +3215,92820pr0006c01b,378,1,f +3215,92950,72,2,f +3215,93160,15,1,f +3215,93160,15,1,t +3215,98138,71,1,t +3215,98138,41,3,f +3215,98138,71,2,f +3215,98138,41,1,t +3217,10201,0,1,f +3217,13971,71,4,f +3217,2540,0,1,f +3217,2817,71,2,f +3217,3004,71,1,f +3217,3005,288,2,f +3217,3020,288,1,f +3217,3021,72,1,f +3217,3022,72,1,f +3217,3023,0,2,f +3217,3065,47,2,f +3217,3068b,0,1,f +3217,3070b,72,1,t +3217,3070b,72,1,f +3217,3623,4,2,f +3217,3673,71,4,f +3217,3673,71,1,t +3217,3710,288,1,f +3217,3731,71,1,f +3217,3795,72,1,f +3217,3795,71,1,f +3217,3941,288,2,f +3217,3942c,0,1,f +3217,3956,0,1,f +3217,4032a,288,1,f +3217,4081b,0,2,f +3217,4600,0,1,f +3217,4624,71,2,f +3217,4740,0,1,f +3217,61252,0,1,f +3217,61409,72,2,f +3217,6141,0,2,t +3217,6141,0,6,f +3217,63082,0,1,f +3217,87580,4,1,f +3217,88930,0,2,f +3217,98138,46,1,f +3217,98138,46,1,t +3217,99780,72,1,f +3218,19220,0,1,f +3218,29695,15,1,f +3218,29927,72,1,f +3218,3626cpr2107,84,1,f +3218,88646,0,1,f +3218,970c00pr1178,0,1,f +3218,973pr3662c01,72,1,f +3219,11211,19,1,f +3219,11303,272,1,f +3219,11408pr0002c01,84,1,f +3219,11609,191,1,t +3219,11609,191,4,f +3219,11618,31,1,f +3219,11618,31,1,t +3219,11816pr0002,78,1,f +3219,13770,297,1,f +3219,14014pr0001,84,1,f +3219,14707,15,1,f +3219,15332,15,3,f +3219,15533,84,2,f +3219,16455,9999,1,t +3219,16577,19,2,f +3219,16925pr0003c01,15,1,f +3219,16985pr0001b,272,1,f +3219,2335,15,2,f +3219,2343,297,1,f +3219,2357,15,2,f +3219,2412b,71,4,f +3219,2420,30,2,f +3219,2423,2,4,f +3219,2431,0,2,f +3219,2431,70,6,f +3219,2454a,19,2,f +3219,2456,15,1,f +3219,2877,14,2,f +3219,3002,15,1,f +3219,3003,29,2,f +3219,3003,15,5,f +3219,3004,226,12,f +3219,3004,29,2,f +3219,3004,70,1,f +3219,3004,19,4,f +3219,3004,15,2,f +3219,3005,84,2,f +3219,3005,26,2,f +3219,3005,29,2,f +3219,3010,226,7,f +3219,30165,70,1,f +3219,30165,484,1,f +3219,3020,15,1,f +3219,3021,15,1,f +3219,3022,484,1,f +3219,3022,70,2,f +3219,3022,15,3,f +3219,3022,322,3,f +3219,3023,19,2,f +3219,3023,15,2,f +3219,3023,30,7,f +3219,3023,27,4,f +3219,30237b,71,1,f +3219,3024,320,1,f +3219,3024,320,1,t +3219,3029,2,1,f +3219,3029,1,1,f +3219,3032,19,1,f +3219,3032,2,1,f +3219,3033,19,4,f +3219,3034,29,2,f +3219,30367b,15,2,f +3219,3039,30,1,f +3219,3040b,26,6,f +3219,30414,19,2,f +3219,3062b,41,1,f +3219,3062b,70,6,f +3219,3068b,15,1,f +3219,3069b,29,1,f +3219,3069b,26,2,f +3219,3069b,15,2,f +3219,3069b,2,1,f +3219,3245c,19,2,f +3219,33051,10,1,f +3219,33172,25,1,f +3219,33183,10,1,f +3219,33183,10,1,t +3219,33243,15,2,f +3219,33291,5,10,f +3219,33291,5,2,t +3219,33320,2,1,f +3219,3460,30,5,f +3219,3460,15,1,f +3219,3464,15,1,f +3219,3622,70,2,f +3219,3622,15,2,f +3219,3623,2,2,f +3219,3660,70,4,f +3219,3666,15,1,f +3219,3700,15,3,f +3219,3710,71,2,f +3219,3710,29,2,f +3219,3741,2,1,t +3219,3741,2,2,f +3219,3742,14,2,t +3219,3742,14,6,f +3219,3795,30,3,f +3219,3900,15,1,f +3219,3942c,15,2,f +3219,3957b,15,4,f +3219,4032a,484,1,f +3219,4070,70,2,f +3219,4274,1,3,f +3219,4274,1,1,t +3219,4287,70,2,f +3219,4349,0,1,f +3219,43722,27,1,f +3219,43723,27,1,f +3219,4460b,19,4,f +3219,4495b,5,2,f +3219,4536,29,2,f +3219,48336,19,2,f +3219,4865b,29,1,f +3219,4865b,19,1,f +3219,50950,26,2,f +3219,50950,15,2,f +3219,59895,0,1,f +3219,59900,26,4,f +3219,59900,0,1,f +3219,59900,15,2,f +3219,59900,19,2,f +3219,60475a,71,3,f +3219,60583a,15,2,f +3219,6112,70,3,f +3219,6141,29,5,f +3219,6141,15,1,t +3219,6141,29,1,t +3219,6141,41,3,f +3219,6141,27,5,f +3219,6141,41,1,t +3219,6141,15,6,f +3219,6180,29,3,f +3219,6231,29,4,f +3219,62810,308,1,f +3219,63864,15,2,f +3219,6636,19,1,f +3219,87079,71,2,f +3219,87079,30,2,f +3219,87087,19,6,f +3219,87580,70,2,f +3219,87580,85,3,f +3219,88072,71,2,f +3219,89801,71,1,f +3219,92254pr0001,226,1,f +3219,92255,226,1,f +3219,92410,30,1,f +3219,92438,2,1,f +3219,92456pr0005c01,78,1,f +3219,92950,15,5,f +3219,92950,71,2,f +3219,93085pr01,484,1,f +3219,93085pr03,70,1,f +3219,93086,29,1,f +3219,93086,30,1,f +3219,93087,0,2,f +3219,93096,29,2,f +3219,93273,15,1,f +3219,94717,322,4,f +3219,94718,322,1,f +3219,94719,322,1,f +3219,94720,322,2,f +3219,94721,322,1,f +3219,94722,322,1,f +3219,94723,322,1,f +3219,94724,322,1,f +3219,94725,322,4,f +3219,95343,4,1,f +3219,95344,297,1,f +3219,95344,297,1,t +3219,95345,70,1,f +3219,98138,46,4,f +3219,98138,71,2,f +3219,98138,297,1,t +3219,98138,71,1,t +3219,98138,297,1,f +3219,98138,46,1,t +3219,98283,84,9,f +3219,98283,71,6,f +3219,98288,4,1,f +3224,2335,15,1,f +3224,2530,72,1,f +3224,2530,72,1,t +3224,2555,72,2,f +3224,3022,70,1,f +3224,3023,19,1,f +3224,3626bpr0789,78,1,f +3224,3794a,70,3,f +3224,44676,15,1,f +3224,4855,0,2,f +3224,59900,70,1,f +3224,63965,0,1,f +3224,90194,70,2,f +3224,95220pr0001,0,1,f +3224,95228,40,1,f +3224,970c00pr0217,70,1,f +3224,973pr1770c01,308,1,f +3225,4892,15,1,f +3225,4893,15,1,f +3225,4894,13,1,f +3225,4909,13,1,f +3225,4911,15,1,f +3225,4912,13,1,f +3225,4943pb010,9999,1,f +3227,10113,0,1,f +3227,10202,71,2,f +3227,11100,0,4,f +3227,11833,36,1,f +3227,12825,0,2,f +3227,12825,4,1,f +3227,12825,72,2,f +3227,12825,71,2,f +3227,14210,15,1,f +3227,15210,72,6,f +3227,15210pr01,0,1,f +3227,2357,72,11,f +3227,2357,71,4,f +3227,2412b,0,24,f +3227,2412b,179,5,f +3227,2412b,15,2,f +3227,2420,71,7,f +3227,2423,2,12,f +3227,2431,0,1,f +3227,2431,70,2,f +3227,2431,72,3,f +3227,2432,15,1,f +3227,2444,15,4,f +3227,2445,0,1,f +3227,2450,72,1,f +3227,2454a,71,6,f +3227,2454a,0,4,f +3227,2456,72,1,f +3227,2458,72,2,f +3227,2462,71,1,f +3227,2465,0,1,f +3227,2540,15,1,f +3227,2540,0,4,f +3227,2654,0,4,f +3227,2654,71,1,f +3227,2654,47,1,f +3227,2654,19,1,f +3227,2780,0,8,f +3227,2780,0,2,t +3227,2877,19,1,f +3227,298c02,0,1,t +3227,298c02,0,1,f +3227,3001,71,6,f +3227,3001,72,2,f +3227,3001,15,1,f +3227,3002,72,4,f +3227,3003,0,1,f +3227,3003,71,5,f +3227,3004,72,4,f +3227,3004,71,10,f +3227,3004,0,1,f +3227,30045,0,1,f +3227,3005,72,2,f +3227,3005,71,16,f +3227,3005,15,2,f +3227,30055,70,1,f +3227,3008,72,1,f +3227,3008,71,4,f +3227,3009,72,2,f +3227,3009,15,4,f +3227,3009,71,6,f +3227,3010,0,1,f +3227,3010,72,2,f +3227,3010,71,13,f +3227,30136,72,50,f +3227,30145,0,4,f +3227,30145,15,1,f +3227,30176,2,1,f +3227,3020,320,6,f +3227,3020,15,6,f +3227,3020,70,1,f +3227,3020,72,4,f +3227,3020,71,8,f +3227,3021,72,6,f +3227,3021,71,8,f +3227,3021,1,3,f +3227,3022,72,11,f +3227,3022,71,4,f +3227,3023,15,1,f +3227,3023,28,2,f +3227,3023,33,2,f +3227,3023,70,1,f +3227,3023,71,22,f +3227,3023,320,19,f +3227,3023,72,22,f +3227,3023,0,11,f +3227,3023,36,10,f +3227,30236,71,2,f +3227,30237b,71,4,f +3227,30237b,0,1,f +3227,3024,28,1,t +3227,3024,72,13,f +3227,3024,72,2,t +3227,3024,320,2,t +3227,3024,320,6,f +3227,3024,15,3,f +3227,3024,28,3,f +3227,3024,47,1,f +3227,3024,33,2,f +3227,3024,71,4,t +3227,3024,71,59,f +3227,3024,0,1,t +3227,3024,15,2,t +3227,3024,0,2,f +3227,3027,71,1,f +3227,3030,72,2,f +3227,3032,15,1,f +3227,3032,0,4,f +3227,3034,70,2,f +3227,3034,72,3,f +3227,30357,288,6,f +3227,3036,28,2,f +3227,3036,72,2,f +3227,3037,71,8,f +3227,3037,0,1,f +3227,30374,70,1,f +3227,30374,0,5,f +3227,30374,71,2,f +3227,30375,72,2,f +3227,30377,71,1,t +3227,30377,0,1,t +3227,30377,0,12,f +3227,30377,71,6,f +3227,3038,0,2,f +3227,30381,0,3,f +3227,30383,71,4,f +3227,3039,72,2,f +3227,3040b,15,1,f +3227,3040b,72,14,f +3227,30414,71,8,f +3227,30414,15,1,f +3227,30414,72,2,f +3227,3045,0,2,f +3227,3046a,72,4,f +3227,3048c,72,6,f +3227,3048c,71,1,f +3227,3048c,0,2,f +3227,30562,47,2,f +3227,30586,71,2,f +3227,3062b,57,1,f +3227,3062b,15,5,f +3227,3062b,71,6,f +3227,3062b,4,1,f +3227,3062b,72,12,f +3227,3068b,15,1,f +3227,3068b,72,1,f +3227,3068b,70,2,f +3227,3068bpr0201,15,1,f +3227,3069b,0,3,f +3227,3069b,72,4,f +3227,3069b,28,4,f +3227,3069b,40,2,f +3227,3069b,320,5,f +3227,3069b,70,2,f +3227,3069bpr0090,72,2,f +3227,3070b,15,3,f +3227,3070b,15,2,t +3227,3070b,70,2,f +3227,3070b,70,1,t +3227,3070b,72,1,t +3227,3070b,72,2,f +3227,32028,0,1,f +3227,32028,71,25,f +3227,32449,0,2,f +3227,32523,0,1,f +3227,3307,71,3,f +3227,33291,5,1,t +3227,33291,191,1,t +3227,33291,191,1,f +3227,33291,5,1,f +3227,33320,72,2,f +3227,3460,71,1,f +3227,3460,0,2,f +3227,3622,15,4,f +3227,3622,0,1,f +3227,3622,71,10,f +3227,3623,72,8,f +3227,3623,15,4,f +3227,3624,0,1,f +3227,3626bpr0472,78,1,f +3227,3626bpr0896,78,1,f +3227,3626bpr0898,15,1,f +3227,3626c,15,1,f +3227,3626c,0,2,f +3227,3626cpr0897,78,1,f +3227,3626cpr0935,78,1,f +3227,3626cpr1160,78,1,f +3227,3626cpr1179,19,1,f +3227,3626cpr1180,78,1,f +3227,3633,0,11,f +3227,3659,71,7,f +3227,3660,72,9,f +3227,3660,71,3,f +3227,3665,0,2,f +3227,3665,71,4,f +3227,3666,71,2,f +3227,3666,70,2,f +3227,3666,72,13,f +3227,3666,0,3,f +3227,3666,320,7,f +3227,3673,71,4,f +3227,3673,71,1,t +3227,3675,0,2,f +3227,3676,72,2,f +3227,3678b,0,4,f +3227,3679,71,2,f +3227,3680,0,6,f +3227,3685,0,4,f +3227,3688,0,3,f +3227,3702,0,1,f +3227,3710,320,23,f +3227,3710,15,8,f +3227,3710,71,6,f +3227,3710,0,4,f +3227,3710,72,6,f +3227,3741,2,2,f +3227,3741,2,1,t +3227,3747b,71,1,f +3227,3794b,28,3,f +3227,3794b,4,1,f +3227,3794b,15,3,f +3227,3794b,70,2,f +3227,3794b,72,6,f +3227,3795,72,1,f +3227,3795,71,7,f +3227,3795,15,3,f +3227,3821,15,1,f +3227,3822,15,1,f +3227,3829c01,0,1,f +3227,3832,0,5,f +3227,3878,0,1,f +3227,3894,0,10,f +3227,3899,47,1,f +3227,3937,71,1,f +3227,3938,71,1,f +3227,3940b,0,1,f +3227,3958,28,1,f +3227,4032a,15,1,f +3227,4032a,72,2,f +3227,4032a,70,1,f +3227,4032a,19,3,f +3227,4070,71,8,f +3227,4070,15,2,f +3227,4079,15,1,f +3227,4079,288,2,f +3227,4081b,72,1,f +3227,4081b,71,2,f +3227,4085c,15,4,f +3227,4085c,72,6,f +3227,4085c,0,1,f +3227,4161,0,2,f +3227,4162,72,3,f +3227,4162,15,1,f +3227,4176,47,1,f +3227,41879a,30,1,f +3227,4282,0,2,f +3227,4282,72,2,f +3227,43337,40,7,f +3227,4360,0,2,f +3227,43888,72,4,f +3227,43888,71,11,f +3227,43898,0,1,f +3227,43899,72,2,f +3227,44302a,71,4,f +3227,44567a,71,1,f +3227,4460b,72,4,f +3227,44728,72,2,f +3227,4477,15,2,f +3227,4497,0,6,f +3227,4510,71,4,f +3227,4510,0,1,f +3227,4589,2,1,f +3227,4589,72,14,f +3227,4589,15,1,f +3227,4589,0,6,f +3227,4589,46,4,f +3227,4599b,4,1,t +3227,4599b,4,1,f +3227,4623,71,2,f +3227,4623,72,9,f +3227,4733,0,2,f +3227,4740,15,4,f +3227,4740,72,4,f +3227,47456,0,2,f +3227,47457,71,6,f +3227,48092,71,2,f +3227,48336,19,2,f +3227,48336,71,6,f +3227,4865a,40,24,f +3227,4865b,71,2,f +3227,48729b,72,4,f +3227,48729b,72,1,t +3227,48933,72,1,f +3227,49668,179,12,f +3227,52031,15,1,f +3227,52031,72,1,f +3227,52501,72,3,f +3227,53705,148,4,f +3227,53705,148,2,t +3227,54200,143,1,t +3227,54200,72,6,f +3227,54200,0,2,f +3227,54200,40,4,f +3227,54200,143,6,f +3227,54200,33,4,f +3227,54200,0,1,t +3227,54200,72,4,t +3227,54200,33,1,t +3227,54200,40,1,t +3227,54383,0,3,f +3227,54384,0,2,f +3227,55236,27,2,f +3227,56902,71,4,f +3227,58380,15,1,f +3227,58381,15,1,f +3227,59349,71,6,f +3227,6003,72,4,f +3227,6019,0,1,f +3227,6019,72,2,f +3227,6019,19,8,f +3227,6020,0,2,f +3227,60219,72,1,f +3227,6037292,9999,1,f +3227,60471,15,1,f +3227,60474,0,1,f +3227,60475b,71,11,f +3227,60478,71,4,f +3227,60478,15,1,f +3227,60479,0,1,f +3227,60583b,71,2,f +3227,60596,0,6,f +3227,60621,71,2,f +3227,60808,71,2,f +3227,6111,71,1,f +3227,61254,0,4,f +3227,6131,308,1,f +3227,6140,15,1,f +3227,6141,4,1,t +3227,6141,36,1,t +3227,6141,15,6,f +3227,6141,182,2,f +3227,6141,72,4,t +3227,6141,36,2,f +3227,6141,71,1,t +3227,6141,71,2,f +3227,6141,4,1,f +3227,6141,72,22,f +3227,6141,47,3,t +3227,6141,182,1,t +3227,6141,0,2,t +3227,6141,47,4,f +3227,6141,0,16,f +3227,6141,15,2,t +3227,61482,71,3,f +3227,61482,71,2,t +3227,61485,0,1,f +3227,6179,71,1,f +3227,6190,4,1,f +3227,62113,0,1,f +3227,62537pr0002,4,1,f +3227,62808,72,2,f +3227,63864,72,4,f +3227,63965,0,1,f +3227,64390,70,1,f +3227,64644,0,6,f +3227,64648,179,1,f +3227,64798,2,1,f +3227,6636,0,1,f +3227,6636,15,2,f +3227,6636,72,10,f +3227,6636,71,2,f +3227,75c03,70,1,t +3227,75c03,70,2,f +3227,85974pr0002b,4,1,f +3227,85984,72,10,f +3227,85984,4,1,f +3227,86208,72,2,f +3227,87079,72,2,f +3227,87079,70,5,f +3227,87079,71,8,f +3227,87087,71,2,f +3227,87087,72,45,f +3227,87580,72,6,f +3227,87989,71,1,t +3227,87989,71,2,f +3227,87990,226,1,f +3227,88393,72,24,f +3227,88811,179,1,t +3227,88811,179,4,f +3227,89522,179,2,f +3227,89522,179,1,t +3227,90258,72,13,f +3227,91988,72,3,f +3227,92280,71,6,f +3227,92438,28,1,f +3227,92438,72,2,f +3227,92589,71,4,f +3227,92593,15,3,f +3227,92946,72,2,f +3227,92950,71,2,f +3227,92950,72,3,f +3227,93061,72,3,t +3227,93061,72,5,f +3227,93273,71,4,f +3227,93274,71,9,f +3227,93549pat01,47,1,f +3227,93604,15,1,f +3227,93609,15,1,f +3227,93609,15,1,t +3227,95229,0,2,f +3227,95347,0,2,f +3227,96874,25,1,t +3227,970c00,308,1,f +3227,970c00,0,2,f +3227,970c00,272,1,f +3227,970c00,25,1,f +3227,970c00,15,1,f +3227,970c00pr0301,27,1,f +3227,973c14,0,2,f +3227,973pr1949bc01,4,1,f +3227,973pr1961c01,0,1,f +3227,973pr1991c01,73,1,f +3227,973pr2017c01,27,1,f +3227,973pr2287c01,25,1,f +3227,973pr2288c01,15,1,f +3227,973pr2307c01,70,1,f +3227,973pr2308c01,0,1,f +3227,98138,47,2,t +3227,98138,179,1,t +3227,98138,36,4,f +3227,98138,71,1,t +3227,98138,179,2,f +3227,98138,36,1,t +3227,98138,71,2,f +3227,98138,47,4,f +3227,98139,148,4,t +3227,98139,148,10,f +3227,98282,72,2,f +3227,98283,71,6,f +3227,98560,15,2,f +3227,98721,0,1,t +3227,98721,0,1,f +3227,98722,0,1,f +3227,99207,71,4,f +3227,99464,0,1,f +3227,99780,72,1,f +3227,99781,71,4,f +3228,27bc01,15,1,f +3228,29bc01,15,1,f +3228,3081bc01,15,1,f +3228,3087bc01,15,1,f +3228,31bc01,15,1,f +3228,32bc01,15,1,f +3228,453bc01,15,1,f +3228,604c01,15,1,f +3228,645bc01,15,1,f +3228,646bc01,15,1,f +3229,3007,2,25,f +3230,2453a,4,4,f +3230,2493b,15,3,f +3230,2494,47,3,f +3230,2580c01,4,1,f +3230,298c03,7,3,f +3230,298c03,7,1,t +3230,3002,0,2,f +3230,3004,0,4,f +3230,3004,7,1,f +3230,3004,4,3,f +3230,3020,7,3,f +3230,3023,4,8,f +3230,3023,0,4,f +3230,3035,0,2,f +3230,3040b,0,2,f +3230,3045,0,2,f +3230,3045,4,4,f +3230,3069b,0,2,f +3230,3624,4,1,f +3230,3626apr0001,14,1,f +3230,3660,4,3,f +3230,3676,4,2,f +3230,3679,7,1,f +3230,3680,7,1,f +3230,3700,0,2,f +3230,3710,7,2,f +3230,3741,2,2,f +3230,3742,4,1,t +3230,3742,15,1,t +3230,3742,15,3,f +3230,3742,4,3,f +3230,3749,7,2,f +3230,3795,4,2,f +3230,3958,4,1,f +3230,4070,0,4,f +3230,4079,14,1,f +3230,4162,7,8,f +3230,4175,4,3,f +3230,4512p01,15,2,f +3230,4515,7,4,f +3230,4589,7,1,f +3230,4599a,7,1,f +3230,4740,7,1,f +3230,6141,36,4,f +3230,6141,36,1,t +3230,649p01,15,2,f +3230,70163,0,2,f +3230,74746,8,2,f +3230,80547pb01,7,1,f +3230,970c00,0,1,f +3230,973px1c01,1,1,f +3231,2357,4,2,f +3231,2412b,4,1,f +3231,2415,7,3,f +3231,2431,1,2,f +3231,2444,4,1,f +3231,2446,1,1,f +3231,2447,41,1,f +3231,3022,1,2,f +3231,3022,15,1,f +3231,3023,1,2,f +3231,3023,15,1,f +3231,3024,36,2,f +3231,3139,0,3,f +3231,3464,47,3,f +3231,3626bp7e,14,1,f +3231,3660,4,1,f +3231,3666,1,2,f +3231,3666,4,2,f +3231,3673,7,1,f +3231,3710,1,1,f +3231,3795,1,1,f +3231,3829c01,15,1,f +3231,3933,15,1,f +3231,3934,15,1,f +3231,3937,4,1,f +3231,3938,4,1,f +3231,4286,15,2,f +3231,4617b,0,1,f +3231,4732,1,1,f +3231,4859,4,1,f +3231,6069,1,1,f +3231,6070,41,1,f +3231,970c00,7,1,f +3231,973p70c01,6,1,f +3235,2340,272,2,f +3235,2412b,25,5,f +3235,2412b,80,1,f +3235,2420,0,2,f +3235,2420,71,4,f +3235,2431,71,1,f +3235,2431pr0028,72,2,f +3235,2436,71,2,f +3235,2450,0,4,f +3235,2555,0,2,f +3235,2555,71,4,f +3235,2555,72,1,f +3235,2584,0,1,f +3235,2585,71,1,f +3235,2618,0,1,f +3235,2654,71,2,f +3235,2654,182,4,f +3235,2654,0,1,f +3235,2780,0,1,t +3235,2780,0,4,f +3235,2877,71,2,f +3235,298c02,71,2,t +3235,298c02,4,1,t +3235,298c02,71,3,f +3235,298c02,4,2,f +3235,3003,27,3,f +3235,30031,80,3,f +3235,3004,25,1,f +3235,3004,4,1,f +3235,30089,0,1,f +3235,30192,72,1,f +3235,3020,0,11,f +3235,3020,25,4,f +3235,3020,71,1,f +3235,3021,0,1,f +3235,3021,71,1,f +3235,3022,71,6,f +3235,3022,1,2,f +3235,3023,25,13,f +3235,3023,72,4,f +3235,3023,0,3,f +3235,3023,36,2,f +3235,3024,1,2,f +3235,30350b,0,2,f +3235,30357,0,4,f +3235,30367a,25,2,f +3235,30373,0,1,f +3235,30384,40,1,f +3235,30414,0,2,f +3235,3045,0,4,f +3235,3048c,0,2,f +3235,30602,0,2,f +3235,30602,25,3,f +3235,3062b,71,4,f +3235,3068b,72,1,f +3235,3068b,0,5,f +3235,3069b,0,2,f +3235,3069bpr0101,71,1,f +3235,3070bpr0007,71,6,f +3235,3070bpr0007,71,2,t +3235,32000,71,2,f +3235,32028,71,2,f +3235,32064b,71,1,f +3235,32073,71,2,f +3235,32123b,71,1,f +3235,32123b,71,1,t +3235,32498,0,1,f +3235,32530,0,2,f +3235,33299a,0,2,f +3235,3623,0,8,f +3235,3626bpr0495,14,1,f +3235,3626bpr0535,14,1,f +3235,3626bpr0540,14,1,f +3235,3626bpr0542,14,1,f +3235,3626bpr0599,14,1,f +3235,3626bpr0600,14,1,f +3235,3660,71,1,f +3235,3665,0,4,f +3235,3666,71,2,f +3235,3700,72,1,f +3235,3700,4,4,f +3235,3710,71,1,f +3235,3794b,71,1,f +3235,3794b,4,1,f +3235,3794b,0,2,f +3235,3795,4,1,f +3235,3795,25,4,f +3235,3795,71,2,f +3235,3901,19,1,f +3235,3937,0,2,f +3235,3938,71,2,f +3235,3941,57,2,f +3235,3956,71,1,f +3235,4032a,27,4,f +3235,4032a,72,6,f +3235,4070,71,6,f +3235,4070,1,2,f +3235,4085c,71,6,f +3235,4150,0,4,f +3235,41531,272,2,f +3235,41769,80,2,f +3235,41770,80,2,f +3235,42446,72,2,f +3235,43093,1,2,f +3235,43710,0,2,f +3235,43711,0,2,f +3235,43712,71,1,f +3235,43713,272,2,f +3235,43719,72,1,f +3235,44375a,0,4,f +3235,44661,272,1,f +3235,44674,272,2,f +3235,44675,0,4,f +3235,44728,0,6,f +3235,44728,57,1,f +3235,44822,0,1,f +3235,4519,71,1,f +3235,4589,4,2,f +3235,4600,0,2,f +3235,46667,72,2,f +3235,4742,0,1,f +3235,47452,72,4,f +3235,47455,0,10,f +3235,47458,0,11,f +3235,47755,25,2,f +3235,48169,72,6,f +3235,48170,72,4,f +3235,48171,72,2,f +3235,48183,71,2,f +3235,48336,0,3,f +3235,48336,71,2,f +3235,4868b,25,1,f +3235,4871,71,1,f +3235,48729a,80,1,t +3235,50303,0,2,f +3235,50946p01,0,2,f +3235,54200,0,1,t +3235,54200,71,2,f +3235,54200,46,2,f +3235,54200,0,4,f +3235,54200,46,1,t +3235,54200,71,1,t +3235,54869,36,1,f +3235,56823c100,0,1,f +3235,6014b,71,4,f +3235,60470a,0,1,f +3235,60700,0,4,f +3235,60849,0,2,f +3235,6091,0,4,f +3235,61184,71,2,f +3235,61409,14,2,f +3235,6141,25,6,f +3235,6141,36,1,t +3235,6141,25,2,t +3235,6141,47,1,t +3235,6141,71,1,t +3235,6141,71,4,f +3235,6141,36,1,f +3235,6141,47,1,f +3235,6183,0,4,f +3235,62696,320,1,f +3235,62696,308,1,f +3235,62699pr0001,0,1,f +3235,62810,0,1,f +3235,62810,308,1,f +3235,6541,72,4,f +3235,6587,72,2,f +3235,6636,80,4,f +3235,85959pat0001,36,1,f +3235,85961pr01,72,1,f +3235,85962,47,1,f +3235,8970stk01,9999,1,t +3235,970c00,19,2,f +3235,970c00,15,1,f +3235,970c00pr0116,15,1,f +3235,970c00pr0118,272,2,f +3235,973pb0489c02,15,1,f +3235,973pr1386c01,272,1,f +3235,973pr1387c01,272,1,f +3235,973pr1479c01,15,1,f +3235,973pr1480c01,15,1,f +3235,973pr1517c01,73,1,f +3237,30179,0,5,f +3237,76041c01,0,5,f +3238,3020,7,1,f +3238,3022,8,1,f +3238,3040b,7,2,f +3238,3040b,8,4,f +3238,3298,379,1,f +3238,3660,7,2,f +3238,3665,7,2,f +3238,3700,8,3,f +3238,3700,379,1,f +3238,40378,379,1,f +3238,40379,379,1,f +3238,40396,379,1,f +3238,6127,379,1,f +3238,6128,379,1,f +3238,x158,379,1,f +3239,3023,1,1,f +3239,3024,1,2,f +3239,3034,7,1,f +3239,3062b,36,2,f +3239,3626apr0001,14,1,f +3239,3829c01,1,1,f +3239,3838,15,1,f +3239,3839b,7,1,f +3239,3842a,15,1,f +3239,3933a,7,1,f +3239,3934a,7,1,f +3239,3957a,1,1,f +3239,3963,1,2,f +3239,4081a,1,2,f +3239,4286,1,2,f +3239,4360,0,1,f +3239,6141,46,2,f +3239,970c00,15,1,f +3239,973p90c05,15,1,f +3240,10199,10,1,f +3240,11169,4,2,f +3240,11170,1,3,f +3240,11198,322,1,f +3240,11198,27,1,f +3240,13858,10,1,f +3240,13862,484,1,f +3240,13870,1,1,f +3240,16195,4,2,f +3240,16375,322,1,f +3240,18488,4,1,f +3240,20678,41,2,f +3240,2300,4,1,f +3240,2301,1,2,f +3240,2302,10,2,f +3240,2302,1,2,f +3240,2302,14,2,f +3240,3011,10,4,f +3240,3011,14,4,f +3240,3011,25,2,f +3240,3011,73,2,f +3240,3011,4,4,f +3240,3011,27,4,f +3240,3011,484,2,f +3240,3011,15,2,f +3240,3011,1,4,f +3240,3011,191,2,f +3240,31110,14,2,f +3240,3437,191,5,f +3240,3437,85,4,f +3240,3437,27,8,f +3240,3437,0,4,f +3240,3437,25,8,f +3240,3437,4,10,f +3240,3437,15,2,f +3240,3437,14,10,f +3240,3437,1,10,f +3240,3437,484,4,f +3240,3437,73,10,f +3240,3437,5,2,f +3240,3437,10,10,f +3240,3437pr0049,5,1,f +3240,3664pb20,484,1,f +3240,4066,191,2,f +3240,4066,5,2,f +3240,40666,10,1,f +3240,40666,25,2,f +3240,40666,15,1,f +3240,40666,73,2,f +3240,40666,14,1,f +3240,44524,1,1,f +3240,61649,4,1,f +3240,61649,73,1,f +3240,6474,10,2,f +3240,6474,14,2,f +3240,6474,4,2,f +3240,6510,10,2,f +3240,6510,14,2,f +3240,6510,4,2,f +3240,6510,25,2,f +3240,74730,1,1,f +3240,76371,73,2,f +3240,76371,1,2,f +3240,87084,4,2,f +3240,87084,14,2,f +3240,90265,14,1,f +3240,98218,322,2,f +3240,98223,25,2,f +3240,98223,10,1,f +3240,98224,10,1,f +3240,98224,4,1,f +3240,98224,27,1,f +3240,98233,70,1,f +3240,98252,5,2,f +3240,98252,27,2,f +3240,98459,70,1,f +3240,99873,14,1,f +3241,3650c,7,4,f +3241,6573,8,2,f +3241,6589,7,8,f +3243,11477,15,2,f +3243,11477,2,2,f +3243,11610,19,1,f +3243,12825,15,1,f +3243,2817,71,6,f +3243,3022,2,1,f +3243,3023,47,2,f +3243,3023,2,1,f +3243,3023,27,1,f +3243,3023,29,1,f +3243,3069b,29,2,f +3243,3069b,2,2,f +3243,3623,29,2,f +3243,3623,2,2,f +3243,3794a,15,1,f +3243,4274,1,8,f +3243,6091,288,2,f +3243,6091,15,2,f +3243,6141,25,2,f +3243,6141,0,8,f +3243,6254,15,1,f +3244,2780,0,1,t +3244,2780,0,2,f +3244,2825,0,2,f +3244,2905,14,2,f +3244,3069bp28,0,1,f +3244,32000,7,1,f +3244,32013,14,2,f +3244,32013,0,2,f +3244,32014,0,2,f +3244,32039,0,2,f +3244,32062,0,1,f +3244,32063,0,2,f +3244,32068,7,1,f +3244,32073,0,3,f +3244,32123b,7,1,t +3244,32123b,7,3,f +3244,32125,4,1,f +3244,32138,14,1,f +3244,3482,0,3,f +3244,3705,0,3,f +3244,6558,0,3,f +3244,6589,7,2,f +3244,75c08,14,2,f +3244,75c12,14,1,f +3244,78c03,0,2,f +3244,78c13,0,1,f +3244,85543,15,1,f +3244,85543,15,2,t +3246,3001a,14,8,f +3246,3001a,1,8,f +3246,3002a,14,4,f +3246,3002a,1,3,f +3246,3003,1,6,f +3246,3003,14,6,f +3246,3004,14,3,f +3246,3004,1,3,f +3246,3006,14,1,f +3246,3006,1,1,f +3246,3007,14,1,f +3246,3007,1,1,f +3247,264,1,1,f +3247,3010,1,3,f +3247,3741,2,4,f +3247,3742,4,6,f +3247,3742,14,1,t +3247,3742,4,2,t +3247,3742,15,3,f +3247,3742,14,3,f +3247,3742,15,1,t +3247,4325,4,1,f +3247,4362acx1,4,1,f +3247,4452,14,1,f +3247,4461,1,1,f +3247,fab3c,9999,1,f +3247,fabaj1,14,1,f +3247,fabaj3,14,1,f +3248,3634,0,2,f +3249,2780,0,2,f +3249,32062,0,4,f +3249,32174,72,2,f +3249,32270,71,2,f +3249,32475,72,2,f +3249,32476,15,2,f +3249,32533pb447,21,1,f +3249,3749,19,2,f +3249,44135,72,1,f +3249,44810,15,1,f +3249,4519,71,2,f +3249,47296,72,2,f +3249,47328,15,2,f +3249,47330,15,1,f +3249,47331,15,1,f +3249,47332,15,1,f +3249,47334,179,1,f +3249,47335,135,2,f +3249,x1190,41,1,f +3250,3001a,0,13,f +3250,3004,4,8,f +3250,3005,14,8,f +3250,3005,4,16,f +3250,3005,0,8,f +3250,3005,47,2,f +3250,3008a,4,4,f +3250,3008a,0,6,f +3250,3009a,14,4,f +3250,3009a,0,4,f +3250,3010,4,2,f +3250,3010,14,16,f +3250,3010,0,3,f +3250,3010pb026b,14,1,f +3250,3020,0,8,f +3250,3020,7,20,f +3250,3020,4,3,f +3250,3020,1,6,f +3250,3021,0,5,f +3250,3021,4,26,f +3250,3022,1,6,f +3250,3022,7,2,f +3250,3022,0,5,f +3250,3022,14,1,f +3250,3023a,7,6,f +3250,3023a,0,10,f +3250,3023a,4,4,f +3250,3024,0,2,f +3250,3024,4,2,f +3250,3027,7,5,f +3250,3034a,15,20,f +3250,3037,0,6,f +3250,3038,0,2,f +3250,3039,0,4,f +3250,3040a,0,2,f +3250,3045,0,2,f +3250,3058b,7,1,f +3250,3062a,0,1,f +3250,3065,47,26,f +3250,3087bc01,4,2,f +3250,3192,4,2,f +3250,3193,4,2,f +3250,3228a,1,8,f +3250,3229a,1,16,f +3250,3230a,1,16,f +3250,458,7,4,f +3250,468c01,0,1,f +3250,7049b,15,8,f +3250,737,4,5,f +3250,737bc01,4,5,f +3250,996ac15,15,1,f +3250,wheel1a,4,16,f +3250,wheel1b,4,4,f +3250,x579c02,0,1,f +3251,11203,72,2,f +3251,11458,72,2,f +3251,11477,70,2,f +3251,14769,4,1,f +3251,14769,70,2,f +3251,15397,70,1,f +3251,15535,72,1,f +3251,15672,70,4,f +3251,15712,70,8,f +3251,18980,4,6,f +3251,2431pr0081,84,4,f +3251,2445,72,1,f +3251,2460,0,2,f +3251,2476a,71,2,f +3251,24946,15,4,f +3251,24947,14,1,f +3251,24947,85,1,f +3251,26371pr01,27,1,f +3251,26393pr01,4,1,f +3251,2780,0,6,f +3251,2817,71,2,f +3251,298c02,4,1,f +3251,3020,70,2,f +3251,3020,15,2,f +3251,3021,4,2,f +3251,3022,84,3,f +3251,3023,4,1,f +3251,3031,72,2,f +3251,3032,15,2,f +3251,3034,72,1,f +3251,3035,2,1,f +3251,30367c,85,1,f +3251,30367c,14,1,f +3251,30374,15,2,f +3251,30390a,72,1,f +3251,30540,71,1,f +3251,30552,72,1,f +3251,3069b,84,1,f +3251,32013,71,1,f +3251,32015,0,1,f +3251,32039,0,3,f +3251,32062,4,4,f +3251,32064a,72,1,f +3251,32064a,4,2,f +3251,32123b,71,1,f +3251,32192,72,1,f +3251,32530,72,2,f +3251,32556,19,1,f +3251,3460,70,2,f +3251,3665,70,2,f +3251,3673,71,2,f +3251,3705,0,2,f +3251,3794b,71,1,f +3251,3795,70,1,f +3251,3832,70,1,f +3251,3832,15,1,f +3251,3941,70,2,f +3251,4032a,15,2,f +3251,4032a,71,1,f +3251,4209,84,1,f +3251,42610,71,4,f +3251,4274,71,1,f +3251,43093,1,1,f +3251,43722,15,1,f +3251,43723,15,1,f +3251,4519,71,2,f +3251,4871,70,1,f +3251,50951,0,4,f +3251,51739,4,2,f +3251,51739,15,3,f +3251,59443,14,1,f +3251,59900,71,2,f +3251,60484,71,2,f +3251,60897,72,4,f +3251,61184,71,2,f +3251,6141,4,2,f +3251,6141,179,8,f +3251,62462,0,5,f +3251,6254,15,1,f +3251,64951,84,2,f +3251,75937,0,1,f +3251,87580,84,1,f +3251,92842,0,1,f +3251,98138,36,1,f +3251,98138,34,1,f +3252,3743,7,12,f +3252,4716,0,10,f +3253,10247,72,1,f +3253,11055,320,2,f +3253,11153,320,2,f +3253,11203,71,2,f +3253,11291,72,2,f +3253,11305,297,2,f +3253,11458,72,2,f +3253,11476,0,2,f +3253,11477,326,4,f +3253,11833,71,1,f +3253,12618,0,1,f +3253,13349,72,2,f +3253,14181,71,1,f +3253,14417,72,4,f +3253,14418,71,1,f +3253,14419,72,2,f +3253,14704,71,4,f +3253,14769,71,2,f +3253,15068,320,6,f +3253,15068,25,1,f +3253,15068,15,1,f +3253,15092,72,2,f +3253,15303,0,2,f +3253,15392,72,1,t +3253,15392,72,2,f +3253,15400,72,1,f +3253,15403,0,2,f +3253,15461,0,1,f +3253,15535,72,2,f +3253,15573,72,2,f +3253,15619,320,1,f +3253,15619,320,1,t +3253,18649,71,2,f +3253,23983,297,1,f +3253,2412b,297,3,f +3253,2419,320,1,f +3253,2431,0,2,f +3253,24458,320,2,f +3253,2496,0,2,f +3253,2540,4,3,f +3253,2540,72,4,f +3253,2561,70,1,t +3253,2561,70,1,f +3253,26319,9999,1,f +3253,2653,71,2,f +3253,2654,0,1,f +3253,27058,0,1,f +3253,2736,71,1,f +3253,2780,0,2,t +3253,2780,0,4,f +3253,2877,72,2,f +3253,3004,71,2,f +3253,3004,0,4,f +3253,30136,71,3,f +3253,30153,42,1,f +3253,30170,72,1,f +3253,30170,72,1,t +3253,30171,0,1,f +3253,30173b,0,2,f +3253,30173b,297,1,t +3253,30173b,0,1,t +3253,30173b,297,2,f +3253,3020,71,7,f +3253,3021,0,5,f +3253,3021,4,2,f +3253,3022,0,4,f +3253,3022,71,14,f +3253,3023,4,13,f +3253,30350b,72,4,f +3253,30374,42,1,t +3253,30374,42,1,f +3253,30377,15,1,t +3253,30377,15,4,f +3253,30385,297,1,f +3253,30552,0,2,f +3253,30553,71,2,f +3253,30602,0,2,f +3253,30602,320,4,f +3253,3062b,72,4,f +3253,3068b,0,2,f +3253,3069b,14,6,f +3253,32028,19,2,f +3253,32062,4,2,f +3253,32064a,72,1,f +3253,32073,71,2,f +3253,32123b,14,1,t +3253,32123b,14,1,f +3253,32140,0,2,f +3253,32187,71,2,f +3253,3298,71,2,f +3253,33078,4,1,t +3253,33078,4,1,f +3253,3626cpr0893,14,1,f +3253,3626cpr1694,14,1,f +3253,3700,71,1,f +3253,3700,4,3,f +3253,3710,72,3,f +3253,3747b,0,2,f +3253,3795,72,7,f +3253,3941,14,1,f +3253,4032a,71,4,f +3253,41854,320,4,f +3253,41854,25,1,f +3253,42511,25,1,f +3253,43722,72,1,f +3253,43722,25,1,f +3253,43723,25,1,f +3253,43723,72,1,f +3253,4460b,0,2,f +3253,44674,15,1,f +3253,44676,320,2,f +3253,44676,72,2,f +3253,44728,72,4,f +3253,44728,14,5,f +3253,4519,71,1,f +3253,4533,72,1,f +3253,4740,0,1,f +3253,4740,71,4,f +3253,47455,72,2,f +3253,47457,71,4,f +3253,47457,72,2,f +3253,47458,0,2,f +3253,48170,72,2,f +3253,48172,0,1,f +3253,48336,297,7,f +3253,48729b,72,2,f +3253,48729b,72,1,t +3253,51739,320,2,f +3253,53454,42,1,t +3253,53454,42,2,f +3253,54383,320,2,f +3253,54384,320,2,f +3253,57909b,72,2,f +3253,59900,297,2,f +3253,60470b,71,2,f +3253,60471,4,1,f +3253,60474,0,1,f +3253,60476,71,2,f +3253,60478,0,3,f +3253,60483,72,2,f +3253,60581,0,1,f +3253,60752,179,2,f +3253,6091,320,4,f +3253,61252,4,4,f +3253,61409,72,2,f +3253,6141,297,12,f +3253,6141,71,13,f +3253,6141,297,2,t +3253,6141,71,1,t +3253,62537pr0002,4,1,f +3253,64276,0,2,f +3253,64567,297,1,t +3253,64567,0,1,t +3253,64567,297,2,f +3253,64567,0,1,f +3253,6536,71,1,f +3253,6553,0,1,f +3253,6558,1,1,f +3253,6587,28,1,f +3253,71155,0,1,f +3253,73983,4,4,f +3253,85943,72,2,f +3253,85984,326,2,f +3253,85984pr0002,72,1,f +3253,87087,72,4,f +3253,87580,320,3,f +3253,87618,71,2,f +3253,88283,484,1,f +3253,88290,308,1,f +3253,92013,0,4,f +3253,92280,71,1,f +3253,92410,25,1,f +3253,92692,0,1,f +3253,92947,71,4,f +3253,93061,15,1,t +3253,93061,15,4,f +3253,93062c01,15,4,f +3253,93606,25,1,f +3253,98313,15,2,f +3253,98313,0,4,f +3253,98341,297,2,f +3253,98835,326,2,f +3253,99206,0,2,f +3253,99207,0,3,f +3253,99207,4,8,f +3253,99563,25,2,f +3253,99563,71,6,f +3253,99780,72,3,f +3253,99781,71,5,f +3254,132a,0,4,f +3254,242c01,4,4,f +3254,3001a,15,1,f +3254,3004,15,7,f +3254,3004,0,1,f +3254,3005,15,2,f +3254,3008,15,4,f +3254,3008p01,15,2,f +3254,3008p02,15,2,f +3254,3009p01,15,1,f +3254,3010,15,5,f +3254,3010,47,3,f +3254,3010,4,1,f +3254,3020,15,1,f +3254,3021,15,8,f +3254,3023,15,8,f +3254,3028,15,1,f +3254,3062a,1,1,f +3254,3063b,15,2,f +3254,7049b,0,2,f +3254,710,15,1,f +3254,825p01,15,1,f +3254,825p02,15,1,f +3254,826p01,15,1,f +3254,826p02,15,1,f +3255,32073,7,1,f +3255,32174,135,6,f +3255,32556,7,1,f +3255,3706,0,2,f +3255,41665,15,2,f +3255,41666,7,2,f +3255,41667,7,1,f +3255,41668,135,2,f +3255,41669,41,2,f +3255,41670,15,4,f +3255,41671pb05,135,1,f +3255,41672,0,2,f +3255,41752,8,1,f +3255,42042,7,1,f +3255,42042und,150,1,f +3255,42074,15,2,f +3255,44938,179,2,f +3255,4519,7,5,f +3255,6628,0,2,f +3255,85544,10,1,f +3255,kohrakkalcd,9999,1,f +3256,12825,0,3,f +3256,2412b,72,2,f +3256,2462,71,2,f +3256,2653,71,5,f +3256,3002,71,1,f +3256,3003,71,1,f +3256,3003,72,2,f +3256,3004,71,1,f +3256,3005,1,1,f +3256,3005,0,2,f +3256,3005,71,3,f +3256,30055,0,1,f +3256,30103,0,4,f +3256,30136,71,3,f +3256,3020,0,2,f +3256,3021,70,6,f +3256,3022,1,4,f +3256,3022,71,1,f +3256,3022,72,3,f +3256,3022,70,4,f +3256,3023,70,5,f +3256,3031,1,5,f +3256,3034,70,1,f +3256,3035,72,2,f +3256,3048c,71,1,f +3256,3062b,36,6,f +3256,30663,71,2,f +3256,3068bprg0001,19,1,f +3256,3068bprg0002,19,2,f +3256,3068bprg0003,19,2,f +3256,3068bprg0004,0,1,f +3256,3069b,0,2,f +3256,3070b,1,1,f +3256,3070b,1,1,t +3256,33291,10,4,f +3256,33291,10,1,t +3256,33320,2,1,f +3256,3659,0,1,f +3256,3700,71,1,f +3256,3710,4,1,f +3256,3710,272,1,f +3256,3710,15,1,f +3256,3794a,70,5,f +3256,3794b,71,2,f +3256,3794b,1,1,f +3256,3795,1,3,f +3256,3957a,47,1,f +3256,3958,0,1,f +3256,3958,1,3,f +3256,4490,71,4,f +3256,4595,0,1,f +3256,49668,0,4,f +3256,53451,4,1,f +3256,53451,4,1,t +3256,54200,0,1,t +3256,54200,0,4,f +3256,59900,36,1,f +3256,59900,14,4,f +3256,59900,34,2,f +3256,59900,297,10,f +3256,59900,4,12,f +3256,60481,71,1,f +3256,60897,4,2,f +3256,6091,1,1,f +3256,6133,0,2,f +3256,6141,4,1,f +3256,6141,27,2,f +3256,6141,4,1,t +3256,6141,71,1,t +3256,6141,71,4,f +3256,6141,27,1,t +3256,61482,71,1,t +3256,61482,71,1,f +3256,62361,0,1,f +3256,64644,297,1,f +3256,64776pat0001,0,1,f +3256,85080,0,4,f +3256,85861,15,2,f +3256,85861,15,1,t +3256,85863,179,2,f +3256,85863pr0055,4,1,f +3256,85863pr0099,15,1,f +3256,85863pr0100,297,1,f +3256,85863pr0101,272,1,f +3256,85863pr0102,0,1,f +3256,85863pr0103,378,3,f +3256,87580,0,1,f +3256,87580,4,4,f +3256,87580,70,4,f +3256,87580,73,8,f +3256,87580,320,1,f +3256,87580,1,8,f +3256,87580,72,13,f +3256,87580,71,15,f +3256,92585,4,1,f +3256,95049,72,1,f +3256,95050,72,1,f +3256,95051,72,1,f +3256,95052,72,1,f +3256,95053,72,1,f +3256,95054,72,1,f +3258,32013,25,1,f +3258,32015,25,2,f +3258,32062,0,3,f +3258,32140,0,2,f +3258,32174,0,1,f +3258,32474,0,1,f +3258,32523,0,1,f +3258,32576,4,2,f +3258,40342,4,1,f +3258,41661,4,1,f +3258,41669,33,2,f +3258,42042,4,1,f +3258,42042und,14,1,f +3258,43093,0,1,t +3258,43093,0,2,f +3258,4519,0,1,f +3258,6536,0,1,f +3258,6553,0,2,f +3258,6558,0,2,f +3259,2039,15,2,f +3259,2356,1,1,f +3259,264,4,2,f +3259,2661,9999,1,f +3259,3001,15,4,f +3259,3001,1,1,f +3259,3003,0,2,f +3259,3003,14,7,f +3259,3003pe0,15,2,f +3259,3006,15,1,f +3259,3007,1,2,f +3259,30078,14,1,f +3259,3009,4,4,f +3259,3010,4,6,f +3259,30144,1,8,f +3259,30145,0,1,f +3259,30145,1,4,f +3259,30150,1,1,f +3259,30155,8,4,f +3259,3032,1,2,f +3259,33006,4,1,f +3259,33254b,9999,1,f +3259,33261,9999,1,f +3259,33303,14,6,f +3259,33325,4,1,f +3259,33326pb01,4,1,f +3259,3403c01,4,1,f +3259,3483,0,4,f +3259,3795,2,3,f +3259,3941,46,2,f +3259,3960,15,2,f +3259,3980c02,1,1,f +3259,4088px6,4,1,f +3259,4204,2,3,f +3259,4222a,4,2,f +3259,4324,6,1,f +3259,4325,14,1,f +3259,4328,7,1,f +3259,4331,14,1,f +3259,4332,366,1,f +3259,4334,7,1,f +3259,4362bcx1,0,1,f +3259,4461,4,1,f +3259,4523,1,1,f +3259,4727,2,4,f +3259,4728,14,2,f +3259,4728,1,2,f +3259,4744pb05,14,1,f +3259,4747,4,1,f +3259,4748,4,1,f +3259,6187,0,1,f +3259,6212,2,2,f +3259,6214px2,2,1,f +3259,6232,1,1,f +3259,6249,4,2,f +3259,6252,14,1,f +3259,6253,15,1,f +3259,787c01,1,6,f +3259,fabbc1,1,1,f +3259,x682c01,15,1,f +3262,122c01,7,3,f +3262,3004,47,1,f +3262,3005,15,2,f +3262,3010,14,2,f +3262,3010,15,1,f +3262,3010pb035e,14,1,f +3262,3020,7,4,f +3262,3020,15,2,f +3262,3021,4,2,f +3262,3021,15,2,f +3262,3022,7,1,f +3262,3023,14,1,f +3262,3024,7,2,f +3262,3029,4,1,f +3262,3034,7,1,f +3262,3037,15,6,f +3262,3087c,14,1,f +3262,3581,14,2,f +3262,3582,14,2,f +3262,3624,4,1,f +3262,3626apr0001,14,1,f +3262,3641,0,6,f +3262,3660,14,8,f +3262,3666,15,2,f +3262,3679,7,1,f +3262,3680,14,1,f +3262,3710,7,1,f +3262,3710,15,4,f +3262,3787,7,2,f +3262,3788,14,1,f +3262,3794a,15,2,f +3262,3795,7,2,f +3262,3823,47,1,f +3262,671stk01,9999,1,t +3262,970c00,1,1,f +3262,973c01,15,1,f +3262,rb00164,0,1,f +3264,16360,31,1,f +3264,16709pat01,4,1,f +3264,16802pr0001,14,1,f +3264,3068bpr0015,15,1,f +3264,88646,0,1,f +3265,3023,72,1,f +3265,3069b,72,1,f +3265,3245bpb10,15,1,f +3266,11610,19,1,f +3266,18674,15,1,f +3266,3001,19,1,f +3266,3003,29,1,f +3266,3020,322,1,f +3266,3069bpr0175,29,1,f +3266,33291,4,1,f +3266,33291,5,1,f +3266,33291,191,3,f +3266,3623,71,1,f +3266,3741,2,1,f +3266,4032b,70,1,f +3266,4032b,19,1,f +3266,6141,36,1,f +3266,6141,179,2,f +3266,6256,29,1,f +3266,87087,15,3,f +3266,87580,26,1,f +3268,122c01,0,2,f +3268,3003,47,1,f +3268,3003,15,4,f +3268,3003,14,2,f +3268,3004,15,40,f +3268,3004,0,7,f +3268,3004,14,6,f +3268,3004p13,15,1,f +3268,3004p18,15,2,f +3268,3005,0,4,f +3268,3005,14,6,f +3268,3005,15,35,f +3268,3007,15,1,f +3268,3007,0,1,f +3268,3008,15,13,f +3268,3008,0,2,f +3268,3009,0,2,f +3268,3009,15,14,f +3268,3009p18,15,1,f +3268,3010,15,1,f +3268,3020,14,2,f +3268,3020,47,1,f +3268,3020,0,2,f +3268,3021,15,1,f +3268,3021,0,2,f +3268,3022,15,2,f +3268,3022,0,1,f +3268,3023,14,3,f +3268,3023,0,13,f +3268,3024,15,6,f +3268,3024,36,3,f +3268,3024,0,6,f +3268,3027,0,2,f +3268,3030,0,1,f +3268,3031,15,1,f +3268,3032,0,1,f +3268,3033,0,3,f +3268,3036,0,2,f +3268,3039,0,2,f +3268,3040b,15,4,f +3268,3040b,0,2,f +3268,3040p02,4,2,f +3268,3062a,33,9,f +3268,3062a,36,1,f +3268,3062a,0,5,f +3268,3062a,15,7,f +3268,3068b,14,3,f +3268,3069b,14,2,f +3268,3069b,4,2,f +3268,3144,7,1,f +3268,3185,14,3,f +3268,3460,7,6,f +3268,3460,15,2,f +3268,3460,14,3,f +3268,3461,7,1,f +3268,3462,0,1,f +3268,3464,4,2,f +3268,3471,2,1,f +3268,3480,7,1,f +3268,3481,15,1,f +3268,3581,15,4,f +3268,3622,15,6,f +3268,3623,0,1,f +3268,3623,15,1,f +3268,3624,15,1,f +3268,3626apr0001,14,4,f +3268,3633,14,6,f +3268,3641,0,6,f +3268,3644,47,4,f +3268,3660,0,3,f +3268,3660,15,5,f +3268,3665,15,4,f +3268,3666,7,2,f +3268,3710,0,6,f +3268,3710,15,7,f +3268,3788,15,2,f +3268,3794a,15,1,f +3268,3794a,14,2,f +3268,3795,0,1,f +3268,3795,14,1,f +3268,3795,15,1,f +3268,3821p02,15,2,f +3268,3822p02,15,2,f +3268,3823,47,2,f +3268,3829c01,15,1,f +3268,3832,0,1,f +3268,3842a,15,2,f +3268,3853,14,3,f +3268,3854,0,6,f +3268,3856,2,6,f +3268,3861b,14,3,f +3268,3901,6,1,f +3268,3957a,7,1,f +3268,3962a,0,2,f +3268,3963,7,1,f +3268,4212a,15,1,f +3268,606p02,7,1,f +3268,69c01,15,1,f +3268,8,15,2,f +3268,970c00,0,3,f +3268,970c00,1,1,f +3268,973p26c01,1,1,f +3268,973pb0079c01,0,2,f +3268,973pb0091c01,0,1,f +3269,2352,14,2,f +3269,2456,14,2,f +3269,3001,0,4,f +3269,3001,14,10,f +3269,3001,4,12,f +3269,3001,1,10,f +3269,3001,15,12,f +3269,3001pr1,14,1,f +3269,3002,0,2,f +3269,3002,15,4,f +3269,3002,1,4,f +3269,3002,14,4,f +3269,3002,4,4,f +3269,3003,4,23,f +3269,3003,1,21,f +3269,3003,0,6,f +3269,3003,14,21,f +3269,3003,15,22,f +3269,3003pe1,14,2,f +3269,3006,4,2,f +3269,3185,15,4,f +3269,3471,2,1,f +3269,3483,0,4,f +3269,4130,14,1,f +3269,4131,4,1,f +3269,4132,14,1,f +3269,4133,4,1,f +3269,4180c02,0,2,f +3269,4202,2,1,f +3269,4727,2,2,f +3269,4728,4,2,f +3269,4730,14,1,f +3269,4744,4,1,f +3269,4744pr0001,0,1,f +3269,4745,4,1,f +3269,6007,8,1,f +3270,95656,72,1,f +3273,2715,15,2,f +3273,2716,47,2,f +3273,2717,4,1,f +3273,3022,4,2,f +3273,3700,4,2,f +3273,4274,7,1,f +3273,4328,7,1,f +3273,tech004,9999,1,f +3273,tech005,9999,1,f +3273,tech006,9999,1,f +3274,122c01,7,2,f +3274,193au,15,1,f +3274,3001a,15,1,f +3274,3002apb06,15,2,f +3274,3004,47,1,f +3274,3005,0,4,f +3274,3010p20b,15,1,f +3274,3022,15,2,f +3274,3022,4,1,f +3274,3024,7,2,f +3274,3030,0,1,f +3274,3032,0,1,f +3274,3037,47,1,f +3274,3062a,33,2,f +3274,3062a,15,1,f +3274,3464,4,2,f +3274,3622,47,2,f +3274,3623,7,1,f +3274,3626apr0001,14,1,f +3274,3641,0,6,f +3274,3660,15,1,f +3274,3788,15,2,f +3274,3794a,15,1,f +3274,3795,15,1,f +3274,8,15,2,f +3274,970c00,0,1,f +3274,973c18,0,1,f +3277,2412b,72,2,f +3277,2436,71,1,f +3277,2540,0,1,f +3277,2817,0,2,f +3277,2877,2,4,f +3277,2921,71,2,f +3277,3020,15,3,f +3277,3020,2,1,f +3277,3020,71,1,f +3277,3021,2,1,f +3277,3022,72,3,f +3277,3022,0,1,f +3277,3022,2,2,f +3277,3023,2,3,f +3277,3023,0,2,f +3277,3024,46,2,f +3277,3031,2,1,f +3277,3034,2,1,f +3277,30367b,0,2,f +3277,3065,47,2,f +3277,3070b,34,1,f +3277,3070b,34,1,t +3277,3673,71,1,t +3277,3673,71,4,f +3277,3710,2,1,f +3277,3730,0,1,f +3277,3731,71,1,f +3277,3941,0,1,f +3277,3942c,0,1,f +3277,3957a,0,2,f +3277,44728,72,1,f +3277,4600,71,2,f +3277,4624,71,4,f +3277,48336,71,2,f +3277,54200,288,4,f +3277,54200,288,1,t +3277,56902,71,4,f +3277,6019,0,3,f +3277,6091,0,4,f +3279,12884,4,1,f +3279,3626cpr1146,14,1,f +3279,3626cpr1161,14,1,f +3279,3626cpr1665,14,1,f +3279,4349,4,1,f +3279,4496,70,1,f +3279,95225,226,1,f +3279,95344,28,1,f +3279,970c00,71,1,f +3279,970c00,1,1,f +3279,970c00,2,1,f +3279,973pr1184c01,0,1,f +3279,973pr1446c01,4,1,f +3279,973pr1480c01,15,1,f +3279,99930,0,1,f +3280,2412b,15,1,f +3280,2412b,80,1,f +3280,2436,71,2,f +3280,3020,0,1,f +3280,3020,72,4,f +3280,3022,71,1,f +3280,3031,72,1,f +3280,30602,80,1,f +3280,3062b,15,4,f +3280,3069b,71,1,f +3280,3795,71,1,f +3280,4070,0,2,f +3280,45677,0,1,f +3280,50947,27,4,f +3280,54200,40,2,f +3280,6014b,0,4,f +3280,6015,0,4,f +3280,6141,27,4,f +3280,6141,27,1,t +3280,6157,72,2,f +3283,12054,70,1,f +3283,15707,15,1,f +3283,16236,191,1,f +3283,3437,27,3,f +3283,61896,321,1,f +3283,6510,4,1,f +3283,75121,73,1,f +3287,3001,15,4,f +3287,3001,0,4,f +3287,3001,47,4,f +3287,3001,4,4,f +3287,3001,1,4,f +3287,3001,14,4,f +3287,3001pr1,14,1,f +3287,3002,4,4,f +3287,3002,14,4,f +3287,3002,1,4,f +3287,3003,0,6,f +3287,3003,1,6,f +3287,3003,14,6,f +3287,3003,15,6,f +3287,3003,4,6,f +3287,3003pe1,14,2,f +3287,3007,4,2,f +3287,3483,0,4,f +3287,4130,4,1,f +3287,4131,14,1,f +3287,4132,4,1,f +3287,4133,14,1,f +3287,4180c02,0,2,f +3287,4202,2,1,f +3288,2412b,14,1,f +3288,3022,4,1,f +3288,3022,14,2,f +3288,3023,4,1,f +3288,30385,297,1,f +3288,30394,14,1,f +3288,3062b,70,2,f +3288,3626cpr0754,14,1,f +3288,3795,72,1,f +3288,3829c01,14,1,f +3288,44567a,14,1,f +3288,6014b,14,4,f +3288,6141,182,1,t +3288,6141,182,2,f +3288,6157,0,2,f +3288,64450,0,1,f +3288,87697,0,4,f +3288,92280,0,2,f +3288,970c00,1,1,f +3288,970c00,0,1,f +3288,973pr1580c01,15,1,f +3288,98138,47,1,t +3288,98138,47,1,f +3288,98289,179,1,f +3289,3001,1,1,f +3289,3001,15,1,f +3289,3001,4,2,f +3289,3003,1,2,f +3289,3003,15,1,f +3289,3003,4,2,f +3289,3003,0,2,f +3289,3003,14,1,f +3289,3003pe1,14,1,f +3289,3004,0,2,f +3289,3004,1,2,f +3289,3004,4,4,f +3289,3004,15,1,f +3289,3004,47,1,f +3289,3004,14,2,f +3289,3005,14,2,f +3289,3007,4,1,f +3289,3020,4,1,f +3289,3021,4,1,f +3289,3137c01,0,2,f +3289,3641,0,4,f +3293,3626bpb0131,6,1,f +3293,3626bpb0132,78,1,f +3293,3626bpb0133,78,1,f +3293,45522,19,3,f +3293,973bpb131c01,14,1,f +3293,973bpb132c01,78,1,f +3293,973bpb133c01,110,1,f +3293,bbcard10,9999,1,f +3293,bbcard11,9999,1,f +3293,bbcard12,9999,1,f +3293,x494cx1,110,1,f +3293,x494cx1,272,1,f +3293,x494cx1,14,1,f +3295,44342pr01,2,2,f +3296,3005,4,2,f +3296,3020,4,1,f +3296,3021,4,1,f +3296,3021,0,3,f +3296,3022,4,2,f +3296,3023,4,1,f +3296,3023,0,5,f +3296,3023,7,2,f +3296,3040b,4,2,f +3296,3068b,0,1,f +3296,3069b,0,2,f +3296,3482,7,2,f +3296,3623,14,2,f +3296,3634,0,2,f +3296,3651,7,6,f +3296,3666,0,1,f +3296,3700,0,4,f +3296,3702,4,2,f +3296,3704,0,2,f +3296,3705,0,10,f +3296,3706,0,1,f +3296,3707,0,1,f +3296,3709,4,1,f +3296,3710,7,2,f +3296,3710,4,1,f +3296,3713,7,8,f +3296,3738,4,1,f +3296,3747b,4,1,f +3296,3894,4,2,f +3296,4261,7,1,f +3296,4262,7,2,f +3296,4265a,7,7,f +3296,4273b,7,10,f +3296,4274,7,2,f +3296,4275a,0,2,f +3296,4276a,0,2,f +3296,4459,0,6,f +3297,2340,7,2,f +3297,2357,0,4,f +3297,2357,4,8,f +3297,2362a,34,1,f +3297,2401,7,2,f +3297,2401,0,2,f +3297,2412b,0,8,f +3297,2412b,4,4,f +3297,2419,7,2,f +3297,2420,0,6,f +3297,2432,0,1,f +3297,2432,4,2,f +3297,2433,0,2,f +3297,2434,7,2,f +3297,2445,7,2,f +3297,2446,0,3,f +3297,2447,42,1,f +3297,2447,34,2,f +3297,2450,0,2,f +3297,2452,0,3,f +3297,2458,0,2,f +3297,2463,34,4,f +3297,2466,34,4,f +3297,2483p50,34,2,f +3297,2507,34,2,f +3297,2526,4,1,f +3297,2569,4,2,f +3297,3003,0,4,f +3297,3004,0,4,f +3297,3004,4,2,f +3297,3004,7,12,f +3297,3005,7,4,f +3297,3008,7,2,f +3297,3008,0,2,f +3297,3009,7,3,f +3297,3009,4,2,f +3297,3010,7,4,f +3297,3010,0,3,f +3297,3020,7,1,f +3297,3020,0,3,f +3297,3021,0,2,f +3297,3022,0,2,f +3297,3023,0,20,f +3297,3023,7,2,f +3297,3023,4,2,f +3297,3024,0,2,f +3297,3024,7,2,f +3297,3028,0,1,f +3297,3032,0,2,f +3297,3033,0,1,f +3297,3034,0,1,f +3297,3035,0,1,f +3297,3036,0,1,f +3297,3039,0,2,f +3297,3039,7,1,f +3297,3039pc3,7,2,f +3297,3048c,0,5,f +3297,3068bp69,0,1,f +3297,3069b,4,2,f +3297,3069bp15,0,2,f +3297,3069bp25,7,1,f +3297,3298,7,2,f +3297,3298pb010,0,4,f +3297,3460,0,4,f +3297,3460,7,1,f +3297,3475b,0,2,f +3297,3479,7,2,f +3297,3622,7,2,f +3297,3622,0,2,f +3297,3623,0,2,f +3297,3623,7,2,f +3297,3626apr0001,14,1,f +3297,3626bp69,14,2,f +3297,3641,0,8,f +3297,3659,7,4,f +3297,3660,7,1,f +3297,3666,0,4,f +3297,3700,0,4,f +3297,3710,7,4,f +3297,3710,0,9,f +3297,3794a,4,2,f +3297,3795,0,1,f +3297,3830,0,2,f +3297,3831,0,2,f +3297,3832,7,1,f +3297,3838,0,3,f +3297,3933,7,2,f +3297,3933,0,2,f +3297,3934,7,2,f +3297,3934,0,2,f +3297,3935,0,2,f +3297,3936,0,2,f +3297,3956,0,1,f +3297,3957a,4,2,f +3297,3958,0,3,f +3297,3959,15,1,f +3297,4032a,0,8,f +3297,4070,7,10,f +3297,4070,0,10,f +3297,4081b,0,2,f +3297,4085c,0,4,f +3297,4151a,0,2,f +3297,4213,0,1,f +3297,4213,7,2,f +3297,4215a,7,4,f +3297,4215a,34,5,f +3297,4229,0,18,f +3297,4276b,0,3,f +3297,4285a,0,1,f +3297,4286,7,8,f +3297,4287,7,2,f +3297,4315,0,5,f +3297,4349,15,1,f +3297,4360,15,1,f +3297,4476b,7,2,f +3297,4477,0,2,f +3297,4531,0,2,f +3297,4590,0,1,f +3297,4591,0,3,f +3297,4595,7,1,f +3297,4595,0,2,f +3297,4600,0,4,f +3297,4624,7,8,f +3297,4625,0,2,f +3297,4730,0,2,f +3297,4740,34,1,f +3297,4859,0,1,f +3297,4864a,0,4,f +3297,4864a,4,2,f +3297,6019,0,2,f +3297,6058,7,1,f +3297,6061,0,2,f +3297,6061,7,2,f +3297,73983,7,2,f +3297,970x001,2,2,f +3297,970x026,15,1,f +3297,973p51c01,15,1,f +3297,973p69c01,15,1,f +3297,973pb0081c01,15,1,f +3301,3001a,4,4,f +3301,3002a,47,2,f +3301,3002a,4,8,f +3301,3003,0,1,f +3301,3003,15,1,f +3301,3003,47,3,f +3301,3006,4,1,f +3301,3006,1,2,f +3301,3009,4,3,f +3301,3009,47,3,f +3301,3010,1,4,f +3301,3010,4,1,f +3301,3033,1,1,f +3301,3036,4,1,f +3301,3298,1,1,f +3301,3460,15,4,f +3301,3461,15,1,f +3301,3462,15,1,f +3301,3613,15,2,f +3301,3614a,14,2,f +3301,685px2,14,1,f +3301,792c03,15,1,f +3301,x197,6,1,f +3302,3624,0,1,f +3302,3626bpr0386,14,1,f +3302,4449,71,1,f +3302,970c00,72,1,f +3302,973pr1164c01,272,1,f +3304,2340,14,1,f +3304,2341,7,2,f +3304,2341,15,4,f +3304,2412b,7,4,f +3304,2412b,15,1,f +3304,2412b,0,2,f +3304,2419,0,1,f +3304,2419,15,1,f +3304,2420,0,6,f +3304,2420,14,3,f +3304,2420,7,2,f +3304,2420,15,2,f +3304,2431,0,3,f +3304,2431,7,1,f +3304,2436,15,1,f +3304,2444,15,2,f +3304,2445,15,1,f +3304,2450,15,4,f +3304,2450,0,2,f +3304,2450,14,2,f +3304,2452,0,2,f +3304,2585,7,1,f +3304,2654,0,1,f +3304,2695,0,3,f +3304,2711,7,2,f +3304,2712,0,1,f +3304,2715,1,1,f +3304,2715,15,1,f +3304,2716,47,2,f +3304,2717,0,1,f +3304,2717,4,2,f +3304,2730,0,4,f +3304,2730,14,2,f +3304,2744,0,2,f +3304,2744,15,2,f +3304,2780,0,37,f +3304,2819,7,1,f +3304,2825,7,5,f +3304,2905,7,6,f +3304,2994,14,4,f +3304,3003,0,2,f +3304,3005,15,2,f +3304,3021,7,1,f +3304,3022,7,1,f +3304,3022,0,4,f +3304,3022,14,2,f +3304,3023,15,3,f +3304,3023,0,4,f +3304,3023,7,4,f +3304,3024,7,3,f +3304,3024,14,3,f +3304,3032,7,1,f +3304,3034,0,1,f +3304,3040b,0,10,f +3304,3068b,14,1,f +3304,3068b,0,1,f +3304,3069b,0,6,f +3304,3069b,14,3,f +3304,3127,7,1,f +3304,32000,14,2,f +3304,32000,15,1,f +3304,32000,7,7,f +3304,32001,0,5,f +3304,32001,7,1,f +3304,32002,8,1,t +3304,32002,8,5,f +3304,3307,7,1,f +3304,3460,15,1,f +3304,3460,14,2,f +3304,3460,0,1,f +3304,3482,7,1,f +3304,3483,0,3,f +3304,3622,0,2,f +3304,3623,14,1,f +3304,3623,0,9,f +3304,3623,7,4,f +3304,3641,0,1,f +3304,3647,7,6,f +3304,3648a,7,1,f +3304,3650c,7,1,f +3304,3651,7,11,f +3304,3660,0,4,f +3304,3665,15,2,f +3304,3665,7,6,f +3304,3665,0,10,f +3304,3666,14,2,f +3304,3666,0,1,f +3304,3666,7,2,f +3304,3673,7,5,f +3304,3700,0,6,f +3304,3700,7,1,f +3304,3700,15,3,f +3304,3700,14,3,f +3304,3701,7,5,f +3304,3701,14,3,f +3304,3701,0,1,f +3304,3701,15,1,f +3304,3702,0,6,f +3304,3703,0,2,f +3304,3703,14,1,f +3304,3703,7,4,f +3304,3704,0,5,f +3304,3705,0,14,f +3304,3706,0,10,f +3304,3707,0,9,f +3304,3708,0,1,f +3304,3709,4,2,f +3304,3709,0,4,f +3304,3709,7,5,f +3304,3709,14,6,f +3304,3709,15,1,f +3304,3710,0,13,f +3304,3710,14,3,f +3304,3710,15,1,f +3304,3713,7,1,t +3304,3713,7,17,f +3304,3730,0,1,f +3304,3737,0,3,f +3304,3738,0,2,f +3304,3749,7,17,f +3304,3894,7,2,f +3304,3894,0,6,f +3304,3895,7,1,f +3304,3937,0,1,f +3304,3938,0,1,f +3304,3941,46,1,f +3304,4019,7,1,f +3304,4032a,0,1,f +3304,4032a,7,2,f +3304,4084,0,1,f +3304,4162,0,1,f +3304,4185,7,1,f +3304,4261,7,2,f +3304,4265b,7,49,f +3304,4274,7,14,f +3304,4274,7,1,t +3304,4282,14,2,f +3304,4287,14,1,f +3304,4360,0,1,f +3304,4442,0,2,f +3304,4477,15,1,f +3304,4477,0,5,f +3304,4519,0,8,f +3304,4589,14,1,f +3304,4716,0,1,f +3304,4746,0,1,f +3304,56823,0,1,f +3304,6041,14,3,f +3304,6141,36,2,f +3304,6248,7,2,f +3304,6536,7,56,f +3304,6536,0,2,f +3304,6538b,7,4,f +3304,6541,15,6,f +3304,6541,14,2,f +3304,6541,7,2,f +3304,6553,7,12,f +3304,6558,0,40,f +3304,6564,0,1,f +3304,6564,15,1,f +3304,6565,15,2,f +3304,6565,0,1,f +3304,6572,0,1,f +3304,6578,0,4,f +3304,6585,7,1,f +3304,6587,8,14,f +3304,6588,7,1,f +3304,6589,7,4,f +3304,6594,0,4,f +3304,6595,14,4,f +3304,6629,14,2,f +3304,6629,7,2,f +3304,6629,0,3,f +3304,6630,7,1,f +3304,6632,7,6,f +3304,6632,14,3,f +3304,6636,0,1,f +3304,70496,0,1,f +3304,75535,0,2,f +3304,75c14,8,2,f +3304,75c16,14,1,f +3304,75c19,14,1,f +3304,85543,15,1,t +3304,85543,15,1,f +3304,tech021,9999,2,f +3305,11477,15,7,f +3305,11477,323,1,f +3305,14417,72,2,f +3305,14418,71,2,f +3305,15068,15,1,f +3305,18649,71,1,f +3305,18738,71,1,f +3305,18738,71,1,t +3305,24246,15,1,t +3305,24246,15,6,f +3305,2654,15,4,f +3305,2877,15,1,f +3305,3003,4,1,f +3305,3022,15,2,f +3305,3023,4,2,f +3305,3023,42,2,f +3305,3031,322,1,f +3305,3069b,15,1,f +3305,32474pr1001,15,2,f +3305,3710,323,1,f +3305,4032a,15,4,f +3305,48336,15,1,f +3305,4871,15,1,f +3305,48933,15,1,f +3305,54200,322,2,f +3305,54200,322,1,t +3305,60478,15,2,f +3305,61252,15,4,f +3305,87580,4,2,f +3305,92280,4,2,f +3305,99206,4,1,f +3305,99207,71,2,f +3305,99780,4,3,f +3305,99780,15,4,f +3307,2357,379,6,f +3307,2357,0,2,f +3307,2412b,25,6,f +3307,2412b,383,8,f +3307,2419,72,4,f +3307,2419,25,2,f +3307,2420,0,6,f +3307,2420,379,4,f +3307,2431,72,8,f +3307,2431,0,2,f +3307,2432,25,2,f +3307,2436,71,10,f +3307,2449,379,2,f +3307,2449,0,6,f +3307,2450,72,4,f +3307,2450,0,2,f +3307,2450,379,6,f +3307,2462,0,2,f +3307,2569,72,1,f +3307,2780,0,1,t +3307,2780,0,6,f +3307,2877,0,4,f +3307,30000,71,2,f +3307,3001,0,8,f +3307,3003,72,4,f +3307,3003,379,2,f +3307,3003,0,2,f +3307,3004,25,4,f +3307,3005,72,4,f +3307,3005,379,4,f +3307,3010,379,4,f +3307,3010,72,7,f +3307,30136,0,4,f +3307,3020,0,6,f +3307,3020,379,8,f +3307,3021,25,12,f +3307,3021,379,16,f +3307,3021,0,4,f +3307,3022,25,10,f +3307,3022,72,10,f +3307,3022,379,4,f +3307,3023,0,16,f +3307,3023,379,11,f +3307,3023,72,12,f +3307,3024,72,4,f +3307,3031,72,4,f +3307,3032,72,1,f +3307,3034,0,2,f +3307,30350b,72,2,f +3307,30357,0,4,f +3307,30361c,0,2,f +3307,30364,72,4,f +3307,30365,71,4,f +3307,3037,72,3,f +3307,3040b,379,12,f +3307,3040b,72,8,f +3307,3043,379,2,f +3307,3045,72,8,f +3307,3045,0,12,f +3307,3048c,379,2,f +3307,3049b,379,2,f +3307,30505,0,2,f +3307,30540,0,2,f +3307,30592,71,2,f +3307,30602,25,2,f +3307,30603,0,4,f +3307,3062b,0,2,f +3307,3063b,0,2,f +3307,30647,0,2,f +3307,3068b,72,5,f +3307,3069b,0,18,f +3307,32000,72,4,f +3307,32028,25,2,f +3307,32054,25,4,f +3307,32059,0,2,f +3307,32123b,71,1,t +3307,32123b,71,4,f +3307,32187,71,2,f +3307,32529,0,2,f +3307,3298,72,8,f +3307,3298,379,2,f +3307,3298,0,4,f +3307,3300,72,2,f +3307,3460,72,2,f +3307,3623,72,4,f +3307,3660,379,2,f +3307,3660,72,8,f +3307,3660,0,12,f +3307,3665,72,4,f +3307,3666,0,4,f +3307,3676,72,4,f +3307,3700,72,12,f +3307,3701,0,2,f +3307,3707,0,2,f +3307,3709,72,6,f +3307,3710,72,8,f +3307,3710,0,11,f +3307,3710,379,4,f +3307,3738,71,2,f +3307,3747b,72,2,f +3307,3749,19,2,f +3307,3794a,0,4,f +3307,3795,72,9,f +3307,3894,0,1,f +3307,4032a,25,4,f +3307,4032a,71,14,f +3307,4070,72,8,f +3307,4150,0,2,f +3307,41747,379,1,f +3307,41748,379,1,f +3307,41764,379,1,f +3307,41765,379,1,f +3307,41767,0,2,f +3307,41768,0,2,f +3307,41769,379,2,f +3307,41769,25,2,f +3307,41769,0,1,f +3307,41770,25,2,f +3307,41770,0,1,f +3307,41770,379,2,f +3307,41854,25,2,f +3307,41855,25,2,f +3307,42003,0,2,f +3307,42022,25,4,f +3307,4286,72,4,f +3307,4287,72,4,f +3307,4287,0,6,f +3307,4287,379,4,f +3307,43708,0,4,f +3307,43710,0,4,f +3307,43711,0,4,f +3307,43713,72,2,f +3307,43719,25,6,f +3307,43722,72,2,f +3307,43722,0,3,f +3307,43722,25,6,f +3307,43722,379,3,f +3307,43723,379,3,f +3307,43723,72,2,f +3307,43723,25,6,f +3307,43723,0,3,f +3307,43898,72,2,f +3307,44301a,71,4,f +3307,44302a,25,4,f +3307,44728,72,4,f +3307,44728,25,26,f +3307,45705,72,2,f +3307,47455,0,10,f +3307,47501,379,2,f +3307,47759,0,4,f +3307,47905,19,2,f +3307,47973,71,2,f +3307,48169,71,10,f +3307,48170,72,8,f +3307,48171,25,2,f +3307,48336,0,2,f +3307,4854,72,2,f +3307,4861,379,2,f +3307,4861,72,2,f +3307,48933,72,8,f +3307,49668,379,2,f +3307,6005,72,1,f +3307,6091,72,2,f +3307,6091,0,4,f +3307,6141,383,4,f +3307,6141,57,1,t +3307,6141,383,1,t +3307,6141,57,8,f +3307,6141,71,1,t +3307,6141,71,18,f +3307,6183,379,4,f +3307,6191,0,2,f +3307,6215,0,2,f +3307,6564,0,1,f +3307,6565,0,1,f +3307,6589,71,2,f +3307,73983,0,2,f +3307,75535,71,4,f +3307,970x194,72,2,f +3308,2412b,72,1,t +3308,2412b,72,1,f +3308,298c02,71,1,f +3308,298c02,71,2,t +3308,3023,2,1,f +3308,3062b,2,1,t +3308,3062b,2,1,f +3308,30663,0,1,f +3308,3176,0,1,f +3308,3794a,71,1,f +3308,3940b,72,1,f +3308,3959,72,1,f +3308,4070,2,1,f +3308,47905,71,1,f +3310,122c01,7,2,f +3310,3020,1,1,f +3310,3626apr0001,14,1,f +3310,3641,0,4,f +3310,3829c01,1,1,f +3310,3838,15,1,f +3310,3842a,15,1,f +3310,3962a,0,1,f +3310,4349,7,2,f +3310,4588,7,1,f +3310,4596,1,1,f +3310,4598,1,1,f +3310,6141,36,2,f +3310,970c00,15,1,f +3310,973p90c05,15,1,f +3311,2431,1,2,f +3311,2825,71,2,f +3311,3001,1,8,f +3311,3022,71,2,f +3311,3023,14,7,f +3311,3023,71,4,f +3311,3036,71,1,f +3311,3069b,14,2,f +3311,32017,71,2,f +3311,32028,71,4,f +3311,32073,0,2,f +3311,32269,2,2,f +3311,32270,2,2,f +3311,3460,71,4,f +3311,3701,1,4,f +3311,3702,1,4,f +3311,3705,0,2,f +3311,3706,0,2,f +3311,3707,0,2,f +3311,3708,0,2,f +3311,3709,71,8,f +3311,3710,71,4,f +3311,3737,0,2,f +3311,3738,71,4,f +3311,3795,71,2,f +3311,3894,1,4,f +3311,3895,1,4,f +3311,4162,1,2,f +3311,4477,71,4,f +3311,4519,0,2,f +3311,6247,1,4,f +3311,6538b,71,2,f +3311,6575,71,2,f +3311,6587,72,2,f +3311,85544,4,5,f +3311,85545,1,5,f +3311,85546,14,5,f +3311,rb00168,0,9,f +3312,87837,272,4,f +3312,87839,1,4,f +3312,87839,73,2,f +3312,87840,73,6,f +3312,87844,272,2,f +3312,87846,1,1,f +3312,88514,73,1,f +3312,89469,272,1,f +3317,2412b,0,1,f +3317,2412b,14,3,f +3317,2412b,383,2,f +3317,2447,42,1,f +3317,2456,14,3,f +3317,2458,7,4,f +3317,2540,7,2,f +3317,2877,0,2,f +3317,3001,0,5,f +3317,3002,7,1,f +3317,3004,3,7,f +3317,3007,0,1,f +3317,3009,0,1,f +3317,3010,7,3,f +3317,30104,6,1,f +3317,30180,7,2,f +3317,30194,8,1,f +3317,3020,3,1,f +3317,3021,0,4,f +3317,3022,7,3,f +3317,30228,8,1,f +3317,3023,0,10,f +3317,30237a,8,3,f +3317,3024,3,2,f +3317,30293,6,1,f +3317,30294,6,1,f +3317,30295,8,1,f +3317,30296px1,8,2,f +3317,30298,6,1,f +3317,30299,8,1,f +3317,30300,8,1,f +3317,30304,8,1,f +3317,30324,0,4,f +3317,30325,6,1,f +3317,30346c01,8,1,f +3317,3037,8,2,f +3317,30385,42,1,f +3317,3039,7,4,f +3317,3039px15,3,1,f +3317,3039px16,8,2,f +3317,3062b,4,2,f +3317,3068bpx1,0,1,f +3317,3069bp03,7,1,f +3317,3245b,3,4,f +3317,3298,8,1,f +3317,3298px1,3,2,f +3317,3403c01,0,1,f +3317,3623,3,4,f +3317,3626bpx90,14,1,f +3317,3700,14,1,f +3317,3710,8,2,f +3317,3795,3,2,f +3317,3829c01,14,2,f +3317,3937,14,2,f +3317,3938,0,2,f +3317,3956,7,1,f +3317,3957a,42,1,f +3317,3960,42,1,f +3317,4070,14,4,f +3317,4081b,0,2,f +3317,4285b,7,1,f +3317,4286,0,2,f +3317,4328,7,1,f +3317,4589,57,1,f +3317,4589,42,3,f +3317,4735,7,3,f +3317,4740,8,3,f +3317,6141,57,4,f +3317,6141,7,1,t +3317,6141,42,5,f +3317,6141,42,1,t +3317,6141,7,10,f +3317,6141,57,1,t +3317,6249,7,2,f +3317,72040,383,1,f +3317,76385,14,2,f +3317,78c14,0,2,f +3317,970x026,8,1,f +3317,973px143c01,0,1,f +3319,3001a,4,12,f +3319,3001a,0,5,f +3319,3001a,15,4,f +3319,3002a,1,13,f +3319,3002a,4,5,f +3319,3002a,0,6,f +3319,3002a,14,2,f +3319,3002a,15,8,f +3319,3003,4,5,f +3319,3003,14,4,f +3319,3003,0,14,f +3319,3003,1,1,f +3319,3003,15,5,f +3319,3004,0,2,f +3319,3004,4,3,f +3319,3004,15,8,f +3319,3004,14,8,f +3319,3005,47,4,f +3319,3005,15,3,f +3319,3005,4,2,f +3319,3005,0,1,f +3319,3005,14,8,f +3319,3006,1,1,f +3319,3009,1,3,f +3319,3009,14,1,f +3319,3020,4,9,f +3319,3020,0,8,f +3319,3020,15,14,f +3319,3021,1,5,f +3319,3021,4,1,f +3319,3021,0,4,f +3319,3022,4,2,f +3319,3022,15,1,f +3319,3022,47,1,f +3319,3022,0,6,f +3319,3023a,1,2,f +3319,3023a,4,7,f +3319,3023a,15,11,f +3319,3023a,0,5,f +3319,3023a,47,4,f +3319,3024,1,1,f +3319,3024,0,2,f +3319,3048a,4,2,f +3319,3065,47,6,f +3319,3081bc01,15,3,f +3319,33bc01,15,1,f +3320,11476,71,1,f +3320,11477,14,2,f +3320,11477,4,2,f +3320,13608,179,2,f +3320,15573,4,1,f +3320,15662pr0001,226,1,f +3320,18868a,41,1,f +3320,19981pr0026,41,1,f +3320,2780,0,1,t +3320,2780,0,1,f +3320,30031,0,1,f +3320,3023,14,1,f +3320,32062,4,2,f +3320,3941,41,1,f +3320,4032a,14,1,f +3320,42610,71,2,f +3320,44728,71,2,f +3320,50951,0,2,f +3320,59900,25,2,f +3320,6019,14,2,f +3320,6141,27,1,t +3320,6141,27,3,f +3320,6254,15,2,f +3320,85943,72,2,f +3320,93568pat0002,84,1,f +3320,970c00,27,1,f +3320,973pr2611c01,29,1,f +3321,2357,0,4,f +3321,2412a,7,3,f +3321,2412a,0,1,f +3321,2420,14,2,f +3321,2436,4,2,f +3321,2440p01,0,1,f +3321,2445,4,1,f +3321,2446,15,1,f +3321,2447,41,1,f +3321,2447,41,1,t +3321,2452,0,1,f +3321,298c01,0,1,t +3321,298c01,0,2,f +3321,3004,0,1,f +3321,3020,4,1,f +3321,3021,0,1,f +3321,3021,4,2,f +3321,3022,4,1,f +3321,3022,14,1,f +3321,3023,14,1,f +3321,3023,4,1,f +3321,3032,4,1,f +3321,3034,4,1,f +3321,3069b,15,1,f +3321,3070b,36,1,t +3321,3070b,36,2,f +3321,3298,0,1,f +3321,3623,14,2,f +3321,3626apr0001,14,1,f +3321,3710,4,1,f +3321,3787,4,2,f +3321,3794a,0,1,f +3321,3821,0,1,f +3321,3822,0,1,f +3321,3823,47,1,f +3321,3829c01,15,1,f +3321,3938,0,1,f +3321,4070,0,4,f +3321,4081b,4,2,f +3321,4085c,7,4,f +3321,4175,0,1,f +3321,4213,0,1,f +3321,4214,0,1,f +3321,4276b,0,1,f +3321,4349,7,2,f +3321,4466,7,1,f +3321,4467,7,1,f +3321,4600,0,3,f +3321,6014a,15,6,f +3321,6015,0,6,f +3321,6141,46,5,f +3321,6141,47,2,f +3321,6141,46,1,t +3321,6141,7,2,f +3321,970c00,15,1,f +3321,973p14c01,15,1,f +3322,3069bpr0099,15,1,f +3322,3070b,14,1,f +3322,3624,0,1,f +3322,3625,4,1,f +3322,3625,0,1,f +3322,3626apr0001,14,6,f +3322,3833,4,1,f +3322,3836,6,1,f +3322,3841,8,1,f +3322,3898,15,1,f +3322,3899,15,1,f +3322,3900,7,1,f +3322,3901,6,1,f +3322,4349,7,1,f +3322,970c00,1,2,f +3322,970c00,0,1,f +3322,970c00,7,1,f +3322,970c00,15,1,f +3322,970c00,4,1,f +3322,973p01c01,15,1,f +3322,973p18c01,1,1,f +3322,973p22c01,0,1,f +3322,973p26c01,1,1,f +3322,973p72c01,15,1,f +3322,973px3c01,15,1,f +3328,11203,72,1,f +3328,11213,71,2,f +3328,11458,72,8,f +3328,13194pr0001,19,1,f +3328,2419,72,4,f +3328,2444,72,1,f +3328,2540,72,2,f +3328,2723,0,3,f +3328,2736,71,4,f +3328,2780,0,8,f +3328,2780,0,1,t +3328,298c02,71,1,f +3328,298c02,71,1,t +3328,3003,4,1,f +3328,3004,1,7,f +3328,3021,0,2,f +3328,3023,4,3,f +3328,3023,0,1,f +3328,30374,35,1,f +3328,30374,71,1,t +3328,30374,71,2,f +3328,30375,72,4,f +3328,30377,72,1,f +3328,30377,72,1,t +3328,30552,72,1,f +3328,30553,72,1,f +3328,32002,19,2,f +3328,32002,19,1,t +3328,32013,72,1,f +3328,32013,0,4,f +3328,32054,0,1,f +3328,32062,4,8,f +3328,32123b,71,1,t +3328,32123b,71,4,f +3328,32184,0,2,f +3328,3626cpr1149,78,1,f +3328,3626cpr1211,70,1,f +3328,3673,71,16,f +3328,3673,71,1,t +3328,3705,0,1,f +3328,3707,0,4,f +3328,3709,15,2,f +3328,3737,0,1,f +3328,3738,0,1,f +3328,3794b,0,1,f +3328,3937,72,1,f +3328,3941,4,1,f +3328,3941,47,1,f +3328,4032a,4,1,f +3328,4032a,72,2,f +3328,40490,72,8,f +3328,41678,72,8,f +3328,41889,148,2,f +3328,41890,148,4,f +3328,42446,71,1,t +3328,42446,71,2,f +3328,42610,71,4,f +3328,42687,148,2,f +3328,4274,1,2,t +3328,4274,1,3,f +3328,43093,1,2,f +3328,43857,71,1,f +3328,43898,72,1,f +3328,44358,71,1,f +3328,44359,72,2,f +3328,44375b,71,2,f +3328,44567a,72,9,f +3328,44809,71,4,f +3328,4519,71,1,f +3328,4716,0,4,f +3328,4740,72,1,f +3328,47457,72,1,f +3328,48336,71,1,f +3328,57899,0,1,f +3328,59443,72,9,f +3328,59443,70,5,f +3328,59900,72,2,f +3328,6005,71,14,f +3328,60470b,71,1,f +3328,60471,71,1,f +3328,60474,71,4,f +3328,60485,71,4,f +3328,61184,71,1,f +3328,61184,71,1,t +3328,61189pr0012,15,1,f +3328,6134,71,1,f +3328,6141,71,1,t +3328,6141,36,5,f +3328,6141,71,2,f +3328,6141,36,2,t +3328,6190,72,1,f +3328,62462,71,4,f +3328,63868,71,8,f +3328,64567,71,1,t +3328,64567,80,1,f +3328,64567,71,2,f +3328,64567,80,1,t +3328,6536,0,1,f +3328,6558,1,2,f +3328,6632,71,2,f +3328,73590c03a,0,2,f +3328,75937,0,1,f +3328,78c02,179,12,f +3328,78c02,179,1,t +3328,85984,71,8,f +3328,87083,72,4,f +3328,87580,71,1,f +3328,88293,72,8,f +3328,88517,72,1,f +3328,92280,71,4,f +3328,970c00pr0512,19,1,f +3328,970x026,15,1,f +3328,973pr2223c01,15,1,f +3328,973pr2364c01,28,1,f +3330,2780,0,3,f +3330,30374,36,1,f +3330,32002,72,1,t +3330,32002,72,2,f +3330,32013,71,1,f +3330,32062,0,3,f +3330,32174,71,6,f +3330,32199,72,1,f +3330,3705,0,1,f +3330,43093,1,3,f +3330,4519,71,2,f +3330,47306,0,1,f +3330,47328,0,2,f +3330,50898,71,4,f +3330,50923,72,1,f +3330,53543,0,2,f +3330,53544,0,2,f +3330,53545,0,1,f +3330,53546,0,1,f +3330,53548,0,2,f +3330,53549,0,2,f +3330,53550,0,1,f +3330,53558pat01,27,1,f +3330,53585,0,1,f +3330,54262,0,1,f +3330,54271,135,1,f +3330,54821,182,4,f +3330,55823c01,72,1,f +3330,56160,135,2,f +3330,59426,72,1,f +3330,6558,0,1,f +3331,2447,47,1,t +3331,2447,47,1,f +3331,3022,71,1,f +3331,3023,1,1,f +3331,3626cpr0807,14,1,f +3331,3710,72,1,f +3331,3839b,72,1,f +3331,47457,1,1,f +3331,54200,14,1,t +3331,54200,14,2,f +3331,59900,57,4,f +3331,60478,72,4,f +3331,61252,71,2,f +3331,61409,1,2,f +3331,63868,14,2,f +3331,64644,0,2,f +3331,87781,321,1,f +3331,92280,71,2,f +3331,92946,1,4,f +3331,970c00pr0232,321,1,f +3331,973pr1785c01,321,1,f +3332,10884,27,1,f +3332,3002,71,1,f +3332,3005,33,2,f +3332,30136,71,2,f +3332,30153,45,1,f +3332,3020,322,1,f +3332,3023,27,1,f +3332,3031,2,1,f +3332,30367c,322,1,f +3332,3040b,72,2,f +3332,30565,2,1,f +3332,3062b,70,3,f +3332,3069b,41,1,f +3332,33291,5,3,f +3332,33320,14,1,f +3332,3659,72,1,f +3332,54200,33,1,f +3332,54200,2,2,f +3332,64644,308,1,f +3332,64647,57,1,f +3334,10172,179,1,f +3334,11153,4,2,f +3334,11211,4,3,f +3334,11458,15,2,f +3334,11477,4,2,f +3334,11477,15,2,f +3334,15068,4,2,f +3334,18973pr0001,40,1,f +3334,18974,4,4,f +3334,18975,72,2,f +3334,18976,0,4,f +3334,18977,0,4,f +3334,18979a,0,4,f +3334,18979b,0,4,t +3334,18980,0,1,f +3334,2431,4,2,f +3334,2446,15,1,f +3334,2447,47,1,t +3334,2447,47,1,f +3334,3001,1,1,f +3334,30029,0,1,f +3334,3003,40,2,f +3334,3004,14,2,f +3334,3020,71,3,f +3334,3022,0,1,f +3334,3023,14,2,f +3334,3023,4,2,f +3334,3024,15,2,f +3334,3024,0,4,f +3334,3024,4,1,t +3334,3024,4,4,f +3334,3024,15,1,t +3334,3024,0,1,t +3334,30377,0,2,f +3334,30377,0,1,t +3334,3040b,14,2,f +3334,3070b,15,1,t +3334,3070b,14,1,t +3334,3070b,14,2,f +3334,3070b,15,2,f +3334,3626bpr0645,14,1,f +3334,3678b,14,1,f +3334,3710,4,3,f +3334,3710,0,4,f +3334,3749,19,4,f +3334,3795,15,2,f +3334,3795,0,1,f +3334,3795,4,1,f +3334,3829c01,14,1,f +3334,4006,0,1,f +3334,4070,15,2,f +3334,4274,1,1,t +3334,4274,1,2,f +3334,43722,4,1,f +3334,43723,4,1,f +3334,44126,15,1,f +3334,48336,0,2,f +3334,54200,14,2,f +3334,54200,4,6,f +3334,54200,14,1,t +3334,54200,4,1,t +3334,60478,15,2,f +3334,6141,72,1,t +3334,6141,36,1,t +3334,6141,72,2,f +3334,6141,36,4,f +3334,6141,1,1,t +3334,6141,1,8,f +3334,6636,0,1,f +3334,6636,4,4,f +3334,75908stk01,9999,1,f +3334,85984,4,2,f +3334,87079,4,3,f +3334,87609,4,1,f +3334,93606,0,1,f +3334,970c00,4,1,f +3334,973pr2959c01,4,1,f +3334,99206,15,1,f +3334,99207,0,6,f +3334,99780,15,6,f +3334,99781,71,6,f +3335,3626apr0001,14,6,f +3335,3842a,7,4,f +3335,3843,0,2,f +3335,3843,4,2,f +3335,3846p4t,7,2,f +3335,3846p4u,7,2,f +3335,3847a,7,2,f +3335,3848,6,2,f +3335,3849,6,2,f +3335,3896,8,2,f +3335,970c00,15,2,f +3335,970c00,4,2,f +3335,970c00,0,2,f +3335,973p47c01,4,2,f +3335,973px45c01,0,2,f +3335,973px46c01,1,2,f +3336,12857,15,1,f +3336,3626cpb1261,78,1,f +3336,6141,36,1,f +3336,6141,0,2,f +3336,64798,15,1,f +3336,970c00pb370,0,1,f +3336,973pb1868c01,320,1,f +3337,2926,0,2,f +3337,30031,72,2,f +3337,3032,1,1,f +3337,32529,71,1,f +3337,3673,71,1,t +3337,3673,71,1,f +3337,3700,1,1,f +3337,3794a,0,3,f +3337,50254,0,4,f +3337,6019,1,2,f +3338,30488c01,0,1,f +3338,30492,2,1,f +3338,3062b,14,4,f +3338,3068b,2,3,f +3338,3795,2,1,f +3338,3832,15,1,f +3338,3957a,15,1,f +3338,4476b,15,2,f +3338,4495b,4,1,f +3338,4589,4,4,f +3338,72824p01,15,1,f +3340,2133,0,1,f +3340,2780,0,1,t +3340,2780,0,34,f +3340,3139,0,2,f +3340,32002,8,2,f +3340,32002,8,1,t +3340,32009,0,2,f +3340,32013,0,6,f +3340,32014,0,1,f +3340,32015,0,2,f +3340,32054,0,4,f +3340,32062,0,5,f +3340,32123b,7,1,t +3340,32123b,7,8,f +3340,32126,7,2,f +3340,32140,0,6,f +3340,32190,462,1,f +3340,32191,462,1,f +3340,32192,0,2,f +3340,32199,179,2,f +3340,32209,0,2,f +3340,32235,179,2,f +3340,32269,7,2,f +3340,32270,7,2,f +3340,32271,0,2,f +3340,32291,8,4,f +3340,32449,462,2,f +3340,32524,0,1,f +3340,32526,0,6,f +3340,32527,462,3,f +3340,32528,462,3,f +3340,32534,462,1,f +3340,32535,462,1,f +3340,3648b,7,4,f +3340,3705,0,4,f +3340,3706,0,2,f +3340,3707,0,3,f +3340,3713,7,1,t +3340,3713,7,6,f +3340,3737,0,2,f +3340,41677,0,4,f +3340,41678,0,2,f +3340,43093,1,6,f +3340,43093,1,4,t +3340,44292,7,2,f +3340,44294,7,2,f +3340,44309,0,2,f +3340,44771,0,4,f +3340,44772,7,4,f +3340,4519,7,4,f +3340,46452,135,1,f +3340,46453,179,1,f +3340,46454,4,1,f +3340,46455,135,2,f +3340,46456,135,2,f +3340,6536,0,6,f +3340,6538b,0,5,f +3340,6558,0,10,f +3340,6632,0,2,f +3340,78c08,179,2,f +3341,10201,0,3,f +3341,10928,72,1,f +3341,11089,0,4,f +3341,11090,0,2,f +3341,11097,297,1,f +3341,11097,41,2,f +3341,11098,297,1,f +3341,11098,41,1,f +3341,11100,71,2,f +3341,11107,179,1,f +3341,11127,41,1,f +3341,11127,182,1,f +3341,11153,72,6,f +3341,11214,72,1,f +3341,11233pr0002,71,1,f +3341,11458,72,2,f +3341,11476,71,3,f +3341,11477,15,3,f +3341,11477,308,4,f +3341,12825,71,2,f +3341,13361pr0005,0,1,f +3341,13695,15,2,f +3341,14210,15,1,f +3341,14395,15,4,f +3341,14413,71,4,f +3341,14718,71,1,f +3341,14769,4,1,f +3341,15083pr0001,15,1,f +3341,15083pr0002,28,1,f +3341,15090,179,1,f +3341,15091,41,1,f +3341,15107,41,4,f +3341,15365pat0001,1,1,f +3341,15571,0,2,f +3341,16659pr0002,15,1,f +3341,16768pat0001,4,1,f +3341,18500,9999,1,f +3341,18502,9999,1,f +3341,2335,0,1,f +3341,2420,1,3,f +3341,2431,41,16,f +3341,2431pr0028,72,1,f +3341,2454a,72,1,f +3341,2456,71,1,f +3341,2540,15,3,f +3341,2653,0,1,f +3341,2654,71,2,f +3341,2714a,71,1,f +3341,2736,71,2,f +3341,2780,0,21,f +3341,2780,0,6,t +3341,2817,71,1,f +3341,3001,15,2,f +3341,3002,72,6,f +3341,3003,15,1,f +3341,3004,72,1,f +3341,3004,323,13,f +3341,3004,28,1,f +3341,3005,71,6,f +3341,3009,72,1,f +3341,3010,71,6,f +3341,30157,70,1,f +3341,3020,71,2,f +3341,3021,0,10,f +3341,3021,15,3,f +3341,3023,57,4,f +3341,3023,71,25,f +3341,30237b,71,1,f +3341,3027,72,1,f +3341,3028,72,2,f +3341,3029,15,1,f +3341,3031,72,2,f +3341,3031,15,1,f +3341,3032,72,1,f +3341,3034,71,1,f +3341,3034,15,2,f +3341,30350b,41,1,f +3341,30357,323,2,f +3341,30374,297,1,f +3341,30374,41,3,f +3341,3040b,72,2,f +3341,30503,72,2,f +3341,30526,71,2,f +3341,30552,72,4,f +3341,3062b,41,20,f +3341,3068b,71,2,f +3341,3069b,41,5,f +3341,3069bpr0070,0,1,f +3341,3184,0,1,f +3341,32028,0,1,f +3341,32034,71,1,f +3341,32054,4,2,f +3341,32059,15,1,f +3341,32062,4,3,f +3341,32064b,4,3,f +3341,32073,71,1,f +3341,32269,0,1,f +3341,32270,0,1,f +3341,32271,4,2,f +3341,32316,1,2,f +3341,32348,0,2,f +3341,32526,0,1,f +3341,3460,15,2,f +3341,3622,15,3,f +3341,3626cpr1134,71,1,f +3341,3626cpr1206,0,1,f +3341,3626cpr1418,15,1,f +3341,3626cpr1419,15,1,f +3341,3626cpr1423,28,1,f +3341,3665,71,2,f +3341,3666,71,4,f +3341,3673,71,1,f +3341,3673,71,1,t +3341,3678b,0,2,f +3341,3700,0,6,f +3341,3701,15,7,f +3341,3701,72,2,f +3341,3705,0,1,f +3341,3706,0,1,f +3341,3710,0,3,f +3341,3710,15,22,f +3341,3713,71,2,t +3341,3713,71,2,f +3341,3738,0,1,f +3341,3749,19,2,f +3341,3794b,484,6,f +3341,3795,72,7,f +3341,3830,72,1,f +3341,3831,72,1,f +3341,3937,0,2,f +3341,4032a,1,2,f +3341,4032a,70,2,f +3341,40490,71,2,f +3341,41532,0,1,f +3341,41767,15,3,f +3341,41768,15,3,f +3341,41854,0,1,f +3341,41862,308,1,f +3341,4215b,41,1,f +3341,42610,71,2,f +3341,4274,1,2,f +3341,4274,71,1,t +3341,4274,71,1,f +3341,4274,1,1,t +3341,43093,1,5,f +3341,43712,484,1,f +3341,43722,484,2,f +3341,43722,15,1,f +3341,43723,484,2,f +3341,43723,15,1,f +3341,44302a,0,1,f +3341,44567a,72,1,f +3341,4460b,323,9,f +3341,44728,15,2,f +3341,4477,71,2,f +3341,4510,15,2,f +3341,4519,71,1,f +3341,4522,0,1,f +3341,45677,308,2,f +3341,4740,0,1,f +3341,47457,308,3,f +3341,47753,308,2,f +3341,47753,28,3,f +3341,47847,41,1,f +3341,47905,0,1,f +3341,48336,71,5,f +3341,4864b,41,3,f +3341,48723,70,1,f +3341,50950,1,2,f +3341,50951,0,2,f +3341,50951,0,1,t +3341,51739,28,3,f +3341,52501,72,1,f +3341,52501,15,2,f +3341,53451,297,1,t +3341,53451,297,1,f +3341,53451,0,3,t +3341,53451,0,10,f +3341,54200,0,1,f +3341,54200,0,1,t +3341,54383,28,1,f +3341,54384,28,1,f +3341,55013,72,1,f +3341,55981,71,1,f +3341,57909b,72,1,f +3341,59443,0,3,f +3341,59900,15,3,f +3341,59900,1,1,f +3341,60470a,0,1,f +3341,60471,71,5,f +3341,60478,4,4,f +3341,60478,0,2,f +3341,60481,71,2,f +3341,60483,72,2,f +3341,60752,179,1,f +3341,60897,0,3,f +3341,6091,1,2,f +3341,6091,72,5,f +3341,6108,71,3,f +3341,6112,15,2,f +3341,6134,4,2,f +3341,61409,484,2,f +3341,6141,0,13,f +3341,6141,57,1,t +3341,6141,57,6,f +3341,6141,0,3,t +3341,62113,0,1,f +3341,62462,0,2,f +3341,63864,0,1,f +3341,63868,70,4,f +3341,63868,15,6,f +3341,63965,70,1,f +3341,64567,0,1,f +3341,64567,0,1,t +3341,64799,71,1,f +3341,6541,72,9,f +3341,6587,28,2,f +3341,6630,0,1,f +3341,73983,15,1,f +3341,73983,0,6,f +3341,85959pat0003,36,1,f +3341,85975,297,2,f +3341,85984,4,1,f +3341,85984,0,1,f +3341,86038,15,1,f +3341,87079,15,1,f +3341,87083,72,1,f +3341,87087,484,2,f +3341,87421,72,2,f +3341,87580,15,1,f +3341,87580,1,1,f +3341,87580,0,1,f +3341,87620,71,16,f +3341,87747,179,1,f +3341,87747,179,1,t +3341,88072,0,2,f +3341,88292,15,2,f +3341,88393,15,6,f +3341,89201,0,1,f +3341,89519,148,1,f +3341,90258,72,7,f +3341,90612,41,1,f +3341,92099,15,1,f +3341,92107,15,1,f +3341,92220,41,5,f +3341,92280,71,4,f +3341,92690,70,1,f +3341,92690,297,2,f +3341,92692,0,1,f +3341,92946,15,6,f +3341,93571,0,1,f +3341,96874,25,1,t +3341,970c00pr0663,4,2,f +3341,970c00pr0665,28,1,f +3341,970d00pr0661,15,1,f +3341,970d00pr0665,28,1,f +3341,970d19pr0659,15,1,f +3341,973pr2660c01,71,1,f +3341,973pr2663c01,15,1,f +3341,973pr2666c01,4,1,f +3341,973pr2671c01,4,1,f +3341,973pr2672c01,28,1,f +3341,98138,41,3,t +3341,98138,41,5,f +3341,98138pr0023,182,2,t +3341,98138pr0023,182,2,f +3341,98263,71,1,f +3341,98286,71,2,f +3341,98560,15,1,f +3341,98564,148,2,f +3341,99207,0,2,f +3341,99780,0,2,f +3345,14226c11,0,1,f +3345,15573,71,3,f +3345,2357,71,3,f +3345,2412b,72,4,f +3345,2453a,71,3,f +3345,3001,71,6,f +3345,3002,71,2,f +3345,3004,71,14,f +3345,30044,71,1,f +3345,3005,71,13,f +3345,3009,71,3,f +3345,30137,71,2,f +3345,3020,72,2,f +3345,3020,70,4,f +3345,3020,71,2,f +3345,3022,72,1,f +3345,3022,70,4,f +3345,3022,19,3,f +3345,30237b,71,4,f +3345,3031,72,2,f +3345,3031,19,3,f +3345,3032,19,2,f +3345,3032,72,3,f +3345,3035,72,1,f +3345,3035,19,1,f +3345,3040b,71,2,f +3345,30565,72,2,f +3345,3062b,71,10,f +3345,3068bpr0220,19,2,f +3345,3068bprg0002,19,2,f +3345,3068bprg0003,19,2,f +3345,3070b,71,4,f +3345,3622,71,1,f +3345,3659,71,2,f +3345,3666,19,3,f +3345,3666,72,6,f +3345,3710,19,3,f +3345,3794b,70,10,f +3345,3794b,73,1,f +3345,3794b,320,1,f +3345,3794b,484,1,f +3345,3794b,297,3,f +3345,3794b,72,2,f +3345,3794b,27,1,f +3345,3794b,0,1,f +3345,3794b,2,1,f +3345,3795,19,2,f +3345,3957a,70,3,f +3345,3958,19,3,f +3345,44567a,72,1,f +3345,4490,71,4,f +3345,4495b,2,1,f +3345,47457,71,1,f +3345,48092,71,2,f +3345,48336,0,2,f +3345,59900,4,32,f +3345,60470a,0,2,f +3345,61252,71,2,f +3345,6141,0,6,f +3345,63868,71,2,f +3345,64647,57,2,f +3345,64776pat0001,0,1,f +3345,6636,19,3,f +3345,85863,71,4,f +3345,85863pr0112,297,1,f +3345,85863pr0113,484,1,f +3345,85863pr0114,179,1,f +3345,85863pr0115,378,4,f +3345,85863pr0116,0,1,f +3345,85863pr0117,320,1,f +3345,85863pr0118,2,1,f +3345,85863pr0119,27,1,f +3345,85863pr0120,4,5,f +3345,85863pr0121,148,11,f +3345,85863pr0122,212,1,f +3345,85984,71,5,f +3345,87580,19,20,f +3345,87580,70,8,f +3345,87580,212,5,f +3345,87580,71,7,f +3345,87580,73,5,f +3345,87580,72,9,f +3345,87580,28,23,f +3345,87580,0,2,f +3345,87620,71,2,f +3345,90195,71,2,f +3345,92585,4,1,f +3345,94161,70,1,f +3346,45449,118,4,f +3346,45451,41,4,f +3346,45451,45,4,f +3346,45452,47,4,f +3346,45452,45,8,f +3346,45452,43,4,f +3346,45462,42,2,f +3346,45462,45,2,f +3346,45463,52,4,f +3346,45463,45,4,f +3346,45463,41,4,f +3346,45464,42,2,f +3346,45464,45,2,f +3346,45464,41,2,f +3346,45499,45,1,f +3346,45499,47,1,f +3346,46277,13,4,f +3346,46277,26,4,f +3346,46277,118,4,f +3346,46277,5,4,f +3346,46286,52,4,f +3346,46286,45,4,f +3346,46286,41,4,f +3346,46296,47,2,f +3346,46296,41,2,f +3346,46296,182,2,f +3346,46296,45,2,f +3346,47912,45,1,f +3346,47912,47,1,f +3346,clikits001pb03,13,4,f +3346,clikits004,46,4,f +3346,clikits004,45,4,f +3346,clikits004,57,4,f +3346,clikits004,35,4,f +3346,clikits005,45,4,f +3346,clikits005,57,4,f +3346,clikits005,46,4,f +3346,clikits005,35,4,f +3346,clikits006pb02,11,2,f +3346,clikits018,230,1,f +3346,clikits018,47,2,f +3346,clikits021,41,1,f +3346,clikits026,45,2,f +3346,clikits026,46,2,f +3346,clikits037,5,2,f +3346,clikits040,47,1,f +3346,clikits078,41,2,f +3346,clikits080,5,2,f +3346,clikits081,462,2,f +3346,clikits084,45,2,f +3346,clikits084,46,2,f +3346,clikits097,45,1,f +3346,clikits098,45,1,f +3346,clikits099,45,1,f +3347,2780,0,1,f +3347,298c02,15,1,f +3347,3023,27,2,f +3347,30325,1,1,f +3347,30385,33,1,f +3347,3626bpr0559,14,1,f +3347,3700,0,1,f +3347,3795,72,1,f +3347,4079,0,1,f +3347,4590,72,1,f +3347,50950,27,1,f +3347,54200,27,1,f +3347,57563,25,1,f +3347,6014b,71,4,f +3347,6015,0,4,f +3347,6141,27,2,f +3347,6157,0,2,f +3347,6536,27,1,f +3347,970c00pr0122,1,1,f +3347,973pr1432c01,71,1,f +3348,2431,14,1,f +3348,2431,2,1,f +3348,2436,14,1,f +3348,2437,41,2,f +3348,2446,15,1,f +3348,2447,0,1,f +3348,2513,14,1,f +3348,3004,14,2,f +3348,3005,14,2,f +3348,3010,14,1,f +3348,3022,2,3,f +3348,3024,2,2,f +3348,3623,14,2,f +3348,3626bp05,14,1,f +3348,3660,14,2,f +3348,3710,2,2,f +3348,3788,14,1,f +3348,3821,14,1,f +3348,3822,14,1,f +3348,3829c01,1,1,f +3348,4212b,14,1,f +3348,4213,14,1,f +3348,4315,14,1,f +3348,6014a,15,4,f +3348,6015,0,4,f +3348,6141,47,2,f +3348,6141,46,2,f +3348,6141,46,1,t +3348,6141,47,1,t +3348,6157,0,2,f +3348,6550stk01,9999,1,t +3348,970c00,1,1,f +3348,973pr1156c01,1,1,f +3350,2555,0,1,f +3350,3020,0,1,f +3350,3021,72,1,f +3350,3068b,0,1,f +3350,3626bpr0566,14,1,f +3350,3794b,297,2,f +3350,3795,70,1,f +3350,3839b,72,1,f +3350,3844,148,1,f +3350,3847,135,1,f +3350,4085c,0,2,f +3350,4489b,70,2,f +3350,4497,0,3,f +3350,4589,0,1,f +3350,4733,0,1,f +3350,53451,135,4,f +3350,53451,135,1,t +3350,54200,288,1,t +3350,54200,288,5,f +3350,6019,71,2,f +3350,6157,0,1,f +3350,64644,308,1,f +3350,64647,57,1,f +3350,970c00,0,1,f +3350,973pr1625c01,288,1,f +3352,11090,72,1,f +3352,11153,0,2,f +3352,11458,0,2,f +3352,11477,26,2,f +3352,11477,85,2,f +3352,11477,30,2,f +3352,11477,0,2,f +3352,11816pr0100,78,1,f +3352,13349,0,1,f +3352,14769,191,1,f +3352,14769pr1058,14,1,f +3352,15068,272,4,f +3352,15068,30,1,f +3352,15392,72,1,t +3352,15392,72,2,f +3352,15403,0,2,f +3352,15573,0,1,f +3352,15573,85,1,f +3352,15712,72,1,f +3352,16925pr0100c01,0,1,f +3352,18649,0,1,f +3352,20482,47,2,f +3352,20482,47,1,t +3352,2357,15,4,f +3352,2412b,179,2,f +3352,2420,72,6,f +3352,25269,0,6,f +3352,25269,0,1,t +3352,2540,0,2,f +3352,26603,0,2,f +3352,2780,0,1,t +3352,2780,0,2,f +3352,28910,47,1,f +3352,28910,47,1,t +3352,29356,25,1,f +3352,30028,0,4,f +3352,3004,272,2,f +3352,3005,14,2,f +3352,3020,71,1,f +3352,3021,71,1,f +3352,3022,0,4,f +3352,3022,72,1,f +3352,3023,4,2,f +3352,3023,30,5,f +3352,3024,46,2,f +3352,3024,30,1,t +3352,3024,0,1,t +3352,3024,0,2,f +3352,3024,30,2,f +3352,3032,0,2,f +3352,3034,72,1,f +3352,30374,35,1,f +3352,3039,0,1,f +3352,3068b,191,1,f +3352,3069b,0,4,f +3352,3069bpr0174,85,1,f +3352,3070bpr0170,14,1,f +3352,3070bpr0170,14,1,t +3352,32015,0,2,f +3352,32062,4,2,f +3352,3623,272,2,f +3352,3660,0,1,f +3352,3666,272,2,f +3352,3666,0,2,f +3352,3700,0,7,f +3352,3701,71,1,f +3352,3702,0,1,f +3352,3708,0,1,f +3352,3710,30,1,f +3352,3710,272,2,f +3352,3832,0,1,f +3352,4032a,72,4,f +3352,4070,0,2,f +3352,41230stk01,9999,1,f +3352,41769,272,1,f +3352,41770,272,1,f +3352,41854,0,2,f +3352,4274,71,1,t +3352,4274,71,8,f +3352,43121,85,1,f +3352,4495b,26,1,f +3352,4600,0,2,f +3352,4733,15,1,f +3352,47457,27,1,f +3352,48092,0,2,f +3352,4871,0,1,f +3352,48729b,71,1,t +3352,48729b,71,1,f +3352,54200,46,2,t +3352,54200,46,4,f +3352,55706,272,2,f +3352,58176,182,2,f +3352,59443,72,1,f +3352,61252,14,2,f +3352,61252,0,2,f +3352,6141,57,2,t +3352,6141,42,1,t +3352,6141,57,4,f +3352,6141,42,2,f +3352,71155,0,1,f +3352,74967,71,4,f +3352,85080,0,2,f +3352,85861,71,1,f +3352,85861,71,1,t +3352,85984,30,4,f +3352,85984,191,1,f +3352,87620,30,2,f +3352,87752,41,1,f +3352,92280,71,2,f +3352,92456pr0201,30,1,f +3352,92946,0,4,f +3352,93095,191,1,f +3352,93606,30,1,f +3352,95188,272,4,f +3352,98313,179,1,f +3352,98397,71,1,f +3352,99207,0,2,f +3352,99780,72,1,f +3354,3001a,4,1,f +3354,3001a,1,2,f +3354,3004,47,4,f +3354,3005,15,2,f +3354,3008,1,2,f +3354,3010,15,2,f +3354,3020,15,1,f +3354,3023,0,2,f +3354,3031,15,1,f +3354,3032,0,1,f +3354,3035,0,1,f +3354,3040a,1,2,f +3354,3062a,0,2,f +3354,3063b,1,6,f +3354,3706,79,1,f +3354,x148,4,1,f +3355,3004p06,15,2,f +3355,3004p18,15,2,f +3355,3010ap04,15,1,f +3355,3039p05,15,1,f +3355,3039p10,0,1,f +3355,3039p23,15,1,f +3355,3039p32,15,1,f +3355,3039p34,15,1,f +3355,3039p68,4,1,f +3355,3040p32,15,2,f +3355,3068bp68,4,2,f +3355,3069bp13,15,2,f +3355,3069bp68,15,2,f +3355,3069bpb001,15,1,f +3355,3298p54,15,1,f +3355,3298p68,4,1,f +3355,4150p04,15,2,f +3355,4346p60,0,1,f +3355,4346p68,7,1,f +3356,122c01,7,4,f +3356,3004p06,1,2,f +3356,3010,1,2,f +3356,3020,1,2,f +3356,3023,0,1,f +3356,3023,1,3,f +3356,3034,1,1,f +3356,3039p34,1,1,f +3356,3062b,0,4,f +3356,3070b,36,2,f +3356,3324c01,1,1,f +3356,3626apr0001,14,1,f +3356,3639,1,1,f +3356,3640,1,1,f +3356,3666,1,1,f +3356,3710,1,2,f +3356,3737,0,1,f +3356,3795,1,2,f +3356,3829c01,1,1,f +3356,3838,15,1,f +3356,3839b,7,1,f +3356,3842a,15,1,f +3356,3876,36,1,f +3356,3941,15,3,f +3356,3941,0,4,f +3356,3942c,15,1,f +3356,3959,7,3,f +3356,3962a,0,1,f +3356,4070,1,2,f +3356,4081a,1,4,f +3356,4085a,1,4,f +3356,4162,1,2,f +3356,4275a,0,2,f +3356,4276a,0,2,f +3356,4286,1,2,f +3356,4287,1,4,f +3356,4288,0,8,f +3356,4360,0,1,f +3356,4588,7,1,f +3356,4590,1,3,f +3356,4591,15,2,f +3356,4596,15,2,f +3356,5102c12,0,2,f +3356,6141,46,4,f +3356,6141,36,2,f +3356,970c00,15,1,f +3356,973p90c05,15,1,f +3357,2654,0,1,f +3357,3004,1,2,f +3357,3022,1,1,f +3357,4617232,9999,1,f +3357,4617234,9999,1,f +3357,4617235,9999,1,f +3357,4617238,9999,1,f +3357,4617241,9999,1,f +3357,53451,15,1,f +3357,53705,297,2,f +3357,60752,135,1,f +3357,60897,0,1,f +3357,92338,72,1,f +3357,92547pr0010,179,1,f +3357,92690,71,1,f +3357,92691,297,1,f +3357,93062c01,15,2,f +3357,93064pr0001,15,1,f +3357,93609,15,2,f +3357,93761pr0002,15,1,f +3357,93794,4,1,f +3357,94351pr0003,0,1,f +3358,3020,2,1,f +3358,4623,72,2,f +3358,50949,0,2,f +3358,59230,71,3,t +3358,59230,71,1,f +3358,87580,4,2,f +3359,2456,1,1,f +3359,2456,14,1,f +3359,2456,4,1,f +3359,2456,15,1,f +3359,3001,4,7,f +3359,3001,0,4,f +3359,3001,1,8,f +3359,3001,14,7,f +3359,3001,15,8,f +3359,3002,15,4,f +3359,3002,1,4,f +3359,3002,4,4,f +3359,3002,14,4,f +3359,3002,0,2,f +3359,3003,1,10,f +3359,3003,4,8,f +3359,3003,15,10,f +3359,3003,0,4,f +3359,3003,14,8,f +3359,3004,1,20,f +3359,3004,0,10,f +3359,3004,4,16,f +3359,3004,15,20,f +3359,3004,14,16,f +3359,3005,1,20,f +3359,3005,14,17,f +3359,3005,4,17,f +3359,3005,15,20,f +3359,3005,0,12,f +3359,3008,4,4,f +3359,3008,0,2,f +3359,3008,1,2,f +3359,3008,14,4,f +3359,3008,15,2,f +3359,3009,14,6,f +3359,3009,1,8,f +3359,3009,0,2,f +3359,3009,15,8,f +3359,3009,4,6,f +3359,3010,14,12,f +3359,3010,15,14,f +3359,3010,1,14,f +3359,3010,4,12,f +3359,3010,0,8,f +3359,3622,4,6,f +3359,3622,0,4,f +3359,3622,15,8,f +3359,3622,1,8,f +3359,3622,14,6,f +3360,2039,15,2,f +3360,2150stk01,9999,1,t +3360,2357,0,4,f +3360,2357,4,9,f +3360,2412b,14,1,f +3360,2431,0,2,f +3360,2436,14,1,f +3360,2441,0,1,f +3360,2453a,4,1,f +3360,2454a,4,3,f +3360,2456,4,4,f +3360,2456,0,2,f +3360,2465,4,2,f +3360,2465,0,5,f +3360,2495,4,1,f +3360,2496,0,1,f +3360,2496,0,1,t +3360,2524,6,1,f +3360,2583,0,2,f +3360,2617,7,2,f +3360,2642,7,2,f +3360,3001,4,2,f +3360,3002,4,3,f +3360,3003,15,2,f +3360,3003,4,4,f +3360,3004,7,16,f +3360,3004,0,5,f +3360,3004,4,24,f +3360,3004,14,6,f +3360,3005,4,8,f +3360,3005,0,4,f +3360,3005,47,1,f +3360,3006,4,2,f +3360,3006,0,1,f +3360,3007,0,1,f +3360,3007,14,1,f +3360,3007,4,3,f +3360,3008,15,1,f +3360,3008,4,4,f +3360,3008,0,5,f +3360,3009,4,6,f +3360,3010,14,1,f +3360,3010,4,5,f +3360,3010,0,3,f +3360,3020,7,6,f +3360,3020,14,1,f +3360,3022,4,4,f +3360,3022,0,4,f +3360,3022,7,4,f +3360,3023,4,18,f +3360,3023,15,2,f +3360,3023,14,8,f +3360,3024,15,1,f +3360,3024,4,6,f +3360,3028,7,1,f +3360,3031,14,1,f +3360,3032,14,2,f +3360,3033,0,2,f +3360,3033,7,2,f +3360,3034,14,2,f +3360,3034,7,2,f +3360,3034,15,1,f +3360,3036,7,4,f +3360,3039,4,2,f +3360,3039p12,0,1,f +3360,3039p23,7,1,f +3360,3039p34,7,1,f +3360,3040b,14,2,f +3360,3062b,4,26,f +3360,3068b,14,5,f +3360,3069b,4,1,f +3360,3069b,7,4,f +3360,3069b,14,1,f +3360,3069bpr0099,15,4,f +3360,3070b,4,1,t +3360,3070b,4,5,f +3360,3070b,15,4,f +3360,3070b,7,2,f +3360,3070b,15,1,t +3360,3070b,7,1,t +3360,3070bpc2,15,2,f +3360,3070bpc2,15,1,t +3360,3081cc01,15,12,f +3360,3185,14,4,f +3360,3297,0,14,f +3360,3298,0,4,f +3360,3298,4,4,f +3360,3299,0,1,f +3360,3300,0,1,f +3360,3455,4,2,f +3360,3460,7,1,f +3360,3460,4,3,f +3360,3622,4,11,f +3360,3622,0,2,f +3360,3623,4,4,f +3360,3623,14,2,f +3360,3624,4,1,f +3360,3626bp02,14,2,f +3360,3626bp03,14,3,f +3360,3626bp04,14,3,f +3360,3633,14,4,f +3360,3641,0,12,f +3360,3660,4,2,f +3360,3665,4,2,f +3360,3666,0,2,f +3360,3666,4,2,f +3360,3675,0,6,f +3360,3679,7,4,f +3360,3680,0,3,f +3360,3680,4,1,f +3360,3710,4,4,f +3360,3710,0,1,f +3360,3710,14,2,f +3360,3710,7,1,f +3360,3730,0,3,f +3360,3731,0,2,f +3360,3741,2,2,f +3360,3742,14,2,t +3360,3742,14,6,f +3360,3754,4,4,f +3360,3755,4,1,f +3360,3788,14,1,f +3360,3794a,4,1,f +3360,3821,0,1,f +3360,3822,0,1,f +3360,3829c01,14,1,f +3360,3833,15,2,f +3360,3853,15,4,f +3360,3854,15,8,f +3360,3855,47,1,f +3360,3898,15,1,f +3360,3899,1,3,f +3360,3900,15,1,f +3360,3901,6,1,f +3360,3937,4,1,f +3360,3938,4,1,f +3360,3941,46,2,f +3360,3941,4,12,f +3360,3960,15,2,f +3360,4033,0,1,f +3360,4033,15,2,f +3360,4070,14,2,f +3360,4079,14,7,f +3360,4079,4,1,f +3360,4150pr0001,15,1,f +3360,4161,0,10,f +3360,4162,7,7,f +3360,4175,4,4,f +3360,4282,4,1,f +3360,4282,7,3,f +3360,4287,4,2,f +3360,4345bp03,14,1,f +3360,4346p03,14,1,f +3360,4449,15,3,f +3360,4449,0,1,f +3360,4449,6,4,f +3360,4477,7,6,f +3360,4485,4,1,f +3360,4509,0,1,f +3360,4530,0,1,f +3360,4532,14,1,f +3360,4533,15,1,f +3360,4589,7,5,f +3360,4600,0,4,f +3360,4624,15,12,f +3360,47899c01,15,1,f +3360,4865a,14,3,f +3360,4865a,0,1,f +3360,57503,334,1,f +3360,57504,334,1,f +3360,57505,334,1,f +3360,57506,334,1,f +3360,6093,0,1,f +3360,6141,34,1,f +3360,6141,47,1,t +3360,6141,4,1,t +3360,6141,4,18,f +3360,6141,47,2,f +3360,6141,7,5,f +3360,6141,34,1,t +3360,6141,36,1,t +3360,6141,7,1,t +3360,6141,36,3,f +3360,73194c01,15,1,f +3360,970c00,7,2,f +3360,970c00,1,2,f +3360,970c00,0,2,f +3360,970x026,15,1,f +3360,970x026,1,1,f +3360,973p73c01,2,1,f +3360,973p83c01,14,1,f +3360,973px2c01,1,1,f +3360,973px3c01,15,1,f +3360,973px5c01,15,1,f +3360,973px8c01,1,2,f +3360,973px9c01,0,1,f +3360,x53,15,2,f +3361,2437,47,2,f +3361,2456,1,2,f +3361,2456,4,1,f +3361,2456,15,2,f +3361,2456,14,1,f +3361,3001,4,22,f +3361,3001,0,11,f +3361,3001,15,22,f +3361,3001,2,11,f +3361,3001,1,22,f +3361,3001,14,22,f +3361,3002,4,6,f +3361,3002,0,3,f +3361,3002,14,6,f +3361,3002,1,6,f +3361,3002,2,3,f +3361,3002,15,6,f +3361,3003,2,30,f +3361,3003,1,62,f +3361,3003,15,62,f +3361,3003,4,62,f +3361,3003,0,30,f +3361,3003,14,62,f +3361,3004,4,12,f +3361,3004,0,6,f +3361,3004,2,6,f +3361,3004,14,12,f +3361,3004,15,12,f +3361,3004,1,12,f +3361,3005,14,8,f +3361,3005,0,4,f +3361,3005,15,8,f +3361,3005,2,4,f +3361,3005,4,8,f +3361,3005,1,8,f +3361,30055,0,1,f +3361,3005pe1,14,4,f +3361,3007,14,1,f +3361,3007,1,1,f +3361,3007,4,1,f +3361,3007,15,1,f +3361,3008,4,1,f +3361,3008,14,1,f +3361,3008,1,2,f +3361,3008,15,2,f +3361,3009,15,3,f +3361,3009,4,2,f +3361,3009,1,3,f +3361,3009,14,2,f +3361,3010,14,11,f +3361,3010,2,8,f +3361,3010,1,11,f +3361,3010,4,11,f +3361,3010,15,11,f +3361,3010,0,8,f +3361,3020,71,2,f +3361,3020,15,2,f +3361,3021,71,2,f +3361,3022,71,2,f +3361,3034,71,2,f +3361,3039,47,2,f +3361,3298,15,2,f +3361,3622,15,4,f +3361,3622,14,4,f +3361,3622,1,4,f +3361,3622,4,4,f +3361,3622,2,2,f +3361,3622,0,2,f +3361,3660,14,2,f +3361,3710,15,2,f +3361,3747b,15,2,f +3361,3957a,0,2,f +3361,4286,15,2,f +3361,4287,15,2,f +3361,4600,71,2,f +3361,6014b,15,4,f +3361,6015,0,4,f +3361,6141,33,4,f +3361,6141,36,4,f +3363,2339,6,6,f +3363,2357,0,2,f +3363,2417,2,6,f +3363,2420,0,2,f +3363,2423,2,4,f +3363,2431,0,3,f +3363,2454a,0,1,f +3363,2456,0,1,f +3363,2458,4,2,f +3363,2458,7,2,f +3363,2488,2,2,f +3363,2540,0,2,f +3363,2555,0,1,f +3363,2570,8,1,f +3363,2817,4,2,f +3363,298c03,7,1,f +3363,3004,7,1,f +3363,3004,0,5,f +3363,3005,0,4,f +3363,3020,0,1,f +3363,3023,1,1,f +3363,3023,4,2,f +3363,3023,0,3,f +3363,3023,7,7,f +3363,3024,4,3,f +3363,3024,0,4,f +3363,3031,0,1,f +3363,3033,0,1,f +3363,3034,0,1,f +3363,3039,7,2,f +3363,3039,0,4,f +3363,3062b,7,8,f +3363,3063b,7,4,f +3363,3069b,0,2,f +3363,3315,0,1,f +3363,3403,0,1,f +3363,3404,0,1,f +3363,3455,0,3,f +3363,3460,0,1,f +3363,3597,0,1,f +3363,3623,6,8,f +3363,3623,0,1,f +3363,3626bp35,14,1,f +3363,3626bpr0001,14,1,f +3363,3626bpr0895,15,1,f +3363,3626bpx23,14,1,f +3363,3626bpx97,14,1,f +3363,3659,0,2,f +3363,3665,7,2,f +3363,3666,7,1,f +3363,3666,4,1,f +3363,3679,7,2,f +3363,3680,0,2,f +3363,3710,0,3,f +3363,3794a,0,5,f +3363,3794a,4,2,f +3363,3794a,7,1,f +3363,3795,4,1,f +3363,3795,0,1,f +3363,3839b,1,1,f +3363,3844,8,1,f +3363,3846p48,6,1,f +3363,3846p4d,15,1,f +3363,3847,8,3,f +3363,3849,0,2,f +3363,3857,2,1,f +3363,3896,0,1,f +3363,3958,0,1,f +3363,3959,0,2,f +3363,4032a,6,1,f +3363,4070,7,1,f +3363,4070,0,3,f +3363,4085c,0,5,f +3363,4085c,4,1,f +3363,4150,1,1,f +3363,4162,0,2,f +3363,4275b,0,1,f +3363,4460a,7,2,f +3363,4477,0,1,f +3363,4495a,1,2,f +3363,4498,6,2,f +3363,4499,6,2,f +3363,4506,2,1,f +3363,4506,6,1,f +3363,4529,0,1,f +3363,4589,46,2,f +3363,4599a,7,1,f +3363,4600,0,1,f +3363,4624,7,2,f +3363,4626,0,1,f +3363,4738b,6,1,f +3363,4739b,6,1,f +3363,6019,0,2,f +3363,6020,6,2,f +3363,6066,8,1,f +3363,6082,8,2,f +3363,6083,8,1,f +3363,6126a,57,3,f +3363,6141,7,3,f +3363,6141,36,1,t +3363,6141,7,1,t +3363,6141,34,1,f +3363,6141,14,1,f +3363,6141,14,1,t +3363,6141,46,1,f +3363,6141,34,1,t +3363,6141,46,1,t +3363,6141,36,1,f +3363,6260,15,1,f +3363,6265,15,2,f +3363,6266,15,2,f +3363,87692,4,1,t +3363,87692,1,1,t +3363,87693,1,1,f +3363,87693,4,1,f +3363,87694,1,1,t +3363,87694,4,1,t +3363,970c00,7,1,f +3363,970c00,2,1,f +3363,970x021,0,1,f +3363,970x026,4,1,f +3363,973p4dc01,4,1,f +3363,973p4dc02,15,1,f +3363,973pb0092c01,6,1,f +3363,973pb0093c01,6,1,f +3366,3001,15,14,f +3366,3002,15,8,f +3366,3003,15,12,f +3366,3004,15,8,f +3366,3005,15,4,f +3366,3006,15,1,f +3366,3007,15,1,f +3366,3008,15,2,f +3366,3009,15,4,f +3366,3010,15,4,f +3366,3622,15,4,f +3368,2335pr0001,15,1,f +3368,2343,297,1,f +3368,2449,308,2,f +3368,2449,72,4,f +3368,2453a,70,3,f +3368,2526,297,1,f +3368,2526,1,2,f +3368,2526,1,1,t +3368,2526,297,1,t +3368,2527,4,1,f +3368,2528,0,1,f +3368,2528pr0001,0,1,f +3368,2530,72,1,t +3368,2530,72,3,f +3368,2542,15,1,t +3368,2542,15,2,f +3368,2543,288,1,f +3368,2544,0,1,f +3368,2545pr0001,0,1,f +3368,2546pat0001,4,1,f +3368,2549,28,1,f +3368,2551,272,1,f +3368,2561,70,3,f +3368,2562,70,2,f +3368,3003,72,1,f +3368,3003,288,3,f +3368,3004,0,2,f +3368,30044,70,2,f +3368,30046,297,3,f +3368,3009,70,4,f +3368,3009,72,1,f +3368,30115,4,2,f +3368,30136,308,8,f +3368,30136,70,18,f +3368,30137,70,6,f +3368,30153,34,1,f +3368,30153,46,1,f +3368,30153,36,1,f +3368,30153,42,1,f +3368,30176,2,2,f +3368,3020,70,6,f +3368,3021,0,3,f +3368,3022,2,1,f +3368,3023,19,5,f +3368,3023,2,1,f +3368,30237a,71,1,f +3368,3030,72,3,f +3368,3031,70,1,f +3368,3032,72,1,f +3368,3033,72,2,f +3368,3034,19,2,f +3368,3034,70,1,f +3368,30363,71,2,f +3368,30383,0,6,f +3368,3040b,288,6,f +3368,3040b,0,4,f +3368,3040b,70,2,f +3368,3048c,70,1,f +3368,30503,70,1,f +3368,30526,71,2,f +3368,3062b,70,8,f +3368,3062b,0,3,f +3368,3068b,0,1,f +3368,3068b,19,1,f +3368,3068bpr0139a,19,1,f +3368,32000,0,2,f +3368,32028,0,1,f +3368,32529,0,2,f +3368,3298,70,1,f +3368,33121,191,1,f +3368,3455,0,1,f +3368,3581,0,1,f +3368,3623,4,2,f +3368,3626bpr0190,15,5,f +3368,3626bpr0348,14,1,f +3368,3626bpr0411,14,1,f +3368,3626bpr0541,14,1,f +3368,3626bpr0564,14,1,f +3368,3626bpr0568,14,1,f +3368,3659,0,2,f +3368,3660,70,6,f +3368,3660,288,2,f +3368,3666,19,2,f +3368,3673,71,2,f +3368,3673,71,1,t +3368,3679,71,4,f +3368,3680,0,4,f +3368,3684,72,5,f +3368,3700,19,1,f +3368,3700,71,1,f +3368,3701,19,3,f +3368,3709,71,1,f +3368,3710,0,2,f +3368,3710,19,1,f +3368,3794b,70,2,f +3368,3794b,297,1,f +3368,3832,70,1,f +3368,3941,70,9,f +3368,3941,70,2,t +3368,3957a,71,3,f +3368,3958,1,1,f +3368,40241,70,1,f +3368,4032a,19,5,f +3368,4070,2,2,f +3368,43888,70,2,f +3368,4460b,71,2,f +3368,4519,71,2,f +3368,4589,19,12,f +3368,4589,320,5,f +3368,4738a,297,1,f +3368,4739a,297,1,f +3368,47457,72,2,f +3368,4790,70,1,f +3368,48002b,0,1,f +3368,54200,70,1,f +3368,54200,70,1,t +3368,57503,334,1,f +3368,57504,334,1,f +3368,57505,334,1,f +3368,57506,334,1,f +3368,59229,72,1,f +3368,59230,15,1,t +3368,59230,15,2,f +3368,59349,72,2,f +3368,60115,15,1,f +3368,60471,71,6,f +3368,60474,0,1,f +3368,6060,70,6,f +3368,6117,72,1,f +3368,61485,0,1,f +3368,61780,70,1,f +3368,6266,15,2,f +3368,62696,308,1,f +3368,64644,297,1,f +3368,64647,4,1,f +3368,64648,135,1,f +3368,64951,70,1,f +3368,6558,1,1,f +3368,6636,70,1,f +3368,84622,0,1,f +3368,84943,148,1,f +3368,970c00,1,1,f +3368,970c00,2,1,f +3368,970c00,15,2,f +3368,970d09,0,1,f +3368,973pr1440c01,1,1,f +3368,973pr1441c01,4,2,f +3368,973pr1442c01,0,1,f +3368,973pr1449c01,0,1,f +3369,30150,4,1,f +3369,4589,40,6,f +3371,10314,26,1,f +3371,11211,14,1,f +3371,11211,19,2,f +3371,11476,15,4,f +3371,11477,4,1,f +3371,11602pr0001a,0,1,f +3371,11618,26,1,f +3371,11618,26,1,t +3371,11816pr0002,78,1,f +3371,11816pr0017,78,1,f +3371,13459,15,1,f +3371,14707,15,1,f +3371,14769,71,3,f +3371,14769,29,4,f +3371,15395,4,2,f +3371,15396,4,1,f +3371,15470,297,5,f +3371,15470,29,5,f +3371,15470,179,1,f +3371,15470,29,2,t +3371,15470,297,2,t +3371,15470,70,1,t +3371,15470,70,1,f +3371,15470,179,1,t +3371,15533,84,6,f +3371,15535,72,1,f +3371,15573,4,6,f +3371,18646,29,1,f +3371,18653,15,1,f +3371,18853,29,1,t +3371,18853,29,1,f +3371,20310,15,2,f +3371,22667,27,1,f +3371,22667,27,1,t +3371,22888,15,1,f +3371,2357,15,2,f +3371,2357,19,1,f +3371,23969,26,4,f +3371,23986,5,1,f +3371,2412b,179,9,f +3371,2417,2,1,f +3371,2420,15,1,f +3371,2423,2,2,f +3371,2431,15,1,f +3371,2447,47,1,f +3371,2447,47,1,t +3371,2454a,72,2,f +3371,2456,15,1,f +3371,298c02,4,1,f +3371,298c02,4,1,t +3371,3001,15,1,f +3371,3001,19,4,f +3371,3004,19,2,f +3371,3004,15,3,f +3371,3005,4,2,f +3371,3005,47,5,f +3371,3005,15,4,f +3371,3008,15,1,f +3371,3009,19,2,f +3371,3010,15,3,f +3371,3010,19,4,f +3371,3010,72,1,f +3371,30151b,47,3,f +3371,30171,26,1,f +3371,3020,72,2,f +3371,3021,15,2,f +3371,3021,4,1,f +3371,3022,84,5,f +3371,3022,71,3,f +3371,3022,29,4,f +3371,3023,36,1,f +3371,3023,40,2,f +3371,3023,19,2,f +3371,3023,26,4,f +3371,3023,212,5,f +3371,3023,15,3,f +3371,3024,14,1,f +3371,3024,14,1,t +3371,3024,15,6,f +3371,3024,15,2,t +3371,3024,26,1,t +3371,3024,26,1,f +3371,3031,19,1,f +3371,3031,71,2,f +3371,3036,19,1,f +3371,30367b,212,1,f +3371,3039,14,1,f +3371,3039pr0020,15,1,f +3371,30562,47,2,f +3371,30565,19,1,f +3371,30613,15,2,f +3371,3065,40,2,f +3371,3065,47,4,f +3371,3069bpr0100,2,1,f +3371,3070b,4,1,t +3371,3070b,4,4,f +3371,3070bpr0007,71,1,t +3371,3070bpr0007,71,1,f +3371,3176,14,1,f +3371,3185,15,2,f +3371,3245b,15,1,f +3371,3245b,19,2,f +3371,33183,10,1,t +3371,33183,10,3,f +3371,33243,29,2,f +3371,33291,5,2,t +3371,33291,5,5,f +3371,33291,191,3,f +3371,33291,4,2,t +3371,33291,191,2,t +3371,33291,4,5,f +3371,3464,15,2,f +3371,3622,15,1,f +3371,3623,19,2,f +3371,3623,14,1,f +3371,3623,72,1,f +3371,3623,4,1,f +3371,3623,15,4,f +3371,3626c,47,1,f +3371,3659,15,2,f +3371,3665,15,1,f +3371,3666,26,6,f +3371,3679,71,3,f +3371,3680,15,3,f +3371,3706,0,1,f +3371,3706,4,1,f +3371,3709,71,1,f +3371,3710,26,2,f +3371,3710,29,2,f +3371,3738,15,1,f +3371,3741,2,2,f +3371,3741,2,1,t +3371,3742,4,8,f +3371,3794b,71,2,f +3371,3795,29,1,f +3371,3795,19,5,f +3371,3899,5,2,f +3371,3899,4,2,f +3371,3937,71,1,f +3371,3940b,72,1,f +3371,3941,15,4,f +3371,4032a,4,2,f +3371,4032a,15,7,f +3371,4477,15,3,f +3371,48092,84,2,f +3371,50950,26,10,f +3371,50950,29,4,f +3371,57895,47,2,f +3371,59349,15,1,f +3371,59349,47,1,f +3371,59443,4,1,f +3371,59895,0,2,f +3371,59895,0,1,t +3371,59900,15,5,f +3371,59900,297,2,f +3371,6003,19,1,f +3371,60474,212,1,f +3371,60474,15,2,f +3371,60478,14,1,f +3371,60596,15,3,f +3371,60596,72,1,f +3371,60616a,47,2,f +3371,60897,71,4,f +3371,6091,15,1,f +3371,6091,4,2,f +3371,6112,15,1,f +3371,6134,0,1,f +3371,6141,71,3,f +3371,6141,2,5,f +3371,6141,47,2,f +3371,6141,2,2,t +3371,6141,36,2,f +3371,6141,158,3,t +3371,6141,71,1,t +3371,6141,15,3,f +3371,6141,158,4,f +3371,6141,70,15,f +3371,6141,19,3,t +3371,6141,36,1,t +3371,6141,19,14,f +3371,6141,47,1,t +3371,6141,70,3,t +3371,6141,15,1,t +3371,6179,0,1,f +3371,6190,4,1,f +3371,62462,4,1,f +3371,6256,29,1,f +3371,64567,297,1,f +3371,64567,297,1,t +3371,85984,29,1,f +3371,87079,26,1,f +3371,87079,71,2,f +3371,87079,19,2,f +3371,87087,4,1,f +3371,87552,40,4,f +3371,87552,47,3,f +3371,87580,71,4,f +3371,87580,84,2,f +3371,88293,212,2,f +3371,91405,212,1,f +3371,92255,226,1,f +3371,92257,308,1,f +3371,92438,212,1,f +3371,92456pr0062c01,78,1,f +3371,92456pr0094c01,78,1,f +3371,92692,15,2,f +3371,92818pr0002c01,26,1,f +3371,92820pr0011c01,30,1,f +3371,92950,15,2,f +3371,93273,72,1,f +3371,93273,212,3,f +3371,95344,297,1,f +3371,95344,297,1,t +3371,98138,36,1,t +3371,98138,46,1,t +3371,98138,36,1,f +3371,98138,71,3,f +3371,98138,46,1,f +3371,98138,71,1,t +3371,98138pr0013,15,1,t +3371,98138pr0013,15,2,f +3371,98138pr0018,84,1,t +3371,98138pr0018,84,2,f +3371,98283,84,3,f +3371,98397,71,1,f +3371,99780,15,2,f +3371,99780,0,1,f +3372,132a,0,4,f +3372,3001a,47,2,f +3372,3001a,4,32,f +3372,3001a,15,28,f +3372,3001a,1,2,f +3372,3001a,14,2,f +3372,3002a,4,10,f +3372,3002a,15,10,f +3372,3003,14,4,f +3372,3003,47,2,f +3372,3003,4,10,f +3372,3003,0,3,f +3372,3003,15,10,f +3372,3004,14,2,f +3372,3004,4,10,f +3372,3004,47,2,f +3372,3004,15,8,f +3372,3004,0,2,f +3372,3005,15,4,f +3372,3005,4,4,f +3372,3006,4,1,f +3372,3006,15,1,f +3372,3007,4,2,f +3372,3007,15,2,f +3372,3009,15,2,f +3372,3009,4,2,f +3372,3034,15,2,f +3372,3035,15,2,f +3372,32bc01,4,1,f +3372,453bc01,4,2,f +3372,645bc01,4,2,f +3372,700ex,7,1,f +3372,7039,4,4,f +3372,7049b,15,2,f +3374,23306,383,1,f +3374,2340,0,4,f +3374,2343,47,1,f +3374,2357,19,6,f +3374,2412b,0,8,f +3374,2420,70,2,f +3374,2431,71,5,f +3374,2432,70,4,f +3374,2444,0,11,f +3374,2445,70,7,f +3374,2450,19,6,f +3374,2454a,19,2,f +3374,2460,71,1,f +3374,2489,70,1,f +3374,2555,0,22,f +3374,2569,72,2,f +3374,2621,19,1,f +3374,2654,19,15,f +3374,2730,0,2,f +3374,2780,0,6,f +3374,2780,0,1,t +3374,2817,71,1,f +3374,2877,70,27,f +3374,298c02,0,1,t +3374,298c02,0,1,f +3374,2991,72,4,f +3374,3001,70,4,f +3374,3003,70,6,f +3374,3005,19,2,f +3374,30055,0,8,f +3374,3006,71,2,f +3374,3007,19,2,f +3374,3008,72,3,f +3374,3010,70,10,f +3374,30104,72,1,f +3374,30115,4,1,f +3374,30155,72,1,f +3374,3020,72,17,f +3374,3020,70,5,f +3374,3021,70,14,f +3374,3022,71,6,f +3374,3023,71,9,f +3374,3023,70,2,f +3374,30238,42,1,f +3374,3029,70,5,f +3374,3029,72,1,f +3374,3029,0,1,f +3374,3031,72,3,f +3374,3031,19,4,f +3374,3032,19,6,f +3374,3033,0,6,f +3374,3034,19,8,f +3374,3035,70,2,f +3374,30350b,70,28,f +3374,30357,70,8,f +3374,30361dps1,15,1,f +3374,30362,15,2,f +3374,30363,70,2,f +3374,30367apr01,15,1,f +3374,30374,42,1,f +3374,30374,0,1,f +3374,3039,70,6,f +3374,3039,19,8,f +3374,3040b,70,6,f +3374,30414,71,3,f +3374,3048c,71,1,f +3374,30503,70,4,f +3374,3062b,0,12,f +3374,3062b,42,2,f +3374,3063b,0,4,f +3374,3068b,71,6,f +3374,3068b,72,18,f +3374,3069b,72,20,f +3374,32000,72,1,f +3374,32002,72,1,t +3374,32002,72,2,f +3374,32013,72,14,f +3374,32059,71,2,f +3374,32174,72,2,f +3374,32192,0,4,f +3374,32474,0,2,f +3374,32530,0,1,f +3374,3297,71,1,f +3374,33057,484,2,f +3374,3307,71,2,f +3374,3308,72,5,f +3374,33320,2,1,f +3374,3460,71,6,f +3374,3626b,0,1,f +3374,3626bpr0342,78,1,f +3374,3626bpr0378,78,1,f +3374,3626bpr0454,70,1,f +3374,3626bpr0635,78,1,f +3374,3660,72,6,f +3374,3665,70,6,f +3374,3673,71,2,f +3374,3673,71,1,t +3374,3678b,72,6,f +3374,3679,71,1,f +3374,3680,0,1,f +3374,3700,0,2,f +3374,3701,19,1,f +3374,3705,0,4,f +3374,3707,0,6,f +3374,3710,19,13,f +3374,3794a,19,13,f +3374,3795,70,6,f +3374,3832,0,4,f +3374,3899,47,1,f +3374,3901,70,1,f +3374,3901,19,1,f +3374,3937,71,14,f +3374,3938,15,4,f +3374,3941,47,4,f +3374,3941,72,3,f +3374,3957a,0,2,f +3374,4032a,70,2,f +3374,40379,378,1,f +3374,40396,378,1,f +3374,4070,71,4,f +3374,4070,70,12,f +3374,4085c,72,2,f +3374,4095,0,1,f +3374,4151b,19,3,f +3374,4162,0,5,f +3374,42022,72,2,f +3374,42446,71,1,f +3374,43093,1,7,f +3374,4345b,42,1,f +3374,4346,15,1,f +3374,4349,0,3,f +3374,4360,0,2,f +3374,43710,70,2,f +3374,43711,70,2,f +3374,43898,72,4,f +3374,44126,0,1,f +3374,44301a,71,2,f +3374,44302a,72,2,f +3374,44361,378,1,f +3374,4460b,72,2,f +3374,44675,71,1,f +3374,44728,72,3,f +3374,44757,378,1,f +3374,4477,70,2,f +3374,4519,71,6,f +3374,4528,0,1,f +3374,4599a,15,1,f +3374,47397,70,2,f +3374,47398,70,2,f +3374,47404,70,6,f +3374,47544,72,1,f +3374,47753,28,2,f +3374,48336,0,4,f +3374,48336,19,4,f +3374,4855,72,1,f +3374,4865a,19,1,f +3374,53451,15,12,f +3374,53451,15,1,t +3374,53705,132,2,f +3374,54200,72,1,f +3374,55629,484,2,f +3374,6016,72,1,f +3374,6019,71,4,f +3374,6093,70,1,f +3374,6108,0,2,f +3374,6111,71,11,f +3374,6134,71,10,f +3374,6141,57,9,f +3374,6141,57,1,t +3374,6191,0,11,f +3374,6232,72,6,f +3374,6538b,0,5,f +3374,6541,72,6,f +3374,6558,0,3,f +3374,6583,70,2,f +3374,6628,0,8,f +3374,6636,72,2,f +3374,73983,19,1,f +3374,75c08,0,4,f +3374,75c15,0,1,f +3374,75c18,0,5,f +3374,772,19,2,f +3374,970c00,378,1,f +3374,970c00,0,1,f +3374,970c00,70,1,f +3374,970c00pr0107,78,1,f +3374,970x192,71,1,f +3374,970x192,19,1,f +3374,973c32,70,1,f +3374,973pr1133c01,0,1,f +3374,973pr1136c01,78,1,f +3374,973pr1246c01,71,1,f +3374,973pr1252c01,0,1,f +3374,973pr1253c01,15,1,f +3374,x50px1,2,1,f +3375,2780,0,5,f +3375,2780,0,1,t +3375,32062,4,4,f +3375,32073,71,1,f +3375,43093,1,5,f +3375,47306,15,1,f +3375,47312,72,1,f +3375,49423,135,1,f +3375,53545,15,1,f +3375,57527,135,1,f +3375,57536,42,1,f +3375,60176,72,5,f +3375,60919pat01,0,2,f +3375,61801,135,2,f +3375,61806,135,4,f +3375,6536,0,4,f +3376,2744,2,1,f +3376,2850a,47,1,f +3376,2851,14,1,f +3376,2852,7,1,f +3376,2853,7,2,f +3376,2905,0,2,f +3376,32002,8,1,t +3376,32002,8,4,f +3376,32056,0,2,f +3376,32062,0,2,f +3376,32123b,7,1,t +3376,32123b,7,2,f +3376,32193,0,4,f +3376,3705,0,2,f +3376,6536,2,1,f +3376,6558,0,1,f +3378,298c02,0,1,t +3378,298c02,0,1,f +3378,3021,70,1,f +3378,3062b,0,2,f +3378,32530,4,2,f +3378,6541,0,1,f +3378,6558,1,1,f +3379,3004,0,1,f +3379,3004,1,2,f +3379,3004,2,3,f +3379,3004p0b,14,1,f +3379,3021,0,1,f +3379,3022,0,1,f +3379,3022,15,1,f +3382,2357,4,8,f +3382,2420,4,12,f +3382,2431,0,11,f +3382,2431,4,16,f +3382,2445,0,1,f +3382,2445,4,1,f +3382,2450,4,2,f +3382,2456,14,8,f +3382,2456,4,4,f +3382,2465,0,2,f +3382,2555,71,2,f +3382,2555,4,2,f +3382,2577,0,2,f +3382,2730,0,2,f +3382,2780,0,16,f +3382,2780,0,2,t +3382,2877,0,12,f +3382,2905,4,4,f +3382,298c02,4,1,f +3382,298c02,4,1,t +3382,3001,4,10,f +3382,3001,0,4,f +3382,3002,4,12,f +3382,3002,0,10,f +3382,3003,0,6,f +3382,3004,4,11,f +3382,3005,0,1,f +3382,3005,4,4,f +3382,3007,4,6,f +3382,3008,4,6,f +3382,3009,4,6,f +3382,3010,4,8,f +3382,3020,4,24,f +3382,3020,0,12,f +3382,3021,0,13,f +3382,3021,72,14,f +3382,3021,4,11,f +3382,3022,0,2,f +3382,3022,4,8,f +3382,3023,4,46,f +3382,3023,0,13,f +3382,3023,47,1,f +3382,3024,4,10,f +3382,3024,0,4,f +3382,3027,0,2,f +3382,3029,0,2,f +3382,3029,4,2,f +3382,3030,0,2,f +3382,3031,0,4,f +3382,3034,0,3,f +3382,3034,4,2,f +3382,3035,4,6,f +3382,30350b,4,2,f +3382,30357,4,2,f +3382,3036,0,2,f +3382,30383,0,3,f +3382,30414,1,6,f +3382,30540,0,2,f +3382,30541,4,2,f +3382,30553,72,2,f +3382,3063b,4,4,f +3382,3068b,0,2,f +3382,3068b,4,5,f +3382,3069b,4,24,f +3382,3069b,0,4,f +3382,32000,4,3,f +3382,32005b,0,2,f +3382,32028,0,2,f +3382,32056,0,4,f +3382,32062,0,4,f +3382,32123b,71,4,f +3382,32123b,71,1,t +3382,32138,0,1,f +3382,32140,0,2,f +3382,32278,0,2,f +3382,32495c01,0,2,f +3382,32523,0,6,f +3382,32524,0,1,f +3382,32525,0,2,f +3382,32557,0,1,f +3382,3298,4,6,f +3382,33243,4,2,f +3382,3622,4,13,f +3382,3622,0,2,f +3382,3623,0,9,f +3382,3623,4,16,f +3382,3647,72,1,f +3382,3665,4,4,f +3382,3666,4,12,f +3382,3666,0,10,f +3382,3700,0,6,f +3382,3701,0,6,f +3382,3703,72,5,f +3382,3707,0,1,f +3382,3710,0,13,f +3382,3710,4,16,f +3382,3710,15,2,f +3382,3743,0,1,f +3382,3794a,0,13,f +3382,3794a,4,35,f +3382,3795,4,12,f +3382,3795,0,4,f +3382,40001,72,1,f +3382,4032a,0,4,f +3382,4162,4,8,f +3382,41678,0,2,f +3382,41747,4,1,f +3382,41748,4,1,f +3382,41749,4,1,f +3382,41750,4,1,f +3382,41767,4,8,f +3382,41767,0,4,f +3382,41768,4,8,f +3382,41768,0,4,f +3382,41769,4,6,f +3382,41769,0,1,f +3382,41770,0,1,f +3382,41770,4,6,f +3382,42003,0,1,f +3382,42022,4,8,f +3382,42023,4,2,f +3382,42060,4,1,f +3382,42061,4,1,f +3382,4274,71,1,t +3382,4274,71,2,f +3382,4282,72,2,f +3382,4287,0,6,f +3382,4287,4,2,f +3382,43337,4,2,f +3382,43710,4,1,f +3382,43711,4,1,f +3382,43722,4,1,f +3382,43723,4,1,f +3382,44126,4,3,f +3382,44301a,4,6,f +3382,44302a,4,4,f +3382,44302a,0,1,f +3382,44375a,0,4,f +3382,4460b,0,2,f +3382,44728,4,8,f +3382,4477,0,12,f +3382,44771,0,4,f +3382,44772,0,4,f +3382,4519,71,7,f +3382,47397,0,1,f +3382,47398,0,1,f +3382,48092,4,12,f +3382,48336,4,4,f +3382,4864b,4,2,f +3382,4865a,4,6,f +3382,50304,0,2,f +3382,50305,0,2,f +3382,50950,0,3,f +3382,54200,4,3,t +3382,54200,4,9,f +3382,54200,0,2,t +3382,54200,0,5,f +3382,55013,72,3,f +3382,57515,0,4,f +3382,6003,4,6,f +3382,6019,72,4,f +3382,6019,4,2,f +3382,60471,4,2,f +3382,60478,4,4,f +3382,6081,0,2,f +3382,6091,0,4,f +3382,6091,4,6,f +3382,6111,0,2,f +3382,6112,4,2,f +3382,6141,72,2,f +3382,6141,72,1,t +3382,61678,4,4,f +3382,6179,4,12,f +3382,6180,4,3,f +3382,6222,0,2,f +3382,6232,4,4,f +3382,6558,1,13,f +3382,6564,4,11,f +3382,6564,0,3,f +3382,6565,0,3,f +3382,6565,4,11,f +3382,6587,72,3,f +3382,6628,0,2,f +3382,6636,15,2,f +3382,6636,0,10,f +3382,6636,4,17,f +3382,73983,4,2,f +3382,73983,0,4,f +3382,8157stk01,9999,1,t +3382,9244,71,1,f +3383,2570,70,1,f +3383,3626bpr0499,14,1,f +3383,3844,80,1,f +3383,4498,70,1,t +3383,4498,70,1,f +3383,970x026,71,1,f +3383,973pr1623c01,72,1,f +3386,3626bpr0387,14,1,f +3386,3836,70,1,f +3386,4485,4,1,f +3386,970c00,2,1,f +3386,973pr1155c01,19,1,f +3388,42446,71,1,f +3388,88646,0,1,f +3388,970c00pr0524,71,1,f +3388,973pr2406c01,71,1,f +3388,98375,179,1,f +3388,98384pr0002,71,1,f +3389,30151a,47,1,f +3389,4032a,15,1,f +3389,57503,334,1,f +3389,57504,334,1,f +3389,57505,334,1,f +3389,57506,334,1,f +3389,59,383,1,f +3389,72515,383,1,f +3390,11477,71,2,f +3390,12825,15,2,f +3390,15571,71,2,f +3390,15573,71,4,f +3390,2357,15,6,f +3390,2431,72,12,f +3390,2431,71,2,f +3390,2445,15,1,f +3390,2453a,15,4,f +3390,2454a,15,4,f +3390,2540,15,2,f +3390,3004,15,7,f +3390,3005,47,18,f +3390,3005,71,12,f +3390,3005,41,34,f +3390,3005,15,40,f +3390,3008,71,1,f +3390,3009,15,6,f +3390,3010,15,7,f +3390,3010,71,2,f +3390,3020,15,10,f +3390,3021,15,7,f +3390,3023,41,97,f +3390,3023,15,6,f +3390,3023,71,14,f +3390,3024,41,28,f +3390,3024,15,14,f +3390,3024,47,24,f +3390,3029,15,4,f +3390,3030,0,2,f +3390,3032,0,3,f +3390,3034,0,2,f +3390,3039,71,4,f +3390,3040b,71,8,f +3390,3040b,15,1,f +3390,3065,47,6,f +3390,3068b,71,6,f +3390,3068b,72,6,f +3390,3069b,15,15,f +3390,3069b,71,7,f +3390,3070b,15,2,f +3390,3070b,47,12,f +3390,3070b,71,5,f +3390,32028,15,14,f +3390,3307,15,1,f +3390,3622,71,4,f +3390,3622,15,6,f +3390,3633,15,2,f +3390,3660,71,5,f +3390,3665,71,4,f +3390,3666,15,6,f +3390,3794b,15,25,f +3390,3795,15,4,f +3390,3846,15,1,f +3390,4162,0,5,f +3390,4162pr0035a,0,1,f +3390,4282,0,1,f +3390,43888,15,4,f +3390,44728,15,2,f +3390,4733,15,1,f +3390,48092,15,2,f +3390,52107,15,4,f +3390,54200,15,3,f +3390,54200,71,28,f +3390,59349,15,1,f +3390,59900,15,6,f +3390,60478,15,14,f +3390,60479,15,2,f +3390,60897,15,10,f +3390,6091,15,2,f +3390,6112,71,2,f +3390,6141,15,40,f +3390,63864,0,4,f +3390,63864,72,4,f +3390,63965,15,2,f +3390,6636,15,8,f +3390,6636,0,4,f +3390,85863,15,3,f +3390,87079,71,1,f +3390,87087,15,13,f +3390,87580,15,22,f +3390,87580,71,2,f +3390,93061,15,4,f +3390,96874,25,1,t +3390,98283,71,12,f +3391,3007,4,25,f +3393,2452,0,1,f +3393,2530,8,1,f +3393,2543,1,1,f +3393,2544,6,1,f +3393,2555,0,3,f +3393,2561,6,3,f +3393,2562,6,1,f +3393,3021,0,1,f +3393,3022,0,2,f +3393,3023,0,2,f +3393,3024,0,1,f +3393,3623,0,1,f +3393,3626bp35,14,1,f +3393,3626bp49,14,1,f +3393,3795,0,1,f +3393,3839b,0,1,f +3393,4276b,0,1,f +3393,4488,0,2,f +3393,4489,6,2,f +3393,970c00,0,1,f +3393,970c00,7,1,f +3393,973p31c01,14,1,f +3393,973p34c01,1,1,f +3394,2362a,33,1,f +3394,2412b,1,1,f +3394,2458,15,1,f +3394,2460,1,2,f +3394,2817,1,1,f +3394,3003,7,3,f +3394,3023,15,1,f +3394,3034,7,1,f +3394,3036,19,1,f +3394,3039,7,1,f +3394,3062b,15,2,f +3394,3068b,1,1,f +3394,3626bpr0126,14,1,f +3394,3678a,15,2,f +3394,3709,0,1,f +3394,3833,15,1,f +3394,3956,7,1,f +3394,4519,0,1,f +3394,4588,0,1,f +3394,4589,15,1,f +3394,6141,34,1,f +3394,6141,36,1,f +3394,6141,34,1,t +3394,6141,36,1,t +3394,6232,15,1,f +3394,6452stk01,9999,1,t +3394,78c09,14,1,f +3394,78c09,14,1,t +3394,970c00,0,1,f +3394,973px24c01,15,1,f +3395,10247,0,2,f +3395,11211,4,4,f +3395,11213,71,1,f +3395,11299,15,2,f +3395,14719,15,2,f +3395,15068,4,1,f +3395,15068,72,1,f +3395,15118,71,1,f +3395,15392,72,1,f +3395,15533,84,2,f +3395,15535,4,1,f +3395,18674,72,1,f +3395,19220,0,1,f +3395,23922,14,1,f +3395,23924,0,1,f +3395,2412b,71,5,f +3395,2412b,72,7,f +3395,2419,4,1,f +3395,2420,72,2,f +3395,2431,72,1,f +3395,2431,71,2,f +3395,2432,14,1,f +3395,2447,40,2,f +3395,2454a,19,2,f +3395,2460,71,1,f +3395,2654,182,2,f +3395,2877,71,2,f +3395,2926,0,2,f +3395,3003,4,4,f +3395,3003,72,3,f +3395,3004,72,4,f +3395,30043,0,1,f +3395,3005,4,8,f +3395,3009,72,4,f +3395,3009,4,1,f +3395,3010,72,1,f +3395,30150,84,1,f +3395,30194,72,1,f +3395,3020,72,3,f +3395,3021,1,2,f +3395,3021,14,1,f +3395,3022,72,1,f +3395,3023,0,6,f +3395,3023,1,1,f +3395,3023,15,1,f +3395,3023,72,1,f +3395,3023,14,5,f +3395,30237b,4,4,f +3395,3024,33,6,f +3395,3027,72,1,f +3395,3031,14,2,f +3395,3032,4,1,f +3395,3032,72,1,f +3395,3034,0,1,f +3395,30361,72,1,f +3395,30365,4,4,f +3395,30374,14,4,f +3395,3039,72,1,f +3395,30554a,0,4,f +3395,3062b,71,1,f +3395,3062b,14,1,f +3395,3062b,0,1,f +3395,3068b,1,1,f +3395,3069b,33,6,f +3395,3069b,4,3,f +3395,3069b,14,2,f +3395,32028,71,4,f +3395,32028,14,1,f +3395,32348,4,2,f +3395,3298,72,2,f +3395,3460,4,2,f +3395,3622,4,2,f +3395,3626cpr0920,14,1,f +3395,3626cpr1146,14,1,f +3395,3626cpr1580,14,1,f +3395,3665,4,8,f +3395,3666,15,5,f +3395,3666,4,3,f +3395,3709,71,2,f +3395,3710,15,6,f +3395,3710,1,1,f +3395,3710,4,4,f +3395,3794b,71,2,f +3395,3795,72,4,f +3395,3795,71,2,f +3395,3795,4,2,f +3395,3795,14,1,f +3395,3829c01,14,1,f +3395,3832,71,1,f +3395,3834,15,3,f +3395,3835,0,1,f +3395,3838,14,2,f +3395,3899,14,1,f +3395,3958,4,3,f +3395,3958,71,2,f +3395,4079,14,1,f +3395,4083,14,2,f +3395,4083,0,1,f +3395,4175,72,1,f +3395,4208,0,1,f +3395,4209,4,1,f +3395,4282,71,3,f +3395,43093,1,2,f +3395,4345b,4,2,f +3395,4346,71,2,f +3395,44301a,15,4,f +3395,4488,0,4,f +3395,4599b,71,1,f +3395,4599b,14,1,f +3395,50745,15,4,f +3395,52031,4,2,f +3395,54200,46,2,f +3395,54200,72,2,f +3395,59349,19,2,f +3395,6014b,71,8,f +3395,60581,4,3,f +3395,60583b,4,4,f +3395,60594,4,2,f +3395,60594,0,1,f +3395,60596,0,1,f +3395,60603,41,2,f +3395,60623,2,1,f +3395,6091,1,2,f +3395,6106,0,1,f +3395,6126b,182,4,f +3395,6141,41,6,f +3395,6141,72,1,f +3395,6141,71,2,f +3395,61485,0,1,f +3395,6154,4,2,f +3395,6155,71,2,f +3395,6158,72,2,f +3395,6249,72,2,f +3395,63864,15,2,f +3395,63868,0,2,f +3395,64453,41,1,f +3395,6636,4,1,f +3395,6636,71,7,f +3395,76766,0,4,f +3395,85861,182,4,f +3395,87079,72,2,f +3395,87552,4,4,f +3395,87580,0,1,f +3395,87609,4,1,f +3395,87617,4,2,f +3395,87618,71,2,f +3395,87697,0,8,f +3395,87913,71,1,f +3395,92280,4,2,f +3395,92593,15,2,f +3395,970c00pr0408,0,3,f +3395,973pr2188c01,0,2,f +3395,973pr3205c01,0,1,f +3395,98138,36,2,f +3395,98138,182,6,f +3395,98138,33,12,f +3395,99780,15,2,f +3396,2342,15,2,f +3396,2345,15,3,f +3396,2357,15,1,f +3396,2418a,15,1,f +3396,2419,36,4,f +3396,2419,0,4,f +3396,2420,15,1,f +3396,2431,15,2,f +3396,298c02,0,8,f +3396,3001,0,2,f +3396,3003,15,2,f +3396,3003,0,2,f +3396,3004,15,40,f +3396,3005,15,16,f +3396,3005,0,2,f +3396,3005,33,2,f +3396,3020,0,2,f +3396,3020,15,6,f +3396,3021,15,2,f +3396,3021,0,2,f +3396,3022,0,6,f +3396,3022,15,2,f +3396,3023,15,13,f +3396,3023,0,2,f +3396,3024,36,6,f +3396,3024,0,2,f +3396,3024,15,8,f +3396,3028,0,2,f +3396,3031,0,1,f +3396,3034,15,2,f +3396,3035,0,2,f +3396,3037,15,2,f +3396,3038,15,2,f +3396,3039p32,15,2,f +3396,3040b,15,4,f +3396,3040p32,15,2,f +3396,3062b,0,4,f +3396,3063b,15,4,f +3396,3065,33,2,f +3396,3068b,0,6,f +3396,3068b,15,2,f +3396,3068bp08,15,2,f +3396,3069b,15,4,f +3396,3069bp05,15,2,f +3396,3149c01,0,2,f +3396,3298p90,15,1,f +3396,3460,0,2,f +3396,3622,15,17,f +3396,3623,15,6,f +3396,3626apr0001,14,3,f +3396,3660,15,2,f +3396,3666,15,3,f +3396,3700,0,2,f +3396,3706,0,1,f +3396,3710,0,2,f +3396,3710,15,8,f +3396,3747b,15,1,f +3396,3794a,0,2,f +3396,3795,0,2,f +3396,3795,15,2,f +3396,3832,15,2,f +3396,3838,1,3,f +3396,3842b,1,3,f +3396,3895,15,2,f +3396,3937,15,6,f +3396,3938,15,5,f +3396,3940b,0,2,f +3396,3941,0,3,f +3396,3943b,0,1,f +3396,3947a,7,1,f +3396,3956,0,2,f +3396,3957a,36,3,f +3396,4032a,0,2,f +3396,4032a,15,2,f +3396,4035,15,4,f +3396,4070,15,14,f +3396,4085b,15,2,f +3396,4162,15,8,f +3396,4175,15,2,f +3396,4215a,15,1,f +3396,4229,0,2,f +3396,4265a,7,1,f +3396,4275b,15,8,f +3396,4276b,15,8,f +3396,4282,0,2,f +3396,4285a,15,2,f +3396,4447,15,4,f +3396,4448,33,4,f +3396,4460b,15,6,f +3396,4476b,15,6,f +3396,4477,15,4,f +3396,4588,36,2,f +3396,4589,0,4,f +3396,4590,0,2,f +3396,4595,0,4,f +3396,4595,15,2,f +3396,4598,15,2,f +3396,4737,0,1,f +3396,4740,36,4,f +3396,4871,15,2,f +3396,73590c01a,0,2,f +3396,970c00,1,3,f +3396,973pr1594c01,1,3,f +3397,122c01,0,6,f +3397,3004,0,1,f +3397,3004,14,10,f +3397,3005,4,2,f +3397,3005,14,13,f +3397,3005,0,2,f +3397,3008,1,1,f +3397,3008,14,2,f +3397,3008,0,1,f +3397,3009,0,1,f +3397,3009,14,2,f +3397,3010,0,1,f +3397,3010,1,1,f +3397,3010,14,2,f +3397,3020,14,2,f +3397,3020,4,1,f +3397,3020,0,3,f +3397,3021,0,1,f +3397,3022,0,2,f +3397,3022,4,1,f +3397,3023,0,2,f +3397,3023,1,1,f +3397,3023,4,4,f +3397,3023,15,2,f +3397,3023,14,11,f +3397,3024,14,4,f +3397,3024,36,6,f +3397,3024,1,2,f +3397,3024,46,4,f +3397,3030,14,1,f +3397,3034,1,2,f +3397,3034,14,2,f +3397,3040p02,4,1,f +3397,3062a,46,2,f +3397,3062a,4,1,f +3397,3062a,15,2,f +3397,3068b,4,1,f +3397,3068bp05,15,1,f +3397,3068bp06,15,1,f +3397,3069b,4,1,f +3397,3069b,14,4,f +3397,3070b,14,2,f +3397,3456,1,1,f +3397,3460,14,2,f +3397,3470,2,1,f +3397,3471,2,1,f +3397,3596,15,1,f +3397,3622,14,2,f +3397,3623,14,7,f +3397,3624,15,3,f +3397,3626apr0001,14,4,f +3397,3641,0,12,f +3397,3665,4,1,f +3397,3710,14,7,f +3397,3710,0,3,f +3397,3741,2,4,f +3397,3742,4,2,t +3397,3742,4,6,f +3397,3742,15,6,f +3397,3742,15,2,t +3397,3787,14,1,f +3397,3788,4,2,f +3397,3788,14,2,f +3397,3795,14,1,f +3397,3795,1,2,f +3397,3821,4,1,f +3397,3821,14,2,f +3397,3822,14,2,f +3397,3822,4,1,f +3397,3823,47,5,f +3397,3829c01,14,2,f +3397,3829c01,0,1,f +3397,3832,0,1,f +3397,3839a,0,1,f +3397,3853,0,2,f +3397,3855a,47,2,f +3397,3901,6,1,f +3397,3937,0,1,f +3397,3937,4,1,f +3397,3938,4,1,f +3397,3938,0,1,f +3397,3962a,0,1,f +3397,4006,0,2,f +3397,4070,14,10,f +3397,4070,4,4,f +3397,4079,0,1,f +3397,4085a,14,4,f +3397,4211,14,1,f +3397,4212b,14,1,f +3397,4212b,0,1,f +3397,4213,14,2,f +3397,4213,4,1,f +3397,4214,14,1,f +3397,4287,14,2,f +3397,4315,4,1,f +3397,4315,14,1,f +3397,4347,1,3,f +3397,4349,7,1,f +3397,608p01,7,1,f +3397,609p01,7,1,f +3397,6141,47,2,f +3397,6141,36,2,f +3397,73194c01,1,1,f +3397,970c00,7,1,f +3397,970c00,0,3,f +3397,973p22c01,0,1,f +3397,973p26c02,0,3,f +3397,u1125,14,2,f +3397,u1126,14,2,f +3398,30162,71,1,f +3398,30340,14,1,f +3398,3626bpr0386,14,1,f +3398,3626bpr0600,14,1,f +3398,3626cpr0889,14,1,f +3398,3901,0,1,f +3398,61482,71,1,f +3398,87991,308,1,f +3398,92081,0,1,f +3398,970c00,25,1,f +3398,970c00,0,1,f +3398,970c00,2,1,f +3398,973pr1197c01,15,1,f +3398,973pr1204c01,15,1,f +3398,973pr1356c01,4,1,f +3399,13786pr0003,0,1,f +3399,14295,85,1,f +3399,21460,85,1,f +3399,3626cpr1726,27,1,f +3399,4332,70,1,f +3399,88646,0,1,f +3399,970c00pr0921,15,1,f +3399,973pr3110c01,85,1,f +3401,3001a,14,20,f +3401,3001a,1,20,f +3401,3001a,4,20,f +3401,3001a,47,4,f +3401,3001a,0,12,f +3401,3001a,15,20,f +3401,3002a,4,4,f +3401,3002a,1,4,f +3401,3002a,15,4,f +3401,3002a,0,4,f +3401,3002a,14,4,f +3401,3003,0,8,f +3401,3003,47,4,f +3401,3003,1,8,f +3401,3003,4,8,f +3401,3003,14,8,f +3401,3003,15,8,f +3401,3004,1,8,f +3401,3004,0,4,f +3401,3004,14,8,f +3401,3004,15,8,f +3401,3004,4,8,f +3401,3007,4,4,f +3401,3008,15,4,f +3401,3008,1,4,f +3401,3009,14,4,f +3401,3010,15,4,f +3401,3021,0,4,f +3401,3027,0,1,f +3401,3033,4,2,f +3401,3034,14,4,f +3401,3035,1,2,f +3401,3039,0,2,f +3401,3039,1,4,f +3401,3039,4,4,f +3401,3081cc01,4,4,f +3401,3137c01,0,4,f +3401,3144,79,1,f +3401,3149c01,4,1,f +3401,3185,4,6,f +3401,3297,1,10,f +3401,3297,4,10,f +3401,3298,4,4,f +3401,3298,1,4,f +3401,3299,4,2,f +3401,3299,1,2,f +3401,3300,1,2,f +3401,3300,4,2,f +3401,3307,4,1,f +3401,3308,15,2,f +3401,3471,2,2,f +3401,3483,0,4,f +3401,3579,4,2,f +3401,3581,4,8,f +3401,3582,1,8,f +3401,3612,15,2,f +3401,3612,1,2,f +3401,3612,0,2,f +3401,3612,4,2,f +3401,3613,1,2,f +3401,3613,15,2,f +3401,3613,0,2,f +3401,3613,4,2,f +3401,3614a,14,8,f +3401,3641,0,8,f +3401,3660,4,4,f +3401,3660,1,4,f +3401,3660,0,2,f +3401,420,14,1,f +3401,421,14,1,f +3401,453cc01,4,4,f +3401,685p01,14,1,f +3401,685px2,14,1,f +3401,685px3,14,1,f +3401,685px4,14,1,f +3401,700ed2,2,2,f +3401,7039,4,4,f +3401,7049b,0,2,f +3401,792c03,4,1,f +3401,792c03,0,1,f +3401,792c03,1,1,f +3401,792c03,15,1,f +3401,7930,1,2,f +3401,x196,0,1,f +3401,x197,6,2,f +3401,x197bun,7,1,f +3401,x407,4,1,f +3401,x407,0,1,f +3402,11213,322,1,f +3402,2460,15,1,f +3402,30565,27,1,f +3402,30565,5,1,f +3402,30565,322,1,f +3402,30565,15,1,f +3402,32034,15,1,f +3402,33291,26,1,f +3402,3900,15,2,f +3402,49668,191,1,f +3403,2420,0,4,f +3403,30137,6,3,f +3403,30173a,0,1,f +3403,30177,8,1,f +3403,3023,7,2,f +3403,3626bpx7,14,1,f +3403,3839b,1,1,f +3403,4085c,1,4,f +3403,4497,0,2,t +3403,4497,0,2,f +3403,6133,0,2,f +3403,970c00,8,1,f +3403,973pb0240c03,8,1,f +3404,2343,47,1,f +3404,2412b,0,2,f +3404,3070b,14,1,t +3404,3070b,14,1,f +3404,3307,15,1,f +3404,3626bp02,14,1,f +3404,3659,5,2,f +3404,3741,2,1,t +3404,3741,2,1,f +3404,3742,5,3,f +3404,3742,5,1,t +3404,3795,15,1,f +3404,3957a,15,1,f +3404,3960,5,1,f +3404,4150p02,14,1,f +3404,4528,0,1,f +3404,6093,0,1,f +3404,6251,0,1,f +3404,970c00,15,1,f +3404,973pb0018c01,13,1,f +3405,2335,15,1,f +3405,2357,4,4,f +3405,2412b,71,6,f +3405,2420,4,8,f +3405,2431,0,3,f +3405,2431,4,3,f +3405,2431pr0033,4,1,f +3405,2431pr0038,4,1,f +3405,2436,4,2,f +3405,2453a,4,1,f +3405,2454a,4,2,f +3405,2456,4,1,f +3405,2525,4,1,f +3405,2653,71,2,f +3405,3001,72,1,f +3405,3001,4,4,f +3405,3002,4,2,f +3405,3003,4,2,f +3405,3004,4,5,f +3405,30043,0,1,f +3405,3005,0,1,f +3405,3005,71,4,f +3405,3005,4,1,f +3405,3009,4,5,f +3405,3010,0,1,f +3405,3010,4,4,f +3405,3020,4,7,f +3405,3020,71,2,f +3405,3021,15,2,f +3405,3021,0,8,f +3405,3022,25,1,f +3405,3022,4,2,f +3405,3022,0,4,f +3405,3023,15,5,f +3405,3023,0,3,f +3405,3023,2,3,f +3405,3023,4,4,f +3405,3024,0,1,f +3405,3024,4,4,f +3405,3027,71,1,f +3405,3028,4,1,f +3405,3031,0,1,f +3405,3031,4,1,f +3405,3032,0,1,f +3405,3032,4,1,f +3405,3034,4,3,f +3405,30350b,4,2,f +3405,3036,4,2,f +3405,30374,0,1,f +3405,3062b,0,2,f +3405,3068b,4,4,f +3405,3069b,4,10,f +3405,3070b,4,1,t +3405,3070b,36,1,t +3405,3070b,4,7,f +3405,3070b,36,3,f +3405,32028,0,2,f +3405,3245c,0,2,f +3405,3245c,4,4,f +3405,3460,4,4,f +3405,3622,0,2,f +3405,3622,4,2,f +3405,3623,71,3,f +3405,3623,4,10,f +3405,3660,4,2,f +3405,3660,0,2,f +3405,3665,71,4,f +3405,3665,0,2,f +3405,3666,4,6,f +3405,3678bpr0016a,4,1,f +3405,3678bpr0020,4,1,f +3405,3701,0,1,f +3405,3709,0,1,f +3405,3710,71,7,f +3405,3710,0,3,f +3405,3710,4,2,f +3405,3794b,0,6,f +3405,3794b,4,3,f +3405,3795,1,1,f +3405,3795,0,1,f +3405,3795,4,1,f +3405,3937,0,1,f +3405,3942c,25,1,f +3405,3958,71,2,f +3405,4032a,4,1,f +3405,4032a,72,1,f +3405,40620,71,2,f +3405,4083,0,1,f +3405,4085c,71,2,f +3405,4150,71,1,f +3405,4162,0,2,f +3405,4162,4,6,f +3405,4274,1,3,f +3405,4274,1,1,t +3405,4282,0,2,f +3405,4282,4,2,f +3405,4287,4,2,f +3405,43722,4,1,f +3405,43723,4,1,f +3405,4477,0,4,f +3405,4477,4,6,f +3405,4488,71,6,f +3405,4488,0,4,f +3405,48336,71,2,f +3405,48336,4,5,f +3405,50951,0,4,f +3405,54200,0,1,t +3405,54200,4,10,f +3405,54200,4,2,t +3405,54200,0,6,f +3405,55295,0,1,f +3405,55296,0,1,f +3405,55297,0,1,f +3405,55298,0,1,f +3405,55299,0,1,f +3405,55300,0,1,f +3405,59349,4,8,f +3405,6005,4,2,f +3405,6014b,71,10,f +3405,60470a,0,1,f +3405,60479,71,2,f +3405,60700,0,10,f +3405,6081,4,1,f +3405,6091,4,2,f +3405,6111,4,4,f +3405,6134,71,1,f +3405,6157,0,2,f +3405,6179,72,1,f +3405,6192,71,2,f +3405,63864,4,3,f +3405,63864,0,2,f +3405,6541,4,2,f +3405,6636,4,2,f +3405,73983,4,2,f +3405,87079,4,3,f +3405,87079pr0019,4,1,f +3405,87079pr0020,4,1,f +3405,92593,72,1,f +3405,93274,4,2,f +3405,93274,71,2,f +3405,93587pr0001,4,1,f +3405,93590,4,1,f +3405,93591pr0001,4,1,f +3405,93593,4,4,f +3406,2446,15,1,f +3406,2447,41,1,f +3406,2540,15,1,f +3406,2540,7,1,f +3406,2610,14,1,f +3406,2680,0,1,f +3406,2962stk01,9999,1,t +3406,298c02,15,1,f +3406,3003,14,1,f +3406,3004,7,2,f +3406,3004,0,4,f +3406,30162,8,1,f +3406,3020,0,1,f +3406,3022,14,1,f +3406,3024,36,3,f +3406,3024,33,1,f +3406,3062b,0,1,f +3406,3297px15,0,1,f +3406,3626bp02,14,1,f +3406,3626bp06,14,1,f +3406,3660,7,2,f +3406,3829c01,15,1,f +3406,3962b,0,1,f +3406,4070,14,2,f +3406,4079,0,1,f +3406,4081b,15,2,f +3406,4085c,15,2,f +3406,4150,15,1,f +3406,4212b,0,1,f +3406,4213,0,1,f +3406,4315,0,2,f +3406,4349,7,1,f +3406,4474,33,1,f +3406,4477,14,2,f +3406,4485,15,1,f +3406,4596,0,1,f +3406,4600,0,2,f +3406,4865a,0,4,f +3406,6014a,15,4,f +3406,6015,0,4,f +3406,6020,14,1,f +3406,6093,6,1,f +3406,6141,36,1,f +3406,6141,33,1,t +3406,6141,33,1,f +3406,6141,36,1,t +3406,970x001,14,1,f +3406,970x026,14,1,f +3406,973pb0018c01,13,1,f +3406,973px79c01,15,1,f +3407,2450,0,2,f +3407,2496,0,1,f +3407,2496,0,1,t +3407,2655,7,1,f +3407,2655,7,1,t +3407,3020,15,1,f +3407,3022,0,2,f +3407,3039,15,1,f +3407,3039,47,1,f +3407,3710,0,1,f +3408,2335,71,30,f +3408,2412b,72,2,f +3408,2413,71,16,f +3408,2419,72,22,f +3408,2420,72,26,f +3408,2434,0,1,f +3408,2436,71,1,f +3408,2445,71,28,f +3408,2450,19,2,f +3408,2465,72,12,f +3408,2555,0,6,f +3408,2569,71,10,f +3408,2569,42,8,f +3408,2780,0,75,f +3408,298c05,71,17,f +3408,3001,0,2,f +3408,3001,72,12,f +3408,3004,72,460,f +3408,3006,0,10,f +3408,3006,71,2,f +3408,3007,19,2,f +3408,3008,0,4,f +3408,3008,72,16,f +3408,3010,0,10,f +3408,3010,72,26,f +3408,30162,72,2,f +3408,3020,71,82,f +3408,3021,71,121,f +3408,3022,2,4,f +3408,3022,71,21,f +3408,3023,72,14,f +3408,3023,71,61,f +3408,30236,0,30,f +3408,3029,0,2,f +3408,3029,71,15,f +3408,3030,0,2,f +3408,3030,72,4,f +3408,3031,72,2,f +3408,3032,0,33,f +3408,3034,71,260,f +3408,3034,0,28,f +3408,30355,71,4,f +3408,30356,71,4,f +3408,3036,71,6,f +3408,30363,72,1,f +3408,30364,19,32,f +3408,30365,71,32,f +3408,3037,0,1,f +3408,30374,71,34,f +3408,30503,71,10,f +3408,30504,71,4,f +3408,3062b,19,10,f +3408,3062b,42,56,f +3408,3068b,4,2,f +3408,3069b,19,4,f +3408,32014,14,1,f +3408,32015,19,1,f +3408,32016,0,45,f +3408,32028,71,32,f +3408,32034,1,14,f +3408,32062,4,11,f +3408,32064b,0,231,f +3408,32073,71,1,f +3408,32123b,71,44,f +3408,32184,4,2,f +3408,32192,4,1,f +3408,32209,72,11,f +3408,32278,148,16,f +3408,32316,0,22,f +3408,32524,71,16,f +3408,32555,4,4,f +3408,3297,0,11,f +3408,3460,71,18,f +3408,3623,71,81,f +3408,3623,72,7,f +3408,3666,71,8,f +3408,3701,0,4,f +3408,3702,0,2,f +3408,3703,0,2,f +3408,3705,0,2,f +3408,3706,0,1,f +3408,3707,0,13,f +3408,3710,71,169,f +3408,3713,71,19,f +3408,3737,0,34,f +3408,3794a,72,272,f +3408,3795,72,26,f +3408,3832,4,8,f +3408,3832,0,2,f +3408,3894,71,6,f +3408,3895,72,24,f +3408,3937,19,16,f +3408,3937,72,2,f +3408,3958,72,1,f +3408,3961,72,2,f +3408,4032a,4,1,f +3408,4085c,71,32,f +3408,41529,71,1,f +3408,4162,0,12,f +3408,4162,1,4,f +3408,4175,72,18,f +3408,41769,71,3,f +3408,41770,72,11,f +3408,41770,71,8,f +3408,41855,0,4,f +3408,42445,47,1,f +3408,42446,71,30,f +3408,4282,71,42,f +3408,44301a,71,26,f +3408,44302a,72,27,f +3408,44375a,71,2,f +3408,44567a,0,1,f +3408,44567a,72,1,f +3408,44568,71,46,f +3408,44570,71,46,f +3408,4477,71,5,f +3408,4477,0,32,f +3408,4510,71,32,f +3408,4519,71,10,f +3408,4589,71,2,f +3408,47397,71,36,f +3408,47398,71,36,f +3408,4790,70,2,f +3408,4871,0,1,f +3408,50990a,71,1,f +3408,52038,72,4,f +3408,6106,71,2,f +3408,6112,0,6,f +3408,6134,0,18,f +3408,6141,72,2,f +3408,6141,182,5,f +3408,6538b,0,1,f +3408,6538b,14,1,f +3408,6558,0,66,f +3408,6632,4,6,f +3408,6636,4,10,f +3408,73983,71,3,f +3410,2458,1,1,f +3410,3003,14,1,f +3410,3020,4,1,f +3410,3039,47,1,f +3410,3298,14,1,f +3410,3710,4,2,f +3410,6041,14,1,f +3411,3002,1,1,f +3411,30285,7,6,f +3411,30391,0,6,f +3411,30619,25,1,f +3411,30632,0,1,f +3411,30642,8,1,f +3411,3997,25,1,f +3411,4286,1,2,f +3411,45406pb002,25,1,f +3411,45407,25,1,f +3411,45408,383,2,f +3411,46103,40,1,f +3411,4j001,-1,1,f +3411,x1315,0,1,f +3413,3626cpr9992,78,1,f +3413,85973,0,1,f +3413,88646,0,1,f +3413,970c00pr1195,84,1,f +3413,973pr3676c01,84,1,f +3413,99244pr0002,84,1,f +3414,2412b,0,2,f +3414,2419,0,1,f +3414,2433,0,2,f +3414,2466,42,1,f +3414,2569,42,2,f +3414,3003,0,1,f +3414,3004,4,1,f +3414,3004,0,1,f +3414,3007,7,1,f +3414,30118,7,1,f +3414,30119p6u,7,2,f +3414,3020,0,1,f +3414,3021,4,1,f +3414,3023,4,4,f +3414,3034,0,3,f +3414,3062b,42,6,f +3414,3069bp51,0,3,f +3414,3475b,0,2,f +3414,3626bp6v,1,1,f +3414,3660,7,1,f +3414,3839b,0,1,f +3414,3937,0,1,f +3414,3938,7,1,f +3414,4345b,0,1,f +3414,4346,42,1,f +3414,4531,0,2,f +3414,6118,0,4,f +3414,6232,7,2,f +3414,6249,7,1,f +3414,970c00pb021,0,1,f +3414,973px132c01,7,1,f +3415,14728c35,0,1,f +3415,2335p30,15,1,f +3415,2489,6,6,f +3415,2528pb01,0,1,f +3415,2530,8,2,f +3415,2530,8,1,t +3415,2540,0,3,f +3415,2542,4,1,f +3415,2543,4,1,f +3415,2544,0,1,f +3415,2547,8,1,f +3415,2548,8,1,f +3415,2555,0,4,f +3415,2562,6,2,f +3415,3003,7,1,f +3415,3004,0,4,f +3415,3007,0,1,f +3415,3022,0,1,f +3415,3023,7,4,f +3415,3024,7,2,f +3415,3030,0,2,f +3415,3034,0,2,f +3415,3460,7,2,f +3415,3626bp35,14,2,f +3415,3626bp46,14,1,f +3415,3660,0,6,f +3415,3701,0,4,f +3415,3710,7,2,f +3415,3737,0,2,f +3415,3832,7,1,f +3415,3849,0,1,f +3415,3957a,0,1,f +3415,4085c,7,2,f +3415,4318,0,1,f +3415,4733,0,1,f +3415,4738b,6,1,f +3415,4739b,6,1,f +3415,57503,334,1,f +3415,57504,334,1,f +3415,57505,334,1,f +3415,57506,334,1,f +3415,6019,7,2,f +3415,6019,0,1,f +3415,6057,6,2,f +3415,970c00,0,1,f +3415,970c00,7,1,f +3415,970d01,0,1,f +3415,973p31c01,14,1,f +3415,973p32c01,14,1,f +3415,973p3ac01,14,1,f +3415,sailbb26,15,1,f +3416,298c02,0,2,f +3416,3001,7,1,f +3416,3002,7,1,f +3416,3003,7,1,f +3416,3004,7,2,f +3416,3004p01,7,2,f +3416,3010,7,1,f +3416,3020,0,6,f +3416,3020,7,4,f +3416,3021,7,4,f +3416,3022,7,3,f +3416,3023,7,14,f +3416,3024,34,2,f +3416,3024,7,2,f +3416,3024,36,2,f +3416,3031,7,1,f +3416,3039p32,7,1,f +3416,3040b,7,2,f +3416,3068b,7,1,f +3416,3068bp08,7,1,f +3416,3069bp06,7,2,f +3416,3070b,36,2,f +3416,3188,0,1,f +3416,3189,0,1,f +3416,3479,7,2,f +3416,3622,7,2,f +3416,3623,0,2,f +3416,3626apr0001,14,1,f +3416,3666,7,1,f +3416,3673,7,1,f +3416,3700,7,2,f +3416,3710,7,1,f +3416,3747a,7,5,f +3416,3794a,7,2,f +3416,3795,7,1,f +3416,3829c01,7,1,f +3416,3832,7,1,f +3416,3838,0,1,f +3416,3842b,0,1,f +3416,3935,7,1,f +3416,3936,7,1,f +3416,3957a,46,1,f +3416,3959,0,1,f +3416,3963,0,2,f +3416,4070,7,4,f +3416,4085b,7,2,f +3416,4213,0,2,f +3416,4229,7,2,f +3416,4229,0,2,f +3416,4315,7,3,f +3416,4474,34,1,f +3416,4475,7,3,f +3416,4588,0,1,f +3416,4589,0,1,f +3416,4589,36,3,f +3416,4590,7,1,f +3416,4591,7,1,f +3416,4595,1,1,f +3416,4595,0,1,f +3416,4596,7,1,f +3416,4732,0,2,f +3416,4733,1,1,f +3416,4735,0,1,f +3416,4735,1,2,f +3416,4737,0,2,f +3416,4740,36,1,f +3416,4740,1,1,f +3416,4746,0,1,f +3416,6141,36,2,f +3416,73590c01a,0,2,f +3416,970c00,0,1,f +3416,973p90c03,0,1,f +3418,3626cpb1344,78,1,f +3418,92081,15,1,f +3418,970c00,15,1,f +3418,973pb2009c01,15,1,f +3420,26562,15,1,f +3420,3626cpr1916,78,1,f +3420,88646pr0002,15,1,f +3420,970c00pr1051,0,1,f +3420,973pr3375c01,15,1,f +3420,98385,84,1,f +3422,bb80pb02,15,1,f +3423,10314,15,1,f +3423,11203,72,1,f +3423,11211,71,1,f +3423,11213,71,1,f +3423,11214,72,1,f +3423,11289,41,1,f +3423,11303,272,1,f +3423,11477,71,1,f +3423,11477,15,2,f +3423,12939,71,2,f +3423,14210,0,1,f +3423,14518,72,1,f +3423,14716,15,1,f +3423,14718,71,1,f +3423,14769,15,1,f +3423,15068,71,3,f +3423,15207,15,4,f +3423,15395,15,1,f +3423,15530,272,1,f +3423,15534,72,1,f +3423,15535,2,1,f +3423,18653,71,8,f +3423,18654,72,1,f +3423,18654,72,1,t +3423,18969,4,4,f +3423,18969,0,4,f +3423,18980,0,2,f +3423,19220,0,2,f +3423,2340,15,2,f +3423,2357,72,1,f +3423,2357,15,4,f +3423,2357,71,1,f +3423,23996,72,1,f +3423,2412b,71,8,f +3423,2412b,0,1,f +3423,2412b,70,3,f +3423,2412b,72,2,f +3423,2421,0,1,f +3423,2431,19,3,f +3423,2431,15,1,f +3423,2432,1,1,f +3423,2445,0,1,f +3423,2445,71,1,f +3423,2446,15,1,f +3423,2447,40,1,t +3423,2447,40,1,f +3423,2453b,15,8,f +3423,2454a,15,4,f +3423,2456,72,3,f +3423,2456,15,1,f +3423,2458,71,2,f +3423,2458,19,2,f +3423,2460,15,1,f +3423,2465,15,1,f +3423,2479,0,1,f +3423,2654,71,4,f +3423,2877,71,3,f +3423,298c02,4,1,t +3423,298c02,1,1,t +3423,298c02,4,1,f +3423,298c02,1,1,f +3423,298c02,14,2,f +3423,298c02,14,1,t +3423,3001,0,4,f +3423,3001,71,2,f +3423,3001,72,6,f +3423,3002,15,2,f +3423,3002,71,4,f +3423,3002,72,4,f +3423,3003,71,4,f +3423,3004,15,4,f +3423,3005,15,4,f +3423,3005,71,2,f +3423,3005,4,1,f +3423,3006,71,1,f +3423,3008,70,1,f +3423,30086,326,1,f +3423,3009,72,2,f +3423,3009,15,9,f +3423,3009,71,2,f +3423,30094,70,1,f +3423,3010,1,2,f +3423,3010,15,7,f +3423,30134,0,1,f +3423,30134,70,1,f +3423,30136,19,2,f +3423,30136,70,5,f +3423,30136,72,21,f +3423,30162,72,2,f +3423,30176,2,3,f +3423,3020,72,5,f +3423,3020,70,4,f +3423,3020,15,1,f +3423,3020,71,1,f +3423,3021,19,1,f +3423,3022,15,2,f +3423,3023,33,2,f +3423,3023,0,9,f +3423,3023,46,10,f +3423,3023,70,5,f +3423,3023,15,2,f +3423,3023,4,1,f +3423,3023,72,2,f +3423,30236,72,1,f +3423,30237b,15,4,f +3423,3024,36,3,f +3423,3024,34,2,f +3423,3024,34,2,t +3423,3024,71,1,t +3423,3024,71,2,f +3423,3024,36,3,t +3423,30248,72,1,f +3423,3029,70,1,f +3423,3032,72,1,f +3423,30350a,0,1,f +3423,3036,72,2,f +3423,30377,0,2,f +3423,30377,0,1,t +3423,30377,71,1,t +3423,30377,71,1,f +3423,3039,0,5,f +3423,3039pr0002,15,1,f +3423,3040b,15,2,f +3423,3040b,72,3,f +3423,3040bpr0003,71,2,f +3423,30503,72,1,f +3423,30526,71,2,f +3423,30552,71,1,f +3423,3062b,19,1,f +3423,3062b,15,1,f +3423,3062b,71,8,f +3423,3062b,4,2,f +3423,3062b,70,3,f +3423,3068b,14,3,f +3423,3069b,33,4,f +3423,3069b,0,1,f +3423,3069b,15,1,f +3423,3069bpr0100,2,2,f +3423,3176,72,3,f +3423,3185,0,4,f +3423,32000,72,3,f +3423,32001,71,1,f +3423,32028,71,2,f +3423,32123b,14,1,t +3423,32123b,14,1,f +3423,32124,0,1,f +3423,3245b,15,2,f +3423,32474,0,1,t +3423,32474,0,2,f +3423,3297,71,1,f +3423,3456,72,1,f +3423,3460,15,2,f +3423,3460,0,2,f +3423,3622,15,8,f +3423,3622,72,4,f +3423,3622,71,11,f +3423,3622,70,1,f +3423,3623,15,2,f +3423,3623,0,3,f +3423,3623,70,2,f +3423,3626cpr1147,14,1,f +3423,3626cpr1350,14,1,f +3423,3626cpr1580,14,1,f +3423,3626cpr1581,14,1,f +3423,3626cpr1628,14,1,f +3423,3626cpr1662,14,1,f +3423,3626cpr1663,14,1,f +3423,3626cpr1849,14,1,f +3423,3633,72,5,f +3423,3666,0,2,f +3423,3678b,15,1,f +3423,3679,71,2,f +3423,3680,15,2,f +3423,3700,14,2,f +3423,3701,70,1,f +3423,3706,0,3,f +3423,3710,70,1,f +3423,3710,72,1,f +3423,3713,4,1,f +3423,3713,4,1,t +3423,3794b,71,8,f +3423,3794b,15,2,f +3423,3795,0,3,f +3423,3795,15,1,f +3423,3795,70,1,f +3423,3795,72,1,f +3423,3829c01,1,1,f +3423,3830,71,1,f +3423,3831,71,1,f +3423,3839b,72,3,f +3423,3894,71,1,f +3423,3895,72,2,f +3423,3899,14,2,f +3423,3941,2,1,f +3423,3957a,15,1,f +3423,3958,70,1,f +3423,3958,0,5,f +3423,3960,0,1,f +3423,4032a,4,3,f +3423,4032a,0,1,f +3423,4079,1,3,f +3423,41334,0,2,f +3423,4162,71,1,f +3423,4274,1,5,f +3423,4274,1,2,t +3423,4285b,71,1,f +3423,4286,70,3,f +3423,4360,0,2,f +3423,44301a,15,1,f +3423,44567a,71,7,f +3423,4460b,71,2,f +3423,44661,15,1,f +3423,44728,71,2,f +3423,4477,0,1,f +3423,4488,71,1,f +3423,4510,71,2,f +3423,4519,71,1,f +3423,47398,72,1,f +3423,4740,72,1,f +3423,47456,72,1,f +3423,47457,71,2,f +3423,47457,19,2,f +3423,47847,72,5,f +3423,48336,71,2,f +3423,4865a,71,1,f +3423,4865a,15,1,f +3423,49668,4,1,f +3423,50950,71,1,f +3423,50950,15,3,f +3423,50950,0,2,f +3423,54200,71,2,t +3423,54200,71,4,f +3423,55013,72,1,f +3423,57895,41,3,f +3423,58176,36,1,f +3423,59349,72,3,f +3423,59349,15,3,f +3423,59443,70,3,f +3423,59900,46,1,f +3423,60130stk01,9999,1,f +3423,60169,72,1,f +3423,6041,0,1,f +3423,60470a,71,1,f +3423,60471,71,9,f +3423,60475b,0,2,f +3423,60479,0,1,f +3423,60596,0,4,f +3423,60596,71,15,f +3423,60616a,41,1,f +3423,60616b,71,1,f +3423,60621,148,4,f +3423,6083,72,2,f +3423,6106,0,2,f +3423,6112,71,2,f +3423,61252,71,2,f +3423,61409,72,2,f +3423,6141,47,3,t +3423,6141,15,1,t +3423,6141,34,2,f +3423,6141,71,6,f +3423,6141,36,3,f +3423,6141,0,2,f +3423,6141,34,2,t +3423,6141,15,4,f +3423,6141,36,2,t +3423,6141,71,3,t +3423,6141,47,3,f +3423,6141,0,2,t +3423,61482,71,2,t +3423,61482,71,3,f +3423,61678,15,2,f +3423,6182,19,2,f +3423,62113,0,1,f +3423,6232,71,1,f +3423,62360,41,1,f +3423,62696,484,1,f +3423,62812,0,1,f +3423,63864,71,4,f +3423,63868,71,3,f +3423,63965,71,1,f +3423,64567,0,3,f +3423,64567,0,2,t +3423,6636,71,1,f +3423,6636,14,2,f +3423,72475,41,3,f +3423,73983,0,1,f +3423,75937,0,2,f +3423,85080,19,4,f +3423,85984,15,4,f +3423,85984,72,10,f +3423,85984,71,1,f +3423,87079,15,1,f +3423,87079,70,2,f +3423,87087,71,4,f +3423,87552,70,2,f +3423,87580,0,3,f +3423,87587pr0001,72,1,f +3423,87990,84,1,f +3423,87994,0,1,f +3423,87994,0,1,t +3423,88072,71,6,f +3423,88292,15,1,f +3423,89523,72,1,f +3423,91405,72,1,f +3423,92081,0,1,f +3423,92099,0,3,f +3423,92107,0,3,f +3423,92280,15,2,f +3423,92280,71,2,f +3423,92438,72,1,f +3423,92585,4,1,f +3423,92589,148,8,f +3423,92590,28,1,f +3423,92593,71,5,f +3423,92593,72,4,f +3423,93274,72,1,f +3423,96874,25,1,t +3423,970c00,379,1,f +3423,970c00,308,1,f +3423,970c00,272,3,f +3423,970c00pr0293,272,1,f +3423,970c00pr0985,15,2,f +3423,973pr1947bc01,272,1,f +3423,973pr2503c01,0,2,f +3423,973pr3208c01,212,1,f +3423,973pr3210,25,1,f +3423,973pr3211c01,15,1,f +3423,973pr3214c01,212,1,f +3423,973pr3215c01,212,1,f +3423,98138,46,1,t +3423,98138,33,1,t +3423,98138,46,2,f +3423,98138,33,4,f +3423,98283,71,23,f +3423,98313,72,2,f +3423,99780,15,2,f +3423,99780,71,1,f +3424,2340,15,4,f +3424,2343,71,2,f +3424,2357,15,4,f +3424,2412b,36,8,f +3424,2412b,25,27,f +3424,2420,0,2,f +3424,2431,15,7,f +3424,2432,4,1,f +3424,2432,15,7,f +3424,2444,15,1,f +3424,2445,0,9,f +3424,2446,15,3,f +3424,2447,82,3,f +3424,2447,82,1,t +3424,2456,1,2,f +3424,2458,1,2,f +3424,2460,4,2,f +3424,2540,25,4,f +3424,2555,15,2,f +3424,2571,15,4,f +3424,2654,33,1,f +3424,2654,4,1,f +3424,2780,0,3,t +3424,2780,0,30,f +3424,2877,15,6,f +3424,298c02,15,1,t +3424,298c02,15,4,f +3424,3001,71,6,f +3424,3001,0,8,f +3424,3002,15,9,f +3424,3003,4,1,f +3424,3005,15,4,f +3424,3006,15,2,f +3424,3008,0,2,f +3424,3010,72,2,f +3424,30151a,47,2,f +3424,30153,42,4,f +3424,3020,0,2,f +3424,3020,25,2,f +3424,3020,15,2,f +3424,3021,15,9,f +3424,3022,25,2,f +3424,3023,15,13,f +3424,3023,0,5,f +3424,30236,15,6,f +3424,30237a,72,2,f +3424,30283,0,2,f +3424,3030,0,1,f +3424,30304,72,1,f +3424,3031,1,4,f +3424,3031,0,6,f +3424,3032,15,3,f +3424,3034,0,1,f +3424,3034,1,8,f +3424,30350b,0,2,f +3424,30359b,0,6,f +3424,30359b,15,16,f +3424,30360,15,2,f +3424,30363,15,4,f +3424,3037,0,1,f +3424,3039,15,2,f +3424,3040b,0,2,f +3424,30414,71,6,f +3424,30526,71,2,f +3424,30565,27,2,f +3424,30602,15,3,f +3424,30603,0,2,f +3424,3062b,72,10,f +3424,3062b,42,1,f +3424,3062b,36,4,f +3424,3062b,33,18,f +3424,3068b,0,1,f +3424,3068b,15,7,f +3424,3069b,27,3,f +3424,32000,72,4,f +3424,32016,4,2,f +3424,32018,0,8,f +3424,32054,4,14,f +3424,32064b,4,2,f +3424,32064b,15,6,f +3424,32073,71,2,f +3424,32184,15,1,f +3424,32278,0,9,f +3424,32524,0,2,f +3424,32526,0,2,f +3424,32532,0,1,f +3424,32556,19,12,f +3424,3460,1,5,f +3424,3623,15,4,f +3424,3626b,15,1,f +3424,3626bpr0233,14,1,f +3424,3626bpr0325,14,1,f +3424,3626bpr0389,14,1,f +3424,3660,0,3,f +3424,3660,15,6,f +3424,3666,72,1,f +3424,3678b,0,2,f +3424,3700,0,6,f +3424,3701,0,25,f +3424,3703,15,4,f +3424,3705,0,1,f +3424,3708,0,1,f +3424,3709,71,5,f +3424,3710,1,11,f +3424,3713,71,1,t +3424,3713,71,2,f +3424,3747b,0,2,f +3424,3747b,15,2,f +3424,3749,19,2,f +3424,3794a,72,5,f +3424,3795,15,4,f +3424,3829c01,15,1,f +3424,3832,71,1,f +3424,3937,71,10,f +3424,3938,15,9,f +3424,3941,27,6,f +3424,3941,15,5,f +3424,3942c,15,2,f +3424,3942c,0,2,f +3424,3957a,15,1,f +3424,3958,15,1,f +3424,3959,71,2,f +3424,3962b,0,1,f +3424,4032a,0,2,f +3424,40340,0,1,f +3424,4070,0,2,f +3424,40902,71,1,f +3424,4150,0,6,f +3424,4162,15,4,f +3424,41747,15,1,f +3424,41748,15,1,f +3424,41753,72,1,f +3424,42003,0,6,f +3424,42022,0,4,f +3424,42023,0,6,f +3424,4274,1,4,t +3424,4274,1,24,f +3424,4282,0,1,f +3424,4286,15,2,f +3424,43093,1,8,f +3424,43093,1,9,t +3424,43337,0,1,f +3424,4345b,42,1,f +3424,4346,15,1,f +3424,43712,15,1,f +3424,44294,71,1,f +3424,44572,36,1,f +3424,4477,0,2,f +3424,44822,15,1,f +3424,4519,71,3,f +3424,45301,0,1,f +3424,45705,15,1,f +3424,45705,182,2,f +3424,4589,33,7,f +3424,4733,0,1,f +3424,4740,33,1,f +3424,47406,0,2,f +3424,47457,71,5,f +3424,47720,71,2,f +3424,47755,25,2,f +3424,47973,72,1,f +3424,48336,0,2,f +3424,48729a,0,1,t +3424,48729a,0,1,f +3424,50950,0,6,f +3424,50955,15,1,f +3424,50956,15,1,f +3424,51000,15,1,f +3424,54093,15,1,f +3424,54200,182,2,f +3424,54200,182,1,t +3424,54200,0,1,t +3424,54200,0,4,f +3424,55013,72,1,f +3424,57028c01,71,1,f +3424,57539,0,2,f +3424,57539,25,2,f +3424,57796,72,1,f +3424,58843,15,1,f +3424,58844pat0001,34,1,f +3424,58845,34,1,f +3424,58846,0,2,f +3424,58947,182,1,f +3424,59426,72,1,f +3424,6019,15,2,f +3424,60470a,0,2,f +3424,61069,15,4,f +3424,6118,25,4,f +3424,6134,71,1,f +3424,6141,25,3,t +3424,6141,33,1,t +3424,6141,27,7,f +3424,6141,27,1,t +3424,6141,33,2,f +3424,6141,25,32,f +3424,6141,15,3,f +3424,6141,15,2,t +3424,61678,15,14,f +3424,6179,15,2,f +3424,62462,15,6,f +3424,62723pat0001,34,1,f +3424,62724,34,4,f +3424,6541,0,2,f +3424,6558,1,8,f +3424,6564,0,1,f +3424,6565,0,1,f +3424,6587,72,2,f +3424,6636,0,8,f +3424,85544,4,1,f +3424,88930,15,1,f +3424,970x194,15,3,f +3424,973pr1317c01,15,3,f +3426,2352,14,2,f +3426,2456,15,4,f +3426,2456,4,4,f +3426,2456,70,2,f +3426,2456,1,4,f +3426,2456,14,4,f +3426,2460,4,1,f +3426,2479,0,1,f +3426,3001,15,20,f +3426,3001,2,10,f +3426,3001,1,24,f +3426,3001,14,24,f +3426,3001,27,8,f +3426,3001,0,10,f +3426,3001,70,2,f +3426,3001,4,24,f +3426,3001pr1,14,1,f +3426,3002,14,8,f +3426,3002,0,4,f +3426,3002,4,8,f +3426,3002,27,4,f +3426,3002,2,4,f +3426,3002,15,8,f +3426,3002,1,8,f +3426,3003,70,10,f +3426,3003,27,10,f +3426,3003,4,28,f +3426,3003,14,28,f +3426,3003,1,28,f +3426,3003,0,10,f +3426,3003,2,10,f +3426,3003,15,28,f +3426,3003pe2,15,2,f +3426,3003pe2,14,2,f +3426,3006,1,2,f +3426,3007,4,2,f +3426,3029,1,1,f +3426,33303,15,6,f +3426,4204,2,1,f +3426,4617b,0,2,f +3426,4727,2,4,f +3426,4728,15,1,f +3426,4728,4,1,f +3426,4728,14,1,f +3426,4728,1,1,f +3426,4744pr0001,0,1,f +3426,4744pr0002,4,1,f +3426,4744pr0003,4,1,f +3426,4744pr0004,2,1,f +3426,56902,4,8,f +3426,6007,2,1,f +3426,60474,0,1,f +3426,60598,4,4,f +3426,60599,4,2,f +3426,60608,15,8,f +3426,60623,15,2,f +3426,61254,0,8,f +3426,61485,0,1,f +3426,6215,1,4,f +3426,6215,14,4,f +3426,6215,15,4,f +3426,6215,4,4,f +3426,6232,14,2,f +3426,6249,72,4,f +3427,2357,4,2,f +3427,3001,4,12,f +3427,3002,4,6,f +3427,3003,4,10,f +3427,3004,4,8,f +3427,3005,4,6,f +3427,3006,4,1,f +3427,3007,4,1,f +3427,3008,4,2,f +3427,3009,4,4,f +3427,3010,4,6,f +3427,3622,4,4,f +3428,2412b,71,4,f +3428,2431,27,3,f +3428,2456,15,1,f +3428,2540,25,1,f +3428,2654,47,2,f +3428,2780,0,2,f +3428,2780,0,1,t +3428,298c02,15,1,t +3428,298c02,15,2,f +3428,3004,27,6,f +3428,3009,27,3,f +3428,3010,27,6,f +3428,30170,72,1,f +3428,30170,72,1,t +3428,3020,72,1,f +3428,3023,27,4,f +3428,3023,72,8,f +3428,30325,1,2,f +3428,3034,71,4,f +3428,30367b,0,2,f +3428,30385,182,2,f +3428,3040b,27,4,f +3428,30414,71,1,f +3428,30526,72,2,f +3428,3062b,72,7,f +3428,3068b,0,1,f +3428,32002,72,1,t +3428,32002,72,8,f +3428,32054,71,4,f +3428,32064b,71,2,f +3428,32073,71,1,f +3428,32123b,71,4,f +3428,32123b,14,3,f +3428,32123b,71,1,t +3428,32123b,14,1,t +3428,32269,0,1,f +3428,32270,0,1,f +3428,32316,71,2,f +3428,32556,19,2,f +3428,3460,27,3,f +3428,3626bpr0557,14,1,f +3428,3626bpr0563,14,1,f +3428,3650c,71,1,f +3428,3700,0,7,f +3428,3708,0,1,f +3428,3709,15,3,f +3428,3710,27,1,f +3428,3710,71,1,f +3428,3713,71,2,f +3428,3713,71,1,t +3428,3738,0,1,f +3428,3749,19,4,f +3428,3795,0,1,f +3428,3841,72,1,f +3428,3895,0,2,f +3428,3941,0,2,f +3428,3941,27,2,f +3428,3962b,0,1,f +3428,4019,71,3,f +3428,4032a,71,2,f +3428,4081b,0,2,f +3428,4185,27,4,f +3428,4185,71,2,f +3428,4274,1,1,f +3428,4274,1,1,t +3428,43093,1,4,f +3428,43712,27,2,f +3428,44728,0,1,f +3428,4477,0,2,f +3428,4589,71,4,f +3428,4599a,71,2,f +3428,4623,0,2,f +3428,48336,71,2,f +3428,48729a,72,1,t +3428,48729a,72,4,f +3428,50745,25,2,f +3428,54091,27,2,f +3428,54095,27,1,f +3428,54200,72,1,t +3428,54200,72,2,f +3428,55013,72,2,f +3428,57585,71,2,f +3428,59443,14,1,f +3428,60169,72,1,f +3428,6020,0,1,f +3428,60470a,71,1,f +3428,60485,71,1,f +3428,61070,27,1,f +3428,61071,27,1,f +3428,6126a,182,1,f +3428,61409,27,2,f +3428,6141,27,7,f +3428,6141,0,2,t +3428,6141,0,11,f +3428,6141,27,2,t +3428,61780,72,1,f +3428,62113,0,1,f +3428,64711,25,1,f +3428,64711,0,4,f +3428,64712,72,1,f +3428,64712,0,4,f +3428,64713,71,1,f +3428,64728,4,1,f +3428,64783,72,2,f +3428,64784pat01,182,1,f +3428,64785,72,1,f +3428,6553,72,2,f +3428,6585,0,1,f +3428,6587,72,1,f +3428,6589,19,2,f +3428,6636,72,1,f +3428,8960stk01,9999,1,t +3428,970c00pr0122,1,2,f +3428,973pr1432c01,71,1,f +3428,973pr1435c01,71,1,f +3429,3001,4,1,f +3429,3004,4,1,f +3429,3005,4,4,f +3429,3024,0,3,f +3429,3062b,6,2,f +3429,3623,6,1,f +3429,3794a,4,1,f +3430,6579,0,2,f +3430,6580,15,2,f +3432,2419,4,1,f +3432,2420,4,2,f +3432,2450,4,2,f +3432,2555,0,10,f +3432,2921,0,2,f +3432,3003,4,1,f +3432,3004,71,2,f +3432,3005,4,2,f +3432,3010,4,1,f +3432,3020,0,2,f +3432,3022,0,2,f +3432,3022,70,1,f +3432,3023,72,3,f +3432,3024,4,10,f +3432,3039,0,2,f +3432,3048c,0,2,f +3432,3048c,4,2,f +3432,3049b,0,3,f +3432,3176,0,1,f +3432,3298,0,1,f +3432,3460,19,2,f +3432,3623,4,4,f +3432,3623,70,8,f +3432,3623,19,8,f +3432,3660,72,2,f +3432,3710,0,19,f +3432,3747b,0,1,f +3432,3794a,4,3,f +3432,3795,19,3,f +3432,4070,72,2,f +3432,4081b,0,2,f +3432,41747,0,1,f +3432,41748,0,1,f +3432,41764,0,1,f +3432,41765,0,1,f +3432,42023,0,2,f +3432,4286,4,6,f +3432,43722,0,2,f +3432,43723,0,2,f +3432,44301a,0,18,f +3432,44302a,70,18,f +3432,44728,0,1,f +3432,49668,15,2,f +3432,53451,15,1,t +3432,53451,15,4,f +3432,53451,4,1,t +3432,53451,4,8,f +3432,54200,0,2,f +3432,54200,4,8,f +3432,54200,4,1,t +3432,54200,0,1,t +3432,6141,46,1,t +3432,6141,46,6,f +3432,73983,0,4,f +3433,2431,7,1,f +3433,2436,15,1,f +3433,2444,15,1,f +3433,2476a,7,1,f +3433,2496,0,2,f +3433,2518,2,4,f +3433,2536,6,6,f +3433,2540,15,1,f +3433,2546p01,4,1,f +3433,2563,6,1,f +3433,2566,2,1,f +3433,2655,15,2,f +3433,3004,15,13,f +3433,3005,15,8,f +3433,3020,15,4,f +3433,3021,15,2,f +3433,3023,13,4,f +3433,3023,15,3,f +3433,3024,13,2,f +3433,3024,46,2,f +3433,3024,7,1,f +3433,3034,15,1,f +3433,3068b,15,2,f +3433,3068bpb0016,15,2,f +3433,3069b,13,1,f +3433,3069bp06,15,1,f +3433,3070b,15,1,f +3433,3070b,7,1,f +3433,3070b,13,1,f +3433,3070b,14,2,f +3433,3070b,4,1,f +3433,3185,13,2,f +3433,3308,7,1,f +3433,3403c01,15,1,f +3433,3455,15,2,f +3433,3626bp03,14,1,f +3433,3626bp04,14,1,f +3433,3626bp07,14,1,f +3433,3626bpb0175,14,2,f +3433,3629,7,1,f +3433,3741,2,1,f +3433,3742,4,3,f +3433,3742,4,1,t +3433,3857,17,1,f +3433,3899,13,2,f +3433,3901,6,1,f +3433,3937,15,2,f +3433,3938,15,2,f +3433,3941,15,2,f +3433,3960pb001,15,1,f +3433,3961px2,15,1,f +3433,4032a,2,1,f +3433,4070,15,2,f +3433,4079,13,6,f +3433,4094b,13,1,f +3433,4477,7,1,f +3433,4532,15,1,f +3433,4536,14,1,f +3433,4865a,15,4,f +3433,57503,334,1,f +3433,57504,334,1,f +3433,57505,334,1,f +3433,57506,334,1,f +3433,6091,7,4,f +3433,6091,13,2,f +3433,6093,6,1,f +3433,6093,4,1,f +3433,6093,0,1,f +3433,6111,15,1,f +3433,6141,15,4,f +3433,63965,15,2,f +3433,970c00,15,2,f +3433,970c00,7,1,f +3433,970x001,14,1,f +3433,970x026,14,1,f +3433,973c11,0,1,f +3433,973pb0017c01,15,1,f +3433,973pb0061c01,14,1,f +3433,973pb0128c01,15,1,f +3433,973px23c01,13,1,f +3434,2399,0,1,f +3434,2412b,4,2,f +3434,2421,7,1,f +3434,2446,15,1,f +3434,2447,41,1,f +3434,2460,0,1,f +3434,2479,0,1,f +3434,298c01,0,1,f +3434,298c02,4,2,f +3434,3003,4,1,f +3434,3004,14,1,f +3434,3004,0,1,f +3434,3005,14,4,f +3434,3005,4,4,f +3434,3005,0,2,f +3434,3020,1,1,f +3434,3020,7,1,f +3434,3020,14,1,f +3434,3021,0,1,f +3434,3021,14,1,f +3434,3022,4,2,f +3434,3023,14,2,f +3434,3023,0,4,f +3434,3023,4,4,f +3434,3024,0,1,f +3434,3024,36,1,f +3434,3024,34,1,f +3434,3024,4,2,f +3434,3069b,4,2,f +3434,3069b,7,2,f +3434,3069b,14,2,f +3434,3069bp52,15,1,f +3434,3069bp68,15,1,f +3434,3070b,36,1,f +3434,3070b,36,1,t +3434,3176,0,1,f +3434,3188,0,1,f +3434,3189,0,1,f +3434,3460,14,3,f +3434,3460,0,1,f +3434,3460,7,2,f +3434,3464,47,2,f +3434,3623,4,2,f +3434,3626apr0001,14,2,f +3434,3641,0,2,f +3434,3665,0,2,f +3434,3666,4,2,f +3434,3710,0,1,f +3434,3710,7,2,f +3434,3747a,0,1,f +3434,3794a,14,2,f +3434,3794a,1,2,f +3434,3795,0,1,f +3434,3900,15,2,f +3434,3937,0,1,f +3434,3938,0,1,f +3434,3962a,0,1,f +3434,4079,7,1,f +3434,4083,4,1,f +3434,4162,7,2,f +3434,4286,0,1,f +3434,4315,0,1,f +3434,4449,7,1,f +3434,4474,41,1,f +3434,4477,4,1,f +3434,4480c01,0,1,f +3434,4483,47,1,f +3434,4485,4,1,f +3434,4488,0,1,f +3434,4854,0,1,f +3434,4855,0,2,f +3434,4858,0,1,f +3434,4859,4,2,f +3434,4859,0,1,f +3434,4859,14,2,f +3434,4864a,14,1,f +3434,4864a,0,1,f +3434,4865a,41,4,f +3434,4871,0,1,f +3434,4873,7,2,f +3434,6141,36,2,f +3434,6141,46,1,f +3434,6141,46,1,t +3434,970c00,15,1,f +3434,970c00,1,1,f +3434,973p0bc01,15,1,f +3434,973p16c01,15,1,f +3437,14226c11,0,1,f +3437,2343,71,2,f +3437,2420,15,2,f +3437,2431,70,6,f +3437,2431,15,2,f +3437,2437,40,1,f +3437,2445,0,1,f +3437,2454a,15,2,f +3437,2489,70,3,f +3437,2540,0,1,f +3437,2555,0,1,f +3437,3002,71,3,f +3437,30027b,71,4,f +3437,30028,0,4,f +3437,3003,15,1,f +3437,3004,70,12,f +3437,3005,70,4,f +3437,30093,34,3,f +3437,3010,70,4,f +3437,30140,70,3,f +3437,3023,71,14,f +3437,3031,4,1,f +3437,3032,15,1,f +3437,3040b,71,6,f +3437,3062b,41,3,f +3437,3062b,36,1,f +3437,3062b,71,5,f +3437,3062b,2,3,f +3437,3063b,71,5,f +3437,3068b,15,5,f +3437,3068bpr0137,15,1,f +3437,3069b,70,4,f +3437,3069bpr0030,15,1,f +3437,3070b,70,1,t +3437,3070b,70,3,f +3437,3070bpr0007,71,1,t +3437,3070bpr0007,71,1,f +3437,3245b,15,1,f +3437,3460,70,1,f +3437,3660,71,1,f +3437,3660,2,2,f +3437,3666,4,1,f +3437,3795,70,2,f +3437,3829c01,1,1,f +3437,3832,70,1,f +3437,3857,19,1,f +3437,3899,4,1,f +3437,3937,71,1,f +3437,3938,15,1,f +3437,3941,4,4,f +3437,3941,15,2,f +3437,3942c,71,4,f +3437,4032a,70,3,f +3437,4032a,2,1,f +3437,4032a,71,2,f +3437,4070,72,5,f +3437,4162,71,2,f +3437,41767,15,1,f +3437,41768,15,1,f +3437,4181,73,1,f +3437,4182,73,1,f +3437,41879a,70,1,f +3437,4215b,15,4,f +3437,4274,1,1,t +3437,4274,1,1,f +3437,43713,2,1,f +3437,43719,15,1,f +3437,44568,15,1,f +3437,44570,15,1,f +3437,44728,71,3,f +3437,44728,4,2,f +3437,4477,15,2,f +3437,4532,15,2,f +3437,4533,41,1,f +3437,4536,15,2,f +3437,45677,15,1,f +3437,4589,46,1,f +3437,4599a,71,5,f +3437,4599a,0,2,f +3437,4714,15,2,f +3437,4715,15,4,f +3437,4733,0,1,f +3437,4740,0,1,f +3437,4854,2,2,f +3437,4865a,15,2,f +3437,54872pr0005,14,1,f +3437,54873pr0001,78,1,f +3437,59349,15,3,f +3437,6041,0,1,f +3437,6060,15,4,f +3437,6112,70,1,f +3437,61286pr0002,85,1,f +3437,6141,72,1,t +3437,6141,72,4,f +3437,6157,0,2,f +3437,6182,15,1,f +3437,6231,15,6,f +3437,6259,71,4,f +3437,63965,0,1,f +3437,6636,19,2,f +3437,970c00,378,1,f +3437,970c00pr0108,78,1,f +3437,973c11,14,1,f +3437,973pr1259c01,78,1,f +3437,973pr1427c01,15,1,f +3440,3626bpr0043,14,1,f +3440,6093,0,1,f +3440,6254,15,1,f +3440,970c00,1,1,f +3440,973pr1204c01,15,1,f +3442,3005pta,15,3,f +3442,3005ptb,15,3,f +3442,3005ptc,15,2,f +3442,3005ptd,15,2,f +3442,3005pte,15,3,f +3442,3005ptf,15,2,f +3442,3005ptg,15,2,f +3442,3005pth,15,2,f +3442,3005pti,15,3,f +3442,3005ptj,15,2,f +3442,3005ptk,15,2,f +3442,3005ptl,15,2,f +3442,3005ptm,15,2,f +3442,3005ptn,15,2,f +3442,3005pto,15,2,f +3442,3005ptp,15,2,f +3442,3005ptq,15,1,f +3442,3005ptr,15,2,f +3442,3005pts,15,2,f +3442,3005ptt,15,2,f +3442,3005ptu,15,2,f +3442,3005ptv,15,1,f +3442,3005ptw,15,1,f +3442,3005ptx,15,1,f +3442,3005pty,15,1,f +3442,3005ptz,15,1,f +3443,2357,4,2,f +3443,2357,14,2,f +3443,2357,15,2,f +3443,2456,4,1,f +3443,2456,15,1,f +3443,2458,14,2,f +3443,2460,14,1,f +3443,2479,1,2,f +3443,3001,15,4,f +3443,3001,14,2,f +3443,3001,4,2,f +3443,3001,1,2,f +3443,3002,14,2,f +3443,3002,15,2,f +3443,3002,1,2,f +3443,3003,15,2,f +3443,3003,0,2,f +3443,3003,4,4,f +3443,3003,1,2,f +3443,3003,14,2,f +3443,3004,15,24,f +3443,3004,14,20,f +3443,3004,0,6,f +3443,3004,1,6,f +3443,3004,47,4,f +3443,3004,4,18,f +3443,3004p06,15,1,f +3443,3005,15,20,f +3443,3005,0,8,f +3443,3005,14,18,f +3443,3005,1,8,f +3443,3005,4,14,f +3443,3005,47,2,f +3443,3008,15,1,f +3443,3009,1,2,f +3443,3009,14,1,f +3443,3009,15,2,f +3443,3009,4,2,f +3443,3010,0,2,f +3443,3010,1,4,f +3443,3010,4,6,f +3443,3010,15,6,f +3443,3010,14,8,f +3443,3020,1,4,f +3443,3021,1,2,f +3443,3022,1,2,f +3443,3031,1,1,f +3443,3032,1,1,f +3443,3034,1,4,f +3443,3039,47,2,f +3443,3040b,4,4,f +3443,3081cc01,4,2,f +3443,3137c01,0,2,f +3443,3245bpx11,1,1,f +3443,3297,4,6,f +3443,3298,4,6,f +3443,3299,4,3,f +3443,3300,4,2,f +3443,3403c01,4,1,f +3443,3470,2,1,f +3443,3622,1,2,f +3443,3622,14,4,f +3443,3622,15,4,f +3443,3622,4,4,f +3443,3624,4,1,f +3443,3626apr0001,14,2,f +3443,3633,14,4,f +3443,3641,0,4,f +3443,3660,4,4,f +3443,3665,4,4,f +3443,3666,1,4,f +3443,3710,1,4,f +3443,3741,2,2,f +3443,3742,14,1,t +3443,3742,4,3,f +3443,3742,14,3,f +3443,3742,4,1,t +3443,3795,1,2,f +3443,3823,47,1,f +3443,3853,4,4,f +3443,3854,15,8,f +3443,3856,15,4,f +3443,3867,2,1,f +3443,3957a,15,2,f +3443,4347,4,1,f +3443,4495b,14,2,f +3443,4530,6,1,f +3443,6007,8,1,f +3443,73312,4,1,f +3443,970c00,7,1,f +3443,970c00,15,1,f +3443,973c07,1,1,f +3443,973px62c01,15,1,f +3444,30132,72,1,f +3444,30132,72,1,t +3444,30193,72,1,f +3444,30193,72,1,t +3444,3626bpr0247,14,1,f +3444,970c00pb018,19,1,f +3444,973px183c01,6,1,f +3445,2412b,4,2,f +3445,2412b,8,4,f +3445,2432,8,1,f +3445,2446pb18,0,1,f +3445,2447,40,1,t +3445,2447,40,1,f +3445,2540,0,2,f +3445,2555,7,2,f +3445,2730,4,2,f +3445,2780,0,1,t +3445,2780,0,2,f +3445,30136,0,2,f +3445,30136,7,2,f +3445,3020,8,1,f +3445,3021,0,1,f +3445,3021,15,2,f +3445,3022,4,1,f +3445,3023,4,1,f +3445,3034,8,3,f +3445,3035,0,1,f +3445,3036,0,1,f +3445,30383,4,2,f +3445,3039,0,3,f +3445,3040b,0,4,f +3445,30553,8,2,f +3445,32283c03,0,1,f +3445,3626bpb0184,15,1,f +3445,3665,7,2,f +3445,3708,0,2,f +3445,3713,7,8,f +3445,3713,7,1,t +3445,3749,19,2,f +3445,3794a,0,1,f +3445,3795,4,3,f +3445,3795,0,1,f +3445,3829c01,7,1,f +3445,4070,0,2,f +3445,41747pb009,0,1,f +3445,41748pb009,0,1,f +3445,41769,4,2,f +3445,41770,4,2,f +3445,42022,0,2,f +3445,42022pb05,4,1,f +3445,42022pb06,4,1,f +3445,42023,0,2,f +3445,4286,0,2,f +3445,43720,0,1,f +3445,43720,7,1,f +3445,43721,7,1,f +3445,43721,0,1,f +3445,44293c01,7,4,f +3445,44675,0,1,f +3445,44676,0,2,f +3445,6087,4,1,f +3445,6141,7,6,f +3445,6141,7,1,t +3445,6141,0,2,f +3445,6141,0,1,t +3445,6564,7,1,f +3445,6565,7,1,f +3445,75c22,8,1,f +3445,970x026,4,1,f +3445,973pb0295c01,4,1,f +3446,16175pr02,191,1,f +3446,18983pr0001,70,1,f +3446,2431pr0075,19,1,f +3446,3626cpr1545,14,1,f +3446,88646,0,1,f +3446,970c00pr0755,272,1,f +3446,973pr2838c01,212,1,f +3453,15527pr0002,14,1,f +3453,3068bpr0248,15,1,f +3453,88646,0,1,f +3453,970c00,321,1,f +3453,973pr2970c01,1,1,f +3454,2456,15,5,f +3454,3003,15,2,f +3454,3010,15,4,f +3454,3020,15,4,f +3454,3022,15,3,f +3454,3023,15,14,f +3454,3024,15,4,f +3454,3031,15,2,f +3454,3031,14,1,f +3454,3666,15,2,f +3454,3710,15,8,f +3454,3795,15,2,f +3454,4032a,0,1,f +3454,43898,72,4,f +3454,6141,0,1,f +3456,14226c41,2,2,f +3456,2357,72,8,f +3456,2420,72,4,f +3456,2431,72,4,f +3456,2555,71,1,f +3456,2730,0,1,f +3456,2780,0,1,t +3456,2780,0,20,f +3456,2817,0,3,f +3456,3003,72,8,f +3456,3004,72,11,f +3456,3005,72,2,f +3456,3007,0,1,f +3456,3010,72,2,f +3456,30145,72,14,f +3456,3020,0,7,f +3456,3021,72,5,f +3456,3023,71,13,f +3456,3024,15,6,f +3456,3027,0,2,f +3456,30293pat0002,72,3,f +3456,30294pat0001,72,3,f +3456,3032,72,2,f +3456,3034,0,3,f +3456,3036,0,1,f +3456,3039,72,3,f +3456,3040b,72,11,f +3456,3048c,71,5,f +3456,30526,72,2,f +3456,3068b,272,3,f +3456,3069b,15,2,f +3456,3070b,0,1,t +3456,3070b,0,4,f +3456,32000,72,8,f +3456,32018,72,2,f +3456,32028,0,2,f +3456,32054,0,1,f +3456,32184,71,1,f +3456,32192,72,2,f +3456,32209,72,2,f +3456,32316,0,2,f +3456,32348,72,4,f +3456,3245b,72,4,f +3456,32525,72,4,f +3456,32532,72,1,f +3456,32556,71,1,f +3456,3460,72,1,f +3456,3622,72,4,f +3456,3665,4,1,f +3456,3666,71,10,f +3456,3673,71,1,t +3456,3673,71,6,f +3456,3684,72,8,f +3456,3700,71,4,f +3456,3701,72,1,f +3456,3703,0,2,f +3456,3705,0,1,f +3456,3710,0,9,f +3456,3710,72,1,f +3456,3713,71,1,t +3456,3713,71,2,f +3456,3794a,0,14,f +3456,3795,72,1,f +3456,3894,72,1,f +3456,4162,72,6,f +3456,41752,72,1,t +3456,4276b,71,2,f +3456,4282,0,1,f +3456,43093,1,13,f +3456,4460a,272,6,f +3456,4477,0,1,f +3456,44813,135,2,f +3456,45705,272,1,f +3456,4589,42,5,f +3456,50918,179,2,f +3456,51635,0,1,f +3456,51636,288,1,f +3456,51637,320,1,f +3456,51638,272,1,f +3456,51639,86,1,f +3456,51640,15,1,f +3456,51641,179,1,f +3456,51642,179,1,f +3456,51643,179,1,f +3456,51644,179,1,f +3456,51645,179,1,f +3456,51663,179,1,f +3456,51991a,0,1,f +3456,51991b,0,1,f +3456,51991c,0,2,f +3456,51991d,0,1,f +3456,51991e,0,2,f +3456,51991f,0,1,f +3456,6082,72,2,f +3456,6083,72,2,f +3456,6538b,71,2,f +3456,6541,0,2,f +3456,6558,0,3,f +3456,6628,0,1,f +3456,6636,0,2,f +3456,85546,14,1,t +3456,85546,14,1,f +3456,8769stk01,9999,1,t +3459,15573,25,1,f +3459,15573,15,2,f +3459,15712,72,2,f +3459,2412b,0,1,f +3459,30162,72,1,f +3459,3021,72,1,f +3459,3023,15,1,f +3459,30374,71,2,f +3459,43722,15,1,f +3459,43723,15,1,f +3459,54200,40,2,f +3459,6141,72,2,f +3459,99780,71,2,f +3460,14pb01,15,1,f +3460,14pb02,15,1,f +3460,14pb04,15,1,f +3460,14pb05,15,1,f +3460,649p02,15,2,f +3460,675pr01,15,1,f +3460,7284,15,1,f +3460,739p01,15,2,f +3460,80039,15,1,f +3460,80045,15,1,f +3461,3711a,0,3,t +3461,3711a,0,108,f +3462,11211,19,1,f +3462,2454a,72,1,f +3462,2456,2,1,f +3462,2456,15,1,f +3462,2456,72,1,f +3462,2456,14,1,f +3462,2877,72,2,f +3462,2926,0,2,f +3462,3001,71,2,f +3462,3001,4,2,f +3462,3001,14,3,f +3462,3001,70,2,f +3462,3001,29,4,f +3462,3001,1,4,f +3462,3001,72,4,f +3462,3001,15,2,f +3462,3001,28,2,f +3462,3001,25,1,f +3462,3001,19,8,f +3462,3001,2,3,f +3462,3002,19,2,f +3462,3002,0,4,f +3462,3002,15,4,f +3462,3002,70,3,f +3462,3002,14,2,f +3462,3002,2,3,f +3462,3002,4,2,f +3462,3002,71,2,f +3462,3003,85,2,f +3462,3003,29,2,f +3462,3003,14,4,f +3462,3003,4,2,f +3462,3003,2,6,f +3462,3003,70,4,f +3462,3003,72,2,f +3462,3003,1,4,f +3462,3003,27,4,f +3462,3003,15,2,f +3462,3003,25,4,f +3462,3003,71,4,f +3462,3004,27,3,f +3462,3004,321,2,f +3462,3004,2,4,f +3462,3004,15,4,f +3462,3004,0,8,f +3462,3004,25,4,f +3462,3004,72,2,f +3462,3004,272,4,f +3462,3004,14,6,f +3462,3004,4,6,f +3462,3004,19,4,f +3462,3004,28,2,f +3462,3004,71,4,f +3462,3004,1,12,f +3462,3004,70,6,f +3462,3004,29,4,f +3462,3004pr0001,14,1,f +3462,3004pr0002,14,1,f +3462,3005,15,2,f +3462,3005,1,4,f +3462,3005,14,4,f +3462,3005,2,4,f +3462,3005,25,2,f +3462,3005,70,2,f +3462,3005,71,4,f +3462,3005,0,5,f +3462,3005,4,4,f +3462,3007,15,1,f +3462,3008,72,4,f +3462,3008,4,1,f +3462,3008,71,1,f +3462,3008,1,1,f +3462,3009,70,1,f +3462,3009,0,1,f +3462,3009,72,2,f +3462,3009,15,1,f +3462,3009,4,2,f +3462,3009,19,2,f +3462,3010,2,2,f +3462,3010,4,4,f +3462,3010,0,2,f +3462,3010,272,2,f +3462,3010,28,1,f +3462,3010,15,6,f +3462,3010,1,2,f +3462,3010,70,5,f +3462,3010,14,2,f +3462,3010,25,2,f +3462,30136,28,2,f +3462,30136,19,4,f +3462,3020,19,2,f +3462,3020,1,1,f +3462,3020,0,3,f +3462,3021,19,2,f +3462,3021,25,4,f +3462,3022,4,2,f +3462,3022,71,2,f +3462,3022,14,2,f +3462,3022,0,2,f +3462,3022,70,2,f +3462,3023,0,2,f +3462,3023,70,3,f +3462,3023,2,4,f +3462,3023,14,2,f +3462,3023,27,5,f +3462,3023,15,3,f +3462,30236,0,1,f +3462,30236,71,1,f +3462,3031,15,1,f +3462,3034,71,2,f +3462,3035,71,1,f +3462,3035,15,2,f +3462,3037,1,2,f +3462,3037,0,4,f +3462,3037,72,4,f +3462,3037,272,2,f +3462,3039,320,6,f +3462,3039,4,2,f +3462,3039,25,5,f +3462,3039,47,3,f +3462,3039,72,2,f +3462,3039,2,2,f +3462,3039,14,2,f +3462,3039,19,3,f +3462,3040b,15,4,f +3462,3040b,321,4,f +3462,3040b,320,2,f +3462,3040b,27,2,f +3462,3040b,0,4,f +3462,3040b,70,2,f +3462,3040b,1,8,f +3462,3062b,19,2,f +3462,3062b,57,2,f +3462,3062b,27,16,f +3462,3062b,72,4,f +3462,3062b,15,2,f +3462,3065,47,4,f +3462,32059,0,1,f +3462,3297,15,1,f +3462,3298,72,2,f +3462,3622,15,6,f +3462,3622,71,2,f +3462,3622,25,4,f +3462,3622,27,3,f +3462,3622,19,2,f +3462,3622,14,2,f +3462,3623,72,3,f +3462,3623,19,1,f +3462,3660,14,2,f +3462,3660,2,2,f +3462,3660,1,4,f +3462,3660,0,3,f +3462,3660,15,2,f +3462,3660,70,2,f +3462,3665,19,4,f +3462,3665,85,4,f +3462,3665,71,2,f +3462,3665,4,2,f +3462,3665,25,2,f +3462,3665,14,4,f +3462,3666,19,2,f +3462,3710,15,2,f +3462,3710,14,2,f +3462,3710,4,3,f +3462,3747b,19,2,f +3462,3747b,25,1,f +3462,3794b,25,3,f +3462,3794b,15,2,f +3462,3794b,19,2,f +3462,3795,4,1,f +3462,3795,0,2,f +3462,3941,0,2,f +3462,3941,57,2,f +3462,3941,15,2,f +3462,3941,72,4,f +3462,3942c,0,1,f +3462,4286,71,2,f +3462,4287,0,2,f +3462,4287,15,3,f +3462,43898,72,2,f +3462,44728,25,1,f +3462,44728,19,1,f +3462,44728,0,2,f +3462,47905,15,3,f +3462,47905,0,3,f +3462,48336,1,1,f +3462,49668,15,2,f +3462,50950,0,2,f +3462,50950,14,2,f +3462,54200,0,2,f +3462,54200,19,4,f +3462,54200,14,3,f +3462,54200,25,2,f +3462,59900,70,2,f +3462,6014b,15,4,f +3462,61252,4,2,f +3462,6141,0,3,f +3462,6141,4,3,f +3462,6141,29,3,f +3462,6141,19,3,f +3462,6141,14,3,f +3462,6141,85,3,f +3462,6141,1,3,f +3462,6233,15,1,f +3462,63868,0,3,f +3462,63868,72,2,f +3462,87087,72,2,f +3462,87087,19,4,f +3462,87697,0,4,f +3462,96874,25,1,t +3462,98138pr0008,15,14,f +3463,15527pr0002,14,1,f +3463,15573,484,2,f +3463,18868a,41,2,f +3463,19981pr0009,41,1,f +3463,21445,71,4,f +3463,2412b,71,1,f +3463,2431,71,2,f +3463,2431,29,2,f +3463,298c02,71,3,f +3463,298c02,71,1,t +3463,3004,30,1,f +3463,3005,30,2,f +3463,3010,30,1,f +3463,3020,272,1,f +3463,3020,71,1,f +3463,3021,29,3,f +3463,3022,29,2,f +3463,3022,72,2,f +3463,3023,71,2,f +3463,3023,30,3,f +3463,3023,29,6,f +3463,3023,272,3,f +3463,3024,72,1,f +3463,3024,72,1,t +3463,3024,30,3,f +3463,3024,29,1,t +3463,3024,29,2,f +3463,3024,30,1,t +3463,3062bpr0005,4,1,f +3463,3065,47,3,f +3463,3068bpr0275,14,1,f +3463,3069b,15,1,f +3463,3069b,29,1,f +3463,3069bp02,71,1,f +3463,3069bpr0010,72,1,f +3463,3941,41,2,f +3463,4599b,0,1,f +3463,4599b,0,1,t +3463,4624,71,4,f +3463,54200,29,1,t +3463,54200,29,1,f +3463,59895,0,4,f +3463,6019,0,1,f +3463,6141,36,2,f +3463,6141,72,1,t +3463,6141,47,3,f +3463,6141,47,1,t +3463,6141,36,1,t +3463,6141,72,8,f +3463,85861,0,1,f +3463,85861,0,1,t +3463,87087,30,4,f +3463,93274,29,2,f +3463,970c00,73,1,f +3463,973pr2604c01,15,1,f +3463,98138pr0035,179,1,f +3464,3004,4,8,f +3464,3005,4,6,f +3464,3008,4,4,f +3464,3009,4,4,f +3464,3010,4,6,f +3465,2412b,0,1,f +3465,2421,0,1,f +3465,2431,2,1,f +3465,2446,8,1,f +3465,2447,0,1,t +3465,2447,0,1,f +3465,298c02,14,1,t +3465,298c02,14,1,f +3465,3004,14,1,f +3465,3004,0,2,f +3465,3020,4,1,f +3465,3020,0,1,f +3465,30363,2,1,f +3465,3623,8,2,f +3465,3626bpx90,14,1,f +3465,3660,8,1,f +3465,3829c01,7,1,f +3465,4488,7,1,f +3465,4856a,0,1,f +3465,4859,8,1,f +3465,6141,36,1,f +3465,6141,36,1,t +3465,6141,34,1,f +3465,6141,34,1,t +3465,970c00,0,1,f +3465,973px143c01,0,1,f +3466,11203,72,2,f +3466,11458,72,2,f +3466,12825,0,8,f +3466,12825,71,2,f +3466,15207,15,4,f +3466,2335,15,2,f +3466,2412b,0,4,f +3466,2412b,320,4,f +3466,2412b,72,3,f +3466,2412b,25,2,f +3466,2431,15,3,f +3466,2432,72,2,f +3466,2488,0,1,f +3466,2524,15,3,f +3466,2540,72,3,f +3466,2584,0,1,f +3466,2585,71,1,f +3466,2654,47,1,f +3466,2877,72,2,f +3466,2921,71,1,f +3466,298c02,0,1,t +3466,298c02,0,3,f +3466,3001,15,1,f +3466,30031,0,1,f +3466,3004,15,4,f +3466,3005,15,2,f +3466,3005,0,1,f +3466,3009,19,1,f +3466,3010,15,4,f +3466,30162,72,1,f +3466,30187b,15,1,f +3466,30192,72,1,t +3466,30192,72,1,f +3466,3020,15,2,f +3466,3020,72,2,f +3466,3021,15,1,f +3466,3022,71,2,f +3466,3022,72,2,f +3466,3023,0,8,f +3466,3023,71,5,f +3466,30259,15,2,f +3466,3029,15,1,f +3466,30304,72,1,f +3466,3031,72,2,f +3466,3034,15,2,f +3466,3035,15,4,f +3466,30359b,71,2,f +3466,30370pr04,15,1,f +3466,30372pr0001,40,1,f +3466,30374,71,2,f +3466,30374,41,1,f +3466,30377,0,1,t +3466,30377,0,2,f +3466,3039,15,11,f +3466,3039,72,1,f +3466,3040b,15,4,f +3466,3040b,72,4,f +3466,30504,15,2,f +3466,3068b,0,3,f +3466,3068b,14,2,f +3466,3069b,15,3,f +3466,3069b,72,3,f +3466,3070b,71,4,f +3466,3070b,71,1,t +3466,32001,71,1,f +3466,32064a,71,2,f +3466,32073,71,1,f +3466,32270,0,1,f +3466,3298,15,2,f +3466,33078,4,1,f +3466,3460,15,3,f +3466,3623,15,2,f +3466,3626bpr0472,78,1,f +3466,3626cpr0593,78,1,f +3466,3626cpr0721,78,1,f +3466,3626cpr0922,0,2,f +3466,3626cpr1185,78,1,f +3466,3666,19,8,f +3466,3678b,15,7,f +3466,3743,0,1,f +3466,3747b,15,1,f +3466,3747b,72,1,f +3466,3794a,72,1,f +3466,3794a,71,4,f +3466,3795,15,4,f +3466,3795,19,2,f +3466,3830,15,2,f +3466,3831,15,2,f +3466,3832,15,2,f +3466,3837,0,1,f +3466,3839b,71,1,f +3466,3841,72,1,f +3466,3849,0,2,f +3466,3899,47,1,f +3466,3937,72,2,f +3466,3938,71,1,f +3466,3957a,47,1,f +3466,4032a,71,2,f +3466,4032a,72,3,f +3466,4032a,0,2,f +3466,4070,15,2,f +3466,4079b,0,1,f +3466,4081b,72,2,f +3466,4150,15,2,f +3466,41677,72,1,f +3466,41769,15,2,f +3466,41770,15,2,f +3466,42610,71,2,f +3466,4274,1,1,f +3466,4274,1,1,t +3466,4285b,72,1,f +3466,4286,15,5,f +3466,4349,0,1,f +3466,43719,15,1,f +3466,43722,71,1,f +3466,43723,71,1,f +3466,43898,47,1,f +3466,43898,0,1,f +3466,44294,71,2,f +3466,44301a,15,2,f +3466,44360,15,2,f +3466,44375b,71,1,f +3466,44567a,14,4,f +3466,44728,71,3,f +3466,4491b,72,1,f +3466,4510,71,2,f +3466,4588,72,2,f +3466,4595,0,1,f +3466,4599b,0,2,f +3466,4599b,0,1,t +3466,4600,0,1,f +3466,4623,15,1,f +3466,46304,15,1,t +3466,46304,15,2,f +3466,4733,72,3,f +3466,47397,15,1,f +3466,47398,15,1,f +3466,4740,0,1,f +3466,4740,47,1,f +3466,47456,15,1,f +3466,48336,71,2,f +3466,4855,15,1,f +3466,48729b,72,1,f +3466,48729b,72,1,t +3466,50950,71,2,f +3466,54200,0,2,f +3466,54200,0,1,t +3466,56823c50,0,1,f +3466,57899,0,2,f +3466,58247,0,2,f +3466,59443,72,2,f +3466,59443,0,1,f +3466,59900,72,6,f +3466,60470a,71,1,f +3466,60471,71,4,f +3466,60474,72,2,f +3466,60474,0,2,f +3466,60475b,15,7,f +3466,60477,72,4,f +3466,60478,72,2,f +3466,60849,0,2,f +3466,60849,0,2,t +3466,61184,71,2,f +3466,61252,0,1,f +3466,6134,71,1,f +3466,6141,72,11,f +3466,6141,57,3,f +3466,6141,57,1,t +3466,6141,0,1,t +3466,6141,0,2,f +3466,6141,72,2,t +3466,61485,15,1,f +3466,61780,72,2,f +3466,6238,40,1,f +3466,64567,80,1,f +3466,64567,80,1,t +3466,6541,19,4,f +3466,6587,28,1,f +3466,75937,0,2,f +3466,85984,71,3,f +3466,86055,71,1,f +3466,86056,71,1,f +3466,86057,19,1,f +3466,86058,19,1,f +3466,86059,72,1,f +3466,87082,71,1,f +3466,87087,0,1,f +3466,87555,19,3,f +3466,87580,71,5,f +3466,87617,0,1,f +3466,89908,71,1,f +3466,91988,71,4,f +3466,92280,71,2,f +3466,92593,15,2,f +3466,92738,0,1,f +3466,92946,72,4,f +3466,93348,15,1,f +3466,93550,179,1,t +3466,93550,179,1,f +3466,95199,72,1,f +3466,96874,25,1,t +3466,970c00,28,3,f +3466,970c00pr0476,25,1,f +3466,970x194,15,2,f +3466,973pr0460c01,19,2,f +3466,973pr2289c01,25,1,f +3466,973pr2311c01,15,2,f +3466,973pr2312c01,28,1,f +3466,99774,72,2,f +3466,99780,72,1,f +3466,99781,71,2,f +3466,99930,72,1,f +3470,10928,72,3,f +3470,11214,72,13,f +3470,11455,0,1,f +3470,11478,0,7,f +3470,11946,15,2,f +3470,11947,15,2,f +3470,13971,71,2,f +3470,14720,71,2,f +3470,15100,0,17,f +3470,15458,15,3,f +3470,15458,2,2,f +3470,15458,25,2,f +3470,15462,28,11,f +3470,15573,14,1,f +3470,16511,71,1,f +3470,18575,19,1,f +3470,18651,0,6,f +3470,18654,72,1,t +3470,18654,72,6,f +3470,18945,15,2,f +3470,18946,4,10,f +3470,18947,72,2,f +3470,18948,15,6,f +3470,22961,71,6,f +3470,24116,1,2,f +3470,25692,9999,1,t +3470,2723,71,1,f +3470,2780,0,184,f +3470,2780,0,4,t +3470,2819,71,1,f +3470,30367c,25,2,f +3470,30395,72,1,f +3470,3068b,72,2,f +3470,32002,19,6,f +3470,32002,19,1,t +3470,32009,15,2,f +3470,32012,72,1,f +3470,32013,15,19,f +3470,32013,0,2,f +3470,32015,15,4,f +3470,32034,71,13,f +3470,32039,71,8,f +3470,32054,71,34,f +3470,32056,71,12,f +3470,32062,4,14,f +3470,32063,71,7,f +3470,32073,14,8,f +3470,32123b,14,12,f +3470,32123b,14,1,t +3470,32126,0,2,f +3470,32138,71,2,f +3470,32140,71,14,f +3470,32140,15,7,f +3470,32184,71,16,f +3470,32235,0,1,f +3470,32235,0,1,t +3470,32270,0,4,f +3470,32278,15,6,f +3470,32293,0,1,f +3470,32316,71,3,f +3470,32316,15,17,f +3470,32449,72,6,f +3470,32523,15,15,f +3470,32524,25,4,f +3470,32525,72,13,f +3470,32525,15,2,f +3470,32526,15,16,f +3470,32526,72,2,f +3470,32556,19,10,f +3470,33299a,71,1,f +3470,3648b,72,1,f +3470,3673,71,1,t +3470,3673,71,7,f +3470,3705,0,8,f +3470,3706,4,3,f +3470,3713,4,9,f +3470,3713,4,1,t +3470,3737,0,2,f +3470,3749,19,4,f +3470,4032a,72,4,f +3470,40490,15,18,f +3470,41239,72,2,f +3470,41239,25,3,f +3470,41669,25,1,f +3470,41677,1,4,f +3470,4185,72,4,f +3470,42003,72,6,f +3470,4274,1,19,f +3470,4274,1,1,t +3470,43093,1,51,f +3470,44294,71,6,f +3470,4519,71,34,f +3470,4716,71,3,f +3470,55013,72,4,f +3470,55981,71,2,f +3470,56823c50,0,1,f +3470,57792,15,2,f +3470,58090,0,2,f +3470,58120,71,1,f +3470,58176,36,2,f +3470,59426,72,2,f +3470,59443,4,6,f +3470,59443,72,7,f +3470,60208,72,5,f +3470,60474,71,2,f +3470,60483,72,8,f +3470,61254,0,2,f +3470,61903,71,2,f +3470,62531,25,6,f +3470,62531,15,2,f +3470,63869,71,4,f +3470,64391,25,1,f +3470,64391,15,1,f +3470,64393,15,4,f +3470,64394,15,1,f +3470,64680,15,1,f +3470,64681,15,4,f +3470,64683,25,1,f +3470,64683,15,1,f +3470,64782,25,1,f +3470,64782,15,7,f +3470,6536,15,29,f +3470,6553,72,2,f +3470,6558,1,84,f +3470,6587,28,5,f +3470,6628,0,4,f +3470,6629,0,1,f +3470,6632,15,4,f +3470,6641,4,2,f +3470,75c06,0,2,f +3470,75c06,0,1,t +3470,76244,15,1,f +3470,87080,25,1,f +3470,87080,15,2,f +3470,87082,71,7,f +3470,87083,72,11,f +3470,87086,25,1,f +3470,87086,15,2,f +3470,87994,0,1,f +3470,87994,0,1,t +3470,88646,71,1,f +3470,92907,71,2,f +3470,94925,71,6,f +3470,98138,36,1,f +3470,98138,36,1,t +3470,98138,47,1,t +3470,98138,34,1,f +3470,98138,34,1,t +3470,98138,47,2,f +3470,98138pr0012,179,1,t +3470,98138pr0012,179,2,f +3470,99008,19,1,f +3470,99009,71,2,f +3470,99010,0,2,f +3470,99013pat0001,72,6,f +3471,2437,33,1,f +3471,298c02,15,2,f +3471,3004,14,2,f +3471,3010,0,2,f +3471,30162,8,1,f +3471,30193,8,1,f +3471,30194,8,1,f +3471,3021,14,1,f +3471,30228,8,1,f +3471,3024,46,2,f +3471,3024,36,2,f +3471,3297px15,0,1,f +3471,3460,14,2,f +3471,3626bp03,14,1,f +3471,3660,0,2,f +3471,3821,0,1,f +3471,3822,0,1,f +3471,3829c01,15,1,f +3471,4079,14,1,f +3471,4081b,15,2,f +3471,4083,0,1,f +3471,4085c,14,2,f +3471,4212b,0,1,f +3471,4485,0,1,f +3471,4773,33,1,f +3471,4773,36,1,f +3471,4865a,0,1,f +3471,6014,15,4,f +3471,6015,0,4,f +3471,6157,0,2,f +3471,970x026,15,1,f +3471,973px101c01,15,1,f +3472,2412b,15,26,f +3472,3003,15,24,f +3472,3005,15,6,f +3472,3010,15,26,f +3472,30151a,27,10,f +3472,30151a,25,10,f +3472,3022,25,7,f +3472,3022,2,7,f +3472,3022,27,7,f +3472,3022,4,7,f +3472,3022,72,1,f +3472,3022,71,2,f +3472,3068b,15,1,f +3472,3069b,71,2,f +3472,3069b,15,2,f +3472,3069b,14,2,f +3472,3070b,25,1,t +3472,3070b,15,1,t +3472,3070b,25,9,f +3472,3070b,14,1,t +3472,3070b,27,9,f +3472,3070b,15,1,f +3472,3070b,71,1,t +3472,3070b,71,1,f +3472,3070b,14,1,f +3472,3070b,27,1,t +3472,3794b,71,6,f +3472,3811,72,1,f +3472,3941,15,2,f +3472,3941,0,1,f +3472,3942c,0,1,f +3472,3957a,42,3,f +3472,3957a,57,3,f +3472,3957a,15,2,f +3472,3959,72,4,f +3472,3960,71,4,f +3472,4006,0,1,f +3472,4032a,4,1,f +3472,43898,15,1,f +3472,4589,14,20,f +3472,4599a,15,6,f +3472,4740,72,1,f +3472,4740,57,7,f +3472,4740,42,3,f +3472,4740,36,4,f +3472,4740,0,1,f +3472,4740,71,5,f +3472,4865a,15,2,f +3472,58176,46,20,f +3472,6182,15,6,f +3472,64776pat0001,0,1,f +3472,85861,15,4,f +3472,85861,15,1,t +3472,85863pr0005,25,1,f +3472,85863pr0006,27,1,f +3472,85863pr0007,14,4,f +3473,10201,4,1,f +3473,11055,15,1,f +3473,11291,71,1,f +3473,11477,71,2,f +3473,15068,72,1,f +3473,15068,71,4,f +3473,18972,40,1,f +3473,18974,71,4,f +3473,18975,72,2,f +3473,18976,179,4,f +3473,18977,0,4,f +3473,18979a,179,4,f +3473,18979b,179,4,t +3473,18980,71,3,f +3473,18980,0,1,f +3473,19245,9999,1,f +3473,2412b,72,2,f +3473,2420,4,8,f +3473,2446,0,1,f +3473,2447,47,1,f +3473,2447,47,1,t +3473,30029,0,1,f +3473,3003,71,1,f +3473,3020,72,3,f +3473,3021,1,2,f +3473,3022,71,6,f +3473,3023,14,4,f +3473,3023,71,4,f +3473,3023,36,2,f +3473,3024,71,1,t +3473,3024,4,1,t +3473,3024,4,4,f +3473,3024,71,8,f +3473,3069b,71,4,f +3473,3069b,4,2,f +3473,32124,0,2,f +3473,3622,72,1,f +3473,3623,0,2,f +3473,3626cpr0499,14,1,f +3473,3633,15,1,f +3473,3666,71,1,f +3473,3678b,4,1,f +3473,3710,1,4,f +3473,3749,19,4,f +3473,3795,71,1,f +3473,3795,0,1,f +3473,3829c01,4,1,f +3473,4006,0,1,f +3473,4070,71,2,f +3473,43710,71,1,f +3473,43711,71,1,f +3473,43722,71,1,f +3473,43723,71,1,f +3473,54200,71,1,t +3473,54200,72,1,t +3473,54200,15,2,f +3473,54200,15,1,t +3473,54200,4,1,t +3473,54200,4,4,f +3473,54200,72,2,f +3473,54200,71,6,f +3473,63864,71,2,f +3473,85080,71,2,f +3473,85984,71,3,f +3473,85984,71,1,t +3473,87087,72,1,f +3473,87618,71,1,f +3473,93273,71,2,f +3473,970x001,27,1,f +3473,973pr2961c01,15,1,f +3473,98138,320,1,t +3473,98138,320,4,f +3473,99206,15,1,f +3473,99207,71,4,f +3473,99781,15,4,f +3476,2346,0,4,f +3476,2713,14,2,f +3476,2714a,4,2,f +3476,2715,15,1,f +3476,2716,47,1,f +3476,2717,7,1,f +3476,3004,15,2,f +3476,3020,15,1,f +3476,3021,15,1,f +3476,3022,15,5,f +3476,3068b,15,1,f +3476,3482,15,4,f +3476,3651,7,4,f +3476,3700,15,4,f +3476,3701,15,3,f +3476,3705,0,2,f +3476,3706,0,3,f +3476,3707,0,1,f +3476,3710,7,2,f +3476,3713,7,6,f +3476,3743,7,1,f +3476,3749,7,10,f +3476,3895,15,2,f +3476,3937,15,2,f +3476,3938,15,2,f +3476,4019,7,1,f +3476,4085b,15,2,f +3476,4185,7,1,f +3476,4261,7,2,f +3476,4262,7,3,f +3476,4263,7,2,f +3476,4265a,7,10,f +3476,4273b,7,6,f +3476,4459,0,4,f +3476,4519,0,2,f +3476,tech003,9999,1,f +3477,2456,1,2,f +3477,2456,14,2,f +3477,2456,15,2,f +3477,2456,4,2,f +3477,2926,0,2,f +3477,3001,14,12,f +3477,3001,4,12,f +3477,3001,0,6,f +3477,3001,1,12,f +3477,3001,2,6,f +3477,3001,15,12,f +3477,3002,2,4,f +3477,3002,4,8,f +3477,3002,15,8,f +3477,3002,1,8,f +3477,3002,14,8,f +3477,3002,0,4,f +3477,3003,2,16,f +3477,3003,1,36,f +3477,3003,0,16,f +3477,3003,4,34,f +3477,3003,14,32,f +3477,3003,15,36,f +3477,3004,2,12,f +3477,3004,15,24,f +3477,3004,14,24,f +3477,3004,1,24,f +3477,3004,4,24,f +3477,3004,0,12,f +3477,3005,4,16,f +3477,3005,1,16,f +3477,3005,14,16,f +3477,3005,2,8,f +3477,3005,15,16,f +3477,3005,0,8,f +3477,3005pe1,14,2,f +3477,3007,4,1,f +3477,3007,1,1,f +3477,3007,15,1,f +3477,3007,14,1,f +3477,3008,4,2,f +3477,3008,14,2,f +3477,3008,1,2,f +3477,3008,15,2,f +3477,3009,1,4,f +3477,3009,4,4,f +3477,3009,14,4,f +3477,3009,15,4,f +3477,3010,14,6,f +3477,3010,1,6,f +3477,3010,4,6,f +3477,3010,0,4,f +3477,3010,15,6,f +3477,3010,2,4,f +3477,3010p01,14,1,f +3477,3020,4,2,f +3477,3020,1,2,f +3477,3021,1,2,f +3477,3021,4,2,f +3477,3022,1,2,f +3477,3022,4,2,f +3477,3032,4,1,f +3477,3034,4,2,f +3477,3035,4,1,f +3477,3039,47,2,f +3477,3062b,14,4,f +3477,3062b,4,4,f +3477,3065,47,4,f +3477,3185,4,4,f +3477,3185,0,2,f +3477,3188,14,1,f +3477,3189,14,1,f +3477,3297,4,4,f +3477,3298,4,6,f +3477,3298,14,4,f +3477,3299,4,2,f +3477,3300,4,2,f +3477,3307,4,2,f +3477,3307,15,2,f +3477,3471,2,1,f +3477,3622,2,4,f +3477,3622,14,4,f +3477,3622,0,4,f +3477,3622,4,4,f +3477,3622,15,4,f +3477,3622,1,4,f +3477,3730,1,1,f +3477,3731,1,1,f +3477,3741,2,3,f +3477,3742,15,1,t +3477,3742,4,6,f +3477,3742,15,3,f +3477,3742,4,2,t +3477,3747b,4,2,f +3477,3823,47,1,f +3477,3839b,15,2,f +3477,3937,4,1,f +3477,3957a,1,1,f +3477,3957a,15,1,f +3477,3960,15,1,f +3477,3960,4,1,f +3477,4070,1,2,f +3477,4070,4,2,f +3477,4130,15,2,f +3477,4131,0,2,f +3477,4132,4,2,f +3477,4132,15,2,f +3477,4133,15,2,f +3477,4133,72,2,f +3477,4175,0,2,f +3477,4204,2,1,f +3477,4286,4,4,f +3477,4286,14,2,f +3477,4287,4,4,f +3477,4600,71,2,f +3477,4744pr0002,4,1,f +3477,4744pr0004,2,1,f +3477,6014b,71,8,f +3477,6015,0,8,f +3477,6134,0,1,f +3477,6141,42,2,f +3477,6141,36,2,f +3481,2412b,0,1,f +3481,2432,14,1,f +3481,2446px5,2,1,f +3481,2446px5,15,1,f +3481,2447,41,1,f +3481,2447,0,1,f +3481,2447,41,1,t +3481,2447,0,1,t +3481,2540,0,1,f +3481,2654,0,1,f +3481,30027b,14,2,f +3481,30027b,7,2,f +3481,30028,0,4,f +3481,3003,14,1,f +3481,3022,0,1,f +3481,3022,2,1,f +3481,30292,8,2,f +3481,30292,14,1,f +3481,3034,2,1,f +3481,30374,42,1,f +3481,30374,0,1,f +3481,30602pb003,27,1,f +3481,30603pb04,14,1,f +3481,3460,7,1,f +3481,3626bp7a,14,1,f +3481,3626bpac,14,1,f +3481,3839b,7,1,f +3481,3839b,0,2,f +3481,41854pb04,2,1,f +3481,41854pb06,25,1,f +3481,41862,2,1,f +3481,42289,8,2,f +3481,4599a,0,2,f +3481,4599a,15,2,f +3481,4600,7,1,f +3481,6014b,7,2,f +3481,6014b,14,2,f +3481,6015,0,4,f +3481,6019,7,8,f +3481,6019,14,2,f +3481,6019,0,2,f +3481,6157,0,1,f +3481,x351,25,1,f +3481,x351,14,1,f +3482,3001a,14,1,f +3482,3004,47,2,f +3482,3005,14,2,f +3482,3010,14,1,f +3482,3020,4,1,f +3482,3022,4,1,f +3482,3023,4,4,f +3482,3032,4,2,f +3482,3034,4,1,f +3482,3127b,4,1,f +3482,3176,4,1,f +3482,3324c01,4,2,f +3482,3404ac01,4,1,f +3482,586c01,14,1,f +3482,736c02,0,1,f +3482,rb00164,0,1,f +3484,3001,4,8,f +3484,3001,15,8,f +3484,3001,14,8,f +3484,3001,0,2,f +3484,3001,1,6,f +3484,3002,1,4,f +3484,3002,15,4,f +3484,3002,0,4,f +3484,3002,14,6,f +3484,3002,4,4,f +3484,3003,1,4,f +3484,3003,0,4,f +3484,3003,4,6,f +3484,3003,15,6,f +3484,3003,14,6,f +3484,3004,0,26,f +3484,3004,1,30,f +3484,3004,15,32,f +3484,3004,4,32,f +3484,3004,14,34,f +3484,3004,47,4,f +3484,3005,0,18,f +3484,3005,4,24,f +3484,3005,14,26,f +3484,3005,47,4,f +3484,3005,1,22,f +3484,3005,15,26,f +3484,3007,14,1,f +3484,3008,4,2,f +3484,3008,15,2,f +3484,3008,14,2,f +3484,3008,1,2,f +3484,3009,14,8,f +3484,3009,1,6,f +3484,3009,15,8,f +3484,3009,0,2,f +3484,3009,4,6,f +3484,3010,0,4,f +3484,3010,14,10,f +3484,3010,4,10,f +3484,3010,15,12,f +3484,3010,1,10,f +3484,3010,47,2,f +3484,3020,4,2,f +3484,3020,1,2,f +3484,3021,1,4,f +3484,3021,4,2,f +3484,3022,4,2,f +3484,3022,1,2,f +3484,3030,1,1,f +3484,3031,4,1,f +3484,3032,1,1,f +3484,3032,4,1,f +3484,3034,4,2,f +3484,3035,4,1,f +3484,3036,4,1,f +3484,3036,1,1,f +3484,3039,47,2,f +3484,3039,4,6,f +3484,3039,0,4,f +3484,3039,14,4,f +3484,3040b,0,4,f +3484,3040b,4,4,f +3484,3062b,14,2,f +3484,3081cc01,4,4,f +3484,3127,4,1,f +3484,3137c01,0,4,f +3484,3144,79,1,f +3484,3149c01,4,2,f +3484,3176,4,1,f +3484,3183a,4,1,f +3484,3184,4,1,f +3484,3297,4,6,f +3484,3298,4,6,f +3484,3299,4,4,f +3484,3300,4,2,f +3484,3307,14,2,f +3484,3308,14,2,f +3484,3403c01,4,1,f +3484,3460,1,2,f +3484,3471,2,2,f +3484,3480,0,2,f +3484,3481,4,2,f +3484,3483,0,6,f +3484,3581,4,4,f +3484,3582,1,4,f +3484,3622,4,10,f +3484,3622,15,10,f +3484,3622,0,4,f +3484,3622,14,10,f +3484,3622,1,4,f +3484,3623,4,2,f +3484,3623,1,2,f +3484,3633,4,6,f +3484,3641,0,8,f +3484,3659,14,2,f +3484,3660,14,4,f +3484,3660,0,4,f +3484,3660,4,6,f +3484,3665,4,4,f +3484,3666,1,2,f +3484,3666,4,2,f +3484,3678a,47,4,f +3484,3700,4,1,f +3484,3710,4,4,f +3484,3710,1,2,f +3484,3741,2,5,f +3484,3742,1,3,f +3484,3742,4,1,t +3484,3742,1,1,t +3484,3742,15,3,f +3484,3742,14,1,t +3484,3742,14,3,f +3484,3742,15,1,t +3484,3742,4,3,f +3484,3747b,0,2,f +3484,3747b,4,2,f +3484,3747b,14,2,f +3484,3795,1,2,f +3484,3795,4,2,f +3484,3823,47,2,f +3484,384,4,1,f +3484,3853,4,5,f +3484,3854,14,10,f +3484,3856,2,10,f +3484,3861b,4,2,f +3484,3867,2,2,f +3484,3956,1,2,f +3484,4207,14,1,f +3484,4234,4,2,f +3484,4282,1,2,f +3484,7039,4,4,f +3484,7049b,0,4,f +3484,73037,4,1,f +3484,rb00164,0,1,f +3485,10247,0,1,f +3485,13770,297,1,f +3485,15427,484,1,f +3485,15470,29,1,t +3485,15470,29,2,f +3485,15573,0,1,f +3485,15627pr0009,226,2,f +3485,16606pat0001,15,1,f +3485,18922,29,2,f +3485,18922pr0001,84,1,f +3485,2412b,0,1,f +3485,2431,15,1,f +3485,2431,26,5,f +3485,2431,70,3,f +3485,2460,0,1,f +3485,2540,15,1,f +3485,3001,15,4,f +3485,3002,0,1,f +3485,3003,71,1,f +3485,3003,85,1,f +3485,3003,70,2,f +3485,3003,27,1,f +3485,3004,72,1,f +3485,3004,191,3,f +3485,3004,27,1,f +3485,3004,15,7,f +3485,3004,226,2,f +3485,3005pr0006,73,1,f +3485,3009,27,2,f +3485,3009,4,1,f +3485,3010,191,5,f +3485,3010,15,2,f +3485,3010,226,13,f +3485,30145,226,10,f +3485,30153,41,1,f +3485,30165,4,1,f +3485,3020,71,1,f +3485,3021,27,1,f +3485,3022,15,1,f +3485,3022,71,1,f +3485,30222,42,1,f +3485,3023,26,3,f +3485,3023,72,1,f +3485,3023,19,1,f +3485,30249,226,2,f +3485,3031,2,1,f +3485,3031,15,1,f +3485,3032,15,1,f +3485,30340,14,1,f +3485,3035,2,1,f +3485,3036,322,1,f +3485,3037,26,4,f +3485,30414,4,1,f +3485,3068b,27,2,f +3485,3068b,1,1,f +3485,3068b,84,1,f +3485,3069b,322,1,f +3485,3069b,84,1,f +3485,3069bpr0055,15,1,f +3485,3298,26,8,f +3485,33051,10,1,f +3485,33057,484,1,f +3485,33291,5,1,t +3485,33291,10,2,f +3485,33291,5,3,f +3485,33291,10,2,t +3485,33291,191,2,f +3485,33291,191,1,t +3485,3626bpr0649,14,1,f +3485,3626cpr0893,14,1,f +3485,3626cpr1675,14,1,f +3485,3633,15,1,f +3485,3659,85,2,f +3485,3666,15,1,f +3485,3710,30,1,f +3485,3741,2,1,f +3485,3741,2,1,t +3485,3747a,15,1,f +3485,3795,71,1,f +3485,3852b,5,1,f +3485,3899,4,3,f +3485,3941,182,1,f +3485,3958,10,1,f +3485,4079b,4,1,f +3485,4079b,15,2,f +3485,4162,26,1,f +3485,4175,71,1,f +3485,4345b,4,1,f +3485,4345b,15,1,f +3485,4346,47,2,f +3485,4528,179,1,f +3485,4529,0,1,f +3485,4533,15,1,f +3485,4599b,71,1,f +3485,4599b,71,1,t +3485,4719,322,1,f +3485,4740,52,2,f +3485,4865a,15,2,f +3485,4865b,41,1,f +3485,50950,4,4,f +3485,57894,15,2,f +3485,57895,47,2,f +3485,59900,26,1,f +3485,59900,35,1,f +3485,59900,36,1,f +3485,6020,14,1,f +3485,60599,15,1,f +3485,60608,15,4,f +3485,60616a,47,1,f +3485,6180,5,1,f +3485,6256,29,1,f +3485,62810,70,1,f +3485,6636,191,4,f +3485,72824,25,1,f +3485,85080,15,4,f +3485,85974,0,1,f +3485,87079,191,1,f +3485,87079,30,1,f +3485,87079pr0076,191,1,f +3485,87079pr0077,72,1,f +3485,87552,15,2,f +3485,87580,322,1,f +3485,87580,0,1,f +3485,88930,26,1,f +3485,88930,31,1,f +3485,92410,27,1,f +3485,92593,26,2,f +3485,92593,27,2,f +3485,92593,71,2,f +3485,92851,47,2,f +3485,93092,5,1,f +3485,93160,15,1,t +3485,93160,15,1,f +3485,970c00,15,1,f +3485,970c00,19,1,f +3485,970c00,4,1,f +3485,973pr3017c01,29,1,f +3485,973pr3045c01,321,1,f +3485,973pr3046c01,85,1,f +3485,98382pr0001,86,1,f +3486,30375,19,1,f +3486,30376,19,1,f +3486,30377,19,1,t +3486,30377,19,1,f +3486,30378,19,1,f +3486,59230,19,1,f +3486,59230,19,1,t +3487,132a,0,8,f +3487,3001mib,0,14,f +3487,3003mib,4,1,f +3487,3183a,4,1,f +3487,3184,4,1,f +3487,3185,4,2,f +3487,3297mia,4,10,f +3487,3298mia,4,2,f +3487,carbasemia,7,2,f +3487,m3001,14,11,f +3487,m3003,14,16,f +3487,m3003,0,9,f +3489,2412b,0,2,f +3489,2418bpb01,34,1,f +3489,2419,7,2,f +3489,2436,14,2,f +3489,2458,14,1,f +3489,2540,0,1,f +3489,2555,7,3,f +3489,2620,34,1,f +3489,3001,0,1,f +3489,30014,0,2,f +3489,3004,0,1,f +3489,3006,7,1,f +3489,30062,14,1,f +3489,3010,7,1,f +3489,3020,14,1,f +3489,30200,0,1,f +3489,3022,0,1,f +3489,3023,7,2,f +3489,3023,14,2,f +3489,3029,7,2,f +3489,30385,383,1,f +3489,3039,14,4,f +3489,3068b,1,1,f +3489,3068bpx14,0,1,f +3489,3298pb001,14,2,f +3489,3403,0,1,f +3489,3404,0,1,f +3489,3612,0,4,f +3489,3626bpb0093,14,1,f +3489,3660,0,7,f +3489,3710,7,1,f +3489,3749,7,2,f +3489,3795,7,2,f +3489,412,34,6,f +3489,4220,14,1,f +3489,4221,0,2,f +3489,4345b,34,1,f +3489,4346,34,1,f +3489,4590,0,1,f +3489,4623,14,1,f +3489,4625,0,1,f +3489,5102c19,7,1,f +3489,57467,383,2,f +3489,59275,0,2,f +3489,6039,14,2,f +3489,6040,0,2,f +3489,6041,34,3,f +3489,6042,14,2,f +3489,6061,0,2,f +3489,6090,42,1,f +3489,6118,0,4,f +3489,6141,57,2,f +3489,6141,57,1,t +3489,6217,0,1,f +3489,6249,8,2,f +3489,6541,14,1,f +3489,70001pb01,0,1,f +3489,71128,383,2,f +3489,71594,34,1,f +3489,71966,61,1,f +3489,970x026,1,1,f +3489,973pb0116c01,1,1,f +3490,11609,191,1,t +3490,11609,191,2,f +3490,11618,26,1,t +3490,11618,26,1,f +3490,11816pr0006,78,1,f +3490,2449,85,2,f +3490,2454a,19,2,f +3490,2653,71,2,f +3490,2921,4,2,f +3490,3004,0,5,f +3490,3004,15,3,f +3490,3010,15,4,f +3490,3020,4,2,f +3490,3022,15,2,f +3490,3023,19,2,f +3490,3023,0,6,f +3490,3034,15,1,f +3490,3037,0,1,f +3490,3069b,4,1,f +3490,3069bpr0129,15,1,f +3490,32028,71,2,f +3490,32531,0,1,f +3490,3460,15,1,f +3490,3622,4,2,f +3490,3623,19,4,f +3490,3710,0,2,f +3490,3741,2,1,f +3490,3741,2,1,t +3490,3742,5,3,f +3490,3742,5,1,t +3490,3794b,19,1,f +3490,3795,0,1,f +3490,3878,0,1,f +3490,3938,71,1,f +3490,3941,4,1,f +3490,42446,0,1,t +3490,42446,0,2,f +3490,48336,14,1,f +3490,54200,297,4,f +3490,54200,297,1,t +3490,60474,0,1,f +3490,60475a,0,2,f +3490,60481,85,2,f +3490,6141,297,6,f +3490,6141,0,1,t +3490,6141,0,3,f +3490,6141,297,1,t +3490,64644,0,2,f +3490,6636,4,2,f +3490,6636,19,1,f +3490,87994pr0001a,0,1,f +3490,92257,320,1,f +3490,92456pr0031c01,78,1,f +3490,92821pr0003c01,0,1,f +3490,98387pr0001,15,1,f +3491,2902,0,2,f +3491,2903,15,2,f +3494,167914,47,1,f +3494,2780,0,12,f +3494,2793c01,14,1,f +3494,2797c02,14,1,f +3494,2825,7,4,f +3494,3022,14,2,f +3494,3023,14,7,f +3494,3032,14,4,f +3494,3482,14,2,f +3494,3483,0,2,f +3494,3673,7,6,f +3494,3700,4,6,f +3494,3701,4,4,f +3494,3703,4,4,f +3494,3705,0,2,f +3494,3706,0,1,f +3494,3709,14,1,f +3494,3710,14,2,f +3494,3713,7,4,f +3494,3713,7,1,t +3494,3738,14,2,f +3494,3749,7,4,f +3494,3894,4,4,f +3494,3895,4,2,f +3494,4265b,7,1,t +3494,4265b,7,4,f +3494,5102c20,7,1,f +3494,5102c26,1,1,f +3494,5102c26,0,1,f +3494,6587,8,2,f +3494,6636,14,2,f +3494,71084,47,1,f +3494,75215,7,1,f +3494,9617b01,9999,1,f +3494,9617b02,9999,1,f +3494,9617bc,9999,1,f +3494,9617bd,9999,1,f +3494,9617bm,9999,1,f +3494,bin04,14,1,f +3494,gstk112,9999,1,t +3495,11873,28,1,f +3495,11878,28,1,f +3495,11883,28,1,f +3495,11887,28,1,f +3495,11893,70,1,f +3495,2412b,320,9,f +3495,2431,14,8,f +3495,2436,0,1,f +3495,2456,14,5,f +3495,2458,15,1,f +3495,2465,14,2,f +3495,2723,0,4,f +3495,2730,0,1,f +3495,2780,0,1,t +3495,2780,0,8,f +3495,2877,72,4,f +3495,30000,71,4,f +3495,3001,0,1,f +3495,3004,0,2,f +3495,30055,0,2,f +3495,3009,14,6,f +3495,30171,0,1,f +3495,30171,70,1,f +3495,30180,14,4,f +3495,3020,14,3,f +3495,3021,0,4,f +3495,3033,71,4,f +3495,3034,72,2,f +3495,3039,14,2,f +3495,30414,71,1,f +3495,30503,320,2,f +3495,32014,14,2,f +3495,32018,14,2,f +3495,32532,71,2,f +3495,3626bpr0925,14,1,f +3495,3626cpr0889,14,1,f +3495,3666,0,6,f +3495,3678b,72,2,f +3495,3703,71,2,f +3495,3707,0,1,f +3495,3713,4,4,f +3495,3795,71,2,f +3495,3829c01,4,1,f +3495,3835,0,1,f +3495,3837,72,1,f +3495,3941,4,1,f +3495,3941,42,2,f +3495,4032a,72,2,f +3495,4079b,70,1,f +3495,4162,14,7,f +3495,4175,72,9,f +3495,4176,47,2,f +3495,4274,1,2,t +3495,4274,1,19,f +3495,47457,72,2,f +3495,50950,14,2,f +3495,52031,14,1,f +3495,52107,14,4,f +3495,54200,47,4,f +3495,54200,47,1,t +3495,55976,0,4,f +3495,56145,71,4,f +3495,59426,72,6,f +3495,59900,42,4,f +3495,60470a,0,2,f +3495,60479,14,4,f +3495,60897,71,4,f +3495,6111,14,2,f +3495,61184,71,4,f +3495,61409,0,4,f +3495,6141,71,8,f +3495,6141,36,8,f +3495,6141,36,2,t +3495,6141,71,2,t +3495,6215,14,2,f +3495,6232,14,4,f +3495,63864,72,4,f +3495,63868,15,4,f +3495,64448,0,7,f +3495,64727,71,3,f +3495,85940,0,2,f +3495,87580,320,4,f +3495,87989,27,2,f +3495,87989,27,1,t +3495,92946,72,4,f +3495,95229,0,2,f +3495,970c00pr0307,28,1,f +3495,970x308,28,1,f +3495,973pr1990c01,320,1,f +3495,973pr2006c01,0,1,f +3495,98169,70,1,f +3495,99809,148,2,f +3496,11203,72,1,f +3496,11458,72,2,f +3496,15573,72,1,f +3496,18663,47,1,f +3496,2540,72,1,f +3496,3626cpr0966,4,1,f +3496,3941,71,1,f +3496,4032a,71,1,f +3496,43898,80,2,f +3496,4740,41,3,f +3496,48729b,71,1,t +3496,48729b,71,1,f +3496,59900,2,2,f +3496,61184,71,2,f +3496,6141,42,1,f +3496,6141,42,1,t +3496,63868,71,1,f +3496,75937,179,1,f +3496,87087,0,1,f +3496,87580,71,1,f +3496,87747,179,1,t +3496,87747,179,6,f +3496,970c00,1,1,f +3496,973pr2047c01,1,1,f +3496,98313,148,6,f +3497,2780,0,17,f +3497,32002,8,3,f +3497,32007,135,6,f +3497,32013,0,6,f +3497,32014,0,9,f +3497,32015,0,1,f +3497,32016,0,1,f +3497,32039,0,3,f +3497,32062,0,21,f +3497,32073,0,1,f +3497,32123b,7,7,f +3497,32140,0,2,f +3497,32184,0,2,f +3497,32192,0,2,f +3497,32209,0,2,f +3497,32449,0,6,f +3497,32523,0,4,f +3497,32526,0,2,f +3497,32551,135,2,f +3497,3673,7,7,f +3497,3705,0,6,f +3497,3706,0,2,f +3497,3713,0,3,f +3497,3713,7,3,f +3497,3737,0,1,f +3497,4019,7,2,f +3497,41664,135,1,f +3497,41669,0,2,f +3497,41669,135,3,f +3497,41677,0,6,f +3497,41753,8,1,f +3497,4177936,89,1,f +3497,42003,0,2,f +3497,4232,36,1,f +3497,4232rc,36,1,f +3497,4232sc,0,1,f +3497,4274,7,3,f +3497,43093,0,7,f +3497,43857,0,2,f +3497,4519,0,8,f +3497,6536,135,2,f +3497,6536,0,10,f +3497,6538b,135,6,f +3497,6538b,0,3,f +3497,6558,0,4,f +3497,6628,0,3,f +3497,680c01,0,2,f +3497,75535,0,2,f +3497,78c02,0,1,f +3497,78c10,0,1,f +3497,78c12,179,2,f +3497,rb00168,0,4,f +3497,x165c05,47,1,f +3497,x400c12,47,2,f +3498,2412b,4,2,f +3498,2421,0,1,f +3498,2446,15,1,f +3498,2446px2,15,1,f +3498,2447,41,2,f +3498,2460,0,1,f +3498,2479,7,1,f +3498,2483,41,1,f +3498,298c02,4,3,f +3498,3004,15,1,f +3498,3005,15,3,f +3498,3010,15,1,f +3498,3021,15,1,f +3498,3021,0,1,f +3498,3023,0,1,f +3498,3024,36,2,f +3498,3024,34,1,f +3498,3069bpr0016,15,2,f +3498,3070b,36,1,f +3498,3070b,0,1,f +3498,3460,15,1,f +3498,3460,0,2,f +3498,3464,47,2,f +3498,3626bp04,14,2,f +3498,3641,0,2,f +3498,3665,15,2,f +3498,3710,15,2,f +3498,3710,0,2,f +3498,3794a,0,2,f +3498,3794a,15,1,f +3498,3795,0,1,f +3498,4081b,15,2,f +3498,4162,0,2,f +3498,4286,15,3,f +3498,4315,15,1,f +3498,4477,15,1,f +3498,4480c01,15,1,f +3498,4488,15,1,f +3498,4865pb02,15,2,f +3498,6140,0,2,f +3498,6141,46,3,f +3498,6141,33,2,f +3498,970c00,0,2,f +3498,973px9c01,0,2,f +3500,85546,14,25,f +3501,2412b,7,3,f +3501,2412b,383,4,f +3501,2431,7,1,f +3501,2436,4,2,f +3501,2437,41,1,f +3501,2456,0,1,f +3501,2465,7,2,f +3501,3001,0,1,f +3501,3003,7,1,f +3501,3004,7,2,f +3501,3010,0,2,f +3501,3010,4,5,f +3501,3020,0,2,f +3501,3021,4,1,f +3501,3022,0,1,f +3501,3022,7,1,f +3501,3023,7,2,f +3501,3023,0,3,f +3501,3024,47,2,f +3501,3031,0,1,f +3501,3032,0,1,f +3501,3040b,0,2,f +3501,3062b,0,2,f +3501,3068b,0,1,f +3501,3069b,4,2,f +3501,3188,4,1,f +3501,3189,4,1,f +3501,3626bp04,14,1,f +3501,3710,4,2,f +3501,3710,0,1,f +3501,3788,4,1,f +3501,3829c01,15,1,f +3501,4070,4,6,f +3501,4081b,7,2,f +3501,4085c,7,4,f +3501,4215b,0,1,f +3501,4315,0,1,f +3501,4474,0,1,f +3501,4485,15,1,f +3501,4858,0,1,f +3501,6014a,15,6,f +3501,6015,0,6,f +3501,6141,57,1,t +3501,6141,57,2,f +3501,6141,4,1,t +3501,6141,4,6,f +3501,6157,0,3,f +3501,71075,383,2,f +3501,71137,383,2,f +3501,71182,383,2,f +3501,71184,383,2,f +3501,970c00,7,1,f +3501,973p73c01,2,1,f +3502,2431,4,1,f +3502,30103,0,1,f +3502,30106,47,1,f +3502,30153,41,2,f +3502,30238,7,1,f +3502,3062b,46,1,f +3502,3069bpx41,15,1,f +3502,33009,6,1,f +3502,33051,2,1,f +3502,33051,4,1,f +3502,33061,34,2,f +3502,33201,0,1,f +3502,33203,6,1,f +3502,33217,34,1,f +3502,3626bpr0895,15,2,f +3502,3679,7,1,f +3502,3680,0,1,f +3502,3794a,4,1,f +3502,4337,14,1,f +3502,4341,0,1,f +3502,4589,46,2,f +3502,4589,36,1,f +3502,57503,334,1,f +3502,57504,334,1,f +3502,57505,334,1,f +3502,57506,334,1,f +3502,6131,0,1,f +3502,6141,36,1,f +3502,6162,20,1,f +3502,6175px2,0,1,f +3502,6180,4,1,f +3502,6182,15,4,f +3502,75347,6,1,f +3502,belvfem14,-1,1,f +3502,belvskirt13,89,1,f +3505,30369,15,1,f +3505,3626cpr0922,0,1,f +3505,970c11pr0500,0,1,f +3505,973pr2337c01,15,1,f +3506,15515,27,2,f +3506,15515,191,1,f +3506,15516,29,2,f +3506,15516,70,2,f +3506,15516,19,2,f +3506,15868,27,1,f +3506,15894,15,1,f +3506,15900,4,1,f +3506,15906,14,2,f +3506,16434,85,1,f +3506,18918,4,1,f +3506,3437,25,3,f +3506,3437,1,1,f +3506,3437,4,1,f +3506,3437,484,2,f +3506,3437,14,1,f +3506,3437,27,1,f +3506,3437,85,2,f +3506,3437,322,1,f +3506,3664,14,1,f +3506,4066,15,1,f +3506,40666,4,1,f +3506,40666,14,4,f +3506,6510,14,1,f +3506,6510,10,4,f +3506,92011,4,1,f +3506,98220,19,2,f +3506,98223,4,2,f +3506,98223,25,1,f +3506,98223,27,1,f +3506,98223pr0003,4,1,f +3506,98224,27,1,f +3506,98224,25,1,f +3506,98224,4,2,f +3507,3003pe2,15,1,f +3507,3021,4,1,f +3507,3021,0,1,f +3507,3039,15,1,f +3507,3039,0,1,f +3507,3040b,0,2,f +3507,3660,15,1,f +3508,122c01,0,2,f +3508,194225,9999,1,f +3508,3004,1,1,f +3508,3022,0,2,f +3508,3023,1,1,f +3508,3023,15,4,f +3508,3024,36,2,f +3508,3024,46,4,f +3508,3031,1,1,f +3508,3034,0,1,f +3508,3062a,15,2,f +3508,3068bp05,15,1,f +3508,3068bp06,15,1,f +3508,3623,15,2,f +3508,3624,15,1,f +3508,3626apr0001,14,1,f +3508,3710,15,3,f +3508,3710,1,2,f +3508,3788,15,1,f +3508,3821,1,1,f +3508,3822,1,1,f +3508,3823,47,1,f +3508,3829c01,1,1,f +3508,3962a,0,1,f +3508,4006,0,1,f +3508,4070,1,2,f +3508,4084,0,4,f +3508,4085a,0,2,f +3508,4211,15,1,f +3508,4213,1,1,f +3508,4214,1,1,f +3508,4215a,1,2,f +3508,6141,36,2,f +3508,970c00,1,1,f +3508,973p27c01,1,1,f +3509,30114,0,1,f +3509,30126pb02,15,1,f +3509,30126pb02,15,1,t +3509,3626bpb0440,14,1,f +3509,4498,70,1,f +3509,4499,70,1,f +3509,88646,0,1,f +3509,970c00pb057,19,1,f +3509,973pr1533c01,19,1,f +3510,2780,0,6,f +3510,32013,71,1,f +3510,32054,0,1,f +3510,32062,0,1,f +3510,32174,73,5,f +3510,32199,72,1,f +3510,3705,0,1,f +3510,43093,1,1,f +3510,47296,73,2,f +3510,47306,73,1,f +3510,47311,151,1,f +3510,50898,73,2,f +3510,53500,57,1,f +3510,53563,151,1,f +3510,53564,135,1,f +3510,53566,151,2,f +3510,53568,151,2,f +3510,53570,151,1,f +3510,53574,151,2,f +3510,53577,135,1,f +3510,54271,135,1,f +3510,54821,42,4,f +3510,55095pr0001,15,1,f +3510,55180,15,1,t +3510,59426,72,1,f +3510,78c04,41,1,f +3511,30157,8,2,f +3511,30285,7,8,f +3511,30391,0,4,f +3511,30648,0,4,f +3511,42610,7,5,f +3511,51011,0,4,f +3511,6249,8,4,f +3512,10178pr0004,36,1,f +3512,10304pr0001,0,1,f +3512,12825,0,7,f +3512,2412b,80,1,f +3512,2412b,72,1,f +3512,2437,40,2,f +3512,2444,72,2,f +3512,2654,0,1,f +3512,2877,71,2,f +3512,2877,0,3,f +3512,30000,72,1,f +3512,3003,71,3,f +3512,3003,0,2,f +3512,3004,0,8,f +3512,3005,0,2,f +3512,3008,0,1,f +3512,3010,0,3,f +3512,30132,72,1,t +3512,30132,72,1,f +3512,30163,0,1,f +3512,3020,0,2,f +3512,3020,70,1,f +3512,3021,0,2,f +3512,3022,0,4,f +3512,3023,46,2,f +3512,3023,0,7,f +3512,3023,36,4,f +3512,3023,71,5,f +3512,30237a,0,2,f +3512,3034,0,3,f +3512,3036,0,2,f +3512,30363,0,1,f +3512,3037,0,1,f +3512,3039,71,1,f +3512,3041,0,2,f +3512,3043,0,2,f +3512,3049b,0,2,f +3512,3062b,0,2,f +3512,3062b,47,2,f +3512,3065,36,1,f +3512,3069b,0,4,f +3512,3069b,15,6,f +3512,32123b,71,1,t +3512,32123b,71,2,f +3512,32184,4,2,f +3512,3460,0,8,f +3512,3624,0,1,f +3512,3626cpr1013,71,1,f +3512,3626cpr1014,14,1,f +3512,3626cpr1015,1000,1,f +3512,3633,0,1,f +3512,3660,0,4,f +3512,3666,72,1,f +3512,3666,0,2,f +3512,3673,71,1,t +3512,3673,71,4,f +3512,3678b,0,2,f +3512,3700,0,2,f +3512,3700,72,1,f +3512,3706,0,1,f +3512,3710,0,2,f +3512,3713,4,1,t +3512,3713,4,2,f +3512,3747b,0,2,f +3512,3794b,297,1,f +3512,3795,15,3,f +3512,3829c01,15,1,f +3512,3832,71,2,f +3512,3894,4,2,f +3512,3937,4,4,f +3512,3938,71,4,f +3512,40620,71,2,f +3512,4162,0,1,f +3512,41669,135,2,f +3512,4175,0,1,f +3512,42023,0,2,f +3512,4286,0,2,f +3512,4349,72,2,f +3512,44728,0,9,f +3512,4515,0,1,f +3512,47720,71,1,f +3512,4865a,0,2,f +3512,4871,0,2,f +3512,48729b,0,1,t +3512,48729b,0,4,f +3512,49668,320,12,f +3512,50859b,0,1,f +3512,50861,0,2,f +3512,50862,71,2,f +3512,50943,71,1,f +3512,53451,15,1,t +3512,53451,15,4,f +3512,55981,71,2,f +3512,56902,71,2,f +3512,58090,0,2,f +3512,59900,71,2,f +3512,60897,0,2,f +3512,6111,0,2,f +3512,61254,0,2,f +3512,6126b,57,2,f +3512,6141,46,1,f +3512,6141,297,2,t +3512,6141,46,1,t +3512,6141,297,12,f +3512,6141,36,6,f +3512,6141,36,1,t +3512,61678,0,2,f +3512,6231,0,2,f +3512,64453,47,2,f +3512,64644,297,4,f +3512,64728,4,1,f +3512,64798,0,1,f +3512,6541,0,4,f +3512,6636,0,6,f +3512,72454,4,1,f +3512,85943,72,1,f +3512,85983pr02,320,1,f +3512,85984,0,8,f +3512,87079,0,1,f +3512,87083,72,2,f +3512,87087,72,4,f +3512,92946,0,6,f +3512,92950,0,4,f +3512,93160,15,6,f +3512,93550,179,1,f +3512,9464stk01a,9999,1,t +3512,95674,71,1,f +3512,970c00pr0363,0,1,f +3512,970c00pr0364,272,1,f +3512,970d15,378,1,f +3512,973pr2084c01,71,1,f +3512,973pr2100c01,0,1,f +3512,973pr2102c01,272,1,f +3512,98370,148,1,f +3512,99207,71,2,f +3514,3673,7,150,f +3515,2412b,71,2,f +3515,3004,4,1,f +3515,30165,4,1,f +3515,3022,4,2,f +3515,3023,4,4,f +3515,3023,40,3,f +3515,3039,4,1,f +3515,30414,0,2,f +3515,32028,71,4,f +3515,3660,4,1,f +3515,3679,71,2,f +3515,3680,0,2,f +3515,3710,0,8,f +3515,3747b,4,1,f +3515,3795,25,1,f +3515,3795,71,1,f +3515,3795,4,1,f +3515,4081b,71,2,f +3515,4150,71,2,f +3515,44728,4,1,f +3515,4589,72,2,f +3515,54200,40,2,f +3515,54200,40,1,t +3515,54200,4,6,f +3515,54200,4,1,t +3515,6141,72,2,f +3515,6141,72,1,t +3515,85984,4,2,f +3516,3001a,4,1,f +3516,3001a,15,1,f +3517,12117,25,1,f +3517,12694,73,1,f +3517,3437,1,1,f +3518,10201,4,1,f +3518,11211,19,1,f +3518,11303,28,1,f +3518,11477,70,4,f +3518,13965,70,6,f +3518,15501,484,1,f +3518,15573,320,1,f +3518,19220,0,1,f +3518,2412b,0,1,f +3518,2412b,72,3,f +3518,2412b,71,2,f +3518,2417,288,4,f +3518,2431,70,4,f +3518,2431,320,2,f +3518,2456,71,1,f +3518,2476a,71,2,f +3518,2540,0,3,f +3518,2654,71,5,f +3518,3001,14,1,f +3518,3002,71,1,f +3518,3004,28,5,f +3518,3004,0,1,f +3518,3004,1,1,f +3518,3004,320,4,f +3518,3004,272,2,f +3518,3005,288,5,f +3518,3007,0,1,f +3518,3009,320,1,f +3518,30093,288,4,f +3518,3010,28,2,f +3518,3010,71,6,f +3518,3010,272,3,f +3518,3010,320,3,f +3518,3010,288,2,f +3518,30115,4,1,f +3518,30137,70,3,f +3518,30150,70,1,f +3518,30157,71,4,f +3518,30165,72,2,f +3518,3020,0,2,f +3518,3020,272,3,f +3518,3022,0,1,f +3518,3022,2,1,f +3518,3022,19,1,f +3518,3023,320,4,f +3518,3023,288,6,f +3518,30237b,15,4,f +3518,3024,36,1,f +3518,3024,71,2,f +3518,3024,34,1,f +3518,30364,0,2,f +3518,30385,297,2,f +3518,30565,15,2,f +3518,3068b,19,1,f +3518,3068b,320,1,f +3518,3069b,25,2,f +3518,33078,4,1,f +3518,33243,0,26,f +3518,3460,15,1,f +3518,3626b,47,1,f +3518,3626cpr1147,14,1,f +3518,3626cpr1623,14,1,f +3518,3626cpr1628,14,1,f +3518,3665,320,2,f +3518,3666,320,4,f +3518,3666,72,2,f +3518,3710,15,1,f +3518,3710,0,1,f +3518,3795,28,2,f +3518,3795,72,2,f +3518,3829c01,14,1,f +3518,3829c01,4,1,f +3518,3832,72,2,f +3518,3832,15,2,f +3518,3832,0,2,f +3518,3835,0,1,f +3518,3899,4,1,f +3518,3957b,15,2,f +3518,3958,28,1,f +3518,4079,4,1,f +3518,4079,14,2,f +3518,41334,0,1,f +3518,41539,2,1,f +3518,4176,40,1,f +3518,4285,72,2,f +3518,43337,40,1,f +3518,43903,0,2,f +3518,44302a,72,2,f +3518,44568,71,3,f +3518,4460b,70,4,f +3518,44675,0,2,f +3518,4515,72,1,f +3518,4528,179,1,f +3518,4598,0,2,f +3518,4740,72,1,f +3518,47847,70,1,f +3518,4871,0,1,f +3518,48729b,72,1,f +3518,50950,272,2,f +3518,50950,15,2,f +3518,52031,320,1,f +3518,52501,0,2,f +3518,54200,70,6,f +3518,54200,36,2,f +3518,55981,71,8,f +3518,59900,33,2,f +3518,6020,0,1,f +3518,60475b,72,2,f +3518,60594,72,1,f +3518,60608,14,2,f +3518,6091,320,6,f +3518,6111,71,4,f +3518,6141,2,4,f +3518,6141,72,1,f +3518,6141,71,2,f +3518,6141,46,2,f +3518,61482,71,1,f +3518,6231,72,2,f +3518,62360,41,1,f +3518,64567,71,2,f +3518,6636,72,1,f +3518,85975,320,1,f +3518,85984,72,2,f +3518,87079,72,1,f +3518,87087,484,3,f +3518,87559,0,2,f +3518,87580,71,4,f +3518,87991,484,1,f +3518,88293,0,2,f +3518,88930,272,1,f +3518,89201,0,2,f +3518,91988,72,3,f +3518,92092,72,3,f +3518,92280,71,2,f +3518,92438,72,1,f +3518,92585,4,1,f +3518,92842,0,2,f +3518,92950,70,1,f +3518,970c00,379,2,f +3518,970c00,272,1,f +3518,973pr2879c01,19,1,f +3518,973pr2935c01,15,1,f +3518,973pr2942c01,15,1,f +3518,97895,14,1,f +3518,98138,46,6,f +3518,98263,71,1,f +3518,98282,72,2,f +3518,99780,72,2,f +3519,3626bpr1144,14,1,f +3519,62810,28,1,f +3519,970c00pb206,0,1,f +3519,973pb1260c01,73,1,f +3522,2412b,0,1,f +3522,2412b,14,1,f +3522,2412b,383,1,f +3522,2431,0,2,f +3522,2555,4,2,f +3522,2877,14,3,f +3522,3002,25,1,f +3522,3004,7,1,f +3522,3004,25,5,f +3522,3005,25,2,f +3522,3009,0,2,f +3522,3010,0,2,f +3522,3010,25,2,f +3522,3010,7,1,f +3522,30187c02,14,1,f +3522,30187c03,15,1,f +3522,3020,0,1,f +3522,3021,0,2,f +3522,3023,7,7,f +3522,3023,42,4,f +3522,30237a,25,2,f +3522,3024,7,2,f +3522,3024,36,2,f +3522,30285,7,10,f +3522,3031,7,2,f +3522,3031,0,2,f +3522,3032,25,1,f +3522,3035,25,2,f +3522,30350b,14,4,f +3522,30365,4,2,f +3522,30374,0,8,f +3522,3039,7,1,f +3522,30391,0,10,f +3522,30414,14,1,f +3522,30552,0,2,f +3522,30602pb002,4,1,f +3522,30620,8,1,f +3522,30622,8,2,f +3522,3069b,40,2,f +3522,3188,25,1,f +3522,3189,25,1,f +3522,3298,25,2,f +3522,3460,0,4,f +3522,3623,4,2,f +3522,3626bpb0048,14,1,f +3522,3626bpb0051,14,1,f +3522,3626bpr0216,14,1,f +3522,3660,0,6,f +3522,3665,25,2,f +3522,3665,0,2,f +3522,3666,25,2,f +3522,3673,7,6,f +3522,3703,14,2,f +3522,3709,7,1,f +3522,3710,0,5,f +3522,3710,4,1,f +3522,3829c01,0,1,f +3522,3957a,7,2,f +3522,4033,0,1,f +3522,40620,383,2,f +3522,4079,0,1,f +3522,4083,383,1,f +3522,4085c,0,6,f +3522,41334,0,1,f +3522,41747,25,1,f +3522,41748,25,1,f +3522,4176,40,1,f +3522,42022,0,2,f +3522,42022,25,2,f +3522,4286,25,2,f +3522,4349,0,2,f +3522,4477,25,2,f +3522,4485,15,1,f +3522,4495a,1,1,f +3522,4495a,4,1,f +3522,4589,42,2,f +3522,55298,8,1,f +3522,6019,4,12,f +3522,6091,7,2,f +3522,6093,0,1,f +3522,6541,25,2,f +3522,71076,383,2,f +3522,970c00,0,1,f +3522,970c00pb009,0,1,f +3522,970c00pb010,1,1,f +3522,973pb0056c01,15,1,f +3522,973pb0057c01,4,1,f +3522,973pb0058c01,320,1,f +3526,2484c01,4,2,f +3526,2926,7,2,f +3526,3641,0,8,f +3526,4600,7,2,f +3526,4624,15,4,f +3526,4624,7,4,f +3526,6014a,15,4,f +3526,6015,0,4,f +3526,6157,0,2,f +3528,2412b,0,2,f +3528,2540,25,3,f +3528,3020,25,1,f +3528,3023,0,1,f +3528,30383,72,2,f +3528,30386,0,2,f +3528,30540,0,4,f +3528,3176,0,2,f +3528,3300,0,1,f +3528,3839b,15,2,f +3528,43722,15,1,f +3528,43723,15,1,f +3528,44301a,25,2,f +3528,4735,72,1,f +3528,6019,15,2,f +3528,6141,36,1,t +3528,6141,36,2,f +3530,22670,334,1,f +3530,3005,41,1,f +3530,3005,34,2,f +3530,3005,45,1,f +3530,3005,33,1,f +3530,30055,15,2,f +3530,30109,5,1,f +3530,30153,41,2,f +3530,30238,0,1,f +3530,3065,41,1,f +3530,3065,46,1,f +3530,3065,33,1,f +3530,3065,45,2,f +3530,3065pb01,47,1,f +3530,33213pb01,18,1,f +3530,33215,114,1,f +3530,3942b,15,2,f +3530,4094b,5,1,f +3530,4154182,9999,1,f +3530,42498,462,1,f +3530,4727,115,3,f +3530,4728,46,1,f +3530,4728,45,1,f +3530,4728,143,1,f +3530,4744pb13,14,1,f +3530,6162,10,1,f +3530,6193,15,1,f +3530,6251pr0002,15,1,f +3530,63965,15,1,f +3530,71861,5,1,f +3530,belvfem57,9999,1,f +3531,11253,25,1,t +3531,11253,25,2,f +3531,11816pr0002,78,1,f +3531,15284pr0001,226,1,f +3531,15573,19,2,f +3531,15573,297,1,f +3531,15745,45,1,f +3531,3004,15,4,f +3531,3005,15,2,f +3531,30089,0,1,f +3531,3023,15,1,f +3531,3040b,322,2,f +3531,33291,5,4,f +3531,33291,5,1,t +3531,3665,15,4,f +3531,3666,15,1,f +3531,3941,41,1,f +3531,3958,27,1,f +3531,54200,41,1,t +3531,54200,41,2,f +3531,60474,322,1,f +3531,85080,15,4,f +3531,92456pr0034c01,78,1,f +3531,92820pr0006c01a,85,1,f +3531,98138,297,1,t +3531,98138,41,1,t +3531,98138,297,2,f +3531,98138,41,2,f +3531,98138,47,1,t +3531,98138,47,1,f +3531,98138pr0024a,179,1,t +3531,98138pr0024a,179,1,f +3532,2412b,8,1,f +3532,2444,0,2,f +3532,2446,0,1,f +3532,2540,4,2,f +3532,30121,0,1,f +3532,30553,8,1,f +3532,30602,0,1,f +3532,32013,0,1,f +3532,32062,4,1,f +3532,3626bpx40,14,1,f +3532,3749,7,2,f +3532,41530,36,1,f +3532,41532,0,1,f +3532,4859,0,1,f +3532,6041,4,1,f +3532,769,334,1,f +3532,970c00,0,1,f +3532,973c26,0,1,f +3533,11476,71,2,f +3533,11477,323,2,f +3533,11610,0,1,f +3533,14769pr1003,15,1,f +3533,14769pr1043,15,1,f +3533,15070,15,4,f +3533,15208,0,1,f +3533,15209,15,2,f +3533,18649,71,1,f +3533,18674,15,4,f +3533,2412b,72,4,f +3533,2432,15,2,f +3533,2496,0,2,f +3533,2655,71,2,f +3533,2921,0,1,f +3533,2921,15,1,f +3533,3021,322,2,f +3533,3021,15,3,f +3533,3022,0,1,f +3533,3023,15,1,f +3533,30237b,15,2,f +3533,3031,322,1,f +3533,3710,15,3,f +3533,4032a,72,1,f +3533,4735,0,2,f +3533,51739,15,2,f +3533,60474,322,1,f +3533,60478,71,2,f +3533,60581,41,1,f +3533,6091,4,2,f +3533,61252,71,2,f +3533,6141,42,6,f +3533,85080,15,2,f +3533,85984,15,2,f +3533,99781,71,1,f +3534,2300,1,1,f +3534,2302,1,2,f +3534,2312c01,1,1,f +3534,3011,1,1,f +3534,3011,2,2,f +3534,3011,4,1,f +3534,31022,15,1,f +3534,31059,2,1,f +3534,31061,14,2,f +3534,31071,14,1,f +3534,3437,14,1,f +3534,3437,4,3,f +3534,3437,1,2,f +3534,3437,2,2,f +3534,40554,4,1,f +3534,6510,2,2,f +3534,6510,14,2,f +3534,6510,4,1,f +3534,89158,2,1,f +3538,3001,0,12,f +3538,3002,0,6,f +3538,3003,0,10,f +3538,3004,0,6,f +3538,3005,0,2,f +3538,3006,0,1,f +3538,3007,0,1,f +3538,3008,0,2,f +3538,3009,0,2,f +3538,3010,0,2,f +3538,3622,0,2,f +3540,2431,0,1,f +3540,2432,4,1,f +3540,2441,0,1,f +3540,2446,4,1,f +3540,2447,0,1,f +3540,30027a,14,4,f +3540,30028,0,4,f +3540,3021,7,1,f +3540,3022,4,1,f +3540,3298p01,4,1,f +3540,3623,4,2,f +3540,3626bp04,14,1,f +3540,3710,0,1,f +3540,3829c01,7,1,f +3540,3839b,0,1,f +3540,3937,7,1,f +3540,3938,0,1,f +3540,4286,4,2,f +3540,4589,0,2,f +3540,970c00,15,1,f +3540,973px124c01,15,1,f +3541,2383,15,8,f +3541,2384pb01,79,1,f +3541,2384pb02,79,1,f +3541,2384pb03,79,1,f +3541,2384pb04,79,1,f +3541,2384pb05,79,1,f +3541,2384pb06,79,1,f +3541,2384pb07,79,1,f +3541,2384pb08,79,1,f +3541,2500c01,15,2,f +3541,3065,33,2,f +3541,3065,34,2,f +3541,3065,46,2,f +3541,3065,47,2,f +3541,3065,36,2,f +3541,4757,15,2,f +3541,4758,15,1,f +3541,4767,15,2,f +3541,4773,46,1,t +3541,4773,34,1,t +3541,4773,33,2,f +3541,4773,36,1,t +3541,4773,46,6,f +3541,4773,33,1,t +3541,4773,36,2,f +3541,4773,34,2,f +3544,2780,0,8,f +3544,32002,72,2,f +3544,32039,0,2,f +3544,32054,0,3,f +3544,32062,4,3,f +3544,32123b,71,4,f +3544,32138,0,2,f +3544,32184,71,1,f +3544,32250,0,4,f +3544,32270,0,2,f +3544,32291,0,4,f +3544,32348,0,4,f +3544,32523,0,4,f +3544,32524,0,2,f +3544,3705,0,1,f +3544,3737,0,1,f +3544,42074,135,2,f +3544,43093,1,10,f +3544,44815b,0,1,f +3544,4519,71,15,f +3544,45274,135,1,f +3544,45749,320,3,f +3544,47306,0,1,f +3544,47312,72,1,f +3544,49423,320,1,f +3544,50858,320,4,f +3544,50898,0,2,f +3544,50922,0,1,f +3544,50923,72,6,f +3544,53543,320,2,f +3544,53544,320,2,f +3544,53585,0,2,f +3544,53586,135,2,f +3544,55013,72,2,f +3544,56160,135,2,f +3544,57527,135,2,f +3544,57536,42,1,f +3544,57563,135,2,f +3544,57568,135,2,f +3544,59443,71,1,f +3544,59443,0,2,f +3544,60176,320,10,f +3544,60918,0,1,f +3544,60919pat01,0,4,f +3544,60926,135,2,f +3544,60929,41,4,f +3544,60933,135,1,f +3544,60934,57,2,f +3544,61053,0,3,f +3544,6558,1,6,f +3544,6587,72,5,f +3544,6632,0,4,f +3546,45462,45,5,f +3546,45462,41,5,f +3546,45463,118,5,f +3546,45463,45,5,f +3546,45463,52,5,f +3546,clikits015,52,8,f +3546,clikits021,41,1,f +3546,clikits025,43,30,f +3546,clikits057,118,4,f +3546,clikits061,61,16,f +3546,clikits061,383,5,f +3546,clikits062,63,1,f +3546,clikits146,212,1,f +3546,clikits147,89,1,f +3546,clikits148,61,1,f +3546,clikits149,52,1,f +3547,53989,148,2,f +3547,64727,1,3,f +3547,90609,72,4,f +3547,90617,0,4,f +3547,90625,0,1,f +3547,90639,15,2,f +3547,90639pr0015,34,1,f +3547,90641,15,3,f +3547,90652,15,1,f +3547,90652,148,1,f +3547,90661,15,2,f +3547,92199,1,1,f +3547,92201,15,1,f +3547,92216,148,1,f +3547,92226,15,1,f +3547,92233,179,1,f +3547,93277,1,1,f +3547,93575,15,1,f +3548,2496,0,2,f +3548,3626bpr0876,14,1,f +3548,42511pr0002,15,1,f +3548,87990pr0001,0,1,f +3548,88646,0,1,f +3548,970c00pr0283,0,1,f +3548,973pr1947ac01,0,1,f +3551,41855,73,2,f +3551,41855pb11,73,1,f +3551,43093,1,1,f +3551,4740,47,1,t +3551,4740,47,1,f +3551,47430,73,2,f +3551,47431,73,2,f +3551,47432,73,2,f +3551,47452,71,2,f +3551,47454,71,2,f +3551,47455,15,10,f +3551,47456,73,4,f +3551,47458,73,6,f +3551,47460,134,1,f +3551,47471,73,1,f +3551,47474,142,1,f +3551,47477c01pb01,73,1,f +3551,47501,73,4,f +3551,48080,89,1,f +3551,bb153pb02,71,1,f +3554,2357,14,4,f +3554,2357,4,4,f +3554,2412b,71,2,f +3554,2420,4,2,f +3554,2420,1,4,f +3554,2436,4,1,f +3554,2445,1,1,f +3554,2456,4,2,f +3554,2456,1,2,f +3554,2456,15,2,f +3554,2456,14,2,f +3554,2456,0,2,f +3554,2479,0,1,f +3554,2877,71,2,f +3554,2926,0,2,f +3554,3001,1,6,f +3554,3001,15,6,f +3554,3001,25,4,f +3554,3001,73,2,f +3554,3001,14,6,f +3554,3001,2,3,f +3554,3001,27,2,f +3554,3001,0,3,f +3554,3001,4,6,f +3554,3002,4,8,f +3554,3002,1,8,f +3554,3002,14,8,f +3554,3002,0,4,f +3554,3002,27,2,f +3554,3002,25,2,f +3554,3002,15,8,f +3554,3002,2,4,f +3554,30027b,71,4,f +3554,30028,0,4,f +3554,3003,2,8,f +3554,3003,1,16,f +3554,3003,73,6,f +3554,3003,4,16,f +3554,3003,27,6,f +3554,3003,15,16,f +3554,3003,25,6,f +3554,3003,0,8,f +3554,3003,14,16,f +3554,3003pr0001,14,2,f +3554,3004,2,6,f +3554,3004,14,12,f +3554,3004,0,6,f +3554,3004,27,6,f +3554,3004,25,6,f +3554,3004,4,12,f +3554,3004,73,6,f +3554,3004,1,12,f +3554,3004,15,12,f +3554,3004pr0003,15,2,f +3554,3005,14,8,f +3554,3005,73,4,f +3554,3005,27,4,f +3554,3005,1,8,f +3554,3005,15,8,f +3554,3005,2,4,f +3554,3005,25,4,f +3554,3005,4,8,f +3554,3005,0,4,f +3554,3005pr0003,15,6,f +3554,3007,4,1,f +3554,3007,1,1,f +3554,3007,15,1,f +3554,3007,14,1,f +3554,3008,15,2,f +3554,3008,4,2,f +3554,3008,1,2,f +3554,3008,14,2,f +3554,3009,4,4,f +3554,3009,15,4,f +3554,3009,1,4,f +3554,3009,14,4,f +3554,3010,73,3,f +3554,3010,14,3,f +3554,3010,1,3,f +3554,3010,25,2,f +3554,3010,4,3,f +3554,3010,0,2,f +3554,3010,2,2,f +3554,3010,15,3,f +3554,3020,25,2,f +3554,3020,15,2,f +3554,3020,1,8,f +3554,3020,4,2,f +3554,3021,1,2,f +3554,3022,1,4,f +3554,3023,25,4,f +3554,3023,14,2,f +3554,3023,1,4,f +3554,3031,1,1,f +3554,3032,2,1,f +3554,3032,4,1,f +3554,3034,15,1,f +3554,3035,1,1,f +3554,3037,0,16,f +3554,3037,1,3,f +3554,30383,0,1,f +3554,3039,4,4,f +3554,3039,1,2,f +3554,3039,0,7,f +3554,3039,14,2,f +3554,3039,15,2,f +3554,3040b,1,4,f +3554,3040b,0,2,f +3554,3062b,46,2,f +3554,3176,1,1,f +3554,3297,15,2,f +3554,3460,1,2,f +3554,3470,2,1,f +3554,3622,0,4,f +3554,3622,2,4,f +3554,3622,1,4,f +3554,3622,14,4,f +3554,3622,4,4,f +3554,3622,15,4,f +3554,3626bpr0387,14,1,f +3554,3626bpr0647,14,1,f +3554,3659,4,4,f +3554,3660,15,4,f +3554,3665,1,2,f +3554,3665,15,4,f +3554,3666,15,4,f +3554,3666,73,4,f +3554,3710,1,4,f +3554,3710,73,2,f +3554,3710,4,6,f +3554,3747b,15,2,f +3554,3794b,0,2,f +3554,3795,1,2,f +3554,3795,4,3,f +3554,3795,25,1,f +3554,3823,47,3,f +3554,3829c01,15,2,f +3554,3857,10,1,f +3554,3957a,15,2,f +3554,3958,1,2,f +3554,4070,4,2,f +3554,4070,15,2,f +3554,4079,4,2,f +3554,4150p02,14,2,f +3554,4176,47,1,f +3554,43337,4,2,f +3554,43888,14,2,f +3554,4488,0,4,f +3554,4490,15,4,f +3554,4600,71,2,f +3554,4623,15,2,f +3554,4623,14,2,f +3554,4624,15,4,f +3554,4727,10,2,f +3554,4728,4,2,f +3554,4728,1,2,f +3554,4865a,4,2,f +3554,54200,14,4,f +3554,54200,15,1,t +3554,54200,15,4,f +3554,54200,14,1,t +3554,6007,2,1,f +3554,6014b,15,4,f +3554,60470a,14,1,f +3554,60471,0,1,f +3554,60583b,4,4,f +3554,60592,15,4,f +3554,60598,4,3,f +3554,60598,14,2,f +3554,60599,4,2,f +3554,60607,15,4,f +3554,60608,15,6,f +3554,60623,15,1,f +3554,60623,14,1,f +3554,60700,0,4,f +3554,60800b,2,4,f +3554,6112,0,2,f +3554,6141,182,4,f +3554,6141,25,1,t +3554,6141,34,1,t +3554,6141,15,1,t +3554,6141,34,4,f +3554,6141,15,6,f +3554,6141,25,4,f +3554,6141,36,4,f +3554,6141,46,4,f +3554,6141,46,1,t +3554,6141,36,1,t +3554,6141,182,1,t +3554,6232,15,1,f +3554,62696,308,1,f +3554,62810,484,1,f +3554,87414,0,4,f +3554,970c00,1,1,f +3554,970c00,4,1,f +3554,973pr1573c01,15,1,f +3554,973pr1585c01,25,1,f +3555,2346,0,4,f +3555,2717,4,1,f +3555,2780,0,11,f +3555,2790,7,1,f +3555,2791,7,1,f +3555,2792,0,1,f +3555,2815,0,2,f +3555,2825,14,2,f +3555,2825,0,2,f +3555,2850a,7,1,f +3555,2851,8,1,f +3555,2852,7,1,f +3555,2853,7,1,f +3555,2905,0,2,f +3555,2905,7,2,f +3555,2905,14,2,f +3555,3023,14,2,f +3555,3034,0,1,f +3555,3068b,0,1,f +3555,3460,0,1,f +3555,3482,14,4,f +3555,3647,7,2,f +3555,3648a,7,1,f +3555,3651,7,4,f +3555,3666,0,2,f +3555,3700,0,7,f +3555,3705,0,1,f +3555,3706,0,4,f +3555,3707,0,1,f +3555,3708,0,1,f +3555,3709,0,4,f +3555,3710,14,2,f +3555,3713,7,9,f +3555,3737,0,2,f +3555,3749,7,6,f +3555,3795,0,1,f +3555,3795,14,1,f +3555,3894,0,2,f +3555,3895,0,2,f +3555,4185,7,2,f +3555,4261,7,2,f +3555,4262,0,2,f +3555,4265b,7,6,f +3555,4274,7,4,f +3555,4286,0,2,f +3555,4442,0,3,f +3555,4519,0,2,f +3556,2357,0,2,f +3556,2419,0,3,f +3556,2420,4,2,f +3556,2431,4,1,f +3556,2445,4,1,f +3556,2453a,0,4,f +3556,2470,6,2,f +3556,2488,0,1,f +3556,251,4,1,f +3556,2540,4,1,f +3556,2540,0,5,f +3556,2586p4b,7,1,f +3556,2926,0,1,f +3556,3004,0,2,f +3556,3004,6,1,f +3556,3022,0,1,f +3556,3022,4,1,f +3556,3023,6,1,f +3556,3023,0,2,f +3556,3024,4,2,f +3556,3032,4,1,f +3556,3308,0,2,f +3556,3455,0,1,f +3556,3460,0,2,f +3556,3626bpx96,14,1,f +3556,3626bpx97,14,1,f +3556,3633,0,2,f +3556,3659,0,1,f +3556,3660,0,2,f +3556,3666,0,2,f +3556,3679,7,1,f +3556,3710,4,2,f +3556,3710,0,1,f +3556,3794a,4,4,f +3556,3795,0,1,f +3556,3844,0,1,f +3556,3847,8,1,f +3556,3957a,0,1,f +3556,4275b,0,2,f +3556,4275b,4,1,f +3556,4276b,0,2,f +3556,4276b,4,1,f +3556,4477,0,2,f +3556,4488,0,2,f +3556,4489,6,2,f +3556,4491b,14,1,f +3556,4493c01pb01,6,1,f +3556,4493c01pb02,0,1,f +3556,4504,4,1,f +3556,4504,0,1,f +3556,4507,4,1,f +3556,4623,0,2,f +3556,4854,0,1,f +3556,6020,6,5,f +3556,6027,2,1,f +3556,6028,2,1,f +3556,6087,4,1,f +3556,6122,0,1,f +3556,6123,8,1,f +3556,6125,4,2,f +3556,6126a,57,1,f +3556,6127,2,1,f +3556,6128,2,1,f +3556,6133,4,2,f +3556,75174,2,1,f +3556,87685,14,1,f +3556,87686,14,1,f +3556,87687,14,1,f +3556,970x021,0,1,f +3556,970x026,7,1,f +3556,973p4bc02,4,1,f +3556,973pb0105c02,4,1,f +3556,x376px1,14,1,f +3557,3001a,0,1,f +3557,3002a,0,1,f +3557,3002a,15,2,f +3557,3002apb06,15,2,f +3557,3003,0,12,f +3557,3004,0,3,f +3557,3004,14,1,f +3557,3004,4,1,f +3557,3006,0,1,f +3557,3009,15,1,f +3557,3010,0,1,f +3557,3021,0,2,f +3557,3022,15,1,f +3557,3022,15,1,t +3557,3023,15,4,f +3557,3024,15,2,f +3557,3039,0,3,f +3557,3040a,0,2,f +3557,3062a,15,3,f +3557,3062a,0,2,f +3557,3062a,1,2,f +3557,3137c01,15,1,f +3557,3139,0,3,f +3557,3183a,15,1,f +3557,3464,4,1,f +3557,3612,0,6,f +3557,3613,15,6,f +3557,3614a,14,6,f +3557,3660a,0,2,f +3557,685px4,14,3,f +3557,739p01,15,2,f +3557,792c03,0,3,f +3557,8,15,1,f +3557,x407,15,3,f +3558,3647,7,4,f +3558,3648a,7,3,f +3558,3649,7,2,f +3558,3650a,7,2,f +3558,3736,7,1,f +3558,3743,7,6,f +3558,4019,7,2,f +3558,4185,7,1,f +3558,4716,7,1,f +3560,122c01,0,1,f +3560,3007,15,1,f +3560,3037,0,1,f +3560,3039,47,1,f +3560,3137c01,0,1,f +3560,3298,15,1,f +3560,3641,0,4,f +3560,3795,15,1,f +3560,3795,0,2,f +3560,4286,0,2,f +3560,4287,15,2,f +3561,30106,47,1,f +3561,30153,46,1,f +3561,3022,70,1,f +3561,30374,70,1,f +3561,3062b,70,2,f +3561,3623,70,1,f +3561,3626bpr0353,14,1,f +3561,3941,72,1,f +3561,40232,15,1,f +3561,4032a,1,1,f +3561,60474,71,1,f +3561,6131pr0002,379,1,f +3561,6132,15,1,f +3561,970c00pr0114,379,1,f +3561,973c50,379,1,f +3563,3737,0,50,f +3564,47912,143,1,f +3564,clikits107,143,1,f +3567,646bc01,15,8,f +3567,646bc01,4,8,f +3569,10884,27,2,f +3569,11055pr0009,15,1,f +3569,11213,1,1,f +3569,11254pr0002,0,1,f +3569,11458,15,2,f +3569,11610,0,1,f +3569,14704,71,1,f +3569,15068,19,1,f +3569,15391,71,1,f +3569,15392,72,1,t +3569,15392,72,1,f +3569,15706,70,1,f +3569,16577,71,1,f +3569,18904,288,1,f +3569,18905pr0001,288,1,f +3569,18906,288,1,f +3569,18927,15,1,f +3569,2431,71,2,f +3569,2431,72,2,f +3569,2432,72,1,f +3569,2524,70,1,f +3569,2526,15,1,t +3569,2526,15,1,f +3569,2527,4,1,f +3569,2530,72,2,t +3569,2530,72,2,f +3569,2545pr0001,0,1,f +3569,2546pat0001,4,1,f +3569,2551,272,1,f +3569,2561,70,1,f +3569,2562,70,1,t +3569,2562,70,1,f +3569,2566,0,1,f +3569,2736,71,1,f +3569,3002,71,1,f +3569,3003,15,2,f +3569,3004,72,3,f +3569,3005,15,2,f +3569,3005,71,3,f +3569,30137,70,1,f +3569,30153,34,1,f +3569,30153,41,1,f +3569,30153,36,1,f +3569,30153,46,1,f +3569,30176,2,1,f +3569,3020,19,1,f +3569,3020,15,2,f +3569,3023,19,3,f +3569,3023,71,2,f +3569,3024,15,1,f +3569,3024,15,1,t +3569,3027,19,1,f +3569,3031,70,1,f +3569,30374,70,1,f +3569,3040b,15,4,f +3569,3040b,71,4,f +3569,3046a,72,2,f +3569,30503,72,2,f +3569,30526,72,2,f +3569,30565,19,2,f +3569,3062b,46,1,f +3569,3062b,308,4,f +3569,3062b,0,4,f +3569,3068b,28,2,f +3569,3068b,72,1,f +3569,3068bpr0240,19,1,f +3569,32016,70,3,f +3569,32062,4,2,f +3569,32523,72,2,f +3569,33085,14,1,f +3569,3460,308,2,f +3569,3626cpr0499,14,1,f +3569,3626cpr1226,14,1,f +3569,3626cpr1560,14,1,f +3569,3659,15,3,f +3569,3660,15,2,f +3569,3673,71,1,t +3569,3673,71,2,f +3569,3679,71,1,f +3569,3680,0,1,f +3569,3710,72,2,f +3569,3822,71,1,f +3569,3941,70,1,f +3569,3957b,0,1,f +3569,4070,70,1,f +3569,41769,70,2,f +3569,41770,70,2,f +3569,4274,71,1,f +3569,4274,71,1,t +3569,4286,72,2,f +3569,4460b,72,2,f +3569,4738a,70,1,f +3569,4739a,70,1,f +3569,4740,0,1,f +3569,47847,72,2,f +3569,48729b,72,1,t +3569,48729b,72,1,f +3569,50950,15,2,f +3569,54200,71,2,t +3569,54200,71,7,f +3569,59900,297,1,f +3569,59900,15,3,f +3569,60169,71,1,f +3569,60897,0,1,f +3569,6141,0,6,f +3569,6141,0,2,t +3569,6148,2,1,f +3569,6179,72,1,f +3569,64644,297,1,f +3569,64647,182,1,f +3569,64647,182,1,t +3569,64951,70,1,f +3569,6636,72,3,f +3569,84943,148,1,f +3569,87580,71,2,f +3569,87585,70,1,t +3569,87585,70,3,f +3569,88072,72,1,f +3569,88292,15,2,f +3569,95228,34,1,f +3569,970c00,71,1,f +3569,970c00,15,1,f +3569,970c00,0,1,f +3569,973pr2822c01,15,1,f +3569,973pr2825c01,1,1,f +3569,973pr2830c01,4,1,f +3571,2431,70,2,f +3571,2450,28,8,f +3571,2877,71,2,f +3571,2921,71,2,f +3571,298c02,0,1,t +3571,298c02,0,1,f +3571,30033,0,1,f +3571,3020,70,2,f +3571,3021,71,1,f +3571,3023,70,1,f +3571,30259,70,2,f +3571,30375,19,2,f +3571,30375,72,4,f +3571,30375,14,1,f +3571,30376,19,3,f +3571,30377,19,1,t +3571,30377,19,3,f +3571,30377,0,1,f +3571,30377,0,1,t +3571,30378,19,3,f +3571,30383,72,4,f +3571,30414,0,2,f +3571,30552,0,2,f +3571,30553,72,3,f +3571,3176,72,1,f +3571,32028,71,2,f +3571,32064b,71,2,f +3571,32123b,71,2,f +3571,32123b,71,1,t +3571,3460,70,2,f +3571,3666,72,4,f +3571,3700,70,1,f +3571,3705,0,2,f +3571,3709,71,4,f +3571,3711a,70,80,f +3571,3711a,70,2,t +3571,3747b,70,1,f +3571,3795,72,1,f +3571,3832,70,2,f +3571,4032a,70,5,f +3571,4150,71,4,f +3571,41889,148,1,f +3571,41890,148,2,f +3571,42003,72,4,f +3571,42687,148,1,f +3571,4274,1,2,f +3571,4274,1,1,t +3571,43719,72,1,f +3571,44302a,71,4,f +3571,44358,70,1,f +3571,44359,70,2,f +3571,44567a,72,1,f +3571,4589,36,8,f +3571,4589,0,1,f +3571,47457,72,4,f +3571,47753,70,2,f +3571,48183,71,1,f +3571,48336,0,1,f +3571,50950,72,2,f +3571,50990a,47,2,f +3571,53989,70,8,f +3571,54200,36,2,f +3571,58247,0,3,f +3571,59230,19,1,t +3571,59230,19,3,f +3571,60470a,71,1,f +3571,60849,71,1,t +3571,60849,71,4,f +3571,61184,71,8,f +3571,6141,36,1,t +3571,6141,72,1,t +3571,6141,36,4,f +3571,6141,72,8,f +3571,6190,72,1,f +3571,6587,72,4,f +3572,2357,272,4,f +3572,2357,2,4,f +3572,2357,4,12,f +3572,2357,320,12,f +3572,2357,1,4,f +3572,2357,14,60,f +3572,3001,14,2,f +3572,3002,14,4,f +3572,3004,272,4,f +3572,3004,73,4,f +3572,3004,27,4,f +3572,3004,25,12,f +3572,3004,288,10,f +3572,3004,320,6,f +3572,3004,4,2,f +3572,3004,14,18,f +3572,3005,25,8,f +3572,3005,272,4,f +3572,3005,2,4,f +3572,3005,73,4,f +3572,3005,27,8,f +3572,3005,1,4,f +3572,3005,288,4,f +3572,3008,2,4,f +3572,3008,1,4,f +3572,3009,25,4,f +3572,3009,4,4,f +3572,3009,1,4,f +3572,3009,320,4,f +3572,3009,27,4,f +3572,3009,14,4,f +3572,3009,2,4,f +3572,3010,272,12,f +3572,3010,73,12,f +3572,3010,14,10,f +3572,3010,288,12,f +3572,3010,4,2,f +3572,3010,27,8,f +3572,3010,25,4,f +3572,3020,14,2,f +3572,3023,73,12,f +3572,3023,14,4,f +3572,3024,14,4,f +3572,3024,73,12,f +3572,3035,14,1,f +3572,3069b,0,4,f +3572,3666,14,4,f +3572,3710,14,8,f +3572,3958,14,3,f +3572,4162,0,2,f +3572,6636,0,2,f +3575,2412b,36,4,f +3575,2412b,320,2,f +3575,2420,19,2,f +3575,2431,320,6,f +3575,2431,72,4,f +3575,2432,19,2,f +3575,2444,1,4,f +3575,2445,71,2,f +3575,2540,19,1,f +3575,2555,71,4,f +3575,2566,0,2,f +3575,2654,19,1,f +3575,2780,0,1,t +3575,2780,0,6,f +3575,2817,4,2,f +3575,2877,71,1,f +3575,30000,72,1,f +3575,3004,72,4,f +3575,3005,71,2,f +3575,3005,72,2,f +3575,3010,71,6,f +3575,30136,19,2,f +3575,30191,71,2,f +3575,3020,19,3,f +3575,3021,71,4,f +3575,3021,72,3,f +3575,3022,72,2,f +3575,3022,71,2,f +3575,3022,19,2,f +3575,3023,72,4,f +3575,30236,71,4,f +3575,3024,72,4,f +3575,3024,320,2,f +3575,3031,72,5,f +3575,3032,72,1,f +3575,3034,71,8,f +3575,3036,71,2,f +3575,30361b,72,2,f +3575,30365,0,2,f +3575,30374,36,2,f +3575,30377,0,3,f +3575,30377,0,1,t +3575,3039,72,2,f +3575,30503,72,8,f +3575,30552,71,2,f +3575,3062b,0,2,f +3575,3068b,72,8,f +3575,3069b,72,6,f +3575,3070b,19,1,f +3575,3070b,36,4,f +3575,3070b,36,1,t +3575,3070b,19,1,t +3575,32000,4,2,f +3575,32013,72,2,f +3575,32062,0,1,f +3575,32123b,71,1,t +3575,32123b,71,4,f +3575,32270,0,2,f +3575,3297,72,4,f +3575,3460,320,4,f +3575,3460,71,4,f +3575,3623,0,2,f +3575,3623,4,2,f +3575,3660,71,3,f +3575,3666,4,2,f +3575,3700,19,2,f +3575,3701,72,2,f +3575,3702,0,2,f +3575,3709,71,6,f +3575,3710,71,6,f +3575,3710,72,1,f +3575,3747b,72,4,f +3575,3794a,71,12,f +3575,3795,72,8,f +3575,3795,19,1,f +3575,3894,71,2,f +3575,3941,72,6,f +3575,3942c,72,4,f +3575,3942c,71,4,f +3575,41747,72,2,f +3575,41748,72,2,f +3575,41769,72,4,f +3575,41770,72,4,f +3575,42023,72,2,f +3575,42060,72,1,f +3575,42061,72,1,f +3575,42687,72,2,f +3575,4274,1,2,f +3575,4274,1,1,t +3575,4286,71,4,f +3575,4286,72,2,f +3575,4287,72,4,f +3575,43712,72,3,f +3575,44294,71,2,f +3575,44301a,71,4,f +3575,44302a,72,4,f +3575,44728,71,4,f +3575,4477,4,4,f +3575,4477,71,2,f +3575,4519,71,3,f +3575,45301,72,2,f +3575,4589,52,4,f +3575,4589,36,4,f +3575,4600,0,1,f +3575,47397,71,2,f +3575,47398,71,2,f +3575,47905,0,2,f +3575,48729a,72,1,t +3575,48729b,72,4,f +3575,50304,72,2,f +3575,50305,72,2,f +3575,50923,72,2,f +3575,50950,72,6,f +3575,52031,72,2,f +3575,52107,0,10,f +3575,53989,72,4,f +3575,54200,72,14,f +3575,54200,72,1,t +3575,59900,71,6,f +3575,6019,0,1,f +3575,60478,0,2,f +3575,6091,320,2,f +3575,61184,71,2,f +3575,61191,40,1,f +3575,61192pr0001,19,2,f +3575,61193,72,2,f +3575,61194,19,2,f +3575,61409,72,8,f +3575,6141,71,1,t +3575,6141,4,6,f +3575,6141,71,2,f +3575,6141,4,1,t +3575,6141,36,1,t +3575,6141,36,2,f +3575,6179,72,4,f +3575,63082,71,1,f +3575,63965,71,4,f +3575,6536,71,1,f +3575,6541,0,6,f +3575,6541,72,4,f +3575,6558,1,8,f +3575,6572,71,1,f +3575,6636,72,2,f +3575,7673stk01,9999,1,t +3578,2412b,7,4,f +3578,2780,0,34,f +3578,2780,0,1,t +3578,2825,0,2,f +3578,2850a,47,4,f +3578,2851,14,4,f +3578,2852,7,4,f +3578,2853,7,2,f +3578,2854,8,2,f +3578,3022,0,4,f +3578,32002,8,4,f +3578,32002,8,1,t +3578,32013,0,6,f +3578,32015,0,2,f +3578,32016,0,2,f +3578,32034,0,2,f +3578,32039,0,6,f +3578,32062,0,9,f +3578,32064b,0,2,f +3578,32073,0,2,f +3578,32123b,7,1,t +3578,32123b,7,4,f +3578,32138,14,2,f +3578,32140,7,2,f +3578,32188,80,1,f +3578,32189,80,1,f +3578,32190,80,2,f +3578,32191,80,2,f +3578,32192,0,2,f +3578,32199,179,2,f +3578,32200,179,2,f +3578,32201,179,2,f +3578,32202,179,2,f +3578,32235,179,2,f +3578,32291,0,4,f +3578,32333,0,2,f +3578,32348,0,2,f +3578,3647,7,2,f +3578,3666,0,2,f +3578,3673,7,4,f +3578,3700,0,2,f +3578,3701,7,2,f +3578,3705,0,8,f +3578,3706,0,6,f +3578,3707,0,3,f +3578,3713,7,1,t +3578,3713,7,6,f +3578,3749,7,10,f +3578,4274,7,1,t +3578,4274,7,8,f +3578,4519,0,5,f +3578,6536,7,6,f +3578,6538b,0,2,f +3578,6558,0,4,f +3578,6587,8,2,f +3578,75535,0,5,f +3578,78c02,179,2,f +3578,78c07,0,4,f +3578,78c08,179,2,f +3578,78c11,179,2,f +3578,78c14,0,2,f +3578,78c18,179,2,f +3579,2436,0,2,f +3579,2446,14,1,f +3579,2446,1,1,f +3579,2446,0,1,f +3579,2446,4,1,f +3579,265bc01,14,4,f +3579,2711,0,6,f +3579,2723pr01,15,1,f +3579,2757,7,5,f +3579,2815,0,4,f +3579,3003,4,7,f +3579,3003,1,7,f +3579,3004,4,10,f +3579,3004,1,10,f +3579,3008,4,2,f +3579,3008,1,2,f +3579,3009,4,2,f +3579,3009,1,2,f +3579,3010,4,4,f +3579,3010,1,4,f +3579,3020,0,5,f +3579,3021,0,8,f +3579,3022,0,2,f +3579,3023,0,10,f +3579,3030,0,2,f +3579,3032,0,2,f +3579,3037,4,7,f +3579,3039,4,2,f +3579,3039,1,2,f +3579,3040b,1,2,f +3579,3062b,4,4,f +3579,3065,34,2,f +3579,3065,46,2,f +3579,3065,36,2,f +3579,3069b,7,4,f +3579,3069b,1,4,f +3579,3069b,0,4,f +3579,3069b,4,4,f +3579,3069b,14,4,f +3579,3184,4,1,f +3579,3184,1,1,f +3579,3297,4,3,f +3579,3298,4,2,f +3579,3298,1,2,f +3579,3460,0,2,f +3579,3482,7,8,f +3579,3483,0,4,f +3579,3622,1,2,f +3579,3622,4,2,f +3579,3623,0,4,f +3579,3634,0,4,f +3579,3647,7,4,f +3579,3648a,7,4,f +3579,3649,7,2,f +3579,3650a,7,1,f +3579,3651,7,8,f +3579,3660,1,2,f +3579,3660,4,2,f +3579,3666,0,6,f +3579,3673,7,15,f +3579,367a,7,1,f +3579,3700,1,6,f +3579,3700,4,6,f +3579,3701,4,7,f +3579,3701,1,7,f +3579,3702,1,5,f +3579,3702,4,5,f +3579,3703,4,4,f +3579,3703,1,4,f +3579,3704,0,4,f +3579,3705,0,4,f +3579,3706,0,4,f +3579,3707,0,4,f +3579,3708,0,2,f +3579,3709,0,5,f +3579,3710,0,6,f +3579,3713,7,12,f +3579,3736,7,2,f +3579,3737,0,2,f +3579,3738,0,2,f +3579,3739,7,1,f +3579,3743,7,4,f +3579,3747b,4,2,f +3579,3747b,1,2,f +3579,3794a,0,4,f +3579,3795,0,4,f +3579,3830,4,1,f +3579,3831,4,1,f +3579,3832,0,2,f +3579,3853,15,1,f +3579,3854,15,2,f +3579,3861b,15,1,f +3579,3894,4,5,f +3579,3894,1,5,f +3579,3895,1,4,f +3579,3895,4,4,f +3579,3901,0,1,f +3579,3941,0,4,f +3579,3956,0,2,f +3579,4019,7,2,f +3579,4143,7,2,f +3579,4162,0,4,f +3579,4185,7,6,f +3579,4265a,7,20,f +3579,4273b,7,4,f +3579,4286,1,2,f +3579,4477,0,2,f +3579,4519,0,4,f +3579,4716,7,2,f +3579,4742,1,1,f +3579,4962,1,1,f +3579,4963,1,1,f +3579,6216b,7,2,f +3579,71509,0,6,f +3579,73090b,4,1,f +3579,766c14,7,5,f +3579,766c375,14,1,f +3579,766c375,0,1,f +3579,766c375,1,1,f +3579,766c375,7,1,f +3579,766c375,4,1,f +3579,rb00168,0,6,f +3579,rb00169,0,12,f +3579,x1161cx1,0,1,f +3579,x1167cx1,0,2,f +3579,x157,15,12,f +3581,11816pr0003,78,1,f +3581,3069bpr0130,322,1,f +3581,92256,226,1,f +3581,92456pr0041c01,78,1,f +3581,92820pr0006c01a,85,1,f +3581,93092,30,1,f +3582,30608,0,1,f +3582,3626bpb0053,14,1,f +3582,970x026,14,1,f +3582,973pr0805c01,15,1,f +3583,11153,320,2,f +3583,11538pr0001,71,1,f +3583,13731,320,4,f +3583,2412b,71,1,f +3583,2412b,320,2,f +3583,2412b,0,1,f +3583,2419,320,1,f +3583,2431,15,2,f +3583,2819,71,2,f +3583,3001,72,1,f +3583,3004,71,4,f +3583,3004,15,4,f +3583,3009,15,1,f +3583,3010,15,2,f +3583,3010,0,3,f +3583,3020,320,1,f +3583,3020,0,2,f +3583,3022,71,1,f +3583,3023,15,2,f +3583,3023,0,1,f +3583,3024,320,2,f +3583,3024,320,1,t +3583,3024,15,1,t +3583,3024,15,4,f +3583,3034,15,2,f +3583,30355,15,1,f +3583,30356,15,1,f +3583,3036,320,1,f +3583,30363,15,4,f +3583,3039,320,2,f +3583,3039,71,1,f +3583,3040b,320,2,f +3583,30554b,0,1,f +3583,3069b,15,2,f +3583,32016,0,2,f +3583,32062,4,2,f +3583,32064a,72,4,f +3583,3460,15,4,f +3583,3626cpr0648,78,1,f +3583,3626cpr0975,78,1,f +3583,3660,15,3,f +3583,3660,71,1,f +3583,3665,15,4,f +3583,3665,320,4,f +3583,3665,72,2,f +3583,3710,15,4,f +3583,3710,320,2,f +3583,3795,71,1,f +3583,3899,47,1,f +3583,3901,70,1,f +3583,3941,42,3,f +3583,4006,0,1,f +3583,4081b,72,4,f +3583,41764,71,1,f +3583,41765,71,1,f +3583,41769,15,1,f +3583,41770,15,1,f +3583,42003,0,2,f +3583,42023,15,2,f +3583,42060,15,1,f +3583,42061,15,1,f +3583,43722,15,1,f +3583,43723,15,1,f +3583,44300,71,1,f +3583,44728,0,1,f +3583,4519,71,4,f +3583,4740,42,2,f +3583,47753,320,1,f +3583,50304,15,1,f +3583,50305,15,1,f +3583,50373,320,1,f +3583,59900,0,4,f +3583,60471,0,1,f +3583,60481,15,2,f +3583,6091,15,2,f +3583,61184,71,6,f +3583,6141,71,8,f +3583,6141,71,2,t +3583,6141,0,1,t +3583,6141,0,2,f +3583,64808pr0001,484,1,f +3583,6636,15,2,f +3583,75003stk01,9999,1,f +3583,85984,71,1,f +3583,87580,72,1,f +3583,92279,40,1,f +3583,92280,15,2,f +3583,92593,71,1,f +3583,92738,0,1,f +3583,93168,320,2,f +3583,93273,71,2,f +3583,970c00,15,1,f +3583,970c00pr0033,70,1,f +3583,970c80pr0480,288,1,f +3583,973pr2301c01,0,1,f +3583,973pr2302c01,15,1,f +3583,973pr2303c01,288,1,f +3583,99781,71,1,f +3585,3626bpr0001,14,1,f +3585,3901,0,1,f +3585,970c00,0,1,f +3585,973px173c01,4,1,f +3587,3001a,1,12,f +3587,3001a,0,8,f +3587,3001a,15,12,f +3587,3001a,14,20,f +3587,3001a,4,20,f +3587,3001a,47,4,f +3587,3002a,15,2,f +3587,3002a,1,4,f +3587,3002a,4,4,f +3587,3002a,0,2,f +3587,3002a,14,4,f +3587,3003,15,8,f +3587,3003,4,8,f +3587,3003,47,2,f +3587,3003,14,8,f +3587,3003,1,8,f +3587,3003,0,4,f +3587,3004,0,4,f +3587,3004,1,4,f +3587,3004,14,8,f +3587,3004,4,8,f +3587,3004,15,4,f +3587,3006,1,1,f +3587,3007,4,1,f +3587,3008,1,2,f +3587,3008,15,2,f +3587,3009,14,2,f +3587,3021,0,3,f +3587,3030,4,1,f +3587,3032,14,2,f +3587,3033,4,1,f +3587,3035,1,1,f +3587,3039,1,4,f +3587,3039,14,4,f +3587,3081cc01,15,1,f +3587,3081cc01,4,2,f +3587,3137c01,0,2,f +3587,3144,79,1,f +3587,3149c01,4,1,f +3587,3183a,1,1,f +3587,3184,1,1,f +3587,3185,15,5,f +3587,3297,1,12,f +3587,3298,1,4,f +3587,3299,1,2,f +3587,3300,1,2,f +3587,3315,4,1,f +3587,3324c01,4,1,f +3587,3433,14,1,f +3587,3456,1,1,f +3587,3471,2,1,f +3587,3483,0,8,f +3587,3579,4,1,f +3587,3581,4,4,f +3587,3582,1,4,f +3587,3612,0,2,f +3587,3612,1,2,f +3587,3612,15,2,f +3587,3613,1,2,f +3587,3613,15,2,f +3587,3613,0,2,f +3587,3614a,14,6,f +3587,3641,0,4,f +3587,3660,1,4,f +3587,3660,14,2,f +3587,453cc01,15,1,f +3587,453cc01,4,2,f +3587,685p01,14,1,f +3587,685px3,14,1,f +3587,685px4,14,1,f +3587,700ed2,2,1,f +3587,7039,4,8,f +3587,7049b,0,4,f +3587,792c03,0,1,f +3587,792c03,1,1,f +3587,792c03,15,1,f +3587,7930,1,1,f +3587,x196,0,1,f +3587,x197,6,1,f +3587,x407,4,1,f +3587,x407,0,1,f +3589,30368,64,1,f +3589,30374,36,1,f +3589,3626bpr0402,71,1,f +3589,50231,0,1,f +3589,64567,80,1,f +3589,970c00,64,1,f +3589,973pb0516c02,64,1,f +3590,12622,0,1,f +3590,15623pr0002,71,1,f +3590,15624,27,1,f +3590,15625pr0001,72,2,f +3590,15626pr0001,15,1,f +3590,15627,15,1,f +3590,15627pr0003,71,2,f +3590,2412b,71,2,f +3590,2431,2,2,f +3590,2431pr0017,14,2,f +3590,2431pr0062,15,1,f +3590,2432,71,1,f +3590,2437,41,1,f +3590,2456,1,3,f +3590,3002,72,1,f +3590,3003,0,1,f +3590,3004,14,1,f +3590,3004,0,1,f +3590,3010,15,1,f +3590,3010,72,7,f +3590,3023,72,1,f +3590,30236,71,2,f +3590,30237b,15,3,f +3590,3037,1,6,f +3590,3039,1,1,f +3590,3039pr0001,15,1,f +3590,3040b,71,2,f +3590,3040b,72,2,f +3590,3062b,47,1,f +3590,3062b,0,1,f +3590,3062b,33,3,f +3590,3062b,36,2,f +3590,30663,71,1,f +3590,3069b,15,2,f +3590,3069b,4,1,f +3590,3069b,46,1,f +3590,3069b,36,4,f +3590,3069b,33,3,f +3590,3069bp02,71,1,f +3590,3069bpr0100,2,2,f +3590,3460,0,1,f +3590,3623,72,1,f +3590,3624,1,2,f +3590,3626cpr0411,14,1,f +3590,3626cpr0499,14,1,f +3590,3626cpr0754,14,1,f +3590,3700,1,1,f +3590,3710,15,3,f +3590,3710,1,1,f +3590,3795,72,2,f +3590,3829c01,71,1,f +3590,3957a,15,1,f +3590,3957a,71,1,f +3590,3962b,0,1,f +3590,4079,70,2,f +3590,4083,15,1,f +3590,41334,0,1,f +3590,43898,15,1,f +3590,4595,71,1,f +3590,4599b,1,1,f +3590,4740,33,1,f +3590,50859b,0,1,f +3590,50861,0,2,f +3590,50862,71,2,f +3590,50950,72,2,f +3590,6014b,15,4,f +3590,6020,0,1,f +3590,60596,0,1,f +3590,60599,15,1,f +3590,60603,41,1,f +3590,60616a,41,1,f +3590,60621,71,1,f +3590,61482,71,1,f +3590,6190,4,1,f +3590,62113,72,2,f +3590,62808,72,1,f +3590,63868,71,1,f +3590,63868,4,1,f +3590,87079,72,3,f +3590,87697,0,4,f +3590,88930,15,1,f +3590,88930pr0003,15,1,f +3590,89536,15,1,f +3590,92585,4,1,f +3590,92586pr0001,84,1,f +3590,92590,28,1,f +3590,92926,2,1,f +3590,93160,15,1,f +3590,93273,0,2,f +3590,970c00,0,1,f +3590,970c00,1,2,f +3590,973pr1697c01,73,2,f +3590,973pr1944c01,15,1,f +3591,10a,2,1,f +3591,3001,4,1,f +3591,3002,4,2,f +3591,3003,4,4,f +3591,3026,14,1,f +3591,3033,4,1,f +3591,3033,14,1,f +3591,3185,14,1,f +3591,3741,2,4,f +3591,3742,15,6,f +3591,3742,15,2,t +3591,3742,4,2,t +3591,3742,4,6,f +3591,3899,1,2,f +3591,3979c01,14,7,f +3591,3979c02,4,3,f +3591,4094a,4,2,f +3591,4222a,450,2,f +3591,4332,366,1,f +3591,4341,0,1,f +3591,4342,19,2,f +3591,63965,4,2,f +3591,787c01,14,3,f +3591,787c02,4,2,f +3591,787c03,14,1,f +3591,787c04,4,1,f +3591,790,1,1,f +3591,fab4g,9999,1,f +3591,x234,14,1,f +3593,255pb01,4,1,f +3593,27bc01,4,4,f +3593,3001a,4,2,f +3593,3001a,15,4,f +3593,3002a,4,2,f +3593,3005,15,6,f +3593,3008a,4,2,f +3593,3008a,15,4,f +3593,3008apb40,15,1,f +3593,3009a,15,3,f +3593,3009a,4,5,f +3593,3035a,15,2,f +3593,3036a,15,2,f +3593,3065,15,53,f +3593,3065,47,13,f +3593,3065,4,4,f +3593,32bc01,4,1,f +3594,2736,71,1,t +3594,2736,71,1,f +3594,3021,15,1,f +3594,3070b,15,1,f +3594,3070b,15,1,t +3594,32034,0,1,f +3594,32064b,15,2,f +3594,3623,4,1,f +3594,3626bpb0117,14,1,f +3594,3707,0,1,f +3594,4195285,89,1,f +3594,43373,25,1,f +3594,43374,15,1,f +3594,43702,25,1,f +3594,45522,4,1,f +3594,6232,4,1,f +3594,970c00,4,1,f +3594,973bpb157c01,4,1,f +3595,3002,0,1,f +3595,3004,0,4,f +3595,3004,8,1,f +3595,3005pe1,8,2,f +3595,3021,0,1,f +3595,3660,0,1,f +3596,3001,14,2,f +3596,3034,2,2,f +3596,30474pb03,2,1,f +3596,3137c01,0,2,f +3596,3298,110,4,f +3596,3641,0,4,f +3596,3795,14,2,f +3597,2723,0,2,f +3597,2736,71,2,f +3597,2741,0,1,f +3597,2780,0,235,f +3597,2780,0,5,t +3597,2825,0,4,f +3597,2825,4,4,f +3597,2850a,71,12,f +3597,2851,14,12,f +3597,2852,71,12,f +3597,2853,71,2,f +3597,2854,72,5,f +3597,3004,0,1,f +3597,3023,0,2,f +3597,3023,4,1,f +3597,3069b,0,1,f +3597,3185,0,4,f +3597,32005b,0,8,f +3597,32009,4,4,f +3597,32009,0,6,f +3597,32013,4,4,f +3597,32013,0,5,f +3597,32015,0,4,f +3597,32015,4,8,f +3597,32016,0,7,f +3597,32034,0,3,f +3597,32039,4,2,f +3597,32039,0,12,f +3597,32054,4,12,f +3597,32054,0,6,f +3597,32054,71,10,f +3597,32056,4,6,f +3597,32056,71,8,f +3597,32062,0,52,f +3597,32063,4,2,f +3597,32065,4,2,f +3597,32073,71,14,f +3597,32123b,71,4,f +3597,32123b,71,2,t +3597,32138,0,4,f +3597,32140,0,4,f +3597,32140,4,2,f +3597,32184,4,8,f +3597,32184,71,2,f +3597,32184,0,21,f +3597,32192,4,2,f +3597,32195b,4,2,f +3597,32195b,0,10,f +3597,32199,0,3,f +3597,32201,4,2,f +3597,32202,4,2,f +3597,32235,4,1,f +3597,32270,71,1,f +3597,32271,4,4,f +3597,32271,0,6,f +3597,32278,0,25,f +3597,32278,4,4,f +3597,32291,0,15,f +3597,32291,4,4,f +3597,32310,0,1,f +3597,32316,0,7,f +3597,32316,4,7,f +3597,32333,0,2,f +3597,32348,4,2,f +3597,32348,0,2,f +3597,32449,4,10,f +3597,32494,71,2,f +3597,32495c01,0,4,f +3597,32523,0,6,f +3597,32523,4,17,f +3597,32524,0,8,f +3597,32524,4,8,f +3597,32525,0,10,f +3597,32525,4,2,f +3597,32526,4,4,f +3597,32526,0,14,f +3597,32534,4,3,f +3597,32535,4,3,f +3597,32556,71,2,f +3597,32557,0,2,f +3597,33299a,71,2,f +3597,3460,4,2,f +3597,3647,71,1,f +3597,3673,71,2,f +3597,3705,0,37,f +3597,3706,0,10,f +3597,3707,0,9,f +3597,3708,4,4,f +3597,3708,0,2,f +3597,3710,0,1,f +3597,3713,71,21,f +3597,3713,4,8,f +3597,3713,4,8,t +3597,3713,71,5,t +3597,3737,0,7,f +3597,3737,4,2,f +3597,3743,71,1,f +3597,3941,36,4,f +3597,40490,0,4,f +3597,40490,4,6,f +3597,41239,0,2,f +3597,41669,4,2,f +3597,41677,0,14,f +3597,41677,4,4,f +3597,41678,4,10,f +3597,42003,4,8,f +3597,42003,0,16,f +3597,4274,71,17,f +3597,4274,71,3,t +3597,43093,1,55,f +3597,43857,0,2,f +3597,43857,4,2,f +3597,44294,71,4,f +3597,44294,0,3,f +3597,44294,4,1,f +3597,44350,4,3,f +3597,44351,4,3,f +3597,44352,4,2,f +3597,44353,4,2,f +3597,44771,0,4,f +3597,44772,0,4,f +3597,4519,71,40,f +3597,4740,0,4,f +3597,47712,4,2,f +3597,47713,4,2,f +3597,50965,135,4,f +3597,6141,57,4,f +3597,6141,14,5,f +3597,6141,14,2,t +3597,6141,57,2,t +3597,6141,47,4,f +3597,6141,47,2,t +3597,6536,71,2,f +3597,6536,0,52,f +3597,6536,4,7,f +3597,6538b,71,3,f +3597,6538b,14,2,f +3597,6538b,0,4,f +3597,6538b,4,6,f +3597,6558,0,97,f +3597,6572,4,2,f +3597,6573,72,1,f +3597,6587,72,8,f +3597,6589,71,4,f +3597,6628,0,12,f +3597,6629,4,4,f +3597,6629,0,6,f +3597,6632,4,30,f +3597,6632,0,8,f +3597,6632,71,24,f +3597,75535,4,2,f +3597,75535,80,4,f +3597,76320,0,2,f +3597,78c02,4,1,t +3597,78c02,4,6,f +3597,78c03,179,2,f +3597,78c11,4,1,f +3597,78c13,135,2,f +3597,78c14,4,2,f +3597,9244,71,1,f +3598,2419,1,2,f +3598,2456,4,1,f +3598,2458,4,1,f +3598,2479,7,1,f +3598,3001,4,1,f +3598,3002,4,2,f +3598,3003,4,2,f +3598,3003,14,2,f +3598,3004,4,6,f +3598,3004,14,2,f +3598,3005pe1,14,2,f +3598,3009,4,2,f +3598,3020,1,3,f +3598,3021,1,2,f +3598,3022,1,1,f +3598,3040b,1,2,f +3598,3062b,15,4,f +3598,3062b,0,4,f +3598,3298,1,2,f +3598,3298p17,14,2,f +3598,3626bpx19,14,1,f +3598,3633,15,2,f +3598,3660,14,3,f +3598,3660,4,4,f +3598,3710,1,1,f +3598,3741,2,3,f +3598,3742,4,3,f +3598,3742,4,1,t +3598,3742,15,1,t +3598,3742,15,3,f +3598,3747a,4,1,f +3598,3795,1,5,f +3598,3957a,15,1,f +3598,4485,4,1,f +3598,4495b,2,1,f +3598,6215,14,2,f +3598,970c00,2,1,f +3598,973px33c01,15,1,f +3599,11214,72,2,f +3599,11946,0,3,f +3599,11947,0,3,f +3599,14720,71,1,f +3599,15379,0,2,t +3599,15379,0,41,f +3599,15459,71,4,f +3599,15460,72,2,f +3599,15461,0,2,f +3599,16136,9999,1,t +3599,2736,71,2,f +3599,2780,0,1,t +3599,2780,0,13,f +3599,32005b,0,2,f +3599,32009,0,2,f +3599,32016,0,2,f +3599,32039,71,4,f +3599,32054,0,4,f +3599,32062,4,14,f +3599,32073,71,3,f +3599,32140,27,4,f +3599,32140,0,2,f +3599,32184,0,5,f +3599,32271,0,2,f +3599,32316,0,4,f +3599,32524,27,2,f +3599,32525,0,4,f +3599,32526,15,3,f +3599,32556,19,2,f +3599,33299a,0,2,f +3599,3673,71,6,f +3599,3673,71,1,t +3599,3706,0,2,f +3599,3713,71,3,f +3599,3713,71,1,t +3599,3749,19,1,f +3599,41239,27,2,f +3599,41669,47,2,f +3599,4274,71,1,t +3599,4274,71,1,f +3599,4519,71,4,f +3599,57585,71,1,f +3599,59443,71,1,f +3599,60483,72,4,f +3599,6558,1,9,f +3599,6632,15,2,f +3599,76138,71,2,f +3599,87083,72,3,f +3599,87407,71,4,f +3599,92907,0,4,f +3600,2654,33,1,f +3600,30173b,148,1,f +3600,3022,1,1,f +3600,30374,297,1,f +3600,3065,33,2,f +3600,3626cpr0956,1,1,f +3600,4497,135,1,f +3600,4643688,9999,1,f +3600,4643689,9999,1,f +3600,4643690,9999,1,f +3600,4643691,9999,1,f +3600,4643692,9999,1,f +3600,64567,297,1,f +3600,64727,297,1,f +3600,970c00pr0324,1,1,f +3600,973pr1905c01,1,1,f +3600,98133pr0008,1,1,f +3600,98343pr0003,179,1,f +3600,98354pr0018,33,1,f +3602,11211,19,1,f +3602,11245pr0002,26,1,f +3602,11408pr0002c01,84,1,f +3602,11618,31,1,t +3602,11618,26,1,f +3602,11640pr0001,323,1,f +3602,11641,15,1,f +3602,11816pr0002,78,1,f +3602,11816pr0012,78,1,f +3602,14014pr0001,84,1,f +3602,15207,19,1,f +3602,2343,47,1,f +3602,2412b,71,3,f +3602,2431,15,2,f +3602,2453b,226,4,f +3602,2454b,226,8,f +3602,2540,19,1,f +3602,2780,0,3,t +3602,2780,0,6,f +3602,2877,72,8,f +3602,3001,15,4,f +3602,3003,27,2,f +3602,3004,226,4,f +3602,3004,19,2,f +3602,3004,272,5,f +3602,3005,322,12,f +3602,3005,72,12,f +3602,3005,272,9,f +3602,3005pr0006,73,1,f +3602,3005pr17,27,1,f +3602,3010,226,17,f +3602,3010,322,10,f +3602,3010,272,5,f +3602,3010,15,4,f +3602,30136,70,2,f +3602,30162,72,1,f +3602,3020,72,3,f +3602,3020,484,6,f +3602,3020,28,1,f +3602,3020,30,4,f +3602,3021,30,1,f +3602,3021,85,1,f +3602,3022,19,1,f +3602,3022,71,3,f +3602,3023,272,6,f +3602,3023,19,1,f +3602,3023,70,3,f +3602,3023,15,1,f +3602,3023,30,4,f +3602,3031,71,1,f +3602,3035,70,1,f +3602,30357,29,1,f +3602,3036,15,1,f +3602,3039,272,2,f +3602,3039pr62,71,1,f +3602,30414,72,3,f +3602,3062b,15,2,f +3602,3062b,322,2,f +3602,3068b,15,4,f +3602,3068bpr0138,15,1,f +3602,3069b,19,1,f +3602,3069b,70,1,f +3602,3069b,322,3,f +3602,3069b,14,1,f +3602,3069bpr0055,15,1,f +3602,32039,0,1,f +3602,32064a,0,1,f +3602,3297,272,8,f +3602,3298,272,9,f +3602,33009,70,1,f +3602,33009,26,1,f +3602,33051,10,1,f +3602,33291,10,6,f +3602,33291,5,2,t +3602,33291,191,1,t +3602,33291,5,8,f +3602,33291,191,1,f +3602,33291,10,2,t +3602,3622,0,1,f +3602,3660,71,2,f +3602,3660,70,2,f +3602,3666,30,6,f +3602,3700,71,17,f +3602,3710,70,13,f +3602,3710,30,19,f +3602,3713,4,1,t +3602,3713,4,1,f +3602,3741,2,3,f +3602,3741,2,2,t +3602,3742,29,2,t +3602,3742,29,6,f +3602,3747b,15,1,f +3602,3794b,72,2,f +3602,3794b,272,2,f +3602,3937,71,1,f +3602,3938,0,1,f +3602,3940b,72,1,f +3602,3941,72,1,f +3602,3941,15,3,f +3602,4085c,72,1,f +3602,41005stk01,9999,1,f +3602,4150,27,1,f +3602,4150,15,1,f +3602,4150,29,2,f +3602,4150pr0001,15,1,f +3602,4162,272,5,f +3602,4162,70,1,f +3602,4162,30,4,f +3602,4282,19,1,f +3602,44728,0,1,f +3602,4536,15,2,f +3602,4589,26,1,f +3602,4599b,71,3,f +3602,46212,47,2,f +3602,4719,322,1,f +3602,4733,15,1,f +3602,4865b,19,1,f +3602,4865b,322,2,f +3602,4865b,29,2,f +3602,54200,15,1,f +3602,54200,15,1,t +3602,59349,226,8,f +3602,59900,1,1,f +3602,59900,2,1,f +3602,59900,14,1,f +3602,60032,15,3,f +3602,6019,0,1,f +3602,60485,71,1,f +3602,60593,19,1,f +3602,60594,70,6,f +3602,60594,72,2,f +3602,60596,70,3,f +3602,60608,15,12,f +3602,60614,72,4,f +3602,60616a,15,1,f +3602,60623,15,2,f +3602,6091,30,1,f +3602,6141,14,2,f +3602,6141,27,2,t +3602,6141,4,1,f +3602,6141,0,1,t +3602,6141,27,10,f +3602,6141,71,4,f +3602,6141,29,6,f +3602,6141,0,3,f +3602,6141,85,1,f +3602,6141,14,2,t +3602,6141,29,2,t +3602,6141,85,1,t +3602,6141,15,1,t +3602,6141,15,4,f +3602,6141,47,1,f +3602,6141,4,1,t +3602,6141,47,1,t +3602,6141,71,1,t +3602,6179,15,1,f +3602,6180,15,1,f +3602,6180,0,1,f +3602,6231,15,2,f +3602,6256,191,1,f +3602,6266,0,1,t +3602,6266,0,1,f +3602,62698,0,1,f +3602,63864,72,1,f +3602,64799,71,2,f +3602,6636,272,6,f +3602,6636,15,2,f +3602,72824,25,1,f +3602,87079,15,1,f +3602,87544,71,2,f +3602,87552,47,2,f +3602,87580,70,8,f +3602,87991,0,1,f +3602,91405,19,1,f +3602,92084pr0001,70,1,f +3602,92255,226,1,f +3602,92259,70,1,f +3602,92410,27,1,f +3602,92438,19,2,f +3602,92456pr0039c01,78,1,f +3602,92593,272,7,f +3602,92816pr0002c01,78,1,f +3602,92817pr0002c01,15,1,f +3602,92820pr0006c01a,85,1,f +3602,92821pr0001c01,272,1,f +3602,92851,47,2,f +3602,92950,19,2,f +3602,93549pat01,47,1,f +3602,93552pr0001,70,1,f +3602,93552pr0001,70,1,t +3602,96874,25,1,t +3602,98138,297,1,t +3602,98138,33,1,t +3602,98138,297,1,f +3602,98138,33,1,f +3603,2431,15,1,f +3603,2540,71,4,f +3603,298c02,15,1,f +3603,298c02,15,1,t +3603,3022,15,3,f +3603,3023,47,2,f +3603,3023,72,3,f +3603,30374,72,2,f +3603,3062b,320,2,f +3603,3665,15,3,f +3603,3666,320,1,f +3603,3710,15,1,f +3603,3794a,15,4,f +3603,3795,15,1,f +3603,4081b,71,4,f +3603,4081b,320,2,f +3603,41769,15,2,f +3603,41770,15,2,f +3603,44676,15,4,f +3604,10247,71,4,f +3604,11203,72,6,f +3604,11211,71,3,f +3604,11214,72,3,f +3604,11458,72,4,f +3604,11477,72,2,f +3604,11477,272,6,f +3604,13548,71,2,f +3604,15068,72,8,f +3604,15303,33,3,f +3604,15400,72,2,f +3604,15461,0,3,f +3604,15573,72,8,f +3604,18651,0,1,f +3604,18671,72,2,f +3604,21709,28,1,f +3604,23186,308,1,f +3604,23930,71,2,f +3604,2412b,272,10,f +3604,2419,72,2,f +3604,2420,71,4,f +3604,24201,71,8,f +3604,2431,71,2,f +3604,2431,272,2,f +3604,2445,71,2,f +3604,2450,72,2,f +3604,2450,28,4,f +3604,2456,0,1,f +3604,2462,71,4,f +3604,2540,0,2,f +3604,2654,72,14,f +3604,2730,71,2,f +3604,2780,0,20,f +3604,2780,0,2,t +3604,2877,72,4,f +3604,3004,72,2,f +3604,3004,19,2,f +3604,3005,72,6,f +3604,3010,0,2,f +3604,30162,72,1,f +3604,30165,72,4,f +3604,30170,72,1,f +3604,30170,72,1,t +3604,30171,15,1,f +3604,30194,72,1,f +3604,3020,71,9,f +3604,3021,72,12,f +3604,3022,1,4,f +3604,3022,71,1,f +3604,3023,71,9,f +3604,3023,41,20,f +3604,3023,72,5,f +3604,3023,28,2,f +3604,3023,19,4,f +3604,3024,72,20,f +3604,3024,72,4,t +3604,3031,0,1,f +3604,3032,71,1,f +3604,3034,71,4,f +3604,30355,71,1,f +3604,30356,71,1,f +3604,30364,0,2,f +3604,30375,308,1,f +3604,30376,484,1,f +3604,30377,484,1,f +3604,30377,484,1,t +3604,30378,484,1,f +3604,30385,143,1,f +3604,30387,71,2,f +3604,3040b,71,2,f +3604,30414,71,2,f +3604,30503,72,4,f +3604,3068b,72,6,f +3604,3069b,272,6,f +3604,3069b,28,2,f +3604,3070b,19,1,t +3604,3070b,71,1,t +3604,3070b,19,1,f +3604,3070b,71,4,f +3604,32000,72,4,f +3604,32064a,72,2,f +3604,32316,71,2,f +3604,32524,72,4,f +3604,32529,0,4,f +3604,32530,72,2,f +3604,32532,71,1,f +3604,32555,0,4,f +3604,32556,19,6,f +3604,3460,72,7,f +3604,3622,72,2,f +3604,3623,71,6,f +3604,3623,14,2,f +3604,3626cpr1942,92,1,f +3604,3626cpr1943,92,1,f +3604,3626cpr1944,92,1,f +3604,3660,72,2,f +3604,3665,72,2,f +3604,3666,71,14,f +3604,3700,0,6,f +3604,3701,72,7,f +3604,3710,72,3,f +3604,3710,4,2,f +3604,3747b,71,3,f +3604,3795,72,3,f +3604,3795,0,1,f +3604,3823,47,1,f +3604,3829c01,71,1,f +3604,3894,71,7,f +3604,3899,4,1,f +3604,4006,0,1,f +3604,41769,72,1,f +3604,41770,72,1,f +3604,41879a,288,1,f +3604,4216,15,2,f +3604,4274,71,3,t +3604,4274,71,17,f +3604,43722,71,1,f +3604,43723,71,1,f +3604,44302a,72,2,f +3604,44568,71,5,f +3604,44570,72,5,f +3604,4740,41,2,f +3604,47973,72,1,f +3604,4865a,72,1,f +3604,48933,72,2,f +3604,48933,71,1,f +3604,50304,72,1,f +3604,50305,72,1,f +3604,50950,71,4,f +3604,54200,72,1,t +3604,54200,72,2,f +3604,54383,71,1,f +3604,54384,71,1,f +3604,59230,19,1,f +3604,59230,19,1,t +3604,59900,71,3,f +3604,60208,72,3,f +3604,60219,72,2,f +3604,60479,71,4,f +3604,6141,72,1,t +3604,6141,72,8,f +3604,6192,71,2,f +3604,62360,41,1,f +3604,63965,72,4,f +3604,6541,72,6,f +3604,6558,1,7,f +3604,73983,72,2,f +3604,75147stk01,9999,1,f +3604,85984,0,1,f +3604,85984,72,4,f +3604,85984pr0006,72,1,f +3604,87087,71,2,f +3604,87620,72,2,f +3604,87990,308,1,f +3604,91988,72,2,f +3604,92280,71,2,f +3604,93273,272,7,f +3604,96874,25,1,t +3604,970c00pr1072,379,2,f +3604,973pr3519c01,379,1,f +3604,973pr3520c01,326,1,f +3604,973pr9987c01,14,1,f +3604,98138,41,3,t +3604,98138,41,17,f +3604,98385,70,1,f +3604,99207,71,8,f +3604,99780,72,8,f +3604,99781,71,2,f +3605,777p02,15,1,f +3605,777p03,15,1,f +3605,777p04,15,1,f +3605,777p05,15,1,f +3605,777p07,15,1,f +3605,777p11,15,1,f +3605,777p15,15,1,f +3605,777px7,15,1,f +3606,2336p36,15,1,f +3606,2342,15,1,f +3606,298c02,0,3,f +3606,3022,15,3,f +3606,3022,0,1,f +3606,3023,15,2,f +3606,3024,36,2,f +3606,3460,15,1,f +3606,3626apr0001,14,1,f +3606,3666,0,2,f +3606,3795,15,1,f +3606,3838,1,1,f +3606,3839b,0,1,f +3606,3842b,1,1,f +3606,3935,15,1,f +3606,3936,15,1,f +3606,3942c,15,1,f +3606,4360,0,1,f +3606,4589,36,2,f +3606,4595,0,2,f +3606,4598,15,1,f +3606,4873,0,2,f +3606,970c00,1,1,f +3606,973pr1594c01,1,1,f +3607,3001,15,2,f +3607,3001,4,4,f +3607,3001,14,8,f +3607,3001,1,5,f +3607,3002,4,3,f +3607,3002,1,4,f +3607,3002,14,4,f +3607,3003,1,2,f +3607,3003,15,2,f +3607,3003,14,2,f +3607,3003,4,4,f +3607,3004,14,8,f +3607,3004,15,2,f +3607,3004,4,6,f +3607,3004,47,3,f +3607,3004,1,4,f +3607,3005,14,2,f +3607,3005,4,6,f +3607,3005,1,4,f +3607,3008,4,2,f +3607,3009,4,2,f +3607,3010,4,4,f +3607,3010,1,4,f +3607,3010,14,4,f +3607,3020,4,2,f +3607,3021,4,2,f +3607,3022,4,2,f +3607,3034,4,2,f +3607,3039,47,2,f +3607,3137c01,0,2,f +3607,3297,4,2,f +3607,3298,4,4,f +3607,3299,4,1,f +3607,3300,4,2,f +3607,3641,0,4,f +3607,3741,2,2,f +3607,3742,15,1,t +3607,3742,4,1,t +3607,3742,15,3,f +3607,3742,4,3,f +3607,3853,15,3,f +3607,3854,15,6,f +3607,3856,2,6,f +3607,3861b,15,1,f +3607,3867,2,1,f +3607,case7,1,1,f +3608,15207,4,3,f +3608,15207,71,2,f +3608,15210pr01,0,1,f +3608,2412b,14,4,f +3608,2412b,0,2,f +3608,2412b,4,12,f +3608,2412b,71,2,f +3608,2431,4,2,f +3608,2432,71,2,f +3608,2436,15,2,f +3608,2441,0,1,f +3608,2445,4,1,f +3608,2453a,72,2,f +3608,2454a,4,8,f +3608,2460,4,2,f +3608,2462,84,4,f +3608,2465,0,2,f +3608,2508,0,1,f +3608,2744,4,2,f +3608,2780,0,11,f +3608,2780,0,2,t +3608,30000,72,2,f +3608,3001,71,3,f +3608,30027b,0,10,f +3608,30027b,15,4,f +3608,30028,0,14,f +3608,3003,0,1,f +3608,3004,4,4,f +3608,3004,84,2,f +3608,3009,4,2,f +3608,30145,71,2,f +3608,3022,1,5,f +3608,3022,0,2,f +3608,30225,72,1,f +3608,3023,2,2,f +3608,3023,46,4,f +3608,30237b,71,2,f +3608,30249,4,2,f +3608,30283,14,1,f +3608,30292,41,6,f +3608,3032,72,2,f +3608,3034,71,1,f +3608,30350b,0,5,f +3608,3039,71,2,f +3608,3040b,4,2,f +3608,30526,1,1,f +3608,30592,72,2,f +3608,3062b,0,4,f +3608,3062b,14,3,f +3608,30663,71,1,f +3608,3068b,14,1,f +3608,3069b,4,1,f +3608,3069b,15,3,f +3608,3069bpr0030,72,1,f +3608,3176,71,3,f +3608,32001,0,1,f +3608,32013,14,1,f +3608,32018,72,1,f +3608,32034,71,1,f +3608,32062,0,10,f +3608,32064b,72,5,f +3608,32278,0,2,f +3608,32316,4,1,f +3608,3245c,4,5,f +3608,32524,14,1,f +3608,32530,0,4,f +3608,3298,72,2,f +3608,3460,1,1,f +3608,3460,4,8,f +3608,3622,4,4,f +3608,3623,4,3,f +3608,3626bpr0282,14,1,f +3608,3626bpr0647,14,1,f +3608,3626bpr0649,14,1,f +3608,3626bpr0743,14,1,f +3608,3660,4,2,f +3608,3666,71,2,f +3608,3678b,71,5,f +3608,3679,71,1,f +3608,3680,15,1,f +3608,3700,1,2,f +3608,3700,4,2,f +3608,3701,72,6,f +3608,3701,14,4,f +3608,3705,0,4,f +3608,3709,71,9,f +3608,3710,1,1,f +3608,3713,71,2,f +3608,3713,71,1,t +3608,3829c01,1,1,f +3608,3894,4,4,f +3608,3941,0,2,f +3608,3942c,15,2,f +3608,3943b,0,3,f +3608,3957b,15,3,f +3608,3958,71,4,f +3608,3960,15,1,f +3608,4032a,15,3,f +3608,4032a,14,6,f +3608,4079,1,1,f +3608,4079,70,1,f +3608,4150,71,2,f +3608,41532,0,2,f +3608,4162,71,1,f +3608,4162,4,6,f +3608,42610,71,4,f +3608,4360,0,1,f +3608,43898,72,1,f +3608,44294,71,2,f +3608,44375a,15,1,f +3608,44728,15,1,f +3608,44728,71,2,f +3608,4519,71,1,f +3608,4589,0,4,f +3608,4589,182,1,f +3608,4599b,14,3,f +3608,4600,0,1,f +3608,4623,71,1,f +3608,4623,0,1,f +3608,47457,1,1,f +3608,48336,71,4,f +3608,4870,71,4,f +3608,50450,0,3,f +3608,50950,72,4,f +3608,52501,72,2,f +3608,53989,0,1,f +3608,54200,46,2,t +3608,54200,46,12,f +3608,55295,0,1,f +3608,55296,0,1,f +3608,55297,0,1,f +3608,55298,0,1,f +3608,55299,0,1,f +3608,55300,0,1,f +3608,57539,179,1,f +3608,59443,14,5,f +3608,6019,0,2,f +3608,60212,15,1,f +3608,60470a,0,3,f +3608,60470a,4,2,f +3608,60471,0,2,f +3608,60474,14,1,f +3608,6081,72,2,f +3608,60849,14,2,f +3608,6087,71,5,f +3608,6091,4,4,f +3608,6106,0,6,f +3608,61072,0,1,f +3608,6111,4,2,f +3608,6111,72,4,f +3608,6140,71,1,f +3608,6141,47,1,t +3608,6141,36,1,f +3608,6141,4,5,f +3608,6141,182,1,t +3608,6141,182,4,f +3608,6141,47,1,f +3608,6141,36,1,t +3608,6141,4,1,t +3608,6190,4,1,f +3608,6233,71,1,f +3608,62462,0,2,f +3608,6259,14,2,f +3608,6259,15,4,f +3608,63965,4,1,f +3608,64448,4,10,f +3608,6536,14,2,f +3608,6587,28,4,f +3608,6636,0,2,f +3608,6636,14,6,f +3608,75347,15,2,f +3608,86035,1,2,f +3608,86035,25,1,f +3608,87079,0,1,f +3608,87079,71,2,f +3608,87079,14,2,f +3608,87081,4,1,f +3608,87580,71,4,f +3608,87754,15,1,f +3608,87926,15,4,f +3608,89159,82,1,f +3608,92081,308,1,f +3608,92280,71,2,f +3608,92438,71,1,f +3608,92591,15,2,f +3608,92947,4,5,f +3608,92947,71,3,f +3608,970c00,15,2,f +3608,970c00,1,1,f +3608,970c00,71,1,f +3608,973pr1192c01,0,1,f +3608,973pr1470c01,1,1,f +3608,973pr1695c01,15,2,f +3609,3626cpr1149,78,1,f +3609,57899,0,1,f +3609,61189pr0017,15,1,f +3609,970x026,15,1,f +3612,3001,0,2,f +3612,3003,0,4,f +3612,3004,14,3,f +3612,3009,14,2,f +3612,3009,0,4,f +3612,3010,14,5,f +3612,3020,7,1,f +3612,3020,0,2,f +3612,3023,4,4,f +3612,3030,0,1,f +3612,3035,14,1,f +3612,3040b,14,4,f +3612,3127b,4,1,f +3612,3403c01,0,1,f +3612,3460,14,2,f +3612,3581,14,4,f +3612,3582,0,4,f +3612,3622,14,2,f +3612,3623,0,4,f +3612,3626apr0001,14,2,f +3612,3660,0,6,f +3612,3660,14,2,f +3612,3700,14,2,f +3612,3704,0,1,f +3612,3705,0,2,f +3612,3709,14,1,f +3612,3710,14,3,f +3612,3710,0,2,f +3612,3713,7,5,f +3612,3795,0,4,f +3612,3833,4,2,f +3612,4006,0,1,f +3612,4022,0,2,f +3612,4023,0,2,f +3612,4079,4,1,f +3612,4083,0,1,f +3612,4092,0,2,f +3612,4093b,0,1,f +3612,4168,7,2,f +3612,4175,7,4,f +3612,4180c01,0,4,f +3612,73037,14,2,f +3612,73092,0,2,f +3612,970c00,1,2,f +3612,973p26c01,1,2,f +3612,rb00164,0,2,f +3614,2460,14,1,f +3614,3020,14,1,f +3614,3021,72,1,f +3614,3022,0,2,f +3614,3023,14,2,f +3614,3023,47,1,f +3614,30602,40,1,f +3614,3068b,14,1,f +3614,3475b,72,2,f +3614,3710,14,2,f +3614,3747b,14,1,f +3614,3839b,71,1,f +3614,4070,14,2,f +3614,4081b,0,2,f +3614,41862,14,1,f +3614,4286,14,2,f +3614,43722,14,1,f +3614,43723,14,1,f +3614,44302a,14,2,f +3614,44567a,14,2,f +3614,44661,14,1,f +3614,4617b,0,1,f +3614,47674,47,1,f +3614,47675,14,1,f +3614,47676,14,1,f +3614,6141,57,1,t +3614,6141,57,2,f +3615,10247,71,4,f +3615,10247,0,4,f +3615,11610,19,2,f +3615,15573,2,2,f +3615,15573,0,6,f +3615,15712,15,48,f +3615,15712,0,2,f +3615,20877,484,2,f +3615,2412b,0,2,f +3615,2420,4,24,f +3615,2420,1,24,f +3615,2445,1,1,f +3615,2445,4,1,f +3615,2446,15,4,f +3615,2447,40,2,f +3615,3004,4,4,f +3615,3004,1,4,f +3615,3008,1,4,f +3615,3008,4,4,f +3615,30089,0,2,f +3615,30090,41,2,f +3615,3010,4,6,f +3615,3010,1,6,f +3615,3020,1,4,f +3615,3020,4,4,f +3615,3022,4,2,f +3615,3022,1,2,f +3615,30222,42,4,f +3615,3023,72,8,f +3615,3023,15,2,f +3615,3023,2,2,f +3615,3023,47,4,f +3615,3023,0,4,f +3615,3023,4,2,f +3615,3024,15,2,f +3615,3024,70,2,f +3615,3031,1,4,f +3615,3031,4,4,f +3615,3034,4,8,f +3615,3034,1,8,f +3615,3069b,15,4,f +3615,3069b,4,14,f +3615,3069b,1,14,f +3615,3070b,15,8,f +3615,32013,4,8,f +3615,32013,1,8,f +3615,32028,72,2,f +3615,32054,71,4,f +3615,32054,0,4,f +3615,33078,4,4,f +3615,3626bpr0649,14,2,f +3615,3626cpr0893,14,4,f +3615,3626cpr1091,14,2,f +3615,3626cpr1537,14,2,f +3615,3626cpr1663,14,2,f +3615,3626cpr1666,14,2,f +3615,3626cpr1761,14,2,f +3615,3660,72,2,f +3615,3673,71,4,f +3615,3708,0,4,f +3615,3710,0,2,f +3615,3834,320,2,f +3615,3899,4,2,f +3615,3900,15,2,f +3615,4006,0,2,f +3615,4081b,72,4,f +3615,41334,72,2,f +3615,48336,0,2,f +3615,4871,72,8,f +3615,49668,191,6,f +3615,54200,0,2,f +3615,59900,14,2,f +3615,59900,2,6,f +3615,60485,71,4,f +3615,6141,0,6,f +3615,6254,15,4,f +3615,64648,179,2,f +3615,6636,4,8,f +3615,6636,1,8,f +3615,85861,15,4,f +3615,85974,70,2,f +3615,87087,0,4,f +3615,87580,15,6,f +3615,87990,308,2,f +3615,91405,72,4,f +3615,92474,41,22,f +3615,92474,47,2,f +3615,92585,4,2,f +3615,93273,4,12,f +3615,93273,1,12,f +3615,970c00,1,4,f +3615,970c00,0,6,f +3615,970c00,4,6,f +3615,973pr0080c01,4,2,f +3615,973pr0656c01,15,2,f +3615,973pr1197c01,15,2,f +3615,973pr1241c01,15,2,f +3615,973pr1580c01,15,2,f +3615,973pr1783c01,4,2,f +3615,973pr2188c01,0,2,f +3615,973pr2557c01,73,2,f +3615,98138,33,2,f +3615,98138,15,8,f +3615,99780,15,24,f +3615,99930,308,2,f +3616,14226c11,0,1,f +3616,2446,0,1,f +3616,2447,41,1,f +3616,2447,41,1,t +3616,2454a,15,2,f +3616,2456,15,2,f +3616,2488,0,1,f +3616,3002,7,1,f +3616,30027a,14,6,f +3616,30028,0,6,f +3616,30029,0,1,f +3616,3004,14,1,f +3616,3004px1,15,1,f +3616,3009pb011,14,2,f +3616,3010,14,1,f +3616,3027,2,1,f +3616,3039,14,1,f +3616,3298p72,14,1,f +3616,3626bp05,14,1,f +3616,3626bpb0110,14,1,f +3616,3710,2,2,f +3616,3710,4,2,f +3616,3829c01,4,1,f +3616,3839b,0,1,f +3616,3941,14,2,f +3616,3957a,15,1,f +3616,4079,4,1,f +3616,4282,4,1,f +3616,4319,0,1,f +3616,4476b,15,2,f +3616,4485,1,1,f +3616,4495b,14,1,f +3616,4599a,14,1,t +3616,4599a,14,1,f +3616,4623,1,2,f +3616,4629c01,1,1,f +3616,55295,8,1,f +3616,55296,8,1,f +3616,55297,8,1,f +3616,55298,8,1,f +3616,55299,8,1,f +3616,55300,8,1,f +3616,6019,0,2,f +3616,6140,4,2,f +3616,6141,57,1,t +3616,6141,57,1,f +3616,6157,7,2,f +3616,63965,15,1,f +3616,890p01,15,1,f +3616,970c00,1,1,f +3616,970c00,15,1,f +3616,973pb0024c01,15,1,f +3616,973pr1156c01,1,1,f +3617,32062,4,2,f +3617,48729b,0,1,f +3617,48729b,0,1,t +3617,53551,148,3,f +3617,54821,4,1,f +3617,64262,57,1,f +3617,90609,0,3,f +3617,90611,0,1,f +3617,90617,72,4,f +3617,90626,0,1,f +3617,90639,148,2,f +3617,90640,14,3,f +3617,90641,148,1,f +3617,90652,148,1,f +3617,90661,148,2,f +3617,93571,0,1,f +3617,93575,14,1,f +3617,98562,148,2,f +3617,98563,148,1,f +3617,98564,148,1,f +3617,98569pr0002,14,1,f +3617,98570pat01,15,1,f +3617,98571,148,1,f +3617,98573,14,1,f +3618,11477,14,8,f +3618,14704,71,2,f +3618,15456,71,2,f +3618,3003,14,1,f +3618,3023,14,3,f +3618,3039,191,3,f +3618,3040b,14,2,f +3618,32062,4,1,f +3618,3660,14,2,f +3618,3710,14,1,f +3618,4032a,14,2,f +3618,44728,14,1,f +3618,48336,14,2,f +3618,49668,15,2,f +3618,51739,14,2,f +3618,54200,191,10,f +3618,54200,191,1,t +3618,60478,72,2,f +3618,6064,191,1,f +3618,61252,14,6,f +3618,6141,41,1,t +3618,6141,41,8,f +3618,73983,14,2,f +3618,87087,14,2,f +3618,98138pr0008,15,1,t +3618,98138pr0008,15,2,f +3618,99206,71,1,f +3618,99207,71,2,f +3619,23186,19,1,f +3619,26562,15,1,f +3619,3626cpr1925,78,1,f +3619,88646pr0002,15,1,f +3619,970c00pr1051,0,1,f +3619,973pr3384c01,15,1,f +3620,2357,15,4,f +3620,2362a,40,2,f +3620,2362b,71,2,f +3620,2376,0,2,f +3620,2377,15,6,f +3620,2412b,1,2,f +3620,2412b,71,16,f +3620,2412b,14,5,f +3620,2419,4,2,f +3620,2431,1,2,f +3620,2431,71,7,f +3620,2431,15,1,f +3620,2432,14,10,f +3620,2432,72,4,f +3620,2432,70,11,f +3620,2436,71,1,f +3620,2439,72,1,f +3620,2445,4,3,f +3620,2449,4,2,f +3620,2453a,72,8,f +3620,2454a,4,4,f +3620,2460,15,1,f +3620,2465,72,2,f +3620,2495,4,1,f +3620,2496,0,1,f +3620,2540,72,6,f +3620,2555,4,1,f +3620,2564,0,1,f +3620,2569,72,1,f +3620,2584,0,1,f +3620,2585,71,2,f +3620,2614,0,1,f +3620,2634c02,15,1,f +3620,2635a,4,2,f +3620,2638,71,1,f +3620,2654,72,3,f +3620,2736,71,1,f +3620,2744,4,2,f +3620,2780,0,1,t +3620,2780,0,3,f +3620,2825,71,5,f +3620,2877,72,6,f +3620,298c02,15,1,t +3620,298c02,15,3,f +3620,298c02,14,1,t +3620,298c02,14,2,f +3620,30000,71,1,f +3620,3001,71,5,f +3620,3001,1,1,f +3620,3001,72,2,f +3620,3002,15,2,f +3620,3002,4,1,f +3620,3003,71,12,f +3620,3003,70,2,f +3620,3004,15,2,f +3620,3004,71,2,f +3620,30042,72,1,f +3620,3005,4,2,f +3620,3005,0,2,f +3620,3007,71,1,f +3620,3008,71,3,f +3620,3008,15,2,f +3620,3009,1,1,f +3620,3009,4,1,f +3620,3010,4,2,f +3620,30150,70,1,f +3620,30151a,4,1,f +3620,3020,72,4,f +3620,3022,72,2,f +3620,3022,0,9,f +3620,3023,14,23,f +3620,3023,46,3,f +3620,3023,0,1,f +3620,30256,15,1,f +3620,30259,14,1,f +3620,3031,0,2,f +3620,3032,71,4,f +3620,3033,72,4,f +3620,3034,72,2,f +3620,3034,70,2,f +3620,3034,0,10,f +3620,30340,15,1,f +3620,3035,72,4,f +3620,3035,0,2,f +3620,3035,71,1,f +3620,3036,15,1,f +3620,30363,72,8,f +3620,30383,0,1,f +3620,30395,72,1,f +3620,3039pr0002,15,1,f +3620,30401,72,2,f +3620,30414,15,5,f +3620,30540,71,2,f +3620,30553,72,1,f +3620,30586,71,2,f +3620,3062b,34,1,f +3620,3062b,36,1,f +3620,3062b,71,2,f +3620,3062b,0,1,f +3620,3062b,2,8,f +3620,3063b,4,2,f +3620,3063b,0,2,f +3620,30663,0,1,f +3620,3068b,0,2,f +3620,3068bpr0136,72,1,f +3620,3069bpr0030,72,1,f +3620,3070b,46,2,f +3620,3070b,46,1,t +3620,32002,72,1,t +3620,32002,72,4,f +3620,32013,72,1,f +3620,32028,0,3,f +3620,32062,0,1,f +3620,32123b,14,1,t +3620,32123b,14,3,f +3620,32293,0,1,f +3620,33176,15,1,f +3620,3403,0,1,f +3620,3404,0,1,f +3620,3456,72,1,f +3620,3460,0,2,f +3620,3623,71,4,f +3620,3624,15,1,f +3620,3626bpr0126,14,1,f +3620,3626bpr0270,14,1,f +3620,3626bpr0282,14,1,f +3620,3626bpr0387,14,1,f +3620,3626bpr0389,14,1,f +3620,3647,71,2,f +3620,3647,71,1,t +3620,3648b,71,1,f +3620,3660,15,2,f +3620,3660,4,1,f +3620,3666,0,9,f +3620,3666,15,1,f +3620,3678b,0,2,f +3620,3684,15,2,f +3620,3700,1,4,f +3620,3701,71,2,f +3620,3705,0,1,f +3620,3710,0,1,f +3620,3710,1,2,f +3620,3710,72,5,f +3620,3713,71,2,f +3620,3713,71,1,t +3620,3737,0,3,f +3620,3747b,71,5,f +3620,3794a,1,2,f +3620,3795,4,4,f +3620,3795,1,2,f +3620,3829c01,14,2,f +3620,3832,72,2,f +3620,3833,4,2,f +3620,3836,70,1,f +3620,3837,72,1,f +3620,3894,4,2,f +3620,3937,72,1,f +3620,3941,15,7,f +3620,3941,71,2,f +3620,3957a,0,1,f +3620,3957a,71,2,f +3620,3962b,0,1,f +3620,4006,0,1,f +3620,4032a,15,6,f +3620,4032b,2,6,f +3620,4032b,4,7,f +3620,4083,14,6,f +3620,41334,0,1,f +3620,41334,72,1,f +3620,4150,71,2,f +3620,4162,15,2,f +3620,4162,71,2,f +3620,4175,72,8,f +3620,4176,40,1,f +3620,41862,73,2,f +3620,4286,4,2,f +3620,4289,15,1,f +3620,43093,1,6,f +3620,43722,1,1,f +3620,43723,1,1,f +3620,4445,0,2,f +3620,4460a,4,2,f +3620,4488,0,4,f +3620,4522,0,1,f +3620,4588,72,4,f +3620,4589,15,1,f +3620,4589,182,2,f +3620,4599a,71,2,f +3620,4697b,71,1,t +3620,4697b,71,2,f +3620,4716,0,1,f +3620,4733,71,1,f +3620,4733,1,3,f +3620,4740,72,1,f +3620,47899c01,71,1,f +3620,48092,71,4,f +3620,48288,72,3,f +3620,48336,71,3,f +3620,48336,0,2,f +3620,4854,14,1,f +3620,4855,14,1,f +3620,4862,40,6,f +3620,4865a,1,2,f +3620,4865a,15,2,f +3620,4872,40,1,f +3620,50745,0,2,f +3620,50943,71,1,f +3620,52031,1,1,f +3620,52501,1,1,f +3620,54200,47,4,f +3620,54200,0,2,f +3620,54200,1,8,f +3620,54200,46,6,f +3620,55013,72,1,f +3620,56823c200,0,1,f +3620,57789c01,1,1,f +3620,59349,14,4,f +3620,59349,2,4,f +3620,59349,4,2,f +3620,59426,72,2,f +3620,59807,71,4,f +3620,6014b,71,4,f +3620,6015,0,4,f +3620,6019,72,12,f +3620,6091,15,2,f +3620,6091,72,2,f +3620,6112,15,1,f +3620,6134,0,1,f +3620,6141,47,2,t +3620,6141,4,1,t +3620,6141,4,1,f +3620,6141,47,4,f +3620,6141,0,9,f +3620,6141,36,5,f +3620,6141,0,3,t +3620,6141,34,2,t +3620,6141,36,3,t +3620,6141,34,3,f +3620,6232,72,4,f +3620,6538b,4,3,f +3620,6541,4,1,f +3620,6587,72,2,f +3620,6588,47,1,f +3620,6628,0,1,f +3620,6636,15,3,f +3620,6636,1,1,f +3620,6636,71,8,f +3620,75535,0,1,f +3620,76385,0,2,f +3620,772,15,4,f +3620,7994stk01,9999,1,t +3620,970c00,1,2,f +3620,970c00,2,1,f +3620,970c00,25,1,f +3620,970c00,0,1,f +3620,973pr1182c01,25,1,f +3620,973pr1201c01,15,1,f +3620,973pr1244c01,73,1,f +3620,973pr1271c01,15,1,f +3620,973pr1320c01,15,1,f +3622,2780,0,1,f +3622,2905,4,2,f +3622,32002,8,2,f +3622,32123b,7,6,f +3622,32310pb05,4,1,f +3622,32316,0,2,f +3622,3705,0,1,f +3622,3706,0,2,f +3622,3749,7,4,f +3622,4288,0,4,f +3622,6536,0,2,f +3622,6536,4,1,f +3622,6553,0,2,f +3622,6628,0,2,f +3622,78c02,179,1,f +3622,rb00167,0,2,f +3623,3852b,4,1,f +3623,6175,15,1,f +3623,6176,5,1,f +3623,6251,0,1,f +3623,6256,14,1,f +3624,5306bc015,0,1,f +3626,42446,71,1,f +3626,88646,0,1,f +3626,970c86pr0288,71,1,f +3626,973pr1955c01,71,1,f +3626,98375,179,1,f +3626,98384pr0001,71,1,f +3627,30088,0,1,f +3627,3020,72,2,f +3627,3023,71,1,f +3627,3023,25,2,f +3627,30552,0,6,f +3627,30553,0,6,f +3627,30554b,0,6,f +3627,32062,4,2,f +3627,32064b,0,4,f +3627,3626bpr0642,14,1,f +3627,4085c,71,2,f +3627,4286,0,2,f +3627,43710,0,1,f +3627,43711,0,1,f +3627,47757,0,1,f +3627,47759,0,1,f +3627,49668,135,2,f +3627,53451,25,1,t +3627,53451,25,6,f +3627,57585,71,2,f +3627,59275,27,2,f +3627,60478,72,2,f +3627,6141,25,1,t +3627,6141,25,2,f +3627,73983,0,2,f +3627,87747,0,6,f +3627,87748pr0003,182,1,f +3627,87754,72,1,f +3627,89159,35,1,f +3627,970c00pr0145,72,1,f +3627,973pr1557c01,72,1,f +3628,14226c21,0,1,f +3628,2340,0,2,f +3628,2357,4,2,f +3628,2409,34,2,f +3628,2412b,0,13,f +3628,2412b,14,7,f +3628,2418b,34,1,f +3628,2418bpb01,34,1,f +3628,2420,14,1,f +3628,2431,14,8,f +3628,2436,0,1,f +3628,2444,1,2,f +3628,2449,0,7,f +3628,2454a,0,2,f +3628,2454a,14,2,f +3628,2456,7,1,f +3628,2456,0,2,f +3628,2458,7,1,f +3628,2460,14,1,f +3628,2463,14,2,f +3628,2465,7,4,f +3628,2465,0,7,f +3628,2516,0,2,f +3628,2540,0,2,f +3628,2540,14,3,f +3628,2547,8,1,f +3628,2548,8,1,f +3628,2555,1,2,f +3628,2571,34,2,f +3628,2582pb09,34,2,f +3628,2605c01,0,2,f +3628,2921,0,2,f +3628,298c01,0,3,f +3628,298c02,4,3,f +3628,3001,7,3,f +3628,3001,14,3,f +3628,3002,1,2,f +3628,3003,14,4,f +3628,3003,7,5,f +3628,3004,14,5,f +3628,3004,1,1,f +3628,30041,0,1,f +3628,30042,0,1,f +3628,30055,0,2,f +3628,30062,0,1,f +3628,3008,14,1,f +3628,30084,0,1,f +3628,3010,0,5,f +3628,30195pb01,8,1,f +3628,3020,0,4,f +3628,3020,7,1,f +3628,30200,0,1,f +3628,30202,8,2,f +3628,3021,7,3,f +3628,3022,14,3,f +3628,3023,4,3,f +3628,3031,14,1,f +3628,3032,7,1,f +3628,3034,7,1,f +3628,3034,14,2,f +3628,3035,7,3,f +3628,30385,383,4,f +3628,3039pb001,14,2,f +3628,3048c,7,3,f +3628,3062b,34,13,f +3628,3062b,4,2,f +3628,3068b,0,6,f +3628,3068b,4,2,f +3628,3068bpx14,0,1,f +3628,3069bp21,0,5,f +3628,3069bpa2,8,2,f +3628,3069bpap,14,5,f +3628,3176,1,1,f +3628,32062,0,7,f +3628,3298,0,1,f +3628,3298pb001,14,7,f +3628,3460,0,2,f +3628,3622,1,2,f +3628,3626bpb0092,14,1,f +3628,3626bpb0093,14,1,f +3628,3626bpb0094,14,1,f +3628,3626bpb0108,14,1,f +3628,3626bpx46,14,1,f +3628,3660,0,1,f +3628,3666,7,8,f +3628,3679,7,2,f +3628,3680,1,2,f +3628,3684,14,5,f +3628,3700,7,4,f +3628,3710,0,1,f +3628,3710,1,4,f +3628,3747a,1,1,f +3628,3749,7,8,f +3628,3794a,1,9,f +3628,3795,0,6,f +3628,3832,7,1,f +3628,3839b,0,1,f +3628,3937,1,1,f +3628,3941,14,6,f +3628,3941,0,3,f +3628,4032a,0,10,f +3628,4070,57,4,f +3628,4081b,4,2,f +3628,4085c,14,5,f +3628,4151a,0,2,f +3628,4162,0,8,f +3628,4162,14,3,f +3628,4215b,14,2,f +3628,4275b,1,2,f +3628,4282,14,1,f +3628,4286,1,2,f +3628,4345b,34,1,f +3628,4346,34,1,f +3628,4460a,7,9,f +3628,4531,7,2,f +3628,4589,57,1,f +3628,4590,0,3,f +3628,4590,14,2,f +3628,4623,4,1,f +3628,4623,14,4,f +3628,4625,0,2,f +3628,5102c19,7,1,f +3628,57467,383,2,f +3628,59275,7,4,f +3628,59275,0,6,f +3628,6020,8,2,f +3628,6024px3,9,1,f +3628,6032,14,11,f +3628,6037,14,2,f +3628,6039,14,7,f +3628,6040,14,2,f +3628,6041,42,1,f +3628,6041,34,5,f +3628,6042,14,4,f +3628,6043,14,4,f +3628,6046,0,1,f +3628,6061,14,1,f +3628,6064,4,3,f +3628,6082,7,2,f +3628,6086,0,1,f +3628,6090,42,3,f +3628,6106,7,4,f +3628,6108,0,2,f +3628,6112,1,1,f +3628,6140,14,4,f +3628,6141,34,1,t +3628,6141,57,12,f +3628,6141,34,19,f +3628,6219,7,1,f +3628,6232,1,3,f +3628,6587,8,1,f +3628,71128,383,4,f +3628,71594,34,2,f +3628,71966,61,3,f +3628,970x026,4,1,f +3628,970x026,6,1,f +3628,970x026,1,3,f +3628,973pb0046c01,8,1,f +3628,973pb0048c01,8,1,f +3628,973pb0116c01,1,3,f +3629,20488pr0001,14,1,f +3629,3068bpr0252,29,1,f +3629,3899,5,1,f +3629,88646,0,1,f +3629,970x037,14,1,f +3629,973pr2975c01,10,1,f +3629,99257,3,1,f +3630,2847c02,0,1,f +3630,32203,14,5,f +3630,32203,4,6,f +3630,32203,0,2,f +3630,32207,8,4,f +3630,32208,4,1,f +3630,32208,0,6,f +3630,32209,15,4,f +3630,32213,14,1,f +3630,32216,4,2,f +3630,32219,0,2,f +3630,32221,8,7,f +3630,32225,14,1,f +3630,32229,4,2,f +3630,32242,0,8,f +3630,32242,4,4,f +3630,32242,14,6,f +3630,32246,4,9,f +3630,32246,14,12,f +3630,32246,0,10,f +3630,32247,0,3,f +3630,33298,7,6,f +3630,33299a,1,2,f +3630,3647,7,1,f +3630,3673,7,6,f +3630,3707,8,5,f +3630,3708,15,3,f +3630,3713,7,5,f +3630,3749,7,2,f +3630,4019,7,2,f +3630,5306b,0,1,f +3630,539,0,3,f +3630,6538b,1,1,f +3630,6558,0,2,f +3630,71427c01,7,1,f +3630,zbb013,22,45,f +3630,zbb014,7,28,f +3630,zbb015,14,2,f +3630,zbb015,4,20,f +3630,zbb015,0,16,f +3630,zbb018,14,11,f +3631,2412b,0,1,f +3631,2420,4,2,f +3631,2431,0,1,f +3631,2436,0,1,f +3631,3010,4,2,f +3631,3020,0,3,f +3631,3021,4,1,f +3631,3023,4,1,f +3631,3023,36,2,f +3631,3024,4,2,f +3631,3031,0,1,f +3631,30374,294,2,f +3631,3068b,0,2,f +3631,3069b,0,2,f +3631,3623,0,2,f +3631,3710,4,1,f +3631,3788,4,1,f +3631,3795,4,2,f +3631,4081b,0,2,f +3631,44674,4,1,f +3631,50944pr0001,0,4,f +3631,50949,0,1,f +3631,50951,0,4,f +3631,54200,0,8,f +3631,6157,0,2,f +3631,6231,0,2,f +3631,8150stk01,9999,1,t +3631,88930,0,1,f +3632,29540,2,2,f +3632,29540,4,4,f +3632,29540,1,2,f +3632,29540,14,4,f +3632,29541,2,3,f +3632,29541,4,4,f +3632,29541,14,4,f +3632,29541,1,3,f +3632,71727,4,4,f +3632,sbb04,4,2,f +3633,2420,7,6,f +3633,2431,0,2,f +3633,2431,7,4,f +3633,2878c01,0,2,f +3633,2920,0,2,f +3633,298c03,7,1,t +3633,298c03,7,2,f +3633,3004,1,8,f +3633,3008,1,2,f +3633,3009,1,4,f +3633,3010,1,2,f +3633,3021,0,4,f +3633,3021,1,2,f +3633,3023,1,4,f +3633,3023,7,5,f +3633,3027,7,1,f +3633,3037,1,16,f +3633,3062b,0,12,f +3633,3062b,14,12,f +3633,3068b,0,3,f +3633,3069b,7,2,f +3633,3069b,0,1,f +3633,3070b,0,1,t +3633,3070b,0,1,f +3633,3186,15,4,f +3633,3187,15,4,f +3633,3297,1,2,f +3633,3633,15,4,f +3633,3660,1,6,f +3633,3665,1,8,f +3633,3666,0,1,f +3633,3666,7,2,f +3633,3676,1,4,f +3633,3710,0,3,f +3633,3795,0,1,f +3633,3957a,7,2,f +3633,4070,7,4,f +3633,4162,15,2,f +3633,4162,7,2,f +3633,4175,7,4,f +3633,4178,0,1,f +3633,4213,0,1,f +3633,4315,0,1,f +3633,4477,7,2,f +3633,4477,1,2,f +3633,4864a,1,4,f +3633,4873,7,2,f +3633,73092,0,2,f +3634,2412b,72,1,f +3634,2412b,14,1,f +3634,2877,2,8,f +3634,3005,2,4,f +3634,3010,2,3,f +3634,3010,14,1,f +3634,3020,14,1,f +3634,3021,0,2,f +3634,3021,14,3,f +3634,3022,71,1,f +3634,3023,2,1,f +3634,3024,36,2,f +3634,3024,47,2,f +3634,3032,2,2,f +3634,3034,0,2,f +3634,3037,2,1,f +3634,3065,40,2,f +3634,3068b,2,1,f +3634,3069b,0,1,f +3634,3069b,71,1,f +3634,3710,71,1,f +3634,3710,2,3,f +3634,3710,14,1,f +3634,3788,14,1,f +3634,3937,71,1,f +3634,4081b,71,2,f +3634,44728,14,2,f +3634,4589,71,1,f +3634,4600,71,2,f +3634,4624,15,4,f +3634,54200,71,4,f +3634,54200,71,1,t +3634,60470a,2,1,f +3634,60478,72,2,f +3634,6134,0,1,f +3634,6141,71,1,t +3634,6141,71,4,f +3634,87414,0,4,f +3637,4170,0,1,f +3637,4171,47,2,f +3637,6141,36,2,f +3637,6141,46,2,f +3638,14210,2,1,f +3638,2343,14,1,f +3638,2376,0,2,f +3638,2454a,71,4,f +3638,2489,71,2,f +3638,2525px6,15,1,f +3638,2546,74,1,f +3638,2550c01,70,1,f +3638,2551,70,1,f +3638,2561,0,1,f +3638,3001,4,1,f +3638,3004,2,4,f +3638,30055,70,3,f +3638,30137,70,2,f +3638,30145,2,2,f +3638,30150,70,1,f +3638,30165,70,1,f +3638,30237a,71,2,f +3638,30387,4,1,f +3638,3062b,0,1,f +3638,30636c04,4,1,f +3638,32324,0,1,f +3638,3298,4,2,f +3638,3849,0,1,f +3638,3941,46,1,f +3638,3958,4,1,f +3638,3958,71,1,f +3638,4032a,4,1,f +3638,41529,71,1,f +3638,4202,71,1,f +3638,43887,72,1,f +3638,43887,15,1,f +3638,4429,34,1,f +3638,45695,70,2,f +3638,4623,4,1,f +3638,47855,4,1,f +3638,4794b,0,2,f +3638,47973,71,1,f +3638,47975,0,1,f +3638,47976,0,1,f +3638,47990,15,1,f +3638,48002,70,1,f +3638,4j014,9999,1,f +3638,4j016,9999,1,f +3638,6057,0,1,f +3638,6112,2,2,f +3639,3705,0,30,f +3639,3706,0,24,f +3639,3707,0,14,f +3643,45474,73,1,f +3643,46277,5,1,f +3643,46296,45,1,f +3643,clikits015,118,1,f +3643,clikits028,45,1,f +3643,clikits035,46,1,f +3643,clikits038,45,4,f +3643,clikits040,230,1,f +3643,clikits061,61,1,f +3643,clikits222,63,1,f +3644,11477,14,2,f +3644,14417,72,2,f +3644,14704,71,2,f +3644,15208,15,2,f +3644,15573,0,1,f +3644,2412b,14,2,f +3644,3020,0,2,f +3644,3022,0,4,f +3644,3023,14,3,f +3644,30293,72,2,f +3644,30367c,71,1,f +3644,30414,14,1,f +3644,3626cpr1001,15,1,f +3644,3679,71,1,f +3644,3680,0,1,f +3644,3700,14,4,f +3644,3710,14,2,f +3644,3749,19,1,f +3644,3833,14,1,f +3644,3941,14,2,f +3644,4032a,0,3,f +3644,48336,0,3,f +3644,50950,0,2,f +3644,54200,72,2,f +3644,54200,72,1,t +3644,59900,72,1,f +3644,6005,14,2,f +3644,60478,0,1,f +3644,6091,14,3,f +3644,61252,0,3,f +3644,6141,36,1,t +3644,6141,36,2,f +3644,74698,0,1,f +3644,92280,0,4,f +3644,98283,71,4,f +3645,2339,7,4,f +3645,2357,0,6,f +3645,2400,6,2,f +3645,2420,7,2,f +3645,2445,7,2,f +3645,2446,0,1,f +3645,2452,0,1,f +3645,2453a,0,2,f +3645,2458,1,2,f +3645,2570,8,2,f +3645,2587,8,1,f +3645,2594,8,1,f +3645,2817,0,3,f +3645,3002,0,3,f +3645,3004,1,2,f +3645,3004,15,1,f +3645,3004,0,19,f +3645,3005,7,6,f +3645,3005,0,8,f +3645,3009,0,7,f +3645,3010,0,1,f +3645,3010,7,2,f +3645,3022,0,1,f +3645,3023,7,3,f +3645,3023,15,1,f +3645,3023,0,1,f +3645,3024,1,2,f +3645,3024,7,4,f +3645,3024,0,4,f +3645,3029,2,3,f +3645,3031,0,1,f +3645,3032,7,2,f +3645,3038,0,2,f +3645,3040b,1,4,f +3645,3040b,7,2,f +3645,3062b,7,3,f +3645,3460,0,1,f +3645,3581,0,2,f +3645,3622,0,4,f +3645,3626apr0001,14,5,f +3645,3660,0,1,f +3645,3660,7,4,f +3645,3665,7,6,f +3645,3665,0,3,f +3645,3666,0,1,f +3645,3673,7,1,f +3645,3700,7,2,f +3645,3700,1,2,f +3645,3706,0,3,f +3645,3710,0,3,f +3645,3710,1,1,f +3645,3713,7,1,f +3645,3795,7,2,f +3645,3830,7,4,f +3645,3831,7,4,f +3645,3832,0,1,f +3645,3844,0,2,f +3645,3846p45,7,1,f +3645,3846p4c,7,2,f +3645,3847,8,2,f +3645,3848,6,1,f +3645,3849,8,3,f +3645,3896,0,2,f +3645,3941,0,4,f +3645,3957a,0,6,f +3645,3959,0,2,f +3645,4070,0,4,f +3645,4071,0,1,f +3645,4085c,7,2,f +3645,4085c,1,2,f +3645,4085c,0,2,f +3645,4444,0,4,f +3645,4460a,0,2,f +3645,4491a,1,1,f +3645,4495a,4,2,f +3645,4495a,1,1,f +3645,4497,6,2,f +3645,4504,0,1,f +3645,4589,46,2,f +3645,4611,8,1,f +3645,4626,0,1,f +3645,75998pr0007,15,1,f +3645,87692,1,1,f +3645,87693,1,1,t +3645,87694,1,1,t +3645,970c00,0,1,f +3645,970x026,4,3,f +3645,970x026,1,1,f +3645,973p40c01,1,1,f +3645,973p40c01,0,1,f +3645,973p41c03,4,3,f +3646,2444,0,2,f +3646,2445,71,1,f +3646,2555,320,1,f +3646,2780,0,2,f +3646,2780,0,1,t +3646,2854,72,1,f +3646,2877,0,3,f +3646,298c02,0,1,t +3646,298c02,0,4,f +3646,3010,71,1,f +3646,3021,72,5,f +3646,3023,320,8,f +3646,30357,72,2,f +3646,30367b,71,3,f +3646,30374,41,1,f +3646,30374,71,2,f +3646,30375,19,2,f +3646,30376,19,2,f +3646,30377,19,2,f +3646,30377,19,1,t +3646,30378,19,2,f +3646,30381,0,1,f +3646,30383,71,1,f +3646,3039,72,1,f +3646,3039pr0015,0,2,f +3646,3040b,71,1,f +3646,30552,72,1,f +3646,30565,72,2,f +3646,32039,71,1,f +3646,32073,71,1,f +3646,32123b,14,2,f +3646,32123b,14,1,t +3646,32123b,71,1,t +3646,32123b,71,4,f +3646,32525,71,2,f +3646,32529,0,4,f +3646,32556,19,2,f +3646,3298,71,1,f +3646,33299a,71,3,f +3646,3623,320,4,f +3646,3626b,0,1,f +3646,3626bpr0633,19,1,f +3646,3666,320,3,f +3646,3705,0,1,f +3646,3706,0,1,f +3646,3710,72,2,f +3646,3713,4,2,f +3646,3713,4,1,t +3646,3738,0,2,f +3646,3749,19,4,f +3646,3794b,320,3,f +3646,3795,72,2,f +3646,3894,71,2,f +3646,4079,0,2,f +3646,41531,71,2,f +3646,4162,320,1,f +3646,41678,72,2,f +3646,41889,148,1,f +3646,41890,148,2,f +3646,42687,148,1,f +3646,4274,1,2,f +3646,4274,1,1,t +3646,4287,71,2,f +3646,43712,71,2,f +3646,44302a,71,2,f +3646,4477,0,2,f +3646,4519,71,3,f +3646,46667,72,1,f +3646,47407,0,1,f +3646,48092,71,4,f +3646,50231,0,1,f +3646,50950,0,4,f +3646,50995pr0007,15,1,f +3646,56902,71,4,f +3646,58247,0,3,f +3646,59230,19,1,t +3646,59230,19,2,f +3646,59443,71,2,f +3646,6003,72,2,f +3646,61184,71,4,f +3646,6141,36,4,f +3646,6141,36,1,t +3646,63864,72,4,f +3646,64567,80,1,f +3646,64644,0,4,f +3646,6536,0,1,f +3646,6541,71,3,f +3646,970c00,0,1,f +3646,970x026,15,1,f +3646,973pr1568c01,15,1,f +3646,973pr1570c01,0,1,f +3647,2340,1,2,f +3647,2342,7,1,f +3647,2343,7,2,f +3647,3002,1,1,f +3647,3003,1,1,f +3647,3004,1,1,f +3647,3005,1,4,f +3647,3007,1,1,f +3647,3010,1,1,f +3647,3021,1,2,f +3647,3022,1,2,f +3647,3023,1,3,f +3647,3024,1,4,f +3647,3034,1,2,f +3647,3035,1,1,f +3647,3037,1,1,f +3647,3039,1,1,f +3647,3040b,1,8,f +3647,3062b,36,2,f +3647,3062b,14,2,f +3647,3068b,1,1,f +3647,3068bp08,1,2,f +3647,3069b,1,5,f +3647,3069bp25,1,1,f +3647,3482,7,4,f +3647,3626apr0001,14,2,f +3647,3633,1,2,f +3647,3634,0,4,f +3647,3660,1,2,f +3647,3665,1,2,f +3647,3666,1,1,f +3647,3701,1,1,f +3647,3702,1,1,f +3647,3710,1,5,f +3647,3747a,1,2,f +3647,3749,7,4,f +3647,3795,1,1,f +3647,3838,14,2,f +3647,3842b,14,2,f +3647,3894,1,2,f +3647,3895,1,2,f +3647,3933a,1,1,f +3647,3934a,1,1,f +3647,3935,1,2,f +3647,3936,1,2,f +3647,3941,0,2,f +3647,3941,7,2,f +3647,3941,1,1,f +3647,3957a,36,2,f +3647,3962a,0,1,f +3647,3963,0,2,f +3647,4006,0,1,f +3647,4032a,0,7,f +3647,4070,1,2,f +3647,4081b,7,2,f +3647,4085b,1,2,f +3647,4175,7,1,f +3647,4286,1,2,f +3647,4287,1,4,f +3647,4315,1,1,f +3647,4448,46,2,f +3647,4474,46,1,f +3647,4589,36,2,f +3647,4590,1,1,f +3647,4596,7,2,f +3647,4598,7,2,f +3647,4730,7,1,f +3647,4730,1,1,f +3647,4732,1,1,f +3647,4740,36,2,f +3647,4741,1,2,f +3647,4859,1,1,f +3647,970c00,14,2,f +3647,973p90c04,14,2,f +3648,21778,0,1,f +3648,3626cpr1807,70,1,f +3648,58247,0,1,f +3649,11477,71,2,f +3649,14417,72,2,f +3649,14418,71,2,f +3649,14419,72,2,f +3649,14769pr1003,15,1,f +3649,3020,72,2,f +3649,3021,71,3,f +3649,3023,0,4,f +3649,3048c,297,2,f +3649,3049b,0,1,f +3649,47458,0,1,f +3649,47759,72,2,f +3649,54200,71,3,f +3649,54200,297,1,t +3649,54200,297,3,f +3649,54200,71,1,t +3649,60474,72,1,f +3649,60478,72,2,f +3649,60481,71,2,f +3649,60481,0,2,f +3649,61252,0,6,f +3649,87081,72,1,f +3649,87747,0,1,t +3649,87747,0,2,f +3649,92946,72,4,f +3650,10055pr0001,226,1,f +3650,11211,4,2,f +3650,11211,19,2,f +3650,11435pr0002,70,1,f +3650,11458,72,2,f +3650,11477,70,4,f +3650,11777pr01,70,1,f +3650,11778pr01,70,1,f +3650,11911,484,1,f +3650,14707,19,2,f +3650,15332,70,1,f +3650,15672,70,2,f +3650,15706,0,2,f +3650,16338pr0002,19,1,f +3650,16577,19,1,f +3650,18164pr0001,0,1,f +3650,18183pr0001,179,1,f +3650,2357,19,6,f +3650,2412b,70,8,f +3650,2449,71,2,f +3650,2454a,19,2,f +3650,2456,19,2,f +3650,2555,0,4,f +3650,2817,71,2,f +3650,3003,72,2,f +3650,3004,28,4,f +3650,3005,378,7,f +3650,3005,71,7,f +3650,3009,19,6,f +3650,3009,28,2,f +3650,3010,19,6,f +3650,30136,308,5,f +3650,3020,70,1,f +3650,3020,19,2,f +3650,3023,0,2,f +3650,3023,71,2,f +3650,3023,4,4,f +3650,3023,19,5,f +3650,3024,28,2,t +3650,3024,28,10,f +3650,3030,70,1,f +3650,3032,19,2,f +3650,3034,72,1,f +3650,3034,0,2,f +3650,3036,71,2,f +3650,3037,320,3,f +3650,30374,70,1,f +3650,3039,70,1,f +3650,3039,72,2,f +3650,3040b,71,7,f +3650,3040b,320,2,f +3650,3040b,15,6,f +3650,30410,0,1,f +3650,30414,72,2,f +3650,3045,71,2,f +3650,3045,320,5,f +3650,3046a,72,6,f +3650,30526,71,2,f +3650,30613,19,2,f +3650,3068b,19,4,f +3650,3069b,308,5,f +3650,3069b,71,5,f +3650,32000,72,4,f +3650,32002,19,2,f +3650,32002,19,1,t +3650,32016,70,2,f +3650,32028,70,4,f +3650,32054,0,2,f +3650,32123b,71,1,t +3650,32123b,71,2,f +3650,32269,0,1,f +3650,3245c,19,2,f +3650,3298,320,4,f +3650,3460,70,2,f +3650,3460,71,1,f +3650,3460,72,2,f +3650,3622,19,9,f +3650,3623,19,7,f +3650,3626cpr0895,15,1,f +3650,3626cpr1101,78,1,f +3650,3626cpr1102,78,1,f +3650,3626cpr1116,78,1,f +3650,3626cpr1313,78,1,f +3650,3626cpr1533b,84,2,f +3650,3665,71,5,f +3650,3665,308,2,f +3650,3665,72,2,f +3650,3666,28,3,f +3650,3666,70,1,f +3650,3673,71,2,t +3650,3673,71,4,f +3650,3675,320,3,f +3650,3678b,72,5,f +3650,3700,72,2,f +3650,3702,0,2,f +3650,3709,72,1,f +3650,3710,320,7,f +3650,3738,72,2,f +3650,3749,19,4,f +3650,3795,19,1,f +3650,3830,71,1,f +3650,3831,71,1,f +3650,3832,72,1,f +3650,3941,70,5,f +3650,3958,19,2,f +3650,4032a,70,8,f +3650,4070,0,2,f +3650,4070,70,2,f +3650,41539,72,1,f +3650,4162,70,4,f +3650,4162,72,2,f +3650,41769,72,1,f +3650,41770,72,1,f +3650,41879a,72,1,f +3650,41879a,0,1,f +3650,4274,71,1,t +3650,4274,71,2,f +3650,4287,70,2,f +3650,43722,15,3,f +3650,43857,4,1,f +3650,43888,70,2,f +3650,44294,71,1,f +3650,4460b,71,3,f +3650,4497,148,1,f +3650,4519,71,5,f +3650,4733,0,1,f +3650,48723,70,2,f +3650,49668,179,8,f +3650,51739,70,1,f +3650,53454,36,2,f +3650,54200,15,8,f +3650,54200,19,6,f +3650,54200,19,2,t +3650,54200,15,2,t +3650,54200,378,2,t +3650,54200,378,4,f +3650,54383,72,1,f +3650,54383,28,5,f +3650,54384,72,1,f +3650,54384,28,2,f +3650,59900,0,1,f +3650,59900,19,2,f +3650,60219,0,1,f +3650,60474,308,4,f +3650,60477,308,2,f +3650,60481,19,3,f +3650,60594,19,1,f +3650,60607,70,2,f +3650,60752,179,3,f +3650,6106,71,2,f +3650,6141,179,1,t +3650,6141,19,1,t +3650,6141,179,4,f +3650,6141,15,2,t +3650,6141,19,4,f +3650,6141,70,1,t +3650,6141,70,2,f +3650,6141,15,7,f +3650,61780,70,1,f +3650,63864,28,2,f +3650,63965,70,2,f +3650,63965,0,1,f +3650,64644,308,2,f +3650,64647,182,4,f +3650,64647,182,2,t +3650,6541,19,2,f +3650,6541,70,6,f +3650,6630,0,2,f +3650,6636,70,2,f +3650,87079,72,1,f +3650,87079,378,2,f +3650,87087,19,5,f +3650,87580,15,1,f +3650,87580,72,2,f +3650,87846,0,2,f +3650,92593,72,1,f +3650,93231,70,2,f +3650,93273,0,3,f +3650,95673,297,1,f +3650,96874,25,1,t +3650,970c00pr0455,308,1,f +3650,970c00pr0577,84,2,f +3650,970c00pr0629,19,1,f +3650,970c00pr0747,70,1,f +3650,973pr2294c01,70,1,f +3650,973pr2505c01,308,2,f +3650,973pr2592c01,19,1,f +3650,973pr2811c02,320,1,f +3650,973pr2812c01b,272,1,f +3650,973pr2813c01,0,1,f +3650,98283,71,7,f +3653,11816pr0001,84,1,f +3653,11816pr0002,78,1,f +3653,11816pr0003,78,1,f +3653,11816pr0005,78,1,f +3653,2335,15,1,f +3653,2343,71,2,f +3653,2343,297,1,f +3653,2397,72,1,f +3653,2412b,4,3,f +3653,2412b,71,8,f +3653,2412b,72,3,f +3653,2431,19,20,f +3653,2431,70,2,f +3653,2436,15,3,f +3653,2445,72,1,f +3653,2445,29,2,f +3653,2453b,19,3,f +3653,2456,71,1,f +3653,2456,15,2,f +3653,2508,0,1,f +3653,2540,15,1,f +3653,2877,14,1,f +3653,3001,70,1,f +3653,3001,27,2,f +3653,3001,15,1,f +3653,3001,71,1,f +3653,3002,70,2,f +3653,3003,27,1,f +3653,3003,14,4,f +3653,3003,19,4,f +3653,3004,73,2,f +3653,3004,19,72,f +3653,3004,70,1,f +3653,3004,4,4,f +3653,3004,27,4,f +3653,3004,28,15,f +3653,3004,15,3,f +3653,30044,15,5,f +3653,3005,19,46,f +3653,3005,15,4,f +3653,3005,0,1,f +3653,30055,15,2,f +3653,30089,0,1,f +3653,3009,19,37,f +3653,3009,28,2,f +3653,3010,15,1,f +3653,3010,19,10,f +3653,3010,28,18,f +3653,3010,73,8,f +3653,30165,15,1,f +3653,30165,70,1,f +3653,30165,484,1,f +3653,3020,71,5,f +3653,3020,30,4,f +3653,3020,2,11,f +3653,3020,73,4,f +3653,3021,15,1,f +3653,3021,72,5,f +3653,3021,4,2,f +3653,3022,2,2,f +3653,3022,15,2,f +3653,3022,484,1,f +3653,3022,320,2,f +3653,3022,70,1,f +3653,3023,27,2,f +3653,3023,30,13,f +3653,3023,71,9,f +3653,3023,2,2,f +3653,3023,73,6,f +3653,3023,15,3,f +3653,30237b,15,4,f +3653,3024,15,2,f +3653,3024,30,2,f +3653,3024,19,2,f +3653,3024,73,1,f +3653,3028,71,1,f +3653,3031,27,2,f +3653,3031,15,1,f +3653,3032,15,1,f +3653,3032,14,2,f +3653,3034,29,4,f +3653,3035,15,3,f +3653,30357,15,2,f +3653,3037,14,2,f +3653,30374,70,4,f +3653,3039,320,10,f +3653,3040b,28,2,f +3653,3040b,71,2,f +3653,30414,15,3,f +3653,3062b,27,7,f +3653,3062b,320,12,f +3653,3062b,19,12,f +3653,3062b,15,4,f +3653,3062b,41,2,f +3653,3062b,14,1,f +3653,3068b,29,5,f +3653,3068b,15,4,f +3653,3068b,2,6,f +3653,3068b,14,4,f +3653,3069b,2,2,f +3653,3069b,19,4,f +3653,3069b,15,4,f +3653,3069b,28,2,f +3653,3069b,14,1,f +3653,3070b,70,1,t +3653,3070b,27,1,f +3653,3070b,70,2,f +3653,3070b,14,1,f +3653,3070b,27,1,t +3653,3185stk01,9999,1,t +3653,32013,14,6,f +3653,32015,15,9,f +3653,32556,19,5,f +3653,3298,320,24,f +3653,33051,10,1,f +3653,3307,19,2,f +3653,33078,4,2,f +3653,3308,19,5,f +3653,33125,484,1,f +3653,33291,10,1,f +3653,33291,70,4,f +3653,33291,5,1,t +3653,33291,5,2,f +3653,33291,70,2,t +3653,33291,10,1,t +3653,3460,15,4,f +3653,3460,30,17,f +3653,3460,19,2,f +3653,3464,15,1,f +3653,3622,19,12,f +3653,3622,70,2,f +3653,3623,15,2,f +3653,3659,5,2,f +3653,3665,73,4,f +3653,3666,71,1,f +3653,3666,14,4,f +3653,3708,15,12,f +3653,3710,27,2,f +3653,3710,73,2,f +3653,3710,14,9,f +3653,3710,30,21,f +3653,3710,71,2,f +3653,3741,2,6,t +3653,3741,2,13,f +3653,3742,5,12,f +3653,3742,15,2,t +3653,3742,15,6,f +3653,3742,5,4,t +3653,3794a,15,4,f +3653,3795,30,1,f +3653,3795,15,4,f +3653,3795,72,1,f +3653,3829c01,15,1,f +3653,3899,4,4,f +3653,3941,15,12,f +3653,3957a,15,2,f +3653,3958,27,2,f +3653,4081b,15,2,f +3653,4150,30,5,f +3653,4150pr0001,15,1,f +3653,4176,47,1,f +3653,4460b,19,4,f +3653,44728,71,4,f +3653,4488,0,9,f +3653,4489b,70,2,f +3653,4495b,191,2,f +3653,4496,70,1,f +3653,4523,27,5,f +3653,4533,15,1,f +3653,4533,41,1,f +3653,4589,4,1,f +3653,4599b,71,4,f +3653,4623,71,2,f +3653,4727,10,2,f +3653,4738a,70,1,f +3653,4739a,70,1,f +3653,4740,71,1,f +3653,48336,71,2,f +3653,4865b,29,2,f +3653,4865b,0,3,f +3653,4865b,15,3,f +3653,4865b,71,3,f +3653,4871,15,1,f +3653,50745,15,4,f +3653,50950,320,4,f +3653,54200,320,1,t +3653,54200,320,4,f +3653,59349,19,5,f +3653,59895,0,1,t +3653,59895,0,1,f +3653,6005,15,2,f +3653,6014b,15,7,f +3653,60583b,15,4,f +3653,60594,15,9,f +3653,60607,73,18,f +3653,60700,0,7,f +3653,60800a,2,4,f +3653,60897,71,6,f +3653,6091,73,6,f +3653,6091,15,2,f +3653,6126b,182,2,f +3653,6141,36,2,t +3653,6141,4,2,f +3653,6141,36,4,f +3653,6141,1,1,f +3653,6141,47,2,f +3653,6141,1,1,t +3653,6141,19,5,f +3653,6141,47,1,t +3653,6141,70,1,f +3653,6141,27,4,f +3653,6141,80,1,f +3653,6141,27,2,t +3653,6141,80,1,t +3653,6141,4,2,t +3653,6141,70,1,t +3653,6141,19,2,t +3653,6178,71,1,f +3653,61780,70,2,f +3653,6180pr0003,0,1,f +3653,6182,19,5,f +3653,6191,14,2,f +3653,6231,322,4,f +3653,6231,71,6,f +3653,6231,15,10,f +3653,6256,29,2,f +3653,63864,71,1,f +3653,63864,15,2,f +3653,6636,19,4,f +3653,6636,30,17,f +3653,6636,15,3,f +3653,70973,5,1,f +3653,85984,30,4,f +3653,85984,15,2,f +3653,87079,15,2,f +3653,87087,4,2,f +3653,87087,15,7,f +3653,87544,47,1,f +3653,87552,47,10,f +3653,87580,14,2,f +3653,87580,73,2,f +3653,87580,15,3,f +3653,88292,19,2,f +3653,88704,70,1,t +3653,88704,70,1,f +3653,88930,15,2,f +3653,91405,19,2,f +3653,91501,15,6,f +3653,92254,0,2,f +3653,92254pr0001,226,2,f +3653,92254pr0002,320,2,f +3653,92255,226,1,f +3653,92256,0,1,f +3653,92258,320,1,f +3653,92258,0,1,f +3653,92410,27,1,f +3653,92410,4,1,f +3653,92438,29,2,f +3653,92438,15,1,f +3653,92438,71,1,f +3653,92456pr0002c01,84,1,f +3653,92456pr0005c01,78,1,f +3653,92456pr0011c01,78,1,f +3653,92456pr0019c01,78,1,f +3653,92593,15,11,f +3653,92818pr0001c01,272,1,f +3653,92819pr0001,15,1,f +3653,92819pr0002a,27,1,f +3653,92821pr0002c01,15,1,f +3653,93085pr01,484,1,f +3653,93085pr02,15,1,f +3653,93085pr03,70,1,f +3653,93086,29,1,f +3653,93086,73,1,f +3653,93086,30,1,f +3653,93087,0,3,f +3653,93091pr0003,323,1,f +3653,93095,14,6,f +3653,93273,71,1,f +3653,94717,5,4,f +3653,94718,5,1,f +3653,94719,5,1,f +3653,94720,5,2,f +3653,94721,5,1,f +3653,94722,5,1,f +3653,94723,5,1,f +3653,94724,5,1,f +3653,94725,5,4,f +3653,95229,0,2,f +3653,95827,191,4,f +3653,95828,191,4,f +3653,95829,191,4,f +3653,95831,191,4,f +3653,95832,191,4,f +3653,96874,25,1,t +3653,98138,71,1,t +3653,98138,71,2,f +3653,98263,71,1,f +3653,98283,28,11,f +3653,98283,84,34,f +3653,98288,4,1,f +3653,98389pr0001,19,1,f +3653,99206,71,2,f +3653,99207,71,1,f +3655,777p03,15,5,f +3659,2339,0,4,f +3659,2343,297,1,f +3659,2419,72,2,f +3659,2420,71,2,f +3659,2432,71,1,f +3659,2454a,0,6,f +3659,2456,71,2,f +3659,2465,15,1,f +3659,2505stk01,9999,1,t +3659,2555,72,1,f +3659,2555,71,1,f +3659,2555,15,4,f +3659,2654,4,3,f +3659,2780,0,2,t +3659,2780,0,4,f +3659,3001,15,3,f +3659,30033,15,1,f +3659,3004,0,4,f +3659,3008,71,2,f +3659,3008,0,1,f +3659,30099,0,6,f +3659,30134,70,2,f +3659,30136,72,6,f +3659,30137,72,13,f +3659,30153,36,1,f +3659,30173b,179,1,f +3659,30173b,0,1,f +3659,30175,179,1,f +3659,30177,4,1,f +3659,3020,70,4,f +3659,3020,0,1,f +3659,3023,70,1,f +3659,3023,15,7,f +3659,30236,71,6,f +3659,30238,4,1,f +3659,30246,0,4,f +3659,3027,72,1,f +3659,3028,70,2,f +3659,3032,72,3,f +3659,3034,71,1,f +3659,3035,70,1,f +3659,30374,71,1,f +3659,30374,297,1,f +3659,3038,71,2,f +3659,3040b,85,6,f +3659,3044b,72,6,f +3659,3048c,15,2,f +3659,3062b,15,15,f +3659,3062b,36,1,f +3659,3068b,19,1,f +3659,3069b,36,3,f +3659,3069b,72,3,f +3659,3069b,0,4,f +3659,32000,19,2,f +3659,32013,71,4,f +3659,32013,4,1,f +3659,32034,15,6,f +3659,32039,0,2,f +3659,32062,4,1,f +3659,32064b,15,5,f +3659,32123b,14,4,f +3659,32123b,14,1,t +3659,3297,72,6,f +3659,3456,71,2,f +3659,3460,70,2,f +3659,3622,71,4,f +3659,3623,19,2,f +3659,3626bpr0744,14,1,f +3659,3626bpr0749,15,1,f +3659,3626bpr0752a,15,1,f +3659,3626bpr0781,0,1,f +3659,3626bpr0782,14,1,f +3659,3626bpr0895,15,4,f +3659,3684,0,2,f +3659,3701,0,3,f +3659,3705,0,1,f +3659,3707,0,2,f +3659,3709,15,4,f +3659,3710,71,11,f +3659,3713,4,2,f +3659,3794b,0,6,f +3659,3794b,71,8,f +3659,3795,70,1,f +3659,3832,72,1,f +3659,3938,4,1,f +3659,3941,71,3,f +3659,3941,15,3,f +3659,4032a,0,5,f +3659,40379,15,6,f +3659,4070,70,2,f +3659,4081b,15,2,f +3659,4085c,0,2,f +3659,41854,85,2,f +3659,4274,1,1,t +3659,4274,1,5,f +3659,4274,71,1,t +3659,4274,71,4,f +3659,4286,72,4,f +3659,4287,72,2,f +3659,43722,15,3,f +3659,43723,15,3,f +3659,43888,71,8,f +3659,44294,71,2,f +3659,44675,0,1,f +3659,4477,85,4,f +3659,4510,72,2,f +3659,4519,71,2,f +3659,4528,0,1,f +3659,47457,85,2,f +3659,48336,15,2,f +3659,4865a,15,2,f +3659,48729b,72,2,f +3659,48729b,72,1,t +3659,53451,15,1,t +3659,53451,15,4,f +3659,53585,4,1,f +3659,53705,132,2,f +3659,53989,15,12,f +3659,57585,71,2,f +3659,58176,36,4,f +3659,59233pat0001,41,1,f +3659,59443,4,1,f +3659,6003,72,4,f +3659,60169,71,2,f +3659,60470a,15,2,f +3659,60474,71,3,f +3659,60475a,0,2,f +3659,60596,0,5,f +3659,60621,71,1,f +3659,60808,0,6,f +3659,6091,71,2,f +3659,6091,0,2,f +3659,6112,0,2,f +3659,61184,71,4,f +3659,6141,85,21,f +3659,6141,85,4,t +3659,61780,70,2,f +3659,6231,71,4,f +3659,62711,0,1,f +3659,64448,15,2,f +3659,64567,71,1,f +3659,64644,297,2,f +3659,64647,57,1,t +3659,64647,57,2,f +3659,64712,72,2,f +3659,64799,71,1,f +3659,6541,72,4,f +3659,6587,28,1,f +3659,6636,70,1,f +3659,85940,0,2,f +3659,85959pat0001,36,2,f +3659,87081,0,2,f +3659,87087,71,10,f +3659,87580,15,1,f +3659,87580,0,2,f +3659,87620,0,16,f +3659,87747,297,1,f +3659,87747,15,12,f +3659,87846,15,6,f +3659,88292,0,2,f +3659,92338,297,1,f +3659,92589,71,4,f +3659,92690,297,3,f +3659,92691,15,2,f +3659,93058,297,1,t +3659,93058,297,1,f +3659,93061,15,1,t +3659,93061,15,6,f +3659,93062c01,15,6,f +3659,93067pr01,15,1,f +3659,93068pr0001,15,1,f +3659,93160,15,2,f +3659,93271pr0001,15,1,f +3659,93763pr0003,15,1,f +3659,93764pr0004,15,1,f +3659,970c00,0,1,f +3659,970c00pr0193,4,1,f +3659,970c00pr0203,4,1,f +3659,973pr1716c01,4,1,f +3659,973pr1741c01,0,1,f +3659,973pr1742c01,4,1,f +3660,22667,27,2,f +3660,22667,27,1,t +3660,2343,297,1,f +3660,2423,2,1,f +3660,3010,70,2,f +3660,30153,47,1,f +3660,30153,36,1,f +3660,3020,15,2,f +3660,3037,4,1,f +3660,54200,15,1,t +3660,54200,15,2,f +3660,60594,4,1,f +3660,60608,14,2,f +3660,98283,28,2,f +3661,2445,15,1,f +3661,3028,15,1,f +3661,3029,15,1,f +3661,3030,15,1,f +3661,3031,15,1,f +3661,3032,15,1,f +3661,3035,15,1,f +3661,3036,15,1,f +3661,3456,15,1,f +3661,4282,15,1,f +3662,10247,15,12,f +3662,10247,71,2,f +3662,11211,15,2,f +3662,11211,19,2,f +3662,11211,71,1,f +3662,11212,71,2,f +3662,11408pr0006c01,84,1,f +3662,11477,15,5,f +3662,11477,31,12,f +3662,11477,85,4,f +3662,11477,4,3,f +3662,11609,297,4,f +3662,11609,297,1,t +3662,11618,26,1,f +3662,11618,26,1,t +3662,11816pr0001,84,1,f +3662,11816pr0005,78,1,f +3662,11816pr0006,78,1,f +3662,11833,0,1,f +3662,14014pr0001,84,1,f +3662,14417,72,4,f +3662,14769,0,1,f +3662,14769,85,4,f +3662,15461,0,1,f +3662,15535,72,1,f +3662,15573,0,1,f +3662,15625,71,1,f +3662,15706,85,4,f +3662,15712,0,1,f +3662,15712,15,2,f +3662,16577,15,1,f +3662,18654,72,1,t +3662,18654,72,1,f +3662,18674,15,1,f +3662,18854,52,1,f +3662,18854,45,1,f +3662,18854,52,1,t +3662,18854,45,1,t +3662,23421,14,1,t +3662,23421,14,1,f +3662,2357,15,2,f +3662,23969,47,1,f +3662,23969,322,1,f +3662,2412b,15,9,f +3662,2412b,0,6,f +3662,2412b,85,2,f +3662,2420,0,6,f +3662,2431,42,1,f +3662,2431,4,2,f +3662,2431,0,4,f +3662,2431pr0017,14,2,f +3662,2432,15,1,f +3662,2453b,15,2,f +3662,2454a,15,3,f +3662,2456,0,4,f +3662,2458,15,1,f +3662,2460,71,4,f +3662,25086,322,4,f +3662,25195,14,1,f +3662,25269pr02,2,2,f +3662,25269pr02,2,1,t +3662,25386,19,1,f +3662,2569,42,1,t +3662,2569,42,1,f +3662,26490,379,1,f +3662,2654,47,2,f +3662,2654,15,6,f +3662,2723,71,2,f +3662,2736,71,1,f +3662,2780,0,4,t +3662,2780,0,16,f +3662,2817,71,1,f +3662,2877,71,8,f +3662,298c02,4,2,t +3662,298c02,4,2,f +3662,3001,15,1,f +3662,3002,19,1,f +3662,3003,5,3,f +3662,3003,15,5,f +3662,3004,15,12,f +3662,3004,5,5,f +3662,3005,41,2,f +3662,3005,15,4,f +3662,3005,72,1,f +3662,3005,0,3,f +3662,3005,322,6,f +3662,3005,31,6,f +3662,3005,4,2,f +3662,30089,0,2,f +3662,3010,5,2,f +3662,3010,0,2,f +3662,30157,71,6,f +3662,3020,85,2,f +3662,3020,72,3,f +3662,3020,322,2,f +3662,3020,71,2,f +3662,3020,0,10,f +3662,3020,15,3,f +3662,3022,85,2,f +3662,3022,0,4,f +3662,3022,322,4,f +3662,3022,71,6,f +3662,3022,15,3,f +3662,3023,5,8,f +3662,3023,15,5,f +3662,3023,42,10,f +3662,3023,41,2,f +3662,3023,85,10,f +3662,3023,19,3,f +3662,3023,31,12,f +3662,3023,71,4,f +3662,3023,322,12,f +3662,3024,15,2,t +3662,3024,0,12,f +3662,3024,0,2,t +3662,3024,15,8,f +3662,3030,27,2,f +3662,3031,85,1,f +3662,3031,27,4,f +3662,3031,0,6,f +3662,3034,71,3,f +3662,30367c,15,1,f +3662,3037,0,1,f +3662,30374,35,2,f +3662,30385,45,2,f +3662,30385,35,2,f +3662,3039,15,6,f +3662,3040b,15,3,f +3662,3040b,72,4,f +3662,3040bpr0003,71,1,f +3662,30526,72,2,f +3662,30565,322,2,f +3662,3062b,33,1,f +3662,3062b,15,8,f +3662,3062b,4,1,f +3662,3068b,322,6,f +3662,3068b,0,3,f +3662,3068b,15,2,f +3662,3069b,41,1,f +3662,3069b,0,2,f +3662,3069b,15,1,f +3662,3069b,85,6,f +3662,3069b,322,1,f +3662,3069bpr0100,2,2,f +3662,3069bpr0101,71,1,f +3662,3070b,34,1,t +3662,3070b,34,1,f +3662,3070b,36,1,f +3662,3070b,36,1,t +3662,3070b0167,15,2,f +3662,3070b0167,15,1,t +3662,32002,19,1,f +3662,32002,19,1,t +3662,32013,15,1,f +3662,32016,71,1,f +3662,32034,15,1,f +3662,32054,71,1,f +3662,32054,4,1,f +3662,32062,4,4,f +3662,32064a,15,2,f +3662,32073,71,2,f +3662,32123b,14,1,t +3662,32123b,14,1,f +3662,32124,0,12,f +3662,3245b,15,3,f +3662,32524,0,1,f +3662,32524,15,12,f +3662,32556,19,1,f +3662,33051,4,1,f +3662,33078,4,1,f +3662,33078,4,1,t +3662,33291,10,15,f +3662,33291,31,1,t +3662,33291,4,14,f +3662,33291,31,2,f +3662,33291,4,5,t +3662,33291,10,4,t +3662,3460,0,2,f +3662,3622,72,2,f +3662,3623,15,1,f +3662,3665,71,2,f +3662,3666,15,4,f +3662,3666,14,1,f +3662,3666,85,6,f +3662,3673,71,4,t +3662,3673,71,14,f +3662,3678b,15,4,f +3662,3678b,322,6,f +3662,3700,0,6,f +3662,3700,15,6,f +3662,3705,0,1,f +3662,3709,71,1,f +3662,3710,15,4,f +3662,3710,0,16,f +3662,3713,4,1,t +3662,3713,71,1,t +3662,3713,71,1,f +3662,3713,4,2,f +3662,3749,19,3,f +3662,3795,0,7,f +3662,3795,322,1,f +3662,3795,15,2,f +3662,3832,72,1,f +3662,3894,4,2,f +3662,3941,85,4,f +3662,3941,15,4,f +3662,3960,41,1,f +3662,4032a,85,1,f +3662,40490,72,1,f +3662,41239,15,3,f +3662,4274,71,1,t +3662,4274,1,5,t +3662,4274,71,4,f +3662,4274,1,23,f +3662,43898,80,2,f +3662,44375b,14,3,f +3662,44375b,85,3,f +3662,4519,71,1,f +3662,4588,15,2,f +3662,4600,71,8,f +3662,46212,41,6,f +3662,46212,42,6,f +3662,4740,42,1,f +3662,4740,0,1,f +3662,47457,85,2,f +3662,48336,19,1,f +3662,4865a,322,11,f +3662,4865a,47,1,f +3662,4865b,31,3,f +3662,50254,0,16,f +3662,54200,42,10,f +3662,54200,5,8,f +3662,54200,41,11,f +3662,54200,5,1,t +3662,54200,41,2,t +3662,54200,42,1,t +3662,57585,71,1,f +3662,58176,35,1,f +3662,58176,36,1,f +3662,59230,0,2,f +3662,59230,0,1,t +3662,59443,4,1,f +3662,59443,0,4,f +3662,59443,71,3,f +3662,59900,45,3,f +3662,59900,33,1,f +3662,59900,15,2,f +3662,60474,15,3,f +3662,60478,4,2,f +3662,60485,71,1,f +3662,60593,4,2,f +3662,60602,47,2,f +3662,60849,0,2,t +3662,60849,0,2,f +3662,6091,15,4,f +3662,6141,85,2,t +3662,6141,0,8,f +3662,6141,41,4,t +3662,6141,45,34,f +3662,6141,0,3,t +3662,6141,2,3,f +3662,6141,14,24,f +3662,6141,42,43,f +3662,6141,57,2,t +3662,6141,41,27,f +3662,6141,85,24,f +3662,6141,14,2,t +3662,6141,35,1,t +3662,6141,35,10,f +3662,6141,42,4,t +3662,6141,2,1,t +3662,6141,45,3,t +3662,6141,57,2,f +3662,61678,0,2,f +3662,6178,15,1,f +3662,6179,15,1,f +3662,6187,71,3,f +3662,6232,15,3,f +3662,6232,71,1,f +3662,6239,35,2,f +3662,62462,71,1,f +3662,62462,0,1,f +3662,6254,15,2,f +3662,6256,29,1,f +3662,62701,179,2,f +3662,62930,47,1,f +3662,63082,71,3,f +3662,63864,19,1,f +3662,63864,71,1,f +3662,64566,0,2,f +3662,64644,71,2,f +3662,6541,71,1,f +3662,6541,15,1,f +3662,6558,1,1,f +3662,6628,0,1,f +3662,72454,15,4,f +3662,73983,15,2,f +3662,85543,15,1,f +3662,85976,322,8,f +3662,85984,14,3,f +3662,85984,15,3,f +3662,85984,85,3,f +3662,87079,0,3,f +3662,87087,15,5,f +3662,87552,41,4,f +3662,87580,15,1,f +3662,87580,85,2,f +3662,87991,0,1,f +3662,87994,71,2,f +3662,87994,71,1,t +3662,90258,72,1,f +3662,91176,15,2,f +3662,91176,5,2,f +3662,91405,27,1,f +3662,91988,5,1,f +3662,92256,226,1,f +3662,92258,0,1,f +3662,92280,15,4,f +3662,92438,27,1,f +3662,92456pr0036c01,78,1,f +3662,92456pr0060c01,84,1,f +3662,92456pr0107c01,78,1,f +3662,92818pr0002c01,26,1,f +3662,92819pr0009c01,378,1,f +3662,92820pr0009c01,322,1,f +3662,92926,72,1,f +3662,92950,15,2,f +3662,93095,322,2,f +3662,93273,322,6,f +3662,93273,15,4,f +3662,93273,0,1,f +3662,93274,15,1,f +3662,93352,308,1,f +3662,96874,25,1,t +3662,98138,34,1,t +3662,98138,15,2,f +3662,98138,15,2,t +3662,98138,71,3,f +3662,98138,47,2,t +3662,98138,47,3,f +3662,98138,71,3,t +3662,98138,34,5,f +3662,98138,36,1,t +3662,98138,36,1,f +3662,98138pr0012,179,1,t +3662,98138pr0012,179,1,f +3662,98138pr0024a,179,1,f +3662,98138pr0024a,179,1,t +3662,99207,71,2,f +3662,99207,15,2,f +3662,99207,0,2,f +3662,99781,0,3,f +3662,99784,45,12,f +3663,cwindow04,15,2,f +3663,cwindow04,14,1,f +3663,cwindow04,4,1,f +3665,6551c01,7,1,f +3665,6553,14,1,f +3667,4575,4,1,f +3667,4662,1,1,f +3668,10247,0,2,f +3668,10314,320,4,f +3668,11203,72,2,f +3668,11213,71,5,f +3668,11399,72,1,f +3668,11477,72,4,f +3668,12825,72,4,f +3668,2412b,0,4,f +3668,2412b,320,2,f +3668,2420,72,1,f +3668,2420,71,4,f +3668,2431,72,5,f +3668,2431,320,13,f +3668,2431,71,2,f +3668,2436,71,1,f +3668,2445,71,2,f +3668,2449,71,2,f +3668,2450,0,2,f +3668,2458,72,2,f +3668,2460,71,4,f +3668,2515,72,2,f +3668,2555,0,8,f +3668,2654,72,13,f +3668,2730,71,10,f +3668,2780,0,34,f +3668,2823,0,4,f +3668,2877,72,8,f +3668,2877,71,5,f +3668,3005,71,2,f +3668,3010,72,1,f +3668,30162,72,1,f +3668,3020,320,4,f +3668,3020,71,2,f +3668,3021,72,8,f +3668,3022,71,6,f +3668,3023,0,2,f +3668,3023,71,7,f +3668,3023,320,34,f +3668,3024,36,1,f +3668,3024,41,1,f +3668,3024,320,4,f +3668,3024,47,4,f +3668,3024,71,8,f +3668,3030,72,2,f +3668,3031,15,1,f +3668,3032,72,2,f +3668,3034,71,4,f +3668,30350b,72,3,f +3668,30355,71,4,f +3668,30356,71,4,f +3668,3037,72,2,f +3668,30374,41,9,f +3668,30374,71,6,f +3668,30374,35,2,f +3668,30374,36,2,f +3668,30381,320,1,f +3668,3039,320,1,f +3668,3040b,320,5,f +3668,30414,72,1,f +3668,30414,0,2,f +3668,30503,72,2,f +3668,30503,71,6,f +3668,30503,320,12,f +3668,30504,320,2,f +3668,3062b,72,16,f +3668,3062b,320,2,f +3668,3068b,320,7,f +3668,3068b,72,2,f +3668,3069b,41,8,f +3668,3069b,72,2,f +3668,3069b,320,7,f +3668,3069b,71,4,f +3668,3069b,46,3,f +3668,3070b,0,2,f +3668,3070b,320,13,f +3668,3176,71,4,f +3668,32000,72,4,f +3668,32018,72,7,f +3668,32028,71,9,f +3668,32054,0,4,f +3668,32062,0,5,f +3668,32062,4,2,f +3668,32316,71,2,f +3668,32316,72,2,f +3668,32348,71,6,f +3668,3245c,0,2,f +3668,32530,72,8,f +3668,3460,0,1,f +3668,3622,72,4,f +3668,3622,71,2,f +3668,3623,72,4,f +3668,3626cpr0937,78,1,f +3668,3626cpr1268,326,1,f +3668,3626cpr1269,72,1,f +3668,3626cpr1270,84,1,f +3668,3660,72,4,f +3668,3665,71,2,f +3668,3666,320,12,f +3668,3666,72,2,f +3668,3673,71,2,f +3668,3679,71,1,f +3668,3680,0,1,f +3668,3700,71,2,f +3668,3701,72,2,f +3668,3702,4,2,f +3668,3707,0,1,f +3668,3709,0,2,f +3668,3710,71,9,f +3668,3710,320,8,f +3668,3710,0,1,f +3668,3713,71,2,f +3668,3737,0,2,f +3668,3743,0,8,f +3668,3747b,72,8,f +3668,3749,19,2,f +3668,3794a,320,8,f +3668,3794b,71,12,f +3668,3794b,0,1,f +3668,3795,71,6,f +3668,3795,72,3,f +3668,3832,72,4,f +3668,3894,0,4,f +3668,3941,41,4,f +3668,3941,71,2,f +3668,3941,0,2,f +3668,3943b,72,2,f +3668,3957a,0,1,f +3668,3958,72,1,f +3668,3958,71,1,f +3668,3960,320,3,f +3668,4032a,0,7,f +3668,4032a,72,4,f +3668,4085c,0,2,f +3668,41678,4,4,f +3668,41769,320,1,f +3668,41770,320,1,f +3668,4274,71,4,f +3668,4286,71,10,f +3668,44567a,71,2,f +3668,44570,72,3,f +3668,44728,72,2,f +3668,4477,19,2,f +3668,4490,0,4,f +3668,45410,320,2,f +3668,4598,0,2,f +3668,47397,72,1,f +3668,47398,72,1,f +3668,4740,72,2,f +3668,47457,71,5,f +3668,47457,72,2,f +3668,48336,0,9,f +3668,4865a,19,3,f +3668,50745,320,2,f +3668,50950,71,2,f +3668,51739,320,8,f +3668,52345,15,1,f +3668,52501,320,2,f +3668,53989,72,4,f +3668,54200,71,14,f +3668,54200,320,14,f +3668,54200,72,10,f +3668,54383,72,1,f +3668,54383,320,3,f +3668,54384,320,3,f +3668,54384,72,1,f +3668,58247,0,1,f +3668,59900,72,4,f +3668,6019,0,6,f +3668,60474,320,2,f +3668,60474,71,1,f +3668,60477,320,4,f +3668,60478,71,4,f +3668,6091,71,4,f +3668,6091,320,10,f +3668,61184,71,4,f +3668,6141,41,42,f +3668,6141,71,2,f +3668,6141,72,2,f +3668,61485,0,2,f +3668,61780,72,2,f +3668,6191,71,4,f +3668,63864,0,10,f +3668,63864,320,2,f +3668,63868,0,8,f +3668,63965,71,4,f +3668,64179,71,2,f +3668,64567,80,2,f +3668,64567,0,2,f +3668,64799,71,1,f +3668,6536,0,1,f +3668,6558,1,16,f +3668,6628,0,4,f +3668,6632,0,2,f +3668,75937,0,1,f +3668,85984,0,1,f +3668,85984,72,8,f +3668,87079,71,2,f +3668,87081,0,2,f +3668,87083,72,1,f +3668,87552,71,4,f +3668,87580,71,3,f +3668,87580,72,4,f +3668,87926,320,2,f +3668,88072,0,1,f +3668,92582,71,2,f +3668,92761,84,1,f +3668,92950,71,2,f +3668,93095,15,2,f +3668,93273,71,2,f +3668,93273,320,2,f +3668,93274,72,4,f +3668,95120,0,2,f +3668,96874,25,1,t +3668,970c00pr0360,0,1,f +3668,970c00pr0557,15,1,f +3668,970c00pr0558,71,1,f +3668,970c00pr0559,326,1,f +3668,973pr2094c01,0,1,f +3668,973pr2453c01,15,1,f +3668,973pr2454c01,320,1,f +3668,973pr2455c01,70,1,f +3668,98138,46,4,f +3668,98177pr0001,0,1,f +3668,98287,71,2,f +3668,98585,41,2,f +3668,98989,71,4,f +3668,99780,72,1,f +3669,3001a,4,2,f +3669,3001a,47,1,f +3669,3001a,1,15,f +3669,3003,1,4,f +3669,3003,4,1,f +3669,3004,47,1,f +3669,3004,1,6,f +3669,3007,1,1,f +3669,3008,1,1,f +3669,3009,1,5,f +3669,3027,7,3,f +3669,3034,15,18,f +3669,3039,1,1,f +3669,3039,4,1,f +3669,3058a,7,1,f +3669,3176,4,3,f +3669,3176c01,4,3,f +3669,3228a,1,4,f +3669,3229a,1,16,f +3669,3230a,1,16,f +3669,458,7,4,f +3669,468c01,1,1,f +3669,7049b,15,6,f +3669,bb393c85,15,1,f +3669,wheel1a,4,12,f +3669,wheel1b,4,4,f +3669,x579c02,1,1,f +3670,10563,15,1,f +3670,12651,212,3,f +3670,13247,484,1,f +3670,15515,191,1,f +3670,15947,29,1,f +3670,15966,4,1,f +3670,16385,15,1,f +3670,18806,4,1,f +3670,19338,15,1,f +3670,19343,226,1,f +3670,19344,191,1,f +3670,20820,15,1,f +3670,2300,4,1,f +3670,2302,5,2,f +3670,2302,29,4,f +3670,3011,5,2,f +3670,31023,15,1,f +3670,31333,15,3,f +3670,3437,73,2,f +3670,3437,5,3,f +3670,4066,29,2,f +3670,40666,73,3,f +3670,47510pr0001,29,1,f +3670,61257,14,1,f +3670,75115pr0024,15,1,f +3670,75121,15,1,f +3670,76371,73,2,f +3670,76371,25,2,f +3670,92002,4,1,f +3670,92094,4,1,f +3670,93353,191,1,f +3670,98233,4,1,f +3670,98252,4,2,f +3671,18962,19,1,f +3671,3626cpr1568,14,1,f +3671,60752,28,1,f +3671,63965,70,1,f +3671,64567,15,1,f +3671,970c00pr0767,85,1,f +3671,973pr2852c01,14,1,f +3672,608p33,2,1,f +3672,6099p01,2,1,f +3673,10202,71,1,f +3673,11211,71,1,f +3673,11399,72,1,f +3673,14682,71,2,f +3673,15207,14,4,f +3673,15455,2,1,f +3673,18937,72,1,f +3673,21709,0,1,f +3673,2412b,0,3,f +3673,2431pr0077,15,5,f +3673,2432,72,1,f +3673,2540,14,2,f +3673,3002,70,1,f +3673,3002,25,1,f +3673,3003,70,2,f +3673,3003,84,2,f +3673,3003,25,1,f +3673,3004,14,4,f +3673,3004,4,2,f +3673,3008,15,2,f +3673,3021,25,3,f +3673,30228,72,1,f +3673,30386,0,3,f +3673,30389c,0,2,f +3673,30395,72,1,f +3673,30396,0,1,f +3673,3040b,70,2,f +3673,3040b,84,2,f +3673,3069b,36,2,f +3673,3069b,46,2,f +3673,3069bpr0101,71,1,f +3673,3626cpr0914,14,1,f +3673,3626cpr1146,14,1,f +3673,3700,0,2,f +3673,3710,14,2,f +3673,3795,25,1,f +3673,3829c01,1,2,f +3673,3833,4,2,f +3673,3837,0,1,f +3673,3839b,71,1,f +3673,4079b,70,1,f +3673,4176,41,1,f +3673,44302a,15,2,f +3673,4600,0,3,f +3673,4624,15,2,f +3673,48336,71,2,f +3673,51739,25,2,f +3673,55981,15,4,f +3673,59900,182,4,f +3673,6014b,25,4,f +3673,60481,0,2,f +3673,61780,2,1,f +3673,6179pr0014,0,1,f +3673,6215,14,3,f +3673,63864,71,2,f +3673,64450,25,1,f +3673,64644,71,1,f +3673,74698,0,1,f +3673,87079pr0066,72,1,f +3673,87079pr0071,14,2,f +3673,87414,0,2,f +3673,87552,41,2,f +3673,87697,0,4,f +3673,92280,0,2,f +3673,92402,0,4,f +3673,92582,71,2,f +3673,970c00,1,2,f +3673,973pr1470c01,1,2,f +3673,98368,4,1,f +3679,2339,6,5,f +3679,2357,0,2,f +3679,2412b,7,2,f +3679,2413,15,3,f +3679,2419,15,1,f +3679,2431,15,5,f +3679,2437,41,1,f +3679,2444,7,2,f +3679,2540,7,1,f +3679,2877,7,1,f +3679,298c02,14,1,f +3679,3001,15,2,f +3679,3001,6,4,f +3679,3003,0,1,f +3679,3003,6,7,f +3679,3004,8,4,f +3679,3005,4,1,f +3679,3005,0,1,f +3679,3010,6,3,f +3679,3010,15,1,f +3679,30145,6,4,f +3679,30148,0,1,f +3679,3020,0,1,f +3679,3020,1,2,f +3679,3021,1,1,f +3679,3021,15,2,f +3679,3022,7,3,f +3679,3023,0,5,f +3679,30239,2,5,f +3679,3032,0,1,f +3679,3033,8,1,f +3679,3034,15,2,f +3679,30364,0,1,f +3679,30365,7,1,f +3679,30388,7,1,f +3679,3039,7,1,f +3679,3039px23,8,2,f +3679,3039px7,15,1,f +3679,3040b,7,2,f +3679,30459pb05,8,1,f +3679,30517,0,1,f +3679,3062b,7,1,f +3679,3069bp02,7,1,f +3679,3070b,7,2,f +3679,3139,0,6,f +3679,3176,7,1,f +3679,3479,15,1,f +3679,3626bpx32,14,1,f +3679,3626bpx33,14,1,f +3679,3660,15,3,f +3679,3673,7,2,f +3679,3710,1,6,f +3679,3747a,15,1,f +3679,3794a,7,1,f +3679,3829c01,7,1,f +3679,3839b,0,2,f +3679,40373pb05,7,2,f +3679,40374pb05,7,2,f +3679,40375,8,2,f +3679,40378,8,1,f +3679,40379,8,1,f +3679,40382c01pb05,8,1,f +3679,40385px1,8,1,f +3679,40390,8,1,f +3679,40393,8,2,f +3679,40395,8,1,f +3679,4070,0,5,f +3679,4079,15,1,f +3679,4081b,7,2,f +3679,4284,41,1,f +3679,4485,0,1,f +3679,4485,1,1,f +3679,4617b,0,2,f +3679,4623,0,1,f +3679,4624,15,6,f +3679,4625,15,1,f +3679,4854,15,1,f +3679,4855,15,2,f +3679,4856a,15,1,f +3679,4857,15,1,f +3679,4858,15,1,f +3679,4859,1,2,f +3679,4861,15,1,f +3679,4862,41,4,f +3679,4863,15,2,f +3679,4865a,15,2,f +3679,4870,7,3,f +3679,6027,4,1,f +3679,6069,15,1,f +3679,6127,8,1,f +3679,6128,8,1,f +3679,6141,34,1,t +3679,6141,15,1,t +3679,6141,36,1,t +3679,6141,34,1,f +3679,6141,15,2,f +3679,6141,36,1,f +3679,6564,15,1,f +3679,6565,15,1,f +3679,970c00,0,1,f +3679,970c00,1,1,f +3679,973px64c01,15,1,f +3679,973px66c01,0,1,f +3680,2412b,72,4,f +3680,2417,10,3,f +3680,2423,2,6,f +3680,2431,70,2,f +3680,2431,33,1,f +3680,2431,71,1,f +3680,2431,15,4,f +3680,2432,4,1,f +3680,2432,14,1,f +3680,2445,70,2,f +3680,2449,72,2,f +3680,2453a,70,1,f +3680,2454a,70,2,f +3680,2465,72,1,f +3680,2540,0,2,f +3680,2654,4,1,f +3680,30029,0,1,f +3680,3003,15,2,f +3680,3004,14,1,f +3680,3009,0,2,f +3680,30136,70,10,f +3680,30137,70,9,f +3680,30157,72,2,f +3680,30162,72,1,f +3680,30170,72,1,t +3680,30170,72,1,f +3680,30171,70,1,f +3680,30187b,1,1,f +3680,30189,1,1,f +3680,30190,15,1,f +3680,3020,72,4,f +3680,3020,2,4,f +3680,3021,4,5,f +3680,3022,15,4,f +3680,3023,28,1,f +3680,3023,4,1,f +3680,3023,72,1,f +3680,3023,71,8,f +3680,3024,0,2,f +3680,3024,36,2,f +3680,3028,28,2,f +3680,3028,72,1,f +3680,3029,71,2,f +3680,3031,72,1,f +3680,30363,72,1,f +3680,30363,0,12,f +3680,30374,15,1,f +3680,3039,72,1,f +3680,30391,0,4,f +3680,3040b,72,1,f +3680,3062b,70,5,f +3680,3062b,0,1,f +3680,3069b,0,2,f +3680,3069b,82,3,f +3680,3069bpr0115,15,1,f +3680,3460,72,2,f +3680,3622,1,2,f +3680,3626b,47,1,f +3680,3626cpr0411,14,1,f +3680,3626cpr0725,14,1,f +3680,3626cpr0889,14,1,f +3680,3626cpr0912,14,1,f +3680,3665,1,6,f +3680,3666,15,3,f +3680,3666,1,4,f +3680,3666,72,4,f +3680,3666,320,2,f +3680,3666,71,1,f +3680,3710,1,3,f +3680,3710,14,4,f +3680,3710,72,1,f +3680,3795,72,2,f +3680,3829c01,4,1,f +3680,3829c01,14,1,f +3680,3899,4,1,f +3680,3941,70,3,f +3680,3958,70,1,f +3680,3962b,0,1,f +3680,4032a,2,1,f +3680,4079b,14,1,f +3680,4176,41,1,f +3680,41767,0,1,f +3680,41768,0,1,f +3680,42610,71,2,f +3680,4287,71,2,f +3680,43337,40,1,f +3680,43337,0,2,f +3680,4345b,71,1,f +3680,4346,4,1,f +3680,4438stk01,9999,1,t +3680,44568,71,1,f +3680,44569,72,1,f +3680,4460b,72,4,f +3680,4515,71,1,f +3680,45677,1,1,f +3680,4599b,71,2,f +3680,4740,71,1,f +3680,47720,71,2,f +3680,47847,72,2,f +3680,50946,0,1,f +3680,51011,0,2,f +3680,52031,15,1,f +3680,54200,33,2,f +3680,54200,320,1,t +3680,54200,36,1,f +3680,54200,320,2,f +3680,54200,33,1,t +3680,54200,71,1,t +3680,54200,46,2,t +3680,54200,71,2,f +3680,54200,36,1,t +3680,54200,46,3,f +3680,55981,71,4,f +3680,56902,71,2,f +3680,58176,33,2,f +3680,6014b,15,2,f +3680,60470b,0,1,f +3680,60481,15,2,f +3680,60594,0,1,f +3680,60596,0,1,f +3680,60608,14,2,f +3680,60623,4,1,f +3680,60897,0,2,f +3680,60897,15,6,f +3680,61252,71,2,f +3680,61254,0,2,f +3680,6141,72,2,f +3680,6141,33,1,t +3680,6141,72,1,t +3680,6141,46,1,t +3680,6141,46,4,f +3680,6141,33,2,f +3680,61482,71,1,t +3680,61482,71,1,f +3680,63864,0,2,f +3680,6636,0,1,f +3680,6636,72,1,f +3680,85975,320,1,f +3680,85984,71,2,f +3680,85984,72,4,f +3680,86035,320,1,f +3680,87087,0,2,f +3680,87580,0,1,f +3680,87697,0,3,f +3680,88072,4,1,f +3680,91405,2,1,f +3680,93274,4,1,f +3680,93587,0,1,f +3680,970c00,379,1,f +3680,970c00,272,2,f +3680,970c00,72,1,f +3680,973pr1694c01,71,1,f +3680,973pr1943c01,28,2,f +3680,973pr1945ac01,15,1,f +3680,98279,19,2,f +3680,98282,72,4,f +3680,98283,84,11,f +3680,98284,70,2,f +3680,98496pr0001a,308,1,f +3681,33051,10,1,f +3681,87621pr01,92,1,f +3682,3007mia,15,1,f +3682,3007mia,4,4,f +3682,3185,2,3,f +3682,3297mia,2,22,f +3682,3298mia,2,8,f +3682,3299mia,2,6,f +3682,3853mi,15,8,f +3682,3856mi,2,6,f +3682,3861mi,15,1,f +3682,604mi,15,3,f +3682,archmia,4,2,f +3682,m3001,4,90,f +3682,m3001,15,15,f +3682,m3003,15,6,f +3682,m3003,4,41,f +3682,x1561,2,2,f +3683,45449,29,3,f +3683,45451,230,3,f +3683,46296,47,1,f +3683,46296,230,1,f +3683,47912,230,1,f +3683,47912,41,1,f +3683,48173,230,2,f +3684,2383,15,8,f +3684,2384pb01,79,1,f +3684,2384pb02,79,1,f +3684,2384pb03,79,1,f +3684,2384pb04,79,1,f +3684,2384pb05,79,1,f +3684,2384pb06,79,1,f +3684,2384pb07,79,1,f +3684,2384pb08,79,1,f +3686,2340,15,2,f +3686,2357,15,2,f +3686,2412b,72,5,f +3686,2444,4,2,f +3686,2447,36,1,t +3686,2456,15,2,f +3686,2540,72,4,f +3686,2555,71,2,f +3686,2569,0,1,t +3686,2569,0,2,f +3686,2654,2,2,f +3686,2780,0,2,t +3686,2780,0,6,f +3686,2877,70,2,f +3686,298c02,4,1,t +3686,298c02,4,2,f +3686,3001,15,1,f +3686,3003,1,2,f +3686,30033,0,1,f +3686,3004,15,2,f +3686,3004,71,2,f +3686,3006,15,1,f +3686,3010,15,2,f +3686,3020,70,3,f +3686,3021,0,8,f +3686,3022,4,2,f +3686,3022,72,4,f +3686,3023,71,6,f +3686,3023,1,5,f +3686,30237a,72,1,f +3686,3024,36,1,f +3686,3024,33,1,f +3686,3024,15,2,f +3686,3034,71,1,f +3686,3034,15,1,f +3686,3035,71,1,f +3686,30360,15,4,f +3686,30367b,71,4,f +3686,3037,15,2,f +3686,3039,15,1,f +3686,3040b,15,2,f +3686,3048c,0,3,f +3686,30602,71,1,f +3686,3068b,15,1,f +3686,3069b,72,2,f +3686,32000,4,1,f +3686,32054,0,2,f +3686,32064b,0,9,f +3686,32072,0,4,f +3686,32073,71,3,f +3686,32524,71,2,f +3686,32526,72,2,f +3686,3298,15,1,f +3686,3460,72,1,f +3686,3475b,72,2,f +3686,3660,2,2,f +3686,3660,71,2,f +3686,3665,15,2,f +3686,3702,0,2,f +3686,3706,0,1,f +3686,3710,15,1,f +3686,3747b,15,6,f +3686,3795,72,4,f +3686,3795,0,3,f +3686,3832,15,1,f +3686,3832,71,1,f +3686,3942c,71,1,f +3686,40244,0,2,f +3686,4032a,71,10,f +3686,4032a,4,1,f +3686,4081b,72,4,f +3686,41749,15,1,f +3686,41750,15,1,f +3686,4274,1,1,t +3686,4274,1,6,f +3686,43093,1,7,f +3686,43712,15,1,f +3686,44126,0,2,f +3686,44676,72,2,f +3686,44728,15,10,f +3686,4519,71,2,f +3686,45301,15,1,f +3686,4589,36,2,f +3686,4589,71,8,f +3686,4589,34,9,f +3686,4590,72,1,f +3686,4623,0,1,f +3686,4740,71,4,f +3686,48183,72,1,f +3686,48336,71,2,f +3686,48336,15,1,f +3686,48496,0,2,f +3686,4854,72,2,f +3686,4865a,15,2,f +3686,50943,72,1,f +3686,50950,72,6,f +3686,54200,33,4,f +3686,54200,33,2,t +3686,54200,15,2,t +3686,54200,36,4,f +3686,54200,15,12,f +3686,54200,36,2,t +3686,54383,0,1,f +3686,54383,15,1,f +3686,54384,15,1,f +3686,54384,0,1,f +3686,55981,71,4,f +3686,6019,72,2,f +3686,60470a,15,3,f +3686,60470a,4,2,f +3686,61184,71,4,f +3686,61345,15,4,f +3686,61409,4,2,f +3686,61482,71,1,t +3686,61482,71,1,f +3686,61678,15,2,f +3686,6233,71,1,f +3686,63864,15,2,f +3686,63868,0,2,f +3686,63965,15,2,f +3686,64392,15,1,f +3686,64682,15,1,f +3686,85940,0,2,f +3686,85959pat0001,36,1,f +3686,87079,71,2,f +3686,87752,33,1,f +3692,11334,0,2,f +3692,13691pr01,0,1,f +3692,2780,0,1,t +3692,2780,0,2,f +3692,32062,4,1,f +3692,32073,71,1,f +3692,3713,71,3,f +3692,3713,71,1,t +3692,40244,0,1,f +3692,43093,1,2,f +3692,4519,71,2,f +3692,53585,0,2,f +3692,64276,72,2,f +3692,74261,72,2,f +3692,90608,0,2,f +3692,90612,0,3,f +3692,90616,72,2,f +3692,90617,0,2,f +3692,90623,0,1,f +3692,90640,0,5,f +3692,90650,148,2,f +3692,90652,148,1,f +3692,90661,148,2,f +3692,92233,0,2,f +3692,93571,0,3,f +3692,98313,72,8,f +3692,98577,72,1,f +3692,98578,33,1,f +3692,98578,297,1,f +3692,98604,297,1,f +3693,2335pw1,15,1,f +3693,2530,8,1,f +3693,2530,8,1,t +3693,3004,0,1,f +3693,30132,8,1,t +3693,30132,8,1,f +3693,30133,15,2,f +3693,30135,1,1,f +3693,30141,8,2,f +3693,3023,0,1,f +3693,3069bp03,7,1,f +3693,3626bp39,14,1,f +3693,3626bp42,14,1,f +3693,3626bpx23,14,1,f +3693,3629,1,1,f +3693,3629pw1,1,1,f +3693,4491b,6,1,f +3693,4493c01pb02,0,1,f +3693,6065,2,1,f +3693,63965,15,1,f +3693,71342,334,1,f +3693,970c00,1,2,f +3693,970c00,0,1,f +3693,973px41c01,1,1,f +3693,973px42c01,1,1,f +3693,973px43c01,1,1,f +3695,11097,179,1,f +3695,11103,297,1,f +3695,11112pr0001,27,1,f +3695,11126,2,1,f +3695,11127,41,6,f +3695,11767,72,1,f +3695,12551pr0004,297,1,f +3695,2654,72,1,f +3695,2780,0,2,f +3695,2780,0,1,t +3695,30153,36,1,f +3695,3023,27,1,f +3695,30293,72,5,f +3695,30294,72,5,f +3695,30374,36,1,f +3695,3068b,70,3,f +3695,3623,71,2,f +3695,3626cpr1139,288,1,f +3695,3795,70,1,f +3695,3832,70,1,f +3695,3942c,15,2,f +3695,4150,27,3,f +3695,4282,71,1,f +3695,4515,71,1,f +3695,4589,15,6,f +3695,47397,72,1,f +3695,47398,72,1,f +3695,53451,15,1,t +3695,53451,15,10,f +3695,53989,288,2,f +3695,54821,143,1,f +3695,59232,179,1,f +3695,6021430,9999,1,f +3695,6021431,9999,1,f +3695,6021432,9999,1,f +3695,6021433,9999,1,f +3695,6021434,9999,1,f +3695,60470a,71,1,f +3695,63864,288,4,f +3695,63965,0,1,f +3695,64567,297,1,f +3695,64567,297,1,t +3695,86038,320,1,f +3695,87079,2,2,f +3695,87580,70,5,f +3695,87580,10,5,f +3695,970c00pr0442,326,1,f +3695,973pr2244c01,326,1,f +3695,98138,41,1,t +3695,98138,41,1,f +3696,132a,7,2,f +3696,3001a,15,1,f +3696,3001a,1,18,f +3696,3002a,47,1,f +3696,3003,4,1,f +3696,3004,4,2,f +3696,3034,15,6,f +3696,3035,15,7,f +3696,3039,4,1,f +3696,7039d,4,4,f +3696,7049a,15,3,f +3697,2460,8,1,f +3697,2479,0,1,f +3697,3003,4,1,f +3697,3005,4,1,f +3697,3020,7,1,f +3697,3039,47,1,f +3697,3040b,4,2,f +3697,3460,7,1,f +3697,3623,7,1,f +3697,3660,4,1,f +3697,3665,4,2,f +3697,3710,8,2,f +3697,3710,4,4,f +3697,3747b,4,1,f +3697,4070,7,2,f +3697,41769,4,1,f +3697,41770,4,1,f +3697,4286,4,1,f +3697,6141,46,1,t +3697,6141,46,3,f +3698,2413,4,1,f +3698,2419,36,1,f +3698,2555,8,2,f +3698,3003,4,1,f +3698,30091,7,2,f +3698,30093,2,2,f +3698,30117,0,2,f +3698,30153,42,2,f +3698,30214,42,2,f +3698,3022,0,3,f +3698,3023,4,3,f +3698,3023,0,2,f +3698,3031,19,1,f +3698,30374,36,2,f +3698,3048c,0,3,f +3698,30540,8,2,f +3698,30552,7,4,f +3698,32013,36,2,f +3698,32059,8,1,f +3698,32506,0,1,f +3698,3626bpr0190,15,2,f +3698,3700,4,1,f +3698,3749,7,2,f +3698,3749,7,1,t +3698,3959,0,1,f +3698,4032a,2,2,f +3698,40378,0,1,f +3698,40395,0,1,f +3698,4081b,0,2,f +3698,40902,0,2,f +3698,41530,36,2,f +3698,41767,8,1,f +3698,41768,8,1,f +3698,4477,8,1,f +3698,4497,42,2,f +3698,4697b,7,2,f +3698,4697b,7,1,t +3698,6086,0,1,f +3698,6636,4,1,f +3698,970d03,4,2,f +3698,973pb0107c01,0,2,f +3699,vladekmask,9999,1,f +3700,13565pr0001,308,1,f +3700,15439,70,1,f +3700,30132,179,1,f +3700,3068bpr0239,19,1,f +3700,3626cpr1547,14,1,f +3700,88646,0,1,f +3700,970c00pr0756,70,1,f +3700,973pr2839c01,308,1,f +3702,2432,0,1,f +3702,2516,7,1,f +3702,2540,7,1,f +3702,30236,1,1,f +3702,3034,8,1,f +3702,30359a,379,2,f +3702,30375,25,1,f +3702,30377,3,2,f +3702,30377,3,1,t +3702,30414,7,2,f +3702,30530,0,1,f +3702,3062b,33,2,f +3702,3070bp60,0,1,f +3702,3070bp60,0,1,t +3702,4150px7,8,1,f +3702,4589,57,2,f +3702,4859,1,1,f +3702,6019,8,3,f +3702,x117px4,3,1,f +3704,2412b,71,32,f +3704,2460,71,2,f +3704,2780,0,127,f +3704,2780,0,3,t +3704,2817,4,2,f +3704,2819,71,1,f +3704,2825,71,8,f +3704,2850a,71,8,f +3704,2851,14,8,f +3704,2852,71,8,f +3704,2853,14,2,f +3704,2854,72,3,f +3704,298c02,0,2,f +3704,3035,0,1,f +3704,30367b,71,2,f +3704,32009,0,3,f +3704,32013,0,9,f +3704,32014,71,1,f +3704,32016,0,4,f +3704,32034,4,2,f +3704,32034,0,2,f +3704,32039,71,2,f +3704,32054,0,4,f +3704,32054,4,12,f +3704,32062,4,23,f +3704,32072,14,2,f +3704,32073,71,8,f +3704,32123b,71,1,t +3704,32123b,71,8,f +3704,32140,0,2,f +3704,32140,4,4,f +3704,32184,4,11,f +3704,32269,19,2,f +3704,32270,0,4,f +3704,32278,0,10,f +3704,32278,4,1,f +3704,32291,71,4,f +3704,32316,0,4,f +3704,32333,0,2,f +3704,32348,4,6,f +3704,32449,0,4,f +3704,32523,4,2,f +3704,32523,0,6,f +3704,32524,0,3,f +3704,32525,0,5,f +3704,32526,4,2,f +3704,32526,0,10,f +3704,3705,0,6,f +3704,3706,0,2,f +3704,3713,71,1,t +3704,3713,71,6,f +3704,3737,0,3,f +3704,3832,71,1,f +3704,3941,71,7,f +3704,3958,0,1,f +3704,40490,0,1,f +3704,40490,4,4,f +3704,41239,4,1,f +3704,41239,0,2,f +3704,4162,0,2,f +3704,41896,71,4,f +3704,41897,0,4,f +3704,42003,0,15,f +3704,4274,1,2,f +3704,4274,1,1,t +3704,43093,1,31,f +3704,43857,0,2,f +3704,44294,71,4,f +3704,4519,71,15,f +3704,48989,71,3,f +3704,59426,72,2,f +3704,59443,71,10,f +3704,60483,72,4,f +3704,60485,71,2,f +3704,61070,1,1,f +3704,6141,36,1,t +3704,6141,47,4,f +3704,6141,47,1,t +3704,6141,36,2,f +3704,62462,4,4,f +3704,62462,0,10,f +3704,62531,0,3,f +3704,62821,72,1,f +3704,63869,71,5,f +3704,64178,71,1,f +3704,64394,4,1,f +3704,64680,4,1,f +3704,64782,0,5,f +3704,6536,4,4,f +3704,6536,0,12,f +3704,6558,1,39,f +3704,6587,28,2,f +3704,6589,19,3,f +3704,78c18,179,1,f +3704,87080,0,1,f +3704,87082,71,1,f +3704,87083,72,2,f +3704,87086,0,1,f +3704,87761,0,1,f +3705,43362c01,71,1,f +3707,11090,0,2,f +3707,11477,25,4,f +3707,14417,72,4,f +3707,14418,71,4,f +3707,15208,15,1,f +3707,2540,25,2,f +3707,3004,25,1,f +3707,3022,0,3,f +3707,3023,25,2,f +3707,3023,25,1,t +3707,3069b,25,4,f +3707,32474pr1001,15,2,f +3707,3679,71,1,f +3707,3680,0,1,f +3707,3937,0,1,f +3707,3941,25,1,f +3707,3942c,25,1,f +3707,44301a,0,4,f +3707,44302a,72,4,f +3707,54200,25,4,f +3707,54200,25,1,t +3707,6134,71,1,f +3707,6141,57,1,t +3707,6141,57,16,f +3707,85984,0,1,f +3707,87087,0,2,f +3707,87747,0,1,t +3707,87747,0,2,f +3707,99780,0,1,f +3708,3626bpb0134,6,1,f +3708,3626bpb0135,6,1,f +3708,3626bpb0136,78,1,f +3708,45522,19,3,f +3708,973bpb134c01,15,1,f +3708,973bpb135c01,110,1,f +3708,973bpb136c01,0,1,f +3708,bbcard01,9999,1,f +3708,bbcard02,9999,1,f +3708,bbcard03gl,9999,1,f +3708,x494cx1,15,1,f +3708,x494cx1,110,1,f +3708,x494cx1,0,1,f +3710,2446,15,1,f +3710,2447,0,1,f +3710,2540,15,1,f +3710,30027a,14,4,f +3710,30028,0,4,f +3710,3022,7,1,f +3710,3062b,7,2,f +3710,3069bpx36,15,1,f +3710,3626bp04,14,1,f +3710,3795,15,1,f +3710,3829c01,15,1,f +3710,6157,0,2,f +3710,6187,14,1,f +3710,970c00,4,1,f +3710,973px36c01,4,1,f +3711,27bc01,4,1,f +3711,29bc01,4,1,f +3711,3081bc01,4,1,f +3711,3087bc01,4,1,f +3711,31bc01,4,1,f +3711,33bc01,4,1,f +3711,453bc01,4,1,f +3711,604c01,4,1,f +3711,645bc01,4,1,f +3711,646bc01,4,1,f +3712,10928,72,2,f +3712,2780,0,23,f +3712,2780,0,1,t +3712,2951,0,1,f +3712,30394,0,1,f +3712,30552,0,1,f +3712,30663,0,1,f +3712,32013,0,4,f +3712,32017,14,4,f +3712,32034,0,1,f +3712,32039,71,2,f +3712,32054,0,7,f +3712,32062,4,9,f +3712,32065,14,2,f +3712,32073,71,2,f +3712,32123b,14,1,t +3712,32123b,14,8,f +3712,32140,14,2,f +3712,32140,1,1,f +3712,32184,0,3,f +3712,32250,0,2,f +3712,32250,14,2,f +3712,32269,19,1,f +3712,32270,0,4,f +3712,32316,0,2,f +3712,32348,14,2,f +3712,32449,14,8,f +3712,32523,71,4,f +3712,32523,0,2,f +3712,32524,14,2,f +3712,32525,0,4,f +3712,32525,14,1,f +3712,32526,14,6,f +3712,32556,19,1,f +3712,33299a,0,1,f +3712,3705,0,4,f +3712,3706,0,4,f +3712,3713,71,10,f +3712,3713,71,1,t +3712,3749,19,1,f +3712,40490,14,4,f +3712,41677,71,4,f +3712,42003,14,4,f +3712,4274,71,1,t +3712,4274,71,7,f +3712,43093,1,10,f +3712,44294,71,4,f +3712,4519,71,10,f +3712,4716,71,2,f +3712,55013,72,2,f +3712,56145,14,4,f +3712,59443,0,5,f +3712,60483,0,8,f +3712,60485,71,1,f +3712,6141,47,1,t +3712,6141,47,2,f +3712,61481,0,4,f +3712,62462,0,1,f +3712,63869,71,2,f +3712,6536,14,7,f +3712,6558,1,13,f +3712,6632,14,2,f +3712,6632,1,2,f +3712,87082,71,2,f +3712,87083,72,7,f +3712,99009,71,1,f +3712,99010,0,1,f +3712,99773,14,2,f +3713,2446,1,1,f +3713,2446,0,1,f +3713,2447,0,1,f +3713,2543,4,1,f +3713,3626bpr0001,14,5,f +3713,3838,0,1,f +3713,3838,1,1,f +3713,3844,71,1,f +3713,6132,15,1,f +3713,87693,4,1,f +3713,88489,70,1,f +3713,970c00,2,1,f +3713,970c00,0,1,f +3713,970c00,1,1,f +3713,970x026,4,2,f +3713,973c02,4,1,f +3713,973p46c01,2,1,f +3713,973p52c01,0,1,f +3713,973pr1594c01,1,1,f +3713,973px45c01,0,1,f +3716,14210,2,1,f +3716,22667,4,2,f +3716,22670,63,1,f +3716,22670,383,1,f +3716,2412b,0,2,f +3716,2540,15,2,f +3716,2555,74,3,f +3716,3004,74,4,f +3716,3005,45,1,f +3716,30056,73,2,f +3716,30078,5,1,f +3716,30078,462,1,f +3716,30153,45,1,t +3716,30153,45,1,f +3716,30153,143,2,f +3716,30153,34,2,f +3716,30153,34,1,t +3716,3020,13,3,f +3716,3020,27,3,f +3716,3035,15,1,f +3716,3065,34,2,f +3716,3069b,15,1,f +3716,3069bpr0055,15,2,f +3716,32202,10,1,f +3716,33009px5,5,1,f +3716,33061,34,2,f +3716,3308,15,2,f +3716,33213,13,1,f +3716,33215,26,1,f +3716,33217,34,1,f +3716,33286,115,9,f +3716,33291,15,2,f +3716,33325,4,1,f +3716,33326,4,1,f +3716,3455,15,2,f +3716,3622,45,1,f +3716,3659,15,2,f +3716,3710,15,4,f +3716,3794a,15,1,f +3716,3898pb01,125,1,f +3716,3937,4,1,f +3716,3941,10,2,f +3716,3942c,15,2,f +3716,3957a,13,1,f +3716,3958,26,1,f +3716,3958,15,1,f +3716,3960p0a,4,1,f +3716,4032a,10,2,f +3716,4150,125,1,f +3716,4150px26,14,1,f +3716,4150px30,462,1,f +3716,4201,74,1,f +3716,44510pb02,10,1,f +3716,44512,10,2,f +3716,4495b,5,1,f +3716,45024pb01c01,13,1,f +3716,45719,2,1,f +3716,4589,46,4,f +3716,4727,10,2,f +3716,4727,115,6,f +3716,4728,13,1,f +3716,4728,15,2,f +3716,4740,45,3,f +3716,4740,34,4,f +3716,4865a,15,1,f +3716,6079,15,2,f +3716,6108,15,2,f +3716,6124,45,2,f +3716,6134,4,1,f +3716,6141,14,4,f +3716,6141,57,5,f +3716,6141,5,4,f +3716,6178,5,1,f +3716,6179,5,2,f +3716,6182,10,2,f +3716,6182,5,5,f +3716,6254,13,2,f +3716,6256,13,3,f +3716,6992,4,1,f +3716,pouch04,10,1,f +3716,x222,5,1,f +3717,21692,27,1,f +3717,3626cpr1737,14,1,f +3717,55236,27,2,f +3717,88646,0,1,f +3717,970c00pr0919,10,1,f +3717,973pr3122c01,10,1,f +3719,15712,297,2,f +3719,3023,4,4,f +3719,3070b,0,1,f +3719,3623,4,2,f +3719,50950,0,2,f +3719,50950,4,2,f +3719,52107,0,1,f +3719,54200,40,1,f +3719,54200,4,2,f +3719,87087,4,1,f +3720,2654,0,1,f +3720,2654,27,1,f +3720,3004,1,2,f +3720,3004,70,2,f +3720,30173b,0,1,f +3720,3022,1,1,f +3720,3022,70,1,f +3720,30374,0,1,f +3720,32192,2,8,f +3720,3708,0,10,f +3720,3848,148,1,f +3720,4643636,9999,1,f +3720,4643637,9999,1,f +3720,4643638,9999,1,f +3720,4643639,9999,1,f +3720,4643640,9999,1,f +3720,4643641,9999,1,f +3720,4643642,9999,1,f +3720,4643643,9999,1,f +3720,4643644,9999,1,f +3720,4643645,9999,1,f +3720,53451,25,2,f +3720,53451,25,1,t +3720,59443,2,2,f +3720,60752,297,1,f +3720,63965,297,1,f +3720,92690,297,1,f +3720,92690,71,1,f +3720,98136,272,1,f +3720,98139,297,1,f +3720,98341pr0003,297,1,f +3720,98342pr0005,85,1,f +3720,98354pr0006,10,1,f +3720,98354pr0007,14,1,f +3722,3020,0,16,f +3722,3021,0,12,f +3722,3022,0,16,f +3722,3034,0,4,f +3722,3795,0,4,f +3722,3832,0,4,f +3723,32039,0,2,f +3723,32062,4,4,f +3723,4274,71,1,t +3723,4274,71,1,f +3723,54821,10,1,f +3723,64262,57,1,f +3723,64727,4,2,f +3723,90607,0,2,f +3723,90612,0,3,f +3723,90616,4,2,f +3723,90617,0,2,f +3723,90625,0,1,f +3723,90630,0,1,f +3723,90639,4,2,f +3723,90640,0,2,f +3723,90661,0,2,f +3723,92202,0,1,f +3723,92217,148,2,f +3723,92220,4,6,f +3723,92233,0,3,f +3723,93571,0,2,f +3723,98563,148,1,f +3723,98564,4,1,f +3723,98567,0,1,f +3723,98569,0,1,f +3723,98570pat01,15,1,f +3723,98592,0,2,f +3723,98596,0,1,f +3723,98603,0,1,f +3724,2335,15,1,f +3724,2412b,80,7,f +3724,2412b,36,3,f +3724,2420,15,2,f +3724,2431,72,2,f +3724,2431,15,5,f +3724,2431,4,1,f +3724,2431,1,1,f +3724,2431pr0017,14,2,f +3724,2432,15,4,f +3724,2432,1,2,f +3724,2436,0,9,f +3724,2436,15,7,f +3724,2436,4,2,f +3724,2436,1,1,f +3724,2436,71,5,f +3724,2444,71,2,f +3724,2540,14,1,f +3724,2540,0,1,f +3724,2555,15,10,f +3724,2654,0,2,f +3724,2780,0,3,t +3724,2780,0,12,f +3724,2877,4,1,f +3724,3001,4,1,f +3724,3001,15,6,f +3724,3001,71,1,f +3724,3002,4,3,f +3724,3002,0,3,f +3724,30027b,0,4,f +3724,30028,0,4,f +3724,3003,1,1,f +3724,3003,15,1,f +3724,3003,4,1,f +3724,3003,14,1,f +3724,3004,14,4,f +3724,3004,15,4,f +3724,3010,0,1,f +3724,3010,15,4,f +3724,30145,15,1,f +3724,30162,72,4,f +3724,3020,71,7,f +3724,3020,25,1,f +3724,3020,0,3,f +3724,3020,14,1,f +3724,3020,4,2,f +3724,3020,1,4,f +3724,3020,15,7,f +3724,3021,0,5,f +3724,3021,25,1,f +3724,3021,14,1,f +3724,3021,71,1,f +3724,3021,72,4,f +3724,3021,15,6,f +3724,3021,4,7,f +3724,3021,1,3,f +3724,3022,4,3,f +3724,3022,4,1,t +3724,3022,25,4,f +3724,3022,71,1,f +3724,3022,15,2,f +3724,3022,14,2,f +3724,3022,0,1,f +3724,3022,1,1,f +3724,3023,15,8,f +3724,3023,4,4,f +3724,3023,27,4,f +3724,3023,72,5,f +3724,3023,14,5,f +3724,3023,1,5,f +3724,3023,71,7,f +3724,3023,0,2,f +3724,3024,4,1,f +3724,3027,72,3,f +3724,3028,72,3,f +3724,3031,1,1,f +3724,3031,27,1,f +3724,3031,0,2,f +3724,3032,72,2,f +3724,3034,15,2,f +3724,3034,0,1,f +3724,3035,0,1,f +3724,3035,15,4,f +3724,3037,0,1,f +3724,3039,71,1,f +3724,3039,15,4,f +3724,30395,72,1,f +3724,3040b,4,2,f +3724,3040b,14,4,f +3724,30553,0,1,f +3724,30635,0,1,f +3724,30636,72,1,f +3724,3068b,15,10,f +3724,3068b,1,2,f +3724,3068b,0,2,f +3724,3069b,4,2,f +3724,3069b,14,2,f +3724,3069b,1,2,f +3724,3069b,15,4,f +3724,3069b,27,3,f +3724,3069b,0,5,f +3724,3070b,1,1,t +3724,3070b,1,2,f +3724,3070b,4,1,f +3724,3070b,46,2,f +3724,3070b,36,4,f +3724,32000,14,1,f +3724,32013,72,2,f +3724,32018,15,4,f +3724,32028,0,3,f +3724,32028,15,2,f +3724,32028,14,1,f +3724,32028,71,4,f +3724,32123b,71,12,f +3724,32123b,71,1,t +3724,32250,0,4,f +3724,3245b,14,4,f +3724,3245b,15,2,f +3724,32523,71,2,f +3724,32523,72,2,f +3724,32530,72,2,f +3724,32556,71,2,f +3724,3460,0,2,f +3724,3460,4,2,f +3724,3623,0,2,f +3724,3623,4,3,f +3724,3623,1,2,f +3724,3623,15,2,f +3724,3666,14,4,f +3724,3673,71,2,f +3724,3678b,71,1,f +3724,3679,71,2,f +3724,3680,0,2,f +3724,3684,15,2,f +3724,3700,71,4,f +3724,3700,14,4,f +3724,3701,4,1,f +3724,3705,0,2,f +3724,3706,0,2,f +3724,3710,72,2,f +3724,3710,27,3,f +3724,3710,4,1,f +3724,3710,0,4,f +3724,3710,1,1,f +3724,3738,0,6,f +3724,3749,19,4,f +3724,3788,4,3,f +3724,3788,27,2,f +3724,3794a,15,4,f +3724,3794a,71,6,f +3724,3794a,4,10,f +3724,3794a,1,1,f +3724,3795,71,1,f +3724,3795,0,9,f +3724,3821,4,1,f +3724,3822,4,1,f +3724,3832,0,1,f +3724,3894,14,4,f +3724,3941,14,2,f +3724,3957a,1,1,f +3724,3957a,80,6,f +3724,40490,14,4,f +3724,4070,1,12,f +3724,4085c,15,2,f +3724,4085c,0,4,f +3724,4085c,4,2,f +3724,4085c,1,2,f +3724,4162,0,2,f +3724,4162,15,6,f +3724,41752,72,1,t +3724,41862,71,2,f +3724,41862,0,1,f +3724,42074,135,1,f +3724,4274,71,2,t +3724,4274,71,6,f +3724,4282,71,2,f +3724,44300,71,2,f +3724,44302a,71,2,f +3724,44567a,0,1,f +3724,4460b,14,4,f +3724,44674,14,1,f +3724,44728,71,1,f +3724,44728,4,1,f +3724,44728,15,11,f +3724,44728,1,1,f +3724,45179,72,2,f +3724,4519,71,4,f +3724,45677,0,1,f +3724,47458,0,2,f +3724,4865a,15,6,f +3724,4865a,71,4,f +3724,4865a,14,2,f +3724,4871,15,2,f +3724,4871,1,2,f +3724,4872,40,4,f +3724,50943,80,1,f +3724,50944pr0001,0,32,f +3724,50947,1,2,f +3724,50947,4,6,f +3724,50947,15,2,f +3724,50949,0,1,f +3724,50950,0,6,f +3724,50950,4,4,f +3724,50950,15,3,f +3724,50951,0,32,f +3724,53451,15,1,t +3724,53451,15,2,f +3724,54200,27,2,f +3724,54200,4,2,f +3724,54200,0,14,f +3724,54200,1,4,f +3724,54200,40,2,f +3724,54200,36,2,f +3724,54200,46,5,f +3724,56823c50,0,1,f +3724,6014b,0,4,f +3724,6015,0,4,f +3724,6112,15,2,f +3724,6141,36,2,f +3724,6141,4,4,f +3724,6141,46,4,f +3724,6141,4,1,t +3724,6141,71,4,f +3724,6141,36,1,t +3724,6141,46,1,t +3724,6141,14,1,t +3724,6141,34,2,f +3724,6141,14,8,f +3724,6141,34,1,t +3724,6141,71,1,t +3724,6141,80,4,f +3724,6157,0,17,f +3724,6157,72,2,f +3724,6157,71,1,f +3724,6179,15,2,f +3724,6231,14,4,f +3724,6231,0,4,f +3724,6259,15,6,f +3724,6538b,72,4,f +3724,6564,15,6,f +3724,6565,15,6,f +3724,6632,72,4,f +3724,73983,15,1,f +3724,78c18,179,4,f +3724,8147stk01,9999,1,t +3724,85543,15,2,f +3725,3005,15,6,f +3725,3020,462,1,f +3725,3023,0,1,f +3725,3023,462,1,f +3725,3031,462,1,f +3725,32014,7,1,f +3725,3626bpb0022,14,1,f +3725,3666,15,1,f +3725,3707,0,1,f +3725,3710,462,1,f +3725,3794a,0,2,f +3725,3941,0,1,f +3725,4215b,47,1,f +3725,43373,25,1,f +3725,43374,15,1,f +3725,43702pr0001,25,1,f +3725,43702pr0001,25,1,t +3725,6636,15,1,f +3725,973bpb159c01,7,1,f +3725,x494cx1,0,1,f +3726,2412b,1,1,f +3726,2446,7,1,f +3726,2447,33,1,f +3726,2447,33,1,t +3726,2540,7,1,f +3726,2817,0,2,f +3726,298c02,7,1,f +3726,298c02,7,1,t +3726,3020,7,1,f +3726,30237a,15,2,f +3726,30367a,15,4,f +3726,3626bpx24,14,1,f +3726,3749,7,4,f +3726,3829c01,15,1,f +3726,3957a,0,1,f +3726,4032a,0,4,f +3726,4349,0,1,f +3726,4740,15,1,f +3726,970x026,1,1,f +3726,973px57c01,7,1,f +3727,2397,0,1,f +3727,2412a,15,2,f +3727,2432,0,1,f +3727,2446,0,1,f +3727,2447,42,1,f +3727,2450,0,2,f +3727,2452,0,4,f +3727,2466,42,1,f +3727,3022,0,1,f +3727,3023,0,1,f +3727,3023,15,2,f +3727,3069bp68,15,2,f +3727,3626apr0001,14,1,f +3727,3747a,0,1,f +3727,3832,15,1,f +3727,3838,0,1,f +3727,3839b,0,1,f +3727,3935,0,1,f +3727,3936,0,1,f +3727,3937,0,1,f +3727,3938,15,1,f +3727,3956,15,1,f +3727,3959,0,1,f +3727,4276b,15,4,f +3727,4345b,0,1,f +3727,4346p60,0,1,f +3727,4589,42,2,f +3727,4591,0,1,f +3727,4740,42,1,f +3727,970x026,15,1,f +3727,973p51c01,15,1,f +3729,11211,71,2,f +3729,11214,72,1,f +3729,11477,14,2,f +3729,14704,71,4,f +3729,15208,15,2,f +3729,15571,14,2,f +3729,18674,70,1,f +3729,2476a,71,1,f +3729,3020,14,1,f +3729,3021,14,1,f +3729,3022,191,1,f +3729,3039,191,4,f +3729,3049d,191,2,f +3729,32474pr1001,15,2,f +3729,3700,14,2,f +3729,3731,71,4,f +3729,43710,14,1,f +3729,43711,14,1,f +3729,49668,191,3,f +3729,49668,182,3,f +3729,53451,0,2,f +3729,53451,0,1,t +3729,54200,182,1,t +3729,54200,182,2,f +3729,59443,14,1,f +3729,60474,14,1,f +3729,64727,4,1,f +3729,87087,0,2,f +3729,92280,71,2,f +3731,3626apr0001,14,4,f +3731,3835,7,1,f +3731,3842a,4,2,f +3731,3843,0,2,f +3731,3844,7,2,f +3731,3846,7,1,f +3731,3847a,7,1,f +3731,3848,7,1,f +3731,970x021,7,2,f +3731,970x021,0,2,f +3731,973p47c01,4,2,f +3731,973px45c01,0,2,f +3732,11836,25,1,f +3732,12602,14,2,f +3732,12693,1,1,f +3732,12694,73,2,f +3732,12695,4,1,f +3732,12938,25,1,f +3732,2301,14,2,f +3732,3011,1,1,f +3732,3437,27,5,f +3732,3437,73,4,f +3732,3437,1,6,f +3732,40554,14,1,f +3732,4066,25,2,f +3732,40666,4,2,f +3732,40666,1,2,f +3732,44524,4,1,f +3732,51703,182,2,f +3732,51708,70,2,f +3732,51725,4,2,f +3732,61649,73,1,f +3732,62664,73,1,f +3732,62941pr0008,4,1,f +3732,6510,25,1,f +3732,6510,10,1,f +3732,74623,15,1,f +3732,75113pr0002,5,1,f +3732,75115a,4,1,f +3732,75737,4,1,f +3732,89873pr0004,71,1,f +3732,90265,15,1,f +3732,93353,1,2,f +3732,95463,4,1,f +3732,98223,73,2,f +3732,98223,4,1,f +3732,98233,4,2,f +3732,98252,27,2,f +3732,99508,15,1,f +3733,3020,14,1,f +3733,3039,14,1,f +3733,3298,14,1,f +3733,3660,14,1,f +3733,3747b,14,1,f +3733,4623,14,1,f +3735,2780,0,2,f +3735,32062,0,4,f +3735,32174,72,2,f +3735,32270,71,2,f +3735,32475,72,2,f +3735,32476,86,2,f +3735,32533pb199,25,1,f +3735,3749,19,2,f +3735,41413,178,1,f +3735,44135,72,1,f +3735,44810,86,1,f +3735,4519,71,2,f +3735,47296,72,2,f +3735,47328,86,2,f +3735,47330,86,1,f +3735,47331,86,1,f +3735,47332,86,1,f +3735,47334,179,1,f +3735,48446,179,2,f +3735,x1190,33,1,f +3736,3626bpr0838,14,1,f +3736,88646,0,1,f +3736,90463,72,1,f +3736,95319pr0001,28,1,f +3736,970c00,28,1,f +3736,973pr1835c01,28,1,f +3737,3005,114,3,f +3737,3070b,34,1,f +3737,3070b,34,1,t +3737,3070b,15,1,f +3737,3070b,15,1,t +3737,3070b,46,1,f +3737,3070b,46,1,t +3737,3471pat0001,10,1,f +3737,6141,4,1,t +3737,6141,46,1,t +3737,6141,46,1,f +3737,6141,4,1,f +3740,2412b,71,9,f +3740,2445,71,1,f +3740,2460,0,1,f +3740,2730,0,2,f +3740,2780,0,1,t +3740,2780,0,4,f +3740,3002,14,1,f +3740,3003,2,1,f +3740,3003,1,1,f +3740,3003,4,1,f +3740,3004,14,3,f +3740,3010,14,5,f +3740,30151a,272,1,f +3740,30151apr0001,85,1,f +3740,30157,72,2,f +3740,30165,72,2,f +3740,3020,0,3,f +3740,3021,72,3,f +3740,3022,14,4,f +3740,3023,71,2,f +3740,3024,14,2,f +3740,3032,14,1,f +3740,30374,70,1,f +3740,3039,14,4,f +3740,30414,0,1,f +3740,3068b,71,1,f +3740,32062,4,1,f +3740,32064b,71,1,f +3740,32526,71,2,f +3740,3622,0,2,f +3740,3626bpr0694,78,1,f +3740,3700,0,1,f +3740,3706,0,1,f +3740,3710,14,2,f +3740,3710,71,1,f +3740,3710,0,2,f +3740,3747b,0,3,f +3740,3794b,14,2,f +3740,3795,14,1,f +3740,3823,47,1,f +3740,3829c01,0,1,f +3740,3832,72,1,f +3740,3833,14,1,f +3740,3941,14,1,f +3740,4150,0,1,f +3740,43093,1,1,f +3740,44728,14,3,f +3740,45590,0,1,f +3740,45677,14,1,f +3740,4740,47,2,f +3740,4740,72,2,f +3740,4864b,47,2,f +3740,52501,14,2,f +3740,54200,0,1,t +3740,54200,0,4,f +3740,55981,14,4,f +3740,56891,0,4,f +3740,59443,71,1,f +3740,6091,0,2,f +3740,6141,36,4,f +3740,6141,71,4,f +3740,6141,71,1,t +3740,6141,36,1,t +3740,62462,0,1,f +3740,90001,85,1,f +3740,90109,14,1,f +3740,90187c01pr0001,26,1,f +3740,90190,26,1,f +3740,90199,25,2,f +3740,90203,26,1,f +3740,bb458c01pb01,25,1,f +3741,11153,15,6,f +3741,11211,19,8,f +3741,11477,15,9,f +3741,12825,15,1,f +3741,15573,70,1,f +3741,2420,15,4,f +3741,2877,70,2,f +3741,3010,0,2,f +3741,3020,4,3,f +3741,3020,71,4,f +3741,3020,15,9,f +3741,3022,4,1,f +3741,3022,15,2,f +3741,3023,14,10,f +3741,30236,15,2,f +3741,3024,2,1,f +3741,3024,2,1,t +3741,30414,71,8,f +3741,3069b,15,5,f +3741,3070b,2,1,t +3741,3070b,70,2,f +3741,3070b,70,1,t +3741,3070b,2,1,f +3741,3070b,15,1,f +3741,3070b,15,1,t +3741,3623,15,1,f +3741,3710,1,6,f +3741,3710,15,4,f +3741,3710,27,10,f +3741,3941,0,1,f +3741,4032a,2,1,f +3741,48729a,0,1,t +3741,48729a,0,2,f +3741,50950,4,1,f +3741,53451,0,1,t +3741,53451,0,1,f +3741,59900,70,1,f +3741,59900,25,1,f +3741,60474,0,1,f +3741,60474,4,1,f +3741,6141,0,2,f +3741,6141,0,1,t +3741,63965,70,1,f +3741,85984,15,4,f +3741,87580,15,3,f +3741,88930,15,9,f +3741,93273,15,4,f +3741,98138pr0008,15,1,t +3741,98138pr0008,15,2,f +3741,98313,0,2,f +3742,30187a,1,1,f +3742,30187c04,1,1,t +3742,30189,1,1,f +3742,30190,0,1,f +3742,3024,42,1,t +3742,3024,36,1,t +3742,3024,36,1,f +3742,3024,42,1,f +3742,3069b,73,1,f +3742,3626bpb0048,14,1,f +3742,4032a,7,2,f +3742,41334,0,1,f +3742,41864,0,2,f +3742,6015,0,1,f +3742,6126a,57,2,f +3742,970c00,0,1,f +3742,973pb0056c01,15,1,f +3745,30194,72,1,f +3745,3626bpr0410,14,1,f +3745,41334,0,1,f +3745,970c00,72,1,f +3745,973pr1197c01,15,1,f +3746,196926,9999,1,t +3746,266bc01,15,2,f +3746,2731,7,1,f +3746,3001,7,3,f +3746,3002,4,2,f +3746,3003,15,7,f +3746,3003,0,5,f +3746,3004,15,2,f +3746,3004,4,10,f +3746,3004,0,41,f +3746,3005,4,4,f +3746,3005,0,8,f +3746,3007,15,2,f +3746,3008,15,4,f +3746,3008,4,6,f +3746,3009,15,7,f +3746,3009,4,10,f +3746,3009,0,8,f +3746,3010,0,4,f +3746,3010,15,6,f +3746,3010,4,10,f +3746,3020,7,6,f +3746,3020,0,15,f +3746,3021,0,4,f +3746,3023,0,26,f +3746,3023,14,2,f +3746,3029,0,1,f +3746,3030,0,1,f +3746,3031,7,2,f +3746,3032,0,2,f +3746,3033,7,3,f +3746,3034,14,1,f +3746,3034,0,3,f +3746,3036,7,1,f +3746,3039,0,3,f +3746,3039p23,7,2,f +3746,3039p34,7,2,f +3746,3040b,7,8,f +3746,3062b,0,8,f +3746,3062b,7,8,f +3746,3065,47,4,f +3746,3068b,0,7,f +3746,3070b,4,3,f +3746,3228b,7,12,f +3746,3229b,7,16,f +3746,3230b,7,16,f +3746,3241,7,15,f +3746,3242,7,6,f +3746,3297,4,4,f +3746,3298,4,4,f +3746,3298,0,6,f +3746,3460,4,2,f +3746,3460,0,1,f +3746,3622,4,8,f +3746,3623,0,8,f +3746,3623,7,2,f +3746,3624,4,2,f +3746,3625,0,1,f +3746,3626apr0001,14,10,f +3746,3629,7,1,f +3746,3633,0,2,f +3746,3660,0,26,f +3746,3660,4,4,f +3746,3666,0,12,f +3746,3675,0,4,f +3746,3710,0,9,f +3746,3747a,15,1,f +3746,3794a,0,8,f +3746,3795,0,12,f +3746,3853,0,4,f +3746,3856,0,8,f +3746,3898,15,1,f +3746,3899,1,2,f +3746,3900,7,1,f +3746,3901,0,1,f +3746,3901,6,2,f +3746,3939,47,4,f +3746,3960,7,2,f +3746,4022,0,6,f +3746,4023,0,6,f +3746,4032a,0,6,f +3746,4033,0,12,f +3746,4034,47,12,f +3746,4035,0,4,f +3746,4036,47,4,f +3746,4079,14,11,f +3746,4081a,7,2,f +3746,4083,0,1,f +3746,4092,0,5,f +3746,4093b,0,3,f +3746,4166,8,44,f +3746,4168,7,2,f +3746,4169,7,2,f +3746,4170,4,2,f +3746,4171,47,4,f +3746,4180c01,0,11,f +3746,4181p03,4,4,f +3746,4182p03,4,4,f +3746,4183,47,8,f +3746,4213,0,2,f +3746,4215ap24,4,2,f +3746,4215ap25,4,2,f +3746,4275a,7,4,f +3746,4275a,0,2,f +3746,4276a,0,2,f +3746,4276a,7,2,f +3746,4286,0,8,f +3746,4315,0,2,f +3746,4349,0,2,f +3746,4449,6,3,f +3746,4449,15,2,f +3746,4477,4,12,f +3746,4509,0,8,f +3746,4530,0,2,f +3746,4531,0,2,f +3746,4532,4,2,f +3746,4533,4,2,f +3746,458,7,6,f +3746,501c,0,1,f +3746,6141,47,4,f +3746,6141,36,4,f +3746,69c01,15,1,f +3746,73090a,0,2,f +3746,73092,0,6,f +3746,765c28,7,1,f +3746,766c28,7,3,f +3746,867,0,2,f +3746,970c00,0,3,f +3746,970c00,7,1,f +3746,970c00,1,4,f +3746,970c00,15,1,f +3746,970c00,4,1,f +3746,973c01,15,2,f +3746,973c02,4,3,f +3746,973c07,1,2,f +3746,973p18c01,1,2,f +3746,973px3c01,15,1,f +3747,2445,0,1,f +3747,2540,7,1,f +3747,2873,19,1,f +3747,298c02,0,1,f +3747,298c02,0,1,t +3747,3004,19,1,f +3747,30132,8,1,t +3747,30132,8,1,f +3747,30141,8,1,f +3747,30147,7,1,f +3747,30148,0,1,f +3747,30149,19,1,f +3747,30150,6,1,f +3747,30152pat0001,0,1,f +3747,30153,36,1,f +3747,30155,19,4,f +3747,30157,8,2,f +3747,30158,6,1,f +3747,30168px1,14,1,f +3747,30169,0,1,f +3747,30172,15,1,f +3747,3021,7,1,f +3747,3021,6,2,f +3747,3023,0,1,f +3747,3023,4,3,f +3747,3032,0,2,f +3747,3044c,19,1,f +3747,3068bpx21,19,1,f +3747,3069bpa0,19,1,f +3747,3069bpa4,15,1,f +3747,3455,19,2,f +3747,3483,0,4,f +3747,3626bpa1,14,1,f +3747,3626bpr0895,15,1,f +3747,3666,7,4,f +3747,3710,0,1,f +3747,3795,7,1,f +3747,3829c01,7,1,f +3747,3837,8,1,f +3747,3841,8,1,f +3747,4081b,7,2,f +3747,4315,0,1,f +3747,4865a,47,2,f +3747,6019,7,2,f +3747,6141,46,1,t +3747,6141,46,2,f +3747,6260,15,1,f +3747,6265,15,1,t +3747,6265,15,2,f +3747,6266,15,2,f +3747,970c00,2,1,f +3747,973pa1c01,15,1,f +3749,2540,71,1,f +3749,2555,1,1,f +3749,30027b,71,4,f +3749,30028,0,4,f +3749,3004,15,2,f +3749,3020,71,1,f +3749,3020,15,1,f +3749,3039,40,1,f +3749,3623,71,2,f +3749,3794a,71,1,f +3749,4600,0,2,f +3749,6141,42,1,f +3749,6141,42,1,t +3751,3437,191,1,f +3751,3437,14,1,f +3751,3437,27,1,f +3751,6510,4,1,f +3751,87313,0,1,f +3752,3001,4,1,f +3752,3003,14,2,f +3752,3022,14,3,f +3752,3023,14,3,f +3752,3034,72,1,f +3752,30367c,14,1,f +3752,30602,40,1,f +3752,3460,0,4,f +3752,3666,14,2,f +3752,3679,71,1,f +3752,3680,0,1,f +3752,3794a,72,4,f +3752,4081b,0,4,f +3752,4150,71,1,f +3752,44302a,72,3,f +3752,44567a,71,3,f +3752,44728,72,1,f +3752,4589,71,2,f +3753,2412b,3,5,f +3753,2432,0,4,f +3753,2444,7,2,f +3753,2447,42,1,f +3753,2447,42,1,t +3753,2456,14,1,f +3753,2458,7,2,f +3753,2540,14,2,f +3753,2780,0,2,f +3753,2951,0,1,f +3753,3001,14,1,f +3753,3002,0,2,f +3753,3003,14,2,f +3753,3007,7,1,f +3753,3008,7,2,f +3753,3009,14,2,f +3753,30104,6,1,f +3753,3020,14,1,f +3753,3023,4,1,f +3753,3023,7,4,f +3753,30293,6,1,f +3753,30294,6,1,f +3753,30295,8,1,f +3753,30298,6,1,f +3753,30299,8,1,f +3753,30305c01,6,1,f +3753,30324,0,4,f +3753,30325,6,1,f +3753,30385,42,1,f +3753,3039,8,1,f +3753,3039px15,3,1,f +3753,3040b,0,4,f +3753,3069bp03,7,1,f +3753,3298,7,2,f +3753,3626bpx90,14,1,f +3753,3678a,0,2,f +3753,3684,3,1,f +3753,3700,7,2,f +3753,3937,0,2,f +3753,3938,7,2,f +3753,4006,0,1,f +3753,4085c,7,2,f +3753,4095,3,1,f +3753,4328,7,1,f +3753,4460b,7,2,f +3753,4589,42,2,f +3753,4623,4,1,f +3753,4735,7,2,f +3753,4740,8,2,f +3753,6140,14,1,f +3753,6141,57,1,f +3753,6141,42,2,f +3753,76385,8,2,f +3753,970x026,8,1,f +3753,973px143c01,0,1,f +3756,2162c01,8,1,f +3756,2412b,0,3,f +3756,2412b,27,2,f +3756,2431,27,2,f +3756,2446pb03,4,1,f +3756,2447,42,1,t +3756,2447,42,1,f +3756,2476a,7,2,f +3756,2695,462,2,f +3756,2696,0,2,f +3756,3003,8,4,f +3756,3004,2,3,f +3756,3008,27,1,f +3756,3009,2,4,f +3756,3010,0,1,f +3756,3023,14,4,f +3756,30236,27,2,f +3756,3033,27,2,f +3756,3034,27,2,f +3756,30363,27,1,f +3756,30389a,0,1,f +3756,3039,4,1,f +3756,3040b,42,2,f +3756,3040b,36,4,f +3756,30414,2,1,f +3756,30602,27,1,f +3756,30636c01,4,1,f +3756,3162c01,8,1,f +3756,32062,4,2,f +3756,32064b,14,2,f +3756,32310,148,2,f +3756,3626bpr0233,14,1,f +3756,3660,2,10,f +3756,3665,27,4,f +3756,3666,27,1,f +3756,3666,14,1,f +3756,3673,7,4,f +3756,3701,14,1,f +3756,3702,0,1,f +3756,3708,0,1,f +3756,3710,2,1,f +3756,3713,7,5,f +3756,3749,7,6,f +3756,3795,2,1,f +3756,3829c01,14,1,f +3756,40902,8,1,f +3756,4150,14,2,f +3756,41749,27,1,f +3756,41749,40,1,f +3756,41749px2,27,1,f +3756,41750,40,1,f +3756,41750,27,1,f +3756,41750px2,27,1,f +3756,41751pr6,40,1,f +3756,41766,27,1,f +3756,41767,2,1,f +3756,41768,2,1,f +3756,41769,27,1,f +3756,41770,27,1,f +3756,42022,0,2,f +3756,42022,2,4,f +3756,42023,27,2,f +3756,4349,4,4,f +3756,6215,8,2,f +3756,6581,0,4,f +3756,6582,462,4,f +3756,970x026,4,1,f +3756,973pb0223c01,4,1,f +3757,32009,1,4,f +3757,6629,4,4,f +3758,2780,0,5,f +3758,2780,0,1,t +3758,32013,71,2,f +3758,32054,4,2,f +3758,32062,4,6,f +3758,3705,0,2,f +3758,43093,1,2,f +3758,4519,71,1,f +3758,47306,0,1,f +3758,47311,0,1,f +3758,47328,0,4,f +3758,49423,0,1,f +3758,53545,72,1,f +3758,53549,0,2,f +3758,54177,0,2,f +3758,60176,320,3,f +3758,61053,320,4,f +3758,62462,71,2,f +3758,64251,320,2,f +3758,64262,57,1,f +3758,64275,135,2,f +3758,64277c01,297,1,f +3758,64291,0,3,f +3758,64300,0,1,f +3758,64305,0,2,f +3758,64889pr0001,135,1,f +3758,6553,71,1,f +3759,458,0,8,f +3760,3020,7,24,f +3760,728,7,1,f +3760,729,47,1,f +3761,14210,15,1,f +3761,2343,0,2,f +3761,2357,0,5,f +3761,2357,72,7,f +3761,2377,15,2,f +3761,2412b,0,4,f +3761,2412b,297,1,f +3761,2431,0,7,f +3761,2431,72,6,f +3761,2431pr0028,72,2,f +3761,2432,71,6,f +3761,2436,15,1,f +3761,2445,71,1,f +3761,2453a,0,5,f +3761,2454a,72,4,f +3761,2454a,0,6,f +3761,2465,0,1,f +3761,2476a,71,2,f +3761,2486,71,2,f +3761,2488,0,1,f +3761,2489,70,1,f +3761,2540,71,4,f +3761,2555,71,1,f +3761,2555,0,11,f +3761,2561,70,3,f +3761,2653,71,2,f +3761,2654,71,1,f +3761,2736,71,1,f +3761,2780,0,2,f +3761,2780,0,1,t +3761,298c02,71,1,f +3761,298c02,71,1,t +3761,3001,70,4,f +3761,3003,72,13,f +3761,3004,0,33,f +3761,3004,72,9,f +3761,3004,70,8,f +3761,30044,70,12,f +3761,30045,0,9,f +3761,30046,0,6,f +3761,3005,70,34,f +3761,3005,15,4,f +3761,3005,0,18,f +3761,30055,0,17,f +3761,30056,0,6,f +3761,3008,0,7,f +3761,3009,70,2,f +3761,3009,0,12,f +3761,3009,15,4,f +3761,3010,70,11,f +3761,3010,0,20,f +3761,30103,0,1,f +3761,30136,19,4,f +3761,30156pb02,72,3,f +3761,30173a,0,1,f +3761,30176,2,6,f +3761,3020,0,2,f +3761,3021,71,3,f +3761,3023,72,11,f +3761,3023,70,6,f +3761,30237a,71,2,f +3761,3027,71,1,f +3761,3028,15,1,f +3761,3030,72,2,f +3761,3031,72,1,f +3761,3032,0,1,f +3761,3034,72,1,f +3761,3034,70,2,f +3761,3035,0,2,f +3761,3036,71,3,f +3761,3037,0,2,f +3761,30374,41,2,f +3761,30374,0,5,f +3761,30377,71,4,f +3761,30377,71,1,t +3761,30389b,71,1,f +3761,3039,0,3,f +3761,3041,0,4,f +3761,30414,15,2,f +3761,3043,0,1,f +3761,3048c,71,4,f +3761,30540,71,2,f +3761,30553,72,4,f +3761,30562,40,2,f +3761,3062b,46,2,f +3761,3062b,47,6,f +3761,3062b,0,4,f +3761,3068b,0,2,f +3761,3068bpr0136,72,1,f +3761,3069b,33,2,f +3761,3069b,0,12,f +3761,3069bp02,71,1,f +3761,3070b,46,5,f +3761,3070bpr007,19,2,f +3761,3190,15,1,f +3761,3191,15,1,f +3761,32000,15,2,f +3761,32013,72,3,f +3761,32015,0,3,f +3761,32028,71,10,f +3761,32034,1,1,f +3761,32062,4,6,f +3761,32064b,71,3,f +3761,32123b,71,1,t +3761,32123b,71,1,f +3761,32278,0,1,f +3761,32529,0,1,f +3761,32530,72,3,f +3761,3307,71,1,f +3761,33215,71,1,f +3761,3460,72,1,f +3761,3581,71,2,f +3761,3622,0,4,f +3761,3623,0,1,f +3761,3626bpr0002,78,1,f +3761,3626bpr0003,78,1,f +3761,3626bpr0190,15,2,f +3761,3626bpr0279,86,1,f +3761,3626bpr0472,78,1,f +3761,3626bpr0476,78,1,f +3761,3626bpr0485,78,1,f +3761,3626bpr0486,294,1,f +3761,3659,72,12,f +3761,3660,0,10,f +3761,3660,70,5,f +3761,3665,15,2,f +3761,3665,0,6,f +3761,3666,72,8,f +3761,3673,71,1,t +3761,3673,71,3,f +3761,3679,71,2,f +3761,3680,0,2,f +3761,3706,0,1,f +3761,3710,72,14,f +3761,3710,15,1,f +3761,3741,2,2,f +3761,3794a,72,10,f +3761,3795,0,1,f +3761,3795,15,1,f +3761,3829c01,1,1,f +3761,3830,0,3,f +3761,3831,0,3,f +3761,3835,0,1,f +3761,3839b,71,1,f +3761,3861b,70,1,f +3761,3894,15,1,f +3761,3901,0,1,f +3761,3937,72,2,f +3761,3941,70,3,f +3761,3941,71,1,f +3761,3942c,0,2,f +3761,3943b,0,1,f +3761,3957a,71,1,f +3761,3958,72,2,f +3761,3960,47,1,f +3761,3960,71,1,f +3761,40234,70,1,f +3761,40239,320,1,f +3761,40241,70,1,f +3761,4070,72,4,f +3761,4079,70,2,f +3761,4081b,72,2,f +3761,4081b,15,2,f +3761,4085c,72,6,f +3761,4095,0,2,f +3761,41532,0,2,f +3761,41539,72,2,f +3761,4162,0,12,f +3761,4162,72,2,f +3761,4176,41,1,f +3761,41854,0,1,f +3761,4201,72,3,f +3761,4204,72,1,f +3761,42448,0,2,f +3761,4274,1,1,t +3761,4274,1,9,f +3761,4282,72,2,f +3761,4286,0,2,f +3761,43337,70,1,f +3761,4360,0,1,f +3761,44301a,0,2,f +3761,44567a,0,1,f +3761,44728,72,2,f +3761,4477,71,1,f +3761,4485,0,2,f +3761,4488,71,4,f +3761,4589,42,4,f +3761,4589,72,21,f +3761,4623,71,2,f +3761,4697b,71,5,f +3761,4697b,71,1,t +3761,4733,72,1,f +3761,4735,0,1,f +3761,4740,72,1,f +3761,47456,0,1,f +3761,48490,0,2,f +3761,4862,41,2,f +3761,4865a,71,3,f +3761,48729b,0,11,f +3761,50745,72,4,f +3761,50859a,0,1,f +3761,50861,0,2,f +3761,50862,71,2,f +3761,50950,72,2,f +3761,50950,15,4,f +3761,50950,0,2,f +3761,52031,72,3,f +3761,52501,15,4,f +3761,53981,0,1,f +3761,54200,33,2,f +3761,54200,0,2,f +3761,55704,0,1,f +3761,55706,0,2,f +3761,55707a,0,1,f +3761,55707e,0,2,f +3761,56619,0,1,f +3761,56630,0,1,f +3761,57893,0,3,f +3761,6014b,71,4,f +3761,6015,0,4,f +3761,6016,72,1,f +3761,6020,71,2,f +3761,6060,0,2,f +3761,6066,72,2,f +3761,6111,0,1,f +3761,6112,72,2,f +3761,6117,72,1,f +3761,6126a,57,2,f +3761,6131,0,2,f +3761,6134,71,2,f +3761,6141,47,1,f +3761,6141,36,9,f +3761,6141,71,20,f +3761,6141,71,1,t +3761,6141,46,1,t +3761,6141,47,1,t +3761,6141,36,1,t +3761,6141,46,3,f +3761,6179,0,1,f +3761,6190,72,1,f +3761,6538b,71,1,f +3761,6541,71,5,f +3761,6587,72,2,f +3761,6636,71,2,f +3761,6636,15,1,f +3761,772,15,1,f +3761,85973,0,1,f +3761,89536,0,1,f +3761,970c00,70,1,f +3761,970c00,72,2,f +3761,970c00,0,2,f +3761,970c00,2,1,f +3761,970x028,288,1,f +3761,973pr0230c01,0,1,f +3761,973pr0301c01,78,1,f +3761,973pr1208c01,72,2,f +3761,973pr1274c01,0,1,f +3761,973pr1288,2,1,f +3761,973pr1289c01,70,1,f +3761,98721,0,3,f +3762,3297,4,30,f +3762,3298,4,14,f +3762,3299,4,10,f +3762,3300,4,6,f +3763,11091,297,2,f +3763,11272,148,1,f +3763,11302pat0001,36,4,f +3763,15976,179,2,f +3763,22961,71,4,f +3763,24014,71,3,f +3763,24162pat0003,297,1,f +3763,24188,148,2,f +3763,24191,297,1,f +3763,2736,71,2,f +3763,2780,0,5,f +3763,30552,71,1,f +3763,30553,72,1,f +3763,32039,71,2,f +3763,32062,4,2,f +3763,32073,71,1,f +3763,32123b,71,2,f +3763,41669,57,2,f +3763,41677,71,4,f +3763,4274,71,2,f +3763,43093,1,2,f +3763,43857,71,2,f +3763,50923,72,2,f +3763,57585,71,2,f +3763,58176,33,1,f +3763,6536,72,2,f +3763,6536,0,1,f +3763,6553,72,2,f +3763,6558,1,1,f +3763,87082,0,2,f +3763,92220,57,8,f +3763,93571,72,2,f +3763,98590,0,1,f +3765,14391,4,1,f +3765,30374,41,4,f +3765,32062,4,1,f +3765,4274,71,1,t +3765,4274,71,2,f +3765,48989,71,1,f +3765,53585,4,1,f +3765,74261,72,2,f +3765,90607,0,1,f +3765,90608,0,3,f +3765,90611,0,2,f +3765,90612,0,1,f +3765,90617,72,4,f +3765,90622,0,1,f +3765,90625,0,1,f +3765,90639,297,2,f +3765,90641,297,1,f +3765,90650,4,2,f +3765,90661,4,2,f +3765,92215,297,1,f +3765,92216,297,2,f +3765,92223,179,1,f +3765,93575,4,2,f +3765,98567,0,1,f +3765,98569,4,3,f +3765,98585,41,1,f +3765,98603s01pr0003,4,1,f +3766,22667,4,1,t +3766,22667,4,5,f +3766,2357,15,3,f +3766,2357,19,30,f +3766,2431,70,4,f +3766,2450,0,2,f +3766,2456,15,1,f +3766,2555,71,1,f +3766,2555,0,4,f +3766,2587,297,1,f +3766,3001,15,2,f +3766,3004,19,3,f +3766,3004,84,2,f +3766,30041,28,1,f +3766,30042,28,1,f +3766,3005,19,6,f +3766,3009,19,2,f +3766,30134,70,1,f +3766,30136,70,2,f +3766,30153,47,1,f +3766,30153,34,1,f +3766,30153,36,1,f +3766,30173b,135,2,f +3766,30176,2,2,f +3766,3020,19,1,f +3766,3021,0,1,f +3766,3022,19,1,f +3766,3022,70,1,f +3766,3023,0,3,f +3766,3032,0,1,f +3766,3034,0,3,f +3766,3035,0,1,f +3766,30367b,297,1,f +3766,3062b,15,6,f +3766,3062b,70,4,f +3766,3069b,28,3,f +3766,33051,10,3,f +3766,33057,484,1,f +3766,3460,0,1,f +3766,3623,0,1,f +3766,3626bpr0651,78,1,f +3766,3626bpr0654,78,1,f +3766,3626bpr0655,78,1,f +3766,3626bpr0658,78,1,f +3766,3633,297,1,f +3766,3660,19,5,f +3766,3666,0,3,f +3766,3673,71,1,t +3766,3673,71,1,f +3766,37,72,2,f +3766,3710,70,4,f +3766,3737,0,1,f +3766,3795,0,1,f +3766,3795,308,1,f +3766,3832,19,1,f +3766,3839b,0,1,f +3766,3849,0,1,f +3766,3941,19,6,f +3766,4032a,0,1,f +3766,41539,28,1,f +3766,4489b,70,2,f +3766,4491b,72,1,f +3766,4497,135,1,f +3766,4523,70,1,f +3766,4589,297,5,f +3766,48729b,0,1,f +3766,48729b,0,1,t +3766,50231,15,1,f +3766,54200,15,1,t +3766,54200,15,15,f +3766,6141,19,10,f +3766,6141,19,1,t +3766,6157,71,1,f +3766,61780,70,2,f +3766,63965,70,3,f +3766,64644,308,2,f +3766,64647,57,2,f +3766,64647,15,1,f +3766,64647,57,1,t +3766,64647,15,1,t +3766,64648,135,2,f +3766,6541,71,6,f +3766,6587,28,1,f +3766,87087,15,13,f +3766,87580,28,4,f +3766,88283,308,1,f +3766,88284,297,1,f +3766,88286,308,1,f +3766,88287,15,1,f +3766,88288pat0001,297,1,f +3766,88290,308,1,f +3766,88292,84,20,f +3766,88293,297,4,f +3766,88704,70,1,f +3766,88954,320,1,f +3766,89352,28,1,f +3766,970c00,15,1,f +3766,970c00,70,1,f +3766,970c00,19,1,f +3766,970c00pr0150,0,1,f +3766,973pr1558c01,308,1,f +3766,973pr1559c01,15,1,f +3766,973pr1562c01,28,2,f +3767,3004,191,2,f +3767,3023,15,1,f +3767,3023,27,1,f +3767,33291,5,1,t +3767,33291,5,2,f +3767,3794b,27,1,f +3767,87580,15,1,f +3770,2456,14,1,f +3770,2456,1,2,f +3770,2456,15,2,f +3770,2456,4,1,f +3770,2877,71,4,f +3770,3001,15,6,f +3770,3001,14,6,f +3770,3001,4,6,f +3770,3001,27,4,f +3770,3001,0,3,f +3770,3001,1,6,f +3770,3001,2,3,f +3770,3001,25,4,f +3770,3002,15,6,f +3770,3002,1,6,f +3770,3002,14,6,f +3770,3002,0,3,f +3770,3002,4,6,f +3770,3002,2,3,f +3770,3003,2,8,f +3770,3003,0,8,f +3770,3003,27,8,f +3770,3003,4,16,f +3770,3003,14,16,f +3770,3003,15,16,f +3770,3003,1,16,f +3770,3003,25,8,f +3770,3004,27,4,f +3770,3004,2,6,f +3770,3004,1,12,f +3770,3004,15,12,f +3770,3004,25,4,f +3770,3004,4,12,f +3770,3004,0,6,f +3770,3004,14,12,f +3770,3004p0b,14,2,f +3770,3005,0,4,f +3770,3005,14,4,f +3770,3005,2,4,f +3770,3005,4,8,f +3770,3005,1,8,f +3770,3005,15,4,f +3770,3005pe1,15,4,f +3770,3005pe1,14,4,f +3770,3007,15,1,f +3770,3007,1,1,f +3770,3007,4,1,f +3770,3007,14,1,f +3770,3008,15,2,f +3770,3008,14,1,f +3770,3008,1,2,f +3770,3008,4,1,f +3770,3009,4,2,f +3770,3009,14,2,f +3770,3009,1,3,f +3770,3009,15,3,f +3770,3010,2,2,f +3770,3010,1,3,f +3770,3010,4,3,f +3770,3010,14,3,f +3770,3010,15,3,f +3770,3010,0,2,f +3770,3020,4,4,f +3770,3020,14,2,f +3770,3021,1,2,f +3770,3021,4,2,f +3770,3021,0,2,f +3770,3022,15,4,f +3770,3022,4,2,f +3770,3022,0,2,f +3770,3023,14,4,f +3770,3023,4,4,f +3770,3028,10,1,f +3770,3034,4,2,f +3770,3037,1,8,f +3770,3037,4,4,f +3770,3039,0,4,f +3770,3039,14,2,f +3770,3039,1,4,f +3770,3039,4,4,f +3770,3040b,4,4,f +3770,3040b,14,4,f +3770,3040b,1,2,f +3770,3040b,0,4,f +3770,3062b,15,6,f +3770,33303,15,2,f +3770,3622,2,2,f +3770,3622,0,2,f +3770,3622,4,4,f +3770,3622,14,4,f +3770,3622,15,4,f +3770,3622,1,4,f +3770,3659,15,2,f +3770,3660,1,2,f +3770,3660,14,4,f +3770,3660,15,2,f +3770,3665,14,4,f +3770,3666,1,2,f +3770,3710,1,4,f +3770,3795,4,2,f +3770,3823,47,2,f +3770,3839b,71,1,f +3770,3957a,15,1,f +3770,4132,4,2,f +3770,4495b,4,1,f +3770,4600,0,2,f +3770,4624,71,4,f +3770,6014b,15,4,f +3770,60476,0,2,f +3770,60599,4,1,f +3770,60608,15,4,f +3770,60623,15,1,f +3770,60700,0,4,f +3770,6141,4,4,f +3770,6157,71,2,f +3770,87414,0,4,f +3771,11090,72,2,f +3771,12618,0,1,f +3771,14769pr1030,71,5,f +3771,15392,72,1,f +3771,15392,72,1,t +3771,15573,1,1,f +3771,15672,1,2,f +3771,15712,0,1,f +3771,16968,71,2,f +3771,18031,179,1,f +3771,20105,0,1,f +3771,22388,179,2,f +3771,22388,179,1,t +3771,22402,321,1,f +3771,22407,57,2,f +3771,22425,0,1,f +3771,2412b,57,3,f +3771,2420,1,4,f +3771,2655,71,1,f +3771,30031,71,1,f +3771,30157,72,1,f +3771,3020,272,1,f +3771,3023,72,1,f +3771,30273,1,1,f +3771,3031,71,1,f +3771,3035,1,1,f +3771,3464,72,1,f +3771,3626cpr1798,4,1,f +3771,3626cpr1817,179,1,f +3771,3666,1,2,f +3771,43710,272,1,f +3771,43711,272,1,f +3771,43719,57,1,f +3771,4738a,179,1,f +3771,4739a,57,1,f +3771,48336,1,1,f +3771,53451,25,1,t +3771,53451,25,2,f +3771,59900,57,1,t +3771,59900,57,2,f +3771,60470a,71,1,f +3771,6070,57,1,f +3771,6118,148,2,f +3771,61409,0,2,f +3771,63965,72,2,f +3771,64644,71,2,f +3771,64644,71,1,t +3771,6636,272,4,f +3771,92280,71,2,f +3771,970c00pr0947,0,1,f +3771,970c00pr0968,71,1,f +3771,973pr3162c01,0,1,f +3771,973pr3190c01,71,1,f +3771,98138,182,1,t +3771,98138,182,2,f +3771,99207,71,1,f +3773,10509pr0004,0,1,f +3773,13744pr0001,4,1,f +3773,13745,4,1,f +3773,14519,9999,1,t +3773,2335,1,2,f +3773,2357,72,4,f +3773,2540,71,2,f +3773,2570,179,1,f +3773,2586pr0008,71,1,f +3773,2586pr0009,71,1,f +3773,2587pr0031,0,1,f +3773,2587pr0032,179,1,f +3773,2654,4,1,f +3773,2780,0,4,f +3773,2780,0,1,t +3773,30000,72,1,f +3773,3003,71,4,f +3773,3004,71,8,f +3773,3005,71,6,f +3773,30055,0,2,f +3773,3009,71,6,f +3773,3010,72,2,f +3773,30157,72,2,f +3773,3020,72,2,f +3773,30237a,72,2,f +3773,30273,80,1,f +3773,3030,70,1,f +3773,3032,70,2,f +3773,3032,2,2,f +3773,3032,72,4,f +3773,3034,70,3,f +3773,30385,297,1,f +3773,3040b,71,10,f +3773,3062b,72,3,f +3773,3062b,57,2,f +3773,3069b,70,6,f +3773,32064a,72,5,f +3773,32123b,71,1,t +3773,32123b,71,2,f +3773,3245c,71,12,f +3773,32530,0,2,f +3773,3308,71,1,f +3773,3622,70,4,f +3773,3626cpr0498,14,1,f +3773,3626cpr0929,14,1,f +3773,3626cpr1225,14,1,f +3773,3626cpr1226,14,1,f +3773,3660,71,2,f +3773,3665,71,4,f +3773,3666,0,2,f +3773,3676,70,4,f +3773,3700,70,4,f +3773,3701,71,8,f +3773,3705,0,2,f +3773,3794b,1,1,f +3773,3844,0,1,f +3773,3846pr0005,71,1,f +3773,3849,0,1,f +3773,3937,0,2,f +3773,4032a,4,4,f +3773,42448,0,2,f +3773,4286,0,4,f +3773,4286,72,2,f +3773,4460b,72,4,f +3773,4495b,297,1,f +3773,4495b,1,1,f +3773,4497,179,1,f +3773,4497,148,1,f +3773,4497,148,1,t +3773,4497,179,1,t +3773,4503,80,1,f +3773,45590,0,1,f +3773,54200,4,3,f +3773,54200,1,10,f +3773,54200,4,1,t +3773,54200,1,2,t +3773,60475b,0,2,f +3773,60583b,0,2,f +3773,60596,72,1,f +3773,60621,148,1,f +3773,6126b,182,2,f +3773,6134,4,2,f +3773,6141,72,2,f +3773,6141,72,1,t +3773,6182,71,6,f +3773,6231,4,4,f +3773,64644,308,2,f +3773,64647,1,1,f +3773,64647,1,1,t +3773,64647,4,1,t +3773,64647,4,1,f +3773,76764,179,1,t +3773,76764,179,1,f +3773,85984,1,1,f +3773,87081,72,4,f +3773,87580,28,2,f +3773,87580,0,3,f +3773,88289,308,1,f +3773,89520,0,1,f +3773,89523,2,1,f +3773,92950,72,1,f +3773,970c00,0,1,f +3773,970c00pr0518,0,1,f +3773,970c10pr0520,72,1,f +3773,970x026,72,1,f +3773,973pr0090c01,72,1,f +3773,973pr0100c01,72,1,f +3773,973pr2394c01,0,2,f +3773,98138pr0014,297,1,f +3773,98138pr0014,297,1,t +3773,98283,28,6,f +3773,98283,72,2,f +3773,98370,148,1,f +3774,2456,8,1,f +3774,2542,6,4,f +3774,2561,0,1,f +3774,2562,6,1,f +3774,2625,0,1,f +3774,2626,19,1,f +3774,3001,19,6,f +3774,3002,1,1,f +3774,3004,0,4,f +3774,3008,19,4,f +3774,30099,0,2,f +3774,3010,8,2,f +3774,30104,8,1,f +3774,30137,6,4,f +3774,30137,0,1,f +3774,30150,6,1,f +3774,30153,36,1,f +3774,30153,41,1,f +3774,30153,42,1,f +3774,30173a,7,1,f +3774,30173a,0,2,f +3774,30174,8,1,f +3774,30175,0,1,f +3774,30177,4,2,f +3774,3021,19,1,f +3774,3022,0,1,f +3774,3032,0,1,f +3774,3038,1,2,f +3774,3062b,1,7,f +3774,3298,1,1,f +3774,3455,0,4,f +3774,3456,0,1,f +3774,3460,8,4,f +3774,3626bpx6,14,1,f +3774,3626bpx7,14,2,f +3774,3633,1,1,f +3774,3666,0,1,f +3774,3710,0,1,f +3774,3794a,1,1,f +3774,3849,0,2,f +3774,3959,0,2,f +3774,4070,1,2,f +3774,4175,0,1,f +3774,4286,0,4,f +3774,4497,6,2,f +3774,4589,46,2,f +3774,4733,0,1,f +3774,4738a,6,1,f +3774,4739a,6,1,f +3774,4871,19,1,f +3774,529,334,1,t +3774,529,334,1,f +3774,57503,334,1,f +3774,57504,334,1,f +3774,57505,334,1,f +3774,57506,334,1,f +3774,6636,1,2,f +3774,970c11pb02a,0,1,f +3774,970x026,4,2,f +3774,973pb0240c01,4,2,f +3774,973pn0c01,15,1,f +3774,x73,0,2,f +3776,10201,15,1,f +3776,14718,0,1,f +3776,15573,4,1,f +3776,15712,0,8,f +3776,18601,19,1,f +3776,18868b01,46,1,f +3776,19981pr0065,46,1,f +3776,2357,320,1,f +3776,2357,0,2,f +3776,2412b,72,3,f +3776,2431,15,2,f +3776,2453a,320,2,f +3776,2540,72,2,f +3776,2654pr0011,72,1,f +3776,27186,308,1,f +3776,2877,72,2,f +3776,28803,148,1,f +3776,3003,320,6,f +3776,3003,28,4,f +3776,3004,320,5,f +3776,3004,0,2,f +3776,3005,71,1,f +3776,3009,71,1,f +3776,3020,0,1,f +3776,3022,4,3,f +3776,3022,28,2,f +3776,3023,36,2,f +3776,3023,0,2,f +3776,3024,0,1,t +3776,3024,0,6,f +3776,3024,47,1,t +3776,3024,47,2,f +3776,3024,15,1,t +3776,3024,15,4,f +3776,3034,320,2,f +3776,30586,71,4,f +3776,3062b,4,2,f +3776,3062b,2,12,f +3776,3062b,41,4,f +3776,3068b,19,2,f +3776,3068b,320,6,f +3776,3068bpr0304,15,1,f +3776,3069b,71,2,f +3776,3069b,320,2,f +3776,3069b,72,3,f +3776,3070bpr0007,71,1,f +3776,3070bpr0007,71,1,t +3776,3623,19,1,f +3776,3626cpr2037,78,1,f +3776,3633,0,1,f +3776,3666,2,4,f +3776,3666,71,2,f +3776,3710,15,4,f +3776,3795,15,1,f +3776,3941,46,1,f +3776,4070,71,2,f +3776,4070,0,6,f +3776,4070,1,2,f +3776,4081b,0,1,f +3776,4081b,72,1,f +3776,42446,0,1,t +3776,42446,0,1,f +3776,4477,72,2,f +3776,4599b,0,1,f +3776,4599b,0,1,t +3776,4599b,1,1,f +3776,4599b,1,1,t +3776,4600,0,2,f +3776,46212,47,2,f +3776,4624,71,4,f +3776,4624,71,1,t +3776,48336,0,1,f +3776,48336,2,2,f +3776,4865b,40,1,f +3776,54200,1,1,t +3776,54200,72,1,t +3776,54200,40,4,f +3776,54200,40,1,t +3776,54200,1,2,f +3776,54200,72,2,f +3776,57895,0,2,f +3776,59895,0,4,f +3776,60212,15,1,f +3776,60592,0,4,f +3776,60596,0,2,f +3776,60897,71,1,f +3776,6106,19,2,f +3776,6141,46,1,f +3776,6141,71,1,t +3776,6141,36,1,t +3776,6141,41,1,f +3776,6141,46,1,t +3776,6141,71,2,f +3776,6141,36,1,f +3776,6141,297,1,t +3776,6141,41,1,t +3776,6141,72,1,t +3776,6141,2,20,f +3776,6141,2,1,t +3776,6141,297,13,f +3776,6141,72,7,f +3776,63868,72,1,f +3776,64567,0,1,f +3776,64567,0,1,t +3776,64567,71,1,t +3776,64567,71,1,f +3776,6636,0,4,f +3776,85861,0,1,f +3776,85861,0,1,t +3776,85984,4,2,f +3776,85984,28,6,f +3776,87079,4,1,f +3776,88704,0,1,f +3776,92280,71,1,f +3776,92280,0,1,f +3776,970c00pr1120,28,1,f +3776,973pr3515c01,28,1,f +3776,98138,71,1,f +3776,98138,46,1,f +3776,98138,71,1,t +3776,98138,46,1,t +3776,99563,0,2,f +3776,99780,71,2,f +3776,99780,4,2,f +3776,99780,15,2,f +3780,2412b,0,1,f +3780,2420,0,4,f +3780,2436,0,3,f +3780,3010,14,2,f +3780,3020,14,1,f +3780,3020,0,4,f +3780,3023,14,1,f +3780,3031,0,1,f +3780,3068b,14,1,f +3780,3069b,14,2,f +3780,32028,14,1,f +3780,3788,14,1,f +3780,44674,0,1,f +3780,47458,0,2,f +3780,50944pr0001,0,4,f +3780,50951,0,4,f +3780,54200,0,2,f +3780,54200,36,2,f +3780,54200,294,2,f +3780,6141,80,1,t +3780,6141,80,2,f +3780,6157,0,2,f +3780,88930,0,1,f +3781,2335,4,2,f +3781,2338,15,1,f +3781,251,0,1,f +3781,3004,4,1,f +3781,3004,15,1,f +3781,3005,0,2,f +3781,3020,4,1,f +3781,3023,0,1,f +3781,3023,15,1,f +3781,3024,0,2,f +3781,3031,4,1,f +3781,3034,0,1,f +3781,3069b,0,1,f +3781,3626apr0001,14,2,f +3781,3679,7,1,f +3781,3795,0,1,f +3781,3844,8,1,f +3781,3937,0,2,f +3781,3938,0,2,f +3781,3957a,0,2,f +3781,4070,0,2,f +3781,4286,0,2,f +3781,4488,0,2,f +3781,4489a,6,2,f +3781,4497,6,1,f +3781,4587,4,1,f +3781,4732,0,1,f +3781,4738b,6,1,f +3781,4739b,6,1,f +3781,75998pr0007,15,1,f +3781,970c00,1,1,f +3781,970c00,7,1,f +3781,973p42c01,4,1,f +3781,973p71c01,15,1,f +3782,11438,0,1,f +3782,12618,0,1,f +3782,22425,0,1,f +3782,23861,148,1,f +3782,3626cpr1798,4,1,f +3782,3626cpr1818,4,1,f +3782,4498,70,1,f +3782,4499,70,1,f +3782,48493,0,2,f +3782,53451,179,2,f +3782,59232,179,1,f +3782,63965,70,1,f +3782,64567,0,1,f +3782,88811,179,1,f +3782,92690,70,1,f +3782,93563,0,1,f +3782,970c00pr0969,4,3,f +3782,973pr3162c01,0,1,f +3782,973pr3191c01,4,1,f +3782,98139,148,1,f +3783,11477,15,1,f +3783,11477,2,2,f +3783,14520,72,1,f +3783,15068,288,2,f +3783,2412b,0,8,f +3783,2421,0,1,f +3783,2436,71,3,f +3783,2540,72,2,f +3783,2654,72,2,f +3783,2921,71,2,f +3783,3004,2,3,f +3783,3020,25,2,f +3783,3020,0,5,f +3783,3021,25,1,f +3783,3021,72,1,f +3783,3022,15,4,f +3783,3022,2,3,f +3783,3023,25,3,f +3783,3023,2,4,f +3783,3024,15,1,t +3783,3024,2,1,t +3783,3024,2,2,f +3783,3024,15,4,f +3783,30602,40,1,f +3783,3066,40,2,f +3783,3176,72,1,f +3783,32028,71,1,f +3783,32064a,0,1,f +3783,3660,25,1,f +3783,3666,15,3,f +3783,3666,0,2,f +3783,3679,71,1,f +3783,3680,0,1,f +3783,3710,2,1,f +3783,3794b,15,1,f +3783,3832,71,1,f +3783,4081b,71,2,f +3783,4488,71,1,f +3783,4510,71,2,f +3783,4600,0,2,f +3783,50745,288,2,f +3783,54200,25,1,t +3783,54200,2,1,t +3783,54200,46,2,f +3783,54200,2,2,f +3783,54200,25,3,f +3783,54200,288,1,t +3783,54200,288,2,f +3783,54200,46,1,t +3783,6014b,71,4,f +3783,60478,71,2,f +3783,61252,72,2,f +3783,6141,182,6,f +3783,6141,182,1,t +3783,6141,72,1,t +3783,6141,72,2,f +3783,63864,71,2,f +3783,6636,71,2,f +3783,85984,25,2,f +3783,87087,0,2,f +3783,87580,71,1,f +3783,87697,0,4,f +3783,93273,71,1,f +3783,98138,36,2,f +3783,98138,36,1,t +3783,99781,15,1,f +3784,2413,15,2,f +3784,2420,72,2,f +3784,2431,15,1,f +3784,2431,72,1,f +3784,2437,40,1,f +3784,3003,0,1,f +3784,3005,72,1,f +3784,3010,15,2,f +3784,3020,4,1,f +3784,3020,15,3,f +3784,3021,72,4,f +3784,3021,7,1,f +3784,3022,7,1,f +3784,3023,0,5,f +3784,3024,15,1,f +3784,3024,72,2,f +3784,3039pc5,7,1,f +3784,3040b,15,2,f +3784,3068b,4,1,f +3784,3070b,4,1,t +3784,3070b,15,1,t +3784,3070b,4,1,f +3784,3070b,14,1,f +3784,3070b,14,1,t +3784,3070b,15,3,f +3784,3139,0,6,f +3784,3460,7,1,f +3784,3623,72,3,f +3784,3624,0,1,f +3784,3626bp02,14,1,f +3784,3626bpr0001,14,1,f +3784,3626bpx19,14,1,f +3784,3666,72,1,f +3784,3679,7,2,f +3784,3680,15,2,f +3784,3710,15,3,f +3784,3710,72,1,f +3784,3794a,15,1,f +3784,3795,7,2,f +3784,3937,7,1,f +3784,4032.8stk01,9999,1,t +3784,4079,6,3,f +3784,4162,72,1,f +3784,41769,15,4,f +3784,41770,15,4,f +3784,41879a,0,1,f +3784,4282,7,1,f +3784,44301a,15,2,f +3784,44302a,15,2,f +3784,4449,73,1,f +3784,4449,0,1,f +3784,44571,15,4,f +3784,4477,72,1,f +3784,4477,15,1,f +3784,44822,15,4,f +3784,4485,4,1,f +3784,4530,484,1,f +3784,4624,15,6,f +3784,4854,7,2,f +3784,4855,7,2,f +3784,4856a,72,2,f +3784,4858,15,1,f +3784,4859,72,1,f +3784,4859,15,1,f +3784,4861,15,1,f +3784,4862,40,12,f +3784,4863,15,6,f +3784,4865a,4,2,f +3784,4865a,15,2,f +3784,4867,15,1,f +3784,4868b,15,2,f +3784,4869,7,2,f +3784,4870,7,3,f +3784,4871,7,1,f +3784,6134,0,1,f +3784,6141,15,1,t +3784,6141,47,1,t +3784,6141,36,1,f +3784,6141,47,1,f +3784,6141,15,2,f +3784,6141,34,1,t +3784,6141,36,1,t +3784,6141,34,1,f +3784,6636,15,2,f +3784,73983,72,4,f +3784,970c00,272,1,f +3784,970c00,4,1,f +3784,973c01,15,1,f +3784,973px189c02,272,1,f +3784,973px18c01,15,1,f +3786,2412b,3,2,f +3786,2447,42,1,f +3786,298c02,14,2,f +3786,30038,8,1,f +3786,30194,8,1,f +3786,30236,8,3,f +3786,30237a,7,1,f +3786,3039px16,8,1,f +3786,3626bpb0106,14,1,f +3786,3795,8,1,f +3786,4735,7,2,f +3786,4740,8,3,f +3786,6019,14,1,f +3786,6141,42,3,f +3786,970c00,1,1,f +3786,973pb0044c01,1,1,f +3787,2530,72,1,f +3787,2562,70,1,f +3787,33051,10,1,f +3787,3626bpr0568,14,1,f +3787,3626bpr0586,14,1,f +3787,3626bpr0892,14,1,f +3787,60849,82,1,f +3787,62696,308,1,f +3787,62711,4,1,f +3787,64728,4,1,f +3787,74188,4,3,f +3787,88286,308,1,f +3787,970c00,1,1,f +3787,970c00,15,1,f +3787,970c00,0,1,f +3787,973pr1449c01,0,1,f +3787,973pr1510c01,0,1,f +3787,973pr1520c01,5,1,f +3788,14397pr0001,84,1,f +3788,3899pr0003,4,1,f +3788,88646,0,1,f +3788,970c00pr0533,84,1,f +3788,973pr2420c01,84,1,f +3789,14210,15,1,f +3789,2412b,0,4,f +3789,2412b,36,2,f +3789,2420,15,2,f +3789,2431,0,4,f +3789,2432,1,1,f +3789,2436,1,2,f +3789,2437,41,1,f +3789,2446,15,1,f +3789,2447,0,1,t +3789,2447,0,1,f +3789,2453a,19,4,f +3789,2465,72,1,f +3789,2493b,0,1,f +3789,2494,40,1,f +3789,2540,72,4,f +3789,298c02,15,1,t +3789,298c02,15,1,f +3789,30027b,15,4,f +3789,30028,0,4,f +3789,30029,15,1,f +3789,3003,19,2,f +3789,3004,1,1,f +3789,3004,0,2,f +3789,3004,19,3,f +3789,3005,19,2,f +3789,3005,0,2,f +3789,30055,0,1,f +3789,3010,15,1,f +3789,30187c05,15,1,f +3789,3020,15,1,f +3789,3020,19,1,f +3789,3021,0,3,f +3789,3022,1,1,f +3789,3023,1,3,f +3789,3023,72,1,f +3789,30236,0,1,f +3789,30238,33,1,f +3789,3024,15,1,f +3789,30240,15,1,f +3789,3027,71,1,f +3789,3031,71,1,f +3789,3040b,19,2,f +3789,30552,72,4,f +3789,30553,71,4,f +3789,30554a,71,8,f +3789,30663,71,1,f +3789,3069b,36,1,f +3789,3069b,71,1,f +3789,3069b,33,1,f +3789,3069b,15,1,f +3789,3069bpr0100,2,3,f +3789,3070b,36,1,f +3789,3070b,36,1,t +3789,3070b,46,3,f +3789,3245b,19,2,f +3789,3307,19,3,f +3789,3470,2,1,f +3789,3623,15,1,f +3789,3626bpb0197,78,1,f +3789,3626bpb0199,78,1,f +3789,3626bpr0279,86,1,f +3789,3626bpr0282,78,1,f +3789,3626bpx125,4,1,f +3789,3633,19,3,f +3789,3666,1,2,f +3789,3666,15,2,f +3789,3700,0,1,f +3789,3710,72,2,f +3789,3710,15,4,f +3789,3710,0,4,f +3789,3788,15,2,f +3789,3829c01,71,1,f +3789,3830,0,2,f +3789,3831,19,2,f +3789,3960pb009,71,1,f +3789,3962b,0,1,f +3789,40240,70,1,f +3789,40996,15,1,f +3789,4274,71,1,f +3789,4274,71,1,t +3789,43337,15,2,f +3789,43888,72,2,f +3789,4485,272,1,f +3789,45677,15,2,f +3789,47899c03,0,1,f +3789,48723,71,1,f +3789,48724,71,1,f +3789,48729a,72,4,f +3789,6081,15,1,f +3789,6093,71,1,f +3789,6141,33,1,f +3789,6141,36,1,t +3789,6141,36,1,f +3789,6141,33,1,t +3789,6157,71,2,f +3789,970c00,28,1,f +3789,970c00,72,1,f +3789,970c00,378,1,f +3789,970c00,0,1,f +3789,970c63pb01,272,1,f +3789,973pb0289c01,0,1,f +3789,973pb0325c01,4,1,f +3789,973pb0326c01,378,1,f +3789,973pb0328c01,28,1,f +3789,973pr1208c01,72,1,f +3793,2357,14,2,f +3793,3001,14,12,f +3793,3002,14,6,f +3793,3003,14,10,f +3793,3004,14,8,f +3793,3005,14,6,f +3793,3006,14,1,f +3793,3007,14,1,f +3793,3008,14,2,f +3793,3009,14,4,f +3793,3010,14,6,f +3793,3622,14,4,f +3794,3624,15,1,f +3794,3626bpr0499,14,1,f +3794,61482,71,1,t +3794,61482,71,1,f +3794,970c00,0,1,f +3794,973pr1693c01,0,1,f +3795,8888,9999,1,f +3796,11212,71,1,f +3796,14719,71,4,f +3796,15068,72,1,f +3796,15391,0,4,f +3796,15392,72,1,t +3796,15392,72,5,f +3796,15403,0,1,f +3796,18677,71,1,f +3796,20904pr0001,15,2,f +3796,20908,0,1,f +3796,23850pr0001,0,1,f +3796,3004,71,2,f +3796,3020,72,2,f +3796,3023,36,4,f +3796,30350b,72,2,f +3796,3069bpr0090,72,1,f +3796,3623,0,1,f +3796,3623,71,2,f +3796,3626cpr1149,78,2,f +3796,3626cpr1709,78,1,f +3796,3626cpr1803,70,1,f +3796,3666,0,2,f +3796,3679,71,1,f +3796,3680,4,1,f +3796,3685,71,4,f +3796,3937,71,1,f +3796,3958,72,1,f +3796,4286,0,2,f +3796,43722,71,1,f +3796,43723,71,1,f +3796,44301a,72,1,f +3796,44728,72,2,f +3796,48336,0,4,f +3796,50950,71,1,f +3796,6134,0,1,f +3796,6141,35,1,t +3796,6141,35,3,f +3796,6141,0,1,t +3796,6141,36,6,f +3796,6141,36,1,t +3796,6141,0,2,f +3796,6541,0,2,f +3796,6558,1,1,f +3796,87544,71,2,f +3796,87552,0,1,f +3796,970c00,0,2,f +3796,970c00pr0954,15,2,f +3796,973pr3158c01,0,2,f +3796,973pr3165c01,15,1,f +3796,973pr3262c01,15,1,f +3796,99780,72,1,f +3798,x507,9999,4,f +3801,10928,72,2,f +3801,11477,85,2,f +3801,11477,72,2,f +3801,11609,191,6,f +3801,11609,191,2,t +3801,11640pr0001,323,1,f +3801,11816pr0001,84,1,f +3801,11816pr0022,78,1,f +3801,14718,0,2,f +3801,14769,15,3,f +3801,15535,72,8,f +3801,15573,0,3,f +3801,15573,85,6,f +3801,15677,26,1,f +3801,15706,26,4,f +3801,15712,71,8,f +3801,15712,15,4,f +3801,17485,71,1,f +3801,20379pr0002,191,1,f +3801,21008,321,1,f +3801,21008,26,1,f +3801,21008,30,1,f +3801,21217,9999,1,f +3801,21223,9999,1,f +3801,2412b,15,4,f +3801,2420,4,2,f +3801,2432,0,4,f +3801,2445,0,1,f +3801,2460,0,1,f +3801,2780,0,1,t +3801,2780,0,7,f +3801,2817,4,1,f +3801,3001,0,2,f +3801,3004,0,10,f +3801,3004,72,2,f +3801,3005,26,12,f +3801,3008,0,1,f +3801,3009,0,3,f +3801,3010,0,3,f +3801,3020,26,6,f +3801,3020,0,4,f +3801,3020,72,1,f +3801,3020,71,4,f +3801,3021,72,2,f +3801,3022,191,2,f +3801,3022,4,2,f +3801,3022,15,2,f +3801,3022,0,5,f +3801,3023,26,5,f +3801,3023,0,2,f +3801,3024,15,1,t +3801,3024,15,6,f +3801,30292,0,4,f +3801,3032,0,2,f +3801,3035,0,6,f +3801,3036,0,3,f +3801,30377,0,2,f +3801,30377,0,1,t +3801,30565,0,2,f +3801,30565,26,8,f +3801,3062b,41,6,f +3801,3069b,15,4,f +3801,32001,0,4,f +3801,32034,71,1,f +3801,32034,4,2,f +3801,32054,71,1,f +3801,32072,0,10,f +3801,32123b,14,2,t +3801,32123b,14,15,f +3801,32474,191,1,f +3801,32530,0,4,f +3801,3298,0,2,f +3801,33291,191,1,t +3801,33291,191,4,f +3801,3460,26,2,f +3801,3460,15,1,f +3801,3460,71,2,f +3801,3623,26,4,f +3801,3623,71,4,f +3801,3648b,72,1,f +3801,3660,0,4,f +3801,3666,0,6,f +3801,3700,72,4,f +3801,3700,0,5,f +3801,3701,0,14,f +3801,3701,71,6,f +3801,3705,0,1,f +3801,3706,0,4,f +3801,3709,0,1,f +3801,3710,191,4,f +3801,3710,15,4,f +3801,3713,71,1,t +3801,3713,4,1,f +3801,3713,4,1,t +3801,3713,71,3,f +3801,3738,0,4,f +3801,3749,19,1,f +3801,3795,0,1,f +3801,3941,15,1,f +3801,3941,85,3,f +3801,3941,41,8,f +3801,4032a,0,1,f +3801,4032a,15,1,f +3801,4032a,85,9,f +3801,4274,1,1,t +3801,4274,1,1,f +3801,4519,71,3,f +3801,4740,71,2,f +3801,4740,33,4,f +3801,4740,14,2,f +3801,60474,191,1,f +3801,60474,0,1,f +3801,60581,40,4,f +3801,60594,72,2,f +3801,60897,4,2,f +3801,6141,41,4,f +3801,6141,15,9,f +3801,6141,71,6,f +3801,6141,46,3,t +3801,6141,45,8,f +3801,6141,71,2,t +3801,6141,45,2,t +3801,6141,41,1,t +3801,6141,46,18,f +3801,6141,15,2,t +3801,6180,0,1,f +3801,61903,71,2,f +3801,6232,15,2,f +3801,64644,0,2,f +3801,6587,28,2,f +3801,73983,15,4,f +3801,85941,41,1,f +3801,87083,72,6,f +3801,87544,0,4,f +3801,87994,297,1,t +3801,87994,297,2,f +3801,88072,15,3,f +3801,88072,72,2,f +3801,90370pr0005,0,2,f +3801,90370pr0005,0,2,t +3801,92456pr0079c01,78,1,f +3801,92456pr0080c01,84,1,f +3801,92818pr0010c01,179,1,f +3801,93352,308,1,f +3801,95347,0,2,f +3801,98138,41,2,f +3801,98138,41,1,t +3801,99207,71,2,f +3802,281,14,1,f +3802,3001,4,2,f +3802,3001,14,8,f +3802,3002,14,10,f +3802,3002,1,2,f +3802,3002,4,2,f +3802,3003,15,5,f +3802,3003,1,5,f +3802,3003,4,2,f +3802,3003,14,21,f +3802,3004,14,4,f +3802,3004,15,10,f +3802,3004,1,3,f +3802,3010,15,4,f +3802,3027,4,1,f +3802,3031,1,1,f +3802,3035,15,3,f +3802,3035,14,1,f +3802,3888ac01,1,1,f +3802,3980c03,4,4,f +3802,691,15,1,f +3802,692,15,1,f +3802,fab4g,-1,1,f +3802,fab7h,9999,1,f +3802,x610c02px1,15,2,f +3802,x655c03,4,1,f +3802,x661c04,4,1,f +3802,x837,4,1,f +3802,x838,4,1,f +3803,3004,6,100,f +3804,2412b,1,1,f +3804,2412b,80,3,f +3804,2412b,0,1,f +3804,2431,15,1,f +3804,2436,15,2,f +3804,2436,1,2,f +3804,30027b,0,4,f +3804,30028,0,4,f +3804,3021,1,1,f +3804,3022,72,1,f +3804,3023,0,1,f +3804,3023,15,2,f +3804,3031,1,1,f +3804,3069b,1,2,f +3804,3794a,15,1,f +3804,3795,15,1,f +3804,50943,80,1,f +3804,50947,1,4,f +3804,50950,0,2,f +3804,54200,36,2,f +3804,54200,40,2,f +3804,54200,15,3,f +3804,6141,0,1,t +3804,6141,0,4,f +3804,6157,0,2,f +3805,2343,7,2,f +3805,2343,4,2,f +3805,2397,0,2,f +3805,2432,4,1,f +3805,2432,15,1,f +3805,2432,1,1,f +3805,2440,15,2,f +3805,2446,0,1,f +3805,2446,4,1,f +3805,2447,41,2,f +3805,2452,0,2,f +3805,2880,0,2,f +3805,3021,15,2,f +3805,3022,7,2,f +3805,3034,15,1,f +3805,3139,0,4,f +3805,3298p55,1,1,f +3805,3298p56,4,1,f +3805,3626bpr0001,14,2,f +3805,3660,7,4,f +3805,3710,4,2,f +3805,3710,1,2,f +3805,3794a,0,4,f +3805,3829c01,15,2,f +3805,3832,4,1,f +3805,3832,1,1,f +3805,3938,15,2,f +3805,4531,0,2,f +3805,4600,0,4,f +3805,4624,7,4,f +3805,4732,1,1,f +3805,4732,4,1,f +3805,4859,15,1,f +3805,6014a,15,4,f +3805,6015,0,4,f +3805,6141,46,1,t +3805,6141,0,16,f +3805,6141,0,1,t +3805,6141,34,2,f +3805,6141,36,1,t +3805,6141,36,2,f +3805,6141,47,2,f +3805,6141,46,6,f +3805,6141,47,1,t +3805,6141,34,1,t +3805,970c00,15,1,f +3805,970c00,0,1,f +3805,973p0ac02,0,1,f +3805,973p0bc01,15,1,f +3806,3001a,0,1,f +3806,3002a,1,2,f +3806,3002a,47,2,f +3806,3004,1,18,f +3806,3005,1,4,f +3806,3009,1,2,f +3806,3020,7,8,f +3806,3022,4,1,f +3806,3022,1,2,f +3806,3022,7,2,f +3806,3023,7,2,f +3806,3023,1,1,f +3806,3024,1,4,f +3806,3024,7,2,f +3806,3037,1,4,f +3806,3040a,1,2,f +3806,3045,1,2,f +3806,3058a,7,1,f +3806,3087bc01,4,2,f +3806,3176,4,1,f +3806,3176c01,4,1,f +3806,458,7,4,f +3806,468c01,1,1,f +3806,wheel1b,4,4,f +3806,x579c02,1,1,f +3808,58247,0,1,f +3809,122c01,0,2,f +3809,3004,15,1,f +3809,3010,15,1,f +3809,3023,0,1,f +3809,3023,15,2,f +3809,3024,46,2,f +3809,3024,33,1,f +3809,3024,0,2,f +3809,3031,0,1,f +3809,3034,0,1,f +3809,3068bp05,15,1,f +3809,3068bp06,15,1,f +3809,3624,15,1,f +3809,3626apr0001,14,1,f +3809,3641,0,4,f +3809,3710,0,2,f +3809,3794a,15,1,f +3809,3821,15,1,f +3809,3822,15,1,f +3809,3823,47,1,f +3809,3829c01,15,1,f +3809,3900,4,1,f +3809,3962a,0,1,f +3809,4070,15,2,f +3809,4085b,0,2,f +3809,4211,0,1,f +3809,4213,0,1,f +3809,4214,0,1,f +3809,4865a,15,2,f +3809,4865p18,15,2,f +3809,970c00,0,1,f +3809,973pb0091c01,0,1,f +3816,2343,14,1,f +3816,2345,71,3,f +3816,2345p02,71,1,f +3816,2357,72,16,f +3816,2362a,40,1,f +3816,2412b,378,12,f +3816,2419,72,4,f +3816,2431,378,9,f +3816,2454a,71,3,f +3816,2456,72,1,f +3816,2462,71,4,f +3816,2489,70,1,f +3816,2529,70,2,f +3816,2540,0,1,f +3816,2570,70,1,f +3816,2877,70,2,f +3816,2877,71,19,f +3816,3001,0,1,f +3816,3003,0,3,f +3816,3003,71,1,f +3816,30046,0,2,f +3816,3005,19,2,f +3816,3005,71,26,f +3816,3008,72,1,f +3816,3008,0,1,f +3816,3009,71,4,f +3816,3010,0,1,f +3816,30103,72,1,f +3816,30137,70,5,f +3816,30153,57,1,f +3816,3020,0,2,f +3816,3020,70,8,f +3816,3023,72,2,f +3816,3023,14,1,f +3816,30238,25,1,f +3816,3029,72,2,f +3816,3032,72,2,f +3816,3034,19,4,f +3816,3034,71,4,f +3816,30364,71,8,f +3816,30374,72,1,f +3816,3038,0,2,f +3816,3040b,0,2,f +3816,30505,0,6,f +3816,30540,71,1,f +3816,30541,0,1,f +3816,3062b,46,3,f +3816,3068b,72,1,f +3816,32059,71,1,f +3816,3245b,72,6,f +3816,3297,378,8,f +3816,33009,70,1,f +3816,3307,71,2,f +3816,3455,19,1,f +3816,3460,72,2,f +3816,3581,70,2,f +3816,3622,71,5,f +3816,3623,72,2,f +3816,3626b,25,2,f +3816,3633,0,1,f +3816,3660,19,2,f +3816,3660,70,3,f +3816,3665,70,2,f +3816,3675,378,4,f +3816,3700,70,1,f +3816,3710,0,1,f +3816,3794a,70,2,f +3816,3830,0,2,f +3816,3831,0,2,f +3816,3835,0,1,f +3816,3837,72,1,f +3816,3841,72,1,f +3816,3853,70,1,f +3816,3899,15,1,f +3816,3899,4,1,f +3816,3933,71,4,f +3816,3934,71,4,f +3816,3937,0,1,f +3816,40234,70,1,f +3816,40241,70,2,f +3816,4085c,0,2,f +3816,41539,72,2,f +3816,4274,1,1,t +3816,4274,1,1,f +3816,4286,378,4,f +3816,4341,0,1,f +3816,44302a,70,8,f +3816,4460b,71,2,f +3816,4589,34,1,f +3816,4623,0,1,f +3816,48183,71,4,f +3816,4864b,71,2,f +3816,4865a,0,1,f +3816,6126a,57,2,f +3816,6134,4,1,f +3816,6141,42,1,f +3816,6141,42,1,t +3816,6141,0,1,t +3816,6141,0,4,f +3816,6255,2,2,f +3816,6256,14,1,f +3816,62808,60,2,f +3816,73983,19,2,f +3816,x234,14,1,f +3817,2526,6,1,f +3817,2528pb01,0,1,f +3817,2530,8,2,f +3817,2543,4,1,f +3817,2544,0,1,f +3817,2562,6,3,f +3817,30048,0,2,f +3817,3626bp39,14,1,f +3817,3626bp3e,14,1,f +3817,3626bp47,14,1,f +3817,3626bpr0895,15,1,f +3817,3626bpx81,14,1,f +3817,4738a,6,1,f +3817,4739a,6,1,f +3817,57503,334,2,f +3817,57504,334,2,f +3817,57505,334,2,f +3817,57506,334,2,f +3817,6260,15,1,f +3817,6265,15,2,f +3817,6266,15,2,f +3817,87692,15,1,f +3817,87693,15,1,t +3817,87694,15,1,f +3817,970c00,7,1,f +3817,970c00,0,1,f +3817,970c00,15,1,f +3817,970d01,0,1,f +3817,973p36c01,0,1,f +3817,973p39c01,1,1,f +3817,973px135c01,2,1,f +3817,973px136c01,4,1,f +3817,x190,383,1,f +3818,11267,323,1,f +3818,11816pr0002,78,1,f +3818,11816pr0017,78,1,f +3818,14769pr1056,15,2,f +3818,15395,26,1,f +3818,15571,323,2,f +3818,15573,15,2,f +3818,15623pr0005,322,1,f +3818,15625pr0007,15,1,f +3818,15875pr0006c01,322,1,f +3818,15875pr0007c01,1,1,f +3818,16577,15,3,f +3818,18394pat0002,1003,1,f +3818,18844,226,1,f +3818,19195pr0001,484,1,f +3818,20310,15,6,f +3818,20375pr01,323,1,f +3818,2343,47,2,f +3818,2423,31,1,f +3818,2431,1,2,f +3818,2540,15,1,f +3818,25403,15,1,f +3818,26603,15,2,f +3818,3001,85,1,f +3818,3001,15,1,f +3818,3004,1,1,f +3818,3004,323,1,f +3818,3004,15,1,f +3818,30145,15,2,f +3818,30153,47,1,f +3818,30153,45,1,f +3818,30153,41,1,f +3818,3022,26,1,f +3818,30236,31,2,f +3818,3032,322,1,f +3818,30367c,41,1,f +3818,30374,41,6,f +3818,30592,15,1,f +3818,3065,41,1,f +3818,3068b,322,1,f +3818,32530,26,1,f +3818,33291,31,1,t +3818,33291,31,1,f +3818,3633,15,2,f +3818,3673,71,1,f +3818,3673,71,1,t +3818,42409,41,1,f +3818,4460b,323,2,f +3818,46212,41,1,f +3818,4738a,30,1,f +3818,4739a,30,1,f +3818,47847,1003,3,f +3818,59900,45,1,f +3818,6020,15,1,f +3818,6254,15,2,f +3818,6636,15,1,f +3818,87081,31,1,f +3818,87580,15,1,f +3818,87580,1,1,f +3818,88289,322,1,f +3818,90509,85,2,f +3818,92456pr0065c01,78,1,f +3818,92456pr0066c01,78,1,f +3818,92950,85,3,f +3818,93555,179,2,f +3818,93555,179,1,t +3818,98138,19,2,f +3818,98138,19,1,t +3819,ftbirchh,2,1,f +3819,ftbushh,2,4,f +3819,ftcyph,2,1,f +3819,ftfruith,2,1,f +3819,ftoakh,2,1,f +3819,ftpineh,2,1,f +3820,3037,1,12,f +3820,3039,1,6,f +3820,3041,1,3,f +3820,3043,1,2,f +3821,2420,71,2,f +3821,2444,1,1,f +3821,2450,1,4,f +3821,30027b,71,1,f +3821,3020,1,1,f +3821,3020,71,1,f +3821,3021,1,1,f +3821,3022,1,4,f +3821,3023,1,1,f +3821,3023,14,2,f +3821,3024,14,1,f +3821,30374,14,2,f +3821,30602,40,1,f +3821,3069b,14,2,f +3821,3673,71,1,f +3821,3673,71,1,t +3821,3710,14,1,f +3821,3710,1,2,f +3821,3710,71,2,f +3821,3794a,1,4,f +3821,3794a,14,3,f +3821,4081b,71,2,f +3821,41769,14,1,f +3821,41770,14,1,f +3821,4286,14,1,f +3821,4286,1,2,f +3821,4488,71,1,f +3821,4617b,0,1,f +3821,47674,46,1,f +3821,47675,1,1,f +3821,47676,1,1,f +3821,49668,72,2,f +3821,54200,40,1,f +3821,54200,46,1,f +3821,54200,33,1,f +3821,6019,14,2,f +3821,6141,57,1,t +3821,6141,71,2,f +3821,6141,57,2,f +3821,6141,71,1,t +3822,2456,70,1,f +3822,3004,1,8,f +3822,3004,71,8,f +3822,30136,70,2,f +3822,30137,70,5,f +3822,30171,70,2,f +3822,3020,2,2,f +3822,3020,70,2,f +3822,3031,2,3,f +3822,3032,72,2,f +3822,3032,2,1,f +3822,3036,2,1,f +3822,30414,72,1,f +3822,3062b,320,4,f +3822,3062b,19,1,f +3822,3069b,2,1,f +3822,3069b,4,1,f +3822,32202,297,3,f +3822,32474,4,2,f +3822,32474,0,3,f +3822,32530,72,2,f +3822,33172,308,2,f +3822,3455,72,2,f +3822,3623,70,2,f +3822,3626bpr0515b,78,1,f +3822,3626bpr0703,78,1,f +3822,3626bpr0705,78,1,f +3822,3626bpr0706,78,1,f +3822,3626bpr0707,78,1,f +3822,3660,70,2,f +3822,3665,1,2,f +3822,3666,70,2,f +3822,3673,71,2,f +3822,3673,71,1,t +3822,3675,71,2,f +3822,3710,70,3,f +3822,3794b,297,1,f +3822,3795,70,2,f +3822,3941,19,2,f +3822,3957a,71,3,f +3822,40233,0,1,f +3822,4032a,19,5,f +3822,4286,1,2,f +3822,4332,70,3,f +3822,4332,0,2,f +3822,4495b,4,1,f +3822,4495b,2,1,f +3822,4495b,297,1,f +3822,4589,2,4,f +3822,4589,4,4,f +3822,4589,297,6,f +3822,4738a,70,1,f +3822,4739a,70,1,f +3822,47905,19,3,f +3822,50231,0,1,f +3822,50231,320,2,f +3822,50231,288,2,f +3822,54200,72,1,t +3822,54200,72,2,f +3822,60475a,71,2,f +3822,6141,297,1,t +3822,6141,297,1,f +3822,6233,320,3,f +3822,62810,0,1,f +3822,62810,308,1,f +3822,64798,71,1,f +3822,88289,308,2,f +3822,89801,80,1,f +3822,92081,19,1,f +3822,92950,1,1,f +3822,970c00,15,4,f +3822,970c00,0,1,f +3822,973pr1668c01,320,2,f +3822,973pr1669c01,288,2,f +3822,973pr1670c01,0,1,f +3824,2335,0,1,f +3824,2377,0,4,f +3824,2377,15,4,f +3824,2412b,15,9,f +3824,2412b,0,4,f +3824,2420,0,2,f +3824,2420,15,2,f +3824,2420,4,2,f +3824,2423,2,16,f +3824,2431,15,2,f +3824,2431,4,2,f +3824,2431,0,2,f +3824,2431pr0028,72,1,f +3824,2432,0,4,f +3824,2436,0,2,f +3824,2445,0,2,f +3824,2445,4,1,f +3824,2445,15,2,f +3824,2449,0,2,f +3824,2496,0,2,f +3824,2540,15,1,f +3824,2540,0,5,f +3824,2555,15,2,f +3824,2877,2,22,f +3824,2878,0,18,f +3824,2920,0,12,f +3824,2921,15,28,f +3824,2921,4,4,f +3824,2921,0,8,f +3824,3001,0,1,f +3824,3002,1,1,f +3824,3002,0,1,f +3824,3003,1,1,f +3824,3003,71,5,f +3824,3004,14,2,f +3824,3004,2,3,f +3824,3004,15,12,f +3824,3004,0,8,f +3824,3004,4,2,f +3824,30055,0,4,f +3824,3007,4,1,f +3824,3008,15,6,f +3824,3009,2,6,f +3824,3009,0,8,f +3824,3010,0,1,f +3824,3010,15,6,f +3824,30133,4,1,f +3824,30136,70,8,f +3824,30137,70,14,f +3824,30183,0,3,f +3824,30187b,1,1,f +3824,30189,1,1,f +3824,30190,71,1,f +3824,3020,0,8,f +3824,3020,15,5,f +3824,3021,14,4,f +3824,3021,4,3,f +3824,3021,1,3,f +3824,3021,4,1,t +3824,3022,1,2,f +3824,3022,15,4,f +3824,3022,1,1,t +3824,3023,15,7,f +3824,3023,2,18,f +3824,3023,4,27,f +3824,3023,0,8,f +3824,3023,1,11,f +3824,3023,14,14,f +3824,3023,4,2,t +3824,30237a,0,2,f +3824,3024,4,2,f +3824,3029,0,1,f +3824,3031,4,1,f +3824,3032,0,4,f +3824,3032,4,1,f +3824,3034,0,1,f +3824,3035,0,2,f +3824,30359b,0,2,f +3824,3036,4,4,f +3824,30367b,0,1,f +3824,3037,2,2,f +3824,3039,0,2,f +3824,3039,2,2,f +3824,3040b,15,4,f +3824,3040b,4,4,f +3824,30414,15,8,f +3824,3062b,15,4,f +3824,3062b,0,6,f +3824,30663,0,2,f +3824,3068b,1,2,f +3824,3068b,2,5,f +3824,3069b,4,4,f +3824,3069b,14,2,f +3824,3069b,2,4,f +3824,3069b,1,5,f +3824,3069bpr0055,15,8,f +3824,32028,0,14,f +3824,3297,0,22,f +3824,33009,4,1,f +3824,33009,26,1,f +3824,33009,70,1,f +3824,33051,10,2,f +3824,33207p01,15,1,f +3824,3460,0,4,f +3824,3460,15,6,f +3824,3460,4,2,f +3824,3471,2,3,f +3824,3622,2,2,f +3824,3623,0,2,f +3824,3624,1,1,f +3824,3624,320,2,f +3824,3626bpr0043,14,1,f +3824,3626bpr0126,14,1,f +3824,3626bpr0216,14,1,f +3824,3626bpr0250,14,1,f +3824,3626bpr0270,14,1,f +3824,3626bpr0314,14,1,f +3824,3626bpr0386,14,1,f +3824,3660,0,8,f +3824,3665,0,10,f +3824,3666,0,4,f +3824,3666,4,4,f +3824,3666,2,4,f +3824,3666,15,2,f +3824,3700,4,1,f +3824,3710,2,4,f +3824,3710,4,2,f +3824,3710,0,7,f +3824,3710,15,6,f +3824,3741,2,2,f +3824,3741,2,1,t +3824,3742,5,3,f +3824,3742,5,1,t +3824,3742,4,3,f +3824,3742,4,1,t +3824,3794a,14,4,f +3824,3794a,15,2,f +3824,3794a,4,3,f +3824,3794a,1,1,f +3824,3794a,14,4,t +3824,3795,4,1,f +3824,3795,0,1,f +3824,3795,15,6,f +3824,3832,15,2,f +3824,3837,72,1,f +3824,3861b,15,2,f +3824,3861b,2,2,f +3824,3901,0,1,f +3824,3901,6,1,f +3824,3941,0,1,f +3824,3957a,0,7,f +3824,3957a,15,4,f +3824,3958,4,3,f +3824,3960,0,1,f +3824,4022,0,12,f +3824,4025,0,4,f +3824,40251,0,1,f +3824,4032a,15,1,f +3824,4032a,0,1,f +3824,4034,47,12,f +3824,4070,0,17,f +3824,4079,0,4,f +3824,4085c,15,4,f +3824,4085c,0,16,f +3824,4085c,4,12,f +3824,4093a,4,2,f +3824,4095,4,12,f +3824,4150pr0022,71,1,f +3824,4162,15,8,f +3824,4175,0,20,f +3824,42022,15,4,f +3824,42511,1,1,f +3824,4274,71,1,f +3824,4274,71,1,t +3824,4349,72,2,f +3824,4460a,0,2,f +3824,4460a,15,4,f +3824,4477,4,2,f +3824,4477,0,2,f +3824,4485,0,1,f +3824,4510,0,10,f +3824,4589,14,1,f +3824,4589,0,2,f +3824,4623,15,1,f +3824,4862,47,4,f +3824,4864b,0,2,f +3824,50687,71,2,f +3824,50950,0,14,f +3824,57051,383,18,f +3824,57878,0,36,f +3824,6014b,71,2,f +3824,6015,0,3,f +3824,6019,0,1,f +3824,6020,0,1,f +3824,6091,0,4,f +3824,6111,15,4,f +3824,6141,0,2,f +3824,6141,0,1,t +3824,6141,36,1,t +3824,6141,46,1,t +3824,6141,33,8,f +3824,6141,33,1,t +3824,6141,47,1,t +3824,6141,47,2,f +3824,6141,46,10,f +3824,6141,15,1,t +3824,6141,36,17,f +3824,6141,15,4,f +3824,6251pr0002,15,1,f +3824,6556,15,12,f +3824,73092,0,12,f +3824,970c00,1,1,f +3824,970c00,4,1,f +3824,970c00,72,1,f +3824,970c00,272,2,f +3824,970c00,71,2,f +3824,973pr1155c01,19,1,f +3824,973pr1163c01,272,1,f +3824,973pr1164c01,272,2,f +3824,973pr1169c01,73,1,f +3824,973pr1170c01,4,1,f +3824,973pr1201c01,15,1,f +3825,3038,4,8,f +3825,3040a,4,9,f +3825,3042,4,2,f +3825,3044a,4,2,f +3828,30367c,15,1,f +3828,30374,70,1,f +3828,3626c,15,1,f +3828,4070,15,1,f +3828,95674,0,1,f +3831,2412b,0,2,f +3831,2447,0,1,f +3831,2447,0,1,t +3831,2540,72,1,f +3831,2555,0,2,f +3831,30031,72,2,f +3831,30162,72,1,f +3831,30171,0,1,f +3831,30187b,15,1,f +3831,3021,0,2,f +3831,3023,70,1,f +3831,30261,15,1,f +3831,30360,0,1,f +3831,30377,0,1,f +3831,30377,0,1,t +3831,30414,15,2,f +3831,3069b,15,1,f +3831,3070b,72,3,f +3831,3070b,72,1,t +3831,32073,71,1,f +3831,3626bpr0335,14,1,f +3831,3794b,72,3,f +3831,3838,0,1,f +3831,3957a,0,2,f +3831,4032a,70,4,f +3831,4081b,0,1,f +3831,4349,72,1,f +3831,44661,0,4,f +3831,44675,71,2,f +3831,44728,71,4,f +3831,4589,42,1,f +3831,4589,34,2,f +3831,4733,0,3,f +3831,4868b,0,1,f +3831,50950,15,4,f +3831,54200,36,1,f +3831,54200,33,1,f +3831,54200,33,1,t +3831,54200,71,2,f +3831,54200,36,1,t +3831,54200,71,1,t +3831,61184,71,2,f +3831,61409,72,2,f +3831,6141,36,1,t +3831,6141,34,1,t +3831,6141,182,2,f +3831,6141,36,1,f +3831,6141,34,1,f +3831,6141,182,1,t +3831,63965,0,1,f +3831,85940,0,2,f +3831,85948pr0001,25,1,f +3831,85959pat0001,36,1,f +3831,970c00pr0127,72,1,f +3831,970c00pr0131,0,1,f +3831,973pr1490c01,72,1,f +3831,973pr1512c01,0,1,f +3834,3004pr20,15,1,f +3834,3005,0,1,t +3834,3005,4,1,t +3834,3005,4,3,f +3834,3005,0,1,f +3834,3021,2,2,f +3834,3040b,4,1,f +3834,3622,4,1,f +3834,3623,4,1,f +3834,3665,71,2,f +3834,3666,2,2,f +3835,32073,7,1,f +3835,32174,135,6,f +3835,32556,7,1,f +3835,3706,0,2,f +3835,41665,6,2,f +3835,41666,7,2,f +3835,41667,7,1,f +3835,41668,135,2,f +3835,41669,34,2,f +3835,41670,6,4,f +3835,41671pb07,135,1,f +3835,41672,0,2,f +3835,41752,8,1,f +3835,42042,7,1,f +3835,42042und,148,1,f +3835,42074,15,2,f +3835,4519,7,5,f +3835,45276,179,2,f +3835,6628,0,2,f +3835,85544,2,1,t +3835,85544,10,1,f +3835,pahrakkalcd,9999,1,f +3838,11055,0,1,f +3838,11055,4,1,f +3838,11090,15,1,f +3838,11092,179,2,f +3838,11211,4,2,f +3838,11477,0,2,f +3838,14769,4,3,f +3838,15573,297,1,f +3838,15619,4,1,f +3838,15705,308,1,f +3838,16577,72,1,f +3838,18950,34,1,f +3838,18962,19,1,f +3838,2357,4,2,f +3838,3002,70,2,f +3838,3003,0,2,f +3838,3005,72,2,f +3838,30099,0,2,f +3838,3010,71,2,f +3838,30136,70,15,f +3838,30137,70,2,f +3838,30173b,179,2,f +3838,30173b,297,2,f +3838,30176,2,2,f +3838,3023,72,10,f +3838,3023,182,1,f +3838,3023,4,8,f +3838,3034,28,2,f +3838,30355,71,1,f +3838,30356,71,1,f +3838,30363,72,2,f +3838,30374,297,2,f +3838,30377,19,2,f +3838,3039,4,2,f +3838,3062b,70,10,f +3838,32123b,71,4,f +3838,3245b,4,4,f +3838,3456,28,1,f +3838,3622,70,2,f +3838,3626cpr1226,14,1,f +3838,3626cpr1365,14,1,f +3838,3626cpr1572,14,1,f +3838,3626cpr1604,14,1,f +3838,3666,0,1,f +3838,3678b,0,2,f +3838,3700,4,3,f +3838,3832,71,1,f +3838,3941,70,1,f +3838,4032a,0,3,f +3838,4070,4,2,f +3838,4286,0,4,f +3838,43887,0,2,f +3838,44728,4,2,f +3838,4477,0,4,f +3838,4497,179,2,f +3838,48729b,72,2,f +3838,53451,15,1,f +3838,53451,297,1,f +3838,54200,0,4,f +3838,57895pr0007,47,2,f +3838,58176,35,2,f +3838,59230,19,2,f +3838,59900,182,2,f +3838,59900,297,4,f +3838,59900,72,3,f +3838,60470a,0,2,f +3838,60474,308,1,f +3838,60475b,71,2,f +3838,60481,71,2,f +3838,60596,0,2,f +3838,61184,71,2,f +3838,6126b,182,2,f +3838,6141,19,2,f +3838,63965,297,2,f +3838,63965,70,3,f +3838,64727,71,3,f +3838,64798,70,1,f +3838,6636,0,1,f +3838,87079,4,2,f +3838,87083,72,1,f +3838,87580,72,1,f +3838,87747,15,1,f +3838,88072,19,1,f +3838,92099,28,1,f +3838,92107,28,1,f +3838,92338,72,2,f +3838,92690,70,1,f +3838,92690,297,2,f +3838,93274,14,1,f +3838,970c00,0,1,f +3838,970c00,15,1,f +3838,970c00pr0761,4,1,f +3838,970c00pr0767,85,1,f +3838,973pr2846c01,4,1,f +3838,973pr2852c01,14,1,f +3838,973pr2907c01,0,1,f +3838,973pr2908c01,15,1,f +3838,98128,0,1,f +3838,98132,179,1,f +3838,98284,70,2,f +3838,98560,71,2,f +3838,99207,0,2,f +3839,2866,14,2,f +3839,2866,14,1,t +3839,74747,8,2,f +3839,75541,8,1,f +3839,75542,8,1,f +3841,30151a,47,1,f +3841,30153,45,1,f +3841,33009,26,1,f +3841,33320,2,1,f +3841,3941,15,1,f +3841,4032a,15,1,f +3842,2780,0,5,f +3842,2780,0,1,t +3842,3062b,0,1,f +3842,30663,71,1,f +3842,32002,72,5,f +3842,32002,72,1,t +3842,32034,0,1,f +3842,32062,4,3,f +3842,32073,71,5,f +3842,32123b,71,6,f +3842,32123b,71,1,t +3842,32140,0,2,f +3842,32184,71,3,f +3842,32249,0,2,f +3842,32250,0,2,f +3842,32250,27,2,f +3842,32348,0,2,f +3842,32449,0,2,f +3842,32449,15,2,f +3842,32523,1,1,f +3842,32523,72,2,f +3842,32524,72,2,f +3842,32526,0,2,f +3842,32557,0,1,f +3842,3647,72,1,f +3842,3673,71,2,f +3842,3673,71,1,t +3842,3705,0,3,f +3842,3706,0,2,f +3842,3707,0,1,f +3842,3713,4,1,t +3842,3713,4,9,f +3842,41677,72,2,f +3842,41677,1,2,f +3842,4274,1,2,f +3842,4274,1,1,t +3842,4519,71,4,f +3842,4716,71,1,f +3842,47508,0,1,f +3842,47973,72,1,f +3842,48989,71,1,f +3842,56897,0,2,f +3842,56898,0,2,f +3842,56902,71,2,f +3842,56904,71,2,f +3842,59443,0,1,f +3842,6141,182,1,f +3842,6141,47,1,t +3842,6141,182,1,t +3842,6141,47,2,f +3842,62462,15,1,f +3842,6536,72,4,f +3842,6558,1,1,f +3842,6632,27,2,f +3843,x456a,47,1,f +3845,2340,25,1,f +3845,2357,15,2,f +3845,2412b,0,4,f +3845,2420,72,1,f +3845,2420,15,6,f +3845,2431,15,6,f +3845,2445,0,4,f +3845,2458,19,6,f +3845,2654,47,2,f +3845,2780,0,3,f +3845,2780,0,1,t +3845,2905,0,1,f +3845,3001,72,3,f +3845,3003,15,1,f +3845,30033,15,1,f +3845,3004,72,5,f +3845,3005,15,2,f +3845,3005,72,4,f +3845,3020,15,6,f +3845,3021,0,3,f +3845,3021,72,4,f +3845,3021,15,1,f +3845,3022,0,2,f +3845,3022,15,1,f +3845,3023,25,10,f +3845,3023,0,4,f +3845,3023,72,1,f +3845,3023,15,11,f +3845,3024,15,4,f +3845,3033,71,3,f +3845,3034,0,4,f +3845,30375,15,2,f +3845,30414,72,4,f +3845,30552,0,6,f +3845,3062b,47,2,f +3845,3062b,15,8,f +3845,3068b,15,7,f +3845,3069b,0,2,f +3845,3069b,15,4,f +3845,3069b,71,2,f +3845,3069b,25,10,f +3845,3070b,15,1,t +3845,3070b,15,7,f +3845,32002,72,1,t +3845,32002,72,2,f +3845,32013,0,1,f +3845,32016,71,1,f +3845,32062,4,5,f +3845,32073,71,1,f +3845,32529,0,1,f +3845,3622,72,1,f +3845,3622,71,8,f +3845,3623,15,4,f +3845,3623,0,3,f +3845,3623,72,1,f +3845,3666,15,12,f +3845,3701,72,1,f +3845,3710,72,1,f +3845,3710,15,7,f +3845,3710,25,3,f +3845,3749,19,1,f +3845,3794b,15,7,f +3845,3795,0,4,f +3845,3832,71,2,f +3845,3894,15,2,f +3845,3937,71,3,f +3845,3956,71,1,f +3845,3958,15,2,f +3845,4032a,15,1,f +3845,4070,15,8,f +3845,4162,15,2,f +3845,4162,0,8,f +3845,41677,0,2,f +3845,41747,15,1,f +3845,41748,15,1,f +3845,41764,15,1,f +3845,41765,15,1,f +3845,41767,15,3,f +3845,41768,15,3,f +3845,42023,15,2,f +3845,44302a,0,7,f +3845,44567a,0,1,f +3845,44728,15,2,f +3845,4733,0,3,f +3845,4740,15,2,f +3845,48729b,72,1,t +3845,48729b,72,4,f +3845,50950,15,22,f +3845,54200,15,12,f +3845,54200,15,1,t +3845,59230,15,4,f +3845,59230,15,1,t +3845,6019,71,2,f +3845,6041,0,1,f +3845,6083,72,2,f +3845,6134,71,3,f +3845,6141,47,16,f +3845,6141,0,1,t +3845,6141,15,23,f +3845,6141,4,7,f +3845,6141,4,1,t +3845,6141,0,1,f +3845,6141,15,1,t +3845,6141,71,1,t +3845,6141,71,19,f +3845,6141,47,1,t +3845,6232,72,2,f +3845,6541,19,9,f +3845,6636,15,1,f +3845,87087,71,2,f +3846,2412b,4,1,f +3846,2432,0,1,f +3846,2441,0,1,f +3846,2446,0,1,f +3846,2447,41,1,f +3846,3020,4,1,f +3846,3020,0,1,f +3846,3021,0,1,f +3846,3022,4,1,f +3846,3068b,0,1,f +3846,3069b,4,1,f +3846,3298p57,0,1,f +3846,3623,4,2,f +3846,3626apr0001,14,1,f +3846,3641,0,4,f +3846,3710,4,1,f +3846,3829c01,4,1,f +3846,3839b,7,1,f +3846,4286,0,2,f +3846,4624,7,4,f +3846,4865a,0,2,f +3846,970c00,0,1,f +3846,973p0ac02,0,1,f +3847,10052,71,1,f +3847,10113,0,1,f +3847,11477,0,2,f +3847,11477,71,2,f +3847,11477,272,14,f +3847,15068,272,1,f +3847,15341,179,3,f +3847,15427pr0001,0,1,f +3847,15428pr0001,0,1,f +3847,15535,72,1,f +3847,15573,0,2,f +3847,15573,272,4,f +3847,15706,322,8,f +3847,15712,71,5,f +3847,16770,41,8,f +3847,18601,72,1,f +3847,18649,0,6,f +3847,18651,0,2,f +3847,18868a,41,1,f +3847,19981pr0001,41,1,f +3847,19981pr0002,41,1,f +3847,19981pr0003,41,1,f +3847,21445,0,2,f +3847,21845,0,1,f +3847,2412b,272,4,f +3847,2412b,179,9,f +3847,2419,71,2,f +3847,2540,0,3,f +3847,2540,71,5,f +3847,298c02,71,1,t +3847,298c02,71,1,f +3847,30028,0,4,f +3847,3003,71,2,f +3847,3005,272,2,f +3847,3020,0,2,f +3847,3020,272,2,f +3847,3020,322,1,f +3847,3020,14,1,f +3847,3021,71,6,f +3847,3021,322,6,f +3847,3022,72,3,f +3847,3023,19,1,f +3847,3023,0,4,f +3847,3045,71,2,f +3847,3069b,322,10,f +3847,3069bpr0153,0,1,f +3847,3070b,182,1,t +3847,3070b,182,1,f +3847,32064a,71,2,f +3847,3626cpr0896,78,1,f +3847,3626cpr1644,14,1,f +3847,3626cpr1765,78,1,f +3847,3675,272,2,f +3847,3701,71,1,f +3847,3710,322,1,f +3847,3710,272,1,f +3847,3937,14,1,f +3847,3938,0,1,f +3847,3941,41,1,f +3847,4286,322,2,f +3847,4287,71,2,f +3847,44567a,71,1,f +3847,44676,272,2,f +3847,4477,72,1,f +3847,4595,71,1,f +3847,4600,0,1,f +3847,4740,182,2,f +3847,4865b,41,4,f +3847,48729b,72,1,f +3847,48729b,72,1,t +3847,49668,0,2,f +3847,50231,72,1,f +3847,54200,71,1,t +3847,54200,182,1,t +3847,54200,41,1,t +3847,54200,182,1,f +3847,54200,41,2,f +3847,54200,272,1,t +3847,54200,71,14,f +3847,54200,272,2,f +3847,6019,0,2,f +3847,60476,71,2,f +3847,60477,72,2,f +3847,6091,272,2,f +3847,6131,72,1,f +3847,61409,71,5,f +3847,6141,72,3,f +3847,6141,72,2,t +3847,62360,41,2,f +3847,63868,0,5,f +3847,63965,70,1,f +3847,6553,0,2,f +3847,6632,71,2,f +3847,74967,0,4,f +3847,85984,0,2,f +3847,87580,272,1,f +3847,88072,71,1,f +3847,92747pr0002,52,1,f +3847,92747pr0003,52,1,f +3847,92747pr0004,52,1,f +3847,92747pr0005,52,1,f +3847,92747pr0006,52,1,f +3847,96874,25,1,t +3847,970c00,72,2,f +3847,970c00pr0628,0,1,f +3847,973pr2053c01,72,1,f +3847,973pr2590c01,0,1,f +3847,973pr2922c01,72,1,f +3847,98138,52,1,t +3847,98138,52,1,f +3847,98138,41,14,f +3847,98138,41,1,t +3847,98397,71,2,f +3847,98721,0,2,t +3847,98721,0,3,f +3847,99207,0,1,f +3847,99780,72,1,f +3847,99781,0,1,f +3849,30375ps2,1,1,f +3849,30376,19,1,f +3849,30377,19,1,f +3849,30377,19,1,t +3849,30378,19,1,f +3849,58247,0,1,f +3849,59230,19,1,f +3849,59230,19,1,t +3851,12147,4,1,f +3851,12602,14,1,f +3851,12651,14,1,f +3851,14294,14,2,f +3851,14786,71,1,f +3851,14923,15,1,f +3851,16087,4,2,f +3851,18018,179,1,f +3851,18533,14,2,f +3851,2223,0,1,f +3851,2224,72,1,f +3851,2300,4,1,f +3851,3011,15,1,f +3851,31111pb022,4,1,f +3851,3437,1,1,f +3851,3437,4,7,f +3851,3437,14,1,f +3851,3437,15,2,f +3851,3437,0,1,f +3851,40666,71,2,f +3851,40666,4,2,f +3851,40666,72,3,f +3851,40666,0,1,f +3851,4199,15,2,f +3851,4672,72,1,f +3851,47440,4,1,f +3851,47517,0,2,f +3851,47517pr0002c01,0,1,f +3851,51262,71,1,f +3851,51703,182,2,f +3851,51704,4,1,f +3851,55007,0,1,f +3851,58498,0,1,f +3851,59559,4,1,f +3851,61318,71,1,f +3851,6394,4,1,f +3851,6414,4,1,f +3851,76338,1,1,f +3851,89849,15,1,f +3851,92094,4,1,f +3851,92925,71,1,f +3851,95463,72,1,f +3851,98233,4,2,f +3851,98457,14,2,f +3851,99627,4,1,f +3853,3894,0,30,f +3854,2540,72,2,f +3854,3002,71,1,f +3854,3004,71,4,f +3854,3020,71,2,f +3854,3021,71,3,f +3854,3022,71,2,f +3854,3022,72,2,f +3854,3023,71,3,f +3854,3039,71,2,f +3854,3660,71,2,f +3854,3839b,15,1,f +3854,3937,72,1,f +3854,3938,71,1,f +3854,4070,71,2,f +3854,4085c,0,2,f +3854,43722,72,1,f +3854,43723,72,1,f +3854,6141,0,2,f +3854,6141,0,1,t +3856,2335p31,15,1,f +3856,2339,0,4,f +3856,2343,14,1,f +3856,2357,7,4,f +3856,2376,0,1,f +3856,2417,2,2,f +3856,2419,7,1,f +3856,2431,4,2,f +3856,2436,4,1,f +3856,2452,0,1,f +3856,2456,14,4,f +3856,2458,7,1,f +3856,2465,0,1,f +3856,2489,6,5,f +3856,2518,2,4,f +3856,2524,6,1,f +3856,2525p31,15,1,f +3856,2526,14,1,f +3856,2526,1,1,f +3856,2526,6,1,f +3856,2527,6,1,f +3856,2528pb01,0,1,f +3856,2530,8,5,f +3856,2536,6,7,f +3856,2540,0,3,f +3856,2542,4,2,f +3856,2542,6,2,f +3856,2543,4,1,f +3856,2544,0,3,f +3856,2545,0,1,f +3856,2546p01,4,1,f +3856,2550c01,6,1,f +3856,2551,6,1,f +3856,2551,4,1,f +3856,2555,0,6,f +3856,2561,6,3,f +3856,2562,6,3,f +3856,2563,6,1,f +3856,2566,2,1,f +3856,2577,14,1,f +3856,3001,0,1,f +3856,3001,14,1,f +3856,3002,14,1,f +3856,3003,14,4,f +3856,3003,7,1,f +3856,3004,0,4,f +3856,3004,14,4,f +3856,3004,7,20,f +3856,3005,4,4,f +3856,3005,14,2,f +3856,3005,0,5,f +3856,3005,7,11,f +3856,3008,14,1,f +3856,3010,7,5,f +3856,3010,4,2,f +3856,3020,14,2,f +3856,3020,4,3,f +3856,3020,0,1,f +3856,3021,4,1,f +3856,3023,4,3,f +3856,3023,14,8,f +3856,3023,0,6,f +3856,3023,7,3,f +3856,3024,0,5,f +3856,3024,4,1,f +3856,3027,0,1,f +3856,3027,7,1,f +3856,3032,0,2,f +3856,3033,0,2,f +3856,3033,7,1,f +3856,3036,7,1,f +3856,3039,7,8,f +3856,3040b,7,8,f +3856,3040b,0,8,f +3856,3062b,4,10,f +3856,3062b,15,4,f +3856,3062b,0,10,f +3856,3062b,2,1,f +3856,3062b,36,1,f +3856,3068bp30,15,1,f +3856,3069b,4,2,f +3856,3127,7,1,f +3856,3307,4,2,f +3856,3403,4,1,f +3856,3403,0,1,f +3856,3404,4,1,f +3856,3404,0,1,f +3856,3460,7,3,f +3856,3460,0,2,f +3856,3622,7,8,f +3856,3622,4,3,f +3856,3623,4,2,f +3856,3626bp35,14,1,f +3856,3626bp44,14,1,f +3856,3626bp47,14,1,f +3856,3626bp48,14,1,f +3856,3626bp49,14,1,f +3856,3626bpr0001,14,1,f +3856,3659,7,2,f +3856,3660,4,2,f +3856,3665,7,4,f +3856,3666,0,1,f +3856,3666,7,1,f +3856,3703,0,1,f +3856,3705,0,1,f +3856,3710,7,1,f +3856,3710,0,5,f +3856,3794a,4,3,f +3856,3794a,0,1,f +3856,3811,1,1,f +3856,3849,0,1,f +3856,3941,6,8,f +3856,3957a,0,2,f +3856,4032a,2,1,f +3856,4070,0,1,f +3856,4070,7,2,f +3856,4081b,0,2,f +3856,4085c,14,2,f +3856,4213,0,1,f +3856,4265a,7,1,t +3856,4265a,7,1,f +3856,4275b,7,1,f +3856,4276b,7,1,f +3856,4286,7,2,f +3856,4287,7,2,f +3856,4319,0,1,f +3856,4460a,7,4,f +3856,4495b,4,1,f +3856,4504,0,1,f +3856,4522,0,1,f +3856,4589,46,2,f +3856,4625,0,1,f +3856,4738a,6,1,f +3856,4739a,6,1,f +3856,56823c50,0,1,f +3856,57503,334,2,f +3856,57504,334,2,f +3856,57505,334,2,f +3856,57506,334,2,f +3856,6016,6,1,f +3856,6019,7,4,f +3856,6020,6,3,f +3856,6046,6,1,f +3856,6082,8,2,f +3856,6108,0,2,f +3856,6141,34,2,f +3856,6141,34,1,t +3856,6141,46,2,f +3856,6141,46,1,t +3856,6141,36,1,t +3856,6141,36,2,f +3856,6141,0,3,f +3856,6141,47,4,f +3856,6141,0,1,t +3856,6141,47,1,t +3856,73037,0,1,f +3856,84943,8,1,f +3856,970c00,0,1,f +3856,970c00,15,2,f +3856,970c00,7,1,f +3856,970c00,1,1,f +3856,970d01,0,1,f +3856,973p32c01,14,1,f +3856,973p33c01,14,1,f +3856,973p34c01,1,1,f +3856,973p36c01,0,1,f +3856,973pb0206c01,15,2,f +3857,3065,47,50,f +3858,3001a,1,8,f +3858,3001a,14,11,f +3858,3001a,15,22,f +3858,3002a,14,2,f +3858,3002a,15,10,f +3858,3003,15,15,f +3858,3003,1,3,f +3858,3003,14,14,f +3858,3007,15,1,f +3858,3007,14,1,f +3858,3033,4,1,f +3858,3185,4,5,f +3858,3297,4,8,f +3858,3298,4,4,f +3858,3299,4,3,f +3858,3300,4,1,f +3858,3307,15,2,f +3858,3471,2,1,f +3858,3659,14,2,f +3858,3741,2,1,f +3858,3742,4,3,f +3858,3742,4,1,t +3858,3853mi,0,3,f +3858,3856mi,2,6,f +3858,3861mi,15,1,f +3858,455,2,1,f +3858,604mi,0,1,f +3859,2420,1,2,f +3859,2470,6,2,f +3859,2555,0,3,f +3859,30173a,7,2,f +3859,30174,8,1,f +3859,30175,8,1,f +3859,3022,0,1,f +3859,3023,1,1,f +3859,3040b,15,2,f +3859,3298,8,1,f +3859,3626bpn1,14,1,f +3859,3794a,7,1,f +3859,3795,0,1,f +3859,3839b,1,1,f +3859,4600,7,1,f +3859,529,334,1,f +3859,529,334,1,t +3859,6016,6,1,f +3859,970c11pb02b,0,1,f +3859,973pn1c01,1,1,f +3861,cloth02,1,1,f +3862,2346,0,6,f +3862,2350b,4,1,f +3862,2351,0,1,f +3862,2357,4,2,f +3862,2362a,15,2,f +3862,2362a,14,2,f +3862,2362a,1,2,f +3862,2362a,4,2,f +3862,2412b,15,1,f +3862,2412b,4,5,f +3862,2420,4,2,f +3862,2420,1,4,f +3862,2420,14,4,f +3862,2420,15,4,f +3862,2431,15,2,f +3862,2431,7,2,f +3862,2436,0,2,f +3862,2436,15,2,f +3862,2444,4,2,f +3862,2444,0,2,f +3862,2445,4,1,f +3862,2445,0,2,f +3862,2452,0,1,f +3862,2458,4,2,f +3862,2460,0,2,f +3862,2483,41,1,f +3862,2555,0,1,f +3862,2648,4,2,f +3862,2649,0,2,f +3862,2736,7,1,f +3862,2873,7,8,f +3862,2873,4,2,f +3862,2877,15,2,f +3862,2878c01,0,4,f +3862,2920,0,2,f +3862,2921,4,1,f +3862,2972,7,1,f +3862,298c02,0,3,f +3862,3001,4,1,f +3862,3002,0,4,f +3862,3003,4,1,f +3862,3004,4,3,f +3862,3004,0,1,f +3862,3005,4,3,f +3862,3005,7,8,f +3862,3009,15,1,f +3862,3020,0,2,f +3862,3020,1,1,f +3862,3020,15,2,f +3862,3020,14,1,f +3862,3020,4,2,f +3862,3021,15,4,f +3862,3021,0,1,f +3862,3022,4,3,f +3862,3022,0,5,f +3862,3022,15,1,f +3862,3023,2,6,f +3862,3023,15,3,f +3862,3023,4,11,f +3862,3023,0,12,f +3862,3024,4,1,f +3862,3032,0,1,f +3862,3034,4,2,f +3862,3034,2,2,f +3862,3035,14,2,f +3862,3035,1,2,f +3862,3037,15,1,f +3862,3040b,15,2,f +3862,3062b,7,4,f +3862,3062b,4,4,f +3862,3065,47,1,f +3862,3068b,7,4,f +3862,3069b,14,4,f +3862,3069b,4,8,f +3862,3069b,1,4,f +3862,3069b,0,1,f +3862,3069b,7,16,f +3862,3069bp09,15,3,f +3862,3070b,7,4,f +3862,3070b,0,2,f +3862,3070b,36,2,f +3862,3298,4,1,f +3862,3464,4,2,f +3862,3482,15,6,f +3862,3491,0,1,f +3862,3623,4,2,f +3862,3623,15,2,f +3862,3626bpr0001,14,2,f +3862,3651,7,2,f +3862,3660,0,3,f +3862,3665,4,2,f +3862,3666,4,3,f +3862,3673,7,2,f +3862,3700,4,2,f +3862,3706,0,2,f +3862,3707,0,1,f +3862,3709,0,1,f +3862,3710,0,1,f +3862,3710,15,2,f +3862,3710,4,3,f +3862,3738,0,2,f +3862,3749,7,2,f +3862,3787,15,1,f +3862,3794a,4,2,f +3862,3795,0,2,f +3862,3795,4,1,f +3862,3795,15,1,f +3862,3821,4,1,f +3862,3822,4,1,f +3862,3823,47,1,f +3862,3829c01,4,2,f +3862,3901,6,1,f +3862,3937,4,1,f +3862,3938,4,1,f +3862,3957a,0,2,f +3862,3962a,0,1,f +3862,4022,0,2,f +3862,4025,0,2,f +3862,4032a,0,1,f +3862,4070,4,4,f +3862,4070,15,2,f +3862,4079,7,1,f +3862,4081b,4,2,f +3862,4081b,15,2,f +3862,4085c,4,3,f +3862,4150,0,1,f +3862,4162,4,2,f +3862,4175,4,3,f +3862,4175,0,2,f +3862,4213,4,1,f +3862,4215a,14,6,f +3862,4215a,1,6,f +3862,4215a,15,4,f +3862,4262,7,1,f +3862,4265a,7,4,f +3862,4315,7,8,f +3862,4315,15,1,f +3862,4349,0,2,f +3862,4477,15,2,f +3862,4485,4,1,f +3862,4531,0,1,f +3862,4600,0,4,f +3862,4625,15,2,f +3862,4625,4,3,f +3862,4859,4,2,f +3862,4864a,15,2,f +3862,4865a,4,1,f +3862,56823,0,1,f +3862,6014a,15,8,f +3862,6015,0,8,f +3862,6140,7,2,f +3862,6141,36,2,f +3862,6141,4,4,f +3862,6141,46,6,f +3862,6141,47,6,f +3862,6546,14,4,f +3862,6546,15,8,f +3862,6546,1,4,f +3862,6556,1,2,f +3862,6556,14,2,f +3862,6556,15,4,f +3862,6576,4,4,f +3862,6576,14,2,f +3862,6576,1,2,f +3862,73037,4,1,f +3862,73092,0,2,f +3862,970c00,1,2,f +3862,973p19c01,1,2,f +3863,2723,0,1,f +3863,32002,8,2,f +3863,32002,8,1,t +3863,32014,25,2,f +3863,32016,7,6,f +3863,32017,0,2,f +3863,32062,0,4,f +3863,32063,25,2,f +3863,32073,7,5,f +3863,32123b,7,9,f +3863,32123b,7,1,t +3863,32310,148,2,f +3863,32310,135,1,f +3863,32348,0,1,f +3863,32449,7,2,f +3863,32449,0,2,f +3863,32580,179,2,f +3863,3705,0,4,f +3863,3713,7,1,t +3863,3713,7,1,f +3863,41669,36,2,f +3863,41669,25,2,f +3863,41677,7,6,f +3863,41677,0,4,f +3863,41752,8,1,f +3863,42003,0,3,f +3863,43093,1,1,t +3863,43093,1,3,f +3863,43559,135,1,f +3863,44292,7,1,f +3863,44293c01,7,1,f +3863,44294,7,1,f +3863,44309,0,1,f +3863,4519,7,5,f +3863,6536,25,2,f +3863,6558,0,3,f +3863,6632,7,1,f +3863,71509,0,3,t +3863,71509,0,1,f +3863,motor8,0,1,f +3864,3626cpr2008,14,1,f +3864,62696,70,1,f +3864,88646,0,1,f +3864,96204,4,1,f +3864,970c00pr1107,15,1,f +3864,973pr3518c01,4,1,f +3865,2483,57,1,f +3865,2483,41,1,f +3865,2507,57,1,f +3865,2620,41,1,f +3865,4315,0,2,f +3865,4315,15,2,f +3866,3626bpao,14,1,f +3866,6093,0,1,f +3866,970c00,4,1,f +3866,973pb0293c01,2,1,f +3869,2335,4,1,f +3869,2456,15,2,f +3869,2456,1,2,f +3869,2456,4,1,f +3869,2460,71,1,f +3869,2479,0,1,f +3869,2926,0,4,f +3869,3001,2,4,f +3869,3001,1,8,f +3869,3001,27,2,f +3869,3001,14,8,f +3869,3001,0,4,f +3869,3001,4,8,f +3869,3001,15,8,f +3869,3002,1,2,f +3869,3002,0,2,f +3869,3002,15,6,f +3869,3002,14,6,f +3869,3002,2,2,f +3869,3002,25,2,f +3869,3002,4,4,f +3869,3003,27,2,f +3869,3003,4,28,f +3869,3003,0,12,f +3869,3003,15,28,f +3869,3003,70,6,f +3869,3003,14,28,f +3869,3003,2,12,f +3869,3003,1,28,f +3869,3004,14,14,f +3869,3004,27,2,f +3869,3004,1,4,f +3869,3004,0,6,f +3869,3004,2,2,f +3869,3004,15,10,f +3869,3004,4,6,f +3869,3004,25,4,f +3869,3005,15,6,f +3869,3005,2,2,f +3869,3005,4,6,f +3869,3005,1,2,f +3869,3005,0,6,f +3869,3005,14,6,f +3869,30055,72,2,f +3869,3006,15,1,f +3869,3007,15,1,f +3869,3007,14,1,f +3869,3007,1,1,f +3869,3007,4,1,f +3869,3008,15,2,f +3869,3008,4,1,f +3869,3008,14,1,f +3869,3008,1,2,f +3869,3009,15,2,f +3869,3009,14,2,f +3869,3009,4,2,f +3869,3009,1,2,f +3869,3010,4,4,f +3869,3010,2,4,f +3869,3010,15,4,f +3869,3010,14,4,f +3869,3010,0,4,f +3869,3010,1,4,f +3869,30150,70,1,f +3869,3020,2,2,f +3869,3020,15,1,f +3869,3023,15,2,f +3869,30236,15,1,f +3869,3028,10,2,f +3869,3034,1,1,f +3869,3034,0,2,f +3869,3034,14,2,f +3869,3035,2,1,f +3869,3037,0,8,f +3869,3037,1,6,f +3869,3039,0,8,f +3869,3039,47,1,f +3869,3039,15,2,f +3869,3039,1,6,f +3869,3040b,1,4,f +3869,3040b,0,4,f +3869,3040b,14,2,f +3869,3045,0,2,f +3869,3062b,46,2,f +3869,3062b,15,4,f +3869,3069bpr0099,15,4,f +3869,3622,0,2,f +3869,3622,4,4,f +3869,3622,1,2,f +3869,3622,14,2,f +3869,3622,15,3,f +3869,3622,25,4,f +3869,3626bp09,14,1,f +3869,3659,4,2,f +3869,3660,15,1,f +3869,3710,4,2,f +3869,3710,15,2,f +3869,3823,47,2,f +3869,3829c01,4,2,f +3869,3957a,15,1,f +3869,4070,4,4,f +3869,4070,14,3,f +3869,4070,15,4,f +3869,4150pr0001,15,1,f +3869,4286,2,4,f +3869,4286,15,2,f +3869,4287,15,3,f +3869,4345b,15,1,f +3869,4346,15,1,f +3869,4485,0,1,f +3869,4624,71,4,f +3869,4727,2,1,f +3869,4728,1,1,f +3869,4740,15,1,f +3869,54200,33,2,f +3869,59363,70,1,f +3869,6014b,71,4,f +3869,6015,0,4,f +3869,6019,15,2,f +3869,60598,4,4,f +3869,60599,4,3,f +3869,60608,15,6,f +3869,60614,72,2,f +3869,60616a,47,1,f +3869,60623,0,1,f +3869,60623,14,1,f +3869,6141,46,2,f +3869,6141,36,2,f +3869,87414,0,4,f +3869,970c00,4,1,f +3869,970c00,0,1,f +3869,973pr0805c01,15,1,f +3869,973pr1183c01,25,1,f +3870,2412b,1,2,f +3870,30027a,15,4,f +3870,30028,0,4,f +3870,3626bp69,14,1,f +3870,3700,15,1,f +3870,3795,15,1,f +3870,3829c01,15,1,f +3870,3937,15,1,f +3870,3938,0,1,f +3870,3960,42,1,f +3870,3962b,0,1,f +3870,4485,1,1,f +3870,6141,36,1,f +3870,6141,0,1,f +3870,6141,0,1,t +3870,6141,36,1,t +3870,6157,0,2,f +3870,970c00,15,1,f +3870,973px176c01,15,1,f +3871,2357,15,2,f +3871,2357,0,6,f +3871,2419,15,1,f +3871,2420,15,10,f +3871,2431,15,6,f +3871,2431,0,1,f +3871,2444,15,2,f +3871,2444,19,2,f +3871,2445,0,2,f +3871,2450,15,4,f +3871,2456,15,2,f +3871,2540,15,2,f +3871,2540,19,1,f +3871,2555,19,10,f +3871,2639,7,2,f +3871,2695,7,1,f +3871,2730,0,2,f +3871,2780,0,25,f +3871,2780,0,1,t +3871,2817,7,2,f +3871,2825,14,1,f +3871,3001,15,1,f +3871,3002,15,4,f +3871,3003,0,2,f +3871,3004,15,7,f +3871,3008,15,5,f +3871,3009,15,12,f +3871,3010,15,5,f +3871,3010,0,1,f +3871,3020,7,6,f +3871,3020,0,5,f +3871,3020,15,2,f +3871,3021,7,2,f +3871,3021,0,10,f +3871,3021,15,2,f +3871,3022,0,6,f +3871,3022,7,2,f +3871,3023,0,15,f +3871,3023,15,9,f +3871,3023,7,3,f +3871,3024,7,1,f +3871,3024,15,2,f +3871,3024,0,1,f +3871,30292,40,4,f +3871,3030,0,1,f +3871,3031,0,1,f +3871,3031,7,2,f +3871,3032,0,1,f +3871,3032,7,1,f +3871,3034,0,2,f +3871,3034,15,4,f +3871,3034,7,2,f +3871,3035,0,2,f +3871,30360,7,1,f +3871,30361c,7,1,f +3871,30363,15,1,f +3871,30374,0,2,f +3871,30374,19,2,f +3871,3039,7,2,f +3871,3040b,7,2,f +3871,3040b,0,3,f +3871,3040b,15,14,f +3871,30504,0,4,f +3871,30504,15,2,f +3871,30553,8,2,f +3871,30602,15,4,f +3871,3069b,15,2,f +3871,3139,0,6,f +3871,3176,19,1,f +3871,32000,15,18,f +3871,32002,8,2,t +3871,32002,8,2,f +3871,32013,0,9,f +3871,32014,14,1,f +3871,32014,0,2,f +3871,32017,0,4,f +3871,32028,8,2,f +3871,32039,14,1,f +3871,32039,0,4,f +3871,32062,0,32,f +3871,32073,7,2,f +3871,32123b,7,20,f +3871,32123b,7,1,t +3871,32138,0,1,f +3871,32140,15,1,f +3871,32184,0,3,f +3871,32250,15,2,f +3871,32291,15,2,f +3871,32291,0,1,f +3871,32449,7,2,f +3871,3245b,15,3,f +3871,32523,15,2,f +3871,32524,0,2,f +3871,32530,0,2,f +3871,3298,0,1,f +3871,3298,15,1,f +3871,33243,15,8,f +3871,3460,7,1,f +3871,3460,0,10,f +3871,3460,15,4,f +3871,3622,0,2,f +3871,3622,15,5,f +3871,3623,15,10,f +3871,3623,0,9,f +3871,3660,0,1,f +3871,3665,0,2,f +3871,3666,0,4,f +3871,3666,7,2,f +3871,3666,15,17,f +3871,3701,15,2,f +3871,3701,0,2,f +3871,3702,0,3,f +3871,3703,15,4,f +3871,3705,0,11,f +3871,3706,0,3,f +3871,3707,0,1,f +3871,3710,7,4,f +3871,3710,0,4,f +3871,3710,15,10,f +3871,3713,7,5,f +3871,3713,7,1,t +3871,3747a,0,1,f +3871,3795,0,5,f +3871,3795,15,4,f +3871,3832,7,1,f +3871,3832,15,2,f +3871,3894,15,1,f +3871,3942c,0,2,f +3871,4032a,0,6,f +3871,41539,0,1,f +3871,4162,15,4,f +3871,41677,19,4,f +3871,41677,15,4,f +3871,41677,7,16,f +3871,41677,7,1,t +3871,41678,0,3,f +3871,41679,15,2,f +3871,41680,0,1,f +3871,41681,15,1,f +3871,41752,8,1,f +3871,41769,15,4,f +3871,41769,0,11,f +3871,41770,0,11,f +3871,41770,15,4,f +3871,42074,15,3,f +3871,4266,7,1,f +3871,4274,7,1,t +3871,4274,7,2,f +3871,4286,0,6,f +3871,4286,15,8,f +3871,4287,0,8,f +3871,4287,15,1,f +3871,4287,7,2,f +3871,43093,1,18,f +3871,43898,19,1,f +3871,44224,15,1,f +3871,44225,15,1,f +3871,44301a,8,8,f +3871,44302a,8,8,f +3871,44567a,8,2,f +3871,4460a,15,2,f +3871,4460a,0,2,f +3871,44728,15,4,f +3871,4477,15,6,f +3871,4519,7,9,f +3871,4589,7,1,f +3871,4623,0,2,f +3871,4740,383,1,f +3871,4740,334,2,f +3871,4740,57,2,f +3871,4864b,7,2,f +3871,6005,15,44,f +3871,6019,7,1,f +3871,6081,15,4,f +3871,6091,15,4,f +3871,6111,15,1,f +3871,6141,57,16,f +3871,6141,57,1,t +3871,6141,15,1,t +3871,6141,15,4,f +3871,6233,0,3,f +3871,6238,40,1,f +3871,6536,7,4,f +3871,6536,0,2,f +3871,6538b,15,6,f +3871,6538b,19,2,f +3871,6541,15,5,f +3871,6553,15,1,f +3871,6558,0,6,f +3871,6587,8,1,f +3871,6632,0,5,f +3871,6632,15,12,f +3871,6636,0,2,f +3871,6636,15,7,f +3871,71509,0,4,f +3871,7470bk01,9999,1,t +3871,7470stk01,9999,1,t +3873,3004,4,2,f +3873,3022,71,2,f +3873,3062b,14,1,f +3873,3710,14,1,f +3873,3835,0,1,f +3873,4085c,14,4,f +3873,4599b,14,1,f +3873,92593,4,1,f +3873,98283,84,4,f +3874,3139,0,3,f +3874,3461,7,1,f +3874,3462,4,1,f +3874,3464,4,3,f +3874,3480,7,2,f +3874,3481,4,2,f +3874,8,7,3,f +3878,3652,7,4,f +3878,4032a,4,8,f +3878,9244,7,8,f +3881,2412b,25,2,f +3881,2431,72,2,f +3881,2730,0,2,f +3881,3004,4,1,f +3881,3010,0,1,f +3881,3020,4,1,f +3881,3022,25,1,f +3881,30283,0,1,f +3881,3031,0,1,f +3881,3039,4,1,f +3881,32013,4,2,f +3881,32064b,71,2,f +3881,32123b,71,1,t +3881,32123b,71,4,f +3881,32271,0,1,f +3881,3297,0,1,f +3881,3701,4,2,f +3881,3705,0,2,f +3881,3706,0,2,f +3881,3713,71,4,f +3881,3713,71,1,t +3881,3737,0,2,f +3881,41678,4,2,f +3881,44352,4,1,f +3881,44353,4,1,f +3881,47715,72,1,f +3881,47755,72,1,f +3881,50950,72,2,f +3881,52031,4,1,f +3881,54200,46,2,f +3881,55978,0,2,f +3881,55982,71,2,f +3881,56145,71,2,f +3881,58090,0,2,f +3881,6141,15,1,t +3881,6141,15,2,f +3881,6558,0,4,f +3881,6587,72,2,f +3881,78c03,135,2,f +3883,132a,0,4,f +3883,3001a,4,11,f +3883,3001a,15,2,f +3883,3001a,0,2,f +3883,3001a,1,2,f +3883,3003,14,4,f +3883,3003,4,6,f +3883,3003,1,2,f +3883,3003,0,6,f +3883,3003,15,2,f +3883,3004,4,6,f +3883,3004,0,6,f +3883,3007,14,2,f +3883,3009,4,4,f +3883,3010,47,2,f +3883,3010,1,2,f +3883,3010,4,4,f +3883,3010,14,2,f +3883,3030,1,1,f +3883,3032,1,2,f +3883,3035,1,1,f +3883,3062a,14,2,f +3883,3613,15,2,f +3883,3614a,14,2,f +3883,685p01,14,1,f +3883,7039,4,4,f +3883,7049b,0,2,f +3883,792c03,15,1,f +3883,x196,0,1,f +3883,x407,1,1,f +3884,3023,71,1,f +3884,3023,1,1,f +3884,3024,71,1,f +3884,3024,71,1,t +3884,3070b,72,2,f +3884,3070b,72,1,t +3884,3623,71,3,f +3884,4081b,1,1,f +3884,43722,71,1,f +3884,43723,71,1,f +3884,47905,72,1,f +3884,52107,0,1,f +3884,54200,40,1,f +3884,54200,1,4,f +3884,54200,1,1,t +3884,54200,40,1,t +3885,3001,14,1,f +3885,3001,15,2,f +3885,3003,15,1,f +3885,3003,14,2,f +3885,3003,47,1,f +3885,3004,4,5,f +3885,3004,14,4,f +3885,3004,47,2,f +3885,3004,15,4,f +3885,3004,1,8,f +3885,3005,15,2,f +3885,3005,1,4,f +3885,3005,4,2,f +3885,3009,1,2,f +3885,3009,15,2,f +3885,3010,1,4,f +3885,3010,4,3,f +3885,3010,15,4,f +3885,3020,15,2,f +3885,3020,4,3,f +3885,3021,15,1,f +3885,3022,15,1,f +3885,3034,15,2,f +3885,3034,1,1,f +3885,3035,4,1,f +3885,3039,15,2,f +3885,3039,47,2,f +3885,3039,1,2,f +3885,3062b,36,1,f +3885,3062b,34,1,f +3885,3137c01,0,2,f +3885,3298,15,1,f +3885,3480,0,2,f +3885,3481,15,2,f +3885,3641,0,4,f +3885,3660,15,2,f +3885,3660,1,2,f +3885,3679,7,1,f +3885,3680,15,1,f +3885,3710,15,4,f +3885,3747b,1,1,f +3885,3795,15,2,f +3885,3795,1,2,f +3885,4864a,47,4,f +3886,3002,14,22,f +3886,3002,15,18,f +3886,3003,15,14,f +3886,3005,14,7,f +3886,3005,15,16,f +3886,3005pe1,14,2,f +3886,3622,14,17,f +3886,3623,4,3,f +3887,45575,71,2,f +3887,45799,71,4,f +3887,47349c03,1,4,f +3890,2436,15,1,f +3890,3020,72,1,f +3890,3070b,4,1,t +3890,3070b,4,3,f +3890,3070b,15,1,t +3890,3070b,15,3,f +3890,3666,15,1,f +3890,4083,15,1,f +3890,6141,182,2,f +3890,6141,182,1,t +3893,3004,15,1,f +3893,3005,15,2,f +3893,3020,15,1,f +3893,3021,14,1,f +3893,3023,15,2,f +3893,3024,36,2,f +3893,3024,47,2,f +3893,3626apr0001,14,1,f +3893,3641,0,4,f +3893,3710,14,3,f +3893,3788,15,2,f +3893,3821,15,1,f +3893,3822,15,1,f +3893,3823,41,2,f +3893,3829c01,4,1,f +3893,3842b,4,1,f +3893,4070,15,6,f +3893,4212b,4,1,f +3893,4213,15,1,f +3893,4315,15,1,f +3893,4600,0,2,f +3893,4624,15,4,f +3893,6141,46,2,f +3893,6634stk01,9999,1,t +3893,970c00,15,1,f +3893,973p14c01,15,1,f +3894,2456,4,2,f +3894,2456,1,2,f +3894,2456,14,2,f +3894,2456,15,2,f +3894,3001,2,6,f +3894,3001,1,12,f +3894,3001,14,12,f +3894,3001,4,12,f +3894,3001,0,6,f +3894,3001,15,12,f +3894,3002,2,4,f +3894,3002,1,6,f +3894,3002,14,6,f +3894,3002,0,4,f +3894,3002,4,6,f +3894,3002,15,6,f +3894,3003,0,10,f +3894,3003,2,10,f +3894,3003,15,20,f +3894,3003,1,20,f +3894,3003,4,20,f +3894,3003,14,20,f +3894,3004,2,14,f +3894,3004,15,30,f +3894,3004,1,30,f +3894,3004,14,30,f +3894,3004,0,14,f +3894,3004,4,30,f +3894,3005,0,10,f +3894,3005,2,6,f +3894,3005,1,20,f +3894,3005,14,20,f +3894,3005,15,20,f +3894,3005,4,20,f +3894,3008,15,2,f +3894,3008,1,2,f +3894,3008,4,2,f +3894,3008,14,2,f +3894,3009,1,4,f +3894,3009,15,4,f +3894,3009,4,4,f +3894,3009,14,4,f +3894,3010,14,20,f +3894,3010,2,10,f +3894,3010,4,20,f +3894,3010,0,12,f +3894,3010,1,20,f +3894,3010,15,20,f +3894,3622,0,4,f +3894,3622,2,2,f +3894,3622,15,6,f +3894,3622,4,6,f +3894,3622,1,6,f +3894,3622,14,6,f +3895,80547pb01,7,2,f +3896,cwindow01,14,1,f +3896,cwindow01,15,1,f +3896,cwindow01,4,1,f +3896,cwindow01,1,1,f +3897,2456,14,1,f +3897,3001,25,4,f +3897,3001,15,2,f +3897,3001,1,2,f +3897,3001,2,2,f +3897,3001,0,2,f +3897,3001,14,2,f +3897,3001,7,2,f +3897,3002,7,2,f +3897,3002,0,2,f +3897,3002,4,2,f +3897,3002,1,2,f +3897,3002,25,2,f +3897,3002,15,2,f +3897,3002,14,2,f +3897,3003,2,4,f +3897,3003,0,4,f +3897,3003,4,4,f +3897,3003,15,4,f +3897,3003,1,4,f +3897,3003,14,4,f +3897,3003,25,6,f +3897,3003,7,6,f +3897,3004,2,4,f +3897,3004,25,8,f +3897,3004,15,6,f +3897,3004,4,6,f +3897,3004,7,8,f +3897,3004,0,6,f +3897,3004,1,8,f +3897,3004,14,8,f +3897,3005,1,8,f +3897,3005,4,8,f +3897,3005,0,8,f +3897,3005,2,6,f +3897,3005,15,6,f +3897,3005pe2,8,1,f +3897,3005pe3,8,1,f +3897,3005px2,14,2,f +3897,3008,7,2,f +3897,3009,1,2,f +3897,3010,25,2,f +3897,3010,14,2,f +3897,3010,0,2,f +3897,3010p01,14,1,f +3897,3020,25,2,f +3897,3020,7,2,f +3897,3021,1,2,f +3897,3021,25,2,f +3897,3022,1,2,f +3897,3040b,25,4,f +3897,3040b,2,2,f +3897,3040b,7,2,f +3897,3665,2,2,f +3897,3665,7,2,f +3897,3665,25,4,f +3897,3957a,1,1,f +3897,4495b,14,1,f +3898,2569,42,2,f +3898,2569,57,2,f +3898,2569,0,2,f +3898,2569,4,2,f +3898,298c02,0,2,f +3898,298c02,4,2,f +3898,298c02,15,2,f +3898,298c03,7,2,f +3898,3957a,4,2,f +3898,3957a,42,2,f +3898,3957a,0,2,f +3898,3957a,36,2,f +3898,3957a,14,2,f +3898,3957a,15,2,f +3898,3957a,7,2,f +3898,4592,0,2,f +3898,4735,0,2,f +3898,4735,15,2,f +3898,4735,7,2,f +3899,2436,0,1,f +3899,2540,0,2,f +3899,2542,6,1,f +3899,2542,6,1,t +3899,30104,8,1,f +3899,30132,8,1,t +3899,30132,8,1,f +3899,30137,19,3,f +3899,30167,6,1,f +3899,30169,0,1,f +3899,3626bpa3,14,1,f +3899,3710,7,1,f +3899,3710,0,1,f +3899,4081b,7,2,f +3899,970c00,0,1,f +3899,973pb0391c01,19,1,f +3900,2420,15,2,f +3900,2420,0,2,f +3900,2444,0,2,f +3900,2654,15,1,f +3900,2715,1,1,f +3900,2716,47,1,f +3900,2717,4,1,f +3900,2730,15,2,f +3900,2780,0,4,f +3900,2819,7,1,f +3900,2825,15,2,f +3900,2905,7,1,f +3900,3021,0,4,f +3900,3022,0,2,f +3900,3023,7,2,f +3900,3023,0,4,f +3900,3023,15,3,f +3900,3068b,15,1,f +3900,3069b,7,2,f +3900,3474,0,1,f +3900,3623,0,2,f +3900,3647,7,2,f +3900,3650c,7,1,f +3900,3651,7,2,f +3900,3666,15,1,f +3900,3700,15,3,f +3900,3700,0,6,f +3900,3700,7,2,f +3900,3701,0,4,f +3900,3703,15,2,f +3900,3703,0,2,f +3900,3705,0,2,f +3900,3706,0,3,f +3900,3709,15,1,f +3900,3709,0,1,f +3900,3709,7,2,f +3900,3710,7,5,f +3900,3710,0,2,f +3900,3713,7,2,f +3900,3737,0,4,f +3900,3749,7,13,f +3900,3832,15,2,f +3900,3894,15,1,f +3900,3894,0,1,f +3900,3941,33,1,f +3900,4019,7,2,f +3900,4032a,15,1,f +3900,4150,15,2,f +3900,4261,7,2,f +3900,4265b,7,11,f +3900,4273b,7,2,f +3900,4274,7,2,f +3900,4442,7,2,f +3900,6536,7,8,f +3900,6538b,7,2,f +3900,6541,0,2,f +3900,6558,0,10,f +3900,6564,15,1,f +3900,6565,15,1,f +3900,6579,0,4,f +3900,6580,15,4,f +3900,6585,7,1,f +3900,6587,8,4,f +3900,6589,7,2,f +3900,6630,7,1,f +3900,6632,15,2,f +3900,75c14,8,2,f +3900,tech029,9999,1,f +3902,30374,36,1,f +3902,30374,42,1,f +3902,30374,52,1,f +3902,3626bpr0569,78,1,f +3902,3626bpr0571,70,1,f +3902,4070,72,2,f +3902,41879a,19,1,f +3902,42114,383,1,f +3902,50231,70,1,f +3902,64567,80,2,f +3902,64798,71,1,f +3902,64804pr01,378,1,f +3902,74188,72,3,f +3902,970c00,0,1,f +3902,970c00,28,1,f +3902,973pr1458c01,19,1,f +3902,973pr1459c01,28,1,f +3902,973pr1461c01,0,1,f +3903,2460,72,1,f +3903,3062b,0,1,f +3903,3844,80,1,f +3903,3848,148,1,f +3903,3900,71,1,f +3903,4733,0,1,f +3903,47905,71,1,f +3903,48729b,72,1,f +3903,48729b,72,1,t +3904,15071,0,1,f +3904,15303,36,2,f +3904,15400,72,1,f +3904,2412b,72,1,f +3904,2431,72,6,f +3904,2540,71,2,f +3904,298c02,71,4,f +3904,3010,272,9,f +3904,3020,272,18,f +3904,30229,72,1,f +3904,3023,272,1,f +3904,3024,36,2,f +3904,3024,272,6,f +3904,30367cpr0012,72,2,f +3904,30374,0,1,f +3904,30375,19,1,f +3904,30375ps2,320,1,f +3904,30376,19,2,f +3904,30377,19,2,f +3904,30378,19,1,f +3904,30378pr0004,19,1,f +3904,30383,0,3,f +3904,30386,71,15,f +3904,30390b,72,1,f +3904,30503,72,6,f +3904,30552,72,3,f +3904,30553,71,3,f +3904,30554a,0,3,f +3904,3062b,272,3,f +3904,32014,0,1,f +3904,32062,4,5,f +3904,32125,71,3,f +3904,3622,0,6,f +3904,3623,72,6,f +3904,3626cpr1391,78,1,f +3904,3701,71,2,f +3904,3706,0,1,f +3904,3709,0,1,f +3904,3710,71,2,f +3904,3794b,72,2,f +3904,3942c,72,1,f +3904,4032a,0,3,f +3904,41769,272,3,f +3904,41770,272,3,f +3904,44302a,0,3,f +3904,4595,0,15,f +3904,4733,71,1,f +3904,4740,36,3,f +3904,47456,272,6,f +3904,50747pr0008,40,2,f +3904,51739,72,12,f +3904,52107,71,21,f +3904,54200,272,3,f +3904,54200,36,2,f +3904,57585,71,1,f +3904,58247,0,2,f +3904,59230,19,2,f +3904,59900,72,2,f +3904,59900,40,1,f +3904,59900,36,4,f +3904,6141,36,2,f +3904,61482,71,1,f +3904,63868,72,1,f +3904,64567,0,1,f +3904,85984,72,6,f +3904,87079,0,6,f +3904,87079,72,12,f +3904,87083,72,1,f +3904,92081,15,1,f +3904,92280,71,2,f +3904,92582,0,4,f +3904,970c00pr0642,72,1,f +3904,973pr2633c01,72,1,f +3905,2346,0,8,f +3905,2431,1,6,f +3905,2654,0,10,f +3905,2780,0,39,f +3905,2815,0,4,f +3905,2817,7,6,f +3905,2825,7,6,f +3905,2854,7,6,f +3905,2983,7,12,f +3905,3001,4,22,f +3905,3003,4,28,f +3905,3007,4,2,f +3905,3022,7,10,f +3905,3023,1,20,f +3905,3036,2,4,f +3905,3068b,0,6,f +3905,3068b,15,6,f +3905,3069b,14,6,f +3905,3176,0,4,f +3905,32002,8,27,f +3905,32009,14,6,f +3905,32012,1,2,f +3905,32013,1,10,f +3905,32014,1,4,f +3905,32015,7,4,f +3905,32016,1,4,f +3905,32017,7,6,f +3905,32028,7,10,f +3905,32034,7,4,f +3905,32039,7,10,f +3905,32062,0,15,f +3905,32064b,2,10,f +3905,32068,7,4,f +3905,32073,7,8,f +3905,32123b,7,27,f +3905,32124,1,4,f +3905,32201,14,6,f +3905,32250,1,10,f +3905,3456,4,4,f +3905,3460,1,4,f +3905,3482,14,20,f +3905,3483,0,4,f +3905,3634,0,4,f +3905,3647,7,18,f +3905,3648b,4,6,f +3905,3648b,7,12,f +3905,3649,7,6,f +3905,3649,2,6,f +3905,3650c,7,12,f +3905,3673,7,39,f +3905,3679,7,6,f +3905,3680,0,6,f +3905,3700,4,20,f +3905,3701,4,8,f +3905,3702,4,8,f +3905,3703,4,16,f +3905,3705,0,8,f +3905,3706,0,8,f +3905,3707,0,8,f +3905,3708,0,8,f +3905,3709,1,8,f +3905,3710,1,10,f +3905,3711a,0,156,f +3905,3713,7,63,f +3905,3736,7,4,f +3905,3737,0,8,f +3905,3738,1,8,f +3905,3743,7,12,f +3905,3749,19,27,f +3905,3794a,1,4,f +3905,3795,1,4,f +3905,3894,4,8,f +3905,3895,4,8,f +3905,3956,1,10,f +3905,3960,15,4,f +3905,4019,7,12,f +3905,4032a,15,10,f +3905,4185,7,12,f +3905,4186302,8,1,f +3905,4188023,8,1,f +3905,4274,7,15,f +3905,4477,1,8,f +3905,4519,7,8,f +3905,4716,0,12,f +3905,6007,8,2,f +3905,6536,7,10,f +3905,6538b,7,8,f +3905,6553,7,16,f +3905,6573,8,2,f +3905,6575,7,6,f +3905,6581,0,4,f +3905,6582,15,4,f +3905,6587,8,8,f +3905,6588,14,2,f +3905,6589,7,24,f +3905,6629,0,6,f +3905,6632,7,6,f +3905,70496,0,2,f +3905,71128,383,6,f +3905,73090b,0,2,f +3905,76019,15,2,f +3905,85545,1,6,f +3905,85545,4,6,f +3905,85546,14,6,f +3905,9244,7,6,f +3909,3004,7,2,f +3909,3004,15,1,f +3909,3004p90,15,4,f +3909,3005,7,2,f +3909,3005,15,6,f +3909,3010,15,4,f +3909,3010ap04,15,4,f +3909,3020,7,5,f +3909,3021,7,4,f +3909,3022,15,1,f +3909,3022,7,7,f +3909,3023,15,4,f +3909,3023,7,4,f +3909,3024,36,14,f +3909,3024,7,2,f +3909,3029,7,2,f +3909,3032,33,1,f +3909,3032,15,4,f +3909,3034,15,1,f +3909,3034,7,3,f +3909,3039p34,15,2,f +3909,3062b,34,2,f +3909,3062b,36,3,f +3909,3069b,15,5,f +3909,3298,15,2,f +3909,3298p90,15,1,f +3909,3460,15,1,f +3909,3460,7,6,f +3909,3479,15,8,f +3909,3622,15,4,f +3909,3623,14,2,f +3909,3623,7,6,f +3909,3626apr0001,14,1,f +3909,3665,7,2,f +3909,3666,15,2,f +3909,3666,7,6,f +3909,3710,7,11,f +3909,3710,15,6,f +3909,3747a,7,4,f +3909,3795,7,1,f +3909,3795,15,1,f +3909,3829c01,15,1,f +3909,3830,7,2,f +3909,3830,15,2,f +3909,3831,7,2,f +3909,3831,15,2,f +3909,3835,7,1,f +3909,3837,8,1,f +3909,3838,4,1,f +3909,3839a,0,1,f +3909,3839a,7,1,f +3909,3842a,4,1,f +3909,3853,15,2,f +3909,3856,15,4,f +3909,3900,0,1,f +3909,3933a,7,1,f +3909,3934a,7,1,f +3909,3935,7,4,f +3909,3936,7,4,f +3909,3937,7,1,f +3909,3937,15,2,f +3909,3938,15,2,f +3909,3938,7,1,f +3909,3939,33,1,f +3909,3940a,0,4,f +3909,3941,15,2,f +3909,3941,7,3,f +3909,3942a,7,3,f +3909,3942a,0,2,f +3909,3942a,15,2,f +3909,3943a,0,2,f +3909,3956,15,4,f +3909,3957a,7,1,f +3909,3957a,0,2,f +3909,3958,7,1,f +3909,3959,0,1,f +3909,3959,7,2,f +3909,3960,7,2,f +3909,3962a,0,1,f +3909,3963,0,2,f +3909,4006,0,1,f +3909,4032a,0,3,f +3909,4070,7,4,f +3909,4081a,15,4,f +3909,4085a,15,2,f +3909,4175,0,2,f +3909,4228,33,1,f +3909,4228,7,1,f +3909,4229,7,2,f +3909,970c00,4,1,f +3909,973p90c02,4,1,f +3910,2695,15,10,f +3910,2696,0,10,f +3910,2815,0,2,f +3910,3001,7,1,f +3910,3002,7,1,f +3910,3003,15,1,f +3910,3003,4,1,f +3910,3004,15,3,f +3910,3004,4,4,f +3910,3004,0,4,f +3910,3007,4,1,f +3910,3008,15,4,f +3910,3009,4,2,f +3910,3010,4,3,f +3910,3010,15,3,f +3910,3010,0,4,f +3910,3020,47,1,f +3910,3020,15,3,f +3910,3020,7,2,f +3910,3020,4,2,f +3910,3020,0,3,f +3910,3021,7,1,f +3910,3021,15,2,f +3910,3021,0,2,f +3910,3022,47,1,f +3910,3022,4,1,f +3910,3022,15,2,f +3910,3023,0,26,f +3910,3023,15,4,f +3910,3023,47,3,f +3910,3023,4,12,f +3910,3023,7,2,f +3910,3024,15,6,f +3910,3024,4,4,f +3910,3024,36,2,f +3910,3024,0,2,f +3910,3024,47,2,f +3910,3028,4,2,f +3910,3028,15,1,f +3910,3031,15,1,f +3910,3031,0,1,f +3910,3032,15,1,f +3910,3032,4,1,f +3910,3034,15,1,f +3910,3034,0,1,f +3910,3035,0,1,f +3910,3037,15,2,f +3910,3039,15,2,f +3910,3040b,4,2,f +3910,3040b,15,2,f +3910,3040b,0,4,f +3910,3040p32,15,2,f +3910,3045,15,2,f +3910,3062b,0,6,f +3910,3068b,0,3,f +3910,3069b,4,2,f +3910,3069b,0,1,f +3910,3069b,7,3,f +3910,3069b,15,8,f +3910,3070b,15,2,f +3910,3070b,15,1,t +3910,3070b,4,1,t +3910,3070b,4,2,f +3910,3297,4,4,f +3910,3298,4,3,f +3910,3298,15,2,f +3910,3456,15,1,f +3910,3460,0,4,f +3910,3460,15,3,f +3910,3622,4,8,f +3910,3623,4,4,f +3910,3623,15,2,f +3910,3623,0,4,f +3910,3660,4,4,f +3910,3665,4,4,f +3910,3665,0,8,f +3910,3666,4,4,f +3910,3675,4,2,f +3910,3700,0,4,f +3910,3705,0,1,f +3910,3706,0,2,f +3910,3707,0,3,f +3910,3710,0,5,f +3910,3713,7,1,t +3910,3713,7,8,f +3910,3743,7,2,f +3910,3749,7,14,f +3910,3794a,4,7,f +3910,3795,4,1,f +3910,3795,0,4,f +3910,3832,15,3,f +3910,3832,0,1,f +3910,3894,0,2,f +3910,3937,0,1,f +3910,3937,7,4,f +3910,3938,0,1,f +3910,3938,7,4,f +3910,4032a,0,4,f +3910,4032a,7,6,f +3910,4070,15,2,f +3910,4070,7,8,f +3910,4070,0,12,f +3910,4083,7,1,f +3910,4143,7,1,f +3910,4143,7,1,t +3910,4162,15,2,f +3910,4175,7,4,f +3910,4185,7,2,f +3910,4261,7,2,f +3910,4262,0,2,f +3910,4263,0,4,f +3910,4265a,7,1,t +3910,4265a,7,6,f +3910,4275a,0,4,f +3910,4276a,0,2,f +3910,4286,15,4,f +3910,4286,7,4,f +3910,4286,4,4,f +3910,4286,0,8,f +3910,4287,4,2,f +3910,4287,0,10,f +3910,4477,15,4,f +3910,4477,0,1,f +3910,4531,0,2,f +3910,4589,7,2,f +3910,4599a,7,2,f +3910,4858,4,1,f +3910,4861,15,2,f +3910,4864a,4,12,f +3910,5540stk01,9999,1,t +3910,6141,7,8,f +3910,73590c01a,46,2,f +3910,73590c01a,0,2,f +3911,2456,14,1,f +3911,2456,4,1,f +3911,3001,4,3,f +3911,3001,14,3,f +3911,3001,15,2,f +3911,3001,1,2,f +3911,3002,4,2,f +3911,3002,14,2,f +3911,3003,15,4,f +3911,3003,0,2,f +3911,3003,4,6,f +3911,3003,1,4,f +3911,3003,14,6,f +3911,3003pe2,14,2,f +3911,3185,15,4,f +3911,4202,2,1,f +3911,4727,2,4,f +3911,4728,4,1,f +3911,4728,1,1,f +3911,4728,14,1,f +3911,4728,15,1,f +3911,4744,1,1,f +3911,4744,4,1,f +3911,4744pr0001,0,1,f +3911,4744pr0002,4,1,f +3911,600,15,1,f +3911,601,15,2,f +3911,6213pb01,2,1,f +3911,6215,4,2,f +3911,6215,14,4,f +3911,6216,14,1,f +3911,6216,4,1,f +3911,6235,4,1,f +3911,6236,4,1,f +3912,3001,14,8,f +3912,3001,15,2,f +3912,3001,1,8,f +3912,3002,1,4,f +3912,3002,14,4,f +3912,3003,1,6,f +3912,3003,15,2,f +3912,3003,14,7,f +3912,3003,4,2,f +3912,3004,14,7,f +3912,3004,4,8,f +3912,3004,47,2,f +3912,3004,0,6,f +3912,3004,1,6,f +3912,3005,14,4,f +3912,3005,4,4,f +3912,3008,14,2,f +3912,3008,4,2,f +3912,3009,4,4,f +3912,3009,14,6,f +3912,3010,47,1,f +3912,3010,0,2,f +3912,3010,4,4,f +3912,3010,15,2,f +3912,3010,14,9,f +3912,3020,14,1,f +3912,3020,4,2,f +3912,3022,4,2,f +3912,3031,4,1,f +3912,3032,4,1,f +3912,3034,4,4,f +3912,3039,47,2,f +3912,3039,14,2,f +3912,3039,4,2,f +3912,3137c01,0,2,f +3912,3297,4,2,f +3912,3298,4,4,f +3912,3299,4,1,f +3912,3300,4,2,f +3912,3460,15,4,f +3912,3461,15,1,f +3912,3462,4,1,f +3912,3480,7,2,f +3912,3481,4,2,f +3912,3622,4,2,f +3912,3622,14,4,f +3912,3624,4,1,f +3912,3625,0,1,f +3912,3626apr0001,14,2,f +3912,3633,4,2,f +3912,3641,0,4,f +3912,3660,14,2,f +3912,3660,4,4,f +3912,3666,4,2,f +3912,3710,4,2,f +3912,3741,2,2,f +3912,3742,15,3,f +3912,3742,4,3,f +3912,3742,15,1,t +3912,3742,4,1,t +3912,3823,47,1,f +3912,3853,4,3,f +3912,3854,15,6,f +3912,3856,2,6,f +3912,3861b,4,1,f +3912,3867,2,1,f +3912,970c00,1,2,f +3912,973c01,15,1,f +3912,973c07,1,1,f +3913,12825,0,2,f +3913,2420,0,2,f +3913,3022,72,1,f +3913,3023,0,3,f +3913,3031,0,1,f +3913,3069b,40,2,f +3913,3070b,46,2,f +3913,3710,0,1,f +3913,3788,0,1,f +3913,3795,72,1,f +3913,3795,14,1,f +3913,41854,0,1,f +3913,4287,0,2,f +3913,50944pr0001,0,4,f +3913,50947,0,2,f +3913,50951,0,4,f +3913,54200,40,2,f +3913,6126b,182,2,f +3913,61409,0,4,f +3913,6141,36,2,f +3913,6157,0,2,f +3913,6636,0,2,f +3913,93606,0,1,f +3915,2412b,72,2,f +3915,2420,15,2,f +3915,2431,15,15,f +3915,2436,71,3,f +3915,2444,0,2,f +3915,2445,15,2,f +3915,2456,2,6,f +3915,2465,0,2,f +3915,2654,71,5,f +3915,2780,0,6,f +3915,2780,0,1,t +3915,2877,72,2,f +3915,3001,2,13,f +3915,3002,14,4,f +3915,3003,72,1,f +3915,3004,14,6,f +3915,3004,15,2,f +3915,3005,1,2,f +3915,3006,15,1,f +3915,3007,15,2,f +3915,3009,2,9,f +3915,3010,72,7,f +3915,3020,72,2,f +3915,3020,15,5,f +3915,3021,15,2,f +3915,3022,71,1,f +3915,3023,2,7,f +3915,3024,14,2,f +3915,3030,2,2,f +3915,3031,71,1,f +3915,3032,2,7,f +3915,3032,0,4,f +3915,3034,0,1,f +3915,3034,15,1,f +3915,3035,15,1,f +3915,3036,2,1,f +3915,3037,2,1,f +3915,3039,2,2,f +3915,3039,15,2,f +3915,3040b,0,1,f +3915,30414,15,7,f +3915,30553,72,1,f +3915,3068b,2,6,f +3915,3070b,36,1,t +3915,3070b,36,2,f +3915,3070bpr0007,71,2,f +3915,3070bpr0007,71,1,t +3915,32054,71,2,f +3915,32064b,72,4,f +3915,32123b,14,2,f +3915,32123b,14,1,t +3915,32524,71,2,f +3915,32530,72,4,f +3915,3297,15,2,f +3915,3298,15,2,f +3915,3460,15,2,f +3915,3622,0,2,f +3915,3622,2,6,f +3915,3623,4,2,f +3915,3626bpr0387,14,1,f +3915,3660,2,3,f +3915,3666,15,2,f +3915,3666,0,1,f +3915,3673,71,2,f +3915,3673,71,1,t +3915,3700,4,2,f +3915,3701,4,1,f +3915,3705,0,2,f +3915,3706,0,2,f +3915,3710,14,4,f +3915,3737,0,4,f +3915,3747b,0,3,f +3915,3749,19,4,f +3915,3795,2,2,f +3915,3829c01,4,1,f +3915,3894,14,2,f +3915,3899,4,1,f +3915,3941,72,4,f +3915,4070,14,2,f +3915,4079,4,1,f +3915,4150,0,1,f +3915,41532,0,1,f +3915,41747,15,1,f +3915,41748,15,1,f +3915,4175,72,2,f +3915,42022,2,2,f +3915,4215b,40,2,f +3915,44126,15,3,f +3915,4445,72,2,f +3915,4519,71,2,f +3915,4589,0,3,f +3915,4623,0,1,f +3915,4735,0,2,f +3915,47457,72,3,f +3915,4865a,15,2,f +3915,4865a,2,8,f +3915,4872,40,1,f +3915,4872,2,4,f +3915,50950,15,7,f +3915,52031,15,1,f +3915,54200,15,1,t +3915,54200,46,1,t +3915,54200,15,8,f +3915,54200,46,4,f +3915,54383,15,1,f +3915,54384,15,1,f +3915,55976,0,2,f +3915,55982,71,2,f +3915,56145,71,2,f +3915,56891,0,2,f +3915,58176,182,2,f +3915,59443,0,6,f +3915,6019,15,2,f +3915,60478,15,4,f +3915,61409,72,2,f +3915,6141,46,1,t +3915,6141,46,2,f +3915,61678,15,2,f +3915,6187,71,2,f +3915,6215,2,2,f +3915,6232,71,6,f +3915,62462,0,7,f +3915,63082,71,1,f +3915,64566,0,4,f +3915,6541,2,2,f +3915,6636,72,4,f +3915,73983,2,2,f +3915,75c29,0,6,f +3915,78c04,179,5,f +3915,86035,4,1,f +3915,970c00,19,1,f +3915,973pr1166c01,272,1,f +3916,2780,0,1,t +3916,2780,0,2,f +3916,30374,42,1,f +3916,32062,4,4,f +3916,32062,4,1,t +3916,32123b,71,1,f +3916,32123b,71,1,t +3916,53585,4,1,f +3916,54821,10,1,f +3916,57539pat0002,47,1,f +3916,64262,35,1,f +3916,64727,27,1,t +3916,64727,27,2,f +3916,6587,28,1,f +3916,90607,0,2,f +3916,90609,72,2,f +3916,90611,0,1,f +3916,90616,0,2,f +3916,90617,4,2,f +3916,90625,0,1,f +3916,90639,4,3,f +3916,90639,148,1,f +3916,90650,148,1,f +3916,90661,4,2,f +3916,90661,148,1,f +3916,92205,148,2,f +3916,92206,148,1,f +3916,92215,148,2,f +3916,92216,148,1,f +3916,93571,0,2,f +3916,98564,148,2,f +3916,98569pr0005,148,1,f +3916,98570pat01,15,1,f +3916,98571,4,3,f +3916,98580,148,1,f +3916,98580,4,1,f +3918,2039,15,2,f +3918,2342,0,1,f +3918,2357,14,1,f +3918,2362a,15,1,f +3918,2412b,7,2,f +3918,2412b,0,1,t +3918,2412b,0,5,f +3918,2420,4,2,f +3918,2420,7,4,f +3918,2431,15,4,f +3918,2431,0,8,f +3918,2445,4,1,f +3918,2456,0,4,f +3918,2486,0,2,f +3918,2495,4,1,f +3918,2496,0,1,f +3918,2524,6,1,f +3918,2871a,0,2,f +3918,2875,0,20,f +3918,2876,0,2,f +3918,2877,0,32,f +3918,2877,7,12,f +3918,2878c01,0,10,f +3918,2880,0,4,f +3918,2881,0,2,f +3918,2916,7,2,f +3918,2917,0,2,f +3918,2918,47,2,f +3918,2919,46,2,f +3918,2920,0,6,f +3918,298c02,7,3,f +3918,3001,0,2,f +3918,3001,14,1,f +3918,3002,0,4,f +3918,3003,14,3,f +3918,3003,0,5,f +3918,3004,4,2,f +3918,3004,14,7,f +3918,3004,0,7,f +3918,3004,7,14,f +3918,3004,15,1,f +3918,3005,7,28,f +3918,3008,7,2,f +3918,3009,7,25,f +3918,3010,14,2,f +3918,3010,7,5,f +3918,3020,7,6,f +3918,3020,0,17,f +3918,3020,4,2,f +3918,3021,0,4,f +3918,3022,14,3,f +3918,3022,4,1,f +3918,3022,0,3,f +3918,3022,7,9,f +3918,3023,4,6,f +3918,3023,1,2,f +3918,3023,0,16,f +3918,3023,7,10,f +3918,3023,14,4,f +3918,3024,7,8,f +3918,3024,7,1,t +3918,3030,7,2,f +3918,3030,0,1,f +3918,3032,7,2,f +3918,3032,0,2,f +3918,3033,7,2,f +3918,3034,0,4,f +3918,3035,0,2,f +3918,3035,7,3,f +3918,3036,7,3,f +3918,3039,0,8,f +3918,3039pc4,0,1,f +3918,3040b,0,2,f +3918,3068b,0,4,f +3918,3068bp17,15,1,f +3918,3069b,0,15,f +3918,3069b,14,3,f +3918,3069bp25,7,1,f +3918,3069bp52,15,2,f +3918,3069bp68,15,2,f +3918,3070b,15,2,f +3918,3070b,4,2,f +3918,3070b,4,1,t +3918,3070b,14,3,f +3918,3070b,14,1,t +3918,3070b,15,1,t +3918,3134,4,2,f +3918,3186,15,1,f +3918,3187,15,1,f +3918,3194p03,7,2,f +3918,3195p03,7,2,f +3918,3298,0,6,f +3918,3455,7,2,f +3918,3460,1,2,f +3918,3460,15,2,f +3918,3460,4,2,f +3918,3622,4,2,f +3918,3623,1,4,f +3918,3623,15,4,f +3918,3623,4,2,f +3918,3623,7,4,f +3918,3624,4,2,f +3918,3625,0,1,f +3918,3626b,0,2,f +3918,3626bpr0001,14,11,f +3918,3629,7,1,f +3918,3660,4,4,f +3918,3660,7,2,f +3918,3660,0,26,f +3918,3666,7,1,f +3918,3666,15,4,f +3918,3666,0,12,f +3918,3710,15,4,f +3918,3710,0,13,f +3918,3710,4,6,f +3918,3710,1,4,f +3918,3710,7,10,f +3918,3794a,7,6,f +3918,3794a,15,4,f +3918,3795,14,2,f +3918,3795,0,12,f +3918,3832,0,3,f +3918,3855,47,1,f +3918,3899,1,4,f +3918,3901,0,2,f +3918,3901,6,1,f +3918,3937,14,3,f +3918,3938,14,3,f +3918,3941,46,2,f +3918,3956,0,1,f +3918,3960,15,2,f +3918,4022,0,6,f +3918,4025,0,5,f +3918,4033,0,1,f +3918,4033,7,14,f +3918,4034,47,14,f +3918,4035,7,4,f +3918,4036,47,4,f +3918,4070,7,2,f +3918,4079,4,4,f +3918,4079,14,6,f +3918,4093c,7,3,f +3918,4162,15,4,f +3918,4162,0,12,f +3918,4181p04,7,4,f +3918,4182p04,7,4,f +3918,4183,47,8,f +3918,4275b,0,1,f +3918,4276b,0,1,f +3918,4449,15,2,f +3918,4449,6,3,f +3918,4449,0,2,f +3918,4477,1,6,f +3918,4477,15,4,f +3918,4477,4,6,f +3918,4485,4,1,f +3918,4504,0,2,f +3918,4530,6,2,f +3918,4530,0,1,f +3918,4531,7,2,f +3918,4588,0,1,f +3918,4719,0,1,f +3918,4719,4,1,f +3918,4746,0,1,f +3918,4865a,14,2,f +3918,5306bc036,0,1,f +3918,6035,15,1,f +3918,6141,0,1,t +3918,6141,0,2,f +3918,69c01,15,1,f +3918,70358,0,1,f +3918,73092,0,6,f +3918,74746,8,4,f +3918,74747,8,16,f +3918,92851,47,4,f +3918,970c00,1,5,f +3918,970c00,15,1,f +3918,970c00,4,2,f +3918,970c00,0,3,f +3918,973p01c01,15,1,f +3918,973p18c01,1,1,f +3918,973p19c01,1,1,f +3918,973p22c01,0,1,f +3918,973p71c01,15,1,f +3918,973p72c01,15,1,f +3918,973px1c01,1,1,f +3918,973px61c01,15,2,f +3918,973px62c01,15,1,f +3918,973px63c01,1,1,f +3919,2352,4,2,f +3919,2352,14,2,f +3919,2456,14,2,f +3919,2456,1,4,f +3919,2456,15,2,f +3919,2456,4,4,f +3919,3001,0,12,f +3919,3001,4,24,f +3919,3001,2,12,f +3919,3001,15,24,f +3919,3001,14,30,f +3919,3001,1,30,f +3919,3001p08,14,1,f +3919,3001pr1,14,2,f +3919,3002,1,12,f +3919,3002,14,12,f +3919,3002,0,6,f +3919,3002,4,8,f +3919,3002,15,8,f +3919,3002,2,6,f +3919,3003,14,32,f +3919,3003,4,28,f +3919,3003,1,32,f +3919,3003,0,16,f +3919,3003,2,16,f +3919,3003,15,28,f +3919,3003pe2,15,2,f +3919,3003pe2,14,4,f +3919,3006,14,2,f +3919,3007,4,2,f +3919,3007,1,2,f +3919,3007,14,2,f +3919,30076,4,2,f +3919,30077,14,6,f +3919,30078,4,1,f +3919,30143px1,14,1,f +3919,30145,1,2,f +3919,30145p02,14,2,f +3919,3483,0,12,f +3919,4201,2,1,f +3919,4204,2,1,f +3919,4727,2,8,f +3919,4728,1,2,f +3919,4728,14,2,f +3919,4728,15,2,f +3919,4728,4,2,f +3919,4729,14,1,f +3919,4743,1,1,f +3919,4743,14,1,f +3919,4743,15,1,f +3919,4744,14,1,f +3919,4744pr0001,0,1,f +3919,4744pr0002,4,1,f +3919,4744pr0003,4,1,f +3919,4744px1,6,1,f +3919,4744px11,14,1,f +3919,4744px12,1,1,f +3919,4744px4,1,1,f +3919,4745,4,1,f +3919,600,15,1,f +3919,601,15,4,f +3919,6212,1,1,f +3919,6212,4,1,f +3919,6213p02,4,1,f +3919,6213pb01,2,1,f +3919,6213px3,14,1,f +3919,6214px1,2,1,f +3919,6214px2,2,1,f +3919,6215,1,8,f +3919,6215,4,12,f +3919,6215,2,8,f +3919,6215,14,8,f +3919,6216,1,2,f +3919,6216,4,3,f +3919,6216,2,3,f +3919,6216,14,2,f +3919,6232,14,1,f +3919,6235,4,1,f +3919,6236,4,2,f +3919,6244px1,15,1,f +3919,6247,14,2,f +3919,6248,14,12,f +3919,6249,4,4,f +3919,82248,1,1,f +3919,82249,15,1,f +3920,32062,0,1,f +3920,32174,72,6,f +3920,32533pb373,21,1,f +3920,32553,72,1,f +3920,32554,33,1,f +3920,32574pb01,86,1,f +3920,41668,86,2,f +3920,43093,1,6,f +3920,47295,86,1,f +3920,47300,72,4,f +3920,47304,179,1,f +3920,6553,0,1,f +3920,6558,0,1,f +3921,30293,0,1,f +3921,30294,0,1,f +3921,32506,15,1,f +3921,32556,71,1,f +3921,3678b,0,2,f +3921,3700,320,2,f +3921,3795,72,1,f +3921,48253,135,1,f +3921,48729a,72,2,f +3921,51663,135,1,f +3921,53989,320,2,f +3921,54275,148,1,f +3921,54276,320,1,f +3921,55236,320,1,f +3921,56653,320,1,f +3921,6538b,72,1,f +3924,4216,4,14,f +3924,4217,4,2,f +3924,4218,47,9,f +3924,4219,1,1,f +3925,104,383,2,f +3925,2412b,383,4,f +3925,2419,2,2,f +3925,2431,0,1,f +3925,2436,4,2,f +3925,2446,0,1,f +3925,2447,0,1,f +3925,2450,2,2,f +3925,2507p01,33,1,f +3925,2653,0,6,f +3925,3001,0,3,f +3925,3001,2,2,f +3925,3001p05,14,2,f +3925,3002,14,2,f +3925,3002,0,4,f +3925,3003,2,2,f +3925,3003,4,1,f +3925,3003,0,2,f +3925,3004,14,2,f +3925,3004,4,3,f +3925,3004,2,1,f +3925,3004,0,2,f +3925,3005,14,2,f +3925,3008,0,2,f +3925,3009,14,2,f +3925,3009,2,4,f +3925,3010,2,2,f +3925,3010,14,4,f +3925,3010,0,1,f +3925,3010,4,2,f +3925,3020,0,2,f +3925,3020,2,1,f +3925,3021,7,2,f +3925,3022,4,2,f +3925,3022,0,1,f +3925,3022,2,1,f +3925,3023,0,4,f +3925,3023,14,2,f +3925,3023,2,4,f +3925,3034,2,2,f +3925,3035,0,2,f +3925,3038,14,2,f +3925,3039,0,4,f +3925,3039,4,3,f +3925,3040b,7,2,f +3925,3040b,14,4,f +3925,3062b,0,2,f +3925,3069bp21,0,1,f +3925,3149c01,0,2,f +3925,32013,0,2,f +3925,3297px5,14,1,f +3925,3298,14,4,f +3925,3298,4,3,f +3925,3460,4,2,f +3925,3475b,0,2,f +3925,3585,2,1,f +3925,3586,2,1,f +3925,3623,2,2,f +3925,3623,4,2,f +3925,3623,0,2,f +3925,3626bp05,14,1,f +3925,3660,14,4,f +3925,3666,0,2,f +3925,3666,2,4,f +3925,3673,7,2,f +3925,3710,0,2,f +3925,3710,2,5,f +3925,3747b,2,1,f +3925,3747b,0,1,f +3925,3747b,14,2,f +3925,3794a,7,2,f +3925,3795,2,3,f +3925,3823,41,2,f +3925,3829c01,4,2,f +3925,3933,0,1,f +3925,3934,0,1,f +3925,3937,4,3,f +3925,3938,7,3,f +3925,4032a,0,2,f +3925,4070,7,2,f +3925,4070,0,2,f +3925,4079,2,1,f +3925,4081b,4,2,f +3925,4081b,0,2,f +3925,4085c,0,4,f +3925,4161,14,2,f +3925,4175,7,2,f +3925,4213,0,2,f +3925,4286,14,2,f +3925,4286,2,6,f +3925,4286,0,6,f +3925,4286,4,4,f +3925,4287,14,2,f +3925,4287,0,2,f +3925,4315,0,3,f +3925,4510,0,2,f +3925,4589,4,2,f +3925,4859,2,1,f +3925,6019,0,8,f +3925,6106,0,2,f +3925,6141,0,7,f +3925,6141,4,7,f +3925,6141,14,5,f +3925,6153a,0,1,f +3925,6205,0,1,f +3925,6213pb07,0,3,f +3925,6213pb08,0,2,f +3925,6213pb09,0,1,f +3925,6541,14,2,f +3925,6564,0,1,f +3925,6564,2,1,f +3925,6564,14,3,f +3925,6564,4,1,f +3925,6565,14,3,f +3925,6565,0,1,f +3925,6565,4,1,f +3925,6565,2,1,f +3925,71182,383,2,f +3925,71183,383,4,f +3925,71184,383,4,f +3925,73590c02b,14,2,f +3925,75,14,2,f +3925,970c00,0,1,f +3925,973p28c01,0,1,f +3925,bb18,14,1,f +3925,x490c01,0,1,f +3925,x491c01,0,1,f +3926,3039,335,100,f +3927,11211,4,2,f +3927,12825,72,2,f +3927,16445,9999,1,t +3927,2335,1,4,f +3927,2343,297,1,f +3927,2412b,0,2,f +3927,2419,72,2,f +3927,2420,71,8,f +3927,2460,72,1,f +3927,2462,71,8,f +3927,2540,0,6,f +3927,2570,179,2,f +3927,2921,71,2,f +3927,30031,72,2,f +3927,30056,70,1,f +3927,3009,72,4,f +3927,3010,71,2,f +3927,30136,72,5,f +3927,30136,70,6,f +3927,3020,70,3,f +3927,3020,72,3,f +3927,3021,28,2,f +3927,3022,0,1,f +3927,3022,72,4,f +3927,3023,72,9,f +3927,3023,70,8,f +3927,30246,71,2,f +3927,30274,71,1,f +3927,3031,0,3,f +3927,3034,71,1,f +3927,30357,70,4,f +3927,30375,72,2,f +3927,3039,71,2,f +3927,3040b,71,10,f +3927,30414,72,1,f +3927,30553,72,1,f +3927,30554b,0,1,f +3927,3062b,0,1,f +3927,3062b,71,10,f +3927,3068b,0,3,f +3927,3069b,71,5,f +3927,32000,72,6,f +3927,32001,71,4,f +3927,32056,71,2,f +3927,32062,0,2,f +3927,32064a,0,7,f +3927,32123b,14,2,f +3927,32123b,14,1,t +3927,3298,70,1,f +3927,3623,4,2,f +3927,3626cpr0895,15,1,f +3927,3626cpr0929,14,1,f +3927,3626cpr0933,14,1,f +3927,3626cpr1349,14,1,f +3927,3660,72,10,f +3927,3665,72,6,f +3927,3673,71,1,t +3927,3673,71,2,f +3927,3700,1,2,f +3927,3710,0,10,f +3927,3710,70,2,f +3927,3713,4,2,f +3927,3713,4,1,t +3927,3832,72,1,f +3927,3844,80,1,f +3927,3849,179,1,f +3927,3941,70,6,f +3927,3958,72,1,f +3927,4032a,70,10,f +3927,4081b,72,2,f +3927,42448,0,2,f +3927,42610,71,2,f +3927,4274,1,1,t +3927,4274,1,4,f +3927,43093,1,3,f +3927,44567a,72,1,f +3927,4477,70,4,f +3927,4488,0,2,f +3927,4489,70,2,f +3927,4495b,297,1,f +3927,4497,179,1,f +3927,4503,80,1,f +3927,4733,71,1,f +3927,4740,0,2,f +3927,47457,71,4,f +3927,4871,72,1,f +3927,48729b,72,8,f +3927,48729b,72,1,t +3927,50951,0,2,f +3927,54200,72,21,f +3927,54200,72,1,t +3927,55013,72,2,f +3927,55236,288,2,f +3927,59426,72,2,f +3927,59443,4,2,f +3927,59900,0,6,f +3927,59900,182,2,f +3927,60475b,0,2,f +3927,60897,0,4,f +3927,61184,71,2,f +3927,6141,36,7,f +3927,6141,0,1,t +3927,6141,0,12,f +3927,6141,36,1,t +3927,64644,308,3,f +3927,64647,182,1,t +3927,64647,182,4,f +3927,64647,1,1,t +3927,64647,1,1,f +3927,64951,70,1,f +3927,6541,1,4,f +3927,6587,28,4,f +3927,72454,72,1,f +3927,85974,226,1,f +3927,85984,1,12,f +3927,87087,72,24,f +3927,87620,72,10,f +3927,87994,70,2,f +3927,88289,308,2,f +3927,90194,70,4,f +3927,90202,0,1,f +3927,93160,15,1,t +3927,93160,15,1,f +3927,93609,15,1,t +3927,93609,15,2,f +3927,970c00,0,1,f +3927,970c10pr0520,72,1,f +3927,970x026,72,1,f +3927,973pr0080c01,4,1,f +3927,973pr0090c01,72,1,f +3927,973pr0100c01,72,1,f +3927,98138,71,4,f +3927,98138,71,1,t +3927,98283,71,8,f +3928,2335p31,15,1,f +3928,2345p04,14,1,f +3928,2453a,15,2,f +3928,2489,6,1,f +3928,2526,14,1,f +3928,2527,4,1,f +3928,2530,8,2,f +3928,2544,0,1,f +3928,2562,6,1,f +3928,3002,0,1,f +3928,3003,0,1,f +3928,3004,15,5,f +3928,3004,0,1,f +3928,3005,15,1,f +3928,3023,0,1,f +3928,3031,0,1,f +3928,3032,1,1,f +3928,3035,1,1,f +3928,3062b,0,2,f +3928,3455,15,1,f +3928,3626bp44,14,1,f +3928,3679,7,1,f +3928,3680,0,1,f +3928,3795,0,1,f +3928,3957a,0,2,f +3928,6141,15,1,t +3928,6141,15,1,f +3928,84943,8,1,f +3928,970c00,15,1,f +3928,973pb0206c01,15,1,f +3931,10928,72,3,f +3931,11153,72,4,f +3931,11214,72,8,f +3931,14720,71,3,f +3931,15379,0,80,f +3931,15379,0,3,t +3931,15413,0,4,f +3931,2780,0,3,t +3931,2780,0,96,f +3931,2825,71,2,f +3931,2853,71,2,f +3931,2950,0,1,f +3931,2951,0,1,f +3931,3020,72,1,f +3931,3022,72,2,f +3931,3023,47,2,f +3931,3023,72,4,f +3931,3068b,72,1,f +3931,32002,19,1,f +3931,32002,19,1,t +3931,32009,14,2,f +3931,32013,1,2,f +3931,32015,71,2,f +3931,32017,14,4,f +3931,32034,71,1,f +3931,32034,0,1,f +3931,32039,71,8,f +3931,32054,4,10,f +3931,32054,71,9,f +3931,32062,4,9,f +3931,32073,71,13,f +3931,32123b,14,1,t +3931,32123b,71,2,t +3931,32123b,14,6,f +3931,32123b,71,8,f +3931,32126,1,4,f +3931,32138,0,2,f +3931,32140,71,2,f +3931,32140,14,2,f +3931,32140,1,3,f +3931,32184,71,2,f +3931,32184,0,15,f +3931,32198,19,2,f +3931,32250,15,2,f +3931,32250,14,2,f +3931,32270,0,4,f +3931,32271,4,3,f +3931,32278,72,2,f +3931,32291,0,2,f +3931,32316,71,9,f +3931,32316,1,7,f +3931,32316,4,6,f +3931,32316,72,1,f +3931,32523,71,6,f +3931,32523,4,4,f +3931,32523,1,4,f +3931,32523,72,5,f +3931,32524,72,3,f +3931,32524,71,4,f +3931,32524,4,3,f +3931,32524,1,3,f +3931,32525,72,1,f +3931,32525,4,2,f +3931,32526,1,5,f +3931,32526,0,4,f +3931,32526,72,2,f +3931,32556,19,5,f +3931,32557,71,1,f +3931,33299a,0,4,f +3931,3623,72,2,f +3931,3648b,72,2,f +3931,3673,71,10,f +3931,3673,71,3,t +3931,3705,0,5,f +3931,3706,0,1,f +3931,3713,4,1,t +3931,3713,71,3,t +3931,3713,71,19,f +3931,3713,4,2,f +3931,3749,19,9,f +3931,3795,72,1,f +3931,3894,72,1,f +3931,3941,19,5,f +3931,3941,72,5,f +3931,3941,71,5,f +3931,40490,71,5,f +3931,40490,0,1,f +3931,40490,14,2,f +3931,40490,4,10,f +3931,41239,71,2,f +3931,41239,72,6,f +3931,41239,14,2,f +3931,41678,71,6,f +3931,42003,14,3,f +3931,42003,71,9,f +3931,4274,1,1,t +3931,4274,1,2,f +3931,4274,71,16,f +3931,4274,71,4,t +3931,43093,1,3,t +3931,43093,1,45,f +3931,43857,1,6,f +3931,44294,71,4,f +3931,4477,4,2,f +3931,4519,71,16,f +3931,4716,0,1,f +3931,48989,71,9,f +3931,54200,36,1,t +3931,54200,36,2,f +3931,55982,71,6,f +3931,56145,14,4,f +3931,58090,0,6,f +3931,58176,182,2,f +3931,59426,72,5,f +3931,59443,71,2,f +3931,59443,14,3,f +3931,59443,0,7,f +3931,60483,72,14,f +3931,60483,71,7,f +3931,60484,71,6,f +3931,60485,71,6,f +3931,6141,182,2,t +3931,6141,36,1,t +3931,6141,182,6,f +3931,6141,36,2,f +3931,61903,71,1,f +3931,62462,71,4,f +3931,62462,0,1,f +3931,63869,71,3,f +3931,64782,71,2,f +3931,6536,14,6,f +3931,6536,15,1,f +3931,6553,0,1,f +3931,6558,1,52,f +3931,6587,28,4,f +3931,6589,19,3,t +3931,6589,19,4,f +3931,6629,1,2,f +3931,6629,14,2,f +3931,6632,15,2,f +3931,6632,71,4,f +3931,87082,71,5,f +3931,87082,0,2,f +3931,87083,72,8,f +3931,87407,71,8,f +3931,87408,0,1,f +3931,92693,71,2,f +3931,99008,19,2,f +3931,99009,71,1,f +3931,99010,0,1,f +3931,99773,14,6,f +3932,11153,1,8,f +3932,11477,0,6,f +3932,11477,4,2,f +3932,11477,27,2,f +3932,14417,72,3,f +3932,14704,71,3,f +3932,14769pr1003,15,2,f +3932,15068,272,2,f +3932,15573,4,1,f +3932,2420,2,10,f +3932,3004,191,2,f +3932,3005,2,6,f +3932,3010,15,1,f +3932,3020,2,4,f +3932,3020,15,3,f +3932,3021,14,1,f +3932,3022,0,4,f +3932,3023,2,11,f +3932,3024,15,1,t +3932,3024,15,2,f +3932,3024,72,1,t +3932,3024,72,4,f +3932,3031,2,1,f +3932,3045,4,2,f +3932,3070b,2,1,t +3932,3070b,2,8,f +3932,3176,4,1,f +3932,3623,27,10,f +3932,3660,2,1,f +3932,3665,15,2,f +3932,3665,0,2,f +3932,3700,15,2,f +3932,3710,2,7,f +3932,3710,15,3,f +3932,4032a,19,1,f +3932,4081b,0,4,f +3932,41532,0,2,f +3932,4274,1,1,t +3932,4274,1,2,f +3932,43722,27,1,f +3932,43722,4,2,f +3932,43723,27,1,f +3932,43723,4,2,f +3932,44301a,72,3,f +3932,44567a,14,4,f +3932,44728,15,2,f +3932,47457,27,2,f +3932,47753,191,1,f +3932,48183,4,1,f +3932,48183,288,2,f +3932,48336,14,2,f +3932,4871,272,1,f +3932,48933,288,1,f +3932,50950,2,4,f +3932,51739,0,1,f +3932,52107,0,1,f +3932,54200,47,1,t +3932,54200,47,4,f +3932,6005,2,2,f +3932,60471,0,8,f +3932,60478,1,6,f +3932,60897,1,6,f +3932,6091,27,2,f +3932,63868,4,2,f +3932,6541,0,2,f +3932,73983,2,2,f +3932,85984,191,1,f +3932,85984,0,4,f +3932,87087,27,6,f +3932,87552,15,2,f +3932,92280,15,2,f +3932,93273,27,2,f +3932,98138,84,1,t +3932,98138,84,3,f +3932,98138pr0008,15,4,f +3932,98138pr0008,15,1,t +3932,99207,0,1,f +3934,3001a,47,1,f +3934,3001a,1,1,f +3934,3004,15,4,f +3934,3004p50,1,4,f +3934,3010,47,1,f +3934,3010,1,2,f +3934,3010p30,1,1,f +3934,3010pb035e,1,1,f +3934,3020,15,4,f +3934,3021,15,2,f +3934,3023,15,2,f +3934,3024,1,1,f +3934,3062a,1,6,f +3934,3063b,15,16,f +3934,3137c01,0,1,f +3934,3137c02,0,3,f +3934,3139,0,2,f +3934,7b,0,6,f +3934,967,1,1,f +3934,968,1,1,f +3934,969,7,1,f +3935,57543,135,2,f +3935,60176,72,2,f +3935,60894,72,1,f +3935,60900,15,4,f +3935,60901,42,1,f +3935,60904,15,1,f +3935,60930,135,1,f +3935,62386,72,2,f +3938,11816pr0002,78,1,f +3938,92256,226,1,f +3938,92456pr0006c01,78,1,f +3938,92820pr0001c01,4,1,f +3939,2412b,0,1,f +3939,2436,15,1,f +3939,3024,15,1,f +3939,30374,71,2,f +3939,3069b,40,1,f +3939,3794b,15,2,f +3939,3794b,71,1,f +3939,43722,15,1,f +3939,43723,15,1,f +3939,51739,72,1,f +3939,54200,40,1,t +3939,54200,40,1,f +3939,6141,71,2,f +3939,6141,71,1,t +3939,92280,71,2,f +3943,3002,4,1,f +3943,3003,4,1,f +3943,3003pe2,4,1,f +3943,3004,4,2,f +3943,3020,4,1,f +3943,3023,4,2,f +3943,3023,0,1,f +3943,3660,4,1,f +3943,4081b,14,2,f +3944,3039,4,18,f +3944,3043,4,4,f +3945,12888pr0001,84,1,f +3945,12890,226,1,f +3945,3069bpr0007,0,1,f +3945,3626bpb0918,14,1,f +3945,88646,0,1,f +3945,970c00pb246,15,1,f +3945,973pr2327c01,29,1,f +3946,10197,72,2,f +3946,11302pat0003,15,1,f +3946,15976,179,2,f +3946,18587,14,1,f +3946,18588,72,1,f +3946,18654,72,1,f +3946,18654,72,1,t +3946,19049,179,1,f +3946,19050,41,1,f +3946,19087,15,3,f +3946,19149pat0002,15,1,f +3946,20251,179,1,f +3946,20252,148,4,f +3946,2780,0,2,f +3946,2780,0,1,t +3946,32054,0,1,f +3946,32062,4,4,f +3946,32270,0,2,f +3946,43093,1,1,f +3946,4519,71,1,f +3946,59443,14,2,f +3946,60483,0,1,f +3946,61403,41,1,f +3946,6141,41,1,t +3946,6141,41,12,f +3946,63869,0,1,f +3946,6558,1,2,f +3946,87083,72,1,f +3946,90609,41,2,f +3946,90612,0,2,f +3946,90617,72,2,f +3946,90640,41,3,f +3946,90641,15,3,f +3946,92907,0,1,f +3946,93575,41,2,f +3946,98577,72,2,f +3946,98590,0,1,f +3947,11211,19,1,f +3947,30137,70,1,f +3947,3020,15,1,f +3947,3020,30,1,f +3947,3037,15,1,f +3947,3062b,70,2,f +3947,4032a,2,1,f +3947,60594,70,1,f +3947,60607,297,2,f +3947,6141,4,1,f +3947,6141,15,1,t +3947,6141,15,1,f +3947,6141,4,1,t +3948,2357,7,2,f +3948,2357,4,8,f +3948,2357,1,2,f +3948,2412b,7,4,f +3948,2412b,0,6,f +3948,2419,7,1,f +3948,2420,0,2,f +3948,2420,14,8,f +3948,2431,7,2,f +3948,2431,0,2,f +3948,2432,7,4,f +3948,2444,14,1,f +3948,2445,14,1,f +3948,2449,0,2,f +3948,2450,0,2,f +3948,2456,0,1,f +3948,2540,7,1,f +3948,2826,47,1,f +3948,2873,7,2,f +3948,2952,7,1,f +3948,298c03,7,3,f +3948,298c03,7,1,t +3948,3001,14,2,f +3948,3003,4,1,f +3948,3003,1,2,f +3948,3003,0,2,f +3948,3004,14,1,f +3948,3004,1,1,f +3948,3004,7,4,f +3948,3004,0,5,f +3948,3005,0,3,f +3948,3009,1,1,f +3948,3010,14,2,f +3948,3010,7,1,f +3948,3020,14,1,f +3948,3020,0,5,f +3948,3020,7,2,f +3948,3020,4,1,f +3948,3021,14,1,f +3948,3021,7,1,f +3948,3021,0,4,f +3948,3021,1,2,f +3948,3021,4,3,f +3948,3022,14,5,f +3948,3022,4,2,f +3948,3022,0,3,f +3948,3023,0,6,f +3948,3023,4,4,f +3948,3023,7,3,f +3948,3023,1,5,f +3948,3023,14,4,f +3948,3024,14,2,f +3948,3024,0,13,f +3948,3028,0,1,f +3948,3029,7,1,f +3948,3029,0,2,f +3948,3031,0,1,f +3948,3031,14,1,f +3948,3032,0,1,f +3948,3032,7,1,f +3948,3034,14,5,f +3948,3039,0,1,f +3948,3039,4,1,f +3948,3039pc5,7,2,f +3948,3040b,0,5,f +3948,3040b,14,4,f +3948,3040p01,0,1,f +3948,3040p33,0,2,f +3948,3069b,0,1,f +3948,3069b,7,2,f +3948,3070b,0,2,f +3948,3070b,0,1,t +3948,32034,7,1,f +3948,32123b,7,6,f +3948,32123b,7,1,t +3948,32124,7,1,f +3948,32124,0,2,f +3948,3298,0,2,f +3948,3460,0,2,f +3948,3460,7,4,f +3948,3622,0,4,f +3948,3623,0,3,f +3948,3623,7,6,f +3948,3623,14,4,f +3948,3660,0,12,f +3948,3660,14,2,f +3948,3665,0,11,f +3948,3666,0,1,f +3948,3666,7,4,f +3948,3666,1,1,f +3948,3700,0,2,f +3948,3709,1,1,f +3948,3710,4,1,f +3948,3710,1,3,f +3948,3710,14,8,f +3948,3710,7,3,f +3948,3710,0,4,f +3948,3713,7,1,t +3948,3713,7,2,f +3948,3737,0,1,f +3948,3738,0,1,f +3948,3747b,14,2,f +3948,3747b,0,1,f +3948,3749,7,1,f +3948,3794a,4,2,f +3948,3794a,14,2,f +3948,3794a,1,4,f +3948,3794a,0,7,f +3948,3795,0,2,f +3948,3795,4,2,f +3948,3795,14,3,f +3948,3795,7,2,f +3948,3832,7,2,f +3948,3832,14,1,f +3948,3849,8,1,f +3948,3941,7,2,f +3948,3958,0,1,f +3948,4032a,7,6,f +3948,4032a,0,1,f +3948,4033,14,2,f +3948,4034,47,2,f +3948,4070,7,10,f +3948,4070,14,6,f +3948,4070,0,6,f +3948,4081b,7,2,f +3948,4081b,0,4,f +3948,4150,7,2,f +3948,4162,7,2,f +3948,4175,0,2,f +3948,4175,7,2,f +3948,4175,4,1,f +3948,4181,0,2,f +3948,4182,0,2,f +3948,4183,47,4,f +3948,4274,7,7,f +3948,4274,7,1,t +3948,4275b,4,4,f +3948,4276b,4,4,f +3948,4282,7,2,f +3948,4286,14,5,f +3948,4286,0,4,f +3948,4287,0,14,f +3948,4315,7,2,f +3948,4349,1,2,f +3948,4477,14,4,f +3948,4477,7,4,f +3948,4519,0,1,f +3948,4859,0,2,f +3948,4859,14,2,f +3948,6005,7,4,f +3948,6019,7,3,f +3948,6091,0,3,f +3948,6091,4,2,f +3948,6141,47,1,f +3948,6141,7,11,f +3948,6141,36,2,f +3948,6141,36,1,t +3948,6141,0,1,t +3948,6141,47,1,t +3948,6141,4,1,t +3948,6141,0,3,f +3948,6141,14,2,f +3948,6141,7,1,t +3948,6141,4,2,f +3948,6141,14,1,t +3948,6179,0,2,f +3948,6541,0,4,f +3948,6541,7,2,f +3948,6564,14,2,f +3948,6564,0,5,f +3948,6565,0,5,f +3948,6565,14,2,f +3948,6587,8,4,f +3948,6632,7,1,f +3949,11477,0,4,f +3949,14417,72,6,f +3949,14418,71,8,f +3949,15068,0,1,f +3949,15429,19,4,f +3949,15573,85,8,f +3949,15573,4,5,f +3949,15573,14,2,f +3949,15573,378,3,f +3949,15672,15,2,f +3949,22385,0,2,f +3949,22388,45,3,f +3949,2357,26,4,f +3949,2412b,72,2,f +3949,2420,0,2,f +3949,2449,15,2,f +3949,2540,19,2,f +3949,26047,0,4,f +3949,298c02,0,2,f +3949,3002,1,4,f +3949,3002,72,1,f +3949,3002,0,4,f +3949,3003,29,1,f +3949,3004,378,2,f +3949,3004,19,2,f +3949,3004,14,1,f +3949,3004,1,2,f +3949,3004,26,4,f +3949,3004,191,2,f +3949,3004,5,7,f +3949,3004,0,3,f +3949,3004,320,2,f +3949,3004,29,1,f +3949,3004,272,4,f +3949,3005,14,1,f +3949,3005,322,3,f +3949,3005,26,2,f +3949,3005,191,1,f +3949,3005,5,6,f +3949,3005,72,2,f +3949,3010,1,1,f +3949,3010,5,3,f +3949,3010,378,1,f +3949,3021,15,3,f +3949,3021,322,2,f +3949,3021,191,3,f +3949,3021,4,1,f +3949,3021,0,3,f +3949,3021,27,1,f +3949,3021,19,1,f +3949,3021,323,1,f +3949,3021,85,1,f +3949,3021,272,1,f +3949,3021,378,2,f +3949,3021,14,2,f +3949,3022,27,4,f +3949,3022,85,2,f +3949,3023,19,2,f +3949,3023,323,2,f +3949,3023,15,8,f +3949,3023,29,2,f +3949,3023,378,1,f +3949,3023,85,1,f +3949,3023,0,17,f +3949,3023,5,2,f +3949,3023,1,1,f +3949,3023,272,2,f +3949,3023,191,7,f +3949,3024,323,3,f +3949,3024,19,2,f +3949,3024,0,8,f +3949,3024,4,1,f +3949,3024,15,13,f +3949,3024,29,3,f +3949,3024,272,1,f +3949,3024,212,2,f +3949,3039,15,2,f +3949,3040b,15,4,f +3949,3045,15,2,f +3949,3069b,15,1,f +3949,3069b,4,1,f +3949,3069b,29,4,f +3949,3069b,378,2,f +3949,3069b,191,3,f +3949,3069b,5,1,f +3949,3069b,0,2,f +3949,3069bpr0191,323,1,f +3949,3070b,5,5,f +3949,3070b,26,2,f +3949,3070b,72,2,f +3949,3070b,4,2,f +3949,3070b,27,4,f +3949,3070b,15,1,f +3949,3070b,0,4,f +3949,3245b,15,1,f +3949,32738,191,1,f +3949,32807,0,4,f +3949,33078,0,2,f +3949,33291,191,1,f +3949,3460,320,1,f +3949,3622,72,1,f +3949,3622,0,1,f +3949,3622,5,1,f +3949,3622,191,1,f +3949,3622,15,3,f +3949,3622pr0006,323,1,f +3949,3622pr0007,29,1,f +3949,3622pr0012,19,1,f +3949,3622pr0013,212,1,f +3949,3623,15,2,f +3949,3623,14,1,f +3949,3623,26,11,f +3949,3623,19,1,f +3949,3623,1,12,f +3949,3623,0,8,f +3949,3623,29,1,f +3949,3665,0,2,f +3949,3666,191,1,f +3949,3685,1,2,f +3949,3794b,15,2,f +3949,3795,1,4,f +3949,4070,14,1,f +3949,42409,41,2,f +3949,4286,212,1,f +3949,44301a,14,2,f +3949,4460b,1,9,f +3949,4495b,19,1,f +3949,48336,1,5,f +3949,51739,320,2,f +3949,54200,5,6,f +3949,54200,19,4,f +3949,54200,15,4,f +3949,54200,191,3,f +3949,54200,2,1,f +3949,54200,27,1,f +3949,59900,14,4,f +3949,60481,5,4,f +3949,60897,19,2,f +3949,61252,1,10,f +3949,61252,15,1,f +3949,6141,70,1,f +3949,6141,0,2,f +3949,6141,4,8,f +3949,63864,191,1,f +3949,63864,323,2,f +3949,63864,29,2,f +3949,63864,1,2,f +3949,63864,19,2,f +3949,63864,0,1,f +3949,63864,72,1,f +3949,63868,27,4,f +3949,6541,15,1,f +3949,6541,322,2,f +3949,6628,0,2,f +3949,85861,15,1,f +3949,85984,2,1,f +3949,85984,191,2,f +3949,85984,29,2,f +3949,85984,27,3,f +3949,85984,0,2,f +3949,87087,0,4,f +3949,87087,378,4,f +3949,87087,191,8,f +3949,87087,14,3,f +3949,87087,29,2,f +3949,87087,15,5,f +3949,89522,15,1,f +3949,96874,25,1,f +3949,98138,15,2,f +3949,98138,0,2,f +3949,98138,71,2,f +3949,98138,41,1,f +3949,98138,4,3,f +3949,98138pr0076,0,6,f +3949,99207,1,1,f +3949,99780,5,2,f +3949,99781,1,2,f +3951,3004,0,3,f +3951,3004,15,2,f +3951,3005pe1,15,2,f +3951,3005pe1,15,1,t +3951,3020,15,1,f +3951,3021,15,1,f +3951,3023,0,1,t +3951,3023,0,1,f +3951,3040b,15,2,f +3951,3660,15,1,f +3953,2412b,320,2,f +3953,2412b,182,1,f +3953,2432,72,1,f +3953,2654,182,2,f +3953,30171,70,1,f +3953,30176,2,1,f +3953,3021,72,1,f +3953,3022,4,2,f +3953,3023,27,3,f +3953,30239,2,1,f +3953,30239,28,1,f +3953,3031,19,1,f +3953,30374,0,2,f +3953,3039,70,1,f +3953,3040b,14,2,f +3953,30602pr0003,14,1,f +3953,3070bpr0007,71,1,f +3953,3070bpr0007,71,1,t +3953,32013,72,2,f +3953,3626cpr0925,14,1,f +3953,3794b,72,1,f +3953,3795,72,1,f +3953,3829c01,1,1,f +3953,4286,70,1,f +3953,43093,1,2,f +3953,44674,14,2,f +3953,4854,72,1,f +3953,53451,25,1,t +3953,53451,135,2,f +3953,53451,25,1,f +3953,53451,135,1,t +3953,59900,42,2,f +3953,6014b,14,4,f +3953,6019,14,4,f +3953,60475a,0,1,f +3953,61184,71,2,f +3953,61409,72,4,f +3953,6141,71,2,f +3953,6141,71,1,t +3953,6157,71,2,f +3953,63868,0,4,f +3953,6541,71,2,f +3953,86208,71,1,f +3953,87087,14,3,f +3953,87697,0,4,f +3953,87989,27,1,f +3953,87989,27,1,t +3953,970x308,28,1,f +3953,973pr1990c01,320,1,f +3953,98138,36,1,f +3953,98138,36,1,t +3953,98166pr0001,28,1,f +3953,99809,148,1,f +3954,20492pr0001,14,1,f +3954,3069bpr0142,15,1,f +3954,41879a,2,1,f +3954,88646,0,1,f +3954,973pr2981c01,15,1,f +3956,2431,4,4,f +3956,2793c01,14,2,f +3956,2797c02,14,1,f +3956,3023,0,12,f +3956,3032,4,3,f +3956,3034,4,3,f +3956,3069b,4,2,f +3956,3460,4,4,f +3956,3651,7,4,f +3956,3673,7,8,f +3956,3700,4,8,f +3956,3701,4,4,f +3956,3702,4,4,f +3956,3703,4,4,f +3956,3705,0,1,f +3956,3706,0,4,f +3956,3707,0,3,f +3956,3709,4,4,f +3956,3710,4,2,f +3956,3713,7,8,f +3956,3795,4,2,f +3956,3894,4,4,f +3956,3895,4,4,f +3956,4162,4,4,f +3956,4265a,7,4,f +3956,4459,0,12,f +3956,4697b,7,4,f +3956,5102c05,7,1,f +3956,5102c25,0,1,f +3956,75215,7,2,f +3956,9604b1,9999,1,f +3956,9604b2,9999,1,f +3956,9604b3,9999,1,f +3956,9604b4,9999,1,f +3956,9604b5,9999,1,f +3960,3003,6,100,f +3961,10201,0,2,f +3961,10247,71,1,f +3961,11090,0,2,f +3961,11211,19,1,f +3961,11477,272,2,f +3961,11477,0,2,f +3961,14417,72,1,f +3961,14704,71,1,f +3961,14769,71,2,f +3961,14769,4,1,f +3961,14769,14,2,f +3961,15064,308,6,f +3961,15391,0,2,f +3961,15392,72,2,f +3961,15406,0,1,f +3961,18663,47,1,f +3961,20917,179,1,f +3961,20917,0,1,f +3961,21850,47,2,f +3961,23714,272,2,f +3961,24021,148,1,f +3961,2654,0,2,f +3961,2780,0,1,t +3961,2780,0,1,f +3961,3001,4,1,f +3961,3002,4,2,f +3961,3003,4,1,f +3961,3004,272,2,f +3961,3005,4,1,f +3961,3021,272,1,f +3961,3022,14,1,f +3961,3022,320,1,f +3961,3022,15,2,f +3961,3023,14,1,f +3961,3023,5,3,f +3961,3023,46,2,f +3961,30340,15,1,f +3961,3039,272,1,f +3961,30414,4,2,f +3961,30553,0,2,f +3961,3062b,71,2,f +3961,3070b,14,4,f +3961,3070b,4,1,t +3961,3070b,4,2,f +3961,3070b,14,1,t +3961,3176,71,1,f +3961,32039,0,4,f +3961,32062,0,6,f +3961,32064a,320,4,f +3961,3298,272,2,f +3961,3622,4,3,f +3961,3623,15,1,f +3961,3626b,0,1,f +3961,3626cpr0937,78,1,f +3961,3626cpr1253,78,1,f +3961,3626cpr1515,78,1,f +3961,3660,320,1,f +3961,3666,14,2,f +3961,3700,4,1,f +3961,3706,0,1,f +3961,3747b,320,1,f +3961,3795,14,1,f +3961,3795,320,1,f +3961,4032a,4,1,f +3961,4032a,71,2,f +3961,4032a,14,2,f +3961,41532,0,2,f +3961,41677,1,4,f +3961,44567a,0,1,f +3961,50305,15,1,f +3961,50923,72,2,f +3961,50950,272,4,f +3961,51739,272,1,f +3961,52501,320,4,f +3961,53451,0,1,t +3961,53451,0,2,f +3961,54200,272,6,f +3961,57585,71,2,f +3961,59443,0,2,f +3961,59900,0,6,f +3961,60471,4,1,f +3961,60478,0,2,f +3961,60897,72,2,f +3961,6141,46,6,f +3961,6141,71,7,f +3961,63864,4,2,f +3961,63864,14,4,f +3961,64225,272,4,f +3961,6587,28,4,f +3961,92692,0,1,f +3961,93571,0,2,f +3961,970c00pr0901,0,1,f +3961,970c00pr0902,0,1,f +3961,970c00pr0903,148,1,f +3961,973pr3088c01,0,1,f +3961,973pr3089c01,0,1,f +3961,973pr3090c01,148,1,f +3961,98138,47,4,f +3961,98138,47,1,t +3961,99781,0,3,f +3962,3001a,47,1,f +3962,3002a,15,2,f +3962,3003,1,1,f +3962,3004,15,7,f +3962,3005,15,6,f +3962,3010,47,1,f +3962,3010,15,6,f +3962,3010p30,15,4,f +3962,3010p30,4,1,f +3962,3010pb035e,15,1,f +3962,3020,4,3,f +3962,3023,4,2,f +3962,3029,4,1,f +3962,3137c01,0,1,f +3962,3137c02,0,4,f +3962,3139,0,2,f +3962,3190,15,2,f +3962,3191,15,2,f +3962,7b,0,8,f +3962,967,4,1,f +3962,968,4,1,f +3962,969,7,1,f +3964,2780,0,1,t +3964,2780,0,20,f +3964,2793c01,47,1,f +3964,2817,7,4,f +3964,2825,7,2,f +3964,2856c02,0,1,f +3964,2905,1,2,f +3964,32002,8,4,f +3964,32007,15,2,f +3964,32012,14,1,f +3964,32028,7,4,f +3964,32039,7,4,f +3964,32039,0,4,f +3964,32054,1,24,f +3964,32062,0,5,f +3964,32073,0,4,f +3964,32123b,7,5,f +3964,32140,0,4,f +3964,32171pb062,0,6,f +3964,32184,1,4,f +3964,32192,0,2,f +3964,32198,7,1,f +3964,32209,15,2,f +3964,32250,1,4,f +3964,32269,7,3,f +3964,32270,7,3,f +3964,32271,42,2,f +3964,32271,57,2,f +3964,32278,0,6,f +3964,32278,1,5,f +3964,32291,0,4,f +3964,32316,1,8,f +3964,32348,1,2,f +3964,32449,0,4,f +3964,32449,1,4,f +3964,32523,1,6,f +3964,32524,1,4,f +3964,32526,0,2,f +3964,32526,14,2,f +3964,32529,0,2,f +3964,32530,0,6,f +3964,32531,47,2,f +3964,32532,47,2,f +3964,3641,0,4,f +3964,3702,0,4,f +3964,3737,0,1,f +3964,3743,7,4,f +3964,3749,7,6,f +3964,4032a,15,2,f +3964,4153273,9999,1,f +3964,41752,8,1,f +3964,4519,0,5,f +3964,5102c195,47,1,f +3964,5306bc069,0,1,f +3964,6048a,0,4,f +3964,6141,7,36,f +3964,6141,7,1,t +3964,6536,0,6,f +3964,6538b,1,2,f +3964,6541,0,14,f +3964,6558,0,26,f +3964,6587,8,4,f +3964,6588,47,1,f +3964,6632,1,2,f +3964,6632,7,2,f +3964,6632,0,4,f +3964,71427c01,7,1,f +3964,71509,0,4,f +3964,74982,1,1,f +3964,75215,7,1,f +3964,75535,0,4,f +3964,rb00164,0,1,f +3965,3021,85,1,f +3965,3023,30,1,f +3965,3024,14,1,f +3965,3024,73,1,f +3965,30565,27,1,f +3965,3068bpr0138,15,1,f +3965,3069bpr0175,29,1,f +3965,33291,5,1,f +3965,33291,191,2,f +3965,3623,15,1,f +3965,3857,10,1,f +3965,4150pr0011a,27,1,f +3965,6141,85,1,f +3965,6141,15,1,f +3965,87079pr0051,15,1,f +3967,2431,0,1,f +3967,2555,0,2,f +3967,2569,42,2,f +3967,2625,1,1,f +3967,3001,0,1,f +3967,3004,8,1,f +3967,30208,42,1,f +3967,30209,1,1,f +3967,30213,42,1,f +3967,30214,34,1,f +3967,3039,0,1,f +3967,3039px8,8,1,f +3967,3068bpx7,0,1,f +3967,3298,8,2,f +3967,3626bpb0107,8,1,f +3967,3838,0,1,f +3967,3839b,1,1,f +3967,4589,42,2,f +3967,970x027,0,1,f +3967,973pb0082c01,8,1,f +3970,2419,15,2,f +3970,3021,4,3,f +3970,3021,15,2,f +3970,3023,15,2,f +3970,3023,4,1,f +3970,3024,4,13,f +3970,3024,15,4,f +3970,3028,28,1,f +3970,3031,4,1,f +3970,30357,4,2,f +3970,3038,0,2,f +3970,3069b,15,2,f +3970,3070b,4,1,f +3970,3070b,2,2,t +3970,3070b,2,20,f +3970,3070b,19,4,f +3970,3623,15,3,f +3970,3623,4,9,f +3970,3710,4,2,f +3970,3794b,4,10,f +3970,3794b,15,14,f +3970,4070,4,4,f +3970,4589,4,6,f +3970,4589,70,4,f +3970,4733,15,4,f +3970,4733,0,4,f +3970,4865a,4,2,f +3970,49668,15,1,f +3970,54200,4,6,f +3970,61409,4,2,f +3970,6141,19,4,f +3970,6141,15,2,f +3970,6141,4,2,f +3970,6231,4,2,f +3970,6541,0,2,f +3970,85861,15,3,f +3972,2412b,42,1,t +3972,2412b,42,2,f +3972,2419,7,1,f +3972,30363,7,1,f +3972,30640,7,1,f +3972,30663,0,1,f +3972,41862,7,1,f +3972,42607c01,4,2,f +3972,42608,0,1,f +3972,42610,7,2,f +3972,4282,4,1,f +3972,4589,42,2,f +3972,4589,42,1,t +3972,4617b,0,1,f +3972,51011,0,2,f +3972,6232,4,1,f +3972,6239,4,1,f +3972,js008,-1,1,f +3973,10169,84,1,f +3973,13562,148,1,f +3973,13562,179,1,t +3973,13562,179,2,f +3973,13562,148,1,t +3973,13565,0,1,f +3973,13565,15,1,f +3973,13571pr01,308,1,f +3973,13664pr0001,308,1,f +3973,13665,0,1,f +3973,2431,70,2,f +3973,2431pr0060,70,2,f +3973,2444,0,2,f +3973,2450,15,2,f +3973,2453b,70,2,f +3973,2453b,71,2,f +3973,2454a,70,1,f +3973,2489,308,2,f +3973,2527,70,1,f +3973,2780,0,1,t +3973,2780,0,2,f +3973,3004,288,20,f +3973,3004,19,10,f +3973,3004,71,7,f +3973,3004,15,1,f +3973,3005,320,2,f +3973,3005,71,11,f +3973,3005,19,8,f +3973,3005,288,33,f +3973,30055,72,3,f +3973,30055,71,1,f +3973,3009,70,1,f +3973,3009,15,1,f +3973,3009,28,5,f +3973,3010,0,7,f +3973,3010,71,6,f +3973,30136,84,5,f +3973,30136,28,12,f +3973,30136,0,6,f +3973,30141,72,3,f +3973,30150,84,2,f +3973,30157,72,1,f +3973,3020,15,3,f +3973,3020,70,11,f +3973,3021,0,2,f +3973,3022,19,1,f +3973,3022,0,1,f +3973,3023,72,20,f +3973,3023,288,6,f +3973,3023,2,3,f +3973,3023,28,3,f +3973,3023,70,10,f +3973,30236,71,1,f +3973,3024,19,6,f +3973,3024,19,2,t +3973,3028,70,1,f +3973,3030,70,1,f +3973,3033,19,1,f +3973,3034,70,1,f +3973,3034,72,1,f +3973,3035,0,1,f +3973,30350b,70,2,f +3973,3062b,71,5,f +3973,3069b,70,4,f +3973,3069b,72,7,f +3973,3069bpr0100,2,3,f +3973,3070b,71,2,f +3973,3070b,71,1,t +3973,3176,72,1,f +3973,32000,71,2,f +3973,32013,0,1,f +3973,3460,308,1,f +3973,3623,70,4,f +3973,3626cpr1191,78,1,f +3973,3626cpr1194,84,1,f +3973,3626cpr1196,78,1,f +3973,3626cpr1250,78,1,f +3973,3626cpr1251,78,1,f +3973,3660,19,4,f +3973,3665,70,4,f +3973,3666,72,4,f +3973,3666,70,3,f +3973,3673,71,1,f +3973,3673,71,1,t +3973,3701,70,1,f +3973,3710,72,11,f +3973,3710,70,4,f +3973,3710,19,3,f +3973,3747b,15,2,f +3973,3794b,70,2,f +3973,3795,308,4,f +3973,3795,0,1,f +3973,3795,15,1,f +3973,3830,15,2,f +3973,3831,15,2,f +3973,3899,47,1,f +3973,3956,0,2,f +3973,3958,0,2,f +3973,4032a,0,9,f +3973,4079,288,1,f +3973,41539,0,1,f +3973,41769,0,1,f +3973,41769,15,1,f +3973,41770,15,1,f +3973,41770,0,1,f +3973,4460b,70,2,f +3973,44728,19,1,f +3973,4488,0,2,f +3973,4489b,70,2,f +3973,4515,0,3,f +3973,4519,71,1,f +3973,4589,0,11,f +3973,4589,46,5,f +3973,4599b,71,1,t +3973,4599b,71,1,f +3973,4740,0,1,f +3973,48336,19,2,f +3973,48723,70,2,f +3973,54200,0,2,f +3973,54200,0,1,t +3973,6019,0,2,f +3973,6020,0,1,f +3973,60475b,71,3,f +3973,60483,0,2,f +3973,60583b,0,2,f +3973,60592,0,2,f +3973,60592,15,6,f +3973,60593,0,3,f +3973,60593,15,4,f +3973,60596,15,1,f +3973,60596,0,2,f +3973,60601,47,8,f +3973,60602,47,7,f +3973,60621,71,1,f +3973,60623,15,1,f +3973,60623,0,1,f +3973,6064,28,1,f +3973,60800a,70,2,f +3973,6091,288,2,f +3973,6106,0,2,f +3973,6112,70,2,f +3973,61184,71,1,f +3973,6141,70,6,f +3973,6141,0,3,t +3973,6141,179,2,f +3973,6141,70,1,t +3973,6141,0,23,f +3973,6141,80,1,t +3973,6141,80,2,f +3973,6141,297,1,t +3973,6141,72,4,f +3973,6141,72,1,t +3973,6141,179,1,t +3973,6141,297,7,f +3973,61482,71,1,t +3973,61482,71,1,f +3973,61506,70,1,f +3973,6180,15,1,f +3973,6180,0,2,f +3973,62808,72,2,f +3973,63868,70,1,f +3973,63965,70,2,f +3973,64644,308,4,f +3973,64728,4,2,f +3973,6541,0,3,f +3973,6541,71,1,f +3973,6636,15,1,f +3973,6636,0,2,f +3973,73983,72,12,f +3973,79109stk01,9999,1,t +3973,84943,148,1,f +3973,85984,15,1,f +3973,85984,72,2,f +3973,85984,19,1,f +3973,87079,70,2,f +3973,87083,72,1,f +3973,87087,72,8,f +3973,87620,288,2,f +3973,88292,15,6,f +3973,92438,19,1,f +3973,92946,72,3,f +3973,95228,47,1,f +3973,95674,71,1,f +3973,96874,25,1,t +3973,970c00pr0502,308,1,f +3973,970c00pr0505,72,1,f +3973,970c00pr0545,28,1,f +3973,970c00pr0547,308,1,f +3973,970c00pr0549,0,1,f +3973,973pr2340c01,0,1,f +3973,973pr2344c01,84,1,f +3973,973pr2345c01,71,1,f +3973,973pr2438c01,71,1,f +3973,973pr2439c01,308,1,f +3973,98283,28,4,f +3973,98283,71,18,f +3973,99563,80,2,f +3974,14769pr1012,4,1,f +3974,15208,0,1,f +3974,15391,0,1,f +3974,15392,72,1,f +3974,15392,72,1,t +3974,15404,182,1,f +3974,15406,0,1,f +3974,15462,28,1,f +3974,15573,0,2,f +3974,15706,0,2,f +3974,17485,71,1,f +3974,19858pat0004,42,1,f +3974,19859pat0005,182,1,f +3974,20612,40,1,f +3974,22385pr0028,47,2,f +3974,22385pr0038,35,1,f +3974,22385pr0059,46,1,f +3974,22409,0,1,f +3974,24482,15,3,f +3974,24482,0,1,f +3974,2540,4,2,f +3974,3004,4,1,f +3974,3021,0,2,f +3974,3022,25,1,f +3974,3023,182,2,f +3974,3023,14,1,f +3974,32054,4,1,f +3974,32062,4,1,f +3974,32270,0,1,f +3974,3626cpr1858,14,1,f +3974,3713,4,1,f +3974,3713,4,1,t +3974,3937,0,2,f +3974,3941,182,2,f +3974,4032a,0,1,f +3974,41769,4,1,f +3974,41770,4,1,f +3974,48729b,0,1,t +3974,48729b,0,2,f +3974,58176,35,1,f +3974,59443,0,1,f +3974,6134,71,2,f +3974,6141,35,4,f +3974,6141,35,1,t +3974,61780,72,1,f +3974,64567,0,1,t +3974,64567,0,1,f +3974,64867,182,1,f +3974,6553,0,1,f +3974,85984,4,2,f +3974,87580,320,3,f +3974,973pr3255c01,14,1,f +3974,98138,15,1,f +3974,98138,15,1,t +3974,98313,320,2,f +3975,777p01,15,1,f +3975,777p07,15,1,f +3975,777p08,15,1,f +3975,777p09,15,1,f +3975,777p13,15,1,f +3976,22667,4,2,f +3976,22667,4,1,t +3976,30222,36,2,f +3976,33006,14,1,f +3976,33008,115,1,f +3976,33011,73,1,f +3976,33051,2,1,f +3976,33051,10,1,f +3976,33054,14,2,f +3976,33061,41,2,f +3976,33078,4,2,f +3976,33085,14,2,f +3976,33125,366,2,f +3976,3957a,15,1,f +3976,6206,15,1,f +3976,6942,47,1,f +3976,6995,5,1,f +3976,x14,4,1,f +3980,2412b,14,5,f +3980,2431,14,1,f +3980,2431pr00321,14,2,f +3980,2432,14,1,f +3980,2436,71,2,f +3980,2444,0,2,f +3980,2446pr23,0,2,f +3980,2540,72,2,f +3980,2555,14,3,f +3980,2569,0,1,f +3980,2654,0,2,f +3980,2654,71,3,f +3980,2780,0,4,f +3980,2780,0,1,t +3980,298c02,14,1,t +3980,298c02,14,2,f +3980,3001,0,1,f +3980,3001,14,1,f +3980,3001,15,1,f +3980,3001,72,1,f +3980,3003,72,1,f +3980,3003,15,1,f +3980,30031,0,1,f +3980,3004,15,3,f +3980,3004,14,2,f +3980,3004,72,5,f +3980,30088,72,2,f +3980,30090,41,2,f +3980,30091,72,2,f +3980,3010,14,2,f +3980,30153,34,1,f +3980,30153,41,1,f +3980,30153,45,1,f +3980,3020,4,1,f +3980,3020,15,1,f +3980,3020,14,1,f +3980,3020,71,3,f +3980,3022,72,1,f +3980,3022,4,1,f +3980,3022,15,1,f +3980,3022,71,5,f +3980,3023,4,8,f +3980,3023,71,2,f +3980,30236,72,1,f +3980,3024,4,2,f +3980,3024,14,2,f +3980,3024,72,6,f +3980,3031,72,2,f +3980,3033,0,1,f +3980,30361c,14,2,f +3980,30365,72,2,f +3980,30367b,14,2,f +3980,30377,71,2,f +3980,30377,71,1,t +3980,3040b,14,6,f +3980,3040b,72,3,f +3980,3062b,14,1,f +3980,30647,0,2,f +3980,3068b,72,1,f +3980,3068bpr01381,14,2,f +3980,3069b,14,1,f +3980,3069b,71,3,f +3980,3069b,72,1,f +3980,3069bpr0101,71,1,f +3980,3070b,71,1,t +3980,3070b,71,2,f +3980,3176,71,1,f +3980,32000,0,4,f +3980,32018,0,2,f +3980,32039,14,4,f +3980,32059,0,1,f +3980,32064b,2,4,f +3980,32310,0,1,f +3980,3626bpr0250,14,1,f +3980,3626bpr0433,14,1,f +3980,3660,71,1,f +3980,3673,71,1,t +3980,3673,71,2,f +3980,3705,0,5,f +3980,3707,0,2,f +3980,3710,72,2,f +3980,3710,14,3,f +3980,3713,71,1,t +3980,3713,71,4,f +3980,3747b,0,1,f +3980,3747b,71,2,f +3980,3794a,0,2,f +3980,3795,15,1,f +3980,3795,72,2,f +3980,3894,14,6,f +3980,4032a,4,1,f +3980,40339,0,2,f +3980,4070,19,2,f +3980,4085c,14,4,f +3980,4085c,4,4,f +3980,41531,14,2,f +3980,41747,14,1,f +3980,41747,71,1,f +3980,41748,14,1,f +3980,41748,71,1,f +3980,41767,72,1,f +3980,41767,14,1,f +3980,41768,14,1,f +3980,41768,72,1,f +3980,41769,71,2,f +3980,41769,15,1,f +3980,41770,71,2,f +3980,41770,15,1,f +3980,42022,72,2,f +3980,42022,14,2,f +3980,42023,71,2,f +3980,4274,71,3,f +3980,4274,71,1,t +3980,43093,1,4,f +3980,4360,0,1,f +3980,43719,14,2,f +3980,43722,14,1,f +3980,43722,71,1,f +3980,43722,0,1,f +3980,43723,0,1,f +3980,43723,71,1,f +3980,43723,14,1,f +3980,43857,0,2,f +3980,44294,71,1,f +3980,44301a,15,2,f +3980,44302a,15,2,f +3980,44567a,72,2,f +3980,44661,72,1,f +3980,44676,0,1,f +3980,44728,14,1,f +3980,44728,71,2,f +3980,44822,0,1,f +3980,4497,0,1,f +3980,4522,0,1,f +3980,45301,72,1,f +3980,45590,0,2,f +3980,45705pr0002,72,1,f +3980,4589,34,2,f +3980,4589,14,1,f +3980,46413,40,1,f +3980,47406,15,1,f +3980,47455,0,1,f +3980,48169,72,1,f +3980,48170,72,1,f +3980,48336,15,2,f +3980,4855,15,1,f +3980,4856a,14,2,f +3980,4871,15,1,f +3980,48723,72,1,f +3980,48729a,0,1,f +3980,48729a,0,1,t +3980,50304,71,1,f +3980,50305,71,1,f +3980,50373,71,1,f +3980,50950,0,4,f +3980,50955,72,1,f +3980,50956,72,1,f +3980,53451,15,10,f +3980,53451,15,1,t +3980,54200,47,2,f +3980,54200,15,8,f +3980,54200,0,4,f +3980,54383,0,1,f +3980,54383,72,1,f +3980,54384,72,1,f +3980,54384,0,1,f +3980,55236,288,2,f +3980,57028c01,71,1,f +3980,57796,0,1,f +3980,59275,0,4,f +3980,6019,71,2,f +3980,6019,0,2,f +3980,6041,0,2,f +3980,6111,14,2,f +3980,6141,36,1,t +3980,6141,36,1,f +3980,6239,72,3,f +3980,6256,82,1,f +3980,6541,0,2,f +3980,6541,14,2,f +3980,6558,0,4,f +3980,78c07,179,2,f +3980,970c00,0,2,f +3980,973pr1300c01,0,2,f +3982,3009,4,50,f +3985,2412a,0,1,f +3985,2432,0,1,f +3985,2441,14,1,f +3985,2446,15,1,f +3985,2447,41,1,f +3985,3020,4,1,f +3985,3020,14,1,f +3985,3021,4,1,f +3985,3022,4,1,f +3985,3023,0,1,f +3985,3068bp60,15,1,f +3985,3069b,4,1,f +3985,3298p54,15,1,f +3985,3623,4,2,f +3985,3626apr0001,14,1,f +3985,3641,0,4,f +3985,3710,4,1,f +3985,3829c01,4,1,f +3985,4286,15,2,f +3985,4624,15,4,f +3985,4865pb05,15,2,f +3985,970c00,1,1,f +3985,973c07,1,1,f +3986,3001,1,1,f +3986,3003,1,1,f +3986,3004,15,2,f +3986,3004,14,2,f +3986,3004,47,2,f +3986,3004,1,4,f +3986,3004p51,14,1,f +3986,3005,14,2,f +3986,3005,0,2,f +3986,3005,1,2,f +3986,3010,1,2,f +3986,3020,4,2,f +3986,3021,4,2,f +3986,3022,15,2,f +3986,3039,47,2,f +3986,3039,1,2,f +3986,3040b,1,2,f +3986,3062b,34,1,f +3986,3062b,36,1,f +3986,3137c01,0,2,f +3986,3641,0,4,f +3986,3660,1,2,f +3986,3679,7,1,f +3986,3680,4,1,f +3986,3710,15,2,f +3986,3795,4,2,f +3987,2420,7,2,f +3987,2420,4,4,f +3987,2695,7,4,f +3987,2696,0,4,f +3987,2711,0,1,f +3987,2712,7,2,f +3987,2780,0,14,f +3987,2815,0,1,f +3987,2825,7,4,f +3987,2838c01,7,1,f +3987,2847c01,7,1,f +3987,3023,4,4,f +3987,3023,7,4,f +3987,3040b,4,2,f +3987,3069b,7,2,f +3987,3460,4,4,f +3987,3482,7,2,f +3987,3483,0,2,f +3987,3647,7,4,f +3987,3648a,7,2,f +3987,3650a,7,2,f +3987,3651,7,2,f +3987,3665,4,2,f +3987,3666,4,2,f +3987,3666,7,2,f +3987,3673,7,12,f +3987,3700,4,6,f +3987,3700,7,4,f +3987,3701,4,6,f +3987,3701,7,3,f +3987,3702,4,2,f +3987,3702,7,2,f +3987,3703,4,2,f +3987,3703,7,2,f +3987,3705,0,3,f +3987,3706,0,4,f +3987,3707,0,2,f +3987,3708,0,2,f +3987,3709,7,2,f +3987,3709,4,2,f +3987,3710,4,4,f +3987,3710,7,4,f +3987,3713,7,10,f +3987,3737,0,4,f +3987,3738,4,2,f +3987,3743,7,1,f +3987,3749,7,5,f +3987,3795,4,2,f +3987,3894,7,2,f +3987,3894,4,4,f +3987,3895,7,2,f +3987,3895,4,4,f +3987,4019,7,1,f +3987,4143,7,2,f +3987,4185,7,3,f +3987,4261,7,2,f +3987,4265a,7,10,f +3987,4273b,7,2,f +3987,4274,7,4,f +3987,4275b,4,4,f +3987,4276b,4,4,f +3987,4442,7,4,f +3987,4477,4,3,f +3987,4519,0,3,f +3987,4716,0,1,f +3987,5306bc162,0,1,f +3987,71509,0,2,f +3987,rb00164,0,1,f +3988,2346,0,4,f +3988,2412b,1,3,f +3988,2417,2,1,f +3988,2423,2,7,f +3988,2458,1,2,f +3988,2489,6,1,f +3988,2526,15,1,f +3988,2625,7,2,f +3988,2626,7,2,f +3988,298c02,7,2,f +3988,30000,8,1,f +3988,3001,0,3,f +3988,3001,7,1,f +3988,3002,2,2,f +3988,3003,7,1,f +3988,3003,0,1,f +3988,3004,7,1,f +3988,3004,6,2,f +3988,3009,8,1,f +3988,30094,0,1,f +3988,30104,8,1,f +3988,30132,8,1,f +3988,30141,8,1,f +3988,30149,0,1,f +3988,30150,6,1,f +3988,30155,8,4,f +3988,30161pa1,47,1,f +3988,30165,0,2,f +3988,30167,6,1,f +3988,30172,15,1,f +3988,3020,1,2,f +3988,3020,8,1,f +3988,3020,7,2,f +3988,3021,14,1,f +3988,3021,0,2,f +3988,3022,1,2,f +3988,3023,15,2,f +3988,30236,8,7,f +3988,3031,15,1,f +3988,3035,15,2,f +3988,3035,1,1,f +3988,3039,7,2,f +3988,3040b,8,4,f +3988,3040b,6,2,f +3988,30456,8,1,f +3988,30460,8,1,f +3988,30461,8,1,f +3988,30462,484,1,f +3988,30462,7,1,f +3988,30463,6,1,f +3988,30464,2,1,f +3988,3062b,14,8,f +3988,3062b,1,10,f +3988,3068b,4,1,f +3988,3069b,6,4,f +3988,32000,7,2,f +3988,3298,1,1,f +3988,3622,8,1,f +3988,3623,0,2,f +3988,3626bpa7,14,1,f +3988,3626bpb0019,14,1,f +3988,3626bpb0109,14,1,f +3988,3633,7,1,f +3988,3660,7,2,f +3988,3700,1,6,f +3988,3829c01,1,1,f +3988,3832,0,2,f +3988,3832,1,1,f +3988,3899,1,1,f +3988,3941,14,1,f +3988,3941,6,1,f +3988,3956,7,1,f +3988,4006,0,1,f +3988,4032a,6,1,f +3988,4151a,0,1,f +3988,4162,7,2,f +3988,4162,1,2,f +3988,4201,2,1,f +3988,4204,2,1,f +3988,4286,1,4,f +3988,4460a,0,4,f +3988,4477,7,4,f +3988,4522,0,1,f +3988,4528,0,1,f +3988,4530,0,1,f +3988,4589,57,1,f +3988,4599a,7,1,f +3988,4625,7,1,f +3988,6028,6,1,f +3988,6041,0,1,f +3988,6112,0,2,f +3988,6232,1,3,f +3988,6249,4,2,f +3988,6564,0,2,f +3988,6565,0,2,f +3988,6636,15,2,f +3988,71155,0,2,f +3988,87695,15,1,t +3988,87695,15,1,f +3988,87696,15,1,t +3988,970c00,7,1,f +3988,970c00,0,1,f +3988,970x026,6,1,f +3988,973pa7c01,19,1,f +3988,973pb0042c01,7,1,f +3988,973pb0043c01,8,1,f +3990,2335p41,1,1,f +3990,2339,7,2,f +3990,2341,7,2,f +3990,2343,14,2,f +3990,2345,0,11,f +3990,2345p03,0,1,f +3990,2357,0,8,f +3990,2357,7,13,f +3990,2420,7,1,f +3990,2420,0,3,f +3990,2444,4,2,f +3990,2445,7,2,f +3990,2446,8,2,f +3990,2449,7,16,f +3990,2449,0,4,f +3990,2450,7,1,f +3990,2458,7,2,f +3990,2465,7,1,f +3990,2489,6,1,f +3990,2490pb02,4,1,f +3990,2490px2,1,1,f +3990,2525p40,14,1,f +3990,2540,7,2,f +3990,2552p06,2,1,f +3990,2570,8,1,f +3990,2586p4c,7,5,f +3990,2587,8,2,f +3990,2588,21,1,f +3990,2594,8,1,f +3990,2594,0,1,f +3990,3001,7,3,f +3990,3002,7,3,f +3990,3003,7,1,f +3990,3003,0,3,f +3990,3004,15,3,f +3990,3004,0,20,f +3990,3004,7,50,f +3990,3004,6,1,f +3990,3005,7,24,f +3990,3005,0,23,f +3990,3008,7,1,f +3990,3008,0,6,f +3990,3009,7,9,f +3990,3009,0,2,f +3990,3010,0,5,f +3990,3010,7,3,f +3990,3020,7,1,f +3990,3021,0,1,f +3990,3022,0,2,f +3990,3023,0,1,f +3990,3023,7,5,f +3990,3023,15,3,f +3990,3023,6,1,f +3990,3029,0,2,f +3990,3029,7,1,f +3990,3030,4,3,f +3990,3030,7,4,f +3990,3031,7,2,f +3990,3032,7,2,f +3990,3032,0,2,f +3990,3033,4,1,f +3990,3034,0,1,f +3990,3035,0,2,f +3990,3036,7,1,f +3990,3040b,7,8,f +3990,3040b,0,4,f +3990,3062b,0,5,f +3990,3063b,0,4,f +3990,3070b,0,1,f +3990,3176,7,1,f +3990,3307,0,1,f +3990,3307,7,2,f +3990,3308,0,1,f +3990,3308,7,1,f +3990,3315,0,2,f +3990,3455,7,1,f +3990,3455,0,1,f +3990,3460,7,1,f +3990,3622,7,4,f +3990,3622,0,9,f +3990,3623,7,3,f +3990,3623,0,3,f +3990,3626b,0,1,f +3990,3626bp35,14,1,f +3990,3626bp42,14,3,f +3990,3626bpr0001,14,6,f +3990,3626bpx120,14,1,f +3990,3659,7,4,f +3990,3660,7,19,f +3990,3660,0,1,f +3990,3665,7,12,f +3990,3666,7,2,f +3990,3666,0,1,f +3990,3676,0,1,f +3990,3676,7,4,f +3990,3700,7,2,f +3990,3700,0,1,f +3990,3710,0,5,f +3990,3710,7,7,f +3990,3749,7,1,f +3990,3794a,0,1,f +3990,3795,0,2,f +3990,3844,0,2,f +3990,3844,8,2,f +3990,3846p4c,7,4,f +3990,3847a,8,5,f +3990,3848,6,3,f +3990,3849,8,4,f +3990,3849,0,3,f +3990,3896,8,2,f +3990,3937,0,2,f +3990,3957a,0,1,f +3990,3959,0,3,f +3990,4032a,6,1,f +3990,4070,7,5,f +3990,4081b,0,3,f +3990,4085c,7,14,f +3990,4085c,0,2,f +3990,4151a,0,1,f +3990,4185,6,1,f +3990,4213,4,2,f +3990,4213,0,2,f +3990,4215a,0,2,f +3990,4274,7,1,f +3990,4315,7,2,f +3990,4444,0,8,f +3990,4444p03,14,2,f +3990,4444p04,0,2,f +3990,4460a,0,1,f +3990,4477,0,1,f +3990,4477,7,3,f +3990,4490,7,4,f +3990,4490,0,1,f +3990,4491b,1,1,f +3990,4491b,4,1,f +3990,4493c01pb02,0,1,f +3990,4493c01pb03,6,1,f +3990,4495a,15,1,f +3990,4495a,1,4,f +3990,4495a,4,4,f +3990,4497,6,4,f +3990,4498,6,4,f +3990,4499,6,4,f +3990,4503,0,1,f +3990,4503,8,1,f +3990,4505,6,1,f +3990,4524,4,1,f +3990,4524,0,1,f +3990,4589,46,3,f +3990,4623,0,2,f +3990,4625,0,2,f +3990,4738b,6,1,f +3990,4739b,6,1,f +3990,56823c30,0,1,f +3990,56823c75,0,1,f +3990,6020,8,1,f +3990,6046,8,1,f +3990,6056,7,4,f +3990,6066,7,4,f +3990,6141,14,4,f +3990,6141,14,1,t +3990,75998pr0007,15,2,f +3990,87685,4,3,t +3990,87685,14,1,f +3990,87685,1,1,t +3990,87685,15,1,f +3990,87686,4,3,t +3990,87686,1,1,t +3990,87686,14,1,f +3990,87686,15,1,f +3990,87687,14,1,f +3990,87687,4,3,f +3990,87687,15,1,f +3990,87687,1,1,f +3990,970x021,0,4,f +3990,970x026,7,1,f +3990,970x026,4,3,f +3990,970x026,1,2,f +3990,970x026,15,1,f +3990,973c09,15,1,f +3990,973p40c01,1,1,f +3990,973p40c01,0,1,f +3990,973p40c02,1,1,f +3990,973p40c03,4,1,f +3990,973p41c01,4,3,f +3990,973p41c02,4,3,f +3990,973p44c02,6,1,f +3991,3068a,7,14,f +3991,3068a,0,14,f +3991,3068a,15,14,f +3991,3068a,4,14,f +3991,3068a,1,14,f +3991,3068a,14,14,f +3991,3069a,0,6,f +3991,3069a,15,6,f +3991,3069a,7,6,f +3991,3069a,1,6,f +3991,3069a,14,6,f +3991,3069a,4,6,f +3991,3070a,7,6,f +3991,3070a,14,6,f +3991,3070a,4,6,f +3991,3070a,0,6,f +3991,3070a,1,6,f +3991,3070a,15,6,f +3992,11212,72,2,f +3992,11305,179,1,f +3992,11833,36,1,f +3992,11833,0,1,f +3992,14413,0,4,f +3992,15619,15,1,f +3992,15621,41,1,f +3992,15827,0,2,f +3992,15831,0,1,f +3992,2335,71,2,f +3992,2412b,36,2,f +3992,2431,4,1,f +3992,2456,72,2,f +3992,2540,71,2,f +3992,2653,71,2,f +3992,2780,0,9,f +3992,3003,72,1,f +3992,3004,72,1,f +3992,3005,0,6,f +3992,3010,0,6,f +3992,30173a,179,2,f +3992,3021,0,2,f +3992,3022,4,2,f +3992,3023,4,2,f +3992,3030,72,1,f +3992,3034,72,1,f +3992,3036,72,1,f +3992,30374,71,1,f +3992,30374,297,1,f +3992,30374,0,1,f +3992,3040b,0,2,f +3992,30526,72,1,f +3992,30608,19,1,f +3992,3065,36,2,f +3992,32013,0,2,f +3992,32018,72,2,f +3992,32054,0,1,f +3992,32062,4,1,f +3992,32073,71,2,f +3992,32123b,71,8,f +3992,32270,0,1,f +3992,3245c,71,4,f +3992,32531,0,2,f +3992,3298,71,2,f +3992,3460,71,1,f +3992,3623,85,6,f +3992,3626cpr0747,14,1,f +3992,3626cpr1282,0,1,f +3992,3626cpr1283,0,1,f +3992,3666,72,1,f +3992,3673,71,2,f +3992,3700,4,1,f +3992,3710,0,5,f +3992,3747b,0,2,f +3992,3794b,71,2,f +3992,3795,1,1,f +3992,3849,0,1,f +3992,4032a,85,4,f +3992,4150,72,2,f +3992,4150pr0012,72,5,f +3992,4162,0,1,f +3992,41678,72,1,f +3992,41854,85,2,f +3992,41879a,0,1,f +3992,4274,1,2,f +3992,4285b,72,1,f +3992,4286,0,2,f +3992,4287,0,2,f +3992,44375a,0,1,f +3992,44676,0,1,f +3992,44676,72,1,f +3992,44728,0,4,f +3992,4519,71,1,f +3992,53454,36,1,f +3992,53586,179,1,f +3992,53992,0,2,f +3992,54200,85,6,f +3992,54200,36,6,f +3992,55013,72,1,f +3992,56145,0,4,f +3992,57908,72,2,f +3992,58176,36,1,f +3992,59900,36,2,f +3992,60470a,0,1,f +3992,60475a,0,2,f +3992,60476,71,4,f +3992,60483,0,2,f +3992,6117,72,1,f +3992,61403,179,1,f +3992,61409,0,3,f +3992,6141,36,8,f +3992,61485,0,1,f +3992,62113,72,2,f +3992,63864,71,2,f +3992,64567,0,1,f +3992,64644,0,1,f +3992,6536,72,1,f +3992,6541,71,4,f +3992,6587,28,3,f +3992,6636,85,2,f +3992,6636,71,6,f +3992,85545,1,1,f +3992,85984,72,2,f +3992,87580,72,2,f +3992,87620,0,4,f +3992,89523,85,1,f +3992,92013,72,3,f +3992,93571,0,1,f +3992,970c00,15,1,f +3992,970c00pr0603,0,1,f +3992,973pr2577c01,15,1,f +3992,973pr2579c01,0,1,f +3992,973pr2584c01,0,1,f +3992,98137,179,2,f +3992,98139,179,1,f +3992,98141,179,1,f +3992,98341,179,1,f +3992,98347,148,4,f +3992,99780,72,1,f +3992,99781,71,3,f +3993,3001apb01,15,4,f +3993,3020,15,1,f +3993,3021,15,2,f +3993,3021,4,3,f +3993,3021,7,2,f +3993,3022,15,4,f +3993,3022,4,2,f +3993,3023,4,1,f +3993,3023,47,1,f +3993,3023,7,8,f +3993,3024,7,4,f +3993,3034,7,5,f +3993,3139,0,3,f +3993,3464,4,3,f +3993,3585,7,1,f +3993,3586,7,1,f +3993,3587pb04,15,1,f +3993,8,7,3,f +3994,11477,5,4,f +3994,11641,15,1,f +3994,11816pr0006,78,1,f +3994,11833,27,1,f +3994,14769pr1040,15,3,f +3994,15068,322,3,f +3994,15207,15,2,f +3994,15391,15,1,f +3994,15392,72,1,f +3994,15392,72,1,t +3994,15535,4,1,f +3994,15573,72,6,f +3994,15672,15,2,f +3994,15706,85,2,f +3994,18674,322,1,f +3994,23969,322,2,f +3994,2412b,70,3,f +3994,2454a,0,2,f +3994,2654,19,1,f +3994,26749,9999,1,t +3994,2817,0,1,f +3994,3004,19,1,f +3994,3005,15,6,f +3994,3020,85,2,f +3994,3020,19,1,f +3994,3020,322,1,f +3994,3022,71,1,f +3994,3022,85,1,f +3994,3023,15,3,f +3994,3023,19,5,f +3994,30237b,15,3,f +3994,3030,27,2,f +3994,3032,27,1,f +3994,3034,27,1,f +3994,30363,15,1,f +3994,30367c,322,1,f +3994,3068b,14,1,f +3994,3068b,15,2,f +3994,3069b,14,2,f +3994,3069b,5,2,f +3994,3070b0167,15,1,t +3994,3070b0167,15,1,f +3994,32013,4,7,f +3994,32034,71,1,f +3994,32062,0,3,f +3994,32064a,71,1,f +3994,32123b,14,1,t +3994,32123b,14,2,f +3994,3245b,19,1,f +3994,3298,71,1,f +3994,33320,297,1,f +3994,3460,0,1,f +3994,3622,5,2,f +3994,3622,0,1,f +3994,3673,71,1,t +3994,3673,71,6,f +3994,3700,0,2,f +3994,3710,0,2,f +3994,3832,15,1,f +3994,3900,15,1,f +3994,4274,1,3,f +3994,4274,1,1,t +3994,4519,14,1,f +3994,48336,0,3,f +3994,60470a,15,3,f +3994,60581,0,2,f +3994,6141,41,1,t +3994,6141,45,8,f +3994,6141,45,1,t +3994,6141,42,10,f +3994,6141,4,1,t +3994,6141,41,4,f +3994,6141,4,3,f +3994,6141,42,1,t +3994,64276,72,1,f +3994,6541,0,7,f +3994,72824,25,1,f +3994,85080,19,4,f +3994,87079,15,1,f +3994,87079,19,1,f +3994,87083,72,1,f +3994,87994,70,1,t +3994,87994,70,1,f +3994,88072,0,2,f +3994,92257,320,1,f +3994,92456pr0108c01,78,1,f +3994,92690,297,1,f +3994,92820pr0012c01,212,1,f +3994,93273,322,2,f +3994,98138,15,2,f +3994,98138,15,1,t +3995,2335,15,3,f +3995,2412b,15,1,f +3995,2412b,80,1,f +3995,2431,15,2,f +3995,2431,14,1,f +3995,2431,4,1,f +3995,2436,14,3,f +3995,2444,1,5,f +3995,2540,1,1,f +3995,2540,0,1,f +3995,2555,15,6,f +3995,2780,0,1,t +3995,2780,0,15,f +3995,3010,14,2,f +3995,3020,1,4,f +3995,3020,15,1,f +3995,3020,0,1,f +3995,3020,4,1,f +3995,3020,14,1,f +3995,3021,4,1,f +3995,3021,15,1,f +3995,3022,4,1,f +3995,3023,0,4,f +3995,3023,4,1,f +3995,3023,14,2,f +3995,30259,15,1,f +3995,3031,0,1,f +3995,3031,4,1,f +3995,3034,1,2,f +3995,3062b,71,1,f +3995,3068b,1,2,f +3995,3068b,71,1,f +3995,3069b,14,1,f +3995,3069b,1,1,f +3995,32028,14,2,f +3995,32073,71,2,f +3995,32316,1,1,f +3995,32316,71,3,f +3995,32348,71,1,f +3995,32523,71,2,f +3995,32524,71,2,f +3995,3710,14,2,f +3995,3788,14,1,f +3995,3795,14,1,f +3995,3795,0,1,f +3995,3839b,0,1,f +3995,4162,1,2,f +3995,4274,71,1,t +3995,4274,71,4,f +3995,43093,1,6,f +3995,43857,71,1,f +3995,44674,14,1,f +3995,45677,0,1,f +3995,48336,0,1,f +3995,48336,71,2,f +3995,50944pr0001,0,8,f +3995,50947,4,4,f +3995,50949,0,3,f +3995,50950,0,6,f +3995,50950,4,2,f +3995,50951,0,6,f +3995,51011,0,2,f +3995,54200,14,1,t +3995,54200,15,1,t +3995,54200,15,2,f +3995,54200,14,4,f +3995,59443,71,4,f +3995,60470a,0,1,f +3995,6141,80,2,f +3995,6141,36,2,f +3995,6141,46,6,f +3995,6141,46,2,t +3995,6141,36,1,t +3995,6157,0,2,f +3995,6157,72,2,f +3995,63965,15,2,f +3995,63965,0,2,f +3995,64700,4,1,f +3995,86501,72,1,f +3996,10288,308,1,f +3996,15339,148,1,f +3996,15341,297,2,f +3996,15343,297,2,f +3996,15349,297,1,f +3996,15353,27,1,f +3996,15354,25,1,f +3996,15355,1,1,f +3996,15358pat0003,36,3,f +3996,15391,0,1,f +3996,15392,72,1,t +3996,15392,72,1,f +3996,15976,0,2,f +3996,2780,0,2,f +3996,30374,42,2,f +3996,32002,19,1,t +3996,32002,19,1,f +3996,3626b,27,1,f +3996,48729b,0,2,f +3996,48729b,0,1,t +3996,53989,148,4,f +3996,60115,0,1,f +3996,6117,297,2,f +3996,6141,42,1,t +3996,6141,42,1,f +3996,90609,0,2,f +3996,90611,72,2,f +3996,90612,0,1,f +3996,90639pr0030,179,1,f +3996,90640,148,1,f +3996,90640,297,4,f +3996,92222,148,2,f +3996,98138pr0019,15,1,t +3996,98138pr0019,15,1,f +3996,98577,72,1,f +3996,98590,0,1,f +3997,3004,19,1,f +3997,3005,182,1,f +3997,3005,33,1,f +3997,30137,70,2,f +3997,30238,0,1,f +3997,30374,70,1,f +3997,3062b,46,1,f +3997,3062b,34,1,f +3997,3069bpr0055,15,1,f +3997,3626bpr0703,78,1,f +3997,3795,70,3,f +3997,40233,0,1,f +3997,4865a,19,4,f +3997,53451,15,1,t +3997,53451,15,1,f +3997,59900,36,1,f +3997,6141,297,9,f +3997,6141,297,1,t +3997,6231,19,2,f +3997,970c00,0,1,f +3997,973pr1671c01,72,1,f +3999,122c01,7,6,f +3999,3004,7,5,f +3999,3004p90,7,2,f +3999,3005,7,2,f +3999,3010,7,3,f +3999,3021,7,1,f +3999,3022,7,3,f +3999,3023,7,5,f +3999,3024,34,2,f +3999,3024,36,6,f +3999,3028,7,1,f +3999,3034,7,2,f +3999,3036,7,1,f +3999,3062b,34,2,f +3999,3062b,36,2,f +3999,3062b,7,1,f +3999,3065,34,4,f +3999,3066,34,2,f +3999,3069b,7,11,f +3999,3070b,7,4,f +3999,3298p90,7,2,f +3999,3612,7,5,f +3999,3613,7,1,f +3999,3614b,7,1,f +3999,3626apr0001,14,2,f +3999,3641,0,12,f +3999,3666,7,4,f +3999,3710,7,6,f +3999,3794a,7,2,f +3999,3829c01,7,1,f +3999,3830,7,4,f +3999,3831,7,4,f +3999,3838,4,1,f +3999,3838,15,1,f +3999,3839b,7,2,f +3999,3842a,4,1,f +3999,3842a,15,1,f +3999,3939,34,1,f +3999,3940a,7,6,f +3999,3957a,7,1,f +3999,3959,7,3,f +3999,3960,7,1,f +3999,3962a,0,1,f +3999,4006,0,1,f +3999,4070,7,2,f +3999,4085a,7,2,f +3999,4089,7,1,f +3999,792c02,7,1,f +3999,970c00,15,1,f +3999,970c00,4,1,f +3999,973p90c02,4,1,f +3999,973p90c05,15,1,f +4000,3704,0,2,f +4000,3705,0,6,f +4000,3706,0,6,f +4000,3707,0,6,f +4000,3708,0,6,f +4000,3737,0,6,f +4001,2412b,71,2,f +4001,2431,1,1,f +4001,2436,1,3,f +4001,2555,15,2,f +4001,3010,1,2,f +4001,3020,1,3,f +4001,3020,0,1,f +4001,3031,1,1,f +4001,3068b,71,1,f +4001,3710,71,2,f +4001,3788,1,1,f +4001,3795,71,1,f +4001,44674,1,1,f +4001,48336,1,2,f +4001,50944pr0001,0,4,f +4001,50951,0,4,f +4001,54200,36,1,t +4001,54200,1,1,t +4001,54200,71,1,t +4001,54200,71,2,f +4001,54200,36,2,f +4001,54200,1,2,f +4001,60470a,0,1,f +4001,6141,46,1,t +4001,6141,46,2,f +4001,6141,0,1,t +4001,6141,0,2,f +4001,6157,0,2,f +4001,88930,0,2,f +4003,3626cpr0863,19,1,f +4003,95221pr0001,0,1,f +4003,970c00pb119,70,1,f +4003,973pr1876c01,308,1,f +4004,3626bpr0895,15,1,f +4004,3626bpr1021,14,1,f +4004,4530,0,1,f +4004,88646,0,1,f +4004,970c00pr0375,70,1,f +4004,973pr2116c01,288,1,f +4004,99251,15,1,f +4005,2555,0,1,f +4005,30136,308,2,f +4005,3020,70,1,f +4005,4528,0,1,f +4005,4589,80,1,f +4005,4589,34,1,f +4005,6019,0,1,f +4005,6141,297,2,f +4005,6141,36,1,t +4005,6141,297,1,t +4005,6141,36,1,f +4005,64647,57,1,t +4005,64647,57,1,f +4006,10202,71,1,f +4006,11153,14,4,f +4006,11153,0,2,f +4006,11211,71,4,f +4006,11213,71,1,f +4006,11303,4,1,f +4006,12825,72,1,f +4006,13547,0,8,f +4006,14045,0,1,f +4006,14045,0,1,t +4006,15207,15,4,f +4006,15207,71,1,f +4006,15210,15,1,f +4006,2343,47,2,f +4006,2412b,70,2,f +4006,2412b,0,8,f +4006,2412b,72,4,f +4006,2412b,14,2,f +4006,2412b,14,1,t +4006,2412b,15,1,f +4006,2431,25,3,f +4006,2431,71,2,f +4006,2431,4,1,f +4006,2432,14,2,f +4006,2444,0,1,f +4006,2446,15,1,f +4006,2446,1,1,f +4006,2447,40,1,t +4006,2447,47,1,t +4006,2447,40,1,f +4006,2447,47,1,f +4006,2456,14,1,f +4006,2456,15,2,f +4006,2460,15,1,f +4006,2465,71,1,f +4006,2496,0,2,f +4006,2498,1,2,f +4006,2572,41,2,f +4006,2578a,2,1,f +4006,2584,0,1,f +4006,2585,71,1,f +4006,2654,71,1,f +4006,2877,0,5,f +4006,2877,72,5,f +4006,3001,72,2,f +4006,3001,0,2,f +4006,3001,71,5,f +4006,3003,72,1,f +4006,3003,14,1,f +4006,3003,27,1,f +4006,3004,71,1,f +4006,3004,25,1,f +4006,3004,15,2,f +4006,3004,4,2,f +4006,3004,14,2,f +4006,3005,15,1,f +4006,3005,0,2,f +4006,3005,27,22,f +4006,3008,4,1,f +4006,3009,27,15,f +4006,3009,0,1,f +4006,3010,0,2,f +4006,3010,71,2,f +4006,3010,15,2,f +4006,3010,1,1,f +4006,30145,15,2,f +4006,3020,1,1,f +4006,3020,2,2,f +4006,3020,14,1,f +4006,3021,15,2,f +4006,3021,25,1,f +4006,3022,71,2,f +4006,3022,15,2,f +4006,3022,0,5,f +4006,3023,182,6,f +4006,3023,2,4,f +4006,3023,72,5,f +4006,3023,0,11,f +4006,3023,47,2,f +4006,3024,46,1,t +4006,3024,182,2,f +4006,3024,4,2,f +4006,3024,4,1,t +4006,3024,46,3,f +4006,3024,47,4,f +4006,3028,72,1,f +4006,3031,19,1,f +4006,3031,1,2,f +4006,3032,4,2,f +4006,3032,0,4,f +4006,3034,71,2,f +4006,3034,14,1,f +4006,3034,15,2,f +4006,30350b,41,1,f +4006,3036,4,3,f +4006,3037,71,1,f +4006,3038,0,3,f +4006,3039,72,4,f +4006,30395,72,1,f +4006,3040bpr0003,71,1,f +4006,30414,15,4,f +4006,30414,14,5,f +4006,3045,72,4,f +4006,30503,72,1,f +4006,30562,41,1,f +4006,3062b,4,1,f +4006,3062b,47,7,f +4006,3068b,28,1,f +4006,3068b,2,1,f +4006,3068b,15,2,f +4006,3068b,25,12,f +4006,3068b,71,2,f +4006,3068bpr0136,72,1,f +4006,3068bpr0137,15,1,f +4006,3069b,4,3,f +4006,3069b,182,2,f +4006,3069b,0,6,f +4006,3069b,14,2,f +4006,3069b,25,3,f +4006,3069b,15,2,f +4006,3069b,36,2,f +4006,3069bpr0030,15,1,f +4006,3069bpr0030,72,1,f +4006,3070b,25,2,f +4006,3070b,0,1,t +4006,3070b,25,1,t +4006,3070b,0,1,f +4006,3185,15,5,f +4006,32028,72,4,f +4006,32028,0,4,f +4006,32028,14,2,f +4006,32062,4,2,f +4006,32064b,72,2,f +4006,32278,0,1,f +4006,32333,71,2,f +4006,3245c,15,1,f +4006,3297,15,6,f +4006,3297,0,4,f +4006,3298,0,1,f +4006,3298,15,2,f +4006,33320,72,4,f +4006,3460,72,3,f +4006,3460,14,3,f +4006,3460,15,2,f +4006,3622,4,1,f +4006,3622,15,2,f +4006,3623,15,2,f +4006,3623,72,9,f +4006,3624,0,1,f +4006,3626bpr0386,14,1,f +4006,3626c,71,1,f +4006,3626cpr0388,14,1,f +4006,3626cpr0389,14,1,f +4006,3626cpr0499,14,1,f +4006,3626cpr0677,14,1,f +4006,3626cpr0892,14,1,f +4006,3626cpr0893,14,1,f +4006,3626cpr0955,14,1,f +4006,3633,72,5,f +4006,3660,15,1,f +4006,3660,0,6,f +4006,3660,14,2,f +4006,3665,4,6,f +4006,3666,72,3,f +4006,3666,1,4,f +4006,3666,27,2,f +4006,3666,0,4,f +4006,3673,71,1,t +4006,3673,71,6,f +4006,3679,71,1,f +4006,3680,4,1,f +4006,3700,1,1,f +4006,3701,14,2,f +4006,3706,0,1,f +4006,3709,72,1,f +4006,3710,71,4,f +4006,3710,0,3,f +4006,3710,72,2,f +4006,3710,1,1,f +4006,3731,71,1,f +4006,3738,72,2,f +4006,3741,2,2,f +4006,3741,2,1,t +4006,3742,4,2,t +4006,3742,4,6,f +4006,3747b,15,1,f +4006,3794b,72,2,f +4006,3795,72,1,f +4006,3795,4,5,f +4006,3821,14,1,f +4006,3822,14,1,f +4006,3823,47,2,f +4006,3829c01,15,1,f +4006,3829c01,1,1,f +4006,3829c01,14,1,f +4006,3830,0,4,f +4006,3831,0,4,f +4006,3832,14,2,f +4006,3832,1,3,f +4006,3833,4,1,f +4006,3844,71,1,f +4006,3846,71,1,f +4006,3894,1,2,f +4006,3895,71,2,f +4006,3898,15,1,f +4006,3899,4,1,f +4006,3937,71,1,f +4006,3957b,15,2,f +4006,3957b,15,1,t +4006,3957b,71,4,f +4006,3958,72,2,f +4006,3960p01,15,1,f +4006,3962b,0,1,f +4006,4032a,72,1,f +4006,4079,1,4,f +4006,4079,15,8,f +4006,4079,14,1,f +4006,4081b,72,2,f +4006,4150,71,1,f +4006,4150p02,14,3,f +4006,4150pr0022,71,2,f +4006,41539,72,2,f +4006,4162,14,2,f +4006,4162,15,2,f +4006,4162,71,8,f +4006,4182,0,2,f +4006,4183,40,2,f +4006,41854,72,1,f +4006,41879a,1,1,f +4006,42022,14,2,f +4006,42446,71,1,f +4006,42446,71,1,t +4006,42511,85,1,f +4006,42610,71,2,f +4006,4274,1,2,f +4006,4274,1,1,t +4006,44301a,0,2,f +4006,44302a,0,2,f +4006,44728,72,2,f +4006,4477,72,1,f +4006,4477,0,6,f +4006,4485,27,1,f +4006,4485,4,1,f +4006,4488,71,4,f +4006,4495b,4,3,f +4006,4495b,2,3,f +4006,4510,0,2,f +4006,4533,41,1,f +4006,4533,72,3,f +4006,4623,4,2,f +4006,46303,321,1,f +4006,46667,72,1,f +4006,4697b,71,4,f +4006,4697b,71,2,t +4006,4719,322,1,f +4006,4719,4,1,f +4006,4740,72,1,f +4006,4740,2,1,f +4006,47457,4,1,f +4006,47457,71,2,f +4006,47720,0,1,f +4006,47905,4,1,f +4006,48336,71,1,f +4006,50745,4,4,f +4006,50859b,0,2,f +4006,50860,27,1,f +4006,50861,0,4,f +4006,50862,71,4,f +4006,50950,4,4,f +4006,51011,0,2,f +4006,52031,4,2,f +4006,52107,0,2,f +4006,54200,4,2,f +4006,54200,47,1,t +4006,54200,4,1,t +4006,54200,47,2,f +4006,55013,72,1,f +4006,55981,14,6,f +4006,56823c100,0,1,f +4006,56890,0,2,f +4006,57779,14,1,f +4006,57895,41,9,f +4006,58090,0,6,f +4006,58176,182,2,f +4006,58846,15,1,f +4006,6003,72,1,f +4006,6014b,71,6,f +4006,6019,0,2,f +4006,60474,1,2,f +4006,60475b,0,4,f +4006,60478,15,2,f +4006,60478,72,3,f +4006,60478,0,2,f +4006,60479,15,4,f +4006,60479,14,2,f +4006,60581,40,8,f +4006,60592,4,2,f +4006,60596,15,2,f +4006,60596,0,8,f +4006,60616a,41,1,f +4006,6079,15,1,f +4006,6081,71,1,f +4006,6091,14,4,f +4006,6111,0,3,f +4006,6134,0,1,f +4006,61409,0,2,f +4006,6141,71,3,t +4006,6141,71,10,f +4006,6141,182,1,t +4006,6141,4,2,f +4006,6141,4,1,t +4006,6141,0,1,f +4006,6141,0,1,t +4006,6141,182,4,f +4006,61485,15,1,f +4006,6157,0,1,f +4006,6177,71,1,f +4006,6179,72,2,f +4006,6179,14,2,f +4006,6180,15,1,f +4006,6191,0,1,f +4006,6231,71,4,f +4006,6232,4,1,f +4006,6249,72,1,f +4006,6256,1,1,f +4006,6266,0,3,f +4006,6266,0,1,t +4006,62810,308,1,f +4006,63082,0,1,f +4006,63864,15,6,f +4006,63864,14,3,f +4006,63864,0,4,f +4006,63965,71,1,t +4006,63965,71,1,f +4006,64453,40,1,f +4006,64644,0,4,f +4006,64648,179,1,f +4006,6587,28,1,f +4006,6636,14,1,f +4006,6636,4,4,f +4006,6636,71,1,f +4006,74698,0,1,f +4006,76764,179,1,t +4006,76764,179,1,f +4006,76766,1,2,f +4006,85941,41,4,f +4006,85974,484,1,f +4006,85983pr02,320,1,f +4006,85984,2,1,f +4006,85984,4,2,f +4006,85984,72,4,f +4006,86035,27,1,f +4006,86035,25,1,f +4006,87079,15,1,f +4006,87079,4,1,f +4006,87079,71,16,f +4006,87081,72,1,f +4006,87083,72,1,f +4006,87087,15,2,f +4006,87087,4,3,f +4006,87544,40,2,f +4006,87580,0,10,f +4006,87580,72,6,f +4006,87609,4,1,f +4006,87617,14,2,f +4006,87618,71,2,f +4006,87697,0,4,f +4006,88292,15,4,f +4006,91405,72,1,f +4006,91988,71,1,f +4006,92280,71,2,f +4006,92410,15,4,f +4006,92438,71,2,f +4006,92438,72,1,f +4006,92586pr0001,84,1,f +4006,92593,71,5,f +4006,92593,4,4,f +4006,92851,47,4,f +4006,92907,0,1,f +4006,92926,2,1,f +4006,92926,72,1,f +4006,92947,71,1,f +4006,92947,15,4,f +4006,92950,0,1,f +4006,93160,15,1,f +4006,93160,15,1,t +4006,95188,15,1,f +4006,96874,25,1,t +4006,970c00,15,1,f +4006,970c00,71,2,f +4006,970c00,72,1,f +4006,970c00,2,1,f +4006,970c00,0,1,f +4006,970c00,1,1,f +4006,970x199,25,1,f +4006,973c47,71,1,f +4006,973pr1156c01,1,1,f +4006,973pr1164c01,272,1,f +4006,973pr1182c01,25,1,f +4006,973pr1192c01,0,1,f +4006,973pr1196c01,15,1,f +4006,973pr1244c01,73,1,f +4006,973pr1446c01,4,1,f +4006,973pr1573c01,15,1,f +4006,973pr1801c01,25,1,f +4006,973pr2001c01,85,1,f +4006,98138,46,2,t +4006,98138,46,3,f +4006,98549,71,1,f +4006,99781,71,2,f +4007,2419,15,1,f +4007,2431,14,1,f +4007,2449,0,1,f +4007,2450,15,2,f +4007,2540,15,2,f +4007,2555,14,3,f +4007,2780,0,1,t +4007,2780,0,1,f +4007,30173a,0,2,f +4007,3021,15,1,f +4007,3022,14,2,f +4007,3023,15,5,f +4007,30414,0,1,f +4007,30503,288,2,f +4007,3062b,42,1,f +4007,3062b,57,1,f +4007,32013,15,1,f +4007,32062,4,7,f +4007,32064b,72,4,f +4007,32174,288,4,f +4007,32192,72,4,f +4007,32475,72,2,f +4007,3460,15,1,f +4007,3626bpr0463,14,1,f +4007,3648b,71,2,f +4007,3660,15,1,f +4007,3665,0,1,f +4007,3705,0,1,f +4007,3709,15,2,f +4007,3710,14,1,f +4007,3941,15,1,f +4007,3956,71,1,f +4007,4006,0,1,f +4007,43710,288,1,f +4007,43711,288,1,f +4007,44375a,288,1,f +4007,4589,14,3,f +4007,47457,135,1,f +4007,47753,288,3,f +4007,48336,71,1,f +4007,53982,85,1,f +4007,53989,135,3,f +4007,57908,72,1,f +4007,57909a,72,4,f +4007,58624,14,1,f +4007,6019,71,2,f +4007,6070,40,1,f +4007,6538b,14,1,f +4007,6541,0,1,f +4007,6587,72,2,f +4007,8100stk01,9999,1,t +4007,970c00,288,1,f +4007,973pr1303c01,288,1,f +4008,10830pat0001,0,1,f +4008,12825,71,1,f +4008,14210,0,1,f +4008,2357,72,8,f +4008,2412b,70,29,f +4008,2420,70,6,f +4008,2420,0,4,f +4008,2431,308,4,f +4008,2431,72,3,f +4008,2445,70,1,f +4008,2450,70,8,f +4008,2456,72,3,f +4008,2458,71,6,f +4008,2462,72,12,f +4008,2489,70,1,f +4008,2530,72,3,f +4008,2530,72,1,t +4008,2544,0,1,f +4008,2551,0,2,f +4008,2562,70,1,f +4008,2566,0,2,f +4008,2653,71,4,f +4008,2654,4,1,f +4008,2736,71,1,f +4008,2780,0,4,f +4008,2780,0,2,t +4008,2817,71,1,f +4008,30000,71,2,f +4008,3001,72,2,f +4008,3002,1,2,f +4008,3003,70,2,f +4008,3004,72,35,f +4008,3005,72,30,f +4008,30055,0,1,f +4008,3006,70,1,f +4008,3007,71,1,f +4008,3008,4,1,f +4008,3009,72,12,f +4008,3009,15,2,f +4008,3010,72,12,f +4008,30136,308,6,f +4008,30139,70,1,f +4008,30154,72,1,f +4008,30157,70,1,f +4008,3020,70,13,f +4008,3021,70,4,f +4008,3022,72,3,f +4008,3023,70,7,f +4008,3023,46,1,f +4008,3023,28,8,f +4008,30236,0,1,f +4008,30237a,0,4,f +4008,30237a,70,1,f +4008,3027,28,2,f +4008,3028,28,1,f +4008,3030,72,2,f +4008,3030,70,1,f +4008,3031,70,4,f +4008,3032,70,5,f +4008,3033,70,1,f +4008,3034,0,2,f +4008,3036,28,1,f +4008,30374,70,1,f +4008,3039,72,14,f +4008,3040b,72,15,f +4008,30414,19,7,f +4008,3046a,72,4,f +4008,30565,70,2,f +4008,30565,28,6,f +4008,3062b,71,8,f +4008,3062b,0,4,f +4008,3065,46,1,f +4008,30663,0,4,f +4008,3068b,19,3,f +4008,3069b,72,16,f +4008,3069b,308,4,f +4008,3070b,0,14,f +4008,3070b,70,8,f +4008,3070b,70,2,t +4008,3070b,0,2,t +4008,3070bpr0058,272,1,t +4008,3070bpr0058,272,1,f +4008,32028,0,4,f +4008,32530,72,4,f +4008,3307,72,4,f +4008,3308,72,2,f +4008,3460,72,2,f +4008,3460,0,1,f +4008,3622,14,2,f +4008,3622,72,10,f +4008,3623,72,2,f +4008,3623,19,6,f +4008,3626bpr0789,78,1,f +4008,3626bpr0842,70,1,f +4008,3626bpr0848,78,1,f +4008,3626bpr0849,78,1,f +4008,3626bpr0850,78,1,f +4008,3626bpr0851,78,1,f +4008,3660,70,4,f +4008,3665,0,12,f +4008,3666,70,1,f +4008,3666,72,1,f +4008,3678b,70,4,f +4008,3685,0,4,f +4008,3700,0,4,f +4008,3700,70,6,f +4008,3701,71,7,f +4008,3705,0,4,f +4008,3710,70,19,f +4008,3710,0,7,f +4008,3710,19,4,f +4008,3794b,72,4,f +4008,3795,70,11,f +4008,3837,72,1,f +4008,3841,72,1,f +4008,3937,71,4,f +4008,3958,70,4,f +4008,3958,28,1,f +4008,3960,0,1,f +4008,4032a,484,7,f +4008,4150,0,1,f +4008,4162,70,4,f +4008,4274,1,2,f +4008,4274,71,1,t +4008,4274,1,1,t +4008,4274,71,1,f +4008,4460b,72,6,f +4008,44728,72,2,f +4008,4477,70,1,f +4008,4510,0,2,f +4008,4589,70,9,f +4008,4589,297,1,f +4008,4643132,9999,1,t +4008,4644165,9999,1,t +4008,4740,0,2,f +4008,4742,0,1,f +4008,50950,0,2,f +4008,53585,0,1,f +4008,54200,70,2,f +4008,54200,70,1,t +4008,55013,72,1,f +4008,55236,288,2,f +4008,59900,182,2,f +4008,60478,0,5,f +4008,60481,71,4,f +4008,60596,0,1,f +4008,60623,0,1,f +4008,60808,72,7,f +4008,6091,0,14,f +4008,6106,70,2,f +4008,6108,71,1,f +4008,6111,72,4,f +4008,6134,4,4,f +4008,6141,19,15,f +4008,6141,19,5,t +4008,61780,70,1,f +4008,6232,19,2,f +4008,62462,0,2,f +4008,62930,47,1,f +4008,63864,0,4,f +4008,64644,0,3,f +4008,64647,57,2,t +4008,64647,57,4,f +4008,6587,28,1,f +4008,71155,0,2,f +4008,85080,0,4,f +4008,85974,226,1,f +4008,85984,72,2,f +4008,87079,19,6,f +4008,87081,0,1,f +4008,87421,72,4,f +4008,87585,70,1,t +4008,87585,70,4,f +4008,87620,72,20,f +4008,88292,72,2,f +4008,90258,72,4,f +4008,92950,0,4,f +4008,95220pr0001,0,1,f +4008,95225,308,1,f +4008,95226,308,1,f +4008,95228,40,2,f +4008,95343,70,2,f +4008,95344,28,1,t +4008,95344,28,2,f +4008,95348,308,2,f +4008,95351pr0001,379,1,f +4008,95351pr0002,378,1,f +4008,95354,0,1,f +4008,96904,334,1,t +4008,96904,334,1,f +4008,96905,334,1,f +4008,96905,334,1,t +4008,96906,334,1,t +4008,96906,334,1,f +4008,96907,334,1,t +4008,96907,334,1,f +4008,970c00,0,1,f +4008,970c00,72,1,f +4008,970c00pr0217,70,1,f +4008,970c00pr0258,308,1,f +4008,973pr1770c01,308,1,f +4008,973pr1840c01,70,1,f +4008,973pr1846c01,78,1,f +4008,973pr1847c01,78,1,f +4008,973pr1848c01,70,1,f +4008,973pr1849c01,0,1,f +4008,99563,334,1,f +4008,99563,334,1,t +4009,1131,0,1,f +4009,3048c,0,2,f +4009,3049b,0,6,f +4009,30603,0,2,f +4009,3300,0,6,f +4009,43093,1,1,f +4009,4740,47,1,f +4009,4740,47,1,t +4009,47430,0,2,f +4009,47431,0,2,f +4009,47432,0,2,f +4009,47452,72,2,f +4009,47454,72,2,f +4009,47455,4,10,f +4009,47461,4,1,f +4009,47474,72,1,f +4009,47477c01pb04,0,1,f +4009,47501,0,4,f +4009,48141,89,1,f +4009,bb153pb05,320,1,f +4009,kkc37,89,1,f +4009,kkc40,89,1,f +4009,kkc42,89,1,f +4010,3004,2,3,f +4010,3004,70,1,f +4010,3010,2,5,f +4010,3460,2,2,f +4010,3666,2,4,f +4010,3700,2,8,f +4010,3710,2,2,f +4010,4477,2,2,f +4010,4589,15,3,f +4010,6141,36,5,f +4010,6141,33,3,f +4010,6141,46,5,f +4010,6141,15,3,f +4012,3037,4,30,f +4012,3038,4,2,f +4012,3039,4,9,f +4012,3040a,4,2,f +4012,3041,4,6,f +4012,3043,4,2,f +4012,3046a,4,6,f +4012,3049b,4,1,f +4013,11946,25,2,f +4013,11947,25,2,f +4013,12799,72,1,f +4013,15457,72,1,f +4013,18352,72,1,f +4013,2780,0,1,t +4013,2780,0,22,f +4013,32013,0,2,f +4013,32054,0,5,f +4013,32062,4,4,f +4013,32073,71,1,f +4013,32140,25,2,f +4013,32202,0,2,f +4013,32271,25,3,f +4013,32316,0,2,f +4013,32524,71,1,f +4013,32524,0,1,f +4013,32525,71,2,f +4013,32526,0,2,f +4013,32556,19,3,f +4013,32557,0,2,f +4013,3708,0,2,f +4013,3713,71,12,f +4013,3713,71,1,t +4013,41678,0,1,f +4013,43093,1,8,f +4013,43857,0,3,f +4013,4519,71,5,f +4013,55978,0,4,f +4013,56145,0,4,f +4013,60483,25,4,f +4013,60484,0,1,f +4013,64391,0,2,f +4013,64683,0,2,f +4013,6536,71,4,f +4013,6558,1,13,f +4013,6632,72,2,f +4013,78c06,179,2,f +4013,87080,0,2,f +4013,87082,71,2,f +4013,87086,0,2,f +4014,2377,15,2,f +4014,2412b,0,3,f +4014,2415,7,2,f +4014,2420,14,2,f +4014,2431,15,3,f +4014,2432,15,2,f +4014,2446,15,1,f +4014,2447,41,1,f +4014,2460,0,2,f +4014,2479,7,2,f +4014,2483,41,1,f +4014,298c02,14,2,f +4014,3004,0,1,f +4014,3004,15,1,f +4014,3020,0,1,f +4014,3020,15,1,f +4014,3020,4,1,f +4014,3021,0,1,f +4014,3022,14,1,f +4014,3022,4,2,f +4014,3022,0,1,f +4014,3023,0,1,f +4014,3023,7,1,f +4014,3023,15,3,f +4014,3023,14,5,f +4014,3023,4,3,f +4014,3034,14,2,f +4014,3034,4,2,f +4014,3035,15,1,f +4014,3035,4,2,f +4014,3037,15,2,f +4014,3038,15,2,f +4014,3039,4,1,f +4014,3039p34,15,1,f +4014,3040b,15,2,f +4014,3044c,4,4,f +4014,3048c,4,5,f +4014,3068b,4,2,f +4014,3069b,7,1,f +4014,3069b,15,1,f +4014,3069bp25,15,1,f +4014,3070b,4,2,f +4014,3070b,14,2,f +4014,3139,0,6,f +4014,3298,4,1,f +4014,3460,14,1,f +4014,3460,15,1,f +4014,3460,4,4,f +4014,3464,47,2,f +4014,3475b,0,2,f +4014,3623,4,2,f +4014,3623,14,2,f +4014,3626apr0001,14,3,f +4014,3660,0,1,f +4014,3660,15,4,f +4014,3666,15,1,f +4014,3666,14,1,f +4014,3679,7,1,f +4014,3680,4,2,f +4014,3710,4,1,f +4014,3710,14,4,f +4014,3710,15,1,f +4014,3795,4,1,f +4014,3839b,0,1,f +4014,3839b,7,1,f +4014,3901,0,1,f +4014,4162,7,8,f +4014,4315,15,1,f +4014,4449,6,1,f +4014,4477,15,1,f +4014,4477,4,3,f +4014,4477,14,3,f +4014,4485,15,1,f +4014,4624,7,4,f +4014,4625,15,2,f +4014,4714,15,1,f +4014,4715,15,2,f +4014,4746,15,1,f +4014,4755,15,5,f +4014,4757,15,1,f +4014,4760pb03,15,1,f +4014,4771,15,1,f +4014,4773,36,1,f +4014,4773,34,1,f +4014,4774c01,15,1,f +4014,4856a,4,2,f +4014,4857,15,2,f +4014,4862,41,8,f +4014,4863,15,3,f +4014,4864a,15,4,f +4014,4865a,41,2,f +4014,4865a,15,1,f +4014,4870,7,2,f +4014,6141,36,2,f +4014,73983,14,4,f +4014,970c00,1,2,f +4014,970x026,14,1,f +4014,973c11,0,1,f +4014,973p0ac04,4,2,f +4015,2343,47,2,f +4015,33057,484,2,f +4015,33172,25,2,f +4015,33291,10,2,f +4015,33291,10,1,t +4015,6141,19,2,f +4015,6141,45,2,f +4015,6141,45,1,t +4015,6141,19,1,t +4016,2562,6,1,f +4016,30174,0,1,f +4016,30175,8,1,f +4016,3022,15,1,f +4016,30569,15,1,f +4016,3626bpx5,14,1,f +4016,4142690pb1,89,1,f +4016,87695,15,1,f +4016,87695,15,1,t +4016,87696,15,1,t +4016,970x026,8,1,f +4016,973pn1c02,4,1,f +4017,11211,71,3,f +4017,11212,72,2,f +4017,11438,0,1,f +4017,11476,71,1,f +4017,11476,0,1,f +4017,11477,72,1,f +4017,11610,179,1,f +4017,14413,71,2,f +4017,14716,71,4,f +4017,14719,1,2,f +4017,15068,308,2,f +4017,15082,0,2,f +4017,15391,71,2,f +4017,15392,72,2,f +4017,15462,28,1,f +4017,15573,272,8,f +4017,15672,1,2,f +4017,15712,70,2,f +4017,16968,71,1,f +4017,18651,0,1,f +4017,18671,72,1,f +4017,18677,71,2,f +4017,18980,71,3,f +4017,22385,1,1,f +4017,22385pr0027,57,1,f +4017,22385pr0028,47,1,f +4017,22388,179,6,f +4017,22408,179,1,f +4017,24097,179,1,f +4017,2412b,72,1,f +4017,2419,71,1,f +4017,2420,71,4,f +4017,2431,0,1,f +4017,2446,15,1,f +4017,2450,71,2,f +4017,2453b,72,2,f +4017,2454b,1,4,f +4017,2540,71,1,f +4017,2736,71,1,f +4017,2780,0,2,f +4017,2877,71,2,f +4017,2921,71,2,f +4017,30031,72,1,f +4017,3010,71,2,f +4017,30136,72,1,f +4017,3020,72,2,f +4017,3020,70,1,f +4017,3021,71,1,f +4017,3022,1,2,f +4017,3022,72,2,f +4017,3023,1,5,f +4017,3023,70,1,f +4017,3024,1,4,f +4017,30292,57,1,f +4017,3035,72,1,f +4017,3039pr0018,0,1,f +4017,3040b,272,2,f +4017,3040b,71,10,f +4017,30503,72,2,f +4017,3062b,71,4,f +4017,3068b,72,4,f +4017,3069bpr0169,15,1,f +4017,3070b,272,4,f +4017,3176,4,1,f +4017,32034,0,1,f +4017,32062,4,2,f +4017,32064a,72,3,f +4017,32123b,14,2,f +4017,32278,72,2,f +4017,3460,71,1,f +4017,3626cpr1818,4,1,f +4017,3660,71,4,f +4017,3665,72,4,f +4017,3700,1,1,f +4017,3705,0,1,f +4017,3710,1,4,f +4017,3710,15,1,f +4017,3713,4,1,f +4017,3795,308,1,f +4017,4081b,0,2,f +4017,41854,308,1,f +4017,41879a,30,1,f +4017,4460b,1,2,f +4017,4477,72,2,f +4017,4477,1,2,f +4017,4497,179,1,f +4017,4590,72,1,f +4017,4740,57,1,f +4017,47456,308,1,f +4017,48493,0,1,f +4017,4871,0,1,f +4017,49668,179,2,f +4017,51739,0,1,f +4017,53451,15,4,f +4017,6020,71,1,f +4017,60470b,4,1,f +4017,60475b,1,2,f +4017,60478,4,2,f +4017,60481,71,2,f +4017,60752,179,1,f +4017,60897,71,8,f +4017,6112,72,2,f +4017,61409,72,4,f +4017,6141,57,12,f +4017,64567,71,1,f +4017,64799,71,1,f +4017,6541,1,4,f +4017,6541,71,6,f +4017,6558,1,4,f +4017,6636,72,1,f +4017,85943,72,1,f +4017,85984,1,4,f +4017,87544,47,1,f +4017,87580,1,2,f +4017,92280,71,2,f +4017,95199,15,2,f +4017,95753pat0005,25,2,f +4017,973pr3191c01,4,1,f +4017,973pr3276c01,30,1,f +4017,98564,148,2,f +4019,11169,10,2,f +4019,12651,14,1,f +4019,15515,322,1,f +4019,18816,322,1,f +4019,19820,15,1,f +4019,20678,46,1,f +4019,20710,15,1,f +4019,20717,15,1,f +4019,20748,30,1,f +4019,24911,71,1,f +4019,3437,27,1,f +4019,3437,484,1,f +4019,3664,10,1,f +4019,6510,5,1,f +4019,98223,27,1,f +4021,14728,0,1,f +4021,2342,15,1,f +4021,2342,1,1,f +4021,2362a,14,4,f +4021,2362a,4,4,f +4021,2374,7,2,f +4021,2375,15,1,f +4021,2376,7,1,f +4021,2377,15,3,f +4021,2420,0,16,f +4021,298c02,15,2,f +4021,3002,1,1,f +4021,3002,0,1,f +4021,3002,15,1,f +4021,3003,0,3,f +4021,3004,15,4,f +4021,3004,0,3,f +4021,3005,15,8,f +4021,3007,15,1,f +4021,3008,15,3,f +4021,3009,15,9,f +4021,3010,15,8,f +4021,3010,4,6,f +4021,3010,14,6,f +4021,3020,15,3,f +4021,3021,7,2,f +4021,3021,15,1,f +4021,3021,0,1,f +4021,3022,0,1,f +4021,3023,15,12,f +4021,3023,0,5,f +4021,3024,46,1,f +4021,3024,15,6,f +4021,3029,15,1,f +4021,3029,7,1,f +4021,3034,15,1,f +4021,3035,14,2,f +4021,3035,4,2,f +4021,3039p34,15,1,f +4021,3040b,1,4,f +4021,3040p03,15,1,f +4021,3062b,4,1,f +4021,3069b,1,12,f +4021,3070b,15,2,f +4021,3070b,1,8,f +4021,3403,15,1,f +4021,3404,15,1,f +4021,3460,15,1,f +4021,3460,1,4,f +4021,3460,14,4,f +4021,3460,4,4,f +4021,3622,15,4,f +4021,3623,1,4,f +4021,3623,15,4,f +4021,3624,15,1,f +4021,3626apr0001,14,3,f +4021,3660,15,4,f +4021,3666,1,4,f +4021,3666,15,2,f +4021,3684,0,1,f +4021,3700,15,2,f +4021,3710,15,2,f +4021,3738,14,2,f +4021,3738,4,2,f +4021,3794a,15,2,f +4021,3795,15,1,f +4021,3833,15,2,f +4021,3835,7,1,f +4021,3853,4,2,f +4021,3853,14,2,f +4021,3856,4,4,f +4021,3856,14,4,f +4021,3959,4,1,f +4021,4006,0,1,f +4021,4032a,4,2,f +4021,4070,15,2,f +4021,4083,15,1,f +4021,4085b,15,2,f +4021,4162,15,1,f +4021,4175,7,2,f +4021,4208,0,1,f +4021,4209,15,1,f +4021,4213,15,10,f +4021,4215a,14,4,f +4021,4215a,4,4,f +4021,4275b,15,1,f +4021,4289,15,1,f +4021,4315,15,2,f +4021,4318,15,2,f +4021,4319,15,1,f +4021,4460b,15,2,f +4021,4477,15,2,f +4021,4519,0,1,f +4021,4522,0,1,f +4021,4589,15,1,f +4021,4599a,14,2,f +4021,4599a,4,1,f +4021,4625,1,8,f +4021,4740,7,1,f +4021,4859,0,1,f +4021,4862,41,13,f +4021,4863,15,5,f +4021,56823,0,1,f +4021,6141,46,2,f +4021,6141,36,2,f +4021,6141,34,2,f +4021,73090b,0,6,f +4021,970c00,0,3,f +4021,973p09c01,15,2,f +4021,973pb0049c01,0,1,f +4021,bfloat4c01,1,1,f +4022,3002,4,1,f +4022,3004,14,10,f +4022,3004,4,2,f +4022,3009,4,1,f +4022,3010,4,2,f +4022,3030,14,1,f +4022,3068bpfb,15,2,f +4022,3068bpfc,15,2,f +4022,3622,4,2,f +4022,3622pf1,4,1,f +4022,3795,14,2,f +4022,3899,1,2,f +4022,4222a,4,1,f +4022,4429,4,1,f +4022,fab11g,9999,1,f +4023,3647,7,4,f +4023,3648a,7,2,f +4023,3650c,7,2,f +4023,3743,7,4,f +4023,4019,7,2,f +4023,4143,7,4,f +4023,4716,0,2,f +4023,6542a,8,1,f +4023,6573,8,1,f +4023,9244,7,1,f +4024,14226c11,0,1,f +4024,2431,115,4,f +4024,2431,4,6,f +4024,2431,15,6,f +4024,2432,1,2,f +4024,2436,142,6,f +4024,2465,15,3,f +4024,2926,71,2,f +4024,3001,70,1,f +4024,3002,14,3,f +4024,3003,117,2,f +4024,3003,70,3,f +4024,3006,70,1,f +4024,3006,484,1,f +4024,3009,70,2,f +4024,3010,15,4,f +4024,30107,14,1,f +4024,30112,5,1,f +4024,30145,484,6,f +4024,30145,379,1,f +4024,30150,1,1,f +4024,3021,15,6,f +4024,3023,71,12,f +4024,30237a,70,2,f +4024,3032,115,2,f +4024,3039,484,2,f +4024,3068b,379,1,f +4024,3139,0,4,f +4024,33051,4,2,f +4024,33172,25,2,f +4024,33175,10,1,f +4024,33175,14,1,f +4024,33175,4,1,f +4024,33175,1,1,f +4024,33176,15,6,f +4024,33183,10,2,f +4024,33183,10,1,t +4024,3741,2,2,f +4024,3741,2,1,t +4024,3742,5,1,t +4024,3742,13,1,t +4024,3742,5,3,f +4024,3742,13,3,f +4024,3899,4,2,f +4024,4070,15,2,f +4024,4080,379,1,f +4024,4162,15,1,f +4024,4212158,9999,1,f +4024,4215976,9999,1,f +4024,4623,115,2,f +4024,4624,15,4,f +4024,4697b,71,1,t +4024,4697b,71,1,f +4024,47115,142,1,f +4024,47116,142,1,f +4024,47122,15,1,f +4024,47688,1,1,f +4024,47855,35,2,f +4024,5102c19,1,1,f +4024,6111,484,2,f +4024,6141,2,8,f +4024,6141,70,4,f +4024,6171pr02,0,1,f +4024,6171pr02,15,1,f +4024,6175px1,15,1,f +4024,6185,0,1,f +4024,6185,70,1,f +4024,6189,0,2,f +4024,6195,70,2,f +4024,6195,191,1,f +4024,6204,0,1,f +4024,6204,70,1,f +4024,6255,2,2,f +4024,6636,70,2,f +4024,6936,135,2,f +4024,70973c01,135,1,f +4024,belvfem62,9999,1,f +4024,belvfem63,9999,1,f +4024,x120b,14,1,f +4024,x1904cx1,15,6,f +4024,x226,15,2,f +4025,3647,7,4,f +4025,3648a,7,4,f +4025,3649,7,1,f +4025,3650a,7,2,f +4025,3705,0,2,f +4025,3706,0,2,f +4025,3711a,0,60,f +4025,3713,7,8,f +4025,3749,7,4,f +4026,3626bpr0768,14,1,f +4026,64644,179,1,f +4026,88646,0,1,f +4026,93557pr0001,15,1,f +4026,970c00,15,1,f +4026,973pr1755c01,15,1,f +4027,2432,8,1,f +4027,2446px9,4,1,f +4027,2447,40,1,f +4027,2447,40,1,t +4027,30027b,4,4,f +4027,30028,0,4,f +4027,3020,8,1,f +4027,3022,8,1,f +4027,30603pb05,4,1,f +4027,3626bpb0022,14,1,f +4027,3795,25,1,f +4027,4081b,25,2,f +4027,41854pb03,25,1,f +4027,41855pb04,4,1,f +4027,41861c01,7,1,f +4027,41864,0,2,f +4027,4589,4,2,f +4027,4600,0,1,f +4027,6141,25,2,f +4027,6141,25,1,t +4027,x351,0,1,f +4028,3003,19,1,f +4028,3005,19,6,f +4028,3020,19,1,f +4028,3021,19,1,f +4028,3022,19,2,f +4028,3022,70,3,f +4028,3023,70,1,f +4028,3023,19,5,f +4028,3039,19,2,f +4028,3040b,70,6,f +4028,3040b,19,2,f +4028,3298,19,1,f +4028,3665,19,2,f +4028,3710,70,1,f +4028,3794a,19,1,f +4028,44301a,19,1,f +4028,44302a,19,1,f +4028,48336,15,1,f +4028,6019,4,2,f +4028,6141,0,2,f +4029,2470,6,2,f +4029,2540,4,1,f +4029,2570,8,3,f +4029,2586p4f,7,2,f +4029,2926,0,1,f +4029,3626bpx97,14,1,f +4029,3794a,4,1,f +4029,3795,0,1,f +4029,3896,0,1,f +4029,4081b,14,2,f +4029,4497,6,1,f +4029,4498,6,1,f +4029,4623,14,2,f +4029,970x026,8,1,f +4029,973pb0066c01,7,1,f +4034,3624,320,1,f +4034,3626bpr0126,14,1,f +4034,3900,15,1,f +4034,6141,34,1,t +4034,6141,34,1,f +4034,970c00,272,1,f +4034,973pb0008c01,272,1,f +4035,2340,15,2,f +4035,2413,15,2,f +4035,2415,7,3,f +4035,2420,15,2,f +4035,2446,15,1,f +4035,2446,0,1,f +4035,2447,41,2,f +4035,2507,41,1,f +4035,2639,7,2,f +4035,298c02,0,1,f +4035,3003,7,1,f +4035,3004,15,1,f +4035,3005,15,1,f +4035,3020,15,1,f +4035,3021,0,1,f +4035,3021,15,2,f +4035,3021,7,1,f +4035,3022,7,1,f +4035,3023,7,2,f +4035,3024,0,2,f +4035,3024,46,1,f +4035,3024,36,1,f +4035,3034,15,1,f +4035,3039pc4,0,1,f +4035,3069bp02,7,1,f +4035,3069bpb001,15,2,f +4035,3139,0,3,f +4035,3464,47,5,f +4035,3474,15,1,f +4035,3626bpr0001,14,2,f +4035,3641,0,2,f +4035,3660,0,1,f +4035,3710,0,4,f +4035,3710,15,4,f +4035,3794a,15,1,f +4035,4070,15,5,f +4035,4315,15,1,f +4035,4360,0,1,f +4035,4477,0,2,f +4035,4480c01,15,1,f +4035,4854,15,1,f +4035,4855,15,2,f +4035,4856a,15,1,f +4035,4858,15,1,f +4035,4859,0,1,f +4035,4865a,15,4,f +4035,4868a,15,2,f +4035,4869,7,2,f +4035,6069,15,1,f +4035,970c00,0,2,f +4035,973pb0079c01,0,2,f +4038,3039,25,2,f +4038,30390b,7,1,f +4038,3839b,15,1,f +4038,4617b,0,1,f +4038,js026,-1,1,f +4038,wing4612,15,1,f +4039,3001a,1,21,f +4040,122c01,0,3,f +4040,298c03,1,1,f +4040,3003,0,1,f +4040,3004,0,2,f +4040,3005,14,2,f +4040,3010p06,15,1,f +4040,3020,14,1,f +4040,3023,14,3,f +4040,3024,36,2,f +4040,3031,14,1,f +4040,3039p05,14,1,f +4040,3062b,0,3,f +4040,3068b,0,1,f +4040,3069b,0,1,f +4040,3626bpr0001,14,1,f +4040,3641,0,6,f +4040,3679,7,1,f +4040,3680,0,1,f +4040,3710,0,2,f +4040,3710,14,1,f +4040,3795,0,1,f +4040,3829c01,14,1,f +4040,3833,4,1,f +4040,4070,14,2,f +4040,4275a,0,3,f +4040,4276a,0,1,f +4040,4531,0,1,f +4040,4626,14,1,f +4040,970c00,0,1,f +4040,973pb0202c01,15,1,f +4042,3001,14,1,f +4042,3001p08,2,1,f +4042,3002,1,2,f +4042,3003,14,1,f +4042,4617b,0,1,f +4042,6215,4,2,f +4042,6216p03,2,1,f +4042,6232,14,1,f +4043,30698,15,1,f +4043,3626cpr2074,179,1,f +4043,88646,0,1,f +4043,970c00pr1160,191,1,f +4043,973pr3613c01,191,1,f +4043,98138,29,1,f +4044,2346,0,4,f +4044,2412b,14,8,f +4044,2419,1,4,f +4044,2432,14,4,f +4044,2435,2,1,f +4044,2456,14,2,f +4044,2456,15,2,f +4044,2458,14,4,f +4044,2460,14,1,f +4044,2479,0,2,f +4044,2488,0,1,f +4044,30000,8,1,f +4044,3001,2,4,f +4044,3001,1,4,f +4044,3001,4,4,f +4044,3001,14,4,f +4044,3001,0,2,f +4044,3001,15,4,f +4044,3002,0,2,f +4044,3002,15,4,f +4044,3002,1,4,f +4044,3002,14,4,f +4044,3002,4,4,f +4044,3002,2,4,f +4044,3003,1,8,f +4044,3003,2,4,f +4044,3003,0,4,f +4044,3003,4,8,f +4044,3003,15,8,f +4044,3003,14,8,f +4044,3004,2,6,f +4044,3004,15,26,f +4044,3004,14,26,f +4044,3004,4,26,f +4044,3004,0,10,f +4044,3004,1,24,f +4044,3005,2,12,f +4044,3005,15,28,f +4044,3005,1,24,f +4044,3005,14,28,f +4044,3005,0,14,f +4044,3005,4,24,f +4044,3005pe1,4,4,f +4044,3005pe1,2,4,f +4044,3006,4,1,f +4044,3008,14,2,f +4044,3008,15,2,f +4044,3009,2,8,f +4044,3009,14,4,f +4044,3009,4,4,f +4044,3009,15,4,f +4044,3009,1,2,f +4044,3010,4,24,f +4044,3010,14,24,f +4044,3010,2,6,f +4044,3010,0,6,f +4044,3010,1,24,f +4044,3010,15,24,f +4044,3010p01,4,1,f +4044,3010p02,15,2,f +4044,3020,2,2,f +4044,3020,1,2,f +4044,3020,14,2,f +4044,3021,1,2,f +4044,3021,14,2,f +4044,3021,2,2,f +4044,3022,2,2,f +4044,3022,1,2,f +4044,3030,1,2,f +4044,3031,1,1,f +4044,3031,14,1,f +4044,3032,14,1,f +4044,3033,1,2,f +4044,3039,4,4,f +4044,3039,14,2,f +4044,3039,47,1,f +4044,3040b,14,2,f +4044,3040b,4,4,f +4044,3062b,14,10,f +4044,3062b,15,12,f +4044,3297,4,4,f +4044,3297px3,4,4,f +4044,3298,4,8,f +4044,3298p12,4,6,f +4044,3299,4,4,f +4044,3300,4,2,f +4044,3460,14,2,f +4044,3460,1,2,f +4044,3475b,0,2,f +4044,3483,0,8,f +4044,3622,2,2,f +4044,3622,1,4,f +4044,3622,0,2,f +4044,3622,14,6,f +4044,3622,15,6,f +4044,3622,4,4,f +4044,3624,0,1,f +4044,3626bp02,14,1,f +4044,3626bp03,14,1,f +4044,3626bp04,14,1,f +4044,3626bpx19,14,1,f +4044,3633,4,8,f +4044,3660,14,2,f +4044,3660,4,2,f +4044,3665,14,2,f +4044,3665,4,2,f +4044,3666,2,2,f +4044,3666,1,2,f +4044,3679,7,2,f +4044,3680,14,2,f +4044,3710,1,2,f +4044,3730,4,1,f +4044,3731,4,1,f +4044,3741,2,4,f +4044,3742,1,4,f +4044,3742,15,4,f +4044,3742,4,4,f +4044,3747a,4,6,f +4044,3795,14,2,f +4044,3795,1,2,f +4044,3823,41,2,f +4044,3829c01,14,2,f +4044,3836,6,1,f +4044,3853,1,6,f +4044,3854,14,12,f +4044,3856,2,12,f +4044,3861b,14,2,f +4044,3865,10,1,f +4044,3878,0,1,f +4044,3937,14,2,f +4044,3941,14,2,f +4044,3957a,14,4,f +4044,3958,14,2,f +4044,4070,2,6,f +4044,4079,14,2,f +4044,4175,14,2,f +4044,4286,4,6,f +4044,4287,4,4,f +4044,4349,7,2,f +4044,4485,4,1,f +4044,4495a,15,4,f +4044,4617b,14,1,f +4044,6003,1,4,f +4044,6041,0,2,f +4044,6064,2,2,f +4044,6092px1,10,1,f +4044,6093,0,1,f +4044,6134,4,2,f +4044,6140,15,4,f +4044,6215,2,4,f +4044,6248,15,12,f +4044,6249,8,5,f +4044,970c00,0,1,f +4044,970c00,15,1,f +4044,970c00,4,1,f +4044,970c00,1,1,f +4044,973pr1190c01,0,1,f +4044,973px34c01,15,1,f +4044,973px36c01,4,1,f +4044,973px39c01,2,1,f +4045,3004,14,3,f +4045,3020,14,1,f +4045,3021,0,1,f +4045,3023,14,2,f +4045,3034,14,1,f +4045,3062a,15,2,f +4045,3062a,4,2,f +4045,3062a,7,1,f +4045,3137c01,0,1,f +4045,3314,0,1,f +4045,3317,14,1,f +4045,3482,4,2,f +4045,3483,0,2,f +4045,3626apr0001,14,2,f +4045,3641,0,2,f +4045,3665,14,2,f +4045,3666,15,1,f +4045,3700,0,2,f +4045,3705,0,1,f +4045,3710,14,1,f +4045,3823,47,1,f +4045,3829c01,14,1,f +4045,3833,4,2,f +4045,3837,8,1,f +4045,3840,14,1,f +4045,3841,8,1,f +4045,649pb09,15,1,f +4045,784,14,1,f +4045,970c00,0,2,f +4045,973p26c01,1,1,f +4045,973pb0069c01,0,1,f +4047,2343,297,1,f +4047,2476a,71,1,f +4047,2530,72,3,f +4047,2530,72,1,t +4047,2562,70,1,f +4047,30136,308,1,f +4047,3032,70,1,f +4047,30503,70,2,f +4047,3070bpr0058,272,1,f +4047,3070bpr0058,272,1,t +4047,3626bpr0789,78,1,f +4047,3626bpr0842,70,1,f +4047,3626bpr0843,84,1,f +4047,3626bpr0895,15,1,f +4047,3794b,297,1,f +4047,3795,70,3,f +4047,3937,72,2,f +4047,40239,0,1,f +4047,4085c,0,2,f +4047,4150pr0007,19,1,f +4047,4643103,9999,1,t +4047,4644160,9999,1,t +4047,4733,0,1,f +4047,4865a,47,2,f +4047,48723,297,1,f +4047,54200,70,1,t +4047,54200,15,1,t +4047,54200,15,4,f +4047,54200,70,6,f +4047,59900,297,5,f +4047,60474,0,1,f +4047,60477,308,2,f +4047,6091,0,4,f +4047,61252,297,2,f +4047,61287pr0001,28,1,f +4047,61287pr0002,28,1,f +4047,6134,0,2,f +4047,6141,297,10,f +4047,6141,297,1,t +4047,6266,15,4,f +4047,64644,308,9,f +4047,64647,57,1,f +4047,64647,57,1,t +4047,92691,15,3,f +4047,95221pr0001,0,1,f +4047,95228pr0001,47,2,f +4047,95348,308,1,f +4047,970c00,72,1,f +4047,970c00,28,1,f +4047,970c00pr0218,70,1,f +4047,973pr1771c01,272,1,f +4047,973pr1840c01,70,1,f +4047,973pr1841c01,320,1,f +4049,11090,0,1,f +4049,11477,14,2,f +4049,11477,0,2,f +4049,11610,0,1,f +4049,14704,71,2,f +4049,14769pr1002,15,1,f +4049,14769pr1003,15,1,f +4049,15208,15,1,f +4049,15456,71,2,f +4049,3004,0,1,f +4049,3021,14,2,f +4049,3022,191,1,f +4049,3022,0,1,f +4049,3023,14,2,f +4049,3040b,0,2,f +4049,3049d,191,1,f +4049,3298,14,2,f +4049,3700,14,2,f +4049,3937,14,1,f +4049,4274,71,1,t +4049,4274,71,1,f +4049,44728,0,1,f +4049,44728,14,1,f +4049,47457,14,1,f +4049,51739,14,2,f +4049,54200,191,1,t +4049,54200,191,8,f +4049,59233pat0001,41,1,f +4049,60475b,0,2,f +4049,60478,72,2,f +4049,61252,14,4,f +4049,6134,71,1,f +4049,73590c03b,14,1,f +4049,99780,72,1,f +4054,298c02,4,2,f +4054,3003,0,2,f +4054,30148,0,1,f +4054,3020,0,1,f +4054,3062b,0,2,f +4054,3839b,0,2,f +4054,4079,1,1,f +4055,3062b,7,1,f +4055,3069bpr0099,15,1,f +4055,3624,15,1,f +4055,3626apr0001,14,6,f +4055,3834,15,1,f +4055,3900,4,1,f +4055,3901,0,1,f +4055,4006,0,1,f +4055,4449,6,1,f +4055,4485,1,1,f +4055,4530,6,1,f +4055,4530,0,1,f +4055,4599a,7,1,f +4055,4719,15,1,f +4055,6141,47,1,f +4055,92851,47,2,f +4055,970c00,0,3,f +4055,970c00,4,1,f +4055,970c00,1,1,f +4055,970c00,15,1,f +4055,973p21c01,0,1,f +4055,973p25c01,15,1,f +4055,973pb0035c01,4,1,f +4055,973pb0091c01,0,1,f +4055,973pb0201c01,15,1,f +4055,973px62c02,15,1,f +4056,11254pr0001,0,1,f +4056,3069bpr0005,15,1,f +4056,3069bpr0006,15,1,f +4056,3626bpr1067,14,1,f +4056,3678bpr0017,320,1,f +4056,88646,0,1,f +4056,973pr2165c01,320,1,f +4058,3001a,4,4,f +4058,3002a,4,1,f +4058,3003,0,1,f +4058,3004,47,5,f +4058,3004,4,7,f +4058,3005,4,2,f +4058,3006,4,1,f +4058,3008,4,2,f +4058,3010,4,4,f +4058,3020,7,1,f +4058,3020,4,1,f +4058,3020,0,1,f +4058,3029,4,2,f +4058,3031,4,1,f +4058,3037,4,1,f +4058,3039,0,1,f +4058,3139,0,3,f +4058,3190,4,1,f +4058,3191,4,1,f +4058,3298,4,3,f +4058,3460,7,8,f +4058,3461,7,2,f +4058,3462,0,1,f +4058,3464,4,3,f +4058,3481,4,1,f +4058,8,7,3,f +4058,x453,47,1,f +4059,3001a,0,2,f +4059,3001a,4,1,f +4059,3003,1,5,f +4059,3003,14,5,f +4059,3003,15,2,f +4059,3003,0,4,f +4059,3003,4,1,f +4059,3021,0,5,f +4059,3022,1,1,f +4059,3022,15,2,f +4059,3022,4,2,f +4059,3034,15,1,f +4059,3039,1,2,f +4059,3039,4,2,f +4059,3039,0,2,f +4059,3612,1,2,f +4059,3612,0,2,f +4059,3612,4,2,f +4059,3613,1,4,f +4059,3613,0,2,f +4059,3613,15,2,f +4059,3613,4,2,f +4059,3614a,14,10,f +4059,685p01,14,2,f +4059,685px2,14,1,f +4059,685px3,14,1,f +4059,685px4,14,1,f +4059,792c03,1,2,f +4059,792c03,4,1,f +4059,792c03,15,1,f +4059,792c03,0,1,f +4059,x196,0,2,f +4059,x197,6,2,f +4059,x197bun,7,1,f +4060,12622,4,1,f +4060,2412b,80,4,f +4060,2445,4,1,f +4060,2460,4,1,f +4060,2479,0,1,f +4060,3001,0,1,f +4060,3001,4,4,f +4060,3003,15,1,f +4060,3003,27,2,f +4060,3003,2,3,f +4060,3003,4,8,f +4060,3003,70,2,f +4060,3010,0,2,f +4060,30145,15,2,f +4060,3020,71,1,f +4060,30236,15,1,f +4060,3032,71,1,f +4060,3039,0,2,f +4060,30414,4,2,f +4060,3062b,33,1,f +4060,3062b,14,2,f +4060,30663,0,1,f +4060,3069b,15,1,f +4060,3626cpr0325,14,1,f +4060,3666,0,4,f +4060,3823,47,1,f +4060,3829c01,0,1,f +4060,3834,80,1,f +4060,3835,0,1,f +4060,3963,15,1,f +4060,4079b,14,1,f +4060,4081b,14,2,f +4060,4599b,14,2,f +4060,4599b,14,1,t +4060,59900,182,2,f +4060,6014b,71,4,f +4060,6020,71,1,f +4060,60897,71,2,f +4060,6126b,182,2,f +4060,61409,4,2,f +4060,6141,33,1,t +4060,6141,36,2,f +4060,6141,46,1,t +4060,6141,46,2,f +4060,6141,36,1,t +4060,6141,33,2,f +4060,73590c02b,14,1,f +4060,87697,0,4,f +4060,92586pr0001,84,1,f +4060,93273,4,3,f +4060,970c00,0,1,f +4060,973pr1187c01,0,1,f +4063,30132,72,1,t +4063,30132,72,2,f +4063,3626bpb0425,14,1,f +4063,61506,28,1,f +4063,88646,0,1,f +4063,970c00,70,1,f +4063,973pr1544c01,28,1,f +4065,3460,4,8,f +4065,3460,0,8,f +4065,3666,4,8,f +4065,3666,0,8,f +4066,3836,6,1,f +4066,3837,8,1,f +4066,503c01,4,1,f +4066,fab11a,9999,1,f +4067,2780,0,2,f +4067,32013,7,2,f +4067,32015,7,2,f +4067,32039,0,2,f +4067,32138,0,1,f +4067,32140,0,2,f +4067,32553,15,3,f +4067,32554,143,1,f +4067,32570,7,1,f +4067,3705,0,2,f +4067,3713,7,2,f +4067,3749,7,1,f +4067,40582,15,1,f +4067,4519,0,4,f +4067,6553,7,2,f +4067,71509,0,1,f +4067,71509,0,1,t +4069,3003,14,1,f +4069,3021,4,1,f +4069,3022,1,1,f +4069,3039,47,1,f +4069,3298p19,14,1,f +4069,3660,14,1,f +4069,4859,4,1,f +4070,2412b,71,1,f +4070,2432,4,1,f +4070,2441,0,1,f +4070,2446,1,1,f +4070,2447,40,1,t +4070,2447,40,1,f +4070,30027b,15,4,f +4070,30028,0,4,f +4070,3021,71,1,f +4070,3022,15,1,f +4070,3298,4,1,f +4070,3623,4,2,f +4070,3626cpr0891,14,1,f +4070,3710,15,2,f +4070,3829c01,4,1,f +4070,41862,71,1,f +4070,50947,15,2,f +4070,54200,15,4,f +4070,54200,15,1,t +4070,6141,72,1,t +4070,6141,72,2,f +4070,87087,71,2,f +4070,970c00,4,1,f +4070,973pr1170c01,4,1,f +4073,10258,2,1,f +4073,15428,288,1,f +4073,19981pr0070,46,1,f +4073,3626cpr1633,78,1,f +4073,62810,14,1,f +4073,970x028,288,1,f +4073,973pr2945c01,2,1,f +4075,2547,15,1,f +4075,2548,15,1,f +4075,30153,41,1,t +4075,30153,41,1,f +4075,43887,71,1,f +4075,4738a,70,1,f +4075,4739a,70,1,f +4075,4j011,9999,1,f +4076,45469,41,1,f +4076,46296,41,1,f +4076,clikits016pb02,41,1,f +4076,clikits040,47,1,f +4079,61929,71,1,f +4080,14417,72,2,f +4080,14418,71,1,f +4080,14704,71,1,f +4080,15068,25,2,f +4080,15573,25,1,f +4080,2780,0,1,t +4080,2780,0,4,f +4080,3004,25,1,f +4080,3005,25,4,f +4080,3021,0,1,f +4080,3021,15,1,f +4080,3022,25,2,f +4080,3023,0,3,f +4080,3023,15,6,f +4080,3024,0,4,f +4080,3024,25,8,f +4080,3024,0,1,t +4080,3024,25,1,t +4080,3710,25,2,f +4080,51739,15,1,f +4080,53451,15,1,t +4080,53451,15,2,f +4080,54200,0,1,t +4080,54200,25,1,t +4080,54200,25,10,f +4080,54200,0,1,f +4080,60897,0,2,f +4080,6141,15,1,t +4080,6141,15,2,f +4080,6541,0,8,f +4080,87087,15,2,f +4080,98138pr0008,15,2,f +4080,98138pr0008,15,1,t +4081,2377,0,4,f +4081,2412b,0,2,f +4081,2413,15,4,f +4081,2419,15,1,f +4081,2420,0,1,f +4081,2432,0,1,f +4081,2445,19,1,f +4081,2445,7,1,f +4081,2526,15,1,f +4081,2536,6,5,f +4081,2555,7,3,f +4081,2563,6,1,f +4081,2566,2,1,f +4081,2873,19,2,f +4081,2952,6,1,f +4081,298c05,0,2,f +4081,3001,19,1,f +4081,3003,0,1,f +4081,3004,0,2,f +4081,30132,8,2,f +4081,30141,8,4,f +4081,30147,8,1,f +4081,30148,0,1,f +4081,30149,0,1,f +4081,30150,6,2,f +4081,30152pat0001,0,1,f +4081,30154,0,1,f +4081,30155,8,4,f +4081,30155,19,2,f +4081,30157,8,3,f +4081,30158,6,1,f +4081,30161pa1,47,1,f +4081,30162,0,2,f +4081,30163,19,1,f +4081,30164p01,19,1,f +4081,30169,0,2,f +4081,30170,0,1,f +4081,30171,6,1,f +4081,30172,15,2,f +4081,3020,15,1,f +4081,3021,6,2,f +4081,3021,15,3,f +4081,3022,0,2,f +4081,3022,8,2,f +4081,3023,15,2,f +4081,3023,0,7,f +4081,3023,7,1,f +4081,3032,19,1,f +4081,3034,19,1,f +4081,3040b,19,4,f +4081,3062b,2,1,f +4081,3068b,19,2,f +4081,3068bpx13,19,1,f +4081,3068bpx19,19,1,f +4081,3069b,19,1,f +4081,3069bp03,7,1,f +4081,3069bpa4,15,1,f +4081,3176,0,1,f +4081,3483,0,6,f +4081,3587,19,1,f +4081,3623,7,1,f +4081,3626bpa1,14,1,f +4081,3626bpa5,14,1,f +4081,3626bpa7,14,1,f +4081,3626bpa9,14,1,f +4081,3626bpr0895,15,1,f +4081,3659,19,1,f +4081,3700,0,1,f +4081,3710,15,1,f +4081,3749,7,2,f +4081,3794a,0,2,f +4081,3795,19,2,f +4081,3795,7,1,f +4081,3829c01,7,1,f +4081,3832,7,1,f +4081,3837,8,2,f +4081,3841,8,3,f +4081,3878,0,1,f +4081,3937,4,2,f +4081,3938,7,2,f +4081,4032a,2,1,f +4081,4070,0,5,f +4081,4081b,7,2,f +4081,4085c,0,2,f +4081,4150,2,2,f +4081,4315,7,2,f +4081,4528,0,1,f +4081,4599a,7,1,t +4081,4599a,7,4,f +4081,4623,0,1,f +4081,4625,7,1,f +4081,4854,19,1,f +4081,4855,19,1,f +4081,4871,0,1,f +4081,6019,0,2,f +4081,6069,19,1,f +4081,6126a,57,1,f +4081,6141,47,3,f +4081,6141,47,1,t +4081,6141,7,1,t +4081,6141,7,8,f +4081,6148,2,4,f +4081,6260,15,1,f +4081,6265,15,2,f +4081,6266,15,2,f +4081,970c00,7,1,f +4081,970c00,2,1,f +4081,970c00,0,2,f +4081,973p22c01,0,1,f +4081,973pa1c01,15,1,f +4081,973pa5c01,6,1,f +4081,973pa7c01,19,1,f +4082,3022,4,1,f +4082,3062b,0,2,f +4082,3960,15,1,f +4082,fab8e,9999,1,f +4082,fabeg2,15,1,f +4082,fabeg3,14,2,f +4085,2736,71,6,f +4085,2780,0,73,f +4085,2780,0,5,t +4085,32009,71,5,f +4085,32013,0,2,f +4085,32014,4,4,f +4085,32034,71,12,f +4085,32039,4,3,f +4085,32054,4,22,f +4085,32062,4,10,f +4085,32072,0,10,f +4085,32073,71,17,f +4085,32123b,71,4,f +4085,32123b,71,2,t +4085,32138,0,8,f +4085,32140,4,7,f +4085,32184,71,7,f +4085,32192,4,2,f +4085,32278,0,21,f +4085,32293,0,3,f +4085,32316,4,6,f +4085,32316,0,4,f +4085,32348,4,6,f +4085,32523,0,5,f +4085,32524,4,2,f +4085,32524,0,8,f +4085,32525,4,2,f +4085,32525,0,10,f +4085,32525,72,4,f +4085,32526,4,4,f +4085,32526,71,6,f +4085,32556,19,14,f +4085,33299a,71,2,f +4085,3650c,71,2,f +4085,3673,71,2,t +4085,3673,71,10,f +4085,3705,0,13,f +4085,3706,0,2,f +4085,3707,0,6,f +4085,3708,0,1,f +4085,3713,71,30,f +4085,3713,71,4,t +4085,3737,0,3,f +4085,3749,19,2,f +4085,3942c,15,3,f +4085,4032a,15,1,f +4085,40490,71,15,f +4085,41239,4,7,f +4085,41669,42,6,f +4085,41677,71,8,f +4085,41752,72,1,f +4085,41896,71,1,f +4085,42003,4,11,f +4085,4274,71,8,f +4085,4274,71,1,t +4085,43093,1,22,f +4085,44033,135,2,f +4085,44294,71,3,f +4085,44374,135,2,f +4085,44813,135,2,f +4085,4519,71,24,f +4085,45749,72,2,f +4085,47298,135,2,f +4085,47306,72,1,f +4085,47312,72,1,f +4085,47337,135,3,f +4085,48989,71,12,f +4085,53451,135,8,f +4085,53451,135,1,t +4085,53543,72,4,f +4085,53545,72,1,f +4085,53546,27,1,f +4085,53548,72,2,f +4085,54821,135,8,f +4085,55982,71,6,f +4085,56145,71,5,f +4085,56160,135,2,f +4085,57529,135,4,f +4085,57536,42,1,f +4085,57563,135,3,f +4085,57587,0,2,f +4085,59443,4,24,f +4085,60176,27,5,f +4085,60483,72,4,f +4085,60930,135,2,f +4085,60935,135,2,f +4085,61054,27,4,f +4085,61800,135,2,f +4085,61805,4,3,f +4085,61813,143,1,f +4085,61815,27,1,f +4085,62233,135,2,f +4085,62531,4,12,f +4085,6536,0,10,f +4085,6558,1,58,f +4085,6587,72,2,f +4085,6628,0,9,f +4085,6629,0,3,f +4085,6632,4,2,f +4085,85543,15,6,f +4087,2493b,0,10,f +4087,2494,41,10,f +4088,22667,5,6,f +4088,22670,334,1,f +4088,22670,63,1,f +4088,2417,10,6,f +4088,2445,118,1,f +4088,2540,120,1,f +4088,2555,120,2,f +4088,2564,179,1,f +4088,2654,33,3,f +4088,2921,15,2,f +4088,3002,26,1,f +4088,3004,15,2,f +4088,30044,15,1,f +4088,30046,52,1,f +4088,3005,114,6,f +4088,3005,15,4,f +4088,30089,191,1,f +4088,30093,34,4,f +4088,3010,15,7,f +4088,30104,72,1,f +4088,30106,47,1,f +4088,30153,45,4,f +4088,30153,52,5,f +4088,3020,118,1,f +4088,30218,191,1,f +4088,3022,26,1,f +4088,30224,182,5,f +4088,30224,45,6,f +4088,3030,5,1,f +4088,3031,191,2,f +4088,3032,191,1,f +4088,3034,26,1,f +4088,30374,41,4,f +4088,30374,45,2,f +4088,30385,41,1,f +4088,30596,226,3,f +4088,3065,114,2,f +4088,3245b,15,2,f +4088,33009,26,1,f +4088,33061,34,3,f +4088,3307,15,2,f +4088,33121,191,4,f +4088,33122,52,3,f +4088,33122,46,10,f +4088,33125,366,3,f +4088,33210,118,1,f +4088,33213,118,3,f +4088,33215,41,2,f +4088,33216,34,2,f +4088,33217,41,2,f +4088,33217,35,1,f +4088,33227,26,1,f +4088,33322,41,1,f +4088,33322,41,1,t +4088,3455,15,2,f +4088,3626b,47,1,f +4088,3626bpb0004,33,1,f +4088,3659,15,2,f +4088,37,383,2,f +4088,3710,15,2,f +4088,3710,10,1,f +4088,3794a,15,2,f +4088,3795,26,1,f +4088,3852b,191,1,f +4088,3898,41,2,f +4088,3941,26,1,f +4088,40385,45,4,f +4088,4088,15,2,f +4088,4204,120,1,f +4088,4215b,41,1,f +4088,4237,41,1,f +4088,4245319,9999,1,f +4088,4429,34,1,f +4088,4433,191,1,f +4088,4495b,10,2,f +4088,4497,23,1,f +4088,4589,34,5,f +4088,4589,46,10,f +4088,4589,15,3,f +4088,4589,33,2,f +4088,47116,120,3,f +4088,47117,35,1,f +4088,4738a,45,1,f +4088,4739a,45,1,f +4088,50303,118,1,f +4088,51152,9999,1,f +4088,51154,9999,1,f +4088,51155,9999,1,f +4088,51164,35,1,f +4088,57503,334,1,f +4088,57504,334,1,f +4088,57505,334,1,f +4088,57506,334,1,f +4088,5960stk01,9999,1,t +4088,5960stk02,9999,1,t +4088,6141,25,1,t +4088,6141,46,1,t +4088,6141,5,1,t +4088,6141,5,1,f +4088,6141,25,4,f +4088,6141,46,1,f +4088,6176,5,1,f +4088,6177,26,1,f +4088,6180,15,1,f +4088,6182,15,6,f +4088,6183,118,1,f +4088,6199,182,1,f +4088,6256,191,3,f +4088,72515,61,1,f +4088,75347pat01,10,4,f +4088,x1904cx1,118,4,f +4091,11211,19,1,f +4091,11253,0,4,f +4091,11477,288,2,f +4091,14769pr0001,15,1,f +4091,15068,288,2,f +4091,15573,14,1,f +4091,2412b,179,4,f +4091,2431,71,1,f +4091,2780,0,2,f +4091,3004,70,9,f +4091,3005,70,8,f +4091,3005,47,10,f +4091,3020,288,1,f +4091,3020,19,3,f +4091,3020,28,4,f +4091,3021,70,2,f +4091,3021,19,8,f +4091,3023,288,3,f +4091,3023,70,2,f +4091,3023,2,3,f +4091,3023,28,3,f +4091,3023,14,2,f +4091,3023,47,3,f +4091,3024,71,2,f +4091,3024,28,6,f +4091,3024,47,22,f +4091,3035,0,1,f +4091,3036,0,1,f +4091,3062b,47,2,f +4091,3065,47,2,f +4091,3069b,4,1,f +4091,3070b,15,1,f +4091,3070b,71,4,f +4091,32000,19,2,f +4091,33291,10,7,f +4091,3622,70,2,f +4091,3623,72,4,f +4091,3623,19,2,f +4091,3623,4,2,f +4091,3666,72,1,f +4091,3666,71,2,f +4091,3666,70,1,f +4091,3710,71,3,f +4091,3710,72,1,f +4091,3710,2,1,f +4091,4081b,0,2,f +4091,54200,47,2,f +4091,54200,71,2,f +4091,54200,0,1,f +4091,61252,15,2,f +4091,6141,14,2,f +4091,6141,0,4,f +4091,6141,25,2,f +4091,63864,288,6,f +4091,63864,15,1,f +4091,63864,4,1,f +4091,64644,308,4,f +4091,88930,288,2,f +4092,11055,15,2,f +4092,12825,0,5,f +4092,2343,0,1,f +4092,2343,0,1,t +4092,2345,71,3,f +4092,2412b,0,4,f +4092,2412b,25,4,f +4092,2419,0,2,f +4092,2420,15,6,f +4092,2431,15,16,f +4092,2432,72,2,f +4092,2436,0,2,f +4092,2454b,15,2,f +4092,2456,19,1,f +4092,2465,15,1,f +4092,2516,0,1,f +4092,2524,15,2,f +4092,2540,72,7,f +4092,2584,0,1,f +4092,2585,71,1,f +4092,2653,71,6,f +4092,2780,0,6,f +4092,2780,0,1,t +4092,2877,72,11,f +4092,298c02,0,1,t +4092,298c02,0,5,f +4092,3001,14,1,f +4092,3002,15,2,f +4092,30033,0,2,f +4092,30035,0,1,f +4092,3005,15,8,f +4092,3009,72,10,f +4092,3010,15,5,f +4092,30154,72,1,f +4092,30170,15,1,t +4092,30170,15,2,f +4092,30171,15,2,f +4092,30192,72,1,f +4092,30193,72,1,t +4092,30193,72,1,f +4092,3020,72,2,f +4092,3020,15,6,f +4092,3022,71,7,f +4092,3023,71,27,f +4092,3028,15,2,f +4092,3029,15,2,f +4092,3030,71,2,f +4092,30303,71,1,f +4092,3031,72,6,f +4092,30355,15,1,f +4092,30356,15,1,f +4092,30359b,71,2,f +4092,30363,15,2,f +4092,30363,71,4,f +4092,30370ps2,15,1,f +4092,30370ps3,15,1,f +4092,30372pr0001,40,1,f +4092,30374,41,3,f +4092,30374,36,2,f +4092,30377,0,4,f +4092,30377,0,1,t +4092,3039,72,4,f +4092,3039,15,10,f +4092,3040b,15,18,f +4092,3040b,71,5,f +4092,30480,15,1,f +4092,30565,72,5,f +4092,3069b,72,11,f +4092,32000,15,7,f +4092,32028,0,7,f +4092,32062,0,1,f +4092,32073,71,3,f +4092,32270,0,3,f +4092,32524,14,3,f +4092,32530,4,1,f +4092,3298,15,4,f +4092,3626b,0,2,f +4092,3626bpr0001,78,3,f +4092,3626bpr0635,78,1,f +4092,3647,71,2,f +4092,3665,15,2,f +4092,3666,19,6,f +4092,3679,71,2,f +4092,3680,0,2,f +4092,3700,71,1,f +4092,3706,0,2,f +4092,3710,72,4,f +4092,3743,0,7,f +4092,3794a,15,5,f +4092,3795,19,2,f +4092,3830,15,2,f +4092,3831,15,2,f +4092,3832,15,2,f +4092,3937,71,2,f +4092,3938,15,2,f +4092,3940b,72,2,f +4092,3957a,47,1,f +4092,3958,15,1,f +4092,3960,71,1,f +4092,3960,0,1,f +4092,40244,0,1,f +4092,4032a,72,12,f +4092,4032b,72,10,f +4092,4070,0,4,f +4092,4079b,0,1,f +4092,4083,14,1,f +4092,4150,15,4,f +4092,4162,72,4,f +4092,41769,15,3,f +4092,41770,15,3,f +4092,42022,15,4,f +4092,4215b,40,2,f +4092,4274,1,1,t +4092,4274,1,5,f +4092,4287,15,2,f +4092,43337,15,4,f +4092,43722,71,1,f +4092,43723,71,1,f +4092,43898,15,1,f +4092,44301a,72,6,f +4092,44302a,14,4,f +4092,44360,15,2,f +4092,4460b,15,4,f +4092,44728,71,3,f +4092,4477,15,6,f +4092,4477,72,12,f +4092,4510,71,4,f +4092,4588,72,2,f +4092,4589,182,4,f +4092,4733,72,1,f +4092,47397,15,1,f +4092,47398,15,1,f +4092,4740,47,1,f +4092,47457,15,2,f +4092,47675,15,1,f +4092,47676,15,1,f +4092,4855,15,1,f +4092,4858,15,1,f +4092,50745,14,1,f +4092,50950,14,6,f +4092,50950,15,6,f +4092,52107,0,2,f +4092,54200,15,1,t +4092,54200,15,6,f +4092,56823c50,0,1,f +4092,58247,0,4,f +4092,59900,72,6,f +4092,6019,71,1,f +4092,6081,14,2,f +4092,6083pat0002,15,2,f +4092,6091,14,4,f +4092,6112,72,4,f +4092,6141,0,1,t +4092,6141,182,1,t +4092,6141,182,9,f +4092,6141,0,10,f +4092,6179,71,2,f +4092,6238,40,1,f +4092,64567,71,1,f +4092,6541,19,6,f +4092,6587,72,3,f +4092,6628,0,1,f +4092,73983,19,1,f +4092,970c00,15,1,f +4092,970x194,15,4,f +4092,970x199,25,2,f +4092,973pr0450c01,19,2,f +4092,973pr1301c01,25,2,f +4092,973pr1344c01,15,2,f +4092,973pr1348c01,15,1,f +4093,17356pr0001,4,1,f +4093,3626cpr1484,14,1,f +4093,88646,0,1,f +4093,970c00pr0715,0,1,f +4093,973pr2753c01,0,1,f +4093,99242pr0001,0,1,f +4094,12825,71,6,f +4094,12825,72,6,f +4094,2357,15,22,f +4094,2357,71,11,f +4094,2412b,71,24,f +4094,2412b,1,4,f +4094,2420,272,19,f +4094,2420,71,48,f +4094,2420,15,44,f +4094,2431,71,1,f +4094,2431,72,8,f +4094,2431,15,11,f +4094,2444,15,8,f +4094,2445,15,6,f +4094,2453b,15,2,f +4094,2454a,15,11,f +4094,2456,15,4,f +4094,2456,14,2,f +4094,2458,19,4,f +4094,2465,0,1,f +4094,2639,15,4,f +4094,2654,72,16,f +4094,2654,0,1,f +4094,2723,71,3,f +4094,2780,0,4,t +4094,2780,0,51,f +4094,2921,15,4,f +4094,3001,2,2,f +4094,3001,1,6,f +4094,3001,15,5,f +4094,3002,4,4,f +4094,3002,15,1,f +4094,3003,15,14,f +4094,3003,71,4,f +4094,3004,71,13,f +4094,3004,72,4,f +4094,3004,272,16,f +4094,3004,15,46,f +4094,3004,25,4,f +4094,3004,1,8,f +4094,3005,272,17,f +4094,3005,71,13,f +4094,3005,2,8,f +4094,3005,15,14,f +4094,3007,71,6,f +4094,3008,4,2,f +4094,3008,71,4,f +4094,3009,15,8,f +4094,3010,15,10,f +4094,3010,272,1,f +4094,3010,1,2,f +4094,3010,2,5,f +4094,30145,15,2,f +4094,3020,72,1,f +4094,3020,15,10,f +4094,3020,1,1,f +4094,3020,71,5,f +4094,3020,14,2,f +4094,3020,272,6,f +4094,3021,15,30,f +4094,3021,272,11,f +4094,3021,71,2,f +4094,3021,4,4,f +4094,3022,15,16,f +4094,3022,14,2,f +4094,3022,71,16,f +4094,3022,1,9,f +4094,3023,2,5,f +4094,3023,272,27,f +4094,3023,1,7,f +4094,3023,15,11,f +4094,3023,4,1,f +4094,3023,71,53,f +4094,30237a,15,2,f +4094,3024,15,42,f +4094,3024,15,2,t +4094,3024,71,9,f +4094,3024,47,2,f +4094,3024,272,40,f +4094,3031,1,2,f +4094,3032,15,7,f +4094,3032,72,2,f +4094,3034,71,8,f +4094,3034,15,2,f +4094,3035,71,1,f +4094,30361dps1,15,1,f +4094,30362,15,2,f +4094,30367cpr0006,71,1,f +4094,3037,15,2,f +4094,30374,71,2,f +4094,3038,15,4,f +4094,3038,272,2,f +4094,3039,15,17,f +4094,3040b,71,4,f +4094,3040b,15,20,f +4094,30414,14,7,f +4094,3045,15,12,f +4094,30503,71,4,f +4094,3062b,15,4,f +4094,3068b,72,2,f +4094,3068b,15,3,f +4094,3068b,1,2,f +4094,3068b,0,1,f +4094,3069b,272,4,f +4094,3069b,71,2,f +4094,3069b,15,25,f +4094,3069b,0,4,f +4094,3070b,15,10,f +4094,3070b,272,2,t +4094,3070b,272,6,f +4094,3070b,15,1,t +4094,32000,71,1,f +4094,32000,72,4,f +4094,32002,72,1,t +4094,32002,72,4,f +4094,32013,15,1,f +4094,32028,15,16,f +4094,32039,14,1,f +4094,32062,4,14,f +4094,32064b,4,8,f +4094,32123b,71,4,f +4094,32123b,71,1,t +4094,32184,4,8,f +4094,32184,0,4,f +4094,32187,71,3,f +4094,32278,71,6,f +4094,32324,71,2,f +4094,3245c,71,3,f +4094,3245c,14,2,f +4094,3245c,15,5,f +4094,32523,71,2,f +4094,32524,14,4,f +4094,3307,15,2,f +4094,33243,15,8,f +4094,3460,2,6,f +4094,3460,71,2,f +4094,3460,70,2,f +4094,3622,71,1,f +4094,3622,15,28,f +4094,3622,1,2,f +4094,3623,15,28,f +4094,3623,71,15,f +4094,3623,272,13,f +4094,3623,1,4,f +4094,3647,72,1,t +4094,3647,72,4,f +4094,3659,0,4,f +4094,3660,15,7,f +4094,3660,4,4,f +4094,3660,1,4,f +4094,3665,15,2,f +4094,3665,71,4,f +4094,3666,15,47,f +4094,3666,71,22,f +4094,3673,71,1,t +4094,3673,71,8,f +4094,3700,19,2,f +4094,3700,71,3,f +4094,3700,15,4,f +4094,3701,71,2,f +4094,3701,15,10,f +4094,3701,1,4,f +4094,3702,15,2,f +4094,3702,14,10,f +4094,3703,15,2,f +4094,3705,0,3,f +4094,3706,0,3,f +4094,3710,272,5,f +4094,3710,4,4,f +4094,3710,2,7,f +4094,3710,71,26,f +4094,3710,15,22,f +4094,3713,4,2,f +4094,3713,4,1,t +4094,3738,4,1,f +4094,3743,71,8,f +4094,3747b,0,2,f +4094,3749,19,2,f +4094,3794b,15,38,f +4094,3794b,71,4,f +4094,3795,71,13,f +4094,3795,1,2,f +4094,3795,15,18,f +4094,3832,15,4,f +4094,3894,15,2,f +4094,3894,4,4,f +4094,3937,0,2,f +4094,4032a,2,3,f +4094,4032a,72,2,f +4094,40490,72,6,f +4094,4070,71,2,f +4094,4070,1,2,f +4094,4070,2,8,f +4094,4081b,1,4,f +4094,4085c,1,4,f +4094,41239,72,2,f +4094,4150,71,2,f +4094,4162,15,8,f +4094,4162,272,3,f +4094,41678,4,1,f +4094,42003,14,10,f +4094,4274,1,5,t +4094,4274,71,2,f +4094,4274,71,1,t +4094,4274,1,21,f +4094,4287,15,8,f +4094,4287,71,4,f +4094,43857,71,2,f +4094,44126,0,2,f +4094,44359,71,2,f +4094,44728,15,12,f +4094,4477,71,2,f +4094,4477,15,7,f +4094,4519,71,10,f +4094,4589,72,1,f +4094,4599b,71,1,f +4094,4697b,71,1,t +4094,4697b,71,2,f +4094,48336,1,1,f +4094,50745,72,4,f +4094,50950,15,24,f +4094,50950,272,4,f +4094,50950,71,4,f +4094,52107,14,2,f +4094,52107,15,20,f +4094,53586,179,2,f +4094,54200,15,2,t +4094,54200,1,1,t +4094,54200,15,8,f +4094,54200,1,2,f +4094,59426,72,2,f +4094,59443,71,4,f +4094,6019,71,2,f +4094,60474,14,1,f +4094,60474,71,2,f +4094,60476,71,4,f +4094,60478,72,2,f +4094,60478,71,10,f +4094,60479,15,6,f +4094,60481,71,3,f +4094,60483,72,2,f +4094,60484,71,4,f +4094,6091,0,4,f +4094,6091,15,14,f +4094,6111,15,5,f +4094,61184,71,5,f +4094,6134,71,2,f +4094,6134,1,2,f +4094,61409,72,1,f +4094,6141,36,1,t +4094,6141,41,1,f +4094,6141,47,1,t +4094,6141,71,4,t +4094,6141,47,1,f +4094,6141,34,1,t +4094,6141,36,7,f +4094,6141,70,3,t +4094,6141,70,10,f +4094,6141,71,70,f +4094,6141,34,5,f +4094,6141,297,1,t +4094,6141,41,1,t +4094,6141,297,5,f +4094,61485,0,1,f +4094,6191,15,8,f +4094,6231,71,1,f +4094,6231,15,2,f +4094,62462,0,4,f +4094,62462,71,4,f +4094,62462,4,2,f +4094,63864,1,2,f +4094,63864,15,6,f +4094,63864,14,4,f +4094,63864,71,5,f +4094,63868,15,4,f +4094,63965,71,2,f +4094,63965,297,2,f +4094,64567,71,2,f +4094,64644,71,2,f +4094,64799,14,1,f +4094,6541,72,12,f +4094,6558,1,24,f +4094,6587,28,9,f +4094,6628,0,4,f +4094,6632,71,8,f +4094,6636,272,5,f +4094,6636,15,38,f +4094,73983,15,4,f +4094,758c02,70,4,f +4094,85543,15,4,f +4094,85984,1,2,f +4094,85984,71,2,f +4094,85984,15,8,f +4094,87083,72,7,f +4094,87087,4,3,f +4094,87087,15,21,f +4094,87544,272,4,f +4094,87580,272,1,f +4094,90498,0,1,f +4094,92690,71,2,f +4095,4180c05,4,2,f +4097,11164pat01,33,1,f +4097,11270,33,1,f +4097,11294,14,1,f +4097,11305,33,2,f +4097,2780,0,1,t +4097,2780,0,2,f +4097,40379,14,2,f +4097,4274,71,1,f +4097,4274,71,1,t +4097,43093,1,2,f +4097,53451,14,2,f +4097,53451,14,1,t +4097,53562,0,2,f +4097,55236,0,2,f +4097,87745,179,3,f +4097,90608,0,2,f +4097,90611,14,5,f +4097,90617,72,2,f +4097,90626,0,1,f +4097,90640,148,4,f +4097,90641,33,2,f +4097,90652,148,1,f +4097,93571,0,2,f +4097,93575,0,2,f +4097,98570pat01,15,1,f +4099,2460,4,1,f +4099,2479,1,1,f +4099,3003,1,1,f +4099,3004,1,1,f +4099,3021,7,1,f +4099,3034,15,3,f +4099,3039,1,1,f +4099,3039,33,1,f +4099,3660,1,1,f +4099,3666,4,2,f +4099,3795,7,1,f +4099,3795,4,2,f +4100,2357,15,1,f +4100,2412b,72,2,f +4100,2421,0,1,f +4100,2431,0,4,f +4100,3003,15,1,f +4100,3004,4,1,f +4100,3005,15,2,f +4100,3020,15,2,f +4100,3020,71,2,f +4100,3021,15,1,f +4100,3022,4,1,f +4100,3022,15,2,f +4100,3022,0,1,f +4100,3023,4,1,f +4100,3023,0,1,f +4100,3023,47,2,f +4100,3023,15,2,f +4100,3024,15,3,f +4100,3024,4,1,f +4100,30367b,4,1,f +4100,30602,40,1,f +4100,3069b,15,2,f +4100,3460,15,1,f +4100,3460,0,4,f +4100,3623,15,1,f +4100,3666,4,1,f +4100,3679,71,1,f +4100,3680,0,1,f +4100,3710,15,1,f +4100,3747b,15,1,f +4100,3794a,15,2,f +4100,3794a,4,2,f +4100,4081b,71,2,f +4100,4081b,72,2,f +4100,4150,0,1,f +4100,4286,4,1,f +4100,43722,4,1,f +4100,43723,4,1,f +4100,44728,4,1,f +4100,4488,71,1,f +4100,4589,72,2,f +4100,50950,15,2,f +4100,54200,4,2,f +4100,54200,15,2,f +4100,6141,72,1,t +4100,6141,71,1,t +4100,6141,71,5,f +4100,6141,72,2,f +4100,6141,46,1,f +4100,6141,46,1,t +4102,2982c01,1,1,f +4103,2420,0,8,f +4103,3023,0,16,f +4103,3024,0,16,f +4103,3460,0,8,f +4103,3623,0,8,f +4103,3666,0,8,f +4103,3710,0,16,f +4103,4477,0,4,f +4105,11090,297,1,f +4105,30173b,179,1,f +4105,30173b,0,1,f +4105,3626cpr1365,14,1,f +4105,970c00,4,1,f +4105,973pr2476c01,4,1,f +4105,98132,297,1,f +4105,98133,4,1,f +4105,98141,297,1,f +4108,3001,2,2,f +4108,3001,0,1,f +4108,3003,0,2,f +4108,4744pb10,14,1,f +4108,6215,0,2,f +4108,6248,4,2,f +4108,6249,4,1,f +4109,10247,0,3,f +4109,11153,72,2,f +4109,11212,72,3,f +4109,11212,71,4,f +4109,11213,71,3,f +4109,11215,71,1,f +4109,11217pr0007b,179,1,f +4109,11458,72,4,f +4109,11477,71,10,f +4109,14769,0,1,f +4109,14769,19,2,f +4109,15207,0,2,f +4109,15303,35,2,f +4109,15400,72,1,f +4109,15632pr0001,308,1,f +4109,2412b,70,1,f +4109,2412b,72,3,f +4109,2420,70,2,f +4109,2420,72,4,f +4109,2431,72,4,f +4109,2431,0,2,f +4109,2432,70,2,f +4109,2432,72,5,f +4109,2450,72,6,f +4109,2561,70,1,t +4109,2561,70,1,f +4109,2654,72,1,f +4109,2714a,71,2,f +4109,2730,0,2,f +4109,2736,71,1,t +4109,2736,71,1,f +4109,2780,0,42,f +4109,2780,0,4,t +4109,2817,71,1,f +4109,2825,71,2,f +4109,2877,0,2,f +4109,30043,0,2,f +4109,3009,4,1,f +4109,3009,71,3,f +4109,30136,19,2,f +4109,3020,72,1,f +4109,3020,70,2,f +4109,3021,72,6,f +4109,3021,71,8,f +4109,3022,72,2,f +4109,3023,0,7,f +4109,3023,72,4,f +4109,3023,71,14,f +4109,30304,72,1,f +4109,3031,72,2,f +4109,3032,71,1,f +4109,3032,72,1,f +4109,3034,72,2,f +4109,3036,71,1,f +4109,30363,72,1,f +4109,30374,71,2,f +4109,30375,19,1,f +4109,30375pr0001,19,1,f +4109,30376,19,2,f +4109,30377,19,2,f +4109,30377,19,1,t +4109,30378,19,1,f +4109,30378pr0001,19,1,f +4109,3040b,72,4,f +4109,30503,71,2,f +4109,3068b,72,1,f +4109,3069b,70,2,f +4109,3069b,0,2,f +4109,3069b,71,1,f +4109,3070b,72,1,f +4109,3070b,72,1,t +4109,32000,71,4,f +4109,32009,71,4,f +4109,32013,71,7,f +4109,32013,0,1,f +4109,32015,71,2,f +4109,32028,72,3,f +4109,32039,71,1,f +4109,32054,0,8,f +4109,32062,0,2,f +4109,32062,4,2,f +4109,32064b,14,4,f +4109,32123b,71,10,f +4109,32123b,71,2,t +4109,32140,72,6,f +4109,32316,71,2,f +4109,32333,71,2,f +4109,32348,71,2,f +4109,32348,72,2,f +4109,32523,71,2,f +4109,32523,0,2,f +4109,32525,72,2,f +4109,32530,4,1,f +4109,32532,71,1,f +4109,32556,19,2,f +4109,32557,0,4,f +4109,33299a,71,2,f +4109,3460,72,6,f +4109,3623,71,2,f +4109,3623,72,4,f +4109,3626cpr1149,78,1,f +4109,3666,71,4,f +4109,3666,72,2,f +4109,3673,71,1,t +4109,3673,71,4,f +4109,3700,0,8,f +4109,3701,0,4,f +4109,3702,71,1,f +4109,3705,0,2,f +4109,3706,0,2,f +4109,3709,72,1,f +4109,3710,71,6,f +4109,3713,71,1,t +4109,3713,71,2,f +4109,3738,71,1,f +4109,3794a,0,11,f +4109,3794b,72,4,f +4109,3832,71,3,f +4109,3839b,0,1,f +4109,3894,0,1,f +4109,3937,72,3,f +4109,3941,19,2,f +4109,3960,71,2,f +4109,3961,72,2,f +4109,4032a,0,1,f +4109,4032a,72,10,f +4109,41239,71,2,f +4109,41532,0,4,f +4109,41769,71,3,f +4109,41770,71,3,f +4109,41889,148,1,f +4109,41890,148,2,f +4109,42003,72,2,f +4109,42610,71,4,f +4109,42687,148,1,f +4109,4274,1,44,f +4109,4274,1,4,t +4109,43093,1,23,f +4109,43710,72,1,f +4109,43711,72,1,f +4109,43719,72,3,f +4109,43722,72,8,f +4109,43722,71,2,f +4109,43723,72,8,f +4109,43723,71,2,f +4109,43898,72,6,f +4109,44224,72,2,f +4109,44225,326,2,f +4109,44294,71,2,f +4109,44302a,72,8,f +4109,44375a,71,3,f +4109,44568,71,4,f +4109,44570,72,2,f +4109,44728,19,2,f +4109,44728,72,2,f +4109,4477,0,4,f +4109,4519,71,5,f +4109,4522,0,2,f +4109,4588,72,2,f +4109,4697b,71,1,t +4109,4697b,71,2,f +4109,4740,71,2,f +4109,4740,72,2,f +4109,48169,72,1,f +4109,4865b,0,2,f +4109,50304,71,1,f +4109,50305,71,1,f +4109,51739,71,2,f +4109,51739,72,4,f +4109,52501,72,2,f +4109,53585,0,2,f +4109,54200,71,1,f +4109,54200,71,1,t +4109,54383,72,1,f +4109,54384,72,1,f +4109,58247,0,3,f +4109,59230,19,1,t +4109,59230,19,2,f +4109,59443,0,1,f +4109,59900,72,1,f +4109,60474,326,3,f +4109,60483,71,2,f +4109,60483,0,5,f +4109,60484,71,6,f +4109,60897,0,2,f +4109,61252,71,1,f +4109,6134,71,3,f +4109,61409,72,5,f +4109,6141,72,2,f +4109,6141,71,2,t +4109,6141,72,1,t +4109,6141,0,2,f +4109,6141,0,1,t +4109,6141,71,5,f +4109,61485,0,1,f +4109,6179,0,1,f +4109,6231,0,2,f +4109,62462,320,1,f +4109,62462,71,6,f +4109,63864,71,2,f +4109,63864,326,3,f +4109,63864,0,2,f +4109,63868,71,2,f +4109,63965,0,1,f +4109,6541,0,1,f +4109,6553,0,2,f +4109,6558,1,30,f +4109,6587,28,6,f +4109,6629,72,2,f +4109,6636,72,2,f +4109,6636,326,2,f +4109,76766,0,1,f +4109,85943,72,2,f +4109,85984,72,4,f +4109,87082,0,1,f +4109,87083,72,2,f +4109,87580,0,1,f +4109,90194,71,2,f +4109,91988,72,2,f +4109,92099,72,2,f +4109,92107,72,2,f +4109,92593,326,4,f +4109,92946,72,2,f +4109,93606,71,8,f +4109,96874,25,1,t +4109,970c00pr0575,308,1,f +4109,970c11pr0574,0,1,f +4109,973c63,308,1,f +4109,973pr2484c01,326,1,f +4109,98138,41,2,f +4109,98138,41,1,t +4109,98138,179,2,f +4109,98138,179,1,t +4109,99207,71,2,f +4109,99780,72,2,f +4109,99781,71,2,f +4110,32013,7,1,f +4110,32062,0,1,f +4110,32073,0,1,f +4110,32123b,7,2,f +4110,32123b,7,1,t +4110,32174,0,6,f +4110,32269,7,1,f +4110,32270,7,3,f +4110,32474,0,1,f +4110,32475,0,2,f +4110,32489,0,1,f +4110,32553,7,1,f +4110,32554,34,1,f +4110,3706,0,1,f +4110,3713,7,2,f +4110,41670,8,2,f +4110,43093,0,1,t +4110,43093,0,2,f +4110,43557,8,2,f +4110,43558,135,1,f +4110,43559,135,2,f +4110,43616,0,1,f +4110,44034,135,2,f +4110,4519,0,2,f +4110,6553,7,1,f +4110,6587,8,2,f +4113,2357,7,2,f +4113,2377,0,1,f +4113,2412b,14,1,f +4113,2412b,7,2,f +4113,2431,8,2,f +4113,2431,7,3,f +4113,2431pc1,0,1,f +4113,2431pr0017,14,1,f +4113,2434,7,1,f +4113,2555,4,2,f +4113,2723,0,4,f +4113,2871a,7,2,f +4113,2877,7,8,f +4113,2877,4,8,f +4113,2877,8,22,f +4113,2878c01,7,4,f +4113,2920,0,2,f +4113,3001,7,1,f +4113,3003,14,1,f +4113,3003,0,2,f +4113,3004,0,2,f +4113,3004,7,2,f +4113,3005,7,14,f +4113,3005,14,4,f +4113,3005,4,16,f +4113,3007,0,1,f +4113,3010,4,2,f +4113,30136,8,8,f +4113,3020,4,2,f +4113,3020,7,7,f +4113,3020,8,2,f +4113,3021,4,3,f +4113,3022,4,2,f +4113,3022,7,1,f +4113,3023,8,2,f +4113,3023,14,6,f +4113,3023,4,13,f +4113,3023,7,9,f +4113,3024,7,4,f +4113,3024,14,8,f +4113,3024,4,10,f +4113,3030,7,1,f +4113,3032,4,1,f +4113,3034,7,2,f +4113,3035,7,1,f +4113,30357,7,2,f +4113,30374,7,4,f +4113,3039p05,15,2,f +4113,3040p04,7,1,f +4113,30414,7,2,f +4113,3063b,7,2,f +4113,3068b,7,2,f +4113,3068b,14,4,f +4113,3068bp70,15,1,f +4113,3069b,4,4,f +4113,3069b,8,1,f +4113,3069b,14,2,f +4113,3070b,4,1,t +4113,3070b,4,6,f +4113,3176,7,1,f +4113,3188,7,1,f +4113,3189,7,1,f +4113,32028,14,1,f +4113,32064b,0,2,f +4113,3460,4,2,f +4113,3460,7,4,f +4113,3622,7,3,f +4113,3623,4,6,f +4113,3623,14,2,f +4113,3623,7,4,f +4113,3660,7,2,f +4113,3666,4,1,f +4113,3666,14,2,f +4113,3666,7,8,f +4113,3700,14,1,f +4113,3710,4,5,f +4113,3710,7,8,f +4113,3710,14,3,f +4113,3794a,14,1,f +4113,3795,7,4,f +4113,3795,4,1,f +4113,3832,0,1,f +4113,3941,7,4,f +4113,4006,0,1,f +4113,4022,7,1,f +4113,4025,0,2,f +4113,4070,4,6,f +4113,4079,1,1,f +4113,4085c,4,8,f +4113,4085c,7,10,f +4113,4093a,4,1,f +4113,4162,7,4,f +4113,4162,8,4,f +4113,4328,7,1,f +4113,43822,9999,1,f +4113,4477,4,2,f +4113,4477,14,2,f +4113,4477,7,2,f +4113,4519,0,1,f +4113,4623,0,4,f +4113,4862,47,1,f +4113,4864bpx2,47,2,f +4113,4864bpx3,47,2,f +4113,4865a,14,2,f +4113,4865a,7,4,f +4113,4865a,47,2,f +4113,6005,4,8,f +4113,6081,7,2,f +4113,6091,8,2,f +4113,6091,4,8,f +4113,6112,7,2,f +4113,6141,47,2,f +4113,6141,47,1,t +4113,6215,7,18,f +4113,6215,14,2,f +4113,6215,4,8,f +4113,63965,4,4,f +4113,6567c01,4,1,f +4113,6636,7,6,f +4113,6636,4,2,f +4113,71182,383,2,f +4113,73092,0,2,f +4114,2420,0,2,f +4114,2441,0,1,f +4114,2446,15,1,f +4114,2447,41,1,t +4114,2447,41,1,f +4114,3005,0,2,f +4114,3022,14,1,f +4114,3298p57,0,1,f +4114,3623,14,2,f +4114,3626bpr0001,14,1,f +4114,3641,0,4,f +4114,3710,14,1,f +4114,3788,0,1,f +4114,3829c01,14,1,f +4114,3937,7,2,f +4114,3938,7,2,f +4114,4624,7,4,f +4114,4865a,0,2,f +4114,970c00,15,1,f +4114,973p0bc01,15,1,f +4115,3036,15,4,f +4116,10113,0,1,f +4116,12825,71,2,f +4116,15207,25,1,f +4116,2357,0,4,f +4116,2376,0,1,f +4116,2412b,19,2,f +4116,2412b,85,3,f +4116,2412b,80,2,f +4116,2412b,25,3,f +4116,2431,19,2,f +4116,2431,0,2,f +4116,2436,15,1,f +4116,2436,0,1,f +4116,2456,0,1,f +4116,2456,4,1,f +4116,2458,19,2,f +4116,2465,19,1,f +4116,2540,19,1,f +4116,2780,0,1,t +4116,2780,0,4,f +4116,298c02,71,1,f +4116,298c02,71,1,t +4116,3001,2,1,f +4116,3003,19,1,f +4116,3003,0,4,f +4116,3004,25,3,f +4116,3004,15,1,f +4116,3004,4,1,f +4116,3004,85,3,f +4116,3004,0,9,f +4116,3004,2,2,f +4116,3005,2,6,f +4116,3005,0,2,f +4116,3005,19,3,f +4116,3009,0,3,f +4116,3009,19,2,f +4116,3010,0,1,f +4116,3010,15,1,f +4116,3010,19,9,f +4116,30136,19,9,f +4116,30157,71,2,f +4116,30162,72,4,f +4116,3020,0,1,f +4116,3020,2,2,f +4116,3020,71,1,f +4116,3021,25,1,f +4116,3021,0,12,f +4116,3021,15,6,f +4116,3021,85,1,f +4116,3021,72,2,f +4116,3022,71,2,f +4116,3022,2,1,f +4116,3023,25,5,f +4116,3023,71,4,f +4116,3023,85,5,f +4116,3023,0,14,f +4116,3023,14,3,f +4116,3023,4,6,f +4116,30237a,72,1,f +4116,3024,72,2,f +4116,3024,71,8,f +4116,3024,36,2,f +4116,3024,47,4,f +4116,3024,46,2,f +4116,3024,19,2,f +4116,3027,72,1,f +4116,3030,0,1,f +4116,3031,71,1,f +4116,3032,72,1,f +4116,3032,0,1,f +4116,3033,72,1,f +4116,3033,0,2,f +4116,3034,72,4,f +4116,3034,15,1,f +4116,3034,0,2,f +4116,3037,4,1,f +4116,3037,72,2,f +4116,30383,0,2,f +4116,30383,71,2,f +4116,30391,0,4,f +4116,30395,72,1,f +4116,30396,0,1,f +4116,3039pr0001,15,1,f +4116,3039pr0014,0,1,f +4116,30414,4,1,f +4116,30552,72,2,f +4116,30553,0,2,f +4116,30554a,71,1,f +4116,30602,40,2,f +4116,3062b,0,2,f +4116,3062b,19,16,f +4116,30663,71,1,f +4116,3068b,0,2,f +4116,3068b,72,1,f +4116,3069b,85,3,f +4116,3069b,40,3,f +4116,3069b,25,3,f +4116,3069b,0,6,f +4116,3069b,4,3,f +4116,3069bpr0100,2,3,f +4116,32028,72,1,f +4116,32062,4,3,f +4116,32449,72,2,f +4116,3460,4,2,f +4116,3460,0,2,f +4116,3622,1,2,f +4116,3622,0,2,f +4116,3624,0,1,f +4116,3626bpr0472,78,1,f +4116,3626bpr0896,78,1,f +4116,3626bpr0907,78,1,f +4116,3626bpr0908,78,1,f +4116,3626bpr0909,78,1,f +4116,3660,4,1,f +4116,3665,15,3,f +4116,3665,25,3,f +4116,3666,25,2,f +4116,3666,0,2,f +4116,3666,85,2,f +4116,3666,72,8,f +4116,3673,71,1,t +4116,3673,71,4,f +4116,3700,14,2,f +4116,3701,72,4,f +4116,3702,4,2,f +4116,3710,72,4,f +4116,3710,15,1,f +4116,3710,2,6,f +4116,3710,14,3,f +4116,3795,71,1,f +4116,3829c01,4,1,f +4116,3829c01,71,1,f +4116,3962b,0,1,f +4116,4079,70,2,f +4116,4081b,0,2,f +4116,41334,0,2,f +4116,4162,0,1,f +4116,41669,179,1,f +4116,41678,72,1,f +4116,41747,0,1,f +4116,41748,0,1,f +4116,41769,0,1,f +4116,41770,0,1,f +4116,4274,1,3,f +4116,4274,1,2,t +4116,43337,85,1,f +4116,43720,0,1,f +4116,43721,0,1,f +4116,44126,0,1,f +4116,44302a,71,2,f +4116,44567a,71,1,f +4116,44728,72,4,f +4116,4510,19,1,f +4116,4589,297,4,f +4116,4589,182,2,f +4116,4589,4,2,f +4116,4599b,15,2,f +4116,4733,72,1,f +4116,4864b,71,3,f +4116,4864b,40,1,f +4116,50950,0,10,f +4116,50950,19,12,f +4116,50950,15,2,f +4116,52031,85,1,f +4116,54200,47,1,t +4116,54200,25,1,t +4116,54200,46,4,f +4116,54200,36,4,f +4116,54200,85,1,t +4116,54200,0,10,f +4116,54200,36,1,t +4116,54200,85,1,f +4116,54200,0,1,t +4116,54200,47,2,f +4116,54200,25,1,f +4116,54200,46,1,t +4116,55706,0,2,f +4116,55981,71,4,f +4116,55981,14,4,f +4116,56630,0,1,f +4116,57895,40,2,f +4116,58090,0,4,f +4116,58176,182,2,f +4116,6019,0,2,f +4116,60471,0,2,f +4116,60474,0,1,f +4116,60596,0,3,f +4116,60797c02,0,1,f +4116,61072,179,1,f +4116,61184,71,4,f +4116,6140,0,1,f +4116,61409,0,6,f +4116,61409,0,1,t +4116,6141,297,1,f +4116,6141,47,2,f +4116,6141,297,1,t +4116,6141,80,1,t +4116,6141,80,1,f +4116,6141,47,1,t +4116,6141,36,1,t +4116,6141,36,1,f +4116,61482,71,1,f +4116,61482,71,1,t +4116,61485,0,1,f +4116,62113,0,1,f +4116,62361,0,4,f +4116,64728,4,1,f +4116,6541,72,3,f +4116,6564,0,1,f +4116,6565,0,1,f +4116,6587,28,1,f +4116,6632,14,2,f +4116,6632,72,1,f +4116,6636,0,3,f +4116,6636,71,2,f +4116,73983,71,2,f +4116,85940,0,2,f +4116,85959pat0001,36,2,f +4116,85984,0,9,f +4116,87079,0,1,f +4116,92280,4,2,f +4116,92579,40,1,f +4116,92583,40,1,f +4116,92585,4,1,f +4116,92946,19,2,f +4116,92950,19,1,f +4116,93274,4,1,f +4116,96874,25,1,t +4116,970c00,72,2,f +4116,970c00,272,1,f +4116,970c00,0,1,f +4116,970d14pr0303,25,1,f +4116,973pr1961c01,0,1,f +4116,973pr1965c01,25,1,f +4116,973pr1966c01,25,2,f +4116,973pr1991c01,73,1,f +4116,98138pr0007,179,1,f +4116,98138pr0007,179,1,t +4116,98282,85,2,f +4116,98282,25,2,f +4116,98721,0,1,f +4116,98723pr0001,15,1,f +4117,15354,4,1,f +4117,15355,0,1,f +4117,15357,0,1,f +4117,15359pr0003,41,1,f +4117,15362,0,4,f +4117,32002,19,1,f +4117,32062,4,1,f +4117,87747,0,5,f +4117,90612,41,4,f +4117,90630,0,1,f +4117,90641,41,1,f +4117,93571,0,5,f +4117,98565,72,1,f +4117,98590,0,1,f +4120,11477,4,2,f +4120,15068,0,1,f +4120,18649,0,1,f +4120,2397,0,1,f +4120,24201,71,6,f +4120,24309,15,1,f +4120,2432,0,1,f +4120,2446,1,1,f +4120,2447,47,1,f +4120,2447,47,1,t +4120,2540,0,1,f +4120,2877,72,1,f +4120,3010,72,2,f +4120,3020,0,3,f +4120,3023,72,1,f +4120,3068b,4,1,f +4120,3069b,15,1,f +4120,3626cpr2088a,14,1,f +4120,3829c01,4,1,f +4120,3839b,72,3,f +4120,4085c,72,2,f +4120,41769,15,1,f +4120,41770,15,1,f +4120,47457,72,1,f +4120,47720,0,2,f +4120,47755,0,1,f +4120,51739,4,1,f +4120,52036,72,1,f +4120,55981,71,4,f +4120,60478,4,2,f +4120,61072,179,3,f +4120,61252,0,2,f +4120,63864,4,2,f +4120,63864,15,2,f +4120,63868,71,2,f +4120,85984,4,1,f +4120,85984pr0143,72,1,f +4120,87087,72,2,f +4120,92280,4,2,f +4120,92402,0,4,f +4120,970c00,0,1,f +4120,973pr3630c01,15,1,f +4120,98138,36,1,t +4120,98138,36,2,f +4120,98138pr0037,15,4,f +4120,98138pr0037,15,1,t +4120,98834,15,1,f +4120,99781,71,4,f +4121,3040b,2,4,f +4121,3941,70,1,f +4121,4032a,2,2,f +4121,4286,2,4,f +4121,59900,2,1,f +4121,60474,4,1,f +4121,6141,36,1,t +4121,6141,46,4,f +4121,6141,46,1,t +4121,6141,36,4,f +4123,3005pe1,14,1,t +4123,3005pe1,14,2,f +4123,3021,14,1,f +4123,3022,4,1,f +4123,3039,14,1,f +4123,3040b,14,2,f +4123,3660,14,1,f +4123,3710,14,1,f +4123,4589,4,1,f +4123,4589,4,2,t +4123,6141,15,1,f +4123,6141,15,4,t +4124,2412b,0,1,f +4124,2420,0,4,f +4124,2431,320,3,f +4124,2445,0,1,f +4124,2454a,19,1,f +4124,2654,4,1,f +4124,3001,19,1,f +4124,3001,320,1,f +4124,30115,2,2,f +4124,30132,72,1,f +4124,30132,72,1,t +4124,30136,28,1,f +4124,30141,72,1,f +4124,30145,0,1,f +4124,30149,320,1,f +4124,30150,70,1,f +4124,30157,71,2,f +4124,3020,484,1,f +4124,3020,4,1,f +4124,3020,28,13,f +4124,3020,0,3,f +4124,3021,72,2,f +4124,3022,0,4,f +4124,3023,19,5,f +4124,3031,72,1,f +4124,3032,72,1,f +4124,3045,272,2,f +4124,3048c,297,1,f +4124,3068b,4,1,f +4124,3069b,484,8,f +4124,3245c,19,3,f +4124,3626bpr0753a,14,1,f +4124,3626bpr0755a,71,1,f +4124,3626bpr0756,14,1,f +4124,3700,72,1,f +4124,3701,72,1,f +4124,3710,71,2,f +4124,3794b,0,1,f +4124,3795,0,1,f +4124,3795,71,1,f +4124,3829c01,0,1,f +4124,3837,0,1,f +4124,3958,28,1,f +4124,40378,28,1,f +4124,40379,28,1,f +4124,4081b,0,2,f +4124,4085c,4,3,f +4124,43093,1,3,f +4124,43337,40,1,f +4124,43722,72,1,f +4124,43723,72,1,f +4124,44567a,71,1,f +4124,4460b,19,8,f +4124,4623,0,1,f +4124,4740,72,2,f +4124,47753pr0001,28,1,f +4124,51739,272,10,f +4124,51739,320,1,f +4124,52038,72,1,f +4124,53451,15,2,f +4124,53451,15,1,t +4124,54200,297,4,f +4124,54200,297,1,t +4124,56897,0,4,f +4124,56902,71,4,f +4124,57908,72,3,f +4124,57909a,72,2,f +4124,60471,0,1,f +4124,60476,0,2,f +4124,60581,0,2,f +4124,6091,297,22,f +4124,6141,47,6,f +4124,6141,72,1,t +4124,6141,47,1,t +4124,6141,72,8,f +4124,6141,297,2,f +4124,6141,297,1,t +4124,6182,19,1,f +4124,61976,19,1,f +4124,62696,484,1,f +4124,62810,0,1,f +4124,64728,4,1,f +4124,7325stk01,9999,1,t +4124,87079,72,1,f +4124,87408,0,1,f +4124,87580,28,6,f +4124,90462pr0001,28,1,f +4124,92013,0,8,f +4124,93251,297,1,f +4124,93668,9999,1,f +4124,970c00,0,1,f +4124,970c00,28,1,f +4124,970c00pr0195a,71,1,f +4124,973pb0780c01,71,1,f +4124,973pr1721ac01,19,1,f +4124,973pr1724bc01,15,1,f +4126,3005,71,1,f +4126,3023,33,1,f +4126,3024,72,1,f +4126,3700,71,1,f +4126,3794b,72,1,f +4126,4081b,72,2,f +4126,4274,1,1,f +4126,4274,1,1,t +4126,4740,72,1,f +4126,4740,36,1,f +4126,54200,71,1,t +4126,54200,72,1,f +4126,54200,72,1,t +4126,54200,71,4,f +4127,2342,4,1,f +4127,2342,0,2,f +4127,2343,14,3,f +4127,2345,15,2,f +4127,2374,7,1,f +4127,298c02,0,4,f +4127,298c02,7,2,f +4127,3001,0,1,f +4127,3001,1,1,f +4127,3002,15,2,f +4127,3002,0,2,f +4127,3003,0,2,f +4127,3004,1,2,f +4127,3004,15,7,f +4127,3004,0,3,f +4127,3005,15,4,f +4127,3007,0,2,f +4127,3009,15,6,f +4127,3009,7,2,f +4127,3010,15,2,f +4127,3020,4,1,f +4127,3020,15,1,f +4127,3021,0,1,f +4127,3021,15,4,f +4127,3021,4,2,f +4127,3022,0,2,f +4127,3022,15,2,f +4127,3023,4,1,f +4127,3023,15,2,f +4127,3024,34,1,f +4127,3024,36,1,f +4127,3033,7,1,f +4127,3034,15,1,f +4127,3035,15,1,f +4127,3037,15,1,f +4127,3039p23,15,1,f +4127,3039p32,15,2,f +4127,3040b,15,6,f +4127,3045,15,2,f +4127,3062b,15,1,f +4127,3062b,14,5,f +4127,3068b,0,1,f +4127,3069b,0,2,f +4127,3127,7,1,f +4127,3298,0,1,f +4127,3299,0,1,f +4127,3622,15,2,f +4127,3623,15,4,f +4127,3624,15,1,f +4127,3626apr0001,14,3,f +4127,3659,15,2,f +4127,3660,15,2,f +4127,3665,15,4,f +4127,3666,15,1,f +4127,3679,7,1,f +4127,3680,0,2,f +4127,3684,0,1,f +4127,3684,15,1,f +4127,3710,1,2,f +4127,3710,15,4,f +4127,3710,0,1,f +4127,3794a,7,1,f +4127,3795,15,1,f +4127,3795,7,2,f +4127,3829c01,4,2,f +4127,3834,15,2,f +4127,3937,0,2,f +4127,3937,1,2,f +4127,3938,1,2,f +4127,3938,0,2,f +4127,4032a,0,1,f +4127,4070,0,4,f +4127,4083,0,2,f +4127,4085b,0,2,f +4127,4175,4,2,f +4127,4208,0,1,f +4127,4209,15,1,f +4127,4213,15,4,f +4127,4275b,7,1,f +4127,4284,41,2,f +4127,4286,0,2,f +4127,4318,15,1,f +4127,4349,0,2,f +4127,4589,46,1,f +4127,4590,0,1,f +4127,4590,15,1,f +4127,4599a,14,2,f +4127,4625,15,4,f +4127,4733,0,1,f +4127,4740,15,1,f +4127,4859,0,1,f +4127,4861,15,1,f +4127,4873,0,1,f +4127,6141,46,2,f +4127,6141,33,2,f +4127,6141,34,2,f +4127,6141,0,8,f +4127,73090b,0,2,f +4127,970c00,0,1,f +4127,970c00,4,2,f +4127,973p0ac04,4,2,f +4127,973pb0049c01,0,1,f +4127,bfloat3c01,4,1,f +4127,rb00164,0,1,f +4128,118t1,9999,1,f +4128,2653,71,1,f +4128,3005,33,1,f +4128,3005,182,1,f +4128,30150,70,1,f +4128,3020,70,1,f +4128,3021,70,2,f +4128,59900,4,4,f +4128,59900,297,4,f +4128,6141,25,1,f +4128,6141,1,1,f +4130,2436,0,2,f +4130,2540,4,2,f +4130,3020,72,1,f +4130,3024,72,1,f +4130,30663,0,4,f +4130,3794b,72,2,f +4130,4032a,4,2,f +4130,47457,4,1,f +4130,48336,0,1,f +4130,51739,71,2,f +4130,54200,72,5,f +4130,60470a,0,1,f +4130,62113,0,1,f +4131,22667,27,8,f +4131,22667,4,1,t +4131,22667,4,4,f +4131,22667,27,1,t +4131,2420,15,32,f +4131,2431,15,2,f +4131,2431,4,32,f +4131,2431,72,4,f +4131,2431pr0028,72,1,f +4131,2436,1,2,f +4131,2436,4,2,f +4131,2436,14,2,f +4131,2436,0,2,f +4131,2444,71,8,f +4131,2449,320,96,f +4131,2454a,15,27,f +4131,2460,71,21,f +4131,2462,71,8,f +4131,2476a,15,18,f +4131,2540,15,12,f +4131,2555,0,6,f +4131,2555,15,8,f +4131,2654,46,2,f +4131,2736,71,8,f +4131,2780,0,29,f +4131,2780,0,3,t +4131,3001,72,3,f +4131,3002,15,20,f +4131,3003,272,4,f +4131,30033,15,1,f +4131,3004,272,21,f +4131,3004,15,82,f +4131,3004,4,3,f +4131,3005,72,4,f +4131,3005,71,4,f +4131,3005,15,4,f +4131,3008,15,8,f +4131,3009,15,12,f +4131,3010,27,8,f +4131,3010,15,14,f +4131,3010,73,8,f +4131,3010,272,4,f +4131,30136,72,3,f +4131,30137,71,1,f +4131,30153,47,64,f +4131,30153,45,4,f +4131,30153,42,4,f +4131,30153,33,2,f +4131,3020,15,26,f +4131,3020,1,4,f +4131,3020,19,19,f +4131,3021,19,6,f +4131,3021,272,3,f +4131,3022,272,17,f +4131,3022,72,4,f +4131,3022,71,4,f +4131,3022,15,44,f +4131,3022,19,8,f +4131,3023,14,2,f +4131,3023,28,26,f +4131,3023,19,25,f +4131,3023,4,2,f +4131,3023,15,24,f +4131,3023,72,4,f +4131,3023,71,4,f +4131,3023,1,2,f +4131,3024,15,48,f +4131,3024,72,14,f +4131,3024,0,6,f +4131,3024,272,56,f +4131,3024,71,14,f +4131,3031,72,1,f +4131,3031,1,1,f +4131,3035,19,16,f +4131,30357,72,4,f +4131,30374,0,1,f +4131,30385,82,16,f +4131,3039,72,3,f +4131,30592,72,1,f +4131,3062b,15,25,f +4131,3062b,4,2,f +4131,3062b,1,2,f +4131,3062b,19,25,f +4131,3062b,14,2,f +4131,3063b,4,4,f +4131,30648,0,8,f +4131,3068b,272,3,f +4131,3068b,70,40,f +4131,3069b,19,37,f +4131,3069b,1,2,f +4131,3069b,73,2,f +4131,3069b,70,16,f +4131,3069b,4,10,f +4131,3069b,15,32,f +4131,3069b,14,2,f +4131,3070b,70,8,f +4131,3070b,70,1,t +4131,3070b,73,2,t +4131,3070b,14,1,t +4131,3070b,73,22,f +4131,3070b,14,4,f +4131,3070b,4,4,f +4131,3070b,4,1,t +4131,3176,72,8,f +4131,32000,19,4,f +4131,32001,71,5,f +4131,32016,0,48,f +4131,32054,4,9,f +4131,32062,4,8,f +4131,32064b,320,70,f +4131,32073,71,8,f +4131,32123b,14,10,f +4131,32123b,14,2,t +4131,32126,71,8,f +4131,32138,0,4,f +4131,32192,72,8,f +4131,32316,15,8,f +4131,3245b,15,49,f +4131,32524,72,1,f +4131,33303,15,8,f +4131,3460,1,16,f +4131,3623,72,2,f +4131,3623,1,2,f +4131,3623,71,2,f +4131,3623,15,2,f +4131,3623,19,8,f +4131,3624,320,1,f +4131,3626bpr0001,14,1,f +4131,3626bpr0043,14,2,f +4131,3626bpr0252,14,2,f +4131,3626bpr0270,14,1,f +4131,3626bpr0386,14,1,f +4131,3626bpr0387,14,3,f +4131,3626bpr0411,14,3,f +4131,3626bpr0498,14,2,f +4131,3626bpr0499,14,2,f +4131,3647,72,1,f +4131,3649,71,1,f +4131,3659,320,12,f +4131,3665,15,6,f +4131,3665,71,6,f +4131,3665,72,6,f +4131,3665,19,3,f +4131,3666,15,32,f +4131,3666,272,4,f +4131,3673,71,1,t +4131,3673,71,8,f +4131,3700,15,23,f +4131,3701,15,36,f +4131,3702,272,2,f +4131,3703,72,6,f +4131,3705,0,33,f +4131,3706,0,33,f +4131,3707,0,1,f +4131,3710,320,49,f +4131,3710,272,28,f +4131,3710,73,5,f +4131,3710,4,8,f +4131,3713,4,3,t +4131,3713,4,77,f +4131,3794b,1,2,f +4131,3794b,19,8,f +4131,3794b,272,80,f +4131,3794b,71,4,f +4131,3794b,72,4,f +4131,3794b,15,27,f +4131,3794b,4,2,f +4131,3794b,14,2,f +4131,3795,15,26,f +4131,3795,72,3,f +4131,3830,15,36,f +4131,3831,15,36,f +4131,3832,19,2,f +4131,3894,15,8,f +4131,3901,70,1,f +4131,3901,0,1,f +4131,3937,15,12,f +4131,3938,15,12,f +4131,3941,19,14,f +4131,3941,272,2,f +4131,3957a,71,2,f +4131,3960,15,1,f +4131,3961,72,1,f +4131,4032a,15,3,f +4131,4070,320,4,f +4131,4081b,72,4,f +4131,4085c,73,2,f +4131,4085c,0,6,f +4131,4085c,15,64,f +4131,4151b,72,2,f +4131,4162,272,9,f +4131,4162,19,18,f +4131,4162,15,1,f +4131,41677,1,32,f +4131,4186,2,1,f +4131,41879a,272,3,f +4131,41879a,71,1,f +4131,42445,71,7,f +4131,42610,71,8,f +4131,4274,1,4,t +4131,4274,1,96,f +4131,4286,71,2,f +4131,4286,15,2,f +4131,4286,72,2,f +4131,4287,71,4,f +4131,4287,15,4,f +4131,4287,72,4,f +4131,43093,1,4,f +4131,44294,71,1,f +4131,44309,0,1,f +4131,44728,19,16,f +4131,4485,4,1,f +4131,4485,1,1,f +4131,4485,0,1,f +4131,4495b,297,1,f +4131,4519,71,9,f +4131,4623,15,16,f +4131,47457,297,8,f +4131,47905,19,8,f +4131,48336,19,8,f +4131,4865a,15,12,f +4131,50451,15,8,f +4131,50950,0,6,f +4131,50950,272,32,f +4131,50951,0,8,f +4131,54200,15,4,f +4131,54200,71,1,t +4131,54200,0,6,f +4131,54200,14,4,f +4131,54200,14,1,t +4131,54200,0,1,t +4131,54200,71,4,f +4131,54200,72,1,t +4131,54200,4,1,t +4131,54200,15,1,t +4131,54200,1,5,f +4131,54200,72,4,f +4131,54200,4,4,f +4131,54200,1,1,t +4131,54200,272,2,t +4131,54200,272,80,f +4131,55206c04,72,1,f +4131,55982,71,8,f +4131,56145,71,1,f +4131,58119,71,1,f +4131,58120,71,1,f +4131,59443,0,18,f +4131,6005,15,6,f +4131,6005,1,2,f +4131,60470a,15,8,f +4131,60478,4,36,f +4131,60483,72,17,f +4131,6091,15,8,f +4131,6091,1,2,f +4131,6093,0,2,f +4131,6093,70,1,f +4131,61184,71,1,f +4131,6132,15,1,f +4131,6132,19,8,f +4131,6141,0,25,f +4131,6141,15,2,t +4131,6141,15,18,f +4131,6141,47,35,f +4131,6141,47,1,t +4131,6141,0,3,t +4131,6182,15,24,f +4131,62361,15,32,f +4131,62537pr0001,4,8,f +4131,6256,82,8,f +4131,63868,4,32,f +4131,63868,15,8,f +4131,63965,71,7,f +4131,6541,19,8,f +4131,6541,15,65,f +4131,6553,0,8,f +4131,6575,72,1,f +4131,6587,72,22,f +4131,6636,19,32,f +4131,6636,15,12,f +4131,76138,71,1,f +4131,85195,15,8,f +4131,970c00,379,1,f +4131,970c00,0,1,f +4131,970c00,4,1,f +4131,970c00,288,1,f +4131,970c00,1,1,f +4131,973c01,1,1,f +4131,973pr0805c01,15,1,f +4131,973pr1163c01,272,2,f +4131,973pr1173c01,4,2,f +4131,973pr1204c01,15,1,f +4131,973pr1244c01,73,2,f +4132,3626bp69,14,1,f +4132,71966,15,1,f +4132,769,334,1,f +4132,970x002,15,1,f +4132,973px176c01,15,1,f +4135,11090,0,2,f +4135,11096,179,1,f +4135,11098,179,1,f +4135,11106,179,1,f +4135,11127,41,1,f +4135,11211,19,2,f +4135,11458,72,10,f +4135,12825,0,2,f +4135,13361pr0003,0,1,f +4135,13548,308,2,f +4135,15068,0,1,f +4135,15071,0,1,f +4135,15279,10,1,f +4135,15362,0,8,f +4135,15464pr0001,70,1,f +4135,2419,0,1,f +4135,2419,2,1,f +4135,2780,0,2,f +4135,2877,0,1,f +4135,2921,70,2,f +4135,3020,27,2,f +4135,3021,72,2,f +4135,3021,14,1,f +4135,3022,70,4,f +4135,3023,27,4,f +4135,30238,4,1,f +4135,30238,0,1,f +4135,3031,0,1,f +4135,3035,72,1,f +4135,30374,70,1,f +4135,3039,0,1,f +4135,3062b,27,2,f +4135,3068b,72,1,f +4135,3176,0,2,f +4135,32002,19,8,f +4135,32015,0,14,f +4135,32016,70,6,f +4135,32054,4,4,f +4135,32059,72,1,f +4135,32062,4,2,f +4135,32065,0,4,f +4135,32073,71,4,f +4135,32123b,14,1,f +4135,32192,72,4,f +4135,32270,0,1,f +4135,32526,0,2,f +4135,3298,70,1,f +4135,33085,14,2,f +4135,3460,0,2,f +4135,3622,27,2,f +4135,3626cpr1206,0,1,f +4135,3626cpr1356,70,1,f +4135,3665,0,2,f +4135,3666,72,2,f +4135,3700,4,3,f +4135,3700,71,4,f +4135,3701,72,1,f +4135,3705,0,2,f +4135,3710,71,2,f +4135,3710,1,1,f +4135,3713,71,2,f +4135,3713,4,2,f +4135,3795,70,2,f +4135,41747,0,1,f +4135,41748,0,1,f +4135,4274,71,4,f +4135,43093,1,12,f +4135,44126,0,1,f +4135,4497,148,1,f +4135,4519,71,9,f +4135,4740pr0003,35,2,f +4135,50950,0,4,f +4135,52501,72,2,f +4135,53451,27,8,f +4135,54200,71,2,f +4135,54383,0,1,f +4135,54384,0,1,f +4135,57585,71,2,f +4135,59426,72,1,f +4135,59443,4,2,f +4135,59900,35,8,f +4135,60476,71,2,f +4135,60478,72,2,f +4135,60483,0,10,f +4135,6091,0,2,f +4135,61072,179,1,f +4135,61184,71,2,f +4135,61409,0,2,f +4135,6141,35,9,f +4135,6141,41,1,f +4135,6141,179,4,f +4135,6541,72,2,f +4135,6553,71,10,f +4135,6585,0,1,f +4135,6587,28,2,f +4135,6589,19,3,f +4135,6628,0,2,f +4135,6636,0,2,f +4135,85984,72,3,f +4135,87083,72,4,f +4135,87580,71,1,f +4135,90981,15,1,f +4135,92280,71,2,f +4135,970c00pr0569,0,1,f +4135,970c00pr0589,70,1,f +4135,973pr2480c01,71,1,f +4135,973pr2537c01,70,1,f +4135,98138,36,4,f +4135,98138,41,1,f +4135,98313,0,2,f +4135,99781,71,1,f +4138,10124,0,1,f +4138,10126,71,1,f +4138,10127,71,1,f +4138,10154,0,1,f +4138,11090,0,4,f +4138,11215,1,2,f +4138,11476,71,1,f +4138,14417,72,1,f +4138,14704,71,1,f +4138,15068,72,4,f +4138,15207,70,2,f +4138,15303,33,3,f +4138,15392,72,2,f +4138,15400,72,2,f +4138,15403,0,2,f +4138,15462,28,1,f +4138,15554pr0001,4,1,f +4138,17114,72,1,f +4138,18663,47,1,f +4138,18987,0,1,f +4138,19017pr0001,0,1,f +4138,19185,0,1,f +4138,2357,14,2,f +4138,2412b,0,1,f +4138,2415,71,1,f +4138,2420,71,2,f +4138,2432,72,2,f +4138,2540,71,3,f +4138,2654,0,2,f +4138,2780,0,6,f +4138,3003,71,2,f +4138,30031,0,1,f +4138,30136,19,1,f +4138,30150,84,1,f +4138,30162,72,1,f +4138,3020,0,1,f +4138,3020,1,1,f +4138,3020,71,1,f +4138,3022,4,2,f +4138,3023,1,2,f +4138,3023,71,1,f +4138,3023,0,9,f +4138,3024,47,6,f +4138,3032,70,1,f +4138,3034,72,1,f +4138,30373,72,1,f +4138,30377,72,2,f +4138,3039,71,1,f +4138,3040b,14,2,f +4138,30602,47,2,f +4138,3062b,72,1,f +4138,3065,47,4,f +4138,3068b,0,1,f +4138,3069b,14,5,f +4138,3069b,47,4,f +4138,32063,0,2,f +4138,3245c,0,2,f +4138,32530,72,2,f +4138,33085,14,4,f +4138,3464,72,1,f +4138,3623,71,4,f +4138,3626cpr0902,78,1,f +4138,3626cpr1288,4,1,f +4138,3626cpr1613,0,1,f +4138,3626cpr1615,78,1,f +4138,3626cpr1616,78,1,f +4138,3660,15,1,f +4138,3660,72,2,f +4138,3665,1,2,f +4138,3700,72,2,f +4138,3710,15,4,f +4138,3710,1,3,f +4138,3821,1,1,f +4138,3822,1,1,f +4138,3823,47,1,f +4138,3832,15,1,f +4138,3956,71,2,f +4138,3957b,0,2,f +4138,4032a,72,1,f +4138,4032a,14,5,f +4138,4070,47,2,f +4138,4070,71,2,f +4138,4070,1,2,f +4138,4081b,71,2,f +4138,41854,0,1,f +4138,43093,1,4,f +4138,43121,0,1,f +4138,43713,15,1,f +4138,43719,47,2,f +4138,44301a,72,2,f +4138,44302a,0,2,f +4138,44728,0,1,f +4138,44728,71,2,f +4138,4488,71,2,f +4138,45677,15,1,f +4138,47455,0,4,f +4138,47456,0,1,f +4138,47457,72,1,f +4138,48169,72,2,f +4138,48170,72,4,f +4138,48172,0,1,f +4138,48336,14,5,f +4138,4865a,14,1,f +4138,4868b,71,2,f +4138,4871,71,2,f +4138,4871,15,1,f +4138,50923,72,1,f +4138,50951,0,2,f +4138,52107,14,1,f +4138,54200,70,2,f +4138,54200,47,4,f +4138,54200,14,6,f +4138,54200,71,6,f +4138,55706,0,2,f +4138,59895,0,1,f +4138,59900,14,1,f +4138,60470b,14,4,f +4138,60477,0,2,f +4138,60478,71,4,f +4138,60481,0,2,f +4138,60594,1,1,f +4138,60897,72,1,f +4138,6126a,41,1,f +4138,61409,72,4,f +4138,6141,182,8,f +4138,6141,41,1,f +4138,6141,72,2,f +4138,6141,36,2,f +4138,6153b,0,2,f +4138,6239,47,3,f +4138,63864,15,1,f +4138,63868,72,5,f +4138,64225,0,4,f +4138,6541,0,2,f +4138,6558,1,5,f +4138,71155,0,1,f +4138,76764,179,1,f +4138,76766,0,2,f +4138,85959pat0002,41,2,f +4138,85984,15,2,f +4138,85984,0,3,f +4138,87079,70,1,f +4138,87079,1,1,f +4138,87614,47,2,f +4138,87752,47,1,f +4138,88072,0,1,f +4138,90194,71,2,f +4138,92013,0,3,f +4138,92280,71,6,f +4138,92593,71,3,f +4138,93274,71,4,f +4138,93594,179,2,f +4138,95199,72,1,f +4138,95678pr0003,15,1,f +4138,970c00,72,1,f +4138,970c00,1,1,f +4138,970c00,4,1,f +4138,970c00,73,1,f +4138,970c00pr0816,272,1,f +4138,973pr2492c01,4,1,f +4138,973pr2922c01,72,1,f +4138,973pr2926c01,4,1,f +4138,973pr2927c01,14,1,f +4138,973pr2928c01,73,1,f +4138,98603s01pr0012,0,1,f +4138,98725pr0002,0,1,f +4138,98834,0,2,f +4138,99206,0,2,f +4138,99780,71,1,f +4138,99781,71,2,f +4138,99930,308,1,f +4139,2412b,71,1,f +4139,2420,15,4,f +4139,2420,4,4,f +4139,2420,27,4,f +4139,2431,71,1,f +4139,2431,26,2,f +4139,2431pr0036,70,1,f +4139,2431pr0037,4,1,f +4139,2431pr0040,70,1,f +4139,2431pr0048,15,1,f +4139,2431pr0049,15,1,f +4139,2436,0,2,f +4139,2437,27,1,f +4139,2437pr0001,4,1,f +4139,2437pr0002,27,1,f +4139,2441,0,2,f +4139,2525,15,1,f +4139,2540,72,2,f +4139,2540,70,2,f +4139,2639,72,2,f +4139,2780,0,2,f +4139,2780,0,1,t +4139,2817,0,2,f +4139,2921,72,4,f +4139,3001,72,2,f +4139,3001,4,1,f +4139,3001pr0002,70,2,f +4139,3002,71,2,f +4139,30027b,70,2,f +4139,30027b,71,8,f +4139,30028,0,10,f +4139,3003,0,1,f +4139,30035,0,2,f +4139,3004,25,1,f +4139,3004,27,2,f +4139,3004,4,2,f +4139,3009,71,2,f +4139,30162,72,2,f +4139,3020,15,9,f +4139,3020,1,1,f +4139,3020,4,2,f +4139,3020,27,1,f +4139,3020,0,2,f +4139,3021,72,2,f +4139,3021,4,1,f +4139,3022,71,3,f +4139,3022,14,3,f +4139,3023,0,6,f +4139,3023,2,2,f +4139,3023,1,4,f +4139,3023,4,4,f +4139,3023,15,1,f +4139,3024,70,2,f +4139,3024,36,2,f +4139,3024,0,2,f +4139,3031,26,1,f +4139,3031,73,1,f +4139,3032,19,2,f +4139,3034,14,1,f +4139,3034,72,2,f +4139,3034,15,1,f +4139,30355,15,1,f +4139,30356,15,1,f +4139,30377,0,2,t +4139,30377,0,4,f +4139,3039,0,2,f +4139,30395,72,1,f +4139,30414,26,2,f +4139,30414,15,2,f +4139,3062b,0,2,f +4139,3068b,0,1,f +4139,3068b,27,1,f +4139,3069b,36,1,f +4139,3069b,15,4,f +4139,3069b,71,1,f +4139,3069b,70,2,f +4139,3070b,4,1,t +4139,3070b,15,1,t +4139,3070b,4,2,f +4139,3070b,15,4,f +4139,3139,0,2,f +4139,32530,0,1,f +4139,3460,15,2,f +4139,3623,70,1,f +4139,3660,4,1,f +4139,3666,70,2,f +4139,3710,72,1,f +4139,3710,27,1,f +4139,3710,14,2,f +4139,3710,0,1,f +4139,3710,73,1,f +4139,3795,0,2,f +4139,4083,0,1,f +4139,4085c,72,2,f +4139,4150,72,1,f +4139,41539,15,1,f +4139,4162,0,2,f +4139,41769,0,1,f +4139,41770,0,1,f +4139,4282,0,2,f +4139,43121,0,2,f +4139,43722,15,1,f +4139,43723,15,1,f +4139,4445,0,2,f +4139,44567a,0,2,f +4139,4477,0,2,f +4139,4589,4,2,f +4139,4600,71,1,f +4139,4624,70,2,f +4139,46667,72,2,f +4139,47397,15,1,f +4139,47398,15,1,f +4139,47720,0,2,f +4139,4865a,70,2,f +4139,4870,71,2,f +4139,50304,15,2,f +4139,50305,15,2,f +4139,50951,0,14,f +4139,54200,71,1,t +4139,54200,71,2,f +4139,54383,0,1,f +4139,54384,0,1,f +4139,57515,72,1,f +4139,60212,73,1,f +4139,60212,4,2,f +4139,60212,27,2,f +4139,60219,15,1,f +4139,60471,15,2,f +4139,60581,15,6,f +4139,6081,71,1,f +4139,6091,15,2,f +4139,61184,71,2,f +4139,6141,182,1,f +4139,6141,34,2,t +4139,6141,182,1,t +4139,6141,34,3,f +4139,6141,36,3,t +4139,6141,47,3,t +4139,6141,47,6,f +4139,6141,36,7,f +4139,61483,71,1,f +4139,6157,0,2,f +4139,6179,4,1,f +4139,63864,4,2,f +4139,63864,0,2,f +4139,6541,70,2,f +4139,87079,0,3,f +4139,87079,1,1,f +4139,87087,15,2,f +4139,87544,15,2,f +4139,87611,15,1,f +4139,87612pr0001,0,1,f +4139,87613pr0002,15,1,f +4139,87614,0,1,f +4139,87615,0,1,f +4139,88930,27,2,f +4139,88930,4,1,f +4139,93273pr0004,27,1,f +4139,93274,27,1,f +4139,93274,4,2,f +4139,93587pr0005,26,1,f +4139,93590,70,2,f +4139,93591pr0007,26,1,f +4139,93591pr0009,73,1,f +4139,93593,71,10,f +4139,93595pr0001,0,4,f +4139,93597pr0001,26,1,f +4139,93597pr0005,15,1,f +4139,93598pr0006,70,1,f +4140,2412b,71,1,f +4140,2436,15,1,f +4140,32028,71,1,f +4140,4865b,15,2,f +4140,54200,46,2,f +4140,54200,46,1,t +4140,60212,15,2,f +4140,6231,15,2,f +4141,11212,72,2,f +4141,15462,28,1,f +4141,18575,19,1,f +4141,18651,0,1,f +4141,18654,72,2,f +4141,20904pr0001,15,2,f +4141,21699,36,1,f +4141,21778,0,1,f +4141,2357,72,16,f +4141,23709,0,1,f +4141,23901,0,1,f +4141,2412b,0,6,f +4141,2417,484,2,f +4141,2420,72,10,f +4141,2420,70,2,f +4141,2431,15,1,f +4141,2449,72,6,f +4141,2449,71,4,f +4141,2450,28,4,f +4141,2456,72,2,f +4141,2458,71,1,f +4141,24977,84,1,f +4141,25851,9999,1,t +4141,2639,72,1,f +4141,2877,70,12,f +4141,3001,4,2,f +4141,3001,28,9,f +4141,3002,72,6,f +4141,3003,28,4,f +4141,3003,70,2,f +4141,3008,28,2,f +4141,3009,72,2,f +4141,3010,28,12,f +4141,3010,70,5,f +4141,3020,71,3,f +4141,3020,72,1,f +4141,3021,72,2,f +4141,3022,84,4,f +4141,3023,28,21,f +4141,3030,28,1,f +4141,3031,71,2,f +4141,3031,2,2,f +4141,30357,71,1,f +4141,3036,28,1,f +4141,30374,41,1,f +4141,3040b,28,7,f +4141,30503,72,4,f +4141,30586,71,3,f +4141,3062b,19,3,f +4141,3068b,72,3,f +4141,3068b,28,3,f +4141,3068b,70,1,f +4141,3069b,84,2,f +4141,32000,19,2,f +4141,32039,0,1,f +4141,32123b,14,4,f +4141,32526,72,2,f +4141,32530,0,1,f +4141,3460,70,2,f +4141,3622,72,18,f +4141,3623,72,5,f +4141,3626cpr1149,78,2,f +4141,3626cpr1807,70,1,f +4141,3659,72,3,f +4141,3660,72,4,f +4141,3666,71,1,f +4141,3666,28,1,f +4141,3673,71,6,f +4141,3678b,28,3,f +4141,3700,72,4,f +4141,3708,0,1,f +4141,3710,70,4,f +4141,3713,4,1,f +4141,3795,70,1,f +4141,3795,28,5,f +4141,3830,72,2,f +4141,3831,72,2,f +4141,3832,72,3,f +4141,3942c,71,2,f +4141,4032a,72,2,f +4141,41677,1,2,f +4141,41879a,320,1,f +4141,4286,72,1,f +4141,43093,1,1,f +4141,43898,72,2,f +4141,4460b,28,20,f +4141,4519,14,1,f +4141,4740,71,2,f +4141,47457,70,1,f +4141,48729b,71,1,f +4141,58176,15,1,f +4141,58247,0,3,f +4141,59443,72,2,f +4141,6003,2,1,f +4141,60581,71,1,f +4141,6106,28,2,f +4141,61252,72,2,f +4141,6141,0,17,f +4141,61780,70,1,f +4141,63864,28,1,f +4141,63965,71,3,f +4141,64567,80,1,f +4141,64567,148,1,f +4141,6541,70,3,f +4141,6553,71,1,f +4141,85984,0,1,f +4141,87079,72,2,f +4141,87083,72,1,f +4141,87580,28,6,f +4141,88283,0,1,f +4141,92947,70,9,f +4141,96874,25,1,t +4141,970c00,0,1,f +4141,970c00pr0954,15,2,f +4141,970c00pr0959,0,1,f +4141,973pr3165c01,15,2,f +4141,973pr3173c01,0,1,f +4141,973pr3174c01,84,1,f +4141,973pr3305c01,321,1,f +4141,98283,84,28,f +4141,98284,70,1,f +4143,11476,71,3,f +4143,14704,71,2,f +4143,14769pr1008,15,1,f +4143,14769pr1011,71,2,f +4143,15068,14,2,f +4143,15456,0,2,f +4143,15573,0,3,f +4143,18649,0,2,f +4143,2412b,14,4,f +4143,2432,14,1,f +4143,3022,14,4,f +4143,3023,15,4,f +4143,30385,297,1,f +4143,3070b,36,2,f +4143,3070b,36,1,t +4143,3298,0,3,f +4143,3666,0,1,f +4143,3679,71,1,f +4143,3680,0,1,f +4143,3710,0,1,f +4143,3747a,14,2,f +4143,3839b,0,2,f +4143,41769,14,1,f +4143,41770,14,1,f +4143,44728,0,1,f +4143,47905,72,3,f +4143,48336,297,2,f +4143,4871,0,1,f +4143,6019,0,4,f +4143,60470a,0,2,f +4143,60478,14,3,f +4143,6141,71,1,t +4143,6141,71,9,f +4143,87087,0,1,f +4143,87580,297,1,f +4143,99207,71,1,f +4144,3633,4,10,f +4145,32498,0,25,f +4146,2780,0,70,f +4146,2780,0,3,t +4146,2825,0,2,f +4146,2905,0,2,f +4146,32009,19,2,f +4146,32013,0,2,f +4146,32016,0,6,f +4146,32017,0,2,f +4146,32034,71,1,f +4146,32054,0,14,f +4146,32062,4,10,f +4146,32073,71,2,f +4146,32123b,71,4,f +4146,32123b,71,1,t +4146,32138,0,4,f +4146,32140,71,5,f +4146,32184,71,11,f +4146,32198,19,2,f +4146,32199,0,1,f +4146,32249,0,2,f +4146,32250,72,4,f +4146,32271,19,6,f +4146,32278,19,10,f +4146,32291,72,2,f +4146,32294,0,2,f +4146,32316,0,4,f +4146,32498,0,2,f +4146,32523,19,9,f +4146,32524,71,2,f +4146,32525,19,8,f +4146,32526,0,2,f +4146,32556,19,2,f +4146,3673,71,1,t +4146,3673,71,4,f +4146,3705,0,2,f +4146,3708,0,4,f +4146,3713,71,11,f +4146,3713,71,2,t +4146,3749,19,2,f +4146,40490,0,4,f +4146,40490,72,2,f +4146,41239,0,4,f +4146,42003,0,2,f +4146,4274,1,6,f +4146,4274,1,1,t +4146,43093,1,28,f +4146,44294,71,2,f +4146,44809,71,2,f +4146,44813,135,2,f +4146,4519,71,12,f +4146,45749,320,2,f +4146,47297,320,2,f +4146,47298,135,1,f +4146,47298,320,2,f +4146,47306,320,1,f +4146,48989,71,1,f +4146,49423,19,2,f +4146,53543,320,4,f +4146,53544,135,1,f +4146,53545,72,1,f +4146,53547,148,1,f +4146,53568,135,1,f +4146,53586,135,2,f +4146,54821,135,16,f +4146,55615,71,1,f +4146,57563,135,2,f +4146,57568,135,2,f +4146,58230,148,1,f +4146,59426,72,6,f +4146,59443,71,2,f +4146,59521,0,1,f +4146,60176,0,2,f +4146,60176,72,1,f +4146,60483,72,6,f +4146,60484,71,2,f +4146,61054,320,2,f +4146,61794,135,1,f +4146,61805,19,2,f +4146,62233,135,4,f +4146,63149,135,2,f +4146,64178,71,4,f +4146,64251,72,2,f +4146,64262,42,1,f +4146,64275,135,2,f +4146,64276,0,1,f +4146,64277c01,297,1,f +4146,64311,0,2,f +4146,64328,320,1,f +4146,64393,19,1,f +4146,64681,19,1,f +4146,64712,0,4,f +4146,64889pr0001,135,2,f +4146,6536,0,4,f +4146,6553,0,2,f +4146,6558,1,35,f +4146,6587,72,7,f +4146,6632,71,2,f +4146,78c09,135,4,f +4146,78c11,135,2,f +4146,85544,4,2,f +4146,85800,135,2,f +4147,2431p12,15,1,f +4147,2431pt2,15,2,f +4147,3004pc0,15,1,f +4147,3039pc1,0,1,f +4147,3039pc3,7,1,f +4147,3039pc5,7,1,f +4147,3039pc7,0,1,f +4147,3039pc8,15,1,f +4147,3039pr0005,15,1,f +4147,3039px14,15,1,f +4147,3068bp51,0,1,f +4147,3068bp61,1,1,f +4147,3068bp69,0,1,f +4147,3069bp02,7,1,f +4147,3069bp08,15,1,f +4147,3069bp09,15,1,f +4147,3069bp15,0,1,f +4147,3069bp21,0,1,f +4147,3069bp25,15,1,f +4147,3069bp28,0,2,f +4147,3069bp52,15,1,f +4147,3069bp61,15,1,f +4147,3069bp80,15,1,f +4147,3069bpr0016,15,2,f +4147,3298p61,1,1,f +4147,3298pb010,0,1,f +4147,3622px1,15,1,f +4150,2456,1,4,f +4150,2456,15,4,f +4150,2456,4,4,f +4150,2456,14,4,f +4150,3001,14,24,f +4150,3001,4,24,f +4150,3001,2,12,f +4150,3001,1,24,f +4150,3001,15,24,f +4150,3001,0,12,f +4150,3002,14,12,f +4150,3002,1,12,f +4150,3002,2,8,f +4150,3002,15,12,f +4150,3002,4,12,f +4150,3002,0,8,f +4150,3003,14,40,f +4150,3003,4,40,f +4150,3003,15,40,f +4150,3003,0,20,f +4150,3003,1,40,f +4150,3003,2,20,f +4150,3004,14,12,f +4150,3004,4,12,f +4150,3004,2,6,f +4150,3004,0,6,f +4150,3004,15,12,f +4150,3004,1,12,f +4150,3005,14,40,f +4150,3005,2,12,f +4150,3005,4,40,f +4150,3005,0,20,f +4150,3005,1,40,f +4150,3005,15,40,f +4150,3008,15,4,f +4150,3008,4,4,f +4150,3008,1,4,f +4150,3008,14,4,f +4150,3009,4,8,f +4150,3009,15,8,f +4150,3009,1,8,f +4150,3009,14,8,f +4150,3010,15,88,f +4150,3010,2,42,f +4150,3010,1,88,f +4150,3010,14,88,f +4150,3010,0,46,f +4150,3010,4,88,f +4150,3622,14,12,f +4150,3622,0,8,f +4150,3622,4,12,f +4150,3622,2,4,f +4150,3622,15,12,f +4150,3622,1,12,f +4151,2983,7,1,f +4151,2984,4,1,f +4151,2985,4,1,f +4151,2986,4,1,f +4152,10218,9999,1,t +4152,3004,15,8,f +4152,3004,0,8,f +4152,3004,4,8,f +4152,3004,14,8,f +4152,3004,2,8,f +4152,3004,1,8,f +4152,3005,14,6,f +4152,3005,15,6,f +4152,3005,0,6,f +4152,3005,1,6,f +4152,3005,2,6,f +4152,3005,4,6,f +4152,3009,15,2,f +4152,3009,4,2,f +4152,3009,2,2,f +4152,3009,1,2,f +4152,3009,14,2,f +4152,3009,0,2,f +4152,3010,15,4,f +4152,3010,0,4,f +4152,3010,2,4,f +4152,3010,1,4,f +4152,3010,14,4,f +4152,3010,4,4,f +4152,3622,14,4,f +4152,3622,4,4,f +4152,3622,0,4,f +4152,3622,15,4,f +4152,3622,2,4,f +4152,3622,1,4,f +4153,2412b,72,2,f +4153,2431,72,2,f +4153,2437,40,2,f +4153,298c02,15,2,f +4153,298c02,15,1,t +4153,3004,0,2,f +4153,3020,15,3,f +4153,3023,15,1,f +4153,3068b,15,1,f +4153,3069b,15,1,f +4153,3069bpr0101,71,1,f +4153,3624,15,1,f +4153,3626bpr0387,14,1,f +4153,3710,15,2,f +4153,3829c01,1,1,f +4153,3957a,15,1,f +4153,3962b,72,1,f +4153,4032a,0,1,f +4153,4085c,0,1,f +4153,43337,15,2,f +4153,4349,0,1,f +4153,45677,15,1,f +4153,4735,0,1,f +4153,50745,15,4,f +4153,51739,15,1,f +4153,52036,72,1,f +4153,52038,15,2,f +4153,52501,15,2,f +4153,54200,36,2,f +4153,54200,46,2,f +4153,54200,33,2,f +4153,6014b,15,4,f +4153,6015,0,4,f +4153,6157,0,2,f +4153,970c00,0,1,f +4153,973pr1188c01,0,1,f +4154,3626bps3,14,1,f +4154,3901,19,1,f +4154,970c02pb03,19,1,f +4154,973ps3c01,15,1,f +4156,2412b,14,2,f +4156,2432,15,1,f +4156,2440,0,1,f +4156,2445,0,1,f +4156,2446px3,4,1,f +4156,2447,0,1,f +4156,2452,0,1,f +4156,2880,0,3,f +4156,2994,15,2,f +4156,3002,4,1,f +4156,3009,15,1,f +4156,3020,4,1,f +4156,3023,15,1,f +4156,3023,7,1,f +4156,3062b,7,2,f +4156,3139,0,2,f +4156,3298,0,1,f +4156,3626bp04,14,1,f +4156,3700,0,2,f +4156,3705,0,1,f +4156,3710,4,1,f +4156,3794a,4,2,f +4156,3795,7,2,f +4156,3829c01,15,1,f +4156,3937,7,2,f +4156,3938,7,2,f +4156,3938,15,1,f +4156,4085c,15,6,f +4156,4150,15,1,f +4156,4276b,0,1,f +4156,4276b,7,2,f +4156,4286,0,2,f +4156,4595,7,1,f +4156,4624,15,2,f +4156,4715,15,1,f +4156,4859,4,1,f +4156,4865a,4,3,f +4156,55295,8,1,f +4156,55296,8,1,f +4156,55297,8,1,f +4156,55298,8,1,f +4156,55299,8,1,f +4156,55300,8,1,f +4156,6087,0,1,f +4156,6157,0,1,f +4156,6578,0,2,f +4156,970c00,4,1,f +4156,973px36c01,4,1,f +4159,2335pr02,15,2,f +4159,2335px13,15,2,f +4159,2412b,4,4,f +4159,2412b,25,4,f +4159,2412b,2,4,f +4159,2431,0,3,f +4159,2432,0,2,f +4159,2445,0,1,f +4159,2447,46,1,t +4159,2447,46,1,f +4159,2460,4,2,f +4159,2465,15,2,f +4159,2540,0,4,f +4159,2540,4,2,f +4159,2681,0,2,f +4159,2744,14,2,f +4159,2994,15,2,f +4159,30000,8,1,f +4159,3002,8,1,f +4159,3003,0,4,f +4159,30038,0,1,f +4159,3004,4,2,f +4159,3004,14,3,f +4159,30043,0,1,f +4159,3009,0,2,f +4159,3010,25,2,f +4159,3020,7,2,f +4159,30219,15,2,f +4159,3023,0,3,f +4159,3031,0,1,f +4159,3032,0,1,f +4159,3033,15,2,f +4159,3034,0,1,f +4159,30365,8,1,f +4159,30386,14,1,f +4159,30389a,14,1,f +4159,3039,25,1,f +4159,3062b,8,8,f +4159,3065,34,1,f +4159,3065,36,1,f +4159,3139,0,2,f +4159,3176,7,1,f +4159,32278,15,2,f +4159,32283c01,8,1,f +4159,3626bpb0046,14,1,f +4159,3665,14,2,f +4159,3700,0,4,f +4159,3706,0,1,f +4159,3710,2,1,f +4159,3710,4,1,f +4159,3795,14,1,f +4159,3829c01,15,1,f +4159,3937,7,2,f +4159,3957a,15,2,f +4159,4274,7,6,f +4159,4274,7,1,t +4159,4282,14,1,f +4159,4286,14,2,f +4159,4349,7,1,f +4159,4485,0,1,t +4159,4495b,4,1,f +4159,4495b,2,1,f +4159,4589,57,3,f +4159,4624,15,2,f +4159,4859,0,1,f +4159,6019,4,4,f +4159,6087,14,1,f +4159,6126a,57,8,f +4159,6134,4,2,f +4159,6152,14,1,f +4159,6157,7,1,f +4159,6180,0,1,f +4159,6232,4,2,f +4159,6578,0,2,f +4159,6616stk01,9999,1,t +4159,970x026,14,1,f +4159,973pb0051c01,15,1,f +4160,32062,0,1,f +4160,32062,0,1,t +4160,32073,71,1,f +4160,32174,288,4,f +4160,32174,0,2,f +4160,32523,288,1,f +4160,3706,0,1,f +4160,41668,288,2,f +4160,43093,1,1,f +4160,43093,1,1,t +4160,44807,288,1,f +4160,44818,135,1,f +4160,47300,72,4,f +4160,50899pr0002,178,1,f +4160,50900,72,1,f +4160,50901,72,1,f +4160,50903,14,1,f +4160,6536,0,1,f +4160,6632,25,4,f +4162,3058b,0,1,f +4162,3488,0,4,f +4164,298c02,1,1,t +4164,298c02,1,1,f +4164,3626bpr0499,14,1,f +4164,4081b,15,2,f +4164,41879a,272,1,f +4164,54200,33,1,t +4164,54200,33,1,f +4164,6141,0,4,f +4164,6141,0,1,t +4164,62810,484,1,f +4164,973c02,4,1,f +4165,3022,15,2,f +4165,30488c01,15,1,f +4165,3738,4,1,f +4168,2412b,71,5,f +4168,2412b,0,10,f +4168,2431,33,1,f +4168,2431,1,2,f +4168,2434,0,1,f +4168,2446,15,2,f +4168,2447,40,1,t +4168,2447,40,2,f +4168,2456,72,1,f +4168,2458,15,2,f +4168,2479,0,2,f +4168,2654,71,3,f +4168,2780,0,6,f +4168,2780,0,1,t +4168,2877,71,2,f +4168,298c02,14,1,t +4168,298c02,14,2,f +4168,3001,4,1,f +4168,3002,72,4,f +4168,3003,0,3,f +4168,3004,1,8,f +4168,3007,1,1,f +4168,3008,15,1,f +4168,3008,1,7,f +4168,3009,72,2,f +4168,3020,1,4,f +4168,3021,1,1,f +4168,3022,15,3,f +4168,3022,72,4,f +4168,3023,15,16,f +4168,3023,46,2,f +4168,3032,14,1,f +4168,3034,1,7,f +4168,30350b,15,2,f +4168,30357,15,2,f +4168,3039pr0014,0,1,f +4168,3039pr0015,0,1,f +4168,3040b,1,2,f +4168,30414,14,8,f +4168,30414,72,6,f +4168,30503,1,4,f +4168,30592,72,2,f +4168,3069bpr0115,15,1,f +4168,3176,72,4,f +4168,3176,1,5,f +4168,32028,15,6,f +4168,32124,15,6,f +4168,3245c,15,2,f +4168,3298,72,2,f +4168,33243,0,2,f +4168,3460,14,2,f +4168,3460,15,2,f +4168,3460,1,3,f +4168,3622,1,4,f +4168,3626cpr0411,14,1,f +4168,3626cpr0914,14,1,f +4168,3626cpr1663,14,1,f +4168,3660,72,2,f +4168,3665,72,2,f +4168,3665,1,8,f +4168,3700,72,2,f +4168,3710,15,3,f +4168,3710,14,4,f +4168,3710,1,2,f +4168,3743,0,2,f +4168,3747b,0,1,f +4168,3794b,4,4,f +4168,3795,15,3,f +4168,3795,72,1,f +4168,3829c01,14,1,f +4168,3832,72,1,f +4168,3899,4,1,f +4168,3956,71,2,f +4168,3962b,0,1,f +4168,4079,14,2,f +4168,41539,72,1,f +4168,4162,1,1,f +4168,4282,15,2,f +4168,43898,15,2,f +4168,44126,72,1,f +4168,44674,1,1,f +4168,4488,71,1,f +4168,4510,15,1,f +4168,4515,72,1,f +4168,4533,72,2,f +4168,4600,71,3,f +4168,4624,71,8,f +4168,4697b,71,1,t +4168,4697b,71,2,f +4168,48336,71,2,f +4168,4868b,15,2,f +4168,4869,71,2,f +4168,50944pr0001,0,1,f +4168,50951,0,1,f +4168,54095,15,2,f +4168,59895,0,8,f +4168,6014b,15,6,f +4168,60478,14,2,f +4168,60479,15,2,f +4168,60593,15,1,f +4168,60601,41,12,f +4168,6091,72,2,f +4168,61345,1,6,f +4168,61409,72,2,f +4168,6141,36,1,f +4168,6141,34,1,t +4168,6141,46,1,t +4168,6141,36,1,t +4168,6141,46,1,f +4168,6141,34,1,f +4168,61482,71,1,f +4168,61482,71,1,t +4168,61483,71,4,f +4168,61487,15,6,f +4168,6192,72,10,f +4168,6215,1,3,f +4168,6232,14,1,f +4168,62576,41,1,f +4168,62743,0,8,f +4168,64567,0,1,f +4168,85984,15,1,f +4168,85984,72,8,f +4168,87079,1,1,f +4168,87087,4,2,f +4168,87087,72,8,f +4168,87552,1,8,f +4168,87697,0,6,f +4168,88292,15,4,f +4168,88293,0,2,f +4168,88293,15,4,f +4168,92099,72,1,f +4168,92410,15,2,f +4168,92438,72,1,f +4168,92593,15,2,f +4168,970c00,272,1,f +4168,970c00pr0293,272,2,f +4168,973pr1943c01,28,1,f +4168,973pr1947bc01,272,2,f +4168,97895,14,2,f +4168,98279,19,1,f +4169,2377,15,2,f +4169,2412b,0,2,f +4169,2431,72,3,f +4169,2877,2,2,f +4169,2878c01,71,4,f +4169,2920,0,2,f +4169,3001,15,2,f +4169,3004,0,2,f +4169,3004,15,8,f +4169,3004,2,4,f +4169,3008,2,4,f +4169,30089,0,1,f +4169,3009,2,2,f +4169,3009,15,4,f +4169,3010,2,2,f +4169,30136,72,8,f +4169,3020,71,5,f +4169,3022,0,1,f +4169,3023,15,3,f +4169,3023,1,2,f +4169,3023,36,2,f +4169,30283,71,3,f +4169,3040b,15,8,f +4169,3070bp70,71,1,t +4169,3070bp70,71,1,f +4169,32083,15,5,f +4169,3245b,15,4,f +4169,3455,15,2,f +4169,3666,72,4,f +4169,3666,15,2,f +4169,3795,15,2,f +4169,3899,4,2,f +4169,3958,15,1,f +4169,4022,71,2,f +4169,4025,0,2,f +4169,4079,4,4,f +4169,4093a,72,1,f +4169,4162,72,2,f +4169,4449,71,1,f +4169,4449,0,1,f +4169,44572,15,2,f +4169,44822,15,2,f +4169,45677,15,2,f +4169,4862,40,2,f +4169,4864b,40,17,f +4169,6111,15,4,f +4169,6112,71,2,f +4169,6636,72,4,f +4169,6636,15,2,f +4169,73092,0,2,f +4172,1032b1,9999,1,f +4172,1032b10,9999,1,f +4172,1032b11,9999,1,f +4172,1032b12,9999,1,f +4172,1032b13,9999,1,f +4172,1032b14,9999,1,f +4172,1032b15,9999,1,f +4172,1032b16,9999,1,f +4172,1032b17,9999,1,f +4172,1032b18,9999,1,f +4172,1032b19,9999,1,f +4172,1032b2,9999,1,f +4172,1032b20,9999,1,f +4172,1032b3,9999,1,f +4172,1032b4,9999,1,f +4172,1032b5,9999,1,f +4172,1032b6,9999,1,f +4172,1032b7,9999,1,f +4172,1032b8,9999,1,f +4172,1032b9,9999,1,f +4173,132a,0,4,f +4173,3001a,15,18,f +4173,3001a,1,12,f +4173,3001a,0,10,f +4173,3001a,14,12,f +4173,3001a,4,18,f +4173,3002a,4,8,f +4173,3002a,14,2,f +4173,3002a,15,6,f +4173,3003,0,8,f +4173,3003,4,8,f +4173,3003,14,4,f +4173,3003,1,10,f +4173,3003,15,6,f +4173,3004,4,12,f +4173,3004,1,2,f +4173,3004,14,10,f +4173,3004,0,6,f +4173,3004,15,6,f +4173,3005,14,8,f +4173,3006,4,1,f +4173,3007,4,2,f +4173,3007,15,2,f +4173,3007,14,1,f +4173,3010,15,2,f +4173,3010,4,2,f +4173,3010,47,2,f +4173,3010,14,2,f +4173,3032,0,1,f +4173,3035,4,1,f +4173,3081cc01,4,4,f +4173,3081cc01,15,2,f +4173,3297,4,8,f +4173,3298,4,8,f +4173,3299,4,1,f +4173,3300,4,1,f +4173,3579,14,1,f +4173,3579,4,1,f +4173,3579,15,1,f +4173,3581,15,2,f +4173,3581,4,2,f +4173,3582,14,2,f +4173,3582,1,2,f +4173,453cc01,15,1,f +4173,453cc01,4,1,f +4173,604c01,4,1,f +4173,700ed,2,1,f +4173,7039,4,4,f +4173,7049b,0,2,f +4173,7930,4,2,f +4173,7930,15,1,f +4174,3001apb03,15,5,f +4174,3020,7,2,f +4174,3021,15,2,f +4174,3021,7,4,f +4174,3022,1,1,f +4174,3022,7,1,f +4174,3022,15,2,f +4174,3023,47,1,f +4174,3023,1,1,f +4174,3023,15,1,f +4174,3034,7,9,f +4174,3139,0,3,f +4174,3464,4,3,f +4174,3474,7,1,f +4174,3475a,7,2,f +4174,3585,7,1,f +4174,3586,7,1,f +4174,8,7,3,f +4174,bb96,1,1,f +4176,2343,47,2,f +4176,2412b,72,4,f +4176,2420,14,2,f +4176,2431,14,1,f +4176,2431,1,2,f +4176,2431,15,1,f +4176,2436,4,2,f +4176,2436,0,4,f +4176,2436,1,2,f +4176,2439,72,1,f +4176,2445,0,2,f +4176,2445,1,1,f +4176,2445,4,1,f +4176,2446,0,1,f +4176,2456,71,1,f +4176,2495,4,1,f +4176,2496,0,1,f +4176,2508,0,2,f +4176,2877,72,15,f +4176,3001,72,2,f +4176,3001,2,1,f +4176,3001,1,1,f +4176,3002,71,4,f +4176,3002,72,4,f +4176,3003,19,2,f +4176,3003,1,1,f +4176,3003,73,1,f +4176,3003,72,4,f +4176,3003,2,1,f +4176,3003,27,1,f +4176,3004,15,4,f +4176,3004,71,2,f +4176,3004,4,10,f +4176,3004,1,2,f +4176,3004,14,8,f +4176,3004,72,8,f +4176,3004,2,4,f +4176,30043,71,1,f +4176,3005,25,12,f +4176,3005,19,8,f +4176,3005,70,8,f +4176,3005,15,4,f +4176,3005,71,8,f +4176,3005,27,2,f +4176,3005,1,2,f +4176,3006,71,4,f +4176,3008,1,2,f +4176,3008,14,2,f +4176,3008,72,4,f +4176,3009,1,5,f +4176,3009,15,2,f +4176,3009,2,2,f +4176,3009,14,2,f +4176,3009,4,8,f +4176,3009,25,9,f +4176,3009,0,1,f +4176,3009,72,18,f +4176,3010,72,11,f +4176,3010,14,4,f +4176,3010,0,2,f +4176,3010,25,3,f +4176,3010,2,5,f +4176,30165,4,1,f +4176,3020,72,3,f +4176,3020,27,3,f +4176,3020,0,1,f +4176,3020,71,5,f +4176,3020,4,7,f +4176,3021,14,1,f +4176,3021,0,2,f +4176,3022,0,1,f +4176,3022,14,3,f +4176,30222,42,4,f +4176,30228,72,1,f +4176,3023,25,6,f +4176,3023,4,2,f +4176,3023,15,8,f +4176,3023,71,10,f +4176,3023,14,5,f +4176,3023,1,2,f +4176,3023,72,4,f +4176,3023,2,6,f +4176,30261p02,15,1,f +4176,3027,0,1,f +4176,3029,72,1,f +4176,3030,72,1,f +4176,3032,4,4,f +4176,3032,72,10,f +4176,3032,0,4,f +4176,3032,14,1,f +4176,3032,1,4,f +4176,3033,14,1,f +4176,3034,14,1,f +4176,3034,0,14,f +4176,3034,2,1,f +4176,3036,4,1,f +4176,30364,0,2,f +4176,30367b,15,1,f +4176,3037,14,2,f +4176,30388,0,2,f +4176,3039,0,1,f +4176,3040b,1,2,f +4176,3040b,15,2,f +4176,3040b,14,2,f +4176,30414,4,2,f +4176,3062b,72,8,f +4176,3062b,4,6,f +4176,3062b,57,4,f +4176,3069b,15,6,f +4176,3069b,14,4,f +4176,3069b,1,2,f +4176,3069b,25,10,f +4176,3069bpr0099,15,6,f +4176,3070b,15,2,f +4176,3070b,4,4,f +4176,3460,4,2,f +4176,3460,15,1,f +4176,3460,14,2,f +4176,3622,4,2,f +4176,3622,14,3,f +4176,3622,15,2,f +4176,3623,1,1,f +4176,3623,14,2,f +4176,3623,0,2,f +4176,3623,15,5,f +4176,3624,0,1,f +4176,3626bpr0387,14,6,f +4176,3626bpr0495,14,5,f +4176,3665,72,17,f +4176,3665,0,2,f +4176,3665,14,2,f +4176,3665,15,2,f +4176,3665,1,10,f +4176,3665,4,8,f +4176,3666,25,5,f +4176,3666,15,11,f +4176,3666,4,4,f +4176,3666,0,4,f +4176,3666,72,4,f +4176,3666,2,5,f +4176,3666,1,1,f +4176,3666,14,7,f +4176,3679,71,1,f +4176,3680,0,1,f +4176,3710,71,11,f +4176,3710,1,8,f +4176,3710,2,3,f +4176,3710,25,13,f +4176,3710,14,7,f +4176,3710,27,2,f +4176,3710,4,8,f +4176,3794b,0,2,f +4176,3795,14,2,f +4176,3795,0,2,f +4176,3795,25,1,f +4176,3795,72,7,f +4176,3823,47,2,f +4176,3829c01,0,8,f +4176,3833,4,3,f +4176,3837,72,1,f +4176,3937,71,2,f +4176,3942c,14,3,f +4176,3957a,15,1,f +4176,3958,72,1,f +4176,4070,25,2,f +4176,4070,14,2,f +4176,4070,4,2,f +4176,4070,2,10,f +4176,4079,0,1,f +4176,4162,14,4,f +4176,4176,40,2,f +4176,4176,47,4,f +4176,42022,4,2,f +4176,42022,2,2,f +4176,4286,0,2,f +4176,4345b,4,1,f +4176,4346,15,1,f +4176,43898,72,2,f +4176,44302a,14,2,f +4176,44570,72,1,f +4176,4460b,25,2,f +4176,4477,1,2,f +4176,4488,71,42,f +4176,4530,19,1,f +4176,45677,0,1,f +4176,4719,4,1,f +4176,4864b,47,12,f +4176,50859b,0,1,f +4176,50860,25,1,f +4176,50861,0,2,f +4176,50862,71,2,f +4176,52031,4,2,f +4176,52031,1,1,f +4176,52031,2,1,f +4176,52031,14,1,f +4176,52031,72,1,f +4176,54200,14,4,f +4176,54200,46,2,f +4176,59363,0,1,f +4176,6014b,14,10,f +4176,6014b,15,32,f +4176,6015,0,42,f +4176,60481,0,2,f +4176,60657,15,1,f +4176,60658,15,1,f +4176,6091,1,2,f +4176,6091,15,3,f +4176,6093,70,1,f +4176,6111,72,2,f +4176,6111,14,2,f +4176,6134,71,2,f +4176,6141,47,14,f +4176,6141,57,6,f +4176,6141,25,6,f +4176,6141,36,16,f +4176,61506,19,1,f +4176,6180,0,1,f +4176,6215,1,3,f +4176,6215,4,2,f +4176,6215,2,3,f +4176,6254,191,2,f +4176,62696,320,1,f +4176,63082,0,2,f +4176,6636,1,1,f +4176,73590c03a,0,2,f +4176,85974,70,1,f +4176,92851,47,2,f +4176,95120,72,1,f +4176,970c00,72,1,f +4176,970c00,272,1,f +4176,970c00,71,1,f +4176,970c00,1,1,f +4176,970c00,25,3,f +4176,970c00,15,1,f +4176,970c00,2,2,f +4176,970c00,4,1,f +4176,973c02,4,1,f +4176,973pr1164c01,272,1,f +4176,973pr1182c01,25,1,f +4176,973pr1183c01,25,1,f +4176,973pr1356c01,4,1,f +4176,973pr1363c01,14,1,f +4176,973pr1446c01,4,1,f +4176,973pr1470c01,1,1,f +4176,973pr1479c01,15,1,f +4176,973pr1480c01,15,1,f +4176,973pr1517c01,73,1,f +4177,2432,4,1,f +4177,3004,4,2,f +4177,3004,15,2,f +4177,3031,72,1,f +4177,3679,71,1,f +4177,3680,0,1,f +4177,3960,72,1,f +4177,6019,71,1,f +4184,11153,320,1,f +4184,11217pr0002,15,1,f +4184,11458,72,2,f +4184,13285pr0001,1,1,f +4184,13731,71,1,f +4184,2432,71,2,f +4184,2540,72,1,f +4184,2540,0,1,f +4184,2555,71,5,f +4184,2654,72,3,f +4184,2780,0,3,f +4184,2877,72,2,f +4184,3002,72,1,f +4184,30031,0,1,f +4184,3004,72,1,f +4184,3004,320,1,f +4184,3005,320,1,f +4184,30088,0,4,f +4184,30162,72,1,f +4184,3020,15,1,f +4184,3020,72,2,f +4184,3021,71,2,f +4184,3022,72,1,f +4184,3023,71,7,f +4184,3023,320,3,f +4184,3024,320,1,f +4184,3024,71,2,f +4184,30259,71,2,f +4184,3034,71,2,f +4184,30374,41,1,f +4184,30375pr01,308,2,f +4184,30377,308,2,f +4184,3040b,72,1,f +4184,3040b,320,1,f +4184,30602,1,1,f +4184,3068b,71,1,f +4184,3070b,71,2,f +4184,3176,320,1,f +4184,3176,71,2,f +4184,32000,71,2,f +4184,32039,71,1,f +4184,32064a,71,6,f +4184,32073,71,1,f +4184,32123b,71,5,f +4184,32294,72,2,f +4184,3623,320,1,f +4184,3626cpr0548,78,1,f +4184,3626cpr1186,78,1,f +4184,3665,71,4,f +4184,3666,320,2,f +4184,3747a,72,1,f +4184,3794a,320,20,f +4184,3794b,72,4,f +4184,3794b,71,4,f +4184,3795,71,1,f +4184,3795,72,1,f +4184,3832,72,1,f +4184,3941,47,1,f +4184,4081b,0,2,f +4184,41677,72,2,f +4184,42022,71,1,f +4184,42023,1,2,f +4184,42687,308,2,f +4184,43093,1,4,f +4184,43722,72,2,f +4184,43723,72,2,f +4184,43857,71,2,f +4184,44567a,72,1,f +4184,44728,72,6,f +4184,44728,1,1,f +4184,4590,72,1,f +4184,4600,71,1,f +4184,4735,71,2,f +4184,47458,72,1,f +4184,47905,72,1,f +4184,48336,71,2,f +4184,50950,320,2,f +4184,54200,47,1,f +4184,54200,1,2,f +4184,55013,72,1,f +4184,58176,143,2,f +4184,58247,0,2,f +4184,59230,308,2,f +4184,6019,72,1,f +4184,60477,1,1,f +4184,60478,71,2,f +4184,60481,320,1,f +4184,60897,71,2,f +4184,6091,1,2,f +4184,61184,71,2,f +4184,61409,72,6,f +4184,6141,47,2,f +4184,64567,80,1,f +4184,6541,71,2,f +4184,6587,28,1,f +4184,74664,0,1,f +4184,85984,71,1,f +4184,88072,72,2,f +4184,91988,71,1,f +4184,92280,71,1,f +4184,92738,0,2,f +4184,93273,320,1,f +4184,93589,72,1,f +4184,95199,72,1,f +4184,970c00pr0496,84,1,f +4184,970c00pr0497,15,1,f +4184,973pr2313c01,19,1,f +4184,973pr2330c01,15,1,f +4184,98103pr0001,308,2,f +4184,98138,71,2,f +4184,99774,72,4,f +4184,99781,71,2,f +4184,99930,484,1,f +4185,122c01,0,2,f +4185,3020,14,2,f +4185,3022,14,1,f +4185,3024,46,2,f +4185,3039,14,1,f +4185,3624,1,1,f +4185,3626apr0001,14,1,f +4185,3641,0,4,f +4185,3710,14,1,f +4185,3788,14,1,f +4185,3795,0,1,f +4185,3829c01,14,1,f +4185,3836,6,1,f +4185,3837,8,1,f +4185,4079,4,1,f +4185,4085a,0,2,f +4185,970c00,0,1,f +4185,973c07,1,1,f +4189,57519,25,10,f +4189,57520,0,12,f +4192,11256,71,1,f +4192,13786pr0001,71,1,f +4192,3626cpr1246,14,1,f +4192,88646,0,1,f +4192,93092,84,1,f +4192,970c00,323,1,f +4192,973pr2418c01,31,1,f +4195,2412b,4,4,f +4195,2419,0,1,f +4195,2446,0,1,f +4195,2540,0,2,f +4195,2543,4,1,f +4195,2926,0,1,f +4195,30000,8,1,f +4195,3004,7,1,f +4195,3007,15,3,f +4195,3020,0,2,f +4195,3023,42,2,f +4195,30285,14,2,f +4195,3030,2,2,f +4195,30363pb003,4,1,f +4195,3039,42,1,f +4195,30391,0,2,f +4195,3062b,4,1,f +4195,3068b,4,1,f +4195,32316,14,2,f +4195,3622,4,1,f +4195,3626bpx100,14,1,f +4195,3673,7,2,f +4195,3700,0,3,f +4195,3829c01,14,1,f +4195,3832,2,1,f +4195,3942c,15,2,f +4195,4070,0,4,f +4195,4212b,4,1,f +4195,6014a,14,2,f +4195,6015,0,2,f +4195,6119,4,1,f +4195,6126a,57,4,f +4195,6141,42,4,f +4195,6141,42,1,t +4195,6187,0,1,f +4195,6232,4,2,f +4195,6587,8,1,f +4195,6628,0,2,f +4195,6636,7,4,f +4195,6636px2,15,4,f +4195,71509,0,2,f +4195,970c00,4,1,f +4195,973pb0023c01,15,1,f +4196,22670,383,1,f +4196,30153,36,1,f +4196,30153,41,1,f +4196,30153,33,1,f +4196,30153,34,1,f +4196,30218,17,1,f +4196,3069bpr0055,15,1,f +4196,3069bpx41,15,1,f +4196,33051,4,1,f +4196,33051,10,1,f +4196,33061,41,1,f +4196,33172,25,1,f +4196,33183,10,1,f +4196,59,383,1,f +4196,6124,36,1,f +4196,6124,42,1,f +4196,6124,41,1,f +4196,6179px3,13,1,f +4196,6256,383,1,f +4196,72515,383,1,f +4196,belbow1,13,4,f +4196,hairband1,13,1,f +4201,2496,0,1,f +4201,2655,4,1,f +4201,3004,15,1,f +4201,3020,4,1,f +4201,3021,4,1,f +4201,3022,4,1,f +4201,3039,47,1,f +4201,3039,15,1,f +4201,3795,1,1,f +4202,3004,15,1,f +4202,3020,1,1,f +4202,3021,4,1,f +4202,3022,4,1,f +4202,3022,14,1,f +4202,3039,47,1,f +4202,3710,1,3,f +4202,4871,14,1,f +4203,3001a,0,4,f +4203,3002a,0,4,f +4203,3003,0,4,f +4203,3004,14,14,f +4203,3005,4,8,f +4203,3005,14,6,f +4203,3007,0,2,f +4203,3008,0,4,f +4203,3008,14,8,f +4203,3008,4,1,f +4203,3009,14,4,f +4203,3009,4,3,f +4203,3010,47,4,f +4203,3010,4,1,f +4203,3020,14,7,f +4203,3020,4,3,f +4203,3021,14,8,f +4203,3021,0,8,f +4203,3022,4,8,f +4203,3022,14,6,f +4203,3022,1,3,f +4203,3023,14,19,f +4203,3023,4,2,f +4203,3024,0,4,f +4203,3028,4,1,f +4203,3029,14,3,f +4203,3029,4,1,f +4203,3030,14,3,f +4203,3031,4,1,f +4203,3032,14,2,f +4203,3033,14,2,f +4203,3034,4,2,f +4203,3035,14,1,f +4203,3035,4,5,f +4203,3062a,15,8,f +4203,3062a,4,4,f +4203,3068b,14,29,f +4203,3069b,14,4,f +4203,3069b,0,16,f +4203,3069b,4,16,f +4203,3070b,0,4,f +4203,3403c01,0,1,f +4203,3460,4,4,f +4203,3460,14,6,f +4203,3482,7,6,f +4203,3581,14,4,f +4203,3582,0,4,f +4203,3622,14,8,f +4203,3623,7,2,f +4203,3623,14,6,f +4203,3634,0,4,f +4203,3647,7,9,f +4203,3648a,7,2,f +4203,3650a,7,2,f +4203,3651,7,13,f +4203,3660,4,2,f +4203,3665,14,8,f +4203,3666,0,4,f +4203,3666,4,4,f +4203,3666,14,22,f +4203,3673,7,28,f +4203,3700,4,4,f +4203,3700,0,4,f +4203,3700,14,12,f +4203,3701,14,3,f +4203,3701,1,2,f +4203,3701,4,4,f +4203,3702,4,10,f +4203,3702,14,2,f +4203,3703,4,3,f +4203,3703,0,2,f +4203,3703,1,4,f +4203,3703,14,4,f +4203,3704,0,4,f +4203,3705,0,2,f +4203,3706,0,2,f +4203,3707,0,10,f +4203,3708,0,3,f +4203,3710,4,1,f +4203,3710,14,12,f +4203,3713,7,17,f +4203,3736,7,3,f +4203,3738,4,2,f +4203,3738,14,2,f +4203,3743,7,12,f +4203,3749,7,5,f +4203,3795,4,3,f +4203,56823,0,1,f +4203,71509,0,1,f +4203,9244,7,2,f +4204,2343,5,2,f +4204,30078,5,1,f +4204,3020,462,1,f +4204,3020,27,1,f +4204,3031,462,1,f +4204,32202,10,1,f +4204,33286,115,4,f +4204,33291,14,2,f +4204,33291,5,2,f +4204,33291,4,2,f +4204,3455,15,2,f +4204,3837,115,1,f +4204,3941,10,1,f +4204,3942c,15,1,f +4204,3960p0a,4,1,f +4204,4032a,10,1,f +4204,4032a,25,1,f +4204,41539,74,1,f +4204,4324,4,1,f +4204,45857,89,1,f +4204,4727,115,4,f +4204,4727,10,2,f +4204,4728,45,1,f +4204,4728,15,2,f +4204,4728,73,1,f +4204,4728,4,1,f +4204,4728,13,1,f +4204,5859foam,2,1,f +4204,6124,45,1,f +4204,6182,5,2,f +4204,6254,18,1,f +4204,6254,13,1,f +4204,6256,13,2,f +4204,70973c01,5,1,f +4206,14226c11,0,2,f +4206,2445,15,1,f +4206,2730,0,2,f +4206,2780,0,110,f +4206,2780,0,2,t +4206,2877,0,2,f +4206,3020,72,1,f +4206,3023,0,2,f +4206,3030,0,1,f +4206,3031,0,1,f +4206,3034,0,3,f +4206,3035,15,2,f +4206,30367b,15,2,f +4206,30602,40,2,f +4206,3069b,182,2,f +4206,32002,72,8,f +4206,32002,72,1,t +4206,32009,0,10,f +4206,32013,0,3,f +4206,32014,4,6,f +4206,32016,4,1,f +4206,32017,4,2,f +4206,32054,0,10,f +4206,32056,0,4,f +4206,32062,4,23,f +4206,32064b,15,4,f +4206,32068,0,2,f +4206,32069,0,2,f +4206,32073,71,5,f +4206,32123b,71,1,t +4206,32123b,71,14,f +4206,32138,0,2,f +4206,32140,0,13,f +4206,32184,4,2,f +4206,32192,0,10,f +4206,32195b,0,2,f +4206,32199,0,2,f +4206,32202,4,2,f +4206,32235,4,2,f +4206,32270,71,2,f +4206,32271,4,9,f +4206,32278,72,16,f +4206,32291,4,16,f +4206,32316,15,9,f +4206,32348,4,4,f +4206,32523,0,12,f +4206,32524,72,4,f +4206,32525,0,3,f +4206,32526,0,9,f +4206,32557,0,10,f +4206,33243,15,2,f +4206,3623,15,2,f +4206,3647,7,1,t +4206,3647,7,2,f +4206,3666,0,2,f +4206,3702,0,4,f +4206,3705,0,12,f +4206,3706,0,8,f +4206,3707,0,2,f +4206,3708,0,3,f +4206,3710,15,1,f +4206,3710,0,2,f +4206,3713,4,1,t +4206,3713,4,15,f +4206,3737,0,4,f +4206,3743,71,1,f +4206,3749,19,3,f +4206,3894,15,4,f +4206,3941,42,1,f +4206,3941,15,4,f +4206,3941,0,3,f +4206,3956,0,2,f +4206,3960,72,2,f +4206,40001,72,1,f +4206,4032a,71,4,f +4206,40490,0,4,f +4206,41239,0,8,f +4206,41239,4,3,f +4206,4150,0,3,f +4206,4162,15,1,f +4206,41669,40,2,f +4206,41669,36,6,f +4206,41677,4,8,f +4206,41678,71,4,f +4206,41769,15,1,f +4206,41770,15,1,f +4206,42003,72,6,f +4206,4274,71,5,f +4206,4274,71,1,t +4206,4282,15,2,f +4206,43093,1,41,f +4206,43898,72,6,f +4206,44294,71,2,f +4206,44350,0,2,f +4206,44351,0,2,f +4206,44352,0,1,f +4206,44353,0,1,f +4206,44771,0,4,f +4206,44772,0,4,f +4206,44809,0,5,f +4206,4515,0,1,f +4206,4519,71,11,f +4206,4599a,4,2,f +4206,46453,179,1,f +4206,4740,0,6,f +4206,47712,4,2,f +4206,47713,4,2,f +4206,48288,0,2,f +4206,48989,71,2,f +4206,50950,15,4,f +4206,54200,15,4,f +4206,59426,72,4,f +4206,6141,0,4,f +4206,6141,0,1,t +4206,6191,15,6,f +4206,6536,0,9,f +4206,6538b,0,19,f +4206,6541,0,2,f +4206,6558,0,57,f +4206,6587,72,6,f +4206,6632,0,14,f +4206,70973,135,2,f +4206,78c15,0,1,f +4209,95654,71,1,f +4212,6538b,7,50,f +4213,2526,1,1,f +4213,2526,1,1,t +4213,2544,0,1,f +4213,2562,70,1,f +4213,3626bpr0348,14,1,f +4213,970c00,15,1,f +4213,973pr1441c01,4,1,f +4214,2421,0,1,f +4214,2432,4,1,f +4214,3004,7,1,f +4214,3010,4,2,f +4214,30135,6,1,f +4214,3023,0,1,f +4214,3032,19,1,f +4214,3040b,4,2,f +4214,30478,484,1,f +4214,3626bpx134,14,1,f +4214,3829c01,7,1,f +4214,4083,7,1,f +4214,4133394,9999,1,t +4214,4287,4,2,f +4214,4488,7,1,f +4214,970c00,7,1,f +4214,973px190c01,6,1,f +4216,3001,19,1,f +4216,3003,19,1,f +4216,3004,8,3,f +4216,3004,19,1,f +4216,3005,8,1,f +4216,3010,19,2,f +4216,30176,2,2,f +4216,3020,8,2,f +4216,30238,33,1,f +4217,2340,15,2,f +4217,2413,15,2,f +4217,2415,7,1,f +4217,2421,0,2,f +4217,2460,4,1,f +4217,2479,0,1,f +4217,3139,0,5,f +4217,3464,47,1,f +4217,4488,4,2,f +4217,4624,7,4,f +4217,4868a,15,2,f +4217,4869,7,2,f +4217,4870,7,2,f +4219,3626bpr0001,14,1,f +4219,3901,0,1,f +4219,72824p01,15,1,f +4219,970c00,15,1,f +4219,973c07,1,1,f +4220,2780,0,5,f +4220,32174,191,5,f +4220,43093,1,3,f +4220,44138,72,2,f +4220,4519,71,3,f +4220,47296,72,4,f +4220,47306,191,1,f +4220,47328,72,2,f +4220,48729a,0,2,f +4220,50923,72,1,f +4220,53451,15,3,f +4220,53451,15,1,t +4220,53545,0,1,f +4220,53548,72,2,f +4220,57548pat0001,191,1,f +4220,57554,135,2,f +4220,57555,46,2,f +4220,57556,135,1,f +4220,57557pat0001,191,4,f +4220,57559pat0002,191,1,f +4220,57570,135,2,f +4220,58176,36,2,f +4220,6558,0,1,f +4221,12825,320,1,f +4221,14226c11,0,1,t +4221,14226c11,0,1,f +4221,2412b,72,3,f +4221,2456,1,1,f +4221,2456,72,1,f +4221,2486,0,2,f +4221,2569,72,1,f +4221,2723,0,4,f +4221,2736,71,1,f +4221,2780,0,1,f +4221,2921,71,2,f +4221,3001,72,1,f +4221,3003,71,2,f +4221,3008,14,2,f +4221,30137,71,5,f +4221,30145,15,2,f +4221,30162,72,1,f +4221,30165,14,2,f +4221,30171,70,1,f +4221,3020,320,3,f +4221,3021,14,2,f +4221,3022,14,2,f +4221,3023,182,2,f +4221,3023,27,3,f +4221,3024,320,10,f +4221,3039pr0014,0,1,f +4221,30414,72,1,f +4221,3069b,14,5,f +4221,3070bpr0007,71,1,t +4221,3070bpr0007,71,1,f +4221,32015,14,1,f +4221,32123b,14,1,t +4221,32123b,14,4,f +4221,3298,70,2,f +4221,33057,484,1,f +4221,3623,1,2,f +4221,3626cpr0925,14,1,f +4221,3626cpr0929,14,1,f +4221,3660,72,4,f +4221,3666,320,3,f +4221,3678b,72,1,f +4221,3700,1,4,f +4221,3700,71,2,f +4221,3710,14,8,f +4221,3713,4,4,f +4221,3713,4,1,t +4221,3795,72,3,f +4221,3829c01,1,1,f +4221,3830,70,1,f +4221,3831,70,1,f +4221,3835,0,1,f +4221,3941,42,1,f +4221,3957b,0,1,f +4221,3958,19,2,f +4221,4006,0,1,f +4221,40244,0,1,f +4221,4032a,72,1,f +4221,4079b,70,2,f +4221,4162,14,1,f +4221,4175,72,2,f +4221,4176,47,1,f +4221,42022,14,2,f +4221,4286,14,4,f +4221,4287,14,8,f +4221,43093,1,3,f +4221,43898,14,1,f +4221,47457,14,2,f +4221,48336,4,2,f +4221,49668,320,2,f +4221,52031,14,1,f +4221,53989,320,4,f +4221,54200,72,2,f +4221,54200,72,1,t +4221,56145,71,4,f +4221,5884stk01,9999,1,t +4221,59443,14,1,f +4221,59900,42,2,f +4221,60219,14,1,f +4221,60219,72,3,f +4221,60474,14,1,f +4221,60897,4,2,f +4221,6112,72,2,f +4221,61184,71,2,f +4221,61409,14,2,f +4221,6141,42,1,t +4221,6141,42,1,f +4221,6141,47,1,t +4221,6141,182,4,f +4221,6141,47,4,f +4221,6141,182,1,t +4221,6148,2,2,f +4221,61481,0,4,f +4221,61485,15,1,f +4221,61506,28,1,f +4221,61780,70,1,f +4221,62113,0,2,f +4221,62361,14,4,f +4221,6255,10,1,f +4221,63868,71,12,f +4221,64644,0,3,f +4221,64727,71,6,f +4221,6541,72,1,f +4221,6558,1,1,f +4221,72454,0,2,f +4221,85940,0,1,f +4221,87079,14,4,f +4221,87081,72,1,f +4221,87083,72,4,f +4221,87087,14,6,f +4221,87989,27,2,f +4221,87989,27,1,t +4221,92585,4,1,f +4221,93274,71,2,f +4221,970c00pr0305,28,1,f +4221,970x308,28,1,f +4221,973pr1990c01,320,1,f +4221,973pr1998c01,70,1,f +4221,98065pr0001,326,1,f +4221,98067pr0001,326,1,f +4221,98068pr0001,326,1,f +4221,98069pr0001,326,1,f +4221,98071pr0001,326,1,f +4221,98072pr0001,326,1,f +4221,98138,36,1,t +4221,98138,36,2,f +4221,98165pr0001,326,1,f +4221,99809,148,1,f +4222,2412b,0,6,f +4222,2431,4,8,f +4222,2878c01,0,4,f +4222,2920,0,2,f +4222,2921,2,8,f +4222,3005,2,8,f +4222,30136,2,6,f +4222,3020,0,2,f +4222,3023,4,12,f +4222,3023,47,10,f +4222,3031,0,2,f +4222,3034,8,2,f +4222,30414,0,2,f +4222,3062b,0,16,f +4222,3068b,4,2,f +4222,3069b,4,4,f +4222,3069bpa1,0,2,f +4222,32083,0,6,f +4222,3623,8,1,f +4222,3666,2,18,f +4222,3710,2,2,f +4222,3795,0,2,f +4222,3795,7,2,f +4222,3861b,2,2,f +4222,4022,0,2,f +4222,4025,0,2,f +4222,4035,2,14,f +4222,4036,41,14,f +4222,4079,6,4,f +4222,4490,8,1,f +4222,4510,0,6,f +4222,4589,0,4,f +4222,6112,0,2,f +4222,6141,8,1,t +4222,6141,36,1,t +4222,6141,36,1,f +4222,6141,0,1,t +4222,6141,8,2,f +4222,6141,0,8,f +4222,6583,0,2,f +4222,6584,0,1,f +4222,73092,0,2,f +4223,2780,0,2,t +4223,2780,0,31,f +4223,2905,71,1,f +4223,32002,72,1,f +4223,32002,72,1,t +4223,32013,71,2,f +4223,32034,71,1,f +4223,32039,0,1,t +4223,32039,0,7,f +4223,32054,0,1,t +4223,32054,0,6,f +4223,32062,4,21,f +4223,32062,4,1,t +4223,32073,71,2,f +4223,32123b,71,6,f +4223,32123b,71,1,t +4223,32138,0,2,f +4223,32140,0,2,f +4223,32184,71,2,f +4223,32192,0,2,f +4223,32250,0,2,f +4223,32271,71,1,f +4223,32278,0,1,f +4223,32316,0,3,f +4223,32348,0,2,f +4223,32523,14,4,f +4223,3705,0,4,f +4223,3706,0,1,f +4223,3707,0,2,f +4223,3713,71,1,t +4223,3713,71,3,f +4223,41239,72,2,f +4223,41239,0,1,f +4223,41530,71,4,f +4223,41669,36,4,f +4223,41669,0,4,f +4223,41678,0,6,f +4223,42003,0,7,f +4223,4274,71,1,f +4223,4274,71,1,t +4223,43093,1,1,t +4223,43093,1,9,f +4223,4519,71,2,f +4223,47298,135,2,f +4223,47311,0,2,f +4223,47330,0,2,f +4223,48989,71,1,f +4223,49423,0,1,f +4223,53551,135,21,f +4223,53562pat0005,0,4,f +4223,53566,135,1,f +4223,53568,135,1,f +4223,53574,135,4,f +4223,57528,135,4,f +4223,57563,27,2,f +4223,57563,135,2,f +4223,57564,0,1,f +4223,57565,0,2,f +4223,58230,148,3,f +4223,60176,288,6,f +4223,60176,0,2,f +4223,60483,72,6,f +4223,60484,0,1,f +4223,60485,71,1,f +4223,60894,0,1,f +4223,60896,25,2,f +4223,60899,25,2,f +4223,61053,0,4,f +4223,61799,135,1,f +4223,61805,148,2,f +4223,64178,71,1,f +4223,64251,72,2,f +4223,64262,57,3,f +4223,64264pat0001,288,1,f +4223,64275,135,2,f +4223,64277c01,297,1,f +4223,64327,288,2,f +4223,64328,25,1,f +4223,64712,0,4,f +4223,64889pr0001,135,1,f +4223,6558,1,15,f +4224,3002,4,1,f +4224,3003,14,1,f +4224,3020,4,1,f +4224,3022,4,1,f +4224,3039,4,2,f +4224,3040b,14,2,f +4224,3298px11,15,1,f +4224,3710,14,1,f +4224,3794a,4,1,f +4224,3957a,4,1,f +4224,4070,4,2,f +4225,3004,15,1,f +4225,3004p0b,14,1,f +4225,3022,15,1,f +4225,3022,0,1,f +4225,3039,2,3,f +4225,3040b,2,2,f +4226,2357,8,4,f +4226,2431,15,4,f +4226,2431,7,1,f +4226,3001,7,2,f +4226,3004,8,4,f +4226,3005,4,4,f +4226,3020,7,6,f +4226,3020,0,2,f +4226,3021,8,10,f +4226,3022,7,15,f +4226,30489,378,2,f +4226,30492,378,2,f +4226,30526,8,2,f +4226,30608,0,1,f +4226,3068b,378,17,f +4226,3069b,15,4,f +4226,3070b,15,4,f +4226,3070b,15,1,t +4226,3185,0,12,f +4226,32000,7,2,f +4226,32014,7,2,f +4226,32062,0,2,f +4226,32064a,4,4,f +4226,3298,378,4,f +4226,3460,8,4,f +4226,3626bpb0022,14,1,f +4226,3626bpb0117,14,1,f +4226,3626bpr0233,14,1,f +4226,3626bpx100,14,1,f +4226,3660,0,4,f +4226,3665,4,2,f +4226,3666,0,4,f +4226,3709,4,2,f +4226,3710,7,1,f +4226,3737,0,2,f +4226,3754pb05,4,2,f +4226,3832,0,4,f +4226,3939,378,4,f +4226,3941,4,2,f +4226,41334,0,1,f +4226,4282,8,4,f +4226,43093,1,4,f +4226,43337,7,1,f +4226,43372,19,4,f +4226,43373,25,2,f +4226,43374,15,2,f +4226,43702pr0001,25,3,f +4226,4854,7,2,f +4226,4871,7,4,f +4226,6636,15,6,f +4226,973bpb157c01,4,1,f +4226,973bpb158c01,4,1,f +4226,973bpb159c01,7,1,f +4226,973bpb177c01,19,1,f +4226,x494cx1,1,1,f +4226,x494cx1,25,1,f +4226,x494cx1,8,1,f +4226,x494cx1,272,1,f +4227,3651,7,10,f +4227,3713,7,20,f +4227,3749,7,6,f +4227,4265a,7,4,f +4227,4273b,7,4,f +4227,4274,7,2,f +4229,36,7,2,f +4229,650,79,1,f +4229,7049a,15,2,f +4229,715,4,2,f +4230,3626bpr0883,14,1,f +4230,3678bpr0011,4,1,f +4230,88646,0,1,f +4230,93553,0,1,f +4230,93562,0,1,f +4230,973pr1956c01,4,1,f +4231,2420,19,2,f +4231,2420,70,6,f +4231,3004,70,2,f +4231,3009,70,1,f +4231,3010,70,1,f +4231,3022,70,1,f +4231,3023,70,3,f +4231,30237a,70,1,f +4231,3040b,70,4,f +4231,3069b,70,1,f +4231,33085,14,1,f +4231,3623,70,2,f +4231,3665,70,2,f +4231,3679,71,1,f +4231,3680,0,1,f +4231,3710,70,1,f +4231,4070,70,2,f +4231,4150,19,1,f +4231,44728,19,1,f +4231,6019,19,2,f +4231,85984,19,2,f +4231,87087,0,2,f +4231,88704,70,1,f +4231,92946,19,2,f +4231,98138pr0008,15,2,f +4231,99207,0,1,f +4232,11249,297,2,f +4232,11854,15,2,f +4232,11929,27,2,f +4232,12041,15,1,f +4232,12043,191,1,f +4232,12044,191,1,f +4232,12053,15,1,f +4232,12058,86,1,f +4232,12602,14,8,f +4232,14518,72,4,f +4232,15564,80,2,f +4232,2302,4,6,f +4232,2446,15,4,f +4232,2465,19,8,f +4232,2488,0,10,f +4232,2524,15,4,f +4232,2548,72,4,f +4232,2571,322,4,f +4232,30000,72,24,f +4232,3001,14,20,f +4232,3001,4,50,f +4232,3001,25,30,f +4232,3001,0,20,f +4232,3001,73,40,f +4232,3001,19,20,f +4232,3001,27,40,f +4232,3002,19,20,f +4232,3002,25,20,f +4232,3003,5,30,f +4232,3003,70,15,f +4232,3003,36,20,f +4232,3003,15,15,f +4232,3003,33,20,f +4232,3003,27,30,f +4232,3003,320,20,f +4232,3003,73,20,f +4232,3003,2,10,f +4232,30056,70,12,f +4232,3006,4,6,f +4232,3007,15,8,f +4232,3007,14,6,f +4232,3007,0,8,f +4232,30076,4,3,f +4232,3009,14,10,f +4232,3009,0,10,f +4232,3010,27,20,f +4232,3010,272,20,f +4232,30103,0,2,f +4232,3011,4,4,f +4232,3011,0,4,f +4232,3011,73,12,f +4232,3011,27,6,f +4232,30115,4,2,f +4232,30145,15,8,f +4232,30150,70,4,f +4232,30152pat0001,0,4,f +4232,30153,52,80,f +4232,30238,0,2,f +4232,30286,41,6,f +4232,30373,72,2,f +4232,30389b,0,6,f +4232,30414,71,6,f +4232,3045,4,8,f +4232,30562,41,2,f +4232,3062b,34,20,f +4232,3062b,36,30,f +4232,3062b,33,30,f +4232,3066,40,10,f +4232,31062,70,1,f +4232,32013,1,25,f +4232,32014,0,15,f +4232,32034,0,35,f +4232,3297,71,8,f +4232,33215,0,2,f +4232,3437,10,6,f +4232,3437,25,6,f +4232,3437,14,6,f +4232,3437,1,6,f +4232,3649,71,8,f +4232,3673,71,30,f +4232,3679,71,8,f +4232,3680,0,8,f +4232,3703,4,8,f +4232,3708,0,12,f +4232,3749,19,12,f +4232,3754,47,2,f +4232,3811,2,4,f +4232,3833,4,4,f +4232,3834,80,2,f +4232,3837,72,4,f +4232,3838,14,4,f +4232,3841,72,4,f +4232,3844,80,4,f +4232,3857,1,6,f +4232,3857,72,6,f +4232,3865,72,8,f +4232,3878,0,4,f +4232,3898,15,2,f +4232,3901,71,5,f +4232,3901,0,5,f +4232,3937,0,8,f +4232,3941,41,20,f +4232,3943b,0,4,f +4232,3962b,0,6,f +4232,4006,0,6,f +4232,40902,0,6,f +4232,41748,14,10,f +4232,4186,71,1,f +4232,4332,0,4,f +4232,4349,72,4,f +4232,4360,0,4,f +4232,43888,72,8,f +4232,44126,15,10,f +4232,44294,71,12,f +4232,4449,70,4,f +4232,4476b,15,2,f +4232,4499,70,4,f +4232,4515,0,2,f +4232,4522,0,4,f +4232,4530,19,8,f +4232,4530,70,5,f +4232,4738a,70,4,f +4232,4739a,70,4,f +4232,47517,0,3,f +4232,4911,15,1,f +4232,51265,2,1,f +4232,52381,4,1,f +4232,54095,15,2,f +4232,54651,0,1,f +4232,60219,14,4,f +4232,60364pr0001,0,2,f +4232,6082,72,2,f +4232,6083,72,2,f +4232,6098,72,4,f +4232,6131,0,4,f +4232,6134,4,8,f +4232,61649,4,2,f +4232,61896,484,2,f +4232,6190,72,4,f +4232,6251,15,2,f +4232,6260,15,25,f +4232,6265,15,50,f +4232,6266,15,50,f +4232,62808,72,2,f +4232,63710pr0002c02,10,1,f +4232,64951,70,12,f +4232,71015,82,4,f +4232,75113pr0004c01,19,4,f +4232,75347,15,8,f +4232,76768,71,4,f +4232,86035,1,4,f +4232,86035,27,4,f +4232,87552,47,8,f +4232,89873,71,3,f +4232,90265,15,2,f +4232,90981,72,4,f +4232,92084pr0001,70,2,f +4232,92259,0,5,f +4232,92586pr0001,84,2,f +4232,92586pr0002,484,1,f +4232,92589,71,4,f +4232,95347,0,4,f +4232,98560,2,8,f +4233,10201,71,2,f +4233,2412b,0,10,f +4233,2419,72,2,f +4233,2420,70,6,f +4233,2431,71,2,f +4233,2431,0,3,f +4233,2450,70,8,f +4233,2456,70,4,f +4233,2460,72,1,f +4233,2526,0,1,t +4233,2526,0,1,f +4233,2530,72,1,f +4233,2530,72,1,t +4233,2543,0,1,f +4233,2555,71,8,f +4233,2654,19,6,f +4233,2723,0,4,f +4233,2743,72,2,f +4233,2780,0,1,t +4233,2780,0,24,f +4233,2817,0,1,f +4233,2825,71,2,f +4233,3001,72,3,f +4233,3002,71,1,f +4233,3003,70,2,f +4233,3004,71,6,f +4233,30088,0,4,f +4233,30132,72,2,f +4233,30132,72,1,t +4233,3020,15,4,f +4233,3020,70,2,f +4233,3021,72,3,f +4233,3021,70,10,f +4233,3022,70,6,f +4233,3023,19,8,f +4233,3031,70,1,f +4233,3033,71,1,f +4233,30350b,72,2,f +4233,30357,70,4,f +4233,30357,72,2,f +4233,30363,71,2,f +4233,30374,41,1,f +4233,30374,71,2,f +4233,30383,72,4,f +4233,3040b,72,2,f +4233,30541,4,2,f +4233,3062b,0,7,f +4233,3068b,70,5,f +4233,3069b,0,4,f +4233,32000,72,11,f +4233,32018,71,4,f +4233,32054,0,2,f +4233,32062,4,2,f +4233,32123b,14,4,f +4233,32123b,14,1,t +4233,32140,0,3,f +4233,32187,71,4,f +4233,32523,15,6,f +4233,3298,70,6,f +4233,3626bpr0547,78,1,f +4233,3626bpr0604,72,1,f +4233,3626bpr0606,72,1,f +4233,3666,72,10,f +4233,3679,71,1,f +4233,3680,15,1,f +4233,3705,0,1,f +4233,3706,0,2,f +4233,3710,72,12,f +4233,3747a,71,2,f +4233,3749,19,10,f +4233,3795,71,3,f +4233,3894,72,2,f +4233,3937,72,1,f +4233,4070,15,4,f +4233,4081b,0,2,f +4233,41678,0,1,f +4233,41749,28,1,f +4233,41750,28,1,f +4233,41854,72,1,f +4233,4274,1,1,t +4233,4274,1,4,f +4233,4286,70,2,f +4233,43093,1,2,f +4233,43722,72,1,f +4233,43723,72,1,f +4233,44301a,72,2,f +4233,44302a,71,8,f +4233,44728,71,2,f +4233,45677,70,8,f +4233,47457,71,2,f +4233,47753,28,2,f +4233,48183,0,1,f +4233,48336,71,4,f +4233,4865a,71,1,f +4233,50304,71,1,f +4233,50305,71,1,f +4233,52107,0,6,f +4233,60484,72,2,f +4233,6091,72,2,f +4233,61184,71,5,f +4233,61196,484,1,f +4233,6134,0,1,f +4233,6141,0,1,t +4233,6141,0,8,f +4233,61678,0,2,f +4233,6179,71,2,f +4233,62462,0,1,f +4233,63868,0,4,f +4233,64567,80,1,f +4233,6541,71,6,f +4233,6564,71,1,f +4233,6565,71,1,f +4233,92950,15,2,f +4233,970c00,28,2,f +4233,970x005,15,1,f +4233,973pr1403c01,19,1,f +4233,973pr1519c01,1,1,f +4233,973pr1528c01,320,1,f +4234,11241pr0001,15,1,f +4234,11816pr0003,78,1,f +4234,15207,71,2,f +4234,2339,70,2,f +4234,2357,70,1,f +4234,2412b,71,2,f +4234,2423,2,3,f +4234,2453b,70,1,f +4234,2456,19,1,f +4234,2877,14,1,f +4234,298c02,71,1,f +4234,298c02,71,1,t +4234,3003,70,1,f +4234,3004,19,3,f +4234,3005,19,1,f +4234,3021,2,1,f +4234,3031,2,1,f +4234,3035,2,1,f +4234,3040b,70,2,f +4234,3062b,71,2,f +4234,3062b,70,1,f +4234,3298,320,3,f +4234,33172,25,1,f +4234,33183,10,1,f +4234,33183,10,1,t +4234,3464,15,1,f +4234,3666,26,1,f +4234,3678b,70,1,f +4234,3710,2,2,f +4234,3794b,27,1,f +4234,4085c,71,4,f +4234,4286,2,2,f +4234,4599b,71,1,t +4234,4599b,71,1,f +4234,47905,0,1,f +4234,59895,0,1,f +4234,60481,70,1,f +4234,6141,41,1,t +4234,6141,27,2,f +4234,6141,4,3,f +4234,6141,4,1,t +4234,6141,27,1,t +4234,6141,41,3,f +4234,87087,15,1,f +4234,92256,70,1,f +4234,92456pr0013c01,78,1,f +4234,92820pr0005c01,212,1,f +4234,92950,19,2,f +4234,94717,30,4,f +4234,94718,30,1,f +4234,94719,30,1,f +4234,94720,30,2,f +4234,94721,30,1,f +4234,94722,30,1,f +4234,94723,30,1,f +4234,94724,30,1,f +4234,94725,30,4,f +4234,95343,70,1,f +4234,95344,28,1,f +4234,95344,28,1,t +4234,98283,84,2,f +4234,98288,4,1,f +4236,2340,0,1,f +4236,2780,0,10,f +4236,2780,0,1,t +4236,2825,0,2,f +4236,32013,0,6,f +4236,32014,0,2,f +4236,32016,0,2,f +4236,32039,0,1,f +4236,32056,22,2,f +4236,32062,0,2,f +4236,32074c01,22,1,f +4236,32123b,7,2,f +4236,32123b,7,1,t +4236,32145,3,1,f +4236,32145,0,1,f +4236,3701,0,1,f +4236,3706,0,5,f +4236,3713,7,1,t +4236,3713,7,4,f +4236,3749,7,8,f +4236,4274,7,1,t +4236,4274,7,2,f +4236,4519,0,3,f +4236,6536,0,2,f +4236,6538b,0,3,f +4236,6629,22,4,f +4236,6629,0,2,f +4236,6632,22,2,f +4236,71509,0,2,f +4236,71509,0,2,t +4236,75535,22,1,f +4236,75c06,0,2,f +4236,75c16,22,2,f +4236,76110c01,14,1,f +4236,8268stk01,9999,1,t +4236,tech007,9999,1,f +4237,2780,0,2,f +4237,2994,14,4,f +4237,3010,0,1,f +4237,3022,14,1,f +4237,3030,0,1,f +4237,3031,14,1,f +4237,30602pb019,14,2,f +4237,30602pb020,14,2,f +4237,30602pb021,14,2,f +4237,30603pb02,14,1,f +4237,3069bpb037,14,2,f +4237,3665,14,2,f +4237,3666,14,1,f +4237,3702,0,2,f +4237,3705,0,1,f +4237,3710,14,1,f +4237,3713,71,1,t +4237,3713,71,4,f +4237,3737,0,2,f +4237,3794a,14,8,f +4237,3795,14,4,f +4237,4162,14,1,f +4237,41747pb014,0,1,f +4237,41748pb014,0,1,f +4237,41769,14,2,f +4237,41770,14,2,f +4237,43719,14,1,f +4237,44675,14,1,f +4237,44728,14,2,f +4237,44728,71,4,f +4237,47715,0,1,f +4237,6141,36,2,f +4237,6141,36,1,t +4237,6578,0,4,f +4239,122c01,7,2,f +4239,3020,7,1,f +4239,3021,0,2,f +4239,3023,7,2,f +4239,3024,15,4,f +4239,3031,0,1,f +4239,3062a,33,1,f +4239,3624,15,1,f +4239,3626apr0001,14,1,f +4239,3641,0,4,f +4239,3710,0,1,f +4239,3710,15,4,f +4239,3710,7,1,f +4239,3788,15,2,f +4239,3821,15,1,f +4239,3822,15,1,f +4239,3823,47,1,f +4239,3829c01,15,1,f +4239,4212a,15,1,f +4239,970c00,0,1,f +4239,973c18,0,1,f +4240,2741,0,1,f +4240,2780,0,1,t +4240,2780,0,211,f +4240,2850a,71,12,f +4240,2851,14,12,f +4240,2852,71,12,f +4240,2853,71,2,f +4240,2854,72,5,f +4240,3023,36,3,f +4240,3069b,71,1,f +4240,3069b,14,2,f +4240,32000,0,2,f +4240,32005a,72,6,f +4240,32009,19,4,f +4240,32009,0,6,f +4240,32013,4,30,f +4240,32014,4,8,f +4240,32015,71,2,f +4240,32015,4,13,f +4240,32016,0,2,f +4240,32034,4,21,f +4240,32039,0,7,f +4240,32039,4,13,f +4240,32054,0,26,f +4240,32054,4,50,f +4240,32056,0,12,f +4240,32062,4,70,f +4240,32073,71,18,f +4240,32123b,14,2,t +4240,32123b,14,10,f +4240,32126,4,4,f +4240,32138,0,2,f +4240,32140,0,8,f +4240,32140,4,20,f +4240,32184,0,12,f +4240,32184,71,13,f +4240,32187,71,2,f +4240,32195b,0,8,f +4240,32199,4,4,f +4240,32200,4,2,f +4240,32201,4,4,f +4240,32202,4,7,f +4240,32235,4,9,f +4240,32269,71,1,f +4240,32270,71,2,f +4240,32271,19,6,f +4240,32278,0,18,f +4240,32278,4,5,f +4240,32291,0,2,f +4240,32316,0,6,f +4240,32316,71,1,f +4240,32316,4,13,f +4240,32333,0,2,f +4240,32348,0,4,f +4240,32494,71,2,f +4240,32495c01,0,4,f +4240,32523,4,6,f +4240,32523,0,7,f +4240,32523,19,4,f +4240,32524,4,6,f +4240,32524,71,4,f +4240,32524,0,7,f +4240,32525,4,1,f +4240,32525,0,5,f +4240,32525,71,2,f +4240,32526,4,10,f +4240,32526,0,14,f +4240,32557,0,2,f +4240,33299a,71,2,f +4240,3647,71,1,t +4240,3647,71,1,f +4240,3705,0,19,f +4240,3706,0,4,f +4240,3707,0,4,f +4240,3708,0,2,f +4240,3710,4,2,f +4240,3713,4,1,t +4240,3713,4,16,f +4240,3737,0,2,f +4240,3743,0,2,f +4240,3749,19,1,t +4240,3749,19,1,f +4240,3941,36,2,f +4240,4019,71,2,f +4240,40490,4,4,f +4240,40490,19,2,f +4240,40490,0,7,f +4240,41239,4,3,f +4240,41239,0,8,f +4240,4162,4,1,f +4240,41669,4,4,f +4240,41677,0,4,f +4240,41677,4,20,f +4240,41678,0,2,f +4240,42003,0,20,f +4240,42003,4,8,f +4240,4274,71,1,t +4240,4274,71,10,f +4240,43093,1,78,f +4240,43857,4,6,f +4240,44294,71,6,f +4240,44350,4,2,f +4240,44351,4,2,f +4240,44352,4,3,f +4240,44353,4,3,f +4240,44771,0,4,f +4240,44772,0,4,f +4240,4519,71,52,f +4240,47712,4,2,f +4240,47713,4,2,f +4240,55615,71,4,f +4240,58088,135,4,f +4240,6141,47,4,f +4240,6141,4,1,f +4240,6141,0,2,f +4240,6141,36,2,f +4240,6141,0,1,t +4240,6141,4,1,t +4240,6141,14,1,f +4240,6141,47,2,t +4240,6141,36,1,t +4240,6141,57,2,f +4240,6141,14,1,t +4240,6141,57,1,t +4240,6536,4,24,f +4240,6536,0,17,f +4240,6538b,4,10,f +4240,6538b,71,12,f +4240,6542a,72,1,f +4240,6558,0,94,f +4240,6573,72,1,f +4240,6587,72,7,f +4240,6589,71,4,f +4240,6628,0,6,f +4240,6629,4,4,f +4240,6629,0,4,f +4240,6630,0,1,f +4240,6632,4,6,f +4240,75535,4,4,f +4240,78c02,135,4,f +4241,2357,0,2,f +4241,2357,14,4,f +4241,2412b,14,10,f +4241,2420,0,16,f +4241,2420,14,10,f +4241,2431,72,4,f +4241,2431,0,14,f +4241,2431,14,6,f +4241,2436,0,2,f +4241,2444,72,3,f +4241,2445,0,2,f +4241,2445,14,2,f +4241,2449,14,4,f +4241,2456,0,1,f +4241,2465,72,2,f +4241,2639,14,2,f +4241,2730,0,2,f +4241,2780,0,1,t +4241,2780,0,16,f +4241,2817,0,2,f +4241,2819,0,1,f +4241,2877,0,2,f +4241,2921,14,2,f +4241,298c02,0,1,t +4241,298c02,0,1,f +4241,3001,71,2,f +4241,3003,0,5,f +4241,3004,0,2,f +4241,3004,14,10,f +4241,3005,14,8,f +4241,3007,0,1,f +4241,3009,0,3,f +4241,3009,71,4,f +4241,3009,14,4,f +4241,3010,14,2,f +4241,3020,72,4,f +4241,3020,14,1,f +4241,3020,0,3,f +4241,3021,14,7,f +4241,3021,0,4,f +4241,3021,71,2,f +4241,3022,0,2,f +4241,3023,14,14,f +4241,3023,36,3,f +4241,3023,71,4,f +4241,3023,0,28,f +4241,3024,0,23,f +4241,3024,71,2,f +4241,3024,14,16,f +4241,3028,0,2,f +4241,3032,14,1,f +4241,3034,14,2,f +4241,3036,14,1,f +4241,3036,0,1,f +4241,3037,0,1,f +4241,3040b,72,2,f +4241,3040b,0,2,f +4241,30414,0,3,f +4241,3068b,0,5,f +4241,3068b,14,7,f +4241,3069b,0,12,f +4241,3069b,72,2,f +4241,3069b,14,19,f +4241,3070b,0,8,f +4241,3070b,14,1,t +4241,3070b,14,4,f +4241,3070b,0,1,t +4241,32123b,71,4,f +4241,32123b,71,1,t +4241,32140,0,4,f +4241,32523,15,4,f +4241,32526,0,2,f +4241,32530,72,4,f +4241,3308,14,2,f +4241,3460,71,2,f +4241,3460,0,10,f +4241,3622,14,12,f +4241,3622,0,2,f +4241,3623,14,12,f +4241,3623,0,10,f +4241,3623,71,3,f +4241,3660,0,5,f +4241,3665,14,6,f +4241,3666,14,8,f +4241,3666,0,8,f +4241,3700,72,2,f +4241,3702,71,2,f +4241,3710,14,12,f +4241,3710,0,12,f +4241,3794a,72,3,f +4241,3794a,0,6,f +4241,3794a,71,18,f +4241,3795,0,4,f +4241,3795,14,8,f +4241,3832,0,4,f +4241,3937,71,2,f +4241,3937,0,2,f +4241,3958,0,1,f +4241,4070,71,2,f +4241,4081b,0,2,f +4241,4085c,15,4,f +4241,41539,72,1,f +4241,4162,14,12,f +4241,4162,0,8,f +4241,41769,14,1,f +4241,41770,14,1,f +4241,4287,0,4,f +4241,43093,1,5,f +4241,43722,0,1,f +4241,43722,14,1,f +4241,43723,0,1,f +4241,43723,14,1,f +4241,44309,0,4,f +4241,4460b,14,2,f +4241,4477,14,2,f +4241,4510,0,1,f +4241,4515,14,1,f +4241,4623,0,2,f +4241,47905,72,4,f +4241,48336,0,2,f +4241,4865a,14,4,f +4241,4865a,72,2,f +4241,4865a,0,3,f +4241,50950,72,1,f +4241,50950,14,8,f +4241,50967,14,6,f +4241,54200,0,2,f +4241,54200,71,6,f +4241,54200,71,1,t +4241,54200,14,1,t +4241,54200,0,1,t +4241,54200,14,4,f +4241,56145,0,4,f +4241,59426,72,4,f +4241,6005,0,2,f +4241,6019,14,2,f +4241,60478,14,2,f +4241,60478,0,4,f +4241,60479,0,3,f +4241,6081,0,1,f +4241,6091,72,2,f +4241,6111,0,2,f +4241,6112,0,1,f +4241,6134,71,2,f +4241,6134,0,2,f +4241,6141,0,1,t +4241,6141,72,12,f +4241,6141,72,1,t +4241,6141,0,8,f +4241,61678,14,10,f +4241,61678,0,8,f +4241,62462,80,4,f +4241,63868,0,8,f +4241,6541,0,6,f +4241,6636,0,5,f +4241,6636,14,14,f +4241,73983,14,6,f +4241,73983,0,6,f +4241,8169stk01,9999,1,t +4241,85969,0,4,f +4241,85970,14,2,f +4241,85984,14,4,f +4241,85984,0,4,f +4243,3003,15,1,f +4243,3020,4,1,f +4243,3021,4,1,f +4243,3024,33,1,f +4243,3039,47,1,f +4243,3641,0,4,f +4243,4600,0,2,f +4243,4624,14,4,f +4246,2412b,7,2,f +4246,2413,0,2,f +4246,2421,7,1,f +4246,2431,14,2,f +4246,2437,33,1,f +4246,2446,0,1,f +4246,2447,41,1,f +4246,2447,41,1,t +4246,2456,0,1,f +4246,2460,14,1,f +4246,2479,7,1,f +4246,2877,7,3,f +4246,298c02,7,1,t +4246,298c02,7,1,f +4246,3009,14,2,f +4246,3010,0,4,f +4246,3010,14,1,f +4246,3020,7,1,f +4246,3023,14,1,f +4246,3023,0,1,f +4246,30235,0,1,f +4246,30237a,7,2,f +4246,30248,0,1,f +4246,3034,7,1,f +4246,3035,7,1,f +4246,30386,14,1,f +4246,30387,14,1,f +4246,30389a,7,1,f +4246,3039,14,1,f +4246,30394,14,1,f +4246,30395,8,1,f +4246,30396,4,1,f +4246,3040b,14,2,f +4246,3040b,33,2,f +4246,3297,14,1,f +4246,3626bp04,14,1,f +4246,3710,0,2,f +4246,3794a,14,1,f +4246,3829c01,14,1,f +4246,4083,14,2,f +4246,4349,7,1,f +4246,4485,2,1,f +4246,4488,0,1,f +4246,4600,0,2,f +4246,4865a,14,2,f +4246,6014a,7,4,f +4246,6015,0,4,f +4246,6141,34,1,f +4246,6141,34,1,t +4246,6141,36,1,t +4246,6141,36,1,f +4246,6153a,0,1,f +4246,970x026,8,1,f +4246,973p73c01,2,1,f +4246,b3058,9999,1,f +4247,2352,1,1,f +4247,3001,1,1,f +4247,3001p07,15,2,f +4247,3001p11,1,1,f +4247,3001pt2,1,2,f +4247,3003,15,2,f +4247,3006,15,2,f +4247,3470,2,1,f +4247,3483,0,4,f +4247,3633,1,2,f +4247,3957a,4,1,f +4247,4180c02,0,2,f +4247,fab13b,0,1,f +4248,2357,15,6,f +4248,2357,7,1,f +4248,2376,0,9,f +4248,2412b,0,19,f +4248,2420,0,2,f +4248,2420,7,24,f +4248,2420,15,8,f +4248,2431,0,6,f +4248,2431,15,2,f +4248,2431pc1,0,2,f +4248,2436,0,5,f +4248,2449,0,8,f +4248,2454a,15,2,f +4248,2465,0,1,f +4248,2584,0,2,f +4248,2585,7,2,f +4248,2636,7,4,f +4248,2637,7,2,f +4248,2638,7,2,f +4248,2681,0,2,f +4248,2780,0,8,f +4248,2871a,0,2,f +4248,2873,14,4,f +4248,2877,4,12,f +4248,2877,0,5,f +4248,2878c01,0,14,f +4248,2880,0,6,f +4248,2919,46,2,f +4248,2920,0,8,f +4248,2921,0,12,f +4248,2926,0,3,f +4248,2928,0,2,f +4248,298c02,0,7,f +4248,3002,7,6,f +4248,3004,0,18,f +4248,3004,15,7,f +4248,3005,15,2,f +4248,3005,1,2,f +4248,3007,0,1,f +4248,3008,0,2,f +4248,3009,15,1,f +4248,3009,7,2,f +4248,3009,0,8,f +4248,3010,7,4,f +4248,3010,0,18,f +4248,3010,15,2,f +4248,3020,14,3,f +4248,3020,7,3,f +4248,3021,0,3,f +4248,3021,7,1,f +4248,3022,7,4,f +4248,3023,15,12,f +4248,3023,14,2,f +4248,3023,4,9,f +4248,3023,0,38,f +4248,3024,46,4,f +4248,3024,4,4,f +4248,3029,4,1,f +4248,3031,14,8,f +4248,3031,0,2,f +4248,3033,0,1,f +4248,3034,0,7,f +4248,3034,7,1,f +4248,3034,2,2,f +4248,3035,7,7,f +4248,3036,2,1,f +4248,3037,0,4,f +4248,3039,0,4,f +4248,3040b,7,4,f +4248,3040b,15,2,f +4248,3040b,0,8,f +4248,3048c,0,2,f +4248,3062b,7,19,f +4248,3062b,4,8,f +4248,3063b,15,8,f +4248,3063b,1,8,f +4248,3068b,7,1,f +4248,3069b,4,2,f +4248,3069b,0,4,f +4248,3069b,15,9,f +4248,3127,7,1,f +4248,32005a,8,1,f +4248,3297,0,2,f +4248,3298,15,1,f +4248,3403c01,0,3,f +4248,3436,14,8,f +4248,3460,2,1,f +4248,3460,0,3,f +4248,3460,15,4,f +4248,3492c01,14,1,f +4248,3622,15,9,f +4248,3622,0,7,f +4248,3623,4,2,f +4248,3624,4,1,f +4248,3626bp03,14,2,f +4248,3626bp04,14,1,f +4248,3660,0,4,f +4248,3665,4,2,f +4248,3665,0,3,f +4248,3666,0,8,f +4248,3666,4,7,f +4248,3676,0,6,f +4248,3700,15,2,f +4248,3700,0,6,f +4248,3701,0,4,f +4248,3703,0,1,f +4248,3705,0,10,f +4248,3706,0,1,f +4248,3709,0,3,f +4248,3709,15,2,f +4248,3710,0,13,f +4248,3710,7,2,f +4248,3710,15,6,f +4248,3738,15,2,f +4248,3755,15,2,f +4248,3795,0,1,f +4248,3795,4,9,f +4248,3795,1,1,f +4248,3821,0,1,f +4248,3822,0,1,f +4248,3829c01,4,1,f +4248,3833,15,2,f +4248,3894,7,1,f +4248,3937,0,16,f +4248,3938,4,12,f +4248,3938,1,4,f +4248,3941,7,6,f +4248,3941,0,2,f +4248,3956,0,2,f +4248,3957a,0,4,f +4248,3958,0,1,f +4248,4022,0,8,f +4248,4025,0,7,f +4248,4032a,1,4,f +4248,4070,0,6,f +4248,4079,1,1,f +4248,4085c,1,10,f +4248,4093a,4,2,f +4248,4162,0,14,f +4248,4162,4,4,f +4248,4175,0,16,f +4248,4176,41,3,f +4248,4215b,0,7,f +4248,4263,4,2,f +4248,4265b,7,5,f +4248,4275b,0,8,f +4248,4275b,1,4,f +4248,4276b,0,2,f +4248,4286,0,34,f +4248,4315,7,4,f +4248,4519,0,1,f +4248,4531,0,10,f +4248,4589,0,6,f +4248,4629c01,1,2,f +4248,4742,1,2,f +4248,4854,0,2,f +4248,4864a,41,4,f +4248,5306b,0,1,f +4248,55298,8,1,f +4248,6014a,7,6,f +4248,6015,0,6,f +4248,6035,15,1,f +4248,6111,15,1,f +4248,6141,0,6,f +4248,6232,14,1,f +4248,6553,14,1,f +4248,6576,14,1,f +4248,6576,4,3,f +4248,6583,0,10,f +4248,6584,4,2,f +4248,6628,0,2,f +4248,6632,7,6,f +4248,6636,0,5,f +4248,70358,0,1,f +4248,73092,0,8,f +4248,74746,8,2,f +4248,74747,8,16,f +4248,80547pb01,7,1,f +4248,970c00,0,1,f +4248,970c00,1,2,f +4248,973p83c01,14,1,f +4248,973px8c01,1,2,f +4248,rb00164,0,2,f +4249,2046,13,1,f +4249,2343,47,2,f +4249,2345,15,4,f +4249,2357,7,2,f +4249,2377,13,1,f +4249,2412b,0,2,f +4249,2450,15,2,f +4249,2453a,15,4,f +4249,2462,7,2,f +4249,2518,2,4,f +4249,2536,6,5,f +4249,2540,0,2,f +4249,2546p01,4,1,f +4249,2563,6,1,f +4249,2566,2,1,f +4249,2577,7,2,f +4249,2610,14,1,f +4249,298c02,15,2,f +4249,3001,7,1,f +4249,3004,7,1,f +4249,3004,15,4,f +4249,3005,15,18,f +4249,3005,7,2,f +4249,3006,7,2,f +4249,3009,15,3,f +4249,3009,7,1,f +4249,3010,15,2,f +4249,3010,7,1,f +4249,3020,15,3,f +4249,3021,15,1,f +4249,3022,7,1,f +4249,3023,1,1,f +4249,3023,15,1,f +4249,3023,7,1,f +4249,3029,15,1,f +4249,3031,15,1,f +4249,3037,15,1,f +4249,3062b,4,1,f +4249,3062b,47,1,f +4249,3062b,46,2,f +4249,3062b,7,3,f +4249,3063b,15,8,f +4249,3063b,4,4,f +4249,3068b,15,2,f +4249,3068b,4,1,f +4249,3069b,7,1,f +4249,3070b,4,3,f +4249,3070b,7,1,f +4249,3070b,14,1,f +4249,3185,13,3,f +4249,3403,15,1,f +4249,3404,15,1,f +4249,3455,15,4,f +4249,3460,15,1,f +4249,3622px1,15,1,f +4249,3623,7,1,f +4249,3626bp02,14,2,f +4249,3626bp03,14,1,f +4249,3626bp04,14,1,f +4249,3633,13,2,f +4249,3659,15,2,f +4249,3660,7,2,f +4249,3665,7,2,f +4249,3666,15,1,f +4249,3710,4,2,f +4249,3710,7,1,f +4249,3710,15,3,f +4249,3741,2,1,f +4249,3742,4,1,t +4249,3742,4,3,f +4249,3794a,4,2,f +4249,3794a,15,1,f +4249,3811p04,1,1,f +4249,3861b,13,1,f +4249,3899,13,1,f +4249,3901,0,1,f +4249,3937,15,1,f +4249,3938,7,1,f +4249,3957a,15,1,f +4249,3959,0,1,f +4249,3960,15,1,f +4249,3960pb001,15,1,f +4249,4032a,2,1,f +4249,4079,13,2,f +4249,4085c,4,1,f +4249,4150px14,15,1,f +4249,4150px31,15,1,f +4249,4150px32,15,1,f +4249,4444,15,1,f +4249,4485,1,1,f +4249,4485,15,1,f +4249,4528,0,1,f +4249,4533,14,1,f +4249,4589,46,1,f +4249,4589,0,1,f +4249,4599a,13,1,f +4249,476,15,1,f +4249,4854,15,1,f +4249,4855,15,1,f +4249,4859,4,1,f +4249,4865a,15,2,f +4249,6093,0,1,f +4249,6111,7,1,f +4249,6141,0,1,f +4249,6141,36,4,f +4249,6141,47,3,f +4249,6228a,7,1,f +4249,6231,15,2,f +4249,6259,41,2,f +4249,63965,15,2,f +4249,6414stk01,9999,1,t +4249,92410,15,1,f +4249,970c00,15,1,f +4249,970x001,14,2,f +4249,970x026,14,1,f +4249,973c11,0,1,f +4249,973pb0018c01,13,1,f +4249,973pr1204c01,15,1,f +4249,973px34c01,15,1,f +4249,x66px8,47,1,f +4250,2719,7,2,f +4250,3743,7,2,f +4250,4261,7,2,f +4250,4262,7,2,f +4250,4263,7,3,f +4250,4442,7,2,f +4250,9244,7,1,f +4252,14419,72,2,f +4252,14704,71,2,f +4252,17485,71,4,f +4252,2780,0,1,t +4252,2780,0,4,f +4252,30367c,71,2,f +4252,3941,4,4,f +4252,6141,46,1,t +4252,6141,46,4,f +4252,6222,71,2,f +4252,6628,0,2,f +4252,86500,40,1,f +4252,87081,4,1,f +4254,44343pr01,2,2,f +4255,2412b,80,4,f +4255,2420,14,2,f +4255,2420,72,2,f +4255,2431,14,2,f +4255,2431,0,2,f +4255,2436,14,2,f +4255,2436,0,3,f +4255,2540,72,2,f +4255,2654,71,1,f +4255,2695,71,2,f +4255,2696,0,2,f +4255,2780,0,10,f +4255,2815,0,2,f +4255,2877,71,4,f +4255,2904,0,2,f +4255,3004,4,1,f +4255,3020,14,2,f +4255,3020,72,5,f +4255,3021,72,2,f +4255,3022,14,2,f +4255,3022,0,3,f +4255,3022,72,2,f +4255,3023,71,2,f +4255,3023,72,8,f +4255,3023,4,1,f +4255,3023,14,2,f +4255,30602,40,1,f +4255,30602,14,1,f +4255,3062b,71,4,f +4255,3062b,0,4,f +4255,3068b,0,1,f +4255,3068b,72,2,f +4255,3069b,14,2,f +4255,3070b,14,1,t +4255,3070b,14,2,f +4255,3070b,36,1,t +4255,3070b,36,2,f +4255,32000,14,2,f +4255,32000,72,2,f +4255,32002,72,1,t +4255,32002,72,2,f +4255,32013,71,4,f +4255,32015,0,2,f +4255,32016,0,2,f +4255,32017,71,7,f +4255,32039,0,6,f +4255,32062,4,4,f +4255,32062,0,4,f +4255,32064b,71,2,f +4255,32065,71,2,f +4255,32073,71,4,f +4255,32123b,71,32,f +4255,32123b,71,1,t +4255,32198,71,2,f +4255,32249,72,2,f +4255,32250,71,2,f +4255,32271,71,2,f +4255,3623,14,2,f +4255,3623,72,4,f +4255,3660,14,2,f +4255,3701,71,2,f +4255,3705,0,8,f +4255,3706,0,5,f +4255,3707,0,2,f +4255,3710,72,2,f +4255,3710,14,2,f +4255,3713,71,1,t +4255,3713,71,13,f +4255,3747b,14,1,f +4255,3749,19,2,f +4255,3794a,4,2,f +4255,3794a,14,9,f +4255,3795,14,1,f +4255,3795,71,2,f +4255,3795,4,1,f +4255,3894,71,2,f +4255,3941,72,1,f +4255,3957a,0,2,f +4255,40490,14,2,f +4255,4070,71,2,f +4255,4081b,71,2,f +4255,4085c,0,2,f +4255,4095,0,2,f +4255,41677,72,2,f +4255,41747,14,1,f +4255,41748,14,1,f +4255,41752,72,1,f +4255,41764,14,1,f +4255,41765,14,1,f +4255,4185,71,2,f +4255,42022,14,1,f +4255,4274,1,8,f +4255,4274,1,1,t +4255,43710,4,1,f +4255,43711,4,1,f +4255,43712,14,1,f +4255,43722,72,2,f +4255,43723,72,2,f +4255,44301a,0,4,f +4255,44302a,4,2,f +4255,44302a,14,2,f +4255,44309,0,2,f +4255,44728,71,2,f +4255,4519,71,4,f +4255,4589,71,2,f +4255,4716,0,2,f +4255,47755,72,3,f +4255,50943,80,2,f +4255,50948,0,1,f +4255,50950,14,2,f +4255,50950,4,4,f +4255,50950,72,2,f +4255,54200,46,2,f +4255,54200,4,2,f +4255,54200,14,4,f +4255,54200,72,6,f +4255,54870,47,1,f +4255,56145,71,2,f +4255,6019,72,1,f +4255,6141,0,6,f +4255,6141,0,1,t +4255,6141,47,1,t +4255,6141,47,2,f +4255,6141,80,4,f +4255,6141,80,1,t +4255,6536,72,8,f +4255,6538b,71,4,f +4255,6541,72,2,f +4255,6553,0,2,f +4255,6558,0,2,f +4255,6587,72,2,f +4255,6632,71,2,f +4255,85543,15,2,f +4258,251,0,1,f +4258,3003,4,3,f +4258,3004,0,1,f +4258,3004,4,2,f +4258,3004,7,10,f +4258,3005,7,10,f +4258,3009,7,2,f +4258,3010,4,1,f +4258,3021,4,3,f +4258,3021,2,1,f +4258,3023,4,4,f +4258,3023,0,1,f +4258,3024,7,1,f +4258,3028,2,1,f +4258,3034,7,1,f +4258,3062b,0,4,f +4258,3069b,1,1,f +4258,3622,7,1,f +4258,3623,7,2,f +4258,3626apr0001,14,2,f +4258,3659,4,1,f +4258,3660,0,2,f +4258,3665,0,2,f +4258,3665,1,2,f +4258,3673,7,1,f +4258,3679,7,1,f +4258,3685,4,2,f +4258,3700,7,2,f +4258,3710,1,2,f +4258,3794a,1,1,f +4258,3795,7,1,f +4258,3844,8,1,f +4258,3848,0,1,f +4258,4085a,7,2,f +4258,4444,7,2,f +4258,4444p01,7,1,f +4258,4460a,4,2,f +4258,4477,7,1,f +4258,4488,0,2,f +4258,4489a,6,2,f +4258,4493c01pb02,0,1,f +4258,4496,6,1,f +4258,4505,0,1,f +4258,4522,0,1,f +4258,4524,6,1,f +4258,4587,4,1,f +4258,970c00,0,1,f +4258,970x026,1,1,f +4258,973c10,14,1,f +4258,973p42c01,4,1,f +4259,2399,0,1,f +4259,2419,15,2,f +4259,2419,0,3,f +4259,2420,15,8,f +4259,2420,0,6,f +4259,2431,7,2,f +4259,2431,0,3,f +4259,2431,15,7,f +4259,2431,0,1,t +4259,2444,7,2,f +4259,2450,15,2,f +4259,2450,0,4,f +4259,2454a,15,2,f +4259,2536,0,2,f +4259,2711,15,2,f +4259,2711,0,6,f +4259,2711,7,2,f +4259,2730,7,1,f +4259,2730,0,4,f +4259,2730,15,7,f +4259,2736,7,2,f +4259,2744,0,2,f +4259,2744,15,8,f +4259,2780,0,45,f +4259,2817,0,3,f +4259,2817,15,2,f +4259,2825,7,6,f +4259,2825,14,8,f +4259,2825,15,8,f +4259,2825,0,14,f +4259,2838c01,7,1,f +4259,2847c01,15,1,f +4259,2853,7,2,f +4259,2853,7,2,t +4259,2856c01,0,1,f +4259,2905,7,2,f +4259,2905,0,2,f +4259,2905,14,2,f +4259,2905,15,2,f +4259,2983,7,1,f +4259,2985,4,2,f +4259,2986,4,1,f +4259,3008,0,2,f +4259,3021,15,6,f +4259,3022,0,9,f +4259,3022,15,5,f +4259,3023,0,27,f +4259,3023,15,33,f +4259,3024,15,4,f +4259,3024,0,6,f +4259,3024,15,1,t +4259,3024,0,1,t +4259,3030,0,1,f +4259,3031,15,2,f +4259,3038,15,4,f +4259,3039,0,1,f +4259,3039,15,6,f +4259,3040b,15,4,f +4259,3040b,0,2,f +4259,3068b,0,4,f +4259,3069b,0,4,f +4259,3069b,15,6,f +4259,3070b,15,2,f +4259,3070b,15,1,t +4259,32000,15,12,f +4259,32001,0,10,f +4259,32002,8,1,t +4259,32002,8,8,f +4259,3298,0,1,f +4259,3460,0,4,f +4259,3460,7,2,f +4259,3460,15,5,f +4259,3482,15,6,f +4259,3483,0,6,f +4259,3623,0,20,f +4259,3623,15,20,f +4259,3647,7,1,t +4259,3647,7,8,f +4259,3648a,7,2,f +4259,3650c,7,3,f +4259,3651,7,1,t +4259,3651,7,3,f +4259,3660,0,1,f +4259,3665,15,2,f +4259,3665,0,2,f +4259,3666,0,14,f +4259,3666,15,9,f +4259,3700,0,6,f +4259,3700,7,1,f +4259,3700,15,12,f +4259,3701,7,4,f +4259,3701,15,2,f +4259,3701,0,14,f +4259,3702,0,7,f +4259,3702,15,17,f +4259,3702,7,1,f +4259,3703,0,4,f +4259,3703,15,9,f +4259,3704,0,40,f +4259,3705,0,19,f +4259,3705,15,4,f +4259,3706,0,18,f +4259,3707,15,12,f +4259,3707,0,17,f +4259,3708,0,5,f +4259,3709,0,2,f +4259,3709,15,8,f +4259,3709,14,4,f +4259,3710,15,13,f +4259,3710,0,28,f +4259,3710,14,4,f +4259,3713,7,1,t +4259,3713,7,64,f +4259,3737,0,10,f +4259,3738,0,1,f +4259,3747a,0,1,f +4259,3749,7,28,f +4259,3794a,0,12,f +4259,3794a,15,2,f +4259,3795,15,3,f +4259,3894,15,6,f +4259,3894,0,14,f +4259,3895,15,5,f +4259,3895,0,4,f +4259,3941,15,2,f +4259,3941,7,1,f +4259,4019,7,24,f +4259,4032a,7,1,f +4259,4079,14,2,f +4259,4150,15,2,f +4259,4150,7,1,f +4259,4162,0,2,f +4259,4185,7,5,f +4259,4185,14,2,f +4259,4220,0,1,t +4259,4221,0,2,t +4259,4262,7,6,f +4259,4262,0,2,f +4259,4265b,7,1,t +4259,4265b,7,90,f +4259,4273b,7,18,f +4259,4274,7,1,t +4259,4274,7,12,f +4259,4477,0,15,f +4259,4477,15,14,f +4259,4519,0,41,f +4259,4716,0,4,f +4259,4757,0,1,f +4259,4859,15,2,f +4259,4864a,15,2,f +4259,4865a,0,2,f +4259,5306bc015,0,1,f +4259,5306bc020,0,1,f +4259,5306bc069,0,2,f +4259,6040,0,3,f +4259,6048b,0,6,f +4259,6069,15,2,f +4259,6141,0,4,f +4259,6141,0,1,t +4259,6217b,0,6,f +4259,6536,15,6,f +4259,6536,0,2,f +4259,6536,7,20,f +4259,6538b,15,18,f +4259,6538b,7,20,f +4259,6539,7,2,f +4259,6541,0,8,f +4259,6541,15,14,f +4259,6541,7,4,f +4259,6542a,8,7,f +4259,6551c01,7,2,f +4259,6553,14,5,f +4259,6558,0,8,f +4259,6564,0,1,f +4259,6564,15,3,f +4259,6565,15,3,f +4259,6565,0,1,f +4259,6575,7,4,f +4259,6587,8,4,f +4259,6589,7,15,f +4259,6629,15,10,f +4259,6631,7,2,f +4259,6632,7,16,f +4259,6632,15,4,f +4259,6632,0,4,f +4259,6637,7,1,f +4259,6641,7,1,f +4259,6641,7,1,t +4259,73129,7,1,f +4259,73983,15,4,f +4259,73983,0,24,f +4259,75535,15,2,t +4259,85543,15,2,f +4259,85543,15,1,t +4259,85544,4,7,f +4259,x165,47,8,f +4262,2412b,320,2,f +4262,2419,71,1,f +4262,2436,71,1,f +4262,30162,72,1,f +4262,3022,72,1,f +4262,3023,71,1,f +4262,3024,71,1,f +4262,3034,72,1,f +4262,3040b,71,1,f +4262,3062b,72,2,f +4262,3623,71,2,f +4262,3794b,71,10,f +4262,4032a,0,1,f +4262,4081b,72,2,f +4262,41769,71,1,f +4262,41770,71,1,f +4262,51739,71,1,f +4262,54200,71,1,t +4262,54200,71,2,f +4262,61409,72,1,f +4262,6141,72,1,t +4262,6141,72,2,f +4262,6141,41,4,f +4262,6141,41,1,t +4262,63864,320,2,f +4263,45449,230,2,f +4263,45452,230,2,f +4263,46296,230,4,f +4263,clikits022,230,4,f +4263,clikits023,18,2,f +4263,clikits023,118,2,f +4263,clikits024,46,2,f +4263,clikits024,230,4,f +4263,clikits024,43,2,f +4263,clikits040,47,2,f +4263,clikits046,17,2,f +4263,clikits046,13,2,f +4263,clikits222,63,2,f +4265,3673,7,15,f +4265,4459,0,15,f +4266,3443c02,4,1,f +4266,699,7,1,f +4268,10178,35,1,f +4268,10247,71,4,f +4268,11211,71,2,f +4268,11476,71,2,f +4268,13608,179,4,f +4268,13971,4,1,f +4268,14226c41,0,1,f +4268,14301,71,2,f +4268,14769,15,2,f +4268,15429pr0001,15,1,f +4268,15437pr0001,0,1,f +4268,15442,15,1,f +4268,15443,70,1,f +4268,15444,4,1,f +4268,15535,72,1,f +4268,15557pr0001,484,1,f +4268,15573,71,2,f +4268,15706,0,4,f +4268,15864pat01,4,1,f +4268,16494,4,1,f +4268,16691pr0001,15,1,f +4268,18386,0,1,f +4268,2357,72,2,f +4268,2357,71,1,f +4268,2412b,15,2,f +4268,2412b,179,4,f +4268,2412b,36,13,f +4268,2420,0,8,f +4268,2431,15,6,f +4268,2445,71,2,f +4268,2449,71,2,f +4268,2450,0,2,f +4268,2454a,0,6,f +4268,2454a,71,2,f +4268,2458,71,2,f +4268,2460,72,4,f +4268,2465,4,1,f +4268,2465,0,1,f +4268,2476,71,4,f +4268,2566,0,1,f +4268,2654,4,2,f +4268,2730,15,1,f +4268,2780,0,12,f +4268,2780,0,4,t +4268,2817,4,1,f +4268,2877,0,6,f +4268,298c02,0,1,t +4268,298c02,0,2,f +4268,3002,15,2,f +4268,3002,4,1,f +4268,3003,71,2,f +4268,3003,72,2,f +4268,3004,71,2,f +4268,3004,0,4,f +4268,3005,71,2,f +4268,3005,0,14,f +4268,3008,0,2,f +4268,3010,15,4,f +4268,30145,71,2,f +4268,30157,71,1,f +4268,30165,4,2,f +4268,3020,4,2,f +4268,3020,71,1,f +4268,3020,15,2,f +4268,3021,4,1,f +4268,3021,0,2,f +4268,3021,71,6,f +4268,3022,0,6,f +4268,3022,71,1,f +4268,3023,40,6,f +4268,3023,71,13,f +4268,3023,57,18,f +4268,3023,0,4,f +4268,3023,15,3,f +4268,3023,36,14,f +4268,3024,226,1,f +4268,3024,46,2,f +4268,3024,36,7,f +4268,3024,15,1,t +4268,3024,0,2,f +4268,3024,36,3,t +4268,3024,15,2,f +4268,3024,46,1,t +4268,3024,323,1,f +4268,3024,226,1,t +4268,3024,323,1,t +4268,3024,0,1,t +4268,3027,71,1,f +4268,3032,0,1,f +4268,3033,71,1,f +4268,3034,71,1,f +4268,3035,0,1,f +4268,30357,4,2,f +4268,30364,0,2,f +4268,30374,0,1,f +4268,30375,72,4,f +4268,3039,0,6,f +4268,3040b,0,12,f +4268,3040b,4,2,f +4268,30414,71,1,f +4268,3045,0,2,f +4268,30503,4,6,f +4268,30552,71,3,f +4268,30553,71,2,f +4268,30554a,71,2,f +4268,3062b,15,4,f +4268,30663,0,1,f +4268,3068b,4,2,f +4268,3068b,0,7,f +4268,3069b,71,5,f +4268,3176,71,2,f +4268,32005a,0,2,f +4268,32018,71,1,f +4268,32062,4,2,f +4268,32064a,4,2,f +4268,32064a,71,2,f +4268,32140,71,2,f +4268,32184,4,2,f +4268,32184,0,1,f +4268,32187,71,1,f +4268,32291,72,1,f +4268,32316,71,2,f +4268,3245c,71,1,f +4268,32474,4,1,f +4268,32523,72,2,f +4268,32524,0,2,f +4268,32525,0,1,f +4268,32530,72,2,f +4268,3298,0,4,f +4268,3300,15,1,f +4268,3460,15,3,f +4268,3460,4,2,f +4268,3622,0,10,f +4268,3622pr0002,29,1,f +4268,3623,15,1,f +4268,3623,29,1,f +4268,3626cpr1325,14,1,f +4268,3626cpr1341,14,1,f +4268,3626cpr1342,84,1,f +4268,3626cpr1343,14,1,f +4268,3626cpr1344,14,1,f +4268,3626cpr1390,4,1,f +4268,3660,0,4,f +4268,3678bpr0025,15,1,f +4268,3700,15,5,f +4268,3701,0,8,f +4268,3710,0,4,f +4268,3710,71,1,f +4268,3710,2,1,f +4268,3710,4,2,f +4268,3710,72,1,f +4268,3794b,15,4,f +4268,3795,2,1,f +4268,3795,72,1,f +4268,3830,0,4,f +4268,3831,0,4,f +4268,3894,71,2,f +4268,3899,4,2,f +4268,3941,72,4,f +4268,3942c,72,1,f +4268,40233,71,1,f +4268,4032a,72,1,f +4268,4079b,0,4,f +4268,4081b,15,4,f +4268,4081b,0,4,f +4268,40902,0,2,f +4268,41239,0,2,f +4268,4162,15,1,f +4268,41769,2,1,f +4268,41770,2,1,f +4268,42003,0,2,f +4268,42446,71,1,t +4268,42446,71,1,f +4268,4274,1,1,t +4268,4274,1,4,f +4268,4287,0,6,f +4268,43093,1,7,f +4268,4349,72,1,f +4268,43898,0,1,f +4268,4460b,0,2,f +4268,44728,71,3,f +4268,4490pr0001,29,1,f +4268,4510,71,1,f +4268,4510,0,3,f +4268,4519,71,3,f +4268,4595,0,1,f +4268,46212,41,2,f +4268,4733,0,2,f +4268,4740,36,1,f +4268,47456,0,2,f +4268,4871,0,2,f +4268,50231,15,1,f +4268,50231pat0001,321,1,f +4268,53451,179,1,t +4268,53451,179,4,f +4268,54200,0,9,f +4268,54200,5,1,t +4268,54200,2,1,t +4268,54200,5,2,f +4268,54200,0,2,t +4268,54200,2,2,f +4268,55013,72,3,f +4268,57539,179,1,f +4268,57539,179,1,t +4268,58176,36,2,f +4268,59233pat0001,41,2,f +4268,59443,4,2,f +4268,59900,36,2,f +4268,60471,71,2,f +4268,60481,71,6,f +4268,60592,0,4,f +4268,60599,15,2,f +4268,60897,72,4,f +4268,6106,71,4,f +4268,6112,72,1,f +4268,61184,71,1,f +4268,61252,71,4,f +4268,6141,179,3,t +4268,6141,46,1,f +4268,6141,0,2,f +4268,6141,41,1,t +4268,6141,158,1,t +4268,6141,297,6,f +4268,6141,4,1,t +4268,6141,297,1,t +4268,6141,158,1,f +4268,6141,179,21,f +4268,6141,46,1,t +4268,6141,0,1,t +4268,6141,41,8,f +4268,6141,4,4,f +4268,61482,71,1,t +4268,61482,71,1,f +4268,6179,15,1,f +4268,6183,0,6,f +4268,6249,71,2,f +4268,6266,0,1,t +4268,6266,0,6,f +4268,63864,0,1,f +4268,63868,0,2,f +4268,63965,0,1,f +4268,63965,15,1,f +4268,6541,0,1,f +4268,6558,1,2,f +4268,6628,0,4,f +4268,6632,14,2,f +4268,75937,0,1,f +4268,85861,15,4,t +4268,85861,15,3,f +4268,85984,72,4,f +4268,85984,0,2,f +4268,87079,71,2,f +4268,87079,72,5,f +4268,87083,72,2,f +4268,87552,71,4,f +4268,87552,41,12,f +4268,87580,71,1,f +4268,87580,72,2,f +4268,87747,0,6,f +4268,87747,0,1,t +4268,88000,47,2,f +4268,88072,0,2,f +4268,89522,212,1,f +4268,89522,212,1,t +4268,90258,0,1,f +4268,92280,71,1,f +4268,92582,71,1,f +4268,92947,15,12,f +4268,93217,72,1,f +4268,93273,72,2,f +4268,93606,15,1,f +4268,95347,0,3,f +4268,96874,25,1,t +4268,970c00,0,2,f +4268,970c00,72,1,f +4268,970c00pr0605,25,1,f +4268,970c00pr0641,4,1,f +4268,973pr2538c01,25,1,f +4268,973pr2555c01,72,1,f +4268,973pr2556c01,15,1,f +4268,973pr2557c01,73,1,f +4268,973pr2558c01,73,1,f +4268,973pr2568c01,14,1,f +4268,98138,179,1,t +4268,98138,179,1,f +4268,98313,179,4,f +4268,98313,72,6,f +4268,99206,4,4,f +4268,99207,71,3,f +4268,99780,71,2,f +4268,99781,15,2,f +4269,3624,15,3,f +4269,3624,0,3,f +4269,3625,15,3,f +4269,3625,4,3,f +4269,3625,0,3,f +4269,3626apr0001,14,36,f +4269,3833,4,3,f +4269,3834,0,3,f +4269,3835,7,3,f +4269,3836,6,5,f +4269,3837,8,5,f +4269,3841,8,3,f +4269,3842a,4,3,f +4269,3842a,7,3,f +4269,3898,15,3,f +4269,3899,4,3,f +4269,3901,0,3,f +4269,3901,6,3,f +4269,3962a,0,3,f +4269,4006,0,5,f +4269,4349,7,3,f +4269,970c00,0,9,f +4269,970c00,15,9,f +4269,970c00,1,9,f +4269,970c00,4,9,f +4269,973c01,15,3,f +4269,973c02,4,3,f +4269,973c07,1,3,f +4269,973c18,0,3,f +4269,973p13c01,4,3,f +4269,973p18c01,1,3,f +4269,973p21c01,0,3,f +4269,973p25c01,15,3,f +4269,973p26c01,1,3,f +4269,973p72c01,15,3,f +4269,973pb0091c01,0,3,f +4269,973px3c01,15,3,f +4270,3003,1,1,f +4270,3004,4,1,f +4270,3005,4,2,f +4270,3020,4,1,f +4270,3023,15,1,f +4270,3023,4,4,f +4270,3024,36,2,f +4270,3024,46,2,f +4270,3039p32,15,1,f +4270,3068b,4,1,f +4270,3626apr0001,14,1,f +4270,3641,0,6,f +4270,3710,0,2,f +4270,3788,4,2,f +4270,3821,4,1,f +4270,3822,4,1,f +4270,3823,47,2,f +4270,3829c01,14,1,f +4270,3937,7,1,f +4270,3938,7,1,f +4270,4006,0,1,f +4270,4070,4,4,f +4270,4079,14,1,f +4270,4085a,15,2,f +4270,4212b,4,1,f +4270,4213,0,1,f +4270,4315,0,1,f +4270,4485,1,1,f +4270,4600,7,3,f +4270,4624,7,6,f +4270,4629c01,1,1,f +4270,970c00,1,1,f +4270,973pb0201c01,15,1,f +4271,2362a,7,2,f +4271,2412b,0,1,f +4271,2419,0,2,f +4271,2419,1,2,f +4271,2431,0,1,f +4271,2432,0,1,f +4271,2434,0,1,f +4271,2444,0,4,f +4271,2449,4,2,f +4271,2449,7,2,f +4271,2450,7,4,f +4271,2450,0,5,f +4271,2452,0,1,f +4271,2456,7,1,f +4271,2540,0,2,f +4271,2654,0,2,f +4271,2880,0,4,f +4271,298c02,0,2,f +4271,3020,0,2,f +4271,3020,7,1,f +4271,3021,7,1,f +4271,3023,7,2,f +4271,3023,4,1,f +4271,3032,7,1,f +4271,3039,7,1,f +4271,3040p33,0,2,f +4271,3068b,4,1,f +4271,3068bp51,0,1,f +4271,3069bp28,0,1,f +4271,3127,7,1,f +4271,3297,0,1,f +4271,3298,4,1,f +4271,3660,0,1,f +4271,3665,7,2,f +4271,3666,1,1,f +4271,3673,7,4,f +4271,3676,7,4,f +4271,3679,7,2,f +4271,3680,0,2,f +4271,3684,7,3,f +4271,3684,1,1,f +4271,3710,0,2,f +4271,3794a,1,1,f +4271,3941,7,4,f +4271,3943b,0,2,f +4271,3956,7,3,f +4271,3960,7,2,f +4271,4229,0,1,f +4271,4275b,0,4,f +4271,4275b,1,4,f +4271,4276b,1,6,f +4271,4276b,4,3,f +4271,4276b,0,4,f +4271,4349,4,4,f +4271,4360,7,1,f +4271,4590,0,1,f +4271,4596,0,2,f +4271,4735,0,4,f +4271,4740,42,3,f +4271,4740,7,2,f +4271,6118,0,4,f +4271,6141,0,2,f +4271,6141,4,4,f +4271,6141,42,3,f +4271,73983,7,2,f +4271,73983,4,2,f +4274,11203,72,8,f +4274,11211,71,2,f +4274,11260,25,1,f +4274,11458,72,4,f +4274,11589pr0001,25,1,f +4274,11597,25,2,f +4274,11598,52,2,f +4274,11599,35,1,f +4274,12825,72,8,f +4274,12993,326,1,f +4274,13608,179,1,f +4274,13731,15,4,f +4274,15207,72,2,f +4274,2340,15,2,f +4274,2357,0,2,f +4274,2412b,71,11,f +4274,2412b,320,6,f +4274,2431,320,2,f +4274,2431,25,13,f +4274,2432,71,2,f +4274,2444,72,4,f +4274,2447,47,2,f +4274,2447,47,2,t +4274,2456,15,2,f +4274,2540,71,1,f +4274,2654,71,17,f +4274,2654,47,1,f +4274,2780,0,30,f +4274,2780,0,3,t +4274,298c02,71,2,t +4274,298c02,71,4,f +4274,3002,25,1,f +4274,30035,0,1,f +4274,30136,72,1,f +4274,30137,71,2,f +4274,30162,72,2,f +4274,3021,72,3,f +4274,3023,25,17,f +4274,3023,28,3,f +4274,3031,72,1,f +4274,3031,0,1,f +4274,3032,72,5,f +4274,3034,15,2,f +4274,30355,15,3,f +4274,30356,15,3,f +4274,30367b,72,5,f +4274,30374,71,1,f +4274,3038,15,2,f +4274,3039pr0013,15,1,f +4274,30407,42,4,f +4274,30414,71,2,f +4274,30592,72,2,f +4274,3062b,27,1,f +4274,3062b,71,8,f +4274,3068b,72,1,f +4274,3069bpr0101,71,2,f +4274,3176,320,4,f +4274,32000,72,12,f +4274,32001,71,2,f +4274,32013,72,3,f +4274,32016,0,4,f +4274,32018,72,2,f +4274,32054,0,2,f +4274,32062,4,6,f +4274,32064b,0,4,f +4274,32124,0,2,f +4274,32138,0,2,f +4274,32140,71,4,f +4274,32184,4,2,f +4274,32316,71,2,f +4274,32324,71,1,f +4274,32524,72,4,f +4274,32532,0,2,f +4274,3298,25,7,f +4274,3460,72,2,f +4274,3622,0,2,f +4274,3622,15,4,f +4274,3623,71,4,f +4274,3626cpr1156,14,1,f +4274,3626cpr1161,14,1,f +4274,3633,72,2,f +4274,3660,15,12,f +4274,3665,15,2,f +4274,3666,15,1,f +4274,3701,15,2,f +4274,3702,0,2,f +4274,3703,0,2,f +4274,3706,0,1,f +4274,3708,0,1,f +4274,3709,15,8,f +4274,3709,0,2,f +4274,3710,72,2,f +4274,3710,28,3,f +4274,3713,4,1,t +4274,3713,4,2,f +4274,3747b,0,2,f +4274,3749,19,18,f +4274,3794b,72,9,f +4274,3795,71,5,f +4274,3894,72,4,f +4274,3960,41,1,f +4274,40244,0,8,f +4274,4032a,0,2,f +4274,4032a,72,15,f +4274,40378,27,1,f +4274,41532,0,4,f +4274,41677,15,2,f +4274,41767,72,1,f +4274,41768,72,1,f +4274,42003,14,4,f +4274,43093,1,14,f +4274,43710,72,1,f +4274,43711,72,1,f +4274,43722,25,3,f +4274,43723,25,3,f +4274,43857,14,2,f +4274,44301a,72,2,f +4274,44302a,71,1,f +4274,44728,71,6,f +4274,4519,71,1,f +4274,45677,25,1,f +4274,4589,36,10,f +4274,4589,46,16,f +4274,4595,0,2,f +4274,4597,15,2,f +4274,4623,72,2,f +4274,47397,15,2,f +4274,47398,15,2,f +4274,4740,72,2,f +4274,4740,28,2,f +4274,4740,28,1,t +4274,47905,0,3,f +4274,48336,71,1,f +4274,48729b,72,1,t +4274,48729b,72,2,f +4274,49668,15,2,f +4274,50304,15,1,f +4274,50305,15,1,f +4274,50950,15,2,f +4274,50950,25,4,f +4274,51739,0,1,f +4274,52107,0,2,f +4274,53451,27,14,f +4274,53451,27,1,t +4274,54200,72,1,t +4274,54200,27,2,f +4274,54200,27,1,t +4274,54200,72,2,f +4274,55013,72,2,f +4274,55981,71,2,f +4274,55982,71,6,f +4274,56908,71,1,f +4274,57539,179,2,f +4274,59443,4,1,f +4274,59900,52,2,f +4274,60470a,15,3,f +4274,60471,0,1,f +4274,60474,320,2,f +4274,60477,15,8,f +4274,6091,15,2,f +4274,61184,71,6,f +4274,61409,72,2,f +4274,61409,27,4,f +4274,6141,36,3,f +4274,6141,45,1,f +4274,6141,41,7,f +4274,6141,47,8,f +4274,6141,72,8,f +4274,6141,41,3,t +4274,6141,47,1,t +4274,6141,27,8,f +4274,6141,72,2,t +4274,6141,45,1,t +4274,6141,36,1,t +4274,6141,27,1,t +4274,6183,0,1,f +4274,6215,71,2,f +4274,62462,0,2,f +4274,63864,72,2,f +4274,64225,27,1,f +4274,64644,0,1,f +4274,6541,0,4,f +4274,6541,72,1,f +4274,6558,1,10,f +4274,70705stk01,9999,1,t +4274,73983,72,4,f +4274,85984,15,6,f +4274,87083,72,5,f +4274,87087,71,2,f +4274,87580,71,2,f +4274,87781,25,2,f +4274,88930,25,8,f +4274,89201,0,6,f +4274,90192,320,2,f +4274,92220,148,8,f +4274,92692,0,2,f +4274,92946,72,10,f +4274,92947,71,3,f +4274,93273,72,3,f +4274,95199,72,2,f +4274,96874,25,1,t +4274,970c00pr0458,326,1,f +4274,970c00pr0460,25,1,f +4274,970c00pr0464,25,2,f +4274,973pr2256c01,326,1,f +4274,973pr2257c01,71,1,f +4274,973pr2299c01,71,2,f +4274,98102,47,2,f +4274,98138,71,1,t +4274,98138,71,1,f +4274,99207,71,2,f +4274,99780,72,4,f +4274,99781,71,4,f +4275,2346,0,4,f +4275,2847c02,0,1,f +4275,3482,7,8,f +4275,3483,0,4,f +4275,3701,0,4,f +4275,3706,0,4,f +4275,5011,0,1,f +4275,5306bc162,0,1,f +4276,10509pr0001,70,1,f +4276,2397,72,1,f +4276,3001,29,2,f +4276,3003,5,3,f +4276,3003,29,6,f +4276,3003,27,2,f +4276,3003,322,2,f +4276,3004,70,1,f +4276,3005,27,2,f +4276,3005,29,2,f +4276,3005,322,4,f +4276,3010,5,2,f +4276,30153,41,1,f +4276,3020,322,2,f +4276,3022,322,2,f +4276,3031,2,2,f +4276,30367b,27,2,f +4276,30385,297,2,f +4276,3069b,70,1,f +4276,33172,25,1,f +4276,33183,10,1,f +4276,33183,10,1,t +4276,33291,5,3,f +4276,33291,10,3,f +4276,33291,5,1,t +4276,33291,191,3,f +4276,33291,191,1,t +4276,33291,10,1,t +4276,33303,15,2,f +4276,3622,5,4,f +4276,3626bpr0893,14,1,f +4276,3666,27,1,f +4276,3678bpr0003,15,1,f +4276,3794b,15,1,f +4276,3852b,191,1,f +4276,3941,27,2,f +4276,3942c,26,2,f +4276,3957b,15,1,f +4276,4489,70,2,f +4276,4495b,297,1,f +4276,4523,27,1,f +4276,4589,26,1,t +4276,4589,26,2,f +4276,4600,0,1,f +4276,59363,226,1,f +4276,60598,15,1,f +4276,60607,297,2,f +4276,6066,29,1,f +4276,6141,27,3,f +4276,6141,45,1,t +4276,6141,27,1,t +4276,6141,45,3,f +4276,6256,29,1,f +4276,970c00,0,1,f +4276,973pr0020c01,15,1,f +4277,10202,71,2,f +4277,10247,0,2,f +4277,10884,27,5,f +4277,10928,72,5,f +4277,11090,0,2,f +4277,11097,179,1,f +4277,11098,179,2,f +4277,11103,297,1,f +4277,11127,41,2,f +4277,11129pr0003,320,1,f +4277,11129pr0006,28,1,f +4277,11153,191,9,f +4277,11211,71,2,f +4277,11215,71,1,f +4277,11476,71,1,f +4277,11477,308,15,f +4277,12825,0,4,f +4277,14769,71,2,f +4277,15064,308,4,f +4277,15065pr0001,379,1,f +4277,15071,0,1,f +4277,15082,0,2,f +4277,15279,10,4,f +4277,15464pr0001,70,1,f +4277,15535,72,2,f +4277,2412b,0,8,f +4277,2419,2,2,f +4277,2423,2,3,f +4277,2423,326,4,f +4277,2431,0,1,f +4277,2432,4,1,f +4277,2445,72,2,f +4277,2454a,72,8,f +4277,2496,0,2,f +4277,2540,4,1,f +4277,2654,0,1,f +4277,2655,71,2,f +4277,2730,71,2,f +4277,2780,0,10,f +4277,2825,4,1,f +4277,2854,19,1,f +4277,3001,72,3,f +4277,3002,27,2,f +4277,3003,71,13,f +4277,30031,0,1,f +4277,3004,72,10,f +4277,3005,71,10,f +4277,3009,0,3,f +4277,3010,71,3,f +4277,3020,2,6,f +4277,3020,72,4,f +4277,3021,0,8,f +4277,3022,2,8,f +4277,3022,71,1,f +4277,3023,72,42,f +4277,3023,27,4,f +4277,3023,4,5,f +4277,3030,2,2,f +4277,3031,71,1,f +4277,3034,72,2,f +4277,3034,70,3,f +4277,3035,71,2,f +4277,3035,288,2,f +4277,30374,41,1,f +4277,3039,72,2,f +4277,30414,0,3,f +4277,30526,71,2,f +4277,3062b,41,3,f +4277,3062b,71,1,f +4277,3069b,191,8,f +4277,3069bpr0070,0,2,f +4277,3069bpr0101,71,1,f +4277,3070b,0,1,f +4277,32000,0,5,f +4277,32015,0,1,f +4277,32123b,71,2,f +4277,32124,0,2,f +4277,32125,71,6,f +4277,32184,71,2,f +4277,32198,19,1,f +4277,32269,19,2,f +4277,32271,72,2,f +4277,32449,0,4,f +4277,32556,19,2,f +4277,3460,72,1,f +4277,3622,2,1,f +4277,3623,2,2,f +4277,3626cpr1121,19,1,f +4277,3626cpr1293,70,1,f +4277,3626cpr1323,379,1,f +4277,3626cpr1356,70,1,f +4277,3660,71,1,f +4277,3666,4,2,f +4277,3673,71,4,f +4277,3678b,72,4,f +4277,3700,71,11,f +4277,3705,0,3,f +4277,3709,4,2,f +4277,3710,27,3,f +4277,3710,0,4,f +4277,3743,0,2,f +4277,3749,19,6,f +4277,3794b,70,11,f +4277,3835,0,1,f +4277,3894,71,2,f +4277,3937,71,1,f +4277,3941,72,1,f +4277,3942c,72,1,f +4277,3956,71,5,f +4277,4006,0,1,f +4277,4032a,72,2,f +4277,4032a,70,2,f +4277,4070,0,2,f +4277,4151,72,1,f +4277,41677,4,4,f +4277,41747,0,1,f +4277,41748,0,1,f +4277,41769,2,1,f +4277,41770,2,1,f +4277,4274,1,2,f +4277,4287,71,4,f +4277,43093,1,11,f +4277,4345b,71,2,f +4277,4346,47,2,f +4277,43898,0,3,f +4277,43903,0,2,f +4277,44225,71,2,f +4277,44294,71,1,f +4277,4460b,191,10,f +4277,44728,0,4,f +4277,4477,71,1,f +4277,4515,71,1,f +4277,4519,71,1,f +4277,4522,0,1,f +4277,45677,0,1,f +4277,4595,0,1,f +4277,4697b,71,2,f +4277,47753,191,4,f +4277,48729b,0,3,f +4277,50950,0,2,f +4277,53451,27,7,f +4277,54200,191,4,f +4277,54200,0,10,f +4277,55981,71,8,f +4277,57909b,72,2,f +4277,59426,72,1,f +4277,59443,4,3,f +4277,59900,35,4,f +4277,59900,33,9,f +4277,59900,0,11,f +4277,60474,0,5,f +4277,60478,0,5,f +4277,60581,72,2,f +4277,6083,72,2,f +4277,60849,0,2,f +4277,60897,4,6,f +4277,61184,71,4,f +4277,61252,0,2,f +4277,6134,0,1,f +4277,6141,72,2,f +4277,6141,35,13,f +4277,6141,41,2,f +4277,6141,47,1,f +4277,6141,27,10,f +4277,6179,0,1,f +4277,62462,71,3,f +4277,63868,70,2,f +4277,63965,0,1,f +4277,64644,0,6,f +4277,64799,71,3,f +4277,6541,4,2,f +4277,6583,0,3,f +4277,6587,28,2,f +4277,6589,19,1,f +4277,6628,0,1,f +4277,6636,191,4,f +4277,73983,71,4,f +4277,85941,191,2,f +4277,85943,72,1,f +4277,85984,4,3,f +4277,85984,191,5,f +4277,85984,71,6,f +4277,87079,191,1,f +4277,87083,72,4,f +4277,87544,71,2,f +4277,87552,71,2,f +4277,87580,4,3,f +4277,89201,0,1,f +4277,90608,72,2,f +4277,90636,191,2,f +4277,92280,71,1,f +4277,92402,0,3,f +4277,92438,10,1,f +4277,92593,71,1,f +4277,92690,71,1,f +4277,95199,0,2,f +4277,95347,0,1,f +4277,96874,25,1,t +4277,970c00pr0571,70,1,f +4277,970c00pr0587,379,1,f +4277,970c00pr0589,70,1,f +4277,970c02pr0566,19,1,f +4277,973pr2477c03,71,1,f +4277,973pr2482c01,1,1,f +4277,973pr2536c01,379,1,f +4277,973pr2537c01,70,1,f +4277,98138,41,9,f +4277,98313,0,2,f +4277,98560,2,2,f +4277,99207,71,2,f +4277,99780,72,5,f +4277,99781,0,2,f +4281,3011,10,1,f +4281,3437,1,1,f +4281,3437,25,1,f +4281,4066pb398,4,2,f +4281,54043,4,2,f +4281,88764pb01,484,1,f +4281,88784,484,1,f +4281,92011,4,1,f +4281,94883,73,1,f +4282,2412b,4,2,f +4282,2431,27,2,f +4282,2458,14,1,f +4282,2540,72,2,f +4282,3001,0,1,f +4282,3020,72,3,f +4282,3023,0,3,f +4282,3023,14,2,f +4282,3024,46,2,f +4282,3032,0,2,f +4282,3034,72,1,f +4282,3037,0,1,f +4282,30391,0,4,f +4282,3070b,27,2,f +4282,3070b,27,1,t +4282,32018,0,2,f +4282,32123b,14,1,t +4282,32123b,14,8,f +4282,3623,27,2,f +4282,3660,4,2,f +4282,3666,27,2,f +4282,3666,0,1,f +4282,3700,14,2,f +4282,3707,0,2,f +4282,3710,4,1,f +4282,3710,27,2,f +4282,3795,0,2,f +4282,4085c,0,4,f +4282,43712,27,1,f +4282,44301a,0,2,f +4282,44302a,0,2,f +4282,45677,27,1,f +4282,48336,0,1,f +4282,50943,72,1,f +4282,50947,27,2,f +4282,53451,15,1,t +4282,53451,15,2,f +4282,55982,0,4,f +4282,60219,72,1,f +4282,60470a,0,1,f +4282,61409,27,2,f +4282,6141,4,2,f +4282,6141,4,1,t +4282,61678,27,2,f +4282,62361,27,2,f +4282,63864,27,2,f +4282,64799,4,1,f +4282,6636,0,1,f +4282,87747,15,2,f +4282,87941,72,1,f +4282,87943,27,1,f +4282,87944,72,1,f +4282,88496,72,1,f +4282,88930,27,1,f +4285,2543,4,1,f +4285,3626bpr0001,14,1,f +4285,6132,15,1,f +4285,970x026,4,1,f +4285,973c02,4,1,f +4286,3626bpr0825,14,1,f +4286,88646,0,1,f +4286,95322pr0001,10,1,f +4286,95323pr0001,10,1,f +4286,970c00,10,1,f +4286,973pr1822c01,10,1,f +4289,2032,10,1,f +4289,3437,14,1,f +4289,3437,27,1,f +4289,3437,191,1,f +4289,4543,14,1,f +4289,4544,4,1,f +4289,4550,4,1,f +4289,4559c01,191,1,f +4289,4570pb01,10,1,f +4289,4580c01,1,1,f +4289,64146,14,1,f +4289,98465,1,1,f +4290,11055,0,2,f +4290,11214,72,2,f +4290,11438,4,1,f +4290,11439,42,1,f +4290,11439,42,1,t +4290,11476,0,4,f +4290,11477,308,4,f +4290,11478,71,2,f +4290,11610,0,2,f +4290,14720,71,2,f +4290,15068,378,1,f +4290,15070,297,4,f +4290,15392,70,1,f +4290,15392,70,1,t +4290,15461,0,2,f +4290,15535,28,2,f +4290,15619,320,1,t +4290,15619,320,1,f +4290,16968,71,1,f +4290,18575,0,3,f +4290,18587,71,1,f +4290,18588,72,1,f +4290,18649,71,1,f +4290,18651,0,3,f +4290,18976,179,2,f +4290,19857pat0001,0,1,f +4290,20105,0,1,f +4290,20482,297,2,t +4290,20482,297,5,f +4290,21849,40,1,f +4290,24201,0,4,f +4290,24299,0,1,f +4290,24307,0,1,f +4290,24316,70,5,f +4290,24458,4,2,f +4290,25214,148,3,f +4290,26313,9999,1,f +4290,2654,182,3,f +4290,2723,0,1,f +4290,2736,71,2,f +4290,2780,0,7,f +4290,2780,0,3,t +4290,2815,0,1,f +4290,2871b,308,2,f +4290,2877,72,2,f +4290,3001,19,1,f +4290,3005,72,2,f +4290,30153,42,1,f +4290,30162,72,1,f +4290,30169,0,1,f +4290,30173b,297,1,t +4290,30173b,297,4,f +4290,30177,85,1,f +4290,3021,70,5,f +4290,3023,70,4,f +4290,3023,182,15,f +4290,3023,40,2,f +4290,3024,70,2,f +4290,3024,70,1,t +4290,3031,0,2,f +4290,3032,70,4,f +4290,3034,71,1,f +4290,3037,0,2,f +4290,30374,0,1,t +4290,30374,0,4,f +4290,3040b,19,4,f +4290,3040b,28,1,f +4290,3040b,0,2,f +4290,30503,19,1,f +4290,3068b,19,1,f +4290,3069b,297,1,f +4290,32062,4,1,f +4290,32062,0,1,f +4290,32123b,14,2,t +4290,32123b,71,2,f +4290,32123b,14,3,f +4290,32123b,71,1,t +4290,32187,179,5,f +4290,32270,0,2,f +4290,32271,0,2,f +4290,32523,0,2,f +4290,32556,19,6,f +4290,33299a,71,4,f +4290,3626bpr0677,14,1,f +4290,3626cpr9983,14,1,f +4290,3626cpr9984,0,2,f +4290,3666,0,3,f +4290,3700,0,2,f +4290,3700,72,10,f +4290,3701,72,4,f +4290,3705,0,1,f +4290,3706,4,1,f +4290,3710,378,3,f +4290,3710,0,4,f +4290,3710,28,2,f +4290,3713,4,1,t +4290,3713,4,1,f +4290,3749,19,3,f +4290,3795,308,2,f +4290,3895,72,2,f +4290,3958,19,1,f +4290,4032a,72,5,f +4290,4081b,0,6,f +4290,4185,57,1,f +4290,41879a,0,1,f +4290,41879a,85,1,f +4290,42446,70,1,t +4290,42446,70,1,f +4290,4274,1,1,t +4290,4274,1,2,f +4290,43093,1,2,f +4290,43710,0,2,f +4290,43711,0,2,f +4290,44567a,0,4,f +4290,44676,378,2,f +4290,4495b,4,1,t +4290,4495b,4,1,f +4290,4588,72,2,f +4290,4697b,0,1,f +4290,4697b,0,1,t +4290,4740,0,1,f +4290,50950,0,4,f +4290,50950,378,2,f +4290,53451,4,2,f +4290,53451,4,1,t +4290,53585,0,2,f +4290,53585,0,1,t +4290,54200,378,1,t +4290,54200,378,2,f +4290,55976,0,4,f +4290,55982,179,1,f +4290,56145,297,4,f +4290,59426,72,3,f +4290,59443,25,1,f +4290,59900,179,3,f +4290,59900,297,2,f +4290,60470a,71,2,f +4290,60471,0,4,f +4290,60471,71,2,f +4290,60474,308,2,f +4290,60479,70,2,f +4290,60483,25,1,f +4290,6091,19,2,f +4290,61184,71,1,f +4290,61252,297,2,f +4290,6140,0,1,f +4290,61409,378,4,f +4290,6141,52,1,t +4290,6141,47,4,f +4290,6141,182,1,t +4290,6141,47,1,t +4290,6141,52,2,f +4290,6141,182,12,f +4290,63965,70,1,f +4290,64567,308,2,f +4290,64567,0,1,t +4290,64567,0,1,f +4290,64567,308,1,t +4290,64867,70,2,f +4290,6541,70,8,f +4290,6553,72,2,f +4290,6628,0,2,f +4290,6636,0,2,f +4290,85546,14,2,f +4290,85861,297,6,f +4290,85861,297,1,t +4290,85984,0,2,f +4290,85984,19,1,f +4290,85984,308,2,f +4290,87620,19,1,f +4290,87994,297,2,f +4290,87994,297,1,t +4290,90540,297,2,f +4290,90540,297,1,t +4290,92013,72,2,f +4290,92280,71,4,f +4290,92280,0,2,f +4290,92338,297,2,f +4290,92947,70,2,f +4290,93095,19,1,f +4290,93273,0,1,f +4290,95229,70,2,f +4290,970c00pr9996,72,1,f +4290,970c00pr9997,0,1,f +4290,973pr9974c01,85,1,f +4290,973pr9975c01,0,1,f +4290,973pr9976c01,0,2,f +4290,98137,297,2,f +4290,98283,19,2,f +4290,98313,0,8,f +4290,99021,72,2,f +4290,99206,0,2,f +4290,99773,14,2,f +4290,99781,0,4,f +4296,2654,72,2,f +4296,3004,25,2,f +4296,3004,1,2,f +4296,30173a,135,1,f +4296,30177,1,1,f +4296,3022,25,1,f +4296,3022,1,1,f +4296,32192,4,8,f +4296,3626bpr0746,14,1,f +4296,3626bpr0751a,15,1,f +4296,3708,0,10,f +4296,4497,297,1,f +4296,4621809,9999,1,t +4296,4621810,9999,1,t +4296,4621811,9999,1,t +4296,4621812,9999,1,t +4296,4621813,9999,1,t +4296,4621814,9999,1,t +4296,4621815,9999,1,t +4296,4621816,9999,1,t +4296,4621817,9999,1,t +4296,4621818,9999,3,t +4296,59232,297,1,f +4296,59443,4,2,f +4296,60752,135,1,f +4296,63965,70,1,f +4296,92547pr0001,15,1,f +4296,92547pr0008,0,1,f +4296,92691,15,1,f +4296,93062c01,15,2,f +4296,93062c01,15,2,t +4296,93271pr0001,15,1,f +4296,93609,15,2,t +4296,93609,15,2,f +4296,94071pr0002,0,1,f +4296,970c00pr0192,1,1,f +4296,973pr1717c01,1,1,f +4297,30374,70,1,f +4297,3069b,14,1,f +4297,3069b,1,1,f +4297,41879a,4,1,f +4297,64804pr01,378,1,f +4297,92590,28,1,f +4297,973pr1768c01,4,1,f +4298,2456,4,2,f +4298,3001,14,5,f +4298,3001,15,2,f +4298,3001,1,4,f +4298,3001,4,2,f +4298,3001pr1,14,1,f +4298,3002,4,2,f +4298,3002,1,2,f +4298,3002,14,2,f +4298,3002,0,2,f +4298,3003,1,4,f +4298,3003,15,4,f +4298,3003,0,2,f +4298,3003,4,6,f +4298,3003,14,6,f +4298,3003pe2,15,2,f +4298,3003pe2,14,2,f +4298,3007,1,1,f +4298,4744,2,1,f +4298,4744pr0001,0,1,f +4300,2412b,3,2,f +4300,2420,0,8,f +4300,2431,0,2,f +4300,2450,0,6,f +4300,2654,0,1,f +4300,2715,3,1,f +4300,2716,0,1,f +4300,2723,15,4,f +4300,2730,0,2,f +4300,2736,7,2,f +4300,2744,3,2,f +4300,2780,0,61,f +4300,2817,0,4,f +4300,2825,0,6,f +4300,2825,3,4,f +4300,2853,7,2,f +4300,2905,0,2,f +4300,30028,0,6,f +4300,3021,0,1,f +4300,3022,0,3,f +4300,3023,0,3,f +4300,3024,0,4,f +4300,3039,0,1,f +4300,3045,0,2,f +4300,3068b,0,1,f +4300,32001,0,1,f +4300,32002,8,26,f +4300,32005a,8,2,f +4300,32009,3,4,f +4300,32009,0,4,f +4300,32013,0,18,f +4300,32014,0,4,f +4300,32015,0,4,f +4300,32016,0,9,f +4300,32016,7,6,f +4300,32017,14,2,f +4300,32017,3,20,f +4300,32017,0,10,f +4300,32028,0,4,f +4300,32034,0,3,f +4300,32039,7,10,f +4300,32039,0,23,f +4300,32054,0,4,f +4300,32056,3,4,f +4300,32056,14,2,f +4300,32056,0,8,f +4300,32062,0,47,f +4300,32063,3,2,f +4300,32063,0,2,f +4300,32064a,3,6,f +4300,32065,3,2,f +4300,32065,14,6,f +4300,32065,0,2,f +4300,32068,0,4,f +4300,32068,3,3,f +4300,32069,3,2,f +4300,32073,0,6,f +4300,32089,14,10,f +4300,32090,0,4,f +4300,32094,0,2,f +4300,32123b,7,15,f +4300,32126,7,6,f +4300,3460,0,2,f +4300,3482,14,1,f +4300,3483,0,1,f +4300,3623,0,2,f +4300,3647,7,5,f +4300,3648a,7,3,f +4300,3665,0,2,f +4300,3666,0,4,f +4300,3673,7,7,f +4300,3700,0,11,f +4300,3701,0,4,f +4300,3702,0,2,f +4300,3703,0,1,f +4300,3705,0,32,f +4300,3706,0,13,f +4300,3707,0,6,f +4300,3708,0,3,f +4300,3709,0,2,f +4300,3710,0,6,f +4300,3713,7,27,f +4300,3737,0,6,f +4300,3738,0,4,f +4300,3749,7,40,f +4300,3894,0,10,f +4300,3895,0,2,f +4300,4019,7,4,f +4300,4032a,0,1,f +4300,4274,7,5,f +4300,4519,0,15,f +4300,4757,14,1,f +4300,5306bc020,14,3,f +4300,5306bc020,0,1,f +4300,5306bc026,0,1,f +4300,5306bc026,14,2,f +4300,6536,7,4,f +4300,6536,0,25,f +4300,6536,14,2,f +4300,6538b,3,6,f +4300,6541,0,4,f +4300,6553,7,2,f +4300,6558,0,37,f +4300,6585,0,1,f +4300,6587,8,4,f +4300,6589,7,6,f +4300,6592,7,1,f +4300,6594,0,4,f +4300,6595,14,4,f +4300,6628,0,2,f +4300,6629,3,14,f +4300,6629,0,12,f +4300,6629,14,2,f +4300,6632,3,18,f +4300,6632,0,22,f +4300,6643,8,2,f +4300,6644,0,2,f +4300,71427c01,7,1,f +4300,71793,7,1,f +4300,71797,3,1,f +4300,71846,3,1,f +4300,75535,0,10,f +4300,75535,14,4,f +4300,75535,3,13,f +4300,75c10,0,2,f +4300,76019,15,1,f +4300,76110c01,14,1,f +4300,78c04,3,2,f +4300,78c04,0,2,f +4300,78c07,0,4,f +4300,78c07,3,2,f +4300,78c08,3,3,f +4300,78c09,0,2,f +4300,78c11,0,4,f +4300,78c18,0,2,f +4300,879c02,41,1,f +4300,879c03,41,1,f +4300,879c04,41,1,f +4300,926957,9999,1,f +4300,case11,9999,1,f +4300,flex08c04l,7,2,f +4300,rb00168,0,5,f +4300,rb00178,0,4,f +4300,tech001,9999,1,f +4300,x180,7,1,f +4300,x428,0,2,f +4302,2920,0,2,f +4302,4022,0,2,f +4302,73092,0,2,f +4303,122c01,7,1,f +4303,3004,14,2,f +4303,3020,14,1,f +4303,3022,7,1,f +4303,3470,2,1,f +4303,3624,1,1,f +4303,3626apr0001,14,1,f +4303,3633,14,2,f +4303,3641,0,2,f +4303,3836,6,1,f +4303,3837,8,1,f +4303,3839b,7,1,f +4303,3840,14,1,f +4303,605.1stk01,9999,1,t +4303,970c00,0,1,f +4303,973c07,1,1,f +4304,14769,71,2,f +4304,15712,72,2,f +4304,2357,1,5,f +4304,3003,71,2,f +4304,3004,1,4,f +4304,3005,14,4,f +4304,3005,1,8,f +4304,3008,14,2,f +4304,3009,1,8,f +4304,3009,14,1,f +4304,3010,1,10,f +4304,3010,14,2,f +4304,3020,70,2,f +4304,3020,14,1,f +4304,3037,4,6,f +4304,3039,4,8,f +4304,3062b,1,1,f +4304,3068b,72,1,f +4304,3069b,14,2,f +4304,3070b,4,1,t +4304,3070b,4,2,f +4304,3297,4,2,f +4304,3298,4,2,f +4304,3299,4,1,f +4304,3300,4,1,f +4304,3622,1,6,f +4304,3623,14,2,f +4304,3623,71,2,f +4304,3626b,47,1,f +4304,3626bpr0649,14,1,f +4304,3626cpr1349,14,1,f +4304,3660,70,2,f +4304,3660,71,1,f +4304,3666,272,5,f +4304,3710,272,3,f +4304,3710,70,1,f +4304,3710,14,1,f +4304,3741,2,1,t +4304,3741,2,1,f +4304,3742,14,3,f +4304,3742,14,1,t +4304,3747a,1,4,f +4304,3832,14,1,f +4304,3833,4,1,f +4304,4162,14,1,f +4304,4445,4,4,f +4304,4477,14,1,f +4304,4522,0,1,f +4304,4740,72,1,f +4304,6020,71,1,f +4304,60592,15,2,f +4304,60593,15,4,f +4304,60596,15,1,f +4304,60601,47,2,f +4304,60602,47,4,f +4304,60623,14,1,f +4304,60849,71,1,f +4304,60849,71,1,t +4304,6111,1,7,f +4304,6111,14,2,f +4304,6141,2,1,t +4304,6141,27,1,t +4304,6141,27,1,f +4304,6141,2,3,f +4304,63864,4,2,f +4304,6636,4,4,f +4304,6636,14,1,f +4304,87079,70,1,f +4304,87087,71,1,f +4304,87990,70,1,f +4304,91405,10,1,f +4304,970c00,85,1,f +4304,970c00,1,1,f +4304,973pr1580c01,15,1,f +4304,973pr1585c01,25,1,f +4304,98138,71,1,t +4304,98138,29,1,f +4304,98138,29,1,t +4304,98138,71,5,f +4304,98283,71,3,f +4305,4327,14,1,f +4305,fab3i,9999,1,f +4305,fabeh4,4,1,f +4306,3005ptab,15,2,f +4306,3005ptacb,15,1,f +4306,3005ptaeb,15,1,f +4306,3005ptandb,15,1,f +4306,3005ptaub,15,1,f +4306,3005ptbb,15,2,f +4306,3005ptcb,15,1,f +4306,3005ptdb,15,2,f +4306,3005pteb,15,2,f +4306,3005ptfb,15,1,f +4306,3005ptgb,15,2,f +4306,3005pthb,15,2,f +4306,3005ptib,15,1,f +4306,3005ptjb,15,1,f +4306,3005ptkb,15,2,f +4306,3005ptlb,15,2,f +4306,3005ptmb,15,2,f +4306,3005ptnb,15,2,f +4306,3005ptob,15,1,f +4306,3005ptoslasb,15,1,f +4306,3005ptoub,15,1,f +4306,3005ptpb,15,1,f +4306,3005ptqb,15,1,f +4306,3005ptrb,15,2,f +4306,3005ptsb,15,2,f +4306,3005pttb,15,1,f +4306,3005ptub,15,1,f +4306,3005ptuub,15,1,f +4306,3005ptvb,15,1,f +4306,3005ptwb,15,1,f +4306,3005ptxb,15,1,f +4306,3005ptyb,15,1,f +4306,3005ptzb,15,1,f +4307,2446,4,1,f +4307,2447,40,1,t +4307,2447,40,1,f +4307,3626cpr0389,14,1,f +4307,4006,0,1,f +4307,4006,0,1,t +4307,4599b,0,1,f +4307,4599b,0,2,t +4307,48336,2,1,f +4307,59900,0,2,t +4307,59900,0,1,f +4307,6141,71,3,f +4307,6141,71,4,t +4307,970x021,2,1,f +4307,973pr0656c01,15,1,f +4309,2413,71,2,f +4309,2415,71,3,f +4309,2421,0,2,f +4309,2432,1,1,f +4309,2495,4,1,f +4309,2496,0,1,f +4309,298c02,71,1,t +4309,298c02,71,1,f +4309,3003,72,1,f +4309,3003,15,1,f +4309,3020,72,1,f +4309,3022,15,1,f +4309,3022,4,1,f +4309,3023,4,4,f +4309,3034,0,1,f +4309,3039pr0013,15,1,f +4309,3068b,71,1,f +4309,3069b,72,1,f +4309,3139,0,3,f +4309,3460,4,2,f +4309,3464,15,3,f +4309,3622,14,2,f +4309,3626bpr0282,14,1,f +4309,3710,4,5,f +4309,3710,14,2,f +4309,3747b,4,1,f +4309,3832,4,1,f +4309,43719,72,1,f +4309,44571,14,1,f +4309,44822,72,1,f +4309,4485,4,1,f +4309,4488,71,2,f +4309,48183,14,1,f +4309,48183,4,3,f +4309,4854,72,1,f +4309,4855,72,2,f +4309,4856a,72,1,f +4309,4858,14,1,f +4309,4861,14,1,f +4309,4865a,14,2,f +4309,48933,14,1,f +4309,50373,4,1,f +4309,50950,14,4,f +4309,54200,14,4,f +4309,54200,14,1,t +4309,54383,71,1,f +4309,54384,71,1,f +4309,57783,41,1,f +4309,60601,41,4,f +4309,61345,14,2,f +4309,6141,36,1,f +4309,6141,34,1,f +4309,6141,36,1,t +4309,6141,34,1,t +4309,6239,14,1,f +4309,6636,72,1,f +4309,970c00,0,1,f +4309,973pr1356c01,4,1,f +4313,10075cdb01,89,1,f +4313,30056,19,2,f +4313,3035,8,1,f +4313,30383,7,2,f +4313,30414,7,2,f +4313,30554a,7,2,f +4313,32014,14,4,f +4313,3460,19,2,f +4313,41769,8,1,f +4313,41770,8,1,f +4313,4477,19,1,f +4313,6178,19,2,f +4313,6636,8,2,f +4313,75c10,14,2,f +4314,2431,1,1,f +4314,3020,0,1,f +4314,3021,4,3,f +4314,3021,72,2,f +4314,3021,0,3,f +4314,3022,6,1,f +4314,3023,6,4,f +4314,3023,0,1,f +4314,3023,19,3,f +4314,3023,72,2,f +4314,3024,19,2,f +4314,3024,72,4,f +4314,3024,2,1,f +4314,3044b,0,1,f +4314,3062b,19,4,f +4314,3069b,72,2,f +4314,3069b,1,2,f +4314,3070b,0,2,f +4314,3070b,2,1,f +4314,3070b,19,2,f +4314,3623,19,2,f +4314,3794a,4,2,f +4314,3794a,6,1,f +4314,3794a,0,1,f +4314,3794a,19,1,f +4314,4081b,19,1,f +4314,4085c,14,1,f +4314,43887,71,1,f +4314,44302a,19,2,f +4314,44302a,72,6,f +4314,44567a,0,2,f +4314,4733,2,1,f +4314,4733,72,2,f +4314,6019,14,1,f +4314,6019,19,1,f +4314,6141,0,1,f +4314,6141,4,1,f +4314,6141,15,1,f +4316,2420,2,10,f +4316,3005,2,2,f +4316,3021,14,3,f +4316,3021,2,15,f +4316,3022,2,2,f +4316,3023,2,18,f +4316,3024,2,12,f +4316,3623,2,11,f +4316,3700,2,2,f +4316,3710,2,1,f +4316,3794a,2,3,f +4316,3794a,14,3,f +4316,4274,71,2,f +4316,4740,0,2,f +4316,73983,2,4,f +4317,3010,2,50,f +4318,4342,84,1,f +4318,4489b,70,2,f +4318,4600,71,1,f +4318,4738a,70,1,f +4318,48336,2,1,f +4321,2780,0,3,f +4321,2780,0,1,t +4321,32002,72,2,f +4321,32002,72,1,t +4321,32062,4,1,f +4321,32523,71,1,f +4321,41678,71,1,f +4321,43093,1,4,f +4321,47297,14,2,f +4321,50923,72,2,f +4321,54821,42,1,f +4321,57539pat0002,47,2,f +4321,57564,27,1,f +4321,57565,14,4,f +4321,57585,71,2,f +4321,58176,36,1,f +4321,59443,0,1,f +4321,60176,72,1,f +4321,60902,0,2,f +4321,61053,0,2,f +4321,64272,0,1,f +4321,64275,0,2,f +4321,64276,0,1,f +4321,64292,14,2,f +4321,6558,1,1,f +4321,87083,72,1,f +4321,87794,0,1,f +4321,87820,14,2,f +4321,87822,14,1,f +4321,87826,35,2,f +4321,87839,0,2,f +4322,11211,71,2,f +4322,11477,4,1,f +4322,11477,0,2,f +4322,11477,31,2,f +4322,11816pr0003,78,1,f +4322,11816pr0005,78,1,f +4322,13770,297,1,f +4322,15395,179,2,f +4322,15427pr0002,226,1,f +4322,15535,72,1,f +4322,18674,15,2,f +4322,18842,320,1,f +4322,18920,179,3,f +4322,18920,179,1,t +4322,2412b,71,7,f +4322,2420,0,2,f +4322,2431,0,2,f +4322,2431,322,2,f +4322,2431,71,2,f +4322,2453b,15,2,f +4322,2454a,15,4,f +4322,2460,71,1,f +4322,2496,0,1,f +4322,2655,71,1,f +4322,3001,71,1,f +4322,3001,15,2,f +4322,3002,14,1,f +4322,3003,14,1,f +4322,3003,15,5,f +4322,3004,322,2,f +4322,3004,15,2,f +4322,3004,4,1,f +4322,3005,4,1,f +4322,3005,15,6,f +4322,3005,31,2,f +4322,3005,322,2,f +4322,3005,41,1,f +4322,3009,15,2,f +4322,3010,322,2,f +4322,3010,15,2,f +4322,30153,41,1,f +4322,3020,15,7,f +4322,3020,14,3,f +4322,3020,322,2,f +4322,3021,19,2,f +4322,3021,5,3,f +4322,3022,14,1,f +4322,3022,322,2,f +4322,3022,71,2,f +4322,3022,15,2,f +4322,3022,0,1,f +4322,3023,71,5,f +4322,3023,0,4,f +4322,3030,15,1,f +4322,3030,0,1,f +4322,3034,15,1,f +4322,30340,0,2,f +4322,3039pr62,71,1,f +4322,3040b,15,2,f +4322,30562,47,2,f +4322,30565,0,2,f +4322,30565,5,2,f +4322,3062b,2,2,f +4322,3062b,322,2,f +4322,3062b,14,1,f +4322,3062b,47,2,f +4322,3065,47,2,f +4322,3068b,15,2,f +4322,3068b,5,3,f +4322,3068b,14,1,f +4322,3069b,15,4,f +4322,3069b,322,3,f +4322,3069b,26,10,f +4322,3069bpr0100,2,1,f +4322,3070b,0,1,t +4322,3070b,15,1,f +4322,3070b,0,8,f +4322,3070b,15,1,t +4322,3245b,15,3,f +4322,33243,31,2,f +4322,33291,26,6,f +4322,33291,26,2,t +4322,3623,0,6,f +4322,3666,15,1,f +4322,3666,0,1,f +4322,3679,71,1,f +4322,3680,0,1,f +4322,3710,14,4,f +4322,3713,71,2,f +4322,3713,71,1,t +4322,3741,2,1,t +4322,3741,2,2,f +4322,3742,14,6,f +4322,3742,14,2,t +4322,3899,47,1,f +4322,3938,0,1,f +4322,3941,0,2,f +4322,3941,71,1,f +4322,4032a,0,1,f +4322,4081b,0,2,f +4322,41093stk01,9999,1,f +4322,4162,15,1,f +4322,41769,14,1,f +4322,41770,14,1,f +4322,42022,31,2,f +4322,43888,31,2,f +4322,43898,15,1,f +4322,44728,15,4,f +4322,4477,71,1,f +4322,4536,29,1,f +4322,46212,47,2,f +4322,48092,322,2,f +4322,48336,0,3,f +4322,4865a,0,4,f +4322,50950,15,2,f +4322,57894,15,2,f +4322,57895,47,2,f +4322,59900,26,1,f +4322,59900,297,1,f +4322,59900,52,1,f +4322,60470a,0,2,f +4322,60474,14,1,f +4322,60479,15,1,f +4322,60596,15,1,f +4322,60616a,47,1,f +4322,6081,322,2,f +4322,60897,14,2,f +4322,60897,0,1,f +4322,6091,4,1,f +4322,6111,15,1,f +4322,6141,29,2,f +4322,6141,179,3,t +4322,6141,0,6,f +4322,6141,41,5,f +4322,6141,85,1,f +4322,6141,46,8,f +4322,6141,179,6,f +4322,6141,47,2,f +4322,6141,0,2,t +4322,6141,41,1,t +4322,6141,47,1,t +4322,6141,46,1,t +4322,6141,29,1,t +4322,6141,85,1,t +4322,6231,14,2,f +4322,6636,5,2,f +4322,87079,26,2,f +4322,87081,15,1,f +4322,87087,4,1,f +4322,87580,26,3,f +4322,87994,15,2,f +4322,87994,15,1,t +4322,88930,31,2,f +4322,91405,19,1,f +4322,91501,15,1,f +4322,92258,0,1,f +4322,92259,0,1,f +4322,92410,15,1,f +4322,92438,19,1,f +4322,92456pr0041c01,78,1,f +4322,92456pr0071c01,78,1,f +4322,92593,15,3,f +4322,92820pr0003c01,30,1,f +4322,92820pr0006c01a,85,1,f +4322,93092,5,1,f +4322,96479,30,1,f +4322,96480,30,1,f +4322,96481,30,1,f +4322,96482,30,1,f +4322,96483,30,1,f +4322,96484,30,1,f +4322,96485,30,1,f +4322,96486,30,1,f +4322,96487,30,1,f +4322,96488,30,1,f +4322,96489,30,1,f +4322,96490,30,1,f +4322,96491,30,1,f +4322,98138,297,1,t +4322,98138,297,1,f +4322,98138pr0024a,179,1,t +4322,98138pr0024a,179,1,f +4322,99780,14,1,f +4323,10201,0,1,f +4323,15068,0,2,f +4323,15456,0,1,f +4323,18674,72,1,f +4323,2412b,71,2,f +4323,24299,0,1,f +4323,24307,0,1,f +4323,2540,72,1,f +4323,3003,72,1,f +4323,3005,72,2,f +4323,30165,1,2,f +4323,3020,1,1,f +4323,3021,1,1,f +4323,3022,1,1,f +4323,3022,0,6,f +4323,3023,0,2,f +4323,3023,4,2,f +4323,3023,1,3,f +4323,3065,47,2,f +4323,3069b,0,2,f +4323,32062,4,2,f +4323,32064a,72,4,f +4323,3839b,71,2,f +4323,6141,71,1,t +4323,6141,71,5,f +4323,6141,47,1,f +4323,6141,47,1,t +4323,6157,0,3,f +4323,63082,0,1,f +4323,85984,0,3,f +4323,87087,1,4,f +4323,93594,179,6,f +4323,99207,0,3,f +4323,99780,72,2,f +4325,10904,15,1,f +4325,11156,297,1,f +4325,13765pr0001,297,1,f +4325,13765pr0002,308,1,f +4325,14395,70,2,f +4325,15535,72,2,f +4325,18165,179,1,f +4325,2357,70,1,f +4325,2420,0,3,f +4325,2423,320,1,f +4325,2458,71,2,f +4325,2817,0,1,f +4325,30044,71,1,f +4325,30045,0,1,f +4325,3005,70,6,f +4325,30153,47,1,f +4325,3020,71,1,f +4325,3023,70,2,f +4325,30377,15,1,t +4325,30377,15,2,f +4325,3040b,70,9,f +4325,30526,72,1,f +4325,3062b,57,2,f +4325,3069b,308,1,f +4325,32000,72,2,f +4325,3245c,72,2,f +4325,3460,0,1,f +4325,3622,72,3,f +4325,3623,71,1,f +4325,3626cpr0895,15,1,f +4325,3626cpr1256,78,1,f +4325,3626cpr1523,78,1,f +4325,3626cpr1528,1000,1,f +4325,3659,71,2,f +4325,3678bpr0047,15,1,f +4325,3713,4,1,f +4325,3713,4,1,t +4325,3738,71,1,f +4325,3794b,72,1,f +4325,3795,0,1,f +4325,4286,72,2,f +4325,4865b,71,1,f +4325,50231,326,1,f +4325,50231pat0002,15,1,f +4325,55236,70,1,f +4325,60115,15,1,f +4325,60470b,71,1,f +4325,60475b,71,3,f +4325,6106,0,2,f +4325,6231,0,4,f +4325,6266,15,2,f +4325,6266,15,1,t +4325,63864,72,2,f +4325,64727,84,2,f +4325,6553,72,1,f +4325,6587,28,1,f +4325,970c00pr0741,326,1,f +4325,970c00pr0743,71,1,f +4325,973pr2797c01,297,1,f +4325,973pr2798c01,15,1,f +4325,973pr2803c01,15,1,f +4325,98283,72,6,f +4325,98370,148,1,f +4326,2780,0,1,f +4326,30374,42,2,f +4326,32062,4,2,f +4326,32140,0,1,f +4326,3713,4,2,f +4326,43093,1,1,f +4326,4588,72,2,f +4326,4589,297,2,f +4326,53551,148,3,f +4326,53585,4,1,f +4326,54821,10,1,f +4326,63965,297,2,f +4326,64262,57,1,f +4326,6558,1,1,f +4326,87083,72,1,f +4326,87811,179,1,f +4326,90607,0,2,f +4326,90609,0,1,f +4326,90612,0,3,f +4326,90616,0,2,f +4326,90617,72,2,f +4326,90625,0,1,f +4326,90639,148,3,f +4326,90639,25,2,f +4326,90641,25,2,f +4326,90661,0,3,f +4326,92202,179,1,f +4326,92206,148,2,f +4326,92223,179,2,f +4326,93571,72,2,f +4326,93575,179,1,f +4326,98562,148,2,f +4326,98563,148,1,f +4326,98564,25,1,f +4326,98569pr0009,148,1,f +4326,98570pat01,15,1,f +4326,98592,148,2,f +4327,11211,4,2,f +4327,11291,4,1,f +4327,12622,0,1,f +4327,15624,71,1,f +4327,15625pr0006,71,1,f +4327,18895pr02,27,1,f +4327,18896,0,1,f +4327,2412b,297,3,f +4327,2431,0,1,f +4327,2432,70,1,f +4327,2654,182,3,f +4327,3001,72,1,f +4327,3003,72,1,f +4327,30031,71,1,f +4327,30137,84,2,f +4327,30153,34,1,f +4327,30173b,179,1,f +4327,3020,28,1,f +4327,30237b,0,1,f +4327,3039,15,1,f +4327,3040b,4,2,f +4327,30602,0,2,f +4327,3062b,34,4,f +4327,3068b,0,3,f +4327,3297,72,1,f +4327,3298,71,3,f +4327,3298,72,1,f +4327,3626cpr1365,14,1,f +4327,3626pr1859,27,1,f +4327,3710,25,3,f +4327,3795,0,1,f +4327,3829c01,71,1,f +4327,4349,0,2,f +4327,47457,4,1,f +4327,47847,70,1,f +4327,50861,0,2,f +4327,50862,4,2,f +4327,50950,288,2,f +4327,52107,4,1,f +4327,59900,182,3,f +4327,6014b,297,4,f +4327,61072,179,2,f +4327,6126b,182,1,t +4327,6126b,182,5,f +4327,61409,4,2,f +4327,61409,72,1,f +4327,87697,0,4,f +4327,88930pr0005,4,1,f +4327,93273,4,1,f +4327,970c00,4,1,f +4327,970c00pr1011,27,1,f +4327,973pr2476c01,4,1,f +4327,973pr3256,27,1,f +4327,98133pr0001,4,1,f +4327,98134,297,1,f +4327,98141,297,2,f +4327,98153pr0002,27,1,f +4328,11211,71,6,f +4328,11214,72,2,f +4328,11215,0,1,f +4328,11458,72,5,f +4328,11477,71,7,f +4328,11477,2,12,f +4328,12895pr0001b,308,1,f +4328,13731,2,4,f +4328,15068,72,4,f +4328,15068,71,3,f +4328,15303,182,4,f +4328,15400,72,3,f +4328,15535,72,2,f +4328,15573,72,12,f +4328,15712,71,2,f +4328,2412b,71,5,f +4328,2420,71,1,f +4328,2431,2,2,f +4328,2432,72,2,f +4328,2458,71,2,f +4328,2654,47,6,f +4328,2780,0,1,f +4328,2780,0,1,t +4328,3001,19,4,f +4328,30031,72,1,f +4328,3004,2,7,f +4328,3009,2,1,f +4328,3009,71,1,f +4328,30162,72,1,f +4328,3020,2,4,f +4328,3021,2,15,f +4328,3021,15,1,f +4328,3022,19,2,f +4328,3023,0,12,f +4328,3023,2,8,f +4328,3024,2,2,t +4328,3024,2,14,f +4328,3032,0,1,f +4328,3033,0,1,f +4328,3034,72,1,f +4328,30375,19,2,f +4328,30376,19,2,f +4328,30377,19,2,f +4328,30377,19,1,t +4328,30378,19,2,f +4328,3039,2,2,f +4328,3040b,2,2,f +4328,30414,0,7,f +4328,3068b,72,1,f +4328,3068b,2,1,f +4328,3069b,2,3,f +4328,3070b,2,1,t +4328,3070b,2,2,f +4328,32001,71,3,f +4328,32064a,72,2,f +4328,32324,71,1,f +4328,3460,71,2,f +4328,3623,2,10,f +4328,3626cpr1518,84,1,f +4328,3626cpr1766,78,1,f +4328,3666,0,3,f +4328,3666,2,3,f +4328,3701,72,4,f +4328,3703,0,2,f +4328,3709,72,1,f +4328,3795,2,3,f +4328,3795,0,1,f +4328,3941,71,2,f +4328,4032a,71,1,f +4328,4162,2,2,f +4328,4274,71,2,t +4328,4274,71,16,f +4328,4286,2,2,f +4328,43093,1,1,f +4328,43722,2,1,f +4328,43723,2,1,f +4328,4497,308,1,f +4328,4865a,2,2,f +4328,50950,2,4,f +4328,52031,2,1,f +4328,58247,0,2,f +4328,59230,19,1,t +4328,59230,19,2,f +4328,59900,72,1,f +4328,61184,71,1,f +4328,6141,36,1,t +4328,6141,36,1,f +4328,61678,2,8,f +4328,62360,47,1,f +4328,6558,1,2,f +4328,85984,0,1,f +4328,85984,2,2,f +4328,87083,72,1,f +4328,87087,0,6,f +4328,91988,72,1,f +4328,92738,0,2,f +4328,92743pr0003,19,1,f +4328,92762pr02,70,1,f +4328,970c00pr0730,14,1,f +4328,970c00pr0890,379,1,f +4328,970c00pr0891,308,1,f +4328,973pr2789c01,70,1,f +4328,973pr3065c01,70,1,f +4328,973pr3068c01,308,1,f +4328,99206,71,7,f +4328,99207,71,4,f +4328,99780,72,3,f +4329,24073,15,1,f +4329,24077,179,2,f +4329,3626cpr1837,14,1,f +4329,88646,0,1,f +4329,970c00pr0997,272,1,f +4329,973pr3225c01,321,1,f +4332,45451,45,1,f +4332,46296,45,1,f +4332,clikits001pb04,13,1,f +4332,clikits018,236,1,f +4333,23221,182,1,f +4333,2343,0,2,f +4333,2412b,72,5,f +4333,2412b,25,2,f +4333,2431,72,2,f +4333,2431,0,1,f +4333,2432,15,1,f +4333,2432,0,2,f +4333,2446,15,2,f +4333,2447,82,1,t +4333,2447,82,2,f +4333,2456,0,1,f +4333,2458,71,2,f +4333,2458,72,1,f +4333,2540,0,3,f +4333,2555,0,2,f +4333,2653,71,2,f +4333,2780,0,1,t +4333,2780,0,9,f +4333,298c02,1,2,f +4333,298c02,1,1,t +4333,3001,0,1,f +4333,3002,15,1,f +4333,30031,0,2,f +4333,3004,15,1,f +4333,3005,71,4,f +4333,3009,71,2,f +4333,3010,0,2,f +4333,3010,15,3,f +4333,30151a,47,2,f +4333,30153,42,6,f +4333,3020,72,8,f +4333,3020,15,3,f +4333,3021,72,6,f +4333,3022,71,10,f +4333,3023,4,1,f +4333,3031,72,4,f +4333,3031,15,5,f +4333,3034,0,6,f +4333,3034,71,2,f +4333,3035,72,1,f +4333,30361b,15,2,f +4333,30364,72,2,f +4333,30365,0,2,f +4333,30374,71,2,f +4333,3039,0,3,f +4333,3039pr0005,15,1,f +4333,3040b,15,4,f +4333,30541,4,4,f +4333,30553,0,2,f +4333,30565,27,2,f +4333,30584c01,15,1,f +4333,30585b,47,2,f +4333,30603,0,3,f +4333,32000,72,4,f +4333,32000,15,1,f +4333,32009,72,2,f +4333,32013,15,1,f +4333,32016,0,1,f +4333,32018,0,4,f +4333,32018,15,3,f +4333,32054,71,2,f +4333,32054,4,2,f +4333,32062,4,2,f +4333,32062,4,1,t +4333,32064b,2,6,f +4333,32123b,71,3,f +4333,32123b,71,1,t +4333,32125,71,2,f +4333,32138,0,4,f +4333,32140,71,1,f +4333,32316,71,2,f +4333,32524,72,1,f +4333,32530,72,10,f +4333,32531,0,2,f +4333,3626bpr0136,14,1,f +4333,3626bpr0458,14,1,f +4333,3660,71,2,f +4333,3666,72,2,f +4333,3678b,72,2,f +4333,3679,71,2,f +4333,3680,0,2,f +4333,3700,71,4,f +4333,3701,0,3,f +4333,3705,0,1,f +4333,3706,0,1,f +4333,3710,15,1,f +4333,3713,71,2,f +4333,3713,71,1,t +4333,3794a,72,2,f +4333,3795,72,4,f +4333,3894,0,2,f +4333,3937,71,2,f +4333,3941,42,2,f +4333,3941,15,2,f +4333,3957a,42,8,f +4333,3958,72,1,f +4333,4032a,72,4,f +4333,40340,0,1,f +4333,40378,27,8,f +4333,40379,27,6,f +4333,4070,0,6,f +4333,4079,15,2,f +4333,4081b,0,2,f +4333,4150,0,10,f +4333,41753,72,1,f +4333,41769,0,2,f +4333,41770,0,2,f +4333,41862,71,2,f +4333,42003,0,1,f +4333,42022,0,2,f +4333,42060,15,1,f +4333,42061,15,1,f +4333,4274,71,3,f +4333,4285b,42,2,f +4333,43093,1,7,f +4333,43719,0,8,f +4333,44302a,0,6,f +4333,44567a,72,6,f +4333,4477,72,2,f +4333,44822,0,1,f +4333,4510,0,4,f +4333,4519,71,2,f +4333,45590,0,1,f +4333,4589,33,2,f +4333,4589,36,8,f +4333,4589,42,8,f +4333,4716,0,1,f +4333,4865a,15,1,f +4333,50955,0,2,f +4333,50956,0,2,f +4333,53451,4,1,t +4333,53451,4,2,f +4333,57028c01,71,1,f +4333,57539,25,3,f +4333,57796,0,1,f +4333,57906,0,2,f +4333,57906,27,2,f +4333,58842,1,4,f +4333,58844pat0001,34,5,f +4333,58845,34,5,f +4333,58846,0,6,f +4333,59492,25,1,f +4333,6134,0,2,f +4333,6141,42,1,t +4333,6141,33,1,t +4333,6141,33,4,f +4333,6141,42,4,f +4333,6182,15,1,f +4333,6187,0,1,f +4333,62462,0,4,f +4333,6538b,27,1,f +4333,6553,0,1,f +4333,6558,0,7,f +4333,6587,72,3,f +4333,6636,72,2,f +4333,73983,71,4,f +4333,85544,10,4,f +4333,970x194,15,2,f +4333,973pr1317c01,15,2,f +4334,2420,7,4,f +4334,2420,0,10,f +4334,2436,0,2,f +4334,2444,0,2,f +4334,2445,14,2,f +4334,2450,0,2,f +4334,2536,7,2,f +4334,2555,0,12,f +4334,2555,0,1,t +4334,2711,7,2,f +4334,2712,14,1,f +4334,2717,4,3,f +4334,2719,7,5,f +4334,2730,7,2,f +4334,2730,14,5,f +4334,2730,0,7,f +4334,2745,15,4,f +4334,2780,0,1,t +4334,2780,0,83,f +4334,2793c01,14,4,f +4334,2825,14,6,f +4334,2825,15,6,f +4334,2825,0,6,f +4334,2838c01,7,1,f +4334,2847c02,0,1,f +4334,2850a,7,6,f +4334,2851,8,6,f +4334,2852,7,6,f +4334,2853,7,6,f +4334,2854,7,2,f +4334,2856c01,7,1,f +4334,2905,0,10,f +4334,2905,15,1,f +4334,3002,0,1,f +4334,3003,7,2,f +4334,3004,0,12,f +4334,3005,7,2,f +4334,3010,7,1,f +4334,3020,0,2,f +4334,3020,14,1,f +4334,3021,0,11,f +4334,3021,7,2,f +4334,3021,14,2,f +4334,3022,7,8,f +4334,3023,14,10,f +4334,3023,0,33,f +4334,3023,15,6,f +4334,3023,7,22,f +4334,3024,0,1,t +4334,3024,0,6,f +4334,3024,7,1,t +4334,3024,7,3,f +4334,3031,0,1,f +4334,3032,0,2,f +4334,3039,0,3,f +4334,3040b,7,10,f +4334,3040b,0,8,f +4334,3069b,7,4,f +4334,3176,0,6,f +4334,3460,0,4,f +4334,3460,7,4,f +4334,3460,14,1,f +4334,3623,0,6,f +4334,3623,14,4,f +4334,3623,15,2,f +4334,3623,7,3,f +4334,3647,7,4,f +4334,3648a,7,1,f +4334,3651,7,13,f +4334,3660,0,2,f +4334,3665,0,4,f +4334,3666,14,5,f +4334,3666,7,2,f +4334,3666,0,3,f +4334,3673,7,2,f +4334,3700,15,4,f +4334,3700,14,8,f +4334,3700,7,9,f +4334,3700,0,17,f +4334,3701,14,2,f +4334,3701,7,16,f +4334,3701,0,2,f +4334,3702,7,7,f +4334,3702,0,10,f +4334,3702,14,2,f +4334,3703,15,3,f +4334,3703,7,4,f +4334,3703,0,4,f +4334,3704,0,5,f +4334,3705,0,14,f +4334,3706,0,9,f +4334,3707,0,17,f +4334,3708,0,3,f +4334,3709,7,2,f +4334,3709,14,1,f +4334,3709,0,4,f +4334,3709,15,2,f +4334,3710,0,10,f +4334,3710,14,5,f +4334,3710,7,3,f +4334,3713,7,1,t +4334,3713,7,34,f +4334,3736,7,1,f +4334,3737,0,3,f +4334,3738,0,2,f +4334,3738,7,2,f +4334,3743,7,3,f +4334,3747b,0,2,f +4334,3749,7,25,f +4334,3794a,0,12,f +4334,3795,0,5,f +4334,3795,14,2,f +4334,3795,7,1,f +4334,3832,0,3,f +4334,3894,14,2,f +4334,3894,7,11,f +4334,3895,14,4,f +4334,3895,0,10,f +4334,3895,7,4,f +4334,3941,46,1,f +4334,3941,15,16,f +4334,3960,15,4,f +4334,4019,7,3,f +4334,4032a,0,2,f +4334,4032a,15,1,f +4334,4143,7,13,f +4334,4150,15,3,f +4334,4150p01,15,4,f +4334,4185,7,1,t +4334,4185,7,1,f +4334,4261,7,2,f +4334,4263,14,2,f +4334,4265a,7,2,t +4334,4265a,7,52,f +4334,4266,15,6,f +4334,4267,0,6,f +4334,4273b,7,6,f +4334,4274,7,32,f +4334,4274,7,1,t +4334,4275b,14,2,f +4334,4276b,14,2,f +4334,4286,14,2,f +4334,4286,7,5,f +4334,4287,0,4,f +4334,4287,7,4,f +4334,4315,15,4,f +4334,4477,0,8,f +4334,4477,14,1,f +4334,4504,14,2,f +4334,4519,0,16,f +4334,4589,7,2,f +4334,4697a,7,5,f +4334,4757,0,1,f +4334,5102c03,7,2,f +4334,5102c03,0,2,f +4334,5102c04,7,1,f +4334,5102c06,0,2,f +4334,5102c08,0,3,f +4334,5102c08,7,4,f +4334,5102c09,0,2,f +4334,5102c10,0,4,f +4334,5102c10,7,1,f +4334,5102c12,0,1,f +4334,5102c15,7,1,f +4334,5102c22,0,1,f +4334,5102c24,7,1,f +4334,5102c25,0,1,f +4334,5102c28,0,1,f +4334,5102c44,0,1,f +4334,5306bc036,0,1,f +4334,6141,0,2,t +4334,6141,0,1,f +4334,73071,7,2,f +4334,73090a,0,1,f +4334,74981,14,1,f +4334,74982,14,1,f +4334,75215,7,4,f +4334,75c05,8,2,f +4334,75c06,8,2,f +4334,75c09,8,2,f +4334,85545,15,3,t +4334,85545,15,2,f +4334,9244,7,3,f +4335,32073,0,1,f +4335,32174,0,6,f +4335,32556,7,1,f +4335,3706,0,2,f +4335,41664,1,2,f +4335,41665,1,2,f +4335,41666,7,2,f +4335,41667,7,1,f +4335,41668,1,2,f +4335,41669,57,2,f +4335,41670,73,4,f +4335,41671pat0002,1,1,f +4335,41672,0,2,f +4335,41752,8,1,f +4335,42042,7,1,f +4335,42042und,25,1,f +4335,42074,15,2,f +4335,4519,0,5,f +4335,6628,0,2,f +4335,85544,10,1,f +4336,2617,7,2,f +4336,2642,7,1,f +4337,3001,0,2,f +4337,3001p0c,2,1,f +4337,3003,0,3,f +4337,4728,1,3,f +4337,4729,4,1,f +4337,4744px24,4,1,f +4337,6215,0,2,f +4337,6248,4,1,f +4338,23221,182,4,f +4338,2357,15,4,f +4338,2412b,15,2,f +4338,2412b,42,2,f +4338,2412b,0,1,f +4338,2412b,25,11,f +4338,2420,15,2,f +4338,2431,15,3,f +4338,2431,0,1,f +4338,2431pr0028,72,1,f +4338,2432,72,1,f +4338,2432,0,2,f +4338,2444,0,1,f +4338,2445,15,1,f +4338,2445,0,2,f +4338,2446,15,4,f +4338,2447,82,1,t +4338,2447,82,4,f +4338,2450,15,4,f +4338,2454a,15,1,f +4338,2456,0,2,f +4338,2456,15,5,f +4338,2458,72,1,f +4338,2460,15,1,f +4338,2465,15,6,f +4338,2466,182,5,f +4338,2540,72,6,f +4338,2540,25,3,f +4338,2555,72,2,f +4338,2635a,15,2,f +4338,2639,15,1,f +4338,2654,0,1,f +4338,2730,0,2,f +4338,2730,15,2,f +4338,2780,0,38,f +4338,2780,0,3,t +4338,3001,15,1,f +4338,3002,72,2,f +4338,3004,0,6,f +4338,3004,15,2,f +4338,3004,1,1,f +4338,3005,15,2,f +4338,30055,0,1,f +4338,3007,15,1,f +4338,3010,15,3,f +4338,3010,71,4,f +4338,30151a,47,1,f +4338,30153,42,11,f +4338,30162,72,1,f +4338,3020,0,2,f +4338,3020,25,5,f +4338,3020,72,5,f +4338,3020,15,2,f +4338,3021,15,2,f +4338,3022,71,4,f +4338,3022,72,1,f +4338,30228,72,1,f +4338,3023,25,1,f +4338,3023,0,5,f +4338,3023,72,4,f +4338,3023,71,6,f +4338,3023,15,2,f +4338,30236,0,4,f +4338,3024,15,2,f +4338,30283,0,5,f +4338,3030,15,1,f +4338,3031,15,2,f +4338,3032,72,2,f +4338,3035,0,1,f +4338,30355,15,1,f +4338,30356,15,1,f +4338,30357,72,2,f +4338,30364,72,4,f +4338,30365,0,2,f +4338,30374,15,2,f +4338,30377,0,1,t +4338,30377,0,4,f +4338,30384,182,2,f +4338,30389c,0,1,f +4338,3039,15,4,f +4338,3040b,15,6,f +4338,3040b,0,3,f +4338,3049b,0,1,f +4338,30503,72,2,f +4338,30584c01,15,1,f +4338,30585b,47,8,f +4338,30586,71,4,f +4338,30592,72,3,f +4338,3062b,15,3,f +4338,3062b,71,6,f +4338,3062b,33,5,f +4338,3063b,15,2,f +4338,30647,15,2,f +4338,3068b,15,5,f +4338,3068b,0,8,f +4338,3069b,72,1,f +4338,3069bpr0070,0,1,f +4338,3070b,0,1,f +4338,3070b,0,1,t +4338,32000,15,5,f +4338,32009,0,2,f +4338,32018,15,2,f +4338,32018,0,4,f +4338,32034,71,1,f +4338,32039,0,4,f +4338,32054,71,7,f +4338,32056,0,2,f +4338,32064b,71,2,f +4338,32073,71,2,f +4338,32123b,71,3,f +4338,32123b,14,1,t +4338,32123b,14,4,f +4338,32123b,71,1,t +4338,32125,71,1,f +4338,32140,25,2,f +4338,32250,71,1,f +4338,32316,15,2,f +4338,32316,0,2,f +4338,32324,0,1,f +4338,3245b,15,6,f +4338,32523,71,1,f +4338,32526,71,6,f +4338,3298,72,1,f +4338,3460,15,2,f +4338,3460,72,2,f +4338,3622,15,8,f +4338,3626bpr0136,14,1,f +4338,3626bpr0233,14,1,f +4338,3626bpr0325,14,1,f +4338,3626bpr0458,14,1,f +4338,3660,15,1,f +4338,3666,1,2,f +4338,3666,72,1,f +4338,3673,71,2,t +4338,3673,71,5,f +4338,3679,71,1,f +4338,3680,15,1,f +4338,3684,0,2,f +4338,3700,1,2,f +4338,3701,15,7,f +4338,3701,71,2,f +4338,3701,0,2,f +4338,3702,71,2,f +4338,3703,15,2,f +4338,3703,0,2,f +4338,3705,0,2,f +4338,3707,0,2,f +4338,3708,0,2,f +4338,3709,0,1,f +4338,3710,0,4,f +4338,3710,1,3,f +4338,3710,72,4,f +4338,3710,15,4,f +4338,3710,25,2,f +4338,3713,71,1,t +4338,3713,71,2,f +4338,3738,0,2,f +4338,3747b,0,1,f +4338,3749,19,1,f +4338,3794a,72,1,f +4338,3795,72,2,f +4338,3795,15,2,f +4338,3832,15,1,f +4338,3839b,0,2,f +4338,3894,0,2,f +4338,3894,15,1,f +4338,3937,15,4,f +4338,3938,0,2,f +4338,3941,15,4,f +4338,4032a,15,1,f +4338,4032a,72,1,f +4338,40378,27,2,f +4338,40490,0,2,f +4338,4070,0,4,f +4338,4079,15,2,f +4338,4081b,72,2,f +4338,4081b,15,3,f +4338,4085c,0,6,f +4338,4150,0,2,f +4338,41532,0,4,f +4338,41539,0,2,f +4338,4162,15,11,f +4338,41747,15,1,f +4338,41748,15,1,f +4338,41753,72,1,f +4338,41769,0,3,f +4338,41770,0,3,f +4338,41862,71,2,f +4338,42003,0,1,f +4338,42022,15,2,f +4338,42060,15,1,f +4338,42061,15,1,f +4338,4274,1,2,t +4338,4274,1,6,f +4338,4282,0,2,f +4338,4282,15,1,f +4338,4285b,15,1,f +4338,43093,1,17,f +4338,43121,71,1,f +4338,43713,0,2,f +4338,43719,72,1,f +4338,43720,15,1,f +4338,43720,0,1,f +4338,43721,0,1,f +4338,43721,15,1,f +4338,44302a,71,2,f +4338,44570,15,2,f +4338,44572,36,1,f +4338,4460b,15,2,f +4338,44661,15,1,f +4338,44676,15,2,f +4338,44728,72,1,f +4338,4477,72,2,f +4338,4479,0,1,f +4338,44822,0,1,f +4338,4519,71,5,f +4338,45590,0,5,f +4338,4589,42,6,f +4338,4589,33,11,f +4338,4590,72,1,f +4338,4599a,71,2,f +4338,4697b,71,1,t +4338,4697b,71,1,f +4338,47122,15,2,f +4338,4736,0,1,f +4338,47397,0,2,f +4338,47398,0,2,f +4338,4740,42,1,f +4338,4740,33,6,f +4338,47457,15,2,f +4338,47457,71,5,f +4338,47753,0,1,f +4338,47758,15,1,f +4338,48336,71,1,f +4338,4854,0,1,f +4338,4871,15,2,f +4338,50304,0,2,f +4338,50305,0,2,f +4338,50450,0,1,f +4338,50955,0,1,f +4338,50956,0,1,f +4338,52107,0,1,f +4338,52501,15,4,f +4338,53451,4,2,f +4338,53451,4,1,t +4338,54200,25,2,f +4338,57539,25,2,f +4338,57906,27,1,f +4338,58842,1,4,f +4338,58843,15,3,f +4338,58844pat0001,34,4,f +4338,58845,34,4,f +4338,58846,0,2,f +4338,58947,182,3,f +4338,59492,25,1,f +4338,6019,72,3,f +4338,6019,71,4,f +4338,6087,0,1,f +4338,6091,72,4,f +4338,6106,0,2,f +4338,6112,15,1,f +4338,6117,72,1,f +4338,6134,0,1,f +4338,6134,71,1,f +4338,6141,1,1,f +4338,6141,15,2,t +4338,6141,36,1,t +4338,6141,182,3,t +4338,6141,0,9,f +4338,6141,0,2,t +4338,6141,182,7,f +4338,6141,1,1,t +4338,6141,15,13,f +4338,6141,36,2,f +4338,6182,15,1,f +4338,6239,15,2,f +4338,6538b,0,1,f +4338,6538b,71,1,f +4338,6541,0,1,f +4338,6553,0,1,f +4338,6558,0,4,f +4338,6565,0,1,f +4338,6587,72,1,f +4338,6629,71,4,f +4338,6636,15,8,f +4338,73983,0,4,f +4338,85544,10,4,f +4338,970x194,15,4,f +4338,973pr1317c01,15,4,f +4339,2412b,7,4,f +4339,2413,0,1,f +4339,2419,14,2,f +4339,2432,8,1,f +4339,2446px3,4,1,f +4339,2447,40,1,f +4339,2654,7,1,f +4339,2730,0,2,f +4339,2780,0,2,f +4339,2994,0,4,f +4339,3001,0,1,f +4339,3004,25,1,f +4339,3010,0,1,f +4339,3020,14,1,f +4339,3020,8,1,f +4339,3021,4,1,f +4339,3022,4,1,f +4339,3039pb025,25,1,f +4339,3068b,14,1,f +4339,32059,0,2,f +4339,32283c02,8,1,f +4339,3626bpx7,14,1,f +4339,3665,14,2,f +4339,3707,0,2,f +4339,3710,4,1,f +4339,3713,7,4,f +4339,3749,7,2,f +4339,3829c01,4,1,f +4339,41747pb006,462,2,f +4339,41748pb006,462,2,f +4339,41769,462,1,f +4339,41770,462,1,f +4339,4286,14,2,f +4339,6578,0,4,f +4339,970x021,25,1,f +4339,973pb0212c01,25,1,f +4341,3001a,4,1,f +4341,3001a,15,3,f +4341,3003,15,5,f +4341,3003,4,2,f +4341,3004,0,2,f +4341,3005,4,1,f +4341,3010,4,5,f +4341,3020,0,1,f +4341,3031,15,1,f +4341,3032,4,1,f +4341,3062a,47,1,f +4341,3068b,15,7,f +4341,3068b,4,5,f +4341,3069a,4,9,f +4341,3070a,0,1,f +4343,2357,4,2,f +4343,2419,4,2,f +4343,2420,72,8,f +4343,2449,320,2,f +4343,2450,4,4,f +4343,2450,19,6,f +4343,2456,19,2,f +4343,2456,4,2,f +4343,2780,0,1,t +4343,2780,0,2,f +4343,3001,19,1,f +4343,3001,4,3,f +4343,3002,19,1,f +4343,3003,70,3,f +4343,3004,19,4,f +4343,3004,320,14,f +4343,3009,19,5,f +4343,3020,4,10,f +4343,3021,4,8,f +4343,3021,19,9,f +4343,3022,19,4,f +4343,3022,72,4,f +4343,3023,4,12,f +4343,3023,320,18,f +4343,3024,320,10,f +4343,3031,19,4,f +4343,3034,19,1,f +4343,30363,4,8,f +4343,30365,4,2,f +4343,3040b,4,4,f +4343,3040b,320,6,f +4343,30414,72,4,f +4343,3045,4,2,f +4343,3048c,4,4,f +4343,3049b,4,1,f +4343,30503,72,2,f +4343,30503,4,2,f +4343,32013,0,2,f +4343,3639,72,2,f +4343,3640,72,2,f +4343,3660,19,14,f +4343,3660,320,3,f +4343,3666,4,6,f +4343,3678b,4,3,f +4343,3700,71,1,f +4343,3710,19,3,f +4343,3710,320,11,f +4343,3747b,4,4,f +4343,3794a,4,2,f +4343,3795,0,6,f +4343,3937,71,2,f +4343,3938,0,2,f +4343,40378,19,2,f +4343,4081b,4,2,f +4343,41669,42,2,f +4343,41747,4,1,f +4343,41748,4,1,f +4343,4286,4,8,f +4343,43093,1,4,f +4343,43710,4,2,f +4343,43710,320,3,f +4343,43711,320,3,f +4343,43711,4,2,f +4343,44126,4,3,f +4343,44301a,72,5,f +4343,44302a,4,4,f +4343,44567a,72,2,f +4343,4460b,4,2,f +4343,44728,19,7,f +4343,4589,19,3,f +4343,47454,4,2,f +4343,47455,0,8,f +4343,47457,4,2,f +4343,48169,72,5,f +4343,48170,4,4,f +4343,48171,71,2,f +4343,48183,4,1,f +4343,48336,19,5,f +4343,49668,19,10,f +4343,51739,320,7,f +4343,53451,15,4,f +4343,53451,15,1,t +4343,6007,2,1,f +4343,6019,0,10,f +4343,6141,42,2,f +4343,6141,19,10,f +4343,6141,19,1,t +4343,6141,42,1,t +4343,6541,4,4,f +4343,6564,4,4,f +4343,6565,4,4,f +4344,3003,1,1,f +4344,3004,14,1,f +4344,3004,2,1,f +4344,3004p0b,14,1,f +4344,3021,1,1,f +4344,3021,72,1,f +4344,3022,1,1,f +4344,3040b,2,2,f +4345,2376,0,1,f +4345,2412b,0,5,f +4345,2412b,14,6,f +4345,2431,0,2,f +4345,2432,7,2,f +4345,2432,0,2,f +4345,2436,14,1,f +4345,2445,8,5,f +4345,2540,14,6,f +4345,2584,7,1,f +4345,2585,0,1,f +4345,2635a,7,2,f +4345,2905,7,2,f +4345,30000,8,2,f +4345,3001,14,1,f +4345,3002,14,1,f +4345,3003,0,1,f +4345,3004,0,1,f +4345,3009,8,2,f +4345,3009,2,2,f +4345,3010,14,5,f +4345,30145,7,5,f +4345,3020,0,1,f +4345,3022,8,2,f +4345,3022,14,2,f +4345,3024,46,8,f +4345,3032,0,1,f +4345,3034,8,1,f +4345,3039,0,1,f +4345,30395,8,1,f +4345,3040b,14,4,f +4345,3040b,2,4,f +4345,3069b,14,2,f +4345,3069bpr0090,8,1,f +4345,3176,14,2,f +4345,32001,14,1,f +4345,32062,0,3,f +4345,32123b,7,1,t +4345,32123b,7,2,f +4345,3455,0,2,f +4345,3626bpb0172,14,1,f +4345,3626bpb0173,14,1,f +4345,3665,14,4,f +4345,3666,0,10,f +4345,3710,14,1,f +4345,3710,0,1,f +4345,3795,0,3,f +4345,3823,40,1,f +4345,3829c01,7,1,f +4345,3833,4,2,f +4345,3836,6,1,f +4345,3837,0,1,f +4345,3941,0,1,f +4345,3958,8,1,f +4345,4006,0,1,f +4345,4083,7,2,f +4345,40996,46,1,f +4345,4185,14,1,f +4345,44568,7,1,f +4345,44570,14,1,f +4345,4460a,14,2,f +4345,4477,0,6,f +4345,4488,7,1,f +4345,4510,7,6,f +4345,4514stk01,9999,1,t +4345,4519,7,1,f +4345,4522,0,1,f +4345,45677,14,1,f +4345,4871,0,1,f +4345,4872,40,1,f +4345,56823c75,0,1,f +4345,6014b,7,6,f +4345,6015,0,6,f +4345,6019,7,4,f +4345,6070,14,2,f +4345,6157,0,3,f +4345,970c00,1,2,f +4345,973pr1183c01,25,2,f +4346,13731,15,2,f +4346,2412b,71,2,f +4346,2415,71,3,f +4346,2419,72,1,f +4346,2432,14,1,f +4346,2444,15,1,f +4346,2445,1,2,f +4346,2446,15,1,f +4346,2447,40,1,f +4346,2479,0,1,f +4346,3003,15,1,f +4346,3004,15,1,f +4346,3004,1,2,f +4346,30192,72,1,f +4346,3020,15,2,f +4346,3021,15,2,f +4346,3023,72,2,f +4346,3024,33,2,f +4346,30363,72,1,f +4346,30363,15,2,f +4346,30374,71,2,f +4346,3039pr0013,15,1,f +4346,30407,0,2,f +4346,3068b,1,1,f +4346,3070b,34,1,f +4346,3070b,36,1,f +4346,3176,14,1,f +4346,32000,14,1,f +4346,32069,0,1,f +4346,32073,71,1,f +4346,3464,15,3,f +4346,3626cpr0889,14,1,f +4346,3660,15,1,f +4346,3660,1,1,f +4346,3665,72,2,f +4346,3666,1,2,f +4346,3666,72,1,f +4346,3673,71,1,f +4346,3679,71,1,f +4346,3680,1,1,f +4346,3710,15,1,f +4346,3747b,72,1,f +4346,3795,15,1,f +4346,3832,72,1,f +4346,4085c,15,6,f +4346,41770,15,1,f +4346,43093,1,1,f +4346,44301a,72,2,f +4346,4623,14,1,f +4346,4855,72,1,f +4346,4861,15,1,f +4346,4865a,15,2,f +4346,50373,1,1,f +4346,50373,15,1,f +4346,50943,72,1,f +4346,56823c100,0,1,f +4346,57783,41,1,f +4346,59443,14,1,f +4346,59895,0,3,f +4346,61409,72,4,f +4346,6141,46,1,f +4346,61510,71,1,f +4346,6231,15,2,f +4346,62361,15,2,f +4346,6239,15,1,f +4346,63864,0,1,f +4346,72454,72,1,f +4346,87544,71,1,f +4346,87552,15,2,f +4346,90194,1,1,f +4346,92842,0,1,f +4346,93348,15,1,f +4346,970c00pr0293,272,1,f +4346,973pr1947bc01,272,1,f +4347,2339,308,2,f +4347,2343,71,2,f +4347,2362a,40,2,f +4347,2412b,0,9,f +4347,2417,288,11,f +4347,2419,0,1,f +4347,2420,72,2,f +4347,2420,0,2,f +4347,2431,378,10,f +4347,2432,72,4,f +4347,2436,71,2,f +4347,2440,288,2,f +4347,2449,71,2,f +4347,2453a,288,4,f +4347,2460,288,1,f +4347,2540,71,2,f +4347,2555,71,2,f +4347,2654,4,5,f +4347,298c02,71,1,t +4347,298c02,71,2,f +4347,30000,1,3,f +4347,3001,288,4,f +4347,3003,288,12,f +4347,3004,71,4,f +4347,3004,288,2,f +4347,3009,0,2,f +4347,30135,378,2,f +4347,30141,72,1,f +4347,30150,70,1,f +4347,30153,46,1,f +4347,30153,36,1,f +4347,30153,33,1,f +4347,30176,2,7,f +4347,3020,19,1,f +4347,3023,70,8,f +4347,30238,0,1,f +4347,30240,72,1,f +4347,3028,28,1,f +4347,3030,72,2,f +4347,3032,72,2,f +4347,3033,72,1,f +4347,3038,288,4,f +4347,3040b,288,8,f +4347,30552,71,1,f +4347,30553,0,1,f +4347,3062b,72,6,f +4347,3062b,70,12,f +4347,3068b,288,4,f +4347,3070b,36,2,f +4347,3070b,36,1,t +4347,3070bpr0007,71,1,f +4347,3070bpr0007,71,1,t +4347,32000,14,2,f +4347,32000,72,2,f +4347,32013,15,1,f +4347,32015,71,2,f +4347,32016,0,2,f +4347,32018,71,4,f +4347,32028,71,4,f +4347,32039,71,4,f +4347,32054,4,2,f +4347,32059,72,2,f +4347,32062,4,8,f +4347,32064b,0,3,f +4347,32270,0,2,f +4347,32278,72,2,f +4347,3245b,14,1,f +4347,32556,19,10,f +4347,3297,4,1,f +4347,33320,2,1,f +4347,3623,0,2,f +4347,3624,28,1,f +4347,3626bpr0472,78,1,f +4347,3626bpr0501,78,1,f +4347,3626bpr0516a,78,1,f +4347,3626bpr0544,78,1,f +4347,3647,72,2,f +4347,3647,72,1,t +4347,3660,70,1,f +4347,3665,71,4,f +4347,3666,71,2,f +4347,3666,0,2,f +4347,3673,71,1,t +4347,3673,71,4,f +4347,3678b,71,2,f +4347,3700,4,6,f +4347,3701,0,4,f +4347,3706,0,1,f +4347,3708,0,1,f +4347,3710,72,3,f +4347,3737,0,1,f +4347,3743,0,2,f +4347,3749,19,2,f +4347,3832,72,1,f +4347,3873,0,86,f +4347,3873,0,1,t +4347,3894,14,1,f +4347,3937,1,4,f +4347,3938,0,2,f +4347,3960,19,3,f +4347,4070,71,6,f +4347,4079,70,1,f +4347,4081b,19,2,f +4347,4095,15,3,f +4347,41677,4,2,f +4347,4175,71,2,f +4347,4215b,40,1,f +4347,42610,71,8,f +4347,4274,1,1,t +4347,4274,1,4,f +4347,4286,70,2,f +4347,4445,71,1,f +4347,4477,70,1,f +4347,4519,71,2,f +4347,4589,71,2,f +4347,4599a,71,6,f +4347,4623,71,4,f +4347,4697b,71,1,t +4347,4697b,71,2,f +4347,47457,72,1,f +4347,47847,72,2,f +4347,47905,72,2,f +4347,48336,0,1,f +4347,4865a,71,4,f +4347,48989,71,4,f +4347,50951,0,2,f +4347,53586,135,1,f +4347,54200,288,4,f +4347,54200,288,1,t +4347,54200,0,4,f +4347,55236,288,6,f +4347,55295,0,1,f +4347,55296,0,1,f +4347,55297,0,1,f +4347,55298,0,1,f +4347,55299,0,1,f +4347,55300,0,1,f +4347,56902,71,20,f +4347,59443,4,1,f +4347,61072,135,2,f +4347,6111,19,2,f +4347,61184,71,2,f +4347,6134,71,2,f +4347,61403,71,2,f +4347,6141,72,6,f +4347,6141,46,1,t +4347,6141,46,2,f +4347,6141,72,1,t +4347,6141,4,1,t +4347,6141,4,1,f +4347,61506,70,1,f +4347,61975,70,1,f +4347,61976,70,1,f +4347,6231,71,4,f +4347,62363,28,1,f +4347,6249,71,2,f +4347,6255,2,3,f +4347,62575pat0001,320,5,f +4347,62885,0,1,f +4347,6587,72,2,f +4347,6632,15,2,f +4347,6636,0,1,f +4347,970c00,28,1,f +4347,970c00,378,2,f +4347,973pr1370c01,308,1,f +4347,973pr1393c01,378,2,f +4347,973pr1395c01,28,1,f +4352,2447,47,1,t +4352,2447,47,1,f +4352,2540,71,2,f +4352,2877,71,1,f +4352,2926,0,2,f +4352,298c02,4,1,f +4352,298c02,4,1,t +4352,298c02,14,2,f +4352,298c02,14,1,t +4352,3001,72,1,f +4352,30132,72,1,t +4352,30132,72,2,f +4352,3020,72,2,f +4352,3039,70,1,f +4352,30414,1,1,f +4352,30602,41,1,f +4352,3069b,14,2,f +4352,32013,72,2,f +4352,3626cpr0812,14,1,f +4352,3679,71,1,f +4352,3680,1,1,f +4352,3700,1,2,f +4352,3794a,27,2,f +4352,3937,72,2,f +4352,4070,72,2,f +4352,4081b,71,4,f +4352,41854,72,1,f +4352,4212b,72,1,f +4352,43093,1,2,f +4352,47755,1,1,f +4352,51739,1,1,f +4352,53451,27,2,f +4352,53451,27,1,t +4352,59900,42,2,f +4352,59900,57,4,f +4352,6014b,14,4,f +4352,60700,0,4,f +4352,60897,71,2,f +4352,6091,1,2,f +4352,61184,71,2,f +4352,6134,1,2,f +4352,61409,72,4,f +4352,6141,71,1,t +4352,6141,42,1,f +4352,6141,42,1,t +4352,6141,36,1,t +4352,6141,71,12,f +4352,6141,36,2,f +4352,63864,71,4,f +4352,7050stk01,9999,1,t +4352,85984,72,5,f +4352,87781,321,1,f +4352,87993,179,1,f +4352,92947,71,1,f +4352,95199,72,2,f +4352,95202pr0001,27,1,f +4352,970c00pr0223,0,1,f +4352,970c00pr0232,321,1,f +4352,973pr1774c01,0,1,f +4352,973pr1785c01,321,1,f +4353,2458,14,1,f +4353,2653,4,2,f +4353,3001,71,1,f +4353,3003,14,1,f +4353,3010,0,1,f +4353,3020,0,1,f +4353,3020,4,2,f +4353,3023,36,2,f +4353,3023,4,2,f +4353,3023,1,1,f +4353,3024,0,2,f +4353,3024,4,2,f +4353,3031,0,2,f +4353,30363,0,3,f +4353,30648,0,4,f +4353,3069b,4,2,f +4353,3070b,4,2,f +4353,32018,0,2,f +4353,3623,0,4,f +4353,3666,4,3,f +4353,3706,0,2,f +4353,3710,14,2,f +4353,3747b,0,1,f +4353,3795,0,1,f +4353,3795,4,3,f +4353,4070,4,2,f +4353,4081b,0,2,f +4353,42022,0,2,f +4353,42023,4,2,f +4353,43722,4,2,f +4353,43723,4,2,f +4353,44126,0,1,f +4353,50950,4,4,f +4353,54200,4,4,f +4353,54200,47,2,f +4353,55982,4,4,f +4353,6141,4,6,f +4353,61678,4,2,f +4353,62361,4,4,f +4353,85984,0,1,f +4353,87941,72,1,f +4353,87943,27,1,f +4353,87944,72,1,f +4353,88496,72,1,f +4354,11955,4,10,f +4354,14226c41,0,30,f +4354,2445,4,8,f +4354,2453a,71,10,f +4354,2454a,70,10,f +4354,2458,71,20,f +4354,2486,14,15,f +4354,2637,71,50,f +4354,2780,0,100,f +4354,30000,1,25,f +4354,3001,27,140,f +4354,3003,5,80,f +4354,3004,25,40,f +4354,3007,0,60,f +4354,30095,72,20,f +4354,3020,19,10,f +4354,3021,25,10,f +4354,30249,71,6,f +4354,3030,0,40,f +4354,3031,4,10,f +4354,3039,25,180,f +4354,3046a,0,40,f +4354,30526,71,20,f +4354,30592,71,50,f +4354,32013,0,25,f +4354,32014,71,25,f +4354,32034,71,100,f +4354,32064b,15,10,f +4354,32199,0,20,f +4354,32200,0,50,f +4354,32200,15,70,f +4354,32235,4,24,f +4354,32278,71,24,f +4354,3460,14,10,f +4354,3626bpr0386,14,10,f +4354,3626cpr0645,14,10,f +4354,3626cpr0891,14,10,f +4354,3648b,72,10,f +4354,3649,71,30,f +4354,3673,71,100,f +4354,3679,71,12,f +4354,3680,0,12,f +4354,3700,0,30,f +4354,3702,4,12,f +4354,3703,1,16,f +4354,3705,0,6,f +4354,3706,0,10,f +4354,3737,0,60,f +4354,3738,0,6,f +4354,3749,19,100,f +4354,3795,1,10,f +4354,3832,15,10,f +4354,3832,0,10,f +4354,3832,2,10,f +4354,3894,4,8,f +4354,3895,4,16,f +4354,3937,71,14,f +4354,3938,0,6,f +4354,4185,27,10,f +4354,42030,0,8,f +4354,4282,15,8,f +4354,44300,71,5,f +4354,44302a,71,5,f +4354,4477,70,10,f +4354,4477,1,26,f +4354,46212,41,15,f +4354,54572,151,3,f +4354,57028c01,71,4,f +4354,57539,179,24,f +4354,57796,72,4,f +4354,58498,0,4,f +4354,60169,72,30,f +4354,60479,0,10,f +4354,60479,4,24,f +4354,6134,4,8,f +4354,6232,4,100,f +4354,6232,19,50,f +4354,76138,71,6,f +4354,78c06,179,25,f +4354,78c09,0,50,f +4354,78c14,4,75,f +4354,87407,71,10,f +4354,95229,0,6,f +4354,970c00,0,10,f +4354,970c00,1,10,f +4354,970c00,15,10,f +4354,973c01,4,10,f +4354,973c01,15,10,f +4354,973c01,1,10,f +4354,98460,70,8,f +4357,23306,383,1,f +4357,2540,71,2,f +4357,2540,0,2,f +4357,2586p4h,71,2,f +4357,2586px14,71,2,f +4357,3003,71,2,f +4357,3003,0,2,f +4357,30153,36,1,f +4357,3023,73,14,f +4357,3023,0,2,f +4357,3023,320,14,f +4357,3023,71,2,f +4357,30237a,0,4,f +4357,30237a,71,4,f +4357,30374,0,3,f +4357,30374,36,1,f +4357,30377,0,2,f +4357,30377,71,2,f +4357,3062b,320,8,f +4357,3678b,0,2,f +4357,3678b,272,2,f +4357,3846pr24,71,8,f +4357,3847,135,8,f +4357,4095,0,2,f +4357,4589,272,8,f +4357,45918,0,7,f +4357,4623,71,2,f +4357,4623,0,2,f +4357,48492,320,2,f +4357,48492,297,2,f +4357,48729a,0,1,f +4357,53451,15,4,f +4357,59,334,1,f +4357,59229,72,2,f +4357,59231pr0001,72,8,f +4357,59232,135,8,f +4357,59233pat0001,41,1,f +4357,6126a,57,6,f +4357,6231,0,8,f +4357,6231,71,8,f +4357,852001stor,9999,1,f +4357,chessboard,9999,1,f +4358,2420,0,2,f +4358,2432,0,2,f +4358,2433,0,2,f +4358,2446,8,1,f +4358,2447,42,2,f +4358,2466,15,4,f +4358,2483,33,4,f +4358,2569,42,2,f +4358,2607,0,1,f +4358,2680,0,1,f +4358,298c02,15,1,f +4358,3001,0,1,f +4358,30035,15,1,f +4358,30038,8,1,f +4358,3004,0,6,f +4358,3020,15,2,f +4358,3020,0,3,f +4358,3021,15,4,f +4358,3021,0,3,f +4358,3022,15,1,f +4358,3022,0,1,f +4358,3023,42,6,f +4358,3023,0,5,f +4358,3031,15,1,f +4358,3032,15,1,f +4358,3034,0,2,f +4358,3034,15,1,f +4358,3037,0,2,f +4358,3062b,15,2,f +4358,3068b,0,3,f +4358,3068b,15,1,f +4358,3069b,0,1,f +4358,3069bp21,0,4,f +4358,3403c01,0,1,f +4358,3460,0,2,f +4358,3623,15,1,f +4358,3626bp69,14,2,f +4358,3660,0,2,f +4358,3679,7,1,f +4358,3680,15,1,f +4358,3710,0,7,f +4358,3795,0,1,f +4358,3795,15,1,f +4358,3832,15,1,f +4358,3838,0,2,f +4358,3937,15,4,f +4358,3938,0,4,f +4358,3940b,15,2,f +4358,3941,0,1,f +4358,3942c,15,1,f +4358,3960,0,4,f +4358,4032a,0,4,f +4358,4070,15,2,f +4358,4085c,15,1,f +4358,4275b,0,1,f +4358,4315,0,4,f +4358,4360,15,1,f +4358,4531,0,3,f +4358,4589,33,3,f +4358,4589,42,1,f +4358,4740,42,2,f +4358,4740,33,1,f +4358,4864a,33,1,f +4358,4864a,36,1,f +4358,6019,0,4,f +4358,6141,42,7,f +4358,6179,0,1,f +4358,6899stk01,9999,1,t +4358,6899stk02,9999,1,t +4358,6899stk03,9999,1,t +4358,73092,0,1,f +4358,73983,15,2,f +4358,970x026,7,2,f +4358,973pb0004c01,15,1,f +4358,973px133c01,15,1,f +4359,3001a,14,4,f +4359,3001a,0,8,f +4359,3001a,4,18,f +4359,3001a,1,8,f +4359,3003,14,4,f +4359,3003,4,8,f +4359,3003,1,6,f +4359,3003,0,3,f +4359,3004,0,2,f +4359,3004,4,4,f +4359,3006,4,2,f +4359,3007,4,3,f +4359,3009,4,4,f +4359,3009,47,3,f +4359,3022,4,1,f +4359,3027,0,1,f +4359,3033,4,1,f +4359,3036,0,1,f +4359,3036,4,1,f +4359,3062a,14,2,f +4359,35,4,4,f +4359,36,0,4,f +4359,3612,1,2,f +4359,3612,4,2,f +4359,3613,4,2,f +4359,3613,1,2,f +4359,3614a,14,4,f +4359,685p01,14,1,f +4359,685px4,14,1,f +4359,7049b,0,4,f +4359,792c03,1,1,f +4359,792c03,4,1,f +4359,x196,0,1,f +4359,x197,6,1,f +4359,x407,4,1,f +4360,122c01,0,2,f +4360,3010,15,1,f +4360,3021,14,2,f +4360,3023,15,2,f +4360,3023,14,1,f +4360,3023,4,1,f +4360,3024,46,4,f +4360,3034,14,1,f +4360,3135c01,14,1,f +4360,3623,4,2,f +4360,3710,4,4,f +4360,3788,4,1,f +4360,3794a,14,2,f +4360,3821pb04,15,1,f +4360,3822pb04,15,1,f +4360,3823,47,1,f +4360,3829c01,4,1,f +4360,4070,15,2,f +4360,4084,0,4,f +4360,4175,0,1,f +4360,4211,4,1,f +4360,4213,15,1,f +4360,4214,15,1,f +4361,194cx1,7,2,f +4361,3004,15,2,f +4361,3004pt2,14,2,f +4361,3005,14,2,f +4361,3021,15,4,f +4361,3622,15,2,f +4361,3625,0,1,f +4361,3626apr0001,14,1,f +4361,3794a,4,4,f +4361,3832,7,1,f +4361,3959,7,1,f +4361,4070,15,2,f +4361,4070,14,2,f +4361,6610stk01,9999,1,t +4361,970c00,1,1,f +4361,973p60c01,15,1,f +4362,3004,1,2,f +4362,3068bpb0034,15,1,f +4362,4434,14,1,f +4362,x599c04,4,1,f +4363,2362b,15,4,f +4363,2377,15,2,f +4363,2412b,15,3,f +4363,2412b,71,20,f +4363,2419,15,1,f +4363,2419,72,2,f +4363,2431,72,5,f +4363,2431,15,2,f +4363,2431,0,3,f +4363,2432,1,1,f +4363,2437,40,1,f +4363,2444,0,8,f +4363,2445,72,2,f +4363,2453a,15,2,f +4363,2456,15,4,f +4363,2458,72,2,f +4363,2458,4,4,f +4363,2460,72,1,f +4363,2495,4,1,f +4363,2496,0,1,f +4363,2508,0,1,f +4363,2569,0,1,f +4363,2569,0,1,t +4363,2571,41,3,f +4363,2572,41,4,f +4363,2654,72,1,f +4363,2736,71,1,f +4363,2780,0,20,f +4363,2780,0,3,t +4363,2877,15,8,f +4363,2877,4,4,f +4363,2926,0,2,f +4363,2991,72,4,f +4363,3001,15,2,f +4363,3002,15,3,f +4363,3003,14,1,f +4363,3003,1,3,f +4363,3003,15,1,f +4363,3004,15,11,f +4363,3004,4,6,f +4363,3005,15,6,f +4363,3005,4,4,f +4363,3009,4,4,f +4363,3010,15,1,f +4363,30134,0,1,f +4363,30162,72,1,f +4363,3020,71,3,f +4363,3020,72,1,f +4363,3022,14,3,f +4363,3022,72,1,f +4363,3022,15,1,f +4363,3023,72,4,f +4363,3023,4,27,f +4363,30236,15,4,f +4363,30236,71,1,f +4363,3024,46,4,f +4363,3024,0,4,f +4363,3027,71,1,f +4363,30283,72,3,f +4363,30283,14,1,f +4363,3029,72,2,f +4363,3030,72,2,f +4363,3031,72,3,f +4363,3032,14,1,f +4363,3033,71,1,f +4363,3034,0,3,f +4363,3035,15,1,f +4363,30374,71,1,f +4363,30377,71,1,t +4363,30377,71,2,f +4363,3039,14,1,f +4363,3039pr0002,15,1,f +4363,3039pr0013,15,2,f +4363,3040bpr0003,71,1,f +4363,30503,72,2,f +4363,30517,72,8,f +4363,3062b,4,1,f +4363,3068b,15,8,f +4363,3068b,4,1,f +4363,3068bpr0137,15,2,f +4363,3069b,4,3,f +4363,3069b,71,1,f +4363,3069b,14,2,f +4363,3069bpr0030,15,2,f +4363,3139,0,18,f +4363,3176,1,1,f +4363,32013,14,1,f +4363,32028,14,1,f +4363,32064b,72,2,f +4363,32530,72,4,f +4363,32531,0,1,f +4363,3297,15,5,f +4363,3298,15,2,f +4363,3623,14,2,f +4363,3623,4,1,f +4363,3624,0,1,f +4363,3626bpr0216,14,1,f +4363,3626bpr0314,14,1,f +4363,3626bpr0387,14,2,f +4363,3626bpr0389,14,1,f +4363,3633,0,4,f +4363,3659,15,1,f +4363,3660,4,1,f +4363,3666,15,2,f +4363,3666,1,4,f +4363,3666,72,6,f +4363,3666,4,2,f +4363,3678b,15,4,f +4363,3679,71,5,f +4363,3680,0,5,f +4363,3703,72,1,f +4363,3708,0,2,f +4363,3710,4,1,f +4363,3710,15,11,f +4363,3710,72,6,f +4363,3730,0,1,f +4363,3738,72,1,f +4363,3741,2,2,f +4363,3741,2,1,t +4363,3742,4,2,t +4363,3742,4,6,f +4363,3747a,15,1,f +4363,3749,19,1,f +4363,3794a,4,3,f +4363,3794a,15,4,f +4363,3795,72,8,f +4363,3795,15,2,f +4363,3829c01,1,1,f +4363,3832,72,1,f +4363,3840,25,1,f +4363,3867,72,2,f +4363,3901,70,1,f +4363,3901,0,1,f +4363,3937,72,2,f +4363,3938,0,2,f +4363,3940b,72,1,f +4363,3941,15,2,f +4363,3962b,0,1,f +4363,4006,0,1,f +4363,4032a,71,2,f +4363,4032a,4,6,f +4363,4032a,15,2,f +4363,4079,4,7,f +4363,4079,1,10,f +4363,4083,14,2,f +4363,4085c,4,1,f +4363,4085c,0,2,f +4363,4150,15,1,f +4363,41531,15,2,f +4363,42022,15,10,f +4363,42604,41,1,f +4363,42608,71,2,f +4363,4285b,72,2,f +4363,4286,15,2,f +4363,4345b,71,1,f +4363,4346,47,1,f +4363,44126,15,4,f +4363,4445,15,4,f +4363,4449,70,2,f +4363,4449,71,2,f +4363,44728,0,2,f +4363,4476b,15,4,f +4363,4477,4,6,f +4363,4477,72,3,f +4363,4485,4,2,f +4363,4519,71,1,f +4363,4589,182,1,f +4363,4589,36,1,f +4363,4589,46,1,f +4363,4589,42,2,f +4363,4589,34,2,f +4363,4599a,4,1,f +4363,4623,71,3,f +4363,4624,71,18,f +4363,4742,72,2,f +4363,48092,15,3,f +4363,48183,14,1,f +4363,48336,15,2,f +4363,4854,15,4,f +4363,4854,72,1,f +4363,4862,40,24,f +4363,4863,15,11,f +4363,4864b,41,2,f +4363,4864b,14,2,f +4363,4865a,15,3,f +4363,4870,71,7,f +4363,4872,41,5,f +4363,48729a,72,2,f +4363,50304,15,2,f +4363,50305,15,2,f +4363,50745,14,2,f +4363,52038,14,1,f +4363,54090,71,1,f +4363,54091,71,3,f +4363,54092c01pr0002,15,1,f +4363,54093,71,1,f +4363,54094pr01,4,1,f +4363,54095,15,2,f +4363,54096,15,1,f +4363,54097,15,1,f +4363,54200,46,2,f +4363,54701c01,15,1,f +4363,6014b,71,4,f +4363,6015,0,4,f +4363,6019,71,8,f +4363,6112,15,4,f +4363,6134,0,2,f +4363,6140,4,2,f +4363,6140,0,1,f +4363,6141,4,1,t +4363,6141,34,3,f +4363,6141,4,2,f +4363,6141,1,2,f +4363,6141,36,2,t +4363,6141,1,1,t +4363,6141,47,1,f +4363,6141,36,3,f +4363,6141,47,1,t +4363,6141,34,2,t +4363,6157,72,2,f +4363,6160c01,15,4,f +4363,6177,0,1,f +4363,6222,15,2,f +4363,6232,15,2,f +4363,64567,71,3,f +4363,6538b,14,2,f +4363,6587,72,2,f +4363,6589,71,1,f +4363,6636,4,3,f +4363,6636,15,11,f +4363,69c03,15,1,f +4363,75535,71,3,f +4363,772,15,3,f +4363,7894.1stk01,9999,1,t +4363,970c00,1,2,f +4363,970c00,0,1,f +4363,970c00,19,1,f +4363,970x026,1,1,f +4363,973pr1163c01,272,1,f +4363,973pr1173c01,4,1,f +4363,973pr1238c01,0,1,f +4363,973pr1240c01,1,2,f +4365,65535g1,-1,1,f +4365,65535g2,-1,1,f +4366,2346,7,1,f +4366,2555,0,4,f +4366,2654,7,2,f +4366,2715,3,1,f +4366,2716,0,1,f +4366,2717,3,1,f +4366,2723,15,1,f +4366,2780,0,1,t +4366,2780,0,26,f +4366,2817,0,3,f +4366,2909c03,8,1,f +4366,3001,0,1,f +4366,3022,7,1,f +4366,3023,14,1,f +4366,3023,0,5,f +4366,3039,14,1,f +4366,3068b,0,2,f +4366,3069b,4,1,f +4366,3139,0,6,f +4366,32000,0,6,f +4366,32001,0,1,f +4366,32002,8,1,t +4366,32002,8,32,f +4366,32009,3,2,f +4366,32009,22,2,f +4366,32013,0,7,f +4366,32015,7,1,f +4366,32015,0,6,f +4366,32016,0,7,f +4366,32018,0,2,f +4366,32039,7,2,f +4366,32039,0,10,f +4366,32054,1,4,f +4366,32056,7,4,f +4366,32062,0,18,f +4366,32063,0,2,f +4366,32065,0,12,f +4366,32065,22,2,f +4366,32065,3,24,f +4366,32073,0,1,f +4366,32123b,7,1,t +4366,32123b,7,23,f +4366,3482,0,1,f +4366,3673,7,1,t +4366,3673,7,4,f +4366,3700,0,2,f +4366,3701,0,2,f +4366,3702,0,1,f +4366,3703,0,1,f +4366,3705,0,13,f +4366,3706,0,6,f +4366,3707,0,3,f +4366,3708,0,2,f +4366,3709,0,2,f +4366,3713,7,1,t +4366,3713,7,6,f +4366,3737,0,2,f +4366,3749,7,13,f +4366,3894,0,2,f +4366,3895,0,2,f +4366,4032a,14,1,f +4366,4032a,0,2,f +4366,4150,0,2,f +4366,4162,0,2,f +4366,4519,0,2,f +4366,4760c01,0,1,f +4366,5306bc015,0,1,f +4366,6141,42,2,f +4366,6141,42,1,t +4366,6192,0,4,f +4366,6536,0,5,f +4366,6538b,7,2,f +4366,6558,0,9,f +4366,6575,7,2,f +4366,6587,8,3,f +4366,6629,0,17,f +4366,6632,0,6,f +4366,71427c01,7,1,f +4366,71509,0,2,t +4366,71509,0,4,f +4366,75c29,3,2,f +4366,76110c01,14,2,f +4366,78c04,3,5,f +4366,78c16,22,1,f +4366,tech007,9999,1,f +4366,tech013,9999,1,f +4367,3010,0,50,f +4369,2412b,0,2,f +4369,2412b,15,1,f +4369,2419,0,1,f +4369,2431,0,4,f +4369,2431,4,2,f +4369,2445,4,1,f +4369,2445,0,1,f +4369,2445,70,1,f +4369,2454a,70,2,f +4369,2454a,15,1,f +4369,2456,72,1,f +4369,2458,71,1,f +4369,2460,15,4,f +4369,2520stk01,9999,1,t +4369,2555,4,2,f +4369,2555,15,2,f +4369,2654,72,1,f +4369,2654,4,2,f +4369,2780,0,8,f +4369,2877,71,2,f +4369,3001,0,2,f +4369,3004,27,1,f +4369,3005,70,3,f +4369,3007,15,1,f +4369,3009,0,1,f +4369,3010,70,2,f +4369,30136,70,5,f +4369,30173b,297,1,f +4369,30173b,0,1,f +4369,30173b,179,1,f +4369,30177,0,1,f +4369,3020,70,2,f +4369,3020,15,1,f +4369,3020,72,2,f +4369,3021,0,2,f +4369,3022,72,3,f +4369,3022,0,2,f +4369,3023,4,5,f +4369,3023,70,2,f +4369,3034,70,1,f +4369,3035,15,1,f +4369,30367b,4,4,f +4369,30374,0,2,f +4369,30374,71,1,f +4369,30374,70,1,f +4369,3039,15,2,f +4369,3039,70,1,f +4369,3040b,0,2,f +4369,30503,72,2,f +4369,3062b,4,2,f +4369,3068b,0,4,f +4369,3068b,4,1,f +4369,3068b,70,1,f +4369,3069b,4,3,f +4369,3069b,15,2,f +4369,32000,0,6,f +4369,32001,0,2,f +4369,32016,71,4,f +4369,32062,4,1,f +4369,32064b,0,4,f +4369,32073,71,2,f +4369,32123b,71,4,f +4369,32123b,71,1,t +4369,32271,0,4,f +4369,32557,71,2,f +4369,3298,71,2,f +4369,3460,4,1,f +4369,3460,15,2,f +4369,3623,0,4,f +4369,3626bpr0745,14,1,f +4369,3626bpr0752a,15,1,f +4369,3665,0,4,f +4369,3666,0,3,f +4369,3684,0,2,f +4369,3700,72,3,f +4369,3700,71,2,f +4369,3701,0,4,f +4369,3705,0,2,f +4369,3708,0,2,f +4369,3709,0,2,f +4369,3710,4,3,f +4369,3710,15,1,f +4369,3713,71,2,f +4369,3737,0,4,f +4369,3738,4,2,f +4369,3794b,71,8,f +4369,3795,0,1,f +4369,3795,70,2,f +4369,3795,15,1,f +4369,3795,4,1,f +4369,3830,70,4,f +4369,3831,70,4,f +4369,3894,72,1,f +4369,3937,0,1,f +4369,3941,70,14,f +4369,3941,0,4,f +4369,3942c,85,3,f +4369,4032a,72,2,f +4369,40379,15,4,f +4369,4070,71,2,f +4369,4081b,0,4,f +4369,4085c,71,8,f +4369,4085c,0,2,f +4369,4274,1,10,f +4369,4274,1,2,t +4369,4282,4,1,f +4369,4286,0,3,f +4369,4286,70,1,f +4369,43093,1,6,f +4369,43710,0,1,f +4369,43711,0,1,f +4369,43720,15,1,f +4369,43721,15,1,f +4369,43888,70,6,f +4369,43898,72,2,f +4369,43898,15,1,f +4369,4497,179,1,f +4369,4589,4,2,f +4369,4599b,71,4,f +4369,4621813,9999,1,f +4369,4621817,9999,1,f +4369,4621828,9999,1,f +4369,4621831,9999,1,f +4369,4621833,9999,1,f +4369,4621835,9999,1,f +4369,4621839,9999,1,f +4369,4621841,9999,1,f +4369,4621845,9999,1,f +4369,4621850,9999,1,f +4369,4740,36,2,f +4369,4740,15,2,f +4369,53705,297,1,f +4369,54200,15,2,f +4369,54200,85,1,t +4369,54200,85,2,f +4369,54200,72,1,t +4369,54200,15,1,t +4369,54200,72,2,f +4369,54821,4,1,f +4369,57895pr0001,47,3,f +4369,59443,72,1,f +4369,59900,19,3,f +4369,6019,4,4,f +4369,6019,72,2,f +4369,60470a,71,2,f +4369,60478,15,8,f +4369,60596,4,3,f +4369,60752,297,1,f +4369,6091,15,2,f +4369,6091,72,2,f +4369,6111,0,1,f +4369,6111,70,1,f +4369,6117,72,1,f +4369,61184,71,2,f +4369,61199,71,2,f +4369,6134,4,1,f +4369,6141,71,4,f +4369,6141,15,2,t +4369,6141,0,19,f +4369,6141,71,1,t +4369,6141,0,2,t +4369,6141,15,16,f +4369,6232,72,2,f +4369,6232,71,2,f +4369,62462,0,4,f +4369,64225,15,1,f +4369,64275,0,2,f +4369,64275,179,2,f +4369,64277c01,297,1,f +4369,64567,71,2,f +4369,64727,71,2,f +4369,6536,72,6,f +4369,6541,0,1,f +4369,6553,72,2,f +4369,6558,1,3,f +4369,6636,4,1,f +4369,85984,0,2,f +4369,87079,4,7,f +4369,87087,4,6,f +4369,87747,15,4,f +4369,87747,0,5,f +4369,92280,15,2,f +4369,92338,297,1,f +4369,92547pr0005,0,1,f +4369,92547pr0009,297,1,f +4369,92690,71,2,f +4369,92690,297,1,f +4369,92691,297,1,f +4369,92691,15,1,f +4369,93061,15,2,f +4369,93062c01,15,2,f +4369,93764pr0004,15,1,f +4369,970c00pb104,0,1,f +4369,973pr1751c01,0,1,f +4370,11214,72,1,f +4370,14769,71,1,f +4370,15391,0,4,f +4370,15392,72,1,t +4370,15392,72,4,f +4370,18587,14,1,f +4370,18588,72,1,f +4370,2412b,0,1,f +4370,2432,0,1,f +4370,2450,320,2,f +4370,2654,71,1,f +4370,3004,72,1,f +4370,3020,72,1,f +4370,3021,71,1,f +4370,30565,72,2,f +4370,30602,320,1,f +4370,32062,4,1,f +4370,32064a,0,1,f +4370,32123b,14,1,t +4370,32123b,14,1,f +4370,32270,0,1,f +4370,3623,71,4,f +4370,3626cpr1149,78,3,f +4370,3626cpr1556,78,1,f +4370,3700,14,3,f +4370,3701,71,1,f +4370,3941,47,1,f +4370,4287,71,2,f +4370,43093,1,4,f +4370,44301a,72,4,f +4370,4599b,0,1,f +4370,4599b,0,1,t +4370,48336,14,1,f +4370,4865b,40,1,f +4370,50950,320,4,f +4370,55013,72,1,f +4370,59443,71,3,f +4370,60471,71,4,f +4370,60474,72,2,f +4370,60897,71,1,f +4370,6141,33,1,t +4370,6141,33,20,f +4370,61485,71,1,f +4370,6553,0,1,f +4370,85984,72,2,f +4370,86408pr0001a,1,3,f +4370,86408pr0001b,1,1,f +4370,93273,72,1,f +4370,970c00pr0813,1,3,f +4370,970c00pr0814,1,1,f +4370,973pr2918c01,1,3,f +4370,973pr2919c01,1,1,f +4370,99207,71,1,f +4374,2527,4,2,f +4374,3062b,0,12,f +4374,4600,0,4,f +4374,4624,7,8,f +4374,518,8,2,f +4375,2446,0,1,f +4375,2458,8,2,f +4375,2780,0,1,t +4375,2780,0,4,f +4375,30121,0,1,f +4375,30153,42,2,f +4375,30162,8,2,f +4375,3040b,0,2,f +4375,3048c,7,1,f +4375,30553,8,2,f +4375,32316,7,1,f +4375,32506,0,2,f +4375,3626bpx40,14,1,f +4375,3666,0,2,f +4375,3666,4,1,f +4375,3673,7,2,f +4375,3673,7,1,t +4375,3700,0,2,f +4375,3710,8,1,f +4375,3894,0,2,f +4375,40378,0,4,f +4375,40379,0,4,f +4375,40395,0,4,f +4375,4081b,0,2,f +4375,41531,4,2,f +4375,41532,0,2,f +4375,41751,36,1,f +4375,42021,36,1,f +4375,4274,7,1,f +4375,4274,7,2,t +4375,4287,0,2,f +4375,4497,42,1,f +4375,4588,42,1,f +4375,4865pb06,36,1,f +4375,6041,0,2,f +4375,769,334,1,f +4375,970c00,0,1,f +4375,973c26,0,1,f +4377,4023,0,2,f +4377,4178,0,1,f +4377,73092,0,2,f +4379,3001,15,1,f +4379,3004,4,2,f +4379,3009,15,2,f +4379,3010,4,2,f +4379,3020,1,1,f +4379,3020,15,1,f +4379,3020,4,1,f +4379,3034,4,2,f +4379,3039,47,2,f +4379,3040b,1,2,f +4379,3040b,15,2,f +4379,3062b,14,5,f +4379,3660,15,2,f +4379,3665,15,2,f +4379,3666,14,1,f +4379,3747b,15,1,f +4379,4287,15,2,f +4381,2412b,72,2,f +4381,2412b,25,1,f +4381,2431,4,2,f +4381,3004,25,3,f +4381,3020,4,1,f +4381,3021,0,1,f +4381,3023,15,1,f +4381,3024,182,3,f +4381,3039,25,1,f +4381,3069b,4,3,f +4381,3069bpr0090,72,1,f +4381,3470,2,1,f +4381,3626bpr0499,14,1,f +4381,3700,15,1,f +4381,3710,4,4,f +4381,3829c01,1,1,f +4381,4079b,1,1,f +4381,4085c,15,1,f +4381,4274,71,1,f +4381,4274,71,1,t +4381,43337,4,2,f +4381,44728,72,1,f +4381,45677,4,1,f +4381,4865a,47,1,f +4381,50745,4,4,f +4381,52036,72,1,f +4381,52038,4,2,f +4381,52501,4,2,f +4381,54200,4,2,f +4381,54200,4,1,t +4381,54200,46,1,t +4381,54200,36,1,t +4381,54200,46,2,f +4381,54200,36,2,f +4381,57783,41,1,f +4381,6014b,15,4,f +4381,6015,0,4,f +4381,61409,4,2,f +4381,6141,182,1,t +4381,6141,182,1,f +4381,6157,71,2,f +4381,6190,72,1,f +4381,62810,0,1,f +4381,970c00,72,1,f +4381,973pr1192c01,0,1,f +4382,3010,2,1,f +4382,3023,14,1,f +4382,3040b,2,2,f +4382,3665,2,2,f +4382,4286,14,1,f +4382,4287,14,1,f +4383,3005,15,4,f +4383,3008a,15,1,f +4383,3062c,1,4,f +4383,3063b,15,3,f +4383,3065,15,5,f +4383,31bc01,4,1,f +4383,32bc01,4,1,f +4383,713a,15,2,f +4385,10288,308,1,f +4385,11106,179,3,f +4385,30592,72,1,f +4385,3660,25,2,f +4385,3673,71,1,f +4385,6126b,57,3,f +4385,6179,4,1,f +4385,62462,4,1,f +4385,6587,28,3,f +4385,93273,4,2,f +4385,98138pr0023,182,3,f +4387,3001,15,2,f +4387,3004,4,1,f +4387,3004,15,4,f +4387,3004pr20,15,2,f +4387,3005,0,4,f +4387,3005pe1,15,2,f +4387,3020,7,1,f +4387,3020,15,1,f +4387,3022,0,2,f +4387,3023,0,3,f +4387,3039,15,2,f +4387,3040b,4,2,f +4387,3298,4,1,f +4387,3660,7,2,f +4387,3660,15,3,f +4387,3665,4,1,f +4387,3710,0,1,f +4389,3004,2,2,f +4389,3004,4,2,f +4389,3004pt1,14,1,f +4389,3022,4,1,f +4389,3039,15,1,f +4389,30492,2,1,f +4389,3069b,2,1,f +4389,3832,2,1,f +4389,4033,15,1,f +4389,72824p01,15,1,f +4391,13562,179,1,t +4391,13562,179,1,f +4391,13565,15,1,f +4391,2926,0,2,f +4391,3032,70,1,f +4391,30374,70,2,f +4391,32034,0,1,f +4391,32530,0,2,f +4391,32556,19,1,f +4391,3626cpr1191,78,1,f +4391,3794a,72,4,f +4391,48729b,72,1,t +4391,48729b,72,2,f +4391,50254,0,4,f +4391,970c00pr0502,308,1,f +4391,973pr2340c01,0,1,f +4392,2412b,72,4,f +4392,2420,0,2,f +4392,2460,4,2,f +4392,2540,4,4,f +4392,2654,4,4,f +4392,2654,0,2,f +4392,2780,0,11,f +4392,298c02,71,2,f +4392,3001,4,2,f +4392,3001,14,1,f +4392,3004,4,4,f +4392,3008,72,1,f +4392,3010,4,2,f +4392,3020,14,3,f +4392,3020,72,4,f +4392,3021,4,8,f +4392,3021,0,2,f +4392,3022,4,2,f +4392,3023,71,3,f +4392,3023,14,1,f +4392,3031,4,1,f +4392,3034,72,2,f +4392,3034,14,1,f +4392,30361c,27,2,f +4392,30367b,27,2,f +4392,3039,4,2,f +4392,30414,72,1,f +4392,3048c,4,2,f +4392,30602,71,2,f +4392,3062b,27,4,f +4392,32062,4,4,f +4392,32064b,71,2,f +4392,32123b,71,4,f +4392,32524,72,1,f +4392,32530,4,2,f +4392,32556,19,6,f +4392,3622,0,2,f +4392,3626bpr0644,14,1,f +4392,3660,4,2,f +4392,3673,71,2,f +4392,3700,0,3,f +4392,3701,4,1,f +4392,3702,4,1,f +4392,3710,4,1,f +4392,3710,0,2,f +4392,3710,14,1,f +4392,3747b,4,2,f +4392,3747b,14,2,f +4392,3749,19,1,f +4392,3894,4,4,f +4392,3941,0,2,f +4392,3941,72,6,f +4392,4032a,0,2,f +4392,4081b,14,2,f +4392,4085c,4,2,f +4392,4150,4,1,f +4392,41531,4,2,f +4392,42003,4,1,f +4392,42003,72,2,f +4392,4274,1,8,f +4392,4274,71,3,f +4392,43093,1,2,f +4392,44661,0,3,f +4392,44728,14,3,f +4392,47454,4,2,f +4392,47455,72,6,f +4392,47456,0,3,f +4392,47457,4,3,f +4392,47458,0,4,f +4392,47458,4,3,f +4392,47755,72,2,f +4392,47759,0,1,f +4392,48169,72,2,f +4392,48170,4,4,f +4392,48172,0,1,f +4392,48336,0,1,f +4392,4855,72,1,f +4392,50947,0,2,f +4392,50949,0,2,f +4392,53451,14,16,f +4392,53451,15,2,f +4392,53989,0,4,f +4392,54200,47,8,f +4392,54200,0,4,f +4392,54200,14,2,f +4392,54200,36,4,f +4392,57028c01,71,1,f +4392,57539,135,2,f +4392,57796,72,1,f +4392,57909a,72,3,f +4392,58176,35,2,f +4392,58176,36,6,f +4392,6019,0,2,f +4392,60219,72,1,f +4392,6041,135,2,f +4392,60470a,0,1,f +4392,60470a,14,1,f +4392,60474,72,1,f +4392,6091,4,8,f +4392,6118,4,6,f +4392,61184,71,2,f +4392,6133,0,2,f +4392,6141,27,16,f +4392,6141,14,6,f +4392,6141,72,4,f +4392,6141,47,8,f +4392,62712,72,3,f +4392,64391,4,1,f +4392,64683,4,1,f +4392,6536,27,2,f +4392,6553,72,2,f +4392,6558,1,7,f +4392,6587,28,2,f +4392,87079,4,5,f +4392,87745,0,8,f +4392,87747,15,2,f +4392,87747,0,3,f +4392,87748pr0001,36,1,f +4392,87751,135,1,f +4392,87752,35,1,f +4392,87754,72,1,f +4392,89159,35,1,f +4392,970c00pr0145,72,1,f +4392,973pr1557c01,72,1,f +4400,2730,15,2,f +4400,2780,0,10,f +4400,32001,71,2,f +4400,32013,71,1,f +4400,32034,71,1,f +4400,32123b,71,3,f +4400,32556,19,1,f +4400,33299a,0,1,f +4400,3647,72,3,f +4400,3648b,72,2,f +4400,3649,71,2,f +4400,3673,71,10,f +4400,3700,15,3,f +4400,3701,0,4,f +4400,3702,4,6,f +4400,3705,0,3,f +4400,3706,0,4,f +4400,3707,0,3,f +4400,3708,0,1,f +4400,3709,71,2,f +4400,3710,71,8,f +4400,3713,4,6,f +4400,3713,71,10,f +4400,3736,71,2,f +4400,3737,0,1,f +4400,3738,71,2,f +4400,3749,19,6,f +4400,3894,0,2,f +4400,3895,0,2,f +4400,4185,71,2,f +4400,85545,0,2,f +4400,rb00168,0,2,f +4400,rb00169,0,3,f +4402,2419,0,1,f +4402,2432,0,2,f +4402,2444,7,2,f +4402,2780,0,1,t +4402,2780,0,2,f +4402,30091,7,1,f +4402,30153,42,2,f +4402,3020,0,1,f +4402,3020,7,1,f +4402,30214,42,1,f +4402,3022,7,1,f +4402,30552,0,2,f +4402,30553,8,8,f +4402,32506,0,2,f +4402,3626bpr0190,15,1,f +4402,3673,7,1,t +4402,3673,7,2,f +4402,3706,0,2,f +4402,40373,0,2,f +4402,40374,0,2,f +4402,40375,0,2,f +4402,40386,8,2,f +4402,40387,0,1,f +4402,40388,0,1,f +4402,40395,0,1,f +4402,40902,8,1,f +4402,41531,4,2,f +4402,41532,0,3,f +4402,4274,7,2,t +4402,4274,7,1,f +4402,4349,7,1,f +4402,4497,42,1,f +4402,4589,42,1,f +4402,57467,383,1,t +4402,57467,383,1,f +4402,6027,4,1,f +4402,6041,4,1,f +4402,6041,0,2,f +4402,78c04,4,2,f +4402,970d03,4,1,f +4402,973pb0107c01,0,1,f +4403,2460,4,1,f +4403,2479,7,1,f +4403,3001,1,1,f +4403,3001,4,1,f +4403,3003,4,1,f +4403,3009,14,2,f +4403,3020,4,1,f +4403,3039,47,1,f +4403,3297p02,1,2,f +4403,3298,4,1,f +4403,3660,4,1,f +4403,3666,7,2,f +4403,3710,7,2,f +4403,3747b,4,2,f +4403,3795,4,1,f +4406,2586p4b,7,2,f +4406,3068bp40,15,1,f +4406,3844,8,1,f +4406,3846p44,7,1,f +4406,3846p4c,7,1,f +4406,3847,8,2,f +4406,3849,8,2,f +4406,3896,8,1,f +4406,3957a,0,2,f +4406,4495a,14,1,f +4406,4495a,1,1,f +4406,4497,6,2,f +4406,4498,6,1,f +4406,4499,6,1,f +4406,4505,6,1,f +4406,6122,0,2,f +4406,6123,8,1,f +4406,6124,21,1,f +4406,6126a,57,2,f +4406,6131,1,1,f +4406,6132,15,1,f +4406,87685,15,1,f +4406,87685,4,1,f +4406,87686,4,1,f +4406,87686,15,1,f +4406,87687,15,1,f +4406,87687,4,1,f +4407,2780,0,6,f +4407,32013,71,1,f +4407,32054,0,1,f +4407,32062,0,1,f +4407,32174,28,5,f +4407,32200,15,1,f +4407,3705,0,1,f +4407,43093,1,1,f +4407,47296,28,2,f +4407,47306,28,1,f +4407,47311,70,1,f +4407,50898,28,2,f +4407,53500,57,1,f +4407,53563,70,1,f +4407,53564,148,1,f +4407,53566,70,2,f +4407,53568,70,2,f +4407,53574,70,2,f +4407,53578,148,1,f +4407,53580,70,1,f +4407,54271,148,1,f +4407,54821,42,4,f +4407,55095pr0001,15,1,f +4407,55303,86,1,t +4407,59426,72,1,f +4408,2412b,1,2,f +4408,2446,15,1,f +4408,298c02,15,2,f +4408,298c02,15,1,t +4408,3001,15,1,f +4408,3040b,15,4,f +4408,3298,15,1,f +4408,3626bp69,14,1,f +4408,3933,0,1,f +4408,3934,0,1,f +4408,4070,8,2,f +4408,6126a,57,2,f +4408,6141,36,1,t +4408,6141,34,1,t +4408,6141,36,1,f +4408,6141,34,1,f +4408,769,334,1,f +4408,970c00,15,1,f +4408,973px176c01,15,1,f +4410,23221,40,6,f +4410,2335px5,8,1,f +4410,2357,7,2,f +4410,2376,0,1,f +4410,2412b,42,10,f +4410,2412b,335,3,f +4410,2412b,379,3,f +4410,2412b,25,2,f +4410,2419,8,11,f +4410,2420,0,16,f +4410,2431,1,1,f +4410,2431,4,1,f +4410,2431,7,2,f +4410,2432,0,4,f +4410,2445,7,1,f +4410,2456,7,2,f +4410,2458,7,4,f +4410,2465,0,2,f +4410,2476a,8,2,f +4410,2516,0,2,f +4410,2540,8,17,f +4410,2819,7,1,f +4410,2877,7,7,f +4410,2877,8,8,f +4410,298c02,0,1,t +4410,298c02,0,1,f +4410,3001,7,9,f +4410,3003,4,2,f +4410,3003,1,2,f +4410,3003,8,4,f +4410,30035,0,1,f +4410,3004,19,3,f +4410,3006,0,1,f +4410,3006,7,2,f +4410,3007,8,1,f +4410,3009,7,9,f +4410,3010,8,3,f +4410,30194,8,1,f +4410,3020,8,13,f +4410,3021,7,12,f +4410,30211,8,2,f +4410,3022,0,16,f +4410,3023,0,21,f +4410,3023,19,13,f +4410,30236,1,2,f +4410,30236,4,2,f +4410,30237a,19,4,f +4410,30293,57,1,f +4410,30294,57,1,f +4410,3030,7,1,f +4410,3032,8,1,f +4410,3034,0,13,f +4410,3035,0,4,f +4410,30359a,379,4,f +4410,30359a,335,4,f +4410,30364,8,4,f +4410,30375,25,1,f +4410,30375,0,1,f +4410,30375,22,1,f +4410,30375,4,1,f +4410,30375,373,1,f +4410,30377,74,2,f +4410,30377,7,1,f +4410,30377,2,1,t +4410,30377,7,1,t +4410,30377,74,1,t +4410,30377,2,2,f +4410,30377,3,6,f +4410,30377,3,1,t +4410,30383,0,6,f +4410,30389a,7,1,f +4410,3039,7,9,f +4410,30395,8,2,f +4410,30396,0,2,f +4410,3039px9,8,3,f +4410,3040b,7,2,f +4410,3040b,378,4,f +4410,30526,8,8,f +4410,30528,373,4,f +4410,30529p01,3,1,f +4410,30529p02,3,1,f +4410,30530,4,1,f +4410,30530,373,1,f +4410,30530,22,1,f +4410,30530,0,1,f +4410,30530,25,1,f +4410,30535,373,2,f +4410,30536,40,1,f +4410,30536,335,1,f +4410,30536,373,1,f +4410,30536,379,1,f +4410,30540,7,2,f +4410,30541,0,4,f +4410,30552,7,3,f +4410,30553,8,16,f +4410,30554a,8,1,f +4410,30584c01,373,1,f +4410,30585a,373,13,f +4410,30586,373,6,f +4410,30592,7,1,f +4410,30593,0,2,f +4410,30593,21,1,f +4410,30596,25,1,f +4410,3062b,33,1,f +4410,3062b,42,30,f +4410,3068b,1,1,f +4410,3068b,4,1,f +4410,3069bp55,8,2,f +4410,3069bpx18,8,10,f +4410,3070bp60,0,1,f +4410,3070bp60,0,1,t +4410,32000,7,14,f +4410,32014,0,2,f +4410,32039,7,1,f +4410,32062,0,5,f +4410,32064a,2,4,f +4410,32073,0,1,f +4410,3298,379,2,f +4410,3298,7,3,f +4410,3298,335,2,f +4410,3456,8,1,f +4410,3460,7,2,f +4410,3475b,7,2,f +4410,3623,8,8,f +4410,3660,8,6,f +4410,3666,4,1,f +4410,3666,1,1,f +4410,3679,7,2,f +4410,3680,0,2,f +4410,3684,7,4,f +4410,3700,0,4,f +4410,3705,15,2,f +4410,3706,7,1,f +4410,3707,0,2,f +4410,3709,7,2,f +4410,3710,7,4,f +4410,3713,7,1,t +4410,3713,7,1,f +4410,3743,7,2,f +4410,3747a,4,1,f +4410,3747a,1,1,f +4410,3749,7,6,f +4410,3794a,7,6,f +4410,3795,8,3,f +4410,3832,1,2,f +4410,3832,4,2,f +4410,3937,8,3,f +4410,3941,19,5,f +4410,3959,0,2,f +4410,3960px3,7,2,f +4410,3961,373,2,f +4410,3962b,0,2,f +4410,4019,7,1,f +4410,4150pr0022,7,1,f +4410,4150px7,8,1,f +4410,4150px8,7,1,f +4410,4151a,8,3,f +4410,4282,0,4,f +4410,4286,379,2,f +4410,4286,335,2,f +4410,4286,373,16,f +4410,4287,7,2,f +4410,4328,7,1,f +4410,4360,8,1,f +4410,4460a,7,2,f +4410,4476b,8,22,f +4410,4477,0,1,f +4410,4588,7,1,f +4410,4589,379,6,f +4410,4589,42,1,f +4410,4589,335,6,f +4410,4740,57,1,f +4410,4740,1,2,f +4410,4740,378,2,f +4410,4740,42,5,f +4410,4740,4,2,f +4410,4859,7,4,f +4410,6019,7,10,f +4410,6041,42,2,f +4410,6134,19,3,f +4410,6141,57,4,f +4410,6141,57,2,t +4410,6141,36,3,t +4410,6141,36,24,f +4410,6583,8,2,f +4410,6587,8,2,f +4410,6636,0,10,f +4410,73983,1,4,f +4410,73983,4,4,f +4410,75535,1,2,f +4410,75535,4,2,f +4410,78c04,179,3,f +4410,x117px10,3,1,f +4410,x117px7,74,1,f +4410,x117px9,2,1,f +4411,30089,0,1,f +4411,30162,72,1,f +4411,3962b,0,1,f +4412,2431,15,1,f +4412,2432,0,1,f +4412,2555,0,1,f +4412,2654,0,1,f +4412,30031,72,1,f +4412,3023,71,1,f +4412,3031,15,1,f +4412,3626bpr0663,14,1,f +4412,3794b,27,1,f +4412,3795,15,1,f +4412,4081b,0,2,f +4412,43722,27,1,f +4412,43723,27,1,f +4412,4488,0,1,f +4412,46303,71,1,f +4412,47755,0,1,f +4412,4856a,15,1,f +4412,54200,27,2,f +4412,54200,27,1,t +4412,60470a,15,1,f +4412,61678,27,4,f +4412,970c00,15,1,f +4412,973pr1586c01,27,1,f +4413,12825,71,12,f +4413,12825,72,12,f +4413,13731,15,2,f +4413,13731,71,2,f +4413,2412b,72,8,f +4413,2412b,14,2,f +4413,2412b,71,4,f +4413,2431,71,2,f +4413,2432,71,2,f +4413,2458,19,4,f +4413,2460,72,1,f +4413,2654,71,4,f +4413,2780,0,4,f +4413,2780,0,1,t +4413,2877,71,11,f +4413,2877,72,2,f +4413,3002,1,2,f +4413,30033,0,4,f +4413,3009,72,2,f +4413,3010,19,2,f +4413,3020,15,2,f +4413,3021,72,4,f +4413,3022,0,4,f +4413,3023,47,4,f +4413,3023,14,4,f +4413,3023,19,12,f +4413,30236,71,5,f +4413,3031,72,4,f +4413,3032,71,4,f +4413,3034,15,2,f +4413,30350b,0,1,f +4413,3036,15,1,f +4413,30361pr0011b,15,1,f +4413,30362,15,2,f +4413,30370pr07,15,1,f +4413,30372pr0001,40,1,f +4413,30374,15,4,f +4413,3038,71,4,f +4413,30383,71,2,f +4413,3039,19,1,f +4413,3039pr0008,0,1,f +4413,3040b,71,4,f +4413,30414,15,3,f +4413,30414,72,3,f +4413,3045,71,2,f +4413,30475,308,1,f +4413,30602,72,2,f +4413,3062b,72,4,f +4413,3062b,19,6,f +4413,3068b,15,2,f +4413,3069b,15,2,f +4413,3176,71,3,f +4413,32013,15,16,f +4413,32034,15,8,f +4413,32123b,71,1,t +4413,32123b,71,1,f +4413,32138,71,1,f +4413,3298,0,1,f +4413,3460,72,2,f +4413,3623,14,2,f +4413,3626cpr0631,78,1,f +4413,3626cpr0655,78,1,f +4413,3666,15,1,f +4413,3673,71,1,t +4413,3673,71,8,f +4413,3700,72,5,f +4413,3702,71,2,f +4413,3703,71,2,f +4413,3707,0,2,f +4413,3708,15,16,f +4413,3709,71,3,f +4413,3710,19,3,f +4413,3710,72,2,f +4413,3710,71,2,f +4413,3747b,72,3,f +4413,3794b,4,2,f +4413,3795,71,6,f +4413,3795,72,1,f +4413,3894,1,1,f +4413,3941,72,3,f +4413,4032a,14,4,f +4413,4032a,71,1,f +4413,4032a,72,4,f +4413,4150,72,2,f +4413,42610,71,1,f +4413,4274,71,16,f +4413,4274,71,1,t +4413,4274,1,1,t +4413,4274,1,4,f +4413,43722,15,1,f +4413,43722,14,1,f +4413,43723,14,1,f +4413,43723,15,1,f +4413,44728,14,3,f +4413,44728,71,3,f +4413,4589,71,2,f +4413,4589,42,2,f +4413,4589,4,2,f +4413,4591,15,2,f +4413,4697b,71,2,f +4413,4697b,71,1,t +4413,4740,57,2,f +4413,47457,14,2,f +4413,4865b,19,2,f +4413,48729b,72,1,t +4413,48729b,72,16,f +4413,50231,15,1,f +4413,50950,14,2,f +4413,51739,15,2,f +4413,51739,14,1,f +4413,52036,72,1,f +4413,54200,71,1,t +4413,54200,71,4,f +4413,54383,15,1,f +4413,54384,15,1,f +4413,58247,0,2,f +4413,59426,72,2,f +4413,6019,72,6,f +4413,60474,14,2,f +4413,60478,15,2,f +4413,61184,71,6,f +4413,6141,72,12,f +4413,6141,72,3,t +4413,6180,71,1,f +4413,6222,71,4,f +4413,6222,15,4,f +4413,6232,71,2,f +4413,6259,15,4,f +4413,63965,70,6,f +4413,6587,28,1,f +4413,85080,71,16,f +4413,85984,71,7,f +4413,86500,15,2,f +4413,87081,72,2,f +4413,87083,72,2,f +4413,87580,72,1,f +4413,92593,71,6,f +4413,93274,71,2,f +4413,970c00,15,1,f +4413,970x199,25,1,f +4413,973pr1578c01,25,1,f +4413,973pr2002c01,15,1,f +4413,98100pr0003,15,1,f +4415,2495,4,1,f +4415,2496,0,1,f +4415,3062b,14,2,f +4415,3062b,1,2,f +4415,32028,0,2,f +4415,4349,72,1,f +4415,4599a,14,1,f +4415,4599a,14,1,t +4415,4599a,1,1,f +4415,4599a,1,1,t +4415,6126a,57,1,f +4418,30132,72,1,f +4418,3626bpr0836,14,1,f +4418,61506,0,1,f +4418,88646,0,1,f +4418,96207,0,1,f +4418,970c00,0,1,f +4418,973pr1833c01,0,1,f +4421,2871a,0,2,f +4421,70358,0,1,f +4422,2412b,1,1,f +4422,2412b,15,2,f +4422,2419,0,1,f +4422,2446,15,1,f +4422,2458,1,1,f +4422,2460,0,1,f +4422,2540,0,1,f +4422,2569,57,1,f +4422,2713,15,4,f +4422,3004,0,1,f +4422,3021,15,1,f +4422,3023,1,1,f +4422,3032,0,1,f +4422,3062b,0,4,f +4422,3069bp13,15,1,f +4422,3069bp61,15,1,f +4422,3298p61,1,1,f +4422,3626bp61,14,1,f +4422,3666,15,1,f +4422,3700,1,2,f +4422,3710,15,5,f +4422,3794a,1,2,f +4422,3838,15,1,f +4422,3941,0,1,f +4422,3960,57,1,f +4422,4085c,1,2,f +4422,4590,0,1,f +4422,4623,1,2,f +4422,4740,0,1,f +4422,4740,57,1,f +4422,6019,0,1,f +4422,6104,1,1,f +4422,6117,57,1,f +4422,6119,57,1,f +4422,6120,57,2,f +4422,6141,15,1,t +4422,6141,15,2,f +4422,970x023,0,1,f +4422,973p61c01,0,1,f +4423,2412b,72,2,f +4423,2412b,70,2,f +4423,2420,0,4,f +4423,2436,14,6,f +4423,2444,71,6,f +4423,2445,0,3,f +4423,2454a,0,4,f +4423,2486,71,2,f +4423,2540,71,4,f +4423,2540,72,4,f +4423,2555,14,2,f +4423,2555,0,2,f +4423,2654,14,2,f +4423,2780,0,2,f +4423,2780,0,1,t +4423,2877,4,31,f +4423,2878,0,6,f +4423,298c02,0,2,t +4423,298c02,0,4,f +4423,3001,25,1,f +4423,3003pr0003,4,1,f +4423,3004,2,3,f +4423,3004,484,1,f +4423,30041,72,1,f +4423,30042,72,1,f +4423,3005,4,2,f +4423,3009,4,2,f +4423,3010,4,2,f +4423,3010,72,6,f +4423,3010pr0003,2,2,f +4423,30136,70,14,f +4423,30137,70,10,f +4423,30150,70,1,f +4423,3020,71,1,f +4423,3020,19,2,f +4423,3021,72,1,f +4423,3022,0,9,f +4423,3023,70,5,f +4423,3023,0,5,f +4423,3023,484,1,f +4423,3023,14,5,f +4423,3023,4,2,f +4423,30236,71,4,f +4423,3030,0,2,f +4423,3033,14,1,f +4423,3034,4,2,f +4423,3036,4,1,f +4423,30361c,4,2,f +4423,30367b,4,1,f +4423,30374,14,4,f +4423,30414,14,2,f +4423,30414,19,2,f +4423,3048c,4,4,f +4423,30602,0,1,f +4423,3062b,4,4,f +4423,3065,47,5,f +4423,30663,71,1,f +4423,3068b,4,2,f +4423,3068b,0,1,f +4423,3069b,0,4,f +4423,3069b,73,2,f +4423,3176,0,1,f +4423,3176,4,1,f +4423,32001,0,4,f +4423,32014,0,1,f +4423,32014,72,1,f +4423,32028,72,8,f +4423,32062,4,1,f +4423,32064a,0,4,f +4423,3245c,4,6,f +4423,3298,72,8,f +4423,3456,0,4,f +4423,3460,70,4,f +4423,3460,0,2,f +4423,3622,0,2,f +4423,3623,0,4,f +4423,3623,70,8,f +4423,3660,0,1,f +4423,3666,4,2,f +4423,3666,72,6,f +4423,3666,14,1,f +4423,3700,71,7,f +4423,3709,14,1,f +4423,3710,14,1,f +4423,3710,70,4,f +4423,3710,0,5,f +4423,3737,0,1,f +4423,3749,19,8,f +4423,3795,72,2,f +4423,3941,4,2,f +4423,3941,0,3,f +4423,3941,2,2,f +4423,3956,0,1,f +4423,3960,0,1,f +4423,4025,0,1,f +4423,4032a,4,6,f +4423,4032a,14,2,f +4423,4070,14,4,f +4423,4081b,72,4,f +4423,4150,0,1,f +4423,4175,4,4,f +4423,4287,4,2,f +4423,43093,1,1,f +4423,43093,1,1,t +4423,43337,4,1,f +4423,44728,4,1,f +4423,4477,4,6,f +4423,4477,0,2,f +4423,4510,72,4,f +4423,4511,72,2,f +4423,4511pr0001,72,2,f +4423,4519,71,1,f +4423,4623,71,2,f +4423,4740,14,1,f +4423,4742,0,1,f +4423,50950,72,8,f +4423,52031,0,2,f +4423,52036,72,3,f +4423,54200,2,12,f +4423,54200,2,1,t +4423,57051,383,6,f +4423,57878,0,12,f +4423,57999,4,4,f +4423,60474,72,1,f +4423,60474,14,2,f +4423,60583a,4,4,f +4423,60592,0,4,f +4423,60593,2,10,f +4423,60593,4,2,f +4423,60594,0,2,f +4423,60594,4,2,f +4423,60596,0,4,f +4423,60601,40,4,f +4423,60602,47,10,f +4423,60623,4,2,f +4423,60623,2,2,f +4423,6081,0,2,f +4423,6091,14,2,f +4423,61345,4,1,f +4423,6141,19,1,t +4423,6141,71,1,t +4423,6141,14,12,f +4423,6141,71,2,f +4423,6141,47,1,t +4423,6141,47,1,f +4423,6141,19,4,f +4423,6141,14,2,t +4423,61678,0,4,f +4423,62113,72,2,f +4423,6222,0,1,f +4423,62361,0,4,f +4423,6259,0,2,f +4423,63965,72,2,f +4423,64728,4,4,f +4423,6587,28,1,f +4423,6636,0,20,f +4423,85080,72,4,f +4423,85544,4,4,f +4423,85557,4,4,f +4423,85558,4,2,t +4423,87079pr0001,4,2,f +4423,87079pr0002,70,2,f +4423,87079pr0003,70,2,f +4423,87087,71,6,f +4423,87765pat01,78,1,f +4423,87768pat0001,78,1,f +4423,88007,84,1,f +4423,88062pr0001,78,1,f +4423,88064pr0001,15,1,f +4423,88065pr0001,27,2,f +4423,88066,47,1,f +4423,88930,0,4,f +4423,88930,4,4,f +4423,89891pr0001,10,1,f +4423,89895,10,1,f +4423,89898,10,1,f +4423,89899,10,1,f +4423,89993,86,1,f +4423,89994pr0001,78,1,f +4423,90201,4,1,f +4423,91994,0,7,f +4423,970c00pr0162,15,1,f +4423,970c99pr0001,1,1,f +4423,970c99pr0002,1,1,f +4423,973pr1529c01,15,1,f +4423,973pr1530c01,15,1,f +4423,973pr1552c01,15,1,f +4424,2343,0,1,f +4424,2412b,25,3,f +4424,2431,15,2,f +4424,2446,15,1,f +4424,2447,82,1,f +4424,2447,82,1,t +4424,2540,25,2,f +4424,2566,0,1,f +4424,2654,71,1,f +4424,2780,0,1,t +4424,2780,0,2,f +4424,3001,15,3,f +4424,3004,15,5,f +4424,3009,15,1,f +4424,30153,42,3,f +4424,30194,72,1,f +4424,3020,15,2,f +4424,3023,1,4,f +4424,30237a,15,2,f +4424,30251,182,1,f +4424,30261,15,2,f +4424,30388,0,2,f +4424,3039,15,2,f +4424,3040b,15,2,f +4424,3066,40,2,f +4424,32062,4,1,f +4424,32316,15,2,f +4424,3460,0,4,f +4424,3623,15,2,f +4424,3626bpr0233,14,1,f +4424,3660,15,3,f +4424,3665,15,2,f +4424,3673,71,2,f +4424,3673,71,1,t +4424,3701,15,5,f +4424,3710,0,1,f +4424,3730,71,1,f +4424,3731,0,1,f +4424,3795,71,1,f +4424,3832,0,2,f +4424,3941,0,2,f +4424,3957a,15,1,f +4424,3962b,0,1,f +4424,40340,0,1,f +4424,4081b,71,2,f +4424,4085c,15,1,f +4424,41678,0,1,f +4424,44568,15,2,f +4424,44572,15,2,f +4424,4588,72,1,f +4424,4589,33,1,f +4424,4589,0,2,f +4424,4697b,71,1,t +4424,4697b,71,1,f +4424,4740,15,1,f +4424,48336,71,1,f +4424,48729a,0,1,t +4424,48729a,0,3,f +4424,50950,15,3,f +4424,58844pat0001,34,1,f +4424,58845,34,1,f +4424,59230,0,2,f +4424,59230,0,1,t +4424,60470a,0,2,f +4424,60471,15,2,f +4424,60478,15,2,f +4424,6118,25,8,f +4424,6141,25,4,f +4424,6141,42,1,t +4424,6141,25,1,t +4424,6141,42,2,f +4424,6249,71,3,f +4424,7648stk01,9999,1,t +4424,970x194,15,1,f +4424,973pr1317c01,15,1,f +4425,194cx1,2,1,f +4425,2431,15,3,f +4425,2432,4,1,f +4425,2437,41,1,f +4425,2445,1,1,f +4425,30027,15,4,f +4425,30028,0,4,f +4425,3004,4,1,f +4425,3004,2,1,f +4425,3010,15,2,f +4425,3020,15,1,f +4425,3022,4,3,f +4425,3022,15,1,f +4425,3023,2,3,f +4425,3023,15,3,f +4425,3024,36,2,f +4425,3024,46,2,f +4425,3024,15,2,f +4425,3034,0,2,f +4425,30355,15,1,f +4425,30356,15,1,f +4425,3039pc5,7,1,f +4425,3040b,15,2,f +4425,3069b,15,1,f +4425,3070b,36,2,f +4425,3070b,15,2,f +4425,3070b,34,1,f +4425,3298,7,2,f +4425,3624,0,1,f +4425,3626bp04,14,2,f +4425,3626bpr0001,14,1,f +4425,3666,1,1,f +4425,3666,15,7,f +4425,3679,7,1,f +4425,3680,0,1,f +4425,3710,2,2,f +4425,3710,15,2,f +4425,3710,1,5,f +4425,3794a,15,1,f +4425,3795,15,1,f +4425,3823,41,1,f +4425,3829c01,7,1,f +4425,3870,7,3,f +4425,3901,0,1,f +4425,3935,15,1,f +4425,3936,15,1,f +4425,4070,7,2,f +4425,4079,14,2,f +4425,4150,4,1,f +4425,4211,2,1,f +4425,4449,6,1,f +4425,4485,4,1,f +4425,4625,15,3,f +4425,4744,15,2,f +4425,4854,15,1,f +4425,4854,7,2,f +4425,4855,7,2,f +4425,4856a,15,1,f +4425,4856a,1,1,f +4425,4857,15,3,f +4425,4858,15,1,f +4425,4859,15,2,f +4425,4859,1,1,f +4425,4861,15,1,f +4425,4864b,15,8,f +4425,4865a,15,2,f +4425,4865a,41,1,f +4425,4867,15,1,f +4425,4868a,15,2,f +4425,4869,7,2,f +4425,6157,0,2,f +4425,6230,0,6,f +4425,6636,1,1,f +4425,970c00,0,1,f +4425,970c00,7,2,f +4425,973c11,0,1,f +4425,973p73c01,2,1,f +4425,973px189c01,0,1,f +4426,72156,15,1,f +4427,2352,14,1,f +4427,3001,14,1,f +4427,3001,4,2,f +4427,3001,1,2,f +4427,3001pt0,14,2,f +4427,3002,14,2,f +4427,3002,4,2,f +4427,3006,1,2,f +4427,3006,14,1,f +4427,3006,4,2,f +4427,3007,14,2,f +4427,4729,4,1,f +4427,4730,4,1,f +4427,4745,4,1,f +4427,4751a,4,1,f +4427,fab13a,9999,1,f +4428,3703,0,4,f +4428,3895,0,4,f +4434,3001,14,1,f +4434,3003,14,3,f +4434,3033,14,1,f +4434,3185,4,1,f +4434,3334,2,1,f +4434,3741,2,6,f +4434,3742,14,6,f +4434,3742,14,2,t +4434,3742,4,2,t +4434,3742,15,2,t +4434,3742,15,6,f +4434,3742,4,6,f +4434,3899,1,1,f +4434,3979c01,14,2,f +4434,4094a,4,1,f +4434,4222a,450,1,f +4434,4324,6,1,f +4434,63965,4,1,f +4434,787c02,14,3,f +4434,fab7a,9999,1,f +4434,fabbc1b,14,1,f +4434,fabca2,450,1,f +4436,14226c11,0,1,f +4436,2348b,33,1,f +4436,2349a,15,1,f +4436,2412b,0,3,f +4436,2413,15,2,f +4436,2419,15,1,f +4436,2420,15,6,f +4436,2431,7,1,f +4436,2432,0,2,f +4436,2436,4,1,f +4436,2444,7,1,f +4436,2445,4,1,f +4436,2446px6,1,1,f +4436,2447,41,1,f +4436,2447,41,1,t +4436,2508,7,1,f +4436,2540,7,2,f +4436,2620,41,1,f +4436,2655,7,1,f +4436,2926,0,1,f +4436,298c05,0,6,f +4436,3003,15,1,f +4436,3004,4,1,f +4436,3004,15,1,f +4436,3004,0,1,f +4436,3005,15,2,f +4436,3010,4,1,f +4436,3020,0,3,f +4436,3021,0,2,f +4436,3021,7,1,f +4436,3022,0,1,f +4436,3022,7,1,f +4436,3022,15,2,f +4436,3023,15,2,f +4436,3023,0,1,f +4436,3023,7,3,f +4436,3023,4,3,f +4436,3024,36,6,f +4436,3024,7,2,f +4436,3024,34,1,f +4436,3039,15,1,f +4436,3039pb012,14,1,f +4436,3040b,7,2,f +4436,3062b,0,1,f +4436,3070b,46,1,t +4436,3070b,46,2,f +4436,3070b,4,6,f +4436,3070b,4,1,t +4436,3139,0,6,f +4436,3464,4,1,f +4436,3623,4,2,f +4436,3626bp04,14,2,f +4436,3633,7,2,f +4436,3641,0,4,f +4436,3660,0,1,f +4436,3660,4,2,f +4436,3673,7,1,f +4436,3710,14,2,f +4436,3710,15,2,f +4436,3730,7,2,f +4436,3731,7,1,f +4436,3787,4,1,f +4436,3788,14,2,f +4436,3788,4,1,f +4436,3795,15,1,f +4436,3821,4,1,f +4436,3822,4,1,f +4436,3823,41,1,f +4436,3829c01,0,2,f +4436,3839b,0,1,f +4436,3901,0,1,t +4436,3941,15,2,f +4436,4006,0,1,f +4436,4032a,4,2,f +4436,4032a,15,2,f +4436,4032a,2,2,f +4436,4079,14,1,f +4436,4212b,15,1,f +4436,4214,15,1,f +4436,4315,15,1,f +4436,4485,2,1,f +4436,4522,0,1,f +4436,4599a,0,1,f +4436,4600,7,1,f +4436,4617b,0,1,f +4436,4624,7,4,f +4436,4624,15,6,f +4436,4856a,4,1,f +4436,4859,4,1,f +4436,4859,15,1,f +4436,4864b,4,1,f +4436,4865a,4,1,f +4436,6014a,15,4,f +4436,6015,0,4,f +4436,6019,4,3,f +4436,6141,0,1,t +4436,6141,0,2,f +4436,6157,0,5,f +4436,6239,15,1,f +4436,73983,4,4,f +4436,970c00,0,1,f +4436,970c00,1,1,f +4436,973p73c01,2,1,f +4436,973pb0249c01,4,1,f +4439,3001,4,1,f +4439,3003,4,1,f +4439,3003,15,2,f +4439,3004,4,2,f +4439,3005,15,1,f +4439,3008,4,16,f +4439,3008p21,15,4,f +4439,3009,4,1,f +4439,3009,15,1,f +4439,3009p21,15,2,f +4439,3010,15,6,f +4439,3010,4,1,f +4439,3020,15,2,f +4439,3020,1,1,f +4439,3021,15,5,f +4439,3022,1,1,f +4439,3022,0,2,f +4439,3023,4,8,f +4439,3023,15,6,f +4439,3024,36,1,f +4439,3024,14,12,f +4439,3024,34,1,f +4439,3024,15,8,f +4439,3028,1,1,f +4439,3032,15,3,f +4439,3033,15,1,f +4439,3033,1,2,f +4439,3040b,15,8,f +4439,3068b,15,4,f +4439,3456,15,1,f +4439,3460,15,14,f +4439,3623,15,2,f +4439,3660,4,2,f +4439,3665,4,8,f +4439,3666,1,1,f +4439,3666,15,15,f +4439,3678a,15,2,f +4439,3684,15,3,f +4439,3710,15,11,f +4439,3794a,15,3,f +4439,3795,15,5,f +4440,3001a,14,3,f +4440,3002a,14,2,f +4440,3003,14,4,f +4440,3004,14,30,f +4440,3005,14,11,f +4440,3008,14,16,f +4440,3009,14,18,f +4440,3010,14,19,f +4440,3010ap04,14,2,f +4440,3020,14,8,f +4440,3020,0,6,f +4440,3021,0,4,f +4440,3021,14,4,f +4440,3022,14,4,f +4440,3022,0,5,f +4440,3023,14,12,f +4440,3023,0,4,f +4440,3024,14,8,f +4440,3024,46,2,f +4440,3024,36,4,f +4440,3024,0,4,f +4440,3030,14,2,f +4440,3032,14,2,f +4440,3032,0,1,f +4440,3033,14,2,f +4440,3034,0,6,f +4440,3034,14,4,f +4440,3035,14,2,f +4440,3036,14,2,f +4440,3039,14,10,f +4440,3040b,14,6,f +4440,3062a,0,2,f +4440,3062a,36,2,f +4440,3062a,14,2,f +4440,3065,33,6,f +4440,3067,33,2,f +4440,3069b,14,8,f +4440,3070b,14,4,f +4440,3127,7,1,f +4440,3145,14,2,f +4440,3176,0,2,f +4440,3298,14,5,f +4440,3315,0,1,f +4440,3324c01,0,2,f +4440,3403c01,0,1,f +4440,3460,0,4,f +4440,3460,14,6,f +4440,3482,7,12,f +4440,3483,0,4,f +4440,3581,14,2,f +4440,3597,0,1,f +4440,3622,14,12,f +4440,3623,14,6,f +4440,3623,0,2,f +4440,3634,0,8,f +4440,3644,14,2,f +4440,3647,7,2,f +4440,3648a,7,2,f +4440,3649,7,2,f +4440,3650a,7,2,f +4440,3651,7,2,f +4440,3660,14,10,f +4440,3665,14,8,f +4440,3666,14,6,f +4440,3666,0,1,f +4440,3673,7,2,f +4440,3678a,33,5,f +4440,3679,7,1,f +4440,3680,14,1,f +4440,3700,14,10,f +4440,3703,14,2,f +4440,3705,0,1,f +4440,3706,0,2,f +4440,3707,0,3,f +4440,3709,14,2,f +4440,3710,0,2,f +4440,3710,14,7,f +4440,3711a,0,50,f +4440,3713,7,8,f +4440,3730,0,1,f +4440,3731,0,1,f +4440,3736,7,1,f +4440,3737,0,2,f +4440,3738,14,1,f +4440,3743,7,4,f +4440,3747b,14,5,f +4440,3749,7,8,f +4440,3794a,14,1,f +4440,3795,0,5,f +4440,3795,14,4,f +4440,3830,14,2,f +4440,3831,14,2,f +4440,3832,0,4,f +4440,3832,14,6,f +4440,3839a,0,2,f +4440,3841,8,1,f +4440,3853,4,2,f +4440,3854,4,4,f +4440,3861b,4,1,f +4440,3895,14,2,f +4440,3900,0,2,f +4440,3937,7,4,f +4440,3938,7,4,f +4440,3939,33,1,f +4440,3941,7,5,f +4440,3956,0,4,f +4440,3957a,0,2,f +4440,3959,7,1,f +4440,3960,7,1,f +4440,3961,7,1,f +4440,3963,7,2,f +4440,4006,0,1,f +4440,4070,14,6,f +4440,4085a,7,2,f +4440,4185,7,1,f +4440,468c03,0,1,f +4440,56823,0,2,f +4440,73037,14,2,f +4440,766c96,7,1,f +4440,x469b,14,1,f +4441,2412b,72,1,f +4441,30187b,15,1,f +4441,30187c06,15,1,t +4441,30189,15,1,f +4441,30190,15,1,f +4441,3023,0,1,f +4441,3024,33,2,f +4441,3024,36,1,f +4441,3024,46,1,f +4441,3710,15,1,f +4441,3962b,0,1,f +4441,4085c,15,2,f +4441,6014b,15,2,f +4441,60700,0,3,f +4442,3001,15,3,f +4442,3004,14,2,f +4442,3004,15,8,f +4442,3009,15,6,f +4442,3010,0,4,f +4442,3010,15,3,f +4442,3022,0,2,f +4442,3024,15,2,f +4442,3024,0,4,f +4442,3027,0,1,f +4442,3037,15,6,f +4442,3622,15,4,f +4442,3622,0,2,f +4442,3623,4,4,f +4442,3660,14,12,f +4442,3665,0,8,f +4442,3666,4,2,f +4442,3666,0,4,f +4442,3700,0,4,f +4442,3710,15,2,f +4442,3710,4,2,f +4442,3795,0,2,f +4442,3832,0,1,f +4442,4022,0,2,f +4442,4023,0,2,f +4442,4032a,0,6,f +4442,4070,0,2,f +4442,4083,0,1,f +4442,4175,4,4,f +4442,4180c04,4,2,f +4442,5102c13,0,2,f +4442,73092,0,2,f +4443,2412b,297,10,f +4443,2412b,71,3,f +4443,2420,0,2,f +4443,2444,72,4,f +4443,2450,0,2,f +4443,2450,320,2,f +4443,2540,0,1,f +4443,2654,71,4,f +4443,2780,0,10,f +4443,298c02,15,2,f +4443,3001,72,1,f +4443,3002,0,1,f +4443,3003,71,1,f +4443,3020,71,3,f +4443,3021,15,5,f +4443,3021,0,6,f +4443,3022,4,4,f +4443,3023,15,10,f +4443,3023,72,7,f +4443,3034,72,2,f +4443,3035,72,2,f +4443,30383,15,2,f +4443,30414,15,1,f +4443,3049b,320,1,f +4443,30602,40,1,f +4443,30602,15,3,f +4443,3068b,15,2,f +4443,32000,0,1,f +4443,32013,72,11,f +4443,32054,0,12,f +4443,32062,4,17,f +4443,32064b,72,4,f +4443,32187,71,2,f +4443,32291,71,1,f +4443,32530,0,2,f +4443,32557,0,1,f +4443,3626bpr0452,14,1,f +4443,3700,71,1,f +4443,3700,15,2,f +4443,3701,71,1,f +4443,3705,0,4,f +4443,3706,0,1,f +4443,3710,320,1,f +4443,3795,15,3,f +4443,3839b,71,1,f +4443,3941,0,1,f +4443,40244,0,1,f +4443,41677,72,4,f +4443,41747,15,1,f +4443,41751,320,2,f +4443,41883,40,1,f +4443,42022,0,4,f +4443,4286,0,4,f +4443,43093,1,4,f +4443,43712,15,2,f +4443,43719,320,1,f +4443,43857,71,2,f +4443,44351,297,2,f +4443,44728,15,1,f +4443,44809,71,4,f +4443,4588,72,4,f +4443,4589,14,2,f +4443,4623,15,2,f +4443,47296,72,1,f +4443,47432,0,2,f +4443,47454,72,2,f +4443,47455,0,7,f +4443,47755,72,1,f +4443,47759,0,4,f +4443,48169,72,1,f +4443,48170,72,3,f +4443,48172,0,1,f +4443,50923,72,2,f +4443,50950,15,2,f +4443,50955,15,4,f +4443,50956,15,4,f +4443,53982,4,1,f +4443,54200,15,4,f +4443,54200,72,2,f +4443,57028c01,4,1,f +4443,57796,72,1,f +4443,57906,15,2,f +4443,57908,72,1,f +4443,59279,14,1,f +4443,6019,71,2,f +4443,6153b,15,3,f +4443,6232,15,1,f +4443,62712,72,2,f +4443,6558,0,6,f +4443,75347,297,1,f +4443,7714stk01,9999,1,t +4443,78c24,179,2,f +4443,970x026,15,1,f +4443,973pr1311c01,15,1,f +4444,2412b,72,5,f +4444,2431,72,3,f +4444,2439,2,1,f +4444,2445,72,1,f +4444,2877,72,2,f +4444,3002,71,1,f +4444,3003,14,1,f +4444,3004,14,2,f +4444,3005,72,2,f +4444,3010,14,2,f +4444,3020,71,1,f +4444,3022,4,2,f +4444,3023,46,3,f +4444,3023,15,2,f +4444,3029,71,1,f +4444,3031,19,1,f +4444,3033,72,1,f +4444,30386,71,1,f +4444,30388,71,1,f +4444,3039,14,3,f +4444,30414,0,2,f +4444,30552,71,1,f +4444,3069b,14,2,f +4444,3069b,182,2,f +4444,3070b,36,1,t +4444,3070b,36,2,f +4444,3176,14,2,f +4444,3179stk01,9999,1,t +4444,3245b,14,2,f +4444,3626bpr0314,14,1,f +4444,3666,14,1,f +4444,3666,15,1,f +4444,3710,72,2,f +4444,3795,14,2,f +4444,3821,14,1,f +4444,3822,14,1,f +4444,3829c01,1,1,f +4444,3833,4,1,f +4444,4083,15,2,f +4444,41532,0,1,f +4444,4176,40,1,f +4444,42445,71,1,f +4444,43337,40,1,f +4444,44300,72,1,f +4444,44302a,72,2,f +4444,4488,0,4,f +4444,4532,71,2,f +4444,4533,15,2,f +4444,4740,2,1,f +4444,47457,71,2,f +4444,50745,72,4,f +4444,51858,15,1,f +4444,52031,14,1,f +4444,52501,14,4,f +4444,54200,47,1,t +4444,54200,47,2,f +4444,54200,72,1,t +4444,54200,72,2,f +4444,55295,0,1,f +4444,55296,0,1,f +4444,55297,0,1,f +4444,55298,0,1,f +4444,55299,0,1,f +4444,55300,0,1,f +4444,6014b,71,4,f +4444,6015,0,4,f +4444,60475a,71,3,f +4444,6141,182,6,f +4444,6141,182,1,t +4444,6636,72,1,f +4444,6636,14,2,f +4444,970c00,1,1,f +4444,973pr1182c01,25,1,f +4446,3001,0,1,f +4446,3001,15,1,f +4446,3002,15,2,f +4446,3003,15,3,f +4446,3003,0,2,f +4446,3003pe2,15,1,f +4451,30374,36,2,f +4451,4085c,72,2,f +4451,4865b,72,1,f +4451,57899,0,1,f +4451,58247,0,1,f +4451,63868,71,2,f +4451,64567,80,1,f +4452,2357,0,2,f +4452,2449,0,4,f +4452,2453a,6,3,f +4452,3002,19,1,f +4452,3004,19,1,f +4452,3004,0,4,f +4452,3005,0,4,f +4452,3010,14,1,f +4452,3021,4,1,f +4452,3021,0,6,f +4452,3023,19,1,f +4452,3023,0,2,f +4452,3024,0,2,f +4452,3024,19,1,f +4452,3039,0,2,f +4452,3040b,14,2,f +4452,3040b,0,4,f +4452,3044b,0,2,f +4452,3070b,0,2,f +4452,3298,0,3,f +4452,3298,6,3,f +4452,3622,19,2,f +4452,3623,19,5,f +4452,3623,0,4,f +4452,3626b,4,2,f +4452,3626b,15,2,f +4452,3660,0,1,f +4452,3665,19,4,f +4452,3665,0,2,f +4452,3684,0,3,f +4452,3710,19,1,f +4452,3794a,0,2,f +4452,3794a,14,1,f +4452,3794a,19,2,f +4452,4070,19,2,f +4452,4274,71,4,f +4452,4286,19,1,f +4452,4286,0,3,f +4452,4286,6,5,f +4452,4287,19,1,f +4452,4460a,0,3,f +4452,6141,2,2,f +4453,3010,15,50,f +4454,2412b,70,13,f +4454,2420,15,2,f +4454,2431pr0017,14,1,f +4454,2449,288,2,f +4454,2449,72,8,f +4454,2454a,72,2,f +4454,2486,0,1,f +4454,2584,0,1,f +4454,2585,71,1,f +4454,2654,71,1,f +4454,2780,0,8,f +4454,2780,0,3,t +4454,2817,0,2,f +4454,2819,71,1,f +4454,2877,72,6,f +4454,298c02,4,2,f +4454,298c02,4,2,t +4454,3003,28,3,f +4454,3004,288,6,f +4454,3005,288,6,f +4454,3010,72,1,f +4454,3010,70,1,f +4454,3010,288,2,f +4454,3020,70,3,f +4454,3020,14,1,f +4454,3021,72,1,f +4454,3021,71,1,f +4454,3023,33,2,f +4454,30300,71,1,f +4454,3033,72,2,f +4454,3035,72,1,f +4454,3036,72,2,f +4454,30367b,4,1,f +4454,3037,71,2,f +4454,3039,71,1,f +4454,30407,0,2,f +4454,3040b,288,2,f +4454,30414,0,1,f +4454,30562,72,4,f +4454,30565,72,4,f +4454,3062b,33,1,f +4454,32000,71,10,f +4454,32012,72,1,f +4454,32016,71,2,f +4454,32028,71,2,f +4454,32039,14,1,f +4454,32062,4,12,f +4454,32062,4,1,t +4454,32064a,72,2,f +4454,32073,71,1,f +4454,32123b,14,1,f +4454,32123b,14,1,t +4454,32269,0,2,f +4454,32449,71,2,f +4454,32530,4,1,f +4454,3298,72,1,f +4454,3307,288,1,f +4454,3623,71,2,f +4454,3623,70,2,f +4454,3666,71,9,f +4454,3673,71,1,f +4454,3673,71,1,t +4454,3703,72,2,f +4454,3710,14,13,f +4454,3710,15,4,f +4454,3713,4,4,f +4454,3713,4,1,t +4454,3794a,71,6,f +4454,3795,14,2,f +4454,3795,15,1,f +4454,3832,14,1,f +4454,3832,72,1,f +4454,3894,71,1,f +4454,3937,14,1,f +4454,3938,14,1,f +4454,3941,4,2,f +4454,3941,71,12,f +4454,4019,71,3,f +4454,4032a,70,4,f +4454,4081b,15,2,f +4454,4150,0,1,f +4454,4151b,71,2,f +4454,41530,71,1,f +4454,41539,72,4,f +4454,41879a,1,2,f +4454,4274,1,4,f +4454,4274,1,1,t +4454,4287,288,4,f +4454,43093,1,4,f +4454,43337,71,6,f +4454,44301a,14,4,f +4454,44302a,0,2,f +4454,44569,72,8,f +4454,44728,71,1,f +4454,4519,71,3,f +4454,4599b,0,1,f +4454,4865a,71,4,f +4454,4872,40,1,f +4454,50950,14,2,f +4454,52031,288,2,f +4454,53992,0,1,f +4454,55013,72,2,f +4454,56145,71,2,f +4454,56823c50,0,1,f +4454,57503,334,1,f +4454,57504,334,1,f +4454,57505,334,1,f +4454,57506,334,1,f +4454,58827,72,12,f +4454,59426,72,1,f +4454,59900,182,2,f +4454,60594,15,2,f +4454,6091,288,2,f +4454,6091,14,6,f +4454,6141,4,2,t +4454,6141,0,1,f +4454,6141,70,10,f +4454,6141,70,2,t +4454,6141,4,2,f +4454,6141,0,1,t +4454,61485,0,1,f +4454,6180,14,2,f +4454,62462,320,2,f +4454,63864,14,2,f +4454,64448,72,4,f +4454,64449,288,2,f +4454,64644,0,1,f +4454,6541,71,2,f +4454,6587,28,1,f +4454,6636,72,1,f +4454,85543,15,1,f +4454,85959pat0001,36,2,f +4454,85984,0,4,f +4454,87081,0,1,f +4454,87544,71,2,f +4454,87769pr0002,27,1,f +4454,87769pr0003,27,1,f +4454,89993,86,1,f +4454,89994pr0003,78,1,f +4454,90187c01pr0002,26,1,f +4454,90190,26,1,f +4454,90202,0,1,f +4454,90203,26,1,f +4454,91347,0,4,f +4454,95120,0,8,f +4455,13809pr0001,15,1,f +4455,30222,143,1,f +4455,88646,0,1,f +4455,970c00pr0526,15,1,f +4455,973pr2408c01,15,1,f +4456,3001a,15,10,f +4456,3001a,4,10,f +4456,3001a,0,8,f +4456,3001a,14,10,f +4456,3001a,1,10,f +4456,3001a,47,2,f +4456,3002a,15,2,f +4456,3002a,14,2,f +4456,3002a,1,2,f +4456,3002a,4,2,f +4456,3003,0,4,f +4456,3003,1,4,f +4456,3003,47,2,f +4456,3003,15,4,f +4456,3003,14,4,f +4456,3003,4,4,f +4456,3004,15,4,f +4456,3004,4,4,f +4456,3004,0,2,f +4456,3004,14,4,f +4456,3004,1,4,f +4456,3007,4,2,f +4456,3008,15,2,f +4456,3008,1,2,f +4456,3009,14,2,f +4456,3009,15,2,f +4456,3010,15,4,f +4456,3021,0,2,f +4456,3033,4,1,f +4456,3034,15,2,f +4456,3035,1,1,f +4456,3039,0,4,f +4456,3081cc01,4,3,f +4456,3137c01,0,4,f +4456,3297,4,10,f +4456,3298,4,5,f +4456,3299,4,2,f +4456,3307,15,2,f +4456,3471,2,2,f +4456,3579,4,2,f +4456,3581,4,6,f +4456,3582,1,6,f +4456,3612,1,2,f +4456,3612,0,2,f +4456,3613,0,2,f +4456,3613,1,2,f +4456,3614a,14,4,f +4456,3641,0,8,f +4456,3660,0,4,f +4456,453cc01,4,2,f +4456,685px2,14,1,f +4456,685px4,14,1,f +4456,700ed2,2,1,f +4456,792c03,0,1,f +4456,792c03,1,1,f +4456,7930,1,2,f +4456,x196,0,1,f +4456,x197,6,1,f +4456,x197bun,7,1,f +4457,3002,4,1,f +4457,3004,4,5,f +4457,3020,0,1,f +4457,4150pr0001,15,1,f +4457,52107,0,1,f +4457,6636,72,2,f +4458,14226c11,0,3,f +4458,2335,1,1,f +4458,2335,15,3,f +4458,2335,0,1,f +4458,2335pr02,15,1,f +4458,2412b,1,1,f +4458,2412b,72,1,f +4458,2412b,80,13,f +4458,2412b,0,3,f +4458,2420,72,6,f +4458,2420,15,6,f +4458,2420,14,2,f +4458,2431,4,2,f +4458,2431,1,3,f +4458,2431,15,5,f +4458,2431,72,1,f +4458,2431,0,4,f +4458,2431,27,4,f +4458,2432,4,2,f +4458,2432,1,2,f +4458,2436,4,2,f +4458,2436,15,4,f +4458,2436,0,6,f +4458,2436,14,1,f +4458,2436,1,4,f +4458,2445,1,4,f +4458,2453a,15,2,f +4458,2465,15,8,f +4458,2540,72,2,f +4458,2540,0,1,f +4458,2555,72,2,f +4458,2571,41,8,f +4458,2780,0,1,t +4458,2780,0,4,f +4458,2825,71,1,f +4458,3001,15,6,f +4458,3001,4,2,f +4458,3002,72,1,f +4458,3002,0,1,f +4458,3002,15,15,f +4458,3002,1,6,f +4458,30027b,15,2,f +4458,30027b,71,3,f +4458,30028,0,5,f +4458,3003,15,4,f +4458,30031,72,2,f +4458,3004,0,1,f +4458,3004,15,11,f +4458,3005,15,1,f +4458,3007,15,1,f +4458,3008,15,3,f +4458,3008,1,3,f +4458,3010,15,2,f +4458,3010,0,2,f +4458,3010,14,2,f +4458,30162,72,2,f +4458,30179,0,1,f +4458,3020,0,6,f +4458,3020,72,6,f +4458,3020,1,1,f +4458,3020,15,9,f +4458,3020,25,2,f +4458,3020,4,3,f +4458,3021,1,12,f +4458,3021,0,15,f +4458,3021,15,20,f +4458,3021,4,2,f +4458,3021,72,1,f +4458,3022,72,3,f +4458,3022,0,5,f +4458,3022,1,7,f +4458,3022,15,5,f +4458,3022,4,1,f +4458,3023,25,1,f +4458,3023,1,7,f +4458,3023,0,8,f +4458,3023,36,3,f +4458,3023,72,5,f +4458,3023,15,22,f +4458,3023,4,2,f +4458,3023,14,1,f +4458,3023,27,3,f +4458,3024,15,12,f +4458,3024,4,2,f +4458,3024,14,4,f +4458,3024,36,4,f +4458,3024,1,2,f +4458,3027,72,2,f +4458,3028,15,4,f +4458,3031,1,1,f +4458,3031,72,1,f +4458,3031,14,1,f +4458,3031,0,3,f +4458,3031,15,3,f +4458,3031,4,1,f +4458,3031,27,2,f +4458,3032,15,2,f +4458,3032,1,1,f +4458,3034,15,3,f +4458,30350b,0,1,f +4458,3037,15,1,f +4458,30383,72,2,f +4458,30414,15,4,f +4458,30553,72,2,f +4458,30586,15,10,f +4458,3062b,4,1,f +4458,3062b,1,4,f +4458,3062b,14,2,f +4458,3068b,15,8,f +4458,3068b,4,2,f +4458,3068b,0,5,f +4458,3068b,1,2,f +4458,3069b,15,9,f +4458,3069b,0,4,f +4458,3069b,72,3,f +4458,3069b,27,1,f +4458,3069b,1,1,f +4458,3069b,4,3,f +4458,3070b,72,1,t +4458,3070b,46,2,f +4458,3070b,1,1,t +4458,3070b,72,2,f +4458,3070b,15,1,t +4458,3070b,46,1,t +4458,3070b,15,1,f +4458,3070b,1,2,f +4458,3139,0,2,f +4458,32000,15,5,f +4458,32001,0,2,f +4458,32028,0,1,f +4458,32028,25,1,f +4458,32028,15,8,f +4458,32039,1,1,f +4458,32062,4,1,f +4458,32064b,72,2,f +4458,32073,71,1,f +4458,32123b,71,1,t +4458,32123b,71,4,f +4458,3245b,15,11,f +4458,32523,0,2,f +4458,32523,72,2,f +4458,32526,72,1,f +4458,33243,15,15,f +4458,3460,15,15,f +4458,3460,1,3,f +4458,3622,15,13,f +4458,3622,1,4,f +4458,3623,15,24,f +4458,3623,0,1,f +4458,3623,14,2,f +4458,3623,72,3,f +4458,3623,1,5,f +4458,3660,15,2,f +4458,3666,1,2,f +4458,3679,71,2,f +4458,3680,1,2,f +4458,3684,15,2,f +4458,3701,0,2,f +4458,3710,1,2,f +4458,3710,14,2,f +4458,3710,27,1,f +4458,3710,15,14,f +4458,3710,4,3,f +4458,3710,0,4,f +4458,3713,71,1,f +4458,3713,71,1,t +4458,3737,0,1,f +4458,3738,0,1,f +4458,3788,1,1,f +4458,3788,15,2,f +4458,3788,4,2,f +4458,3788,0,1,f +4458,3788,14,2,f +4458,3794a,72,4,f +4458,3794a,0,7,f +4458,3794a,15,6,f +4458,3795,72,3,f +4458,3795,14,1,f +4458,3795,1,1,f +4458,3795,4,1,f +4458,3795,0,2,f +4458,3795,15,3,f +4458,3830,15,1,f +4458,3830,1,1,f +4458,3831,1,1,f +4458,3831,15,1,f +4458,3839b,15,2,f +4458,3937,1,2,f +4458,3957a,71,1,f +4458,3957a,15,2,f +4458,3957a,80,2,f +4458,3957a,0,1,f +4458,4032a,0,1,f +4458,4032a,72,2,f +4458,4070,0,2,f +4458,4070,15,8,f +4458,4070,72,2,f +4458,4070,1,4,f +4458,4085c,15,4,f +4458,4162,15,3,f +4458,41854,72,1,f +4458,41862,0,2,f +4458,44674,1,1,f +4458,44674,0,2,f +4458,44675,0,1,f +4458,44728,0,1,f +4458,44728,15,18,f +4458,4477,15,5,f +4458,4477,1,6,f +4458,4519,71,1,f +4458,45677,0,1,f +4458,45677,72,1,f +4458,4599a,71,4,f +4458,4599a,0,6,f +4458,4623,15,2,f +4458,4624,71,2,f +4458,48336,0,3,f +4458,48336,15,2,f +4458,50943,80,2,f +4458,50944pr0001,0,43,f +4458,50946p01,0,1,f +4458,50947,72,4,f +4458,50947,15,2,f +4458,50949,0,1,f +4458,50949,1,1,f +4458,50950,15,7,f +4458,50951,0,43,f +4458,51595,72,2,f +4458,54200,4,2,f +4458,54200,0,12,f +4458,54200,47,2,f +4458,54200,14,4,f +4458,54200,1,4,f +4458,54200,15,10,f +4458,54200,27,2,f +4458,54200,40,2,t +4458,54200,72,6,f +4458,54200,4,1,t +4458,54200,1,1,t +4458,54200,72,2,t +4458,54200,40,10,f +4458,54200,182,2,f +4458,54200,47,1,t +4458,54200,27,1,t +4458,54200,0,3,t +4458,54200,33,1,t +4458,54200,14,1,t +4458,54200,25,1,t +4458,54200,33,1,f +4458,54200,36,1,t +4458,54200,182,1,t +4458,54200,36,1,f +4458,54200,25,2,f +4458,54200,15,3,t +4458,6014b,71,1,f +4458,6015,0,1,f +4458,6019,72,1,f +4458,60470a,15,2,f +4458,60470a,0,3,f +4458,6081,15,1,f +4458,6091,72,5,f +4458,6111,15,2,f +4458,6112,15,3,f +4458,6134,1,2,f +4458,6141,1,1,t +4458,6141,36,1,f +4458,6141,80,3,t +4458,6141,33,1,f +4458,6141,0,1,t +4458,6141,0,1,f +4458,6141,47,2,f +4458,6141,80,16,f +4458,6141,36,1,t +4458,6141,47,1,t +4458,6141,1,4,f +4458,6141,33,1,t +4458,6157,15,4,f +4458,6157,72,2,f +4458,6157,0,14,f +4458,6178,15,3,f +4458,6179,15,2,f +4458,6180,15,3,f +4458,6231,0,6,f +4458,63965,15,1,f +4458,6558,1,3,f +4458,6632,0,4,f +4458,76041c02,0,1,f +4458,88930,0,2,f +4459,3002a,4,1,f +4459,3004,47,2,f +4459,3010p30,14,2,f +4459,3010pb035u,14,1,f +4459,3020,4,1,f +4459,3020,0,2,f +4459,3022,4,2,f +4459,3023,47,1,f +4459,3023,4,1,f +4459,3023,14,2,f +4459,3030,14,1,f +4459,3034,4,1,f +4459,3037,47,1,f +4459,3039,47,1,f +4459,3040a,0,2,f +4459,3062a,14,2,f +4459,3068a,0,1,f +4459,3137c01,0,2,f +4459,3137c01,4,1,f +4459,3137c02,4,1,f +4459,3139,0,8,f +4459,3183b,14,1,f +4459,7b,0,2,f +4459,817c01,1,1,f +4460,11211,71,2,f +4460,11213,71,1,f +4460,11299,15,1,f +4460,15118,15,1,f +4460,16542,14,1,f +4460,16542,14,1,t +4460,2412b,72,5,f +4460,2431,0,1,f +4460,2431,72,1,f +4460,2432,1,2,f +4460,2444,0,2,f +4460,2447,40,1,f +4460,2447,40,1,t +4460,2454a,72,2,f +4460,2465,72,2,f +4460,2489,308,1,f +4460,2584,0,1,f +4460,2585,71,1,f +4460,2654,71,2,f +4460,3001,70,1,f +4460,3003,19,1,f +4460,3004,71,2,f +4460,3004,4,6,f +4460,3005,71,3,f +4460,3007,4,2,f +4460,3009,72,6,f +4460,3010,71,4,f +4460,30137,70,14,f +4460,30194,72,1,f +4460,3020,0,5,f +4460,3022,71,2,f +4460,3023,4,11,f +4460,3023,33,5,f +4460,3023,46,1,f +4460,30237b,4,4,f +4460,3027,0,1,f +4460,3031,15,1,f +4460,30374,14,2,f +4460,30383,71,1,f +4460,3039,0,2,f +4460,3039,4,1,f +4460,3040b,0,4,f +4460,30552,72,1,f +4460,3062b,14,1,f +4460,3068b,14,1,f +4460,3070b,70,1,t +4460,3070b,70,10,f +4460,32028,71,4,f +4460,32123b,14,2,f +4460,32123b,14,1,t +4460,32270,0,1,f +4460,32348,4,2,f +4460,3626bpr0893,14,1,f +4460,3626bpr0920,14,1,f +4460,3626cpr0754,14,1,f +4460,3665,4,8,f +4460,3666,15,1,f +4460,3710,71,1,f +4460,3710,4,5,f +4460,3713,4,1,t +4460,3713,4,2,f +4460,3737,0,1,f +4460,3795,15,3,f +4460,3795,72,1,f +4460,3821,4,1,f +4460,3822,4,1,f +4460,3829c01,1,1,f +4460,3832,72,1,f +4460,3834,320,3,f +4460,3835,0,1,f +4460,3836,70,1,f +4460,3838,14,1,f +4460,4085c,71,4,f +4460,4176,41,1,f +4460,42003,72,2,f +4460,4274,1,1,t +4460,4274,1,4,f +4460,4286,4,2,f +4460,43093,1,2,f +4460,44302a,72,2,f +4460,4445,4,5,f +4460,4488,71,4,f +4460,4599b,14,1,t +4460,4599b,14,1,f +4460,4740,2,1,f +4460,4865b,4,1,f +4460,50745,72,4,f +4460,50950,15,2,f +4460,52031,4,1,f +4460,52037,72,1,f +4460,54200,46,1,t +4460,54200,15,1,t +4460,54200,36,1,t +4460,54200,15,2,f +4460,54200,36,2,f +4460,54200,46,2,f +4460,59900,14,1,f +4460,6014b,15,4,f +4460,60479,15,2,f +4460,60581,41,1,f +4460,60594,0,2,f +4460,60596,0,1,f +4460,60603,47,2,f +4460,60616a,47,1,f +4460,6126b,182,2,f +4460,6126b,41,1,f +4460,61485,0,1,f +4460,6158,72,1,f +4460,6249,72,2,f +4460,63868,0,2,f +4460,6536,0,2,f +4460,6541,70,2,f +4460,6636,19,3,f +4460,6636,71,8,f +4460,85861,14,1,t +4460,85861,14,1,f +4460,85959pat0001,36,2,f +4460,87079,71,1,f +4460,87087,72,14,f +4460,87580,4,2,f +4460,87609,15,2,f +4460,87617,4,2,f +4460,87618,71,2,f +4460,87697,0,4,f +4460,87913,71,1,f +4460,88930,4,1,f +4460,92280,71,2,f +4460,92438,71,1,f +4460,92593,15,2,f +4460,92593,71,4,f +4460,92926,2,1,f +4460,970c00pr0408,0,3,f +4460,973pr2188c01,0,3,f +4460,98138,33,6,f +4460,98138,33,2,t +4460,99784,71,1,f +4462,132a,0,4,f +4462,242c01,4,4,f +4462,3001a,1,1,f +4462,3001a,47,1,f +4462,3001a,4,1,f +4462,3003,0,1,f +4462,3004,4,1,f +4462,3004,14,2,f +4462,3004p50,4,1,f +4462,3005,1,2,f +4462,3005,14,2,f +4462,3009,14,1,f +4462,3009,1,7,f +4462,3009,47,1,f +4462,3009p01,14,1,f +4462,3010,47,1,f +4462,3010,14,2,f +4462,3010,4,2,f +4462,3020,14,4,f +4462,3020,0,2,f +4462,3021,0,4,f +4462,3022,0,2,f +4462,3022,14,1,f +4462,3023,4,2,f +4462,3023,14,6,f +4462,3028,1,2,f +4462,3032,4,1,f +4462,3037,47,1,f +4462,3062a,0,3,f +4462,3062a,1,2,f +4462,3062a,4,3,f +4462,3062a,15,4,f +4462,3137c01,0,1,f +4462,3137c02,0,1,f +4462,3139,0,2,f +4462,3430c02,0,1,f +4462,7049b,0,1,f +4462,709,14,1,f +4462,711,14,1,f +4462,799c800,0,1,f +4462,7b,0,2,f +4462,801,14,1,f +4462,802,14,1,f +4462,804,0,1,f +4463,11090,72,2,f +4463,15082,0,2,f +4463,15208,0,1,f +4463,15392,72,1,t +4463,15392,72,1,f +4463,15706,0,2,f +4463,15712,0,2,f +4463,18986,47,1,f +4463,20105,0,1,f +4463,22385pr0034,36,1,f +4463,22385pr0044,35,1,f +4463,22385pr0045,47,1,f +4463,22409,0,1,f +4463,23861,148,4,f +4463,2540,71,1,f +4463,3004,4,1,f +4463,30115,2,2,f +4463,3021,0,2,f +4463,3022,25,1,f +4463,3023,14,1,f +4463,3023,182,1,f +4463,30381,0,1,f +4463,3626cpr1797,4,1,f +4463,3937,0,2,f +4463,4032a,72,1,f +4463,4032a,4,2,f +4463,41769,4,1,f +4463,41770,4,1,f +4463,47456,0,1,f +4463,48729b,0,1,t +4463,48729b,0,1,f +4463,6134,71,2,f +4463,6141,182,4,f +4463,6141,182,1,t +4463,61780,72,1,f +4463,64567,0,1,t +4463,64567,0,2,f +4463,64727,4,2,f +4463,64867,182,1,f +4463,75937,0,1,f +4463,85984,4,2,f +4463,87580,320,4,f +4463,87994,0,1,f +4463,87994,0,1,t +4463,88072,4,2,f +4463,970c00pr0946,4,1,f +4463,973pr3213c01,4,1,f +4463,98313,0,4,f +4463,98313,320,1,f +4464,164c01,0,1,f +4464,185c01,0,1,f +4464,3004,15,3,f +4464,3008,15,2,f +4464,3010,15,2,f +4464,3010,47,2,f +4464,3020,15,1,f +4464,3021,15,4,f +4464,3023,15,6,f +4464,3024,15,2,f +4464,3024,1,2,f +4464,3032,15,1,f +4464,3038,47,4,f +4464,3040a,15,2,f +4464,3040a,47,2,f +4464,3063b,15,2,f +4464,3298,15,3,f +4464,3624,15,1,f +4464,3626apr0001,14,1,f +4464,3705,0,1,f +4464,3713,7,1,f +4464,709stk01,9999,1,t +4464,709stk02,9999,1,t +4464,970c00,0,1,f +4464,973c18,0,1,f +4464,997c01,0,1,f +4464,x149,4,1,f +4469,3626bpr0731,14,1,f +4469,88646,0,1,f +4469,93219pr0001,4,1,f +4469,93220pr0001,84,1,f +4469,970c00pr0183,15,1,f +4469,973pr1701c01,15,1,f +4470,11253,0,1,t +4470,11253,0,2,f +4470,11476,71,1,f +4470,11610,0,1,f +4470,15068,4,2,f +4470,2431,72,1,f +4470,3003,4,1,f +4470,3004,2,2,f +4470,3004,19,1,f +4470,3005,70,8,f +4470,3020,2,1,f +4470,3020,28,4,f +4470,3021,4,1,f +4470,3022,14,1,f +4470,3022,70,5,f +4470,3022,2,2,f +4470,3022,4,1,f +4470,3022,27,1,f +4470,3023,14,2,f +4470,3023,28,4,f +4470,3023,2,3,f +4470,3023,15,4,f +4470,3023,4,7,f +4470,3024,27,1,t +4470,3024,27,6,f +4470,3024,15,1,t +4470,3024,4,8,f +4470,3024,15,10,f +4470,3024,4,1,t +4470,3034,28,2,f +4470,3039,2,2,f +4470,3062b,71,4,f +4470,3062b,34,1,f +4470,3069b,1,1,f +4470,3069b,15,2,f +4470,3069b,4,3,f +4470,3070b,19,1,f +4470,3070b,2,1,f +4470,3070b,19,1,t +4470,3070b,2,1,t +4470,32028,15,2,f +4470,3460,70,2,f +4470,3623,4,2,f +4470,3623,2,1,f +4470,3623,15,2,f +4470,3679,71,2,f +4470,3680,15,2,f +4470,3700,19,2,f +4470,3710,28,4,f +4470,3710,2,1,f +4470,3710,70,12,f +4470,3835,0,1,f +4470,4032a,19,2,f +4470,4070,2,4,f +4470,4085c,71,2,f +4470,4274,71,1,t +4470,4274,71,2,f +4470,44728,70,1,f +4470,4522,0,1,f +4470,54200,27,2,f +4470,54200,19,4,f +4470,54200,4,1,t +4470,54200,15,1,t +4470,54200,27,1,t +4470,54200,19,1,t +4470,54200,4,8,f +4470,54200,15,2,f +4470,54200,47,1,f +4470,54200,47,1,t +4470,59900,70,12,f +4470,60897,19,4,f +4470,6091,14,2,f +4470,6141,297,1,t +4470,6141,4,1,t +4470,6141,1,1,t +4470,6141,19,2,f +4470,6141,14,1,f +4470,6141,2,1,t +4470,6141,4,1,f +4470,6141,14,1,t +4470,6141,297,28,f +4470,6141,1,1,f +4470,6141,19,1,t +4470,6141,2,1,f +4470,73983,4,2,f +4470,73983,15,2,f +4470,75904,71,1,f +4470,85984,4,2,f +4470,87087,19,4,f +4470,93273,2,1,f +4470,93551pr0001,84,1,f +4470,93552pr0001,70,1,t +4470,93552pr0001,70,1,f +4470,95343,4,1,f +4470,95344,297,1,t +4470,95344,297,1,f +4470,98138,297,4,f +4470,98138,297,1,t +4470,98138,19,1,t +4470,98138,19,2,f +4470,98138pr0008,15,1,t +4470,98138pr0008,15,4,f +4470,99206,19,2,f +4471,2780,0,2,f +4471,32062,0,2,f +4471,32174,72,5,f +4471,32209,15,1,f +4471,32270,71,4,f +4471,3705,0,2,f +4471,3713,71,2,f +4471,4519,71,2,f +4471,47296,72,4,f +4471,47297,86,2,f +4471,47298,86,2,f +4471,47299,86,2,f +4471,47305,86,1,f +4471,47306,86,1,f +4471,47309,86,1,f +4471,47310,86,2,f +4471,47311,86,2,f +4471,47312,72,1,f +4471,47313,33,1,f +4471,47319,179,2,f +4471,49423,86,1,f +4471,49917,9999,1,t +4471,6558,0,2,f +4472,10129stk01,9999,1,t +4472,2357,7,2,f +4472,2357,15,4,f +4472,2412b,7,27,f +4472,2412b,14,3,f +4472,2412b,15,2,f +4472,2412b,8,13,f +4472,2412b,0,13,f +4472,2413,8,1,f +4472,2419,8,1,f +4472,2420,7,8,f +4472,2420,15,14,f +4472,2431,0,6,f +4472,2431,8,21,f +4472,2431,15,3,f +4472,2445,7,2,f +4472,2456,8,4,f +4472,2456,0,3,f +4472,2456,15,2,f +4472,2458,14,4,f +4472,2460,7,3,f +4472,2516,0,1,f +4472,2536,7,4,f +4472,2555,8,10,f +4472,2639,15,2,f +4472,2654,8,8,f +4472,2695,7,4,f +4472,2730,0,2,f +4472,2780,0,1,t +4472,2780,0,16,f +4472,2877,8,45,f +4472,2877,15,6,f +4472,298c02,14,1,t +4472,298c02,14,4,f +4472,2994,7,4,f +4472,3001,0,1,f +4472,3001,7,2,f +4472,3001,8,2,f +4472,3002,7,4,f +4472,3003,14,2,f +4472,3003,8,2,f +4472,3003,15,2,f +4472,3004,14,2,f +4472,3004,15,6,f +4472,3004,7,12,f +4472,3004,0,13,f +4472,3005,8,6,f +4472,3005,15,8,f +4472,3005,14,4,f +4472,3005,7,12,f +4472,3005,0,20,f +4472,3006,0,3,f +4472,3006,1,1,f +4472,3006,7,2,f +4472,3007,7,1,f +4472,3008,7,2,f +4472,3008,15,2,f +4472,3008,14,1,f +4472,3009,8,2,f +4472,3009,0,4,f +4472,3009,7,3,f +4472,3010,0,6,f +4472,3010,8,6,f +4472,30145,1,1,f +4472,30155,8,4,f +4472,30162,8,4,f +4472,3020,7,17,f +4472,3020,15,4,f +4472,3020,25,1,f +4472,3020,8,10,f +4472,3020,0,3,f +4472,3021,7,6,f +4472,3021,8,12,f +4472,3021,25,2,f +4472,3021,0,2,f +4472,3021,15,8,f +4472,3022,7,2,f +4472,3022,0,1,f +4472,3023,8,9,f +4472,3023,7,8,f +4472,3023,14,12,f +4472,3023,15,14,f +4472,3023,0,12,f +4472,3024,8,5,f +4472,3024,0,5,f +4472,3024,15,14,f +4472,3024,7,8,f +4472,3028,7,10,f +4472,30283,8,2,f +4472,3029,7,4,f +4472,3029,15,2,f +4472,3029,0,2,f +4472,3030,7,2,f +4472,3030,15,2,f +4472,3031,0,2,f +4472,3032,15,2,f +4472,3032,7,3,f +4472,3032,8,3,f +4472,3033,7,3,f +4472,3034,15,5,f +4472,3034,0,3,f +4472,3034,7,2,f +4472,3035,15,3,f +4472,3035,7,4,f +4472,3035,8,2,f +4472,3035,0,1,f +4472,3036,7,4,f +4472,3036,15,3,f +4472,30363,25,4,f +4472,30363,15,13,f +4472,30364,8,12,f +4472,30365,8,12,f +4472,30374,8,4,f +4472,30383,8,3,f +4472,3039,0,2,f +4472,3039,8,1,f +4472,3039,15,2,f +4472,3040b,0,8,f +4472,3040b,15,14,f +4472,3040b,8,4,f +4472,30414,7,6,f +4472,30553,8,3,f +4472,3062b,15,2,f +4472,3062b,7,2,f +4472,3068b,15,7,f +4472,3068b,0,1,f +4472,3069b,7,6,f +4472,3069b,15,6,f +4472,3069bpr0086,7,4,f +4472,3070b,0,1,t +4472,3070b,15,12,f +4472,3070b,15,1,t +4472,3070b,0,7,f +4472,32000,8,8,f +4472,32000,15,1,f +4472,32007,8,2,f +4472,32054,0,1,f +4472,32064a,15,8,f +4472,32140,0,2,f +4472,32187,7,2,f +4472,32198,7,4,f +4472,32324,7,1,f +4472,32530,7,2,f +4472,3297,15,6,f +4472,3297,7,4,f +4472,3298,15,2,f +4472,3298,0,8,f +4472,3460,8,2,f +4472,3460,7,3,f +4472,3460,15,12,f +4472,3622,15,2,f +4472,3622,7,2,f +4472,3622,0,4,f +4472,3623,0,10,f +4472,3623,7,8,f +4472,3623,15,10,f +4472,3660,8,6,f +4472,3665,0,9,f +4472,3666,0,4,f +4472,3666,15,8,f +4472,3666,8,9,f +4472,3679,7,1,f +4472,3680,15,1,f +4472,3700,7,4,f +4472,3700,0,2,f +4472,3705,0,3,f +4472,3708,0,2,f +4472,3710,0,10,f +4472,3710,8,5,f +4472,3710,7,10,f +4472,3710,25,3,f +4472,3710,15,6,f +4472,3747a,7,15,f +4472,3747a,8,16,f +4472,3749,19,2,f +4472,3794a,0,8,f +4472,3794a,7,3,f +4472,3794a,15,6,f +4472,3795,8,1,f +4472,3795,15,3,f +4472,3795,7,1,f +4472,3823,40,4,f +4472,3832,7,10,f +4472,3832,0,1,f +4472,3832,15,3,f +4472,3894,1,7,f +4472,3895,0,2,f +4472,3933,7,7,f +4472,3933,15,7,f +4472,3934,15,7,f +4472,3934,7,7,f +4472,3937,15,11,f +4472,3939,8,1,f +4472,3958,15,2,f +4472,3958,8,4,f +4472,4032a,7,2,f +4472,4070,0,5,f +4472,4070,7,12,f +4472,4070,15,4,f +4472,4081b,8,4,f +4472,4081b,15,2,f +4472,4095,7,3,f +4472,4095,0,2,f +4472,4150,7,8,f +4472,4161,15,6,f +4472,4161,7,2,f +4472,4161,25,6,f +4472,4162,8,2,f +4472,4162,0,12,f +4472,4162,15,5,f +4472,41764,7,1,f +4472,41765,7,1,f +4472,41767,15,2,f +4472,41768,15,2,f +4472,41769,15,1,f +4472,41769,7,2,f +4472,41770,7,2,f +4472,41770,15,1,f +4472,4185,7,2,f +4472,42022,8,4,f +4472,4215b,7,2,f +4472,4266,7,4,f +4472,4274,1,1,t +4472,4274,1,32,f +4472,4286,15,14,f +4472,4286,25,4,f +4472,4286,7,8,f +4472,4286,0,4,f +4472,4287,7,2,f +4472,4315,15,2,f +4472,43337,8,2,f +4472,4349,8,2,f +4472,43710,15,1,f +4472,43711,15,1,f +4472,43722,15,1,f +4472,43722,8,1,f +4472,43723,15,1,f +4472,43723,8,1,f +4472,44294,7,4,f +4472,4445,15,1,f +4472,44568,15,1,f +4472,44568,7,3,f +4472,44570,7,5,f +4472,44570,40,1,f +4472,44728,8,6,f +4472,4474,40,2,f +4472,4477,15,2,f +4472,4479,0,1,f +4472,44822,7,2,f +4472,4589,0,2,f +4472,4589,8,22,f +4472,4623,14,1,f +4472,4733,0,1,f +4472,4735,8,4,f +4472,4740,0,2,f +4472,4864b,40,2,f +4472,4864b,7,18,f +4472,4865a,7,2,f +4472,6070,40,3,f +4472,6070,25,2,f +4472,6070,15,6,f +4472,6111,7,6,f +4472,6112,8,3,f +4472,6112,15,1,f +4472,6134,0,11,f +4472,6141,8,1,t +4472,6141,0,1,t +4472,6141,0,4,f +4472,6141,8,34,f +4472,6141,36,2,f +4472,6141,36,1,t +4472,6179,8,2,f +4472,6179,7,1,f +4472,6179,15,12,f +4472,6190,8,6,f +4472,6192,8,2,f +4472,6232,1,3,f +4472,6233,0,3,f +4472,6541,0,2,f +4472,6558,0,8,f +4472,6564,15,1,f +4472,6565,15,1,f +4472,6589,7,6,f +4472,6629,0,2,f +4472,6636,8,2,f +4472,6636,15,7,f +4472,75535,7,16,f +4472,758c01,7,2,f +4475,10b,2,1,f +4475,141ac96,15,1,f +4475,15,1,2,f +4475,15,15,1,f +4475,17,15,1,f +4475,17,1,2,f +4475,21,47,2,f +4475,242c01,4,4,f +4475,273,0,48,f +4475,3001a,14,4,f +4475,3001a,0,4,f +4475,3002a,14,4,f +4475,3002a,0,4,f +4475,3003,14,4,f +4475,3003,0,4,f +4475,3004,14,20,f +4475,3004,47,4,f +4475,3004,0,10,f +4475,3005,0,8,f +4475,3005,14,12,f +4475,3006,14,2,f +4475,3007,14,2,f +4475,3008,14,6,f +4475,3008,0,6,f +4475,3009,14,16,f +4475,3009,0,6,f +4475,3010,47,2,f +4475,3010,14,14,f +4475,3010,0,6,f +4475,3020,14,4,f +4475,3020,0,4,f +4475,3020,7,4,f +4475,3021,14,4,f +4475,3021,0,4,f +4475,3022,0,4,f +4475,3022,7,2,f +4475,3022,14,4,f +4475,3023,14,4,f +4475,3023,0,5,f +4475,3024,0,3,f +4475,3024,14,2,f +4475,3030,14,2,f +4475,3032,14,2,f +4475,3032,0,2,f +4475,3034,7,4,f +4475,3034,14,4,f +4475,3034,0,4,f +4475,3035,0,2,f +4475,3036,0,1,f +4475,3037,0,16,f +4475,3037,47,2,f +4475,3037,14,2,f +4475,3038,0,4,f +4475,3039,14,4,f +4475,3039,47,2,f +4475,3039,0,12,f +4475,3040a,0,4,f +4475,3041,0,4,f +4475,3042,0,2,f +4475,3043,0,4,f +4475,3044a,0,2,f +4475,3046a,0,4,f +4475,3049b,0,1,f +4475,3062a,14,2,f +4475,3062a,0,2,f +4475,3068b,7,2,f +4475,3081cc01,4,6,f +4475,3127,4,1,f +4475,3137c01,0,2,f +4475,3139,0,1,f +4475,3145,0,2,f +4475,3149c01,7,1,f +4475,3176,7,2,f +4475,3183a,4,1,f +4475,3184,4,1,f +4475,3228a,1,4,f +4475,3308,14,2,f +4475,3315,7,1,f +4475,3317,14,1,f +4475,3324c01,7,2,f +4475,3359,0,2,f +4475,3403c01,0,1,f +4475,3433,14,1,f +4475,3460,0,2,f +4475,3460,7,4,f +4475,3461,7,1,f +4475,3462,14,1,f +4475,3464,4,1,f +4475,3475a,7,2,f +4475,3480,7,2,f +4475,3481,14,2,f +4475,3482,4,4,f +4475,3483,0,4,f +4475,3491,7,1,f +4475,3492c01,14,1,f +4475,3579,14,1,f +4475,3581,14,4,f +4475,3582,4,4,f +4475,3587,14,1,f +4475,3597,7,1,f +4475,3624,1,2,f +4475,3624,15,1,f +4475,3626a,14,3,f +4475,3633,4,4,f +4475,3634,0,4,f +4475,3639,4,1,f +4475,3640,4,1,f +4475,3641,0,4,f +4475,3660,14,8,f +4475,3660,0,6,f +4475,3707,79,2,f +4475,3708,79,1,f +4475,3709a,7,2,f +4475,453cc01,4,2,f +4475,468c03,0,1,f +4475,569,4,4,f +4475,586c01,14,1,f +4475,7039,4,4,f +4475,7049b,0,4,f +4475,7930,4,1,f +4475,8,7,1,f +4475,828,4,1,f +4475,rb00164,0,1,f +4475,rb00168,0,2,f +4475,rb00169,0,2,f +4475,x148,4,6,f +4475,x469b,14,1,f +4477,2357,15,2,f +4477,2357,4,4,f +4477,2362a,47,5,f +4477,2412b,0,4,f +4477,2412b,72,21,f +4477,2420,4,2,f +4477,2420,0,4,f +4477,2431,15,1,f +4477,2431,14,2,f +4477,2431,4,10,f +4477,2431,71,22,f +4477,2445,71,4,f +4477,2456,15,2,f +4477,2458,72,4,f +4477,2516,14,1,f +4477,2555,72,9,f +4477,2653,71,7,f +4477,2780,0,10,f +4477,2780,0,2,t +4477,2819,71,1,f +4477,2855,71,1,f +4477,2856,0,1,f +4477,298c02,15,4,f +4477,298c02,15,1,t +4477,3004,4,10,f +4477,3004,71,10,f +4477,3005,0,10,f +4477,3005,4,34,f +4477,3006,4,1,f +4477,3007,0,2,f +4477,3008,71,1,f +4477,3009,0,4,f +4477,3009,4,2,f +4477,3010,4,18,f +4477,3020,4,2,f +4477,3020,71,2,f +4477,3021,19,4,f +4477,3021,71,4,f +4477,3021,4,2,f +4477,3022,0,7,f +4477,3023,15,8,f +4477,3023,4,36,f +4477,3023,47,4,f +4477,3023,72,13,f +4477,3024,33,10,f +4477,3024,47,4,f +4477,3024,182,2,f +4477,3024,71,10,f +4477,3029,4,1,f +4477,3032,19,1,f +4477,3034,71,3,f +4477,3035,71,5,f +4477,30357,4,2,f +4477,3036,4,2,f +4477,3036,72,1,f +4477,3039,71,1,f +4477,30414,15,5,f +4477,30503,4,4,f +4477,3062b,72,8,f +4477,3062b,14,3,f +4477,3063b,4,4,f +4477,3069b,14,3,f +4477,3069b,4,9,f +4477,3069b,36,2,f +4477,3069b,33,6,f +4477,3069b,15,6,f +4477,3069bpr0101,71,1,f +4477,3070b,4,2,t +4477,3070b,4,12,f +4477,3070bpr0007,71,2,f +4477,3070bpr0007,71,1,t +4477,3176,0,1,f +4477,32018,0,4,f +4477,32028,0,16,f +4477,32039,0,3,f +4477,32054,71,2,f +4477,32062,4,3,f +4477,32073,71,2,f +4477,32123b,14,2,t +4477,32123b,14,6,f +4477,3460,72,7,f +4477,3460,4,8,f +4477,3622,0,2,f +4477,3622,4,2,f +4477,3623,19,2,f +4477,3623,0,6,f +4477,3623,4,8,f +4477,3623,71,9,f +4477,3660,4,8,f +4477,3665,4,4,f +4477,3666,19,1,f +4477,3666,71,10,f +4477,3678b,4,2,f +4477,3701,0,4,f +4477,3701,71,2,f +4477,3702,0,2,f +4477,3705,0,3,f +4477,3706,0,1,f +4477,3707,0,1,f +4477,3710,0,12,f +4477,3710,4,8,f +4477,3710,14,8,f +4477,3713,71,2,t +4477,3713,71,8,f +4477,3738,72,2,f +4477,3743,71,2,f +4477,3794b,71,2,f +4477,3795,19,1,f +4477,3795,4,2,f +4477,3795,0,2,f +4477,3832,72,2,f +4477,3832,4,8,f +4477,3895,71,2,f +4477,3937,72,1,f +4477,3941,0,1,f +4477,3957a,0,2,f +4477,3958,71,1,f +4477,40490,72,2,f +4477,4070,71,12,f +4477,4085c,4,4,f +4477,4085c,72,2,f +4477,4150,71,2,f +4477,4162,15,2,f +4477,4215b,47,2,f +4477,43093,1,2,f +4477,44301a,71,2,f +4477,44302a,0,2,f +4477,44309,0,4,f +4477,4477,71,8,f +4477,4510,71,2,f +4477,4532,4,2,f +4477,4533,15,2,f +4477,4589,80,1,f +4477,4589,71,2,f +4477,4599b,0,2,f +4477,4599b,14,2,f +4477,4599b,71,2,f +4477,47457,71,1,f +4477,47905,72,4,f +4477,48336,71,8,f +4477,48336,19,5,f +4477,52107,0,2,f +4477,53586,135,2,f +4477,54200,33,1,t +4477,54200,72,1,t +4477,54200,33,4,f +4477,54200,72,4,f +4477,54200,4,6,f +4477,54200,182,4,f +4477,54200,4,1,t +4477,54200,182,1,t +4477,55013,72,2,f +4477,56145,71,4,f +4477,59443,71,3,f +4477,6019,19,6,f +4477,6019,0,9,f +4477,60470a,0,2,f +4477,60479,0,3,f +4477,6091,15,4,f +4477,6112,4,2,f +4477,6134,71,1,f +4477,61409,72,1,f +4477,6141,71,12,f +4477,6141,46,1,t +4477,6141,4,2,f +4477,6141,15,4,f +4477,6141,46,1,f +4477,6141,71,2,t +4477,6141,4,1,t +4477,6141,15,1,t +4477,6141,1,1,t +4477,6141,1,2,f +4477,6231,71,8,f +4477,63965,72,2,f +4477,64644,0,1,f +4477,6536,71,2,f +4477,6558,1,2,f +4477,6628,0,2,f +4477,6636,4,2,f +4477,6636,0,2,f +4477,73983,4,4,f +4477,73983,0,2,f +4477,75c16,148,2,f +4478,30375,320,1,f +4478,30376,19,1,f +4478,30377,19,1,t +4478,30377,19,1,f +4478,30378,19,1,f +4478,59230,19,1,f +4478,59230,19,1,t +4479,2340,15,2,f +4479,2343,71,2,f +4479,2412b,25,2,f +4479,2412b,0,5,f +4479,2419,15,2,f +4479,2431,15,3,f +4479,2432,1,2,f +4479,2446,15,3,f +4479,2447,82,1,t +4479,2447,82,3,f +4479,2456,15,1,f +4479,2512,71,1,f +4479,2540,25,7,f +4479,2540,4,1,f +4479,2654,1,4,f +4479,2730,0,1,f +4479,2744,15,2,f +4479,2780,0,2,t +4479,2780,0,44,f +4479,2817,71,4,f +4479,2877,15,4,f +4479,298c02,15,2,t +4479,298c02,15,4,f +4479,30000,1,1,f +4479,3001,15,1,f +4479,3003,0,1,f +4479,3003,15,1,f +4479,3007,15,1,f +4479,3009,15,2,f +4479,30151a,42,1,f +4479,30153,42,5,f +4479,30157,71,2,f +4479,30194,72,1,f +4479,3020,0,2,f +4479,3020,15,1,f +4479,3020,4,2,f +4479,3021,0,2,f +4479,3021,15,4,f +4479,3022,25,4,f +4479,30228,72,1,f +4479,3023,15,2,f +4479,3023,25,10,f +4479,3027,0,1,f +4479,3028,15,1,f +4479,3033,15,1,f +4479,3034,72,3,f +4479,3034,15,1,f +4479,3035,0,1,f +4479,30350b,0,2,f +4479,30374,15,1,f +4479,3040b,25,2,f +4479,30414,71,1,f +4479,3048b,0,3,f +4479,30526,1,1,f +4479,30552,0,2,f +4479,30553,72,4,f +4479,30554b,0,4,f +4479,3062b,1,2,f +4479,3062b,0,2,f +4479,3062b,42,3,f +4479,3069b,0,2,f +4479,32013,15,1,f +4479,32018,0,5,f +4479,32054,4,6,f +4479,32062,4,2,f +4479,32073,71,1,f +4479,32123b,71,10,f +4479,32123b,71,1,t +4479,32140,25,8,f +4479,32269,19,2,f +4479,32270,0,2,f +4479,32524,15,2,f +4479,32526,71,2,f +4479,32531,71,2,f +4479,32532,15,1,f +4479,3623,0,4,f +4479,3626bpr0233,14,1,f +4479,3626bpr0325,14,1,f +4479,3626bpr0500,14,1,f +4479,3660,15,2,f +4479,3684b,15,2,f +4479,3700,15,5,f +4479,3701,15,3,f +4479,3703,15,4,f +4479,3705,0,2,f +4479,3709,15,1,f +4479,3710,27,2,f +4479,3710,15,3,f +4479,3710,25,3,f +4479,3713,71,1,t +4479,3713,71,4,f +4479,3747b,15,1,f +4479,3895,72,2,f +4479,3937,0,3,f +4479,3938,15,1,f +4479,3938,4,1,f +4479,3958,15,2,f +4479,3959,71,2,f +4479,3962b,0,1,f +4479,40244,0,2,f +4479,4032a,0,2,f +4479,4032a,15,2,f +4479,40379,27,2,f +4479,4070,4,2,f +4479,4081b,72,4,f +4479,4085c,15,2,f +4479,4150,0,3,f +4479,41532,0,2,f +4479,4162,15,3,f +4479,41669,25,2,f +4479,41747,15,1,f +4479,41748,15,1,f +4479,41751,182,1,f +4479,41883,182,1,f +4479,42022,15,2,f +4479,4274,1,2,t +4479,4274,1,16,f +4479,4282,0,1,f +4479,4287,15,2,f +4479,43093,1,13,f +4479,4345b,42,1,f +4479,4346,47,1,f +4479,43722,0,1,f +4479,43723,0,1,f +4479,44567a,0,2,f +4479,44661,0,1,f +4479,44661,15,1,f +4479,44676,15,2,f +4479,44728,0,2,f +4479,4477,1,1,f +4479,4497,0,4,f +4479,4497,0,1,t +4479,4588,72,2,f +4479,4589,33,9,f +4479,4589,42,4,f +4479,4589,0,3,f +4479,4599a,0,2,f +4479,46667,0,2,f +4479,4697b,71,1,t +4479,4697b,71,1,f +4479,4735,0,2,f +4479,4740,42,3,f +4479,4740,15,1,f +4479,47973,72,1,f +4479,48336,0,2,f +4479,48336,15,5,f +4479,4865a,47,1,f +4479,48729a,0,3,t +4479,48729a,0,6,f +4479,50950,0,2,f +4479,50955,0,1,f +4479,50956,0,1,f +4479,53989,135,8,f +4479,54096,15,1,f +4479,54200,182,1,f +4479,54200,15,2,t +4479,54200,182,1,t +4479,54200,15,6,f +4479,54383,0,2,f +4479,54384,0,2,f +4479,55013,72,2,f +4479,55615,71,2,f +4479,57518,0,70,f +4479,57519,25,6,f +4479,57539,25,1,f +4479,57585,71,2,f +4479,57702,15,6,f +4479,57909a,72,1,f +4479,57910,72,1,f +4479,58844pat0001,34,2,f +4479,58845,34,2,f +4479,59426,72,4,f +4479,6019,15,2,f +4479,6019,71,2,f +4479,60208,15,2,f +4479,60470a,0,3,f +4479,60471,71,3,f +4479,60478,15,2,f +4479,6091,0,2,f +4479,61072,135,2,f +4479,6118,25,4,f +4479,61185c01,72,1,f +4479,6134,0,1,f +4479,61403,71,2,f +4479,6141,25,1,t +4479,6141,0,2,t +4479,6141,0,9,f +4479,6141,25,2,f +4479,6141,33,4,f +4479,6141,33,2,t +4479,61678,15,4,f +4479,61680,71,3,f +4479,6222,15,1,f +4479,62462,15,4,f +4479,62723pat0001,34,1,f +4479,62724,34,4,f +4479,6541,15,2,f +4479,6553,0,7,f +4479,6564,15,1,f +4479,6565,15,1,f +4479,6636,0,1,f +4479,88930,15,1,f +4479,970x194,15,3,f +4479,973pr1317c01,15,3,f +4480,12825,14,2,f +4480,2412b,14,1,f +4480,2412b,0,2,f +4480,2431,0,1,f +4480,2446pr0009,4,1,f +4480,2540,14,3,f +4480,2780,0,1,t +4480,2780,0,6,f +4480,3010,14,2,f +4480,3020,14,2,f +4480,3023,72,4,f +4480,3031,0,1,f +4480,30374,14,1,f +4480,3039,72,1,f +4480,3040b,14,2,f +4480,30414,14,1,f +4480,32034,71,1,f +4480,32062,4,1,f +4480,32291,4,1,f +4480,32526,0,2,f +4480,3626bpr0642,14,1,f +4480,3659,0,1,f +4480,3666,0,2,f +4480,3702,14,2,f +4480,3705,0,1,f +4480,3708,0,2,f +4480,3713,4,1,t +4480,3713,4,4,f +4480,3749,19,3,f +4480,4085c,72,2,f +4480,4274,1,1,f +4480,4274,1,1,t +4480,54200,40,2,f +4480,54200,40,1,t +4480,56145,14,4,f +4480,60470a,0,1,f +4480,6141,47,1,t +4480,6141,47,2,f +4480,61481,0,4,f +4480,6191,0,1,f +4480,62462,14,4,f +4480,64451,0,2,f +4480,6558,1,2,f +4480,87083,72,1,f +4480,88930,14,1,f +4480,90258,72,2,f +4480,92907,71,1,f +4480,93273,14,3,f +4480,970x026,14,1,f +4480,973pr1940c01,14,1,f +4480,99406,9999,1,t +4481,16542,7,1,f +4481,2352,4,1,f +4481,2433,14,2,f +4481,2447,41,1,f +4481,2447,41,1,t +4481,2873,7,2,f +4481,298c02,15,1,t +4481,298c02,15,1,f +4481,3010p70,4,2,f +4481,30277,0,2,f +4481,3032,15,2,f +4481,3037pr0005,4,1,f +4481,3040b,33,4,f +4481,3062b,14,3,f +4481,3183c,15,1,f +4481,3184,15,1,f +4481,3403,4,1,f +4481,3404,4,1,f +4481,3626bp05,14,1,f +4481,3710,15,2,f +4481,3823,41,1,f +4481,3829c01,1,1,f +4481,3834,15,1,f +4481,3835,7,1,f +4481,3835,7,1,t +4481,3838,14,1,f +4481,3901,0,1,f +4481,4083,15,1,f +4481,4132,4,1,f +4481,4208,0,1,f +4481,4209,7,2,f +4481,4209,4,1,f +4481,4315,4,2,f +4481,4531,0,2,f +4481,4589,7,2,f +4481,4599a,14,1,f +4481,6014a,15,8,f +4481,6015,0,8,f +4481,6158,0,1,f +4481,970c00,0,1,f +4481,973px121c01,0,1,f +4482,2423,2,2,f +4482,2450,4,2,f +4482,2456,14,1,f +4482,3001,4,1,f +4482,3001,15,1,f +4482,3001,14,1,f +4482,3003,14,4,f +4482,3003,4,2,f +4482,3003,15,2,f +4482,3004,14,6,f +4482,3004,4,2,f +4482,3004,15,6,f +4482,3004,1,4,f +4482,3005,4,2,f +4482,3005,1,2,f +4482,3005,15,4,f +4482,3005,14,4,f +4482,3009,4,2,f +4482,3009,14,1,f +4482,3010,4,2,f +4482,3010,15,2,f +4482,3020,4,2,f +4482,3032,1,1,f +4482,3034,1,1,f +4482,3040b,14,6,f +4482,3081cc01,4,2,f +4482,3297,14,2,f +4482,3298,14,2,f +4482,3299,14,1,f +4482,3300,14,1,f +4482,3626bpr0001,14,1,f +4482,3665,14,2,f +4482,3679,7,1,f +4482,3680,14,1,f +4482,3741,2,1,f +4482,3742,1,3,f +4482,3742,1,1,t +4482,3795,1,2,f +4482,3901,0,1,f +4482,3957a,14,1,f +4482,4495b,4,1,f +4482,6215,4,4,f +4482,970c00,7,1,f +4482,973c01,1,1,f +4486,11153,15,6,f +4486,11153,27,2,f +4486,11203,72,4,f +4486,11211,4,2,f +4486,11211,71,11,f +4486,11260,10,1,f +4486,11458,72,4,f +4486,11592pr0001,10,1,f +4486,11594pr0001,326,1,f +4486,11598,52,2,f +4486,12825,15,2,f +4486,13608,179,1,f +4486,15207,288,2,f +4486,15207,15,2,f +4486,2412b,0,2,f +4486,2412b,297,2,f +4486,2412b,15,5,f +4486,2419,15,1,f +4486,2420,15,4,f +4486,2420,0,2,f +4486,2431,10,7,f +4486,2432,15,4,f +4486,2447,47,1,t +4486,2447,47,1,f +4486,2450,15,2,f +4486,2515,72,4,f +4486,2569,0,1,t +4486,2569,0,1,f +4486,2654,19,3,f +4486,2780,0,10,f +4486,2780,0,2,t +4486,2877,15,2,f +4486,298c02,15,2,f +4486,298c02,15,1,t +4486,30000,1,6,f +4486,3001,14,1,f +4486,3003,0,1,f +4486,3004,288,6,f +4486,30162,72,2,f +4486,3020,28,1,f +4486,3020,288,18,f +4486,3021,71,1,f +4486,3022,72,7,f +4486,3022,27,2,f +4486,3022,15,1,f +4486,3022,71,9,f +4486,3023,15,8,f +4486,3023,28,8,f +4486,3023,36,2,f +4486,3028,72,1,f +4486,3031,72,1,f +4486,3033,288,1,f +4486,3034,72,2,f +4486,30350b,41,1,f +4486,30367b,27,3,f +4486,30377,15,1,t +4486,30377,15,2,f +4486,3039pr0002,15,1,f +4486,3040b,19,2,f +4486,30414,15,4,f +4486,30602,15,1,f +4486,32062,4,4,f +4486,32064b,15,2,f +4486,32073,71,2,f +4486,32187,71,2,f +4486,32530,72,4,f +4486,32532,0,2,f +4486,3298,15,2,f +4486,3623,72,8,f +4486,3626cpr1155,14,1,f +4486,3660,0,1,f +4486,3660,15,2,f +4486,3666,288,5,f +4486,3700,72,4,f +4486,3702,0,1,f +4486,3703,0,2,f +4486,3710,320,2,f +4486,3710,0,2,f +4486,3713,71,1,t +4486,3713,71,2,f +4486,3794b,72,1,f +4486,3832,15,4,f +4486,3937,72,4,f +4486,3938,15,4,f +4486,3941,0,2,f +4486,3958,71,1,f +4486,3960,15,4,f +4486,4032a,4,8,f +4486,4081b,72,2,f +4486,4150,0,2,f +4486,4162,15,1,f +4486,41747,15,2,f +4486,41748,15,2,f +4486,41769,288,2,f +4486,41770,288,2,f +4486,41862,15,1,f +4486,42060,15,1,f +4486,42061,15,1,f +4486,42610,71,2,f +4486,4360,0,1,f +4486,44126,15,2,f +4486,44567a,72,2,f +4486,4460b,15,2,f +4486,44728,72,2,f +4486,44728,15,2,f +4486,4477,15,3,f +4486,4589,320,2,f +4486,4598,15,1,f +4486,4697b,71,2,f +4486,4697b,71,2,t +4486,4740,33,1,f +4486,47720,0,2,f +4486,47759,15,2,f +4486,47998,15,1,f +4486,48336,0,3,f +4486,48336,297,1,f +4486,4865a,41,1,f +4486,4865b,0,2,f +4486,4871,15,1,f +4486,50943,72,1,f +4486,54200,10,1,t +4486,54200,288,2,t +4486,54200,10,8,f +4486,54200,288,4,f +4486,55982,0,2,f +4486,56902,71,4,f +4486,57909a,72,2,f +4486,58176,35,4,f +4486,59443,0,6,f +4486,59900,52,1,f +4486,6019,15,3,f +4486,60219,15,1,f +4486,60470a,0,3,f +4486,60471,15,2,f +4486,60478,0,4,f +4486,60478,72,2,f +4486,60479,71,2,f +4486,60581,0,2,f +4486,60593,288,6,f +4486,6091,288,4,f +4486,61184,71,6,f +4486,61409,72,4,f +4486,6141,297,12,f +4486,6141,45,6,f +4486,6141,47,1,t +4486,6141,27,6,f +4486,6141,297,2,t +4486,6141,45,1,t +4486,6141,36,2,f +4486,6141,36,1,t +4486,6141,47,2,f +4486,6141,27,1,t +4486,61485,15,1,f +4486,6215,15,1,f +4486,6232,4,2,f +4486,62462,0,2,f +4486,63864,71,4,f +4486,63864,0,2,f +4486,63868,71,4,f +4486,63868,0,1,f +4486,64567,297,1,f +4486,64567,297,1,t +4486,6541,15,2,f +4486,6558,1,2,f +4486,6587,28,2,f +4486,70704stk01,9999,1,t +4486,85984,15,1,t +4486,85984,15,3,f +4486,87081,72,1,f +4486,87087,72,2,f +4486,87552,15,10,f +4486,87580,10,3,f +4486,87620,288,2,f +4486,87752,47,1,f +4486,87781,10,1,f +4486,92013,15,2,f +4486,92099,72,1,f +4486,92220,148,4,f +4486,92280,0,2,f +4486,92280,15,2,f +4486,92747pr0001b,41,1,f +4486,92946,15,4,f +4486,95188,15,2,f +4486,95199,72,2,f +4486,970c00pr0458,326,1,f +4486,970c00pr0462,10,1,f +4486,970c00pr0464,10,1,f +4486,973pr2255c01,326,1,f +4486,973pr2259c01,71,1,f +4486,973pr2298c01,71,1,f +4486,98102,47,1,f +4486,98138,71,2,t +4486,98138,71,5,f +4486,98138,36,2,t +4486,98138,36,5,f +4486,99206,71,8,f +4486,99780,72,1,f +4487,14226c21,0,1,f +4487,2335pw1,15,1,f +4487,2357,0,3,f +4487,2359px2,19,1,f +4487,2420,7,3,f +4487,2423,2,2,f +4487,2431pw0,0,1,f +4487,2444,7,3,f +4487,2453a,0,4,f +4487,2456,0,1,f +4487,2458,7,5,f +4487,2460,7,1,f +4487,2489,6,1,f +4487,2527,6,1,f +4487,2530,8,2,f +4487,2540,0,1,f +4487,2546,8,1,f +4487,2555,0,4,f +4487,2654,7,1,f +4487,2817,0,1,f +4487,2927,0,4,f +4487,3001,0,2,f +4487,3002,0,1,f +4487,3002,7,2,f +4487,3003,0,1,f +4487,3004,7,5,f +4487,3004,6,1,f +4487,3004,0,10,f +4487,3004,15,1,f +4487,3005,0,9,f +4487,3005,6,1,f +4487,3007,7,1,f +4487,3008,7,3,f +4487,3009,0,1,f +4487,3010,0,1,f +4487,3010,7,2,f +4487,30132,8,4,f +4487,30133,0,2,f +4487,30133,15,2,f +4487,30134,0,1,f +4487,30135,1,1,f +4487,30136,6,13,f +4487,30137,6,2,f +4487,30139,6,1,f +4487,30141,8,8,f +4487,3020,7,1,f +4487,3021,0,1,f +4487,3023,6,2,f +4487,3023,7,1,f +4487,3023,0,3,f +4487,3023,15,1,f +4487,3029,0,1,f +4487,3032,0,1,f +4487,3033,7,1,f +4487,3035,0,2,f +4487,3040b,0,2,f +4487,3062b,0,1,f +4487,3062b,7,6,f +4487,3069b,7,3,f +4487,3069b,0,1,f +4487,3069bp03,7,1,f +4487,3069bpw1,15,1,f +4487,3228b,7,2,f +4487,3460,0,1,f +4487,3581,6,1,f +4487,3622,7,2,f +4487,3622,0,3,f +4487,3626bp39,14,1,f +4487,3626bp42,14,1,f +4487,3626bpr0895,15,1,f +4487,3626bpx28,14,1,f +4487,3626bpx29,14,1,f +4487,3626bpx30,14,1,f +4487,3629,1,1,f +4487,3629,6,3,f +4487,3644,0,1,f +4487,3666,0,1,f +4487,3710,0,3,f +4487,3710,7,1,f +4487,3795,7,1,f +4487,3795,0,4,f +4487,3795,8,1,f +4487,3841,8,1,f +4487,3853,6,1,f +4487,3854,1,2,f +4487,3856,7,2,f +4487,3878,0,1,f +4487,3937,0,1,f +4487,3938,1,1,f +4487,4070,0,3,f +4487,4079,14,1,f +4487,4095,15,1,f +4487,4150,7,1,f +4487,4213,7,1,f +4487,4286,0,2,f +4487,4345b,0,1,f +4487,4346px5,2,1,f +4487,4460a,0,6,f +4487,4491b,0,1,f +4487,4491b,6,1,f +4487,4493c01pb01,6,1,f +4487,4493c01pb02,0,1,f +4487,4599a,0,1,f +4487,4600,0,2,f +4487,4625,0,1,f +4487,4733,0,1,f +4487,4865a,0,3,f +4487,4865a,1,4,f +4487,57503,334,1,f +4487,57504,334,1,f +4487,57505,334,1,f +4487,57506,334,1,f +4487,6020,0,1,f +4487,6064,2,3,f +4487,6082,7,4,f +4487,6083,7,1,f +4487,6126a,57,1,f +4487,6179,0,1,f +4487,6231,0,2,f +4487,6761stk01,9999,1,t +4487,71342,334,1,f +4487,75998pr0007,15,1,f +4487,84943,8,1,f +4487,970c00,0,1,f +4487,970c00,8,1,f +4487,970c00,1,2,f +4487,970c00,7,1,f +4487,973px42c01,1,1,f +4487,973px43c01,1,1,f +4487,973px54c01,0,1,f +4487,973px55c01,2,1,f +4487,973px56c01,4,1,f +4488,3005pt0b,15,6,f +4488,3005pt1b,15,6,f +4488,3005pt2b,15,4,f +4488,3005pt3b,15,4,f +4488,3005pt4b,15,4,f +4488,3005pt5b,15,4,f +4488,3005pt6b,15,4,f +4488,3005pt7b,15,4,f +4488,3005pt8b,15,4,f +4488,3005pt9b,15,4,f +4488,3005ptdevid,15,2,f +4488,3005ptis,15,2,f +4488,3005ptplus,15,2,f +4488,3005ptpminus,15,2,f +4489,468c03,0,1,f +4490,2797c02,14,1,f +4491,45302,71,1,f +4492,3001,1,1,f +4492,3003,1,1,f +4492,3004,47,2,f +4492,3004,4,6,f +4492,3004,14,4,f +4492,3004,1,2,f +4492,3005,14,2,f +4492,3010,4,2,f +4492,3021,1,2,f +4492,3034,1,2,f +4492,3039,4,2,f +4492,3137c01,0,2,f +4492,3624,4,1,f +4492,3626apr0001,14,1,f +4492,3641,0,4,f +4492,3660,4,2,f +4492,970c00,0,1,f +4492,973c01,15,1,f +4493,30374,41,2,f +4493,32002,8,1,f +4493,32002,8,1,t +4493,32013,15,2,f +4493,32034,15,1,f +4493,32039,0,3,f +4493,32056,15,2,f +4493,32073,0,5,f +4493,32124,0,2,f +4493,32270,7,2,f +4493,32310pb01,15,1,f +4493,3713,1,1,t +4493,3713,1,1,f +4493,4519,0,4,f +4493,6538b,0,2,f +4493,6553,0,2,f +4493,6587,8,1,f +4493,6632,0,2,f +4493,6632,15,1,f +4494,3004,0,2,f +4494,3023,0,4,f +4494,30362,0,2,f +4494,3700,0,2,f +4494,3795,0,1,f +4494,3941,4,1,f +4494,3960pr0017a,0,1,f +4494,4032a,14,1,f +4494,60474,0,2,f +4494,61485,0,1,f +4494,85984,0,2,f +4496,3001,14,3,f +4496,3002,4,1,f +4496,3002,14,2,f +4496,3004,1,1,f +4496,3004,14,2,f +4496,3009,4,1,f +4496,3010,14,1,f +4496,3030,14,2,f +4496,3068pb33,15,1,f +4496,3068pb34,15,1,f +4496,3622pf1,4,1,f +4496,3633,4,2,f +4496,3741,2,2,f +4496,3742,14,3,f +4496,3742,4,1,t +4496,3742,14,1,t +4496,3742,4,3,f +4496,3857,2,1,f +4496,3957a,0,2,f +4496,3979c01,14,1,f +4496,4222a,450,1,f +4496,4495a,1,2,f +4496,4750,14,1,f +4496,4782,1,3,f +4496,4823c01,14,1,f +4496,4841,4,1,f +4496,4842c01,14,1,f +4496,4843,1,3,f +4496,787c02,14,2,f +4496,fab12b,9999,1,f +4496,fab5c,9999,1,f +4496,fab9b,9999,1,f +4498,2420,72,2,f +4498,2555,71,2,f +4498,2570,135,2,f +4498,2736,71,1,f +4498,2926,0,1,f +4498,3020,0,1,f +4498,3020,70,1,f +4498,3023,72,2,f +4498,30273,80,1,f +4498,3034,70,1,f +4498,30374,0,1,f +4498,3048c,297,1,f +4498,32013,0,1,f +4498,32474,0,2,f +4498,3626bpr0389,14,1,f +4498,3626bpr0411,14,1,f +4498,3626bpr0494,15,1,f +4498,3706,0,2,f +4498,3839b,0,1,f +4498,3844,80,1,f +4498,3848,72,1,f +4498,4070,70,2,f +4498,41753,72,1,t +4498,4489b,70,2,f +4498,4865a,0,2,f +4498,54200,272,6,f +4498,54200,272,1,t +4498,59228,15,1,f +4498,59229,72,1,f +4498,59230,15,1,t +4498,59230,15,2,f +4498,59231pr0001,72,1,f +4498,60115,15,1,f +4498,6019,0,2,f +4498,6266,15,1,t +4498,6266,15,2,f +4498,85544,4,1,f +4498,970x026,71,2,f +4498,973pr1318c01,272,1,f +4498,973pr1321c01,72,1,f +4499,2335,15,1,f +4499,2376,0,1,f +4499,2412b,27,2,f +4499,2431,27,2,f +4499,2431,0,2,f +4499,2444,0,2,f +4499,2444,4,2,f +4499,2460,15,2,f +4499,2476a,15,4,f +4499,2540,0,2,f +4499,2555,72,1,f +4499,2555,71,2,f +4499,2569,72,2,f +4499,2654,0,6,f +4499,2736,71,1,f +4499,2780,0,2,t +4499,2780,0,6,f +4499,298c02,14,1,t +4499,298c02,4,5,f +4499,298c02,14,2,f +4499,298c02,4,2,t +4499,3003,72,1,f +4499,30170,72,1,t +4499,3020,0,1,f +4499,3020,4,2,f +4499,3021,0,3,f +4499,3022,71,4,f +4499,3022,4,1,f +4499,3022,15,2,f +4499,3022,0,3,f +4499,3023,0,4,f +4499,3023,71,2,f +4499,3023,4,2,f +4499,3024,4,4,f +4499,3024,0,2,f +4499,3032,0,1,f +4499,30332,0,1,f +4499,3034,0,2,f +4499,3035,0,1,f +4499,3036,0,1,f +4499,30374,14,2,f +4499,30374,15,1,f +4499,30386,14,1,f +4499,30387,14,1,f +4499,30395,72,1,f +4499,30396,14,1,f +4499,30553,0,2,f +4499,3062b,70,5,f +4499,3068b,15,4,f +4499,3068b,0,1,f +4499,3069b,27,2,f +4499,3069b,71,1,f +4499,32000,0,4,f +4499,32001,4,3,f +4499,32013,0,4,f +4499,32034,0,2,f +4499,32039,0,1,f +4499,32039,71,1,f +4499,32062,4,4,f +4499,32064b,0,2,f +4499,32073,71,3,f +4499,32123b,71,5,f +4499,32123b,14,1,t +4499,32123b,14,2,f +4499,32123b,71,1,t +4499,32192,0,2,f +4499,32250,27,2,f +4499,32270,0,4,f +4499,32524,27,3,f +4499,32556,19,1,f +4499,3460,0,2,f +4499,3460,4,4,f +4499,3622,0,2,f +4499,3623,0,2,f +4499,3623,27,2,f +4499,3666,0,3,f +4499,3673,71,2,f +4499,3673,71,1,t +4499,3679,71,1,f +4499,3680,0,1,f +4499,3700,4,1,f +4499,3701,15,2,f +4499,3706,0,1,f +4499,3710,27,3,f +4499,3710,4,1,f +4499,3710,0,4,f +4499,3713,71,1,t +4499,3713,71,4,f +4499,3749,19,2,f +4499,3794b,15,2,f +4499,3795,4,1,f +4499,3795,0,5,f +4499,3937,4,2,f +4499,3941,15,1,f +4499,3941,71,1,f +4499,3957a,71,2,f +4499,4032a,0,1,f +4499,4032a,14,1,f +4499,4079,72,1,f +4499,4079,0,2,f +4499,4085c,72,1,f +4499,4085c,71,4,f +4499,4085c,0,2,f +4499,4151b,72,1,f +4499,41530,71,2,f +4499,41531,15,2,f +4499,41532,0,2,f +4499,41677,71,2,f +4499,4175,0,1,f +4499,41769,15,2,f +4499,41770,15,2,f +4499,42022,0,2,f +4499,42023,0,2,f +4499,42610,71,1,f +4499,4274,1,2,f +4499,4274,1,1,t +4499,43093,1,6,f +4499,43722,27,1,f +4499,43723,27,1,f +4499,44567a,0,1,f +4499,4460b,4,2,f +4499,44728,27,2,f +4499,44809,0,2,f +4499,4519,71,2,f +4499,45590,0,1,f +4499,4588,72,2,f +4499,4589,14,2,f +4499,4599b,71,2,f +4499,46667,72,2,f +4499,47905,72,1,f +4499,48336,4,2,f +4499,50943,71,3,f +4499,51011,0,1,f +4499,52031,0,1,f +4499,53989,135,4,f +4499,54200,15,1,t +4499,54200,15,6,f +4499,54200,0,5,f +4499,54200,0,2,t +4499,54383,0,1,f +4499,54384,0,1,f +4499,57585,71,1,f +4499,59895,0,2,f +4499,60169,72,2,f +4499,6026,288,1,f +4499,6027,288,1,f +4499,60470a,71,2,f +4499,60470a,4,2,f +4499,60474,14,1,f +4499,60474,1,1,f +4499,6126b,57,4,f +4499,6134,0,2,f +4499,61409,4,2,f +4499,6141,70,1,t +4499,6141,46,2,f +4499,6141,46,1,t +4499,6141,70,1,f +4499,6180,15,1,f +4499,6255,2,1,f +4499,62812,0,1,f +4499,63864,0,2,f +4499,64277c01,297,2,f +4499,64450,0,1,f +4499,6541,4,2,f +4499,6541,0,2,f +4499,6553,71,3,f +4499,6587,28,1,f +4499,6632,27,2,f +4499,75c24,0,1,f +4499,85984,15,2,f +4499,87079,0,1,f +4499,89801,80,1,f +4499,89829,9999,1,t +4499,90414,9999,1,t +4500,2431pr0017,14,1,f +4500,2555,7,1,f +4500,2555,7,1,t +4500,298c02,14,1,f +4500,298c02,14,1,t +4500,3005,0,1,f +4500,30148,0,1,f +4500,3023,14,1,f +4500,30383,8,2,f +4500,30553,8,2,f +4500,3069bp02,7,1,f +4500,32059,0,1,f +4500,3626bpx32,14,1,f +4500,4095,0,1,f +4500,4485,1,1,f +4500,4740,15,1,f +4500,6141,42,1,f +4500,6141,42,1,t +4500,6141,15,1,t +4500,6141,15,2,f +4500,970c00,1,1,f +4500,973px64c01,15,1,f +4502,11211,71,1,f +4502,11267,26,1,f +4502,11407pr0001c01,26,1,f +4502,11408pr0001c01,78,1,f +4502,11476,71,1,f +4502,11477,15,6,f +4502,11610,19,2,f +4502,11816pr0006,78,1,f +4502,11816pr0011,78,1,f +4502,12825,15,10,f +4502,13392pr0001,212,1,f +4502,13392pr0002,379,1,f +4502,14014pr0002,78,1,f +4502,14226c11,0,1,f +4502,14226c11,0,1,t +4502,2340,322,2,f +4502,2343,47,2,f +4502,2412b,15,6,f +4502,2412b,71,2,f +4502,2431,19,1,f +4502,2445,15,5,f +4502,2450,19,2,f +4502,2456,0,2,f +4502,2456,322,6,f +4502,2465,15,2,f +4502,2569,0,2,f +4502,2654,71,12,f +4502,2730,15,1,f +4502,2780,0,1,t +4502,2780,0,9,f +4502,30000,71,2,f +4502,3001,30,1,f +4502,3001,19,4,f +4502,3001,15,1,f +4502,3002,15,2,f +4502,3002,14,1,f +4502,3003,0,1,f +4502,3003,322,5,f +4502,3003,15,1,f +4502,3003,27,3,f +4502,3004,15,15,f +4502,3004,26,1,f +4502,3004,19,1,f +4502,3005,15,6,f +4502,3005pr17,27,1,f +4502,3009,15,1,f +4502,3010,15,10,f +4502,3010,322,1,f +4502,30176,2,1,f +4502,3020,19,9,f +4502,3020,322,6,f +4502,3020,15,7,f +4502,3021,19,1,f +4502,3021,71,1,f +4502,3021,15,3,f +4502,3022,19,3,f +4502,3022,15,1,f +4502,3022,322,2,f +4502,30222,42,1,f +4502,3023,30,8,f +4502,3023,29,1,f +4502,3023,27,4,f +4502,3023,33,2,f +4502,3023,15,12,f +4502,3023,72,3,f +4502,3023,19,6,f +4502,3024,30,2,f +4502,3024,33,1,t +4502,3024,33,10,f +4502,3024,15,1,t +4502,3024,34,1,f +4502,3024,36,1,t +4502,3024,19,1,t +4502,3024,30,1,t +4502,3024,19,9,f +4502,3024,34,1,t +4502,3024,36,1,f +4502,3024,15,1,f +4502,3030,29,4,f +4502,3031,19,1,f +4502,3032,71,2,f +4502,3034,19,6,f +4502,30367c,322,2,f +4502,3037,322,12,f +4502,3037,15,1,f +4502,3040b,15,11,f +4502,3045,322,6,f +4502,3062b,15,1,f +4502,3062b,41,1,f +4502,3065,47,4,f +4502,3065,52,4,f +4502,3068b,19,1,f +4502,3068b,71,1,f +4502,3069b,29,8,f +4502,3069b,26,10,f +4502,3069b,191,4,f +4502,3069b,15,2,f +4502,3069bpr0130,322,1,f +4502,3070bpr0007,71,1,f +4502,3070bpr0007,71,1,t +4502,33085,14,1,f +4502,33291,5,2,f +4502,33291,191,2,f +4502,33291,5,1,t +4502,33291,191,1,t +4502,3460,15,2,f +4502,3622,15,9,f +4502,3623,15,11,f +4502,3660,15,7,f +4502,3666,15,2,f +4502,3700,0,4,f +4502,3701,19,2,f +4502,3710,71,2,f +4502,3710,19,7,f +4502,3747b,15,1,f +4502,3747b,14,2,f +4502,3794b,71,4,f +4502,3795,19,3,f +4502,3795,15,2,f +4502,3795,71,2,f +4502,3829c01,15,1,f +4502,3832,15,1,f +4502,3941,27,1,f +4502,3957a,15,1,f +4502,4032a,70,1,f +4502,4032a,72,7,f +4502,4085c,71,2,f +4502,41015stk01,9999,1,t +4502,4150,29,1,f +4502,4150pr0009,15,1,f +4502,4175,71,1,f +4502,42022,15,2,f +4502,42023,15,2,f +4502,4282,15,1,f +4502,4282,19,7,f +4502,4286,15,2,f +4502,4287,71,4,f +4502,43713,15,1,f +4502,43719,15,1,f +4502,44568,15,2,f +4502,44728,71,5,f +4502,4495b,5,1,f +4502,4528,179,1,f +4502,4533,41,1,f +4502,4589,26,1,t +4502,4599b,71,2,f +4502,4599b,71,1,t +4502,4623,71,2,f +4502,46413,40,2,f +4502,4740,71,2,f +4502,4740,15,1,f +4502,48336,19,1,f +4502,4865b,29,3,f +4502,4865b,71,2,f +4502,4871,15,1,f +4502,50950,191,2,f +4502,50950,30,4,f +4502,58181,15,1,f +4502,59900,42,1,f +4502,59900,26,1,f +4502,6005,15,1,f +4502,6019,0,1,f +4502,60470a,15,1,f +4502,60470b,14,1,f +4502,60475b,71,2,f +4502,60478,15,2,f +4502,60479,15,2,f +4502,60481,15,2,f +4502,60581,41,2,f +4502,60581,15,2,f +4502,6060,15,1,f +4502,6091,15,12,f +4502,6106,19,2,f +4502,6108,15,4,f +4502,6111,15,1,f +4502,6141,34,1,f +4502,6141,34,1,t +4502,6141,70,1,f +4502,6141,182,1,t +4502,6141,4,1,t +4502,6141,29,3,f +4502,6141,70,1,t +4502,6141,71,1,t +4502,6141,42,6,f +4502,6141,1,1,f +4502,6141,182,1,f +4502,6141,4,1,f +4502,6141,71,2,f +4502,6141,1,1,t +4502,6141,42,3,t +4502,6183,15,2,f +4502,6191,26,5,f +4502,6191,30,2,f +4502,6231,29,6,f +4502,6256,29,1,f +4502,63965,71,1,f +4502,64645,15,1,f +4502,64648,179,2,f +4502,64651,15,1,f +4502,6636,19,4,f +4502,6636,191,6,f +4502,70973,5,1,f +4502,75c33,71,1,t +4502,75c33,71,2,f +4502,85984,191,13,f +4502,85984,15,3,f +4502,87079,26,2,f +4502,87552,47,18,f +4502,87552,15,2,f +4502,87580,15,2,f +4502,87991,19,1,f +4502,88930,15,2,f +4502,90509,322,2,f +4502,92255,0,1,f +4502,92257,320,1,f +4502,92410,15,1,f +4502,92456pr0040c01,78,1,f +4502,92456pr0041c01,78,1,f +4502,92583,40,1,f +4502,92593,15,6,f +4502,92819pr0004,272,1,f +4502,92820pr0005c01,212,1,f +4502,93095,29,2,f +4502,93095,15,1,f +4502,95227,15,3,f +4502,96479,85,3,f +4502,96480,85,1,f +4502,96481,85,2,f +4502,96482,85,1,f +4502,96483,85,2,f +4502,96484,85,1,f +4502,96485,85,2,f +4502,96486,85,1,f +4502,96487,85,2,f +4502,96488,85,1,f +4502,96489,85,2,f +4502,96490,85,1,f +4502,96491,85,1,f +4502,96874,25,1,t +4502,98138,25,1,t +4502,98138,15,2,f +4502,98138,25,1,f +4502,98138,15,2,t +4502,98397,71,2,f +4504,3001,4,2,f +4504,3001,15,1,f +4504,3001,14,1,f +4504,3002,1,2,f +4504,3002,15,2,f +4504,3003,4,4,f +4504,3003,1,4,f +4504,3003,14,4,f +4504,3003,0,2,f +4504,3003,15,1,f +4504,3006,1,1,f +4504,4130,4,1,f +4504,4131,14,1,f +4504,4132,4,1,f +4504,4133,14,1,f +4505,2412b,3,2,f +4505,2420,0,8,f +4505,2431,0,2,f +4505,2450,0,6,f +4505,2654,0,1,f +4505,2715,3,1,f +4505,2716,0,1,f +4505,2723,15,4,f +4505,2730,0,2,f +4505,2736,7,2,f +4505,2744,3,2,f +4505,2780,0,61,f +4505,2817,0,4,f +4505,2825,3,4,f +4505,2825,0,6,f +4505,2853,7,2,f +4505,2905,0,2,f +4505,30028,0,6,f +4505,3021,0,1,f +4505,3022,0,3,f +4505,3023,0,3,f +4505,3024,0,4,f +4505,3039,0,1,f +4505,3045,0,2,f +4505,3068b,0,1,f +4505,32001,0,1,f +4505,32002,8,26,f +4505,32005a,8,2,f +4505,32009,0,4,f +4505,32009,3,4,f +4505,32013,0,18,f +4505,32014,0,4,f +4505,32015,0,4,f +4505,32016,7,6,f +4505,32016,0,9,f +4505,32017,3,20,f +4505,32017,0,10,f +4505,32017,14,2,f +4505,32028,0,4,f +4505,32034,0,3,f +4505,32039,0,23,f +4505,32039,7,10,f +4505,32054,0,4,f +4505,32056,14,2,f +4505,32056,0,8,f +4505,32056,3,4,f +4505,32062,0,47,f +4505,32063,3,2,f +4505,32063,0,2,f +4505,32064a,3,6,f +4505,32065,0,2,f +4505,32065,3,2,f +4505,32065,14,6,f +4505,32068,0,4,f +4505,32068,3,3,f +4505,32069,3,2,f +4505,32073,0,6,f +4505,32089,14,10,f +4505,32090,0,4,f +4505,32094,0,2,f +4505,32123b,7,15,f +4505,32126,7,6,f +4505,3460,0,2,f +4505,3482,14,1,f +4505,3483,0,1,f +4505,3623,0,2,f +4505,3647,7,5,f +4505,3648a,7,3,f +4505,3665,0,2,f +4505,3666,0,4,f +4505,3673,7,7,f +4505,3700,0,11,f +4505,3701,0,4,f +4505,3702,0,2,f +4505,3703,0,1,f +4505,3705,0,32,f +4505,3706,0,13,f +4505,3707,0,6,f +4505,3708,0,3,f +4505,3709,0,2,f +4505,3710,0,6,f +4505,3713,7,27,f +4505,3737,0,6,f +4505,3738,0,4,f +4505,3749,7,40,f +4505,3894,0,10,f +4505,3895,0,2,f +4505,4019,7,4,f +4505,4032a,0,1,f +4505,4274,7,5,f +4505,4519,0,15,f +4505,4757,14,1,f +4505,5306bc020,0,1,f +4505,5306bc020,14,3,f +4505,5306bc026,0,1,f +4505,5306bc026,14,2,f +4505,6536,7,4,f +4505,6536,0,25,f +4505,6536,14,2,f +4505,6538b,3,6,f +4505,6541,0,4,f +4505,6553,7,2,f +4505,6558,0,37,f +4505,6585,0,1,f +4505,6587,8,4,f +4505,6589,7,6,f +4505,6592,7,1,f +4505,6594,0,4,f +4505,6595,14,4,f +4505,6628,0,2,f +4505,6629,3,14,f +4505,6629,14,2,f +4505,6629,0,12,f +4505,6632,0,22,f +4505,6632,3,18,f +4505,6643,8,2,f +4505,6644,0,2,f +4505,71427c01,7,1,f +4505,71793,7,1,f +4505,71797,3,1,f +4505,71846,3,1,f +4505,75535,3,13,f +4505,75535,14,4,f +4505,75535,0,10,f +4505,75c10,0,2,f +4505,76019,15,1,f +4505,76110c01,14,1,f +4505,78c04,3,2,f +4505,78c04,0,2,f +4505,78c07,0,4,f +4505,78c07,3,2,f +4505,78c08,3,3,f +4505,78c09,0,2,f +4505,78c11,0,4,f +4505,78c18,0,2,f +4505,879c02,41,1,f +4505,879c03,41,1,f +4505,879c04,41,1,f +4505,bb1242,9999,1,f +4505,flex08c04l,7,2,f +4505,rb00168,0,5,f +4505,rb00178,0,4,f +4505,tech001,9999,1,f +4505,x180,7,1,f +4505,x428,0,2,f +4506,2412b,71,1,f +4506,2412b,4,10,f +4506,2412b,14,2,f +4506,2419,0,2,f +4506,2420,0,6,f +4506,2431,4,2,f +4506,2436,0,2,f +4506,2444,14,2,f +4506,2540,4,2,f +4506,2540,71,4,f +4506,2555,15,2,f +4506,2654,0,2,f +4506,2780,0,4,f +4506,2780,0,1,t +4506,2825,4,2,f +4506,3003,0,2,f +4506,3004,15,2,f +4506,3020,71,2,f +4506,3021,15,2,f +4506,3022,72,7,f +4506,3023,0,2,f +4506,3023,15,12,f +4506,3023,14,2,f +4506,3024,0,4,f +4506,3034,0,1,f +4506,30407,14,6,f +4506,30552,0,1,f +4506,30602,14,3,f +4506,32000,14,4,f +4506,32001,14,2,f +4506,32015,14,2,f +4506,32039,14,2,f +4506,32039,4,1,f +4506,32054,0,2,f +4506,32062,4,4,f +4506,32064b,72,2,f +4506,32140,0,2,f +4506,32291,0,1,f +4506,32316,0,3,f +4506,3475b,72,2,f +4506,3623,72,4,f +4506,3626bpr0446,14,1,f +4506,3660,72,2,f +4506,3673,71,1,t +4506,3673,71,4,f +4506,3700,0,7,f +4506,3705,0,1,f +4506,3707,0,2,f +4506,3709,14,2,f +4506,3710,72,2,f +4506,3713,71,1,t +4506,3713,71,1,f +4506,3738,14,1,f +4506,3747b,0,1,f +4506,3794a,71,2,f +4506,3894,14,2,f +4506,3937,71,2,f +4506,40002,47,1,f +4506,40244,0,2,f +4506,41532,0,6,f +4506,4162,0,2,f +4506,41677,71,2,f +4506,41678,0,1,f +4506,41747,14,2,f +4506,41748,14,2,f +4506,41767,72,1,f +4506,41768,72,1,f +4506,41883,40,1,f +4506,42022,4,2,f +4506,42022,14,2,f +4506,4274,71,1,t +4506,4274,71,6,f +4506,4287,14,2,f +4506,43093,1,4,f +4506,43712,14,4,f +4506,44301a,72,2,f +4506,44302a,71,2,f +4506,44302a,0,1,f +4506,44728,14,4,f +4506,4589,36,9,f +4506,4589,42,1,f +4506,4589,4,3,f +4506,47432,72,4,f +4506,47452,72,2,f +4506,47455,4,10,f +4506,47461,4,1,f +4506,47753,14,4,f +4506,48169,72,2,f +4506,48170,72,4,f +4506,48172,0,1,f +4506,48336,0,1,f +4506,48729a,72,2,f +4506,50950,14,8,f +4506,51739,14,1,f +4506,53982,10,1,f +4506,53989,135,8,f +4506,54605,47,1,f +4506,59426,72,1,f +4506,6134,71,1,f +4506,6134,0,2,f +4506,6536,71,1,f +4506,6538b,4,4,f +4506,6541,4,4,f +4506,6558,0,2,f +4506,6587,72,6,f +4506,970c00,4,1,f +4506,973pr1233c01,4,1,f +4507,12651,212,4,f +4507,3011,10,1,f +4507,31022,15,4,f +4507,31023,15,4,f +4507,31041,5,1,f +4507,31042,179,1,f +4507,31066,1,1,f +4507,3437,27,2,f +4507,3437,10,1,f +4507,3437,484,3,f +4507,3437,191,2,f +4507,4066,191,33,f +4507,40666,27,1,f +4507,44524,4,1,f +4507,44524,226,3,f +4507,47510pr0003c01,29,1,f +4507,47511pr0001,15,1,f +4507,4886,5,2,f +4507,4890,5,2,f +4507,4891,25,2,f +4507,4892,15,1,f +4507,4893,15,1,f +4507,4911,15,1,f +4507,4912,5,1,f +4507,51260,191,3,f +4507,51261,191,2,f +4507,51262,226,1,f +4507,51383,191,2,f +4507,51385,4,2,f +4507,53916,191,1,f +4507,58057pr01,19,1,f +4507,61310,226,3,f +4507,61310,10,1,f +4507,63871,4,8,f +4507,6472,4,1,f +4507,6473,4,1,f +4507,6496,1,1,f +4507,6497,15,5,f +4507,6510,10,1,f +4507,6510,5,1,f +4507,6510,4,1,f +4507,75113pr0008,212,1,f +4507,75115bpr0001,1,1,f +4507,75115pr0009,378,1,f +4507,75121,4,1,f +4507,75737,4,1,f +4507,76338,27,2,f +4507,85610,15,1,f +4507,85951,15,4,f +4507,85964,27,1,f +4507,92937,5,1,f +4507,98457,15,2,f +4508,132a,0,4,f +4508,242c01,4,4,f +4508,3001a,4,2,f +4508,3002a,4,2,f +4508,3003,0,2,f +4508,3004,0,1,f +4508,3004,4,7,f +4508,3005,4,8,f +4508,3006,4,1,f +4508,3008,4,5,f +4508,3009,4,8,f +4508,3010,4,8,f +4508,3033,4,2,f +4508,3036,4,2,f +4508,3037,4,6,f +4508,3039,4,4,f +4508,3040a,4,2,f +4508,3045,4,4,f +4508,3046a,4,2,f +4508,3062a,0,4,f +4508,3081cc01,4,1,f +4508,3087c,15,2,f +4508,31cc01,4,11,f +4508,3455,4,4,f +4508,453cc01,4,10,f +4508,7049b,0,2,f +4508,780,4,1,f +4508,781,4,1,f +4509,11568pr0001,484,1,f +4509,11618,26,1,f +4509,11618,26,1,t +4510,2335p41,1,1,f +4510,2339,7,4,f +4510,2339,0,2,f +4510,2345,0,9,f +4510,2345p03,0,1,f +4510,2357,0,18,f +4510,2357,7,6,f +4510,2419,7,8,f +4510,2420,7,2,f +4510,2449,7,4,f +4510,2450,7,2,f +4510,2453a,0,3,f +4510,2454a,7,2,f +4510,2462,0,4,f +4510,2489,6,1,f +4510,2490pb02,4,1,f +4510,2490px2,1,1,f +4510,3002,7,2,f +4510,3003,7,5,f +4510,3004,15,1,f +4510,3004,6,2,f +4510,3004,7,33,f +4510,3004,0,70,f +4510,3005,0,39,f +4510,3005,7,24,f +4510,3008,0,3,f +4510,3009,7,1,f +4510,3009,0,4,f +4510,3010,0,15,f +4510,3010,7,2,f +4510,3020,7,4,f +4510,3020,0,1,f +4510,3021,7,9,f +4510,3022,7,3,f +4510,3023,6,2,f +4510,3023,7,8,f +4510,3023,0,6,f +4510,3023,15,1,f +4510,3024,0,9,f +4510,3024,7,6,f +4510,3029,0,2,f +4510,3034,0,2,f +4510,3034,7,2,f +4510,3035,7,3,f +4510,3036,0,1,f +4510,3039,0,1,f +4510,3040b,0,4,f +4510,3040b,7,4,f +4510,3063b,0,12,f +4510,3176,0,1,f +4510,3176,7,1,f +4510,3460,0,1,f +4510,3460,7,5,f +4510,3622,0,16,f +4510,3623,0,6,f +4510,3626apr0001,14,12,f +4510,3659,0,4,f +4510,3660,7,15,f +4510,3660,0,8,f +4510,3665,7,19,f +4510,3665,0,6,f +4510,3666,0,1,f +4510,3666,7,3,f +4510,3673,7,1,f +4510,3676,7,12,f +4510,3684,0,6,f +4510,3684,7,10,f +4510,3700,7,5,f +4510,3700,0,2,f +4510,3710,7,5,f +4510,3747a,7,2,f +4510,3749,7,1,f +4510,3794a,0,3,f +4510,3830,7,1,f +4510,3830,0,3,f +4510,3831,0,3,f +4510,3831,7,1,f +4510,3844,0,4,f +4510,3846p4c,7,10,f +4510,3847a,8,7,f +4510,3848,6,4,f +4510,3849,8,6,f +4510,3849,6,1,f +4510,3857,2,1,f +4510,3867,2,2,f +4510,3896,8,4,f +4510,3935,0,1,f +4510,3936,0,1,f +4510,3937,0,1,f +4510,3938,0,1,f +4510,3957a,7,3,f +4510,3959,7,4,f +4510,4070,7,2,f +4510,4070,0,8,f +4510,4071,0,1,f +4510,4081b,0,4,f +4510,4085b,7,2,f +4510,4085b,0,4,f +4510,4185,6,1,f +4510,4265a,7,1,f +4510,4282,0,2,f +4510,4444,0,13,f +4510,4444p04,0,1,f +4510,4444p05,0,1,f +4510,4460a,0,2,f +4510,4460a,7,4,f +4510,4477,0,10,f +4510,4477,7,5,f +4510,4490,7,2,f +4510,4490,0,4,f +4510,4491a,1,1,f +4510,4491a,4,1,f +4510,4493c01pb02,0,1,f +4510,4493c01pb03,6,2,f +4510,4495a,4,6,f +4510,4495a,1,4,f +4510,4497,6,3,f +4510,4498,6,4,f +4510,4499,6,4,f +4510,4503,0,1,f +4510,4503,8,3,f +4510,4524,4,1,f +4510,4611,8,1,f +4510,4871,7,5,f +4510,56823,0,2,f +4510,75998pr0007,15,1,f +4510,87692,4,2,f +4510,87692,14,2,f +4510,87693,4,2,t +4510,87693,14,2,t +4510,87694,14,2,t +4510,87694,4,2,t +4510,970x021,0,1,f +4510,970x026,4,5,f +4510,970x026,1,6,f +4510,973p40c01,0,1,f +4510,973p40c01,1,1,f +4510,973p40c02,1,1,f +4510,973p40c03,4,1,f +4510,973p41c01,1,4,f +4510,973p41c03,4,4,f +4511,11090,15,3,f +4511,11477,1,1,f +4511,14417,72,1,f +4511,14418,71,1,f +4511,14419,72,3,f +4511,14704,71,2,f +4511,15068,4,1,f +4511,15068,0,1,f +4511,15208,15,1,f +4511,15456,0,2,f +4511,2412b,15,2,f +4511,2436,71,1,f +4511,2540,15,1,f +4511,3020,0,1,f +4511,3021,1,2,f +4511,3022,0,2,f +4511,3023,0,3,f +4511,3023,1,7,f +4511,3624,0,2,f +4511,3626cpr1001,15,2,f +4511,3660,1,2,f +4511,3666,0,1,f +4511,4528,0,2,f +4511,47457,1,2,f +4511,49668,15,2,f +4511,60470b,0,2,f +4511,60474,0,1,f +4511,60478,0,2,f +4511,60897,15,1,f +4511,6141,33,1,t +4511,6141,15,1,t +4511,6141,36,1,t +4511,6141,15,2,f +4511,6141,33,1,f +4511,6141,36,1,f +4511,61482,71,1,t +4511,61482,71,1,f +4511,86500,15,1,f +4511,87580,1,1,f +4511,93273,1,1,f +4511,99207,0,1,f +4512,22253,80,4,f +4512,2420,0,2,f +4512,2420,7,2,f +4512,2508,0,4,f +4512,2717,7,1,f +4512,2723,0,4,f +4512,2730,0,2,f +4512,2736,7,1,f +4512,2744,14,6,f +4512,2780,0,42,f +4512,2780,0,1,t +4512,2817,0,3,f +4512,2819,7,1,f +4512,2825,0,11,f +4512,2850a,47,6,f +4512,2851,14,6,f +4512,2852,7,6,f +4512,2853,7,2,f +4512,2853,14,1,f +4512,2854,8,2,f +4512,2905,0,4,f +4512,3020,0,1,f +4512,3021,14,1,f +4512,3021,0,4,f +4512,3022,7,1,f +4512,3023,0,3,f +4512,3023,14,4,f +4512,3023,7,5,f +4512,3024,14,2,f +4512,3069b,0,4,f +4512,32000,0,4,f +4512,32002,8,9,f +4512,32013,14,2,f +4512,32013,0,6,f +4512,32014,0,2,f +4512,32016,0,8,f +4512,32017,0,6,f +4512,32034,0,2,f +4512,32039,0,6,f +4512,32054,0,4,t +4512,32056,0,4,f +4512,32056,14,2,f +4512,32062,0,13,f +4512,32068,0,2,f +4512,32068,14,1,f +4512,32068,7,1,f +4512,32073,0,9,f +4512,32123b,7,25,f +4512,32123b,7,1,t +4512,32126,7,2,f +4512,32140,0,2,f +4512,32184,0,8,f +4512,32190,14,3,f +4512,32191,14,3,f +4512,32201,14,6,f +4512,32209,0,3,f +4512,3460,0,3,f +4512,3623,0,2,f +4512,3647,7,1,f +4512,3647,7,2,t +4512,3650c,7,1,f +4512,3700,14,2,f +4512,3700,0,3,f +4512,3701,0,2,f +4512,3701,14,4,f +4512,3702,0,2,f +4512,3703,0,2,f +4512,3705,0,4,f +4512,3706,0,4,f +4512,3707,0,9,f +4512,3710,0,5,f +4512,3713,7,19,f +4512,3713,7,1,t +4512,3737,0,4,f +4512,3747b,0,1,f +4512,3749,7,3,t +4512,3749,7,15,f +4512,3795,0,1,f +4512,3795,14,1,f +4512,3832,0,1,f +4512,3895,0,2,f +4512,3895,14,2,f +4512,4274,7,1,t +4512,4274,7,8,f +4512,4477,0,6,f +4512,4519,0,5,f +4512,6536,0,11,f +4512,6536,14,3,f +4512,6538b,0,4,f +4512,6541,14,2,f +4512,6558,0,4,f +4512,6571,0,2,f +4512,6573,8,1,f +4512,6587,8,2,f +4512,6589,7,3,f +4512,6594,0,4,f +4512,6632,0,5,f +4512,6642,8,1,f +4512,6644,0,2,f +4512,73983,0,4,f +4512,75c03,8,2,f +4512,75c10,14,1,f +4512,76320,0,1,f +4512,78c07,0,2,f +4512,78c09,14,1,f +4512,78c09,0,2,f +4512,9244,7,1,f +4512,flex08c05l,79,2,f +4513,2362a,4,1,f +4513,2420,4,6,f +4513,2420,7,2,f +4513,2431,4,2,f +4513,2460,7,1,f +4513,2476a,7,1,f +4513,2555,7,8,f +4513,2695,15,4,f +4513,2696,0,4,f +4513,2730,7,2,f +4513,2730,4,4,f +4513,2780,0,27,f +4513,2791,7,1,f +4513,2793c01,14,1,f +4513,2797c02,14,1,f +4513,2825,0,4,f +4513,2825,7,2,f +4513,2856c01,7,1,f +4513,2905,0,2,f +4513,2950,0,1,f +4513,3021,7,3,f +4513,3022,4,4,f +4513,3022,7,3,f +4513,3023,4,13,f +4513,3023,7,3,f +4513,3040b,4,2,f +4513,3623,4,4,f +4513,3647,7,3,f +4513,3650a,7,1,f +4513,3666,4,4,f +4513,3673,7,5,f +4513,3700,4,7,f +4513,3700,7,5,f +4513,3701,7,4,f +4513,3701,4,6,f +4513,3703,4,4,f +4513,3704,0,5,f +4513,3705,0,3,f +4513,3706,0,5,f +4513,3707,0,1,f +4513,3708,0,1,f +4513,3709,4,2,f +4513,3710,4,4,f +4513,3710,7,4,f +4513,3713,7,8,f +4513,3737,0,1,f +4513,3738,4,1,f +4513,3738,7,2,f +4513,3749,7,1,f +4513,3895,7,5,f +4513,3895,4,1,f +4513,3941,46,1,f +4513,4019,7,1,f +4513,4032a,14,1,f +4513,4150,14,1,f +4513,4261,7,2,f +4513,4263,0,2,f +4513,4265a,7,14,f +4513,4274,7,2,f +4513,4275b,7,2,f +4513,4276b,7,2,f +4513,4442,7,2,f +4513,4477,7,2,f +4513,4504,7,2,f +4513,4519,0,5,f +4513,4697a,7,1,f +4513,5102c02,7,1,f +4513,5102c04,7,2,f +4513,5102c05,7,2,f +4513,5102c06,7,1,f +4513,5102c07,0,4,f +4513,5102c08,0,1,f +4513,5102c08,7,1,f +4513,5102c10,0,1,f +4513,5102c12,0,2,f +4513,5102c21,0,1,f +4513,5102c22,0,1,f +4513,5102c24,0,1,f +4513,5102c26,0,1,f +4513,70496,0,1,f +4513,74981,14,1,f +4513,75215,7,2,f +4513,75c07,8,2,f +4513,75c10,8,2,f +4514,194cx1,7,1,f +4514,2348b,33,1,f +4514,2349a,14,1,f +4514,2350b,4,1,f +4514,2351,0,1,f +4514,2376,0,2,f +4514,2412b,15,4,f +4514,2412b,14,2,f +4514,2412b,0,6,f +4514,2420,0,6,f +4514,2420,14,2,f +4514,2431,14,6,f +4514,2431,4,2,f +4514,2431,0,1,f +4514,2432,0,1,f +4514,2433,4,2,f +4514,2436,0,2,f +4514,2444,4,2,f +4514,2444,1,1,f +4514,2446,8,1,f +4514,2447,0,1,f +4514,2454a,2,2,f +4514,2456,14,1,f +4514,2458,14,2,f +4514,2496,0,1,f +4514,2540,14,1,f +4514,2540,7,1,f +4514,2555,4,1,f +4514,2555,0,1,f +4514,2655,7,1,f +4514,2780,0,4,f +4514,2873,4,1,f +4514,2877,2,8,f +4514,2878c01,0,6,f +4514,2920,0,4,f +4514,2921,0,2,f +4514,2926,0,2,f +4514,2927,0,4,f +4514,298c05,0,6,f +4514,3004,14,7,f +4514,3004,1,1,f +4514,3005,14,4,f +4514,3007,0,2,f +4514,3008,14,2,f +4514,3008,0,2,f +4514,3020,14,3,f +4514,3020,4,1,f +4514,3020,0,4,f +4514,3021,4,1,f +4514,3022,0,1,f +4514,3022,4,1,f +4514,3023,4,1,f +4514,3023,1,2,f +4514,3023,0,6,f +4514,3023,14,3,f +4514,3023,15,2,f +4514,3024,0,3,f +4514,3027,0,1,f +4514,3028,14,1,f +4514,3032,7,1,f +4514,3034,4,2,f +4514,3035,0,1,f +4514,3037,14,1,f +4514,3040b,14,2,f +4514,3062b,1,1,f +4514,3062b,4,1,f +4514,3068b,0,1,f +4514,3069b,4,1,f +4514,3069b,14,2,f +4514,3069bp52,15,1,f +4514,3127,7,1,f +4514,3297,14,2,f +4514,3403c01,4,1,f +4514,3460,0,2,f +4514,3460,14,2,f +4514,3622,0,2,f +4514,3623,0,2,f +4514,3623,14,2,f +4514,3626bp03,14,1,f +4514,3626bp04,14,1,f +4514,3651,7,2,f +4514,3666,14,2,f +4514,3673,7,2,f +4514,3706,0,2,f +4514,3710,14,2,f +4514,3710,4,2,f +4514,3794a,4,2,f +4514,3795,0,2,f +4514,3795,4,3,f +4514,3832,0,1,f +4514,3833,15,2,f +4514,3937,4,1,f +4514,3938,4,1,f +4514,3962a,0,1,f +4514,4006,0,1,f +4514,4022,0,4,f +4514,4025,0,2,f +4514,4034,47,1,f +4514,4035,15,2,f +4514,4036,47,2,f +4514,4079,15,1,f +4514,4085c,4,2,f +4514,4175,4,2,f +4514,4181,2,1,f +4514,4182,2,1,f +4514,4183,47,2,f +4514,4214,14,1,f +4514,4262,0,3,f +4514,4262,7,1,f +4514,4263,4,4,f +4514,4265b,7,2,f +4514,4274,7,1,f +4514,4276b,0,2,f +4514,4286,0,2,f +4514,4286,14,4,f +4514,4522,0,1,f +4514,4589,14,2,f +4514,4589,1,1,f +4514,4589,4,1,f +4514,4623,14,1,f +4514,4625,4,1,f +4514,4625,0,2,f +4514,4865a,4,2,f +4514,4872,41,1,f +4514,56823c75,0,1,f +4514,6019,7,1,f +4514,6019,0,1,f +4514,6039,0,4,f +4514,6141,46,4,f +4514,6141,47,1,f +4514,6231,4,4,f +4514,6556,15,1,f +4514,6583,14,3,f +4514,6584,0,1,f +4514,73037,14,1,f +4514,73090b,0,1,f +4514,73092,0,4,f +4514,970c00,1,2,f +4514,973px8c01,1,2,f +4516,12825,15,3,f +4516,2412b,297,4,f +4516,2431,27,4,f +4516,2444,72,1,f +4516,2456,72,2,f +4516,2540,4,1,f +4516,2540,0,2,f +4516,2654,0,1,f +4516,2654,72,1,f +4516,2780,0,10,f +4516,2780,0,2,t +4516,3001,72,2,f +4516,3002,27,1,f +4516,30031,0,1,f +4516,30173b,179,1,f +4516,3020,72,1,f +4516,3020,288,3,f +4516,3020,15,3,f +4516,3021,72,1,f +4516,3021,71,2,f +4516,3022,27,2,f +4516,3022,1,2,f +4516,3022,4,2,f +4516,3023,15,2,f +4516,3023,27,6,f +4516,3030,72,1,f +4516,3034,0,1,f +4516,30367b,85,4,f +4516,3039,27,3,f +4516,30391,0,1,f +4516,30407,15,1,f +4516,30414,0,2,f +4516,3048c,288,10,f +4516,30602,15,1,f +4516,3069b,27,4,f +4516,32000,0,2,f +4516,32001,71,1,f +4516,32013,0,4,f +4516,32016,0,2,f +4516,32062,4,2,f +4516,32073,71,3,f +4516,32123b,71,2,t +4516,32123b,71,12,f +4516,32187,71,4,f +4516,32269,0,1,f +4516,32294,0,8,f +4516,32316,72,2,f +4516,32474,4,2,f +4516,3460,0,2,f +4516,3622,4,2,f +4516,3626bpr0747,14,1,f +4516,3626cpr1367,14,1,f +4516,3639,72,4,f +4516,3640,72,4,f +4516,3666,27,7,f +4516,3673,71,6,f +4516,3673,71,2,t +4516,3700,1,4,f +4516,3701,72,2,f +4516,3706,0,1,f +4516,3707,0,2,f +4516,3708,0,1,f +4516,3710,27,10,f +4516,3710,15,1,f +4516,3713,4,2,t +4516,3713,4,6,f +4516,3747b,72,1,f +4516,3794b,1,1,f +4516,3795,72,1,f +4516,3829c01,4,1,f +4516,3894,72,2,f +4516,3895,0,4,f +4516,3937,0,1,f +4516,4032a,71,12,f +4516,40378,27,1,f +4516,40379,27,1,f +4516,4081b,27,6,f +4516,4085c,4,2,f +4516,41769,288,1,f +4516,41770,288,1,f +4516,4185,27,8,f +4516,42023,72,2,f +4516,4274,1,1,t +4516,4274,1,12,f +4516,43093,1,2,f +4516,43710,288,1,f +4516,43711,288,1,f +4516,43713,0,1,f +4516,44225,0,2,f +4516,44301a,0,2,f +4516,44302a,71,2,f +4516,44567a,72,1,f +4516,44568,71,1,f +4516,44570,71,1,f +4516,44674,0,3,f +4516,44728,1,2,f +4516,44728,27,6,f +4516,4495b,4,1,f +4516,4519,71,4,f +4516,4532,27,2,f +4516,4533,72,2,f +4516,4589,71,2,f +4516,4589,297,4,f +4516,47397,288,1,f +4516,47398,288,1,f +4516,48336,0,1,f +4516,48729b,72,2,f +4516,48729b,72,1,t +4516,50948,27,5,f +4516,50950,15,3,f +4516,55013,72,2,f +4516,55981,71,1,f +4516,56908,71,4,f +4516,57539,179,2,f +4516,59443,71,6,f +4516,60219,0,1,f +4516,60474,288,5,f +4516,61070,27,1,f +4516,61071,27,1,f +4516,6134,15,1,f +4516,61409,288,2,f +4516,61409,1,2,f +4516,6141,85,4,f +4516,6141,297,1,t +4516,6141,85,1,t +4516,6141,297,3,f +4516,61480,0,4,f +4516,61485,0,2,f +4516,61678,27,12,f +4516,62361,27,4,f +4516,63864,288,2,f +4516,63868,15,2,f +4516,63869,71,2,f +4516,64728,4,1,f +4516,64867,143,2,f +4516,6558,1,12,f +4516,6632,71,4,f +4516,73983,0,6,f +4516,85984,85,4,f +4516,85984,0,3,f +4516,87081,0,1,f +4516,87611,0,1,f +4516,87747,15,2,f +4516,88930,27,2,f +4516,90194,288,4,f +4516,92280,378,2,f +4516,92579,52,1,f +4516,92946,288,2,f +4516,92946,27,2,f +4516,92950,27,3,f +4516,93058,297,1,t +4516,93058,297,2,f +4516,93273,27,2,f +4516,93606,4,1,f +4516,94448pat0003,52,2,f +4516,9445stk01,9999,1,t +4516,970c00pr0270,4,1,f +4516,970c00pr0274,1,1,f +4516,970c00pr0275,15,1,f +4516,973pr1883c01,4,1,f +4516,973pr1884c01,4,1,f +4516,973pr1896c01,1,1,f +4516,973pr1897c01,15,1,f +4516,98132,297,1,f +4516,98132,179,1,f +4516,98133pr0002,1,1,f +4516,98133pr0003,15,1,f +4516,98134,297,1,f +4516,98138,71,1,t +4516,98138,297,4,f +4516,98138,71,8,f +4516,98138,297,1,t +4516,98138pr0003,36,1,t +4516,98138pr0003,36,1,f +4516,98141,85,2,f +4516,98141,297,2,f +4516,98147pr0001,4,1,f +4516,98147pr0002,4,1,f +4516,98342,27,4,f +4516,99778pr0002,4,1,f +4517,2780,0,2,f +4517,2780,0,1,t +4517,30552,72,2,f +4517,30553,72,2,f +4517,32062,4,4,f +4517,4497,179,3,f +4517,4519,71,1,f +4517,48729b,72,2,f +4517,48729b,72,1,t +4517,53551,148,3,f +4517,54821,148,1,f +4517,64262,35,1,f +4517,90607,0,2,f +4517,90609,72,1,f +4517,90612,0,1,f +4517,90616,72,2,f +4517,90617,0,2,f +4517,90626,0,1,f +4517,90639,297,2,f +4517,90641,297,2,f +4517,90650,148,2,f +4517,90661,297,2,f +4517,90661,179,1,f +4517,92217,148,2,f +4517,93571,0,2,f +4517,93575,179,1,f +4517,98562,148,2,f +4517,98563,297,1,f +4517,98564,35,1,f +4517,98566,35,2,f +4517,98567,0,1,f +4517,98569pr0004,297,1,f +4517,98570pat01,15,1,f +4517,98571,148,1,f +4517,98574,297,1,f +4518,16542,7,1,f +4518,2350b,4,1,f +4518,2351,0,1,f +4518,2412b,15,2,f +4518,2424,15,1,f +4518,2447,42,1,t +4518,2458,7,2,f +4518,2877,7,1,f +4518,3002,15,1,f +4518,3009,4,1,f +4518,3010,4,4,f +4518,3010p70,4,2,f +4518,3010px1,4,1,f +4518,30182,4,1,f +4518,30184,4,1,f +4518,30194,8,1,f +4518,30237a,4,4,f +4518,30261,14,4,f +4518,30278c01,0,1,f +4518,3032,0,2,f +4518,30365,8,4,f +4518,30387pr0002,15,4,f +4518,30388,7,1,f +4518,30389a,7,1,f +4518,3039pc2,15,1,f +4518,3040b,15,1,f +4518,3040b,33,6,f +4518,3062b,0,1,f +4518,3068bp70,15,1,f +4518,3069b,1,1,f +4518,3403c01,15,1,f +4518,3666,0,2,f +4518,3823,33,1,f +4518,3829c01,15,1,f +4518,3834,15,1,f +4518,3835,7,2,f +4518,3962b,8,1,f +4518,4070,15,1,f +4518,4208,0,1,f +4518,4209,4,1,f +4518,4600,7,3,f +4518,4854,4,1,f +4518,4865a,15,5,f +4518,6014a,15,10,f +4518,6015,0,10,f +4518,6141,33,4,f +4518,6141,33,1,t +4518,6141,42,1,t +4518,6141,42,1,f +4518,6212,4,1,f +4518,fire006,-1,1,f +4518,fire007,-1,1,f +4518,fire008,-1,1,f +4520,11477,72,3,f +4520,15070,15,2,f +4520,15208,72,2,f +4520,15208,15,2,f +4520,15672,72,1,f +4520,3002,72,1,f +4520,3004,72,2,f +4520,3005,72,1,f +4520,3021,1,2,f +4520,3021,71,2,f +4520,3023,71,1,f +4520,3024,71,1,f +4520,3024,0,1,t +4520,3024,71,1,t +4520,3024,4,1,t +4520,3024,4,1,f +4520,3024,0,1,f +4520,3070b,71,1,f +4520,3070b,71,1,t +4520,3622,72,1,f +4520,3623,71,1,f +4520,3660,72,1,f +4520,3665,1,2,f +4520,3665,72,1,f +4520,4070,72,7,f +4520,4274,1,1,t +4520,4274,1,2,f +4520,4286,72,2,f +4520,50950,72,2,f +4520,54200,72,1,t +4520,54200,72,4,f +4520,54200,0,1,t +4520,54200,0,1,f +4520,63864,71,1,f +4520,6541,71,2,f +4520,98138pr0008,15,1,t +4520,98138pr0008,15,2,f +4521,2540,14,1,f +4521,30027b,71,4,f +4521,30028,0,4,f +4521,3004,14,1,f +4521,3004,72,1,f +4521,3004pt6,72,2,f +4521,3020,14,1,f +4521,3021,72,2,f +4521,3023,14,1,f +4521,3023,47,2,f +4521,4600,0,2,f +4525,3034,15,8,f +4526,2335,15,1,f +4526,2335,4,2,f +4526,2412b,15,2,f +4526,2431,1,1,f +4526,2431,15,1,f +4526,2431,4,2,f +4526,2444,4,2,f +4526,2456,0,1,f +4526,2540,0,2,f +4526,2540,1,2,f +4526,2555,1,2,f +4526,2555,15,4,f +4526,2780,0,1,t +4526,2780,0,6,f +4526,3020,1,1,f +4526,3020,19,1,f +4526,3020,15,1,f +4526,3021,0,1,f +4526,3021,15,1,f +4526,3021,19,1,f +4526,3021,1,2,f +4526,3023,0,2,f +4526,3023,1,1,f +4526,3023,19,2,f +4526,30236,0,1,f +4526,30261,15,1,f +4526,3031,1,1,f +4526,3032,19,4,f +4526,3037,0,1,f +4526,30602,1,2,f +4526,3069b,0,1,f +4526,32013,4,2,f +4526,32014,4,2,f +4526,32028,15,1,f +4526,32062,0,2,f +4526,32073,71,2,f +4526,3660,0,1,f +4526,3710,0,1,f +4526,3710,1,3,f +4526,3741,2,1,t +4526,3741,2,4,f +4526,3795,0,2,f +4526,3895,4,1,f +4526,3941,15,1,f +4526,3957a,15,2,f +4526,3958,4,2,f +4526,4032a,15,2,f +4526,4032a,0,1,f +4526,4150,0,1,f +4526,41529,71,1,f +4526,41769,0,1,f +4526,41770,0,1,f +4526,4274,71,1,t +4526,4274,71,4,f +4526,43093,1,2,f +4526,44674,1,1,f +4526,44675,0,2,f +4526,44728,0,2,f +4526,44728,1,2,f +4526,47457,1,1,f +4526,48336,15,1,f +4526,50948,0,1,f +4526,50949,1,1,f +4526,50950,0,2,f +4526,53451,15,2,f +4526,53451,15,1,t +4526,59443,71,2,f +4526,6014b,71,4,f +4526,6014b,15,4,f +4526,6015,0,8,f +4526,6081,1,1,f +4526,6141,14,1,t +4526,6141,14,2,f +4526,6141,46,2,t +4526,6141,1,1,t +4526,6141,1,2,f +4526,6141,46,4,f +4526,6157,71,2,f +4526,6157,15,2,f +4526,63965,71,2,f +4526,64700,4,1,f +4526,6636,19,4,f +4526,86501,72,1,f +4527,2730,14,4,f +4527,3700,14,24,f +4527,3701,14,16,f +4527,3702,14,8,f +4527,3703,14,4,f +4527,3894,14,8,f +4527,3895,14,4,f +4529,767,8,4,f +4529,u9137,7,1,f +4530,2357,320,4,f +4530,2357,70,8,f +4530,2357,15,6,f +4530,2357,313,20,f +4530,2377,15,17,f +4530,2412b,71,4,f +4530,2412b,15,18,f +4530,2412b,0,3,f +4530,2420,0,2,f +4530,2420,70,4,f +4530,2431,313,3,f +4530,2431,70,2,f +4530,2432,70,24,f +4530,2445,70,10,f +4530,2456,0,1,f +4530,2508,15,2,f +4530,2540,15,2,f +4530,2555,71,2,f +4530,2566,0,2,f +4530,2584,70,1,f +4530,2585,71,1,f +4530,2634c02,15,2,f +4530,2654,0,25,f +4530,2877,15,8,f +4530,298c04,15,1,t +4530,298c04,15,2,f +4530,3001,313,4,f +4530,3001,15,1,f +4530,3001,320,2,f +4530,3001,70,4,f +4530,3003,313,2,f +4530,3004,0,3,f +4530,3004,70,4,f +4530,3004,15,6,f +4530,3004,313,2,f +4530,3005,313,4,f +4530,3005,70,8,f +4530,3005,15,8,f +4530,3005,320,2,f +4530,3007,71,30,f +4530,3007,313,1,f +4530,3007,15,14,f +4530,3008,15,1,f +4530,3009,70,2,f +4530,3009,313,2,f +4530,3010,15,5,f +4530,3010,313,9,f +4530,30192,72,1,f +4530,3020,70,2,f +4530,3020,15,1,f +4530,3020,313,2,f +4530,3020,320,1,f +4530,3020,25,2,f +4530,3022,320,1,f +4530,3022,313,4,f +4530,3022,15,3,f +4530,3023,15,35,f +4530,3023,25,4,f +4530,3023,71,62,f +4530,30256,15,1,f +4530,3028,320,9,f +4530,3029,320,1,f +4530,3034,70,5,f +4530,3034,71,30,f +4530,3034,15,14,f +4530,3035,70,2,f +4530,3035,15,6,f +4530,3037,320,2,f +4530,30374,15,2,f +4530,30374,0,4,f +4530,30383,72,4,f +4530,3040b,15,2,f +4530,30602,25,2,f +4530,30602,320,1,f +4530,3062b,0,3,f +4530,3063b,0,2,f +4530,3063b,313,2,f +4530,3069b,40,2,f +4530,3069b,313,11,f +4530,3069b,70,6,f +4530,3070b,34,1,t +4530,3070b,70,4,f +4530,3070b,36,1,f +4530,3070b,313,1,t +4530,3070b,34,1,f +4530,3070b,70,1,t +4530,3070b,36,1,t +4530,3070b,313,2,f +4530,32002,72,2,f +4530,32002,72,1,t +4530,32028,15,2,f +4530,3245b,15,8,f +4530,32474,15,1,f +4530,3460,15,1,f +4530,3622,70,2,f +4530,3660,313,2,f +4530,3665,313,16,f +4530,3666,70,5,f +4530,3666,15,2,f +4530,3684,0,2,f +4530,3710,15,17,f +4530,3710,0,2,f +4530,3743,15,6,f +4530,3747b,313,2,f +4530,3747b,320,1,f +4530,3749,19,1,f +4530,3794a,15,7,f +4530,3794a,70,7,f +4530,3832,70,12,f +4530,3937,15,2,f +4530,3938,70,22,f +4530,3941,0,1,f +4530,4070,15,14,f +4530,4081b,15,2,f +4530,4085c,0,1,f +4530,4162,313,4,f +4530,42023,313,14,f +4530,42023,320,10,f +4530,4286,313,2,f +4530,4287,320,10,f +4530,4287,313,16,f +4530,43337,70,2,f +4530,43337,313,24,f +4530,43720,320,2,f +4530,43721,320,2,f +4530,43722,15,1,f +4530,43722,70,2,f +4530,43723,70,2,f +4530,43723,15,1,f +4530,44301a,15,2,f +4530,44302a,15,3,f +4530,44302a,70,3,f +4530,4445,320,6,f +4530,44728,72,8,f +4530,4477,70,12,f +4530,4510,15,2,f +4530,4588,70,2,f +4530,4589,15,6,f +4530,4589,70,10,f +4530,4599a,15,10,f +4530,4623,15,2,f +4530,47405,320,2,f +4530,4862,40,17,f +4530,4865a,15,4,f +4530,4865a,313,2,f +4530,56823c28,0,1,f +4530,6091,25,4,f +4530,6111,313,12,f +4530,6111,320,4,f +4530,6141,46,6,f +4530,6141,46,1,t +4530,6141,0,11,f +4530,6141,0,1,t +4530,6141,47,2,f +4530,6141,47,1,t +4530,6180,70,1,f +4530,6632,15,2,f +4530,6636,71,60,f +4530,6636,15,28,f +4530,6636,313,3,f +4530,75535,0,1,f +4531,132a,0,2,f +4531,3002a,14,3,f +4531,3003,47,1,f +4531,3004,14,1,f +4531,3004,0,2,f +4531,3007,14,1,f +4531,3020,14,1,f +4531,3021,14,3,f +4531,3021,0,2,f +4531,3022,14,7,f +4531,3023,14,4,f +4531,3030,0,2,f +4531,3034,0,1,f +4531,3034,14,3,f +4531,3062a,0,1,f +4531,3460,0,1,f +4531,3461,7,1,f +4531,3481,14,1,f +4531,3482,4,2,f +4531,3587,14,1,f +4531,3660,0,6,f +4531,3700b,0,2,f +4531,3707,0,1,f +4532,2421,7,2,f +4532,3003,15,3,f +4532,3004,47,2,f +4532,3020,1,1,f +4532,3020,15,3,f +4532,3022,1,1,f +4532,3034,1,2,f +4532,3039,47,1,f +4532,3298,15,1,f +4532,3641,0,2,f +4532,3747b,15,1,f +4532,3795,4,3,f +4532,3795,7,1,f +4532,4488,7,2,f +4532,4600,7,1,f +4532,4624,15,2,f +4533,3020,4,1,f +4533,3021,4,1,f +4533,3039,47,1,f +4533,3062b,15,2,f +4533,3660,1,1,f +4533,4070,14,2,f +4533,6564,1,1,f +4533,6565,1,1,f +4535,164c01,4,1,f +4535,16542,7,3,f +4535,185c01,4,3,f +4535,3001,15,4,f +4535,3003,1,3,f +4535,3003,15,2,f +4535,3004,4,1,f +4535,3004,15,4,f +4535,3004,1,1,f +4535,3005,15,6,f +4535,3010,15,10,f +4535,3020,1,1,f +4535,3020,15,2,f +4535,3020,4,1,f +4535,3021,4,1,f +4535,3021,15,4,f +4535,3021,0,1,f +4535,3022,15,1,f +4535,3023,4,2,f +4535,3023,15,2,f +4535,3024,36,1,f +4535,3024,15,4,f +4535,3024,34,1,f +4535,3031,15,2,f +4535,3032,4,1,f +4535,3040b,15,6,f +4535,3062a,14,2,f +4535,3069b,4,1,f +4535,3149c01,4,2,f +4535,3622,15,1,f +4535,3623,15,3,f +4535,3624,0,1,f +4535,3626apr0001,14,3,f +4535,3679,7,1,f +4535,3680,4,1,f +4535,3684,1,1,f +4535,3710,15,3,f +4535,3710,4,1,f +4535,3794a,15,2,f +4535,3829c01,15,1,f +4535,3834,0,2,f +4535,3835,0,2,f +4535,3838,4,2,f +4535,3937,4,1,f +4535,3938,4,1,f +4535,3959,14,4,f +4535,3959,0,4,f +4535,3962a,0,1,f +4535,4070,15,2,f +4535,4079,4,1,f +4535,4081a,4,2,f +4535,4083,14,7,f +4535,4085a,15,3,f +4535,4175,7,4,f +4535,4208,0,3,f +4535,4209,15,3,f +4535,4213,15,1,f +4535,4284,47,1,f +4535,4289,15,1,f +4535,4315,15,1,f +4535,6141,46,1,f +4535,970c00,0,3,f +4535,973p21c01,0,3,f +4535,997c01,4,1,f +4535,x149,0,3,f +4535,x467c12,0,2,f +4537,10197,72,3,f +4537,10928,72,2,f +4537,15100,0,1,f +4537,15367,0,2,f +4537,16770,52,3,f +4537,18654,72,1,f +4537,19049,42,1,f +4537,19050,42,1,f +4537,19086,72,1,f +4537,20473,52,1,f +4537,24010,0,1,f +4537,24154,0,1,f +4537,24165,27,2,f +4537,24188,148,2,f +4537,24316,70,3,f +4537,25528,148,1,f +4537,25531,85,1,f +4537,25534,52,3,f +4537,2780,0,7,f +4537,32034,0,2,f +4537,32039,0,3,f +4537,32062,4,10,f +4537,32072,0,2,f +4537,32073,71,1,f +4537,32138,0,1,f +4537,33299a,71,1,f +4537,41669,42,3,f +4537,41677,72,6,f +4537,4274,71,2,f +4537,43093,1,1,f +4537,50923,72,2,f +4537,53585,0,1,f +4537,57585,71,1,f +4537,64276,0,3,f +4537,6536,71,1,f +4537,6628,0,2,f +4537,74261,0,2,f +4537,87083,72,1,f +4537,90611,52,1,f +4537,90615,72,1,f +4537,90617,72,3,f +4537,90622,0,1,f +4537,90640,0,2,f +4537,90640,52,1,f +4537,92907,0,1,f +4537,93571,0,3,f +4537,98577,72,2,f +4537,98578,52,1,f +4537,98585,42,1,f +4537,98603s02pr0020,0,1,f +4537,99021,72,2,f +4538,2362a,0,1,f +4538,2446,1,1,f +4538,2447,0,1,f +4538,2456,0,1,f +4538,2610,14,1,f +4538,2654,7,3,f +4538,3009,0,3,f +4538,3020,4,1,f +4538,3298pb016,0,1,f +4538,3626bpx27,14,1,f +4538,3673,7,1,f +4538,3795,4,1,f +4538,3829c01,15,1,f +4538,3956,15,1,f +4538,4083,7,1,f +4538,4162,4,2,f +4538,4285b,42,1,f +4538,4287,0,2,f +4538,4617b,0,1,f +4538,6140,7,1,f +4538,970x024,0,1,f +4538,973p8ac04,0,1,f +4539,3626b,0,1,f +4539,58247,0,1,f +4539,970c00,15,1,f +4539,973pb0656c01,15,1,f +4539,x50,15,1,f +4542,45451,230,1,f +4542,46277,5,2,f +4542,46296,45,1,f +4542,clikits001pb01,29,1,f +4542,clikits009,45,2,f +4542,clikits080,5,1,f +4542,clikits098,230,1,f +4545,2412b,15,1,f +4545,2419,0,1,f +4545,2433,0,2,f +4545,2446,0,1,f +4545,2447,42,1,f +4545,2450,0,2,f +4545,2452,0,2,f +4545,3020,0,1,f +4545,3069bp13,15,2,f +4545,3626apr0001,14,1,f +4545,3838,0,1,f +4545,4276b,0,2,f +4545,4531,0,2,f +4545,4591,15,1,f +4545,4598,0,1,f +4545,970x026,15,1,f +4545,973p51c01,15,1,f +4548,3062b,15,1,f +4548,33291,5,1,t +4548,33291,5,1,f +4548,4032a,2,1,f +4548,6141,4,1,t +4548,6141,4,2,f +4548,64647,182,1,t +4548,64647,182,1,f +4550,2512,14,1,f +4550,30104,8,1,f +4550,30285,14,14,f +4550,30386,14,1,f +4550,30391,0,14,f +4550,30394,14,1,f +4550,30620,0,1,f +4550,30622,14,4,f +4550,30626,0,1,f +4550,30627,14,1,f +4550,30632,0,2,f +4550,30640,15,2,f +4550,30642,0,1,f +4550,30643,8,1,f +4550,30647px1,14,1,f +4550,30647px2,14,1,f +4550,30649px1,40,1,f +4550,30663,0,2,f +4550,3297,14,1,f +4550,3701,14,1,f +4550,3823,40,1,f +4550,40620,383,2,f +4550,40996,42,3,f +4550,42022pb03,14,4,f +4550,47973,0,1,f +4550,4865a,14,2,f +4550,js003,9999,1,f +4550,js004,9999,1,f +4551,10197,72,2,f +4551,11153,0,2,f +4551,11153,179,2,f +4551,11458,72,6,f +4551,11477,0,2,f +4551,13731,0,2,f +4551,15068,179,3,f +4551,15092,72,2,f +4551,15100,0,4,f +4551,15207,4,2,f +4551,15303,182,1,t +4551,15303,182,2,f +4551,15391,15,1,f +4551,15392,72,1,t +4551,15392,72,1,f +4551,15400,72,2,f +4551,15404,182,1,f +4551,2357,15,2,f +4551,2412b,72,2,f +4551,2420,72,2,f +4551,2458,71,2,f +4551,2654,182,3,f +4551,2780,0,3,f +4551,2780,0,1,t +4551,30000,71,2,f +4551,3001,71,2,f +4551,3004,72,8,f +4551,3008,15,2,f +4551,3010,0,2,f +4551,30165,72,6,f +4551,3020,72,5,f +4551,3023,0,2,f +4551,3023,41,13,f +4551,3023,72,2,f +4551,3032,0,2,f +4551,3034,0,1,f +4551,3039pr0018,0,1,f +4551,3062b,57,3,f +4551,32000,19,4,f +4551,32002,19,1,t +4551,32002,19,1,f +4551,32013,71,2,f +4551,32028,0,2,f +4551,32054,0,1,f +4551,32123b,14,1,t +4551,32123b,71,4,f +4551,32123b,71,1,t +4551,32123b,14,1,f +4551,32126,1,1,f +4551,32316,72,1,f +4551,32474,4,1,f +4551,32523,14,2,f +4551,3626cpr1498,4,1,f +4551,3626cpr1508,14,1,f +4551,3660,71,1,f +4551,3666,72,2,f +4551,3673,71,1,f +4551,3673,71,1,t +4551,3700,0,4,f +4551,3702,71,2,f +4551,3705,0,2,f +4551,3713,4,1,t +4551,3713,4,2,f +4551,3794b,71,4,f +4551,3794b,4,1,f +4551,3795,72,1,f +4551,3832,72,3,f +4551,3894,0,1,f +4551,3958,0,1,f +4551,3960,41,2,f +4551,4032a,72,2,f +4551,41677,72,4,f +4551,41767,0,1,f +4551,41768,0,1,f +4551,4185,72,2,f +4551,4274,71,2,f +4551,4274,71,1,t +4551,4285b,41,4,f +4551,43093,1,7,f +4551,4349,4,2,f +4551,44375a,0,4,f +4551,44728,72,10,f +4551,44809,0,1,f +4551,4595,0,1,f +4551,4740,72,2,f +4551,47755,0,3,f +4551,47994,0,1,f +4551,50943,179,2,f +4551,54200,41,2,t +4551,54200,41,4,f +4551,55978,0,2,f +4551,56145,71,2,f +4551,59443,0,2,f +4551,59900,182,4,f +4551,60474,0,1,f +4551,60481,0,6,f +4551,60483,0,2,f +4551,60485,71,1,f +4551,61184,71,1,f +4551,6126b,182,2,f +4551,61409,0,2,f +4551,61409,72,2,f +4551,6141,47,1,t +4551,6141,182,10,f +4551,6141,47,4,f +4551,6141,182,3,t +4551,62462,179,4,f +4551,62810,71,1,f +4551,63868,0,2,f +4551,64728,4,2,f +4551,6536,71,2,f +4551,6541,1,2,f +4551,6575,0,2,f +4551,6587,28,4,f +4551,72326,4,1,f +4551,78c07,179,2,f +4551,85959pat0003,36,1,f +4551,87083,72,2,f +4551,87580,71,2,f +4551,90397,320,1,f +4551,91988,71,1,f +4551,92579,41,1,f +4551,92946,0,8,f +4551,93273,0,4,f +4551,970c00pr0721,320,1,f +4551,970c00pr0734,0,1,f +4551,973pr2771c01,320,1,f +4551,973pr2781c01,0,1,f +4551,98138,41,8,f +4551,98138,179,4,f +4551,98138,179,1,t +4551,98138,41,1,t +4551,98285,71,1,f +4551,98286,71,1,f +4551,98313,179,2,f +4551,98834,0,1,f +4551,99207,71,4,f +4551,99781,71,2,f +4552,2460,4,1,f +4552,2479,0,1,f +4552,3003,2,1,f +4552,3020,4,2,f +4552,3034,0,1,f +4552,3039,42,1,f +4552,3039,4,1,f +4552,3298p19,14,1,f +4552,3460,0,2,f +4552,3660,2,2,f +4558,2586pw1,19,1,f +4558,3004,15,1,f +4558,30113,6,1,f +4558,30127p01,15,1,t +4558,30127p01,15,1,f +4558,30136,6,1,f +4558,3022,14,1,f +4558,3023,14,1,f +4558,3039,1,1,f +4558,3626bpx61,14,1,f +4558,3794a,4,1,f +4558,4070,0,2,f +4558,4497,0,1,f +4558,4498,0,1,f +4558,4499,0,1,f +4558,4589,1,1,f +4558,6091,4,2,f +4558,970c00pb026,19,1,f +4558,973px107c01,6,1,f +4559,3022,322,2,f +4559,3024,29,2,f +4559,3024,30,2,f +4559,3069b,25,2,f +4559,3069b,322,2,f +4559,3069b,26,2,f +4559,3176,71,2,f +4559,4081b,15,2,f +4559,6141,15,2,f +4560,2456,15,2,f +4560,2456,1,2,f +4560,2456,14,2,f +4560,2456,4,2,f +4560,3001,1,12,f +4560,3001,383,1,f +4560,3001,14,11,f +4560,3001,4,12,f +4560,3001,0,6,f +4560,3001,2,6,f +4560,3001,15,12,f +4560,3002,14,6,f +4560,3002,1,6,f +4560,3002,2,4,f +4560,3002,0,4,f +4560,3002,4,6,f +4560,3002,15,6,f +4560,3003,0,10,f +4560,3003,2,10,f +4560,3003,1,20,f +4560,3003,4,20,f +4560,3003,14,20,f +4560,3003,15,20,f +4560,3004,14,30,f +4560,3004,15,30,f +4560,3004,1,30,f +4560,3004,4,30,f +4560,3004,0,15,f +4560,3004,2,14,f +4560,3005,15,20,f +4560,3005,14,20,f +4560,3005,2,6,f +4560,3005,1,20,f +4560,3005,0,10,f +4560,3005,4,20,f +4560,3008,1,2,f +4560,3008,4,2,f +4560,3008,15,2,f +4560,3008,14,2,f +4560,3009,1,4,f +4560,3009,4,4,f +4560,3009,14,4,f +4560,3009,15,4,f +4560,3010,1,20,f +4560,3010,0,12,f +4560,3010,14,20,f +4560,3010,4,20,f +4560,3010,15,20,f +4560,3010,2,10,f +4560,3622,2,2,f +4560,3622,14,6,f +4560,3622,0,4,f +4560,3622,1,6,f +4560,3622,15,6,f +4560,3622,4,6,f +4563,3001,15,1,f +4563,3002,0,2,f +4563,3004,15,1,f +4563,3020,0,1,f +4563,3021,0,2,f +4563,3021,15,3,f +4563,3023,15,2,f +4563,3039,15,2,f +4563,3062b,14,5,f +4563,3063b,15,2,f +4563,3622,15,1,f +4563,3623,14,3,f +4563,3660,15,2,f +4563,3794a,15,4,f +4563,4070,15,5,f +4563,4589,4,1,f +4563,4871,15,1,f +4563,6141,0,4,f +4564,48989,71,15,f +4564,55615,71,15,f +4565,46296,46,1,f +4565,clikits004,46,2,f +4565,clikits005,182,2,f +4565,clikits026,45,1,f +4565,clikits040,57,1,f +4565,clikits081,462,1,f +4565,clikits084,57,1,f +4567,3031,72,3,f +4567,30565,72,12,f +4567,64799,14,6,f +4567,6558,1,2,f +4567,87926,15,6,f +4568,10314,29,2,f +4568,11055,15,1,f +4568,11213,322,1,f +4568,2421,0,2,f +4568,2496,0,3,f +4568,2496,0,1,t +4568,2654,4,1,f +4568,2655,71,3,f +4568,3001,321,1,f +4568,3001,85,2,f +4568,3001,4,1,f +4568,3001,29,3,f +4568,3001,288,1,f +4568,3002,27,1,f +4568,30028,0,4,f +4568,3003,84,2,f +4568,3003,4,1,f +4568,3003,29,1,f +4568,3003,320,1,f +4568,3003,70,2,f +4568,3004,5,2,f +4568,3004,15,1,f +4568,3004,158,1,f +4568,3004,84,3,f +4568,3004,85,4,f +4568,3004,4,2,f +4568,3004,29,6,f +4568,3004,191,4,f +4568,3004,0,2,f +4568,3004,25,4,f +4568,3004,27,1,f +4568,30044,71,1,f +4568,30136,70,1,f +4568,3020,15,2,f +4568,3020,70,2,f +4568,3020,320,1,f +4568,3020,1,1,f +4568,3021,70,2,f +4568,3021,72,1,f +4568,3022,2,1,f +4568,3023,70,2,f +4568,3023,320,1,f +4568,3023,0,4,f +4568,3023,19,4,f +4568,3023,15,1,f +4568,3023,321,1,f +4568,3028,10,1,f +4568,3031,4,2,f +4568,3034,4,1,f +4568,3037,26,4,f +4568,30374,70,1,f +4568,3039,47,2,f +4568,3039,1,1,f +4568,3039,4,1,f +4568,3062b,27,3,f +4568,3297,26,2,f +4568,3298,321,1,f +4568,33291,31,2,f +4568,33291,31,1,t +4568,33291,10,2,f +4568,33291,10,1,t +4568,3622,29,1,f +4568,3633,15,2,f +4568,3660,322,2,f +4568,3660,70,2,f +4568,3665,72,2,f +4568,3679,71,1,f +4568,3680,15,1,f +4568,3710,320,2,f +4568,3710,30,1,f +4568,3747b,1,1,f +4568,3795,70,1,f +4568,3795,72,1,f +4568,3795,1,1,f +4568,3832,1,1,f +4568,3941,14,6,f +4568,3941,46,1,f +4568,3942c,15,1,f +4568,3942c,1,1,f +4568,4032a,15,1,f +4568,43898,0,1,f +4568,4460b,15,2,f +4568,44728,0,1,f +4568,44728,1,1,f +4568,4488,71,2,f +4568,4600,0,2,f +4568,4727,10,2,f +4568,49668,0,4,f +4568,50950,288,2,f +4568,50950,27,2,f +4568,54200,27,1,t +4568,54200,27,1,f +4568,59900,25,2,f +4568,59900,2,2,f +4568,59900,0,1,f +4568,60032,15,2,f +4568,60477,4,2,f +4568,60598,15,1,f +4568,60599,15,1,f +4568,60603,41,1,f +4568,60616a,41,1,f +4568,6141,70,3,f +4568,6141,14,1,f +4568,6141,0,1,t +4568,6141,14,1,t +4568,6141,29,1,t +4568,6141,29,4,f +4568,6141,70,1,t +4568,6141,0,3,f +4568,6182,15,2,f +4568,6215,15,1,f +4568,6215,2,1,f +4568,74967,71,4,f +4568,85080,4,4,f +4568,85080,15,8,f +4568,85984,4,2,f +4568,87087,29,1,f +4568,87087,70,2,f +4568,91501,19,2,f +4568,92947,71,2,f +4568,94161,70,1,f +4568,96874,25,1,t +4568,98138pr0008,15,1,t +4568,98138pr0008,15,2,f +4568,98138pr0026,15,2,f +4568,98138pr0026,15,1,t +4568,98262,14,2,f +4574,11090,72,1,f +4574,11212,15,2,f +4574,11214,72,2,f +4574,11303,272,1,f +4574,15068,1,1,f +4574,15068,15,3,f +4574,15210,0,2,f +4574,15303,35,2,f +4574,15400,72,1,f +4574,15423pr0002,379,1,f +4574,15445,72,1,f +4574,15535,72,1,f +4574,15573,72,4,f +4574,15712,72,4,f +4574,21608,0,2,f +4574,2412b,72,4,f +4574,2412b,1,2,f +4574,2431,0,1,f +4574,2431,71,1,f +4574,2432,72,2,f +4574,2445,1,2,f +4574,2479,0,1,f +4574,2486,0,1,f +4574,2653,0,4,f +4574,2780,0,14,f +4574,2780,0,1,t +4574,3003,71,2,f +4574,30031,71,1,f +4574,3004,1,4,f +4574,3006,15,2,f +4574,3009,15,3,f +4574,3010,15,6,f +4574,3010,1,4,f +4574,3020,71,2,f +4574,3022,70,2,f +4574,3023,1,3,f +4574,3023,33,1,f +4574,3023,15,3,f +4574,3023,71,2,f +4574,3024,33,2,f +4574,3024,182,2,f +4574,3024,33,1,t +4574,3024,182,1,t +4574,3032,72,2,f +4574,3034,1,1,f +4574,3034,72,3,f +4574,3035,15,1,f +4574,3036,72,2,f +4574,3036,15,2,f +4574,30414,14,1,f +4574,3062b,71,1,f +4574,3065,40,4,f +4574,3069b,15,2,f +4574,3069b,0,2,f +4574,3069bpr0030,72,2,f +4574,3069bpr0137,71,1,f +4574,3070b,36,4,f +4574,3070b,36,2,t +4574,32028,14,2,f +4574,32062,4,2,f +4574,32324,71,2,f +4574,32532,71,1,f +4574,3460,0,1,f +4574,3623,0,8,f +4574,3623,1,2,f +4574,3626cpr0937,78,1,f +4574,3626cpr1467,78,1,f +4574,3626cpr1698,78,1,f +4574,3666,72,4,f +4574,3666,1,9,f +4574,3666,70,4,f +4574,37,72,1,t +4574,37,72,1,f +4574,3701,72,2,f +4574,3701,0,3,f +4574,3705,0,4,f +4574,3710,1,2,f +4574,3710,15,1,f +4574,3713,71,1,t +4574,3713,71,4,f +4574,3738,15,1,f +4574,3788,1,1,f +4574,3795,15,3,f +4574,3795,71,2,f +4574,3821,15,1,f +4574,3822,15,1,f +4574,3829c01,14,1,f +4574,4032a,71,2,f +4574,4070,1,1,f +4574,4162,72,2,f +4574,4176,40,1,f +4574,4181,15,1,f +4574,4182,15,1,f +4574,4183,40,2,f +4574,43093,1,1,f +4574,44728,0,2,f +4574,48336,71,2,f +4574,50859b,0,1,f +4574,50861,0,2,f +4574,50862,71,2,f +4574,55982,0,4,f +4574,56891,0,4,f +4574,59443,14,4,f +4574,59900,35,1,f +4574,6005,0,4,f +4574,60479,15,2,f +4574,60484,72,4,f +4574,60897,71,4,f +4574,6111,1,2,f +4574,6111,15,4,f +4574,61184,71,1,f +4574,6141,182,1,t +4574,6141,182,4,f +4574,6180,15,1,f +4574,6187,0,2,f +4574,62711,484,1,f +4574,62810,84,1,f +4574,63864,72,4,f +4574,6541,15,2,f +4574,6558,1,3,f +4574,6636,71,4,f +4574,6636,15,1,f +4574,85983,288,1,f +4574,87087,15,2,f +4574,87087,72,1,f +4574,87544,15,2,f +4574,87552,71,2,f +4574,87580,14,2,f +4574,87609,15,1,f +4574,87989,27,1,f +4574,87989,27,1,t +4574,88072,0,2,f +4574,93274,72,2,f +4574,96874,25,1,t +4574,970c00pr0886,72,1,f +4574,970c00pr0888,72,1,f +4574,970c00pr0905,15,1,f +4574,973pr3051c01,15,1,f +4574,973pr3054c01,70,1,f +4574,973pr3060c01,272,1,f +4574,98065pr0003,288,1,f +4574,98065pr0004,326,1,f +4574,98067pr0003,378,1,f +4574,98067pr0004,28,1,f +4574,98068pr0003,378,1,f +4574,98068pr0004,28,1,f +4574,98069pr0003,378,1,f +4574,98069pr0004,28,1,f +4574,98071pr0003,378,1,f +4574,98071pr0004,28,1,f +4574,98072pr0003,378,1,f +4574,98072pr0004,28,1,f +4574,98138,297,1,t +4574,98138,46,2,t +4574,98138,46,5,f +4574,98138,297,8,f +4574,98165pr0003,378,1,f +4574,98165pr0004,28,1,f +4574,98560,72,2,f +4576,820,15,1,f +4576,821,15,1,f +4576,822ac01,4,1,f +4578,11090,15,1,f +4578,11211,19,2,f +4578,15068,72,1,f +4578,15391,0,1,f +4578,15392,72,1,f +4578,15392,72,1,t +4578,15712,71,2,f +4578,23295,15,1,f +4578,2412b,0,1,f +4578,2412b,72,3,f +4578,2540,0,1,f +4578,2654,47,3,f +4578,3021,71,1,f +4578,3022,72,5,f +4578,3022,71,2,f +4578,3023,71,2,f +4578,3032,72,1,f +4578,3032,71,1,f +4578,30374,0,1,f +4578,3039,71,2,f +4578,3040b,71,4,f +4578,3070bpr0152,15,1,t +4578,3070bpr0152,15,1,f +4578,32073,71,2,f +4578,3623,72,1,f +4578,3626cpr1149,78,1,f +4578,3660,71,4,f +4578,3700,72,4,f +4578,3710,72,3,f +4578,3795,72,1,f +4578,3942c,71,2,f +4578,4085c,0,1,f +4578,41769,72,1,f +4578,41770,72,1,f +4578,42446,0,1,f +4578,42446,0,1,t +4578,43722,71,1,f +4578,43723,71,1,f +4578,4599b,15,1,f +4578,4599b,15,1,t +4578,58247,0,1,f +4578,60897,72,1,f +4578,61409,0,2,f +4578,6141,35,1,t +4578,6141,57,2,f +4578,6141,57,1,t +4578,6141,35,3,f +4578,6141,15,1,f +4578,6141,15,1,t +4578,64567,0,1,t +4578,64567,0,1,f +4578,6564,71,1,f +4578,6565,71,1,f +4578,85984,71,4,f +4578,970c00pr0929,15,1,f +4578,973pr3141c01,15,1,f +4578,98100,0,2,f +4578,99207,71,2,f +4578,99780,72,2,f +4578,99781,71,4,f +4579,2446,1,1,f +4579,2447,40,1,t +4579,2447,40,1,f +4579,3626bpr0279,14,1,f +4579,4697b,71,1,f +4579,4697b,71,1,t +4579,50859b,0,1,f +4579,50860,25,1,f +4579,50861,0,2,f +4579,50862,72,2,f +4579,970c00,1,1,f +4579,973pr1363c01,14,1,f +4580,10252stk01,9999,1,f +4580,10314,19,2,f +4580,11090,72,4,f +4580,11153,71,2,f +4580,11153,14,2,f +4580,11153,321,6,f +4580,11211,71,2,f +4580,11215,71,11,f +4580,11399,72,1,f +4580,11458,72,2,f +4580,11476,321,1,f +4580,11477,71,6,f +4580,11477,321,6,f +4580,11477,19,2,f +4580,13547,71,6,f +4580,13731,14,2,f +4580,13971,71,1,f +4580,14716,15,1,f +4580,14719,0,4,f +4580,15068,19,10,f +4580,15100,0,2,f +4580,15413,0,4,f +4580,15571,321,4,f +4580,15573,70,2,f +4580,15573,19,1,f +4580,15573,321,21,f +4580,15672,71,7,f +4580,15672,321,6,f +4580,15706,321,2,f +4580,15712,72,3,f +4580,15712,71,1,f +4580,16577,71,1,f +4580,18649,0,2,f +4580,18651,0,1,f +4580,18671,72,2,f +4580,18677,71,2,f +4580,23443,0,1,f +4580,23443,71,3,f +4580,2412b,71,2,f +4580,2412b,321,6,f +4580,2412b,0,16,f +4580,2420,71,14,f +4580,2420,19,4,f +4580,24246,182,2,f +4580,24246,71,1,t +4580,24246,71,2,f +4580,24246,182,1,t +4580,2431,0,1,f +4580,2431,19,7,f +4580,2431,15,1,f +4580,2431,71,2,f +4580,2436,71,2,f +4580,2453b,15,1,f +4580,2458,71,6,f +4580,24599,321,8,f +4580,24607,47,1,f +4580,2486,72,2,f +4580,26245,15,1,f +4580,2654,71,4,f +4580,2780,0,12,f +4580,2780,0,1,t +4580,2819,71,1,f +4580,2921,15,2,f +4580,2921,321,4,f +4580,298c02,0,1,f +4580,298c02,0,1,t +4580,3001,0,1,f +4580,3003,19,1,f +4580,3004,321,15,f +4580,3004,19,2,f +4580,3004,71,3,f +4580,3005,47,6,f +4580,3005,19,8,f +4580,3008,0,1,f +4580,3009,19,2,f +4580,3009,71,3,f +4580,3010,19,5,f +4580,30165,72,3,f +4580,3020,4,2,f +4580,3020,19,2,f +4580,3020,71,5,f +4580,3021,72,4,f +4580,3021,19,6,f +4580,3022,19,9,f +4580,3022,71,4,f +4580,3023,19,24,f +4580,3023,4,4,f +4580,3023,0,6,f +4580,3023,71,2,f +4580,3023,321,33,f +4580,3023,72,8,f +4580,3024,19,22,f +4580,3024,72,1,t +4580,3024,0,2,t +4580,3024,72,2,f +4580,3024,321,3,t +4580,3024,15,2,t +4580,3024,71,4,f +4580,3024,0,4,f +4580,3024,71,1,t +4580,3024,19,3,t +4580,3024,15,5,f +4580,3024,321,32,f +4580,3031,71,1,f +4580,3034,19,2,f +4580,3034,72,3,f +4580,3035,71,2,f +4580,3035,72,1,f +4580,30374,71,4,f +4580,30383,72,2,f +4580,3040b,321,8,f +4580,3040b,0,2,f +4580,3040b,71,2,f +4580,30414,15,1,f +4580,3062b,2,1,f +4580,3062b,4,1,f +4580,3068b,4,2,f +4580,3069b,71,2,f +4580,3069b,70,4,f +4580,3069b,321,30,f +4580,3069b,4,2,f +4580,3069b,19,3,f +4580,3070b,19,5,f +4580,3070b,71,2,t +4580,3070b,15,1,t +4580,3070b,321,16,f +4580,3070b,15,2,f +4580,3070b,19,1,t +4580,3070b,321,3,t +4580,3070b,71,6,f +4580,3070b,14,1,t +4580,3070b,36,1,t +4580,3070b,36,2,f +4580,3070b,14,2,f +4580,32028,321,2,f +4580,32028,71,2,f +4580,32054,71,2,f +4580,32123b,71,1,t +4580,32123b,71,1,f +4580,32123b,14,2,t +4580,32123b,14,4,f +4580,32531,0,3,f +4580,3298,71,4,f +4580,3460,14,2,f +4580,3460,72,6,f +4580,3460,19,1,f +4580,3460,2,4,f +4580,3622,321,16,f +4580,3622,19,4,f +4580,3623,72,20,f +4580,3623,14,2,f +4580,3623,321,14,f +4580,3623,19,8,f +4580,3623,4,4,f +4580,3623,2,2,f +4580,3660,71,2,f +4580,3665,71,4,f +4580,3666,71,8,f +4580,3666,14,2,f +4580,3666,0,3,f +4580,3700,0,2,f +4580,3701,0,5,f +4580,3702,71,3,f +4580,3703,71,2,f +4580,3710,19,1,f +4580,3710,71,3,f +4580,3710,72,2,f +4580,3710,321,8,f +4580,3713,4,2,t +4580,3713,4,6,f +4580,3794b,71,20,f +4580,3795,71,1,f +4580,3795,19,3,f +4580,3795,321,1,f +4580,3832,71,3,f +4580,4070,19,6,f +4580,4070,71,4,f +4580,41539,71,1,f +4580,4162,72,1,f +4580,4162,19,1,f +4580,4162,71,2,f +4580,41747,321,1,f +4580,41748,321,1,f +4580,4274,1,2,t +4580,4274,1,4,f +4580,43093,1,2,f +4580,43708,321,2,f +4580,43857,71,2,f +4580,44301a,71,2,f +4580,44302a,71,4,f +4580,44568,71,1,f +4580,44570,72,1,f +4580,44676,15,1,f +4580,44728,15,4,f +4580,4477,321,6,f +4580,4477,71,5,f +4580,4519,14,2,f +4580,45590,0,2,f +4580,4735,71,2,f +4580,4740,47,2,f +4580,4740,71,2,f +4580,47905,19,4,f +4580,47905,15,4,f +4580,48336,71,5,f +4580,48729b,71,5,f +4580,48729b,71,2,t +4580,50950,321,10,f +4580,54200,143,3,f +4580,54200,321,3,t +4580,54200,143,1,t +4580,54200,71,1,t +4580,54200,71,2,f +4580,54200,321,12,f +4580,56145,15,4,f +4580,56898,0,1,f +4580,56904,15,1,f +4580,59426,72,4,f +4580,59443,4,4,f +4580,60476,71,2,f +4580,60478,0,1,f +4580,60478,71,4,f +4580,60481,321,2,f +4580,60581,47,4,f +4580,60897,19,8,f +4580,60897,71,4,f +4580,6091,19,6,f +4580,6091,321,8,f +4580,6091,4,12,f +4580,6091,0,2,f +4580,6111,71,2,f +4580,61252,71,2,f +4580,6141,182,1,t +4580,6141,15,22,f +4580,6141,182,2,f +4580,6141,15,2,t +4580,6141,179,1,t +4580,6141,0,10,f +4580,6141,0,1,t +4580,6141,179,5,f +4580,6190,72,2,f +4580,62462,71,2,f +4580,63864,0,4,f +4580,63864,15,2,f +4580,63864,72,1,f +4580,63864,19,6,f +4580,63864,14,2,f +4580,6541,0,6,f +4580,6558,1,11,f +4580,6636,0,2,f +4580,6636,14,2,f +4580,6636,72,2,f +4580,6636,71,3,f +4580,6636,70,4,f +4580,75c07,72,2,f +4580,75c09,71,1,f +4580,85543,15,1,f +4580,85861,71,1,f +4580,85861,71,1,t +4580,85984,321,16,f +4580,85984,19,4,f +4580,85984,71,4,f +4580,85984,0,2,f +4580,87079,0,2,f +4580,87082,71,2,f +4580,87087,321,12,f +4580,87087,19,2,f +4580,87087,72,4,f +4580,87087,4,4,f +4580,87580,19,4,f +4580,87580,321,1,f +4580,87994,0,1,f +4580,87994,0,1,t +4580,91884,179,2,f +4580,92280,71,14,f +4580,93273,0,1,f +4580,93606,321,11,f +4580,95228,34,2,f +4580,96874,25,1,t +4580,98138,71,7,f +4580,98138,71,2,t +4580,98138pr0012,179,1,t +4580,98138pr0012,179,1,f +4580,98138pr0035,179,1,t +4580,98138pr0035,179,1,f +4580,98138pr0057,71,2,t +4580,98138pr0057,71,2,f +4580,98281,15,1,f +4580,99206,0,2,f +4580,99206,71,11,f +4580,99207,4,2,f +4580,99207,71,7,f +4580,99780,72,9,f +4580,99780,321,2,f +4580,99781,71,6,f +4580,99781,321,4,f +4581,11458,72,2,f +4581,11477,71,2,f +4581,15207,320,1,f +4581,15535,19,1,f +4581,15571,297,3,f +4581,15672,28,6,f +4581,20691pr0001,84,1,f +4581,21042pr0001,84,1,f +4581,21787,84,1,f +4581,2454b,19,2,f +4581,2654pr0002,19,1,f +4581,3004,71,5,f +4581,3008,19,2,f +4581,3010,71,2,f +4581,30153,34,1,f +4581,30153,33,1,f +4581,30153,36,1,f +4581,30164,297,1,f +4581,3023,19,3,f +4581,3030,72,1,f +4581,3032,320,1,f +4581,30383,72,2,f +4581,3040b,71,2,f +4581,3040b,19,4,f +4581,30553,71,2,f +4581,3068bpr0267,15,1,f +4581,3069b,28,6,f +4581,3622,71,1,f +4581,3623,72,2,f +4581,3626cpr1708,78,1,f +4581,3626cpr1745,15,1,f +4581,3659,19,1,f +4581,3665,28,8,f +4581,3673,71,1,t +4581,3673,71,2,f +4581,3710,320,1,f +4581,3795,72,1,f +4581,3830,71,1,f +4581,3831,71,1,f +4581,40379,179,2,f +4581,44728,72,2,f +4581,4599b,0,2,f +4581,4599b,0,1,t +4581,54200,71,2,f +4581,54200,71,1,t +4581,60808,19,1,f +4581,6141,47,1,t +4581,6141,47,3,f +4581,6141,297,1,t +4581,6141,27,2,f +4581,6141,4,2,f +4581,6141,297,6,f +4581,6141,27,1,t +4581,6141,4,1,t +4581,6541,19,2,f +4581,87580,297,2,f +4581,88072,71,1,f +4581,90462pr0003,19,1,f +4581,92338,297,1,f +4581,970c00,320,1,f +4581,970c00pr0911,15,1,f +4581,973pr3062c01,27,1,f +4581,973pr3104c01,15,1,f +4582,11198,27,1,f +4582,11345,25,1,f +4582,11385,191,1,f +4582,13535,4,1,f +4582,15515,322,1,f +4582,15515,27,1,f +4582,15575,322,1,f +4582,15576,1,1,f +4582,15908,27,1,f +4582,16389,191,1,f +4582,16727,85,1,f +4582,2302,10,2,f +4582,3011,5,1,f +4582,31110,25,1,f +4582,89406,4,1,f +4582,90265,14,1,f +4582,98223,27,1,f +4583,51027,45,1,f +4583,clikits004,15,2,f +4584,10201,71,1,f +4584,11090,14,2,f +4584,11153,322,4,f +4584,11477,322,6,f +4584,11477,15,2,f +4584,11605,0,1,f +4584,11816pr0003,78,1,f +4584,11816pr0009,84,1,f +4584,12825,71,1,f +4584,15470,29,2,f +4584,15470,29,1,t +4584,18759,322,2,f +4584,2412b,71,1,f +4584,2445,72,1,f +4584,2508,0,1,f +4584,2540,0,1,f +4584,2654,19,1,f +4584,3001,2,3,f +4584,3004,15,4,f +4584,3005,15,7,f +4584,3005,322,1,f +4584,3010,15,7,f +4584,3020,19,1,f +4584,3020,484,1,f +4584,3022,15,3,f +4584,3023,322,6,f +4584,3023,4,8,f +4584,3023,15,5,f +4584,30236,15,2,f +4584,3024,15,1,t +4584,3024,15,4,f +4584,3029,15,1,f +4584,3031,26,1,f +4584,30367c,322,1,f +4584,30374,15,1,f +4584,3039,27,1,f +4584,3040b,14,2,f +4584,3040b,26,2,f +4584,30414,71,1,f +4584,3062b,47,1,f +4584,3069b,27,2,f +4584,3069b,15,3,f +4584,3069b,26,3,f +4584,3069b,14,6,f +4584,3070b,36,4,f +4584,3070b,36,2,t +4584,3245c,15,2,f +4584,33291,4,4,f +4584,33291,4,2,t +4584,3460,322,2,f +4584,3623,1,4,f +4584,3659,15,2,f +4584,3660,322,5,f +4584,3665,322,4,f +4584,3666,26,4,f +4584,3666,15,1,f +4584,3666,19,4,f +4584,3666,322,4,f +4584,3710,15,2,f +4584,3710,14,7,f +4584,3710,26,7,f +4584,3795,0,2,f +4584,3795,14,2,f +4584,3795,15,2,f +4584,3829c01,71,1,f +4584,3832,19,1,f +4584,3957b,15,1,f +4584,3958,15,1,f +4584,3960pr20,15,1,f +4584,4070,72,1,f +4584,4081b,71,1,f +4584,4162,15,1,f +4584,4182,14,1,f +4584,44568,71,1,f +4584,4488,71,6,f +4584,4599b,0,1,t +4584,4599b,0,1,f +4584,4727,10,1,f +4584,47457,15,1,f +4584,4865b,322,6,f +4584,48729b,0,1,t +4584,48729b,0,1,f +4584,50745,15,6,f +4584,52107,71,1,f +4584,54200,15,2,f +4584,54200,15,1,t +4584,59900,25,1,f +4584,59900,182,2,f +4584,60032,15,1,f +4584,6014b,15,6,f +4584,60479,14,2,f +4584,60583a,15,1,f +4584,6081,322,2,f +4584,6091,322,2,f +4584,61345,15,2,f +4584,6141,27,1,t +4584,6141,57,3,f +4584,6141,0,1,t +4584,6141,4,1,t +4584,6141,4,1,f +4584,6141,15,1,t +4584,6141,27,2,f +4584,6141,46,1,t +4584,6141,33,1,t +4584,6141,182,1,t +4584,6141,46,6,f +4584,6141,33,2,f +4584,6141,0,6,f +4584,6141,15,9,f +4584,6141,2,1,t +4584,6141,2,3,f +4584,6231,322,1,f +4584,62360,47,1,f +4584,63082,71,1,f +4584,64647,57,1,t +4584,64647,57,1,f +4584,73983,71,2,f +4584,85984,14,2,f +4584,85984,0,2,f +4584,85984,15,2,f +4584,87079,26,3,f +4584,87544,15,1,f +4584,87580,71,2,f +4584,87697,0,6,f +4584,88930,322,3,f +4584,92092,72,1,f +4584,92256,70,1,f +4584,92456pr0023c01,84,1,f +4584,92456pr0040c01,78,1,f +4584,92593,71,3,f +4584,92820pr0007c01,379,1,f +4584,93095,15,2,f +4584,93274,0,1,f +4584,97781,4,3,f +4584,97782,4,3,f +4584,97783,4,3,f +4584,97784,4,3,f +4584,97785,4,1,f +4584,97787,4,1,f +4584,97790,4,1,f +4584,97791,4,1,f +4584,97793,4,1,f +4584,98389pr0001,19,1,f +4584,99781,71,2,f +4585,2335pr02,15,1,f +4585,2343,297,1,f +4585,3004,71,15,f +4585,3004,15,2,f +4585,3009,71,10,f +4585,3010,71,6,f +4585,3022,72,1,f +4585,3023,15,1,f +4585,3062b,0,10,f +4585,3065,47,1,f +4585,3068b,0,1,f +4585,3069b,25,2,f +4585,3069b,14,1,f +4585,3070b,1,9,f +4585,3070b,27,1,t +4585,3070b,15,1,t +4585,3070b,4,1,t +4585,3070b,27,9,f +4585,3070b,15,10,f +4585,3070b,4,9,f +4585,3070b,1,1,t +4585,3622,25,12,f +4585,3684,71,1,f +4585,3794b,15,3,f +4585,3795,2,1,f +4585,3857,2,1,f +4585,3867,2,1,f +4585,3957a,0,1,f +4585,4006,0,2,f +4585,4081b,27,2,f +4585,4081b,4,2,f +4585,4081b,1,2,f +4585,4081b,15,2,f +4585,48092,71,10,f +4585,48092,14,4,f +4585,54200,40,4,f +4585,54200,40,1,t +4585,6141,47,1,t +4585,6141,47,8,f +4585,6190,27,2,f +4585,6190,15,2,f +4585,6190,1,2,f +4585,6190,4,2,f +4585,64776pat0001,0,1,f +4585,6636,15,1,f +4585,85080,71,10,f +4585,85080,4,2,f +4586,10049pr0001,148,2,f +4586,10050,148,2,f +4586,10051pr01,148,2,f +4586,10052,71,1,f +4586,11153,0,12,f +4586,11153,70,2,f +4586,11211,71,10,f +4586,11211,19,4,f +4586,11212,72,2,f +4586,11435pr0001,70,1,f +4586,11777pr01,70,1,f +4586,11778pr01,70,1,f +4586,11833,0,1,f +4586,12825,72,4,f +4586,12825,320,1,t +4586,12825,320,2,f +4586,12825,70,1,t +4586,12825,70,2,f +4586,12825,0,8,f +4586,13731,0,36,f +4586,13768pr0001,15,1,f +4586,13965,0,26,f +4586,15275,9999,1,t +4586,2339,70,2,f +4586,2357,72,20,f +4586,2357,0,19,f +4586,2417,288,2,f +4586,2419,0,4,f +4586,2420,70,5,f +4586,2420,0,12,f +4586,2423,326,3,f +4586,2431,0,17,f +4586,2431,308,4,f +4586,2445,72,1,f +4586,2449,70,4,f +4586,2450,72,1,f +4586,2453a,0,11,f +4586,2454a,0,9,f +4586,2456,0,1,f +4586,2456,72,1,f +4586,2462,71,2,f +4586,2489,308,2,f +4586,2540,72,4,f +4586,2587,148,1,f +4586,2639,72,1,f +4586,2654,72,7,f +4586,2654,47,1,f +4586,2780,0,1,t +4586,2780,0,1,f +4586,2877,0,86,f +4586,2921,0,58,f +4586,3001,14,4,f +4586,3001,70,1,f +4586,3001,0,8,f +4586,3002,70,2,f +4586,3002,0,5,f +4586,3003,0,8,f +4586,3003,19,1,f +4586,3004,0,41,f +4586,3004,288,1,f +4586,3004,25,4,f +4586,3005,0,113,f +4586,3005,0,2,t +4586,3005,33,2,f +4586,3005,71,4,f +4586,30055,0,2,f +4586,30055,70,2,f +4586,30056,0,1,f +4586,3007,0,1,f +4586,3007,71,1,f +4586,3008,0,11,f +4586,3009,72,2,f +4586,3009,0,15,f +4586,3010,0,27,f +4586,30106,46,2,f +4586,30136,308,20,f +4586,30137,70,4,f +4586,30145,15,1,f +4586,30192,72,1,t +4586,30192,72,1,f +4586,3020,72,1,f +4586,3020,70,1,f +4586,3020,0,4,f +4586,3020,1,1,f +4586,3021,0,4,f +4586,3021,72,5,f +4586,3021,70,6,f +4586,3022,70,8,f +4586,3022,0,9,f +4586,3023,72,21,f +4586,3023,272,4,f +4586,3023,28,8,f +4586,3023,70,19,f +4586,3023,19,4,f +4586,3023,320,4,f +4586,3023,0,73,f +4586,30237a,0,2,f +4586,3024,72,2,t +4586,3024,72,12,f +4586,3024,0,7,t +4586,3024,70,1,t +4586,3024,0,45,f +4586,3024,70,2,f +4586,3029,72,2,f +4586,30292,272,3,f +4586,3030,0,8,f +4586,3030,72,1,f +4586,3031,72,3,f +4586,3032,72,2,f +4586,3033,0,2,f +4586,3033,72,4,f +4586,3034,72,2,f +4586,3034,0,1,f +4586,3034,70,2,f +4586,3035,72,1,f +4586,3035,0,2,f +4586,30357,0,3,f +4586,30357,72,2,f +4586,30357,288,3,f +4586,3036,72,2,f +4586,3036,0,5,f +4586,30367b,0,1,f +4586,3037,0,12,f +4586,30374,0,1,f +4586,30383,72,8,f +4586,3039,70,3,f +4586,3039,0,6,f +4586,3040b,70,4,f +4586,3040b,0,14,f +4586,30414,0,3,f +4586,30414,72,32,f +4586,3045,0,4,f +4586,3046a,0,3,f +4586,3048c,0,4,f +4586,30503,72,8,f +4586,30505,0,8,f +4586,30565,72,1,f +4586,3062b,70,19,f +4586,3062b,34,1,f +4586,3062b,36,1,t +4586,3062b,36,1,f +4586,3068b,72,2,f +4586,3068b,71,1,f +4586,3068b,70,3,f +4586,3068b,0,2,f +4586,3068b,28,3,f +4586,3069b,72,10,f +4586,3069b,71,1,f +4586,3069b,70,1,f +4586,3069b,0,1,f +4586,3069bpr0055,15,1,f +4586,3070b,0,5,t +4586,3070b,0,37,f +4586,3070b,72,12,f +4586,3070b,72,2,t +4586,3070bpr0146,70,1,t +4586,3070bpr0146,70,2,f +4586,3176,72,2,f +4586,32000,72,2,f +4586,32028,0,37,f +4586,32028,28,2,f +4586,32028,14,1,f +4586,32054,4,1,f +4586,32064a,72,4,f +4586,32064a,2,4,f +4586,32123b,14,1,t +4586,32123b,14,2,f +4586,32184,4,1,f +4586,32192,4,2,f +4586,32198,19,1,f +4586,32270,0,1,f +4586,32474,0,1,f +4586,33009,70,2,f +4586,3308,72,1,f +4586,3460,70,3,f +4586,3460,0,14,f +4586,3622,0,32,f +4586,3623,0,10,f +4586,3623,72,6,f +4586,3623,70,5,f +4586,3626c,47,1,f +4586,3626cpr0895,15,5,f +4586,3626cpr0976,320,1,f +4586,3626cpr0980,28,1,f +4586,3626cpr1212,78,1,f +4586,3626cpr1253,78,1,f +4586,3626cpr1274,19,1,f +4586,3633,72,3,f +4586,3660,72,4,f +4586,3660,0,4,f +4586,3665,308,7,f +4586,3665,72,2,f +4586,3665,0,16,f +4586,3665,70,2,f +4586,3666,70,2,f +4586,3666,0,47,f +4586,3666,72,7,f +4586,3676,72,1,f +4586,3676,70,1,f +4586,3678b,0,1,f +4586,3678bpr0039,15,1,f +4586,3679,71,1,f +4586,3680,0,1,f +4586,3685,0,4,f +4586,37,72,2,f +4586,3700,0,2,f +4586,3701,70,1,f +4586,3709,72,1,f +4586,3710,72,14,f +4586,3710,70,5,f +4586,3710,0,42,f +4586,3713,71,1,f +4586,3713,71,1,t +4586,3747b,70,3,f +4586,3794a,0,58,f +4586,3794a,70,5,f +4586,3794a,72,5,f +4586,3795,0,3,f +4586,3795,308,4,f +4586,3795,72,2,f +4586,3795,71,3,f +4586,3795,70,2,f +4586,3848,148,3,f +4586,3894,72,3,f +4586,3937,0,3,f +4586,3941,70,3,f +4586,3942c,0,4,f +4586,3958,72,6,f +4586,40234,71,1,f +4586,40239,71,1,f +4586,40244,0,6,f +4586,4032a,70,16,f +4586,4032a,0,2,f +4586,4032a,72,1,f +4586,4070,0,54,f +4586,4070,72,4,f +4586,4070,70,5,f +4586,4070,0,2,t +4586,4081b,72,2,f +4586,4085c,0,2,f +4586,41539,72,4,f +4586,4162,0,6,f +4586,41747,0,3,f +4586,41748,0,3,f +4586,41769,0,3,f +4586,41770,0,4,f +4586,42022,0,6,f +4586,4274,71,2,t +4586,4274,71,8,f +4586,4274,1,6,f +4586,4274,1,1,t +4586,4282,0,1,f +4586,4286,0,4,f +4586,4286,70,4,f +4586,4287,0,4,f +4586,43093,1,1,f +4586,4341,0,1,f +4586,43710,70,1,f +4586,43711,70,1,f +4586,43722,0,10,f +4586,43723,0,10,f +4586,43888,72,2,f +4586,4445,0,6,f +4586,4460b,0,4,f +4586,44728,72,1,f +4586,4477,72,2,f +4586,4477,0,18,f +4586,4490,0,14,f +4586,4519,71,8,f +4586,4529,0,1,f +4586,4588,0,4,f +4586,4733,72,1,f +4586,4740pr0006,28,1,f +4586,47455,0,2,f +4586,47456,70,6,f +4586,48170,72,2,f +4586,48172,0,1,f +4586,4855,70,2,f +4586,4865b,0,7,f +4586,4865b,71,1,f +4586,49668,0,4,f +4586,50231,15,1,f +4586,50231,0,1,f +4586,50231,72,1,f +4586,53705,148,1,f +4586,53705,148,1,t +4586,54200,0,7,t +4586,54200,288,2,t +4586,54200,288,5,f +4586,54200,72,1,t +4586,54200,326,1,t +4586,54200,72,2,f +4586,54200,326,3,f +4586,54200,0,37,f +4586,55236,288,3,f +4586,56823c50,0,1,f +4586,57909b,308,5,f +4586,58176,15,1,f +4586,59349,0,1,f +4586,59426,72,1,f +4586,59443,70,1,f +4586,59900,19,1,f +4586,59900,0,23,f +4586,59900,72,1,f +4586,60470a,0,2,f +4586,60471,0,8,f +4586,60474,308,1,f +4586,60474,0,1,f +4586,60474,72,1,f +4586,60475a,0,2,f +4586,60476,0,2,f +4586,60477,0,4,f +4586,60477,308,4,f +4586,60478,72,2,f +4586,60478,0,12,f +4586,60479,0,2,f +4586,60481,0,4,f +4586,60481,288,2,f +4586,60481,308,3,f +4586,60581,0,7,f +4586,60583b,0,2,f +4586,6112,0,1,f +4586,61252,0,2,f +4586,6134,0,2,f +4586,6134,71,1,f +4586,6141,72,2,t +4586,6141,179,23,f +4586,6141,72,7,f +4586,6141,70,6,f +4586,6141,179,3,t +4586,6141,15,1,t +4586,6141,182,4,f +4586,6141,70,2,t +4586,6141,0,18,f +4586,6141,15,4,f +4586,6141,33,1,t +4586,6141,33,1,f +4586,6141,182,1,t +4586,6141,0,2,t +4586,6179,0,1,f +4586,6180,0,1,f +4586,62808,72,2,f +4586,63864,0,4,f +4586,63864,4,2,f +4586,63864,72,2,f +4586,63868,70,2,f +4586,63868,72,4,f +4586,63965,0,12,f +4586,63965,72,1,f +4586,63965,70,5,f +4586,64644,0,2,f +4586,64644,308,4,f +4586,64647,182,1,t +4586,64647,182,2,f +4586,64867,70,2,f +4586,6541,72,3,f +4586,6541,19,2,f +4586,6541,15,3,f +4586,6587,28,3,f +4586,6589,19,1,t +4586,6589,19,1,f +4586,6636,72,2,f +4586,6636,0,11,f +4586,73983,72,2,f +4586,75937,0,2,f +4586,85863,71,1,f +4586,85984,0,21,f +4586,87079,272,2,f +4586,87079,0,17,f +4586,87079,70,1,f +4586,87083,72,1,f +4586,87087,72,6,f +4586,87087,0,13,f +4586,87421,0,4,f +4586,87552,0,2,f +4586,87580,70,4,f +4586,87580,72,2,f +4586,87620,0,8,f +4586,87747,0,28,f +4586,87747,0,2,t +4586,87994,70,1,f +4586,87994,0,1,f +4586,88283,0,1,f +4586,88292,0,4,f +4586,92013,72,5,f +4586,92099,72,2,f +4586,92107,72,1,f +4586,92280,0,1,t +4586,92280,0,8,f +4586,92338,72,1,f +4586,92593,0,10,f +4586,92692,0,2,f +4586,92946,288,6,f +4586,92946,0,4,f +4586,92947,0,1,f +4586,92947,70,1,f +4586,92950,0,4,f +4586,93160,15,2,f +4586,93160,15,1,t +4586,93549pat02,47,1,f +4586,95228,40,1,f +4586,95753pat0003,40,1,f +4586,96874,25,1,t +4586,970c00,15,1,f +4586,970c00,308,1,f +4586,970c00,0,1,f +4586,970c00,72,1,f +4586,970c00pr0334,308,1,f +4586,973pr2053c01,72,1,f +4586,973pr2057c01,308,1,f +4586,973pr2063c01,308,1,f +4586,973pr2430c01,15,1,f +4586,973pr2462c01,0,1,f +4586,98138,179,2,t +4586,98138,179,4,f +4586,98138,47,1,t +4586,98138,47,1,f +4586,98283,71,4,f +4586,98313,70,8,f +4586,98560,0,7,f +4586,98782,36,1,f +4586,99780,72,4,f +4586,99781,71,4,f +4587,2555,4,3,f +4587,2569,42,1,f +4587,3032,0,1,f +4587,3039,7,1,f +4587,3068bp54,7,1,f +4587,3069bp51,0,1,f +4587,3626bp6w,4,1,f +4587,3933,7,1,f +4587,3934,7,1,f +4587,4079,7,1,f +4587,4286,7,2,f +4587,4349,0,2,f +4587,4740,42,2,f +4587,970c00pb021,0,1,f +4587,973pb0078c01,0,1,f +4588,2444,71,1,f +4588,2780,0,2,f +4588,3737,0,1,f +4588,43093,1,2,f +4588,47430,4,2,f +4588,47431,4,2,f +4588,47432,72,2,f +4588,47452,72,2,f +4588,47454,4,2,f +4588,47455,15,10,f +4588,47456,135,2,f +4588,47457,135,2,f +4588,54173,76,1,f +4588,54178,135,1,f +4588,54180pb01,135,1,f +4588,54182c02pb01,4,1,f +4588,54937,135,2,f +4588,55010,76,2,f +4588,6538b,72,1,f +4588,bb153pr0013,72,1,f +4589,11816pr0002,78,1,f +4589,11816pr0006,78,1,f +4589,14226c11,0,1,f +4589,2335,14,2,f +4589,2412b,80,4,f +4589,2431,71,2,f +4589,2431,27,13,f +4589,2436,15,1,f +4589,2453b,14,2,f +4589,2453b,15,2,f +4589,2495,5,1,f +4589,2496,0,1,f +4589,2540,1,1,f +4589,2877,14,13,f +4589,3004,19,26,f +4589,3004,73,2,f +4589,3004,15,6,f +4589,3005,19,4,f +4589,3005,15,5,f +4589,3006,19,1,f +4589,3008,70,2,f +4589,3009,19,6,f +4589,3010,19,26,f +4589,30165,70,1,f +4589,30165,484,1,f +4589,30176,2,2,f +4589,3021,14,3,f +4589,3022,70,1,f +4589,3022,484,1,f +4589,3023,14,6,f +4589,3023,70,4,f +4589,3023,15,9,f +4589,3023,4,4,f +4589,30237a,15,4,f +4589,3032,70,2,f +4589,3040b,29,4,f +4589,3040b,19,16,f +4589,3040b,73,4,f +4589,3041,29,4,f +4589,3062b,320,8,f +4589,3068b,29,1,f +4589,3068b,71,6,f +4589,3069b,15,4,f +4589,3069b,1,4,f +4589,3069b,29,7,f +4589,3070b,29,1,t +4589,3070b,29,2,f +4589,33009,26,1,f +4589,33051,10,1,f +4589,33172,25,2,f +4589,33183,10,2,f +4589,33183,10,1,t +4589,33291,10,2,f +4589,33291,10,1,t +4589,33320,2,1,f +4589,3460,15,2,f +4589,3666,70,6,f +4589,3666,14,2,f +4589,3710,27,4,f +4589,3710,1,2,f +4589,3710,70,8,f +4589,3741,2,5,f +4589,3741,2,1,t +4589,3742,15,3,f +4589,3742,15,1,t +4589,3742,5,1,t +4589,3742,14,6,f +4589,3742,4,1,t +4589,3742,5,3,f +4589,3742,14,2,t +4589,3742,4,3,f +4589,3747b,14,2,f +4589,3794a,2,8,f +4589,3794a,15,1,f +4589,3899,5,2,f +4589,3957a,15,6,f +4589,3958,27,4,f +4589,4032a,1,1,f +4589,4218,4,2,f +4589,4424,73,1,f +4589,4445,320,2,f +4589,4460b,19,8,f +4589,44728,15,1,f +4589,4495b,5,2,f +4589,4496,70,1,f +4589,4523,27,2,f +4589,4599b,14,1,f +4589,4623,15,2,f +4589,4738a,70,1,f +4589,47998,15,2,f +4589,48336,71,4,f +4589,48336,1,4,f +4589,54200,29,4,f +4589,54200,29,1,t +4589,59349,19,2,f +4589,6020,73,3,f +4589,60475b,73,5,f +4589,60583b,14,4,f +4589,60594,15,1,f +4589,60607,73,2,f +4589,6079,15,6,f +4589,6108,19,2,f +4589,6112,15,1,f +4589,61252,0,1,f +4589,6141,41,1,f +4589,6141,41,1,t +4589,6191,320,1,f +4589,63864,15,2,f +4589,70973,5,1,f +4589,85080,71,8,f +4589,87087,14,4,f +4589,87580,14,2,f +4589,90498,320,2,f +4589,91405,10,3,f +4589,92254pr0001,226,1,f +4589,92254pr0002,320,1,f +4589,92257,320,1,f +4589,92456pr0001c01,78,1,f +4589,92456pr0048c01,0,1,f +4589,92819pr0002a,27,1,f +4589,92821pr0002c01,15,1,f +4589,92946,19,2,f +4589,93085pr01,484,1,f +4589,93085pr03,70,1,f +4589,93086,73,1,f +4589,93086,29,1,f +4589,93087,0,2,f +4589,93089pr0001a,71,1,f +4589,93096,29,4,f +4589,94717,5,4,f +4589,94718,5,1,f +4589,94719,5,1,f +4589,94720,5,2,f +4589,94721,5,1,f +4589,94722,5,1,f +4589,94723,5,1,f +4589,94724,5,1,f +4589,94725,5,4,f +4589,95343,4,1,f +4589,95344,28,1,f +4589,95344,28,1,t +4589,96874,25,1,t +4590,2417,2,2,f +4590,2420,15,2,f +4590,2454a,15,3,f +4590,2546p01,4,1,f +4590,2610,14,1,f +4590,2654,7,3,f +4590,2823,15,2,f +4590,298c02,15,1,f +4590,3023,7,1,f +4590,3023,13,1,f +4590,3039p03,15,1,f +4590,3185,13,2,f +4590,3455,15,2,f +4590,3626bp03,14,1,f +4590,3626bpb0175,14,1,f +4590,3795,15,1,f +4590,3899,13,1,f +4590,3901,6,1,f +4590,3941,15,1,f +4590,3957a,15,1,f +4590,3960pb001,15,1,f +4590,4079,13,2,f +4590,476,15,1,f +4590,6003,7,2,f +4590,6075,15,1,f +4590,6091,7,2,f +4590,6093,0,1,f +4590,63965,15,1,f +4590,970x001,14,1,f +4590,970x026,14,1,f +4590,973pb0061c01,14,1,f +4590,973pb0128c01,15,1,f +4590,x66px9,47,1,f +4591,3023,33,2,f +4591,3024,33,1,f +4591,3040b,71,2,f +4591,3960,71,1,f +4591,4070,72,1,f +4591,4286,71,2,f +4591,4589,40,1,f +4591,4595,0,1,f +4591,54200,71,1,t +4591,54200,71,2,f +4592,2437,33,1,f +4592,2610,14,1,f +4592,3004,4,1,f +4592,3022,4,1,f +4592,3024,4,2,f +4592,3039,14,1,f +4592,3626bp02,14,1,f +4592,3666,0,2,f +4592,3666,4,2,f +4592,3710,0,1,f +4592,3829c01,14,1,f +4592,4854,0,1,f +4592,4855,0,1,f +4592,4859,4,1,f +4592,4859,0,1,f +4592,4871,0,1,f +4592,6093,4,1,f +4592,970c00,15,1,f +4592,973px18c01,15,1,f +4593,14716,71,2,f +4593,15068pr0015,15,1,f +4593,15530,272,1,f +4593,19220,0,1,f +4593,24316,70,1,f +4593,2432,14,1,f +4593,3004,71,1,f +4593,3005,72,1,f +4593,3021,72,2,f +4593,3022,15,1,f +4593,30228,72,1,f +4593,3023,41,1,f +4593,3023,14,2,f +4593,3024,36,1,t +4593,3024,36,2,f +4593,3031,72,1,f +4593,3034,71,1,f +4593,3040bpr0003,71,1,f +4593,3062b,33,1,f +4593,3069b,71,1,f +4593,3069bpr0100,2,3,f +4593,32474,4,1,f +4593,3626cpr1147,14,1,f +4593,3626cpr1849,14,1,f +4593,3626cpr2113,14,1,f +4593,3626cpr2141,14,1,f +4593,3633,15,2,f +4593,3666,1,2,f +4593,3700,15,1,f +4593,3710,15,1,f +4593,3829c01,14,1,f +4593,3957a,0,1,f +4593,41334,0,1,f +4593,41854,1,1,f +4593,4345b,71,1,f +4593,4346,15,1,f +4593,4600,0,2,f +4593,6014b,71,4,f +4593,60212,15,1,f +4593,60481,71,2,f +4593,60594,71,1,f +4593,60897,15,2,f +4593,61482,71,1,f +4593,61482,71,1,t +4593,64728,4,1,f +4593,72454,15,1,f +4593,85974,484,1,f +4593,87580,28,1,f +4593,87697,0,4,f +4593,87990,70,1,f +4593,92586pr0001,84,1,f +4593,92590,28,1,f +4593,93273,2,1,f +4593,970c00,2,1,f +4593,970c00,272,2,f +4593,970cpr1207,4,1,f +4593,973pr3627,212,1,f +4593,973pr3699,212,1,f +4593,973pr3700,15,1,f +4593,973pr3732,15,1,f +4593,98138,46,2,f +4593,98138,46,1,t +4593,99780,0,2,f +4594,2412b,14,2,f +4594,2432,14,2,f +4594,2458,72,1,f +4594,2460,4,1,f +4594,2479,0,1,f +4594,2654,71,1,f +4594,3001,1,6,f +4594,3001,14,6,f +4594,3001,0,4,f +4594,3001,4,6,f +4594,3001,15,4,f +4594,3002,14,6,f +4594,3002,0,4,f +4594,3002,4,6,f +4594,3002,1,6,f +4594,3002,15,6,f +4594,3003,2,4,f +4594,3003,14,6,f +4594,3003,1,6,f +4594,3003,15,4,f +4594,3003,27,4,f +4594,3003,0,4,f +4594,3003,4,4,f +4594,3004,0,10,f +4594,3004,2,8,f +4594,3004,27,5,f +4594,3004,14,16,f +4594,3004,1,17,f +4594,3004,4,16,f +4594,3004,15,16,f +4594,3005,4,8,f +4594,3005,1,10,f +4594,3005,15,8,f +4594,3005,27,6,f +4594,3005,14,10,f +4594,3005,2,6,f +4594,3005,0,6,f +4594,3005pe1,2,2,f +4594,3005pe1,14,2,f +4594,3005pe1,15,2,f +4594,3008,14,2,f +4594,3008,1,2,f +4594,3009,4,4,f +4594,3009,14,4,f +4594,3009,15,4,f +4594,3009,1,4,f +4594,3010,14,14,f +4594,3010,4,12,f +4594,3010,27,4,f +4594,3010,1,14,f +4594,3010,15,12,f +4594,30179,15,1,f +4594,3021,2,2,f +4594,3021,1,2,f +4594,3022,1,2,f +4594,3022,4,2,f +4594,3028,2,2,f +4594,3032,4,2,f +4594,3034,1,2,f +4594,3037,4,4,f +4594,3039,4,4,f +4594,3040b,4,2,f +4594,3062b,0,4,f +4594,3298,14,2,f +4594,3299,4,1,f +4594,3300,4,2,f +4594,3307,15,2,f +4594,33303,15,2,f +4594,3622,1,6,f +4594,3622,4,4,f +4594,3622,15,6,f +4594,3622,14,6,f +4594,3633,0,4,f +4594,3665,4,2,f +4594,3666,1,2,f +4594,3679,71,1,f +4594,3680,4,1,f +4594,3710,4,2,f +4594,3710,14,2,f +4594,3741,2,4,f +4594,3742,5,6,f +4594,3742,4,6,f +4594,3742,5,2,t +4594,3742,4,2,t +4594,3747b,4,4,f +4594,3795,1,2,f +4594,3823,47,1,f +4594,3829c01,14,1,f +4594,3941,4,2,f +4594,3941,14,2,f +4594,3957a,15,2,f +4594,4070,4,4,f +4594,4079,14,2,f +4594,4175,4,2,f +4594,4495b,4,1,f +4594,4589,15,4,f +4594,56902,4,4,f +4594,6007,2,1,f +4594,6041,0,1,f +4594,60583a,4,4,f +4594,60594,15,3,f +4594,60608,14,6,f +4594,60623,14,1,f +4594,60800b,2,4,f +4594,61254,0,4,f +4594,6141,36,2,f +4594,6141,46,2,f +4594,6215,4,2,f +4594,6249,71,2,f +4596,13608,179,2,f +4596,15712,0,2,f +4596,18868a,41,1,f +4596,19981pr0022,41,1,f +4596,3020,0,1,f +4596,3062b,27,1,f +4596,3069bpr0101,71,1,f +4596,3626cpr0936,0,1,f +4596,3700,4,1,f +4596,3941,41,1,f +4596,4070,0,1,f +4596,42446,0,1,f +4596,42446,0,1,t +4596,4274,1,1,t +4596,4274,1,1,f +4596,4624,71,4,f +4596,4733,71,1,f +4596,47755,0,1,f +4596,48336,0,1,f +4596,48729b,71,1,t +4596,48729b,71,2,f +4596,54200,4,1,t +4596,54200,0,1,t +4596,54200,4,4,f +4596,54200,0,1,f +4596,6141,0,1,f +4596,6141,0,1,t +4596,6141,41,1,t +4596,6141,41,4,f +4596,6157,4,2,f +4596,85861,71,7,f +4596,85861,71,1,t +4596,87414,0,4,f +4596,89522,179,1,f +4596,89522,179,1,t +4596,970c00,0,1,f +4596,973pr2018c01,78,1,f +4596,98138pr0012,179,1,f +4596,98138pr0012,179,1,t +4596,99780,0,1,f +4597,2850a,7,2,f +4597,2851,8,2,f +4597,2852,7,2,f +4597,2853,7,2,f +4597,2854,8,1,f +4598,2432,0,1,f +4598,2540,0,2,f +4598,3020,72,2,f +4598,40379,27,2,f +4598,4081b,0,2,f +4598,4589,42,2,f +4598,47407,0,1,f +4598,48336,71,1,f +4598,58844pat0001,34,1,f +4598,58845,34,1,f +4598,60470a,0,2,f +4598,6141,36,2,f +4598,6141,36,1,t +4598,73983,72,2,f +4601,2335pb063,15,1,f +4601,2431,4,1,f +4601,2453a,72,2,f +4601,2456,71,1,f +4601,2462,71,2,f +4601,2540,72,1,f +4601,2570,70,1,f +4601,3004,71,10,f +4601,30044,71,1,f +4601,30045,0,1,f +4601,3005,72,14,f +4601,3009,71,4,f +4601,3010,71,7,f +4601,30157,70,2,f +4601,3020,72,1,f +4601,3023,70,2,f +4601,30273,80,1,f +4601,30273,148,1,f +4601,30275,0,1,f +4601,3029,72,1,f +4601,3030,2,2,f +4601,3031,70,1,f +4601,3032,72,2,f +4601,3034,0,2,f +4601,3039,70,2,f +4601,3040b,71,8,f +4601,3040b,72,2,f +4601,3048c,4,2,f +4601,30503,72,2,f +4601,3068b,70,4,f +4601,3069b,70,4,f +4601,3069b,72,1,f +4601,32064b,0,4,f +4601,32123b,14,2,f +4601,32123b,14,1,t +4601,3245b,71,6,f +4601,3307,71,2,f +4601,3308,0,1,f +4601,3455,0,1,f +4601,3626bpr0325,14,1,f +4601,3626bpr0541,14,1,f +4601,3626bpr0645,14,1,f +4601,3659,71,2,f +4601,3660,70,4,f +4601,3665,70,2,f +4601,3666,288,2,f +4601,3705,0,1,f +4601,3794b,0,1,f +4601,3795,70,1,f +4601,3844,80,1,f +4601,3846pr0002,71,2,f +4601,3848,0,2,f +4601,3941,70,2,f +4601,3957a,0,1,f +4601,4032a,0,6,f +4601,4286,70,4,f +4601,4460b,72,2,f +4601,4495b,297,1,f +4601,4495b,4,1,f +4601,4497,148,1,f +4601,4497,135,1,f +4601,4498,70,1,f +4601,49668,288,2,f +4601,54200,4,1,t +4601,54200,70,1,t +4601,54200,297,1,t +4601,54200,288,12,f +4601,54200,297,8,f +4601,54200,70,2,f +4601,54200,4,6,f +4601,54200,288,1,t +4601,60475a,0,2,f +4601,6182,72,3,f +4601,64644,308,1,f +4601,64647,57,1,f +4601,64647,57,1,t +4601,87081,0,4,f +4601,87421,71,2,f +4601,970c00,0,1,f +4601,970x026,71,2,f +4601,973pr1622c01,4,1,f +4601,973pr1623c01,72,1,f +4601,973pr1625c01,288,1,f +4604,2352,4,2,f +4604,2456,14,2,f +4604,2456,4,2,f +4604,3001,1,10,f +4604,3001,14,16,f +4604,3001,15,10,f +4604,3001,4,14,f +4604,3001,0,4,f +4604,3002,4,4,f +4604,3002,0,2,f +4604,3002,15,2,f +4604,3002,14,4,f +4604,3002,1,2,f +4604,3003,1,10,f +4604,3003,15,10,f +4604,3003,0,8,f +4604,3003,4,16,f +4604,3003,14,14,f +4604,3003pe4,15,2,f +4604,3006,14,1,f +4604,3006,4,2,f +4604,3185,15,8,f +4604,3483,0,6,f +4604,4130,4,1,f +4604,4131,15,1,f +4604,4132,4,2,f +4604,4133,15,2,f +4604,4180c02,0,3,f +4604,4202,2,1,f +4604,4202,4,1,f +4604,4727,2,4,f +4604,4728,4,1,f +4604,4728,1,2,f +4604,4728,15,1,f +4604,4744,4,1,f +4604,4744p03,0,2,f +4604,4744pb17,15,1,f +4604,4744px29,15,1,f +4604,4744px32,4,1,f +4604,4744px33,0,2,f +4604,4747,4,1,f +4604,4748,4,1,f +4604,6007,8,1,f +4605,2444,15,2,f +4605,2446,15,1,f +4605,2456,15,1,f +4605,2555,0,3,f +4605,2569,0,1,f +4605,2817,0,1,f +4605,2877,0,2,f +4605,3002,8,1,f +4605,3004,7,2,f +4605,30083,40,1,f +4605,3020,8,2,f +4605,3021,1,1,f +4605,3022,15,2,f +4605,3023,1,3,f +4605,30237a,15,2,f +4605,30283,0,1,f +4605,3032,15,1,f +4605,30324,7,3,f +4605,3039,15,2,f +4605,3039,73,4,f +4605,3040b,8,4,f +4605,30526,8,2,f +4605,3062b,0,2,f +4605,3069bpr0090,8,1,f +4605,32000,7,2,f +4605,32054,1,4,f +4605,32524,15,3,f +4605,3626bpr0126,14,1,f +4605,3660,7,1,f +4605,3673,7,1,t +4605,3673,7,2,f +4605,3747a,7,1,f +4605,3749,7,4,f +4605,3795,8,1,f +4605,4081b,7,2,f +4605,4085c,15,2,f +4605,4095,0,1,f +4605,4150px5,15,1,f +4605,4286,73,2,f +4605,4315,0,1,f +4605,4479,7,1,f +4605,4740,15,3,f +4605,6141,36,1,t +4605,6141,36,3,f +4605,6141,47,1,t +4605,6141,47,2,f +4605,6232,15,3,f +4605,6541,0,3,f +4605,6628,0,3,f +4605,758c01,7,2,f +4605,769,61,1,f +4605,970x027,15,1,f +4605,973px80c01,15,1,f +4605,rb00167,0,4,t +4605,rb00167,0,3,f +4606,10509pr0003,15,1,f +4606,11211,19,1,f +4606,14769,71,3,f +4606,15571,1,8,f +4606,15623pr0001,27,1,f +4606,15624,27,2,f +4606,15625pr0004,72,1,f +4606,15626pr0003,71,1,f +4606,15627pr0007,71,4,f +4606,2343,297,1,f +4606,2397,72,1,f +4606,2412b,297,1,f +4606,2419,1,2,f +4606,2431,72,1,f +4606,2431,70,4,f +4606,2431,2,2,f +4606,2432,70,1,f +4606,2456,70,2,f +4606,2458,72,1,f +4606,2570,70,1,f +4606,2653,0,1,f +4606,3001,25,2,f +4606,3001,4,2,f +4606,3001,15,4,f +4606,3001,321,2,f +4606,3001,71,4,f +4606,3001,2,2,f +4606,3001,70,5,f +4606,3001,72,4,f +4606,3001,19,5,f +4606,3002,71,2,f +4606,3003,71,12,f +4606,3003,25,8,f +4606,3003,72,12,f +4606,3003,4,10,f +4606,3003,27,8,f +4606,3003,2,10,f +4606,3003,14,9,f +4606,3003,70,9,f +4606,3003,15,10,f +4606,3004,14,12,f +4606,3004,2,12,f +4606,3004,321,4,f +4606,3004,15,15,f +4606,3004,4,12,f +4606,3004,25,12,f +4606,3004,1,14,f +4606,3004,27,12,f +4606,3004,70,15,f +4606,3004,72,14,f +4606,3004,71,14,f +4606,3007,14,6,f +4606,30076,0,1,f +4606,3009,71,12,f +4606,3010,19,2,f +4606,3010,15,2,f +4606,3010,72,2,f +4606,3020,70,2,f +4606,3021,71,2,f +4606,30236,72,1,f +4606,30238,0,1,f +4606,30246,71,2,f +4606,30273,148,1,f +4606,30275,4,1,f +4606,30367c,25,4,f +4606,30377,15,1,t +4606,30377,15,2,f +4606,30385,297,1,f +4606,3040b,321,4,f +4606,3040b,72,2,f +4606,3040b,71,2,f +4606,3062b,72,8,f +4606,3062b,4,6,f +4606,3062b,71,4,f +4606,3069b,15,1,f +4606,32064a,14,2,f +4606,32530,72,1,f +4606,33057,484,1,f +4606,3308,71,2,f +4606,3622,0,2,f +4606,3626bpr0388,14,1,f +4606,3626cpr0645,14,1,f +4606,3626cpr0895,15,1,f +4606,3626cpr1091,14,1,f +4606,3673,71,1,f +4606,3678b,321,16,f +4606,3678b,4,5,f +4606,3794b,297,1,f +4606,3795,2,1,f +4606,3844,71,1,f +4606,3846pr0005,71,1,f +4606,3848,148,1,f +4606,3957a,15,2,f +4606,4032a,0,4,f +4606,4032a,4,4,f +4606,4079b,70,1,f +4606,43888,70,2,f +4606,4495b,297,2,f +4606,4495b,1,4,f +4606,4497,297,1,f +4606,4697b,71,2,f +4606,4738a,70,1,f +4606,4739a,70,1,f +4606,59232,179,1,f +4606,59900,297,3,f +4606,59900,72,6,f +4606,6020,70,1,f +4606,60474,15,1,f +4606,60481,15,4,f +4606,60596,72,1,f +4606,60621,71,1,f +4606,6066,321,2,f +4606,62113,72,4,f +4606,6266,15,2,f +4606,6266,15,1,t +4606,64647,182,4,f +4606,71015,82,1,f +4606,76764,179,1,f +4606,86208,72,2,f +4606,87081,70,4,f +4606,87580,321,4,f +4606,87580,72,1,f +4606,88289,308,1,f +4606,93060,15,1,f +4606,96874,25,1,t +4606,970c00,0,1,f +4606,970c00,1,2,f +4606,973pr0090c01,72,1,f +4606,973pr2392c01,72,1,f +4606,973pr2395c01,0,1,f +4607,12886,15,1,f +4607,18047,226,1,f +4607,18200,15,1,f +4607,3626cpr1471,14,1,f +4607,75902pr0005,308,1,f +4607,88646,0,1,f +4607,90391pr02,70,1,f +4607,970c00pr0708,14,1,f +4607,973pr2740c01,15,1,f +4608,2357,15,2,f +4608,2432,13,2,f +4608,2444,15,2,f +4608,2445,7,1,f +4608,2496,0,2,f +4608,2518,2,4,f +4608,2536,6,6,f +4608,2540,7,1,f +4608,2540,15,1,f +4608,2546p01,4,1,f +4608,2563,6,1,f +4608,2566,2,1,f +4608,2655,15,2,f +4608,3002,15,1,f +4608,3004,15,3,f +4608,3005,7,2,f +4608,3005,15,6,f +4608,3010,15,2,f +4608,3020,7,1,f +4608,3020,15,1,f +4608,3022,7,2,f +4608,3023,15,2,f +4608,3024,15,2,f +4608,3068b,13,3,f +4608,3069b,7,2,f +4608,3069b,13,1,f +4608,3185,13,2,f +4608,3626bp07,14,1,f +4608,3626bpb0175,14,1,f +4608,3626bpr0001,14,1,f +4608,3659,15,2,f +4608,3660,15,1,f +4608,3673,7,2,f +4608,3700,15,2,f +4608,3741,2,1,f +4608,3742,4,4,f +4608,3837,8,1,f +4608,3865,17,2,f +4608,4032a,2,1,f +4608,4452,15,1,f +4608,4485,15,1,f +4608,4529,0,1,f +4608,4865a,15,2,f +4608,6020,8,1,f +4608,6044,15,2,f +4608,6060,7,2,f +4608,6091,13,2,f +4608,6093,6,1,f +4608,6093,4,1,f +4608,6141,14,2,f +4608,970x001,14,1,f +4608,970x026,14,1,f +4608,973p31c01,14,2,f +4608,973pb0017c01,15,1,f +4608,973px23c01,13,1,f +4609,3626apr0001,14,2,f +4609,3838,15,2,f +4609,3842a,15,2,f +4609,3962a,0,2,f +4609,970c00,15,2,f +4609,973p90c05,15,2,f +4610,11211,15,6,f +4610,11212,71,2,f +4610,14716,19,2,f +4610,15573,71,6,f +4610,15573,72,2,f +4610,15573,28,22,f +4610,18674,15,1,f +4610,2420,19,2,f +4610,2431,19,2,f +4610,2431,71,6,f +4610,3004,0,8,f +4610,30044,71,1,f +4610,30046,0,1,f +4610,3005,19,12,f +4610,3005,71,4,f +4610,3010,19,10,f +4610,3020,19,8,f +4610,3020,71,2,f +4610,3021,71,4,f +4610,3022,14,3,f +4610,3022,0,2,f +4610,3023,71,4,f +4610,3023,19,12,f +4610,3023,0,7,f +4610,3023,47,8,f +4610,3024,47,1,t +4610,3024,19,1,t +4610,3024,15,1,t +4610,3024,71,1,t +4610,3024,19,22,f +4610,3024,15,2,f +4610,3024,47,57,f +4610,3024,71,11,f +4610,3024,326,8,f +4610,3024,326,1,t +4610,3031,71,3,f +4610,3034,19,4,f +4610,3035,72,3,f +4610,3036,0,2,f +4610,30374,19,6,f +4610,30374,71,1,f +4610,30565,71,4,f +4610,3062b,15,1,f +4610,3068b,72,14,f +4610,3068b,28,33,f +4610,3069b,71,19,f +4610,3069b,47,16,f +4610,3069b,28,22,f +4610,3069b,72,5,f +4610,3069b,0,4,f +4610,3070b,19,1,t +4610,3070b,4,1,t +4610,3070b,28,12,f +4610,3070b,0,2,f +4610,3070b,19,10,f +4610,3070b,71,10,f +4610,3070b,72,1,t +4610,3070b,0,1,t +4610,3070b,71,1,t +4610,3070b,28,1,t +4610,3070b,72,14,f +4610,3070b,4,1,f +4610,32028,19,11,f +4610,3460,19,4,f +4610,3623,19,12,f +4610,3623,4,2,f +4610,3633,72,4,f +4610,3666,19,4,f +4610,3710,19,25,f +4610,3710,71,10,f +4610,3795,0,8,f +4610,4070,19,14,f +4610,4081b,14,1,f +4610,4162,0,5,f +4610,4162,71,2,f +4610,4162pr0046,0,1,f +4610,4282,72,1,f +4610,4477,72,2,f +4610,4490,19,2,f +4610,4733,15,1,f +4610,4865b,19,5,f +4610,49668,15,4,f +4610,54200,72,13,f +4610,54200,72,1,t +4610,54200,71,1,t +4610,54200,71,6,f +4610,60474,71,2,f +4610,61252,71,2,f +4610,6141,19,62,f +4610,6141,47,6,f +4610,6141,47,1,t +4610,6141,0,6,f +4610,6141,0,1,t +4610,6141,19,1,t +4610,6231,19,8,f +4610,63864,71,2,f +4610,63864,4,1,f +4610,64644,71,4,f +4610,6541,19,6,f +4610,6636,0,8,f +4610,6636,28,6,f +4610,85861,71,17,f +4610,85861,71,1,t +4610,85984,71,14,f +4610,87079,19,8,f +4610,87087,19,18,f +4610,87580,28,3,f +4610,90195,19,3,f +4610,90398,297,1,f +4610,90398,297,1,t +4610,91501,19,1,f +4610,91988,0,4,f +4610,92438,72,3,f +4610,96874,25,1,t +4610,98138,326,22,f +4610,98138,19,8,f +4610,98138,19,1,t +4610,98138,326,1,t +4610,99206,0,4,f +4611,735,1,2,f +4611,735,4,2,f +4612,2412b,27,5,f +4612,2413,0,1,f +4612,2431,27,2,f +4612,2446pb08,27,1,f +4612,2447,42,1,f +4612,2730,0,2,f +4612,2780,0,2,f +4612,2877,2,2,f +4612,2994,14,4,f +4612,30000,1,1,f +4612,3002,14,1,f +4612,3004,27,2,f +4612,3020,2,1,f +4612,3022,2,1,f +4612,3023,14,1,f +4612,3039,2,2,f +4612,30498,8,1,f +4612,30602,27,1,f +4612,30602pb010,27,1,f +4612,3062b,34,1,f +4612,3062b,36,1,f +4612,32059,0,1,f +4612,32283c02,0,1,f +4612,3626bpx33,14,1,f +4612,3660,8,1,f +4612,3705,4,1,f +4612,3710,14,1,f +4612,3737,0,4,f +4612,3829c01,14,1,f +4612,41747,2,2,f +4612,41748,2,2,f +4612,41769,27,1,f +4612,41770,27,1,f +4612,41854pb07,27,1,f +4612,41855,27,1,f +4612,42022px4,14,4,f +4612,42023,27,2,f +4612,4282,14,1,f +4612,6087,0,2,f +4612,6578,0,4,f +4612,6579,0,2,f +4612,6580,14,2,f +4612,75535,14,4,f +4612,970x026,2,1,f +4612,973px331c01,2,1,f +4616,2346,0,6,f +4616,2432,72,1,f +4616,2780,0,1,t +4616,2780,0,16,f +4616,2825,0,4,f +4616,3023,47,2,f +4616,30395,72,1,f +4616,30663,71,1,f +4616,3069b,14,1,f +4616,32013,1,2,f +4616,32013,0,4,f +4616,32034,0,2,f +4616,32039,0,2,f +4616,32054,0,2,f +4616,32056,0,2,f +4616,32062,4,16,f +4616,32063,71,4,f +4616,32073,71,8,f +4616,32123b,71,1,t +4616,32123b,71,2,f +4616,32140,14,2,f +4616,32140,72,5,f +4616,32249,0,2,f +4616,32270,0,5,f +4616,32278,0,1,f +4616,32291,0,2,f +4616,32316,14,7,f +4616,32523,14,4,f +4616,32524,14,2,f +4616,32525,0,2,f +4616,32556,19,3,f +4616,33299a,0,2,f +4616,3647,72,3,f +4616,3666,14,1,f +4616,3673,71,1,t +4616,3673,71,8,f +4616,3702,4,1,f +4616,3705,0,3,f +4616,3706,0,3,f +4616,3707,0,1,f +4616,3713,71,10,f +4616,3713,71,1,t +4616,3749,19,2,f +4616,40490,14,2,f +4616,41677,0,8,f +4616,41678,72,6,f +4616,42003,72,6,f +4616,4274,1,1,t +4616,4274,1,6,f +4616,43093,1,9,f +4616,43857,14,2,f +4616,44294,71,7,f +4616,4519,71,15,f +4616,4716,71,1,f +4616,55013,72,2,f +4616,56823c100,0,1,f +4616,56902,71,6,f +4616,57779,14,1,f +4616,59443,14,6,f +4616,60483,72,11,f +4616,6141,36,1,t +4616,6141,182,3,f +4616,6141,182,1,t +4616,6141,36,2,f +4616,61510,71,1,f +4616,62462,0,3,f +4616,6536,0,24,f +4616,6536,1,2,f +4616,6558,1,10,f +4616,6629,14,4,f +4616,6632,0,6,f +4616,87080,14,1,f +4616,87086,14,1,f +4616,92907,0,1,f +4617,2345,71,4,f +4617,2357,71,4,f +4617,2444,0,4,f +4617,2445,0,1,f +4617,2446,288,1,f +4617,2453a,71,4,f +4617,2454a,71,6,f +4617,2489,70,1,f +4617,2555,14,10,f +4617,2566,0,4,f +4617,2570,70,4,f +4617,2587,132,4,f +4617,2587,0,2,f +4617,2587,297,2,f +4617,2587pr0013,288,1,f +4617,2587pr0015,0,1,f +4617,2926,0,2,f +4617,3003,14,1,f +4617,3003,71,4,f +4617,3004,71,12,f +4617,3004,14,1,f +4617,30045,0,4,f +4617,3005,72,2,f +4617,3006,0,1,f +4617,3009,71,2,f +4617,3010,72,4,f +4617,30104,0,2,f +4617,30134,70,1,f +4617,30153,41,2,f +4617,30165,0,2,f +4617,3020,70,5,f +4617,3023,14,4,f +4617,30236,71,2,f +4617,30236,72,1,f +4617,30237a,72,2,f +4617,30275,70,1,f +4617,3029,288,5,f +4617,3032,72,5,f +4617,3034,0,1,f +4617,30357,72,2,f +4617,30363,14,2,f +4617,3037,14,1,f +4617,30374,70,1,f +4617,3039,14,2,f +4617,3039,72,1,f +4617,3041,0,1,f +4617,30414,14,2,f +4617,3062b,57,6,f +4617,32000,71,8,f +4617,32062,0,2,f +4617,32062,4,1,f +4617,32064b,0,3,f +4617,32123b,71,1,f +4617,32123b,71,1,t +4617,32530,72,4,f +4617,32556,71,1,f +4617,33216,70,2,f +4617,3460,0,2,f +4617,3581,71,2,f +4617,3622,72,4,f +4617,3626bpr0250,14,3,f +4617,3626bpr0251,14,1,f +4617,3626bpr0348,14,1,f +4617,3626bpr0350,14,2,f +4617,3626bpr0351,14,2,f +4617,3626bpr0353,14,1,f +4617,3626bpr0895,15,1,f +4617,3647,71,1,t +4617,3647,71,1,f +4617,3660,72,6,f +4617,3665,72,4,f +4617,3673,71,4,f +4617,3673,71,1,t +4617,3684,72,4,f +4617,3710,70,1,f +4617,3713,71,2,f +4617,3713,71,1,t +4617,3749,19,4,f +4617,3830,0,4,f +4617,3831,0,4,f +4617,3832,70,1,f +4617,3844,0,2,f +4617,3846pr20,71,1,f +4617,3848,0,5,f +4617,3937,72,1,f +4617,3941,70,4,f +4617,3941,57,2,f +4617,4070,19,6,f +4617,4085c,0,6,f +4617,4095,70,2,f +4617,42445,71,2,f +4617,4274,71,1,t +4617,4274,71,2,f +4617,4286,72,1,f +4617,4341,0,1,f +4617,43888,72,2,f +4617,43899,72,5,f +4617,4460b,72,2,f +4617,44728,72,8,f +4617,4488,0,4,f +4617,4489,70,8,f +4617,4495b,2,2,f +4617,4495b,14,2,f +4617,4497,0,9,f +4617,4503,135,4,f +4617,4589,36,2,f +4617,47456,297,6,f +4617,47457,135,7,f +4617,47847pat0003,135,2,f +4617,48485,76,1,f +4617,48490,71,4,f +4617,48493,132,3,f +4617,48494pr07,151,1,f +4617,48495,134,2,f +4617,48495,179,5,f +4617,48723,70,2,f +4617,49668,135,4,f +4617,54175,148,1,f +4617,54177,135,2,f +4617,6020,0,1,f +4617,6066,72,2,f +4617,6112,71,3,f +4617,6123,72,4,f +4617,6126a,57,2,f +4617,6134,71,1,f +4617,6260,15,1,f +4617,6265,15,1,t +4617,6265,15,2,f +4617,6266,15,2,f +4617,6541,0,2,f +4617,6553,0,1,f +4617,6587,72,2,f +4617,8813stk01,9999,1,t +4617,970c00,288,3,f +4617,970x026,2,2,f +4617,970x026,14,3,f +4617,973c10,0,6,f +4617,973c47,71,4,f +4618,70928b,0,1,f +4619,3626bpr0895,15,1,f +4619,6260,15,1,f +4619,6265,15,2,f +4619,6265,15,1,t +4619,6266,15,2,f +4620,2412b,0,13,f +4620,2412b,14,4,f +4620,2419,14,4,f +4620,2420,14,4,f +4620,2432,1,2,f +4620,2449,14,6,f +4620,2456,72,2,f +4620,2465,72,2,f +4620,2540,4,4,f +4620,2877,14,8,f +4620,3001,4,2,f +4620,3002,70,3,f +4620,3009,14,8,f +4620,3009,0,2,f +4620,3010,1,4,f +4620,30165,0,2,f +4620,3020,2,1,f +4620,3023,14,4,f +4620,3023,47,2,f +4620,3023,1,4,f +4620,3024,182,6,f +4620,30259,71,1,f +4620,30293,72,2,f +4620,30294,72,2,f +4620,3034,14,2,f +4620,3036,72,3,f +4620,30385,297,2,f +4620,30414,71,1,f +4620,3068b,15,1,f +4620,3069b,15,1,f +4620,3070bpr0007,71,1,f +4620,3176,14,2,f +4620,32064b,4,2,f +4620,3245b,14,4,f +4620,3456,72,3,f +4620,3460,14,4,f +4620,3622,14,6,f +4620,3626cpr0920,14,1,f +4620,3666,4,5,f +4620,3666,0,5,f +4620,3700,70,4,f +4620,3703,71,2,f +4620,3710,14,13,f +4620,3713,4,4,f +4620,3795,0,5,f +4620,3795,14,1,f +4620,3823,40,2,f +4620,3829c01,1,1,f +4620,3957b,71,1,f +4620,3958,71,1,f +4620,4150,14,2,f +4620,4162,4,4,f +4620,4202stk01,9999,1,f +4620,4287,14,4,f +4620,43337,14,2,f +4620,44567a,14,4,f +4620,44570,71,3,f +4620,44728,15,2,f +4620,45677,0,1,f +4620,4740,72,1,f +4620,55976,0,4,f +4620,56145,14,4,f +4620,59900,0,1,f +4620,6020,0,1,f +4620,60474,71,2,f +4620,60477,0,2,f +4620,60479,71,1,f +4620,60581,0,2,f +4620,61252,0,1,f +4620,6141,297,3,f +4620,6141,36,2,f +4620,6141,179,1,f +4620,61485,0,2,f +4620,6191,19,2,f +4620,6192,71,2,f +4620,6232,72,4,f +4620,63864,71,2,f +4620,64451,4,2,f +4620,64728,4,1,f +4620,6587,28,2,f +4620,6589,19,4,f +4620,6636,14,11,f +4620,6636,0,2,f +4620,87079,14,3,f +4620,87083,72,4,f +4620,92280,71,1,f +4620,92593,72,2,f +4620,93274,4,2,f +4620,970c00,28,1,f +4620,973pr2037c01,272,1,f +4620,98138,47,1,f +4620,98289,179,1,f +4620,99207,71,2,f +4622,3039,1,18,f +4622,3043,1,4,f +4624,13783,71,1,f +4624,3626cpr1245,14,1,f +4624,3841,72,1,f +4624,46303,4,1,f +4624,88646,0,1,f +4624,970c00pr0531,4,1,f +4624,973pr2417c01,4,1,f +4625,tplan02,89,1,f +4629,2412b,4,1,f +4629,2458,7,2,f +4629,2817,7,1,f +4629,2926,4,2,f +4629,2927,0,4,f +4629,30031,0,2,f +4629,3035,7,1,f +4629,3624,4,1,f +4629,3626bp03,14,1,f +4629,3626bpx19,14,1,f +4629,3626bpx77,14,1,f +4629,3794a,0,2,f +4629,4485,4,1,f +4629,4524,4,1,t +4629,4524,4,1,f +4629,6019,7,2,f +4629,970c00,1,1,f +4629,970c00,14,1,f +4629,973px127c01,15,1,f +4629,973px128c01,14,1,f +4634,2952,7,4,f +4634,6575,7,8,f +4634,70496,0,1,f +4635,2412b,1,2,f +4635,2489,6,1,f +4635,2542,6,1,f +4635,30136,19,1,f +4635,30153,42,1,f +4635,3022,19,2,f +4635,3062b,0,1,f +4635,3626bpx39,14,1,f +4635,4032a,6,1,f +4635,4589,46,1,f +4635,4740,0,2,f +4635,4855,0,2,f +4635,4859,1,2,f +4635,6132,15,1,f +4635,970x026,4,1,f +4635,973pb0240c01,4,1,f +4636,30648,0,8,f +4636,55981,71,8,f +4638,10201,4,2,f +4638,10201,15,2,f +4638,11090,0,6,f +4638,11090,14,6,f +4638,11153,70,2,f +4638,11153,28,2,f +4638,11153,15,4,f +4638,11211,71,2,f +4638,11211,15,1,f +4638,11477,25,4,f +4638,11477,72,4,f +4638,11477,15,11,f +4638,11477,4,10,f +4638,11477,70,7,f +4638,11477,308,6,f +4638,11477,71,6,f +4638,13349,15,2,f +4638,13547,484,2,f +4638,14417,72,17,f +4638,14418,71,6,f +4638,14704,71,17,f +4638,15068,308,2,f +4638,15068,0,1,f +4638,15068,15,5,f +4638,15070,15,4,f +4638,15208,15,5,f +4638,15209,15,1,f +4638,15672,70,4,f +4638,2420,71,2,f +4638,2420,4,2,f +4638,2420,28,2,f +4638,2654,72,3,f +4638,2654,71,3,f +4638,2654,15,4,f +4638,3001,70,1,f +4638,3002,15,2,f +4638,3002,4,1,f +4638,3003,28,1,f +4638,3004,15,1,f +4638,3004,71,1,f +4638,3020,70,1,f +4638,3020,15,1,f +4638,3020,72,1,f +4638,3020,71,3,f +4638,3021,25,1,f +4638,3021,15,1,f +4638,3021,272,1,f +4638,3021,71,3,f +4638,3022,70,10,f +4638,3022,15,8,f +4638,3022,4,4,f +4638,3022,71,4,f +4638,3022,484,2,f +4638,3022,72,1,f +4638,3023,70,4,f +4638,3023,28,4,f +4638,3023,0,3,f +4638,3023,25,1,f +4638,3023,72,1,f +4638,3023,4,1,f +4638,3023,71,2,f +4638,3023,484,3,f +4638,3023,15,11,f +4638,3024,4,4,f +4638,3024,25,2,f +4638,3024,15,3,f +4638,3024,70,1,f +4638,3024,0,3,f +4638,3039,15,2,f +4638,30414,71,2,f +4638,3049d,14,1,f +4638,3069b,4,2,f +4638,3069b,72,2,f +4638,3069b,15,3,f +4638,3069b,71,2,f +4638,3069b,70,4,f +4638,3070b,15,8,f +4638,3070b,72,4,f +4638,3070b,70,2,f +4638,3070b,0,1,f +4638,32028,72,1,f +4638,32028,28,1,f +4638,3623,15,4,f +4638,3623,70,2,f +4638,3623,71,2,f +4638,3623,4,3,f +4638,3660,70,1,f +4638,3710,70,2,f +4638,3710,0,1,f +4638,3710,484,2,f +4638,3710,4,1,f +4638,3747a,15,1,f +4638,3747a,4,1,f +4638,3747a,71,1,f +4638,3794b,70,1,f +4638,3794b,25,4,f +4638,3794b,4,3,f +4638,4070,4,2,f +4638,4070,0,1,f +4638,41532,0,2,f +4638,41769,272,1,f +4638,41770,272,1,f +4638,43722,15,1,f +4638,43722,72,1,f +4638,43723,72,1,f +4638,43723,15,1,f +4638,44301a,15,1,f +4638,44302a,15,1,f +4638,44302a,0,2,f +4638,44728,25,1,f +4638,4697b,0,4,f +4638,4733,0,4,f +4638,47753,15,5,f +4638,48183,15,1,f +4638,48336,15,1,f +4638,48336,14,2,f +4638,4871,15,1,f +4638,49668,15,5,f +4638,49668,0,9,f +4638,51739,15,2,f +4638,52501,15,2,f +4638,53451,0,7,f +4638,54200,70,1,f +4638,54200,4,1,f +4638,54200,272,1,f +4638,54200,15,4,f +4638,59275,0,4,f +4638,59900,25,1,f +4638,59900,0,3,f +4638,6019,72,2,f +4638,60470a,15,1,f +4638,60471,15,1,f +4638,60478,72,2,f +4638,60478,15,1,f +4638,60897,0,1,f +4638,6091,15,1,f +4638,6141,0,2,f +4638,6231,4,2,f +4638,62462,0,1,f +4638,63864,28,2,f +4638,63965,0,2,f +4638,64727,272,1,f +4638,6628,0,6,f +4638,73983,0,4,f +4638,73983,15,4,f +4638,85984,15,3,f +4638,85984,70,3,f +4638,87079,272,1,f +4638,87087,70,2,f +4638,87087,0,6,f +4638,87087,15,4,f +4638,87087,71,1,f +4638,87087,4,2,f +4638,92582,15,1,f +4638,93273,70,6,f +4638,93606,308,1,f +4638,93606,15,1,f +4638,93606,4,1,f +4638,98138pr0008,15,10,f +4638,99206,71,1,f +4638,99780,15,2,f +4638,99780,14,1,f +4638,99781,15,1,f +4639,11055pr0006,0,1,f +4639,11090,72,1,t +4639,11090,72,2,f +4639,11094,0,4,f +4639,11096,297,1,f +4639,11097,297,1,f +4639,11097,179,1,f +4639,11100,15,2,f +4639,11107,179,1,f +4639,11127,41,1,f +4639,11211,71,1,f +4639,11233pr0003,71,1,f +4639,11233pr0004,72,1,f +4639,12549pr0004,15,1,f +4639,12825,15,2,f +4639,2412b,320,2,f +4639,2432,0,1,f +4639,2445,4,1,f +4639,2654,72,1,f +4639,2730,71,2,f +4639,2780,0,14,f +4639,2780,0,2,t +4639,2817,71,1,f +4639,30000,71,1,f +4639,3003,72,1,f +4639,3004,4,1,f +4639,3020,72,1,f +4639,3020,4,1,f +4639,3021,71,2,f +4639,3023,71,1,f +4639,3023,0,5,f +4639,3032,320,1,f +4639,3034,71,2,f +4639,3034,72,2,f +4639,3036,72,1,f +4639,3037,71,1,f +4639,30374,71,1,f +4639,30374,36,1,f +4639,3040b,72,2,f +4639,30414,19,2,f +4639,3048c,71,7,f +4639,3049b,71,1,f +4639,32000,72,4,f +4639,32002,72,1,t +4639,32002,72,2,f +4639,32039,0,1,f +4639,32054,4,2,f +4639,32073,71,2,f +4639,32123b,71,2,t +4639,32123b,71,8,f +4639,32123b,14,6,f +4639,32123b,14,1,t +4639,32270,0,2,f +4639,32294,0,4,f +4639,32524,71,2,f +4639,3626cpr1137,71,1,f +4639,3626cpr1138,72,1,f +4639,3666,320,3,f +4639,3666,72,7,f +4639,3701,0,2,f +4639,3702,0,2,f +4639,3706,0,1,f +4639,3710,19,2,f +4639,3713,71,1,t +4639,3713,71,2,f +4639,3829c01,4,1,f +4639,3895,0,2,f +4639,3937,0,1,f +4639,3941,0,2,f +4639,3960,320,4,f +4639,4032a,0,4,f +4639,4032a,4,4,f +4639,40490,0,2,f +4639,4085c,4,6,f +4639,41669,179,1,f +4639,41677,0,4,f +4639,4185,71,2,f +4639,42610,71,2,f +4639,4274,1,1,t +4639,4274,1,2,f +4639,4286,71,2,f +4639,4287,72,2,f +4639,43093,1,4,f +4639,43710,71,1,f +4639,43711,71,1,f +4639,43720,72,2,f +4639,43721,72,2,f +4639,43722,72,3,f +4639,43723,72,3,f +4639,44294,71,2,f +4639,44568,320,4,f +4639,4519,71,2,f +4639,4697b,71,1,t +4639,4697b,71,1,f +4639,47759,0,1,f +4639,4865a,71,2,f +4639,4868b,320,2,f +4639,48933,72,1,f +4639,50451,15,1,f +4639,51739,320,1,f +4639,51739,72,1,f +4639,53451,15,2,t +4639,53451,15,28,f +4639,54200,71,4,f +4639,54200,71,1,t +4639,55013,72,2,f +4639,57028c01,71,1,f +4639,57796,72,1,f +4639,59426,72,2,f +4639,59443,0,3,f +4639,60169,71,1,f +4639,60483,71,7,f +4639,60752,179,1,f +4639,60752,179,1,t +4639,6134,71,1,f +4639,6141,4,1,t +4639,6141,4,2,f +4639,62462,0,2,f +4639,63965,0,1,f +4639,64276,0,1,f +4639,64451,320,2,f +4639,64799,71,1,f +4639,6558,1,2,f +4639,6587,28,1,f +4639,73983,71,2,f +4639,85959pat0001,36,2,f +4639,87083,72,2,f +4639,87747,15,2,t +4639,87747,15,4,f +4639,92013,72,1,f +4639,92092,72,4,f +4639,970c00pr0436,71,1,f +4639,970c00pr0437,72,1,f +4639,973pr2231c01,212,1,f +4639,973pr2237c01,71,1,f +4639,973pr2238c01,320,1,f +4639,98138,41,4,f +4639,98138,41,1,t +4639,99021,72,1,f +4639,99206,71,1,f +4639,99207,71,1,f +4640,2343,47,2,f +4640,3031,70,1,f +4640,3062b,19,4,f +4640,33048,484,1,f +4640,33057,484,2,f +4640,95228,34,1,f +4641,2479,0,1,f +4641,3001,0,3,f +4641,3002,0,1,f +4641,30474pb02,0,1,f +4641,3298,14,2,f +4641,3747b,0,1,f +4641,3795,4,5,f +4641,4729,4,1,f +4645,11477,27,2,f +4645,15712,72,1,f +4645,2357,191,2,f +4645,3004,27,1,f +4645,3021,25,1,f +4645,3021,0,1,f +4645,3023,15,2,f +4645,3023,0,2,f +4645,3024,15,1,f +4645,3024,27,2,f +4645,3040b,0,2,f +4645,3070b,4,1,f +4645,3622,27,2,f +4645,3623,27,11,f +4645,3623,191,1,f +4645,3665,27,3,f +4645,54200,72,1,f +4645,6091,191,2,f +4645,6141,71,3,f +4645,6141,4,1,f +4645,6141,0,1,f +4645,6141,14,3,f +4645,6141,27,2,f +4645,87087,27,5,f +4645,98138pr0008,15,2,f +4646,2431,15,1,f +4646,2432,4,1,f +4646,2441,4,1,f +4646,2446,15,1,f +4646,2447,33,1,f +4646,30027,15,4,f +4646,30028,0,4,f +4646,3003,0,1,f +4646,3039p71,0,1,f +4646,3626bpb0110,14,1,f +4646,3829c01,14,1,f +4646,3839b,7,1,f +4646,4286,0,2,f +4646,970c00,15,1,f +4646,973pb0024c01,15,1,f +4648,15712,72,4,f +4648,3005,15,2,f +4648,3070b,4,2,f +4648,3794b,15,1,f +4648,3839b,15,4,f +4648,4070,71,1,f +4648,4733,15,1,f +4648,52107,4,1,f +4648,54200,40,1,f +4648,54200,71,1,f +4648,6141,1,1,f +4648,64567,71,4,f +4649,3626bpr0676,14,1,f +4649,87991,70,1,f +4649,970c00pr0152,19,1,f +4649,973pr1597c01,73,1,f +4650,2343,7,4,f +4650,2412b,7,4,f +4650,2432,15,1,f +4650,2440pb006,15,1,f +4650,2440pb008,15,1,f +4650,2446,15,1,f +4650,2446,1,1,f +4650,2447,41,2,f +4650,2452,15,1,f +4650,2452,4,1,f +4650,2486,15,1,f +4650,2817,0,2,f +4650,3020,4,2,f +4650,3020,14,1,f +4650,3020,15,1,f +4650,3022,1,1,f +4650,3022,4,1,f +4650,3024,0,2,f +4650,3024,15,1,f +4650,3024,4,1,f +4650,3024,1,1,f +4650,3034,15,1,f +4650,3062b,4,2,f +4650,3068b,15,1,f +4650,3068b,1,1,f +4650,3139,0,4,f +4650,3298p54,15,1,f +4650,3298p55,1,1,f +4650,3623,0,1,f +4650,3623,15,3,f +4650,3623,7,4,f +4650,3623,4,3,f +4650,3626apr0001,14,2,f +4650,3706,0,2,f +4650,3710,14,1,f +4650,3710,4,2,f +4650,3710,15,1,f +4650,3794a,4,1,f +4650,3794a,1,1,f +4650,3795,15,1,f +4650,3795,1,1,f +4650,3829c01,15,1,f +4650,3829c01,14,1,f +4650,3937,4,2,f +4650,3937,1,2,f +4650,3938,15,2,f +4650,3938,0,4,f +4650,4081b,7,4,f +4650,4084,0,8,f +4650,4265a,7,12,f +4650,4276b,4,1,f +4650,4276b,15,1,f +4650,4286,15,2,f +4650,4286,1,2,f +4650,4599a,4,2,f +4650,4600,15,1,f +4650,4600,0,1,f +4650,4624,7,4,f +4650,4732,1,1,f +4650,4732,15,1,f +4650,4859,14,1,f +4650,4859,4,2,f +4650,4859,15,2,f +4650,6141,46,6,f +4650,6141,47,2,f +4650,6141,14,3,f +4650,6141,34,2,f +4650,6141,36,2,f +4650,6141,4,3,f +4650,970c00,0,1,f +4650,970c00,15,1,f +4650,973p0ac02,0,1,f +4650,973p0bc01,15,1,f +4652,2412b,1,2,f +4652,2412b,15,3,f +4652,2419,1,2,f +4652,2433,15,2,f +4652,2445,1,1,f +4652,2446,15,1,f +4652,2452,1,1,f +4652,2462,1,2,f +4652,2483,57,1,f +4652,2516,1,1,f +4652,2569,57,1,f +4652,2582,57,2,f +4652,2607,1,1,f +4652,2609,15,1,f +4652,2654,1,1,f +4652,2817,0,4,f +4652,298c02,15,4,f +4652,3001,1,1,f +4652,3020,1,3,f +4652,3021,1,1,f +4652,3022,0,1,f +4652,3022,15,2,f +4652,3023,0,2,f +4652,3023,15,5,f +4652,3023,1,1,f +4652,3029,15,1,f +4652,3034,1,1,f +4652,3039,1,1,f +4652,3068bp61,1,1,f +4652,3069bp13,15,2,f +4652,3069bp61,15,2,f +4652,3149c01,0,1,f +4652,3623,1,2,f +4652,3626bp62,14,1,f +4652,3673,7,8,f +4652,3679,7,1,f +4652,3680,0,1,f +4652,3700,15,2,f +4652,3708,0,1,f +4652,3710,0,2,f +4652,3710,1,1,f +4652,3795,1,1,f +4652,3829c01,15,1,f +4652,3838,15,1,f +4652,3839b,15,1,f +4652,3839b,1,1,f +4652,3941,57,3,f +4652,3941,15,2,f +4652,3942b,0,1,f +4652,3943b,0,1,f +4652,3957a,0,1,f +4652,4070,1,2,f +4652,4085c,1,4,f +4652,4276b,15,1,f +4652,4276b,1,1,f +4652,4315,15,3,f +4652,4504,1,1,f +4652,4589,57,1,f +4652,4590,15,1,f +4652,4591,0,1,f +4652,4623,1,1,f +4652,4732,15,1,f +4652,4733,0,1,f +4652,4735,0,1,f +4652,4740,15,1,f +4652,4740,57,1,f +4652,4871,1,2,f +4652,6117,57,1,f +4652,6118,15,8,f +4652,6119,57,1,f +4652,6120,57,2,f +4652,6141,15,8,f +4652,6141,57,1,t +4652,6141,15,1,t +4652,6141,57,2,f +4652,73092,0,2,f +4652,970x023,0,1,f +4652,973p62c01,0,1,f +4653,3004,71,3,f +4653,30162,72,1,f +4653,3022,72,1,f +4653,3024,72,1,f +4653,3069b,72,1,f +4653,4085c,71,1,f +4653,4623,72,1,f +4653,64644,71,4,f +4654,3001a,0,1,f +4654,3002a,4,2,f +4654,3004,0,3,f +4654,3005,0,7,f +4654,3006,4,2,f +4654,3007,0,2,f +4654,3009,0,4,f +4654,3010,4,4,f +4654,3010,0,5,f +4654,3021,0,2,f +4654,3022,4,1,f +4654,3034,0,1,f +4654,3036,0,1,f +4654,3037,0,4,f +4654,3038,0,2,f +4654,3039,0,2,f +4654,3039,4,1,f +4654,3040b,0,2,f +4654,3062a,0,2,f +4654,3081cc01,0,4,f +4654,3622,0,2,f +4654,3623,0,4,f +4654,3624,4,1,f +4654,3626apr0001,14,1,f +4654,3665,0,2,f +4654,3666,0,1,f +4654,3684,0,2,f +4654,3700,0,1,f +4654,3710,0,2,f +4654,3794a,0,3,f +4654,3941,0,2,f +4654,3958,0,1,f +4654,4023,0,2,f +4654,4032a,4,1,f +4654,4070,4,2,f +4654,4161,0,4,f +4654,4175,4,2,f +4654,4178,4,1,f +4654,4180c04,4,3,f +4654,6141,46,3,f +4654,73092,0,2,f +4654,7810stk01a,9999,1,t +4654,970c00,1,1,f +4654,973p26c01,1,1,f +4657,3005,1,1,f +4657,3005,4,1,f +4657,3005,14,1,f +4657,3020,2,2,f +4657,3022,2,2,f +4657,3023,2,8,f +4657,3024,46,2,f +4657,3024,46,1,t +4657,3031,70,1,f +4657,3062b,15,1,t +4657,3062b,2,3,f +4657,3062b,2,1,t +4657,3062b,15,2,f +4657,6141,36,2,f +4657,6141,46,1,t +4657,6141,36,1,t +4657,6141,46,2,f +4661,2423,2,1,f +4661,30153,47,1,f +4661,3741,2,1,f +4661,3742,4,1,t +4661,3742,4,3,f +4661,4728,45,1,f +4661,6255,10,1,f +4663,14210,2,1,f +4663,2343,14,1,f +4663,2346,0,2,f +4663,2412b,7,2,f +4663,2420,4,4,f +4663,2431,0,1,f +4663,2431,1,2,f +4663,2431,14,2,f +4663,2436,7,1,f +4663,2454a,8,10,f +4663,2454px6,7,2,f +4663,2530,8,1,f +4663,2549,6,1,f +4663,2555,7,2,f +4663,2877,14,1,f +4663,298c01,0,1,t +4663,298c01,0,2,f +4663,3001,0,1,f +4663,3003,4,5,f +4663,3003,7,1,f +4663,3004,7,6,f +4663,3004,4,2,f +4663,30041,8,1,f +4663,30042,8,1,f +4663,3005,7,2,f +4663,3005,0,6,f +4663,3007,7,1,f +4663,3008,1,2,f +4663,3008,4,2,f +4663,3008px24,8,3,f +4663,3009,7,4,f +4663,3009,1,1,f +4663,3009,4,2,f +4663,3010,0,2,f +4663,30103,0,1,f +4663,30115,0,1,f +4663,30115,4,1,f +4663,30127,4,1,f +4663,30127,1,1,f +4663,30132,8,1,t +4663,30132,8,1,f +4663,30133,1,1,f +4663,30135,0,1,f +4663,30136,6,2,f +4663,30137,6,4,f +4663,30141,8,1,f +4663,30145,0,6,f +4663,30147,7,1,f +4663,30148,0,1,f +4663,30149,7,1,f +4663,30150,6,1,f +4663,30152pat0001,0,1,f +4663,30153,36,4,f +4663,30155,7,4,f +4663,30156pb01,8,1,f +4663,30157,19,2,f +4663,30157,6,2,f +4663,30158,6,1,f +4663,30161pa1,47,1,f +4663,30162,8,1,f +4663,30165,0,1,f +4663,30165,19,1,f +4663,30167,6,1,f +4663,30169,0,1,f +4663,30172,15,2,f +4663,3020,2,2,f +4663,3020,4,4,f +4663,3020,14,1,f +4663,3020,19,1,f +4663,3020,1,5,f +4663,3021,4,2,f +4663,3022,4,5,f +4663,3023,7,2,f +4663,30236,0,2,f +4663,30237a,8,8,f +4663,30238,0,2,f +4663,30239,2,2,f +4663,3024,4,2,f +4663,30240,8,1,f +4663,30271px1,2,1,f +4663,30276px1,14,1,f +4663,3031,2,1,f +4663,30338,6,1,f +4663,30339,2,1,f +4663,3034,4,4,f +4663,3034,0,1,f +4663,3035,7,1,f +4663,3035,8,1,f +4663,3036,1,1,f +4663,3039,8,2,f +4663,3039,1,14,f +4663,3040b,1,12,f +4663,3040b,4,6,f +4663,3048c,4,1,f +4663,3062b,0,4,f +4663,3062b,47,1,f +4663,3062b,14,3,f +4663,3068b,14,1,f +4663,3068bpx24,19,1,f +4663,3069b,6,2,f +4663,3069b,4,1,f +4663,3069bpa0,19,2,f +4663,3069bpa1,0,1,f +4663,3069bpx30,15,1,f +4663,3176,0,1,f +4663,32000,7,4,f +4663,3298,4,2,f +4663,3308,7,3,f +4663,33129,6,1,f +4663,3455,4,2,f +4663,3455,7,4,f +4663,3460,4,4,f +4663,3460,0,2,f +4663,3460,7,1,f +4663,3460,1,1,f +4663,3483,0,2,f +4663,3623,7,4,f +4663,3623,4,2,f +4663,3626bpa1,14,1,f +4663,3626bpa3,14,1,f +4663,3626bpa4,14,1,f +4663,3626bpab,14,1,f +4663,3626bpac,14,1,f +4663,3626bpr0098,14,1,f +4663,3626bpr0895,15,6,f +4663,3629,15,1,f +4663,3659,0,2,f +4663,3666,0,2,f +4663,3684,8,4,f +4663,37,383,2,f +4663,3700,1,6,f +4663,3701,7,3,f +4663,3710,19,2,f +4663,3710,1,1,f +4663,3710,4,4,f +4663,3794a,4,1,f +4663,3795,14,1,f +4663,3829c01,0,2,f +4663,3832,0,1,f +4663,3841,8,1,t +4663,3841,8,2,f +4663,3849,6,1,f +4663,3899,4,1,f +4663,3937,15,1,f +4663,3938,14,1,f +4663,3941,14,2,f +4663,3957a,0,1,f +4663,4032a,14,5,f +4663,4032a,2,1,f +4663,4032a,0,2,f +4663,4070,57,4,f +4663,4070,1,2,f +4663,4081b,7,8,f +4663,4162,1,2,f +4663,4201,2,3,f +4663,4202,2,2,f +4663,4460a,4,6,f +4663,4495b,4,1,f +4663,4497,0,3,f +4663,4522,0,1,f +4663,4529,8,1,f +4663,4589,14,2,f +4663,4625,19,1,f +4663,4863,7,1,f +4663,4865a,14,4,f +4663,4865a,4,1,f +4663,4871,8,1,f +4663,57503,334,1,f +4663,57504,334,1,f +4663,57505,334,1,f +4663,57506,334,1,f +4663,60169,7,1,f +4663,6026,2,1,f +4663,6027,2,1,f +4663,6028,2,1,f +4663,6064,2,1,f +4663,6081,7,2,f +4663,6091,14,2,f +4663,6091,4,2,f +4663,6091,7,8,f +4663,6126a,57,7,f +4663,6141,15,23,f +4663,6141,46,2,f +4663,6141,47,1,f +4663,6141,0,3,f +4663,6141,0,1,t +4663,6141,47,1,t +4663,6231,14,4,f +4663,6255,2,3,f +4663,6260,15,2,f +4663,6265,15,4,f +4663,6266,15,4,f +4663,6541,15,2,f +4663,6587,8,3,f +4663,6636,7,2,f +4663,970c00,6,1,f +4663,970c00,4,1,f +4663,970c00,0,1,f +4663,970c00,7,1,f +4663,970c00,2,1,f +4663,970c03pb02,14,1,f +4663,973pa1c01,15,1,f +4663,973pa4c01,15,1,f +4663,973pa8c01,2,1,f +4663,973pabc01,14,1,f +4663,973pacc01,14,1,f +4663,973pb0391c01,19,1,f +4663,x1255px1,4,1,f +4663,x276,334,1,f +4665,3002,14,1,f +4665,3003pe2,14,1,f +4665,3004,14,1,f +4665,3004,4,2,f +4665,3020,14,1,f +4665,3021,14,1,f +4665,3022,14,1,f +4665,3040b,14,2,f +4667,2335px1,0,1,f +4667,2470,6,2,f +4667,2540,7,1,f +4667,2555,4,2,f +4667,30136,19,2,f +4667,30173a,0,2,f +4667,30177,15,1,f +4667,3020,1,2,f +4667,3626bpr0137,14,1,f +4667,3839b,0,1,f +4667,3848,6,2,f +4667,4085c,7,2,f +4667,4488,0,2,f +4667,970x026,15,1,f +4667,973pb0240c02,15,1,f +4668,2343,47,2,f +4668,2439,8,2,f +4668,2495,4,1,f +4668,2496,0,1,f +4668,2610,14,2,f +4668,2614,0,1,f +4668,3835,0,1,f +4668,3836,6,1,f +4668,3837,8,1,f +4668,3838,4,1,f +4668,3852a,6,1,f +4668,3899,4,2,f +4668,3900,15,2,f +4668,3962a,0,1,f +4668,4006,0,1,f +4668,4081b,4,1,f +4668,4349,7,1,f +4668,4360,0,1,f +4668,4449,6,1,f +4668,4449,15,1,f +4668,4522,0,1,f +4668,4528,0,1,f +4668,4529,0,1,f +4668,4599a,1,2,f +4668,4599a,4,2,f +4668,4740,8,2,f +4668,56823,0,1,f +4668,6141,14,1,f +4669,2343,297,1,f +4669,2357,320,4,f +4669,2543,4,1,f +4669,2577,288,1,f +4669,3004,4,4,f +4669,3004,320,4,f +4669,3004,0,6,f +4669,3005,320,10,f +4669,3005,15,3,f +4669,3009,320,12,f +4669,3009,15,2,f +4669,3020,19,1,f +4669,3021,19,5,f +4669,3022,70,1,f +4669,3024,2,6,f +4669,30503,72,1,f +4669,3062b,70,2,f +4669,3068bpr0197,28,1,f +4669,3070b,72,1,t +4669,3070b,15,3,f +4669,3070b,15,1,t +4669,3070b,72,4,f +4669,3622,0,2,f +4669,3623,19,1,f +4669,3623,2,2,f +4669,3626bpr0679,14,1,f +4669,3633,0,1,f +4669,3710,28,2,f +4669,3899,47,1,f +4669,4032a,2,1,f +4669,4032a,70,1,f +4669,4070,72,4,f +4669,41539,71,1,f +4669,54200,182,1,t +4669,54200,182,1,f +4669,6132,15,1,f +4669,6141,4,5,f +4669,6141,71,1,t +4669,6141,297,1,f +4669,6141,70,5,f +4669,6141,70,1,t +4669,6141,4,1,t +4669,6141,297,1,t +4669,6141,71,1,f +4669,6231,71,4,f +4669,64644,0,1,f +4669,6636,15,2,f +4669,87087,71,3,f +4669,970c00,4,1,f +4669,973c31,4,1,f +4669,98138,71,2,f +4669,98138,71,1,t +4670,3626bpr0780,14,1,f +4670,6141,0,1,f +4670,88646,0,1,f +4670,93555,179,2,f +4670,93559,15,1,f +4670,93560,272,1,f +4670,93561,15,1,f +4670,93565pr0001,272,1,f +4670,970c00pr0214,272,1,f +4670,973c53,272,1,f +4671,12825,15,1,f +4671,2412b,0,1,f +4671,2420,19,3,f +4671,2877,70,1,f +4671,3001,0,1,f +4671,3003,0,1,f +4671,3003,72,2,f +4671,3003,28,8,f +4671,3003,15,1,f +4671,3003,33,1,f +4671,3004,0,2,f +4671,3005,70,1,f +4671,30055,0,1,f +4671,3009,15,1,f +4671,3010,15,2,f +4671,30153,36,1,f +4671,3020,4,1,f +4671,3020,70,6,f +4671,3022,19,3,f +4671,3022,0,9,f +4671,3022,14,2,f +4671,30229,72,1,f +4671,3023,47,16,f +4671,3023,2,12,f +4671,3023,4,3,f +4671,3024,33,1,f +4671,3024,47,4,f +4671,3027,72,1,f +4671,3031,2,3,f +4671,30355,1,1,f +4671,30356,1,1,f +4671,30367b,72,1,f +4671,3048c,0,1,f +4671,3065,40,4,f +4671,3065,47,2,f +4671,3068bpr0142,15,1,f +4671,3068bpr0143,15,1,f +4671,3068bpr0144,15,1,f +4671,3068bpr0145,15,1,f +4671,3068bpr0148,15,1,f +4671,3068bpr0181,15,1,f +4671,3068bpr0203,15,1,f +4671,3068bpr0204,15,3,f +4671,3068bpr0205,15,2,f +4671,3068bpr0210,15,1,f +4671,3069b,4,3,f +4671,3069bpr0099,15,1,f +4671,3069bpr0100,2,13,f +4671,3069bpr0115,15,2,f +4671,32474,27,3,f +4671,33125,484,1,f +4671,3622,15,3,f +4671,3665,15,1,f +4671,3794b,4,2,f +4671,3794b,0,11,f +4671,3794b,14,2,f +4671,3794b,1,3,f +4671,3899,4,1,f +4671,3941,4,1,f +4671,3941,15,1,f +4671,3941,46,1,f +4671,3957b,0,1,f +4671,4070,15,3,f +4671,4070,14,2,f +4671,4150p02,14,1,f +4671,4216,4,2,f +4671,4274,71,1,f +4671,4274,71,1,t +4671,43722,1,1,f +4671,4589,70,2,f +4671,4733,72,1,f +4671,49668,15,2,f +4671,54200,4,3,f +4671,54200,40,1,t +4671,54200,4,1,t +4671,54200,40,1,f +4671,6180,71,1,f +4671,64776pat0001,0,1,f +4671,85863pr0087,0,2,f +4671,85863pr0088,15,4,f +4671,87087,0,6,f +4671,87580,15,8,f +4671,87580,71,40,f +4671,91405,10,1,f +4671,92842,0,1,f +4671,96874,25,1,t +4672,281,14,2,f +4672,3001,14,2,f +4672,3001,4,16,f +4672,3002,4,2,f +4672,3002,1,4,f +4672,3003,4,19,f +4672,3003,14,6,f +4672,3003,1,9,f +4672,3004,1,17,f +4672,3004,4,9,f +4672,3009,1,2,f +4672,3010,4,4,f +4672,3027,14,1,f +4672,3030,14,1,f +4672,3031,4,1,f +4672,3031,1,2,f +4672,3033,14,2,f +4672,3035,14,1,f +4672,3185,4,4,f +4672,3403c01,4,1,f +4672,3836,6,1,f +4672,3888ac01,0,1,f +4672,3888ac01,14,1,f +4672,3900,7,1,f +4672,4000,14,1,f +4672,5,4,1,f +4672,691,1,1,f +4672,691,4,1,f +4672,692,4,1,f +4672,692,1,1,f +4672,fab5e,9999,1,f +4672,fab7e,9999,1,f +4672,u9143,4,1,f +4672,u9154,0,1,f +4672,u9213,2,1,f +4672,u9215,4,1,f +4672,x581c05,1,1,f +4672,x610c04,1,2,f +4672,x636c01,14,6,f +4672,x655c01,14,1,f +4672,x661c02,14,1,f +4672,x837,1,1,f +4672,x838,1,1,f +4674,10197,72,2,f +4674,10201,4,3,f +4674,10247,71,2,f +4674,11090,72,2,f +4674,11097,41,1,f +4674,11100,71,2,f +4674,11127,41,1,f +4674,11127,182,2,f +4674,11476,15,1,f +4674,11477,70,6,f +4674,11477,72,2,f +4674,14769,14,1,f +4674,14769,70,4,f +4674,15068,15,1,f +4674,15068,484,2,f +4674,15070,15,6,f +4674,15090,179,3,f +4674,15092,72,2,f +4674,15208,15,3,f +4674,15367,297,2,f +4674,15391,0,1,f +4674,15392,72,1,f +4674,15461,0,2,f +4674,15540,72,2,f +4674,15712,71,5,f +4674,15712,297,2,f +4674,16659pr0001,31,1,f +4674,18392pr0004b,70,1,f +4674,18392pr0008,15,1,f +4674,18394pat0001,36,2,f +4674,18396pat0001,4,2,f +4674,18398pr0005,297,1,f +4674,18651,0,1,f +4674,18654,72,4,f +4674,18671,72,1,f +4674,18975,72,1,f +4674,2412b,71,2,f +4674,2420,70,8,f +4674,2420,4,2,f +4674,2458,4,1,f +4674,2515,0,3,f +4674,2540,4,1,f +4674,2654,4,1,f +4674,2654,72,1,f +4674,2780,0,14,f +4674,2877,70,2,f +4674,2877,72,2,f +4674,30031,72,1,f +4674,30031,0,1,f +4674,3004,70,2,f +4674,3005,4,2,f +4674,30157,70,1,f +4674,3020,4,4,f +4674,3022,15,1,f +4674,3022,0,4,f +4674,3023,182,8,f +4674,3023,72,7,f +4674,3023,14,3,f +4674,30374,41,1,f +4674,30377,72,1,f +4674,3040b,484,4,f +4674,30503,70,2,f +4674,30602,70,2,f +4674,3068b,4,2,f +4674,3069b,484,2,f +4674,3070b,4,1,f +4674,32016,70,2,f +4674,32054,0,2,f +4674,32062,4,7,f +4674,32064a,4,4,f +4674,32138,0,2,f +4674,32140,72,2,f +4674,32184,0,1,f +4674,32187,71,3,f +4674,32291,4,2,f +4674,32324,71,1,f +4674,32523,4,1,f +4674,32526,4,2,f +4674,32556,19,2,f +4674,3626b,297,1,f +4674,3626cpr1435,31,1,f +4674,3626cpr1584,15,1,f +4674,3626cpr1682,70,1,f +4674,3660,4,5,f +4674,3665,70,2,f +4674,3700,72,4,f +4674,3705,0,2,f +4674,3706,0,1,f +4674,3709,71,1,f +4674,3710,70,3,f +4674,3713,4,3,f +4674,3795,70,2,f +4674,3894,72,2,f +4674,3941,182,1,f +4674,4070,71,2,f +4674,41239,4,4,f +4674,41677,4,2,f +4674,41678,72,4,f +4674,42446,72,1,f +4674,4274,71,11,f +4674,43093,1,7,f +4674,43710,4,1,f +4674,43711,4,1,f +4674,43712,297,2,f +4674,4477,4,1,f +4674,4519,71,1,f +4674,4590,72,1,f +4674,4599b,0,1,f +4674,47457,297,1,f +4674,47458,4,1,f +4674,47753,484,2,f +4674,48336,297,1,f +4674,48336,71,1,f +4674,4871,71,1,f +4674,4871,70,2,f +4674,48729b,72,2,f +4674,49668,15,6,f +4674,50923,72,2,f +4674,50950,297,2,f +4674,51739,4,1,f +4674,51739,15,1,f +4674,53451,297,3,f +4674,53451,179,1,f +4674,53454,41,1,f +4674,54200,297,2,f +4674,54200,70,2,f +4674,55013,72,1,f +4674,57909b,72,5,f +4674,59229,179,1,f +4674,59426,72,2,f +4674,59443,4,1,f +4674,59443,14,1,f +4674,59900,72,1,f +4674,60208,72,2,f +4674,60470a,0,1,f +4674,60897,70,4,f +4674,6091,70,6,f +4674,61072,179,1,f +4674,61252,72,1,f +4674,61409,70,2,f +4674,6141,14,11,f +4674,6141,41,5,f +4674,6232,72,4,f +4674,63868,70,4,f +4674,64451,70,2,f +4674,64644,297,1,f +4674,64647,182,1,f +4674,64799,71,1,f +4674,6536,4,4,f +4674,6541,71,1,f +4674,6558,1,6,f +4674,6628,0,2,f +4674,85943,72,2,f +4674,85984,0,2,f +4674,87083,72,2,f +4674,87747,179,1,f +4674,88072,4,2,f +4674,88292,4,2,f +4674,92013,0,1,f +4674,92233,297,2,f +4674,92907,0,2,f +4674,92947,4,2,f +4674,93273,70,1,f +4674,93571,0,2,f +4674,93604,70,2,f +4674,93606,484,2,f +4674,95753pat0005,25,3,f +4674,970c00pr0663,4,1,f +4674,970c00pr0674,72,1,f +4674,970d00pr0798,15,1,f +4674,973pr2665c01,4,1,f +4674,973pr2687c01,72,1,f +4674,973pr2900c01,15,1,f +4674,98138,179,1,f +4674,98138,41,1,f +4674,98138pr0023,182,1,f +4674,98564,148,4,f +4674,99207,4,2,f +4674,99780,4,2,f +4674,99781,15,1,f +4674,99781,0,3,f +4676,2420,1,2,f +4676,3021,1,1,f +4676,30503,15,2,f +4676,3069b,1,2,f +4676,3298pr0029,15,1,f +4676,3700,15,2,f +4676,3829c01,1,1,f +4676,43093,1,1,f +4676,43713,71,1,f +4676,43719,15,1,f +4676,4588,72,1,f +4676,4871,71,1,f +4676,54200,27,1,t +4676,54200,85,1,t +4676,54200,27,2,f +4676,54200,85,2,f +4678,611p01,2,2,f +4679,15573,71,1,f +4679,2412b,0,1,f +4679,3024,72,2,f +4679,3024,72,1,t +4679,3069b,14,1,f +4679,3623,14,1,f +4679,3794b,72,1,f +4679,3794b,14,1,f +4679,41769,14,1,f +4679,41770,14,1,f +4679,42446,71,1,f +4679,42446,71,1,t +4679,54200,40,1,f +4679,54200,14,1,f +4679,54200,14,1,t +4679,54200,40,1,t +4682,30173a,0,1,f +4682,30177,15,1,f +4682,3023,19,1,f +4682,30375,19,2,f +4682,3069b,0,1,f +4682,3626bpr0747,14,1,f +4682,3839b,72,1,f +4682,4081b,19,2,f +4682,4150,4,1,f +4682,52107,0,1,f +4682,53989,297,6,f +4682,60752,297,6,f +4682,970c00pr0190,15,1,f +4682,973pr1715c01,15,1,f +4684,15407,148,2,f +4684,18927,288,1,f +4684,30385,297,2,f +4684,3626cpr1561,14,1,f +4684,973pr9982c01,288,1,f +4685,2420,14,2,f +4685,2444,14,2,f +4685,2780,0,16,f +4685,2819,7,1,f +4685,2989,0,1,f +4685,3021,14,2,f +4685,3021,0,1,f +4685,3022,7,12,f +4685,3022,14,2,f +4685,3023,0,3,f +4685,3023,7,1,f +4685,3023,14,3,f +4685,3024,0,2,f +4685,3068b,7,1,f +4685,3069b,0,2,f +4685,3623,0,2,f +4685,3623,14,4,f +4685,3647,7,1,f +4685,3651,7,2,f +4685,3665,0,4,f +4685,3666,0,4,f +4685,3673,7,4,f +4685,3676,7,2,f +4685,3700,7,4,f +4685,3700,0,2,f +4685,3701,7,3,f +4685,3701,0,4,f +4685,3705,0,2,f +4685,3706,0,2,f +4685,3707,0,4,f +4685,3710,0,2,f +4685,3713,7,6,f +4685,3743,7,1,f +4685,3749,7,6,f +4685,3795,0,1,f +4685,3894,7,10,f +4685,3894,0,2,f +4685,3895,0,2,f +4685,4019,7,1,f +4685,4150p01,15,2,f +4685,4261,7,2,f +4685,4262,7,3,f +4685,4265a,7,13,f +4685,4273b,7,2,f +4685,4274,7,6,f +4685,4275b,14,4,f +4685,4276b,14,4,f +4685,4477,14,1,f +4685,4519,0,2,f +4685,6536,7,4,f +4685,6541,0,4,f +4685,6558,0,2,f +4685,6579,0,4,f +4685,6580a,14,4,f +4685,73129,7,2,f +4686,10314,26,2,f +4686,10314,29,1,f +4686,11256,70,1,f +4686,11816pr0005,78,1,f +4686,11816pr0011,78,1,f +4686,11818pr0006,78,1,f +4686,13770,297,2,f +4686,14769,29,4,f +4686,14769,71,6,f +4686,15207,15,2,f +4686,15395,4,1,f +4686,15469,322,1,f +4686,15533,84,2,f +4686,15573,19,1,f +4686,15573,72,1,f +4686,15573,15,2,f +4686,15712,70,1,f +4686,15745,45,1,f +4686,16981,27,1,f +4686,16985pr0001b,272,1,f +4686,2343,297,1,f +4686,2357,15,2,f +4686,2412b,0,3,f +4686,2412b,71,5,f +4686,2420,15,4,f +4686,2423,2,5,f +4686,2431,26,4,f +4686,2431,27,1,f +4686,2431,19,6,f +4686,2453b,15,5,f +4686,2454a,15,3,f +4686,2454b,31,15,f +4686,2456,15,1,f +4686,2460,15,2,f +4686,2476a,71,1,f +4686,2817,0,1,f +4686,3001,71,1,f +4686,3001,29,2,f +4686,3001,0,1,f +4686,3001,15,7,f +4686,3002,15,4,f +4686,3003,15,4,f +4686,3003,29,1,f +4686,3004,27,1,f +4686,3004,31,13,f +4686,3004,2,1,f +4686,3004,15,4,f +4686,3005,47,3,f +4686,3005,26,6,f +4686,3005,15,1,f +4686,3005,322,1,f +4686,3005,31,17,f +4686,3005pr0006,73,1,f +4686,3005pr17,27,1,f +4686,3006,15,4,f +4686,3008,31,8,f +4686,30089,0,1,f +4686,3009,2,1,f +4686,3009,15,6,f +4686,3010,31,12,f +4686,3010,0,1,f +4686,3010,15,6,f +4686,3010,29,2,f +4686,30153,36,1,f +4686,3020,322,1,f +4686,3020,2,3,f +4686,3020,19,1,f +4686,3020,27,1,f +4686,3020,71,1,f +4686,3021,0,1,f +4686,3021,70,3,f +4686,3021,71,2,f +4686,3021,15,1,f +4686,3022,71,1,f +4686,3022,322,1,f +4686,3022,27,1,f +4686,3022,15,3,f +4686,3022,19,1,f +4686,3023,2,2,f +4686,3023,272,2,f +4686,3023,71,1,f +4686,3023,19,1,f +4686,3023,15,4,f +4686,3023,27,1,f +4686,3024,15,2,t +4686,3024,272,2,f +4686,3024,272,1,t +4686,3024,15,6,f +4686,3031,2,1,f +4686,3032,322,1,f +4686,3032,15,1,f +4686,3032,19,1,f +4686,3032,2,1,f +4686,3034,15,1,f +4686,3034,71,1,f +4686,3034,2,4,f +4686,30340,15,1,f +4686,30350b,41,3,f +4686,30367c,322,1,f +4686,30586,15,2,f +4686,3062b,322,1,f +4686,3062b,33,1,f +4686,3065,47,6,f +4686,3068b,322,1,f +4686,3069b,19,1,f +4686,3069b,15,1,f +4686,3069b,26,16,f +4686,3069b,27,2,f +4686,3069bpr0099,15,1,f +4686,3069bpr0130,322,1,f +4686,3070b,26,9,f +4686,3070b,19,2,t +4686,3070b,26,2,t +4686,3070b,19,2,f +4686,3245b,15,7,f +4686,3297,272,11,f +4686,3298,272,6,f +4686,33009,70,1,f +4686,33051,10,1,f +4686,33057,484,1,f +4686,33172,25,1,f +4686,33183,10,3,f +4686,33183,10,2,t +4686,33291,10,18,f +4686,33291,4,11,f +4686,33291,5,13,f +4686,33291,5,3,t +4686,33291,4,2,t +4686,33291,191,22,f +4686,33291,191,4,t +4686,33291,26,7,f +4686,33291,70,2,t +4686,33291,70,4,f +4686,33291,10,3,t +4686,33291,26,2,t +4686,33303,15,3,f +4686,33320,2,1,f +4686,3622,29,2,f +4686,3622,15,1,f +4686,3623,0,1,f +4686,3623,70,1,f +4686,3623,15,2,f +4686,3659,15,3,f +4686,3660,15,1,f +4686,3666,272,6,f +4686,3666,15,6,f +4686,3666,27,3,f +4686,3673,71,1,t +4686,3673,71,2,f +4686,3700,71,4,f +4686,3710,27,1,f +4686,3710,0,1,f +4686,3710,71,5,f +4686,3710,272,2,f +4686,3710,70,4,f +4686,3710,29,3,f +4686,3741,2,1,t +4686,3741,2,2,f +4686,3742,14,8,f +4686,3795,15,2,f +4686,3795,27,1,f +4686,3795,71,1,f +4686,3832,2,1,f +4686,3832,19,1,f +4686,3852b,322,1,f +4686,3937,15,1,f +4686,3941,0,1,f +4686,3941,27,1,f +4686,3941,15,6,f +4686,4032a,70,1,f +4686,4070,15,2,f +4686,41095stk01,9999,1,f +4686,4287,15,4,f +4686,4345b,4,1,f +4686,4345b,71,1,f +4686,4346,15,2,f +4686,4536,29,1,f +4686,4599b,71,1,f +4686,4599b,0,1,f +4686,4599b,71,1,t +4686,4599b,0,1,t +4686,46212,47,2,f +4686,4719,322,1,f +4686,4865a,15,1,f +4686,4865b,47,10,f +4686,4865b,322,1,f +4686,54200,15,1,f +4686,54200,15,1,t +4686,54200,14,1,f +4686,54200,14,1,t +4686,57894,15,6,f +4686,57895,47,9,f +4686,59349,31,4,f +4686,59900,70,2,f +4686,59900,15,4,f +4686,59900,19,4,f +4686,59900,26,1,f +4686,59900,46,1,f +4686,59900,2,1,f +4686,59900,36,1,f +4686,60474,15,1,f +4686,60478,0,6,f +4686,60479,15,3,f +4686,60594,15,3,f +4686,60596,15,5,f +4686,60603,47,5,f +4686,60616a,47,1,f +4686,60616b,26,1,f +4686,60806,15,2,f +4686,60849,71,1,f +4686,60849,71,1,t +4686,6091,27,2,f +4686,6091,15,2,f +4686,6134,0,1,f +4686,6141,19,4,f +4686,6141,14,1,t +4686,6141,14,1,f +4686,6141,46,2,f +4686,6141,27,10,f +4686,6141,57,4,f +4686,6141,57,1,t +4686,6141,19,1,t +4686,6141,27,5,t +4686,6141,46,1,t +4686,6179,0,1,f +4686,6231,322,1,f +4686,6231,15,2,f +4686,62462,15,1,f +4686,6255,10,1,f +4686,63864,15,2,f +4686,6636,26,6,f +4686,6636,15,2,f +4686,75937,0,1,f +4686,85984,71,1,f +4686,87079,26,7,f +4686,87079,30,1,f +4686,87079,15,1,f +4686,87087,71,3,f +4686,87544,15,1,f +4686,87552,47,4,f +4686,87580,19,1,f +4686,87580,26,1,f +4686,87580,70,1,f +4686,87580,272,2,f +4686,87580,321,1,f +4686,88292,84,1,f +4686,91405,10,1,f +4686,91405,19,1,f +4686,92081,0,1,f +4686,92258,0,1,f +4686,92410,15,1,f +4686,92438,10,1,f +4686,92438,15,2,f +4686,92438,19,3,f +4686,92456pr0061c01,78,1,f +4686,92593,15,12,f +4686,92815pr0002c01,78,1,f +4686,92816pr0003c01,78,1,f +4686,92817pr0003c01,26,1,f +4686,92820pr0005c01,212,1,f +4686,92851,47,2,f +4686,93094,5,1,f +4686,93094,5,1,t +4686,93273,19,2,f +4686,93552pr0001,70,1,f +4686,93552pr0001,70,1,t +4686,95343,4,1,f +4686,95344,28,1,f +4686,95344,28,1,t +4686,96874,25,1,t +4686,97781,191,3,f +4686,97782,191,3,f +4686,97783,191,3,f +4686,97784,191,3,f +4686,97785,191,1,f +4686,97787,191,1,f +4686,97790,191,1,f +4686,97791,191,1,f +4686,97793,191,1,f +4686,98138,15,2,f +4686,98138,15,1,t +4686,98138,78,1,t +4686,98138,71,10,f +4686,98138,297,1,f +4686,98138,297,1,t +4686,98138,78,1,f +4686,98138,36,3,f +4686,98138,47,1,t +4686,98138,36,3,t +4686,98138,71,4,t +4686,98138,47,1,f +4686,98283,84,5,f +4686,98388pr0004,27,1,f +4686,98549,71,1,f +4686,99781,71,1,f +4687,15443,70,1,f +4687,15444,4,1,f +4687,3024,46,7,f +4687,3024,46,1,t +4687,3031,71,1,f +4687,3040b,72,4,f +4687,3626cpr1354,14,1,f +4687,3899,4,1,f +4687,3899,4,1,t +4687,42446,71,1,t +4687,42446,71,1,f +4687,4274,71,1,f +4687,4274,71,1,t +4687,4286,71,2,f +4687,4460b,72,1,f +4687,4519,71,1,f +4687,54200,72,1,t +4687,54200,72,4,f +4687,60481,71,2,f +4687,6536,4,2,f +4687,6541,71,1,f +4687,970c00pr0605,25,1,f +4687,973pr2538c01,25,1,f +4690,32572,134,1,f +4690,32573,134,1,f +4693,6589,7,50,f +4696,2570,0,1,f +4696,3022,8,3,f +4696,30369,15,2,f +4696,30483pr01,6,1,f +4696,30566,8,3,f +4696,3626bpse,14,2,f +4696,4142688pb1,9999,1,f +4696,4142688pb2,9999,1,f +4696,4142688pb3,9999,1,f +4696,4349,0,2,f +4696,6141,57,1,t +4696,6141,57,2,f +4696,970c00,6,1,f +4696,970x026,15,2,f +4696,973c13,6,1,f +4696,973psec01,15,2,f +4698,3004,320,1,f +4698,30132,72,1,t +4698,30132,72,1,f +4698,3020,0,1,f +4698,3023,320,1,f +4698,3626bpr0753a,14,1,f +4698,3710,320,2,f +4698,3794b,320,1,f +4698,3795,0,1,f +4698,3829c01,71,1,f +4698,4081b,72,2,f +4698,4600,71,2,f +4698,4624,71,4,f +4698,50946,71,1,f +4698,50947,72,2,f +4698,6141,0,1,t +4698,6141,0,1,f +4698,6141,47,2,f +4698,6141,47,1,t +4698,62810,0,1,f +4698,87414,0,4,f +4698,970c00,28,1,f +4698,973pr1721ac01,19,1,f +4699,2420,2,4,f +4699,2436,4,2,f +4699,2543,4,1,f +4699,3005,70,1,f +4699,3021,15,1,f +4699,3023,73,4,f +4699,3023,15,3,f +4699,3023,2,1,f +4699,3024,2,2,f +4699,3069bpr0055,15,1,f +4699,3623,2,4,f +4699,3626cpr0677,14,1,f +4699,3832,15,1,f +4699,4162,4,1,f +4699,54200,33,2,f +4699,6132,15,1,f +4699,6141,46,12,f +4699,6141,46,1,t +4699,74188,4,2,f +4699,853353stk01,9999,1,t +4699,92590,28,1,f +4699,970x026,4,1,f +4699,973c02,4,1,f +4700,3711a,0,175,f +4700,3873,0,54,f +4701,2412b,0,1,f +4701,3002,15,1,f +4701,3007,0,1,f +4701,3023,7,1,f +4701,30386,14,1,f +4701,30389a,14,1,f +4701,30394,14,1,f +4701,3062b,0,1,f +4701,3626bpx121,14,1,f +4701,3710,0,1,f +4701,3788,14,2,f +4701,3829c01,7,1,f +4701,3833,0,1,f +4701,6014,15,4,f +4701,6015,0,4,f +4701,6141,46,4,f +4701,6157,7,2,f +4701,970c00,1,1,f +4701,973px177c01,25,1,f +4702,2912stk01,9999,1,t +4702,31184c01,8,2,f +4702,31235c01,4,1,f +4702,31238,0,1,f +4702,31239c01,0,1,f +4702,31350c01,383,4,f +4702,31351,0,4,f +4702,4555pb026,9999,1,f +4702,dt001,42,1,f +4702,dupjets,8,1,f +4704,3003,47,1,f +4704,3006,14,1,f +4704,3021,14,1,f +4704,3034,4,5,f +4704,3062a,14,4,f +4704,3068b,14,1,f +4704,3137c01,0,1,f +4704,3139,0,2,f +4704,3480,7,1,f +4704,3481,14,1,f +4705,23306,383,2,f +4705,2339,6,4,f +4705,2412b,7,6,f +4705,2413,7,1,f +4705,2419,2,1,f +4705,2419,484,1,f +4705,2420,2,2,f +4705,2420,15,8,f +4705,2431,15,2,f +4705,2431,2,2,f +4705,2431,4,4,f +4705,2431pr0027,15,2,f +4705,2432,19,2,f +4705,2445,15,4,f +4705,2456,8,1,f +4705,2489,6,1,f +4705,2540,8,1,f +4705,2654,19,4,f +4705,2736,7,4,f +4705,2877,4,8,f +4705,298c02,14,1,f +4705,298c02,14,1,t +4705,3001,8,1,f +4705,3003,1,1,f +4705,3004,19,2,f +4705,3004,15,9,f +4705,3004,6,8,f +4705,3004,8,7,f +4705,3005,19,4,f +4705,3005,15,8,f +4705,30093,2,7,f +4705,3010,19,2,f +4705,3010,15,5,f +4705,30136,0,1,f +4705,30176,2,2,f +4705,3020,19,1,f +4705,3020,2,1,f +4705,3020,15,1,f +4705,3020,6,1,f +4705,3020,4,7,f +4705,3021,19,2,f +4705,3021,8,1,f +4705,3022,4,2,f +4705,3022,15,6,f +4705,3022,8,1,f +4705,3023,6,3,f +4705,3023,4,5,f +4705,3023,19,4,f +4705,3023,7,6,f +4705,3031,8,4,f +4705,3031,2,2,f +4705,3032,8,2,f +4705,3032,15,2,f +4705,3032,484,3,f +4705,3034,15,1,f +4705,30355,15,2,f +4705,30356,15,2,f +4705,30359b,8,4,f +4705,30360,15,4,f +4705,30361dps1,15,1,f +4705,30362,15,2,f +4705,30364,7,2,f +4705,30367apr01,15,1,f +4705,30367b,15,1,f +4705,3037,15,2,f +4705,3037,2,2,f +4705,30370ps2,15,1,f +4705,30372,15,1,f +4705,30372pr0001,40,1,f +4705,30374,6,1,f +4705,30374,42,2,f +4705,30389b,0,1,f +4705,3039,8,4,f +4705,3039pr0008,0,1,f +4705,3040b,15,4,f +4705,3040b,6,14,f +4705,30414,1,2,f +4705,30503,484,2,f +4705,30503,2,2,f +4705,30526,1,2,f +4705,30553,0,2,f +4705,3062b,6,4,f +4705,3068b,7,1,f +4705,3068b,6,1,f +4705,3068b,4,4,f +4705,3068bpr0071,19,2,f +4705,3069b,19,1,f +4705,3069bp0f,8,1,f +4705,3176,4,1,f +4705,32000,7,18,f +4705,32123b,7,1,t +4705,32123b,7,2,f +4705,32124,1,1,f +4705,32269,7,1,f +4705,32556,7,8,f +4705,3298,6,4,f +4705,3307,6,3,f +4705,3460,4,2,f +4705,3460,19,2,f +4705,3622,6,2,f +4705,3623,4,12,f +4705,3623,6,4,f +4705,3626bps3,14,1,f +4705,3648b,7,1,f +4705,3659,19,4,f +4705,3660,19,1,f +4705,3660,7,8,f +4705,3665,19,2,f +4705,3665,15,2,f +4705,3666,19,6,f +4705,3666,4,13,f +4705,3666,7,2,f +4705,3666,15,1,f +4705,3700,14,1,f +4705,3701,0,2,f +4705,3706,0,1,f +4705,3707,0,1,f +4705,3710,19,3,f +4705,3710,15,1,f +4705,3710,4,4,f +4705,3710,7,4,f +4705,3710,6,2,f +4705,3713,7,4,f +4705,3747b,15,1,f +4705,3794a,1,2,f +4705,3794a,4,3,f +4705,3795,8,1,f +4705,3795,15,1,f +4705,3830,19,4,f +4705,3830,15,2,f +4705,3831,15,2,f +4705,3831,19,4,f +4705,3899,15,1,f +4705,3901,19,1,f +4705,3937,8,1,f +4705,3941,6,1,f +4705,3941,7,4,f +4705,3941,19,5,f +4705,3961pb02,6,1,f +4705,4032a,0,7,f +4705,4085c,8,7,f +4705,4162,15,4,f +4705,4162,4,2,f +4705,41747,7,1,f +4705,41748,7,1,f +4705,41752,8,1,f +4705,41769,15,2,f +4705,41769,19,1,f +4705,41770,19,1,f +4705,41770,15,2,f +4705,41879a,19,1,f +4705,41880,378,1,f +4705,42446,15,4,f +4705,42446,8,1,f +4705,4287,15,4,f +4705,43093,1,4,f +4705,43712,15,2,f +4705,43713,7,1,f +4705,43719,4,1,f +4705,44300,8,1,f +4705,44568,7,1,f +4705,44571,15,1,f +4705,4477,15,4,f +4705,4519,7,11,f +4705,4529,0,1,f +4705,4589,7,5,f +4705,4716,7,1,f +4705,4740,8,4,f +4705,4740,57,4,f +4705,4865a,15,2,f +4705,4865a,19,3,f +4705,4871,15,1,f +4705,6134,0,1,f +4705,6141,47,1,t +4705,6141,57,1,t +4705,6141,47,4,f +4705,6141,57,5,f +4705,6141,8,6,f +4705,6141,8,1,t +4705,6183,19,2,f +4705,6215,6,1,f +4705,6231,19,2,f +4705,6538b,8,10,f +4705,6541,7,4,f +4705,6553,0,2,f +4705,6588,47,1,f +4705,6628,0,8,f +4705,6636,4,2,f +4705,6636,19,4,f +4705,73983,2,6,f +4705,75535,7,1,f +4705,76385,0,2,f +4705,85543,15,6,f +4705,970c00,8,1,f +4705,973px158c01,19,1,f +4705,973px320c01,378,1,f +4708,10199,1,1,f +4708,11929,27,1,f +4708,12022,70,1,f +4708,12023,15,1,f +4708,12024,70,1,f +4708,12029,14,1,f +4708,12044,191,1,f +4708,12045,2,1,f +4708,12046,191,1,f +4708,12117,25,1,f +4708,12150,14,1,f +4708,12937,15,1,f +4708,12938,25,1,f +4708,13853,308,1,f +4708,15847,41,2,f +4708,3011,71,2,f +4708,3011,15,3,f +4708,3011,72,1,f +4708,31059,10,3,f +4708,31061,484,6,f +4708,31445,179,2,f +4708,3437,10,1,f +4708,3437,72,1,f +4708,3437,2,1,f +4708,3437,41,2,f +4708,3437,71,3,f +4708,3437,15,1,f +4708,3437,484,2,f +4708,40666,484,5,f +4708,40666,73,2,f +4708,40666,10,9,f +4708,40666,1,1,f +4708,40666,70,4,f +4708,40666,27,2,f +4708,40666,19,3,f +4708,4199,72,1,f +4708,44524,19,1,f +4708,51262,1,1,f +4708,54651,0,2,f +4708,54972,2,1,f +4708,60364pr0001,0,2,f +4708,6411,70,1,f +4708,6474,10,7,f +4708,6510,2,2,f +4708,6510,4,2,f +4708,75580,0,1,f +4708,76371,15,2,f +4708,82281,0,1,f +4708,89873,71,1,f +4708,89879,72,1,f +4709,2343,14,1,f +4709,2357,7,3,f +4709,2453a,7,1,f +4709,2454a,0,1,f +4709,2555,0,1,f +4709,2714a,7,1,f +4709,3004,7,7,f +4709,3005,7,7,f +4709,3009,7,1,f +4709,3010,7,1,f +4709,3020,7,1,f +4709,3021,7,1,f +4709,3023,7,1,f +4709,3024,0,1,f +4709,3032,7,1,f +4709,3069b,7,1,f +4709,3307,0,1,f +4709,3622,7,2,f +4709,3623,0,1,f +4709,3623,7,3,f +4709,3626bp35,14,1,f +4709,3626bpr0895,15,1,f +4709,3665,7,1,f +4709,3666,0,1,f +4709,3710,7,1,f +4709,3795,7,1,f +4709,3844,0,1,f +4709,3846p4d,15,1,f +4709,3849,8,1,f +4709,3865,2,1,f +4709,3957a,0,1,f +4709,4070,7,2,f +4709,4081b,0,2,f +4709,4444,0,3,f +4709,4444p08,0,1,f +4709,4460a,7,2,f +4709,4495b,4,1,f +4709,4497,6,1,f +4709,4589,7,1,f +4709,6066,7,1,f +4709,6126a,57,2,f +4709,6260,15,1,f +4709,6265,15,2,f +4709,6266,15,2,f +4709,6541,7,3,f +4709,970x026,1,1,f +4709,973p4dc01,4,1,f +4710,3001a,0,2,f +4710,3005,1,8,f +4710,3009,1,4,f +4710,3010,1,16,f +4710,3010pt0,1,2,f +4710,3010pt1,1,2,f +4710,3020,7,4,f +4710,3021,7,2,f +4710,3023,7,2,f +4710,3027,7,2,f +4710,3192,1,2,f +4710,3193,1,2,f +4710,7049b,15,2,f +4710,737ac01,4,1,f +4710,737ac02,4,1,f +4710,wheel2b,4,4,f +4712,2412b,0,3,f +4712,2432,0,1,f +4712,2444,0,1,f +4712,2476a,15,4,f +4712,2540,4,1,f +4712,2723,0,2,f +4712,2780,0,3,t +4712,2780,0,26,f +4712,2855,71,1,f +4712,2856,0,1,f +4712,298c02,14,1,t +4712,298c02,14,1,f +4712,30000,72,6,f +4712,3001,27,5,f +4712,3002,14,2,f +4712,3003,4,1,f +4712,3004,27,2,f +4712,3005,25,2,f +4712,3007,71,2,f +4712,3010,27,4,f +4712,30150,70,1,f +4712,30174,72,1,f +4712,3020,0,4,f +4712,3022,4,6,f +4712,3023,47,2,f +4712,3023,28,8,f +4712,3023,36,2,f +4712,30236,0,2,f +4712,3028,0,1,f +4712,3029,0,1,f +4712,3031,72,2,f +4712,3032,0,2,f +4712,3034,0,2,f +4712,30364,0,6,f +4712,30367b,85,1,f +4712,3037,0,1,f +4712,30374,297,1,f +4712,30374,70,1,f +4712,30381,0,1,f +4712,3039,27,4,f +4712,3040b,288,4,f +4712,3040b,27,2,f +4712,30414,72,2,f +4712,3062b,36,1,f +4712,3069b,36,2,f +4712,3069bpr0101,71,1,f +4712,32013,71,1,f +4712,32018,72,2,f +4712,32034,71,1,f +4712,32062,4,14,f +4712,32064b,15,2,f +4712,32126,71,1,f +4712,32278,71,4,f +4712,32348,72,2,f +4712,32474,4,2,f +4712,32526,72,2,f +4712,32530,0,2,f +4712,32531,71,2,f +4712,3460,72,2,f +4712,3622,0,2,f +4712,3626bpr0745,14,1,f +4712,3626cpr0866,14,1,f +4712,3633,27,2,f +4712,3660,0,2,f +4712,3666,27,2,f +4712,3700,0,1,f +4712,3710,72,1,f +4712,3710,14,2,f +4712,3743,0,5,f +4712,3749,19,4,f +4712,3794b,14,1,f +4712,3795,27,4,f +4712,3795,19,1,f +4712,3830,72,3,f +4712,3831,72,3,f +4712,40378,27,1,f +4712,40379,27,1,f +4712,4085c,4,2,f +4712,4150,0,1,f +4712,41879a,0,1,f +4712,42610,71,1,f +4712,4274,1,1,t +4712,4274,71,1,t +4712,4274,1,4,f +4712,4274,71,1,f +4712,4287,72,4,f +4712,43093,1,3,f +4712,43712,288,10,f +4712,44301a,72,2,f +4712,44302a,0,6,f +4712,44302a,14,2,f +4712,44728,27,4,f +4712,4495b,4,1,f +4712,4519,71,1,f +4712,4533,72,2,f +4712,45677,0,2,f +4712,4740,71,1,f +4712,47455,0,1,f +4712,48169,72,1,f +4712,48171,72,1,f +4712,48336,19,1,f +4712,48729b,72,3,f +4712,48729b,72,2,t +4712,50948,27,1,f +4712,53451,179,2,f +4712,53451,179,1,t +4712,53705,297,2,f +4712,54200,36,2,f +4712,54200,85,1,t +4712,54200,27,1,t +4712,54200,36,1,t +4712,54200,27,2,f +4712,54200,85,4,f +4712,57520,0,4,f +4712,59443,71,2,f +4712,60169,71,2,f +4712,60470a,71,5,f +4712,60484,72,4,f +4712,6141,85,12,f +4712,6141,85,2,t +4712,61678,4,2,f +4712,61678,27,12,f +4712,62361,27,4,f +4712,62462,0,2,f +4712,63868,4,2,f +4712,63965,70,1,f +4712,64448,0,4,f +4712,64449,0,4,f +4712,64450,0,1,f +4712,64712,0,2,f +4712,6558,1,2,f +4712,87083,72,2,f +4712,87611,0,1,f +4712,87747,15,2,f +4712,88323,72,50,f +4712,88930,27,2,f +4712,92410,27,2,f +4712,92690,297,3,f +4712,92946,27,2,f +4712,94448pat0003,52,1,f +4712,9457stk01,9999,1,t +4712,970c00pr0191,0,1,f +4712,970c00pr0270,4,1,f +4712,973pr0440c01,0,1,f +4712,973pr1718c01,0,1,f +4712,973pr1884c01,4,1,f +4712,98130pr0001,72,1,f +4712,98134,297,1,f +4712,98136,4,2,f +4712,98138,36,1,f +4712,98138,36,1,t +4712,98138pr0003,36,2,t +4712,98138pr0003,36,2,f +4712,98141,85,2,f +4712,98147pr0002,4,1,f +4712,99464,0,1,f +4714,2352,14,1,f +4714,2356,14,1,f +4714,3001,1,18,f +4714,3001,15,18,f +4714,3001,4,18,f +4714,3001,14,16,f +4714,3001,0,10,f +4714,3001pr1,14,1,f +4714,3002,14,6,f +4714,3002,0,4,f +4714,3002,1,6,f +4714,3002,4,6,f +4714,3002,15,6,f +4714,3003,1,14,f +4714,3003,14,14,f +4714,3003,15,14,f +4714,3003,4,14,f +4714,3003,0,10,f +4714,3003pe1,14,2,f +4714,3006,4,2,f +4714,3007,1,2,f +4714,3185,15,6,f +4714,3471,2,1,f +4714,3483,0,4,f +4714,4130,14,2,f +4714,4131,4,2,f +4714,4132,14,3,f +4714,4133,4,3,f +4714,4180c02,0,2,f +4714,4202,4,1,f +4714,4204,2,1,f +4714,4727,2,2,f +4714,4728,4,2,f +4714,4730,1,1,f +4714,4743,4,1,f +4714,4744,14,1,f +4714,4745,4,1,f +4714,bfp001,9999,1,f +4716,2041,15,1,f +4716,3004,15,2,f +4716,3795,15,1,f +4716,3899,14,2,f +4716,4094a,14,1,f +4716,4095,14,1,f +4716,4429,4,1,f +4716,4793,4,1,f +4716,4794a,14,2,f +4716,fab6f,9999,1,f +4716,fab7g,9999,1,f +4717,22667,4,1,f +4717,22670,334,1,f +4717,2417,10,2,f +4717,2423,2,1,f +4717,30046,52,1,f +4717,30153,45,4,f +4717,30153,47,1,f +4717,3020,15,1,f +4717,30246,29,1,f +4717,33009,26,1,f +4717,33085,14,1,f +4717,33303,15,2,f +4717,3741,2,1,t +4717,3741,2,2,f +4717,3742,5,1,t +4717,3742,5,3,f +4717,3742,29,3,f +4717,3742,29,1,t +4717,3852b,191,1,f +4717,3865,10,1,f +4717,3899,45,1,f +4717,3942c,15,3,f +4717,3943b,15,1,f +4717,4325,5,1,f +4717,4532,4,1,f +4717,4533,15,1,f +4717,4728,45,5,f +4717,48490,29,1,f +4717,4864b,47,1,f +4717,6124,42,1,f +4717,6175px1,15,1,f +4717,6255,10,2,f +4717,6256,82,1,f +4717,x1586,5,1,f +4717,x844px2,29,1,f +4719,case1,82,1,f +4720,74981,14,1,f +4721,4679a-2,89,1,f +4721,4679b-2,89,1,f +4722,3626bpr0325,14,1,f +4722,3626cpr0279,14,1,f +4722,3626cpr0389,14,1,f +4722,40233,28,1,f +4722,62810,484,1,f +4722,86035,27,1,f +4722,970c00,1,1,f +4722,970c00,2,1,f +4722,970c00,272,1,f +4722,973c01,15,1,f +4722,973pr1163c01,272,1,f +4722,973pr1479c01,15,1,f +4723,3218,4,2,f +4723,trainsig2,4,1,f +4723,x489,4,1,f +4726,32013,8,1,f +4726,32015,8,2,f +4726,32062,0,3,f +4726,32140,0,2,f +4726,32174,0,1,f +4726,32474,0,1,f +4726,32506,0,2,f +4726,32523,0,1,f +4726,32576,0,2,f +4726,41663,0,1,f +4726,41669,42,2,f +4726,42042,8,1,f +4726,42042und,0,1,f +4726,43093,0,1,t +4726,43093,0,2,f +4726,4519,0,1,f +4726,6536,0,1,f +4726,6558,0,2,f +4728,298c02,15,2,f +4728,298c02,7,2,f +4728,298c02,0,2,f +4728,298c04,15,2,f +4728,298c05,1,2,f +4728,3957a,7,2,f +4728,3957a,46,2,f +4728,3957a,0,2,f +4728,3957a,36,2,f +4728,3957a,15,2,f +4728,4735,0,6,f +4728,4735,15,6,f +4732,23306,383,1,t +4732,23306,383,1,f +4732,2335,4,2,f +4732,2412b,7,4,f +4732,2412b,0,2,f +4732,2413,8,1,f +4732,2431,4,2,f +4732,2431,8,2,f +4732,2432,7,1,f +4732,2444,7,2,f +4732,2445,4,2,f +4732,2450,7,2,f +4732,2458,8,2,f +4732,2525ps1,15,1,f +4732,2540,0,2,f +4732,3002,0,1,f +4732,3003,14,1,f +4732,3004,15,6,f +4732,3007,1,1,f +4732,3010,0,2,f +4732,3020,1,2,f +4732,3020,8,2,f +4732,3020,15,1,f +4732,3020,0,1,f +4732,30283,7,1,f +4732,30285,7,2,f +4732,3030,15,1,f +4732,30304,8,1,f +4732,3032,8,1,f +4732,3035,7,1,f +4732,30355,320,1,f +4732,30356,320,1,f +4732,30365,7,2,f +4732,30367bpr0007,15,1,f +4732,30374,41,1,f +4732,3037ps0,15,1,f +4732,3037ps1,15,1,f +4732,30383,8,5,f +4732,30386,0,2,f +4732,3049b,15,1,f +4732,30552,7,1,f +4732,30553,0,3,f +4732,3068b,15,1,f +4732,3069b,15,4,f +4732,3069bpr0070,0,1,f +4732,32000,27,2,f +4732,3623,15,2,f +4732,3623,7,1,f +4732,3626bpb0024,14,1,f +4732,3660,4,1,f +4732,3666,0,5,f +4732,3710,0,5,f +4732,3747a,0,2,f +4732,3933,320,1,f +4732,3934,320,1,f +4732,4032a,8,2,f +4732,40902,0,1,f +4732,4150pr0005,15,1,f +4732,4162,15,2,f +4732,41747,15,1,f +4732,41748,15,1,f +4732,41767,27,1,f +4732,41768,27,1,f +4732,41769,15,1,f +4732,41769,320,2,f +4732,41770,320,2,f +4732,41770,15,1,f +4732,41855,14,1,f +4732,41883,40,1,f +4732,42023,0,2,f +4732,42060pb01,15,1,f +4732,42061pb01,15,1,f +4732,4213,0,2,f +4732,4286,15,2,f +4732,4315,1,2,f +4732,43337,7,1,f +4732,4519,0,1,f +4732,4530,484,1,f +4732,4623,7,2,f +4732,4856a,320,1,f +4732,4859,320,1,f +4732,4859,0,1,f +4732,6232,27,2,f +4732,6249,8,2,f +4732,970c00,19,1,f +4732,973px58c01,19,1,f +4733,10199,10,1,f +4733,2206,10,1,f +4733,2302,10,1,f +4733,2312c02,14,1,f +4733,3011,4,2,f +4733,3011,1,2,f +4733,3011,73,2,f +4733,3011,14,2,f +4733,3011,27,1,f +4733,3011,10,2,f +4733,3437,73,6,f +4733,3437,14,7,f +4733,3437,4,9,f +4733,3437,0,4,f +4733,3437,10,6,f +4733,3437,1,6,f +4733,3437,27,4,f +4733,3437,19,2,f +4733,40666,14,2,f +4733,40666,4,2,f +4733,40666,1,2,f +4733,61649,14,1,f +4733,63710pr0004c02,10,1,f +4733,6474,4,2,f +4733,6510,10,1,f +4733,6510,14,1,f +4737,2543,4,1,f +4737,3004,72,2,f +4737,3020,72,1,f +4737,3031,71,1,f +4737,3039,72,1,f +4737,3069b,1,1,f +4737,3069b,2,1,f +4737,3626bpr0891,14,1,f +4737,54200,182,1,t +4737,54200,182,3,f +4737,6132,15,1,f +4737,87552,4,2,f +4737,92590,28,1,f +4737,970c00,72,1,f +4737,973c02,4,1,f +4740,2456,2,2,f +4740,2456,71,2,f +4740,2456,1,4,f +4740,2456,14,2,f +4740,2456,4,2,f +4740,2456,15,4,f +4740,2456,0,2,f +4740,3001,4,18,f +4740,3001,14,18,f +4740,3001,25,6,f +4740,3001,2,6,f +4740,3001,0,18,f +4740,3001,15,26,f +4740,3001,73,6,f +4740,3001,71,8,f +4740,3001,1,26,f +4740,3002,71,8,f +4740,3002,0,8,f +4740,3002,15,22,f +4740,3002,1,22,f +4740,3002,4,10,f +4740,3002,25,4,f +4740,3002,73,4,f +4740,3002,14,10,f +4740,3002,2,8,f +4740,3003,2,20,f +4740,3003,71,20,f +4740,3003,73,12,f +4740,3003,25,16,f +4740,3003,1,42,f +4740,3003,4,26,f +4740,3003,0,20,f +4740,3003,14,26,f +4740,3003,15,42,f +4740,3004,14,30,f +4740,3004,15,42,f +4740,3004,71,20,f +4740,3004,25,16,f +4740,3004,0,20,f +4740,3004,2,20,f +4740,3004,1,44,f +4740,3004,73,16,f +4740,3004,4,28,f +4740,3005,0,12,f +4740,3005,25,8,f +4740,3005,14,16,f +4740,3005,15,18,f +4740,3005,4,16,f +4740,3005,71,14,f +4740,3005,73,8,f +4740,3005,1,18,f +4740,3005,2,12,f +4740,3007,15,2,f +4740,3007,1,2,f +4740,3007,14,2,f +4740,3007,4,2,f +4740,3008,1,4,f +4740,3008,14,2,f +4740,3008,4,2,f +4740,3008,71,2,f +4740,3008,0,2,f +4740,3008,15,4,f +4740,3009,73,2,f +4740,3009,14,4,f +4740,3009,71,2,f +4740,3009,15,8,f +4740,3009,0,2,f +4740,3009,2,2,f +4740,3009,1,8,f +4740,3009,4,4,f +4740,3010,4,8,f +4740,3010,73,6,f +4740,3010,2,6,f +4740,3010,15,10,f +4740,3010,0,6,f +4740,3010,14,8,f +4740,3010,71,6,f +4740,3010,25,4,f +4740,3010,1,10,f +4740,3622,71,6,f +4740,3622,4,6,f +4740,3622,0,6,f +4740,3622,1,8,f +4740,3622,15,8,f +4740,3622,14,6,f +4740,3622,25,6,f +4740,3622,2,6,f +4741,bwindow03,1,1,f +4741,bwindow03,15,3,f +4741,bwindow03,4,1,f +4741,bwindow03,14,1,f +4741,bwindow03,2,1,f +4744,11816pr0002,78,1,f +4744,3001,15,1,f +4744,3004,4,1,f +4744,3010,15,1,f +4744,3020,15,2,f +4744,3022,0,1,f +4744,3040b,5,2,f +4744,3069bpr0055,15,1,f +4744,3176,4,2,f +4744,33291,5,1,t +4744,33291,5,3,f +4744,3741,2,1,f +4744,3741,2,1,t +4744,3794b,4,1,f +4744,3937,0,1,f +4744,3941,27,1,f +4744,4286,15,2,f +4744,4345b,4,1,f +4744,4346,15,1,f +4744,4589,15,2,f +4744,54200,29,4,f +4744,54200,29,1,t +4744,6134,71,1,f +4744,6141,29,1,t +4744,6141,70,2,f +4744,6141,29,2,f +4744,6141,70,1,t +4744,64644,297,2,f +4744,87087,15,1,f +4744,87580,4,1,f +4744,92255,226,1,f +4744,92456pr0019c01,78,1,f +4744,92818pr0002c01,26,1,f +4745,3626bpr0001,14,1,f +4745,3901,19,1,f +4745,970c00,0,1,f +4745,973pb0005c01,15,1,f +4746,2412b,15,2,f +4746,2445,15,1,f +4746,2446,15,1,f +4746,2447,0,1,f +4746,2447,0,1,t +4746,2476a,8,1,f +4746,2584,7,1,f +4746,2585,0,1,f +4746,2780,0,5,f +4746,2780,0,1,t +4746,3003,15,1,f +4746,3004,0,1,f +4746,3020,8,1,f +4746,3022,0,1,f +4746,3023,7,1,f +4746,30395,8,1,f +4746,30407,0,3,f +4746,30553,8,2,f +4746,3069b,33,1,f +4746,3069b,36,1,f +4746,3069bp02,7,1,f +4746,3069bpr0101,7,1,f +4746,32013,15,4,f +4746,32062,0,2,f +4746,32064b,7,2,f +4746,32123b,15,5,f +4746,32123b,15,1,t +4746,32125,7,1,f +4746,32192,0,2,f +4746,3626bpr0282,14,1,f +4746,3666,0,1,f +4746,3700,15,1,f +4746,3737,0,2,f +4746,3747b,15,1,f +4746,3749,19,1,f +4746,3794a,0,1,f +4746,3894,0,1,f +4746,4032a,0,1,f +4746,41531,15,1,f +4746,41532,0,1,f +4746,41533,15,2,f +4746,41751,40,1,f +4746,41769,0,1,f +4746,41770,0,1,f +4746,41855,15,1,f +4746,42021,40,1,f +4746,4360,8,1,f +4746,44294,7,1,f +4746,44301a,0,4,f +4746,44661,15,2,f +4746,4519,7,3,f +4746,46667,0,1,f +4746,56823,0,1,f +4746,6141,36,1,f +4746,6141,36,1,t +4746,7031stk01,9999,1,t +4746,78c02,0,8,f +4746,970c00,0,1,f +4746,973pb0289c01,0,1,f +4748,3004,0,1,f +4748,3004,15,1,f +4748,3023,15,1,f +4748,3023,0,1,f +4748,3626apr0001,14,2,f +4748,3846p46,7,1,f +4748,3846p4h,7,1,f +4748,3847a,8,2,f +4748,3849,6,4,f +4748,3876,8,2,f +4748,3941,0,1,f +4748,4032a,0,2,f +4748,4085a,0,4,f +4748,4491a,15,1,f +4748,4491a,1,1,f +4748,4493c01pb02,0,1,f +4748,4495a,4,1,f +4748,4495a,1,1,f +4748,4503,0,1,f +4748,4503,8,1,f +4748,75998pr0007,15,1,f +4748,87692,1,1,f +4748,87692,4,1,t +4748,87693,1,1,t +4748,87693,4,1,t +4748,87694,1,1,t +4748,87694,4,1,f +4748,970x021,0,2,f +4748,973p40c01,4,1,f +4748,973p40c02,1,1,f +4749,2335px21,15,1,f +4749,3001,72,2,f +4749,3002,1,1,f +4749,30056,0,2,f +4749,30103,0,1,f +4749,30104,72,1,f +4749,30145,1,1,f +4749,30165,70,1,f +4749,30169,4,1,f +4749,30237a,71,1,f +4749,30407,72,1,f +4749,3062b,71,1,f +4749,32324,15,2,f +4749,33129,0,1,f +4749,3700,0,2,f +4749,3794a,1,1,f +4749,3957a,1,1,f +4749,42445,71,2,f +4749,43887,15,1,f +4749,4738a,70,1,f +4749,4739a,70,1,f +4749,4790,70,1,f +4749,47972,1,2,f +4749,47973,72,1,f +4749,47974c01,72,1,f +4749,48002,0,1,f +4749,4j015,9999,1,f +4749,57503,334,1,f +4749,57504,334,1,f +4749,57505,334,1,f +4749,57506,334,1,f +4749,6112,1,2,f +4749,6126a,57,1,f +4749,sailbb37,15,1,f +4751,11477,71,2,f +4751,2335,71,4,f +4751,2450,72,4,f +4751,2540,0,4,f +4751,3003,0,1,f +4751,3020,71,1,f +4751,3023,288,4,f +4751,30602,40,1,f +4751,30602,72,1,f +4751,3710,71,2,f +4751,3794b,0,1,f +4751,3957a,0,2,f +4751,4081b,0,2,f +4751,41769,288,1,f +4751,41770,288,1,f +4751,44567a,72,2,f +4751,44570,72,2,f +4751,4740,47,1,f +4751,6141,1,1,f +4751,6141,1,1,t +4751,63864,288,2,f +4751,87087,0,4,f +4751,98138,41,2,f +4751,98138,41,1,t +4752,2412b,7,2,f +4752,2413,1,1,f +4752,2419,4,2,f +4752,3003,14,2,f +4752,3004,14,3,f +4752,3010,14,4,f +4752,3020,1,1,f +4752,3021,1,3,f +4752,3032,1,1,f +4752,3039,14,2,f +4752,3062b,0,4,f +4752,3298p19,14,3,f +4752,3483,0,4,f +4752,3626bpr0001,14,1,f +4752,3660,14,4,f +4752,3710,4,1,f +4752,3741,2,2,f +4752,3742,1,3,f +4752,3742,1,1,t +4752,3742,15,3,f +4752,3742,15,1,t +4752,3794a,14,1,f +4752,3795,1,2,f +4752,3823,47,1,f +4752,3957a,15,1,f +4752,4070,14,2,f +4752,4485,1,1,f +4752,4495a,1,1,f +4752,6183,14,1,f +4752,6248,4,4,f +4752,6249,8,2,f +4752,970c00,15,1,f +4752,973c01,2,1,f +4753,15994,15,1,f +4753,16304,71,1,f +4753,16600,179,1,f +4753,2301,4,2,f +4753,3437,191,2,f +4753,51708,70,1,f +4753,76371,4,2,f +4753,76371,15,2,f +4753,89467,70,1,f +4753,98233,191,1,f +4753,98252,4,2,f +4754,122c01,7,2,f +4754,3004,47,1,f +4754,3021,4,4,f +4754,3023,4,2,f +4754,3039,47,1,f +4754,3039,4,1,f +4754,3062a,33,1,f +4754,3626apr0001,14,1,f +4754,3641,0,4,f +4754,3787,4,2,f +4754,3795,4,2,f +4754,3834,0,1,f +4754,602stk01,9999,1,t +4754,970c00,0,1,f +4754,973c18,0,1,f +4756,3001,4,1,f +4756,3001,15,3,f +4756,3003,4,1,f +4756,3004,15,4,f +4756,3004,4,9,f +4756,3005,47,2,f +4756,3005,15,2,f +4756,3005,4,5,f +4756,3009,4,3,f +4756,3010,4,12,f +4756,3010,15,5,f +4756,3020,1,2,f +4756,3021,1,2,f +4756,3031,1,1,f +4756,3039,47,2,f +4756,3081cc01,14,2,f +4756,3137c01,0,2,f +4756,3297,1,2,f +4756,3298,1,4,f +4756,3299,1,1,f +4756,3300,1,2,f +4756,3622,4,4,f +4756,3622,15,2,f +4756,3641,0,4,f +4756,3741,2,2,f +4756,3742,14,1,t +4756,3742,15,1,t +4756,3742,15,3,f +4756,3742,14,3,f +4756,3853,14,2,f +4756,3854,4,4,f +4756,3861b,14,1,f +4756,3865,2,1,f +4757,2343,47,1,f +4757,2357,0,1,f +4757,2376,0,1,f +4757,2453a,7,1,f +4757,2454a,7,1,f +4757,2456,0,1,f +4757,2566,0,3,f +4757,2586p4f,7,1,f +4757,3002,7,4,f +4757,3003,7,7,f +4757,3004,7,23,f +4757,3004,0,1,f +4757,3004,14,2,f +4757,3005,0,3,f +4757,3005,7,6,f +4757,3007,7,1,f +4757,30072,2,2,f +4757,3008,7,2,f +4757,3010,7,8,f +4757,30101,8,1,f +4757,30103,0,1,f +4757,30104,8,1,f +4757,30106,47,2,f +4757,3020,14,1,f +4757,3023,0,1,f +4757,3023,14,8,f +4757,3034,0,1,f +4757,3035,0,2,f +4757,3036,7,1,f +4757,3039,7,2,f +4757,3040b,7,2,f +4757,3062b,47,1,f +4757,3062b,36,1,f +4757,3062b,4,5,f +4757,3062b,7,6,f +4757,3062b,34,1,f +4757,3068bp40,15,1,f +4757,3069b,4,3,f +4757,3308,0,2,f +4757,3455,7,1,f +4757,3622,0,2,f +4757,3626bp35,14,1,f +4757,3626bp44,14,1,f +4757,3626bpr0895,15,1,f +4757,3626bpx20,14,1,f +4757,3626bpx54,14,1,f +4757,3626bpx97,14,1,f +4757,3659,8,5,f +4757,3659,7,1,f +4757,3660,4,1,f +4757,3666,14,3,f +4757,3678ap01,0,1,f +4757,3684,7,3,f +4757,3705,0,1,f +4757,3710,15,1,f +4757,3736,7,1,f +4757,3738,7,2,f +4757,3794a,14,3,f +4757,3795,7,1,f +4757,3844,0,1,f +4757,3846p4f,7,1,f +4757,3849,6,1,f +4757,3896,0,1,f +4757,3937,14,2,f +4757,3938,4,2,f +4757,3941,0,1,f +4757,3957a,0,1,f +4757,40249,8,1,f +4757,4032a,0,1,f +4757,4085c,4,1,f +4757,4211,4,1,f +4757,4215b,0,1,f +4757,4265a,7,1,f +4757,4332,6,2,f +4757,4460a,4,2,f +4757,4460a,7,5,f +4757,4460a,0,4,f +4757,4491b,4,1,f +4757,4493c01pb02,0,1,f +4757,4495b,4,1,f +4757,4495b,14,1,f +4757,4497,6,1,f +4757,4498,6,1,f +4757,4499,6,1,f +4757,4505,6,1,f +4757,4589,14,4,f +4757,4589,57,1,f +4757,4623,15,4,f +4757,59,383,1,f +4757,6019,15,8,f +4757,6020,6,1,f +4757,6027,2,1,f +4757,6028,2,1,f +4757,6037,7,2,f +4757,6056,0,4,f +4757,6082,8,3,f +4757,6083,8,4,f +4757,6104,7,1,f +4757,6108,0,2,f +4757,6111,7,1,f +4757,6122,0,1,f +4757,6124,36,1,f +4757,6126a,57,4,f +4757,6127,2,1,f +4757,6128,2,1,f +4757,6131,0,1,f +4757,6133,4,2,f +4757,6133,0,4,f +4757,6141,33,1,f +4757,6141,14,2,f +4757,6260,15,1,f +4757,6265,15,2,f +4757,6266,15,2,f +4757,75174,2,1,f +4757,87692,4,1,t +4757,87693,4,1,t +4757,87694,4,1,f +4757,970c00,4,1,f +4757,970x026,8,2,f +4757,970x026,7,1,f +4757,973p45c01,8,1,f +4757,973pb0066c01,7,1,f +4757,973px21c01,2,1,f +4757,973px35c01,0,1,f +4757,973px90c01,0,1,f +4757,bb190pb02,4,1,f +4760,3007mia,4,2,f +4760,3007mia,1,3,f +4760,3185,2,11,f +4760,3297mia,1,8,f +4760,3298mia,1,4,f +4760,3299mia,1,2,f +4760,374,2,1,f +4760,3853mi,15,4,f +4760,3856mi,2,8,f +4760,3861mi,15,2,f +4760,604mi,15,2,f +4760,archmia,4,3,f +4760,m3001,4,34,f +4760,m3001,14,37,f +4760,m3001,1,8,f +4760,m3003,14,15,f +4760,m3003,4,12,f +4760,m3003,1,1,f +4761,3001,1,1,f +4761,3004,4,1,f +4761,3020,4,1,f +4761,3021,14,2,f +4761,3021,4,1,f +4761,3022,14,1,f +4761,3039,47,1,f +4761,3660,1,1,f +4761,6141,34,1,f +4763,298c02,14,2,f +4763,298c02,14,1,t +4763,3001,2,4,f +4763,3001,1,2,f +4763,3001,0,4,f +4763,3001,14,4,f +4763,3001,15,2,f +4763,3001,4,4,f +4763,3001,27,2,f +4763,3002,2,2,f +4763,3002,1,2,f +4763,3003,70,4,f +4763,3003,0,14,f +4763,3003,25,4,f +4763,3003,4,14,f +4763,3003,27,8,f +4763,3003,2,14,f +4763,3003,15,6,f +4763,3003,1,2,f +4763,3003,14,14,f +4763,3003pe2,14,1,f +4763,3004,4,4,f +4763,3004,70,2,f +4763,3004,27,4,f +4763,3004,2,2,f +4763,3004,0,2,f +4763,3004,1,2,f +4763,3005,2,4,f +4763,3005,14,2,f +4763,3005,4,2,f +4763,3005pe1,2,2,f +4763,3005pe1,2,1,t +4763,3005pe1,15,2,f +4763,3007,4,2,f +4763,3010,2,2,f +4763,3010,15,2,f +4763,3010,0,2,f +4763,3010,27,2,f +4763,3010,4,2,f +4763,3010,14,2,f +4763,3020,2,1,f +4763,3021,0,2,f +4763,3021,2,1,f +4763,3022,2,2,f +4763,3022,4,1,f +4763,3022,0,2,f +4763,3023,0,4,f +4763,3029,2,1,f +4763,3039,1,2,f +4763,3039,0,2,f +4763,3039,14,2,f +4763,3039,2,2,f +4763,3039,4,2,f +4763,3062b,2,1,t +4763,3062b,2,3,f +4763,3298,1,2,f +4763,33303,15,2,f +4763,3659,4,2,f +4763,3660,2,2,f +4763,3660,1,2,f +4763,3665,2,2,f +4763,4070,2,3,f +4763,4130,15,1,f +4763,4131,0,1,f +4763,4132,4,1,f +4763,4133,15,1,f +4763,4286,14,2,f +4763,4287,0,2,f +4763,4287,14,2,f +4763,4727,2,1,f +4763,4728,14,1,f +4763,4728,4,1,f +4763,4728,1,1,f +4763,4744pr0002,4,1,f +4763,4744pr0004,2,1,f +4763,6141,27,1,t +4763,6141,4,4,f +4763,6141,27,4,f +4763,6141,0,1,t +4763,6141,4,1,t +4763,6141,0,4,f +4764,11055,4,1,f +4764,12622,4,1,f +4764,14226c11,0,1,f +4764,2412b,179,2,f +4764,2435,2,1,f +4764,2437,40,1,f +4764,3001,15,2,f +4764,3001,4,2,f +4764,3001,1,2,f +4764,3002,15,3,f +4764,3002,4,2,f +4764,3003,1,4,f +4764,3003,2,2,f +4764,3003,27,2,f +4764,3003,4,2,f +4764,3003,15,14,f +4764,3004,2,4,f +4764,3004,27,4,f +4764,3004,321,6,f +4764,3004,15,2,f +4764,3004,1,2,f +4764,3004,4,4,f +4764,3005,71,4,f +4764,3005,1,2,f +4764,3005,2,4,f +4764,3005,27,4,f +4764,3006,15,1,f +4764,3020,25,1,f +4764,3020,71,2,f +4764,30261p02,15,1,f +4764,3039pr0001,15,1,f +4764,3062b,4,1,f +4764,3068b,71,5,f +4764,3185,0,2,f +4764,3626cpr0498,14,1,f +4764,3626cpr0891,14,1,f +4764,3660,15,2,f +4764,3795,25,1,f +4764,3829c01,0,1,f +4764,3836,70,1,f +4764,3901,70,1,f +4764,3957b,71,1,f +4764,4006,0,1,f +4764,4079,15,1,f +4764,4081b,71,2,f +4764,4085c,72,1,f +4764,4522,0,1,f +4764,4599b,4,1,t +4764,4599b,14,1,t +4764,4599b,14,1,f +4764,4599b,4,1,f +4764,6014b,15,4,f +4764,60599,15,1,f +4764,60797c02,0,1,f +4764,6140,71,1,f +4764,61409,4,2,f +4764,6141,36,1,t +4764,6141,46,2,f +4764,6141,25,3,f +4764,6141,46,1,t +4764,6141,25,1,t +4764,6141,36,2,f +4764,759528c02,1,1,f +4764,759532,321,3,f +4764,759533,321,2,f +4764,86035,25,1,f +4764,87087,321,2,f +4764,87697,0,4,f +4764,88930,1,2,f +4764,88930,4,2,f +4764,91405,72,1,f +4764,92586pr0001,84,1,f +4764,92926,2,1,f +4764,93273,71,2,f +4764,970c00,0,1,f +4764,970c00,25,1,f +4764,973pr1160c01,1,1,f +4764,973pr1184c01,0,1,f +4764,98549,71,1,f +4765,12825,0,2,f +4765,15210pr01,0,1,f +4765,2335,15,1,f +4765,2412b,4,3,f +4765,2432,71,1,f +4765,2444,72,2,f +4765,2445,70,1,f +4765,2445,71,2,f +4765,2446,135,1,f +4765,2453a,72,3,f +4765,2454a,15,1,f +4765,2456,72,1,f +4765,2458,15,2,f +4765,2465,15,2,f +4765,2465,71,2,f +4765,2540,15,1,f +4765,2569,0,1,f +4765,2569,0,1,t +4765,2610,14,2,f +4765,3002,71,1,f +4765,30031,72,1,f +4765,3004,71,3,f +4765,3005,0,1,f +4765,30088,0,1,f +4765,3009,15,4,f +4765,3009,2,3,f +4765,30090,41,1,f +4765,30090,41,1,t +4765,30091,72,2,f +4765,3010,15,4,f +4765,30134,72,2,f +4765,30162,71,1,f +4765,3022,0,5,f +4765,3023,72,4,f +4765,30236,15,2,f +4765,3024,47,1,f +4765,3027,72,1,f +4765,3028,70,2,f +4765,3034,72,2,f +4765,30340,14,1,f +4765,3035,70,1,f +4765,3036,70,2,f +4765,30367b,4,1,f +4765,30383,71,2,f +4765,3039pr0013,15,1,f +4765,3040b,15,11,f +4765,30553,71,2,f +4765,30586,71,2,f +4765,3062b,34,1,f +4765,3062b,46,1,f +4765,3062b,4,2,f +4765,3062b,71,5,f +4765,3062b,15,2,f +4765,3068b,28,1,f +4765,3069bpr0030,72,1,f +4765,3070b,34,1,t +4765,3070b,36,1,t +4765,3070b,34,1,f +4765,3070b,36,1,f +4765,3245c,15,7,f +4765,3622,15,2,f +4765,3666,70,2,f +4765,3673,71,1,t +4765,3673,71,2,f +4765,3678b,15,1,f +4765,3701,1,1,f +4765,3703,1,2,f +4765,3710,72,2,f +4765,3794b,14,1,f +4765,3795,71,3,f +4765,3829c01,15,1,f +4765,3832,72,1,f +4765,3839b,71,1,f +4765,3899,4,2,f +4765,3940b,0,1,f +4765,3942c,15,1,f +4765,3957a,71,5,f +4765,3960,15,1,f +4765,4079,14,6,f +4765,4150,0,2,f +4765,43337,4,2,f +4765,4349,4,1,f +4765,44674,14,2,f +4765,44675,71,2,f +4765,44728,71,4,f +4765,4477,71,1,f +4765,4495b,2,1,f +4765,4495b,4,1,f +4765,4495b,14,1,f +4765,4515,2,3,f +4765,4532,15,4,f +4765,4533,72,4,f +4765,4600,0,2,f +4765,4623,4,10,f +4765,4740,15,1,f +4765,4740,0,1,f +4765,476,72,1,f +4765,48336,71,1,f +4765,4865a,15,2,f +4765,4865a,47,4,f +4765,49668,0,1,f +4765,57894,72,2,f +4765,57895,47,2,f +4765,59275,25,4,t +4765,59275,25,4,f +4765,59275,27,2,f +4765,59275,27,4,t +4765,59349,15,2,f +4765,6014b,71,4,f +4765,6020,71,2,f +4765,60470a,71,1,f +4765,60475a,15,2,f +4765,60583a,15,1,f +4765,60594,72,1,f +4765,60596,15,3,f +4765,60603,47,1,f +4765,60700,0,4,f +4765,6075,14,1,f +4765,6075,15,1,f +4765,60808,15,1,f +4765,6111,71,1,f +4765,61409,72,4,f +4765,6180,71,1,f +4765,6187,71,1,f +4765,6232,72,2,f +4765,62360,15,1,f +4765,62812,1,1,f +4765,63864,15,1,f +4765,63965,72,1,f +4765,64448,72,2,f +4765,6583,15,3,f +4765,6636,72,4,f +4765,75c18,4,1,f +4765,87079,71,2,f +4765,87087,15,3,f +4765,87580,71,1,f +4765,91501,15,1,f +4765,92438,19,2,f +4765,92593,72,4,f +4765,93383,47,1,f +4766,132a,0,10,f +4766,242c01,4,10,f +4766,3001a,1,2,f +4766,3002a,1,2,f +4766,3003,0,1,f +4766,3004,14,2,f +4766,3004,47,4,f +4766,3004p50,4,1,f +4766,3005,14,2,f +4766,3009,1,1,f +4766,3009,14,6,f +4766,3009p01,1,2,f +4766,3010,47,2,f +4766,3010,14,3,f +4766,3010,1,4,f +4766,3020,14,1,f +4766,3020,0,4,f +4766,3021,0,2,f +4766,3022,14,1,f +4766,3022,0,2,f +4766,3028,1,1,f +4766,3032,0,1,f +4766,3037,47,1,f +4766,3037,1,2,f +4766,3037,4,2,f +4766,3038,47,2,f +4766,3040a,0,2,f +4766,3127,4,1,f +4766,3455,1,4,f +4766,559c01,4,1,f +4766,7049b,0,4,f +4766,711,1,2,f +4766,799c800,0,1,f +4766,801,14,1,f +4766,802,14,1,f +4766,805,0,1,f +4766,bb50,1,1,f +4766,rb00164,0,1,f +4767,3021,1,4,f +4767,3022,1,4,f +4767,3023,1,16,f +4767,3031,1,2,f +4767,3032,1,2,f +4767,3033,1,2,f +4767,32001,1,2,f +4767,3460,1,4,f +4767,3623,1,8,f +4767,3666,1,4,f +4767,3709,1,8,f +4767,3710,1,8,f +4767,3738,1,4,f +4767,4477,1,4,f +4768,21,47,2,f +4768,273,0,48,f +4768,3001a,0,2,f +4768,3001a,14,6,f +4768,3001a,4,4,f +4768,3003,14,2,f +4768,3004,14,1,f +4768,3005,14,4,f +4768,3008,4,2,f +4768,3009,14,4,f +4768,3009,4,2,f +4768,3010,14,2,f +4768,3010,47,4,f +4768,3010,4,2,f +4768,3020,14,9,f +4768,3020,4,3,f +4768,3022,14,1,f +4768,3024,14,2,f +4768,3029,4,2,f +4768,3030,14,3,f +4768,3032,14,3,f +4768,3034,4,3,f +4768,3034,14,4,f +4768,3037,14,1,f +4768,3062a,0,2,f +4768,3068b,4,2,f +4768,3145,14,1,f +4768,3149c01,4,3,f +4768,3317,14,1,f +4768,3404ac01,0,1,f +4768,3433,14,1,f +4768,3436,14,1,f +4768,3491,4,1,f +4768,3492c01,14,1,f +4768,3634,0,4,f +4768,3639,4,1,f +4768,3640,4,1,f +4768,3660a,4,4,f +4768,3707,79,2,f +4768,3709a,7,2,f +4768,569,4,4,f +4768,7039,4,4,f +4768,7049b,0,2,f +4768,828,4,1,f +4768,x148,4,4,f +4769,11211,4,3,f +4769,14417,72,1,f +4769,14704,71,5,f +4769,14769,70,1,f +4769,15068,4,1,f +4769,15068,72,2,f +4769,15068,0,2,f +4769,15070,297,1,f +4769,15208,15,4,f +4769,15209,15,1,f +4769,15456,0,1,f +4769,15571,72,1,f +4769,22890,72,1,f +4769,2489,70,1,f +4769,2736,71,1,f +4769,3020,10,1,f +4769,3020,4,1,f +4769,3021,72,1,f +4769,3023,0,4,f +4769,30395,297,1,f +4769,3049c,0,1,f +4769,32028,72,3,f +4769,32474,0,1,f +4769,32474pr1001,15,1,f +4769,3660,0,1,f +4769,41854,0,2,f +4769,4871,72,1,f +4769,60481,0,1,f +4769,6141,179,1,t +4769,6141,179,2,f +4769,63868,308,1,f +4769,85984,4,1,f +4769,87087,72,2,f +4769,93273,72,2,f +4769,98138,297,1,t +4769,98138,297,1,f +4769,99207,71,1,f +4773,2343,7,32,f +4773,2356,1,4,f +4773,2356,7,5,f +4773,2362b,7,2,f +4773,2412b,7,119,f +4773,2419,7,3,f +4773,2420,7,2,f +4773,2431,7,26,f +4773,2431,0,4,f +4773,2436,7,1,f +4773,2445,7,50,f +4773,2450,8,4,f +4773,2456,8,6,f +4773,2458,4,1,f +4773,2465,7,6,f +4773,2476a,1,23,f +4773,2489,8,4,f +4773,2555,7,131,f +4773,2573,7,3,f +4773,2607,0,14,f +4773,2625,8,4,f +4773,2625,7,2,f +4773,2730,7,4,f +4773,2744,0,8,f +4773,2780,0,154,f +4773,2780,0,2,t +4773,2817,7,36,f +4773,2877,8,15,f +4773,298c02,15,1,t +4773,298c02,15,1,f +4773,298c03,0,31,f +4773,298c03,0,1,t +4773,298c03,7,1,t +4773,298c03,7,17,f +4773,30000,1,4,f +4773,3001,7,23,f +4773,3003,4,1,f +4773,3003,8,6,f +4773,3004,4,4,f +4773,3004,15,1,f +4773,3005,7,8,f +4773,3006,7,2,f +4773,3007,7,10,f +4773,3008,8,1,f +4773,3009,7,14,f +4773,3010,7,2,f +4773,3010,4,7,f +4773,30144,7,4,f +4773,30159,19,14,f +4773,30162,7,18,f +4773,3020,7,21,f +4773,3020,19,2,f +4773,3020,8,2,f +4773,30208,7,2,f +4773,3021,7,20,f +4773,3021,8,55,f +4773,3022,8,4,f +4773,3022,7,2,f +4773,3023,8,29,f +4773,3023,320,2,f +4773,30249,7,6,f +4773,3027,7,30,f +4773,3028,7,8,f +4773,3029,7,17,f +4773,3030,8,4,f +4773,3031,7,8,f +4773,3032,8,11,f +4773,3033,7,6,f +4773,3034,8,2,f +4773,3034,7,48,f +4773,30342,7,2,f +4773,3035,7,8,f +4773,3035,0,15,f +4773,30355,7,32,f +4773,30356,7,32,f +4773,30359b,47,1,f +4773,3036,7,12,f +4773,30363,0,8,f +4773,30374,8,6,f +4773,3039,7,2,f +4773,3040b,7,10,f +4773,3040b,1,2,f +4773,3043,15,2,f +4773,3048c,15,8,f +4773,3048c,0,2,f +4773,3062b,15,12,f +4773,3068b,7,10,f +4773,3068b,8,8,f +4773,3068b,4,1,f +4773,3070b,15,1,t +4773,3070b,15,3,f +4773,32000,7,30,f +4773,32000,15,1,f +4773,32000,0,8,f +4773,32013,7,4,f +4773,32016,1,4,f +4773,32018,0,14,f +4773,32039,7,24,f +4773,32064b,0,16,f +4773,32324,7,9,f +4773,3245b,7,6,f +4773,32524,7,5,f +4773,32525,0,2,f +4773,32531,7,14,f +4773,32532,0,6,f +4773,3297,7,8,f +4773,3297,0,6,f +4773,3456,7,14,f +4773,3460,7,12,f +4773,3460,0,2,f +4773,3622,7,3,f +4773,3623,7,4,f +4773,3623,320,1,f +4773,3626b,41,4,f +4773,3665,7,2,f +4773,3666,8,51,f +4773,3666,7,1,f +4773,3673,7,14,f +4773,3676,7,2,f +4773,3679,7,8,f +4773,3680,0,8,f +4773,3700,1,20,f +4773,3701,15,2,f +4773,3701,1,4,f +4773,3701,0,6,f +4773,3701,4,4,f +4773,3702,0,10,f +4773,3703,7,66,f +4773,3703,0,8,f +4773,3705,0,12,f +4773,3706,0,3,f +4773,3710,7,3,f +4773,3710,8,63,f +4773,3710,15,1,f +4773,3713,7,4,f +4773,3713,7,1,t +4773,3743,7,39,f +4773,3747b,1,8,f +4773,3749,19,4,f +4773,3794a,15,1,f +4773,3794a,8,22,f +4773,3794a,7,1,f +4773,3795,8,45,f +4773,3830,7,12,f +4773,3831,7,12,f +4773,3832,8,37,f +4773,3839b,7,8,f +4773,3894,7,19,f +4773,3933,7,7,f +4773,3934,7,7,f +4773,3937,7,7,f +4773,3941,1,3,f +4773,3941,7,2,f +4773,3958,8,1,f +4773,3959,7,2,f +4773,3960,47,1,f +4773,3961,7,3,f +4773,4032a,1,3,f +4773,4070,7,2,f +4773,4081b,7,33,f +4773,4150,7,8,f +4773,4162,8,34,f +4773,4162,7,2,f +4773,41769,7,8,f +4773,41769,8,9,f +4773,41770,7,8,f +4773,41770,8,9,f +4773,4215b,7,2,f +4773,4274,1,2,t +4773,4274,1,219,f +4773,4282,8,4,f +4773,4282,7,62,f +4773,43093,1,32,f +4773,43722,7,19,f +4773,43723,7,19,f +4773,4424,7,4,f +4773,44375a,41,3,f +4773,44728,8,4,f +4773,4477,8,88,f +4773,4515,7,2,f +4773,4519,4,8,f +4773,4589,7,62,f +4773,4589,15,2,f +4773,4599a,7,144,f +4773,4697b,7,2,f +4773,4697b,7,1,t +4773,4733,15,3,f +4773,4733,7,1,f +4773,4740,7,4,f +4773,4865a,7,140,f +4773,6111,8,2,f +4773,6111,7,4,f +4773,6134,0,7,f +4773,6141,15,2,f +4773,6141,57,11,f +4773,6141,15,1,t +4773,6141,57,1,t +4773,6141,8,8,f +4773,6141,7,1,t +4773,6141,7,3,f +4773,6141,8,1,t +4773,6178,7,2,f +4773,6179,0,10,f +4773,6180,7,10,f +4773,6205,7,8,f +4773,6222,7,7,f +4773,6232,7,2,f +4773,6249,4,17,f +4773,6541,15,4,f +4773,6541,4,4,f +4773,6558,0,15,f +4773,6564,7,2,f +4773,6565,7,2,f +4773,6587,8,4,f +4773,6636,0,2,f +4773,6636,7,5,f +4773,73092,0,4,t +4773,73092,0,28,f +4775,2444,7,1,f +4775,2453a,15,2,f +4775,2456,8,1,f +4775,2736,7,1,f +4775,3001,8,4,f +4775,3003,4,2,f +4775,3004,8,3,f +4775,3005,0,2,f +4775,3020,0,1,f +4775,3020,8,1,f +4775,3021,8,1,f +4775,3021,4,1,f +4775,3022,8,1,f +4775,3022,4,1,f +4775,3034,8,1,f +4775,30363,4,1,f +4775,30492,4,1,f +4775,3068bp18,4,1,f +4775,3068bp18,1,1,f +4775,32013,0,3,f +4775,32014,0,2,f +4775,32034,0,1,f +4775,32039,7,1,f +4775,32060,7,1,f +4775,32062,0,2,f +4775,32064b,0,3,f +4775,32269,7,1,f +4775,3460,15,1,f +4775,3626bpb0163,14,1,f +4775,3626bpb0164,14,1,f +4775,3673,7,1,f +4775,3673,7,1,t +4775,3700,4,3,f +4775,3705,0,1,f +4775,3707,0,1,f +4775,3708,0,2,f +4775,3709,4,1,f +4775,3710,0,1,f +4775,3737,0,1,f +4775,3754pb05,47,1,f +4775,3795,8,1,f +4775,3832,8,1,f +4775,4032a,7,1,f +4775,4032a,4,1,f +4775,42073cx1,8,1,f +4775,4287,0,2,f +4775,43093,1,1,f +4775,43372,19,1,f +4775,43373,25,1,f +4775,43374,15,1,f +4775,43702pr0001,25,3,f +4775,44294,7,1,f +4775,6232,4,3,f +4775,6538b,0,1,f +4775,6558,0,1,f +4775,6575,0,2,f +4775,973bpb178c01,4,1,f +4775,973bpb180c01,110,1,f +4775,x494cx1,4,1,f +4775,x494cx1,110,1,f +4776,3004,19,2,f +4776,3020,19,1,f +4776,3299,4,1,f +4776,3626bpr0498,14,1,f +4776,3837,72,1,f +4776,4083,0,1,f +4776,4523,1,1,f +4776,48812,70,1,f +4776,6141,4,1,f +4776,6141,4,1,t +4776,6141,27,1,t +4776,6141,27,2,f +4776,86035,0,1,f +4776,87621pr01,92,1,f +4776,970c00,2,1,f +4776,973pr1446c01,4,1,f +4779,3626bpb0131,6,1,f +4779,973bpb131c01,14,1,f +4779,bb84pb01,25,1,f +4779,x494cx1,14,1,f +4780,2431,0,1,f +4780,2536,7,2,f +4780,2717,7,1,f +4780,2736,7,1,f +4780,2780,0,36,f +4780,2780,0,1,t +4780,2819,7,1,f +4780,2995,0,4,f +4780,2996,7,4,f +4780,3022,0,1,f +4780,3023,0,4,f +4780,32000,0,2,f +4780,32005b,8,4,f +4780,32009,0,4,f +4780,32012,8,1,f +4780,32013,0,3,f +4780,32013,7,4,f +4780,32014,0,4,f +4780,32016,0,2,f +4780,32034,0,1,f +4780,32039,7,2,f +4780,32039,0,11,f +4780,32054,0,2,t +4780,32054,0,9,f +4780,32062,0,21,f +4780,32063,7,4,f +4780,32064b,0,2,f +4780,32073,0,3,f +4780,32123b,7,4,t +4780,32123b,7,21,f +4780,32138,0,1,f +4780,32140,0,8,f +4780,32184,0,5,f +4780,32184,7,1,f +4780,32192,7,2,f +4780,32201,179,2,f +4780,32209,0,2,f +4780,32269,7,1,f +4780,32271,0,2,f +4780,32291,0,6,f +4780,32316,7,2,f +4780,32348,7,2,f +4780,32523,7,2,f +4780,32527,81,2,f +4780,32528,81,2,f +4780,32530,7,4,f +4780,32531,7,2,f +4780,32534,81,2,f +4780,32535,81,2,f +4780,3647,7,1,t +4780,3647,7,1,f +4780,3666,0,2,f +4780,3705,0,3,f +4780,3706,0,4,f +4780,3707,0,6,f +4780,3710,0,4,f +4780,3713,7,9,f +4780,3713,7,4,t +4780,3737,0,1,f +4780,3749,7,12,f +4780,3894,0,4,f +4780,40490,0,4,f +4780,4175,7,2,f +4780,4288,0,1,f +4780,4519,0,11,f +4780,56823,0,1,f +4780,6141,42,1,t +4780,6141,42,4,f +4780,6536,0,10,f +4780,6538b,0,1,f +4780,6538b,7,7,f +4780,6553,0,1,f +4780,6558,0,20,f +4780,6571,0,4,f +4780,6572,7,8,f +4780,6574,0,1,f +4780,6587,8,14,f +4780,6589,7,3,f +4780,6628,0,3,f +4780,6629,7,2,f +4780,6632,0,10,f +4780,6797,7,1,f +4780,73129,8,2,f +4780,75535,0,1,f +4780,78c11,135,2,f +4780,85543,15,1,f +4782,12825,71,2,f +4782,2431pr0055,1,1,f +4782,2431pr0056,1,1,f +4782,2436,0,1,f +4782,2780,0,2,f +4782,2780,0,1,t +4782,3001,1,2,f +4782,30027b,71,2,f +4782,30028,0,2,f +4782,3021,72,2,f +4782,3022,1,1,f +4782,3022,0,2,f +4782,3023,4,1,f +4782,3034,71,1,f +4782,30395,72,1,f +4782,3068b,1,1,f +4782,3069b,1,2,f +4782,3069bpr0124,1,1,f +4782,3139,0,2,f +4782,32530,0,1,f +4782,3623,1,1,f +4782,3710,1,4,f +4782,4083,320,1,f +4782,44728,1,1,f +4782,4600,71,1,f +4782,4623,71,2,f +4782,4624,71,2,f +4782,4865a,1,2,f +4782,57515,320,1,f +4782,60212,1,1,f +4782,6141,182,1,f +4782,6141,182,1,t +4782,6141,47,2,f +4782,6141,47,1,t +4782,6157,0,1,f +4782,6541,1,2,f +4782,93590,1,1,f +4782,93598pr0007,1,1,f +4788,2346,0,6,f +4788,2352,4,1,f +4788,2456,14,2,f +4788,2456,1,2,f +4788,2456,4,2,f +4788,3001,1,14,f +4788,3001,14,16,f +4788,3001,4,16,f +4788,3001,0,8,f +4788,3001,15,14,f +4788,3001,2,6,f +4788,3001pr1,14,4,f +4788,3002,4,6,f +4788,3002,0,4,f +4788,3002,15,6,f +4788,3002,1,6,f +4788,3002,14,6,f +4788,3002,2,4,f +4788,3003,1,16,f +4788,3003,4,18,f +4788,3003,15,16,f +4788,3003,2,8,f +4788,3003,14,18,f +4788,3003,0,10,f +4788,3003pe2,15,2,f +4788,3003pe2,14,2,f +4788,3007,14,2,f +4788,3007,4,2,f +4788,30076,1,1,f +4788,30077,14,4,f +4788,30144pb004,4,1,f +4788,3742,4,1,t +4788,3742,1,3,f +4788,3742,15,1,t +4788,3742,1,1,t +4788,3742,14,1,t +4788,3742,14,3,f +4788,3742,4,3,f +4788,3742,15,3,f +4788,4132,4,1,f +4788,4133,15,1,f +4788,4204,2,1,f +4788,4594,47,1,f +4788,4727,2,4,f +4788,4730,4,1,f +4788,4744,4,1,f +4788,4744pr0001,0,1,f +4788,4744pr0002,4,1,f +4788,4744pr0004,2,1,f +4788,4745,14,1,f +4788,4747,4,1,f +4788,4748,4,1,f +4788,600,15,1,f +4788,601,15,2,f +4788,6212,4,1,f +4788,6235,1,1,f +4788,6236,1,1,f +4788,6248,14,2,f +4788,6248,4,4,f +4788,6249,4,1,f +4790,45573,72,1,f +4790,45574,71,1,f +4790,45575,71,2,f +4790,78c24,179,3,f +4790,78c32,41,3,f +4791,53705,148,1,f +4791,64847,15,2,f +4791,87994,0,1,f +4791,88646,0,1,f +4791,970c88pr0286,70,1,f +4791,973pr1952ac01,70,1,f +4791,98373pr0001,70,1,f +4792,3001,1,3,f +4792,3003,1,2,f +4792,3710,0,1,f +4792,4589,0,1,f +4794,11089,15,1,f +4794,11164pat01,41,1,f +4794,11270,33,1,f +4794,11298,15,1,f +4794,11334,15,3,f +4794,11338,41,1,f +4794,2780,0,2,f +4794,2780,0,1,t +4794,32062,4,1,f +4794,43093,1,1,f +4794,50923,72,2,f +4794,53451,4,1,t +4794,53451,4,4,f +4794,59443,72,2,f +4794,64276,72,2,f +4794,87083,72,2,f +4794,87747,15,1,t +4794,87747,15,4,f +4794,90608,0,2,f +4794,90611,0,2,f +4794,90612,0,1,f +4794,90617,72,4,f +4794,90625,0,1,f +4794,90640,41,2,f +4794,90641,15,6,f +4794,90641,41,2,f +4794,90652,15,1,f +4794,90661,15,2,f +4794,92220,41,4,f +4794,92233,15,1,f +4794,93575,15,1,f +4794,98570pat01,15,1,f +4794,99773,0,2,f +4795,2431,0,2,f +4795,2610,14,2,f +4795,30031,0,1,f +4795,3023,27,2,f +4795,3034,71,1,f +4795,3626bpr0498,14,1,f +4795,3626bpr0647,14,1,f +4795,41854,15,1,f +4795,43713,15,1,f +4795,4623,0,1,f +4795,4871,15,1,f +4795,51739,0,1,f +4795,53989,0,1,f +4795,6093,70,1,f +4795,61678,27,2,f +4795,62810,484,1,f +4795,970c00,1,1,f +4795,970x026,71,1,f +4795,973pr1480c01,15,1,f +4795,973pr1575c01,0,1,f +4796,11477,326,1,f +4796,14518,72,1,f +4796,15068,14,2,f +4796,19220,0,1,f +4796,2423,326,1,f +4796,2446,4,2,f +4796,2460,72,2,f +4796,2540,71,2,f +4796,3001,71,1,f +4796,30089,0,1,f +4796,30090,41,1,t +4796,30090,41,2,f +4796,30091,72,2,f +4796,30093,288,1,f +4796,30151b,47,1,f +4796,30153,36,1,f +4796,3020,14,5,f +4796,3023,0,2,f +4796,3031,71,1,f +4796,30361,72,2,f +4796,30367c,72,2,f +4796,3039,72,1,f +4796,3062b,36,1,f +4796,3062b,72,1,f +4796,3068b,28,2,f +4796,3069bpr0090,72,1,f +4796,3622,72,1,f +4796,3626cpr0499,14,1,f +4796,3626cpr0893,14,1,f +4796,3626cpr1087,14,1,f +4796,3749,19,2,f +4796,44728,0,4,f +4796,44728,15,1,f +4796,45677,14,1,f +4796,48729b,72,3,f +4796,48729b,72,1,t +4796,54200,288,1,f +4796,54200,288,1,t +4796,59275,4,4,f +4796,6019,0,1,f +4796,6041,0,2,f +4796,60478,72,3,f +4796,6141,4,2,f +4796,61780,70,1,f +4796,6583,0,2,f +4796,87580,72,1,f +4796,87587pr0001,72,1,f +4796,87754,71,1,f +4796,89159,41,1,f +4796,92585,4,1,f +4796,970c00pr0827,0,2,f +4796,970c00pr0841,25,1,f +4796,973pr2955c01,0,2,f +4796,973pr2991c01,25,1,f +4796,98138,297,1,t +4796,98138,47,2,f +4796,98138,297,3,f +4796,98313,0,2,f +4796,99207,71,2,f +4798,3001,19,1,f +4798,3004,26,1,f +4798,30103,0,1,f +4798,3035,71,1,f +4798,3039,70,1,f +4798,3040b,25,2,f +4798,3040b,26,2,f +4798,3062b,70,2,f +4798,3069b,85,1,f +4798,33291,5,1,f +4798,33291,10,3,f +4798,3626c,25,1,f +4798,3666,85,1,f +4798,4332,0,1,f +4798,4460b,70,1,f +4798,60581,47,1,f +4798,60897,70,1,f +4798,6124,45,1,f +4798,6131,0,1,f +4798,6141,25,2,f +4798,6141,85,2,f +4798,87580,85,1,f +4799,3001a,14,2,f +4799,3002a,4,5,f +4799,3003,0,2,f +4799,3004,4,4,f +4799,3004,14,4,f +4799,3004,1,2,f +4799,3004,0,8,f +4799,3005,4,8,f +4799,3005,0,12,f +4799,3007,1,1,f +4799,3008,1,9,f +4799,3008,47,2,f +4799,3008,0,2,f +4799,3009,1,10,f +4799,3009,0,4,f +4799,3009,47,3,f +4799,3010,47,6,f +4799,3010,1,7,f +4799,3010,0,4,f +4799,3020,0,4,f +4799,3021,0,4,f +4799,3021,14,2,f +4799,3022,0,20,f +4799,3023,0,26,f +4799,3023,1,8,f +4799,3024,0,10,f +4799,3024,1,4,f +4799,3030,0,2,f +4799,3030,1,1,f +4799,3032,0,1,f +4799,3033,0,1,f +4799,3034,0,3,f +4799,3035,0,2,f +4799,3036,0,2,f +4799,3036,1,3,f +4799,3037,1,4,f +4799,3038,1,2,f +4799,3039,1,2,f +4799,3040a,0,2,f +4799,3045,1,2,f +4799,3046a,1,2,f +4799,3062a,14,2,f +4799,3063b,4,8,f +4799,3081cc01,14,2,f +4799,3460,0,4,f +4799,35,15,6,f +4799,36,0,6,f +4799,7049b,0,6,f +4801,107pr0001,15,1,f +4801,3004,14,2,f +4801,3004,4,2,f +4801,3004,15,4,f +4801,3004pb011,4,3,f +4801,3005,15,2,f +4801,3008,15,1,f +4801,3009,15,6,f +4801,3009pt1,15,1,f +4801,3010,15,7,f +4801,3021,7,2,f +4801,3023,47,2,f +4801,3028,7,1,f +4801,3034,15,1,f +4801,3068a,7,2,f +4801,3069a,14,2,f +4801,32bc01,14,1,f +4801,3865,2,1,f +4801,604c01,14,1,f +4805,2780,0,1,t +4805,2780,0,17,f +4805,32062,4,1,t +4805,32062,4,3,f +4805,32072,0,4,f +4805,32073,71,5,f +4805,32140,0,4,f +4805,32184,71,2,f +4805,32271,85,4,f +4805,32278,0,2,f +4805,32291,0,1,f +4805,32316,71,2,f +4805,32524,0,1,f +4805,32525,0,4,f +4805,32526,71,1,f +4805,3713,71,4,f +4805,3713,71,1,t +4805,41669,42,2,f +4805,42003,0,3,f +4805,4274,71,5,t +4805,4274,71,4,f +4805,43093,1,6,f +4805,44809,0,2,f +4805,4519,71,8,f +4805,46667,72,2,f +4805,48989,71,5,f +4805,59443,0,3,f +4805,60483,71,5,f +4805,63153,179,1,f +4805,63869,71,2,f +4805,64262,57,1,f +4805,64272,85,1,f +4805,6536,0,1,f +4805,6558,1,9,f +4805,6629,0,2,f +4805,87083,72,2,f +4805,87747,297,2,t +4805,87747,297,24,f +4805,87812pat0002,179,2,f +4805,88516,0,2,f +4805,88517,85,2,f +4805,90608,0,2,f +4805,90609,0,2,f +4805,90611,27,5,f +4805,90616,0,4,f +4805,90625,0,1,f +4805,90639,27,4,f +4805,90641,42,4,f +4805,90650,27,1,f +4805,90652,148,2,f +4805,90661,27,2,f +4805,92216,148,1,f +4805,92216,179,2,f +4805,92218,297,2,f +4805,92222,179,3,f +4805,93571,0,1,f +4805,93575,27,4,f +4805,98135,297,2,f +4805,98570pat01,15,1,f +4805,98575,27,1,f +4805,98577,72,2,f +4805,98588pat0002,148,2,f +4805,98589,85,1,f +4808,2335,14,1,f +4808,2412b,0,6,f +4808,2412b,14,6,f +4808,2419,0,1,f +4808,2432,0,4,f +4808,2437,40,1,f +4808,2445,0,1,f +4808,2446,8,1,f +4808,2447,0,1,t +4808,2447,0,1,f +4808,2453a,14,5,f +4808,2454a,14,3,f +4808,2460,14,2,f +4808,2479,0,1,f +4808,2493b,7,3,f +4808,2494,40,3,f +4808,2508,14,1,f +4808,2540,14,2,f +4808,2555,0,3,f +4808,2569,8,1,f +4808,2584,0,1,f +4808,2585,7,1,f +4808,2654,46,1,f +4808,2654,0,3,f +4808,2780,0,1,t +4808,2780,0,2,f +4808,3001,0,1,f +4808,3001,15,1,f +4808,3003,7,1,f +4808,30031,8,1,f +4808,3004,14,4,f +4808,3004,0,1,f +4808,3005,0,2,f +4808,3009,0,4,f +4808,3010,14,3,f +4808,3010,0,2,f +4808,30162,8,3,f +4808,30181,0,1,f +4808,30191,14,1,f +4808,3020,8,5,f +4808,3020,7,1,f +4808,3021,14,3,f +4808,3022,7,5,f +4808,3022,8,1,f +4808,3022,0,1,f +4808,30229,8,1,f +4808,3023,7,6,f +4808,3023,46,3,f +4808,30237a,0,1,f +4808,30249,14,2,f +4808,3027,0,1,f +4808,30283,14,2,f +4808,3029,8,1,f +4808,3032,0,1,f +4808,3033,0,1,f +4808,3034,0,1,f +4808,3034,8,2,f +4808,30340,25,1,f +4808,3035,8,2,f +4808,30361c,0,1,f +4808,30363,14,2,f +4808,30367b,14,4,f +4808,30383,8,4,f +4808,3039,8,3,f +4808,30395,8,1,f +4808,3039pr0001,15,1,f +4808,3039pr0002,15,1,f +4808,30407,7,2,f +4808,3040b,8,6,f +4808,3040bpr0003,7,1,f +4808,30503,0,4,f +4808,30536,40,1,f +4808,30562,40,2,f +4808,30608,0,1,f +4808,3068bpb0021,15,1,f +4808,3069b,47,1,f +4808,3069bpc4,7,1,f +4808,3139,0,1,f +4808,32002,8,1,t +4808,32002,8,1,f +4808,32039,7,1,f +4808,32064b,0,3,f +4808,32073,7,1,f +4808,32123b,7,2,f +4808,32123b,7,1,t +4808,32132,0,1,f +4808,32270,7,1,f +4808,32324,7,1,f +4808,32529,0,1,f +4808,32530,7,2,f +4808,3298,0,1,f +4808,3460,0,1,f +4808,3475b,14,2,f +4808,3622,0,2,f +4808,3622,14,4,f +4808,3623,8,2,f +4808,3626bpb0181,14,1,f +4808,3626bpr0282,14,1,f +4808,3626bpr0314,14,1,f +4808,3626bpr0411,14,1,f +4808,3659,0,2,f +4808,3660,14,1,f +4808,3660pb03,14,2,f +4808,3666,0,2,f +4808,3673,7,1,t +4808,3673,7,1,f +4808,3679,7,4,f +4808,3680,0,4,f +4808,3684,0,1,f +4808,3700,7,2,f +4808,3701,0,2,f +4808,3708,0,3,f +4808,3710,0,4,f +4808,3710,14,2,f +4808,3710,8,1,f +4808,3747a,0,1,f +4808,3749,19,1,f +4808,3794a,7,5,f +4808,3829c01,7,1,f +4808,3834,15,1,f +4808,3838,7,1,f +4808,3840,272,1,f +4808,3849,0,1,f +4808,3901,0,1,f +4808,3937,8,3,f +4808,3938,0,1,f +4808,3940b,8,5,f +4808,3941,14,1,f +4808,3941,0,3,f +4808,3958,19,1,f +4808,3962b,8,1,f +4808,4070,7,1,f +4808,4070,0,1,f +4808,4079,14,1,f +4808,4083,14,3,f +4808,4150,7,1,f +4808,4150,14,1,f +4808,4151a,8,1,f +4808,4162,14,2,f +4808,4175,14,1,f +4808,41764,14,1,f +4808,41765,14,1,f +4808,41769,0,2,f +4808,41769,14,1,f +4808,41770,14,1,f +4808,41770,0,1,f +4808,41855,14,1,f +4808,4215b,47,3,f +4808,42511,7,1,f +4808,4274,7,1,f +4808,4274,7,1,t +4808,4286,14,2,f +4808,43337,7,1,f +4808,4345b,0,1,f +4808,4346,7,1,f +4808,4360,7,1,f +4808,43713,0,1,f +4808,43719,8,2,f +4808,43719,14,1,f +4808,43898,7,1,f +4808,44126,14,1,f +4808,44510pb03,19,1,f +4808,44661,14,3,f +4808,44728,8,2,f +4808,4477,7,2,f +4808,4485,272,1,f +4808,4589,0,7,f +4808,4617b,0,1,f +4808,4623,14,3,f +4808,4714,15,1,f +4808,4715,15,2,f +4808,47899c03,7,2,f +4808,4854,0,1,f +4808,4865a,0,2,f +4808,4868b,14,4,f +4808,4871,0,2,f +4808,4872,40,3,f +4808,56823c50,0,1,f +4808,6019,7,3,f +4808,6106,0,2,f +4808,6112,0,1,f +4808,6134,0,2,f +4808,6141,36,1,t +4808,6141,46,10,f +4808,6141,36,4,f +4808,6141,34,1,t +4808,6141,46,1,t +4808,6141,0,6,f +4808,6141,34,2,f +4808,6141,0,1,t +4808,6158,14,1,f +4808,6179,8,1,f +4808,6636,14,1,f +4808,6636,8,1,f +4808,7047stk01,9999,1,t +4808,75347,0,1,f +4808,75535,7,1,f +4808,970x027,25,4,f +4808,973pb0303c01,25,3,f +4808,973px166c01,15,1,f +4810,32002,8,2,f +4810,32013,14,2,f +4810,32015,14,2,f +4810,32123b,7,6,f +4810,3673,7,4,f +4810,3705,0,1,f +4810,4519,0,5,f +4810,6118,0,4,f +4810,6536,0,2,f +4810,6558,0,2,f +4810,6629,0,1,f +4810,6629,14,2,f +4810,71509,0,1,f +4810,75c06,0,2,f +4811,2447,42,1,f +4811,2447,42,1,t +4811,30171,7,1,f +4811,3022,6,1,f +4811,30304,8,1,f +4811,30568,6,1,f +4811,3626bpb0101,14,1,f +4811,4142693pb1,9999,1,t +4811,970c00,8,1,f +4811,973pb0012c01,8,1,f +4813,12825,72,16,f +4813,2412b,71,10,f +4813,2412b,72,30,f +4813,2431,71,4,f +4813,2431,25,10,f +4813,2431,72,2,f +4813,2431,19,4,f +4813,2432,72,2,f +4813,2436,1,2,f +4813,2436,0,2,f +4813,2458,71,2,f +4813,2540,72,2,f +4813,2540,71,2,f +4813,2654,72,2,f +4813,2723,0,2,f +4813,2877,72,8,f +4813,298c02,71,2,f +4813,298c02,71,1,t +4813,3003,25,2,f +4813,30033,0,2,f +4813,3004,71,4,f +4813,30162,72,2,f +4813,30194,72,4,f +4813,3020,71,2,f +4813,3020,70,8,f +4813,3020,19,1,f +4813,3021,25,20,f +4813,3021,70,1,f +4813,3021,0,4,f +4813,3021,71,10,f +4813,3022,0,4,f +4813,3022,25,4,f +4813,3022,4,1,f +4813,3023,70,8,f +4813,3023,28,8,f +4813,3023,0,2,f +4813,3024,0,8,f +4813,3031,72,1,f +4813,3032,71,8,f +4813,30350b,72,2,f +4813,30357,19,8,f +4813,30360,72,2,f +4813,30364,14,8,f +4813,30367b,25,2,f +4813,30370pr05,71,1,f +4813,30374,297,4,f +4813,30374,71,20,f +4813,30374,41,1,f +4813,30381,70,1,f +4813,30383,71,2,f +4813,30383,72,2,f +4813,30407,14,6,f +4813,30414,0,8,f +4813,30553,71,2,f +4813,30554b,0,2,f +4813,30602,25,1,f +4813,3062b,72,10,f +4813,3062b,0,10,f +4813,3062b,14,2,f +4813,3069b,25,2,f +4813,3069b,71,2,f +4813,3070b,0,1,f +4813,3070b,0,1,t +4813,32000,71,2,f +4813,32009,47,4,f +4813,32039,71,2,f +4813,32062,4,2,f +4813,32064b,72,12,f +4813,32123b,71,1,t +4813,32123b,14,4,f +4813,32123b,71,2,f +4813,32123b,14,2,t +4813,32126,71,2,f +4813,32278,47,6,f +4813,32526,72,2,f +4813,32556,19,16,f +4813,3460,19,4,f +4813,3622,0,4,f +4813,3622,25,2,f +4813,3623,19,2,f +4813,3623,15,4,f +4813,3626bpr0816,78,1,f +4813,3626bpr0817,78,1,f +4813,3665,71,1,f +4813,3666,25,8,f +4813,3666,15,12,f +4813,3702,71,1,f +4813,3706,0,4,f +4813,3710,71,2,f +4813,3710,1,4,f +4813,3713,4,1,t +4813,3713,4,2,f +4813,3794b,0,2,f +4813,3794b,72,1,f +4813,3794b,1,2,f +4813,3794b,14,12,f +4813,3795,25,8,f +4813,3795,71,5,f +4813,3832,71,4,f +4813,3937,0,1,f +4813,3937,71,4,f +4813,3938,71,1,f +4813,3941,25,4,f +4813,3941,72,2,f +4813,3942c,72,2,f +4813,3961,72,2,f +4813,4032a,71,6,f +4813,4085c,0,4,f +4813,4085c,72,4,f +4813,4085c,71,4,f +4813,4150,71,1,f +4813,4150,15,2,f +4813,4185,71,4,f +4813,41879a,379,1,f +4813,41879a,19,2,f +4813,42023,4,2,f +4813,42445,45,3,f +4813,4274,71,4,f +4813,4274,1,12,f +4813,4274,1,1,t +4813,4274,71,1,t +4813,4282,72,1,f +4813,4286,1,1,f +4813,43093,1,2,f +4813,43722,71,2,f +4813,43723,71,2,f +4813,44301a,72,4,f +4813,44302a,0,8,f +4813,44728,72,4,f +4813,4519,71,2,f +4813,45677,72,1,f +4813,4589,25,4,f +4813,47457,72,1,f +4813,47545pr03,378,1,f +4813,47753,25,2,f +4813,48183,72,1,f +4813,48336,0,4,f +4813,4855,72,1,f +4813,4865a,47,2,f +4813,4865a,25,24,f +4813,4871,72,1,f +4813,50231,70,1,f +4813,50950,25,4,f +4813,51739,71,9,f +4813,52107,14,2,f +4813,53989,179,18,f +4813,54200,15,2,f +4813,54200,15,1,t +4813,54200,25,8,f +4813,54200,25,2,t +4813,54383,0,4,f +4813,54384,0,4,f +4813,55981,14,2,f +4813,59230,0,4,f +4813,59230,0,2,t +4813,59443,72,8,f +4813,6019,71,1,f +4813,60208,71,2,f +4813,60470a,71,12,f +4813,60478,14,4,f +4813,60478,71,6,f +4813,60485,71,4,f +4813,6134,4,4,f +4813,6141,297,5,f +4813,6141,71,3,t +4813,6141,70,1,t +4813,6141,4,7,f +4813,6141,4,1,t +4813,6141,71,17,f +4813,6141,70,13,f +4813,6141,297,1,t +4813,61678,19,6,f +4813,6187,71,2,f +4813,6190,72,2,f +4813,6191,25,8,f +4813,6191,0,8,f +4813,63864,72,2,f +4813,63965,297,8,f +4813,63965,71,4,f +4813,64567,80,1,f +4813,64712,25,4,f +4813,6536,72,4,f +4813,6541,72,2,f +4813,6587,28,4,f +4813,6632,71,2,f +4813,75c24,148,4,f +4813,7962stk01,9999,1,t +4813,85984,72,4,f +4813,87083,72,2,f +4813,87087,15,10,f +4813,88293,0,2,f +4813,92593,72,2,f +4813,92754pr01,72,2,f +4813,92755pr01,72,2,f +4813,92759pr0001,379,1,f +4813,970c00,19,1,f +4813,973c54,379,1,f +4813,973pr1802c01,19,1,f +4813,973pr1808c01,19,1,f +4813,973pr1810c01,484,1,f +4814,2357,7,2,f +4814,2362a,42,2,f +4814,2362b,7,2,f +4814,2376,0,1,f +4814,2412b,0,1,f +4814,2412b,379,1,f +4814,2431,320,1,f +4814,2433,0,2,f +4814,2444,0,4,f +4814,2445,0,1,f +4814,2450,8,4,f +4814,2453a,320,2,f +4814,2454a,0,4,f +4814,2456,8,4,f +4814,2476a,8,14,f +4814,2524,8,1,f +4814,2536,7,1,f +4814,2540,8,1,f +4814,2540,379,1,f +4814,2555,0,5,f +4814,2653,8,2,f +4814,2654,0,1,f +4814,2780,0,1,t +4814,2780,0,12,f +4814,2791,0,2,f +4814,30000,8,6,f +4814,3001,379,2,f +4814,30031,0,1,f +4814,3010,7,4,f +4814,30145,19,1,f +4814,30194,8,1,f +4814,3020,8,4,f +4814,3021,320,2,f +4814,3022,1,21,f +4814,3023,320,28,f +4814,3023,6,1,f +4814,3023,19,2,f +4814,30249,0,4,f +4814,30259,320,2,f +4814,30283,7,1,f +4814,30303,7,6,f +4814,30304,8,1,f +4814,3032,8,5,f +4814,3035,7,1,f +4814,30359b,8,2,f +4814,30363,7,4,f +4814,30364,19,2,f +4814,30374,41,1,f +4814,30374,8,7,f +4814,30389b,7,2,f +4814,3039,8,16,f +4814,3048c,7,9,f +4814,30526,19,4,f +4814,30554a,7,6,f +4814,3062b,0,4,f +4814,3062b,7,1,f +4814,3062b,47,1,f +4814,3068b,379,11,f +4814,3069b,27,4,f +4814,3069bpr0070,0,1,f +4814,32028,0,4,f +4814,32064a,7,1,f +4814,3245b,7,2,f +4814,32524,7,4,f +4814,32530,8,12,f +4814,32557,320,4,f +4814,3298,0,6,f +4814,3298,8,8,f +4814,3403,7,1,f +4814,3404,7,1,f +4814,3455,1,2,f +4814,3456,8,1,f +4814,3460,19,4,f +4814,3622,7,2,f +4814,3623,1,10,f +4814,3626b,0,4,f +4814,3660,1,4,f +4814,3665,19,8,f +4814,3666,7,10,f +4814,3676,7,4,f +4814,3684,0,4,f +4814,3700,1,2,f +4814,3705,0,12,f +4814,3709,0,14,f +4814,3710,0,9,f +4814,3738,0,7,f +4814,3747a,379,7,f +4814,3794a,0,6,f +4814,3795,8,3,f +4814,3795,1,3,f +4814,3839b,320,1,f +4814,3933,7,1,f +4814,3933,320,1,f +4814,3934,7,1,f +4814,3934,320,1,f +4814,3937,7,4,f +4814,3938,0,2,f +4814,3958,7,5,f +4814,3958,8,1,f +4814,3960pr0005,7,4,f +4814,4070,8,2,f +4814,4079,0,1,f +4814,4079,1,4,f +4814,4085c,7,2,f +4814,40902,8,12,f +4814,4095,0,1,f +4814,4150,7,2,f +4814,41539,8,4,f +4814,4162,7,4,f +4814,41747,320,1,f +4814,41748,320,1,f +4814,41769,7,1,f +4814,41770,7,1,f +4814,41862,320,1,f +4814,42022,1,2,f +4814,42060,7,2,f +4814,42061,7,2,f +4814,4215b,7,4,f +4814,4215b,42,2,f +4814,42610,320,1,f +4814,4274,7,1,t +4814,4274,7,6,f +4814,4282,8,1,f +4814,4286,379,2,f +4814,4349,0,5,f +4814,43719,7,6,f +4814,43722,8,2,f +4814,43723,8,2,f +4814,44224,0,6,f +4814,44225,7,6,f +4814,44301a,19,10,f +4814,44302a,8,12,f +4814,44358,7,6,f +4814,44359,8,12,f +4814,44375apr01,7,2,f +4814,44567a,7,10,f +4814,4460a,1,2,f +4814,4477,0,4,f +4814,4482stk01,9999,1,t +4814,4515,7,2,f +4814,4589,0,1,f +4814,4589,7,6,f +4814,4716,0,1,f +4814,4733,7,1,f +4814,4735,8,2,f +4814,4740,7,8,f +4814,6016,8,1,f +4814,6069,7,1,f +4814,6106,7,8,f +4814,6112,1,4,f +4814,6112,7,2,f +4814,6120,8,2,f +4814,6134,19,2,f +4814,6141,7,1,f +4814,6141,19,8,f +4814,6141,7,1,t +4814,6141,41,4,f +4814,6141,41,1,t +4814,6141,19,1,t +4814,6179,320,1,f +4814,6538b,7,1,f +4814,6541,19,6,f +4814,6587,8,7,f +4814,6632,0,6,f +4814,970x026,15,4,f +4814,973pr0579c01,15,4,f +4814,bb82pb01,15,4,f +4815,11609,484,1,f +4815,11609,484,1,t +4815,30367c,15,1,f +4815,33291,5,1,f +4815,33291,5,1,t +4815,3899,45,2,f +4815,4032a,308,1,f +4816,73129,7,4,f +4817,11090,72,1,f +4817,11477,15,4,f +4817,14210,15,3,f +4817,14226c31,0,1,f +4817,14518,72,1,f +4817,15573,320,1,f +4817,15712,15,4,f +4817,2412b,320,7,f +4817,2412b,15,4,f +4817,2431,15,1,f +4817,2431,320,2,f +4817,2540,71,4,f +4817,2540,14,2,f +4817,2654,0,3,f +4817,2877,71,2,f +4817,3003,71,1,f +4817,3004,15,2,f +4817,3009,72,2,f +4817,3020,71,2,f +4817,3020,72,2,f +4817,3021,15,2,f +4817,3021,0,2,f +4817,3022,14,1,f +4817,3022,320,1,f +4817,3023,15,2,f +4817,3034,15,1,f +4817,30340,14,1,f +4817,30363,15,2,f +4817,3068b,15,2,f +4817,3069b,0,1,f +4817,3623,320,2,f +4817,3626cpr0893,14,1,f +4817,3626cpr1664,14,1,f +4817,3666,1,1,f +4817,3679,71,2,f +4817,3680,0,2,f +4817,3747a,71,2,f +4817,3795,320,1,f +4817,3795,15,1,f +4817,3829c01,1,1,f +4817,4079,14,1,f +4817,41769,15,1,f +4817,41770,15,1,f +4817,4476b,15,2,f +4817,48336,71,2,f +4817,4865b,40,1,f +4817,6041,0,2,f +4817,60470a,0,2,f +4817,60897,71,2,f +4817,61252,15,1,f +4817,61409,15,2,f +4817,6141,34,2,f +4817,6141,15,1,f +4817,6141,36,3,f +4817,6231,15,2,f +4817,6232,71,2,f +4817,64648,25,2,f +4817,64648,179,1,f +4817,6636,15,2,f +4817,87587pr0001,72,1,f +4817,87990,70,1,f +4817,92280,15,2,f +4817,970c00,28,1,f +4817,970c00,379,1,f +4817,97895,14,2,f +4817,98138,46,3,f +4817,98281,15,1,f +4817,99207,71,2,f +4817,99780,72,1,f +4819,2362a,4,1,f +4819,2431,4,2,f +4819,2452,0,1,f +4819,2488,0,1,f +4819,2490pb01,7,1,f +4819,251,0,1,f +4819,3004,0,1,f +4819,30055,0,1,f +4819,3008,0,2,f +4819,3009,0,1,f +4819,30099,4,4,f +4819,3010,7,6,f +4819,30103,0,2,f +4819,30105,0,1,f +4819,3022,0,1,f +4819,3022,7,2,f +4819,3023,4,1,f +4819,3023,0,1,f +4819,3024,7,2,f +4819,3029,0,1,f +4819,3036,0,1,f +4819,3039,7,1,f +4819,3040b,0,2,f +4819,3040b,7,4,f +4819,3062b,0,4,f +4819,3062b,7,2,f +4819,3069b,14,1,f +4819,3455,7,2,f +4819,3455,4,2,f +4819,3460,7,2,f +4819,3626bp42,14,1,f +4819,3626bpx74,14,1,f +4819,3626bpx97,14,1,f +4819,3679,7,2,f +4819,3680,4,1,f +4819,3684,7,2,f +4819,3710,0,1,f +4819,3710,14,1,f +4819,3710,7,1,f +4819,3794a,14,3,f +4819,3795,4,5,f +4819,3844,0,1,f +4819,3846p4f,7,1,f +4819,3937,14,2,f +4819,3938,4,2,f +4819,3957a,36,1,f +4819,3957a,0,8,f +4819,4081b,14,2,f +4819,4083,0,1,f +4819,4085c,14,2,f +4819,4110165,7,1,f +4819,4276b,4,2,f +4819,4460a,7,2,f +4819,4488,7,4,f +4819,4489a,6,4,f +4819,4493c01pb02,0,1,f +4819,4589,46,2,f +4819,4623,14,1,f +4819,59,383,1,f +4819,60169,8,1,f +4819,6019,7,4,f +4819,6027,0,1,f +4819,6028,0,1,f +4819,6091,7,2,f +4819,6123,8,2,f +4819,6125,4,1,f +4819,6126a,57,3,f +4819,6127,0,1,f +4819,6128,0,1,f +4819,6133,0,4,f +4819,6133,57,2,f +4819,6141,14,2,f +4819,75174,0,1,f +4819,87692,15,1,t +4819,87693,15,1,t +4819,87694,15,1,f +4819,970c00,1,1,f +4819,970x026,8,2,f +4819,973p41c01,4,1,f +4819,973pb0066c01,7,1,f +4819,973px125c01,4,1,f +4819,bb190pb01,7,1,f +4820,3001,1,2,f +4820,3001,4,1,f +4820,3001,15,1,f +4820,3001pr1,14,1,f +4820,3002,15,2,f +4820,3002,4,2,f +4820,3003,4,2,f +4820,3003,15,4,f +4820,3003,1,4,f +4820,3003pe1,14,2,f +4820,4130,14,1,f +4820,4131,4,1,f +4820,4132,14,1,f +4820,4133,4,1,f +4820,4202,2,1,f +4821,10247,72,2,f +4821,11211,71,1,f +4821,11215,0,4,f +4821,11215,71,2,f +4821,11458,72,2,f +4821,11477,4,4,f +4821,11477,72,4,f +4821,12618,0,1,f +4821,13548,71,2,f +4821,14413,71,2,f +4821,14417,72,5,f +4821,14418,71,1,f +4821,14419,72,4,f +4821,14704,71,3,f +4821,14769,72,2,f +4821,14769pr1030,71,3,f +4821,14769pr1032,4,2,f +4821,14769pr1039,4,1,f +4821,15064,0,1,f +4821,15209,0,5,f +4821,15303,57,3,f +4821,15400,72,2,f +4821,15573,272,3,f +4821,15573,4,2,f +4821,15573,71,3,f +4821,15712,71,4,f +4821,16968,0,1,f +4821,16968,71,1,f +4821,17979,57,1,f +4821,18651,0,2,f +4821,18654,72,3,t +4821,18654,72,7,f +4821,18671,72,6,f +4821,18675,57,1,f +4821,18980,71,2,f +4821,22380,191,1,f +4821,22385,179,4,f +4821,22385pr0008,47,1,f +4821,22385pr0034,36,1,f +4821,22385pr0050,57,1,f +4821,22385pr0051,35,1,f +4821,22388,57,2,t +4821,22388,179,10,f +4821,22388,179,1,t +4821,22388,297,2,f +4821,22388,297,1,t +4821,22388,57,6,f +4821,22391,179,2,f +4821,22391,308,1,f +4821,22392,191,4,f +4821,22395,179,1,f +4821,22407,57,2,f +4821,22408,179,1,f +4821,22425,0,1,f +4821,23861,148,1,f +4821,24078,71,2,f +4821,24093pr0007,33,1,f +4821,24101,179,1,f +4821,24104,179,1,f +4821,24128,179,1,f +4821,2412b,57,4,f +4821,2412b,1,3,f +4821,24301pr0001,4,1,f +4821,24305pr0001,4,1,f +4821,2431,71,2,f +4821,2432,14,1,f +4821,24324,297,1,f +4821,2445,72,2,f +4821,2456,71,1,f +4821,2515,148,6,f +4821,2540,72,4,f +4821,2540,4,2,f +4821,2569,57,1,t +4821,2569,57,1,f +4821,2654,182,1,f +4821,2654,71,4,f +4821,2744,1,2,f +4821,2780,0,1,t +4821,2780,0,6,f +4821,2854,19,2,f +4821,2877,72,2,f +4821,30000,72,5,f +4821,3001,14,2,f +4821,3003,0,1,f +4821,3004,272,4,f +4821,3005,71,4,f +4821,3008,1,4,f +4821,3010,272,2,f +4821,30136,72,5,f +4821,30137,71,1,f +4821,3020,0,1,f +4821,3021,272,4,f +4821,3021,4,4,f +4821,3021,72,1,f +4821,3022,4,2,f +4821,3022,72,2,f +4821,3022,14,1,f +4821,3022,1,3,f +4821,3023,4,8,f +4821,3023,191,2,f +4821,3023,72,8,f +4821,3023,308,1,f +4821,3023,71,2,f +4821,3023,14,7,f +4821,30236,72,1,f +4821,30237b,71,5,f +4821,3027,72,1,f +4821,3032,1,2,f +4821,3034,0,3,f +4821,3034,71,1,f +4821,3036,72,1,f +4821,30374,71,1,f +4821,30382,272,2,f +4821,3039,71,1,f +4821,3039,1,2,f +4821,3039pr0018,0,1,f +4821,3040b,272,2,f +4821,30503,1,2,f +4821,30540,1,2,f +4821,30552,0,1,f +4821,30552,71,2,f +4821,30553,71,2,f +4821,3062b,272,4,f +4821,3068b,71,1,f +4821,3068b,72,2,f +4821,3069bpr0164,19,1,f +4821,3070bpr0153,191,1,t +4821,3070bpr0153,191,2,f +4821,32000,72,1,f +4821,32015,71,2,f +4821,32018,0,2,f +4821,32034,0,1,f +4821,32054,71,4,f +4821,32062,4,4,f +4821,32064a,71,2,f +4821,32123b,14,2,t +4821,32123b,14,3,f +4821,32291,72,1,f +4821,32316,1,1,f +4821,32523,72,2,f +4821,32523,14,2,f +4821,32524,71,1,f +4821,32526,1,2,f +4821,32556,19,2,f +4821,33085,72,2,f +4821,3622,1,4,f +4821,3622,71,2,f +4821,3623,1,10,f +4821,3626cpr1784,14,1,f +4821,3626cpr1785,179,2,f +4821,3626cpr1798,4,1,f +4821,3665,72,2,f +4821,3666,1,2,f +4821,3673,71,1,t +4821,3673,71,2,f +4821,3678b,71,2,f +4821,3700,14,2,f +4821,3700,0,1,f +4821,3701,72,2,f +4821,3701,1,2,f +4821,3701,4,2,f +4821,3705,4,1,f +4821,3706,0,3,f +4821,3709,4,1,f +4821,3710,272,2,f +4821,3710,71,1,f +4821,3713,4,1,t +4821,3713,4,2,f +4821,3738,72,1,f +4821,3747b,4,2,f +4821,3749,19,2,f +4821,3788,1,4,f +4821,3795,1,1,f +4821,3795,72,2,f +4821,3829c01,1,1,f +4821,3835,0,2,f +4821,3839b,71,8,f +4821,3895,71,2,f +4821,3941,182,2,f +4821,3941,57,2,f +4821,4006,0,1,f +4821,4032a,4,1,f +4821,4032a,71,2,f +4821,4032a,1,2,f +4821,4032a,0,5,f +4821,42003,71,2,f +4821,4274,1,1,t +4821,4274,1,4,f +4821,4286,72,2,f +4821,43093,1,8,f +4821,43722,1,4,f +4821,43723,1,4,f +4821,44567a,72,2,f +4821,44568,71,2,f +4821,44570,1,2,f +4821,44728,71,2,f +4821,4477,1,2,f +4821,4497,308,1,f +4821,4519,71,2,f +4821,4522,0,1,f +4821,45677,272,2,f +4821,4738a,179,1,f +4821,4739a,57,1,f +4821,4740,57,6,f +4821,47457,71,5,f +4821,48336,71,2,f +4821,48336,1,5,f +4821,4871,0,1,f +4821,4871,272,2,f +4821,4871,4,1,f +4821,48729b,71,4,f +4821,48729b,71,1,t +4821,48933,1,4,f +4821,53451,25,1,t +4821,53451,25,2,f +4821,54200,36,2,f +4821,54200,36,1,t +4821,54200,71,2,f +4821,54200,71,1,t +4821,55981,71,1,f +4821,57520,0,2,f +4821,58176,179,2,f +4821,59443,72,3,f +4821,59900,182,2,f +4821,60470b,4,1,f +4821,60471,0,1,f +4821,60478,72,4,f +4821,60479,71,2,f +4821,6063,72,1,f +4821,6066,272,1,f +4821,60897,71,2,f +4821,6091,4,2,f +4821,61069,272,1,f +4821,6111,72,1,f +4821,6118,148,4,f +4821,61252,1,1,f +4821,61409,72,6,f +4821,6141,15,1,t +4821,6141,182,5,f +4821,6141,57,4,f +4821,6141,72,1,t +4821,6141,57,1,t +4821,6141,71,6,f +4821,6141,72,4,f +4821,6141,182,1,t +4821,6141,71,2,t +4821,6141,15,6,f +4821,61485,0,1,f +4821,63082,71,1,f +4821,63864,1,2,f +4821,63868,71,4,f +4821,63868,1,8,f +4821,64647,182,3,f +4821,64647,182,1,t +4821,64867,182,4,f +4821,6558,1,6,f +4821,6585,0,1,f +4821,6587,28,1,f +4821,6589,19,3,f +4821,6632,14,2,f +4821,6636,71,3,f +4821,84954,272,3,f +4821,85984,71,5,f +4821,87079,71,1,f +4821,87079,1,1,f +4821,87083,72,2,f +4821,87580,72,2,f +4821,87620,1,10,f +4821,87620,71,4,f +4821,87620,14,2,f +4821,88072,72,2,f +4821,88323,72,1,f +4821,89520,179,2,f +4821,89523,72,1,f +4821,92280,71,2,f +4821,92593,71,2,f +4821,92690,71,1,f +4821,92947,71,1,f +4821,93062c02,179,4,f +4821,93273,1,2,f +4821,93273,4,1,f +4821,93273,72,1,f +4821,96874,25,1,t +4821,970c00pr0940,72,1,f +4821,970c00pr0947,0,1,f +4821,973pr3162c01,0,1,f +4821,98138,320,1,f +4821,98138,320,1,t +4821,98313,0,3,f +4821,99021,72,2,f +4821,99206,71,3,f +4821,99207,0,1,f +4821,99780,71,6,f +4821,99780,4,2,f +4821,99781,0,2,f +4822,2357,0,4,f +4822,2412b,7,4,f +4822,2419,0,1,f +4822,2419,4,1,f +4822,2420,7,2,f +4822,2420,0,10,f +4822,2431,4,2,f +4822,2440,0,1,f +4822,2445,0,1,f +4822,2450,0,3,f +4822,2458,0,1,f +4822,2462,0,4,f +4822,2694,41,1,f +4822,2695,7,19,f +4822,2696,0,19,f +4822,2711,0,5,f +4822,2780,0,14,f +4822,2826,41,1,f +4822,298c02,0,1,t +4822,298c02,0,1,f +4822,298c03,0,1,t +4822,298c03,0,2,f +4822,298c03,7,1,t +4822,298c03,7,4,f +4822,3001,0,2,f +4822,3001,7,3,f +4822,3002,4,1,f +4822,3002,7,1,f +4822,3002,0,5,f +4822,3003,0,1,f +4822,3003,4,1,f +4822,3003,7,2,f +4822,3004,0,22,f +4822,3004,7,2,f +4822,3004,4,4,f +4822,3005,7,1,f +4822,3005,0,13,f +4822,3006,7,1,f +4822,3007,0,2,f +4822,3007,7,1,f +4822,3008,0,2,f +4822,3009,0,16,f +4822,3009,7,1,f +4822,3010,7,5,f +4822,3010,0,7,f +4822,3010,4,1,f +4822,3020,4,3,f +4822,3020,0,14,f +4822,3020,7,1,f +4822,3021,7,5,f +4822,3021,14,2,f +4822,3021,0,13,f +4822,3021,4,6,f +4822,3022,4,2,f +4822,3022,7,5,f +4822,3022,0,1,f +4822,3022,14,2,f +4822,3023,4,11,f +4822,3023,0,41,f +4822,3023,7,17,f +4822,3023,14,2,f +4822,3024,0,22,f +4822,3024,7,10,f +4822,3024,4,6,f +4822,3024,7,1,t +4822,3024,4,1,t +4822,3024,0,1,t +4822,3024,46,4,f +4822,3024,46,1,t +4822,3030,0,6,f +4822,3031,7,1,f +4822,3031,0,1,f +4822,3031,4,1,f +4822,3032,0,2,f +4822,3033,0,1,f +4822,3033,7,5,f +4822,3034,7,1,f +4822,3034,0,3,f +4822,3034,4,4,f +4822,3035,0,3,f +4822,3036,0,1,f +4822,3039,7,4,f +4822,3039pc4,0,3,f +4822,3040b,0,13,f +4822,3040b,4,2,f +4822,3040p33,0,2,f +4822,3062b,7,10,f +4822,3062b,36,1,f +4822,3063b,4,2,f +4822,3063b,0,4,f +4822,3065,47,2,f +4822,3068b,7,2,f +4822,3068b,0,2,f +4822,3069b,0,3,f +4822,3069b,7,2,f +4822,3176,0,1,f +4822,3298,4,1,f +4822,3298,0,2,f +4822,3403,0,1,f +4822,3404,0,1,f +4822,3460,7,2,f +4822,3460,4,1,f +4822,3460,0,9,f +4822,3482,7,2,f +4822,3622,0,5,f +4822,3622,7,2,f +4822,3623,0,35,f +4822,3623,4,6,f +4822,3623,7,6,f +4822,3647,7,2,f +4822,3651,7,2,f +4822,3660,4,10,f +4822,3660,7,4,f +4822,3660,0,8,f +4822,3665,4,6,f +4822,3665,7,2,f +4822,3665,0,10,f +4822,3666,4,5,f +4822,3666,0,18,f +4822,3666,7,9,f +4822,3676,4,2,f +4822,3684,7,1,f +4822,3700,0,10,f +4822,3701,0,4,f +4822,3702,0,6,f +4822,3703,0,6,f +4822,3704,0,2,f +4822,3705,0,5,f +4822,3706,0,2,f +4822,3707,0,1,f +4822,3708,0,6,f +4822,3709,0,3,f +4822,3709,4,2,f +4822,3710,7,5,f +4822,3710,0,7,f +4822,3713,7,13,f +4822,3713,7,1,t +4822,3743,7,1,f +4822,3747a,4,5,f +4822,3749,7,7,f +4822,3794a,7,8,f +4822,3794a,0,7,f +4822,3795,0,4,f +4822,3795,7,1,f +4822,3832,7,2,f +4822,3832,0,8,f +4822,3832,4,1,f +4822,3894,0,4,f +4822,3895,0,2,f +4822,3937,0,1,f +4822,3938,0,2,f +4822,3941,4,16,f +4822,3941,0,2,f +4822,3941,7,13,f +4822,3942b,4,4,f +4822,3956,4,4,f +4822,3957a,7,5,f +4822,3958,7,1,f +4822,3959,7,2,f +4822,4032a,7,6,f +4822,4032a,4,4,f +4822,4035,4,2,f +4822,4035,0,2,f +4822,4036,41,4,f +4822,4070,4,8,f +4822,4070,7,12,f +4822,4070,0,7,f +4822,4081b,4,2,f +4822,4081b,7,29,f +4822,4081b,0,12,f +4822,4085c,4,2,f +4822,4085c,0,2,f +4822,4143,7,8,f +4822,4150,0,1,f +4822,4150,7,2,f +4822,4175,7,8,f +4822,4181,0,2,f +4822,4182,0,2,f +4822,4183,41,4,f +4822,4185,7,2,f +4822,4261,7,2,f +4822,4263,0,1,f +4822,4265b,7,1,t +4822,4265b,7,19,f +4822,4273b,7,2,f +4822,4274,7,8,f +4822,4274,7,1,t +4822,4275b,7,2,f +4822,4275b,14,4,f +4822,4275b,4,6,f +4822,4276b,4,4,f +4822,4276b,14,4,f +4822,4282,7,2,f +4822,4286,0,9,f +4822,4287,4,2,f +4822,4287,0,20,f +4822,4287,7,2,f +4822,4349,7,3,f +4822,4442,7,3,f +4822,4460a,0,2,f +4822,4477,7,3,f +4822,4477,0,13,f +4822,4477,4,1,f +4822,4519,0,1,f +4822,4531,7,2,f +4822,4531,4,2,f +4822,4599a,7,1,t +4822,4599a,7,6,f +4822,4623,0,2,f +4822,4740,7,2,f +4822,4864a,41,7,f +4822,5590stk01,9999,1,t +4822,6141,47,9,f +4822,6141,7,6,f +4822,6141,47,1,t +4822,6141,46,14,f +4822,6141,36,8,f +4822,73590c01a,7,4,f +4824,3034,15,8,f +4827,3185,4,13,f +4827,3186,4,2,f +4827,3187,4,2,f +4828,2362b,0,2,f +4828,2412b,19,2,f +4828,2419,72,2,f +4828,2431,71,2,f +4828,2447,0,1,t +4828,2447,0,4,f +4828,2458,72,1,f +4828,2654,72,4,f +4828,298c02,0,1,f +4828,298c02,0,1,t +4828,3020,72,2,f +4828,3021,15,1,f +4828,30359b,0,1,f +4828,3036,0,2,f +4828,3040b,19,2,f +4828,3045,71,2,f +4828,3062b,41,1,f +4828,3069b,0,1,f +4828,3623,72,2,f +4828,3626bpr0513,78,4,f +4828,3679,71,1,f +4828,3680,0,1,f +4828,3710,72,2,f +4828,3794a,15,2,f +4828,4085c,72,4,f +4828,41747,71,1,f +4828,41748,71,1,f +4828,42022,15,2,f +4828,44126,72,1,f +4828,4445,71,2,f +4828,4460b,71,4,f +4828,4740,15,1,f +4828,55981,71,1,f +4828,57899,0,2,f +4828,58247,0,2,f +4828,60474,71,1,f +4828,61182,15,4,f +4828,6141,72,4,f +4828,6141,72,1,t +4828,6238,40,1,f +4828,970c00,71,4,f +4828,973pr1355c01,0,4,f +4829,2357,19,4,f +4829,2376,0,1,f +4829,2412b,379,2,f +4829,2412b,484,8,f +4829,2412b,72,15,f +4829,2419,72,4,f +4829,2420,72,11,f +4829,2431,0,1,f +4829,2431,19,6,f +4829,2456,14,1,f +4829,2460,72,3,f +4829,2476a,70,18,f +4829,2555,19,11,f +4829,2654,19,29,f +4829,2654,71,1,f +4829,2723,0,10,f +4829,2817,14,3,f +4829,2876,71,1,f +4829,298c02,71,4,f +4829,2991,0,10,f +4829,3001,0,27,f +4829,3002,320,2,f +4829,3003,484,7,f +4829,30031,0,1,f +4829,3008,72,8,f +4829,3009,71,23,f +4829,3010,72,6,f +4829,30136,19,18,f +4829,30154,72,2,f +4829,30162,72,2,f +4829,3020,19,7,f +4829,3021,72,33,f +4829,3022,19,14,f +4829,3023,47,2,f +4829,3023,320,33,f +4829,3023,72,2,f +4829,30287pr01,272,1,f +4829,3029,71,1,f +4829,30303,71,4,f +4829,30304,72,1,f +4829,3031,72,16,f +4829,3032,71,12,f +4829,3034,19,2,f +4829,30365,71,1,f +4829,3037,71,2,f +4829,30373,19,1,f +4829,30374,71,4,f +4829,3038,72,4,f +4829,30383,0,2,f +4829,30387,71,8,f +4829,30388,71,20,f +4829,3039,19,11,f +4829,3039pr0008,0,1,f +4829,3040b,19,24,f +4829,3045,71,2,f +4829,30503,72,2,f +4829,30526,1,4,f +4829,30541,0,1,f +4829,30553,0,2,f +4829,30565,71,16,f +4829,30592,71,1,f +4829,3062b,19,14,f +4829,3062b,0,3,f +4829,3063b,71,16,f +4829,30663,14,2,f +4829,3068b,72,26,f +4829,3069bp51,0,1,f +4829,3069bpr0090,72,3,f +4829,3176,320,1,f +4829,32000,71,4,f +4829,32018,71,2,f +4829,32028,71,2,f +4829,32064b,0,6,f +4829,32065,71,1,f +4829,32073,71,2,f +4829,32126,0,1,f +4829,3455,0,1,f +4829,3460,72,4,f +4829,3622,71,11,f +4829,3623,19,7,f +4829,3626b,41,5,f +4829,3626bpr0342,78,1,f +4829,3660,72,12,f +4829,3665,72,14,f +4829,3666,0,5,f +4829,3676,19,6,f +4829,3678b,71,20,f +4829,3679,71,3,f +4829,3680,0,3,f +4829,3700,72,1,f +4829,3701,0,1,f +4829,3702,0,2,f +4829,3709,0,1,f +4829,3710,72,12,f +4829,3713,0,1,f +4829,3747b,71,7,f +4829,3794a,72,10,f +4829,3795,71,6,f +4829,3821,72,1,f +4829,3822,72,1,f +4829,3894,72,5,f +4829,3933,71,8,f +4829,3934,71,8,f +4829,3937,0,1,f +4829,3938,19,1,f +4829,3940b,72,8,f +4829,3941,71,2,f +4829,3958,71,3,f +4829,3960pb010,47,1,f +4829,4032a,0,1,f +4829,4079,484,4,f +4829,4083,19,4,f +4829,4150pr0021,71,2,f +4829,4150pr0022,71,2,f +4829,4150ps3,0,1,f +4829,4151,72,2,f +4829,41539,72,10,f +4829,4274,1,1,t +4829,4274,1,6,f +4829,4287,71,1,f +4829,43093,1,10,f +4829,4345b,71,1,f +4829,4346,47,1,f +4829,43719,72,5,f +4829,43720,19,1,f +4829,43721,19,1,f +4829,43898,72,1,f +4829,44375a,72,1,f +4829,4445,71,4,f +4829,44661,72,4,f +4829,44728,72,6,f +4829,44938,484,1,f +4829,45410,71,1,f +4829,45411,71,1,f +4829,45677,72,1,f +4829,4589,72,4,f +4829,4590,72,2,f +4829,4599a,320,8,f +4829,4623,0,6,f +4829,4733,0,3,f +4829,47397,71,12,f +4829,47398,71,12,f +4829,4740,0,2,f +4829,4740,41,1,f +4829,47543,71,1,f +4829,47543pb01,47,1,f +4829,48092,71,8,f +4829,48336,19,24,f +4829,4864b,15,2,f +4829,55295,0,1,f +4829,55296,0,1,f +4829,55297,0,1,f +4829,55298,0,1,f +4829,55299,0,1,f +4829,55300,0,1,f +4829,6019,71,35,f +4829,6091,71,3,f +4829,6141,14,5,f +4829,6141,72,6,f +4829,6141,72,1,t +4829,6141,14,1,t +4829,6177,71,1,f +4829,6179,0,1,f +4829,6541,19,2,f +4829,6564,72,1,f +4829,6565,72,1,f +4829,6587,72,1,f +4829,6636,71,27,f +4829,78c06,143,2,f +4829,78c31,143,1,f +4832,kk2wb,89,1,f +4835,14226c41,0,1,f +4835,2335p01,15,1,f +4835,2375,0,1,f +4835,2412b,0,2,f +4835,2412b,15,7,f +4835,2417,2,1,f +4835,2420,1,4,f +4835,2431,15,4,f +4835,2431p12,15,1,f +4835,2432,0,1,f +4835,2432,15,3,f +4835,2444,14,2,f +4835,2446,0,4,f +4835,2462,4,4,f +4835,2464,15,4,f +4835,2467,15,4,f +4835,2540,4,4,f +4835,2547,15,1,f +4835,2547,7,1,f +4835,2548,15,1,f +4835,2564,0,1,f +4835,2569,4,1,f +4835,2610,14,2,f +4835,2625,1,1,f +4835,2626,15,2,f +4835,2627,15,1,f +4835,2654,0,7,f +4835,2921,0,2,f +4835,298c05,1,1,f +4835,298c05,1,1,t +4835,3001,7,4,f +4835,3003,7,6,f +4835,3004,15,4,f +4835,3004,4,2,f +4835,3004,14,1,f +4835,3004,1,2,f +4835,3005,15,2,f +4835,3006,1,1,f +4835,30079,15,4,f +4835,30079,14,2,f +4835,30080,14,4,f +4835,30080,15,4,f +4835,30082,8,2,f +4835,30083,41,3,f +4835,30084,0,2,f +4835,30085,7,1,f +4835,30088,14,2,f +4835,30089,14,1,f +4835,3009,15,3,f +4835,30090,47,4,f +4835,30091,7,4,f +4835,30092,14,2,f +4835,30093,2,7,f +4835,3010,1,6,f +4835,3010,4,3,f +4835,3010,7,1,f +4835,3010,15,3,f +4835,30104,0,1,f +4835,3020,14,1,f +4835,3020,15,1,f +4835,3020,1,2,f +4835,3020,7,2,f +4835,3022,14,1,f +4835,3022,0,2,f +4835,3023,0,4,f +4835,3023,1,6,f +4835,3023,15,1,f +4835,3028,1,1,f +4835,3030,14,1,f +4835,3031,15,4,f +4835,3032,15,1,f +4835,3033,7,1,f +4835,3034,15,1,f +4835,3039,7,2,f +4835,3039p58,15,1,f +4835,3039pr0005,15,1,f +4835,3068b,0,1,f +4835,3068bp30,15,1,f +4835,3068bpx10,0,1,f +4835,3068bpx11,0,1,f +4835,3068bpx12,0,1,f +4835,3069bp61,15,1,f +4835,3069bp68,15,1,f +4835,3069bp81,14,1,f +4835,3069bpc2,14,1,f +4835,3070b,36,6,f +4835,3070b,34,2,f +4835,3127,7,1,f +4835,3307,15,2,f +4835,3475a,0,2,f +4835,3479,15,2,f +4835,3613,14,2,f +4835,3622,15,4,f +4835,3622,1,2,f +4835,3623,0,2,f +4835,3626bpx24,14,1,f +4835,3626bpx25,14,2,f +4835,3626bpx26,14,1,f +4835,3626bpx27,14,1,f +4835,3633,0,2,f +4835,3660,15,10,f +4835,3660,7,1,f +4835,3660,14,7,f +4835,3665,14,4,f +4835,3665,15,2,f +4835,3666,1,3,f +4835,3666,15,4,f +4835,3679,7,1,f +4835,3680,15,1,f +4835,3684,7,2,f +4835,37,383,2,f +4835,3710,1,3,f +4835,3710,15,4,f +4835,3741,2,2,f +4835,3747b,1,4,f +4835,3749,7,1,f +4835,3794a,0,3,f +4835,3829c01,1,1,f +4835,3830,4,1,f +4835,3830,1,1,f +4835,3831,4,1,f +4835,3831,1,1,f +4835,3839b,0,1,f +4835,3857,19,2,f +4835,3937,0,7,f +4835,3938,14,7,f +4835,3940b,0,10,f +4835,3941,0,2,f +4835,3957a,0,1,f +4835,3958,1,1,f +4835,4032a,7,4,f +4835,4032a,2,3,f +4835,4070,0,3,f +4835,4079,1,2,f +4835,4085c,15,2,f +4835,4085c,1,6,f +4835,4150p01,15,1,f +4835,4175,0,1,f +4835,4176,41,1,f +4835,4213,15,4,f +4835,4286,15,2,f +4835,4286,7,4,f +4835,4315,15,6,f +4835,4315,14,1,f +4835,4345b,14,2,f +4835,4346,14,2,f +4835,4460b,15,4,f +4835,4485,0,5,f +4835,4531,7,1,f +4835,4589,14,1,f +4835,4623,1,6,f +4835,4740,7,1,f +4835,4790,6,1,f +4835,4864a,33,1,f +4835,4871,14,1,f +4835,56823,0,1,f +4835,57503,334,1,f +4835,57504,334,1,f +4835,57505,334,1,f +4835,57506,334,1,f +4835,59275,0,4,f +4835,59275,4,4,f +4835,6019,15,6,f +4835,6040,0,1,f +4835,6041,4,1,f +4835,6048a,0,4,f +4835,6083,8,1,f +4835,6086,0,1,f +4835,6108,7,1,f +4835,6112,1,2,f +4835,6112,15,2,f +4835,6140,7,3,f +4835,6141,47,2,f +4835,6141,42,18,f +4835,6217,0,2,f +4835,6228b,7,1,f +4835,6441stk01,9999,1,t +4835,71155,0,1,f +4835,73037,7,1,f +4835,75535,14,2,f +4835,970c00,4,1,f +4835,970c00,0,2,f +4835,970x021,0,1,f +4835,970x026,4,1,f +4835,973px51c01,4,2,f +4835,973px52c01,4,2,f +4835,973px52c02,4,1,f +4836,3003,70,1,f +4836,3004,30,1,f +4836,30162,72,1,f +4836,3020,30,1,f +4836,3023,70,3,f +4836,3023,15,1,f +4836,3069b,322,1,f +4836,33183,10,1,f +4836,33291,10,2,f +4836,4865b,322,1,f +4836,6091,71,1,f +4836,87087,15,1,f +4836,87552,19,2,f +4836,93549pat01,47,1,f +4836,98138,41,1,f +4838,3004,1,4,f +4838,813a,7,1,f +4838,815c01,15,1,f +4838,815c02,15,1,f +4840,2412b,0,6,f +4840,2431,15,2,f +4840,2444,4,2,f +4840,2654,47,2,f +4840,2780,0,95,f +4840,2819,71,1,f +4840,2850a,71,4,f +4840,2851,14,4,f +4840,2852,71,4,f +4840,2853,14,2,f +4840,2854,72,1,f +4840,3022,71,1,f +4840,3023,4,2,f +4840,3034,0,1,f +4840,32005b,72,2,f +4840,32009,0,4,f +4840,32009,4,2,f +4840,32013,0,14,f +4840,32014,0,2,f +4840,32016,0,6,f +4840,32034,4,4,f +4840,32039,0,5,f +4840,32054,4,12,f +4840,32054,0,6,f +4840,32062,4,9,f +4840,32064b,4,1,f +4840,32072,14,2,f +4840,32073,71,10,f +4840,32123b,14,2,f +4840,32126,71,4,f +4840,32138,0,2,f +4840,32140,1,4,f +4840,32184,71,7,f +4840,32269,0,2,f +4840,32278,0,5,f +4840,32278,4,4,f +4840,32316,0,10,f +4840,32316,71,4,f +4840,32316,1,4,f +4840,32333,0,2,f +4840,32348,0,2,f +4840,32449,4,2,f +4840,32523,0,2,f +4840,32524,0,4,f +4840,32524,4,2,f +4840,32525,0,4,f +4840,32526,4,4,f +4840,32526,0,8,f +4840,32556,19,2,f +4840,33299a,71,2,f +4840,3647,72,1,f +4840,3666,4,1,f +4840,3701,0,1,f +4840,3705,0,7,f +4840,3708,0,1,f +4840,3713,71,6,f +4840,3749,19,2,f +4840,3894,4,2,f +4840,4019,71,2,f +4840,4032a,0,2,f +4840,40490,71,2,f +4840,40490,4,2,f +4840,41239,0,5,f +4840,41239,4,2,f +4840,41669,0,2,f +4840,41669,36,2,f +4840,41677,0,6,f +4840,42003,0,5,f +4840,4274,1,4,f +4840,43093,1,30,f +4840,44294,71,1,f +4840,4519,71,30,f +4840,56908,71,4,f +4840,59426,72,2,f +4840,59443,0,20,f +4840,60483,0,6,f +4840,60485,71,4,f +4840,6141,47,2,f +4840,61480,0,4,f +4840,61903,71,1,f +4840,62462,0,10,f +4840,62821,72,1,f +4840,63869,71,4,f +4840,64178,71,1,f +4840,64179,71,2,f +4840,64391,0,1,f +4840,64392,0,2,f +4840,64682,0,2,f +4840,64683,0,1,f +4840,64782,0,1,f +4840,6536,0,12,f +4840,6536,71,6,f +4840,6542a,72,1,f +4840,6558,1,57,f +4840,6571,0,2,f +4840,6572,71,4,f +4840,6574,0,1,f +4840,6587,28,10,f +4840,6589,19,3,f +4840,6632,71,8,f +4840,75c13,0,1,f +4840,76138,71,3,f +4840,87080,0,3,f +4840,87083,72,3,f +4840,87086,0,3,f +4841,fab12d,9999,1,f +4841,u9204c01,4,1,f +4844,2412b,71,1,f +4844,2436,15,1,f +4844,2445,15,2,f +4844,3001,29,4,f +4844,3001,85,4,f +4844,3003,85,4,f +4844,3003,29,5,f +4844,3003pr0002,15,1,f +4844,3004,29,10,f +4844,3004,5,4,f +4844,3004,85,4,f +4844,30044,15,2,f +4844,3005,29,4,f +4844,3005,5,4,f +4844,3010,25,4,f +4844,3010,85,4,f +4844,3010,5,4,f +4844,3010,29,8,f +4844,3020,25,3,f +4844,3020,15,1,f +4844,3020,2,2,f +4844,3020,27,2,f +4844,3022,15,1,f +4844,3022,27,2,f +4844,3023,15,4,f +4844,3023,30,4,f +4844,3023,0,4,f +4844,3028,10,1,f +4844,3031,27,1,f +4844,3034,0,1,f +4844,3037,26,10,f +4844,3039,2,2,f +4844,3039,15,1,f +4844,3039,26,4,f +4844,3040b,25,2,f +4844,3040b,5,2,f +4844,3062b,27,2,f +4844,3062b,34,1,f +4844,33125,484,1,f +4844,33291,10,1,t +4844,33291,10,4,f +4844,33291,5,1,t +4844,33291,5,4,f +4844,3460,30,2,f +4844,3622,5,4,f +4844,3622,25,4,f +4844,3659,5,2,f +4844,3659,85,4,f +4844,3684,2,2,f +4844,3710,30,9,f +4844,3710,15,2,f +4844,3710,0,1,f +4844,3795,30,2,f +4844,3823,47,1,f +4844,3829c01,15,1,f +4844,3899,45,1,f +4844,3941,70,3,f +4844,4490,15,2,f +4844,4589,34,1,f +4844,4600,71,2,f +4844,4623,15,1,f +4844,4624,15,4,f +4844,4727,10,2,f +4844,4728,15,2,f +4844,54200,15,1,t +4844,54200,2,4,f +4844,54200,36,1,t +4844,54200,15,2,f +4844,54200,2,1,t +4844,54200,36,2,f +4844,60598,85,2,f +4844,60599,85,1,f +4844,60607,15,4,f +4844,60623,15,1,f +4844,6141,29,1,t +4844,6141,14,4,f +4844,6141,25,1,t +4844,6141,46,2,f +4844,6141,29,4,f +4844,6141,70,1,t +4844,6141,14,1,t +4844,6141,46,1,t +4844,6141,25,4,f +4844,6141,70,2,f +4844,6256,191,2,f +4844,87414,0,4,f +4844,96874,25,1,t +4845,10201,4,1,f +4845,11303,4,1,f +4845,11477,71,11,f +4845,14769,4,1,f +4845,15068,484,1,f +4845,15332,0,4,f +4845,15573,71,9,f +4845,15672,70,2,f +4845,15712,0,3,f +4845,18649,71,2,f +4845,18674,72,1,f +4845,2357,73,5,f +4845,2412b,0,8,f +4845,2420,15,3,f +4845,2431,72,4,f +4845,2540,71,2,f +4845,2780,0,1,t +4845,2780,0,1,f +4845,3004,73,15,f +4845,3004,15,6,f +4845,3004,484,28,f +4845,3005,14,1,f +4845,3005,73,14,f +4845,3005,15,2,f +4845,3005,19,2,f +4845,3005,484,22,f +4845,3009,484,4,f +4845,3010,73,9,f +4845,3010,19,1,f +4845,3010,15,3,f +4845,3020,28,3,f +4845,3020,72,3,f +4845,3020,15,2,f +4845,3022,71,4,f +4845,3022,484,3,f +4845,3023,15,3,f +4845,3023,29,1,f +4845,3023,72,6,f +4845,3023,73,6,f +4845,3023,19,5,f +4845,30236,72,6,f +4845,3024,72,1,t +4845,3024,19,2,f +4845,3024,72,5,f +4845,3024,19,1,t +4845,3030,72,1,f +4845,3031,72,2,f +4845,3034,71,4,f +4845,30377,0,1,t +4845,30377,0,2,f +4845,3040bpr0003,71,1,f +4845,30414,71,1,f +4845,3062b,46,2,f +4845,3062b,4,2,f +4845,3069b,46,2,f +4845,3069b,19,4,f +4845,32000,71,3,f +4845,32028,72,6,f +4845,33291,10,2,f +4845,33291,10,1,t +4845,3622,71,1,f +4845,3623,15,4,f +4845,3626bpr0645,14,1,f +4845,3626cpr1635,14,1,f +4845,3633,0,5,f +4845,3665,71,14,f +4845,3666,72,2,f +4845,3666,73,2,f +4845,3710,71,4,f +4845,3710,73,2,f +4845,3710,72,9,f +4845,3822,14,1,f +4845,3830,15,2,f +4845,3830,71,1,f +4845,3831,15,2,f +4845,3831,71,1,f +4845,3832,15,2,f +4845,4032a,2,2,f +4845,4032a,0,1,f +4845,4070,71,8,f +4845,4070,4,1,f +4845,41539,71,3,f +4845,41879a,1,1,f +4845,43093,1,1,f +4845,4477,72,2,f +4845,4477,15,3,f +4845,4510,72,2,f +4845,4733,0,1,f +4845,48336,19,1,f +4845,49668,191,1,f +4845,49668,15,2,f +4845,54200,71,10,f +4845,54200,4,1,f +4845,54200,71,1,t +4845,54200,4,1,t +4845,59900,182,1,f +4845,59900,320,1,f +4845,59900,0,4,f +4845,6020,0,2,f +4845,60470a,0,1,f +4845,60475b,71,2,f +4845,60593,0,3,f +4845,60593,15,5,f +4845,60594,0,3,f +4845,60596,0,2,f +4845,60596,15,1,f +4845,60602,47,8,f +4845,60603,47,3,f +4845,60616a,47,1,f +4845,60623,14,1,f +4845,60797c02,0,1,f +4845,6091,15,4,f +4845,6091,4,4,f +4845,6141,0,1,t +4845,6141,179,5,f +4845,6141,14,1,t +4845,6141,182,1,t +4845,6141,2,6,f +4845,6141,2,1,t +4845,6141,179,1,t +4845,6141,0,6,f +4845,6141,14,3,f +4845,6141,29,2,f +4845,6141,29,1,t +4845,6141,182,2,f +4845,63864,71,8,f +4845,63868,0,1,f +4845,64644,0,9,f +4845,6636,72,3,f +4845,85975,320,1,f +4845,87079,4,1,f +4845,87552,47,2,f +4845,87580,72,4,f +4845,87618,0,1,f +4845,87990,84,1,f +4845,87994,0,2,f +4845,87994,0,1,t +4845,93273,19,2,f +4845,93274,14,1,f +4845,970c00,15,1,f +4845,973pr0070c01,326,1,f +4845,973pr2500c01,1,1,f +4845,98138,4,5,f +4845,98138,4,1,t +4845,98138pr0012,179,1,f +4845,98138pr0012,179,1,t +4845,98283,28,4,f +4845,99206,0,3,f +4845,99780,72,3,f +4846,30173b,148,2,f +4846,30174pr0001,320,1,f +4846,3626cpr1548,14,1,f +4846,88646,0,1,f +4846,93217,0,1,f +4846,970c00pr0757,72,1,f +4846,973pr2840c01,4,1,f +4847,2343,7,3,f +4847,2412b,4,1,f +4847,2412b,14,2,f +4847,2431p06,1,2,f +4847,2436,4,1,f +4847,2445,0,1,f +4847,2446,1,1,f +4847,2447,41,1,f +4847,2877,4,2,f +4847,2877,15,2,f +4847,3020,1,1,f +4847,3020,4,1,f +4847,3021,1,1,f +4847,3022,4,1,f +4847,3022,15,1,f +4847,3022,7,1,f +4847,3023,7,1,f +4847,3023,15,1,f +4847,3024,36,2,f +4847,3024,1,2,f +4847,3031,4,1,f +4847,3062b,7,4,f +4847,3070b,14,2,f +4847,3460,1,4,f +4847,3626bpr0001,14,1,f +4847,3665,4,4,f +4847,3710,7,1,f +4847,3710,4,2,f +4847,3794a,0,2,f +4847,3821,15,1,f +4847,3822,15,1,f +4847,3823,41,1,f +4847,3829c01,4,1,f +4847,3937,7,2,f +4847,3938,14,2,f +4847,3941,7,1,f +4847,4070,15,4,f +4847,4150p01,15,1,f +4847,4211,1,1,f +4847,4213,15,1,f +4847,4214,15,1,f +4847,4286,15,2,f +4847,4595,7,1,f +4847,4600,0,2,f +4847,6014a,15,4,f +4847,6015,0,4,f +4847,970c00,15,1,f +4847,973p14c01,15,1,f +4848,2780,0,2,f +4848,2780,0,1,t +4848,32062,4,2,f +4848,32173,14,2,f +4848,32316,14,1,f +4848,41669,57,2,f +4848,4274,71,1,t +4848,4274,71,2,f +4848,43093,1,2,f +4848,4519,71,3,f +4848,45749,14,4,f +4848,47332,0,1,f +4848,53451,4,1,t +4848,53451,4,4,f +4848,55615,71,1,f +4848,60176,0,6,f +4848,60895,0,1,f +4848,61053,0,2,f +4848,61054,0,4,f +4848,61793pat0002,14,1,f +4848,61799,135,2,f +4848,61805,135,2,f +4848,61806,135,2,f +4848,61808,135,1,f +4848,61810,4,1,f +4848,61811,27,2,f +4848,63153,179,2,f +4848,6587,72,2,f +4849,2540,0,1,f +4849,3005,0,4,f +4849,3034,2,2,f +4849,3040b,0,2,f +4849,3626bp42,14,1,f +4849,3659,0,1,f +4849,3896,8,1,f +4849,4085c,0,2,f +4849,4150p40,14,1,f +4849,4497,6,1,f +4849,4498,6,1,f +4849,4499,6,1,f +4849,6019,4,1,f +4849,6064,2,1,f +4849,970x026,7,1,f +4849,973p41c01,4,1,f +4854,11215,71,1,f +4854,15068,15,1,f +4854,15573,15,1,f +4854,15573,320,1,f +4854,15712,72,2,f +4854,18677,71,4,f +4854,2412b,71,1,f +4854,2877,0,2,f +4854,298c02,71,2,f +4854,298c02,71,1,t +4854,3004,71,1,f +4854,3021,15,1,f +4854,3022,72,2,f +4854,3022,15,1,f +4854,3023,15,7,f +4854,3023,27,1,f +4854,3024,320,1,t +4854,3024,320,2,f +4854,3034,72,1,f +4854,3623,15,4,f +4854,3626cpr1149,78,1,f +4854,3660,15,1,f +4854,3706,0,2,f +4854,3795,15,1,f +4854,3941,15,2,f +4854,3942c,320,2,f +4854,3956,71,2,f +4854,4070,15,2,f +4854,43722,15,3,f +4854,43723,15,3,f +4854,48336,71,2,f +4854,54200,40,1,t +4854,54200,15,2,f +4854,54200,15,1,t +4854,54200,40,1,f +4854,59900,35,2,f +4854,6091,15,2,f +4854,61184,71,2,f +4854,61189pr0016,15,1,f +4854,6141,0,2,f +4854,6141,71,2,f +4854,6141,47,1,t +4854,6141,71,1,t +4854,6141,47,4,f +4854,6141,0,1,t +4854,63868,72,6,f +4854,64567,71,2,f +4854,64567,71,1,t +4854,85984,15,2,f +4854,87087,27,2,f +4854,92738,0,1,f +4854,92946,72,2,f +4854,92947,0,2,f +4854,970c00pr0631,15,1,f +4854,973pr2384c01,15,1,f +4854,98100,15,2,f +4854,98138,179,1,t +4854,98138,179,2,f +4854,98138pr0020,71,1,t +4854,98138pr0020,71,2,f +4854,99207,0,6,f +4856,10055pr0001,484,1,f +4856,10055pr0001,226,1,f +4856,11908,84,1,f +4856,11908,0,1,f +4856,12547,15,2,f +4856,12825,0,2,f +4856,2339,0,1,f +4856,2357,0,2,f +4856,2417,320,2,f +4856,2420,0,6,f +4856,2420,72,8,f +4856,3004,70,4,f +4856,3005,72,8,f +4856,30099,0,3,f +4856,3010,70,1,f +4856,30136,308,8,f +4856,3020,0,4,f +4856,3021,0,2,f +4856,3022,72,3,f +4856,3023,0,6,f +4856,3023,320,4,f +4856,3023,72,2,f +4856,3023,70,6,f +4856,30238,0,2,f +4856,30238,1000,1,f +4856,3024,320,8,f +4856,3024,320,1,t +4856,3024,0,1,t +4856,3024,0,3,f +4856,3032,0,2,f +4856,3034,0,2,f +4856,30363,0,2,f +4856,3040b,308,9,f +4856,30503,0,3,f +4856,30552,0,16,f +4856,3069b,72,2,f +4856,32000,0,4,f +4856,32064a,320,1,f +4856,32073,71,1,f +4856,3622,72,1,f +4856,3623,72,7,f +4856,3626bpr0895,15,3,f +4856,3626cpr1108,78,1,f +4856,3626cpr1110,78,1,f +4856,3626cpr1112,78,1,f +4856,3626cpr1116,78,1,f +4856,3659,0,3,f +4856,3665,308,2,f +4856,3673,71,2,f +4856,3673,71,1,t +4856,3684,72,1,f +4856,3700,72,1,f +4856,3710,0,2,f +4856,3713,4,1,f +4856,3713,4,1,t +4856,4032a,0,2,f +4856,4085c,72,4,f +4856,41879a,308,1,f +4856,41879a,0,1,f +4856,42022,0,2,f +4856,4286,0,7,f +4856,44302a,70,16,f +4856,44728,0,3,f +4856,4498,70,2,f +4856,4499,70,2,f +4856,4740pr0006,28,1,t +4856,4740pr0006,28,2,f +4856,47753,0,4,f +4856,48336,0,2,f +4856,4855,0,2,f +4856,53451,0,1,t +4856,53451,0,4,f +4856,54200,320,7,f +4856,54200,320,1,t +4856,55236,70,3,f +4856,55236,70,1,t +4856,59443,70,1,f +4856,59900,19,2,f +4856,60475a,0,1,f +4856,60477,308,2,f +4856,60481,308,3,f +4856,6091,0,2,f +4856,61252,0,2,f +4856,6141,1000,6,f +4856,6141,1000,2,t +4856,6141,0,1,t +4856,6141,0,8,f +4856,63868,0,4,f +4856,85984,0,3,f +4856,87079,0,1,f +4856,87083,72,1,f +4856,87087,320,2,f +4856,87747,0,16,f +4856,87747,0,1,t +4856,88288pat0001,297,1,t +4856,88288pat0001,297,2,f +4856,88292,0,2,f +4856,90194,72,2,f +4856,90981,15,1,f +4856,93160,15,2,f +4856,93160,15,1,t +4856,93231,70,1,f +4856,95673,179,2,f +4856,970c00pr0455,308,2,f +4856,973pr2216c01,308,1,f +4856,973pr2218c01,308,1,f +4856,973pr2278c01,308,1,f +4856,973pr2294c01,70,1,f +4856,99207,71,1,f +4857,2400,6,2,f +4857,2446,4,2,f +4857,2456,7,2,f +4857,2465,0,2,f +4857,2470,6,8,f +4857,2554,6,2,f +4857,2570,8,2,f +4857,2586p4d,15,2,f +4857,2586p4f,7,2,f +4857,2588,21,2,f +4857,2594,0,2,f +4857,3001,7,8,f +4857,3001,4,8,f +4857,3001,0,8,f +4857,3003,7,12,f +4857,3003,0,12,f +4857,3004,6,2,f +4857,3004,0,2,f +4857,3006,7,2,f +4857,3007,0,4,f +4857,30072,2,2,f +4857,30077,4,4,f +4857,3008,0,4,f +4857,3008,7,4,f +4857,3009,4,6,f +4857,3010,0,6,f +4857,3010,7,6,f +4857,30100,8,4,f +4857,30101,8,2,f +4857,30102,8,2,f +4857,30105,0,2,f +4857,30106,47,2,f +4857,30139,6,2,f +4857,30145,4,6,f +4857,30277,0,2,f +4857,3032,4,2,f +4857,3035,7,2,f +4857,3307,14,6,f +4857,3308,0,4,f +4857,3308,7,4,f +4857,3581,4,4,f +4857,3626b,0,2,f +4857,3626bpr0895,15,2,f +4857,3626bpx122,14,2,f +4857,3626bpx20,14,2,f +4857,3626bpx54,14,2,f +4857,3626bpx74,14,2,f +4857,3626bpx96,14,2,f +4857,3659,4,6,f +4857,3678ap01,0,2,f +4857,3846p4d,15,2,f +4857,3846p4f,7,2,f +4857,3847,8,2,f +4857,3849,8,2,f +4857,3849,0,2,f +4857,3942c,4,4,f +4857,3957a,0,2,f +4857,3957a,36,2,f +4857,3957a,7,2,f +4857,4071,0,2,f +4857,4151,8,2,f +4857,4204,2,2,f +4857,4332,6,2,f +4857,4444,7,6,f +4857,4444p08,0,4,f +4857,4491b,4,2,f +4857,4491b,1,2,f +4857,4493c01pb01,6,2,f +4857,4493c01pb02,0,2,f +4857,4495b,4,2,f +4857,4495b,14,2,f +4857,4497,6,2,f +4857,4497,0,2,f +4857,4611,8,2,f +4857,4738a,6,2,f +4857,4739a,6,2,f +4857,4854,4,4,f +4857,57503,334,2,f +4857,57504,334,2,f +4857,57505,334,2,f +4857,57506,334,2,f +4857,59,383,2,f +4857,60169,8,2,f +4857,6027,2,1,f +4857,6028,2,1,f +4857,6055,0,4,f +4857,6066,7,4,f +4857,6072,0,4,f +4857,6108,7,2,f +4857,6108,0,2,f +4857,6121,4,4,f +4857,6122,0,2,f +4857,6123,8,4,f +4857,6124,36,2,f +4857,6126a,57,2,f +4857,6127,2,1,f +4857,6128,2,1,f +4857,6131,0,2,f +4857,6133,4,2,f +4857,6216,14,4,f +4857,6260,15,2,f +4857,6265,15,1,t +4857,6265,15,4,f +4857,6266,15,4,f +4857,71015,334,2,f +4857,75174,2,1,f +4857,970c00,15,2,f +4857,970c00,1,2,f +4857,970x021,0,2,f +4857,970x026,8,4,f +4857,973c09,15,2,f +4857,973p4dc03,4,2,f +4857,973p4ec01,4,2,f +4857,973px125c01,4,2,f +4857,973px35c01,0,2,f +4857,973px90c01,0,2,f +4858,3001,14,6,f +4858,3001,15,2,f +4858,3001,4,6,f +4858,3001,1,4,f +4858,3002,4,4,f +4858,3002,1,2,f +4858,3002,14,4,f +4858,3003,1,2,f +4858,3003,4,4,f +4858,3003,14,4,f +4858,3003,15,2,f +4858,3004,4,10,f +4858,3004,1,10,f +4858,3004,15,2,f +4858,3004,0,4,f +4858,3004,14,12,f +4858,3004,47,4,f +4858,3005,15,2,f +4858,3005,14,8,f +4858,3005,1,8,f +4858,3005,4,8,f +4858,3008,1,2,f +4858,3008,14,2,f +4858,3009,4,4,f +4858,3009,14,4,f +4858,3009,1,3,f +4858,3010,4,8,f +4858,3010,14,7,f +4858,3010,1,10,f +4858,3010,0,2,f +4858,3010,15,2,f +4858,3020,4,4,f +4858,3021,4,2,f +4858,3022,4,2,f +4858,3031,4,1,f +4858,3032,4,1,f +4858,3034,4,4,f +4858,3039,4,4,f +4858,3039,47,2,f +4858,3039,14,2,f +4858,3081cc01,4,2,f +4858,3137c01,0,2,f +4858,3297,4,4,f +4858,3298,4,4,f +4858,3299,4,2,f +4858,3300,4,2,f +4858,3460,15,4,f +4858,3461,15,1,f +4858,3462,4,1,f +4858,3470,2,2,f +4858,3480,7,1,f +4858,3481,4,1,f +4858,3622,1,4,f +4858,3622,4,6,f +4858,3622,14,6,f +4858,3625,0,1,f +4858,3626apr0001,14,2,f +4858,3633,4,4,f +4858,3641,0,4,f +4858,3660,4,4,f +4858,3660,14,2,f +4858,3666,4,4,f +4858,3710,4,4,f +4858,3741,2,2,f +4858,3742,15,1,t +4858,3742,15,3,f +4858,3742,4,1,t +4858,3742,4,3,f +4858,3823,47,1,f +4858,3853,4,4,f +4858,3854,15,8,f +4858,3856,2,4,f +4858,3861b,4,1,f +4858,3867,2,1,f +4858,3901,6,1,f +4858,970c00,1,1,f +4858,970c00,0,1,f +4858,973c01,15,1,f +4858,973c02,4,1,f +4859,11153,71,1,f +4859,11458,72,3,f +4859,12825,72,2,f +4859,12825,0,2,f +4859,12939,72,1,f +4859,13195pr0001,326,1,f +4859,13841,28,1,f +4859,14273pr0003,47,1,f +4859,2357,71,2,f +4859,2357,70,1,f +4859,2412b,72,5,f +4859,2445,71,4,f +4859,2449,72,8,f +4859,2454a,72,1,f +4859,2458,72,2,f +4859,2460,71,1,f +4859,2540,72,2,f +4859,2654,72,1,f +4859,2723,0,5,f +4859,2736,71,2,f +4859,2921,70,1,f +4859,30031,0,1,f +4859,3004,71,8,f +4859,3004,70,8,f +4859,3004,72,5,f +4859,3005,72,4,f +4859,3005,70,5,f +4859,3005,71,2,f +4859,3009,70,2,f +4859,3010,72,1,f +4859,3020,72,1,f +4859,3020,70,2,f +4859,3021,70,3,f +4859,3022,72,1,f +4859,3023,72,3,f +4859,3023,71,4,f +4859,3023,70,2,f +4859,3024,72,1,f +4859,3024,70,11,f +4859,3024,70,1,t +4859,3024,72,1,t +4859,30259,70,2,f +4859,30374,70,1,f +4859,30374,35,1,f +4859,30374,36,1,f +4859,30375,72,1,f +4859,30377,308,2,f +4859,30377,308,1,t +4859,3038,71,8,f +4859,3039,70,2,f +4859,3040b,72,2,f +4859,3040b,71,2,f +4859,3040b,308,6,f +4859,3045,71,2,f +4859,30526,72,3,f +4859,30602,70,1,f +4859,3062b,0,1,f +4859,3062bpr42,57,1,f +4859,3069b,70,1,f +4859,32000,72,7,f +4859,32013,0,1,f +4859,32028,71,4,f +4859,32039,0,1,f +4859,32054,0,1,f +4859,32062,4,5,f +4859,32064a,72,1,f +4859,32123b,71,1,t +4859,32123b,71,1,f +4859,32192,0,2,f +4859,3298,71,2,f +4859,3300,72,1,f +4859,3623,72,2,f +4859,3626cpr1212,78,1,f +4859,3665,72,14,f +4859,3665,70,1,f +4859,3666,72,6,f +4859,3705,0,1,f +4859,3708,0,2,f +4859,3710,71,3,f +4859,3710,70,2,f +4859,3747b,70,1,f +4859,3794a,72,3,f +4859,3794a,70,6,f +4859,3795,71,1,f +4859,3795,70,4,f +4859,3830,70,1,f +4859,3831,70,1,f +4859,3941,47,1,f +4859,3958,71,1,f +4859,4032a,0,2,f +4859,4070,0,2,f +4859,4081b,72,1,f +4859,4162,72,1,f +4859,41879a,19,1,f +4859,42023,72,2,f +4859,42114,383,1,f +4859,4274,71,1,t +4859,4274,71,2,f +4859,4287,72,4,f +4859,43093,1,2,f +4859,4349,0,3,f +4859,43722,72,2,f +4859,43723,72,2,f +4859,4460b,71,2,f +4859,44728,72,3,f +4859,44809,0,1,f +4859,4600,71,1,f +4859,4733,0,1,f +4859,4735,71,2,f +4859,47458,72,1,f +4859,47847,70,4,f +4859,47905,72,1,f +4859,48724,71,1,f +4859,50231,70,1,f +4859,50304,71,1,f +4859,50305,71,1,f +4859,50950,72,8,f +4859,54200,308,9,f +4859,54200,308,3,t +4859,54200,36,1,f +4859,54200,36,1,t +4859,59233pat0001,41,1,f +4859,59443,72,4,f +4859,59900,72,3,f +4859,60477,308,3,f +4859,60478,71,2,f +4859,60479,71,2,f +4859,60481,70,4,f +4859,6060,70,3,f +4859,6091,72,7,f +4859,6091,71,2,f +4859,61184,71,2,f +4859,61252,72,1,f +4859,61409,72,2,f +4859,6141,47,3,f +4859,6141,72,10,f +4859,6141,0,1,t +4859,6141,72,2,t +4859,6141,71,2,f +4859,6141,47,1,t +4859,6141,0,2,f +4859,6141,297,2,f +4859,6141,297,1,t +4859,6141,71,1,t +4859,61780,72,1,f +4859,62462,0,1,f +4859,64567,80,1,t +4859,64567,80,1,f +4859,64644,308,2,f +4859,6536,72,1,f +4859,6541,72,8,f +4859,73590c03a,0,2,f +4859,73983,72,1,f +4859,73983,71,1,f +4859,76768,72,3,f +4859,85943,72,1,f +4859,87083,72,1,f +4859,87580,72,1,f +4859,90498,72,1,f +4859,92081,15,1,f +4859,92947,70,6,f +4859,93589,70,1,f +4859,970c00,0,1,f +4859,970c69pr0514,28,1,f +4859,973pr2365c01,0,1,f +4859,973pr2367c01,19,1,f +4859,973pr2369c01,28,1,f +4859,98103pr0003,308,1,f +4859,98560,308,1,f +4859,98560,71,4,f +4859,99206,71,2,f +4859,99207,71,1,f +4859,99781,71,1,f +4860,10165c01,297,1,f +4860,30088,179,1,f +4860,3024,72,2,f +4860,3626bpr1024,14,1,f +4860,88646,0,1,f +4860,970c00pr0378,84,1,f +4860,973pr2119c01,84,1,f +4861,3023,1,100,f +4862,2432,7,1,f +4862,2437,41,1,f +4862,2452,7,1,f +4862,2495,4,1,f +4862,2496,0,1,f +4862,3004pc0,15,1,f +4862,3010,14,2,f +4862,30235,0,1,f +4862,3069bp80,15,1,f +4862,3297px14,14,1,f +4862,3622pb008,14,2,f +4862,3626bp04,14,1,f +4862,3829c01,15,1,f +4862,3962b,0,1,f +4862,4345b,15,1,f +4862,4346,15,1,f +4862,4485,2,1,f +4862,6014a,15,4,f +4862,6015,0,4,f +4862,970c00,2,1,f +4862,973pb0239c01,2,1,f +4864,10197,72,2,f +4864,10928,72,1,f +4864,11214,72,4,f +4864,15100,0,25,f +4864,15458,72,2,f +4864,15462,28,2,f +4864,15535,72,1,f +4864,18651,0,12,f +4864,18654,72,9,f +4864,18654,72,1,t +4864,18944,85,4,f +4864,18946,4,2,f +4864,18947,72,1,f +4864,18948,15,5,f +4864,2431,25,2,f +4864,24727,9999,1,t +4864,2723,0,4,f +4864,2741,0,1,f +4864,2780,0,38,f +4864,2780,0,1,t +4864,2850b,71,1,f +4864,2851,14,1,f +4864,2852,71,1,f +4864,2853,14,3,f +4864,32009,25,2,f +4864,32013,71,3,f +4864,32015,4,1,f +4864,32034,71,2,f +4864,32039,4,1,f +4864,32054,0,7,f +4864,32062,4,9,f +4864,32073,14,1,f +4864,32123b,14,9,f +4864,32123b,14,1,t +4864,32140,71,3,f +4864,32140,72,9,f +4864,32184,71,3,f +4864,32270,0,1,f +4864,32291,71,2,f +4864,32293,0,1,f +4864,32316,72,6,f +4864,32449,15,3,f +4864,32523,72,3,f +4864,32523,80,2,f +4864,32524,71,2,f +4864,32525,71,1,f +4864,32556,19,1,f +4864,3648b,72,1,f +4864,3705,4,4,f +4864,3713,4,7,f +4864,3713,4,1,t +4864,3749,19,2,f +4864,40490,72,5,f +4864,41239,0,3,f +4864,41677,72,9,f +4864,41678,0,2,f +4864,42003,0,5,f +4864,4274,71,10,f +4864,4274,71,1,t +4864,43093,1,7,f +4864,44294,71,4,f +4864,44809,4,2,f +4864,4519,71,4,f +4864,48989,71,2,f +4864,55013,72,1,f +4864,55978,0,4,f +4864,55981,71,1,f +4864,56145,0,4,f +4864,59426,72,1,f +4864,59443,0,3,f +4864,60483,25,5,f +4864,62462,71,1,f +4864,63869,0,2,f +4864,64178,71,1,f +4864,64391,25,1,f +4864,64683,25,1,f +4864,6536,15,8,f +4864,6558,1,26,f +4864,6628,0,4,f +4864,6641,4,1,f +4864,78c11,179,1,f +4864,87080,25,1,f +4864,87083,72,7,f +4864,87086,25,1,f +4864,92907,71,2,f +4864,94925,71,3,f +4864,98138,25,1,t +4864,98138,47,1,t +4864,98138,47,2,f +4864,98138,36,2,f +4864,98138,25,1,f +4864,98138,36,1,t +4865,2780,0,15,f +4865,32002,8,2,f +4865,3651,7,4,f +4865,3673,7,10,f +4865,3713,7,15,f +4865,3749,7,4,f +4865,4273b,7,4,f +4865,4274,7,4,f +4865,6553,7,2,f +4865,6558,0,4,f +4866,2444,72,1,f +4866,298c02,71,1,t +4866,298c02,71,2,f +4866,3020,71,4,f +4866,3021,71,1,f +4866,3023,72,2,f +4866,3031,71,1,f +4866,30350b,72,2,f +4866,3068b,71,1,f +4866,3070b,71,1,f +4866,3070b,71,1,t +4866,3623,71,4,f +4866,3794b,71,1,f +4866,4032a,72,2,f +4866,4032a,71,4,f +4866,4070,71,1,f +4866,43722,71,1,f +4866,43723,71,1,f +4866,43898,72,4,f +4866,44302a,71,1,f +4866,44567a,72,1,f +4866,4697b,71,1,t +4866,4697b,71,1,f +4866,4733,0,1,f +4866,47905,72,1,f +4866,48183,72,2,f +4866,48336,71,2,f +4866,48729b,72,6,f +4866,48729b,72,1,t +4866,51739,71,2,f +4866,54200,71,1,t +4866,54200,71,1,f +4866,6019,71,4,f +4866,60478,72,12,f +4866,63864,71,4,f +4866,63868,71,4,f +4866,6564,71,4,f +4866,6565,71,4,f +4867,11090,72,1,f +4867,11098,41,1,f +4867,11127,41,1,f +4867,13549,41,1,f +4867,14769pr1013,15,3,f +4867,15083pr0006,71,1,f +4867,15083pr0007,379,1,f +4867,15083pr0008,71,1,f +4867,15208,15,1,f +4867,15391,71,1,f +4867,15392,72,1,t +4867,15392,72,1,f +4867,15540,72,2,f +4867,16770,41,2,f +4867,16968,71,1,f +4867,20174,47,1,f +4867,3001,28,2,f +4867,3020,484,2,f +4867,3023,28,2,f +4867,3024,41,1,f +4867,3024,41,1,t +4867,3626cpr1588,72,2,f +4867,3626cpr1609,15,1,f +4867,3700,71,2,f +4867,3848,148,1,f +4867,3942c,71,1,f +4867,4070,71,1,f +4867,4460b,72,2,f +4867,47720,71,1,f +4867,47753,28,1,f +4867,54200,41,4,f +4867,54200,41,1,t +4867,60897,71,4,f +4867,6141,15,1,t +4867,6141,15,3,f +4867,6141,41,3,f +4867,63965,71,2,f +4867,64567,71,2,f +4867,64727,71,4,f +4867,6587,28,1,f +4867,85984,0,1,f +4867,87081,15,1,f +4867,88811,179,1,f +4867,88811,179,1,t +4867,92747,41,1,f +4867,970c00pr0675,71,1,f +4867,970c00pr0787,71,1,f +4867,970d00pr0807,379,1,f +4867,973pr2883c01,71,2,f +4867,973pr2912c01,379,1,f +4867,98138,41,1,f +4867,98138,41,1,t +4867,99206,0,2,f +4868,132a,7,4,f +4868,3001a,14,4,f +4868,3001a,1,2,f +4868,3001a,47,2,f +4868,3003,14,1,f +4868,3004,14,1,f +4868,3030,4,1,f +4868,3041,4,1,f +4868,7039,4,4,f +4868,7049b,15,2,f +4869,11477,15,1,f +4869,11618,26,1,t +4869,11618,26,1,f +4869,14733pr0001,0,1,f +4869,2431,322,2,f +4869,2654,19,1,f +4869,3004,15,3,f +4869,3005,33,2,f +4869,3023,33,1,f +4869,3024,15,2,f +4869,3024,15,1,t +4869,3031,1,2,f +4869,3040b,15,6,f +4869,3068b,29,1,f +4869,3069b,15,1,f +4869,3659,15,1,f +4869,3710,29,1,f +4869,3710,15,1,f +4869,3795,15,1,f +4869,48336,15,1,f +4869,4865b,29,2,f +4869,4865b,322,2,f +4869,51739,15,1,f +4869,54200,33,1,t +4869,54200,33,2,f +4869,6141,29,1,t +4869,6141,29,1,f +4869,6256,29,1,f +4869,63868,71,2,f +4869,64648,179,1,f +4869,87544,15,1,f +4869,87580,15,1,f +4869,98138,33,3,f +4869,98138,33,1,t +4871,3626cpr1149,78,1,f +4871,61189pr0012,15,1,f +4871,970x026,15,1,f +4871,973pr2223c01,15,1,f +4872,2357,15,2,f +4872,2412b,15,5,f +4872,2412b,1,4,f +4872,2420,15,4,f +4872,2431,15,6,f +4872,2440,14,1,f +4872,2452,0,2,f +4872,2456,1,1,f +4872,2460,7,2,f +4872,2474,7,2,f +4872,2475,0,2,f +4872,2498,73,6,f +4872,2653,0,2,f +4872,2681,0,2,f +4872,2878c01,0,2,f +4872,2880,0,1,f +4872,2920,0,2,f +4872,2926,7,4,f +4872,2927,0,8,f +4872,3004,1,2,f +4872,3004,15,2,f +4872,3009,15,2,f +4872,3010,1,10,f +4872,3010,15,2,f +4872,30180,15,1,f +4872,3020,15,6,f +4872,3023,1,6,f +4872,3024,46,4,f +4872,3027,0,1,f +4872,3031,1,1,f +4872,3032,0,2,f +4872,3034,0,2,f +4872,3035,15,2,f +4872,3039,33,4,f +4872,3040b,36,2,f +4872,3065,34,2,f +4872,3068b,1,2,f +4872,3068bp70,15,2,f +4872,3069b,1,4,f +4872,3479,0,2,f +4872,3626bp03,14,1,f +4872,3626bp04,14,1,f +4872,3660,0,2,f +4872,3710,1,4,f +4872,3794a,7,4,f +4872,3829c01,7,2,f +4872,3833,15,2,f +4872,3857,2,1,f +4872,3938,14,1,f +4872,3941,33,2,f +4872,4022,0,3,f +4872,4150,15,2,f +4872,4276b,0,2,f +4872,4282,0,1,f +4872,4286,15,4,f +4872,4553stk01,9999,1,t +4872,4590,0,4,f +4872,4854,15,2,f +4872,4864b,15,2,f +4872,4865a,1,8,f +4872,55295,8,1,f +4872,55296,8,1,f +4872,55297,8,1,f +4872,55298,8,1,f +4872,55299,8,1,f +4872,55300,8,1,f +4872,6019,14,2,f +4872,6583,0,2,f +4872,6636,15,4,f +4872,73092,0,2,f +4872,74746,8,2,f +4872,970c00,8,2,f +4872,973px8c01,1,2,f +4877,2432,14,1,f +4877,3022,71,1,f +4877,3022,0,1,f +4877,3176,71,1,f +4877,3839b,15,2,f +4877,87580,14,1,f +4877,93095,14,1,f +4880,10197,72,2,f +4880,11455,0,4,f +4880,11953,0,4,f +4880,2780,0,99,f +4880,2780,0,2,t +4880,2853,14,4,f +4880,32002,19,1,t +4880,32002,19,6,f +4880,32009,0,1,f +4880,32009,14,3,f +4880,32013,71,2,f +4880,32014,0,4,f +4880,32017,14,10,f +4880,32034,0,1,f +4880,32039,0,7,f +4880,32054,71,32,f +4880,32056,14,4,f +4880,32062,4,13,f +4880,32063,71,2,f +4880,32073,71,12,f +4880,32123b,71,8,f +4880,32123b,71,1,t +4880,32138,0,2,f +4880,32140,0,1,f +4880,32140,14,1,f +4880,32184,71,3,f +4880,32250,14,8,f +4880,32269,19,2,f +4880,32270,0,4,f +4880,32278,14,12,f +4880,32278,0,2,f +4880,32291,0,2,f +4880,32316,0,8,f +4880,32316,71,2,f +4880,32316,14,5,f +4880,32494,71,2,f +4880,32523,0,3,f +4880,32523,14,7,f +4880,32524,71,4,f +4880,32524,14,4,f +4880,32524,0,6,f +4880,32525,14,7,f +4880,32526,14,15,f +4880,32526,71,4,f +4880,32526,0,1,f +4880,32526,1,2,f +4880,32556,19,9,f +4880,3673,71,1,t +4880,3673,71,6,f +4880,3705,0,6,f +4880,3706,0,1,f +4880,3707,0,2,f +4880,3713,4,1,t +4880,3713,71,16,f +4880,3713,4,3,f +4880,3713,71,1,t +4880,3737,0,1,f +4880,3894,14,1,f +4880,40490,72,14,f +4880,40490,14,4,f +4880,41239,14,6,f +4880,41678,71,5,f +4880,42003,14,1,f +4880,42610,71,4,f +4880,4274,71,1,t +4880,4274,71,2,f +4880,43093,1,23,f +4880,44294,71,3,f +4880,44809,0,4,f +4880,4519,71,19,f +4880,48989,71,7,f +4880,50163,71,1,f +4880,55013,72,1,f +4880,55615,71,3,f +4880,57519,0,4,f +4880,59426,72,7,f +4880,59443,72,14,f +4880,60483,0,10,f +4880,60485,71,4,f +4880,6141,47,1,t +4880,6141,47,2,f +4880,61903,71,2,f +4880,61904,72,2,f +4880,61927b,71,2,f +4880,62462,14,2,f +4880,62531,14,2,f +4880,64178,71,1,f +4880,64179,71,1,f +4880,64683,14,1,f +4880,6536,71,2,f +4880,6538b,19,2,f +4880,6539,4,2,f +4880,6542b,72,4,f +4880,6553,71,2,f +4880,6558,1,59,f +4880,6587,28,1,f +4880,6589,19,10,f +4880,6589,19,1,t +4880,6632,14,2,f +4880,6632,0,4,f +4880,6641,4,2,f +4880,75c06,0,2,f +4880,75c06,0,1,t +4880,75c09,0,1,f +4880,87082,71,6,f +4880,87083,72,7,f +4880,87407,71,5,f +4880,88323,72,68,f +4880,92693,71,1,f +4880,92906,72,2,f +4880,92907,0,6,f +4880,94925,71,2,f +4880,98989,71,2,f +4880,99008,19,2,f +4880,99773,14,4,f +4881,2341,15,2,f +4881,2348b,41,1,f +4881,2349a,15,1,f +4881,2362a,15,3,f +4881,2362a,41,2,f +4881,2412b,15,1,f +4881,2412b,7,2,f +4881,2420,1,2,f +4881,2420,15,7,f +4881,2431,4,1,f +4881,2431,7,1,f +4881,2433,0,1,f +4881,2445,15,1,f +4881,2508,7,1,f +4881,2555,7,4,f +4881,2610,14,2,f +4881,2620,41,1,f +4881,2926,7,2,f +4881,298c02,15,2,f +4881,298c02,15,1,t +4881,3005,15,7,f +4881,3010,15,2,f +4881,3020,15,2,f +4881,3020,4,1,f +4881,3020,0,1,f +4881,3020,1,2,f +4881,3021,15,2,f +4881,3021,4,1,f +4881,3021,1,2,f +4881,3021,0,3,f +4881,3022,1,1,f +4881,3022,14,1,f +4881,3022,15,1,f +4881,3022,4,1,f +4881,3023,4,1,f +4881,3023,1,2,f +4881,3023,15,2,f +4881,3024,15,1,t +4881,3024,46,1,t +4881,3024,46,2,f +4881,3024,15,5,f +4881,3024,36,2,f +4881,3024,4,2,f +4881,3024,36,1,t +4881,3039,4,1,f +4881,3039p23,7,1,f +4881,3068bp17,15,1,f +4881,3069b,1,1,f +4881,3069b,15,1,f +4881,3069b,4,1,f +4881,3070b,15,1,t +4881,3070b,4,1,t +4881,3070b,15,1,f +4881,3070b,4,1,f +4881,3139,0,4,f +4881,3183b,15,1,f +4881,3622,15,4,f +4881,3626bpr0001,14,2,f +4881,3660p01,15,1,f +4881,3665,15,6,f +4881,3666,15,5,f +4881,3666,4,2,f +4881,3710,15,2,f +4881,3710,4,2,f +4881,3794a,7,2,f +4881,3794a,15,1,f +4881,3829c01,7,1,f +4881,3899,4,2,f +4881,4070,15,4,f +4881,4079,14,2,f +4881,4085c,7,1,f +4881,4085c,15,1,f +4881,4085c,1,1,f +4881,4095,4,2,f +4881,4213,15,1,f +4881,4215a,41,2,f +4881,4276b,7,2,f +4881,4282,0,1,f +4881,4315,15,1,f +4881,4477,7,2,f +4881,4485,4,1,f +4881,4528,0,1,f +4881,4600,7,2,f +4881,4624,7,4,f +4881,4625,15,2,f +4881,4715,15,1,f +4881,4719,4,1,f +4881,476,4,2,f +4881,4854,4,1,f +4881,4855,4,1,f +4881,4859,15,1,f +4881,4864a,15,1,f +4881,4864a,41,1,f +4881,4865a,15,2,f +4881,4871,4,1,f +4881,6014a,7,4,f +4881,6015,0,4,f +4881,6075,14,1,f +4881,6093,0,1,f +4881,6141,1,1,t +4881,6141,1,1,f +4881,6141,36,1,t +4881,6141,36,2,f +4881,71509,0,2,f +4881,73983,15,1,f +4881,73983,1,1,f +4881,92851,47,2,f +4881,970c00,1,1,f +4881,970c00,15,1,f +4881,973pb0006c01,15,1,f +4881,973px62c01,15,1,f +4881,x66px13,47,1,f +4881,x66px7,47,1,f +4883,2780,0,6,f +4883,30374,36,1,f +4883,32013,71,1,f +4883,32054,0,1,f +4883,32062,0,1,f +4883,32174,4,5,f +4883,32199,179,1,f +4883,3705,0,1,f +4883,43093,1,1,f +4883,47296,4,2,f +4883,47306,4,1,f +4883,47311,320,1,f +4883,50898,4,2,f +4883,53500,57,1,f +4883,53562pat0002,320,2,f +4883,53563,320,1,f +4883,53564,148,1,f +4883,53566,320,2,f +4883,53573,320,1,f +4883,53574,320,2,f +4883,53575,148,1,f +4883,54271,148,1,f +4883,54821,42,4,f +4883,55095pr0001,15,1,f +4883,55306,320,1,t +4883,59426,72,1,f +4884,30374,36,1,f +4884,30381,0,1,f +4884,3626cpb1117,72,1,f +4884,50231,0,1,f +4884,64567,80,1,f +4884,970c11pb20,0,1,f +4884,973pb1688c01,320,1,f +4885,2625,15,1,f +4885,30145,7,1,f +4885,3022,25,1,f +4885,30248,15,1,f +4885,30332,0,1,f +4885,30640,25,1,f +4885,30663,7,1,f +4885,3475b,25,2,f +4885,4729,15,1,f +4885,6239,15,2,f +4885,js027,-1,1,f +4886,3005,14,6,f +4886,3008,14,2,f +4886,3009,0,2,f +4886,3010,1,18,f +4886,3020,1,2,f +4886,3020,4,2,f +4886,3022,7,18,f +4886,3023,1,24,f +4886,3024,0,4,f +4886,3024,7,2,f +4886,3030,1,2,f +4886,3040b,1,2,f +4886,3040b,14,3,f +4886,3068b,1,6,f +4886,3069b,1,6,f +4886,3176,7,6,f +4886,3456,0,1,f +4886,3460,1,6,f +4886,3622,1,3,f +4886,3623,4,3,f +4886,3623,14,4,f +4886,3648a,7,8,f +4886,3649,7,1,f +4886,3651,7,16,f +4886,3652,7,6,f +4886,3665,1,4,f +4886,3673,7,7,f +4886,3700,4,5,f +4886,3700,1,1,f +4886,3701,1,6,f +4886,3702,1,2,f +4886,3704,0,6,f +4886,3705,0,6,f +4886,3706,0,4,f +4886,3708,0,3,f +4886,3710,0,2,f +4886,3710,7,4,f +4886,3713,7,17,f +4886,3749,7,1,f +4886,3832,1,2,f +4886,3941,14,1,f +4886,4032a,14,2,f +4886,4185,7,2,f +4886,69c01,1,6,f +4886,85545,0,2,f +4886,x467c12,0,6,f +4887,14226c11,0,4,f +4887,22119,8,1,f +4887,2335pr02,15,1,f +4887,2357,7,4,f +4887,2412b,57,4,f +4887,2412b,42,4,f +4887,2412b,14,1,f +4887,2419,0,1,f +4887,2419,4,1,f +4887,2431,0,2,f +4887,2431,14,2,f +4887,2432,14,1,f +4887,2432,7,1,f +4887,2446,0,1,f +4887,2446px5,2,1,f +4887,2447,42,1,f +4887,2450,0,2,f +4887,2456,7,2,f +4887,2456,14,2,f +4887,2458,7,4,f +4887,2458,2,4,f +4887,2486,4,1,f +4887,2540,14,2,f +4887,2540,0,1,f +4887,2543,4,1,f +4887,2744,0,2,f +4887,2877,7,1,f +4887,2877,14,2,f +4887,2921,0,2,f +4887,3002,14,2,f +4887,3002,4,1,f +4887,3003,2,3,f +4887,3003,7,2,f +4887,3004,0,3,f +4887,3007,0,1,f +4887,3010,2,1,f +4887,3010,0,1,f +4887,30137,15,1,f +4887,3023,7,2,f +4887,3023,14,5,f +4887,3023,4,2,f +4887,30236,2,2,f +4887,30236,4,3,f +4887,30237a,14,2,f +4887,30285,7,6,f +4887,30285,14,6,f +4887,3032,7,2,f +4887,3032,0,2,f +4887,3034,2,3,f +4887,3034,7,2,f +4887,3035,14,1,f +4887,30363pb002,2,1,f +4887,30363pb003,4,1,f +4887,3037,2,2,f +4887,3037,14,2,f +4887,3039,42,2,f +4887,3039,57,2,f +4887,30391,0,12,f +4887,3040b,2,4,f +4887,3040b,4,2,f +4887,3040b,14,2,f +4887,3040b,0,2,f +4887,3062b,14,2,f +4887,3068b,0,2,f +4887,3068b,2,2,f +4887,3069bp21,0,4,f +4887,3176,0,2,f +4887,3176,4,2,f +4887,3176,14,4,f +4887,32271,4,2,f +4887,32271,2,2,f +4887,3622,4,2,f +4887,3626bp03,14,1,f +4887,3626bp6f,14,1,f +4887,3626bpx100,14,1,f +4887,3660,0,1,f +4887,3666,14,1,f +4887,3666,4,1,f +4887,3710,1,1,f +4887,3710,7,5,f +4887,3710,4,2,f +4887,3710,0,9,f +4887,3749,7,1,t +4887,3749,7,4,f +4887,3795,0,4,f +4887,3795,7,3,f +4887,3829c01,7,2,f +4887,3849,0,2,f +4887,3957a,15,1,f +4887,4070,15,2,f +4887,4070,0,2,f +4887,4070,7,2,f +4887,4274,7,16,f +4887,4274,7,2,t +4887,4286,4,2,f +4887,4349,4,1,f +4887,4485,0,1,f +4887,4495b,4,1,f +4887,4495b,2,1,f +4887,4495b,4,1,t +4887,4510,0,2,f +4887,4530,2,1,f +4887,4589,57,1,t +4887,4589,42,1,f +4887,4589,42,1,t +4887,4589,57,1,f +4887,4589,15,4,f +4887,4589,15,1,t +4887,6112,0,2,f +4887,6112,4,2,f +4887,6119,4,1,f +4887,6126a,57,4,f +4887,6126a,57,1,t +4887,6141,14,2,f +4887,6141,42,1,t +4887,6141,57,1,t +4887,6141,14,1,t +4887,6141,42,2,f +4887,6141,7,1,t +4887,6141,57,2,f +4887,6141,7,2,f +4887,6564,2,1,f +4887,6564,4,2,f +4887,6565,4,2,f +4887,6565,2,1,f +4887,6587,8,4,f +4887,6628,0,4,f +4887,72826,89,1,f +4887,970c00,4,1,f +4887,970c00,2,1,f +4887,970x026,8,1,f +4887,973pb0013c01,15,1,f +4887,973pb0023c01,15,1,f +4887,973pr1190c01,0,1,f +4887,rb00167,0,3,t +4887,rb00167,0,4,f +4888,2780,0,3,f +4888,2780,0,1,t +4888,32054,71,1,f +4888,32062,4,2,f +4888,32184,0,2,f +4888,32192,0,2,f +4888,3706,0,2,f +4888,3713,71,2,f +4888,3713,71,1,t +4888,40490,0,1,f +4888,41669,36,2,f +4888,50858,320,1,f +4888,53562pat0002,320,2,f +4888,57555,46,1,f +4888,57555,182,1,f +4888,57556,135,1,f +4889,11477,14,2,f +4889,11610,0,1,f +4889,2412b,72,3,f +4889,2456,0,1,f +4889,298c02,71,1,t +4889,298c02,71,2,f +4889,3022,14,1,f +4889,3023,72,2,f +4889,3024,36,1,t +4889,3024,36,2,f +4889,30387,14,1,f +4889,3626cpr0498,14,1,f +4889,3833,4,1,f +4889,44301b,0,1,f +4889,44302a,14,2,f +4889,4595,71,1,f +4889,48729b,72,1,f +4889,48729b,72,1,t +4889,6014b,14,4,f +4889,60212,14,1,f +4889,60897,71,2,f +4889,6117,72,1,f +4889,6157,71,2,f +4889,6187,0,1,f +4889,87697,0,4,f +4889,92582,71,1,f +4889,970c00,25,1,f +4889,973pr2913c01,25,1,f +4890,2412b,19,5,f +4890,2412b,4,4,f +4890,2412b,71,2,f +4890,2412b,0,3,f +4890,2431,72,1,f +4890,2445,72,1,f +4890,2508,0,1,f +4890,2780,0,1,t +4890,2780,0,2,f +4890,2877,71,2,f +4890,2921,4,2,f +4890,3001,71,2,f +4890,3002,14,2,f +4890,3003,72,2,f +4890,3004,27,2,f +4890,3005,70,9,f +4890,3008,19,1,f +4890,3009,4,1,f +4890,3010,4,1,f +4890,3010,19,4,f +4890,30137,72,3,f +4890,3020,71,2,f +4890,3021,4,2,f +4890,3021,0,3,f +4890,3022,27,2,f +4890,3022,15,2,f +4890,3023,14,3,f +4890,3023,4,2,f +4890,3023,36,3,f +4890,3023,71,2,f +4890,3023,70,2,f +4890,30236,72,3,f +4890,3031,15,1,f +4890,3034,0,1,f +4890,3036,2,2,f +4890,30363,72,1,f +4890,3039,1,2,f +4890,30391,0,2,f +4890,3040b,4,4,f +4890,30414,71,2,f +4890,30505,0,2,f +4890,3066,40,2,f +4890,3068b,4,1,f +4890,3069b,19,4,f +4890,32013,71,2,f +4890,33172,25,2,f +4890,33183,10,1,t +4890,33183,10,2,f +4890,3456,72,1,f +4890,3626bpr0043,14,1,f +4890,3626bpr0386,14,1,f +4890,3660,72,2,f +4890,3666,4,4,f +4890,3666,71,2,f +4890,3710,27,1,f +4890,3737,0,1,f +4890,3794b,71,1,f +4890,3794b,27,2,f +4890,3829c01,14,1,f +4890,3832,4,1,f +4890,3836,70,1,f +4890,3837,72,1,f +4890,3895,72,2,f +4890,4079,14,1,f +4890,4085c,71,6,f +4890,4287,71,2,f +4890,43722,27,1,f +4890,43723,27,1,f +4890,44568,71,6,f +4890,44569,4,6,f +4890,44728,0,1,f +4890,4488,0,4,f +4890,4510,71,1,f +4890,4515,4,1,f +4890,4589,182,2,f +4890,4599b,71,1,f +4890,4739a,70,2,f +4890,47457,15,1,f +4890,47720,0,1,f +4890,48336,14,2,f +4890,48729a,72,1,f +4890,48729a,72,1,t +4890,50303,0,1,f +4890,50948,27,1,f +4890,52031,15,1,f +4890,52501,4,2,f +4890,53989,0,1,f +4890,54200,72,1,t +4890,54200,36,2,f +4890,54200,27,1,t +4890,54200,27,2,f +4890,54200,0,1,t +4890,54200,47,1,t +4890,54200,0,2,f +4890,54200,72,4,f +4890,54200,36,1,t +4890,54200,47,4,f +4890,55981,15,2,f +4890,56890,0,4,f +4890,56898,0,2,f +4890,56904,15,2,f +4890,6014b,71,4,f +4890,6020,71,5,f +4890,60470a,4,2,f +4890,60475a,71,2,f +4890,60478,0,2,f +4890,6064,2,1,f +4890,6070,27,2,f +4890,6079,70,1,f +4890,6087,71,1,f +4890,6093,70,1,f +4890,6141,70,1,t +4890,6141,4,4,f +4890,6141,14,1,t +4890,6141,4,1,t +4890,6141,14,4,f +4890,6141,70,2,f +4890,62113,72,2,f +4890,6231,71,4,f +4890,62462,15,2,f +4890,63082,71,1,f +4890,6553,0,2,f +4890,6576,71,1,f +4890,6636,4,2,f +4890,84954,40,2,f +4890,86035,4,1,f +4890,87079,4,1,f +4890,87617,0,1,f +4890,87621pr01,92,4,f +4890,970c00,1,1,f +4890,970c00,2,1,f +4890,973pr1446c01,4,1,f +4890,973pr1580c01,15,1,f +4891,2780,0,8,f +4891,2780,0,1,t +4891,30374,36,1,f +4891,32015,0,2,f +4891,32062,4,4,f +4891,32138,0,1,f +4891,33299a,0,2,f +4891,42003,0,1,f +4891,43093,1,2,f +4891,4519,71,5,f +4891,45749,135,4,f +4891,47306,72,1,f +4891,47312,72,1,f +4891,48989,71,1,f +4891,49423,135,1,f +4891,53542,0,2,f +4891,53543,0,3,f +4891,53545,72,1,f +4891,57536,42,1,f +4891,60176,0,5,f +4891,61054,0,4,f +4891,61790,0,1,f +4891,61796,0,1,f +4891,61800,4,2,f +4891,61801,4,2,f +4891,61802,0,1,f +4891,61805,135,1,f +4891,61808,135,1,f +4891,61810,40,1,f +4891,61811,148,2,f +4892,11055,4,9,f +4892,12825,0,8,f +4892,14728,0,3,f +4892,2335p30,15,2,f +4892,2343,14,2,f +4892,2357,0,4,t +4892,2357,0,2,f +4892,2357,15,4,f +4892,2420,0,6,f +4892,2420,14,2,f +4892,2431,0,10,f +4892,2445,0,1,f +4892,2445,14,1,f +4892,2449,14,4,f +4892,2449,0,2,f +4892,2452,0,5,f +4892,2462,0,4,f +4892,2465,15,2,f +4892,2489,6,1,f +4892,2525p31,15,2,f +4892,2526,6,1,f +4892,2527,4,4,f +4892,2528pb01,0,1,f +4892,2529,15,8,f +4892,2530,8,10,f +4892,2537,0,2,f +4892,2538b,0,3,f +4892,2539,8,2,f +4892,2540,0,13,f +4892,2541,6,4,f +4892,2542,4,2,f +4892,2543,1,3,f +4892,2543,4,3,f +4892,2544,0,1,f +4892,2544,6,1,f +4892,2546p01,4,1,f +4892,2550c01,6,1,f +4892,2551,6,1,f +4892,2554,6,4,f +4892,2557c03,6,1,f +4892,2559c03,6,1,f +4892,2560,6,3,f +4892,2561,6,3,f +4892,2562,6,5,f +4892,2564,0,1,f +4892,2566,0,3,f +4892,3001,0,12,f +4892,3003,0,6,f +4892,3004,0,17,f +4892,3004,15,6,f +4892,3005,0,23,f +4892,3008,0,10,f +4892,3009,0,11,f +4892,3010,0,11,f +4892,3010,15,4,f +4892,3010,14,2,f +4892,3020,14,1,f +4892,3020,0,4,f +4892,3020,7,3,f +4892,3021,0,7,f +4892,3022,0,10,f +4892,3022,14,1,f +4892,3023,7,4,f +4892,3023,0,29,f +4892,3023,14,6,f +4892,3024,14,1,f +4892,3024,0,10,f +4892,3028,7,1,f +4892,3030,7,1,f +4892,3031,0,4,f +4892,3033,7,2,f +4892,3034,0,2,f +4892,3034,7,1,f +4892,3035,0,1,f +4892,3036,7,2,f +4892,3037,0,2,f +4892,3038,0,2,f +4892,3039,0,1,f +4892,3040b,0,10,f +4892,3040b,14,10,f +4892,3048c,14,1,f +4892,3062b,0,24,f +4892,3068bp30,15,2,f +4892,3069b,0,11,f +4892,3127,7,1,f +4892,3184,0,12,f +4892,3455,0,3,f +4892,3455,14,2,f +4892,3460,0,13,f +4892,3460,7,1,f +4892,3581,0,4,f +4892,3622,0,17,f +4892,3622,15,2,f +4892,3623,7,4,f +4892,3623,0,15,f +4892,3623,14,4,f +4892,3626bp35,14,4,f +4892,3626bp40,14,2,f +4892,3626bp47,14,1,f +4892,3626bp49,14,2,f +4892,3633,0,6,f +4892,3659,0,7,f +4892,3660,0,6,f +4892,3665,0,10,f +4892,3665,14,6,f +4892,3666,7,2,f +4892,3666,0,22,f +4892,3666,14,1,f +4892,3684,0,4,f +4892,3700,0,1,f +4892,3700,14,2,f +4892,3710,14,3,f +4892,3710,0,15,f +4892,3710,7,1,f +4892,3747a,0,2,f +4892,3747a,14,1,f +4892,3794a,14,1,f +4892,3794a,0,2,f +4892,3795,0,4,f +4892,3795,7,2,f +4892,3832,7,4,f +4892,3848,6,2,f +4892,3849,0,1,f +4892,3853,14,6,f +4892,3856,4,4,f +4892,3933,0,1,f +4892,3934,0,1,f +4892,3935,0,2,f +4892,3936,0,2,f +4892,3937,0,4,f +4892,3937,14,1,f +4892,3938,14,5,f +4892,3957a,0,3,f +4892,3959,0,2,f +4892,4032a,0,3,f +4892,4070,0,6,f +4892,4081b,0,7,f +4892,4081b,14,1,f +4892,4085c,0,8,f +4892,4085c,7,12,f +4892,4088,14,3,f +4892,4208,0,1,f +4892,4209,6,1,f +4892,4213,7,2,f +4892,4213,0,4,f +4892,4276b,14,1,f +4892,4282,7,2,f +4892,4282,0,1,f +4892,4286,14,16,f +4892,4286,0,2,f +4892,4287,14,4,f +4892,4287,15,2,f +4892,4315,7,4,f +4892,4315,0,2,f +4892,4477,14,2,f +4892,4477,0,30,f +4892,4504,0,4,f +4892,4507,0,1,f +4892,4589,0,11,f +4892,4589,14,12,f +4892,4590,0,1,f +4892,4600,0,8,f +4892,4623,0,10,f +4892,4624,6,16,f +4892,4728,14,2,f +4892,4735,0,1,f +4892,4738ac01,6,2,f +4892,4790,6,1,f +4892,4844,0,2,f +4892,4854,0,1,f +4892,4859,14,1,f +4892,4865a,0,4,f +4892,56823,0,1,f +4892,57503,334,4,f +4892,57504,334,4,f +4892,57505,334,4,f +4892,57506,334,4,f +4892,6104,14,1,f +4892,6141,46,12,f +4892,6141,14,1,t +4892,6141,46,1,t +4892,6141,0,32,f +4892,6141,0,1,t +4892,6141,14,4,f +4892,73590c02a,0,1,f +4892,84943,8,4,f +4892,970c00,1,2,f +4892,970c00,15,4,f +4892,970c00,7,1,f +4892,970d01,0,1,f +4892,973c11,14,1,f +4892,973p31c01,14,2,f +4892,973p32c01,14,2,f +4892,973p34c01,1,2,f +4892,973p36c01,0,1,f +4892,973p38c01,15,1,f +4892,sailbb04,15,2,f +4892,sailbb05,15,2,f +4892,sailbb23,15,1,f +4893,122c01,0,2,f +4893,3020,4,1,f +4893,3023,4,1,f +4893,3024,33,1,t +4893,3024,33,2,f +4893,3039p09,4,1,f +4893,3626apr0001,14,1,f +4893,3641,0,4,f +4893,3710,4,1,f +4893,3795,4,1,f +4893,3829c01,4,1,f +4893,3834,15,1,f +4893,3962a,0,1,f +4893,4079,14,1,f +4893,970c00,0,1,f +4893,973p21c01,0,1,f +4894,26562,15,1,f +4894,3626cpr1922,78,1,f +4894,88646pr0002,15,1,f +4894,970c00pr1051,0,1,f +4894,973pr3378c01,15,1,f +4894,99930,19,1,f +4895,16542,7,1,f +4895,298c02,7,2,f +4895,3001,14,2,f +4895,3001,7,2,f +4895,3004,15,6,f +4895,3010,15,6,f +4895,3020,4,3,f +4895,3021,0,4,f +4895,3022,0,2,f +4895,3023,0,4,f +4895,3023,7,10,f +4895,3027,0,1,f +4895,3045,15,12,f +4895,3062b,7,4,f +4895,3626apr0001,14,1,f +4895,3665,0,8,f +4895,3666,0,4,f +4895,3676,14,8,f +4895,3710,4,6,f +4895,3710,7,2,f +4895,3794a,7,4,f +4895,3795,7,2,f +4895,3795,0,2,f +4895,3832,0,1,f +4895,3833,4,1,f +4895,4022,0,2,f +4895,4023,0,2,f +4895,4032a,7,2,f +4895,4083,7,2,f +4895,4175,7,4,f +4895,4180c01,0,2,f +4895,4208,0,1,f +4895,4209,14,1,f +4895,73092,0,2,f +4895,73590c01a,0,2,f +4895,7813stk01,9999,1,t +4895,970c00,1,1,f +4895,973p60c01,15,1,f +4899,2456,14,2,f +4899,3001,14,4,f +4899,3001,2,2,f +4899,3001,1,4,f +4899,3001,0,2,f +4899,3001,4,4,f +4899,3001,15,4,f +4899,3002,0,2,f +4899,3002,4,4,f +4899,3002,1,2,f +4899,3002,15,2,f +4899,3002,2,2,f +4899,3002,14,2,f +4899,3003,2,4,f +4899,3003,15,6,f +4899,3003,1,6,f +4899,3003,4,6,f +4899,3003,14,6,f +4899,3003,0,4,f +4899,3004,14,6,f +4899,3004,2,2,f +4899,3004,0,2,f +4899,3004,1,4,f +4899,3004,4,6,f +4899,3004,15,4,f +4899,3004p0a,14,1,f +4899,3005pe1,2,2,f +4899,3007,4,1,f +4899,3008,4,2,f +4899,3009,14,2,f +4899,3009,4,2,f +4899,3010,4,6,f +4899,3010,2,2,f +4899,3010,1,4,f +4899,3010,0,2,f +4899,3010,15,4,f +4899,3010,14,4,f +4902,2412b,0,2,f +4902,2555,0,2,f +4902,3004,0,1,f +4902,30132,8,2,f +4902,30133,0,1,f +4902,30139,6,1,f +4902,30141,8,1,f +4902,3023,0,1,f +4902,3031,7,1,f +4902,3069bp03,7,1,f +4902,3069bpr0100,2,1,f +4902,3626bp35,14,1,f +4902,3626bpx28,14,1,f +4902,3629,6,1,f +4902,3629pw2,7,1,f +4902,4491b,6,1,f +4902,4493c01pb02,0,1,f +4902,4528,0,1,f +4902,6064,2,1,f +4902,6126a,57,2,f +4902,970c00,0,2,f +4902,973px161c01,8,1,f +4902,973px54c01,0,1,f +4904,2357,7,4,f +4904,2412b,0,6,f +4904,2420,7,4,f +4904,2431,1,3,f +4904,2582,47,10,f +4904,2875,0,4,f +4904,2877,0,16,f +4904,2878c01,0,4,f +4904,2920,0,2,f +4904,2972,7,1,f +4904,3004,0,2,f +4904,3004,7,6,f +4904,3005,7,12,f +4904,3008,7,4,f +4904,3010,7,2,f +4904,3020,7,6,f +4904,3022,15,2,f +4904,3023,0,2,f +4904,3023,4,4,f +4904,3023,15,6,f +4904,3023,14,8,f +4904,3023,7,8,f +4904,3023,1,4,f +4904,3030,1,1,f +4904,3031,1,1,f +4904,3032,7,2,f +4904,3034,14,2,f +4904,3035,1,1,f +4904,3040b,0,4,f +4904,3040b,7,4,f +4904,3068b,14,4,f +4904,3069b,14,2,f +4904,3069b,15,2,f +4904,3069b,7,2,f +4904,3069bp25,7,2,f +4904,3070b,1,4,f +4904,3070b,1,1,t +4904,3460,15,4,f +4904,3622,7,12,f +4904,3623,7,4,f +4904,3666,0,6,f +4904,3710,4,4,f +4904,3710,1,6,f +4904,3794a,0,4,f +4904,3794a,14,10,f +4904,3795,0,2,f +4904,3832,7,4,f +4904,3941,4,2,f +4904,4022,0,2,f +4904,4025,0,2,f +4904,4033,7,8,f +4904,4034,47,8,f +4904,4070,7,4,f +4904,4079,4,5,f +4904,4150,4,2,f +4904,4175,0,2,f +4904,4181p04,7,2,f +4904,4182p04,7,2,f +4904,4183,47,4,f +4904,4477,4,2,f +4904,4477,1,2,f +4904,4625,7,10,f +4904,4864bp10,7,2,f +4904,4864bp11,7,2,f +4904,69c01,15,2,f +4904,73092,0,2,f +4905,2412b,1,1,f +4905,298c02,15,2,f +4905,298c02,15,1,t +4905,3003,1,1,f +4905,3004,1,2,f +4905,3021,0,1,f +4905,30383,0,2,f +4905,30386,7,2,f +4905,30540,7,2,f +4905,3176,1,2,f +4905,4070,7,2,f +4905,41855,73,1,f +4905,4286,1,2,f +4905,6141,57,2,f +4905,6141,57,1,t +4905,73983,8,2,f +4906,3626bpr0252,14,1,f +4906,3962b,0,1,f +4906,4485,4,1,f +4906,970c00,1,1,f +4906,973pr1204c01,15,1,f +4907,30151a,47,1,f +4907,33291,5,1,f +4907,33291,191,1,f +4907,33291,70,2,f +4907,4032a,15,4,f +4907,6043173stk01,9999,1,t +4907,6141,27,4,f +4907,6141,29,6,f +4907,92947,19,1,f +4908,11203pr0012,191,1,f +4908,11203pr0013,29,1,f +4908,11477,85,3,f +4908,11618,191,1,f +4908,11640pr0002,85,1,f +4908,11816pr0005,78,1,f +4908,11816pr0017,78,1,f +4908,11833,47,1,f +4908,14769pr1020,297,1,f +4908,15470,297,2,f +4908,15573,26,2,f +4908,15573,15,1,f +4908,16925pr0005c01,19,1,f +4908,18674,72,1,f +4908,18854,45,1,f +4908,18920,179,1,f +4908,20482,297,1,f +4908,22667,4,1,f +4908,23969,26,2,f +4908,23969,322,2,f +4908,23986,5,1,f +4908,2412b,15,2,f +4908,2412b,71,1,f +4908,24131,322,1,f +4908,24131,191,1,f +4908,24183pr0001,19,1,f +4908,2423,2,1,f +4908,2540,15,1,f +4908,25403,15,1,f +4908,2566,0,1,f +4908,298c02,15,2,f +4908,3004,322,1,f +4908,3004,15,6,f +4908,3004,26,1,f +4908,3004,70,3,f +4908,3004,19,2,f +4908,3004,0,2,f +4908,3005,15,2,f +4908,3005pr0006,73,1,f +4908,30089,0,1,f +4908,30153,46,1,f +4908,3020,26,1,f +4908,3020,0,2,f +4908,3021,15,3,f +4908,3021,0,2,f +4908,3021,85,1,f +4908,3021,30,3,f +4908,3021,322,1,f +4908,3022,29,3,f +4908,3022,322,2,f +4908,3022,71,1,f +4908,3022,2,2,f +4908,3023,15,3,f +4908,3023,46,1,f +4908,3023,322,3,f +4908,3023,85,1,f +4908,3023,70,2,f +4908,30357,29,1,f +4908,30367c,15,1,f +4908,3040b,2,4,f +4908,3062b,15,2,f +4908,3062b,41,1,f +4908,3062b,0,1,f +4908,3068bpr0138,15,1,f +4908,3069b,322,3,f +4908,3069b,85,2,f +4908,3069bpr0099,15,1,f +4908,33057,484,2,f +4908,33172,25,1,f +4908,33183,10,2,f +4908,33291,10,2,f +4908,33291,4,6,f +4908,33291,30,1,f +4908,3623,15,1,f +4908,3624,0,1,f +4908,3626b,15,1,f +4908,3659,15,3,f +4908,3679,71,2,f +4908,3680,15,2,f +4908,3688,2,1,f +4908,3700,15,1,f +4908,3710,70,3,f +4908,3710,19,2,f +4908,3710,29,2,f +4908,3710,26,2,f +4908,3710,30,2,f +4908,3899,4,2,f +4908,3899,15,1,f +4908,4032a,2,1,f +4908,4032a,15,2,f +4908,4032a,70,3,f +4908,4286,2,4,f +4908,4345b,4,1,f +4908,4346,15,1,f +4908,4490,15,1,f +4908,4599b,71,2,f +4908,4733,15,1,f +4908,4865b,322,2,f +4908,54200,15,1,f +4908,59230,15,1,f +4908,59900,15,1,f +4908,60474,212,2,f +4908,60475b,15,3,f +4908,60897,4,1,f +4908,6141,57,3,f +4908,6141,46,4,f +4908,6141,70,2,f +4908,6141,85,1,f +4908,6141,45,3,f +4908,6266,15,2,f +4908,64647,57,2,f +4908,64648,179,1,f +4908,87552,40,2,f +4908,87580,26,1,f +4908,87580,0,1,f +4908,87580,15,1,f +4908,87580,297,1,f +4908,88072,15,1,f +4908,90370pr0005,0,1,f +4908,92257,308,1,f +4908,92258,0,1,f +4908,92456pr0105c01,78,1,f +4908,92456pr0106c01,78,1,f +4908,92820pr0106c01,320,1,f +4908,93082,191,1,f +4908,93273,0,2,f +4908,93555,179,4,f +4908,98100,15,1,f +4908,98138,47,1,f +4908,98138,15,1,f +4908,98138pr0050,19,1,f +4908,99780,71,1,f +4908,99781,71,1,f +4909,3001,1,3,f +4909,3001,4,4,f +4909,3001,14,5,f +4909,3002,14,2,f +4909,3002,1,2,f +4909,3002,4,2,f +4909,3003,1,2,f +4909,3003,4,4,f +4909,3003,14,3,f +4909,3004,14,16,f +4909,3004,1,8,f +4909,3004,4,10,f +4909,3004,47,2,f +4909,3005,4,2,f +4909,3005,14,8,f +4909,3008,14,2,f +4909,3009,4,3,f +4909,3009,14,4,f +4909,3010,4,6,f +4909,3010,14,7,f +4909,3020,1,2,f +4909,3021,1,2,f +4909,3022,1,2,f +4909,3031,1,1,f +4909,3032,1,1,f +4909,3034,1,4,f +4909,3039,1,1,f +4909,3039,47,2,f +4909,3081cc01,4,2,f +4909,3137c01,0,2,f +4909,3297,1,4,f +4909,3298,1,2,f +4909,3299,1,2,f +4909,3300,1,1,f +4909,3460,1,4,f +4909,3461,15,1,f +4909,3462,1,1,f +4909,3480,7,1,f +4909,3481,1,1,f +4909,3622,14,6,f +4909,3622,4,4,f +4909,3626apr0001,14,1,f +4909,3633,4,3,f +4909,3641,0,4,f +4909,3660,1,2,f +4909,3710,1,2,f +4909,3741,2,2,f +4909,3742,4,3,f +4909,3742,4,1,t +4909,3742,15,3,f +4909,3742,15,1,t +4909,3823,47,1,f +4909,3853,15,3,f +4909,3854,4,2,f +4909,3856,2,4,f +4909,3861b,15,1,f +4909,3867,2,1,f +4909,3901,6,1,f +4909,970c00,0,1,f +4909,973c01,15,1,f +4912,3001a,4,2,f +4912,3010,1,4,f +4912,3028,7,1,f +4912,3034,15,1,f +4912,3035,15,2,f +4912,3145,15,2,f +4912,7049b,15,2,f +4912,737ac01,4,1,f +4912,737ac02,4,1,f +4912,wheel2b,4,4,f +4913,2432,70,2,f +4913,2542,70,1,f +4913,2551,70,2,f +4913,2614,0,2,f +4913,2654,19,2,f +4913,2723,0,4,f +4913,30136,19,2,f +4913,30153,33,4,f +4913,3032,72,1,f +4913,3037,71,2,f +4913,30374,70,2,f +4913,30377,0,1,t +4913,30377,0,2,f +4913,30552,0,1,f +4913,3062b,4,2,f +4913,32039,191,2,f +4913,32056,272,2,f +4913,32062,0,2,f +4913,32124,0,1,f +4913,3626bpr0411,14,1,f +4913,3626bpr0437,71,1,f +4913,3705,0,2,f +4913,3709,72,1,f +4913,3710,72,2,f +4913,3794a,71,4,f +4913,4032a,0,1,f +4913,40379,272,1,f +4913,4070,72,1,f +4913,4081b,19,4,f +4913,4081b,4,1,f +4913,4095,70,1,f +4913,4095,0,2,f +4913,41529,272,1,f +4913,4495b,4,1,f +4913,45590,0,2,f +4913,4599a,71,2,f +4913,4697b,71,2,f +4913,4697b,71,1,t +4913,47905,0,1,f +4913,4794b,288,2,f +4913,48002,70,1,f +4913,48495,179,1,f +4913,48729a,72,7,f +4913,53450,132,2,f +4913,53451,15,1,t +4913,53451,15,14,f +4913,53705,132,1,f +4913,54255pb02,9999,2,f +4913,56823,0,1,f +4913,6005,4,2,f +4913,6091,4,2,f +4913,6126a,57,1,f +4913,6141,4,1,t +4913,6141,4,2,f +4913,6541,4,2,f +4913,970c00,288,1,f +4913,970x154,0,1,f +4913,973pb0377c01,72,1,f +4913,973pr1214c01,72,1,f +4914,12825,4,2,f +4914,12825,72,4,f +4914,2335,15,1,f +4914,2412b,42,6,f +4914,2454a,0,1,f +4914,2456,70,2,f +4914,2654,19,2,f +4914,2654,0,1,f +4914,3003,27,2,f +4914,3003,0,1,f +4914,3004,27,2,f +4914,3004,25,2,f +4914,3008,72,1,f +4914,3009,71,2,f +4914,3009,0,2,f +4914,30145,28,1,f +4914,30157,70,1,f +4914,30173b,0,1,f +4914,30173b,179,1,f +4914,30174,72,1,f +4914,3020,70,1,f +4914,3020,71,1,f +4914,3021,2,3,f +4914,3022,25,1,f +4914,3022,4,4,f +4914,3022,2,2,f +4914,3023,72,1,f +4914,30236,72,1,f +4914,3031,19,1,f +4914,3031,71,1,f +4914,3031,72,1,f +4914,3035,0,4,f +4914,3037,71,2,f +4914,3039,0,2,f +4914,3039,27,3,f +4914,3040b,27,4,f +4914,3040b,28,1,f +4914,3049d,0,2,f +4914,3062b,19,2,f +4914,3068b,72,2,f +4914,3069b,19,5,f +4914,32054,0,2,f +4914,32062,4,2,f +4914,32064b,4,2,f +4914,32192,2,4,f +4914,3460,0,2,f +4914,3626cpr0744,14,1,f +4914,3660,27,4,f +4914,3660,72,2,f +4914,3679,71,2,f +4914,3680,4,2,f +4914,3700,71,3,f +4914,3700,0,5,f +4914,3708,0,2,f +4914,3710,0,4,f +4914,3710,70,1,f +4914,3794b,4,2,f +4914,3794b,72,2,f +4914,3830,0,2,f +4914,3831,0,2,f +4914,3848,148,1,f +4914,3957a,42,2,f +4914,4032a,308,1,f +4914,4032a,4,2,f +4914,4085c,4,2,f +4914,4085c,71,8,f +4914,41767,72,2,f +4914,41768,72,2,f +4914,41769,70,1,f +4914,41770,70,1,f +4914,43337,71,1,f +4914,43337,19,1,f +4914,4497,148,1,f +4914,4519,71,2,f +4914,4643646,9999,1,f +4914,4643647,9999,1,f +4914,4643648,9999,1,f +4914,4643649,9999,1,f +4914,4643650,9999,1,f +4914,47753pr0004,27,1,f +4914,48336,2,3,f +4914,50950,27,4,f +4914,51739,320,1,f +4914,53451,15,1,t +4914,53451,15,4,f +4914,54200,71,8,f +4914,54200,71,1,t +4914,59229,72,1,f +4914,60470a,2,3,f +4914,60752,297,1,f +4914,6091,27,2,f +4914,6126b,57,1,f +4914,6141,0,7,f +4914,6141,42,2,f +4914,6141,42,1,t +4914,6141,0,1,t +4914,63965,70,1,f +4914,63965,297,1,f +4914,6541,14,4,f +4914,87617,4,2,f +4914,92946,4,2,f +4914,93273,27,1,f +4914,9558stk01,9999,1,t +4914,970c00pr0193,4,1,f +4914,973pr1716c01,4,1,f +4914,98130pr0001,72,1,f +4914,98283,28,4,f +4914,98341pr0005,179,1,f +4914,98354pr0008,25,1,f +4914,98560,28,2,f +4917,tray02,1,1,f +4918,x1330px1,9999,1,f +4918,x1331px1,9999,1,f +4920,3002,0,1,f +4920,3004,0,2,f +4920,3005pe1,15,2,f +4920,3021,0,1,f +4920,3022,0,1,f +4920,3023,0,3,f +4920,3660,0,1,f +4920,3794a,0,1,f +4920,6141,42,1,f +4920,6141,42,1,t +4921,3003pe2,14,1,f +4921,3020,1,1,f +4921,3020,4,1,f +4921,3021,4,1,f +4921,3022,1,1,f +4921,3039,15,1,f +4921,4871,1,1,f +4922,3034,15,6,f +4922,3068ap01,15,1,f +4922,3068ap02,15,1,f +4922,3245ap01,15,1,f +4922,3245ap02,15,1,f +4922,sw12v1leftm,1,1,f +4922,sw12v1rightm,1,1,f +4923,45575,71,2,f +4923,45799,71,2,f +4923,45805c02,0,1,f +4923,85544,2,1,f +4924,2357,71,15,f +4924,2412b,19,2,f +4924,2449,70,2,f +4924,2449,71,2,f +4924,2454a,71,2,f +4924,2454a,72,1,f +4924,2462,71,4,f +4924,2489,70,1,f +4924,2570,70,1,f +4924,2921,0,1,f +4924,3002,71,2,f +4924,3003,72,1,f +4924,3003,71,2,f +4924,3004,70,1,f +4924,3004,0,1,f +4924,30046,297,2,f +4924,3005,378,2,f +4924,3005,84,2,f +4924,3009,71,5,f +4924,30136,72,11,f +4924,30136,70,4,f +4924,30137,71,2,f +4924,30137,70,4,f +4924,30145,71,3,f +4924,30153,36,1,f +4924,30173b,0,8,f +4924,3020,70,7,f +4924,3021,0,2,f +4924,3021,70,4,f +4924,3022,0,1,f +4924,3022,72,2,f +4924,3023,70,10,f +4924,30238,0,3,f +4924,3024,0,1,f +4924,3027,72,2,f +4924,3032,70,5,f +4924,3034,71,6,f +4924,3036,72,2,f +4924,30363,378,8,f +4924,30374,0,1,f +4924,30374,70,4,f +4924,3039,70,2,f +4924,3039,378,2,f +4924,30503,71,4,f +4924,30552,0,8,f +4924,3062b,33,1,f +4924,3062b,46,1,f +4924,3062b,36,1,f +4924,3062b,34,1,f +4924,3062b,70,5,f +4924,3068b,72,1,f +4924,3069b,28,1,f +4924,3069b,72,11,f +4924,3069b,70,8,f +4924,3069bpr0055,15,1,f +4924,3069bpr0114,0,1,f +4924,32062,4,1,f +4924,3245c,71,5,f +4924,33057,484,1,f +4924,3307,84,1,f +4924,3307,71,1,f +4924,33183,10,1,t +4924,33183,10,2,f +4924,3455,0,4,f +4924,3626bpr0609,25,3,f +4924,3626bpr0703,78,1,f +4924,3626bpr0708,78,1,f +4924,3626bpr0709,78,1,f +4924,3626bpr0724,78,1,f +4924,3633,0,1,f +4924,3660,0,3,f +4924,3665,70,14,f +4924,3665,71,2,f +4924,3666,72,4,f +4924,3666,484,2,f +4924,3675,378,4,f +4924,3679,71,1,f +4924,3680,0,1,f +4924,3700,4,1,f +4924,3710,71,4,f +4924,3710,70,8,f +4924,3710,19,6,f +4924,3794b,297,1,f +4924,3795,70,2,f +4924,3795,72,2,f +4924,3830,71,2,f +4924,3831,72,2,f +4924,3899,47,1,f +4924,3941,70,1,f +4924,3941,71,5,f +4924,40233,0,1,f +4924,40234,71,1,f +4924,40238,0,1,f +4924,40250pr03,308,1,f +4924,4032a,70,11,f +4924,41535,288,1,f +4924,4286,378,14,f +4924,4332,0,1,f +4924,4341,0,1,f +4924,44302a,0,8,f +4924,44728,0,1,f +4924,4589,15,1,f +4924,4589,29,2,f +4924,4740pr0001a,4,2,f +4924,47753pr17,70,1,f +4924,48336,0,1,f +4924,4855,0,1,f +4924,4865a,0,4,f +4924,50304,71,4,f +4924,50305,71,4,f +4924,51739,72,4,f +4924,53451,135,2,f +4924,53451,135,1,t +4924,53705,132,1,f +4924,59363,70,1,f +4924,59443,4,1,f +4924,60470a,71,1,f +4924,60471,71,8,f +4924,60475a,72,6,f +4924,60475a,84,1,f +4924,60476,0,1,f +4924,60583a,84,1,f +4924,60594,72,1,f +4924,60607,297,2,f +4924,6091,0,4,f +4924,6141,25,5,f +4924,6141,72,2,t +4924,6141,36,1,t +4924,6141,36,1,f +4924,6141,4,3,f +4924,6141,25,2,t +4924,6141,19,7,f +4924,6141,15,2,f +4924,6141,182,1,t +4924,6141,72,8,f +4924,6141,19,2,t +4924,6141,182,1,f +4924,6141,0,1,t +4924,6141,0,4,f +4924,6141,4,1,t +4924,6141,15,1,t +4924,6232,70,1,f +4924,6255,2,1,f +4924,6256,191,1,f +4924,62808,72,2,f +4924,62930,47,1,f +4924,64390,70,2,f +4924,64647,57,2,f +4924,64647,57,1,t +4924,64648,135,1,f +4924,6636,70,8,f +4924,87087,4,2,f +4924,87421,71,4,f +4924,87580,28,1,f +4924,87991,484,1,f +4924,92084pr0001,70,1,f +4924,92084pr0002,72,1,f +4924,95120,72,4,f +4924,970c00,0,3,f +4924,973pr1671c01,72,3,f +4925,122c01,0,2,f +4925,3004,0,2,f +4925,3004,14,2,f +4925,3010pb035e,14,1,f +4925,3020,14,1,f +4925,3021,14,2,f +4925,3022,0,1,f +4925,3022,14,1,f +4925,3023,0,4,f +4925,3023,14,2,f +4925,3062a,7,1,f +4925,3641,0,4,f +4925,3678a,47,1,f +4925,3700,0,2,f +4925,3787,14,1,f +4925,3788,14,1,f +4925,3832,0,2,f +4925,649pb09,15,1,f +4925,818,14,1,f +4926,2335,0,2,f +4926,2412b,297,2,f +4926,2413,28,5,f +4926,2413,0,1,f +4926,2415,71,1,f +4926,2431,0,3,f +4926,2444,0,4,f +4926,2445,72,2,f +4926,2450,28,2,f +4926,2460,0,1,f +4926,2465,0,2,f +4926,2476a,71,2,f +4926,2540,72,4,f +4926,2654,71,2,f +4926,2780,0,1,f +4926,2780,0,1,t +4926,2817,71,1,f +4926,2905,0,2,f +4926,3001,0,1,f +4926,3002,1,1,f +4926,3003,0,2,f +4926,3003,71,2,f +4926,30136,70,7,f +4926,30151a,42,6,f +4926,30157,70,1,f +4926,3020,71,1,f +4926,3020,0,4,f +4926,3021,14,1,f +4926,3022,72,5,f +4926,3023,71,4,f +4926,3023,1,5,f +4926,3032,72,1,f +4926,30332,0,1,f +4926,3035,0,1,f +4926,30367b,0,1,f +4926,30372,40,1,f +4926,30374,0,2,f +4926,30377,71,2,f +4926,3039,0,2,f +4926,3039,1,1,f +4926,3039pr0014,0,1,f +4926,30552,72,3,f +4926,30553,0,1,f +4926,3065,47,1,f +4926,3068b,1,1,f +4926,3069b,70,3,f +4926,3069bpr0101,71,1,f +4926,3139,0,1,f +4926,32013,0,1,f +4926,32064b,71,4,f +4926,32073,71,3,f +4926,32123b,71,2,t +4926,32123b,71,7,f +4926,32138,0,1,f +4926,3298,0,2,f +4926,3464,15,1,f +4926,3623,71,2,f +4926,3626bpr0476,78,1,f +4926,3626bpr0486,294,1,f +4926,3626bpr0507,25,2,f +4926,3660,0,4,f +4926,3665,0,2,f +4926,3666,72,2,f +4926,3700,0,2,f +4926,3710,1,2,f +4926,3713,71,1,t +4926,3713,71,4,f +4926,3747b,0,2,f +4926,3749,19,3,f +4926,3794a,72,5,f +4926,3957a,0,2,f +4926,4032a,71,6,f +4926,4070,72,2,f +4926,4095,72,1,f +4926,41678,0,1,f +4926,41747,0,1,f +4926,41748,0,1,f +4926,41764,0,1,f +4926,41765,0,1,f +4926,41767,72,1,f +4926,41768,72,1,f +4926,41769,70,1,f +4926,41769,72,2,f +4926,41770,70,1,f +4926,41770,72,2,f +4926,42022,0,2,f +4926,42023,0,2,f +4926,42610,71,4,f +4926,4274,1,4,f +4926,4274,1,1,t +4926,4286,0,1,f +4926,43093,1,1,f +4926,43713,72,1,f +4926,43719,72,1,f +4926,43722,0,1,f +4926,43723,0,1,f +4926,43857,14,1,f +4926,44301a,72,2,f +4926,44567a,71,1,f +4926,44728,0,2,f +4926,4477,70,3,f +4926,4588,72,2,f +4926,4589,2,4,f +4926,4589,46,1,t +4926,4589,14,2,f +4926,4589,46,2,f +4926,4589,0,4,f +4926,47456,0,2,f +4926,47458,0,2,f +4926,47757,28,1,f +4926,48169,72,1,f +4926,4854,72,1,f +4926,4865a,15,2,f +4926,4871,72,1,f +4926,48729a,0,2,f +4926,50943,72,1,f +4926,50947,0,2,f +4926,51011,0,4,f +4926,52107,0,1,f +4926,54200,34,1,f +4926,54200,36,1,f +4926,54200,0,12,f +4926,55704,272,1,f +4926,55706,0,1,f +4926,55707a,0,1,f +4926,55707e,0,2,f +4926,56619,0,1,f +4926,56630,272,1,f +4926,57028c01,71,1,f +4926,57585,71,3,f +4926,57796,0,1,f +4926,57906,0,3,f +4926,59229,72,1,f +4926,60208,28,1,f +4926,6131,0,1,f +4926,6141,0,1,t +4926,6141,135,8,f +4926,6141,0,4,f +4926,6141,135,1,t +4926,6191,28,2,f +4926,6239,28,1,f +4926,6553,0,2,f +4926,6564,0,1,f +4926,6565,0,1,f +4926,6587,72,2,f +4926,75535,0,1,f +4926,7786stk01,9999,1,t +4926,85973,0,1,f +4926,970c00,70,1,f +4926,970x140,71,1,f +4926,973pr1289c01,70,1,f +4926,973pr1338c01,71,1,f +4926,98721,0,3,f +4928,2412b,3,2,f +4928,2460,7,1,f +4928,2540,3,1,f +4928,298c02,14,2,f +4928,3002,14,1,f +4928,3004,7,2,f +4928,30133,0,1,f +4928,30135,8,1,f +4928,30303pb01,8,1,f +4928,3039px16,8,1,f +4928,3626bpx32,14,1,f +4928,3660,14,1,f +4928,4617b,6,1,f +4928,4623,7,1,f +4928,4740,8,1,f +4928,6019,7,1,f +4928,6141,42,1,f +4928,970c00,8,1,f +4928,973pb0070c01,8,1,f +4929,2555,15,2,f +4929,3003,14,1,f +4929,3004,14,1,f +4929,30086,5,1,f +4929,30109c01,1,1,f +4929,30217,5,1,f +4929,30218,15,2,f +4929,30220,462,1,f +4929,30222,6,1,f +4929,30222,4,1,f +4929,3030,10,1,f +4929,3062b,33,1,f +4929,3062b,46,1,f +4929,33120,462,1,f +4929,33120,15,1,f +4929,33121,4,1,f +4929,33122,462,2,f +4929,3659,14,2,f +4929,3659,15,4,f +4929,3942c,14,1,f +4929,4589,33,1,f +4929,4589,46,1,f +4929,4794b,15,2,f +4929,6141,46,1,f +4929,6141,36,2,f +4929,6141,36,1,t +4929,6141,33,1,f +4929,6141,33,1,t +4929,6141,46,1,t +4929,6162,18,1,f +4929,6176,15,1,f +4929,6250,8,1,f +4929,6252,14,1,f +4929,6253,15,1,f +4929,belvfem42,9999,1,f +4929,belvskirt12,5,1,f +4930,122c01,7,2,f +4930,3001,1,3,f +4930,3004,1,4,f +4930,3004p20,1,2,f +4930,3004p90,1,4,f +4930,3005,1,6,f +4930,3008,1,7,f +4930,3009,1,1,f +4930,3010,1,10,f +4930,3010ap04,1,3,f +4930,3010pr0928,1,2,f +4930,3020,7,4,f +4930,3020,1,1,f +4930,3021,7,5,f +4930,3021,1,2,f +4930,3022,1,2,f +4930,3022,7,6,f +4930,3023,7,2,f +4930,3023,1,2,f +4930,3024,1,2,f +4930,3024,34,2,f +4930,3024,36,2,f +4930,3028,7,2,f +4930,3029,7,2,f +4930,3030,7,3,f +4930,3030,46,1,f +4930,3031,7,2,f +4930,3032,7,1,f +4930,3032,1,4,f +4930,3034,7,10,f +4930,3035,7,2,f +4930,3035,1,1,f +4930,3039,7,1,f +4930,3039p23,7,1,f +4930,3039p23,1,1,f +4930,3039p34,1,1,f +4930,3039p34,7,1,f +4930,3040b,1,4,f +4930,3062a,36,15,f +4930,3062a,34,1,f +4930,3066,46,7,f +4930,3067,46,2,f +4930,3069b,1,7,f +4930,3070b,1,2,f +4930,3144,7,1,f +4930,3149c01,7,1,f +4930,3297,7,2,f +4930,3298,7,2,f +4930,3460,1,4,f +4930,3460,7,6,f +4930,3479,7,6,f +4930,3479,1,8,f +4930,3622,1,10,f +4930,3623,1,4,f +4930,3623,0,4,f +4930,3623,14,8,f +4930,3626apr0001,14,4,f +4930,3641,0,4,f +4930,3660,1,9,f +4930,3665,1,2,f +4930,3666,7,7,f +4930,3666,1,3,f +4930,3710,7,5,f +4930,3710,1,6,f +4930,3794a,7,1,f +4930,3795,1,2,f +4930,3795,7,5,f +4930,3821,7,1,f +4930,3822,7,1,f +4930,3829c01,7,2,f +4930,3830,1,4,f +4930,3831,1,4,f +4930,3832,7,3,f +4930,3838,7,1,f +4930,3838,4,2,f +4930,3838,15,2,f +4930,3839a,7,4,f +4930,3842a,4,2,f +4930,3842a,15,2,f +4930,3933a,7,4,f +4930,3934a,7,4,f +4930,3935,7,2,f +4930,3936,7,2,f +4930,3937,1,2,f +4930,3938,1,2,f +4930,3939,46,3,f +4930,3939p91,1,1,f +4930,3940b,7,5,f +4930,3941,7,4,f +4930,3942a,7,2,f +4930,3943a,7,7,f +4930,3947a,7,1,f +4930,3956,1,2,f +4930,3956,7,3,f +4930,3957a,7,2,f +4930,3958,7,3,f +4930,3959,7,1,f +4930,3961,7,1,f +4930,3962a,0,2,f +4930,3963,7,2,f +4930,4006,0,1,f +4930,6099p05,7,1,f +4930,970c00,15,2,f +4930,970c00,4,2,f +4930,973p90c02,4,2,f +4930,973p90c05,15,2,f +4932,2715,0,1,f +4932,2715,1,1,f +4932,2715,4,1,f +4932,2716,47,3,f +4932,tech012,9999,1,f +4932,tech018,9999,1,f +4932,tech020,9999,1,f +4933,2420,0,2,f +4933,2717,14,1,f +4933,2730,0,2,f +4933,2780,0,6,f +4933,2790,7,1,f +4933,2791,7,1,f +4933,2792,0,1,f +4933,2819,7,1,f +4933,2825,14,2,f +4933,2994,14,4,f +4933,3024,7,2,f +4933,3069b,15,2,f +4933,3647,7,1,t +4933,3647,7,1,f +4933,3701,0,2,f +4933,3702,0,2,f +4933,3705,0,1,f +4933,3706,0,1,f +4933,3707,0,1,f +4933,3709,7,1,f +4933,3710,0,1,f +4933,3710,7,1,f +4933,3713,7,4,f +4933,3713,7,1,t +4933,3737,0,1,f +4933,3749,7,4,f +4933,3894,0,2,f +4933,4070,0,4,f +4933,4261,7,2,f +4933,4265b,7,1,t +4933,4265b,7,6,f +4933,4274,7,2,f +4933,4274,7,1,t +4933,4442,0,1,f +4933,4519,0,2,f +4933,4858,0,1,f +4933,6536,7,4,f +4933,6558,0,2,f +4933,6578,0,4,f +4933,6587,8,2,f +4933,6632,0,2,f +4933,73129,7,1,f +4933,75c28,14,1,f +4934,3626bpb0153,6,1,f +4934,43702pr0001,25,1,f +4934,973bpb153c01,0,1,f +4934,x494cx1,0,1,f +4935,3001a,0,1,f +4935,3002a,14,1,f +4935,3003,4,1,f +4935,3004,14,2,f +4935,3004,0,1,f +4935,3005,0,2,f +4935,3023,0,3,f +4935,3024,14,3,f +4935,3032,4,1,f +4935,3035,4,2,f +4935,3062a,14,2,f +4935,3137c01,0,6,f +4935,3139,0,12,f +4935,3183b,4,2,f +4935,3184,4,2,f +4935,3185,4,4,f +4936,3005pe1,15,2,f +4936,3010,15,4,f +4936,30237a,15,1,f +4936,4088,26,1,f +4936,4332,70,1,f +4937,2335,15,4,f +4937,2357,70,2,f +4937,2419,0,1,f +4937,2450,28,2,f +4937,2519stk01,9999,1,t +4937,2555,0,4,f +4937,2654,72,1,f +4937,2780,0,8,f +4937,2921,70,4,f +4937,3001,0,2,f +4937,3002,72,2,f +4937,3003,72,2,f +4937,30136,70,9,f +4937,30137,70,2,f +4937,30165,72,2,f +4937,30173b,179,2,f +4937,30173b,0,1,f +4937,30176,2,4,f +4937,30177,1,1,f +4937,3020,70,5,f +4937,3021,4,2,f +4937,3022,72,2,f +4937,3022,19,2,f +4937,3023,0,14,f +4937,3034,19,4,f +4937,3034,72,4,f +4937,30367b,4,1,f +4937,30374,297,2,f +4937,30414,4,1,f +4937,3062b,19,6,f +4937,3062b,70,4,f +4937,3068b,0,1,f +4937,3068b,72,4,f +4937,3069b,4,2,f +4937,3069b,70,3,f +4937,3069b,72,4,f +4937,32000,4,4,f +4937,32054,0,1,f +4937,32073,71,1,f +4937,32125,71,4,f +4937,32474,4,2,f +4937,32525,0,1,f +4937,3622,70,2,f +4937,3623,0,4,f +4937,3623,4,4,f +4937,3626bpr0746,14,1,f +4937,3660,70,2,f +4937,3665,0,2,f +4937,3666,0,3,f +4937,3666,4,2,f +4937,3700,72,8,f +4937,3710,4,5,f +4937,3710,72,4,f +4937,3710,70,1,f +4937,3713,4,2,f +4937,3795,70,3,f +4937,3848,72,2,f +4937,3941,70,6,f +4937,4032a,70,8,f +4937,4032a,4,6,f +4937,40490,4,5,f +4937,4070,70,8,f +4937,4085c,0,6,f +4937,4150,4,3,f +4937,41769,70,1,f +4937,41770,70,1,f +4937,4274,1,13,f +4937,4286,0,8,f +4937,43899,71,2,f +4937,48729b,0,5,f +4937,48729b,0,1,t +4937,53451,4,1,f +4937,53451,4,1,t +4937,53989,297,2,f +4937,54200,4,8,f +4937,54200,4,1,t +4937,60475a,0,2,f +4937,60476,71,4,f +4937,61184,71,2,f +4937,6141,297,10,f +4937,6141,15,14,f +4937,6141,297,2,t +4937,6141,15,1,t +4937,6141,0,2,t +4937,6141,0,8,f +4937,6232,72,1,f +4937,6260,19,6,f +4937,6265,19,12,f +4937,6265,19,1,t +4937,6266,19,12,f +4937,63965,70,4,f +4937,64567,71,2,f +4937,64644,0,1,f +4937,64889pr0001,179,1,f +4937,64951,70,1,f +4937,6541,0,4,f +4937,6558,1,4,f +4937,6636,4,2,f +4937,73983,2,4,f +4937,75c20,71,2,f +4937,85970,4,4,f +4937,87083,72,1,f +4937,87087,4,2,f +4937,87609,4,2,f +4937,87747,297,4,f +4937,88292,0,4,f +4937,92547pr0015,297,1,f +4937,92690,71,2,f +4937,92947,4,1,f +4937,973pr1749c01,1,1,f +4938,2412b,15,1,f +4938,2436,4,1,f +4938,2540,7,1,f +4938,2569,7,1,f +4938,3020,4,2,f +4938,3021,4,2,f +4938,3023,4,2,f +4938,3023,0,1,f +4938,3024,4,2,f +4938,3024,36,2,f +4938,3034,0,1,f +4938,3062b,14,1,f +4938,3068bp57,4,1,f +4938,3070b,46,2,f +4938,3623,4,2,f +4938,3626bp05,14,1,f +4938,3710,4,3,f +4938,3788,4,2,f +4938,3823,41,1,f +4938,3829c01,15,1,f +4938,3834,15,1,f +4938,3835,0,1,f +4938,3841,8,1,f +4938,3962a,0,1,f +4938,4081b,15,2,f +4938,4083,15,1,f +4938,4085c,4,4,f +4938,4599a,14,1,f +4938,4600,0,2,f +4938,6014a,15,4,f +4938,6015,0,4,f +4938,6019,7,1,f +4938,6141,33,2,f +4938,6141,47,2,f +4938,6141,33,1,t +4938,6141,47,1,t +4938,970c00,0,1,f +4938,973px121c01,0,1,f +4939,11269,57,1,f +4939,11270,35,1,f +4939,11271,148,1,f +4939,11279,179,1,f +4939,32013,0,1,f +4939,32015,0,1,f +4939,32062,4,2,f +4939,32062,4,1,t +4939,43093,1,1,t +4939,43093,1,3,f +4939,44294,71,1,f +4939,4589,182,1,f +4939,4589,182,1,t +4939,53451,179,2,t +4939,53451,179,4,f +4939,59443,4,3,f +4939,61184,71,1,f +4939,62462,71,2,f +4939,64713,179,1,f +4939,90608,0,2,f +4939,90611,0,2,f +4939,90617,72,4,f +4939,90626,0,1,f +4939,90639,57,1,f +4939,90640,148,2,f +4939,90641,57,3,f +4939,90661,179,2,f +4939,93575,25,2,f +4939,98313,25,4,f +4939,98570pat01,15,1,f +4939,98592,179,1,f +4939,98606,148,1,f +4940,3437,15,2,f +4940,3437,4,2,f +4940,4066,73,6,f +4940,40666,10,1,f +4940,4199pb02,15,1,f +4940,47509,135,1,f +4940,58498c01,0,1,f +4940,60777,1,1,f +4940,6474pb24,14,1,f +4940,87084,4,2,f +4940,88760,0,2,f +4940,88762c01pb08,0,2,f +4940,88762c01pb14,0,2,f +4940,88765pb03,4,1,f +4940,98223,14,1,f +4940,98233,10,3,f +4940,98249pb01,14,1,f +4943,3001a,1,8,f +4943,3001a,4,8,f +4943,3001a,15,8,f +4943,3001a,47,2,f +4943,3001a,14,8,f +4943,3002a,4,4,f +4943,3002a,1,4,f +4943,3002a,15,4,f +4943,3002a,14,4,f +4943,3003,14,6,f +4943,3003,4,6,f +4943,3003,1,6,f +4943,3003,15,6,f +4943,3007,1,2,f +4943,3471,2,1,f +4943,3483,0,4,f +4943,4130,4,1,f +4943,4131,14,1,f +4943,4132,4,1,f +4943,4133,14,1,f +4943,4180c02,0,2,f +4943,4202,4,1,f +4944,2343,47,2,f +4944,3852b,17,1,f +4944,6176,20,1,f +4944,6176,5,1,f +4944,6186,14,1,f +4944,6203,5,1,f +4944,6206,15,1,f +4944,bel002,77,1,f +4944,bel002,18,1,f +4945,11153,70,2,f +4945,11267,322,1,f +4945,11407pr0005,1,1,f +4945,11408pr0013c01,78,1,f +4945,11458,72,2,f +4945,11477,322,2,f +4945,11477,70,1,f +4945,11816pr0019,78,1,f +4945,11818pr0009,78,1,f +4945,14716,19,2,f +4945,14769,71,3,f +4945,14769,19,1,f +4945,15068,322,2,f +4945,15068,72,2,f +4945,15070,27,2,f +4945,15207,70,8,f +4945,15573,70,3,f +4945,15573,297,2,f +4945,15573,19,16,f +4945,15672,19,2,f +4945,15712,297,4,f +4945,15712,70,2,f +4945,15745,45,2,f +4945,18649,71,2,f +4945,18677,71,1,f +4945,18838,19,1,f +4945,19201pr0001,323,1,f +4945,19203pr0001,308,1,f +4945,22667,26,1,t +4945,22667,26,1,f +4945,22888,19,3,f +4945,2357,72,2,f +4945,23969,41,2,f +4945,24130,34,1,f +4945,24132,34,1,f +4945,24183pr0004,71,1,f +4945,2420,15,1,f +4945,2420,72,1,f +4945,2423,5,2,f +4945,2431,19,1,f +4945,2431,322,1,f +4945,2436,71,2,f +4945,2460,72,1,f +4945,26090pr0006,27,1,f +4945,3004,19,4,f +4945,3004,31,4,f +4945,3005,45,2,f +4945,3005,31,2,f +4945,3005,71,4,f +4945,3009,72,2,f +4945,30099,72,2,f +4945,30153,41,1,f +4945,3020,19,1,f +4945,3021,70,2,f +4945,3021,15,1,f +4945,3021,72,2,f +4945,3023,26,1,f +4945,3023,72,6,f +4945,3023,27,2,f +4945,3024,71,1,t +4945,3024,71,1,f +4945,3031,72,1,f +4945,3031,27,1,f +4945,3034,72,1,f +4945,3036,27,1,f +4945,30374,52,2,f +4945,3040b,72,3,f +4945,3065,42,1,f +4945,3065,45,2,f +4945,3065,35,1,f +4945,3068b,15,2,f +4945,3068bpr0291,19,1,f +4945,3069b,71,2,f +4945,3069b,70,1,f +4945,3069b,31,2,f +4945,3069b,26,2,f +4945,3070b,70,2,t +4945,3070b,70,3,f +4945,3070b,322,1,f +4945,3070b,322,1,t +4945,3176,72,2,f +4945,32556,19,1,f +4945,33183,70,1,f +4945,33183,70,1,t +4945,33291,31,2,f +4945,33291,31,2,t +4945,33291,191,1,t +4945,33291,191,2,f +4945,3622,72,4,f +4945,3623,72,1,f +4945,3623,19,3,f +4945,3659,72,1,f +4945,3660,72,1,f +4945,3665,19,2,f +4945,3666,72,1,f +4945,3700,71,1,f +4945,3710,70,1,f +4945,3710,19,2,f +4945,3841,297,2,f +4945,3942c,72,1,f +4945,4286,31,2,f +4945,4287,72,2,f +4945,43888,70,4,f +4945,43892,308,1,f +4945,4519,71,1,f +4945,4740,52,1,f +4945,47847,31,1,f +4945,48336,15,1,f +4945,4871,70,2,f +4945,49668,19,1,f +4945,50950,322,2,f +4945,52501,15,2,f +4945,54200,47,9,f +4945,54200,191,2,f +4945,54200,41,2,f +4945,54200,191,1,t +4945,54200,71,2,f +4945,54200,71,1,t +4945,54200,41,1,t +4945,54200,47,2,t +4945,59900,15,1,f +4945,59900,72,2,f +4945,59900,70,1,f +4945,6003,27,1,f +4945,60475b,72,2,f +4945,60475b,19,1,f +4945,60478,72,3,f +4945,60483,72,1,f +4945,60897,15,1,f +4945,61252,19,1,f +4945,6141,27,2,f +4945,6141,15,1,t +4945,6141,72,1,f +4945,6141,70,1,t +4945,6141,70,2,f +4945,6141,72,1,t +4945,6141,15,1,f +4945,6141,27,1,t +4945,6232,72,1,f +4945,62361,70,1,f +4945,63868,70,1,f +4945,63965,70,1,f +4945,64644,297,1,f +4945,64647,182,1,f +4945,6553,0,1,f +4945,73983,72,1,f +4945,85984,15,1,f +4945,87079,15,1,f +4945,87087,70,1,f +4945,87580,19,1,f +4945,89522,179,3,f +4945,89522,179,1,t +4945,92280,0,2,f +4945,92438,322,1,f +4945,92456pr0089c01,78,1,f +4945,92819pr0007c01,70,1,f +4945,92950,70,2,f +4945,93095,15,1,f +4945,98138,33,1,f +4945,98138,34,1,f +4945,98138,34,1,t +4945,98138,52,1,t +4945,98138,52,1,f +4945,98138,71,2,t +4945,98138,71,6,f +4945,98138,33,1,t +4945,98138pr0029,297,1,f +4945,98138pr0029,297,1,t +4945,98286,71,1,f +4945,98560,72,1,f +4946,2476a,71,2,f +4946,2780,0,5,f +4946,2780,0,1,t +4946,3005,72,2,f +4946,30055,0,3,f +4946,3030,0,1,f +4946,3031,72,1,f +4946,3032,0,2,f +4946,3033,0,1,f +4946,3035,0,2,f +4946,32013,72,7,f +4946,32014,0,1,f +4946,32039,0,3,f +4946,32062,4,9,f +4946,32064b,72,12,f +4946,32074c01,0,1,f +4946,32123b,71,4,f +4946,32123b,71,1,t +4946,32140,0,2,f +4946,32174,72,8,f +4946,32199,72,1,f +4946,32476,0,6,f +4946,32530,0,2,f +4946,3403c01,0,1,f +4946,3455,72,1,f +4946,3705,0,1,f +4946,3706,0,1,f +4946,3707,0,4,f +4946,3749,19,2,f +4946,3832,0,1,f +4946,3894,72,2,f +4946,40378,179,2,f +4946,40379,320,6,f +4946,40379,179,2,f +4946,41530,71,2,f +4946,42074,15,2,f +4946,4274,71,1,t +4946,4274,71,2,f +4946,43093,1,6,f +4946,43557,320,1,f +4946,44813,179,9,f +4946,4519,71,1,f +4946,45301,72,1,f +4946,4589,71,6,f +4946,47338,135,2,f +4946,47847,70,2,f +4946,4861,72,1,f +4946,48729a,72,8,f +4946,50858,320,2,f +4946,51663,179,2,f +4946,53451,15,2,f +4946,53451,135,1,t +4946,53451,135,8,f +4946,53451,15,1,t +4946,53550,179,1,f +4946,53582,179,1,f +4946,53588pat01,8,1,f +4946,53590pr01,320,1,f +4946,53989,0,2,f +4946,53989,288,2,f +4946,53989,320,2,f +4946,53989,151,2,f +4946,54271,135,1,f +4946,54275,179,2,f +4946,54275,297,2,f +4946,54276,151,1,f +4946,54276,0,1,f +4946,54276,320,1,f +4946,54276,288,1,f +4946,54821,143,4,f +4946,55236,151,1,f +4946,55236,0,1,f +4946,55237a,179,1,f +4946,55237b,179,1,f +4946,55237c,179,1,f +4946,55237d,179,1,f +4946,55237e,179,1,f +4946,55237f,179,1,f +4946,55237g,179,1,f +4946,55237h,179,1,f +4946,55237i,179,1,f +4946,55237j,179,1,f +4946,55237k,179,1,f +4946,55237l,179,1,f +4946,55240pr0001,151,1,f +4946,56661,0,1,f +4946,59426,72,1,f +4946,6187,71,1,f +4946,6538b,0,7,f +4946,6558,0,4,f +4946,76110c05,71,1,f +4946,x1823px1,288,1,f +4947,45575,71,2,f +4947,45799,71,4,f +4947,47349c02,4,4,f +4948,2736,7,2,f +4948,2780,0,4,f +4948,30173a,3,2,f +4948,32005b,27,2,f +4948,32039,0,2,f +4948,32056,27,4,f +4948,32056,4,4,f +4948,32062,0,6,f +4948,32073,0,3,f +4948,32271,27,2,f +4948,32291,27,2,f +4948,32306,0,1,f +4948,32307,4,2,f +4948,32307,0,2,f +4948,32308,4,1,f +4948,32308,0,2,f +4948,32308,27,1,f +4948,32310pb02,27,1,f +4948,32316,0,2,f +4948,32439a,3,3,f +4948,3673,7,2,f +4948,3705,0,2,f +4948,3749,7,3,f +4948,6123,0,2,f +4948,6536,0,1,f +4948,6553,3,1,f +4948,6628,0,2,f +4948,rb00182,27,1,f +4948,rb00182,4,1,f +4950,2432,71,1,f +4950,3795,15,1,f +4950,3829c01,4,1,f +4950,41854,15,1,f +4950,50949,0,1,f +4950,6157,71,2,f +4950,85984,2,1,t +4950,85984,2,1,f +4951,11816pr0003,78,1,f +4951,2343,47,1,f +4951,2431,29,3,f +4951,2654,47,3,f +4951,3001,71,1,f +4951,3010,19,2,f +4951,3020,73,1,f +4951,3034,15,2,f +4951,3035,15,1,f +4951,3069b,41,2,f +4951,3069b,29,1,f +4951,32059,191,1,f +4951,33291,5,1,f +4951,33291,5,1,t +4951,3794b,1,1,f +4951,3837,72,1,f +4951,3941,19,1,f +4951,3957b,15,2,f +4951,3958,19,1,f +4951,3960,191,1,f +4951,4085c,15,2,f +4951,4150pr0009,15,1,f +4951,4490,19,2,f +4951,4495b,5,1,f +4951,4589,19,5,f +4951,50950,15,2,f +4951,57783,41,1,f +4951,6081,15,1,f +4951,6141,4,1,t +4951,6141,41,1,t +4951,6141,4,1,f +4951,6141,41,5,f +4951,6636,30,1,f +4951,6636,191,2,f +4951,85984,30,4,f +4951,87611,191,1,f +4951,87615,15,1,f +4951,92256,70,1,f +4951,92456pr0015c01,78,1,f +4951,92818pr0003c01,29,1,f +4951,93095,29,2,f +4951,95343,4,1,f +4951,95344,297,1,t +4951,95344,297,1,f +4952,2357,4,4,f +4952,2357,0,4,f +4952,2412b,0,3,f +4952,2412b,4,3,f +4952,2418b,42,1,f +4952,2419,7,1,f +4952,2419,0,2,f +4952,2420,4,8,f +4952,2432,0,1,f +4952,2436,4,2,f +4952,2450,0,4,f +4952,2458,7,2,f +4952,2540,0,2,f +4952,2569,42,2,f +4952,2607,0,3,f +4952,2609b,0,3,f +4952,2639,7,8,f +4952,2654,7,1,f +4952,2877,0,1,f +4952,30000,8,2,f +4952,3001,7,5,f +4952,30014,0,1,f +4952,3002,4,2,f +4952,3002,0,2,f +4952,3003,0,4,f +4952,3003,1,1,f +4952,30034,0,2,f +4952,30035,0,1,f +4952,3004,1,1,f +4952,3004,4,12,f +4952,30062,0,1,f +4952,3008,0,2,f +4952,3010,0,4,f +4952,30116pr01,7,2,f +4952,30116pr02,7,2,f +4952,30117,42,2,f +4952,30117pb01,7,1,f +4952,30117pb05,7,1,f +4952,30120p01,0,1,f +4952,30120p02,7,2,f +4952,30121,0,2,f +4952,30121,8,1,f +4952,3020,7,2,f +4952,3020,0,1,f +4952,3020,1,2,f +4952,3021,0,7,f +4952,3021,1,1,f +4952,3022,4,9,f +4952,3022,7,4,f +4952,3022,0,3,f +4952,3023,0,5,f +4952,3023,42,2,f +4952,3023,7,2,f +4952,3023,4,6,f +4952,3023,1,2,f +4952,3029,0,4,f +4952,3034,0,1,f +4952,3035,7,4,f +4952,3037,7,1,f +4952,3039,7,8,f +4952,3068bp54,7,4,f +4952,3069bp15,0,2,f +4952,3069bp51,0,2,f +4952,3069bp54,7,3,f +4952,3297,7,2,f +4952,3298,7,3,f +4952,3298p6u,7,1,f +4952,3403,0,2,f +4952,3404,0,2,f +4952,3460,0,4,f +4952,3475b,0,2,f +4952,3612,0,8,f +4952,3626bp6u,57,1,f +4952,3626bp6v,1,1,f +4952,3626bp6y,57,1,f +4952,3626bpb0248,42,1,f +4952,3641,0,4,f +4952,3660,0,2,f +4952,3666,0,4,f +4952,3666,4,2,f +4952,3679,7,2,f +4952,3680,0,2,f +4952,3710,4,1,f +4952,3710,0,4,f +4952,3710,7,2,f +4952,3794a,1,2,f +4952,3794a,0,8,f +4952,3795,0,2,f +4952,3832,0,1,f +4952,3935,7,1,f +4952,3936,7,1,f +4952,3937,0,3,f +4952,3938,4,2,f +4952,3960,0,1,f +4952,3963,7,2,f +4952,4032a,4,8,f +4952,4079,7,1,f +4952,412,57,1,f +4952,4150,0,2,f +4952,4151a,0,1,f +4952,4213,7,2,f +4952,4229,0,8,f +4952,4315,0,4,f +4952,4345b,0,2,f +4952,4346,42,2,f +4952,4460a,0,4,f +4952,4474,42,2,f +4952,4589,42,16,f +4952,4590,0,3,f +4952,4595,0,1,f +4952,4600,0,2,f +4952,4624,7,4,f +4952,4740,7,2,f +4952,4740,42,4,f +4952,6063,0,1,f +4952,6106,7,4,f +4952,6118,0,4,f +4952,6141,1,8,f +4952,6141,42,9,f +4952,6217,1,1,f +4952,6222,7,2,f +4952,6975stk01,9999,1,t +4952,6975stk02,9999,2,t +4952,73092,0,6,f +4952,970c00pb021,0,1,f +4952,970c07pb01,1,1,f +4952,970c07pb01,4,1,f +4952,970c09pb02,7,1,f +4952,973pb0077c01,7,1,f +4952,973pb0195c01,7,1,f +4952,973px123c01,7,1,f +4952,973px132c01,7,1,f +4953,122c01,0,1,f +4953,3010,15,2,f +4953,3020,0,1,f +4953,3022,0,1,f +4953,3031,4,1,f +4953,3062b,15,4,f +4953,3626apr0001,14,1,f +4953,3641,0,2,f +4953,3833,4,1,f +4953,3837,8,1,f +4953,3839b,0,1,f +4953,3841,8,1,f +4953,3942a,15,2,f +4953,4085a,0,2,f +4953,6141,36,2,f +4953,6606stk01,9999,1,t +4953,970c00,1,1,f +4953,973p26c01,1,1,f +4954,2336p68,4,1,f +4954,2431,0,1,f +4954,2446,0,1,f +4954,2447,42,1,t +4954,2447,42,1,f +4954,2476a,0,1,f +4954,2486,0,2,f +4954,2516,0,2,f +4954,2569,42,1,f +4954,2593,0,4,f +4954,2607,4,2,f +4954,2609,0,2,f +4954,2817,0,1,f +4954,3004,0,5,f +4954,3020,0,2,f +4954,3022,4,1,f +4954,3022,0,4,f +4954,3023,4,1,f +4954,3034,0,4,f +4954,3036,4,1,f +4954,3039,4,3,f +4954,3045,4,2,f +4954,3069b,4,2,f +4954,3070bp06,15,1,f +4954,3070bpc2,15,1,f +4954,3315,0,1,f +4954,3597,0,1,f +4954,3626apr0001,14,1,f +4954,3639,0,1,f +4954,3640,0,1,f +4954,3679,7,2,f +4954,3680,4,2,f +4954,3700,4,1,f +4954,3705,0,1,f +4954,3795,4,1,f +4954,3838,0,1,f +4954,3941,7,1,f +4954,3962b,0,1,f +4954,4070,0,2,f +4954,4085c,0,1,f +4954,4265a,7,1,f +4954,4285a,0,1,f +4954,4345a,4,1,f +4954,4346p68,7,1,f +4954,4476b,0,1,f +4954,4590,0,1,f +4954,4623,0,4,f +4954,4730,4,5,f +4954,4740,42,4,f +4954,4859,0,1,f +4954,6141,42,2,f +4954,73092,0,4,f +4954,970x026,15,1,f +4954,973p68c01,4,1,f +4955,23306,71,4,f +4955,2412b,379,2,f +4955,2413,71,1,f +4955,2419,72,1,f +4955,2445,72,1,f +4955,2450,379,2,f +4955,2540,379,2,f +4955,30136,71,1,f +4955,3020,72,1,f +4955,3020,1,1,f +4955,3023,1,2,f +4955,30357,72,2,f +4955,30363,71,1,f +4955,3040b,71,2,f +4955,30503,72,4,f +4955,3068b,71,2,f +4955,3660,71,3,f +4955,3747b,71,1,f +4955,3795,379,2,f +4955,3832,71,1,f +4955,3937,71,5,f +4955,3960ps3,71,1,f +4955,41769,71,1,f +4955,41770,71,1,f +4955,4286,71,2,f +4955,4345b,71,1,f +4955,4346pb07,71,1,f +4955,6019,71,2,f +4955,6134,71,5,f +4957,132a,7,6,f +4957,3001a,15,2,f +4957,3002a,4,1,f +4957,3003,4,3,f +4957,3007,4,1,f +4957,3007,1,2,f +4957,3008a,1,4,f +4957,3008a,14,2,f +4957,3009a,14,4,f +4957,3009a,1,2,f +4957,3035,15,1,f +4957,3036,15,3,f +4957,3037,1,4,f +4957,3039,1,2,f +4957,3040a,1,2,f +4957,3045,1,4,f +4957,3062a,0,6,f +4957,3063b,4,2,f +4957,3065,15,2,f +4957,3065,1,8,f +4957,36,7,2,f +4957,650,79,1,f +4957,7039d,4,7,f +4957,7049a,15,9,f +4957,715,4,2,f +4958,2359p01,7,2,f +4959,11097,179,1,f +4959,11100,0,2,f +4959,11111pr0001,320,1,f +4959,11126,4,1,f +4959,11127,41,6,f +4959,11767,72,1,f +4959,12550pr0002,0,1,f +4959,12825,0,2,f +4959,2419,2,2,f +4959,2654,4,1,f +4959,2780,0,1,t +4959,2780,0,2,f +4959,3001,326,1,f +4959,30176,2,2,f +4959,3023,25,1,f +4959,30374,0,1,f +4959,30387,182,8,f +4959,3039,326,1,f +4959,3062b,36,1,f +4959,32064a,4,2,f +4959,3626cpr1130,0,1,f +4959,3958,4,1,f +4959,4081b,14,2,f +4959,4519,71,2,f +4959,45590,0,2,f +4959,4740,36,2,f +4959,54200,36,16,f +4959,54200,36,1,t +4959,59443,14,1,f +4959,6021455,9999,1,t +4959,6021456,9999,1,t +4959,6021457,9999,1,t +4959,6021458,9999,1,t +4959,6021459,9999,1,t +4959,60752,179,1,f +4959,6087,71,1,f +4959,6126b,182,4,f +4959,92690,71,1,f +4959,970c00pr0433,0,1,f +4959,973pr1358bc01,0,1,f +4959,98138,36,2,f +4959,98138,36,1,t +4959,98138,41,1,f +4959,98138,41,1,t +4959,98141,85,2,f +4961,2340,272,2,f +4961,2357,15,1,f +4961,2412b,15,4,f +4961,2412b,2,1,f +4961,2412b,2,1,t +4961,2420,0,2,f +4961,2432,0,1,f +4961,2445,0,1,f +4961,2569,182,2,f +4961,2654,143,1,f +4961,2780,0,8,f +4961,2780,0,1,t +4961,3003,0,2,f +4961,3004,15,1,f +4961,3010,72,1,f +4961,30106,47,1,f +4961,3020,15,2,f +4961,3020,72,2,f +4961,3021,0,5,f +4961,3022,0,2,f +4961,3022,15,2,f +4961,3031,15,1,f +4961,3031,72,1,f +4961,30324,0,4,f +4961,30364,71,2,f +4961,30397,0,2,f +4961,3040b,72,5,f +4961,30536,379,1,f +4961,3068b,0,2,f +4961,3068bpb0069,379,1,f +4961,3068bpr0108,72,1,f +4961,32054,15,4,f +4961,32531,71,1,f +4961,32532,71,2,f +4961,32556,71,2,f +4961,3460,0,2,f +4961,3626bpb0091,15,1,f +4961,3626bpb0226,14,1,f +4961,3626bpb0227,14,1,f +4961,3660,0,1,f +4961,3665,71,1,f +4961,3666,0,1,f +4961,3700,71,2,f +4961,3701,0,1,f +4961,3703,71,2,f +4961,3707,0,1,f +4961,3713,71,1,f +4961,3713,71,1,t +4961,3894,0,2,f +4961,3895,71,2,f +4961,40340,0,1,f +4961,4070,15,2,f +4961,41334,0,1,f +4961,41747pb016,379,2,f +4961,41748pb016,379,2,f +4961,41749,272,1,f +4961,41750,272,1,f +4961,4286,0,4,f +4961,43710,379,1,f +4961,43711,379,1,f +4961,43722,379,1,f +4961,43723,379,1,f +4961,4485,0,1,f +4961,4733,72,2,f +4961,47507,0,1,f +4961,47843,0,1,f +4961,47844pb02,47,1,f +4961,47847pat0001,143,2,f +4961,4864b,15,3,f +4961,6019,0,2,f +4961,6141,33,1,t +4961,6141,33,1,f +4961,6232,71,2,f +4961,6538b,15,2,f +4961,6541,15,2,f +4961,6558,0,4,f +4961,6636,0,5,f +4961,970c00pb035,0,2,f +4961,973pb0351c01,0,1,f +4961,973pb0351c03,0,1,f +4963,bb108pb01,15,1,f +4963,x887px1,15,1,f +4964,2569,7,1,f +4964,2569,4,1,f +4964,2569,42,2,f +4964,298c02,15,2,f +4964,298c02,0,2,f +4964,298c04,15,2,f +4964,298c04,0,2,f +4964,3957a,15,2,f +4964,3957a,36,2,f +4964,3957a,7,2,f +4964,3957a,46,2,f +4964,3957a,0,2,f +4964,4735,0,2,f +4964,4735,15,2,f +4965,3021,0,8,f +4965,3709,4,8,f +4965,3709,0,12,f +4966,32174,86,2,f +4966,3706,0,1,f +4966,41668,86,3,f +4966,41669,57,2,f +4966,4519,71,1,t +4966,4519,71,1,f +4966,47296,72,2,f +4966,47300,72,2,f +4966,47309,86,1,f +4966,47312,72,1,f +4966,47315,135,2,f +4966,50923,72,4,f +4967,3003,4,1,f +4967,3004,4,1,f +4967,3004,7,1,f +4967,3004,15,1,f +4967,3004p51,14,2,f +4967,3021,0,1,f +4967,3022,0,4,f +4967,3023,0,1,f +4967,3024,14,4,f +4967,3039,15,1,f +4967,3040b,4,4,f +4967,3040b,15,2,f +4967,3045,4,4,f +4967,3660,4,1,f +4967,3688,4,2,f +4968,fab12d,9999,1,f +4968,u9204c01,4,1,f +4974,2335,4,1,f +4974,2420,15,2,f +4974,2421,0,1,f +4974,2435,2,1,f +4974,2456,1,4,f +4974,2456,71,1,f +4974,2456,4,3,f +4974,2456,14,3,f +4974,2456,15,4,f +4974,2495,4,1,f +4974,2496,0,1,f +4974,2877,72,1,f +4974,2926,0,4,f +4974,3001,1,6,f +4974,3001,2,3,f +4974,3001,27,2,f +4974,3001,0,4,f +4974,3001,14,7,f +4974,3001,25,4,f +4974,3001,4,6,f +4974,3001,15,6,f +4974,3002,14,14,f +4974,3002,4,14,f +4974,3002,71,2,f +4974,3002,1,14,f +4974,3002,0,7,f +4974,3002,15,14,f +4974,3002,2,7,f +4974,3003,0,8,f +4974,3003,1,16,f +4974,3003,15,16,f +4974,3003,4,16,f +4974,3003,71,2,f +4974,3003,27,8,f +4974,3003,25,6,f +4974,3003,2,8,f +4974,3003,14,16,f +4974,3004,2,6,f +4974,3004,14,12,f +4974,3004,0,6,f +4974,3004,25,4,f +4974,3004,27,4,f +4974,3004,15,12,f +4974,3004,71,8,f +4974,3004,1,12,f +4974,3004,4,12,f +4974,30044,15,2,f +4974,30046,0,2,f +4974,3005,15,8,f +4974,3005,4,8,f +4974,3005,2,4,f +4974,3005,0,4,f +4974,3005,1,8,f +4974,3005,14,8,f +4974,3005pe1,15,6,f +4974,3005pe1,14,2,f +4974,3007,15,2,f +4974,3007,1,2,f +4974,3007,14,2,f +4974,3007,4,2,f +4974,3008,14,3,f +4974,3008,15,4,f +4974,3008,1,4,f +4974,3008,4,3,f +4974,3009,15,7,f +4974,3009,14,6,f +4974,3009,1,7,f +4974,3009,4,6,f +4974,3010,2,2,f +4974,3010,27,2,f +4974,3010,0,2,f +4974,3010,15,3,f +4974,3010,25,2,f +4974,3010,14,3,f +4974,3010,1,3,f +4974,3010,4,3,f +4974,3020,0,1,f +4974,3020,15,1,f +4974,3020,4,4,f +4974,3020,71,1,f +4974,3020,1,3,f +4974,3020,14,2,f +4974,3021,14,1,f +4974,3021,15,2,f +4974,3021,72,1,f +4974,3022,0,2,f +4974,3022,15,2,f +4974,3023,15,4,f +4974,3023,1,2,f +4974,3023,72,2,f +4974,3023,0,3,f +4974,3034,1,2,f +4974,30363,4,10,f +4974,30363,1,2,f +4974,3037,4,8,f +4974,3039,1,2,f +4974,3039,47,2,f +4974,3039,2,4,f +4974,3039,14,2,f +4974,3039,4,6,f +4974,3040b,4,4,f +4974,3040b,72,2,f +4974,3040b,2,4,f +4974,3040b,14,2,f +4974,3041,4,1,f +4974,3043,4,2,f +4974,3044b,4,2,f +4974,3062b,70,2,f +4974,3062b,0,6,f +4974,3065,47,2,f +4974,3190,15,1,f +4974,3298,0,8,f +4974,33303,15,2,f +4974,3403,15,1,f +4974,3404,15,1,f +4974,3471,2,1,f +4974,3622,1,8,f +4974,3622,4,8,f +4974,3622,15,8,f +4974,3622,2,6,f +4974,3622,0,6,f +4974,3622,27,2,f +4974,3622,14,8,f +4974,3623,0,2,f +4974,3623,1,2,f +4974,3626bpr0043,14,1,f +4974,3626bpr0387,14,1,f +4974,3633,0,2,f +4974,3659,4,4,f +4974,3660,71,1,f +4974,3660,4,2,f +4974,3660,0,4,f +4974,3660,14,1,f +4974,3665,15,2,f +4974,3665,4,8,f +4974,3665,14,2,f +4974,3684,0,4,f +4974,3684,2,2,f +4974,3710,1,4,f +4974,3794a,0,1,f +4974,3795,4,4,f +4974,3795,71,2,f +4974,3795,1,2,f +4974,3823,47,1,f +4974,3829c01,15,2,f +4974,3832,71,3,f +4974,3839b,71,1,f +4974,3857,10,1,f +4974,3957a,15,1,f +4974,4070,14,4,f +4974,4130,14,1,f +4974,4130,15,1,f +4974,4131,0,2,f +4974,4132,1,2,f +4974,4132,4,3,f +4974,4133,15,3,f +4974,4133,14,2,f +4974,43751,0,1,f +4974,4488,0,1,f +4974,4600,71,2,f +4974,4727,10,3,f +4974,4728,14,2,f +4974,6014b,15,4,f +4974,6014b,14,4,f +4974,6015,0,8,f +4974,6093,70,1,f +4974,6141,36,2,f +4974,6141,25,2,f +4974,6141,46,2,f +4974,6216,2,2,f +4974,970c00,25,1,f +4974,970c00,1,1,f +4974,973pr0805c01,15,1,f +4974,973pr1204c01,15,1,f +4975,21,47,1,f +4975,3001a,4,2,f +4975,3004,47,2,f +4975,3005,4,4,f +4975,3009,4,2,f +4975,3010,4,3,f +4975,3010pb035e,4,1,f +4975,3020,4,1,f +4975,3023,4,1,f +4975,3024,1,2,f +4975,3030,4,1,f +4975,3031,4,1,f +4975,3035,4,1,f +4975,3137c01,0,1,f +4975,3137c02,0,2,f +4975,3139,0,2,f +4975,3149c01,4,1,f +4975,3188,4,1,f +4975,3189,4,1,f +4975,3404ac01,4,1,f +4975,7b,0,4,f +4975,850,14,1,f +4975,851a,14,1,f +4975,852,14,1,f +4976,3001,4,1,f +4976,3003,0,3,f +4976,3003,1,1,f +4976,3004,4,3,f +4976,3004,1,9,f +4976,3004,0,7,f +4976,3005,1,8,f +4976,3005,4,6,f +4976,3009,4,12,f +4976,3010,1,5,f +4976,3020,4,2,f +4976,3020,0,2,f +4976,3021,15,2,f +4976,3022,1,1,f +4976,3023,0,3,f +4976,3024,4,3,f +4976,3027,4,1,f +4976,3030,4,1,f +4976,3031,14,1,f +4976,3038,1,10,f +4976,3039,1,4,f +4976,3040b,1,7,f +4976,3041,1,4,f +4976,3043,1,2,f +4976,3045,0,2,f +4976,3062b,46,1,f +4976,3062b,0,3,f +4976,3068b,15,1,f +4976,3471,2,1,f +4976,3622,4,8,f +4976,3623,4,3,f +4976,3626apr0001,14,2,f +4976,3659,1,1,f +4976,3660,4,2,f +4976,3666,4,3,f +4976,3710,4,2,f +4976,3741,2,4,f +4976,3742,15,12,f +4976,3795,4,1,f +4976,3795,15,2,f +4976,3853,15,1,f +4976,3855a,47,1,f +4976,3857,2,1,f +4976,3899,15,2,f +4976,3901,0,1,f +4976,3957a,0,1,f +4976,4079,14,4,f +4976,4347,15,3,f +4976,4445,1,4,f +4976,4447,15,2,f +4976,4448,47,2,f +4976,4528,0,1,f +4976,4530,4,1,f +4976,4533,15,2,f +4976,4719,4,1,f +4976,4740,0,1,f +4976,4864a,1,1,f +4976,6141,46,2,f +4976,6141,46,1,t +4976,6370stk01,9999,1,t +4976,73312,15,1,f +4976,92410,1,2,f +4976,92851,47,2,f +4976,970c00,1,1,f +4976,970c00,0,1,f +4976,973px61c02,15,1,f +4976,973px62c02,15,1,f +4977,2420,4,2,f +4977,2431,4,2,f +4977,2450,0,2,f +4977,2450,4,6,f +4977,2711,0,4,f +4977,2717,1,1,f +4977,2719,7,3,f +4977,2730,4,4,f +4977,2730,0,2,f +4977,2780,0,21,f +4977,2850a,7,2,f +4977,2851,8,2,f +4977,2852,7,2,f +4977,2853,7,2,f +4977,2995,0,2,f +4977,2996,15,2,f +4977,3023,0,6,f +4977,3023,4,2,f +4977,3030,4,1,f +4977,3040b,7,4,f +4977,3068b,4,1,f +4977,3069b,0,2,f +4977,3176,0,2,f +4977,3460,0,3,f +4977,3623,0,2,f +4977,3647,7,2,f +4977,3650c,7,1,f +4977,3651,7,2,f +4977,3665,4,2,f +4977,3666,0,6,f +4977,3666,7,4,f +4977,3666,4,2,f +4977,3673,7,6,f +4977,3700,7,2,f +4977,3700,0,8,f +4977,3701,0,5,f +4977,3701,4,2,f +4977,3701,7,4,f +4977,3702,0,2,f +4977,3702,4,2,f +4977,3703,0,2,f +4977,3705,0,5,f +4977,3706,0,6,f +4977,3707,0,2,f +4977,3708,0,1,f +4977,3709,0,5,f +4977,3710,7,6,f +4977,3710,0,5,f +4977,3710,4,2,f +4977,3713,7,10,f +4977,3737,0,2,f +4977,3738,0,1,f +4977,3743,7,1,f +4977,3749,7,12,f +4977,3894,0,2,f +4977,3895,4,4,f +4977,3941,0,1,f +4977,4019,7,3,f +4977,4143,7,4,f +4977,4150,0,1,f +4977,4261,7,2,f +4977,4262,0,1,f +4977,4263,0,2,f +4977,4265b,7,24,f +4977,4273b,7,2,f +4977,4274,7,2,f +4977,4275b,4,4,f +4977,4276b,4,4,f +4977,4286,4,2,f +4977,4519,0,1,f +4977,6536,7,6,f +4977,6538a,7,2,f +4977,6553,7,2,f +4977,6558,0,4,f +4977,6575,7,4,f +4977,6581,0,2,f +4977,6582,15,2,f +4977,73129,7,2,f +4977,75c21,8,2,f +4978,2339,7,4,f +4978,2343,14,3,f +4978,2357,7,12,f +4978,2431,6,2,f +4978,2444,7,1,f +4978,2446,7,1,f +4978,2453a,7,3,f +4978,2453a,19,5,f +4978,2454a,19,12,f +4978,2454a,8,4,f +4978,2454a,7,4,f +4978,2454pb001,7,3,f +4978,2460,7,1,f +4978,2476a,4,1,f +4978,2551,6,1,f +4978,2566,0,1,f +4978,2577,8,2,f +4978,2577,7,2,f +4978,2586ph1,7,1,f +4978,2587,7,1,f +4978,2594,7,1,f +4978,2780,0,1,f +4978,3001,0,1,f +4978,3002,0,3,f +4978,3002,19,4,f +4978,3003,7,7,f +4978,3003,19,3,f +4978,3003,8,10,f +4978,3004,19,7,f +4978,3004,22,2,f +4978,3004,7,15,f +4978,3004,8,13,f +4978,3004,6,6,f +4978,30044,6,2,f +4978,30046,0,2,f +4978,3005,8,6,f +4978,3005,19,28,f +4978,3005,7,6,f +4978,30056,19,1,f +4978,3006,7,2,f +4978,3006,19,1,f +4978,3008,8,3,f +4978,3009,7,1,f +4978,3009,6,1,f +4978,3010,19,1,f +4978,30103,0,2,f +4978,30104,6,1,f +4978,30106,47,1,f +4978,30145,8,2,f +4978,30145,19,10,f +4978,30152pat0001,52,1,f +4978,30153,33,1,f +4978,30153,41,1,f +4978,30153,42,1,f +4978,30153,45,1,f +4978,30156,8,1,f +4978,30181,0,2,f +4978,3020,6,12,f +4978,3020,0,2,f +4978,3021,0,4,f +4978,3022,14,1,f +4978,3022,4,1,f +4978,3022,8,13,f +4978,3023,0,23,f +4978,30246,19,3,f +4978,30249,7,4,f +4978,30274,19,2,f +4978,3029,7,2,f +4978,30292px1,14,1,f +4978,3031,7,1,f +4978,3034,6,2,f +4978,30359b,47,2,f +4978,3037,7,1,f +4978,30374,19,1,f +4978,30374,7,1,f +4978,30374,6,1,f +4978,30374,0,1,f +4978,30383,19,2,f +4978,3039,8,1,f +4978,3040b,19,14,f +4978,3040b,378,4,f +4978,3044c,19,7,f +4978,3048c,14,1,f +4978,30505,0,2,f +4978,30553,0,2,f +4978,30562,19,2,f +4978,30562px1,7,2,f +4978,3062b,34,1,f +4978,3062b,36,1,f +4978,3062b,8,6,f +4978,3062b,14,4,f +4978,3062b,19,9,f +4978,3062b,47,1,f +4978,3062b,6,23,f +4978,3062b,42,1,f +4978,3068b,0,7,f +4978,3068b,14,1,f +4978,3069b,14,1,f +4978,3069b,19,3,f +4978,3069b,8,2,f +4978,3069bpr0055,15,1,f +4978,3069bpx39,33,1,f +4978,3069bpx41,15,1,f +4978,3070b,0,1,t +4978,3070b,0,4,f +4978,3070bph1,15,1,t +4978,3070bph1,15,1,f +4978,32059,0,1,f +4978,3245b,19,16,f +4978,3245b,7,3,f +4978,33009,73,1,f +4978,33009px1,2,1,f +4978,33009px2,4,1,f +4978,33009px3,0,1,f +4978,3307,7,2,f +4978,3308,19,1,f +4978,3308,7,3,f +4978,33215,378,1,f +4978,3455,7,2,f +4978,3455,19,5,f +4978,3460,7,2,f +4978,3626bpb0006,14,1,f +4978,3626bpb0009,14,1,f +4978,3626bph1,14,1,f +4978,3626bph2,14,1,f +4978,3626bphb,21,1,f +4978,3626bpr0374,14,1,f +4978,3626bpr0377,14,1,f +4978,3626bpx99,7,2,f +4978,3659,19,4,f +4978,3659,7,12,f +4978,3660,19,2,f +4978,3665,8,7,f +4978,3666,7,2,f +4978,3679,7,5,f +4978,3680,0,5,f +4978,3710,14,1,f +4978,3710,8,8,f +4978,3731,0,2,f +4978,3794a,8,11,f +4978,3795,8,1,f +4978,3795,22,1,f +4978,3830,7,4,f +4978,3831,7,4,f +4978,3832,0,1,f +4978,3832,7,2,f +4978,3847,7,1,f +4978,3901,19,1,f +4978,3933,7,1,f +4978,3937,7,2,f +4978,3937,19,1,f +4978,3938,19,1,f +4978,3941,19,2,f +4978,3942c,378,4,f +4978,3943b,378,3,f +4978,3957a,0,1,f +4978,3959,0,1,f +4978,40232,0,1,f +4978,40232,6,1,f +4978,40232,8,1,f +4978,40232,15,1,f +4978,40233,0,1,f +4978,40234,15,1,f +4978,40234,7,1,f +4978,40238,0,1,f +4978,40239,7,1,f +4978,40240,366,1,f +4978,40243,7,16,f +4978,40244,19,2,f +4978,40249px2,7,1,f +4978,40250pr01,6,1,f +4978,40251,6,1,f +4978,40253,19,1,f +4978,4032a,8,2,f +4978,4085c,0,2,f +4978,4162,0,2,f +4978,41752,8,1,f +4978,4201,8,2,f +4978,4204,8,3,f +4978,4213,0,1,f +4978,4215b,8,1,f +4978,4215b,0,1,f +4978,4315,7,1,f +4978,4332,6,1,f +4978,43337,8,2,f +4978,4490,7,1,f +4978,4495a,8,1,f +4978,4530,0,1,f +4978,4589,378,5,f +4978,4738a,47,1,f +4978,4739a,47,1,f +4978,4865a,19,2,f +4978,4865a,7,11,f +4978,4871,14,1,f +4978,50231,110,1,f +4978,50231,0,1,f +4978,50231,22,1,f +4978,50231px1,0,3,f +4978,6019,7,2,f +4978,6083,8,2,f +4978,6106,7,2,f +4978,6111,7,3,f +4978,6111,8,1,f +4978,6126a,57,10,f +4978,6132,7,1,f +4978,6134,0,2,f +4978,6141,33,1,f +4978,6141,57,2,t +4978,6141,33,1,t +4978,6141,57,7,f +4978,6141,47,1,t +4978,6141,0,2,t +4978,6141,47,1,f +4978,6141,0,5,f +4978,6182,7,4,f +4978,6191,7,2,f +4978,6231,7,8,f +4978,6232,8,1,f +4978,62808,60,1,f +4978,62808,7,2,f +4978,62808,60,1,t +4978,6587,8,1,f +4978,6636,0,1,f +4978,75347,19,2,f +4978,85546,14,1,f +4978,970c00,7,6,f +4978,970c00pb001,22,1,f +4978,970c00pb002,0,1,f +4978,973c16,7,1,f +4978,973px146c01,7,3,f +4978,973px147c01,7,1,f +4978,973px148c01,0,1,f +4978,973px149c01,22,1,f +4978,973px150c01,7,1,f +4978,x214px1,9999,2,f +4979,2340,0,2,f +4979,2357,1,2,f +4979,2357,15,2,f +4979,2412b,7,2,f +4979,2413,1,2,f +4979,2434,0,1,f +4979,2446px6,1,1,f +4979,2447,41,1,f +4979,2460,4,2,f +4979,2479,0,2,f +4979,2584,1,1,f +4979,2585,7,1,f +4979,2847c02,0,1,f +4979,3001,1,2,f +4979,3001,0,2,f +4979,3001,14,1,f +4979,3001,15,2,f +4979,3001,4,2,f +4979,3002,15,2,f +4979,3003,1,2,f +4979,3003,0,2,f +4979,3003,4,2,f +4979,3003,14,2,f +4979,3003,15,4,f +4979,3004,0,8,f +4979,3004,14,6,f +4979,3004,1,12,f +4979,3004,4,10,f +4979,3004,15,14,f +4979,3004,47,2,f +4979,3005,1,8,f +4979,3005,4,8,f +4979,3005,0,6,f +4979,3005,14,6,f +4979,3005,15,12,f +4979,3005pe1,14,2,f +4979,3009,15,4,f +4979,3009,1,2,f +4979,3009,4,2,f +4979,3010,14,4,f +4979,3010,4,8,f +4979,3010,0,8,f +4979,3010,1,10,f +4979,3010,15,14,f +4979,3010p01,14,1,f +4979,3020,1,2,f +4979,3020,4,2,f +4979,3022,4,2,f +4979,3022,1,2,f +4979,3023,4,2,f +4979,3023,1,2,f +4979,3029,1,1,f +4979,3030,4,1,f +4979,3031,4,1,f +4979,3032,4,1,f +4979,3036,1,1,f +4979,3039,1,2,f +4979,3040b,1,4,f +4979,3069bp017,0,2,f +4979,3081cc01,14,2,f +4979,3127,7,1,f +4979,3149c01,1,2,f +4979,3176,1,1,f +4979,3297,1,4,f +4979,3297px21,1,2,f +4979,3298,1,4,f +4979,3299,1,2,f +4979,3300,1,2,f +4979,3475a,0,2,f +4979,3482,7,4,f +4979,3483,0,4,f +4979,3622,15,4,f +4979,3622,4,2,f +4979,3622,1,4,f +4979,3626bpr0001,14,2,f +4979,3633,14,4,f +4979,3634,0,4,f +4979,3660,1,2,f +4979,3666,1,2,f +4979,3679,7,1,f +4979,3680,14,2,f +4979,3700,4,4,f +4979,3706,0,2,f +4979,3707,0,2,f +4979,3710,4,2,f +4979,3747a,1,2,f +4979,3794a,14,2,f +4979,3795,1,2,f +4979,3823,47,2,f +4979,3829c01,14,2,f +4979,3832,4,2,f +4979,3957a,1,1,f +4979,4006,0,1,f +4979,4032a,4,4,f +4979,4070,15,4,f +4979,4079,14,1,f +4979,4286,1,2,f +4979,4287,1,2,f +4979,4349,4,2,f +4979,4485,4,1,f +4979,4495a,15,1,f +4979,4589,15,8,f +4979,5011,0,1,f +4979,5306bc162,0,1,f +4979,6061,0,1,f +4979,6111,1,2,f +4979,6141,34,2,f +4979,6141,36,2,f +4979,6183,14,1,f +4979,6215,14,4,f +4979,6232,4,4,f +4979,6248,7,4,f +4979,85546,14,2,f +4979,970c00,1,1,f +4979,970c00,4,1,f +4979,973c20,15,1,f +4979,973pb0201c01,15,1,f +4979,rb00164,0,1,f +4980,2431,27,1,f +4980,2436,0,4,f +4980,2555,0,4,f +4980,3020,72,2,f +4980,3031,0,1,f +4980,30374,71,1,f +4980,3069b,0,1,f +4980,3069b,27,2,f +4980,3795,0,1,f +4980,41769,0,1,f +4980,41770,0,1,f +4980,4735,71,2,f +4980,50944pr0001,0,4,f +4980,50947,27,4,f +4980,50948,0,1,f +4980,50950,0,2,f +4980,50951,0,4,f +4980,54200,0,2,f +4980,54200,27,2,f +4980,6019,72,2,f +4980,6141,4,1,t +4980,6141,4,4,f +4980,6157,0,2,f +4980,6231,0,2,f +4982,3062b,4,1,f +4982,4070,4,1,f +4982,6141,72,1,t +4982,6141,72,2,f +4982,87580,71,1,f +4982,92586pr0001,84,1,f +4985,11477,70,1,f +4985,14734pr0002b,379,1,f +4985,15745,41,1,f +4985,2357,320,1,f +4985,2423,5,1,f +4985,3020,2,1,f +4985,3062b,320,1,f +4985,33057,484,1,f +4985,33291,31,2,f +4985,3665,70,1,f +4985,3710,27,1,f +4985,6141,27,2,f +4989,2412b,72,2,f +4989,2498,73,2,f +4989,2578a,14,1,f +4989,3626bpr0387,14,1,f +4989,3706,0,1,f +4989,3731,0,1,f +4989,3833,4,1,f +4989,3839b,14,1,f +4989,54200,182,2,f +4989,970c00,25,1,f +4989,973pr1182c01,25,1,f +4990,2357,8,1,f +4990,2412b,1,2,f +4990,2489,6,1,f +4990,3001,0,2,f +4990,3002,0,2,f +4990,3002,7,1,f +4990,3003,7,4,f +4990,3003,0,2,f +4990,3004,0,1,f +4990,3004,7,6,f +4990,3004,8,1,f +4990,3004,4,1,f +4990,3005,8,1,f +4990,3006,7,3,f +4990,3021,7,2,f +4990,3022,7,2,f +4990,30236,4,1,f +4990,30237a,7,1,f +4990,30238,0,1,f +4990,30274,19,2,f +4990,3028,7,1,f +4990,3030,7,2,f +4990,3034,7,1,f +4990,3039,1,1,f +4990,3062b,19,2,f +4990,32000,8,2,f +4990,32000,19,2,f +4990,32054,0,4,f +4990,3245b,7,2,f +4990,3298,1,1,f +4990,3622,7,2,f +4990,3626bpr0001,14,1,f +4990,3659,7,2,f +4990,3684,7,5,f +4990,3688,1,3,f +4990,3832,7,1,f +4990,3846p4e,7,2,f +4990,3849,0,1,f +4990,3941,7,2,f +4990,3941,0,4,f +4990,3957a,0,2,f +4990,3958,7,1,f +4990,3959,6,2,f +4990,4032a,8,4,f +4990,4070,7,2,f +4990,4070,19,2,f +4990,4282,7,1,f +4990,4491b,1,1,f +4990,4495a,1,2,f +4990,4589,46,2,f +4990,4589,15,5,f +4990,59,383,1,f +4990,60169,366,1,f +4990,6122,0,1,f +4990,6123,8,1,f +4990,6558,0,4,f +4990,75998pr0007,15,1,f +4990,87692,4,1,f +4990,87693,4,1,f +4990,87694,4,1,f +4990,970c00,7,1,f +4990,973px118c01,7,1,f +4991,10247,0,4,f +4991,11290,1,1,f +4991,11291,14,1,f +4991,11301,15,1,f +4991,14719,15,1,f +4991,14769,0,1,f +4991,14769,4,1,f +4991,15068,71,2,f +4991,15068,14,1,f +4991,15207,14,8,f +4991,15210,15,1,f +4991,15210pr01,0,1,f +4991,15625,72,8,f +4991,16542,14,1,f +4991,22888,0,4,f +4991,2412b,0,16,f +4991,2412b,72,5,f +4991,2412b,71,6,f +4991,2420,15,4,f +4991,24201,71,8,f +4991,2431,72,4,f +4991,2431,71,2,f +4991,2432,72,1,f +4991,2440,72,1,f +4991,2441,0,1,f +4991,2456,1,3,f +4991,2458,72,2,f +4991,2458,15,4,f +4991,2465,15,4,f +4991,2486,14,1,f +4991,2508,0,3,f +4991,2584,0,1,f +4991,2585,71,1,f +4991,2654,71,1,f +4991,2723,0,2,f +4991,2780,0,10,f +4991,2877,15,4,f +4991,2921,71,1,f +4991,2926,0,1,f +4991,298c02,4,1,f +4991,3002,71,1,f +4991,3002,1,1,f +4991,3003,28,4,f +4991,3003,1,2,f +4991,3004,4,2,f +4991,3004,1,3,f +4991,3004,15,2,f +4991,3005,15,4,f +4991,3005,1,2,f +4991,3007,71,1,f +4991,3008,1,1,f +4991,3009,15,3,f +4991,3010,15,4,f +4991,3010,1,5,f +4991,30134,0,1,f +4991,30145,28,6,f +4991,3020,15,4,f +4991,3020,72,4,f +4991,3021,1,5,f +4991,3022,72,1,f +4991,3022,71,1,f +4991,3022,4,2,f +4991,3023,14,1,f +4991,3023,25,18,f +4991,3023,71,5,f +4991,3023,2,2,f +4991,3023,15,12,f +4991,3023,4,2,f +4991,3024,25,3,f +4991,3030,71,1,f +4991,3031,72,3,f +4991,3032,71,1,f +4991,3032,72,1,f +4991,3032,14,1,f +4991,3034,72,2,f +4991,3034,71,2,f +4991,30340,15,1,f +4991,30350b,15,1,f +4991,3036,71,3,f +4991,3037,1,8,f +4991,30374,71,1,f +4991,30377,71,2,f +4991,3039pr0002,15,1,f +4991,3039pr0005,15,1,f +4991,3039pr0013,15,1,f +4991,30592,71,2,f +4991,3062b,72,1,f +4991,3068b,1,1,f +4991,3068b,71,5,f +4991,3069b,14,2,f +4991,3069b,71,4,f +4991,3069b,72,3,f +4991,3069b,1,1,f +4991,3069b,15,2,f +4991,3069bpr0030,15,1,f +4991,3070b,72,3,f +4991,3070b,36,2,f +4991,3070b,25,1,f +4991,32001,4,1,f +4991,32059,71,1,f +4991,32062,4,8,f +4991,32064a,71,4,f +4991,32123b,14,1,f +4991,3245b,15,2,f +4991,3245c,1,2,f +4991,3298,15,1,f +4991,3298,72,4,f +4991,3460,71,3,f +4991,3622,14,2,f +4991,3623,0,2,f +4991,3624,0,1,f +4991,3626bpr0389,14,1,f +4991,3626cpr0891,14,1,f +4991,3626cpr0893,14,1,f +4991,3626cpr1087,14,1,f +4991,3626cpr1146,14,1,f +4991,3626cpr1664,14,1,f +4991,3633,72,4,f +4991,3666,25,2,f +4991,3666,71,1,f +4991,3679,71,3,f +4991,3680,15,2,f +4991,3680,0,1,f +4991,3705,0,1,f +4991,3710,25,13,f +4991,3710,71,5,f +4991,3710,72,3,f +4991,3710,2,2,f +4991,3710,15,2,f +4991,3710,4,2,f +4991,3713,4,1,f +4991,3794b,71,2,f +4991,3795,71,2,f +4991,3795,0,3,f +4991,3795,15,2,f +4991,3795,1,7,f +4991,3829c01,1,1,f +4991,3832,15,1,f +4991,3833,4,1,f +4991,3899,4,2,f +4991,3901,28,1,f +4991,3938,71,1,f +4991,3941,14,1,f +4991,3941,72,2,f +4991,3958,72,1,f +4991,4032a,0,3,f +4991,4070,15,2,f +4991,4079,14,2,f +4991,4079,4,8,f +4991,4079,1,4,f +4991,41531,15,2,f +4991,4162,71,8,f +4991,4345b,1,1,f +4991,4346,71,1,f +4991,44302a,0,1,f +4991,4449,0,1,f +4991,4449,70,1,f +4991,4449,71,1,f +4991,4460b,1,2,f +4991,4477,15,1,f +4991,4519,14,2,f +4991,4533,15,2,f +4991,4599b,1,2,f +4991,4599b,4,1,f +4991,4600,0,4,f +4991,4624,71,10,f +4991,4742,72,2,f +4991,48336,0,2,f +4991,4870,71,4,f +4991,50304,71,2,f +4991,50305,71,2,f +4991,50951,0,14,f +4991,50990b,71,1,f +4991,54090,15,1,f +4991,54091,15,3,f +4991,54092c01,1,1,f +4991,54094,15,1,f +4991,54095,1,2,f +4991,54096,1,1,f +4991,54097,15,1,f +4991,54200,34,1,f +4991,54200,47,2,f +4991,54200,36,1,f +4991,54200,14,2,f +4991,54701c01,1,1,f +4991,59349,41,4,f +4991,59895,0,10,f +4991,59900,40,1,f +4991,60212,14,2,f +4991,60470b,15,2,f +4991,60483,71,2,f +4991,60596,71,1,f +4991,60601,41,22,f +4991,6081,15,2,f +4991,60897,25,1,f +4991,60897,72,2,f +4991,6112,15,1,f +4991,61345,15,11,f +4991,6141,182,2,f +4991,6141,47,1,f +4991,6141,71,3,f +4991,6141,4,1,f +4991,61483,71,1,f +4991,6179,15,1,f +4991,6231,71,4,f +4991,62810,308,1,f +4991,63082,71,3,f +4991,63864,25,2,f +4991,63864,72,3,f +4991,64448,15,8,f +4991,64567,71,2,f +4991,64799,14,1,f +4991,64799,71,1,f +4991,6587,28,2,f +4991,6636,1,2,f +4991,6636,25,6,f +4991,6636,72,2,f +4991,72454,15,4,f +4991,72475,41,3,f +4991,85941,41,8,f +4991,85974,84,1,f +4991,86035,25,1,f +4991,87079,71,16,f +4991,87079,1,1,f +4991,87079,0,2,f +4991,87079,14,1,f +4991,87081,15,2,f +4991,87083,72,1,f +4991,87580,1,1,f +4991,87580,15,1,f +4991,87926,15,2,f +4991,91405,72,2,f +4991,92280,71,1,f +4991,92410,15,2,f +4991,92582,71,1,f +4991,92715c01,72,1,f +4991,92926,2,1,f +4991,92947,71,1,f +4991,92947,4,1,f +4991,93273,72,2,f +4991,93274,14,1,f +4991,93541,71,1,f +4991,93594,179,14,f +4991,93606,15,1,f +4991,96874,25,1,t +4991,970c00,0,2,f +4991,970c00,28,1,f +4991,970c00,15,1,f +4991,970c00,73,2,f +4991,973pr1192c01,0,1,f +4991,973pr2875c01,2,1,f +4991,973pr2998c01,25,2,f +4991,973pr3370c01,15,1,f +4991,973pr3451c01,71,1,f +4991,98138,36,1,f +4991,98138,34,1,f +4991,98549,71,1,f +4991,98560,15,2,f +4991,99207,0,1,f +4991,99207,71,1,f +4992,3001,1,1,f +4992,3001,4,2,f +4992,3001,15,1,f +4992,3003,15,1,f +4992,3003,4,2,f +4992,3003,14,1,f +4992,3003,0,2,f +4992,3003,1,2,f +4992,3003pe1,14,1,f +4992,3004,4,4,f +4992,3004,47,1,f +4992,3004,0,2,f +4992,3004,14,2,f +4992,3004,15,1,f +4992,3004,1,2,f +4992,3005,14,2,f +4992,3007,4,1,f +4992,3020,4,1,f +4992,3021,4,1,f +4992,3137c01,0,2,f +4992,3641,0,4,f +4994,3001,4,8,f +4994,3002,4,2,f +4994,3003,4,2,f +4994,3004,4,8,f +4994,3010,4,11,f +4994,3020,4,6,f +4994,3021,4,4,f +4994,3022,4,10,f +4994,3023,4,17,f +4994,3622,4,8,f +4994,3710,4,8,f +4994,3794a,4,8,f +4995,10199,10,3,f +4995,10888,71,1,f +4995,14441,15,1,f +4995,14442,15,1,f +4995,14443,15,1,f +4995,14444,15,1,f +4995,14445,15,1,f +4995,14446,15,1,f +4995,14447,15,1,f +4995,14448,15,1,f +4995,14449,15,1,f +4995,14450,15,1,f +4995,2300,4,1,f +4995,3011,14,2,f +4995,3011,4,4,f +4995,3011,25,2,f +4995,31023,15,1,f +4995,31062,70,1,f +4995,31110,1,1,f +4995,31110,14,1,f +4995,31110,4,4,f +4995,31110,27,1,f +4995,31110,25,1,f +4995,31191,14,1,f +4995,31195,1,2,f +4995,31452,4,2,f +4995,31453,25,1,f +4995,3437,19,1,f +4995,3437,10,1,f +4995,3437,14,3,f +4995,3437,484,1,f +4995,3437,4,4,f +4995,3966,10,2,f +4995,40666,25,2,f +4995,40666,14,1,f +4995,40666,27,4,f +4995,40666,10,2,f +4995,42093,14,2,f +4995,44524,4,2,f +4995,47510pr0001,29,1,f +4995,47510pr0006,15,1,f +4995,47511pr0003,15,1,f +4995,47511pr0004,71,1,f +4995,47511pr0006,1,1,f +4995,51269,71,1,f +4995,51930,14,1,f +4995,61310,10,1,f +4995,61649,14,1,f +4995,6411,70,1,f +4995,64132,10,3,f +4995,6474,4,1,f +4995,6474,14,4,f +4995,6474,10,1,f +4995,6496,1,1,f +4995,6510,14,4,f +4995,6510,25,1,f +4995,6510,4,2,f +4995,6510,10,1,f +4995,74965,10,3,f +4995,75113pr0001,15,1,f +4995,75737,4,1,f +4995,76371,25,2,f +4995,87084,4,1,f +4995,90265,15,1,f +4995,92094,4,1,f +4995,93150,1,2,f +4999,45449,45,1,f +4999,45474,43,5,f +4999,clikits021,230,1,f +4999,clikits022,45,5,f +4999,clikits022,5,5,f +4999,clikits022,43,8,f +4999,clikits022,118,5,f +4999,clikits025,230,30,f +4999,clikits052,29,1,f +4999,clikits054,118,3,f +4999,clikits054,63,2,f +4999,clikits054,18,3,f +4999,clikits055,18,2,f +4999,clikits055,5,2,f +4999,clikits055,118,1,f +4999,clikits056,63,1,f +4999,clikits056,18,1,f +4999,clikits057,118,3,f +4999,clikits057,5,3,f +4999,clikits058,118,2,f +4999,clikits058,5,2,f +4999,clikits059,5,2,f +4999,clikits060,5,1,f +5000,2913c01,1,1,f +5000,3001a,0,14,f +5000,3001a,4,1,f +5000,3002a,4,2,f +5000,3003,0,1,f +5000,3004,47,1,f +5000,3004,0,9,f +5000,3005,15,8,f +5000,3005,0,6,f +5000,3005,4,10,f +5000,3005,47,4,f +5000,3008,0,8,f +5000,3008,1,4,f +5000,3008pb003,1,2,f +5000,3008px18,0,2,f +5000,3009,15,4,f +5000,3009,4,4,f +5000,3009,1,4,f +5000,3009,0,3,f +5000,3010,15,16,f +5000,3010,1,2,f +5000,3010,0,8,f +5000,3010,4,16,f +5000,3010pb019,15,2,f +5000,3010pb032,4,2,f +5000,3010pb033,15,2,f +5000,3010pb034,4,2,f +5000,3020,0,8,f +5000,3020,7,7,f +5000,3020,4,3,f +5000,3021,7,5,f +5000,3021,4,6,f +5000,3021,0,5,f +5000,3022,4,1,f +5000,3022,7,1,f +5000,3022,0,4,f +5000,3022,14,1,f +5000,3023,4,14,f +5000,3023,0,3,f +5000,3023,7,4,f +5000,3027,7,5,f +5000,303,7,1,f +5000,3034,15,20,f +5000,3037,0,8,f +5000,3039,0,1,f +5000,3040a,0,2,f +5000,3062a,0,5,f +5000,3087bc01,4,2,f +5000,3192,1,2,f +5000,3193,1,2,f +5000,3194,14,1,f +5000,3195,14,1,f +5000,3228a,1,8,f +5000,3229a,1,16,f +5000,3230a,1,16,f +5000,3241b,1,16,f +5000,3242c,1,4,f +5000,433c01,0,2,f +5000,458,7,4,f +5000,7049b,15,6,f +5000,753,4,6,f +5000,wheel2a,4,4,f +5000,wheel2b,4,16,f +5000,x547u,4,3,f +5000,x547u,1,3,f +5000,x550a,0,1,f +5000,x946,0,2,f +5001,2436,71,1,f +5001,30027b,71,2,t +5001,30027b,71,4,f +5001,30028,0,4,f +5001,3021,0,2,f +5001,3022,0,4,f +5001,30602,40,1,f +5001,3710,14,3,f +5001,4589,0,2,f +5001,4589,0,2,t +5001,4600,71,2,f +5002,10201,15,1,f +5002,10314,15,2,f +5002,11089,0,1,f +5002,11092,179,2,f +5002,11098,41,2,f +5002,11100,71,2,f +5002,11127,41,1,f +5002,11127,182,1,f +5002,11211,19,2,f +5002,11458,72,4,f +5002,11476,71,1,f +5002,11477,15,6,f +5002,11477,4,2,f +5002,11477,308,6,f +5002,13547,0,2,f +5002,13548,308,2,f +5002,13549,41,1,f +5002,13731,15,4,f +5002,14707,15,3,f +5002,14769pr1013,15,3,f +5002,15064,179,2,f +5002,15067pr0001,71,1,f +5002,15067pr0002,71,1,f +5002,15068,15,3,f +5002,15068,308,6,f +5002,15068,72,1,f +5002,15071,0,1,f +5002,15091,41,1,f +5002,15100,0,2,f +5002,15107,41,6,f +5002,15208,19,4,f +5002,15392,72,2,f +5002,15403,0,2,f +5002,15571,71,1,f +5002,15625,72,1,f +5002,15672,15,4,f +5002,15706,70,4,f +5002,15712,71,2,f +5002,15712,297,2,f +5002,15712,320,2,f +5002,15712,70,2,f +5002,16659pr0003,30,1,f +5002,16667pr0001,19,1,f +5002,16667pr0002,72,1,f +5002,16770,41,2,f +5002,16968,71,1,f +5002,17979,308,2,f +5002,18394pat0001,36,2,f +5002,18395,191,2,f +5002,18398pr0006,297,1,f +5002,18654,72,4,f +5002,2412b,179,7,f +5002,2445,72,1,f +5002,2450,308,2,f +5002,2456,72,2,f +5002,2780,0,9,f +5002,2817,71,6,f +5002,2921,0,2,f +5002,3001,0,1,f +5002,3001,15,4,f +5002,3002,70,2,f +5002,3003,72,3,f +5002,30031,72,1,f +5002,3008,71,2,f +5002,3009,15,2,f +5002,3009,0,2,f +5002,30099,15,2,f +5002,3010,15,2,f +5002,30136,308,14,f +5002,30153,41,3,f +5002,3020,15,14,f +5002,3020,72,4,f +5002,3021,71,4,f +5002,3022,15,1,f +5002,3022,72,6,f +5002,3023,41,27,f +5002,3023,182,1,f +5002,3023,308,13,f +5002,30236,0,4,f +5002,30237a,72,2,f +5002,3029,71,2,f +5002,3030,71,2,f +5002,3031,4,1,f +5002,3031,1,1,f +5002,3032,71,1,f +5002,3032,0,1,f +5002,3038,72,2,f +5002,3039pr0018,0,1,f +5002,30414,72,8,f +5002,3049c,15,1,f +5002,30503,320,2,f +5002,3062b,41,10,f +5002,3068b,0,1,f +5002,3069b,4,2,f +5002,3069b,0,1,f +5002,3069bpr0090,72,1,f +5002,3070b,0,1,f +5002,32000,72,2,f +5002,32013,72,2,f +5002,32013,71,3,f +5002,32016,71,2,f +5002,32054,4,4,f +5002,32059,15,1,f +5002,32062,4,4,f +5002,32064a,15,5,f +5002,32064a,0,2,f +5002,32316,4,2,f +5002,32348,41,2,f +5002,3245b,15,2,f +5002,32523,71,2,f +5002,32556,19,4,f +5002,3297,15,2,f +5002,3298,72,1,f +5002,3298,71,7,f +5002,3460,72,3,f +5002,3622,15,2,f +5002,3623,70,4,f +5002,3623,72,6,f +5002,3626cpr1284,71,1,f +5002,3626cpr1358,71,1,f +5002,3626cpr1425,19,1,f +5002,3626cpr1429,72,1,f +5002,3626cpr1434,30,1,f +5002,3665,72,2,f +5002,3666,15,2,f +5002,3700,70,6,f +5002,3700,71,4,f +5002,3701,72,2,f +5002,3702,4,2,f +5002,3710,15,4,f +5002,3710,0,7,f +5002,3747b,0,1,f +5002,3749,19,6,f +5002,3795,4,1,f +5002,3795,15,4,f +5002,3832,15,2,f +5002,3937,15,4,f +5002,3941,41,3,f +5002,4032a,15,2,f +5002,4032a,1,1,f +5002,4162,19,4,f +5002,4162,15,1,f +5002,41854,308,3,f +5002,42022,15,2,f +5002,4274,1,6,f +5002,4286,15,2,f +5002,43093,1,6,f +5002,43899,72,2,f +5002,44728,15,10,f +5002,4519,71,2,f +5002,4522,0,1,f +5002,46212,41,2,f +5002,47456,15,1,f +5002,47457,72,2,f +5002,47753,308,3,f +5002,48336,0,4,f +5002,4865a,71,1,f +5002,49668,15,2,f +5002,50950,308,6,f +5002,51739,0,1,f +5002,54200,4,2,f +5002,54200,41,4,f +5002,54200,0,1,f +5002,55013,72,1,f +5002,55982,71,1,f +5002,56904,71,2,f +5002,56904,15,4,f +5002,59900,182,3,f +5002,6019,0,8,f +5002,60474,308,2,f +5002,60475b,71,4,f +5002,60477,308,4,f +5002,60478,0,2,f +5002,60583b,15,2,f +5002,61184,71,4,f +5002,6134,71,4,f +5002,6141,41,8,f +5002,6141,179,1,f +5002,61485,0,1,f +5002,61678,15,2,f +5002,61780,70,1,f +5002,6179,15,2,f +5002,62113,72,1,f +5002,6222,72,2,f +5002,6231,71,1,f +5002,63868,70,2,f +5002,63965,297,1,f +5002,63965,0,1,f +5002,64567,0,5,f +5002,64727,71,1,f +5002,64727,4,1,f +5002,6541,72,4,f +5002,6553,71,4,f +5002,85984,72,2,f +5002,85984,71,2,f +5002,87079,15,1,f +5002,87083,72,2,f +5002,87087,0,2,f +5002,87580,72,1,f +5002,87620,0,2,f +5002,89201,0,1,f +5002,92280,0,2,f +5002,92690,297,1,f +5002,93273,72,6,f +5002,93606,308,4,f +5002,95199,0,1,f +5002,96874,25,1,t +5002,970c00pr0663,4,1,f +5002,970c00pr0673,71,1,f +5002,970c00pr0865,71,1,f +5002,970d00pr0667,19,1,f +5002,970d00pr0670,72,1,f +5002,973pr2665c01,4,1,f +5002,973pr2674c01,19,1,f +5002,973pr2677c01,72,1,f +5002,973pr2686c01,71,1,f +5002,973pr3027c01,71,1,f +5002,98138,41,8,f +5002,98138pr0023,182,1,f +5002,98835,308,1,f +5002,99206,0,1,f +5002,99207,0,6,f +5002,99780,72,2,f +5003,26180pr0002,15,1,f +5003,3626cpr1887,85,1,f +5003,88065pr0002,27,2,f +5003,88066,47,1,f +5003,88646,0,1,f +5003,970c00pr1038,15,1,f +5003,973pr3327c01,15,1,f +5004,3626apr0001,14,2,f +5004,3838,14,2,f +5004,3842a,14,2,f +5004,3962a,0,2,f +5004,970c00,14,2,f +5004,973p90c04,14,2,f +5005,11010,334,1,f +5005,11010,334,2,t +5005,15470,29,1,t +5005,15470,29,2,f +5005,15573,320,1,f +5005,15573,15,2,f +5005,15745,45,1,f +5005,2420,19,2,f +5005,2449,226,2,f +5005,3004,19,4,f +5005,3004,4,1,f +5005,3005,19,2,f +5005,3005,378,2,f +5005,3010,19,2,f +5005,3020,19,1,f +5005,3022,4,1,f +5005,3023,15,1,f +5005,3023,0,1,f +5005,3024,226,4,f +5005,3024,226,1,t +5005,3024,15,1,t +5005,3024,15,2,f +5005,3034,15,1,f +5005,3035,28,2,f +5005,3070b,320,1,t +5005,3070b,15,1,t +5005,3070b,320,2,f +5005,3070b,15,2,f +5005,32028,15,2,f +5005,33061,34,2,f +5005,33291,26,1,t +5005,33291,26,3,f +5005,3460,72,2,f +5005,3460,15,3,f +5005,3626bpr0389,14,1,f +5005,3626cpr0893,14,1,f +5005,3666,72,2,f +5005,3741,2,1,f +5005,3741,2,1,t +5005,3940b,0,1,f +5005,4079,70,2,f +5005,4216,379,8,f +5005,4510,15,1,f +5005,4599b,0,1,t +5005,4599b,0,2,f +5005,54200,15,1,t +5005,54200,15,2,f +5005,59900,0,8,f +5005,60474,320,1,f +5005,60478,0,2,f +5005,60594,15,1,f +5005,60607,70,2,f +5005,6141,297,1,t +5005,6141,0,2,f +5005,6141,0,1,t +5005,6141,297,3,f +5005,6231,4,2,f +5005,62711,308,1,f +5005,62810,0,1,f +5005,85975,320,2,f +5005,87079,15,2,f +5005,87087,19,2,f +5005,87580,4,1,f +5005,95228,47,1,f +5005,970c00,272,1,f +5005,970c00,85,1,f +5005,973pr1776c01,272,1,f +5005,973pr2001c01,85,1,f +5005,98283,378,7,f +5007,30217,5,1,f +5007,30218,15,1,f +5007,30220,462,1,f +5007,30222,6,1,f +5007,33120,15,1,f +5007,33121,4,1,f +5007,33122,462,1,f +5007,33123,462,1,f +5007,3852b,4,1,f +5007,6141,36,2,f +5007,6141,36,1,t +5008,30153,45,4,f +5008,33286,25,6,f +5008,33286,15,2,f +5008,33291,47,3,f +5008,4740,57,4,f +5008,bb146foam,25,1,f +5009,2780,0,1,f +5009,32002,72,2,f +5009,32002,72,1,t +5009,32062,0,4,f +5009,32173,25,2,f +5009,32174,25,4,f +5009,3673,71,2,f +5009,41669,34,2,f +5009,41678,0,1,f +5009,41752,72,1,f +5009,43093,1,4,f +5009,44809,71,1,f +5009,4519,71,2,f +5009,47296,320,1,f +5009,47297,320,2,f +5009,47299,320,2,f +5009,47330,320,1,f +5009,50858,320,4,f +5009,50898,25,2,f +5009,50899,179,1,f +5009,50899pr0002,179,1,f +5009,50900,0,1,f +5009,50901,72,1,f +5009,50903,14,1,f +5009,50904,71,1,f +5009,50913,320,1,f +5009,50918,179,2,f +5009,rb00167,14,1,t +5009,rb00167,14,1,f +5013,3626bpr0773,14,1,f +5013,6141,0,1,f +5013,85975,0,1,f +5013,87991,84,1,f +5013,88646,0,1,f +5013,90398,80,1,f +5013,970c00pr0211,15,1,f +5013,973pr1760c01,15,1,f +5014,10247,71,1,f +5014,11203,15,1,f +5014,11211,71,1,f +5014,11408pr0013c01,78,1,f +5014,11458,70,4,f +5014,11477,27,12,f +5014,11477,85,8,f +5014,11477,70,8,f +5014,11477,26,2,f +5014,11816pr0027,78,1,f +5014,11818pr0009,78,1,f +5014,13547,323,4,f +5014,13965,19,4,f +5014,13965,70,3,f +5014,14395,19,2,f +5014,14417,72,8,f +5014,14418,71,4,f +5014,14704,71,5,f +5014,14769,30,1,f +5014,14769,191,2,f +5014,14769,27,1,f +5014,14769pr1042,27,2,f +5014,15068,27,5,f +5014,15068,323,1,f +5014,15070,27,6,f +5014,15100,0,6,f +5014,15208,0,4,f +5014,15429,19,2,f +5014,15462,28,1,f +5014,15469,322,2,f +5014,15573,15,1,f +5014,15573,70,1,f +5014,15672,70,1,f +5014,15672,72,1,f +5014,15712,70,1,f +5014,16577,19,3,f +5014,18031,179,1,f +5014,18674,70,4,f +5014,18980,30,1,f +5014,19119,2,3,f +5014,19121,297,1,f +5014,19203pr0001,308,1,f +5014,19206pr0001,31,1,f +5014,19532pr0001,320,1,f +5014,20379pr0003,85,1,f +5014,20482,47,2,t +5014,20482,47,2,f +5014,21333pr0002,323,1,f +5014,22888,2,2,f +5014,2343,297,1,f +5014,2357,19,9,f +5014,2357,70,1,f +5014,23969,15,2,f +5014,23988,297,1,t +5014,23988,297,1,f +5014,23989pat0003,27,2,f +5014,23989pat0003,27,1,t +5014,24093pr0002b,297,1,f +5014,2417,26,3,f +5014,24196pr0001,27,1,f +5014,24199,323,1,f +5014,2420,70,4,f +5014,2420,19,1,f +5014,2420,30,2,f +5014,24201,323,4,f +5014,24204,70,4,f +5014,24204,27,1,f +5014,2423,5,1,f +5014,2431,27,1,f +5014,2431,84,1,f +5014,24324,297,1,f +5014,2453b,19,1,f +5014,2454b,19,1,f +5014,2460,0,1,f +5014,2476a,28,1,f +5014,2489,70,1,f +5014,26016,9999,1,f +5014,26019,9999,1,f +5014,2654,0,5,f +5014,2654,47,2,f +5014,2736,71,1,f +5014,2780,0,4,f +5014,2780,0,1,t +5014,3001,19,1,f +5014,3001,322,1,f +5014,3003,0,1,f +5014,3004,19,14,f +5014,3004,84,1,f +5014,3004,0,3,f +5014,3004,70,6,f +5014,3005,19,16,f +5014,3005,84,2,f +5014,3009,72,1,f +5014,3009,19,1,f +5014,3010,70,3,f +5014,30150,84,1,f +5014,30153,52,7,f +5014,30153,34,2,f +5014,3020,323,1,f +5014,3020,30,1,f +5014,3020,27,1,f +5014,3020,70,2,f +5014,3021,30,1,f +5014,3022,15,1,f +5014,3022,27,4,f +5014,3022,70,1,f +5014,3022,85,3,f +5014,3023,0,4,f +5014,3023,191,1,f +5014,3023,1,3,f +5014,3023,19,4,f +5014,3023,30,3,f +5014,3023,70,8,f +5014,3023,72,4,f +5014,3023,27,10,f +5014,3023,14,3,f +5014,3024,19,5,f +5014,3024,19,2,t +5014,3024,34,2,f +5014,3024,34,1,t +5014,3028,28,1,f +5014,3030,28,2,f +5014,3031,70,1,f +5014,3036,2,1,f +5014,30374,70,4,f +5014,3040b,0,4,f +5014,3040b,70,4,f +5014,3045,31,1,f +5014,3062b,70,13,f +5014,3065,45,2,f +5014,3068b,15,1,f +5014,3068b,72,3,f +5014,3068b,27,1,f +5014,3068b,288,1,f +5014,3068b,19,1,f +5014,3068b,191,1,f +5014,3068bpr0291,19,1,f +5014,3069b,25,3,f +5014,3069b,27,2,f +5014,3069b,26,1,f +5014,3069b,84,3,f +5014,3069b,31,3,f +5014,3069bpr0055,15,2,f +5014,3069bpr0171,15,1,f +5014,32015,70,1,f +5014,32028,0,1,f +5014,32034,0,1,f +5014,32062,0,1,f +5014,32064a,72,2,f +5014,32064a,15,1,f +5014,32123b,14,2,f +5014,32123b,14,1,t +5014,3245c,0,2,f +5014,3298,72,2,f +5014,33183,70,2,t +5014,33183,70,2,f +5014,33291,26,1,t +5014,33291,10,1,t +5014,33291,10,3,f +5014,33291,26,4,f +5014,33291,5,9,f +5014,33291,5,3,t +5014,3460,30,2,f +5014,3460,70,1,f +5014,3622,19,2,f +5014,3622,0,2,f +5014,3623,27,2,f +5014,3626b,25,3,f +5014,3626c,143,4,f +5014,3659,72,3,f +5014,3660,70,4,f +5014,3665,72,4,f +5014,3665,308,1,f +5014,3666,191,2,f +5014,3666,70,1,f +5014,3666,2,1,f +5014,3679,71,1,f +5014,3680,0,1,f +5014,3700,70,5,f +5014,3701,0,2,f +5014,3705,0,1,f +5014,3710,70,5,f +5014,3710,19,1,f +5014,3710,30,4,f +5014,3742,29,12,f +5014,3795,191,1,f +5014,3795,27,2,f +5014,3795,70,2,f +5014,3846,15,1,f +5014,3937,72,1,f +5014,3941,0,1,f +5014,40243,31,8,f +5014,40244,0,1,f +5014,41677,0,2,f +5014,41854,308,1,f +5014,4274,71,1,f +5014,4274,71,1,t +5014,4286,72,3,f +5014,4287,70,2,f +5014,43093,1,3,f +5014,4345b,15,1,f +5014,4346,47,1,f +5014,43722,27,1,f +5014,43722,72,1,f +5014,43723,72,1,f +5014,43723,27,1,f +5014,44728,0,4,f +5014,4519,71,1,f +5014,4522,0,1,f +5014,4528,297,2,f +5014,4536,84,1,f +5014,4733,15,2,f +5014,4733,0,1,f +5014,4738a,84,1,f +5014,4739a,84,1,f +5014,4740,129,1,f +5014,4740,0,1,f +5014,48336,19,1,f +5014,48723,70,1,f +5014,50950,85,2,f +5014,54200,143,4,f +5014,54200,70,2,f +5014,54200,34,1,t +5014,54200,143,1,t +5014,54200,85,1,t +5014,54200,0,1,f +5014,54200,85,2,f +5014,54200,27,1,t +5014,54200,0,1,t +5014,54200,27,4,f +5014,54200,34,8,f +5014,54200,70,1,t +5014,59900,0,1,f +5014,59900,15,2,f +5014,6003,2,1,f +5014,60474,72,1,f +5014,60478,15,2,f +5014,60481,70,3,f +5014,60483,72,2,f +5014,60594,70,1,f +5014,60607,297,2,f +5014,60897,19,2,f +5014,60897,70,4,f +5014,60897,0,1,f +5014,6091,27,8,f +5014,6091,26,4,f +5014,61252,297,2,f +5014,61252,19,1,f +5014,6134,0,1,f +5014,6139040a,9999,2,f +5014,6141,35,1,t +5014,6141,70,4,f +5014,6141,297,2,t +5014,6141,70,1,t +5014,6141,85,1,t +5014,6141,297,5,f +5014,6141,15,1,t +5014,6141,15,1,f +5014,6141,35,4,f +5014,6141,85,2,f +5014,62808,297,1,f +5014,62808,297,1,t +5014,63864,0,4,f +5014,64644,297,1,f +5014,64647,15,4,f +5014,64647,15,2,t +5014,6536,14,2,f +5014,6541,70,4,f +5014,6636,0,2,f +5014,85861,182,1,t +5014,85861,182,1,f +5014,85984,15,1,f +5014,85984,85,5,f +5014,87079,70,1,f +5014,87079,2,2,f +5014,87087,0,6,f +5014,87087,70,5,f +5014,87580,84,6,f +5014,87580,27,1,f +5014,87747,0,1,t +5014,87747,0,2,f +5014,87994,15,1,f +5014,87994,15,1,t +5014,88072,0,4,f +5014,88072,19,1,f +5014,88930,27,2,f +5014,92280,0,4,f +5014,92410,70,1,f +5014,92438,2,1,f +5014,92456pr0091c01,78,1,f +5014,92593,0,3,f +5014,92819pr0007c01,70,1,f +5014,93095,70,1,f +5014,96874,25,1,t +5014,98138,34,1,t +5014,98138,45,1,t +5014,98138,52,5,f +5014,98138,52,2,t +5014,98138,27,2,t +5014,98138,41,3,f +5014,98138,34,1,f +5014,98138,27,5,f +5014,98138,41,1,t +5014,98138,45,4,f +5014,98138pr0014,297,1,f +5014,98138pr0014,297,1,t +5014,98138pr0033,34,1,f +5014,98138pr0033,34,1,t +5014,98138pr0048,70,2,f +5014,98138pr0048,70,1,t +5014,98138pr0050,19,2,f +5014,98138pr0050,19,1,t +5014,98283,84,6,f +5014,99206,15,1,f +5014,99207,0,1,f +5014,99780,72,2,f +5014,99781,71,1,f +5015,10197,0,2,f +5015,11214,72,2,f +5015,12799,72,1,f +5015,15100,71,2,f +5015,15100,0,2,f +5015,18651,0,2,f +5015,18946,4,1,f +5015,24316,70,1,f +5015,2780,0,7,f +5015,2780,0,1,t +5015,28884,15,1,f +5015,30803,9999,1,f +5015,32014,71,1,f +5015,32016,0,2,f +5015,32054,71,2,f +5015,32062,4,2,f +5015,32062,0,2,f +5015,32123b,14,10,f +5015,32123b,14,1,t +5015,32140,0,7,f +5015,32184,0,3,f +5015,32271,14,1,f +5015,32271,0,2,f +5015,32278,0,2,f +5015,32291,0,1,f +5015,32523pr0001,15,1,f +5015,32524,0,1,f +5015,32556,19,1,f +5015,3705,0,4,f +5015,3713,71,7,f +5015,3713,71,1,t +5015,40490,72,2,f +5015,41669,36,2,f +5015,41669,14,2,f +5015,41669,143,2,f +5015,41677,0,2,f +5015,42610,71,2,f +5015,4274,71,2,f +5015,4274,71,1,t +5015,43093,1,5,f +5015,44294,71,3,f +5015,44309,0,2,f +5015,4519,71,5,f +5015,45590,0,2,f +5015,55013,72,2,f +5015,56145,0,2,f +5015,59443,71,1,f +5015,60483,0,6,f +5015,64391,14,1,f +5015,64683,14,1,f +5015,6536,72,2,f +5015,6558,1,10,f +5015,6632,14,6,f +5015,6632,0,2,f +5015,78c06,179,1,f +5015,94925,71,2,f +5015,98138,47,2,f +5015,98138,47,1,t +5016,2431,15,1,f +5016,2432,4,1,f +5016,2540,4,1,f +5016,3005,41,2,f +5016,3010,7,2,f +5016,30136,8,4,f +5016,30157,8,2,f +5016,3020,15,1,f +5016,3020,4,1,f +5016,3021,4,2,f +5016,3022,4,2,f +5016,3023,15,4,f +5016,3023,4,1,f +5016,30236,0,1,f +5016,3024,36,1,t +5016,3024,46,4,f +5016,3024,36,4,f +5016,3024,46,1,t +5016,3032,0,1,f +5016,3032,15,3,f +5016,3035,7,2,f +5016,30365,8,2,f +5016,30383,8,2,f +5016,3069b,0,3,f +5016,3069b,4,2,f +5016,3297,4,1,f +5016,3460,4,2,f +5016,3483,0,4,f +5016,3622,15,2,f +5016,3626bp03,14,1,f +5016,3626bp05,14,1,f +5016,3626bpa3,14,1,f +5016,3626bpr0001,14,2,f +5016,3626bpx19,14,1,f +5016,3665,7,2,f +5016,3666,0,1,f +5016,3666,15,1,f +5016,3710,4,6,f +5016,3795,4,2,f +5016,3795,0,2,f +5016,3829c01,0,1,f +5016,3855,41,7,f +5016,3901,0,2,f +5016,3901,6,2,f +5016,3901,19,1,f +5016,4033,4,7,f +5016,4085c,7,2,f +5016,4162,7,4,f +5016,4176,41,2,f +5016,4282,7,1,f +5016,4287,7,2,f +5016,4349,0,2,f +5016,4485,4,1,f +5016,6112,15,2,f +5016,6248,7,4,f +5016,72824p01,15,1,f +5016,970c00,15,5,f +5016,970c00,0,1,f +5016,973c02,4,5,f +5016,973c12,2,1,f +5016,bb80pb02,15,1,f +5017,15207,14,2,f +5017,15207,4,2,f +5017,2412b,1,6,f +5017,2412b,25,5,f +5017,2412b,71,1,f +5017,2431,2,6,f +5017,2431,27,6,f +5017,2432,0,4,f +5017,2432,15,2,f +5017,2436,71,2,f +5017,2437,47,2,f +5017,2445,72,1,f +5017,2456,72,3,f +5017,2458,14,2,f +5017,2540,0,3,f +5017,2877,72,2,f +5017,3001,27,2,f +5017,3001,73,2,f +5017,3001,25,4,f +5017,3001,15,2,f +5017,3001,2,2,f +5017,3001,0,2,f +5017,3001,1,2,f +5017,3001,72,4,f +5017,3002,72,2,f +5017,3003,15,3,f +5017,3003,14,1,f +5017,3003,4,2,f +5017,3003,27,2,f +5017,3003,0,4,f +5017,3003,2,2,f +5017,3004,25,6,f +5017,3004,72,4,f +5017,3004,1,2,f +5017,3004,27,4,f +5017,3004,15,3,f +5017,3004,0,4,f +5017,3004,4,2,f +5017,3004,73,1,f +5017,3004,2,4,f +5017,3005,1,2,f +5017,3005,72,2,f +5017,3005,4,2,f +5017,3005,25,2,f +5017,3009,72,2,f +5017,3009,0,1,f +5017,3010,25,2,f +5017,3010,4,2,f +5017,3010,2,2,f +5017,3010,0,4,f +5017,3010,70,1,f +5017,3020,2,2,f +5017,3020,0,5,f +5017,3020,25,2,f +5017,3020,14,1,f +5017,3021,25,2,f +5017,3022,27,2,f +5017,3022,4,1,f +5017,3023,0,10,f +5017,3023,25,7,f +5017,3023,73,10,f +5017,30236,72,3,f +5017,30237a,15,2,f +5017,3034,71,1,f +5017,30350b,0,1,f +5017,30350b,15,1,f +5017,30367b,15,1,f +5017,30386,0,2,f +5017,30387,71,1,f +5017,30389c,0,1,f +5017,3039,0,4,f +5017,3039,25,5,f +5017,3039,47,2,f +5017,30395,72,1,f +5017,30396,0,1,f +5017,3040b,70,2,f +5017,3040b,25,4,f +5017,3040b,15,4,f +5017,3040b,0,2,f +5017,30414,1,2,f +5017,30526,71,2,f +5017,3062b,36,2,f +5017,3062b,42,2,f +5017,3062b,71,4,f +5017,3069b,27,3,f +5017,3069b,4,5,f +5017,3069b,33,2,f +5017,3069b,2,2,f +5017,3069b,15,5,f +5017,3622,1,4,f +5017,3623,14,2,f +5017,3626bpr0645,14,1,f +5017,3660,14,4,f +5017,3660,72,4,f +5017,3665,14,4,f +5017,3665,4,6,f +5017,3665,1,8,f +5017,3666,14,3,f +5017,3679,71,1,f +5017,3680,1,1,f +5017,3710,1,2,f +5017,3710,0,8,f +5017,3710,4,5,f +5017,3710,2,1,f +5017,3710,25,2,f +5017,3795,25,1,f +5017,3795,15,9,f +5017,3795,72,5,f +5017,3795,14,1,f +5017,3821,25,1,f +5017,3822,25,1,f +5017,3823,47,1,f +5017,3829c01,0,1,f +5017,3829c01,15,4,f +5017,3832,2,2,f +5017,3832,0,3,f +5017,3941,15,1,f +5017,3957b,71,1,f +5017,4006,0,1,f +5017,4032a,1,1,f +5017,4032a,71,5,f +5017,4070,72,4,f +5017,4070,2,4,f +5017,4079,14,1,f +5017,4079,72,1,f +5017,4081b,0,2,f +5017,41854,27,1,f +5017,4282,71,2,f +5017,4287,71,4,f +5017,4488,71,4,f +5017,4589,72,4,f +5017,4599b,14,1,f +5017,4600,71,8,f +5017,4624,71,8,f +5017,47720,0,2,f +5017,48336,71,4,f +5017,50950,15,2,f +5017,50950,4,4,f +5017,50950,27,2,f +5017,51739,1,1,f +5017,54200,27,2,f +5017,54200,36,2,f +5017,54200,2,2,f +5017,54200,46,2,f +5017,55295,0,1,f +5017,55296,0,1,f +5017,55297,0,1,f +5017,55298,0,1,f +5017,55299,0,1,f +5017,55300,0,1,f +5017,55981,71,12,f +5017,6005,25,2,f +5017,6014b,15,12,f +5017,60477,14,4,f +5017,6091,1,6,f +5017,6140,71,2,f +5017,61409,72,2,f +5017,6141,179,6,f +5017,6141,46,2,f +5017,6141,57,2,f +5017,6141,34,3,f +5017,6141,36,10,f +5017,6183,71,2,f +5017,6215,71,1,f +5017,6249,71,3,f +5017,63864,0,2,f +5017,73590c03a,0,1,f +5017,85984,15,2,f +5017,86035,27,1,f +5017,87414,0,8,f +5017,87580,2,1,f +5017,87697,0,12,f +5017,89201,0,12,f +5017,93273,73,2,f +5017,96874,25,1,t +5017,970c00,1,1,f +5017,973pr1470c01,1,1,f +5018,11010,334,1,f +5018,11010,334,2,t +5018,11090,14,1,f +5018,11208,71,4,f +5018,11209,0,4,f +5018,11211,71,4,f +5018,11213,322,1,f +5018,11214,72,1,f +5018,11245pr0001,322,1,f +5018,11303,4,1,f +5018,11408pr0007c01,78,1,f +5018,11476,71,2,f +5018,11477,15,2,f +5018,11575pr0002,15,1,f +5018,11618,26,1,t +5018,11618,322,1,f +5018,11618,26,1,f +5018,11618,322,1,t +5018,11618,31,2,f +5018,11618,31,2,t +5018,11816pr0002,78,1,f +5018,11816pr0005,78,1,f +5018,11816pr0014,78,1,f +5018,12825,71,1,f +5018,12939,226,2,f +5018,13459,15,1,f +5018,14014pr0002,78,1,f +5018,14045,85,1,t +5018,14045,85,1,f +5018,14769,15,3,f +5018,14769,297,4,f +5018,14769,0,2,f +5018,15284pr0001,226,1,f +5018,15332,15,5,f +5018,15470,297,1,t +5018,15470,297,2,f +5018,15706,30,4,f +5018,15875,15,1,f +5018,18746pr0001,272,1,f +5018,2357,19,2,f +5018,2357,15,2,f +5018,2362b,47,2,f +5018,2412b,0,4,f +5018,2412b,15,2,f +5018,2420,30,4,f +5018,2423,2,2,f +5018,2431,73,2,f +5018,2431,322,3,f +5018,2431,29,3,f +5018,2431,26,3,f +5018,2431,14,2,f +5018,2432,15,1,f +5018,2449,226,4,f +5018,2453a,19,6,f +5018,2453a,15,4,f +5018,2454a,15,7,f +5018,2454a,19,2,f +5018,2456,19,3,f +5018,2496,0,2,f +5018,2496,85,2,f +5018,2653,0,2,f +5018,2654,71,1,f +5018,2817,71,1,f +5018,3001,19,2,f +5018,3001,29,3,f +5018,3001,14,7,f +5018,3001,71,1,f +5018,3001,73,2,f +5018,3002,15,2,f +5018,3003,0,1,f +5018,3003,1,2,f +5018,3003,14,1,f +5018,3003,5,2,f +5018,3004,4,1,f +5018,3004,73,2,f +5018,3004,26,2,f +5018,3004,1,2,f +5018,3004,15,5,f +5018,3004,5,4,f +5018,3004,0,2,f +5018,3004,14,1,f +5018,3004,19,6,f +5018,3005,26,2,f +5018,3005,0,2,f +5018,3005,4,1,f +5018,3005,1,1,f +5018,3005,19,7,f +5018,3005,29,6,f +5018,3005,15,16,f +5018,3008,1,2,f +5018,30089,0,2,f +5018,3009,322,2,f +5018,3009,0,1,f +5018,3009,15,6,f +5018,3009,26,8,f +5018,3009,19,4,f +5018,3010,1,1,f +5018,3010,19,5,f +5018,3010,73,2,f +5018,3010,5,9,f +5018,3010,15,6,f +5018,3010,14,4,f +5018,30153,47,1,f +5018,3020,15,2,f +5018,3020,30,3,f +5018,3020,19,4,f +5018,3020,322,6,f +5018,3021,15,2,f +5018,3021,14,1,f +5018,3021,85,3,f +5018,3022,73,2,f +5018,3022,72,2,f +5018,3022,1,1,f +5018,3022,14,2,f +5018,3023,15,5,f +5018,3023,30,14,f +5018,3023,33,2,f +5018,3023,5,1,f +5018,3023,14,7,f +5018,3023,29,4,f +5018,3023,322,2,f +5018,3023,71,2,f +5018,3023,19,1,f +5018,3024,29,1,t +5018,3024,30,2,f +5018,3024,30,1,t +5018,3024,29,1,f +5018,3031,15,1,f +5018,3034,72,2,f +5018,3034,29,2,f +5018,30340,15,2,f +5018,3035,73,1,f +5018,30350b,15,2,f +5018,30357,29,2,f +5018,3037,14,1,f +5018,30374,15,1,f +5018,30385,14,1,f +5018,3039,33,2,f +5018,3039,15,1,f +5018,3039pr62,71,1,f +5018,3040b,5,2,f +5018,3040b,73,2,f +5018,3040b,15,2,f +5018,3040bpr0003,71,1,f +5018,30414,0,1,f +5018,30414,71,3,f +5018,30414,15,2,f +5018,3045,72,2,f +5018,30613,15,2,f +5018,3062b,322,2,f +5018,3062b,47,2,f +5018,3062b,15,10,f +5018,3062b,14,4,f +5018,3062b,320,2,f +5018,3062b,4,2,f +5018,3065,42,6,f +5018,3065,33,2,f +5018,3065,52,4,f +5018,3065,47,2,f +5018,3068b,29,13,f +5018,3068b,71,1,f +5018,3068b,73,14,f +5018,3069b,29,8,f +5018,3069b,1,2,f +5018,3069b,73,3,f +5018,3069b,14,1,f +5018,3069b,26,5,f +5018,3069b,19,1,f +5018,3069bpr0090,72,1,f +5018,3069bpr0100,2,2,f +5018,3069bpr0130,322,1,f +5018,3070b,322,1,t +5018,3070b,1,4,f +5018,3070b,1,1,t +5018,3070b,322,1,f +5018,3070b,29,4,f +5018,3070b,29,1,t +5018,3070bpr0007,71,1,f +5018,3070bpr0007,71,1,t +5018,3176,4,2,f +5018,32054,4,1,f +5018,32073,71,1,f +5018,32140,0,1,f +5018,3245c,19,2,f +5018,3245c,15,1,f +5018,32474,0,1,f +5018,3307,19,3,f +5018,3308,19,4,f +5018,33291,5,9,f +5018,33291,5,4,t +5018,33291,4,2,t +5018,33291,4,8,f +5018,33322,297,1,f +5018,33322,297,1,t +5018,3460,30,8,f +5018,3622,15,9,f +5018,3626c,15,1,f +5018,3633,15,2,f +5018,3659,15,3,f +5018,3659,19,1,f +5018,3665,15,4,f +5018,3666,26,2,f +5018,3666,2,2,f +5018,3666,73,6,f +5018,3678b,72,1,f +5018,3678b,15,2,f +5018,3679,71,2,f +5018,3680,4,1,f +5018,3680,0,1,f +5018,3700,0,6,f +5018,3709,15,1,f +5018,3710,2,6,f +5018,3710,73,1,f +5018,3710,15,1,f +5018,3710,26,2,f +5018,3710,71,4,f +5018,3710,14,2,f +5018,3741,2,3,t +5018,3741,2,9,f +5018,3742,29,8,f +5018,3742,14,16,f +5018,3747b,15,4,f +5018,3794b,1,1,f +5018,3794b,15,1,f +5018,3794b,297,9,f +5018,3795,31,3,f +5018,3795,15,4,f +5018,3795,14,2,f +5018,3821,15,1,f +5018,3822,15,1,f +5018,3829c01,15,1,f +5018,3839b,15,1,f +5018,3937,71,1,f +5018,3937,0,1,f +5018,3938,0,1,f +5018,3941,14,4,f +5018,3941,85,9,f +5018,3942c,0,2,f +5018,3957a,71,2,f +5018,40235,15,1,f +5018,4032a,15,2,f +5018,4032a,70,6,f +5018,4070,15,4,f +5018,4070,14,3,f +5018,4081b,26,2,f +5018,4150,29,1,f +5018,4150p02,14,2,f +5018,4162,15,2,f +5018,4217,15,1,f +5018,42511,1,1,f +5018,4274,1,2,f +5018,4274,1,1,t +5018,4282,15,3,f +5018,4282,212,2,f +5018,4286,15,6,f +5018,4286,31,6,f +5018,4286,4,2,f +5018,4287,15,4,f +5018,4460b,19,7,f +5018,4477,26,2,f +5018,4488,71,4,f +5018,4489,148,2,f +5018,4536,29,1,f +5018,4600,71,1,f +5018,46212,41,2,f +5018,46212,47,2,f +5018,4719,4,1,f +5018,4740,71,2,f +5018,4740,42,1,f +5018,48336,19,2,f +5018,48336,297,2,f +5018,4864b,47,15,f +5018,4865b,15,2,f +5018,4865b,47,7,f +5018,4865b,29,4,f +5018,48729a,0,2,f +5018,48729b,0,1,t +5018,50745,15,4,f +5018,50950,0,3,f +5018,50950,26,2,f +5018,54200,15,4,f +5018,54200,15,1,t +5018,54200,29,1,t +5018,54200,29,1,f +5018,57895,47,8,f +5018,58176,179,8,f +5018,59275,25,2,f +5018,59349,47,4,f +5018,59900,0,1,f +5018,59900,26,14,f +5018,59900,297,2,f +5018,59900,15,20,f +5018,59900,182,1,f +5018,59900,70,6,f +5018,59900,33,3,f +5018,60032,15,2,f +5018,60470a,15,1,f +5018,60478,15,1,f +5018,60481,26,2,f +5018,60581,47,1,f +5018,60581,15,1,f +5018,60596,15,8,f +5018,6126b,41,1,f +5018,6134,0,1,f +5018,6141,46,7,f +5018,6141,42,1,t +5018,6141,33,2,t +5018,6141,33,4,f +5018,6141,15,12,f +5018,6141,71,3,f +5018,6141,57,1,f +5018,6141,42,5,f +5018,6141,15,2,t +5018,6141,4,1,t +5018,6141,2,1,t +5018,6141,4,5,f +5018,6141,29,2,t +5018,6141,2,2,f +5018,6141,47,1,f +5018,6141,29,10,f +5018,6141,27,2,t +5018,6141,182,1,t +5018,6141,46,3,t +5018,6141,71,1,t +5018,6141,27,6,f +5018,6141,47,1,t +5018,6148,297,3,f +5018,6148,2,4,f +5018,61485,0,1,f +5018,6177,26,2,f +5018,6178,15,1,f +5018,6231,322,4,f +5018,6231,15,6,f +5018,6233,14,2,f +5018,62462,15,2,f +5018,6256,191,1,f +5018,62698,0,1,f +5018,63864,71,6,f +5018,63864pr0005,15,1,f +5018,63868,15,4,f +5018,63965,15,2,f +5018,64644,297,4,f +5018,64647,182,1,t +5018,64647,182,1,f +5018,6541,0,1,f +5018,6636,71,1,f +5018,6636,5,1,f +5018,6636,30,2,f +5018,72824,25,1,f +5018,72824pr0001,15,1,f +5018,85984,71,2,f +5018,85984,30,1,f +5018,85984,0,2,f +5018,87079,0,1,f +5018,87079,1,4,f +5018,87079,15,4,f +5018,87079,30,2,f +5018,87079,14,1,f +5018,87079,26,1,f +5018,87087,72,1,f +5018,87544,15,1,f +5018,87544,71,1,f +5018,87552,15,1,f +5018,87580,26,10,f +5018,87580,15,6,f +5018,87580,4,2,f +5018,87991,484,1,f +5018,88072,72,1,f +5018,88072,71,1,f +5018,88072,19,3,f +5018,88930,15,2,f +5018,89523,26,1,f +5018,91405,212,2,f +5018,91405,15,1,f +5018,91501,322,1,f +5018,92258,0,1,f +5018,92280,71,2,f +5018,92410,15,1,f +5018,92438,212,3,f +5018,92456pr0027c01,78,1,f +5018,92456pr0034c01,78,1,f +5018,92456pr0036c01,78,1,f +5018,92456pr0039c01,78,1,f +5018,92456pr0041c01,78,1,f +5018,92583,41,1,f +5018,92593,15,16,f +5018,92817pr0002c01,15,1,f +5018,92818pr0002c01,26,1,f +5018,92819pr0002a,27,1,f +5018,92820pr0005c01,212,1,f +5018,92851,47,2,f +5018,92946,19,2,f +5018,92950,15,3,f +5018,93090pr0003,212,1,f +5018,93091pr0003,323,1,f +5018,93092,191,1,f +5018,93094,4,1,f +5018,93094,26,1,f +5018,93094,5,1,f +5018,93094,30,1,f +5018,93095,15,2,f +5018,93216,15,2,f +5018,93273,15,1,f +5018,93274,71,3,f +5018,95827,4,4,t +5018,95828,4,3,t +5018,95828,4,1,f +5018,95829,4,4,f +5018,95831,4,4,f +5018,95832,4,4,f +5018,96479,322,3,f +5018,96480,322,1,f +5018,96481,322,2,f +5018,96482,322,1,f +5018,96483,322,2,f +5018,96484,322,1,f +5018,96485,322,2,f +5018,96486,322,1,f +5018,96487,322,2,f +5018,96488,322,1,f +5018,96489,322,2,f +5018,96490,322,1,f +5018,96491,322,1,f +5018,96874,25,1,t +5018,98100,71,1,f +5018,98138,71,2,f +5018,98138,46,6,f +5018,98138,46,1,t +5018,98138,36,1,t +5018,98138,297,29,f +5018,98138,297,4,t +5018,98138,71,1,t +5018,98138,45,1,t +5018,98138,36,4,f +5018,98138,29,1,t +5018,98138,29,2,f +5018,98138,45,4,f +5018,98138pr0024a,179,3,f +5018,98138pr0024a,179,2,t +5018,98283,84,4,f +5018,99207,0,2,f +5018,99781,71,1,f +5020,3037,4,24,f +5020,3038,4,18,f +5020,3039,4,32,f +5020,3040b,4,16,f +5020,3041,4,10,f +5020,3043,4,10,f +5020,3044b,4,4,f +5020,3045,4,18,f +5020,3046a,4,10,f +5020,3048c,4,4,f +5020,3049b,4,4,f +5021,11816pr0003,78,1,f +5021,92257,0,1,f +5021,92456pr0022c01,78,1,f +5021,92820pr0001c01,4,1,f +5023,853261,9999,1,f +5025,2412b,15,2,f +5025,2436,1,1,f +5025,3001,0,1,f +5025,3002,0,1,f +5025,3010,1,1,f +5025,3021,0,1,f +5025,3021,15,2,f +5025,3021,1,2,f +5025,3023,1,1,f +5025,3034,71,2,f +5025,3034,0,1,f +5025,3623,1,2,f +5025,3710,1,1,f +5025,3710,15,1,f +5025,3710,0,1,f +5025,3794b,71,4,f +5025,3795,0,1,f +5025,44674,1,1,f +5025,44728,1,1,f +5025,50944pr0001,0,4,f +5025,50947,15,2,f +5025,50951,0,4,f +5025,6141,46,1,t +5025,6141,46,1,f +5025,6157,0,2,f +5027,122c01,7,2,f +5027,298c02,0,2,f +5027,3021,0,1,f +5027,3069b,0,1,f +5027,3626apr0001,14,1,f +5027,3794a,7,2,f +5027,3794a,0,1,f +5027,3838,14,1,f +5027,3842b,14,1,f +5027,3957a,7,1,f +5027,4070,7,2,f +5027,4288,0,4,f +5027,4588,36,1,f +5027,4589,0,2,f +5027,4590,7,2,f +5027,4595,0,1,f +5027,4596,7,1,f +5027,4598,7,1,f +5027,4732,7,1,f +5027,4740,36,2,f +5027,970c00,14,1,f +5027,973p90c04,14,1,f +5028,2570,70,2,f +5028,2586p4k,71,4,f +5028,2586pr0004,71,4,f +5028,2587pr0023,179,2,f +5028,2587pr0024,148,2,f +5028,3003,71,2,f +5028,3003,0,2,f +5028,30136,72,4,f +5028,30136,70,4,f +5028,30153,36,1,f +5028,3022,70,4,f +5028,3022,4,4,f +5028,3022,0,2,f +5028,3022,15,2,f +5028,3023,15,2,f +5028,3023,0,2,f +5028,30237b,0,4,f +5028,30237b,71,4,f +5028,30273,80,8,f +5028,30273,148,8,f +5028,3031,15,32,f +5028,3031,0,32,f +5028,30374,70,3,f +5028,3068bpr0170,70,1,f +5028,33322,297,1,f +5028,3626bpr0411,14,2,f +5028,3626bpr0541,14,2,f +5028,3626bpr0567,14,1,f +5028,3626bpr0579,14,2,f +5028,3626bpr0580,14,1,f +5028,3626bpr0600,14,2,f +5028,3626bpr0679,14,1,f +5028,3626bpr0725,14,8,f +5028,3626cpr0580,14,1,f +5028,3626cpr0754,14,8,f +5028,3678bpr0009,4,1,f +5028,37,72,1,f +5028,3811,2,1,f +5028,3844,148,2,f +5028,3846pr0001a,71,9,f +5028,3846pr0002,71,10,f +5028,3847,179,4,f +5028,3848,148,4,f +5028,43899,71,2,f +5028,4495b,288,2,f +5028,4495b,4,2,f +5028,4497,179,4,f +5028,4498,70,2,f +5028,4623,0,2,f +5028,4623,15,2,f +5028,50231,4,1,f +5028,50231,288,2,f +5028,53705,132,2,f +5028,59,334,1,f +5028,59232,179,4,f +5028,6123,72,2,f +5028,6126b,182,8,f +5028,6131,288,1,f +5028,6132,71,1,f +5028,6231,71,8,f +5028,6231,0,8,f +5028,62537pr0003a,15,2,f +5028,62696,308,1,f +5028,64567,71,9,f +5028,64647,288,2,f +5028,64647,4,3,f +5028,64807,308,1,f +5028,71015,334,1,f +5028,89520,148,2,f +5028,89520,80,2,f +5028,970c00,0,10,f +5028,970c00,288,1,f +5028,970c00pr0154,0,2,f +5028,970c00pr0157,288,1,f +5028,970c00pr0195b,4,1,f +5028,970d10,15,2,f +5028,970x026,71,10,f +5028,973c51,288,1,f +5028,973pr1449c01,0,1,f +5028,973pr1622c01,4,8,f +5028,973pr1623c01,72,2,f +5028,973pr1624c01,72,2,f +5028,973pr1625c01,288,8,f +5028,973pr1626c01,0,2,f +5028,973pr1629c01,4,2,f +5028,973pr1633c01,4,1,f +5028,973pr1722ac01,15,1,f +5028,bb567,179,1,f +5029,2555,74,6,f +5029,3004,74,4,f +5029,3005,45,2,f +5029,30056,73,2,f +5029,30078,5,1,f +5029,3010,74,1,f +5029,30111,15,1,f +5029,30153,46,1,f +5029,30153,45,3,f +5029,30153,34,1,f +5029,3020,27,1,f +5029,3021,74,2,f +5029,30219,15,1,f +5029,3031,5,1,f +5029,3033,15,1,f +5029,33129,13,1,f +5029,33213,13,1,f +5029,33230,74,1,f +5029,33286,115,5,f +5029,3455,15,4,f +5029,3622,45,2,f +5029,3659,10,4,f +5029,3742,5,3,f +5029,3742,4,1,t +5029,3742,5,1,t +5029,3742,4,3,f +5029,3852b,13,1,f +5029,3898pb01,125,2,f +5029,3899,45,2,f +5029,3937,15,2,f +5029,3938,5,2,f +5029,3941,10,1,f +5029,3942c,15,1,f +5029,3957a,13,1,f +5029,3960p0a,4,1,f +5029,4032a,10,1,f +5029,4088,74,2,f +5029,4150px26,14,1,f +5029,4424,115,1,f +5029,44512,10,1,f +5029,4495b,5,1,f +5029,45024pb02c01,5,1,f +5029,45711,2,1,f +5029,4589,46,1,f +5029,4589,34,2,f +5029,45896b,5,1,f +5029,4727,115,5,f +5029,4728,5,1,f +5029,4728,45,1,f +5029,4728,73,2,f +5029,4740,34,1,f +5029,4740,45,1,f +5029,4794b,15,2,f +5029,6079,15,1,f +5029,6124,45,1,f +5029,6176,5,1,f +5029,6179,5,1,f +5029,6182,10,5,f +5029,6187,5,1,f +5029,6203,15,1,f +5029,6256,13,2,f +5029,towel,14,1,f +5032,3039,8,2,f +5032,40373pb01,7,2,f +5032,40374pb01,7,2,f +5032,40375,378,2,f +5032,40378,378,2,f +5032,40379,378,1,f +5032,40380c01pb01,378,1,f +5032,40382c01pb01,378,1,f +5032,40386,378,4,f +5032,40393,378,2,f +5032,40395,378,2,f +5032,40396,378,1,f +5032,6127,378,1,f +5032,6128,378,1,f +5032,x158,378,1,f +5033,2431,15,1,f +5033,2444,0,3,f +5033,2654,47,2,f +5033,2736,71,4,f +5033,2780,0,2,t +5033,2780,0,142,f +5033,2819,71,1,f +5033,2850a,71,8,f +5033,2851,14,8,f +5033,2852,71,8,f +5033,2853,71,2,f +5033,2854,72,3,f +5033,2905,71,8,f +5033,2905,72,4,f +5033,30395,72,1,f +5033,32002,72,1,t +5033,32002,72,3,f +5033,32005a,72,6,f +5033,32009,72,2,f +5033,32009,15,4,f +5033,32009,0,8,f +5033,32012,72,1,f +5033,32013,0,6,f +5033,32014,71,2,f +5033,32016,71,2,f +5033,32017,71,2,f +5033,32034,0,7,f +5033,32034,71,10,f +5033,32039,4,1,f +5033,32039,0,6,f +5033,32054,0,56,f +5033,32056,72,8,f +5033,32062,4,37,f +5033,32063,0,4,f +5033,32068,0,4,f +5033,32072,14,6,f +5033,32073,71,29,f +5033,32123b,71,26,f +5033,32123b,71,1,t +5033,32138,0,4,f +5033,32140,71,10,f +5033,32140,0,2,f +5033,32140,72,4,f +5033,32184,0,12,f +5033,32269,0,1,f +5033,32269,19,5,f +5033,32270,0,4,f +5033,32271,72,2,f +5033,32278,72,4,f +5033,32278,0,10,f +5033,32291,72,6,f +5033,32316,0,4,f +5033,32316,72,5,f +5033,32333,0,2,f +5033,32348,72,6,f +5033,32449,72,10,f +5033,32494,71,2,f +5033,32495c01,0,4,f +5033,32523,72,9,f +5033,32524,72,5,f +5033,32524,0,4,f +5033,32525,72,3,f +5033,32526,71,3,f +5033,32526,0,10,f +5033,32526,72,2,f +5033,32556,19,10,f +5033,32557,71,4,f +5033,33299a,71,2,f +5033,3647,72,4,f +5033,3648b,72,1,f +5033,3705,0,27,f +5033,3706,0,11,f +5033,3707,0,7,f +5033,3708,0,4,f +5033,3710,0,1,f +5033,3713,71,1,t +5033,3713,71,21,f +5033,3737,0,3,f +5033,3743,71,1,f +5033,3749,19,3,f +5033,3794a,0,2,f +5033,4019,71,9,f +5033,40490,71,4,f +5033,40490,72,5,f +5033,40490,0,11,f +5033,41239,0,2,f +5033,41239,72,9,f +5033,41669,36,2,f +5033,41677,71,6,f +5033,41677,0,4,f +5033,42003,71,14,f +5033,4274,71,1,t +5033,4274,71,10,f +5033,43093,1,54,f +5033,43857,0,2,f +5033,44294,71,15,f +5033,44350,72,2,f +5033,44351,72,2,f +5033,44352,72,3,f +5033,44353,72,3,f +5033,44772,71,4,f +5033,44809,0,2,f +5033,4519,71,36,f +5033,4716,71,1,f +5033,48989,71,5,f +5033,54120,0,4,f +5033,55615,71,2,f +5033,56823c200,0,1,f +5033,57515,72,8,f +5033,58119,71,1,f +5033,58120,71,1,f +5033,59426,72,1,f +5033,59443,72,10,f +5033,59443,71,41,f +5033,60483,71,18,f +5033,6141,36,1,t +5033,6141,182,4,f +5033,6141,36,2,f +5033,6141,47,4,f +5033,6141,47,1,t +5033,6141,182,1,t +5033,61903,71,4,f +5033,61929,71,1,f +5033,61930,0,1,f +5033,62821,72,1,f +5033,6536,72,34,f +5033,6538b,19,1,f +5033,6539,4,1,f +5033,6542a,72,6,f +5033,6553,71,3,f +5033,6558,1,36,f +5033,6587,72,13,f +5033,6589,19,3,f +5033,6628,0,4,f +5033,6629,25,4,f +5033,6632,71,6,f +5033,6632,0,9,f +5033,6641,4,1,f +5033,76244,15,1,f +5033,76320,0,2,f +5033,76537,14,4,f +5033,8297stk01,9999,1,t +5034,11203,72,1,f +5034,11211,71,1,f +5034,11303,272,2,f +5034,14716,0,2,f +5034,14769,0,1,f +5034,15068,0,2,f +5034,15068,15,1,f +5034,15207,15,2,f +5034,15534,72,1,f +5034,15573,72,4,f +5034,15712,71,1,f +5034,18674,72,1,f +5034,19220,0,1,f +5034,22888,0,1,f +5034,2340,15,4,f +5034,23999,0,1,f +5034,2412b,72,20,f +5034,2432,0,4,f +5034,2460,71,1,f +5034,2540,71,1,f +5034,2569,0,1,t +5034,2569,0,2,f +5034,2654,19,4,f +5034,2654,46,1,f +5034,298c02,14,1,f +5034,298c02,14,1,t +5034,30031,72,1,f +5034,3004,15,2,f +5034,3005,72,2,f +5034,3007,15,1,f +5034,3008,15,2,f +5034,3010,72,1,f +5034,30162,72,1,f +5034,3020,71,1,f +5034,3022,1,3,f +5034,3023,28,3,f +5034,3023,0,1,f +5034,3024,34,1,f +5034,3024,36,1,t +5034,3024,34,1,t +5034,3024,36,1,f +5034,30340,14,1,f +5034,30361,0,1,f +5034,30361,15,1,f +5034,3038,0,2,f +5034,3039pr0005,15,1,f +5034,3039pr0013,15,1,f +5034,30503,15,2,f +5034,3068b,15,1,f +5034,3069bpr0100,2,2,f +5034,3070b,15,1,t +5034,3070b,15,2,f +5034,3245b,71,1,f +5034,3460,71,2,f +5034,3626cpr0914,14,1,f +5034,3626cpr1091,14,1,f +5034,3626cpr1578,14,1,f +5034,3626cpr1628,14,1,f +5034,3660,71,1,f +5034,3678b,72,2,f +5034,3710,15,2,f +5034,3794b,15,4,f +5034,3795,15,1,f +5034,3795,28,1,f +5034,3823,40,1,f +5034,3829c01,4,1,f +5034,3899,4,1,f +5034,3900,15,1,f +5034,3937,71,2,f +5034,3938,0,2,f +5034,3963,71,1,f +5034,4079,14,1,f +5034,4079,70,2,f +5034,40902,0,1,f +5034,41334,72,1,f +5034,41532,0,1,f +5034,41539,0,1,f +5034,4162,15,4,f +5034,41769,15,1,f +5034,41770,15,1,f +5034,4274,71,2,f +5034,4274,71,2,t +5034,4286,15,2,f +5034,43708,15,2,f +5034,43898,15,2,f +5034,47905,4,1,f +5034,48336,0,1,f +5034,4865b,41,2,f +5034,54200,71,2,f +5034,54200,71,1,t +5034,59900,72,2,f +5034,60129stk01,9999,1,f +5034,60169,72,1,f +5034,6020,0,1,f +5034,60481,15,2,f +5034,60594,0,1,f +5034,60596,0,1,f +5034,60897,15,6,f +5034,6141,46,1,t +5034,6141,46,1,f +5034,61482,71,1,f +5034,61482,71,1,t +5034,62113,72,1,f +5034,62360,41,1,f +5034,62576,41,1,f +5034,62576,15,1,f +5034,62812,4,1,f +5034,63864,0,2,f +5034,63868,0,2,f +5034,64567,0,1,t +5034,64567,0,1,f +5034,6636,0,1,f +5034,87580,72,1,f +5034,87580,15,1,f +5034,88072,72,1,f +5034,88283,308,1,f +5034,92589,71,1,f +5034,92590,28,1,f +5034,93273,72,1,f +5034,970c00,379,1,f +5034,970c00,272,2,f +5034,970c00pr0985,15,1,f +5034,973pr2503c01,0,1,f +5034,973pr3208c01,212,2,f +5034,973pr3209c01,15,1,f +5034,97895,14,2,f +5034,98138,33,7,f +5034,98138,33,2,t +5035,32073,7,1,f +5035,32174,135,6,f +5035,32556,7,1,f +5035,3706,0,2,f +5035,41665,0,2,f +5035,41666,7,2,f +5035,41667,7,1,f +5035,41668,135,2,f +5035,41669,42,2,f +5035,41670,0,4,f +5035,41671pb03,135,1,f +5035,41672,0,2,f +5035,41752,8,1,f +5035,42042,7,1,f +5035,42042und,134,1,f +5035,42074,15,2,f +5035,4519,7,5,f +5035,45275,179,2,f +5035,6628,0,2,f +5035,85544,10,1,f +5035,nuhvokkalcd,89,1,f +5036,33011a,73,1,f +5036,33011b,73,1,f +5036,33011c,73,2,f +5036,33051,2,1,f +5036,33051,10,1,f +5036,33057,366,1,f +5036,33078,4,2,f +5036,33170,14,1,f +5036,33172,25,2,f +5036,33178c01,11,1,f +5036,33183,10,2,f +5036,33183,10,1,t +5036,3837,115,1,f +5036,6251,15,1,f +5036,6256,25,1,f +5037,11477,308,2,f +5037,15064,308,2,f +5037,15068,308,1,f +5037,15208,15,1,f +5037,15392,72,1,t +5037,15392,72,1,f +5037,20105,0,1,f +5037,22388,182,1,t +5037,22388,182,3,f +5037,22402,321,1,f +5037,23861,148,2,f +5037,24482,0,2,f +5037,24482,0,1,t +5037,2654,72,1,f +5037,298c02,4,1,f +5037,298c02,4,1,t +5037,3004,0,2,f +5037,3005,182,2,f +5037,3020,0,1,f +5037,3022,70,1,f +5037,3023,320,1,f +5037,32016,70,4,f +5037,32062,4,8,f +5037,32064a,72,8,f +5037,32474pr1004,4,2,f +5037,3626cpr1817,179,1,f +5037,3626cpr1818,4,1,f +5037,3747a,0,1,f +5037,3832,70,1,f +5037,4274,71,1,t +5037,4274,71,2,f +5037,44728,72,1,f +5037,4497,179,1,f +5037,4498,70,1,f +5037,47720,0,1,f +5037,54383,0,2,f +5037,54384,0,2,f +5037,55981,0,2,f +5037,60897,72,2,f +5037,61184,71,2,f +5037,61409,72,2,f +5037,6141,70,1,f +5037,6141,70,1,t +5037,64567,297,1,t +5037,64567,297,2,f +5037,64867,182,1,f +5037,85984,308,3,f +5037,87083,72,2,f +5037,87087,4,4,f +5037,87580,72,1,f +5037,87747,15,2,f +5037,87747,15,1,t +5037,89520,1,1,f +5037,93563,0,1,f +5037,970c00pr0947,0,1,f +5037,970c00pr0968,71,1,f +5037,973pr3190c01,71,1,f +5037,973pr3191c01,4,1,f +5037,98138,297,1,f +5037,98138,297,1,t +5037,98138,182,1,t +5037,98138,182,2,f +5037,99207,0,1,f +5038,11211,15,3,f +5038,11477,14,2,f +5038,14418,71,3,f +5038,15068,14,2,f +5038,15535,72,4,f +5038,15571,4,1,f +5038,15712,71,1,f +5038,18677,71,2,f +5038,22961,71,1,f +5038,2412b,72,4,f +5038,2419,272,1,f +5038,2431,71,6,f +5038,2431,4,2,f +5038,2432,14,1,f +5038,2654,4,4,f +5038,2780,0,1,t +5038,2780,0,1,f +5038,2877,72,2,f +5038,2877,15,2,f +5038,3001,0,1,f +5038,3003,4,1,f +5038,3004,15,3,f +5038,3005,272,2,f +5038,3010,272,8,f +5038,3010,15,2,f +5038,30151b,47,1,f +5038,30162,72,1,f +5038,3020,4,2,f +5038,3020,15,3,f +5038,3021,14,3,f +5038,3022,14,2,f +5038,3023,0,2,f +5038,3023,14,4,f +5038,3031,15,2,f +5038,3031,72,2,f +5038,3035,4,2,f +5038,30357,4,2,f +5038,30357,15,2,f +5038,3038,272,2,f +5038,30395,72,1,f +5038,3040b,71,4,f +5038,3040b,272,2,f +5038,3040b,15,2,f +5038,30414,4,2,f +5038,30663,0,1,f +5038,3069b,15,1,f +5038,32064a,72,1,f +5038,3460,71,1,f +5038,3623,4,8,f +5038,3660,14,1,f +5038,3665,272,2,f +5038,3700,14,1,f +5038,3710,0,6,f +5038,3794b,71,2,f +5038,3795,15,1,f +5038,4081b,72,2,f +5038,41532,0,1,f +5038,41769,272,1,f +5038,41770,272,1,f +5038,4274,1,1,t +5038,4274,1,1,f +5038,44302a,72,1,f +5038,4460b,15,2,f +5038,44728,71,3,f +5038,4599b,71,2,f +5038,4599b,71,1,t +5038,48729b,71,2,f +5038,48729b,71,1,t +5038,50950,4,2,f +5038,50950,272,6,f +5038,54200,4,1,t +5038,54200,272,1,t +5038,54200,272,10,f +5038,54200,4,4,f +5038,54200,40,4,f +5038,54200,40,1,t +5038,59900,71,3,f +5038,60475b,15,2,f +5038,6141,36,3,f +5038,6141,47,1,t +5038,6141,71,1,t +5038,6141,47,2,f +5038,6141,34,3,f +5038,6141,34,1,t +5038,6141,36,1,t +5038,6141,71,4,f +5038,63965,71,2,f +5038,6628,0,2,f +5038,87079,2,3,f +5038,87087,71,12,f +5038,87544,15,2,f +5038,87580,71,1,f +5038,91501,15,2,f +5038,92593,72,2,f +5038,92946,72,2,f +5038,98560,0,1,f +5040,12825,71,4,f +5040,2431,4,1,f +5040,2444,0,2,f +5040,2445,71,1,f +5040,2540,72,2,f +5040,2654,46,2,f +5040,2817,4,1,f +5040,30157,72,1,f +5040,3020,0,2,f +5040,3020,4,4,f +5040,3020,15,1,f +5040,3021,72,3,f +5040,3022,71,1,f +5040,3023,72,2,f +5040,3023,25,6,f +5040,3034,15,2,f +5040,30391,0,4,f +5040,3062b,71,4,f +5040,30663,0,1,f +5040,3068b,4,2,f +5040,3069b,4,2,f +5040,3070b,15,2,f +5040,3070b,15,1,t +5040,32000,72,2,f +5040,32140,72,2,f +5040,32530,72,2,f +5040,32556,19,2,f +5040,3460,15,1,f +5040,3622,72,2,f +5040,3666,25,2,f +5040,3673,71,2,f +5040,3673,71,1,t +5040,3710,15,2,f +5040,3710,25,1,f +5040,3749,19,4,f +5040,3794b,71,2,f +5040,3795,71,1,f +5040,3839b,0,1,f +5040,3937,0,2,f +5040,4032a,0,2,f +5040,41747,4,1,f +5040,41748,4,1,f +5040,41769,15,1,f +5040,41770,15,1,f +5040,42610,71,2,f +5040,4286,15,2,f +5040,43722,25,1,f +5040,43723,25,1,f +5040,44728,25,4,f +5040,4623,15,2,f +5040,4623,14,2,f +5040,54200,71,5,f +5040,54200,71,1,t +5040,55981,71,4,f +5040,59443,72,1,f +5040,60478,0,4,f +5040,6091,71,2,f +5040,6134,71,2,f +5040,61409,72,2,f +5040,6141,46,2,f +5040,6141,71,2,f +5040,6141,71,1,t +5040,6141,46,1,t +5040,61678,4,2,f +5040,61678,15,2,f +5040,6187,0,1,f +5040,63868,0,2,f +5040,6628,0,2,f +5040,85543,15,2,f +5040,92280,15,2,f +5040,92593,72,2,f +5044,3040b,2,1,f +5044,3623,2,1,f +5044,3665,14,2,f +5044,3710,14,1,f +5044,3794a,14,1,f +5044,4460a,14,2,f +5044,6141,0,2,f +5048,3626cpr1305,14,1,f +5048,88646,0,1,f +5048,970c00,15,1,f +5048,970x001,14,1,f +5048,973pr2522c01,1,1,f +5048,98371,0,1,f +5049,2444,2,1,f +5049,2460,0,2,f +5049,2780,0,2,f +5049,43093,1,2,f +5049,47430,288,2,f +5049,47431,288,2,f +5049,47432,2,2,f +5049,47452,2,2,f +5049,47454,288,2,f +5049,47455,28,10,f +5049,47457,2,6,f +5049,47458,2,2,f +5049,47470pb01,2,1,f +5049,50602,178,2,f +5049,50626,178,1,f +5049,50629,178,2,f +5049,50656pb01,135,1,f +5049,50661c01pb01,2,1,f +5049,bb153pb09,288,1,f +5050,2347,14,1,f +5050,2362a,0,3,f +5050,2412b,0,2,f +5050,2431,0,2,f +5050,2431,14,4,f +5050,2432,15,3,f +5050,2444,7,2,f +5050,2445,0,3,f +5050,2446,15,2,f +5050,2447,33,2,f +5050,2449,0,2,f +5050,2450,14,4,f +5050,2507,33,2,f +5050,2540,7,1,f +5050,2540,14,2,f +5050,2555,7,2,f +5050,2610,14,3,f +5050,2780,0,1,f +5050,2877,0,2,f +5050,2916,0,1,f +5050,2926,0,3,f +5050,2952,0,4,f +5050,2989,0,10,f +5050,298c02,15,2,f +5050,2991,0,4,f +5050,3004,0,2,f +5050,3004,14,1,f +5050,3004,15,1,f +5050,3005,7,2,f +5050,3005,0,4,f +5050,30082,8,1,f +5050,3009,7,2,f +5050,3010,7,1,f +5050,3010,0,2,f +5050,30118,14,2,f +5050,30162,8,1,f +5050,30193,8,1,f +5050,30194,8,1,f +5050,30198,8,1,f +5050,3020,14,2,f +5050,3020,0,3,f +5050,3021,7,5,f +5050,3021,14,1,f +5050,3022,7,2,f +5050,30228,8,1,f +5050,3023,7,6,f +5050,3023,14,2,f +5050,3024,36,2,f +5050,3024,14,4,f +5050,3024,34,2,f +5050,3028,0,1,f +5050,3029,0,4,f +5050,3034,14,3,f +5050,3037,0,7,f +5050,3039pc5,7,1,f +5050,3039pr0005,15,1,f +5050,3040b,14,2,f +5050,3062b,4,1,f +5050,3069b,7,4,f +5050,3069bp68,15,1,f +5050,3176,0,2,f +5050,3314,0,1,f +5050,3317,14,1,f +5050,3460,0,6,f +5050,3613,15,1,f +5050,3623,7,2,f +5050,3626bp03,14,1,f +5050,3626bp04,14,2,f +5050,3660,0,2,f +5050,3665,0,2,f +5050,3666,14,3,f +5050,3679,7,1,f +5050,3680,15,1,f +5050,3710,7,6,f +5050,3749,7,2,f +5050,3829c01,15,2,f +5050,3839b,7,2,f +5050,3870,7,3,f +5050,4081b,15,2,f +5050,4215b,0,1,f +5050,4221,0,2,f +5050,4275b,14,4,f +5050,4286,0,4,f +5050,4315,0,4,f +5050,4474,0,2,f +5050,4477,14,1,f +5050,4485,0,1,f +5050,4531,14,4,f +5050,4533,14,2,f +5050,4597,14,1,f +5050,4599a,15,2,f +5050,4599a,4,1,f +5050,4773,36,2,f +5050,4773,33,2,f +5050,4859,14,2,f +5050,4865a,0,8,f +5050,6014a,15,6,f +5050,6015,0,6,f +5050,6019,7,4,f +5050,6048a,0,3,f +5050,6091,7,8,f +5050,6117,7,2,f +5050,6140,7,1,f +5050,6141,7,2,f +5050,6141,42,4,f +5050,6141,15,2,f +5050,6153a,0,2,f +5050,6217,0,2,f +5050,6230,0,6,f +5050,6238,33,1,f +5050,70961,0,10,f +5050,70962,0,4,f +5050,71128,383,2,f +5050,75535,15,3,f +5050,92410,0,2,f +5050,970x026,15,3,f +5050,973p8bc01,15,2,f +5050,973px101c01,15,1,f +5052,3005,4,2,f +5052,3022,7,1,f +5052,30385,383,1,f +5052,3039,7,1,f +5052,3245b,7,1,f +5052,3623,15,2,f +5052,3626bpx23,14,1,f +5052,3659,0,2,f +5052,3794a,4,1,f +5052,3957a,15,1,f +5052,4524,4,1,t +5052,4524,4,1,f +5052,4854,4,1,f +5052,6091,4,6,f +5052,6141,36,1,t +5052,6141,34,1,t +5052,6141,36,1,f +5052,6141,34,1,f +5052,71015,334,1,f +5052,970c00,15,1,f +5052,973px117c02,8,1,f +5053,2417,15,1,f +5053,3005,114,4,f +5053,3032,15,1,f +5053,33322,143,1,f +5053,33322,143,1,t +5053,3742,4,3,f +5053,3742,4,1,t +5053,3957a,80,2,f +5053,4589,182,1,f +5054,2780,0,1,f +5054,2853,7,2,f +5054,2905,0,2,f +5054,32017,7,2,f +5054,32017,4,2,f +5054,32056,4,2,f +5054,32062,0,1,f +5054,32123b,7,2,f +5054,32123b,7,1,t +5054,3482,15,3,f +5054,3483,0,3,f +5054,3673,7,1,f +5054,3705,0,1,f +5054,3706,0,1,f +5054,3713,7,1,t +5054,3713,7,3,f +5054,4519,0,2,f +5054,6558,0,1,f +5054,71509,0,1,t +5054,71509,0,1,f +5056,2780,0,1,t +5056,2780,0,8,f +5056,32062,4,3,f +5056,43093,1,7,f +5056,43857,71,1,f +5056,47306,72,1,f +5056,47328,320,4,f +5056,49423,320,1,f +5056,50858,135,2,f +5056,50919,320,2,f +5056,53543,320,2,f +5056,53545,191,1,f +5056,58230,320,2,f +5056,59490pat0004,320,1,f +5056,60176,72,5,f +5056,61053,72,4,f +5056,64259pat0001,320,1,f +5056,64262,57,1,f +5056,64265pat0001,320,2,f +5056,64275,135,2,f +5056,64276,72,2,f +5056,64277c01,297,1,f +5056,64889pr0001,135,1,f +5056,6558,1,2,f +5056,6587,72,3,f +5057,36,0,2,f +5057,650,79,1,f +5057,7049b,15,2,f +5057,715,4,2,f +5059,2357,72,2,f +5059,2419,72,2,f +5059,2420,71,4,f +5059,2436,0,1,f +5059,2444,71,4,f +5059,2445,72,1,f +5059,2446pr22b,71,1,f +5059,2447,40,1,t +5059,2447,40,1,f +5059,2456,19,1,f +5059,2458,19,4,f +5059,2460,4,1,f +5059,2540,72,1,f +5059,2555,71,2,f +5059,2654,0,3,f +5059,2736,71,1,f +5059,2780,0,2,f +5059,2877,71,4,f +5059,298c02,15,1,t +5059,298c02,15,1,f +5059,3002,14,2,f +5059,3003,72,1,f +5059,3004,72,6,f +5059,3009,72,6,f +5059,3010,72,2,f +5059,30165,72,4,f +5059,3020,72,8,f +5059,3021,71,6,f +5059,3022,0,3,f +5059,3023,19,15,f +5059,3028,0,1,f +5059,3032,71,3,f +5059,3034,72,9,f +5059,30355,72,1,f +5059,30356,72,1,f +5059,30359b,0,4,f +5059,30364,14,4,f +5059,30365,72,8,f +5059,30367b,72,1,f +5059,30370,70,1,f +5059,3038,71,4,f +5059,30383,0,4,f +5059,30384,40,1,f +5059,30389b,71,4,f +5059,3039,14,7,f +5059,3039,71,6,f +5059,3040b,72,12,f +5059,30414,0,1,f +5059,3045,72,2,f +5059,30503,72,4,f +5059,30526,71,1,f +5059,30540,0,4,f +5059,30602,71,4,f +5059,3062b,71,1,f +5059,3068b,14,4,f +5059,3068b,72,3,f +5059,32000,0,1,f +5059,32028,71,2,f +5059,32034,71,2,f +5059,32062,0,4,f +5059,32064b,19,6,f +5059,32138,0,1,f +5059,32474,0,2,f +5059,32523,0,2,f +5059,32530,72,2,f +5059,32556,71,1,f +5059,3298,70,1,f +5059,3460,0,1,f +5059,3622,19,1,f +5059,3623,71,4,f +5059,3626bpr0449,78,1,f +5059,3626bpr448,78,1,f +5059,3660,72,2,f +5059,3665,71,4,f +5059,3666,72,4,f +5059,3700,71,7,f +5059,3700,14,2,f +5059,3701,14,5,f +5059,3702,71,4,f +5059,3705,0,2,f +5059,3710,71,7,f +5059,3713,71,1,t +5059,3713,71,1,f +5059,3794a,14,4,f +5059,3795,71,1,f +5059,3795,14,3,f +5059,3894,0,2,f +5059,3937,72,5,f +5059,3941,71,4,f +5059,40244,72,1,f +5059,4032a,71,11,f +5059,4070,0,2,f +5059,4095,0,2,f +5059,4150,71,8,f +5059,4162,14,2,f +5059,41747,72,2,f +5059,41748,72,2,f +5059,41752,72,1,t +5059,41764,72,1,f +5059,41765,72,1,f +5059,41767,72,2,f +5059,41768,72,2,f +5059,41769,72,1,f +5059,41770,72,1,f +5059,42022,19,2,f +5059,42060,71,3,f +5059,42061,71,3,f +5059,43093,1,4,f +5059,43712,72,1,f +5059,43713,72,2,f +5059,43857,71,2,f +5059,44294,71,1,f +5059,44661,72,4,f +5059,44728,14,2,f +5059,44728,19,5,f +5059,4510,71,1,f +5059,4519,71,1,f +5059,45301,72,1,f +5059,4589,46,6,f +5059,4589,72,4,f +5059,47397,71,4,f +5059,47398,71,4,f +5059,4740,57,4,f +5059,47753,72,2,f +5059,48183,72,1,f +5059,4854,72,1,f +5059,4855,72,1,f +5059,4865a,71,2,f +5059,4871,71,2,f +5059,50304,71,1,f +5059,50305,71,1,f +5059,50373,71,3,f +5059,52107,0,2,f +5059,54200,36,5,f +5059,55295,0,1,f +5059,55296,0,1,f +5059,55297,0,1,f +5059,55298,0,1,f +5059,55299,0,1,f +5059,55300,0,1,f +5059,6005,0,2,f +5059,6020,0,2,f +5059,6134,0,5,f +5059,6141,57,1,t +5059,6141,57,9,f +5059,6180,0,2,f +5059,6187,14,4,f +5059,6191,14,3,f +5059,6232,19,1,f +5059,6538b,71,2,f +5059,6541,71,4,f +5059,6558,0,5,f +5059,6587,72,2,f +5059,6636,71,1,f +5059,85543,15,1,f +5059,970c00,4,1,f +5059,970x194,15,1,f +5059,973pr1242c01,15,1,f +5059,973pr1243c01,4,1,f +5061,2340,0,2,f +5061,2362a,36,1,f +5061,2412b,0,2,f +5061,2412b,4,4,f +5061,2419,0,3,f +5061,2420,0,2,f +5061,2434,0,1,f +5061,2446p50,4,1,f +5061,2447,42,1,t +5061,2447,42,1,f +5061,2449,0,6,f +5061,2450,4,2,f +5061,2452,0,2,f +5061,2458,0,6,f +5061,2555,0,2,f +5061,2880,0,4,f +5061,298c02,4,2,f +5061,298c02,4,1,t +5061,3004,0,1,f +5061,3020,0,3,f +5061,3020,4,2,f +5061,3021,0,2,f +5061,3022,0,2,f +5061,3023,0,2,f +5061,3023,4,1,f +5061,3031,0,1,f +5061,3034,0,2,f +5061,3039,0,1,f +5061,3039pc7,0,1,f +5061,3040b,0,2,f +5061,3062b,0,2,f +5061,3068bp51,0,2,f +5061,3069bp28,0,1,f +5061,3460,4,1,f +5061,3626bp67,14,1,f +5061,3679,7,1,f +5061,3680,0,1,f +5061,3710,0,3,f +5061,3710,4,1,f +5061,3794a,0,3,f +5061,3838,0,1,f +5061,3839b,0,2,f +5061,3941,4,2,f +5061,3959,0,3,f +5061,4032a,4,2,f +5061,4070,0,2,f +5061,4175,0,2,f +5061,4275b,0,8,f +5061,4275b,4,2,f +5061,4276b,0,16,f +5061,4345b,0,1,f +5061,4346px15,0,1,f +5061,4864a,0,3,f +5061,6118,0,6,f +5061,6141,42,5,f +5061,73590c01a,0,1,f +5061,970x021,0,1,f +5061,973p66c01,1,1,f +5062,3626cpr0914,14,1,f +5062,3834,320,1,t +5062,3834,320,1,f +5062,4349,0,1,t +5062,4349,0,1,f +5062,970c00pr0282,191,1,f +5062,973pr1919c01,191,1,f +5065,2540,0,2,f +5065,3004,70,2,f +5065,3005,4,1,f +5065,3005,70,2,f +5065,3005,71,1,f +5065,3020,70,3,f +5065,3022,14,1,f +5065,3023,4,1,f +5065,3023,70,2,f +5065,3023,71,1,f +5065,3023,0,4,f +5065,3024,0,1,t +5065,3024,0,2,f +5065,3040b,70,4,f +5065,3040b,15,2,f +5065,3040b,14,1,f +5065,3298,70,1,f +5065,3660,70,4,f +5065,3710,14,1,f +5065,3794b,14,2,f +5065,3794b,70,2,f +5065,43722,0,1,f +5065,43723,0,1,f +5065,52501,70,1,f +5065,54200,15,1,t +5065,54200,15,2,f +5065,6091,4,1,f +5065,6141,71,1,f +5065,6141,71,1,t +5065,6141,14,4,f +5065,6141,14,1,t +5065,63868,0,2,f +5066,3020,1,2,f +5066,3021,1,3,f +5066,3022,1,2,f +5066,3039,15,1,f +5066,3039,40,1,f +5066,3040b,15,2,f +5066,3710,71,2,f +5067,2377,15,2,f +5067,2412b,1,1,f +5067,2432,1,1,f +5067,2444,72,1,f +5067,2446,15,1,f +5067,2447,40,1,f +5067,2447,40,1,t +5067,2479,0,1,f +5067,2540,71,2,f +5067,2555,15,1,f +5067,3002,72,1,f +5067,3004,1,2,f +5067,30162,72,1,f +5067,3022,72,2,f +5067,3023,71,2,f +5067,3023,1,3,f +5067,3024,34,2,f +5067,3024,46,1,f +5067,3024,15,1,f +5067,3024,36,2,f +5067,30248,72,1,f +5067,3039pr0013,15,1,f +5067,30407,0,4,f +5067,30592,71,1,f +5067,3460,1,2,f +5067,3623,0,1,f +5067,3626bpr0282,14,1,f +5067,3660,1,1,f +5067,3673,71,1,t +5067,3673,71,1,f +5067,3710,1,3,f +5067,3795,15,1,f +5067,4070,15,2,f +5067,4345b,15,2,f +5067,4346,15,2,f +5067,4360,0,1,f +5067,43713,15,2,f +5067,43723,1,1,f +5067,43898,15,1,f +5067,44301a,72,4,f +5067,45677,15,1,f +5067,4589,0,2,f +5067,4617b,0,1,f +5067,48183,1,2,f +5067,4858,15,1,f +5067,4862,41,2,f +5067,4865a,15,2,f +5067,4871,15,1,f +5067,48729a,72,1,f +5067,48933,15,1,f +5067,54200,15,5,f +5067,54200,36,1,f +5067,54200,33,2,f +5067,57783,41,1,f +5067,6112,15,2,f +5067,6141,47,1,t +5067,6141,47,1,f +5067,6141,36,1,t +5067,6141,36,1,f +5067,61482,71,1,t +5067,61482,71,1,f +5067,6231,15,2,f +5067,6239,15,1,f +5067,7741stk01,9999,1,t +5067,970c00,0,1,f +5067,973pr1186c01,0,1,f +5068,87837,320,2,f +5068,87839,4,4,f +5068,87840,4,4,f +5068,87844,320,2,f +5068,87845,14,1,f +5068,87846,4,1,f +5068,88520,4,1,f +5068,89469,320,1,f +5069,2456,1,4,f +5069,2456,14,4,f +5069,2456,4,4,f +5069,2456,15,4,f +5069,3001,25,8,f +5069,3001,0,17,f +5069,3001,2,17,f +5069,3001,15,30,f +5069,3001,14,34,f +5069,3001,1,30,f +5069,3001,27,4,f +5069,3001,4,30,f +5069,3002,14,16,f +5069,3002,0,8,f +5069,3002,15,16,f +5069,3002,1,16,f +5069,3002,2,8,f +5069,3002,4,16,f +5069,3003,27,14,f +5069,3003,4,80,f +5069,3003,1,80,f +5069,3003,2,46,f +5069,3003,0,46,f +5069,3003,25,28,f +5069,3003,14,94,f +5069,3003,15,80,f +5069,3004,1,100,f +5069,3004,4,100,f +5069,3004,27,20,f +5069,3004,15,100,f +5069,3004,0,60,f +5069,3004,2,60,f +5069,3004,14,120,f +5069,3004,25,40,f +5069,3005,25,20,f +5069,3005,15,50,f +5069,3005,2,40,f +5069,3005,27,10,f +5069,3005,1,50,f +5069,3005,0,36,f +5069,3005,4,50,f +5069,3005,14,50,f +5069,3005pe1,14,6,f +5069,3007,15,2,f +5069,3007,1,2,f +5069,3007,14,2,f +5069,3007,4,2,f +5069,3008,1,4,f +5069,3008,4,4,f +5069,3008,15,4,f +5069,3008,14,4,f +5069,3009,1,8,f +5069,3009,15,8,f +5069,3009,4,8,f +5069,3009,14,8,f +5069,3010,1,15,f +5069,3010,0,12,f +5069,3010,4,15,f +5069,3010,2,12,f +5069,3010,14,15,f +5069,3010,25,4,f +5069,3010,15,15,f +5069,3010,27,2,f +5069,3010p01,14,2,f +5069,3020,1,4,f +5069,3020,0,4,f +5069,3020,4,4,f +5069,3020,15,4,f +5069,3021,4,2,f +5069,3021,15,4,f +5069,3021,0,2,f +5069,3022,1,4,f +5069,3022,0,4,f +5069,3022,4,4,f +5069,3022,15,4,f +5069,3037,14,4,f +5069,3037,4,4,f +5069,3039,4,8,f +5069,3039,14,8,f +5069,3040b,14,14,f +5069,3040b,4,16,f +5069,3297,4,6,f +5069,3297,0,6,f +5069,3298,4,8,f +5069,3298,0,10,f +5069,3622,15,8,f +5069,3622,4,8,f +5069,3622,1,8,f +5069,3622,0,8,f +5069,3622,2,8,f +5069,3622,14,8,f +5069,3660,14,6,f +5069,3660,4,6,f +5069,3665,14,6,f +5069,3665,4,6,f +5069,4286,0,10,f +5070,15207,70,2,f +5070,2412b,71,2,f +5070,2431,72,2,f +5070,2432,72,4,f +5070,2436,71,2,f +5070,2456,0,1,f +5070,2462,19,4,f +5070,2540,72,2,f +5070,2543,320,1,f +5070,298c02,71,1,t +5070,298c02,71,2,f +5070,3010,19,4,f +5070,3020,19,3,f +5070,3021,71,4,f +5070,3022,72,2,f +5070,3023,1,1,f +5070,3023,0,9,f +5070,3032,70,1,f +5070,30357,70,4,f +5070,30374,35,1,f +5070,3039,19,2,f +5070,3040b,28,2,f +5070,3068b,70,3,f +5070,3069b,19,2,f +5070,3069b,28,6,f +5070,3176,71,4,f +5070,32013,71,1,f +5070,32062,4,1,f +5070,32064a,72,2,f +5070,3626cpr0635,78,1,f +5070,3626cpr0666,78,1,f +5070,3626cpr0982,70,1,f +5070,3626cpr0984,326,1,f +5070,3678b,28,1,f +5070,3700,70,2,f +5070,3747b,0,3,f +5070,3794a,28,8,f +5070,3795,72,5,f +5070,3832,70,2,f +5070,3901,19,1,f +5070,3937,72,2,f +5070,3938,71,1,f +5070,3941,70,2,f +5070,3941,47,6,f +5070,3956,71,2,f +5070,40378,28,2,f +5070,40379,28,2,f +5070,4081b,72,4,f +5070,4150,28,2,f +5070,41532,0,2,f +5070,41749,70,1,f +5070,41750,70,1,f +5070,4282,72,3,f +5070,43713,0,1,f +5070,44728,72,1,f +5070,4497,148,1,f +5070,4599b,0,2,f +5070,47456,70,1,f +5070,47457,4,2,f +5070,47544pr0001,308,1,f +5070,47753,28,1,f +5070,48092,71,4,f +5070,53451,15,8,f +5070,53451,15,1,t +5070,53454,148,1,f +5070,59900,70,1,f +5070,60471,71,2,f +5070,60474,72,1,f +5070,60478,72,1,f +5070,61184,71,1,f +5070,61190c,72,4,f +5070,6134,0,1,f +5070,61409,72,2,f +5070,6141,70,6,f +5070,6141,70,1,t +5070,6231,71,2,f +5070,63586,72,4,f +5070,63965,0,4,f +5070,64567,80,1,f +5070,64567,0,1,f +5070,64802,378,1,f +5070,6583,28,2,f +5070,6636,28,4,f +5070,73983,72,1,f +5070,85984,19,2,f +5070,87610pr0001a,378,1,f +5070,87615,70,1,f +5070,89523,28,1,f +5070,90005,326,1,f +5070,92280,71,4,f +5070,92579,28,2,f +5070,92738,0,4,f +5070,970c00,0,1,f +5070,970c00,4,1,f +5070,970c00,19,1,f +5070,970c00pr0341,379,1,f +5070,973pr1619c01,71,1,f +5070,973pr2068c01,484,1,f +5070,973pr2070c01,28,1,f +5070,973pr2073c01,72,1,f +5070,99780,72,4,f +5071,3021,14,30,f +5071,728,7,1,f +5071,729,47,1,f +5073,2339,7,6,f +5073,2343,14,1,f +5073,2345,0,3,f +5073,2357,0,5,f +5073,2357,7,13,f +5073,2400,6,2,f +5073,2420,0,3,f +5073,2420,7,7,f +5073,2431,7,1,f +5073,2431,0,1,f +5073,2436,0,1,f +5073,2444,0,4,f +5073,2445,7,4,f +5073,2446,4,1,f +5073,2449,7,6,f +5073,2453a,7,6,f +5073,2454a,0,4,f +5073,2454a,7,4,f +5073,2456,7,1,f +5073,2458,7,4,f +5073,2489,6,1,f +5073,2490pb03,4,1,f +5073,2540,0,2,f +5073,2554,6,2,f +5073,2555,0,3,f +5073,2570,8,3,f +5073,2586p4d,15,5,f +5073,2588,21,1,f +5073,2594,0,1,f +5073,2743,0,1,f +5073,3001,7,1,f +5073,3002,7,5,f +5073,3003,7,6,f +5073,3004,15,2,f +5073,3004,0,22,f +5073,3004,7,34,f +5073,3004,4,1,f +5073,3004,6,1,f +5073,3005,7,30,f +5073,3005,0,19,f +5073,3007,7,1,f +5073,3008,7,2,f +5073,3008,0,2,f +5073,3009,7,2,f +5073,3009,0,3,f +5073,3010,0,6,f +5073,3010,7,3,f +5073,3020,1,2,f +5073,3020,7,7,f +5073,3021,7,2,f +5073,3022,0,8,f +5073,3022,7,4,f +5073,3023,6,1,f +5073,3023,4,1,f +5073,3023,7,12,f +5073,3023,15,2,f +5073,3023,0,10,f +5073,3024,0,4,f +5073,3024,7,6,f +5073,3029,0,2,f +5073,3029,7,1,f +5073,3030,0,1,f +5073,3031,7,1,f +5073,3032,7,2,f +5073,3032,0,2,f +5073,3034,0,1,f +5073,3035,1,2,f +5073,3036,1,1,f +5073,3040b,7,4,f +5073,3040b,0,2,f +5073,3041,1,1,f +5073,3043,1,1,f +5073,3062b,7,4,f +5073,3063b,7,4,f +5073,3068b,15,1,f +5073,3069b,7,1,f +5073,3307,7,5,f +5073,3308,7,3,f +5073,3403,0,1,f +5073,3404,0,1,f +5073,3455,7,1,f +5073,3456,0,2,f +5073,3460,0,3,f +5073,3460,7,3,f +5073,3581,7,4,f +5073,3622,0,7,f +5073,3622,7,17,f +5073,3623,0,5,f +5073,3623,4,2,f +5073,3623,7,3,f +5073,3626b,0,1,f +5073,3626bp35,14,2,f +5073,3626bp42,14,1,f +5073,3626bpr0001,14,4,f +5073,3626bpr0895,15,1,f +5073,3626bpx122,14,1,f +5073,3626bpx96,14,1,f +5073,3659,7,9,f +5073,3659,8,2,f +5073,3659,0,7,f +5073,3660,8,25,f +5073,3665,7,8,f +5073,3665,0,2,f +5073,3666,0,1,f +5073,3666,7,3,f +5073,3673,7,1,f +5073,3688,1,5,f +5073,3700,0,2,f +5073,3700,7,5,f +5073,3705,0,1,f +5073,3710,0,6,f +5073,3710,7,10,f +5073,3713,7,1,f +5073,3794a,7,2,f +5073,3795,7,1,f +5073,3832,7,2,f +5073,3844,8,2,f +5073,3844,0,2,f +5073,3846p4d,15,8,f +5073,3847,8,4,f +5073,3848,6,3,f +5073,3849,6,6,f +5073,3894,0,2,f +5073,3896,0,2,f +5073,3957a,0,14,f +5073,3958,1,1,f +5073,3959,0,6,f +5073,4070,0,3,f +5073,4070,7,8,f +5073,4081b,7,4,f +5073,4081b,0,2,f +5073,4085c,0,9,f +5073,4150,1,1,f +5073,4213,1,7,f +5073,4213,7,1,f +5073,4216,1,4,f +5073,4265a,7,1,t +5073,4265a,7,1,f +5073,4274,7,1,t +5073,4274,7,1,f +5073,4275b,0,2,f +5073,4276b,0,2,f +5073,4315,1,4,f +5073,4315,0,3,f +5073,4315,7,1,f +5073,4444,0,2,f +5073,4444p08,0,2,f +5073,4460a,0,3,f +5073,4490,7,7,f +5073,4491b,4,1,f +5073,4491b,1,1,f +5073,4493c01pb01,6,1,f +5073,4493c01pb02,0,1,f +5073,4495a,15,3,f +5073,4495a,4,6,f +5073,4497,6,6,f +5073,4498,6,2,f +5073,4499,6,2,f +5073,4503,0,1,f +5073,4529,0,1,f +5073,4589,46,6,f +5073,4589,0,1,f +5073,4623,0,3,f +5073,4733,0,1,f +5073,4735,7,2,f +5073,4735,0,1,f +5073,4738a,6,1,f +5073,4739a,6,1,f +5073,4871,4,1,f +5073,56823c50,0,3,f +5073,59,383,1,f +5073,6019,7,2,f +5073,6037,7,15,f +5073,6044,0,4,f +5073,6046,8,1,f +5073,6055,0,5,f +5073,6056,7,6,f +5073,6066,7,1,f +5073,6091,7,8,f +5073,6106,7,5,f +5073,6107,0,2,f +5073,6107,7,4,f +5073,6108,7,1,f +5073,6108,0,1,f +5073,6111,7,1,f +5073,6112,0,4,f +5073,6112,7,2,f +5073,6123,8,2,f +5073,6141,46,2,f +5073,6141,46,1,t +5073,6141,7,1,t +5073,6141,36,2,f +5073,6141,36,1,t +5073,6141,7,8,f +5073,6260,15,1,f +5073,6261px1,2,1,f +5073,6265,15,2,f +5073,6266,15,2,f +5073,6541,7,2,f +5073,6541,0,1,f +5073,71015,334,1,f +5073,73037,7,1,f +5073,75998pr0007,15,1,f +5073,87692,4,1,t +5073,87692,15,1,f +5073,87693,15,1,t +5073,87693,4,1,t +5073,87694,4,1,f +5073,87694,15,1,f +5073,970c00,1,2,f +5073,970x021,0,3,f +5073,970x026,1,2,f +5073,970x026,4,2,f +5073,973c09,15,1,f +5073,973p41c01,4,1,f +5073,973p41c02,4,2,f +5073,973p4dc01,4,2,f +5073,973p4dc02,15,2,f +5073,973p4dc03,4,1,f +5073,973p4ec01,4,1,f +5073,x375pb01,15,1,f +5073,x376px6,15,1,f +5073,x560px1,15,1,f +5075,30259,14,1,f +5075,4589,4,2,f +5075,4740,15,3,f +5075,48729b,72,1,t +5075,48729b,72,1,f +5075,58176,33,2,f +5079,10201,0,8,f +5079,11090,0,1,f +5079,11215,0,1,f +5079,11439pat0003,42,6,f +5079,11477,272,4,f +5079,11477,1,2,f +5079,11477,4,2,f +5079,14417,72,7,f +5079,14418,71,4,f +5079,14704,71,3,f +5079,15064,0,3,f +5079,15068,272,14,f +5079,15208,72,6,f +5079,15209,158,16,f +5079,15535,72,2,f +5079,15573,4,2,f +5079,15573,1,2,f +5079,15619,272,1,f +5079,15706,0,12,f +5079,15712,0,10,f +5079,15712,297,4,f +5079,15976,0,4,f +5079,19857pat0002,0,1,f +5079,19857pat0003,0,1,f +5079,19858pat0002,42,1,f +5079,19859pat0002,42,1,f +5079,19861pr0001,42,1,f +5079,19861pr0002,42,1,f +5079,20565,0,1,f +5079,20566pat01,0,1,f +5079,20568pat01,272,1,f +5079,20612,40,2,f +5079,20643,272,1,f +5079,21747,158,1,f +5079,21858,158,1,f +5079,2420,71,2,f +5079,2431,0,2,f +5079,2431,15,3,f +5079,2431,42,6,f +5079,2489,70,2,f +5079,2540,72,2,f +5079,3001,0,1,f +5079,3004,4,1,f +5079,3004,0,4,f +5079,3005,71,2,f +5079,30099,15,4,f +5079,30151a,47,1,f +5079,30153,33,1,f +5079,30173b,158,4,f +5079,30173b,297,12,f +5079,30173b,0,2,f +5079,3020,71,2,f +5079,3020,272,7,f +5079,3020,0,14,f +5079,3020,70,2,f +5079,3020,4,2,f +5079,3021,71,3,f +5079,3022,70,1,f +5079,3022,0,7,f +5079,3022,4,3,f +5079,3023,15,1,f +5079,3023,42,15,f +5079,3023,4,6,f +5079,3023,272,2,f +5079,3023,0,5,f +5079,3023,71,2,f +5079,3024,0,2,f +5079,3034,0,2,f +5079,30350a,70,1,f +5079,30377,72,3,f +5079,30383,0,2,f +5079,3040b,0,2,f +5079,30503,0,2,f +5079,30504,15,2,f +5079,30602,4,1,f +5079,30602,1,1,f +5079,3069b,272,3,f +5079,3069b,70,3,f +5079,32059,15,1,f +5079,33085,14,1,f +5079,3460,0,2,f +5079,3626cpr1365,14,1,f +5079,3626cpr1367,14,1,f +5079,3626cpr1681,0,1,f +5079,3626cpr1688,42,2,f +5079,3626cpr1690,158,1,f +5079,3659,0,2,f +5079,3660,0,1,f +5079,3710,71,1,f +5079,3710,72,12,f +5079,3710,4,1,f +5079,3747b,0,3,f +5079,3749,19,1,f +5079,3835,0,1,f +5079,3941,42,12,f +5079,3960,15,2,f +5079,4032a,71,5,f +5079,4081b,0,6,f +5079,4085c,0,4,f +5079,4274,1,6,f +5079,4286,15,2,f +5079,43898,15,2,f +5079,44301a,72,2,f +5079,44302a,0,4,f +5079,44676,0,2,f +5079,44728,0,8,f +5079,4495b,297,2,f +5079,4497,297,4,f +5079,4740,42,4,f +5079,4740,15,2,f +5079,47455,72,5,f +5079,48092,158,16,f +5079,48169,72,5,f +5079,48171,72,5,f +5079,48336,15,1,f +5079,48336,0,5,f +5079,48729b,0,2,f +5079,50949,0,2,f +5079,52501,72,4,f +5079,53451,179,2,f +5079,53451,4,5,f +5079,53451,158,17,f +5079,53451,14,3,f +5079,54200,158,12,f +5079,54200,272,2,f +5079,54200,71,2,f +5079,54200,0,2,f +5079,57909b,72,6,f +5079,59900,1000,3,f +5079,59900,297,8,f +5079,60169,42,2,f +5079,60474,71,4,f +5079,60475b,15,2,f +5079,60477,0,2,f +5079,60478,71,2,f +5079,60583b,71,2,f +5079,60596,0,1,f +5079,61252,297,4,f +5079,6141,4,6,f +5079,6141,42,8,f +5079,6141,297,4,f +5079,6141,1000,8,f +5079,63965,15,2,f +5079,63965,0,2,f +5079,64567,71,2,f +5079,64567,0,2,f +5079,64644,297,2,f +5079,64647,57,2,f +5079,64728,4,1,f +5079,73983,4,2,f +5079,76766,0,8,f +5079,85984,4,2,f +5079,85984,0,2,f +5079,87747,179,2,f +5079,87747,0,7,f +5079,88072,0,2,f +5079,88290,308,2,f +5079,88292,0,2,f +5079,92013,0,2,f +5079,92220,158,11,f +5079,92338,0,1,f +5079,92947,71,1,f +5079,93059,85,1,f +5079,93273,272,2,f +5079,93274,0,2,f +5079,93589,0,1,f +5079,93606,272,9,f +5079,96874,25,1,t +5079,970c00pr0871,288,1,f +5079,970c00pr0877,0,1,f +5079,970c00pr0889,0,1,f +5079,970x268pr001,42,2,f +5079,973pr3018c01,272,1,f +5079,973pr3033c01,0,1,f +5079,973pr3034c01,0,1,f +5079,973pr3040c01,288,1,f +5079,973pr3041c01,85,1,f +5079,973pr3043c01,85,1,f +5079,98132,0,2,f +5079,98137,158,4,f +5079,98138,46,1,f +5079,98138,36,1,f +5079,98283,72,8,f +5079,98283,71,6,f +5079,98313,0,2,f +5079,98560,72,2,f +5079,99207,0,2,f +5079,99780,0,8,f +5079,99781,71,8,f +5079,99784,71,4,f +5080,3001a,14,3,f +5080,3001a,15,16,f +5080,3001a,4,16,f +5080,3002a,15,4,f +5080,3002a,4,4,f +5080,3003,1,1,f +5080,3003,4,6,f +5080,3003,14,1,f +5080,3003,0,1,f +5080,3003,15,6,f +5080,3004,47,4,f +5080,3004,15,6,f +5080,3004,4,6,f +5080,3007,4,2,f +5080,700ex,2,1,f +5081,10247,72,5,f +5081,10247,0,2,f +5081,10247,71,2,f +5081,10928,72,1,f +5081,11055,15,1,f +5081,11203,72,2,f +5081,11211,15,4,f +5081,11476,71,1,f +5081,11477,14,2,f +5081,13793,72,1,f +5081,14518,15,1,f +5081,14518,72,3,f +5081,14769,0,1,f +5081,14769pr0004,71,2,f +5081,15068,14,1,f +5081,15100,0,2,f +5081,15462,28,1,f +5081,15573,72,5,f +5081,15573,15,1,f +5081,15573,19,2,f +5081,18990,47,1,f +5081,19220,0,2,f +5081,19551pr0001,72,1,f +5081,20033,272,1,f +5081,2412b,72,8,f +5081,2412b,71,14,f +5081,2419,71,1,f +5081,2420,14,2,f +5081,2420,15,2,f +5081,2423,326,3,f +5081,2423,2,3,f +5081,2431,14,1,f +5081,2431,84,1,f +5081,2431,0,2,f +5081,2432,72,2,f +5081,2432,71,6,f +5081,2444,15,1,f +5081,2446,4,4,f +5081,2460,72,1,f +5081,2540,0,1,f +5081,2584,0,1,f +5081,2585,71,1,f +5081,2654,71,1,f +5081,2780,0,8,f +5081,2780,0,4,t +5081,2817,71,1,f +5081,298c02,14,5,f +5081,298c02,4,1,t +5081,298c02,71,2,t +5081,298c02,4,1,f +5081,298c02,71,2,f +5081,298c02,14,2,t +5081,30000,72,1,f +5081,3001,4,4,f +5081,3001,71,5,f +5081,3002,15,2,f +5081,3002,70,2,f +5081,30031,72,1,f +5081,3004,15,4,f +5081,3004,72,4,f +5081,3005,0,3,f +5081,3005,15,2,f +5081,3008,71,2,f +5081,30086,25,1,f +5081,30089,0,1,f +5081,3009,15,4,f +5081,3009,0,4,f +5081,30090,41,2,t +5081,30090,41,4,f +5081,30091,72,4,f +5081,30093,288,3,f +5081,30093,10,3,f +5081,30094,14,2,f +5081,30095,72,3,f +5081,3010,71,6,f +5081,3010,0,6,f +5081,30150,70,1,f +5081,30150,84,1,f +5081,30162,72,1,f +5081,30165,14,2,f +5081,3020,0,2,f +5081,3020,71,2,f +5081,3020,72,2,f +5081,3021,0,2,f +5081,3021,14,1,f +5081,3022,4,2,f +5081,3022,320,1,f +5081,3022,0,6,f +5081,3022,71,2,f +5081,3022,72,4,f +5081,3022,19,2,f +5081,3023,320,2,f +5081,3023,46,7,f +5081,3023,4,1,f +5081,3023,0,4,f +5081,3023,72,1,f +5081,3023,14,9,f +5081,3023,71,11,f +5081,3023,15,2,f +5081,30236,15,4,f +5081,30236,71,10,f +5081,3024,72,2,f +5081,3024,46,1,t +5081,3024,46,2,f +5081,3024,14,1,t +5081,3024,14,4,f +5081,3024,72,1,t +5081,3030,72,1,f +5081,3032,15,2,f +5081,3033,71,1,f +5081,3034,0,2,f +5081,30340,14,2,f +5081,3035,71,1,f +5081,3035,72,2,f +5081,30361c,14,4,f +5081,30367c,25,13,f +5081,30367c,14,2,f +5081,3037,71,3,f +5081,3039,0,1,f +5081,30395,72,1,f +5081,3039pr0002,15,1,f +5081,3039pr0005,15,1,f +5081,3040b,0,9,f +5081,3040b,15,5,f +5081,30414,15,1,f +5081,30554a,0,5,f +5081,30602,72,1,f +5081,3062b,321,1,f +5081,3062b,72,3,f +5081,30663,0,1,f +5081,3068b,15,2,f +5081,3068bpr0201,15,1,f +5081,3069b,82,16,f +5081,3069bpr0090,72,2,f +5081,3069bpr0101,71,3,f +5081,3070b,47,2,f +5081,3070b,14,1,t +5081,3070b,47,1,t +5081,3070b,14,4,f +5081,3070bpr0007,71,1,f +5081,3070bpr0007,71,1,t +5081,32062,4,6,f +5081,32064a,0,1,f +5081,32123b,14,1,t +5081,32123b,14,2,f +5081,32278,14,2,f +5081,32348,14,2,f +5081,3245b,15,1,f +5081,3245b,71,2,f +5081,3245c,0,3,f +5081,32529,0,1,f +5081,3298,15,7,f +5081,3622,15,1,f +5081,3623,14,2,f +5081,3623,0,2,f +5081,3624,272,1,f +5081,3626bpr0389,14,1,f +5081,3626bpr0754a,14,1,f +5081,3626cpr0499,14,1,f +5081,3626cpr0893,14,1,f +5081,3626cpr1087,14,1,f +5081,3626cpr1146,14,1,f +5081,3626cpr1580,14,1,f +5081,3660,15,8,f +5081,3665,15,2,f +5081,3666,71,2,f +5081,3673,71,2,f +5081,3673,71,1,t +5081,3675,15,2,f +5081,3678b,0,2,f +5081,3678b,71,6,f +5081,3700,14,1,f +5081,3700,71,2,f +5081,3700,0,1,f +5081,3706,0,1,f +5081,3710,14,1,f +5081,3710,15,3,f +5081,3713,71,1,t +5081,3713,71,5,f +5081,3749,19,10,f +5081,3795,28,2,f +5081,3795,71,3,f +5081,3795,320,1,f +5081,3829c01,71,1,f +5081,3899,4,2,f +5081,3937,0,1,f +5081,3957a,15,1,f +5081,3963,71,2,f +5081,4079,14,1,f +5081,41334,320,1,f +5081,4151b,72,1,f +5081,41529,71,3,f +5081,41532,0,3,f +5081,4162,14,4,f +5081,4175,72,2,f +5081,41769,0,2,f +5081,41769,320,4,f +5081,41770,320,2,f +5081,41770,0,2,f +5081,4274,1,1,t +5081,4274,1,1,f +5081,4274,71,2,t +5081,4274,71,6,f +5081,4286,15,2,f +5081,4289,15,1,f +5081,4445,15,1,f +5081,4476b,15,1,f +5081,4477,15,1,f +5081,4477,71,2,f +5081,4519,71,2,f +5081,4522,0,1,f +5081,4595,0,1,f +5081,4740,2,2,f +5081,47404,0,4,f +5081,47755,72,1,f +5081,48336,71,6,f +5081,48729b,71,1,t +5081,48729b,71,1,f +5081,50304,71,1,f +5081,50305,71,1,f +5081,50949,0,2,f +5081,54384,0,1,f +5081,56823c50,0,1,f +5081,59275,4,4,f +5081,59443,14,2,f +5081,59807,72,2,f +5081,59900,320,3,f +5081,59900,71,1,f +5081,60032,15,1,f +5081,60169,71,1,f +5081,6020,71,1,f +5081,6041,0,5,f +5081,60470a,15,7,f +5081,60470a,0,1,f +5081,60475b,15,2,f +5081,60477,0,1,f +5081,60601,41,5,f +5081,6082,72,1,f +5081,6083,72,1,f +5081,6086,320,1,f +5081,6106,71,1,f +5081,6112,0,1,f +5081,6112,71,1,f +5081,61252,71,2,f +5081,6134,0,1,f +5081,61345,15,2,f +5081,6140,71,3,f +5081,6140,0,3,f +5081,61409,72,4,f +5081,6141,47,2,f +5081,6141,46,3,f +5081,6141,47,2,t +5081,6141,72,1,f +5081,6141,42,1,t +5081,6141,42,2,f +5081,6141,72,1,t +5081,6141,46,1,t +5081,61510,71,1,f +5081,6232,72,4,f +5081,62462,14,2,f +5081,63864,71,2,f +5081,63864,70,2,f +5081,63868,72,2,f +5081,63965,71,1,f +5081,64450,0,1,f +5081,6541,14,2,f +5081,6553,71,1,f +5081,6636,14,1,f +5081,72454,72,1,f +5081,73590c03a,0,1,f +5081,74698,0,1,f +5081,76766,0,1,f +5081,85984,0,2,f +5081,85984,71,2,f +5081,87087,15,2,f +5081,87580,28,4,f +5081,87580,72,2,f +5081,87580,71,1,f +5081,87587pr0001,72,2,f +5081,87587pr0002,15,1,f +5081,87754,71,1,f +5081,88072,0,1,f +5081,89159,41,1,f +5081,89648,15,4,f +5081,89649,41,4,f +5081,91405,28,2,f +5081,91988,72,2,f +5081,92280,71,2,f +5081,92338,72,1,t +5081,92338,72,12,f +5081,92438,72,1,f +5081,92585,4,1,f +5081,92593,71,8,f +5081,92947,0,1,f +5081,93273,15,1,f +5081,93606,14,1,f +5081,96874,25,1,t +5081,970c00,19,1,f +5081,970c00,272,1,f +5081,970c00pr0827,0,4,f +5081,970c00pr0841,25,1,f +5081,973pr2955c01,0,4,f +5081,973pr2991c01,25,1,f +5081,973pr3010c01,4,1,f +5081,973pr3018c01a,1,1,f +5081,98100,71,1,f +5081,98100,15,1,f +5081,98138,36,1,t +5081,98138,47,4,f +5081,98138,25,1,f +5081,98138,34,1,t +5081,98138,36,2,f +5081,98138,34,2,f +5081,98138,25,1,t +5081,98138,47,1,t +5081,99008,19,1,f +5081,99207,0,2,f +5081,99780,72,1,f +5081,99781,71,3,f +5082,2423,2,3,f +5082,3003,4,1,f +5082,3005,4,2,f +5082,3022,4,1,f +5082,3062b,2,6,f +5082,4032a,2,1,f +5082,44375b,15,1,f +5082,4871,4,2,f +5082,54200,4,6,f +5082,60481,4,6,f +5083,10201,4,5,f +5083,10884,41,2,f +5083,11094,0,2,f +5083,11097,297,1,f +5083,11097,41,1,f +5083,11098,41,1,f +5083,11100,71,2,f +5083,11107,179,2,f +5083,11127,41,1,f +5083,11127,182,3,f +5083,11153,326,8,f +5083,11214,72,3,f +5083,11302pat0001,36,2,f +5083,11476,71,1,f +5083,11477,288,6,f +5083,11478,0,2,f +5083,12551pr0001,288,1,f +5083,12825,71,2,f +5083,13547,4,2,f +5083,15083pr0003,72,1,f +5083,15090,179,1,f +5083,15208,288,2,f +5083,15461,0,6,f +5083,15462,28,2,f +5083,16659pr0001,31,1,f +5083,16768pat0001,4,2,f +5083,16770,182,3,f +5083,16770,15,2,f +5083,2412b,326,13,f +5083,2445,4,1,f +5083,2780,0,11,f +5083,2817,4,3,f +5083,30031,72,1,f +5083,3020,326,2,f +5083,3021,72,1,f +5083,3022,4,7,f +5083,3023,326,6,f +5083,3024,326,4,f +5083,3031,15,1,f +5083,3032,72,1,f +5083,3034,72,2,f +5083,30374,0,1,f +5083,30375,72,1,f +5083,3039,326,4,f +5083,3048c,288,4,f +5083,3062b,41,3,f +5083,32000,72,8,f +5083,32009,4,2,f +5083,32039,4,6,f +5083,32054,4,4,f +5083,32056,71,4,f +5083,32056,0,2,f +5083,32062,4,4,f +5083,32073,71,1,f +5083,32123b,71,2,f +5083,32140,72,2,f +5083,32523,72,2,f +5083,32525,4,1,f +5083,32526,4,2,f +5083,32529,0,2,f +5083,32530,72,3,f +5083,33299a,0,2,f +5083,3626cpr1141,288,1,f +5083,3626cpr1422,72,1,f +5083,3626cpr1435,31,1,f +5083,3666,72,2,f +5083,3673,71,1,f +5083,3700,0,2,f +5083,3701,0,2,f +5083,3701,4,4,f +5083,3703,72,2,f +5083,3705,0,7,f +5083,3832,0,1,f +5083,4032a,4,1,f +5083,4081b,72,4,f +5083,41669,36,2,f +5083,41677,4,4,f +5083,41678,72,4,f +5083,41854,326,1,f +5083,42003,4,4,f +5083,42060,326,1,f +5083,42061,326,1,f +5083,4274,71,3,f +5083,43093,1,13,f +5083,43710,326,2,f +5083,43711,326,2,f +5083,4460b,323,2,f +5083,4519,71,2,f +5083,47759,326,1,f +5083,4868b,320,1,f +5083,49668,288,2,f +5083,49668,15,10,f +5083,53451,15,4,f +5083,53451,179,1,f +5083,54383,72,2,f +5083,54384,72,2,f +5083,55013,72,4,f +5083,57585,71,2,f +5083,59426,72,2,f +5083,59443,4,4,f +5083,59900,182,2,f +5083,60478,15,1,f +5083,60478,72,2,f +5083,60483,0,2,f +5083,60484,0,2,f +5083,60897,4,8,f +5083,61072,179,1,f +5083,6126b,57,2,f +5083,61406pat0008,288,3,f +5083,61409,288,4,f +5083,62462,4,1,f +5083,64712,0,2,f +5083,64867,326,3,f +5083,6558,1,6,f +5083,6629,72,2,f +5083,85959pat0003,36,2,f +5083,85984,326,3,f +5083,85984,323,1,f +5083,87083,72,1,f +5083,87747,0,2,f +5083,87747,179,1,f +5083,87747,15,10,f +5083,88072,15,1,f +5083,88289,308,1,f +5083,92690,71,1,f +5083,93273,326,1,f +5083,93606,4,1,f +5083,95753pat0005,25,2,f +5083,970c00pr0662,72,1,f +5083,970c00pr0664,4,1,f +5083,970c00pr0674,72,1,f +5083,973pr2664c01,272,1,f +5083,973pr2668c01,4,1,f +5083,973pr2687c01,72,1,f +5083,98138,326,2,f +5083,98138,41,3,f +5083,98138pr0023,182,2,f +5083,98564,148,4,f +5083,98585,71,2,f +5083,99207,4,4,f +5083,99773,0,2,f +5083,99781,0,1,f +5086,2343,0,3,f +5086,2412b,72,13,f +5086,2431,72,5,f +5086,2432,71,8,f +5086,2445,72,2,f +5086,2456,14,1,f +5086,2458,14,2,f +5086,2465,14,2,f +5086,2486,71,2,f +5086,2540,72,2,f +5086,2584,14,1,f +5086,2585,71,1,f +5086,2635a,14,2,f +5086,2637,71,1,f +5086,2780,0,1,t +5086,2780,0,1,f +5086,2877,72,2,f +5086,2989,0,4,f +5086,30000,72,1,f +5086,3001,14,7,f +5086,3004,0,3,f +5086,3008,14,2,f +5086,3010,14,3,f +5086,30157,71,3,f +5086,30165,14,4,f +5086,3020,14,4,f +5086,3022,72,1,f +5086,3023,14,2,f +5086,3023,0,1,f +5086,3023,46,2,f +5086,30258,14,2,f +5086,30261,14,1,f +5086,30285,14,6,f +5086,30300,14,1,f +5086,3032,0,1,f +5086,3034,71,3,f +5086,3035,72,1,f +5086,30364,0,2,f +5086,30365,71,1,f +5086,3037,14,1,f +5086,30390b,71,1,f +5086,30391,0,6,f +5086,30395,72,1,f +5086,30396,0,1,f +5086,30397,0,2,f +5086,3040b,182,8,f +5086,30517,72,4,f +5086,30552,71,2,f +5086,3062b,72,15,f +5086,30663,71,1,f +5086,3068b,0,4,f +5086,3068b,14,2,f +5086,3069b,36,1,f +5086,3069bpr0101,71,1,f +5086,3070b,46,4,f +5086,32007,14,2,f +5086,32013,0,2,f +5086,32062,4,2,f +5086,32064b,72,2,f +5086,32530,72,2,f +5086,33299a,71,2,f +5086,3403c01,71,1,f +5086,3460,14,3,f +5086,3492c01,14,1,f +5086,3622,14,4,f +5086,3623,72,2,f +5086,3626bpb0172,14,1,f +5086,3626bpr0386,14,1,f +5086,3626bpr0387,14,1,f +5086,3639,72,1,f +5086,3640,72,1,f +5086,3673,71,1,f +5086,3673,71,1,t +5086,3703,0,1,f +5086,3710,14,5,f +5086,3710,0,2,f +5086,3713,71,1,t +5086,3713,71,12,f +5086,3736,71,2,f +5086,3737,0,4,f +5086,3794a,71,2,f +5086,3823,40,1,f +5086,3829c01,1,2,f +5086,3832,14,1,f +5086,3833,4,3,f +5086,3836,70,1,f +5086,3837,72,1,f +5086,3839b,14,1,f +5086,3894,72,4,f +5086,3958,0,1,f +5086,4019,71,4,f +5086,4033,14,1,f +5086,4080,71,1,f +5086,40902,0,4,f +5086,41529,14,1,f +5086,41530,71,5,f +5086,41539,0,1,f +5086,4175,14,2,f +5086,41752,8,1,f +5086,41767,14,1,f +5086,41768,14,1,f +5086,42446,72,2,f +5086,4282,0,4,f +5086,44570,14,1,f +5086,44822,0,1,f +5086,4519,71,1,f +5086,45677,14,1,f +5086,4697b,71,1,t +5086,4697b,71,1,f +5086,4855,14,1,f +5086,4872,40,1,f +5086,54200,182,10,f +5086,56823,0,1,f +5086,6019,0,2,f +5086,6019,71,2,f +5086,6070,14,2,f +5086,6087,0,1,f +5086,6141,0,1,t +5086,6141,0,2,f +5086,6589,71,2,f +5086,6636,14,2,f +5086,680c01,0,1,f +5086,75535,72,2,f +5086,85546,14,2,f +5086,970c00,25,3,f +5086,973pb0263c01,25,1,f +5086,973pb0415c01,25,1,f +5086,973pr1182c01,25,1,f +5086,x656,0,2,f +5087,3624,15,1,f +5087,3625,0,1,f +5087,3626apr0001,14,3,f +5087,3833,4,1,f +5087,970c00,1,1,f +5087,970c00,0,1,f +5087,970c00,4,1,f +5087,973c02,4,1,f +5087,973c07,1,1,f +5087,973pb0091c01,0,1,f +5088,4162pb026,15,1,f +5088,6180pb017l,15,1,f +5088,6180pb017r,15,1,f +5091,12825,1,4,f +5091,12825,72,6,f +5091,2357,320,6,f +5091,3002,1,6,f +5091,3004,15,5,f +5091,3005,320,20,f +5091,3005,73,5,f +5091,3020,72,2,f +5091,3021,71,4,f +5091,3021,72,14,f +5091,3021,2,5,f +5091,3023,2,8,f +5091,3023,73,3,f +5091,3023,320,5,f +5091,3024,73,10,f +5091,3024,72,5,f +5091,3024,320,35,f +5091,3024,4,1,f +5091,3024,14,3,f +5091,3024,15,28,f +5091,3024,47,35,f +5091,3028,0,4,f +5091,3034,19,2,f +5091,30357,72,1,f +5091,3068b,72,6,f +5091,3069b,71,4,f +5091,3069b,72,2,f +5091,3069b,14,1,f +5091,3069b,0,10,f +5091,3070b,71,2,f +5091,3070b,73,1,f +5091,33291,2,9,f +5091,3623,72,16,f +5091,3623,71,4,f +5091,3623,0,1,f +5091,3623,2,6,f +5091,3794b,71,3,f +5091,3794b,2,6,f +5091,4070,71,1,f +5091,4162,0,4,f +5091,4162pr0024,0,1,f +5091,4162pr0025,0,1,f +5091,4589,2,3,f +5091,54200,14,1,f +5091,54200,73,1,f +5091,6141,80,2,f +5091,6141,70,3,f +5091,62462,80,2,f +5091,63864,71,2,f +5091,75c20,1,2,f +5091,87580,71,4,f +5095,10039,0,1,f +5095,10201,4,1,f +5095,11002,0,1,f +5095,2420,4,2,f +5095,3020,0,2,f +5095,3023,14,2,f +5095,3023,4,4,f +5095,3034,72,1,f +5095,3069b,4,1,f +5095,3710,0,1,f +5095,3794b,0,1,f +5095,4070,4,6,f +5095,50944pr0001,0,4,f +5095,50951,0,4,f +5095,54200,4,1,f +5095,54200,0,1,t +5095,54200,4,1,t +5095,54200,0,2,f +5095,60212,4,1,f +5095,61409,4,2,f +5095,63864,4,2,f +5095,93274,4,1,f +5095,93591pr0020,4,1,f +5095,98138,36,1,t +5095,98138,36,2,f +5095,98835pr0006,4,1,f +5098,2446,15,1,f +5098,2447,41,1,t +5098,2447,41,1,f +5098,2460,7,1,f +5098,2479,0,1,f +5098,298c02,15,2,f +5098,298c02,15,1,t +5098,3003,4,1,f +5098,3479,0,1,f +5098,3626bp05,14,1,f +5098,3666,0,4,f +5098,3795,0,1,f +5098,4617b,0,1,f +5098,6140,4,2,f +5098,6232,4,1,f +5098,970c00,1,1,f +5098,973pr1156c01,1,1,f +5102,3003,15,1,f +5102,3021,14,1,f +5102,3022,15,1,f +5102,3022,4,1,f +5102,3062b,15,1,f +5102,3062b,4,2,f +5102,3298,0,1,f +5102,3660,0,1,f +5102,3794a,0,1,f +5104,13571pr01,308,1,f +5104,13664pr0001,308,1,f +5104,13665,0,1,f +5104,2460,0,1,f +5104,3031,19,1,f +5104,3062b,71,1,f +5104,33057,484,1,f +5104,3626cpr1194,84,1,f +5104,48723,70,1,f +5104,54200,71,4,f +5104,54200,71,1,t +5104,6126b,182,1,f +5104,6141,182,2,f +5104,6141,72,1,t +5104,6141,72,2,f +5104,6141,182,1,t +5104,970c00pr0545,28,1,f +5104,973pr2344c01,84,1,f +5107,11272,148,1,f +5107,11305,4,1,f +5107,11334,72,2,f +5107,11338,148,1,f +5107,13820pr01,72,1,f +5107,2780,0,1,t +5107,2780,0,2,f +5107,4519,71,1,f +5107,4740,36,1,f +5107,61184,71,1,f +5107,61403,179,1,f +5107,74261,72,2,f +5107,87747,15,1,t +5107,87747,15,8,f +5107,90607,0,2,f +5107,90609,0,2,f +5107,90612,0,1,f +5107,90616,72,4,f +5107,90625,0,1,f +5107,90639,320,4,f +5107,90650,148,2,f +5107,90652,179,2,f +5107,90661,179,2,f +5107,92233,72,2,f +5107,93571,0,1,f +5107,98313,72,8,f +5107,98577,72,1,f +5107,98603s01pr0008,148,1,f +5109,3873,0,54,f +5111,32002,8,4,f +5111,32002,8,1,t +5111,32016,14,1,f +5111,32039,14,2,f +5111,32039,4,1,f +5111,32175,4,1,f +5111,32175,1,1,f +5111,32316,4,2,f +5111,32316,1,2,f +5111,32523,14,1,f +5111,32523,135,1,f +5111,3673,7,1,t +5111,3673,7,4,f +5111,41677,4,1,f +5111,41677,0,1,f +5111,41752,8,1,f +5111,42074,179,4,f +5111,43559,1,1,f +5111,43559,0,1,f +5111,44848,0,1,f +5111,6536,4,2,f +5111,6587,8,2,f +5111,6628,0,4,f +5111,rb00167,0,2,t +5111,rb00167,0,2,f +5112,2335pb063,15,2,f +5112,2339,71,2,f +5112,2343,297,1,f +5112,2357,71,36,f +5112,2431,70,9,f +5112,2445,70,1,f +5112,2453a,71,2,f +5112,2454a,71,12,f +5112,2456,71,7,f +5112,2462,71,12,f +5112,2489,70,1,f +5112,2490pr0003,4,1,f +5112,2540,0,2,f +5112,2570,70,2,f +5112,2570,148,1,f +5112,2586pr0004,71,1,f +5112,2587pr0022,297,1,f +5112,2587pr0024,148,1,f +5112,2780,0,18,f +5112,2780,0,4,t +5112,3001,0,2,f +5112,3002,71,2,f +5112,3003,72,2,f +5112,3003,71,1,f +5112,3004,72,2,f +5112,3004,15,1,f +5112,3004,71,73,f +5112,30044,70,2,f +5112,30046,297,4,f +5112,3005,70,4,f +5112,3005,72,14,f +5112,3005,71,64,f +5112,3008,0,2,f +5112,3008,70,2,f +5112,3008,71,7,f +5112,3009,71,24,f +5112,3010,71,15,f +5112,3010,72,1,f +5112,30134,70,1,f +5112,30136,70,3,f +5112,30145,71,3,f +5112,30153,36,1,f +5112,30153,33,1,f +5112,30153,46,1,f +5112,30153,34,1,f +5112,3020,4,1,f +5112,3020,72,2,f +5112,3021,70,2,f +5112,3023,72,7,f +5112,3023,15,1,f +5112,3023,70,2,f +5112,30236,71,1,f +5112,30237a,72,2,f +5112,30237a,71,12,f +5112,30273,148,1,f +5112,30273,80,2,f +5112,30274,71,1,f +5112,3029,2,2,f +5112,3030,72,4,f +5112,3030,2,4,f +5112,3031,72,2,f +5112,3032,72,4,f +5112,3034,2,1,f +5112,3036,70,2,f +5112,30364,0,1,f +5112,3037,4,8,f +5112,3037,71,4,f +5112,3037,70,2,f +5112,3039,4,4,f +5112,3039,72,2,f +5112,30390b,71,1,f +5112,3040b,71,12,f +5112,30414,72,1,f +5112,3045,4,8,f +5112,3048c,4,7,f +5112,30553,72,1,f +5112,3062b,0,4,f +5112,3069b,72,1,f +5112,3069b,70,3,f +5112,3070b,14,2,f +5112,3070b,14,1,t +5112,3245c,71,17,f +5112,32530,0,4,f +5112,3307,71,6,f +5112,3308,71,3,f +5112,3460,72,4,f +5112,3622,71,18,f +5112,3623,70,6,f +5112,3626bpr0325,14,1,f +5112,3626bpr0389,14,1,f +5112,3626bpr0411,14,1,f +5112,3626bpr0541,14,1,f +5112,3626bpr0566,14,1,f +5112,3626bpr0645,14,1,f +5112,3626bpr0649,14,1,f +5112,3626bpr0679,14,1,f +5112,3659,71,2,f +5112,3660,70,32,f +5112,3665,70,18,f +5112,3673,71,1,t +5112,3673,71,2,f +5112,3678b,72,9,f +5112,3679,71,2,f +5112,3680,0,2,f +5112,3684,72,2,f +5112,3684,4,5,f +5112,3685,4,8,f +5112,3700,72,38,f +5112,3700,70,6,f +5112,3705,0,2,f +5112,3707,0,1,f +5112,3710,72,6,f +5112,3710,71,2,f +5112,3713,4,1,t +5112,3713,4,1,f +5112,3737,0,1,f +5112,3794a,70,3,f +5112,3794a,297,3,f +5112,3795,70,1,f +5112,3795,72,1,f +5112,3832,72,2,f +5112,3844,80,2,f +5112,3844,148,1,f +5112,3846pr0001a,71,6,f +5112,3846pr0002,71,1,f +5112,3847,135,2,f +5112,3847,148,1,f +5112,3848,0,2,f +5112,3849,0,4,f +5112,3895,71,1,f +5112,3941,0,1,f +5112,3958,72,2,f +5112,40234,71,1,f +5112,41539,2,2,f +5112,41539,72,4,f +5112,4162,72,3,f +5112,4286,0,2,f +5112,43093,1,2,f +5112,43899,72,2,f +5112,44358,70,1,f +5112,4460b,72,18,f +5112,4477,70,3,f +5112,4495b,4,5,f +5112,4495b,297,5,f +5112,4497,135,1,f +5112,4497,148,1,f +5112,4498,70,3,f +5112,4523,70,1,f +5112,4738a,70,1,f +5112,4739a,70,1,f +5112,4871,4,1,f +5112,48723,70,3,f +5112,48729b,72,2,f +5112,48729b,72,1,t +5112,50231,4,1,f +5112,54200,4,20,f +5112,54200,4,2,t +5112,59,334,1,f +5112,59232,179,1,f +5112,59443,72,4,f +5112,59900,297,2,f +5112,60169,72,2,f +5112,60474,71,1,f +5112,60475a,72,4,f +5112,60596,0,1,f +5112,60621,0,1,f +5112,60808,71,16,f +5112,6108,71,1,f +5112,6111,71,5,f +5112,6141,70,1,t +5112,6141,70,1,f +5112,61485,0,1,f +5112,6232,71,2,f +5112,63864,72,8,f +5112,63965,0,1,f +5112,64390,70,2,f +5112,64644,308,12,f +5112,64647,4,1,f +5112,64647,57,12,f +5112,64647,57,6,t +5112,64647,4,1,t +5112,64647,288,1,f +5112,64647,288,1,t +5112,6587,28,2,f +5112,71015,334,1,f +5112,75998pr0007,15,1,f +5112,7946stk01,9999,1,t +5112,85984,72,10,f +5112,87079,70,1,f +5112,87087,0,6,f +5112,87421,71,6,f +5112,87580,4,1,f +5112,88289,308,2,f +5112,88393,72,6,f +5112,89519,0,1,f +5112,89520,148,1,f +5112,89522,135,1,f +5112,89523,72,2,f +5112,89523,2,2,f +5112,89524,82,1,f +5112,90195,71,6,f +5112,90258,72,6,f +5112,970c00,0,2,f +5112,970c00pr0153,320,1,f +5112,970c00pr0154,0,1,f +5112,970x026,71,4,f +5112,973pr1621c01,320,1,f +5112,973pr1622c01,4,2,f +5112,973pr1623c01,72,2,f +5112,973pr1624c01,72,1,f +5112,973pr1625c01,288,1,f +5112,973pr1626c01,0,1,f +5115,3736,7,25,f +5119,15573,72,4,f +5119,2412b,72,1,f +5119,2431,25,4,f +5119,2431,0,1,f +5119,3021,0,1,f +5119,3022,0,1,f +5119,3023,0,3,f +5119,3024,47,2,f +5119,3024,47,1,t +5119,3062b,0,4,f +5119,3460,0,1,f +5119,3666,25,1,f +5119,3710,0,1,f +5119,3957b,0,8,f +5119,41769,0,2,f +5119,41770,0,2,f +5119,54200,0,1,t +5119,54200,47,1,t +5119,54200,0,1,f +5119,54200,47,1,f +5119,59900,45,4,f +5119,59900,45,1,t +5119,60470b,71,4,f +5119,6141,25,4,f +5119,6141,25,1,t +5119,6141,179,1,t +5119,6141,179,4,f +5119,63868,0,8,f +5119,85984,0,1,f +5119,99206,71,1,f +5120,mcjens1,7,1,f +5120,mcjens2,7,1,f +5120,mcjens3,7,1,f +5120,mcjens4,7,1,f +5121,11094,0,1,f +5121,14301,71,2,f +5121,14769,297,2,f +5121,15068,378,1,f +5121,15303,182,1,t +5121,15303,182,8,f +5121,15400,72,8,f +5121,15712,72,2,f +5121,17979,308,2,f +5121,18575,0,2,f +5121,18957pat0002,19,1,f +5121,18957pat0002,19,1,t +5121,18961pr01,320,1,f +5121,18962,19,2,f +5121,19159,0,2,f +5121,2780,0,7,f +5121,2780,0,1,t +5121,3010,0,1,f +5121,30136,19,2,f +5121,30176,2,1,f +5121,3020,72,1,f +5121,3020,25,1,f +5121,3020,70,1,f +5121,3021,4,1,f +5121,3022,71,1,f +5121,3023,70,13,f +5121,3032,0,2,f +5121,3034,2,1,f +5121,30355,0,1,f +5121,30356,0,1,f +5121,30374,297,2,f +5121,3040b,72,2,f +5121,3040b,70,2,f +5121,3069b,0,8,f +5121,32009,72,2,f +5121,32073,71,1,f +5121,32124,0,2,f +5121,32270,0,2,f +5121,32316,4,1,f +5121,32526,0,2,f +5121,3623,378,4,f +5121,3626bpr0745,14,1,f +5121,3626cpr1567,14,1,f +5121,3626cpr1572,14,1,f +5121,3666,71,2,f +5121,3701,71,2,f +5121,3705,0,2,f +5121,3708,0,1,f +5121,3710,72,5,f +5121,3710,25,2,f +5121,3749,19,2,f +5121,3894,72,2,f +5121,3941,25,3,f +5121,3942c,0,1,f +5121,3957b,71,1,f +5121,4032a,72,1,f +5121,4081b,72,2,f +5121,41769,71,1,f +5121,41770,71,1,f +5121,4274,71,8,f +5121,4274,71,1,t +5121,4287,0,2,f +5121,43719,72,1,f +5121,44675,0,1,f +5121,4519,71,1,f +5121,4596,71,1,f +5121,53585,0,1,f +5121,54200,378,2,f +5121,54200,378,1,t +5121,56145,297,1,f +5121,59443,4,1,f +5121,59900,0,1,f +5121,60477,0,4,f +5121,60479,71,2,f +5121,61252,297,4,f +5121,6126b,57,1,f +5121,61409,70,10,f +5121,6141,297,6,f +5121,6141,297,2,t +5121,6141,36,1,f +5121,6141,36,1,t +5121,6232,71,2,f +5121,6239,72,1,f +5121,62462,0,1,f +5121,63868,0,16,f +5121,64644,308,1,f +5121,64867,70,1,f +5121,6558,1,2,f +5121,6585,0,1,f +5121,6589,19,3,f +5121,6589,19,1,t +5121,75937,0,3,f +5121,85984pr0002,72,1,f +5121,87580,72,3,f +5121,87747,15,1,t +5121,87747,15,1,f +5121,92279,40,1,f +5121,92280,71,2,f +5121,92947,19,4,f +5121,970c00pr0766,85,1,f +5121,970c00pr0767,85,1,f +5121,970c00pr0775,0,1,f +5121,973pr2851c01,14,1,f +5121,973pr2852c01,14,1,f +5121,973pr2854c01,0,1,f +5121,98133pr0016,0,1,f +5121,98137,297,4,f +5121,98138pr0014,297,1,t +5121,98138pr0014,297,2,f +5121,98141,297,2,f +5121,99207,71,1,f +5122,2420,15,2,f +5122,2431,320,2,f +5122,2817,71,2,f +5122,3005,15,3,f +5122,3020,15,4,f +5122,3021,72,1,f +5122,3022,71,1,f +5122,3040b,15,1,f +5122,30602,40,1,f +5122,3068b,320,2,f +5122,32184,71,2,f +5122,3623,71,2,f +5122,3623,15,1,f +5122,3710,15,3,f +5122,3749,19,2,f +5122,3794a,320,2,f +5122,3794a,15,2,f +5122,3957a,71,4,f +5122,4070,320,1,f +5122,4081b,72,4,f +5122,4081b,15,1,f +5122,4150pr0005,15,1,f +5122,41769,15,1,f +5122,41770,15,1,f +5122,4274,1,2,f +5122,4274,1,1,t +5122,43093,1,2,f +5122,4460b,320,1,f +5122,4589,72,2,f +5122,47905,72,1,f +5122,54200,15,1,t +5122,54200,15,3,f +5122,60470a,15,4,f +5122,6141,71,2,f +5122,6141,33,3,f +5122,6141,71,1,t +5122,6141,33,1,t +5125,122c01,0,2,f +5125,3004,14,1,f +5125,3010,14,1,f +5125,3020,4,1,f +5125,3022,0,1,f +5125,3023,14,1,f +5125,3024,46,2,f +5125,3031,14,1,f +5125,3034,0,1,f +5125,3068b,7,2,f +5125,3069bpr0099,15,3,f +5125,3624,0,1,f +5125,3626apr0001,14,1,f +5125,3641,0,4,f +5125,3710,14,1,f +5125,3710,4,4,f +5125,3821,14,1,f +5125,3822,14,1,f +5125,3823,47,1,f +5125,3829c01,14,1,f +5125,3853,14,1,f +5125,3856,14,2,f +5125,4070,14,2,f +5125,4211,4,2,f +5125,4213,14,1,f +5125,4214,14,1,f +5125,4215a,14,2,f +5125,4345ap03,14,1,f +5125,4346p03,14,1,f +5125,970c00,0,1,f +5125,973pb0035c01,4,1,f +5126,2412b,272,2,f +5126,2412b,21,2,f +5126,2419,0,2,f +5126,2431,272,4,f +5126,2431,4,3,f +5126,2456,72,1,f +5126,2877,71,2,f +5126,3001,0,2,f +5126,3003,71,1,f +5126,3004,0,3,f +5126,3004,72,2,f +5126,3004,15,1,f +5126,3004,71,1,f +5126,3005,4,4,f +5126,3005,71,1,f +5126,3010,71,4,f +5126,3020,15,3,f +5126,3020,0,3,f +5126,3021,71,2,f +5126,3021,15,1,f +5126,3021,0,2,f +5126,3021,320,2,f +5126,3021,4,3,f +5126,3022,71,2,f +5126,3022,15,4,f +5126,3022,72,3,f +5126,3022,272,2,f +5126,3022,320,1,f +5126,3023,0,1,f +5126,3023,4,1,f +5126,3023,15,4,f +5126,3023,71,2,f +5126,3024,15,2,f +5126,3024,272,2,f +5126,3031,0,1,f +5126,3034,15,1,f +5126,30363,72,1,f +5126,30363,4,1,f +5126,3037,379,6,f +5126,30374,41,1,f +5126,3039,379,2,f +5126,3039,4,1,f +5126,3039,0,1,f +5126,3040b,71,1,f +5126,3045,272,2,f +5126,3062b,4,3,f +5126,3069b,71,1,f +5126,3069b,4,5,f +5126,3069b,15,2,f +5126,3070b,15,2,f +5126,3070b,71,1,t +5126,3070b,71,1,f +5126,3070b,4,1,t +5126,3070b,15,1,t +5126,3070b,4,4,f +5126,3298,4,1,f +5126,3460,272,6,f +5126,3622,71,2,f +5126,3622,4,2,f +5126,3622,15,6,f +5126,3623,15,4,f +5126,3660,71,1,f +5126,3660,15,10,f +5126,3660,4,2,f +5126,3665,71,4,f +5126,3665,0,4,f +5126,3665,4,2,f +5126,3676,272,2,f +5126,3679,71,1,f +5126,3680,0,1,f +5126,3700,4,2,f +5126,3700,15,3,f +5126,3710,15,1,f +5126,3710,0,1,f +5126,3710,71,2,f +5126,3747a,4,2,f +5126,3747a,15,1,f +5126,3747a,0,1,f +5126,3794a,4,1,f +5126,3794a,379,2,f +5126,3794a,272,2,f +5126,3795,71,2,f +5126,3795,15,2,f +5126,3933,379,2,f +5126,3934,379,2,f +5126,3937,4,1,f +5126,4070,71,2,f +5126,4070,4,8,f +5126,4070,15,4,f +5126,4070,0,2,f +5126,41532,0,1,f +5126,41747,379,2,f +5126,41747,272,1,f +5126,41748,272,1,f +5126,41748,379,2,f +5126,41764,272,1,f +5126,41764,15,1,f +5126,41765,272,1,f +5126,41765,15,1,f +5126,41767,0,1,f +5126,41767,272,1,f +5126,41768,272,1,f +5126,41768,0,1,f +5126,41769,379,1,f +5126,41770,379,1,f +5126,42022,72,2,f +5126,4274,71,1,t +5126,4274,71,2,f +5126,4286,71,1,f +5126,43708,0,4,f +5126,43720,0,1,f +5126,43721,0,1,f +5126,43898,47,2,f +5126,44301a,0,6,f +5126,44301a,4,4,f +5126,44301a,71,2,f +5126,44302a,0,10,f +5126,44302a,4,4,f +5126,44302a,71,3,f +5126,44567a,0,4,f +5126,44661,0,1,f +5126,44728,4,2,f +5126,44728,0,3,f +5126,4589,21,1,f +5126,4733,0,1,f +5126,4740,0,2,f +5126,4740,15,2,f +5126,4740,47,2,f +5126,4740,320,4,f +5126,47407,272,1,f +5126,47455,379,7,f +5126,48169,72,3,f +5126,48170,72,3,f +5126,48171,71,2,f +5126,48171,4,2,f +5126,48183,15,2,f +5126,4855,15,1,f +5126,48933,4,1,f +5126,49668,15,6,f +5126,49668,21,20,f +5126,6134,0,1,f +5126,6141,33,2,f +5126,6141,0,11,f +5126,6141,33,1,t +5126,6141,0,1,t +5126,6541,15,2,f +5126,6564,71,2,f +5126,6565,71,2,f +5126,73983,71,2,f +5127,2420,70,2,f +5127,2420,14,6,f +5127,2431,70,3,f +5127,2431,14,2,f +5127,2452,14,1,f +5127,2456,70,2,f +5127,3001,70,2,f +5127,3004,70,2,f +5127,3005,14,8,f +5127,3008,70,4,f +5127,3010,70,9,f +5127,3020,70,5,f +5127,3021,0,2,f +5127,3022,0,2,f +5127,3023,70,2,f +5127,3023,14,6,f +5127,3023,0,2,f +5127,3024,14,12,f +5127,3024,70,2,f +5127,3034,14,3,f +5127,3040b,14,4,f +5127,3069b,14,8,f +5127,3070b,14,3,f +5127,3623,14,4,f +5127,3623,70,6,f +5127,3666,70,2,f +5127,3666,0,10,f +5127,3666,14,5,f +5127,3710,14,2,f +5127,3710,70,28,f +5127,3710,0,10,f +5127,3794a,14,5,f +5127,3794a,0,12,f +5127,3795,14,9,f +5127,3795,0,4,f +5127,3832,70,1,f +5127,4070,72,6,f +5127,4275b,14,2,f +5127,4276b,14,1,f +5127,4477,14,2,f +5127,4531,14,2,f +5127,4589,14,8,f +5127,6091,0,4,f +5128,2350a,14,1,f +5128,2351,0,1,f +5128,2357,14,2,f +5128,2376,7,1,f +5128,2412a,0,5,f +5128,2420,14,4,f +5128,2431,14,2,f +5128,2433,4,4,f +5128,2436,14,1,f +5128,2445,0,1,f +5128,2620,41,1,f +5128,3004,14,1,f +5128,3004,1,1,f +5128,3005,14,4,f +5128,3010,14,1,f +5128,3020,14,2,f +5128,3021,0,1,f +5128,3021,1,1,f +5128,3022,0,1,f +5128,3022,14,1,f +5128,3023,14,7,f +5128,3024,14,2,f +5128,3024,47,2,f +5128,3034,0,1,f +5128,3036,14,1,f +5128,3039,14,1,f +5128,3062b,0,2,f +5128,3068b,14,1,f +5128,3069bp09,15,1,f +5128,3070b,36,2,f +5128,3070b,36,1,t +5128,3176,0,1,f +5128,3315,0,1,f +5128,3403,0,1,f +5128,3404,0,1,f +5128,3460,0,2,f +5128,3460,14,4,f +5128,3597,0,1,f +5128,3626apr0001,14,1,f +5128,3641,0,2,f +5128,3666,0,2,f +5128,3709,14,1,f +5128,3710,14,1,f +5128,3747a,14,2,f +5128,3795,1,1,f +5128,3829c01,7,1,f +5128,3829c01,1,1,f +5128,3833,4,1,f +5128,4070,1,2,f +5128,4070,14,2,f +5128,4079,15,1,f +5128,4081b,14,1,f +5128,4084,0,2,f +5128,4215a,14,2,f +5128,4276b,4,4,f +5128,4315,14,1,f +5128,4488,0,6,f +5128,4600,0,2,f +5128,4624,15,4,f +5128,4730,14,1,f +5128,4864a,41,1,f +5128,4865a,0,1,f +5128,4865a,14,2,f +5128,6014a,14,6,f +5128,6015,0,6,f +5128,6141,14,4,t +5128,6141,46,4,f +5128,70278,0,1,f +5128,73037,14,1,f +5128,73983,14,8,f +5128,970c00,1,1,f +5128,973pb0201c01,15,1,f +5128,rb00164,0,1,f +5129,3002,4,2,f +5129,3003pe2,4,1,f +5129,3004,1,2,f +5129,3020,4,1,f +5129,3023,4,2,f +5129,3039,4,1,f +5129,3062b,15,1,f +5134,122c01,0,2,f +5134,3004,15,1,f +5134,3005,15,2,f +5134,3020,15,2,f +5134,3022,15,1,f +5134,3023,15,2,f +5134,3024,33,2,f +5134,3024,46,2,f +5134,3024,36,2,f +5134,3624,15,1,f +5134,3626apr0001,14,1,f +5134,3641,0,4,f +5134,3788,15,2,f +5134,3794a,15,2,f +5134,3821p02,15,1,f +5134,3822p02,15,1,f +5134,3823,47,2,f +5134,3829c01,15,1,f +5134,4070,15,4,f +5134,4212b,0,1,f +5134,4213,0,1,f +5134,4315,0,1,f +5134,970c00,0,1,f +5134,973pb0091c01,0,1,f +5138,11477,71,3,f +5138,14682,71,2,f +5138,15207,15,1,f +5138,2340,1,2,f +5138,2412b,25,3,f +5138,2412b,71,6,f +5138,2431,4,1,f +5138,2432,71,2,f +5138,2445,0,6,f +5138,2584,0,1,f +5138,2585,71,1,f +5138,298c02,15,1,t +5138,298c02,15,2,f +5138,3001,1,1,f +5138,3003,15,3,f +5138,3004,0,5,f +5138,3005,1,4,f +5138,3009,1,1,f +5138,30162,72,2,f +5138,3021,25,2,f +5138,3022,2,2,f +5138,3023,1,2,f +5138,30237b,1,4,f +5138,3024,182,1,t +5138,3024,182,2,f +5138,3031,1,1,f +5138,30374,71,2,f +5138,30395,72,1,f +5138,30414,1,3,f +5138,3062b,2,2,f +5138,3069b,182,3,f +5138,3069b,71,1,f +5138,3070b,1,1,t +5138,3070b,1,2,f +5138,32000,71,2,f +5138,32002,19,1,t +5138,32002,19,2,f +5138,32028,71,2,f +5138,32062,4,5,f +5138,32270,0,1,f +5138,32526,72,1,f +5138,3622,1,2,f +5138,3622,15,4,f +5138,3626cpr1086,14,1,f +5138,3665,15,2,f +5138,3666,71,3,f +5138,3666,25,4,f +5138,3673,71,1,t +5138,3673,71,2,f +5138,3700,72,2,f +5138,3702,4,2,f +5138,3710,1,3,f +5138,3713,4,2,f +5138,3713,4,1,t +5138,3749,19,4,f +5138,3794b,15,2,f +5138,3795,15,1,f +5138,3795,1,3,f +5138,3821,1,1,f +5138,3822,1,1,f +5138,3829c01,15,1,f +5138,3836,70,1,f +5138,3899,4,1,f +5138,3958,15,1,f +5138,3958,25,1,f +5138,4006,0,1,f +5138,4070,1,2,f +5138,4081b,71,1,f +5138,4176,40,1,f +5138,42003,72,2,f +5138,4286,71,2,f +5138,43093,1,3,f +5138,44302a,71,2,f +5138,44567a,1,2,f +5138,44728,0,1,f +5138,4488,71,6,f +5138,4519,71,1,f +5138,45677,1,1,f +5138,4865b,71,4,f +5138,50745,15,6,f +5138,50950,1,2,f +5138,52031,1,1,f +5138,52501,15,4,f +5138,53586,179,2,f +5138,54200,182,2,f +5138,54200,1,1,t +5138,54200,47,2,f +5138,54200,47,1,t +5138,54200,1,2,f +5138,54200,182,1,t +5138,55013,72,2,f +5138,56823c50,0,1,f +5138,57779,0,1,f +5138,59443,0,1,f +5138,6014b,71,6,f +5138,60476,15,2,f +5138,6091,1,2,f +5138,6112,1,2,f +5138,6141,36,1,t +5138,6141,36,2,f +5138,6192,71,2,f +5138,63864,25,2,f +5138,6536,4,2,f +5138,6636,19,2,f +5138,85984,71,2,f +5138,86035,1,1,f +5138,87087,15,2,f +5138,87697,0,6,f +5138,92593,15,3,f +5138,92907,71,1,f +5138,93571,0,1,f +5138,970c00,25,1,f +5138,973pr1160c01,1,1,f +5138,99206,71,1,f +5139,2357,0,3,f +5139,2431,0,1,f +5139,3002,0,9,f +5139,3003,0,3,f +5139,3004,0,3,f +5139,3005,0,6,f +5139,30165,0,1,f +5139,3022,0,2,f +5139,3030,0,2,f +5139,3032,71,2,f +5139,3069b,0,2,f +5139,3070b,0,7,f +5139,3070b,0,1,t +5139,3622,0,12,f +5139,3794b,0,6,f +5139,3957b,15,2,f +5139,4162,0,3,f +5139,4162pb063,0,1,f +5139,6636,71,4,f +5141,2412b,15,1,f +5141,2436,0,3,f +5141,3001,15,2,f +5141,3022,1,2,f +5141,3031,0,1,f +5141,3068b,15,1,f +5141,3069b,15,1,f +5141,3070b,36,1,t +5141,3070b,36,2,f +5141,32028,0,2,f +5141,3710,1,2,f +5141,3710,15,2,f +5141,3795,15,1,f +5141,44674,0,1,f +5141,48336,0,1,f +5141,4865a,15,1,f +5141,50944pr0001,0,4,f +5141,50951,0,4,f +5141,54200,33,1,f +5141,54200,33,1,t +5141,54200,36,1,f +5141,54200,0,2,f +5141,54200,36,1,t +5141,54200,0,1,t +5141,60212,0,1,f +5141,6141,47,2,f +5141,6141,33,1,f +5141,6141,33,1,t +5141,6141,36,1,f +5141,6141,47,1,t +5141,6141,36,1,t +5141,6157,0,2,f +5141,88930,0,2,f +5142,3020,15,1,f +5142,3022,15,2,f +5142,3032,7,1,f +5142,3040p01,0,1,f +5142,3069bpr0100,2,1,f +5142,3070b,34,1,f +5142,3070b,36,1,f +5142,3070b,36,1,t +5142,3070b,34,1,t +5142,3626bp02,14,1,f +5142,3937,15,2,f +5142,3938,7,2,f +5142,4532,4,1,f +5142,4536,15,2,f +5142,4589,34,2,f +5142,4865a,41,2,f +5142,6093,0,1,f +5142,6141,0,1,t +5142,6141,0,4,f +5142,970c00,15,1,f +5142,973c01,5,1,f +5144,2412b,72,7,f +5144,2436,71,5,f +5144,2540,0,1,f +5144,2555,72,1,f +5144,2877,0,3,f +5144,298c02,4,2,f +5144,3002,19,2,f +5144,30162,72,4,f +5144,3020,71,9,f +5144,3021,72,1,f +5144,3021,272,5,f +5144,3022,0,2,f +5144,3022,71,2,f +5144,3023,71,9,f +5144,3023,4,8,f +5144,3024,4,1,f +5144,3032,71,2,f +5144,3037,71,2,f +5144,30375,19,1,f +5144,30376,19,1,f +5144,30377,19,1,f +5144,30378,19,1,f +5144,3039,272,1,f +5144,3040b,72,6,f +5144,3040b,4,2,f +5144,30552,0,1,f +5144,30565,72,2,f +5144,30565,272,2,f +5144,3062b,272,8,f +5144,3062b,71,4,f +5144,3065,47,2,f +5144,3069b,272,3,f +5144,3069b,14,4,f +5144,3069b,71,4,f +5144,3070b,71,6,f +5144,3070b,14,4,f +5144,3623,4,2,f +5144,3626bpr0525,78,1,f +5144,3660,72,2,f +5144,3666,72,4,f +5144,3679,71,1,f +5144,3680,0,1,f +5144,3710,71,6,f +5144,3794b,4,1,f +5144,3794b,71,5,f +5144,3794b,14,1,f +5144,3795,4,6,f +5144,3937,0,1,f +5144,3960,272,1,f +5144,4070,71,1,f +5144,4081b,71,4,f +5144,41769,4,2,f +5144,41769,71,1,f +5144,41770,4,2,f +5144,41770,71,1,f +5144,44728,0,1,f +5144,4589,0,1,f +5144,4589,272,2,f +5144,4595,0,1,f +5144,4697b,71,2,f +5144,4740,0,2,f +5144,4740,72,1,f +5144,50950,272,6,f +5144,54200,40,2,f +5144,54200,72,4,f +5144,54200,71,6,f +5144,54200,4,4,f +5144,58247,0,2,f +5144,59230,19,1,f +5144,60471,71,1,f +5144,60478,4,1,f +5144,60478,72,4,f +5144,61189pr0003,15,1,f +5144,6134,71,1,f +5144,61409,72,2,f +5144,6141,0,18,f +5144,6141,41,6,f +5144,63868,71,5,f +5144,63965,0,1,f +5144,64644,0,1,f +5144,87079,71,2,f +5144,87087,72,6,f +5144,87580,272,1,f +5144,87618,71,2,f +5144,970x026,15,1,f +5144,973pr0470c01,15,1,f +5145,737ac01,4,2,f +5145,737ac02,4,2,f +5146,2412b,0,1,f +5146,2458,4,2,f +5146,2470,6,2,f +5146,2555,4,1,f +5146,2817,0,1,f +5146,3001,0,1,f +5146,30105,0,1,f +5146,3020,0,2,f +5146,3021,7,1,f +5146,3023,7,2,f +5146,3068b,0,1,f +5146,3626bpx74,14,1,f +5146,3794a,0,1,f +5146,3839b,4,1,f +5146,4529,0,1,f +5146,4600,0,1,f +5146,6141,14,1,t +5146,6141,14,4,f +5146,970x026,8,1,f +5146,973px125c01,4,1,f +5147,2357,0,4,f +5147,2412b,71,5,f +5147,2420,72,2,f +5147,2444,72,8,f +5147,2450,0,4,f +5147,2540,72,4,f +5147,2555,72,4,f +5147,2654,15,6,f +5147,2780,0,18,f +5147,2780,0,2,t +5147,3001,0,8,f +5147,3020,0,13,f +5147,3021,0,6,f +5147,3021,72,7,f +5147,3021,15,7,f +5147,3022,72,8,f +5147,3022,0,4,f +5147,3022,15,3,f +5147,3023,72,29,f +5147,3023,15,6,f +5147,3024,320,4,f +5147,3024,15,5,f +5147,3024,72,1,f +5147,3028,0,1,f +5147,3030,0,2,f +5147,3031,0,6,f +5147,3033,0,4,f +5147,3035,0,4,f +5147,30381,70,1,f +5147,30388,71,8,f +5147,3040b,72,4,f +5147,30414,71,4,f +5147,3048c,0,6,f +5147,30504,0,4,f +5147,30602,15,5,f +5147,3062b,42,32,f +5147,3062b,33,32,f +5147,3062b,72,4,f +5147,3068b,0,64,f +5147,3069b,15,4,f +5147,3069b,72,10,f +5147,3070b,15,1,t +5147,3070b,72,2,f +5147,3070b,72,2,t +5147,3070b,15,6,f +5147,32000,0,9,f +5147,32015,0,2,f +5147,32034,71,4,f +5147,32039,0,9,f +5147,32054,0,8,f +5147,32054,71,4,f +5147,32062,0,51,f +5147,32064b,0,15,f +5147,32073,71,2,f +5147,32123b,71,2,f +5147,32123b,71,1,t +5147,32174,72,1,f +5147,32192,72,8,f +5147,32271,72,4,f +5147,32324,71,1,f +5147,32449,72,9,f +5147,32523,72,2,f +5147,32529,71,10,f +5147,33243,15,3,f +5147,3460,72,2,f +5147,3623,72,4,f +5147,3623,15,1,f +5147,3626b,70,1,f +5147,3666,72,17,f +5147,3673,71,4,f +5147,3673,71,2,t +5147,3700,72,4,f +5147,3703,0,4,f +5147,3705,0,7,f +5147,3709,72,4,f +5147,3710,0,8,f +5147,3710,72,3,f +5147,3713,71,2,f +5147,3713,71,1,t +5147,3737,0,1,f +5147,3747b,71,8,f +5147,3794a,0,4,f +5147,3832,72,4,f +5147,3894,72,2,f +5147,3937,72,3,f +5147,3958,0,4,f +5147,3960,15,2,f +5147,4032b,72,2,f +5147,4032b,15,5,f +5147,40490,72,2,f +5147,4070,72,5,f +5147,4070,15,4,f +5147,4081b,15,4,f +5147,4085c,15,1,f +5147,41539,0,2,f +5147,4162,72,2,f +5147,4162,0,15,f +5147,41677,72,10,f +5147,41678,72,6,f +5147,41747,72,1,f +5147,41747,15,3,f +5147,41748,72,1,f +5147,41748,15,3,f +5147,41749,15,1,f +5147,41750,15,1,f +5147,41769,15,1,f +5147,41770,15,1,f +5147,42022,72,4,f +5147,4274,71,51,f +5147,4274,71,3,t +5147,4282,15,5,f +5147,43093,1,2,f +5147,43710,15,3,f +5147,43711,15,3,f +5147,43712,15,4,f +5147,43722,15,6,f +5147,43723,15,6,f +5147,44224,72,2,f +5147,44225,71,2,f +5147,44302a,72,2,f +5147,44567a,0,4,f +5147,44728,72,5,f +5147,4519,71,7,f +5147,4522,0,4,f +5147,4588,72,2,f +5147,4589,42,2,f +5147,4589,72,8,f +5147,4589,33,2,f +5147,4599a,0,4,f +5147,4697b,71,5,f +5147,4697b,71,3,t +5147,4733,15,3,f +5147,4733,72,6,f +5147,4740,15,2,f +5147,47457,15,4,f +5147,47905,0,7,f +5147,48336,0,2,f +5147,48729a,72,2,t +5147,48729a,72,4,f +5147,48933,15,1,f +5147,50747,42,1,f +5147,50923,72,1,f +5147,50950,15,17,f +5147,50950,72,14,f +5147,50967,15,2,f +5147,52107,0,4,f +5147,53451,15,2,t +5147,53451,15,12,f +5147,53989,15,12,f +5147,54200,15,13,f +5147,54200,72,2,t +5147,54200,15,1,t +5147,54200,72,26,f +5147,55236,320,2,f +5147,57906,15,4,f +5147,6005,72,6,f +5147,60474,71,1,f +5147,6091,72,10,f +5147,6134,71,3,f +5147,6141,72,1,t +5147,6141,42,4,f +5147,6141,42,2,t +5147,6141,72,25,f +5147,61485,0,1,f +5147,6180,0,4,f +5147,6191,0,20,f +5147,62462,15,2,f +5147,62462,71,4,f +5147,6536,72,4,f +5147,6541,72,18,f +5147,6541,15,5,f +5147,6558,1,4,f +5147,6587,72,4,f +5147,6629,72,2,f +5147,6636,72,4,f +5147,6636,0,20,f +5147,73983,72,4,f +5147,75c22,15,4,f +5147,78c10,0,2,f +5147,78c12,0,1,f +5148,30598,4,1,f +5149,x469bb,0,1,f +5150,2431,6,30,f +5150,3069b,6,40,f +5150,6636,6,30,f +5152,10170,84,1,f +5152,10247,14,1,f +5152,11609,484,2,f +5152,11609,484,1,t +5152,11618,31,1,t +5152,11618,31,1,f +5152,11816pr0003,78,1,f +5152,11816pr0006,78,1,f +5152,14249,9999,1,t +5152,22667,26,1,t +5152,22667,26,2,f +5152,2343,47,1,f +5152,2357,19,5,f +5152,2454a,19,4,f +5152,2456,70,2,f +5152,2460,15,1,f +5152,3001,19,2,f +5152,3001,70,2,f +5152,3003,15,1,f +5152,3004,19,7,f +5152,3005,47,2,f +5152,3005,70,3,f +5152,3010,19,3,f +5152,3010,27,2,f +5152,3010,70,3,f +5152,30136,84,5,f +5152,30137,84,6,f +5152,3021,72,4,f +5152,3021,322,5,f +5152,3022,4,2,f +5152,3023,29,1,f +5152,3023,15,4,f +5152,30237a,15,1,f +5152,3031,15,1,f +5152,30357,191,4,f +5152,3039pr62,71,1,f +5152,3040b,19,2,f +5152,3062b,4,1,f +5152,3062b,36,1,f +5152,3062b,72,2,f +5152,3065,47,2,f +5152,3068b,0,2,f +5152,3068b,15,2,f +5152,3069b,72,1,f +5152,3069b,70,2,f +5152,3069bpr0100,2,1,f +5152,32054,0,1,f +5152,3245c,19,4,f +5152,3308,19,2,f +5152,33125,484,1,f +5152,33291,4,6,f +5152,33291,4,1,t +5152,3460,15,2,f +5152,3659,71,2,f +5152,3666,26,4,f +5152,3709,71,1,f +5152,3710,191,2,f +5152,3710,15,3,f +5152,3754,47,2,f +5152,3795,15,3,f +5152,3941,71,1,f +5152,4032a,70,2,f +5152,4032a,19,1,f +5152,4150,29,1,f +5152,4342,84,1,f +5152,44568,71,1,f +5152,4460b,19,2,f +5152,4477,26,2,f +5152,4519,71,1,f +5152,4533,15,1,f +5152,4536,29,1,f +5152,4599b,4,1,t +5152,4599b,4,1,f +5152,4599b,15,1,t +5152,4599b,15,1,f +5152,46212,47,2,f +5152,4865a,47,7,f +5152,50950,322,3,f +5152,50950,191,3,f +5152,54200,322,2,f +5152,54200,322,1,t +5152,58181,47,1,f +5152,59900,57,1,f +5152,6005,191,4,f +5152,60471,71,2,f +5152,60594,72,2,f +5152,60596,15,1,f +5152,60614,72,2,f +5152,60616a,47,1,f +5152,6106,71,1,f +5152,6141,45,3,f +5152,6141,29,7,f +5152,6141,182,1,t +5152,6141,85,5,f +5152,6141,15,2,t +5152,6141,85,1,t +5152,6141,45,1,t +5152,6141,41,8,f +5152,6141,15,6,f +5152,6141,57,4,f +5152,6141,71,1,t +5152,6141,71,2,f +5152,6141,29,1,t +5152,6141,41,1,t +5152,61780,70,1,f +5152,6180,15,1,f +5152,6190,5,1,f +5152,6215,15,2,f +5152,63864,15,1,f +5152,6636,191,1,f +5152,87081,15,1,f +5152,87087,4,1,f +5152,87544,71,2,f +5152,87580,322,4,f +5152,87580,71,1,f +5152,88293,26,4,f +5152,91405,226,1,f +5152,92256,226,1,f +5152,92257,320,1,f +5152,92410,15,2,f +5152,92456pr0037c01,78,1,f +5152,92456pr0038c01,78,1,f +5152,92818pr0001c01,272,1,f +5152,92821pr0003c01,0,1,f +5152,92947,15,1,f +5152,97781,191,3,f +5152,97782,191,3,f +5152,97783,191,3,f +5152,97784,191,3,f +5152,97785,191,1,f +5152,97787,191,1,f +5152,97790,191,1,f +5152,97791,191,1,f +5152,97793,191,1,f +5152,98138,36,8,f +5152,98138,36,1,t +5153,14226c11,0,1,f +5153,2412b,72,22,f +5153,2419,71,16,f +5153,2420,71,8,f +5153,2432,71,1,f +5153,2436,71,8,f +5153,2444,72,10,f +5153,2450,71,4,f +5153,2476a,71,2,f +5153,2555,71,6,f +5153,2654,71,32,f +5153,2714a,71,2,f +5153,2736,71,4,f +5153,2780,0,1,t +5153,2780,0,61,f +5153,2817,71,2,f +5153,2825,71,6,f +5153,2905,71,10,f +5153,3003,71,4,f +5153,3004,71,16,f +5153,3010,72,5,f +5153,3020,72,8,f +5153,3021,71,2,f +5153,3022,71,8,f +5153,3023,72,7,f +5153,3031,71,6,f +5153,30357,72,16,f +5153,3036,71,1,f +5153,30370ps2,15,1,f +5153,30374,41,1,f +5153,30408px3b,15,1,f +5153,30414,71,2,f +5153,3063b,71,16,f +5153,3068b,71,8,f +5153,3068bpr0108,72,1,f +5153,3069b,71,10,f +5153,3176,72,1,f +5153,3184,0,4,f +5153,32002,72,4,f +5153,32002,72,1,t +5153,32005b,72,6,f +5153,32013,0,1,f +5153,32034,71,12,f +5153,32039,14,3,f +5153,32054,0,18,f +5153,32056,71,2,f +5153,32059,71,8,f +5153,32062,0,43,f +5153,32064b,0,2,f +5153,32072,0,4,f +5153,32073,71,3,f +5153,32123b,71,24,f +5153,32123b,71,1,t +5153,32140,71,11,f +5153,32184,4,1,f +5153,32250,72,8,f +5153,32269,19,1,f +5153,32278,71,10,f +5153,32316,71,10,f +5153,32449,0,2,f +5153,32523,71,6,f +5153,32524,72,5,f +5153,32525,72,11,f +5153,32526,72,15,f +5153,32529,71,4,f +5153,32530,72,4,f +5153,32556,19,10,f +5153,32557,0,4,f +5153,33299a,0,6,f +5153,3623,72,12,f +5153,3626b,0,2,f +5153,3626bpr0490,78,1,f +5153,3626bpr0635,78,1,f +5153,3648b,72,1,f +5153,3666,71,12,f +5153,3673,71,2,t +5153,3673,71,8,f +5153,3700,72,2,f +5153,3702,71,10,f +5153,3705,0,9,f +5153,3706,0,4,f +5153,3710,71,8,f +5153,3713,4,6,f +5153,3713,4,1,t +5153,3749,19,12,f +5153,3794a,71,17,f +5153,3795,71,7,f +5153,3832,72,4,f +5153,3832,71,2,f +5153,3837,72,2,f +5153,3839b,71,1,f +5153,3937,71,3,f +5153,3957a,71,2,f +5153,3959,72,2,f +5153,3960pr0005,71,4,f +5153,4032a,0,6,f +5153,40490,71,6,f +5153,4081b,71,2,f +5153,41677,71,19,f +5153,41678,0,2,f +5153,41747,71,1,f +5153,41748,71,1,f +5153,41769,71,8,f +5153,41770,71,8,f +5153,42003,72,5,f +5153,4274,1,2,t +5153,4274,71,2,f +5153,4274,71,1,t +5153,4274,1,37,f +5153,4286,71,2,f +5153,43093,1,40,f +5153,43719,72,1,f +5153,43722,71,2,f +5153,43723,71,2,f +5153,43857,0,4,f +5153,43898,72,2,f +5153,44294,71,4,f +5153,44301a,71,4,f +5153,44302a,72,4,f +5153,44360,15,1,f +5153,44375apr01,71,4,f +5153,44568,71,6,f +5153,44570,71,6,f +5153,44728,72,2,f +5153,4477,71,4,f +5153,44809,71,2,f +5153,4519,71,17,f +5153,45590,0,2,f +5153,4589,71,2,f +5153,4716,71,1,f +5153,47458,72,1,f +5153,47758,71,1,f +5153,47994,0,2,f +5153,48336,71,8,f +5153,48729a,72,2,f +5153,50304,71,1,f +5153,50305,71,1,f +5153,50943,71,1,f +5153,51739,71,2,f +5153,52107,0,4,f +5153,54200,72,40,f +5153,54383,71,5,f +5153,54384,71,5,f +5153,57900,72,1,f +5153,58119,71,1,f +5153,58120,71,1,f +5153,58247,0,1,f +5153,59426,72,2,f +5153,59443,0,11,f +5153,6019,72,4,f +5153,6134,0,3,f +5153,6141,0,2,t +5153,6141,0,10,f +5153,6178,71,4,f +5153,6180,71,9,f +5153,6222,71,4,f +5153,64567,383,1,f +5153,6536,71,33,f +5153,6558,1,23,f +5153,6575,0,2,f +5153,6587,72,16,f +5153,6589,19,5,f +5153,6628,0,4,f +5153,6632,72,14,f +5153,6636,71,4,f +5153,6636,72,10,f +5153,75535,4,1,f +5153,970x026,72,1,f +5153,970x194,15,1,f +5153,970x194,72,1,f +5153,970x199,25,1,f +5153,973pr1263c01,72,1,f +5153,973pr1301c01,25,1,f +5153,973pr1344c01,15,1,f +5153,973pr1346c01,15,1,f +5154,1131,0,1,f +5154,3048c,0,2,f +5154,3049b,0,6,f +5154,30603,0,2,f +5154,3300,0,6,f +5154,43093,1,1,f +5154,4740,47,1,t +5154,4740,47,1,f +5154,47430,0,2,f +5154,47431,0,2,f +5154,47432,0,2,f +5154,47452,72,2,f +5154,47454,72,2,f +5154,47455,4,10,f +5154,47461,4,1,f +5154,47474,4,1,f +5154,47477c01pb04,0,1,f +5154,47501,0,4,f +5154,48141,89,1,f +5154,bb153pb05,320,1,f +5156,3004,0,1,f +5156,3004,6,1,f +5156,3004,15,1,f +5156,3023,15,1,f +5156,3023,6,1,f +5156,3023,0,1,f +5156,4491b,1,1,f +5156,4491b,2,1,f +5156,4491b,4,1,f +5156,4493c01pb01,6,1,f +5156,4493c01pb02,0,1,f +5156,75998pr0007,15,1,f +5157,2454a,7,4,f +5157,2458,7,2,f +5157,2465,7,2,f +5157,2489,6,1,f +5157,2555,7,1,f +5157,3003,19,8,f +5157,3004,19,4,f +5157,3004,8,6,f +5157,30041,8,2,f +5157,30042,8,2,f +5157,3009,8,4,f +5157,30115,0,1,f +5157,3022,8,2,f +5157,3023,0,2,f +5157,3023,19,2,f +5157,30237a,8,2,f +5157,30274,19,2,f +5157,30292,14,2,f +5157,3032,8,1,f +5157,3034,8,2,f +5157,3036,0,2,f +5157,30374,19,1,f +5157,30374,8,1,f +5157,30374,6,1,f +5157,30374,0,1,f +5157,3039,19,2,f +5157,3040b,378,2,f +5157,3040b,19,6,f +5157,3044c,19,1,f +5157,3062b,378,2,f +5157,3068b,7,6,f +5157,3068bpb0014,378,1,f +5157,3626bpb0128,14,1,f +5157,3626bph1,14,1,f +5157,3626bph2,14,1,f +5157,3626bphb,21,1,f +5157,3679,7,1,f +5157,3680,0,1,f +5157,3700,7,4,f +5157,3710,8,2,f +5157,3794a,8,2,f +5157,3901,19,1,f +5157,40232,6,1,f +5157,40233,0,1,f +5157,4070,7,2,f +5157,4204,8,1,f +5157,43751,19,1,f +5157,4530,0,1,f +5157,4854,19,1,f +5157,50231,2,1,f +5157,50231,0,1,f +5157,50231px1,0,2,f +5157,6019,0,4,f +5157,6091,378,2,f +5157,6126a,57,2,f +5157,6141,378,1,t +5157,6141,378,2,f +5157,6231,7,2,f +5157,6587,8,2,f +5157,6632,7,4,f +5157,75347,19,2,f +5157,970c00,2,1,f +5157,970c00,7,2,f +5157,970c00pb002,0,1,f +5157,973pb0161c01,2,1,f +5157,973px146c01,7,1,f +5157,973px147c01,7,1,f +5157,973px148c01,0,1,f +5159,3008,15,25,f +5160,2780,0,1,t +5160,2780,0,2,f +5160,32062,0,2,f +5160,32174,73,2,f +5160,32174,1,2,f +5160,32270,7,1,f +5160,32573,1,1,f +5160,32576,1,2,f +5160,32579,7,1,f +5160,3713,7,1,t +5160,3713,7,1,f +5160,3749,19,1,f +5160,3749,19,1,t +5160,41670,73,2,f +5160,43093,1,1,t +5160,43093,1,1,f +5160,44137,73,1,f +5160,44809,1,2,f +5160,44810,73,1,f +5160,44811,179,1,f +5160,44812,179,1,f +5160,4519,7,1,f +5162,3001,25,1,f +5162,3022,25,1,f +5162,3024,2,1,f +5162,3039,25,1,f +5162,3660,25,2,f +5162,6141,14,1,f +5163,10201,0,2,f +5163,15391,71,1,f +5163,15392,72,1,f +5163,15392,72,1,t +5163,15851pat01,0,1,f +5163,18868a,41,1,f +5163,19981pr0030,41,1,f +5163,21445,0,4,f +5163,2420,0,2,f +5163,2420,15,4,f +5163,2540,71,1,f +5163,3020,0,1,f +5163,3023,40,1,f +5163,3023,71,2,f +5163,3024,36,1,t +5163,3024,40,2,f +5163,3024,40,1,t +5163,3024,33,1,t +5163,3024,36,1,f +5163,3024,33,1,f +5163,3068b,0,1,f +5163,3626cpr1646,14,1,f +5163,3795,15,1,f +5163,3941,41,1,f +5163,50944,0,4,f +5163,50947,0,2,f +5163,50951,0,4,f +5163,51739,0,1,f +5163,54200,40,2,f +5163,54200,40,1,t +5163,59900,71,2,f +5163,61409,0,2,f +5163,6141,36,1,t +5163,6141,41,2,f +5163,6141,36,5,f +5163,6141,41,1,t +5163,85984,0,2,f +5163,85984,15,2,f +5163,970c00,0,1,f +5163,973pr2544c01,0,1,f +5163,99781,0,2,f +5164,11618,31,1,f +5164,11618,31,1,t +5164,11816pr0005,78,1,f +5164,15571,4,1,f +5164,2431,27,2,f +5164,2458,15,1,f +5164,3023,2,1,f +5164,3035,19,1,f +5164,3068b,27,1,f +5164,3070b,27,1,t +5164,3070b,27,1,f +5164,33291,5,1,t +5164,33291,5,1,f +5164,3460,2,2,f +5164,3659,71,1,f +5164,3957b,15,1,f +5164,4495b,5,1,f +5164,48723,70,1,f +5164,61252,71,1,f +5164,6141,15,2,f +5164,6141,72,1,t +5164,6141,15,1,t +5164,6141,72,2,f +5164,87994,71,1,f +5164,87994,71,1,t +5164,92258,0,1,f +5164,92456pr0042c01,78,1,f +5164,92820pr0006c01b,378,1,f +5165,2146c00,1,1,f +5165,2412b,2,5,f +5165,2431,15,2,f +5165,2445,1,1,f +5165,2456,15,2,f +5165,2458,20,2,f +5165,2817,1,1,f +5165,3001,15,1,f +5165,3003,2,4,f +5165,3005,2,2,f +5165,3008,14,1,f +5165,3020,1,1,f +5165,3021,1,2,f +5165,3031,1,1,f +5165,3069b,15,4,f +5165,3298px11,15,2,f +5165,3308,14,2,f +5165,3679,7,1,f +5165,3680,15,1,f +5165,3710,5,1,f +5165,3741,2,4,f +5165,3742,5,12,f +5165,3778,2,1,f +5165,3832,1,2,f +5165,3899,15,2,f +5165,45,383,6,f +5165,4727,2,2,f +5165,4750,14,1,f +5165,4784,5,1,f +5165,4876,5,1,f +5165,6161,74,1,f +5165,6162,74,2,f +5165,6166,2,2,f +5165,6176,5,1,f +5165,6179,14,2,f +5165,6180,20,1,f +5165,6183,20,2,f +5165,6183,13,2,f +5165,6184,13,2,f +5165,6184,2,1,f +5165,6186,20,1,f +5165,6187,1,2,f +5165,6187,15,2,f +5165,6191,14,2,f +5165,6192,15,2,f +5165,6199,13,1,f +5165,6200,5,2,f +5165,6201,0,1,f +5165,6203,5,1,f +5165,70973c01,383,1,f +5165,bel002,77,1,f +5166,3024,14,1,f +5166,4070,15,1,f +5166,4070,14,3,f +5166,47905,71,1,f +5166,54200,15,1,t +5166,54200,40,1,t +5166,54200,15,1,f +5166,54200,40,1,f +5166,6141,182,2,f +5166,6141,72,5,f +5166,6141,15,1,t +5166,6141,15,3,f +5166,6141,182,1,t +5166,6141,72,1,t +5166,64567,71,2,f +5167,11091,297,4,f +5167,11091,15,2,f +5167,11272,148,1,f +5167,11336,33,2,f +5167,13683pr01,15,1,f +5167,32039,0,1,f +5167,32062,4,1,f +5167,32123b,71,1,t +5167,32123b,71,1,f +5167,3713,71,2,f +5167,3713,71,1,t +5167,3737,0,2,f +5167,53562,0,2,f +5167,62462,0,3,f +5167,74261,72,2,f +5167,87747,297,1,t +5167,87747,297,4,f +5167,90607,0,2,f +5167,90609,0,2,f +5167,90612,0,1,f +5167,90617,72,10,f +5167,90626,0,1,f +5167,90630,0,1,f +5167,90639,15,2,f +5167,90641,33,4,f +5167,90641,297,2,f +5167,90641,15,6,f +5167,90652,15,1,f +5167,93571,0,4,f +5167,93575,15,2,f +5167,98603s01pr0006,1,1,f +5169,11203,15,2,f +5169,11211,15,3,f +5169,11215,0,1,f +5169,11289,40,1,f +5169,11477,1,4,f +5169,11477,0,4,f +5169,14417,72,1,f +5169,14704,71,1,f +5169,15391,0,1,f +5169,15392,72,1,f +5169,15423pr0002,379,1,f +5169,15445,72,1,f +5169,2340,1,1,f +5169,2412b,72,2,f +5169,2421,0,1,f +5169,2431,15,3,f +5169,2432,70,1,f +5169,2447,40,1,f +5169,2460,0,1,f +5169,2479,0,1,f +5169,2654,15,1,f +5169,298c02,15,2,f +5169,298c02,14,2,f +5169,30171,0,1,f +5169,3020,1,3,f +5169,3020,0,2,f +5169,3020,15,2,f +5169,3021,15,1,f +5169,3022,70,1,f +5169,3022,72,6,f +5169,3023,15,2,f +5169,3023,4,2,f +5169,3023,72,1,f +5169,3023,36,1,f +5169,3023,14,7,f +5169,30248,72,1,f +5169,3034,0,1,f +5169,30367c,72,1,f +5169,30383,0,2,f +5169,3068b,1,1,f +5169,3069b,40,2,f +5169,3069b,15,2,f +5169,3069b,1,2,f +5169,3069bpr0101,71,1,f +5169,3070b,15,2,f +5169,3176,1,2,f +5169,3460,15,1,f +5169,3623,0,1,f +5169,3626cpr1615,78,1,f +5169,3626cpr1712,84,1,f +5169,3665,1,4,f +5169,3710,2,1,f +5169,3710,0,4,f +5169,3747a,1,2,f +5169,3794b,71,4,f +5169,3795,1,2,f +5169,4032a,15,1,f +5169,4035,0,1,f +5169,4274,1,2,f +5169,43121,71,1,f +5169,43722,15,1,f +5169,43723,15,1,f +5169,43723,1,1,f +5169,4460b,1,2,f +5169,4477,1,1,f +5169,4600,71,1,f +5169,4740,15,1,f +5169,48336,0,3,f +5169,4871,1,2,f +5169,48933,1,2,f +5169,49668,15,2,f +5169,50950,1,2,f +5169,52501,1,1,f +5169,54200,1,1,f +5169,57906,0,2,f +5169,59426,72,1,f +5169,60219,1,1,f +5169,60470a,15,3,f +5169,60594,1,2,f +5169,6091,1,2,f +5169,61409,0,2,f +5169,6141,35,3,f +5169,63864,1,3,f +5169,63864,0,2,f +5169,71155,0,1,f +5169,85984,1,2,f +5169,87087,71,2,f +5169,87580,72,1,f +5169,87989,27,1,f +5169,90194,15,2,f +5169,93273,1,2,f +5169,970c00pr0886,72,1,f +5169,970c00pr0904,379,1,f +5169,973pr3050c01,379,1,f +5169,973pr3060c01,272,1,f +5169,98086pr0003,72,1,f +5169,98087,72,1,f +5169,98088pat0003,320,1,f +5169,98089pat0003,320,1,f +5169,98313,179,1,f +5169,98385,0,1,f +5169,98653c03,72,1,f +5170,2412b,0,1,f +5170,2412b,14,2,f +5170,2412b,383,4,f +5170,2431,71,1,f +5170,2436,14,2,f +5170,2437,41,1,f +5170,2456,14,1,f +5170,2465,0,2,f +5170,3001,14,1,f +5170,3003,0,1,f +5170,3004,0,2,f +5170,3010,14,7,f +5170,3020,4,1,f +5170,3020,14,1,f +5170,3021,14,1,f +5170,3022,14,1,f +5170,3022,71,1,f +5170,3023,14,1,f +5170,3023,71,4,f +5170,3024,47,2,f +5170,3031,14,1,f +5170,3032,14,1,f +5170,3040b,14,2,f +5170,3062b,14,2,f +5170,3068b,71,1,f +5170,3069b,14,2,f +5170,3188,14,1,f +5170,3189,14,1,f +5170,3626bp04,14,1,f +5170,3710,14,3,f +5170,3788,14,1,f +5170,3829c01,15,1,f +5170,40620,383,2,f +5170,4070,14,4,f +5170,4081b,14,2,f +5170,4085c,14,4,f +5170,4215b,14,1,f +5170,4315,14,1,f +5170,4474,14,1,f +5170,4485,1,1,f +5170,4858,14,1,f +5170,6014b,15,6,f +5170,6015,0,6,f +5170,6141,14,1,t +5170,6141,14,2,f +5170,6141,57,2,f +5170,6141,71,1,t +5170,6141,57,1,t +5170,6141,71,4,f +5170,6157,0,3,f +5170,6541,14,2,f +5170,71075,383,2,f +5170,71182,383,2,f +5170,71184,383,2,f +5170,970c00,1,1,f +5170,973pr1245c01,1,2,f +5171,3626bpr0525,78,1,f +5171,58247,0,1,f +5171,92742pb02,0,1,f +5171,970c00,0,1,f +5171,973pb0908c01,0,1,f +5172,10201,0,1,f +5172,10247,72,8,f +5172,11153,71,2,f +5172,11211,71,4,f +5172,11211,19,2,f +5172,11212,71,4,f +5172,11214,72,2,f +5172,11477,72,4,f +5172,11477,71,24,f +5172,11478,71,8,f +5172,13349,72,2,f +5172,13731,71,4,f +5172,14181,71,2,f +5172,14719,71,4,f +5172,15068,72,6,f +5172,15068,71,5,f +5172,15207,71,10,f +5172,15303,35,4,f +5172,15392,72,4,f +5172,15392,72,1,t +5172,15400,72,2,f +5172,15403,0,4,f +5172,15535,72,1,f +5172,15573,72,1,f +5172,15573,4,4,f +5172,15625,71,4,f +5172,16497pr0002,28,1,f +5172,16577,71,2,f +5172,18649,0,4,f +5172,18674,72,8,f +5172,18677,71,4,f +5172,18858pr0001,272,1,f +5172,2357,71,2,f +5172,2412b,72,36,f +5172,2412b,0,6,f +5172,2420,71,2,f +5172,2420,28,4,f +5172,2431,71,11,f +5172,2431,0,2,f +5172,2431pr0017,14,2,f +5172,2432,0,3,f +5172,2437,40,1,f +5172,2540,72,1,f +5172,2653,71,6,f +5172,2654,71,4,f +5172,2730,0,2,f +5172,2780,0,3,f +5172,2780,0,2,t +5172,2877,71,2,f +5172,298c02,4,3,f +5172,298c02,4,2,t +5172,3001,71,2,f +5172,3001,19,1,f +5172,3001,72,1,f +5172,3002,0,2,f +5172,3003,19,4,f +5172,3004,19,2,f +5172,3004,14,1,f +5172,3004,71,2,f +5172,3005,72,2,f +5172,3009,71,3,f +5172,3009,19,4,f +5172,3010,72,2,f +5172,3010,19,2,f +5172,30136,71,4,f +5172,3020,71,9,f +5172,3020,4,1,f +5172,3020,0,16,f +5172,3020,28,5,f +5172,3021,71,2,f +5172,3021,72,13,f +5172,3022,1,7,f +5172,3022,71,6,f +5172,3022,72,2,f +5172,3023,36,24,f +5172,3023,72,12,f +5172,3023,0,14,f +5172,3023,71,12,f +5172,30236,72,10,f +5172,3024,72,2,f +5172,3024,71,4,f +5172,3024,72,1,t +5172,3024,71,1,t +5172,3030,72,2,f +5172,3031,71,2,f +5172,3032,71,6,f +5172,3032,72,1,f +5172,3033,71,6,f +5172,3034,71,3,f +5172,3035,71,4,f +5172,30355,71,3,f +5172,30356,71,3,f +5172,30361pr1006,0,1,f +5172,30362,0,2,f +5172,30367cpr1006,47,1,f +5172,3037,71,1,f +5172,3039,72,9,f +5172,3039pr0014,0,1,f +5172,3040b,71,4,f +5172,30414,0,12,f +5172,3062b,72,17,f +5172,3065,40,4,f +5172,3068b,72,4,f +5172,3069b,2,4,f +5172,3069bpr0070,0,1,f +5172,3176,71,4,f +5172,32001,0,12,f +5172,32002,19,3,t +5172,32002,19,10,f +5172,32009,72,1,f +5172,32039,14,6,f +5172,32056,14,4,f +5172,32062,4,18,f +5172,32064a,0,4,f +5172,32064a,72,8,f +5172,32064a,320,10,f +5172,32123b,71,1,t +5172,32123b,71,8,f +5172,32123b,14,1,t +5172,32123b,14,1,f +5172,32524,0,2,f +5172,3298,72,2,f +5172,3460,72,10,f +5172,3622,0,6,f +5172,3623,0,8,f +5172,3623,71,6,f +5172,3626cpr1149,78,2,f +5172,3626cpr1587,78,1,f +5172,3626cpr1593,78,1,f +5172,3626cpr1617,78,1,f +5172,3659,72,1,f +5172,3659,71,2,f +5172,3666,71,18,f +5172,3678b,72,2,f +5172,3700,19,12,f +5172,3701,0,2,f +5172,3701,4,2,f +5172,3702,71,2,f +5172,3703,71,8,f +5172,3705,0,6,f +5172,3709,72,13,f +5172,3710,72,40,f +5172,3710,19,6,f +5172,3713,4,6,f +5172,3713,4,2,t +5172,3737,0,1,f +5172,3738,4,1,f +5172,3794b,71,14,f +5172,3795,0,6,f +5172,3795,71,2,f +5172,3832,72,2,f +5172,3894,72,8,f +5172,3937,4,2,f +5172,3941,41,1,f +5172,3957b,71,1,f +5172,3958,72,3,f +5172,4032a,72,1,f +5172,4032a,71,20,f +5172,41531,71,1,f +5172,4162,71,2,f +5172,4162,0,2,f +5172,41677,15,8,f +5172,41678,72,2,f +5172,41747,71,2,f +5172,41748,71,2,f +5172,41767,72,1,f +5172,41768,72,1,f +5172,42022,72,2,f +5172,42610,71,4,f +5172,4274,1,4,f +5172,4274,1,1,t +5172,4282,0,4,f +5172,43093,1,8,f +5172,43719,71,1,f +5172,43722,0,16,f +5172,43723,0,16,f +5172,43898,72,1,f +5172,44126,72,1,f +5172,44294,71,5,f +5172,44568,71,4,f +5172,44728,72,6,f +5172,4477,71,4,f +5172,4519,71,6,f +5172,45590,0,4,f +5172,45677,72,1,f +5172,4740pr0001b,47,4,f +5172,47457,71,8,f +5172,48336,71,6,f +5172,50304,71,1,f +5172,50305,71,1,f +5172,50950,71,4,f +5172,50950,72,2,f +5172,50955,71,1,f +5172,50956,71,1,f +5172,54200,71,4,f +5172,54200,71,2,t +5172,54383,71,2,f +5172,54384,71,2,f +5172,56145,71,2,f +5172,58247,0,2,f +5172,59443,14,8,f +5172,60208,72,1,f +5172,60471,0,8,f +5172,60478,71,2,f +5172,60485,71,2,f +5172,60897,72,10,f +5172,6091,0,4,f +5172,6111,19,2,f +5172,6111,71,1,f +5172,61190c,72,4,t +5172,6134,0,2,f +5172,61409,72,2,f +5172,6141,179,1,t +5172,6141,36,5,t +5172,6141,36,26,f +5172,6141,35,12,f +5172,6141,179,2,f +5172,6141,35,1,t +5172,61780,72,2,f +5172,6222,71,2,f +5172,6233,71,1,f +5172,62885,0,2,f +5172,63586,72,3,t +5172,63586,72,1,f +5172,63864,72,10,f +5172,63868,72,2,f +5172,64567,0,1,t +5172,64567,0,1,f +5172,6553,0,2,f +5172,6558,1,8,f +5172,6572,71,1,f +5172,6585,0,1,f +5172,6589,19,3,f +5172,6636,0,4,f +5172,6636,72,10,f +5172,85984,72,4,f +5172,85984,71,8,f +5172,87079,0,3,f +5172,87079,72,10,f +5172,87083,72,14,f +5172,87556pr0005b,0,2,f +5172,87580,19,1,f +5172,87580,72,2,f +5172,87610pr0005,320,1,f +5172,87994,71,2,f +5172,92081,28,1,f +5172,92099,28,2,f +5172,92107,28,2,f +5172,92280,0,2,f +5172,92593,0,4,f +5172,92738,0,3,f +5172,93095,0,3,f +5172,93273,72,13,f +5172,93273,71,10,f +5172,93274,71,4,f +5172,93606,71,4,f +5172,96874,25,1,t +5172,970c00,28,1,f +5172,970c00,0,3,f +5172,970c00pr0815,28,1,f +5172,973pr2878c01,0,2,f +5172,973pr2882c01,28,1,f +5172,973pr2891c01,0,1,f +5172,973pr2917c01,72,1,f +5172,98282,72,2,f +5172,98313,72,1,f +5172,98585,41,2,f +5172,99008,19,4,f +5172,99206,71,2,f +5172,99207,0,5,f +5172,99780,72,6,f +5172,99780,71,4,f +5172,99781,0,4,f +5172,99781,71,4,f +5173,2412b,72,2,f +5173,2456,14,1,f +5173,2458,72,2,f +5173,2512,27,1,f +5173,2817,4,1,f +5173,298c02,4,1,t +5173,298c02,4,1,f +5173,3002,2,2,f +5173,3003,14,2,f +5173,3004,1,2,f +5173,3004,73,2,f +5173,3004,14,2,f +5173,3004,2,2,f +5173,3005,2,2,f +5173,3005,1,2,f +5173,3005,73,2,f +5173,3008,2,2,f +5173,3022,71,2,f +5173,30228,72,1,f +5173,3023,2,7,f +5173,3023,27,2,f +5173,30236,0,1,f +5173,3031,27,2,f +5173,3031,2,1,f +5173,3032,14,1,f +5173,3034,72,2,f +5173,30367b,4,1,f +5173,30387,71,1,f +5173,30389c,0,1,f +5173,3039,14,2,f +5173,30394,14,1,f +5173,3040b,2,2,f +5173,30414,14,2,f +5173,3062b,46,2,f +5173,3062b,72,4,f +5173,3062b,15,1,f +5173,30663,0,1,f +5173,3622,4,2,f +5173,3626bpr0388,14,1,f +5173,3665,2,4,f +5173,3666,2,1,f +5173,3710,2,3,f +5173,3794b,71,2,f +5173,3795,14,1,f +5173,3823,47,1,f +5173,3829c01,1,1,f +5173,3833,4,1,f +5173,3837,72,1,f +5173,4079b,0,1,f +5173,4175,72,1,f +5173,4286,14,4,f +5173,4600,0,4,f +5173,4864b,47,3,f +5173,54200,182,1,t +5173,54200,182,2,f +5173,59900,182,2,f +5173,59900,72,2,f +5173,6014b,71,8,f +5173,60700,0,8,f +5173,6140,0,1,f +5173,970c00,25,1,f +5173,973pr1183c01,25,1,f +5174,3021,1,8,f +5174,3022,1,8,f +5174,3023,1,8,f +5174,3031,1,2,f +5174,3032,1,2,f +5174,3033,1,2,f +5174,3460,1,8,f +5174,3623,1,8,f +5174,3666,1,8,f +5174,3709,1,8,f +5174,3710,1,8,f +5174,3738,1,8,f +5174,3795,1,4,f +5174,3832,1,2,f +5174,4477,1,4,f +5175,3002,0,1,f +5175,3004,8,1,f +5175,3004,0,4,f +5175,3005pe1,8,2,f +5175,3005pe1,8,1,t +5175,3021,0,1,f +5175,3660,0,1,f +5176,2412b,0,2,f +5176,2412b,72,3,f +5176,2420,0,6,f +5176,2420,14,8,f +5176,2420,4,13,f +5176,2431,0,1,f +5176,2431,14,14,f +5176,2431,4,14,f +5176,2432,0,4,f +5176,2449,4,2,f +5176,2555,14,4,f +5176,2555,4,4,f +5176,2654,0,2,f +5176,2730,71,2,f +5176,2780,0,14,f +5176,2780,0,1,t +5176,2819,71,1,f +5176,2921,0,4,f +5176,3001,4,3,f +5176,3001,14,2,f +5176,3002,0,1,f +5176,3002,14,2,f +5176,3002,4,3,f +5176,3003,14,2,f +5176,3003,4,5,f +5176,3004,4,4,f +5176,3004,14,4,f +5176,3005,72,4,f +5176,3006,14,5,f +5176,3006,4,7,f +5176,3009,4,2,f +5176,3010,14,2,f +5176,3010,72,1,f +5176,3010,4,4,f +5176,30165,72,2,f +5176,3020,14,6,f +5176,3020,4,7,f +5176,3020,0,3,f +5176,3021,72,2,f +5176,3021,14,10,f +5176,3021,4,9,f +5176,3022,0,4,f +5176,3023,4,10,f +5176,3023,0,11,f +5176,3023,15,2,f +5176,3023,36,2,f +5176,3023,14,15,f +5176,3024,14,4,f +5176,3024,4,5,f +5176,3024,15,2,f +5176,3024,0,4,f +5176,3028,0,1,f +5176,3029,0,2,f +5176,3032,71,1,f +5176,3034,4,7,f +5176,3034,14,6,f +5176,3035,0,4,f +5176,30357,0,4,f +5176,3036,0,1,f +5176,3037,0,2,f +5176,30383,0,2,f +5176,3040b,4,2,f +5176,30414,4,3,f +5176,30414,14,2,f +5176,3044b,4,4,f +5176,3045,14,2,f +5176,3045,4,2,f +5176,3068b,4,6,f +5176,3068b,0,2,f +5176,3069b,0,13,f +5176,3069b,4,6,f +5176,3069b,14,1,f +5176,3070b,0,2,f +5176,3070b,4,4,f +5176,3070b,4,1,t +5176,3070b,0,1,t +5176,3070b,14,4,f +5176,3070b,14,1,t +5176,32028,0,1,f +5176,32140,71,4,f +5176,32278,0,1,t +5176,32278,0,1,f +5176,32523,0,4,f +5176,32530,72,4,f +5176,32557,14,1,f +5176,3308,4,4,f +5176,3308,14,4,f +5176,3308,0,2,f +5176,3460,71,5,f +5176,3460,4,4,f +5176,3460,14,4,f +5176,3623,4,6,f +5176,3623,0,5,f +5176,3623,14,6,f +5176,3665,4,4,f +5176,3665,14,4,f +5176,3665,0,4,f +5176,3666,0,7,f +5176,3702,0,3,f +5176,3706,0,2,f +5176,3710,72,1,f +5176,3710,4,6,f +5176,3710,0,5,f +5176,3710,14,5,f +5176,3713,71,1,t +5176,3713,71,6,f +5176,3747b,0,1,f +5176,3794a,0,8,f +5176,3795,14,4,f +5176,3795,0,1,f +5176,3795,4,3,f +5176,3832,4,4,f +5176,3832,14,2,f +5176,3899,14,4,f +5176,3899,4,4,f +5176,3937,0,3,f +5176,4070,0,2,f +5176,4070,71,2,f +5176,4081b,14,2,f +5176,4081b,15,2,f +5176,4085c,14,1,f +5176,4162,0,6,f +5176,4162,4,8,f +5176,4162,71,2,f +5176,4162,14,8,f +5176,41747,14,1,f +5176,41747,4,1,f +5176,41748,4,1,f +5176,41748,14,1,f +5176,41767,4,3,f +5176,41767,14,3,f +5176,41768,14,3,f +5176,41768,4,3,f +5176,42022,14,2,f +5176,42022,4,2,f +5176,4349,72,2,f +5176,44302a,0,3,f +5176,44309,0,4,f +5176,44567a,0,1,f +5176,44676,0,4,f +5176,44728,72,6,f +5176,4477,0,4,f +5176,4515,4,1,f +5176,4515,14,1,f +5176,4623,0,2,f +5176,48336,14,3,f +5176,48336,4,3,f +5176,50950,4,10,f +5176,50950,15,2,f +5176,50950,0,4,f +5176,50950,14,12,f +5176,50967,4,6,f +5176,50967,14,6,f +5176,54086,179,4,f +5176,54200,0,2,f +5176,54200,4,6,f +5176,54200,14,6,f +5176,56145,0,4,f +5176,57858,9999,1,f +5176,58089,179,4,f +5176,6019,0,14,f +5176,6070,0,2,f +5176,6111,14,2,f +5176,6111,0,1,f +5176,6111,4,2,f +5176,6134,0,3,f +5176,6141,36,1,t +5176,6141,36,4,f +5176,6141,182,1,t +5176,6141,0,4,f +5176,6141,182,2,f +5176,6141,80,3,f +5176,6141,0,1,t +5176,6141,80,1,t +5176,6179,15,1,f +5176,6192,0,2,f +5176,6587,72,4,f +5176,6636,0,2,f +5176,6636,4,7,f +5176,6636,14,7,f +5176,73983,14,4,f +5176,73983,4,6,f +5178,30132,0,2,f +5178,30133,320,1,f +5178,3626bpr0877,14,1,f +5178,61506,0,1,f +5178,88646,0,1,f +5178,970c00pr0284,0,1,f +5178,973pr1948ac01,0,1,f +5180,10247,72,6,f +5180,11153,25,4,f +5180,11399,72,3,f +5180,11458,72,2,f +5180,11477,71,2,f +5180,12825,0,2,f +5180,12825,72,1,f +5180,13547,0,2,f +5180,14682,71,2,f +5180,15379,0,34,f +5180,15423pr0001,0,3,f +5180,15427pr0001,0,1,f +5180,15428pr0001,0,1,f +5180,15443,70,1,f +5180,15444,4,1,f +5180,15445,72,2,f +5180,15446,72,1,f +5180,2357,0,1,f +5180,2412b,72,4,f +5180,2420,71,2,f +5180,2420,0,2,f +5180,2432,71,1,f +5180,2437,47,2,f +5180,2446pr0012,0,1,f +5180,2447,40,1,f +5180,2458,72,1,f +5180,2486,72,1,f +5180,2540,71,2,f +5180,2540,0,2,f +5180,2654,47,4,f +5180,2654,72,4,f +5180,2780,0,14,f +5180,2815,0,2,f +5180,2877,0,6,f +5180,3001,4,2,f +5180,30031,0,1,f +5180,3008,0,1,f +5180,3009,72,1,f +5180,3010,71,7,f +5180,30171,0,1,f +5180,3020,72,9,f +5180,3021,71,2,f +5180,3021,0,3,f +5180,3022,72,1,f +5180,3022,25,3,f +5180,3023,71,8,f +5180,30237b,71,1,f +5180,3024,0,6,f +5180,3024,25,1,f +5180,3024,47,2,f +5180,3031,0,6,f +5180,3032,71,1,f +5180,3034,0,5,f +5180,30367b,71,2,f +5180,30374,71,1,f +5180,30414,0,1,f +5180,30602,0,2,f +5180,3062b,33,1,f +5180,3062b,36,1,f +5180,3062b,71,4,f +5180,3068b,0,1,f +5180,3069b,0,7,f +5180,3069b,47,2,f +5180,3070b,71,2,f +5180,3070b,36,2,f +5180,32000,4,4,f +5180,32009,71,2,f +5180,32013,71,6,f +5180,32123b,71,2,f +5180,32184,71,2,f +5180,32523,15,1,f +5180,3623,72,1,f +5180,3626cpr1325,14,1,f +5180,3626cpr1326,14,1,f +5180,3626cpr1338,179,2,f +5180,3626cpr1340,179,1,f +5180,3649,71,1,f +5180,3665,72,6,f +5180,3666,15,4,f +5180,3666,0,3,f +5180,3702,71,4,f +5180,3706,0,1,f +5180,3710,25,1,f +5180,3710,71,2,f +5180,3713,4,4,f +5180,3737,0,2,f +5180,3747b,0,4,f +5180,3749,19,4,f +5180,3794b,72,1,f +5180,3794b,0,1,f +5180,3794b,15,1,f +5180,3795,0,1,f +5180,3829c01,4,1,f +5180,3937,72,6,f +5180,4070,0,4,f +5180,4081b,0,1,f +5180,4081b,71,1,f +5180,41334,0,1,f +5180,4185,71,2,f +5180,42446,71,1,f +5180,4274,1,13,f +5180,43898,0,2,f +5180,43898,72,4,f +5180,44567a,0,1,f +5180,44676,0,2,f +5180,44728,71,2,f +5180,44728,4,1,f +5180,4740,71,8,f +5180,4865b,71,4,f +5180,4865b,72,4,f +5180,50950,0,16,f +5180,50950,25,3,f +5180,52031,0,3,f +5180,54200,71,2,f +5180,54200,46,2,f +5180,54200,25,2,f +5180,54200,36,1,f +5180,56145,0,4,f +5180,57585,71,2,f +5180,58176,33,1,f +5180,58176,36,3,f +5180,59443,72,2,f +5180,59900,19,4,f +5180,60471,0,1,f +5180,60478,0,10,f +5180,60484,71,1,f +5180,60849,71,2,f +5180,60897,72,6,f +5180,6091,0,2,f +5180,61184,71,2,f +5180,61252,0,2,f +5180,6134,71,6,f +5180,61409,72,2,f +5180,61409,0,2,f +5180,6141,71,6,f +5180,6141,57,8,f +5180,6141,72,8,f +5180,61481,0,4,f +5180,61482,71,1,f +5180,62462,0,8,f +5180,63864,71,2,f +5180,64567,71,1,f +5180,64728,4,1,f +5180,6541,0,2,f +5180,6587,28,2,f +5180,6636,71,4,f +5180,6636,0,3,f +5180,85940,0,2,f +5180,85959pat0003,36,4,f +5180,85984,4,2,f +5180,85984,0,5,f +5180,87079,15,1,f +5180,87552,15,6,f +5180,87580,25,2,f +5180,87994,71,2,f +5180,88072,72,1,f +5180,92280,0,8,f +5180,92593,72,1,f +5180,92946,72,4,f +5180,93606,0,2,f +5180,970c00pr0605,25,1,f +5180,970c00pr0628,0,1,f +5180,970c63pr0609,272,3,f +5180,973pr2538c01,25,1,f +5180,973pr2554c01,272,3,f +5180,973pr2590c01,0,1,f +5180,98138,36,6,f +5181,10201,71,1,f +5181,11153,72,2,f +5181,11211,2,2,f +5181,11212,71,1,f +5181,11477,71,12,f +5181,14719,71,2,f +5181,14720,71,2,f +5181,14769,0,1,f +5181,15068,71,9,f +5181,15303,36,3,f +5181,15400,72,2,f +5181,15535,72,2,f +5181,15625,71,1,f +5181,15712,378,1,f +5181,18674,72,3,f +5181,18677,71,4,f +5181,22885,71,8,f +5181,2357,19,4,f +5181,23851,28,2,f +5181,23947pr0001,28,2,f +5181,2412b,0,8,f +5181,2420,72,3,f +5181,2431,0,1,f +5181,2432,19,5,f +5181,2450,28,6,f +5181,2456,19,4,f +5181,2540,72,2,f +5181,2569,0,2,f +5181,2569,0,1,t +5181,2639,72,1,f +5181,2654,19,10,f +5181,2723,71,1,f +5181,2780,0,13,f +5181,2780,0,3,t +5181,2877,71,11,f +5181,3001,71,7,f +5181,3002,72,7,f +5181,3005,71,9,f +5181,3008,72,2,f +5181,3009,71,2,f +5181,3020,19,4,f +5181,3020,72,4,f +5181,3021,28,13,f +5181,3022,4,1,f +5181,3022,72,3,f +5181,3023,28,28,f +5181,3023,0,4,f +5181,3023,46,5,f +5181,30237b,25,2,f +5181,3024,72,11,f +5181,3024,72,3,t +5181,3028,72,2,f +5181,3031,72,8,f +5181,3035,72,3,f +5181,3040b,72,2,f +5181,30414,0,4,f +5181,3062b,19,3,f +5181,3069b,71,10,f +5181,3069b,72,1,f +5181,3069b,28,5,f +5181,3069bpr0090,72,3,f +5181,3070b,71,1,t +5181,3070b,71,4,f +5181,3176,71,1,f +5181,32000,0,6,f +5181,32000,4,5,f +5181,32028,71,5,f +5181,32054,0,1,f +5181,32062,0,3,f +5181,32064a,320,2,f +5181,32187,179,2,f +5181,3622,71,4,f +5181,3623,72,2,f +5181,3623,71,9,f +5181,3626cpr0937,78,1,f +5181,3626cpr1709,78,1,f +5181,3626cpr1876,78,1,f +5181,3660,71,10,f +5181,3665,71,2,f +5181,3666,72,13,f +5181,3701,19,12,f +5181,3705,4,1,f +5181,3709,71,3,f +5181,3710,72,4,f +5181,3710,71,3,f +5181,3710,28,18,f +5181,3794b,71,3,f +5181,3795,28,14,f +5181,3839b,0,2,f +5181,3899,47,1,f +5181,3938,71,2,f +5181,3958,72,1,f +5181,4032a,72,4,f +5181,4032a,19,2,f +5181,4032a,2,2,f +5181,4081b,0,9,f +5181,40902,71,1,f +5181,41677,71,1,f +5181,4175,72,2,f +5181,41769,72,2,f +5181,41770,72,2,f +5181,43713,72,1,f +5181,43723,71,3,f +5181,44567a,0,1,f +5181,44728,72,1,f +5181,4477,71,1,f +5181,4599b,0,1,t +5181,4599b,0,1,f +5181,47755,72,2,f +5181,48336,0,2,f +5181,4865b,71,5,f +5181,50304,71,1,f +5181,50305,71,1,f +5181,50373,71,1,f +5181,50950,71,4,f +5181,51739,28,1,f +5181,54200,72,2,f +5181,54200,72,1,t +5181,55013,72,1,f +5181,58176,179,2,f +5181,58247,148,2,f +5181,59426,72,1,f +5181,59443,0,2,f +5181,59443,71,1,f +5181,59900,179,1,f +5181,60470a,71,4,f +5181,60474,71,4,f +5181,60477,71,1,f +5181,60483,25,1,f +5181,6081,71,1,f +5181,6091,28,2,f +5181,6091,320,3,f +5181,6091,71,13,f +5181,6111,19,1,f +5181,6140,71,4,f +5181,61409,71,3,f +5181,6141,179,2,t +5181,6141,179,10,f +5181,6179,72,2,f +5181,6179,71,1,f +5181,6180,71,2,f +5181,6239,72,2,f +5181,64567,71,2,f +5181,64567,71,1,t +5181,64807,28,1,f +5181,64808pr0002,484,1,f +5181,6541,72,2,f +5181,6558,1,8,f +5181,6636,71,10,f +5181,85080,71,4,f +5181,85861,71,1,t +5181,85861,71,9,f +5181,85984,19,2,f +5181,85984,71,3,f +5181,85984,72,2,f +5181,87079,71,1,f +5181,87083,72,2,f +5181,87544,71,1,f +5181,87552,71,6,f +5181,87580,71,3,f +5181,91501,71,4,f +5181,92279,40,1,f +5181,92280,378,1,f +5181,92280,0,2,f +5181,92591,71,1,f +5181,92593,71,5,f +5181,92738,0,2,f +5181,93606,71,2,f +5181,96874,25,1,t +5181,970c00,72,2,f +5181,970c00,378,1,f +5181,970c00pr1028,84,1,f +5181,973pr3168c01,28,1,f +5181,973pr3306c01,28,1,f +5181,973pr3309c01,85,1,f +5181,973pr3310c01,84,1,f +5181,98138,182,8,f +5181,98138,182,1,t +5181,98283,71,2,f +5181,98285,0,4,f +5181,98286,71,4,f +5181,98835,71,2,f +5181,99207,71,5,f +5181,99780,72,4,f +5181,99781,15,4,f +5181,99781,71,2,f +5184,3045,4,10,f +5184,3046a,4,5,f +5184,3048a,4,3,f +5184,3049b,4,1,f +5184,962,4,1,f +5185,15207,15,1,f +5185,15535,72,1,f +5185,15536,15,2,f +5185,15537,40,2,f +5185,2357,72,32,f +5185,2412b,15,9,f +5185,2412b,0,16,f +5185,2431,1,7,f +5185,2431,72,20,f +5185,2456,71,4,f +5185,2465,15,4,f +5185,2540,4,4,f +5185,2654,4,1,f +5185,2871b,0,2,f +5185,2877,72,32,f +5185,2878,0,10,f +5185,2922,0,2,f +5185,3001,15,1,f +5185,3001,72,2,f +5185,3003,15,1,f +5185,3003,4,4,f +5185,3004,15,5,f +5185,3004,0,2,f +5185,3008,0,2,f +5185,3008,15,14,f +5185,3009,0,1,f +5185,3010,15,24,f +5185,3020,72,13,f +5185,3021,72,4,f +5185,3021,0,5,f +5185,3021,71,4,f +5185,3023,14,2,f +5185,3023,36,11,f +5185,3031,2,2,f +5185,3031,15,2,f +5185,3034,19,1,f +5185,3035,72,2,f +5185,30359b,72,2,f +5185,3039,0,2,f +5185,3039,15,4,f +5185,3044c,4,2,f +5185,30526,72,2,f +5185,30554a,0,2,f +5185,3068b,0,4,f +5185,3069b,72,8,f +5185,3069b,4,3,f +5185,3070b,15,2,f +5185,3070b,15,1,t +5185,32001,71,1,f +5185,32083,15,12,f +5185,3298,0,2,f +5185,3622,72,8,f +5185,3623,15,6,f +5185,3624,320,1,f +5185,3626bpr0891,14,1,f +5185,3626cpr0893,14,1,f +5185,3626cpr1146,14,1,f +5185,3659,72,2,f +5185,3666,4,24,f +5185,3706,0,2,f +5185,3709,1,1,f +5185,3710,72,2,f +5185,3710,2,6,f +5185,3794b,72,2,f +5185,3794b,15,2,f +5185,3795,15,10,f +5185,4025,14,5,f +5185,4079b,4,10,f +5185,4083,0,1,f +5185,4162,1,4,f +5185,4162,71,4,f +5185,43857,71,4,f +5185,44300,0,2,f +5185,4445,15,2,f +5185,4449,70,1,f +5185,4477,15,4,f +5185,4515,71,2,f +5185,4719,4,1,f +5185,4864b,40,54,f +5185,53400,72,16,f +5185,53401,72,4,f +5185,57051,383,10,f +5185,57878,0,20,f +5185,57999,0,8,f +5185,58123a,71,1,f +5185,60219,72,4,f +5185,60581,47,1,f +5185,6141,47,1,t +5185,6141,36,2,f +5185,6141,72,8,f +5185,6141,47,1,f +5185,6141,72,2,t +5185,6141,14,1,t +5185,6141,36,1,t +5185,6141,14,1,f +5185,6182,71,6,f +5185,61976,19,1,f +5185,63864,25,4,f +5185,64227,71,1,f +5185,64228,71,1,f +5185,64799,71,3,f +5185,6636,15,8,f +5185,76766,0,4,f +5185,85984,15,4,f +5185,85984,19,4,f +5185,87079,14,1,f +5185,87079,72,2,f +5185,87574,0,1,f +5185,87580,71,7,f +5185,87611,72,2,f +5185,88283,484,1,f +5185,91994,0,4,f +5185,92081,0,1,f +5185,92088,72,3,f +5185,92593,72,2,f +5185,92851,47,2,f +5185,93273,72,4,f +5185,96874,25,1,t +5185,970c00,0,1,f +5185,970c00,272,1,f +5185,970c00,28,1,f +5185,973pr1164c01,272,1,f +5185,973pr1783c01,4,1,f +5185,973pr2500c01,1,1,f +5186,12825,72,2,f +5186,2540,72,2,f +5186,2654,72,1,f +5186,3021,70,1,f +5186,3022,70,5,f +5186,3023,15,1,f +5186,3069b,70,4,f +5186,3070b,15,1,f +5186,3070b,15,1,t +5186,33291,70,8,f +5186,33291,70,1,t +5186,4085c,14,2,f +5186,41769,70,1,f +5186,41770,70,1,f +5186,48336,19,2,f +5186,49668,15,3,f +5186,49668,0,2,f +5186,54200,14,1,t +5186,54200,70,2,f +5186,54200,14,1,f +5186,54200,70,1,t +5186,6019,15,3,f +5186,60470a,0,2,f +5186,63868,15,1,f +5186,73983,19,2,f +5186,92692,0,1,f +5188,16360,10,1,f +5188,27481,14,1,f +5188,3626cpr2023,14,1,f +5188,88646,0,1,f +5188,970c00,321,1,f +5189,32171,89,5,f +5190,30556,25,1,f +5190,30598,21,1,f +5190,30600pb08,462,1,f +5190,30602pb027,462,1,f +5190,racerbase,25,1,f +5190,rb00168,0,2,f +5191,2362a,40,2,f +5191,2412b,72,9,f +5191,2431,72,2,f +5191,2432,0,1,f +5191,2436,14,5,f +5191,2456,14,3,f +5191,2458,1,6,f +5191,2654,0,3,f +5191,2877,14,7,f +5191,298c02,1,3,f +5191,298c02,1,2,t +5191,3007,1,1,f +5191,3008,14,2,f +5191,3010,14,7,f +5191,30165,0,1,f +5191,3020,72,2,f +5191,3021,14,4,f +5191,3023,46,2,f +5191,3023,72,4,f +5191,30236,72,6,f +5191,3024,182,6,f +5191,3031,72,2,f +5191,3032,0,1,f +5191,3035,71,3,f +5191,3036,72,1,f +5191,3037,14,1,f +5191,3039pr0014,0,1,f +5191,30414,71,4,f +5191,3062b,0,2,f +5191,3185,0,5,f +5191,3188,14,1,f +5191,3189,14,1,f +5191,32000,71,4,f +5191,32002,72,4,f +5191,32002,72,1,t +5191,32018,72,2,f +5191,32039,14,2,f +5191,32054,71,2,f +5191,32059,14,1,f +5191,32062,4,2,f +5191,32064a,14,2,f +5191,32523,4,4,f +5191,32530,72,4,f +5191,3622,72,4,f +5191,3626bpr0270,14,1,f +5191,3665,14,4,f +5191,3666,72,6,f +5191,3673,71,4,f +5191,3673,71,1,t +5191,3700,0,7,f +5191,3701,14,2,f +5191,3710,1,6,f +5191,3710,0,3,f +5191,3747b,72,2,f +5191,3749,19,1,f +5191,3794a,15,2,f +5191,3795,0,6,f +5191,3833,4,1,f +5191,3941,72,7,f +5191,3958,72,2,f +5191,4079,1,1,f +5191,4085c,0,4,f +5191,41530,71,1,f +5191,41767,14,1,f +5191,41768,14,1,f +5191,4215b,0,1,f +5191,4215b,40,1,f +5191,42608,71,2,f +5191,42610,71,4,f +5191,43093,1,2,f +5191,4445,14,2,f +5191,44568,71,3,f +5191,44570,71,3,f +5191,4460b,14,6,f +5191,44675,71,6,f +5191,4477,71,4,f +5191,48336,0,3,f +5191,4869,71,2,f +5191,48989,71,4,f +5191,50304,14,1,f +5191,50305,14,1,f +5191,50950,14,2,f +5191,52031,14,1,f +5191,53586,135,2,f +5191,57518,72,1,t +5191,57518,72,58,f +5191,57519,14,4,f +5191,58176,182,4,f +5191,59426,72,4,f +5191,59807,14,2,f +5191,60470a,71,2,f +5191,6079,15,1,f +5191,61069,14,2,f +5191,61409,72,6,f +5191,6178,14,1,f +5191,6179,14,9,f +5191,6180,14,4,f +5191,6232,4,4,f +5191,63965,72,2,f +5191,64644,0,1,f +5191,6553,72,2,f +5191,6636,71,2,f +5191,7685stk01,9999,1,t +5191,970x199,25,1,f +5191,973pr1182c01,25,1,f +5192,2412b,1,2,f +5192,2420,1,2,f +5192,3001,1,1,f +5192,3003,1,2,f +5192,3008,72,1,f +5192,3020,15,1,f +5192,3022,0,3,f +5192,3023,1,6,f +5192,3034,72,1,f +5192,3068b,1,2,f +5192,3069b,15,2,f +5192,32009,0,2,f +5192,32056,71,2,f +5192,32062,4,5,f +5192,32064b,72,2,f +5192,32123b,71,4,f +5192,32123b,71,1,t +5192,3298,0,1,f +5192,3666,1,1,f +5192,3701,71,2,f +5192,3702,0,2,f +5192,3705,0,1,f +5192,3706,0,2,f +5192,3709,0,1,f +5192,3710,1,2,f +5192,3737,0,1,f +5192,3749,19,2,f +5192,3832,0,1,f +5192,4162,1,2,f +5192,41677,4,2,f +5192,41769,15,1,f +5192,41770,15,1,f +5192,43722,1,1,f +5192,43723,1,1,f +5192,44294,71,1,f +5192,44728,15,2,f +5192,45590,0,2,f +5192,47457,1,1,f +5192,47715,72,1,f +5192,47753,0,1,f +5192,50950,15,4,f +5192,54200,15,2,f +5192,54200,15,1,t +5192,55982,0,4,f +5192,58090,0,4,f +5192,59443,71,1,f +5192,6091,1,4,f +5192,6141,36,1,t +5192,6141,0,1,t +5192,6141,36,2,f +5192,6141,0,4,f +5192,61678,1,4,f +5192,62361,1,2,f +5192,62701,135,4,f +5192,6558,1,2,f +5192,6564,1,1,f +5192,6565,1,1,f +5193,93091pr0003,323,1,f +5194,3040b,2,4,f +5194,3688,2,1,f +5194,3941,70,1,f +5194,4032a,70,1,f +5194,4286,2,4,f +5194,60474,15,1,f +5194,6141,46,1,t +5194,6141,36,2,f +5194,6141,36,1,t +5194,6141,46,2,f +5196,3004,4,1,f +5196,3004,0,2,f +5196,3004p0b,14,1,f +5196,3021,4,1,f +5196,3039,4,1,f +5196,3040b,4,2,f +5196,3660,71,2,f +5196,3794a,4,1,f +5196,4081b,14,2,f +5196,56823,0,1,f +5196,6541,15,1,f +5198,2412b,15,1,t +5198,2412b,15,1,f +5198,2431,320,2,f +5198,2445,0,1,f +5198,2780,0,2,f +5198,2780,0,1,t +5198,3010,71,2,f +5198,3021,71,1,f +5198,3022,0,3,f +5198,3023,71,5,f +5198,30283,0,1,f +5198,3032,71,2,f +5198,30350b,72,4,f +5198,30363,72,1,f +5198,30367bpr04,320,1,f +5198,3037,320,2,f +5198,30374,0,4,f +5198,30389c,71,2,f +5198,3040b,320,2,f +5198,3068b,72,4,f +5198,32054,0,2,f +5198,32064b,72,2,f +5198,3626b,0,1,f +5198,3660,72,2,f +5198,3700,15,2,f +5198,3705,0,2,f +5198,3710,71,1,f +5198,3747a,72,2,f +5198,3795,71,1,f +5198,3941,0,2,f +5198,4032a,0,4,f +5198,4150,320,2,f +5198,4150pr0005,15,1,f +5198,41769,72,1,f +5198,41769,320,5,f +5198,41770,320,5,f +5198,41770,72,1,f +5198,41883,40,1,f +5198,43093,1,2,f +5198,43713,0,1,f +5198,43722,71,3,f +5198,43723,71,3,f +5198,43857,0,2,f +5198,44570,71,2,f +5198,47397,71,2,f +5198,47398,71,2,f +5198,4740,42,2,f +5198,48183,72,2,f +5198,48336,0,4,f +5198,4854,0,1,f +5198,50995pr0004,15,1,f +5198,54383,71,2,f +5198,54384,71,2,f +5198,6141,0,1,t +5198,6141,0,2,f +5198,6222,72,2,f +5198,6636,71,4,f +5198,970c00,379,1,f +5198,973pr1099c01,15,1,f +5202,122c01,7,3,f +5202,3005,14,2,f +5202,3005,4,2,f +5202,3010pb035e,4,1,f +5202,3020,4,3,f +5202,3021,4,2,f +5202,3023,4,4,f +5202,3062a,33,1,f +5202,3183a,4,1,f +5202,3184,4,1,f +5202,3626apr0001,14,1,f +5202,3641,0,6,f +5202,3710,14,1,f +5202,3710,4,5,f +5202,3788,4,3,f +5202,3794a,14,1,f +5202,3821,4,1,f +5202,3822,4,1,f +5202,3823,47,1,f +5202,3829c01,4,1,f +5202,3834,0,1,f +5202,3835,7,1,f +5202,3838,7,1,f +5202,4212a,4,1,f +5202,640.2stk01,9999,1,t +5202,970c00,0,1,f +5202,973c18,0,1,f +5204,2488,0,2,f +5204,3001,1,2,f +5204,3003,1,1,f +5204,3003,5,3,f +5204,3004,15,2,f +5204,3004,13,2,f +5204,3004,5,4,f +5204,3005,5,7,f +5204,3005,13,2,f +5204,3005,15,2,f +5204,3022,2,2,f +5204,3023,1,2,f +5204,3024,14,4,f +5204,3069b,15,2,f +5204,3069b,4,3,f +5204,3623,15,2,f +5204,3741,2,2,f +5204,3742,14,2,t +5204,3742,14,6,f +5204,3852b,74,2,f +5204,4085c,1,4,f +5204,4161pb01,74,1,f +5204,45,383,2,f +5204,4599a,74,1,f +5204,4599a,14,1,f +5204,4623,1,2,f +5204,6064,2,2,f +5204,6079,15,2,f +5204,6108,15,1,f +5204,6112,15,1,f +5204,6112,5,1,f +5204,6161,18,1,f +5204,6162,18,3,f +5204,6162,20,2,f +5204,6165,5,2,f +5204,6169,20,1,f +5204,6171pr02,15,1,f +5204,6171pr02,0,1,f +5204,6175,8,1,f +5204,6176,5,1,f +5204,6176,74,1,f +5204,6178,20,1,f +5204,6179,13,1,f +5204,6179,20,2,f +5204,6182,13,2,f +5204,6183,13,3,f +5204,6184,1,3,f +5204,6184,5,2,f +5204,6189,0,2,f +5204,6190,74,1,f +5204,6193,0,1,f +5204,6195,1,2,f +5204,6196,1,2,f +5204,6197b,20,2,f +5204,6203,14,1,f +5204,6203,5,1,f +5204,6204,6,2,f +5204,6206,15,1,f +5204,70973c01,383,1,f +5204,75347,5,2,f +5204,bb65,6,2,f +5204,belblank,1,1,f +5204,belblank,5,1,f +5204,belvfem16,-1,1,f +5204,belvfem37,-1,1,f +5204,pouch03,17,2,f +5205,31180,70,1,f +5205,3437,0,2,f +5205,40666,72,1,f +5205,41169c01,179,1,f +5205,44524,70,1,f +5205,4657,0,1,f +5205,4658,70,1,f +5205,48036,70,1,f +5205,48647,297,1,f +5205,51288,70,1,f +5205,51703,182,1,f +5205,51706,179,1,f +5205,51708,70,2,f +5205,54037,135,2,f +5205,54042,0,1,f +5205,54043,0,2,f +5205,54058,70,6,f +5205,54060,0,1,f +5205,54068,0,1,f +5205,54849,4,1,f +5205,54860,70,1,f +5205,54862,0,2,f +5205,55007,0,1,f +5205,55343,70,1,f +5206,2586pr0006,0,1,f +5206,2587pr0027,0,1,f +5206,3626bpr0940,14,1,f +5206,48493,0,1,f +5206,88646,0,1,f +5206,970c00pr0313,0,1,f +5206,973c14,0,1,f +5206,98370,148,1,f +5208,11609,191,4,f +5208,11609,191,1,t +5208,12622,30,1,f +5208,12888pr0001,84,1,f +5208,15470,29,1,t +5208,15470,29,1,f +5208,15573,4,2,f +5208,2343,47,1,f +5208,2412b,4,1,t +5208,2412b,4,2,f +5208,2431pr0076,15,1,f +5208,2437,47,1,f +5208,2456,15,1,f +5208,3003,19,1,f +5208,3004,25,1,f +5208,3020,19,1,f +5208,3023,27,2,f +5208,3030,19,1,f +5208,3039,27,1,f +5208,3039,19,4,f +5208,30414,4,1,f +5208,33121,191,1,f +5208,33291,4,1,t +5208,33291,4,3,f +5208,3626cpr1614,14,1,f +5208,3659,19,2,f +5208,3710,322,3,f +5208,3829c01,14,1,f +5208,3852b,5,1,f +5208,3941,4,1,f +5208,3960,191,1,f +5208,4079,14,1,f +5208,4081b,322,2,f +5208,4495b,5,1,f +5208,47457,14,2,f +5208,59900,19,1,f +5208,6014b,14,4,f +5208,6190,322,1,f +5208,63965,15,1,f +5208,87580,322,2,f +5208,87580,19,2,f +5208,87697,0,4,f +5208,87990,308,1,f +5208,87994,71,1,f +5208,87994,71,1,t +5208,88930,31,1,f +5208,88930pr0004,31,1,f +5208,90397pr0001b,15,1,f +5208,92593,15,2,f +5208,93092,5,1,f +5208,93273,179,2,f +5208,970c00,85,1,f +5208,973pr2925c01,27,1,f +5210,2419,15,1,f +5210,2432,0,1,f +5210,2432,15,1,f +5210,2446,14,1,f +5210,2447,33,1,t +5210,2447,33,1,f +5210,2450,15,2,f +5210,2466p07,15,1,f +5210,2468,33,2,f +5210,298c04,15,2,f +5210,298c04,15,1,t +5210,3024,33,2,f +5210,3024,33,1,t +5210,3069bp25,15,1,f +5210,3460,15,2,f +5210,3626apr0001,14,1,f +5210,3665,0,2,f +5210,3710,15,2,f +5210,3838,14,1,f +5210,3935,15,1,f +5210,3936,15,1,f +5210,3937,15,2,f +5210,3938,0,2,f +5210,4287,0,2,f +5210,4596,15,1,f +5210,4732,0,1,f +5210,4733,0,2,f +5210,4740,36,1,f +5210,6141,36,2,f +5210,6141,15,4,f +5210,73983,0,2,f +5210,970c00,14,1,f +5210,973p6ec01,15,1,f +5211,12825,0,2,f +5211,12825,71,3,f +5211,13971,4,4,f +5211,13971,71,4,f +5211,2412b,80,7,f +5211,2420,0,6,f +5211,2420,71,8,f +5211,2431,71,2,f +5211,2431,0,3,f +5211,2496,0,2,f +5211,2780,0,1,t +5211,2780,0,16,f +5211,298c02,71,1,t +5211,298c02,71,2,f +5211,3003,72,1,f +5211,3005,71,2,f +5211,3005,0,4,f +5211,30162,72,6,f +5211,3020,0,1,f +5211,3020,71,1,f +5211,3020,25,3,f +5211,3021,72,6,f +5211,3021,71,4,f +5211,3022,71,4,f +5211,3022,0,3,f +5211,3023,71,19,f +5211,3023,0,3,f +5211,3023,15,2,f +5211,3024,36,1,t +5211,3024,71,12,f +5211,3024,0,2,f +5211,3024,71,1,t +5211,3024,182,2,f +5211,3024,36,2,f +5211,3024,182,1,t +5211,3024,0,1,t +5211,3031,1,1,f +5211,3031,4,1,f +5211,3035,71,1,f +5211,3036,0,1,f +5211,30367b,15,1,f +5211,3039,0,2,f +5211,3039,47,2,f +5211,30414,1,1,f +5211,3062b,4,2,f +5211,3062b,1,2,f +5211,3062b,15,1,f +5211,3065,47,2,f +5211,30663,0,1,f +5211,3068b,71,2,f +5211,3069b,71,3,f +5211,3069b,15,1,f +5211,3069b,0,6,f +5211,3069b,40,2,f +5211,3069bpr0132,71,1,f +5211,3069bpr0133,15,1,f +5211,3069bpr0135,25,1,f +5211,3070b,71,1,t +5211,3070b,0,2,f +5211,3070b,0,1,t +5211,3070b,71,1,f +5211,3070bpr0007,71,1,t +5211,3070bpr0007,71,2,f +5211,32000,72,8,f +5211,32028,0,2,f +5211,32523,0,8,f +5211,32556,19,4,f +5211,3460,71,5,f +5211,3622,71,2,f +5211,3623,71,3,f +5211,3623,15,1,f +5211,3623,0,2,f +5211,3626cpr1275,78,1,f +5211,3626cpr1276,78,1,f +5211,3665,71,2,f +5211,3666,71,1,f +5211,3666,72,2,f +5211,3701,15,1,f +5211,3710,0,3,f +5211,3710,71,6,f +5211,3794a,71,5,f +5211,3795,0,3,f +5211,3937,0,4,f +5211,3937,71,2,f +5211,3938,0,4,f +5211,3938,71,2,f +5211,4032a,0,1,f +5211,4070,71,8,f +5211,4070,15,1,f +5211,4070,0,10,f +5211,4081b,0,2,f +5211,4081b,71,6,f +5211,4085c,1,2,f +5211,4085c,72,2,f +5211,4085c,4,2,f +5211,42511,85,1,f +5211,4274,1,1,t +5211,4274,1,3,f +5211,4282,71,1,f +5211,4282,72,2,f +5211,4599b,0,2,f +5211,4599b,1,1,t +5211,4599b,1,2,f +5211,4599b,0,1,t +5211,48336,0,2,f +5211,54200,71,1,t +5211,54200,0,1,t +5211,54200,0,2,f +5211,54200,71,16,f +5211,6019,71,2,f +5211,60470a,71,2,f +5211,60475a,71,4,f +5211,60478,71,8,f +5211,6091,0,2,f +5211,6091,15,2,f +5211,61254,0,4,f +5211,61409,72,2,f +5211,6141,80,8,f +5211,6141,4,3,f +5211,6141,4,1,t +5211,6141,0,1,f +5211,6141,80,1,t +5211,6141,14,1,f +5211,6141,0,1,t +5211,6141,14,1,t +5211,62810,308,1,f +5211,63864,71,4,f +5211,63864,15,1,f +5211,63868,71,2,f +5211,64798,15,1,f +5211,6636,0,1,f +5211,73590c02a,0,4,f +5211,85984,71,3,f +5211,85984,0,5,f +5211,87079,71,4,f +5211,87082,71,4,f +5211,87087,4,2,f +5211,87552pr0001a,71,1,f +5211,87580,71,4,f +5211,92280,71,4,f +5211,96874,25,1,t +5211,970c00,15,1,f +5211,970c00,73,1,f +5211,973pr2463c01,4,1,f +5211,973pr2464c01,15,1,f +5211,98138,179,3,f +5211,98138,179,1,t +5212,2419,0,1,f +5212,2431,72,2,f +5212,2432,0,1,f +5212,2444,71,2,f +5212,2456,72,3,f +5212,2458,71,4,f +5212,2476a,71,4,f +5212,2569,0,1,f +5212,2780,0,10,f +5212,2780,0,1,t +5212,2825,0,4,f +5212,3001,72,1,f +5212,3003,72,1,f +5212,3021,19,2,f +5212,30236,0,1,f +5212,30363,72,1,f +5212,30365,0,4,f +5212,30367b,27,2,f +5212,30374,36,1,f +5212,3039,0,2,f +5212,3040b,72,1,f +5212,30553,0,1,f +5212,30602,40,1,f +5212,3068b,72,2,f +5212,3176,72,2,f +5212,3176,0,2,f +5212,32009,72,4,f +5212,32018,0,4,f +5212,32039,71,2,f +5212,32062,4,5,f +5212,32062,4,1,t +5212,32064b,14,2,f +5212,32074c01,0,1,f +5212,32123b,71,1,t +5212,32123b,71,4,f +5212,32449,27,4,f +5212,32474,27,1,f +5212,32524,0,2,f +5212,32526,72,1,f +5212,3460,0,2,f +5212,3660,72,2,f +5212,3665,72,1,f +5212,3673,71,8,f +5212,3673,71,1,t +5212,3700,72,6,f +5212,3705,0,2,f +5212,3706,0,7,f +5212,3709,0,4,f +5212,3709,72,6,f +5212,3713,71,1,t +5212,3713,71,5,f +5212,3749,19,4,f +5212,3794a,72,3,f +5212,3943b,0,2,f +5212,40244,0,4,f +5212,41531,0,1,f +5212,41532,0,4,f +5212,41749,0,2,f +5212,41750,0,2,f +5212,41752,72,1,f +5212,42022,72,3,f +5212,4274,71,1,f +5212,4274,71,1,t +5212,43093,1,9,f +5212,4349,72,2,f +5212,44126,0,2,f +5212,44300,72,1,f +5212,4589,36,3,f +5212,48729a,72,2,f +5212,50304,0,1,f +5212,50305,0,1,f +5212,50943,71,3,f +5212,53983pat0001,0,4,f +5212,53984,135,2,f +5212,53988pat01,42,1,f +5212,53989,135,2,f +5212,54605,47,1,f +5212,6019,0,2,f +5212,6141,36,4,f +5212,6141,36,1,t +5212,6536,71,1,f +5212,6538b,27,5,f +5212,6558,0,5,f +5212,6587,72,1,f +5212,6632,71,2,f +5212,76110c05,71,1,f +5212,78c09,179,4,f +5212,85543,15,1,f +5213,10201,0,2,f +5213,11055pr0012,15,1,f +5213,11153,4,6,f +5213,11253,0,2,f +5213,11253,0,1,t +5213,11833,0,7,f +5213,14210,0,2,f +5213,14395,70,2,f +5213,14769pr0001,15,1,f +5213,15118,70,1,f +5213,15573,72,9,f +5213,15712,297,10,f +5213,18674,70,1,f +5213,18746,272,1,f +5213,18759,71,1,f +5213,20482,47,1,t +5213,20482,47,2,f +5213,21827,320,1,f +5213,2357,72,3,f +5213,2420,70,5,f +5213,2420,72,2,f +5213,2420,71,3,f +5213,2420,2,4,f +5213,2421,0,1,f +5213,2431,71,3,f +5213,2431,15,3,f +5213,2431,19,8,f +5213,2435,2,2,f +5213,2450,19,1,f +5213,2540,72,1,f +5213,2654,19,6,f +5213,2780,0,1,f +5213,2780,0,1,t +5213,2921,15,2,f +5213,298c02,1,1,f +5213,298c02,1,1,t +5213,3002,72,3,f +5213,3004,15,5,f +5213,3004,71,7,f +5213,3004,70,14,f +5213,3004,72,6,f +5213,3005,70,4,f +5213,3005,15,4,f +5213,3005,71,2,f +5213,3006,19,1,f +5213,3009,70,2,f +5213,3010,70,4,f +5213,3010,19,1,f +5213,30133,4,2,f +5213,30136,72,5,f +5213,30150,84,1,f +5213,30162,72,1,f +5213,30179,0,3,f +5213,3020,15,2,f +5213,3020,70,6,f +5213,3020,19,5,f +5213,3020,2,25,f +5213,3021,72,8,f +5213,3021,2,8,f +5213,3022,70,3,f +5213,3022,72,2,f +5213,3022,2,10,f +5213,3023,71,7,f +5213,3023,2,4,f +5213,3023,70,14,f +5213,3023,1,2,f +5213,3023,71,2,t +5213,3023,19,4,f +5213,3023,0,11,f +5213,3023,15,4,f +5213,3024,71,1,t +5213,3024,2,1,t +5213,3024,70,1,t +5213,3024,15,1,t +5213,3024,70,21,f +5213,3024,47,2,t +5213,3024,15,8,f +5213,3024,47,4,f +5213,3024,2,4,f +5213,3024,71,7,f +5213,3032,15,1,f +5213,3033,15,5,f +5213,30340,2,5,f +5213,3035,15,3,f +5213,30367c,15,1,f +5213,3039,72,2,f +5213,3040b,72,3,f +5213,3040b,19,6,f +5213,3040b,70,1,f +5213,3040bpr0003,71,1,f +5213,30414,19,3,f +5213,30586,71,2,f +5213,30613,15,1,f +5213,3062b,71,4,f +5213,3062b,46,13,f +5213,3062b,72,7,f +5213,3062b,0,4,f +5213,3065,34,2,f +5213,3065,47,4,f +5213,3068b,70,1,f +5213,3068b,71,3,f +5213,3069b,19,4,f +5213,3069b,0,3,f +5213,3069b,71,11,f +5213,3069b,25,2,f +5213,3069b,1,4,f +5213,3069bpr0055,15,1,f +5213,3070b,25,1,t +5213,3070b,1,2,f +5213,3070b,25,2,f +5213,3070b,2,1,t +5213,3070b,14,1,f +5213,3070b,71,2,t +5213,3070b,1,1,t +5213,3070b,14,1,t +5213,3070b,2,1,f +5213,3070b,71,11,f +5213,32028,15,2,f +5213,32028,71,4,f +5213,32062,4,1,f +5213,32124,70,6,f +5213,32251,288,2,f +5213,32449,0,1,f +5213,32449,14,1,f +5213,32530,72,3,f +5213,33172,25,1,f +5213,33243,15,1,f +5213,33320,297,1,f +5213,3460,15,3,f +5213,3471,2,2,f +5213,3622,71,3,f +5213,3622,70,2,f +5213,3623,15,4,f +5213,3623,2,1,f +5213,3623,70,7,f +5213,3623,4,3,f +5213,3623,71,4,f +5213,3626b,15,1,f +5213,3626bpr0001,14,1,f +5213,3626bpr0677,14,1,f +5213,3626cpr0752,14,1,f +5213,3626cpr1087,14,1,f +5213,3626cpr1146,14,1,f +5213,3626cpr1234,14,1,f +5213,3626cpr1684,14,1,f +5213,3626cpr1685,14,1,f +5213,3626cpr1760,14,1,f +5213,3659,72,1,f +5213,3665,70,2,f +5213,3665,71,4,f +5213,3666,2,4,f +5213,3666,70,4,f +5213,3666,71,5,f +5213,3666,15,3,f +5213,3678bpr0049,0,1,f +5213,3679,71,1,f +5213,3680,1,1,f +5213,3700,19,1,f +5213,3710,70,10,f +5213,3710,2,8,f +5213,3710,15,3,f +5213,3713,4,1,f +5213,3713,4,1,t +5213,3737,0,1,f +5213,3794b,15,1,f +5213,3794b,71,7,f +5213,3795,70,2,f +5213,3795,2,9,f +5213,3795,15,4,f +5213,3832,15,4,f +5213,3836,70,1,f +5213,3878,0,2,f +5213,3901,28,1,f +5213,3937,72,1,f +5213,3941,70,5,f +5213,3942c,0,1,f +5213,3956,1,1,f +5213,3957a,71,1,f +5213,3958,28,1,f +5213,3958,15,1,f +5213,4032a,19,3,f +5213,4032a,71,2,f +5213,4070,70,1,f +5213,4070,72,21,f +5213,4079,1,1,f +5213,4081b,14,2,f +5213,4085c,0,2,f +5213,41334,272,1,f +5213,4162,71,2,f +5213,41879a,272,1,f +5213,41879a,30,1,f +5213,41879a,2,1,f +5213,42409,46,1,f +5213,4274,71,10,f +5213,4274,71,2,t +5213,43093,1,1,f +5213,44301a,71,2,f +5213,44302a,71,2,f +5213,44567a,0,1,f +5213,44728,15,2,f +5213,44728,19,1,f +5213,4490,0,1,f +5213,4510,71,1,f +5213,4510,15,2,f +5213,4522,0,1,f +5213,4588,15,1,f +5213,4595,0,1,f +5213,46303,71,1,f +5213,4697b,71,1,f +5213,4697b,71,1,t +5213,4733,15,3,f +5213,4733,0,2,f +5213,4740,15,2,f +5213,4740,0,2,f +5213,47905,19,1,f +5213,48336,0,2,f +5213,48336,15,1,f +5213,4865a,0,2,f +5213,4865a,47,1,f +5213,48729b,0,2,t +5213,48729b,0,3,f +5213,54200,4,1,f +5213,54200,4,1,t +5213,54200,40,1,f +5213,54200,40,1,t +5213,54200,19,4,f +5213,57895,47,3,f +5213,59900,2,2,f +5213,59900,15,1,f +5213,59900,0,1,f +5213,6005,15,1,f +5213,6019,1,3,f +5213,6020,0,1,f +5213,60471,0,1,f +5213,60474,0,2,f +5213,60475b,71,2,f +5213,60478,0,9,f +5213,60592,0,3,f +5213,60593,0,2,f +5213,60596,15,1,f +5213,60601,47,3,f +5213,60602,47,2,f +5213,60623,0,1,f +5213,60897,71,2,f +5213,6091,320,8,f +5213,6091,15,8,f +5213,6111,19,1,f +5213,61252,4,2,f +5213,61252,25,1,f +5213,6126b,182,2,f +5213,61287,47,4,f +5213,6134,1,1,f +5213,6141,4,14,f +5213,6141,45,4,f +5213,6141,15,1,t +5213,6141,46,18,f +5213,6141,45,1,t +5213,6141,179,1,t +5213,6141,46,1,t +5213,6141,4,2,t +5213,6141,179,4,f +5213,6141,15,13,f +5213,6141,34,2,t +5213,6141,33,1,t +5213,6141,34,5,f +5213,6141,0,2,t +5213,6141,33,3,f +5213,6141,297,7,f +5213,6141,297,2,t +5213,6141,1,1,f +5213,6141,0,11,f +5213,6141,1,1,t +5213,6251pr0001,15,1,f +5213,62537pr0001,25,1,f +5213,6266,0,2,t +5213,6266,0,3,f +5213,62696,484,1,f +5213,62810,308,1,f +5213,62930,47,1,f +5213,63864,28,5,f +5213,63868,0,2,f +5213,63965,0,1,f +5213,64566,0,1,f +5213,64644,0,2,f +5213,64807,308,1,f +5213,6636,70,5,f +5213,6636,28,9,f +5213,85984,15,3,f +5213,87087,15,1,f +5213,87580,2,2,f +5213,87990,226,1,f +5213,87994,71,2,t +5213,87994,71,5,f +5213,90509,322,2,f +5213,92280,71,6,f +5213,92690,71,1,f +5213,92950,0,1,f +5213,96874,25,1,t +5213,970c00,2,1,f +5213,970c00,72,1,f +5213,970c00,71,1,f +5213,970c00,15,1,f +5213,973pr0656c01,15,1,f +5213,973pr1772c01,10,1,f +5213,973pr1776c01,272,1,f +5213,973pr1800c01,73,1,f +5213,973pr2100c01,0,1,f +5213,973pr3028c01,0,1,f +5213,98138,27,1,t +5213,98138,27,2,f +5213,98382pr0001,86,1,f +5214,14210,2,1,f +5214,2456,1,2,f +5214,2456,14,2,f +5214,3001,14,8,f +5214,3001,15,6,f +5214,3001,2,6,f +5214,3001,0,4,f +5214,3001,4,8,f +5214,3001,1,8,f +5214,3001,6,4,f +5214,3001pr1,14,1,f +5214,3002,1,6,f +5214,3002,0,4,f +5214,3002,14,6,f +5214,3002,2,4,f +5214,3002,4,6,f +5214,3002,15,6,f +5214,3003,34,2,f +5214,3003,6,6,f +5214,3003,15,8,f +5214,3003,2,8,f +5214,3003,14,10,f +5214,3003,4,10,f +5214,3003,36,2,f +5214,3003,0,8,f +5214,3003,1,8,f +5214,3004,14,6,f +5214,3004,4,6,f +5214,3004,1,6,f +5214,3004,0,4,f +5214,3004,15,4,f +5214,3005pe1,15,2,f +5214,3005pe1,14,2,f +5214,3007,14,2,f +5214,3007,1,2,f +5214,3008,14,2,f +5214,3008,1,2,f +5214,3009,15,2,f +5214,3009,14,4,f +5214,3009,0,2,f +5214,3009,1,4,f +5214,3009,4,2,f +5214,3009,2,2,f +5214,3010,2,4,f +5214,3010,1,4,f +5214,3010,0,4,f +5214,3010,14,6,f +5214,3010,15,4,f +5214,3010,4,6,f +5214,3065,33,2,f +5214,3065,34,2,f +5214,3065,36,2,f +5214,6111,4,2,f +5218,14226c41,2,2,f +5218,2357,0,4,f +5218,2357,320,10,f +5218,2420,320,4,f +5218,2420,72,8,f +5218,2431,0,4,f +5218,2431,72,4,f +5218,2444,0,8,f +5218,2453a,320,20,f +5218,2454a,320,10,f +5218,2465,72,1,f +5218,2540,72,6,f +5218,2654,19,4,f +5218,2743,72,8,f +5218,2780,0,22,f +5218,3002,320,14,f +5218,3003,320,4,f +5218,3004,72,12,f +5218,3004,320,30,f +5218,30041,0,4,f +5218,30042,72,4,f +5218,3005,72,28,f +5218,3005,0,6,f +5218,3005,320,6,f +5218,3008,72,2,f +5218,3009,72,4,f +5218,3009,320,4,f +5218,30145,320,8,f +5218,3020,320,6,f +5218,3021,320,2,f +5218,3021,72,8,f +5218,3021,0,2,f +5218,3022,320,10,f +5218,3022,0,2,f +5218,3023,320,18,f +5218,3023,72,10,f +5218,3023,0,2,f +5218,3024,72,4,f +5218,3028,0,8,f +5218,3029,0,1,f +5218,30293pat0002,72,4,f +5218,30294pat0001,72,4,f +5218,3030,72,1,f +5218,3033,72,4,f +5218,3034,0,6,f +5218,3034,72,9,f +5218,3035,72,1,f +5218,30359b,72,8,f +5218,3039,320,4,f +5218,3040b,72,8,f +5218,3045,320,8,f +5218,30526,72,2,f +5218,30553,0,6,f +5218,30554a,0,6,f +5218,3062b,42,6,f +5218,3068b,320,12,f +5218,3069b,72,8,f +5218,32000,72,10,f +5218,32056,0,2,f +5218,32062,4,4,f +5218,32062,0,8,f +5218,32064b,0,12,f +5218,32073,71,2,f +5218,32123b,71,5,f +5218,32140,0,2,f +5218,32174,72,4,f +5218,32184,71,1,f +5218,32209,72,1,f +5218,32269,71,3,f +5218,32316,71,4,f +5218,32482,272,2,f +5218,32525,0,1,f +5218,32526,0,2,f +5218,32530,72,4,f +5218,32553,191,4,f +5218,32556,71,6,f +5218,3455,72,4,f +5218,3460,72,18,f +5218,3647,71,1,f +5218,3660,0,2,f +5218,3666,320,16,f +5218,3666,0,2,f +5218,3673,71,23,f +5218,3676,320,16,f +5218,3684,0,2,f +5218,3684,320,24,f +5218,3700,71,2,f +5218,3701,72,5,f +5218,3702,0,4,f +5218,3705,0,2,f +5218,3707,0,4,f +5218,3710,0,2,f +5218,3710,320,6,f +5218,3713,71,6,f +5218,3737,0,1,f +5218,3743,71,6,f +5218,3749,19,10,f +5218,3795,0,4,f +5218,3795,72,4,f +5218,3832,0,6,f +5218,3894,0,2,f +5218,3937,72,2,f +5218,3941,0,2,f +5218,3957a,42,4,f +5218,4032a,72,8,f +5218,40490,0,2,f +5218,4151,72,1,f +5218,41539,72,2,f +5218,41539,0,2,f +5218,4162,72,4,f +5218,41669,36,2,f +5218,41677,0,2,f +5218,41678,0,1,f +5218,4201,72,2,f +5218,42074,179,4,f +5218,43093,1,7,f +5218,43337,72,2,f +5218,44036,191,2,f +5218,44567a,72,6,f +5218,4460a,320,8,f +5218,44728,72,1,f +5218,4477,0,2,f +5218,44809,71,1,f +5218,44813,135,6,f +5218,44819,135,2,f +5218,4519,71,4,f +5218,47296,272,3,f +5218,47328,272,2,f +5218,47330,272,1,f +5218,47337,135,6,f +5218,47457,72,4,f +5218,4865a,0,4,f +5218,4865a,320,4,f +5218,49668,191,4,f +5218,50858,272,4,f +5218,50899,135,2,f +5218,50899,21,1,f +5218,50900,0,2,f +5218,50901,0,2,f +5218,50903,14,2,f +5218,50904,71,1,f +5218,50913,297,1,f +5218,50914,179,2,f +5218,50934pat0001,320,2,f +5218,51635,0,1,f +5218,51636,288,1,f +5218,51637,320,1,f +5218,51638,272,1,f +5218,51639,86,1,f +5218,51640,15,1,f +5218,51641,179,1,f +5218,51642,179,1,f +5218,51643,179,1,f +5218,51644,179,1,f +5218,51645,179,1,f +5218,51663,179,1,f +5218,51991a,0,1,f +5218,51991b,0,1,f +5218,51991c,0,2,f +5218,51991d,0,1,f +5218,51991e,0,2,f +5218,51991f,0,1,f +5218,53393,320,1,f +5218,6019,0,2,f +5218,6046,135,1,f +5218,6066,320,2,f +5218,6083,72,2,f +5218,6112,0,2,f +5218,6134,0,2,f +5218,6141,320,3,f +5218,6180,72,8,f +5218,6187,71,4,f +5218,6231,320,8,f +5218,6232,72,2,f +5218,6536,71,2,f +5218,6538b,0,3,f +5218,6541,72,8,f +5218,6558,0,4,f +5218,6630,0,2,f +5218,75535,72,2,f +5218,78c04,179,4,f +5218,85543,15,3,f +5218,8759stk01,9999,1,t +5219,64251,135,1,f +5219,64262,57,1,f +5219,87794,0,1,f +5219,87796,0,3,f +5219,87797,135,2,f +5219,87798,135,2,f +5219,87799,57,1,f +5219,87809,135,1,f +5219,87810,135,1,f +5219,87811,135,1,f +5219,93571,0,3,f +5222,19859pat0004,47,1,f +5222,22656,72,1,f +5222,30381,72,1,f +5222,3626cpr1731,1000,1,f +5222,88646,0,1,f +5222,92338,179,1,f +5222,973c44,72,1,f +5225,2419,0,2,f +5225,2446,0,1,f +5225,2447,42,1,f +5225,2450,0,2,f +5225,3023,0,1,f +5225,3069bp68,15,1,f +5225,3626apr0001,14,1,f +5225,3838,0,1,f +5225,3962a,0,1,f +5225,4032a,15,4,f +5225,4275b,0,1,f +5225,4276b,0,1,f +5225,4504,0,1,f +5225,4589,42,2,f +5225,4590,0,1,f +5225,4591,15,1,f +5225,4596,15,1,f +5225,4598,0,1,f +5225,4740,42,1,f +5225,6069,0,1,f +5225,6141,42,2,f +5225,970x026,15,1,f +5225,973p51c01,15,1,f +5227,3024,71,1,t +5227,3024,320,2,f +5227,3024,71,1,f +5227,3024,320,1,t +5227,4595,71,1,f +5227,4599b,71,1,t +5227,4599b,71,6,f +5227,4733,71,1,f +5227,54200,71,1,f +5227,54200,40,1,t +5227,54200,40,1,f +5227,54200,71,1,t +5227,60849,71,1,f +5227,60849,71,1,t +5227,6141,72,1,f +5227,6141,72,1,t +5230,2439,72,1,f +5230,3004,25,2,f +5230,3020,71,1,f +5230,3024,0,1,t +5230,3024,2,1,t +5230,3024,2,1,f +5230,3024,0,1,f +5230,3069b,25,1,f +5230,3069b,25,1,t +5230,3837,0,1,f +5230,4085c,72,1,t +5230,4085c,72,2,f +5230,4740,72,1,t +5230,4740,72,1,f +5232,24782pr0002,73,1,f +5232,26159pr0114,226,1,f +5232,3626cpr1886,78,1,f +5232,88646,0,1,f +5232,95228pr0004,41,1,f +5232,970c00pr1037,15,1,f +5232,973pr3325c01,73,1,f +5232,98138pr0053,15,1,f +5234,3857,2,1,f +5237,10258,0,1,f +5237,17347,308,1,f +5237,3626cpr1473,14,1,f +5237,87989,27,1,f +5237,88646,0,1,f +5237,970c00pr0709,326,1,f +5237,973pr2742c01,28,1,f +5238,2546pat0001,4,1,f +5238,3062b,70,2,f +5238,3623,70,1,f +5238,3899,4,1,f +5238,4085c,4,1,f +5238,4740,72,1,f +5239,30273,80,1,f +5239,3626bpr0325,14,1,f +5239,4497,135,1,t +5239,4497,135,1,f +5239,970x026,71,1,f +5239,973pr1622c01,4,1,f +5240,2412b,25,12,f +5240,2413,15,2,f +5240,2419,15,1,f +5240,2444,0,2,f +5240,2446,15,2,f +5240,2447,82,2,f +5240,2447,82,1,t +5240,2456,0,1,f +5240,2555,0,2,f +5240,2730,15,2,f +5240,2780,0,3,t +5240,2780,0,23,f +5240,298c02,1,1,t +5240,298c02,1,2,f +5240,3001,72,2,f +5240,3001,15,3,f +5240,3002,71,1,f +5240,3003,71,1,f +5240,3003,0,1,f +5240,30033,15,2,f +5240,3004,0,2,f +5240,3004,15,2,f +5240,30153,42,5,f +5240,3020,0,1,f +5240,3020,15,5,f +5240,3021,71,2,f +5240,3022,15,2,f +5240,3023,0,6,f +5240,3035,0,1,f +5240,30357,72,2,f +5240,30384,182,1,f +5240,30389c,0,2,f +5240,3040b,15,2,f +5240,3040b,0,3,f +5240,30503,15,2,f +5240,30505,0,2,f +5240,30565,27,2,f +5240,3062b,15,4,f +5240,3068b,71,1,f +5240,32000,15,1,f +5240,32000,71,1,f +5240,32001,0,2,f +5240,32009,0,2,f +5240,32013,15,1,f +5240,32018,15,4,f +5240,32018,0,2,f +5240,32054,71,4,f +5240,32059,15,2,f +5240,32062,4,8,f +5240,32064b,0,4,f +5240,32064b,15,4,f +5240,32123b,71,1,f +5240,32123b,71,1,t +5240,32125,71,1,f +5240,32138,0,2,f +5240,32316,15,2,f +5240,32524,15,4,f +5240,32530,72,1,f +5240,32556,71,3,f +5240,3298,0,1,f +5240,3626bpr0250,14,1,f +5240,3626bpr0335,14,1,f +5240,3673,71,2,t +5240,3673,71,8,f +5240,3700,72,4,f +5240,3701,0,6,f +5240,3705,0,2,f +5240,3709,71,4,f +5240,3710,0,3,f +5240,3713,71,2,t +5240,3713,71,5,f +5240,3737,0,1,f +5240,3747b,15,3,f +5240,3747b,0,1,f +5240,3749,19,1,f +5240,3794a,0,2,f +5240,3795,72,1,f +5240,3795,0,6,f +5240,3832,0,1,f +5240,3849,0,2,f +5240,3894,0,2,f +5240,3937,15,2,f +5240,3937,0,2,f +5240,3938,71,2,f +5240,3941,1,2,f +5240,3941,42,2,f +5240,3957a,42,4,f +5240,3960,15,2,f +5240,40340,0,1,f +5240,4070,1,2,f +5240,40902,71,2,f +5240,4150,0,3,f +5240,41678,0,4,f +5240,41767,15,1,f +5240,41768,15,1,f +5240,41862,71,2,f +5240,42003,0,4,f +5240,42021,0,1,f +5240,42022,15,2,f +5240,42023,0,4,f +5240,42060,15,1,f +5240,42061,15,1,f +5240,4274,1,3,t +5240,4274,1,14,f +5240,43093,1,7,f +5240,43121,71,2,f +5240,4349,0,2,f +5240,43710,15,1,f +5240,43711,15,1,f +5240,43722,25,1,f +5240,43722,72,2,f +5240,43723,25,1,f +5240,43723,72,2,f +5240,43898,0,6,f +5240,44294,71,2,f +5240,44674,25,1,f +5240,44675,0,2,f +5240,44675,71,2,f +5240,44809,71,2,f +5240,45301,15,1,f +5240,45590,0,2,f +5240,45705,182,1,f +5240,4589,42,3,f +5240,4589,33,14,f +5240,4599a,0,1,f +5240,4716,0,1,f +5240,4740,33,3,f +5240,47457,15,1,f +5240,47755,25,2,f +5240,48336,0,1,f +5240,48729a,72,6,f +5240,48989,71,2,f +5240,50950,15,8,f +5240,50955,0,1,f +5240,50956,0,1,f +5240,54200,25,6,f +5240,54383,15,3,f +5240,54384,15,3,f +5240,57028c01,71,1,f +5240,57539,25,2,f +5240,57796,0,1,f +5240,57909a,72,1,f +5240,58843,15,2,f +5240,58844pat0001,34,4,f +5240,58845,34,4,f +5240,58846,0,2,f +5240,58947,182,2,f +5240,6087,0,1,f +5240,6091,15,2,f +5240,6118,25,6,f +5240,6134,0,2,f +5240,6141,72,2,f +5240,6141,33,1,t +5240,6141,72,1,t +5240,6141,33,6,f +5240,6183,15,1,f +5240,6187,0,1,f +5240,6239,15,2,f +5240,62712,72,1,f +5240,64567,71,2,f +5240,6536,72,6,f +5240,6538b,72,2,f +5240,6553,0,2,f +5240,6558,0,2,f +5240,6564,0,2,f +5240,6564,15,1,f +5240,6565,15,1,f +5240,6565,0,2,f +5240,78c12,27,2,f +5240,970x194,15,2,f +5240,973pr1317c01,15,2,f +5241,12825,71,1,f +5241,3024,1,2,f +5241,30359b,47,1,f +5241,30374,45,1,f +5241,3062b,14,2,f +5241,3062b,72,2,f +5241,3070b,1,2,f +5241,3070b,1,2,t +5241,32449,14,6,f +5241,3794b,4,2,f +5241,42610,71,2,f +5241,4589,71,2,f +5241,4595,71,1,f +5241,4733,1,2,f +5241,4740,47,2,f +5241,54200,14,2,f +5241,54200,1,2,f +5241,54200,1,1,t +5241,54200,71,1,t +5241,54200,71,2,f +5241,54200,14,1,t +5241,57585,71,2,f +5241,63965,0,2,f +5243,2458,0,1,f +5243,3004,0,1,f +5243,3004,7,2,f +5243,3005,7,2,f +5243,3034,2,2,f +5243,3039,7,2,f +5243,3626bp42,14,1,f +5243,3700,0,1,f +5243,3844,0,1,f +5243,3847a,8,1,f +5243,3848,6,1,f +5243,4085c,0,2,f +5243,4490,0,1,f +5243,4504,0,1,f +5243,4626,0,1,f +5243,970x021,0,1,f +5243,973p41c01,4,1,f +5244,11477,288,1,f +5244,15070,297,1,f +5244,18868a,41,1,f +5244,19981pr0032,41,1,f +5244,30173b,297,6,f +5244,3024,34,2,f +5244,3062b,47,1,f +5244,3623,288,2,f +5244,3626cpr1118,297,1,f +5244,3710,288,1,f +5244,3941,41,1,f +5244,4733,71,1,f +5244,47905,19,3,f +5244,54200,297,4,f +5244,60478,288,1,f +5244,60897,19,1,f +5244,6091,288,2,f +5244,61252,0,2,f +5244,61252,297,7,f +5244,6141,297,6,f +5244,6141,34,1,f +5244,64647,288,1,f +5244,73983,288,2,f +5244,87994,297,1,f +5244,95344,297,2,f +5244,970c00pr0428,297,1,f +5244,973pr2222c01,297,1,f +5244,98132,297,1,f +5244,98138,297,1,f +5245,22667,4,1,t +5245,22667,4,2,f +5245,2357,484,8,f +5245,2357,72,8,f +5245,2357,70,6,f +5245,2431,0,3,f +5245,2444,71,4,f +5245,2450,71,1,f +5245,2453a,484,2,f +5245,2454a,484,2,f +5245,2465,72,1,f +5245,2493b,70,2,f +5245,2494pb06,47,2,f +5245,2529,70,10,f +5245,2653,71,1,f +5245,2877,70,3,f +5245,2877,71,5,f +5245,3001,71,3,f +5245,3002,71,2,f +5245,3003,0,4,f +5245,3004,484,5,f +5245,3004,15,2,f +5245,3004,71,4,f +5245,30041,72,1,f +5245,30042,72,1,f +5245,3005,15,2,f +5245,3005,33,1,f +5245,3005,34,1,f +5245,3005,70,23,f +5245,3005,484,6,f +5245,3005,71,7,f +5245,3008,72,2,f +5245,3009,70,18,f +5245,3009,15,1,f +5245,3009,484,1,f +5245,3010,484,1,f +5245,3010,70,8,f +5245,3010,72,1,f +5245,3010,71,2,f +5245,30136,72,8,f +5245,30136,70,21,f +5245,3020,19,2,f +5245,3020,70,1,f +5245,3021,19,1,f +5245,30222,70,1,f +5245,30222,45,1,f +5245,3023,19,2,f +5245,3023,71,1,f +5245,30236,71,1,f +5245,30238,57,1,f +5245,3027,71,1,f +5245,3028,15,1,f +5245,3030,72,1,f +5245,3032,379,1,f +5245,3034,71,1,f +5245,3037,15,5,f +5245,3037,70,1,f +5245,30374,366,1,f +5245,30374,0,1,f +5245,3038,0,2,f +5245,3039,15,6,f +5245,3039,0,1,f +5245,3039ph1,19,1,f +5245,3040b,15,8,f +5245,3040b,0,2,f +5245,3044b,15,4,f +5245,3045,15,2,f +5245,3046a,15,4,f +5245,3046a,72,2,f +5245,30516,1,1,f +5245,3062b,46,2,f +5245,3062b,378,4,f +5245,3062b,19,11,f +5245,30658,0,1,f +5245,3069b,379,1,f +5245,3069bph1,19,1,f +5245,3069bpx39,33,1,f +5245,3070bph1,15,1,t +5245,3070bph1,15,1,f +5245,32018,15,1,f +5245,32073,71,1,f +5245,3245b,72,2,f +5245,3297,15,2,f +5245,33051,2,1,f +5245,33051,4,1,f +5245,33061,34,1,f +5245,3308,72,2,f +5245,33320,2,1,f +5245,3455,71,4,f +5245,3455,19,2,f +5245,3460,72,2,f +5245,3622,484,1,f +5245,3623,70,2,f +5245,3626bpb0207,78,1,f +5245,3626bpb0209,78,1,f +5245,3626bpb0213,78,1,f +5245,3626bph1,78,1,f +5245,3626bpr0190,15,1,f +5245,3633,0,2,f +5245,3659,19,3,f +5245,3660,72,6,f +5245,3665,72,12,f +5245,3665,70,2,f +5245,3666,71,1,f +5245,3673,71,1,t +5245,3673,71,4,f +5245,3685,70,4,f +5245,3700,0,3,f +5245,3701,15,2,f +5245,3710,19,2,f +5245,3710,71,4,f +5245,3710,72,1,f +5245,3710,0,1,f +5245,3713,71,1,t +5245,3713,71,1,f +5245,3794a,70,1,f +5245,3795,72,1,f +5245,3830,0,4,f +5245,3831,0,4,f +5245,3832,71,2,f +5245,3861b,70,1,f +5245,3900pb02,19,2,f +5245,3937,15,1,f +5245,3959,0,1,f +5245,40232,0,1,f +5245,40233,0,1,f +5245,4070,0,6,f +5245,4085c,71,2,f +5245,41539,71,1,f +5245,4162,0,4,f +5245,4204,15,1,f +5245,42443,72,1,f +5245,4274,1,2,f +5245,4274,1,1,t +5245,4282,71,1,f +5245,4286,15,6,f +5245,43751,484,1,f +5245,4460a,72,4,f +5245,4523,70,1,f +5245,4530,0,1,f +5245,4589,36,1,f +5245,4589,33,1,f +5245,4589,0,2,f +5245,4589,57,2,f +5245,4599a,0,2,f +5245,48316c01,70,1,f +5245,4865a,0,5,f +5245,48812,72,1,f +5245,50231,71,1,f +5245,50687,71,1,f +5245,6126a,57,1,f +5245,6134,0,1,f +5245,6141,34,1,t +5245,6141,57,5,f +5245,6141,57,1,t +5245,6141,33,1,f +5245,6141,33,1,t +5245,6141,34,1,f +5245,6141,0,6,f +5245,6141,0,1,t +5245,6141,42,3,f +5245,6141,42,1,t +5245,6256,14,1,f +5245,6541,72,2,f +5245,6556,15,5,f +5245,6636,15,4,f +5245,6636px1,19,4,f +5245,970c00,71,1,f +5245,970c00,72,2,f +5245,970c00,28,1,f +5245,970c00,288,1,f +5245,973pb0314c01,72,1,f +5245,973pb0329c01,72,1,f +5245,973pb0336c01,288,1,f +5245,973pb0343c01,71,1,f +5246,cloth02,1,1,f +5247,2446,135,1,f +5247,2570,70,1,f +5247,2586px14,71,2,f +5247,2587pr19,135,2,f +5247,2594,80,1,f +5247,30273,80,1,f +5247,3626bpr0270,14,1,f +5247,3626bpr0325,14,1,f +5247,3626bpr0433,14,1,f +5247,3626bpr0499,14,1,f +5247,3626bpr0500,14,1,f +5247,3844,80,2,f +5247,3846pr24,71,2,f +5247,3849,135,1,f +5247,43899,71,1,f +5247,4495b,82,1,f +5247,4495b,272,1,f +5247,4497,135,1,f +5247,4498,70,1,f +5247,4503,80,1,f +5247,59,383,1,f +5247,970x026,71,5,f +5247,973c47,71,2,f +5247,973pr1318c01,272,1,f +5247,973pr1321c01,72,2,f +5249,11618,26,1,t +5249,11618,26,1,f +5249,13393pr0001,84,1,f +5249,22667,26,2,f +5249,22667,26,1,t +5249,2339,70,1,f +5249,2420,19,1,f +5249,2423,2,4,f +5249,3002,70,1,f +5249,30136,70,1,f +5249,3021,2,2,f +5249,3023,2,2,f +5249,3031,27,1,f +5249,3040b,308,1,f +5249,33291,191,1,t +5249,33291,191,3,f +5249,3700,70,2,f +5249,4740pr0001a,4,1,f +5249,59900,15,1,f +5249,60481,308,2,f +5249,6141,29,7,f +5249,6141,29,1,t +5249,6256,29,1,f +5251,20877,0,1,f +5251,30153,47,1,f +5251,30192,71,1,f +5251,3626cpr1829,14,1,f +5251,4349,0,1,f +5251,88646,0,1,f +5251,970c00pr0990,0,1,f +5251,973pr3218c01,0,1,f +5252,10197,72,2,f +5252,10201,71,2,f +5252,11153,326,6,f +5252,11213,71,2,f +5252,11214,72,2,f +5252,11338,148,6,f +5252,11477,179,4,f +5252,11477,326,1,f +5252,11478,0,2,f +5252,14137,34,1,f +5252,15068,0,1,f +5252,15092,72,2,f +5252,15100,0,2,f +5252,15303,36,3,f +5252,15391,15,2,f +5252,15392,72,2,f +5252,15392,72,1,t +5252,15400,72,2,f +5252,15406,0,2,f +5252,15535,72,3,f +5252,18333pr01,272,1,f +5252,18347,0,1,f +5252,2340,0,1,f +5252,2412b,179,5,f +5252,2419,0,2,f +5252,2420,19,8,f +5252,2431,0,2,f +5252,2540,0,2,f +5252,2654,46,1,f +5252,2780,0,10,f +5252,3002,2,2,f +5252,30031,0,1,f +5252,30035,0,1,f +5252,3004,320,4,f +5252,3006,0,3,f +5252,3010,0,2,f +5252,3020,326,5,f +5252,3020,71,1,f +5252,3021,71,4,f +5252,3021,0,1,f +5252,3022,72,5,f +5252,3023,326,28,f +5252,3023,41,4,f +5252,3031,0,3,f +5252,3033,0,1,f +5252,30374,71,2,f +5252,3039,326,2,f +5252,30526,71,2,f +5252,30553,0,2,f +5252,30602,0,2,f +5252,3062b,34,6,f +5252,3062b,36,8,f +5252,3069bpr0100,2,3,f +5252,3070bpr0007,71,1,t +5252,3070bpr0007,71,1,f +5252,3176,0,1,f +5252,32000,71,2,f +5252,32013,320,4,f +5252,32016,0,4,f +5252,32034,0,4,f +5252,32039,0,6,f +5252,32054,0,4,f +5252,32062,4,1,f +5252,32064a,2,16,f +5252,32073,71,4,f +5252,32123b,71,6,f +5252,32123b,71,2,t +5252,32316,72,2,f +5252,3298,326,4,f +5252,3623,0,10,f +5252,3626cpr0920,14,1,f +5252,3626cpr1490,14,1,f +5252,3626cpr1501,14,1,f +5252,3626cpr1502,14,1,f +5252,3660,0,1,f +5252,3666,0,4,f +5252,3700,0,4,f +5252,3700,19,6,f +5252,3701,0,1,f +5252,3706,0,2,f +5252,3707,0,2,f +5252,3710,72,1,f +5252,3737,0,4,f +5252,3794a,72,2,f +5252,3894,72,10,f +5252,41530,179,2,f +5252,41532,0,2,f +5252,42060,326,3,f +5252,42061,326,3,f +5252,42610,71,6,f +5252,4274,71,2,f +5252,4274,1,2,t +5252,4274,71,1,t +5252,4274,1,14,f +5252,4286,0,4,f +5252,43093,1,6,f +5252,4349,0,2,f +5252,43710,326,3,f +5252,43711,326,3,f +5252,43722,71,2,f +5252,43723,71,2,f +5252,43898,41,4,f +5252,44224,72,6,f +5252,44225,326,6,f +5252,44676,0,2,f +5252,44728,0,4,f +5252,4519,71,6,f +5252,4599b,15,1,t +5252,4599b,15,1,f +5252,4733,15,1,f +5252,47397,0,1,f +5252,47398,0,1,f +5252,4740,0,8,f +5252,4740,36,1,f +5252,4740,41,3,f +5252,47457,326,6,f +5252,47755,0,1,f +5252,54200,326,4,f +5252,54200,326,1,t +5252,55981,326,2,f +5252,57585,71,2,f +5252,57909b,72,2,f +5252,59426,72,2,f +5252,59900,34,4,f +5252,59900,182,1,f +5252,59900,0,2,f +5252,60208,72,2,f +5252,60477,72,4,f +5252,60479,0,4,f +5252,60849,71,1,t +5252,60849,71,1,f +5252,60897,0,2,f +5252,6091,72,4,f +5252,6111,0,1,f +5252,61183,0,1,f +5252,6141,34,3,t +5252,6141,179,4,f +5252,6141,34,31,f +5252,6141,179,1,t +5252,6141,57,1,t +5252,6141,57,5,f +5252,61482,71,1,f +5252,61482,71,1,t +5252,61903,71,2,f +5252,6233,0,1,f +5252,63864,0,4,f +5252,63868,0,2,f +5252,64567,15,1,t +5252,64567,15,1,f +5252,6541,19,2,f +5252,6558,1,16,f +5252,6585,0,3,f +5252,6587,28,2,f +5252,6589,19,7,f +5252,6589,19,2,t +5252,6629,0,4,f +5252,78c06,179,4,f +5252,85975,15,1,f +5252,85984,0,3,f +5252,87079,326,1,f +5252,87580,0,4,f +5252,87990,26,1,f +5252,89523,72,3,f +5252,90609,326,2,f +5252,92013,0,2,f +5252,92280,0,3,f +5252,92582,0,1,f +5252,93273,326,8,f +5252,95188,326,4,f +5252,96874,25,1,t +5252,970c00,0,1,f +5252,970c00pr0723,19,1,f +5252,970c00pr0738,0,1,f +5252,970c00pr0739,0,1,f +5252,973pr2758c01,15,1,f +5252,973pr2774c01,19,1,f +5252,973pr2775c01,0,1,f +5252,973pr2780c01,15,1,f +5252,99207,71,9,f +5252,99780,72,15,f +5252,99781,71,7,f +5254,2357,14,2,f +5254,2412b,72,4,f +5254,2436,14,1,f +5254,2444,14,4,f +5254,2445,0,1,f +5254,2780,0,8,f +5254,2780,0,1,t +5254,3001,1,1,f +5254,3003,72,1,f +5254,3008,14,2,f +5254,3009,14,1,f +5254,3010,14,2,f +5254,30157,72,3,f +5254,3020,14,2,f +5254,3022,14,2,f +5254,3022,4,1,f +5254,3022,72,2,f +5254,3023,71,6,f +5254,3024,14,4,f +5254,30256,71,1,f +5254,30259,15,1,f +5254,30293,72,2,f +5254,30294,72,2,f +5254,3031,72,2,f +5254,3032,14,4,f +5254,3039,72,1,f +5254,3068b,72,2,f +5254,3068b,14,2,f +5254,3069b,14,3,f +5254,3070b,36,2,f +5254,3070b,36,1,t +5254,32028,0,1,f +5254,32059,14,1,f +5254,32316,14,2,f +5254,32530,72,2,f +5254,3460,72,1,f +5254,3639,72,1,f +5254,3640,72,1,f +5254,3666,14,4,f +5254,3701,14,2,f +5254,3710,14,4,f +5254,3794b,0,4,f +5254,3794b,15,2,f +5254,3823,40,1,f +5254,3829c01,4,1,f +5254,3832,72,1,f +5254,3837,0,1,f +5254,3839b,0,1,f +5254,4070,14,6,f +5254,4079,0,1,f +5254,4085c,14,2,f +5254,4274,71,1,t +5254,4274,71,8,f +5254,4286,14,2,f +5254,44728,72,1,f +5254,44728,14,2,f +5254,4477,72,2,f +5254,4589,15,2,f +5254,4735,0,2,f +5254,4740,0,2,f +5254,4856a,14,1,f +5254,4864b,40,2,f +5254,4865a,14,3,f +5254,50950,14,2,f +5254,52107,0,2,f +5254,54200,14,4,f +5254,54200,14,1,t +5254,54200,47,1,t +5254,54200,47,2,f +5254,55981,14,6,f +5254,56891,0,6,f +5254,58176,182,4,f +5254,60478,14,2,f +5254,6079,15,1,f +5254,6081,14,1,f +5254,6091,14,2,f +5254,61409,72,2,f +5254,6141,182,1,t +5254,6141,182,2,f +5254,6141,0,6,f +5254,6141,0,1,t +5254,6141,36,2,f +5254,6141,36,1,t +5254,6179,14,1,f +5254,62361,14,2,f +5254,62531,14,2,f +5255,3003,15,4,f +5255,3004,15,3,f +5255,3005,15,8,f +5255,3008,15,2,f +5255,3009,15,4,f +5255,3010,15,4,f +5255,3037,4,16,f +5255,3038,4,4,f +5255,3039,4,10,f +5255,3040a,4,1,f +5255,3041,4,1,f +5255,3042,4,1,f +5255,3043,4,1,f +5255,3068a,15,4,f +5255,3068a,0,5,f +5255,3081bc01,4,1,f +5255,3144,15,1,f +5255,32bc01,4,1,f +5255,33bc01,4,1,f +5255,453bc01,4,1,f +5255,455p01,2,1,f +5255,604c01,4,1,f +5255,ftpineh,2,2,f +5258,298c02,0,2,f +5258,3003,14,1,f +5258,3004,14,1,f +5258,3005,14,3,f +5258,3006,14,1,f +5258,3009,14,1,f +5258,3020,14,2,f +5258,3021,0,1,f +5258,3022,14,1,f +5258,3023,14,4,f +5258,3024,36,1,f +5258,3024,14,1,f +5258,3024,47,2,f +5258,3034,14,2,f +5258,3037,14,1,f +5258,3039,14,1,f +5258,3040b,14,4,f +5258,3461,0,1,f +5258,3462,14,1,f +5258,3475b,14,2,f +5258,3480,0,1,f +5258,3481,14,1,f +5258,3623,14,2,f +5258,3626apr0001,14,2,f +5258,3660,14,1,f +5258,3676,14,2,f +5258,3710,14,2,f +5258,3747a,14,1,f +5258,3795,14,1,f +5258,3821,14,1,f +5258,3822,14,1,f +5258,3823,41,1,f +5258,3840,14,1,f +5258,3842b,15,2,f +5258,4070,14,1,f +5258,4079,0,1,f +5258,4208,0,1,f +5258,4209,14,1,f +5258,4213,14,1,f +5258,4214,14,1,f +5258,4477,0,6,f +5258,4477,14,2,f +5258,4590,0,1,f +5258,4854,14,2,f +5258,4855,14,1,f +5258,4856a,14,1,f +5258,4858,14,1,f +5258,4859,14,1,f +5258,4862,41,2,f +5258,4863,14,1,f +5258,4864a,14,1,f +5258,4873,0,2,f +5258,56823,0,1,f +5258,6697stk01,9999,1,f +5258,970c00,1,2,f +5258,973p26c01,1,2,f +5259,3700,1,4,f +5259,3701,1,4,f +5259,3702,1,4,f +5259,3709,1,2,f +5259,3738,1,2,f +5259,3894,1,4,f +5261,122c01,7,2,f +5261,122c01,0,2,f +5261,2731,7,1,f +5261,3001,0,1,f +5261,3003,0,3,f +5261,3003,14,1,f +5261,3004,0,5,f +5261,3004,14,2,f +5261,3004,4,8,f +5261,3004,15,3,f +5261,3005,0,10,f +5261,3005,4,14,f +5261,3005,14,2,f +5261,3008,0,2,f +5261,3009,4,6,f +5261,3010,0,1,f +5261,3010,4,4,f +5261,3010,15,6,f +5261,3020,4,2,f +5261,3020,14,2,f +5261,3020,7,2,f +5261,3022,0,10,f +5261,3023,14,3,f +5261,3023,7,4,f +5261,3023,4,3,f +5261,3023,0,21,f +5261,3024,4,2,f +5261,3024,0,2,f +5261,3024,36,2,f +5261,3027,0,3,f +5261,3029,7,1,f +5261,3031,0,2,f +5261,3032,7,6,f +5261,3034,0,1,f +5261,3037,0,3,f +5261,3038,0,4,f +5261,3039,0,2,f +5261,3039,14,1,f +5261,3040b,0,6,f +5261,3048c,0,16,f +5261,3058b,4,1,f +5261,3068b,0,2,f +5261,3068b,7,3,f +5261,3081cc01,0,2,f +5261,3185,0,2,f +5261,3228b,7,4,f +5261,3229b,7,16,f +5261,3230b,7,16,f +5261,3241,7,15,f +5261,3242,7,2,f +5261,3297,7,8,f +5261,3298,0,2,f +5261,3460,14,2,f +5261,3622,15,2,f +5261,3623,14,2,f +5261,3623,4,2,f +5261,3624,4,1,f +5261,3626apr0001,14,2,f +5261,3633,0,6,f +5261,3641,0,6,f +5261,3660,0,2,f +5261,3665,0,26,f +5261,3665,14,4,f +5261,3666,4,4,f +5261,3666,0,15,f +5261,3666,14,6,f +5261,3700,0,1,f +5261,3710,14,6,f +5261,3710,7,12,f +5261,3710,4,3,f +5261,3710,0,12,f +5261,3747b,4,4,f +5261,3794a,0,8,f +5261,3795,4,4,f +5261,3795,0,10,f +5261,3823,47,1,f +5261,3829c01,14,1,f +5261,3829c01,4,1,f +5261,3832,0,3,f +5261,3833,4,1,f +5261,3853,15,1,f +5261,3856,15,2,f +5261,3941,1,12,f +5261,3941,15,4,f +5261,3941,0,2,f +5261,3959,0,2,f +5261,4022,0,6,f +5261,4022,4,2,f +5261,4023,0,8,f +5261,4032a,4,1,f +5261,4032a,0,2,f +5261,4070,0,6,f +5261,4070,14,4,f +5261,4079,7,2,f +5261,4081a,0,2,f +5261,4083,0,1,f +5261,4084,0,2,f +5261,4150,0,2,f +5261,4162,0,4,f +5261,4166,8,36,f +5261,4175,4,2,f +5261,4180c01,0,6,f +5261,4181,0,1,f +5261,4182,0,1,f +5261,4183,47,2,f +5261,4213,0,1,f +5261,4214,0,1,f +5261,4275a,7,4,f +5261,4276a,7,4,f +5261,4276a,0,2,f +5261,4509,0,1,f +5261,4510,7,4,f +5261,4510,0,4,f +5261,4511,4,4,f +5261,4518ac01,0,1,f +5261,458,7,6,f +5261,501b,4,1,f +5261,502,7,4,f +5261,5102c15,0,1,f +5261,6141,36,2,f +5261,6141,46,2,f +5261,6141,47,5,f +5261,73090a,0,2,f +5261,73092,0,8,f +5261,867,4,2,f +5261,970c00,1,2,f +5261,973p26c01,1,2,f +5261,x461b,4,2,f +5262,10p0b,2,1,f +5262,29,15,1,f +5262,3001a,1,1,f +5262,3002a,0,2,f +5262,3003,0,7,f +5262,3004,14,23,f +5262,3004,4,2,f +5262,3004,0,1,f +5262,3004,1,4,f +5262,3005,15,2,f +5262,3005,4,6,f +5262,3005,14,18,f +5262,3008,14,4,f +5262,3009,14,14,f +5262,3010,14,26,f +5262,3010,1,2,f +5262,3010pb035u,1,1,f +5262,3021,0,1,f +5262,3022,1,2,f +5262,3022,4,2,f +5262,3023,0,2,f +5262,3031,1,1,f +5262,3035,1,1,f +5262,3036,1,1,f +5262,3037,47,1,f +5262,3062a,4,2,f +5262,3062a,1,2,f +5262,3068b,15,27,f +5262,3081cc01,15,1,f +5262,3137c01,0,2,f +5262,3139,0,4,f +5262,3144,79,1,f +5262,3185,4,11,f +5262,3186,4,2,f +5262,3187,4,2,f +5262,3297,1,14,f +5262,3298,1,5,f +5262,3299,1,1,f +5262,3300,1,2,f +5262,3308,14,2,f +5262,3471,2,1,f +5262,3579,14,1,f +5262,3581,14,2,f +5262,3582,1,2,f +5262,453cc01,15,1,f +5262,604c01,15,1,f +5262,646,15,1,f +5262,7930,15,1,f +5263,2340,15,2,f +5263,2412b,1,4,f +5263,2446,15,1,f +5263,2450,0,2,f +5263,2458,8,2,f +5263,3001,15,4,f +5263,3003,1,2,f +5263,3004,15,6,f +5263,3009,15,2,f +5263,3010,15,3,f +5263,3020,1,2,f +5263,3022,0,2,f +5263,3023,8,2,f +5263,30237a,8,2,f +5263,3035,7,1,f +5263,3039,15,4,f +5263,3039pr0005,15,1,f +5263,3040b,15,2,f +5263,3062b,0,4,f +5263,3403c01,0,1,f +5263,3626bp69,14,1,f +5263,3665,0,2,f +5263,3700,1,2,f +5263,3710,0,2,f +5263,3747b,0,1,f +5263,3795,1,1,f +5263,3829c01,0,1,f +5263,3937,0,2,f +5263,3938,15,2,f +5263,3956,0,1,f +5263,3957a,15,1,f +5263,3960,0,1,f +5263,3962b,8,1,f +5263,4070,8,2,f +5263,4485,1,1,f +5263,4522,0,1,f +5263,4589,1,2,f +5263,4740,57,2,f +5263,6106,7,2,f +5263,6118,0,4,f +5263,6152,41,1,f +5263,6153a,15,1,f +5263,6232,7,2,f +5263,6249,7,1,f +5263,769,334,1,f +5263,970x026,15,1,f +5263,973px176c01,15,1,f +5263,b3059,9999,1,f +5266,27bc01,4,1,f +5266,29bc01,4,1,f +5266,3001a,47,4,f +5266,3001a,4,42,f +5266,3001a,15,38,f +5266,3002a,15,17,f +5266,3002a,4,18,f +5266,3003,15,18,f +5266,3003,47,2,f +5266,3003,4,20,f +5266,3005,4,4,f +5266,3005,15,4,f +5266,3006,4,2,f +5266,3006,15,2,f +5266,3007,4,2,f +5266,3007,15,2,f +5266,3008apb07,15,1,f +5266,3008apb14,15,1,f +5266,3009apb26,15,1,f +5266,3009apb40,15,1,f +5266,3035a,15,2,f +5266,3062c,4,4,f +5266,3062c,15,4,f +5266,3062c,1,4,f +5266,3065,4,15,f +5266,3065,15,15,f +5266,3065,47,5,f +5266,3081bc01,4,1,f +5266,3087bc01,4,1,f +5266,31bc01,4,1,f +5266,32bc01,4,1,f +5266,453bc01,4,1,f +5266,604c01,4,1,f +5266,645bc01,4,1,f +5266,646bc01,4,1,f +5266,700ex,7,2,f +5266,702,15,1,f +5266,702,4,1,f +5266,ftcyp1,2,1,f +5266,ftelm,2,1,f +5268,18855,323,1,f +5268,20596,226,1,f +5268,26556,14,1,f +5268,27985,212,1,f +5268,3626cpr2030,14,1,f +5268,88646,0,1,f +5268,970c00,73,1,f +5268,973pr3541c01,31,1,f +5270,11816pr0005,78,1,f +5270,2412b,14,5,f +5270,2412b,320,4,f +5270,2412b,71,2,f +5270,2431,15,1,f +5270,2431,14,3,f +5270,2436,71,1,f +5270,2508,0,1,f +5270,2540,15,1,f +5270,2571,322,4,f +5270,2877,14,4,f +5270,2921,70,2,f +5270,3003,320,1,f +5270,3004,29,1,f +5270,3004,15,5,f +5270,3008,15,2,f +5270,3010,15,4,f +5270,30150,14,1,f +5270,30165,15,1,f +5270,3020,15,2,f +5270,3022,15,2,f +5270,3023,320,7,f +5270,3024,182,2,f +5270,3024,36,4,f +5270,3031,71,2,f +5270,3034,29,2,f +5270,3034,19,1,f +5270,3034,71,1,f +5270,30357,29,4,f +5270,30414,14,1,f +5270,3045,2,1,f +5270,3062b,46,1,f +5270,3063b,320,2,f +5270,3069b,14,4,f +5270,3070b,27,1,t +5270,3070b,15,1,t +5270,3070b,15,4,f +5270,3070b,27,4,f +5270,3298,320,3,f +5270,33051,10,1,f +5270,33172,25,1,f +5270,33183,10,1,t +5270,33183,10,1,f +5270,33291,5,1,t +5270,33291,5,5,f +5270,3460,15,3,f +5270,3665,320,8,f +5270,3666,320,4,f +5270,3666,19,1,f +5270,3710,320,2,f +5270,3710,0,5,f +5270,3710,29,2,f +5270,3741,2,1,f +5270,3741,2,1,t +5270,3795,320,2,f +5270,3795,15,1,f +5270,3829c01,14,1,f +5270,3832,15,1,f +5270,3958,27,2,f +5270,4081b,14,2,f +5270,4176,47,1,f +5270,4286,29,2,f +5270,4488,0,8,f +5270,4589,71,2,f +5270,4738a,19,1,f +5270,47457,14,1,f +5270,50745,320,4,f +5270,50950,320,2,f +5270,52031,29,1,f +5270,52501,320,3,f +5270,54200,46,2,f +5270,54200,15,2,f +5270,54200,15,1,t +5270,54200,36,1,t +5270,54200,36,2,f +5270,54200,320,4,f +5270,54200,46,1,t +5270,54200,320,1,t +5270,6014a,15,8,f +5270,6019,0,1,f +5270,60478,71,2,f +5270,6059,322,2,f +5270,60700,0,8,f +5270,6140,15,1,f +5270,6141,47,2,t +5270,6141,70,1,t +5270,6141,47,3,f +5270,6141,70,1,f +5270,6180,29,1,f +5270,63868,71,2,f +5270,85984,15,2,f +5270,87580,28,1,f +5270,92254,0,1,f +5270,92456pr0011c01,78,1,f +5270,92593,15,1,f +5270,92821pr0002c01,15,1,f +5270,93085pr02,15,1,f +5270,93086,30,1,f +5270,93087,0,1,f +5270,93095,14,2,f +5270,94717,322,4,f +5270,94718,322,1,f +5270,94719,322,1,f +5270,94720,322,2,f +5270,94721,322,1,f +5270,94722,322,1,f +5270,94723,322,1,f +5270,94724,322,1,f +5270,94725,322,4,f +5270,98263,71,1,f +5270,98283,28,3,f +5270,98560,28,2,f +5273,15504pr0001,191,1,f +5273,20592pr0001,484,1,f +5273,3626cpr1733,14,1,f +5273,88646,0,1,f +5273,88704,0,1,f +5273,970c00pr0916,191,1,f +5273,973pr3117c01,191,1,f +5274,10247,0,3,f +5274,10288,308,2,f +5274,11089,0,2,f +5274,11089,71,1,f +5274,11090,0,2,f +5274,11097,297,1,f +5274,11098,179,1,f +5274,11100,15,2,f +5274,11106,179,1,f +5274,11127,297,1,f +5274,11127,41,1,f +5274,11215,15,1,f +5274,11215,0,1,f +5274,11476,71,1,f +5274,11477,15,2,f +5274,11477,308,2,f +5274,11478,0,2,f +5274,12549pr0001,15,1,f +5274,12825,15,3,f +5274,12825,72,2,f +5274,14682,71,1,f +5274,15064,308,6,f +5274,15067pr0001,71,1,f +5274,15068,15,1,f +5274,15071,0,1,f +5274,15464pr0003,0,1,f +5274,15573,15,2,f +5274,16577,72,1,f +5274,2419,0,2,f +5274,2420,0,4,f +5274,2436,15,3,f +5274,2456,72,4,f +5274,2569,35,1,t +5274,2569,35,2,f +5274,2780,0,2,t +5274,2780,0,7,f +5274,30000,71,1,f +5274,3001,71,1,f +5274,30031,72,1,f +5274,3004,72,4,f +5274,30136,71,1,f +5274,30153,36,6,f +5274,30157,72,1,f +5274,3020,0,1,f +5274,3020,71,2,f +5274,3020,326,2,f +5274,3021,72,1,f +5274,3022,15,2,f +5274,30229,72,1,f +5274,3023,326,3,f +5274,3023,71,1,f +5274,3023,33,1,f +5274,30236,72,1,f +5274,30238,4,1,f +5274,30238,0,3,f +5274,30286,308,1,f +5274,3029,72,1,f +5274,3034,0,1,f +5274,30342,308,1,f +5274,3035,72,2,f +5274,30374,35,2,f +5274,3040b,72,8,f +5274,30540,0,2,f +5274,30552,72,2,f +5274,30602,15,1,f +5274,3062b,41,1,f +5274,3062b,72,2,f +5274,3062b,27,9,f +5274,3068b,71,1,f +5274,32013,72,3,f +5274,32016,0,2,f +5274,32054,0,2,f +5274,32062,4,6,f +5274,32064a,71,1,f +5274,32064a,72,2,f +5274,32123b,71,1,t +5274,32123b,71,5,f +5274,32184,0,1,f +5274,3245c,72,2,f +5274,32523,15,2,f +5274,32525,72,2,f +5274,32530,72,1,f +5274,3460,308,1,f +5274,3622,0,2,f +5274,3623,72,2,f +5274,3626cpr1124,212,1,f +5274,3626cpr1284,71,1,f +5274,3626cpr1359,0,1,f +5274,3660,72,1,f +5274,3666,0,2,f +5274,3666,71,2,f +5274,3673,71,2,t +5274,3673,71,3,f +5274,3685,72,2,f +5274,3700,71,7,f +5274,3701,72,4,f +5274,3707,0,1,f +5274,3710,0,1,f +5274,3713,71,1,t +5274,3713,71,1,f +5274,3795,71,1,f +5274,3941,0,1,f +5274,4032a,308,1,f +5274,41239,0,1,f +5274,4150,326,5,f +5274,4162,0,1,f +5274,41677,15,1,f +5274,41747,0,1,f +5274,41748,0,1,f +5274,4274,71,1,t +5274,4274,71,4,f +5274,4282,0,1,f +5274,4286,0,2,f +5274,43093,1,3,f +5274,43722,15,1,f +5274,43722,27,1,f +5274,43723,27,1,f +5274,43723,15,1,f +5274,4460b,0,2,f +5274,44728,72,5,f +5274,4519,71,1,f +5274,4733,72,1,f +5274,4740,33,1,f +5274,4740pr0003,35,2,f +5274,47847,72,2,f +5274,4865b,71,2,f +5274,48729b,72,2,t +5274,48729b,72,4,f +5274,48989,71,1,f +5274,51739,27,4,f +5274,51739,0,1,f +5274,53451,179,2,f +5274,53451,179,1,t +5274,53451,27,2,t +5274,53451,27,16,f +5274,53586,179,2,f +5274,54200,326,4,f +5274,54200,326,2,t +5274,55013,72,1,f +5274,55981,71,1,f +5274,56823c100,15,1,f +5274,59900,71,1,f +5274,59900,35,7,f +5274,60475a,71,1,f +5274,60478,0,2,f +5274,60481,326,4,f +5274,60483,72,1,f +5274,60897,71,4,f +5274,61184,71,3,f +5274,6141,27,2,t +5274,6141,0,1,t +5274,6141,15,2,f +5274,6141,297,1,t +5274,6141,27,9,f +5274,6141,297,4,f +5274,6141,0,2,f +5274,6141,15,1,t +5274,61510,71,1,f +5274,6232,72,2,f +5274,63868,0,2,f +5274,63965,297,1,f +5274,64711,72,2,f +5274,6541,72,4,f +5274,6553,72,2,f +5274,6587,28,1,f +5274,6636,326,2,f +5274,74698,0,1,f +5274,75937,0,1,f +5274,76768,0,2,f +5274,76768,72,2,f +5274,85984,72,1,f +5274,85984,0,3,f +5274,87079,0,5,f +5274,87083,72,1,f +5274,87087,0,2,f +5274,87580,27,1,f +5274,87747,297,1,t +5274,87747,297,2,f +5274,87846,0,3,f +5274,88072,72,2,f +5274,88289,308,1,f +5274,90981,15,2,f +5274,92280,0,2,f +5274,92402,0,1,f +5274,92690,297,1,f +5274,92946,0,2,f +5274,92946,72,4,f +5274,92947,0,1,f +5274,92950,72,1,f +5274,93606,0,2,f +5274,970c00pr0565,71,1,f +5274,970c00pr0568,15,1,f +5274,973pr0650c01,71,1,f +5274,973pr2470c01,71,1,f +5274,973pr2572c01,0,1,f +5274,98138,326,2,t +5274,98138,41,3,f +5274,98138,326,4,f +5274,98138,41,2,t +5274,98139,297,1,t +5274,98139,297,1,f +5274,98313,0,8,f +5274,98585,41,2,f +5274,99207,71,4,f +5274,99780,72,1,f +5274,99781,71,1,f +5275,10907,320,1,f +5275,10908pr0001,320,1,f +5275,10909,297,1,f +5275,11476,15,2,f +5275,12622,4,1,f +5275,2412b,297,2,f +5275,2412b,320,3,f +5275,2412b,179,2,f +5275,2431pr0079,320,1,f +5275,3001,0,2,f +5275,3003,72,2,f +5275,3005,33,1,f +5275,30153,33,1,f +5275,3032,0,1,f +5275,30374,36,4,f +5275,30374,41,2,f +5275,3039,320,2,f +5275,3040b,4,2,f +5275,30602,41,1,f +5275,3626cpr0937,78,1,f +5275,3626cpr0961,78,1,f +5275,3829c01,15,1,f +5275,3941,41,1,f +5275,4079b,15,1,f +5275,44728,72,2,f +5275,45677pr0003,320,1,f +5275,48336,297,2,f +5275,4871,72,1,f +5275,50231,2,1,f +5275,50950,297,2,f +5275,51739,4,1,f +5275,58176,41,2,f +5275,6014b,15,4,f +5275,6140,71,1,f +5275,87580,15,1,f +5275,87580,14,1,f +5275,87697,0,4,f +5275,93252,297,1,f +5275,93273,4,1,f +5275,970c00pr0345,72,1,f +5275,970c00pr0368,320,1,f +5275,973pr2042c01,72,1,f +5275,973pr2046c01,320,1,f +5276,13608,179,1,f +5276,2420,28,1,f +5276,3005,28,1,f +5276,42610,71,1,f +5276,4733,72,1,f +5276,54200,70,1,t +5276,54200,70,2,f +5276,58247,0,1,f +5276,59900,70,1,f +5276,6141,42,1,f +5276,6141,42,1,t +5278,3626bpr0832,14,1,f +5278,64648,378,1,f +5278,88646,0,1,f +5278,93222,70,1,f +5278,93229,0,1,f +5278,95678pr0001,19,1,f +5278,970c00pr0246,28,1,f +5278,973pr1829c01,28,1,f +5280,2723,294,2,f +5280,2780,0,4,f +5280,2780,0,1,t +5280,2905,4,2,f +5280,2905,135,2,f +5280,2905,0,2,f +5280,32013,0,2,f +5280,32015,0,2,f +5280,32017,4,4,f +5280,32039,0,1,f +5280,32062,0,3,f +5280,32065,0,2,f +5280,32073,71,5,f +5280,32123b,71,1,t +5280,32123b,71,6,f +5280,32138,0,1,f +5280,32140,148,2,f +5280,32271,0,2,f +5280,32278,0,2,f +5280,32316,0,2,f +5280,32449,0,2,f +5280,32523,4,1,f +5280,32523,0,2,f +5280,32524,4,1,f +5280,32525,0,2,f +5280,32526,4,1,f +5280,32556,71,7,f +5280,32558,4,2,f +5280,3705,0,2,f +5280,3706,0,3,f +5280,3707,0,1,f +5280,3713,71,2,t +5280,3713,4,1,t +5280,3713,71,11,f +5280,3713,4,2,f +5280,40490,0,1,f +5280,40490,4,1,f +5280,41669,294,2,f +5280,41669,135,2,f +5280,41677,4,2,f +5280,41753,72,1,f +5280,43093,1,3,f +5280,44292,71,1,f +5280,44293c01,71,1,f +5280,44309,0,1,f +5280,4519,71,5,f +5280,47298,179,2,f +5280,49423,4,1,f +5280,6536,0,1,f +5280,6558,0,8,f +5280,6628,0,2,f +5280,6629,4,1,f +5280,6632,0,4,f +5280,6632,71,2,f +5280,85544,4,2,f +5281,11062,0,1,f +5281,11203,72,1,f +5281,11455,0,2,f +5281,15462,28,1,f +5281,15573,85,3,f +5281,15573,4,1,f +5281,15712,71,2,f +5281,18394pat0001,36,8,f +5281,18654,72,1,t +5281,18654,72,1,f +5281,18663,47,1,f +5281,18677,71,4,f +5281,21019pat01,272,1,f +5281,22385,0,1,f +5281,2431,2,2,f +5281,2540,72,2,f +5281,25893,47,1,t +5281,25893,47,1,f +5281,25895,15,1,f +5281,2654,182,3,f +5281,26990pr0001,15,1,f +5281,2780,0,3,f +5281,2780,0,1,t +5281,3001,14,1,f +5281,3003,4,1,f +5281,3020,25,1,f +5281,3020,71,4,f +5281,3022,72,2,f +5281,3022,85,1,f +5281,3022,1,2,f +5281,3023,182,5,f +5281,30381,25,1,f +5281,30383,72,2,f +5281,3049c,0,1,f +5281,3068b,14,1,f +5281,3069b,15,4,f +5281,3069b,4,1,f +5281,3069b,71,6,f +5281,3070b,4,1,t +5281,3070b,4,1,f +5281,32000,71,2,f +5281,32034,0,2,f +5281,32039,0,2,f +5281,32123b,71,2,f +5281,32123b,71,1,t +5281,32187,179,1,f +5281,32316,4,1,f +5281,32449,0,1,f +5281,33183,10,1,f +5281,33183,10,1,t +5281,3460,72,1,f +5281,3623,14,4,f +5281,3626cpr0966,4,1,f +5281,3626cpr1898,25,1,f +5281,3626cpr1968,19,1,f +5281,3701,72,1,f +5281,3706,0,2,f +5281,3710,0,1,f +5281,3749,19,2,f +5281,3795,72,1,f +5281,3937,0,1,f +5281,4070,4,1,f +5281,4085c,0,2,f +5281,4150,72,2,f +5281,4162,71,1,f +5281,41677,4,4,f +5281,43093,1,2,f +5281,4345b,4,1,f +5281,4345b,1,1,f +5281,4346,47,2,f +5281,44301a,72,2,f +5281,44302a,0,5,f +5281,44309,0,1,f +5281,44567a,72,1,f +5281,44676,85,2,f +5281,44676,0,2,f +5281,4590,72,2,f +5281,4733,71,2,f +5281,4740,182,2,f +5281,4740,72,1,f +5281,47458,0,6,f +5281,49668,182,2,f +5281,50950,0,2,f +5281,53451,0,2,t +5281,53451,0,4,f +5281,55981,0,1,f +5281,56145,0,1,f +5281,58090,0,1,f +5281,59900,182,2,f +5281,59900,0,1,f +5281,6003,72,1,f +5281,60169,182,1,f +5281,61184,71,2,f +5281,6126b,182,3,f +5281,6134,71,1,f +5281,61409,0,1,f +5281,6141,34,3,f +5281,6141,46,1,t +5281,6141,34,1,t +5281,6141,36,1,t +5281,6141,46,3,f +5281,6141,36,2,f +5281,62462,179,2,f +5281,62462,179,1,t +5281,63868,0,2,f +5281,63965,0,1,f +5281,6558,1,2,f +5281,85984,0,2,f +5281,85984,1,2,f +5281,86038,25,1,f +5281,87994,0,2,f +5281,87994,0,1,t +5281,92280,4,4,f +5281,92280,71,4,f +5281,92926,72,1,f +5281,93160,15,1,t +5281,93160,15,1,f +5281,970c00,1,1,f +5281,970c00,0,1,f +5281,973pr2047c01,1,1,f +5281,973pr3449c01,25,1,f +5281,973pr3468c01,0,1,f +5281,98834,85,2,f +5281,99780,72,6,f +5281,99781,0,4,f +5284,4771,15,1,f +5284,4773,33,2,f +5284,4773,36,2,f +5285,2540,14,1,f +5285,2780,0,1,t +5285,2780,0,2,f +5285,30088,14,1,f +5285,3023,1,1,f +5285,32062,0,1,f +5285,32073,0,1,f +5285,32123b,7,4,f +5285,32165,73,1,f +5285,32166,1,2,f +5285,32168,1,1,f +5285,32171pb020,3,1,f +5285,32171pb025,14,1,f +5285,32172,73,2,f +5285,32173,1,3,f +5285,32174,73,5,f +5285,32175,1,2,f +5285,32176,73,1,f +5285,32194,1,1,f +5285,3647,1,1,f +5285,3647,1,1,t +5285,3648b,1,1,f +5285,3706,0,2,f +5285,4716,14,1,f +5285,6041,14,1,f +5285,bb145c12,14,1,f +5285,x209px2,1,1,f +5287,14pb06,15,2,f +5287,647p01,15,1,f +5287,649p01,15,1,f +5287,649pb04,15,1,f +5287,649pb08a,15,1,f +5287,649pb10,15,1,f +5287,649pb11,15,1,f +5287,7284,15,1,f +5287,81294,15,1,f +5288,2780,0,1,t +5288,2780,0,2,f +5288,30285,15,4,f +5288,30648,0,4,f +5288,32014,14,2,f +5288,32039,0,2,f +5288,32056,0,2,f +5288,32062,0,2,f +5288,32073,7,5,f +5288,32140,14,4,f +5288,32140,0,2,f +5288,32184,0,5,f +5288,32209,0,2,f +5288,32250,0,2,f +5288,32523,14,2,f +5288,32526,14,1,f +5288,3673,7,4,f +5288,3705,0,1,f +5288,3737,0,2,f +5288,41678,0,3,f +5288,41753,8,1,f +5288,4519,7,4,f +5288,6141,36,1,t +5288,6141,36,2,f +5288,6536,0,4,f +5288,6558,0,3,f +5288,6628,0,1,f +5288,6632,0,2,f +5288,71509,0,1,f +5288,71509,0,3,t +5288,75535,14,1,f +5291,2420,0,2,f +5291,2711,1,4,f +5291,2736,7,4,f +5291,2737,15,2,f +5291,2738,1,4,f +5291,2741,0,1,f +5291,3003,0,2,f +5291,3004,0,10,f +5291,3004,7,3,f +5291,3004,4,2,f +5291,3005,0,2,f +5291,3005,7,4,f +5291,3005,4,4,f +5291,3009,7,2,f +5291,3010,0,4,f +5291,3010,7,3,f +5291,3020,4,2,f +5291,3020,1,2,f +5291,3020,0,5,f +5291,3021,1,4,f +5291,3021,7,6,f +5291,3021,4,2,f +5291,3022,0,1,f +5291,3022,1,4,f +5291,3023,0,12,f +5291,3023,7,10,f +5291,3023,4,8,f +5291,3023,14,4,f +5291,3023,1,4,f +5291,3024,7,10,f +5291,3024,7,1,t +5291,3024,4,2,f +5291,3024,0,3,f +5291,3030,4,1,f +5291,3031,4,2,f +5291,3033,4,4,f +5291,3034,4,4,f +5291,3034,7,1,f +5291,3035,4,1,f +5291,3036,1,2,f +5291,3065,36,4,f +5291,3070b,0,1,t +5291,3070b,7,1,t +5291,3070b,7,2,f +5291,3070b,14,1,t +5291,3070b,0,1,f +5291,3070b,14,1,f +5291,3070bp01,14,1,t +5291,3070bp01,14,1,f +5291,3070bp02,14,1,f +5291,3070bp02,14,1,t +5291,3070bp03,14,1,t +5291,3070bp03,14,1,f +5291,32005a,0,2,f +5291,3460,7,7,f +5291,3460,4,1,f +5291,3460,0,14,f +5291,3623,1,4,f +5291,3623,4,2,f +5291,3623,0,4,f +5291,3647,7,7,f +5291,3648a,7,5,f +5291,3651,7,21,f +5291,3652,7,4,f +5291,3666,7,9,f +5291,3666,4,4,f +5291,3666,1,4,f +5291,3666,0,4,f +5291,3673,7,1,t +5291,3673,7,5,f +5291,3700,0,7,f +5291,3700,4,6,f +5291,3700,7,9,f +5291,3700,1,4,f +5291,3701,4,28,f +5291,3701,0,14,f +5291,3701,7,11,f +5291,3701,1,8,f +5291,3702,7,4,f +5291,3702,0,8,f +5291,3702,4,8,f +5291,3703,4,11,f +5291,3703,7,12,f +5291,3703,0,1,f +5291,3704,0,6,f +5291,3705,0,10,f +5291,3706,0,17,f +5291,3707,0,7,f +5291,3708,0,7,f +5291,3710,7,12,f +5291,3710,0,12,f +5291,3710,4,21,f +5291,3710,1,8,f +5291,3713,7,1,t +5291,3713,7,59,f +5291,3737,0,10,f +5291,3739,15,4,f +5291,3740,0,4,f +5291,3743,7,3,f +5291,3749,7,8,f +5291,3795,7,4,f +5291,3795,4,1,f +5291,3832,4,1,f +5291,3832,0,4,f +5291,3832,7,1,f +5291,3894,7,16,f +5291,3894,0,1,f +5291,3894,1,14,f +5291,3894,4,4,f +5291,3895,4,4,f +5291,3895,7,7,f +5291,3941,14,9,f +5291,3941,0,4,f +5291,3942b,14,2,f +5291,3958,1,2,f +5291,4019,7,10,f +5291,4032a,14,3,f +5291,4070,0,4,f +5291,4143,7,4,f +5291,4150,15,4,f +5291,4162,4,4,f +5291,4262,0,2,f +5291,4265a,7,42,f +5291,4265a,7,1,t +5291,4273b,7,8,f +5291,4275b,1,8,f +5291,4276b,1,4,f +5291,4282,4,3,f +5291,4459,0,113,f +5291,4477,4,2,f +5291,4477,7,2,f +5291,4477,0,3,f +5291,4519,0,12,f +5291,4531,1,4,f +5291,4589,4,1,f +5291,4589,1,1,f +5291,4716,0,1,f +5291,73071,7,1,f +5291,73129,7,8,f +5291,9244,7,8,f +5292,2412b,80,2,f +5292,2431,71,1,f +5292,2436,0,1,f +5292,3001,4,2,f +5292,3002,0,1,f +5292,3002,4,1,f +5292,3003,4,1,f +5292,3020,0,1,f +5292,3020,4,1,f +5292,3021,72,1,f +5292,3021,4,1,f +5292,3022,72,1,f +5292,3023,4,1,f +5292,32028,0,2,f +5292,3623,4,2,f +5292,3794a,4,6,f +5292,3795,0,1,f +5292,3795,72,1,f +5292,3957a,80,2,f +5292,4032a,72,1,f +5292,4085c,4,2,f +5292,41862,0,1,f +5292,44728,4,1,f +5292,50944pr0001,0,6,f +5292,50947,4,2,f +5292,50950,4,3,f +5292,50951,0,6,f +5292,6157,0,3,f +5293,2654,0,1,f +5293,3004,15,2,f +5293,30173a,297,1,f +5293,3022,15,1,f +5293,30374,297,1,f +5293,3626bpr0748,14,1,f +5293,4630068,9999,1,f +5293,4630314,9999,1,f +5293,4630317,9999,1,f +5293,4630321,9999,1,f +5293,4642684,9999,1,f +5293,53451,297,1,f +5293,63965,297,1,f +5293,92338,297,1,f +5293,92547pr0016,143,1,f +5293,93059,19,1,f +5293,93069,15,1,f +5293,970c00pr0238,0,1,f +5293,973pr1806c01,0,1,f +5294,2412b,4,2,f +5294,2412b,7,3,f +5294,2413,15,2,f +5294,2419,15,1,f +5294,2421,0,2,f +5294,2431,0,1,f +5294,2432,15,1,f +5294,2446,15,1,f +5294,2447,33,1,f +5294,2877,0,2,f +5294,3001,0,2,f +5294,3002,4,1,f +5294,30027a,15,4,f +5294,30028,0,4,f +5294,3003,4,1,f +5294,3004,7,1,f +5294,3022,0,1,f +5294,3023,4,1,f +5294,3024,34,2,f +5294,3024,36,4,f +5294,3024,46,4,f +5294,3034,15,1,f +5294,3035,4,1,f +5294,30372,33,1,f +5294,3039pr0005,15,1,f +5294,3068b,0,1,f +5294,3475a,0,2,f +5294,3626bp05,14,1,f +5294,3660,0,2,f +5294,3666,0,2,f +5294,3710,4,2,f +5294,3747b,0,1,f +5294,3795,7,1,f +5294,3829c01,15,1,f +5294,3832,4,1,f +5294,3839b,7,2,f +5294,3900,15,2,f +5294,3962b,8,1,f +5294,4070,15,2,f +5294,4083,4,1,f +5294,4085c,15,2,f +5294,4287,0,2,f +5294,4485,1,1,f +5294,4488,0,2,f +5294,4589,46,1,f +5294,4854,0,1,f +5294,4855,0,2,f +5294,4858,0,1,f +5294,4859,4,2,f +5294,4865a,0,2,f +5294,4870c02,7,3,f +5294,4871,0,1,f +5294,6019,0,2,f +5294,6141,46,2,f +5294,6141,46,1,t +5294,6153a,0,1,f +5294,6157,0,2,f +5294,6231,0,2,f +5294,6238,33,1,f +5294,6239,0,1,f +5294,63965,15,1,f +5294,76385,0,2,f +5294,970c00,1,1,f +5294,970c00,7,1,f +5294,973pb0252c01,7,1,f +5294,973pr1156c01,1,1,f +5295,16709pat01,321,1,f +5295,16726pr0001,14,1,f +5295,88646,0,1,f +5295,93220pr0002,484,1,f +5295,973pr2615c01,322,1,f +5297,3034,15,1,t +5297,3034,15,9,f +5297,3229a,1,8,f +5297,3229a,1,1,t +5297,3230a,1,8,f +5297,3230a,1,1,t +5299,11211,71,2,f +5299,11476,71,1,f +5299,13747pr0001,4,1,f +5299,14413,0,2,f +5299,18759,72,2,f +5299,2343,71,1,f +5299,2417,288,1,f +5299,2431,71,2,f +5299,2446,179,1,f +5299,2456,72,5,f +5299,2460,72,1,f +5299,2476a,28,1,f +5299,2566,0,1,f +5299,2586pr0008,71,1,f +5299,2586pr0009,71,1,f +5299,2587pr0032,179,1,f +5299,2594,71,1,f +5299,2594,71,1,t +5299,2639,72,4,f +5299,2743,72,4,f +5299,3001,71,1,f +5299,3003,72,1,f +5299,3004,4,2,f +5299,30044,70,2,f +5299,30045,0,2,f +5299,3005,0,2,f +5299,3010,0,3,f +5299,30136,70,4,f +5299,30137,70,3,f +5299,30176,2,2,f +5299,3022,0,1,f +5299,3023,70,9,f +5299,3023,19,4,f +5299,30237a,72,1,f +5299,30238,0,1,f +5299,30275,70,1,f +5299,3034,72,1,f +5299,30357,70,2,f +5299,3036,72,1,f +5299,30383,72,4,f +5299,30385,36,1,f +5299,3040b,72,3,f +5299,3048c,4,10,f +5299,3048c,297,2,f +5299,30526,72,2,f +5299,30553,0,4,f +5299,30565,2,1,f +5299,3062b,36,1,f +5299,3062b,34,1,f +5299,3062b,4,6,f +5299,3062b,57,2,f +5299,3062b,0,10,f +5299,3069b,28,4,f +5299,32000,71,2,f +5299,32054,71,2,f +5299,32059,72,2,f +5299,32064a,71,2,f +5299,32064a,0,5,f +5299,32123b,71,2,f +5299,32123b,71,1,t +5299,32530,0,1,f +5299,3308,72,3,f +5299,33183,10,1,f +5299,33183,10,1,t +5299,33322,297,1,t +5299,33322,297,1,f +5299,3622,71,3,f +5299,3623,70,1,f +5299,3626bpr0499,14,1,f +5299,3626cpr0500,14,1,f +5299,3626cpr1225,14,1,f +5299,3626cpr1226,14,1,f +5299,3626cpr1234,14,1,f +5299,3659,0,5,f +5299,3660,0,4,f +5299,3665,71,2,f +5299,3666,72,1,f +5299,3673,71,5,f +5299,3673,71,2,t +5299,3678b,70,2,f +5299,3678bpr0037,15,1,f +5299,3700,70,3,f +5299,3705,0,1,f +5299,3710,0,7,f +5299,3749,19,4,f +5299,3844,80,1,f +5299,3846pr0004b,71,1,f +5299,3849,0,2,f +5299,3849,179,1,f +5299,3941,70,1,f +5299,3957b,0,1,f +5299,40234,71,1,f +5299,40243,28,3,f +5299,40243,72,5,f +5299,40244,19,1,f +5299,4032a,1,4,f +5299,40378,4,1,f +5299,40395,4,1,f +5299,4070,72,8,f +5299,4085c,4,2,f +5299,4151b,72,1,f +5299,41539,2,1,f +5299,4274,1,1,t +5299,4274,1,1,f +5299,4287,71,6,f +5299,43898,72,1,f +5299,4460b,72,7,f +5299,4490,71,1,f +5299,4495b,297,1,f +5299,4495b,1,1,f +5299,4495b,4,2,f +5299,4497,297,2,f +5299,4497,179,1,f +5299,4623,71,1,f +5299,4738a,70,1,f +5299,4739a,70,1,f +5299,4740,0,1,f +5299,47847,72,2,f +5299,48493,0,1,f +5299,48723,72,2,f +5299,50231,4,1,f +5299,51342pat0008,0,2,f +5299,51874pat0004,4,1,f +5299,53451,15,2,f +5299,53451,15,1,t +5299,54200,14,1,t +5299,54200,297,4,f +5299,54200,297,1,t +5299,54200,71,6,f +5299,54200,71,1,t +5299,54200,14,1,f +5299,55236,288,3,f +5299,59217pat01,4,1,f +5299,59218pat01,4,1,f +5299,59224pat0004,4,1,f +5299,59225c02,4,1,f +5299,59226pr03,4,1,f +5299,59900,1,2,f +5299,59900,71,2,f +5299,60475b,72,2,f +5299,60596,0,1,f +5299,60621,148,1,f +5299,60808,72,2,f +5299,6126b,57,1,f +5299,6131pr0006,0,1,f +5299,6141,36,1,t +5299,6141,19,1,f +5299,6141,36,1,f +5299,6141,19,1,t +5299,62436pat0004,4,1,f +5299,62438pat0004,4,1,f +5299,6266,15,1,f +5299,6266,15,1,t +5299,62808,72,2,f +5299,64644,308,1,f +5299,64647,57,2,t +5299,64647,1,1,f +5299,64647,1,1,t +5299,64647,57,2,f +5299,75c03,70,1,f +5299,75c03,70,1,t +5299,76764,179,1,f +5299,76764,179,1,t +5299,85959pat0003,36,1,f +5299,87081,70,4,f +5299,87544,0,2,f +5299,87580,28,4,f +5299,87620,0,6,f +5299,87747,0,3,t +5299,87747,0,10,f +5299,88289,308,1,f +5299,89523,28,1,f +5299,89523,2,1,f +5299,90981,15,1,f +5299,92258,320,1,f +5299,92280,71,2,f +5299,92690,297,1,f +5299,92946,1,4,f +5299,92946,0,2,f +5299,92947,71,1,f +5299,92950,72,1,f +5299,92950,0,2,f +5299,93069,0,1,f +5299,96874,25,1,t +5299,96904,334,1,f +5299,96905,334,1,f +5299,96906,334,1,f +5299,96907,334,1,f +5299,970c00,0,1,f +5299,970c00pr0519,0,1,f +5299,970c10pr0520,72,1,f +5299,970x026,72,1,f +5299,973pr0090c01,72,1,f +5299,973pr2390c01,15,1,f +5299,973pr2392c01,72,1,f +5299,973pr2395c01,0,1,f +5299,973pr2396c01,0,1,f +5299,98138,1,1,t +5299,98138,1,2,f +5299,98138,179,1,t +5299,98138,179,2,f +5299,98138pr0014,297,1,f +5299,98138pr0014,297,1,t +5299,98283,28,5,f +5299,98370,148,1,f +5299,99563,334,1,f +5300,2340,0,2,f +5300,2432,0,2,f +5300,2432,7,2,f +5300,2433,0,1,f +5300,2433,4,2,f +5300,2436,0,1,f +5300,2446,15,2,f +5300,2447,33,1,f +5300,2465,14,2,f +5300,2569,4,2,f +5300,2584,7,1,f +5300,2585,0,1,f +5300,2610,14,2,f +5300,2654,7,3,f +5300,298c03,0,1,f +5300,30086,14,1,f +5300,30090,33,1,f +5300,30091,7,1,f +5300,30162,8,1,f +5300,30192,8,1,f +5300,30194,8,1,f +5300,3020,14,2,f +5300,3020,0,1,f +5300,3021,0,2,f +5300,3022,14,2,f +5300,3022,0,2,f +5300,3022,7,1,f +5300,30229,8,1,f +5300,3023,0,1,f +5300,3024,36,2,f +5300,3024,46,2,f +5300,3027,0,1,f +5300,3034,0,1,f +5300,3037,14,1,f +5300,3062b,4,1,f +5300,3626bp03,14,1,f +5300,3626bp04,14,1,f +5300,3626bp06,14,1,f +5300,3641,0,4,f +5300,3660,0,16,f +5300,3666,14,7,f +5300,3676,14,2,f +5300,3710,14,1,f +5300,3794a,14,2,f +5300,3794a,7,1,f +5300,3795,14,1,f +5300,3829c01,15,2,f +5300,3937,0,2,f +5300,3938,7,2,f +5300,4081b,15,2,f +5300,4085c,7,5,f +5300,4276b,0,2,f +5300,4286,14,2,f +5300,4477,0,4,f +5300,4485,0,2,f +5300,4589,34,1,f +5300,4589,36,1,f +5300,4599a,15,1,f +5300,4599a,4,1,f +5300,4600,7,2,f +5300,4623,7,2,f +5300,4624,15,4,f +5300,4740,42,1,f +5300,4855,0,2,f +5300,4856a,14,2,f +5300,4859,0,2,f +5300,4864a,0,4,f +5300,4865a,0,6,f +5300,56823,0,1,f +5300,59275,0,2,f +5300,6140,0,2,f +5300,6238,0,1,f +5300,970x026,15,3,f +5300,973p8bc01,15,1,f +5300,973px101c01,15,1,f +5300,973px79c01,15,1,f +5302,11609,191,1,f +5302,11609,191,1,t +5302,15470,29,1,f +5302,15470,29,1,t +5302,15573,15,2,f +5302,2458,4,2,f +5302,2817,0,1,f +5302,3001,1,1,f +5302,3003,4,1,f +5302,3003,19,3,f +5302,3004,84,3,f +5302,3004,1,1,f +5302,3005,14,8,f +5302,3007,4,1,f +5302,3010,1,1,f +5302,3021,70,1,f +5302,3022,70,2,f +5302,3022,15,1,f +5302,3023,15,2,f +5302,3024,14,3,f +5302,3024,14,1,t +5302,30565,15,4,f +5302,30565,70,4,f +5302,3065,47,4,f +5302,3069b,15,3,f +5302,3070b,14,2,f +5302,3070b,14,1,t +5302,32073,71,1,f +5302,32124,1,1,f +5302,3298,4,1,f +5302,3623,1,1,f +5302,3623,14,4,f +5302,3626cpr1762,14,1,f +5302,3738,4,1,f +5302,3941,1,1,f +5302,3960,15,1,f +5302,3961,70,1,f +5302,4274,1,1,t +5302,4274,1,4,f +5302,4519,71,1,f +5302,45590,0,1,f +5302,48092,84,8,f +5302,48092,19,4,f +5302,48092,15,4,f +5302,4865b,1,1,f +5302,54200,14,2,f +5302,54200,14,1,t +5302,59900,1,2,f +5302,6003,2,4,f +5302,6141,4,4,f +5302,6141,1,1,t +5302,6141,1,4,f +5302,6141,4,1,t +5302,6222,15,1,f +5302,62537pr0003a,15,1,f +5302,6254,27,2,f +5302,63864,14,2,f +5302,64647,182,1,t +5302,64647,182,2,f +5302,85861,15,4,f +5302,85861,15,1,t +5302,87580,1,1,f +5302,92946,14,2,f +5302,973pr1629c01,4,1,f +5304,10201,0,1,f +5304,14395,0,4,f +5304,15535,0,1,f +5304,15625,72,1,f +5304,15712,71,2,f +5304,18651,0,4,f +5304,21778,0,1,f +5304,2343,179,1,f +5304,2343,297,3,f +5304,2431,19,2,f +5304,2454a,19,2,f +5304,25893,47,2,f +5304,25893,47,1,t +5304,26871,4,1,f +5304,27291,47,2,f +5304,2819,71,1,f +5304,2877,70,15,f +5304,3005,19,2,f +5304,3005,320,6,f +5304,3008,4,1,f +5304,30099,0,4,f +5304,3010,19,9,f +5304,3010,320,1,f +5304,30136,70,12,f +5304,30153,36,1,f +5304,3020,0,1,f +5304,3020,70,8,f +5304,3022,0,1,f +5304,3023,70,14,f +5304,3023,19,7,f +5304,3023,0,5,f +5304,3023,15,1,f +5304,3024,70,1,t +5304,3024,19,5,f +5304,3024,19,1,t +5304,3024,70,4,f +5304,3035,70,1,f +5304,3036,28,1,f +5304,30385,45,1,f +5304,3040b,70,2,f +5304,3062b,15,2,f +5304,3062b,70,21,f +5304,3068b,19,2,f +5304,3068b,2,3,f +5304,3068b,15,1,f +5304,3068bpr0139a,19,1,f +5304,3068bpr0240,19,1,f +5304,3069b,15,4,f +5304,3069b,70,3,f +5304,3070b,70,4,f +5304,3070b,70,1,t +5304,32039,0,1,f +5304,32062,4,1,f +5304,32072,0,1,f +5304,32073,71,1,f +5304,32474,0,1,t +5304,32474,0,2,f +5304,3460,4,2,f +5304,3460,28,1,f +5304,3460,19,3,f +5304,3622,4,4,f +5304,3623,70,2,f +5304,3626cpr0895,15,1,f +5304,3626cpr1997,78,1,f +5304,3626cpr1998,78,1,f +5304,3626cpr1999,70,1,f +5304,3648b,72,1,f +5304,3666,70,5,f +5304,3701,71,1,f +5304,3710,19,2,f +5304,3878,0,1,f +5304,3894,72,2,f +5304,40378,4,4,f +5304,40379,4,8,f +5304,4070,70,6,f +5304,4070,71,2,f +5304,4162,19,3,f +5304,4274,71,4,f +5304,4274,71,3,t +5304,4738a,84,1,f +5304,4740,182,1,f +5304,4740pr0005a,47,2,f +5304,48729b,72,2,t +5304,48729b,72,3,f +5304,50304,28,2,f +5304,50305,28,3,f +5304,53451,15,1,t +5304,53451,15,2,f +5304,53451,4,1,t +5304,53451,4,2,f +5304,54200,19,3,f +5304,54200,19,1,t +5304,59349,19,2,f +5304,60474,320,1,f +5304,6141,70,16,f +5304,6141,179,2,f +5304,6141,179,1,t +5304,6141,70,1,t +5304,62462,320,4,f +5304,62808,297,2,f +5304,63965,0,2,f +5304,64647,182,2,f +5304,64647,182,1,t +5304,64798pr0120,0,1,f +5304,6541,19,9,f +5304,6636,0,1,f +5304,6636,28,4,f +5304,73983,19,2,f +5304,73983,72,4,f +5304,87087,484,3,f +5304,87580,272,6,f +5304,87580,70,5,f +5304,87580,72,3,f +5304,87580,320,6,f +5304,87747,15,2,f +5304,87747,15,1,t +5304,92338,179,1,f +5304,92438,28,1,f +5304,92950,70,2,f +5304,93273,0,2,f +5304,94925,71,4,f +5304,95228,40,1,f +5304,95228,34,1,f +5304,970c00pr1100,85,1,f +5304,970c00pr1101,72,1,f +5304,970c00pr1103,0,1,f +5304,973pr3508c01,297,1,f +5304,973pr3509c01,288,1,f +5304,973pr3511c01,272,1,f +5304,98137,179,4,f +5304,98138pr0058,70,4,f +5304,98138pr0058,70,1,t +5304,99784,47,2,f +5306,30176,2,1,f +5306,3021,2,1,f +5306,3741,2,1,t +5306,3741,2,1,f +5306,3742,4,1,t +5306,3742,4,3,f +5306,6141,15,1,t +5306,6141,15,2,f +5307,11153,27,2,f +5307,11458,72,2,f +5307,11593pr0001,321,1,f +5307,11594pr0001,326,1,f +5307,13608,179,1,f +5307,2654,71,1,f +5307,298c02,15,1,t +5307,298c02,15,1,f +5307,30136,19,1,f +5307,3020,72,5,f +5307,3022,27,2,f +5307,3023,27,4,f +5307,30407,42,2,f +5307,3068bpr0200b,72,1,f +5307,3298,72,1,f +5307,3700,72,2,f +5307,4032a,72,2,f +5307,4150pr9009,27,1,f +5307,41532,0,2,f +5307,42446,72,1,f +5307,4274,71,2,f +5307,4274,71,1,t +5307,43093,1,1,f +5307,4360,0,1,f +5307,43857,0,1,f +5307,4740,0,1,f +5307,47905,72,1,f +5307,52501,72,2,f +5307,53451,27,3,f +5307,53451,27,1,t +5307,54200,320,1,t +5307,54200,320,2,f +5307,61409,27,2,f +5307,6141,19,1,t +5307,6141,19,2,f +5307,6141,36,2,f +5307,6141,45,4,f +5307,6141,45,1,t +5307,6141,36,1,t +5307,63868,0,2,f +5307,75937,0,1,f +5307,87752,36,1,f +5307,92280,0,2,f +5307,92692,0,2,f +5307,95199,72,2,f +5307,970c00pr0458,326,1,f +5307,970c00pr0461,321,1,f +5307,973pr2255c01,326,1,f +5307,973pr2258c01,71,1,f +5307,98141,179,4,f +5307,98313,320,7,f +5307,99207,71,4,f +5308,30370ps1,15,1,f +5308,30408pr0002,15,1,f +5308,3626b,78,1,f +5308,3626bpr0449,78,1,f +5308,3626bpr0490,78,1,f +5308,57899,0,1,f +5308,57900,72,1,f +5308,58247,0,2,f +5308,74188,72,3,f +5308,970c00,71,1,f +5308,970x026,15,1,f +5308,970x199,25,1,f +5308,973pr0520c01,15,1,f +5308,973pr1301c01,25,1,f +5308,973pr1306c01,71,1,f +5309,2470,6,2,f +5309,3020,0,2,f +5309,3062b,7,1,f +5309,3626bpx71,14,1,f +5309,3839b,1,1,f +5309,3847,8,1,f +5309,4495a,1,1,f +5309,4497,6,1,f +5309,4600,7,1,f +5309,6141,34,2,f +5309,6141,36,2,f +5309,6231,7,4,f +5309,71015,334,1,f +5309,970c09pb01,7,1,f +5309,973px118c01,7,1,f +5313,3023,2,2,f +5313,3623,2,6,f +5313,4085c,4,1,f +5314,3023,30,2,f +5314,3069bpr0130,322,1,f +5314,3665,15,1,f +5314,3700,15,2,f +5314,4740,0,1,f +5314,6141,0,1,f +5314,6141,0,1,t +5315,3003,1,1,f +5315,3021,4,2,f +5315,3022,0,1,f +5315,3062b,15,4,f +5315,3660,1,2,f +5315,3700,14,2,f +5316,2357,0,2,f +5316,2412b,4,1,f +5316,2412b,7,8,f +5316,2420,0,10,f +5316,2420,4,8,f +5316,2431,0,6,f +5316,2436,0,8,f +5316,2444,0,6,f +5316,2445,0,4,f +5316,2450,0,2,f +5316,2450,4,4,f +5316,2508,0,4,f +5316,2555,0,2,f +5316,2711,0,2,f +5316,2717,0,1,f +5316,2730,4,2,f +5316,2744,4,4,f +5316,2780,0,29,f +5316,2817,0,1,f +5316,2819,7,1,f +5316,2825,4,2,f +5316,2825,0,6,f +5316,2850a,7,6,f +5316,2851,8,6,f +5316,2852,7,6,f +5316,2853,7,2,f +5316,2854,8,3,f +5316,3005,0,2,f +5316,3021,0,2,f +5316,3022,0,5,f +5316,3023,4,10,f +5316,3023,0,12,f +5316,3024,36,2,f +5316,3024,4,3,f +5316,3024,0,4,f +5316,3032,0,2,f +5316,3034,0,1,f +5316,3040b,4,4,f +5316,3068b,4,1,f +5316,3068b,0,5,f +5316,3069b,4,2,f +5316,3069b,0,2,f +5316,3460,0,3,f +5316,3622,4,2,f +5316,3623,4,7,f +5316,3623,0,4,f +5316,3623,7,2,f +5316,3647,7,1,f +5316,3650c,7,1,f +5316,3666,4,2,f +5316,3666,0,6,f +5316,3700,0,4,f +5316,3700,4,2,f +5316,3701,4,2,f +5316,3701,0,2,f +5316,3701,7,1,f +5316,3702,4,4,f +5316,3702,0,2,f +5316,3703,4,2,f +5316,3704,0,7,f +5316,3705,0,5,f +5316,3706,0,2,f +5316,3707,0,2,f +5316,3709,4,1,f +5316,3709,0,5,f +5316,3710,0,3,f +5316,3710,4,5,f +5316,3713,7,9,f +5316,3737,0,3,f +5316,3738,7,1,f +5316,3749,7,3,f +5316,3794a,4,4,f +5316,3795,0,3,f +5316,3832,4,1,f +5316,3832,0,1,f +5316,3894,0,2,f +5316,3894,4,8,f +5316,3895,0,2,f +5316,4262,0,2,f +5316,4263,4,2,f +5316,4265b,7,10,f +5316,4274,7,16,f +5316,4287,4,1,f +5316,4477,0,3,f +5316,4519,0,2,f +5316,4623,4,2,f +5316,4697a,7,6,f +5316,5102c06,7,6,f +5316,6141,0,2,f +5316,6141,1,6,f +5316,6536,7,7,f +5316,6538a,7,1,f +5316,6541,0,2,f +5316,6558,0,1,f +5316,6571,0,4,f +5316,6572,0,4,f +5316,6573,8,1,f +5316,6575,7,1,f +5316,6587,8,2,f +5316,6589,7,3,f +5316,6594,0,4,f +5316,6595,15,4,f +5316,6642,8,1,f +5316,6644,0,2,f +5316,73983,0,4,f +5316,73983,4,8,f +5316,75c05,8,2,f +5316,flex08c06l,7,2,f +5317,2343,7,8,f +5317,2412b,7,4,f +5317,2412b,0,3,f +5317,2420,15,4,f +5317,2420,4,4,f +5317,2420,0,2,f +5317,2431,14,2,f +5317,2431,4,6,f +5317,2431,15,4,f +5317,2437,41,1,f +5317,2445,7,1,f +5317,2449,15,2,f +5317,2450,15,2,f +5317,2540,15,2,f +5317,2555,7,4,f +5317,2743,15,2,f +5317,2744,4,2,f +5317,2780,0,14,f +5317,2819,7,1,f +5317,2994,15,2,f +5317,2997,0,2,f +5317,2998,15,2,f +5317,3003,4,1,f +5317,3004,0,2,f +5317,3004,15,2,f +5317,3005,4,2,f +5317,3009,4,2,f +5317,30158,6,2,f +5317,3020,14,2,f +5317,3020,15,1,f +5317,3020,0,1,f +5317,3020,4,1,f +5317,3020,1,5,f +5317,3021,0,5,f +5317,3021,1,1,f +5317,3021,4,4,f +5317,3022,14,1,f +5317,3022,7,2,f +5317,3022,0,7,f +5317,3022,15,2,f +5317,3022,4,1,f +5317,3023,14,1,f +5317,3023,1,2,f +5317,3023,4,9,f +5317,3023,7,1,f +5317,3023,0,7,f +5317,3024,15,2,f +5317,3030,7,1,f +5317,3034,14,1,f +5317,3034,0,1,f +5317,3034,7,2,f +5317,3035,7,1,f +5317,3040b,0,2,f +5317,3040b,4,4,f +5317,3062b,4,1,f +5317,3062b,1,1,f +5317,3068b,4,2,f +5317,3069b,0,1,f +5317,3069b,4,2,f +5317,3070b,0,2,f +5317,32013,7,8,f +5317,32068,7,2,f +5317,32069,0,2,f +5317,32123b,7,4,f +5317,32124,0,2,f +5317,3298,4,1,f +5317,3460,4,1,f +5317,3622,1,2,f +5317,3623,15,2,f +5317,3623,4,4,f +5317,3647,7,1,f +5317,3660,1,2,f +5317,3660,4,1,f +5317,3665,0,2,f +5317,3665,4,1,f +5317,3665,15,2,f +5317,3666,1,2,f +5317,3666,0,2,f +5317,3684,4,1,f +5317,3700,7,2,f +5317,3700,0,8,f +5317,3700,4,4,f +5317,3700,14,2,f +5317,3701,1,2,f +5317,3702,1,2,f +5317,3703,4,2,f +5317,3705,0,2,f +5317,3706,0,2,f +5317,3707,0,4,f +5317,3708,0,2,f +5317,3709,4,2,f +5317,3710,0,2,f +5317,3710,15,3,f +5317,3710,7,9,f +5317,3713,7,8,f +5317,3737,0,2,f +5317,3749,7,7,f +5317,3794a,4,1,f +5317,3794a,1,2,f +5317,3795,4,4,f +5317,3795,15,1,f +5317,3795,0,1,f +5317,3795,7,1,f +5317,3832,15,1,f +5317,3832,0,1,f +5317,3894,4,2,f +5317,3933,0,1,f +5317,3934,0,1,f +5317,3937,1,4,f +5317,3941,7,1,f +5317,3957a,1,2,f +5317,3957a,7,2,f +5317,4085c,7,4,f +5317,4150,0,1,f +5317,4185,7,3,f +5317,4275b,14,2,f +5317,4276b,14,2,f +5317,4286,15,2,f +5317,4286,4,2,f +5317,4349,7,2,f +5317,4477,15,1,f +5317,4477,7,2,f +5317,4854,0,1,f +5317,4859,15,2,f +5317,4859,4,1,f +5317,4865a,0,6,f +5317,6005,4,2,f +5317,6005,0,4,f +5317,6081,4,2,f +5317,6091,4,12,f +5317,6091,0,2,f +5317,6134,4,4,f +5317,6141,0,9,f +5317,6141,4,3,f +5317,6178,4,1,f +5317,6231,4,2,f +5317,6538a,7,4,f +5317,6541,4,4,f +5317,6541,7,4,f +5317,6541,0,1,f +5317,6558,0,2,f +5317,6564,0,3,f +5317,6565,0,3,f +5317,6578,0,2,f +5317,6589,7,3,f +5317,6630,7,1,f +5317,85544,0,2,f +5320,33011,20,1,f +5320,33014,14,2,f +5320,33048,366,1,f +5320,33051,2,1,f +5320,33051,10,1,f +5320,33057,366,2,f +5320,33061,47,2,f +5320,4342,366,1,f +5320,6945,20,1,f +5320,6992,20,1,f +5320,x14,14,1,f +5321,11476,15,1,f +5321,15573,71,2,f +5321,15573,72,2,f +5321,15573,28,2,f +5321,15573,70,1,f +5321,18787,72,1,f +5321,18787,297,1,f +5321,18787,179,1,f +5321,18787,322,1,f +5321,18787,70,1,f +5321,18792,70,3,f +5321,19723,297,1,f +5321,19723,179,1,f +5321,19729,308,1,f +5321,19729pr0001,308,1,f +5321,19729pr0002,15,3,f +5321,19730,179,1,f +5321,19730,297,1,f +5321,2431,72,6,f +5321,2431,71,3,f +5321,2456,70,2,f +5321,2456,71,9,f +5321,2456,2,2,f +5321,2465,71,1,f +5321,2540,72,6,f +5321,26884,484,1,f +5321,26965,4,4,f +5321,2825,0,2,f +5321,2921,71,3,f +5321,3001,0,1,f +5321,3001,72,13,f +5321,3001,70,20,f +5321,3001,71,40,f +5321,3001,288,2,f +5321,3002,25,4,f +5321,3003,33,3,f +5321,3003,70,64,f +5321,3003,19,12,f +5321,3003,72,17,f +5321,3003,71,45,f +5321,3003,0,9,f +5321,3003,34,5,f +5321,3004,71,39,f +5321,3004,288,2,f +5321,3004,70,1,f +5321,3004pr0014,84,2,f +5321,3005,71,6,f +5321,3005,72,4,f +5321,3005,0,8,f +5321,3005,70,2,f +5321,3005,84,4,f +5321,3006,71,1,f +5321,3007,0,15,f +5321,3007,71,2,f +5321,3010,70,2,f +5321,3010,71,2,f +5321,30137,70,4,f +5321,30145,71,14,f +5321,3020,71,8,f +5321,3020,1,1,f +5321,3020,10,2,f +5321,3020,484,1,f +5321,3021,15,2,f +5321,3021,2,2,f +5321,3022,484,3,f +5321,3022,14,2,f +5321,3022,0,1,f +5321,3022,4,1,f +5321,3022,70,2,f +5321,3022,15,4,f +5321,3022,72,8,f +5321,3022,320,4,f +5321,3023,71,2,f +5321,3023,46,6,f +5321,3023,182,3,f +5321,3023,484,2,f +5321,3023,15,3,f +5321,3023,72,26,f +5321,30237b,71,8,f +5321,3024,46,8,f +5321,3024,70,1,f +5321,3024,71,1,f +5321,3024,72,6,f +5321,3024,182,8,f +5321,3028,10,13,f +5321,3031,10,2,f +5321,3034,72,8,f +5321,3034,0,1,f +5321,3039,33,2,f +5321,3062b,27,12,f +5321,3068b,72,4,f +5321,3068bpr0236,84,1,f +5321,3069b,84,2,f +5321,3069b,72,1,f +5321,3069b,28,2,f +5321,32000,71,1,f +5321,32062,4,2,f +5321,32073,71,1,f +5321,32123b,71,1,f +5321,33051,4,1,f +5321,33172,25,1,f +5321,33183,10,1,f +5321,33183,191,2,f +5321,33291,70,4,f +5321,33291,10,3,f +5321,33291,4,4,f +5321,33291,191,2,f +5321,3460,72,4,f +5321,3623,2,4,f +5321,3666,72,2,f +5321,3700,72,4,f +5321,3700,70,1,f +5321,3710,2,3,f +5321,3710,72,9,f +5321,3710,70,4,f +5321,3749,19,2,f +5321,3795,72,4,f +5321,3795,0,2,f +5321,3830,71,1,f +5321,3830,70,1,f +5321,3830,72,1,f +5321,3831,71,1,f +5321,3831,70,1,f +5321,3831,72,1,f +5321,3937,15,1,f +5321,3938,15,1,f +5321,3958,1,3,f +5321,3958,19,6,f +5321,3958,10,1,f +5321,4032a,0,2,f +5321,4070,71,2,f +5321,41539,72,6,f +5321,41677,71,3,f +5321,4216,19,2,f +5321,4216,15,2,f +5321,4274,71,1,f +5321,44728,2,4,f +5321,4519,71,1,f +5321,4599b,71,40,f +5321,4727,10,2,f +5321,4738a,84,1,f +5321,4739a,84,1,f +5321,48336,297,4,f +5321,54200,71,1,f +5321,54200,182,6,f +5321,59900,182,3,f +5321,60115,15,3,f +5321,6020,70,2,f +5321,60475b,71,2,f +5321,60478,15,1,f +5321,60478,70,2,f +5321,60483,72,5,f +5321,60592,70,1,f +5321,61184,71,2,f +5321,6141,27,4,f +5321,6141,33,1,f +5321,6266,15,6,f +5321,64644,308,8,f +5321,6541,70,2,f +5321,6632,2,4,f +5321,85861,0,2,f +5321,85861,71,30,f +5321,87079,2,1,f +5321,87079,72,6,f +5321,87079,71,8,f +5321,87087,70,2,f +5321,87580,71,13,f +5321,87580,0,8,f +5321,87580,28,3,f +5321,87580,320,3,f +5321,87580,14,1,f +5321,87580,72,77,f +5321,87580,2,22,f +5321,93061,15,6,f +5321,95343,71,1,f +5321,95344,28,1,f +5321,96874,25,1,t +5321,970c00,297,1,f +5321,973pr2819c01,321,1,f +5321,98283,72,22,f +5322,11477,72,2,f +5322,11477,15,2,f +5322,13770,297,1,f +5322,15530,272,1,f +5322,15533,84,3,f +5322,15535,72,1,f +5322,18352,72,1,f +5322,18759,72,2,f +5322,2343,297,1,f +5322,2412b,15,1,f +5322,2412b,0,3,f +5322,2431,19,3,f +5322,2431,70,1,f +5322,2445,72,1,f +5322,2453a,70,1,f +5322,2454a,71,1,f +5322,2817,71,1,f +5322,30029,0,1,f +5322,3004,71,2,f +5322,3004,14,1,f +5322,3004,4,1,f +5322,3005,15,2,f +5322,3005,1,2,f +5322,3005,71,4,f +5322,3010,71,1,f +5322,3010,4,1,f +5322,30150,84,1,f +5322,30153,33,1,f +5322,30162,72,1,f +5322,3020,70,1,f +5322,3020,1,1,f +5322,3022,0,1,f +5322,3022,4,1,f +5322,3023,1,3,f +5322,3023,36,2,f +5322,3035,72,1,f +5322,3036,0,1,f +5322,3040b,71,6,f +5322,3062b,72,1,f +5322,3066,40,1,f +5322,3069b,33,2,f +5322,3069b,19,2,f +5322,3069bpr0100,2,1,f +5322,3070b,72,4,f +5322,3185,15,3,f +5322,32028,72,2,f +5322,32059,1,1,f +5322,32062,4,1,f +5322,3245c,15,2,f +5322,32556,19,2,f +5322,3622,71,4,f +5322,3622,15,2,f +5322,3623,71,2,f +5322,3626cpr1086,14,1,f +5322,3626cpr1145,14,1,f +5322,3626cpr1581,14,1,f +5322,3660,15,4,f +5322,3666,72,1,f +5322,3666,15,7,f +5322,3705,0,1,f +5322,3710,70,3,f +5322,3710,0,2,f +5322,3710,4,2,f +5322,3710,1,1,f +5322,3713,71,1,f +5322,3738,0,1,f +5322,3794b,4,1,f +5322,3795,71,4,f +5322,3821,4,1,f +5322,3822,4,1,f +5322,3829c01,4,1,f +5322,3829c01,14,1,f +5322,3958,15,1,f +5322,40234,71,1,f +5322,4070,15,4,f +5322,4079,70,4,f +5322,4079,14,1,f +5322,41334,0,1,f +5322,41539,72,1,f +5322,42610,71,6,f +5322,43722,15,1,f +5322,43723,15,1,f +5322,44568,15,1,f +5322,44570,72,1,f +5322,44728,14,2,f +5322,4477,1,2,f +5322,4488,71,4,f +5322,45677,4,1,f +5322,4599b,71,1,f +5322,4740,28,1,f +5322,47720,0,1,f +5322,50943,71,1,f +5322,50946,0,1,f +5322,52031,15,1,f +5322,52501,72,2,f +5322,54200,46,1,f +5322,54200,47,2,f +5322,54200,14,1,f +5322,56890,0,4,f +5322,59443,71,2,f +5322,6014b,71,4,f +5322,60219,72,1,f +5322,60478,72,2,f +5322,60479,15,2,f +5322,60592,70,1,f +5322,60596,72,1,f +5322,60614,72,2,f +5322,60623,2,1,f +5322,60806,0,1,f +5322,60897,71,2,f +5322,6091,4,2,f +5322,61072,179,1,f +5322,6141,47,1,f +5322,6141,0,1,f +5322,6141,46,1,f +5322,61482,71,1,f +5322,6179,71,1,f +5322,6231,4,2,f +5322,63965,71,2,f +5322,64567,0,1,f +5322,6636,71,1,f +5322,87087,70,1,f +5322,87580,19,1,f +5322,87580,71,1,f +5322,92081,0,1,f +5322,92280,71,4,f +5322,92409,0,6,f +5322,92583,41,1,f +5322,92585,4,1,f +5322,92586pr0001,84,2,f +5322,92593,0,1,f +5322,92946,72,2,f +5322,92950,70,2,f +5322,93160,15,1,f +5322,970c00,272,1,f +5322,970c00,72,1,f +5322,970c00,28,1,f +5322,973pr1944c01,15,1,f +5322,973pr2501c01,1,1,f +5322,973pr2503c01,0,1,f +5322,98138,36,2,f +5322,98282,72,4,f +5322,98283,84,5,f +5323,3020,14,4,f +5323,3021,14,4,f +5323,3022,14,4,f +5323,3023,14,4,f +5323,3029,14,2,f +5323,3031,14,2,f +5323,3032,14,2,f +5323,3034,14,2,f +5323,3035,14,2,f +5323,3036,14,2,f +5323,3460,14,2,f +5323,3623,14,2,f +5323,3666,14,2,f +5323,3710,14,2,f +5323,3795,14,2,f +5323,3832,14,2,f +5323,4477,14,2,f +5324,3739,7,2,f +5324,3740,0,2,f +5325,11599,35,1,f +5325,12825,71,2,f +5325,12993,326,1,f +5325,13608,179,1,f +5325,15207,321,2,f +5325,2412b,272,10,f +5325,2412b,272,1,t +5325,2419,72,1,f +5325,2444,72,2,f +5325,2447,47,1,t +5325,2447,47,1,f +5325,2540,0,1,f +5325,2780,0,15,f +5325,2780,0,2,t +5325,2921,15,2,f +5325,3002,0,1,f +5325,3004,1,1,f +5325,3010,15,2,f +5325,30162,72,2,f +5325,3020,72,1,f +5325,3020,320,1,f +5325,30228,72,1,f +5325,3023,71,10,f +5325,3034,0,2,f +5325,3038,15,2,f +5325,3039pr0013,15,1,f +5325,3040b,15,4,f +5325,30586,15,2,f +5325,3062b,321,2,f +5325,32000,71,4,f +5325,32064a,0,2,f +5325,32523,72,2,f +5325,32526,15,2,f +5325,3298,321,1,f +5325,3626cpr1157,14,1,f +5325,3660,71,1,f +5325,3700,72,3,f +5325,3710,72,8,f +5325,3747b,321,1,f +5325,3747b,15,1,f +5325,3749,19,4,f +5325,3794b,272,2,f +5325,3795,72,4,f +5325,3958,72,1,f +5325,4081b,27,2,f +5325,4085c,71,4,f +5325,41747,15,1,f +5325,41748,15,1,f +5325,41767,15,1,f +5325,41768,15,1,f +5325,41769,15,1,f +5325,41770,15,1,f +5325,41854,0,1,f +5325,43713,15,1,f +5325,43719,42,1,f +5325,44301a,0,4,f +5325,44728,0,2,f +5325,4589,46,4,f +5325,4871,15,1,f +5325,50373,321,1,f +5325,50950,321,4,f +5325,53451,0,1,t +5325,53451,0,4,f +5325,55981,71,2,f +5325,6019,72,2,f +5325,60471,15,4,f +5325,61184,71,2,f +5325,61409,27,2,f +5325,61409,72,4,f +5325,6141,45,1,t +5325,6141,41,2,f +5325,6141,72,4,f +5325,6141,45,1,f +5325,6141,41,1,t +5325,6141,72,2,t +5325,62462,0,4,f +5325,63082,71,2,f +5325,64225,15,1,f +5325,64567,0,2,f +5325,64567,0,1,t +5325,6541,72,6,f +5325,70701stk01,9999,1,t +5325,87079,15,2,f +5325,87083,72,1,f +5325,87087,15,2,f +5325,87580,321,1,f +5325,87614,15,2,f +5325,87781,321,1,f +5325,90192,320,2,f +5325,90194,72,1,f +5325,92279,47,1,f +5325,92280,15,2,f +5325,95199,72,2,f +5325,970c00pr0458,326,1,f +5325,970c00pr0464,321,1,f +5325,973pr2256c01,326,1,f +5325,973pr2296c01,71,1,f +5325,98138,71,1,t +5325,98138,71,6,f +5325,98138,36,1,t +5325,98138,36,2,f +5325,98285,71,1,f +5325,98286,71,1,f +5325,98313,320,1,f +5325,99207,71,4,f +5326,2456,1,4,f +5326,2456,15,4,f +5326,2456,4,4,f +5326,2456,14,4,f +5326,2877,71,2,f +5326,3001,15,18,f +5326,3001,14,26,f +5326,3001,2,7,f +5326,3001,25,12,f +5326,3001,27,12,f +5326,3001,4,26,f +5326,3001,1,20,f +5326,3001,0,7,f +5326,3002,1,16,f +5326,3002,0,8,f +5326,3002,4,16,f +5326,3002,2,8,f +5326,3002,14,16,f +5326,3002,15,16,f +5326,3003,0,20,f +5326,3003,14,76,f +5326,3003,4,76,f +5326,3003,1,60,f +5326,3003,15,60,f +5326,3003,27,32,f +5326,3003,25,32,f +5326,3003,2,20,f +5326,3004,15,62,f +5326,3004,2,26,f +5326,3004,0,26,f +5326,3004,4,72,f +5326,3004,25,20,f +5326,3004,1,62,f +5326,3004,14,72,f +5326,3004,27,20,f +5326,3004pr0001,14,2,f +5326,3005,25,20,f +5326,3005,2,16,f +5326,3005,4,38,f +5326,3005,0,16,f +5326,3005,15,33,f +5326,3005,27,12,f +5326,3005,1,33,f +5326,3005,14,28,f +5326,3005pe1,14,4,f +5326,3005pe1,2,2,f +5326,3005pr0003,15,2,f +5326,3005px2,14,2,f +5326,3007,14,2,f +5326,3007,1,2,f +5326,3007,15,2,f +5326,3007,4,2,f +5326,3008,4,4,f +5326,3008,1,4,f +5326,3008,15,4,f +5326,3008,14,4,f +5326,3009,1,8,f +5326,3009,4,8,f +5326,3009,14,8,f +5326,3009,15,8,f +5326,3010,27,8,f +5326,3010,0,6,f +5326,3010,15,7,f +5326,3010,14,13,f +5326,3010,2,6,f +5326,3010,4,13,f +5326,3010,25,6,f +5326,3010,1,13,f +5326,3020,4,4,f +5326,3020,0,4,f +5326,3021,0,4,f +5326,3021,1,4,f +5326,3021,4,4,f +5326,3022,0,4,f +5326,3022,4,4,f +5326,3022,1,4,f +5326,3023,4,2,f +5326,3023,14,2,f +5326,3023,1,2,f +5326,3035,2,2,f +5326,3037,4,10,f +5326,3037,1,8,f +5326,3039,1,8,f +5326,3039,47,2,f +5326,3039,14,4,f +5326,3039,15,4,f +5326,3039,4,12,f +5326,3040b,14,8,f +5326,3040b,1,8,f +5326,3040b,15,4,f +5326,3040b,4,8,f +5326,3040b,0,4,f +5326,3062b,0,4,f +5326,3062b,46,2,f +5326,3062b,15,6,f +5326,3062b,36,2,f +5326,3062b,4,4,f +5326,3297,0,6,f +5326,3298,0,10,f +5326,3299,4,4,f +5326,3300,4,4,f +5326,3622,4,8,f +5326,3622,0,8,f +5326,3622,2,8,f +5326,3622,14,8,f +5326,3622,1,8,f +5326,3622,15,8,f +5326,3660,4,4,f +5326,3660,14,4,f +5326,3665,15,4,f +5326,3665,14,8,f +5326,3665,4,8,f +5326,3700,14,2,f +5326,3710,0,4,f +5326,3710,15,4,f +5326,3794b,4,2,f +5326,3794b,15,2,f +5326,4070,4,4,f +5326,4070,14,4,f +5326,4081b,0,2,f +5326,4286,0,8,f +5326,4740,15,2,f +5326,54200,0,1,t +5326,54200,4,2,f +5326,54200,0,2,f +5326,54200,4,1,t +5326,6141,36,4,f +5326,6141,27,6,f +5326,6141,46,1,t +5326,6141,36,1,t +5326,6141,4,4,f +5326,6141,25,4,f +5326,6141,46,4,f +5326,6141,34,1,t +5326,6141,27,1,t +5326,6141,25,1,t +5326,6141,34,4,f +5326,6141,4,1,t +5327,10052,0,1,f +5327,10187,179,1,f +5327,10247,0,6,f +5327,11090,0,2,f +5327,11203,19,1,f +5327,11211,19,2,f +5327,11477,0,2,f +5327,11610,0,2,f +5327,14716,71,2,f +5327,14769,0,4,f +5327,14769pr0003,297,1,f +5327,15207,70,6,f +5327,15254,4,1,f +5327,15254,71,2,f +5327,15535,72,2,f +5327,15706,72,2,f +5327,15712,0,3,f +5327,16965,0,2,f +5327,18585,0,2,f +5327,18590,0,2,f +5327,18591,47,2,f +5327,18592,297,1,f +5327,18592,321,1,f +5327,18651,0,4,f +5327,18942,72,2,f +5327,19859pat0011,47,1,f +5327,20482,297,2,f +5327,20612,42,1,f +5327,20612,40,1,f +5327,2431,72,1,f +5327,2431,4,5,f +5327,2431,70,6,f +5327,2431,0,4,f +5327,2445,72,2,f +5327,2445,0,1,f +5327,24458,179,1,f +5327,2454a,378,2,f +5327,2456,19,1,f +5327,2458,72,2,f +5327,26047,0,2,f +5327,2654,47,4,f +5327,2654,72,4,f +5327,2730,0,1,f +5327,2780,0,2,f +5327,3001,0,1,f +5327,3003,19,1,f +5327,3003,378,4,f +5327,3003,0,2,f +5327,3005,72,2,f +5327,3009,72,4,f +5327,3010,378,2,f +5327,3010,72,2,f +5327,30136,19,3,f +5327,30136,70,1,f +5327,30153,42,1,f +5327,30157,72,4,f +5327,30173b,297,4,f +5327,30177,71,2,f +5327,3020,15,1,f +5327,3020,72,15,f +5327,3021,0,4,f +5327,3021,71,4,f +5327,3022,70,3,f +5327,3023,4,4,f +5327,3023,70,11,f +5327,3023,15,2,f +5327,3028,71,2,f +5327,3029,0,1,f +5327,3031,71,4,f +5327,30350a,0,2,f +5327,30350a,70,1,f +5327,3036,71,3,f +5327,3037,72,2,f +5327,30374,71,1,f +5327,30374,14,2,f +5327,3038,0,2,f +5327,3039,72,2,f +5327,3039,70,2,f +5327,3040b,0,4,f +5327,3040b,70,2,f +5327,3040b,72,4,f +5327,30414,72,2,f +5327,3043,0,4,f +5327,3049c,0,2,f +5327,30602,72,4,f +5327,3062b,19,6,f +5327,3062b,70,8,f +5327,3062b,4,2,f +5327,3062b,0,1,f +5327,3068b,0,2,f +5327,3069b,70,4,f +5327,3069b,4,4,f +5327,3070b,4,2,f +5327,3176,4,1,f +5327,32001,71,2,f +5327,32054,0,2,f +5327,32054,4,4,f +5327,32064a,72,20,f +5327,32123b,71,2,f +5327,32192,72,2,f +5327,32278,0,2,f +5327,32324,71,4,f +5327,3245b,72,4,f +5327,3245c,378,4,f +5327,32474,15,1,f +5327,32532,0,2,f +5327,32556,19,2,f +5327,3297,0,2,f +5327,3298,0,2,f +5327,3456,0,1,f +5327,3460,0,1,f +5327,3460,70,2,f +5327,3622,19,2,f +5327,3622,0,2,f +5327,3622,72,2,f +5327,3626b,15,2,f +5327,3659,0,1,f +5327,3665,15,4,f +5327,3666,0,1,f +5327,3666,70,4,f +5327,3666,71,12,f +5327,3675,0,2,f +5327,3700,71,10,f +5327,3700,0,2,f +5327,3701,71,2,f +5327,3705,0,2,f +5327,3710,71,4,f +5327,3710,15,4,f +5327,3710,19,2,f +5327,3710,0,2,f +5327,3749,19,6,f +5327,3794b,71,1,f +5327,3795,4,2,f +5327,3795,28,3,f +5327,3832,70,1,f +5327,3894,71,2,f +5327,3941,72,2,f +5327,3941,0,8,f +5327,4032a,0,6,f +5327,4070,15,2,f +5327,4162,0,3,f +5327,4162,4,2,f +5327,4162,70,4,f +5327,42610,71,2,f +5327,4274,71,18,f +5327,4282,71,2,f +5327,4286,378,10,f +5327,4287,0,2,f +5327,43712,72,2,f +5327,43713,72,2,f +5327,43887,71,1,f +5327,44728,0,4,f +5327,4519,71,4,f +5327,4735,0,4,f +5327,4740,0,3,f +5327,47457,71,2,f +5327,48336,0,2,f +5327,53451,297,3,f +5327,53451,158,3,f +5327,53451,179,1,f +5327,54383,0,1,f +5327,54384,0,1,f +5327,55013,72,2,f +5327,57895pr0007,47,2,f +5327,59426,72,1,f +5327,59443,4,1,f +5327,60475b,19,4,f +5327,60478,0,2,f +5327,60479,70,2,f +5327,60481,19,4,f +5327,60481,73,4,f +5327,60583b,0,2,f +5327,60593,70,2,f +5327,60594,72,2,f +5327,60596,19,2,f +5327,60596,0,2,f +5327,60596,4,2,f +5327,6111,72,2,f +5327,6112,70,3,f +5327,6141,15,6,f +5327,6141,297,6,f +5327,6141,71,6,f +5327,6179,0,2,f +5327,6232,72,2,f +5327,6266,71,1,f +5327,63864,0,2,f +5327,63868,0,2,f +5327,63868,4,2,f +5327,63965,70,2,f +5327,64567,0,1,f +5327,6558,1,8,f +5327,6587,28,2,f +5327,6629,4,4,f +5327,6636,0,5,f +5327,85984,4,2,f +5327,87079,4,8,f +5327,87079,71,2,f +5327,87087,72,4,f +5327,87087,19,8,f +5327,87552,71,4,f +5327,87601,70,2,f +5327,87617,4,2,f +5327,87994,70,2,f +5327,88646,71,4,f +5327,92099,0,1,f +5327,92107,0,1,f +5327,92338,42,1,f +5327,92409,0,2,f +5327,92690,71,2,f +5327,92946,0,4,f +5327,92950,19,1,f +5327,93555,179,1,f +5327,96874,25,1,t +5327,970c00,71,2,f +5327,98133,320,1,f +5327,98133,2,1,f +5327,98138,297,3,f +5327,98138,0,2,f +5327,98281,71,4,f +5327,98283,28,6,f +5327,99207,71,4,f +5327,99780,71,4,f +5327,99781,71,4,f +5328,3001,14,3,f +5328,3001,1,13,f +5328,3002,4,2,f +5328,3002,14,3,f +5328,3003,14,32,f +5328,3003,4,8,f +5328,3003,1,6,f +5328,3004,4,18,f +5328,3004,1,5,f +5328,3009,4,2,f +5328,3010,4,4,f +5328,3030,14,1,f +5328,3031,4,2,f +5328,3033,14,1,f +5328,3035,4,1,f +5328,3185,1,3,f +5328,3836,6,1,f +5328,3837,8,1,f +5328,3979c01,14,2,f +5328,fab3g,9999,1,f +5328,fab9c,9999,1,f +5328,u9213,2,1,f +5328,u9215,4,1,f +5328,x661c01,14,1,f +5328,x837,1,1,f +5328,x838,1,1,f +5329,2780,0,1,t +5329,2780,0,24,f +5329,32002,72,1,t +5329,32002,72,4,f +5329,32034,0,2,f +5329,32062,4,4,f +5329,32073,71,3,f +5329,32140,71,2,f +5329,32291,0,2,f +5329,32523,71,1,f +5329,32524,71,2,f +5329,32525,71,1,f +5329,32526,71,6,f +5329,32557,0,2,f +5329,3713,71,1,t +5329,3713,71,2,f +5329,41239,0,5,f +5329,41669,25,2,f +5329,41671pat0002,25,1,f +5329,4185,25,4,f +5329,42003,0,2,f +5329,42610,71,2,f +5329,43093,1,8,f +5329,44294,71,1,f +5329,4519,71,3,f +5329,47299,179,4,f +5329,48989,71,2,f +5329,53585,0,1,f +5329,54821,4,2,f +5329,55013,72,1,f +5329,57563,25,1,f +5329,58176,182,2,f +5329,60176,0,2,f +5329,60483,0,1,f +5329,60484,0,4,f +5329,60917,25,1,f +5329,60926,179,2,f +5329,61801,179,4,f +5329,61805,25,2,f +5329,62386,4,2,f +5329,63869,71,3,f +5329,64251,4,2,f +5329,64262,42,1,f +5329,64275,179,4,f +5329,6558,1,21,f +5329,6629,0,2,f +5329,6632,0,4,f +5329,87083,72,2,f +5329,87794,0,1,f +5329,87796,4,4,f +5329,87799,42,1,f +5329,87807,4,1,f +5329,87808,4,1,f +5329,88516,0,2,f +5329,88517,72,2,f +5330,30214,42,1,f +5330,3023,8,1,f +5330,3069bp53,0,1,f +5330,3298pb005,8,1,f +5330,3475b,0,2,f +5330,3626bpx139,1,1,f +5330,3795,1,1,f +5330,3838,1,1,f +5330,3839b,0,1,f +5330,4032a,0,1,f +5330,4588,0,2,f +5330,4589,42,2,f +5330,4590,0,1,f +5330,4598,8,1,f +5330,6141,42,1,t +5330,6141,42,4,f +5330,970c10pb01,8,1,f +5330,973px92c01,0,1,f +5331,122c01,0,2,f +5331,2335,4,1,f +5331,2348b,47,1,f +5331,2349a,1,1,f +5331,2456,14,1,f +5331,2456,4,1,f +5331,2456,15,1,f +5331,2458,15,2,f +5331,2460,4,1,f +5331,2479,7,2,f +5331,2493b,15,2,f +5331,2494,47,2,f +5331,2584,4,1,f +5331,2585,7,1,f +5331,2746,1,1,f +5331,3001,15,4,f +5331,3001,14,4,f +5331,3001,1,2,f +5331,3001,4,4,f +5331,3002,1,2,f +5331,3002,14,4,f +5331,3002,15,4,f +5331,3002,4,4,f +5331,3003,14,8,f +5331,3003,1,2,f +5331,3003,15,4,f +5331,3003,4,6,f +5331,3004,14,40,f +5331,3004,4,40,f +5331,3004,15,34,f +5331,3004,1,32,f +5331,3004,47,8,f +5331,3004,0,20,f +5331,3005,4,30,f +5331,3005,14,30,f +5331,3005,0,18,f +5331,3005,1,20,f +5331,3005,15,28,f +5331,3005,47,4,f +5331,3008,4,2,f +5331,3008,1,2,f +5331,3008,14,2,f +5331,3008,15,2,f +5331,3009,0,2,f +5331,3009,14,4,f +5331,3009,4,2,f +5331,3009,15,2,f +5331,3009,1,2,f +5331,3010,47,2,f +5331,3010,1,10,f +5331,3010,4,12,f +5331,3010,0,4,f +5331,3010,14,12,f +5331,3010,15,12,f +5331,3010p08,1,1,f +5331,3010p09,1,1,f +5331,3020,4,2,f +5331,3020,1,2,f +5331,3021,1,2,f +5331,3021,4,2,f +5331,3022,4,2,f +5331,3022,1,2,f +5331,3023,4,2,f +5331,3023,1,2,f +5331,3030,1,1,f +5331,3031,1,1,f +5331,3031,4,1,f +5331,3032,1,1,f +5331,3032,4,1,f +5331,3034,4,2,f +5331,3034,1,4,f +5331,3035,4,1,f +5331,3035,1,1,f +5331,3036,4,1,f +5331,3039,4,4,f +5331,3039,47,2,f +5331,3040b,4,4,f +5331,3081cc01,4,2,f +5331,3127,7,1,f +5331,3149c01,4,2,f +5331,3176,4,2,f +5331,3183b,4,1,f +5331,3184,4,1,f +5331,3297,4,10,f +5331,3298,4,6,f +5331,3299,4,4,f +5331,3300,4,2,f +5331,3403c01,4,1,f +5331,3460,1,2,f +5331,3460,4,2,f +5331,3471,2,1,f +5331,3483,0,4,f +5331,3581,15,6,f +5331,3582,1,4,f +5331,3622,1,4,f +5331,3622,15,10,f +5331,3622,14,16,f +5331,3622,4,12,f +5331,3622,0,6,f +5331,3623,4,2,f +5331,3623,1,2,f +5331,3626apr0001,14,2,f +5331,3633,14,6,f +5331,3641,0,4,f +5331,3644,1,2,f +5331,3660,4,4,f +5331,3665,4,4,f +5331,3666,4,2,f +5331,3666,1,2,f +5331,3710,4,2,f +5331,3710,1,2,f +5331,3741,2,5,f +5331,3742,1,1,t +5331,3742,15,1,t +5331,3742,14,1,t +5331,3742,14,3,f +5331,3742,4,1,t +5331,3742,15,3,f +5331,3742,1,3,f +5331,3742,4,3,f +5331,3788,1,2,f +5331,3795,1,2,f +5331,3795,4,2,f +5331,3821,1,1,f +5331,3822,1,1,f +5331,3823,47,2,f +5331,3829c01,15,1,f +5331,3853,15,4,f +5331,3854,4,8,f +5331,3856,1,4,f +5331,3857,2,3,f +5331,3861b,15,2,f +5331,3901,6,1,f +5331,3957a,0,2,f +5331,3960,14,1,f +5331,4207,14,1,f +5331,4212b,4,1,f +5331,4214,1,1,f +5331,4315,1,1,f +5331,4530,0,1,f +5331,6007,8,1,f +5331,6853,1,6,f +5331,7039,4,4,f +5331,7049b,0,2,f +5331,970c00,0,1,f +5331,970c00,1,1,f +5331,973c02,4,1,f +5331,973p01c02,15,1,f +5331,rb00164,0,1,f +5332,132a,0,4,f +5332,15,1,1,f +5332,17,1,1,f +5332,242c01,4,4,f +5332,3001a,0,2,f +5332,3002a,4,2,f +5332,3004,4,2,f +5332,3004,0,8,f +5332,3005,4,6,f +5332,3008,4,2,f +5332,3010,4,2,f +5332,3020,0,2,f +5332,3020,4,2,f +5332,3021,0,2,f +5332,3022,0,2,f +5332,3023,0,16,f +5332,3023,4,10,f +5332,3024,0,4,f +5332,3029,4,1,f +5332,3034,4,1,f +5332,3035,4,1,f +5332,3039,0,6,f +5332,3183a,4,1,f +5332,3184,4,1,f +5332,3626a,14,1,f +5332,3629,0,1,f +5332,3633,14,2,f +5332,3660a,4,2,f +5332,3660a,0,5,f +5332,7049b,0,2,f +5334,2418b,42,1,f +5334,2419,7,2,f +5334,2540,0,2,f +5334,2569,42,4,f +5334,30034,0,2,f +5334,30035,0,1,f +5334,3004,4,4,f +5334,30062,0,1,f +5334,3010,0,4,f +5334,30117,42,2,f +5334,30117pb01,7,1,f +5334,30117pb05,7,1,f +5334,30119,7,4,f +5334,30120p02,7,1,f +5334,30121,0,1,f +5334,3021,0,4,f +5334,3022,4,1,f +5334,3023,4,3,f +5334,3023,0,4,f +5334,3031,4,2,f +5334,3034,7,4,f +5334,3035,0,4,f +5334,3069bp51,0,1,f +5334,3403c01,4,1,f +5334,3622,7,4,f +5334,3626bpb0248,42,1,f +5334,3794a,0,4,f +5334,3937,0,5,f +5334,3938,7,4,f +5334,3940b,0,4,f +5334,3960,0,2,f +5334,4070,4,4,f +5334,4079,4,1,f +5334,4150,0,1,f +5334,4151a,0,1,f +5334,4345b,0,1,f +5334,4346,42,1,f +5334,4349,0,1,f +5334,4589,42,1,f +5334,4589,0,4,f +5334,4590,0,4,f +5334,6141,42,9,f +5334,6222,7,1,f +5334,73590c02a,0,2,f +5334,970c07pb01,1,1,f +5334,973pb0077c01,7,1,f +5336,11215,71,1,f +5336,11477,15,11,f +5336,14301,71,1,f +5336,15068,0,2,f +5336,15573,71,3,f +5336,15573,0,2,f +5336,15573,4,2,f +5336,15672,71,1,f +5336,15672,15,1,f +5336,18973pr0003,40,1,f +5336,18974,0,2,f +5336,18974,15,2,f +5336,18975,72,2,f +5336,18976,0,4,f +5336,18977,0,4,f +5336,18978a,0,4,t +5336,18978b,0,4,f +5336,18980,0,1,f +5336,2420,4,2,f +5336,24299,15,1,f +5336,24307,15,1,f +5336,2431,71,2,f +5336,2431,15,2,f +5336,2446,0,1,f +5336,2447,47,1,t +5336,2447,47,1,f +5336,3001,71,1,f +5336,30029,0,1,f +5336,3004,0,1,f +5336,3005,0,4,f +5336,3020,14,1,f +5336,3020,72,2,f +5336,3021,72,2,f +5336,3022,15,4,f +5336,3022,4,1,f +5336,3023,4,3,f +5336,3023,0,3,f +5336,3023,15,4,f +5336,3024,15,8,f +5336,3024,15,1,t +5336,30363,15,1,f +5336,3039,72,1,f +5336,3040b,0,3,f +5336,3068b,0,2,f +5336,3069b,15,1,f +5336,3069b,0,4,f +5336,3070b,4,3,f +5336,3070b,4,1,t +5336,3070b,15,2,f +5336,3070b,15,1,t +5336,3070bpr0007,71,1,t +5336,3070bpr0007,71,1,f +5336,3622,71,1,f +5336,3622,0,1,f +5336,3626bpr0645,14,1,f +5336,3665,0,2,f +5336,3666,0,1,f +5336,3678b,15,1,f +5336,3710,1,3,f +5336,3749,19,4,f +5336,3795,0,2,f +5336,3821,15,1,f +5336,3822,15,1,f +5336,3829c01,4,1,f +5336,3938,0,2,f +5336,4006,0,1,f +5336,4070,0,4,f +5336,4070,71,2,f +5336,4349,0,1,f +5336,50950,71,2,f +5336,54200,71,1,t +5336,54200,0,1,t +5336,54200,71,2,f +5336,54200,0,2,f +5336,60475b,71,1,f +5336,6231,0,2,f +5336,6636,71,1,f +5336,6636,0,3,f +5336,87079,72,1,f +5336,87087,15,2,f +5336,92593,0,2,f +5336,93095,0,1,f +5336,970c00,15,1,f +5336,973pr3286c01,15,1,f +5336,99206,71,3,f +5336,99207,0,2,f +5336,99207,4,2,f +5336,99780,72,2,f +5336,99780,71,2,f +5337,20608,4,1,f +5337,26077,4,1,f +5337,27988,4,1,f +5337,3626cpr2027,14,1,f +5337,41879a,4,1,f +5337,88646,0,1,f +5337,92290,0,1,f +5337,95344,0,1,f +5337,973pr3538c01,4,1,f +5337,98374pr0003,25,1,f +5338,3004,1,4,f +5338,3004,14,4,f +5338,3005,1,3,f +5338,3005,14,3,f +5338,3008,1,2,f +5338,3008,14,2,f +5338,3009,1,2,f +5338,3009,14,2,f +5338,3010,1,3,f +5338,3010,14,3,f +5339,11215,71,1,f +5339,11458,72,8,f +5339,11477,71,4,f +5339,15573,72,3,f +5339,21566pr0003,15,1,f +5339,2412b,71,2,f +5339,30165,72,4,f +5339,3020,71,4,f +5339,3021,71,2,f +5339,3022,1,4,f +5339,3023,72,2,f +5339,30602,71,1,f +5339,3069b,1,1,f +5339,3626cpr1856,92,1,f +5339,3747b,71,1,f +5339,43093,1,4,f +5339,43719,71,1,f +5339,43722,1,2,f +5339,43723,1,2,f +5339,44728,72,1,f +5339,48336,0,4,f +5339,51739,71,2,f +5339,54200,47,1,t +5339,54200,47,1,f +5339,59900,71,4,f +5339,60470a,71,4,f +5339,60897,71,4,f +5339,61184,71,8,f +5339,90194,1,1,f +5339,90194,72,2,f +5339,92738,0,1,f +5339,970c00pr0942,484,1,f +5339,973pr3156c01,484,1,f +5339,98138,45,1,t +5339,98138,45,4,f +5339,99207,71,1,f +5341,3647,7,4,f +5341,3648a,7,4,f +5341,3649,7,1,f +5341,3650a,7,1,f +5341,3651,7,6,f +5341,3652,7,2,f +5341,3673,7,15,f +5341,3700,14,6,f +5341,3701,14,4,f +5341,3702,14,4,f +5341,3703,14,4,f +5341,3704,0,2,f +5341,3705,0,2,f +5341,3706,0,2,f +5341,3707,0,2,f +5341,3708,0,1,f +5341,3709,14,2,f +5341,3713,7,10,f +5341,3737,0,1,f +5341,3738,14,2,f +5341,3743,7,2,f +5341,9244,7,1,f +5342,11245,379,1,f +5342,11816pr0003,78,1,f +5342,30089,0,1,f +5342,3021,2,1,f +5342,3022,70,2,f +5342,3032,322,1,f +5342,30367c,71,1,f +5342,3040b,71,1,f +5342,30565,322,1,f +5342,3068bpr0242,19,1,f +5342,33291,4,1,t +5342,33291,4,4,f +5342,33320,2,1,f +5342,3957a,70,1,f +5342,48336,19,4,f +5342,54200,72,1,t +5342,54200,72,2,f +5342,60470b,191,4,f +5342,60474,322,1,f +5342,6141,2,3,f +5342,6141,2,1,t +5342,92256,70,1,f +5342,92819pr0004,272,1,f +5342,98560,308,2,f +5343,14226c11,0,1,f +5343,16542,7,1,f +5343,2412b,15,13,f +5343,2421,0,1,f +5343,2447,42,1,t +5343,2454a,4,8,f +5343,2460,4,1,f +5343,2479,7,1,f +5343,2486,14,2,f +5343,2508,15,1,f +5343,2540,0,2,f +5343,2569,4,1,f +5343,3003,15,7,f +5343,3004,15,5,f +5343,3006,4,1,f +5343,3008p08,4,1,f +5343,30094,14,1,f +5343,3010,4,2,f +5343,3010p70,4,2,f +5343,3010px1,4,1,f +5343,30145,4,8,f +5343,30180,0,3,f +5343,30181,0,1,f +5343,30182,0,1,f +5343,30183,4,1,f +5343,30187c01,4,1,f +5343,30193,8,1,f +5343,30194,8,1,f +5343,3021,14,1,f +5343,30237a,4,2,f +5343,30237a,7,8,f +5343,30248,7,1,f +5343,30250pr03,4,1,f +5343,30251,33,1,f +5343,30261,14,2,f +5343,30262,0,1,f +5343,30343c01,0,2,f +5343,30364,0,2,f +5343,30365,8,4,f +5343,30386,15,2,f +5343,30387pr0002,15,2,f +5343,30389a,4,2,f +5343,3039,7,2,f +5343,3039,33,2,f +5343,3039pc2,15,1,f +5343,3040b,33,3,f +5343,3040p04,7,2,f +5343,3062b,34,1,f +5343,3062b,36,3,f +5343,3062b,14,1,f +5343,3068b,4,1,f +5343,3069bp52,15,1,f +5343,3069bp68,15,1,f +5343,3070bp01,14,1,f +5343,3070bp02,14,1,f +5343,3139,0,2,f +5343,3298,4,1,f +5343,3403c01,4,1,f +5343,3460,0,2,f +5343,3679,7,1,f +5343,3680,15,1,f +5343,3823,33,1,f +5343,3829c01,15,1,f +5343,3834,15,1,f +5343,3834,0,1,f +5343,3835,7,2,f +5343,3836,6,1,f +5343,3837,8,1,f +5343,3839b,0,1,f +5343,3941,42,2,f +5343,3957a,7,2,f +5343,3962b,8,1,f +5343,3963,14,2,f +5343,4079,14,1,f +5343,4083,15,1,f +5343,4151a,0,1,f +5343,4202,4,1,f +5343,4207,15,2,f +5343,4208,0,1,f +5343,4209,4,1,f +5343,4349,14,4,f +5343,4488,15,1,f +5343,4533,33,2,f +5343,4599a,14,2,f +5343,4600,7,2,f +5343,4624,15,2,f +5343,4740,15,2,f +5343,4865a,14,1,f +5343,4871,4,1,f +5343,4872,33,2,f +5343,51595p01,2,2,f +5343,6014a,15,6,f +5343,6015,0,6,f +5343,6020,15,2,f +5343,6112,4,6,f +5343,6112,0,2,f +5343,6117,8,1,f +5343,6140,0,1,f +5343,6140,15,1,f +5343,6141,42,9,f +5343,6141,33,3,f +5343,6141,42,1,t +5343,6141,33,1,t +5343,6141,36,1,t +5343,6141,36,1,f +5343,6160c03,0,4,f +5343,6212,0,1,f +5343,73590c02b,14,2,f +5343,92410,4,2,f +5343,fire001,-1,1,f +5343,fire002,-1,1,f +5343,fire003,-1,1,f +5343,fire004,-1,1,f +5344,3626bpr0688,14,1,f +5344,50231,320,1,f +5344,88646,0,1,f +5344,90391pr01,148,1,f +5344,90392pr0001,82,1,f +5344,91884,84,1,f +5344,970c00pr0170,14,1,f +5344,973pr1650c01,84,1,f +5345,2343,297,1,f +5345,2357,4,4,f +5345,2412b,4,2,f +5345,2412b,0,4,f +5345,2420,73,6,f +5345,2431,4,1,f +5345,2431,71,1,f +5345,2431,73,2,f +5345,2432,72,2,f +5345,2436,0,1,f +5345,2445,4,1,f +5345,2465,0,2,f +5345,2496,0,2,f +5345,2540,0,8,f +5345,2555,0,2,f +5345,2655,71,2,f +5345,2878,0,10,f +5345,2921,4,2,f +5345,2926,0,2,f +5345,298c02,0,1,f +5345,298c02,0,1,t +5345,298c02,1,1,f +5345,298c02,1,1,t +5345,3001,70,1,f +5345,3001,0,2,f +5345,3001,4,1,f +5345,3001,72,1,f +5345,3002,4,2,f +5345,3004,4,11,f +5345,3004,72,1,f +5345,3004,70,4,f +5345,3005,73,2,f +5345,3005,4,16,f +5345,3008,4,6,f +5345,3010,0,2,f +5345,3010,4,6,f +5345,3010,73,1,f +5345,30153,36,2,f +5345,30153,47,2,f +5345,3020,72,1,f +5345,3020,70,4,f +5345,3020,71,3,f +5345,3020,0,7,f +5345,3020,4,10,f +5345,3022,71,2,f +5345,3022,72,1,f +5345,3022,0,3,f +5345,3023,73,16,f +5345,3023,4,7,f +5345,3023,0,5,f +5345,3023,71,3,f +5345,30238,0,1,f +5345,3024,4,8,f +5345,3024,73,8,f +5345,3029,71,1,f +5345,3032,4,1,f +5345,3032,14,1,f +5345,3033,14,2,f +5345,3033,0,1,f +5345,3034,15,1,f +5345,30367b,297,1,f +5345,3037,4,4,f +5345,3037,0,4,f +5345,30374,70,4,f +5345,30374,70,1,t +5345,30374,0,7,f +5345,3040b,0,4,f +5345,3040b,71,2,f +5345,3062b,0,8,f +5345,3068b,0,5,f +5345,3068b,4,2,f +5345,3068bpr0184,71,1,f +5345,3068bpr0185,19,1,f +5345,3069b,0,1,f +5345,3069b,4,2,f +5345,3070b,4,2,t +5345,3070b,0,6,f +5345,3070b,4,6,f +5345,3070b,0,1,t +5345,32028,71,7,f +5345,3245c,4,6,f +5345,33320,70,1,f +5345,3460,14,4,f +5345,3622,4,2,f +5345,3623,71,3,f +5345,3623,72,1,f +5345,3623,0,3,f +5345,3626bpr0703,78,1,f +5345,3626bpr0705,78,1,f +5345,3626bpr0708,78,1,f +5345,3626bpr0713,78,1,f +5345,3626bprx494,78,1,f +5345,3660,0,2,f +5345,3665,73,4,f +5345,3665,0,4,f +5345,3666,14,4,f +5345,3666,0,4,f +5345,3666,4,1,f +5345,3666,15,2,f +5345,3666,73,2,f +5345,3700,14,1,f +5345,3710,4,6,f +5345,3710,73,7,f +5345,3710,15,2,f +5345,3710,0,7,f +5345,3794a,19,2,f +5345,3794a,4,1,f +5345,3794a,0,4,f +5345,3795,15,4,f +5345,3795,0,2,f +5345,3795,73,3,f +5345,3829c01,71,1,f +5345,3832,0,1,f +5345,3937,0,1,f +5345,3938,0,1,f +5345,3941,0,1,f +5345,3958,15,1,f +5345,3958,71,1,f +5345,3960pr0010a,0,1,f +5345,40233,0,1,f +5345,40234,71,1,f +5345,4025,0,4,f +5345,4032a,297,2,f +5345,4034,47,10,f +5345,4070,0,6,f +5345,4070,73,4,f +5345,4079b,70,4,f +5345,4081b,0,4,f +5345,4150,0,2,f +5345,4162,4,4,f +5345,4176,47,1,f +5345,4274,71,1,t +5345,4274,71,1,f +5345,4282,0,2,f +5345,43337,4,6,f +5345,4449,70,2,f +5345,4449,0,1,f +5345,4532,4,1,f +5345,4533,15,1,f +5345,45677,73,2,f +5345,4738a,70,1,f +5345,4739a,70,1,f +5345,48336,297,1,f +5345,48336,0,4,f +5345,4854,4,2,f +5345,4865a,71,2,f +5345,4865a,73,5,f +5345,48729b,72,2,f +5345,48729b,72,1,t +5345,50944pr0001,0,4,f +5345,50950,73,2,f +5345,50950,0,10,f +5345,51011,0,4,f +5345,54200,73,1,t +5345,54200,73,4,f +5345,54200,4,2,t +5345,54200,0,2,t +5345,54200,0,8,f +5345,54200,4,8,f +5345,57051,383,10,f +5345,57878,0,20,f +5345,60032,4,2,f +5345,6019,0,6,f +5345,60481,73,2,f +5345,60581,4,6,f +5345,60583b,4,4,f +5345,6081,4,2,f +5345,60897,0,2,f +5345,6112,4,2,f +5345,6124,45,1,f +5345,6124,42,1,f +5345,61409,0,2,f +5345,6141,47,2,t +5345,6141,4,1,t +5345,6141,71,1,t +5345,6141,0,11,f +5345,6141,182,1,t +5345,6141,36,2,f +5345,6141,36,1,t +5345,6141,0,6,t +5345,6141,297,1,t +5345,6141,182,2,f +5345,6141,71,2,f +5345,6141,297,1,f +5345,6141,4,2,f +5345,6141,47,4,f +5345,6231,71,4,f +5345,6231,4,2,f +5345,6231,0,2,f +5345,62361,71,1,f +5345,6254,15,2,f +5345,62696,226,1,f +5345,62808,72,2,f +5345,63864,71,3,f +5345,63864,72,1,f +5345,63864,0,1,f +5345,6556,4,10,f +5345,6636,4,5,f +5345,6636,72,2,f +5345,75c16,0,2,f +5345,87580,4,3,f +5345,87991,484,1,f +5345,88930,0,12,f +5345,91992,0,1,f +5345,91994,0,5,f +5345,92081,19,1,f +5345,92083,484,1,f +5345,92084pr0001,70,1,f +5345,92084pr0002,72,1,f +5345,92084pr0003,15,1,f +5345,92099,0,1,f +5345,92107,0,1,f +5345,92262,73,1,f +5345,92263,73,1,f +5345,92340,0,2,f +5345,92862,9999,1,f +5345,970c00,72,1,f +5345,970c00pr0180,1,1,f +5345,970x026,72,3,f +5345,973pr1671c01,72,1,f +5345,973pr1674c01,272,1,f +5345,973pr1686c01,4,1,f +5345,973pr1687,5,1,f +5345,973pr1692c01,72,1,f +5346,2412b,71,2,f +5346,2436,2,1,f +5346,2540,27,2,f +5346,2780,0,4,f +5346,3004,2,1,f +5346,3021,27,3,f +5346,3022,2,2,f +5346,3022,72,1,f +5346,3023,72,2,f +5346,30602pb010,27,2,f +5346,30602pb024,2,1,f +5346,32526,0,2,f +5346,3705,0,3,f +5346,3706,0,1,f +5346,3710,2,1,f +5346,3710,27,1,f +5346,3713,71,1,t +5346,3713,71,8,f +5346,3737,0,2,f +5346,3747b,72,1,f +5346,3795,2,1,f +5346,41669,135,2,f +5346,41677,71,2,f +5346,43719,27,1,f +5346,44674pb01,27,1,f +5346,44675,71,1,f +5346,44676,0,2,f +5346,44728,72,3,f +5346,47715,72,1,f +5346,47758,0,1,f +5346,6141,71,6,f +5346,6141,36,1,t +5346,6141,71,1,t +5346,6141,36,2,f +5346,6579,0,4,f +5346,6580,72,4,f +5346,6632,0,2,f +5346,75535,71,1,f +5346,75535,0,1,f +5347,15573,2,1,f +5347,3001,2,1,f +5347,3003,2,2,f +5347,3004,27,4,f +5347,3004,158,6,f +5347,3004,2,1,f +5347,3004,288,1,f +5347,30044,70,1,f +5347,3005,2,2,f +5347,3020,2,3,f +5347,3021,27,1,f +5347,3021,4,1,f +5347,3022,4,1,f +5347,3022,27,1,f +5347,3023,2,1,f +5347,3023,288,2,f +5347,3039,47,1,f +5347,3040b,2,6,f +5347,3062b,0,1,f +5347,3062b,19,2,f +5347,3062b,71,2,f +5347,3069b,4,1,f +5347,3795,27,1,f +5347,4490,71,2,f +5347,4600,0,2,f +5347,4624,15,2,f +5347,50950,2,1,f +5347,59900,15,6,f +5347,6014b,15,2,f +5347,6182,71,1,f +5347,87414,0,2,f +5347,87697,0,2,f +5347,94161,70,1,f +5347,98138pr0027,15,2,f +5347,98138pr0027,15,1,t +5351,3001,4,1,f +5351,3626cpb1001,14,1,f +5351,970c00,0,1,f +5351,973pb1516c01,0,1,f +5351,98385,70,1,f +5353,10830pat0001,0,1,f +5353,11187,70,6,f +5353,11290,25,2,f +5353,11458,72,2,f +5353,11476,71,4,f +5353,11477,25,3,f +5353,12825,14,1,f +5353,12825,71,2,f +5353,13269,25,2,f +5353,14718,15,4,f +5353,14718,71,1,f +5353,14769,25,2,f +5353,14769,15,2,f +5353,15068,25,4,f +5353,15068,15,2,f +5353,15068pr0003,25,2,f +5353,15210,0,1,f +5353,15540,72,2,f +5353,15541pat0001,1,3,f +5353,16606pat0001,15,4,f +5353,17454,15,2,f +5353,17457,41,2,f +5353,18738,71,1,f +5353,18738,71,1,t +5353,2412b,14,22,f +5353,2412b,25,2,f +5353,2412b,0,4,f +5353,2421,0,1,f +5353,2431,15,1,f +5353,2432,14,4,f +5353,2432,72,1,f +5353,2432,25,1,f +5353,2432,70,1,f +5353,2434,0,1,f +5353,2440,72,1,f +5353,2447,40,1,f +5353,2447,40,1,t +5353,2449,71,2,f +5353,2456,71,1,f +5353,2460,72,3,f +5353,2460,0,1,f +5353,2479,0,1,f +5353,2512,71,1,f +5353,2540,15,3,f +5353,2540,0,1,f +5353,2569,0,1,t +5353,2569,14,1,f +5353,2569,0,1,f +5353,2569,14,1,t +5353,2584,0,1,f +5353,2585,71,1,f +5353,2654,0,2,f +5353,2654,72,2,f +5353,2743,72,2,f +5353,2780,0,3,t +5353,2780,0,12,f +5353,2877,72,1,f +5353,298c02,71,1,t +5353,298c02,71,2,f +5353,298c02,14,1,f +5353,298c02,14,1,t +5353,3001,71,1,f +5353,3001,0,2,f +5353,3002,14,1,f +5353,3003,25,7,f +5353,3003,0,3,f +5353,3003,72,5,f +5353,30031,72,1,f +5353,3004,15,4,f +5353,3004,25,3,f +5353,3005,4,1,f +5353,3005,25,2,f +5353,3005,71,4,f +5353,3006,15,1,f +5353,3008,72,4,f +5353,30089,0,1,f +5353,3009,25,1,f +5353,3010,72,1,f +5353,3010,15,6,f +5353,3010,4,1,f +5353,30136,19,6,f +5353,30150,70,3,f +5353,30157,71,3,f +5353,30157,72,1,f +5353,30162,72,1,f +5353,30162,71,2,f +5353,30171,0,1,f +5353,30194,72,1,f +5353,3020,25,2,f +5353,3020,15,5,f +5353,3020,0,7,f +5353,3021,72,1,f +5353,3021,25,2,f +5353,3021,2,1,f +5353,3021,0,1,f +5353,3022,72,5,f +5353,3022,71,3,f +5353,3022,15,4,f +5353,3023,70,2,f +5353,3023,46,5,f +5353,3023,36,1,f +5353,3023,72,9,f +5353,3023,71,3,f +5353,30236,72,1,f +5353,30293,41,3,f +5353,30294,41,3,f +5353,3030,15,1,f +5353,3032,15,1,f +5353,3033,15,1,f +5353,3034,71,2,f +5353,3034,15,4,f +5353,3034,72,1,f +5353,3034,0,1,f +5353,30340,14,2,f +5353,3035,72,1,f +5353,3035,15,1,f +5353,30350b,15,3,f +5353,30367c,27,1,f +5353,30374,0,1,f +5353,3038,0,2,f +5353,30385,80,5,f +5353,30395,72,2,f +5353,3039pr0002,15,1,f +5353,3039pr0005,15,1,f +5353,3040b,15,3,f +5353,3040b,25,2,f +5353,30553,0,1,f +5353,30565,15,2,f +5353,3062b,0,1,f +5353,3062b,47,1,f +5353,3068b,70,1,f +5353,3069b,71,8,f +5353,3069b,15,2,f +5353,3069b,25,2,f +5353,3069bp02,71,1,f +5353,3069bpr0030,15,1,f +5353,3245c,25,4,f +5353,3245c,0,1,f +5353,3245c,15,4,f +5353,3308,15,4,f +5353,3460,0,2,f +5353,3624,272,1,f +5353,3626cpr0914,14,1,f +5353,3626cpr1147,14,1,f +5353,3626cpr1395a,14,1,f +5353,3626cpr1410,14,1,f +5353,3626cpr1420,14,1,f +5353,3626cpr1662,14,1,f +5353,3626cpr1665,14,1,f +5353,3633,72,2,f +5353,3666,25,2,f +5353,3666,15,3,f +5353,3678b,0,1,f +5353,3679,71,2,f +5353,3680,0,2,f +5353,3700,72,1,f +5353,3705,0,1,f +5353,3710,72,1,f +5353,3710,0,8,f +5353,3710,25,4,f +5353,3747b,15,4,f +5353,3794b,25,1,f +5353,3794b,0,2,f +5353,3794b,15,1,f +5353,3795,70,3,f +5353,3795,72,6,f +5353,3795,25,1,f +5353,3795,15,2,f +5353,3829c01,71,2,f +5353,3835,0,1,f +5353,3836,70,1,f +5353,3837,0,1,f +5353,3839b,0,2,f +5353,3839b,71,1,f +5353,3841,72,1,f +5353,3899,14,1,f +5353,3899,4,1,f +5353,3938,15,1,f +5353,3940b,0,6,f +5353,3941,27,2,f +5353,3941,4,3,f +5353,3941,71,4,f +5353,3958,15,1,f +5353,3961,15,1,f +5353,4032a,72,1,f +5353,4032a,71,2,f +5353,4079,70,1,f +5353,4083,14,2,f +5353,41334,272,1,f +5353,4162,71,6,f +5353,4162,0,2,f +5353,4175,72,2,f +5353,4182,0,1,f +5353,4183,41,1,f +5353,41862,71,2,f +5353,4274,1,1,t +5353,4274,1,2,f +5353,4289,14,1,f +5353,43093,1,2,f +5353,4345b,15,1,f +5353,4346,47,1,f +5353,4349,72,1,f +5353,4360,0,1,f +5353,43898,15,1,f +5353,43903,0,2,f +5353,4460b,15,4,f +5353,4460b,25,2,f +5353,44661,15,1,f +5353,44728,0,2,f +5353,4477,71,2,f +5353,4488,71,1,f +5353,4510,72,1,f +5353,4510,15,2,f +5353,45677,25,1,f +5353,45677,0,2,f +5353,4588,72,1,f +5353,4599b,0,1,t +5353,4599b,0,1,f +5353,4733,0,1,f +5353,4740,15,1,f +5353,47457,71,1,f +5353,476,0,2,f +5353,47720,71,1,f +5353,47755,25,1,f +5353,47847,41,1,f +5353,48092,15,2,f +5353,48336,71,1,f +5353,4864b,41,1,f +5353,4865b,41,4,f +5353,4865b,71,2,f +5353,50949,0,4,f +5353,54200,15,4,f +5353,54200,15,1,t +5353,55981,71,6,f +5353,56823c50,0,1,f +5353,60032,15,3,f +5353,60169,72,2,f +5353,6020,0,2,f +5353,60219,72,2,f +5353,60470a,0,2,f +5353,60471,0,1,f +5353,60474,71,1,f +5353,60474,15,1,f +5353,60475a,72,2,f +5353,60475a,71,2,f +5353,60478,0,2,f +5353,60478,15,4,f +5353,60581,71,4,f +5353,60601,41,17,f +5353,60849,71,1,t +5353,60849,71,2,f +5353,60897,25,2,f +5353,60897,0,6,f +5353,6091,4,1,f +5353,6111,15,1,f +5353,6117,72,2,f +5353,61252,71,2,f +5353,61252,14,1,f +5353,61345,25,5,f +5353,61345,15,2,f +5353,6141,25,1,f +5353,6141,71,3,f +5353,6141,25,1,t +5353,6141,15,2,t +5353,6141,71,2,t +5353,6141,15,10,f +5353,6141,47,2,t +5353,6141,47,2,f +5353,61485,0,1,f +5353,61487,25,4,f +5353,61780,70,1,f +5353,62113,0,1,f +5353,62462,15,3,f +5353,62462,4,4,f +5353,62791c01,25,1,f +5353,62810,484,1,f +5353,63864,71,2,f +5353,63864,25,4,f +5353,63868,71,1,f +5353,64644,0,1,f +5353,64648,179,1,f +5353,6636,14,4,f +5353,74698,0,3,f +5353,75937,0,1,f +5353,84954,41,1,f +5353,85984,25,3,f +5353,85984,71,5,f +5353,85984,0,2,f +5353,87087,15,4,f +5353,87580,4,1,f +5353,87580,14,10,f +5353,87752,41,1,f +5353,88072,71,2,f +5353,89523,71,1,f +5353,92438,72,1,f +5353,92582,71,1,f +5353,92582,0,1,f +5353,92593,71,4,f +5353,93106,0,1,f +5353,93273,25,2,f +5353,93273,72,4,f +5353,93273,15,2,f +5353,95347,0,1,f +5353,95354,0,1,f +5353,96874,25,1,t +5353,970c00,1,2,f +5353,970c00,28,1,f +5353,970c00,272,1,f +5353,970c00pr0645,1,3,f +5353,973pr2641c01,25,2,f +5353,973pr2661c01,25,1,f +5353,973pr2678c01,70,1,f +5353,973pr2693c01,15,1,f +5353,973pr2762c01,25,1,f +5353,98100,71,1,f +5353,98138,179,1,t +5353,98138,46,8,f +5353,98138,47,1,t +5353,98138,34,5,f +5353,98138,47,2,f +5353,98138,179,1,f +5353,98138,34,2,t +5353,98138,46,2,t +5353,98138,36,5,f +5353,98138,36,2,t +5353,98263,71,1,f +5353,98285,0,1,f +5353,98286,71,1,f +5353,98313,0,1,f +5353,98397,71,2,f +5353,98496pr0001b,15,1,f +5353,99774,72,2,f +5353,99781,0,2,f +5354,2412b,0,1,f +5354,30027,73,2,f +5354,30028,0,2,f +5354,3020,7,1,f +5354,30602,1,1,f +5354,30608,0,1,f +5354,3626bp6f,14,1,f +5354,3626bpb0119,14,1,f +5354,3795,0,1,f +5354,4081b,4,2,f +5354,41854,73,2,f +5354,41855,1,1,f +5354,4530,4,1,f +5354,4600,7,1,f +5354,6014,73,2,f +5354,6015,0,2,f +5354,6157,0,1,f +5354,x351,0,1,f +5355,2432,72,1,f +5355,3021,71,1,f +5355,3022,72,2,f +5355,3023,72,2,f +5355,30602,72,1,f +5355,32028,71,1,f +5355,32062,0,1,f +5355,3794b,71,1,f +5355,3937,72,1,f +5355,3941,47,1,f +5355,4032a,71,1,f +5355,4589,1,1,f +5355,47755,1,1,f +5355,48729b,71,1,t +5355,48729b,71,1,f +5355,50950,71,6,f +5355,60478,71,6,f +5355,6134,71,1,f +5355,6141,182,1,t +5355,6141,41,1,t +5355,6141,41,1,f +5355,6141,182,2,f +5355,63868,1,12,f +5355,63965,72,1,f +5355,75937,0,1,f +5355,85984,72,1,f +5355,98313,179,1,f +5355,99781,71,1,f +5356,3003pe2,4,1,f +5356,3004,0,3,f +5356,3021,1,1,f +5356,3040b,4,2,f +5356,3298,0,1,f +5356,3660,0,1,f +5357,2278pb02,14,1,f +5357,2334c02pb03,15,1,f +5357,3011,41,1,f +5357,3011,27,1,f +5357,3011,10,1,f +5357,3011,15,1,f +5357,3011,484,1,f +5357,31168,2,1,f +5357,3437,484,1,f +5357,3437,19,1,f +5357,3437,2,2,f +5357,3437,15,1,f +5357,54300cx1,191,1,f +5357,64150,15,1,f +5357,6510,4,1,f +5357,6510,10,1,f +5357,74705,72,1,f +5357,75113pr0004c01,19,1,f +5357,89879,72,1,f +5357,elephc01pb01,72,1,f +5361,2343,0,1,f +5361,2431,19,1,f +5361,2453a,71,6,f +5361,2546,72,4,f +5361,3003,72,2,f +5361,3003,71,2,f +5361,3004,19,4,f +5361,3004,72,14,f +5361,30044,71,2,f +5361,30045,0,3,f +5361,3005,72,8,f +5361,3005,19,2,f +5361,3008,71,2,f +5361,3010,19,5,f +5361,30153,33,1,f +5361,3020,70,1,f +5361,3021,72,2,f +5361,3023,72,2,f +5361,3034,72,2,f +5361,30374,0,1,f +5361,30374,72,4,f +5361,30381,72,1,f +5361,3039,19,3,f +5361,3039,378,3,f +5361,3039,71,1,f +5361,3040b,19,4,f +5361,3040b,378,2,f +5361,3044b,0,1,f +5361,3045,378,2,f +5361,3045,19,2,f +5361,30562,71,4,f +5361,3062b,42,1,f +5361,3062b,0,3,f +5361,3062b,484,10,f +5361,3069bpx41,15,1,f +5361,3070bpr007,19,1,f +5361,3070bpr007,19,1,t +5361,3460,72,1,f +5361,3623,72,2,f +5361,3626bpb0207,78,1,f +5361,3626bpb0208,378,1,f +5361,3626bph1,78,1,f +5361,3659,19,2,f +5361,3660,72,2,f +5361,3665,72,4,f +5361,3666,0,1,f +5361,3684,72,2,f +5361,3710,72,1,f +5361,3710,70,3,f +5361,3795,0,2,f +5361,3830,72,2,f +5361,3831,72,2,f +5361,3937,0,2,f +5361,3938,71,2,f +5361,40233,0,1,f +5361,40234,70,1,f +5361,40241,70,1,f +5361,40242,19,1,f +5361,4070,71,4,f +5361,4460b,72,4,f +5361,4530,0,1,f +5361,48092,19,2,f +5361,48092,72,8,f +5361,48284,72,2,f +5361,48457,378,1,f +5361,4865a,71,2,f +5361,49193,72,1,f +5361,50231,0,1,f +5361,6003,71,8,f +5361,6126a,57,3,f +5361,6231,0,2,f +5361,6260,378,1,f +5361,6265,378,2,f +5361,62808,0,2,f +5361,970c00,72,2,f +5361,973pb0329c01,72,1,f +5361,973pr0907c01,72,1,f +5361,buckbeakc01,71,1,f +5363,2412b,15,1,t +5363,2412b,15,2,f +5363,3004,0,1,f +5363,3020,0,1,f +5363,3022,72,1,f +5363,3023,15,2,f +5363,3710,0,1,f +5363,6141,1,1,t +5363,6141,1,2,f +5368,11610,179,2,f +5368,15392,72,1,t +5368,15403,0,2,f +5368,18671,272,1,f +5368,22385,179,1,f +5368,2420,1,2,f +5368,3021,1,1,f +5368,3022,71,1,f +5368,30273,1,2,f +5368,32039,71,4,f +5368,32073,71,4,f +5368,32123b,14,1,t +5368,32123b,14,2,f +5368,3626cpr1817,179,1,f +5368,3713,4,1,t +5368,3713,4,2,f +5368,3849,179,1,f +5368,3894,71,1,f +5368,41677,1,2,f +5368,4589,57,2,f +5368,6118,148,2,f +5368,6141,57,1,t +5368,6141,57,4,f +5368,92946,1,2,f +5368,970c00pr0968,71,1,f +5368,973pr3190c01,71,1,f +5369,44336pr04,72,1,f +5369,44343pr03,72,1,f +5370,3020,322,1,f +5370,30218,15,1,f +5370,3032,19,1,f +5370,3039,19,1,f +5370,3040b,19,1,f +5370,3069bpr0130,322,1,f +5370,33121,191,1,f +5370,33122,52,1,f +5370,3794a,19,1,f +5370,4490,19,1,f +5370,54200,19,2,f +5370,59900,19,3,f +5370,6141,297,1,f +5370,6141,41,1,f +5370,6182,19,1,f +5370,87580,322,1,f +5370,93092,5,1,f +5372,122c01,0,3,f +5372,3004,1,2,f +5372,3020,4,1,f +5372,3020,0,1,f +5372,3023,4,4,f +5372,3024,46,2,f +5372,3044a,1,2,f +5372,3069b,4,1,f +5372,3070b,14,2,f +5372,3464,4,2,f +5372,3622,1,2,f +5372,3626apr0001,14,1,f +5372,3641,0,8,f +5372,3710,4,1,f +5372,3730,4,1,f +5372,3731,4,1,f +5372,3788,4,1,f +5372,3794a,4,1,f +5372,3795,0,1,f +5372,3821,1,1,f +5372,3822,1,1,f +5372,3823,47,1,f +5372,3829c01,1,1,f +5372,3842a,1,1,f +5372,4070,1,2,f +5372,4211,4,1,f +5372,4213,4,1,f +5372,4214,4,1,f +5372,4275a,4,2,f +5372,4276a,4,2,f +5372,4480c01,7,1,f +5372,970c00,0,1,f +5372,973c01,15,1,f +5373,2352,14,2,f +5373,2456,14,4,f +5373,2456,1,4,f +5373,2456,4,4,f +5373,3001,2,8,f +5373,3001,4,24,f +5373,3001,14,20,f +5373,3001,15,20,f +5373,3001,1,24,f +5373,3001,0,12,f +5373,3001pr1,14,2,f +5373,3002,1,10,f +5373,3002,4,10,f +5373,3002,0,4,f +5373,3002,14,8,f +5373,3002,2,4,f +5373,3002,15,8,f +5373,3003,2,12,f +5373,3003,4,34,f +5373,3003,15,28,f +5373,3003,14,28,f +5373,3003,1,34,f +5373,3003,0,18,f +5373,3003pe2,15,2,f +5373,3003pe2,14,2,f +5373,3007,1,4,f +5373,30072,2,1,f +5373,30076,0,1,f +5373,30078,2,1,f +5373,30143px1,14,1,f +5373,32525,14,2,f +5373,33303,15,6,f +5373,3483,0,12,f +5373,4617b,0,2,f +5373,4727,2,4,f +5373,4728,15,1,f +5373,4728,4,1,f +5373,4728,1,1,f +5373,4728,14,1,f +5373,4729,14,1,f +5373,4743,1,1,f +5373,4743,14,1,f +5373,4744,14,1,f +5373,4744pr0001,0,1,f +5373,4744pr0002,4,1,f +5373,4744pr0003,4,1,f +5373,4744pr0004,2,1,f +5373,4744pr0005,14,1,f +5373,600,15,2,f +5373,601,15,4,f +5373,6212,1,1,f +5373,6214,2,1,f +5373,6215,2,4,f +5373,6215,1,4,f +5373,6215,14,4,f +5373,6215,4,4,f +5373,6216,2,2,f +5373,6216,1,2,f +5373,6232,14,2,f +5373,6235,4,2,f +5373,6236,4,2,f +5373,6248,4,12,f +5373,6249,4,6,f +5373,82248,1,1,f +5373,82249,15,1,f +5374,298c02,7,2,f +5374,3002,0,1,f +5374,3003,0,2,f +5374,3004,0,7,f +5374,3004,4,3,f +5374,3005,4,15,f +5374,3005,0,2,f +5374,3007,0,1,f +5374,3009,4,2,f +5374,3023,7,4,f +5374,3023,0,4,f +5374,3030,0,2,f +5374,3031,7,1,f +5374,3039p32,15,1,f +5374,3040b,0,4,f +5374,3069b,0,2,f +5374,3228b,7,4,f +5374,3297,4,2,f +5374,3622,4,3,f +5374,3624,4,1,f +5374,3626apr0001,14,1,f +5374,3660,0,7,f +5374,3665,4,4,f +5374,3679,7,1,f +5374,3680,0,1,f +5374,3700,0,2,f +5374,3710,7,5,f +5374,3710,4,1,f +5374,3741,2,2,f +5374,3742,4,3,f +5374,3742,4,1,t +5374,3742,14,1,t +5374,3742,14,3,f +5374,3778,2,1,f +5374,3957a,7,1,f +5374,3958,4,1,f +5374,4079,7,1,f +5374,4162,7,8,f +5374,4166,8,5,f +5374,4185,7,2,f +5374,4274,7,2,f +5374,4512p01,15,2,f +5374,4515,7,4,f +5374,4519,0,2,f +5374,47899c01,15,1,f +5374,4872,47,2,f +5374,606p01,7,1,f +5374,649p01,15,2,f +5374,649pb06,15,2,f +5374,70163,0,2,f +5374,970c00,1,1,f +5374,973p18c01,1,1,f +5375,2340,15,1,f +5375,2343,7,4,f +5375,2348b,41,1,f +5375,2349a,15,1,f +5375,2377,15,2,f +5375,2412a,1,1,f +5375,2412a,15,4,f +5375,2412a,0,3,f +5375,2419,15,1,f +5375,2420,15,2,f +5375,2431,15,3,f +5375,2431,0,1,f +5375,2436,1,2,f +5375,2436,15,1,f +5375,2437,41,1,f +5375,2444,15,1,f +5375,2445,0,1,f +5375,2446,1,2,f +5375,2446,4,1,f +5375,2447,0,1,f +5375,2447,41,2,f +5375,2447,41,1,t +5375,2447,0,1,t +5375,2496,0,3,f +5375,2555,0,1,f +5375,2555,15,2,f +5375,2582,15,4,f +5375,2655,7,3,f +5375,2736,7,1,f +5375,2877,15,2,f +5375,2880,4,2,f +5375,2921,15,2,f +5375,298c01,15,1,t +5375,298c01,0,1,t +5375,298c01,0,4,f +5375,298c02,15,7,f +5375,3003,15,1,f +5375,3004,7,2,f +5375,3004,0,1,f +5375,3004,15,7,f +5375,3005,4,4,f +5375,3005,15,2,f +5375,3008,15,2,f +5375,3010,15,6,f +5375,3020,1,1,f +5375,3020,15,3,f +5375,3020,0,1,f +5375,3021,0,1,f +5375,3021,15,2,f +5375,3021,1,4,f +5375,3022,1,1,f +5375,3022,0,4,f +5375,3023,0,4,f +5375,3023,1,6,f +5375,3023,15,7,f +5375,3024,46,8,f +5375,3024,46,1,t +5375,3024,33,2,f +5375,3024,36,2,f +5375,3031,15,2,f +5375,3031,0,1,f +5375,3034,0,1,f +5375,3034,1,1,f +5375,3038,15,3,f +5375,3039,15,3,f +5375,3039,4,1,f +5375,3039p34,7,1,f +5375,3040b,15,2,f +5375,3062b,7,4,f +5375,3062b,46,2,f +5375,3068b,15,3,f +5375,3068b,7,1,f +5375,3069b,15,2,f +5375,3069b,4,1,f +5375,3069bp09,15,1,f +5375,3070b,33,2,f +5375,3070b,36,8,f +5375,3070b,33,1,t +5375,3070b,36,1,t +5375,3460,0,1,f +5375,3464,47,4,f +5375,3491,0,1,f +5375,3585,15,1,f +5375,3586,15,1,f +5375,3612,7,6,f +5375,3622,15,3,f +5375,3623,15,6,f +5375,3626bpr0001,14,5,f +5375,3641,0,16,f +5375,3660,7,2,f +5375,3666,15,6,f +5375,3701,15,1,f +5375,3709,1,1,f +5375,3710,15,4,f +5375,3738,1,1,f +5375,3788,15,2,f +5375,3794a,15,10,f +5375,3821,15,2,f +5375,3822,15,2,f +5375,3823,41,2,f +5375,3829c01,4,2,f +5375,3943b,0,2,f +5375,3956,0,2,f +5375,3957a,14,1,f +5375,3957a,15,3,f +5375,3957a,4,2,f +5375,3962b,0,1,f +5375,4032a,7,2,f +5375,4070,15,4,f +5375,4081b,4,2,f +5375,4083,4,3,f +5375,4085c,15,4,f +5375,4085c,7,2,f +5375,4085c,1,2,f +5375,4162,15,6,f +5375,4211,15,1,f +5375,4212b,1,1,f +5375,4213,15,1,f +5375,4214,15,2,f +5375,4220,7,1,f +5375,4221,7,2,f +5375,4276b,15,2,f +5375,4282,1,1,f +5375,4282,7,1,f +5375,4480c01,15,2,f +5375,4485,4,2,f +5375,4488,7,8,f +5375,4589,0,2,f +5375,4589,14,1,f +5375,4599a,7,2,f +5375,4600,0,5,f +5375,4624,15,12,f +5375,4625,15,4,f +5375,4740,36,1,f +5375,4856a,0,1,f +5375,4858,15,1,f +5375,4859,15,2,f +5375,4861,15,1,f +5375,4862,41,2,f +5375,4864a,15,4,f +5375,4865a,15,3,f +5375,4865a,0,2,f +5375,4868a,15,2,f +5375,4869,7,2,f +5375,6014a,15,6,f +5375,6015,0,6,f +5375,6016,7,1,f +5375,6048a,0,1,f +5375,6087,0,1,f +5375,6091,15,6,f +5375,6141,46,13,f +5375,6141,46,2,t +5375,6141,33,4,f +5375,6141,33,1,t +5375,6141,0,1,t +5375,6141,0,2,f +5375,6346stk01,9999,1,t +5375,970c00,4,2,f +5375,970c00,1,2,f +5375,970c00,15,1,f +5375,973c02,4,2,f +5375,973p0bc01,15,3,f +5376,2340,15,1,f +5376,2412b,15,1,f +5376,2431,0,4,f +5376,2458,7,2,f +5376,2460,7,1,f +5376,2479,0,1,f +5376,2496,0,3,f +5376,2655,7,3,f +5376,3001,1,1,f +5376,3004,15,3,f +5376,3008,1,2,f +5376,3020,15,4,f +5376,3020,7,1,f +5376,3021,73,1,f +5376,3021,1,4,f +5376,3022,1,1,f +5376,3022,7,2,f +5376,3023,7,4,f +5376,3034,73,3,f +5376,3034,1,1,f +5376,3039,1,1,f +5376,3039,40,1,f +5376,3039,47,1,f +5376,3062b,15,4,f +5376,3068b,15,2,f +5376,3070b,46,2,f +5376,3460,15,4,f +5376,3623,1,2,f +5376,3660,7,2,f +5376,3666,73,2,f +5376,3673,7,2,f +5376,3710,73,2,f +5376,3747a,7,3,f +5376,3794a,1,2,f +5376,3795,73,1,f +5376,3795,1,2,f +5376,3933,1,2,f +5376,3934,1,2,f +5376,4070,73,2,f +5376,4081b,73,6,f +5376,41769,1,2,f +5376,41770,1,2,f +5376,42022,15,2,f +5376,4286,1,2,f +5376,4286,15,6,f +5376,4287,7,4,f +5376,43710,1,1,f +5376,43711,1,1,f +5376,43720,7,1,f +5376,43721,7,1,f +5376,44661,15,1,f +5376,4589,34,2,f +5376,4617b,0,3,f +5376,4855,7,2,f +5376,6070,143,1,f +5376,6141,36,2,f +5376,6141,36,1,t +5376,6141,4,1,t +5376,6141,57,2,f +5376,6141,4,2,f +5376,6141,57,1,t +5376,6541,7,2,f +5376,6564,73,1,f +5376,6565,73,1,f +5377,10190,0,2,f +5377,11090,0,4,f +5377,11211,71,9,f +5377,11213,71,1,f +5377,12939,15,1,f +5377,13269,15,2,f +5377,13548,71,3,f +5377,14769,14,2,f +5377,15068,14,2,f +5377,15100,0,1,f +5377,15254,4,2,f +5377,15392,72,2,f +5377,15395,15,1,f +5377,15573,14,2,f +5377,15573,72,2,f +5377,17454,15,2,f +5377,17457,41,2,f +5377,18674,15,1,f +5377,19220,0,1,f +5377,20033,4,1,f +5377,23922,14,2,f +5377,2412b,72,4,f +5377,2412b,15,8,f +5377,2420,0,2,f +5377,2431,33,2,f +5377,2431,2,2,f +5377,2432,0,2,f +5377,2446,15,1,f +5377,2450,0,4,f +5377,2456,72,2,f +5377,2456,15,7,f +5377,2486,14,2,f +5377,2540,0,5,f +5377,2736,71,1,f +5377,298c02,0,1,f +5377,298c02,14,4,f +5377,3001,72,1,f +5377,3001,4,1,f +5377,3002,0,2,f +5377,3002,15,2,f +5377,30036,71,1,f +5377,3004,0,4,f +5377,3008,15,1,f +5377,3008,0,1,f +5377,30086,14,1,f +5377,3009,15,2,f +5377,3009,70,4,f +5377,3009,72,5,f +5377,30090,41,1,f +5377,30091,72,1,f +5377,3010,72,2,f +5377,30162,72,2,f +5377,3020,15,2,f +5377,3020,1,2,f +5377,3021,72,4,f +5377,3021,0,2,f +5377,3023,33,3,f +5377,30237b,4,1,f +5377,30237b,15,2,f +5377,3027,1,1,f +5377,3029,1,1,f +5377,3032,70,1,f +5377,3034,71,2,f +5377,30340,14,3,f +5377,3035,0,1,f +5377,30350a,0,2,f +5377,3036,0,2,f +5377,30361,15,2,f +5377,30367c,15,3,f +5377,3039pr0005,15,1,f +5377,3039pr0013,15,1,f +5377,3040b,72,2,f +5377,30414,71,2,f +5377,3062b,46,1,f +5377,3062b,14,4,f +5377,30663,0,1,f +5377,3069b,15,1,f +5377,3069b,2,7,f +5377,3069b,46,2,f +5377,3176,14,1,f +5377,32059,72,2,f +5377,32278,0,1,f +5377,3245b,4,1,f +5377,3245b,15,5,f +5377,3298,72,1,f +5377,3460,15,2,f +5377,3460,71,1,f +5377,3460,70,1,f +5377,3624,15,1,f +5377,3626bpr0389,14,1,f +5377,3626cpr0893,14,1,f +5377,3626cpr0929,14,1,f +5377,3626cpr1146,14,1,f +5377,3626cpr1559,14,1,f +5377,3659,308,4,f +5377,3666,0,4,f +5377,3678b,15,9,f +5377,3710,0,3,f +5377,3710,70,1,f +5377,3713,4,1,f +5377,3795,19,1,f +5377,3829c01,1,2,f +5377,3834,15,2,f +5377,3835,0,1,f +5377,3839b,0,2,f +5377,3899,4,2,f +5377,3941,46,2,f +5377,3956,0,2,f +5377,4006,0,1,f +5377,4032a,1,1,f +5377,4032a,0,1,f +5377,41334,272,1,f +5377,41532,0,2,f +5377,4162,72,1,f +5377,4175,72,1,f +5377,41769,0,2,f +5377,41770,0,2,f +5377,4274,1,1,f +5377,4289,15,1,f +5377,4349,0,2,f +5377,43898,0,2,f +5377,4445,15,1,f +5377,44728,0,1,f +5377,4477,0,1,f +5377,4515,72,1,f +5377,4528,0,1,f +5377,4533,71,1,f +5377,4599b,14,2,f +5377,4599b,0,1,f +5377,4740,0,1,f +5377,4740,182,2,f +5377,47457,72,1,f +5377,47847,72,2,f +5377,48336,2,1,f +5377,54200,0,1,f +5377,57779,14,1,f +5377,59900,14,2,f +5377,60471,0,2,f +5377,60476,15,4,f +5377,60478,0,1,f +5377,60581,71,1,f +5377,60593,70,1,f +5377,60596,71,1,f +5377,60623,2,1,f +5377,6126a,41,2,f +5377,6141,15,10,f +5377,6141,41,4,f +5377,6141,0,1,f +5377,61485,71,1,f +5377,62113,72,2,f +5377,62576,15,2,f +5377,6259,15,4,f +5377,63864,0,2,f +5377,64799,0,2,f +5377,6628,0,1,f +5377,84954,41,1,f +5377,85861,182,2,f +5377,85959pat0002,41,1,f +5377,85959pat0003,36,2,f +5377,85984,15,4,f +5377,85984pr0143,72,1,f +5377,87079,71,1,f +5377,87081,0,1,f +5377,87081,15,3,f +5377,87081,4,2,f +5377,87083,72,1,f +5377,87087,15,2,f +5377,87580,71,2,f +5377,87580,15,2,f +5377,87580,0,2,f +5377,87620,15,8,f +5377,88072,14,6,f +5377,89648,15,1,f +5377,89649,41,1,f +5377,91405,72,1,f +5377,91988,71,1,f +5377,92280,15,1,f +5377,92410,4,1,f +5377,92438,72,1,f +5377,92593,72,1,f +5377,93140,15,1,f +5377,93273,14,2,f +5377,95228,47,1,f +5377,96874,25,1,t +5377,970c00,0,1,f +5377,970c00,1,1,f +5377,970c00pr0408,0,2,f +5377,970c00pr0984,0,1,f +5377,973pr1580c01,15,1,f +5377,973pr2249c01,15,1,f +5377,973pr3205c01,0,2,f +5377,973pr3206c01,0,1,f +5377,97895,14,2,f +5377,98138,71,1,f +5377,98138,34,3,f +5377,98138,36,3,f +5377,98138,33,17,f +5377,98313,0,1,f +5377,98560,0,2,f +5377,98585,71,1,f +5377,99021,72,1,f +5377,99780,71,1,f +5379,15,15,2,f +5379,15,4,1,f +5379,15,1,2,f +5379,17,15,1,f +5379,17,4,2,f +5379,17,1,2,f +5379,3001a,4,8,f +5379,3003,4,1,f +5379,3003,0,1,f +5379,3004,4,48,f +5379,3004,0,2,f +5379,3005,4,47,f +5379,3006,4,2,f +5379,3007,4,7,f +5379,3008,15,1,f +5379,3008,4,18,f +5379,3009,4,12,f +5379,3010,4,40,f +5379,3010,0,2,f +5379,3020,0,1,f +5379,3021,7,4,f +5379,3023,0,1,f +5379,3031,4,2,f +5379,3032,4,1,f +5379,3034,15,4,f +5379,3035,7,1,f +5379,3036,7,8,f +5379,3062a,0,4,f +5379,3068b,7,2,f +5379,3069a,7,1,f +5379,3081cc01,15,10,f +5379,3139,0,4,f +5379,3144,79,1,f +5379,3228a,1,6,f +5379,33bc01,15,1,f +5379,3456,7,1,f +5379,3460,7,1,f +5379,3464,4,4,f +5379,3579,15,6,f +5379,3624,0,2,f +5379,3624,4,1,f +5379,3625,0,2,f +5379,3626a,14,5,f +5379,453cc01,15,2,f +5379,604c01,15,4,f +5379,645cc01,15,1,f +5379,700ed,2,3,f +5379,7930,4,6,f +5379,8,7,4,f +5381,3003,15,1,f +5381,3957a,15,1,f +5381,4495b,5,1,f +5381,4728,45,1,f +5381,6203,5,1,f +5385,11169,4,2,f +5385,11169,10,4,f +5385,11170,1,3,f +5385,11197,191,1,f +5385,12659,4,1,f +5385,13258,10,1,f +5385,15211,14,1,f +5385,15868,27,1,f +5385,15947,29,1,f +5385,15950,191,1,f +5385,16320,191,1,f +5385,16685,4,1,f +5385,18816,322,1,f +5385,20678,41,2,f +5385,2300,4,1,f +5385,2301,1,2,f +5385,2302,14,2,f +5385,2302,1,2,f +5385,2302,10,2,f +5385,3011,484,2,f +5385,3011,15,2,f +5385,3011,1,3,f +5385,3011,72,2,f +5385,3011,4,3,f +5385,3011,73,2,f +5385,3011,14,3,f +5385,3011,27,4,f +5385,3011,10,3,f +5385,3011,191,2,f +5385,31213,4,1,f +5385,3437,15,2,f +5385,3437,191,4,f +5385,3437,5,2,f +5385,3437,14,12,f +5385,3437,10,12,f +5385,3437,4,12,f +5385,3437,27,7,f +5385,3437,484,4,f +5385,3437,1,10,f +5385,3437,322,4,f +5385,3437,85,4,f +5385,3437,0,2,f +5385,3437,73,8,f +5385,3437,25,4,f +5385,3437,71,4,f +5385,3664,10,2,f +5385,4066,5,2,f +5385,40666,15,2,f +5385,40666,73,2,f +5385,40666,10,2,f +5385,40666,14,2,f +5385,44524,4,1,f +5385,45141,179,1,f +5385,47510pr0005,73,1,f +5385,47511pr0003,15,1,f +5385,61649,1,1,f +5385,6474,71,4,f +5385,6510,5,2,f +5385,6510,2,2,f +5385,6510,10,2,f +5385,6510,14,2,f +5385,73355,10,1,f +5385,76371,73,2,f +5385,92011,4,1,f +5385,95485,0,1,f +5385,98223,4,1,f +5385,98223,10,1,f +5385,98224,10,1,f +5385,98224,1,1,f +5385,98224,15,1,f +5385,98224,4,2,f +5385,98252,5,2,f +5385,98252,27,2,f +5387,2412b,71,13,f +5387,2431,2,1,f +5387,2431,71,5,f +5387,2456,2,1,f +5387,2508,0,1,f +5387,2555,71,8,f +5387,2780,0,2,t +5387,2780,0,30,f +5387,298c02,0,3,f +5387,298c02,0,1,t +5387,30000,1,2,f +5387,3004,2,5,f +5387,3009,2,3,f +5387,30162,72,2,f +5387,3020,71,3,f +5387,3020,2,4,f +5387,3022,2,2,f +5387,3023,0,4,f +5387,3023,46,2,f +5387,3023,4,1,f +5387,3023,1,1,f +5387,3024,46,2,f +5387,3031,71,1,f +5387,3034,15,1,f +5387,3034,2,1,f +5387,3036,2,4,f +5387,3037,71,1,f +5387,30391,0,12,f +5387,30396,0,1,f +5387,30414,71,2,f +5387,3062b,4,2,f +5387,3068b,4,1,f +5387,3069b,2,2,f +5387,3069b,72,1,f +5387,3069b,15,1,f +5387,3069bpr0101,71,1,f +5387,3176,0,3,f +5387,32018,71,4,f +5387,32028,14,2,f +5387,32523,71,2,f +5387,32523,14,1,f +5387,32526,4,4,f +5387,3460,15,1,f +5387,3460,2,4,f +5387,3460,72,1,f +5387,3622,15,4,f +5387,3626bpr0270,14,1,f +5387,3660,2,2,f +5387,3673,71,1,t +5387,3673,71,11,f +5387,3700,71,6,f +5387,3702,4,4,f +5387,3703,0,2,f +5387,3706,0,4,f +5387,3710,15,2,f +5387,3713,4,10,f +5387,3713,4,3,t +5387,3794a,15,3,f +5387,3823,40,2,f +5387,3829c01,4,1,f +5387,3899,4,1,f +5387,3937,15,2,f +5387,3941,71,4,f +5387,4079b,4,2,f +5387,4162,71,6,f +5387,42022,15,2,f +5387,43093,1,6,f +5387,43337,15,2,f +5387,4345b,71,2,f +5387,4346,71,2,f +5387,44567a,71,1,f +5387,44728,72,2,f +5387,4485,1,1,f +5387,4510,15,1,f +5387,4519,71,2,f +5387,4733,15,4,f +5387,47720,0,1,f +5387,48336,15,7,f +5387,4865a,15,8,f +5387,50950,72,6,f +5387,52031,2,1,f +5387,52107,0,8,f +5387,53586,135,2,f +5387,54200,14,4,f +5387,54200,182,8,f +5387,54200,15,10,f +5387,54200,36,4,f +5387,55013,72,2,f +5387,55981,71,12,f +5387,57781,2,2,f +5387,6134,4,2,f +5387,6140,71,2,f +5387,6141,46,1,t +5387,6141,46,4,f +5387,6232,71,4,f +5387,6536,0,2,f +5387,6538b,0,1,f +5387,6636,15,1,f +5387,7998stk01,9999,1,t +5387,970c00,1,1,f +5387,973pr1244c01,73,1,f +5389,45452,45,2,f +5389,45462,52,1,f +5389,45463,52,1,f +5389,45464,52,1,f +5389,45464,41,1,f +5389,46277,45,2,f +5389,46286,52,1,f +5389,clikits006pb02,15,1,f +5390,13349,0,1,f +5390,13731,0,2,f +5390,15712,15,2,f +5390,18654,72,2,f +5390,18674,15,2,f +5390,22889,0,1,f +5390,2412b,0,1,f +5390,2432,0,4,f +5390,2446,1,1,f +5390,2447,40,1,f +5390,2458,71,1,f +5390,2654,71,3,f +5390,2877,71,2,f +5390,3001,71,1,f +5390,3001,27,1,f +5390,3020,71,1,f +5390,3021,0,2,f +5390,3022,27,1,f +5390,3023,4,2,f +5390,3023,0,4,f +5390,3024,34,3,f +5390,3024,36,3,f +5390,3034,15,1,f +5390,3070b,0,2,f +5390,3626cpr0933,14,1,f +5390,3666,15,2,f +5390,3710,4,2,f +5390,3710,27,3,f +5390,3829c01,4,1,f +5390,3832,4,1,f +5390,41764,0,1,f +5390,41765,0,1,f +5390,41769,15,2,f +5390,41770,15,2,f +5390,47456,0,1,f +5390,47458,0,1,f +5390,50943,72,1,f +5390,59900,36,1,f +5390,59900,34,1,f +5390,59900,72,8,f +5390,60219,0,2,f +5390,60470a,4,2,f +5390,6091,27,2,f +5390,6111,15,2,f +5390,6153b,27,1,f +5390,61678,0,2,f +5390,64644,71,2,f +5390,85984,0,1,f +5390,85984pr0143,72,1,f +5390,90194,15,1,f +5390,92279,40,1,f +5390,970c00,1,1,f +5390,973pr0817c01,321,1,f +5390,97895,14,1,f +5390,99780,71,1,f +5391,3035,15,5,f +5393,2431pw0,0,1,f +5393,2436,7,1,f +5393,2470,0,2,f +5393,2489,6,1,f +5393,2555,0,2,f +5393,30132,8,1,t +5393,30132,8,1,f +5393,30133,15,1,f +5393,30141,8,2,f +5393,3020,0,1,f +5393,3021,7,1,f +5393,3069bp03,7,1,f +5393,3626bpx78,14,1,f +5393,3629,6,1,f +5393,3839b,0,1,f +5393,6157,0,1,f +5393,970c00,8,1,f +5393,973px54c01,0,1,f +5394,13039,15,1,f +5394,17744,72,1,f +5394,18012,71,1,f +5394,3437,25,1,f +5394,3437,10,1,f +5394,3437,72,1,f +5394,41969,0,1,f +5394,47202bpr0007,25,1,f +5394,47509,179,1,f +5394,85355,14,1,f +5394,89812,14,1,f +5394,89862,14,1,f +5395,2476a,4,1,f +5395,3001,15,2,f +5395,3022,0,2,f +5395,30261,15,2,f +5395,3032,2,1,f +5395,30488c01,15,1,f +5395,30492,2,1,f +5395,3419stk01,9999,1,t +5395,3626bp05,14,1,f +5395,3754,15,1,f +5395,3901,6,1,f +5395,3957a,15,2,f +5395,4282,15,1,f +5395,4282,2,1,f +5395,4476b,15,2,f +5395,4733,0,1,f +5395,72824p01,15,1,f +5395,970c00,1,1,f +5395,973pb0104c01,15,1,f +5399,2412b,15,2,f +5399,2540,19,4,f +5399,3023,71,1,f +5399,3023,15,3,f +5399,3023,47,1,f +5399,30374,15,4,f +5399,3062b,15,4,f +5399,3069bps4,15,2,f +5399,3069bps5,15,2,f +5399,3623,19,1,f +5399,3710,15,1,f +5399,3710,320,1,f +5399,3794a,320,1,f +5399,3794a,15,1,f +5399,6019,15,8,f +5399,6141,71,1,t +5399,6141,71,1,f +5399,6538b,15,4,f +5400,194cx1,2,1,f +5400,2343,47,2,f +5400,2357,0,2,f +5400,2357,14,2,f +5400,2377,0,2,f +5400,2412b,14,16,f +5400,2412b,0,20,f +5400,2420,1,8,f +5400,2420,14,2,f +5400,2431,15,10,f +5400,2431,7,2,f +5400,2431,0,3,f +5400,2431,14,2,f +5400,2431pc1,0,1,f +5400,2432,14,4,f +5400,2433,0,18,f +5400,2436,0,1,f +5400,2449,0,6,f +5400,2458,14,1,f +5400,2460,14,2,f +5400,2582,41,16,f +5400,2584,0,1,f +5400,2585,0,1,f +5400,2605c01,0,2,f +5400,2654,0,3,f +5400,2780,0,2,f +5400,2868b,0,1,f +5400,2871a,0,2,f +5400,2875,0,8,f +5400,2876,0,1,f +5400,2877,0,19,f +5400,2877,14,18,f +5400,2878c01,0,6,f +5400,2916,14,1,f +5400,2917,0,1,f +5400,2918,41,1,f +5400,2919,46,1,f +5400,2920,0,2,f +5400,2926,0,3,f +5400,2972,14,2,f +5400,298c01,0,1,t +5400,298c01,0,4,f +5400,3003,1,2,f +5400,3004,0,8,f +5400,3004,14,6,f +5400,3004px1,15,1,f +5400,3005,0,8,f +5400,3009,0,2,f +5400,3010,14,4,f +5400,3010,0,32,f +5400,3020,14,4,f +5400,3020,0,3,f +5400,3021,14,3,f +5400,3021,7,2,f +5400,3022,14,2,f +5400,3022,0,11,f +5400,3023,4,1,f +5400,3023,7,4,f +5400,3023,2,2,f +5400,3023,14,29,f +5400,3023,0,22,f +5400,3023,15,9,f +5400,3024,14,8,f +5400,3024,4,1,f +5400,3024,46,2,f +5400,3024,36,4,f +5400,3029,14,1,f +5400,3031,0,1,f +5400,3031,15,1,f +5400,3032,0,1,f +5400,3034,0,8,f +5400,3036,14,4,f +5400,3039,0,5,f +5400,3040b,0,10,f +5400,3040b,1,8,f +5400,3062b,0,16,f +5400,3068b,14,1,f +5400,3068b,15,2,f +5400,3068b,7,1,f +5400,3068b,0,8,f +5400,3069b,15,1,f +5400,3069b,1,4,f +5400,3069b,0,4,f +5400,3069bp08,15,3,f +5400,3069bp68,15,1,f +5400,3069bpr0099,15,2,f +5400,3069bpr0100,2,2,f +5400,3070b,14,1,t +5400,3070b,46,1,t +5400,3070b,0,1,t +5400,3070b,14,16,f +5400,3070b,0,2,f +5400,3070b,46,2,f +5400,3456,7,1,f +5400,3460,0,2,f +5400,3623,0,12,f +5400,3623,14,2,f +5400,3624,4,1,f +5400,3626bp02,14,2,f +5400,3626bp03,14,2,f +5400,3626bp04,14,1,f +5400,3626bp05,14,1,f +5400,3626bpx11,14,1,f +5400,3659,0,1,f +5400,3660,0,2,f +5400,3666,7,2,f +5400,3666,0,22,f +5400,3666,14,11,f +5400,3679,7,2,f +5400,3680,0,2,f +5400,3700,15,1,f +5400,3700,14,8,f +5400,3710,0,21,f +5400,3710,14,4,f +5400,3710,7,6,f +5400,3710,15,17,f +5400,3794a,15,4,f +5400,3795,15,2,f +5400,3795,14,5,f +5400,3795,0,8,f +5400,3821,0,1,f +5400,3822,0,1,f +5400,3829c01,14,1,f +5400,3832,7,2,f +5400,3832,14,2,f +5400,3833,15,1,f +5400,3839b,0,2,f +5400,3901,0,2,f +5400,3937,0,4,f +5400,3938,14,4,f +5400,3957a,0,2,f +5400,4022,0,2,f +5400,4025,0,3,f +5400,4032a,14,1,f +5400,4034,41,4,f +5400,4070,0,8,f +5400,4070,14,20,f +5400,4085c,4,1,f +5400,4085c,0,2,f +5400,4150,14,1,f +5400,4176,41,1,f +5400,4213,0,1,f +5400,4262,0,4,f +5400,4276b,0,18,f +5400,4286,14,8,f +5400,4315,0,1,f +5400,4345b,15,4,f +5400,4345b,7,2,f +5400,4346p03,15,2,f +5400,4346px2,15,2,f +5400,4346px3,7,2,f +5400,4449,0,2,f +5400,4460a,0,4,f +5400,4485,4,1,f +5400,4515,7,1,f +5400,4559stk01,9999,1,t +5400,4589,0,2,f +5400,4625,0,16,f +5400,4862,41,2,f +5400,5306c01,8,1,f +5400,57503,334,1,f +5400,57504,334,1,f +5400,57505,334,1,f +5400,57506,334,1,f +5400,6014a,14,6,f +5400,6015,0,6,f +5400,6093,0,2,f +5400,6141,14,1,t +5400,6141,14,4,f +5400,6178,7,1,f +5400,6232,14,2,f +5400,6556,0,4,f +5400,6583,0,2,f +5400,6636,15,4,f +5400,6636,0,16,f +5400,70358,0,1,f +5400,70931,0,1,f +5400,73092,0,2,f +5400,74746,8,2,f +5400,74747,8,16,f +5400,75535,15,2,f +5400,75535,4,2,f +5400,970c00,0,3,f +5400,970c00,2,1,f +5400,970c00,1,1,f +5400,970c00,15,1,f +5400,973p70c01,6,1,f +5400,973p83c01,14,1,f +5400,973px18c01,15,1,f +5400,973px19c01,2,1,f +5400,973px20c01,0,1,f +5400,973px5c01,15,1,f +5400,973px8c01,1,1,f +5401,3873,0,2,t +5401,3873,0,36,f +5403,12109,15,1,f +5403,12592,0,1,f +5403,12602,1,2,f +5403,20678,41,2,f +5403,2302,10,2,f +5403,3011,1,2,f +5403,3011,27,2,f +5403,3011,2,2,f +5403,3011,10,1,f +5403,31445,179,1,f +5403,3437,10,4,f +5403,3437,484,2,f +5403,3437,191,6,f +5403,3437,2,2,f +5403,3437,73,2,f +5403,3437,4,5,f +5403,4066,191,4,f +5403,40666,4,2,f +5403,4199,1,1,f +5403,54246,15,1,f +5403,58086,70,1,f +5403,61649,4,1,f +5403,64146,14,1,f +5403,64150,15,1,f +5403,6510,2,1,f +5403,6510,14,1,f +5403,6510,25,1,f +5403,75126,19,1,f +5403,84699,191,1,f +5403,87084,10,3,f +5403,89879,72,1,f +5403,90265,15,1,f +5403,94412,25,1,f +5408,14226c21,0,2,f +5408,14226c41,0,3,f +5408,2431,4,1,f +5408,2445,0,2,f +5408,2449,15,2,f +5408,2452,0,1,f +5408,2458,4,2,f +5408,2489,6,1,f +5408,2527,2,1,f +5408,2530,8,4,f +5408,2537,0,1,f +5408,2538,0,1,f +5408,2539,15,1,f +5408,2555,0,4,f +5408,2561,6,1,f +5408,2562,6,1,f +5408,2564,0,1,f +5408,2566,0,1,f +5408,2582,0,1,f +5408,2653,4,2,f +5408,3001,0,4,f +5408,3003,15,2,f +5408,30033,15,2,f +5408,30036,0,1,f +5408,3004,0,1,f +5408,3004,15,2,f +5408,30041,15,1,f +5408,30042,1,1,f +5408,30043,0,3,f +5408,30044,2,1,f +5408,30046,0,1,f +5408,30047,0,2,f +5408,30048,0,3,f +5408,3005,4,9,f +5408,3005,15,5,f +5408,30056,2,2,f +5408,3008,1,2,f +5408,3020,0,1,f +5408,3020,15,1,f +5408,3021,15,1,f +5408,3021,4,2,f +5408,3022,0,3,f +5408,3022,15,3,f +5408,3022,14,1,f +5408,3023,4,6,f +5408,3023,15,5,f +5408,3023,0,6,f +5408,3023,14,2,f +5408,3024,15,6,f +5408,3034,0,2,f +5408,3040b,4,2,f +5408,3040b,15,4,f +5408,3062b,15,2,f +5408,3062b,36,1,f +5408,3062b,4,6,f +5408,3062b,0,6,f +5408,3069b,1,1,f +5408,3070b,0,1,f +5408,3070b,0,1,t +5408,3070b,4,1,f +5408,3070b,4,1,t +5408,3184,0,4,f +5408,3308,15,1,f +5408,3403c01,0,1,f +5408,3455,15,1,f +5408,3460,0,5,f +5408,3622,4,1,f +5408,3626bp3e,14,1,f +5408,3626bpb0020,14,1,f +5408,3626bpx81,14,1,f +5408,3659,15,1,f +5408,3659,4,1,f +5408,3660,0,2,f +5408,3660,15,3,f +5408,3666,0,8,f +5408,3666,15,2,f +5408,3676,0,2,f +5408,3700,0,1,f +5408,3700,4,1,f +5408,3705,0,1,f +5408,3710,14,1,f +5408,3710,1,1,f +5408,3710,0,2,f +5408,3713,7,1,t +5408,3713,7,2,f +5408,3747b,15,2,f +5408,3794a,0,1,f +5408,3794a,14,3,f +5408,3795,0,1,f +5408,3849,15,3,f +5408,3933,0,2,f +5408,3934,0,2,f +5408,3957a,0,1,f +5408,3958,15,1,f +5408,4032a,6,1,f +5408,4081b,0,2,f +5408,4085c,0,3,f +5408,4213,0,1,f +5408,4274,7,1,t +5408,4274,7,1,f +5408,4275b,0,1,f +5408,4276b,0,1,f +5408,4286,15,2,f +5408,4315,0,2,f +5408,4319,0,1,f +5408,4477,0,4,f +5408,4495b,4,2,f +5408,4531,0,2,f +5408,4589,0,1,f +5408,4589,4,6,f +5408,4589,14,1,f +5408,4589,15,1,f +5408,4623,0,3,f +5408,4625,0,2,f +5408,4738a,6,1,f +5408,4739a,6,1,f +5408,4740,0,1,f +5408,4790,6,1,f +5408,57503,334,2,f +5408,57504,334,2,f +5408,57505,334,2,f +5408,57506,334,2,f +5408,6051c02,15,1,f +5408,6053c02,15,1,f +5408,6054,15,1,f +5408,6057,6,2,f +5408,6067,0,2,f +5408,6091,14,4,f +5408,6091,15,1,f +5408,6091,4,6,f +5408,6141,0,2,f +5408,6141,4,1,t +5408,6141,0,1,t +5408,6141,4,2,f +5408,6191,15,2,f +5408,6541,0,1,f +5408,6564,15,2,f +5408,6565,15,2,f +5408,70001pb02,0,1,f +5408,71155,0,1,f +5408,84943,8,1,f +5408,87692,15,1,f +5408,87693,15,1,t +5408,87694,15,1,f +5408,970c00,7,2,f +5408,970c00,15,1,f +5408,973pb0019c01,4,1,f +5408,973px135c01,2,1,f +5408,973px136c01,4,1,f +5408,sailbb02,15,1,f +5408,sailbb03,15,1,f +5408,x190,383,1,f +5408,x376px5,15,1,f +5409,4161,0,20,f +5409,4286,0,30,f +5410,30374,297,1,f +5410,3065,36,2,f +5410,32002,72,3,f +5410,32002,72,1,t +5410,3841,72,1,f +5410,3957b,0,1,f +5410,4643668,9999,1,f +5410,4643669,9999,1,f +5410,4643670,9999,1,f +5410,4643671,9999,1,f +5410,4643672,9999,1,f +5410,53451,25,1,t +5410,53451,15,2,f +5410,53451,25,1,f +5410,53451,15,1,t +5410,53705,297,2,f +5410,54200,182,4,f +5410,54200,182,1,t +5410,92338,0,1,f +5410,92690,297,2,f +5410,92947,71,1,f +5410,970c00pr0262,272,1,f +5410,973pr1880c01,272,1,f +5410,98150pr0002,272,1,f +5410,98348,85,3,f +5411,3024,36,3,f +5411,3024,46,3,f +5411,3069bpr0099,15,1,f +5411,3464,4,6,f +5411,3624,0,2,f +5411,3624,15,2,f +5411,3625,0,2,f +5411,3626apr0001,14,24,f +5411,3641,0,6,f +5411,3833,4,2,f +5411,3834,15,1,f +5411,3835,7,1,f +5411,3836,6,2,f +5411,3837,8,3,f +5411,3841,8,1,f +5411,3842b,15,1,f +5411,3842b,1,2,f +5411,3898,15,1,f +5411,3899,4,3,f +5411,3901,6,2,f +5411,3962a,0,2,f +5411,4006,0,2,f +5411,4349,7,1,f +5411,4449,6,2,f +5411,4480c01,14,1,f +5411,4480c01,1,1,f +5411,4480c01,7,1,f +5411,4483,47,3,f +5411,4485,1,2,f +5411,4522,0,2,f +5411,4528,0,2,f +5411,4530,6,2,f +5411,4530,4,3,f +5411,4530,0,2,f +5411,4719,4,9,f +5411,92851,47,18,f +5411,970c00,4,5,f +5411,970c00,0,5,f +5411,970c00,7,4,f +5411,970c00,15,5,f +5411,970c00,1,5,f +5411,973p01c02,15,2,f +5411,973p0bc01,15,2,f +5411,973p13c01,4,2,f +5411,973p18c01,1,2,f +5411,973p21c01,0,1,f +5411,973p22c01,0,1,f +5411,973p24c01,15,2,f +5411,973p27c01,1,2,f +5411,973pb0035c01,4,1,f +5411,973pb0069c01,0,2,f +5411,973pb0079c01,0,2,f +5411,973pb0201c01,15,2,f +5411,973px3c01,15,1,f +5411,973px62c02,15,2,f +5412,3403c01,4,2,f +5413,12825,71,3,f +5413,13562,179,2,f +5413,13562,179,1,t +5413,13565,15,1,f +5413,13571pr01,308,1,f +5413,13664pr0001,308,1,f +5413,13665,0,1,f +5413,13882pr0001,47,2,f +5413,13946pr0001,308,1,f +5413,2431,308,4,f +5413,2450,19,6,f +5413,2462,19,4,f +5413,2780,0,4,f +5413,2780,0,1,t +5413,3004,71,11,f +5413,3005,72,3,f +5413,3009,28,2,f +5413,3010,28,4,f +5413,30136,308,2,f +5413,30136,84,6,f +5413,30157,70,1,f +5413,30169,0,3,f +5413,3020,19,2,f +5413,3023,484,3,f +5413,3028,28,2,f +5413,3034,28,1,f +5413,30374,70,2,f +5413,3040b,28,9,f +5413,3069b,70,6,f +5413,32013,15,2,f +5413,32034,71,4,f +5413,32034,4,2,f +5413,32062,4,4,f +5413,3626cpr1191,78,1,f +5413,3626cpr1194,84,1,f +5413,3626cpr1208,84,1,f +5413,3678b,28,3,f +5413,3700,19,4,f +5413,3700,72,2,f +5413,3741,2,1,f +5413,3741,2,1,t +5413,3794b,0,1,f +5413,3958,19,1,f +5413,4150,72,1,f +5413,4274,1,1,f +5413,4274,1,1,t +5413,44294,71,2,f +5413,4497,308,1,f +5413,4498,70,1,f +5413,4499,70,1,f +5413,48729a,0,1,t +5413,48729a,0,1,f +5413,50950,15,2,f +5413,54200,72,9,f +5413,54200,72,1,t +5413,59900,70,1,f +5413,6021,70,1,f +5413,60897,1,1,f +5413,61252,4,1,f +5413,6126b,57,1,f +5413,6179,0,1,f +5413,63864,1,2,f +5413,64648,179,1,f +5413,6541,71,2,f +5413,6628,0,4,f +5413,87580,0,1,f +5413,87585,70,1,f +5413,92946,19,2,f +5413,93160,15,3,f +5413,93160,15,1,t +5413,970c00pr0502,308,1,f +5413,970c00pr0545,28,1,f +5413,970c00pr0546,28,1,f +5413,973pr2340c01,0,1,f +5413,973pr2344c01,84,1,f +5413,973pr2363c01,84,1,f +5414,4162pb031,15,1,f +5414,6180pb021l,15,1,f +5414,6180pb021r,15,1,f +5415,27c01,15,2,f +5415,29c,14,4,f +5415,3004,4,10,f +5415,3004,0,3,f +5415,3004,1,2,f +5415,3005,1,4,f +5415,3005,4,4,f +5415,3008,4,4,f +5415,3009,4,2,f +5415,3009,1,2,f +5415,3009,0,1,f +5415,3009p01,4,2,f +5415,3010,1,4,f +5415,3010,4,2,f +5415,3020,4,2,f +5415,3020,7,3,f +5415,3021,4,6,f +5415,3023,14,4,f +5415,3023,0,4,f +5415,3031,0,1,f +5415,3032,7,1,f +5415,3034,0,1,f +5415,3034,15,16,f +5415,3035,0,1,f +5415,3036,0,1,f +5415,3037,1,2,f +5415,3040a,0,2,f +5415,3045,0,4,f +5415,3062a,0,1,f +5415,3081cc01,15,2,f +5415,3087c,14,4,f +5415,3127,4,1,f +5415,3218,4,1,f +5415,3229a,1,16,f +5415,3230a,1,16,f +5415,3297,4,2,f +5415,3298,4,2,f +5415,3404ac01,0,1,f +5415,3443c02,0,1,f +5415,3460,14,4,f +5415,3488,0,12,f +5415,3581,4,4,f +5415,3582,4,4,f +5415,3660a,0,4,f +5415,4178a,0,1,f +5415,458,0,4,f +5415,559c01,4,1,f +5415,56823,0,1,f +5415,699,1,1,f +5415,736c02,0,1,f +5415,trainsig2,4,1,f +5415,wheel2a,4,4,f +5415,x466c11,15,1,f +5415,x469b,0,1,f +5415,x489,4,1,f +5416,2412b,14,2,f +5416,2413,5,1,f +5416,2518,10,4,f +5416,2536,6,6,f +5416,2540,14,1,f +5416,2563,6,1,f +5416,2566,6,1,f +5416,2654,7,1,f +5416,3003,15,1,f +5416,30109,1,1,f +5416,3020,15,1,f +5416,30218,15,1,f +5416,30220,462,1,f +5416,3032,5,1,f +5416,3298p16,5,1,f +5416,33121,4,1,f +5416,33122,462,1,f +5416,3937,14,1,f +5416,3938,14,1,f +5416,3957a,15,1,f +5416,4032a,10,1,f +5416,4085c,14,2,f +5416,4286,5,2,f +5416,4476b,15,2,f +5416,476,15,1,f +5416,6020,15,1,f +5416,6141,36,1,f +5416,6153a,5,1,f +5416,6162,18,1,f +5416,6176,5,1,f +5416,6187,14,1,f +5416,6228b,7,1,f +5416,6228b,15,1,f +5416,71861,1,1,f +5416,belvfem46,-1,1,f +5416,belvskirt12,5,1,f +5416,hoop01,14,1,f +5416,towel,14,1,f +5416,x814px1,14,1,f +5417,2340,0,4,f +5417,2401,0,2,f +5417,2412b,42,9,f +5417,2419,0,1,f +5417,2444,14,2,f +5417,2460,14,1,f +5417,2465,2,1,f +5417,2598,42,1,f +5417,2780,0,2,f +5417,2877,2,2,f +5417,2951,0,1,f +5417,30036,0,2,f +5417,30104,8,2,f +5417,3020,2,1,f +5417,3022,2,3,f +5417,3022,0,2,f +5417,3023,0,5,f +5417,3023,2,12,f +5417,30385,383,1,f +5417,3039,0,3,f +5417,3039pc1,0,2,f +5417,3040b,0,2,f +5417,3068bp51,0,1,f +5417,3069bp28,0,1,f +5417,3298,0,1,f +5417,3475b,2,2,f +5417,3622,2,4,f +5417,3626bp7a,14,1,f +5417,3660,14,3,f +5417,37,383,2,f +5417,3700,0,2,f +5417,3710,0,1,f +5417,3747b,0,1,f +5417,3749,7,4,f +5417,3937,0,3,f +5417,3938,14,1,f +5417,4070,2,4,f +5417,4085c,0,2,f +5417,4597,0,1,f +5417,4623,0,2,f +5417,57467,383,2,f +5417,59275,0,2,f +5417,6032,2,4,f +5417,6039,2,2,f +5417,6040,2,2,f +5417,6041,42,5,f +5417,6042,2,5,f +5417,6063,0,1,f +5417,6089,8,1,f +5417,6090,42,1,f +5417,6106,0,2,f +5417,6112,0,2,f +5417,6249,8,2,f +5417,6538b,7,1,f +5417,6587,8,2,f +5417,70001pb01,0,1,f +5417,73590c02a,0,1,f +5417,970x024,8,1,f +5417,973pb0021c01,0,1,f +5419,3022,14,40,f +5422,132a,0,4,f +5422,3003pt1,14,1,f +5422,3004,14,1,f +5422,3004,47,3,f +5422,3010,47,2,f +5422,3020,14,4,f +5422,3021,4,2,f +5422,3034,4,1,f +5422,3037,47,1,f +5422,3062a,0,1,f +5422,3149c01,4,1,f +5422,3314,4,1,f +5422,3315,4,1,f +5422,3317,14,1,f +5422,3324c01,4,1,f +5422,7039,4,4,f +5422,7049b,0,2,f +5422,784,4,2,f +5424,4352,7,2,f +5425,2420,4,2,f +5425,2446pr0008,0,1,f +5425,2780,0,6,f +5425,2780,0,1,t +5425,3020,0,1,f +5425,3023,14,2,f +5425,3023,72,2,f +5425,3031,0,1,f +5425,3068b,4,1,f +5425,32034,15,1,f +5425,32062,4,1,f +5425,32291,4,1,f +5425,32526,72,2,f +5425,3626bpr0662,14,1,f +5425,3659,4,1,f +5425,3702,4,2,f +5425,3705,0,1,f +5425,3708,0,2,f +5425,3710,0,2,f +5425,3710,15,3,f +5425,3713,4,1,t +5425,3713,4,4,f +5425,3749,19,3,f +5425,4274,1,1,t +5425,4274,1,1,f +5425,48336,4,2,f +5425,4865a,40,1,f +5425,50950,4,2,f +5425,54200,15,2,f +5425,54200,15,1,t +5425,56145,4,4,f +5425,6091,4,2,f +5425,6141,47,2,f +5425,6141,15,1,t +5425,6141,36,1,t +5425,6141,47,1,t +5425,6141,36,2,f +5425,6141,15,4,f +5425,61481,0,4,f +5425,62462,4,4,f +5425,64451,72,2,f +5425,6558,1,2,f +5425,87083,72,1,f +5425,90258,72,2,f +5425,92907,71,1,f +5425,93273,0,2,f +5425,93590,4,2,f +5425,93606,4,1,f +5425,970c00,0,1,f +5425,973pr1939c01,0,1,f +5425,99367,9999,1,t +5426,32073,71,1,f +5426,32073,71,1,t +5426,3647,72,1,f +5426,3647,72,2,t +5426,3648b,72,1,f +5426,58119,71,1,f +5426,58120,71,1,f +5426,61903,71,2,f +5426,61903,71,1,t +5426,61929,71,1,f +5426,61930,0,1,f +5426,76244,15,1,f +5427,2340,4,2,f +5427,2610,14,2,f +5427,298c02,14,2,f +5427,298c02,14,1,t +5427,30086,14,1,f +5427,3010,4,2,f +5427,30237a,7,1,f +5427,30255,15,1,f +5427,30263,7,1,f +5427,30340,25,1,f +5427,3040b,33,2,f +5427,3040b,36,1,f +5427,3040b,34,1,f +5427,3068bp70,15,1,f +5427,3626bp03,14,1,f +5427,3626bp05,14,1,f +5427,3679,7,1,f +5427,3680,4,1,f +5427,3794a,0,2,f +5427,3829c01,1,1,f +5427,3834,15,2,f +5427,3835,7,1,f +5427,3939,41,1,f +5427,3939,4,1,f +5427,3957a,15,1,f +5427,3962b,0,1,f +5427,4085c,7,1,f +5427,4349,14,2,f +5427,4589,14,2,f +5427,4589,33,1,f +5427,4623,4,1,f +5427,4865a,4,1,f +5427,6141,57,1,f +5427,6429stk01,9999,1,t +5427,71958,4,1,f +5427,970c00,7,1,f +5427,970c00,0,1,f +5427,973p29c01,7,1,f +5427,973px121c01,0,1,f +5428,3626bpr0582,71,1,f +5428,3626bpr0583,78,1,f +5428,64797,72,1,f +5428,64798,19,1,f +5428,74188,72,3,f +5428,86301,320,2,f +5428,970c00,320,1,f +5428,970c00,4,1,f +5428,970c00,378,1,f +5428,973pr1482c01,85,1,f +5428,973pr1484c01,320,1,f +5428,973pr1502c01,4,1,f +5428,x903pb1,2,1,f +5429,2736,7,2,f +5429,2780,0,3,f +5429,2905,0,2,f +5429,32014,27,2,f +5429,32017,0,2,f +5429,32017,27,6,f +5429,32039,0,2,f +5429,32054,0,2,f +5429,32062,0,3,f +5429,32073,0,4,f +5429,32138,0,1,f +5429,32140,8,1,f +5429,32184,0,1,f +5429,32209,0,2,f +5429,32250,0,4,f +5429,32271,8,2,f +5429,32271,27,1,f +5429,32278,2,2,f +5429,32291,2,1,f +5429,32316,0,4,f +5429,32523,8,1,f +5429,32523,0,3,f +5429,32525,8,2,f +5429,32526,0,1,f +5429,32527,2,1,f +5429,32528,2,1,f +5429,32556,7,11,f +5429,32557,0,2,f +5429,32580,179,2,f +5429,3706,0,3,f +5429,3713,7,17,f +5429,3737,0,2,f +5429,40341,2,2,f +5429,40490,8,1,f +5429,41752,8,3,f +5429,4274,7,4,f +5429,4519,0,2,f +5429,6536,27,2,f +5429,6536,0,3,f +5429,6553,0,1,f +5429,6558,0,4,f +5429,6579,0,4,f +5429,6580,7,4,f +5429,6628,0,5,f +5429,6632,0,2,f +5429,6632,8,1,f +5429,71509,0,4,f +5429,rb00167,0,8,f +5430,14417,72,2,f +5430,14418,71,2,f +5430,15573,71,3,f +5430,2412b,179,1,f +5430,2431pr0028,72,1,f +5430,3004,71,4,f +5430,3005,72,2,f +5430,3020,71,2,f +5430,3021,71,1,f +5430,3022,71,1,f +5430,3022,72,1,f +5430,3023,72,1,f +5430,3023,71,1,f +5430,3024,4,2,f +5430,30414,71,2,f +5430,3623,4,2,f +5430,3679,71,1,f +5430,3680,0,1,f +5430,3700,0,1,f +5430,4274,1,1,f +5430,4740,71,1,f +5430,6141,179,5,f +5430,63868,72,2,f +5430,87087,71,4,f +5430,87580,71,1,f +5430,92946,4,2,f +5430,98138,41,2,f +5430,98375,179,1,f +5431,2654,27,1,f +5431,3004,272,2,f +5431,3022,1,1,f +5431,30374,297,1,f +5431,4643683,9999,1,f +5431,4643684,9999,1,f +5431,4643685,9999,1,f +5431,4643686,9999,1,f +5431,4643687,9999,1,f +5431,53451,15,1,t +5431,53451,15,1,f +5431,58176,35,1,f +5431,59229,72,1,f +5431,92690,297,1,f +5431,970c00pr0268,27,1,f +5431,973pr1893c01,27,1,f +5431,98136,52,1,f +5431,98150pr0001,288,1,f +5431,98344pr0003,52,1,f +5431,98354pr0013,42,1,f +5433,3624,0,1,f +5433,3626bpr0411,14,1,f +5433,3962b,0,1,f +5433,970c00,0,1,f +5433,973pr1188c01,0,1,f +5434,10201,0,2,f +5434,10247,72,2,f +5434,11212,72,6,f +5434,11477,1,4,f +5434,11477,2,2,f +5434,11477,72,6,f +5434,13547,0,2,f +5434,14704,71,2,f +5434,15068,0,6,f +5434,15100,0,2,f +5434,15456,0,2,f +5434,15462,28,1,f +5434,15535,72,1,f +5434,15706,72,4,f +5434,18575,0,1,f +5434,18587,71,1,f +5434,18588,0,1,f +5434,18646,0,1,f +5434,18654,72,2,t +5434,18654,72,2,f +5434,18973,40,1,f +5434,18987,0,1,f +5434,19185,0,1,f +5434,19888,4,1,f +5434,21019pat04,72,1,f +5434,22385,0,1,f +5434,23186,0,1,f +5434,23187,308,1,f +5434,2340,0,2,f +5434,2412b,1,1,f +5434,2412b,72,1,f +5434,2412b,179,2,f +5434,24144,0,1,f +5434,2419,72,1,f +5434,2420,0,2,f +5434,24226c01,0,1,f +5434,24235c01,0,1,f +5434,2445,72,1,f +5434,2450,0,6,f +5434,2460,72,1,f +5434,2479,0,1,f +5434,2540,72,2,f +5434,2654,0,2,f +5434,2654,41,2,f +5434,2780,0,9,f +5434,2780,0,3,t +5434,3003,2,2,f +5434,30089,0,1,f +5434,3010,2,2,f +5434,30192,72,1,f +5434,3020,25,1,f +5434,3020,19,2,f +5434,3020,71,5,f +5434,3021,0,11,f +5434,3022,19,2,f +5434,3022,72,2,f +5434,3022,25,1,f +5434,3023,41,10,f +5434,3023,25,1,f +5434,3023,47,2,f +5434,3023,72,18,f +5434,3024,0,3,f +5434,3024,0,1,t +5434,30248,72,1,f +5434,3031,71,4,f +5434,3032,71,2,f +5434,3032,0,2,f +5434,3034,71,1,f +5434,3035,72,2,f +5434,30355,0,1,f +5434,30356,0,1,f +5434,30357,72,2,f +5434,3036,72,1,f +5434,30504,0,2,f +5434,30602,41,2,f +5434,3068b,0,1,f +5434,3069b,0,6,f +5434,3070b,0,1,t +5434,3070b,0,4,f +5434,32000,0,1,f +5434,32028,0,2,f +5434,32054,71,2,f +5434,32062,0,1,f +5434,32062,4,1,f +5434,32064a,2,10,f +5434,32064a,71,2,f +5434,32072,0,6,f +5434,32124,0,2,f +5434,32187,179,1,f +5434,32316,72,1,f +5434,32316,71,1,f +5434,32474,0,1,f +5434,32525,72,2,f +5434,3460,0,3,f +5434,3623,0,22,f +5434,3626cpr0937,78,1,f +5434,3626cpr1613,0,1,f +5434,3626cpr1698,78,1,f +5434,3626cpr1767,78,1,f +5434,3626cpr1874,78,1,f +5434,3665,2,2,f +5434,3673,71,1,f +5434,3673,71,1,t +5434,3701,72,2,f +5434,3705,0,2,f +5434,3709,72,2,f +5434,3710,72,2,f +5434,3710,71,9,f +5434,3710,2,1,f +5434,3737,4,1,f +5434,3747b,71,1,f +5434,3795,0,2,f +5434,3795,72,4,f +5434,3829c01,4,1,f +5434,3894,71,2,f +5434,3937,0,4,f +5434,3941,2,4,f +5434,3941,72,2,f +5434,4032a,71,6,f +5434,40490,0,1,f +5434,41239,2,1,f +5434,4162,72,4,f +5434,41769,0,1,f +5434,41770,0,1,f +5434,4282,71,2,f +5434,43093,1,6,f +5434,43722,71,1,f +5434,43722,72,1,f +5434,43722,0,2,f +5434,43723,72,1,f +5434,43723,0,2,f +5434,43723,71,1,f +5434,44294,14,3,f +5434,44676,2,2,f +5434,4477,72,2,f +5434,47457,71,2,f +5434,47457,72,4,f +5434,47755,72,2,f +5434,48336,2,3,f +5434,51739,72,1,f +5434,52107,0,1,f +5434,54200,25,1,f +5434,54200,0,2,t +5434,54200,0,2,f +5434,54200,25,1,t +5434,54383,72,2,f +5434,54383,0,5,f +5434,54384,0,5,f +5434,54384,72,2,f +5434,55013,72,2,f +5434,59900,34,8,f +5434,60470a,0,1,f +5434,61184,71,8,f +5434,6134,71,4,f +5434,61409,0,4,f +5434,61409,72,6,f +5434,6141,25,5,f +5434,6141,41,6,f +5434,6141,47,2,f +5434,6141,41,2,t +5434,6141,25,1,t +5434,6141,179,12,f +5434,6141,179,1,t +5434,6141,71,6,f +5434,6141,71,1,t +5434,6141,47,1,t +5434,6231,72,4,f +5434,62743,0,2,f +5434,63864,72,2,f +5434,6541,2,3,f +5434,6558,1,5,f +5434,6632,72,10,f +5434,6636,0,9,f +5434,76046stk01,9999,1,f +5434,85974,484,1,f +5434,85984,1,3,f +5434,85984,72,4,f +5434,85984,0,8,f +5434,85984,4,2,f +5434,85984,2,1,f +5434,87079,1,1,f +5434,87408,0,1,f +5434,88283,484,1,f +5434,91988,72,2,f +5434,92842,0,1,f +5434,93095,1,1,f +5434,93273,2,1,f +5434,93273,72,1,f +5434,95199,72,1,f +5434,95673,179,1,f +5434,95673,179,1,t +5434,970c00,0,1,f +5434,970c00,19,1,f +5434,970c00pr0002,272,1,f +5434,970c00pr1026,320,1,f +5434,973pr3272,72,1,f +5434,973pr3274c01,320,1,f +5434,973pr3278c01,272,1,f +5434,973pr3301c01,19,1,f +5434,973pr3302c01,0,1,f +5434,98138,36,5,f +5434,98138,36,2,t +5434,98285,71,2,f +5434,98286,71,2,f +5434,99780,72,2,f +5434,99781,71,2,f +5434,99784,47,4,f +5435,51801,4,1,f +5435,51807,72,1,f +5435,51814,379,1,f +5436,3004,47,3,f +5436,3004,15,9,f +5436,3020,7,2,f +5436,3020,15,1,f +5436,3021,7,1,f +5436,3021,15,1,f +5436,3022,7,1,f +5436,3023,15,2,f +5436,3030,7,4,f +5436,3034,15,2,f +5436,3034,4,2,f +5436,3034,7,4,f +5436,3039,47,1,f +5436,3062a,7,1,f +5436,3139,0,2,f +5436,3464,4,2,f +5436,3480,0,1,f +5436,3481,7,1,f +5436,3587pb04,15,1,f +5436,3795,7,1,f +5436,8,7,2,f +5437,15501,71,1,f +5437,17352pr0001,70,1,f +5437,3626cpr1482,14,1,f +5437,3841,72,1,f +5437,88646,0,1,f +5437,970c00pr0745,28,1,f +5437,973pr2751c01,19,1,f +5441,3778,2,5,f +5443,3031,4,1,f +5443,4865a,4,3,f +5443,6141,36,1,t +5443,6141,4,1,t +5443,6141,4,1,f +5443,6141,0,1,f +5443,6141,36,1,f +5443,6141,0,1,t +5443,6231,4,4,f +5443,6251pr0002,15,1,f +5444,2335,14,2,f +5444,2335,15,2,f +5444,2412b,15,4,f +5444,2420,0,4,f +5444,2432,72,1,f +5444,2445,71,2,f +5444,2447,36,2,f +5444,2447,36,1,t +5444,2465,0,6,f +5444,2526,0,1,f +5444,2540,15,6,f +5444,2555,15,8,f +5444,2569,0,3,f +5444,2569,0,1,t +5444,2723,0,2,f +5444,2780,0,3,t +5444,2780,0,13,f +5444,298c02,71,1,t +5444,298c02,71,2,f +5444,3001,0,1,f +5444,3001,1,1,f +5444,3001,15,2,f +5444,3002,15,3,f +5444,3003,15,3,f +5444,30031,0,2,f +5444,3004,14,1,f +5444,3005,0,3,f +5444,3009,0,2,f +5444,3010,1,1,f +5444,30132,72,2,t +5444,30132,72,2,f +5444,3020,0,1,f +5444,3020,71,2,f +5444,3021,0,1,f +5444,3023,0,16,f +5444,3023,4,2,f +5444,30237a,15,1,f +5444,3024,36,1,f +5444,3024,33,1,f +5444,3027,71,3,f +5444,3031,71,1,f +5444,3031,0,1,f +5444,3031,1,1,f +5444,3034,15,2,f +5444,3034,71,3,f +5444,3035,72,1,f +5444,30363,15,2,f +5444,30367b,0,2,f +5444,30374,36,4,f +5444,30375,15,1,f +5444,30377,71,2,t +5444,30377,71,5,f +5444,3038,15,2,f +5444,30391,0,6,f +5444,3039pr0001,15,1,f +5444,3039pr0002,15,2,f +5444,3039pr0005,15,1,f +5444,30414,0,1,f +5444,3048c,71,1,f +5444,30526,71,2,f +5444,30602,15,4,f +5444,3062b,36,1,f +5444,3065,46,1,f +5444,3065,34,1,f +5444,3065,36,1,f +5444,3068b,71,2,f +5444,3068b,72,1,f +5444,3069b,71,2,f +5444,3069b,36,6,f +5444,3069b,15,2,f +5444,3069b,33,4,f +5444,32018,71,2,f +5444,32028,15,4,f +5444,32034,71,2,f +5444,32062,4,6,f +5444,32064b,71,6,f +5444,32138,0,2,f +5444,3245b,15,1,f +5444,32524,0,2,f +5444,32556,19,2,f +5444,33320,2,1,f +5444,3475b,72,4,f +5444,3622,15,2,f +5444,3622,0,1,f +5444,3623,72,2,f +5444,3626bpr0567,14,1,f +5444,3626bpr0600,14,1,f +5444,3626bpr0682,0,1,f +5444,3660,0,2,f +5444,3666,0,1,f +5444,3666,15,3,f +5444,3678b,15,6,f +5444,3679,71,1,f +5444,3680,0,1,f +5444,3684,15,6,f +5444,3685,15,4,f +5444,3701,71,2,f +5444,3701,1,4,f +5444,3702,0,1,f +5444,3705,0,1,f +5444,3710,72,1,f +5444,3747b,15,1,f +5444,3747b,71,1,f +5444,3749,19,6,f +5444,3794b,15,1,f +5444,3794b,0,2,f +5444,3795,0,6,f +5444,3795,15,2,f +5444,3811,72,1,f +5444,3829c01,15,1,f +5444,3832,15,3,f +5444,3838,0,2,f +5444,3839b,71,4,f +5444,3899,47,1,f +5444,3937,0,2,f +5444,3941,1,1,f +5444,3941,72,2,f +5444,3956,71,4,f +5444,3957a,0,2,f +5444,3962b,0,1,f +5444,4006,0,1,f +5444,40490,0,2,f +5444,4079,1,4,f +5444,4083,14,1,f +5444,4085c,72,11,f +5444,4151b,72,1,f +5444,41531,25,2,f +5444,4162,1,1,f +5444,41862,0,2,f +5444,41862,71,4,f +5444,4216,15,4,f +5444,4217,15,2,f +5444,4218,14,7,f +5444,4218,0,7,f +5444,4219,15,1,f +5444,4274,1,4,f +5444,4274,1,2,t +5444,4282,71,1,f +5444,4285b,15,1,f +5444,4286,15,2,f +5444,43093,1,4,f +5444,4345b,15,3,f +5444,4346,15,3,f +5444,4349,0,2,f +5444,4460b,71,4,f +5444,44728,1,3,f +5444,44728,0,2,f +5444,4477,14,1,f +5444,4479,0,1,f +5444,4515,15,2,f +5444,4519,71,4,f +5444,4522,0,1,f +5444,4533,15,1,f +5444,4588,72,4,f +5444,4589,25,2,f +5444,4589,34,3,f +5444,4589,42,2,f +5444,4740,72,1,f +5444,4740,15,9,f +5444,4740,36,3,f +5444,4740,33,2,f +5444,47759,0,1,f +5444,48092,15,4,f +5444,48336,15,1,f +5444,4865a,15,8,f +5444,4865a,33,2,f +5444,48729a,0,2,f +5444,48729a,0,1,t +5444,50923,72,2,f +5444,50949,0,1,f +5444,50950,15,2,f +5444,50950,25,2,f +5444,51595,72,1,f +5444,53705,41,2,f +5444,53989,15,2,f +5444,54200,34,2,f +5444,54200,36,1,t +5444,54200,34,1,t +5444,54200,33,1,f +5444,54200,33,1,t +5444,54200,36,3,f +5444,55982,0,6,f +5444,57028c01,71,1,f +5444,57796,0,1,f +5444,58176,33,3,f +5444,58176,36,3,f +5444,58827,15,1,f +5444,59349,15,2,f +5444,59443,72,2,f +5444,6002,33,2,f +5444,6020,71,3,f +5444,6046,15,2,f +5444,60470a,71,1,f +5444,60470a,15,2,f +5444,60474,15,4,f +5444,60475a,15,2,f +5444,60481,15,2,f +5444,6056,71,2,f +5444,6060,15,4,f +5444,6091,15,4,f +5444,61184,71,1,f +5444,6134,1,2,f +5444,61409,72,6,f +5444,6141,47,2,f +5444,6141,36,4,t +5444,6141,71,6,f +5444,6141,33,2,f +5444,6141,15,4,f +5444,6141,71,1,t +5444,6141,47,1,t +5444,6141,33,2,t +5444,6141,15,1,t +5444,6141,72,2,t +5444,6141,34,1,t +5444,6141,72,12,f +5444,6141,34,2,f +5444,6141,36,15,f +5444,61482,71,2,t +5444,61482,71,3,f +5444,61484,33,1,f +5444,6222,15,2,f +5444,6232,15,1,f +5444,62361,15,2,f +5444,62462,0,2,f +5444,62462,4,1,f +5444,62712,15,2,f +5444,63864,15,5,f +5444,63868,15,2,f +5444,64391,15,1,f +5444,64567,71,1,f +5444,64683,15,1,f +5444,6553,72,2,f +5444,6553,71,2,f +5444,6587,28,2,f +5444,6636,71,3,f +5444,6636,0,2,f +5444,85940,0,1,f +5444,85941,33,6,f +5444,85943,72,2,f +5444,85945,320,1,f +5444,85959pat0001,36,2,f +5444,85984,15,2,f +5444,86208,71,5,f +5444,87079,1,1,f +5444,87079,15,7,f +5444,87747,0,2,f +5444,87781,72,2,f +5444,88393,15,15,f +5444,90201,0,2,f +5444,92410,15,1,f +5444,970c00,320,1,f +5444,970c00pr0127,72,2,f +5444,970c00pr0159,25,1,f +5444,973pr1490c01,72,2,f +5444,973pr1638c01,25,1,f +5444,973pr1640c01,320,1,f +5445,19052,57,1,f +5445,20251,272,1,f +5445,20252,148,4,f +5448,2343,0,2,f +5448,2419,0,1,f +5448,2466,40,1,f +5448,2555,72,12,f +5448,2566,0,2,f +5448,2780,0,8,f +5448,2780,0,1,t +5448,2877,72,1,f +5448,3002,72,1,f +5448,30033,0,1,f +5448,3021,72,3,f +5448,3022,70,4,f +5448,30367b,14,2,f +5448,30386,0,28,f +5448,30407,47,4,f +5448,30552,72,2,f +5448,30553,71,2,f +5448,3068b,0,3,f +5448,3069b,14,28,f +5448,32000,14,1,f +5448,32009,0,4,f +5448,32018,72,2,f +5448,32034,71,2,f +5448,32054,0,8,f +5448,32062,4,10,f +5448,32064b,72,2,f +5448,32073,71,2,f +5448,32125,71,4,f +5448,32174,0,2,f +5448,32474,27,2,f +5448,3660,72,2,f +5448,3701,0,2,f +5448,3706,0,1,f +5448,3709,0,10,f +5448,3794a,0,11,f +5448,3960,0,2,f +5448,4032a,72,6,f +5448,4081b,72,1,f +5448,41532,0,6,f +5448,43093,1,4,f +5448,44567a,14,4,f +5448,4588,72,2,f +5448,4589,36,6,f +5448,4623,72,2,f +5448,47455,72,2,f +5448,47456,0,2,f +5448,48171,72,2,f +5448,48172,0,1,f +5448,48336,0,1,f +5448,48729a,72,6,f +5448,50923,72,2,f +5448,50950,14,2,f +5448,53451,14,4,f +5448,53451,14,1,t +5448,53984,134,2,f +5448,53988,134,1,f +5448,53989,134,2,f +5448,53989,0,6,f +5448,55236,0,2,f +5448,57565,14,2,f +5448,57906,0,2,f +5448,59426,72,4,f +5448,59443,0,7,f +5448,6019,4,1,f +5448,60470a,14,1,f +5448,60471,0,4,f +5448,60752,135,12,f +5448,61072,135,2,f +5448,61406pat0001,0,1,f +5448,61409,14,2,f +5448,6141,72,6,f +5448,6141,72,2,t +5448,62018,9999,1,t +5450,3001a,47,8,f +5450,3001a,4,3,f +5450,3001a,1,4,f +5450,3001a,14,2,f +5450,3001a,15,10,f +5450,3002a,1,1,f +5450,3003,14,7,f +5450,3003,15,4,f +5450,3003,1,5,f +5450,3004,4,6,f +5450,3004,1,6,f +5450,3004,15,4,f +5450,3004p60,15,3,f +5450,3009,47,1,f +5450,3009,4,4,f +5450,3009pt1,15,1,f +5450,3010,47,2,f +5450,3010,14,3,f +5450,3010,15,1,f +5450,3010,1,5,f +5450,3020,4,1,f +5450,3021,0,3,f +5450,3022,0,2,f +5450,3022,4,5,f +5450,3023,0,1,f +5450,3027,4,1,f +5450,3027,7,1,f +5450,3028,4,1,f +5450,3030,14,1,f +5450,3030,1,1,f +5450,3031,14,4,f +5450,3032,7,2,f +5450,3032,1,1,f +5450,3035,4,1,f +5450,3037,14,2,f +5450,3037,1,2,f +5450,3038,4,2,f +5450,3039,4,2,f +5450,3040b,4,4,f +5450,3040b,1,4,f +5450,3062a,1,2,f +5450,3062a,14,4,f +5450,3135c04,4,1,f +5450,3149c01,4,3,f +5450,3307,1,2,f +5450,3483,0,14,f +5450,3613,4,2,f +5450,3613,0,2,f +5450,3613,1,2,f +5450,3613,15,2,f +5450,3614a,14,8,f +5450,3622,4,2,f +5450,3633,1,2,f +5450,3660,4,8,f +5450,3660,1,2,f +5450,3665,1,4,f +5450,685p01,14,2,f +5450,685px4,14,2,f +5450,7039,4,12,f +5450,7049b,0,6,f +5450,792c03,4,1,f +5450,792c03,1,1,f +5450,792c03,0,1,f +5450,792c03,15,1,f +5450,x196,0,2,f +5450,x407,1,1,f +5450,x407,0,1,f +5451,nsph99,9999,1,f +5452,3008,7,25,f +5453,2412b,71,1,f +5453,2436,1,2,f +5453,2447,47,1,t +5453,2447,47,1,f +5453,30162,72,1,f +5453,3020,71,1,f +5453,3023,14,2,f +5453,3626bpr0806,14,1,f +5453,41769,1,1,f +5453,41770,1,1,f +5453,4736,0,1,f +5453,59900,57,2,f +5453,87079,72,1,f +5453,87781,321,1,f +5453,95199,72,1,f +5453,970c00pr0232,321,1,f +5453,973pr1785c01,321,1,f +5454,30663,0,1,f +5454,3139,0,2,f +5454,32064b,14,1,f +5454,32530,72,2,f +5454,3626bpr0325,14,1,f +5454,3679,71,1,f +5454,3680,14,1,f +5454,3795,14,1,f +5454,3833,4,1,f +5454,3839b,0,1,f +5454,4624,71,2,f +5454,4624,71,1,t +5454,4742,72,1,f +5454,6141,72,3,f +5454,6141,72,1,t +5454,6157,0,1,f +5454,6222,72,1,f +5454,6587,72,1,f +5454,970c00,25,1,f +5454,973pr1182c01,25,1,f +5455,122c01,0,2,f +5455,3003,0,1,f +5455,3021,4,1,f +5455,3022,0,1,f +5455,3024,46,2,f +5455,3062a,0,1,f +5455,3626apr0001,14,1,f +5455,3641,0,2,f +5455,3795,4,1,f +5455,3829c01,4,1,f +5455,3901,6,1,f +5455,4070,4,2,f +5455,4079,4,1,f +5455,4084,0,2,f +5455,970c00,1,1,f +5455,973c07,0,1,f +5457,2343,47,1,f +5457,3021,15,1,f +5457,3022,15,1,f +5457,3035,15,1,f +5457,3039pr0017,15,1,f +5457,33322,297,1,f +5457,3626bpr0043,14,1,f +5457,3626bpr0645,14,1,f +5457,3741,2,1,f +5457,3742,5,1,t +5457,3742,4,1,t +5457,3742,5,3,f +5457,3742,15,3,f +5457,3742,4,3,f +5457,3742,15,1,t +5457,3878,0,1,f +5457,54200,15,2,f +5457,64807,70,1,f +5457,64807,226,1,f +5457,64807,308,1,f +5457,970c00,0,1,f +5457,973pr0813c01,0,1,f +5457,973pr0814c01,15,1,f +5457,98889,15,1,f +5457,foamarch,15,1,f +5457,foambase,15,1,f +5458,2417,288,3,f +5458,2420,71,2,f +5458,2431,72,48,f +5458,2431,71,2,f +5458,2431,0,8,f +5458,2432,71,6,f +5458,2436,0,18,f +5458,2445,0,1,f +5458,2449,72,16,f +5458,2456,0,1,f +5458,2524,70,2,f +5458,2540,72,1,f +5458,2555,0,4,f +5458,2614,0,4,f +5458,2654,71,8,f +5458,2736,71,8,f +5458,2780,0,1,t +5458,2780,0,8,f +5458,3001,0,1,f +5458,3002,72,2,f +5458,3004,70,2,f +5458,30041,72,3,f +5458,30042,72,1,f +5458,3009,72,4,f +5458,3010,72,6,f +5458,30162,72,1,f +5458,30176,2,4,f +5458,30187e,70,2,f +5458,3020,0,7,f +5458,3021,72,25,f +5458,3022,71,16,f +5458,3023,0,27,f +5458,30237a,71,2,f +5458,30259,70,4,f +5458,3029,72,2,f +5458,3031,0,2,f +5458,3031,72,16,f +5458,3032,72,4,f +5458,3033,72,4,f +5458,3034,71,2,f +5458,3035,288,9,f +5458,3035,72,2,f +5458,3036,72,5,f +5458,30361dps1,15,1,f +5458,30362,15,2,f +5458,30367cpr0006,71,1,f +5458,30369,15,2,f +5458,30374,0,6,f +5458,30377,0,5,f +5458,30377,0,1,t +5458,3039,72,10,f +5458,3039pr0014,0,2,f +5458,3039pr0015,0,2,f +5458,3040b,70,2,f +5458,3040b,72,6,f +5458,3040bpr0003,71,2,f +5458,30483pr01,70,1,f +5458,30505,0,2,f +5458,3062b,72,16,f +5458,3069b,70,2,f +5458,3069b,72,6,f +5458,3176,71,2,f +5458,32000,72,11,f +5458,32002,72,2,f +5458,32002,72,1,t +5458,32005b,72,2,f +5458,32015,71,1,f +5458,32028,71,6,f +5458,32034,0,1,f +5458,32039,71,4,f +5458,32039,4,2,f +5458,32054,4,2,f +5458,32062,0,8,f +5458,32072,0,3,f +5458,32123b,71,4,f +5458,32123b,71,1,t +5458,32138,71,1,f +5458,32140,1,4,f +5458,32198,19,2,f +5458,32269,19,3,f +5458,32270,0,2,f +5458,32271,71,4,f +5458,32449,72,4,f +5458,32526,71,2,f +5458,32556,19,4,f +5458,33299a,71,2,f +5458,3455,72,4,f +5458,3460,0,2,f +5458,3622,72,2,f +5458,3623,71,4,f +5458,3623,0,6,f +5458,3626b,0,2,f +5458,3626bpr0215,78,1,f +5458,3626bpr0342,78,1,f +5458,3626bpr0378,78,1,f +5458,3626bpr0513,78,1,f +5458,3626bpr0587,78,1,f +5458,3660,71,2,f +5458,3679,71,2,f +5458,3680,0,2,f +5458,3684,71,4,f +5458,3685,71,4,f +5458,3701,72,2,f +5458,3705,0,2,f +5458,3706,0,1,f +5458,3710,72,7,f +5458,3710,0,4,f +5458,3713,71,4,f +5458,3713,71,3,t +5458,3737,0,1,f +5458,3743,71,2,f +5458,3749,19,4,f +5458,3794a,71,12,f +5458,3795,72,3,f +5458,3839b,72,3,f +5458,3894,71,2,f +5458,3901,70,1,f +5458,3941,71,8,f +5458,3942c,25,4,f +5458,4032a,72,7,f +5458,4070,70,9,f +5458,4079b,0,3,f +5458,4085c,72,2,f +5458,4150pr0021,71,2,f +5458,4151b,72,2,f +5458,4162,72,8,f +5458,41677,72,7,f +5458,41678,0,1,f +5458,41769,71,1,f +5458,41770,71,1,f +5458,41879a,71,1,f +5458,41879a,70,2,f +5458,42445,47,1,f +5458,42446,72,2,f +5458,4274,71,10,f +5458,4274,71,2,t +5458,43093,1,5,f +5458,4349,0,2,f +5458,43722,71,2,f +5458,43723,71,2,f +5458,43898,72,8,f +5458,44301a,71,1,f +5458,4460b,71,20,f +5458,4460b,70,4,f +5458,44675,70,2,f +5458,44728,71,9,f +5458,4477,0,2,f +5458,4497,0,1,f +5458,4499,70,1,f +5458,4519,71,4,f +5458,4522,0,5,f +5458,4599b,0,4,f +5458,4600,0,2,f +5458,4623,72,2,f +5458,47397,288,1,f +5458,47398,288,1,f +5458,4740,71,8,f +5458,47458,72,2,f +5458,48723,70,2,f +5458,48729a,72,4,t +5458,48729a,72,11,f +5458,49668,288,2,f +5458,50304,71,2,f +5458,50305,71,2,f +5458,50947,72,2,f +5458,53451,0,1,t +5458,53451,0,2,f +5458,54200,71,1,t +5458,54200,71,4,f +5458,55013,72,1,f +5458,57899,0,3,f +5458,57900,0,1,f +5458,58247,0,5,f +5458,59426,72,2,f +5458,59900,0,7,f +5458,60470b,71,2,f +5458,60471,0,3,f +5458,60474,71,5,f +5458,60475a,71,4,f +5458,60478,72,8,f +5458,60483,71,7,f +5458,6081,72,3,f +5458,6091,72,8,f +5458,6112,72,2,f +5458,61184,71,4,f +5458,6120,72,4,f +5458,61252,4,4,f +5458,61409,72,4,f +5458,6141,71,4,t +5458,6141,71,31,f +5458,61485,0,1,f +5458,61678,71,2,f +5458,62462,71,1,f +5458,6255,2,2,f +5458,63965,0,4,f +5458,64567,71,4,f +5458,64644,0,4,f +5458,64803pr0001,28,2,f +5458,64805pr0001,71,1,f +5458,64805pr0002,70,1,f +5458,64805pr0003,70,1,f +5458,64807,70,1,f +5458,6536,72,2,f +5458,6541,4,2,f +5458,6553,0,4,f +5458,6575,72,2,f +5458,6576,71,2,f +5458,6587,72,2,f +5458,6636,72,3,f +5458,6636,70,3,f +5458,6942,47,1,f +5458,73983,0,2,f +5458,76138,71,4,f +5458,86297,484,2,f +5458,970c00,0,1,f +5458,970c00,379,1,f +5458,970c00,70,1,f +5458,970c00,378,2,f +5458,970c00pr0033,70,1,f +5458,970x026,15,2,f +5458,973c32,70,3,f +5458,973c47,71,1,f +5458,973pr1331c01,0,1,f +5458,973pr1420c01,0,1,f +5458,973pr1487c01,378,2,f +5458,973pr1489c01,378,1,f +5458,973pr1501c01,15,2,f +5461,21,47,1,f +5461,270c02,0,2,f +5461,3003,4,6,f +5461,3004,14,4,f +5461,3005,14,2,f +5461,3009,1,2,f +5461,3010,14,6,f +5461,3010,1,4,f +5461,3020,7,3,f +5461,3021,7,2,f +5461,3024,14,2,f +5461,3030,14,1,f +5461,3034,4,1,f +5461,3062a,0,1,f +5461,3127,4,1,f +5461,3176,4,4,f +5461,3324c01,4,2,f +5461,3404ac01,0,1,f +5461,3488,0,8,f +5461,56823,0,1,f +5461,586c01,14,1,f +5463,2412b,4,8,f +5463,2420,0,10,f +5463,2420,4,14,f +5463,2431,71,2,f +5463,2431,0,4,f +5463,2431,4,6,f +5463,2431,15,2,f +5463,2445,4,2,f +5463,2449,4,6,f +5463,2450,4,2,f +5463,2465,0,2,f +5463,2569,0,1,f +5463,2639,4,4,f +5463,2654,72,3,f +5463,2780,0,20,f +5463,2780,0,1,t +5463,2877,0,19,f +5463,3001,4,6,f +5463,3002,0,9,f +5463,3003,71,4,f +5463,3004,4,15,f +5463,3009,4,2,f +5463,30099,4,2,f +5463,3020,0,12,f +5463,3021,4,14,f +5463,3022,0,9,f +5463,3023,0,15,f +5463,3023,4,19,f +5463,3024,4,10,f +5463,3028,0,1,f +5463,3029,0,1,f +5463,3030,72,1,f +5463,3034,4,8,f +5463,3035,71,1,f +5463,3036,0,1,f +5463,30377,0,3,f +5463,30377,0,1,t +5463,3039,1,1,f +5463,3040b,4,6,f +5463,30526,72,2,f +5463,30553,0,6,f +5463,3062b,1,2,f +5463,3068b,15,8,f +5463,3068b,4,7,f +5463,3068b,0,5,f +5463,3069b,4,20,f +5463,3069b,0,6,f +5463,3070b,4,13,f +5463,3070b,4,1,t +5463,32000,0,4,f +5463,32062,4,2,f +5463,32064b,72,2,f +5463,32123b,71,1,t +5463,32123b,71,4,f +5463,32140,71,4,f +5463,32278,72,1,f +5463,32316,0,2,f +5463,32523,1,4,f +5463,32530,72,4,f +5463,32557,14,1,f +5463,3308,4,2,f +5463,3460,4,3,f +5463,3622,71,1,f +5463,3622,4,8,f +5463,3623,4,2,f +5463,3623,0,16,f +5463,3660,4,5,f +5463,3665,4,2,f +5463,3665,0,2,f +5463,3666,0,1,f +5463,3666,4,11,f +5463,3701,0,4,f +5463,3706,0,3,f +5463,3710,0,12,f +5463,3710,4,15,f +5463,3713,71,1,t +5463,3713,71,6,f +5463,3730,0,2,f +5463,3794a,4,1,f +5463,3794a,71,6,f +5463,3794a,0,6,f +5463,3795,0,3,f +5463,3832,4,1,f +5463,3895,0,7,f +5463,3937,72,5,f +5463,3938,4,4,f +5463,4032a,0,1,f +5463,4150,71,1,f +5463,41532,0,4,f +5463,41539,0,1,f +5463,4162,4,3,f +5463,41749,40,1,f +5463,41750,40,1,f +5463,41769,4,4,f +5463,41770,4,4,f +5463,42022,40,2,f +5463,4274,71,1,t +5463,4274,71,8,f +5463,4286,4,2,f +5463,44126,15,1,f +5463,44302a,0,3,f +5463,44309,0,4,f +5463,44567a,72,3,f +5463,4460b,4,4,f +5463,44728,14,4,f +5463,4477,4,1,f +5463,44822,72,1,f +5463,46413,40,1,f +5463,48336,0,2,f +5463,50950,4,10,f +5463,50950,15,2,f +5463,50955,4,2,f +5463,50956,4,2,f +5463,50967,4,6,f +5463,54086pr0001,0,4,f +5463,54200,4,1,t +5463,54200,0,4,f +5463,54200,4,10,f +5463,56145,0,4,f +5463,59426,72,4,f +5463,60477,4,4,f +5463,60481,0,4,f +5463,6134,0,1,f +5463,6141,0,1,t +5463,6141,80,1,t +5463,6141,0,7,f +5463,6141,80,3,f +5463,6180,0,1,f +5463,6191,15,2,f +5463,6231,4,2,f +5463,6541,4,14,f +5463,6564,4,2,f +5463,6565,4,2,f +5463,6636,4,5,f +5463,76385,0,2,f +5463,8156stk01,9999,1,t +5463,88930,0,2,f +5464,2343,0,2,f +5464,2357,72,5,f +5464,2357,71,3,f +5464,2400,0,2,f +5464,2446,73,1,f +5464,2446,4,1,f +5464,2446,2,1,f +5464,2453a,72,2,f +5464,2454a,72,2,f +5464,2540,0,2,f +5464,2587pb02,73,1,f +5464,2587pb03,2,1,f +5464,2587pb04,4,1,f +5464,3001,71,4,f +5464,3002,71,5,f +5464,3003,72,4,f +5464,3003,71,1,f +5464,3004,72,4,f +5464,3004,71,12,f +5464,30045,0,2,f +5464,3005,72,5,f +5464,3005,71,16,f +5464,3010,72,2,f +5464,30145,72,1,f +5464,3020,72,2,f +5464,3021,71,1,f +5464,3022,72,2,f +5464,30237a,71,3,f +5464,30246,71,1,f +5464,3048c,112,3,f +5464,3062b,0,3,f +5464,3455,71,2,f +5464,3460,72,1,f +5464,3581,71,2,f +5464,3622,71,1,f +5464,3626bpb0220,14,1,f +5464,3626bpr0348,14,1,f +5464,3626bpr0351,14,1,f +5464,3660,112,14,f +5464,3665,112,2,f +5464,3684,72,7,f +5464,3688,112,1,f +5464,3830,71,2,f +5464,3831,71,2,f +5464,3941,0,1,f +5464,3957a,0,4,f +5464,4202,2,3,f +5464,4341,0,1,f +5464,4490,72,5,f +5464,4495a,73,3,f +5464,4589,0,2,f +5464,4740,334,1,f +5464,48486,73,1,f +5464,48487,4,1,f +5464,48488,2,1,f +5464,48490,71,2,f +5464,48494pb02,151,1,f +5464,48494pb03,151,2,f +5464,48494pb04,151,1,f +5464,48495,14,1,f +5464,48495,134,1,f +5464,48495,137,1,f +5464,6019,71,1,f +5464,6066,71,2,f +5464,6066,72,2,f +5464,6126a,57,2,f +5464,6636,72,1,f +5464,970x194,73,1,f +5464,970x199,4,1,f +5464,970x199,2,1,f +5464,973c33,73,1,f +5464,973c34,4,1,f +5464,973c35,2,1,f +5465,12825,72,1,f +5465,12825,0,2,f +5465,22667,4,1,f +5465,22667,27,1,f +5465,22667,27,1,t +5465,2335,4,1,f +5465,2343,47,2,f +5465,2343,297,8,f +5465,2357,19,10,f +5465,2357,70,4,f +5465,2357,71,2,f +5465,2362a,47,2,f +5465,2431,72,1,f +5465,2431,70,5,f +5465,2445,70,1,f +5465,2450,72,2,f +5465,2453a,19,8,f +5465,2454a,19,8,f +5465,2460,72,2,f +5465,2462,19,2,f +5465,2476a,28,2,f +5465,2540,72,2,f +5465,2566,0,2,f +5465,2587,135,1,f +5465,2780,0,1,f +5465,2780,0,1,t +5465,2921,70,16,f +5465,298c02,0,1,t +5465,298c02,0,1,f +5465,3002,19,2,f +5465,3002,0,7,f +5465,3002,72,2,f +5465,3003,19,16,f +5465,3003,72,8,f +5465,3004,70,4,f +5465,3004,28,30,f +5465,3004,19,72,f +5465,3004,71,2,f +5465,3004,72,16,f +5465,30044,70,16,f +5465,30046,0,18,f +5465,3005,182,15,f +5465,3005,33,15,f +5465,3005,19,21,f +5465,3005,70,2,f +5465,3005,72,2,f +5465,3006,70,2,f +5465,3008,72,1,f +5465,3008,19,12,f +5465,3009,19,4,f +5465,3009,28,5,f +5465,3010,70,3,f +5465,3010,0,4,f +5465,3010,72,2,f +5465,3010,19,10,f +5465,30103,0,1,f +5465,30106,47,1,f +5465,30115,2,2,f +5465,30136,28,15,f +5465,30136,19,42,f +5465,30136,70,22,f +5465,30137,70,9,f +5465,30137,19,6,f +5465,30152pat0001,0,1,f +5465,30153,36,1,f +5465,3020,19,2,f +5465,3020,70,8,f +5465,3020,72,1,f +5465,3021,70,3,f +5465,3022,0,2,f +5465,3022,19,1,f +5465,3023,19,10,f +5465,3023,70,4,f +5465,3023,72,14,f +5465,3023,71,2,f +5465,30237a,0,2,f +5465,30237a,70,4,f +5465,30238,0,1,f +5465,3027,72,1,f +5465,3029,72,5,f +5465,30292,2,1,f +5465,30292,4,1,f +5465,3030,72,6,f +5465,3031,70,1,f +5465,3034,72,1,f +5465,3034,70,9,f +5465,3036,378,3,f +5465,30374,19,1,f +5465,30374,0,1,f +5465,30374,70,3,f +5465,30374,15,1,f +5465,30377,72,4,f +5465,30381,0,2,f +5465,3039,72,1,f +5465,3039,378,12,f +5465,3039,19,7,f +5465,3040b,378,10,f +5465,3040b,288,2,f +5465,3040b,19,4,f +5465,3041,378,4,f +5465,30414,19,1,f +5465,3045,378,4,f +5465,3048c,378,9,f +5465,30526,19,6,f +5465,30553,72,1,f +5465,30586,71,2,f +5465,3062b,0,2,f +5465,3062b,36,1,f +5465,3062b,34,1,f +5465,3062b,70,2,f +5465,3062b,19,14,f +5465,3062b,4,1,f +5465,3062b,33,1,f +5465,3062b,46,1,f +5465,3068b,4,1,f +5465,3068b,72,5,f +5465,3068b,2,1,f +5465,3068bpr0170,70,1,f +5465,3068bpr0179,19,1,f +5465,3068bpr0180,71,1,f +5465,3068bpr0184,71,1,f +5465,3068bpr0185,19,1,f +5465,3069b,70,1,f +5465,3069bpr0055,15,1,f +5465,3070b,72,2,f +5465,3070b,19,2,t +5465,3070b,19,7,f +5465,3070b,72,1,t +5465,3176,72,2,f +5465,32000,19,10,f +5465,32064b,0,1,f +5465,3245b,19,14,f +5465,33009,0,1,f +5465,33009,70,3,f +5465,33048,484,1,f +5465,33057,484,2,f +5465,3307,19,2,f +5465,3308,19,7,f +5465,33125,484,1,f +5465,33215,378,2,f +5465,33320,2,1,f +5465,3460,72,1,f +5465,3622,19,15,f +5465,3622,70,4,f +5465,3622,0,6,f +5465,3623,72,2,f +5465,3623,70,2,f +5465,3623,0,1,f +5465,3626b,0,1,f +5465,3626bpr0703,78,1,f +5465,3626bpr0719,72,2,f +5465,3626bpr0720,15,1,f +5465,3626bpr0721,78,1,f +5465,3626bpr0722,78,1,f +5465,3626bpr0723,78,1,f +5465,3626bpr0724,78,1,f +5465,3626bpr0726,78,1,f +5465,3626bpr0727,78,1,f +5465,3659,19,15,f +5465,3659,28,10,f +5465,3660,19,7,f +5465,3660,70,1,f +5465,3665,19,12,f +5465,3666,70,1,f +5465,3666,71,1,f +5465,3678bpr0011a,288,1,f +5465,3679,71,4,f +5465,3680,0,4,f +5465,3684,71,3,f +5465,3710,72,2,f +5465,3710,0,1,f +5465,3747b,70,2,f +5465,3794a,72,9,f +5465,3794a,70,13,f +5465,3794a,0,1,f +5465,3795,19,1,f +5465,3795,70,3,f +5465,3795,72,5,f +5465,3830,72,4,f +5465,3830,71,4,f +5465,3831,72,4,f +5465,3831,71,4,f +5465,3832,19,4,f +5465,3846,71,1,f +5465,3847,148,1,f +5465,3848,0,4,f +5465,3941,19,47,f +5465,3942c,378,12,f +5465,40233,0,1,f +5465,40234,71,1,f +5465,40239,71,2,f +5465,40240,308,1,f +5465,40243,72,8,f +5465,40244,19,1,f +5465,4032a,19,2,f +5465,4032b,4,1,f +5465,4032b,70,1,f +5465,4032b,2,1,f +5465,4070,70,16,f +5465,4079,0,2,f +5465,4079b,4,2,f +5465,41539,72,4,f +5465,4162,72,4,f +5465,41879a,0,1,f +5465,4282,72,2,f +5465,4286,70,2,f +5465,4332,0,1,f +5465,4349,0,1,f +5465,43888,70,2,f +5465,43898,47,2,f +5465,44294,71,4,f +5465,44567a,72,1,f +5465,4460b,19,2,f +5465,44728,72,1,f +5465,4589,36,1,f +5465,4599b,0,1,f +5465,4738a,70,1,f +5465,4739a,70,1,f +5465,48336,19,1,f +5465,4842stk01,9999,1,t +5465,48457,72,2,f +5465,4865a,71,4,f +5465,4865a,19,1,f +5465,48729b,72,1,t +5465,48729b,72,2,f +5465,50231,0,2,f +5465,50231,288,1,f +5465,52107,0,1,f +5465,53451,15,1,f +5465,53451,15,1,t +5465,54200,70,10,f +5465,54200,0,1,t +5465,54200,70,3,t +5465,54200,297,2,f +5465,54200,297,1,t +5465,54200,0,12,f +5465,59,383,1,f +5465,59363,70,1,f +5465,59900,42,1,f +5465,59900,2,4,f +5465,59900,15,6,f +5465,59900,297,4,f +5465,59900,34,1,f +5465,59900,70,4,f +5465,59900,80,1,f +5465,59900,182,1,f +5465,59900,378,23,f +5465,60115,72,2,f +5465,6019,0,1,f +5465,60470a,71,3,f +5465,60474,72,3,f +5465,60474,15,2,f +5465,60474,14,1,f +5465,60475a,71,6,f +5465,60592,70,15,f +5465,6111,72,1,f +5465,6112,72,1,f +5465,6131,288,1,f +5465,6131pr0005,70,1,f +5465,6132,71,1,f +5465,6141,80,8,f +5465,6141,47,4,f +5465,6141,72,1,t +5465,6141,4,1,t +5465,6141,80,1,t +5465,6141,57,6,f +5465,6141,57,2,t +5465,6141,27,4,f +5465,6141,15,1,t +5465,6141,47,2,t +5465,6141,4,4,f +5465,6141,297,8,f +5465,6141,0,1,t +5465,6141,297,3,t +5465,6141,27,1,t +5465,6141,0,1,f +5465,6141,19,2,f +5465,6141,19,1,t +5465,6141,72,2,f +5465,6141,15,2,f +5465,61482,71,2,f +5465,61482,71,1,t +5465,61485,0,1,f +5465,6231,71,4,f +5465,6233,378,1,f +5465,62462,0,2,f +5465,6251pr0003,84,1,f +5465,6254,191,1,f +5465,6256,82,1,f +5465,62808,72,2,f +5465,63864,71,4,f +5465,64390,70,2,f +5465,64644,0,4,f +5465,64647,57,8,f +5465,64647,57,5,t +5465,73983,19,4,f +5465,85984,72,10,f +5465,87079,70,3,f +5465,87087,19,12,f +5465,87087,71,4,f +5465,87087,0,1,f +5465,87421,19,8,f +5465,88283,0,1,f +5465,89520,80,1,f +5465,89523,72,4,f +5465,92084pr0001,70,1,f +5465,92084pr0002,72,1,f +5465,92084pr0003,15,1,f +5465,92862,9999,1,f +5465,92865,0,2,f +5465,970c00,71,1,f +5465,970c00,379,1,f +5465,970c00,0,4,f +5465,970c00pr0175,0,1,f +5465,973c47,71,1,f +5465,973pr1671c01,72,2,f +5465,973pr1680c01,379,1,f +5465,973pr1681c01,288,1,f +5465,973pr1682c01,0,1,f +5465,973pr1683c01,72,1,f +5465,973pr1684c01,0,1,f +5465,973pr1685c01,0,1,f +5468,95650,15,1,f +5469,3037,4,12,f +5469,3041,4,2,f +5471,2352,4,1,f +5471,2456,4,2,f +5471,2456,1,2,f +5471,2456,14,2,f +5471,3001,2,6,f +5471,3001,4,10,f +5471,3001,1,8,f +5471,3001,14,10,f +5471,3001,0,6,f +5471,3001,15,8,f +5471,3001pr1,14,1,f +5471,3002,2,4,f +5471,3002,1,4,f +5471,3002,15,4,f +5471,3002,0,2,f +5471,3002,14,6,f +5471,3002,4,6,f +5471,3003,2,8,f +5471,3003,15,12,f +5471,3003,14,16,f +5471,3003,0,6,f +5471,3003,1,12,f +5471,3003,4,16,f +5471,3003pe2,14,2,f +5471,3007,4,2,f +5471,3007,14,2,f +5471,30076,1,1,f +5471,30077,14,2,f +5471,3483,0,8,f +5471,4132,4,2,f +5471,4133,15,2,f +5471,4204,2,1,f +5471,4594,47,1,f +5471,4727,2,3,f +5471,4728,14,1,f +5471,4728,4,1,f +5471,4728,1,1,f +5471,4744,1,1,f +5471,4744pr0001,0,1,f +5471,4744pr0002,4,1,f +5471,4744pr0004,2,1,f +5471,4745,14,1,f +5471,4747,4,1,f +5471,4748,4,1,f +5471,600,15,1,f +5471,6232,4,1,f +5471,6235,4,1,f +5471,6248,4,8,f +5471,6249,4,2,f +5472,3020,7,1,f +5472,3021,7,1,f +5472,3022,7,2,f +5472,3023,7,1,f +5472,3034,7,1,f +5472,3039p32,7,2,f +5472,3626apr0001,14,1,f +5472,3660,7,1,f +5472,3666,7,1,f +5472,3829c01,7,1,f +5472,3832,7,1,f +5472,3838,4,1,f +5472,3842b,4,1,f +5472,3933a,7,1,f +5472,3934a,7,1,f +5472,3957a,36,1,f +5472,4032a,0,2,f +5472,4085b,7,2,f +5472,4175,0,2,f +5472,4285a,7,1,f +5472,4345a,7,2,f +5472,4346,7,2,f +5472,4349,7,2,f +5472,4460a,7,2,f +5472,4479,0,1,f +5472,4522,0,1,f +5472,4588,0,2,f +5472,4589,36,1,f +5472,4590,0,4,f +5472,4596,7,3,f +5472,4598,7,1,f +5472,4740,34,2,f +5472,6141,34,2,f +5472,6141,36,2,f +5472,970c00,4,1,f +5472,973p90c02,4,1,f +5473,12939,4,4,f +5473,2465,15,2,f +5473,3001,4,1,f +5473,3001,2,1,f +5473,3001,14,1,f +5473,3001,15,2,f +5473,3002,14,1,f +5473,3002,1,1,f +5473,3003,15,1,f +5473,3003,1,1,f +5473,3003,14,2,f +5473,3003,4,2,f +5473,3004,1,3,f +5473,3004,25,8,f +5473,3004,2,1,f +5473,3004,0,4,f +5473,3004,15,4,f +5473,3004,14,2,f +5473,3005,4,2,f +5473,3005,0,1,f +5473,3005,15,5,f +5473,3005,25,4,f +5473,30089,0,1,f +5473,3009,15,2,f +5473,3022,1,2,f +5473,3022,15,1,f +5473,3023,4,2,f +5473,3027,1,1,f +5473,3031,2,2,f +5473,3034,2,6,f +5473,3036,1,2,f +5473,3039,2,2,f +5473,3040b,15,1,f +5473,3040b,0,1,f +5473,3040b,4,1,f +5473,3062b,15,8,f +5473,3062b,2,7,f +5473,3062b,4,2,f +5473,3622,15,2,f +5473,3622,0,2,f +5473,3626cpr0499,14,1,f +5473,3648b,72,1,f +5473,3649,71,1,f +5473,3659,15,4,f +5473,3700,71,2,f +5473,3749,19,2,f +5473,3942c,1,1,f +5473,3942c,15,1,f +5473,3957a,1,2,f +5473,4286,14,1,f +5473,4460b,1,2,f +5473,4495b,2,1,f +5473,4495b,4,1,f +5473,86035,4,1,f +5473,970c00,1,1,f +5473,973pr1580c01,15,1,f +5474,2412b,4,3,f +5474,2412b,1,1,f +5474,2412b,80,5,f +5474,2420,1,8,f +5474,2420,14,4,f +5474,2431,0,10,f +5474,2431,1,5,f +5474,2431,72,4,f +5474,2431,2,3,f +5474,2431,4,3,f +5474,2431,14,1,f +5474,2432,0,2,f +5474,2432,14,2,f +5474,2432,1,2,f +5474,2432,15,1,f +5474,2436,4,4,f +5474,2436,15,2,f +5474,2436,0,3,f +5474,2436,1,5,f +5474,2456,0,4,f +5474,2540,14,2,f +5474,2555,72,2,f +5474,2555,0,4,f +5474,2555,1,2,f +5474,3001,0,2,f +5474,30027b,71,4,f +5474,30028,0,4,f +5474,3003,1,1,f +5474,3004,15,1,f +5474,3004,0,1,f +5474,3004,1,1,f +5474,3010,0,2,f +5474,3010,1,1,f +5474,3010,14,2,f +5474,3010,15,2,f +5474,3020,0,7,f +5474,3020,1,2,f +5474,3020,72,6,f +5474,3020,14,3,f +5474,3020,15,3,f +5474,3021,0,6,f +5474,3021,1,2,f +5474,3021,14,3,f +5474,3021,72,4,f +5474,3021,4,1,f +5474,3022,14,1,f +5474,3022,4,1,f +5474,3022,0,4,f +5474,3022,2,2,f +5474,3022,1,3,f +5474,3023,0,4,f +5474,3023,72,1,f +5474,3023,1,11,f +5474,3023,15,2,f +5474,3023,14,1,f +5474,3024,36,6,f +5474,3024,1,6,f +5474,3030,1,1,f +5474,3030,0,1,f +5474,3031,2,2,f +5474,3031,0,2,f +5474,3031,1,2,f +5474,3032,0,1,f +5474,3034,72,1,f +5474,30359b,72,1,f +5474,30374,0,1,f +5474,3040b,1,2,f +5474,30552,72,2,f +5474,30586,15,2,f +5474,3068b,2,2,f +5474,3068b,15,3,f +5474,3069b,14,1,f +5474,3069b,2,2,f +5474,3069b,15,7,f +5474,3069b,33,4,f +5474,3069b,0,4,f +5474,3069b,72,2,f +5474,3069b,1,4,f +5474,3070b,1,2,f +5474,3070b,46,2,f +5474,3070b,46,1,t +5474,32001,1,2,f +5474,32001,0,2,f +5474,32028,15,1,f +5474,32028,0,1,f +5474,3297,0,1,f +5474,3623,0,1,f +5474,3623,72,1,f +5474,3660,0,2,f +5474,3660,1,1,f +5474,3665,72,1,f +5474,3709,15,3,f +5474,3709,1,2,f +5474,3710,2,1,f +5474,3710,15,4,f +5474,3710,1,3,f +5474,3710,0,5,f +5474,3710,14,2,f +5474,3788,0,2,f +5474,3788,1,2,f +5474,3788,14,1,f +5474,3788,15,2,f +5474,3794a,4,2,f +5474,3794a,0,2,f +5474,3794a,1,10,f +5474,3795,0,6,f +5474,3795,2,1,f +5474,3795,72,1,f +5474,3832,1,1,f +5474,3832,0,1,f +5474,3958,72,1,f +5474,4070,15,6,f +5474,4070,72,2,f +5474,4081b,14,4,f +5474,41854,1,3,f +5474,42022,1,2,f +5474,42446,72,1,f +5474,43093,1,1,f +5474,43888,72,1,f +5474,44302a,72,2,f +5474,44674,14,1,f +5474,44674,1,2,f +5474,44674,0,2,f +5474,44728,0,1,f +5474,47458,0,1,f +5474,47755,0,1,f +5474,47758,0,1,f +5474,48336,0,1,f +5474,4865a,15,2,f +5474,50943,80,2,f +5474,50944pr0001,0,24,f +5474,50947,4,4,f +5474,50949,0,3,f +5474,50950,0,2,f +5474,50951,0,20,f +5474,51011,0,4,f +5474,54200,4,1,t +5474,54200,36,1,t +5474,54200,1,6,f +5474,54200,46,1,t +5474,54200,0,1,t +5474,54200,34,1,t +5474,54200,0,14,f +5474,54200,34,2,f +5474,54200,15,2,f +5474,54200,15,1,t +5474,54200,4,6,f +5474,54200,1,1,t +5474,54200,36,4,f +5474,54200,46,2,f +5474,6014b,71,8,f +5474,6015,0,8,f +5474,6087,1,1,f +5474,6120,15,2,f +5474,6141,34,1,t +5474,6141,36,1,t +5474,6141,33,2,f +5474,6141,34,1,f +5474,6141,4,1,t +5474,6141,47,2,f +5474,6141,80,16,f +5474,6141,47,1,t +5474,6141,80,1,t +5474,6141,46,3,f +5474,6141,36,1,f +5474,6141,4,4,f +5474,6141,33,1,t +5474,6141,46,1,t +5474,6157,0,17,f +5474,6179,71,1,f +5474,6191,0,1,f +5474,6231,4,4,f +5474,6238,1,1,f +5474,6238,40,2,f +5474,71076,383,2,f +5475,3626bpr0938,14,1,f +5475,3678bpr0012b,70,1,f +5475,53451,15,2,f +5475,88646,0,1,f +5475,91884,308,1,f +5475,95673,179,1,f +5475,973pr2020c01,70,1,f +5475,99239pr0001,19,1,f +5476,1818stk01,9999,1,t +5476,2340,15,4,f +5476,2377,15,2,f +5476,2399,1,1,f +5476,2412b,0,1,f +5476,2415,7,1,f +5476,2432,15,4,f +5476,2432,4,1,f +5476,2436,15,1,f +5476,2441,4,1,f +5476,2458,1,2,f +5476,2496,0,1,f +5476,2508,7,2,f +5476,2655,7,1,f +5476,3003,4,1,f +5476,3004,1,1,f +5476,3004,4,1,f +5476,3020,15,4,f +5476,3022,4,2,f +5476,3022,15,2,f +5476,3022,7,2,f +5476,3022,0,1,f +5476,3022,1,4,f +5476,3023,7,4,f +5476,3023,15,3,f +5476,3024,1,4,f +5476,3024,36,4,f +5476,3024,15,6,f +5476,3031,4,1,f +5476,3034,7,2,f +5476,3039pc5,7,1,f +5476,3068b,15,1,f +5476,3069b,1,1,f +5476,3069bp52,15,1,f +5476,3070b,34,1,f +5476,3070b,15,4,f +5476,3070b,46,2,f +5476,3070b,36,1,f +5476,3139,0,11,f +5476,3298,1,2,f +5476,3298,15,2,f +5476,3460,1,1,f +5476,3460,15,2,f +5476,3464,47,1,f +5476,3585,15,1,f +5476,3586,15,1,f +5476,3622,1,2,f +5476,3623,15,2,f +5476,3624,0,1,f +5476,3626bp04,14,1,f +5476,3626bp07,14,1,f +5476,3626bpr0001,14,1,f +5476,3666,1,1,f +5476,3679,7,1,f +5476,3680,0,1,f +5476,3710,15,6,f +5476,3730,7,1,f +5476,3829c01,4,1,f +5476,3832,7,1,f +5476,3839b,7,2,f +5476,3900,15,2,f +5476,3901,0,1,f +5476,3935,15,1,f +5476,3936,15,1,f +5476,4079,4,3,f +5476,4162,1,1,f +5476,4286,15,2,f +5476,4449,0,1,f +5476,4477,15,1,f +5476,4477,1,1,f +5476,4485,1,1,f +5476,4617b,0,2,f +5476,4624,15,10,f +5476,4625,15,3,f +5476,4854,15,3,f +5476,4855,15,2,f +5476,4856a,15,1,f +5476,4857,15,3,f +5476,4859,1,1,f +5476,4859,15,1,f +5476,4862,41,10,f +5476,4863,15,4,f +5476,4864a,15,2,f +5476,4865a,15,4,f +5476,4870,7,2,f +5476,4871,15,1,f +5476,6019,15,2,f +5476,6069,15,2,f +5476,6087,4,1,f +5476,6141,36,3,f +5476,6141,7,2,f +5476,6152,41,1,f +5476,6153a,15,2,f +5476,6157,0,1,f +5476,970c00,1,1,f +5476,970c00,0,2,f +5476,973pb0097c01,1,1,f +5476,973pr1245c01,1,1,f +5476,973px189c01,0,1,f +5477,3069bpr0085,15,1,f +5477,3957a,15,4,f +5477,4589,182,4,f +5477,4740,0,4,f +5477,6019,71,2,f +5478,2346,0,4,f +5478,3483,0,2,f +5478,3634,0,2,f +5481,11208,71,4,f +5481,11209,0,4,f +5481,11477,72,2,f +5481,2412b,72,2,f +5481,2412b,71,8,f +5481,2431,25,2,f +5481,2431,27,2,f +5481,2432,4,2,f +5481,2432,0,2,f +5481,2445,71,3,f +5481,2508,0,1,f +5481,2540,72,1,f +5481,298c02,4,1,f +5481,30031,72,2,f +5481,30036,72,1,f +5481,3005,0,4,f +5481,3010,4,1,f +5481,30157,70,2,f +5481,3020,72,4,f +5481,3021,0,3,f +5481,3022,72,4,f +5481,3022,2,2,f +5481,3023,25,2,f +5481,3023,36,3,f +5481,3023,27,2,f +5481,3023,15,2,f +5481,3023,0,2,f +5481,3024,0,6,f +5481,3032,0,1,f +5481,3035,71,1,f +5481,3040b,2,1,f +5481,30414,71,1,f +5481,3069b,71,2,f +5481,3069b,15,5,f +5481,3069b,25,3,f +5481,3069b,27,2,f +5481,3622,71,2,f +5481,3626cpr0645,14,1,f +5481,3626cpr1664,14,1,f +5481,3665,71,6,f +5481,3666,0,6,f +5481,3666,15,2,f +5481,3666,72,3,f +5481,3710,19,5,f +5481,3710,0,7,f +5481,3795,0,1,f +5481,3795,72,2,f +5481,3823,40,1,f +5481,3829c01,4,1,f +5481,3941,2,1,f +5481,3958,72,1,f +5481,4032a,4,1,f +5481,4032a,15,1,f +5481,4081b,72,2,f +5481,4162,71,2,f +5481,43713,15,2,f +5481,4488,0,4,f +5481,4599b,0,2,f +5481,47456,15,1,f +5481,47755,15,2,f +5481,4864b,40,2,f +5481,51739,25,1,f +5481,51739,27,1,f +5481,52031,0,2,f +5481,54200,72,2,f +5481,55981,71,4,f +5481,60481,0,2,f +5481,6141,46,6,f +5481,6141,57,2,f +5481,6141,36,2,f +5481,62810,484,1,f +5481,63082,0,1,f +5481,6636,4,2,f +5481,72454,15,2,f +5481,85984,72,4,f +5481,86035,1,1,f +5481,87079,0,2,f +5481,87580,71,4,f +5481,88072,71,2,f +5481,92402,0,4,f +5481,92583,40,1,f +5481,93274,14,1,f +5481,93606,25,1,f +5481,93606,27,1,f +5481,970c00,1,1,f +5481,970c00,0,1,f +5481,973pr1720c01,15,1,f +5481,973pr2335c01,0,1,f +5481,97895,14,2,f +5481,98282,72,4,f +5481,98313,0,2,f +5481,99206,71,2,f +5481,99780,72,6,f +5482,11477,26,2,f +5482,11816pr0005,78,1,f +5482,15470,70,1,f +5482,20482,47,1,f +5482,20482,47,1,t +5482,2496,0,2,f +5482,2540,15,1,f +5482,2655,71,2,f +5482,3002,29,1,f +5482,3020,26,1,f +5482,3020,15,1,f +5482,3023,212,2,f +5482,3023,29,1,f +5482,3023,19,1,f +5482,3024,158,1,t +5482,3024,158,1,f +5482,3062b,70,1,f +5482,3062b,36,1,f +5482,33291,4,1,f +5482,6141,14,1,f +5482,6141,14,1,t +5482,87552,47,1,f +5482,92258,0,1,f +5482,92456pr0061c01,78,1,f +5482,92820pr0012c01,212,1,f +5482,98138pr0017,29,1,f +5482,98138pr0017,29,1,t +5482,98138pr0024a,179,1,t +5482,98138pr0024a,179,1,f +5483,2446,7,1,f +5483,3626bp6f,14,1,f +5483,769,334,1,t +5483,769,334,1,f +5483,970c00pb027,7,1,f +5483,973px335c01,7,1,f +5484,11098,297,1,f +5484,16768pat0001,4,1,f +5484,18392pr0002,70,1,f +5484,3626cpr1585,70,1,f +5484,92690,297,1,f +5484,970c00pr0785,70,1,f +5484,973pr2877c01,70,1,f +5484,98138pr0023,182,1,f +5484,98141,297,1,f +5486,3005,15,1,f +5486,30176,2,9,f +5486,3020,2,2,f +5486,3021,15,1,f +5486,3023,15,4,f +5486,3024,15,3,f +5486,3028,28,1,f +5486,3623,15,3,f +5486,3741,2,4,f +5486,3742,4,12,f +5486,3794a,15,1,f +5486,3941,2,22,f +5486,40232,0,1,f +5486,4070,15,2,f +5486,4286,15,1,f +5488,2412b,72,1,f +5488,2877,72,2,f +5488,298c02,71,1,f +5488,298c02,71,1,t +5488,30000,71,5,f +5488,3003,71,2,f +5488,30162,72,2,f +5488,3020,71,1,f +5488,3023,0,1,f +5488,3023,320,1,f +5488,3037,71,2,f +5488,3039,71,2,f +5488,3062b,71,3,f +5488,3069b,320,2,f +5488,32000,71,2,f +5488,32001,71,1,f +5488,3660,72,1,f +5488,3701,71,1,f +5488,3710,71,1,f +5488,3794a,72,1,f +5488,3957a,71,1,f +5488,4032a,71,1,f +5488,4070,71,2,f +5488,4274,1,1,t +5488,4274,1,4,f +5488,43710,71,1,f +5488,43711,71,1,f +5488,43722,0,1,f +5488,43723,0,1,f +5488,4599a,71,1,f +5488,4697b,71,1,t +5488,4697b,71,2,f +5488,55981,71,10,f +5488,6112,72,2,f +5488,6232,4,1,f +5488,6564,71,2,f +5488,6565,71,2,f +5489,2040,15,3,f +5489,2041,4,1,f +5489,3031,4,1,f +5489,3031,14,1,f +5489,3031,1,1,f +5489,3334,2,1,f +5489,3941,1,1,f +5489,4094a,14,1,f +5489,4095,14,1,f +5489,4222a,4,1,f +5489,4424,14,1,f +5489,4461,1,1,f +5489,4727,2,2,f +5489,4728,4,1,f +5489,4728,14,1,f +5489,4750,14,1,f +5489,4841,4,1,f +5489,4842c01,14,1,f +5489,fab9b,9999,1,f +5490,12825,0,4,f +5490,13731,1,2,f +5490,2412b,297,4,f +5490,2412b,42,2,f +5490,2419,1,2,f +5490,2420,15,4,f +5490,2736,71,2,f +5490,298c02,15,1,t +5490,298c02,15,1,f +5490,3001,1,7,f +5490,30176,2,2,f +5490,3020,15,5,f +5490,3020,0,1,f +5490,3021,0,3,f +5490,3022,4,2,f +5490,3022,72,5,f +5490,3023,1,12,f +5490,30237a,72,1,f +5490,30355,1,1,f +5490,30356,1,1,f +5490,30363,0,1,f +5490,30503,1,2,f +5490,3068b,272,7,f +5490,3069b,0,1,f +5490,32064b,15,8,f +5490,3298,15,1,f +5490,3460,15,2,f +5490,3623,15,2,f +5490,3626bpr0746,14,1,f +5490,3626bpr0868,4,1,f +5490,3660,1,6,f +5490,3666,1,2,f +5490,3678b,28,2,f +5490,3700,1,1,f +5490,3710,0,4,f +5490,3747b,72,2,f +5490,3794b,15,1,f +5490,3795,72,6,f +5490,3832,72,3,f +5490,4032a,71,4,f +5490,4070,0,2,f +5490,4085c,72,2,f +5490,43093,1,2,f +5490,43713,0,1,f +5490,43719,0,1,f +5490,43722,2,1,f +5490,43723,4,1,f +5490,48336,15,2,f +5490,4865a,0,2,f +5490,4871,0,1,f +5490,50304,0,1,f +5490,50305,0,1,f +5490,50373,1,1,f +5490,50943,72,1,f +5490,51739,15,1,f +5490,54200,0,2,f +5490,54200,297,1,t +5490,54200,297,2,f +5490,54200,0,1,t +5490,54383,1,1,f +5490,54383,0,1,f +5490,54384,0,1,f +5490,54384,1,1,f +5490,55982,0,1,f +5490,59229,72,1,f +5490,6019,15,2,f +5490,60479,0,2,f +5490,6091,15,2,f +5490,6091,72,2,f +5490,6126b,182,2,f +5490,61409,0,4,f +5490,6141,297,6,f +5490,6141,297,1,t +5490,6231,0,2,f +5490,6239,272,2,f +5490,6553,71,2,f +5490,6564,0,2,f +5490,6565,0,2,f +5490,6636,0,4,f +5490,73983,1,12,f +5490,85544,1,1,f +5490,87079,0,2,f +5490,92280,0,2,f +5490,92579,40,1,f +5490,92690,297,2,f +5490,92946,1,4,f +5490,93273,1,2,f +5490,93606,0,2,f +5490,970c00pr0272,15,1,f +5490,970c00pr0274,1,1,f +5490,973pr1886c01,15,1,f +5490,973pr1896c01,1,1,f +5490,98133pr0002,1,1,f +5490,98134,297,1,f +5490,98135,297,4,f +5490,98137,297,2,f +5490,98138,297,1,t +5490,98138,36,1,t +5490,98138,34,2,f +5490,98138,297,8,f +5490,98138,34,1,t +5490,98138,36,2,f +5490,98138pr0003,36,1,f +5490,98138pr0003,36,1,t +5490,98141,297,2,f +5490,98151pr0002,15,1,f +5490,98283,28,4,f +5492,2489,6,1,f +5492,2586pw1,19,1,f +5492,2586px3,19,1,f +5492,30113,6,1,f +5492,30114,0,1,f +5492,30115,0,1,f +5492,30126p01,15,1,f +5492,30127p01,15,1,f +5492,30132,8,5,f +5492,30133,15,1,f +5492,30133,0,1,f +5492,30135,1,1,f +5492,30138pb01,15,1,f +5492,30141,8,3,f +5492,3069bp03,7,2,f +5492,3069bpr0100,2,5,f +5492,3069bpw0,15,1,f +5492,3069bpw1,15,1,f +5492,3629pw1,1,1,f +5492,3629pw2,7,1,f +5492,3835,0,1,f +5492,4497,0,1,f +5492,4498,0,1,f +5492,4499,0,1,f +5492,57503,334,3,f +5492,57504,334,3,f +5492,57505,334,3,f +5492,57506,334,3,f +5492,71342,334,1,f +5493,3001a,47,1,f +5493,3001a,14,3,f +5493,3004,14,4,f +5493,3004p60,15,2,f +5493,3009pt1,14,4,f +5493,3010,47,1,f +5493,3010p30,14,1,f +5493,3010pb035e,4,1,f +5493,3020,4,6,f +5493,3021,14,2,f +5493,3022,4,1,f +5493,3023,4,4,f +5493,3029,4,1,f +5493,3030,14,2,f +5493,3030,4,1,f +5493,3037,14,8,f +5493,3039,14,4,f +5493,3137c01,0,1,f +5493,3137c02,0,4,f +5493,3139,0,2,f +5493,3183a,4,1,f +5493,3184,4,1,f +5493,7b,0,8,f +5496,26562,15,1,f +5496,3626cpr1918,92,1,f +5496,88646pr0002,15,1,f +5496,970c00pr1053,0,1,f +5496,973pr3374c01,15,1,f +5496,98385,0,1,f +5497,2723,0,2,f +5497,2780,0,40,f +5497,2780,0,1,t +5497,2909c02,4,2,f +5497,32002,8,1,t +5497,32002,8,2,f +5497,32005a,0,2,f +5497,32009,0,2,f +5497,32013,0,4,f +5497,32015,0,2,f +5497,32016,0,2,f +5497,32054,4,14,f +5497,32062,0,12,f +5497,32062,0,1,t +5497,32063,0,4,f +5497,32073,0,1,f +5497,32123b,7,1,t +5497,32123b,7,4,f +5497,32138,0,2,f +5497,32140,0,4,f +5497,32140,148,4,f +5497,32202,179,2,f +5497,32291,0,6,f +5497,32316,0,4,f +5497,32348,0,2,f +5497,32449,0,2,f +5497,32496,0,2,f +5497,32523,0,1,f +5497,32524,0,6,f +5497,32525,0,2,f +5497,32526,0,2,f +5497,32527,148,2,f +5497,32528,148,2,f +5497,32534,148,3,f +5497,32535,148,3,f +5497,32556,7,4,f +5497,32558,4,2,f +5497,3673,7,4,f +5497,3705,0,3,f +5497,3706,0,3,f +5497,3707,0,3,f +5497,3713,7,12,f +5497,3713,7,1,t +5497,3749,7,10,f +5497,3749,7,1,t +5497,41668,0,1,f +5497,41669,36,4,f +5497,41669,41,4,f +5497,41677,148,6,f +5497,41677,0,6,f +5497,41678,0,3,f +5497,41893,0,4,f +5497,41894,0,2,f +5497,41896,7,4,f +5497,41897,0,4,f +5497,42908,0,2,f +5497,43093,0,1,t +5497,43093,0,6,f +5497,4519,0,6,f +5497,5282,0,1,f +5497,5306bc015,0,2,f +5497,6272c01,0,1,f +5497,6282,0,1,f +5497,6536,0,6,f +5497,6558,0,14,f +5497,6587,8,4,f +5497,6632,0,8,f +5497,73129,4,4,f +5497,78c03,179,1,f +5497,78c11,179,2,f +5497,rb00178,0,2,f +5497,rb00180,0,2,f +5498,1131,0,1,f +5498,3048c,0,2,f +5498,3049b,0,6,f +5498,30603,0,2,f +5498,3300,0,6,f +5498,43093,1,1,f +5498,4740,47,1,t +5498,4740,47,1,f +5498,47430,0,2,f +5498,47431,0,2,f +5498,47432,0,2,f +5498,47452,72,2,f +5498,47454,72,2,f +5498,47455,4,10,f +5498,47461,4,1,f +5498,47474,72,1,f +5498,47477c01pb04,0,1,f +5498,47501,0,4,f +5498,48141,89,1,f +5498,bb153pb05,320,1,f +5498,kkc37,89,1,f +5498,kkc39,89,1,f +5498,kkc40,89,1,f +5498,kkc42,89,1,f +5498,kkc43,89,1,f +5498,kkc45,89,1,f +5499,3020,0,2,f +5499,3070b,379,1,f +5499,3070b,379,1,t +5499,4623,0,2,f +5499,4733,0,1,f +5499,4740,47,1,f +5499,4740,379,1,f +5499,4859,0,4,f +5502,10304pr0001,0,1,f +5502,30163,0,1,f +5502,30238,4,1,f +5502,3035,72,1,f +5502,3626cpr1015,1000,1,f +5502,42450,0,1,f +5502,64798,0,1,f +5502,92338,72,1,f +5502,970c00pr0363,0,1,f +5502,973pr2100c01,0,1,f +5502,98138pr0014,297,1,f +5505,22119,4,1,f +5505,22119,1,1,f +5505,2736,71,2,f +5505,2780,0,80,f +5505,2780,0,2,t +5505,2905,0,4,f +5505,32005b,72,3,f +5505,32009,72,6,f +5505,32013,0,4,f +5505,32014,0,16,f +5505,32034,0,2,f +5505,32039,0,4,f +5505,32054,0,8,f +5505,32062,0,22,f +5505,32072,0,4,f +5505,32073,71,7,f +5505,32123b,71,3,t +5505,32123b,71,6,f +5505,32138,0,3,f +5505,32140,72,10,f +5505,32184,0,4,f +5505,32192,0,2,f +5505,32269,71,2,f +5505,32270,0,4,f +5505,32271,72,2,f +5505,32278,151,11,f +5505,32291,72,6,f +5505,32293,0,2,f +5505,32316,72,5,f +5505,32348,72,16,f +5505,32498,0,1,f +5505,32523,72,16,f +5505,32524,151,6,f +5505,32525,151,7,f +5505,32526,72,8,f +5505,32556,71,13,f +5505,32557,0,4,f +5505,3647,71,1,t +5505,3647,71,6,f +5505,3648b,71,7,f +5505,3649,71,1,f +5505,3673,71,3,f +5505,3701,72,4,f +5505,3705,0,4,f +5505,3706,0,4,f +5505,3707,0,2,f +5505,3708,0,2,f +5505,3713,71,1,t +5505,3713,71,16,f +5505,3737,0,4,f +5505,3749,19,1,t +5505,3749,19,4,f +5505,3894,72,2,f +5505,4019,71,2,f +5505,40490,151,7,f +5505,41239,151,4,f +5505,41669,25,8,f +5505,41678,72,6,f +5505,4185,71,2,f +5505,42003,72,6,f +5505,4297446,9999,1,f +5505,43093,1,42,f +5505,44294,71,4,f +5505,44809,71,1,f +5505,4493852,9999,1,f +5505,4519,71,17,f +5505,45590,0,8,f +5505,4589,15,3,f +5505,4716,0,2,f +5505,48989,71,13,f +5505,50163,72,1,f +5505,50914,135,4,f +5505,53787,151,3,f +5505,53788,151,1,f +5505,53792,151,1,f +5505,53793,151,1,f +5505,55615,71,8,f +5505,55804,0,1,f +5505,55805,0,4,f +5505,55806,0,2,f +5505,55963,151,1,f +5505,55969,151,1,f +5505,55976,0,4,f +5505,56145,71,4,f +5505,57482,0,1,f +5505,59426,72,2,f +5505,62462,0,4,f +5505,6536,71,8,f +5505,6538b,72,2,f +5505,6553,71,1,f +5505,6558,0,34,f +5505,6587,72,4,f +5505,6628,0,8,f +5505,8527stk01,9999,1,t +5506,3004,0,1,f +5506,3005pe1,15,2,f +5506,3040b,15,2,f +5506,3665,15,2,f +5506,3700,15,2,f +5506,3710,4,1,f +5506,3710,0,2,f +5506,3731,4,1,f +5506,6141,0,2,f +5507,3003,15,20,f +5507,3003,14,20,f +5507,3003,1,20,f +5507,3003,4,20,f +5509,11211,19,2,f +5509,15573,15,2,f +5509,2456,4,1,f +5509,2456,70,1,f +5509,2456,1,1,f +5509,2456,0,2,f +5509,2456,2,1,f +5509,2456,71,2,f +5509,2456,72,1,f +5509,3001,1,8,f +5509,3001,70,4,f +5509,3001,71,7,f +5509,3001,321,12,f +5509,3001,72,4,f +5509,3001,28,4,f +5509,3001,19,6,f +5509,3001,4,8,f +5509,3001,27,10,f +5509,3001,15,6,f +5509,3001,288,4,f +5509,3001,0,4,f +5509,3001,2,6,f +5509,3001,25,12,f +5509,3001,14,10,f +5509,3002,1,2,f +5509,3002,4,4,f +5509,3002,14,4,f +5509,3002,19,2,f +5509,3002,71,3,f +5509,3002,25,4,f +5509,3002,2,2,f +5509,3002,27,4,f +5509,3002,15,2,f +5509,3003,71,4,f +5509,3003,1,6,f +5509,3003,4,8,f +5509,3003,14,10,f +5509,3003,28,4,f +5509,3003,72,4,f +5509,3003,25,12,f +5509,3003,19,6,f +5509,3003,0,4,f +5509,3003,272,8,f +5509,3003,2,6,f +5509,3003,70,4,f +5509,3003,320,4,f +5509,3003,27,10,f +5509,3003,15,4,f +5509,3004,0,6,f +5509,3004,1,8,f +5509,3004,72,4,f +5509,3004,25,10,f +5509,3004,288,4,f +5509,3004,2,8,f +5509,3004,272,4,f +5509,3004,27,10,f +5509,3004,28,8,f +5509,3004,321,12,f +5509,3004,19,5,f +5509,3004,70,6,f +5509,3004,15,4,f +5509,3004,71,6,f +5509,3004,320,6,f +5509,3004,14,10,f +5509,3004,4,8,f +5509,3004pr0001,14,1,f +5509,3004pr0002,14,1,f +5509,3005,4,4,f +5509,3005,1,4,f +5509,3005,28,4,f +5509,3005,25,4,f +5509,3005,15,4,f +5509,3005,320,4,f +5509,3005,27,6,f +5509,3005,19,20,f +5509,3005,2,4,f +5509,3005,272,4,f +5509,3005,72,4,f +5509,3005,70,4,f +5509,3005,14,4,f +5509,3005,0,4,f +5509,3005,71,4,f +5509,3007,19,1,f +5509,3007,71,1,f +5509,3008,71,1,f +5509,3009,71,1,f +5509,3009,19,2,f +5509,3009,320,1,f +5509,3009,2,1,f +5509,3009,1,1,f +5509,3009,27,1,f +5509,3009,4,1,f +5509,3010,4,4,f +5509,3010,28,2,f +5509,3010,14,6,f +5509,3010,19,4,f +5509,3010,70,4,f +5509,3010,25,6,f +5509,3010,1,4,f +5509,3010,272,4,f +5509,3010,15,4,f +5509,3010,71,2,f +5509,3010,2,4,f +5509,3010,27,6,f +5509,30136,70,2,f +5509,30137,70,2,f +5509,30165,0,2,f +5509,3020,28,2,f +5509,3020,70,2,f +5509,3020,0,2,f +5509,3020,14,2,f +5509,3020,71,2,f +5509,3021,4,2,f +5509,3021,70,2,f +5509,3021,19,2,f +5509,3021,1,2,f +5509,3022,0,2,f +5509,3022,1,2,f +5509,3022,71,2,f +5509,3022,4,2,f +5509,3022,14,2,f +5509,3022,2,2,f +5509,3022,15,2,f +5509,3022,19,2,f +5509,3023,28,2,f +5509,3023,2,2,f +5509,3023,0,2,f +5509,3023,4,2,f +5509,3023,1,2,f +5509,3023,15,5,f +5509,3023,14,2,f +5509,3024,70,3,f +5509,3031,2,1,f +5509,3031,19,1,f +5509,3035,2,3,f +5509,30363,71,2,f +5509,3037,71,2,f +5509,3038,71,2,f +5509,3039,25,2,f +5509,3039,4,2,f +5509,3039,1,2,f +5509,3039,14,8,f +5509,3039,2,6,f +5509,3039,27,4,f +5509,3039,71,4,f +5509,3039,15,6,f +5509,3039,47,2,f +5509,3039,70,4,f +5509,3040b,19,5,f +5509,3040b,70,4,f +5509,3040b,28,6,f +5509,3040b,288,4,f +5509,3040b,25,2,f +5509,3040b,14,2,f +5509,3040b,4,2,f +5509,3040b,27,4,f +5509,3040b,1,2,f +5509,3040b,71,4,f +5509,3045,14,16,f +5509,3048c,288,6,f +5509,3048c,25,4,f +5509,3062b,0,2,f +5509,3062b,19,10,f +5509,3062b,71,2,f +5509,3062b,72,2,f +5509,3065,47,8,f +5509,3069b,19,2,f +5509,3176,1,2,f +5509,3176,0,2,f +5509,32028,28,2,f +5509,3245c,14,2,f +5509,3245c,71,2,f +5509,3298,4,2,f +5509,3622,27,2,f +5509,3622,71,2,f +5509,3622,1,4,f +5509,3622,14,2,f +5509,3622,19,9,f +5509,3622,4,2,f +5509,3622,15,2,f +5509,3622,25,2,f +5509,3623,70,2,f +5509,3623,19,2,f +5509,3659,4,2,f +5509,3660,1,2,f +5509,3660,25,2,f +5509,3660,19,2,f +5509,3660,71,2,f +5509,3660,70,2,f +5509,3660,4,2,f +5509,3660,15,4,f +5509,3660,27,2,f +5509,3665,27,2,f +5509,3665,71,6,f +5509,3665,1,2,f +5509,3665,25,2,f +5509,3665,4,2,f +5509,3665,70,2,f +5509,3665,19,2,f +5509,3688,72,2,f +5509,3700,0,2,f +5509,3710,1,2,f +5509,3710,4,2,f +5509,3710,14,2,f +5509,3747b,70,2,f +5509,3794b,14,2,f +5509,3794b,4,2,f +5509,3794b,2,2,f +5509,3795,4,1,f +5509,3795,70,1,f +5509,3795,19,1,f +5509,3795,2,1,f +5509,3795,28,1,f +5509,3795,15,1,f +5509,3832,15,2,f +5509,3941,71,2,f +5509,3941,47,2,f +5509,3941,15,4,f +5509,3958,14,2,f +5509,4032a,0,2,f +5509,4032a,71,4,f +5509,4032a,19,4,f +5509,4032a,1,2,f +5509,4032a,15,4,f +5509,4070,70,2,f +5509,4286,71,2,f +5509,4287,288,4,f +5509,4460b,25,4,f +5509,44728,15,2,f +5509,44728,71,2,f +5509,44728,14,2,f +5509,44728,19,4,f +5509,4600,0,4,f +5509,4624,15,8,f +5509,47905,19,4,f +5509,48336,2,2,f +5509,51739,28,2,f +5509,51739,0,2,f +5509,51739,15,2,f +5509,54200,0,3,f +5509,54200,19,3,f +5509,54200,70,5,f +5509,54383,15,2,f +5509,54384,15,2,f +5509,59900,19,2,f +5509,59900,0,2,f +5509,59900,72,2,f +5509,6141,47,5,f +5509,6141,25,5,f +5509,6141,85,5,f +5509,6141,14,5,f +5509,6141,0,5,f +5509,6141,19,5,f +5509,6141,36,5,f +5509,6141,34,5,f +5509,6141,15,5,f +5509,6141,72,5,f +5509,6141,4,5,f +5509,6141,27,5,f +5509,63868,15,2,f +5509,6541,0,2,f +5509,85984,15,2,f +5509,85984,28,2,f +5509,85984,2,2,f +5509,85984,14,2,f +5509,85984,71,2,f +5509,85984,4,4,f +5509,85984,1,2,f +5509,85984,72,6,f +5509,85984,70,2,f +5509,87087,14,2,f +5509,87087,71,4,f +5509,87087,0,2,f +5509,87414,0,8,f +5509,87580,72,2,f +5509,87580,14,2,f +5509,92947,15,4,f +5509,96874,25,1,t +5509,98138pr0008,15,9,f +5511,14226c11,0,1,f +5511,2343,0,1,f +5511,2343,47,2,f +5511,2357,2,3,f +5511,2412b,0,5,f +5511,2431,2,9,f +5511,2431,15,4,f +5511,2435,2,1,f +5511,2436,4,1,f +5511,2444,15,4,f +5511,2445,15,5,f +5511,2454a,4,11,f +5511,2460,14,4,f +5511,2465,71,1,f +5511,2465,15,2,f +5511,2495,4,1,f +5511,2496,0,1,f +5511,2653,71,2,f +5511,2654,15,3,f +5511,2780,0,46,f +5511,298c02,15,1,t +5511,298c02,15,1,f +5511,3002,72,2,f +5511,3003,2,3,f +5511,3003,15,1,f +5511,3003,71,1,f +5511,3004,15,7,f +5511,3005,15,4,f +5511,3005,4,9,f +5511,3008,4,2,f +5511,3009,4,4,f +5511,3010,2,5,f +5511,3010,4,6,f +5511,3010,15,2,f +5511,30176,2,2,f +5511,30179,15,1,f +5511,3020,2,1,f +5511,3020,15,14,f +5511,3021,15,8,f +5511,3022,2,1,f +5511,3022,15,8,f +5511,3023,0,3,f +5511,3023,71,21,f +5511,3023,36,2,f +5511,3023,15,4,f +5511,3024,47,6,f +5511,3024,15,2,f +5511,3024,272,5,f +5511,3029,2,1,f +5511,3029,15,3,f +5511,3030,71,1,f +5511,3030,2,2,f +5511,3032,15,1,f +5511,3033,0,1,f +5511,3034,71,2,f +5511,3034,15,7,f +5511,3036,2,1,f +5511,3036,4,1,f +5511,30363,15,3,f +5511,3037,2,3,f +5511,30414,71,2,f +5511,30414,1,1,f +5511,3048c,0,1,f +5511,3062b,14,2,f +5511,3062b,46,1,f +5511,3062b,1,2,f +5511,3068b,71,27,f +5511,3068b,15,6,f +5511,3068b,272,6,f +5511,3069b,15,1,f +5511,3069b,71,6,f +5511,3069b,14,1,f +5511,3069bpr0099,15,2,f +5511,3070bpr0007,71,1,f +5511,3070bpr0007,71,1,t +5511,3176,1,1,f +5511,32000,15,9,f +5511,32002,72,2,f +5511,32028,0,6,f +5511,32065,71,2,f +5511,32073,71,2,f +5511,32123b,14,1,f +5511,32124,15,3,f +5511,32125,71,2,f +5511,32269,19,1,f +5511,32270,0,1,f +5511,32316,15,4,f +5511,3245b,4,4,f +5511,32523,15,1,f +5511,32524,14,1,f +5511,3297,15,1,f +5511,3297,0,10,f +5511,3298,0,4,f +5511,3299,0,2,f +5511,33303,15,6,f +5511,3460,72,5,f +5511,3460,15,1,f +5511,3471,2,2,f +5511,3622,14,2,f +5511,3647,72,2,f +5511,3648b,72,1,f +5511,3665,4,2,f +5511,3665,15,6,f +5511,3666,15,22,f +5511,3666,272,3,f +5511,3666,70,1,f +5511,3700,15,10,f +5511,3701,15,8,f +5511,3702,71,7,f +5511,3705,0,1,f +5511,3708,0,1,f +5511,3710,272,5,f +5511,3710,15,2,f +5511,3710,71,14,f +5511,3713,71,1,f +5511,3741,2,5,f +5511,3741,2,1,t +5511,3742,4,5,t +5511,3742,4,15,f +5511,3747b,72,1,f +5511,3794a,15,4,f +5511,3795,72,1,f +5511,3795,15,9,f +5511,3795,0,1,f +5511,3795,2,6,f +5511,3811,2,1,f +5511,3829c01,1,1,f +5511,3900,15,2,f +5511,3941,15,2,f +5511,3943b,15,1,f +5511,3958,15,2,f +5511,3960,15,1,f +5511,4032a,0,1,f +5511,4070,15,6,f +5511,4079,1,1,f +5511,4081b,14,1,f +5511,4085c,1,5,f +5511,4161,0,4,f +5511,4162,15,16,f +5511,4176,40,1,f +5511,41769,71,2,f +5511,41769,15,3,f +5511,41770,71,2,f +5511,42003,0,2,f +5511,4215b,15,4,f +5511,42446,72,2,f +5511,4274,1,12,f +5511,4282,15,14,f +5511,43093,1,4,f +5511,4345b,15,2,f +5511,4345b,4,1,f +5511,4346,15,2,f +5511,4346,4,1,f +5511,43713,15,3,f +5511,43898,15,1,f +5511,44301a,71,2,f +5511,44302a,71,2,f +5511,44728,15,6,f +5511,4477,15,8,f +5511,4488,0,4,f +5511,4528,0,1,f +5511,45301,15,3,f +5511,45410,15,9,f +5511,45411,15,9,f +5511,4589,36,2,f +5511,4599a,71,2,f +5511,4599a,1,1,f +5511,4599a,0,1,f +5511,4599a,14,1,f +5511,47397,15,6,f +5511,4740,15,1,f +5511,4740,71,1,f +5511,48336,71,1,f +5511,4865a,4,2,f +5511,4865a,15,2,f +5511,48729b,72,1,f +5511,48729b,72,1,t +5511,48812,70,1,f +5511,4999stk01,9999,1,t +5511,50163,72,1,f +5511,50745,15,6,f +5511,50950,15,2,f +5511,52031,15,1,f +5511,52037,72,1,f +5511,54200,47,2,f +5511,54200,47,1,t +5511,54200,15,6,f +5511,54200,0,6,f +5511,54200,0,1,t +5511,54200,15,1,t +5511,54383,15,1,f +5511,54384,15,1,f +5511,55013,72,2,f +5511,55295,0,1,f +5511,55296,0,1,f +5511,55297,0,1,f +5511,55298,0,1,f +5511,55299,0,1,f +5511,55300,0,1,f +5511,57894,15,1,f +5511,57895,40,1,f +5511,58118,72,2,f +5511,58119,71,1,f +5511,58120,71,1,f +5511,58380,15,1,f +5511,58381,15,2,f +5511,6014b,71,4,f +5511,6019,0,1,f +5511,60470a,15,1,f +5511,60474,15,1,f +5511,60474,14,1,f +5511,60478,71,2,f +5511,60594,15,3,f +5511,60603,47,3,f +5511,60700,0,4,f +5511,6081,15,8,f +5511,6082,2,4,f +5511,6111,2,2,f +5511,6141,15,3,f +5511,6141,15,1,t +5511,6178,15,2,f +5511,6180,15,1,f +5511,61930,0,1,f +5511,6231,15,2,f +5511,6231,4,4,f +5511,62462,71,4,f +5511,63965,15,1,f +5511,6536,15,2,f +5511,6541,15,2,f +5511,6558,1,9,f +5511,6632,71,2,f +5511,6636,15,7,f +5511,6636,70,3,f +5511,6636,272,2,f +5511,76041c02,0,1,f +5511,76244,15,1,f +5512,redbox02,9999,1,f +5513,2412b,72,2,f +5513,2654,46,1,f +5513,2780,0,72,f +5513,2780,0,3,t +5513,2817,0,4,f +5513,2905,4,2,f +5513,2951,0,1,f +5513,3020,0,2,f +5513,32002,72,2,t +5513,32002,72,8,f +5513,32009,4,4,f +5513,32009,15,1,f +5513,32013,71,8,f +5513,32014,0,4,f +5513,32017,4,2,f +5513,32034,0,15,f +5513,32039,0,6,f +5513,32054,71,19,f +5513,32056,72,10,f +5513,32062,4,14,f +5513,32073,71,22,f +5513,32123b,71,2,t +5513,32123b,71,9,f +5513,32126,71,1,f +5513,32140,72,7,f +5513,32140,4,4,f +5513,32184,0,14,f +5513,32192,0,1,f +5513,32198,19,1,f +5513,32199,0,2,f +5513,32269,0,1,f +5513,32269,19,2,f +5513,32270,0,4,f +5513,32278,4,4,f +5513,32278,72,10,f +5513,32291,4,2,f +5513,32316,0,5,f +5513,32316,15,1,f +5513,32316,4,8,f +5513,32449,4,10,f +5513,32523,4,4,f +5513,32523,0,9,f +5513,32524,4,9,f +5513,32524,0,6,f +5513,32525,72,2,f +5513,32526,4,2,f +5513,32526,1,2,f +5513,32526,72,2,f +5513,32556,19,6,f +5513,3647,72,1,f +5513,3648b,72,1,f +5513,3673,71,1,t +5513,3673,71,12,f +5513,3705,0,17,f +5513,3706,0,6,f +5513,3707,0,4,f +5513,3710,72,2,f +5513,3713,71,3,t +5513,3713,71,16,f +5513,3749,19,8,f +5513,3941,0,1,f +5513,3941,46,1,f +5513,4032a,0,1,f +5513,40490,0,5,f +5513,40490,4,2,f +5513,41239,71,1,f +5513,41239,72,2,f +5513,41239,0,3,f +5513,41677,4,20,f +5513,42003,71,1,f +5513,42003,72,4,f +5513,42610,71,16,f +5513,4274,71,4,f +5513,4274,71,2,t +5513,43093,1,39,f +5513,43857,4,2,f +5513,44294,71,2,f +5513,4519,71,25,f +5513,48288,72,1,f +5513,50163,72,1,f +5513,57518,72,60,f +5513,57520,0,4,f +5513,59443,71,15,f +5513,6141,47,2,t +5513,6141,182,4,f +5513,6141,182,1,t +5513,6141,36,1,t +5513,6141,47,4,f +5513,6141,36,2,f +5513,61903,71,2,f +5513,61904,72,2,f +5513,61927a,71,2,f +5513,6536,0,7,f +5513,6536,71,32,f +5513,6538b,19,1,f +5513,6539,4,1,f +5513,6542a,72,2,f +5513,6558,1,40,f +5513,6587,72,8,f +5513,6589,19,2,f +5513,6629,4,1,f +5513,6632,4,4,f +5513,6632,15,2,f +5513,6641,4,1,f +5513,8294stk01,9999,1,t +5514,2362b,71,16,f +5514,2377,0,8,f +5514,2377,4,8,f +5514,2412b,4,12,f +5514,2412b,0,12,f +5514,2420,4,4,f +5514,2431,0,4,f +5514,2431,4,6,f +5514,2431pr0028,72,2,f +5514,2432,72,4,f +5514,2432,0,8,f +5514,2434,0,2,f +5514,2436,0,4,f +5514,2540,0,8,f +5514,2555,0,4,f +5514,2877,4,6,f +5514,2877,0,8,f +5514,2878,0,12,f +5514,2920,0,6,f +5514,2921,4,16,f +5514,2926,0,2,f +5514,298c02,0,2,t +5514,298c02,0,2,f +5514,3004,320,12,f +5514,3004,71,12,f +5514,3004,0,8,f +5514,3004,4,24,f +5514,3005,15,8,f +5514,3005,71,8,f +5514,3005,4,12,f +5514,3005,0,8,f +5514,3008,4,8,f +5514,3008,71,8,f +5514,3009,15,8,f +5514,3009,4,8,f +5514,3009,71,4,f +5514,3009,0,8,f +5514,3010,4,16,f +5514,3010,15,16,f +5514,3010,71,8,f +5514,3010,0,12,f +5514,30165,0,2,f +5514,3020,0,8,f +5514,3021,0,4,f +5514,3022,0,8,f +5514,3023,47,6,f +5514,3023,4,12,f +5514,3023,320,8,f +5514,3023,0,8,f +5514,3023,15,12,f +5514,3024,47,6,f +5514,3024,320,4,f +5514,3024,0,6,f +5514,3027,0,2,f +5514,3029,0,2,f +5514,3034,4,4,f +5514,3034,0,6,f +5514,3035,0,8,f +5514,3036,0,2,f +5514,30367b,0,2,f +5514,3037,4,4,f +5514,30374,71,2,f +5514,30374,0,8,f +5514,30375,71,4,f +5514,30377,0,12,f +5514,30377,0,2,t +5514,3039,4,4,f +5514,3039,0,6,f +5514,3040b,4,4,f +5514,3040b,0,4,f +5514,3062b,0,4,f +5514,3063b,0,4,f +5514,3065,47,8,f +5514,30663,0,2,f +5514,3068b,4,4,f +5514,3068b,0,8,f +5514,3069b,4,6,f +5514,3069bpr0055,15,2,f +5514,3176,0,2,f +5514,32028,0,8,f +5514,3297,72,12,f +5514,3460,4,6,f +5514,3622,71,4,f +5514,3622,4,4,f +5514,3623,4,6,f +5514,3626b,0,2,f +5514,3660,0,6,f +5514,3666,0,8,f +5514,3666,4,6,f +5514,3666,15,8,f +5514,3679,71,2,f +5514,3680,0,2,f +5514,3710,4,8,f +5514,3710,0,8,f +5514,3710,320,8,f +5514,3710,15,12,f +5514,3738,0,4,f +5514,3794a,0,8,f +5514,3794a,4,4,f +5514,3795,4,4,f +5514,3795,0,8,f +5514,3829c01,4,2,f +5514,3937,4,6,f +5514,3938,71,4,f +5514,3941,0,4,f +5514,3958,0,2,f +5514,3960,0,1,f +5514,4022,0,6,f +5514,4025,0,6,f +5514,4032a,0,8,f +5514,4034,47,8,f +5514,4070,4,8,f +5514,4070,0,8,f +5514,4079,70,8,f +5514,4081b,4,4,f +5514,4081b,0,6,f +5514,4083,0,4,f +5514,4085c,0,8,f +5514,4093a,72,2,f +5514,4175,0,6,f +5514,4176,47,2,f +5514,4181,4,2,f +5514,4182,4,2,f +5514,4183,47,4,f +5514,42022,0,4,f +5514,4215b,0,4,f +5514,4274,71,8,f +5514,4274,71,2,t +5514,44728,4,4,f +5514,4509,72,4,f +5514,4510,0,8,f +5514,4510,4,8,f +5514,4511,71,4,f +5514,45677,72,2,f +5514,4623,72,2,f +5514,4733,72,2,f +5514,4733,0,4,f +5514,47905,0,6,f +5514,4862,47,16,f +5514,4864b,47,16,f +5514,50254,0,4,f +5514,52031,72,2,f +5514,52107,0,6,f +5514,54200,0,12,f +5514,54200,4,12,f +5514,54200,72,12,f +5514,57051,383,12,f +5514,57878,0,24,f +5514,60169,71,2,f +5514,6019,0,6,f +5514,6020,0,2,f +5514,6081,0,12,f +5514,6091,4,12,f +5514,6091,0,8,f +5514,6134,4,2,f +5514,6140,0,4,f +5514,6141,0,12,f +5514,6141,47,2,t +5514,6141,36,2,t +5514,6141,0,2,t +5514,6141,36,4,f +5514,6141,46,4,f +5514,6141,46,2,t +5514,6141,47,4,f +5514,6187,0,2,f +5514,6191,0,4,f +5514,6215,0,6,f +5514,6541,4,8,f +5514,6556,15,8,f +5514,6584,0,1,f +5514,6636,4,6,f +5514,73092,0,6,f +5514,75c31,0,2,f +5516,10240stk01,9999,1,t +5516,10240stk02,9999,1,t +5516,10240stk03,9999,2,t +5516,10247,72,16,f +5516,11090,72,2,f +5516,11153,71,1,f +5516,11211,19,6,f +5516,11212,71,6,f +5516,11272,148,6,f +5516,11833,71,4,f +5516,13252,47,1,f +5516,14181,15,3,f +5516,15207,72,2,f +5516,18738,71,4,f +5516,2357,15,2,f +5516,2357,320,2,f +5516,2412b,80,17,f +5516,2420,72,2,f +5516,2420,71,20,f +5516,2420,19,8,f +5516,2431,71,5,f +5516,2431,320,8,f +5516,2445,15,12,f +5516,2450,15,2,f +5516,2456,72,1,f +5516,2456,4,2,f +5516,2460,71,4,f +5516,2540,72,1,f +5516,2653,71,5,f +5516,2654,0,2,f +5516,2780,0,65,f +5516,30000,1,1,f +5516,30000,72,2,f +5516,3001,0,2,f +5516,3003,28,1,f +5516,3004,15,2,f +5516,3004,1,1,f +5516,3004,320,2,f +5516,3005,15,4,f +5516,3009,15,4,f +5516,3009,320,4,f +5516,3009,19,2,f +5516,3009,0,2,f +5516,3010,72,1,f +5516,3010,15,2,f +5516,30136,72,5,f +5516,3020,72,7,f +5516,3020,14,2,f +5516,3020,0,9,f +5516,3021,2,1,f +5516,3021,15,18,f +5516,3021,71,2,f +5516,3021,4,4,f +5516,3021,72,2,f +5516,3022,1,4,f +5516,3022,0,6,f +5516,3022,71,6,f +5516,3022,15,6,f +5516,3022,72,4,f +5516,3022,19,4,f +5516,3023,4,6,f +5516,3023,0,2,f +5516,3023,19,27,f +5516,3024,0,2,f +5516,3029,0,1,f +5516,3031,71,1,f +5516,3031,0,3,f +5516,3032,15,1,f +5516,3034,19,1,f +5516,3034,15,8,f +5516,3035,71,1,f +5516,30355,15,2,f +5516,30356,15,2,f +5516,30361,15,4,f +5516,30361dps1,15,1,f +5516,30362,15,2,f +5516,30363,15,10,f +5516,30367cpr0006,71,1,f +5516,3037,15,2,f +5516,3039,71,4,f +5516,3039pr0014,0,1,f +5516,3039pr0015,0,1,f +5516,3040b,71,2,f +5516,30414,19,6,f +5516,3045,15,2,f +5516,30554b,71,4,f +5516,3062b,19,6,f +5516,3068b,15,2,f +5516,3068b,0,1,f +5516,3069b,0,2,f +5516,3069b,320,20,f +5516,3070b,0,2,f +5516,3070b,72,4,f +5516,3070b,19,6,f +5516,3070b,15,2,f +5516,3176,71,2,f +5516,32000,72,2,f +5516,32002,19,6,f +5516,32013,4,4,f +5516,32017,14,2,f +5516,32028,15,4,f +5516,32034,0,4,f +5516,32054,0,10,f +5516,32056,72,4,f +5516,32059,15,4,f +5516,32062,4,24,f +5516,32072,0,4,f +5516,32073,71,5,f +5516,32123b,14,8,f +5516,32124,1,2,f +5516,32124,15,2,f +5516,32184,4,2,f +5516,32184,71,8,f +5516,32269,19,1,f +5516,32270,0,1,f +5516,32316,72,8,f +5516,32348,0,2,f +5516,32449,15,4,f +5516,3245c,4,8,f +5516,32523,0,2,f +5516,32523,15,2,f +5516,32524,15,2,f +5516,32526,71,6,f +5516,32556,19,8,f +5516,3298,15,6,f +5516,3460,72,2,f +5516,3460,71,8,f +5516,3460,15,2,f +5516,3622,71,4,f +5516,3623,72,2,f +5516,3623,19,3,f +5516,3623,15,14,f +5516,3623,0,4,f +5516,3640,72,2,f +5516,3648b,72,1,f +5516,3660,71,2,f +5516,3665,71,2,f +5516,3665,320,2,f +5516,3666,71,3,f +5516,3666,1,2,f +5516,3666,15,6,f +5516,3666,72,4,f +5516,3700,4,1,f +5516,3700,71,1,f +5516,3700,1,8,f +5516,3701,14,2,f +5516,3702,0,4,f +5516,3703,0,4,f +5516,3705,0,2,f +5516,3706,0,4,f +5516,3707,0,4,f +5516,3710,28,6,f +5516,3710,15,8,f +5516,3710,72,8,f +5516,3710,71,6,f +5516,3713,4,4,f +5516,3713,71,2,f +5516,3794b,71,1,f +5516,3794b,19,8,f +5516,3794b,72,11,f +5516,3794b,15,20,f +5516,3795,4,2,f +5516,3795,28,4,f +5516,3795,19,1,f +5516,3795,72,4,f +5516,3795,15,20,f +5516,3795,71,1,f +5516,3830,15,3,f +5516,3830,72,1,f +5516,3831,72,1,f +5516,3831,320,1,f +5516,3831,15,2,f +5516,3832,0,1,f +5516,3832,71,2,f +5516,3894,15,3,f +5516,3894,72,5,f +5516,3941,15,12,f +5516,3941,71,4,f +5516,3956,71,4,f +5516,3958,72,1,f +5516,3960,72,1,f +5516,4019,71,4,f +5516,4032a,72,4,f +5516,4032a,71,4,f +5516,4032a,0,14,f +5516,40490,71,14,f +5516,4070,0,2,f +5516,4081b,72,2,f +5516,41531,71,4,f +5516,4162,15,8,f +5516,4162,72,4,f +5516,4162,0,4,f +5516,4162,71,2,f +5516,41677,72,4,f +5516,41747,71,1,f +5516,41748,71,1,f +5516,41764,71,2,f +5516,41765,71,2,f +5516,41767,72,1,f +5516,41768,72,1,f +5516,41769,15,11,f +5516,41770,15,11,f +5516,4185,72,12,f +5516,42022,0,4,f +5516,42023,72,1,f +5516,42610,71,8,f +5516,4274,71,4,f +5516,4274,1,20,f +5516,4282,4,1,f +5516,4282,0,3,f +5516,4286,15,4,f +5516,4287,15,4,f +5516,43093,1,4,f +5516,43720,15,1,f +5516,43721,15,1,f +5516,43722,71,6,f +5516,43723,71,6,f +5516,43898,72,1,f +5516,44126,0,5,f +5516,44294,71,4,f +5516,44300,71,8,f +5516,44301a,71,4,f +5516,44301a,72,2,f +5516,44302a,71,6,f +5516,4445,15,2,f +5516,44728,72,2,f +5516,4477,72,4,f +5516,4515,71,4,f +5516,4519,71,12,f +5516,45677,15,1,f +5516,4716,71,1,f +5516,4728,45,4,f +5516,4740,71,1,f +5516,4740,45,8,f +5516,47457,72,2,f +5516,47457,15,2,f +5516,4865b,72,2,f +5516,48933,72,1,f +5516,50304,15,2,f +5516,50305,15,2,f +5516,50955,71,1,f +5516,50956,71,1,f +5516,54200,0,2,f +5516,54200,72,8,f +5516,55013,72,1,f +5516,56902,71,4,f +5516,59443,72,4,f +5516,59443,71,12,f +5516,59443,4,3,f +5516,59900,71,4,f +5516,6019,71,1,f +5516,60474,72,4,f +5516,60477,15,8,f +5516,60478,72,10,f +5516,60479,71,10,f +5516,60479,15,2,f +5516,60483,0,4,f +5516,60485,71,9,f +5516,60849,0,1,f +5516,60849,71,1,f +5516,60897,71,8,f +5516,60897,0,2,f +5516,6112,71,2,f +5516,61409,72,4,f +5516,6141,72,23,f +5516,6141,71,22,f +5516,6180,15,1,f +5516,6180,320,4,f +5516,6222,71,5,f +5516,6231,72,4,f +5516,6232,19,1,f +5516,62462,15,8,f +5516,62462,320,1,f +5516,62462,71,9,f +5516,63864,0,2,f +5516,63864,71,3,f +5516,63864,15,10,f +5516,63868,0,2,f +5516,63868,72,32,f +5516,63965,71,4,f +5516,63965,72,1,f +5516,64799,71,2,f +5516,6538b,19,6,f +5516,6541,72,2,f +5516,6541,14,1,f +5516,6558,1,14,f +5516,6587,28,16,f +5516,6588,47,1,f +5516,6589,19,4,f +5516,6636,19,4,f +5516,6636,15,22,f +5516,6636,71,4,f +5516,75937,179,4,f +5516,76138,71,4,f +5516,85941,15,4,f +5516,85984,15,8,f +5516,85984,0,4,f +5516,85984,72,2,f +5516,87079,15,12,f +5516,87083,72,13,f +5516,87087,19,8,f +5516,87580,72,2,f +5516,87609,15,4,f +5516,87620,71,8,f +5516,90498,0,1,f +5516,91988,71,1,f +5516,92280,0,2,f +5516,92280,71,2,f +5516,92582,71,2,f +5516,92593,15,6,f +5516,92946,15,4,f +5516,96874,25,1,t +5516,98281,15,2,f +5516,98585,71,24,f +5516,99206,71,26,f +5516,99207,71,2,f +5516,99780,0,5,f +5516,99781,15,2,f +5517,15339,179,1,f +5517,15341,27,2,f +5517,15343,27,2,f +5517,15344,27,1,f +5517,15353,25,1,f +5517,15976,0,2,f +5517,30374,35,2,f +5517,3626c,4,1,f +5517,4274,71,1,t +5517,4274,71,2,f +5517,48729b,0,1,t +5517,48729b,0,2,f +5517,60115,0,1,f +5517,90611,0,4,f +5517,90626,0,1,f +5517,90639,25,1,f +5517,92222,148,1,f +5517,93575,179,2,f +5517,98137,179,2,f +5517,98138pr0019,15,1,f +5517,98138pr0019,15,1,t +5517,98313,148,2,f +5519,1973stk01,9999,1,t +5519,2431,15,2,f +5519,2437,41,1,f +5519,3003,7,1,f +5519,3004,15,2,f +5519,3004,4,1,f +5519,3010,15,2,f +5519,3021,15,1,f +5519,3022,15,1,f +5519,3023,15,3,f +5519,3024,15,5,f +5519,3034,15,1,f +5519,3038,15,2,f +5519,3039pc4,0,1,f +5519,3069b,15,2,f +5519,3070b,15,2,f +5519,3139,0,6,f +5519,3460,15,1,f +5519,3585,15,1,f +5519,3586,15,1,f +5519,3623,15,5,f +5519,3624,0,1,f +5519,3626apr0001,14,2,f +5519,3660,15,2,f +5519,3666,15,4,f +5519,3679,7,1,f +5519,3680,7,1,f +5519,3710,15,6,f +5519,3794a,15,1,f +5519,3901,0,1,f +5519,3935,15,1,f +5519,3936,15,1,f +5519,4079,4,4,f +5519,4162,15,1,f +5519,4282,7,1,f +5519,4449,0,1,f +5519,4477,15,3,f +5519,4624,7,6,f +5519,4625,15,4,f +5519,4854,15,4,f +5519,4855,15,2,f +5519,4856a,15,2,f +5519,4857,15,4,f +5519,4858,15,1,f +5519,4859,15,3,f +5519,4861,15,1,f +5519,4862,41,12,f +5519,4863,15,6,f +5519,4864a,15,2,f +5519,4865a,4,1,f +5519,4865a,15,2,f +5519,4867,15,1,f +5519,4868a,15,2,f +5519,4869,7,2,f +5519,4870,7,3,f +5519,6141,34,1,f +5519,6141,36,3,f +5519,970c00,0,1,f +5519,970c00,7,1,f +5519,973p18c01,1,1,f +5519,973px189c01,0,1,f +5520,2339,7,4,f +5520,2462,7,4,f +5520,3307,7,4,f +5520,3308,7,4,f +5520,3659,7,4,f +5520,3688,1,4,f +5521,51797,0,1,f +5521,51803,151,1,f +5521,51810,320,1,f +5522,2456,8,1,f +5522,30248,0,1,f +5522,30619,15,1,f +5522,30621,0,1,f +5522,30633px2,33,1,f +5522,30636c01,8,1,f +5522,30644,0,1,f +5522,3678a,8,1,f +5522,3962b,8,1,f +5522,40620,383,1,f +5522,4360,7,1,f +5522,4617b,0,1,f +5522,4729,15,1,f +5522,6239px1,15,1,f +5522,js005,9999,1,f +5522,js028,-1,1,f +5523,2695,15,6,f +5523,2696,0,6,f +5523,2780,0,10,f +5523,3010,14,1,f +5523,3022,14,1,f +5523,3023,14,2,f +5523,3040b,14,2,f +5523,3069b,14,2,f +5523,3623,14,4,f +5523,3647,7,4,f +5523,3648a,7,2,f +5523,3650a,7,3,f +5523,3651,7,10,f +5523,3665,14,2,f +5523,3666,14,6,f +5523,3673,7,14,f +5523,3700,14,12,f +5523,3701,14,6,f +5523,3702,14,4,f +5523,3703,14,4,f +5523,3704,0,1,f +5523,3705,0,3,f +5523,3706,0,3,f +5523,3707,0,2,f +5523,3708,0,2,f +5523,3709,14,8,f +5523,3710,14,10,f +5523,3713,7,14,f +5523,3737,0,2,f +5523,3738,14,2,f +5523,3743,7,1,f +5523,3749,7,3,f +5523,3795,14,6,f +5523,3894,14,6,f +5523,3895,14,2,f +5523,4185,7,4,f +5523,4261,7,2,f +5523,4274,7,4,f +5523,4275b,14,4,f +5523,4276b,14,2,f +5523,4442,7,3,f +5523,4531,14,2,f +5525,2412b,72,1,t +5525,2412b,72,2,f +5525,2432,15,1,f +5525,2436,4,1,f +5525,2437,40,1,f +5525,3003,72,2,f +5525,3020,4,1,f +5525,3022,72,1,f +5525,3023,15,1,f +5525,30237a,4,1,f +5525,3024,36,1,t +5525,3024,36,2,f +5525,3034,72,1,f +5525,3062b,14,1,f +5525,3068bpb0074,4,1,f +5525,3623,15,2,f +5525,3626bpb0196,14,1,f +5525,3666,4,2,f +5525,3710,4,1,f +5525,3710,15,1,f +5525,3788,4,1,f +5525,3829c01,15,1,f +5525,3834,15,1,f +5525,3835,71,1,f +5525,3835,71,1,t +5525,4211,4,1,f +5525,4599a,14,2,t +5525,4599a,14,1,f +5525,54200,33,1,t +5525,54200,46,1,t +5525,54200,46,2,f +5525,54200,33,2,f +5525,6014b,15,4,f +5525,6015,0,4,f +5525,6019,15,2,f +5525,6157,0,2,f +5525,970c00,0,1,f +5525,973pr1187c01,0,1,f +5526,3218,15,4,f +5526,737ac01,4,1,f +5526,996ac15,15,1,f +5526,x877c01,7,1,f +5530,2543,4,1,f +5530,3004,0,1,f +5530,30165,0,1,f +5530,3020,71,1,f +5530,3023,36,1,f +5530,3039,0,1,f +5530,3626bpr0387,14,1,f +5530,4079,72,1,f +5530,42446,72,1,f +5530,4589,0,1,f +5530,4600,0,2,f +5530,50254,0,4,f +5530,6132,15,1,f +5530,6141,47,1,f +5530,6141,47,1,t +5530,63082,71,1,f +5530,970c00,4,1,f +5530,973c02,4,1,f +5532,53787,151,1,f +5533,2339,0,1,f +5533,2339,6,4,f +5533,2357,0,1,f +5533,2417,2,4,f +5533,2420,0,4,f +5533,2420,7,1,f +5533,2423,2,1,f +5533,2431,7,2,f +5533,2444,0,2,f +5533,2449,7,4,f +5533,2453a,0,4,f +5533,2454a,7,2,f +5533,2454a,0,1,f +5533,2456,0,1,f +5533,2458,0,2,f +5533,2462,7,4,f +5533,2465,0,1,f +5533,2552p05,2,1,f +5533,2570,8,1,f +5533,2586p4b,7,2,f +5533,2817,4,1,f +5533,3001,0,3,f +5533,3001,7,1,f +5533,3002,0,2,f +5533,3002,7,2,f +5533,3003,7,3,f +5533,3004,0,15,f +5533,3004,4,2,f +5533,3004,7,25,f +5533,3004,6,4,f +5533,3005,0,21,f +5533,3005,7,14,f +5533,3008,0,2,f +5533,3009,7,1,f +5533,3009,0,2,f +5533,3010,7,6,f +5533,3010,0,1,f +5533,3020,0,2,f +5533,3020,7,2,f +5533,3021,7,1,f +5533,3021,4,1,f +5533,3021,0,1,f +5533,3022,7,1,f +5533,3022,0,2,f +5533,3023,0,16,f +5533,3023,6,1,f +5533,3023,7,6,f +5533,3024,46,1,f +5533,3024,0,1,f +5533,3024,7,1,f +5533,3029,7,1,f +5533,3031,0,2,f +5533,3031,7,3,f +5533,3032,4,1,f +5533,3032,7,1,f +5533,3036,7,2,f +5533,3037,0,1,f +5533,3040b,7,1,f +5533,3040b,0,2,f +5533,3048c,0,2,f +5533,3062b,0,2,f +5533,3068bp40,15,1,f +5533,3070b,7,1,f +5533,3176,0,2,f +5533,3298,0,1,f +5533,3308pb01,0,1,f +5533,3455,0,2,f +5533,3455,7,4,f +5533,3460,7,2,f +5533,3581,0,2,f +5533,3622,7,8,f +5533,3622,0,4,f +5533,3623,7,4,f +5533,3623,6,5,f +5533,3626b,47,1,f +5533,3626bp49,14,1,f +5533,3626bpr0001,14,1,f +5533,3626bpx122,14,1,f +5533,3626bpx97,14,3,f +5533,3660,0,2,f +5533,3665,4,1,f +5533,3665,0,5,f +5533,3666,0,1,f +5533,3666,4,1,f +5533,3666,7,2,f +5533,3673,7,2,f +5533,3684,7,1,f +5533,3700,0,2,f +5533,3705,0,1,f +5533,3710,7,2,f +5533,3710,4,1,f +5533,3710,0,5,f +5533,3794a,4,2,f +5533,3794a,0,1,f +5533,3795,7,3,f +5533,3844,0,2,f +5533,3847,8,2,f +5533,3849,0,2,f +5533,3849,8,1,f +5533,3895,0,2,f +5533,3896,0,1,f +5533,3937,7,2,f +5533,3938,7,2,f +5533,4070,0,2,f +5533,4070,14,2,f +5533,4071,0,1,f +5533,4085c,7,1,f +5533,4085c,0,4,f +5533,4162,4,1,f +5533,4162,7,2,f +5533,4262,0,2,f +5533,4286,0,2,f +5533,4287,0,2,f +5533,4444,0,3,f +5533,4444pb03,0,1,f +5533,4460a,0,2,f +5533,4477,7,2,f +5533,4490,0,1,f +5533,4491b,4,1,f +5533,4493c01pb01,6,1,f +5533,4495b,4,1,f +5533,4495b,14,1,f +5533,4497,6,1,f +5533,4498,6,1,f +5533,4499,6,1,f +5533,4505,0,1,f +5533,4524,0,1,f +5533,4611,8,1,f +5533,4623,7,1,f +5533,4738a,6,1,f +5533,4739a,6,1,f +5533,4784,0,1,f +5533,4865a,7,1,f +5533,6019,0,2,f +5533,6019,7,2,f +5533,6027,2,1,f +5533,6028,2,1,f +5533,6044,0,3,f +5533,6046,6,1,f +5533,6064,2,2,f +5533,6066,7,2,f +5533,6072,7,2,f +5533,6083,8,2,f +5533,6091,7,1,f +5533,6105,6,2,f +5533,6108,0,3,f +5533,6108,7,1,f +5533,6112,0,1,f +5533,6121,4,1,f +5533,6122,0,1,f +5533,6123,8,3,f +5533,6124,21,1,f +5533,6125,4,1,f +5533,6126a,57,4,f +5533,6127,2,1,f +5533,6128,2,1,f +5533,6131,1,1,f +5533,6132,15,1,f +5533,6133,4,4,f +5533,6141,15,4,f +5533,6141,36,1,t +5533,6141,36,2,f +5533,6141,15,1,t +5533,6141,34,2,f +5533,6141,34,1,t +5533,75174,2,1,f +5533,87685,14,1,f +5533,87686,14,1,f +5533,87687,14,1,f +5533,970c00,1,1,f +5533,970d02,4,1,f +5533,970x021,0,1,f +5533,970x026,7,3,f +5533,973p44c01,6,1,f +5533,973p46c02,1,1,f +5533,973p4bc02,4,3,f +5533,973pb0074c02,4,1,f +5533,x375px1,14,1,f +5533,x376px1,14,1,f +5534,2340,4,1,f +5534,2412b,7,2,f +5534,2419,4,1,f +5534,2420,4,4,f +5534,2445,0,2,f +5534,2450,4,4,f +5534,2536,7,1,f +5534,2654,0,1,f +5534,2711,0,2,f +5534,2717,1,1,f +5534,2730,4,1,f +5534,2780,0,10,f +5534,2825,7,4,f +5534,2952,0,1,f +5534,3021,4,1,f +5534,3022,4,1,f +5534,3022,0,2,f +5534,3023,4,1,f +5534,3024,4,1,f +5534,3031,4,1,f +5534,3069b,14,2,f +5534,3069b,4,2,f +5534,32123b,7,10,f +5534,3460,0,2,f +5534,3482,7,2,f +5534,3483,0,2,f +5534,3623,4,3,f +5534,3647,7,4,f +5534,3650,7,3,f +5534,3651,7,4,f +5534,3665,4,4,f +5534,3666,4,1,f +5534,3673,7,1,f +5534,3700,4,4,f +5534,3701,4,5,f +5534,3702,4,4,f +5534,3703,4,1,f +5534,3705,0,3,f +5534,3706,0,3,f +5534,3707,0,2,f +5534,3708,0,2,f +5534,3709,4,2,f +5534,3710,4,4,f +5534,3713,7,7,f +5534,3737,0,1,f +5534,3749,7,2,f +5534,3794a,0,2,f +5534,4185,7,2,f +5534,4262,4,2,f +5534,4274,7,3,f +5534,4477,0,2,f +5534,4746,0,1,f +5534,4871,4,1,f +5534,6536,7,2,f +5534,6538b,7,1,f +5534,6553,7,4,f +5534,6558,0,2,f +5534,75c11,8,2,f +5537,10197,0,4,f +5537,11946,15,1,f +5537,11947,15,1,f +5537,15092,72,1,f +5537,15100,0,3,f +5537,15303,33,2,f +5537,15400,72,1,f +5537,21560,25,2,f +5537,21561,25,1,f +5537,24123,148,1,f +5537,24198,0,1,f +5537,25166,9999,1,t +5537,2780,0,7,f +5537,3024,25,2,f +5537,3068b,72,1,f +5537,3069b,0,1,f +5537,32013,15,2,f +5537,32014,0,1,f +5537,32039,0,4,f +5537,32054,0,1,f +5537,32062,4,5,f +5537,32123b,71,2,f +5537,32192,15,2,f +5537,3705,0,2,f +5537,41669,0,1,f +5537,41677,72,4,f +5537,42003,72,2,f +5537,4274,71,4,f +5537,43093,1,4,f +5537,59443,72,1,f +5537,61409,0,1,f +5537,6141,72,1,f +5537,6536,0,1,f +5537,6553,0,1,f +5537,6587,28,1,f +5537,74261,72,4,f +5537,78c14,0,1,f +5537,90607,0,2,f +5537,90608,72,2,f +5537,90609,0,2,f +5537,90615,72,2,f +5537,90623,0,1,f +5537,90638,25,2,f +5537,90638pr0004,25,1,f +5537,90638pr0005,25,1,f +5537,90639,25,2,f +5537,90640,0,2,f +5537,90652,15,1,f +5537,90661,0,2,f +5537,92907,0,2,f +5537,93273,25,2,f +5537,93575,0,2,f +5537,98577,72,1,f +5539,10b,2,1,f +5539,15,14,4,f +5539,15,1,3,f +5539,15,0,4,f +5539,17,1,2,f +5539,17,15,2,f +5539,17,4,2,f +5539,3003,0,2,f +5539,3003,4,2,f +5539,3003,14,2,f +5539,3004,14,3,f +5539,3004,4,21,f +5539,3004,0,6,f +5539,3005,1,4,f +5539,3005,0,8,f +5539,3005,4,20,f +5539,3005,14,4,f +5539,3008,4,8,f +5539,3008,14,1,f +5539,3009,4,13,f +5539,3009,14,1,f +5539,3010,4,7,f +5539,3020,14,2,f +5539,3020,0,2,f +5539,3021,0,1,f +5539,3022,4,2,f +5539,3022,1,1,f +5539,3022,0,7,f +5539,3022,14,6,f +5539,3023,7,4,f +5539,3023,4,4,f +5539,3023,14,6,f +5539,3023,15,2,f +5539,3023,0,10,f +5539,3024,7,6,f +5539,3024,14,1,f +5539,3030,4,1,f +5539,3031,4,1,f +5539,3039,0,6,f +5539,3039,14,6,f +5539,3040a,0,2,f +5539,3040a,1,4,f +5539,3087c,15,6,f +5539,3297,0,10,f +5539,3298,0,2,f +5539,3299,0,3,f +5539,3300,0,4,f +5539,3460,14,6,f +5539,3579,15,1,f +5539,3596,15,1,f +5539,3626a,14,6,f +5539,3629,1,2,f +5539,3629,0,1,f +5539,3629,4,2,f +5539,3629,15,1,f +5539,3660,14,2,f +5539,3660,0,2,f +5539,3665,0,4,f +5539,7930,15,1,f +5542,2350b,1,1,f +5542,2351,7,1,f +5542,2357,15,2,f +5542,2424,0,1,f +5542,2431,4,6,f +5542,2432,1,1,f +5542,2441,0,1,f +5542,2456,7,4,f +5542,2460,1,1,f +5542,2479,7,1,f +5542,2540,0,1,f +5542,3001,1,4,f +5542,3003,1,2,f +5542,3004,7,3,f +5542,3004,1,11,f +5542,3007,1,1,f +5542,3008,1,3,f +5542,3009,7,4,f +5542,3009,0,2,f +5542,3009,1,2,f +5542,3010,1,4,f +5542,30148,0,1,f +5542,30180,15,1,f +5542,3020,0,1,f +5542,3021,1,1,f +5542,3022,15,1,f +5542,3023,15,3,f +5542,30236,7,1,f +5542,3031,1,1,f +5542,3032,1,2,f +5542,3034,15,3,f +5542,3036,0,2,f +5542,30365,7,2,f +5542,3039,7,14,f +5542,3039p23,15,3,f +5542,3040b,15,2,f +5542,3040b,1,8,f +5542,3062b,15,2,f +5542,3068bpx29,14,1,f +5542,3068bpx30,14,1,f +5542,3069bp02,7,1,f +5542,3139,0,4,f +5542,32059,1,1,f +5542,32084,15,1,f +5542,3403,0,1,f +5542,3404,0,1,f +5542,3460,1,6,f +5542,3626bp02,14,1,f +5542,3626bp03,14,1,f +5542,3626bp04,14,1,f +5542,3626bp06,14,1,f +5542,3626bp7a,14,1,f +5542,3679,7,1,f +5542,3680,14,1,f +5542,3794a,0,2,f +5542,3795,15,1,f +5542,3829c01,1,1,f +5542,3865,2,2,f +5542,3867,2,1,f +5542,3937,0,1,f +5542,3938,4,1,f +5542,3957a,15,4,f +5542,4035,15,2,f +5542,4079,1,4,f +5542,4079,14,4,f +5542,4079,4,1,f +5542,4083,0,2,f +5542,4162,15,4,f +5542,4286,15,1,f +5542,4460a,1,14,f +5542,4476b,0,2,f +5542,4485,4,3,f +5542,4485,1,1,f +5542,4485,0,1,f +5542,4485,15,1,f +5542,4495b,4,3,f +5542,4495b,14,1,f +5542,4599a,14,1,f +5542,4624,15,4,f +5542,4714,15,1,f +5542,4740,15,2,f +5542,4864bpx4,41,1,f +5542,4865a,1,2,f +5542,4872,41,1,f +5542,6019,0,4,f +5542,6093,0,1,f +5542,6140,0,1,f +5542,6141,4,6,f +5542,6141,46,2,f +5542,6141,46,1,t +5542,6141,4,1,t +5542,72824p01,15,1,f +5542,76385,0,2,f +5542,970c00,1,1,f +5542,970c00,15,1,f +5542,970c00,0,2,f +5542,970x026,15,1,f +5542,973pb0025c01,15,1,f +5542,973pb0126c01,15,1,f +5542,973px18c01,15,1,f +5542,973px67c01,0,1,f +5542,973px79c01,15,1,f +5544,3749,7,2,f +5544,4143,7,4,f +5544,4261,7,2,f +5544,4262,7,3,f +5544,4263,7,3,f +5544,4442,7,3,f +5544,73071,7,1,f +5544,9244,7,1,f +5545,30089b,0,1,f +5545,3626bpr0645,14,1,f +5545,3626cpr0386,14,1,f +5545,3626cpr0499,14,1,f +5545,3898,15,1,f +5545,4449,71,1,f +5545,4528,0,1,f +5545,86035,27,1,f +5545,92081,308,1,f +5545,970c00,0,1,f +5545,970c00,2,1,f +5545,970c00,15,1,f +5545,973pb1120c01,0,1,f +5545,973pb1121c01,15,1,f +5545,973pb1122c01,15,1,f +5549,11618,31,1,f +5549,11618,31,1,t +5549,30055,15,2,f +5549,3031,27,3,f +5549,3037,26,2,f +5549,3068b,19,1,f +5549,32062,4,1,f +5549,32124,70,1,f +5549,3659,15,2,f +5549,3709,15,1,f +5549,3794b,19,2,f +5549,3941,15,1,f +5549,4032a,15,2,f +5549,4519,71,1,f +5549,4523,5,1,f +5549,59426,72,1,f +5549,59443,70,1,f +5549,6141,29,1,t +5549,6141,29,4,f +5549,6141,19,2,f +5549,6141,19,1,t +5549,87081,212,2,f +5549,98388pr0004,27,1,f +5551,10884,2,1,f +5551,11458,72,1,f +5551,14769,71,1,f +5551,15456,71,1,f +5551,2420,72,1,f +5551,3022,72,2,f +5551,3062b,36,3,f +5551,3673,7,1,f +5551,4497,148,1,f +5551,54200,71,1,f +5551,54383,28,1,f +5551,54383,288,1,f +5551,60897,72,1,f +5551,88289,308,1,f +5551,92947,19,3,f +5551,98138,71,2,f +5551,98283,28,2,f +5555,2343,0,2,f +5555,2412b,71,4,f +5555,2412b,1,3,f +5555,2412b,14,4,f +5555,2419,71,3,f +5555,2420,1,4,f +5555,2431,14,2,f +5555,2431,15,2,f +5555,2432,14,2,f +5555,2432,1,1,f +5555,2436,71,2,f +5555,2445,71,1,f +5555,2447,47,2,f +5555,2447,47,1,t +5555,2450,1,2,f +5555,2454a,71,2,f +5555,2462,71,2,f +5555,2540,71,2,f +5555,2555,71,3,f +5555,2569,72,1,t +5555,2569,57,2,f +5555,2569,57,1,t +5555,2569,72,1,f +5555,2653,71,2,f +5555,2654,33,4,f +5555,2654,47,4,f +5555,2780,0,3,t +5555,2780,0,29,f +5555,2877,15,1,f +5555,2877,72,8,f +5555,298c02,14,2,t +5555,298c02,14,3,f +5555,3001,72,1,f +5555,3001,15,1,f +5555,3002,15,2,f +5555,30031,0,1,f +5555,3004,1,7,f +5555,3004,71,1,f +5555,3005,1,2,f +5555,3008,71,3,f +5555,3009,1,14,f +5555,3010,1,18,f +5555,3010,72,4,f +5555,30162,72,1,f +5555,3020,72,3,f +5555,3020,1,1,f +5555,3020,4,1,f +5555,3021,1,3,f +5555,3021,71,2,f +5555,3021,72,3,f +5555,3022,14,3,f +5555,3022,72,1,f +5555,3023,72,3,f +5555,3023,14,1,f +5555,3023,71,1,f +5555,3023,1,5,f +5555,3023,36,8,f +5555,30237a,14,2,f +5555,3024,36,2,f +5555,3024,34,12,f +5555,3031,1,3,f +5555,3031,72,2,f +5555,3033,72,6,f +5555,3033,1,5,f +5555,3034,71,2,f +5555,3034,1,1,f +5555,3035,71,1,f +5555,3035,72,1,f +5555,30350c,41,1,f +5555,30350c,1,2,f +5555,3039,71,1,f +5555,3039,1,15,f +5555,3039pr0002,15,1,f +5555,3039pr0016,15,2,f +5555,3040b,1,4,f +5555,30414,14,1,f +5555,30553,72,2,f +5555,3062b,42,2,f +5555,3062b,0,5,f +5555,3062b,71,8,f +5555,3068b,1,1,f +5555,3068b,15,1,f +5555,3069b,27,1,f +5555,3069bpr0090,72,2,f +5555,3070b,36,2,t +5555,3070b,34,2,t +5555,3070b,34,2,f +5555,3070b,4,1,t +5555,3070b,4,2,f +5555,3070b,36,2,f +5555,32000,0,4,f +5555,32013,71,2,f +5555,32028,14,1,f +5555,32039,14,2,f +5555,32054,0,4,f +5555,32062,0,2,f +5555,32062,4,8,f +5555,32064a,72,4,f +5555,32291,72,4,f +5555,32316,14,4,f +5555,32523,14,10,f +5555,32525,72,2,f +5555,3298,15,1,f +5555,33299a,0,2,f +5555,3460,71,1,f +5555,3622,71,2,f +5555,3626b,35,1,f +5555,3626bpr0791,14,1,f +5555,3626bpr0810,14,1,f +5555,3626bpr0811,14,1,f +5555,3633,72,2,f +5555,3660,72,19,f +5555,3665,72,6,f +5555,3665,1,2,f +5555,3666,14,3,f +5555,3666,1,2,f +5555,3666,72,3,f +5555,3673,71,1,t +5555,3673,71,2,f +5555,3679,71,1,f +5555,3680,1,1,f +5555,3703,72,4,f +5555,3708,0,3,f +5555,3710,72,2,f +5555,3710,1,7,f +5555,3713,71,1,f +5555,3713,71,1,t +5555,3731,71,2,f +5555,3747b,15,1,f +5555,3747b,72,1,f +5555,3749,19,10,f +5555,3794a,0,1,f +5555,3794a,71,1,f +5555,3795,71,6,f +5555,3795,72,3,f +5555,3829c01,14,1,f +5555,3829c01,1,1,f +5555,3832,1,7,f +5555,3839b,71,1,f +5555,3848,0,2,f +5555,3894,1,2,f +5555,3899,4,1,f +5555,3941,42,1,f +5555,3941,0,2,f +5555,3956,71,2,f +5555,3962b,0,2,f +5555,4032a,4,2,f +5555,4070,1,2,f +5555,4079b,14,2,f +5555,4081b,72,6,f +5555,4085c,15,4,f +5555,4150,0,2,f +5555,4150,4,2,f +5555,4150,14,4,f +5555,4151b,71,1,f +5555,4162,14,6,f +5555,41677,1,4,f +5555,4175,71,3,f +5555,41769,1,1,f +5555,41770,1,1,f +5555,42023,71,4,f +5555,42060,1,1,f +5555,42061,1,1,f +5555,4274,1,2,f +5555,4274,1,1,t +5555,43337,1,4,f +5555,4345b,71,2,f +5555,4349,72,2,f +5555,43710,1,1,f +5555,43711,1,1,f +5555,43713,71,2,f +5555,43722,72,1,f +5555,43723,72,1,f +5555,43898,72,2,f +5555,44567a,14,2,f +5555,4460b,1,14,f +5555,44661,1,1,f +5555,4477,1,3,f +5555,4477,14,2,f +5555,4510,1,2,f +5555,4533,41,1,f +5555,4536,15,2,f +5555,45677,1,2,f +5555,4596,71,2,f +5555,4596,15,1,f +5555,4600,71,4,f +5555,4624,71,8,f +5555,47397,72,1,f +5555,47398,72,1,f +5555,4740,33,2,f +5555,48183,1,2,f +5555,48336,1,1,f +5555,4865a,14,2,f +5555,48729b,72,1,t +5555,48729b,72,1,f +5555,48933,1,1,f +5555,50304,72,2,f +5555,50305,72,2,f +5555,50373,1,1,f +5555,50747,47,1,f +5555,50923,72,2,f +5555,50950,1,2,f +5555,50950,72,4,f +5555,51739,1,2,f +5555,53451,27,1,t +5555,53451,27,1,f +5555,54200,1,4,f +5555,54200,1,1,t +5555,54200,71,2,f +5555,54200,72,1,t +5555,54200,47,2,f +5555,54200,71,1,t +5555,54200,47,1,t +5555,54200,72,2,f +5555,55982,71,2,f +5555,56145,71,10,f +5555,58176,36,1,f +5555,59443,14,2,f +5555,59900,36,2,f +5555,59900,33,2,f +5555,59900,42,4,f +5555,59900,57,18,f +5555,6005,15,2,f +5555,6019,4,2,f +5555,6019,71,2,f +5555,60470a,71,1,f +5555,60478,4,4,f +5555,60478,72,2,f +5555,60479,71,1,f +5555,60581,47,4,f +5555,60592,1,10,f +5555,60601,40,10,f +5555,6091,71,4,f +5555,61184,71,8,f +5555,61409,14,4,f +5555,61409,72,8,f +5555,61409,1,2,f +5555,6141,41,1,t +5555,6141,14,6,f +5555,6141,14,1,t +5555,6141,36,2,f +5555,6141,42,1,t +5555,6141,36,1,t +5555,6141,41,4,f +5555,6141,0,2,f +5555,6141,47,1,t +5555,6141,42,8,f +5555,6141,0,1,t +5555,6141,85,1,t +5555,6141,47,2,f +5555,6141,85,2,f +5555,61481,0,10,f +5555,61485,0,2,f +5555,62462,14,4,f +5555,62462,71,2,f +5555,62576,40,1,f +5555,62698,0,1,f +5555,63082,71,2,f +5555,63864,14,2,f +5555,63868,1,4,f +5555,63868,15,1,f +5555,6558,1,4,f +5555,6587,28,2,f +5555,6636,1,5,f +5555,7066stk01,9999,1,t +5555,7066stk02,9999,1,t +5555,85080,1,2,f +5555,85940,0,2,f +5555,85984,85,4,f +5555,87079,14,7,f +5555,87079,72,2,f +5555,87081,72,2,f +5555,87087,71,4,f +5555,87414,0,8,f +5555,87752,41,1,f +5555,87781,321,2,f +5555,87989,71,2,f +5555,87993,179,2,f +5555,88283,28,1,f +5555,88930,71,3,f +5555,89523,72,1,f +5555,92013,72,2,f +5555,92099,1,5,f +5555,92280,71,10,f +5555,92410,15,2,f +5555,92579,40,1,f +5555,92946,72,4,f +5555,92946,1,16,f +5555,92947,71,3,f +5555,92950,72,10,f +5555,93140,15,1,f +5555,95120,27,1,f +5555,95188,71,4,f +5555,95199,72,3,f +5555,95200,35,1,f +5555,95201pr0002,27,1,f +5555,95203pr0002,27,1,f +5555,95204pr0001,27,1,f +5555,970c00pr0230,15,1,f +5555,970c00pr0231,0,1,f +5555,970c00pr0232,321,1,f +5555,970c00pr0254,321,1,f +5555,970d16,0,1,f +5555,973pr1775c01,0,1,f +5555,973pr1784c01,15,1,f +5555,973pr1785c01,321,1,f +5555,973pr1786c01,0,1,f +5555,973pr1799c01,321,1,f +5556,10201,0,4,f +5556,11153,0,2,f +5556,11215,0,2,f +5556,15391,71,1,f +5556,15392,72,1,t +5556,15392,72,1,f +5556,15423pr0001,0,1,f +5556,15427pr0001,0,1,f +5556,15428pr0001,0,1,f +5556,15445,72,1,f +5556,15573,0,1,f +5556,15712,71,5,f +5556,15712,0,2,f +5556,15851pat01,0,1,f +5556,2412b,0,7,f +5556,2412b,71,1,f +5556,2420,0,2,f +5556,2431,0,1,f +5556,2432,71,1,f +5556,2446pr0012,0,1,f +5556,2447,40,1,t +5556,2447,40,1,f +5556,2654,47,1,f +5556,2654,0,2,f +5556,2780,0,1,t +5556,2780,0,6,f +5556,3001,15,2,f +5556,3003,71,1,f +5556,30031,72,1,f +5556,3004,4,1,f +5556,3004,0,2,f +5556,3004,15,2,f +5556,3005,15,2,f +5556,3009,15,2,f +5556,3010,0,2,f +5556,3020,71,7,f +5556,3020,0,1,f +5556,3021,19,4,f +5556,3021,0,5,f +5556,3022,15,3,f +5556,3023,0,2,f +5556,3023,15,4,f +5556,3023,71,2,f +5556,3024,71,1,t +5556,3024,71,4,f +5556,3024,15,1,t +5556,3024,15,4,f +5556,3031,72,1,f +5556,3036,72,1,f +5556,30367c,0,1,f +5556,30374,71,4,f +5556,30377,71,1,t +5556,30377,71,2,f +5556,3039,71,2,f +5556,3040b,15,2,f +5556,3068b,0,1,f +5556,3069b,36,1,f +5556,3069b,33,1,f +5556,3070b,0,2,f +5556,3070b,0,1,t +5556,32000,71,4,f +5556,32062,4,4,f +5556,32449,0,4,f +5556,3626cpr1338,179,1,f +5556,3626cpr1340,179,1,f +5556,3626cpr1644,14,1,f +5556,3626cpr1646,14,1,f +5556,3665,0,2,f +5556,3665,15,2,f +5556,3666,0,8,f +5556,3666,15,2,f +5556,3705,0,2,f +5556,3710,71,3,f +5556,3710,19,2,f +5556,3795,0,3,f +5556,3829c01,71,1,f +5556,3937,0,1,f +5556,3938,71,1,f +5556,3940b,72,1,f +5556,4079,72,1,f +5556,4081b,15,2,f +5556,4081b,72,2,f +5556,4162,15,2,f +5556,43093,1,4,f +5556,4349,72,2,f +5556,44728,72,4,f +5556,4477,19,2,f +5556,4488,71,4,f +5556,4599b,0,2,f +5556,4599b,0,1,t +5556,47457,71,1,f +5556,4865a,0,1,f +5556,48729b,0,1,f +5556,48729b,0,1,t +5556,50745,0,4,f +5556,50950,15,2,f +5556,52031,0,2,f +5556,54200,47,1,t +5556,54200,36,4,f +5556,54200,0,11,f +5556,54200,36,1,t +5556,54200,0,2,t +5556,54200,47,4,f +5556,55981,0,2,f +5556,57783,40,1,f +5556,58176,36,1,f +5556,58181,40,1,f +5556,59443,72,4,f +5556,6014b,71,4,f +5556,60477,0,4,f +5556,60478,0,2,f +5556,60897,71,4,f +5556,6141,0,1,t +5556,6141,71,4,f +5556,6141,36,2,t +5556,6141,36,4,f +5556,6141,0,2,f +5556,6141,71,1,t +5556,6231,0,2,f +5556,6536,0,4,f +5556,6636,0,3,f +5556,85984,0,10,f +5556,87697,0,4,f +5556,92280,0,2,f +5556,92402,0,2,f +5556,93219pr0007,0,1,f +5556,93274,0,2,f +5556,95199,72,1,f +5556,970c00,0,1,f +5556,970c00pr0628,0,1,f +5556,970c63pr0609,272,2,f +5556,973pr2544c01,0,1,f +5556,973pr2554c01,272,2,f +5556,973pr2590c01,0,1,f +5556,98138,71,1,f +5556,98138,36,1,t +5556,98138,33,1,f +5556,98138,33,1,t +5556,98138,36,1,f +5556,98138,71,1,t +5556,99780,0,1,f +5556,99780,72,1,f +5559,10124pr0001,71,1,f +5559,10126,1,1,f +5559,10127,1,1,f +5559,10154pr0001,71,1,f +5559,10247,72,6,f +5559,10258,2,1,f +5559,10928,72,4,f +5559,11153,15,4,f +5559,11212,71,2,f +5559,11214,72,4,f +5559,11291,4,1,f +5559,11458,72,4,f +5559,11476,15,1,f +5559,11477,15,2,f +5559,11477,1,4,f +5559,11833,36,4,f +5559,14181,15,2,f +5559,14769,0,1,f +5559,15068,19,1,f +5559,15391,71,1,f +5559,15392,72,1,f +5559,15428,288,1,f +5559,15461,0,2,f +5559,15573,15,14,f +5559,18649,0,1,f +5559,18663,47,1,f +5559,18936,297,1,f +5559,18986,47,1,f +5559,18999,1,1,f +5559,19026pr0001,179,1,f +5559,19888,4,1,f +5559,20286,47,1,f +5559,2412b,0,11,f +5559,2419,15,2,f +5559,2431,15,2,f +5559,2432,1,2,f +5559,2432,4,3,f +5559,2445,1,1,f +5559,2465,72,4,f +5559,2654,182,9,f +5559,2654,33,2,f +5559,2780,0,2,f +5559,2817,4,1,f +5559,2825,4,2,f +5559,3005,71,6,f +5559,3007,0,1,f +5559,30136,72,1,f +5559,3020,15,2,f +5559,3020,71,10,f +5559,3020,4,1,f +5559,3021,2,1,f +5559,3022,72,2,f +5559,3023,71,4,f +5559,3023,33,4,f +5559,3023,36,6,f +5559,3023,14,9,f +5559,3024,15,12,f +5559,3024,34,2,f +5559,3024,36,6,f +5559,3028,72,1,f +5559,3032,72,1,f +5559,3034,72,2,f +5559,30367c,15,2,f +5559,30367c,179,2,f +5559,3037,72,1,f +5559,30372,72,1,f +5559,30383,72,2,f +5559,30553,72,1,f +5559,3065,33,7,f +5559,3068b,4,1,f +5559,3068b,15,1,f +5559,3069b,182,6,f +5559,3069b,36,8,f +5559,3069b,33,2,f +5559,3176,71,2,f +5559,32000,15,2,f +5559,32000,72,2,f +5559,32001,1,2,f +5559,32001,15,2,f +5559,32001,71,1,f +5559,32028,71,4,f +5559,32062,4,7,f +5559,32073,71,1,f +5559,32123b,14,1,f +5559,32316,15,2,f +5559,32449,72,4,f +5559,32474,4,1,f +5559,32523,14,1,f +5559,32531,71,2,f +5559,3297,15,4,f +5559,3460,72,3,f +5559,3622,72,2,f +5559,3623,72,6,f +5559,3626cpr0901,78,1,f +5559,3626cpr1632,78,1,f +5559,3626cpr1633,78,1,f +5559,3626cpr1634,70,1,f +5559,3660,72,4,f +5559,3666,72,3,f +5559,3666,71,4,f +5559,3673,71,8,f +5559,3701,71,2,f +5559,3703,72,2,f +5559,3706,0,2,f +5559,3709,15,2,f +5559,3710,71,12,f +5559,3710,4,2,f +5559,3710,15,2,f +5559,3737,0,1,f +5559,3738,0,1,f +5559,3795,0,1,f +5559,3795,72,1,f +5559,3795,71,1,f +5559,3832,15,2,f +5559,3832,71,2,f +5559,3846,15,1,f +5559,3894,72,4,f +5559,3958,72,1,f +5559,4032a,71,14,f +5559,4032a,15,2,f +5559,4081b,72,2,f +5559,4162,72,2,f +5559,4162,15,4,f +5559,42060,15,2,f +5559,42061,15,2,f +5559,4274,1,5,f +5559,4285b,41,3,f +5559,4287,72,2,f +5559,43093,1,6,f +5559,43722,0,2,f +5559,43722,15,2,f +5559,43723,15,2,f +5559,43723,0,2,f +5559,44301a,72,2,f +5559,44302a,14,2,f +5559,4519,71,2,f +5559,46413,33,1,f +5559,47397,15,1,f +5559,47398,15,1,f +5559,47755,0,3,f +5559,48336,0,1,f +5559,50303,0,1,f +5559,50304,15,2,f +5559,50305,15,2,f +5559,51739,15,2,f +5559,51739,272,1,f +5559,52501,72,2,f +5559,54200,72,2,f +5559,54200,33,2,f +5559,54821,4,2,f +5559,58176,33,2,f +5559,59232,179,1,f +5559,59443,71,4,f +5559,59900,15,2,f +5559,60470a,4,2,f +5559,60478,4,2,f +5559,60479,71,4,f +5559,60483,72,2,f +5559,6091,72,10,f +5559,61184,71,2,f +5559,61409,0,4,f +5559,6141,36,7,f +5559,6141,14,2,f +5559,6141,179,4,f +5559,6180,15,2,f +5559,62462,14,1,f +5559,62531,15,2,f +5559,62810,14,1,f +5559,63864,71,2,f +5559,6541,72,4,f +5559,6541,19,2,f +5559,6558,1,8,f +5559,6575,72,1,f +5559,73983,71,3,f +5559,73983,15,2,f +5559,85543,15,1,f +5559,85984,4,7,f +5559,85984,0,2,f +5559,85984,72,10,f +5559,85984,15,2,f +5559,87079,72,1,f +5559,87079,15,1,f +5559,87083,72,2,f +5559,87580,0,2,f +5559,88072,72,1,f +5559,90194,1,1,f +5559,92582,71,1,f +5559,92593,72,4,f +5559,92593,4,4,f +5559,93061,72,1,f +5559,93606,72,1,f +5559,95120,15,1,f +5559,96874,25,1,t +5559,970c00pr0822,297,1,f +5559,970c00pr0823,179,1,f +5559,970d04,1,1,f +5559,970x028,288,1,f +5559,973pr1957c01,1,1,f +5559,973pr2944c01,78,1,f +5559,973pr2945c01,2,1,f +5559,973pr2946c01,0,1,f +5559,98138,297,2,f +5559,98563,148,1,f +5559,98564,148,1,f +5559,98726,0,1,f +5559,99207,71,2,f +5560,14719,0,2,f +5560,18868b01,46,1,f +5560,19981pr0046,46,1,f +5560,2412b,0,1,f +5560,2420,4,2,f +5560,2431,4,1,f +5560,27385,0,1,f +5560,30028,0,4,f +5560,3005,0,2,f +5560,3020,72,2,f +5560,3021,4,2,f +5560,3022,71,2,f +5560,3023,4,5,f +5560,3023,0,4,f +5560,3024,0,2,f +5560,3024,0,1,t +5560,3024,47,2,f +5560,3024,36,1,t +5560,3024,47,1,t +5560,3024,36,2,f +5560,3065,40,1,f +5560,3069b,72,2,f +5560,3069b,0,2,f +5560,32028,4,2,f +5560,3626cpr2011,70,1,f +5560,3941,46,1,f +5560,4006,0,1,f +5560,44728,72,4,f +5560,4600,0,2,f +5560,4865b,40,2,f +5560,54200,0,6,f +5560,54200,0,1,t +5560,60212,0,1,f +5560,60470a,0,1,f +5560,74967,4,4,f +5560,87079pr0095,72,1,f +5560,87079pr0096,72,1,f +5560,93274,0,2,f +5560,970c00,272,1,f +5560,973pr3525c01,4,1,f +5560,98834,72,1,f +5561,3626bpb0173,14,1,f +5561,3833,4,1,f +5561,970c00,1,1,f +5561,973pr1183c01,25,1,f +5562,2356,7,1,f +5562,2376,1,1,f +5562,2412b,383,1,f +5562,2412b,383,1,t +5562,2431,0,2,f +5562,2456,7,1,f +5562,2569,57,1,f +5562,3002,1,1,f +5562,3004,7,2,f +5562,3010,7,2,f +5562,30144,7,1,f +5562,30144pb001,7,1,f +5562,30180,15,1,f +5562,30237a,4,5,f +5562,30248,8,1,f +5562,30285,4,4,f +5562,30285,7,4,f +5562,30365,8,1,f +5562,3039,57,8,f +5562,30391,0,4,f +5562,3039p23,15,1,f +5562,3039px14,15,1,f +5562,30553,8,1,f +5562,30617,33,1,f +5562,30621,15,1,f +5562,30622pb02,15,1,f +5562,30622pb03,0,1,f +5562,30624,0,1,f +5562,30624,7,1,f +5562,30625,0,1,f +5562,30626pb01,0,1,f +5562,30627,15,1,f +5562,3062b,57,2,f +5562,30636c01,8,1,f +5562,30637,15,1,f +5562,30640,7,1,f +5562,30640,15,1,f +5562,30640,0,1,f +5562,30643,8,1,f +5562,30643,4,1,f +5562,30644,0,1,f +5562,30645,0,6,f +5562,30646a,15,16,f +5562,30647,0,4,f +5562,30647pb01,15,1,f +5562,30647pb02,15,1,f +5562,30648,0,4,f +5562,30649px3,33,1,f +5562,30650,8,1,f +5562,30650,33,1,f +5562,30650pb04,33,2,f +5562,30663,7,1,f +5562,30663,0,2,f +5562,3069bp03,7,2,f +5562,3069bpr0100,2,2,f +5562,3297,0,1,f +5562,3900,15,2,f +5562,3962b,8,1,f +5562,40942,8,3,f +5562,40996,57,2,f +5562,4222a,4,2,f +5562,4286,0,2,f +5562,4349,4,1,f +5562,4360,0,1,f +5562,4360,7,1,f +5562,4617b,0,1,f +5562,4729,15,1,f +5562,6213pb03,15,1,f +5562,6215,8,1,f +5562,6239px1,15,1,f +5562,71128,383,1,f +5562,75c36,1,1,f +5562,bb42,15,1,f +5562,js005,9999,1,f +5562,js009,9999,1,f +5562,js012,9999,1,f +5562,js016,9999,1,f +5562,js017,9999,1,f +5563,3001a,15,1,f +5563,3002a,15,2,f +5563,3003,0,1,f +5563,3004,15,5,f +5563,3004,47,1,f +5563,3004,0,4,f +5563,3005,0,2,f +5563,3010,47,2,f +5563,3010,15,2,f +5563,3010,0,3,f +5563,3020,0,3,f +5563,3020,15,1,f +5563,3021,15,1,f +5563,3021,7,4,f +5563,3022,15,6,f +5563,3023,15,7,f +5563,3023,7,8,f +5563,3023,0,12,f +5563,3024,0,4,f +5563,3024,15,2,f +5563,3031,15,1,f +5563,3032,0,1,f +5563,3034,0,2,f +5563,3039,0,3,f +5563,3040a,0,6,f +5563,3040a,15,4,f +5563,3040a,47,2,f +5563,3045,0,4,f +5563,3062a,14,4,f +5563,3063b,0,2,f +5563,3065,36,1,f +5563,3068b,0,2,f +5563,3068b,15,6,f +5563,3069a,0,1,f +5563,3070a,1,2,f +5563,3460,7,2,f +5563,3475a,7,2,f +5563,3634b,0,2,f +5563,3639,4,1,f +5563,3640,4,1,f +5563,3660a,0,3,f +5563,3660a,15,2,f +5563,3700b,0,4,f +5563,3705,79,2,f +5563,3706,79,1,f +5563,3707,79,1,f +5563,3709a,7,2,f +5563,569,4,2,f +5563,x148,4,5,f +5564,30153,36,1,t +5564,30153,42,1,f +5564,30153,36,1,f +5564,30153,42,1,t +5564,3020,72,1,f +5564,3022,71,2,f +5564,30663,0,1,f +5564,3700,71,2,f +5564,4274,71,1,t +5564,4274,71,2,f +5564,4345b,71,1,f +5564,4346,71,1,f +5565,4023,0,2,f +5565,73092,0,2,f +5566,2780,0,2,f +5566,32013,27,2,f +5566,32015,27,2,f +5566,32138,0,1,f +5566,32140,0,2,f +5566,32553,2,3,f +5566,32554,42,1,f +5566,32575,27,1,f +5566,3749,7,1,f +5566,40341,2,1,f +5566,4519,0,4,f +5566,6553,27,2,f +5566,6553,0,2,f +5566,71509,0,1,f +5566,71509,0,1,t +5567,3004,25,2,f +5567,3022,25,1,f +5567,4643693,9999,1,f +5567,4643694,9999,1,f +5567,4643695,9999,1,f +5567,4643696,9999,1,f +5567,4643697,9999,1,f +5567,53451,297,1,t +5567,53451,297,2,f +5567,59232,179,1,f +5567,63965,297,1,f +5567,92690,297,1,f +5567,970c00pr0270,4,1,f +5567,973pr1884c01,4,1,f +5567,98136,15,1,f +5567,98147pr0002,4,1,f +5567,98344pr0001,36,1,f +5567,98354pr0014,36,1,f +5572,2335,1,1,f +5572,2412b,0,5,f +5572,2431,27,2,f +5572,2444,0,2,f +5572,2454a,71,2,f +5572,2465,71,2,f +5572,2512,71,1,f +5572,2540,1,1,f +5572,2555,0,9,f +5572,2653,0,2,f +5572,2780,0,9,f +5572,2780,0,3,t +5572,2817,0,1,f +5572,2817,4,2,f +5572,2877,72,2,f +5572,2926,0,3,f +5572,298c02,1,4,f +5572,298c02,1,2,t +5572,3003,1,3,f +5572,3004,27,13,f +5572,3004,70,4,f +5572,3005,27,1,f +5572,3008,72,5,f +5572,3009,27,2,f +5572,3010,27,4,f +5572,30157,70,1,f +5572,3020,1,11,f +5572,3021,72,1,f +5572,3022,71,5,f +5572,3022,27,4,f +5572,3023,36,4,f +5572,3023,27,7,f +5572,30236,72,1,f +5572,3024,1,1,f +5572,30258,72,1,f +5572,3031,1,2,f +5572,30325,80,2,f +5572,3034,72,2,f +5572,3034,4,6,f +5572,30367b,27,2,f +5572,3037,71,2,f +5572,30385,182,2,f +5572,3039,72,5,f +5572,3040b,182,4,f +5572,3062b,14,1,f +5572,3062b,33,1,f +5572,30663,0,4,f +5572,3068b,71,3,f +5572,3069bpr0100,2,1,f +5572,3070b,27,1,t +5572,3070b,27,1,f +5572,32000,4,2,f +5572,32009,1,1,f +5572,32013,0,5,f +5572,32054,4,2,f +5572,32062,4,1,f +5572,32064b,0,2,f +5572,32140,27,2,f +5572,3460,71,1,f +5572,3622,27,2,f +5572,3626bpr0557,14,1,f +5572,3626bpr0563,14,1,f +5572,3633,0,3,f +5572,3659,27,2,f +5572,3660,27,3,f +5572,3678b,71,4,f +5572,3684,308,8,f +5572,3700,72,2,f +5572,3700,71,3,f +5572,3701,72,2,f +5572,3705,0,3,f +5572,3709,4,2,f +5572,3710,1,1,f +5572,3710,70,3,f +5572,3738,72,2,f +5572,3749,19,3,f +5572,3795,71,2,f +5572,3894,1,2,f +5572,3937,71,1,f +5572,3938,0,1,f +5572,3941,27,8,f +5572,40490,1,2,f +5572,4079,70,1,f +5572,4150,4,2,f +5572,4151b,72,3,f +5572,41677,1,2,f +5572,41678,72,1,f +5572,4274,1,5,f +5572,4274,1,2,t +5572,4282,4,4,f +5572,43093,1,4,f +5572,43337,71,4,f +5572,44675,71,1,f +5572,4510,71,2,f +5572,4519,71,2,f +5572,45590,0,2,f +5572,4589,33,1,f +5572,47455,0,1,f +5572,47847,70,1,f +5572,48169,72,1,f +5572,48171,72,1,f +5572,4864b,41,1,f +5572,4865a,71,2,f +5572,4872,41,1,f +5572,53451,25,6,f +5572,53451,25,1,t +5572,54821,1,3,f +5572,57539,179,2,f +5572,58827,27,2,f +5572,59426,72,2,f +5572,6014b,71,6,f +5572,6020,71,1,f +5572,6046,0,4,f +5572,60470a,71,2,f +5572,60474,71,1,f +5572,60474,0,1,f +5572,61072,179,2,f +5572,61184,71,1,f +5572,61409,27,4,f +5572,6141,80,1,t +5572,6141,47,3,t +5572,6141,47,14,f +5572,6141,80,1,f +5572,61485,0,2,f +5572,6232,71,6,f +5572,63153,179,2,f +5572,63864,27,2,f +5572,64275,179,2,f +5572,64451,27,2,f +5572,64728,4,1,f +5572,64783,0,2,f +5572,64784pat02,182,1,f +5572,6536,1,1,f +5572,6583,0,2,f +5572,6587,28,2,f +5572,85054pb01,182,1,f +5572,85207pb01,182,1,f +5572,85984,15,1,f +5572,86500,33,1,f +5572,87079,1,4,f +5572,87081,1,2,f +5572,87544,27,4,f +5572,87580,72,2,f +5572,87697,0,6,f +5572,87777,80,2,f +5572,87780,182,1,f +5572,87957,25,3,f +5572,87959pr01,182,1,f +5572,970c00pr0149a,71,2,f +5572,973pr1581c01,71,2,f +5574,29c01,4,8,f +5574,29c01,15,6,f +5574,3001a,15,25,f +5574,3001a,4,9,f +5574,3001a,1,4,f +5574,3002a,4,6,f +5574,3002a,15,16,f +5574,3003,15,5,f +5574,3003,1,3,f +5574,3003,14,4,f +5574,3004,14,27,f +5574,3004,1,3,f +5574,3004,15,63,f +5574,3004,4,22,f +5574,3005,4,2,f +5574,3005,15,36,f +5574,3005,14,19,f +5574,3006,14,2,f +5574,3006,4,9,f +5574,3007,4,4,f +5574,3007,14,1,f +5574,3008,15,2,f +5574,3008,4,2,f +5574,3008,14,14,f +5574,3009,15,18,f +5574,3009,14,13,f +5574,3009,4,8,f +5574,3010,4,2,f +5574,3010,14,18,f +5574,3010,15,42,f +5574,3020,15,1,f +5574,3020,7,10,f +5574,3021,15,1,f +5574,3021,7,16,f +5574,3022,7,1,f +5574,3022,15,2,f +5574,3028,7,1,f +5574,3032,14,1,f +5574,3035,14,1,f +5574,3035,7,6,f +5574,3036,7,2,f +5574,3038,1,2,f +5574,3039,1,4,f +5574,3043,1,1,f +5574,3045,1,11,f +5574,3062a,1,2,f +5574,3062a,0,8,f +5574,3062a,15,2,f +5574,3081cc01,15,2,f +5574,700ed,7,3,f +5574,777px8,15,1,f +5575,3844,8,2,f +5575,3846p45,7,2,f +5575,3846p48,6,2,f +5575,3846p4c,7,2,f +5575,3847,8,2,f +5575,3848,6,2,f +5575,3849,8,2,f +5575,3896,8,2,f +5575,3957a,0,2,f +5575,4150p40,14,2,f +5575,4495a,1,1,f +5575,4495a,15,1,f +5575,4497,6,2,f +5575,4498,6,2,f +5575,4499,6,2,f +5575,4503,0,2,f +5575,4506,2,2,f +5575,87692,4,1,f +5575,87692,14,1,f +5575,87693,4,1,f +5575,87693,14,1,f +5575,87694,14,1,f +5575,87694,4,1,f +5576,2780,0,30,f +5576,2780,0,2,t +5576,2905,0,5,f +5576,32002,72,1,t +5576,32002,72,7,f +5576,32013,72,2,f +5576,32016,0,1,f +5576,32034,71,1,f +5576,32039,0,2,f +5576,32054,0,11,f +5576,32056,71,2,f +5576,32062,4,8,f +5576,32073,71,1,f +5576,32123b,71,1,f +5576,32123b,71,1,t +5576,32184,0,8,f +5576,32192,72,1,f +5576,32199,72,1,f +5576,32278,0,2,f +5576,32316,1,1,f +5576,32348,0,2,f +5576,32523,1,4,f +5576,32524,0,4,f +5576,32525,1,4,f +5576,32551,135,2,f +5576,32556,19,3,f +5576,3673,71,1,t +5576,3673,71,3,f +5576,3705,0,2,f +5576,3713,71,2,t +5576,3713,71,9,f +5576,3737,0,1,f +5576,3749,19,4,f +5576,41677,72,6,f +5576,42003,72,11,f +5576,42610,71,2,f +5576,43093,1,28,f +5576,43093,1,2,t +5576,44809,71,5,f +5576,4519,71,23,f +5576,47330,0,8,f +5576,49423,135,2,f +5576,50163,72,1,f +5576,53543,272,5,f +5576,53549,272,2,f +5576,53550,0,3,f +5576,53586,135,5,f +5576,54271,148,1,f +5576,54821,135,9,f +5576,55013,72,5,f +5576,57533,135,1,f +5576,57563,135,2,f +5576,57570,135,4,f +5576,57585,71,1,f +5576,58230,148,1,f +5576,59426,72,1,f +5576,59443,0,3,f +5576,60176,15,2,f +5576,60483,72,2,f +5576,60894,72,1,f +5576,60900,15,4,f +5576,60901,42,1,f +5576,60917,148,2,f +5576,61053,72,8,f +5576,62386,72,2,f +5576,6536,71,5,f +5576,6558,1,7,f +5576,6587,72,8,f +5576,6629,1,4,f +5576,6632,71,4,f +5577,rb00193a,0,1,f +5579,2456,71,2,f +5579,2456,4,2,f +5579,2456,1,2,f +5579,2456,15,2,f +5579,2456,14,2,f +5579,3001,71,4,f +5579,3001,14,14,f +5579,3001,1,14,f +5579,3001,2,4,f +5579,3001,4,14,f +5579,3001,0,8,f +5579,3001,25,4,f +5579,3001,15,14,f +5579,3002,25,2,f +5579,3002,1,8,f +5579,3002,71,2,f +5579,3002,0,6,f +5579,3002,4,8,f +5579,3002,14,8,f +5579,3002,2,2,f +5579,3002,15,10,f +5579,3003,71,6,f +5579,3003,25,6,f +5579,3003,36,12,f +5579,3003,0,18,f +5579,3003,2,18,f +5579,3003,14,27,f +5579,3003,4,30,f +5579,3003,1,30,f +5579,3003,33,12,f +5579,3003,15,30,f +5579,3004,2,22,f +5579,3004,25,8,f +5579,3004,72,10,f +5579,3004,4,34,f +5579,3004,15,40,f +5579,3004,0,28,f +5579,3004,14,28,f +5579,3004,1,36,f +5579,3004,71,8,f +5579,3005,2,14,f +5579,3005,33,4,f +5579,3005,0,26,f +5579,3005,1,30,f +5579,3005,4,30,f +5579,3005,15,28,f +5579,3005pe1,14,4,f +5579,3005pe2,72,2,f +5579,3005pe3,72,2,f +5579,3005px2,14,2,f +5579,3007,15,2,f +5579,3007,1,2,f +5579,3007,14,2,f +5579,3007,4,2,f +5579,3008,71,2,f +5579,3009,15,4,f +5579,3009,14,2,f +5579,3009,4,4,f +5579,3009,1,4,f +5579,3010,0,4,f +5579,3010,4,6,f +5579,3010,15,6,f +5579,3010,14,6,f +5579,3010,72,2,f +5579,3010,25,2,f +5579,3010,1,6,f +5579,3010,2,4,f +5579,3010p01,14,2,f +5579,3020,2,2,f +5579,3020,4,2,f +5579,3020,14,2,f +5579,3020,0,2,f +5579,3020,1,2,f +5579,3020,15,4,f +5579,3020,25,2,f +5579,3020,71,2,f +5579,3021,15,4,f +5579,3021,4,2,f +5579,3021,72,2,f +5579,3021,14,2,f +5579,3021,25,2,f +5579,3021,1,4,f +5579,3021,2,2,f +5579,3022,0,2,f +5579,3022,2,2,f +5579,3022,1,6,f +5579,3022,15,6,f +5579,3022,4,4,f +5579,3022,72,2,f +5579,3022,14,4,f +5579,3034,15,2,f +5579,3034,14,2,f +5579,3034,4,2,f +5579,3034,1,2,f +5579,3037,4,8,f +5579,3039,72,2,f +5579,3039,15,4,f +5579,3039,4,6,f +5579,3039,47,2,f +5579,3039,33,4,f +5579,3039,36,2,f +5579,3039,1,4,f +5579,3040b,4,4,f +5579,3040b,72,2,f +5579,3040b,14,2,f +5579,3040b,15,4,f +5579,3040b,25,4,f +5579,3040b,1,4,f +5579,3040b,2,2,f +5579,3040b,71,2,f +5579,3041,4,2,f +5579,3043,4,2,f +5579,3065,33,14,f +5579,3065,36,14,f +5579,3065,47,8,f +5579,3066,36,2,f +5579,3298,1,4,f +5579,3298,15,4,f +5579,3298,4,4,f +5579,3622,72,2,f +5579,3622,2,2,f +5579,3660,4,2,f +5579,3660,15,2,f +5579,3660,1,2,f +5579,3665,71,2,f +5579,3665,1,4,f +5579,3665,15,4,f +5579,3665,25,4,f +5579,3665,14,2,f +5579,3665,72,2,f +5579,3665,4,4,f +5579,3665,2,2,f +5579,3710,4,2,f +5579,3710,15,2,f +5579,3710,1,2,f +5579,3747b,1,2,f +5579,3795,1,2,f +5579,3795,15,2,f +5579,3795,4,2,f +5579,3795,14,2,f +5579,3957a,1,2,f +5579,4286,1,4,f +5579,4286,15,4,f +5579,4286,4,4,f +5579,4286,72,2,f +5579,4287,15,4,f +5579,4287,4,4,f +5579,4287,72,2,f +5579,4287,1,4,f +5579,4495b,14,1,f +5580,2456,15,2,f +5580,2456,4,2,f +5580,2456,71,2,f +5580,2456,14,2,f +5580,2456,1,2,f +5580,3001,14,18,f +5580,3001,27,6,f +5580,3001,1,18,f +5580,3001,25,6,f +5580,3001,4,18,f +5580,3001,71,6,f +5580,3001,15,12,f +5580,3001,0,6,f +5580,3001,73,6,f +5580,3001,2,6,f +5580,3002,25,4,f +5580,3002,0,4,f +5580,3002,15,6,f +5580,3002,1,8,f +5580,3002,27,4,f +5580,3002,4,8,f +5580,3002,2,4,f +5580,3002,14,8,f +5580,3002,73,4,f +5580,3002,71,4,f +5580,3003,15,28,f +5580,3003,36,2,f +5580,3003,25,18,f +5580,3003,14,32,f +5580,3003,4,32,f +5580,3003,2,18,f +5580,3003,73,18,f +5580,3003,1,32,f +5580,3003,27,18,f +5580,3003,0,18,f +5580,3003,71,18,f +5580,3004,4,28,f +5580,3004,2,16,f +5580,3004,14,28,f +5580,3004,1,28,f +5580,3004,27,16,f +5580,3004,15,24,f +5580,3004,73,16,f +5580,3004,25,16,f +5580,3004,0,16,f +5580,3004,71,16,f +5580,3005,25,12,f +5580,3005,73,12,f +5580,3005,0,12,f +5580,3005,15,18,f +5580,3005,4,20,f +5580,3005,1,21,f +5580,3005,71,12,f +5580,3005pe1,14,4,f +5580,3005pe1,2,2,f +5580,3007,14,2,f +5580,3007,1,2,f +5580,3007,4,2,f +5580,3008,14,2,f +5580,3008,71,2,f +5580,3008,4,2,f +5580,3008,1,2,f +5580,3009,15,2,f +5580,3009,14,4,f +5580,3009,1,4,f +5580,3009,4,4,f +5580,3010,14,8,f +5580,3010,15,6,f +5580,3010,4,8,f +5580,3010,27,4,f +5580,3010,0,4,f +5580,3010,25,2,f +5580,3010,2,4,f +5580,3010,73,4,f +5580,3010,71,4,f +5580,3010,1,6,f +5580,3010p01,14,1,f +5580,3020,71,2,f +5580,3020,0,2,f +5580,3020,2,2,f +5580,3020,4,2,f +5580,3020,25,2,f +5580,3020,15,4,f +5580,3020,14,2,f +5580,3020,1,2,f +5580,3021,4,2,f +5580,3021,15,4,f +5580,3021,1,4,f +5580,3021,25,2,f +5580,3021,2,2,f +5580,3021,14,2,f +5580,3022,2,2,f +5580,3022,15,6,f +5580,3022,14,4,f +5580,3022,4,4,f +5580,3022,0,2,f +5580,3022,1,6,f +5580,3034,14,2,f +5580,3034,4,2,f +5580,3034,1,2,f +5580,3034,15,2,f +5580,3037,4,6,f +5580,3039,15,4,f +5580,3039,33,2,f +5580,3039,4,6,f +5580,3039,1,4,f +5580,3040b,4,4,f +5580,3040b,25,4,f +5580,3040b,2,2,f +5580,3040b,1,4,f +5580,3040b,71,2,f +5580,3040b,15,4,f +5580,3040b,14,2,f +5580,3041,4,2,f +5580,3043,4,2,f +5580,3065,33,4,f +5580,3065,36,4,f +5580,3298,1,4,f +5580,3298,4,4,f +5580,3298,15,4,f +5580,3622,2,2,f +5580,3660,15,2,f +5580,3660,4,2,f +5580,3660,1,2,f +5580,3665,25,4,f +5580,3665,14,2,f +5580,3665,4,4,f +5580,3665,2,2,f +5580,3665,1,4,f +5580,3665,15,4,f +5580,3665,71,2,f +5580,3710,4,2,f +5580,3710,1,2,f +5580,3710,15,2,f +5580,3747b,1,2,f +5580,3795,15,2,f +5580,3795,4,2,f +5580,3795,1,2,f +5580,3795,14,2,f +5580,4286,15,4,f +5580,4286,4,4,f +5580,4286,1,4,f +5580,4287,1,4,f +5580,4287,4,4,f +5580,4287,15,4,f +5581,298c02,71,1,t +5581,298c02,71,1,f +5581,3023,28,4,f +5581,3623,19,1,f +5581,50950,19,2,f +5581,52107,0,1,f +5581,54200,19,1,t +5581,54200,19,3,f +5581,60481,19,1,f +5581,6141,41,2,f +5581,6141,41,1,t +5582,10247,72,2,f +5582,10830pat0001,0,1,f +5582,11203,19,1,f +5582,11208,71,4,f +5582,11209,0,4,f +5582,11211,4,2,f +5582,11211,19,8,f +5582,11211,71,4,f +5582,11213,322,1,f +5582,11215,0,2,f +5582,11477,25,8,f +5582,12825,4,2,f +5582,12825,71,4,f +5582,12825,1,4,f +5582,12897,27,1,f +5582,12939,19,2,f +5582,13548,70,4,f +5582,13965,19,4,f +5582,14719,15,3,f +5582,14769,71,1,f +5582,15068,15,2,f +5582,15207,0,2,f +5582,15395,15,12,f +5582,15395,320,2,f +5582,15522pr0001,1,1,f +5582,15523pr0001,14,1,f +5582,15524pr0001,14,1,f +5582,15527pr0001,14,1,f +5582,15529pr0001,14,1,f +5582,15573,71,3,f +5582,15998,212,1,f +5582,16360,4,1,f +5582,16368pr0001,14,1,f +5582,16709pat01,4,1,f +5582,16709pat01,321,1,f +5582,16816pr0001a,15,1,f +5582,16820,4,1,f +5582,22667,26,2,f +5582,22667,26,1,t +5582,2343,47,2,f +5582,2357,19,65,f +5582,2357,1,1,f +5582,2412b,0,6,f +5582,2412b,15,4,f +5582,2420,2,2,f +5582,2420,19,8,f +5582,2431,19,24,f +5582,2431,29,5,f +5582,2431,15,1,f +5582,2431,70,1,f +5582,2431,85,4,f +5582,2431,71,3,f +5582,2431,25,1,f +5582,2432,25,8,f +5582,2432,1,1,f +5582,2445,70,3,f +5582,2456,1,1,f +5582,2456,19,2,f +5582,2458,19,4,f +5582,2465,19,11,f +5582,2496,85,2,f +5582,2540,1,2,f +5582,2654,15,2,f +5582,2780,0,2,f +5582,2780,0,1,t +5582,2926,0,2,f +5582,298c02,71,4,t +5582,298c02,71,6,f +5582,3001,15,1,f +5582,3001,29,2,f +5582,3001,19,10,f +5582,3002,0,5,f +5582,3002,29,2,f +5582,3003,2,1,f +5582,3003,19,12,f +5582,3003,84,23,f +5582,3003,25,1,f +5582,3004,70,8,f +5582,3004,19,83,f +5582,3004,15,1,f +5582,3004,29,6,f +5582,3004,25,3,f +5582,3004,84,23,f +5582,3004,1,1,f +5582,3004,4,2,f +5582,3004,2,1,f +5582,3005,1,5,f +5582,3005,71,4,f +5582,3005,29,2,f +5582,3005,84,6,f +5582,3005,4,2,f +5582,3005,19,91,f +5582,3005,484,4,f +5582,3006,4,1,f +5582,3007,0,8,f +5582,30089,0,1,f +5582,3009,484,4,f +5582,3009,19,102,f +5582,30099,322,4,f +5582,3010,322,1,f +5582,3010,25,2,f +5582,3010,4,1,f +5582,3010,19,104,f +5582,3010,1,2,f +5582,30165,484,2,f +5582,3020,70,4,f +5582,3020,71,5,f +5582,3020,5,2,f +5582,3020,0,2,f +5582,3020,25,2,f +5582,3020,15,2,f +5582,3020,288,1,f +5582,3020,1,6,f +5582,3021,85,2,f +5582,3021,0,2,f +5582,3021,70,5,f +5582,3021,1,1,f +5582,3021,2,3,f +5582,3021,71,5,f +5582,3022,73,3,f +5582,3022,1,1,f +5582,3022,322,7,f +5582,3022,0,1,f +5582,3022,71,3,f +5582,3022,2,4,f +5582,3022,19,9,f +5582,3022,15,2,f +5582,3023,30,11,f +5582,3023,27,2,f +5582,3023,25,4,f +5582,3023,4,5,f +5582,3023,73,3,f +5582,3023,15,8,f +5582,3023,29,9,f +5582,3023,2,4,f +5582,3023,70,11,f +5582,3023,71,12,f +5582,3023,1,4,f +5582,3023,19,35,f +5582,30237a,19,4,f +5582,3024,19,5,t +5582,3024,29,1,t +5582,3024,0,2,f +5582,3024,71,1,t +5582,3024,70,13,f +5582,3024,19,26,f +5582,3024,30,3,t +5582,3024,15,4,f +5582,3024,0,1,t +5582,3024,70,3,t +5582,3024,30,18,f +5582,3024,15,1,t +5582,3024,71,2,f +5582,3024,29,6,f +5582,3027,71,1,f +5582,3028,71,1,f +5582,3028,70,2,f +5582,3032,1,1,f +5582,3032,322,1,f +5582,3032,19,2,f +5582,3034,70,10,f +5582,3034,0,12,f +5582,30340,15,1,f +5582,3035,19,4,f +5582,30350b,4,2,f +5582,30357,191,2,f +5582,3036,70,21,f +5582,3036,92,2,f +5582,3036,71,2,f +5582,3037,70,3,f +5582,30374,35,1,f +5582,30374,0,2,f +5582,30375,72,1,f +5582,30377,71,1,t +5582,30377,71,2,f +5582,30383,0,1,f +5582,3039,19,2,f +5582,3040b,2,3,f +5582,3040b,19,11,f +5582,3040b,84,2,f +5582,30414,19,2,f +5582,30414,14,2,f +5582,30553,0,1,f +5582,3062b,4,1,f +5582,3062b,14,1,f +5582,3062b,27,4,f +5582,3062b,2,1,f +5582,3062b,1,4,f +5582,30663,0,1,f +5582,3068b,15,4,f +5582,3068b,29,4,f +5582,3068b,73,13,f +5582,3068b,2,74,f +5582,3068b,71,3,f +5582,3068b,70,2,f +5582,3068b,5,3,f +5582,3068b,322,68,f +5582,3068b,25,2,f +5582,3068bpr0228,15,1,f +5582,3068bpr0229,15,1,f +5582,3069b,15,3,f +5582,3069b,25,2,f +5582,3069b,322,35,f +5582,3069b,2,33,f +5582,3069b,36,2,f +5582,3069b,1,8,f +5582,3069b,85,19,f +5582,3069b,73,5,f +5582,3069b,71,7,f +5582,3069b,226,30,f +5582,3069b,40,1,f +5582,3069b,70,23,f +5582,3069b,191,7,f +5582,3069b,19,5,f +5582,3069b,29,6,f +5582,3069bpr0099,15,1,f +5582,3069bpr0175,29,1,f +5582,3070b,25,2,f +5582,3070b,1,1,t +5582,3070b,1,2,f +5582,3070b,15,2,t +5582,3070b,70,1,t +5582,3070b,19,3,t +5582,3070b,2,2,f +5582,3070b,15,4,f +5582,3070b,70,2,f +5582,3070b,4,1,t +5582,3070b,4,1,f +5582,3070b,2,1,t +5582,3070b,19,5,f +5582,3070b,25,1,t +5582,3176,1,2,f +5582,32059,2,3,f +5582,3245c,19,4,f +5582,33078,4,3,f +5582,3308,19,3,f +5582,33243,484,2,f +5582,33291,5,1,t +5582,33291,10,2,f +5582,33291,5,2,f +5582,33291,10,1,t +5582,3460,0,4,f +5582,3460,70,8,f +5582,3464,15,1,f +5582,3623,0,6,f +5582,3659,4,1,f +5582,3659,19,1,f +5582,3660,2,1,f +5582,3665,19,9,f +5582,3666,70,14,f +5582,3666,1,2,f +5582,3666,29,6,f +5582,3666,71,3,f +5582,3666,322,2,f +5582,3680,15,2,f +5582,3700,19,4,f +5582,3710,25,4,f +5582,3710,19,52,f +5582,3710,71,12,f +5582,3710,29,2,f +5582,3710,70,11,f +5582,3794b,2,2,f +5582,3794b,25,6,f +5582,3794b,73,4,f +5582,3794b,4,1,f +5582,3794b,15,2,f +5582,3794b,1,5,f +5582,3794b,70,4,f +5582,3795,19,1,f +5582,3795,71,1,f +5582,3795,1,3,f +5582,3795,4,1,f +5582,3822,15,1,f +5582,3829c01,71,1,f +5582,3832,70,5,f +5582,3832,1,1,f +5582,3832,0,2,f +5582,3836,70,1,f +5582,3837,72,1,f +5582,3852b,191,1,f +5582,3899,4,6,f +5582,3941,25,1,f +5582,3958,70,3,f +5582,4032a,0,12,f +5582,4032a,19,1,f +5582,4032a,2,4,f +5582,4070,0,4,f +5582,4070,29,16,f +5582,4070,4,3,f +5582,4070,25,7,f +5582,4070,15,4,f +5582,4070,1,10,f +5582,4070,2,2,f +5582,4079,1,1,f +5582,4081b,19,1,f +5582,4081b,71,4,f +5582,4150,29,2,f +5582,4162,70,30,f +5582,4175,25,4,f +5582,4175,4,2,f +5582,4176,40,1,f +5582,42511,27,1,f +5582,4286,19,22,f +5582,43710,19,2,f +5582,43711,19,2,f +5582,44302a,72,1,f +5582,4449,70,1,f +5582,44567a,72,1,f +5582,44728,1,5,f +5582,44728,19,2,f +5582,44728,71,2,f +5582,44728,15,2,f +5582,4477,19,8,f +5582,4477,70,10,f +5582,4510,0,1,f +5582,4528,179,1,f +5582,4529,0,1,f +5582,4533,15,1,f +5582,4533,41,2,f +5582,4536,29,7,f +5582,4599b,71,1,f +5582,4599b,71,1,t +5582,46212,47,1,f +5582,4740,4,3,f +5582,4740,45,1,f +5582,47457,1,2,f +5582,47457,15,3,f +5582,47457,70,6,f +5582,48336,71,2,f +5582,48336,4,2,f +5582,48336,0,5,f +5582,4865b,29,9,f +5582,48729b,72,2,f +5582,48729b,72,2,t +5582,51739,25,2,f +5582,54200,85,5,f +5582,54200,19,8,f +5582,54200,19,1,t +5582,54200,85,1,t +5582,54200,322,2,f +5582,54200,2,1,t +5582,54200,4,2,f +5582,54200,2,2,f +5582,54200,71,1,f +5582,54200,322,1,t +5582,54200,4,1,t +5582,54200,29,1,t +5582,54200,29,12,f +5582,54200,71,1,t +5582,59230,0,1,t +5582,59230,0,4,f +5582,59349,19,7,f +5582,59895,0,1,f +5582,59895,0,1,t +5582,59900,26,19,f +5582,59900,70,2,f +5582,59900,4,1,f +5582,604547,0,1,f +5582,604548,0,1,f +5582,604549,0,1,f +5582,604550,0,1,f +5582,604551,0,1,f +5582,604552,0,1,f +5582,604553,0,1,f +5582,604614,0,1,f +5582,604615,0,1,f +5582,60470a,71,2,f +5582,60471,71,1,f +5582,60474,212,1,f +5582,60477,19,13,f +5582,60478,0,2,f +5582,60479,71,2,f +5582,60592,15,2,f +5582,60593,70,26,f +5582,60596,70,6,f +5582,60601,47,1,f +5582,60602,47,26,f +5582,60616b,92,6,f +5582,60849,71,4,f +5582,60849,71,3,t +5582,6091,191,8,f +5582,6091,5,8,f +5582,6091,15,4,f +5582,6091,30,10,f +5582,6111,19,4,f +5582,6112,70,1,f +5582,61252,4,1,f +5582,61409,72,4,f +5582,6141,0,2,t +5582,6141,71,3,f +5582,6141,70,1,t +5582,6141,46,2,f +5582,6141,46,2,t +5582,6141,29,1,t +5582,6141,179,6,f +5582,6141,4,8,f +5582,6141,1,1,t +5582,6141,71,1,t +5582,6141,47,32,f +5582,6141,29,8,f +5582,6141,4,3,t +5582,6141,0,5,f +5582,6141,179,2,t +5582,6141,1,6,f +5582,6141,70,4,f +5582,6141,47,4,t +5582,6179,19,2,f +5582,6183,70,1,f +5582,6190,322,1,f +5582,6191,30,3,f +5582,6215,2,7,f +5582,6231,71,2,f +5582,6231,15,6,f +5582,6231,0,2,f +5582,62462,0,2,f +5582,63864,71,2,f +5582,63868,71,2,f +5582,63868,0,5,f +5582,63965,0,1,f +5582,6541,72,2,f +5582,6636,70,5,f +5582,6636,71,3,f +5582,6636,85,1,f +5582,6636,19,19,f +5582,6636,1,1,f +5582,73983,19,16,f +5582,76768,19,2,f +5582,85984,72,1,f +5582,85984,19,23,f +5582,85984,4,4,f +5582,85984,15,1,f +5582,85984,1,2,f +5582,86035,4,1,f +5582,87079,4,1,f +5582,87079,71,4,f +5582,87079,14,1,f +5582,87079,30,1,f +5582,87079,25,1,f +5582,87079,15,1,f +5582,87079,484,3,f +5582,87079,1,1,f +5582,87079,0,3,f +5582,87079,70,1,f +5582,87087,71,2,f +5582,87087,29,6,f +5582,87087,19,8,f +5582,87552,0,1,f +5582,87552,1,8,f +5582,87580,322,10,f +5582,87580,2,13,f +5582,87580,15,1,f +5582,87580,1,2,f +5582,87994,0,1,f +5582,88072,71,6,f +5582,88930,25,1,f +5582,91405,71,1,f +5582,91501,15,2,f +5582,91988,0,2,f +5582,92262,29,1,f +5582,92263,29,1,f +5582,92280,0,3,f +5582,92280,71,4,f +5582,92410,25,5,f +5582,92410,26,1,f +5582,92410,4,1,f +5582,92438,19,9,f +5582,92583,40,1,f +5582,92589,71,1,f +5582,93092,5,1,f +5582,96874,25,1,t +5582,970c00,73,1,f +5582,970c00pr0633,72,1,f +5582,970x001,14,1,f +5582,973pr2585c01,15,1,f +5582,973pr650c01,10,1,f +5582,973pr651c01,27,1,f +5582,973pr652c01,4,1,f +5582,97781,191,3,t +5582,97782,191,3,t +5582,97783,191,3,t +5582,97784,191,3,t +5582,97785,191,1,t +5582,97787,191,1,f +5582,97790,191,1,t +5582,97791,191,1,t +5582,97793,191,1,f +5582,98138,179,2,f +5582,98138,179,1,t +5582,98138,15,2,f +5582,98138,15,1,t +5582,98283,84,4,f +5582,98288,27,1,f +5582,98368,4,1,f +5582,99206,71,2,f +5582,99206,0,1,f +5582,99207,71,2,f +5582,99207,25,4,f +5582,99207,0,4,f +5582,99780,71,5,f +5582,99780,72,1,f +5582,99781,0,1,f +5583,3002,2,2,f +5583,3002,14,1,f +5583,3034,14,2,f +5583,30474pb07,2,1,f +5583,3137c01,0,2,f +5583,3298,2,3,f +5583,3641,0,4,f +5584,10247,71,1,f +5584,11153,19,2,f +5584,11213,71,1,f +5584,11215,71,1,f +5584,11458,72,1,f +5584,11477,71,1,f +5584,14769,19,1,f +5584,15068,19,4,f +5584,15303,182,3,f +5584,15400,72,2,f +5584,15535,72,4,f +5584,15672,19,2,f +5584,18677,71,2,f +5584,2412b,19,3,f +5584,2420,72,4,f +5584,2456,1,1,f +5584,2654,19,1,f +5584,2654,47,5,f +5584,2736,71,2,f +5584,2780,0,2,t +5584,2780,0,5,f +5584,2825,71,2,f +5584,2877,19,3,f +5584,2877,0,2,f +5584,30000,72,1,f +5584,3002,19,2,f +5584,3004,19,2,f +5584,3010,19,5,f +5584,3020,28,3,f +5584,3020,72,4,f +5584,3021,19,5,f +5584,3022,19,2,f +5584,3023,19,4,f +5584,3024,19,6,f +5584,3024,19,2,t +5584,3029,72,1,f +5584,3032,19,1,f +5584,3034,0,2,f +5584,30357,19,4,f +5584,30361,19,2,f +5584,30375,19,1,f +5584,30375ps2,1,1,f +5584,30376,19,2,f +5584,30377,19,1,t +5584,30377,19,2,f +5584,30378,19,2,f +5584,30414,19,1,f +5584,30505,0,2,f +5584,30565,19,2,f +5584,3062b,4,2,f +5584,3062b,72,4,f +5584,3062b,41,1,f +5584,32000,19,2,f +5584,32017,71,2,f +5584,32028,28,2,f +5584,32054,0,2,f +5584,32062,4,2,f +5584,32062,0,1,f +5584,32138,0,2,f +5584,3245b,72,1,f +5584,33243,28,4,f +5584,3623,71,2,f +5584,3678b,28,3,f +5584,3700,71,2,f +5584,3701,72,2,f +5584,3709,72,1,f +5584,3710,72,4,f +5584,3710,28,3,f +5584,3710,19,2,f +5584,3749,19,1,f +5584,3795,19,1,f +5584,3941,19,4,f +5584,3957b,71,1,t +5584,3957b,71,1,f +5584,3960,28,1,f +5584,4032a,19,1,f +5584,42610,71,1,f +5584,4282,72,1,f +5584,4287,72,2,f +5584,43093,1,2,f +5584,43857,71,2,f +5584,4519,71,2,f +5584,50950,19,2,f +5584,54200,28,6,f +5584,54200,28,1,t +5584,58247,0,1,f +5584,59230,19,1,t +5584,59230,19,2,f +5584,59426,72,2,f +5584,59443,0,2,f +5584,59900,19,2,f +5584,60474,72,1,f +5584,60477,19,2,f +5584,60478,72,2,f +5584,6091,19,6,f +5584,6111,71,1,f +5584,61184,71,2,f +5584,6141,19,8,f +5584,6141,19,1,t +5584,61485,0,1,f +5584,6249,71,1,f +5584,63868,71,2,f +5584,63965,0,1,f +5584,64567,0,1,t +5584,64567,0,2,f +5584,6541,72,2,f +5584,6632,0,2,f +5584,85080,19,2,f +5584,85943,72,1,f +5584,85984,28,3,f +5584,87079,72,1,f +5584,87087,19,8,f +5584,87559,19,2,f +5584,87994,0,1,t +5584,87994,0,2,f +5584,92738,0,1,f +5584,92743pr0001,19,1,f +5584,92747pr0001c,52,1,f +5584,93273,19,3,f +5584,970c00,72,1,f +5584,973pr1739c01,28,1,f +5584,98286,71,1,f +5586,11249,297,1,f +5586,13288,70,1,f +5586,13289,70,2,f +5586,13523,15,1,f +5586,13527,4,1,f +5586,13722,484,1,f +5586,13739,4,1,f +5586,13802,484,1,f +5586,13804,322,1,f +5586,13879,47,1,f +5586,13880,484,1,f +5586,14218,14,1,f +5586,14222pr0002,297,1,f +5586,20678,41,1,f +5586,2300,14,1,f +5586,2301,4,2,f +5586,2302,14,2,f +5586,2302,10,1,f +5586,3011,27,2,f +5586,31059,10,1,f +5586,3437,72,1,f +5586,3437,71,1,f +5586,3437,484,1,f +5586,40666,27,1,f +5586,40666,10,1,f +5586,40666,73,1,f +5586,40666,14,2,f +5586,4657,1,1,f +5586,4658,70,1,f +5586,51269,71,1,f +5586,54043,322,2,f +5586,61649,1,1,f +5586,6474,10,1,f +5586,6510,10,1,f +5586,6510,25,1,f +5586,76371,73,2,f +5586,87084,71,1,f +5586,87084,10,1,f +5586,89158,2,1,f +5586,90265,272,1,f +5586,92011,4,1,f +5586,94883,0,1,f +5586,98215,4,1,f +5586,98218,322,2,f +5586,98223,27,1,f +5586,98225,484,2,f +5586,98233,70,1,f +5587,2412b,15,1,f +5587,2420,0,2,f +5587,2446,15,1,f +5587,2447,33,1,f +5587,2452,0,2,f +5587,3023,0,4,f +5587,3034,0,1,f +5587,3070bp06,15,1,f +5587,3070bpc2,15,1,f +5587,3298p90,15,1,f +5587,3626apr0001,14,1,f +5587,3838,0,1,f +5587,3839b,0,1,f +5587,3957a,36,2,f +5587,4081b,0,2,f +5587,4276b,0,2,f +5587,4590,0,2,f +5587,4598,15,1,f +5587,4740,33,4,f +5587,4859,15,2,f +5587,4859,0,2,f +5587,970c00,0,1,f +5587,973p6bc02,15,1,f +5588,85543,15,4,f +5588,85544,15,4,f +5588,85545,15,4,f +5588,85546,15,4,f +5589,87837,0,2,f +5589,87839,0,4,f +5589,87840,212,4,f +5589,87844,0,2,f +5589,87848,272,2,f +5589,88522,1,1,f +5589,89079,212,4,f +5589,89469,1,1,f +5593,723,80,4,f +5596,2343,14,1,f +5596,2413,7,1,f +5596,2432,0,1,f +5596,2432,1,1,f +5596,2437,41,1,f +5596,2446px6,1,1,f +5596,2447,41,1,f +5596,2456px1,15,1,f +5596,2508,0,1,f +5596,2926,7,1,f +5596,298c03,0,2,f +5596,3003px2,15,1,f +5596,3009pb024,15,2,f +5596,3010pb003,15,1,f +5596,30187c01,0,1,f +5596,3022,0,1,f +5596,30235,0,1,f +5596,3068bpx22,15,1,f +5596,3070b,46,1,f +5596,3070b,36,1,f +5596,3183c,15,1,f +5596,3297px9,15,1,f +5596,3300,0,1,f +5596,3626bp04,14,1,f +5596,3626bp05,14,1,f +5596,3641,0,2,f +5596,3710,4,1,f +5596,3829c01,1,1,f +5596,4083,0,1,f +5596,4485,4,1,f +5596,4624,7,2,f +5596,4865a,0,1,f +5596,6014,15,4,f +5596,6015,0,4,f +5596,970c00,4,1,f +5596,970c00,1,1,f +5596,973pr1156c01,1,1,f +5596,973px36c01,4,1,f +5597,2412b,42,4,f +5597,2440,0,1,f +5597,2444,7,4,f +5597,2446px5,2,1,f +5597,2447,0,1,f +5597,2452,0,1,f +5597,2540,7,3,f +5597,2569,42,1,f +5597,2877,4,2,f +5597,2994,14,4,f +5597,3003,14,1,f +5597,3004,7,2,f +5597,3009,0,2,f +5597,3020,0,3,f +5597,3022,7,2,f +5597,3030,4,1,f +5597,3039,0,2,f +5597,3039,4,4,f +5597,3040b,0,2,f +5597,3068b,7,1,f +5597,3298pb016,0,1,f +5597,3626bp7c,14,1,f +5597,3710,0,1,f +5597,3749,7,4,f +5597,3829c01,14,1,f +5597,3937,0,1,f +5597,3938,4,2,f +5597,4081b,0,4,f +5597,4085c,14,4,f +5597,4276b,0,1,f +5597,4466,383,1,f +5597,4467,383,1,f +5597,4871,0,3,f +5597,6019,4,1,f +5597,6070,42,1,f +5597,6141,7,4,f +5597,6141,42,4,f +5597,6578,0,4,f +5597,970x024,0,1,f +5597,973p8ac01,0,1,f +5599,44033,135,2,f +5599,60176,72,2,f +5599,60894,72,1,f +5599,60896,27,2,f +5599,60899,27,2,f +5599,60901,42,1,f +5599,60903,27,1,f +5599,60930,135,1,f +5599,62386,72,2,f +5601,30410,0,1,f +5601,3626cpr1313,78,1,f +5601,93231,70,1,f +5601,970c00pr0747,70,1,f +5601,973pr2812c01b,272,1,f +5602,11055,15,2,f +5602,11203,0,3,f +5602,11211,19,1,f +5602,11253,297,1,f +5602,11253,297,1,t +5602,11477,0,2,f +5602,11477,15,4,f +5602,15068,0,2,f +5602,18972,40,1,f +5602,18974,0,2,f +5602,18974,15,2,f +5602,18975,72,2,f +5602,18976,0,4,f +5602,18977,0,4,f +5602,18978a,0,4,t +5602,18978b,0,4,f +5602,18980,0,1,f +5602,18980,15,1,f +5602,24299,0,1,f +5602,24307,0,1,f +5602,24309,0,2,f +5602,2431,4,1,f +5602,2431,0,2,f +5602,2431,15,1,f +5602,2446,1,1,f +5602,2447,47,1,t +5602,2447,47,1,f +5602,3001,14,1,f +5602,3002,4,1,f +5602,30029,0,1,f +5602,3004,0,4,f +5602,3004,15,4,f +5602,3010,4,2,f +5602,3020,1,5,f +5602,3021,71,1,f +5602,3022,1,1,f +5602,3023,4,7,f +5602,3023,15,4,f +5602,3024,15,1,t +5602,3024,15,2,f +5602,3031,71,1,f +5602,30357,4,2,f +5602,3068b,4,1,f +5602,3069b,15,8,f +5602,3069b,0,5,f +5602,3070b,15,1,t +5602,3070b,15,2,f +5602,3070b,70,1,t +5602,3070b,70,1,f +5602,3070bpr0162,4,1,t +5602,3070bpr0162,4,2,f +5602,3460,4,2,f +5602,3623,15,2,f +5602,3623,4,2,f +5602,3626cpr1147,14,1,f +5602,3666,15,3,f +5602,3666,0,2,f +5602,3678b,4,1,f +5602,3710,0,2,f +5602,3749,19,4,f +5602,3795,0,2,f +5602,3829c01,4,1,f +5602,3957a,71,2,f +5602,4006,0,1,f +5602,48336,0,2,f +5602,4865a,0,2,f +5602,50949,0,1,f +5602,54200,15,1,t +5602,54200,0,1,t +5602,54200,15,2,f +5602,54200,0,2,f +5602,60478,15,2,f +5602,6141,14,1,t +5602,6141,14,8,f +5602,63864,15,2,f +5602,64567,297,1,f +5602,64567,297,1,t +5602,75873stk01,9999,1,f +5602,87079,15,1,f +5602,87609,0,1,f +5602,88930,15,1,f +5602,92946,0,4,f +5602,92946,4,2,f +5602,93273,72,1,f +5602,93606,15,2,f +5602,93609,0,1,t +5602,93609,0,2,f +5602,970c00,15,1,f +5602,973pr3287c01,15,1,f +5602,99206,71,3,f +5602,99207,15,8,f +5602,99780,0,2,f +5604,3004,15,1,f +5604,3022,0,2,f +5604,3023,15,2,f +5604,3024,36,2,f +5604,3034,0,1,f +5604,3623,4,2,f +5604,3626bpr0001,14,1,f +5604,3710,4,3,f +5604,3788,4,1,f +5604,3823,41,1,f +5604,3829c01,4,1,f +5604,3834,15,1,f +5604,4070,15,2,f +5604,4083,15,1,f +5604,4211,4,1,f +5604,4600,0,2,f +5604,6014a,15,4,f +5604,6015,0,4,f +5604,6141,33,2,f +5604,6141,46,2,f +5604,970c00,0,1,f +5604,973p21c01,0,1,f +5606,3002a,1,1,f +5606,3003,4,1,f +5606,3003,0,5,f +5606,3004,0,2,f +5606,3004,1,1,f +5606,3005,0,2,f +5606,3009,0,1,f +5606,3010,0,6,f +5606,3021,0,2,f +5606,3023,14,6,f +5606,3031,4,1,f +5606,3032,0,1,f +5606,3036,0,1,f +5606,3039,0,5,f +5606,3040a,0,2,f +5606,3045,0,4,f +5606,3068b,0,3,f +5606,3068b,4,2,f +5606,3069b,0,4,f +5606,3069b,14,6,f +5606,3298,1,1,f +5606,3612,4,2,f +5606,3613,4,2,f +5606,3614a,14,2,f +5606,3626a,4,5,f +5606,3626a,0,4,f +5606,3633,0,1,f +5606,3633,4,2,f +5606,3741,2,2,f +5606,3742,4,2,t +5606,3742,4,6,f +5606,685p01,14,1,f +5606,792c03,4,1,f +5606,x196,0,1,f +5607,122c01,0,2,f +5607,3003,15,3,f +5607,3004,1,6,f +5607,3004,4,16,f +5607,3004,14,5,f +5607,3005,4,2,f +5607,3010,4,4,f +5607,3010,14,3,f +5607,3020,1,2,f +5607,3021,1,1,f +5607,3022,0,1,f +5607,3023,4,3,f +5607,3023,14,1,f +5607,3024,46,2,f +5607,3034,0,1,f +5607,3035,1,1,f +5607,3069b,7,5,f +5607,3069bpr0099,15,6,f +5607,3297,1,6,f +5607,3298,1,6,f +5607,3299,1,1,f +5607,3300,1,1,f +5607,3358,0,2,f +5607,3359,0,2,f +5607,3460,4,1,f +5607,3497,7,1,f +5607,3622,14,2,f +5607,3622,4,11,f +5607,3623,4,2,f +5607,3624,0,1,f +5607,3626bpr0001,14,1,f +5607,3641,0,4,f +5607,3660,4,2,f +5607,3710,4,4,f +5607,3747b,4,1,f +5607,3788,4,1,f +5607,3795,4,2,f +5607,3821,14,1,f +5607,3822,14,1,f +5607,3823,47,1,f +5607,3829c01,4,1,f +5607,3958,1,1,f +5607,4070,14,2,f +5607,4079,14,1,f +5607,4211,4,1,f +5607,4213,14,1,f +5607,4214,14,1,f +5607,4345ap03,14,2,f +5607,4346p03,14,2,f +5607,4347,15,2,f +5607,73194c01,15,1,f +5607,970c00,0,1,f +5607,973pb0035c01,4,1,f +5609,2412b,0,1,f +5609,2436,7,1,f +5609,2540,0,1,f +5609,30027b,7,4,f +5609,30028,0,4,f +5609,3004,14,2,f +5609,3020,8,2,f +5609,3021,14,2,f +5609,3021,0,2,f +5609,3023,47,2,f +5609,3023,14,2,f +5609,3062b,7,2,f +5609,3665,7,2,f +5609,3795,8,1,f +5609,41855,14,1,f +5609,4589,7,2,f +5609,4600,0,2,f +5609,6141,46,1,t +5609,6141,36,1,t +5609,6141,36,1,f +5609,6141,46,2,f +5611,132a,7,4,f +5611,3035a,15,1,f +5611,650,79,1,f +5611,7039,4,4,f +5611,7049a,15,2,f +5612,2346,0,4,f +5612,2446,15,2,f +5612,2447,41,2,f +5612,2456,1,2,f +5612,2456,15,2,f +5612,2456,4,2,f +5612,2493b,4,4,f +5612,2494,47,4,f +5612,2577,4,8,f +5612,3001,4,6,f +5612,3001,15,8,f +5612,3001,0,4,f +5612,3001,1,6,f +5612,3002,4,4,f +5612,3002,0,2,f +5612,3002,15,6,f +5612,3002,1,4,f +5612,3003,15,12,f +5612,3003,14,8,f +5612,3003,4,8,f +5612,3003,0,6,f +5612,3003,1,8,f +5612,3004,1,14,f +5612,3004,14,14,f +5612,3004,4,14,f +5612,3004,15,24,f +5612,3004,0,10,f +5612,3005,14,16,f +5612,3005,4,16,f +5612,3005,1,16,f +5612,3005,0,12,f +5612,3005,15,24,f +5612,3008,4,2,f +5612,3008,15,4,f +5612,3008,1,2,f +5612,3009,4,4,f +5612,3009,15,12,f +5612,3009,1,4,f +5612,3010,1,16,f +5612,3010,0,10,f +5612,3010,4,16,f +5612,3010,14,6,f +5612,3010,15,24,f +5612,3010p08,1,3,f +5612,3010p08,4,3,f +5612,3010p09,4,3,f +5612,3010p09,1,3,f +5612,3020,4,4,f +5612,3020,15,6,f +5612,3020,1,4,f +5612,3028,15,1,f +5612,3030,15,1,f +5612,3030,1,1,f +5612,3030,4,1,f +5612,3032,15,1,f +5612,3032,4,1,f +5612,3032,1,1,f +5612,3034,15,4,f +5612,3034,4,4,f +5612,3034,1,4,f +5612,3035,4,1,f +5612,3035,15,1,f +5612,3035,1,1,f +5612,3039,1,4,f +5612,3039,4,6,f +5612,3039,0,4,f +5612,3039,15,4,f +5612,3039p11,14,2,f +5612,3040b,1,4,f +5612,3040b,15,4,f +5612,3040b,4,6,f +5612,3040b,0,4,f +5612,3062b,15,12,f +5612,3062b,33,6,f +5612,3062b,14,6,f +5612,3081cc01,4,4,f +5612,3135,4,2,f +5612,3137c01,0,4,f +5612,3149c01,4,6,f +5612,3183a,4,6,f +5612,3184,4,6,f +5612,3245bpx8,4,4,f +5612,3297,4,36,f +5612,3298,4,18,f +5612,3299,4,10,f +5612,3300,4,6,f +5612,3307,4,2,f +5612,3307,15,2,f +5612,3308,4,2,f +5612,3308,15,2,f +5612,3403c01,4,2,f +5612,3460,4,2,f +5612,3460,1,2,f +5612,3460,15,4,f +5612,3471,2,6,f +5612,3483,0,8,f +5612,3581,15,8,f +5612,3582,4,8,f +5612,3622,1,6,f +5612,3622,0,4,f +5612,3622,15,14,f +5612,3622,4,6,f +5612,3624,0,2,f +5612,3625,0,4,f +5612,3629,7,2,f +5612,3641,0,8,f +5612,3660,15,4,f +5612,3660,1,4,f +5612,3660,4,4,f +5612,3660,0,4,f +5612,3665,1,4,f +5612,3665,4,6,f +5612,3665,15,4,f +5612,3665,0,4,f +5612,3666,1,2,f +5612,3666,4,2,f +5612,3666,15,4,f +5612,3747b,4,2,f +5612,3795,1,2,f +5612,3795,15,4,f +5612,3795,4,2,f +5612,3811,2,2,f +5612,3823,47,6,f +5612,3834,0,2,f +5612,3853,4,12,f +5612,3854,14,16,f +5612,3855,47,4,f +5612,3856,2,16,f +5612,3861b,4,2,f +5612,3898,15,2,f +5612,3901,0,2,f +5612,3941,15,12,f +5612,4207,14,2,f +5612,4286,4,4,f +5612,4287,4,4,f +5612,4345b,14,2,f +5612,4346p03,14,2,f +5612,4485,1,2,f +5612,4530,4,2,f +5612,4530,0,4,f +5612,47899c01,4,2,f +5612,6007,8,2,f +5612,7039,4,12,f +5612,7049b,0,6,f +5612,73312,4,2,f +5612,970c00,0,4,f +5612,970c00,1,6,f +5612,970c00,15,8,f +5612,970c00,4,6,f +5612,973c01,15,6,f +5612,973c18,0,4,f +5612,973p01c01,15,2,f +5612,973p13c01,4,2,f +5612,973p71c01,15,2,f +5612,973pb0079c01,0,2,f +5612,973pb0201c01,15,4,f +5612,973px3c01,15,2,f +5613,3004,0,8,f +5613,3004,15,1,f +5613,3004,7,10,f +5613,3005,7,20,f +5613,3005,0,12,f +5613,3008,7,2,f +5613,3010,0,1,f +5613,3020,0,2,f +5613,3023,15,1,f +5613,3023,0,6,f +5613,3024,7,2,f +5613,3024,0,16,f +5613,3032,0,3,f +5613,3062b,0,6,f +5613,3315,0,2,f +5613,3460,7,2,f +5613,3460,0,2,f +5613,3597,0,2,f +5613,3622,7,4,f +5613,3622,0,3,f +5613,3623,0,2,f +5613,3626apr0001,14,4,f +5613,3660,0,2,f +5613,3665,0,2,f +5613,3666,0,11,f +5613,3673,7,1,f +5613,3700,0,1,f +5613,3700,7,2,f +5613,3710,0,2,f +5613,3749,7,1,f +5613,3795,0,1,f +5613,3830,7,1,f +5613,3830,0,1,f +5613,3831,7,1,f +5613,3831,0,1,f +5613,3832,2,2,f +5613,3832,7,2,f +5613,3832,0,1,f +5613,3844,8,2,f +5613,3846p4h,7,1,f +5613,3847a,8,2,f +5613,3848,0,1,f +5613,3876,8,1,f +5613,3896,0,1,f +5613,3957a,0,2,f +5613,3958,0,1,f +5613,4070,0,10,f +5613,4081a,0,3,f +5613,4085a,7,2,f +5613,4085a,0,2,f +5613,4185,7,1,f +5613,4207,6,1,f +5613,4265a,7,1,t +5613,4265a,7,1,f +5613,4274,7,1,f +5613,4274,7,1,t +5613,4444,0,2,f +5613,4444,7,3,f +5613,4444p02,7,1,f +5613,4460a,0,6,f +5613,4488,0,4,f +5613,4489a,6,4,f +5613,4490,0,2,f +5613,4491a,4,1,f +5613,4497,6,4,f +5613,4498,6,1,f +5613,4499,6,1,f +5613,4503,8,1,f +5613,56823c50,0,1,f +5613,75998pr0007,15,1,f +5613,87692,4,1,f +5613,87693,4,1,t +5613,87694,4,1,t +5613,970x026,1,4,f +5613,973p40c03,4,1,f +5613,973p42c01,4,3,f +5614,10888,71,1,f +5614,12053,15,1,f +5614,12057,15,1,f +5614,12061,484,1,f +5614,12602,14,5,f +5614,12651,212,2,f +5614,13355,0,1,f +5614,14013,71,1,f +5614,15994,484,1,f +5614,16874,15,3,f +5614,17744,72,1,f +5614,23230,25,1,f +5614,3011,10,1,f +5614,31022,15,3,f +5614,31023,15,1,f +5614,31041,5,1,f +5614,31066,1,1,f +5614,31110,4,8,f +5614,3437,10,2,f +5614,3437,14,10,f +5614,3437,4,4,f +5614,3437,484,4,f +5614,3437,27,8,f +5614,40648,4,1,f +5614,40666,10,3,f +5614,44524,10,1,f +5614,44524,72,2,f +5614,44524,4,2,f +5614,47448,4,1,f +5614,47451,72,1,f +5614,47510pr0004,4,1,f +5614,47511pr0001,15,1,f +5614,51260,4,3,f +5614,51261,4,3,f +5614,51262,72,1,f +5614,51262,70,2,f +5614,51269,71,1,f +5614,51704,4,2,f +5614,58057pr01,19,1,f +5614,58086,70,1,f +5614,61310,72,2,f +5614,61649,4,1,f +5614,61896,484,4,f +5614,63871,14,10,f +5614,6497,15,2,f +5614,6510,10,2,f +5614,6510,14,1,f +5614,6510,25,1,f +5614,75115pr0009,378,1,f +5614,75121,212,1,f +5614,75723,15,1,f +5614,76371,4,9,f +5614,87321,2,2,f +5614,87322,4,2,f +5614,87651,308,2,f +5614,87654,14,2,f +5614,87971,1,1,f +5614,88360,28,1,f +5614,88379,70,1,f +5614,89690,14,1,f +5614,92328,92,2,f +5614,92938,1,1,f +5614,98459,70,5,f +5614,98460,70,6,f +5615,11153,4,2,f +5615,11153,15,2,f +5615,11153,14,6,f +5615,2420,4,2,f +5615,2431,15,2,f +5615,2540,72,1,f +5615,3010,4,1,f +5615,3020,14,4,f +5615,3021,72,3,f +5615,3021,14,4,f +5615,3022,14,2,f +5615,3022,72,2,f +5615,3023,15,2,f +5615,3023,4,4,f +5615,3024,14,1,t +5615,3024,14,2,f +5615,3032,0,1,f +5615,3034,0,2,f +5615,3040b,14,2,f +5615,30414,0,2,f +5615,30663,0,1,f +5615,3068b,14,2,f +5615,3069b,14,4,f +5615,32123b,71,4,f +5615,32123b,71,1,t +5615,3665,15,2,f +5615,3666,4,1,f +5615,3701,14,4,f +5615,3707,0,2,f +5615,3710,71,2,f +5615,3713,71,4,f +5615,3713,71,1,t +5615,3795,4,1,f +5615,4081b,71,2,f +5615,4162,14,1,f +5615,41769,15,1,f +5615,41770,15,1,f +5615,4282,0,1,f +5615,4287,14,2,f +5615,4865a,0,2,f +5615,48729b,71,1,f +5615,48729b,71,1,t +5615,51739,15,1,f +5615,54200,15,1,t +5615,54200,15,4,f +5615,54200,14,1,t +5615,54200,36,1,t +5615,54200,14,2,f +5615,54200,47,1,t +5615,54200,47,2,f +5615,54200,36,2,f +5615,55982,71,4,f +5615,58090,0,4,f +5615,61409,14,4,f +5615,6141,71,1,t +5615,6141,71,4,f +5615,6231,4,2,f +5615,99780,72,4,f +5615,99781,71,4,f +5619,2362a,40,2,f +5619,2412b,71,2,f +5619,2412b,4,3,f +5619,2419,72,2,f +5619,2431,72,2,f +5619,2431,14,1,f +5619,2431,71,2,f +5619,2432,14,1,f +5619,2436,71,4,f +5619,2446,4,2,f +5619,2447,40,2,f +5619,2447,40,1,t +5619,2610,14,2,f +5619,2780,0,2,f +5619,2780,0,1,t +5619,2921,14,2,f +5619,2926,0,4,f +5619,3001,71,1,f +5619,3002,14,1,f +5619,3004,0,1,f +5619,30043,71,1,f +5619,3005,4,2,f +5619,3005,0,2,f +5619,3009,14,1,f +5619,3009,4,2,f +5619,3009,0,1,f +5619,3010,14,5,f +5619,3010,72,1,f +5619,3020,14,3,f +5619,3021,4,1,f +5619,3021,14,2,f +5619,3022,14,1,f +5619,3023,4,2,f +5619,3024,182,2,f +5619,3031,14,1,f +5619,3032,72,2,f +5619,3034,72,1,f +5619,3036,72,1,f +5619,30363,72,1,f +5619,30377,71,2,f +5619,30377,71,1,t +5619,3040b,0,2,f +5619,30414,0,2,f +5619,30553,71,2,f +5619,30592,71,2,f +5619,3069b,36,4,f +5619,3069b,0,2,f +5619,3069b,4,4,f +5619,3070b,14,1,t +5619,3070b,14,2,f +5619,32028,14,2,f +5619,32449,71,1,f +5619,3622,14,2,f +5619,3623,4,2,f +5619,3665,72,4,f +5619,3666,4,2,f +5619,3666,14,3,f +5619,3666,72,7,f +5619,3701,14,2,f +5619,3709,0,4,f +5619,3710,71,2,f +5619,3710,14,3,f +5619,3710,72,1,f +5619,3794b,72,2,f +5619,3829c01,71,2,f +5619,3899,4,1,f +5619,4032a,4,2,f +5619,4079,4,1,f +5619,4079,0,2,f +5619,41769,4,1,f +5619,41770,4,1,f +5619,42022,0,2,f +5619,4282,72,1,f +5619,4286,14,2,f +5619,43722,72,1,f +5619,43723,72,1,f +5619,44301a,0,2,f +5619,44302a,72,2,f +5619,44567a,14,2,f +5619,44568,71,1,f +5619,44570,72,1,f +5619,4488,0,2,f +5619,4519,71,2,f +5619,4623,0,2,f +5619,50745,72,2,f +5619,52031,14,1,f +5619,52031,4,1,f +5619,54200,14,2,f +5619,54200,182,2,f +5619,54200,72,1,t +5619,54200,72,2,f +5619,54200,4,1,t +5619,54200,46,2,f +5619,54200,46,1,t +5619,54200,14,1,t +5619,54200,182,1,t +5619,54200,4,2,f +5619,58176,182,2,f +5619,58181,40,1,f +5619,6014b,71,10,f +5619,60700,0,10,f +5619,6112,4,2,f +5619,61409,4,2,f +5619,61409,14,2,f +5619,6141,4,8,f +5619,6141,4,2,t +5619,6180,71,1,f +5619,6231,0,4,f +5619,63864,4,2,f +5619,64453,40,1,f +5619,6636,0,1,f +5619,6636,4,1,f +5619,6636,14,9,f +5619,85970,14,2,f +5619,85984,72,2,f +5619,85984,14,2,f +5619,87079,14,1,f +5619,87552,40,2,f +5619,87609,14,1,f +5619,87620,14,2,f +5619,88930,14,1,f +5619,92339,72,1,f +5619,92593,0,2,f +5619,92710c02,15,1,f +5621,3004,15,1,f +5621,33051,10,2,f +5621,33057,450,2,f +5621,3741,2,2,f +5621,3957a,15,1,f +5621,6255,2,1,f +5621,6255,10,1,f +5621,6256,15,1,f +5621,6796,100,2,f +5623,46281,230,1,f +5623,clikits037,29,1,f +5623,clikits081,73,1,f +5623,clikits084,230,1,f +5624,13965,70,1,f +5624,2412b,72,2,f +5624,2423,2,2,f +5624,3004,19,2,f +5624,3020,27,2,f +5624,3022,0,1,f +5624,3023,182,2,f +5624,33051,4,1,f +5624,33057,484,1,f +5624,33078,4,1,f +5624,3899,45,2,f +5624,6256,191,1,f +5624,6256,191,1,t +5624,87079,26,1,f +5624,98138pr0018,84,2,f +5625,3001,0,1,f +5625,3004,14,8,f +5625,3004,0,5,f +5625,3005,14,2,f +5625,3008,0,1,f +5625,3009,1,1,f +5625,3010,0,2,f +5625,3010,15,1,f +5625,3020,0,1,f +5625,3020,14,2,f +5625,3020,7,2,f +5625,3021,14,2,f +5625,3021,4,4,f +5625,3022,4,2,f +5625,3022,7,1,f +5625,3022,14,1,f +5625,3023,7,1,f +5625,3023,4,2,f +5625,3023,14,8,f +5625,3023,1,2,f +5625,3023,0,7,f +5625,3024,7,4,f +5625,3031,14,4,f +5625,3032,1,1,f +5625,3034,14,3,f +5625,3065,36,2,f +5625,3068b,0,1,f +5625,3069b,14,2,f +5625,3127,4,2,f +5625,3460,7,1,f +5625,3460,15,1,f +5625,3460,14,2,f +5625,3460,0,2,f +5625,3482,7,5,f +5625,3622,7,1,f +5625,3622,14,2,f +5625,3622,1,2,f +5625,3623,7,5,f +5625,3623,1,4,f +5625,3623,4,6,f +5625,3623,0,4,f +5625,3634,0,5,f +5625,3647,7,7,f +5625,3648a,7,3,f +5625,3650a,7,4,f +5625,3651,7,4,f +5625,3660,14,4,f +5625,3665,14,2,f +5625,3666,0,5,f +5625,3666,1,2,f +5625,3666,14,2,f +5625,3673,7,3,f +5625,3700,7,1,f +5625,3700,0,6,f +5625,3700,14,2,f +5625,3701,1,2,f +5625,3701,7,2,f +5625,3701,0,6,f +5625,3702,0,1,f +5625,3702,14,2,f +5625,3703,0,4,f +5625,3704,0,10,f +5625,3705,0,15,f +5625,3706,0,5,f +5625,3707,0,1,f +5625,3708,0,4,f +5625,3709,0,1,f +5625,3709,14,3,f +5625,3710,14,6,f +5625,3710,7,1,f +5625,3710,0,8,f +5625,3710,4,2,f +5625,3713,7,24,f +5625,3737,0,2,f +5625,3738,14,1,f +5625,3738,0,1,f +5625,3743,7,1,f +5625,3749,7,5,f +5625,3795,7,2,f +5625,3832,14,2,f +5625,3895,14,4,f +5625,3895,4,2,f +5625,4143,7,5,f +5625,4185,7,3,f +5625,4261,7,2,f +5625,4262,7,3,f +5625,4263,7,3,f +5625,4265a,7,13,f +5625,4273b,7,24,f +5625,4273b,7,1,t +5625,4274,7,8,f +5625,4275a,4,2,f +5625,4275a,14,4,f +5625,4275a,0,2,f +5625,4276a,0,2,f +5625,4276a,4,2,f +5625,4276a,14,4,f +5625,4286,0,2,f +5625,4459,0,18,f +5625,71509,0,1,f +5625,73071,7,1,f +5625,9244,7,1,f +5625,rb00164,0,2,f +5626,3001,4,1,f +5626,3022,4,1,f +5626,3023,2,1,f +5626,3039,4,2,f +5626,3660,4,2,f +5626,6141,14,1,f +5629,12041,15,1,f +5629,13246,1,1,f +5629,15613,71,1,f +5629,3011,10,1,f +5629,3437,484,1,f +5629,3437,27,1,f +5629,3437,14,2,f +5629,3437,2,1,f +5629,48842,15,1,f +5629,61256,15,1,f +5629,87702,15,1,f +5629,89200,15,1,f +5629,98465,212,1,f +5630,14210,2,1,f +5630,2335px2,1,10,f +5630,2343,47,1,f +5630,2343,14,3,f +5630,2357,15,4,f +5630,2420,1,2,f +5630,2420,0,6,f +5630,2431,7,4,f +5630,2453a,15,5,f +5630,2454a,15,26,f +5630,2489,6,1,f +5630,2540,0,13,f +5630,2543,0,1,f +5630,2543,4,1,f +5630,2555,14,1,f +5630,2561,0,2,f +5630,2562,0,1,f +5630,3003,15,6,f +5630,3003,8,4,f +5630,3004,8,12,f +5630,3004,0,5,f +5630,3004,15,13,f +5630,30041,0,1,f +5630,30042,0,1,f +5630,3005,8,5,f +5630,3005,7,8,f +5630,3005,14,2,f +5630,30055,6,7,f +5630,3006,4,1,f +5630,3007,0,2,f +5630,30072,2,3,f +5630,3008,0,3,f +5630,3008,4,2,f +5630,3009,8,6,f +5630,3009,7,2,f +5630,3009,0,1,f +5630,3010,15,4,f +5630,30101,15,1,f +5630,30102,0,1,f +5630,30136,7,8,f +5630,30136,15,14,f +5630,30137,15,11,f +5630,30137,7,7,f +5630,30137,6,3,f +5630,30140,15,6,f +5630,30145,15,4,f +5630,30153,36,2,f +5630,30156px1,8,10,f +5630,30173a,7,7,f +5630,30174,8,1,f +5630,30175,7,3,f +5630,30175,8,1,f +5630,30176,2,8,f +5630,30177,8,2,f +5630,30177,0,1,f +5630,3020,1,2,f +5630,3020,15,1,f +5630,3022,0,6,f +5630,30223,6,2,f +5630,30224,7,6,f +5630,3023,7,6,f +5630,3023,0,12,f +5630,3023,15,1,f +5630,3024,0,18,f +5630,3032,0,7,f +5630,3035,0,2,f +5630,3036,0,1,f +5630,3037,0,12,f +5630,30385,383,1,f +5630,3039,0,34,f +5630,3040b,7,4,f +5630,3043,0,9,f +5630,3062b,4,24,f +5630,3062b,2,6,f +5630,3062b,0,6,f +5630,3062b,14,2,f +5630,3068bp40,15,1,f +5630,3069b,7,2,f +5630,3070b,14,1,f +5630,3298,0,28,f +5630,3307,0,3,f +5630,3455,15,2,f +5630,3460,7,2,f +5630,3460,0,2,f +5630,3581,0,2,f +5630,3622,0,2,f +5630,3622,15,6,f +5630,3622,4,8,f +5630,3623,0,5,f +5630,3626bpn1,14,1,f +5630,3626bpr0895,15,1,f +5630,3626bpx10,14,1,f +5630,3626bpx5,14,1,f +5630,3626bpx6,14,2,f +5630,3626bpx7,14,2,f +5630,3626bpx9,14,1,f +5630,3633,15,3,f +5630,3659,15,1,f +5630,3666,0,3,f +5630,3666,7,3,f +5630,3684,0,10,f +5630,3700,7,6,f +5630,3706,0,1,f +5630,3710,6,1,f +5630,3710,14,1,f +5630,3710,7,2,f +5630,3710,0,11,f +5630,3710,4,6,f +5630,3713,7,1,f +5630,3794a,7,1,f +5630,3795,4,1,f +5630,3795,7,1,f +5630,3795,0,1,f +5630,3839b,7,1,f +5630,3849,6,5,f +5630,3894,0,2,f +5630,3899,4,1,f +5630,3942b,8,2,f +5630,3957a,0,8,f +5630,3959,0,2,f +5630,4070,4,6,f +5630,4071,0,1,f +5630,4085c,0,8,f +5630,4085c,1,2,f +5630,4085c,7,4,f +5630,4161,0,12,f +5630,4201,4,2,f +5630,4201,0,2,f +5630,4215b,7,3,f +5630,4460a,0,2,f +5630,4490,14,2,f +5630,4491b,1,1,f +5630,4493c01pb02,0,1,f +5630,4497,6,6,f +5630,4589,46,2,f +5630,4611,8,1,f +5630,4733,8,2,f +5630,4738a,6,1,f +5630,4739a,6,1,f +5630,4740,8,4,f +5630,529,334,1,f +5630,57503,334,1,f +5630,57504,334,1,f +5630,57505,334,1,f +5630,57506,334,1,f +5630,6019,4,2,f +5630,6020,6,1,f +5630,6111,4,4,f +5630,6123,8,4,f +5630,6141,7,2,f +5630,6212,4,4,f +5630,6232,7,6,f +5630,6260,15,1,f +5630,6265,15,2,f +5630,6266,15,2,f +5630,6541,4,6,f +5630,6541,7,4,f +5630,6587,8,1,f +5630,6636,7,2,f +5630,970c00,8,2,f +5630,970c00,0,1,f +5630,970c11pb02b,0,1,f +5630,970x023,0,3,f +5630,970x026,4,1,f +5630,973pb0240c03,8,2,f +5630,973pn1c01,1,1,f +5630,973px11c01,0,1,f +5630,973px12c01,1,2,f +5630,973px15c01,4,1,f +5630,973px16c01,1,1,f +5630,x55,47,2,f +5630,x66px2,47,2,f +5631,16542,7,1,f +5631,30277,0,1,f +5631,3031,4,2,f +5631,3037pr0005,4,1,f +5631,3040b,33,2,f +5631,3626bpb0083,14,1,f +5631,3829c01,1,1,f +5631,3834,15,1,f +5631,3835,7,1,f +5631,3962b,0,1,f +5631,4208,0,1,f +5631,4209p70,4,1,f +5631,4349,15,1,f +5631,6014a,15,4,f +5631,6015,0,4,f +5631,6019,15,1,f +5631,970c00,0,1,f +5631,973pb0099c01,0,1,f +5632,3626bpr0772,14,1,f +5632,87990,84,1,f +5632,88646,0,1,f +5632,90397pr0002,15,1,f +5632,970c00pr0210,0,1,f +5632,973pr1759c01,0,1,f +5633,10202,71,3,f +5633,11290,15,1,f +5633,11290,2,2,f +5633,11301,72,3,f +5633,11303,4,3,f +5633,11458,72,1,f +5633,12825,72,2,f +5633,14045,0,2,t +5633,14045,0,3,f +5633,15207,14,8,f +5633,16542,14,1,t +5633,16542,14,1,f +5633,2412b,4,2,f +5633,2412b,71,4,f +5633,2412b,72,16,f +5633,2431,14,6,f +5633,2431,0,1,f +5633,2432,15,1,f +5633,2432,71,1,f +5633,2440,72,1,f +5633,2441,0,1,f +5633,2453a,15,4,f +5633,2456,4,1,f +5633,2465,15,6,f +5633,2569,0,1,f +5633,2569,0,1,t +5633,2584,0,1,f +5633,2585,71,1,f +5633,2639,72,1,f +5633,2654,71,1,f +5633,2780,0,30,f +5633,2877,0,2,f +5633,298c02,71,1,f +5633,3001,14,1,f +5633,3001,0,1,f +5633,3002,71,3,f +5633,3003,2,6,f +5633,3003,28,2,f +5633,3003,1,2,f +5633,3004,14,4,f +5633,3004,15,4,f +5633,3004,2,9,f +5633,3005,15,2,f +5633,3008,2,4,f +5633,3009,15,10,f +5633,3009,14,1,f +5633,3010,15,7,f +5633,3010,2,4,f +5633,30136,72,2,f +5633,30150,70,2,f +5633,3020,14,3,f +5633,3020,2,9,f +5633,3021,15,1,f +5633,3021,4,4,f +5633,3021,0,3,f +5633,3021,72,4,f +5633,3021,71,6,f +5633,3022,4,2,f +5633,3023,15,2,f +5633,3023,72,2,f +5633,3023,47,2,f +5633,3023,2,6,f +5633,30237b,72,1,f +5633,3024,46,2,t +5633,3024,46,4,f +5633,3030,0,1,f +5633,3031,72,1,f +5633,3032,15,1,f +5633,3032,19,4,f +5633,3032,14,1,f +5633,3033,72,1,f +5633,3034,72,1,f +5633,3035,71,1,f +5633,30355,71,1,f +5633,30356,71,1,f +5633,30357,72,2,f +5633,30363,14,1,f +5633,30383,15,2,f +5633,3039pr0002,15,1,f +5633,3039pr0005,15,1,f +5633,3039pr0013,15,1,f +5633,30565,72,2,f +5633,3062b,70,4,f +5633,3068b,2,3,f +5633,3068b,1,2,f +5633,3068b,28,2,f +5633,3069b,2,1,f +5633,3069b,15,5,f +5633,3069b,82,12,f +5633,3070b,36,4,f +5633,3070b,36,2,t +5633,3070bpr0007,71,1,f +5633,3070bpr0007,71,1,t +5633,32028,71,1,f +5633,32059,72,1,f +5633,32062,4,1,f +5633,32062,4,1,t +5633,32064b,72,3,f +5633,3245c,15,8,f +5633,3298,72,7,f +5633,3460,14,3,f +5633,3460,71,1,f +5633,3460,19,2,f +5633,3460,2,12,f +5633,3623,2,14,f +5633,3623,0,2,f +5633,3624,0,1,f +5633,3626cpr0389,14,1,f +5633,3626cpr0889,14,1,f +5633,3626cpr0891,14,1,f +5633,3626cpr0892,14,1,f +5633,3626cpr0955,14,1,f +5633,3660,14,2,f +5633,3660,15,2,f +5633,3665,72,2,f +5633,3666,2,1,f +5633,3679,71,2,f +5633,3680,4,2,f +5633,3710,15,6,f +5633,3710,14,4,f +5633,3710,19,8,f +5633,3710,71,1,f +5633,3710,70,4,f +5633,3747b,15,4,f +5633,3794b,14,1,f +5633,3795,1,1,f +5633,3795,2,3,f +5633,3795,72,7,f +5633,3795,0,1,f +5633,3829c01,71,3,f +5633,3829c01,15,1,f +5633,3832,71,2,f +5633,3899,4,1,f +5633,3938,71,1,f +5633,3958,72,1,f +5633,3962b,0,1,f +5633,4032a,71,1,f +5633,4079,4,4,f +5633,4079,72,1,f +5633,4150,4,1,f +5633,4162,2,2,f +5633,4162,14,1,f +5633,4162,15,1,f +5633,41854,25,2,f +5633,42022,2,2,f +5633,4274,1,2,f +5633,4274,1,1,t +5633,43121,71,4,f +5633,44126,15,4,f +5633,44302a,0,1,f +5633,44728,0,1,f +5633,4488,71,6,f +5633,4518b,0,1,f +5633,45707b,72,1,f +5633,4600,0,2,f +5633,4623,0,2,f +5633,4624,71,10,f +5633,46667,72,4,f +5633,47457,71,1,f +5633,47720,0,1,f +5633,48336,14,1,f +5633,4865b,72,1,f +5633,4870,71,4,f +5633,4871,71,1,f +5633,50303,0,1,f +5633,50950,71,1,f +5633,50951,0,12,f +5633,54090,72,1,f +5633,54091,72,4,f +5633,54092c02,15,1,f +5633,54094,2,1,f +5633,54095,15,2,f +5633,54701c02,2,1,f +5633,55013,72,1,f +5633,55981,71,2,f +5633,58090,0,2,f +5633,58176,182,2,f +5633,59895,0,10,f +5633,60032,15,2,f +5633,60212,15,2,f +5633,60212,14,4,f +5633,60475b,15,2,f +5633,60479,71,1,f +5633,60479,15,1,f +5633,60483,71,2,f +5633,60601,41,2,f +5633,6091,15,4,f +5633,6112,71,3,f +5633,61409,0,2,f +5633,6141,47,1,f +5633,6141,36,1,t +5633,6141,36,1,f +5633,6141,2,1,t +5633,6141,71,7,f +5633,6141,71,2,t +5633,6141,47,1,t +5633,6141,2,1,f +5633,61483,71,1,f +5633,61487,2,4,f +5633,61487,15,4,f +5633,6179,14,2,f +5633,6191,15,1,f +5633,6191,14,1,f +5633,6215,15,1,f +5633,63868,4,1,f +5633,64450,0,1,f +5633,64644,0,1,f +5633,6636,70,6,f +5633,6636,71,4,f +5633,72475,41,1,f +5633,73983,2,2,f +5633,85543,15,1,f +5633,85974,70,1,f +5633,85984,72,2,f +5633,87079,14,2,f +5633,87083,72,1,f +5633,87552,71,4,f +5633,87580,71,1,f +5633,87580,72,2,f +5633,87580,15,10,f +5633,87617,0,1,f +5633,87618,71,1,f +5633,87926,15,2,f +5633,88930,14,1,f +5633,88930,15,1,f +5633,90258,72,1,f +5633,92280,71,2,f +5633,92582,71,1,f +5633,92585,4,1,f +5633,92593,72,5,f +5633,92715c01,72,1,f +5633,92947,71,1,f +5633,92950,15,3,f +5633,93273,72,1,f +5633,93274,14,3,f +5633,93274,15,2,f +5633,93541,71,1,f +5633,93594,179,12,f +5633,93606,15,1,f +5633,95188,72,2,f +5633,96874,25,1,t +5633,970c00,1,3,f +5633,970c00,71,1,f +5633,970c00,0,1,f +5633,973pr1244c01,73,2,f +5633,973pr1470c01,1,1,f +5633,973pr1576c01,72,1,f +5633,973pr2372c01,15,1,f +5633,98284,0,1,f +5633,99781,71,2,f +5634,2432,4,1,f +5634,3004,4,1,f +5634,3010,14,4,f +5634,3010p15,14,1,f +5634,30182,0,1,f +5634,30262,0,1,f +5634,3037pr0005,14,1,f +5634,3040b,46,2,f +5634,3062b,46,1,f +5634,3062b,0,4,f +5634,3068b,0,1,f +5634,3324c01,7,1,f +5634,3626bp03,14,1,f +5634,3626bp04,14,1,f +5634,3823,41,1,f +5634,3829c01,15,1,f +5634,3836,6,1,f +5634,3837,8,1,f +5634,3901,0,1,f +5634,4080,7,1,f +5634,4485,4,2,f +5634,4600,7,1,f +5634,4740,15,2,f +5634,6014a,14,6,f +5634,6015,0,6,f +5634,6140,0,1,f +5634,970c00,1,2,f +5634,973pr1245c01,1,1,f +5634,973px122c01,1,1,f +5635,15498,0,1,f +5635,3068bpr0010,19,1,f +5635,3626cpr1300,14,1,f +5635,88646,0,1,f +5635,970c00,0,1,f +5635,973pr0652c01,0,1,f +5636,10199,10,1,f +5636,11169,10,2,f +5636,13535,4,1,f +5636,14721,10,1,f +5636,15319,71,1,f +5636,15983,1,1,f +5636,19015,0,1,f +5636,19053,71,1,f +5636,19084,179,1,f +5636,19349,191,1,f +5636,19350,27,1,f +5636,2301,10,4,f +5636,23146,1,1,f +5636,3011,484,2,f +5636,31070,70,1,f +5636,3437,2,1,f +5636,4066,484,5,f +5636,47511pr0003,15,1,f +5636,51703,182,1,f +5636,6510,4,1,f +5636,75115pr0006,73,1,f +5638,14728c30,0,1,f +5638,2412b,15,9,f +5638,2431,71,2,f +5638,2431pr0028,72,1,f +5638,2432,72,1,f +5638,2447,40,1,t +5638,2447,40,1,f +5638,2508,0,1,f +5638,2555,4,5,f +5638,2584,0,1,f +5638,2585,71,1,f +5638,3004,15,1,f +5638,3010,4,2,f +5638,30194,72,1,f +5638,3020,15,2,f +5638,3020,4,4,f +5638,3021,71,1,f +5638,3022,14,1,f +5638,3023,71,5,f +5638,3023,46,1,f +5638,3024,36,2,f +5638,3062b,14,1,f +5638,3069bpr0101,71,1,f +5638,3623,4,2,f +5638,3626bpr0282,14,1,f +5638,3710,4,1,f +5638,3710,72,1,f +5638,3710,15,3,f +5638,3794a,15,1,f +5638,3795,0,1,f +5638,3829c01,14,1,f +5638,3834,80,1,f +5638,3835,0,1,f +5638,3838,14,1,f +5638,3839b,72,2,f +5638,3962b,0,1,f +5638,4070,4,2,f +5638,4085c,4,2,f +5638,43337,4,6,f +5638,4345b,4,2,f +5638,4346,72,2,f +5638,44568,15,2,f +5638,44569,4,2,f +5638,4488,0,6,f +5638,45677,4,2,f +5638,4599a,15,1,f +5638,4599a,14,1,f +5638,48336,71,1,f +5638,4865a,47,1,f +5638,50745,72,6,f +5638,52036,72,1,f +5638,52038,72,1,f +5638,52501,4,4,f +5638,54200,47,2,f +5638,54200,33,4,f +5638,54200,47,1,t +5638,54200,33,1,t +5638,57783,41,1,f +5638,6014b,15,6,f +5638,6015,0,6,f +5638,6019,4,1,f +5638,60849,14,1,f +5638,60849,14,1,t +5638,6141,46,1,f +5638,6141,46,1,t +5638,6158,72,1,f +5638,63082,71,1,f +5638,7942stk01,9999,1,t +5638,970c00,0,1,f +5638,973pr1187c01,0,1,f +5639,2496,0,1,f +5639,2655,14,1,f +5639,3020,1,1,f +5639,3022,1,1,f +5639,3023,1,2,f +5639,3039,47,1,f +5639,3039,4,1,f +5639,4287,4,2,f +5639,6141,34,1,f +5639,6141,36,1,f +5640,2496,0,1,f +5640,3624,0,1,f +5640,3626bpr0386,14,1,f +5640,3626cpr0388,14,1,f +5640,3626cpr0645,14,1,f +5640,3900,15,1,f +5640,42511,1,1,f +5640,62810,0,1,f +5640,86035,320,1,f +5640,970c00,19,1,f +5640,970c00,28,1,f +5640,970c00,0,1,f +5640,973c01,1,1,f +5640,973pr1163c01,272,1,f +5640,973pr1184c01,272,1,f +5642,32039,71,2,f +5642,32062,4,4,f +5642,53562,0,2,f +5642,60176,0,5,f +5642,64275,148,2,f +5642,64727,4,14,f +5642,6553,0,2,f +5642,90607,191,2,f +5642,90609,0,4,f +5642,90611,0,3,f +5642,90616,0,4,f +5642,90625,0,1,f +5642,90638,191,2,f +5642,90639,57,1,f +5642,90639pr0009,0,1,f +5642,90652,57,1,f +5642,90652,191,2,f +5642,92212pat0001,4,2,f +5642,92213,191,1,f +5642,92215,148,2,f +5642,92216,148,1,f +5642,92217,148,4,f +5642,95753pat0001,4,1,f +5643,4692c01,7,1,f +5643,75215,7,1,f +5644,2231,1,1,f +5644,3011,10,1,f +5644,3437,4,1,f +5644,3437,10,1,f +5644,3437,25,1,f +5644,4066,14,1,f +5644,40666,72,1,f +5644,4066pb178,19,2,f +5644,44524,1,1,f +5644,51260,14,1,f +5644,51262,1,1,f +5644,51262,72,1,f +5644,63717,1,1,f +5644,6462,4,1,f +5644,6479,15,1,f +5644,76139,4,1,f +5646,11090,14,8,f +5646,11091,15,2,f +5646,11091,272,2,f +5646,11091,320,4,f +5646,11097,297,1,f +5646,11098,41,1,f +5646,11100,15,2,f +5646,11103,297,1,f +5646,11127,182,2,f +5646,11127,41,1,f +5646,11129pr0002,71,1,f +5646,11153,272,4,f +5646,11153,320,1,f +5646,11302pat0001,36,2,f +5646,11455,0,2,f +5646,11458,72,4,f +5646,11477,14,4,f +5646,12549pr0006,15,1,f +5646,12825,15,4,f +5646,13547,0,2,f +5646,13731,15,2,f +5646,14769,15,2,f +5646,14769,4,1,f +5646,15068,72,2,f +5646,15068,15,4,f +5646,15068,272,8,f +5646,15071,0,1,f +5646,15083pr0002,28,1,f +5646,15090,179,1,f +5646,15091,41,1,f +5646,15092,72,6,f +5646,15100,0,4,f +5646,15303,182,2,f +5646,15400,72,2,f +5646,15461,0,2,f +5646,15571,14,1,f +5646,16768pat0001,4,1,f +5646,16770,182,2,f +5646,2412b,297,2,f +5646,2419,15,1,f +5646,2444,15,4,f +5646,2445,15,1,f +5646,2540,14,2,f +5646,2653,71,2,f +5646,2654,71,2,f +5646,2780,0,12,f +5646,2877,0,1,f +5646,30000,72,1,f +5646,3003,14,1,f +5646,3003,272,2,f +5646,30043,0,2,f +5646,3005,14,2,f +5646,3010,272,4,f +5646,30176,2,1,f +5646,3020,71,4,f +5646,3021,14,2,f +5646,3021,72,2,f +5646,3022,14,2,f +5646,3023,57,6,f +5646,3023,320,2,f +5646,3034,272,1,f +5646,3039,4,1,f +5646,3049b,14,1,f +5646,3062b,36,2,f +5646,3070b,71,2,f +5646,32278,0,2,f +5646,32524,72,4,f +5646,32524,14,2,f +5646,3623,0,4,f +5646,3623,14,2,f +5646,3626cpr1120,19,1,f +5646,3626cpr1124,212,1,f +5646,3626cpr1423,28,1,f +5646,3666,272,2,f +5646,3673,71,10,f +5646,3701,72,2,f +5646,3710,320,2,f +5646,3710,272,5,f +5646,3794b,272,10,f +5646,3795,15,2,f +5646,4032a,72,4,f +5646,4081b,15,2,f +5646,4162,15,2,f +5646,4162,272,2,f +5646,41769,272,1,f +5646,41770,272,1,f +5646,4274,1,8,f +5646,4282,71,1,f +5646,43093,1,2,f +5646,44728,4,4,f +5646,44728,14,1,f +5646,4510,72,2,f +5646,47397,272,1,f +5646,47398,272,1,f +5646,47753,15,1,f +5646,48336,15,1,f +5646,50231,320,1,f +5646,50304,15,1,f +5646,50305,15,1,f +5646,50373,15,1,f +5646,51739,272,3,f +5646,53451,179,2,f +5646,54200,320,2,f +5646,54200,14,2,f +5646,59900,182,1,f +5646,60470a,0,1,f +5646,60477,15,1,f +5646,60478,71,2,f +5646,60479,320,2,f +5646,60484,14,2,f +5646,61409,15,1,f +5646,6141,179,3,f +5646,6141,4,2,f +5646,62462,320,2,f +5646,63864,320,4,f +5646,64567,71,1,f +5646,6636,72,2,f +5646,85984,0,1,f +5646,85984,72,2,f +5646,85984,15,1,f +5646,87747,0,8,f +5646,88072,15,2,f +5646,88072,72,2,f +5646,90194,15,2,f +5646,92280,71,2,f +5646,92593,72,4,f +5646,92692,0,2,f +5646,970c00pr0663,4,2,f +5646,970d00pr0665,28,1,f +5646,973pr2669c01,4,1,f +5646,973pr2672c01,28,1,f +5646,973pr2680c01,4,1,f +5646,98138,41,2,f +5646,98138,182,2,f +5646,98138,179,2,f +5646,98138pr0023,182,1,f +5646,98313,148,2,f +5646,99206,71,1,f +5646,99207,71,2,f +5646,99780,0,2,f +5646,99781,71,5,f +5649,2446,15,2,f +5649,30035,42,1,f +5649,30364,0,1,f +5649,30365,7,1,f +5649,30383,0,2,f +5649,30396,4,1,f +5649,3039px8,8,1,f +5649,3039px9,8,1,f +5649,30540,7,1,f +5649,30541,8,1,f +5649,30542,0,2,f +5649,30554a,8,2,f +5649,30593,0,1,f +5649,3069bp53,0,1,f +5649,3069bp55,8,1,f +5649,3069bpx18,8,1,f +5649,3070bp60,0,2,f +5649,3298px5,379,1,f +5649,3298px6,4,1,f +5649,4150px3,7,1,f +5649,4150px5,15,1,f +5649,4150px8,7,1,f +5649,4150px9,7,1,f +5649,4349,0,2,f +5649,4360,0,1,f +5649,4479,7,1,f +5649,4735,0,2,f +5649,4740,378,2,f +5649,4740,15,2,f +5649,6041,42,1,f +5649,769,61,2,f +5649,rb00167,14,7,f +5651,2339,308,4,f +5651,2340,272,2,f +5651,2343,0,1,f +5651,2357,71,8,f +5651,2412b,25,3,f +5651,2412b,71,11,f +5651,2420,71,10,f +5651,2446,135,1,f +5651,2447,46,1,t +5651,2447,46,1,f +5651,2450,0,2,f +5651,2454a,72,4,f +5651,2465,0,3,f +5651,2540,72,2,f +5651,2555,0,4,f +5651,2654,71,2,f +5651,2654,0,2,f +5651,2730,0,2,f +5651,2921,71,8,f +5651,298c02,4,2,t +5651,298c02,15,6,f +5651,298c02,15,3,t +5651,298c02,4,2,f +5651,3001,0,2,f +5651,3001,70,1,f +5651,3003,0,16,f +5651,3004,4,1,f +5651,3004,0,23,f +5651,3005,182,19,f +5651,3005,71,8,f +5651,3010,70,2,f +5651,30145,0,2,f +5651,30145,71,1,f +5651,30176,2,4,f +5651,3020,0,3,f +5651,3021,25,2,f +5651,3021,72,1,f +5651,3021,0,4,f +5651,3021,4,1,f +5651,3022,72,1,f +5651,3022,71,2,f +5651,3022,25,4,f +5651,3023,15,2,f +5651,3023,1,2,f +5651,3023,25,8,f +5651,3023,0,11,f +5651,3024,46,2,f +5651,3024,36,2,f +5651,3024,71,10,f +5651,3029,72,1,f +5651,3032,72,1,f +5651,3033,72,2,f +5651,30332,135,2,f +5651,30367b,4,1,f +5651,30374,36,6,f +5651,3039,71,1,f +5651,3039,0,3,f +5651,30395,72,1,f +5651,30396,0,1,f +5651,3039pr0014,0,3,f +5651,3040b,308,23,f +5651,3040b,182,45,f +5651,30414,71,2,f +5651,30518,0,1,f +5651,30540,0,4,f +5651,30541,0,4,f +5651,30552,0,1,f +5651,30608,0,1,f +5651,3062b,272,4,f +5651,30663,71,1,f +5651,3068b,71,2,f +5651,3068b,15,2,f +5651,3068b,4,1,f +5651,3069b,15,2,f +5651,3069b,0,2,f +5651,3069bpr0030,15,1,f +5651,3069bpr0070,0,1,f +5651,3070b,15,6,f +5651,3070b,36,2,f +5651,3070b,4,2,f +5651,3070b,4,1,t +5651,3070b,15,1,t +5651,3070b,36,1,t +5651,32000,72,2,f +5651,32002,72,1,t +5651,32002,72,1,f +5651,32013,0,3,f +5651,32054,0,2,f +5651,32062,4,3,f +5651,32064a,4,2,f +5651,32123b,71,1,t +5651,32123b,71,3,f +5651,32126,71,6,f +5651,32449,27,1,f +5651,32476,0,1,f +5651,3308,0,4,f +5651,3460,72,2,f +5651,3460,0,2,f +5651,3460,71,2,f +5651,3622,72,2,f +5651,3623,0,2,f +5651,3623,71,2,f +5651,3626bpr0520,14,1,f +5651,3626bpr0535,14,1,f +5651,3626bpr0540,14,1,f +5651,3626bpr0542,14,1,f +5651,3626bpr0551,14,1,f +5651,3626bpr0554,14,1,f +5651,3660,71,2,f +5651,3660,0,1,f +5651,3665,0,4,f +5651,3666,25,4,f +5651,3666,72,1,f +5651,3673,71,2,f +5651,3673,71,1,t +5651,3678b,0,4,f +5651,3679,71,4,f +5651,3680,0,4,f +5651,3700,72,4,f +5651,3707,0,1,f +5651,3709,71,1,f +5651,3710,71,1,f +5651,3710,25,5,f +5651,3710,0,2,f +5651,3713,4,3,f +5651,3713,4,1,t +5651,3736,71,2,f +5651,3794a,71,4,f +5651,3795,0,3,f +5651,3795,72,2,f +5651,3832,72,1,f +5651,3865,72,2,f +5651,3867,72,1,f +5651,3937,0,1,f +5651,3941,4,1,f +5651,3941,25,1,f +5651,3957a,0,2,f +5651,3957a,42,1,f +5651,3960,0,1,f +5651,3962b,0,1,f +5651,4070,15,4,f +5651,4079b,15,4,f +5651,4081b,0,4,f +5651,41677,4,1,f +5651,41770,80,6,f +5651,4185,27,3,f +5651,41883,40,1,f +5651,41896,27,1,f +5651,4215b,0,1,f +5651,4274,1,2,t +5651,4274,1,4,f +5651,43093,1,6,f +5651,43093,1,1,t +5651,4360,0,1,f +5651,43898,80,1,f +5651,44294,71,1,f +5651,4460b,308,43,f +5651,44675,80,1,f +5651,44728,0,1,f +5651,4515,0,1,f +5651,4519,71,6,f +5651,4588,72,1,f +5651,4593,0,1,t +5651,4623,0,2,f +5651,4623,72,1,f +5651,4740,42,16,f +5651,47847pat0002,57,4,f +5651,47905,0,2,f +5651,48183,71,1,f +5651,48336,15,2,f +5651,4854,0,1,f +5651,4856a,72,1,f +5651,4865a,71,2,f +5651,4871,15,1,f +5651,48729a,135,1,t +5651,48729a,135,2,f +5651,50373,71,2,f +5651,53586,135,2,f +5651,54200,182,13,f +5651,54200,80,1,t +5651,54200,182,1,t +5651,58176,36,3,f +5651,58827,0,8,f +5651,59443,0,1,f +5651,59443,71,2,f +5651,59900,80,2,f +5651,59900,182,2,f +5651,59900,36,4,f +5651,6019,0,2,f +5651,60470a,71,2,f +5651,60470a,15,2,f +5651,60474,71,2,f +5651,60475a,0,2,f +5651,60479,0,2,f +5651,6070,15,1,f +5651,6082,70,2,f +5651,6083,70,3,f +5651,60849,0,2,f +5651,6091,71,2,f +5651,6091,0,4,f +5651,6106,25,4,f +5651,61184,71,6,f +5651,6126a,57,4,f +5651,6134,0,1,f +5651,6141,27,1,f +5651,6141,27,1,t +5651,6141,4,1,f +5651,61482,71,1,f +5651,61485,0,1,f +5651,6153b,272,1,f +5651,6178,0,2,f +5651,6179,0,2,f +5651,6232,72,6,f +5651,6239,72,1,f +5651,62696,308,1,f +5651,62699pr0001,0,1,f +5651,62700,135,2,f +5651,62711,0,1,f +5651,62712,72,1,f +5651,62810,484,1,f +5651,6541,72,2,f +5651,6553,72,3,f +5651,6587,72,7,f +5651,6636,80,2,f +5651,71155,0,1,f +5651,75c25,272,2,f +5651,78c07,80,2,f +5651,78c07,80,2,t +5651,78c11,80,1,f +5651,8637stk01,9999,1,t +5651,8637stk02,9999,1,t +5651,970c00,0,1,f +5651,970c00pr0116,15,1,f +5651,970c00pr0117,25,1,f +5651,970c00pr0118,272,3,f +5651,973pr1383c01,15,1,f +5651,973pr1385c01,25,1,f +5651,973pr1386c01,272,2,f +5651,973pr1387c01,272,1,f +5651,973pr1426c01,0,1,f +5652,22969,80,4,f +5652,2412b,0,4,f +5652,2412b,7,12,f +5652,2420,0,6,f +5652,2420,7,4,f +5652,2431,0,9,f +5652,2444,0,4,f +5652,2445,7,1,f +5652,2476a,1,2,f +5652,2536,7,2,f +5652,2730,0,5,f +5652,2730,7,2,f +5652,2736,7,6,f +5652,2741,0,1,f +5652,2744,0,4,f +5652,2780,0,1,t +5652,2780,0,192,f +5652,2825,0,16,f +5652,2825,1,2,f +5652,2825,14,4,f +5652,2850a,47,10,f +5652,2851,14,10,f +5652,2852,7,1,t +5652,2852,7,10,f +5652,2853,7,4,f +5652,2854,8,4,f +5652,2905,0,12,f +5652,3009,0,2,f +5652,3010,0,2,f +5652,3020,1,1,f +5652,3021,7,5,f +5652,3022,0,1,f +5652,3023,1,2,f +5652,3023,7,8,f +5652,3023,0,11,f +5652,3031,0,2,f +5652,3040b,0,4,f +5652,3068b,0,2,f +5652,3069b,15,2,f +5652,3176,7,9,f +5652,32000,0,15,f +5652,32001,0,5,f +5652,32001,7,1,f +5652,32002,8,1,t +5652,32002,8,18,f +5652,32009,1,2,f +5652,32009,0,7,f +5652,32013,0,16,f +5652,32013,7,16,f +5652,32014,0,4,f +5652,32015,0,2,f +5652,32016,0,2,f +5652,32016,7,2,f +5652,32017,1,2,f +5652,32017,7,1,f +5652,32017,0,8,f +5652,32034,7,4,f +5652,32034,0,27,f +5652,32039,14,4,f +5652,32039,0,12,f +5652,32054,0,24,f +5652,32056,0,8,f +5652,32062,0,54,f +5652,32063,0,9,f +5652,32065,1,2,f +5652,32068,0,8,f +5652,32069,0,4,f +5652,32073,0,20,f +5652,32123b,7,36,f +5652,32123b,7,1,t +5652,32126,7,2,f +5652,32138,0,6,f +5652,32140,0,14,f +5652,32184,0,14,f +5652,32188,0,3,f +5652,32188,80,6,f +5652,32189,0,3,f +5652,32189,80,6,f +5652,32190,80,4,f +5652,32191,80,4,f +5652,32199,179,2,f +5652,32201,179,4,f +5652,32209,0,4,f +5652,32235,179,2,f +5652,32249,0,4,f +5652,32250,0,12,f +5652,32271,0,4,f +5652,32278,0,6,f +5652,32291,0,15,f +5652,32291,7,12,f +5652,32293,0,6,f +5652,32294,0,16,f +5652,32296pr01,0,4,f +5652,32316,0,16,f +5652,32333,47,2,f +5652,32348,0,2,f +5652,3460,0,1,f +5652,3460,7,2,f +5652,3623,7,2,f +5652,3623,0,6,f +5652,3647,7,4,f +5652,3648b,7,2,f +5652,3650c,7,1,f +5652,3666,7,2,f +5652,3666,0,4,f +5652,3700,7,3,f +5652,3700,0,3,f +5652,3701,0,2,f +5652,3702,0,3,f +5652,3703,0,8,f +5652,3705,0,40,f +5652,3706,0,10,f +5652,3707,0,12,f +5652,3708,0,5,f +5652,3709,0,2,f +5652,3709,7,1,f +5652,3710,0,1,f +5652,3710,7,1,f +5652,3713,7,1,t +5652,3713,7,22,f +5652,3738,0,1,f +5652,3738,7,1,f +5652,3743,7,8,f +5652,3749,7,34,f +5652,3894,0,8,f +5652,3895,0,7,f +5652,3941,7,1,f +5652,4019,7,4,f +5652,4162,0,4,f +5652,4185,7,1,f +5652,4274,7,28,f +5652,4274,7,1,t +5652,4519,0,49,f +5652,6141,0,2,f +5652,6141,36,1,t +5652,6141,36,2,f +5652,6141,0,1,t +5652,6536,0,51,f +5652,6536,14,2,f +5652,6538b,0,12,f +5652,6538b,7,6,f +5652,6541,0,8,f +5652,6558,0,66,f +5652,6572,14,1,f +5652,6573,8,1,f +5652,6587,8,14,f +5652,6589,7,3,f +5652,6628,0,8,f +5652,6629,0,4,f +5652,6630,0,3,f +5652,6632,14,2,f +5652,6632,1,2,f +5652,6632,0,40,f +5652,75535,0,14,f +5652,76320,41,2,f +5652,76537,14,4,f +5652,78c05,179,4,f +5652,78c07,179,2,f +5652,78c09,179,8,f +5652,78c11,179,8,f +5652,78c18,179,6,f +5652,9244,7,5,f +5652,rb00168,0,2,t +5654,32062,0,1,t +5654,32062,0,1,f +5654,32073,71,1,f +5654,32174,272,4,f +5654,32174,0,2,f +5654,32523,272,1,f +5654,3706,0,1,f +5654,41668,272,2,f +5654,43093,1,1,t +5654,43093,1,1,f +5654,44807,272,1,f +5654,44817,135,1,f +5654,47300,72,4,f +5654,50899pr0002,179,1,f +5654,50900,72,1,f +5654,50901,72,1,f +5654,50903,14,1,f +5654,6536,0,1,f +5654,6632,25,4,f +5655,3626bpr0951,14,1,f +5655,88646,0,1,f +5655,93216,272,1,f +5655,970c00pr0320,15,1,f +5655,973pr2032c01,15,1,f +5655,98385,19,1,f +5658,11055pr0013,15,1,f +5658,2446,15,1,f +5658,2447,82,1,f +5658,30374,15,1,f +5658,3626cpr1841,14,1,f +5658,3838,15,1,f +5658,88646,0,1,f +5658,970c00pr0999,15,1,f +5658,973pr3227c01,15,1,f +5659,11197,85,1,f +5659,11197,322,1,f +5659,11344pb01,14,1,f +5659,11344pb01,4,1,f +5659,12600c01,191,1,f +5659,3011,5,1,f +5659,31110,85,1,f +5659,31110,10,1,f +5659,31110,25,1,f +5659,31110,1,1,f +5659,31110pb070,14,1,f +5659,31110pb071,27,1,f +5659,31110pb072,25,1,f +5659,98223,27,2,f +5660,2335,15,4,f +5660,3022,0,2,f +5660,3023,0,4,f +5660,3040b,0,2,f +5660,3062b,1,1,f +5660,3626apr0001,14,2,f +5660,3633,0,2,f +5660,3665,0,2,f +5660,3666,15,2,f +5660,3794a,1,1,f +5660,3794a,0,4,f +5660,3795,1,1,f +5660,3844,8,1,f +5660,3846p4g,7,1,f +5660,3846p4h,7,1,f +5660,3848,6,1,f +5660,3849,6,1,f +5660,3896,8,1,f +5660,4495b,4,1,f +5660,4497,6,1,f +5660,4524,1,1,f +5660,4854,1,1,f +5660,4855,1,2,f +5660,4859,15,2,f +5660,970x026,4,2,f +5660,973p40c03,4,1,f +5660,973px138c01,4,1,f +5661,2446,15,2,f +5661,2446,4,2,f +5661,2447,41,4,f +5661,3069bpr0099,15,2,f +5661,3464,47,12,f +5661,3624,15,4,f +5661,3624,0,4,f +5661,3626bpr0001,14,24,f +5661,3641,0,12,f +5661,3833,4,4,f +5661,3834,15,2,f +5661,3835,7,2,f +5661,3837,8,2,f +5661,3838,14,2,f +5661,3841,8,2,f +5661,3898,15,2,f +5661,3900,4,2,f +5661,3901,0,2,f +5661,4006,0,2,f +5661,4449,7,2,f +5661,4449,6,2,f +5661,4480c01,15,3,f +5661,4480c01,4,3,f +5661,4483,47,6,f +5661,4485,4,2,f +5661,4528,0,2,f +5661,4719,0,3,f +5661,4719,4,3,f +5661,92851,47,12,f +5661,970c00,1,4,f +5661,970c00,2,2,f +5661,970c00,4,8,f +5661,970c00,15,2,f +5661,970c00,7,2,f +5661,970c00,0,6,f +5661,973c01,15,4,f +5661,973c02,4,2,f +5661,973p27c01,1,2,f +5661,973pb0006c01,15,2,f +5661,973pb0035c01,4,2,f +5661,973pb0049c01,0,2,f +5661,973pb0079c01,0,2,f +5661,973pb0091c01,0,2,f +5661,973pb0201c01,15,2,f +5661,973px189c01,0,2,f +5661,973px3c01,15,2,f +5662,11816pr0006,78,1,f +5662,2412b,80,1,f +5662,2431,322,2,f +5662,2460,0,1,f +5662,2654,71,1,f +5662,298c02,0,1,t +5662,298c02,0,1,f +5662,3002,15,3,f +5662,3009,15,1,f +5662,3021,322,1,f +5662,3023,25,2,f +5662,3023,29,2,f +5662,3023,47,1,f +5662,3032,19,1,f +5662,3034,19,1,f +5662,30357,29,2,f +5662,30357,15,2,f +5662,30361c,0,1,f +5662,30374,19,2,f +5662,30602,15,1,f +5662,3068bpr0138,15,1,f +5662,3069b,15,2,f +5662,3069b,26,2,f +5662,3069bpr0055,15,1,f +5662,33009,26,1,f +5662,3626c,47,1,f +5662,3700,71,1,f +5662,3741,2,1,f +5662,3741,2,1,t +5662,3742,4,1,t +5662,3742,4,3,f +5662,3941,25,1,f +5662,3958,15,1,f +5662,4032a,0,2,f +5662,4150,15,3,f +5662,4150pr0010,15,1,f +5662,4536,29,1,f +5662,4589,46,1,f +5662,4589,26,2,f +5662,4740,14,2,f +5662,4740,47,1,f +5662,48336,71,1,f +5662,48336,0,1,f +5662,48457,72,1,f +5662,52107,0,1,f +5662,54200,72,2,f +5662,54200,72,1,t +5662,6091,15,2,f +5662,6141,25,1,t +5662,6141,25,2,f +5662,6191,29,3,f +5662,6191,26,1,f +5662,64644,0,4,f +5662,85080,322,2,f +5662,87552,15,2,f +5662,87580,322,4,f +5662,92257,320,1,f +5662,92410,15,1,f +5662,92456pr0009c01,78,1,f +5662,92820pr0004c01,29,1,f +5662,93092,191,1,f +5663,3001a,1,7,f +5663,3001a,0,1,f +5663,3001a,14,4,f +5663,3002a,1,4,f +5663,3003,1,4,f +5663,3003,14,3,f +5663,3004,1,2,f +5663,3004,47,1,f +5663,3005,1,2,f +5663,3006,1,1,f +5663,3007,1,3,f +5663,3008,1,2,f +5663,3010,1,1,f +5663,3023,14,4,f +5663,3034,7,1,f +5663,3034,15,2,f +5663,3035,15,4,f +5663,3037,1,3,f +5663,3037,4,4,f +5663,3039,1,2,f +5663,3040a,1,2,f +5663,3041,4,1,f +5663,3062a,14,7,f +5663,3087bc01,4,2,f +5663,3087bc01,15,2,f +5663,31bc01,15,2,f +5663,36,0,4,f +5663,468c02,1,1,f +5663,498,0,2,f +5663,564c01,1,1,f +5663,604c01,15,1,f +5663,7039,4,8,f +5663,7049b,15,1,f +5663,715,4,4,f +5663,bb236bc01,1,2,f +5663,x466,15,1,f +5665,10201,15,6,f +5665,11203pr0012,191,1,f +5665,11618,322,1,f +5665,11618,322,1,t +5665,11816pr0002,78,1,f +5665,14417,72,2,f +5665,15395,4,2,f +5665,15573,85,2,f +5665,18674,70,1,f +5665,20482,47,2,f +5665,20482,47,1,t +5665,23969,26,2,f +5665,2412b,70,1,f +5665,24131,26,1,f +5665,24131,26,1,t +5665,24131,322,1,t +5665,24131,322,1,f +5665,24131,191,1,f +5665,24131,191,1,t +5665,24183pr0001,19,1,f +5665,24183pr0002,484,1,f +5665,2431,191,2,f +5665,2431,322,5,f +5665,2496,0,6,f +5665,2540,15,1,f +5665,2654,71,1,f +5665,2655,71,6,f +5665,3004,19,2,f +5665,3020,191,1,f +5665,3020,15,3,f +5665,3021,15,1,f +5665,3022,15,2,f +5665,3022,19,3,f +5665,3023,19,4,f +5665,3023,15,2,f +5665,3031,27,1,f +5665,30367c,4,1,f +5665,3062b,41,1,f +5665,3069b,322,1,f +5665,3069bpr0158,323,1,f +5665,33291,10,2,f +5665,33291,26,1,f +5665,33291,26,1,t +5665,33291,191,1,t +5665,33291,10,1,t +5665,33291,191,1,f +5665,3626c,27,1,f +5665,3659,19,1,f +5665,3958,27,1,f +5665,4345b,4,1,f +5665,4346,15,1,f +5665,4599b,71,1,f +5665,4599b,71,1,t +5665,4719,191,1,f +5665,4865b,322,1,f +5665,60475b,71,1,f +5665,60476,15,1,f +5665,60897,15,3,f +5665,6141,29,1,t +5665,6141,29,1,f +5665,63082,71,2,f +5665,63965,15,1,f +5665,85984,85,1,f +5665,87079,26,1,f +5665,87580,85,3,f +5665,87580,26,2,f +5665,87994,15,1,t +5665,87994,15,1,f +5665,88072,4,1,f +5665,90195,19,1,f +5665,92255,226,1,f +5665,92456pr0062c01,78,1,f +5665,92818pr0002c01,26,1,f +5665,92851,47,2,f +5665,92947,70,1,f +5665,93095,15,1,f +5665,98138,46,1,f +5665,98138,46,1,t +5667,10247,71,2,f +5667,11477,4,4,f +5667,2412b,0,3,f +5667,2420,72,2,f +5667,2437,40,1,f +5667,2445,15,2,f +5667,2450,15,2,f +5667,2496,0,3,f +5667,2655,71,3,f +5667,2780,0,2,f +5667,2780,0,1,t +5667,2877,72,2,f +5667,3004,4,2,f +5667,3005,15,2,f +5667,3010,4,4,f +5667,30165,4,1,f +5667,3020,15,2,f +5667,3020,272,2,f +5667,3020,4,3,f +5667,3021,272,4,f +5667,3021,0,2,f +5667,3022,71,6,f +5667,3023,46,3,f +5667,3023,4,4,f +5667,3023,72,7,f +5667,3024,14,6,f +5667,3024,14,1,t +5667,3031,4,1,f +5667,3031,71,1,f +5667,3034,4,1,f +5667,30350b,72,1,f +5667,3039,0,1,f +5667,3065,40,2,f +5667,3070b,15,1,t +5667,3070b,15,2,f +5667,32028,0,4,f +5667,32125,71,2,f +5667,3623,4,2,f +5667,3623,15,2,f +5667,3660,72,2,f +5667,3666,15,2,f +5667,3666,4,2,f +5667,3666,72,2,f +5667,3700,71,2,f +5667,3710,4,2,f +5667,3710,0,13,f +5667,3713,4,1,t +5667,3713,4,2,f +5667,3747b,71,2,f +5667,3749,19,1,f +5667,3795,15,4,f +5667,3795,71,1,f +5667,3832,72,1,f +5667,4032a,0,3,f +5667,4070,72,2,f +5667,4081b,0,4,f +5667,41769,272,2,f +5667,41770,272,2,f +5667,4287,4,4,f +5667,43712,15,1,f +5667,43722,4,1,f +5667,43723,4,1,f +5667,44728,4,2,f +5667,4861,15,1,f +5667,51739,15,2,f +5667,51739,71,1,f +5667,59900,71,8,f +5667,59900,0,2,f +5667,60478,71,2,f +5667,6081,72,2,f +5667,6141,179,18,f +5667,6141,36,2,f +5667,6141,179,1,t +5667,6141,36,1,t +5667,6141,34,1,t +5667,6141,34,2,f +5667,6541,71,4,f +5667,6636,0,6,f +5667,6636,15,2,f +5667,85984,4,2,f +5667,87079,272,2,f +5667,87083,72,2,f +5667,93606,71,2,f +5667,99206,15,1,f +5667,99207,71,2,f +5667,99781,71,2,f +5669,3001,4,1,f +5669,3003,4,1,f +5669,3004,0,2,f +5669,3005pe1,4,2,f +5669,3021,4,1,f +5669,3023,0,2,f +5669,3039,4,2,f +5669,3710,0,1,f +5671,2432,14,1,f +5671,2446px5,15,1,f +5671,2447,40,1,f +5671,30027b,25,4,f +5671,30028,0,4,f +5671,3023,14,1,f +5671,3626bp7c,14,1,f +5671,41854,0,1,f +5671,41855,0,1,f +5671,41861c01,7,1,f +5671,6141,14,2,f +5671,x351,25,1,f +5672,2357,15,4,f +5672,2412b,0,1,f +5672,2412b,7,1,f +5672,2420,1,1,f +5672,2431,1,1,f +5672,2431,15,4,f +5672,2436,1,1,f +5672,2445,0,1,f +5672,298c02,15,1,t +5672,298c02,15,1,f +5672,3004,15,3,f +5672,3009,15,2,f +5672,3010,15,1,f +5672,3020,1,1,f +5672,3020,15,1,f +5672,3021,1,1,f +5672,3021,7,4,f +5672,3022,0,1,f +5672,3023,1,3,f +5672,3023,0,8,f +5672,3024,36,2,f +5672,3024,47,2,f +5672,3032,1,1,f +5672,3032,15,2,f +5672,3034,1,1,f +5672,3035,1,1,f +5672,3068b,15,1,f +5672,3194,15,1,f +5672,3195,15,1,f +5672,3626apr0001,14,1,f +5672,3710,1,2,f +5672,3710,15,1,f +5672,3795,1,1,f +5672,3821,15,1,f +5672,3822,15,1,f +5672,3823,47,1,f +5672,3829c01,7,1,f +5672,4032a,0,1,f +5672,4081b,1,1,f +5672,4084,0,6,f +5672,4162,15,2,f +5672,4211,1,1,f +5672,4213,15,2,f +5672,4214,15,1,f +5672,4215a,15,4,f +5672,4275b,0,2,f +5672,4276b,0,2,f +5672,4315,1,1,f +5672,4485,1,1,f +5672,4589,15,24,f +5672,4600,0,3,f +5672,4624,15,6,f +5672,6141,1,2,f +5672,970c00,1,1,f +5672,973p13c01,4,1,f +5673,2352,14,2,f +5673,2456,4,4,f +5673,2456,1,4,f +5673,2456,14,4,f +5673,3001,0,12,f +5673,3001,15,20,f +5673,3001,2,8,f +5673,3001,14,20,f +5673,3001,1,24,f +5673,3001,4,24,f +5673,3002,15,8,f +5673,3002,0,4,f +5673,3002,1,10,f +5673,3002,2,4,f +5673,3002,4,10,f +5673,3002,14,8,f +5673,3003,1,34,f +5673,3003,2,12,f +5673,3003,15,28,f +5673,3003,14,28,f +5673,3003,4,34,f +5673,3003,0,18,f +5673,3003pe2,15,2,f +5673,3003pe2,14,2,f +5673,3007,1,4,f +5673,30072,2,1,f +5673,30076,1,1,f +5673,30077,14,6,f +5673,30078,2,1,f +5673,3010p01,14,2,f +5673,30143px1,14,1,f +5673,30144px6,14,1,f +5673,3483,0,12,f +5673,4180c02,0,4,f +5673,4727,2,4,f +5673,4728,4,1,f +5673,4728,14,1,f +5673,4728,1,1,f +5673,4728,15,1,f +5673,4729,14,1,f +5673,4743,14,1,f +5673,4743,1,1,f +5673,4744,14,1,f +5673,4744pr0001,0,1,f +5673,4744pr0002,4,1,f +5673,4744pr0003,4,1,f +5673,4744pr0004,2,1,f +5673,4744pr0005,14,1,f +5673,4745,4,2,f +5673,600,15,2,f +5673,601,15,4,f +5673,6212,1,1,f +5673,6214px2,2,1,f +5673,6215,2,4,f +5673,6215,4,4,f +5673,6215,14,4,f +5673,6215,1,4,f +5673,6216,4,1,f +5673,6216,14,1,f +5673,6216,2,1,f +5673,6216,1,1,f +5673,6232,14,2,f +5673,6235,4,2,f +5673,6236,4,2,f +5673,6247,14,2,f +5673,6248,4,4,f +5673,6249,4,2,f +5673,82248,1,1,f +5673,82249,15,1,f +5674,2419,72,2,f +5674,2431,0,2,f +5674,2431,70,8,f +5674,2444,0,8,f +5674,2449,72,1,f +5674,2450,0,2,f +5674,2540,4,1,f +5674,2653,71,2,f +5674,2654,71,2,f +5674,2780,0,2,t +5674,2780,0,6,f +5674,3002,72,1,f +5674,3004,72,1,f +5674,3005,0,5,f +5674,3021,72,4,f +5674,3023,72,10,f +5674,3023,0,5,f +5674,3029,72,1,f +5674,3034,0,3,f +5674,3036,0,1,f +5674,30374,41,2,f +5674,30374,42,2,f +5674,30376,15,1,f +5674,30377,15,1,t +5674,30377,15,4,f +5674,30384,40,1,f +5674,3040b,72,2,f +5674,30414,0,1,f +5674,3062b,71,2,f +5674,3068b,19,1,f +5674,3069b,19,10,f +5674,3069b,0,5,f +5674,32000,72,5,f +5674,32001,0,2,f +5674,32028,0,4,f +5674,32529,0,2,f +5674,3298,70,1,f +5674,33243,72,1,f +5674,3623,0,2,f +5674,3666,0,2,f +5674,3707,0,2,f +5674,3710,4,1,f +5674,3713,4,2,f +5674,3713,4,1,t +5674,3749,19,6,f +5674,3794a,71,1,t +5674,3794a,71,5,f +5674,3795,19,3,f +5674,3942c,72,2,f +5674,4032a,19,9,f +5674,4085c,72,4,f +5674,40902,0,1,f +5674,4162,72,2,f +5674,41769,0,1,f +5674,41770,0,1,f +5674,4185,19,2,f +5674,42022,72,2,f +5674,42023,72,4,f +5674,42060,72,1,f +5674,42061,72,1,f +5674,4286,72,2,f +5674,43713,72,1,f +5674,43720,72,1,f +5674,43721,72,1,f +5674,43722,72,1,f +5674,43723,72,1,f +5674,44301a,72,1,f +5674,45301,72,3,f +5674,47397,0,2,f +5674,47398,0,2,f +5674,47753,72,1,f +5674,4854,72,2,f +5674,4871,72,2,f +5674,50994,15,1,f +5674,54200,70,12,f +5674,54383,0,1,f +5674,54384,0,1,f +5674,58247,0,1,f +5674,6019,4,1,f +5674,6091,72,2,f +5674,6141,72,1,t +5674,6141,42,1,t +5674,6141,19,12,f +5674,6141,19,1,t +5674,6141,42,2,f +5674,6141,72,2,f +5674,6233,0,2,f +5674,64567,71,6,f +5674,6541,19,2,f +5674,75535,71,2,f +5674,x1463,15,1,f +5677,14226c21,0,4,f +5677,2431,15,2,f +5677,2607,0,3,f +5677,2780,0,24,f +5677,2815,0,4,f +5677,2905,72,2,f +5677,3023,1,8,f +5677,30391,0,4,f +5677,32001,1,8,f +5677,32002,72,6,f +5677,32009,1,2,f +5677,32012,1,1,f +5677,32016,0,4,f +5677,32034,4,4,f +5677,32039,4,10,f +5677,32054,4,14,f +5677,32062,4,12,f +5677,32064b,15,2,f +5677,32073,71,4,f +5677,32123b,14,16,f +5677,32140,1,8,f +5677,32278,15,8,f +5677,32316,15,2,f +5677,32523,15,2,f +5677,32524,15,2,f +5677,32556,71,2,f +5677,33299a,71,4,f +5677,3647,71,6,f +5677,3648b,71,4,f +5677,3649,71,2,f +5677,3650c,71,4,f +5677,3700,1,4,f +5677,3701,1,4,f +5677,3702,1,4,f +5677,3703,1,4,f +5677,3705,0,8,f +5677,3706,0,2,f +5677,3707,0,2,f +5677,3708,0,2,f +5677,3709,1,6,f +5677,3710,1,4,f +5677,3713,71,16,f +5677,3737,0,2,f +5677,3738,1,2,f +5677,3743,71,2,f +5677,3749,19,10,f +5677,3894,1,2,f +5677,3895,1,2,f +5677,3941,15,2,f +5677,4019,71,2,f +5677,40490,15,4,f +5677,4185,71,4,f +5677,42003,4,4,f +5677,44309,0,4,f +5677,4519,71,8,f +5677,4716,0,2,f +5677,54190,47,1,f +5677,55982,71,4,f +5677,56145,71,4,f +5677,56823c200,0,1,f +5677,6538b,71,8,f +5677,6558,0,8,f +5677,6575,72,4,f +5677,6587,72,4,f +5677,6589,71,6,f +5677,6629,1,4,f +5677,73090b,0,1,f +5677,73092,0,3,f +5677,75535,4,2,f +5677,85543,15,2,f +5677,85544,4,2,f +5677,85546,14,2,f +5677,bb278,33,1,f +5680,2587,0,1,f +5680,2780,0,1,f +5680,2780,0,1,t +5680,30153,36,2,f +5680,3020,0,1,f +5680,30374,70,1,f +5680,30377,0,8,f +5680,30377,0,1,t +5680,32039,0,5,f +5680,32062,4,1,f +5680,32062,0,2,f +5680,32064b,0,1,f +5680,32123b,71,1,t +5680,32123b,71,2,f +5680,32174,86,1,f +5680,32310,0,1,f +5680,3626bpr0433,14,1,f +5680,3705,0,1,f +5680,40379,0,1,f +5680,4081b,72,4,f +5680,41677,0,4,f +5680,4274,71,1,t +5680,4274,71,1,f +5680,43093,1,1,f +5680,43857,0,1,f +5680,4497,0,1,f +5680,4519,71,3,f +5680,45275,135,1,f +5680,4697b,71,1,t +5680,4697b,71,8,f +5680,48495,179,1,f +5680,49668,0,2,f +5680,50923,72,1,f +5680,53450,132,1,f +5680,53451,15,4,f +5680,53451,15,1,t +5680,53457,0,1,f +5680,53705,132,1,f +5680,6019,0,8,f +5680,6536,72,1,f +5680,970c00,272,1,f +5680,973pr1211c01,72,1,f +5681,2433,0,2,f +5681,2446,0,1,f +5681,2447,34,1,f +5681,2540,7,2,f +5681,298c03,7,2,f +5681,3020,4,1,f +5681,3022,0,1,f +5681,3022,4,1,f +5681,3023,4,1,f +5681,3039,0,1,f +5681,3298pb010,0,1,f +5681,3626bp69,14,1,f +5681,3641,0,4,f +5681,3660,7,1,f +5681,3838,0,1,f +5681,3962a,0,1,f +5681,4590,0,1,f +5681,4598,7,1,f +5681,4600,7,2,f +5681,4624,7,4,f +5681,4735,7,2,f +5681,4740,7,2,f +5681,6141,34,2,f +5681,970x001,2,1,f +5681,973p69c01,15,1,f +5682,2412b,71,6,f +5682,2412b,72,8,f +5682,2431,15,1,f +5682,2432,0,1,f +5682,2458,19,6,f +5682,2465,71,2,f +5682,2540,19,2,f +5682,2555,15,4,f +5682,2555,71,16,f +5682,2780,0,1,t +5682,2780,0,30,f +5682,2877,72,10,f +5682,2921,15,2,f +5682,298c02,71,2,f +5682,298c02,71,1,t +5682,3001,72,1,f +5682,3001,14,2,f +5682,3004,15,3,f +5682,3005,15,4,f +5682,3010,15,2,f +5682,30136,72,2,f +5682,3020,72,3,f +5682,3020,71,2,f +5682,30208,15,2,f +5682,3021,72,2,f +5682,3021,71,3,f +5682,3022,71,2,f +5682,3022,15,3,f +5682,3023,72,3,f +5682,3031,71,1,f +5682,3035,71,1,f +5682,30361cpr1,15,1,f +5682,30362,15,2,f +5682,30367bpr0007a,15,1,f +5682,3037,71,2,f +5682,30370ps1,15,1,f +5682,30372pr0001,40,1,f +5682,30374,15,4,f +5682,3038,71,2,f +5682,30383,15,2,f +5682,3039pr0008,0,1,f +5682,3040b,15,4,f +5682,3040b,71,4,f +5682,30414,14,2,f +5682,30602,14,2,f +5682,3062b,71,2,f +5682,3063b,71,12,f +5682,3063b,15,16,f +5682,3069b,15,2,f +5682,3069b,71,3,f +5682,3070b,71,8,f +5682,3070b,71,1,t +5682,32013,15,16,f +5682,32034,15,8,f +5682,32474,27,2,f +5682,32531,71,1,f +5682,3626bpr0449,78,1,f +5682,3660,71,1,f +5682,3666,15,8,f +5682,3679,71,1,f +5682,3680,0,1,f +5682,3700,14,4,f +5682,3701,71,1,f +5682,3702,71,2,f +5682,3707,0,1,f +5682,3708,15,16,f +5682,3709,15,4,f +5682,3709,14,2,f +5682,3710,72,2,f +5682,3710,71,1,f +5682,3710,0,3,f +5682,3747b,71,1,f +5682,3794a,72,1,f +5682,3794a,19,5,f +5682,3941,72,7,f +5682,3957a,15,4,f +5682,3958,71,4,f +5682,4070,15,14,f +5682,4070,71,16,f +5682,4150,71,1,f +5682,42022,15,2,f +5682,42446,71,4,f +5682,4274,1,4,f +5682,4274,1,1,t +5682,4282,71,2,f +5682,4286,15,6,f +5682,44126,14,1,f +5682,44294,71,2,f +5682,44728,72,4,f +5682,4589,71,4,f +5682,4589,42,2,f +5682,4599a,71,4,f +5682,4740,57,4,f +5682,4740,71,1,f +5682,4742,72,2,f +5682,47905,72,2,f +5682,48336,71,2,f +5682,4865a,15,2,f +5682,50955,15,1,f +5682,50956,15,1,f +5682,54200,15,6,f +5682,54200,72,6,f +5682,54383,71,1,f +5682,54384,71,1,f +5682,58247,0,1,f +5682,6112,71,2,f +5682,6141,71,1,t +5682,6141,57,2,f +5682,6141,15,17,f +5682,6141,57,1,t +5682,6141,15,1,t +5682,6141,71,7,f +5682,6141,72,6,f +5682,6141,72,1,t +5682,6180,15,1,f +5682,6190,72,2,f +5682,6222,71,6,f +5682,6222,14,2,f +5682,6222,15,2,f +5682,6259,15,2,f +5682,63965,15,4,f +5682,6538b,71,1,f +5682,6564,15,2,f +5682,6565,15,2,f +5682,6589,71,1,f +5682,6636,71,2,f +5682,970x199,25,1,f +5682,973pr1301c01,25,1,f +5684,10247,71,2,f +5684,11215,0,1,f +5684,11476,71,2,f +5684,11477,0,8,f +5684,12825,0,2,f +5684,15379,0,48,f +5684,15379,0,2,t +5684,15619,1,1,t +5684,15619,0,1,t +5684,15619,1,1,f +5684,15619,0,1,f +5684,15621,46,1,f +5684,15706,0,2,f +5684,15827,0,1,f +5684,2450,1,2,f +5684,2654,182,1,f +5684,2780,0,8,f +5684,2780,0,1,t +5684,3004,73,2,f +5684,30162,71,4,f +5684,30173b,297,1,t +5684,30173b,297,2,f +5684,3020,71,1,f +5684,3021,72,3,f +5684,3021,1,5,f +5684,3023,72,7,f +5684,3031,72,1,f +5684,3032,0,1,f +5684,3034,72,1,f +5684,30374,36,4,f +5684,3068b,2,1,f +5684,3069b,378,1,f +5684,3069bpr0090,72,1,f +5684,3176,0,2,f +5684,32001,0,1,f +5684,32012,72,2,f +5684,32028,71,1,f +5684,32054,71,2,f +5684,32064b,71,2,f +5684,32123b,71,4,f +5684,32123b,71,1,t +5684,32187,71,2,f +5684,32271,72,2,f +5684,32523,71,2,f +5684,32524,72,2,f +5684,32556,19,2,f +5684,3626cpr0745,14,1,f +5684,3626cpr1282,0,1,f +5684,3626cpr1367,14,1,f +5684,3660,72,2,f +5684,3665,72,4,f +5684,3666,1,1,f +5684,3701,0,2,f +5684,3710,0,3,f +5684,3713,71,1,t +5684,3713,71,2,f +5684,3794b,0,3,f +5684,3795,70,1,f +5684,3795,72,1,f +5684,3832,72,1,f +5684,3895,1,2,f +5684,4032a,14,4,f +5684,4032a,85,1,f +5684,4070,0,2,f +5684,4150,72,2,f +5684,4150pr0012,72,1,f +5684,4162,0,2,f +5684,41769,1,1,f +5684,41770,1,1,f +5684,4274,71,1,t +5684,4274,71,4,f +5684,4282,0,1,f +5684,43093,1,4,f +5684,43719,0,1,f +5684,44728,72,6,f +5684,4510,0,2,f +5684,4735,0,2,f +5684,47457,1,1,f +5684,47753,0,2,f +5684,4865b,1,2,f +5684,4871,0,1,f +5684,50950,1,2,f +5684,51739,272,2,f +5684,51739,71,1,f +5684,54200,378,1,f +5684,54200,378,1,t +5684,55976,0,2,f +5684,56145,297,2,f +5684,57908,308,1,f +5684,57909b,72,2,f +5684,59900,297,6,f +5684,60032,0,2,f +5684,60470a,0,10,f +5684,60471,71,1,f +5684,60897,0,2,f +5684,61070,0,1,f +5684,61071,0,1,f +5684,6117,297,1,f +5684,6141,33,4,f +5684,6141,33,1,t +5684,6141,297,11,f +5684,6141,297,2,t +5684,62462,71,2,f +5684,62810,484,1,f +5684,63868,0,4,f +5684,64567,297,1,t +5684,64567,297,2,f +5684,6536,15,2,f +5684,6541,0,2,f +5684,6553,72,2,f +5684,6587,28,2,f +5684,75937,179,1,f +5684,86208,71,2,f +5684,87079,1,2,f +5684,87079,70,1,f +5684,87083,72,8,f +5684,87991,0,1,f +5684,90609,0,2,f +5684,90611,0,2,f +5684,90641,297,2,f +5684,92013,0,4,f +5684,92280,71,2,f +5684,92579,40,1,f +5684,92593,272,2,f +5684,92946,1,2,f +5684,92946,19,2,f +5684,93273,1,2,f +5684,94925,71,2,f +5684,970c00,1,1,f +5684,970c00,0,1,f +5684,970c00pr0603,0,1,f +5684,973pr2474c01,1,1,f +5684,973pr2578c01,0,2,f +5684,98100,71,2,f +5684,98137,297,4,f +5684,98397,71,2,f +5684,98834,0,4,f +5684,99207,71,2,f +5684,99780,0,2,f +5684,99781,71,1,f +5685,2420,4,2,f +5685,3002,14,27,f +5685,3004,14,4,f +5685,3005,4,4,f +5685,3005,14,3,f +5685,3005pe1,14,2,f +5685,3622,14,17,f +5685,3623,4,3,f +5686,54189,1,1,f +5686,54190,47,1,f +5687,15573,70,2,f +5687,2357,70,4,f +5687,3001,14,1,f +5687,3010,70,2,f +5687,3023,15,1,f +5687,3032,15,2,f +5687,30340,15,1,f +5687,3035,19,1,f +5687,3710,70,2,f +5687,3937,15,2,f +5687,54200,4,2,f +5687,54200,4,1,t +5687,6134,71,2,f +5687,6141,4,7,f +5687,6141,15,1,t +5687,6141,25,2,f +5687,6141,25,1,t +5687,6141,15,6,f +5687,6141,27,7,f +5687,6141,27,1,t +5687,6141,4,1,t +5687,6141,29,1,t +5687,6141,29,7,f +5687,6254,15,1,f +5687,87087,15,2,f +5690,3001,8,14,f +5690,3002,8,8,f +5690,3003,8,12,f +5690,3004,8,8,f +5690,3005,8,4,f +5690,3005,8,1,t +5690,3006,8,1,f +5690,3007,8,1,f +5690,3008,8,2,f +5690,3009,8,4,f +5690,3010,8,4,f +5690,3622,8,4,f +5691,13731,4,4,f +5691,2412b,0,1,f +5691,2431,15,2,f +5691,2444,4,2,f +5691,2540,14,1,f +5691,2654,72,1,f +5691,2780,0,5,f +5691,2780,0,1,t +5691,2921,0,2,f +5691,3001,4,1,f +5691,30031,0,1,f +5691,30136,72,1,f +5691,30173b,0,2,f +5691,30176,2,2,f +5691,3020,71,1,f +5691,3022,72,4,f +5691,3023,4,1,f +5691,3031,70,1,f +5691,3035,0,1,f +5691,30367c,28,1,f +5691,30377,15,1,t +5691,30377,15,1,f +5691,30602,4,1,f +5691,3068b,15,1,f +5691,3068b,4,2,f +5691,3069b,27,2,f +5691,32000,4,4,f +5691,32002,72,2,f +5691,32002,72,1,t +5691,32056,71,4,f +5691,32062,4,2,f +5691,32073,71,2,f +5691,32123b,14,2,f +5691,32123b,14,1,t +5691,32449,14,2,f +5691,32524,0,4,f +5691,3623,72,2,f +5691,3626bpr0744,14,1,f +5691,3626cpr0865,272,1,f +5691,3659,72,1,f +5691,3701,4,2,f +5691,3702,0,2,f +5691,3706,0,3,f +5691,3710,4,7,f +5691,3713,71,4,f +5691,3713,71,1,t +5691,3794a,272,2,f +5691,3795,15,1,f +5691,3894,15,2,f +5691,3937,0,1,f +5691,4032a,15,1,f +5691,41669,4,3,f +5691,41677,72,2,f +5691,41764,4,1,f +5691,41765,4,1,f +5691,42003,0,3,f +5691,4274,1,4,f +5691,4274,1,1,t +5691,4287,0,4,f +5691,43722,0,1,f +5691,43723,0,1,f +5691,44294,71,1,f +5691,4497,0,1,f +5691,4519,71,1,f +5691,49668,191,4,f +5691,55978,0,2,f +5691,56145,297,2,f +5691,60470b,0,4,f +5691,60478,4,2,f +5691,60897,4,2,f +5691,61252,297,2,f +5691,6126b,182,2,f +5691,6134,4,1,f +5691,6141,179,1,t +5691,6141,297,1,t +5691,6141,297,10,f +5691,6141,36,2,f +5691,6141,179,8,f +5691,6141,36,1,t +5691,61678,0,2,f +5691,63864,4,2,f +5691,63868,0,2,f +5691,64799,4,1,f +5691,6558,1,2,f +5691,85984,72,1,f +5691,92218,297,2,f +5691,93606,4,3,f +5691,9441stk01,9999,1,t +5691,970c00pr0263,71,1,f +5691,970c00pr0273,4,1,f +5691,973pr1881c01,71,1,f +5691,973pr1895c01,4,1,f +5691,98132,297,1,f +5691,98133pr0001,4,1,f +5691,98134,297,1,f +5691,98137,297,2,f +5691,98138,15,2,f +5691,98138,15,1,t +5691,98138pr0002,33,1,f +5691,98138pr0002,33,1,t +5691,98141,297,2,f +5691,98153pr0001,71,1,f +5693,2418a,33,1,f +5693,2419,15,1,f +5693,2420,0,2,f +5693,2446,14,1,f +5693,2447,33,1,f +5693,2462,15,2,f +5693,298c02,0,2,f +5693,3004,15,1,f +5693,3020,15,2,f +5693,3022,0,1,f +5693,3023,0,3,f +5693,3024,33,2,f +5693,3024,0,2,f +5693,3039,15,1,f +5693,3069bp06,15,2,f +5693,3623,0,2,f +5693,3623,15,2,f +5693,3626apr0001,14,1,f +5693,3666,15,2,f +5693,3747a,15,2,f +5693,3838,14,1,f +5693,3935,15,1,f +5693,3936,15,1,f +5693,3937,15,1,f +5693,3956,0,2,f +5693,3959,15,2,f +5693,4070,15,2,f +5693,4085b,0,2,f +5693,4286,15,2,f +5693,4287,15,4,f +5693,4735,0,1,f +5693,4865a,15,2,f +5693,6141,36,2,f +5693,73983,15,2,f +5693,73983,0,2,f +5693,970c00,14,1,f +5693,973p6ec01,15,1,f +5694,3037,1,12,f +5694,3039,1,6,f +5694,3041,1,3,f +5694,3043,1,2,f +5698,2346,0,6,f +5698,2412b,14,14,f +5698,2413,1,8,f +5698,2419,4,6,f +5698,2419,1,6,f +5698,2419,2,1,f +5698,2432,14,7,f +5698,2447,41,2,f +5698,2450,2,2,f +5698,2456,4,6,f +5698,2456,15,6,f +5698,2456,1,6,f +5698,2456,14,6,f +5698,2458,14,1,f +5698,2458,4,6,f +5698,2460,14,1,f +5698,2460,4,3,f +5698,2479,7,1,f +5698,2488,2,3,f +5698,2513,4,2,f +5698,2549,6,3,f +5698,2625,1,6,f +5698,2625,4,6,f +5698,298c01,0,3,f +5698,30000,8,7,f +5698,3001,2,6,f +5698,3001,1,18,f +5698,3001,0,10,f +5698,3001,4,16,f +5698,3001,14,18,f +5698,3001,15,18,f +5698,3002,4,14,f +5698,3002,0,8,f +5698,3002,15,18,f +5698,3002,1,18,f +5698,3002,14,18,f +5698,3002,2,6,f +5698,3003,4,18,f +5698,3003,0,18,f +5698,3003,15,18,f +5698,3003,14,18,f +5698,3003,1,18,f +5698,3003,2,6,f +5698,3004,2,12,f +5698,3004,0,30,f +5698,3004,4,56,f +5698,3004,14,56,f +5698,3004,15,70,f +5698,3004,1,66,f +5698,3005,0,20,f +5698,3005,1,42,f +5698,3005,4,30,f +5698,3005,14,30,f +5698,3005,15,46,f +5698,3005,2,12,f +5698,3005pe1,2,8,f +5698,3005pe1,14,6,f +5698,3008,14,12,f +5698,3008,15,10,f +5698,3008,4,2,f +5698,3008,1,4,f +5698,3009,0,4,f +5698,3009,15,18,f +5698,3009,14,14,f +5698,3009,4,18,f +5698,3009,1,17,f +5698,3010,2,12,f +5698,3010,4,64,f +5698,3010,14,60,f +5698,3010,15,72,f +5698,3010,1,72,f +5698,3010,0,24,f +5698,3010apr0001,4,4,f +5698,3010p01,14,3,f +5698,3010p01,4,4,f +5698,3010p02,15,6,f +5698,3010p08,4,4,f +5698,3010p15,14,4,f +5698,30161,47,4,f +5698,30176,2,2,f +5698,3020,1,10,f +5698,3020,4,12,f +5698,3021,4,8,f +5698,3021,1,10,f +5698,3022,1,12,f +5698,3022,4,12,f +5698,3024,36,4,f +5698,3024,46,4,f +5698,3029,4,2,f +5698,3030,1,8,f +5698,3031,4,2,f +5698,3031,1,6,f +5698,3032,1,8,f +5698,3033,1,5,f +5698,3034,4,4,f +5698,3035,4,2,f +5698,3039,14,14,f +5698,3039,47,4,f +5698,3039,4,6,f +5698,3039,1,8,f +5698,3040b,1,8,f +5698,3040b,14,16,f +5698,3040b,4,6,f +5698,3062b,2,18,f +5698,3062b,7,16,f +5698,3062b,15,30,f +5698,3081cc01,4,4,f +5698,3135c02,4,2,f +5698,3149c01,4,8,f +5698,3297,4,12,f +5698,3297,1,10,f +5698,3297px1,1,2,f +5698,3297px18,4,12,f +5698,3298,4,12,f +5698,3298,1,6,f +5698,3298p11,1,2,f +5698,3298p13,4,12,f +5698,3299,4,12,f +5698,3299,1,6,f +5698,3300,4,6,f +5698,3300,1,6,f +5698,3307,14,5,f +5698,3307,15,9,f +5698,3460,14,6,f +5698,3460,1,6,f +5698,3475b,0,6,f +5698,3483,0,24,f +5698,3622,1,20,f +5698,3622,4,18,f +5698,3622,14,22,f +5698,3622,15,20,f +5698,3633,14,10,f +5698,3633,15,12,f +5698,3634,0,14,f +5698,3660,1,8,f +5698,3660,14,14,f +5698,3660,4,6,f +5698,3665,14,16,f +5698,3665,1,8,f +5698,3665,4,6,f +5698,3666,1,8,f +5698,3666,4,8,f +5698,3679,7,11,f +5698,3680,14,1,f +5698,3680,0,4,f +5698,3680,4,6,f +5698,3700,0,4,f +5698,3710,4,4,f +5698,3710,1,16,f +5698,3730,4,5,f +5698,3731,4,5,f +5698,3741,2,9,f +5698,3742,1,9,f +5698,3742,14,9,f +5698,3742,1,3,t +5698,3742,14,3,t +5698,3747b,1,6,f +5698,3747b,4,12,f +5698,3787,4,2,f +5698,3788,4,2,f +5698,3795,4,8,f +5698,3795,1,12,f +5698,3821,4,2,f +5698,3822,4,2,f +5698,3823,47,4,f +5698,3823,41,4,f +5698,3829c01,14,11,f +5698,3832,1,4,f +5698,3837,8,2,f +5698,3841,8,2,f +5698,3853,4,4,f +5698,3853,1,14,f +5698,3854,14,28,f +5698,3854,15,8,f +5698,3856,1,8,f +5698,3856,2,28,f +5698,3857,2,3,f +5698,3861b,14,6,f +5698,3861b,4,2,f +5698,3861b,1,1,f +5698,3865,10,3,f +5698,3937,4,12,f +5698,3937,7,4,f +5698,3938,7,12,f +5698,3938,4,4,f +5698,3941,14,6,f +5698,3957a,15,1,f +5698,3957a,14,10,f +5698,3960p03,15,3,f +5698,3962a,0,3,f +5698,4006,0,2,f +5698,4070,7,8,f +5698,4070,4,14,f +5698,4079,14,11,f +5698,4083,0,4,f +5698,4175,7,4,f +5698,4175,14,8,f +5698,4286,4,12,f +5698,4286,1,12,f +5698,4287,4,12,f +5698,4287,1,8,f +5698,4349,0,6,f +5698,4476b,15,12,f +5698,4495b,14,1,f +5698,4495b,2,6,f +5698,4522,0,2,f +5698,4589,15,6,f +5698,4600,0,4,f +5698,4617b,14,3,f +5698,4624c02,14,8,f +5698,4625,4,4,f +5698,6041,0,7,f +5698,6064,2,7,f +5698,6140,14,6,f +5698,6215,4,12,f +5698,6215,2,2,f +5698,6232,8,4,f +5698,6248,15,4,f +5698,6248,14,40,f +5698,6249,8,13,f +5698,6255,2,6,f +5698,6564,4,7,f +5698,6565,4,7,f +5698,p01dacta,9999,1,f +5699,2346,0,4,f +5699,2413,4,2,f +5699,2419,4,1,f +5699,2432,14,2,f +5699,2450,4,2,f +5699,2458,14,1,f +5699,2460,14,1,f +5699,2479,7,1,f +5699,30000,8,1,f +5699,3001,15,2,f +5699,3001,4,4,f +5699,3001,14,2,f +5699,3001,1,4,f +5699,3002,1,2,f +5699,3002,4,2,f +5699,3002,15,2,f +5699,3002,14,2,f +5699,3003,0,4,f +5699,3003,14,2,f +5699,3003,4,6,f +5699,3003,2,2,f +5699,3003,1,6,f +5699,3003,15,2,f +5699,3004,4,12,f +5699,3004,2,4,f +5699,3004,1,10,f +5699,3004,15,6,f +5699,3004,14,6,f +5699,3004,0,4,f +5699,3005,4,6,f +5699,3005,2,4,f +5699,3005,1,8,f +5699,3005,0,8,f +5699,3005,15,6,f +5699,3005,14,4,f +5699,3005pe1,14,2,f +5699,3008,4,2,f +5699,3008,1,2,f +5699,3009,1,2,f +5699,3009,4,2,f +5699,3010,1,10,f +5699,3010,0,4,f +5699,3010,14,4,f +5699,3010,15,4,f +5699,3010,4,10,f +5699,3010p01,14,1,f +5699,30161,47,1,f +5699,30183,1,1,f +5699,3020,4,2,f +5699,3021,4,2,f +5699,3022,1,2,f +5699,3032,4,2,f +5699,3039,1,2,f +5699,3062b,14,8,f +5699,3297,1,4,f +5699,3297px1,1,2,f +5699,3298,1,2,f +5699,3298p11,1,4,f +5699,3483,0,2,f +5699,3622,2,2,f +5699,3622,1,6,f +5699,3622,14,2,f +5699,3622,4,6,f +5699,3626bp04,14,1,f +5699,3626bpx19,14,1,f +5699,3633,15,2,f +5699,3659,14,2,f +5699,3660,1,2,f +5699,3666,1,2,f +5699,3730,4,1,f +5699,3731,4,1,f +5699,3741,2,3,f +5699,3742,15,4,f +5699,3742,14,4,f +5699,3747b,1,2,f +5699,3795,4,2,f +5699,3823,41,2,f +5699,3829c01,14,2,f +5699,3832,4,2,f +5699,3853,4,2,f +5699,3854,14,4,f +5699,3857,10,2,f +5699,3861b,4,1,f +5699,3957a,14,2,f +5699,3962b,0,1,f +5699,4070,4,2,f +5699,4079,14,2,f +5699,4175,14,2,f +5699,4286,1,4,f +5699,4287,1,4,f +5699,4485,15,1,f +5699,4485,4,1,f +5699,4495b,2,2,f +5699,4617b,14,1,f +5699,4625,1,1,f +5699,6064,2,1,f +5699,6215,2,2,f +5699,6248,14,6,f +5699,6249,8,3,f +5699,6564,1,1,f +5699,6565,1,1,f +5699,970c00,2,1,f +5699,970c00,4,1,f +5699,973p73c01,2,1,f +5699,973px33c01,15,1,f +5700,3626bpr0001,14,1,f +5700,3901,0,1,f +5700,970c00,15,1,f +5700,973c07,1,1,f +5701,3001,0,1,f +5701,3001p17,4,1,f +5701,3004p51,14,1,f +5701,3022,0,1,f +5701,3023,14,2,f +5701,3023,4,1,f +5701,3039,0,3,f +5701,3660,1,1,f +5701,3665,0,2,f +5702,55963,89,1,f +5703,x469ba,0,1,f +5703,x469bb,0,1,f +5704,2780,0,15,f +5704,32002,8,2,f +5704,32039,7,2,f +5704,32054,0,2,f +5704,3673,7,10,f +5704,3713,7,15,f +5704,3749,7,4,f +5704,4274,7,4,f +5704,6553,7,2,f +5704,6558,0,4,f +5705,2357,71,12,f +5705,2357,70,6,f +5705,2420,19,8,f +5705,2431,72,10,f +5705,2431,308,35,f +5705,2453a,71,2,f +5705,2454a,70,3,f +5705,2654,0,1,f +5705,2736,71,1,f +5705,2817,0,1,f +5705,2877,72,23,f +5705,3003,70,8,f +5705,3004,19,4,f +5705,3004,484,1,f +5705,3004,70,21,f +5705,3005,70,17,f +5705,3005,71,4,f +5705,3007,0,2,f +5705,3008,72,2,f +5705,3010,71,12,f +5705,3010,70,21,f +5705,30115,2,1,f +5705,30150,70,1,f +5705,3020,72,1,f +5705,3020,28,1,f +5705,3021,70,2,f +5705,3022,19,1,f +5705,3023,484,14,f +5705,3023,2,2,f +5705,3023,19,11,f +5705,3023,71,3,f +5705,3027,28,4,f +5705,3030,70,1,f +5705,3032,70,2,f +5705,3033,70,2,f +5705,3034,28,1,f +5705,3034,71,1,f +5705,30357,70,2,f +5705,3036,71,2,f +5705,30385,297,1,f +5705,3039,71,1,f +5705,3040b,72,4,f +5705,30414,19,3,f +5705,3046a,72,5,f +5705,3062b,71,3,f +5705,3062b,47,1,f +5705,30663,0,1,f +5705,3068b,72,1,f +5705,3069b,308,10,f +5705,3069bpr0100,2,3,f +5705,32014,0,1,f +5705,3307,19,1,f +5705,3308,72,1,f +5705,3460,72,2,f +5705,3460,70,3,f +5705,3660,70,4,f +5705,3660,72,4,f +5705,3666,308,4,f +5705,3666,19,9,f +5705,3666,484,3,f +5705,3673,71,2,t +5705,3673,71,4,f +5705,3676,72,4,f +5705,3700,71,1,f +5705,3701,0,2,f +5705,3702,4,4,f +5705,3794b,0,3,f +5705,3836,70,1,f +5705,3837,72,1,f +5705,3841,72,1,f +5705,3941,70,2,f +5705,3958,19,2,f +5705,3958,70,1,f +5705,4150,19,2,f +5705,41879a,1,1,f +5705,4274,1,1,f +5705,4274,1,1,t +5705,43888,70,4,f +5705,4460b,70,4,f +5705,4460b,72,2,f +5705,4589,70,10,f +5705,4589,2,5,f +5705,4599b,0,1,f +5705,4623,0,1,f +5705,47847,72,2,f +5705,4865a,19,10,f +5705,4865a,288,1,f +5705,48723,70,1,f +5705,54200,70,1,t +5705,54200,70,6,f +5705,59349,71,2,f +5705,6019,71,4,f +5705,60583a,0,2,f +5705,60592,73,4,f +5705,60594,73,2,f +5705,60594,0,1,f +5705,60596,0,1,f +5705,60608,73,4,f +5705,60621,71,1,f +5705,60800b,484,2,f +5705,6091,72,4,f +5705,6111,72,2,f +5705,6112,70,6,f +5705,6141,41,1,t +5705,6141,0,1,f +5705,6141,0,1,t +5705,6141,41,5,f +5705,6141,19,10,f +5705,6141,19,2,t +5705,61482,71,1,f +5705,61482,71,1,t +5705,62113,72,1,f +5705,6259,308,1,f +5705,63965,70,2,f +5705,64644,308,4,f +5705,64728,4,3,f +5705,6541,19,1,f +5705,6587,28,1,f +5705,6636,19,3,f +5705,73983,71,2,f +5705,85984,71,5,f +5705,87079,71,2,f +5705,87079,70,2,f +5705,87087,72,22,f +5705,87544,71,1,f +5705,87765pat01,78,1,f +5705,87768pat0001,78,1,f +5705,87772pat0001,78,1,f +5705,88007,84,1,f +5705,88149,9999,1,f +5705,90194,70,2,f +5705,970c99pr0001,1,1,f +5705,970c99pr0002,1,1,f +5705,973pr1529c01,15,1,f +5705,973pr1530c01,15,1,f +5705,973pr1531c01,1,1,f +5706,10830pat0001,0,1,f +5706,30162,72,1,f +5706,3626bpr0314,14,1,f +5706,3626bpr0891,14,1,f +5706,3626bpr0892,14,1,f +5706,3852b,191,1,f +5706,62696,308,1,f +5706,62810,484,1,f +5706,86035,4,1,f +5706,970c00,272,1,f +5706,970c00,19,1,f +5706,970c00,1,1,f +5706,973pb1012c01,272,1,f +5706,973pb1013c01,15,1,f +5706,973pb1014c01,15,1,f +5708,2458,72,28,f +5708,3003,1,56,f +5708,3003,25,56,f +5708,3003,2,56,f +5708,3003,4,56,f +5708,3003,14,56,f +5708,3004,25,56,f +5708,3004,2,56,f +5708,3005,1,56,f +5708,3005,4,56,f +5708,3005,14,56,f +5708,3005,2,56,f +5708,3005,25,56,f +5708,3005pr0003,15,56,f +5708,3020,1,28,f +5708,3020,4,28,f +5708,3020,14,28,f +5708,3020,25,28,f +5708,3020,2,28,f +5708,30374,70,56,f +5708,3039,25,56,f +5708,3039,14,56,f +5708,3039,2,56,f +5708,3039,4,56,f +5708,3039,1,56,f +5708,32530,0,28,f +5708,3626cpr0891,14,28,f +5708,3626cpr1580,14,28,f +5708,3679,71,28,f +5708,3680,0,28,f +5708,3700,4,56,f +5708,3700,14,56,f +5708,3700,1,56,f +5708,3941,25,28,f +5708,3941,4,28,f +5708,3941,2,28,f +5708,3941,85,28,f +5708,3941,14,28,f +5708,3941,1,28,f +5708,41539,71,28,f +5708,4477,15,28,f +5708,60474,212,28,f +5708,6126a,57,28,f +5708,6126b,41,28,f +5708,86035,27,28,f +5708,86035,25,28,f +5708,96874,25,2,t +5708,970c00,25,28,f +5708,970c00,2,28,f +5708,973c02,4,28,f +5708,973c07,1,28,f +5709,264,14,1,f +5709,3010,15,2,f +5709,4362acx1,4,1,f +5709,4424,14,1,f +5709,4452,15,1,f +5709,4461,14,1,f +5709,fab5g,9999,1,f +5709,fabah4,4,1,f +5709,fabah4-hinge,14,1,f +5709,fabaj1,14,1,f +5709,fabaj3,14,1,f +5709,fabeb4,0,1,f +5709,fabek4,366,1,f +5709,fabek4,15,1,f +5710,tplan02,89,1,f +5714,11477,27,2,f +5714,15397,15,4,f +5714,3004,27,1,f +5714,3004,15,1,f +5714,3020,27,2,f +5714,3022,322,2,f +5714,3022,27,1,f +5714,3023,27,1,f +5714,30238,0,1,f +5714,3024,25,2,f +5714,3024,14,2,f +5714,3024,14,1,t +5714,3024,25,1,t +5714,3069b,27,2,f +5714,3070b,2,1,t +5714,3070b,322,1,t +5714,3070b,2,2,f +5714,3070b,322,2,f +5714,3660,15,1,f +5714,3710,27,2,f +5714,47457,27,1,f +5714,48336,2,2,f +5714,4871,19,1,f +5714,6091,27,6,f +5714,63868,321,2,f +5714,73983,2,2,f +5714,87580,4,1,f +5714,92593,4,1,f +5714,98138,25,1,t +5714,98138,25,12,f +5714,98138pr0008,15,2,f +5714,98138pr0008,15,1,t +5714,99780,2,2,f +5715,3020,15,1,f +5715,3666,70,1,f +5715,44301a,71,2,f +5715,44302a,72,2,f +5715,6636,70,3,f +5718,3022,15,1,f +5718,3023,15,1,f +5718,3068bpr0163,15,1,f +5718,3070bpr0063,27,3,f +5718,3070bpr0064,4,2,f +5718,3070bpr0065,14,2,f +5718,3070bpr0066,27,2,f +5718,3070bpr0067,4,3,f +5718,3070bpr0068,14,2,f +5718,3070bpr0069,27,2,f +5718,3070bpr0070,4,2,f +5718,3070bpr0071,14,2,f +5718,3070bpr0072,27,3,f +5718,3070bpr0073,4,3,f +5718,3070bpr0074,14,2,f +5718,3070bpr0075,27,2,f +5718,3070bpr0076,4,2,f +5718,3070bpr0077,14,1,f +5718,3070bpr0078,27,2,f +5718,3070bpr0079,4,3,f +5718,3070bpr0080,14,2,f +5718,3070bpr0081,27,2,f +5718,3070bpr0082,4,2,f +5718,3070bpr0083,14,2,f +5718,3070bpr0084,27,1,f +5718,3070bpr0085,4,2,f +5718,3070bpr0086,14,2,f +5718,3070bpr0087,27,1,f +5718,3070bpr0088,4,1,f +5718,3070bpr0089,14,2,f +5718,3070bpr0090,27,2,f +5718,3070bpr0091,4,2,f +5718,3070bpr0092,14,2,f +5718,3070bpr0093,27,2,f +5718,3070bpr0094,4,2,f +5718,3070bpr0095,14,2,f +5718,3070bpr0096,27,2,f +5718,3070bpr0097,4,2,f +5718,3070bpr0098,14,2,f +5718,3070bpr0130,27,1,f +5718,3070bpr0131,4,1,f +5718,3070bpr0132,14,1,f +5718,3070bpr0143,27,1,f +5718,3070bpr0144,4,1,f +5718,3857,10,1,f +5718,48336,15,1,f +5721,2376,4,1,f +5721,3004,15,1,f +5721,3004,4,2,f +5721,3004pr20,15,1,f +5721,3022,72,1,f +5721,3022,15,1,f +5721,3039,4,1,f +5721,3040b,4,2,f +5721,3660,71,1,f +5721,56823,0,1,f +5723,132a,0,8,f +5723,3001a,4,40,f +5723,3001a,14,38,f +5723,3001a,15,44,f +5723,3001a,1,16,f +5723,3001a,0,12,f +5723,3002a,0,2,f +5723,3002a,14,12,f +5723,3002a,15,10,f +5723,3002a,1,2,f +5723,3002a,4,4,f +5723,3003,0,4,f +5723,3003,15,16,f +5723,3003,1,4,f +5723,3003,14,10,f +5723,3003,4,16,f +5723,3004,15,14,f +5723,3004,4,8,f +5723,3004,47,12,f +5723,3005,4,14,f +5723,3005,15,4,f +5723,3006,4,4,f +5723,3006,15,2,f +5723,3006,1,4,f +5723,3007,1,4,f +5723,3009,15,4,f +5723,3032,15,4,f +5723,3081cc01,4,6,f +5723,3297,4,20,f +5723,3298,4,20,f +5723,3299,4,3,f +5723,3300,4,3,f +5723,3404ac01,15,1,f +5723,3471,2,2,f +5723,3579,4,3,f +5723,3581,15,8,f +5723,3582,1,8,f +5723,453cc01,15,3,f +5723,453cc01,4,2,f +5723,604c01,4,4,f +5723,700ed,2,2,f +5723,7039,4,8,f +5723,7049b,0,4,f +5723,7930,15,3,f +5726,3626bpr0875,322,1,f +5726,40235,85,1,f +5726,88646,0,1,f +5726,973pr1946ac01,85,1,f +5726,98376,322,1,f +5726,98379pr0002,297,1,f +5726,98383,297,1,f +5730,11090,72,1,f +5730,11203,72,1,f +5730,11211,71,5,f +5730,11289,41,1,f +5730,11303,272,1,f +5730,13731,15,2,f +5730,14137,0,2,f +5730,15068,72,3,f +5730,15573,0,1,f +5730,15573,14,1,f +5730,15672,15,4,f +5730,17485,14,4,f +5730,19220,0,1,f +5730,2412b,72,1,f +5730,2444,15,1,f +5730,2445,4,1,f +5730,2446,15,1,f +5730,2447,40,1,f +5730,2447,40,1,t +5730,2460,72,1,f +5730,2479,0,1,f +5730,2508,0,1,f +5730,2540,14,1,f +5730,2569,0,2,f +5730,2654,71,2,f +5730,2780,0,4,f +5730,2780,0,1,t +5730,2877,71,1,f +5730,298c02,71,1,t +5730,298c02,71,2,f +5730,3003,14,2,f +5730,3003,15,1,f +5730,30031,72,1,f +5730,30086,326,1,f +5730,30136,72,2,f +5730,3020,72,1,f +5730,3020,0,1,f +5730,3021,15,3,f +5730,3021,72,2,f +5730,3022,0,4,f +5730,3023,46,2,f +5730,3023,33,6,f +5730,3023,36,2,f +5730,3024,34,1,t +5730,3024,36,1,f +5730,3024,36,1,t +5730,3024,33,4,f +5730,3024,33,1,t +5730,3024,34,1,f +5730,3034,72,1,f +5730,30340,14,2,f +5730,30367c,14,2,f +5730,3039,15,1,f +5730,3039,70,1,f +5730,30602,15,4,f +5730,3062b,14,3,f +5730,3069b,15,1,f +5730,3069bpr0115,15,2,f +5730,32316,72,2,f +5730,3245b,15,2,f +5730,3245b,71,1,f +5730,3626cpr0499,14,1,f +5730,3626cpr1145,14,1,f +5730,3626cpr1146,14,1,f +5730,3626cpr1147,14,1,f +5730,3626cpr1580,14,1,f +5730,3660,71,1,f +5730,3666,71,2,f +5730,3666,4,2,f +5730,3673,71,1,f +5730,3673,71,1,t +5730,3678b,15,2,f +5730,3710,1,4,f +5730,3710,72,2,f +5730,3747a,72,1,f +5730,3795,72,1,f +5730,3795,0,2,f +5730,3829c01,15,1,f +5730,3829c01,14,2,f +5730,3834,320,2,f +5730,3839b,0,1,f +5730,3941,14,4,f +5730,4083,15,1,f +5730,41334,0,1,f +5730,41770,15,1,f +5730,4345b,15,2,f +5730,4346,15,2,f +5730,4349,4,1,f +5730,43713,15,1,f +5730,43722,1,1,f +5730,43723,1,1,f +5730,44301a,0,2,f +5730,44674,1,2,f +5730,44728,14,2,f +5730,44728,71,1,f +5730,45677,15,1,f +5730,4599b,14,2,f +5730,4599b,14,1,t +5730,47456,72,1,f +5730,47457,72,1,f +5730,48336,2,1,f +5730,48336,0,1,f +5730,4871,72,1,f +5730,4871,15,1,f +5730,56890,0,6,f +5730,59900,72,2,f +5730,59900,14,1,f +5730,6014b,71,6,f +5730,60475b,72,2,f +5730,60897,1,2,f +5730,6126a,41,1,f +5730,6126b,182,1,f +5730,61482,71,1,t +5730,61482,71,1,f +5730,6157,0,3,f +5730,6239,15,1,f +5730,6249,72,2,f +5730,62812,4,1,f +5730,63082,0,1,f +5730,63864,1,2,f +5730,63868,72,6,f +5730,64647,182,2,f +5730,64647,182,1,t +5730,72454,15,1,f +5730,72454,72,1,f +5730,84954,41,1,f +5730,87989,71,1,t +5730,87989,71,1,f +5730,88072,4,1,f +5730,88072,0,3,f +5730,92585,4,1,f +5730,92590,28,1,f +5730,92593,15,2,f +5730,92842,0,1,f +5730,93140,15,1,f +5730,96874,25,1,t +5730,970c00,72,1,f +5730,970c00,4,1,f +5730,970c00,272,1,f +5730,970c00pr0408,0,2,f +5730,973pr1976c01,4,1,f +5730,973pr2189c01,0,2,f +5730,973pr2190c01,73,1,f +5730,973pr2502c01,15,1,f +5730,97895,14,3,f +5730,98138,46,2,t +5730,98138,46,4,f +5730,98313,72,1,f +5730,99206,15,1,f +5730,99781,15,2,f +5732,3002a,15,15,f +5732,3002a,1,15,f +5732,3002a,4,15,f +5732,3002a,14,15,f +5734,2335px1,0,1,f +5734,2431,1,1,f +5734,2555,0,2,f +5734,2873,0,1,f +5734,30173a,7,1,f +5734,30177,4,1,f +5734,30237a,8,1,f +5734,3031,0,1,f +5734,3626bpx7,14,1,f +5734,3957a,7,1,f +5734,4070,8,2,f +5734,4315,1,1,f +5734,4865a,1,2,f +5734,6133,57,2,f +5734,970x026,4,1,f +5734,973pb0240c01,4,1,f +5735,14418,71,1,f +5735,14769,71,2,f +5735,15573,72,2,f +5735,2412b,72,3,f +5735,2736,71,1,f +5735,2780,0,1,t +5735,2780,0,1,f +5735,3020,71,1,f +5735,3021,71,3,f +5735,3022,14,1,f +5735,3023,36,2,f +5735,30383,0,2,f +5735,32054,71,1,f +5735,32530,72,1,f +5735,3623,71,6,f +5735,3710,72,2,f +5735,4081b,71,2,f +5735,43722,71,2,f +5735,43723,71,2,f +5735,44301a,71,4,f +5735,44302a,72,6,f +5735,4740,71,2,f +5735,47905,71,1,f +5735,50950,72,1,f +5735,52107,71,1,f +5735,54200,72,4,f +5735,54200,72,1,t +5735,6141,0,1,t +5735,6141,0,4,f +5735,6541,0,1,f +5735,85984,72,2,f +5735,92946,72,2,f +5735,99207,71,1,f +5735,99781,0,1,f +5737,2412b,72,1,f +5737,2436,15,4,f +5737,2555,72,1,f +5737,2569,0,1,f +5737,2723,0,2,f +5737,2780,0,1,t +5737,2780,0,4,f +5737,2817,0,1,f +5737,3003,0,3,f +5737,3010,2,1,f +5737,3022,0,2,f +5737,30228,72,1,f +5737,30373,72,1,f +5737,30384,40,1,f +5737,3039,2,2,f +5737,3040b,2,6,f +5737,3040b,0,4,f +5737,3049b,0,2,f +5737,30552,72,3,f +5737,30553,0,3,f +5737,3062b,27,5,f +5737,3068b,2,4,f +5737,32001,0,2,f +5737,32028,0,2,f +5737,32034,71,1,f +5737,32064b,72,2,f +5737,32072,0,2,f +5737,32192,0,2,f +5737,32270,0,1,f +5737,32530,72,1,f +5737,32558pat0001,4,1,f +5737,3626bpr0445,14,1,f +5737,3660,0,2,f +5737,3660,2,2,f +5737,3666,2,5,f +5737,3678b,0,2,f +5737,3705,0,1,f +5737,3713,71,1,t +5737,3713,71,1,f +5737,3737,0,1,f +5737,3794a,2,2,f +5737,3795,72,4,f +5737,3839b,0,2,f +5737,3937,15,1,f +5737,3957a,0,1,f +5737,4070,2,4,f +5737,4095,0,3,f +5737,42022,2,2,f +5737,42446,72,2,f +5737,4286,72,2,f +5737,43712,288,2,f +5737,44126,288,2,f +5737,4519,71,4,f +5737,4588,72,2,f +5737,4589,42,3,f +5737,4589,4,2,f +5737,4740,33,1,f +5737,47452,72,2,f +5737,47455,0,4,f +5737,47905,72,1,f +5737,48171,72,2,f +5737,48172,0,1,f +5737,4871,0,2,f +5737,48729a,0,3,f +5737,50947,27,1,f +5737,53981,73,1,f +5737,53989,0,2,f +5737,54200,27,10,f +5737,54200,47,2,f +5737,57565,4,3,f +5737,57585,71,1,f +5737,57909a,72,4,f +5737,59229,4,2,f +5737,59443,72,1,f +5737,60475a,0,4,f +5737,60478,72,1,f +5737,60849,71,2,f +5737,61072,135,2,f +5737,6134,0,1,f +5737,61406pat0002,27,4,f +5737,61409,27,4,f +5737,6141,36,1,t +5737,6141,36,1,f +5737,62712,72,4,f +5737,8114cdb01,9999,1,t +5737,970x026,15,1,f +5737,973pr1359c01,15,1,f +5738,2357,15,2,f +5738,2412b,15,14,f +5738,2419,71,2,f +5738,2431,4,2,f +5738,2432,14,5,f +5738,2432,15,4,f +5738,2447,40,1,f +5738,2447,40,1,t +5738,2450,71,4,f +5738,2456,4,1,f +5738,2516,14,4,f +5738,2610,14,4,f +5738,2634c01,15,1,f +5738,2654,71,1,f +5738,2744,15,2,f +5738,2780,0,1,t +5738,2780,0,1,f +5738,2877,4,6,f +5738,298c02,4,2,t +5738,298c02,4,2,f +5738,3001,71,6,f +5738,3002,1,1,f +5738,3003,4,6,f +5738,30033,15,1,f +5738,3004,14,4,f +5738,3005,4,2,f +5738,3006,4,4,f +5738,3008,4,3,f +5738,30086,14,1,f +5738,3009,14,2,f +5738,3020,4,2,f +5738,3021,71,3,f +5738,3023,46,1,f +5738,3023,4,4,f +5738,30237a,15,2,f +5738,3024,72,2,f +5738,3024,4,2,f +5738,3031,71,1,f +5738,3032,71,1,f +5738,3034,71,2,f +5738,30340,14,2,f +5738,3036,15,1,f +5738,3039,15,2,f +5738,3039,4,6,f +5738,3039pr0002,15,2,f +5738,3039pr0005,15,2,f +5738,3039pr0013,15,1,f +5738,3040b,15,2,f +5738,3062b,14,6,f +5738,30663,0,1,f +5738,3068b,15,1,f +5738,3068b,4,2,f +5738,3069b,33,2,f +5738,3070b,34,1,t +5738,3070b,36,6,f +5738,3070b,34,3,f +5738,3070b,36,2,t +5738,3176,71,1,f +5738,32062,0,1,f +5738,32123b,14,2,f +5738,32123b,14,1,t +5738,32184,15,1,f +5738,32524,15,1,f +5738,3622,15,4,f +5738,3623,4,2,f +5738,3626bpr0386,14,1,f +5738,3626bpr0389,14,1,f +5738,3626bpr0498,14,1,f +5738,3626bpr0499,14,1,f +5738,3665,15,6,f +5738,3679,71,1,f +5738,3680,4,1,f +5738,3700,15,2,f +5738,3794b,72,2,f +5738,3795,1,2,f +5738,3829c01,14,1,f +5738,3834,15,3,f +5738,3834,80,1,f +5738,3835,0,1,f +5738,3838,14,1,f +5738,3899,47,4,f +5738,3942c,4,1,f +5738,3962b,0,1,f +5738,4079,14,2,f +5738,4151b,71,1,f +5738,41532,0,1,f +5738,41539,71,2,f +5738,4274,1,2,t +5738,4274,1,3,f +5738,4289,15,1,f +5738,43093,1,2,f +5738,4349,0,2,f +5738,44570,71,2,f +5738,44675,71,1,f +5738,44728,72,3,f +5738,44809,71,1,f +5738,4589,34,1,f +5738,4589,14,6,f +5738,4599b,14,2,f +5738,4623,72,6,f +5738,48336,71,6,f +5738,51858,15,1,f +5738,53989,15,6,f +5738,54200,33,2,t +5738,54200,33,5,f +5738,57779,4,1,f +5738,58181,41,1,f +5738,60470a,15,1,f +5738,60476,71,2,f +5738,60478,15,1,f +5738,60592,15,6,f +5738,60601,41,6,f +5738,61072,0,1,f +5738,61409,4,6,f +5738,61409,72,2,f +5738,6141,46,1,t +5738,6141,46,2,f +5738,61484,4,1,f +5738,61485,0,1,f +5738,6158,72,1,f +5738,62360,15,1,f +5738,62361,15,1,f +5738,62791c01,4,1,f +5738,63965,15,1,f +5738,6536,71,1,f +5738,6636,15,8,f +5738,87081,72,1,f +5738,87083,72,1,f +5738,87087,15,2,f +5738,87617,4,3,f +5738,87618,71,1,f +5738,95120,72,2,f +5738,970c00,0,4,f +5738,973pr1187c01,0,4,f +5739,14728c100,0,1,f +5739,2431,27,2,f +5739,2456,4,1,f +5739,2780,0,14,f +5739,3001,4,3,f +5739,3002,4,4,f +5739,3004,14,6,f +5739,3005,4,8,f +5739,3009,14,2,f +5739,3021,15,4,f +5739,3023,15,9,f +5739,30395,72,1,f +5739,3069b,27,2,f +5739,3176,14,2,f +5739,32012,14,1,f +5739,32039,4,16,f +5739,32054,71,10,f +5739,32062,4,10,f +5739,32073,71,8,f +5739,32123b,14,10,f +5739,32530,4,14,f +5739,3298,14,5,f +5739,33299a,71,1,f +5739,3623,15,2,f +5739,3626bpr0495,14,1,f +5739,3626bpr0500,14,1,f +5739,3647,72,2,f +5739,3648b,72,2,f +5739,3649,71,1,f +5739,3666,15,16,f +5739,3673,71,4,f +5739,3701,4,3,f +5739,3702,4,2,f +5739,3703,4,12,f +5739,3705,0,6,f +5739,3708,0,8,f +5739,3709,15,9,f +5739,3710,15,3,f +5739,3713,71,10,f +5739,3747b,4,4,f +5739,3747b,14,2,f +5739,3749,19,6,f +5739,3865,72,1,f +5739,3894,4,3,f +5739,3895,4,4,f +5739,4019,71,2,f +5739,4185,27,3,f +5739,42022,4,2,f +5739,4274,1,5,f +5739,4286,4,2,f +5739,44294,71,2,f +5739,53982,4,1,f +5739,56898,0,4,f +5739,56904,15,4,f +5739,59426,72,2,f +5739,59443,0,18,f +5739,60474,72,1,f +5739,60485,71,2,f +5739,60596,15,1,f +5739,60623,14,1,f +5739,6141,15,8,f +5739,6141,14,6,f +5739,6141,27,8,f +5739,61485,0,1,f +5739,6222,15,2,f +5739,62462,14,1,f +5739,63082,71,1,f +5739,6558,1,6,f +5739,85546,14,2,f +5739,86035,27,1,f +5739,970c00,70,2,f +5739,973pr1204c01,15,2,f +5741,2432,0,1,f +5741,2446,15,1,f +5741,2447,0,1,f +5741,3039,0,1,f +5741,3062b,7,2,f +5741,3626bp05,14,1,f +5741,3641,0,4,f +5741,3795,4,1,f +5741,3829c01,0,1,f +5741,4624,15,4,f +5741,6157,0,2,f +5741,970c00,1,1,f +5741,973pr1156c01,1,1,f +5742,3317,14,1,f +5742,3433,14,1,f +5742,828,4,1,f +5744,14226c11,0,1,f +5744,23306,7,2,f +5744,23306,383,1,f +5744,2357,0,4,f +5744,2412b,0,5,f +5744,2412b,8,12,f +5744,2412b,379,4,f +5744,2420,8,12,f +5744,2431,8,17,f +5744,2432,1,5,f +5744,2432,7,3,f +5744,2433,0,2,f +5744,2444,1,8,f +5744,2445,8,1,f +5744,2445,7,2,f +5744,2462,7,16,f +5744,2524,8,1,f +5744,2540,8,1,f +5744,2555,8,6,f +5744,2625,0,1,f +5744,2653,7,6,f +5744,2714a,7,2,f +5744,2780,0,52,f +5744,30000,1,4,f +5744,3001,1,4,f +5744,3003,1,2,f +5744,30031,0,1,f +5744,3004,1,3,f +5744,3005,8,10,f +5744,3007,1,1,f +5744,3008,7,4,f +5744,3009,0,8,f +5744,3010,19,2,f +5744,3020,7,15,f +5744,3020,8,8,f +5744,3020,19,8,f +5744,3021,7,25,f +5744,3021,0,2,f +5744,3021,8,3,f +5744,3022,8,13,f +5744,3023,15,1,f +5744,3023,8,39,f +5744,3024,8,8,f +5744,30258,8,3,f +5744,30259,15,2,f +5744,30283,7,1,f +5744,3029,8,4,f +5744,3030,7,1,f +5744,3030,8,2,f +5744,3031,4,4,f +5744,3031,0,1,f +5744,3032,1,1,f +5744,3034,8,23,f +5744,3035,0,2,f +5744,30359b,8,4,f +5744,3036,8,2,f +5744,30363,4,2,f +5744,3037,8,2,f +5744,30370ps2,15,1,f +5744,30374,8,2,f +5744,30374,41,1,f +5744,30408px3,15,1,f +5744,3040b,7,12,f +5744,3041pb002,7,1,f +5744,3048c,4,6,f +5744,30553,8,10,f +5744,30592,1,2,f +5744,3063b,8,6,f +5744,3068b,8,11,f +5744,3069bpr0090,8,1,f +5744,3176,0,3,f +5744,32001,1,2,f +5744,32005a,8,4,f +5744,32013,8,11,f +5744,32014,8,2,f +5744,32028,0,6,f +5744,32062,4,2,f +5744,32064b,4,4,f +5744,32123b,7,1,t +5744,32123b,7,3,f +5744,32324,7,1,f +5744,32532,8,5,f +5744,3298,8,1,f +5744,33243,8,8,f +5744,3455,7,8,f +5744,3460,7,4,f +5744,3623,7,10,f +5744,3626b,0,2,f +5744,3626b,14,1,f +5744,3626bps3,14,1,f +5744,3660,8,8,f +5744,3665,7,4,f +5744,3665,1,6,f +5744,3666,8,16,f +5744,3666,7,4,f +5744,3673,7,8,f +5744,3679,7,2,f +5744,3680,1,2,f +5744,3684,14,4,f +5744,3684,7,2,f +5744,3700,7,12,f +5744,3701,7,2,f +5744,3702,7,6,f +5744,3703,7,4,f +5744,3705,0,4,f +5744,3709,7,12,f +5744,3710,0,1,f +5744,3710,7,18,f +5744,3747a,7,2,f +5744,3749,19,12,f +5744,3794a,8,4,f +5744,3795,8,22,f +5744,3832,8,2,f +5744,3839b,15,1,f +5744,3895,7,6,f +5744,3937,7,6,f +5744,3938,4,2,f +5744,3958,7,2,f +5744,3960,7,2,f +5744,3960pr0005,7,4,f +5744,4032a,0,7,f +5744,4070,1,10,f +5744,4085c,7,2,f +5744,4088,379,4,f +5744,40902,0,2,f +5744,41531,8,2,f +5744,41532,0,10,f +5744,4162,7,1,f +5744,41747,15,1,f +5744,41748,15,1,f +5744,41769,7,11,f +5744,41769,8,1,f +5744,41770,8,1,f +5744,41770,7,11,f +5744,41854,8,1,f +5744,41862,15,1,f +5744,4274,1,1,t +5744,4274,1,28,f +5744,4286,7,6,f +5744,4287,7,4,f +5744,4328,7,2,f +5744,4349,0,3,f +5744,43719,8,1,f +5744,43720,8,1,f +5744,43721,8,1,f +5744,43722,8,3,f +5744,43722,7,27,f +5744,43723,8,3,f +5744,43723,7,27,f +5744,43898,8,6,f +5744,44224,0,8,f +5744,44225,7,8,f +5744,44294,7,1,f +5744,44300,8,8,f +5744,44302a,7,6,f +5744,44360,15,2,f +5744,44375a,8,4,f +5744,44375apr01,7,4,f +5744,44661,379,2,f +5744,4477,8,2,f +5744,45677,8,3,f +5744,4623,7,4,f +5744,4740,8,8,f +5744,4864b,7,1,f +5744,4865a,7,18,f +5744,6019,7,2,f +5744,6111,7,4,f +5744,6120,8,2,f +5744,6134,1,4,f +5744,6141,0,1,t +5744,6141,57,1,t +5744,6141,1,14,f +5744,6141,0,1,f +5744,6141,57,2,f +5744,6141,1,1,t +5744,6178,7,4,f +5744,6179,7,6,f +5744,6180,7,9,f +5744,6183,7,4,f +5744,6222,8,2,f +5744,6222,7,4,f +5744,6231,4,2,f +5744,6232,14,1,f +5744,6541,7,10,f +5744,6558,0,15,f +5744,6587,8,2,f +5744,6628,0,8,f +5744,6636,8,14,f +5744,6636,7,2,f +5744,75c10,8,2,f +5744,970x002,8,1,f +5744,970x002,15,2,f +5744,970x027,25,1,f +5744,973pb0270c01,15,1,f +5744,973pr1301c01,25,1,f +5744,973pr1344c01,15,2,f +5745,3626bpb0038,15,1,f +5745,41875,6,1,f +5745,970c00,6,1,f +5745,973pb0050c01,14,1,f +5748,122c01,0,2,f +5748,3001,0,1,f +5748,3003,4,2,f +5748,3004,0,2,f +5748,3004,14,11,f +5748,3004,1,4,f +5748,3004,4,8,f +5748,3005,4,14,f +5748,3005,14,8,f +5748,3009,14,1,f +5748,3009,0,8,f +5748,3010,4,7,f +5748,3010,14,2,f +5748,3010,0,1,f +5748,3020,14,1,f +5748,3021,14,2,f +5748,3021,0,2,f +5748,3022,0,6,f +5748,3023,0,2,f +5748,3023,14,4,f +5748,3024,0,8,f +5748,3024,4,4,f +5748,3027,0,1,f +5748,3028,7,2,f +5748,3032,4,4,f +5748,3032,7,1,f +5748,3033,0,1,f +5748,3035,0,1,f +5748,3036,0,1,f +5748,3037,7,2,f +5748,3039,4,2,f +5748,3039,7,2,f +5748,3081cc01,4,4,f +5748,3134,4,1,f +5748,3149c01,0,1,f +5748,3218,4,1,f +5748,3228b,7,8,f +5748,3229b,7,16,f +5748,3230b,7,16,f +5748,3297,7,11,f +5748,3298,7,2,f +5748,3314,0,1,f +5748,3317,14,1,f +5748,3433,14,1,f +5748,3443c02,1,1,f +5748,3460,7,2,f +5748,3460,0,2,f +5748,3488,0,4,f +5748,3581,4,4,f +5748,3582,4,4,f +5748,3623,0,4,f +5748,3623,4,4,f +5748,3624,4,2,f +5748,3626apr0001,14,3,f +5748,3633,7,8,f +5748,3665,0,16,f +5748,3666,0,15,f +5748,3666,7,2,f +5748,3710,4,4,f +5748,3710,14,5,f +5748,3710,7,2,f +5748,3710,0,4,f +5748,3794a,0,8,f +5748,3795,4,5,f +5748,3795,0,4,f +5748,3795,14,1,f +5748,3829c01,14,1,f +5748,3832,0,2,f +5748,3833,4,1,f +5748,3853,14,4,f +5748,3856,14,8,f +5748,4022,0,4,f +5748,4023,0,6,f +5748,4033,4,1,f +5748,4034,47,1,f +5748,4035,4,1,f +5748,4036,47,1,f +5748,4070,0,2,f +5748,4070,4,8,f +5748,4081a,0,2,f +5748,4083,0,1,f +5748,4084,0,4,f +5748,4175,7,2,f +5748,4178,0,1,f +5748,4180c04,4,4,f +5748,4181,4,2,f +5748,4182,4,2,f +5748,4183,47,4,f +5748,458,7,4,f +5748,6141,46,6,f +5748,6141,36,6,f +5748,699,7,1,f +5748,73092,0,6,f +5748,767,8,40,f +5748,812,7,1,f +5748,813,7,1,f +5748,815c01,15,1,f +5748,815c02,15,1,f +5748,970c00,1,3,f +5748,973p18c01,1,1,f +5748,973p26c01,1,2,f +5748,trainsig2,4,1,f +5748,wheel2a,4,4,f +5748,x466c11,15,1,f +5748,x469b,0,1,f +5748,x489,4,1,f +5749,3001,0,2,f +5749,3001,14,2,f +5749,3002,0,1,f +5749,3002,14,1,f +5749,3003,4,2,f +5749,3003,0,2,f +5749,3003,14,6,f +5749,3003pe1,14,1,f +5750,2339,70,2,f +5750,2357,19,2,f +5750,2412b,72,2,f +5750,2431,0,4,f +5750,2432,0,4,f +5750,2446,0,1,f +5750,2453a,19,4,f +5750,2454a,19,2,f +5750,2458,71,2,f +5750,2465,19,1,f +5750,2489,70,1,f +5750,2587pr0018,0,1,f +5750,2587pr0019,0,1,f +5750,2723,0,3,f +5750,2780,0,1,t +5750,2780,0,2,f +5750,2817,0,1,f +5750,298c02,4,1,t +5750,298c02,4,2,f +5750,3001,72,3,f +5750,3003,19,10,f +5750,3003,72,1,f +5750,3004,71,8,f +5750,30041,72,1,f +5750,30042,72,1,f +5750,3005,19,2,f +5750,30136,70,6,f +5750,30137,70,2,f +5750,30150,70,1,f +5750,30173a,0,3,f +5750,3020,19,2,f +5750,3021,71,4,f +5750,3022,15,1,f +5750,3022,72,2,f +5750,3023,0,8,f +5750,3023,19,12,f +5750,3024,70,2,f +5750,3031,0,1,f +5750,3032,19,2,f +5750,3032,72,2,f +5750,3039,378,3,f +5750,3039,1,1,f +5750,30395,72,1,f +5750,3040b,378,2,f +5750,3040b,72,4,f +5750,3040b,15,12,f +5750,3040b,19,16,f +5750,30414,72,2,f +5750,3045,19,2,f +5750,3048c,378,1,f +5750,30562,19,2,f +5750,30565,19,4,f +5750,3062b,70,14,f +5750,3062b,34,10,f +5750,3062b,19,6,f +5750,30635,0,1,f +5750,30636,72,1,f +5750,3068b,4,2,f +5750,3069b,15,5,f +5750,3069b,72,4,f +5750,3069b,70,2,f +5750,3069b,0,4,f +5750,3070b,15,1,t +5750,3070b,0,2,f +5750,3070b,15,7,f +5750,3070b,0,1,t +5750,32001,0,2,f +5750,32013,0,1,f +5750,32018,0,1,f +5750,32062,0,4,f +5750,32073,71,1,f +5750,32083,71,1,f +5750,32123b,71,1,t +5750,32123b,71,3,f +5750,32192,0,1,f +5750,32449,72,2,f +5750,32532,0,1,f +5750,32556,71,1,f +5750,3298,19,2,f +5750,3298,72,1,f +5750,3460,70,2,f +5750,3460,19,2,f +5750,3623,19,10,f +5750,3623,0,4,f +5750,3626bpr0465,78,1,f +5750,3626bpr0467,78,1,f +5750,3626bpr0470a,78,1,f +5750,3626bpr0489,15,1,f +5750,3659,19,2,f +5750,3660,72,2,f +5750,3665,70,2,f +5750,3666,71,4,f +5750,3700,72,4,f +5750,3701,19,2,f +5750,3709,0,2,f +5750,3710,71,4,f +5750,3749,19,4,f +5750,3794a,71,1,f +5750,3794a,4,3,f +5750,3795,72,1,f +5750,3828stk01,9999,1,t +5750,3830,70,4,f +5750,3831,70,4,f +5750,3832,19,2,f +5750,3844,320,1,f +5750,3848,0,4,f +5750,3849,0,1,f +5750,3857,15,1,f +5750,3960,47,1,f +5750,4032a,0,1,f +5750,4085c,0,6,f +5750,41677,71,5,f +5750,41862,71,1,f +5750,43710,72,2,f +5750,43711,72,2,f +5750,43898,72,1,f +5750,4460a,19,4,f +5750,4477,19,1,f +5750,4519,71,2,f +5750,4589,19,3,f +5750,4735,0,1,f +5750,47543pr0001,378,1,f +5750,48092,378,2,f +5750,48489,320,1,f +5750,4865a,0,5,f +5750,53990,0,1,f +5750,53993pat0001,4,8,f +5750,56093,19,1,f +5750,56217,47,1,f +5750,56823,0,1,f +5750,6005,0,2,f +5750,6083,72,2,f +5750,6091,0,4,f +5750,6111,19,1,f +5750,6126a,57,2,f +5750,6141,33,2,f +5750,6141,4,4,f +5750,6141,72,1,t +5750,6141,4,1,t +5750,6141,33,1,t +5750,6141,72,4,f +5750,6222,72,4,f +5750,6538b,71,1,f +5750,6553,0,1,f +5750,6587,72,1,f +5750,6632,1,1,f +5750,6636,72,2,f +5750,6636,70,2,f +5750,71509,0,2,t +5750,970c00,0,2,f +5750,970c00pr0109,70,1,f +5750,970c00pr0110,70,1,f +5750,973c08,0,2,f +5750,973pr1260c01,14,1,f +5750,973pr1262c01,1,1,f +5751,10173,1000,1,f +5751,2417,288,1,f +5751,2877,72,1,f +5751,3005,72,2,f +5751,30093,288,3,f +5751,3010,72,1,f +5751,30103,0,1,f +5751,30104,71,1,f +5751,30115,4,1,f +5751,30115,2,1,f +5751,3023,72,2,f +5751,30238,0,1,f +5751,3032,70,1,f +5751,3069bpr0127,72,1,f +5751,3070b,72,5,f +5751,33320,2,1,f +5751,3626bpr0619,71,1,f +5751,3626bpr0693,10,1,f +5751,3626c,0,1,f +5751,3666,288,2,f +5751,3678bpr0001,0,1,f +5751,3794b,72,2,f +5751,3962b,0,1,f +5751,40234,71,1,f +5751,4070,72,4,f +5751,4332,70,1,f +5751,4449,0,1,f +5751,54200,70,6,f +5751,55236,288,3,f +5751,6091,72,2,f +5751,90460,0,1,f +5751,970c00pr0405,70,1,f +5751,973c09,15,1,f +5751,973pr1658c01,0,1,f +5751,973pr2184c01,70,1,f +5753,87578,72,1,f +5754,11153,0,2,f +5754,11153,15,2,f +5754,11217pr0001,15,1,f +5754,11331pr0001,15,1,f +5754,11614,484,1,f +5754,12825,71,2,f +5754,13731,0,2,f +5754,13731,15,2,f +5754,13731,320,2,f +5754,2412b,71,1,f +5754,2420,15,2,f +5754,2431,15,3,f +5754,2431,320,6,f +5754,2431,0,2,f +5754,2432,71,2,f +5754,2444,15,10,f +5754,2450,320,2,f +5754,2654,15,2,f +5754,2723,0,2,f +5754,2730,0,4,f +5754,2780,0,17,f +5754,2780,0,2,t +5754,3003,71,2,f +5754,3004,0,2,f +5754,3020,71,3,f +5754,3021,71,2,f +5754,3021,15,10,f +5754,3022,19,4,f +5754,3022,15,3,f +5754,3023,0,5,f +5754,3023,71,6,f +5754,30237b,71,1,f +5754,3029,15,2,f +5754,30304,72,1,f +5754,3031,15,1,f +5754,3032,15,1,f +5754,3034,15,4,f +5754,30355,15,1,f +5754,30356,15,1,f +5754,30374,35,2,f +5754,30374,41,2,f +5754,3039,71,1,f +5754,3039,0,2,f +5754,3040b,15,2,f +5754,30414,19,2,f +5754,30553,0,2,f +5754,30554b,0,1,f +5754,3068b,15,3,f +5754,3069b,320,4,f +5754,3069b,15,5,f +5754,32002,19,3,f +5754,32002,19,2,t +5754,32013,0,2,f +5754,32034,320,4,f +5754,32062,0,2,f +5754,32123b,14,1,t +5754,32123b,14,2,f +5754,32140,71,1,f +5754,32523,15,5,f +5754,32556,19,5,f +5754,3460,1,2,f +5754,3623,72,4,f +5754,3626cpr0525,78,2,f +5754,3659,71,2,f +5754,3666,320,1,f +5754,3666,15,5,f +5754,3702,71,2,f +5754,3705,0,3,f +5754,3710,0,4,f +5754,3713,4,6,f +5754,3713,4,1,t +5754,3737,0,2,f +5754,3795,0,2,f +5754,3795,15,3,f +5754,3937,71,2,f +5754,4032a,0,4,f +5754,4070,71,8,f +5754,41531,15,6,f +5754,4162,0,2,f +5754,41747,0,1,f +5754,41748,0,1,f +5754,41764,0,1,f +5754,41765,0,1,f +5754,41769,0,1,f +5754,41770,0,1,f +5754,4185,71,2,f +5754,42003,71,1,f +5754,42023,15,2,f +5754,4274,1,1,t +5754,4274,1,2,f +5754,4282,15,1,f +5754,43093,1,3,f +5754,43722,15,1,f +5754,43723,15,1,f +5754,44300,72,3,f +5754,4519,71,5,f +5754,45301,320,1,f +5754,4589,320,2,f +5754,4740,57,2,f +5754,4740,15,2,f +5754,55013,72,2,f +5754,55982,71,2,f +5754,57028c01,71,1,f +5754,57520,0,2,f +5754,57796,72,1,f +5754,58247,0,1,f +5754,59443,70,4,f +5754,60208,15,6,f +5754,60208,320,2,f +5754,60471,15,1,f +5754,60479,0,2,f +5754,60479,15,2,f +5754,6091,0,2,f +5754,6091,320,2,f +5754,6134,15,2,f +5754,6141,71,6,f +5754,6141,71,3,t +5754,6180,0,1,f +5754,6231,19,2,f +5754,6231,0,2,f +5754,6233,0,2,f +5754,62462,14,2,f +5754,62462,320,2,f +5754,63864,71,2,f +5754,63965,15,2,f +5754,64567,80,2,f +5754,6536,15,2,f +5754,6558,1,10,f +5754,6628,0,3,f +5754,85543,15,1,f +5754,85984,15,3,f +5754,85984,19,3,f +5754,85984,0,6,f +5754,87079,15,4,f +5754,91501,15,2,f +5754,92279,47,1,f +5754,92279,15,1,f +5754,92280,15,4,f +5754,92593,71,2,f +5754,92947,0,2,f +5754,96874,25,1,t +5754,970c01pr0475,15,1,f +5754,970c150pr0483,84,1,f +5754,970x026,15,1,f +5754,973pr2284c01,15,1,f +5754,973pr2306c01,15,1,f +5754,973pr2309c01,484,1,f +5754,99207,71,2,f +5754,99780,72,1,f +5754,99781,71,2,f +5756,2431,15,1,f +5756,2432,15,1,f +5756,2540,1,1,f +5756,3005,41,2,f +5756,3010,7,2,f +5756,30136,8,4,f +5756,30157,8,2,f +5756,3020,1,1,f +5756,3020,15,1,f +5756,3021,1,2,f +5756,3022,1,2,f +5756,3023,15,4,f +5756,3023,1,1,f +5756,30236,0,1,f +5756,3024,46,4,f +5756,3024,36,4,f +5756,3032,15,3,f +5756,3032,0,1,f +5756,3035,7,2,f +5756,30365,8,2,f +5756,30383,8,2,f +5756,3069b,0,3,f +5756,3069b,1,2,f +5756,3297,1,1,f +5756,3460,1,2,f +5756,3483,0,4,f +5756,3622,15,2,f +5756,3626bp03,14,1,f +5756,3626bp05,14,1,f +5756,3626bpa3,14,1,f +5756,3626bpr0001,14,2,f +5756,3626bpx19,14,1,f +5756,3665,7,2,f +5756,3666,15,1,f +5756,3666,0,1,f +5756,3710,1,6,f +5756,3795,0,2,f +5756,3795,1,2,f +5756,3829c01,0,1,f +5756,3855,41,7,f +5756,3901,6,2,f +5756,3901,0,2,f +5756,3901,19,1,f +5756,4033,1,7,f +5756,4085c,7,2,f +5756,4162,7,4,f +5756,4176,41,2,f +5756,4282,7,1,f +5756,4287,7,2,f +5756,4349,0,2,f +5756,4485,1,1,f +5756,6112,15,2,f +5756,6248,7,4,f +5756,72824p01,15,1,f +5756,970c00,15,5,f +5756,970c00,0,1,f +5756,973c07,1,5,f +5756,973c12,2,1,f +5757,2346,0,4,f +5757,2357,4,2,f +5757,2357,15,2,f +5757,2357,14,2,f +5757,2357,1,2,f +5757,2446p01,15,1,f +5757,2447,41,1,f +5757,2447,41,1,t +5757,3001,14,2,f +5757,3001,15,2,f +5757,3001,0,1,f +5757,3001,1,2,f +5757,3001,4,1,f +5757,3002,4,2,f +5757,3002,1,4,f +5757,3002,15,4,f +5757,3002,14,4,f +5757,3003,4,4,f +5757,3003,0,4,f +5757,3003,14,4,f +5757,3003,15,4,f +5757,3003,1,4,f +5757,3004,15,18,f +5757,3004,1,16,f +5757,3004,14,12,f +5757,3004,4,12,f +5757,3004,0,6,f +5757,3005,1,12,f +5757,3005,0,4,f +5757,3005,14,2,f +5757,3005,4,6,f +5757,3005,15,14,f +5757,3005pe1,14,4,f +5757,3008,1,2,f +5757,3008,15,2,f +5757,3009,15,2,f +5757,3009,1,2,f +5757,3009,4,2,f +5757,3009,0,2,f +5757,3010,14,8,f +5757,3010,1,14,f +5757,3010,0,6,f +5757,3010,4,10,f +5757,3010,15,14,f +5757,3010p01,14,1,f +5757,3010px1,4,2,f +5757,3020,1,4,f +5757,3021,1,2,f +5757,3022,1,4,f +5757,3024,36,2,f +5757,3024,46,2,f +5757,3030,1,2,f +5757,3031,1,2,f +5757,3032,1,1,f +5757,3034,1,4,f +5757,3039,47,1,f +5757,3039,14,4,f +5757,3039,4,4,f +5757,3040b,14,2,f +5757,3040b,4,2,f +5757,3062b,7,8,f +5757,3135c02,4,1,f +5757,3297,4,4,f +5757,3298,4,6,f +5757,3299,4,2,f +5757,3300,4,2,f +5757,3483,0,4,f +5757,3622,15,6,f +5757,3622,1,6,f +5757,3622,14,6,f +5757,3622,4,4,f +5757,3626bpr0001,14,2,f +5757,3633,14,4,f +5757,3660,14,4,f +5757,3660,4,4,f +5757,3665,4,2,f +5757,3665,14,2,f +5757,3679,7,2,f +5757,3680,0,2,f +5757,3710,1,4,f +5757,3747b,4,2,f +5757,3823,41,2,f +5757,3829c01,14,2,f +5757,3832,1,2,f +5757,3853,4,2,f +5757,3854,14,4,f +5757,3856,2,4,f +5757,3861b,14,1,f +5757,3867,10,1,f +5757,3937,1,4,f +5757,3938,7,4,f +5757,3957a,14,2,f +5757,4006,0,1,f +5757,4070,7,4,f +5757,4079,14,2,f +5757,4083,14,2,f +5757,4175,7,2,f +5757,4286,4,2,f +5757,4287,4,2,f +5757,4485,2,1,f +5757,4522,0,1,f +5757,6212,1,1,f +5757,6248,15,8,f +5757,6249,8,4,f +5757,970c00,15,1,f +5757,970c00,1,1,f +5757,973p01c01,15,1,f +5757,973pb0201c01,15,1,f +5760,15,14,3,f +5760,15,1,3,f +5760,15,0,4,f +5760,15,4,9,f +5760,17,1,2,f +5760,17,0,2,f +5760,17,15,2,f +5760,17,4,3,f +5760,27c01,4,1,f +5760,29c01,15,2,f +5760,29c01,4,2,f +5760,3001a,4,4,f +5760,3001a,0,3,f +5760,3001a,14,1,f +5760,3003,14,1,f +5760,3003,0,5,f +5760,3004,0,4,f +5760,3004,14,28,f +5760,3004,4,28,f +5760,3004,15,7,f +5760,3004,1,20,f +5760,3005,4,18,f +5760,3005,1,12,f +5760,3005,15,4,f +5760,3005,14,12,f +5760,3007,14,2,f +5760,3008,14,17,f +5760,3008,15,10,f +5760,3008,1,15,f +5760,3008,4,17,f +5760,3008,0,2,f +5760,3009,14,10,f +5760,3009,1,10,f +5760,3009,15,3,f +5760,3009,4,7,f +5760,3010,14,22,f +5760,3010,15,5,f +5760,3010,1,19,f +5760,3010,0,2,f +5760,3010,4,26,f +5760,3020,14,1,f +5760,3020,0,2,f +5760,3022,4,4,f +5760,3022,14,1,f +5760,3022,0,1,f +5760,3023,1,2,f +5760,3023,4,12,f +5760,3023,14,2,f +5760,3023,0,8,f +5760,3024,0,8,f +5760,3024,15,2,f +5760,3030,0,1,f +5760,3031,0,4,f +5760,3034,15,1,f +5760,3035,15,1,f +5760,3035,1,1,f +5760,3035,0,6,f +5760,3036,0,1,f +5760,3037,0,1,f +5760,3039,0,2,f +5760,3039,14,2,f +5760,3039,4,8,f +5760,3062a,0,42,f +5760,3062a,15,2,f +5760,3069b,14,1,f +5760,3069b,4,4,f +5760,3069b,0,1,f +5760,3081cc01,15,10,f +5760,3137c01,0,6,f +5760,3139,0,12,f +5760,3183a,1,1,f +5760,3183a,15,1,f +5760,3183a,14,1,f +5760,3184,15,1,f +5760,3184,14,1,f +5760,3184,1,1,f +5760,31cc01,4,2,f +5760,3297,4,8,f +5760,3297,1,16,f +5760,3299,1,4,f +5760,3299,4,2,f +5760,32bc01,15,2,f +5760,3300,1,1,f +5760,3455,14,1,f +5760,3455,4,2,f +5760,3460,0,2,f +5760,3471,2,2,f +5760,3497,2,4,f +5760,3579,4,3,f +5760,3579,15,3,f +5760,3581,14,4,f +5760,3581,4,2,f +5760,3582,1,4,f +5760,3582,14,2,f +5760,3625,15,1,f +5760,3626a,14,9,f +5760,3629,1,3,f +5760,3629,4,2,f +5760,3629,0,2,f +5760,3629,15,1,f +5760,365cdb01,89,1,f +5760,7930,14,1,f +5760,7930,4,2,f +5760,7930,15,3,f +5762,2412b,0,1,f +5762,2420,28,13,f +5762,2431,72,12,f +5762,2432,72,1,f +5762,2436,71,1,f +5762,2444,15,7,f +5762,2444,72,6,f +5762,2450,15,4,f +5762,2730,0,1,f +5762,2780,0,38,f +5762,2780,0,3,t +5762,2817,71,3,f +5762,2853,71,6,f +5762,3003,28,2,f +5762,3004,15,2,f +5762,3009,71,2,f +5762,30157,72,4,f +5762,3020,15,8,f +5762,3021,71,8,f +5762,3021,0,7,f +5762,3022,15,7,f +5762,3022,0,5,f +5762,3023,15,21,f +5762,3023,182,3,f +5762,3024,15,8,f +5762,3031,71,7,f +5762,3032,72,1,f +5762,3034,71,5,f +5762,30355,71,3,f +5762,30356,71,1,f +5762,30357,72,1,f +5762,30363,71,2,f +5762,30368,0,1,f +5762,3037,71,2,f +5762,30374,36,2,f +5762,30376,72,1,f +5762,30381,0,1,f +5762,3039,72,3,f +5762,30390b,71,1,f +5762,30414,71,4,f +5762,30503,72,1,f +5762,3068bpr0108,72,1,f +5762,3176,0,4,f +5762,32013,0,4,f +5762,32018,71,5,f +5762,32034,15,2,f +5762,32054,0,6,f +5762,32062,4,2,f +5762,32064b,0,2,f +5762,32140,0,2,f +5762,32140,15,6,f +5762,32184,15,1,f +5762,32316,71,5,f +5762,32449,15,2,f +5762,32523,72,1,f +5762,32530,4,8,f +5762,32556,19,4,f +5762,3297,71,1,f +5762,3460,71,10,f +5762,3623,72,12,f +5762,3626bpr0552,71,1,f +5762,3626bpr0664,15,1,f +5762,3626bpr0665,92,1,f +5762,3660,15,8,f +5762,3666,72,5,f +5762,3673,71,1,t +5762,3673,71,2,f +5762,3701,0,4,f +5762,3701,71,3,f +5762,3702,0,2,f +5762,3706,0,2,f +5762,3707,0,2,f +5762,3710,15,15,f +5762,3749,19,4,f +5762,3795,15,7,f +5762,3937,4,1,f +5762,3958,71,2,f +5762,4070,15,8,f +5762,4079,288,3,f +5762,41539,72,1,f +5762,4162,71,10,f +5762,41677,4,4,f +5762,41747,72,1,f +5762,41748,72,1,f +5762,41749,71,1,f +5762,41750,71,1,f +5762,4274,1,10,f +5762,4274,1,2,t +5762,4286,72,2,f +5762,43093,1,11,f +5762,43710,71,1,f +5762,43711,71,1,f +5762,43722,71,1,f +5762,43723,71,1,f +5762,43857,0,6,f +5762,44568,71,1,f +5762,44728,72,4,f +5762,4519,71,1,f +5762,45590,0,2,f +5762,4589,0,2,f +5762,4623,71,1,f +5762,46413,40,1,f +5762,47397,71,3,f +5762,47398,71,3,f +5762,47456,72,1,f +5762,47846,71,1,f +5762,4865a,40,1,f +5762,50231,0,1,f +5762,50304,71,2,f +5762,50304,72,1,f +5762,50305,71,2,f +5762,50950,15,2,f +5762,53989,72,1,f +5762,54200,71,20,f +5762,54200,71,3,t +5762,54383,71,5,f +5762,54384,71,7,f +5762,55013,72,2,f +5762,59230,72,1,t +5762,59230,72,1,f +5762,59443,4,2,f +5762,6005,72,8,f +5762,60208,28,4,f +5762,60479,71,4,f +5762,6091,71,10,f +5762,6134,1,1,f +5762,61409,72,2,f +5762,6141,41,10,f +5762,6141,41,1,t +5762,61678,71,8,f +5762,6179,72,4,f +5762,6180,71,4,f +5762,6191,320,2,f +5762,6231,71,2,f +5762,6232,71,1,f +5762,62462,0,2,f +5762,63864,320,4,f +5762,63965,0,1,f +5762,64567,80,2,f +5762,6536,71,8,f +5762,6558,1,3,f +5762,6587,28,2,f +5762,6629,72,4,f +5762,6632,0,3,f +5762,6636,28,4,f +5762,6636,71,4,f +5762,87079,15,2,f +5762,87079,0,2,f +5762,87083,72,2,f +5762,87557pr0004,15,1,f +5762,88292,15,4,f +5762,88930,71,2,f +5762,89974pr0001,148,1,f +5762,970c00,379,1,f +5762,970c00,0,2,f +5762,973pr1437c01,0,1,f +5762,973pr1569c01,15,1,f +5762,973pr1616c01,0,1,f +5766,2444,0,1,f +5766,2458,4,2,f +5766,2654,4,1,f +5766,2723,0,1,f +5766,2780,0,16,f +5766,2780,0,1,t +5766,3004,70,2,f +5766,30104,71,1,f +5766,30153,42,4,f +5766,3020,70,3,f +5766,3021,0,1,f +5766,3022,72,2,f +5766,3023,0,3,f +5766,3031,0,1,f +5766,30414,19,2,f +5766,30488c01,0,1,f +5766,3068b,4,1,f +5766,3069b,72,1,f +5766,3176,19,2,f +5766,3176,4,1,f +5766,32000,71,1,f +5766,32054,71,2,f +5766,32062,4,2,f +5766,32062,0,1,f +5766,32064b,320,1,f +5766,32073,71,3,f +5766,32138,0,1,f +5766,32174,320,5,f +5766,32199,179,2,f +5766,32474,0,3,f +5766,32506,28,4,f +5766,32525,72,2,f +5766,32531,0,1,f +5766,3298,320,1,f +5766,3623,19,1,f +5766,3623,70,3,f +5766,3626bpr0251,14,1,f +5766,3626bpr0437,71,1,f +5766,3666,70,3,f +5766,3701,72,4,f +5766,3701,4,2,f +5766,3706,0,2,f +5766,3708,0,2,f +5766,3710,0,4,f +5766,3794a,320,3,f +5766,3794a,19,4,f +5766,3795,70,2,f +5766,3795,320,1,f +5766,3894,4,2,f +5766,3895,0,2,f +5766,3937,0,1,f +5766,3938,4,1,f +5766,3960pr0002,19,1,f +5766,4032a,70,4,f +5766,40378,320,1,f +5766,40379,320,1,f +5766,40379,15,4,f +5766,40395,320,1,f +5766,40490,72,1,f +5766,4081b,19,2,f +5766,4085c,4,3,f +5766,4095,70,1,f +5766,41670,320,4,f +5766,41678,320,2,f +5766,4266,0,4,f +5766,43093,1,13,f +5766,43557,320,1,f +5766,44728,72,1,f +5766,4697b,71,1,t +5766,4697b,71,1,f +5766,47296,320,1,f +5766,47326pat03,0,1,f +5766,4738a,72,1,f +5766,47397,70,1,f +5766,47398,70,1,f +5766,4739a,72,1,f +5766,47457,320,2,f +5766,48336,320,1,f +5766,48495,179,1,f +5766,48933,72,1,f +5766,49668,72,2,f +5766,50898,4,2,f +5766,50923,72,2,f +5766,51342pat0002,320,2,f +5766,53450,132,2,f +5766,53451,15,18,f +5766,53451,15,1,t +5766,53456,320,1,f +5766,53705,132,1,f +5766,54200,72,2,f +5766,54200,4,2,f +5766,6019,0,6,f +5766,6091,320,2,f +5766,6126a,57,2,f +5766,6558,0,1,f +5766,6587,72,1,f +5766,6629,0,2,f +5766,6632,0,2,f +5766,7017stk01,9999,1,t +5766,970x026,1,1,f +5766,970x154,0,1,f +5766,973pb0377c01,72,1,f +5766,973pr1215c01,272,1,f +5768,2348b,33,1,f +5768,2349a,14,1,f +5768,2412b,7,1,f +5768,2465,7,1,f +5768,2484c01,4,2,f +5768,2524,6,1,f +5768,2540,14,1,f +5768,2540,0,4,f +5768,2546,8,1,f +5768,2555,7,4,f +5768,2569,0,1,f +5768,2585,0,1,f +5768,2875,7,2,f +5768,3003,0,1,f +5768,3004,0,3,f +5768,3008,7,2,f +5768,30082,8,1,f +5768,30089,0,1,f +5768,30094,7,1,f +5768,30095,6,2,f +5768,3010,14,2,f +5768,30141,8,1,f +5768,3020,7,1,f +5768,3020,0,1,f +5768,3022,0,1,f +5768,3023,14,3,f +5768,3023,7,7,f +5768,3024,46,2,f +5768,3027,1,1,f +5768,3028,19,2,f +5768,3040b,0,2,f +5768,3062b,4,1,f +5768,3176,7,1,f +5768,3297,7,2,f +5768,3622,0,1,f +5768,3623,14,2,f +5768,3626bp04,14,1,f +5768,3626bpr0895,15,1,f +5768,3788,14,2,f +5768,3795,7,2,f +5768,3821,14,1,f +5768,3822,14,1,f +5768,3823,41,1,f +5768,3829c01,1,1,f +5768,3841,8,1,f +5768,3957a,7,1,f +5768,4081b,7,2,f +5768,4083,7,2,f +5768,4212b,0,1,f +5768,4214,14,1,f +5768,4286,7,1,f +5768,4460a,7,1,f +5768,4485,4,1,f +5768,4528,0,1,f +5768,4599a,4,1,f +5768,4865a,14,2,f +5768,56823,0,1,f +5768,6014a,7,5,f +5768,6015,0,5,f +5768,6019,14,6,f +5768,6020,6,4,f +5768,6026,2,1,f +5768,6027,2,1,f +5768,6028,2,1,f +5768,6064,2,1,f +5768,6083,7,1,f +5768,6141,46,2,f +5768,6141,46,1,t +5768,87695,15,2,f +5768,87696,15,1,f +5768,970c00,2,1,f +5768,973p73c01,2,1,f +5769,2341,0,4,f +5769,2362a,14,4,f +5769,2362a,41,1,f +5769,2412a,15,3,f +5769,2412a,0,2,f +5769,2420,0,6,f +5769,2420,14,8,f +5769,2421,7,1,f +5769,2431,14,1,f +5769,2431,0,1,f +5769,2432,7,1,f +5769,2446,1,2,f +5769,2447,41,2,f +5769,2449,14,2,f +5769,2460,0,1,f +5769,2479,7,1,f +5769,2483,41,1,f +5769,2540,0,1,f +5769,298c02,0,3,f +5769,298c02,14,5,f +5769,3004,14,2,f +5769,3004,0,2,f +5769,3005,14,6,f +5769,3020,14,3,f +5769,3020,0,3,f +5769,3021,0,3,f +5769,3021,14,2,f +5769,3021,7,1,f +5769,3022,0,5,f +5769,3022,14,1,f +5769,3023,15,1,f +5769,3023,14,9,f +5769,3023,0,2,f +5769,3023,7,1,f +5769,3024,14,3,f +5769,3024,36,5,f +5769,3024,47,3,f +5769,3024,33,2,f +5769,3024,0,3,f +5769,3024,46,2,f +5769,3031,14,2,f +5769,3034,7,1,f +5769,3062b,33,1,f +5769,3069b,14,1,f +5769,3069b,0,6,f +5769,3069bp52,15,1,f +5769,3070b,33,2,f +5769,3070b,0,1,f +5769,3070b,36,2,f +5769,3070b,14,2,f +5769,3070bp01,14,2,f +5769,3070bp02,14,2,f +5769,3070bp03,14,2,f +5769,3176,0,1,f +5769,3298,14,1,f +5769,3460,0,4,f +5769,3460,14,2,f +5769,3464,47,2,f +5769,3622,0,2,f +5769,3623,0,2,f +5769,3623,14,1,f +5769,3626bpr0001,14,5,f +5769,3641,0,2,f +5769,3660,0,1,f +5769,3665,0,8,f +5769,3666,14,2,f +5769,3710,14,3,f +5769,3710,0,1,f +5769,3747a,14,1,f +5769,3747b,0,1,f +5769,3794a,14,3,f +5769,3795,14,1,f +5769,3829c01,7,2,f +5769,3901,6,1,f +5769,3901,0,1,f +5769,3937,7,2,f +5769,3938,7,2,f +5769,3957a,0,1,f +5769,4070,14,2,f +5769,4079,7,1,f +5769,4081b,14,4,f +5769,4162,7,2,f +5769,4213,14,1,f +5769,4215a,41,2,f +5769,4282,7,1,f +5769,4282,0,1,f +5769,4286,14,3,f +5769,4315,14,3,f +5769,4315,0,1,f +5769,4345b,14,1,f +5769,4346,14,1,f +5769,4349,0,2,f +5769,4449,15,1,f +5769,4460a,14,4,f +5769,4474,41,2,f +5769,4477,0,3,f +5769,4477,14,2,f +5769,4480c01,0,1,f +5769,4488,0,1,f +5769,4530,6,1,f +5769,4589,33,2,f +5769,4599a,0,1,f +5769,4600,7,5,f +5769,4714,15,3,f +5769,4715,15,6,f +5769,4858,14,2,f +5769,4864a,41,2,f +5769,4865a,41,1,f +5769,4865a,14,8,f +5769,6014a,14,10,f +5769,6015,0,10,f +5769,6019,0,4,f +5769,6140,0,2,f +5769,6141,33,2,f +5769,6141,46,2,f +5769,970c00,4,1,f +5769,970c00,15,4,f +5769,973p0bc01,15,4,f +5769,973px62c01,15,1,f +5771,2412b,4,1,t +5771,2412b,4,1,f +5771,2431,15,1,f +5771,30028,0,4,f +5771,3020,0,1,f +5771,3020,4,2,f +5771,3022,71,1,f +5771,3023,15,2,f +5771,3023,0,3,f +5771,3023,4,3,f +5771,3039,47,2,f +5771,3068b,4,1,f +5771,3710,4,1,f +5771,3710,0,1,f +5771,3795,71,2,f +5771,4286,0,2,f +5771,4600,0,2,f +5771,48336,71,1,f +5771,54200,4,1,t +5771,54200,4,4,f +5771,59900,72,2,f +5771,60212,0,2,f +5771,60470a,71,1,f +5771,61409,4,2,f +5771,6141,0,1,t +5771,6141,36,1,t +5771,6141,47,2,f +5771,6141,47,1,t +5771,6141,0,4,f +5771,6141,36,2,f +5771,74967,71,4,f +5771,85984,4,1,f +5771,93274,0,2,f +5776,2040,450,2,f +5776,2041,15,1,f +5776,2045c01,14,1,f +5776,3068bpf5,15,1,f +5776,3068bpf6,15,1,f +5776,3068bpf7,15,1,f +5776,3068bpf8,15,1,f +5776,3068bpf9,15,1,f +5776,3334,2,1,f +5776,4094a,4,1,f +5776,4727,2,1,f +5776,4728,15,1,f +5776,4874c01,4,1,f +5776,63965,4,1,f +5776,fab3d,9999,1,f +5776,fab9b,9999,1,f +5777,3020,15,2,f +5777,3020,72,1,f +5777,3031,15,1,f +5777,3070b,4,1,t +5777,3070b,15,4,f +5777,3070b,4,4,f +5777,3070b,15,1,t +5777,3937,72,1,f +5777,3938,71,1,f +5777,6141,182,1,t +5777,6141,182,8,f +5778,85544,0,25,f +5779,2412b,73,2,f +5779,2436,1,2,f +5779,30027b,15,4,f +5779,30028,0,4,f +5779,3004,1,1,f +5779,3020,71,1,f +5779,3021,1,2,f +5779,3023,1,2,f +5779,30383,71,2,f +5779,3065,41,1,f +5779,3679,71,1,f +5779,3680,1,1,f +5779,3710,1,2,f +5779,3937,1,1,f +5779,3938,71,1,f +5779,3942c,15,1,f +5779,41855,1,1,f +5779,44302a,1,2,f +5779,4600,71,2,f +5779,6141,46,1,t +5779,6141,46,2,f +5779,6141,36,2,f +5779,6141,36,1,t +5781,10247,0,4,f +5781,11055,4,1,f +5781,11090,72,1,f +5781,11091,308,6,f +5781,11098,297,1,f +5781,11098,41,1,f +5781,11100,71,2,f +5781,11127,182,1,f +5781,11127,41,1,f +5781,11153,72,3,f +5781,11153,28,2,f +5781,11203pr0005,72,2,f +5781,11215,71,1,f +5781,11458,72,2,f +5781,11477,0,3,f +5781,12825,71,3,f +5781,14417,72,1,f +5781,14418,71,1,f +5781,14419,72,1,f +5781,14769,72,2,f +5781,15068,308,2,f +5781,15084pr0001,14,1,f +5781,15107,41,2,f +5781,15462,28,2,f +5781,16659pr0003,30,1,f +5781,16770,41,4,f +5781,2420,19,2,f +5781,2540,4,1,f +5781,2780,0,2,f +5781,3003,4,1,f +5781,30031,72,1,f +5781,3004,28,1,f +5781,30153,41,4,f +5781,30176,2,2,f +5781,3020,0,1,f +5781,3022,70,4,f +5781,3023,41,11,f +5781,3024,70,8,f +5781,3034,70,1,f +5781,30374,297,1,f +5781,3040b,320,2,f +5781,30602,41,2,f +5781,3062b,41,1,f +5781,3069b,70,4,f +5781,32064b,72,4,f +5781,3623,72,4,f +5781,3626cpr1426,14,1,f +5781,3626cpr1434,30,1,f +5781,3660,72,1,f +5781,3665,70,2,f +5781,3678b,72,2,f +5781,3710,28,1,f +5781,3713,71,2,f +5781,3794b,28,2,f +5781,3795,28,3,f +5781,3941,182,1,f +5781,4081b,19,2,f +5781,41769,70,2,f +5781,41770,70,2,f +5781,42003,72,2,f +5781,42023,72,2,f +5781,4286,28,2,f +5781,43093,1,2,f +5781,44728,71,5,f +5781,4497,179,1,f +5781,47905,72,1,f +5781,48336,19,2,f +5781,49668,179,4,f +5781,50304,28,1,f +5781,50305,28,1,f +5781,52107,71,1,f +5781,53585,0,2,f +5781,54383,28,1,f +5781,54384,28,1,f +5781,59900,70,2,f +5781,60470a,0,2,f +5781,60475b,84,2,f +5781,60481,320,2,f +5781,6106,28,1,f +5781,61184,71,4,f +5781,6141,19,2,f +5781,6141,47,1,f +5781,63868,71,2,f +5781,64644,297,1,f +5781,6553,72,2,f +5781,75937,179,1,f +5781,85959pat0003,36,1,f +5781,87087,71,1,f +5781,87580,4,2,f +5781,87747,15,1,f +5781,88072,72,2,f +5781,92690,297,1,f +5781,92692,0,3,f +5781,93273,70,2,f +5781,93571,72,2,f +5781,970c00pr0668,14,1,f +5781,970c00pr0673,71,1,f +5781,973pr2675c01,14,1,f +5781,973pr2686c01,71,1,f +5781,98138,182,1,f +5781,98138,41,1,f +5781,98138pr0023,182,1,f +5781,98139,297,1,f +5781,98283,84,2,f +5781,98313,297,4,f +5781,98313,148,4,f +5781,99207,4,1,f +5781,99207,0,2,f +5782,30093,34,1,f +5782,30153,45,1,f +5782,3021,19,1,f +5782,30218,15,1,f +5782,3040b,72,1,f +5782,3062b,72,1,f +5783,3626bpb0103,14,1,f +5783,3901,6,1,f +5783,970c00,0,1,f +5783,973px173c01,4,1,f +5784,3626bpb0434,71,1,f +5784,48729b,135,1,t +5784,87992,80,1,f +5784,88646,0,1,f +5784,970c00pb059,71,1,f +5784,973pb0663c01,71,1,f +5786,2412b,4,2,f +5786,2446,4,1,f +5786,2447,42,1,f +5786,2625,0,1,f +5786,3039,0,1,f +5786,3069bp28,0,1,f +5786,3298,0,1,f +5786,3626bp66,14,1,f +5786,3838,0,1,f +5786,3937,4,2,f +5786,3938,0,2,f +5786,3959,0,1,f +5786,3962b,0,1,f +5786,4589,36,2,f +5786,4595,0,2,f +5786,6141,42,1,f +5786,970x021,0,1,f +5786,973p66c01,1,1,f +5787,132a,7,14,f +5787,3001a,4,1,f +5787,3001a,1,3,f +5787,3002a,1,2,f +5787,3002a,4,2,f +5787,3003,1,2,f +5787,3003,47,1,f +5787,3004p50,1,2,f +5787,3004p50,4,1,f +5787,3005,15,4,f +5787,3005,47,2,f +5787,3005,1,18,f +5787,3007,1,2,f +5787,3008a,1,10,f +5787,3009a,1,2,f +5787,3009a,47,1,f +5787,3009a,4,3,f +5787,3010,1,6,f +5787,3010,47,1,f +5787,3020,1,4,f +5787,3021,1,6,f +5787,3021,4,2,f +5787,3021,15,4,f +5787,3022,4,4,f +5787,3022,47,2,f +5787,3022,1,7,f +5787,3022,0,2,f +5787,3023a,1,54,f +5787,3023a,15,18,f +5787,3023a,0,2,f +5787,3023a,4,14,f +5787,3024,15,4,f +5787,3024,1,14,f +5787,3026,7,1,f +5787,3028,7,2,f +5787,3035a,15,1,f +5787,3038,4,2,f +5787,3039,4,1,f +5787,3058b,7,1,f +5787,3062a,15,18,f +5787,3065,47,9,f +5787,3065,4,6,f +5787,3065,1,16,f +5787,3087bc01,15,2,f +5787,3127b,4,1,f +5787,3176,4,1,f +5787,3192,1,1,f +5787,3193,1,1,f +5787,3194,1,1,f +5787,3195,1,1,f +5787,3404bc01,15,1,f +5787,468c01,1,1,f +5787,559c01,4,1,f +5787,7039,4,11,f +5787,7039b,4,4,f +5787,7049b,15,5,f +5787,709,4,1,f +5787,711,4,1,f +5787,799c800,15,1,f +5787,801,4,1,f +5787,802,4,1,f +5787,804,7,1,f +5787,996ac01,1,4,f +5787,x466,15,1,f +5787,x579c02,1,1,f +5788,3021,4,8,f +5788,3022,4,8,f +5788,3023,4,8,f +5788,3031,4,2,f +5788,3032,4,2,f +5788,3033,4,2,f +5788,3460,4,8,f +5788,3623,4,8,f +5788,3666,4,8,f +5788,3709,4,8,f +5788,3710,4,8,f +5788,3738,4,8,f +5788,3795,4,4,f +5788,3832,4,2,f +5788,4477,4,4,f +5789,16188,28,1,f +5789,30137,70,1,f +5789,3020,70,2,f +5789,3062b,0,2,f +5789,3062b,320,2,f +5789,3069b,70,1,f +5789,32530,72,1,f +5789,3626cpr1322,78,1,f +5789,3673,71,1,t +5789,3673,71,1,f +5789,3710,70,2,f +5789,3839b,72,1,f +5789,4497,148,1,f +5789,4498,70,1,f +5789,4499,70,1,f +5789,4600,0,1,f +5789,4624,71,2,f +5789,49668,0,2,f +5789,51739,288,1,f +5789,54200,288,2,f +5789,54200,288,1,t +5789,60897,72,2,f +5789,88289,308,1,f +5789,970c00pr0585,320,1,f +5789,973pr2573c01,85,1,f +5791,2496,0,2,f +5791,2655,7,2,f +5791,3020,0,1,f +5791,3021,0,1,f +5791,3022,0,1,f +5791,3022,15,1,f +5791,3039,47,1,f +5791,6141,33,1,f +5791,6215,15,1,f +5794,30137,84,1,f +5794,3020,70,1,f +5794,3710,70,1,f +5794,3899,14,2,f +5794,3899,14,1,t +5794,93568pat0001,84,1,f +5795,2412a,0,1,f +5795,2420,14,2,f +5795,2436,14,2,f +5795,2486,4,2,f +5795,2508,0,1,f +5795,298c02,14,1,f +5795,3004,4,1,f +5795,3020,14,1,f +5795,3021,0,1,f +5795,3022,0,2,f +5795,3023,4,1,f +5795,3023,0,1,f +5795,3024,36,2,f +5795,3024,47,2,f +5795,3031,14,2,f +5795,3037,4,1,f +5795,3068b,14,2,f +5795,3068bp05,15,1,f +5795,3068bp06,15,1,f +5795,3069b,14,1,f +5795,3069b,15,1,f +5795,3070b,36,2,f +5795,3139,0,4,f +5795,3622,4,2,f +5795,3626apr0001,14,1,f +5795,3641,0,4,f +5795,3679,7,1,f +5795,3680,14,1,f +5795,3710,14,5,f +5795,3730,0,1,f +5795,3787,14,2,f +5795,3788,14,2,f +5795,3795,0,1,f +5795,3821,4,1,f +5795,3822,4,1,f +5795,3823,47,1,f +5795,3829c01,0,1,f +5795,4006,0,1,f +5795,4083,4,2,f +5795,4213,14,1,f +5795,4214,14,1,f +5795,4275b,7,6,f +5795,4485,1,1,f +5795,4522,0,1,f +5795,4531,7,6,f +5795,4600,0,4,f +5795,4624,14,8,f +5795,4864ap03,14,2,f +5795,4865a,4,2,f +5795,4865a,14,1,f +5795,6141,46,6,f +5795,6141,15,2,f +5795,73983,14,2,f +5795,970c00,1,1,f +5795,973pb0201c01,15,1,f +5796,2458,14,1,f +5796,2460,14,1,f +5796,3022,0,2,f +5796,3023,14,2,f +5796,30332,0,1,f +5796,30389b,14,1,f +5796,3039,14,1,f +5796,3040b,14,2,f +5796,3475b,0,2,f +5796,3660,14,2,f +5796,3666,0,2,f +5796,3710,14,3,f +5796,3747b,14,1,f +5796,3795,72,1,f +5796,41862,14,1,f +5796,44302a,14,1,f +5796,4617b,0,1,f +5796,6070,40,1,f +5798,11211,19,1,f +5798,30136,70,2,f +5798,3020,15,1,f +5798,3020,70,1,f +5798,3022,70,1,f +5798,33291,5,1,f +5798,33291,5,1,t +5798,3700,70,2,f +5798,4032a,19,1,f +5798,4032a,70,1,f +5798,4865b,29,2,f +5798,6141,4,1,t +5798,6141,15,1,t +5798,6141,15,1,f +5798,6141,4,1,f +5798,6231,29,4,f +5799,2432,0,1,f +5799,2446,15,1,f +5799,2447,41,1,f +5799,2447,41,1,t +5799,2460,7,1,f +5799,2479,0,1,f +5799,298c02,4,1,t +5799,298c02,4,2,f +5799,3475b,0,1,f +5799,3626bp04,14,1,f +5799,3666,15,2,f +5799,3666,0,2,f +5799,3710,7,2,f +5799,3795,0,2,f +5799,3839b,7,1,f +5799,4081b,7,2,f +5799,4859,15,1,f +5799,6087,15,1,f +5799,6141,33,2,f +5799,6141,33,1,t +5799,970c00,0,1,f +5799,973px9c01,0,1,f +5801,11164pat01,182,1,f +5801,11268,72,3,f +5801,11270,35,1,f +5801,11296,72,1,f +5801,2780,0,2,f +5801,2780,0,1,t +5801,30374,36,1,f +5801,32009,72,1,f +5801,32184,0,1,f +5801,3713,71,1,t +5801,3713,71,2,f +5801,4274,71,2,f +5801,4274,71,2,t +5801,43093,1,5,f +5801,43093,1,1,t +5801,53451,4,5,f +5801,53451,4,2,t +5801,53585,4,3,f +5801,59443,72,2,f +5801,60483,72,1,f +5801,64727,25,4,f +5801,87083,72,2,f +5801,90607,0,2,f +5801,90611,0,2,f +5801,90617,72,3,f +5801,90626,0,1,f +5801,90639pr0023,179,1,f +5801,90641,57,3,f +5801,90650,148,2,f +5801,90652,148,2,f +5801,90661,148,2,f +5801,92223,179,1,f +5801,92233,72,1,f +5801,93575,179,1,f +5801,98313,25,2,f +5801,98570pat01,15,1,f +5801,98577,72,1,f +5803,2431pr0028,72,1,f +5803,2654,0,1,f +5803,2780,0,74,f +5803,2780,0,2,t +5803,2817,0,2,f +5803,2819,71,1,f +5803,2825,0,4,f +5803,2850a,71,4,f +5803,2851,14,4,f +5803,2852,71,4,f +5803,2853,71,2,f +5803,2854,72,3,f +5803,2905,4,4,f +5803,2905,0,4,f +5803,3024,47,12,f +5803,3068b,0,2,f +5803,3069b,0,2,f +5803,32002,72,2,t +5803,32002,72,3,f +5803,32009,0,8,f +5803,32013,0,11,f +5803,32014,0,2,f +5803,32015,0,1,f +5803,32034,0,4,f +5803,32034,71,10,f +5803,32039,0,4,f +5803,32039,4,5,f +5803,32054,0,17,f +5803,32054,4,6,f +5803,32056,0,23,f +5803,32062,4,38,f +5803,32072,14,2,f +5803,32073,71,23,f +5803,32123b,71,10,f +5803,32123b,71,2,t +5803,32126,71,6,f +5803,32140,27,1,f +5803,32140,0,13,f +5803,32140,1,1,f +5803,32184,71,8,f +5803,32198,71,1,f +5803,32199,0,1,f +5803,32200,15,1,f +5803,32201,27,6,f +5803,32250,0,12,f +5803,32269,71,1,f +5803,32270,71,3,f +5803,32278,27,2,f +5803,32278,0,2,f +5803,32291,0,5,f +5803,32291,72,2,f +5803,32316,27,1,f +5803,32316,1,4,f +5803,32348,0,8,f +5803,32449,15,4,f +5803,32523,0,4,f +5803,32523,27,3,f +5803,32524,4,5,f +5803,32524,27,2,f +5803,32524,0,2,f +5803,32525,0,3,f +5803,32525,4,2,f +5803,32525,15,3,f +5803,32526,0,2,f +5803,32556,71,2,f +5803,33299a,0,2,f +5803,3623,0,1,f +5803,3647,71,2,f +5803,3647,71,1,t +5803,3648b,71,3,f +5803,3650c,71,1,f +5803,3673,71,2,f +5803,3673,71,2,t +5803,3705,0,12,f +5803,3706,0,21,f +5803,3713,71,42,f +5803,3713,71,2,t +5803,3737,0,4,f +5803,3743,71,1,f +5803,3749,19,2,f +5803,3794a,71,2,f +5803,3941,57,1,f +5803,3941,0,3,f +5803,4019,71,6,f +5803,4032a,0,1,f +5803,40490,0,9,f +5803,4095,4,6,f +5803,41239,0,3,f +5803,41669,1,4,f +5803,41677,71,9,f +5803,41677,0,8,f +5803,41678,0,5,f +5803,4185,71,2,f +5803,41896,71,2,f +5803,42003,0,7,f +5803,42003,71,13,f +5803,4274,71,23,f +5803,4274,71,3,t +5803,43093,1,55,f +5803,44294,71,7,f +5803,44352,27,1,f +5803,44353,27,1,f +5803,4477,0,1,f +5803,44772,71,2,f +5803,4519,71,34,f +5803,45982,0,2,f +5803,4716,71,1,f +5803,48496,0,2,f +5803,48989,71,2,f +5803,54120,0,2,f +5803,59426,72,5,f +5803,6141,182,2,t +5803,6141,182,4,f +5803,6141,36,2,t +5803,6141,36,2,f +5803,6536,0,11,f +5803,6536,15,6,f +5803,6536,71,12,f +5803,6538b,0,15,f +5803,6538b,4,13,f +5803,6538b,71,15,f +5803,6539,4,1,f +5803,6542a,72,2,f +5803,6558,0,25,f +5803,6573,72,1,f +5803,6587,72,8,f +5803,6589,71,10,f +5803,6629,72,2,f +5803,6629,0,4,f +5803,6632,1,2,f +5803,6632,4,17,f +5803,6636,0,1,f +5803,6641,4,1,f +5803,75535,0,2,f +5803,75c12,0,2,f +5803,75c30,4,2,f +5803,9244,71,1,f +5804,2357,15,4,f +5804,2377,15,2,f +5804,2397,0,1,f +5804,2412b,2,2,f +5804,2420,15,2,f +5804,2420,4,2,f +5804,2431,15,2,f +5804,2431,1,3,f +5804,2431,2,3,f +5804,2431,14,3,f +5804,2432,0,4,f +5804,2433,4,2,f +5804,2436,0,2,f +5804,2446p01,15,1,f +5804,2446px3,4,1,f +5804,2446px6,1,1,f +5804,2447,41,3,f +5804,2452,7,1,f +5804,2495,4,1,f +5804,2496,0,1,f +5804,2540,15,2,f +5804,2555,15,2,f +5804,2736,7,1,f +5804,2877,15,2,f +5804,2926,4,2,f +5804,298c02,15,2,f +5804,30027a,15,14,f +5804,30028,0,14,f +5804,30029,4,3,f +5804,3004,15,12,f +5804,3005,15,4,f +5804,3009,15,4,f +5804,3010,15,3,f +5804,3020,2,1,f +5804,3020,15,1,f +5804,3020,14,1,f +5804,3022,4,3,f +5804,3023,15,2,f +5804,3023,4,7,f +5804,3023,14,2,f +5804,3023,2,2,f +5804,3024,4,2,f +5804,3024,15,2,f +5804,3024,7,1,f +5804,3024,46,8,f +5804,3024,36,4,f +5804,3031,15,1,f +5804,3033,15,1,f +5804,3034,0,1,f +5804,3034,15,1,f +5804,3034,4,1,f +5804,3035,0,1,f +5804,3036,15,1,f +5804,3038,15,2,f +5804,3039,1,1,f +5804,3039,14,1,f +5804,3039,2,1,f +5804,3039p72,14,2,f +5804,3039p75,1,2,f +5804,3039p76,2,2,f +5804,3062b,7,2,f +5804,3062b,4,2,f +5804,3069b,15,5,f +5804,3070b,36,2,f +5804,3070b,4,2,f +5804,3070b,46,2,f +5804,3176,15,1,f +5804,3298p72,14,1,f +5804,3298p75,1,1,f +5804,3298p76,2,1,f +5804,3491,0,1,f +5804,3622,7,1,f +5804,3623,15,3,f +5804,3626bp03,14,1,f +5804,3626bp04,14,1,f +5804,3626bp05,14,1,f +5804,3641,0,4,f +5804,3666,2,3,f +5804,3666,14,2,f +5804,3666,4,4,f +5804,3666,15,6,f +5804,3666,1,2,f +5804,3709,0,2,f +5804,3710,14,3,f +5804,3710,1,1,f +5804,3710,2,7,f +5804,3710,15,3,f +5804,3710,4,1,f +5804,3738,7,1,f +5804,3794a,2,6,f +5804,3795,2,3,f +5804,3795,15,1,f +5804,3821,15,1,f +5804,3822,15,1,f +5804,3823,41,1,f +5804,3829c01,14,2,f +5804,3829c01,1,2,f +5804,3832,15,3,f +5804,3839b,0,3,f +5804,4085c,15,8,f +5804,4162,2,2,f +5804,4162,15,2,f +5804,4168,4,2,f +5804,4211,2,1,f +5804,4213,15,1,f +5804,4214,15,1,f +5804,4215b,4,1,f +5804,4275b,15,10,f +5804,4276b,4,4,f +5804,4276b,15,6,f +5804,4287,15,2,f +5804,4460a,15,2,f +5804,4477,15,4,f +5804,4485,4,1,f +5804,4485,15,1,f +5804,4485,1,1,f +5804,4531,0,3,f +5804,4533,7,1,f +5804,4589,15,2,f +5804,4599a,4,2,f +5804,4599a,7,2,f +5804,4600,7,1,f +5804,4624,15,4,f +5804,4629c01,1,1,f +5804,4862,41,2,f +5804,4864a,15,2,f +5804,4865a,15,14,f +5804,4865a,14,2,f +5804,4865a,1,1,f +5804,55295,8,1,f +5804,55296,8,1,f +5804,55297,8,1,f +5804,55298,8,1,f +5804,55299,8,1,f +5804,55300,8,1,f +5804,6014a,15,6,f +5804,6015,0,6,f +5804,6019,7,2,f +5804,6019,0,6,f +5804,6081,15,1,f +5804,6087,0,1,f +5804,6091,15,1,f +5804,6141,7,6,f +5804,6141,34,3,f +5804,6141,36,2,f +5804,6157,0,8,f +5804,6335stk01,9999,1,t +5804,6576,4,1,f +5804,6636,15,5,f +5804,71137,383,2,f +5804,73983,4,2,f +5804,73983,15,2,f +5804,92410,15,1,f +5804,970c00,4,1,f +5804,970c00,1,1,f +5804,970c00,15,1,f +5804,973pb0101c01,15,1,f +5804,973pr1156c01,1,1,f +5804,973px36c01,4,1,f +5805,11458,72,2,f +5805,11477,71,2,f +5805,14418,71,2,f +5805,15391,71,1,f +5805,15392,72,1,f +5805,15392,72,1,t +5805,18677,71,3,f +5805,18868a,41,1,f +5805,19026pr0001,179,1,f +5805,19981pr0020,41,1,f +5805,2780,0,1,f +5805,2780,0,1,t +5805,3022,72,1,f +5805,3023,71,2,f +5805,30602,36,1,f +5805,3062b,72,1,f +5805,3623,71,2,f +5805,3626cpr1634,70,1,f +5805,3700,71,1,f +5805,3794b,71,1,f +5805,3941,41,1,f +5805,4032a,72,2,f +5805,4287,71,2,f +5805,60470a,71,1,f +5805,60897,71,1,f +5805,61409,0,2,f +5805,6141,36,1,t +5805,6141,0,1,t +5805,6141,36,6,f +5805,6141,0,2,f +5805,63965,0,1,f +5805,6628,0,2,f +5805,87082,0,1,f +5805,970c00pr0823,179,1,f +5805,973pr2946c01,0,1,f +5805,99780,0,2,f +5806,10197,0,4,f +5806,10202,71,2,f +5806,10247,4,2,f +5806,10247,71,1,f +5806,10928,72,2,f +5806,11055,15,2,f +5806,11055,4,1,f +5806,11090,297,2,f +5806,11203,72,1,f +5806,11211,4,2,f +5806,11212,272,2,f +5806,11215,4,1,f +5806,11437,0,1,f +5806,11438,4,1,f +5806,11439,297,2,f +5806,11439,42,3,f +5806,11458,72,6,f +5806,11476,71,2,f +5806,11476,0,3,f +5806,11477,19,2,f +5806,11477,4,6,f +5806,11691,4,1,f +5806,11946,4,1,f +5806,11947,4,1,f +5806,14418,71,6,f +5806,14419,72,2,f +5806,14704,71,2,f +5806,15068,320,2,f +5806,15068,19,3,f +5806,15092,72,1,f +5806,15207,71,2,f +5806,15392,70,2,f +5806,15403,0,2,f +5806,15462,28,2,f +5806,15535,19,2,f +5806,15535pr0001,72,2,f +5806,15571,297,2,f +5806,15573,70,2,f +5806,15619,1,1,f +5806,15621,42,1,f +5806,15672,15,2,f +5806,15706,0,2,f +5806,15706,72,6,f +5806,15712,4,2,f +5806,15712,320,2,f +5806,16091,0,1,f +5806,17114,0,1,f +5806,18651,0,4,f +5806,18653,15,4,f +5806,18654,72,2,f +5806,18671,72,3,f +5806,18976,0,2,f +5806,19857pat0001,288,1,f +5806,19857pat0006,320,1,f +5806,19992,15,1,f +5806,20482,297,8,f +5806,22385,0,5,f +5806,22484,72,2,f +5806,2343,297,2,f +5806,23983,308,3,f +5806,24122,0,10,f +5806,2412b,71,1,f +5806,2412b,0,10,f +5806,2412b,297,8,f +5806,2412b,72,2,f +5806,2420,72,7,f +5806,2420,320,4,f +5806,2420,272,4,f +5806,2420,28,7,f +5806,24201,0,2,f +5806,2431pr0017,14,1,f +5806,24458,297,1,f +5806,24458,4,2,f +5806,2449,19,1,f +5806,2449,71,4,f +5806,2450,379,2,f +5806,2454a,19,7,f +5806,2465,71,2,f +5806,2465,72,2,f +5806,2540,71,4,f +5806,2540,4,3,f +5806,2569,57,5,f +5806,26047,0,2,f +5806,2653,71,6,f +5806,2654,19,1,f +5806,2780,0,18,f +5806,2877,72,7,f +5806,298c02,14,2,f +5806,298c02,4,1,f +5806,3001,0,4,f +5806,3001,19,12,f +5806,3001,28,15,f +5806,3002,19,2,f +5806,3003,320,2,f +5806,3003,28,20,f +5806,3004,19,26,f +5806,3004,28,12,f +5806,3004,72,4,f +5806,3005,71,17,f +5806,3005,19,12,f +5806,3005,15,5,f +5806,3008,28,4,f +5806,3008,0,4,f +5806,3010,72,3,f +5806,30136,308,4,f +5806,30145,0,2,f +5806,30153,42,3,f +5806,30162,72,2,f +5806,30169,0,1,f +5806,30173b,179,2,f +5806,30173b,297,9,f +5806,30174,320,1,f +5806,3020,4,1,f +5806,3020,28,2,f +5806,3020,212,3,f +5806,3020,320,5,f +5806,3020,0,5,f +5806,3020,72,3,f +5806,3021,0,1,f +5806,3021,4,2,f +5806,3022,72,12,f +5806,3022,19,10,f +5806,3022,28,2,f +5806,3023,41,18,f +5806,3023,71,13,f +5806,3023,27,6,f +5806,3023,4,4,f +5806,3023,28,13,f +5806,30236,0,2,f +5806,3024,297,8,f +5806,3030,72,1,f +5806,3031,0,2,f +5806,3032,19,2,f +5806,3032,379,7,f +5806,3035,0,2,f +5806,3036,71,2,f +5806,30374,297,2,f +5806,30374,41,1,f +5806,30388,0,1,f +5806,3040b,72,2,f +5806,3040b,28,8,f +5806,3040b,19,4,f +5806,3040b,320,2,f +5806,3040bpr0003,71,2,f +5806,30414,71,1,f +5806,30414,0,2,f +5806,30504,0,6,f +5806,30541,0,1,f +5806,30553,72,2,f +5806,30565,28,2,f +5806,30602,41,1,f +5806,3062b,41,4,f +5806,3062b,34,1,f +5806,3062b,36,1,f +5806,3062b,71,4,f +5806,3068b,4,1,f +5806,3176,71,1,f +5806,32000,72,1,f +5806,32000,0,4,f +5806,32013,1,1,f +5806,32014,71,2,f +5806,32028,4,2,f +5806,32028,2,1,f +5806,32054,71,2,f +5806,32062,4,3,f +5806,32064a,0,1,f +5806,32064a,72,1,f +5806,32073,14,1,f +5806,32123b,14,1,f +5806,32124,0,2,f +5806,32271,72,2,f +5806,32449,41,1,f +5806,32530,72,1,f +5806,32556,19,1,f +5806,3460,0,1,f +5806,3460,71,2,f +5806,3622,72,1,f +5806,3622,0,9,f +5806,3623,71,5,f +5806,3623,0,4,f +5806,3623,72,3,f +5806,3626b,0,1,f +5806,3626cpr0893,14,1,f +5806,3626cpr1366,14,1,f +5806,3626cpr1642,14,1,f +5806,3626cpr1872,14,1,f +5806,3666,72,3,f +5806,3673,71,2,f +5806,3679,71,1,f +5806,3680,0,1,f +5806,3700,72,4,f +5806,3700,19,8,f +5806,3700,0,2,f +5806,3701,0,7,f +5806,3702,0,2,f +5806,3705,0,2,f +5806,3708,4,2,f +5806,3710,28,10,f +5806,3710,72,6,f +5806,3710,321,6,f +5806,3743,0,6,f +5806,3795,320,1,f +5806,3795,72,8,f +5806,3795,19,2,f +5806,3832,19,6,f +5806,3832,72,2,f +5806,3894,0,1,f +5806,3894,72,2,f +5806,3937,4,4,f +5806,3941,72,2,f +5806,3942c,297,1,f +5806,4006,0,1,f +5806,4032a,71,8,f +5806,4032a,25,3,f +5806,4070,0,2,f +5806,4081b,72,6,f +5806,4085c,0,2,f +5806,4150,72,4,f +5806,4151b,28,1,f +5806,41531,0,2,f +5806,4162,72,12,f +5806,4162,379,4,f +5806,41747,15,2,f +5806,41748,15,2,f +5806,4175,72,4,f +5806,4217,19,2,f +5806,4274,1,6,f +5806,4282,72,5,f +5806,43093,1,5,f +5806,43708,15,4,f +5806,43719,72,1,f +5806,43722,19,2,f +5806,44301a,71,1,f +5806,4460b,28,4,f +5806,44661,0,2,f +5806,44661,15,2,f +5806,44676,4,2,f +5806,44728,0,2,f +5806,44728,19,2,f +5806,44728,72,6,f +5806,4477,19,4,f +5806,4477,72,3,f +5806,4590,72,2,f +5806,46212,40,4,f +5806,46413,379,2,f +5806,4733,0,1,f +5806,4738a,179,1,f +5806,4740,41,1,f +5806,4740,0,3,f +5806,47407,0,1,f +5806,47457,297,1,f +5806,47847,72,1,f +5806,4871,0,3,f +5806,48729b,72,2,f +5806,48933,0,1,f +5806,49668,15,2,f +5806,51739,4,1,f +5806,51739,379,1,f +5806,51739,19,4,f +5806,54200,297,2,f +5806,54200,28,9,f +5806,54200,0,2,f +5806,54200,15,5,f +5806,54383,28,1,f +5806,54384,28,2,f +5806,55981,0,2,f +5806,57895,41,2,f +5806,58090,0,2,f +5806,59349,19,4,f +5806,60115,0,1,f +5806,60470a,0,2,f +5806,60474,72,1,f +5806,60477,0,2,f +5806,60478,72,2,f +5806,60479,0,8,f +5806,60479,15,2,f +5806,60483,71,4,f +5806,60483,72,1,f +5806,60485,71,1,f +5806,60581,72,4,f +5806,60594,0,2,f +5806,60596,0,2,f +5806,60603,41,2,f +5806,6064,19,1,f +5806,6070,41,2,f +5806,60752,28,4,f +5806,6082,28,4,f +5806,60849,0,2,f +5806,60897,71,7,f +5806,6091,320,2,f +5806,6106,379,5,f +5806,6106,19,4,f +5806,61070,15,1,f +5806,61071,15,1,f +5806,61072,179,2,f +5806,6112,72,3,f +5806,6112,0,4,f +5806,6112,19,2,f +5806,61252,297,6,f +5806,6134,4,2,f +5806,6134,0,2,f +5806,61409,71,6,f +5806,61409,0,2,f +5806,6141,179,2,f +5806,6141,35,17,f +5806,6141,71,14,f +5806,6141,297,4,f +5806,6141,41,4,f +5806,6141,15,9,f +5806,61485,0,1,f +5806,6190,72,4,f +5806,6239,4,2,f +5806,6249,72,4,f +5806,62810,484,1,f +5806,63864,320,2,f +5806,63864,28,1,f +5806,63869,0,2,f +5806,63965,70,1,f +5806,64392,28,1,f +5806,64567,71,2,f +5806,64567,297,2,f +5806,64567,0,3,f +5806,64682,28,1,f +5806,64728,4,1,f +5806,64799,0,2,f +5806,6558,1,4,f +5806,6628,0,2,f +5806,6636,0,1,f +5806,6636,72,1,f +5806,6636,71,4,f +5806,72454,0,1,f +5806,73983,0,4,f +5806,73983,71,1,f +5806,76766,0,1,f +5806,85861,182,1,f +5806,85861,0,2,f +5806,85984,321,1,f +5806,85984,320,1,f +5806,85984,19,1,f +5806,85984pr0002,72,1,f +5806,87079,0,4,f +5806,87079,1,3,f +5806,87079,4,3,f +5806,87079,379,16,f +5806,87580,321,1,f +5806,87617,0,1,f +5806,87618,71,1,f +5806,87994,297,5,f +5806,91176,19,5,f +5806,91405,0,3,f +5806,91988,19,1,f +5806,92013,0,2,f +5806,92280,4,2,f +5806,92280,0,4,f +5806,92338,42,1,f +5806,92438,72,1,f +5806,92582,0,4,f +5806,92946,0,2,f +5806,92947,0,4,f +5806,92947,19,7,f +5806,92947,297,4,f +5806,93069,15,1,f +5806,93273,19,2,f +5806,93274,72,2,f +5806,95344,297,1,f +5806,95347,0,3,f +5806,96874,25,1,t +5806,970c00,15,1,f +5806,970c00,0,1,f +5806,98128,0,2,f +5806,98129,4,1,f +5806,98134,42,1,f +5806,98137,297,2,f +5806,98138,297,4,f +5806,98139,297,3,f +5806,98139,179,2,f +5806,99206,19,1,f +5806,99773,72,2,f +5806,99778pr0006b,15,1,f +5806,99780,71,1,f +5806,99780,72,2,f +5806,99781,71,1,f +5806,99818pr0002,15,1,f +5807,2654,0,2,f +5807,2780,0,12,f +5807,2815,0,2,f +5807,2902,0,2,f +5807,2903,15,2,f +5807,2982c01,1,1,f +5807,3001,4,6,f +5807,3003,14,6,f +5807,30208,42,2,f +5807,3023,1,8,f +5807,3028,4,2,f +5807,32001,1,4,f +5807,32002,8,8,f +5807,32039,7,2,f +5807,32062,0,4,f +5807,32064b,2,4,f +5807,32073,7,2,f +5807,32123b,7,8,f +5807,32250,1,2,f +5807,3460,1,2,f +5807,3482,14,4,f +5807,3483,0,2,f +5807,3626bpr0001,14,1,f +5807,3634,0,2,f +5807,3647,7,3,f +5807,3648b,4,2,f +5807,3649,2,2,f +5807,3673,7,12,f +5807,3700,1,4,f +5807,3701,1,4,f +5807,3703,1,2,f +5807,3703,0,2,f +5807,3705,0,2,f +5807,3706,0,2,f +5807,3707,0,2,f +5807,3708,0,2,f +5807,3709,14,4,f +5807,3713,7,20,f +5807,3737,0,2,f +5807,3738,14,4,f +5807,3749,19,8,f +5807,3832,7,2,f +5807,3894,1,4,f +5807,3895,1,2,f +5807,3901,6,1,f +5807,3956,1,2,f +5807,4185,14,2,f +5807,4274,7,4,f +5807,4519,7,2,f +5807,5306bc020,0,3,f +5807,5306bc036,0,3,f +5807,6035,15,1,f +5807,6093,0,1,f +5807,6536,7,2,f +5807,6538b,7,2,f +5807,6553,7,4,f +5807,6587,8,2,f +5807,71082,47,1,f +5807,71427c01,7,2,f +5807,78c12,22,2,f +5807,85544,1,4,f +5807,879,7,2,f +5807,884,14,1,f +5807,970c00,1,1,f +5807,973c01,15,1,f +5807,bb277,7,1,f +5807,bin03,10,1,f +5807,x431c01,8,1,f +5808,2780,0,6,f +5808,30088,14,1,f +5808,32054,3,2,f +5808,32062,0,6,f +5808,32073,0,4,f +5808,32123b,7,7,f +5808,32165,3,1,f +5808,32165,73,2,f +5808,32165,4,1,f +5808,32166,15,2,f +5808,32166,1,2,f +5808,32166,0,4,f +5808,32168,1,1,f +5808,32168,3,1,f +5808,32172,73,2,f +5808,32172,4,2,f +5808,32173,15,2,f +5808,32173,1,3,f +5808,32173,0,3,f +5808,32174,1,3,f +5808,32174,73,7,f +5808,32174,4,4,f +5808,3647,216,1,f +5808,3647,14,1,f +5808,3647,1,2,f +5808,3648b,14,1,f +5808,3648b,1,1,f +5808,3649,4,1,f +5808,3649,15,1,f +5808,3705,0,3,f +5808,3706,0,6,f +5808,3713,7,1,f +5808,3749,7,4,f +5808,4716,216,1,f +5808,4716,14,2,f +5808,4716,1,1,f +5808,6126a,57,2,f +5808,6553,14,2,f +5809,2654,72,1,f +5809,3004,4,2,f +5809,3022,4,1,f +5809,3626bpr0782,14,1,f +5809,4612927,9999,1,f +5809,4617055,9999,1,f +5809,4617228,9999,1,f +5809,4617229,9999,1,f +5809,4617231,9999,1,f +5809,60897,0,1,f +5809,62711,0,1,f +5809,63965,70,1,f +5809,64567,0,2,f +5809,64727,297,2,f +5809,92547pr0011,25,1,f +5809,93794,4,1,f +5809,970c00pr0203,4,1,f +5809,973pr1742c01,4,1,f +5810,2431,2,3,f +5810,2654,0,1,f +5810,2695,15,2,f +5810,2696,0,2,f +5810,2715,2,1,f +5810,2715pb01,15,1,f +5810,2716,0,2,f +5810,2780,0,1,t +5810,2780,0,27,f +5810,2994,15,1,f +5810,32000,0,2,f +5810,32001,0,1,f +5810,32009,0,4,f +5810,32013,2,6,f +5810,32014,0,2,f +5810,32015,0,2,f +5810,32039,2,4,f +5810,32062,0,3,f +5810,32068,0,2,f +5810,32073,0,4,f +5810,32123b,7,3,t +5810,32123b,7,18,f +5810,32125,15,1,f +5810,32126,2,2,f +5810,32137,42,5,f +5810,32138,2,2,f +5810,3482,15,2,f +5810,3483,0,2,f +5810,3702,0,2,f +5810,3705,0,4,f +5810,3706,0,2,f +5810,3707,0,2,f +5810,3709,0,1,f +5810,3713,7,4,t +5810,3713,7,6,f +5810,3737,0,2,f +5810,3749,7,8,f +5810,4274,7,10,f +5810,4274,7,2,t +5810,4519,0,3,f +5810,6536,2,8,f +5810,6536,7,2,f +5810,6536,0,5,f +5810,6538b,7,2,f +5810,6553,0,2,f +5810,6558,0,3,f +5810,6578,0,1,f +5810,6587,8,5,f +5810,6589,7,2,f +5810,6629,0,4,f +5810,6632,2,5,f +5810,6632,0,2,f +5810,75c08,2,2,f +5810,75c12,2,3,f +5810,78c14,2,1,f +5810,85543,15,1,f +5810,85543,15,1,t +5810,tech022,9999,2,f +5812,30133,4,1,f +5812,30367c,15,1,f +5812,3626c,15,1,f +5812,3836,70,1,f +5812,41334,30,1,f +5812,47905,15,1,f +5812,61252,15,2,f +5819,2780,0,2,f +5819,32062,0,4,f +5819,32174,72,2,f +5819,32270,71,2,f +5819,32475,72,2,f +5819,32476,288,2,f +5819,32533pb199,25,1,f +5819,3749,19,2,f +5819,41413,178,1,f +5819,44135,72,1,f +5819,44810,288,1,f +5819,4519,71,2,f +5819,47296,72,2,f +5819,47328,288,2,f +5819,47330,288,1,f +5819,47331,288,1,f +5819,47332,288,1,f +5819,47334,179,1,f +5819,47336,179,2,f +5819,x1190,36,1,f +5820,3004,4,2,f +5820,3004,15,1,f +5820,3004pr20,15,1,f +5820,3010,4,1,f +5820,3022,15,1,f +5820,3022,0,1,f +5820,3039,4,1,f +5820,3660,7,1,f +5820,3665,4,1,f +5820,6141,15,1,f +5820,6141,15,1,t +5821,298c03,1,2,f +5821,3020,1,1,f +5821,3022,7,1,f +5821,3024,1,2,f +5821,3626apr0001,14,1,f +5821,3838,4,1,f +5821,3842b,4,1,f +5821,3935,1,1,f +5821,3936,1,1,f +5821,3937,7,1,f +5821,3938,7,1,f +5821,3942c,7,1,f +5821,4032a,7,2,f +5821,4349,0,2,f +5821,4588,0,1,f +5821,4589,36,2,f +5821,4595,7,2,f +5821,4598,15,1,f +5821,970c00,4,1,f +5821,973p90c02,4,1,f +5822,3626bpb0685,14,1,f +5822,3626bpb0686,14,1,f +5822,3626bpb0687,14,1,f +5822,62696,226,1,f +5822,87991,70,1,f +5822,93219,4,1,f +5822,970c00pb146,70,1,f +5822,970c00pb147,15,1,f +5822,970c00pb148,15,1,f +5822,973pb1076c01,1,1,f +5822,973pb1077c01,29,1,f +5822,973pb1078c01,15,1,f +5824,2412b,3,4,f +5824,2413,8,2,f +5824,2445,0,1,f +5824,2447,42,1,f +5824,2458,7,2,f +5824,2460,7,6,f +5824,2476a,14,3,f +5824,2695,3,2,f +5824,2877,0,5,f +5824,298c01,0,2,f +5824,3001,7,6,f +5824,3002,14,5,f +5824,3003,3,2,f +5824,3008,0,1,f +5824,3009,0,1,f +5824,30194,8,1,f +5824,3020,14,1,f +5824,3022,14,1,f +5824,30228,8,1,f +5824,3023,0,1,f +5824,30237a,8,4,f +5824,30296px1,8,1,f +5824,30298,6,1,f +5824,30299,8,1,f +5824,30304,8,1,f +5824,3032,7,1,f +5824,30325,6,1,f +5824,3039px15,3,1,f +5824,3039px16,8,2,f +5824,3040b,0,2,f +5824,3068bpx1,0,1,f +5824,3069bpr0090,8,1,f +5824,32065,14,3,f +5824,32065,0,3,f +5824,3298,7,2,f +5824,3626bpx90,14,1,f +5824,3660,0,2,f +5824,3700,14,1,f +5824,3710,7,1,f +5824,3747a,3,6,f +5824,3795,3,1,f +5824,3795,8,2,f +5824,4070,14,4,f +5824,4124819,9999,1,t +5824,4589,42,2,f +5824,6141,42,1,t +5824,6141,57,1,t +5824,6141,57,4,f +5824,6141,42,6,f +5824,6249,8,1,f +5824,72040,383,1,f +5824,76385,14,2,f +5824,970x026,8,1,f +5824,973px143c01,0,1,f +5825,2357,2,142,f +5825,2420,2,90,f +5825,2456,2,52,f +5825,3001,2,79,f +5825,3002,2,101,f +5825,3003,2,29,f +5825,3004,4,2,f +5825,3004,2,69,f +5825,3005,1,2,f +5825,3005,15,2,f +5825,3005,2,19,f +5825,3007,2,48,f +5825,3008,4,6,f +5825,3009,4,3,f +5825,3009,2,38,f +5825,3010,2,51,f +5825,3010,4,2,f +5825,3020,2,70,f +5825,3020,4,1,f +5825,3021,4,1,f +5825,3021,2,74,f +5825,3022,2,37,f +5825,3022,1,2,f +5825,3023,15,2,f +5825,3023,2,97,f +5825,3023,4,4,f +5825,3024,15,2,f +5825,3024,2,91,f +5825,3024,1,2,f +5825,3024,4,22,f +5825,3024,0,2,f +5825,3034,2,9,f +5825,3039,2,6,f +5825,3040b,2,6,f +5825,3040b,4,12,f +5825,3044c,4,3,f +5825,3062b,0,2,f +5825,3062b,15,2,f +5825,3065,47,2,f +5825,3070b,2,4,f +5825,3070b,1,3,f +5825,3070b,15,3,f +5825,3460,2,2,f +5825,3622,2,49,f +5825,3622,4,3,f +5825,3623,2,56,f +5825,3623,4,6,f +5825,3665,4,15,f +5825,3666,2,33,f +5825,3666,4,8,f +5825,3673,7,2,f +5825,3700,2,4,f +5825,3710,2,57,f +5825,3710,4,11,f +5825,3794a,15,4,f +5825,3794a,2,4,f +5825,3795,4,3,f +5825,3795,2,59,f +5825,3811,19,1,f +5825,3957a,15,2,f +5825,4032a,2,8,f +5825,4070,0,4,f +5825,4274,7,3,f +5825,4286,4,4,f +5825,4589,15,2,f +5825,73983,4,2,f +5825,73983,2,2,f +5827,1773stk01,9999,1,t +5827,2348b,41,2,f +5827,2349a,15,2,f +5827,2357,15,2,f +5827,2377,15,2,f +5827,2412b,7,2,f +5827,2508,0,1,f +5827,298c02,15,1,f +5827,3003,7,2,f +5827,3010,15,1,f +5827,3020,4,1,f +5827,3021,0,1,f +5827,3022,0,2,f +5827,3023,4,2,f +5827,3024,47,2,f +5827,3024,4,8,f +5827,3031,15,1,f +5827,3062b,46,2,f +5827,3068b,15,1,f +5827,3068b,4,2,f +5827,3070b,36,4,f +5827,3070b,15,2,f +5827,3070bp03,14,2,f +5827,3623,15,2,f +5827,3626bpr0001,14,1,f +5827,3641,0,4,f +5827,3710,15,2,f +5827,3710,4,3,f +5827,3730,0,1,f +5827,3788,4,4,f +5827,3795,0,1,f +5827,3821,4,1,f +5827,3822,4,1,f +5827,3823,41,1,f +5827,3829c01,15,1,f +5827,3962b,0,1,f +5827,4070,15,4,f +5827,4070,4,2,f +5827,4081b,0,2,f +5827,4084,0,4,f +5827,4212b,4,1,f +5827,4213,15,1,f +5827,4315,15,3,f +5827,4485,1,1,f +5827,4600,0,4,f +5827,4624,15,8,f +5827,4862,41,2,f +5827,4864a,15,6,f +5827,970c00,1,1,f +5827,973p26c01,1,1,f +5829,132a,0,4,f +5829,242c01,4,4,f +5829,263,0,2,f +5829,3001a,0,2,f +5829,3002a,0,15,f +5829,3004,14,4,f +5829,3004,1,2,f +5829,3004,4,16,f +5829,3004,0,18,f +5829,3005,1,2,f +5829,3005,4,14,f +5829,3005,0,9,f +5829,3007,0,3,f +5829,3008,4,5,f +5829,3008,1,8,f +5829,3008,0,10,f +5829,3009,1,6,f +5829,3009,4,4,f +5829,3009,0,9,f +5829,3010,4,6,f +5829,3010,0,19,f +5829,3010,1,2,f +5829,3020,14,4,f +5829,3020,0,10,f +5829,3020,1,6,f +5829,3020,4,5,f +5829,3021,1,4,f +5829,3021,0,5,f +5829,3022,14,1,f +5829,3022,0,8,f +5829,3022,1,1,f +5829,3023,14,8,f +5829,3023,1,3,f +5829,3023,0,22,f +5829,3023,4,6,f +5829,3024,0,17,f +5829,3024,1,2,f +5829,3027,0,1,f +5829,3028,0,1,f +5829,3030,0,3,f +5829,3031,0,2,f +5829,3031,14,2,f +5829,3032,0,3,f +5829,3032,1,4,f +5829,3033,0,7,f +5829,3034,0,5,f +5829,3035,0,1,f +5829,3036,0,2,f +5829,3037,1,6,f +5829,3037,0,6,f +5829,3038,1,2,f +5829,3039,0,5,f +5829,3040a,0,6,f +5829,3045,0,8,f +5829,3062a,1,4,f +5829,3062a,0,12,f +5829,3062a,14,15,f +5829,3063b,1,4,f +5829,3063b,14,4,f +5829,3069a,0,1,f +5829,3081cc01,14,3,f +5829,3186,4,2,f +5829,3187,4,2,f +5829,3455,4,4,f +5829,3460,4,1,f +5829,35,4,6,f +5829,36,0,6,f +5829,3626a,14,5,f +5829,3659,4,2,f +5829,3660a,1,6,f +5829,3660a,0,10,f +5829,7049b,0,11,f +5829,wheel2a,0,1,f +5829,x515,14,2,f +5829,x564,4,2,f +5830,3039,4,18,f +5830,3043,4,4,f +5831,10201,4,2,f +5831,11476,71,1,f +5831,11477,0,2,f +5831,15535,72,1,f +5831,15712,4,2,f +5831,2412b,0,2,f +5831,2431,0,2,f +5831,30031,71,1,f +5831,3020,4,1,f +5831,3022,14,3,f +5831,3023,72,2,f +5831,3023,4,5,f +5831,3024,0,1,t +5831,3024,0,2,f +5831,30374,71,1,f +5831,3065,40,3,f +5831,3070b,36,1,t +5831,3070b,36,2,f +5831,3710,72,2,f +5831,3795,0,1,f +5831,4599b,1,1,f +5831,4599b,1,1,t +5831,4865a,19,2,f +5831,60212,4,2,f +5831,60475b,0,2,f +5831,61409,4,2,f +5831,6141,46,4,f +5831,6141,46,1,t +5831,6157,0,2,f +5831,62113,72,1,f +5831,92409,0,4,f +5831,93593,71,4,f +5831,98138,47,1,t +5831,98138,47,2,f +5831,99780,0,4,f +5833,2420,72,4,f +5833,2420,71,8,f +5833,2555,72,4,f +5833,2877,72,2,f +5833,3001,71,3,f +5833,3004,71,2,f +5833,3020,19,3,f +5833,3020,71,2,f +5833,3021,71,3,f +5833,3022,19,1,f +5833,3023,72,5,f +5833,3023,71,10,f +5833,3024,71,3,f +5833,3024,72,3,f +5833,3024,4,3,f +5833,3024,14,1,f +5833,3024,47,2,f +5833,3024,19,1,f +5833,3028,0,4,f +5833,3031,71,1,f +5833,3032,71,4,f +5833,3062b,15,1,f +5833,3068b,4,1,f +5833,3068b,72,2,f +5833,3069b,71,3,f +5833,3069b,14,1,f +5833,3069b,0,10,f +5833,3069b,72,7,f +5833,3070b,71,2,f +5833,3070b,72,4,f +5833,33291,10,8,f +5833,3460,72,8,f +5833,3623,0,1,f +5833,3623,71,18,f +5833,3666,71,10,f +5833,3710,71,2,f +5833,3710,19,1,f +5833,3710,72,5,f +5833,3794b,19,3,f +5833,4162,0,4,f +5833,4162pr0015,0,1,f +5833,4162pr0016,0,1,f +5833,44728,72,1,f +5833,54200,14,1,f +5833,6141,15,1,f +5833,6141,80,4,f +5833,6636,72,5,f +5834,17346,0,1,f +5834,3626cpr1481,15,1,f +5834,88646,0,1,f +5834,970c00pr0714,0,1,f +5834,973pr2750c01,0,1,f +5834,98382pr0005,0,1,f +5834,99257,72,1,f +5835,4328,7,1,f +5835,4334,7,1,f +5835,749,366,1,f +5835,fab10c,-1,1,f +5835,u9204c01,4,1,f +5837,2866,14,1,f +5837,73092,0,6,f +5837,74746,72,3,f +5837,74747,72,17,f +5837,75541,72,1,f +5838,3001,73,4,f +5838,3002,14,1,f +5838,3002,29,1,f +5838,3002,27,1,f +5838,3002,73,1,f +5838,3002,2,1,f +5838,3003,73,1,f +5838,3003,15,11,f +5838,3003p01,15,1,f +5838,3003p02,15,1,f +5838,3003p03,15,1,f +5838,3003p04,15,1,f +5838,3003p05,15,1,f +5838,3003p06,15,1,f +5838,3003p07,15,1,f +5838,3003p08,15,1,f +5838,3003p09,15,1,f +5838,3003p10,15,1,f +5838,3003p11,15,1,f +5838,3003p12,15,1,f +5838,3003p13,15,1,f +5838,3003p14,15,1,f +5838,3003p15,15,1,f +5838,3003p16,15,1,f +5838,3003p17,15,1,f +5838,3003p18,15,1,f +5838,3003p19,15,1,f +5838,3003p20,15,1,f +5838,3003p21,15,1,f +5838,3003p22,15,1,f +5838,3003p23,15,1,f +5838,3003p24,15,1,f +5838,3003p25,15,1,f +5838,3003p26,15,1,f +5838,3003p27,15,1,f +5838,3003p28,15,1,f +5838,3003p29,15,1,f +5838,3003p30,15,1,f +5838,3003p31,15,1,f +5838,3003pb066,14,1,f +5838,3003pb067,14,1,f +5838,3003pb068,14,1,f +5838,3003pb069,14,1,f +5838,3003pb070,14,1,f +5838,3003pb071,14,1,f +5838,3003pb072,14,1,f +5838,3004,29,1,f +5838,3004,27,1,f +5838,3004,73,1,f +5838,3004,14,1,f +5838,3004,2,1,f +5838,3004,5,1,f +5838,3020,27,2,f +5838,3022,2,1,f +5838,3028,10,2,f +5838,3031,27,5,f +5838,30565,27,2,f +5838,3069b,85,3,f +5838,33303,15,2,f +5838,3622,5,2,f +5838,3666,322,6,f +5838,3666,26,12,f +5838,3666,14,6,f +5838,3666,2,6,f +5838,3666,27,6,f +5838,4477,4,1,f +5838,6111pb015,15,1,f +5838,6111pb016,15,1,f +5838,6111pb017,15,1,f +5838,6111pb018,15,1,f +5838,6111pb019,15,1,f +5838,6111pb020,15,1,f +5838,6141,29,1,f +5838,6141,85,2,f +5838,6141,14,1,f +5838,6255,2,3,f +5838,6256,29,1,f +5838,6636,85,2,f +5838,87079pr0051,15,1,f +5838,93089pr0001a,71,1,f +5838,98388pr0001,191,1,f +5839,5529-2,89,1,f +5839,5573-2,89,1,f +5840,1,15,3,f +5840,3001a,1,2,f +5840,3001a,15,1,f +5840,3001a,4,3,f +5840,3003,15,2,f +5840,3003,1,3,f +5840,3003,4,3,f +5840,3004,7,2,f +5840,3004,15,5,f +5840,3005,14,24,f +5840,3005,4,14,f +5840,3009,15,4,f +5840,3010,15,19,f +5840,3020,4,1,f +5840,3021,0,5,f +5840,3022,14,2,f +5840,3022,1,3,f +5840,3022,0,1,f +5840,3022,4,7,f +5840,3022,15,4,f +5840,3023,0,1,f +5840,3023,4,2,f +5840,3023,1,1,f +5840,3030,14,2,f +5840,3031,4,1,f +5840,3031,14,4,f +5840,3035,4,1,f +5840,3062a,15,1,f +5840,3068b,1,1,f +5840,3068b,4,1,f +5840,3068b,15,5,f +5840,3068b,14,1,f +5840,3069b,1,1,f +5840,3069b,14,8,f +5840,3069b,0,1,f +5840,3069b,4,4,f +5840,3596,15,1,f +5840,3612,0,2,f +5840,3613,0,4,f +5840,3613,4,2,f +5840,3613,15,2,f +5840,3613,1,2,f +5840,3614b,14,10,f +5840,3659,14,8,f +5840,3666,4,3,f +5840,3684,0,2,f +5840,3710,14,16,f +5840,3710,4,9,f +5840,3741,2,1,f +5840,3742,14,1,t +5840,3742,14,3,f +5840,3761,14,1,f +5840,3762,47,1,f +5840,3794a,15,1,f +5840,3937,15,1,f +5840,3938,15,1,f +5840,3957a,7,1,f +5840,670,14,1,f +5840,671,4,1,f +5840,685p01,14,1,f +5840,685px2,14,1,f +5840,685px3,14,3,f +5840,785,1,1,f +5840,792c03,4,1,f +5840,792c03,0,2,f +5840,792c03,15,1,f +5840,792c03,1,1,f +5840,x196,0,2,f +5840,x197,0,2,f +5840,x197bun,7,1,f +5841,2412b,71,2,f +5841,3001,4,1,f +5841,3020,71,2,f +5841,3020,15,3,f +5841,3021,72,2,f +5841,3022,71,2,f +5841,3022,15,1,f +5841,3023,71,2,f +5841,3023,4,1,f +5841,3034,0,1,f +5841,30602,40,2,f +5841,3062b,72,2,f +5841,3623,4,2,f +5841,3710,15,2,f +5841,3747b,71,1,f +5841,3794a,4,4,f +5841,3942c,4,1,f +5841,4070,71,6,f +5841,4081b,72,2,f +5841,41769,15,1,f +5841,41770,15,1,f +5841,4286,4,2,f +5841,43722,4,2,f +5841,43723,4,2,f +5841,44728,4,1,f +5841,4589,4,1,f +5841,4589,182,2,f +5841,54200,36,1,t +5841,54200,36,2,f +5841,54383,15,1,f +5841,54384,15,1,f +5841,61409,72,2,f +5841,6141,71,1,t +5841,6141,71,4,f +5841,6231,71,2,f +5842,2432,379,2,f +5842,2540,379,2,f +5842,2654,143,1,f +5842,2654,15,1,f +5842,2780,0,1,t +5842,2780,0,4,f +5842,30031,0,1,f +5842,30106,47,1,f +5842,30152pat0003,0,1,f +5842,30193,72,1,t +5842,30193,72,1,f +5842,3021,0,2,f +5842,3022,272,1,f +5842,3022,15,1,f +5842,3023,379,1,f +5842,3023,25,1,f +5842,30377,0,1,t +5842,30377,0,3,f +5842,30397,0,2,f +5842,3039pb027,379,1,f +5842,3069b,379,2,f +5842,3626bpb0091,15,1,f +5842,3626bpb0228,14,1,f +5842,3700,379,2,f +5842,3795,0,2,f +5842,3839b,272,1,f +5842,3959,272,2,f +5842,43710pb01,379,1,f +5842,43711pb01,379,1,f +5842,43722,0,1,f +5842,43723,0,1,f +5842,44728,379,1,f +5842,6019,15,2,f +5842,6091,379,2,f +5842,6120,15,2,f +5842,6141,182,2,f +5842,6141,33,1,t +5842,6141,182,1,t +5842,6141,15,1,t +5842,6141,33,1,f +5842,6141,15,2,f +5842,6541,379,2,f +5842,970c00pb036,118,1,f +5842,973pb0357c01,118,1,f +5843,14226c11,0,4,f +5843,2335,4,1,f +5843,2335pr02,15,1,f +5843,2357,4,2,f +5843,2412b,80,1,f +5843,2420,0,2,f +5843,2420,4,2,f +5843,2431,15,3,f +5843,2431,4,4,f +5843,2431,0,2,f +5843,2436,15,3,f +5843,2436,4,4,f +5843,2453a,71,2,f +5843,2465,4,4,f +5843,2465,71,2,f +5843,3001,0,1,f +5843,3002,0,4,f +5843,30027b,71,12,f +5843,30028,0,12,f +5843,3003,15,1,f +5843,3004,15,1,f +5843,3004,4,4,f +5843,3005,4,8,f +5843,3005,15,2,f +5843,3008,4,5,f +5843,3008,71,1,f +5843,3009,4,2,f +5843,3010,4,2,f +5843,3010,15,1,f +5843,3020,4,4,f +5843,3020,0,1,f +5843,3020,15,1,f +5843,3021,71,2,f +5843,3021,4,10,f +5843,3021,0,9,f +5843,3022,72,2,f +5843,3022,0,1,f +5843,3022,15,2,f +5843,3023,4,13,f +5843,3023,71,2,f +5843,3023,15,2,f +5843,3023,1,2,f +5843,3024,0,2,f +5843,3024,4,13,f +5843,3027,72,2,f +5843,3031,4,5,f +5843,3031,15,1,f +5843,3034,72,2,f +5843,3034,0,2,f +5843,3034,4,2,f +5843,3037,0,1,f +5843,30374,71,1,f +5843,30414,4,3,f +5843,30602,15,1,f +5843,3062b,4,1,f +5843,3062b,1,1,f +5843,3068b,71,4,f +5843,3068b,15,1,f +5843,3068b,4,5,f +5843,3068b,0,1,f +5843,3069b,4,7,f +5843,3069b,0,1,f +5843,3069b,15,1,f +5843,3069bp08,15,1,f +5843,3069bpr0030,15,1,f +5843,3070b,34,1,f +5843,3070b,36,1,f +5843,3070b,4,1,f +5843,3070b,34,1,t +5843,3070b,4,1,t +5843,3070b,36,1,t +5843,3188,4,2,f +5843,3189,4,2,f +5843,32028,0,2,f +5843,32039,1,1,f +5843,32062,4,1,f +5843,32064b,0,2,f +5843,3245b,71,2,f +5843,3460,4,3,f +5843,3622,4,11,f +5843,3622,71,4,f +5843,3622,0,1,f +5843,3623,4,16,f +5843,3660,71,1,f +5843,3665,4,2,f +5843,3666,4,5,f +5843,3710,0,1,f +5843,3710,15,7,f +5843,3710,4,4,f +5843,3738,0,2,f +5843,3788,4,1,f +5843,3788,15,1,f +5843,3794a,4,19,f +5843,3794a,71,2,f +5843,3794a,0,6,f +5843,3795,4,2,f +5843,3795,0,1,f +5843,3832,4,8,f +5843,3937,71,1,f +5843,3938,4,1,f +5843,3957a,15,2,f +5843,4006,0,1,f +5843,4032a,71,2,f +5843,4070,4,6,f +5843,4070,14,2,f +5843,4070,71,2,f +5843,4081b,72,2,f +5843,4085c,4,2,f +5843,4095,0,2,f +5843,4215b,4,6,f +5843,4282,72,1,f +5843,4460b,71,2,f +5843,44674,15,1,f +5843,44728,4,6,f +5843,4477,4,10,f +5843,4519,71,1,f +5843,4533,0,1,f +5843,4599a,71,2,f +5843,4599a,0,1,f +5843,4599a,1,2,f +5843,47905,72,4,f +5843,4865a,15,1,f +5843,4870,71,1,f +5843,50944pr0001,0,16,f +5843,50950,4,7,f +5843,50951,0,1,t +5843,50951,0,16,f +5843,54200,4,14,f +5843,6019,14,1,f +5843,60470a,4,2,f +5843,60478,4,4,f +5843,6091,4,6,f +5843,6111,4,3,f +5843,6112,4,1,f +5843,6112,71,2,f +5843,6141,1,1,f +5843,6141,0,2,t +5843,6141,14,1,f +5843,6141,14,1,t +5843,6141,1,1,t +5843,6141,0,3,f +5843,6157,0,12,f +5843,61678,4,3,f +5843,6180,71,2,f +5843,6636,4,4,f +5843,6636,15,2,f +5843,6636,0,2,f +5843,8155stk01,9999,1,t +5843,92410,4,1,f +5845,30133,4,1,f +5845,3062b,15,1,f +5845,3626bpr0410,14,1,f +5845,41334,0,1,f +5845,970c00,0,1,f +5845,973pr1694c01,71,1,f +5846,30374,42,1,f +5846,32039,0,1,f +5846,3713,71,1,t +5846,3713,71,1,f +5846,4274,71,1,f +5846,4274,71,1,t +5846,43093,1,1,f +5846,4519,71,2,f +5846,4519,71,1,t +5846,4740,42,1,f +5846,48729b,0,1,f +5846,48729b,0,1,t +5846,53451,25,6,f +5846,53451,25,1,t +5846,53585,4,1,f +5846,59233pat0003,25,1,f +5846,62462,15,1,f +5846,70454c01pb01,15,1,f +5846,74261,72,2,f +5846,87846,85,2,f +5846,90608,0,4,f +5846,90609,72,2,f +5846,90611,0,2,f +5846,90617,0,4,f +5846,90626,0,1,f +5846,90630,0,1,f +5846,90634,0,1,f +5846,90638,85,2,f +5846,90639,148,4,f +5846,90641,85,2,f +5846,90650,85,2,f +5846,90661,25,2,f +5846,92215,57,1,f +5846,93571,0,2,f +5846,93575,15,2,f +5846,98569pr0008,10,1,f +5846,98585,42,1,f +5848,2341,71,4,f +5848,2357,72,2,f +5848,2362a,47,1,f +5848,2412b,80,8,f +5848,2412b,72,11,f +5848,2420,72,6,f +5848,2431,4,6,f +5848,2431,14,10,f +5848,2431,71,12,f +5848,2431,1,5,f +5848,2431,15,8,f +5848,2432,0,9,f +5848,2445,72,13,f +5848,2454a,14,4,f +5848,2456,0,2,f +5848,2540,0,1,f +5848,2540,14,2,f +5848,2540,19,2,f +5848,2555,14,4,f +5848,2555,72,2,f +5848,2585,71,1,f +5848,2654,47,2,f +5848,2736,71,1,f +5848,2744,0,2,f +5848,2780,0,1,t +5848,2780,0,33,f +5848,2819,71,1,f +5848,2877,0,6,f +5848,2905,72,2,f +5848,298c02,71,2,f +5848,298c02,71,1,t +5848,3001,14,5,f +5848,3002,14,4,f +5848,3002,4,2,f +5848,3002,71,4,f +5848,3003,14,4,f +5848,3003,15,2,f +5848,3004,72,7,f +5848,3004,14,14,f +5848,3004,15,7,f +5848,3004,25,4,f +5848,3004,4,6,f +5848,3005,14,4,f +5848,3005,4,4,f +5848,3005,71,8,f +5848,3008,4,1,f +5848,3008,14,2,f +5848,3008,15,1,f +5848,3008,72,4,f +5848,3009,0,1,f +5848,3010,14,6,f +5848,3010,0,8,f +5848,3020,72,15,f +5848,3020,14,6,f +5848,3021,14,8,f +5848,3021,19,4,f +5848,3021,72,10,f +5848,3022,14,3,f +5848,3022,4,2,f +5848,3022,71,17,f +5848,3022,0,7,f +5848,3023,71,19,f +5848,3023,47,4,f +5848,3023,0,27,f +5848,3023,15,7,f +5848,3023,4,7,f +5848,3023,14,24,f +5848,3024,182,8,f +5848,3024,72,15,f +5848,3024,47,4,f +5848,3024,14,10,f +5848,3024,15,8,f +5848,3024,4,4,f +5848,3030,72,1,f +5848,3031,4,1,f +5848,3031,15,2,f +5848,3032,4,1,f +5848,3032,0,2,f +5848,3032,15,1,f +5848,3032,71,4,f +5848,3033,71,1,f +5848,3034,4,1,f +5848,3034,72,9,f +5848,3034,15,2,f +5848,3035,0,5,f +5848,30357,72,4,f +5848,3036,72,1,f +5848,30363,14,1,f +5848,30363,1,1,f +5848,30367b,72,2,f +5848,30383,71,1,f +5848,3039,14,3,f +5848,3039,71,1,f +5848,3039,0,2,f +5848,30395,72,1,f +5848,3040b,71,2,f +5848,3040b,4,2,f +5848,30414,71,8,f +5848,30553,0,1,f +5848,3062b,47,1,f +5848,3062b,71,7,f +5848,3062b,4,2,f +5848,3063b,14,4,f +5848,3063b,0,2,f +5848,3066,40,1,f +5848,30663,0,2,f +5848,3068b,1,2,f +5848,3068b,25,2,f +5848,3068b,15,2,f +5848,3069b,15,7,f +5848,3069b,71,9,f +5848,3069b,72,4,f +5848,3070b,36,6,f +5848,3070b,71,16,f +5848,3070b,14,2,t +5848,3070b,71,2,t +5848,3070b,14,8,f +5848,32009,0,2,f +5848,32013,71,2,f +5848,32018,0,12,f +5848,32054,71,2,f +5848,32062,4,5,f +5848,32063,0,2,f +5848,32068,0,2,f +5848,32069,0,2,f +5848,32123b,14,2,t +5848,32123b,14,12,f +5848,32270,0,1,f +5848,32271,14,2,f +5848,32316,0,2,f +5848,32348,14,2,f +5848,32531,71,1,f +5848,32532,0,1,f +5848,3298,4,1,f +5848,3298,15,2,f +5848,3460,71,8,f +5848,3460,15,5,f +5848,3460,4,2,f +5848,3460,0,8,f +5848,3622,14,6,f +5848,3622,0,2,f +5848,3622,71,5,f +5848,3623,19,2,f +5848,3623,14,6,f +5848,3623,72,20,f +5848,3660,14,4,f +5848,3660,15,8,f +5848,3660,4,6,f +5848,3660,72,4,f +5848,3665,15,2,f +5848,3665,14,6,f +5848,3665,72,2,f +5848,3665,0,2,f +5848,3665,4,2,f +5848,3666,72,13,f +5848,3666,14,2,f +5848,3666,15,7,f +5848,3666,1,2,f +5848,3700,71,3,f +5848,3701,14,6,f +5848,3702,0,4,f +5848,3706,0,1,f +5848,3708,0,3,f +5848,3709,71,1,f +5848,3710,14,4,f +5848,3710,0,28,f +5848,3713,4,2,t +5848,3713,4,8,f +5848,3737,0,3,f +5848,3738,71,3,f +5848,3743,71,2,f +5848,3749,19,4,f +5848,3794a,14,15,f +5848,3794a,0,1,f +5848,3795,0,8,f +5848,3795,14,3,f +5848,3795,4,1,f +5848,3795,15,3,f +5848,3832,14,1,f +5848,3832,0,10,f +5848,3832,71,3,f +5848,3894,72,1,f +5848,3895,71,6,f +5848,3899,4,1,f +5848,3937,71,2,f +5848,3938,0,2,f +5848,3941,0,1,f +5848,3941,4,3,f +5848,3957a,0,4,f +5848,4019,71,1,f +5848,4081b,71,2,f +5848,4081b,1,2,f +5848,4085c,72,4,f +5848,41239,14,2,f +5848,4150,71,1,f +5848,4162,72,1,f +5848,41669,40,2,f +5848,4175,0,2,f +5848,42022,14,2,f +5848,4215b,47,2,f +5848,4274,1,40,f +5848,4274,1,2,t +5848,4286,4,2,f +5848,4287,14,2,f +5848,4287,72,2,f +5848,43093,1,6,f +5848,43337,14,2,f +5848,4349,72,2,f +5848,43710,15,1,f +5848,43711,15,1,f +5848,43719,4,1,f +5848,43722,15,3,f +5848,43723,15,3,f +5848,44126,0,2,f +5848,44126,14,2,f +5848,44301a,72,4,f +5848,44302a,4,4,f +5848,44309,0,10,f +5848,4460b,14,2,f +5848,44728,14,4,f +5848,4477,72,3,f +5848,47905,72,8,f +5848,48336,71,2,f +5848,4864b,4,2,f +5848,50950,4,2,f +5848,50950,71,10,f +5848,52107,0,4,f +5848,54200,0,1,t +5848,54200,14,8,f +5848,54200,40,6,f +5848,54200,182,14,f +5848,54200,14,2,t +5848,54200,0,9,f +5848,54200,40,5,t +5848,54200,182,2,t +5848,54200,36,6,f +5848,55981,71,8,f +5848,56145,71,10,f +5848,56823c100,0,1,f +5848,58090,0,8,f +5848,58181,40,2,f +5848,59426,72,1,f +5848,59443,4,2,f +5848,59900,72,1,f +5848,6019,0,6,f +5848,6019,19,2,f +5848,6020,0,2,f +5848,60475a,14,4,f +5848,60477,0,2,f +5848,60477,15,2,f +5848,60477,14,4,f +5848,60479,0,1,f +5848,6070,14,4,f +5848,6091,14,4,f +5848,6091,72,4,f +5848,6111,0,2,f +5848,61409,72,14,f +5848,6141,1,5,f +5848,6141,1,1,t +5848,6141,15,7,f +5848,6141,47,2,f +5848,6141,71,1,t +5848,6141,47,1,t +5848,6141,80,1,t +5848,6141,36,4,f +5848,6141,71,9,f +5848,6141,80,1,f +5848,6141,36,2,t +5848,6141,15,1,t +5848,61678,1,2,f +5848,61678,15,2,f +5848,6231,0,2,f +5848,6232,72,4,f +5848,6249,72,3,f +5848,6541,15,2,f +5848,6553,0,2,f +5848,6558,1,12,f +5848,6585,0,1,f +5848,6587,72,9,f +5848,6589,19,2,f +5848,6632,72,2,f +5848,6636,71,16,f +5848,6636,14,14,f +5848,6636,15,1,f +5848,73983,14,2,f +5848,73983,0,2,f +5849,3626bpr1026,0,1,f +5849,48729b,0,1,f +5849,87992,148,1,f +5849,87993,148,1,f +5849,87994,36,1,f +5849,88646,0,1,f +5849,970c00pr0379,0,1,f +5849,973pb1239c01,0,1,f +5850,10247,4,2,f +5850,11437,0,1,f +5850,11476,71,1,f +5850,11477,4,2,f +5850,11477,1,1,f +5850,11477,0,2,f +5850,11691,0,1,f +5850,14716,71,2,f +5850,14716,0,2,f +5850,14769,15,1,f +5850,15573,0,2,f +5850,15712,0,4,f +5850,19807,297,1,f +5850,19857pat0001,4,1,f +5850,23983,297,1,f +5850,2420,4,2,f +5850,2420,0,2,f +5850,2431,0,2,f +5850,2431,71,2,f +5850,2445,0,2,f +5850,2528pr0009,0,1,f +5850,2540,71,1,f +5850,2817,71,1,f +5850,298c02,71,1,f +5850,298c02,71,1,t +5850,3004,28,5,f +5850,30043,71,1,f +5850,3005,28,1,f +5850,3005,71,2,f +5850,3010,28,1,f +5850,3010,71,1,f +5850,30173b,297,1,f +5850,30173b,297,1,t +5850,3020,72,3,f +5850,3021,0,2,f +5850,3022,4,2,f +5850,3022,1,1,f +5850,3023,0,8,f +5850,30237b,15,1,f +5850,3024,15,1,t +5850,3024,15,4,f +5850,3034,70,1,f +5850,3034,0,1,f +5850,3035,72,2,f +5850,30374,15,1,f +5850,30608,179,1,f +5850,3068b,19,1,f +5850,3068b,0,1,f +5850,3070b,71,1,t +5850,3070b,71,2,f +5850,3176,1,1,f +5850,32028,0,2,f +5850,3245b,71,1,f +5850,3622,71,1,f +5850,3622,0,1,f +5850,3624,0,1,f +5850,3626cpr1365,14,1,f +5850,3626cpr1570,179,1,f +5850,3626cpr1663,14,1,f +5850,3626cpr9989,14,1,f +5850,3665,0,2,f +5850,3666,0,1,f +5850,3673,71,2,f +5850,3673,71,1,t +5850,3700,0,2,f +5850,3710,0,4,f +5850,3830,71,2,f +5850,3830,0,2,f +5850,3831,71,2,f +5850,3831,0,2,f +5850,3832,4,1,f +5850,3899,4,1,f +5850,3937,4,2,f +5850,4070,1,1,f +5850,4162,71,1,f +5850,4162,4,4,f +5850,4274,1,2,f +5850,4274,1,1,t +5850,4286,0,2,f +5850,4342,19,1,f +5850,43888,4,2,f +5850,4477,0,2,f +5850,4510,0,1,f +5850,4519,71,1,f +5850,48336,0,1,f +5850,4865b,15,1,f +5850,48729b,71,1,f +5850,48729b,71,1,t +5850,54200,0,1,f +5850,54200,0,1,t +5850,54200,71,1,t +5850,54200,71,1,f +5850,59900,182,2,f +5850,60470a,0,1,f +5850,60481,0,2,f +5850,60483,0,2,f +5850,60596,4,2,f +5850,60596,0,4,f +5850,60897,0,2,f +5850,6134,71,2,f +5850,6141,0,1,t +5850,6141,41,1,t +5850,6141,71,1,f +5850,6141,71,1,t +5850,6141,41,1,f +5850,6141,0,2,f +5850,61482,71,1,f +5850,61482,71,1,t +5850,6179,0,2,f +5850,6190,4,2,f +5850,6266,15,2,f +5850,6266,15,1,t +5850,64644,19,2,f +5850,64647,4,1,f +5850,64647,4,1,t +5850,64727,4,2,f +5850,6541,0,1,f +5850,6636,70,2,f +5850,85984,0,3,f +5850,85984,4,1,f +5850,87079,15,1,f +5850,87544,0,1,f +5850,87544,71,2,f +5850,87544,40,1,f +5850,92585,4,1,f +5850,92589,71,2,f +5850,92946,0,1,f +5850,93058b,297,2,t +5850,93273,0,1,f +5850,970c00,0,3,f +5850,970c00pr0889,0,1,f +5850,970d09,0,1,f +5850,973pr1188c01,0,1,f +5850,973pr3485c01,15,1,f +5850,973pr9980c01,15,1,f +5850,973pr9984c01,15,1,f +5850,98128,0,1,f +5850,98141,148,2,f +5850,98283,71,3,f +5852,45474,9,1,f +5852,45481,52,1,f +5852,46296,143,1,f +5852,clikits011,143,1,f +5852,clikits012,47,1,f +5852,clikits116,89,1,f +5853,2654,33,1,f +5853,2654,4,1,t +5853,2780,0,6,f +5853,32002,8,1,f +5853,32002,8,1,t +5853,32009,15,4,f +5853,32013,15,4,f +5853,32014,15,2,f +5853,32015,15,1,f +5853,32016,7,1,f +5853,32034,15,2,f +5853,32039,7,6,f +5853,32039,15,1,f +5853,32039,272,2,f +5853,32054,0,1,f +5853,32056,15,6,f +5853,32062,15,2,f +5853,32062,0,31,f +5853,32068,15,1,f +5853,32123b,7,1,t +5853,32123b,7,16,f +5853,32140,15,2,f +5853,32175,15,2,f +5853,32177,272,2,f +5853,32184,15,2,f +5853,32192,15,2,f +5853,32199,7,2,f +5853,32202,179,2,f +5853,32209,15,1,f +5853,32249,15,12,f +5853,32250,15,2,f +5853,32250,272,4,f +5853,32271,15,1,f +5853,32291,15,4,f +5853,32449,15,6,f +5853,32449,7,2,f +5853,32524,15,1,f +5853,32525,272,1,f +5853,32534,15,2,f +5853,32535,15,2,f +5853,3700,15,1,f +5853,3705,15,10,f +5853,3705,0,4,f +5853,3706,15,2,f +5853,3706,0,4,f +5853,3707,0,1,f +5853,3707,15,2,f +5853,3707,7,2,f +5853,3708,0,1,f +5853,3713,7,1,t +5853,3713,7,9,f +5853,40490,15,1,f +5853,41677,272,4,f +5853,41677,7,4,f +5853,41677,15,8,f +5853,41678,272,1,f +5853,41752,8,1,t +5853,4519,0,5,f +5853,6536,15,10,f +5853,6538b,15,4,f +5853,6553,15,2,f +5853,6558,0,2,f +5853,6587,15,2,f +5853,6589,15,10,f +5853,6632,15,5,f +5853,71509,0,2,f +5853,71509,0,2,t +5853,75c08,272,1,f +5853,78c14,272,2,f +5854,3023,72,1,f +5854,4085c,72,2,f +5854,4600,71,1,f +5854,54200,70,1,t +5854,54200,70,2,f +5854,87580,70,1,f +5854,93273,70,2,f +5855,clikits134,89,1,f +5856,2528pr0001,0,1,f +5856,30089b,0,1,f +5856,30154,72,1,f +5856,3626cpb0323,14,1,f +5856,3626cpr0499,14,1,f +5856,3626cpr0892,14,1,f +5856,3852b,191,1,f +5856,62696,308,1,f +5856,86035,27,1,f +5856,970c00,272,1,f +5856,970c00,2,1,f +5856,970d09,0,1,f +5856,973pb1123c01,0,1,f +5856,973pb1124c01,15,1,f +5856,973pb1125c01,15,1,f +5858,3021,4,1,f +5858,30224,45,1,f +5858,3622,15,2,f +5858,4523,1,1,f +5858,6175px1,15,1,f +5859,2039,15,2,f +5859,2343,15,1,f +5859,2362a,47,1,f +5859,2566,15,1,f +5859,30106,47,1,f +5859,30153,45,1,f +5859,30153,41,1,f +5859,30153,34,1,f +5859,30169,57,1,f +5859,3020,25,1,f +5859,30256,22,1,f +5859,30374,41,1,f +5859,30374,36,1,f +5859,30374,45,1,f +5859,30374,42,1,f +5859,3039,25,1,f +5859,30613,15,1,f +5859,3062b,34,1,f +5859,3069bpx39,33,1,f +5859,3069bpx41,15,1,f +5859,33009px1,11,1,f +5859,33009px2,4,1,f +5859,33286,15,2,f +5859,33291,5,1,t +5859,33291,5,1,f +5859,33291,41,1,t +5859,33291,41,1,f +5859,33320,2,1,f +5859,3460,25,1,f +5859,3622,25,2,f +5859,3626bpb0006,14,1,f +5859,3795,25,1,f +5859,40232,7,1,f +5859,40234,8,1,f +5859,40251,6,1,f +5859,41539,17,1,f +5859,41539,378,1,f +5859,4332,366,1,f +5859,4429,45,1,f +5859,4532,3,1,f +5859,4532,462,3,f +5859,4533,15,2,f +5859,4536,15,4,f +5859,4589,33,1,f +5859,4589,36,2,f +5859,4589,5,1,f +5859,4589,42,1,f +5859,4589,15,1,f +5859,4623,15,1,f +5859,4723cdb01,89,1,f +5859,4738a,45,1,f +5859,4739a,45,1,f +5859,4865a,3,1,f +5859,4865a,25,1,f +5859,50231,4,1,f +5859,50231px1,0,1,f +5859,57503,334,1,f +5859,57504,334,1,f +5859,57505,334,1,f +5859,57506,334,1,f +5859,6126a,57,1,f +5859,6131,5,1,f +5859,6131,22,1,f +5859,6140,25,1,f +5859,6141,42,2,f +5859,6141,42,1,t +5859,6141,5,8,f +5859,6141,5,1,t +5859,6251,15,1,f +5859,970c00,1,1,f +5859,973px174c01,73,1,f +5860,54821,297,3,f +5860,54821,179,3,f +5860,54821,148,1,f +5860,54821,135,3,f +5861,11816pr0005,78,1,f +5861,92258,226,1,f +5861,92456pr0017c01,78,1,f +5861,92820pr0001c01,4,1,f +5862,107pr0002,15,1,f +5862,15,0,4,f +5862,17,0,4,f +5862,21,47,1,f +5862,3001a,15,1,f +5862,3002apb06,15,5,f +5862,3003,0,2,f +5862,3003,15,8,f +5862,3004,15,36,f +5862,3004,0,11,f +5862,3004,47,2,f +5862,3004p13,15,1,f +5862,3005,0,2,f +5862,3005,15,16,f +5862,3006,15,1,f +5862,3007,15,1,f +5862,3008,15,12,f +5862,3008,0,4,f +5862,3009,0,3,f +5862,3009,15,17,f +5862,3009p27,15,1,f +5862,3010,0,2,f +5862,3010,15,14,f +5862,3010p40,15,2,f +5862,3010pb036u,15,2,f +5862,3020,0,3,f +5862,3022,15,3,f +5862,3023,0,5,f +5862,3023,15,4,f +5862,3023,14,11,f +5862,3024,1,2,f +5862,3024,14,2,f +5862,3024,4,4,f +5862,3030,0,4,f +5862,3030,15,1,f +5862,3031,0,1,f +5862,3034,15,1,f +5862,3034,0,4,f +5862,3035,15,1,f +5862,3035,0,1,f +5862,3036,0,5,f +5862,3037,47,2,f +5862,3039,47,1,f +5862,3039,0,3,f +5862,3062a,47,4,f +5862,3070a,0,2,f +5862,3081cc01,14,11,f +5862,3137c01,0,5,f +5862,3139,0,14,f +5862,3144,79,1,f +5862,3460,7,4,f +5862,3460,15,3,f +5862,3461,7,1,f +5862,3462,0,1,f +5862,3464,4,4,f +5862,3475a,7,2,f +5862,3579,15,3,f +5862,3581,0,2,f +5862,3581,15,4,f +5862,3582,0,2,f +5862,3624,15,4,f +5862,3626a,14,4,f +5862,3633,14,1,f +5862,3644,47,4,f +5862,3645p03,2,1,f +5862,3660a,15,2,f +5862,3660a,0,2,f +5862,7284,15,1,f +5862,7930,14,3,f +5862,8,15,4,f +5864,2420,1,2,f +5864,2432,15,1,f +5864,2441,0,1,f +5864,30028,0,4,f +5864,3022,15,1,f +5864,3023,14,1,f +5864,3023,72,2,f +5864,3024,46,2,f +5864,3024,46,1,t +5864,3024,1,1,t +5864,3024,1,2,f +5864,30602,1,1,f +5864,3069b,15,1,f +5864,3623,1,2,f +5864,3626cpr1664,14,1,f +5864,3710,1,2,f +5864,3788,1,1,f +5864,3829c01,15,1,f +5864,3957a,0,1,f +5864,4595,0,1,f +5864,50947,1,2,f +5864,54200,1,1,t +5864,54200,1,2,f +5864,74967,71,4,f +5864,85984,1,3,f +5864,87580,71,1,f +5864,87991,0,1,f +5864,93274,0,1,f +5864,970c00,19,1,f +5864,973pr1166c01,272,1,f +5864,98138,34,1,t +5864,98138,36,1,t +5864,98138,34,1,f +5864,98138,36,3,f +5865,3003,0,100,f +5866,3706,0,2,f +5866,54754,0,1,f +5866,57999,0,4,f +5867,3002apb06,15,2,f +5867,3003,0,1,f +5867,3004,15,2,f +5867,3004,47,2,f +5867,3010pb036e,15,1,f +5867,3024,1,1,f +5867,3030,0,1,f +5867,3031,0,1,f +5867,3037,47,2,f +5867,3137c01,0,2,f +5867,3139,0,4,f +5869,2357,19,4,f +5869,2362a,47,2,f +5869,2412b,71,1,f +5869,2431,71,2,f +5869,2436,71,1,f +5869,2445,72,3,f +5869,2465,72,2,f +5869,2780,0,8,f +5869,3001,19,1,f +5869,3001,71,3,f +5869,3003,0,4,f +5869,3004,72,6,f +5869,3004,0,10,f +5869,3005,71,2,f +5869,3006,0,2,f +5869,3008,72,3,f +5869,3009,0,4,f +5869,3010,71,6,f +5869,30104,72,2,f +5869,3020,19,1,f +5869,3021,19,4,f +5869,3022,71,9,f +5869,3023,71,4,f +5869,3028,72,1,f +5869,30285,71,2,f +5869,3034,0,1,f +5869,30350b,320,1,f +5869,30363,19,1,f +5869,3039,19,2,f +5869,30414,19,1,f +5869,30526,71,1,f +5869,30553,0,2,f +5869,30602,71,1,f +5869,3062b,27,6,f +5869,30648,0,2,f +5869,30663,71,1,f +5869,3068b,71,4,f +5869,3068b,19,1,f +5869,3070b,72,2,f +5869,3070b,72,1,t +5869,3176,0,2,f +5869,32000,71,4,f +5869,32007,135,12,f +5869,32009,72,4,f +5869,32018,0,6,f +5869,32039,0,4,f +5869,32054,0,4,f +5869,32062,4,8,f +5869,32140,71,4,f +5869,32209,72,2,f +5869,32271,72,4,f +5869,32530,72,1,f +5869,32556,71,8,f +5869,3460,0,1,f +5869,3475b,72,1,f +5869,3622,72,2,f +5869,3660,0,4,f +5869,3673,71,3,f +5869,3679,71,1,f +5869,3680,0,1,f +5869,3684,19,1,f +5869,3700,19,6,f +5869,3707,0,6,f +5869,3708,0,4,f +5869,3709,72,11,f +5869,3737,0,1,f +5869,3738,71,1,f +5869,3747b,71,2,f +5869,3749,19,5,f +5869,3794a,72,4,f +5869,3795,0,1,f +5869,3937,0,1,f +5869,3938,71,1,f +5869,3941,72,1,f +5869,3958,72,1,f +5869,3962b,0,1,f +5869,4032a,72,2,f +5869,4175,72,1,f +5869,41855,72,1,f +5869,42060,320,2,f +5869,42061,320,2,f +5869,424,14,1,t +5869,424,14,8,f +5869,4274,71,1,t +5869,4274,71,9,f +5869,4282,72,2,f +5869,4286,19,2,f +5869,43093,1,18,f +5869,4360,0,1,f +5869,44301a,0,2,f +5869,44675,71,1,f +5869,44728,0,1,f +5869,4515,19,1,f +5869,4589,36,1,f +5869,4589,42,1,f +5869,4623,0,1,f +5869,47456,19,2,f +5869,48336,19,1,f +5869,53451,15,1,t +5869,53451,15,4,f +5869,6087,0,1,f +5869,6112,72,4,f +5869,6112,71,4,f +5869,6141,4,4,f +5869,6141,4,1,t +5869,6538b,0,16,f +5869,6558,0,8,f +5869,6587,72,1,f +5869,6636,71,4,f +5869,680c01,0,4,f +5869,7297stk01,9999,1,t +5869,75c16,19,2,f +5869,973pb0178c01,0,2,f +5869,973pb0180c01,72,1,f +5869,datrex1,288,1,f +5870,2456,15,1,f +5870,2456,4,1,f +5870,2456,14,1,f +5870,2456,1,1,f +5870,3001,1,8,f +5870,3001,0,4,f +5870,3001,14,7,f +5870,3001,4,7,f +5870,3001,15,8,f +5870,3002,14,4,f +5870,3002,0,2,f +5870,3002,4,4,f +5870,3002,1,4,f +5870,3002,15,4,f +5870,3003,1,10,f +5870,3003,4,8,f +5870,3003,14,8,f +5870,3003,0,4,f +5870,3003,15,10,f +5870,3004,4,16,f +5870,3004,15,20,f +5870,3004,14,16,f +5870,3004,0,10,f +5870,3004,1,20,f +5870,3005,1,20,f +5870,3005,4,17,f +5870,3005,0,12,f +5870,3005,15,20,f +5870,3005,14,17,f +5870,3008,1,2,f +5870,3008,4,4,f +5870,3008,14,4,f +5870,3008,15,2,f +5870,3008,0,2,f +5870,3009,15,8,f +5870,3009,14,6,f +5870,3009,1,8,f +5870,3009,4,6,f +5870,3009,0,2,f +5870,3010,0,8,f +5870,3010,15,14,f +5870,3010,1,14,f +5870,3010,4,12,f +5870,3010,14,12,f +5870,3622,0,4,f +5870,3622,4,6,f +5870,3622,14,6,f +5870,3622,1,8,f +5870,3622,15,8,f +5871,3004,15,1,f +5871,3004p0b,14,1,f +5871,3022,0,1,f +5871,3040b,15,2,f +5871,3040b,4,2,f +5871,3043,4,1,f +5871,3660,4,1,f +5872,2527,4,2,f +5872,3062b,7,12,f +5872,84943,8,2,f +5873,2357,4,2,f +5873,3003,2,4,f +5873,3004,1,2,f +5873,3004,15,2,f +5873,3004,4,1,f +5873,3004p0b,14,1,f +5873,30136,0,2,f +5873,3020,15,1,f +5873,3022,0,1,f +5873,3022,15,1,f +5873,3023,15,1,f +5873,3039,1,1,f +5873,3040b,4,2,f +5873,3298,4,1,f +5873,3665,4,1,f +5873,3665,15,1,f +5873,6141,14,1,t +5873,6141,14,2,f +5873,6141,15,1,t +5873,6141,15,1,f +5875,3069bpr0175,29,1,f +5875,3623,15,1,f +5875,4070,14,1,f +5875,4070,15,2,f +5875,6141,71,1,t +5875,6141,71,2,f +5875,6190,5,1,f +5878,14226c21,0,2,f +5878,2339,0,2,f +5878,2343,47,1,f +5878,2357,7,2,f +5878,2357,0,4,f +5878,2420,15,3,f +5878,2431,7,1,f +5878,2449,0,9,f +5878,2452,7,1,f +5878,2453a,0,2,f +5878,2454a,0,3,f +5878,2456,0,1,f +5878,2462,15,2,f +5878,2465,0,2,f +5878,2465,7,2,f +5878,2489,6,1,f +5878,2518,2,4,f +5878,2524,6,1,f +5878,2527,4,1,f +5878,2528pb01,0,1,f +5878,2530,8,4,f +5878,2536,6,6,f +5878,2537b,0,1,f +5878,2539,8,1,f +5878,2540,7,1,f +5878,2542,6,2,f +5878,2543,4,1,f +5878,2544,6,1,f +5878,2546p01,4,1,f +5878,2549,6,1,f +5878,2551,4,1,f +5878,2561,6,3,f +5878,2562,6,2,f +5878,2563,6,1,f +5878,2566,6,1,f +5878,2577,7,4,f +5878,2583,0,2,f +5878,3001,7,1,f +5878,3002,7,1,f +5878,3003,14,1,f +5878,3003,7,2,f +5878,3004,0,1,f +5878,3004,7,14,f +5878,30041,0,1,f +5878,30042,4,1,f +5878,30043,0,1,f +5878,30044,4,2,f +5878,30046,0,2,f +5878,30047,0,1,f +5878,30048,0,3,f +5878,3005,0,14,f +5878,3005,15,2,f +5878,3005,7,12,f +5878,3005,14,4,f +5878,30055,0,2,f +5878,3006,0,1,f +5878,3008,14,1,f +5878,30136,6,5,f +5878,30137,6,4,f +5878,30140,6,2,f +5878,3020,2,2,f +5878,3020,0,1,f +5878,3021,0,1,f +5878,3022,7,4,f +5878,3022,0,2,f +5878,3023,4,2,f +5878,3023,2,5,f +5878,3023,7,3,f +5878,3023,0,8,f +5878,3023,14,1,f +5878,3024,7,2,f +5878,3028,0,1,f +5878,3031,7,2,f +5878,3032,14,1,f +5878,3034,7,1,f +5878,3034,0,2,f +5878,3036,0,1,f +5878,3062b,7,8,f +5878,3062b,14,9,f +5878,3062b,0,2,f +5878,3062b,2,1,f +5878,3068b,0,1,f +5878,3068b,7,1,f +5878,3068bp30,15,1,f +5878,3069b,0,1,f +5878,3184,0,2,f +5878,3185,0,1,f +5878,3308,7,2,f +5878,3315,0,1,f +5878,3455,14,1,f +5878,3455,0,1,f +5878,3460,0,2,f +5878,3460,14,2,f +5878,3597,0,1,f +5878,3623,15,1,f +5878,3626b,14,1,f +5878,3626bp39,14,1,f +5878,3626bp3e,14,1,f +5878,3626bpb0018,14,1,f +5878,3626bpb0020,14,1,f +5878,3626bpr0895,15,1,f +5878,3626bpx108,14,1,f +5878,3659,15,2,f +5878,3665,0,9,f +5878,3666,0,1,f +5878,3710,7,1,f +5878,3710,15,2,f +5878,3710,0,1,f +5878,3794a,4,2,f +5878,3795,0,1,f +5878,3795,7,1,f +5878,3795,14,2,f +5878,3849,8,1,f +5878,3857,1,1,f +5878,3935,0,1,f +5878,3936,0,1,f +5878,3937,7,1,f +5878,3957a,0,3,f +5878,4032a,2,1,f +5878,4070,4,2,f +5878,4085c,0,15,f +5878,4151a,0,1,f +5878,4162,0,3,f +5878,4213,7,1,f +5878,4262,0,1,f +5878,4275b,0,1,f +5878,4276b,0,2,f +5878,4287,0,8,f +5878,4315,7,1,f +5878,4442,7,2,f +5878,4460a,7,4,f +5878,4477,0,2,f +5878,4490,7,2,f +5878,4497,6,6,f +5878,4589,7,1,f +5878,4600,7,2,f +5878,4623,0,2,f +5878,4624,14,4,f +5878,4738a,6,1,f +5878,4739a,6,1,f +5878,4865a,7,8,f +5878,57503,334,2,f +5878,57504,334,2,f +5878,57505,334,2,f +5878,57506,334,2,f +5878,6019,7,4,f +5878,6024px2,7,1,f +5878,6026,2,1,f +5878,6027,2,1,f +5878,6028,2,1,f +5878,6057,6,2,f +5878,6064,2,1,f +5878,6067,0,1,f +5878,6072,0,1,f +5878,6082,8,1,f +5878,6083,8,4,f +5878,6112,7,2,f +5878,6134,4,1,f +5878,6141,15,1,f +5878,6141,15,1,t +5878,6148,2,5,f +5878,6255,2,4,f +5878,6260,15,1,f +5878,6265,15,2,f +5878,6266,15,2,f +5878,71015,334,1,f +5878,73983,7,2,f +5878,84943,8,1,f +5878,87692,15,1,f +5878,87693,15,1,t +5878,87694,15,1,f +5878,970c00,15,1,f +5878,970c00,1,1,f +5878,970c00,7,2,f +5878,970d01,0,1,f +5878,973p30c01,14,1,f +5878,973p39c01,1,1,f +5878,973p3cc01,15,1,f +5878,973pb0019c01,4,1,f +5878,973px135c01,2,1,f +5878,sailbb25,15,1,f +5878,x190,383,1,f +5878,x376px4,0,1,f +5879,10201,71,1,f +5879,11153,72,4,f +5879,11211,19,1,f +5879,11293,25,1,f +5879,11295,72,1,f +5879,11297,41,1,f +5879,11477,72,10,f +5879,13269,25,1,f +5879,14181,71,2,f +5879,15540,72,4,f +5879,15541pat0001,1,2,f +5879,18738,71,1,f +5879,2412b,72,8,f +5879,2412b,71,4,f +5879,2431,72,15,f +5879,2440,72,1,f +5879,2447,40,1,t +5879,2447,40,1,f +5879,2456,72,1,f +5879,2508,0,1,f +5879,2540,72,1,f +5879,2877,72,3,f +5879,298c02,71,2,f +5879,298c02,71,1,t +5879,3002,25,2,f +5879,3003,70,2,f +5879,3003,25,1,f +5879,3004,25,2,f +5879,3005,25,6,f +5879,3008,72,2,f +5879,3009,25,7,f +5879,3010,25,3,f +5879,3010,72,2,f +5879,30150,70,1,f +5879,30157,72,3,f +5879,30171,0,1,f +5879,30193,71,1,t +5879,3020,4,1,f +5879,3020,25,2,f +5879,3020,0,2,f +5879,3020,2,1,f +5879,3020,72,4,f +5879,3021,71,1,f +5879,3022,71,3,f +5879,3022,15,1,f +5879,3023,72,1,f +5879,3023,15,1,f +5879,3023,14,3,f +5879,3023,4,2,f +5879,3023,2,2,f +5879,3024,0,4,f +5879,3024,15,1,t +5879,3024,0,2,t +5879,3024,15,2,f +5879,3024,36,1,t +5879,3024,36,4,f +5879,3027,71,2,f +5879,30293,41,1,f +5879,30294,41,1,f +5879,3031,19,1,f +5879,3032,15,1,f +5879,3032,72,3,f +5879,30332,0,2,f +5879,3034,15,3,f +5879,3034,71,4,f +5879,3035,0,4,f +5879,30350b,72,2,f +5879,30355,71,1,f +5879,30356,71,1,f +5879,30367c,15,2,f +5879,30367c,4,1,f +5879,30385,80,2,f +5879,3039,25,5,f +5879,3039pr0013,15,1,f +5879,30663,0,1,f +5879,3068b,15,2,f +5879,3068b,70,2,f +5879,32013,72,3,f +5879,32054,0,2,f +5879,32064b,14,2,f +5879,32073,71,1,f +5879,32083,25,3,f +5879,32123b,14,1,t +5879,32123b,14,2,f +5879,3622,25,2,f +5879,3623,71,4,f +5879,3623,0,4,f +5879,3626cpr0933,14,1,f +5879,3626cpr1410,14,1,f +5879,3626cpr1420,14,1,f +5879,3665,72,2,f +5879,3665,25,4,f +5879,3666,25,1,f +5879,3666,72,2,f +5879,3666,15,3,f +5879,3700,15,4,f +5879,3709,72,2,f +5879,3710,15,4,f +5879,3710,0,2,f +5879,3710,25,6,f +5879,3738,0,1,f +5879,3747b,72,4,f +5879,3794b,25,2,f +5879,3795,15,9,f +5879,3795,25,8,f +5879,3837,72,1,f +5879,3841,72,1,f +5879,3899,14,1,f +5879,3938,71,1,f +5879,3941,4,1,f +5879,3941,2,1,f +5879,4032a,4,1,f +5879,4032a,15,1,f +5879,4079,70,3,f +5879,41531,71,2,f +5879,43093,1,3,f +5879,43903,0,2,f +5879,4477,15,2,f +5879,45301,25,2,f +5879,4533,72,2,f +5879,45406,25,1,f +5879,4599b,0,1,t +5879,4599b,0,1,f +5879,46103,41,1,f +5879,4733,72,1,f +5879,48336,71,2,f +5879,4865b,72,2,f +5879,51739,0,1,f +5879,51739,72,1,f +5879,52501,72,1,f +5879,54200,34,1,f +5879,54200,34,1,t +5879,54200,72,2,f +5879,54200,36,1,f +5879,54200,72,1,t +5879,54200,36,1,t +5879,55013,72,2,f +5879,55981,71,6,f +5879,60208,72,2,f +5879,60219,72,2,f +5879,60470a,0,4,f +5879,60479,71,2,f +5879,60601,41,4,f +5879,60603,71,1,f +5879,60849,71,1,t +5879,60849,71,2,f +5879,60897,0,2,f +5879,61072,0,6,f +5879,6117,72,1,f +5879,61345,25,2,f +5879,6141,25,1,f +5879,6141,25,1,t +5879,6141,36,1,f +5879,6141,47,6,f +5879,6141,34,1,t +5879,6141,47,1,t +5879,6141,36,1,t +5879,6141,34,1,f +5879,6239,15,2,f +5879,63864,25,2,f +5879,6558,1,1,f +5879,6636,71,4,f +5879,6636,72,2,f +5879,85984,72,2,f +5879,87079,71,2,f +5879,87580,71,1,f +5879,92280,0,1,f +5879,92410,25,2,f +5879,92582,71,1,f +5879,970c00,28,1,f +5879,970c00pr0645,1,2,f +5879,973pr2641c01,25,1,f +5879,973pr2661c01,25,1,f +5879,973pr2678c01,70,1,f +5879,98263,71,2,f +5879,98834,0,4,f +5879,99780,72,2,f +5880,3003,14,1,f +5880,3004,4,1,f +5880,3004p0b,14,1,f +5880,3010,14,1,f +5880,3021,0,1,f +5880,3022,0,1,f +5880,3039,4,2,f +5880,3040b,0,2,f +5881,2555,0,8,f +5881,30374,72,4,f +5881,3069b,0,4,f +5881,3070bps3,379,1,t +5881,3070bps3,379,1,f +5881,41769,0,2,f +5881,41770,0,2,f +5881,4589,0,4,f +5881,4623,0,2,f +5881,4733,0,1,f +5881,4740,379,1,f +5881,4740,47,1,f +5881,4871,0,2,f +5882,3001,335,50,f +5884,3127,4,1,f +5884,3176,4,1,f +5884,73037,1,1,f +5886,30089,0,1,f +5886,30162,72,1,f +5886,3626bpr0647,14,1,f +5886,3626bpr0677,14,1,f +5886,3962b,0,1,f +5886,59363,70,1,f +5886,62810,484,1,f +5886,970c00,71,1,f +5886,970c00,4,1,f +5886,970c00,25,1,f +5887,3004,1,4,f +5887,3004,0,8,f +5887,3005,1,20,f +5887,3005,0,4,f +5887,3008,1,6,f +5887,3009,1,6,f +5887,3020,7,6,f +5887,3021,7,2,f +5887,3023,0,4,f +5887,3027,7,1,f +5887,3032,7,1,f +5887,3040a,0,4,f +5887,3488,0,4,f +5887,736c02,0,1,f +5887,772p01,47,10,f +5889,11090,0,1,f +5889,11153,19,8,f +5889,11212,72,4,f +5889,11215,0,8,f +5889,11458,72,1,f +5889,11477,288,8,f +5889,11477,71,2,f +5889,11477,80,4,f +5889,11477,15,4,f +5889,12825,14,2,f +5889,13547,0,4,f +5889,14769pr0004,71,2,f +5889,15068,15,18,f +5889,15573,71,29,f +5889,15920,9999,1,t +5889,16280,15,1,f +5889,16681,9999,1,t +5889,2343,47,2,f +5889,2412b,179,8,f +5889,2412b,70,8,f +5889,2412b,297,1,f +5889,2412b,0,6,f +5889,2420,70,10,f +5889,2431,288,28,f +5889,2431,15,4,f +5889,2431,0,2,f +5889,2432,71,2,f +5889,2540,19,2,f +5889,2540,72,1,f +5889,2694,40,2,f +5889,2736,71,1,f +5889,2741,0,1,f +5889,2780,0,2,t +5889,2780,0,26,f +5889,2817,0,2,f +5889,298c02,15,1,f +5889,298c02,15,1,t +5889,3002,0,3,f +5889,3004,19,5,f +5889,3004,70,12,f +5889,3004,288,6,f +5889,3005,288,12,f +5889,3005,28,6,f +5889,3005,15,2,f +5889,3009,70,4,f +5889,3010,288,11,f +5889,3010,0,1,f +5889,30151a,47,1,f +5889,3020,288,13,f +5889,3020,0,4,f +5889,3020,19,8,f +5889,3021,288,6,f +5889,3021,71,10,f +5889,3022,70,4,f +5889,3023,71,6,f +5889,3023,288,38,f +5889,3023,70,4,f +5889,3023,40,6,f +5889,3023,19,18,f +5889,3023,0,4,f +5889,3024,47,2,f +5889,3024,71,8,f +5889,3024,0,8,f +5889,3024,70,1,t +5889,3024,288,3,t +5889,3024,40,1,t +5889,3024,4,1,t +5889,3024,182,2,t +5889,3024,288,22,f +5889,3024,19,2,t +5889,3024,182,4,f +5889,3024,19,8,f +5889,3024,0,2,t +5889,3024,71,2,t +5889,3024,47,1,t +5889,3024,40,2,f +5889,3024,4,2,f +5889,3024,70,4,f +5889,3032,72,1,f +5889,3034,71,1,f +5889,3035,15,1,f +5889,3035,0,3,f +5889,30350b,72,1,f +5889,30367c,72,1,f +5889,30374,71,2,f +5889,30374,0,1,f +5889,30414,4,1,f +5889,30414,288,6,f +5889,3068b,19,6,f +5889,3068b,4,1,f +5889,3068b,288,4,f +5889,3068b,70,1,f +5889,3069b,19,6,f +5889,3069b,40,2,f +5889,3069b,72,6,f +5889,3069bpr0090,72,1,f +5889,3070b,70,2,f +5889,3070b,36,4,f +5889,3070b,71,1,t +5889,3070b,288,12,f +5889,3070b,19,2,t +5889,3070b,288,3,t +5889,3070b,15,3,t +5889,3070b,28,1,t +5889,3070b,71,4,f +5889,3070b,15,18,f +5889,3070b,0,1,t +5889,3070b,70,1,t +5889,3070b,0,1,f +5889,3070b,28,14,f +5889,3070b,36,2,t +5889,3070b,19,22,f +5889,3176,288,2,f +5889,32000,0,4,f +5889,32013,72,1,f +5889,32028,72,6,f +5889,32123b,71,2,f +5889,32123b,14,1,t +5889,32123b,71,1,t +5889,32123b,14,4,f +5889,32523,80,4,f +5889,3456,71,1,f +5889,3460,0,5,f +5889,3623,0,4,f +5889,3623,15,1,f +5889,3623,70,3,f +5889,3623,288,18,f +5889,3660,288,4,f +5889,3665,0,7,f +5889,3666,71,6,f +5889,3666,15,1,f +5889,3666,288,8,f +5889,3700,71,2,f +5889,3710,288,6,f +5889,3710,19,7,f +5889,3710,0,8,f +5889,3794b,70,2,f +5889,3832,19,5,f +5889,3832,72,5,f +5889,3894,0,4,f +5889,3895,0,2,f +5889,3895,1,4,f +5889,3937,72,2,f +5889,3941,41,1,f +5889,4032a,72,2,f +5889,4070,72,6,f +5889,4081b,0,4,f +5889,4150,288,2,f +5889,4162,72,5,f +5889,4162,0,1,f +5889,4162,71,1,f +5889,42446,70,2,f +5889,42446,70,1,t +5889,4274,1,8,f +5889,4274,1,1,t +5889,43093,1,1,t +5889,43093,1,2,f +5889,4342,84,1,f +5889,44309,0,4,f +5889,4460b,288,4,f +5889,44728,72,1,f +5889,4510,72,3,f +5889,4735,0,2,f +5889,4740,47,4,f +5889,4740,71,2,f +5889,48336,4,2,f +5889,48724,0,1,f +5889,53451,0,4,f +5889,53451,0,1,t +5889,54200,14,1,t +5889,54200,28,1,t +5889,54200,288,14,f +5889,54200,191,1,t +5889,54200,15,2,t +5889,54200,28,4,f +5889,54200,15,8,f +5889,54200,191,1,f +5889,54200,288,1,t +5889,54200,19,1,t +5889,54200,14,1,f +5889,54200,4,2,f +5889,54200,4,1,t +5889,54200,19,2,f +5889,56145,71,4,f +5889,56898,0,1,f +5889,56904,15,1,f +5889,59349,71,1,f +5889,60476,15,2,f +5889,60478,0,10,f +5889,60479,0,4,f +5889,60581,40,2,f +5889,6081,288,1,f +5889,6091,288,4,f +5889,6091,15,10,f +5889,6091,70,8,f +5889,6091,19,26,f +5889,6111,72,2,f +5889,61184,71,1,f +5889,6134,0,5,f +5889,6141,4,1,f +5889,6141,0,8,f +5889,6141,297,2,f +5889,6141,297,1,t +5889,6141,47,2,f +5889,6141,80,4,f +5889,6141,4,1,t +5889,6141,47,1,t +5889,6141,0,2,t +5889,6141,80,3,t +5889,6191,288,2,f +5889,6191pr0001,288,12,f +5889,62360,288,4,f +5889,62462,80,13,f +5889,62701,179,4,f +5889,63864,72,4,f +5889,63864,15,2,f +5889,63864,288,10,f +5889,63868,0,6,f +5889,63965,70,1,f +5889,6541,0,12,f +5889,6558,1,11,f +5889,6636,19,2,f +5889,73983,288,4,f +5889,76766,71,4,f +5889,87079,15,12,f +5889,87079,72,2,f +5889,87083,72,4,f +5889,87087,288,24,f +5889,87087,0,6,f +5889,87544,40,2,f +5889,91884,179,2,f +5889,91988,70,2,f +5889,92280,4,2,f +5889,92280,0,4,f +5889,93273,19,2,f +5889,93555,179,1,t +5889,93555,179,2,f +5889,93604,288,2,f +5889,96874,25,1,t +5889,98138,182,1,t +5889,98138,71,2,f +5889,98138,182,2,f +5889,98138,71,2,t +5889,98138pr0012,179,1,t +5889,98138pr0012,179,3,f +5889,99206,0,8,f +5889,99207,0,4,f +5889,99207,4,4,f +5889,99780,0,3,f +5889,99781,71,1,f +5890,2356,71,1,f +5890,2412b,19,6,f +5890,2412b,71,9,f +5890,2420,28,6,f +5890,2431,288,7,f +5890,2432,71,2,f +5890,2449,71,4,f +5890,2450,320,4,f +5890,2465,72,2,f +5890,2654,182,9,f +5890,2780,0,14,f +5890,2780,0,2,t +5890,2817,4,1,f +5890,2877,72,12,f +5890,3001,0,5,f +5890,3008,378,4,f +5890,3008,71,4,f +5890,3009,71,6,f +5890,3009,72,3,f +5890,3010,378,2,f +5890,3010,71,10,f +5890,3020,71,6,f +5890,3021,19,1,f +5890,3023,71,8,f +5890,3029,72,2,f +5890,3031,71,1,f +5890,3032,72,1,f +5890,3035,288,1,f +5890,30350b,72,4,f +5890,30355,71,1,f +5890,30356,71,1,f +5890,30357,72,1,f +5890,30363,72,6,f +5890,3037,71,4,f +5890,30383,72,2,f +5890,30389c,0,2,f +5890,30414,19,10,f +5890,30503,72,4,f +5890,30553,71,2,f +5890,3062b,72,10,f +5890,3068b,71,1,f +5890,3069bpr0070,0,1,f +5890,32000,15,1,f +5890,32001,0,1,f +5890,32002,72,2,f +5890,32002,72,1,t +5890,32013,0,4,f +5890,32062,4,11,f +5890,32064a,320,6,f +5890,32140,1,1,f +5890,32192,72,4,f +5890,32249,14,2,f +5890,32523,14,1,f +5890,32525,72,2,f +5890,3297,71,4,f +5890,33243,288,4,f +5890,3626bpr0648,78,1,f +5890,3626cpr0666,78,1,f +5890,3665,70,4,f +5890,3666,288,8,f +5890,3684,71,3,f +5890,3700,19,4,f +5890,3702,71,2,f +5890,3702,0,2,f +5890,3705,0,1,f +5890,3707,0,1,f +5890,3709,72,1,f +5890,3710,72,8,f +5890,3713,71,2,t +5890,3713,71,3,f +5890,3747b,72,4,f +5890,3795,72,10,f +5890,3832,19,2,f +5890,3894,71,4,f +5890,3901,70,1,f +5890,3937,72,8,f +5890,3941,70,5,f +5890,4032a,72,3,f +5890,40490,0,1,f +5890,4150,71,4,f +5890,41539,71,2,f +5890,41747,288,1,f +5890,41747,72,2,f +5890,41748,288,1,f +5890,41748,72,2,f +5890,41749,320,2,f +5890,41750,320,2,f +5890,41766,320,12,f +5890,41769,71,4,f +5890,41770,71,4,f +5890,41881,47,1,f +5890,42022,72,4,f +5890,42023,71,2,f +5890,4274,71,7,f +5890,4274,71,2,t +5890,4285b,72,1,f +5890,4286,71,4,f +5890,43093,1,8,f +5890,4345b,71,2,f +5890,4346,71,2,f +5890,43722,72,2,f +5890,43723,72,2,f +5890,44126,288,2,f +5890,44568,71,4,f +5890,44570,71,1,f +5890,4460b,72,2,f +5890,44809,71,2,f +5890,4519,71,4,f +5890,4740,71,3,f +5890,47457,71,2,f +5890,48092,72,8,f +5890,48336,0,6,f +5890,50304,72,1,f +5890,50305,72,1,f +5890,54200,70,1,t +5890,54200,70,2,f +5890,57899,0,1,f +5890,58176,182,4,f +5890,58247,0,1,f +5890,59230,19,1,t +5890,59230,19,4,f +5890,59426,72,1,f +5890,59443,71,6,f +5890,59443,0,7,f +5890,59900,33,2,f +5890,6003,71,2,f +5890,60477,72,2,f +5890,60657,72,1,f +5890,60658,72,1,f +5890,6081,71,3,f +5890,6081,288,3,f +5890,6091,320,4,f +5890,6091,72,4,f +5890,6106,71,2,f +5890,61184,71,6,f +5890,61190a,72,1,t +5890,61190b,72,1,t +5890,61190c,72,1,t +5890,61190f,72,2,t +5890,6134,71,8,f +5890,6141,70,16,f +5890,6141,70,3,t +5890,61678,0,2,f +5890,61780,72,1,f +5890,63585,72,2,t +5890,63586,72,1,t +5890,63586,72,1,f +5890,63864,71,4,f +5890,63965,0,4,f +5890,64802,378,1,f +5890,6536,0,2,f +5890,6587,28,4,f +5890,6628,0,1,f +5890,6632,1,4,f +5890,6636,71,5,f +5890,8097stk01,-1,1,t +5890,85080,71,18,f +5890,85544,4,1,f +5890,87083,72,1,f +5890,87087,71,8,f +5890,87559,288,4,f +5890,87561pr01,148,1,f +5890,87570pr0001,378,1,f +5890,87610pr0001a,378,1,f +5890,90005,70,1,f +5890,92092,72,4,f +5890,970c00,70,1,f +5890,970x154,379,1,f +5890,970x194,14,1,f +5890,973pr1618c01,14,1,f +5890,973pr1619c01,71,1,f +5890,973pr1620c01,15,1,f +5892,2456,1,1,f +5892,2456,15,1,f +5892,2458,14,1,f +5892,3001,2,2,f +5892,3001,14,4,f +5892,3001,1,6,f +5892,3001,4,4,f +5892,3001,0,2,f +5892,3001,15,6,f +5892,3002,0,2,f +5892,3002,1,4,f +5892,3002,4,2,f +5892,3002,15,4,f +5892,3002,14,2,f +5892,3003,4,6,f +5892,3003,0,4,f +5892,3003,2,4,f +5892,3003,15,12,f +5892,3003,1,12,f +5892,3003,14,6,f +5892,3004,15,12,f +5892,3004,0,4,f +5892,3004,1,12,f +5892,3004,2,4,f +5892,3004,14,8,f +5892,3004,4,8,f +5892,3005,14,6,f +5892,3005,0,4,f +5892,3005,4,6,f +5892,3005,1,8,f +5892,3005,15,8,f +5892,3005,2,4,f +5892,3007,15,1,f +5892,3007,1,1,f +5892,3008,15,2,f +5892,3008,1,2,f +5892,3009,1,2,f +5892,3009,14,2,f +5892,3009,4,2,f +5892,3009,15,2,f +5892,3010,15,4,f +5892,3010,14,2,f +5892,3010,1,2,f +5892,3010,4,2,f +5892,3020,4,1,f +5892,30285,14,4,f +5892,3030,1,1,f +5892,3039,47,1,f +5892,30391,0,4,f +5892,3297,0,4,f +5892,3298,0,2,f +5892,33303,15,2,f +5892,3622,1,2,f +5892,3622,15,2,f +5892,3622,14,2,f +5892,3622,4,2,f +5892,3747b,4,2,f +5892,3823,47,1,f +5892,4204,2,1,f +5892,4286,0,2,f +5892,4617b,0,1,f +5892,4744pr0002,4,1,f +5892,4744pr0004,2,1,f +5892,4744pr0005,14,1,f +5892,600,15,1,f +5892,601,15,4,f +5892,6235,4,1,f +5892,6236,4,2,f +5892,6249,71,2,f +5892,82248,1,1,f +5892,82249,15,1,f +5893,2337,36,1,f +5893,2362ap53,0,1,f +5893,2362ap54,0,1,f +5893,2412a,1,4,f +5893,2419,0,2,f +5893,2420,1,6,f +5893,2431,0,6,f +5893,2432,0,2,f +5893,2445,0,1,f +5893,2446,15,1,f +5893,2446,0,1,f +5893,2447,36,1,f +5893,2447,0,1,f +5893,2450,0,8,f +5893,2452,1,4,f +5893,2465,0,1,f +5893,2500c01,15,2,f +5893,2507,36,1,f +5893,3004,0,7,f +5893,3004,1,2,f +5893,3008,0,2,f +5893,3009,0,2,f +5893,3020,0,2,f +5893,3020,1,2,f +5893,3021,0,2,f +5893,3021,1,5,f +5893,3022,1,2,f +5893,3022,0,2,f +5893,3023,1,12,f +5893,3023,0,1,f +5893,3024,0,2,f +5893,3024,36,6,f +5893,3024,1,2,f +5893,3036,0,1,f +5893,3039,0,2,f +5893,3039,1,2,f +5893,3039p23,1,1,f +5893,3067,36,2,f +5893,3068b,0,4,f +5893,3069b,0,5,f +5893,3069b,1,2,f +5893,3069bp07,0,2,f +5893,3069bp25,1,1,f +5893,3070b,36,2,f +5893,3298p53,0,1,f +5893,3460,1,2,f +5893,3460,0,2,f +5893,3479,0,1,f +5893,3623,0,4,f +5893,3623,1,2,f +5893,3626apr0001,14,2,f +5893,3665,0,4,f +5893,3666,1,2,f +5893,3710,0,3,f +5893,3747a,0,1,f +5893,3747a,1,1,f +5893,3838,0,2,f +5893,3839b,0,1,f +5893,3855,36,1,f +5893,3933a,0,3,f +5893,3934a,0,3,f +5893,3937,0,2,f +5893,3938,1,2,f +5893,3957a,1,2,f +5893,3957a,36,6,f +5893,3959,0,2,f +5893,4033,1,1,f +5893,4070,0,6,f +5893,4081b,0,2,f +5893,4276b,1,4,f +5893,4286,0,2,f +5893,4287,0,2,f +5893,4315,0,1,f +5893,4590,0,2,f +5893,4623,0,2,f +5893,4625,1,1,f +5893,4740,36,2,f +5893,4755,0,4,f +5893,4757,0,2,f +5893,4760c01,0,1,f +5893,4767,15,1,f +5893,4771,15,1,f +5893,4854,1,1,f +5893,4854,0,2,f +5893,4856a,1,1,f +5893,4857,1,1,f +5893,4859,0,1,f +5893,4865a,1,4,f +5893,4873,0,1,f +5893,6141,36,8,f +5893,6141,0,2,f +5893,6141,1,2,f +5893,905c01,15,1,f +5893,970c00,0,1,f +5893,970x026,15,1,f +5893,973p52c01,0,1,f +5893,973p6bc01,15,1,f +5894,2412b,0,1,f +5894,2540,14,1,f +5894,2555,0,2,f +5894,3020,0,1,f +5894,3021,0,1,f +5894,3021,14,1,f +5894,3023,14,2,f +5894,30236,0,1,f +5894,30602,14,2,f +5894,3069b,14,1,f +5894,3710,14,1,f +5894,3795,14,2,f +5894,41769,14,1,f +5894,41770,14,1,f +5894,43722,14,1,f +5894,43723,14,1,f +5894,44728,0,2,f +5894,47456,14,1,f +5894,50948,0,1,f +5894,50950,14,2,f +5894,6014b,0,4,f +5894,6015,0,4,f +5894,6141,1,2,f +5894,6141,46,1,t +5894,6141,46,2,f +5894,6141,1,1,t +5894,6157,0,2,f +5895,132a,0,4,f +5895,242c01,4,4,f +5895,3001a,4,3,f +5895,3001a,1,18,f +5895,3002a,15,3,f +5895,3002a,1,11,f +5895,3003,47,3,f +5895,3003,1,25,f +5895,3003,15,7,f +5895,3004,0,4,f +5895,3004,15,7,f +5895,3004,1,19,f +5895,3005,1,8,f +5895,3006,1,1,f +5895,3007,1,12,f +5895,3008,1,10,f +5895,3009,1,2,f +5895,3009,4,1,f +5895,3009p01,1,1,f +5895,3010,1,7,f +5895,3020,1,7,f +5895,3021,15,7,f +5895,3021,0,2,f +5895,3021,1,4,f +5895,3022,0,3,f +5895,3022,14,2,f +5895,3022,1,5,f +5895,3022,15,4,f +5895,3023,4,2,f +5895,3023,0,1,f +5895,3023,1,17,f +5895,3023,15,8,f +5895,3024,1,8,f +5895,3027,1,1,f +5895,3031,15,1,f +5895,3032,1,4,f +5895,3039,1,43,f +5895,3039,47,2,f +5895,3040a,1,4,f +5895,3062a,47,4,f +5895,3062a,15,22,f +5895,3062a,14,2,f +5895,3068b,1,2,f +5895,3069a,1,7,f +5895,3144,79,1,f +5895,3149c01,14,1,f +5895,3455,1,4,f +5895,3460,1,4,f +5895,3460,15,2,f +5895,3461,15,1,f +5895,3462,15,1,f +5895,3475a,7,4,f +5895,3596,15,1,f +5895,3612,15,6,f +5895,3613,15,6,f +5895,3614a,14,6,f +5895,420,14,1,f +5895,685px4,14,3,f +5895,7049b,0,4,f +5895,792c03,15,3,f +5895,x197,6,6,f +5896,10201,15,1,f +5896,11211,71,2,f +5896,11291,15,1,f +5896,15068,15,1,f +5896,18868a,41,2,f +5896,19981pr0008,41,1,f +5896,21445,0,4,f +5896,2420,15,2,f +5896,30028,0,4,f +5896,3004,2,1,f +5896,3005,288,2,f +5896,3020,15,2,f +5896,3021,288,2,f +5896,3022,2,1,f +5896,3022,0,1,f +5896,3023,15,2,f +5896,3023,36,2,f +5896,3023,71,3,f +5896,3023,0,2,f +5896,3023,2,3,f +5896,3062b,4,1,f +5896,3068b,15,1,f +5896,3068bpr0280,0,1,f +5896,3069b,14,1,f +5896,3069b,2,1,f +5896,3069bpr0156,0,1,f +5896,3623,288,2,f +5896,3626cpr1537,14,1,f +5896,3660,2,1,f +5896,3710,15,4,f +5896,3839b,0,1,f +5896,3937,0,1,f +5896,3941,41,2,f +5896,4032a,72,1,f +5896,50947,15,2,f +5896,51739,2,2,f +5896,54200,2,2,f +5896,54200,15,2,f +5896,54200,15,1,t +5896,54200,2,1,t +5896,54200,40,1,t +5896,54200,40,6,f +5896,6134,0,1,f +5896,61409,72,2,f +5896,6141,47,1,t +5896,6141,47,2,f +5896,74967,71,4,f +5896,85861,0,1,t +5896,85861,71,1,t +5896,85861,0,2,f +5896,85861,71,2,f +5896,87079pr0084,2,2,f +5896,87087,288,2,f +5896,87991,0,1,f +5896,90370pr0005,0,1,f +5896,90370pr0005,0,1,t +5896,970c00,379,1,f +5896,973pr3207c01,0,1,f +5896,98138pr0024a,179,1,t +5896,98138pr0024a,179,1,f +5896,98138pr0035,179,1,f +5896,98138pr0035,179,1,t +5896,99206,71,1,f +5898,10201,0,2,f +5898,11153,4,2,f +5898,11215,71,4,f +5898,11291,4,1,f +5898,11303,4,2,f +5898,14045,0,1,t +5898,14045,0,1,f +5898,14520,4,2,f +5898,2412b,0,1,f +5898,2412b,72,2,f +5898,2431,4,2,f +5898,2431,72,6,f +5898,2431,0,1,f +5898,2431,15,1,f +5898,2432,1,1,f +5898,2437,40,1,f +5898,2445,72,1,f +5898,2445,0,2,f +5898,2446,0,1,f +5898,2447,40,1,f +5898,2447,40,1,t +5898,2540,0,4,f +5898,2877,14,2,f +5898,2926,0,4,f +5898,3001,72,2,f +5898,3003,4,1,f +5898,3003,1,1,f +5898,3004,1,2,f +5898,30043,71,1,f +5898,3005,4,4,f +5898,3009,4,1,f +5898,30162,72,2,f +5898,3020,4,2,f +5898,3020,0,1,f +5898,3021,4,2,f +5898,3021,0,1,f +5898,3022,4,1,f +5898,3022,72,8,f +5898,3022,14,2,f +5898,3023,15,1,f +5898,3023,36,2,f +5898,3023,72,3,f +5898,3023,4,2,f +5898,3024,182,4,f +5898,3024,71,2,f +5898,3024,71,1,t +5898,3029,0,1,f +5898,3029,72,2,f +5898,3031,71,4,f +5898,3034,72,3,f +5898,3035,71,1,f +5898,3035,72,1,f +5898,30350b,4,2,f +5898,30363,0,1,f +5898,30414,72,1,f +5898,3069b,15,1,f +5898,3070b,36,2,f +5898,3070b,36,1,t +5898,32001,0,3,f +5898,32062,4,4,f +5898,32064b,0,8,f +5898,3626cpr0499,14,1,f +5898,3626cpr0889,14,1,f +5898,3626cpr0955,14,1,f +5898,3666,4,1,f +5898,3666,0,2,f +5898,3666,72,1,f +5898,3709,72,1,f +5898,3710,1,1,f +5898,3710,4,3,f +5898,3710,0,3,f +5898,3710,71,2,f +5898,3737,0,1,f +5898,3794b,71,2,f +5898,3795,4,1,f +5898,3821,4,2,f +5898,3822,4,2,f +5898,3829c01,1,2,f +5898,3958,4,1,f +5898,4032a,4,1,f +5898,4083,0,1,f +5898,41677,1,4,f +5898,4176,40,1,f +5898,4282,72,1,f +5898,44301a,4,2,f +5898,44728,4,6,f +5898,4488,0,2,f +5898,4533,72,2,f +5898,45590,0,2,f +5898,45677,4,1,f +5898,47720,0,2,f +5898,48336,0,1,f +5898,4865b,72,4,f +5898,4871,0,2,f +5898,50745,0,2,f +5898,50943,71,1,f +5898,50950,4,4,f +5898,50950,0,2,f +5898,52031,4,1,f +5898,52036,72,1,f +5898,52501,4,2,f +5898,54200,72,1,t +5898,54200,72,2,f +5898,54200,40,1,t +5898,54200,36,1,t +5898,54200,36,2,f +5898,54200,47,1,t +5898,54200,40,2,f +5898,54200,47,2,f +5898,55981,71,4,f +5898,56891,0,4,f +5898,59900,72,2,f +5898,59900,0,2,f +5898,60027stk01,118,1,t +5898,6014b,71,10,f +5898,604547,0,1,f +5898,604548,0,1,f +5898,604549,0,1,f +5898,604550,0,1,f +5898,604551,0,1,f +5898,604552,0,1,f +5898,604553,0,1,f +5898,604614,0,1,f +5898,604615,0,1,f +5898,60470b,4,1,f +5898,60478,4,4,f +5898,61409,72,4,f +5898,61409,4,2,f +5898,61409,0,2,f +5898,6141,36,1,t +5898,6141,36,2,f +5898,6187,71,1,f +5898,62462,71,2,f +5898,63864,4,2,f +5898,64644,71,1,t +5898,64644,71,8,f +5898,76766,71,3,f +5898,85984,4,4,f +5898,85984,0,1,f +5898,87079,71,1,f +5898,87079,72,1,f +5898,87617,0,2,f +5898,87697,0,10,f +5898,90498,72,1,f +5898,92280,0,2,f +5898,92410,4,2,f +5898,92593,72,1,f +5898,92946,4,2,f +5898,93273,4,2,f +5898,970c00,4,3,f +5898,973pr2368c01,191,3,f +5898,98280,71,1,f +5898,98282,0,4,f +5899,18819pr0001,19,1,f +5899,3626cpr1546,14,1,f +5899,88646,0,1,f +5899,970c00,73,1,f +5899,973c67,19,1,f +5901,2926,7,1,f +5901,3004,7,2,f +5901,30132,8,1,f +5901,30155,7,1,f +5901,30167,6,1,f +5901,3023,8,2,f +5901,3034,7,1,f +5901,3062b,0,2,f +5901,3139,0,2,f +5901,32556,7,1,f +5901,3626bpr0247,14,1,f +5901,3665,7,2,f +5901,3666,0,1,f +5901,3700,8,1,f +5901,3747a,7,1,f +5901,3795,0,2,f +5901,3829c01,4,1,f +5901,41855,4,1,f +5901,41862,8,1,f +5901,43719,8,1,f +5901,44661,4,1,f +5901,4617b,6,1,f +5901,4624,7,2,f +5901,4865a,47,1,f +5901,970c00pb018,19,1,f +5901,973pb0281c01,2,1,f +5902,13135,5,1,f +5902,13136,4,1,f +5902,15947,29,1,f +5902,16129,0,1,f +5902,16135,0,1,f +5902,3437,1,1,f +5902,3437,25,2,f +5902,40666,1,1,f +5902,76371,4,2,f +5902,76371,73,1,f +5902,87084,73,1,f +5902,98223,25,1,f +5902,98233,4,2,f +5903,2339,0,2,f +5903,2445,70,1,f +5903,2446,288,1,f +5903,2456,72,2,f +5903,2456,71,2,f +5903,2540,19,1,f +5903,2555,0,2,f +5903,2566,0,1,f +5903,2587,132,1,f +5903,2587pr0013,288,1,f +5903,2587pr0015,0,1,f +5903,2723,0,1,f +5903,2736,71,2,f +5903,3001,71,1,f +5903,3006,71,1,f +5903,3009,70,2,f +5903,30099,0,4,f +5903,3010,0,2,f +5903,30104,72,1,f +5903,3020,70,4,f +5903,30246,71,1,f +5903,3034,70,2,f +5903,3036,71,1,f +5903,30367b,72,2,f +5903,30374,70,1,f +5903,3043,71,1,f +5903,3062b,71,2,f +5903,3062b,0,3,f +5903,32013,0,2,f +5903,32034,0,2,f +5903,32062,4,2,f +5903,32064b,72,6,f +5903,32123b,71,1,t +5903,32123b,71,3,f +5903,32174,86,2,f +5903,32530,0,4,f +5903,3626bpr0250,14,1,f +5903,3626bpr0351,14,1,f +5903,3626bpr0458,14,1,f +5903,3647,71,1,f +5903,3647,71,1,t +5903,3659,0,3,f +5903,3665,0,4,f +5903,3666,70,4,f +5903,3673,71,3,f +5903,3673,71,1,t +5903,3679,71,1,f +5903,3680,0,1,f +5903,3705,0,1,f +5903,3713,71,1,t +5903,3713,71,1,f +5903,3846pr20,71,1,f +5903,4081b,71,1,f +5903,41677,71,4,f +5903,41764,0,2,f +5903,41765,0,2,f +5903,4274,71,2,f +5903,4274,71,1,t +5903,43093,1,4,f +5903,43888,72,2,f +5903,44302a,0,1,f +5903,44567a,72,1,f +5903,4497,0,1,f +5903,4519,71,5,f +5903,4735,0,1,f +5903,47406,72,2,f +5903,47576,70,1,f +5903,4794b,70,2,f +5903,48485,76,1,f +5903,48493,132,2,f +5903,48494pr07,151,1,f +5903,48495,179,1,f +5903,48723,70,1,f +5903,49668,135,3,f +5903,50303,0,1,f +5903,51342pat0004,80,2,f +5903,53451,15,2,f +5903,53451,15,1,t +5903,53585,0,2,f +5903,54175,148,1,f +5903,6066,0,2,f +5903,6066,72,1,f +5903,6083,72,1,f +5903,6126a,57,1,f +5903,6541,71,2,f +5903,6553,0,1,f +5903,6587,72,1,f +5903,970c00,288,1,f +5903,970x026,14,2,f +5903,973c10,0,2,f +5903,973c47,71,1,f +5906,30094,0,1,f +5906,30148,0,1,f +5906,30552,7,1,f +5906,30553,8,1,f +5906,3957a,7,1,f +5906,6141,15,1,t +5906,6141,15,2,f +5907,11089,0,1,f +5907,11097,297,1,f +5907,11097,179,1,f +5907,11100,0,2,f +5907,11100,15,2,f +5907,11111pr0001,320,1,f +5907,11111pr0002,15,1,f +5907,11126,321,1,f +5907,11126,4,1,f +5907,11127,41,13,f +5907,11767,72,2,f +5907,12549pr0001,15,1,f +5907,12550pr0001,0,1,f +5907,12825,0,3,f +5907,12825,15,2,f +5907,2540,4,1,f +5907,2654,1,2,f +5907,2654,72,1,f +5907,2780,0,1,t +5907,2780,0,4,f +5907,3004,19,2,f +5907,30176,2,4,f +5907,3023,4,1,f +5907,3023,15,1,f +5907,3031,2,1,f +5907,30374,71,1,f +5907,3062b,70,2,f +5907,3626cpr1124,212,1,f +5907,3626cpr1129,0,1,f +5907,3678b,72,4,f +5907,3710,19,2,f +5907,3941,71,4,f +5907,3958,72,1,f +5907,3960,41,1,f +5907,4032a,4,2,f +5907,4032a,1,2,f +5907,4588,72,1,f +5907,4589,297,4,f +5907,4733,72,1,f +5907,52031,15,1,f +5907,52031,320,1,f +5907,53705,41,2,f +5907,53705,41,1,t +5907,55236,288,4,f +5907,6019,15,2,f +5907,6021395,9999,1,f +5907,6021396,9999,1,f +5907,6021397,9999,1,f +5907,6021398,9999,1,f +5907,6021399,9999,1,f +5907,6021460,9999,1,f +5907,6021461,9999,1,f +5907,6021462,9999,1,f +5907,6021463,9999,1,f +5907,6021464,9999,1,f +5907,6141,36,2,f +5907,6141,15,1,f +5907,6141,36,1,t +5907,6141,41,2,f +5907,6141,41,1,t +5907,6141,15,1,t +5907,63965,297,2,f +5907,64567,297,3,f +5907,64567,297,1,t +5907,64727,71,1,f +5907,87580,70,1,f +5907,92338,72,1,f +5907,92593,71,2,f +5907,92690,71,1,f +5907,970c00pr0439,0,1,f +5907,970c01pr0440,15,1,f +5907,973pr2229c01,212,1,f +5907,973pr2239c01,0,1,f +5909,11476,71,1,f +5909,11477,14,4,f +5909,2412b,71,1,f +5909,2412b,0,3,f +5909,3020,14,2,f +5909,3020,0,1,f +5909,3021,0,2,f +5909,3022,0,2,f +5909,3023,72,2,f +5909,30552,0,1,f +5909,3062b,71,2,f +5909,3065,40,2,f +5909,3069b,14,2,f +5909,3710,14,2,f +5909,3795,0,1,f +5909,3839b,0,1,f +5909,4070,14,2,f +5909,44302a,71,1,f +5909,4600,0,2,f +5909,4865a,0,2,f +5909,48729b,72,2,f +5909,48729b,72,1,t +5909,60212,14,1,f +5909,60478,14,2,f +5909,6141,71,4,f +5909,6141,71,1,t +5909,6141,182,2,f +5909,6141,182,1,t +5909,6157,71,2,f +5909,6231,0,2,f +5909,63868,0,1,f +5909,88072,72,1,f +5909,92409,0,4,f +5909,93594,179,4,f +5909,98313,0,2,f +5909,99780,0,1,f +5910,3626bpr0885,14,1,f +5910,40239,308,1,f +5910,88646,0,1,f +5910,91884pr0002,308,1,f +5910,970c88pr0290,70,1,f +5910,973pr1958c01a,272,1,f +5910,98370,179,1,f +5913,122c01,7,2,f +5913,3003,47,1,f +5913,3004,15,2,f +5913,3021,4,3,f +5913,3021,15,1,f +5913,3022,15,1,f +5913,3023,4,1,f +5913,3034,4,1,f +5913,3034,15,1,f +5913,3039,47,1,f +5913,3062a,33,1,f +5913,3625,0,1,f +5913,3626apr0001,14,1,f +5913,3641,0,4,f +5913,3787,4,2,f +5913,970c00,4,1,f +5913,973c01,15,1,f +5914,3308,7,2,f +5914,3455,7,2,f +5914,4490,7,2,f +5916,2496,0,1,f +5916,3031,70,1,f +5916,33051,10,1,f +5916,33172,25,2,f +5916,33183,10,3,f +5916,33291,10,3,f +5916,3626b,25,1,f +5916,3741,2,1,f +5916,3836,70,1,f +5916,3837,8,1,f +5916,4727,10,1,f +5916,59900,14,1,f +5916,6141,15,1,f +5916,61780,70,1,f +5916,98288,4,1,f +5918,2983,7,4,f +5918,3127,7,1,f +5918,3736,7,2,f +5918,4185,7,6,f +5918,70496,0,1,f +5919,2357,0,4,f +5919,2412b,15,6,f +5919,2465,0,4,f +5919,2540,15,1,f +5919,2625,4,1,f +5919,2625,15,1,f +5919,2626,0,2,f +5919,2654,7,4,f +5919,298c05,0,2,f +5919,3001,1,1,f +5919,3001,0,1,f +5919,3003,4,1,f +5919,3004,47,2,f +5919,3004,0,2,f +5919,3008p22,15,12,f +5919,3009,0,4,f +5919,3009p26,15,9,f +5919,3010,0,4,f +5919,3020,1,1,f +5919,3020,15,3,f +5919,3020,4,3,f +5919,3021,4,4,f +5919,3023,1,1,f +5919,3023,15,5,f +5919,3035,15,3,f +5919,3036,4,1,f +5919,3036,15,3,f +5919,3039,0,2,f +5919,3062b,15,1,f +5919,3069b,4,2,f +5919,3070b,36,1,f +5919,3070b,34,1,f +5919,3139,0,8,f +5919,3455,15,2,f +5919,3456,4,1,f +5919,3460,15,13,f +5919,3622,15,2,f +5919,3622,0,2,f +5919,3660p02,15,8,f +5919,3666,15,1,f +5919,3710,15,3,f +5919,3794a,15,1,f +5919,3830,0,2,f +5919,3831,0,2,f +5919,4289,15,1,f +5919,4600,0,4,f +5919,4624,15,8,f +5919,6141,7,12,f +5919,73983,15,2,f +5920,2412b,71,4,f +5920,2462,71,4,f +5920,2540,72,8,f +5920,2577,72,8,f +5920,2736,71,4,f +5920,30000,1,2,f +5920,3002,71,2,f +5920,30375,19,1,f +5920,30375,14,1,f +5920,30376,19,2,f +5920,30377,19,2,f +5920,30377,19,1,t +5920,30378,19,2,f +5920,3039,71,3,f +5920,3045,72,4,f +5920,3048c,71,12,f +5920,30526,72,4,f +5920,30553,0,1,f +5920,32013,72,6,f +5920,32034,71,4,f +5920,32062,0,8,f +5920,32064b,0,1,f +5920,32073,71,2,f +5920,32524,72,8,f +5920,3626bpr0525,78,2,f +5920,3660,71,4,f +5920,3673,71,16,f +5920,3673,71,1,t +5920,3676,72,4,f +5920,3700,0,1,f +5920,3706,0,4,f +5920,3737,0,1,f +5920,3937,71,1,f +5920,3941,0,1,f +5920,3957a,71,2,f +5920,4032a,72,3,f +5920,41678,72,8,f +5920,41889,148,1,f +5920,41890,148,2,f +5920,42446,72,1,f +5920,42687,148,1,f +5920,4274,1,2,f +5920,4274,1,1,t +5920,43093,1,1,f +5920,43857,71,1,f +5920,43898,72,1,f +5920,44294,71,4,f +5920,44301a,71,1,f +5920,44375a,71,2,f +5920,44809,71,5,f +5920,4589,72,1,f +5920,4716,71,4,f +5920,4740,36,1,f +5920,4740,72,1,f +5920,58247,0,4,f +5920,59230,19,2,f +5920,59230,19,1,t +5920,59443,70,4,f +5920,59443,72,6,f +5920,60474,71,4,f +5920,61189pr0003,15,1,f +5920,61189pr0005,15,1,f +5920,61190a,72,1,f +5920,61190b,72,1,f +5920,61190c,72,1,f +5920,61190f,72,2,f +5920,6134,0,1,f +5920,6141,4,1,f +5920,6141,4,1,t +5920,63585,72,2,f +5920,63586,72,2,f +5920,6541,72,2,f +5920,6558,1,2,f +5920,6587,72,2,f +5920,73590c02a,0,2,f +5920,970x026,15,2,f +5920,973pr0470c01,15,1,f +5920,973pr1436c01,15,1,f +5921,2412b,4,1,f +5921,2432,0,1,f +5921,2436,0,2,f +5921,30171,0,1,f +5921,3023,72,4,f +5921,3034,4,1,f +5921,3626bpr0662,14,1,f +5921,3829c01,4,1,f +5921,3957a,0,1,f +5921,44674,0,1,f +5921,4495b,4,1,f +5921,4600,71,1,f +5921,4624,71,2,f +5921,4740,71,1,f +5921,48336,0,3,f +5921,6014b,71,2,f +5921,60700,0,2,f +5921,6157,0,1,f +5921,61678,0,2,f +5921,61678,4,2,f +5921,87414,0,2,f +5921,970x026,72,1,f +5921,973pr1587c01,0,1,f +5922,2342,15,1,f +5922,2408pb01,33,1,f +5922,2418a,33,2,f +5922,2420,15,2,f +5922,2443,0,2,f +5922,2446,14,2,f +5922,2447,33,2,f +5922,298c02,0,2,f +5922,3004,15,9,f +5922,3005,15,6,f +5922,3009,15,8,f +5922,3010,15,2,f +5922,3010ap04,15,2,f +5922,3020,15,1,f +5922,3022,0,4,f +5922,3023,0,14,f +5922,3023,15,14,f +5922,3024,15,4,f +5922,3024,36,2,f +5922,3031,0,2,f +5922,3034,15,6,f +5922,3037,15,8,f +5922,3040b,15,8,f +5922,3062b,36,1,f +5922,3068bp07,15,2,f +5922,3068bp08,15,2,f +5922,3069b,15,2,f +5922,3070b,15,4,f +5922,3070b,0,2,f +5922,3070bp06,15,1,f +5922,3070bpc2,15,1,f +5922,3460,0,4,f +5922,3475b,0,2,f +5922,3623,15,4,f +5922,3626apr0001,14,2,f +5922,3641,0,4,f +5922,3660,15,18,f +5922,3665,15,8,f +5922,3700,15,2,f +5922,3710,0,2,f +5922,3710,15,6,f +5922,3838,14,2,f +5922,3937,15,3,f +5922,3938,15,3,f +5922,3941,15,2,f +5922,3956,15,2,f +5922,3957a,15,4,f +5922,3957a,0,2,f +5922,3958,0,2,f +5922,3960,0,2,f +5922,3963,0,2,f +5922,4070,0,4,f +5922,4070,15,4,f +5922,4162,15,1,f +5922,4213,15,2,f +5922,4229,0,2,f +5922,4286,15,4,f +5922,4477,15,2,f +5922,4588,36,2,f +5922,4589,0,6,f +5922,4590,15,2,f +5922,4595,0,2,f +5922,4597,0,1,f +5922,4600,0,2,f +5922,4624,15,4,f +5922,4625,15,2,f +5922,4730,15,2,f +5922,4740,36,4,f +5922,6141,36,2,f +5922,6141,0,2,f +5922,73590c01a,0,2,f +5922,970c00,14,2,f +5922,973p6ec01,15,2,f +5924,10050,148,1,f +5924,10066pr0003,0,2,f +5924,12825,72,4,f +5924,15485pr0001,28,1,f +5924,15490pr0001,70,1,f +5924,15535,72,2,f +5924,15573,71,2,f +5924,2339,70,1,f +5924,2412b,0,1,f +5924,2412b,19,2,f +5924,2420,71,3,f +5924,2423,320,2,f +5924,2454a,72,3,f +5924,2456,72,1,f +5924,2540,0,1,f +5924,2566,0,1,f +5924,3002,72,2,f +5924,3004,72,4,f +5924,3005,72,3,f +5924,3005,70,7,f +5924,3010,70,1,f +5924,30136,308,6,f +5924,3020,0,1,f +5924,3021,70,3,f +5924,3022,0,1,f +5924,3023,0,2,f +5924,3023,70,5,f +5924,3024,71,1,t +5924,3024,71,1,f +5924,3035,0,1,f +5924,30374,70,2,f +5924,3038,72,2,f +5924,3039,72,3,f +5924,3040b,72,15,f +5924,30503,0,1,f +5924,30526,72,1,f +5924,3062b,72,3,f +5924,3070b,71,3,f +5924,3070b,71,1,t +5924,3245c,72,2,f +5924,32530,0,1,f +5924,32556,19,1,f +5924,3622,71,3,f +5924,3626cpr0895,15,2,f +5924,3626cpr1312,84,2,f +5924,3665,72,6,f +5924,3679,71,2,f +5924,3680,0,2,f +5924,3709,71,2,f +5924,3795,308,1,f +5924,3795,0,2,f +5924,3830,72,1,f +5924,3831,72,1,f +5924,3848,148,2,f +5924,3941,70,2,f +5924,4032b,0,6,f +5924,41669,179,2,f +5924,41769,0,2,f +5924,41770,0,1,f +5924,4286,72,1,f +5924,4460b,72,3,f +5924,4460b,70,1,f +5924,4477,0,1,f +5924,4519,71,2,f +5924,4600,0,1,f +5924,53451,15,1,t +5924,53451,15,1,f +5924,53705,148,1,f +5924,54200,72,1,t +5924,54200,0,2,f +5924,54200,72,12,f +5924,54200,0,1,t +5924,55236,70,1,f +5924,59232,179,1,f +5924,59900,70,3,f +5924,60481,71,1,f +5924,61184,71,2,f +5924,6141,70,1,t +5924,6141,70,1,f +5924,64647,57,1,t +5924,64647,57,1,f +5924,64727,84,4,f +5924,6541,19,1,f +5924,85984,0,1,f +5924,87087,0,20,f +5924,87580,71,4,f +5924,87747,15,1,t +5924,87747,15,1,f +5924,88289,308,2,f +5924,93594,179,2,f +5924,970c00pr0577,84,2,f +5924,970c00pr0579,308,1,f +5924,973pr2505c01,308,2,f +5924,973pr2509c01,28,1,f +5924,98283,72,2,f +5924,98560,72,1,f +5925,2362a,40,4,f +5925,2362b,71,2,f +5925,2412b,72,4,f +5925,2419,72,4,f +5925,2420,72,2,f +5925,2431,320,13,f +5925,2431,71,2,f +5925,2432,72,6,f +5925,2444,0,4,f +5925,2445,0,2,f +5925,2453a,320,2,f +5925,2456,71,6,f +5925,2476a,15,2,f +5925,2540,0,3,f +5925,2555,0,3,f +5925,2653,71,2,f +5925,2730,71,4,f +5925,2780,0,50,f +5925,2780,0,1,t +5925,2817,71,2,f +5925,2877,71,6,f +5925,298c02,15,2,f +5925,298c02,15,1,t +5925,3001,0,1,f +5925,3002,71,6,f +5925,3003,15,1,f +5925,30041,72,1,f +5925,30157,72,2,f +5925,3020,71,9,f +5925,3021,72,1,f +5925,3022,71,13,f +5925,3023,1,1,f +5925,3023,320,6,f +5925,30249,71,4,f +5925,30303,71,6,f +5925,3031,0,5,f +5925,3032,15,2,f +5925,3034,72,6,f +5925,3035,71,3,f +5925,30359b,47,1,f +5925,3036,72,2,f +5925,30363,71,2,f +5925,30374,41,1,f +5925,30374,42,1,f +5925,30375,19,1,f +5925,30376,19,1,f +5925,30377,19,1,t +5925,30377,19,2,f +5925,30378,19,1,f +5925,3038,71,4,f +5925,3039,72,20,f +5925,3040b,72,8,f +5925,3048c,71,1,f +5925,30516,71,1,f +5925,30526,1,1,f +5925,30602,1,1,f +5925,3062b,71,1,f +5925,30658,0,1,f +5925,3068b,72,10,f +5925,3069b,320,4,f +5925,3069b,1,1,f +5925,32000,0,11,f +5925,32002,72,1,t +5925,32002,72,2,f +5925,32013,0,6,f +5925,32028,15,2,f +5925,32039,4,2,f +5925,32054,0,12,f +5925,32062,4,8,f +5925,32064b,72,1,f +5925,32126,71,2,f +5925,32184,71,4,f +5925,32192,0,4,f +5925,32271,71,4,f +5925,32316,15,4,f +5925,32333,0,2,f +5925,32523,71,4,f +5925,32525,71,2,f +5925,32530,72,4,f +5925,32531,71,6,f +5925,32555,0,4,f +5925,32556,19,2,f +5925,3298,72,8,f +5925,3460,71,5,f +5925,3460,0,2,f +5925,3622,71,4,f +5925,3626bpr0514,78,1,f +5925,3626bpr0525,78,1,f +5925,3626bpr0548,78,1,f +5925,3626bpr0555,25,1,f +5925,3665,72,4,f +5925,3666,71,16,f +5925,3676,72,2,f +5925,3678b,71,2,f +5925,3700,71,7,f +5925,3701,0,7,f +5925,3703,72,2,f +5925,3707,0,2,f +5925,3710,272,1,f +5925,3710,320,10,f +5925,3713,71,4,f +5925,3713,71,1,t +5925,3743,0,4,f +5925,3747b,71,4,f +5925,3749,19,4,f +5925,3795,71,2,f +5925,3832,71,4,f +5925,3839b,72,1,f +5925,3894,72,3,f +5925,3895,0,1,f +5925,3937,71,2,f +5925,3938,0,2,f +5925,3941,46,2,f +5925,3941,1,6,f +5925,3958,71,5,f +5925,3960,47,1,f +5925,3960pr0005,71,4,f +5925,3961,72,2,f +5925,4032a,72,6,f +5925,40490,0,4,f +5925,4070,0,2,f +5925,4079b,0,8,f +5925,4085c,72,4,f +5925,4095,0,6,f +5925,4150,15,2,f +5925,41539,71,2,f +5925,41677,71,6,f +5925,41769,71,2,f +5925,41770,71,2,f +5925,42003,4,4,f +5925,42060,72,2,f +5925,42061,72,2,f +5925,4274,1,1,t +5925,4274,1,17,f +5925,4286,72,12,f +5925,4287,72,8,f +5925,43093,1,18,f +5925,4345b,71,1,f +5925,4346,15,1,f +5925,4349,72,2,f +5925,43722,72,2,f +5925,43723,72,2,f +5925,43898,72,6,f +5925,44294,71,1,f +5925,44301a,71,8,f +5925,44302a,72,12,f +5925,44358,71,6,f +5925,44359,71,12,f +5925,44375a,71,6,f +5925,44375apr01,71,2,f +5925,44676,272,2,f +5925,4477,15,6,f +5925,4515,71,2,f +5925,4519,71,13,f +5925,4589,0,8,f +5925,4697b,71,2,f +5925,4697b,71,1,t +5925,4716,71,2,f +5925,4733,1,2,f +5925,4740,71,6,f +5925,47457,71,1,f +5925,47759,320,1,f +5925,47905,72,4,f +5925,4864b,71,4,f +5925,4865a,15,2,f +5925,48933,72,1,f +5925,50304,71,2,f +5925,50305,71,2,f +5925,50950,72,1,f +5925,54200,1,1,f +5925,54200,72,1,t +5925,54200,1,1,t +5925,54200,72,2,f +5925,54383,71,2,f +5925,54384,71,2,f +5925,57028c01,71,2,f +5925,57796,0,2,f +5925,57899,0,2,f +5925,59426,72,4,f +5925,59443,0,7,f +5925,6106,71,4,f +5925,61183,70,1,f +5925,61189pr0002,15,1,f +5925,61189pr0003,15,1,f +5925,61190a,72,2,f +5925,61190b,72,2,f +5925,61190c,72,2,f +5925,61190f,72,2,f +5925,61195pr01,15,1,f +5925,6141,1,1,t +5925,6141,1,12,f +5925,6179,71,1,f +5925,62113,72,1,f +5925,62462,71,1,f +5925,62462,15,4,f +5925,6249,71,1,f +5925,63284,378,1,f +5925,63585,72,2,f +5925,63586,72,2,f +5925,63776,378,1,f +5925,63777,378,1,f +5925,64567,71,4,f +5925,6536,0,2,f +5925,6541,71,1,f +5925,6558,1,9,f +5925,6587,72,2,f +5925,6628,0,4,f +5925,6632,4,2,f +5925,6636,0,3,f +5925,76385,0,4,f +5925,85543,15,4,f +5925,970c00,0,1,f +5925,970x026,15,2,f +5925,970x192,71,1,f +5925,973pr0470c01,15,1,f +5925,973pr1358ac01,0,1,f +5925,973pr1388c01,25,1,f +5925,973pr1476c01,15,1,f +5927,3185,4,15,f +5927,3186,4,2,f +5927,3187,4,2,f +5929,11055,71,6,f +5929,11203,72,1,f +5929,11211,71,6,f +5929,11215,71,2,f +5929,11477,191,4,f +5929,14719,191,2,f +5929,14769,191,2,f +5929,14769,71,2,f +5929,15068,72,2,f +5929,15573,71,14,f +5929,15573,70,6,f +5929,2357,71,2,f +5929,2357,191,14,f +5929,2412b,72,8,f +5929,2420,72,2,f +5929,2431,191,7,f +5929,2431,70,2,f +5929,2431,71,1,f +5929,2540,72,8,f +5929,2654,71,9,f +5929,2654,0,2,f +5929,2780,0,3,f +5929,2780,0,1,t +5929,298c02,0,1,f +5929,298c02,0,1,t +5929,3002,71,2,f +5929,3004,72,2,f +5929,3004,191,10,f +5929,3005,71,8,f +5929,3009,72,4,f +5929,3010,191,4,f +5929,3020,191,8,f +5929,3021,191,3,f +5929,3021,70,2,f +5929,3021,71,7,f +5929,3022,72,2,f +5929,3022,71,10,f +5929,3022,191,2,f +5929,3023,191,13,f +5929,3023,71,2,f +5929,3023,72,9,f +5929,3023,0,1,f +5929,3024,72,1,t +5929,3024,191,6,f +5929,3024,191,1,t +5929,3024,71,2,f +5929,3024,71,1,t +5929,3024,72,4,f +5929,3030,71,2,f +5929,3031,72,2,f +5929,3032,71,2,f +5929,3034,71,6,f +5929,3036,71,1,f +5929,30364,0,2,f +5929,30365,71,2,f +5929,30387,71,2,f +5929,3040b,191,2,f +5929,30414,72,5,f +5929,3068b,191,6,f +5929,3068b,70,4,f +5929,3068b,72,3,f +5929,3068b,71,4,f +5929,3068bpr0278,0,1,f +5929,3068bpr0279,191,1,f +5929,3069b,0,1,f +5929,3069b,191,8,f +5929,3069b,72,5,f +5929,3069b,71,3,f +5929,3070b,71,2,f +5929,3070b,191,1,t +5929,3070b,191,4,f +5929,3070b,72,1,t +5929,3070b,71,1,t +5929,3070b,72,1,f +5929,32000,19,6,f +5929,32000,71,2,f +5929,32039,71,2,f +5929,32054,0,4,f +5929,32062,4,2,f +5929,32064a,71,7,f +5929,32123b,71,1,t +5929,32123b,71,6,f +5929,32187,71,2,f +5929,32250,72,4,f +5929,32316,72,2,f +5929,32523,72,1,f +5929,3460,0,2,f +5929,3622,72,2,f +5929,3622,191,2,f +5929,3623,72,8,f +5929,3623,191,4,f +5929,3660,70,5,f +5929,3665,191,6,f +5929,3666,0,4,f +5929,3666,191,6,f +5929,3666,71,5,f +5929,3700,72,13,f +5929,3705,0,2,f +5929,3707,0,2,f +5929,3709,71,1,f +5929,3710,191,7,f +5929,3710,72,2,f +5929,3710,70,2,f +5929,3713,71,1,t +5929,3713,71,4,f +5929,3749,19,4,f +5929,3795,191,9,f +5929,3795,72,5,f +5929,3832,71,1,f +5929,3832,72,1,f +5929,3941,70,1,f +5929,40490,71,2,f +5929,4070,72,4,f +5929,4081b,72,4,f +5929,4162,72,4,f +5929,41677,71,4,f +5929,4185,71,2,f +5929,42003,71,4,f +5929,4274,71,1,t +5929,4274,71,2,f +5929,4274,1,1,t +5929,4274,1,4,f +5929,4286,191,4,f +5929,4287,191,4,f +5929,43093,1,6,f +5929,43898,72,2,f +5929,44728,72,4,f +5929,44728,71,4,f +5929,4477,72,3,f +5929,4519,14,2,f +5929,45590,0,2,f +5929,4740,71,4,f +5929,47455,72,1,f +5929,47755,72,2,f +5929,48171,72,1,f +5929,48729b,72,1,t +5929,48729b,72,2,f +5929,50950,72,4,f +5929,54200,191,2,f +5929,54200,72,1,t +5929,54200,72,2,f +5929,54200,191,1,t +5929,57520,0,8,f +5929,60470b,71,3,f +5929,60478,191,6,f +5929,60897,0,2,f +5929,6091,71,2,f +5929,6141,36,3,f +5929,6141,36,1,t +5929,6141,0,2,f +5929,6141,0,1,t +5929,6231,71,2,f +5929,62462,71,2,f +5929,6255,2,1,f +5929,63864,70,2,f +5929,63864,72,4,f +5929,64276,72,2,f +5929,6536,72,2,f +5929,6541,70,1,f +5929,6558,1,8,f +5929,6587,28,10,f +5929,6632,72,2,f +5929,6636,191,7,f +5929,6636,72,2,f +5929,73590c03a,0,2,f +5929,85984,72,2,f +5929,85984,71,4,f +5929,87079,71,1,f +5929,87079,191,6,f +5929,87079,72,4,f +5929,87079,70,2,f +5929,87079pr0083,191,1,f +5929,87087,191,12,f +5929,87087,1,2,f +5929,87544,0,1,f +5929,87552,71,4,f +5929,87580,71,1,f +5929,88323,0,40,f +5929,92013,72,2,f +5929,93273,72,6,f +5929,93274,71,2,f +5929,96874,25,1,t +5929,98138,71,1,t +5929,98138,71,4,f +5929,98282,72,2,f +5929,98286,71,4,f +5929,99021,72,2,f +5929,99206,0,1,f +5929,99207,25,2,f +5929,99207,0,1,f +5929,99780,72,6,f +5930,2419,71,2,f +5930,3001,70,1,f +5930,3031,2,1,f +5930,3039,71,2,f +5930,3700,72,1,f +5930,3941,46,2,f +5930,43898,0,1,f +5930,54200,0,2,f +5930,54200,0,1,t +5930,6141,15,1,t +5930,6141,15,1,f +5930,85080,4,8,f +5930,87081,0,1,f +5930,87081,15,3,f +5932,11439pat0002,47,2,f +5932,11477,322,6,f +5932,14417,72,5,f +5932,14418,71,2,f +5932,14419,72,1,f +5932,14704,71,3,f +5932,15573,1,1,f +5932,16770,41,1,f +5932,2540,1,2,f +5932,2654,1,1,f +5932,3020,1,1,f +5932,3022,1,1,f +5932,3022,322,1,f +5932,3062b,1,2,f +5932,3626cpr1001,15,1,f +5932,3700,0,2,f +5932,42023,322,2,f +5932,47457,1,2,f +5932,54200,143,1,t +5932,54200,143,3,f +5932,6019,1,2,f +5932,61184,71,2,f +5932,6141,15,1,t +5932,6141,15,4,f +5932,6215,1,1,f +5932,87087,1,2,f +5932,93273,1,2,f +5932,99207,71,2,f +5934,3021,0,1,f +5934,3023,4,1,f +5934,3023,14,2,f +5934,3023,72,1,f +5934,3023,0,1,f +5934,3031,72,1,f +5934,3034,0,1,f +5934,30602,0,1,f +5934,30602,14,1,f +5934,4081b,0,2,f +5934,47458,0,1,f +5934,48183,14,1,f +5934,50944pr0001,0,4,f +5934,50947,0,2,f +5934,50951,0,4,f +5934,54200,47,2,f +5934,6157,0,2,f +5938,12825,72,3,f +5938,2412b,72,20,f +5938,2412b,320,2,f +5938,2419,71,1,f +5938,2420,71,1,t +5938,2420,0,4,f +5938,2420,71,7,f +5938,2431,0,1,f +5938,2431,71,1,f +5938,2431,72,2,f +5938,2431,19,2,f +5938,2432,72,1,f +5938,2436,0,1,f +5938,2445,0,1,f +5938,2445,71,1,f +5938,2453a,72,2,f +5938,2456,71,14,f +5938,2458,71,3,f +5938,2460,72,2,f +5938,2460,0,2,f +5938,2570,148,1,f +5938,2654,4,1,f +5938,2723,0,6,f +5938,2780,0,3,t +5938,2780,0,37,f +5938,2817,4,2,f +5938,2877,72,4,f +5938,298c02,71,2,t +5938,298c02,71,7,f +5938,30000,71,4,f +5938,3001,19,4,f +5938,3002,71,9,f +5938,3003,19,2,f +5938,3004,320,3,f +5938,3004,0,2,f +5938,3004,71,18,f +5938,3004,4,1,f +5938,3009,71,28,f +5938,3010,71,19,f +5938,3020,72,14,f +5938,3020,4,2,f +5938,3020,71,4,f +5938,3021,71,7,f +5938,3021,72,46,f +5938,3021,1,2,f +5938,3022,19,17,f +5938,3023,72,5,f +5938,3023,33,4,f +5938,3023,0,60,f +5938,3023,19,13,f +5938,3024,19,2,f +5938,3027,71,5,f +5938,3029,71,2,f +5938,3031,72,8,f +5938,3032,72,1,f +5938,3032,0,1,f +5938,3033,71,1,f +5938,3035,71,2,f +5938,3035,72,1,f +5938,30355,71,2,f +5938,30356,71,2,f +5938,30357,72,8,f +5938,30359b,72,2,f +5938,30368,0,1,f +5938,30370,71,1,f +5938,30374,36,1,f +5938,30374,71,8,f +5938,30374,41,2,f +5938,30377,71,3,f +5938,30377,71,1,t +5938,30381,70,1,f +5938,3039,0,4,f +5938,3039,71,1,f +5938,3039pr0014,0,3,f +5938,3039pr0015,0,2,f +5938,3040b,71,6,f +5938,3040b,19,2,f +5938,30414,72,2,f +5938,30414,19,1,f +5938,3043,0,1,f +5938,30483pr01,70,1,f +5938,30504,71,3,f +5938,30565,72,8,f +5938,3062b,19,6,f +5938,3065,33,1,f +5938,3068b,71,6,f +5938,3069b,320,6,f +5938,3069b,19,8,f +5938,3069b,72,8,f +5938,3069b,71,9,f +5938,3069b,28,3,f +5938,3069bpr0030,72,1,f +5938,3069bpr0070,0,1,f +5938,3069bpr0090,72,1,f +5938,32028,71,4,f +5938,32054,4,2,f +5938,32064b,71,8,f +5938,32140,71,4,f +5938,3245c,71,2,f +5938,32526,71,2,f +5938,32531,71,1,f +5938,32532,71,1,f +5938,32557,71,2,f +5938,3308,71,4,f +5938,3460,72,2,f +5938,3460,0,8,f +5938,3622,71,8,f +5938,3623,0,7,f +5938,3623,71,4,f +5938,3626bpr0638,78,1,f +5938,3626bpr0639,71,1,f +5938,3626bpr0648,78,1,f +5938,3626bpr0655,78,1,f +5938,3626bpr0820,78,1,f +5938,3665,71,22,f +5938,3666,72,9,f +5938,3666,19,7,f +5938,3678b,71,16,f +5938,3679,71,3,f +5938,3680,0,3,f +5938,3700,71,9,f +5938,3701,19,2,f +5938,3703,72,4,f +5938,3710,71,8,f +5938,3710,71,1,t +5938,3710,72,8,f +5938,3747b,71,8,f +5938,3794b,71,4,f +5938,3795,72,17,f +5938,3795,71,3,f +5938,3795,19,3,f +5938,3795,320,1,f +5938,3832,19,2,f +5938,3832,71,3,f +5938,3839b,72,2,f +5938,3894,71,6,f +5938,3895,71,11,f +5938,3899,4,1,f +5938,3901,70,1,f +5938,3937,15,1,f +5938,3958,71,4,f +5938,3958,72,4,f +5938,3960pr0008,47,1,f +5938,4006,0,1,f +5938,4032a,0,1,f +5938,4079,70,6,f +5938,4085c,72,2,f +5938,4150,0,3,f +5938,4150,71,9,f +5938,41539,71,1,f +5938,4162,71,6,f +5938,4175,72,5,f +5938,41769,71,1,f +5938,41770,71,1,f +5938,42445,71,2,f +5938,4274,1,2,f +5938,4274,71,8,f +5938,4274,71,2,t +5938,4274,1,1,t +5938,43093,1,2,f +5938,4345b,15,1,f +5938,4346,15,1,f +5938,43722,71,2,f +5938,43723,71,2,f +5938,44375a,71,1,f +5938,4445,71,2,f +5938,4460b,71,4,f +5938,44661,72,4,f +5938,44728,0,13,f +5938,44728,71,2,f +5938,4510,15,2,f +5938,4519,71,4,f +5938,4522,0,1,f +5938,4589,0,2,f +5938,4589,71,8,f +5938,4589,4,4,f +5938,4590,72,2,f +5938,4623,0,6,f +5938,4623,4,3,f +5938,4733,15,1,f +5938,47397,71,12,f +5938,47398,71,12,f +5938,4740,15,2,f +5938,47543,71,1,f +5938,47543pr0001b,47,1,f +5938,48092,71,8,f +5938,48336,71,4,f +5938,4865a,19,2,f +5938,4865b,0,3,f +5938,50231,0,1,f +5938,50231,70,1,f +5938,50950,71,14,f +5938,51739,72,1,f +5938,51739,71,6,f +5938,52107,0,2,f +5938,52107,14,3,f +5938,54383,71,3,f +5938,54384,71,3,f +5938,58247,0,3,f +5938,59349,72,1,f +5938,6019,15,2,f +5938,60208,72,2,f +5938,60477,72,3,f +5938,60478,72,36,f +5938,60479,71,1,f +5938,6091,71,2,f +5938,6091,19,2,f +5938,6106,71,1,f +5938,6112,71,2,f +5938,61184,71,4,f +5938,6134,4,1,f +5938,61409,72,2,f +5938,6141,41,2,f +5938,6141,72,2,t +5938,6141,72,5,f +5938,6141,47,2,f +5938,6141,47,1,t +5938,6141,19,3,t +5938,6141,41,1,t +5938,6141,19,13,f +5938,61485,0,1,f +5938,6177,71,2,f +5938,61780,72,1,f +5938,6190,72,2,f +5938,62462,71,2,f +5938,6249,72,13,f +5938,62701,135,2,f +5938,63864,71,10,f +5938,63868,71,62,f +5938,64567,80,3,f +5938,6541,1,2,f +5938,6558,1,6,f +5938,6628,0,4,f +5938,6636,71,34,f +5938,78c19,41,1,f +5938,85080,71,8,f +5938,85984,71,8,f +5938,86208,71,1,f +5938,87081,0,1,f +5938,87087,72,2,f +5938,87544,71,1,f +5938,87609,15,1,f +5938,87620,0,8,f +5938,88930,71,4,f +5938,92099,72,14,f +5938,92280,71,4,f +5938,92438,71,2,f +5938,92593,15,1,f +5938,92746,19,1,f +5938,92758,308,1,f +5938,93274,71,4,f +5938,970c00,15,1,f +5938,970c00,0,1,f +5938,970c00,70,1,f +5938,970c00,19,1,f +5938,970c00pr0113,19,1,f +5938,970c00pr0240,272,1,f +5938,973c32,70,1,f +5938,973pr0510c01,15,1,f +5938,973pr0530c01,19,1,f +5938,973pr1331c01,0,1,f +5938,973pr1332c01,15,1,f +5938,973pr1469c01,0,1,f +5939,2780,0,7,f +5939,2780,0,1,t +5939,2825,71,2,f +5939,3020,72,2,f +5939,32002,72,1,t +5939,32002,72,4,f +5939,32013,14,2,f +5939,32065,14,2,f +5939,32073,71,7,f +5939,32123b,14,1,t +5939,32123b,14,6,f +5939,32140,0,2,f +5939,32184,0,3,f +5939,32249,0,2,f +5939,32291,0,2,f +5939,32316,72,2,f +5939,32316,14,2,f +5939,32523,72,2,f +5939,32524,14,2,f +5939,32526,14,2,f +5939,3647,72,1,f +5939,3713,71,1,t +5939,3713,71,3,f +5939,3737,0,1,f +5939,3749,19,7,f +5939,3832,72,1,f +5939,3873,0,1,t +5939,3873,0,52,f +5939,4019,71,4,f +5939,42003,71,4,f +5939,4274,1,1,t +5939,4274,1,8,f +5939,43337,14,2,f +5939,44294,71,1,f +5939,4519,71,5,f +5939,4716,71,1,f +5939,4865a,14,1,f +5939,59443,14,3,f +5939,60483,71,5,f +5939,6179,72,2,f +5939,62462,0,4,f +5939,6536,14,3,f +5939,6558,1,4,f +5939,6587,72,2,f +5940,2357,4,8,f +5940,2431,14,8,f +5940,3005,14,4,f +5940,3022,14,4,f +5940,3022,4,8,f +5940,3023,4,8,f +5940,3031,4,1,f +5940,3063b,14,8,f +5940,3069b,14,4,f +5940,3069b,4,4,f +5940,3070b,4,4,f +5940,32000,4,8,f +5940,3623,4,8,f +5940,3666,4,4,f +5940,3795,4,6,f +5940,3795,14,2,f +5940,3941,14,1,f +5940,4032a,14,1,f +5940,4274,7,16,f +5940,6141,14,1,f +5943,11153,0,2,f +5943,11458,72,2,f +5943,15391,71,1,f +5943,15392,72,1,t +5943,15392,72,1,f +5943,15443,70,1,f +5943,15444,4,1,f +5943,15851pat01,0,1,f +5943,2357,0,1,f +5943,2412b,0,4,f +5943,2412b,71,3,f +5943,2419,0,1,f +5943,2420,0,4,f +5943,2431,0,1,f +5943,2431,2,1,f +5943,2431,71,1,f +5943,2432,72,1,f +5943,2436,15,1,f +5943,2456,0,1,f +5943,2654,46,4,f +5943,2780,0,2,t +5943,2780,0,4,f +5943,2817,71,1,f +5943,3001,15,1,f +5943,3004,0,2,f +5943,3009,15,3,f +5943,30093,288,1,f +5943,3010,72,1,f +5943,3020,70,3,f +5943,3020,72,2,f +5943,3020,71,3,f +5943,3022,15,5,f +5943,3022,0,2,f +5943,3023,15,9,f +5943,3023,0,6,f +5943,3031,0,2,f +5943,3033,0,1,f +5943,3034,0,2,f +5943,3034,272,2,f +5943,3034,70,4,f +5943,3034,19,1,f +5943,3035,0,1,f +5943,30367b,72,1,f +5943,30374,71,2,f +5943,30377,71,1,t +5943,30377,71,2,f +5943,3041,15,2,f +5943,3049d,15,2,f +5943,3049d,0,2,f +5943,30540,15,2,f +5943,30552,72,4,f +5943,30553,71,2,f +5943,3068b,0,4,f +5943,3069b,33,1,f +5943,3069b,70,1,f +5943,3069b,36,1,f +5943,3069b,0,3,f +5943,32001,71,1,f +5943,32062,4,2,f +5943,32523,71,2,f +5943,33320,2,1,f +5943,3460,15,2,f +5943,3622,71,2,f +5943,3623,0,2,f +5943,3626cpr1325,14,1,f +5943,3626cpr1328,14,1,f +5943,3660,15,2,f +5943,3666,0,5,f +5943,3666,72,2,f +5943,3673,71,1,f +5943,3673,71,1,t +5943,3702,71,2,f +5943,3706,0,2,f +5943,3710,71,4,f +5943,3710,15,3,f +5943,3795,72,3,f +5943,3795,0,1,f +5943,3829c01,71,1,f +5943,3937,0,3,f +5943,3938,71,1,f +5943,3957a,0,1,f +5943,4032a,71,2,f +5943,4162,71,3,f +5943,41747,0,2,f +5943,41748,0,2,f +5943,41764,0,2,f +5943,41765,0,2,f +5943,41769,70,4,f +5943,42446,71,1,t +5943,42446,71,1,f +5943,43093,1,2,f +5943,44728,72,2,f +5943,4477,72,2,f +5943,4740,36,2,f +5943,47457,71,1,f +5943,48336,71,1,f +5943,50745,0,2,f +5943,50950,15,4,f +5943,52031,0,2,f +5943,54200,0,1,t +5943,54200,36,1,t +5943,54200,47,1,t +5943,54200,36,2,f +5943,54200,47,4,f +5943,54200,0,4,f +5943,58176,36,1,f +5943,58176,33,1,f +5943,58181,40,1,f +5943,59443,4,2,f +5943,59900,36,2,f +5943,59900,33,2,f +5943,6026,288,2,f +5943,6027,288,2,f +5943,6028,288,2,f +5943,60470a,15,1,f +5943,60478,0,2,f +5943,60478,15,4,f +5943,60483,71,2,f +5943,60897,72,1,f +5943,6134,1,2,f +5943,6141,71,2,t +5943,6141,0,6,f +5943,6141,33,2,t +5943,6141,36,3,f +5943,6141,33,4,f +5943,6141,0,2,t +5943,6141,36,1,t +5943,6141,71,18,f +5943,62361,0,2,f +5943,62462,71,2,f +5943,63868,72,4,f +5943,64567,71,4,f +5943,64567,71,1,t +5943,6636,0,1,f +5943,85984,15,2,f +5943,85984,0,5,f +5943,87079,0,1,f +5943,87580,71,2,f +5943,91988,19,1,f +5943,92280,0,2,f +5943,92946,15,6,f +5943,95347,0,4,f +5943,970c00,0,1,f +5943,970c00pr0605,25,1,f +5943,973pr2538c01,25,1,f +5943,973pr2544c01,0,1,f +5943,98286,71,2,f +5943,99207,71,1,f +5943,99780,72,2,f +5943,99781,15,2,f +5945,3032,15,1,f +5945,3068bpb0175,15,1,f +5945,3068bpb0176,15,1,f +5945,3068bpb0177,15,1,f +5945,3068bpb0178,15,1,f +5945,3068bpb0179,15,1,f +5945,3068bpb0180,15,1,f +5946,50899pat01,15,4,f +5946,50899pr0002,179,1,f +5947,3003,14,3,f +5947,3004,14,4,f +5947,3008,14,4,f +5947,3009,14,4,f +5947,3010,14,6,f +5947,3020,14,4,f +5947,3021,14,1,f +5947,3022,14,3,f +5947,3023,7,2,f +5947,3023,0,7,f +5947,3023,47,2,f +5947,3023,14,2,f +5947,3024,36,2,f +5947,3029,14,2,f +5947,3030,14,2,f +5947,3032,14,2,f +5947,3033,14,2,f +5947,3034,14,1,f +5947,3062a,0,3,f +5947,3062a,36,1,f +5947,3068b,14,8,f +5947,3069b,14,11,f +5947,3145,14,2,f +5947,3460,14,5,f +5947,3647,7,7,f +5947,3648a,7,3,f +5947,3649,7,4,f +5947,3650a,7,2,f +5947,3651,7,22,f +5947,3660,14,3,f +5947,3673,7,40,f +5947,3700,14,10,f +5947,3701,14,4,f +5947,3702,14,10,f +5947,3703,14,6,f +5947,3705,0,10,f +5947,3706,0,5,f +5947,3707,0,4,f +5947,3708,0,2,f +5947,3710,14,7,f +5947,3710,7,4,f +5947,3713,7,11,f +5947,3736,7,2,f +5947,3737,0,1,f +5947,3743,7,6,f +5947,3749,7,4,f +5947,3795,14,4,f +5947,3873,0,106,f +5947,3894,14,8,f +5947,3895,14,2,f +5947,71509,0,2,f +5949,2780,0,5,f +5949,2907,71,1,f +5949,32062,0,1,f +5949,32174,72,7,f +5949,32270,71,1,f +5949,32482,15,1,f +5949,3706,0,1,f +5949,41669,41,2,f +5949,43093,1,3,f +5949,4519,71,4,f +5949,47296,72,2,f +5949,47299,179,2,f +5949,47306,15,1,f +5949,50899,179,1,f +5949,50899pr0002,179,1,f +5949,50900,72,1,f +5949,50901,72,1,f +5949,50903,14,1,f +5949,50919,179,2,f +5949,50920,15,2,f +5949,50921,15,1,f +5949,50922,15,1,f +5949,50923,72,1,f +5949,50925,15,1,f +5949,50926,179,1,f +5949,50932,15,1,f +5949,50936pb01,15,2,f +5951,2357,4,6,f +5951,2412b,4,17,f +5951,2419,71,2,f +5951,2420,4,8,f +5951,2431,4,16,f +5951,2445,72,5,f +5951,2456,4,1,f +5951,2654,71,2,f +5951,2714a,71,4,f +5951,2780,0,1,t +5951,2780,0,6,f +5951,2877,4,7,f +5951,3002,71,4,f +5951,3003,4,4,f +5951,3004,71,18,f +5951,3007,71,1,f +5951,3009,71,3,f +5951,3020,71,3,f +5951,3021,4,16,f +5951,3022,25,8,f +5951,3023,72,13,f +5951,3031,71,1,f +5951,3032,71,2,f +5951,3034,4,4,f +5951,3037,71,1,f +5951,3039,4,4,f +5951,3040b,4,8,f +5951,30414,72,4,f +5951,30602,4,1,f +5951,3062b,72,8,f +5951,30647,0,2,f +5951,3068b,4,3,f +5951,3069b,25,7,f +5951,3185,0,1,f +5951,32000,71,8,f +5951,32001,0,2,f +5951,32002,72,4,f +5951,32015,0,4,f +5951,32054,0,4,f +5951,32059,71,2,f +5951,32064b,72,12,f +5951,32073,71,4,f +5951,32074c01,0,2,f +5951,32123b,14,6,f +5951,32123b,14,1,t +5951,32140,72,2,f +5951,32184,0,4,f +5951,32269,71,3,f +5951,32270,0,4,f +5951,32316,72,2,f +5951,32449,0,1,f +5951,32523,72,2,f +5951,32532,71,1,f +5951,32556,71,2,f +5951,3298,4,3,f +5951,3460,71,8,f +5951,3475b,72,2,f +5951,3623,71,6,f +5951,3647,71,1,t +5951,3647,71,1,f +5951,3648b,71,6,f +5951,3649,71,1,f +5951,3650c,71,1,f +5951,3660,71,4,f +5951,3666,25,14,f +5951,3666,4,4,f +5951,3673,71,1,t +5951,3673,71,2,f +5951,3700,0,11,f +5951,3701,4,4,f +5951,3702,4,3,f +5951,3702,71,2,f +5951,3705,0,5,f +5951,3706,0,2,f +5951,3707,0,4,f +5951,3709,4,3,f +5951,3710,25,13,f +5951,3710,0,4,f +5951,3713,4,1,t +5951,3713,4,9,f +5951,3737,0,1,f +5951,3738,0,1,f +5951,3747a,0,2,f +5951,3749,19,8,f +5951,3794a,72,1,f +5951,3795,72,2,f +5951,3832,71,1,f +5951,3894,71,2,f +5951,3895,71,2,f +5951,3941,72,2,f +5951,3958,71,1,f +5951,4019,71,6,f +5951,4032a,72,7,f +5951,4070,4,2,f +5951,4150,4,1,f +5951,41533,4,1,f +5951,4162,4,4,f +5951,41677,72,4,f +5951,41749,4,2,f +5951,41750,4,2,f +5951,41753,72,1,t +5951,41764,71,1,f +5951,41765,71,1,f +5951,41769,72,3,f +5951,41770,72,3,f +5951,4185,71,2,f +5951,42022,0,2,f +5951,42022,4,8,f +5951,42023,71,8,f +5951,4274,1,1,t +5951,4274,1,2,f +5951,4282,4,1,f +5951,4286,4,10,f +5951,4287,4,2,f +5951,4287,71,4,f +5951,43093,1,4,f +5951,43722,25,8,f +5951,43723,25,8,f +5951,43857,0,2,f +5951,44294,71,2,f +5951,44309,0,4,f +5951,44486c02,47,1,f +5951,44567a,0,2,f +5951,4460a,4,2,f +5951,44661,72,1,f +5951,44728,0,4,f +5951,4519,71,8,f +5951,45337c02,47,1,f +5951,4589,182,6,f +5951,46413,40,1,f +5951,4740,15,2,f +5951,5306bc036,0,1,f +5951,5306bc162,0,1,f +5951,54200,0,6,f +5951,54734,71,1,f +5951,56145,71,4,f +5951,56823c150,0,1,f +5951,57028c01,71,2,f +5951,57467,383,4,f +5951,6005,4,2,f +5951,6019,0,8,f +5951,6091,4,6,f +5951,6141,0,1,t +5951,6141,57,6,f +5951,6141,57,1,t +5951,6141,0,10,f +5951,6536,72,3,f +5951,6538b,72,8,f +5951,6564,71,2,f +5951,6565,71,2,f +5951,6587,72,6,f +5951,6589,71,2,f +5951,6629,72,2,f +5951,6632,71,4,f +5951,73983,4,4,f +5951,85545,1,2,f +5953,10201,71,1,f +5953,11055,14,1,f +5953,11090,0,3,f +5953,11211,15,1,f +5953,11458,70,2,f +5953,11477,70,4,f +5953,11610,19,4,f +5953,13547,484,2,f +5953,13971,71,2,f +5953,14716,322,8,f +5953,14716,15,6,f +5953,14718,4,3,f +5953,14769,15,1,f +5953,14769,322,2,f +5953,15068,70,9,f +5953,15207,71,1,f +5953,15210,15,1,f +5953,15254,15,1,f +5953,15470,15,2,f +5953,15470,29,1,t +5953,15470,29,2,f +5953,15470,15,1,t +5953,15535,72,1,f +5953,15573,72,1,f +5953,15573,15,1,f +5953,15706,70,2,f +5953,15712,72,1,f +5953,15712,15,1,f +5953,2397,0,1,f +5953,2412b,70,3,f +5953,2412b,72,2,f +5953,2420,70,2,f +5953,2421,0,1,f +5953,2431,72,1,f +5953,2431,70,2,f +5953,2431,15,4,f +5953,2431pr0081,84,5,f +5953,2453b,15,1,f +5953,2454a,70,4,f +5953,2458,0,2,f +5953,2458,72,2,f +5953,24946,15,5,f +5953,24947,15,2,f +5953,24947,4,3,f +5953,25386,19,1,f +5953,26371pr10,27,1,f +5953,26371pr11,27,1,f +5953,26393pr06,4,1,f +5953,26474,29,1,f +5953,2654,19,1,f +5953,2723,0,1,f +5953,2817,0,3,f +5953,3001,84,3,f +5953,3003,84,1,f +5953,3004,322,2,f +5953,3004,71,1,f +5953,3005,71,1,f +5953,3005,15,11,f +5953,3005,322,4,f +5953,3010,71,1,f +5953,30150,84,1,f +5953,30157,70,1,f +5953,3020,14,1,f +5953,3020,322,2,f +5953,3021,70,1,f +5953,3021,288,2,f +5953,3023,70,4,f +5953,3023,322,5,f +5953,3023,71,6,f +5953,30236,71,1,f +5953,30236,15,1,f +5953,3024,14,1,t +5953,3024,14,5,f +5953,3028,72,1,f +5953,3029,2,1,f +5953,30293,72,2,f +5953,30294,72,2,f +5953,3031,71,2,f +5953,3031,14,1,f +5953,3032,14,3,f +5953,3034,70,3,f +5953,30340,15,1,f +5953,3035,72,2,f +5953,3035,2,1,f +5953,3036,322,1,f +5953,3036,28,2,f +5953,30361,0,1,f +5953,30367c,15,2,f +5953,30367c,4,3,f +5953,30374,71,1,f +5953,30390a,72,1,f +5953,3040b,15,4,f +5953,3062b,308,1,f +5953,3062b,14,1,f +5953,3062b,4,1,f +5953,3068b,71,1,f +5953,3068bpr0296,84,1,f +5953,3069b,70,3,f +5953,3069b,484,2,f +5953,3176,71,2,f +5953,3176,0,1,f +5953,32013,72,2,f +5953,32014,71,3,f +5953,32034,71,1,f +5953,32039,0,1,f +5953,32062,4,2,f +5953,32064a,72,2,f +5953,32073,71,2,f +5953,32123b,14,1,f +5953,32123b,14,1,t +5953,32192,72,2,f +5953,32270,0,1,f +5953,32530,72,8,f +5953,32556,19,1,f +5953,33078,4,1,f +5953,33078,4,1,t +5953,33303,15,2,f +5953,3622,15,4,f +5953,3623,15,1,f +5953,3666,322,4,f +5953,3666,15,2,f +5953,3673,71,5,f +5953,3673,71,1,t +5953,3700,15,3,f +5953,3706,0,1,f +5953,3710,288,4,f +5953,3710,322,4,f +5953,3710,14,5,f +5953,3710,71,3,f +5953,3710,70,1,f +5953,3747a,70,1,f +5953,3749,19,1,f +5953,3795,28,4,f +5953,3937,0,3,f +5953,3941,71,2,f +5953,3942c,71,1,f +5953,3957a,71,1,f +5953,4081b,71,2,f +5953,4094b,4,1,f +5953,41539,72,1,f +5953,41770,288,3,f +5953,4274,1,1,t +5953,4274,1,1,f +5953,43093,1,1,f +5953,4519,71,1,f +5953,4519,14,3,f +5953,4596,71,1,f +5953,4599b,14,1,t +5953,4599b,4,1,t +5953,4599b,14,1,f +5953,4599b,4,1,f +5953,4740,71,1,f +5953,47720,71,1,f +5953,4865b,0,3,f +5953,48723,70,1,f +5953,48729b,72,1,f +5953,48729b,72,1,t +5953,59443,71,1,f +5953,59443,0,2,f +5953,59900,46,1,f +5953,60169,72,1,f +5953,6020,0,1,f +5953,60475b,15,2,f +5953,60475b,71,1,f +5953,60476,0,2,f +5953,60592,322,3,f +5953,6134,71,3,f +5953,6141,34,2,f +5953,6141,34,1,t +5953,61485,71,1,f +5953,6190,322,1,f +5953,62462,0,1,f +5953,6259,72,1,f +5953,6266,71,1,t +5953,6266,71,2,f +5953,63864,28,2,f +5953,63965,0,7,f +5953,64728,4,3,f +5953,64951,84,1,f +5953,6541,71,2,f +5953,6636,14,1,f +5953,75937,179,1,f +5953,75c32,0,1,t +5953,75c32,0,2,f +5953,85861,297,1,t +5953,85861,297,2,f +5953,87079,1,1,f +5953,87079,484,2,f +5953,87081,72,1,f +5953,87083,72,1,f +5953,87544,15,3,f +5953,87544,47,4,f +5953,87618,71,2,f +5953,87620,71,2,f +5953,92593,4,4,f +5953,99008,19,1,f +5953,99207,71,2,f +5954,2362a,4,1,f +5954,2431,4,2,f +5954,2452,0,1,f +5954,2488,0,1,f +5954,2490pb01,7,1,f +5954,251,0,1,f +5954,3004,0,1,f +5954,30055,0,1,f +5954,3008,0,2,f +5954,3009,0,1,f +5954,30099,4,4,f +5954,3010,7,6,f +5954,30103,0,2,f +5954,30105,0,1,f +5954,3022,0,1,f +5954,3022,7,2,f +5954,3023,0,1,f +5954,3023,4,1,f +5954,3024,7,2,f +5954,3029,0,1,f +5954,3036,0,1,f +5954,3039,7,1,f +5954,3040b,0,2,f +5954,3040b,7,4,f +5954,3062b,7,2,f +5954,3062b,0,4,f +5954,3069b,14,1,f +5954,3455,7,2,f +5954,3455,4,2,f +5954,3460,7,2,f +5954,3626bp42,14,1,f +5954,3626bpx74,14,1,f +5954,3626bpx97,14,1,f +5954,3679,7,2,f +5954,3680,4,1,f +5954,3684,7,2,f +5954,3710,14,1,f +5954,3710,0,1,f +5954,3710,7,1,f +5954,3794a,14,3,f +5954,3795,4,5,f +5954,3844,0,1,f +5954,3846p4f,7,1,f +5954,3937,14,2,f +5954,3938,4,2,f +5954,3957a,0,8,f +5954,3957a,36,1,f +5954,4081b,14,2,f +5954,4083,0,1,f +5954,4085c,14,2,f +5954,4276b,4,2,f +5954,4460a,7,2,f +5954,4488,7,4,f +5954,4489,6,4,f +5954,4493c01pb02,0,1,f +5954,4503,0,1,f +5954,4589,46,2,f +5954,4623,14,1,f +5954,59,383,1,f +5954,60169,8,1,f +5954,6019,7,4,f +5954,6027,0,1,f +5954,6028,0,1,f +5954,6091,7,2,f +5954,6123,8,2,f +5954,6125,4,1,f +5954,6126a,57,3,f +5954,6127,0,1,f +5954,6128,0,1,f +5954,6133,57,2,f +5954,6133,0,4,f +5954,6141,14,2,f +5954,75174,0,1,f +5954,87694,15,1,f +5954,970c00,1,1,f +5954,970x026,8,2,f +5954,973p41c01,4,1,f +5954,973pb0066c01,7,1,f +5954,973px125c01,4,1,f +5954,bb190pb01,7,1,f +5959,2412b,15,2,f +5959,2449,0,1,f +5959,2540,4,2,f +5959,2569,0,1,f +5959,2780,0,1,t +5959,2780,0,2,f +5959,2877,15,2,f +5959,3003,72,1,f +5959,30035,0,2,f +5959,3022,4,1,f +5959,3023,4,2,f +5959,30363,4,2,f +5959,3040b,4,2,f +5959,3049b,4,2,f +5959,30503,4,2,f +5959,3062b,0,2,f +5959,3069b,4,1,f +5959,3069b,0,1,f +5959,32015,0,2,f +5959,32054,0,1,f +5959,32062,4,4,f +5959,32064b,72,3,f +5959,32072,0,1,f +5959,32174,4,2,f +5959,32192,4,2,f +5959,3626bpr0452,14,1,f +5959,3660,4,2,f +5959,3678b,4,2,f +5959,3709,4,2,f +5959,3747b,4,1,f +5959,3749,19,2,f +5959,3794a,15,6,f +5959,3795,4,1,f +5959,3795,72,1,f +5959,3839b,0,2,f +5959,4070,0,1,f +5959,41531,15,2,f +5959,41883,40,1,f +5959,4286,0,1,f +5959,4286,4,2,f +5959,43722,4,1,f +5959,43723,4,1,f +5959,44728,0,1,f +5959,4519,71,2,f +5959,4589,46,1,f +5959,4589,14,2,f +5959,4598,19,1,f +5959,4599a,0,1,f +5959,4697b,71,1,t +5959,4697b,71,2,f +5959,4740,33,1,f +5959,48336,19,1,f +5959,53982,4,1,f +5959,53989,135,6,f +5959,57908,72,2,f +5959,57909a,72,2,f +5959,6041,0,2,f +5959,60470a,0,1,f +5959,60475a,0,1,f +5959,6141,46,2,f +5959,6141,46,1,t +5959,62712,72,4,f +5959,63965,0,1,f +5959,6541,4,2,f +5959,6587,72,1,f +5959,8111stk01,9999,1,t +5959,970x026,15,1,f +5959,973pr1362c01,15,1,f +5960,2877,72,1,f +5960,298c02,71,1,t +5960,298c02,71,1,f +5960,3010,14,2,f +5960,30165,4,1,f +5960,3020,14,1,f +5960,3022,14,3,f +5960,3024,36,2,f +5960,3037,14,1,f +5960,3069b,4,2,f +5960,3069bpr0099,15,2,f +5960,32028,14,4,f +5960,3245b,14,2,f +5960,3623,14,2,f +5960,3626bpr0126,14,1,f +5960,3710,4,2,f +5960,3794a,4,1,f +5960,3829c01,1,1,f +5960,3940b,72,1,f +5960,4070,14,2,f +5960,4079,1,1,f +5960,4212b,4,1,f +5960,42610,71,4,f +5960,43337,14,2,f +5960,4345b,4,1,f +5960,4346,4,1,f +5960,4485,4,1,f +5960,45677,14,1,f +5960,47720,0,2,f +5960,4864b,71,1,f +5960,50745,14,4,f +5960,51011,0,4,f +5960,57783,41,1,f +5960,60594,14,1,f +5960,60614,72,2,f +5960,6141,46,1,t +5960,6141,46,2,f +5960,6231,14,2,f +5960,7731stk01,9999,1,t +5960,970c00,0,1,f +5960,973pr1356c01,4,1,f +5962,6578,0,5,f +5962,6579,0,2,f +5962,x600,72,1,f +5962,x601,15,2,f +5962,x602,15,2,f +5962,x603,4,1,f +5962,x604,25,3,f +5962,x604,71,4,f +5962,x605,14,2,f +5962,x605,71,4,f +5962,x605pb01,25,3,f +5962,x606pb01,25,3,f +5962,x607,14,3,f +5963,2412b,0,3,f +5963,2413,4,1,f +5963,2419,8,1,f +5963,2431,8,3,f +5963,2432,0,3,f +5963,2476b,4,2,f +5963,2780,0,6,f +5963,3002,0,2,f +5963,3004,8,1,f +5963,30091,7,2,f +5963,30151a,42,1,f +5963,3021,0,1,f +5963,30214,42,3,f +5963,3023,8,2,f +5963,3032,4,1,f +5963,30359b,0,2,f +5963,30364,8,2,f +5963,30365,0,2,f +5963,30374,36,2,f +5963,30389a,0,1,f +5963,3039,8,1,f +5963,3048c,7,2,f +5963,30552,7,2,f +5963,30553,8,2,f +5963,30624,0,1,f +5963,3068b,0,2,f +5963,32013,8,1,f +5963,32054,8,1,f +5963,32062,4,1,f +5963,32073,0,1,f +5963,32123b,7,1,f +5963,32123b,7,1,t +5963,32506,0,2,f +5963,32523,8,1,f +5963,32531,0,2,f +5963,3626bpr0190,15,4,f +5963,3666,8,2,f +5963,3795,8,2,f +5963,3958,4,1,f +5963,4032a,4,1,f +5963,4081b,0,2,f +5963,40902,8,4,f +5963,41530,57,2,f +5963,41532,0,2,f +5963,41533,0,4,f +5963,41747pb008,0,1,f +5963,41748pb008,0,1,f +5963,41751pr001,36,1,f +5963,42021,0,1,f +5963,42021,36,1,f +5963,42023,36,2,f +5963,4497,42,1,f +5963,4519,0,1,f +5963,4589,57,3,f +5963,4865pb06,36,1,f +5963,6239,0,5,f +5963,6558,0,1,f +5963,970d03,4,3,f +5963,973pb0107c01,0,2,f +5963,973pb0108c01,0,1,f +5963,x514c01,8,4,f +5965,3023,15,1,f +5965,33291,191,1,t +5965,33291,191,1,f +5965,3794b,27,1,f +5965,93092,30,1,f +5966,30556,1,1,f +5966,30599,8,1,f +5966,30601pb03,1,1,f +5966,30603pb14,1,1,f +5966,racerbase,1,1,f +5966,rb00168,0,2,f +5967,33320,2,1,f +5967,33322,297,1,f +5967,33322,297,2,t +5967,3626bpr0580,14,1,f +5967,3678bpr0009,4,1,f +5967,64807,0,1,f +5967,973pr1633c01,4,1,f +5968,2780,0,1,t +5968,2780,0,5,f +5968,32054,0,1,f +5968,32062,4,3,f +5968,32175,0,1,f +5968,32506,15,2,f +5968,3708,0,2,f +5968,41677,0,2,f +5968,42003,0,2,f +5968,43093,1,8,f +5968,45749,0,4,f +5968,47306,27,1,f +5968,47312,72,1,f +5968,47313,57,1,f +5968,49423,135,1,f +5968,50898,0,4,f +5968,53562pat0005,0,2,f +5968,53566,135,4,f +5968,55615,71,1,f +5968,56160,135,2,f +5968,57527,135,1,f +5968,57543,135,1,f +5968,57563,135,1,f +5968,57565,135,6,f +5968,59443,0,2,f +5968,60176,27,9,f +5968,60895,0,1,f +5968,60896,27,4,f +5968,60901,57,1,f +5968,60908pat0002,27,1,f +5968,60909,0,1,f +5968,60916pat0002,27,1,f +5968,60918,0,1,f +5968,60919pat01,0,2,f +5968,60929,41,4,f +5968,60933,135,1,f +5968,60934,57,2,f +5968,6558,1,3,f +5968,6587,72,1,f +5972,11211,19,1,f +5972,11211,71,1,f +5972,11212,15,1,f +5972,11476,71,1,f +5972,11477,15,4,f +5972,11477,72,1,f +5972,15068,71,1,f +5972,15573,4,2,f +5972,15573,70,1,f +5972,15573,72,1,f +5972,15573,27,1,f +5972,15573,71,2,f +5972,2420,28,2,f +5972,2431,15,1,f +5972,3004,71,1,f +5972,3004,19,1,f +5972,3005,15,4,f +5972,3005,2,8,f +5972,3005,19,2,f +5972,3005,70,2,f +5972,3010,72,2,f +5972,30153,46,1,f +5972,3020,28,1,f +5972,3020,2,2,f +5972,3021,19,1,f +5972,3021,72,1,f +5972,3021,15,2,f +5972,3021,70,2,f +5972,3021,2,2,f +5972,3021,1,2,f +5972,3021,71,1,f +5972,3022,4,2,f +5972,3022,0,1,f +5972,3022,71,3,f +5972,3022,70,2,f +5972,3023,2,4,f +5972,3023,28,2,f +5972,3023,73,2,f +5972,3023,29,1,f +5972,3023,47,5,f +5972,3023,27,1,f +5972,3023,71,2,f +5972,3023,0,1,f +5972,3023,19,3,f +5972,3023,4,3,f +5972,3024,4,3,f +5972,3024,70,2,f +5972,3024,72,1,t +5972,3024,15,1,t +5972,3024,47,1,t +5972,3024,1,1,t +5972,3024,72,1,f +5972,3024,71,2,t +5972,3024,47,2,f +5972,3024,1,3,f +5972,3024,71,2,f +5972,3024,4,1,t +5972,3024,15,4,f +5972,3024,70,1,t +5972,3039,70,1,f +5972,3062b,19,4,f +5972,3062b,0,1,f +5972,3069b,14,1,f +5972,3069b,4,1,f +5972,3070b,15,1,t +5972,3070b,4,1,t +5972,3070b,72,1,f +5972,3070b,72,1,t +5972,3070b,70,2,f +5972,3070b,4,2,f +5972,3070b,70,1,t +5972,3070b,15,2,f +5972,32474,0,1,f +5972,33291,10,2,f +5972,33291,10,1,t +5972,3622,15,2,f +5972,3623,19,1,f +5972,3623,15,1,f +5972,3623,2,4,f +5972,3659,19,2,f +5972,3660,4,1,f +5972,3660,71,2,f +5972,3660,70,1,f +5972,3666,72,2,f +5972,3666,15,1,f +5972,3710,72,1,f +5972,3710,2,4,f +5972,4081b,72,4,f +5972,4081b,4,2,f +5972,43722,15,1,f +5972,43723,15,1,f +5972,44302a,72,1,f +5972,44567a,71,1,f +5972,4733,15,2,f +5972,4733,72,1,f +5972,4865b,14,2,f +5972,49668,0,4,f +5972,49668,15,2,f +5972,49668,191,2,f +5972,52107,0,2,f +5972,54200,4,4,f +5972,54200,47,1,t +5972,54200,47,1,f +5972,54200,0,2,f +5972,54200,72,1,t +5972,54200,72,2,f +5972,54200,4,1,t +5972,54200,0,1,t +5972,54200,15,1,t +5972,54200,1,1,f +5972,54200,15,2,f +5972,54200,1,1,t +5972,59900,25,1,f +5972,59900,320,6,f +5972,59900,2,2,f +5972,60478,4,1,f +5972,60897,25,2,f +5972,6091,70,2,f +5972,6141,0,5,f +5972,6141,19,2,f +5972,6141,70,1,t +5972,6141,179,8,f +5972,6141,15,1,f +5972,6141,158,1,t +5972,6141,15,1,t +5972,6141,47,1,t +5972,6141,0,1,t +5972,6141,70,2,f +5972,6141,158,2,f +5972,6141,47,1,f +5972,6141,179,1,t +5972,6141,19,1,t +5972,63864,72,1,f +5972,63868,4,1,f +5972,64644,0,1,f +5972,85984,4,2,f +5972,85984,71,1,f +5972,87087,0,2,f +5972,87087,4,2,f +5972,96874,25,1,f +5972,98138,34,1,f +5972,98138,36,2,f +5972,98138,36,1,t +5972,98138,34,1,t +5972,98138,182,1,t +5972,98138,71,2,f +5972,98138,46,1,t +5972,98138,41,1,t +5972,98138,46,2,f +5972,98138,71,1,t +5972,98138,182,2,f +5972,98138,41,4,f +5972,98138pr0008,15,1,t +5972,98138pr0008,15,2,f +5972,98138pr0026,15,2,f +5972,98138pr0026,15,1,t +5972,98283,28,5,f +5972,99780,71,1,f +5973,2540,4,2,f +5973,30173a,0,1,f +5973,30177,4,1,f +5973,3021,14,2,f +5973,3024,4,1,f +5973,3626bpr0744,14,1,f +5973,40379,14,1,f +5973,4070,14,1,f +5973,41769,14,1,f +5973,41770,14,1,f +5973,43722,4,1,f +5973,43723,4,1,f +5973,4733,0,1,f +5973,47753,320,1,f +5973,48183,14,2,f +5973,49668,191,1,f +5973,53451,25,1,t +5973,53451,25,1,f +5973,53989,0,1,f +5973,54200,14,1,t +5973,54200,14,1,f +5973,63868,4,5,f +5973,92692,0,2,f +5973,970c00pr0193,4,1,f +5973,973pr1716c01,4,1,f +5974,2540,72,4,f +5974,2555,0,4,f +5974,3020,2,3,f +5974,3022,72,2,f +5974,3023,2,1,f +5974,3024,2,2,f +5974,3795,2,2,f +5974,43722,72,2,f +5974,43723,72,2,f +5974,44302a,72,2,f +5974,44567a,0,2,f +5974,47905,0,3,f +5974,49668,288,4,f +5974,49668,19,4,f +5974,54200,288,4,f +5974,54200,288,1,t +5974,6091,72,4,f +5974,6141,42,1,t +5974,6141,42,2,f +5974,73983,2,1,f +5975,4180c01,0,2,f +5976,2342,0,1,f +5976,2357,14,12,f +5976,2412b,0,8,f +5976,2420,14,2,f +5976,2444,0,1,f +5976,2450,14,2,f +5976,2463,14,2,f +5976,2507,33,1,f +5976,2569,57,2,f +5976,2582px2,14,2,f +5976,2607,0,1,f +5976,2609b,0,1,f +5976,2826,33,1,f +5976,3001,14,2,f +5976,30014,0,2,f +5976,3004,14,2,f +5976,3005,14,2,f +5976,3009,14,1,f +5976,3010,14,1,f +5976,3020,14,2,f +5976,3020,0,2,f +5976,3022,0,1,f +5976,3023,14,1,f +5976,3024,14,2,f +5976,3027,0,1,f +5976,30385,383,2,f +5976,3039,14,2,f +5976,3039pb019,14,2,f +5976,3040b,0,2,f +5976,3070bp06,14,2,f +5976,3460,0,2,f +5976,3479,0,1,f +5976,3612,14,6,f +5976,3612,0,4,f +5976,3622,14,2,f +5976,3626bp69,14,1,f +5976,3626bpx101,14,1,f +5976,3673,7,1,f +5976,37,383,2,f +5976,3710,0,1,f +5976,3710,14,1,f +5976,3747b,14,2,f +5976,3749,7,2,f +5976,3795,14,1,f +5976,3829c01,14,2,f +5976,3933,0,1,f +5976,3934,0,1,f +5976,3957a,57,2,f +5976,4070,57,2,f +5976,4081b,0,2,f +5976,4085c,14,6,f +5976,412,57,4,f +5976,4213,33,1,f +5976,4220,14,1,f +5976,4221,0,2,f +5976,4315,14,2,f +5976,4345b,57,1,f +5976,4346,57,1,f +5976,4625,0,3,f +5976,4859,0,1,f +5976,57467,383,2,f +5976,59275,1,4,f +5976,6037,0,2,f +5976,6039,0,2,f +5976,6040,14,2,f +5976,6041,57,3,f +5976,6042,0,2,f +5976,6042,14,4,f +5976,6058,14,1,f +5976,6061,14,2,f +5976,6064,2,1,f +5976,6065,4,1,f +5976,6084,33,1,f +5976,6085,33,1,f +5976,6086,0,1,f +5976,6088,15,2,f +5976,6090,0,1,f +5976,6090,33,1,f +5976,6091,14,2,f +5976,6217,14,1,f +5976,70001pb01,0,1,f +5976,73092,0,2,f +5976,970x001,1,2,f +5976,973px170c01,15,2,f +5977,case9,4,1,f +5978,3001,4,14,f +5978,3002,4,8,f +5978,3003,4,12,f +5978,3004,4,8,f +5978,3005,4,4,f +5978,3006,4,1,f +5978,3007,4,1,f +5978,3008,4,2,f +5978,3009,4,4,f +5978,3010,4,4,f +5978,3622,4,4,f +5980,3011,2,1,f +5980,31066,14,1,f +5980,31213px01,22,1,f +5980,31284,4,1,f +5980,31287a,4,1,f +5980,3437pb002,14,1,f +5980,dupcloth01,14,1,f +5980,eeyore,9999,1,f +5980,pooh,9999,1,f +5982,2577,1,2,f +5982,3001,1,1,f +5982,3003pe2,14,1,f +5982,3298,4,2,f +5982,3747b,4,1,f +5982,3795,0,1,f +5982,3795,4,2,f +5982,4727,2,1,f +5982,4728,15,1,f +5982,4745,14,1,f +5982,6232,4,1,f +5984,3063b,4,20,f +5984,3063b,47,20,f +5984,3063b,15,20,f +5984,3063b,0,20,f +5984,3063b,1,20,f +5984,3063b,14,20,f +5985,2412b,7,2,f +5985,2420,15,2,f +5985,2421,0,1,f +5985,2432,15,1,f +5985,2446,4,1,f +5985,2447,41,1,t +5985,2447,41,1,f +5985,2540,0,1,f +5985,2610,14,1,f +5985,3020,1,1,f +5985,3021,1,1,f +5985,3023,15,1,f +5985,3032,15,1,f +5985,3070b,1,2,f +5985,3070b,1,1,t +5985,3298p55,1,1,f +5985,3623,15,2,f +5985,3626apr0001,14,1,f +5985,3666,15,2,f +5985,3666,1,2,f +5985,3710,1,2,f +5985,3710,15,3,f +5985,3829c01,15,1,f +5985,4286,1,2,f +5985,4287,15,2,f +5985,4488,15,1,f +5985,970c00,4,1,f +5985,973c02,4,1,f +5986,6026,288,1,f +5986,6027,288,1,f +5986,6028,288,1,f +5987,2356,2,3,f +5987,2412b,15,3,f +5987,2412b,71,5,f +5987,2456,15,3,f +5987,2456,1,3,f +5987,2456,4,6,f +5987,3001,4,12,f +5987,3001,71,8,f +5987,3001,14,22,f +5987,3001,0,21,f +5987,3001,2,8,f +5987,3001,1,18,f +5987,3001,15,30,f +5987,3001,70,2,f +5987,3002,4,6,f +5987,3002,14,7,f +5987,3002,0,12,f +5987,3002,1,12,f +5987,3002,2,2,f +5987,3002,15,12,f +5987,3003,70,4,f +5987,3003,1,32,f +5987,3003,4,32,f +5987,3003,15,44,f +5987,3003,71,7,f +5987,3003,14,32,f +5987,3003,0,12,f +5987,3003,2,17,f +5987,3003,33,9,f +5987,3004,0,30,f +5987,3004,2,18,f +5987,3004,4,26,f +5987,3004,14,30,f +5987,3004,1,30,f +5987,3004,15,30,f +5987,3004,70,6,f +5987,3005,0,16,f +5987,3005,1,26,f +5987,3005,15,28,f +5987,3005,2,16,f +5987,3005,4,20,f +5987,3005,14,24,f +5987,3005,33,4,f +5987,3005pe1,15,6,f +5987,3006,4,1,f +5987,3007,1,2,f +5987,3007,15,3,f +5987,3007,4,4,f +5987,3008,1,4,f +5987,3008,15,4,f +5987,3008,14,1,f +5987,3009,15,4,f +5987,3009,4,4,f +5987,3009,14,4,f +5987,3009,1,4,f +5987,3010,1,10,f +5987,3010,2,4,f +5987,3010,4,7,f +5987,3010,14,8,f +5987,3010,0,4,f +5987,3010,71,2,f +5987,3010,15,27,f +5987,3020,1,1,f +5987,3020,71,1,f +5987,3020,0,1,f +5987,3021,2,1,f +5987,3021,1,2,f +5987,3021,71,1,f +5987,3022,15,1,f +5987,3022,2,1,f +5987,3022,1,3,f +5987,3023,1,2,f +5987,3023,73,2,f +5987,3023,2,1,f +5987,3023,47,5,f +5987,3023,71,2,f +5987,3023,15,3,f +5987,3024,46,2,f +5987,3024,73,2,f +5987,3031,4,1,f +5987,30363,15,3,f +5987,3037,4,18,f +5987,3037,14,3,f +5987,3037,1,3,f +5987,3038,71,2,f +5987,3038,4,6,f +5987,3039,4,16,f +5987,3039,72,4,f +5987,3039,1,6,f +5987,3039,14,5,f +5987,3039,15,3,f +5987,3040b,4,9,f +5987,3040b,1,4,f +5987,3040b,72,4,f +5987,3040b,15,3,f +5987,3040b,2,4,f +5987,3040b,14,4,f +5987,3041,4,4,f +5987,3043,4,5,f +5987,3044b,4,2,f +5987,3062b,4,4,f +5987,3062b,47,2,f +5987,3065,33,2,f +5987,3068b,2,1,f +5987,3069b,73,2,f +5987,3297,0,10,f +5987,3298,4,8,f +5987,3298,0,4,f +5987,33303,15,4,f +5987,3403c01,71,1,f +5987,3471,2,2,f +5987,3622,71,2,f +5987,3622,4,6,f +5987,3622,1,8,f +5987,3622,15,18,f +5987,3622,2,2,f +5987,3622,14,7,f +5987,3660,71,4,f +5987,3660,2,2,f +5987,3660,1,6,f +5987,3660,14,2,f +5987,3660,15,5,f +5987,3665,4,2,f +5987,3684,1,1,f +5987,3684,2,2,f +5987,3710,0,1,f +5987,3710,15,2,f +5987,3747b,1,1,f +5987,3832,72,2,f +5987,3832,15,1,f +5987,3857,10,1,f +5987,3937,71,1,f +5987,3938,15,1,f +5987,3957a,71,1,f +5987,4070,4,2,f +5987,4081b,14,1,f +5987,4130,15,1,f +5987,4130,14,1,f +5987,4131,0,2,f +5987,4132,1,4,f +5987,4132,15,4,f +5987,4133,15,4,f +5987,4133,72,4,f +5987,4201,2,2,f +5987,4202,71,3,f +5987,42022,14,2,f +5987,4286,14,2,f +5987,4286,2,2,f +5987,44126,4,1,f +5987,4733,71,1,f +5987,4864b,47,2,f +5987,6091,71,4,f +5987,6215,14,1,f +5989,14294,322,1,f +5989,18814,4,2,f +5989,18816,322,1,f +5989,18823,1,1,f +5989,18825pr0007,9999,1,f +5989,18857,4,1,f +5989,18857,14,1,f +5989,18857,322,1,f +5989,18857,25,1,f +5989,18921,27,1,f +5989,19421,14,1,f +5989,19422,1,1,f +5989,19423,25,1,f +5989,19424,4,1,f +5989,19431,322,1,f +5989,31110,27,1,f +5989,4886,5,1,f +5989,4886,25,1,f +5989,90265,15,1,f +5989,90265,5,1,f +5989,90265,14,1,f +5989,98223,4,3,f +5993,2412b,80,1,f +5993,2456,72,1,f +5993,2780,0,1,t +5993,2780,0,13,f +5993,2921,0,2,f +5993,3008,71,2,f +5993,3009,0,1,f +5993,3010,0,3,f +5993,3022,72,1,f +5993,3022,0,1,f +5993,3023,0,2,f +5993,3024,0,2,f +5993,3032,72,1,f +5993,3040b,72,2,f +5993,30602,80,2,f +5993,3062b,0,4,f +5993,32000,71,2,f +5993,32002,72,2,f +5993,32002,72,1,t +5993,32013,0,4,f +5993,32054,4,2,f +5993,32065,0,1,f +5993,32073,71,1,f +5993,32123b,71,8,f +5993,32123b,71,1,t +5993,32140,0,1,f +5993,32271,0,2,f +5993,32348,72,4,f +5993,32527,0,1,f +5993,32528,0,1,f +5993,32551,179,1,f +5993,32557,4,2,f +5993,3666,0,1,f +5993,3666,72,6,f +5993,3700,72,2,f +5993,3703,0,2,f +5993,3705,0,2,f +5993,3706,0,2,f +5993,3707,0,3,f +5993,3708,0,1,f +5993,3713,71,1,t +5993,3713,71,16,f +5993,3737,0,1,f +5993,3795,0,3,f +5993,3894,0,2,f +5993,4081b,0,2,f +5993,4287,0,2,f +5993,43093,1,9,f +5993,44309,0,2,f +5993,44350,0,2,f +5993,44351,0,2,f +5993,44728,72,2,f +5993,4519,71,2,f +5993,47715,72,1,f +5993,50943,71,2,f +5993,50946p01,0,1,f +5993,50950,0,6,f +5993,52031,0,1,f +5993,54200,182,2,f +5993,55978,0,2,f +5993,56145,0,4,f +5993,6141,47,4,f +5993,6141,80,4,f +5993,6536,0,2,f +5993,6538b,0,2,f +5993,6553,71,6,f +5993,6558,0,4,f +5993,6632,71,6,f +5993,78c06,179,2,f +5994,10197,72,4,f +5994,10928,72,19,f +5994,11478,0,12,f +5994,11954,14,6,f +5994,11955,4,4,f +5994,11955,4,1,t +5994,14226c31,0,1,t +5994,14226c31,0,2,f +5994,14262,9999,1,t +5994,14728c250,0,1,f +5994,2431,0,5,f +5994,2730,0,1,f +5994,2780,0,495,f +5994,2780,0,10,t +5994,2819,71,1,f +5994,2825,71,4,f +5994,2850b,71,8,f +5994,2851,14,8,f +5994,2852,71,8,f +5994,2853,71,3,f +5994,2854,19,3,f +5994,3021,0,2,f +5994,3023,182,2,f +5994,3069b,182,2,f +5994,32002,19,15,f +5994,32002,19,2,t +5994,32009,72,2,f +5994,32009,14,4,f +5994,32013,14,9,f +5994,32013,0,10,f +5994,32015,0,2,f +5994,32017,14,15,f +5994,32019,0,10,f +5994,32034,71,14,f +5994,32034,4,2,f +5994,32039,71,4,f +5994,32054,71,64,f +5994,32062,4,76,f +5994,32073,71,29,f +5994,32123b,14,3,t +5994,32123b,14,35,f +5994,32140,14,19,f +5994,32140,0,4,f +5994,32140,71,21,f +5994,32184,71,16,f +5994,32187,71,2,f +5994,32250,0,8,f +5994,32269,19,11,f +5994,32269,0,1,f +5994,32270,0,23,f +5994,32278,14,10,f +5994,32278,0,11,f +5994,32278,72,18,f +5994,32291,72,1,f +5994,32316,14,14,f +5994,32316,71,24,f +5994,32316,0,2,f +5994,32333,71,2,f +5994,32348,72,4,f +5994,32449,14,20,f +5994,32523,71,25,f +5994,32523,14,18,f +5994,32524,14,15,f +5994,32524,72,45,f +5994,32524,0,1,f +5994,32525,14,15,f +5994,32525,72,28,f +5994,32526,71,12,f +5994,32526,1,6,f +5994,32526,0,2,f +5994,32526,14,14,f +5994,32529,0,2,f +5994,32556,19,11,f +5994,32557,71,1,f +5994,33299a,0,3,f +5994,3623,0,3,f +5994,3648b,72,3,f +5994,3666,14,6,f +5994,3673,71,1,t +5994,3673,71,8,f +5994,3700,0,1,f +5994,3703,0,9,f +5994,3705,0,25,f +5994,3706,0,8,f +5994,3707,0,3,f +5994,3708,0,3,f +5994,3713,71,68,f +5994,3713,71,5,t +5994,3737,0,7,f +5994,3743,71,10,f +5994,3749,19,7,f +5994,3894,14,6,f +5994,40490,0,15,f +5994,40490,14,12,f +5994,41239,71,32,f +5994,41239,14,1,f +5994,4162,0,11,f +5994,41669,0,1,f +5994,41677,0,16,f +5994,41678,71,8,f +5994,4185,72,10,f +5994,4185,14,2,f +5994,42003,14,12,f +5994,42003,0,21,f +5994,42610,71,5,f +5994,4274,1,18,f +5994,4274,1,4,t +5994,43093,1,113,f +5994,43857,14,8,f +5994,44294,71,7,f +5994,44809,71,4,f +5994,4519,71,62,f +5994,4716,71,2,f +5994,48989,71,10,f +5994,50163,71,1,f +5994,50450,0,1,f +5994,50450,0,1,t +5994,50451,0,5,f +5994,50951,0,5,f +5994,54200,182,1,t +5994,54200,182,2,f +5994,55013,72,13,f +5994,55615,71,8,f +5994,56902,71,3,f +5994,58119,71,1,f +5994,59426,72,11,f +5994,59443,71,32,f +5994,59443,4,8,f +5994,60483,71,47,f +5994,60483,0,10,f +5994,60484,72,11,f +5994,60485,71,10,f +5994,6141,36,2,t +5994,6141,47,8,f +5994,6141,47,1,t +5994,6141,182,1,t +5994,6141,182,4,f +5994,6141,36,3,f +5994,61903,71,2,f +5994,61904,72,2,f +5994,61927b,71,2,f +5994,62462,14,8,f +5994,62821,72,1,f +5994,63869,0,23,f +5994,64178,71,2,f +5994,64179,71,7,f +5994,64391,14,2,f +5994,64683,14,2,f +5994,64781,0,12,f +5994,64782,14,4,f +5994,64782,71,1,f +5994,6536,0,51,f +5994,6536,14,15,f +5994,6538b,19,3,f +5994,6539,4,3,f +5994,6542b,72,16,f +5994,6558,1,214,f +5994,6575,72,4,f +5994,6587,28,2,f +5994,6589,19,17,f +5994,6589,19,3,t +5994,6628,0,14,f +5994,6629,72,2,f +5994,6632,0,20,f +5994,6632,14,22,f +5994,6636,14,4,f +5994,6641,4,2,f +5994,76244,15,3,f +5994,86652,71,10,f +5994,87080,14,2,f +5994,87082,0,35,f +5994,87083,72,28,f +5994,87086,14,2,f +5994,87407,71,3,f +5994,87408,0,4,f +5994,92693,71,4,f +5994,94925,71,27,f +5994,99008,19,10,f +5994,99499,71,1,f +5994,99773,0,4,f +5994,99773,14,6,f +5995,2341,0,1,f +5995,2431pa0,19,1,f +5995,2436,1,1,f +5995,2536,6,4,f +5995,2563,6,1,f +5995,2566,2,1,f +5995,30041,19,1,f +5995,30042,19,1,f +5995,3005,19,1,f +5995,3010,19,2,f +5995,3010,0,2,f +5995,30104,8,1,f +5995,30132,8,1,f +5995,30141,8,1,f +5995,30167,6,1,f +5995,30168,14,1,f +5995,30169,0,1,f +5995,3022,7,2,f +5995,3023,0,1,f +5995,3023,19,1,f +5995,3023,14,1,f +5995,3029,19,2,f +5995,3031,19,1,f +5995,3040b,0,4,f +5995,3062b,2,1,f +5995,3068bpx20,19,1,f +5995,3069b,4,1,f +5995,3622,19,1,f +5995,3626bpa3,14,1,f +5995,3626bpa9,14,1,f +5995,3626bpr0895,15,1,f +5995,3666,4,4,f +5995,3684,1,4,f +5995,3878,0,1,f +5995,4032a,2,1,f +5995,4215b,19,2,f +5995,4286,0,1,f +5995,4497,6,1,f +5995,4589,0,3,f +5995,4738a,0,1,f +5995,4739a,0,1,f +5995,57503,334,1,f +5995,57504,334,1,f +5995,57505,334,1,f +5995,57506,334,1,f +5995,5938stk01,9999,1,t +5995,6019,0,1,f +5995,6148,2,4,f +5995,6232,1,1,f +5995,6260,15,1,f +5995,6265,15,2,f +5995,6266,15,4,f +5995,6541,0,1,f +5995,970c00,0,2,f +5995,973p22c01,0,1,f +5995,973pb0391c01,19,1,f +5996,11203pr0012,191,1,f +5996,11203pr0013,29,1,f +5996,18920,179,1,f +5996,23969,322,4,f +5996,3004,27,1,f +5996,3022,191,1,f +5996,3022,29,1,f +5996,30237b,15,1,f +5996,3062b,322,1,f +5996,3068b,15,1,f +5996,3069b,29,1,f +5996,3069b,25,1,f +5996,3069b,26,1,f +5996,3795,19,1,f +5996,4536,15,1,f +5996,87079,26,1,f +5996,88072,15,1,f +5996,92410,27,1,f +5996,96479,30,1,f +5997,12825,0,1,f +5997,2419,72,2,f +5997,298c02,0,2,f +5997,298c02,0,1,t +5997,30031,72,1,f +5997,30035,0,1,f +5997,3020,72,1,f +5997,3020,71,1,f +5997,3022,1,1,f +5997,3022,71,3,f +5997,3023,1,1,f +5997,3039,71,2,f +5997,30602,1,1,f +5997,3062b,0,1,f +5997,32123b,71,1,t +5997,32123b,71,1,f +5997,3626bpr0759,78,4,f +5997,3700,71,1,f +5997,3749,19,1,f +5997,3794b,71,3,f +5997,3795,1,1,f +5997,3839b,71,1,f +5997,3941,47,1,f +5997,3956,71,1,f +5997,4081b,0,1,f +5997,4360,0,1,f +5997,44676,72,2,f +5997,44728,72,1,f +5997,50745,1,1,f +5997,50950,71,1,f +5997,51739,1,1,f +5997,54200,1,1,f +5997,54200,1,1,t +5997,57899,0,1,f +5997,58247,0,1,f +5997,59900,72,1,f +5997,6141,36,1,t +5997,6141,1,1,f +5997,6141,1,1,t +5997,6141,36,1,f +5997,62462,0,1,f +5997,64644,0,1,f +5997,64802,72,4,f +5997,85984,71,1,f +5997,87610pr0001b,72,4,f +5997,88072,71,1,f +5997,92738,0,2,f +5997,970x199,1,4,f +5997,973pr1731c01,272,4,f +6000,12825,0,2,f +6000,13285pr01,25,1,f +6000,2341,320,2,f +6000,2412b,41,7,f +6000,2412b,15,1,f +6000,2412b,14,4,f +6000,2412b,71,1,f +6000,2412b,72,9,f +6000,2419,15,2,f +6000,2420,70,8,f +6000,2431,288,2,f +6000,2431,320,3,f +6000,2436,0,2,f +6000,2445,0,2,f +6000,2445,71,2,f +6000,2456,72,13,f +6000,2465,72,2,f +6000,2515,72,10,f +6000,2540,0,1,f +6000,2555,71,8,f +6000,2555,0,2,f +6000,2555,19,5,f +6000,2586pr0001,71,2,f +6000,2586pr15,71,2,f +6000,2654,57,2,f +6000,2730,71,2,f +6000,2780,0,30,f +6000,2877,135,7,f +6000,298c02,71,4,f +6000,30000,71,3,f +6000,3001,71,2,f +6000,3002,70,6,f +6000,3003,72,2,f +6000,3003,71,3,f +6000,30031,0,1,f +6000,3004,71,6,f +6000,30042,72,7,f +6000,30088,72,2,f +6000,30132,72,2,f +6000,30136,14,4,f +6000,30162,72,4,f +6000,3020,19,5,f +6000,3021,71,8,f +6000,3022,72,16,f +6000,3023,19,6,f +6000,3023,320,11,f +6000,30236,72,1,f +6000,3027,71,3,f +6000,3028,71,2,f +6000,30304,72,1,f +6000,3032,71,7,f +6000,3034,71,1,f +6000,3034,0,3,f +6000,3035,71,8,f +6000,30359b,71,2,f +6000,3036,71,1,f +6000,30360,71,1,f +6000,30367b,134,2,f +6000,30369,378,1,f +6000,30374,71,11,f +6000,30374,0,2,f +6000,30375,19,1,f +6000,30376,19,1,f +6000,30377,19,1,t +6000,30377,19,2,f +6000,30378,19,1,f +6000,3039,72,2,f +6000,3040b,72,2,f +6000,3048c,0,1,f +6000,30553,0,1,f +6000,30565,72,2,f +6000,30602pb030,71,1,f +6000,3062b,71,14,f +6000,3062b,0,1,f +6000,3068b,71,7,f +6000,3069b,40,14,f +6000,3069b,288,9,f +6000,32000,0,2,f +6000,32013,19,4,f +6000,32018,71,2,f +6000,32039,72,8,f +6000,32054,0,4,f +6000,32062,4,9,f +6000,32064b,19,5,f +6000,32123b,19,1,t +6000,32123b,19,4,f +6000,32124,0,2,f +6000,32140,71,4,f +6000,32184,0,2,f +6000,32192,72,4,f +6000,32278,148,4,f +6000,32291,15,4,f +6000,32316,0,4,f +6000,32523,70,2,f +6000,32524,71,4,f +6000,32524,72,3,f +6000,32525,72,4,f +6000,32556,71,10,f +6000,32557,71,4,f +6000,3298,72,4,f +6000,3298,15,1,f +6000,3298,70,1,f +6000,3460,320,8,f +6000,3460,19,2,f +6000,3460,71,3,f +6000,3622,0,4,f +6000,3623,72,4,f +6000,3626b,0,4,f +6000,3660,72,2,f +6000,3666,0,9,f +6000,3673,71,14,f +6000,3679,71,2,f +6000,3680,0,2,f +6000,3700,15,2,f +6000,3700,70,8,f +6000,3701,72,4,f +6000,3701,15,2,f +6000,3708,0,1,f +6000,3709,72,7,f +6000,3710,70,3,f +6000,3738,71,1,f +6000,3747b,0,2,f +6000,3747b,72,11,f +6000,3794a,0,4,f +6000,3794a,19,1,f +6000,3795,72,4,f +6000,3839b,71,1,f +6000,3894,71,7,f +6000,3895,72,2,f +6000,3937,15,1,f +6000,3937,72,3,f +6000,3938,0,4,f +6000,3941,0,1,f +6000,3941,57,2,f +6000,3958,70,1,f +6000,3960,15,1,f +6000,3960,72,5,f +6000,4032a,0,1,f +6000,4070,71,2,f +6000,4079,70,2,f +6000,4085c,15,2,f +6000,40902,0,12,f +6000,4150,15,1,f +6000,41532,0,12,f +6000,4162,72,8,f +6000,41677,19,1,f +6000,41769,71,4,f +6000,41770,71,4,f +6000,41855,320,1,f +6000,41862,135,2,f +6000,42446,71,1,f +6000,43093,1,20,f +6000,4349,0,3,f +6000,4360,0,1,f +6000,43710,15,2,f +6000,43711,15,2,f +6000,44302a,72,2,f +6000,44567a,71,3,f +6000,44568,15,1,f +6000,44570,71,1,f +6000,4460b,71,6,f +6000,44675,71,1,f +6000,44676,0,2,f +6000,44728,71,4,f +6000,4510,72,1,f +6000,4519,71,8,f +6000,4589,57,1,f +6000,4589,41,6,f +6000,4589,71,5,f +6000,4589,46,4,f +6000,4623,0,2,f +6000,4697b,71,2,f +6000,4697b,71,1,t +6000,4732,72,1,f +6000,4733,0,1,f +6000,4735,0,2,f +6000,4740,72,5,f +6000,47456,320,1,f +6000,47458,320,1,f +6000,48169,71,3,f +6000,50304,71,5,f +6000,50305,71,5,f +6000,50995pr0001,15,2,f +6000,50995pr0005,15,1,f +6000,51739,320,3,f +6000,6019,72,16,f +6000,6091,71,2,f +6000,6112,71,2,f +6000,6141,57,1,t +6000,6141,41,1,t +6000,6141,41,2,f +6000,6141,57,1,f +6000,6141,33,1,t +6000,6141,14,4,f +6000,6141,14,1,t +6000,6141,33,2,f +6000,6141,135,1,t +6000,6179,19,1,f +6000,6190,72,6,f +6000,6232,15,2,f +6000,6259,15,2,f +6000,6536,0,9,f +6000,6541,71,2,f +6000,6558,0,7,f +6000,6587,72,1,f +6000,6628,71,3,f +6000,6636,0,10,f +6000,6636,72,1,f +6000,75535,14,2,f +6000,76138,71,2,f +6000,970c00pr0097,72,1,f +6000,970x026,15,3,f +6000,973pb0373c01,72,1,f +6000,973pr0579c01,15,2,f +6000,973pr1310c01,15,1,f +6001,2454a,15,2,f +6001,3021,15,2,f +6001,3034,4,1,f +6001,4176,15,1,f +6001,4589,40,2,f +6003,3003,1,20,f +6003,3003,4,20,f +6003,3003,0,20,f +6003,3003,14,20,f +6003,3003,47,20,f +6003,3003,15,20,f +6004,3001,14,6,f +6004,3001,15,8,f +6004,3002,25,6,f +6004,3002,26,9,f +6004,3003,25,3,f +6004,3003,15,2,f +6004,3004,14,6,f +6004,3004,26,16,f +6004,3004,15,6,f +6004,3004,25,2,f +6004,3004,2,2,f +6004,3004,70,1,f +6004,3005,15,2,f +6004,3005,2,4,f +6004,3005,14,2,f +6004,3005pe1,14,4,f +6004,3005pe1,15,4,f +6004,3009,26,4,f +6004,3010,15,8,f +6004,3010,14,2,f +6004,3010,25,2,f +6004,3020,70,1,f +6004,3020,15,1,f +6004,3022,70,1,f +6004,3022,25,3,f +6004,3023,15,3,f +6004,3024,70,3,f +6004,3031,26,1,f +6004,3032,26,2,f +6004,3039,25,4,f +6004,3039,2,1,f +6004,3039,15,1,f +6004,3040b,70,2,f +6004,3040b,2,4,f +6004,3040b,25,3,f +6004,3045,25,6,f +6004,33291,5,7,f +6004,3455,15,2,f +6004,3623,15,4,f +6004,3623,70,1,f +6004,3659,5,2,f +6004,3660,14,1,f +6004,3665,2,4,f +6004,3710,27,7,f +6004,3710,25,1,f +6004,3794a,15,3,f +6004,3941,14,4,f +6004,4286,70,2,f +6004,54200,15,6,f +6004,6091,15,2,f +6004,6141,27,5,f +6004,6215,15,5,f +6005,10201,0,4,f +6005,11153,1,2,f +6005,11153,72,2,f +6005,11211,71,4,f +6005,11477,4,2,f +6005,11477,0,2,f +6005,11477,1,2,f +6005,15068,72,2,f +6005,15068,15,3,f +6005,15535,72,1,f +6005,2412b,0,4,f +6005,2431,72,2,f +6005,2431,15,2,f +6005,2436,14,1,f +6005,2445,71,1,f +6005,2540,72,2,f +6005,2654,71,2,f +6005,2780,0,1,f +6005,2780,0,1,t +6005,3004,1,5,f +6005,3004,4,3,f +6005,3005,14,2,f +6005,3010,15,2,f +6005,3020,14,3,f +6005,3020,4,2,f +6005,3020,15,2,f +6005,3020,0,4,f +6005,3021,72,2,f +6005,3022,1,2,f +6005,3023,182,2,f +6005,3023,72,10,f +6005,3023,14,5,f +6005,3024,36,1,t +6005,3024,36,6,f +6005,3031,1,1,f +6005,30592,72,1,f +6005,3062b,72,2,f +6005,3065,40,2,f +6005,3066,40,2,f +6005,3069b,15,3,f +6005,3069b,14,3,f +6005,3070b,1,2,f +6005,3070b,1,1,t +6005,32001,0,3,f +6005,32028,71,2,f +6005,3623,72,2,f +6005,3666,15,2,f +6005,3709,71,3,f +6005,3710,71,3,f +6005,3710,1,3,f +6005,3710,0,4,f +6005,3795,1,6,f +6005,3832,0,1,f +6005,4081b,72,4,f +6005,43722,1,1,f +6005,43723,1,1,f +6005,4488,71,4,f +6005,4599b,0,1,t +6005,4599b,0,2,f +6005,4624,71,8,f +6005,4624,15,4,f +6005,4865a,71,6,f +6005,50745,1,2,f +6005,50950,15,2,f +6005,50950,0,2,f +6005,51739,4,2,f +6005,54200,71,1,t +6005,54200,40,1,t +6005,54200,40,6,f +6005,54200,71,4,f +6005,59900,72,2,f +6005,6014b,71,6,f +6005,60212,4,1,f +6005,60212,14,2,f +6005,60478,0,4,f +6005,61252,0,2,f +6005,6141,182,10,f +6005,6141,182,1,t +6005,6141,72,12,f +6005,6141,72,1,t +6005,6157,0,7,f +6005,6636,72,2,f +6005,76766,71,1,f +6005,85984,0,2,f +6005,87079,72,3,f +6005,87414,0,12,f +6005,87580,0,1,f +6005,87697,0,6,f +6005,92280,71,2,f +6005,98138,1,1,f +6005,98138,25,1,t +6005,98138,179,2,f +6005,98138,179,1,t +6005,98138,25,1,f +6005,98138,1,1,t +6005,98285,71,1,f +6005,98286,71,1,f +6005,99780,72,1,f +6006,13533,71,2,f +6006,2302,4,2,f +6006,3011,1,1,f +6006,31170,322,2,f +6006,3437,25,2,f +6006,3437,73,1,f +6006,3437,1,6,f +6006,4066,322,10,f +6006,40666,10,4,f +6006,40666,14,1,f +6006,40666,4,2,f +6006,4196,71,4,f +6006,4196,4,1,f +6006,4672,72,2,f +6006,47509,135,1,f +6006,51708,179,1,f +6006,51725,4,1,f +6006,87084,71,2,f +6006,87084,4,1,f +6006,93353,1,1,f +6006,98252,27,2,f +6007,3648a,7,1,f +6007,3705,0,1,f +6007,3706,0,1,f +6007,3707,0,1,f +6007,3709,4,1,f +6007,3737,0,1,f +6007,4143,7,3,f +6007,4716,0,1,f +6007,6585,4,1,f +6007,6588,14,1,f +6008,2039,13,2,f +6008,2339,15,4,f +6008,2357,15,4,f +6008,2423,2,2,f +6008,2435,2,1,f +6008,2529,13,6,f +6008,3001,14,2,f +6008,3001,1,1,f +6008,3001,15,2,f +6008,3002,15,2,f +6008,3002,14,2,f +6008,3003,1,2,f +6008,3003,15,4,f +6008,3003,14,2,f +6008,3004,1,6,f +6008,3004,14,8,f +6008,3004,15,20,f +6008,3005,14,6,f +6008,3005,15,12,f +6008,3005,1,4,f +6008,3005pe1,14,2,f +6008,3008,15,2,f +6008,3009,15,2,f +6008,3009pb017,15,2,f +6008,3010,15,18,f +6008,3010,1,4,f +6008,3010,14,6,f +6008,3010p01,14,1,f +6008,3020,14,2,f +6008,3020,15,2,f +6008,3022,14,2,f +6008,3022,15,2,f +6008,3023,14,2,f +6008,3031,14,1,f +6008,3032,14,1,f +6008,3033,15,1,f +6008,3034,14,2,f +6008,3035,14,1,f +6008,3037,15,2,f +6008,3039,15,4,f +6008,3039,14,4,f +6008,3040b,1,2,f +6008,3040b,15,2,f +6008,3045,14,4,f +6008,3065,47,2,f +6008,3068b,13,4,f +6008,3069b,13,2,f +6008,3297p04,15,6,f +6008,3298,15,2,f +6008,3298p04,15,4,f +6008,3299,15,2,f +6008,3300,15,2,f +6008,3307,15,2,f +6008,3622,1,4,f +6008,3622,15,6,f +6008,3622,14,2,f +6008,3626b,46,2,f +6008,3626bp02,14,1,f +6008,3626bp03,14,1,f +6008,3633,5,6,f +6008,3641,0,4,f +6008,3659,15,2,f +6008,3660,15,4,f +6008,3666,14,2,f +6008,3679,7,1,f +6008,3680,1,1,f +6008,3710,14,2,f +6008,3741,2,4,f +6008,3742,5,2,t +6008,3742,13,6,f +6008,3742,13,2,t +6008,3742,5,6,f +6008,3747a,15,2,f +6008,3794a,13,2,f +6008,3795,14,2,f +6008,3853,5,3,f +6008,3856,13,6,f +6008,3861b,5,1,f +6008,3867,74,1,f +6008,3899,13,2,f +6008,3901,0,1,f +6008,3957a,13,2,f +6008,3960,5,1,f +6008,4161poster,9999,1,t +6008,4286,14,2,f +6008,4287,14,2,f +6008,4495b,5,1,f +6008,4589,1,4,f +6008,4600,7,2,f +6008,4624,15,4,f +6008,4740,5,2,f +6008,6093,0,1,f +6008,6215,1,4,f +6008,6867c01,5,1,f +6008,970c00,7,1,f +6008,970c00,13,1,f +6008,973c01,5,1,f +6008,973pb0128c01,15,1,f +6009,3001a,1,4,f +6009,3001a,14,4,f +6009,3001a,4,4,f +6009,3001a,15,4,f +6009,3002a,4,4,f +6009,3002a,14,4,f +6009,3002a,0,4,f +6009,3002a,1,4,f +6009,3002a,15,4,f +6009,3003,47,2,f +6009,3003,15,4,f +6009,3003,4,4,f +6009,3003,1,4,f +6009,3003,14,4,f +6009,3003,0,4,f +6009,3004,4,4,f +6009,3004,14,4,f +6009,3004,0,4,f +6009,3004,1,4,f +6009,3004,15,4,f +6009,3006,4,1,f +6009,3007,1,1,f +6009,3007,4,1,f +6009,3039,4,4,f +6009,3660,4,4,f +6009,3660,1,4,f +6011,11477,1,2,f +6011,14417,72,1,f +6011,14704,71,1,f +6011,14769pr1003,15,1,f +6011,14769pr1046,15,1,f +6011,14769pr1048,15,1,f +6011,15068,4,2,f +6011,15208,0,1,f +6011,15209,15,1,f +6011,15395,179,1,f +6011,15573,0,3,f +6011,18649,0,4,f +6011,2412b,0,2,f +6011,2432,0,2,f +6011,2460,0,1,f +6011,2921,0,2,f +6011,3004,1,4,f +6011,3021,1,1,f +6011,3022,0,2,f +6011,3039,1,2,f +6011,3062b,0,1,f +6011,3795,1,1,f +6011,4032a,15,1,f +6011,4735,0,2,f +6011,4871,1,1,f +6011,60470b,14,2,f +6011,60849,0,1,f +6011,60849,0,1,t +6011,61252,1,2,f +6011,6141,36,3,f +6011,6141,36,1,t +6011,6141,47,1,f +6011,6141,47,1,t +6011,6232,14,1,f +6011,63868,14,2,f +6011,87087,0,2,f +6011,92842,0,2,f +6011,93273,0,2,f +6011,99207,0,3,f +6014,23306,383,1,f +6014,23306,383,1,t +6014,2412b,0,2,f +6014,2454a,7,2,f +6014,2540,19,2,f +6014,2877,8,6,f +6014,3009,7,1,f +6014,3035,7,1,f +6014,30374,42,1,f +6014,30375ps1,19,1,f +6014,30375ps2,320,1,f +6014,30376,19,2,f +6014,30377,19,4,f +6014,30377,19,1,t +6014,30378pr0001,19,1,f +6014,30378pr0004,19,1,f +6014,3040b,7,2,f +6014,30410,6,1,f +6014,3062b,19,6,f +6014,3070b,19,1,f +6014,3070b,19,1,t +6014,3622,7,2,f +6014,3626bps9,14,1,f +6014,3665,7,2,f +6014,3958,8,1,f +6014,4162,0,4,f +6014,4349,0,2,f +6014,50231,6,1,f +6014,6141,57,1,t +6014,6141,57,2,f +6014,970c00,6,1,f +6014,973px58c01,19,1,f +6017,10164pr0001,15,1,f +6017,10928,72,1,f +6017,12825,72,2,f +6017,13787pr0002,14,2,f +6017,2431,70,1,f +6017,3004,14,1,f +6017,3005,4,1,f +6017,3005,71,1,f +6017,30136,70,2,f +6017,30136,72,1,f +6017,30137,70,5,f +6017,3020,72,33,f +6017,3020,70,1,f +6017,3021,15,3,f +6017,3023,71,1,f +6017,3023,15,13,f +6017,3023,70,2,f +6017,3024,73,2,f +6017,3024,29,3,f +6017,3024,2,20,f +6017,3024,25,2,f +6017,3040b,71,2,f +6017,3062b,47,2,f +6017,3069b,4,2,f +6017,3069b,25,2,f +6017,3069b,14,3,f +6017,3070b,27,5,f +6017,3070b,70,4,f +6017,3070b,29,2,f +6017,3070b,25,3,f +6017,3070b,14,2,f +6017,3070b,4,2,f +6017,3623,19,1,f +6017,3623,70,6,f +6017,3623,72,2,f +6017,3626bpr0579,14,1,f +6017,3626bpr0677,14,2,f +6017,3626c,1,1,f +6017,3626c,5,1,f +6017,3626c,4,1,f +6017,3626c,27,2,f +6017,3626cpr0499,14,1,f +6017,3626cpr0895,1000,1,f +6017,3626cpr1229,14,1,f +6017,3648b,72,1,f +6017,3659,71,1,f +6017,3666,71,1,f +6017,3700,72,2,f +6017,3710,19,1,f +6017,3710,72,2,f +6017,3749,19,2,f +6017,3794b,25,1,f +6017,3794b,27,2,f +6017,3794b,72,2,f +6017,3794b,19,1,f +6017,3794b,1,1,f +6017,3836,70,1,f +6017,41539,15,4,f +6017,4522,0,1,f +6017,4523,70,2,f +6017,54200,41,6,f +6017,54200,72,2,f +6017,54200,36,1,f +6017,54200,46,2,f +6017,54200,182,2,f +6017,54200,2,75,f +6017,59900,72,4,f +6017,59900,70,9,f +6017,59900,2,1,f +6017,60897,72,2,f +6017,60897,1,1,f +6017,60897,4,5,f +6017,6124,42,1,f +6017,6141,72,20,f +6017,6141,57,5,f +6017,6141,70,19,f +6017,6141,36,1,f +6017,6231,70,4,f +6017,6254,15,1,f +6017,6254,191,1,f +6017,62810,308,1,f +6017,63864,15,16,f +6017,6541,72,1,f +6017,6636,15,16,f +6017,87990,70,1,f +6017,88704,70,1,f +6017,92590,28,2,f +6017,93223,15,1,f +6017,95674,0,1,f +6017,98283,71,20,f +6020,3001,25,1,f +6020,3022,25,1,f +6020,3024,2,1,f +6020,3039,25,1,f +6020,3660,25,2,f +6020,6141,14,1,f +6022,265ac01,14,1,f +6023,11098,179,1,f +6023,11107,179,1,f +6023,12551pr0005,308,1,f +6023,30374,41,1,f +6023,3626cpr1143,308,1,f +6023,970c00pr0438,70,1,f +6023,973pr2248c01,70,1,f +6023,98138,41,1,f +6024,30162,297,1,f +6024,30173b,0,1,f +6024,3626cpr0745,14,1,f +6024,63965,297,1,f +6024,89522,179,2,f +6024,92338,179,1,f +6024,970c00,0,1,f +6024,973pr2472c01,0,1,f +6024,98132,297,1,f +6024,98133,0,1,f +6026,10247,72,4,f +6026,11153,15,4,f +6026,11203,72,4,f +6026,11211,71,2,f +6026,11399,15,1,f +6026,11477,15,4,f +6026,12939,15,5,f +6026,13251,308,1,f +6026,14769,15,2,f +6026,14769,0,2,f +6026,15207,320,6,f +6026,15573,70,3,f +6026,2335,71,1,f +6026,2357,71,6,f +6026,2412b,0,1,f +6026,2412b,1,2,f +6026,2412b,320,4,f +6026,2420,71,2,f +6026,2431,72,1,f +6026,2431,71,1,f +6026,2431,19,4,f +6026,2432,71,4,f +6026,2445,15,2,f +6026,2445,71,4,f +6026,2524,70,1,f +6026,2540,15,2,f +6026,2555,70,1,t +6026,2555,70,1,f +6026,2653,71,2,f +6026,2654,19,12,f +6026,2730,71,2,f +6026,2736,71,2,f +6026,2744,15,4,f +6026,2780,0,5,t +6026,2780,0,34,f +6026,2877,71,3,f +6026,2877,15,6,f +6026,298c02,71,4,f +6026,298c02,71,1,t +6026,3001,15,5,f +6026,3002,72,6,f +6026,3002,27,1,f +6026,3003,27,1,f +6026,3003,15,11,f +6026,3003,19,2,f +6026,30031,0,1,f +6026,3004,19,2,f +6026,3004,15,20,f +6026,3008,15,2,f +6026,3009,15,3,f +6026,3010,15,14,f +6026,3020,27,1,f +6026,3020,71,10,f +6026,3020,320,1,f +6026,3021,72,1,f +6026,3021,70,10,f +6026,3022,27,1,f +6026,3022,19,17,f +6026,3023,71,8,f +6026,3023,70,4,f +6026,3023,27,10,f +6026,3023,15,24,f +6026,3023,320,7,f +6026,3023,72,7,f +6026,3024,33,1,f +6026,3024,47,2,f +6026,3024,47,1,t +6026,3024,33,1,t +6026,30259,70,2,f +6026,3028,15,1,f +6026,3029,15,5,f +6026,3031,15,7,f +6026,3032,0,2,f +6026,3033,71,1,f +6026,3033,15,2,f +6026,3034,15,2,f +6026,3034,71,1,f +6026,3035,15,4,f +6026,3035,71,1,f +6026,30355,15,1,f +6026,30356,15,1,f +6026,3036,320,2,f +6026,30363,15,4,f +6026,30363,72,2,f +6026,30374,35,1,f +6026,30374,41,1,f +6026,3039,15,8,f +6026,3040b,15,12,f +6026,30503,71,2,f +6026,30565,72,2,f +6026,3063b,15,4,f +6026,3068b,15,2,f +6026,3069b,15,10,f +6026,3069b,27,2,f +6026,3069b,40,12,f +6026,3070b,27,1,t +6026,3070b,40,12,f +6026,3070b,27,2,f +6026,3070b,40,1,t +6026,3176,71,8,f +6026,32000,19,3,f +6026,32002,19,2,t +6026,32002,19,4,f +6026,32009,72,1,f +6026,32013,71,4,f +6026,32014,71,6,f +6026,32017,14,2,f +6026,32018,72,4,f +6026,32054,71,3,f +6026,32054,0,7,f +6026,32059,15,2,f +6026,32062,4,11,f +6026,32064a,15,18,f +6026,32140,71,4,f +6026,32250,72,2,f +6026,32316,71,2,f +6026,32524,71,2,f +6026,32525,15,4,f +6026,32532,0,1,f +6026,32557,0,4,f +6026,33243,27,2,f +6026,3460,15,6,f +6026,3622,15,8,f +6026,3623,71,10,f +6026,3623,27,4,f +6026,3623,15,2,f +6026,3626cpr0926,78,1,f +6026,3626cpr1149,78,2,f +6026,3626cpr1222,78,1,f +6026,3626cpr1227,78,1,f +6026,3659,15,6,f +6026,3660,27,3,f +6026,3660,15,11,f +6026,3665,15,2,f +6026,3666,15,4,f +6026,3666,191,1,f +6026,3673,71,2,f +6026,3673,71,1,t +6026,3676,72,2,f +6026,3678b,15,6,f +6026,3700,19,2,f +6026,3701,72,5,f +6026,3702,71,4,f +6026,3703,71,2,f +6026,3705,0,8,f +6026,3706,0,7,f +6026,3710,15,20,f +6026,3737,0,4,f +6026,3747b,15,10,f +6026,3749,19,6,f +6026,3794b,72,2,f +6026,3795,72,14,f +6026,3832,71,2,f +6026,3839b,72,2,f +6026,3894,15,4,f +6026,3895,1,2,f +6026,3942c,320,2,f +6026,4032a,1,2,f +6026,4070,320,4,f +6026,4070,70,2,f +6026,4081b,15,2,f +6026,41531,15,6,f +6026,4162,320,4,f +6026,41677,1,10,f +6026,41677,0,1,f +6026,41747,15,1,f +6026,41748,15,1,f +6026,41769,320,1,f +6026,41769,71,2,f +6026,41770,71,2,f +6026,41770,320,1,f +6026,41889,148,2,f +6026,41890,148,4,f +6026,42023,15,4,f +6026,42060,320,1,f +6026,42061,320,1,f +6026,42687,148,2,f +6026,4274,1,10,f +6026,4274,1,2,t +6026,4274,71,1,t +6026,4274,71,4,f +6026,4287,15,4,f +6026,43093,1,4,f +6026,4345b,71,4,f +6026,4346,15,4,f +6026,44126,15,2,f +6026,44301a,71,8,f +6026,44302a,72,6,f +6026,44358,71,2,f +6026,44359,72,4,f +6026,44568,15,2,f +6026,4460b,15,4,f +6026,44728,72,6,f +6026,4510,15,4,f +6026,4515,71,2,f +6026,4519,71,2,f +6026,47397,15,3,f +6026,47398,15,3,f +6026,48336,71,3,f +6026,50304,15,1,f +6026,50305,15,1,f +6026,50747pr0006,40,4,f +6026,52031,15,1,f +6026,52501,15,8,f +6026,53585,0,1,f +6026,54200,320,4,f +6026,54200,27,8,f +6026,54200,320,1,t +6026,54200,27,3,t +6026,54383,15,2,f +6026,54384,15,2,f +6026,56145,0,2,f +6026,57899,0,1,f +6026,58247,0,1,f +6026,59443,14,4,f +6026,59443,72,1,f +6026,59900,0,12,f +6026,6005,15,4,f +6026,60208,320,8,f +6026,60208,15,2,f +6026,60219,15,1,f +6026,60470a,0,2,f +6026,60471,71,2,f +6026,60471,4,1,f +6026,60476,4,2,f +6026,60477,15,16,f +6026,60478,72,4,f +6026,60479,15,3,f +6026,60481,15,4,f +6026,60483,71,2,f +6026,60484,71,4,f +6026,60897,71,4,f +6026,6091,15,6,f +6026,61068,15,1,f +6026,6111,15,2,f +6026,61184,71,12,f +6026,61189pr0015,15,1,f +6026,61189pr0016,15,1,f +6026,61409,0,6,f +6026,6141,19,1,t +6026,6141,33,4,f +6026,6141,71,1,t +6026,6141,33,1,t +6026,6141,34,8,f +6026,6141,19,6,f +6026,6141,34,1,t +6026,6141,71,6,f +6026,61780,72,1,f +6026,6180,15,14,f +6026,6233,320,2,f +6026,6233,15,2,f +6026,62462,320,6,f +6026,62462,0,2,f +6026,63864,15,5,f +6026,63868,0,6,f +6026,63965,15,1,f +6026,63965,15,1,t +6026,63965,70,1,t +6026,63965,70,2,f +6026,63965,72,2,t +6026,63965,72,4,f +6026,64225,320,1,f +6026,64567,80,2,t +6026,64567,80,2,f +6026,64799,71,2,f +6026,6541,72,12,f +6026,6558,1,10,f +6026,6632,0,8,f +6026,6636,15,8,f +6026,85984,19,2,f +6026,85984,15,4,f +6026,87079,15,7,f +6026,87083,72,6,f +6026,87552,15,3,f +6026,87580,70,2,f +6026,87580,15,1,f +6026,87752,40,2,f +6026,88283,484,1,f +6026,88930,71,2,f +6026,91988,72,3,f +6026,92081,84,1,f +6026,92280,0,4,f +6026,92280,15,2,f +6026,92582,71,4,f +6026,92593,71,1,f +6026,92593,15,8,f +6026,92738,0,1,f +6026,92946,19,4,f +6026,93273,320,9,f +6026,93571,0,1,f +6026,93606,71,2,f +6026,96874,25,1,t +6026,970c00,15,1,f +6026,970c00pr0510,19,1,f +6026,970c00pr0515,70,1,f +6026,970x026,15,2,f +6026,973pr1802c01,19,1,f +6026,973pr2373c01,15,1,f +6026,973pr2384c01,15,1,f +6026,973pr2385c01,15,1,f +6026,973pr2387c01,308,1,f +6026,98138,320,6,f +6026,98138,320,2,t +6026,98989,71,2,f +6026,99207,71,3,f +6026,99780,72,4,f +6026,99781,71,6,f +6027,2412b,320,3,f +6027,2419,71,1,f +6027,2431,320,2,f +6027,30165,72,3,f +6027,3022,71,3,f +6027,3023,71,1,f +6027,3023,47,1,f +6027,3034,71,1,f +6027,3069b,320,2,f +6027,3710,320,1,f +6027,3794b,72,2,f +6027,3832,72,1,f +6027,3941,71,1,f +6027,4150,71,1,f +6027,43722,71,1,f +6027,43723,71,1,f +6027,4477,71,1,f +6027,4740,42,3,f +6027,47457,71,1,f +6027,51739,71,1,f +6027,54200,320,1,f +6027,54200,320,1,t +6027,6141,71,5,f +6027,6141,71,1,t +6027,87087,320,1,f +6027,87580,71,3,f +6027,99207,71,4,f +6029,2512,14,1,f +6029,3004,14,1,f +6029,3139,0,2,f +6029,3747b,14,1,f +6029,3836,70,1,f +6029,3839b,14,1,f +6029,3841,72,1,f +6029,4624,71,2,f +6029,4624,71,1,t +6029,6157,0,1,f +6030,2420,1,2,f +6030,2470,6,2,f +6030,2555,0,3,f +6030,30173a,7,2,f +6030,30174,8,1,f +6030,30175,8,1,f +6030,3022,0,1,f +6030,3023,1,1,f +6030,3040b,15,2,f +6030,3298,8,1,f +6030,3626bpn1,14,1,f +6030,3794a,7,1,f +6030,3795,0,1,f +6030,3839b,1,1,f +6030,4600,7,1,f +6030,529,334,1,t +6030,529,334,1,f +6030,6016,6,1,f +6030,970c11pb02b,0,1,f +6030,973pn1c01,1,1,f +6031,3001,4,4,f +6031,3001,0,2,f +6031,3001,1,4,f +6031,3001,15,4,f +6031,3001,14,4,f +6031,3001,47,2,f +6031,3001pr1,14,1,f +6031,3002,1,2,f +6031,3002,4,2,f +6031,3002,14,2,f +6031,3003,1,4,f +6031,3003,4,4,f +6031,3003,14,4,f +6031,3003,15,4,f +6031,3003,0,2,f +6031,3003pe1,14,2,f +6031,3007,4,2,f +6031,3483,0,4,f +6031,4130,4,1,f +6031,4131,14,1,f +6031,4132,4,1,f +6031,4133,14,1,f +6031,4180c02,0,2,f +6031,4202,2,1,f +6032,2412b,14,1,f +6032,2419,1,1,f +6032,2446px6,1,1,f +6032,2447,40,1,t +6032,2447,40,1,f +6032,2780,0,2,f +6032,3001,8,1,f +6032,3004,0,1,f +6032,3005,0,2,f +6032,3020,0,1,f +6032,3020,1,1,f +6032,3020,8,1,f +6032,3024,47,2,f +6032,30283,1,2,f +6032,30414,8,1,f +6032,30603,0,1,f +6032,30632,0,1,f +6032,32283c02,0,1,f +6032,3475b,8,2,f +6032,3626bpx100,14,1,f +6032,3666,1,1,f +6032,3701,0,1,f +6032,3707,0,2,f +6032,3713,7,4,f +6032,3749,7,2,f +6032,3829c01,14,1,f +6032,3832,0,1,f +6032,3839b,1,1,f +6032,3894,0,2,f +6032,41751pr1,40,1,f +6032,41769,73,2,f +6032,41770,73,2,f +6032,41862,14,1,f +6032,6141,7,2,f +6032,6141,14,4,f +6032,6579,0,4,f +6032,6580,14,4,f +6032,970x026,1,1,f +6032,973pb0072c01,1,1,f +6033,2412b,71,2,f +6033,2412b,0,2,f +6033,2421,0,1,f +6033,2432,15,2,f +6033,2432,14,2,f +6033,2436,71,2,f +6033,2445,71,2,f +6033,2446,15,1,f +6033,2456,15,2,f +6033,2456,4,1,f +6033,2456,14,1,f +6033,2456,1,2,f +6033,2479,0,1,f +6033,2877,15,4,f +6033,2877,71,4,f +6033,2926,0,2,f +6033,298c02,14,1,t +6033,298c02,14,2,f +6033,3001,2,3,f +6033,3001,0,3,f +6033,3001,1,6,f +6033,3001,15,6,f +6033,3001,4,6,f +6033,3001,14,6,f +6033,3001,25,2,f +6033,3002,4,6,f +6033,3002,1,6,f +6033,3002,2,3,f +6033,3002,0,3,f +6033,3002,14,6,f +6033,3002,15,6,f +6033,3003,1,16,f +6033,3003,0,8,f +6033,3003,25,6,f +6033,3003,15,16,f +6033,3003,4,16,f +6033,3003,2,8,f +6033,3003,14,16,f +6033,3004,0,6,f +6033,3004,15,12,f +6033,3004,25,4,f +6033,3004,4,12,f +6033,3004,14,12,f +6033,3004,1,12,f +6033,3004,2,6,f +6033,3005,14,8,f +6033,3005,1,8,f +6033,3005,2,4,f +6033,3005,4,8,f +6033,3005,0,4,f +6033,3005,25,4,f +6033,3005,15,8,f +6033,3007,4,1,f +6033,3007,1,1,f +6033,3007,15,1,f +6033,3007,14,1,f +6033,3008,4,1,f +6033,3008,1,2,f +6033,3008,15,2,f +6033,3008,14,1,f +6033,3009,4,2,f +6033,3009,15,3,f +6033,3009,1,3,f +6033,3009,14,2,f +6033,3010,25,4,f +6033,3010,2,2,f +6033,3010,0,2,f +6033,3010,14,3,f +6033,3010,1,3,f +6033,3010,15,3,f +6033,3010,4,3,f +6033,3020,25,2,f +6033,3020,4,2,f +6033,3020,14,2,f +6033,3020,71,2,f +6033,3020,15,2,f +6033,3021,14,2,f +6033,3021,71,2,f +6033,3022,71,2,f +6033,3022,4,4,f +6033,3022,25,2,f +6033,3022,15,2,f +6033,3022,14,2,f +6033,3023,71,4,f +6033,3023,25,4,f +6033,3023,4,4,f +6033,3031,4,2,f +6033,3034,4,2,f +6033,3034,71,2,f +6033,3034,14,4,f +6033,30388,14,2,f +6033,30389b,14,2,f +6033,3039,25,2,f +6033,3039,33,2,f +6033,3039,2,4,f +6033,3039,47,2,f +6033,3039,71,2,f +6033,3039,14,2,f +6033,3039,1,4,f +6033,30391,0,4,f +6033,30394,14,1,f +6033,30395,72,1,f +6033,30396,14,1,f +6033,3040b,14,4,f +6033,3040b,1,4,f +6033,3040b,2,4,f +6033,3040b,71,4,f +6033,3040b,25,4,f +6033,30592,71,1,f +6033,30602,4,2,f +6033,3062b,46,4,f +6033,3062b,15,4,f +6033,3062b,4,4,f +6033,3062b,71,4,f +6033,3062b,57,4,f +6033,3062b,36,4,f +6033,30648,0,4,f +6033,3065,47,4,f +6033,3139,0,4,f +6033,3298,1,2,f +6033,3298,4,4,f +6033,3622,2,2,f +6033,3622,1,4,f +6033,3622,0,2,f +6033,3622,15,4,f +6033,3622,14,4,f +6033,3622,4,4,f +6033,3660,71,2,f +6033,3660,14,2,f +6033,3660,4,4,f +6033,3660,1,4,f +6033,3665,1,4,f +6033,3665,14,4,f +6033,3665,4,4,f +6033,3665,71,4,f +6033,3666,71,2,f +6033,3710,15,2,f +6033,3710,71,2,f +6033,3710,4,2,f +6033,3710,25,2,f +6033,3731,71,2,f +6033,3788,0,2,f +6033,3795,4,2,f +6033,3795,15,2,f +6033,3823,47,2,f +6033,3823,41,2,f +6033,3829c01,15,1,f +6033,3829c01,14,1,f +6033,3832,4,2,f +6033,3833,4,1,f +6033,3839b,72,2,f +6033,3957a,71,2,f +6033,4070,15,4,f +6033,4070,14,4,f +6033,4080,14,1,f +6033,4081b,4,4,f +6033,4081b,0,4,f +6033,4083,0,2,f +6033,4175,0,2,f +6033,42289,0,1,f +6033,4286,4,4,f +6033,43719,4,1,f +6033,4488,0,4,f +6033,4589,72,2,f +6033,4589,4,2,f +6033,4600,71,4,f +6033,4624,71,4,f +6033,4864b,47,4,f +6033,4865a,33,2,f +6033,4865a,47,2,f +6033,55295,0,1,f +6033,55296,0,1,f +6033,55297,0,1,f +6033,55298,0,1,f +6033,55299,0,1,f +6033,55300,0,1,f +6033,55981,71,8,f +6033,6014b,71,10,f +6033,6015,0,10,f +6033,60474,0,1,f +6033,6140,0,1,f +6033,61409,4,2,f +6033,61409,72,2,f +6033,6141,33,4,f +6033,6141,33,1,t +6033,6141,36,6,f +6033,6141,46,8,f +6033,6141,34,1,t +6033,6141,36,1,t +6033,6141,34,2,f +6033,6141,46,1,t +6033,61485,0,1,f +6033,6215,15,2,f +6033,6215,4,2,f +6033,6232,15,4,f +6033,6249,71,4,f +6033,63082,71,2,f +6034,clikits134,89,1,f +6035,10928,72,2,f +6035,12799,72,1,f +6035,15462,28,1,f +6035,18352,72,1,f +6035,2780,0,8,f +6035,2780,0,1,t +6035,30395,72,1,f +6035,32013,0,2,f +6035,32034,0,1,f +6035,32039,71,2,f +6035,32054,0,4,f +6035,32056,0,2,f +6035,32062,4,4,f +6035,32073,71,4,f +6035,32140,27,4,f +6035,32140,1,2,f +6035,32184,71,2,f +6035,32192,0,4,f +6035,32270,0,1,f +6035,32271,27,4,f +6035,32291,0,2,f +6035,32316,27,5,f +6035,32523,0,1,f +6035,32524,27,2,f +6035,3708,0,2,f +6035,3713,71,11,f +6035,3713,71,2,t +6035,42003,0,2,f +6035,4274,71,1,t +6035,4274,71,6,f +6035,43093,1,7,f +6035,43093,1,1,t +6035,44294,71,2,f +6035,4519,71,3,f +6035,4716,0,1,f +6035,53585,0,2,f +6035,56145,0,4,f +6035,56823c50,0,1,f +6035,60483,71,2,f +6035,6141,36,2,f +6035,6141,36,1,t +6035,6141,47,1,t +6035,6141,47,6,f +6035,61481,0,4,f +6035,61510,71,1,f +6035,62462,71,2,f +6035,63869,71,1,f +6035,64391,27,2,f +6035,64683,27,2,f +6035,6536,71,2,f +6035,6558,1,18,f +6035,6587,28,2,f +6035,6629,0,1,f +6035,85940,0,2,f +6037,10247,72,2,f +6037,11211,71,5,f +6037,11215,71,2,f +6037,11477,272,2,f +6037,11477,71,6,f +6037,11477,15,2,f +6037,13731,272,2,f +6037,13971,71,2,f +6037,14417,72,2,f +6037,14718,71,2,f +6037,14769pr0004,71,2,f +6037,15068,272,28,f +6037,15573,19,4,f +6037,15712,71,2,f +6037,18677,71,4,f +6037,2412b,0,6,f +6037,2412b,179,10,f +6037,2419,71,1,f +6037,2420,1,6,f +6037,2420,71,4,f +6037,2431,15,2,f +6037,2431,272,8,f +6037,2450,272,8,f +6037,2450,15,4,f +6037,2639,72,2,f +6037,2780,0,10,f +6037,2780,0,1,t +6037,30000,71,1,f +6037,3002,19,8,f +6037,3003,0,4,f +6037,3004,19,3,f +6037,3004,272,12,f +6037,3005,15,8,f +6037,3005,272,2,f +6037,3009,15,1,f +6037,3010,272,4,f +6037,30157,71,2,f +6037,3020,272,6,f +6037,3020,15,5,f +6037,3020,71,5,f +6037,3021,0,4,f +6037,3021,15,16,f +6037,3022,14,9,f +6037,3023,25,14,f +6037,3023,0,4,f +6037,3023,71,4,f +6037,30236,0,2,f +6037,3024,272,1,t +6037,3024,14,4,f +6037,3024,182,1,t +6037,3024,182,2,f +6037,3024,14,1,t +6037,3024,272,4,f +6037,3032,14,2,f +6037,3034,71,6,f +6037,3034,15,5,f +6037,3035,15,1,f +6037,30355,15,2,f +6037,30356,15,2,f +6037,30357,15,2,f +6037,3039pr0018,0,1,f +6037,30414,14,2,f +6037,3068b,272,4,f +6037,3069b,4,4,f +6037,3069bpr0070,0,3,f +6037,3070b,34,2,f +6037,3070b,36,1,t +6037,3070b,36,3,f +6037,3070b,272,1,t +6037,3070b,272,4,f +6037,3070b,34,1,t +6037,32015,0,2,f +6037,32018,0,4,f +6037,32062,4,3,f +6037,32064a,4,1,f +6037,32123b,71,2,f +6037,32124,0,4,f +6037,32316,72,2,f +6037,32449,72,2,f +6037,3297,272,2,f +6037,3298,272,4,f +6037,3460,71,7,f +6037,3623,15,10,f +6037,3666,1,2,f +6037,3666,15,9,f +6037,3673,71,2,f +6037,3673,71,1,t +6037,3700,0,2,f +6037,3701,15,2,f +6037,3706,0,1,f +6037,3710,1,14,f +6037,3710,71,4,f +6037,3710,272,10,f +6037,3747a,71,1,f +6037,3749,19,2,f +6037,3795,72,3,f +6037,3937,0,2,f +6037,3958,15,1,f +6037,3960,182,1,f +6037,4070,1,10,f +6037,4162,272,6,f +6037,41677,71,2,f +6037,41769,15,1,f +6037,41769,272,1,f +6037,41770,15,1,f +6037,41770,272,1,f +6037,42023,15,2,f +6037,42060,272,3,f +6037,42061,272,3,f +6037,42610,71,1,f +6037,4286,272,2,f +6037,4287,15,2,f +6037,43093,1,2,f +6037,43708,15,2,f +6037,43722,15,3,f +6037,43722,4,1,f +6037,43723,15,3,f +6037,43723,4,1,f +6037,4460b,15,4,f +6037,44728,72,2,f +6037,4477,15,6,f +6037,4510,72,2,f +6037,4519,71,2,f +6037,47397,15,2,f +6037,47398,15,2,f +6037,47457,72,3,f +6037,48336,71,13,f +6037,4856a,15,1,f +6037,48729b,72,1,f +6037,48729b,72,1,t +6037,48933,15,1,f +6037,49668,0,2,f +6037,51739,272,2,f +6037,52107,0,1,f +6037,54200,15,4,f +6037,54200,36,1,t +6037,54200,272,1,t +6037,54200,34,2,f +6037,54200,272,12,f +6037,54200,36,2,f +6037,54200,15,1,t +6037,54200,19,6,f +6037,54200,34,1,t +6037,54200,19,1,t +6037,54383,272,3,f +6037,54384,272,3,f +6037,56908,71,1,f +6037,59426,72,1,f +6037,60470a,0,2,f +6037,60477,72,4,f +6037,60481,272,6,f +6037,6106,15,2,f +6037,61254,0,2,f +6037,6134,71,2,f +6037,6153b,15,1,f +6037,63868,72,8,f +6037,6536,0,3,f +6037,6541,19,2,f +6037,6558,1,2,f +6037,6632,71,2,f +6037,6636,4,6,f +6037,6636,15,8,f +6037,73983,14,2,f +6037,85984,71,2,f +6037,87079,71,2,f +6037,87079,272,2,f +6037,87087,4,2,f +6037,92099,72,1,f +6037,92279,40,2,f +6037,92280,0,4,f +6037,92409,0,1,f +6037,92593,15,2,f +6037,93273,4,1,f +6037,96874,25,1,t +6037,98138,25,1,t +6037,98138,25,2,f +6037,99206,4,4,f +6037,99207,0,7,f +6037,99780,2,2,f +6037,99781,0,2,f +6038,2540,15,2,f +6038,30162,72,1,f +6038,3070b,27,1,f +6038,3070b,27,1,t +6038,3665,15,1,f +6038,44676,15,2,f +6038,4595,71,1,f +6038,60478,4,1,f +6038,60481,15,1,f +6038,6141,71,1,t +6038,6141,47,1,t +6038,6141,47,2,f +6038,6141,71,1,f +6038,63868,15,1,f +6041,3176,7,1,f +6041,3491,7,1,f +6041,3492c01,14,1,f +6042,32062,4,3,f +6042,32062,4,1,t +6042,32316,72,1,f +6042,54821,4,1,f +6042,57539,25,2,f +6042,58176,36,1,t +6042,58176,36,2,f +6042,61798,47,2,f +6042,87747,25,1,t +6042,87747,25,2,f +6042,90609,0,2,f +6042,90609,322,2,f +6042,90611,0,2,f +6042,90617,72,3,f +6042,90634,0,2,f +6042,90639,25,1,f +6042,90641,25,1,f +6042,90641,0,3,f +6042,92221,0,2,f +6042,92223,0,3,f +6042,92235pat0002,0,1,f +6042,93571,0,1,f +6042,93571,322,4,f +6042,98564,25,2,f +6042,98570pat01,15,1,f +6042,98581,0,1,f +6044,33291,10,1,t +6044,33291,10,2,f +6044,4529,0,1,f +6044,4740,4,2,f +6044,6141,4,2,f +6044,6141,4,1,t +6045,2780,0,16,f +6045,2825,71,5,f +6045,2905,0,2,f +6045,32016,71,2,f +6045,32017,71,2,f +6045,32039,71,6,f +6045,32062,4,33,f +6045,32063,0,1,f +6045,32123b,71,6,f +6045,32291,4,2,f +6045,32523,15,2,f +6045,32525,0,2,f +6045,3706,0,5,f +6045,3713,71,16,f +6045,41677,71,4,f +6045,43093,1,10,f +6045,4519,71,5,f +6045,48496,0,4,f +6045,48729b,71,2,f +6045,53585,4,39,f +6045,53586,179,2,f +6045,54821,4,1,f +6045,55013,72,5,f +6045,57539,15,2,f +6045,57539,4,2,f +6045,57585,71,2,f +6045,59443,72,2,f +6045,60483,72,9,f +6045,60484,72,2,f +6045,63869,71,2,f +6045,64275,179,2,f +6045,6536,71,2,f +6045,6553,0,4,f +6045,6558,1,4,f +6045,6587,28,7,f +6045,87083,72,11,f +6045,87747,0,12,f +6045,87846,15,4,f +6045,90612,4,7,f +6045,90613,0,10,f +6045,90616,0,4,f +6045,90622,0,10,f +6045,90639,15,6,f +6045,90641,179,2,f +6045,90652,15,7,f +6045,92202,15,5,f +6045,92221,179,2,f +6045,92223,15,1,f +6045,92235pat0002,0,4,f +6045,92238,15,2,f +6045,92907,71,9,f +6045,93571,0,28,f +6045,93575,15,1,f +6046,2412b,72,1,f +6046,2432,0,1,f +6046,2496,0,2,f +6046,2655,71,2,f +6046,3020,4,1,f +6046,30374,70,1,f +6046,3626bpr0703,78,1,f +6046,40233,0,1,f +6046,4738a,70,1,f +6046,4739a,70,1,f +6046,6141,297,6,f +6046,6141,297,1,t +6046,87580,72,1,f +6046,92084pr0003,15,1,f +6046,970c00,72,1,f +6046,973pr1674c01,272,1,f +6051,1,15,3,f +6051,3001a,1,1,f +6051,3001a,15,7,f +6051,3003,0,1,f +6051,3003,4,1,f +6051,3003,14,1,f +6051,3004,15,1,f +6051,3005,47,2,f +6051,3008,15,18,f +6051,3009,15,12,f +6051,3010,15,8,f +6051,3020,1,1,f +6051,3021,0,1,f +6051,3024,15,2,f +6051,3032,15,1,f +6051,3039,1,2,f +6051,3062a,47,2,f +6051,3068a,0,2,f +6051,3068a,15,18,f +6051,3069a,15,40,f +6051,3069a,0,2,f +6051,3070a,4,6,f +6051,3456,15,1,f +6051,3460,15,2,f +6051,3613,4,2,f +6051,3614a,14,2,f +6051,367,1,1,f +6051,685p01,14,1,f +6051,69c02,15,2,f +6051,792c03,4,1,f +6051,837,15,1,f +6051,838,1,1,f +6051,x196,0,1,f +6054,2780,0,2,f +6054,32062,0,4,f +6054,32174,72,2,f +6054,32270,71,2,f +6054,32475,72,2,f +6054,32476,15,2,f +6054,32533pb199,25,1,f +6054,3749,19,2,f +6054,41413,178,1,f +6054,44135,72,1,f +6054,44810,15,1,f +6054,4519,71,2,f +6054,47296,72,2,f +6054,47328,15,2,f +6054,47330,15,1,f +6054,47331,15,1,f +6054,47332,15,1,f +6054,47334,179,1,f +6054,47335,135,2,f +6054,x1190,41,1,f +6055,3005pt0,15,5,f +6055,3005pt1,15,5,f +6055,3005pt2,15,5,f +6055,3005pt3,15,5,f +6055,3005pt4,15,5,f +6055,3005pt5,15,5,f +6055,3005pt6,15,5,f +6055,3005pt7,15,5,f +6055,3005pt8,15,5,f +6055,3005pt9,15,5,f +6056,765c01,7,20,f +6056,x466,7,1,f +6057,3003,0,1,f +6057,3004,15,1,f +6057,3005pe1,15,2,f +6057,3020,0,1,f +6057,3022,0,1,f +6057,3039,15,2,f +6057,3660,15,2,f +6057,3731,4,1,f +6058,2357,4,2,f +6058,2377,4,4,f +6058,2412b,6,10,f +6058,2413,7,2,f +6058,2431,7,6,f +6058,2437,40,1,f +6058,2458,8,4,f +6058,2540,8,2,f +6058,2625,0,4,f +6058,2626,15,2,f +6058,2743,4,4,f +6058,298c02,14,1,t +6058,298c02,14,2,f +6058,3002,4,1,f +6058,3003,15,2,f +6058,3004,4,12,f +6058,3008,15,3,f +6058,3010,4,3,f +6058,30141,8,1,f +6058,30148,0,1,f +6058,30158,6,1,f +6058,30170,0,1,f +6058,30171,6,1,f +6058,3020,2,3,f +6058,3022,19,3,f +6058,3023,7,3,f +6058,3023,2,3,f +6058,3031,7,1,f +6058,3032,0,1,f +6058,3032,7,2,f +6058,30332,6,2,f +6058,30355,7,1,f +6058,30356,7,1,f +6058,30365,0,4,f +6058,3037,7,2,f +6058,30383,8,4,f +6058,3039,7,8,f +6058,3040b,4,2,f +6058,30478,484,1,f +6058,3062b,14,4,f +6058,3062b,0,8,f +6058,3068b,7,4,f +6058,3069bpa3,15,1,f +6058,32028,0,2,f +6058,32083,7,1,f +6058,3460,8,1,f +6058,3622,14,2,f +6058,3626bpr0098,14,1,f +6058,3660,15,4,f +6058,3666,19,2,f +6058,3673,7,2,f +6058,3700,1,3,f +6058,3710,4,1,f +6058,3795,4,8,f +6058,3837,8,1,f +6058,4070,15,2,f +6058,4079,14,1,f +6058,4081b,15,2,f +6058,4213,7,1,f +6058,4287,4,4,f +6058,4625,7,2,f +6058,4733,7,2,f +6058,4856a,4,2,f +6058,4857,7,1,f +6058,4864b,0,4,f +6058,4865a,7,4,f +6058,6141,7,9,f +6058,6141,46,1,t +6058,6141,47,2,f +6058,6141,46,4,f +6058,6141,47,1,t +6058,6141,7,1,t +6058,6232,14,1,f +6058,6239,0,1,f +6058,6564,4,2,f +6058,6565,4,2,f +6058,6636,14,2,f +6058,970c00,4,1,f +6058,973pa8c01,2,1,f +6061,14226c11,0,1,f +6061,2357,15,8,f +6061,2420,70,2,f +6061,2431,2,31,f +6061,2450,1,1,f +6061,2450,15,1,f +6061,2450,0,1,f +6061,2450,4,1,f +6061,3009,15,14,f +6061,3010,15,8,f +6061,3021,4,2,f +6061,3022,4,9,f +6061,3022,70,2,f +6061,3023,0,9,f +6061,3023,15,2,f +6061,3023,70,4,f +6061,3024,15,2,f +6061,3031,10,1,f +6061,3034,0,1,f +6061,3048c,0,2,f +6061,3068bpr0142,15,1,f +6061,3068bpr0300,15,1,f +6061,3068bpr0301,15,2,f +6061,3068bpr0392,15,2,f +6061,32028,0,20,f +6061,3666,4,1,f +6061,3666,2,1,f +6061,37,297,4,f +6061,3710,4,1,f +6061,3794b,0,18,f +6061,3795,0,1,f +6061,3832,0,1,f +6061,3941,71,2,f +6061,4216,15,3,f +6061,4519,71,2,f +6061,4623,71,4,f +6061,4740,19,1,f +6061,54200,0,10,f +6061,54200,0,1,t +6061,59443,71,1,f +6061,59900,4,4,f +6061,59900,71,5,f +6061,59900,15,1,f +6061,59900,297,9,f +6061,60474,71,1,f +6061,60808,15,1,f +6061,6112,15,2,f +6061,6141,46,4,f +6061,6141,297,1,t +6061,6141,46,1,t +6061,6141,297,6,f +6061,6141,182,1,t +6061,6141,71,1,t +6061,6141,71,6,f +6061,6141,182,2,f +6061,61780,70,9,f +6061,6182,15,3,f +6061,64776pat0001,0,1,f +6061,85863pr0067,1,1,f +6061,85863pr0068,4,1,f +6061,85863pr0069,0,1,f +6061,85863pr0070,15,1,f +6061,85863pr0071,71,4,f +6061,85863pr0072,85,1,f +6061,85863pr0073,15,1,f +6061,91405,10,4,f +6061,92585,4,1,f +6064,10026stk01,9999,1,t +6064,2420,8,2,f +6064,2420,7,2,f +6064,2431,14,2,f +6064,2444,14,2,f +6064,2444,7,2,f +6064,2569,14,3,f +6064,2780,0,4,f +6064,2780,0,1,t +6064,3001,8,1,f +6064,3002,0,3,f +6064,3003,8,2,f +6064,3003,0,3,f +6064,3004,8,3,f +6064,3007,0,1,f +6064,3007,8,3,f +6064,3020,8,2,f +6064,3021,0,1,f +6064,3022,8,2,f +6064,3022,0,2,f +6064,3023,14,2,f +6064,3023,8,2,f +6064,3034,14,2,f +6064,3035,0,1,f +6064,3035,7,1,f +6064,3036,0,1,f +6064,30367apr01,15,1,f +6064,3037,14,4,f +6064,3039,14,2,f +6064,3048c,0,1,f +6064,3068b,14,4,f +6064,32002,8,8,f +6064,32002,8,1,t +6064,32062,0,1,f +6064,32064a,0,8,f +6064,32073,0,6,f +6064,3297,14,2,f +6064,3298,0,7,f +6064,3460,14,4,f +6064,3679,7,1,f +6064,3680,14,1,f +6064,3700,14,1,f +6064,3707,0,2,f +6064,3747a,7,4,f +6064,3795,14,1,f +6064,3832,8,1,f +6064,3832,7,1,f +6064,3933,383,1,f +6064,3934,383,1,f +6064,3937,0,1,f +6064,3941,14,4,f +6064,3942c,383,2,f +6064,3942c,14,3,f +6064,41531,383,2,f +6064,41531,14,2,f +6064,41679,8,2,f +6064,41680,0,1,f +6064,41681,8,1,f +6064,41747,14,1,f +6064,41747pb004,0,1,f +6064,41748,14,1,f +6064,41748pb004,0,1,f +6064,41764,7,3,f +6064,41765,7,3,f +6064,41767,14,1,f +6064,41768,14,1,f +6064,41769,14,3,f +6064,41769,7,1,f +6064,41770,7,1,f +6064,41770,14,3,f +6064,4185,14,2,f +6064,4185,41,2,f +6064,42021,7,1,f +6064,42023,7,4,f +6064,42060,383,1,f +6064,42061,383,1,f +6064,4266,383,2,f +6064,4266,14,2,f +6064,4286,14,4,f +6064,4287,7,2,f +6064,43093,0,1,f +6064,43720,14,1,f +6064,43721,14,1,f +6064,6134,0,1,f +6064,6232,1,1,f +6064,6233,14,2,f +6064,6233,383,2,f +6064,6636,0,8,f +6067,3010,1,4,f +6067,3032,1,1,f +6067,3068pb01,15,1,f +6067,4222a,450,1,f +6067,4610c01,4,1,f +6067,fab5e,9999,1,f +6068,2335,71,1,f +6068,2476a,71,1,f +6068,2540,72,1,f +6068,298c02,71,1,t +6068,298c02,71,1,f +6068,3005,0,1,f +6068,30162,72,1,f +6068,3022,71,2,f +6068,3023,72,2,f +6068,30553,72,2,f +6068,30554b,71,4,f +6068,3069b,71,2,f +6068,32028,71,1,f +6068,32039,71,2,f +6068,32062,0,2,f +6068,3623,71,2,f +6068,3794b,0,5,f +6068,43722,71,1,f +6068,43723,71,1,f +6068,44300,72,2,f +6068,4519,71,1,f +6068,4599b,71,1,f +6068,4740,71,2,f +6068,4740,72,2,f +6068,47905,71,2,f +6068,6141,71,1,t +6068,6141,71,2,f +6068,6536,72,1,f +6068,6541,71,1,f +6069,10201,0,1,f +6069,11289,41,1,f +6069,11299,71,1,f +6069,12825,15,1,f +6069,13349,15,1,f +6069,14520,72,1,f +6069,14520,15,2,f +6069,14769,15,1,f +6069,14826,9999,1,t +6069,15207,71,4,f +6069,15207,15,3,f +6069,15207,72,2,f +6069,15210pr01,0,2,f +6069,15530,272,1,f +6069,15532,0,2,f +6069,15534,72,1,f +6069,15625,72,1,f +6069,2412b,71,15,f +6069,2412b,72,6,f +6069,2431,72,1,f +6069,2431,33,1,f +6069,2431,71,5,f +6069,2431,15,1,f +6069,2431,1,4,f +6069,2432,0,2,f +6069,2432,14,1,f +6069,2445,1,1,f +6069,2445,71,1,f +6069,2445,0,1,f +6069,2446,15,2,f +6069,2447,40,2,f +6069,2447,40,2,t +6069,2453a,15,10,f +6069,2454a,1,4,f +6069,2454a,15,23,f +6069,2456,1,3,f +6069,2456,15,2,f +6069,2460,72,1,f +6069,2465,15,7,f +6069,2479,0,1,f +6069,2508,0,1,f +6069,2654,71,4,f +6069,2736,71,1,f +6069,2780,0,2,t +6069,2780,0,3,f +6069,298c02,14,2,t +6069,298c02,14,2,f +6069,3001,0,2,f +6069,3001,1,3,f +6069,3003,71,4,f +6069,3003,15,9,f +6069,3003,1,8,f +6069,3004,15,9,f +6069,3004,71,2,f +6069,3004,4,1,f +6069,3004,1,4,f +6069,3004,14,3,f +6069,3004,72,1,f +6069,30043,71,2,f +6069,3005,1,2,f +6069,3005,4,2,f +6069,3005,15,13,f +6069,3006,1,4,f +6069,30089,0,2,f +6069,3009,15,16,f +6069,3010,0,2,f +6069,3010,1,7,f +6069,3010,15,6,f +6069,3010,72,4,f +6069,3010,4,1,f +6069,30145,15,7,f +6069,30162,72,1,f +6069,30194,72,1,f +6069,3020,0,2,f +6069,3020,1,4,f +6069,3020,72,2,f +6069,3020,14,1,f +6069,3021,71,4,f +6069,3021,15,1,f +6069,3022,2,1,f +6069,3022,1,3,f +6069,3022,71,1,f +6069,3022,4,3,f +6069,3023,1,5,f +6069,3023,46,11,f +6069,3023,15,1,f +6069,3024,33,1,t +6069,3024,46,1,t +6069,3024,33,2,f +6069,3024,46,1,f +6069,30248,72,1,f +6069,3027,72,1,f +6069,3028,71,2,f +6069,3028,0,2,f +6069,3030,0,3,f +6069,3031,4,1,f +6069,3032,0,3,f +6069,3034,2,1,f +6069,3034,0,2,f +6069,30340,15,2,f +6069,3036,0,1,f +6069,30374,0,1,f +6069,30387,71,1,f +6069,3039,72,1,f +6069,3040b,15,3,f +6069,30414,71,1,f +6069,3045,71,4,f +6069,30552,71,1,f +6069,3062b,0,2,f +6069,3062b,4,3,f +6069,3062b,15,2,f +6069,3065,47,1,f +6069,3068b,71,10,f +6069,3068b,4,1,f +6069,3068b,1,6,f +6069,3069b,72,1,f +6069,3069b,1,12,f +6069,3069b,15,8,f +6069,3069b,0,2,f +6069,3069b,14,5,f +6069,3069bpr0030,15,2,f +6069,3069bpr0100,2,2,f +6069,3069bpr0101,71,1,f +6069,3070b,4,2,f +6069,3070b,4,1,t +6069,3070b,36,1,t +6069,3070b,36,2,f +6069,32000,0,2,f +6069,32013,15,1,f +6069,32014,0,1,f +6069,32062,4,4,f +6069,32064b,15,1,f +6069,3245c,15,13,f +6069,3298,15,1,f +6069,3460,72,4,f +6069,3460,14,2,f +6069,3622,15,7,f +6069,3623,1,1,f +6069,3626cpr0889,14,1,f +6069,3626cpr0893,14,1,f +6069,3626cpr1091,14,1,f +6069,3626cpr1144,14,1,f +6069,3626cpr1145,14,1,f +6069,3626cpr1147,14,1,f +6069,3626cpr1581,14,1,f +6069,3660,15,1,f +6069,3666,0,1,f +6069,3673,71,1,t +6069,3673,71,1,f +6069,3679,71,1,f +6069,3680,15,1,f +6069,3700,15,4,f +6069,3700,72,1,f +6069,3700,71,3,f +6069,3703,15,2,f +6069,3706,0,2,f +6069,3707,0,1,f +6069,3710,15,7,f +6069,3710,1,7,f +6069,3710,4,1,f +6069,3710,72,3,f +6069,3713,4,2,f +6069,3713,4,2,t +6069,3747b,1,1,f +6069,3794b,1,2,f +6069,3794b,15,4,f +6069,3794b,4,1,f +6069,3795,1,1,f +6069,3795,19,2,f +6069,3821,4,1,f +6069,3822,4,1,f +6069,3829c01,14,1,f +6069,3829c01,71,1,f +6069,3832,0,2,f +6069,3836,70,1,f +6069,3837,72,1,f +6069,3899,4,2,f +6069,3899,14,1,f +6069,3900,15,2,f +6069,3941,41,1,f +6069,3957a,15,1,t +6069,3957a,15,1,f +6069,3958,71,3,f +6069,3962b,0,3,f +6069,3963,71,1,f +6069,4070,15,2,f +6069,4079b,14,5,f +6069,4083,14,2,f +6069,41334,72,2,f +6069,41334,0,1,f +6069,4150pr0022,71,1,f +6069,4151,72,1,f +6069,41539,72,2,f +6069,4216,15,3,f +6069,4217,15,2,f +6069,4218,41,7,f +6069,4219,15,1,f +6069,4274,71,1,t +6069,4274,71,1,f +6069,4285,71,1,f +6069,4349,0,1,f +6069,44301a,72,4,f +6069,44302a,72,2,f +6069,44728,72,1,f +6069,4477,0,2,f +6069,4533,72,2,f +6069,45677,4,1,f +6069,4599b,1,2,t +6069,4599b,1,2,f +6069,4697b,71,2,f +6069,4697b,71,1,t +6069,4740,2,1,f +6069,47905,4,1,f +6069,48336,71,6,f +6069,4865b,41,2,f +6069,4865b,47,2,f +6069,50745,72,2,f +6069,50745,15,4,f +6069,50859b,0,1,f +6069,50861,0,2,f +6069,50862,71,2,f +6069,51739,4,1,f +6069,52036,72,2,f +6069,52501,4,2,f +6069,52501,15,2,f +6069,54200,72,2,f +6069,54200,15,2,f +6069,54200,36,1,f +6069,54200,46,2,t +6069,54200,33,1,t +6069,54200,15,1,t +6069,54200,72,1,t +6069,54200,36,1,t +6069,54200,46,3,f +6069,54200,33,2,f +6069,57783,40,1,f +6069,57783,41,2,f +6069,57895,41,10,f +6069,59349,15,3,f +6069,59443,14,2,f +6069,59443,0,2,f +6069,59900,36,1,f +6069,6014b,71,8,f +6069,60169,72,2,f +6069,60470a,15,5,f +6069,60471,0,1,f +6069,60474,72,1,f +6069,60475a,14,8,f +6069,60478,0,2,f +6069,60592,15,1,f +6069,60596,72,10,f +6069,60596,1,15,f +6069,60616a,41,4,f +6069,6106,0,2,f +6069,6111,1,2,f +6069,6141,46,5,f +6069,6141,33,2,t +6069,6141,72,4,t +6069,6141,36,8,f +6069,6141,34,2,f +6069,6141,36,4,t +6069,6141,46,2,t +6069,6141,33,2,f +6069,6141,72,6,f +6069,6141,34,2,t +6069,61482,71,4,f +6069,61482,71,4,t +6069,61485,71,1,f +6069,6157,0,4,f +6069,6179,15,1,f +6069,61800,15,1,f +6069,6231,71,4,f +6069,6231,15,4,f +6069,6231,72,2,f +6069,62462,15,2,f +6069,63864,72,1,f +6069,63868,0,1,f +6069,63868,1,4,f +6069,64567,0,1,f +6069,64567,0,1,t +6069,6558,1,1,f +6069,6636,71,2,f +6069,72454,15,1,f +6069,72475,41,4,f +6069,85974,484,1,f +6069,85984,72,19,f +6069,87079,71,14,f +6069,87079,1,9,f +6069,87580,71,6,f +6069,87580,0,1,f +6069,87697,0,8,f +6069,88072,71,1,f +6069,88393,15,4,f +6069,88930,15,1,f +6069,89536,15,1,f +6069,90194,1,1,f +6069,91405,72,3,f +6069,92099,72,2,f +6069,92099,0,1,f +6069,92107,0,1,f +6069,92107,72,2,f +6069,92410,15,2,f +6069,92582,71,1,f +6069,92585,4,2,f +6069,92586pr0001,84,1,f +6069,92589,71,10,f +6069,92590,28,1,f +6069,92593,71,9,f +6069,92842,0,1,f +6069,92926,2,1,f +6069,93273,72,1,f +6069,96874,25,1,t +6069,970c00,272,4,f +6069,970c00,72,3,f +6069,973pr1944c01,15,1,f +6069,973pr2501c01,1,2,f +6069,973pr2502c01,15,1,f +6069,973pr2503c01,0,1,f +6069,973pr2504c01,272,2,f +6069,98281,15,1,f +6069,98302,0,2,f +6069,99780,0,3,f +6069,99784,71,1,f +6070,3941,15,1,f +6070,6141,4,1,t +6070,6141,4,3,f +6070,6141,36,1,t +6070,6141,36,4,f +6070,6254,191,1,f +6070,6942,47,1,f +6072,2357,19,3,f +6072,2412b,19,5,f +6072,2420,19,18,f +6072,2431,19,3,f +6072,2456,19,3,f +6072,3001,72,2,f +6072,3001,19,6,f +6072,3002,19,8,f +6072,3004,19,13,f +6072,3005,19,9,f +6072,3005,288,31,f +6072,3006,0,2,f +6072,3007,19,5,f +6072,3008,19,21,f +6072,3009,19,11,f +6072,3010,19,3,f +6072,3020,19,10,f +6072,3021,19,17,f +6072,3022,19,8,f +6072,3023,47,44,f +6072,3023,19,90,f +6072,3023,72,7,f +6072,3024,72,6,f +6072,3024,19,19,f +6072,3031,19,2,f +6072,3032,19,4,f +6072,3034,72,1,f +6072,3034,19,3,f +6072,3035,72,1,f +6072,3035,19,1,f +6072,30414,72,1,f +6072,3068b,19,13,f +6072,3069b,47,52,f +6072,3069b,19,54,f +6072,3070b,19,17,f +6072,3070b,19,1,t +6072,3460,72,1,f +6072,3622,19,9,f +6072,3622,0,4,f +6072,3623,72,4,f +6072,3623,19,73,f +6072,3665,19,3,f +6072,3666,72,2,f +6072,3666,288,38,f +6072,3666,19,20,f +6072,3710,19,57,f +6072,3710,72,4,f +6072,3795,19,5,f +6072,3832,19,3,f +6072,3857,72,1,f +6072,4070,19,8,f +6072,4070,72,1,f +6072,4162,19,1,f +6072,4162pr0003,19,1,f +6072,4204,72,1,f +6072,4477,19,4,f +6072,4865a,19,23,f +6072,6141,70,2,t +6072,6141,70,14,f +6072,6141,71,2,t +6072,6141,71,14,f +6072,6231,19,18,f +6072,6636,19,9,f +6074,4019,7,1,f +6074,4143,7,3,f +6074,6573,8,1,f +6074,9244,7,1,f +6075,2431,15,1,f +6075,2432,4,1,f +6075,2496,0,2,f +6075,2655,71,2,f +6075,3023,4,2,f +6075,3023,47,2,f +6075,3069b,33,1,f +6075,3069b,4,1,f +6075,3710,4,2,f +6075,63868,15,1,f +6076,2432,0,1,f +6076,2513,14,1,f +6076,3004,14,1,f +6076,3022,14,2,f +6076,3023,7,1,f +6076,3024,47,2,f +6076,3024,14,2,f +6076,3070b,36,2,f +6076,3626apr0001,14,1,f +6076,3641,0,4,f +6076,3710,14,2,f +6076,3710,0,2,f +6076,3788,14,1,f +6076,3823,41,1,f +6076,3829c01,0,1,f +6076,4070,14,2,f +6076,4212b,14,1,f +6076,4315,14,1,f +6076,4449,0,1,f +6076,4474,41,1,f +6076,4530,0,1,f +6076,4600,0,2,f +6076,4624,14,4,f +6076,4865a,14,4,f +6076,970c00,15,1,f +6076,973px61c01,15,1,f +6080,3002,15,1,f +6080,3004,15,1,f +6080,3020,0,1,f +6080,3021,0,1,f +6080,3022,0,1,f +6080,3024,33,2,t +6080,3024,33,1,f +6080,3039,47,1,f +6080,3660,15,1,f +6080,3730,0,1,f +6081,122c01,7,2,f +6081,3004,47,1,f +6081,3021,4,4,f +6081,3023,4,2,f +6081,3039,47,1,f +6081,3039,4,1,f +6081,3062a,33,1,f +6081,3626apr0001,14,1,f +6081,3641,0,4,f +6081,3787,4,2,f +6081,3795,4,2,f +6081,3834,0,1,f +6081,6602stk01,9999,1,t +6081,970c00,0,1,f +6081,973c18,0,1,f +6083,10p05,2,1,f +6083,3001a,47,1,f +6083,3003,0,1,f +6083,3003,1,1,f +6083,3004,0,3,f +6083,3004,1,36,f +6083,3005,1,2,f +6083,3005,15,5,f +6083,3008,1,12,f +6083,3009,1,7,f +6083,3010,1,2,f +6083,3010p31,0,2,f +6083,3010pb036u,14,1,f +6083,3020,1,2,f +6083,3020,14,1,f +6083,3021,14,2,f +6083,3023,1,2,f +6083,3023,14,3,f +6083,3034,1,2,f +6083,3035,0,1,f +6083,3037,1,2,f +6083,3039,1,2,f +6083,3040a,0,2,f +6083,3068a,14,2,f +6083,3068a,7,32,f +6083,3068a,4,1,f +6083,3081cc01,4,4,f +6083,3137c01,0,1,f +6083,3137c02,0,2,f +6083,3139,0,2,f +6083,3297,4,14,f +6083,3298,4,8,f +6083,3299,4,4,f +6083,3300,4,1,f +6083,3324c01,4,1,f +6083,630,14,1,f +6083,7b,0,4,f +6089,3021,0,30,f +6089,728,7,1,f +6089,729,47,1,f +6092,13571pr01,70,1,f +6092,3626bpb0917,14,1,f +6092,88646,0,1,f +6092,93563,0,1,f +6092,970c00pb248,28,1,f +6092,973pr2329c01,14,1,f +6094,10a,2,1,f +6094,2040,14,1,f +6094,2040,15,4,f +6094,2041,15,1,f +6094,2045c01,14,1,f +6094,2145,14,1,f +6094,2145,15,2,f +6094,3003,1,2,f +6094,3010,1,2,f +6094,3020,14,1,f +6094,3031,14,1,f +6094,3068bpf5,15,1,f +6094,3068bpf6,15,1,f +6094,3068bpf7,15,1,f +6094,3068bpf8,15,1,f +6094,3068bpf9,15,1,f +6094,3068bpfa,15,1,f +6094,3456,4,1,f +6094,3899,1,1,f +6094,3958,15,1,f +6094,3980c02,1,1,f +6094,4094a,4,1,f +6094,4429,4,1,f +6094,4727,2,3,f +6094,4728,15,1,f +6094,4728,14,1,f +6094,4728,4,1,f +6094,4784,14,1,f +6094,4874c01,4,1,f +6094,4876,14,1,f +6094,63965,4,1,f +6094,787c01,1,2,f +6094,fab5c,9999,1,f +6095,2335pr02,15,1,f +6095,3004pr0007,73,1,f +6095,3020,71,1,f +6095,3021,72,1,f +6095,3023,73,4,f +6095,3024,73,1,f +6095,30374,15,1,f +6095,30383,0,2,f +6095,3068b,1,1,f +6095,3678bpr0014a,73,1,f +6095,3794b,73,1,f +6095,4085c,0,4,f +6095,4349,72,1,f +6095,44674,323,1,f +6095,4528,0,2,f +6095,4600,71,1,f +6095,50951,0,2,f +6095,54200,323,1,t +6095,54200,323,2,f +6095,60471,71,2,f +6095,6091,73,2,f +6095,93594,179,2,f +6098,3003,14,33,f +6098,3003,4,33,f +6098,3003,15,33,f +6098,3003,0,33,f +6098,3003,1,33,f +6098,3003,47,33,f +6099,2412b,4,2,f +6099,2412b,71,2,f +6099,2780,0,1,t +6099,2780,0,2,f +6099,2994,71,4,f +6099,3010,0,1,f +6099,3021,71,1,f +6099,3023,4,2,f +6099,3030,0,1,f +6099,3035,4,1,f +6099,30602pb022,4,2,f +6099,30603,4,1,f +6099,3068b,4,1,f +6099,3665,4,2,f +6099,3702,0,2,f +6099,3705,0,1,f +6099,3710,4,1,f +6099,3713,71,4,f +6099,3713,71,1,t +6099,3737,0,2,f +6099,3794a,4,8,f +6099,3795,4,1,f +6099,3937,71,2,f +6099,3938,4,2,f +6099,3957a,57,2,f +6099,4081b,4,2,f +6099,41747pb013,4,1,f +6099,41748pb013,4,1,f +6099,41855pb08,4,1,f +6099,41862,71,2,f +6099,43719,4,1,f +6099,43722,4,1,f +6099,43723,4,1,f +6099,44728,25,6,f +6099,4589,71,2,f +6099,47715,0,1,f +6099,48933pb04,0,1,f +6099,6141,71,1,t +6099,6141,57,1,t +6099,6141,57,4,f +6099,6141,71,6,f +6099,6578,0,4,f +6099,6636,4,1,f +6101,2340,15,2,f +6101,2412b,0,4,f +6101,2412b,1,4,f +6101,2431,33,4,f +6101,2432,1,3,f +6101,2446,15,1,f +6101,2450,0,2,f +6101,2456,1,1,f +6101,2555,15,4,f +6101,2569,0,2,f +6101,2569,0,1,t +6101,2577,15,2,f +6101,2610,14,2,f +6101,2654,46,1,f +6101,2877,71,2,f +6101,3001,14,2,f +6101,30031,0,1,f +6101,3004,1,2,f +6101,3007,15,1,f +6101,3009,0,3,f +6101,30090,41,1,f +6101,30090,41,1,t +6101,30162,72,2,f +6101,3020,1,2,f +6101,3022,1,1,f +6101,30237a,14,2,f +6101,3024,36,1,f +6101,3024,34,1,f +6101,3034,15,2,f +6101,30340,14,2,f +6101,3036,15,1,f +6101,30363,1,1,f +6101,30367b,0,1,f +6101,30377,71,2,f +6101,30377,71,1,t +6101,30565,15,2,f +6101,3068b,15,3,f +6101,3176,14,2,f +6101,3185,15,2,f +6101,32028,71,2,f +6101,3308,15,2,f +6101,3622,15,2,f +6101,3622,14,4,f +6101,3624,15,1,f +6101,3626bpr0325,14,1,f +6101,3626bpr0410,14,1,f +6101,3626bpr0680,14,1,f +6101,3678b,71,2,f +6101,3678b,15,2,f +6101,3710,1,2,f +6101,3710,15,1,f +6101,3794b,72,1,f +6101,3795,4,1,f +6101,3829c01,14,1,f +6101,3838,14,1,f +6101,3962b,0,1,f +6101,4079b,14,1,f +6101,41334,0,1,f +6101,4151,15,1,f +6101,4175,0,2,f +6101,4282,15,1,f +6101,43713,15,1,f +6101,43719,4,1,f +6101,4460b,15,4,f +6101,4477,71,1,f +6101,4623,0,3,f +6101,4871,15,1,f +6101,48729b,0,2,f +6101,48729b,0,1,t +6101,50950,4,2,f +6101,54100,1,1,f +6101,54101,72,1,f +6101,54200,46,1,t +6101,54200,33,4,f +6101,54200,33,2,t +6101,54200,0,2,f +6101,54200,46,2,f +6101,54200,0,1,t +6101,59275,4,2,f +6101,6019,71,3,f +6101,60470a,0,1,f +6101,60478,71,2,f +6101,61409,4,2,f +6101,61482,71,1,t +6101,61482,71,1,f +6101,62113,72,1,f +6101,62360,41,1,f +6101,62576,41,1,f +6101,63868,1,2,f +6101,63965,71,2,f +6101,6541,0,1,f +6101,7287stk01,9999,1,t +6101,85970,15,4,f +6101,85984,0,2,f +6101,85984,15,5,f +6101,85984,71,2,f +6101,86035,15,1,f +6101,87082,0,1,f +6101,87087,15,2,f +6101,92099,15,2,f +6101,92593,72,1,f +6101,970c00,72,1,f +6101,970c00,0,2,f +6101,973pr1188c01,0,1,f +6101,973pr1693c01,0,1,f +6101,973pr1694c01,71,1,f +6102,2352,14,1,f +6102,2356,14,1,f +6102,2577,4,4,f +6102,3001,1,12,f +6102,3001,4,12,f +6102,3001,0,4,f +6102,3001,15,10,f +6102,3001,14,12,f +6102,3001pr1,14,1,f +6102,3002,14,6,f +6102,3002,0,2,f +6102,3002,1,6,f +6102,3002,4,4,f +6102,3002,15,4,f +6102,3003,14,20,f +6102,3003,0,8,f +6102,3003,15,17,f +6102,3003,4,20,f +6102,3003,1,20,f +6102,3003pe2,14,2,f +6102,3007,4,2,f +6102,3007,1,2,f +6102,3185,15,6,f +6102,3483,0,6,f +6102,4204,2,2,f +6102,4727,2,4,f +6102,4728,15,1,f +6102,4728,14,1,f +6102,4728,1,1,f +6102,4728,4,1,f +6102,4743,14,1,f +6102,4743,1,1,f +6102,4744,1,1,f +6102,4744,14,1,f +6102,4744,4,1,f +6102,4744pr0001,0,1,f +6102,4744pr0002,4,1,f +6102,4744px11,14,1,f +6102,4745,14,1,f +6102,4747,4,1,f +6102,4748,4,1,f +6102,600,14,2,f +6102,601,14,4,f +6102,6212,1,1,f +6102,6213pb04,14,1,f +6102,6213pb06,4,1,f +6102,6214px2,2,1,f +6102,6215,14,8,f +6102,6215,1,8,f +6102,6216,14,2,f +6102,6216,4,1,f +6102,6216,1,2,f +6102,6216,2,1,f +6102,6232,4,1,f +6102,6235,4,2,f +6102,6236,4,2,f +6102,6244px1,14,1,f +6102,6248,4,6,f +6102,6249,4,3,f +6102,82248,1,1,f +6102,82249,15,1,f +6103,2423,2,1,f +6103,2654,71,1,f +6103,30151a,47,1,f +6103,30367c,71,1,f +6103,30374,71,1,f +6103,4589,46,1,f +6103,4589,15,1,f +6103,6019,15,1,f +6103,60474,15,1,f +6103,6141,4,1,t +6103,6141,15,2,f +6103,6141,4,1,f +6103,6141,15,1,t +6105,3626bpr0001,14,1,f +6105,3901,6,1,f +6105,72824p01,15,1,f +6105,970c00,0,1,f +6105,973c01,15,1,f +6106,15068,4,1,f +6106,15573,4,1,f +6106,15712,0,1,f +6106,15712,15,1,f +6106,16606pat0001,15,1,f +6106,2431,71,1,f +6106,2435,2,1,f +6106,30031,0,1,f +6106,3004,19,2,f +6106,3004,378,10,f +6106,3005,70,1,f +6106,3010,72,2,f +6106,3010,15,1,f +6106,3020,70,1,f +6106,3020,4,1,f +6106,3020,72,2,f +6106,3020,71,1,f +6106,3022,19,3,f +6106,3023,4,1,f +6106,3034,72,1,f +6106,3035,15,2,f +6106,30367c,15,1,f +6106,3040b,72,2,f +6106,3040b,15,2,f +6106,3069b,15,2,f +6106,3069b,71,1,f +6106,3070b,71,2,f +6106,3070b,71,1,t +6106,33183,70,1,f +6106,33183,70,1,t +6106,33291,10,3,f +6106,33291,10,1,t +6106,3460,71,2,f +6106,3626b,15,1,f +6106,3626cpr0893,14,1,f +6106,3626cpr1762,14,1,f +6106,3666,71,2,f +6106,3710,19,1,f +6106,3836,70,1,f +6106,3839b,71,2,f +6106,3878,0,1,f +6106,4032a,2,1,f +6106,4070,70,1,f +6106,41334,272,1,f +6106,4162,15,1,f +6106,41879a,272,1,f +6106,41879a,0,1,f +6106,4216,70,7,f +6106,4599b,0,1,f +6106,4599b,0,1,t +6106,46303,71,1,f +6106,47905,15,1,f +6106,54200,15,1,t +6106,54200,15,3,f +6106,59900,46,1,f +6106,59900,72,2,f +6106,60596,72,1,f +6106,60623,15,1,f +6106,6141,15,1,t +6106,6141,4,1,t +6106,6141,0,1,t +6106,6141,0,1,f +6106,6141,4,1,f +6106,6141,15,6,f +6106,6636,15,1,f +6106,85984,15,2,f +6106,973pr1800c01,73,1,f +6106,973pr2274c01,27,1,f +6106,98283,28,2,f +6106,98283,71,6,f +6107,10197,0,2,f +6107,11214,72,1,f +6107,11478,0,1,f +6107,11946,322,2,f +6107,11947,322,2,f +6107,12799,72,1,f +6107,15462,70,2,f +6107,18651,0,6,f +6107,2780,0,1,t +6107,2780,0,17,f +6107,28896,15,1,f +6107,32009,0,1,f +6107,32016,322,2,f +6107,32017,0,1,f +6107,32054,0,4,f +6107,32062,4,2,f +6107,32073,71,2,f +6107,32123b,14,2,f +6107,32123b,14,1,t +6107,32140,0,6,f +6107,32271,0,3,f +6107,32316,0,1,f +6107,32523pr0001,15,1,f +6107,32524,15,2,f +6107,32525,0,2,f +6107,32526,15,2,f +6107,3708,0,2,f +6107,3713,71,1,t +6107,3713,71,5,f +6107,40490,72,2,f +6107,41678,0,2,f +6107,42003,0,6,f +6107,4274,71,2,f +6107,4274,71,1,t +6107,43093,1,8,f +6107,44309,0,4,f +6107,4519,71,3,f +6107,45590,0,2,f +6107,56145,0,4,f +6107,59443,0,2,f +6107,60483,322,2,f +6107,64391,322,1,f +6107,64393,322,1,f +6107,64681,322,1,f +6107,64683,322,1,f +6107,6536,15,2,f +6107,6536,0,2,f +6107,6558,1,19,f +6107,6632,0,2,f +6107,98138,47,1,t +6107,98138,47,2,f +6108,3003,15,1,f +6108,3004,0,1,f +6108,3004p0b,14,1,f +6108,3021,14,1,f +6108,3022,0,1,f +6108,3023,15,2,f +6108,3665,15,2,f +6108,4085c,14,2,f +6108,6124,34,1,f +6109,3020,7,1,f +6109,3021,7,1,f +6109,3034,7,2,f +6109,3228b,7,4,f +6109,3242d,7,2,f +6109,4166,8,4,f +6109,4168,7,1,f +6109,4169,7,1,f +6109,4707pb02,7,1,f +6109,70022,0,1,f +6109,765c01,7,2,f +6109,766c01,7,3,f +6109,x466,7,2,f +6111,996ac15,15,1,f +6111,bb97,0,1,f +6111,trainsig2,1,2,f +6111,x489,1,2,f +6112,10170,84,1,f +6112,30374,0,2,f +6112,3626cpr0388,14,1,f +6112,3626cpr0579,14,1,f +6112,3626cpr0645,14,1,f +6112,41334,72,1,f +6112,41879a,71,1,f +6112,41879a,308,1,f +6112,46303,71,1,f +6112,62810,484,1,f +6112,90509,14,2,f +6112,970c00,28,1,f +6112,973pr1163c01,272,1,f +6112,973pr1575c01,0,1,f +6112,973pr1772c01,10,1,f +6113,2446,0,1,f +6113,2446,2,1,f +6113,2446,15,1,f +6113,2447,40,5,f +6113,2543,0,1,f +6113,2543,4,1,f +6113,30090,33,2,f +6113,30133,0,1,f +6113,30133,15,1,f +6113,30167,6,1,f +6113,30170,0,2,f +6113,30171,6,1,f +6113,30172,15,1,f +6113,30287p01,1,1,f +6113,30287p01,0,1,f +6113,30325,8,1,f +6113,30325,6,1,f +6113,30608,0,2,f +6113,3624,0,1,f +6113,3624,8,1,f +6113,3624,4,1,f +6113,3624,15,1,f +6113,3629,7,1,f +6113,3629,6,1,f +6113,3833,4,1,f +6113,3833,15,1,f +6113,3833,0,1,f +6113,3834,15,1,f +6113,3878,0,1,f +6113,3898,15,1,f +6113,3901,7,1,f +6113,3901,19,1,f +6113,3901,0,1,f +6113,3901,6,1,f +6113,41334,8,2,f +6113,4485,0,1,f +6113,4485,1,1,f +6113,4485,4,1,f +6113,4485,15,1,f +6113,4530,320,1,f +6113,4530,19,1,f +6113,4530,6,1,f +6113,6093,6,1,f +6113,6093,25,1,f +6113,6093,19,1,f +6114,2064stk01,9999,1,t +6114,2412b,4,4,f +6114,2413,15,2,f +6114,2432,4,2,f +6114,2444,0,2,f +6114,2496,0,2,f +6114,2655,71,2,f +6114,298c02,15,1,f +6114,3001,15,1,f +6114,3021,1,1,f +6114,3023,1,1,f +6114,3023,71,5,f +6114,3031,15,2,f +6114,3034,72,2,f +6114,30372,15,1,f +6114,30383,72,2,f +6114,3039pr0014,0,1,f +6114,3070b,4,2,f +6114,3139,0,4,f +6114,32028,15,3,f +6114,3298,4,1,f +6114,3623,4,2,f +6114,3626bpr0126,14,1,f +6114,3626bpr0314,14,1,f +6114,3666,15,1,f +6114,3673,71,2,f +6114,3710,15,2,f +6114,3710,4,2,f +6114,3747a,4,1,f +6114,3794a,4,3,f +6114,3832,15,2,f +6114,3901,71,1,f +6114,3901,0,1,f +6114,41769,15,1,f +6114,41770,15,1,f +6114,43337,4,2,f +6114,4477,4,2,f +6114,4488,71,2,f +6114,4617b,0,2,f +6114,4623,15,2,f +6114,4624,15,4,f +6114,4714,15,1,f +6114,48183,4,2,f +6114,4855,15,2,f +6114,4858,15,1,f +6114,4861,15,1,f +6114,4862,41,4,f +6114,4863,15,2,f +6114,4865a,15,3,f +6114,4870,71,1,f +6114,4871,15,3,f +6114,50950,15,2,f +6114,50950,4,2,f +6114,54200,15,2,f +6114,57783,41,1,f +6114,6019,15,2,f +6114,6141,36,1,f +6114,6141,34,1,f +6114,6141,46,3,f +6114,6239,15,1,f +6114,970c00,15,1,f +6114,970c00,72,1,f +6114,973pr1192c01,0,1,f +6114,973pr1239c01,15,1,f +6116,10201,0,1,f +6116,11477,14,2,f +6116,11477,25,2,f +6116,11477,0,1,f +6116,13731,14,2,f +6116,15535,72,3,f +6116,15573,15,3,f +6116,15573,14,6,f +6116,15573,25,3,f +6116,15573,4,2,f +6116,15573,0,1,f +6116,18649,0,1,f +6116,18671,4,2,f +6116,2412b,1,2,f +6116,2412b,15,2,f +6116,2412b,71,2,f +6116,24201,0,1,f +6116,2431,71,1,f +6116,2431,14,2,f +6116,2458,15,1,f +6116,2654,0,3,f +6116,3002,14,1,f +6116,30028,0,6,f +6116,3004,14,2,f +6116,3005,40,3,f +6116,3021,0,6,f +6116,3021,14,1,f +6116,3021,15,1,f +6116,3022,2,4,f +6116,3022,0,2,f +6116,3023,71,4,f +6116,3023,40,1,f +6116,3023,47,1,f +6116,3024,47,2,f +6116,3024,47,1,t +6116,3024,0,3,f +6116,3024,182,1,t +6116,3024,182,2,f +6116,3024,0,1,t +6116,3034,72,2,f +6116,3040b,15,1,f +6116,3062b,71,2,f +6116,3065,40,2,f +6116,3069b,25,1,f +6116,3069b,40,1,f +6116,3069b,14,3,f +6116,3069b,47,1,f +6116,3069b,71,4,f +6116,3070b,71,2,f +6116,3070b,71,1,t +6116,32001,71,1,f +6116,32062,4,6,f +6116,32064a,15,4,f +6116,32064a,0,10,f +6116,32124,0,2,f +6116,3622,14,2,f +6116,3623,25,2,f +6116,3673,71,1,f +6116,3673,71,1,t +6116,3679,71,1,f +6116,3680,15,1,f +6116,3700,25,1,f +6116,3700,4,1,f +6116,3709,0,3,f +6116,3710,71,2,f +6116,3749,19,1,f +6116,3795,0,1,f +6116,3941,71,1,f +6116,3942c,0,1,f +6116,3957a,15,3,f +6116,4070,15,2,f +6116,4081b,72,2,f +6116,4162,14,2,f +6116,41769,72,1,f +6116,41770,72,1,f +6116,4286,1,1,f +6116,4287,0,1,f +6116,44728,71,2,f +6116,44728,14,1,f +6116,4495b,272,2,f +6116,4624,15,4,f +6116,4740,57,1,f +6116,54200,0,1,t +6116,54200,40,1,f +6116,54200,0,2,f +6116,54200,47,1,f +6116,54200,40,1,t +6116,54200,47,1,t +6116,54383,15,1,f +6116,54384,15,1,f +6116,55981,71,1,f +6116,59895,0,4,f +6116,59900,4,1,f +6116,59900,71,2,f +6116,60470a,71,2,f +6116,60475b,14,2,f +6116,60478,72,4,f +6116,61252,4,1,f +6116,61409,72,2,f +6116,61409,25,1,f +6116,6141,36,3,f +6116,6141,34,1,t +6116,6141,36,1,t +6116,6141,34,1,f +6116,6141,71,14,f +6116,6141,71,1,t +6116,6157,0,5,f +6116,6239,1,2,f +6116,63864,0,1,f +6116,6636,1,1,f +6116,74967,71,6,f +6116,85975,15,1,f +6116,87083,72,1,f +6116,87087,14,2,f +6116,87580,15,3,f +6116,90194,4,1,f +6116,91988,0,1,f +6116,92280,15,2,f +6116,92593,15,2,f +6116,92842,0,1,f +6116,93274,0,2,f +6116,99206,71,2,f +6116,99780,71,4,f +6118,2412b,73,2,f +6118,2436,19,2,f +6118,2436,1,2,f +6118,2456,4,1,f +6118,2460,14,1,f +6118,2540,71,2,f +6118,2555,0,2,f +6118,298c02,4,1,t +6118,298c02,4,2,f +6118,3001,1,1,f +6118,30027b,15,6,f +6118,30028,0,6,f +6118,3003,14,1,f +6118,3004,1,1,f +6118,3004,4,1,f +6118,3009,2,1,f +6118,3010,2,1,f +6118,3020,71,2,f +6118,3020,14,2,f +6118,3021,72,1,f +6118,3021,70,2,f +6118,3021,1,2,f +6118,3022,0,3,f +6118,3022,25,1,f +6118,3023,1,2,f +6118,3023,2,4,f +6118,3023,47,1,f +6118,3023,71,2,f +6118,3023,25,1,f +6118,3023,14,2,f +6118,3024,2,1,f +6118,3034,72,2,f +6118,30383,71,2,f +6118,30383,19,2,f +6118,3039,4,1,f +6118,3039,2,2,f +6118,3040b,2,2,f +6118,30414,14,2,f +6118,30602,40,1,f +6118,3065,41,1,f +6118,3068b,14,1,f +6118,3475b,72,2,f +6118,3660,14,1,f +6118,3660,4,1,f +6118,3666,4,1,f +6118,3679,7,1,f +6118,3680,1,1,f +6118,3710,70,1,f +6118,3710,14,2,f +6118,3710,2,3,f +6118,3710,1,2,f +6118,3747b,4,1,f +6118,3747b,14,1,f +6118,3794a,0,1,f +6118,3795,1,1,f +6118,3839b,2,2,f +6118,3839b,0,2,f +6118,3839b,71,1,f +6118,3937,1,1,f +6118,3937,2,2,f +6118,3938,71,3,f +6118,3942c,15,1,f +6118,3957a,71,1,f +6118,4070,14,2,f +6118,4081b,0,2,f +6118,4081b,4,2,f +6118,4085c,0,1,f +6118,41769,4,1,f +6118,41770,4,1,f +6118,41855,1,1,f +6118,41862,14,1,f +6118,4268656,89,1,f +6118,4286,14,2,f +6118,4286,4,4,f +6118,43722,14,1,f +6118,43722,25,1,f +6118,43723,25,1,f +6118,43723,14,1,f +6118,44302a,14,2,f +6118,44302a,19,2,f +6118,44302a,4,4,f +6118,44302a,2,4,f +6118,44302a,1,2,f +6118,44567a,19,4,f +6118,44567a,14,2,f +6118,44567a,25,3,f +6118,44661,14,1,f +6118,4600,71,3,f +6118,4617b,0,1,f +6118,4740,15,2,f +6118,47905,0,2,f +6118,6141,57,1,t +6118,6141,25,1,t +6118,6141,25,2,f +6118,6141,46,1,t +6118,6141,57,2,f +6118,6141,46,2,f +6118,6141,36,4,f +6118,6141,36,1,t +6118,6141,0,2,f +6118,6141,4,1,t +6118,6141,15,2,f +6118,6141,15,1,t +6118,6141,0,1,t +6118,6141,4,2,f +6118,73983,2,2,f +6118,73983,4,4,f +6119,11303,4,2,f +6119,11477,0,2,f +6119,15207,0,4,f +6119,15573,4,2,f +6119,15712,15,2,f +6119,18674,15,1,f +6119,18895pr01,4,2,f +6119,18896,0,2,f +6119,2412b,80,5,f +6119,2412b,72,4,f +6119,2431,72,1,f +6119,2446,4,1,f +6119,2446,0,1,f +6119,2447,40,1,t +6119,2447,40,2,f +6119,2456,15,1,f +6119,2508,0,1,f +6119,2926,0,1,f +6119,3001,4,2,f +6119,3003,15,1,f +6119,30031,72,2,f +6119,3010,4,2,f +6119,3021,72,2,f +6119,3022,15,2,f +6119,3023,15,5,f +6119,3023,47,2,f +6119,3023,72,4,f +6119,30237b,0,2,f +6119,3024,182,1,t +6119,3024,182,2,f +6119,3030,0,1,f +6119,3031,71,1,f +6119,30350b,0,2,f +6119,30414,14,1,f +6119,3062b,14,3,f +6119,3069b,36,2,f +6119,3622,0,2,f +6119,3626cpr0498,14,1,f +6119,3626cpr1664,14,1,f +6119,3660,4,6,f +6119,3665,4,2,f +6119,3666,0,2,f +6119,3710,1,2,f +6119,3795,15,4,f +6119,3795,72,1,f +6119,3795,0,1,f +6119,3821,0,1,f +6119,3822,0,1,f +6119,3823,40,1,f +6119,3829c01,4,1,f +6119,3899,15,1,f +6119,3941,15,1,f +6119,3958,15,1,f +6119,4006,0,1,f +6119,4032a,2,1,f +6119,4032a,4,1,f +6119,4070,4,4,f +6119,4081b,15,2,f +6119,4488,71,4,f +6119,4599b,14,2,f +6119,4599b,14,2,t +6119,4624,71,2,f +6119,4624,71,1,t +6119,47457,1,1,f +6119,48336,4,1,f +6119,50745,4,4,f +6119,50861,0,4,f +6119,50862,297,4,f +6119,50950,0,2,f +6119,52031,0,1,f +6119,52037,72,1,f +6119,6014b,71,4,f +6119,60212,4,1,f +6119,60481,0,2,f +6119,6091,72,2,f +6119,6179,71,2,f +6119,63082,0,1,f +6119,63864,71,4,f +6119,63868,15,1,f +6119,63965,15,1,f +6119,6636,71,2,f +6119,86208,72,2,f +6119,87079,0,1,f +6119,87414,0,2,f +6119,87580,15,3,f +6119,87697,0,4,f +6119,88072,0,2,f +6119,88930,0,1,f +6119,89801,71,1,f +6119,92583,40,1,f +6119,970c00,0,2,f +6119,973pr2930c01,0,2,f +6119,98138,36,2,f +6119,98138,36,1,t +6120,3001,4,2,f +6120,3001,15,2,f +6120,3001,14,2,f +6120,3001,1,2,f +6120,3001,2,2,f +6120,3001,0,2,f +6120,3002,14,4,f +6120,3002,2,2,f +6120,3002,15,4,f +6120,3002,1,2,f +6120,3002,4,2,f +6120,3002,0,2,f +6120,3003,15,8,f +6120,3003,2,6,f +6120,3003,0,6,f +6120,3003,33,8,f +6120,3003,4,6,f +6120,3003,36,8,f +6120,3003,1,6,f +6120,3003,14,6,f +6120,3004,15,10,f +6120,3004,0,10,f +6120,3004,2,8,f +6120,3004,4,6,f +6120,3004,14,8,f +6120,3004,1,6,f +6120,3005,1,8,f +6120,3005,15,8,f +6120,3005,4,8,f +6120,3005,0,8,f +6120,3005pe1,14,2,f +6120,3010,14,2,f +6120,3010,2,2,f +6120,3010,15,2,f +6120,3020,0,2,f +6120,3020,15,2,f +6120,3021,15,2,f +6120,3022,0,2,f +6120,3022,15,2,f +6120,3039,36,2,f +6120,3039,33,2,f +6120,3040b,14,2,f +6120,3065,36,6,f +6120,3065,33,6,f +6120,3665,14,2,f +6121,2446px5,2,1,f +6121,2447,42,1,f +6121,30027,7,2,f +6121,30028,0,2,f +6121,3034,14,1,f +6121,3062b,8,2,f +6121,3626bp6f,14,1,f +6121,3829c01,7,1,f +6121,3839b,7,1,f +6121,4070,2,2,f +6121,4600,7,2,f +6121,6014,7,2,f +6121,6015,0,2,f +6121,6215,2,1,f +6121,970c00,2,1,f +6121,973pb0013c01,15,1,f +6125,196926,9999,1,t +6125,3001,0,1,f +6125,3002,0,9,f +6125,3003,0,4,f +6125,3004,4,8,f +6125,3004,0,41,f +6125,3005,0,14,f +6125,3006,4,2,f +6125,3009,0,4,f +6125,3009,1,12,f +6125,3010,15,3,f +6125,3010,4,2,f +6125,3010,0,6,f +6125,3020,7,1,f +6125,3020,0,6,f +6125,3020,4,1,f +6125,3022,0,4,f +6125,3023,4,2,f +6125,3023,0,6,f +6125,3024,0,2,f +6125,3027,0,2,f +6125,3028,7,1,f +6125,3031,0,2,f +6125,3038,0,6,f +6125,3039,0,3,f +6125,3039pc4,0,1,f +6125,3040b,4,2,f +6125,3068b,7,4,f +6125,3068b,0,1,f +6125,3069b,7,4,f +6125,3070b,15,2,f +6125,3229b,7,16,f +6125,3230b,7,16,f +6125,3298,0,2,f +6125,3298,7,8,f +6125,3581,0,2,f +6125,3582,0,2,f +6125,3622,1,8,f +6125,3624,4,2,f +6125,3626apr0001,14,5,f +6125,3633,14,4,f +6125,3660,4,10,f +6125,3660,0,8,f +6125,3665,0,20,f +6125,3665,4,4,f +6125,3666,0,3,f +6125,3666,4,8,f +6125,3710,0,8,f +6125,3710,7,1,f +6125,3710,4,5,f +6125,3795,0,7,f +6125,3832,0,2,f +6125,3900,7,1,f +6125,3901,0,1,f +6125,3901,6,1,f +6125,3941,0,3,f +6125,3956,0,1,f +6125,4022,4,4,f +6125,4023,0,6,f +6125,4032a,4,1,f +6125,4033,4,8,f +6125,4034,47,8,f +6125,4035,0,6,f +6125,4035,4,4,f +6125,4036,47,10,f +6125,4070,0,2,f +6125,4070,4,2,f +6125,4079,14,4,f +6125,4083,0,1,f +6125,4150,0,1,f +6125,4166,8,32,f +6125,4175,4,2,f +6125,4178,4,1,f +6125,4180c04,4,7,f +6125,4181,0,1,f +6125,4181p05,4,2,f +6125,4182,0,1,f +6125,4182p05,4,2,f +6125,4183,47,6,f +6125,4449,15,1,f +6125,4449,6,2,f +6125,4509,7,4,f +6125,4509,0,1,f +6125,4530,0,1,f +6125,6141,47,4,f +6125,6141,36,2,f +6125,73092,0,6,f +6125,7715stk01,9999,1,t +6125,970c00,1,3,f +6125,970c00,7,1,f +6125,970c00,4,1,f +6125,973c01,15,1,f +6125,973c07,1,1,f +6125,973c18,0,1,f +6125,973p18c01,1,1,f +6125,973p26c01,1,1,f +6125,x461b,4,2,f +6127,3001a,4,16,f +6127,3002a,4,7,f +6127,3003,4,12,f +6127,3004,4,6,f +6127,3006,4,2,f +6127,3007,4,2,f +6129,3001a,47,1,f +6129,3004,0,3,f +6129,3010p31,0,2,f +6129,3010pb035e,4,1,f +6129,3020,4,1,f +6129,3021,4,2,f +6129,3023,4,1,f +6129,3035,0,1,f +6129,3040a,0,2,f +6129,3068a,4,1,f +6129,3137c01,0,1,f +6129,3137c02,0,1,f +6129,3139,0,2,f +6129,3324c01,4,1,f +6129,7b,0,2,f +6130,6171pr02,15,1,f +6130,6176,17,1,f +6130,6185,5,1,f +6130,6204,15,1,f +6130,skirt01,17,1,f +6131,11089,0,2,f +6131,11090,0,1,f +6131,11097,179,2,f +6131,11100,15,2,f +6131,11127,41,1,f +6131,11203,72,1,f +6131,11212,72,2,f +6131,11477,308,1,f +6131,12549pr0001,15,1,f +6131,12825,15,2,f +6131,12825,0,2,f +6131,15065pr0002,379,1,f +6131,15068,0,2,f +6131,15071,0,1,f +6131,15082,0,2,f +6131,15279,10,2,f +6131,16380,9999,1,t +6131,2412b,85,6,f +6131,2419,72,1,f +6131,2420,0,1,f +6131,2423,326,1,f +6131,2445,72,1,f +6131,2653,0,2,f +6131,3004,27,1,f +6131,3021,0,5,f +6131,3022,27,1,f +6131,3023,72,3,f +6131,3031,71,2,f +6131,3031,2,1,f +6131,30365,72,1,f +6131,30374,297,1,f +6131,3040b,70,2,f +6131,3176,71,8,f +6131,32005a,72,2,f +6131,32014,0,2,f +6131,32028,71,1,f +6131,32059,71,1,f +6131,3626cpr1124,212,1,f +6131,3626cpr1324,379,1,f +6131,3673,71,2,f +6131,3673,71,1,t +6131,3710,0,3,f +6131,3794b,27,2,f +6131,3937,71,1,f +6131,41854,85,1,f +6131,43712,85,1,f +6131,43713,72,1,f +6131,43722,0,1,f +6131,43723,0,1,f +6131,44567a,72,1,f +6131,4510,0,2,f +6131,4595,0,1,f +6131,4740,35,1,f +6131,48729b,72,1,t +6131,48729b,72,1,f +6131,50950,0,4,f +6131,52107,71,1,f +6131,53454,41,1,f +6131,53454,41,1,t +6131,54200,0,1,t +6131,54200,0,3,f +6131,55706,0,4,f +6131,59900,35,1,f +6131,60478,0,1,f +6131,6134,0,1,f +6131,6141,35,2,t +6131,6141,35,9,f +6131,64567,297,2,f +6131,64567,297,1,t +6131,64644,0,3,f +6131,6628,0,4,f +6131,6636,85,3,f +6131,87079,72,1,f +6131,87580,10,1,f +6131,88072,19,1,f +6131,92280,0,3,f +6131,93273,27,2,f +6131,93606,0,1,f +6131,970c00pr0568,15,1,f +6131,970c00pr0588,379,1,f +6131,973pr0650c01,71,1,f +6131,973pr2536c01,379,1,f +6131,98138,41,1,t +6131,98138,41,3,f +6131,98139,297,1,t +6131,98139,297,1,f +6131,99206,71,2,f +6132,11133,5,1,f +6132,11133pb01,322,1,f +6132,11197,322,1,f +6132,11197,85,2,f +6132,11344,4,2,f +6132,2302,27,2,f +6132,2302,4,2,f +6132,3011,5,1,f +6132,3011,10,2,f +6132,3011,4,1,f +6132,3011,14,1,f +6132,3011,191,1,f +6132,3011,1,2,f +6132,3011,25,1,f +6132,31110,85,2,f +6132,31110pb070,14,2,f +6132,31110pb071,27,2,f +6132,31213,191,1,f +6132,31213,27,1,f +6132,4198pb18,14,2,f +6132,93607,322,1,f +6132,98220,4,2,f +6132,98224,25,1,f +6132,98224,10,1,f +6132,98252,5,2,f +6134,5102c200,7,1,f +6134,5102c450,8,1,f +6135,64227,71,1,f +6136,11303,272,1,f +6136,15068pr0007,15,1,f +6136,15573,0,1,f +6136,2412b,72,3,f +6136,30031,72,1,f +6136,3021,0,1,f +6136,3021,1,1,f +6136,3022,4,1,f +6136,3023,15,3,f +6136,3024,15,2,f +6136,3024,15,1,t +6136,3069b,15,2,f +6136,3626cpr0914,14,1,f +6136,3626cpr1350,14,1,f +6136,3710,15,1,f +6136,3937,1,1,f +6136,3938,71,1,f +6136,3957a,71,1,f +6136,4081b,71,2,f +6136,41334,0,1,f +6136,43713,72,1,f +6136,47755,0,1,f +6136,51739,15,1,f +6136,56891,0,1,f +6136,59900,33,1,f +6136,6141,33,2,f +6136,6141,33,1,t +6136,61482,71,1,f +6136,61482,71,1,t +6136,61678,0,2,f +6136,72454,72,1,f +6136,85984,15,1,f +6136,87585,70,1,f +6136,88072,14,1,f +6136,970c00,272,1,f +6136,970c00pr0985,15,1,f +6136,973pr3208c01,212,1,f +6136,973pr3210,25,1,f +6136,97895,14,1,f +6136,98313,72,1,f +6136,99206,71,1,f +6137,12825,15,1,f +6137,2412b,15,1,f +6137,2431,33,1,f +6137,2540,14,2,f +6137,30031,72,1,f +6137,3020,72,1,f +6137,3023,15,1,f +6137,3794b,71,1,f +6137,44674,4,2,f +6137,4600,71,2,f +6139,2974c01,14,1,f +6140,3185,15,13,f +6140,3186,15,2,f +6140,3187,15,2,f +6141,3647,7,4,f +6141,3648a,7,4,f +6141,3649,7,1,f +6141,3650a,7,1,f +6141,3651,7,6,f +6141,3652,7,2,f +6141,3673,7,15,f +6141,3673,7,2,t +6141,3700,14,6,f +6141,3701,14,4,f +6141,3702,14,4,f +6141,3703,14,4,f +6141,3704,0,2,f +6141,3705,0,2,f +6141,3706,0,2,f +6141,3707,0,2,f +6141,3708,0,1,f +6141,3709,14,2,f +6141,3713,7,10,f +6141,3713,7,2,t +6141,3737,0,1,f +6141,3738,14,2,f +6141,3743,7,2,f +6141,9244,7,1,f +6144,23306,383,1,f +6144,23306,383,1,t +6144,2456,0,1,f +6144,3004,8,1,f +6144,3005,0,4,f +6144,3023,8,2,f +6144,30366ps1,40,1,f +6144,30368,0,1,f +6144,30374,36,1,f +6144,30374,0,1,f +6144,30381,0,1,f +6144,3068b,0,1,f +6144,3069bpr0086,7,2,f +6144,3626bps7,7,1,f +6144,3626bpx34,14,1,f +6144,3679,7,1,f +6144,3680,0,1,f +6144,3958,8,1,f +6144,4460a,0,2,f +6144,4854,0,1,f +6144,50231,0,2,f +6144,6636,0,1,f +6144,970c00,0,2,f +6144,973ps7c01,0,1,f +6144,973px71c01,0,1,f +6145,3651,7,10,f +6145,3652,7,2,f +6145,3713,7,20,f +6145,3713,7,1,t +6146,10169,84,1,f +6146,10201,0,1,f +6146,10247,72,8,f +6146,10288,308,3,f +6146,10884,28,8,f +6146,11203,19,4,f +6146,11211,4,14,f +6146,11212,71,3,f +6146,11261,308,1,f +6146,11477,326,8,f +6146,12825,72,2,f +6146,12825,0,6,f +6146,14210,0,4,f +6146,14210,0,2,t +6146,14226c11,0,2,f +6146,14226c41,0,1,f +6146,14295,28,1,f +6146,2339,70,21,f +6146,2357,70,46,f +6146,2412b,72,1,f +6146,2417,288,33,f +6146,2419,28,2,f +6146,2420,70,6,f +6146,2420,2,3,f +6146,2423,326,21,f +6146,2431,308,4,f +6146,2431,70,10,f +6146,2436,0,1,f +6146,2444,72,8,f +6146,2449,70,6,f +6146,2450,28,4,f +6146,2454a,19,2,f +6146,2456,19,1,f +6146,2460,0,3,f +6146,2462,19,9,f +6146,2489,308,2,f +6146,2489,70,1,f +6146,2524,70,1,f +6146,2540,0,4,f +6146,2540,19,18,f +6146,2570,148,1,f +6146,2653,0,2,f +6146,2654,19,5,f +6146,2654,0,1,f +6146,2780,0,3,t +6146,2780,0,16,f +6146,2817,0,5,f +6146,30000,72,8,f +6146,3001,28,9,f +6146,3002,70,5,f +6146,3003,28,4,f +6146,3004,19,1,f +6146,3009,70,2,f +6146,30093,288,8,f +6146,30126,72,2,t +6146,30126,72,2,f +6146,30136,484,54,f +6146,30136,19,8,f +6146,30136,28,11,f +6146,30137,70,18,f +6146,30176,2,15,f +6146,30187e,70,1,f +6146,3020,70,31,f +6146,3020,28,10,f +6146,3020,19,2,f +6146,3021,288,3,f +6146,3022,70,11,f +6146,3023,28,24,f +6146,3023,25,10,f +6146,3023,4,4,f +6146,3023,70,10,f +6146,3023,14,4,f +6146,3023,1,4,f +6146,3023,19,4,f +6146,3023,27,9,f +6146,30236,19,2,f +6146,30237a,70,3,f +6146,30237b,70,3,f +6146,30238,0,1,f +6146,3024,28,1,t +6146,3024,28,2,f +6146,30259,70,2,f +6146,3029,2,2,f +6146,3030,70,9,f +6146,3032,70,1,f +6146,3034,70,1,f +6146,3034,0,8,f +6146,3035,28,1,f +6146,3035,70,4,f +6146,30350b,84,1,f +6146,30350b,70,1,f +6146,30350b,0,1,f +6146,3036,28,4,f +6146,30361dps1,15,1,f +6146,30362,15,2,f +6146,30363,70,8,f +6146,30367c,0,3,f +6146,30367cpr0011,179,1,f +6146,30369,15,2,f +6146,3037,70,1,f +6146,30374,35,1,f +6146,30377,19,18,f +6146,30377,308,5,t +6146,30377,19,1,t +6146,30377,308,71,f +6146,30383,0,7,f +6146,3039,70,6,f +6146,3039,19,15,f +6146,30408pr0002,15,2,f +6146,30408pr0003,15,1,f +6146,3040b,19,2,f +6146,3040b,308,50,f +6146,30414,19,8,f +6146,3045,70,6,f +6146,30480ps0,297,1,f +6146,30483pr01,70,1,f +6146,30553,0,7,f +6146,30565,70,2,f +6146,30565,28,4,f +6146,30565,2,2,f +6146,3062b,71,10,f +6146,3062b,19,14,f +6146,3062b,70,40,f +6146,3062b,47,1,f +6146,3068b,28,43,f +6146,3068b,70,14,f +6146,3069b,70,10,f +6146,3069b,28,8,f +6146,3070b,2,3,t +6146,3070b,70,2,f +6146,3070b,70,1,t +6146,3070b,2,24,f +6146,32000,72,5,f +6146,32013,320,2,f +6146,32028,28,2,f +6146,32034,320,2,f +6146,32062,4,9,f +6146,32064a,320,3,f +6146,32123b,71,1,t +6146,32123b,71,2,f +6146,32124,70,1,f +6146,32324,71,3,f +6146,3245c,19,6,f +6146,32530,0,3,f +6146,32531,0,3,f +6146,32532,71,2,f +6146,32556,19,3,f +6146,33078,4,2,f +6146,3308,484,4,f +6146,33172,25,2,f +6146,33183,10,6,f +6146,33183,10,2,t +6146,33291,70,1,t +6146,33291,70,1,f +6146,3455,70,2,f +6146,3460,308,4,f +6146,3622,70,15,f +6146,3622,19,1,f +6146,3623,70,3,f +6146,3626b,0,3,f +6146,3626bpr0854,78,1,f +6146,3626bpr0922,0,2,f +6146,3626cpr0648,78,1,f +6146,3626cpr0655,78,1,f +6146,3626cpr0922,0,2,f +6146,3626cpr0979,78,1,f +6146,3626cpr1183,78,1,f +6146,3660,308,16,f +6146,3660,19,1,f +6146,3665,70,18,f +6146,3666,70,13,f +6146,3673,71,3,t +6146,3673,71,12,f +6146,3678b,70,6,f +6146,3700,19,4,f +6146,3700,70,2,f +6146,3701,15,2,f +6146,3701,70,3,f +6146,3703,72,4,f +6146,3706,0,1,f +6146,3707,0,2,f +6146,3708,0,1,f +6146,3710,28,9,f +6146,3710,70,33,f +6146,3747b,19,1,f +6146,3794a,72,3,f +6146,3794a,70,8,f +6146,3794b,72,3,f +6146,3794b,70,8,f +6146,3795,28,9,f +6146,3795,70,2,f +6146,3830,70,1,f +6146,3831,70,1,f +6146,3832,70,3,f +6146,3849,0,2,f +6146,3901,70,1,f +6146,3901,28,1,f +6146,3937,71,4,f +6146,3941,70,8,f +6146,3960,47,1,f +6146,4032a,19,3,f +6146,4032a,70,2,f +6146,4032a,484,3,f +6146,4032b,19,3,f +6146,4032b,70,2,f +6146,4070,70,13,f +6146,4081b,19,2,f +6146,4085c,19,9,f +6146,41669,0,2,f +6146,41677,72,1,f +6146,41879a,28,1,f +6146,41879a,72,1,f +6146,41879a,71,1,f +6146,41879a,19,1,f +6146,41879a,70,1,f +6146,42022,308,20,f +6146,4274,71,3,f +6146,4274,71,2,t +6146,4286,70,16,f +6146,4287,70,11,f +6146,43093,1,3,f +6146,4341,0,1,f +6146,4349,0,1,f +6146,43710,70,11,f +6146,43711,70,11,f +6146,44300,0,2,f +6146,44301a,72,1,f +6146,44302a,72,1,f +6146,4460b,70,41,f +6146,44728,0,4,f +6146,4477,70,2,f +6146,4477,0,2,f +6146,4497,308,2,t +6146,4497,308,3,f +6146,4499,70,2,f +6146,4510,19,1,f +6146,4519,71,1,f +6146,45590,0,1,f +6146,4599b,0,2,t +6146,4599b,0,4,f +6146,4600,0,1,f +6146,4740,28,2,f +6146,4740pr0006,28,3,f +6146,47456,70,1,f +6146,47457,72,3,f +6146,47847,70,1,f +6146,48336,0,2,f +6146,48336,19,4,f +6146,4865b,19,2,f +6146,4865b,28,3,f +6146,48723,70,3,f +6146,50305,28,2,f +6146,50950,308,10,f +6146,53451,15,1,f +6146,53451,15,1,t +6146,54200,0,2,t +6146,54200,70,1,t +6146,54200,308,3,t +6146,54200,70,4,f +6146,54200,308,16,f +6146,54200,0,6,f +6146,55236,70,6,f +6146,55236,288,4,f +6146,55236,288,1,t +6146,57899,0,2,f +6146,58247,0,2,f +6146,59443,70,10,f +6146,59900,19,8,f +6146,6003,28,14,f +6146,60470a,71,1,f +6146,60470a,0,2,f +6146,60471,15,6,f +6146,60474,72,1,f +6146,60475b,84,3,f +6146,60476,0,4,f +6146,60477,308,27,f +6146,60478,0,2,f +6146,60481,19,16,f +6146,60481,308,23,f +6146,60483,72,2,f +6146,60485,71,1,f +6146,60581,28,5,f +6146,60596,19,1,f +6146,60598,14,5,f +6146,60599,15,1,f +6146,6063,72,8,f +6146,6091,19,8,f +6146,6106,28,2,f +6146,61252,19,3,f +6146,61252,0,2,f +6146,6126a,182,11,f +6146,6134,0,5,f +6146,6141,70,5,f +6146,6141,71,2,t +6146,6141,182,1,t +6146,6141,19,16,f +6146,6141,0,5,f +6146,6141,36,1,t +6146,6141,71,6,f +6146,6141,182,2,f +6146,6141,297,1,t +6146,6141,70,1,t +6146,6141,297,4,f +6146,6141,0,2,t +6146,6141,19,3,t +6146,6141,36,2,f +6146,61485,0,3,f +6146,6215,14,2,f +6146,6215,1,2,f +6146,6215,4,2,f +6146,6232,19,4,f +6146,63965,70,2,f +6146,64567,80,1,t +6146,64567,80,1,f +6146,64644,308,13,f +6146,64647,182,9,f +6146,64647,182,3,t +6146,64803pr0001,28,2,f +6146,64805pr0001,71,1,f +6146,64805pr0005,70,1,f +6146,64805pr0006,28,1,f +6146,64951,70,1,f +6146,6628,0,4,f +6146,71155,0,1,f +6146,75937,0,1,f +6146,75c16,70,3,f +6146,75c28,70,2,t +6146,75c28,70,8,f +6146,85984,19,2,f +6146,85984,72,4,f +6146,85984,28,2,f +6146,87079,70,5,f +6146,87087,378,7,f +6146,87580,28,16,f +6146,87620,28,8,f +6146,87994,70,22,f +6146,88072,0,2,f +6146,88072,72,2,f +6146,88289,308,2,f +6146,89523,2,7,f +6146,90202,0,1,f +6146,90981,15,1,f +6146,92438,28,1,f +6146,92582,15,6,f +6146,92590,28,1,f +6146,92690,70,3,f +6146,92692,0,2,f +6146,92738,0,3,f +6146,92750pr0001,19,1,f +6146,92750pr0002,72,1,f +6146,92950,70,2,f +6146,92950,19,8,f +6146,93273,70,4,f +6146,96874,25,1,t +6146,970c00,70,1,f +6146,970c00,378,2,f +6146,970c00,297,1,f +6146,970c00,0,1,f +6146,970c00pr0033,70,1,f +6146,970c11pr0500,0,2,f +6146,970c90pr0562,78,1,f +6146,970x026,15,2,f +6146,973c32,70,2,f +6146,973c47,71,1,f +6146,973c55,19,1,f +6146,973c60,72,1,f +6146,973c62,28,1,f +6146,973pr1985c01,28,1,f +6146,973pr1986c01,15,2,f +6146,973pr1987c01,297,1,f +6146,973pr2015c01,378,1,f +6146,973pr2301c01,0,1,f +6146,973pr2337c01,15,2,f +6146,973pr2460c01,0,1,f +6146,973pr2461c01,28,1,f +6146,98108,0,1,f +6146,98284,70,1,f +6146,98313,70,4,f +6146,98560,308,29,f +6146,99206,71,6,f +6146,99207,71,4,f +6146,99207,4,6,f +6146,99774,72,2,f +6146,99780,0,1,f +6146,99784,47,1,f +6148,2340,0,2,f +6148,2412b,22,1,t +6148,2412b,22,3,f +6148,2413,8,1,f +6148,2419,8,1,f +6148,2555,7,1,f +6148,2555,7,1,t +6148,2654,7,1,f +6148,2744,0,2,f +6148,3001,14,1,f +6148,30183,0,1,f +6148,30360,0,2,f +6148,30365,7,2,f +6148,30389a,14,2,f +6148,3039,8,2,f +6148,3298,0,1,f +6148,3622,0,2,f +6148,3626bpx86,14,1,f +6148,3666,7,2,f +6148,3710,14,3,f +6148,3829c01,7,1,f +6148,3937,14,1,f +6148,3938,7,1,f +6148,3942c,7,2,f +6148,3957a,42,2,f +6148,3960,42,1,f +6148,4070,7,2,f +6148,4081b,0,2,f +6148,4485,15,1,f +6148,4589,42,2,f +6148,4589,42,1,t +6148,4623,0,1,f +6148,4855,0,1,f +6148,4859,14,1,f +6148,6126a,57,1,t +6148,6126a,57,2,f +6148,6141,0,2,t +6148,6141,42,2,f +6148,6141,42,2,t +6148,6141,0,1,f +6148,6152,33,1,f +6148,6772stk01,9999,2,t +6148,970c00pb008,0,1,f +6148,973px139c01,0,1,f +6149,27bc01,4,19,f +6149,27bc01,15,19,f +6150,30028,0,4,f +6150,3941,15,1,f +6150,4032a,4,1,f +6150,4032a,15,1,f +6150,4032a,2,1,f +6150,4599b,14,1,t +6150,4599b,14,1,f +6150,74967,15,4,f +6151,10247,72,12,f +6151,10314,70,2,f +6151,11153,70,1,f +6151,11153,72,8,f +6151,11211,71,1,f +6151,11212,71,4,f +6151,12825,15,1,f +6151,12825,71,1,t +6151,12825,72,4,f +6151,12895pr0001b,308,1,f +6151,14769,72,1,f +6151,15068,0,2,f +6151,15303,36,3,f +6151,15400,72,2,f +6151,15462,28,1,f +6151,15535,72,2,f +6151,15571,71,1,f +6151,15573,15,1,f +6151,15573,71,5,f +6151,2357,70,12,f +6151,2412b,72,4,f +6151,2412b,70,12,f +6151,2431,70,4,f +6151,2431,72,3,f +6151,2431,71,4,f +6151,2432,70,2,f +6151,2445,70,7,f +6151,2476a,71,4,f +6151,2540,72,2,f +6151,2555,71,5,f +6151,2653,71,10,f +6151,2653,0,2,f +6151,2654,0,24,f +6151,2780,0,5,t +6151,2780,0,37,f +6151,2877,70,4,f +6151,298c02,4,1,t +6151,298c02,4,1,f +6151,3001,19,1,f +6151,3003,71,3,f +6151,3003,70,6,f +6151,3004,70,4,f +6151,3004,0,2,f +6151,3004,71,2,f +6151,3005,70,2,f +6151,3008,0,2,f +6151,3009,70,4,f +6151,3010,72,3,f +6151,30162,72,4,f +6151,30165,70,2,f +6151,3020,71,5,f +6151,3020,72,7,f +6151,3021,72,2,f +6151,3021,0,1,f +6151,3021,70,11,f +6151,3021,71,2,f +6151,3022,71,2,f +6151,3022,72,2,f +6151,3022,0,3,f +6151,3022,19,2,f +6151,3023,70,23,f +6151,3023,19,2,f +6151,3023,0,12,f +6151,3024,70,1,t +6151,3024,72,3,f +6151,3024,72,1,t +6151,3024,70,2,f +6151,30249,70,2,f +6151,3030,70,1,f +6151,3031,70,2,f +6151,3032,70,1,f +6151,3032,72,6,f +6151,3034,72,2,f +6151,3034,70,4,f +6151,3035,72,1,f +6151,3036,70,4,f +6151,30374,35,1,f +6151,30374,70,8,f +6151,30374,41,1,f +6151,30375,19,7,f +6151,30375,15,1,f +6151,30375ps2,1,1,f +6151,30376,19,8,f +6151,30377,19,2,t +6151,30377,19,9,f +6151,30377,15,2,f +6151,30377,15,1,t +6151,30378,19,8,f +6151,3039,0,5,f +6151,3040b,71,4,f +6151,3040b,15,2,f +6151,3040b,308,4,f +6151,3040b,70,4,f +6151,30410,70,1,f +6151,30414,19,2,f +6151,30414,0,6,f +6151,3044b,72,2,f +6151,3045,70,2,f +6151,30602,70,1,f +6151,3062b,71,2,f +6151,3068b,70,3,f +6151,3069b,70,2,f +6151,3070b,70,2,f +6151,3070b,70,1,t +6151,32000,72,2,f +6151,32001,0,7,f +6151,32016,71,1,f +6151,32018,0,4,f +6151,32028,71,8,f +6151,32054,4,11,f +6151,32062,4,8,f +6151,32064a,71,1,f +6151,32064a,0,6,f +6151,32064a,72,2,f +6151,32123b,14,2,t +6151,32123b,14,4,f +6151,32140,72,4,f +6151,32270,0,2,f +6151,32316,72,2,f +6151,3245b,19,4,f +6151,32523,72,2,f +6151,32523,71,4,f +6151,32524,0,5,f +6151,32529,0,1,f +6151,32530,0,4,f +6151,32532,71,3,f +6151,3298,70,12,f +6151,3460,70,4,f +6151,3460,71,2,f +6151,3460,72,1,f +6151,3622,70,6,f +6151,3623,70,3,f +6151,3623,72,4,f +6151,3626cpr1517,78,1,f +6151,3626cpr1518,84,1,f +6151,3659,0,1,f +6151,3660,72,2,f +6151,3660,71,2,f +6151,3665,72,3,f +6151,3666,0,4,f +6151,3666,72,4,f +6151,3666,70,1,f +6151,3678b,72,2,f +6151,3678b,70,16,f +6151,3685,70,6,f +6151,3700,70,2,f +6151,3701,72,1,f +6151,3701,0,4,f +6151,3703,0,2,f +6151,3703,72,1,f +6151,3705,0,2,f +6151,3709,15,1,f +6151,3710,71,1,f +6151,3710,0,8,f +6151,3710,70,6,f +6151,3713,4,3,f +6151,3713,4,1,t +6151,3743,0,4,f +6151,3749,19,6,f +6151,3795,308,3,f +6151,3795,70,10,f +6151,3839b,72,2,f +6151,3894,72,2,f +6151,3895,0,2,f +6151,3901,484,1,f +6151,3958,70,1,f +6151,3960,72,1,f +6151,3961,70,1,f +6151,4006,0,1,f +6151,4032a,70,6,f +6151,4032a,15,3,f +6151,40490,71,4,f +6151,4070,72,4,f +6151,4162,71,3,f +6151,4162,70,6,f +6151,41769,70,3,f +6151,41770,70,3,f +6151,4185,47,6,f +6151,42610,71,2,f +6151,4274,71,4,t +6151,4274,71,37,f +6151,43093,1,6,f +6151,4349,0,2,f +6151,43857,71,2,f +6151,43898,47,1,f +6151,44358,70,2,f +6151,44359,72,4,f +6151,4460b,70,6,f +6151,44676,0,2,f +6151,4477,70,4,f +6151,4477,72,2,f +6151,4519,71,3,f +6151,4522,0,1,f +6151,45590,0,1,f +6151,4697b,71,2,f +6151,4697b,71,1,t +6151,4733,72,3,f +6151,47457,72,2,f +6151,49668,15,2,f +6151,50231,70,2,f +6151,50950,0,1,f +6151,54200,70,3,f +6151,54200,70,2,t +6151,55013,72,1,f +6151,58176,15,1,f +6151,58247,0,7,f +6151,59230,19,7,f +6151,59230,19,1,t +6151,59426,72,1,f +6151,59443,72,1,f +6151,60476,71,2,f +6151,60476,0,4,f +6151,60477,0,2,f +6151,60478,72,10,f +6151,60481,308,8,f +6151,60581,72,1,f +6151,60897,71,6,f +6151,6112,72,1,f +6151,6141,72,1,t +6151,6141,70,5,f +6151,6141,72,4,f +6151,6141,70,1,t +6151,62462,0,3,f +6151,63864,71,3,f +6151,64567,80,2,f +6151,64567,0,2,f +6151,64567,80,1,t +6151,64567,0,1,t +6151,6541,72,4,f +6151,6541,19,4,f +6151,6558,1,10,f +6151,6587,28,4,f +6151,6636,0,2,f +6151,6636,72,4,f +6151,6636,70,7,f +6151,87079,70,4,f +6151,87544,71,1,f +6151,87552,47,1,f +6151,87552,70,2,f +6151,90194,70,1,f +6151,91988,71,2,f +6151,92279,70,2,f +6151,92280,71,8,f +6151,92738,0,1,f +6151,93061,15,1,t +6151,93061,15,1,f +6151,93273,70,10,f +6151,93273,71,6,f +6151,93604,70,1,f +6151,96874,25,1,t +6151,970c00pr0510,19,1,f +6151,970c00pr0729,70,1,f +6151,970c00pr0730,14,1,f +6151,973pr1802c01,19,1,f +6151,973pr2095c01,19,1,f +6151,973pr2789c01,70,1,f +6151,98138,34,2,f +6151,98138,34,1,t +6151,98286,71,2,f +6151,98560,308,5,f +6151,99206,0,4,f +6151,99207,71,2,f +6151,99780,72,5,f +6151,99780,0,4,f +6151,99781,71,8,f +6152,46296,57,1,f +6152,51035,57,4,f +6152,51035,45,4,f +6152,51036,57,4,f +6152,51036,45,4,f +6152,clik02,9999,1,f +6152,clikits004,45,1,t +6152,clikits004,45,10,f +6152,clikits004,57,6,f +6152,clikits004,182,4,f +6152,clikits005,57,6,f +6152,clikits005,45,10,f +6152,clikits005,182,4,f +6152,clikits018,45,1,f +6152,clikits038,57,1,f +6152,clikits038,45,1,f +6152,clikits085,45,1,f +6152,clikits086pb05,57,1,f +6152,clikits086pb06,45,1,f +6152,clikits111,47,3,f +6156,14pb04,15,1,f +6156,14pb05,15,1,f +6156,649pb04,15,1,f +6156,649pb10,15,1,f +6156,675pr01,15,1,f +6156,7284,15,1,f +6156,739p01,15,2,f +6156,80039,15,1,f +6156,80045,15,1,f +6156,81294,15,1,f +6159,12825,71,2,f +6159,2412b,0,1,f +6159,2462,71,2,f +6159,2653,71,6,f +6159,3001,71,2,f +6159,3003,72,1,f +6159,3004,71,2,f +6159,30044,71,5,f +6159,30045,0,1,f +6159,3005,182,1,f +6159,3005,70,2,f +6159,3005,71,14,f +6159,3005,33,1,f +6159,30055,0,1,f +6159,3009,71,2,f +6159,3021,70,8,f +6159,3022,72,6,f +6159,3022,70,2,f +6159,30229,72,2,f +6159,3023,72,3,f +6159,3024,71,2,f +6159,3031,1,3,f +6159,3034,70,1,f +6159,3048c,71,1,f +6159,3062b,71,2,f +6159,3062b,46,1,f +6159,3068bprg0001,19,1,f +6159,3068bprg0002,19,2,f +6159,3068bprg0003,19,2,f +6159,3068bprg0004,0,1,f +6159,3070b,70,1,t +6159,3070b,1,1,t +6159,3070b,70,2,f +6159,3070b,15,1,t +6159,3070b,15,2,f +6159,3070b,1,1,f +6159,32028,72,2,f +6159,33057,484,1,f +6159,33320,72,1,f +6159,3659,71,2,f +6159,3710,28,1,f +6159,3710,4,1,f +6159,3710,71,1,f +6159,3710,14,1,f +6159,3794a,70,13,f +6159,3794a,1,2,f +6159,3795,72,4,f +6159,3958,0,1,f +6159,3958,72,7,f +6159,3958,2,2,f +6159,41539,72,1,f +6159,42446,70,2,f +6159,4495b,4,2,f +6159,4740,1,1,f +6159,47457,297,2,f +6159,54200,1,1,t +6159,54200,1,2,f +6159,59900,70,2,f +6159,59900,36,1,f +6159,59900,297,12,f +6159,59900,4,17,f +6159,60475a,71,2,f +6159,6141,14,1,f +6159,6141,1,1,t +6159,6141,297,1,t +6159,6141,25,1,t +6159,6141,1,2,f +6159,6141,14,1,t +6159,6141,297,2,f +6159,6141,71,1,t +6159,6141,4,1,f +6159,6141,4,1,t +6159,6141,70,1,t +6159,6141,71,2,f +6159,6141,70,10,f +6159,6141,25,1,f +6159,62808,72,4,f +6159,64644,297,4,f +6159,64647,57,3,f +6159,64647,57,1,t +6159,64727,2,2,f +6159,64776pat0001,0,1,f +6159,85080,71,6,f +6159,85863pr0053,14,1,f +6159,85863pr0055,4,1,f +6159,85863pr0056,297,1,f +6159,85863pr0058,2,6,f +6159,85863pr0059,179,1,f +6159,85863pr0060,28,1,f +6159,85863pr0078,148,4,f +6159,86208,71,2,f +6159,87087,72,2,f +6159,87580,2,2,f +6159,87580,4,2,f +6159,87580,10,4,f +6159,87580,70,8,f +6159,87580,71,32,f +6159,87580,72,26,f +6159,92585,4,1,f +6159,94161,70,3,f +6159,94162,72,1,f +6159,95049,72,1,f +6159,95050,72,1,f +6159,95051,72,1,f +6159,95052,72,1,f +6159,95053,72,1,f +6159,95054,72,2,f +6160,2654,0,4,f +6160,2736,71,4,f +6160,2780,0,60,f +6160,2815,0,4,f +6160,2902,0,4,f +6160,2903,15,4,f +6160,2905,72,4,f +6160,3003,2,4,f +6160,3003,0,4,f +6160,3003,71,4,f +6160,3003,4,4,f +6160,3003,1,4,f +6160,3003,15,4,f +6160,3003,14,4,f +6160,3004,71,8,f +6160,3023,71,8,f +6160,3069b,72,2,f +6160,32001,71,4,f +6160,32002,72,8,f +6160,32005a,72,3,f +6160,32009,72,4,f +6160,32013,0,12,f +6160,32014,0,16,f +6160,32015,71,4,f +6160,32016,71,4,f +6160,32018,71,4,f +6160,32034,0,4,f +6160,32039,0,4,f +6160,32054,0,8,f +6160,32062,4,16,f +6160,32064b,72,4,f +6160,32068,0,2,f +6160,32069,0,2,f +6160,32072,0,4,f +6160,32073,71,6,f +6160,32123b,14,20,f +6160,32138,0,4,f +6160,32140,72,6,f +6160,32184,0,4,f +6160,32192,0,4,f +6160,32198,19,4,f +6160,32269,19,4,f +6160,32270,0,4,f +6160,32271,72,4,f +6160,32278,72,8,f +6160,32291,72,4,f +6160,32293,0,2,f +6160,32316,72,6,f +6160,32348,72,16,f +6160,32498,0,4,f +6160,32523,72,8,f +6160,32524,72,8,f +6160,32525,72,6,f +6160,32526,72,4,f +6160,32556,19,16,f +6160,32557,0,4,f +6160,33299a,71,4,f +6160,3460,71,4,f +6160,3626bpr0387,14,1,f +6160,3626cpr1580,14,1,f +6160,3647,72,6,f +6160,3648b,72,4,f +6160,3649,71,4,f +6160,3650c,71,4,f +6160,3666,71,4,f +6160,3673,71,12,f +6160,3700,71,4,f +6160,3701,71,4,f +6160,3702,71,4,f +6160,3705,0,4,f +6160,3706,0,4,f +6160,3707,0,4,f +6160,3708,0,4,f +6160,3709,71,4,f +6160,3710,71,4,f +6160,3713,71,20,f +6160,3737,0,4,f +6160,3738,71,4,f +6160,3743,71,2,f +6160,3749,19,8,f +6160,3894,71,4,f +6160,3895,71,4,f +6160,3941,0,4,f +6160,4019,71,6,f +6160,4032a,72,4,f +6160,40490,72,6,f +6160,41239,72,6,f +6160,41669,25,8,f +6160,41678,72,6,f +6160,4185,71,4,f +6160,42003,72,4,f +6160,4274,71,8,f +6160,43093,1,36,f +6160,44294,71,8,f +6160,44309,0,2,f +6160,44809,71,2,f +6160,4485,4,1,f +6160,4519,71,4,f +6160,45590,0,8,f +6160,4589,15,4,f +6160,4716,71,2,f +6160,48989,71,12,f +6160,50914,135,4,f +6160,53992,0,4,f +6160,54190,47,1,f +6160,55615,71,8,f +6160,55976,0,2,f +6160,56145,71,8,f +6160,57585,71,4,f +6160,59443,0,8,f +6160,60483,72,4,f +6160,60484,72,10,f +6160,60485,71,6,f +6160,6093,0,1,f +6160,61903,71,2,f +6160,62462,0,4,f +6160,63869,71,4,f +6160,64178,71,4,f +6160,64179,71,4,f +6160,6536,71,8,f +6160,6538b,19,2,f +6160,6539,4,2,f +6160,6542a,72,4,f +6160,6553,71,4,f +6160,6558,1,24,f +6160,6573,72,1,f +6160,6575,72,4,f +6160,6587,28,4,f +6160,6588,47,1,f +6160,6589,19,4,f +6160,6628,0,8,f +6160,6630,0,2,f +6160,6632,72,8,f +6160,6641,4,2,f +6160,85543,15,2,f +6160,85544,4,2,f +6160,85545,15,2,f +6160,87082,71,6,f +6160,87083,72,4,f +6160,970c00,15,1,f +6160,970c00,1,1,f +6160,973c01,1,1,f +6160,973c02,4,1,f +6161,2654,72,1,f +6161,3004,4,2,f +6161,30173a,297,1,f +6161,30177,4,1,f +6161,3022,4,1,f +6161,3626bpr0744,14,1,f +6161,4497,148,1,f +6161,4612926,9999,1,f +6161,4612927,9999,1,f +6161,4612928,9999,1,f +6161,4612929,9999,1,f +6161,4612930,9999,1,f +6161,64567,71,1,f +6161,64727,71,2,f +6161,92547pr0004,25,1,f +6161,970c00pr0193,4,1,f +6161,973pr1716c01,4,1,f +6164,3626bpr0695,14,1,f +6164,88646,0,1,f +6164,90388pr0001,2,1,f +6164,90508pr0001,4,1,t +6164,90508pr0001,4,2,f +6164,90542pr0001,84,2,f +6164,970c00,70,1,f +6164,973c52,71,1,f +6165,29540,4,4,f +6165,29540,1,4,f +6165,29540,2,4,f +6165,29540,14,4,f +6165,29540pb01,14,4,f +6165,29541,1,5,f +6165,29541,2,5,f +6165,29541,14,6,f +6165,29541,4,7,f +6165,29541pb01,14,2,f +6165,71727,4,4,f +6165,sbb04,4,3,f +6167,2780,0,4,f +6167,32062,0,4,f +6167,32174,72,5,f +6167,32192,0,1,f +6167,32209,15,1,f +6167,32270,71,4,f +6167,3705,0,2,f +6167,3713,71,2,f +6167,43093,1,2,f +6167,4519,71,2,f +6167,47296,72,4,f +6167,47297,0,2,f +6167,47298,0,2,f +6167,47299,0,2,f +6167,47302,0,1,f +6167,47305,0,1,f +6167,47306,0,1,f +6167,47310,0,2,f +6167,47311,0,2,f +6167,47312,72,1,f +6167,47313,34,1,f +6167,47315,179,2,f +6167,49423,0,1,f +6168,12694,73,1,f +6168,3437,1,1,f +6168,75113pr0002,5,1,f +6170,18674,15,2,f +6170,30361,15,1,f +6170,3062b,14,6,f +6170,4032a,14,2,f +6170,4070,14,2,f +6170,4733,15,1,f +6170,60474,14,1,f +6170,6141,14,2,f +6170,63965,71,1,f +6170,64647,182,3,f +6170,85861,15,2,f +6172,11618,31,1,f +6172,14769pr1072,15,2,f +6172,15470,29,1,f +6172,15470,297,2,f +6172,15573,297,1,f +6172,15745,45,2,f +6172,18674,322,3,f +6172,20482,47,1,f +6172,22888,2,1,f +6172,23988,297,1,f +6172,29779,226,1,f +6172,3003pr0004,5,1,f +6172,3003pr0005,322,1,f +6172,3004,226,4,f +6172,3004,322,1,f +6172,30153,46,1,f +6172,30153,41,1,f +6172,3020,2,1,f +6172,3031,2,2,f +6172,30374,297,1,f +6172,3040b,30,2,f +6172,30613,226,1,f +6172,3068bpr980,15,1,f +6172,3069bpr0158,323,1,f +6172,33009,26,1,f +6172,33291,5,2,f +6172,33291,31,2,f +6172,3633,297,1,f +6172,3795,15,1,f +6172,3899,45,1,f +6172,3900,15,2,f +6172,3941,15,1,f +6172,3942c,297,2,f +6172,4032a,15,1,f +6172,44728,15,1,f +6172,4495b,5,1,f +6172,4740,45,1,f +6172,4865b,41,1,f +6172,54200,30,6,f +6172,59900,52,1,f +6172,59900,45,1,f +6172,60481,31,2,f +6172,6259,15,2,f +6172,64644,297,1,f +6172,85861,297,3,f +6172,87087,15,2,f +6172,87580,15,2,f +6172,98100,15,2,f +6173,298c02,15,1,f +6173,3002,1,2,f +6173,3004,1,2,f +6173,3005,14,11,f +6173,3008,14,1,f +6173,3009,14,8,f +6173,3010,14,8,f +6173,3022,1,1,f +6173,3023,0,2,f +6173,3024,36,1,f +6173,3024,46,1,f +6173,3027,0,1,f +6173,3040b,1,1,f +6173,3040b,14,3,f +6173,3062b,7,1,f +6173,3464,47,4,f +6173,3622,14,1,f +6173,3626apr0001,14,2,f +6173,3641,0,4,f +6173,3794a,1,1,f +6173,3842b,4,1,f +6173,3842b,15,1,f +6173,3865,7,1,f +6173,3901,6,1,f +6173,4006,0,1,f +6173,4083,1,1,f +6173,4347,4,1,f +6173,4480c01,15,1,f +6173,4480c01,4,1,f +6173,4522,0,1,f +6173,4589,7,1,f +6173,4719,0,1,f +6173,4864apx7,15,1,f +6173,4864apx9,15,1,f +6173,6141,46,2,f +6173,6141,36,2,f +6173,73194c01,4,1,f +6173,92851,47,2,f +6173,970c00,1,1,f +6173,970c00,0,1,f +6173,973p14c01,15,1,f +6173,973pb0201c01,15,1,f +6175,11458,72,2,f +6175,11477,72,2,f +6175,2540,0,4,f +6175,2654,1,2,f +6175,30031,0,1,f +6175,3004,1,1,f +6175,3020,4,1,f +6175,3022,0,1,f +6175,3023,4,3,f +6175,30602,40,1,f +6175,3626cpr0966,4,1,f +6175,3666,4,2,f +6175,3794b,72,2,f +6175,44676,1,2,f +6175,48729b,72,2,f +6175,51739,72,1,f +6175,54383,1,1,f +6175,54384,1,1,f +6175,55981,71,1,f +6175,58176,15,2,f +6175,61184,71,2,f +6175,61409,1,2,f +6175,6232,4,1,f +6175,85984,1,1,f +6175,92280,4,1,f +6175,970c00,1,1,f +6175,973pr2047c01,1,1,f +6175,98313,179,2,f +6175,99780,71,1,f +6177,122c01,0,4,f +6177,196926,89,1,t +6177,298c02,0,2,f +6177,3002,0,6,f +6177,3002,1,2,f +6177,3003,0,2,f +6177,3004,1,3,f +6177,3004,0,6,f +6177,3004,14,6,f +6177,3004,15,4,f +6177,3004p06,1,2,f +6177,3005,0,6,f +6177,3008,0,2,f +6177,3009,4,4,f +6177,3009,0,3,f +6177,3009,14,4,f +6177,3010,14,2,f +6177,3010,0,3,f +6177,3010,4,4,f +6177,3020,7,1,f +6177,3020,1,1,f +6177,3021,1,1,f +6177,3022,0,4,f +6177,3022,1,2,f +6177,3023,0,16,f +6177,3023,1,4,f +6177,3023,4,2,f +6177,3024,36,2,f +6177,3027,0,2,f +6177,3031,0,1,f +6177,3031,1,1,f +6177,3032,7,3,f +6177,3033,7,1,f +6177,3035,1,1,f +6177,3038,0,6,f +6177,3039,1,3,f +6177,3039,0,2,f +6177,3039pc4,0,1,f +6177,3040b,1,4,f +6177,3040b,0,2,f +6177,3062b,4,4,f +6177,3062b,0,1,f +6177,3068b,7,4,f +6177,3068b,1,1,f +6177,3068b,0,2,f +6177,3069bpr0099,15,5,f +6177,3218,4,2,f +6177,3228b,7,8,f +6177,3229b,7,16,f +6177,3230b,7,16,f +6177,3298,7,6,f +6177,3298,0,2,f +6177,3443c12,4,1,f +6177,3460,0,2,f +6177,3460,7,2,f +6177,3488,0,4,f +6177,3624,0,1,f +6177,3624,4,1,f +6177,3626a,0,1,f +6177,3626apr0001,14,2,f +6177,3626bpr0001,14,1,f +6177,3633,4,4,f +6177,3633,1,2,f +6177,3641,0,6,f +6177,3660,0,6,f +6177,3660,1,3,f +6177,3665,0,20,f +6177,3665,14,2,f +6177,3666,7,6,f +6177,3666,0,7,f +6177,3679,7,2,f +6177,3680,0,1,f +6177,3680,1,1,f +6177,3700,0,1,f +6177,3710,0,3,f +6177,3710,7,9,f +6177,3710,1,3,f +6177,3730,0,1,f +6177,3731,0,1,f +6177,3794a,0,2,f +6177,3795,0,6,f +6177,3829c01,1,1,f +6177,3832,0,2,f +6177,3941,14,12,f +6177,3941,15,12,f +6177,3960,0,1,f +6177,4022,0,4,f +6177,4023,0,6,f +6177,4032a,4,12,f +6177,4035,14,2,f +6177,4035,0,2,f +6177,4036,47,4,f +6177,4070,14,2,f +6177,4070,0,6,f +6177,4070,1,4,f +6177,4079,1,1,f +6177,4079,7,1,f +6177,4083,0,1,f +6177,4084,0,2,f +6177,4166,8,40,f +6177,4175,4,2,f +6177,4178,4,1,f +6177,4180c01,0,4,f +6177,4181,0,1,f +6177,4181p02,14,1,f +6177,4182,0,1,f +6177,4182p02,14,1,f +6177,4183,47,4,f +6177,4274,7,1,f +6177,4275b,1,4,f +6177,4276b,0,2,f +6177,4485,4,1,f +6177,4509,0,1,f +6177,4509,7,4,f +6177,4510,7,2,f +6177,4510,0,2,f +6177,4511,4,2,f +6177,4518ac01,0,1,f +6177,4531,1,4,f +6177,458,7,4,f +6177,4589,4,8,f +6177,4589,14,1,f +6177,4623,0,1,f +6177,4732,1,1,f +6177,6141,36,4,f +6177,6141,46,2,f +6177,6141,47,2,f +6177,6141,4,2,f +6177,699,7,1,f +6177,73092,0,6,f +6177,73590c01a,0,2,f +6177,766c28,7,1,f +6177,970c00,4,1,f +6177,970c00,0,1,f +6177,970c00,1,1,f +6177,973p26c01,1,1,f +6177,973pb0035c01,4,1,f +6177,973pb0203c01,15,1,f +6177,trainsig2,4,1,f +6177,wheel2a,4,4,f +6177,x461b,4,2,f +6177,x469bopen,0,1,f +6177,x489,4,1,f +6180,2412b,72,3,f +6180,3003,72,2,f +6180,3022,0,1,f +6180,30228,72,1,f +6180,3024,36,2,f +6180,30386,14,1,f +6180,30394,14,1,f +6180,3626bpr0387,14,1,f +6180,3795,0,1,f +6180,3829c01,0,1,f +6180,3833,4,1,f +6180,3837,72,1,f +6180,4079,0,1,f +6180,4083,0,1,f +6180,4085c,0,2,f +6180,4211,14,1,f +6180,44567a,72,1,f +6180,44675,14,1,f +6180,4589,182,1,f +6180,51739,14,1,f +6180,6014b,14,4,f +6180,6015,0,4,f +6180,6157,0,2,f +6180,970c00,1,1,f +6180,973pb0263c01,25,1,f +6183,10197,72,4,f +6183,11214,72,1,f +6183,11946,0,1,f +6183,11947,0,1,f +6183,15100,0,1,f +6183,15210pr0001,0,1,f +6183,15362,0,2,f +6183,18654,72,2,f +6183,18654,72,1,t +6183,21562,0,2,f +6183,21755,179,2,f +6183,21987,36,1,f +6183,21994,0,1,f +6183,22370,0,1,f +6183,2780,0,1,t +6183,2780,0,13,f +6183,30375,72,1,f +6183,32039,0,4,f +6183,32039,4,2,f +6183,32062,4,9,f +6183,32073,71,1,f +6183,32123b,71,6,f +6183,32123b,71,1,t +6183,32184,71,1,f +6183,32449,0,4,f +6183,32449,4,2,f +6183,32523,0,2,f +6183,32525,0,1,f +6183,41669,0,2,f +6183,41677,0,4,f +6183,42003,72,6,f +6183,4274,1,4,f +6183,4274,1,1,t +6183,43093,1,7,f +6183,43857,0,1,f +6183,4519,71,2,f +6183,50923,72,3,f +6183,53585,0,4,f +6183,54200,0,1,t +6183,54200,0,3,f +6183,60484,0,1,f +6183,6553,72,2,f +6183,6558,1,4,f +6183,6587,28,2,f +6183,6632,0,1,f +6183,74261,72,4,f +6183,87083,72,4,f +6183,90605,0,2,f +6183,90607,0,2,f +6183,90609,0,2,f +6183,90615,72,2,f +6183,90638pr0003,0,6,f +6183,90640,0,2,f +6183,90641,0,2,f +6183,90652pr0001,0,1,f +6183,90661,0,2,f +6183,92280,0,1,f +6183,92907,71,2,f +6183,92907,0,1,f +6183,93571,72,2,f +6183,93575,0,2,f +6183,98571,148,2,f +6183,98577,72,1,f +6183,98590,0,1,f +6183,98592,148,2,f +6183,98592,0,2,f +6183,98603s02pr0018,148,1,f +6183,99773,72,2,f +6184,777p06,15,1,f +6184,777p07,15,1,f +6184,777p11,15,1,f +6184,777p12,15,1,f +6184,777px8,15,1,f +6185,11211,19,1,f +6185,11458,72,4,f +6185,14417,72,2,f +6185,14418,71,2,f +6185,18789,322,1,f +6185,19727pr0002,29,1,f +6185,19729pr0003,2,1,f +6185,19729pr0005,25,1,f +6185,19729pr0012,25,1,f +6185,2431,72,2,f +6185,24445,15,1,f +6185,2456,70,2,f +6185,2456,71,2,f +6185,2458,72,2,f +6185,25047pr0001,15,1,f +6185,2654,72,2,f +6185,3001,71,4,f +6185,3001,70,8,f +6185,3003,70,10,f +6185,3003,33,2,f +6185,3003,15,4,f +6185,3003,72,4,f +6185,3003,71,5,f +6185,3003pr0035,72,1,f +6185,3004,70,3,f +6185,3004pr0014,84,2,f +6185,3005,84,1,f +6185,3006,70,1,f +6185,3010,70,1,f +6185,3020,1,1,f +6185,3020,71,6,f +6185,3021,15,1,f +6185,3021,72,2,f +6185,3022,71,5,f +6185,3023,19,4,f +6185,3023,27,1,f +6185,3023,71,6,f +6185,3023,29,1,f +6185,3024,71,1,t +6185,3024,71,6,f +6185,3024,46,1,t +6185,3024,70,2,f +6185,3024,182,3,f +6185,3024,182,1,t +6185,3024,70,1,t +6185,3024,46,3,f +6185,3028,10,3,f +6185,3031,1,1,f +6185,3034,72,1,f +6185,30383,0,2,f +6185,3039,33,1,f +6185,3068bpr0236,84,1,f +6185,3068bpr0286,15,1,f +6185,3069b,15,2,f +6185,3069b,72,3,f +6185,3069bpr0163,15,3,f +6185,3070b,0,1,t +6185,3070b,0,2,f +6185,32000,71,4,f +6185,32556,19,2,f +6185,33291,4,1,t +6185,33291,70,2,f +6185,33291,4,1,f +6185,33291,70,1,t +6185,3623,70,1,f +6185,3795,71,1,f +6185,4032a,0,3,f +6185,4070,0,9,f +6185,4081b,15,1,f +6185,4216,29,2,f +6185,44302a,71,2,f +6185,4727,10,1,f +6185,47905,19,1,f +6185,52107,15,1,f +6185,60478,15,2,f +6185,61252,15,3,f +6185,6141,19,4,f +6185,6141,19,1,t +6185,63864,19,1,f +6185,63864,15,1,f +6185,63864pr0008,15,1,f +6185,64644,308,1,f +6185,6636,70,2,f +6185,87580,71,16,f +6185,87580,2,7,f +6185,87580,72,1,f +6185,970c00,85,1,f +6185,970c00,70,1,f +6185,973pr2820c01,321,1,f +6185,973pr3096c01,378,1,f +6185,99206,0,1,f +6186,10247,0,1,f +6186,11609,191,1,f +6186,6141,41,2,f +6186,98138,45,2,f +6187,11816pr0001,84,1,f +6187,11816pr0006,78,1,f +6187,15395,15,4,f +6187,15470,179,1,t +6187,15470,179,1,f +6187,15573,15,2,f +6187,16264,9999,1,t +6187,22667,26,1,f +6187,22667,26,1,t +6187,2343,47,3,f +6187,2357,191,1,f +6187,2412b,15,8,f +6187,2419,15,3,f +6187,2453b,15,1,f +6187,2454a,15,1,f +6187,2654,47,1,f +6187,2654,0,1,f +6187,2877,71,2,f +6187,3001,27,2,f +6187,3001,15,1,f +6187,3001,25,2,f +6187,3003,29,2,f +6187,3003,27,1,f +6187,3003,25,1,f +6187,3004,25,2,f +6187,3004,15,9,f +6187,3004,191,4,f +6187,3005,25,2,f +6187,3009,25,5,f +6187,3010,191,7,f +6187,3010,27,1,f +6187,30151a,47,2,f +6187,3020,27,3,f +6187,3021,15,1,f +6187,3023,27,6,f +6187,3023,29,7,f +6187,3023,19,1,f +6187,3023,484,2,f +6187,3031,27,1,f +6187,3034,5,1,f +6187,30357,29,1,f +6187,3039pr62,71,1,f +6187,3040b,15,4,f +6187,3040b,25,1,f +6187,30562,47,1,f +6187,30565,15,2,f +6187,30565,5,3,f +6187,3062b,47,1,f +6187,3062b,46,3,f +6187,3065,47,2,f +6187,3068b,5,3,f +6187,3068b,15,4,f +6187,3069b,19,1,f +6187,3069bpr0100,2,1,f +6187,33051,4,1,f +6187,33085,14,1,f +6187,33172,25,1,f +6187,33183,10,1,f +6187,33183,10,1,t +6187,33243,15,2,f +6187,33291,10,7,f +6187,33291,4,9,f +6187,33291,4,1,t +6187,33291,10,2,t +6187,3460,15,1,f +6187,3622,15,2,f +6187,3626cpr1296a,14,2,f +6187,3666,27,4,f +6187,3741,2,2,f +6187,3741,2,1,t +6187,3795,27,1,f +6187,3941,25,2,f +6187,4032a,15,5,f +6187,4070,71,1,f +6187,4081b,27,1,f +6187,4150,29,4,f +6187,4150,25,2,f +6187,4150,27,3,f +6187,4460b,15,2,f +6187,4536,15,1,f +6187,4599b,71,1,t +6187,4599b,71,2,f +6187,46212,47,1,f +6187,4740,71,1,f +6187,48092,25,4,f +6187,48092,15,4,f +6187,4865b,15,4,f +6187,4865b,47,3,f +6187,59349,47,2,f +6187,59349,15,1,f +6187,6003,226,2,f +6187,60478,71,2,f +6187,60596,15,1,f +6187,60616a,47,1,f +6187,6111,15,3,f +6187,61252,71,1,f +6187,6141,25,7,f +6187,6141,4,1,t +6187,6141,27,8,f +6187,6141,14,1,t +6187,6141,14,2,f +6187,6141,29,2,t +6187,6141,29,10,f +6187,6141,25,1,t +6187,6141,179,1,f +6187,6141,27,3,t +6187,6141,179,1,t +6187,6141,4,3,f +6187,6180,15,1,f +6187,6231,15,6,f +6187,6541,0,1,f +6187,6541,15,1,f +6187,87087,15,2,f +6187,87580,4,1,f +6187,87580,15,1,f +6187,87580,0,1,f +6187,88293,27,6,f +6187,91405,226,1,f +6187,91988,5,1,f +6187,92256,226,1,f +6187,92410,27,1,f +6187,92438,226,1,f +6187,92456pr0002c01,84,1,f +6187,92456pr0026c01,78,1,f +6187,92818pr0005c01,191,1,f +6187,92820pr0003c01,30,1,f +6187,93090pr0004,26,1,f +6187,93274,71,1,f +6187,93352,308,1,f +6187,98138,15,2,f +6187,98138,15,1,t +6187,98560,15,2,f +6188,3001a,1,1,f +6188,3004,14,4,f +6188,3004,0,2,f +6188,3004,1,1,f +6188,3008,0,2,f +6188,3009,0,1,f +6188,3010,15,1,f +6188,3010,1,1,f +6188,3010,0,1,f +6188,3020,1,11,f +6188,3022,1,1,f +6188,3022,7,9,f +6188,3023,7,2,f +6188,3023,0,4,f +6188,3023,1,2,f +6188,3030,1,1,f +6188,3034,1,1,f +6188,3034,0,1,f +6188,3036,0,1,f +6188,3040a,14,2,f +6188,3040a,0,8,f +6188,3040a,15,2,f +6188,3062a,4,2,f +6188,3068b,1,2,f +6188,3069b,1,2,f +6188,3149c01,7,1,f +6188,3460,0,1,f +6188,3482,7,6,f +6188,3622,0,2,f +6188,3623,0,2,f +6188,3634,0,6,f +6188,3647,7,2,f +6188,3648a,7,3,f +6188,3650a,7,1,f +6188,3651,7,10,f +6188,3652,7,1,f +6188,3665,15,2,f +6188,3666,7,1,f +6188,3666,1,1,f +6188,3666,0,1,f +6188,3673,7,10,f +6188,3679,7,6,f +6188,3680,1,6,f +6188,3700,14,2,f +6188,3700,1,11,f +6188,3701,1,5,f +6188,3702,1,4,f +6188,3703,1,2,f +6188,3704,0,1,f +6188,3705,0,5,f +6188,3706,0,9,f +6188,3707,0,1,f +6188,3709,1,2,f +6188,3710,0,12,f +6188,3710,1,10,f +6188,3710,7,1,f +6188,3713,7,14,f +6188,3736,7,1,f +6188,3743,7,1,f +6188,9244,7,1,f +6188,x467c12,0,2,f +6189,2357,4,5,f +6189,2420,4,8,f +6189,2420,71,8,f +6189,2431,0,2,f +6189,2431,71,5,f +6189,2431,15,8,f +6189,2445,71,5,f +6189,2450,71,8,f +6189,2450,4,4,f +6189,2450,0,4,f +6189,2456,4,2,f +6189,2465,0,4,f +6189,3003,4,8,f +6189,3004,0,16,f +6189,3004,4,15,f +6189,3005,70,6,f +6189,3005,4,17,f +6189,3007,15,3,f +6189,3007,4,3,f +6189,3008,0,2,f +6189,3008,4,4,f +6189,3009,0,1,f +6189,3009,4,3,f +6189,3010,4,10,f +6189,3010,0,6,f +6189,30137,70,2,f +6189,3020,4,13,f +6189,3020,0,2,f +6189,3020,71,2,f +6189,3021,0,3,f +6189,3021,71,11,f +6189,3021,4,5,f +6189,3022,71,1,f +6189,3022,4,16,f +6189,3022,0,2,f +6189,3023,71,16,f +6189,3023,4,19,f +6189,3023,47,3,f +6189,3023,0,7,f +6189,3024,47,6,f +6189,3024,71,2,f +6189,3024,70,2,f +6189,3024,4,26,f +6189,3024,0,14,f +6189,3031,0,4,f +6189,3034,71,1,f +6189,3034,4,2,f +6189,3034,0,1,f +6189,3037,4,67,f +6189,3038,4,10,f +6189,3039,4,17,f +6189,3040b,4,13,f +6189,3041,4,5,f +6189,3044b,4,1,f +6189,3045,4,12,f +6189,3048c,4,2,f +6189,3068b,0,2,f +6189,3069b,4,4,f +6189,3069b,71,11,f +6189,3069b,0,2,f +6189,3069b,40,14,f +6189,3069b,15,5,f +6189,3069b,72,11,f +6189,3070b,4,10,f +6189,3070b,70,4,f +6189,3070b,72,11,f +6189,3070b,71,10,f +6189,32028,71,15,f +6189,32028,0,6,f +6189,3460,4,2,f +6189,3460,72,2,f +6189,3622,4,3,f +6189,3622,70,6,f +6189,3623,71,2,f +6189,3623,4,2,f +6189,3623,0,4,f +6189,3666,0,3,f +6189,3666,4,4,f +6189,3710,70,4,f +6189,3710,0,8,f +6189,3710,4,18,f +6189,3710,71,1,f +6189,3794a,72,38,f +6189,3794a,4,5,f +6189,3794a,71,19,f +6189,3795,4,4,f +6189,3795,71,1,f +6189,3832,71,1,f +6189,3857,72,1,f +6189,3865,72,2,f +6189,4070,4,8,f +6189,4070,15,50,f +6189,4162,71,6,f +6189,4274,71,26,f +6189,4282,71,2,f +6189,4477,71,2,f +6189,48336,71,7,f +6189,54200,71,2,f +6189,54200,4,10,f +6189,6019,4,14,f +6189,60592,15,26,f +6189,60593,15,2,f +6189,60594,15,1,f +6189,60601,47,26,f +6189,60602,47,2,f +6189,60603,47,1,f +6189,6111,4,3,f +6189,6112,0,4,f +6189,6141,71,2,f +6189,6541,4,26,f +6189,6636,71,9,f +6189,6636,4,1,f +6189,lit2009stk01,-1,1,t +6190,298c02,15,2,f +6190,298c02,15,1,t +6190,3003,27,2,f +6190,3020,27,1,f +6190,3021,71,2,f +6190,3023,27,2,f +6190,30325,1,1,f +6190,30385,34,1,f +6190,3069b,27,1,f +6190,3176,0,1,f +6190,32062,0,2,f +6190,32270,0,1,f +6190,32523,72,1,f +6190,3626bpr0562,14,1,f +6190,3660,27,3,f +6190,3701,0,1,f +6190,3707,0,1,f +6190,3713,71,1,f +6190,3713,71,1,t +6190,3841,72,1,f +6190,3956,71,1,f +6190,4070,27,2,f +6190,4150,27,2,f +6190,41530,25,1,f +6190,50923,72,2,f +6190,57563,25,2,f +6190,57908,72,1,f +6190,57909a,72,2,f +6190,57910,72,4,f +6190,58176,182,1,f +6190,60476,0,2,f +6190,6091,27,2,f +6190,61054,0,1,f +6190,61409,27,4,f +6190,62462,25,2,f +6190,63868,71,2,f +6190,64450,0,1,f +6190,64728,4,1,f +6190,64783,72,2,f +6190,64784pat01,34,1,f +6190,64785,72,1,f +6190,6536,27,2,f +6190,6558,1,3,f +6190,970c00pr0122,1,1,f +6190,973pr1434c01,15,1,f +6192,2412b,7,2,f +6192,2419,4,1,f +6192,2420,0,2,f +6192,2420,4,2,f +6192,2431,0,3,f +6192,2436,0,1,f +6192,2444,4,2,f +6192,2555,0,4,f +6192,2711,4,2,f +6192,2717,1,1,f +6192,2719,7,2,f +6192,2730,4,4,f +6192,2780,0,18,f +6192,2790,7,1,f +6192,2791,7,1,f +6192,2793c01,14,1,f +6192,2797c02,14,1,f +6192,2817,0,1,f +6192,2825,0,13,f +6192,2825,4,4,f +6192,2856c01,7,1,f +6192,2905,0,2,f +6192,3021,0,4,f +6192,3021,4,2,f +6192,3023,0,8,f +6192,3023,4,2,f +6192,3040b,4,2,f +6192,3040b,0,2,f +6192,3062b,0,2,f +6192,32001,4,1,f +6192,3647,7,1,t +6192,3647,7,3,f +6192,3650c,7,1,f +6192,3665,0,2,f +6192,3666,0,1,f +6192,3666,4,3,f +6192,3700,0,7,f +6192,3703,0,4,f +6192,3704,0,9,f +6192,3705,0,14,f +6192,3706,0,12,f +6192,3707,0,2,f +6192,3709,0,4,f +6192,3709,4,3,f +6192,3710,4,2,f +6192,3710,0,3,f +6192,3713,7,15,f +6192,3713,7,1,t +6192,3749,7,13,f +6192,3794a,0,1,f +6192,3795,4,1,f +6192,3894,0,2,f +6192,3895,0,2,f +6192,3941,46,1,f +6192,4019,7,2,f +6192,4032a,4,1,f +6192,4150,4,1,f +6192,4261,7,4,f +6192,4265a,7,1,t +6192,4265a,7,17,f +6192,4274,7,2,f +6192,4274,7,1,t +6192,4287,0,2,f +6192,4287,4,2,f +6192,4442,0,4,f +6192,4460b,4,2,f +6192,4519,0,3,f +6192,4697a,7,2,f +6192,5102c03,7,1,f +6192,5102c05,7,2,f +6192,5102c06,7,1,f +6192,5102c09,0,1,f +6192,5102c10,0,1,f +6192,5102c13,0,1,f +6192,5102c15,0,1,f +6192,5102c16,7,1,f +6192,5102c18,0,3,f +6192,5102c20,0,1,f +6192,5102c23,0,1,f +6192,5102c25,0,1,f +6192,6153a,4,1,f +6192,6536,7,7,f +6192,6538b,7,4,f +6192,6541,0,11,f +6192,6553,7,2,f +6192,6558,0,12,f +6192,6564,4,1,f +6192,6565,4,1,f +6192,6575,7,2,f +6192,6581,0,6,f +6192,6582,15,6,f +6192,6587,8,2,f +6192,6589,7,2,f +6192,6629,0,2,f +6192,6629,4,2,f +6192,6632,4,6,f +6192,6632,14,4,f +6192,6632,0,4,f +6192,74981,14,1,f +6192,75215,7,2,f +6192,75c13,8,2,f +6193,3001,7,14,f +6193,3002,7,8,f +6193,3003,7,12,f +6193,3004,7,8,f +6193,3005,7,4,f +6193,3006,7,1,f +6193,3007,7,1,f +6193,3008,7,2,f +6193,3009,7,4,f +6193,3010,7,4,f +6193,3622,7,4,f +6196,11212,15,2,f +6196,15395,0,1,f +6196,15571,25,2,f +6196,3005,25,2,f +6196,3010,25,2,f +6196,3010,14,1,f +6196,3021,25,3,f +6196,30367c,15,1,f +6196,30374,14,1,f +6196,3040b,25,1,f +6196,3062b,0,4,f +6196,32474,0,1,f +6196,3665,25,4,f +6196,3941,25,1,f +6196,4032a,0,2,f +6196,4032a,25,1,f +6196,4070,0,3,f +6196,49668,0,4,f +6196,87087,15,1,f +6196,98138pr0008,15,2,f +6196,98138pr0008,15,1,t +6199,2357,0,2,f +6199,2362a,7,2,f +6199,2412b,0,2,f +6199,2432,7,1,f +6199,2444,0,2,f +6199,2446,15,1,f +6199,2446,14,1,f +6199,2447,42,1,f +6199,2462,7,2,f +6199,2508,0,1,f +6199,2528pb01,0,1,f +6199,2540,0,1,f +6199,2544,6,1,f +6199,2550c01,6,1,f +6199,2555,14,2,f +6199,2620,41,1,f +6199,2744,7,2,f +6199,2815,0,2,f +6199,2926,0,1,f +6199,2952,0,2,f +6199,2994,14,2,f +6199,30027a,15,2,f +6199,30028,0,2,f +6199,3009,7,2,f +6199,3020,0,2,f +6199,3020,7,1,f +6199,3022,0,1,f +6199,3022,7,1,f +6199,3023,0,2,f +6199,3023,7,4,f +6199,3024,36,3,f +6199,3024,34,1,f +6199,3032,7,1,f +6199,3035,7,2,f +6199,3039pr0005,15,1,f +6199,32002,8,2,f +6199,3460,7,2,f +6199,3623,7,2,f +6199,3623,14,2,f +6199,3626bpx19,14,1,f +6199,3626bpx55,14,1,f +6199,3665,7,2,f +6199,3666,7,2,f +6199,3700,7,2,f +6199,3706,0,2,f +6199,3708,0,1,f +6199,3709,14,2,f +6199,3710,14,1,f +6199,3710,7,2,f +6199,3713,7,4,f +6199,3730,0,1,f +6199,3749,7,2,f +6199,3794a,7,1,f +6199,3795,7,1,f +6199,3829c01,14,2,f +6199,3896,0,1,f +6199,3901,0,1,f +6199,3937,7,2,f +6199,3938,0,2,f +6199,3941,7,1,f +6199,3960p03,15,2,f +6199,4070,7,6,f +6199,4150,15,1,f +6199,4185,14,3,f +6199,4265b,7,3,f +6199,4274,7,1,f +6199,4286,7,2,f +6199,4315,7,1,f +6199,4460a,7,2,f +6199,4477,7,2,f +6199,4485,1,1,f +6199,4506,2,1,f +6199,4746,0,1,f +6199,4864a,7,1,f +6199,4868a,14,2,f +6199,4869,7,2,f +6199,57467,383,2,f +6199,6019,0,5,f +6199,6041,14,1,f +6199,6070,41,2,f +6199,6119,57,1,f +6199,6126a,57,2,f +6199,6133,4,2,f +6199,6141,42,4,f +6199,6578,0,2,f +6199,73590c02b,14,1,f +6199,85546,14,2,f +6199,970c00,1,1,f +6199,970c00,15,1,f +6199,973px39c01,2,1,f +6199,973px91c01,15,1,f +6200,2780,0,10,f +6200,2853,7,2,f +6200,3651,7,4,f +6200,3673,7,6,f +6200,3713,7,8,f +6200,3749,7,4,f +6200,4273b,7,4,f +6200,4274,7,4,f +6200,6553,7,2,f +6200,6558,0,4,f +6202,10197,72,2,f +6202,15100,0,1,f +6202,15303,36,2,f +6202,15400,72,1,f +6202,15712,15,1,f +6202,18654,72,1,f +6202,18654,72,1,t +6202,21560,15,2,f +6202,21561pr0006,15,1,f +6202,21562,15,2,f +6202,24123,0,1,f +6202,24203pr0001,15,1,f +6202,2780,0,5,f +6202,2780,0,1,t +6202,3024,15,1,t +6202,3024,15,2,f +6202,3070b,15,3,f +6202,3070b,15,1,t +6202,32014,0,1,f +6202,32039,0,1,f +6202,32039,71,1,f +6202,32054,0,2,f +6202,32062,4,3,f +6202,32073,71,1,f +6202,32123b,71,1,t +6202,32123b,71,1,f +6202,3705,0,1,f +6202,3713,71,1,f +6202,3713,71,1,t +6202,41669,15,1,f +6202,41677,0,1,f +6202,41677,15,2,f +6202,4274,1,1,t +6202,4274,1,4,f +6202,60478,15,1,f +6202,61409,15,1,f +6202,62462,15,2,f +6202,6536,15,1,f +6202,6553,0,1,f +6202,74261,72,2,f +6202,87082,0,1,f +6202,90607,0,2,f +6202,90609,0,4,f +6202,90615,72,2,f +6202,90623,0,1,f +6202,90638,15,2,f +6202,90640,15,4,f +6202,90641,15,2,f +6202,90652,15,1,f +6202,90661,15,2,f +6202,92907,0,2,f +6202,93273,15,2,f +6202,93575,15,2,f +6202,98577,72,1,f +6203,2335p30,15,1,f +6203,2345p03,0,1,f +6203,2462,7,1,f +6203,2518,2,1,f +6203,2527,4,1,f +6203,2544,6,1,f +6203,2547,8,1,f +6203,2548,8,1,f +6203,2561,6,1,f +6203,2562,6,1,f +6203,2562,6,1,t +6203,3004,7,8,f +6203,3010,7,1,f +6203,3626bp49,14,1,f +6203,3957a,0,1,f +6203,3958,14,2,f +6203,4085c,7,1,f +6203,4085c,7,1,t +6203,84943,8,1,f +6203,970c00,0,1,f +6203,973p34c01,1,1,f +6204,3002,25,2,f +6204,3003,25,6,f +6204,3004,25,2,f +6204,3009,25,2,f +6204,3020,25,1,f +6204,3023,25,1,f +6204,3665,2,1,f +6204,54200,25,3,f +6204,54200,25,1,t +6206,2496,0,1,f +6206,2655,14,1,f +6206,3020,4,1,f +6206,3022,4,1,f +6206,3023,4,2,f +6206,3039,47,1,f +6206,3039,1,1,f +6206,4287,1,2,f +6206,6141,36,1,t +6206,6141,34,1,f +6206,6141,36,1,f +6206,6141,34,1,t +6208,18835pr0001,70,1,f +6208,19949,4,1,f +6208,19951,15,1,f +6208,3626cpr1540,14,1,f +6208,88646,0,1,f +6208,93223,70,1,f +6208,970c001pr0752,4,1,f +6208,973pr2833c01,1,1,f +6208,98370,297,1,f +6209,10039,0,1,f +6209,10201,0,1,f +6209,11002,0,1,f +6209,15068,14,1,f +6209,2420,14,2,f +6209,2431,14,2,f +6209,2436,14,2,f +6209,3020,0,1,f +6209,3020,4,1,f +6209,3023,72,2,f +6209,3068b,14,1,f +6209,3070b,14,2,f +6209,3710,0,1,f +6209,3710,14,4,f +6209,3794b,0,1,f +6209,43719,14,1,f +6209,50944pb02,0,4,f +6209,50947,14,2,f +6209,50948pb02,14,1,f +6209,50951,0,4,f +6209,54200,0,2,f +6209,54200,14,4,f +6209,60212,14,1,f +6209,6141,47,2,f +6209,6141,72,4,f +6209,93606,14,1,f +6210,3068bp18,15,2,f +6210,3068bp18,4,2,f +6210,3068bp18,1,2,f +6210,4707c03,7,1,f +6211,12825,71,2,f +6211,2376,0,1,f +6211,2412b,14,4,f +6211,2412b,72,29,f +6211,2431,14,3,f +6211,2431,71,2,f +6211,2431pr0028,72,1,f +6211,2432,4,8,f +6211,2436,71,2,f +6211,2436,14,1,f +6211,2445,70,2,f +6211,2456,14,1,f +6211,2723,0,1,f +6211,2871b,0,2,f +6211,2877,71,4,f +6211,2877,72,11,f +6211,2878,0,10,f +6211,2921,4,8,f +6211,2926,0,2,f +6211,298c02,1,1,t +6211,298c02,1,1,f +6211,3001,72,6,f +6211,3003,71,3,f +6211,3004,71,11,f +6211,3004,4,13,f +6211,3005,4,6,f +6211,3009,71,2,f +6211,3009,14,4,f +6211,3009,0,3,f +6211,3009,2,2,f +6211,3009,4,6,f +6211,3010,15,18,f +6211,3010,4,11,f +6211,3020,1,3,f +6211,3021,71,8,f +6211,3021,0,2,f +6211,3021,2,3,f +6211,3022,14,2,f +6211,3022,70,7,f +6211,3022,1,2,f +6211,30228,72,1,f +6211,3023,4,7,f +6211,3023,14,3,f +6211,3023,47,2,f +6211,3023,71,3,f +6211,3023,46,2,f +6211,30237a,14,3,f +6211,3030,2,1,f +6211,3031,4,4,f +6211,3032,19,2,f +6211,3034,19,2,f +6211,3034,1,1,f +6211,3035,0,1,f +6211,30350b,4,1,f +6211,3037,71,2,f +6211,30374,71,4,f +6211,30387,14,2,f +6211,3039,14,3,f +6211,30395,72,1,f +6211,30396,14,1,f +6211,3040b,72,2,f +6211,3040b,71,2,f +6211,3041,0,2,f +6211,30414,71,11,f +6211,3062b,72,10,f +6211,3068b,72,2,f +6211,3068b,71,2,f +6211,3069b,14,3,f +6211,3069b,182,2,f +6211,3069b,25,3,f +6211,3069b,15,2,f +6211,3070b,4,1,t +6211,3070b,4,4,f +6211,3176,4,1,f +6211,3176,14,2,f +6211,32028,0,2,f +6211,32054,4,4,f +6211,32059,71,2,f +6211,32062,0,4,f +6211,32270,0,1,f +6211,3228c,72,2,f +6211,3245c,14,2,f +6211,3297,2,6,f +6211,3298,0,4,f +6211,3622,2,4,f +6211,3623,72,2,f +6211,3626bpr0325,14,1,f +6211,3626bpr0646,14,1,f +6211,3626bpr0680,14,1,f +6211,3626cpr0649,14,1,f +6211,3633,72,7,f +6211,3659,28,2,f +6211,3666,0,3,f +6211,3666,14,1,f +6211,3666,4,2,f +6211,3666,71,12,f +6211,3673,71,1,t +6211,3673,71,4,f +6211,3677stk01,9999,1,t +6211,3700,70,2,f +6211,3706,0,2,f +6211,3709,71,4,f +6211,3709,0,2,f +6211,3710,70,4,f +6211,3710,71,15,f +6211,3710,19,6,f +6211,3794a,14,1,f +6211,3795,72,3,f +6211,3795,1,2,f +6211,3795,4,2,f +6211,3795,14,5,f +6211,3821,14,1,f +6211,3822,14,1,f +6211,3829c01,1,1,f +6211,3832,71,3,f +6211,3832,15,1,f +6211,3833,4,4,f +6211,3836,70,1,f +6211,3837,72,1,f +6211,3899,4,1,f +6211,3941,4,1,f +6211,3941,27,3,f +6211,3941,2,3,f +6211,3941,42,3,f +6211,3957b,71,3,f +6211,3958,72,8,f +6211,3958,0,1,f +6211,4025,14,3,f +6211,4032a,4,2,f +6211,4032a,15,2,f +6211,4032a,72,1,f +6211,4079b,70,1,f +6211,4079b,1,1,f +6211,4150,27,3,f +6211,4150,4,3,f +6211,41532,0,1,f +6211,4176,40,1,f +6211,4286,2,4,f +6211,4286,71,2,f +6211,43337,4,6,f +6211,4460b,70,4,f +6211,4477,4,2,f +6211,4488,0,4,f +6211,4510,71,10,f +6211,4510,4,2,f +6211,4511,72,4,f +6211,45677,4,2,f +6211,4599b,71,2,f +6211,4623,0,1,f +6211,47457,71,3,f +6211,4865b,14,2,f +6211,4865b,72,6,f +6211,4872,4,2,f +6211,50254,0,4,f +6211,50745,0,4,f +6211,50950,71,8,f +6211,52031,14,1,f +6211,52501,72,3,f +6211,53400,72,16,f +6211,53401,72,8,f +6211,54200,14,2,f +6211,54200,2,1,t +6211,54200,47,8,f +6211,54200,14,1,t +6211,54200,182,2,t +6211,54200,182,6,f +6211,54200,2,2,f +6211,54200,47,2,t +6211,57051,383,10,f +6211,57878,0,20,f +6211,57999,0,4,f +6211,57999,0,4,t +6211,58123a,71,1,f +6211,58176,182,1,f +6211,60032,4,2,f +6211,6014b,71,4,f +6211,6019,0,2,f +6211,60219,71,1,f +6211,60471,71,4,f +6211,60476,71,2,f +6211,60478,72,2,f +6211,60478,71,2,f +6211,60479,14,2,f +6211,60484,72,2,f +6211,60581,4,2,f +6211,60581,15,2,f +6211,60581,40,2,f +6211,60583a,4,6,f +6211,60583a,14,6,f +6211,60592,70,2,f +6211,60601,40,2,f +6211,60700,0,4,f +6211,60800a,72,2,f +6211,6091,72,4,f +6211,6111,71,1,f +6211,6141,47,1,t +6211,6141,47,4,f +6211,6141,36,2,f +6211,6141,36,1,t +6211,6178,71,1,f +6211,61780,70,3,f +6211,6182,19,2,f +6211,6249,72,2,f +6211,63864,4,2,f +6211,63965,71,4,f +6211,64022,72,16,f +6211,64227,71,1,f +6211,64228,71,1,f +6211,64453,40,2,f +6211,64644,0,2,f +6211,6567c02,4,2,f +6211,6583,0,8,f +6211,6636,4,2,f +6211,6636,14,3,f +6211,85984,72,4,f +6211,85984,71,16,f +6211,87058,71,1,f +6211,87079,72,1,f +6211,87079,4,4,f +6211,87079,71,2,f +6211,87083,72,2,f +6211,87087,71,6,f +6211,87552,40,1,f +6211,87574,0,1,f +6211,87580,1,1,f +6211,87609,14,1,f +6211,90258,72,2,f +6211,91176,19,4,f +6211,91994,0,8,f +6211,92099,72,1,f +6211,92107,72,1,f +6211,92280,71,2,f +6211,92339,0,1,f +6211,92591,70,1,f +6211,92593,4,8,f +6211,92715c01,72,1,f +6211,92946,72,4,f +6211,92946,4,2,f +6211,92947,71,2,f +6211,95120,72,2,f +6211,970c00,1,4,f +6211,973pr1183c01,25,4,f +6211,97920,4,1,f +6212,2412b,0,3,f +6212,2412b,71,2,f +6212,2444,0,1,f +6212,2444,72,7,f +6212,2445,72,2,f +6212,2456,0,2,f +6212,2458,72,8,f +6212,2540,14,3,f +6212,2540,0,4,f +6212,2723,0,2,f +6212,2780,0,33,f +6212,2780,0,5,t +6212,2825,0,4,f +6212,298c02,14,2,f +6212,298c02,14,1,t +6212,2991,72,4,f +6212,3001,0,2,f +6212,30031,71,1,f +6212,3004,72,1,f +6212,3004,0,3,f +6212,3005,0,4,f +6212,30055,72,3,f +6212,3009,71,1,f +6212,3020,71,2,f +6212,3021,4,2,f +6212,3022,72,6,f +6212,3022,4,1,f +6212,3022,71,4,f +6212,3022,0,2,f +6212,3023,0,2,f +6212,3023,71,9,f +6212,3023,14,7,f +6212,3024,36,2,f +6212,3031,72,2,f +6212,3031,0,1,f +6212,3034,72,4,f +6212,3035,0,4,f +6212,30377,71,1,t +6212,30377,71,1,f +6212,3038,0,2,f +6212,3039,14,1,f +6212,3039,72,1,f +6212,30397,0,4,f +6212,30407,14,2,f +6212,30414,0,2,f +6212,3048b,0,2,f +6212,30516,71,1,f +6212,30526,71,5,f +6212,3062b,71,2,f +6212,30658,0,1,f +6212,3068b,0,1,f +6212,3068b,72,1,f +6212,32000,4,1,f +6212,32001,14,2,f +6212,32009,71,4,f +6212,32009,72,2,f +6212,32013,72,16,f +6212,32015,0,4,f +6212,32018,0,6,f +6212,32039,71,1,f +6212,32039,0,2,f +6212,32054,4,6,f +6212,32062,4,10,f +6212,32064b,0,8,f +6212,32064b,72,7,f +6212,32064b,14,1,f +6212,32123b,71,2,t +6212,32123b,71,5,f +6212,32184,0,1,f +6212,32187,71,8,f +6212,32271,4,2,f +6212,32291,0,1,f +6212,32316,0,6,f +6212,32348,71,1,f +6212,3245b,72,2,f +6212,32523,14,3,f +6212,32524,0,2,f +6212,32525,71,6,f +6212,32526,71,2,f +6212,32530,72,4,f +6212,32532,0,2,f +6212,32551,71,12,f +6212,3307,0,2,f +6212,3460,72,2,f +6212,3622,71,4,f +6212,3623,4,4,f +6212,3626bpr0463,14,1,f +6212,3660,72,1,f +6212,3665,72,2,f +6212,3684,0,1,f +6212,3700,71,8,f +6212,3701,72,2,f +6212,3705,0,5,f +6212,3706,0,1,f +6212,3709,0,6,f +6212,3709,72,8,f +6212,3710,0,2,f +6212,3710,15,1,f +6212,3713,4,10,f +6212,3713,4,3,t +6212,3737,0,2,f +6212,3738,0,2,f +6212,3749,19,4,f +6212,3795,72,1,f +6212,3795,71,1,f +6212,3832,71,2,f +6212,3839b,0,2,f +6212,3894,0,2,f +6212,3941,14,2,f +6212,3957a,0,2,f +6212,3958,72,1,f +6212,4032a,4,1,f +6212,4070,4,2,f +6212,41747,15,1,f +6212,41748,15,1,f +6212,42003,72,4,f +6212,4274,71,1,t +6212,4274,71,2,f +6212,43093,1,9,f +6212,44224,72,2,f +6212,44225,71,2,f +6212,4445,0,2,f +6212,44568,71,4,f +6212,44572,0,4,f +6212,4477,0,2,f +6212,4519,71,4,f +6212,4522,0,1,f +6212,45301,0,6,f +6212,4588,72,6,f +6212,4589,42,6,f +6212,4590,72,1,f +6212,4599a,71,4,f +6212,47455,0,4,f +6212,47753,14,6,f +6212,48169,72,2,f +6212,48171,72,4,f +6212,48172,0,1,f +6212,48336,0,1,f +6212,48729a,72,4,f +6212,52041,0,1,f +6212,53451,4,10,f +6212,53451,4,2,t +6212,53586,135,1,f +6212,53982,85,1,f +6212,53984,134,2,f +6212,53984,135,2,f +6212,53988,134,1,f +6212,53988pat03,36,1,f +6212,53989,135,8,f +6212,53989,134,2,f +6212,55013,0,2,f +6212,57028c01,4,3,f +6212,57528,4,2,f +6212,57796,72,2,f +6212,57908,72,1,f +6212,57909a,72,2,f +6212,59426,72,2,f +6212,6019,71,2,f +6212,60533,14,1,f +6212,6070,40,1,f +6212,6070,0,1,f +6212,6126a,57,2,f +6212,6141,36,1,t +6212,6141,36,2,f +6212,62712,72,4,f +6212,6536,0,3,f +6212,6538b,4,2,f +6212,6558,0,46,f +6212,6587,72,8,f +6212,6636,4,1,f +6212,7721stk01,9999,1,t +6212,78c11,179,2,f +6212,970c00,288,1,f +6212,973pr1303c01,288,1,f +6213,10928,72,1,t +6213,10928,72,2,f +6213,11478,0,4,f +6213,13971,71,2,f +6213,14181,15,2,f +6213,2357,19,32,f +6213,2357,72,28,f +6213,2417,10,4,f +6213,2420,14,1,f +6213,2421,0,2,f +6213,2432,0,1,f +6213,2436,71,2,f +6213,2445,70,6,f +6213,2446,0,1,f +6213,2447,47,1,f +6213,2447,47,1,t +6213,2460,0,22,f +6213,2496,0,3,f +6213,2654,72,56,f +6213,2655,71,3,f +6213,2780,0,151,f +6213,2780,0,1,t +6213,2877,72,6,f +6213,2921,4,2,f +6213,298c02,71,2,f +6213,3001,4,3,f +6213,3001,70,3,f +6213,3001,72,13,f +6213,3002,72,5,f +6213,3002,4,5,f +6213,3003,15,4,f +6213,3004,73,13,f +6213,3004,1,7,f +6213,3004,72,28,f +6213,3004,19,34,f +6213,3004pr0003,15,1,f +6213,3005,73,8,f +6213,3005,4,3,f +6213,3009,72,10,f +6213,3009,4,5,f +6213,3009,19,16,f +6213,3009,15,4,f +6213,3009,0,2,f +6213,3010,19,6,f +6213,3010,73,9,f +6213,3010,1,5,f +6213,30151a,47,3,f +6213,3020,2,1,f +6213,3021,19,2,f +6213,3021,4,6,f +6213,3022,4,6,f +6213,3022,2,2,f +6213,3022,0,11,f +6213,3023,4,15,f +6213,3023,19,7,f +6213,3031,4,6,f +6213,3031,71,1,f +6213,3032,0,4,f +6213,3032,15,4,f +6213,3033,0,4,f +6213,3034,15,1,f +6213,3034,4,2,f +6213,3034,0,11,f +6213,3035,72,2,f +6213,3036,72,9,f +6213,30367b,4,1,f +6213,3037,4,24,f +6213,3037,72,14,f +6213,3039,47,1,f +6213,3039,72,6,f +6213,30395,72,1,f +6213,3040b,4,2,f +6213,3041,4,6,f +6213,30414,15,4,f +6213,3045,72,4,f +6213,3062b,33,3,f +6213,3062b,46,3,f +6213,3062b,57,1,f +6213,3062b,34,1,f +6213,3065,40,36,f +6213,3065,33,20,f +6213,3068b,72,10,f +6213,3069b,15,14,f +6213,3069b,0,28,f +6213,3069bpr0101,71,1,f +6213,3070b,4,16,f +6213,32009,4,2,f +6213,32012,14,1,f +6213,32013,71,13,f +6213,32013,4,6,f +6213,32016,0,17,f +6213,32034,71,5,f +6213,32039,71,9,f +6213,32054,71,37,f +6213,32054,0,8,f +6213,32062,4,41,f +6213,32064b,2,2,f +6213,32072,14,2,f +6213,32073,71,5,f +6213,32123b,14,6,f +6213,32123b,14,1,t +6213,32138,0,12,f +6213,32140,0,7,f +6213,32184,0,6,f +6213,32192,4,2,f +6213,32278,4,2,f +6213,32278,72,15,f +6213,32291,72,2,f +6213,32316,72,21,f +6213,32316,4,9,f +6213,32348,4,2,f +6213,32523,0,14,f +6213,32523,4,4,f +6213,32524,0,12,f +6213,32524,72,5,f +6213,32524,4,4,f +6213,32525,72,19,f +6213,32525,71,11,f +6213,32526,72,12,f +6213,32526,71,6,f +6213,32530,0,2,f +6213,32556,19,14,f +6213,3298,4,1,f +6213,3460,19,7,f +6213,3622,71,4,f +6213,3622,15,8,f +6213,3623,0,4,f +6213,3623,2,17,f +6213,3626cpr0891,14,1,f +6213,3626cpr0892,14,2,f +6213,3648b,72,1,f +6213,3665,0,4,f +6213,3665,15,8,f +6213,3666,1,5,f +6213,3666,15,8,f +6213,3666,73,4,f +6213,3673,71,14,f +6213,3678b,4,1,f +6213,3700,70,4,f +6213,3701,0,4,f +6213,3705,0,5,f +6213,3706,0,6,f +6213,3707,0,2,f +6213,3708,0,1,f +6213,3709,72,2,f +6213,3710,1,3,f +6213,3710,71,9,f +6213,3710,73,4,f +6213,3713,71,13,f +6213,3713,71,1,t +6213,3738,72,5,f +6213,3747b,4,3,f +6213,3749,19,11,f +6213,3794b,19,1,f +6213,3794b,0,6,f +6213,3795,15,2,f +6213,3795,0,1,f +6213,3829c01,0,2,f +6213,3895,0,2,f +6213,3941,1,24,f +6213,3941,70,27,f +6213,3958,19,10,f +6213,3958,72,7,f +6213,4032a,15,3,f +6213,40490,0,5,f +6213,4070,4,3,f +6213,4070,19,6,f +6213,4070,1,4,f +6213,41239,0,10,f +6213,41669,15,1,f +6213,41677,71,8,f +6213,4175,0,2,f +6213,4176,47,2,f +6213,41767,72,10,f +6213,41769,1,10,f +6213,41879a,272,1,f +6213,42003,72,5,f +6213,42610,71,6,f +6213,4282,71,1,f +6213,4286,70,8,f +6213,43093,1,17,f +6213,4342,19,1,f +6213,43722,1,4,f +6213,43857,0,6,f +6213,44294,71,5,f +6213,44300,72,4,f +6213,44302a,72,4,f +6213,4477,70,11,f +6213,4488,0,12,f +6213,4490,15,1,f +6213,4519,71,30,f +6213,4624,71,2,f +6213,4716,71,1,f +6213,4740,47,1,f +6213,48989,71,4,f +6213,50859b,0,1,f +6213,50860,27,1,f +6213,50861,0,2,f +6213,50862,71,2,f +6213,52031,4,1,f +6213,52031,1,1,f +6213,54200,15,1,t +6213,54200,15,5,f +6213,55013,72,3,f +6213,55982,71,4,f +6213,56823c200,0,1,f +6213,58090,0,4,f +6213,59363,70,1,f +6213,59443,71,20,f +6213,6014a,15,10,f +6213,60474,308,1,f +6213,60483,72,7,f +6213,60484,71,2,f +6213,60592,15,5,f +6213,60593,15,1,f +6213,6091,0,2,f +6213,6112,71,4,f +6213,6141,4,7,f +6213,6141,36,16,f +6213,6141,85,2,f +6213,6141,0,9,f +6213,6141,2,2,f +6213,6141,27,4,f +6213,6141,47,9,f +6213,6141,25,2,f +6213,6141,1,2,f +6213,6141,33,4,f +6213,6141,15,2,f +6213,6141,14,7,f +6213,6148,2,8,f +6213,62810,484,1,f +6213,64179,71,2,f +6213,64782,71,7,f +6213,6536,71,2,f +6213,6558,1,56,f +6213,6564,71,2,f +6213,6589,19,2,f +6213,6589,19,1,t +6213,75c22,0,2,f +6213,78c18,179,10,f +6213,85984,28,66,f +6213,85984,71,32,f +6213,87079,0,4,f +6213,87082,0,2,f +6213,87414,0,2,f +6213,87697,0,10,f +6213,88072,0,5,f +6213,88286,308,1,f +6213,91988,0,1,f +6213,92590,28,1,f +6213,94925,71,3,f +6213,970c00,4,1,f +6213,970c00,288,1,f +6213,973pr1480c01,15,1,f +6213,973pr1485c01,4,1,f +6213,973pr1617c01,2,1,f +6213,98138,15,9,f +6213,98138,46,10,f +6213,98138pr0008,15,2,f +6213,98283,28,6,f +6213,98283,71,24,f +6215,2780,0,2,f +6215,2780,0,1,t +6215,32002,8,3,f +6215,32039,4,1,f +6215,32039,135,1,f +6215,32175,4,1,f +6215,32316,4,3,f +6215,32348,4,2,f +6215,32523,135,1,f +6215,3673,7,2,f +6215,3673,7,1,t +6215,3749,19,2,f +6215,41677,4,1,f +6215,41752,8,1,f +6215,42074,179,2,f +6215,4274,7,1,f +6215,4274,7,2,t +6215,43559,0,1,f +6215,44848,0,1,f +6215,6536,4,2,f +6215,6587,8,1,f +6215,6628,0,2,f +6215,75c05,4,1,f +6215,75c05,4,1,t +6215,75c19,4,1,f +6215,rb00167,0,3,t +6215,rb00167,0,1,f +6216,3003,0,1,f +6216,3003,15,1,f +6216,3004,0,2,f +6216,3004,15,4,f +6216,3004,14,2,f +6216,3005,4,6,f +6216,3005,15,6,f +6216,3005,1,6,f +6216,3005,0,6,f +6216,3008,1,6,f +6216,3008,4,2,f +6216,3008,14,1,f +6216,3008,15,1,f +6216,3009,1,8,f +6216,3009,15,5,f +6216,3009,4,2,f +6216,3020,0,1,f +6216,3020,4,1,f +6216,3021,14,4,f +6216,3022,0,2,f +6216,3022,15,2,f +6216,3023,0,3,f +6216,3023,15,3,f +6216,3023,14,1,f +6216,3024,14,1,f +6216,3039,15,2,f +6216,3039,0,2,f +6216,3040b,15,6,f +6216,3040b,1,6,f +6216,3040b,0,6,f +6216,3040b,4,6,f +6216,3062a,14,8,f +6216,3062a,0,10,f +6216,3062a,4,2,f +6216,3069b,0,1,f +6216,3069b,15,1,f +6216,3298,15,12,f +6216,3298,4,9,f +6216,3456,15,1,f +6216,3460,14,2,f +6216,3497,2,1,f +6216,3596px1,4,2,f +6216,3622,15,2,f +6216,3623,14,2,f +6216,3625,4,1,f +6216,3626apr0001,14,6,f +6216,3659,14,2,f +6216,3660,15,2,f +6216,3660,0,2,f +6216,3665,4,2,f +6216,3665,15,4,f +6216,3665,1,2,f +6216,3778,2,1,f +6216,3794a,14,1,f +6216,3795,15,1,f +6216,3795,0,1,f +6216,3842a,7,2,f +6216,3843,0,1,f +6216,3843,4,1,f +6216,3844,7,2,f +6216,3846p4t,7,1,f +6216,3846p4u,7,1,f +6216,3848,7,2,f +6216,3849,6,2,f +6216,3899,1,2,f +6216,3901,6,1,f +6216,970c00,4,1,f +6216,970c00,15,1,f +6216,970x021,0,2,f +6216,970x023,15,1,f +6216,970x026,4,1,f +6216,973p72c01,15,1,f +6216,973px44c01,4,1,f +6216,973px45c01,0,1,f +6216,973px46c01,1,1,f +6216,973px47c01,4,2,f +6218,87839,70,4,f +6218,87840,70,2,f +6218,87841,70,2,f +6218,87842,70,2,f +6218,87846,70,1,f +6218,87847,70,1,f +6218,88521,70,1,f +6218,89469,28,1,f +6219,3940b,7,4,f +6219,3956,7,4,f +6220,2780,0,1,t +6220,2780,0,1,f +6220,32013,71,1,f +6220,32062,4,6,f +6220,32073,71,1,f +6220,32184,0,2,f +6220,33299a,71,1,f +6220,3713,71,1,f +6220,3713,71,1,t +6220,41669,135,1,f +6220,41669,57,3,f +6220,41669,1,2,f +6220,4274,1,1,t +6220,4274,1,3,f +6220,43093,1,5,f +6220,4519,71,5,f +6220,47328,0,2,f +6220,53562,0,2,f +6220,54821,1,2,f +6220,57528,135,1,f +6220,57539,25,3,f +6220,57563,135,2,f +6220,60176,0,8,f +6220,60483,0,3,f +6220,60900,0,2,f +6220,60928,135,1,f +6220,60930,135,1,f +6220,61794,135,1,f +6220,64262,57,1,f +6220,64262,143,1,f +6220,64275,0,4,f +6220,64276,0,1,f +6220,6536,71,1,f +6220,6558,1,1,f +6220,87794,0,2,f +6220,87796,0,2,f +6220,87797,135,2,f +6220,87798,135,2,f +6220,87799,57,1,f +6220,87809,135,1,f +6220,87810,135,1,f +6220,87811,135,1,f +6220,87815,0,1,f +6220,87820,0,2,f +6220,87827,1,2,f +6220,87831,1,1,f +6220,87839,1,2,f +6223,2423,2,2,f +6223,3021,19,1,f +6223,3040b,19,1,f +6223,3062b,19,2,f +6223,33121,191,1,f +6224,2453a,15,2,f +6224,2460,1,2,f +6224,2476a,4,2,f +6224,30000,7,1,f +6224,3004,8,2,f +6224,3009,8,2,f +6224,3020,0,1,f +6224,3022,4,3,f +6224,3022,1,3,f +6224,3023,7,2,f +6224,3034,8,1,f +6224,30492,1,1,f +6224,30492,4,1,f +6224,32064a,1,3,f +6224,32064a,4,3,f +6224,32124,0,2,f +6224,3460,15,1,f +6224,3626bpb0117,14,1,f +6224,3626bpb0162,14,1,f +6224,3666,8,1,f +6224,3700,0,2,f +6224,3707,0,1,f +6224,3708,0,2,f +6224,3710,0,2,f +6224,3754pb05,47,1,f +6224,3794a,0,4,f +6224,3795,8,1,f +6224,3894,8,2,f +6224,42073cx1,8,1,f +6224,4287,0,2,f +6224,43093,1,2,f +6224,43372,19,2,f +6224,43373,25,2,f +6224,43374,15,2,f +6224,43702,1,2,f +6224,43702,4,2,f +6224,6538b,0,1,f +6224,973bpb157c01,4,1,f +6224,973bpb189c01,110,1,f +6224,x494cx1,110,1,f +6224,x494cx1,4,1,f +6225,2340,15,2,f +6225,2413,15,2,f +6225,2419,8,2,f +6225,2432,0,2,f +6225,2445,15,2,f +6225,2456,14,2,f +6225,2456,4,2,f +6225,2458,8,2,f +6225,2460,4,1,f +6225,2479,0,1,f +6225,2508,0,1,f +6225,30000,8,2,f +6225,3001,15,4,f +6225,3001,4,4,f +6225,3001,14,2,f +6225,3001,0,2,f +6225,3001,1,4,f +6225,3001,7,1,f +6225,3002,1,2,f +6225,3002,7,2,f +6225,3002,15,2,f +6225,3002,4,2,f +6225,3002,14,2,f +6225,3003,4,10,f +6225,3003,0,4,f +6225,3003,1,10,f +6225,3003,15,6,f +6225,3003,7,4,f +6225,3003,14,6,f +6225,3004,0,4,f +6225,3004,4,4,f +6225,3004,1,4,f +6225,3004,14,4,f +6225,3004,15,10,f +6225,3007,1,2,f +6225,30076,0,1,f +6225,3008,4,2,f +6225,3008,15,2,f +6225,3008,14,2,f +6225,3008,7,2,f +6225,3008,1,2,f +6225,3009,15,2,f +6225,3009,4,4,f +6225,3009,7,2,f +6225,3009,14,2,f +6225,3009,0,2,f +6225,3009,1,2,f +6225,3010,1,4,f +6225,3010,14,4,f +6225,3010,7,2,f +6225,3010,0,2,f +6225,3010,15,8,f +6225,3010,4,6,f +6225,3020,15,2,f +6225,3021,4,2,f +6225,3022,15,2,f +6225,30248,0,1,f +6225,30285,7,4,f +6225,3033,0,1,f +6225,3034,0,2,f +6225,3034,15,2,f +6225,30359a,0,2,f +6225,3036,0,1,f +6225,3039,4,2,f +6225,3039,33,2,f +6225,3039,7,4,f +6225,30391,0,4,f +6225,3298,4,2,f +6225,3298,7,2,f +6225,3298p1b,4,2,f +6225,3298p21,1,2,f +6225,33303,15,2,f +6225,3475b,0,2,f +6225,3666,15,2,f +6225,3710,15,2,f +6225,3730,7,1,f +6225,3747a,7,2,f +6225,3747a,4,2,f +6225,3795,4,2,f +6225,3823,33,1,f +6225,3829c01,7,1,f +6225,3832,15,2,f +6225,3865,2,1,f +6225,3870,7,3,f +6225,3942c,383,2,f +6225,3960,15,1,f +6225,4006,0,1,f +6225,4083,383,2,f +6225,4286,4,2,f +6225,4617b,0,2,f +6225,4727,2,2,f +6225,4728,4,1,f +6225,4728,14,1,f +6225,4740,57,2,f +6225,4872,33,2,f +6225,6160c01,4,2,f +6225,6230,0,6,f +6225,6234,14,1,f +6225,6235,4,1,f +6225,6255,2,1,f +6225,6541,14,4,f +6225,71075,383,2,f +6225,cre004,9999,1,f +6225,cre005,9999,1,f +6226,10197,72,2,f +6226,10247,0,2,f +6226,10928,72,2,f +6226,11214,72,14,f +6226,11478,0,4,f +6226,11946,0,1,f +6226,11946,25,3,f +6226,11947,25,3,f +6226,11947,0,1,f +6226,11950,71,4,f +6226,14720,71,2,f +6226,15068,0,2,f +6226,15100,0,17,f +6226,15458,25,5,f +6226,15462,28,3,f +6226,18352,72,1,f +6226,18575,19,3,f +6226,18651,0,11,f +6226,18654,72,1,t +6226,18654,72,6,f +6226,18946,4,3,f +6226,18947,72,1,f +6226,18948,15,1,f +6226,2569,0,1,f +6226,2736,71,1,f +6226,2780,0,2,t +6226,2780,0,136,f +6226,3023,47,2,f +6226,30395,72,1,f +6226,32000,0,1,f +6226,32002,19,10,f +6226,32002,19,1,t +6226,32005a,0,4,f +6226,32009,25,2,f +6226,32015,0,2,f +6226,32034,15,3,f +6226,32034,0,4,f +6226,32039,0,11,f +6226,32054,0,6,f +6226,32054,4,2,f +6226,32062,4,26,f +6226,32073,71,7,f +6226,32123b,14,3,f +6226,32123b,14,1,t +6226,32140,25,2,f +6226,32140,15,3,f +6226,32140,72,4,f +6226,32140,1,6,f +6226,32184,71,11,f +6226,32192,72,1,f +6226,32192,0,4,f +6226,32198,19,2,f +6226,32199,0,2,f +6226,32270,0,3,f +6226,32271,25,2,f +6226,32278,0,2,f +6226,32291,0,4,f +6226,32316,0,18,f +6226,32316,15,1,f +6226,32348,25,2,f +6226,32474,0,1,f +6226,32523,15,6,f +6226,32524,71,9,f +6226,32524,25,3,f +6226,32525,72,5,f +6226,32526,0,15,f +6226,32556,19,5,f +6226,32557,0,2,f +6226,3673,71,3,f +6226,3673,71,1,t +6226,3705,0,9,f +6226,3706,0,5,f +6226,3713,4,4,f +6226,3713,4,1,t +6226,3737,0,2,f +6226,3749,19,2,f +6226,3941,72,3,f +6226,40490,15,1,f +6226,40490,0,8,f +6226,41239,71,14,f +6226,41239,15,2,f +6226,41239,25,6,f +6226,4162,72,1,f +6226,41677,0,3,f +6226,41678,71,4,f +6226,42003,4,1,f +6226,4274,71,1,t +6226,4274,71,17,f +6226,43093,1,36,f +6226,44294,71,1,f +6226,4519,71,27,f +6226,48496,0,1,f +6226,48989,71,17,f +6226,55013,72,2,f +6226,56823c100,0,1,f +6226,57519,0,4,f +6226,57520,0,8,f +6226,59426,72,6,f +6226,59443,0,21,f +6226,60474,72,1,f +6226,60483,25,4,f +6226,60483,0,3,f +6226,6141,47,1,t +6226,6141,47,10,f +6226,61510,71,1,f +6226,61903,71,4,f +6226,62462,15,2,f +6226,62462,0,1,f +6226,62531,25,3,f +6226,6259,72,2,f +6226,63869,71,6,f +6226,64178,71,1,f +6226,64391,25,2,f +6226,64683,25,2,f +6226,64781,0,1,f +6226,64782,25,1,f +6226,6536,71,10,f +6226,6553,72,1,f +6226,6558,1,62,f +6226,6589,19,4,f +6226,6589,19,1,t +6226,6628,0,1,t +6226,6628,0,8,f +6226,6629,71,4,f +6226,6629,0,4,f +6226,6641,4,1,f +6226,74698,0,1,f +6226,76138,71,4,f +6226,87083,72,7,f +6226,88323,0,96,f +6226,92693,71,2,f +6226,92907,0,12,f +6226,92909,72,4,f +6226,92910,71,2,f +6226,92911,72,2,f +6226,94925,71,5,f +6226,99009,71,1,f +6226,99010,0,1,f +6226,99773,71,2,f +6227,32269,2,25,f +6229,2731,7,1,f +6229,3003,4,8,f +6229,3004,0,20,f +6229,3004,4,16,f +6229,3005,4,24,f +6229,3005,0,12,f +6229,3009,4,8,f +6229,3010,4,10,f +6229,3010,0,4,f +6229,3020,0,11,f +6229,3022,0,21,f +6229,3023,0,19,f +6229,3023,7,10,f +6229,3027,0,2,f +6229,3029,4,3,f +6229,3031,0,4,f +6229,3039,7,4,f +6229,3039p23,1,2,f +6229,3039p34,1,2,f +6229,3069b,4,6,f +6229,3229b,7,16,f +6229,3230b,7,16,f +6229,3241,7,15,f +6229,3297,7,16,f +6229,3460,0,2,f +6229,3622,4,8,f +6229,3624,4,1,f +6229,3626apr0001,14,1,f +6229,3660,4,4,f +6229,3660,0,12,f +6229,3665,0,8,f +6229,3665,4,4,f +6229,3666,4,2,f +6229,3666,0,6,f +6229,3675,4,4,f +6229,3710,0,2,f +6229,3710,4,2,f +6229,3710,7,8,f +6229,3794a,7,4,f +6229,3795,0,2,f +6229,3832,0,3,f +6229,4022,0,4,f +6229,4023,0,5,f +6229,4023,0,1,t +6229,4032a,7,7,f +6229,4033,4,12,f +6229,4034,47,12,f +6229,4035,4,4,f +6229,4036,47,4,f +6229,4070,4,12,f +6229,4079,14,9,f +6229,4161,7,4,f +6229,4162,4,10,f +6229,4176,47,2,f +6229,4178,0,1,f +6229,4180c01,0,5,f +6229,4181,4,3,f +6229,4182,4,3,f +6229,4183,47,6,f +6229,458,7,6,f +6229,501a,0,1,f +6229,6141,36,8,f +6229,6141,46,4,f +6229,73090a,4,2,f +6229,73092,0,1,t +6229,73092,0,5,f +6229,767,8,32,f +6229,867,0,2,f +6229,970c00,1,1,f +6229,973p18c01,1,1,f +6231,3004,4,2,f +6231,3004,0,6,f +6231,3004,1,2,f +6231,3005,14,6,f +6231,3005,0,1,f +6231,3005,1,2,f +6231,3005,4,2,f +6231,3009,4,3,f +6231,3020,4,4,f +6231,3020,14,2,f +6231,3021,4,1,f +6231,3021,0,6,f +6231,3022,4,1,f +6231,3022,7,20,f +6231,3022,0,2,f +6231,3023,47,2,f +6231,3023,7,2,f +6231,3023,0,29,f +6231,3023,14,8,f +6231,3023,1,12,f +6231,3024,46,6,f +6231,3024,36,6,f +6231,3029,1,1,f +6231,3030,4,2,f +6231,3031,0,2,f +6231,3031,4,2,f +6231,3032,0,2,f +6231,3032,4,2,f +6231,3034,14,3,f +6231,3035,1,3,f +6231,3036,1,1,f +6231,3040b,14,6,f +6231,3040b,0,2,f +6231,3040b,4,4,f +6231,3062a,0,8,f +6231,3069b,0,12,f +6231,3460,4,2,f +6231,3460,0,12,f +6231,3460,1,2,f +6231,3622,4,2,f +6231,3623,0,5,f +6231,3623,1,2,f +6231,3623,4,2,f +6231,3647,7,5,f +6231,3648a,7,7,f +6231,3651,7,8,f +6231,3652,7,2,f +6231,3665,0,2,f +6231,3666,1,5,f +6231,3666,7,2,f +6231,3666,0,11,f +6231,3673,7,51,f +6231,3700,0,9,f +6231,3700,14,1,f +6231,3700,7,2,f +6231,3700,0,1,t +6231,3700,1,4,f +6231,3701,0,8,f +6231,3701,14,5,f +6231,3701,1,3,f +6231,3702,1,2,f +6231,3702,0,2,f +6231,3702,14,1,f +6231,3702,7,3,f +6231,3703,14,2,f +6231,3703,1,2,f +6231,3703,0,6,f +6231,3704,0,20,f +6231,3705,0,9,f +6231,3706,0,10,f +6231,3707,0,5,f +6231,3708,0,4,f +6231,3709,1,1,f +6231,3710,14,8,f +6231,3710,1,6,f +6231,3710,0,18,f +6231,3710,4,4,f +6231,3713,7,41,f +6231,3736,7,1,f +6231,3737,0,4,f +6231,3738,1,1,f +6231,3739,7,4,f +6231,3740,0,4,f +6231,3743,7,3,f +6231,3749,7,3,f +6231,3794a,0,1,f +6231,3795,1,4,f +6231,3894,0,7,f +6231,3894,14,4,f +6231,3895,1,4,f +6231,3895,14,1,f +6231,3895,0,3,f +6231,4019,7,1,f +6231,4070,0,4,f +6231,4143,7,5,f +6231,4261,7,2,f +6231,4262,0,2,f +6231,4263,0,5,f +6231,4263,14,12,f +6231,4265a,7,22,f +6231,4273a,7,27,f +6231,4274,7,5,f +6231,71509,0,4,f +6231,73071,7,1,f +6231,9244,7,1,f +6231,u1125,4,4,f +6231,u1126,4,4,f +6232,10907,320,1,f +6232,10908pr0001,320,1,f +6232,2412b,72,1,f +6232,2817,0,1,f +6232,298c02,0,1,f +6232,298c02,0,1,t +6232,30194,72,2,f +6232,3021,71,1,f +6232,30602,0,1,f +6232,3062b,41,2,f +6232,3626cpr0961,78,1,f +6232,3794a,72,1,f +6232,44674,0,1,f +6232,58176,35,1,f +6232,61184,71,1,f +6232,61252,72,2,f +6232,6141,34,2,f +6232,6141,41,2,f +6232,6141,41,1,t +6232,970c00pr0344,320,1,f +6232,973pr2041c01,320,1,f +6233,3081cc01,15,4,f +6233,3081cc01,4,4,f +6233,3579,4,1,f +6233,3579,15,2,f +6233,3581,15,6,f +6233,3581,4,4,f +6233,3582,1,6,f +6233,3582,14,4,f +6233,453cc01,15,2,f +6233,453cc01,4,2,f +6233,7930,15,1,f +6233,7930,4,2,f +6235,429c02,0,2,f +6236,10202,72,3,f +6236,14417,72,2,f +6236,14418,71,2,f +6236,15533,84,5,f +6236,15573,0,4,f +6236,15573,70,6,f +6236,15712,0,9,f +6236,18787,179,1,f +6236,18789,322,1,f +6236,19119,484,3,f +6236,19729pr0001,308,1,f +6236,19729pr0003,2,1,f +6236,19729pr0004,0,1,f +6236,19729pr0005,25,2,f +6236,19729pr0006,2,1,f +6236,19729pr0012,25,1,f +6236,19732,0,1,f +6236,19734,2,1,f +6236,2357,19,1,f +6236,2357,70,3,f +6236,2420,2,4,f +6236,2431,84,46,f +6236,24445,15,1,f +6236,2445,72,1,f +6236,2453b,84,6,f +6236,2456,4,4,f +6236,2456,2,2,f +6236,2456,70,13,f +6236,2456,71,12,f +6236,2456,72,17,f +6236,2456,19,1,f +6236,2456,15,2,f +6236,2465,72,3,f +6236,2465,71,2,f +6236,25047pr0001,15,1,f +6236,25047pr0003,2,1,f +6236,25047pr0004,92,2,f +6236,25767pr0001,15,1,f +6236,25767pr0002,70,1,f +6236,2780,0,2,f +6236,2921,84,3,f +6236,3001,4,1,f +6236,3001,25,1,f +6236,3001,2,1,f +6236,3001,71,11,f +6236,3001,288,2,f +6236,3001,70,17,f +6236,3001,19,8,f +6236,3001,72,40,f +6236,3001,84,21,f +6236,3002,72,12,f +6236,3003,15,3,f +6236,3003,34,3,f +6236,3003,84,48,f +6236,3003,71,41,f +6236,3003,2,3,f +6236,3003,70,84,f +6236,3003,33,6,f +6236,3003,72,55,f +6236,3003pr0035,72,2,f +6236,3004,25,1,f +6236,3004,70,14,f +6236,3004,72,35,f +6236,3004,71,1,f +6236,3004,84,65,f +6236,3004pr0014,84,2,f +6236,3005,72,13,f +6236,3005,27,3,f +6236,3005,84,55,f +6236,3005,70,2,f +6236,3005,1,3,f +6236,3007,71,4,f +6236,3008,72,2,f +6236,3008,70,4,f +6236,3009,84,2,f +6236,3010,70,2,f +6236,3020,72,6,f +6236,3020,10,6,f +6236,3020,71,2,f +6236,3020,70,8,f +6236,3021,71,1,f +6236,3021,72,2,f +6236,3021,29,2,f +6236,3021,70,8,f +6236,3021,15,1,f +6236,3022,72,12,f +6236,3022,71,2,f +6236,3022,0,2,f +6236,3022,484,1,f +6236,3022,29,1,f +6236,3022,15,2,f +6236,3022,84,3,f +6236,3022,19,1,f +6236,3022,70,4,f +6236,3023,2,1,f +6236,3023,29,1,f +6236,3023,15,1,f +6236,3023,72,2,f +6236,3023,27,1,f +6236,3023,19,4,f +6236,30237b,72,1,f +6236,30237b,71,1,f +6236,3024,0,9,f +6236,3024,15,3,f +6236,3024,2,6,f +6236,3024,28,4,f +6236,3024,182,14,f +6236,3024,71,10,f +6236,3024,4,10,f +6236,3024,46,14,f +6236,3027,2,1,f +6236,3028,72,5,f +6236,3028,10,10,f +6236,3028,71,3,f +6236,3028,70,1,f +6236,3029,72,1,f +6236,3029,71,3,f +6236,3030,19,1,f +6236,3032,71,2,f +6236,3034,70,2,f +6236,3035,71,1,f +6236,3035,72,4,f +6236,30383,0,2,f +6236,3039,33,3,f +6236,3062b,27,6,f +6236,3068b,71,1,f +6236,3068b,73,3,f +6236,3068bpr0236,84,1,f +6236,3068bpr0286,15,1,f +6236,3068bpr0299,15,1,f +6236,3069b,72,5,f +6236,3069b,2,2,f +6236,3069b,15,2,f +6236,3069b,84,2,f +6236,3069bpr0163,15,3,f +6236,3070b,288,3,f +6236,3070b,0,2,f +6236,3070bpr0161,272,1,f +6236,32000,72,10,f +6236,32526,72,2,f +6236,33051,4,1,f +6236,33172,25,2,f +6236,33183,191,4,f +6236,33183,10,8,f +6236,33291,70,82,f +6236,33291,10,20,f +6236,33291,4,3,f +6236,3622,72,3,f +6236,3710,70,8,f +6236,3710,72,4,f +6236,3795,71,3,f +6236,3795,19,1,f +6236,3795,72,7,f +6236,3830,72,3,f +6236,3830,70,4,f +6236,3831,70,4,f +6236,3831,84,3,f +6236,3958,71,2,f +6236,3958,72,1,f +6236,3958,2,1,f +6236,3958,1,1,f +6236,3958,10,4,f +6236,4032a,0,4,f +6236,4070,70,4,f +6236,4070,0,1,f +6236,4070,72,4,f +6236,4081b,15,1,f +6236,41539,72,1,f +6236,4162,72,1,f +6236,41879a,308,2,f +6236,4216,29,4,f +6236,4282,71,2,f +6236,44302a,71,2,f +6236,44728,2,11,f +6236,4477,72,8,f +6236,4599b,71,1,f +6236,4727,10,5,f +6236,4733,0,2,f +6236,4738a,84,1,f +6236,47457,71,2,f +6236,47905,19,1,f +6236,48336,2,1,f +6236,4865a,72,4,f +6236,52107,15,1,f +6236,54200,72,2,f +6236,60470a,2,1,f +6236,60475b,84,2,f +6236,60478,70,2,f +6236,60478,15,2,f +6236,6112,71,2,f +6236,6112,84,26,f +6236,61252,15,3,f +6236,6141,25,2,f +6236,6141,19,4,f +6236,6141,15,4,f +6236,6141,71,5,f +6236,6141,33,1,f +6236,6141,10,14,f +6236,63864,15,1,f +6236,63864,19,1,f +6236,63864pr0008,15,1,f +6236,64644,308,10,f +6236,6558,1,6,f +6236,6636,84,31,f +6236,6636,0,2,f +6236,75937,15,1,f +6236,87079,72,9,f +6236,87552,47,16,f +6236,87580,19,6,f +6236,87580,2,31,f +6236,87580,71,33,f +6236,87580,10,10,f +6236,87580,15,10,f +6236,87580,84,72,f +6236,87580,70,3,f +6236,87580,0,2,f +6236,87580,72,22,f +6236,91405,19,1,f +6236,91988,72,2,f +6236,91988,70,1,f +6236,92438,2,1,f +6236,95343,71,1,f +6236,95344,28,1,f +6236,96874,25,1,t +6236,970c00,85,3,f +6236,970c00,70,1,f +6236,973pr2819c01,321,1,f +6236,973pr2820c01,321,2,f +6236,973pr3096c01,378,1,f +6236,98283,84,39,f +6236,99563,71,1,f +6236,99780,15,1,f +6237,2857,0,2,f +6237,4266,15,2,f +6238,3004,1,1,f +6238,30151a,25,1,f +6238,30151a,14,1,f +6238,30285,15,4,f +6238,3034,15,1,f +6238,30391,0,4,f +6238,3040b,15,2,f +6238,30622,25,1,f +6238,30625,7,2,f +6238,30639pb02,15,1,f +6238,30640,15,1,f +6238,30643,25,1,f +6238,30647,15,2,f +6238,30663,0,3,f +6238,3068bp70,15,1,f +6238,3941,25,1,f +6238,3941,14,1,f +6238,3962b,0,1,f +6238,4006,0,1,f +6238,4083,7,1,f +6238,4522,0,1,f +6238,4589,57,1,f +6238,758c01,7,1,f +6238,js027,-1,1,f +6239,265bc01,14,2,f +6240,11439pat0001,46,1,f +6240,14769,297,1,f +6240,14769pr1026,297,1,f +6240,15712,0,1,f +6240,16965,0,1,f +6240,18585,0,1,f +6240,18590,0,1,f +6240,18591,47,1,f +6240,18592,4,1,f +6240,2654,4,1,f +6240,3001,0,1,f +6240,30173b,297,2,f +6240,3021,72,4,f +6240,30602,4,2,f +6240,3626cpr1678,4,1,f +6240,43712,4,1,f +6240,43713,4,1,f +6240,4733,0,1,f +6240,53451,297,1,f +6240,6126b,182,1,f +6240,6141,297,2,f +6240,64567,297,1,f +6240,64644,308,1,f +6240,85975,70,1,f +6240,87087,0,2,f +6240,93055,297,1,f +6240,93058,297,2,f +6240,970c00pr0861,0,1,f +6240,973pr3021c01,0,1,f +6240,98133,4,1,f +6240,98138,297,2,f +6240,98141,297,1,f +6240,99780,0,3,f +6240,99781,0,3,f +6242,10247,0,12,f +6242,11090,72,16,f +6242,11203,72,4,f +6242,11212,71,14,f +6242,15303,35,4,f +6242,15400,72,2,f +6242,16478,41,1,f +6242,16497pr0001,72,2,f +6242,18759,71,2,f +6242,2357,71,2,f +6242,2412b,0,14,f +6242,2412b,72,32,f +6242,2420,71,2,f +6242,2431,71,3,f +6242,2431,0,1,f +6242,2445,71,20,f +6242,2445,72,17,f +6242,2450,72,6,f +6242,2456,19,1,f +6242,2476,71,8,f +6242,2540,72,4,f +6242,2639,72,4,f +6242,2653,71,4,f +6242,2654,0,17,f +6242,2730,71,1,f +6242,2736,71,2,f +6242,2780,0,2,t +6242,2780,0,21,f +6242,2825,0,4,f +6242,2877,72,2,f +6242,3001,0,2,f +6242,3001,15,1,f +6242,3004,72,18,f +6242,3007,71,1,f +6242,3009,71,2,f +6242,3010,71,3,f +6242,30106,71,2,f +6242,3020,0,19,f +6242,3020,71,6,f +6242,3020,72,4,f +6242,3021,0,2,f +6242,3021,72,18,f +6242,3021,71,23,f +6242,3022,0,2,f +6242,3022,72,14,f +6242,3022,71,10,f +6242,3023,71,9,f +6242,3023,0,23,f +6242,30237a,72,2,f +6242,3028,71,8,f +6242,3029,72,2,f +6242,3029,71,5,f +6242,3031,72,2,f +6242,3031,71,4,f +6242,3032,72,9,f +6242,3033,71,2,f +6242,3034,72,7,f +6242,3035,71,5,f +6242,3035,72,2,f +6242,30355,71,2,f +6242,30356,71,2,f +6242,3036,71,2,f +6242,3036,72,2,f +6242,30367c,0,1,f +6242,30368,0,1,f +6242,30374,36,1,f +6242,3039,0,4,f +6242,30408pr0007,15,2,f +6242,30503,0,2,f +6242,3062b,71,10,f +6242,3068b,0,2,f +6242,3068b,72,6,f +6242,3069b,71,10,f +6242,32000,71,4,f +6242,32000,72,4,f +6242,32002,19,2,t +6242,32002,19,10,f +6242,32009,71,3,f +6242,32013,72,2,f +6242,32018,72,2,f +6242,32028,71,8,f +6242,32054,71,8,f +6242,32054,4,15,f +6242,32059,71,1,f +6242,32062,4,2,f +6242,32073,71,10,f +6242,32123b,14,1,t +6242,32123b,14,3,f +6242,32140,72,6,f +6242,32184,71,6,f +6242,32250,72,4,f +6242,32291,4,2,f +6242,32316,71,2,f +6242,3245c,71,1,f +6242,32523,4,1,f +6242,3298,71,1,f +6242,3460,72,12,f +6242,3623,0,4,f +6242,3623,71,4,f +6242,3626cpr1149,78,2,f +6242,3626cpr1318,78,1,f +6242,3626cpr1363,78,1,f +6242,3626cpr1443,19,1,f +6242,3626cpr1492,78,1,f +6242,3660,71,20,f +6242,3666,71,24,f +6242,3666,0,8,f +6242,3666,72,2,f +6242,3678b,71,7,f +6242,3679,71,12,f +6242,3680,0,12,f +6242,3700,0,3,f +6242,3700,19,2,f +6242,3701,72,3,f +6242,3701,0,2,f +6242,3702,0,1,f +6242,3703,71,7,f +6242,3705,0,10,f +6242,3706,0,2,f +6242,3710,71,18,f +6242,3710,72,8,f +6242,3710,0,6,f +6242,3713,4,1,t +6242,3713,4,1,f +6242,3795,71,24,f +6242,3795,72,10,f +6242,3832,72,4,f +6242,3832,71,2,f +6242,3899,47,1,f +6242,3958,0,2,f +6242,4070,71,2,f +6242,4079,0,2,f +6242,4081b,72,2,f +6242,4162,72,2,f +6242,41678,72,2,f +6242,41678,0,6,f +6242,41767,72,1,f +6242,41768,72,1,f +6242,41769,71,2,f +6242,41769,72,7,f +6242,41770,71,2,f +6242,41770,72,7,f +6242,42003,0,1,f +6242,42023,72,2,f +6242,4215b,41,1,f +6242,4274,71,2,t +6242,4274,71,8,f +6242,4287,72,2,f +6242,43722,71,14,f +6242,43723,71,14,f +6242,44728,72,2,f +6242,4477,0,4,f +6242,4510,72,4,f +6242,4510,71,4,f +6242,4519,71,2,f +6242,4740,41,4,f +6242,4740,71,1,f +6242,47905,0,1,f +6242,48336,0,5,f +6242,48336,71,8,f +6242,50231,0,1,f +6242,50304,0,2,f +6242,50305,0,2,f +6242,54200,0,1,t +6242,54200,0,2,f +6242,54383,71,22,f +6242,54383,72,7,f +6242,54384,71,22,f +6242,54384,72,7,f +6242,55981,71,4,f +6242,56145,71,3,f +6242,58247,0,2,f +6242,59443,72,2,f +6242,60470a,71,8,f +6242,60474,0,2,f +6242,60477,72,6,f +6242,60478,71,12,f +6242,60478,72,8,f +6242,60479,71,19,f +6242,60481,71,8,f +6242,60483,71,6,f +6242,60897,71,4,f +6242,60897,72,10,f +6242,6141,47,50,f +6242,6141,47,2,t +6242,6141,0,4,f +6242,6141,36,4,t +6242,6141,36,11,f +6242,6141,0,1,t +6242,6178,71,3,f +6242,6179,72,2,f +6242,6180,71,20,f +6242,6231,71,2,f +6242,6232,19,7,f +6242,62462,0,3,f +6242,63864,71,8,f +6242,63864,72,4,f +6242,63868,71,22,f +6242,64567,80,1,f +6242,64567,80,1,t +6242,6536,72,10,f +6242,6558,1,11,f +6242,6572,71,1,f +6242,6629,0,2,f +6242,6636,0,8,f +6242,6636,72,9,f +6242,73983,72,12,f +6242,76766,71,5,f +6242,85984,72,7,f +6242,85984,71,2,f +6242,87079,71,2,f +6242,87079,0,14,f +6242,88072,4,8,f +6242,90194,72,1,f +6242,91988,72,2,f +6242,92280,71,10,f +6242,92582,0,4,f +6242,92738,0,2,f +6242,93274,72,5,f +6242,96874,25,1,t +6242,970c00,72,1,f +6242,970c00pr0583,0,1,f +6242,970c00pr0705,71,1,f +6242,970c00pr0718,0,1,f +6242,970c00pr0719,15,2,f +6242,973pr2697c01,0,1,f +6242,973pr2763c01,72,1,f +6242,973pr2764c01,71,1,f +6242,973pr2767c01,15,2,f +6242,973pr2768c01,0,1,f +6242,98108,0,1,f +6242,98286,71,16,f +6242,98560,71,1,f +6242,98585,41,3,f +6242,98989,71,2,f +6242,99206,71,2,f +6242,99207,0,8,f +6243,2357,0,2,f +6243,2412b,14,1,f +6243,2420,15,2,f +6243,2431,15,5,f +6243,2432,379,2,f +6243,2444,71,3,f +6243,2449,0,6,f +6243,2456,0,2,f +6243,2458,1,4,f +6243,2555,15,13,f +6243,2569,182,2,f +6243,2654,143,2,f +6243,2780,0,12,f +6243,2877,379,12,f +6243,2921,71,2,f +6243,3001,0,3,f +6243,30031,0,2,f +6243,3004,0,2,f +6243,3006,0,2,f +6243,3009,379,4,f +6243,3009,0,2,f +6243,3010,379,1,f +6243,3010,0,2,f +6243,30106,47,2,f +6243,30136,0,4,f +6243,30152pat0003,0,1,f +6243,30162,72,1,f +6243,30171,0,1,f +6243,30193,72,1,f +6243,30193,72,1,t +6243,3020,379,1,f +6243,3020,15,2,f +6243,3021,15,4,f +6243,3021,379,1,f +6243,30214,143,1,f +6243,3022,72,4,f +6243,3023,15,13,f +6243,30237a,71,2,f +6243,3029,15,2,f +6243,3031,379,2,f +6243,30324,0,4,f +6243,3034,71,2,f +6243,3035,15,1,f +6243,3039,15,4,f +6243,30407,0,4,f +6243,3040b,0,4,f +6243,3040b,15,2,f +6243,3040bpr0003,71,2,f +6243,30414,19,4,f +6243,30553,71,1,f +6243,3062b,71,2,f +6243,3068bpr0108,72,2,f +6243,3069b,379,4,f +6243,3069bpb091,0,2,f +6243,3069bpr0070,0,1,f +6243,3069bpr0086,71,1,f +6243,3070b,36,6,f +6243,32000,0,4,f +6243,32013,1,2,f +6243,32018,0,4,f +6243,32074c01,0,1,f +6243,32123b,71,2,f +6243,32123b,71,1,t +6243,32523,15,1,f +6243,32531,0,2,f +6243,32532,0,1,f +6243,32556,71,4,f +6243,3297,272,2,f +6243,3298,0,1,f +6243,3403c01,15,1,f +6243,3460,71,1,f +6243,3623,71,2,f +6243,3626bpb0090,71,1,f +6243,3626bpb0091,15,2,f +6243,3626bpb0227,14,1,f +6243,3626bpb0230,14,1,f +6243,3626bpb0234,14,1,f +6243,3626bpr0190,15,1,f +6243,3660,0,5,f +6243,3665,379,6,f +6243,3676,0,2,f +6243,3678b,72,1,f +6243,3684,0,1,f +6243,3700,71,1,f +6243,3701,71,4,f +6243,3710,0,6,f +6243,3738,0,1,f +6243,3794a,15,3,f +6243,3795,379,1,f +6243,3795,15,2,f +6243,3795,0,6,f +6243,3835,0,1,f +6243,3895,272,2,f +6243,3937,72,4,f +6243,3939,272,2,f +6243,3962b,72,1,f +6243,4032a,15,1,f +6243,4085c,71,4,f +6243,41334,0,1,f +6243,41532,0,1,f +6243,41539,0,2,f +6243,4162,0,2,f +6243,41669,1,4,f +6243,41749,272,1,f +6243,41750,272,1,f +6243,41753,8,1,f +6243,42003,0,2,f +6243,42022,0,2,f +6243,42060,272,1,f +6243,42060pb05,379,2,f +6243,42061,272,1,f +6243,42061pb05,379,2,f +6243,4286,71,2,f +6243,4287,0,2,f +6243,4287,379,2,f +6243,43093,1,16,f +6243,43337,0,2,f +6243,44126,15,2,f +6243,44294,71,2,f +6243,44301a,0,4,f +6243,44302a,71,4,f +6243,44572,36,1,f +6243,44822,71,1,f +6243,4485,0,1,f +6243,4519,71,3,f +6243,4589,182,1,f +6243,47753,272,2,f +6243,47843,379,1,f +6243,47844pb01,47,1,f +6243,47846,0,1,f +6243,47847pat0001,143,2,f +6243,48336,19,4,f +6243,6019,1,1,f +6243,6111,0,2,f +6243,6134,19,4,f +6243,6141,33,1,t +6243,6141,182,1,t +6243,6141,182,24,f +6243,6141,33,2,f +6243,63965,0,2,f +6243,6536,15,13,f +6243,6538b,1,2,f +6243,6541,0,2,f +6243,6558,0,12,f +6243,6628,0,6,f +6243,76110c01,71,1,f +6243,85545,1,2,f +6243,970c00pb034,0,1,f +6243,970c00pb035,0,2,f +6243,970c00pb037,0,1,f +6243,970d04,320,1,f +6243,973pb0348c01,0,1,f +6243,973pb0349c01,0,1,f +6243,973pb0351c01,0,1,f +6243,973pb0351c02,0,1,f +6243,973pb0397c01,0,1,f +6246,3006,14,2,f +6246,3006,15,2,f +6246,3006,4,2,f +6246,3006,1,2,f +6246,3007,15,3,f +6246,3007,1,3,f +6246,3007,4,3,f +6246,3007,14,3,f +6249,45474,118,1,f +6249,45481,230,1,f +6249,46277,13,4,f +6249,46296,45,1,f +6249,clikits011,45,1,f +6249,clikits012,47,1,f +6249,clikits022,118,4,f +6249,clikits171,89,1,f +6249,clikits197,89,1,f +6251,3023,15,1,f +6251,3024,4,2,f +6251,3024,4,1,t +6251,3794b,4,2,f +6251,3794b,27,1,f +6251,3794b,15,1,f +6251,41769,320,1,f +6251,41770,320,1,f +6251,42446,71,1,t +6251,42446,71,1,f +6251,54200,15,1,f +6251,54200,40,1,t +6251,54200,15,1,t +6251,54200,40,1,f +6251,63864,15,1,f +6254,2423,2,1,f +6254,2526,15,1,t +6254,2526,15,1,f +6254,3010,7,4,f +6254,30172,15,1,f +6254,3023,1,2,f +6254,3032,6,1,f +6254,30464,2,1,f +6254,3626bpa7,14,1,f +6254,4085c,0,4,f +6254,4133396,9999,1,t +6254,4433,14,1,f +6254,6016,8,2,f +6254,970c00,7,1,f +6254,973pa7c01,19,1,f +6255,2412b,71,9,f +6255,2444,0,2,f +6255,2780,0,114,f +6255,2780,0,2,t +6255,2819,71,1,f +6255,2825,4,1,f +6255,2850a,71,4,f +6255,2851,14,4,f +6255,2852,71,4,f +6255,2853,71,2,f +6255,2854,72,1,f +6255,2905,72,2,f +6255,3020,0,4,f +6255,3023,182,2,f +6255,3023,0,1,f +6255,3032,0,1,f +6255,3034,0,1,f +6255,30395,72,1,f +6255,3069b,0,1,f +6255,3069b,182,2,f +6255,32000,0,2,f +6255,32009,0,6,f +6255,32013,0,9,f +6255,32014,0,4,f +6255,32014,72,2,f +6255,32015,0,4,f +6255,32016,0,6,f +6255,32017,71,2,f +6255,32019,0,4,f +6255,32034,0,5,f +6255,32034,4,10,f +6255,32039,71,12,f +6255,32054,4,28,f +6255,32056,72,2,f +6255,32062,4,32,f +6255,32072,14,4,f +6255,32073,71,30,f +6255,32123b,71,1,t +6255,32123b,71,4,f +6255,32123b,14,22,f +6255,32123b,14,1,t +6255,32126,0,4,f +6255,32140,0,4,f +6255,32140,4,4,f +6255,32184,0,10,f +6255,32192,72,3,f +6255,32269,0,1,f +6255,32270,0,4,f +6255,32271,0,4,f +6255,32278,71,5,f +6255,32291,72,10,f +6255,32316,1,4,f +6255,32316,4,4,f +6255,32316,71,3,f +6255,32316,0,7,f +6255,32333,71,2,f +6255,32348,0,4,f +6255,32523,0,7,f +6255,32524,15,2,f +6255,32524,0,4,f +6255,32524,4,4,f +6255,32524,71,10,f +6255,32525,0,8,f +6255,32525,71,8,f +6255,32525,4,2,f +6255,32526,4,16,f +6255,32526,0,2,f +6255,32556,19,3,f +6255,32557,0,4,f +6255,33299a,0,2,f +6255,3648b,72,2,f +6255,3666,0,2,f +6255,3673,71,10,f +6255,3673,71,1,t +6255,3705,0,24,f +6255,3706,0,7,f +6255,3707,0,5,f +6255,3710,0,1,f +6255,3713,71,1,t +6255,3713,71,27,f +6255,3737,0,1,f +6255,3749,19,4,f +6255,40490,4,2,f +6255,40490,0,7,f +6255,40490,71,5,f +6255,41239,71,4,f +6255,4162,0,4,f +6255,41669,0,2,f +6255,41677,4,20,f +6255,41678,72,4,f +6255,42003,71,7,f +6255,4274,71,1,t +6255,4274,71,12,f +6255,43093,1,49,f +6255,44294,71,4,f +6255,4519,71,28,f +6255,4716,71,1,f +6255,48989,71,8,f +6255,54200,0,1,t +6255,54200,47,6,f +6255,54200,0,2,f +6255,54200,47,1,t +6255,54200,182,2,f +6255,54200,182,1,t +6255,55013,72,1,f +6255,56823c50,0,1,f +6255,59426,72,2,f +6255,59443,4,24,f +6255,59443,0,3,f +6255,60483,0,18,f +6255,60484,0,2,f +6255,60485,71,1,f +6255,6141,36,1,t +6255,6141,182,12,f +6255,6141,57,1,t +6255,6141,36,2,f +6255,61510,71,1,f +6255,62462,0,15,f +6255,62821,72,1,f +6255,64179,71,1,f +6255,64391,0,2,f +6255,64392,0,2,f +6255,64682,0,2,f +6255,64683,0,2,f +6255,6536,72,22,f +6255,6538b,19,1,f +6255,6539,4,1,f +6255,6542b,72,3,f +6255,6553,0,3,f +6255,6558,1,53,f +6255,6589,19,1,t +6255,6589,19,4,f +6255,6632,1,8,f +6255,6632,71,6,f +6255,6636,0,1,f +6255,6641,4,1,f +6255,85984,0,4,f +6255,86652,71,4,f +6255,87082,0,2,f +6255,87083,72,2,f +6255,87761,0,1,f +6255,9395stk01,9999,1,t +6255,94925,71,5,f +6257,10907,320,1,f +6257,10908pr0007,320,1,f +6257,13731,72,2,f +6257,15068,71,2,f +6257,15391,71,2,f +6257,15392,72,2,f +6257,18663,47,1,f +6257,18986,47,1,f +6257,19303,148,1,f +6257,2412b,71,2,f +6257,2456,71,1,f +6257,2540,72,4,f +6257,2569,0,2,f +6257,2654,33,2,f +6257,3020,0,1,f +6257,3022,0,1,f +6257,3023,33,4,f +6257,3031,0,1,f +6257,30365,72,2,f +6257,30377,0,1,f +6257,30389c,0,2,f +6257,3039,71,1,f +6257,30565,72,2,f +6257,3062b,41,3,f +6257,3069b,0,1,f +6257,3298,0,4,f +6257,3626cpr0961,78,1,f +6257,3626cpr1650,148,3,f +6257,3660,71,1,f +6257,44728,71,2,f +6257,47755,0,1,f +6257,54200,72,2,f +6257,6005,72,2,f +6257,61252,0,2,f +6257,6141,41,3,f +6257,6141,33,18,f +6257,970c00pr0829,320,1,f +6257,970c00pr0845,148,3,f +6257,973pr2967c01,320,1,f +6257,973pr2968c01,148,3,f +6257,99780,72,2,f +6258,3004,4,2,f +6258,3004,72,1,f +6258,3022,71,2,f +6258,3024,4,1,f +6258,30374,14,2,f +6258,3040b,72,2,f +6258,3710,14,2,f +6258,4085c,4,3,f +6258,6141,33,1,t +6258,6141,33,2,f +6258,90509,14,2,f +6258,92593,15,1,f +6258,98283,84,4,f +6259,10144stk01,9999,1,t +6259,2339,72,4,f +6259,2356,0,2,f +6259,2357,70,31,f +6259,2357,484,8,f +6259,2376,0,2,f +6259,2412b,70,40,f +6259,2412b,19,10,f +6259,2412b,72,16,f +6259,2420,70,2,f +6259,2431,0,18,f +6259,2432,72,2,f +6259,2449,70,12,f +6259,2456,70,4,f +6259,2540,25,2,f +6259,2540,70,4,f +6259,2555,70,6,f +6259,2555,72,4,f +6259,2584,0,1,f +6259,2585,71,1,f +6259,2780,0,1,t +6259,2780,0,6,f +6259,2877,0,4,f +6259,2877,70,4,f +6259,2877,72,8,f +6259,2921,70,14,f +6259,298c02,71,1,t +6259,298c02,71,7,f +6259,3001,19,6,f +6259,3001,72,1,f +6259,3002,70,14,f +6259,3003,70,24,f +6259,3003,0,2,f +6259,3003,72,4,f +6259,3004,0,9,f +6259,3004,72,4,f +6259,3004,484,10,f +6259,3004,71,2,f +6259,3004,70,17,f +6259,3004,19,11,f +6259,3005,70,18,f +6259,3005,72,30,f +6259,3005,484,10,f +6259,3005,19,8,f +6259,30072,0,1,f +6259,3008,19,6,f +6259,3008,70,6,f +6259,3009,70,11,f +6259,3009,19,2,f +6259,3010,0,2,f +6259,3010,484,6,f +6259,3010,70,18,f +6259,3010,19,3,f +6259,30136,70,3,f +6259,30137,71,4,f +6259,3020,72,1,f +6259,3020,70,2,f +6259,3020,19,1,f +6259,3021,19,4,f +6259,3021,70,4,f +6259,3022,70,6,f +6259,3022,19,1,f +6259,3023,0,4,f +6259,3023,19,10,f +6259,3023,72,1,f +6259,30236,72,2,f +6259,3027,0,2,f +6259,3028,0,6,f +6259,3028,70,5,f +6259,3029,0,2,f +6259,3029,70,4,f +6259,3031,71,1,f +6259,3031,70,1,f +6259,3031,15,2,f +6259,3032,70,2,f +6259,3032,0,1,f +6259,3034,19,2,f +6259,3034,70,7,f +6259,3034,0,4,f +6259,3035,0,6,f +6259,3035,70,6,f +6259,3036,70,2,f +6259,30361cpr1,15,1,f +6259,30361dps1,15,1,f +6259,30362,15,4,f +6259,30363,70,18,f +6259,30367apr01,15,1,f +6259,30367b,2,1,f +6259,30367b,15,1,f +6259,3037,70,6,f +6259,30375,19,1,f +6259,30376,72,1,f +6259,30377,15,4,f +6259,30377,15,1,t +6259,30377,72,2,f +6259,30377,72,1,t +6259,30381,70,3,f +6259,30388,71,2,f +6259,30389b,0,1,f +6259,3039,0,3,f +6259,3039,70,11,f +6259,30395,72,1,f +6259,3040b,72,2,f +6259,3040b,70,2,f +6259,3040b,0,4,f +6259,30414,72,5,f +6259,30414,19,1,f +6259,3045,72,2,f +6259,30480,142,1,f +6259,30503,70,2,f +6259,30540,0,4,f +6259,30541,0,4,f +6259,3062b,19,5,f +6259,3062b,72,16,f +6259,3065,46,2,f +6259,30663,0,1,f +6259,3068b,70,12,f +6259,3069b,70,3,f +6259,3070b,70,1,t +6259,3070b,70,2,f +6259,32000,15,2,f +6259,32001,14,6,f +6259,32002,72,4,f +6259,32002,72,1,t +6259,32013,72,6,f +6259,32054,0,8,f +6259,32062,0,4,f +6259,32064b,72,4,f +6259,32269,0,2,f +6259,32324,71,2,f +6259,32449,15,2,f +6259,3245b,72,6,f +6259,32526,19,2,f +6259,3298,70,9,f +6259,3455,72,2,f +6259,3460,72,6,f +6259,3460,70,1,t +6259,3460,70,7,f +6259,3622,70,48,f +6259,3622,484,8,f +6259,3623,72,2,f +6259,3626bpb0251,0,3,f +6259,3626bpb0252,78,1,f +6259,3647,71,2,f +6259,3659,0,1,f +6259,3660,70,34,f +6259,3665,484,12,f +6259,3665,70,18,f +6259,3665,72,4,f +6259,3666,70,5,f +6259,3666,0,2,f +6259,3679,71,3,f +6259,3680,0,3,f +6259,3684,70,10,f +6259,3700,72,7,f +6259,3701,70,8,f +6259,3702,71,8,f +6259,3702,0,2,f +6259,3703,0,5,f +6259,3705,0,3,f +6259,3706,0,18,f +6259,3708,0,1,f +6259,3709,15,6,f +6259,3710,72,3,f +6259,3710,19,8,f +6259,3710,0,4,f +6259,3713,71,1,t +6259,3713,71,33,f +6259,3743,71,1,f +6259,3749,19,8,f +6259,3794a,15,1,f +6259,3794a,72,3,f +6259,3794a,0,3,f +6259,3795,70,4,f +6259,3830,70,2,f +6259,3831,70,2,f +6259,3832,19,5,f +6259,3832,70,2,f +6259,3832,0,2,f +6259,3832,72,2,f +6259,3849,72,2,f +6259,3873,0,272,f +6259,3873,0,4,t +6259,3894,15,2,f +6259,3895,71,8,f +6259,3901,71,1,f +6259,3941,19,8,f +6259,3941,72,7,f +6259,3941,2,1,f +6259,3957a,15,1,f +6259,3959,0,3,f +6259,3960,72,2,f +6259,4019,71,32,f +6259,4032a,14,1,f +6259,4032a,19,5,f +6259,4032a,72,1,f +6259,4032a,2,1,f +6259,4070,0,6,f +6259,4070,70,40,f +6259,4081b,72,10,f +6259,4083,19,2,f +6259,4085c,71,2,f +6259,41529,71,1,f +6259,4162,72,8,f +6259,41767,70,1,f +6259,41768,70,1,f +6259,41879a,70,3,f +6259,4215b,70,16,f +6259,4282,15,1,f +6259,4286,70,6,f +6259,4287,70,22,f +6259,43093,1,2,f +6259,4345b,72,1,f +6259,4346pb09,72,1,f +6259,43720,0,1,f +6259,43721,0,1,f +6259,4445,72,1,f +6259,44570,70,1,f +6259,4460a,0,2,f +6259,44675,0,4,f +6259,4477,0,2,f +6259,44822,72,1,f +6259,4599a,0,10,f +6259,4623,72,1,f +6259,4735,72,5,f +6259,4740,72,2,f +6259,4740,70,8,f +6259,4864b,70,16,f +6259,4865a,0,4,f +6259,4865a,72,7,f +6259,50304,70,2,f +6259,50305,70,2,f +6259,55295,0,1,f +6259,55296,0,1,f +6259,55297,0,1,f +6259,55298,0,1,f +6259,55299,0,1,f +6259,55300,0,1,f +6259,56823c50,0,1,f +6259,6019,72,1,f +6259,6087,0,1,f +6259,6106,70,2,f +6259,6111,70,6,f +6259,6112,70,2,f +6259,6112,72,2,f +6259,6112,71,4,f +6259,6141,71,1,t +6259,6141,57,1,t +6259,6141,34,2,f +6259,6141,36,1,t +6259,6141,0,1,t +6259,6141,46,2,f +6259,6141,47,1,t +6259,6141,57,5,f +6259,6141,46,1,t +6259,6141,0,18,f +6259,6141,47,1,f +6259,6141,34,1,t +6259,6141,71,2,f +6259,6141,70,1,t +6259,6141,70,16,f +6259,6141,36,2,f +6259,6259,70,4,f +6259,6558,0,2,f +6259,6636,0,4,f +6259,6636,72,14,f +6259,970c00,70,1,f +6259,970c00,142,1,f +6259,973pb0405c01,70,3,f +6259,973pb0406c01,19,1,f +6259,973px160c01,142,1,f +6259,bb195,70,3,f +6261,3007,7,25,f +6262,2431,1,2,f +6262,2825,7,2,f +6262,2854,7,2,f +6262,3001,4,2,f +6262,3004,4,4,f +6262,3023,1,6,f +6262,3036,1,1,f +6262,3040b,4,4,f +6262,32013,1,4,f +6262,32064b,2,4,f +6262,32124,1,2,f +6262,3649,7,2,f +6262,3700,4,4,f +6262,3710,1,2,f +6262,3736,7,1,f +6262,3867,2,1,f +6262,3941,4,2,f +6262,6575,7,2,f +6262,6588,14,1,f +6262,70496,0,1,f +6263,95646c01,15,1,f +6264,2421,7,1,f +6264,2437,41,1,f +6264,2446,15,1,f +6264,2447,41,1,f +6264,2610,14,1,f +6264,3003,0,1,f +6264,3022,0,1,f +6264,3023,14,3,f +6264,3032,0,1,f +6264,3626apr0001,14,1,f +6264,3666,0,4,f +6264,3710,14,1,f +6264,3829c01,14,1,f +6264,4162,14,2,f +6264,4488,7,1,f +6264,4856a,0,1,f +6264,4859,14,1,f +6264,970c00,0,1,f +6264,973c18,0,1,f +6265,3004,4,44,f +6265,3004,0,22,f +6265,3004,14,22,f +6265,3004,15,44,f +6265,3004,47,22,f +6265,3004,1,22,f +6266,3626bpr0881,14,1,f +6266,4006,71,1,f +6266,88646,0,1,f +6266,970c00pr0287,272,1,f +6266,973pr1953c01,272,1,f +6266,98368,4,1,f +6266,98371,0,1,f +6267,15530,272,1,f +6267,3068bpr0138,15,1,f +6267,3626bpr0891,14,1,f +6267,4349,4,1,f +6267,970c00,272,1,f +6267,973pr2501c01,1,1,f +6268,11438,4,1,f +6268,11439pat0004,34,1,f +6268,2412b,297,3,f +6268,2419,72,1,f +6268,2420,0,2,f +6268,2730,0,2,f +6268,2730,71,2,f +6268,2780,0,1,t +6268,2780,0,6,f +6268,3001,70,3,f +6268,3002,19,1,f +6268,3003,4,1,f +6268,3010,378,2,f +6268,30173b,0,1,f +6268,30173b,0,1,t +6268,3020,28,2,f +6268,3022,0,2,f +6268,3023,25,7,f +6268,3032,72,1,f +6268,3037,71,1,f +6268,30414,71,2,f +6268,30553,72,2,f +6268,32054,0,2,f +6268,32059,0,1,f +6268,32064b,14,2,f +6268,32073,71,1,f +6268,32123b,14,3,f +6268,32123b,14,1,t +6268,32270,0,1,f +6268,32523,71,2,f +6268,3297,0,1,f +6268,3622,70,2,f +6268,3623,70,4,f +6268,3626cpr0745,14,1,f +6268,3626cpr1083,0,1,f +6268,3648b,72,1,f +6268,3701,70,2,f +6268,3706,0,1,f +6268,3710,0,4,f +6268,3710,19,2,f +6268,3713,4,1,t +6268,3713,4,4,f +6268,3795,72,2,f +6268,3795,70,2,f +6268,3941,57,1,f +6268,4032a,0,2,f +6268,41769,0,1,f +6268,41770,0,1,f +6268,4274,1,1,t +6268,4274,1,2,f +6268,43722,72,1,f +6268,43723,72,1,f +6268,44301a,0,2,f +6268,44728,19,2,f +6268,4519,71,1,f +6268,4589,297,3,f +6268,47457,297,2,f +6268,50950,0,2,f +6268,52501,72,2,f +6268,55013,72,1,f +6268,56145,297,2,f +6268,59426,72,2,f +6268,59443,4,1,f +6268,60474,297,2,f +6268,60484,0,1,f +6268,60485,71,1,f +6268,61072,179,2,f +6268,6141,297,1,t +6268,6141,15,1,t +6268,6141,15,8,f +6268,6141,297,6,f +6268,61481,0,2,f +6268,6182,19,1,f +6268,62361,0,2,f +6268,63864,71,2,f +6268,64712,0,3,f +6268,64713,297,1,f +6268,64867,70,2,f +6268,6583,0,1,f +6268,6589,19,1,t +6268,6589,19,1,f +6268,6636,0,2,f +6268,70502stk01,9999,1,t +6268,85984,71,1,f +6268,87079,378,1,f +6268,88292,0,2,f +6268,92280,378,2,f +6268,92579,40,1,f +6268,92690,297,1,f +6268,92946,72,2,f +6268,93059,4,1,f +6268,94925,71,2,f +6268,970c00pr0418,0,1,f +6268,970c00pr0422,0,1,f +6268,973pr2186c01,0,1,f +6268,973pr2187c01,72,1,f +6268,98133pr0004,0,1,f +6268,98137,297,2,f +6268,99780,72,1,f +6268,99781,71,1,f +6269,3004,29,2,f +6269,3004,15,1,f +6269,3021,15,1,f +6269,3069b,29,2,f +6269,3794b,15,1,f +6269,4150pr0011a,27,1,f +6272,2339,71,4,f +6272,2343,297,2,f +6272,2345,71,7,f +6272,2357,71,18,f +6272,2400,0,2,f +6272,2417,288,2,f +6272,2431,70,2,f +6272,2453a,71,4,f +6272,2454a,71,7,f +6272,2456,71,6,f +6272,2456,72,2,f +6272,2458,72,2,f +6272,2460,72,2,f +6272,2462,71,10,f +6272,2489,70,1,f +6272,2490pr0001,272,1,f +6272,2555,0,3,f +6272,2566,0,1,f +6272,2570,70,2,f +6272,2586p4h,71,1,f +6272,2586px14,71,3,f +6272,2736,71,2,f +6272,2780,0,8,f +6272,2780,0,3,t +6272,2921,0,2,f +6272,3001,70,1,f +6272,3001,72,4,f +6272,3001,71,7,f +6272,3002,71,14,f +6272,3003,70,1,f +6272,3003,71,13,f +6272,3004,71,112,f +6272,3004,70,4,f +6272,3004,72,6,f +6272,3004,15,1,f +6272,3005,71,53,f +6272,30055,0,8,f +6272,3007,0,2,f +6272,3008,0,2,f +6272,3008,71,12,f +6272,3009,71,14,f +6272,3009,72,1,f +6272,3010,71,27,f +6272,30134,70,1,f +6272,30145,71,2,f +6272,30153,36,1,f +6272,30153,34,2,f +6272,30153,33,2,f +6272,30153,46,1,f +6272,3020,72,2,f +6272,3020,71,2,f +6272,3020,0,1,f +6272,3022,70,4,f +6272,3022,0,1,f +6272,3022,72,2,f +6272,3023,15,1,f +6272,3023,72,7,f +6272,3023,70,2,f +6272,30237a,70,3,f +6272,30237a,71,6,f +6272,30246,71,1,f +6272,30272,71,1,f +6272,30274,71,2,f +6272,30275,70,1,f +6272,3029,288,4,f +6272,3029,72,3,f +6272,3030,72,5,f +6272,3030,288,6,f +6272,3031,71,1,f +6272,3033,72,2,f +6272,3034,72,2,f +6272,3035,288,5,f +6272,3035,72,6,f +6272,3036,71,2,f +6272,3036,72,2,f +6272,3036,70,2,f +6272,30364,71,1,f +6272,3037,71,3,f +6272,30383,0,4,f +6272,3039,272,4,f +6272,30414,72,2,f +6272,3045,272,4,f +6272,3048c,297,20,f +6272,30553,0,4,f +6272,30553,72,3,f +6272,30565,288,3,f +6272,30565,72,7,f +6272,3062b,272,4,f +6272,3062b,70,6,f +6272,3068b,71,2,f +6272,3069b,70,2,f +6272,32000,0,1,f +6272,32034,0,2,f +6272,32054,71,3,f +6272,32064b,71,2,f +6272,32069,0,2,f +6272,32523,72,2,f +6272,32530,72,2,f +6272,32556,71,1,f +6272,3307,71,9,f +6272,3308,71,11,f +6272,3403c01,0,1,f +6272,3460,70,4,f +6272,3581,71,2,f +6272,3622,71,26,f +6272,3659,71,3,f +6272,3660,0,31,f +6272,3666,71,1,f +6272,3666,72,2,f +6272,3666,272,1,f +6272,3666,70,2,f +6272,3678b,72,10,f +6272,3678b,272,4,f +6272,3684,71,2,f +6272,3688,272,1,f +6272,3700,70,19,f +6272,3701,72,8,f +6272,3702,71,1,f +6272,3705,0,2,f +6272,3710,272,2,f +6272,3710,70,3,f +6272,3710,72,3,f +6272,3713,71,4,f +6272,3713,71,2,t +6272,3737,0,1,f +6272,3749,19,4,f +6272,3794a,0,8,f +6272,3795,72,1,f +6272,3795,70,2,f +6272,3832,72,1,f +6272,3832,71,2,f +6272,3846pr24,71,5,f +6272,3847,135,3,f +6272,3848,72,2,f +6272,3849,135,1,f +6272,3894,71,2,f +6272,3895,0,2,f +6272,3941,272,14,f +6272,3941,0,3,f +6272,4032a,70,1,f +6272,4035,71,10,f +6272,40378,0,1,f +6272,40379,320,2,f +6272,40395,0,1,f +6272,4070,72,6,f +6272,4095,71,2,f +6272,41539,72,2,f +6272,4162,72,7,f +6272,4286,0,2,f +6272,4286,71,2,f +6272,4287,0,2,f +6272,43899,72,2,f +6272,4444,71,10,f +6272,44567a,71,2,f +6272,4460b,71,2,f +6272,4495b,272,4,f +6272,4495b,82,4,f +6272,4497,135,1,f +6272,4499,70,2,f +6272,4523,70,1,f +6272,4529,0,2,f +6272,4589,272,15,f +6272,45918,0,6,f +6272,4738a,70,1,f +6272,4739a,70,1,f +6272,48092,71,3,f +6272,48336,0,3,f +6272,48492,272,1,f +6272,4865a,71,3,f +6272,4871,272,3,f +6272,48729a,0,2,t +6272,48729a,0,2,f +6272,51342pat0006b,320,2,f +6272,51874pat0002,0,1,f +6272,53451,4,1,t +6272,53451,4,3,f +6272,53705,132,2,f +6272,59,334,1,f +6272,59217pat02,0,1,f +6272,59218pat02,0,1,f +6272,59224pat0002,0,2,f +6272,59225c01,0,1,f +6272,59226pr02,0,1,f +6272,59227pr02,0,1,f +6272,59229,72,2,f +6272,59230,0,1,t +6272,59230,15,1,t +6272,59231pr0001,72,2,f +6272,59232,135,1,f +6272,60169,72,2,f +6272,6046,0,1,f +6272,6056,71,2,f +6272,6066,71,8,f +6272,6082pat0001,72,3,f +6272,6108,71,2,f +6272,6126a,57,12,f +6272,6231,71,2,f +6272,6232,72,4,f +6272,62436pat0001,0,1,f +6272,62438pat0001,0,1,f +6272,63965,0,2,f +6272,6558,0,2,f +6272,6587,72,3,f +6272,7094stk01,9999,1,t +6272,75998pr0007,15,1,f +6274,2444,14,2,f +6274,2654,0,2,f +6274,2780,0,4,t +6274,2780,0,82,f +6274,30663,71,1,f +6274,3068b,0,2,f +6274,32002,72,2,f +6274,32002,72,1,t +6274,32014,0,2,f +6274,32016,0,1,f +6274,32019,0,6,f +6274,32020,14,6,f +6274,32034,71,6,f +6274,32039,0,7,f +6274,32054,71,20,f +6274,32056,14,4,f +6274,32056,72,8,f +6274,32062,4,8,f +6274,32073,71,13,f +6274,32123b,71,3,t +6274,32123b,71,11,f +6274,32138,71,6,f +6274,32140,1,2,f +6274,32140,14,6,f +6274,32140,0,10,f +6274,32184,0,8,f +6274,32271,14,6,f +6274,32278,14,2,f +6274,32278,72,2,f +6274,32291,72,2,f +6274,32291,0,3,f +6274,32316,14,6,f +6274,32348,72,2,f +6274,32348,0,4,f +6274,32449,71,2,f +6274,32523,14,6,f +6274,32524,14,7,f +6274,32524,72,2,f +6274,32525,14,8,f +6274,32525,72,4,f +6274,32526,14,2,f +6274,32527,14,1,f +6274,32528,14,1,f +6274,33299a,0,2,f +6274,3647,72,1,f +6274,3705,0,7,f +6274,3706,0,2,f +6274,3713,71,4,t +6274,3713,71,27,f +6274,3941,0,1,f +6274,3941,46,1,f +6274,40490,14,6,f +6274,40490,0,1,f +6274,41239,14,1,f +6274,41239,72,8,f +6274,41677,4,4,f +6274,42003,0,4,f +6274,4274,71,1,f +6274,4274,71,1,t +6274,43093,1,48,f +6274,44294,71,8,f +6274,4519,71,33,f +6274,48989,71,2,f +6274,50163,72,1,f +6274,53543,135,2,f +6274,58119,71,1,f +6274,58120,71,1,f +6274,59426,72,6,f +6274,59443,14,16,f +6274,60483,0,10,f +6274,60484,0,5,f +6274,60485,71,1,f +6274,6141,47,2,t +6274,6141,36,1,t +6274,6141,36,2,f +6274,6141,182,4,f +6274,6141,182,2,t +6274,6141,71,4,f +6274,6141,71,1,t +6274,6141,47,8,f +6274,61905,72,1,f +6274,61927a,71,1,f +6274,62462,0,3,f +6274,64782,14,6,f +6274,6536,14,10,f +6274,6536,72,11,f +6274,6558,1,29,f +6274,6629,0,4,f +6274,6632,14,2,f +6274,6632,0,14,f +6275,2412b,143,1,f +6275,2540,72,2,f +6275,2540,15,1,f +6275,2654,15,1,f +6275,44661,15,1,f +6275,44676,15,2,f +6275,54200,40,1,f +6275,54200,40,1,t +6275,61252,15,1,f +6275,99781,15,1,f +6277,12825,72,2,f +6277,15573,15,2,f +6277,2412b,0,1,f +6277,30162,72,1,f +6277,3021,72,1,f +6277,3023,19,1,f +6277,30374,71,2,f +6277,3794b,25,1,f +6277,43722,15,1,f +6277,43723,15,1,f +6277,54200,40,1,t +6277,54200,40,2,f +6277,6141,72,1,t +6277,6141,72,2,f +6277,99780,71,2,f +6279,31bc01,4,12,f +6279,31bc01,15,12,f +6280,2432,70,1,f +6280,3021,70,1,f +6280,3024,71,1,f +6280,3024,71,1,t +6280,30374,70,3,f +6280,3794b,72,1,f +6280,4070,70,1,f +6280,61252,71,4,f +6280,64802,179,1,f +6280,98138,71,1,t +6280,98138,71,1,f +6280,98313,70,2,f +6283,2456,14,2,f +6283,2456,4,2,f +6283,2456,1,2,f +6283,3001,2,6,f +6283,3001,1,22,f +6283,3001,15,16,f +6283,3001,14,22,f +6283,3001,0,12,f +6283,3001,4,22,f +6283,3002,0,6,f +6283,3002,1,10,f +6283,3002,14,10,f +6283,3002,4,10,f +6283,3002,2,4,f +6283,3002,15,10,f +6283,3003,4,26,f +6283,3003,0,16,f +6283,3003,2,10,f +6283,3003,14,26,f +6283,3003,1,26,f +6283,3003,15,20,f +6283,3006,14,2,f +6283,3007,1,2,f +6283,3007,4,2,f +6283,3007,14,2,f +6284,3004,0,1,f +6284,3023,15,2,f +6284,3040b,15,2,f +6284,3665,15,2,f +6284,3700,15,2,f +6284,3710,15,2,f +6284,3710,0,1,f +6284,4070,15,2,f +6284,44301a,6,1,f +6284,44302a,6,1,f +6284,44567a,25,1,f +6284,6141,0,1,t +6284,6141,0,2,f +6288,12825,4,1,f +6288,15573,15,1,f +6288,2415,71,1,f +6288,30031,0,1,f +6288,3464,15,1,f +6288,3710,4,2,f +6288,4600,71,1,f +6288,4624,15,2,f +6288,59895,0,3,f +6288,85984,15,1,f +6290,3001,14,1,f +6290,3001,4,1,f +6290,3001,1,1,f +6290,3003,4,2,f +6290,3003,1,1,f +6290,3003,14,2,f +6290,3004,14,3,f +6290,3004,1,3,f +6290,3004,4,4,f +6290,3010,14,2,f +6290,3020,4,2,f +6290,3021,1,2,f +6290,3022,1,1,f +6290,3022,4,1,f +6290,3034,4,3,f +6290,3039,14,2,f +6290,3039,47,2,f +6290,3137c01,0,2,f +6290,3641,0,4,f +6291,2431,15,1,f +6291,32016,7,2,f +6291,32034,7,2,f +6291,32056,0,1,f +6291,32062,0,8,f +6291,32073,7,2,f +6291,32579,7,1,f +6291,3707,0,1,f +6291,3713,7,1,f +6291,3713,7,1,t +6291,3749,19,1,f +6291,41677,0,2,f +6291,4274,7,2,f +6291,4274,7,1,t +6291,44790,4,1,f +6291,44791,4,1,f +6291,44845,135,1,f +6291,44847,0,2,f +6291,44848,0,2,f +6291,44849,4,1,f +6291,44850,7,1,f +6291,44851,7,1,f +6291,44852,7,1,f +6291,44855,7,1,f +6291,45276,4,2,f +6291,45590,0,1,f +6291,47073,89,1,f +6291,47074,4,1,f +6291,6536,0,2,f +6291,6558,0,2,f +6292,2418a,33,1,f +6292,2419,15,1,f +6292,2420,0,2,f +6292,2446,14,1,f +6292,2447,33,1,f +6292,2462,15,2,f +6292,298c02,0,2,f +6292,3004,15,1,f +6292,3020,15,2,f +6292,3022,0,1,f +6292,3023,0,3,f +6292,3024,0,2,f +6292,3024,33,2,f +6292,3039,15,1,f +6292,3069bp06,15,2,f +6292,3623,15,2,f +6292,3623,0,2,f +6292,3626apr0001,14,1,f +6292,3666,15,2,f +6292,3747a,15,2,f +6292,3838,14,1,f +6292,3935,15,1,f +6292,3936,15,1,f +6292,3937,15,1,f +6292,3956,0,2,f +6292,3959,15,2,f +6292,4070,15,2,f +6292,4085b,0,2,f +6292,4286,15,2,f +6292,4287,15,4,f +6292,4735,0,1,f +6292,4865a,15,2,f +6292,6141,36,2,f +6292,73983,15,2,f +6292,73983,0,2,f +6292,970c00,14,1,f +6292,973p6ec01,15,1,f +6293,4760c01,15,1,f +6294,3231b,7,1,f +6294,767,8,4,f +6298,3034,15,4,f +6298,3228a,1,8,f +6298,3231,1,2,f +6301,2339,71,1,f +6301,2343,297,1,f +6301,2419,1,1,f +6301,2449,71,2,f +6301,2530,72,1,t +6301,2530,72,3,f +6301,2551,70,1,f +6301,3005,71,3,f +6301,30153,41,1,f +6301,3020,28,6,f +6301,3023,72,4,f +6301,30237a,72,1,f +6301,30357,72,7,f +6301,30385,82,1,f +6301,3039,72,5,f +6301,3040b,72,7,f +6301,30565,28,4,f +6301,3062b,46,1,f +6301,3069b,28,1,f +6301,3070bpr0058,272,1,f +6301,3070bpr0058,272,1,t +6301,32013,72,1,f +6301,32028,28,2,f +6301,32034,71,1,f +6301,32062,4,5,f +6301,32123b,14,1,t +6301,32123b,14,1,f +6301,33051,10,2,f +6301,3626bpr0790,78,1,f +6301,3626bpr0799,78,1,f +6301,3626bpr0800,78,1,f +6301,3626bpr0821,15,1,f +6301,3665,70,2,f +6301,3678bpr0022,320,1,f +6301,3684,72,2,f +6301,3794a,297,2,f +6301,3795,71,1,f +6301,3958,1,1,f +6301,3958,72,2,f +6301,4085c,71,1,f +6301,4477,71,1,f +6301,4495b,272,1,f +6301,4519,71,1,f +6301,4644156,9999,1,t +6301,4740,0,1,f +6301,47847,72,1,f +6301,4865a,71,2,f +6301,54200,72,1,t +6301,54200,72,7,f +6301,59443,70,6,f +6301,59900,70,1,f +6301,60474,71,1,f +6301,6141,297,12,f +6301,6141,297,1,t +6301,61485,0,1,f +6301,6231,71,3,f +6301,6232,71,1,f +6301,63965,70,1,f +6301,64644,308,1,f +6301,64647,57,1,f +6301,64647,272,2,f +6301,64647,57,1,t +6301,64647,272,1,t +6301,64727,71,1,f +6301,6541,1,1,f +6301,6587,28,1,f +6301,85984,71,2,f +6301,87079,71,2,f +6301,87580,28,1,f +6301,87585,70,2,f +6301,92947,71,1,f +6301,93060,15,1,f +6301,93061,15,1,t +6301,93061,15,2,f +6301,93062c01,15,2,f +6301,93554,0,2,f +6301,95221pr0001,0,1,f +6301,95225,84,1,f +6301,95348,0,2,f +6301,96904,334,1,t +6301,96904,334,2,f +6301,96905,334,1,t +6301,96905,334,2,f +6301,96906,334,1,t +6301,96906,334,2,f +6301,96907,334,1,t +6301,96907,334,2,f +6301,970c00pr0218,70,1,f +6301,970c00pr0235,0,1,f +6301,973pr1771c01,272,1,f +6301,973pr1787c01,320,1,f +6301,973pr1788c01,0,1,f +6301,99563,334,2,f +6301,99563,334,1,t +6302,2357,2,4,f +6302,2357,70,2,f +6302,2419,72,4,f +6302,2419,14,6,f +6302,2420,2,2,f +6302,2420,70,4,f +6302,2431,70,2,f +6302,2431,0,4,f +6302,2436,0,5,f +6302,2449,70,2,f +6302,2450,72,2,f +6302,2456,71,2,f +6302,2456,70,1,f +6302,2555,72,4,f +6302,2654,0,10,f +6302,2780,0,1,t +6302,2780,0,8,f +6302,2817,71,4,f +6302,3001,288,1,t +6302,3001,288,6,f +6302,3002,2,4,f +6302,3002,0,1,f +6302,3003,71,4,f +6302,3003,2,4,f +6302,3004,288,17,f +6302,3004,72,1,f +6302,3004,70,10,f +6302,3005,2,12,f +6302,3005,70,4,f +6302,3009,2,3,f +6302,3009,70,4,f +6302,3010,2,6,f +6302,3010,70,2,f +6302,3020,2,15,f +6302,3020,4,1,f +6302,3020,70,4,f +6302,3020,71,3,f +6302,3021,72,12,f +6302,3021,70,4,f +6302,3022,72,4,f +6302,3022,70,6,f +6302,3022,2,11,f +6302,3022,0,17,f +6302,3023,72,10,f +6302,3023,4,1,f +6302,3023,2,32,f +6302,3024,2,8,f +6302,3024,0,7,f +6302,3024,70,8,f +6302,3031,72,2,f +6302,3032,2,2,f +6302,3034,72,2,f +6302,30367b,72,1,f +6302,3037,2,3,f +6302,3038,288,2,f +6302,3039,2,6,f +6302,3039,0,2,f +6302,3040b,2,6,f +6302,3040b,288,14,f +6302,30414,72,4,f +6302,3068b,0,2,f +6302,3069b,0,6,f +6302,32000,14,2,f +6302,32056,72,2,f +6302,32059,0,3,f +6302,32062,4,1,f +6302,32064b,71,1,f +6302,3298,0,7,f +6302,3622,2,4,f +6302,3622,71,2,f +6302,3623,2,8,f +6302,3623,70,2,f +6302,3639,72,5,f +6302,3640,72,5,f +6302,3660,71,3,f +6302,3660,2,2,f +6302,3660,70,8,f +6302,3665,72,8,f +6302,3665,70,2,f +6302,3666,72,6,f +6302,3666,70,3,f +6302,3678b,72,2,f +6302,3709,72,9,f +6302,3710,2,14,f +6302,3747b,72,5,f +6302,3749,19,3,f +6302,3795,0,1,f +6302,3795,2,3,f +6302,3795,4,1,f +6302,3832,2,4,f +6302,3937,0,2,f +6302,3938,0,2,f +6302,3958,70,2,f +6302,4032a,2,2,f +6302,40379,15,4,f +6302,4070,72,12,f +6302,41669,294,2,f +6302,41747,288,3,f +6302,41748,288,3,f +6302,41769,70,2,f +6302,41770,70,2,f +6302,4274,1,1,t +6302,4274,1,6,f +6302,4286,70,4,f +6302,4286,2,6,f +6302,4286,0,6,f +6302,4287,71,2,f +6302,43093,1,2,f +6302,43710,288,3,f +6302,43711,288,3,f +6302,43722,72,10,f +6302,43722,14,6,f +6302,43723,14,6,f +6302,43723,72,10,f +6302,44301a,0,6,f +6302,44302a,70,6,f +6302,44728,72,9,f +6302,47455,0,9,f +6302,48169,288,9,f +6302,48170,72,5,f +6302,48171,288,4,f +6302,48336,71,10,f +6302,4855,72,1,f +6302,4871,71,1,f +6302,49668,15,32,f +6302,51739,14,4,f +6302,51739,72,7,f +6302,54200,4,2,f +6302,54200,14,1,t +6302,54200,288,16,f +6302,54200,288,1,t +6302,54200,14,10,f +6302,54200,4,1,t +6302,54383,14,6,f +6302,54384,14,6,f +6302,54869,36,1,f +6302,60470a,0,10,f +6302,60478,71,4,f +6302,6141,15,2,f +6302,6141,15,1,t +6302,6541,0,13,f +6302,6564,71,1,f +6302,6565,71,1,f +6303,2412b,42,2,f +6303,2412b,85,18,f +6303,2654,0,1,f +6303,3003,0,1,f +6303,30033,0,1,f +6303,30136,72,4,f +6303,30194,72,4,f +6303,3021,0,8,f +6303,3021,72,2,f +6303,3022,0,8,f +6303,3023,72,4,f +6303,3034,72,2,f +6303,30367b,14,1,f +6303,3039,72,1,f +6303,3045,0,2,f +6303,3062b,57,1,f +6303,3068b,0,5,f +6303,32015,14,2,f +6303,32016,0,4,f +6303,32062,4,11,f +6303,32064b,0,14,f +6303,32073,71,2,f +6303,32123b,14,1,t +6303,32123b,14,2,f +6303,3300,85,4,f +6303,3660,0,4,f +6303,3678b,0,4,f +6303,3705,0,2,f +6303,3713,71,1,t +6303,3713,71,2,f +6303,3794a,0,1,f +6303,3795,72,1,f +6303,3937,72,3,f +6303,3938,0,1,f +6303,40244,0,1,f +6303,4032a,14,3,f +6303,4070,0,2,f +6303,4081b,14,2,f +6303,4085c,0,8,f +6303,4349,0,2,f +6303,43710,0,1,f +6303,43711,0,1,f +6303,43722,72,1,f +6303,43723,72,1,f +6303,44728,72,4,f +6303,4589,14,2,f +6303,4589,42,2,f +6303,47455,0,4,f +6303,48170,72,4,f +6303,48172,0,2,f +6303,48336,0,1,f +6303,48729a,72,6,f +6303,53451,14,14,f +6303,53451,14,1,t +6303,53984,135,2,f +6303,53984,134,4,f +6303,53988,135,1,f +6303,53988,134,2,f +6303,53989,135,2,f +6303,53989,0,6,f +6303,53989,134,4,f +6303,57909a,72,4,f +6303,57910,72,4,f +6303,59443,0,2,f +6303,6005,0,2,f +6303,6019,72,5,f +6303,60470a,0,1,f +6303,6070,40,1,f +6303,6134,71,2,f +6303,61406pat0003,85,5,f +6303,61409,14,2,f +6303,6141,42,4,f +6303,6141,57,1,t +6303,6141,42,1,t +6303,6141,57,4,f +6303,6553,0,3,f +6307,11211,15,4,f +6307,11458,15,4,f +6307,15070,19,8,f +6307,15070,15,2,f +6307,15208,19,4,f +6307,15395,179,1,f +6307,15397,15,1,f +6307,15571,72,1,f +6307,15573,15,4,f +6307,15573,19,4,f +6307,15573,71,6,f +6307,15573,72,8,f +6307,15573,73,2,f +6307,15712,15,36,f +6307,18674,15,3,f +6307,18677,71,4,f +6307,23443,73,4,f +6307,2412b,15,6,f +6307,2420,71,1,f +6307,2431,0,3,f +6307,2431,72,4,f +6307,2431,71,4,f +6307,2445,0,4,f +6307,25269,71,4,f +6307,25269,71,1,t +6307,26603,15,1,f +6307,2780,0,1,t +6307,2780,0,4,f +6307,2877,19,8,f +6307,3003pr0103,19,1,f +6307,30136,19,20,f +6307,30165,71,4,f +6307,3020,71,4,f +6307,3020,19,3,f +6307,3021,19,4,f +6307,3021,0,3,f +6307,3022,72,2,f +6307,3022,19,8,f +6307,3022,0,2,f +6307,3022,71,8,f +6307,3023,0,12,f +6307,3023,15,9,f +6307,3023,47,23,f +6307,3023,19,4,f +6307,3023,71,7,f +6307,3024,19,1,t +6307,3024,19,4,f +6307,3024,15,7,f +6307,3024,15,1,t +6307,3035,0,1,f +6307,30350b,72,2,f +6307,30374,15,3,f +6307,3044b,72,1,f +6307,3049d,72,1,f +6307,3065,47,2,f +6307,3069b,71,9,f +6307,3069b,47,40,f +6307,3069b,0,3,f +6307,3069b,73,4,f +6307,3070b,71,1,t +6307,3070b,19,4,f +6307,3070b,73,4,f +6307,3070b,15,3,f +6307,3070b,19,1,t +6307,3070b,71,7,f +6307,3070b,73,1,t +6307,3070b,15,1,t +6307,32016,15,2,f +6307,32294,15,2,f +6307,32580,73,4,f +6307,3460,0,4,f +6307,3623,19,2,f +6307,3673,7,1,t +6307,3673,7,4,f +6307,3688,72,3,f +6307,3710,0,5,f +6307,3795,71,3,f +6307,3795,0,2,f +6307,4070,15,6,f +6307,4162pr0050,0,1,f +6307,4274,1,1,t +6307,4274,1,1,f +6307,4477,15,1,f +6307,4490,19,4,f +6307,48729b,71,1,t +6307,48729b,71,4,f +6307,49668,19,8,f +6307,59900,72,1,f +6307,60478,72,4,f +6307,61252,15,4,f +6307,61409,15,2,f +6307,6141,297,5,f +6307,6141,297,1,t +6307,6231,19,2,f +6307,64727,71,1,f +6307,6541,15,4,f +6307,6636,0,3,f +6307,75c24,15,4,f +6307,85861,15,1,t +6307,85861,15,3,f +6307,86208,72,4,f +6307,87580,71,2,f +6307,87609,0,6,f +6307,87994,71,1,t +6307,87994,71,1,f +6307,90398,15,1,f +6307,90398,15,1,t +6307,98138,41,4,f +6307,98138,326,3,f +6307,98138,326,1,t +6307,98138,41,1,t +6307,99206,0,1,f +6307,99207,71,4,f +6307,99780,72,4,f +6307,99781,71,4,f +6309,197295,9999,1,t +6309,2042c01,14,1,f +6309,2445,14,1,f +6309,3009,14,3,f +6309,3023,15,1,f +6309,3068pb36,15,1,f +6309,3622,14,4,f +6309,3795,14,1,f +6309,3852a,6,1,f +6309,3865,2,1,f +6309,3899,1,1,f +6309,3979c01,14,1,f +6309,4222a,4,1,f +6309,4727,2,1,f +6309,4728,4,1,f +6309,fabca3,4,1,f +6309,x593c04b,14,1,f +6310,15068,25,1,f +6310,15068pr0003,25,1,f +6310,15540,72,3,f +6310,2421,0,1,f +6310,2444,72,1,f +6310,2446,1,1,f +6310,2447,40,1,f +6310,2447,40,1,t +6310,298c02,15,2,f +6310,298c02,15,1,t +6310,3004,25,2,f +6310,30157,71,1,f +6310,3023,25,2,f +6310,3034,72,1,f +6310,3460,15,1,f +6310,3626cpr0914,14,1,f +6310,3665,25,2,f +6310,3666,25,2,f +6310,3673,71,1,t +6310,3673,71,1,f +6310,44661,72,1,f +6310,4599b,15,1,t +6310,4599b,15,2,f +6310,50304,71,1,f +6310,50305,71,1,f +6310,6141,36,1,t +6310,6141,34,1,t +6310,6141,34,1,f +6310,6141,46,1,t +6310,6141,36,1,f +6310,6141,46,2,f +6310,63868,72,2,f +6310,87552,71,2,f +6310,970c00pr0645,1,1,f +6310,973pr2641c01,25,1,f +6311,2412b,72,1,f +6311,3024,2,2,f +6311,3069b,19,2,f +6311,3069b,71,1,f +6311,3176,320,2,f +6311,3710,71,1,f +6311,3794b,2,2,f +6311,4032a,72,1,f +6311,4070,71,1,f +6311,42446,72,2,f +6311,4733,0,1,f +6311,54200,71,1,f +6311,54200,40,2,f +6311,54200,71,1,t +6311,54200,40,1,t +6311,87087,72,1,f +6312,2357,71,2,f +6312,2412b,1,9,f +6312,2420,72,2,f +6312,2432,1,2,f +6312,2445,0,8,f +6312,2450,72,2,f +6312,2577,72,2,f +6312,2654,71,1,f +6312,2723,0,40,f +6312,2780,0,2,f +6312,2780,0,1,t +6312,2877,71,2,f +6312,298c02,4,1,f +6312,298c02,4,1,t +6312,3001,71,3,f +6312,3002,4,2,f +6312,3021,0,8,f +6312,3023,71,4,f +6312,3028,0,2,f +6312,30283,71,1,f +6312,3031,0,2,f +6312,3035,0,2,f +6312,30350b,0,2,f +6312,3036,0,2,f +6312,30366ps1,40,1,f +6312,30367b,0,4,f +6312,30408px5,0,2,f +6312,3040b,0,2,f +6312,30414,1,8,f +6312,30516,71,2,f +6312,3062b,72,6,f +6312,30658,0,2,f +6312,32001,14,2,f +6312,32009,0,8,f +6312,32028,15,2,f +6312,32062,0,1,f +6312,32064b,72,6,f +6312,32316,0,4,f +6312,32526,72,16,f +6312,32529,0,2,f +6312,3297,1,8,f +6312,3298,72,2,f +6312,3623,1,2,f +6312,3626b,0,2,f +6312,3660,0,2,f +6312,3666,4,4,f +6312,3675,1,4,f +6312,3680,1,2,f +6312,3700,1,2,f +6312,3709,1,7,f +6312,3710,72,2,f +6312,3747b,72,2,f +6312,3832,1,6,f +6312,3839b,14,4,f +6312,3873,0,2,t +6312,3873,0,162,f +6312,3895,71,2,f +6312,3943b,72,2,f +6312,3960ps2,72,1,f +6312,4032a,72,4,f +6312,40490,71,4,f +6312,4274,71,2,t +6312,4274,71,20,f +6312,4285b,72,2,f +6312,43093,1,1,t +6312,43093,1,2,f +6312,44294,71,1,f +6312,44570,71,1,f +6312,44822,0,1,f +6312,4519,71,28,f +6312,4589,36,8,f +6312,47457,71,1,f +6312,48336,0,4,f +6312,4861,1,16,f +6312,54200,0,1,t +6312,54200,0,2,f +6312,55013,72,2,f +6312,58247,0,2,f +6312,6106,0,16,f +6312,6179,72,1,f +6312,6538b,0,1,f +6312,6558,0,32,f +6312,6636,72,9,f +6312,970c00,0,2,f +6312,973pr1342c01,0,2,f +6316,2343,14,1,f +6316,2420,0,4,f +6316,3004,7,1,f +6316,3020,14,1,f +6316,3021,14,1,f +6316,3022,4,2,f +6316,3023,0,1,f +6316,3024,0,2,f +6316,3039,7,1,f +6316,3062b,0,1,f +6316,3069b,15,2,f +6316,3623,0,4,f +6316,3626apr0001,14,5,f +6316,3633,0,4,f +6316,3660,7,2,f +6316,3666,0,2,f +6316,3710,0,2,f +6316,3747a,7,1,f +6316,3794a,0,1,f +6316,3832,0,1,f +6316,3832,4,1,f +6316,3844,0,1,f +6316,3844,8,1,f +6316,3846p4g,7,3,f +6316,3846p4h,7,2,f +6316,3848,6,1,f +6316,3849,6,3,f +6316,3896,8,3,f +6316,4070,0,2,f +6316,4085b,0,4,f +6316,4495a,1,1,f +6316,4495a,4,1,f +6316,4495a,15,1,f +6316,4495a,14,1,f +6316,4497,6,8,f +6316,4590,14,1,f +6316,4738b,6,1,f +6316,4739b,6,1,f +6316,4854,4,1,f +6316,4855,4,2,f +6316,4856a,4,2,f +6316,4859,0,2,f +6316,4859,4,1,f +6316,4871,4,2,f +6316,6141,14,2,f +6316,73590c01a,15,4,f +6316,970x026,1,5,f +6316,973p40c03,4,1,f +6316,973p42c01,4,3,f +6316,973px138c01,4,1,f +6317,95648,15,1,f +6320,2413,15,2,f +6320,2420,72,2,f +6320,2431,72,1,f +6320,2431,15,1,f +6320,2437,40,1,f +6320,3003,0,1,f +6320,3005,72,1,f +6320,3010,15,2,f +6320,3020,15,3,f +6320,3020,4,1,f +6320,3021,72,4,f +6320,3022,71,1,f +6320,3023,0,5,f +6320,3024,15,1,f +6320,3024,72,2,f +6320,3031,71,1,f +6320,3039pc5,71,1,f +6320,3040b,15,2,f +6320,3068b,4,1,f +6320,3069b,15,1,f +6320,3070b,4,1,t +6320,3070b,14,1,t +6320,3070b,4,1,f +6320,3070b,15,1,t +6320,3070b,15,3,f +6320,3070b,14,1,f +6320,3460,71,1,f +6320,3623,72,3,f +6320,3666,72,1,f +6320,3679,7,3,f +6320,3680,15,3,f +6320,3710,72,1,f +6320,3710,15,3,f +6320,3794a,15,1,f +6320,3795,71,2,f +6320,3937,71,1,f +6320,4079,6,3,f +6320,4162,72,1,f +6320,41769,15,4,f +6320,41770,15,4,f +6320,4282,71,1,f +6320,44301a,15,2,f +6320,44302a,15,2,f +6320,4449,73,1,f +6320,4449,0,1,f +6320,44571,15,4,f +6320,4477,72,1,f +6320,4477,15,1,f +6320,44822,15,4,f +6320,4854,71,2,f +6320,4855,71,2,f +6320,4856a,72,2,f +6320,4858,15,1,f +6320,4859,72,1,f +6320,4859,15,1,f +6320,4861,15,1,f +6320,4862,40,12,f +6320,4863,15,6,f +6320,4865a,4,2,f +6320,4865a,15,2,f +6320,4867,15,1,f +6320,4868b,15,2,f +6320,4869,71,2,f +6320,4870c02,71,3,f +6320,4871,71,1,f +6320,6134,0,1,f +6320,6141,34,1,f +6320,6141,36,1,t +6320,6141,15,1,t +6320,6141,15,2,f +6320,6141,36,1,f +6320,6141,47,1,f +6320,6141,47,1,t +6320,6141,34,1,t +6320,6636,15,2,f +6320,73983,72,4,f +6321,12939,4,4,f +6321,2465,15,2,f +6321,3001,15,2,f +6321,3001,14,1,f +6321,3001,2,1,f +6321,3001,4,1,f +6321,3002,14,1,f +6321,3002,1,1,f +6321,3003,14,2,f +6321,3003,4,2,f +6321,3003,15,1,f +6321,3003,1,1,f +6321,3004,2,1,f +6321,3004,1,3,f +6321,3004,15,4,f +6321,3004,25,8,f +6321,3004,0,4,f +6321,3004,14,2,f +6321,3005,15,5,f +6321,3005,0,1,f +6321,3005,25,4,f +6321,3005,4,2,f +6321,30089,0,1,f +6321,3009,15,2,f +6321,3022,1,2,f +6321,3022,15,1,f +6321,3023,4,2,f +6321,3027,1,1,f +6321,3031,2,2,f +6321,3034,2,6,f +6321,3036,1,2,f +6321,3039,2,2,f +6321,3040b,0,1,f +6321,3040b,4,1,f +6321,3040b,15,1,f +6321,3062b,2,7,f +6321,3062b,4,2,f +6321,3062b,15,8,f +6321,3622,0,2,f +6321,3622,15,2,f +6321,3626cpr0499,14,1,f +6321,3648b,72,1,f +6321,3649,71,1,f +6321,3659,15,4,f +6321,3700,71,2,f +6321,3749,19,2,f +6321,3942c,15,1,f +6321,3942c,1,1,f +6321,3957a,1,2,f +6321,4286,14,1,f +6321,4460b,1,2,f +6321,4495b,2,1,f +6321,4495b,4,1,f +6321,86035,4,1,f +6321,970c00,1,1,f +6321,973pr1580c01,15,1,f +6322,2432,4,1,f +6322,2555,71,1,t +6322,2555,71,1,f +6322,30031,0,1,f +6322,3021,15,1,f +6322,3023,0,1,f +6322,3710,0,1,f +6322,3794a,15,1,f +6322,3795,4,1,f +6322,4085c,4,1,t +6322,4085c,4,2,f +6322,50950,4,2,f +6322,6120,15,4,f +6323,11816pr0002,78,1,f +6323,2412b,80,2,f +6323,2412b,15,4,f +6323,2423,2,1,f +6323,2431,322,2,f +6323,2654,71,1,f +6323,3004,15,2,f +6323,3004,14,4,f +6323,3010,14,2,f +6323,30151a,47,1,f +6323,3020,14,2,f +6323,3020,71,3,f +6323,3022,322,1,f +6323,3023,14,2,f +6323,3023,71,2,f +6323,3024,30,4,f +6323,3030,71,1,f +6323,3031,15,2,f +6323,3032,322,1,f +6323,30367c,72,1,f +6323,3039,14,1,f +6323,3062b,322,1,f +6323,3068b,14,4,f +6323,3069b,15,1,f +6323,3069bpr0101,71,1,f +6323,3069bpr0175,29,1,f +6323,33291,5,1,t +6323,33291,5,2,f +6323,3460,30,2,f +6323,3666,322,2,f +6323,3710,15,2,f +6323,3710,30,2,f +6323,3795,30,4,f +6323,3829c01,14,1,f +6323,3832,72,1,f +6323,4081b,322,2,f +6323,44728,15,1,f +6323,4488,71,4,f +6323,4589,29,1,f +6323,4589,46,1,f +6323,4599b,71,1,f +6323,4865b,322,3,f +6323,50745,322,4,f +6323,50950,30,2,f +6323,52031,30,1,f +6323,52501,30,2,f +6323,54200,36,2,f +6323,54200,322,1,t +6323,54200,36,1,t +6323,54200,322,4,f +6323,6014b,15,4,f +6323,6019,72,1,f +6323,6141,182,2,f +6323,6141,36,2,f +6323,6141,182,1,t +6323,6141,46,2,f +6323,6141,36,1,t +6323,6141,46,1,t +6323,6231,322,2,f +6323,62360,47,1,f +6323,63965,15,1,f +6323,6636,30,1,f +6323,6936,297,1,f +6323,70973,5,1,f +6323,85984,30,4,f +6323,87580,15,1,f +6323,87697,0,4,f +6323,92255,226,1,f +6323,92456pr0019c01,78,1,f +6323,92818pr0002c01,26,1,f +6323,93088pr0001a,84,1,f +6323,93092,5,1,f +6323,93095,14,2,f +6323,93274,14,2,f +6323,96479,29,3,f +6323,96480,29,1,f +6323,96481,29,2,f +6323,96482,29,1,f +6323,96483,29,2,f +6323,96484,29,1,f +6323,96485,29,2,f +6323,96486,29,1,f +6323,96487,29,2,f +6323,96488,29,1,f +6323,96489,29,2,f +6323,96490,29,1,f +6323,96491,29,1,f +6324,32062,0,6,f +6324,32173,8,2,f +6324,32174,2,10,f +6324,32174,57,1,f +6324,32270,7,1,f +6324,3737,0,1,f +6324,3749,19,4,f +6324,44135,8,1,f +6324,44136,8,1,f +6324,44138,2,2,f +6324,44139,8,1,f +6324,44140,2,1,f +6324,44144,179,1,f +6324,44148,8,2,f +6324,44247,8,1,f +6324,44807,2,1,f +6324,44818,179,2,f +6324,4519,7,3,f +6324,45749,8,2,f +6324,6538b,8,1,f +6324,kraataund,81,1,f +6324,lerahkcd,9999,1,f +6325,2654,4,1,f +6325,3004,15,2,f +6325,30173a,0,1,f +6325,30177,15,1,f +6325,3022,15,1,f +6325,30374,71,1,f +6325,3626bpr0747,14,1,f +6325,4617056,9999,1,f +6325,4617059,9999,1,f +6325,4617061,9999,1,f +6325,4617223,9999,1,f +6325,4617225,9999,1,f +6325,60897,0,1,f +6325,64567,71,1,f +6325,64727,71,1,f +6325,92338,297,1,f +6325,92547pr0012,297,1,f +6325,92690,297,1,f +6325,93794,4,1,f +6325,970c00pb090,15,1,f +6325,973pr1748c01,15,1,f +6326,2431,15,6,f +6326,2817,71,2,f +6326,3001,0,1,f +6326,3003,15,2,f +6326,30173b,0,1,f +6326,30177,15,1,f +6326,3021,72,6,f +6326,3022,1,4,f +6326,3034,72,1,f +6326,3039,15,2,f +6326,30602,15,2,f +6326,32062,4,2,f +6326,32064b,15,3,f +6326,32192,72,2,f +6326,3626bpr0747,14,1,f +6326,3626bpr0750,15,1,f +6326,3660,15,1,f +6326,3747b,72,1,f +6326,3794b,15,1,f +6326,3849,0,1,f +6326,40378,15,1,f +6326,40379,15,1,f +6326,43093,1,3,f +6326,43722,15,3,f +6326,43723,15,3,f +6326,4519,71,2,f +6326,4697b,71,2,f +6326,4697b,71,1,t +6326,48336,15,2,f +6326,50373,15,2,f +6326,50950,15,4,f +6326,53451,0,6,f +6326,53451,0,1,t +6326,53562,0,2,f +6326,53989,0,6,f +6326,54200,143,12,f +6326,54200,143,1,t +6326,54821,143,1,f +6326,57908,72,2,f +6326,57909a,72,1,f +6326,59900,297,3,f +6326,59900,15,6,f +6326,60169,72,2,f +6326,60176,72,2,f +6326,61053,72,1,f +6326,6141,0,1,t +6326,6141,0,2,f +6326,6141,25,4,f +6326,6141,25,1,t +6326,62462,15,1,f +6326,62537pr0001,4,1,f +6326,62743,15,6,f +6326,63868,15,4,f +6326,63868,0,2,f +6326,64275,25,2,f +6326,64867,143,2,f +6326,73983,0,4,f +6326,87079pr0008,15,1,f +6326,87747,25,6,f +6326,92013,15,2,f +6326,92692,0,2,f +6326,93058,297,2,f +6326,93058,297,1,t +6326,93061,15,1,t +6326,93061,15,2,f +6326,93062c01,15,2,f +6326,93070pr0001,15,1,f +6326,93072pr0001,72,1,f +6326,93761pr0002,15,1,f +6326,970c00pb090,15,1,f +6326,973pr1748c01,15,1,f +6327,2740c01,0,1,f +6328,11477,14,4,f +6328,11477,71,2,f +6328,2412b,71,4,f +6328,2420,14,2,f +6328,2540,71,1,f +6328,2877,72,2,f +6328,3004,71,1,f +6328,3020,14,1,f +6328,3020,72,1,f +6328,3021,71,3,f +6328,3022,72,1,f +6328,3023,14,3,f +6328,30602,40,1,f +6328,3679,71,1,f +6328,3680,0,1,f +6328,3710,14,2,f +6328,3794b,71,1,f +6328,4032a,0,3,f +6328,44301a,72,1,f +6328,44728,14,3,f +6328,54200,14,2,f +6328,54200,14,1,t +6328,60471,0,1,f +6328,60478,0,1,t +6328,60478,0,3,f +6328,61252,0,2,f +6328,6141,182,1,t +6328,6141,0,2,f +6328,6141,0,1,t +6328,6141,182,1,f +6328,6157,0,2,f +6328,63868,0,2,f +6328,85984,14,1,f +6328,92409,0,4,f +6328,93594,179,4,f +6328,99781,71,1,f +6329,2780,0,2,f +6329,2780,0,1,t +6329,32002,8,3,f +6329,32016,14,1,f +6329,32039,14,2,f +6329,32039,135,1,f +6329,32175,1,1,f +6329,32316,1,3,f +6329,32348,1,2,f +6329,32523,14,1,f +6329,3673,7,2,f +6329,3673,7,1,t +6329,3749,19,2,f +6329,41677,0,1,f +6329,41752,8,1,f +6329,42074,179,2,f +6329,4274,7,1,f +6329,4274,7,2,t +6329,43559,1,1,f +6329,44848,0,1,f +6329,6587,8,1,f +6329,6628,0,2,f +6329,75c05,1,1,t +6329,75c05,1,1,f +6329,75c19,1,1,f +6329,rb00167,0,1,f +6329,rb00167,0,3,t +6332,11153,0,1,f +6332,11211,0,3,f +6332,11477,0,2,f +6332,11609,14,1,t +6332,11609,14,3,f +6332,11618,322,1,f +6332,11618,322,1,t +6332,11816pr0001,84,1,f +6332,14417,72,1,f +6332,14418,71,1,f +6332,14769,0,1,f +6332,14769pr1063,15,1,f +6332,15254,15,1,f +6332,15573,85,3,f +6332,15712,297,1,f +6332,18892,0,2,f +6332,22888,27,1,f +6332,24111pr0002,0,1,f +6332,3001,19,1,f +6332,3002,27,1,f +6332,3003,4,1,f +6332,3004,322,2,f +6332,3009,15,2,f +6332,3009,0,1,f +6332,3020,0,2,f +6332,3020,4,1,f +6332,3020,15,1,f +6332,3021,322,2,f +6332,3022,0,1,f +6332,3023,5,3,f +6332,3023,85,2,f +6332,3023,36,3,f +6332,3023,15,1,f +6332,3032,15,2,f +6332,3037,14,1,f +6332,3068b,5,4,f +6332,3070b,0,1,f +6332,3070b,0,1,t +6332,31922,297,1,f +6332,3460,5,2,f +6332,3623,0,1,f +6332,3665,15,6,f +6332,3666,5,1,f +6332,3666,322,5,f +6332,3795,15,1,f +6332,3829c01,15,1,f +6332,3957a,15,2,f +6332,4176,47,1,f +6332,43337,40,2,f +6332,4460b,15,2,f +6332,4495b,5,2,f +6332,4595,0,1,f +6332,50745,85,4,f +6332,50950,85,4,f +6332,52031,15,1,f +6332,6014b,15,4,f +6332,60478,15,2,f +6332,6081,15,1,f +6332,6091,15,6,f +6332,61252,0,2,f +6332,6141,45,1,f +6332,6141,45,1,t +6332,6141,47,1,t +6332,6141,0,4,f +6332,6141,0,2,t +6332,6141,47,2,f +6332,6256,14,1,f +6332,64644,0,1,f +6332,6636,15,1,f +6332,85984,5,1,f +6332,87079,14,1,f +6332,87580,85,4,f +6332,87580,322,4,f +6332,87697,0,4,f +6332,90370pr0005,0,1,f +6332,90370pr0005,0,1,t +6332,91988,19,1,f +6332,92456pr0096c01,84,1,f +6332,92820pr0009c01,322,1,f +6332,93095,0,2,f +6332,93160,15,1,t +6332,93160,15,2,f +6332,93273,15,1,f +6332,93274,14,1,f +6332,93352,308,1,f +6332,98138pr0056,84,1,t +6332,98138pr0056,84,1,f +6332,99207,0,1,f +6333,10314,26,2,f +6333,11211,71,4,f +6333,15573,85,4,f +6333,2412b,72,4,f +6333,2420,2,5,f +6333,2431,27,4,f +6333,2431,25,4,f +6333,2431,72,4,f +6333,2431,14,4,f +6333,2432,0,1,f +6333,2445,0,2,f +6333,2456,320,2,f +6333,2456,19,1,f +6333,2456,2,1,f +6333,2456,15,2,f +6333,2456,71,1,f +6333,2456,72,1,f +6333,2456,14,1,f +6333,2877,71,4,f +6333,2877,72,4,f +6333,2921,0,4,f +6333,2926,0,2,f +6333,3001,19,4,f +6333,3001,2,8,f +6333,3001,321,4,f +6333,3001,27,8,f +6333,3001,4,8,f +6333,3001,191,8,f +6333,3001,0,4,f +6333,3001,14,8,f +6333,3001,71,6,f +6333,3001,29,8,f +6333,3001,70,4,f +6333,3001,1,4,f +6333,3001,15,8,f +6333,3001,85,8,f +6333,3001,288,8,f +6333,3001,72,4,f +6333,3001,25,8,f +6333,3001,322,4,f +6333,3001,30,4,f +6333,3002,0,4,f +6333,3002,1,4,f +6333,3002,19,8,f +6333,3002,72,4,f +6333,3002,15,4,f +6333,3002,2,8,f +6333,3002,29,8,f +6333,3002,27,4,f +6333,3002,70,4,f +6333,3002,14,8,f +6333,3002,25,8,f +6333,3002,4,8,f +6333,3003,0,8,f +6333,3003,27,8,f +6333,3003,25,12,f +6333,3003,29,4,f +6333,3003,19,8,f +6333,3003,85,8,f +6333,3003,5,8,f +6333,3003,322,4,f +6333,3003,2,8,f +6333,3003,272,8,f +6333,3003,31,8,f +6333,3003,4,8,f +6333,3003,320,8,f +6333,3003,1,8,f +6333,3003,15,12,f +6333,3003,14,8,f +6333,3003,71,8,f +6333,3003,72,8,f +6333,3003,70,8,f +6333,3004,14,8,f +6333,3004,85,4,f +6333,3004,191,8,f +6333,3004,10,8,f +6333,3004,70,4,f +6333,3004,0,4,f +6333,3004,30,8,f +6333,3004,226,4,f +6333,3004,288,4,f +6333,3004,29,4,f +6333,3004,158,4,f +6333,3004,27,4,f +6333,3004,2,8,f +6333,3004,272,4,f +6333,3004,1,12,f +6333,3004,31,4,f +6333,3004,484,8,f +6333,3004,26,4,f +6333,3004,72,4,f +6333,3004,4,12,f +6333,3004,19,8,f +6333,3004,71,8,f +6333,3004,320,8,f +6333,3004,5,8,f +6333,3004,25,8,f +6333,3004,15,8,f +6333,3004,321,20,f +6333,3004,323,4,f +6333,3005,72,4,f +6333,3005,29,4,f +6333,3005,14,4,f +6333,3005,1,12,f +6333,3005,320,8,f +6333,3005,5,4,f +6333,3005,70,4,f +6333,3005,182,4,f +6333,3005,0,4,f +6333,3005,2,4,f +6333,3005,25,4,f +6333,3005,4,8,f +6333,3005,19,4,f +6333,3005,85,8,f +6333,3005,27,4,f +6333,3005,272,4,f +6333,3005,15,4,f +6333,3005,30,8,f +6333,3005,47,8,f +6333,3005,31,8,f +6333,3005,71,4,f +6333,3006,4,1,f +6333,3006,19,1,f +6333,3007,71,1,f +6333,3007,1,1,f +6333,3007,14,1,f +6333,3008,14,2,f +6333,3008,484,2,f +6333,3008,70,2,f +6333,3008,2,2,f +6333,3008,4,2,f +6333,3008,30,2,f +6333,3008,15,2,f +6333,3008,31,2,f +6333,3009,26,4,f +6333,3009,15,4,f +6333,3009,25,2,f +6333,3009,2,4,f +6333,3009,30,4,f +6333,3009,1,4,f +6333,3009,27,4,f +6333,3009,70,2,f +6333,3009,72,2,f +6333,3009,0,2,f +6333,3009,484,4,f +6333,3009,320,2,f +6333,3009,4,2,f +6333,3010,272,4,f +6333,3010,1,4,f +6333,3010,25,4,f +6333,3010,5,4,f +6333,3010,322,4,f +6333,3010,31,4,f +6333,3010,14,4,f +6333,3010,70,4,f +6333,3010,19,4,f +6333,3010,30,4,f +6333,3010,27,8,f +6333,3010,2,4,f +6333,3010,288,8,f +6333,3010,0,8,f +6333,3010,26,4,f +6333,3010,226,4,f +6333,3010,4,4,f +6333,3010,15,8,f +6333,3010,71,4,f +6333,3010,72,4,f +6333,3010,191,8,f +6333,30136,19,4,f +6333,30136,31,4,f +6333,30145,226,2,f +6333,30157,72,2,f +6333,3020,0,4,f +6333,3020,320,4,f +6333,3020,19,4,f +6333,3020,288,2,f +6333,3020,72,4,f +6333,3021,5,2,f +6333,3021,70,2,f +6333,3021,72,2,f +6333,3022,70,4,f +6333,3022,19,4,f +6333,3022,191,4,f +6333,3022,71,4,f +6333,3022,320,4,f +6333,3023,1,4,f +6333,3023,288,4,f +6333,3023,72,4,f +6333,3023,30,4,f +6333,3023,321,4,f +6333,3028,70,1,f +6333,3028,10,1,f +6333,3031,1,3,f +6333,3031,71,1,f +6333,3031,4,1,f +6333,3032,15,1,f +6333,3034,2,1,f +6333,3035,71,1,f +6333,3035,29,1,f +6333,30367c,158,2,f +6333,30367c,27,2,f +6333,3037,26,8,f +6333,30374,19,2,f +6333,30388,14,1,f +6333,3039,27,4,f +6333,3039,72,4,f +6333,3039,71,4,f +6333,3039,14,4,f +6333,3039,1,4,f +6333,3039,47,2,f +6333,3039,2,4,f +6333,3039,25,2,f +6333,30395,72,1,f +6333,30396,0,1,f +6333,3040b,1,8,f +6333,3040b,15,2,f +6333,3040b,26,4,f +6333,30414,72,2,f +6333,30414,19,4,f +6333,3062b,27,4,f +6333,3062b,272,3,f +6333,3062b,72,4,f +6333,3062b,14,4,f +6333,3062b,0,4,f +6333,3062b,4,4,f +6333,3065,33,4,f +6333,3065,35,4,f +6333,3065,36,4,f +6333,3065,40,4,f +6333,3065,45,4,f +6333,3065,42,4,f +6333,3065,46,4,f +6333,3066,40,4,f +6333,3068b,15,4,f +6333,3069b,5,4,f +6333,3069b,85,4,f +6333,3069b,0,4,f +6333,3069b,322,4,f +6333,3070b,29,4,f +6333,3070b,29,1,t +6333,3245c,30,4,f +6333,3298,4,4,f +6333,33291,10,3,f +6333,33291,5,1,t +6333,33291,191,3,f +6333,33291,10,1,t +6333,33291,191,1,t +6333,33291,5,3,f +6333,3460,30,6,f +6333,3460,71,2,f +6333,3622,2,4,f +6333,3622,70,4,f +6333,3622,1,4,f +6333,3622,14,4,f +6333,3622,72,4,f +6333,3622,5,4,f +6333,3622,25,4,f +6333,3622,19,8,f +6333,3623,288,4,f +6333,3623,158,4,f +6333,3623,2,2,f +6333,3623,72,4,f +6333,3626c,19,2,f +6333,3659,85,4,f +6333,3660,70,4,f +6333,3660,71,4,f +6333,3660,2,4,f +6333,3665,27,4,f +6333,3665,72,4,f +6333,3665,2,4,f +6333,3666,191,8,f +6333,3666,26,2,f +6333,3666,288,2,f +6333,3679,71,2,f +6333,3680,0,2,f +6333,3710,0,4,f +6333,3710,15,2,f +6333,3710,1,4,f +6333,3710,72,2,f +6333,3710,27,4,f +6333,3710,71,4,f +6333,3795,321,1,f +6333,3795,0,2,f +6333,3795,320,1,f +6333,3795,71,1,f +6333,3823,40,1,f +6333,3829c01,0,1,f +6333,3832,1,2,f +6333,3839b,15,2,f +6333,3957b,85,2,f +6333,3960,191,1,f +6333,4079,0,1,f +6333,4081b,0,4,f +6333,4083,0,1,f +6333,4162,26,4,f +6333,4175,72,2,f +6333,4286,2,4,f +6333,4286,72,4,f +6333,4286,4,4,f +6333,4287,288,4,f +6333,43722,27,1,f +6333,43723,27,1,f +6333,44567a,0,4,f +6333,45677,1,1,f +6333,4599b,0,4,f +6333,4599b,0,1,t +6333,4600,71,3,f +6333,4624,15,6,f +6333,48336,0,4,f +6333,50950,322,6,f +6333,50950,26,4,f +6333,50950,72,4,f +6333,50950,27,4,f +6333,50950,4,8,f +6333,54200,25,1,t +6333,54200,2,1,t +6333,54200,288,4,f +6333,54200,2,4,f +6333,54200,288,1,t +6333,54200,25,4,f +6333,55981,71,6,f +6333,56891,0,2,f +6333,59900,34,4,f +6333,59900,35,4,f +6333,59900,182,4,f +6333,59900,72,4,f +6333,6014b,71,4,f +6333,60212,1,4,f +6333,60470a,71,2,f +6333,60581,47,1,f +6333,60592,15,2,f +6333,60598,15,1,f +6333,60599,15,3,f +6333,60601,47,2,f +6333,60608,15,2,f +6333,60616a,47,2,f +6333,60623,15,1,f +6333,6091,72,2,f +6333,6141,14,3,f +6333,6141,14,1,t +6333,6141,4,3,f +6333,6141,47,1,t +6333,6141,4,1,t +6333,6141,47,3,f +6333,6141,27,3,f +6333,6141,46,1,t +6333,6141,27,1,t +6333,6141,46,3,f +6333,6215,71,4,f +6333,6215,4,4,f +6333,6564,4,1,f +6333,6565,4,1,f +6333,6636,4,4,f +6333,6636,25,2,f +6333,84954,40,1,f +6333,85984,29,2,f +6333,85984,14,4,f +6333,85984,2,3,f +6333,87087,85,4,f +6333,87087,288,4,f +6333,87087,71,4,f +6333,87414,0,6,f +6333,87544,40,2,f +6333,87580,26,3,f +6333,87580,0,4,f +6333,87580,85,4,f +6333,87697,0,4,f +6333,88292,4,4,f +6333,91405,72,1,f +6333,92402,0,4,f +6333,92593,26,4,f +6333,93273,15,2,f +6333,93606,4,2,f +6333,96874,25,1,t +6333,98138pr0008,15,2,f +6333,98138pr0008,15,1,t +6333,98138pr0027,15,2,f +6333,98138pr0027,15,1,t +6334,2357,72,2,f +6334,2412b,0,11,f +6334,2420,72,2,f +6334,2431,288,6,f +6334,2431,72,3,f +6334,2444,71,2,f +6334,2445,0,2,f +6334,2458,4,2,f +6334,2460,72,1,f +6334,2476a,71,1,f +6334,2540,0,3,f +6334,2540,71,4,f +6334,2555,72,2,f +6334,2877,71,3,f +6334,298c02,71,1,f +6334,298c02,71,1,t +6334,3001,19,2,f +6334,3002,72,2,f +6334,30027b,71,2,f +6334,30028,0,2,f +6334,3003,71,1,f +6334,3005,72,4,f +6334,3008,19,2,f +6334,3010,72,2,f +6334,30132,72,1,t +6334,30132,72,1,f +6334,30149,72,1,f +6334,30150,70,1,f +6334,30153,42,1,f +6334,30153,47,1,f +6334,30153,36,1,f +6334,30157,72,3,f +6334,30170,72,1,f +6334,30170,72,1,t +6334,30171,70,1,f +6334,3020,72,3,f +6334,3020,2,4,f +6334,3021,72,2,f +6334,3021,19,2,f +6334,3021,70,2,f +6334,3021,15,2,f +6334,3022,2,4,f +6334,3022,71,1,f +6334,3022,72,1,f +6334,3023,19,7,f +6334,3023,0,4,f +6334,3023,15,2,f +6334,3023,2,6,f +6334,30237a,72,2,f +6334,3024,72,2,f +6334,30249,288,2,f +6334,3029,71,1,f +6334,3031,72,1,f +6334,30332,0,2,f +6334,3034,2,1,f +6334,3040b,72,6,f +6334,30504,72,2,f +6334,30552,0,2,f +6334,3062b,19,8,f +6334,3068b,0,2,f +6334,3068b,72,1,f +6334,3069b,72,4,f +6334,3070bpr0007,71,1,f +6334,3070bpr0007,71,1,t +6334,32028,2,1,f +6334,32059,72,1,f +6334,32064b,2,3,f +6334,32140,71,4,f +6334,33172,308,1,f +6334,3623,19,2,f +6334,3626bpr0360,78,1,f +6334,3626bpr0472,78,1,f +6334,3626bpr0516a,78,1,f +6334,3626bpr0519,78,1,f +6334,3660,71,8,f +6334,3666,72,1,f +6334,3673,71,1,t +6334,3673,71,4,f +6334,3679,71,2,f +6334,3680,0,2,f +6334,3700,14,2,f +6334,3707,0,2,f +6334,3710,2,11,f +6334,3710,19,2,f +6334,3710,70,2,f +6334,3710,72,3,f +6334,3749,19,4,f +6334,3794b,72,2,f +6334,3795,72,3,f +6334,3829c01,71,1,f +6334,3937,378,1,f +6334,3938,0,1,f +6334,3941,15,2,f +6334,3942c,0,2,f +6334,3957a,0,2,f +6334,3960pr0007,40,1,f +6334,4006,0,1,f +6334,4032a,4,4,f +6334,4070,19,2,f +6334,4079,70,2,f +6334,4081b,0,6,f +6334,4085c,71,2,f +6334,4161,288,2,f +6334,41764,71,2,f +6334,41765,71,2,f +6334,41883,40,1,f +6334,42023,71,4,f +6334,42608,71,2,f +6334,42610,71,8,f +6334,4274,1,2,f +6334,4274,1,1,t +6334,4282,0,2,f +6334,4349,0,1,f +6334,43722,72,1,f +6334,43723,72,1,f +6334,44302a,0,6,f +6334,44568,71,2,f +6334,44728,72,1,f +6334,4477,72,2,f +6334,45301,288,2,f +6334,4589,0,5,f +6334,4742,72,2,f +6334,48336,19,2,f +6334,4854,72,2,f +6334,4864b,47,2,f +6334,4865a,288,2,f +6334,4865a,19,3,f +6334,4870,71,1,f +6334,50304,72,1,f +6334,50305,72,1,f +6334,50950,288,4,f +6334,50955,288,2,f +6334,50956,288,2,f +6334,50986pr0003,40,1,f +6334,51011,0,8,f +6334,54091,71,1,f +6334,54093,72,1,f +6334,54200,288,6,f +6334,54200,288,1,t +6334,54200,72,2,f +6334,54200,72,1,t +6334,56902,71,6,f +6334,57539,0,1,f +6334,59363,0,1,f +6334,60470a,0,1,f +6334,60474,72,3,f +6334,60475a,71,2,f +6334,6091,72,2,f +6334,61254,0,6,f +6334,6141,71,1,t +6334,6141,71,2,f +6334,6141,47,2,f +6334,6141,47,1,t +6334,61506,70,1,f +6334,6180,0,1,f +6334,61975,70,1,f +6334,61976,70,1,f +6334,62363,28,1,f +6334,6259,72,2,f +6334,63965,0,4,f +6334,6587,72,1,f +6334,970c00,28,1,f +6334,970c00,19,1,f +6334,970c00,15,1,f +6334,973pr1370c01,308,1,f +6334,973pr1373c01,15,1,f +6334,973pr1374c01,19,1,f +6334,973pr1462c01,78,1,f +6335,2348b,33,1,f +6335,2349a,15,1,f +6335,2357,15,5,f +6335,2412b,4,2,f +6335,2412b,14,1,f +6335,2412b,15,2,f +6335,2420,4,1,f +6335,2436,15,1,f +6335,2439,8,1,f +6335,2441,4,1,f +6335,2542,6,1,f +6335,3001,15,4,f +6335,3003,14,1,f +6335,3004,15,18,f +6335,3005,15,2,f +6335,3008,15,2,f +6335,3009,15,1,f +6335,3010,15,10,f +6335,3020,15,4,f +6335,3021,4,1,f +6335,3022,4,1,f +6335,3022,15,2,f +6335,3023,4,2,f +6335,3023,7,3,f +6335,3024,15,1,f +6335,3024,4,1,f +6335,3068b,0,2,f +6335,3069b,0,2,f +6335,3190,0,1,f +6335,3460,4,2,f +6335,3622,15,8,f +6335,3623,4,1,f +6335,3626bp02,14,1,f +6335,3626bp03,14,1,f +6335,3626bpr0001,14,1,f +6335,3641,0,4,f +6335,3659,15,1,f +6335,3660,15,1,f +6335,3665,15,2,f +6335,3675,4,4,f +6335,3710,15,1,f +6335,3710,4,2,f +6335,3788,15,2,f +6335,3795,4,1,f +6335,3823,41,1,f +6335,3829c01,7,1,f +6335,3853,15,1,f +6335,3856,15,2,f +6335,3865,7,1,f +6335,3898,15,1,f +6335,3899,47,1,f +6335,3940b,15,1,f +6335,3957a,7,1,f +6335,3960p01,15,1,f +6335,3962b,0,1,f +6335,4070,0,2,f +6335,4085c,15,1,f +6335,4085c,4,1,f +6335,4085c,4,1,t +6335,4150p02,14,5,f +6335,4485,15,1,f +6335,4515,4,1,f +6335,4589,0,1,f +6335,4624,15,4,f +6335,4625,15,1,f +6335,4740,8,1,f +6335,4865a,0,2,f +6335,4865pb01,15,1,f +6335,6093,0,1,f +6335,6141,46,2,f +6335,6141,46,1,t +6335,69c01,15,1,f +6335,970c00,1,1,f +6335,970c00,4,1,f +6335,970c00,7,1,f +6335,973pb0061c01,14,1,f +6335,973pb0201c01,15,1,f +6335,973px3c01,15,1,f +6337,11211,15,2,f +6337,11212,72,2,f +6337,11212,0,13,f +6337,14719,71,12,f +6337,15397,0,6,f +6337,15573,71,8,f +6337,15573,0,3,f +6337,15712,71,2,f +6337,18649,0,1,f +6337,22388,19,4,f +6337,2412b,15,4,f +6337,2412b,4,36,f +6337,2412b,0,48,f +6337,2420,15,3,f +6337,2420,0,3,f +6337,2431,4,4,f +6337,2431,41,4,f +6337,2431,0,1,f +6337,2431,71,5,f +6337,2453b,14,1,f +6337,25269,71,2,f +6337,3004,14,5,f +6337,3005,14,3,f +6337,3021,0,4,f +6337,3021,15,1,f +6337,3022,0,6,f +6337,3023,0,14,f +6337,3023,72,3,f +6337,3023,2,14,f +6337,3023,40,58,f +6337,3024,40,22,f +6337,3024,71,5,f +6337,3024,0,6,f +6337,3024,19,4,f +6337,3024,72,2,f +6337,3024,15,2,f +6337,3032,0,1,f +6337,3034,0,2,f +6337,3068b,72,1,f +6337,3069b,71,8,f +6337,3069b,4,4,f +6337,3070b,0,5,f +6337,3070b,72,5,f +6337,32474,80,1,f +6337,3623,72,1,f +6337,3623,0,7,f +6337,3623,15,4,f +6337,3666,0,4,f +6337,3679,71,1,f +6337,3680,0,1,f +6337,3710,15,3,f +6337,3795,0,4,f +6337,3832,0,3,f +6337,3832,2,1,f +6337,3957a,15,2,f +6337,4081b,0,1,f +6337,4162,0,4,f +6337,4162pr0002,0,1,f +6337,4477,0,7,f +6337,4733,71,3,f +6337,4733,15,1,f +6337,60478,28,4,f +6337,61409,15,4,f +6337,61409,14,2,f +6337,6141,19,4,f +6337,6141,47,2,f +6337,63868,0,4,f +6337,64644,15,2,f +6337,6636,0,4,f +6337,85861,15,2,f +6337,87087,15,2,f +6337,87580,71,1,f +6337,87609,0,3,f +6337,87609,2,1,f +6337,87994,15,2,f +6337,93094,15,1,f +6337,93274,4,8,f +6337,98138,40,2,f +6337,98138,326,2,f +6337,99206,71,4,f +6337,99781,15,2,f +6338,30173a,7,3,f +6338,30175,0,1,f +6338,30177,2,2,f +6338,3022,15,3,f +6338,30569,15,3,f +6338,3626bpr0137,14,1,f +6338,3626bpx6,14,1,f +6338,3626bpx7,14,1,f +6338,4142692pb1,9999,1,f +6338,4142692pb1,89,1,f +6338,4142692pb2,9999,1,f +6338,4142692pb3,9999,1,f +6338,529,334,1,f +6338,970c00,2,2,f +6338,970c11pb02a,0,1,f +6338,973pb0257c01,2,1,f +6338,973pn0c01,15,1,f +6338,973px40c01,2,1,f +6340,3001,14,10,f +6340,3003,14,7,f +6340,3004,14,4,f +6340,3010,14,4,f +6340,3020,1,2,f +6340,3068pb03,15,1,f +6340,3068pb26,15,2,f +6340,3647stk01,9999,1,t +6340,3795,1,1,f +6340,3867,2,1,f +6340,3899,14,1,f +6340,3957a,0,1,f +6340,3980c01,14,1,f +6340,4222a,4,2,f +6340,4727,2,1,f +6340,4728,4,1,f +6340,787c01,14,2,f +6340,fab3d,9999,1,f +6340,fab4c,9999,1,f +6340,fab7f,9999,1,f +6341,263,0,2,f +6341,x515,14,2,f +6341,x564,4,2,f +6344,3004,7,1,f +6344,3023,7,1,f +6344,3024,0,2,f +6344,3062b,7,3,f +6344,3626apr0001,14,1,f +6344,3700,0,1,f +6344,3844,8,1,f +6344,3846p4h,7,1,f +6344,3847,8,1,f +6344,3849,8,1,f +6344,3957a,0,1,f +6344,3958,2,1,f +6344,4085c,0,2,f +6344,4460b,7,4,f +6344,4490,7,3,f +6344,4495b,4,1,f +6344,4495b,14,1,f +6344,4497,6,1,f +6344,4504,0,1,f +6344,4626,0,1,f +6344,6019,0,2,f +6344,970x021,0,1,f +6344,973p41c03,4,1,f +6345,3001a,14,21,f +6346,23306,383,1,f +6346,2412b,8,1,f +6346,2476a,4,2,f +6346,2877,7,4,f +6346,3005,4,2,f +6346,3007,8,1,f +6346,3008,8,1,f +6346,3009,19,1,f +6346,3020,4,1,f +6346,3028,19,1,f +6346,3032,19,2,f +6346,30357,19,4,f +6346,30358,19,3,f +6346,30374,41,1,f +6346,3063b,7,2,f +6346,3626bps3,14,1,f +6346,3626bps4,14,1,f +6346,3666,19,1,f +6346,3700,0,2,f +6346,3794a,4,4,f +6346,3901,19,1,f +6346,3901,7,1,f +6346,3939,47,1,f +6346,4079,0,2,f +6346,4865a,4,4,f +6346,970c02pb03,19,1,f +6346,970x025,19,1,f +6346,973ps3c01,15,1,f +6346,973ps6c01,19,1,f +6347,2412b,71,5,f +6347,2412b,71,1,t +6347,2540,19,2,f +6347,2877,71,2,f +6347,3001,72,1,f +6347,30033,72,1,f +6347,30157,72,1,f +6347,3020,72,1,f +6347,3022,19,1,f +6347,30368,0,1,f +6347,30377,19,5,f +6347,30377,19,1,t +6347,3039,19,1,f +6347,3403,71,1,f +6347,3404,71,1,f +6347,3626bpb0224,71,1,f +6347,3626bpb0237,78,1,f +6347,3666,71,2,f +6347,3684,70,2,f +6347,3700,70,2,f +6347,3795,72,1,f +6347,3941,47,1,f +6347,3941,71,1,f +6347,4032a,71,1,f +6347,4095,0,1,f +6347,4150,0,1,f +6347,41539,72,1,f +6347,41855,0,4,f +6347,43898,71,1,f +6347,4740,72,3,f +6347,4740,72,1,t +6347,4740,36,1,f +6347,4864b,71,2,f +6347,55295,72,1,f +6347,55296,72,1,t +6347,55297,72,1,f +6347,55298,72,1,f +6347,55299,72,1,f +6347,55300,72,1,f +6347,6233,72,1,f +6347,73983,71,1,f +6347,970c00,0,2,f +6347,973pb0363c01,0,1,f +6347,973ps7c01,0,1,f +6349,3041,335,25,f +6350,2445,0,4,f +6350,2445,71,2,f +6350,3005,15,10,f +6350,3023,0,5,f +6350,3024,15,48,f +6350,3024,71,2,f +6350,3024,15,1,t +6350,3024,71,1,t +6350,3062b,15,86,f +6350,3069b,15,1,f +6350,3069b,71,1,f +6350,3069b,0,4,f +6350,3070b,71,2,f +6350,3070b,71,1,t +6350,3460,72,3,f +6350,3623,15,11,f +6350,3710,71,2,f +6350,3794b,71,2,f +6350,3941,15,2,f +6350,3957a,15,1,f +6350,41539,72,1,f +6350,4162,0,3,f +6350,4162pr0020,0,1,f +6350,4274,1,10,f +6350,4274,1,1,t +6350,4477,71,3,f +6350,4490,15,35,f +6350,48336,71,2,f +6350,60474,15,6,f +6350,6081,71,1,f +6350,6141,15,28,f +6350,6141,15,1,t +6350,6179,71,2,f +6350,6232,15,1,f +6350,62462,15,10,f +6350,6259,15,8,f +6350,63864,0,4,f +6350,63868,15,3,f +6350,6541,15,1,f +6350,6636,71,8,f +6350,73983,15,19,f +6350,85080,15,2,f +6350,87079,71,9,f +6350,87081,15,1,f +6350,96874,25,1,t +6351,2340,4,2,f +6351,2412b,7,2,f +6351,2444,4,4,f +6351,2445,4,1,f +6351,2450,4,2,f +6351,2536,0,1,f +6351,2715,0,1,f +6351,2716,47,1,f +6351,2717,1,1,f +6351,2744,4,2,f +6351,2780,0,8,f +6351,2825,7,4,f +6351,2853,7,4,f +6351,2905,0,2,f +6351,2907,7,1,f +6351,3021,4,2,f +6351,3023,0,2,f +6351,3023,4,2,f +6351,3035,0,1,f +6351,3068b,0,1,f +6351,3069b,0,1,f +6351,32002,8,4,f +6351,32007,15,4,f +6351,32009,0,2,f +6351,32009,4,2,f +6351,32014,7,2,f +6351,32015,7,4,f +6351,32016,7,2,f +6351,32017,0,2,f +6351,32018,4,2,f +6351,32039,7,4,f +6351,32062,0,12,f +6351,3460,4,1,f +6351,3474,4,1,f +6351,3648a,7,1,f +6351,3665,4,4,f +6351,3666,4,5,f +6351,3700,4,3,f +6351,3703,4,2,f +6351,3705,0,3,f +6351,3706,0,5,f +6351,3707,0,6,f +6351,3708,0,1,f +6351,3710,4,2,f +6351,3713,7,15,f +6351,3738,4,1,f +6351,3749,7,6,f +6351,3894,4,2,f +6351,3933,4,1,f +6351,3934,4,1,f +6351,4019,7,2,f +6351,4265b,7,14,f +6351,4519,0,2,f +6351,4716,7,1,f +6351,6536,7,4,f +6351,6538b,7,5,f +6351,6558,0,4,f +6351,6588,0,1,f +6351,6632,0,4,f +6351,680c01,0,2,f +6351,tech012,9999,1,f +6352,10052,71,1,f +6352,10113,0,1,f +6352,11477,71,2,f +6352,11477,0,2,f +6352,11477,272,14,f +6352,15068,272,1,f +6352,15341,179,3,f +6352,15427pr0001,0,1,f +6352,15428pr0001,0,1,f +6352,15535,72,1,f +6352,15573,272,4,f +6352,15573,0,2,f +6352,15706,322,8,f +6352,15712,71,5,f +6352,16770,41,8,f +6352,18601,72,1,f +6352,18649,0,6,f +6352,18651,0,2,f +6352,18868a,41,1,f +6352,19981pr0001,41,1,f +6352,19981pr0002,41,1,f +6352,19981pr0003,41,1,f +6352,21445,0,2,f +6352,21845,0,1,f +6352,2412b,272,4,f +6352,2412b,179,9,f +6352,2419,71,2,f +6352,2540,71,5,f +6352,2540,0,3,f +6352,298c02,71,1,f +6352,298c02,71,1,t +6352,30028,0,4,f +6352,3003,71,2,f +6352,3005,272,2,f +6352,3020,14,1,f +6352,3020,322,1,f +6352,3020,0,2,f +6352,3020,272,2,f +6352,3021,322,6,f +6352,3021,71,6,f +6352,3022,72,3,f +6352,3023,19,1,f +6352,3023,0,4,f +6352,3045,71,2,f +6352,3069b,322,10,f +6352,3069bpr0153,0,1,f +6352,3070b,182,1,f +6352,3070b,182,1,t +6352,32064a,71,2,f +6352,3626cpr0896,78,1,f +6352,3626cpr1644,14,1,f +6352,3626cpr1765,78,1,f +6352,3675,272,2,f +6352,3701,71,1,f +6352,3710,322,1,f +6352,3710,272,1,f +6352,3937,14,1,f +6352,3938,0,1,f +6352,3941,41,1,f +6352,4286,322,2,f +6352,4287,71,2,f +6352,44567a,71,1,f +6352,44676,272,2,f +6352,4477,72,1,f +6352,4595,71,1,f +6352,4600,0,1,f +6352,4740,182,2,f +6352,4865b,41,4,f +6352,48729b,72,1,t +6352,48729b,72,1,f +6352,49668,0,2,f +6352,50231,72,1,f +6352,54200,41,1,t +6352,54200,71,14,f +6352,54200,71,1,t +6352,54200,272,1,t +6352,54200,182,1,t +6352,54200,182,1,f +6352,54200,272,2,f +6352,54200,41,2,f +6352,6019,0,2,f +6352,60476,71,2,f +6352,60477,72,2,f +6352,6091,272,2,f +6352,6131,72,1,f +6352,61409,71,5,f +6352,6141,72,3,f +6352,6141,72,2,t +6352,62360,41,2,f +6352,63868,0,5,f +6352,63965,70,1,f +6352,6553,0,2,f +6352,6632,71,2,f +6352,74967,0,4,f +6352,85984,0,2,f +6352,87580,272,1,f +6352,88072,71,1,f +6352,92747pr0002,52,1,f +6352,92747pr0003,52,1,f +6352,92747pr0004,52,1,f +6352,92747pr0005,52,1,f +6352,92747pr0006,52,1,f +6352,96874,25,1,t +6352,970c00,72,2,f +6352,970c00pr0628,0,1,f +6352,973pr2053c01,72,1,f +6352,973pr2590c01,0,1,f +6352,973pr2922c01,72,1,f +6352,98138,52,1,f +6352,98138,41,14,f +6352,98138,52,1,t +6352,98138,41,1,t +6352,98397,71,2,f +6352,98721,0,2,t +6352,98721,0,3,f +6352,99207,0,1,f +6352,99780,72,1,f +6352,99781,0,1,f +6354,2335pb006,0,1,f +6354,2445,0,2,f +6354,2446,0,1,f +6354,2454a,0,4,f +6354,2458,72,6,f +6354,2465,0,2,f +6354,2540,0,3,f +6354,2587pb05,0,1,f +6354,30000,72,2,f +6354,3001,0,2,f +6354,3002,0,1,f +6354,3003,0,1,f +6354,3003,72,4,f +6354,3004,0,16,f +6354,3004,320,4,f +6354,3005,0,6,f +6354,3007,0,1,f +6354,3008,0,3,f +6354,3009,72,1,f +6354,3009,0,2,f +6354,30104,0,2,f +6354,3023,320,9,f +6354,30237a,0,4,f +6354,3029,0,1,f +6354,3034,0,4,f +6354,3035,0,2,f +6354,3040b,320,6,f +6354,3048c,0,8,f +6354,3048c,320,11,f +6354,32065,0,4,f +6354,3298,320,2,f +6354,3308,0,1,f +6354,3626bpb0217,14,1,f +6354,3626bpr0350,14,1,f +6354,3660,320,2,f +6354,3665,320,4,f +6354,3700,72,4,f +6354,3701,0,2,f +6354,3710,320,2,f +6354,3747a,0,1,f +6354,3749,19,4,f +6354,3794a,4,2,f +6354,3795,320,2,f +6354,4070,71,4,f +6354,4282,0,2,f +6354,43899,72,3,f +6354,43900,334,1,f +6354,4460a,0,10,f +6354,4495a,320,2,f +6354,4740,47,2,f +6354,48141,9999,2,f +6354,48489,0,1,f +6354,48493,0,1,f +6354,48494pb05,151,1,f +6354,48495,4,1,f +6354,6019,72,4,f +6354,6111,0,2,f +6354,6123,72,2,f +6354,6126a,57,4,f +6354,6222,70,4,f +6354,8800stk01,9999,1,t +6354,970x021,0,1,f +6354,970x154,0,1,f +6354,973c14,0,1,f +6354,973pb0347c01,0,1,f +6355,3002,15,1,f +6355,3002,19,1,f +6355,3002,14,3,f +6355,3003,15,2,f +6355,3003pr0001,14,3,f +6355,3003pr0002,15,2,f +6355,3020,15,1,f +6355,3021,4,4,f +6355,3021,15,2,f +6355,3021,25,1,f +6355,3022,19,1,f +6355,3022,4,4,f +6355,3022,25,1,f +6355,3022,14,3,f +6355,3794b,14,3,f +6355,3794b,19,1,f +6355,3794b,15,1,f +6355,54200,19,1,f +6355,54200,15,1,f +6355,54200,14,3,f +6355,54200,19,1,t +6355,54200,14,1,t +6355,54200,15,1,t +6355,6141,25,1,t +6355,6141,4,1,t +6355,6141,25,2,f +6355,6141,4,10,f +6356,502,7,4,f +6356,x461,0,2,f +6357,2412b,85,2,f +6357,298c02,71,2,f +6357,3004,2,1,f +6357,3020,27,1,f +6357,3021,85,1,f +6357,3022,2,2,f +6357,3023,85,2,f +6357,3069b,41,2,f +6357,3679,71,1,f +6357,3680,0,1,f +6357,4070,2,2,f +6357,44728,71,1,f +6357,47457,27,3,f +6357,57908,72,2,f +6357,58176,35,4,f +6357,60478,0,4,f +6357,87580,85,1,f +6357,92013,72,4,f +6357,98138,34,1,f +6357,98313,15,4,f +6357,99207,71,1,f +6358,15068,15,1,f +6358,2431pr0017,14,1,f +6358,2432,0,1,f +6358,2817,0,1,f +6358,3022,14,1,f +6358,3023,15,1,f +6358,3024,71,1,f +6358,3024,71,1,t +6358,3031,72,1,f +6358,3040b,1,2,f +6358,3068bpr0930,15,1,f +6358,32530,72,2,f +6358,33057,484,1,f +6358,3673,71,2,f +6358,3673,71,1,t +6358,43892,0,2,f +6358,59900,33,2,f +6358,60897,1,2,f +6358,61252,71,1,f +6358,87087,1,2,f +6358,92338,179,1,f +6358,98116pr0003,27,1,f +6358,98138,36,2,f +6358,98138,36,1,t +6360,2555,0,1,f +6360,30136,308,2,f +6360,3020,70,1,f +6360,30374,70,1,f +6360,3068bpr0170,70,1,f +6360,3626bpr0567,14,1,f +6360,41535,288,1,f +6360,48336,0,1,f +6360,59900,46,1,f +6360,59900,34,1,f +6360,59900,72,1,f +6360,6131pr0003,288,1,f +6360,6132,0,1,f +6360,6141,36,1,f +6360,6141,34,1,f +6360,6141,36,1,t +6360,6141,34,1,t +6360,87580,28,1,f +6360,970c00pr0157,288,1,f +6360,973c51,288,1,f +6361,3002,378,1,f +6361,3005,8,4,f +6361,3010,8,1,f +6361,3031,7,1,f +6361,3040b,8,4,f +6361,3040b,7,4,f +6361,3040b,378,2,f +6361,3298,378,2,f +6361,3660,7,2,f +6361,3665,7,4,f +6361,3700,378,2,f +6361,40378,378,2,f +6361,40379,378,1,f +6361,x158,378,1,f +6362,2397,1,1,f +6362,3004,1,1,f +6362,3004,15,1,f +6362,3020,0,1,f +6362,3021,4,1,f +6362,3022,4,1,f +6362,3023,15,1,f +6362,3023,0,1,f +6362,3626apr0001,14,1,f +6362,3710,0,3,f +6362,3835,7,2,f +6362,3844,8,1,f +6362,3846p4g,7,1,f +6362,3847a,8,2,f +6362,3957a,0,1,f +6362,4085b,0,2,f +6362,4488,0,2,f +6362,4489a,6,2,f +6362,4495b,4,1,f +6362,4497,6,1,f +6362,4524,1,1,f +6362,4854,0,1,f +6362,4865a,0,2,f +6362,73590c01a,0,3,f +6362,75998pr0007,15,1,f +6362,970c00,1,1,f +6362,973p40c03,4,1,f +6363,2456,15,4,f +6363,2456,4,4,f +6363,2456,14,4,f +6363,2456,1,4,f +6363,3001,0,12,f +6363,3001,14,24,f +6363,3001,4,24,f +6363,3001,2,12,f +6363,3001,15,24,f +6363,3001,1,24,f +6363,3002,2,8,f +6363,3002,0,8,f +6363,3002,4,12,f +6363,3002,1,12,f +6363,3002,14,12,f +6363,3002,15,12,f +6363,3003,4,40,f +6363,3003,0,20,f +6363,3003,2,20,f +6363,3003,15,40,f +6363,3003,14,40,f +6363,3003,1,40,f +6363,3004,14,60,f +6363,3004,0,28,f +6363,3004,15,60,f +6363,3004,1,60,f +6363,3004,4,60,f +6363,3004,2,28,f +6363,3005,2,12,f +6363,3005,1,40,f +6363,3005,4,40,f +6363,3005,14,40,f +6363,3005,15,40,f +6363,3005,0,20,f +6363,3008,1,4,f +6363,3008,14,4,f +6363,3008,4,4,f +6363,3008,15,4,f +6363,3009,15,8,f +6363,3009,14,8,f +6363,3009,4,8,f +6363,3009,1,8,f +6363,3010,0,24,f +6363,3010,2,20,f +6363,3010,14,40,f +6363,3010,1,40,f +6363,3010,4,40,f +6363,3010,15,40,f +6363,3622,0,8,f +6363,3622,2,4,f +6363,3622,1,12,f +6363,3622,15,12,f +6363,3622,4,12,f +6363,3622,14,12,f +6368,2447,40,1,t +6368,2460,15,1,f +6368,3004,0,1,f +6368,3022,15,1,f +6368,3023,15,2,f +6368,30332,0,1,f +6368,30602,15,1,f +6368,32013,15,1,f +6368,32064b,15,1,f +6368,3673,71,1,f +6368,3710,15,1,f +6368,3795,0,1,f +6368,3829c01,15,1,f +6368,3937,0,1,f +6368,3938,15,1,f +6368,4349,0,1,f +6368,4360,0,1,f +6368,43713,0,1,f +6368,4617b,0,1,f +6368,52501,15,2,f +6368,59426,72,1,f +6368,6070,40,1,f +6368,6141,33,1,t +6368,6141,46,1,f +6368,6141,33,2,f +6368,6141,46,1,t +6369,2780,0,2,f +6369,32013,19,2,f +6369,32015,19,2,f +6369,32073,0,2,f +6369,32138,0,1,f +6369,32140,0,2,f +6369,32553,6,3,f +6369,32554,57,1,f +6369,32572,19,1,f +6369,3713,7,4,f +6369,3749,7,1,f +6369,40581,6,1,f +6369,4519,0,2,f +6369,6553,0,2,f +6369,6553,19,2,f +6369,71509,0,1,t +6369,71509,0,1,f +6375,15210pr01,0,1,f +6375,2432,15,1,f +6375,3004,19,2,f +6375,3020,70,1,f +6375,3069bpr0030,15,1,f +6375,3899,14,1,f +6375,4079b,14,1,f +6377,2444,0,2,f +6377,2711,7,2,f +6377,2719,7,3,f +6377,2817,0,2,f +6377,3743,7,2,f +6377,4261,7,2,f +6377,4442,7,3,f +6378,3002a,47,1,f +6378,3021,15,1,f +6378,3023,4,1,f +6378,3030,7,1,f +6378,3317,14,1,f +6378,3624,4,1,f +6378,3626apr0001,14,1,f +6378,3831,15,1,f +6378,970c00,1,1,f +6378,973c01,15,1,f +6378,rb00166,0,1,f +6378,x454pb01,15,1,f +6379,3006,1,2,f +6379,3006,14,2,f +6379,3006,15,4,f +6379,3006,4,4,f +6379,3007,1,3,f +6379,3007,14,2,f +6379,3007,15,5,f +6379,3007,4,5,f +6381,122c01,7,2,f +6381,3004,47,1,f +6381,3005,14,2,f +6381,3010,14,2,f +6381,3010p20c,1,1,f +6381,3020,7,1,f +6381,3020,14,1,f +6381,3022,7,1,f +6381,3023,7,3,f +6381,3029,1,1,f +6381,3624,1,2,f +6381,3626apr0001,14,2,f +6381,3633,14,4,f +6381,3641,0,4,f +6381,3710,0,3,f +6381,3787,7,1,f +6381,3788,1,1,f +6381,3823,47,1,f +6381,3832,7,2,f +6381,970c00,0,2,f +6381,973c02,4,2,f +6382,2866,14,2,f +6382,60128,72,2,f +6383,2555,0,1,f +6383,2780,0,1,t +6383,2780,0,4,f +6383,2817,71,2,f +6383,2825,25,4,f +6383,30031,0,1,f +6383,3021,14,1,f +6383,3034,0,1,f +6383,30464,82,1,f +6383,30608,82,1,f +6383,30608,19,1,f +6383,30648,0,5,f +6383,32013,0,2,f +6383,32056,0,2,f +6383,32073,71,1,f +6383,32123b,71,2,f +6383,32123b,71,1,t +6383,32271,71,2,f +6383,3626bpr0536,14,1,f +6383,3626bpr0584,14,1,f +6383,3705,0,2,f +6383,3749,19,2,f +6383,3794b,272,1,f +6383,4519,71,3,f +6383,4589,14,2,f +6383,4697b,71,1,f +6383,4697b,71,1,t +6383,47458,0,1,f +6383,47753,272,1,f +6383,54200,25,1,t +6383,54200,25,2,f +6383,55981,71,5,f +6383,60849,82,1,f +6383,61184,71,2,f +6383,64644,25,1,f +6383,6558,1,2,f +6383,85940,0,2,f +6383,85961pr01,72,1,f +6383,89536,0,1,f +6383,970c00pr0117,25,1,f +6383,970c00pr0118,272,1,f +6383,973pr1384c01,25,1,f +6383,973pr1386c01,272,1,f +6385,11090,0,1,f +6385,11477,308,2,f +6385,15068,19,1,f +6385,2540,0,1,f +6385,3003,70,1,f +6385,3004,70,1,f +6385,3021,71,1,f +6385,3021,19,1,f +6385,3022,19,2,f +6385,3023,70,1,f +6385,3023,25,1,f +6385,3023,19,2,f +6385,3024,0,2,f +6385,3660,19,2,f +6385,3679,71,1,f +6385,3680,0,1,f +6385,3710,70,1,f +6385,40379,0,1,f +6385,4871,70,1,f +6385,49668,19,2,f +6385,50950,308,2,f +6385,54200,70,3,f +6385,60481,70,2,f +6385,6091,70,2,f +6385,6141,19,2,f +6385,85984,19,1,f +6385,87087,70,4,f +6385,92946,0,2,f +6385,98138,78,1,f +6385,98138pr0008,15,2,f +6385,99780,0,2,f +6387,2412b,25,2,f +6387,2412b,80,1,f +6387,2412b,72,2,f +6387,2436,0,3,f +6387,30027b,0,4,f +6387,30028,0,4,f +6387,3021,72,1,f +6387,3023,0,1,f +6387,3031,72,1,f +6387,30602,40,1,f +6387,3069b,25,2,f +6387,3710,72,1,f +6387,3795,0,1,f +6387,4589,72,2,f +6387,4590,72,1,f +6387,47458,0,1,f +6387,50943,80,1,f +6387,50947,0,4,f +6387,50950,72,2,f +6387,6141,80,1,t +6387,6141,25,4,f +6387,6141,25,1,t +6387,6141,80,2,f +6387,6157,0,2,f +6388,3626bpb0140,6,1,f +6388,3626bpb0141,6,1,f +6388,3626bpb0142,6,1,f +6388,45522,19,3,f +6388,973bpb140c01,0,1,f +6388,973bpb141c01,15,1,f +6388,973bpb142c01,110,1,f +6388,bbcard13gl,9999,1,f +6388,bbcard15,9999,1,f +6388,bbcard23,9999,1,f +6388,x494cx1,15,1,f +6388,x494cx1,0,1,f +6388,x494cx1,110,1,f +6389,735,1,2,f +6389,735,4,2,f +6390,2362a,0,1,f +6390,2489,6,1,f +6390,30103,0,1,f +6390,30106,47,1,f +6390,3020,4,1,f +6390,3023,0,1,f +6390,3031,7,1,f +6390,3048c,0,1,f +6390,3062b,34,1,f +6390,3626bpx20,14,1,f +6390,3678ap01,0,1,f +6390,4460a,0,2,f +6390,6124,36,1,f +6390,6131,0,1,f +6390,6141,57,2,f +6390,6141,57,1,t +6390,6251,0,1,f +6390,973px35c01,0,1,f +6391,2412b,14,6,f +6391,2431pr0028,72,1,f +6391,2432,71,3,f +6391,2444,14,2,f +6391,2446,72,2,f +6391,2447,0,1,t +6391,2447,0,2,f +6391,2479,71,1,f +6391,2496,0,1,f +6391,2540,72,2,f +6391,2584,0,1,f +6391,2585,71,1,f +6391,2654,15,3,f +6391,2655,71,1,f +6391,2780,0,1,f +6391,2780,0,1,t +6391,3001,71,1,f +6391,3002,14,2,f +6391,3002,0,2,f +6391,3003,1,1,f +6391,3004,14,2,f +6391,3009,0,2,f +6391,3010,14,2,f +6391,30165,14,2,f +6391,30191,14,1,f +6391,3020,14,2,f +6391,3021,14,2,f +6391,3021,0,2,f +6391,3022,71,2,f +6391,30229,72,1,f +6391,3023,14,3,f +6391,3023,46,1,f +6391,30332,0,1,f +6391,3034,0,3,f +6391,3035,72,1,f +6391,30365,72,2,f +6391,30377,71,2,f +6391,30377,71,1,t +6391,30395,72,1,f +6391,30396,0,1,f +6391,30407,0,4,f +6391,30540,0,2,f +6391,30552,71,2,f +6391,30592,71,1,f +6391,30602,14,2,f +6391,3139,0,2,f +6391,3176,14,1,f +6391,32064b,71,4,f +6391,3245b,15,1,f +6391,32530,72,4,f +6391,3460,71,2,f +6391,3623,72,5,f +6391,3626bpr0279,14,1,f +6391,3626bpr0282,14,1,f +6391,3659,72,1,f +6391,3665,14,2,f +6391,3666,72,8,f +6391,3673,71,1,f +6391,3673,71,1,t +6391,3701,0,2,f +6391,3706,0,3,f +6391,3710,14,1,f +6391,3794a,15,4,f +6391,3795,14,2,f +6391,3795,72,3,f +6391,3942c,25,1,f +6391,40902,71,1,f +6391,41747,72,1,f +6391,41748,72,1,f +6391,41767,0,1,f +6391,41767,14,1,f +6391,41768,14,1,f +6391,41768,0,1,f +6391,41769,14,1,f +6391,41855,14,1,f +6391,42022,14,2,f +6391,42023,0,4,f +6391,4282,0,1,f +6391,4345b,71,2,f +6391,4346,14,2,f +6391,43898,0,1,f +6391,44301a,0,6,f +6391,44567a,72,1,f +6391,44728,14,4,f +6391,4488,0,2,f +6391,4519,71,1,f +6391,45705,40,1,f +6391,4624,71,2,f +6391,4714,15,1,f +6391,4715,15,2,f +6391,47406,0,1,f +6391,47407,14,1,f +6391,47407,0,2,f +6391,48286,9999,1,f +6391,4868b,72,2,f +6391,4869,71,2,f +6391,56823,0,1,f +6391,6019,0,6,f +6391,6070,0,1,f +6391,6141,36,1,t +6391,6141,34,2,f +6391,6141,34,1,t +6391,6141,36,9,f +6391,6190,71,2,f +6391,6239,14,1,f +6391,6538b,71,1,f +6391,6558,0,2,f +6391,970x199,25,2,f +6391,973pb0303c01,25,2,f +6392,2586p4f,7,1,f +6392,3004,0,1,t +6392,30105,0,1,f +6392,3023,0,1,t +6392,3626b,47,1,f +6392,3626bpx20,14,1,f +6392,3626bpx54,14,1,f +6392,3626bpx74,14,1,f +6392,3626bpx97,14,1,f +6392,3678ap01,0,1,f +6392,3846p4f,7,1,f +6392,3847,8,1,f +6392,3849,6,1,f +6392,3896,0,1,f +6392,4491b,4,1,f +6392,4493c01pb02,0,1,f +6392,4495b,14,1,f +6392,59,383,1,f +6392,6122,0,1,f +6392,6123,8,1,f +6392,6124,36,1,f +6392,6131,0,1,f +6392,87692,4,1,f +6392,87693,4,1,t +6392,87694,4,1,t +6392,970x026,8,3,f +6392,973pb0066c01,7,1,f +6392,973px125c01,4,1,f +6392,973px35c01,0,1,f +6392,973px90c01,0,1,f +6394,11203,72,2,f +6394,11211,4,5,f +6394,11458,72,2,f +6394,11477,0,2,f +6394,13349,0,1,f +6394,13731,4,2,f +6394,15619,4,1,t +6394,15619,4,1,f +6394,15621,36,1,f +6394,15705,308,1,f +6394,15827,0,1,f +6394,15831,0,1,f +6394,2412b,297,3,f +6394,2420,4,2,f +6394,2450,0,4,f +6394,2653,0,2,f +6394,2921,71,2,f +6394,3002,4,2,f +6394,3010,4,1,f +6394,30173a,179,2,f +6394,30173a,179,1,t +6394,3020,0,4,f +6394,3021,4,7,f +6394,3022,4,2,f +6394,3022,14,2,f +6394,3023,2,9,f +6394,3023,4,4,f +6394,3024,0,2,f +6394,3024,0,1,t +6394,3032,0,1,f +6394,30367b,0,1,f +6394,30374,0,2,f +6394,3039,0,1,f +6394,30414,4,2,f +6394,3068b,0,2,f +6394,3068b,4,1,f +6394,3176,71,2,f +6394,32028,71,4,f +6394,32064b,15,1,f +6394,3245c,4,2,f +6394,3623,4,4,f +6394,3623,19,2,f +6394,3626cpr1283,0,1,f +6394,3626cpr1365,14,1,f +6394,3660,4,2,f +6394,3660,0,6,f +6394,3666,4,4,f +6394,3679,71,2,f +6394,3680,0,2,f +6394,3700,19,3,f +6394,3747b,4,2,f +6394,3794b,0,2,f +6394,3937,4,2,f +6394,41769,4,1,f +6394,41770,4,1,f +6394,42022,4,2,f +6394,4282,0,1,f +6394,47397,0,1,f +6394,47398,0,1,f +6394,50304,4,2,f +6394,50305,4,2,f +6394,50950,4,2,f +6394,51000,4,2,f +6394,54383,0,1,f +6394,54384,0,1,f +6394,59900,36,1,f +6394,59900,297,2,f +6394,60470a,4,6,f +6394,60474,4,2,f +6394,60593,4,2,f +6394,60602,47,2,f +6394,61184,71,3,f +6394,6134,0,2,f +6394,6141,297,6,f +6394,6141,297,1,t +6394,61485,0,2,f +6394,6239,4,2,f +6394,64644,297,1,f +6394,6636,72,2,f +6394,72454,0,1,f +6394,85984,72,1,f +6394,87079,4,6,f +6394,87083,72,1,f +6394,87617,0,1,f +6394,92280,0,2,f +6394,92579,40,1,f +6394,92946,0,4,f +6394,970c00,4,1,f +6394,970c00pr0603,0,1,f +6394,973pr2476c01,4,1,f +6394,973pr2584c01,0,1,f +6394,98137,297,4,f +6394,99207,4,1,f +6395,2348b,41,1,f +6395,2349a,15,1,f +6395,2362a,15,2,f +6395,2362pb02,15,2,f +6395,2412b,15,3,f +6395,2412b,4,1,f +6395,2432,1,1,f +6395,2436,4,1,f +6395,298c02,4,1,f +6395,3020,4,1,f +6395,3021,0,3,f +6395,3023,0,1,f +6395,3023,15,2,f +6395,3024,4,2,f +6395,3024,33,4,f +6395,3024,36,2,f +6395,3032,4,1,f +6395,3032,15,1,f +6395,3034,0,1,f +6395,3037,15,1,f +6395,3069b,4,1,f +6395,3070b,15,2,f +6395,3070b,33,3,f +6395,3070b,46,2,f +6395,3626bp02,14,1,f +6395,3626bp04,14,1,f +6395,3641,0,4,f +6395,3666,4,2,f +6395,3666,1,2,f +6395,3710,4,1,f +6395,3788,4,2,f +6395,3794a,15,1,f +6395,3821,15,1,f +6395,3822,15,1,f +6395,3823,41,1,f +6395,3829c01,1,1,f +6395,4213,15,1,f +6395,4315,15,2,f +6395,4485pb02,15,1,f +6395,4530,0,1,f +6395,4624,15,4,f +6395,4714,15,1,f +6395,4715,15,2,f +6395,6156,15,2,f +6395,6157,0,2,f +6395,970c00,15,1,f +6395,970c00,4,1,f +6395,973pb0061c01,14,1,f +6395,973px168c01,15,1,f +6397,3001a,14,1,f +6397,3003,15,4,f +6397,3003,14,3,f +6397,3004,14,1,f +6397,3021,1,2,f +6397,3023,1,2,f +6397,3034,1,4,f +6397,3039,1,1,f +6397,3039,47,1,f +6397,3137c01,14,1,f +6397,3139,0,1,f +6397,3461,7,1,f +6397,3464,4,1,f +6397,3481,1,1,f +6397,3613,15,2,f +6397,3613,4,2,f +6397,3614a,14,4,f +6397,3641,0,2,f +6397,3660,14,3,f +6397,685p01,14,1,f +6397,685px3,14,1,f +6397,792c03,15,1,f +6397,792c03,4,1,f +6397,8,1,1,f +6397,bb15c,4,1,f +6397,x407,4,1,f +6398,15,4,1,f +6398,17,4,1,f +6398,3001a,14,1,f +6398,3001a,1,1,f +6398,3001a,4,1,f +6398,3010,47,1,f +6398,3023,4,2,f +6398,3023,14,2,f +6398,3032,1,1,f +6398,3037,14,1,f +6398,3137c01,0,2,f +6398,3139,0,4,f +6398,3430c02,0,1,f +6398,3624,0,1,f +6398,3626a,14,1,f +6399,2540,72,2,f +6399,2555,72,4,f +6399,2780,0,4,f +6399,3002,4,1,f +6399,30031,72,1,f +6399,30088,0,2,f +6399,30115,4,1,f +6399,30153,36,1,f +6399,30153,34,1,f +6399,30153,47,1,f +6399,30153,33,1,f +6399,3020,0,2,f +6399,3021,72,2,f +6399,3023,72,2,f +6399,3023,4,1,f +6399,3031,71,2,f +6399,3034,4,1,f +6399,30367b,27,2,f +6399,3039,4,2,f +6399,30554b,0,6,f +6399,30602,35,1,f +6399,3062b,0,3,f +6399,30663,71,2,f +6399,32000,0,2,f +6399,32013,0,1,f +6399,32064b,71,1,f +6399,32123b,14,1,f +6399,3623,0,1,f +6399,3626bpr0630,71,1,f +6399,3626bpr0644,14,1,f +6399,3660,72,4,f +6399,3673,71,3,f +6399,3700,4,1,f +6399,3710,72,1,f +6399,3794b,0,5,f +6399,4081b,72,3,f +6399,4085c,0,2,f +6399,4085c,4,2,f +6399,41529,71,2,f +6399,41531,4,2,f +6399,41532,0,4,f +6399,43093,1,2,f +6399,44294,71,1,f +6399,44302a,4,2,f +6399,44676,0,2,f +6399,4738a,70,1,f +6399,4739a,70,1,f +6399,50950,0,2,f +6399,55236,288,4,f +6399,57539,135,1,f +6399,58176,35,2,f +6399,59275,27,2,f +6399,6019,71,4,f +6399,6041,135,3,f +6399,60477,72,2,f +6399,60478,72,2,f +6399,60481,71,2,f +6399,6091,4,2,f +6399,6141,47,4,f +6399,6141,27,4,f +6399,6141,36,2,f +6399,63868,0,1,f +6399,6541,71,2,f +6399,85940,0,2,f +6399,87080,4,1,f +6399,87086,4,1,f +6399,87087,4,2,f +6399,87087,72,4,f +6399,87580,4,2,f +6399,87620,4,2,f +6399,87747,0,3,f +6399,87751,135,1,f +6399,87752,35,1,f +6399,87754,72,1,f +6399,87758pr01,272,1,f +6399,89159,35,1,f +6399,92290,297,1,f +6399,970c00,272,1,f +6399,970c00pr0145,72,1,f +6399,973pr1555c01,272,1,f +6399,973pr1557c01,72,1,f +6400,3626cpr0865,272,1,f +6400,4497,0,1,f +6400,970c00pr0263,71,1,f +6400,973pr1881c01,71,1,f +6400,98153pr0001,71,1,f +6402,3626cpr1556,78,1,f +6402,63586,72,1,f +6402,64802,15,1,f +6402,87610pr2015c01,15,1,f +6402,970c00pr2015,15,1,f +6402,973c00pr2015c01,15,1,f +6403,rb00168,0,20,f +6404,2356,7,4,f +6404,2445,8,6,f +6404,2456,0,3,f +6404,2456,4,17,f +6404,2730,0,4,f +6404,2730,4,2,f +6404,2780,0,22,f +6404,2817,0,1,f +6404,2983,7,2,f +6404,3001,4,60,f +6404,3001,0,1,f +6404,3005,484,4,f +6404,3005,25,4,f +6404,3006,4,26,f +6404,3006,0,12,f +6404,3007,0,4,f +6404,3007,4,10,f +6404,3010,4,2,f +6404,3022,4,15,f +6404,3023,4,6,f +6404,3024,272,4,f +6404,3027,4,13,f +6404,3027,0,2,f +6404,3028,8,12,f +6404,30293,6,7,f +6404,30294,6,7,f +6404,30355,7,2,f +6404,30356,7,2,f +6404,3036,4,7,f +6404,3040b,0,2,f +6404,3068b,272,43,f +6404,3069b,272,8,f +6404,3069b,0,6,f +6404,32013,0,9,f +6404,32014,7,2,f +6404,32015,7,2,f +6404,32015,0,1,f +6404,32016,4,6,f +6404,32016,0,1,f +6404,32016,7,6,f +6404,32017,7,4,f +6404,32034,0,5,f +6404,32034,7,8,f +6404,32039,0,5,f +6404,32054,7,26,f +6404,32062,0,6,f +6404,32064b,14,24,f +6404,32073,7,12,f +6404,32123b,7,4,f +6404,32184,7,2,f +6404,32209,0,12,f +6404,32278,7,6,f +6404,32525,0,2,f +6404,3297,4,67,f +6404,3298,4,22,f +6404,3460,25,14,f +6404,3666,8,4,f +6404,3673,7,6,f +6404,3701,4,4,f +6404,3703,4,4,f +6404,3705,0,6,f +6404,3706,0,10,f +6404,3708,0,1,f +6404,3709,4,5,f +6404,3710,4,2,f +6404,3713,7,6,f +6404,3737,0,2,f +6404,3738,4,8,f +6404,3749,19,4,f +6404,3749,7,1,f +6404,3795,0,4,f +6404,3832,0,17,f +6404,3940b,8,15,f +6404,3941,0,9,f +6404,4032a,1,4,f +6404,40490,7,6,f +6404,4162,0,2,f +6404,4162,4,2,f +6404,4185,0,2,f +6404,4286,4,2,f +6404,4288,0,2,f +6404,43093,1,8,f +6404,44294,7,34,f +6404,4519,0,1,f +6404,4519,7,4,f +6404,4871,0,9,f +6404,6538b,7,10,f +6404,6538b,14,14,f +6404,6636,14,13,f +6404,6636,0,10,f +6404,71082,47,1,f +6404,75535,7,4,f +6404,78c09,0,4,f +6404,85545,1,2,f +6404,979760bc,9999,1,f +6404,bin03,1,1,f +6405,11618,322,1,f +6405,11618,322,1,t +6405,3022,4,2,f +6405,33291,5,1,t +6405,33291,5,1,f +6405,6231,29,4,f +6408,1850pr0002,15,1,f +6408,1851pr0001,15,1,f +6408,1852pr0004,15,1,f +6408,1853pr0001,15,1,f +6408,747p03c01,15,1,f +6408,747pb02c01,15,1,f +6408,747pb05c01,15,1,f +6408,bb140pb04c01,15,1,f +6409,10179cert,89,1,t +6409,2357,71,10,f +6409,2397,72,4,f +6409,2412b,72,106,f +6409,2420,72,10,f +6409,2431,72,29,f +6409,2431,0,10,f +6409,2431,71,43,f +6409,2432,72,18,f +6409,2434,0,2,f +6409,2444,15,17,f +6409,2445,71,25,f +6409,2450,71,33,f +6409,2450,320,4,f +6409,2456,0,3,f +6409,2462,71,12,f +6409,2465,71,17,f +6409,2476a,15,30,f +6409,2540,72,13,f +6409,2555,72,2,t +6409,2555,72,86,f +6409,2654,0,59,f +6409,2730,71,8,f +6409,2780,0,1,t +6409,2780,0,119,f +6409,2817,0,4,f +6409,2877,72,16,f +6409,298c05,71,2,t +6409,298c05,71,60,f +6409,30000,72,23,f +6409,3001,71,18,f +6409,3002,71,2,f +6409,3003,72,14,f +6409,30031,72,4,f +6409,3004,71,39,f +6409,3006,15,3,f +6409,3007,71,4,f +6409,3008,71,5,f +6409,3009,71,14,f +6409,3009,72,5,f +6409,3010,71,13,f +6409,30136,72,12,f +6409,30157,72,2,f +6409,30162,72,6,f +6409,3020,71,82,f +6409,3021,71,243,f +6409,3022,71,53,f +6409,3023,71,131,f +6409,30236,72,8,f +6409,3027,71,6,f +6409,3029,71,11,f +6409,3030,71,5,f +6409,3030,72,10,f +6409,3031,71,21,f +6409,3032,72,6,f +6409,3032,71,18,f +6409,3033,71,2,f +6409,3034,71,23,f +6409,3035,19,2,f +6409,3035,71,16,f +6409,30355,71,17,f +6409,30356,71,15,f +6409,30357,72,24,f +6409,30359b,72,6,f +6409,3036,71,18,f +6409,30363,71,26,f +6409,30364,72,36,f +6409,30365,71,58,f +6409,30367b,71,10,f +6409,3037,71,6,f +6409,30374,71,31,f +6409,30377,71,2,t +6409,30377,71,10,f +6409,3038,71,11,f +6409,30383,72,14,f +6409,30386,0,16,f +6409,3039,72,11,f +6409,3039,71,1,f +6409,30409,70,1,f +6409,3040b,72,5,f +6409,30414,0,6,f +6409,3045,71,18,f +6409,30483pr01,70,1,f +6409,3048c,70,2,f +6409,30503,71,5,f +6409,30516,71,1,f +6409,30541,0,8,f +6409,30565,72,12,f +6409,30586,15,1,f +6409,30658,0,1,f +6409,30663,71,4,f +6409,3068b,72,34,f +6409,3068b,71,64,f +6409,3068b,320,24,f +6409,3069b,71,32,f +6409,3069b,33,54,f +6409,32000,71,6,f +6409,32001,0,14,f +6409,32002,72,1,f +6409,32002,72,1,t +6409,32013,15,10,f +6409,32013,72,19,f +6409,32014,71,10,f +6409,32018,71,20,f +6409,32028,0,6,f +6409,32028,71,4,f +6409,32034,0,2,f +6409,32039,71,2,f +6409,32054,4,66,f +6409,32059,71,1,f +6409,32062,4,6,f +6409,32073,71,4,f +6409,32123b,71,31,f +6409,32123b,71,3,t +6409,32126,71,1,f +6409,32140,15,2,f +6409,32140,0,19,f +6409,32316,72,9,f +6409,32333,71,4,f +6409,32348,15,2,f +6409,3245b,15,8,f +6409,32523,72,30,f +6409,32525,72,4,f +6409,32530,0,2,f +6409,32531,0,16,f +6409,32532,0,2,f +6409,32555,14,16,f +6409,3307,15,4,f +6409,3308,71,16,f +6409,33299a,0,19,f +6409,3456,71,4,f +6409,3456,320,1,f +6409,3460,71,94,f +6409,3622,71,23,f +6409,3623,71,31,f +6409,3626bpr0263,78,1,f +6409,3626bpr0342,78,1,f +6409,3626bpr0378,78,1,f +6409,3626bpr0635,78,1,f +6409,3660,71,26,f +6409,3665,72,17,f +6409,3666,71,101,f +6409,3700,72,8,f +6409,3701,71,36,f +6409,3702,71,16,f +6409,3703,72,47,f +6409,3705,0,5,f +6409,3706,0,7,f +6409,3708,0,7,f +6409,3709,0,6,f +6409,3709,71,35,f +6409,3710,320,14,f +6409,3710,0,4,f +6409,3710,71,142,f +6409,3743,71,10,f +6409,3747b,71,5,f +6409,3749,19,2,f +6409,3794a,320,22,f +6409,3794a,72,92,f +6409,3794a,70,4,f +6409,3795,71,49,f +6409,3829c01,71,1,f +6409,3830,0,2,f +6409,3831,0,2,f +6409,3832,0,8,f +6409,3832,71,7,f +6409,3839b,72,6,f +6409,3894,72,20,f +6409,3895,72,10,f +6409,3901,71,1,f +6409,3901,70,1,f +6409,3937,72,18,f +6409,3938,0,11,f +6409,3938,71,7,f +6409,3941,71,38,f +6409,3942c,71,1,f +6409,3956,0,1,f +6409,3957a,71,4,f +6409,3958,71,14,f +6409,3958,72,4,f +6409,4032a,72,28,f +6409,40490,71,4,f +6409,4079,70,1,f +6409,4081b,71,8,f +6409,4085c,71,4,f +6409,4095,71,28,f +6409,41239,71,4,f +6409,4150pr0022,71,3,f +6409,41539,71,14,f +6409,4162,71,37,f +6409,4162,320,3,f +6409,4162,72,15,f +6409,4162,0,2,f +6409,41767,72,3,f +6409,41768,72,3,f +6409,41769,71,24,f +6409,41770,71,23,f +6409,41770,72,3,f +6409,41862,71,17,f +6409,42445,71,7,f +6409,4274,71,2,t +6409,4274,71,22,f +6409,4282,71,6,f +6409,4282,72,23,f +6409,4285b,0,6,f +6409,4285b,71,3,f +6409,43093,1,53,f +6409,43337,72,3,f +6409,4349,72,2,f +6409,43719,72,1,f +6409,43719,320,2,f +6409,43722,71,16,f +6409,43723,71,16,f +6409,44294,71,7,f +6409,44301a,72,32,f +6409,44302a,71,26,f +6409,44302a,0,11,f +6409,4445,71,8,f +6409,44567a,72,14,f +6409,44568,71,3,f +6409,44570,71,8,f +6409,44728,71,2,f +6409,44728,0,4,f +6409,4477,71,48,f +6409,4477,72,16,f +6409,4510,71,7,f +6409,4519,71,28,f +6409,4530,19,1,f +6409,4588,72,5,f +6409,4589,72,98,f +6409,4599a,71,56,f +6409,4623,71,8,f +6409,4697b,71,2,f +6409,4697b,71,2,t +6409,4735,71,15,f +6409,47397,71,4,f +6409,47398,71,4,f +6409,4740,47,2,f +6409,4740,72,12,f +6409,47457,72,4,f +6409,47753,72,2,f +6409,47905,72,35,f +6409,47996,71,2,f +6409,48092,71,24,f +6409,48183,71,4,f +6409,48336,19,19,f +6409,4864b,71,4,f +6409,48729a,72,2,t +6409,48729a,72,2,f +6409,50950,72,32,f +6409,50990pr0003a,71,1,f +6409,51739,71,3,f +6409,52107,0,42,f +6409,54200,72,63,f +6409,54383,72,3,f +6409,54383,71,58,f +6409,54384,72,4,f +6409,54384,71,52,f +6409,6019,72,42,f +6409,6081,71,5,f +6409,6091,71,4,f +6409,6106,71,36,f +6409,6111,71,17,f +6409,6112,71,13,f +6409,6141,80,2,t +6409,6141,72,78,f +6409,6141,72,2,t +6409,6141,80,2,f +6409,6179,72,13,f +6409,6179,71,20,f +6409,6180,71,18,f +6409,6190,72,27,f +6409,6222,71,7,f +6409,6232,19,8,f +6409,6538b,72,14,f +6409,6541,72,6,f +6409,6553,71,6,f +6409,6558,0,111,f +6409,6564,71,21,f +6409,6565,71,21,f +6409,6587,72,10,f +6409,6632,72,6,f +6409,6636,72,32,f +6409,6636,71,16,f +6409,75535,71,41,f +6409,75c08,71,2,f +6409,75c12,71,2,f +6409,75c20,71,2,f +6409,970c00,70,1,f +6409,970c00,19,1,f +6409,970c00,15,1,f +6409,970c00pr0033,70,1,f +6409,970c00pr0113,19,1,f +6409,973c32,70,1,f +6409,973pr0510c01,15,1,f +6409,973pr0530c01,19,1,f +6409,973pr1331c01,0,1,f +6409,973pr1332c01,15,1,f +6410,30000,8,4,f +6410,3483,0,12,f +6410,3641,0,12,f +6410,4600,0,6,f +6410,4624,15,12,f +6410,6248,4,12,f +6410,6249,8,2,f +6411,11618,322,1,t +6411,11618,322,1,f +6411,17436pr0001,0,1,f +6411,2654,19,1,f +6411,3002,71,1,f +6411,30136,71,2,f +6411,30176,2,2,f +6411,3023,2,4,f +6411,30237b,70,1,f +6411,3031,2,1,f +6411,30374,19,1,f +6411,3040b,71,1,f +6411,30565,2,1,f +6411,3062b,70,4,f +6411,3062b,19,5,f +6411,33291,5,3,f +6411,33291,5,1,t +6411,3622,71,1,f +6411,3660,71,1,f +6411,3957b,70,1,f +6411,48336,71,1,f +6411,54200,70,1,t +6411,54200,70,4,f +6411,6141,19,3,f +6411,6141,19,1,t +6411,63868,71,2,f +6411,87079,2,1,f +6411,87079,26,1,f +6411,87580,27,3,f +6412,2456,4,1,f +6412,2456,14,1,f +6412,2456,1,1,f +6412,2456,15,1,f +6412,3001,14,7,f +6412,3001,1,8,f +6412,3001,4,7,f +6412,3001,15,8,f +6412,3001,0,4,f +6412,3002,15,4,f +6412,3002,0,2,f +6412,3002,4,4,f +6412,3002,1,4,f +6412,3002,14,4,f +6412,3003,15,10,f +6412,3003,14,8,f +6412,3003,1,10,f +6412,3003,4,8,f +6412,3003,0,4,f +6412,3004,15,20,f +6412,3004,0,10,f +6412,3004,4,16,f +6412,3004,14,16,f +6412,3004,1,20,f +6412,3005,1,20,f +6412,3005,15,20,f +6412,3005,4,17,f +6412,3005,14,17,f +6412,3005,0,12,f +6412,3008,4,4,f +6412,3008,0,2,f +6412,3008,15,2,f +6412,3008,1,2,f +6412,3008,14,4,f +6412,3009,4,6,f +6412,3009,15,8,f +6412,3009,0,2,f +6412,3009,14,6,f +6412,3009,1,8,f +6412,3010,4,12,f +6412,3010,0,8,f +6412,3010,1,14,f +6412,3010,14,12,f +6412,3010,15,14,f +6412,3622,1,8,f +6412,3622,4,6,f +6412,3622,14,6,f +6412,3622,0,4,f +6412,3622,15,8,f +6413,10197,72,8,f +6413,10247,4,2,f +6413,10928,72,2,f +6413,11214,72,39,f +6413,11214,72,1,t +6413,11455,0,2,f +6413,11946,4,1,f +6413,11947,4,1,f +6413,11949,71,2,f +6413,11950,71,2,f +6413,11954,4,3,f +6413,14720,71,2,f +6413,15458,4,2,f +6413,15462,28,3,f +6413,18575,19,1,f +6413,2654,47,2,f +6413,2736,71,1,f +6413,2780,0,204,f +6413,2780,0,3,t +6413,2819,0,1,f +6413,2850b,71,6,f +6413,2851,14,6,f +6413,2852,71,6,f +6413,2853,14,2,f +6413,2854,19,2,f +6413,30395,72,1,f +6413,3068b,0,2,f +6413,32000,72,2,f +6413,32002,19,6,f +6413,32002,19,1,t +6413,32005a,0,2,f +6413,32009,4,4,f +6413,32013,4,3,f +6413,32015,4,2,f +6413,32016,71,2,f +6413,32017,14,4,f +6413,32034,0,7,f +6413,32039,71,1,f +6413,32054,4,46,f +6413,32062,4,13,f +6413,32063,71,16,f +6413,32065,0,2,f +6413,32068,0,2,f +6413,32073,71,18,f +6413,32123b,14,5,f +6413,32123b,14,1,t +6413,32138,0,2,f +6413,32140,0,16,f +6413,32140,4,11,f +6413,32184,71,15,f +6413,32187,71,2,f +6413,32192,72,2,f +6413,32198,19,1,f +6413,32249,0,2,f +6413,32270,0,4,f +6413,32278,4,2,f +6413,32316,71,10,f +6413,32316,4,4,f +6413,32333,71,2,f +6413,32348,72,2,f +6413,32494,71,4,f +6413,32523,0,7,f +6413,32523,71,6,f +6413,32523,4,6,f +6413,32524,72,12,f +6413,32524,4,4,f +6413,32525,72,7,f +6413,32525,4,3,f +6413,32526,4,4,f +6413,32526,1,4,f +6413,32526,71,13,f +6413,32556,19,7,f +6413,32557,0,2,f +6413,3648b,72,1,f +6413,3705,0,3,f +6413,3706,0,7,f +6413,3707,0,1,f +6413,3713,4,3,t +6413,3713,4,25,f +6413,3749,19,3,f +6413,40490,71,4,f +6413,41239,4,4,f +6413,41239,0,8,f +6413,41678,72,4,f +6413,42003,4,5,f +6413,42610,71,6,f +6413,4274,71,1,t +6413,4274,71,11,f +6413,43093,1,9,f +6413,43857,4,14,f +6413,44294,71,3,f +6413,44809,4,8,f +6413,44809,71,4,f +6413,4519,71,17,f +6413,45982,0,4,f +6413,4716,0,1,f +6413,48989,71,8,f +6413,55013,72,1,f +6413,55615,71,2,f +6413,56823c100,0,1,f +6413,56908,71,4,f +6413,57515,72,4,f +6413,58176,15,1,t +6413,58176,15,2,f +6413,59443,0,21,f +6413,60483,72,14,f +6413,60484,71,15,f +6413,60485,71,8,f +6413,6141,36,1,t +6413,6141,182,4,f +6413,6141,36,2,f +6413,6141,47,6,f +6413,6141,47,1,t +6413,6141,182,1,t +6413,61510,71,1,f +6413,61903,71,4,f +6413,62462,71,6,f +6413,62821,72,1,f +6413,63869,71,8,f +6413,64178,71,2,f +6413,64179,71,1,f +6413,64391,4,1,f +6413,64392,4,1,f +6413,64394,4,1,f +6413,64680,4,1,f +6413,64682,4,1,f +6413,64683,4,1,f +6413,64782,4,9,f +6413,6536,0,17,f +6413,6538b,19,1,f +6413,6539,4,1,f +6413,6542b,72,3,f +6413,6558,1,93,f +6413,6558,1,1,t +6413,6587,28,14,f +6413,6589,19,5,f +6413,6628,0,6,f +6413,6629,4,8,f +6413,6632,4,9,f +6413,6632,14,1,f +6413,6641,4,1,f +6413,76537,14,4,f +6413,78c11,179,2,f +6413,87082,71,6,f +6413,87083,72,4,f +6413,87408,0,2,f +6413,87761,0,1,f +6413,92693,71,1,f +6413,92906,72,2,f +6413,92909,72,4,f +6413,94925,71,10,f +6413,99008,19,1,f +6413,99773,0,2,f +6414,22392,321,2,f +6414,24078,71,1,f +6414,30170,72,1,f +6414,30171,148,1,f +6414,3070bpr0159,1,1,f +6414,3626cpr1785,179,1,f +6414,48729b,71,2,f +6414,64728,4,1,f +6414,76764,179,1,f +6414,93062c02,179,2,f +6415,11098,41,1,f +6415,13549,41,1,f +6415,15083pr0003,72,1,f +6415,15090,179,1,f +6415,3626cpr1422,72,1,f +6415,970c00pr0662,72,1,f +6415,973pr2664c01,272,1,f +6415,98138,41,1,f +6417,3002a,4,2,f +6417,3010,47,3,f +6417,3010pb035e,4,1,f +6417,3020,4,2,f +6417,3020,14,1,f +6417,3021,14,2,f +6417,3022,14,5,f +6417,3023,4,2,f +6417,3030,4,1,f +6417,3032,4,1,f +6417,3034,14,2,f +6417,3037,47,1,f +6417,3039,47,1,f +6417,3039,14,1,f +6417,3068b,14,1,f +6417,3137c01,0,3,f +6417,3139,0,8,f +6417,3183b,4,1,f +6417,3480,7,1,f +6417,3481,14,1,f +6417,817c01,1,1,f +6418,2431pr0017,14,2,f +6418,3039p08,0,1,f +6418,3039pb020,0,1,f +6418,3039pr0005,15,1,f +6418,3068bp12,15,1,f +6418,3068bp70,15,1,f +6418,3068bp80,15,1,f +6418,3068bpb0035,15,1,f +6418,3068bpx143,15,1,f +6418,3069bp02,7,1,f +6418,3069bp80,15,1,f +6418,3069bpr0100,2,2,f +6418,3069bpr0101,7,1,f +6418,3297p11,0,1,f +6418,3297px15,0,1,f +6418,3298pb016,0,1,f +6418,3298pb024,14,1,f +6419,11478,0,5,f +6419,14682,71,1,f +6419,15100,0,2,f +6419,15379,0,2,t +6419,15379,0,64,f +6419,2780,0,1,t +6419,2780,0,11,f +6419,2951,0,1,f +6419,32002,19,1,t +6419,32002,19,2,f +6419,32009,25,2,f +6419,32015,0,2,f +6419,32016,15,2,f +6419,32039,0,4,f +6419,32054,0,2,f +6419,32062,4,3,f +6419,32073,71,5,f +6419,32123b,71,1,t +6419,32123b,71,8,f +6419,32140,71,3,f +6419,32184,71,4,f +6419,32249,72,2,f +6419,32250,72,2,f +6419,32270,0,1,f +6419,32278,15,2,f +6419,32291,71,2,f +6419,32316,15,3,f +6419,32523,71,3,f +6419,32525,15,2,f +6419,32526,1,2,f +6419,32526,72,2,f +6419,32556,19,6,f +6419,33299a,71,4,f +6419,3623,0,2,f +6419,3648b,72,1,f +6419,3673,71,4,f +6419,3673,71,1,t +6419,3705,0,5,f +6419,3706,0,2,f +6419,3713,71,5,f +6419,3713,71,1,t +6419,40490,72,2,f +6419,41678,0,2,f +6419,42003,0,4,f +6419,4274,71,9,f +6419,4274,71,1,t +6419,43093,1,6,f +6419,43093,1,1,t +6419,44294,71,1,f +6419,4519,71,5,f +6419,4716,71,1,f +6419,54200,47,3,f +6419,54200,0,1,f +6419,54200,0,1,t +6419,54200,47,1,t +6419,55013,72,2,f +6419,58176,182,1,f +6419,59426,72,2,f +6419,59443,0,2,f +6419,6141,36,1,t +6419,6141,36,2,f +6419,62462,71,2,f +6419,63869,71,2,f +6419,6536,72,2,f +6419,6553,72,2,f +6419,6558,1,7,f +6419,6632,72,2,f +6419,85984,0,1,f +6419,87082,71,1,f +6419,87083,72,4,f +6419,87407,71,12,f +6419,99773,72,2,f +6420,3040b,2,1,f +6420,3623,2,1,f +6420,3665,14,2,f +6420,3710,14,1,f +6420,3794a,14,1,f +6420,4460a,14,2,f +6420,6141,0,2,f +6421,3001a,14,8,f +6421,3001a,0,4,f +6421,3001a,1,8,f +6421,3001a,15,8,f +6421,3001a,47,2,f +6421,3001a,4,8,f +6421,3001pr1,14,1,f +6421,3002a,15,2,f +6421,3002a,0,2,f +6421,3002a,4,2,f +6421,3002a,14,2,f +6421,3002a,1,2,f +6421,3003,14,6,f +6421,3003,4,6,f +6421,3003,1,6,f +6421,3003,0,2,f +6421,3003,15,4,f +6421,3003pe1,14,2,f +6421,3006,4,2,f +6421,3007,1,2,f +6421,3185,15,4,f +6421,3470,2,1,f +6421,3483,0,4,f +6421,4130,4,1,f +6421,4131,14,1,f +6421,4132,4,2,f +6421,4133,14,2,f +6421,4180c02,0,2,f +6421,4201,2,1,f +6421,4202,1,1,f +6421,bfp001,9999,1,f +6421,bfp002,9999,1,f +6422,2419,8,2,f +6422,2555,0,2,f +6422,2569,42,2,f +6422,2964stk01,9999,1,t +6422,3010,1,1,f +6422,30121,8,1,f +6422,3020,0,1,f +6422,30208,34,1,f +6422,30209,1,1,f +6422,30211,8,4,f +6422,30213,42,1,f +6422,30214,34,1,f +6422,3023,1,2,f +6422,3030,0,1,f +6422,3039,1,1,f +6422,3039px8,8,1,f +6422,3040b,0,2,f +6422,3062b,0,2,f +6422,3298pb005,8,1,f +6422,3626bpx175,8,1,f +6422,3794a,0,1,f +6422,3795,1,1,f +6422,3832,0,1,f +6422,3935,8,1,f +6422,3936,8,1,f +6422,3937,8,1,f +6422,3938,0,1,f +6422,4865a,42,2,f +6422,6118,1,4,f +6422,6249,8,2,f +6422,970x027,0,1,f +6422,973pb0037c01,8,1,f +6427,10199,10,1,f +6427,11169,26,2,f +6427,15947,29,1,f +6427,16499,297,1,f +6427,16541,1,1,f +6427,16584,29,2,f +6427,20820,15,1,f +6427,2302,26,2,f +6427,2302,5,2,f +6427,2302,85,2,f +6427,3011,29,2,f +6427,31022,15,1,f +6427,3437,158,2,f +6427,3437,29,5,f +6427,3437,27,2,f +6427,3437,5,2,f +6427,4066,10,1,f +6427,4066,212,2,f +6427,40666,10,1,f +6427,40666,15,1,f +6427,61649,73,1,f +6427,6474,85,2,f +6427,6510,4,3,f +6427,76338,212,1,f +6427,85964,29,1,f +6427,89406,15,1,f +6427,98218,5,2,f +6427,98222,29,1,f +6427,98223,85,1,f +6427,98224,15,1,f +6427,98225,29,1,f +6427,98233,31,1,f +6427,98236,29,1,f +6427,98238,26,1,f +6427,99427,5,1,f +6427,99771,29,1,f +6427,99771,212,1,f +6428,2335,15,10,f +6428,2362b,8,4,f +6428,2431,8,16,f +6428,2432,8,4,f +6428,2445,8,8,f +6428,2453a,15,4,f +6428,2540,15,10,f +6428,2730,1,2,f +6428,2736,7,2,f +6428,2819,7,2,f +6428,3001,4,10,f +6428,3002,1,4,f +6428,3003,4,16,f +6428,3004,4,4,f +6428,3004,8,3,f +6428,3005,0,4,f +6428,3008,0,6,f +6428,3008,4,4,f +6428,3009,8,4,f +6428,3010,4,8,f +6428,30145,4,2,f +6428,3020,4,2,f +6428,3021,8,20,f +6428,3022,4,2,t +6428,3022,8,12,f +6428,3022,4,47,f +6428,3023,1,8,f +6428,3023,4,12,f +6428,3031,8,2,f +6428,3032,4,2,f +6428,30489,19,4,f +6428,30489pb01,19,2,f +6428,30489pb02,19,2,f +6428,30608,0,1,f +6428,3068b,19,23,f +6428,3069b,4,2,f +6428,32013,0,4,f +6428,32034,0,2,f +6428,32062,0,4,f +6428,32064b,0,10,f +6428,32073,7,4,f +6428,32123b,7,6,f +6428,32123b,7,1,t +6428,32192,0,4,f +6428,3403c01,4,2,f +6428,3460,0,2,f +6428,3622,1,4,f +6428,3626bpa4,14,1,f +6428,3626bpb0046,14,1,f +6428,3626bpb0112,14,1,f +6428,3626bpb0117,14,1,f +6428,3626bpb0161,14,1,f +6428,3626bpb0162,14,1,f +6428,3626bpb0163,14,1,f +6428,3626bpb0164,14,1,f +6428,3626bpb0165,14,1,f +6428,3626bpx100,14,1,f +6428,3700,1,8,f +6428,3705,0,2,f +6428,3710,6,1,f +6428,3737,0,4,f +6428,3754pb05,47,2,f +6428,3832,0,8,f +6428,3937,7,10,f +6428,4162,15,2,f +6428,41819c01,19,2,f +6428,4282,4,6,f +6428,43093,1,12,f +6428,43372,19,10,f +6428,43373,25,2,f +6428,43374,15,2,f +6428,43702pr0001,25,2,f +6428,4477,1,4,f +6428,4515,1,8,f +6428,51011,79,2,f +6428,6111,4,2,f +6428,6134,4,10,f +6428,6232,4,8,f +6428,6538b,0,2,f +6428,6575,0,2,f +6428,973bpb155c01,110,1,f +6428,973bpb156c01,4,1,f +6428,973bpb157c01,4,1,f +6428,973bpb158c01,4,1,f +6428,973bpb178c01,4,1,f +6428,973bpb179c01,110,1,f +6428,973bpb180c01,110,1,f +6428,973bpb188c01,4,1,f +6428,973bpb189c01,110,1,f +6428,973bpb225c01,110,1,f +6428,bb84pb01,25,1,f +6428,x494cx1,4,4,f +6428,x494cx1,110,4,f +6428,x494cx2,110,1,f +6428,x494cx2,4,1,f +6430,2339,6,2,f +6430,2357,6,3,f +6430,2420,6,1,f +6430,2431,0,1,f +6430,2436,0,2,f +6430,298c02,7,1,f +6430,3004,6,1,f +6430,3004,2,2,f +6430,3004px7,1,1,f +6430,3005,6,2,f +6430,3005,1,1,f +6430,3005pe2,8,1,f +6430,3005pe3,8,1,f +6430,3010,6,1,f +6430,30149,8,1,f +6430,30155,8,4,f +6430,30157,8,2,f +6430,30161,47,1,f +6430,30176,2,3,f +6430,3020,6,3,f +6430,3020,0,1,f +6430,3021,7,1,f +6430,3021,8,1,f +6430,3022,15,2,f +6430,3023,6,3,f +6430,3023,8,3,f +6430,30238,0,1,f +6430,3030,0,1,f +6430,3040b,6,1,f +6430,3062b,379,1,f +6430,3069b,6,2,f +6430,32000,7,1,f +6430,3483,0,4,f +6430,3622,6,2,f +6430,3623,6,1,f +6430,3623,379,2,f +6430,3626bpx116,14,1,f +6430,3626bpx117,14,1,f +6430,3626bpx33,14,1,f +6430,3660,6,1,f +6430,3665,6,6,f +6430,3673,7,2,f +6430,3679,7,1,f +6430,3680,0,1,f +6430,3829c01,7,1,f +6430,3901,6,1,f +6430,3958,0,1,f +6430,4070,0,2,f +6430,4070,379,2,f +6430,4081b,2,2,f +6430,42443,8,1,f +6430,42445,47,1,f +6430,42446,7,1,f +6430,43337,6,1,f +6430,4485,0,1,f +6430,4625,0,1,f +6430,6091,2,4,f +6430,6093,25,1,f +6430,6141,0,2,f +6430,6141,36,1,t +6430,6141,0,1,t +6430,6141,46,2,f +6430,6141,46,1,t +6430,6141,36,2,f +6430,6541,0,5,f +6430,6587,8,1,f +6430,970c00,8,1,f +6430,970c00,19,1,f +6430,970c00,320,1,f +6430,973pb0085c01,272,1,f +6430,973pr1163c01,272,1,f +6430,973px171c01,320,1,f +6430,973px172c01,19,1,f +6432,3020,7,2,f +6432,3021,7,1,f +6432,3023,7,2,f +6432,3024,7,2,f +6432,3024,36,2,f +6432,3035,7,1,f +6432,3039p34,7,1,f +6432,3062a,34,1,f +6432,3298p90,7,1,f +6432,3460,7,1,f +6432,3475a,7,2,f +6432,3479,7,1,f +6432,3623,7,2,f +6432,3626apr0001,14,1,f +6432,3794a,7,1,f +6432,3795,7,3,f +6432,3829c01,7,2,f +6432,3838,15,1,f +6432,3839a,7,1,f +6432,3842a,15,1,f +6432,3935,7,2,f +6432,3936,7,2,f +6432,3957a,7,1,f +6432,3959,7,1,f +6432,3963,7,2,f +6432,970c00,15,1,f +6432,973p90c05,15,1,f +6434,3297,4,30,f +6434,3298,4,14,f +6434,3299,4,10,f +6434,3300,4,6,f +6435,132a,0,4,f +6435,236ac01,1,2,f +6435,3058b,7,1,f +6435,458,0,4,f +6435,468c02,1,1,f +6435,498,0,2,f +6435,564c01,1,1,f +6435,7039,4,4,f +6435,wheel2a,4,4,f +6435,x466,15,1,f +6437,250pb01,4,1,f +6437,3001a,15,4,f +6437,3005,15,11,f +6437,3005,4,1,f +6437,3008a,15,3,f +6437,3008apb14,15,1,f +6437,3009a,15,4,f +6437,3034a,15,1,f +6437,3035a,15,1,f +6437,3035oldpb01,15,1,f +6437,3036a,15,2,f +6437,3036oldpb01,15,1,f +6437,3036oldpb02,15,1,f +6437,3063a,47,2,f +6437,3063a,15,1,f +6437,3063b,4,1,f +6437,3063b,15,1,f +6437,3065,4,20,f +6437,3065,15,23,f +6437,3065,47,4,f +6437,31bc01,15,2,f +6437,32bc01,15,1,f +6437,453bc01,15,2,f +6437,712a,15,1,f +6437,712apb01,15,1,f +6437,820,15,1,f +6437,821,15,1,f +6437,822ac01,15,1,f +6437,bb108pb01,15,1,f +6437,x887px1,15,1,f +6438,2412b,72,6,f +6438,2431,15,1,f +6438,2540,71,2,f +6438,2877,15,4,f +6438,298c02,0,1,t +6438,298c02,0,2,f +6438,3008,4,2,f +6438,3010,4,2,f +6438,3021,15,2,f +6438,3022,4,2,f +6438,3023,1,1,f +6438,3024,33,6,f +6438,3024,33,1,t +6438,3030,0,1,f +6438,3031,0,1,f +6438,30377,0,2,f +6438,30377,0,1,t +6438,3040b,72,2,f +6438,30414,0,1,f +6438,3062b,34,1,f +6438,3069b,33,3,f +6438,3069bpr0101,71,1,f +6438,3070b,36,1,t +6438,3070b,36,2,f +6438,32028,0,2,f +6438,3307,15,1,f +6438,3626bpr0282,14,1,f +6438,3666,15,6,f +6438,3666,4,1,f +6438,3710,4,2,f +6438,3710,15,3,f +6438,3795,15,1,f +6438,3795,4,1,f +6438,3829c01,1,1,f +6438,3958,15,1,f +6438,4079,1,1,f +6438,4081b,15,1,f +6438,4176,41,1,f +6438,4449,71,1,f +6438,4485,1,1,f +6438,4488,71,4,f +6438,45677,15,1,f +6438,4599a,71,1,t +6438,4599a,71,1,f +6438,4714,15,1,f +6438,4715,15,2,f +6438,4864b,15,2,f +6438,4864b,41,4,f +6438,50745,15,4,f +6438,52031,15,1,f +6438,52501,15,4,f +6438,54200,46,2,f +6438,54200,15,2,f +6438,54200,33,6,f +6438,58380,15,1,f +6438,58381,15,1,f +6438,6014b,15,4,f +6438,6015,0,4,f +6438,6636,4,2,f +6438,970c00,15,1,f +6438,973pr1239c01,15,1,f +6439,2547,72,1,f +6439,30085,72,1,f +6440,3021,71,2,f +6440,3710,4,1,f +6440,3710,71,3,f +6440,4589,40,12,f +6441,15573,70,2,f +6441,15712,297,1,f +6441,18787,70,1,f +6441,18788,70,1,f +6441,18789,70,1,f +6441,19727pr0002,29,1,f +6441,19729pr0001,308,1,f +6441,19729pr0006,2,1,f +6441,19734,2,1,f +6441,2357,71,12,f +6441,2431,84,2,f +6441,2453b,84,4,f +6441,2456,72,4,f +6441,2456,70,7,f +6441,2456,2,2,f +6441,2921,84,1,f +6441,3001,19,5,f +6441,3001,72,6,f +6441,3001,70,19,f +6441,3001,288,3,f +6441,3003,34,5,f +6441,3003,70,28,f +6441,3003,19,7,f +6441,3003,84,2,f +6441,3003,71,35,f +6441,3003pr0035,72,1,f +6441,3004,71,13,f +6441,3004,84,5,f +6441,3004,70,4,f +6441,3004pr0014,84,2,f +6441,3005,84,11,f +6441,3006,70,2,f +6441,3007,71,2,f +6441,3010,70,4,f +6441,3020,4,2,f +6441,3021,29,2,f +6441,3022,15,1,f +6441,3023,29,2,f +6441,30237a,72,2,f +6441,3024,70,4,f +6441,3024,46,4,f +6441,3024,182,4,f +6441,3028,10,3,f +6441,3031,10,2,f +6441,30414,72,2,f +6441,3062b,70,2,f +6441,3065,47,34,f +6441,3068b,71,2,f +6441,3068b,15,1,f +6441,3068bpr0236,84,1,f +6441,3069b,84,2,f +6441,3069b,2,2,f +6441,33291,70,18,f +6441,33291,4,5,f +6441,3622,70,4,f +6441,3622,71,4,f +6441,3710,72,2,f +6441,3710,70,5,f +6441,3795,70,1,f +6441,3830,71,3,f +6441,3831,71,2,f +6441,3831,84,1,f +6441,3958,10,2,f +6441,4032a,0,4,f +6441,41539,19,4,f +6441,4216,29,2,f +6441,4342,19,1,f +6441,44728,2,4,f +6441,4727,10,4,f +6441,4738a,84,1,f +6441,4739a,84,1,f +6441,60475b,84,2,f +6441,60478,70,2,f +6441,6112,70,4,f +6441,6141,27,1,f +6441,64644,308,2,f +6441,6636,71,4,f +6441,87580,72,4,f +6441,87580,70,5,f +6441,87580,28,4,f +6441,87580,84,4,f +6441,87580,2,11,f +6441,92438,10,1,f +6441,970c00,85,1,f +6441,973pr2819c01,321,1,f +6441,98283,84,6,f +6441,98283,72,20,f +6442,2362b,15,2,f +6442,2412b,71,5,f +6442,2412b,72,6,f +6442,2412b,320,2,f +6442,2419,15,2,f +6442,2431,15,6,f +6442,2431,320,3,f +6442,2449,15,2,f +6442,2540,71,6,f +6442,2569,72,2,f +6442,2654,71,2,f +6442,2714a,71,2,f +6442,2723,0,4,f +6442,2744,0,4,f +6442,2780,0,1,t +6442,2780,0,8,f +6442,2877,71,5,f +6442,2877,0,5,f +6442,3002,15,5,f +6442,30033,15,1,f +6442,3004,15,9,f +6442,3004,4,4,f +6442,3005,15,12,f +6442,3009,72,4,f +6442,3010,15,3,f +6442,3020,320,4,f +6442,3021,15,6,f +6442,3021,71,4,f +6442,3021,320,5,f +6442,3022,72,3,f +6442,3022,15,3,f +6442,3023,72,2,f +6442,3023,15,9,f +6442,3023,320,15,f +6442,3023,71,6,f +6442,3030,72,5,f +6442,3031,72,2,f +6442,3032,15,1,f +6442,3033,72,2,f +6442,3037,320,12,f +6442,3039,15,4,f +6442,3039,4,8,f +6442,3039pr0002,15,2,f +6442,3040b,4,2,f +6442,3040b,15,4,f +6442,3048c,15,1,f +6442,30503,15,4,f +6442,30503,320,4,f +6442,3062b,72,6,f +6442,3062b,320,8,f +6442,3062b,42,8,f +6442,3068b,320,2,f +6442,3069b,320,2,f +6442,3069b,15,16,f +6442,3069bpr0086,71,1,f +6442,3070b,15,1,t +6442,3070b,15,10,f +6442,32000,72,4,f +6442,32013,71,2,f +6442,32028,25,2,f +6442,32062,4,2,f +6442,32064b,72,4,f +6442,32123b,71,10,f +6442,32123b,71,1,t +6442,32449,1,2,f +6442,32529,71,1,f +6442,32532,0,2,f +6442,3298,15,4,f +6442,3307,15,1,f +6442,3460,15,3,f +6442,3460,72,6,f +6442,3622,15,6,f +6442,3623,15,2,f +6442,3626bpr0525,78,2,f +6442,3660,72,2,f +6442,3665,15,2,f +6442,3666,71,2,f +6442,3679,71,1,f +6442,3680,15,1,f +6442,3684,15,2,f +6442,3700,15,7,f +6442,3700,71,6,f +6442,3709,15,2,f +6442,3710,15,10,f +6442,3710,320,1,f +6442,3710,72,8,f +6442,3713,4,1,t +6442,3713,4,1,f +6442,3747b,72,7,f +6442,3749,19,8,f +6442,3795,71,4,f +6442,3832,72,2,f +6442,3937,15,3,f +6442,3937,4,1,f +6442,3938,15,2,f +6442,3960,320,1,f +6442,4032a,15,4,f +6442,4079,15,2,f +6442,4095,71,2,f +6442,4150pr0005,15,2,f +6442,4150pr0022,71,3,f +6442,4162,15,6,f +6442,4162,72,2,f +6442,41747,4,1,f +6442,41748,4,1,f +6442,41769,320,1,f +6442,41770,320,1,f +6442,41862,71,1,f +6442,42060,15,1,f +6442,42061,15,1,f +6442,4274,71,1,t +6442,4274,1,1,t +6442,4274,71,2,f +6442,4274,1,4,f +6442,4286,15,2,f +6442,43337,40,1,f +6442,43710,15,1,f +6442,43711,15,1,f +6442,43722,15,1,f +6442,43723,15,1,f +6442,44126,15,2,f +6442,44567a,0,6,f +6442,4477,71,3,f +6442,4519,71,2,f +6442,45677,15,2,f +6442,4589,71,4,f +6442,4589,42,6,f +6442,4623,72,1,f +6442,48183,15,3,f +6442,4865a,40,1,f +6442,4865a,15,1,f +6442,48933,15,2,f +6442,50950,15,2,f +6442,52107,0,4,f +6442,54200,72,4,f +6442,54200,72,1,t +6442,54200,15,1,t +6442,54200,15,18,f +6442,58247,0,2,f +6442,59443,71,2,f +6442,60470a,0,1,f +6442,60471,4,6,f +6442,60477,15,4,f +6442,60477,4,2,f +6442,60478,15,2,f +6442,6091,15,2,f +6442,6112,15,2,f +6442,61184,71,6,f +6442,61189pr0003,15,2,f +6442,61190a,72,1,f +6442,61190b,72,1,f +6442,61190c,72,1,f +6442,61190f,72,2,f +6442,6134,71,3,f +6442,61409,4,4,f +6442,6141,72,10,f +6442,6141,15,1,t +6442,6141,71,1,t +6442,6141,72,1,t +6442,6141,15,4,f +6442,6141,71,1,f +6442,6153b,15,1,f +6442,6180,320,2,f +6442,6222,15,2,f +6442,6231,15,4,f +6442,63585,72,2,t +6442,63586,72,2,t +6442,6541,72,10,f +6442,6541,71,8,f +6442,6541,15,2,f +6442,6541,4,4,f +6442,6558,1,2,f +6442,6587,72,4,f +6442,85544,4,1,f +6442,970x026,15,2,f +6442,973pr0470c01,15,2,f +6444,11477,0,2,f +6444,14704,71,2,f +6444,15208,15,1,f +6444,15456,0,2,f +6444,2654,72,1,f +6444,3003,0,1,f +6444,3005,72,2,f +6444,3005,72,1,t +6444,3022,0,4,f +6444,3023,72,4,f +6444,3023,72,1,t +6444,30385,297,1,f +6444,3040b,72,4,f +6444,32474pr1001,15,2,f +6444,3660,0,2,f +6444,4286,0,2,f +6444,44728,19,2,f +6444,47759,72,2,f +6444,54200,71,2,f +6444,54200,297,2,f +6444,54200,71,1,t +6444,54200,297,1,t +6444,60478,72,2,f +6444,61252,0,4,f +6444,64867,72,2,f +6444,87580,72,1,f +6444,99207,71,4,f +6448,30115,4,1,f +6448,30153,36,1,f +6448,30153,33,1,f +6448,30153,46,1,f +6448,30153,41,2,f +6448,30153,34,1,f +6448,30163,272,1,f +6448,30164,297,1,f +6448,30169,0,2,f +6448,3626bpr0755a,71,3,f +6448,4497,0,1,f +6448,6141,36,2,f +6448,90462pr0001,28,2,f +6448,93247,148,1,f +6448,93249pr0001,272,1,f +6448,93250pr0001,272,1,f +6448,93251,148,1,f +6448,970c00pr0195a,71,3,f +6448,973pb0780c01,71,3,f +6449,2825,7,4,f +6449,3021,7,1,f +6449,3023,7,5,f +6449,3065,36,1,f +6449,3065,34,1,f +6449,32000,7,3,f +6449,32009,3,4,f +6449,32013,7,4,f +6449,32063,3,4,f +6449,3956,7,4,f +6449,6536,7,2,f +6449,6553,7,6,f +6449,6629,3,5,f +6449,78,3,4,f +6451,30374,52,1,f +6451,30374,42,1,f +6451,57899,0,1,f +6451,64567,80,1,f +6451,64567,71,1,f +6452,45463,15,1,f +6452,clikits025,43,1,f +6452,clikits110,63,1,f +6452,clikits117,89,1,f +6454,3001,4,2,f +6454,3002,4,1,f +6454,3006,4,2,f +6454,3020,4,3,f +6454,3020,7,1,f +6454,3021,4,4,f +6454,3023,0,4,f +6454,3023,4,10,f +6454,3031,7,1,f +6454,3032,4,1,f +6454,3034,4,2,f +6454,3034,0,2,f +6454,3403c01,0,1,f +6454,3456,4,1,f +6454,3460,4,2,f +6454,3649,7,4,f +6454,3666,4,2,f +6454,3666,7,1,f +6454,3673,7,1,t +6454,3673,7,4,f +6454,3700,7,1,f +6454,3700,0,6,f +6454,3700,4,3,f +6454,3701,0,4,f +6454,3701,4,6,f +6454,3702,0,2,f +6454,3702,4,2,f +6454,3703,4,6,f +6454,3703,7,6,f +6454,3703,0,2,f +6454,3705,0,6,f +6454,3706,0,4,f +6454,3707,0,2,f +6454,3709,4,1,f +6454,3709,0,3,f +6454,3710,4,10,f +6454,3713,7,1,t +6454,3713,7,15,f +6454,3737,0,1,f +6454,3737b,0,1,f +6454,3738,0,2,f +6454,3738,4,2,f +6454,3749,7,1,t +6454,3749,7,8,f +6454,3795,0,2,f +6454,3795,4,2,f +6454,3832,4,1,f +6454,3873,0,110,f +6454,3894,0,2,f +6454,3894,7,4,f +6454,3895,7,4,f +6454,3895,4,2,f +6454,4019,7,4,f +6454,4263,7,6,f +6454,4265a,7,1,t +6454,4265a,7,10,f +6454,4459,0,41,f +6454,4688c01,14,3,f +6454,4692c01,7,1,f +6454,4697a,7,1,t +6454,4697a,7,4,f +6454,4698,7,4,f +6454,4700,14,1,f +6454,4701c01,4,1,f +6454,5102c05,0,1,f +6454,5102c05,7,7,f +6454,5102c08,7,1,f +6454,5102c10,7,2,f +6454,5102c15,0,1,f +6454,5102c30,0,1,f +6454,5102c50,0,1,f +6454,75215,7,3,f +6454,rb00168,0,2,f +6455,2340,8,3,f +6455,2413,0,4,f +6455,2432,6,1,f +6455,2445,7,1,f +6455,2454a,7,2,f +6455,2540,8,4,f +6455,2549,6,1,f +6455,2555,8,2,f +6455,2561,6,1,f +6455,2655,14,1,f +6455,2730,7,2,f +6455,2736,7,1,f +6455,2780,0,1,t +6455,2780,0,2,f +6455,3001,0,2,f +6455,3002,8,2,f +6455,3003,462,1,f +6455,3004,7,15,f +6455,30041,0,1,f +6455,30042,7,1,f +6455,3005,7,4,f +6455,3005,15,2,f +6455,3005,462,10,f +6455,30055,19,1,f +6455,3010,8,1,f +6455,30132,8,1,t +6455,30132,8,2,f +6455,30137,6,2,f +6455,30141,8,2,f +6455,30145,15,4,f +6455,30153,46,1,f +6455,30157,7,1,f +6455,30158,6,1,f +6455,30162,8,1,f +6455,30167,6,1,f +6455,30170,8,1,t +6455,30170,8,1,f +6455,30171,0,1,f +6455,30193,8,2,f +6455,30193,8,1,t +6455,3020,6,1,f +6455,3021,0,2,f +6455,3022,14,1,f +6455,3022,8,2,f +6455,30223,6,2,f +6455,3023,14,3,f +6455,30237a,7,3,f +6455,30284,6,4,f +6455,3031,0,1,f +6455,3032,0,1,f +6455,30332,6,1,f +6455,3034,0,1,f +6455,3039,7,3,f +6455,3040b,8,5,f +6455,30503,8,2,f +6455,3062b,0,2,f +6455,3068b,7,2,f +6455,3068b,14,3,f +6455,3068b,8,2,f +6455,3068bpx33,15,1,f +6455,32039,19,2,f +6455,32123b,7,2,f +6455,32123b,7,1,t +6455,3297,0,4,f +6455,3298,0,4,f +6455,3464,7,1,f +6455,3581,8,2,f +6455,3622,7,3,f +6455,3626bpr0190,15,3,f +6455,3626bpr0247,14,1,f +6455,3626bpr0252,14,1,f +6455,3626bpx127,14,1,f +6455,3626bpx131,14,1,f +6455,3665,7,3,f +6455,3673,7,1,f +6455,3673,7,1,t +6455,3675,0,12,f +6455,3700,6,2,f +6455,3701,7,4,f +6455,3708,0,1,f +6455,3710,0,6,f +6455,3710,7,2,f +6455,3713,7,1,t +6455,3713,7,1,f +6455,3747a,7,1,f +6455,3794a,7,5,f +6455,3829c01,14,1,f +6455,3832,6,6,f +6455,3849,6,1,f +6455,3857,15,1,f +6455,3878,0,1,f +6455,3941,6,1,f +6455,3942c,14,1,f +6455,4085c,0,2,f +6455,4095,0,1,f +6455,4150,14,2,f +6455,41539,8,1,f +6455,4162,7,4,f +6455,41752,8,1,t +6455,41767,7,1,f +6455,41768,7,1,f +6455,41769,0,1,f +6455,41770,0,1,f +6455,4185,7,1,f +6455,4189435pb01,9999,1,t +6455,4189435pb02,9999,1,t +6455,4189435pb03,9999,1,t +6455,4189435pb04,9999,1,t +6455,4189435pb05,9999,1,t +6455,4189435pb06,9999,1,t +6455,4189435pb07,9999,1,t +6455,4189435pb08,9999,1,t +6455,4189435pb09,9999,1,t +6455,4189435pb10,9999,1,t +6455,4189435pb11,9999,1,t +6455,4189435pb12,9999,1,t +6455,4189435pb13,9999,1,t +6455,4189435pb14,9999,1,t +6455,4189435pb15,9999,1,t +6455,4189435pb16,9999,1,t +6455,4189435pb17,9999,1,t +6455,4189435pb18,9999,1,t +6455,4189442pb01,9999,1,t +6455,4189442pb02,9999,1,t +6455,4189442pb03,9999,1,t +6455,4189442pb04,9999,1,t +6455,4189442pb05,9999,1,t +6455,42610,7,2,f +6455,4266,14,1,f +6455,4287,6,2,f +6455,43337,7,2,f +6455,43892,462,4,f +6455,43894,6,1,f +6455,43894,0,1,f +6455,44294,7,1,f +6455,4438,0,2,f +6455,4460a,15,2,f +6455,4495b,14,3,f +6455,4519,7,1,f +6455,4589,15,3,f +6455,4589,14,2,f +6455,4623,7,2,f +6455,4733,7,1,f +6455,4740,14,2,f +6455,4865a,47,1,f +6455,4871,7,1,f +6455,51011,0,2,f +6455,59,334,1,f +6455,6082,15,1,f +6455,6083,15,2,f +6455,6111,15,2,f +6455,6111,8,3,f +6455,6126a,57,4,f +6455,6141,0,4,f +6455,6141,0,1,t +6455,6249,8,1,f +6455,6538b,7,2,f +6455,6553,14,2,f +6455,6587,8,1,f +6455,6628,0,1,f +6455,6636,8,2,f +6455,6636px1,19,1,f +6455,970c00,8,2,f +6455,970c00,7,1,f +6455,970c00pb018,19,1,f +6455,973px181c01,0,1,f +6455,973px183c01,6,1,f +6455,973px185c01,484,1,f +6455,973px186c01,6,1,f +6455,rb00167,0,1,f +6455,rb00167,0,3,t +6455,x268px1,9999,1,t +6456,2419,57,3,f +6456,2431,71,6,f +6456,2431,70,2,f +6456,2445,72,1,f +6456,2654,57,4,f +6456,2736,71,1,f +6456,3001,0,4,f +6456,3002,0,1,f +6456,3003,0,1,f +6456,3004,70,5,f +6456,3004,72,3,f +6456,3006,0,3,f +6456,3008,0,2,f +6456,3010,0,6,f +6456,30145,0,4,f +6456,3020,0,5,f +6456,3021,72,2,f +6456,3022,0,4,f +6456,3023,70,8,f +6456,3023,72,2,f +6456,3028,72,3,f +6456,3030,72,2,f +6456,30303,71,1,f +6456,3032,72,2,f +6456,3034,72,7,f +6456,3037,72,2,f +6456,30565,72,4,f +6456,3062b,57,3,f +6456,3065,57,2,f +6456,3068b,71,9,f +6456,3069b,71,12,f +6456,3069b,57,13,f +6456,3176,71,2,f +6456,32013,71,2,f +6456,32028,71,3,f +6456,32062,0,1,f +6456,32064b,0,6,f +6456,32123b,71,2,f +6456,32123b,71,1,t +6456,32530,70,6,f +6456,3403c01,0,2,f +6456,3705,0,3,f +6456,3710,72,3,f +6456,3794a,70,6,f +6456,3830,71,2,f +6456,3831,71,2,f +6456,3839b,71,3,f +6456,3958,72,1,f +6456,4032a,0,4,f +6456,4095,71,1,f +6456,41539,57,1,f +6456,4162,70,1,f +6456,4162,71,6,f +6456,41678,0,1,f +6456,41732,72,2,f +6456,41733,72,2,f +6456,4274,71,3,f +6456,4274,71,1,t +6456,4519,71,1,f +6456,45301,72,3,f +6456,4740,36,4,f +6456,47847pat0002,57,1,f +6456,48289,72,2,f +6456,48291,72,2,f +6456,4865a,70,2,f +6456,50450,0,2,f +6456,51219,72,2,f +6456,54200,70,2,f +6456,6081,71,4,f +6456,6111,0,3,f +6456,6126a,57,6,f +6456,6141,57,20,f +6456,6141,72,12,f +6456,6141,72,1,t +6456,6141,57,1,t +6456,6141,135,1,t +6456,6192,70,9,f +6456,6231,70,2,f +6456,6538b,36,2,f +6456,6587,72,3,f +6456,6589,71,2,f +6456,73983,71,2,f +6457,3003,1,1,f +6457,3003,0,1,f +6457,3004,0,1,f +6457,3004,1,1,f +6457,3004p0b,14,1,f +6457,3010,14,1,f +6457,3021,4,1,f +6457,3021,0,1,f +6457,3039,4,1,f +6458,2412b,0,2,f +6458,2412b,14,2,f +6458,2420,0,4,f +6458,2431,72,1,f +6458,2436,14,1,f +6458,2446pr23,0,1,f +6458,2458,14,1,f +6458,2540,72,2,f +6458,2780,0,1,t +6458,2780,0,1,f +6458,298c02,15,1,t +6458,298c02,15,2,f +6458,3001,14,1,f +6458,3002,0,1,f +6458,3004,0,1,f +6458,30088,72,1,f +6458,30090,41,1,f +6458,30090,41,1,t +6458,30091,72,1,f +6458,30157,71,2,f +6458,3020,0,3,f +6458,3022,71,1,f +6458,3023,47,2,f +6458,3023,4,8,f +6458,3024,4,2,f +6458,3034,4,1,f +6458,3035,0,1,f +6458,30365,0,2,f +6458,30374,0,2,f +6458,30385,143,2,f +6458,3039,14,1,f +6458,3040b,14,2,f +6458,30552,0,4,f +6458,30553,0,7,f +6458,30554a,0,12,f +6458,32062,4,2,f +6458,32138,0,1,f +6458,3626bpr0389,14,1,f +6458,3626bpr0458,14,1,f +6458,3660,14,1,f +6458,3666,14,2,f +6458,3749,19,1,f +6458,3795,14,1,f +6458,3894,0,2,f +6458,40379,320,8,f +6458,4070,0,2,f +6458,4081b,4,2,f +6458,41334,0,1,f +6458,41530,71,1,f +6458,41532,0,6,f +6458,41747,0,2,f +6458,41748,0,2,f +6458,41769,0,2,f +6458,41770,0,2,f +6458,41854,0,2,f +6458,41883,40,1,f +6458,4287,0,4,f +6458,43093,1,1,f +6458,43857,14,1,f +6458,43903,0,2,f +6458,44301a,4,6,f +6458,44302a,4,8,f +6458,44567a,71,1,f +6458,44674,320,1,f +6458,44675,0,4,f +6458,4589,33,2,f +6458,4623,72,1,f +6458,47407,0,4,f +6458,47452,0,2,f +6458,47454,14,2,f +6458,47455,0,4,f +6458,47456,0,4,f +6458,47458,0,3,f +6458,47501,0,2,f +6458,47753pr03,0,1,f +6458,47759pr0003,0,1,f +6458,48172,0,1,f +6458,48336,0,1,f +6458,49668,0,6,f +6458,50950,14,2,f +6458,53989,0,3,f +6458,54200,47,2,f +6458,54200,0,2,f +6458,55236,272,2,f +6458,55236,320,2,f +6458,55981,71,4,f +6458,59275,0,2,f +6458,6019,0,4,f +6458,6141,36,1,t +6458,6141,36,6,f +6458,6141,34,1,t +6458,6141,34,4,f +6458,73983,4,6,f +6458,75535,14,1,f +6458,970c00,0,2,f +6458,973pr1300c01,0,2,f +6462,11090,72,8,f +6462,11100,71,2,f +6462,11211,71,2,f +6462,11211,272,4,f +6462,11212,272,4,f +6462,11213,71,1,f +6462,11476,71,3,f +6462,11477,0,4,f +6462,11833,71,1,f +6462,13548,71,4,f +6462,14719,272,8,f +6462,14769pr1029,71,1,f +6462,15535,72,2,f +6462,15535,28,2,f +6462,15573,297,2,f +6462,15573,72,2,f +6462,15712,297,4,f +6462,15712,71,2,f +6462,15712,72,1,f +6462,18674,72,1,f +6462,18986,47,1,f +6462,20482,47,1,t +6462,20482,47,2,f +6462,21268,71,1,f +6462,22602,297,1,f +6462,22602,297,1,t +6462,2412b,179,13,f +6462,2420,72,2,f +6462,2420,272,10,f +6462,2420,71,2,f +6462,24407,72,2,f +6462,24413,15,1,f +6462,24414,15,8,f +6462,24657,272,1,f +6462,2540,71,1,f +6462,2723,71,2,f +6462,2815,0,1,f +6462,2817,71,1,f +6462,2877,71,2,f +6462,3010,19,1,f +6462,3020,272,2,f +6462,3020,72,4,f +6462,3021,71,2,f +6462,3021,272,2,f +6462,3022,0,1,f +6462,3022,28,4,f +6462,3022,19,4,f +6462,3022,1,3,f +6462,30229,72,1,f +6462,3023,41,12,f +6462,3023,71,4,f +6462,3023,28,6,f +6462,3023,72,6,f +6462,3023,0,4,f +6462,3024,0,1,t +6462,3024,272,35,f +6462,3024,272,1,t +6462,3024,0,4,f +6462,3024,47,1,t +6462,3024,47,4,f +6462,3032,71,1,f +6462,30374,41,8,f +6462,3062b,41,2,f +6462,3069b,41,10,f +6462,3069bpr0070,0,1,f +6462,3069bpr0086,71,4,f +6462,3069bpr0090,72,4,f +6462,3069bpr0101,71,1,f +6462,3070b,0,1,t +6462,3070b,0,4,f +6462,3070bpr0007,71,1,f +6462,3070bpr0007,71,1,t +6462,32064a,72,3,f +6462,32192,72,4,f +6462,3623,272,4,f +6462,3626cpr1773,78,1,f +6462,3626cpr1806,78,1,f +6462,3626cpr1811,78,1,f +6462,3626cpr1814,71,1,f +6462,3660,1,1,f +6462,3665,71,8,f +6462,3666,272,6,f +6462,3676,72,8,f +6462,3678bpr0051,71,1,f +6462,3700,1,1,f +6462,3700,72,2,f +6462,3707,0,1,f +6462,3713,4,1,t +6462,3713,4,1,f +6462,3713,71,1,t +6462,3713,71,2,f +6462,3747a,71,7,f +6462,3937,0,4,f +6462,3938,71,4,f +6462,3941,41,4,f +6462,3958,272,2,f +6462,4032a,71,2,f +6462,4032a,1,4,f +6462,4032a,0,2,f +6462,4162,272,8,f +6462,4185,41,2,f +6462,4274,71,2,f +6462,4274,1,6,f +6462,4274,71,1,t +6462,4274,1,1,t +6462,4285b,71,2,f +6462,43093,1,6,f +6462,43722,28,2,f +6462,43722,71,2,f +6462,43723,71,2,f +6462,43723,28,2,f +6462,44294,71,1,f +6462,4599b,71,1,t +6462,4599b,71,1,f +6462,4740,41,2,f +6462,4740pr0007,28,2,f +6462,48729b,72,8,f +6462,48729b,72,1,t +6462,51739,71,14,f +6462,52107,28,4,f +6462,54200,297,1,t +6462,54200,272,1,t +6462,54200,272,4,f +6462,54200,297,4,f +6462,55013,72,1,f +6462,57895pr0008,15,1,f +6462,6003,72,4,f +6462,6020,0,1,f +6462,60208,71,1,f +6462,60470a,0,6,f +6462,60474,0,1,f +6462,60478,0,8,f +6462,60478,28,4,f +6462,60592,272,24,f +6462,60596,72,1,f +6462,60601,272,14,f +6462,60897,72,1,f +6462,61183,70,1,f +6462,6141,47,2,f +6462,6141,15,8,f +6462,6141,41,15,f +6462,6141,41,1,t +6462,6141,47,1,t +6462,6141,15,1,t +6462,63864,272,5,f +6462,63864pr0006,272,4,f +6462,63864pr0007,272,4,f +6462,63868,28,4,f +6462,63868,72,4,f +6462,63965,71,6,f +6462,64807,71,1,f +6462,73983,272,4,f +6462,75937,179,2,f +6462,85861,0,1,t +6462,85861,0,4,f +6462,85974,70,1,f +6462,85975,320,1,f +6462,85984,71,9,f +6462,87079,272,1,f +6462,87087,0,16,f +6462,87544,71,2,f +6462,87580,272,3,f +6462,87994,71,4,f +6462,87994,71,1,t +6462,89523,72,2,f +6462,92593,72,9,f +6462,92690,71,2,f +6462,93061,72,2,f +6462,93061,72,1,t +6462,970c00pr0982,4,1,f +6462,970c00pr1005,308,1,f +6462,970c00pr1006,0,1,f +6462,973pr3184c01,0,1,f +6462,973pr3185c01,84,1,f +6462,973pr3186c01,85,1,f +6462,973pr3187c01,71,1,f +6462,98138,71,1,t +6462,98138,272,1,t +6462,98138,52,1,t +6462,98138,34,1,f +6462,98138,71,1,f +6462,98138,36,1,f +6462,98138,33,1,t +6462,98138,182,2,f +6462,98138,33,2,f +6462,98138,182,1,t +6462,98138,36,1,t +6462,98138,52,2,f +6462,98138,34,1,t +6462,98138,272,5,f +6462,98313,179,8,f +6462,99021,72,6,f +6462,99780,72,6,f +6462,99781,71,6,f +6463,2570,8,2,f +6463,2586p4g,7,1,f +6463,30043,4,1,f +6463,3020,0,1,f +6463,3031,7,1,f +6463,3062b,6,1,f +6463,3298,8,1,f +6463,3626bpx84,14,1,f +6463,3701,0,2,f +6463,3710,7,1,f +6463,3749,7,2,f +6463,3794a,7,2,f +6463,4070,4,2,f +6463,4495b,4,1,f +6463,4497,6,1,f +6463,4623,4,1,f +6463,6122,0,1,f +6463,6123,8,2,f +6463,6222,6,2,f +6463,970x021,0,1,f +6463,973px137c01,6,1,f +6464,2,15,1,f +6464,3,4,2,f +6464,3001a,0,1,f +6464,3003,0,4,f +6464,3003,15,1,f +6464,3004,0,2,f +6464,3005,47,1,f +6464,3008,0,9,f +6464,3009,0,2,f +6464,3010,0,6,f +6464,3010,15,4,f +6464,3021,0,1,f +6464,3022,4,1,f +6464,3027,0,1,f +6464,3030,15,1,f +6464,3031,0,1,f +6464,3032,0,2,f +6464,3035,0,1,f +6464,3035,15,1,f +6464,3036,0,1,f +6464,3062a,47,2,f +6464,3068b,15,27,f +6464,3068b,4,6,f +6464,3069a,0,4,f +6464,3069a,7,30,f +6464,3069a,15,4,f +6464,3070a,0,16,f +6464,3070a,15,3,f +6464,3613,15,2,f +6464,3614a,14,2,f +6464,367,4,1,f +6464,685px3,14,1,f +6464,792c03,15,1,f +6464,837,15,2,f +6464,838,4,2,f +6464,x197,6,1,f +6466,2343,0,1,t +6466,2343,0,1,f +6466,30089,0,1,f +6467,3023a,15,50,f +6467,3024,15,30,f +6467,728,7,1,f +6467,729,47,1,f +6470,2357,4,4,f +6470,2420,4,4,f +6470,2431,4,4,f +6470,2449,4,16,f +6470,3001,4,4,f +6470,3003,14,3,f +6470,3003,4,8,f +6470,3005,14,4,f +6470,3005,4,2,f +6470,3009,4,6,f +6470,3010,4,6,f +6470,3022,14,2,f +6470,3022,4,4,f +6470,3023,4,5,f +6470,3031,4,1,f +6470,3032,4,2,f +6470,3037,4,7,f +6470,3040b,4,2,f +6470,3045,4,6,f +6470,3062b,70,9,f +6470,3460,4,2,f +6470,3660,4,8,f +6470,3676,14,4,f +6470,3710,4,8,f +6470,3794b,70,3,f +6470,54200,4,6,f +6470,61678,27,1,f +6470,87079,4,2,f +6471,3004,4,4,f +6471,3741,2,1,f +6471,3742,14,1,t +6471,3742,14,3,f +6471,3795,4,2,f +6471,4222a,450,1,f +6471,fab7c,9999,1,f +6471,fabca2,450,1,f +6471,fabei6,4,1,f +6471,x682c01,15,1,f +6474,2431,4,4,f +6474,2436,0,2,f +6474,2445,0,1,f +6474,2458,72,1,f +6474,2815,0,2,f +6474,3004,4,1,f +6474,3020,4,2,f +6474,3022,0,1,f +6474,3022,25,3,f +6474,3023,0,2,f +6474,3023,4,4,f +6474,3062b,0,2,f +6474,3068b,4,1,f +6474,32123b,71,2,f +6474,32123b,71,1,t +6474,32140,0,1,f +6474,32250,0,2,f +6474,32527,25,1,f +6474,32528,25,1,f +6474,3700,72,2,f +6474,3701,4,2,f +6474,3705,0,3,f +6474,3706,0,1,f +6474,3710,0,1,f +6474,3713,71,2,t +6474,3713,71,6,f +6474,3737,0,1,f +6474,3795,0,1,f +6474,41747,4,1,f +6474,41748,4,1,f +6474,4185,25,2,f +6474,42610,71,1,f +6474,43722,4,1,f +6474,43723,4,1,f +6474,44309,0,2,f +6474,44728,72,2,f +6474,47715,72,1,f +6474,47758,0,1,f +6474,50943,80,1,f +6474,50950,4,2,f +6474,54087,25,2,f +6474,6141,80,8,f +6474,6558,0,2,f +6477,10830pat0001,0,1,f +6477,12825,0,2,f +6477,2376,0,3,f +6477,2412b,72,8,f +6477,2412b,14,5,f +6477,2412b,25,5,f +6477,2420,73,2,f +6477,2420,72,2,f +6477,2431,14,1,f +6477,2431,0,12,f +6477,2431,72,3,f +6477,2431,71,2,f +6477,2436,71,2,f +6477,2437pr0003,25,1,f +6477,2441,0,1,f +6477,2444,72,1,f +6477,2454a,71,2,f +6477,2456,72,2,f +6477,2458,14,1,f +6477,2540,72,2,f +6477,2584,0,1,f +6477,2585,71,1,f +6477,2654,72,2,f +6477,2877,72,2,f +6477,2921,0,1,f +6477,2921,71,2,f +6477,298c02,14,1,t +6477,298c02,14,1,f +6477,3001,72,1,f +6477,3001,71,1,f +6477,3002,70,2,f +6477,30027b,71,4,f +6477,30028,0,4,f +6477,3003,1,2,f +6477,3003,71,1,f +6477,3003,320,1,f +6477,3004,71,2,f +6477,3004,72,3,f +6477,3004,378,2,f +6477,3004,25,2,f +6477,3005,14,2,f +6477,3005,25,2,f +6477,3008,72,1,f +6477,3009,15,2,f +6477,3009,72,1,f +6477,3010,71,1,f +6477,3010,14,3,f +6477,3020,72,4,f +6477,3020,25,2,f +6477,3020,71,2,f +6477,3020,14,1,f +6477,3020,378,2,f +6477,3020,73,2,f +6477,3021,0,2,f +6477,3021,25,1,f +6477,3022,25,1,f +6477,3022,71,2,f +6477,3022,14,1,f +6477,3022,0,1,f +6477,3023,4,1,f +6477,3023,73,2,f +6477,3023,14,1,f +6477,3024,36,2,f +6477,3031,73,1,f +6477,3031,72,2,f +6477,3032,72,1,f +6477,3033,72,1,f +6477,3034,72,2,f +6477,3035,0,1,f +6477,3036,72,1,f +6477,3037,25,1,f +6477,30387,14,1,f +6477,30388,14,1,f +6477,30389c,14,1,f +6477,30395,72,1,f +6477,30396,14,1,f +6477,3040b,72,2,f +6477,3040b,71,2,f +6477,30414,72,2,f +6477,30414,73,2,f +6477,30553,72,1,f +6477,3062b,4,1,f +6477,3062b,71,3,f +6477,30663,71,1,f +6477,3068b,15,1,f +6477,3068b,72,3,f +6477,3068b,71,1,f +6477,3068bpr0200a,320,1,f +6477,3069b,378,1,f +6477,3070b,14,1,t +6477,3070b,14,1,f +6477,32001,0,2,f +6477,32028,378,1,f +6477,32028,323,2,f +6477,32270,0,2,f +6477,3245c,71,1,f +6477,32530,0,1,f +6477,3460,72,2,f +6477,3659,72,4,f +6477,3659,15,2,f +6477,3660,70,2,f +6477,3660,72,2,f +6477,3678b,323,1,f +6477,3678bpr0028,323,1,f +6477,3678bpr0029,14,1,f +6477,3679,71,1,f +6477,3680,0,1,f +6477,3705,0,2,f +6477,3707,0,1,f +6477,3710,73,1,f +6477,3710,25,1,f +6477,3710,14,2,f +6477,3747b,72,12,f +6477,3794b,0,7,f +6477,3795,15,2,f +6477,3795,71,1,f +6477,3830,70,1,f +6477,3831,70,1,f +6477,3941,15,2,f +6477,3941,0,1,f +6477,3958,1,4,f +6477,4032a,15,2,f +6477,4032a,2,2,f +6477,41539,0,4,f +6477,4286,14,2,f +6477,4287,72,8,f +6477,44567a,14,1,f +6477,4589,4,3,f +6477,4589,14,2,f +6477,4599b,0,5,f +6477,4599b,14,2,f +6477,4624,71,4,f +6477,47457,323,2,f +6477,48336,0,1,f +6477,4865b,14,3,f +6477,48729b,0,1,f +6477,48729b,0,1,t +6477,54200,72,6,f +6477,54200,72,2,t +6477,56823c50,0,1,f +6477,58176,46,2,f +6477,59230,0,1,f +6477,59230,0,1,t +6477,59349,71,2,f +6477,59443,0,2,f +6477,59895,0,4,f +6477,59895,0,1,t +6477,60169,72,1,f +6477,60212,25,2,f +6477,60470a,71,2,f +6477,60474,0,1,f +6477,60594,2,2,f +6477,60614,2,4,f +6477,6091,73,2,f +6477,61184,71,3,f +6477,6126b,182,1,f +6477,6141,15,3,f +6477,6141,0,1,t +6477,6141,46,2,t +6477,6141,47,5,f +6477,6141,34,1,t +6477,6141,46,3,f +6477,6141,15,3,t +6477,6141,47,2,t +6477,6141,36,4,f +6477,6141,36,2,t +6477,6141,34,2,f +6477,6141,0,2,f +6477,61485,0,1,f +6477,6157,0,2,f +6477,6179,25,1,f +6477,6231,71,1,f +6477,6259,72,8,f +6477,63864,25,6,f +6477,63864,73,2,f +6477,63965,71,1,f +6477,64449,72,2,f +6477,6587,28,1,f +6477,6636,15,2,f +6477,6636,0,2,f +6477,85940,0,2,f +6477,85959pat0001,36,1,f +6477,85973,0,1,f +6477,87079,71,1,f +6477,87079,14,1,f +6477,87087,0,1,f +6477,87087,71,5,f +6477,87544,2,6,f +6477,87580,0,16,f +6477,87580,72,11,f +6477,87994,0,1,f +6477,89523,72,1,f +6477,92438,71,2,f +6477,93273pr0007,25,1,f +6477,93274,25,1,f +6477,93590,73,1,f +6477,93590,378,2,f +6477,93591pr0015,73,1,f +6477,93597pr0002,73,1,f +6477,9486stk01,9999,1,t +6477,98138,71,1,t +6477,98138,71,2,f +6477,98138pr0005,71,1,t +6477,98138pr0005,71,1,f +6477,98313,0,1,f +6477,98834,73,2,f +6480,2343,47,2,f +6480,2357,1,2,f +6480,2357,4,2,f +6480,2419,4,2,f +6480,2423,2,3,f +6480,2432,14,2,f +6480,2456,1,2,f +6480,2456,4,2,f +6480,2458,1,2,f +6480,2460,1,1,f +6480,2479,7,1,f +6480,2488,2,1,f +6480,2577,15,2,f +6480,2625,4,2,f +6480,3001,14,6,f +6480,3001,2,4,f +6480,3001,4,6,f +6480,3001,15,6,f +6480,3001,1,6,f +6480,3001,0,4,f +6480,3002,1,4,f +6480,3002,15,2,f +6480,3002,4,4,f +6480,3002,14,4,f +6480,3002,0,2,f +6480,3003,2,6,f +6480,3003,14,8,f +6480,3003,0,6,f +6480,3003,15,8,f +6480,3003,1,8,f +6480,3003,4,8,f +6480,3004,1,36,f +6480,3004,0,20,f +6480,3004,14,36,f +6480,3004,15,36,f +6480,3004,4,36,f +6480,3004,2,20,f +6480,3005,14,30,f +6480,3005,0,20,f +6480,3005,4,30,f +6480,3005,1,30,f +6480,3005,2,20,f +6480,3005,15,30,f +6480,3005pe1,2,2,f +6480,3005pe1,14,2,f +6480,3007,1,2,f +6480,3007,4,2,f +6480,3008,14,2,f +6480,3008,1,2,f +6480,3008,4,2,f +6480,3009,1,6,f +6480,3009,14,6,f +6480,3009,0,4,f +6480,3009,15,6,f +6480,3009,4,6,f +6480,3010,14,20,f +6480,3010,1,20,f +6480,3010,0,10,f +6480,3010,15,20,f +6480,3010,4,20,f +6480,3010p01,14,2,f +6480,3010p02,15,2,f +6480,30161,47,1,f +6480,30183,1,1,f +6480,3020,4,2,f +6480,3021,4,2,f +6480,3022,4,2,f +6480,3029,4,1,f +6480,3035,4,2,f +6480,3039,1,6,f +6480,3040b,1,6,f +6480,3062b,15,8,f +6480,3081cc01,4,2,f +6480,3149c01,4,1,f +6480,3297,1,6,f +6480,3297px1,1,2,f +6480,3298,1,8,f +6480,3298p11,1,4,f +6480,3299,1,6,f +6480,3300,1,4,f +6480,3307,14,2,f +6480,3334,15,1,f +6480,3460,4,2,f +6480,3483,0,6,f +6480,3622,0,4,f +6480,3622,4,10,f +6480,3622,15,10,f +6480,3622,2,6,f +6480,3622,14,10,f +6480,3622,1,10,f +6480,3626bp02,14,1,f +6480,3626bpx19,14,1,f +6480,3633,14,4,f +6480,3660,14,4,f +6480,3665,14,8,f +6480,3666,4,2,f +6480,3679,7,1,f +6480,3680,1,1,f +6480,3730,4,1,f +6480,3731,4,1,f +6480,3741,2,2,f +6480,3742,15,3,f +6480,3742,4,1,t +6480,3742,15,1,t +6480,3742,4,3,f +6480,3747b,14,4,f +6480,3823,41,2,f +6480,3829c01,14,2,f +6480,3832,4,2,f +6480,3836,6,1,f +6480,3853,1,3,f +6480,3854,14,6,f +6480,3856,2,6,f +6480,3861b,1,1,f +6480,3937,1,4,f +6480,3938,14,4,f +6480,3957a,14,2,f +6480,3960p03,15,2,f +6480,4070,1,4,f +6480,4079,14,2,f +6480,4286,1,4,f +6480,4287,14,8,f +6480,4485,2,1,f +6480,4495b,2,2,f +6480,4625,1,1,f +6480,6041,0,2,f +6480,6064,2,2,f +6480,6093,0,1,f +6480,6215,1,4,f +6480,6248,15,6,f +6480,6249,8,3,f +6480,6564,1,2,f +6480,6565,1,2,f +6480,970c00,2,1,f +6480,970c00,1,1,f +6480,973px33c01,15,1,f +6480,973px34c01,15,1,f +6481,3023,36,1,f +6481,3069b,33,1,f +6481,3710,15,1,f +6481,4083,15,1,f +6481,4865a,41,2,f +6481,51739,15,1,f +6484,14418,71,3,f +6484,14419,72,1,f +6484,14769pr1011,71,2,f +6484,15068,179,2,f +6484,15208,15,1,f +6484,15456,0,2,f +6484,2412b,297,1,f +6484,2736,71,1,f +6484,3003,0,2,f +6484,3021,70,1,f +6484,3039,70,2,f +6484,32064a,72,2,f +6484,3679,71,1,f +6484,3680,0,1,f +6484,3700,0,4,f +6484,4032a,72,2,f +6484,48729b,0,1,t +6484,48729b,0,1,f +6484,60474,72,2,f +6484,60478,0,1,f +6484,6141,297,8,f +6484,6141,297,1,t +6484,87083,72,2,f +6484,87580,70,3,f +6484,93273,179,4,f +6484,93274,72,1,f +6484,94925,71,2,f +6484,98313,297,1,f +6484,99207,0,2,f +6484,99780,71,3,f +6485,2919,46,1,f +6485,2928,4,1,f +6485,6035,15,1,f +6486,851210,89,1,f +6486,851490,89,1,f +6490,10201,1,2,f +6490,10201,4,1,f +6490,10928,72,2,f +6490,11477,15,4,f +6490,13548,1,2,f +6490,15379,0,1,t +6490,15379,0,32,f +6490,15462,28,1,f +6490,15535,72,2,f +6490,15540,72,4,f +6490,15573,1,2,f +6490,17485,14,2,f +6490,18646,0,1,f +6490,18651,0,3,f +6490,18677,71,4,f +6490,22885,71,2,f +6490,22961,71,2,f +6490,2412b,0,6,f +6490,2412b,14,7,f +6490,2420,4,2,f +6490,2420,1,2,f +6490,2431,4,1,f +6490,24316,70,1,f +6490,2456,72,1,f +6490,2540,4,1,f +6490,2654,15,1,f +6490,2780,0,6,f +6490,2780,0,1,t +6490,2926,0,2,f +6490,3001,4,1,f +6490,3002,15,1,f +6490,3004,73,2,f +6490,3004,15,3,f +6490,3005,15,2,f +6490,3009,72,2,f +6490,3010,15,3,f +6490,3021,0,6,f +6490,3023,15,3,f +6490,3023,4,9,f +6490,3031,1,1,f +6490,3031,4,1,f +6490,3034,1,1,f +6490,30357,0,2,f +6490,30361,72,2,f +6490,30367c,72,2,f +6490,3037,73,2,f +6490,3039,47,2,f +6490,30395,72,1,f +6490,3065,40,2,f +6490,32015,0,2,f +6490,32016,15,2,f +6490,32059,0,1,f +6490,32064a,72,4,f +6490,32123b,71,1,t +6490,32123b,71,8,f +6490,32125,71,2,f +6490,33299a,71,1,f +6490,3666,1,2,f +6490,3678b,1,2,f +6490,3700,1,6,f +6490,3705,0,3,f +6490,3706,4,2,f +6490,3709,1,7,f +6490,3710,73,2,f +6490,3710,15,2,f +6490,3710,0,8,f +6490,3710,1,3,f +6490,3713,4,2,f +6490,3713,4,1,t +6490,3795,0,4,f +6490,3832,0,7,f +6490,3941,2,1,f +6490,4032a,4,4,f +6490,4162,0,6,f +6490,41769,1,1,f +6490,41770,1,1,f +6490,4274,71,1,t +6490,4274,71,4,f +6490,4287,15,2,f +6490,43093,1,5,f +6490,43710,1,1,f +6490,43711,1,1,f +6490,43713,15,1,f +6490,43720,73,1,f +6490,43721,73,1,f +6490,43722,0,1,f +6490,43723,0,1,f +6490,44728,15,2,f +6490,4519,71,2,f +6490,4624,15,4,f +6490,4865a,4,2,f +6490,51739,1,1,f +6490,54200,1,1,t +6490,54200,73,2,f +6490,54200,73,1,t +6490,54200,1,2,f +6490,56823c50,0,1,f +6490,56903,15,1,f +6490,59443,14,4,f +6490,59895,0,4,f +6490,60219,72,1,f +6490,60479,0,2,f +6490,60481,73,4,f +6490,60484,72,2,f +6490,60485,71,1,f +6490,6081,73,4,f +6490,6141,72,1,t +6490,6141,182,2,f +6490,6141,72,4,f +6490,6141,34,1,t +6490,6141,34,1,f +6490,6141,36,1,t +6490,6141,36,1,f +6490,6141,182,1,t +6490,61510,71,1,f +6490,62360,40,1,f +6490,62462,0,1,f +6490,64799,71,1,f +6490,6564,15,1,f +6490,6565,15,1,f +6490,6589,19,4,f +6490,72454,15,2,f +6490,74698,0,1,f +6490,85984,1,8,f +6490,87082,71,1,f +6490,87083,72,1,f +6490,87620,73,2,f +6490,88293,15,2,f +6490,93273,1,2,f +6490,98138,47,1,t +6490,98138,47,2,f +6490,99008,19,1,f +6490,99773,0,2,f +6494,1,15,1,f +6494,122c01,7,2,f +6494,2,15,2,f +6494,297stk01,9999,1,t +6494,3,14,2,f +6494,3,4,2,f +6494,3003,15,1,f +6494,3003,1,2,f +6494,3004,1,6,f +6494,3004,14,2,f +6494,3005,1,12,f +6494,3005,4,4,f +6494,3005,14,14,f +6494,3008,1,3,f +6494,3008,15,4,f +6494,3009,1,5,f +6494,3010,1,4,f +6494,3020,14,1,f +6494,3021,4,1,f +6494,3021,1,1,f +6494,3022,1,2,f +6494,3022,14,3,f +6494,3022,4,2,f +6494,3023,4,1,f +6494,3029,4,1,f +6494,3031,4,1,f +6494,3032,14,1,f +6494,3033,1,2,f +6494,3040a,14,2,f +6494,3040a,1,5,f +6494,3044a,4,1,f +6494,3068b,4,20,f +6494,3069b,4,12,f +6494,3176,7,1,f +6494,3298,15,4,f +6494,3460,4,1,f +6494,3613,4,2,f +6494,3613,15,2,f +6494,3614b,14,4,f +6494,3623,1,1,f +6494,3625,0,1,f +6494,3626apr0001,14,1,f +6494,3633,14,4,f +6494,3641,0,4,f +6494,3659,4,2,f +6494,3666,1,1,f +6494,3679,7,1,f +6494,3680,14,1,f +6494,3710,14,3,f +6494,3710,4,2,f +6494,3794a,4,2,f +6494,685p01,14,1,f +6494,685px3,14,1,f +6494,792c03,4,1,f +6494,792c03,15,1,f +6494,970c00,0,1,f +6494,973c02,4,1,f +6494,rb00164,0,1,f +6494,x196,0,1,f +6494,x197,6,1,f +6495,30033,15,1,f +6495,30034,15,2,f +6495,30035,15,1,f +6495,3039p15,15,1,f +6495,3068b,0,2,f +6495,3068bp10,15,1,f +6495,3069bp50,15,1,f +6495,3298p10,15,1,f +6495,3475b,0,2,f +6495,3960,33,1,f +6495,3960,36,1,f +6495,4360,15,1,f +6495,4590,0,2,f +6495,4595,0,2,f +6495,4740,42,1,f +6495,6179,0,1,f +6495,73590c02a,0,1,f +6496,30103,0,1,f +6496,3626bpr0687,15,1,f +6496,42450,0,1,f +6496,64798,0,1,f +6496,88646,0,1,f +6496,970c00,0,1,f +6496,973pr1649c01,0,1,f +6497,2446,1,1,f +6497,2447,40,1,f +6497,2447,40,1,t +6497,2540,71,1,f +6497,2654,72,1,f +6497,2926,0,1,f +6497,298c02,4,1,t +6497,298c02,4,1,f +6497,3021,71,1,f +6497,3034,4,1,f +6497,30602,15,1,f +6497,3626bpr0279,14,1,f +6497,3673,71,1,f +6497,3673,71,1,t +6497,3678b,4,1,f +6497,3794b,71,1,f +6497,3956,71,1,f +6497,4285b,15,1,f +6497,43719,15,1,f +6497,44675,71,2,f +6497,44728,15,2,f +6497,4624,71,2,f +6497,50304,15,1,f +6497,50305,15,1,f +6497,60032,4,1,f +6497,61409,4,2,f +6497,6141,34,1,t +6497,6141,14,1,t +6497,6141,34,1,f +6497,6141,36,1,t +6497,6141,36,1,f +6497,6141,14,2,f +6497,92842,0,1,f +6497,970c00,1,1,f +6497,973pr1173c01,4,1,f +6499,2146c00,4,1,f +6499,3022,1,3,f +6499,3942c,14,3,f +6499,4495a,4,3,f +6499,fab4c,9999,1,f +6500,2357,14,2,f +6500,2432,15,1,f +6500,2540,7,1,f +6500,3022,14,1,f +6500,3023,14,1,f +6500,3024,36,2,f +6500,3034,0,1,f +6500,3623,14,2,f +6500,3626bp7e,14,1,f +6500,3710,14,1,f +6500,3788,14,1,f +6500,3829c01,15,1,f +6500,3962b,0,1,f +6500,4070,14,2,f +6500,4211,14,1,f +6500,4485,4,1,f +6500,4600,0,2,f +6500,4865a,41,2,f +6500,6014a,15,4,f +6500,6015,0,4,f +6500,6141,47,2,f +6500,970c00,2,1,f +6500,973p73c01,2,1,f +6503,2446,15,1,f +6503,2447,40,1,f +6503,2447,40,1,t +6503,298c02,15,1,t +6503,298c02,15,1,f +6503,3021,15,1,f +6503,3023,15,4,f +6503,3069b,15,2,f +6503,3626bpr0409,14,1,f +6503,3962b,72,1,f +6503,4085c,15,1,f +6503,4697b,71,1,t +6503,4697b,71,2,f +6503,50859a,0,1,f +6503,50861,0,2,f +6503,50862,71,2,f +6503,54200,36,2,f +6503,54200,46,1,t +6503,54200,33,2,f +6503,54200,46,1,f +6503,54200,33,1,t +6503,54200,36,1,t +6503,7235.1stk01,9999,1,t +6503,89536,15,1,f +6503,970c00,0,1,f +6503,973pr1186c01,0,1,f +6504,15573,2,2,f +6504,2780,0,4,f +6504,3001,1,1,f +6504,3003,15,2,f +6504,3005,71,5,f +6504,30176,2,2,f +6504,3020,15,1,f +6504,3020,71,1,f +6504,3022,71,1,f +6504,3022,15,1,f +6504,3023,15,4,f +6504,3024,72,4,f +6504,3032,70,3,f +6504,3037,70,4,f +6504,3039,19,1,f +6504,3039,70,2,f +6504,3040b,19,4,f +6504,3045,70,4,f +6504,3068b,2,3,f +6504,3070b,29,1,f +6504,3298,15,2,f +6504,3660,15,1,f +6504,3665,15,4,f +6504,3700,15,5,f +6504,3795,2,2,f +6504,3795,15,2,f +6504,4081b,0,2,f +6504,4274,71,1,f +6504,48336,71,1,f +6504,54200,19,2,f +6504,61252,71,1,f +6504,6141,71,3,f +6504,6141,72,3,f +6504,6541,19,4,f +6504,85984,71,1,f +6504,85984,15,4,f +6504,87087,71,2,f +6504,87747,0,2,f +6504,92946,72,4,f +6504,98138pr0008,15,2,f +6504,99206,71,1,f +6505,14618,89,1,f +6506,11248c01,70,1,f +6506,11248c01,4,1,f +6506,13527,4,1,f +6506,15793,1,1,f +6506,15956,322,1,f +6506,16685,4,1,f +6506,16696,10,1,f +6506,17435,47,1,f +6506,20678,41,1,f +6506,21990,27,1,f +6506,2302,10,2,f +6506,3011,1,1,f +6506,3011,10,2,f +6506,3437,27,1,f +6506,3437,71,2,f +6506,3437,72,2,f +6506,3437,322,1,f +6506,4066,191,1,f +6506,40666,1,1,f +6506,40666,484,1,f +6506,4657,1,1,f +6506,4658,70,1,f +6506,51708,70,2,f +6506,51725,4,1,f +6506,58086,70,1,f +6506,6446,484,1,f +6506,6510,10,1,f +6506,73241,14,1,f +6506,98223,27,1,f +6506,98225,484,1,f +6506,98252,27,1,f +6508,10928,72,2,f +6508,12825,15,2,f +6508,13349,15,2,f +6508,14769,15,1,f +6508,14769,4,2,f +6508,15573,71,1,f +6508,15573,15,4,f +6508,2412b,0,4,f +6508,2412b,297,5,f +6508,2419,15,6,f +6508,2420,15,6,f +6508,2431,15,5,f +6508,2450,71,4,f +6508,2460,15,1,f +6508,2496,0,2,f +6508,2654,71,3,f +6508,2655,71,2,f +6508,2730,15,2,f +6508,2736,71,3,f +6508,2744,15,2,f +6508,2780,0,200,f +6508,2817,0,9,f +6508,2877,15,4,f +6508,298c02,15,1,f +6508,30000,71,3,f +6508,3001,72,1,f +6508,3003,72,6,f +6508,3004,72,8,f +6508,3004,0,2,f +6508,3004,25,8,f +6508,3005,15,2,f +6508,3008,72,2,f +6508,3010,15,4,f +6508,3020,4,5,f +6508,3020,0,1,f +6508,3020,72,4,f +6508,3020,71,2,f +6508,3020,15,3,f +6508,3021,72,8,f +6508,3021,15,2,f +6508,3022,72,4,f +6508,3022,14,2,f +6508,3022,71,5,f +6508,3023,72,6,f +6508,3023,14,1,f +6508,3023,71,1,f +6508,3023,15,8,f +6508,30293,72,3,f +6508,30294,72,3,f +6508,3031,70,1,f +6508,3031,15,4,f +6508,3034,0,1,f +6508,3034,72,6,f +6508,30367c,15,2,f +6508,30367c,4,6,f +6508,30374,71,2,f +6508,30385,297,2,f +6508,30385,41,4,f +6508,3039,72,4,f +6508,3040b,25,1,f +6508,3040b,71,8,f +6508,30414,15,1,f +6508,3045,71,2,f +6508,30552,0,1,f +6508,3062b,27,4,f +6508,3068b,0,1,f +6508,3068bpr0136,72,1,f +6508,3069b,71,1,f +6508,3069bpr0090,72,2,f +6508,32000,15,2,f +6508,32002,19,8,f +6508,32009,72,2,f +6508,32013,0,10,f +6508,32014,0,6,f +6508,32034,0,6,f +6508,32034,71,2,f +6508,32039,4,3,f +6508,32039,71,2,f +6508,32054,71,4,f +6508,32062,4,39,f +6508,32063,71,4,f +6508,32064a,71,4,f +6508,32073,71,4,f +6508,32123b,14,1,f +6508,32123b,71,17,f +6508,32140,71,10,f +6508,32140,0,14,f +6508,32140,1,6,f +6508,32184,71,2,f +6508,32192,4,1,f +6508,32192,0,5,f +6508,32198,19,1,f +6508,32250,72,4,f +6508,32269,19,1,f +6508,32270,0,4,f +6508,32271,72,1,f +6508,32271,0,1,f +6508,32278,72,2,f +6508,32278,0,5,f +6508,32278,71,1,f +6508,32278,15,2,f +6508,32291,0,1,f +6508,32316,4,2,f +6508,32316,1,12,f +6508,32449,4,4,f +6508,32449,72,4,f +6508,32498,0,2,f +6508,32523,4,12,f +6508,32523,72,4,f +6508,32523,71,2,f +6508,32523,1,6,f +6508,32524,15,6,f +6508,32524,0,10,f +6508,32525,72,20,f +6508,32525,15,2,f +6508,32526,1,4,f +6508,32526,0,8,f +6508,32526,4,10,f +6508,32530,4,6,f +6508,32556,19,11,f +6508,3298,15,3,f +6508,33299a,71,5,f +6508,3456,72,1,f +6508,3460,15,3,f +6508,3460,0,1,f +6508,3460,71,2,f +6508,3626cpr0645,14,2,f +6508,3649,71,2,f +6508,3660,72,4,f +6508,3666,15,2,f +6508,3673,71,12,f +6508,3679,71,1,f +6508,3680,0,1,f +6508,3700,71,1,f +6508,3701,4,3,f +6508,3701,15,2,f +6508,3702,15,4,f +6508,3705,0,9,f +6508,3706,0,11,f +6508,3708,0,3,f +6508,3709,15,1,f +6508,3710,15,9,f +6508,3713,71,8,f +6508,3713,4,7,f +6508,3749,19,17,f +6508,3795,15,4,f +6508,3937,0,2,f +6508,3941,15,14,f +6508,3942c,15,4,f +6508,3943b,0,1,f +6508,3956,0,2,f +6508,3957a,15,2,f +6508,4032a,71,3,f +6508,4032a,4,12,f +6508,4032a,1,1,f +6508,40490,0,6,f +6508,40490,15,8,f +6508,40490,4,6,f +6508,4079,15,2,f +6508,4081b,0,1,f +6508,41239,15,10,f +6508,41239,4,4,f +6508,41529,71,1,f +6508,41539,72,2,f +6508,41677,71,2,f +6508,41678,0,1,f +6508,4185,71,2,f +6508,42003,71,5,f +6508,42003,72,6,f +6508,4274,1,2,f +6508,4282,71,1,f +6508,4285,72,1,f +6508,43093,1,55,f +6508,43857,0,2,f +6508,43857,4,2,f +6508,43898,80,3,f +6508,44568,15,3,f +6508,4515,72,3,f +6508,4519,71,14,f +6508,4624,71,4,f +6508,4740,1,1,f +6508,4871,0,1,f +6508,48989,71,1,f +6508,50747,40,3,f +6508,51739,4,3,f +6508,51739,15,9,f +6508,54200,15,8,f +6508,54200,40,2,f +6508,55982,0,6,f +6508,57585,71,1,f +6508,59426,72,1,f +6508,59443,71,13,f +6508,59443,4,11,f +6508,59900,297,2,f +6508,59900,0,4,f +6508,59900,1,2,f +6508,60474,0,1,f +6508,60483,0,1,f +6508,60485,71,2,f +6508,6081,15,6,f +6508,60897,0,1,f +6508,6091,0,8,f +6508,6111,72,4,f +6508,61184,71,1,f +6508,6134,0,2,f +6508,61409,0,10,f +6508,6141,14,6,f +6508,6141,57,7,f +6508,6141,27,3,f +6508,6157,71,2,f +6508,6179,15,3,f +6508,6179,0,5,f +6508,62462,15,8,f +6508,62462,0,6,f +6508,62462,71,2,f +6508,62531,25,1,f +6508,6259,15,2,f +6508,63965,72,2,f +6508,64392,0,1,f +6508,64682,0,1,f +6508,64782,25,17,f +6508,6536,72,10,f +6508,6536,4,2,f +6508,6536,71,10,f +6508,6541,15,2,f +6508,6558,1,79,f +6508,6589,19,1,f +6508,6628,0,4,f +6508,6629,72,2,f +6508,6632,71,2,f +6508,6632,4,6,f +6508,72454,15,3,f +6508,78c09,0,6,f +6508,85545,1,4,f +6508,85546,14,2,f +6508,85984,72,4,f +6508,87079,15,3,f +6508,87081,0,1,f +6508,87082,71,4,f +6508,87083,72,6,f +6508,87408,0,1,f +6508,87414,0,4,f +6508,87580,71,1,f +6508,87754,15,2,f +6508,88072,15,1,f +6508,89159,82,2,f +6508,91988,72,1,f +6508,92947,4,2,f +6508,93549pat01,47,1,f +6508,970c00,15,1,f +6508,970c00,25,1,f +6508,973c01,15,1,f +6508,973pr1182c01,25,1,f +6508,98606,148,2,f +6509,13285pr01,25,1,f +6509,23306,383,1,f +6509,2341,320,2,f +6509,2412b,14,4,f +6509,2412b,41,7,f +6509,2412b,71,1,f +6509,2412b,72,9,f +6509,2412b,15,1,f +6509,2419,15,2,f +6509,2420,70,8,f +6509,2431,320,3,f +6509,2431,288,2,f +6509,2436,0,2,f +6509,2445,71,2,f +6509,2445,0,2,f +6509,2456,72,13,f +6509,2465,72,2,f +6509,2515,72,10,f +6509,2540,0,1,f +6509,2555,71,8,f +6509,2555,0,4,f +6509,2555,19,5,f +6509,2586pr0001,71,2,f +6509,2586pr15,71,2,f +6509,2654,57,2,f +6509,2730,71,2,f +6509,2877,71,7,f +6509,298c02,71,4,f +6509,30000,71,3,f +6509,3001,71,2,f +6509,3002,70,6,f +6509,3003,71,3,f +6509,3003,72,2,f +6509,30031,0,1,f +6509,3004,71,6,f +6509,30042,72,7,f +6509,30088,72,2,f +6509,30132,72,2,f +6509,30136,14,4,f +6509,30162,72,4,f +6509,3020,19,5,f +6509,3021,71,8,f +6509,3022,72,16,f +6509,3023,320,11,f +6509,3023,19,6,f +6509,30236,72,1,f +6509,3027,71,3,f +6509,3028,71,2,f +6509,30304,72,1,f +6509,3032,71,7,f +6509,3034,71,1,f +6509,3034,0,3,f +6509,3035,71,8,f +6509,30359b,71,2,f +6509,3036,71,1,f +6509,30360,71,1,f +6509,30367b,134,2,f +6509,30369,378,1,f +6509,30374,52,1,f +6509,30374,71,11,f +6509,30374,0,2,f +6509,30375,19,2,f +6509,30376,19,2,f +6509,30377,19,4,f +6509,30377,19,1,t +6509,30378,19,2,f +6509,3039,72,2,f +6509,3040b,72,2,f +6509,3048c,0,1,f +6509,30553,0,1,f +6509,30565,72,2,f +6509,30602pb030,71,1,f +6509,3062b,71,14,f +6509,3062b,0,1,f +6509,3068b,71,7,f +6509,3069b,288,9,f +6509,3069b,40,14,f +6509,32000,0,2,f +6509,32013,19,4,f +6509,32018,71,2,f +6509,32039,72,8,f +6509,32054,0,1,t +6509,32054,0,10,f +6509,32062,4,9,f +6509,32064b,19,5,f +6509,32123b,14,1,t +6509,32123b,14,4,f +6509,32124,0,2,f +6509,32140,71,4,f +6509,32184,0,2,f +6509,32192,72,4,f +6509,32278,148,4,f +6509,32291,15,4,f +6509,32316,0,4,f +6509,32523,70,2,f +6509,32524,71,4,f +6509,32524,72,3,f +6509,32525,72,4,f +6509,32556,71,10,f +6509,32557,71,4,f +6509,3298,72,4,f +6509,3298,70,1,f +6509,3298,15,1,f +6509,3460,320,8,f +6509,3460,71,3,f +6509,3460,19,2,f +6509,3622,0,4,f +6509,3623,72,4,f +6509,3626b,0,4,f +6509,3626bpr0488,70,1,f +6509,3660,72,2,f +6509,3666,0,9,f +6509,3673,71,36,f +6509,3673,71,1,t +6509,3679,71,2,f +6509,3680,0,2,f +6509,3700,70,8,f +6509,3700,15,2,f +6509,3701,72,4,f +6509,3701,15,2,f +6509,3708,0,1,f +6509,3709,72,7,f +6509,3710,70,3,f +6509,3738,71,1,f +6509,3747b,0,2,f +6509,3747b,72,11,f +6509,3794a,19,1,f +6509,3794a,0,4,f +6509,3795,72,4,f +6509,3839b,71,1,f +6509,3894,71,7,f +6509,3895,72,2,f +6509,3937,15,1,f +6509,3937,72,3,f +6509,3938,0,4,f +6509,3941,57,2,f +6509,3941,0,1,f +6509,3958,70,1,f +6509,3960,72,5,f +6509,3960,15,1,f +6509,4032a,0,1,f +6509,4070,71,2,f +6509,4079,70,2,f +6509,4085c,15,2,f +6509,40902,0,12,f +6509,4150,15,1,f +6509,41532,0,12,f +6509,4162,72,8,f +6509,41677,19,1,f +6509,41769,71,4,f +6509,41770,71,4,f +6509,41862,135,2,f +6509,42446,71,1,f +6509,43093,1,20,f +6509,4349,0,2,t +6509,4349,0,4,f +6509,4360,0,1,f +6509,43710,15,2,f +6509,43711,15,2,f +6509,44302a,72,2,f +6509,44567a,71,3,f +6509,44568,15,1,f +6509,44570,71,1,f +6509,4460b,71,6,f +6509,44675,71,1,f +6509,44676,0,2,f +6509,44728,71,4,f +6509,4510,72,1,f +6509,4519,71,8,f +6509,4589,46,4,f +6509,4589,71,5,f +6509,4589,182,1,f +6509,4589,41,6,f +6509,4623,0,2,f +6509,4697b,71,1,t +6509,4697b,71,2,f +6509,4732,72,1,f +6509,4733,0,1,f +6509,4735,0,2,f +6509,4740,72,5,f +6509,47456,320,1,f +6509,47457,320,1,f +6509,47458,320,1,f +6509,48169,71,3,f +6509,50231,70,1,f +6509,50304,71,5,f +6509,50305,71,5,f +6509,50995pr0001,15,2,f +6509,50995pr0005,15,1,f +6509,51739,320,3,f +6509,6019,72,16,f +6509,6091,71,2,f +6509,6112,71,2,f +6509,6141,57,2,f +6509,6141,14,1,t +6509,6141,33,2,f +6509,6141,57,1,t +6509,6141,41,2,f +6509,6141,14,4,f +6509,6141,135,1,t +6509,6141,33,1,t +6509,6141,41,1,t +6509,6179,19,1,f +6509,6190,72,6,f +6509,6232,15,2,f +6509,6259,15,2,f +6509,6536,0,9,f +6509,6541,71,2,f +6509,6558,0,7,f +6509,6587,72,1,f +6509,6628,71,3,f +6509,6636,72,1,f +6509,6636,0,10,f +6509,75535,14,2,f +6509,76138,71,2,f +6509,970c00pr0097,378,1,f +6509,970x026,15,3,f +6509,970x199,19,1,f +6509,973pb0120c01,72,1,f +6509,973pb0373c01,72,1,f +6509,973pr0579c01,15,2,f +6509,973pr1310c01,15,1,f +6510,2456,4,1,f +6510,2479,7,1,f +6510,3001,1,1,f +6510,3009,14,2,f +6510,3039,47,1,f +6510,3298p11,1,3,f +6510,3660,4,1,f +6510,3666,7,2,f +6510,3795,4,2,f +6510,3795,1,1,f +6510,4729,4,1,f +6511,10197,72,2,f +6511,11289,40,1,f +6511,15339,148,1,f +6511,15341,297,2,f +6511,15343,297,2,f +6511,15349,297,1,f +6511,15353,27,1,f +6511,15354,25,1,f +6511,15355,0,1,f +6511,15361,35,2,f +6511,2780,0,2,f +6511,30374,35,2,f +6511,30553,0,2,f +6511,32002,19,3,f +6511,32039,0,2,f +6511,32054,0,2,f +6511,32062,4,4,f +6511,3626c,27,1,f +6511,4006,0,1,f +6511,41532,0,2,f +6511,43093,1,2,f +6511,4522,0,1,f +6511,48729b,0,4,f +6511,54821,35,1,f +6511,60115,0,1,f +6511,90608,72,2,f +6511,90609,0,1,f +6511,90612,0,6,f +6511,90617,72,4,f +6511,90625,0,1,f +6511,90639,0,4,f +6511,90639pr0030,179,1,f +6511,90640,148,4,f +6511,90641,297,3,f +6511,90661,148,2,f +6511,92220,35,4,f +6511,93571,0,2,f +6511,95199,72,1,f +6511,98138pr0019,15,1,f +6511,98563,148,1,f +6511,98564,35,1,f +6511,98577,72,1,f +6511,98592,0,2,f +6511,99021,72,2,f +6511,99773,0,1,f +6513,3001,7,2,f +6513,3001,15,4,f +6513,3001,1,4,f +6513,3001,6,2,f +6513,3001,8,2,f +6513,3001,2,2,f +6513,3001,14,4,f +6513,3001,4,4,f +6513,3001,19,2,f +6513,3001,0,2,f +6513,3001p0a,14,1,f +6513,3002,7,2,f +6513,3002,0,2,f +6513,3002,14,4,f +6513,3002,1,4,f +6513,3002,4,4,f +6513,3002,15,2,f +6513,3002,2,2,f +6513,3003,1,16,f +6513,3003,0,12,f +6513,3003,6,8,f +6513,3003,2,16,f +6513,3003,15,16,f +6513,3003,7,12,f +6513,3003,14,20,f +6513,3003,19,12,f +6513,3003,8,10,f +6513,3003,4,20,f +6513,3004,4,50,f +6513,3004,19,30,f +6513,3004,7,30,f +6513,3004,15,36,f +6513,3004,8,28,f +6513,3004,0,38,f +6513,3004,14,52,f +6513,3004,1,36,f +6513,3004,6,28,f +6513,3004,2,40,f +6513,3005,1,50,f +6513,3005,4,43,f +6513,3005,0,48,f +6513,3005,19,28,f +6513,3005,7,46,f +6513,3005,15,50,f +6513,3005,2,36,f +6513,3005pe1,14,2,f +6513,3005pe2,8,1,f +6513,3005pe3,8,1,f +6513,3005px2,14,2,f +6513,3009,4,2,f +6513,3009,15,2,f +6513,3009,14,2,f +6513,3009,1,2,f +6513,3010,4,4,f +6513,3010,7,2,f +6513,3010,1,2,f +6513,3010,14,4,f +6513,3010,2,2,f +6513,3010,0,2,f +6513,3010,15,2,f +6513,3010,8,2,f +6513,3010,19,2,f +6513,3020,0,2,f +6513,3020,1,2,f +6513,3020,4,2,f +6513,3021,8,2,f +6513,3021,7,2,f +6513,3021,0,2,f +6513,3021,2,2,f +6513,3021,4,2,f +6513,3021,14,2,f +6513,3021,1,2,f +6513,3021,19,4,f +6513,3022,4,2,f +6513,3022,1,2,f +6513,3022,7,2,f +6513,3022,0,2,f +6513,3022,2,2,f +6513,3022,19,4,f +6513,3022,8,2,f +6513,3022,14,2,f +6513,3039,47,2,f +6513,3039,34,2,f +6513,3039,4,2,f +6513,3039,7,2,f +6513,3039,0,2,f +6513,3040b,7,2,f +6513,3040b,0,2,f +6513,3040b,4,2,f +6513,3062b,34,2,f +6513,3062b,36,2,f +6513,3065,143,8,f +6513,3298,14,2,f +6513,3622,15,4,f +6513,3622,7,2,f +6513,3622,14,4,f +6513,3622,8,2,f +6513,3622,4,4,f +6513,3622,2,2,f +6513,3660,4,2,f +6513,3660,0,2,f +6513,3665,4,2,f +6513,3665,7,2,f +6513,3665,0,2,f +6513,4286,14,2,f +6513,4287,14,2,f +6517,11126,2,1,f +6517,11127,41,6,f +6517,11767,72,1,f +6517,15074pr0002,27,1,f +6517,15464pr0001,70,1,f +6517,2419,28,3,f +6517,2780,0,2,f +6517,3020,27,1,f +6517,3022,72,2,f +6517,3040b,0,2,f +6517,3062b,41,1,f +6517,3626cpr1356,70,1,f +6517,3937,72,1,f +6517,3941,42,1,f +6517,3957a,0,1,f +6517,4349,0,1,f +6517,53451,27,7,f +6517,54200,27,2,f +6517,55236,27,1,f +6517,59900,42,5,f +6517,60481,0,3,f +6517,60583a,0,1,f +6517,6091,72,2,f +6517,6134,71,1,f +6517,6141,42,1,f +6517,76768,0,1,f +6517,88292,0,1,f +6517,90981,15,3,f +6517,92280,0,4,f +6517,970c00pr0589,70,1,f +6517,973pr2537c01,70,1,f +6517,98138,41,3,f +6517,98313,320,6,f +6521,2412b,1,1,f +6521,2431,1,1,f +6521,2540,15,1,f +6521,3004,1,1,f +6521,3020,0,1,f +6521,3021,15,1,f +6521,3022,15,1,f +6521,3795,15,1,f +6521,3795,1,1,f +6521,43722,15,1,f +6521,43723,15,1,f +6521,44728,1,2,f +6521,50948,0,1,f +6521,50950,15,2,f +6521,6014b,71,4,f +6521,60700,0,4,f +6521,6141,4,2,f +6521,6141,4,1,t +6521,6157,71,2,f +6522,10446,14,1,f +6522,11169,4,2,f +6522,11198,27,1,f +6522,2302,10,2,f +6522,2302,14,1,f +6522,2302,25,2,f +6522,2302,73,2,f +6522,2312c02,1,1,f +6522,3011,25,2,f +6522,3011,1,2,f +6522,3011,10,2,f +6522,3437,4,4,f +6522,3437,27,2,f +6522,3437,5,2,f +6522,3437,14,2,f +6522,3437,1,4,f +6522,3437,41,2,f +6522,3437,25,2,f +6522,3437,484,2,f +6522,3437,73,2,f +6522,3437,10,2,f +6522,3437pr0049,10,1,f +6522,3664pb13,4,1,f +6522,4066,10,2,f +6522,40666,4,1,f +6522,40666,10,1,f +6522,40666,14,2,f +6522,40666,25,1,f +6522,44524,1,1,f +6522,61649,73,1,f +6522,6497,15,1,f +6522,6510,5,1,f +6522,6510,4,1,f +6522,76371,14,2,f +6522,90265,15,1,f +6522,98223,27,2,f +6522,98224,4,2,f +6522,98252,27,2,f +6523,2977c01,1,1,f +6524,3673,7,20,f +6524,3700,4,4,f +6524,3701,4,4,f +6524,3702,4,4,f +6524,3703,4,2,f +6524,3709,4,2,f +6524,3738,4,2,f +6525,3002,4,1,f +6525,3003,15,1,f +6525,3004,0,1,f +6525,3020,14,2,f +6525,3022,1,1,f +6525,3022,14,1,f +6525,3023,4,1,f +6525,3024,14,2,f +6525,3040b,4,4,f +6525,3040b,1,2,f +6525,3298px11,14,1,f +6525,3623,14,2,f +6525,3660,1,1,f +6525,3665,1,2,f +6525,3710,14,2,f +6525,3710,0,1,f +6525,4287,14,2,f +6525,6141,15,2,f +6526,11211,19,4,f +6526,11211,15,1,f +6526,11290,15,2,f +6526,11408pr0030c01,78,1,f +6526,11477,19,3,f +6526,11618,26,1,f +6526,11816pr0002,78,1,f +6526,11816pr0006,78,1,f +6526,14014pr0002,78,1,f +6526,14716,15,2,f +6526,14719,15,3,f +6526,14769,4,4,f +6526,14769,29,1,f +6526,14769,27,1,f +6526,14769,15,1,f +6526,15207,4,1,f +6526,15210,15,1,f +6526,15210,0,1,f +6526,15470,70,1,f +6526,15571,191,5,f +6526,15712,0,1,f +6526,16577,15,1,f +6526,16985pr0001c,0,1,f +6526,18674,15,1,f +6526,18853,191,1,f +6526,18854,52,1,f +6526,22667,4,1,f +6526,2343,47,1,f +6526,2357,15,8,f +6526,2412b,71,4,f +6526,2431,71,5,f +6526,2431,15,3,f +6526,2432,72,1,f +6526,2432,15,1,f +6526,2453b,15,2,f +6526,2454a,15,8,f +6526,2456,19,1,f +6526,2571,322,2,f +6526,2654,19,4,f +6526,2780,0,24,f +6526,2877,71,2,f +6526,3001,15,3,f +6526,3001,0,1,f +6526,3001,19,4,f +6526,3003,29,2,f +6526,3003,19,3,f +6526,3004,19,7,f +6526,3004,191,1,f +6526,3004,0,1,f +6526,3004,15,13,f +6526,3004,27,1,f +6526,3004,71,8,f +6526,3004,5,1,f +6526,3005,191,1,f +6526,3005,71,2,f +6526,3005,15,7,f +6526,3005pr0006,73,1,f +6526,3009,71,2,f +6526,3009,15,4,f +6526,3010,15,4,f +6526,3020,30,4,f +6526,3020,15,1,f +6526,3020,27,3,f +6526,3020,71,1,f +6526,3020,19,3,f +6526,3021,15,8,f +6526,3022,191,4,f +6526,3022,4,2,f +6526,3022,27,1,f +6526,3022,15,9,f +6526,3023,1,1,f +6526,3023,46,4,f +6526,3023,27,4,f +6526,3023,47,1,f +6526,3023,15,5,f +6526,3023,19,6,f +6526,3024,19,6,f +6526,3024,46,1,f +6526,3024,15,6,f +6526,3024,47,1,f +6526,3031,71,2,f +6526,3032,71,1,f +6526,3033,71,3,f +6526,3034,15,4,f +6526,3035,71,1,f +6526,3035,15,4,f +6526,30374,71,1,f +6526,30377,0,2,f +6526,3039,15,2,f +6526,3040b,19,4,f +6526,3040bpr0003,71,1,f +6526,30565,15,2,f +6526,3062b,4,1,f +6526,3062b,15,1,f +6526,30663,71,1,f +6526,3068b,15,2,f +6526,3068b,322,1,f +6526,3068b,19,6,f +6526,3068b,29,3,f +6526,3069b,322,1,f +6526,3069b,19,1,f +6526,3069b,15,3,f +6526,3069b,0,1,f +6526,3069b,5,1,f +6526,3069b,27,2,f +6526,3069b,71,5,f +6526,3069bpr0030,15,1,f +6526,3069bpr0100,2,1,f +6526,3069bpr0144,15,1,f +6526,3069bpr0145a,191,1,f +6526,3070b,0,1,f +6526,3070b,19,1,f +6526,3070b,322,2,f +6526,3070b,15,6,f +6526,32059,71,1,f +6526,3245b,15,1,f +6526,3298,72,4,f +6526,33085,14,1,f +6526,33125,484,1,f +6526,33291,26,7,f +6526,33291,191,5,f +6526,33291,4,11,f +6526,33291,10,2,f +6526,3622,19,2,f +6526,3623,0,1,f +6526,3623,27,1,f +6526,3633,31,6,f +6526,3659,15,1,f +6526,3666,15,6,f +6526,3666,30,2,f +6526,3666,27,2,f +6526,3666,19,3,f +6526,3666,191,8,f +6526,3666,71,2,f +6526,3673,71,2,f +6526,3678b,15,2,f +6526,3679,71,1,f +6526,3680,1,1,f +6526,3700,15,6,f +6526,3700,71,4,f +6526,3709,0,1,f +6526,3710,191,2,f +6526,3710,15,8,f +6526,3710,27,2,f +6526,3710,1,1,f +6526,3710,4,6,f +6526,3710,30,5,f +6526,3741,2,2,f +6526,3794b,15,5,f +6526,3795,15,2,f +6526,3795,71,1,f +6526,3899,45,3,f +6526,3938,0,2,f +6526,4032a,71,3,f +6526,4032a,14,2,f +6526,4032a,72,6,f +6526,41539,71,1,f +6526,4162,15,4,f +6526,4274,1,4,f +6526,4285b,191,1,f +6526,43121,15,2,f +6526,4345b,71,1,f +6526,4346,47,1,f +6526,43722,191,1,f +6526,43723,191,1,f +6526,4449,0,1,f +6526,4449,70,1,f +6526,4449,71,1,f +6526,4533,41,1,f +6526,4599b,71,1,f +6526,46212,41,2,f +6526,4624,71,14,f +6526,46667,72,2,f +6526,48092,15,3,f +6526,48336,71,7,f +6526,4865a,47,9,f +6526,4865b,41,1,f +6526,4870,71,4,f +6526,48729b,0,2,f +6526,50950,191,2,f +6526,51739,15,1,f +6526,54090,30,1,f +6526,54091,30,4,f +6526,54092c02,15,1,f +6526,54094,30,1,f +6526,54095,15,2,f +6526,54096,15,1,f +6526,54097,15,1,f +6526,54200,19,3,f +6526,54701c01,30,1,f +6526,58381,15,1,f +6526,59349,41,2,f +6526,59895,0,14,f +6526,59900,34,1,f +6526,59900,33,2,f +6526,60475b,15,1,f +6526,60478,71,2,f +6526,60478,0,1,f +6526,60483,71,2,f +6526,60601,41,24,f +6526,60897,15,1,f +6526,6091,19,3,f +6526,6106,15,2,f +6526,61345,15,12,f +6526,6141,72,8,f +6526,6141,29,1,f +6526,6141,15,3,f +6526,6141,47,1,f +6526,61483,71,1,f +6526,61487,15,2,f +6526,6157,0,2,f +6526,6190,4,1,f +6526,6231,29,2,f +6526,62810,70,1,f +6526,63864,72,1,f +6526,63868,15,2,f +6526,64644,71,1,f +6526,6541,19,4,f +6526,6636,85,6,f +6526,6636,19,1,f +6526,85984,30,3,f +6526,85984,191,4,f +6526,87079,15,1,f +6526,87083,72,1,f +6526,87544,15,2,f +6526,87552,47,2,f +6526,87580,15,1,f +6526,88292,15,1,f +6526,90509,322,2,f +6526,90540,322,2,f +6526,92255,226,1,f +6526,92259,0,1,f +6526,92280,71,6,f +6526,92410,27,1,f +6526,92438,212,2,f +6526,92456pr0036c01,78,1,f +6526,92456pr0081c01,78,1,f +6526,92818pr0002c01,26,1,f +6526,92820pr0007c01,379,1,f +6526,93095,29,2,f +6526,93541,30,1,f +6526,96874,25,1,f +6526,98138,182,1,f +6526,98138,71,1,f +6526,98138,46,3,f +6526,98138,33,1,f +6526,98138,45,2,f +6526,98138,34,2,f +6526,98138,15,1,f +6526,98138,36,2,f +6526,98138pr0018,84,2,f +6529,11267,308,1,f +6529,12825,72,2,f +6529,13562,148,1,f +6529,13562,179,1,t +6529,13562,148,1,t +6529,13562,179,2,f +6529,13564,15,1,t +6529,13564,15,2,f +6529,13565,15,1,f +6529,13571pr01,308,1,f +6529,13664pr0001,308,1,f +6529,13665,0,1,f +6529,13695,15,1,f +6529,13748pr0001,0,1,f +6529,13753pr0001,72,1,f +6529,14309,47,1,f +6529,2335,0,2,f +6529,2357,71,13,f +6529,2357,70,2,f +6529,2431,308,3,f +6529,2431,47,8,f +6529,2449,71,9,f +6529,2456,70,1,f +6529,2456,19,1,f +6529,2489,308,2,f +6529,2540,0,2,f +6529,2584,0,1,f +6529,2585,71,1,f +6529,2780,0,1,t +6529,2780,0,3,f +6529,3004,28,19,f +6529,3005,72,8,f +6529,3005,47,4,f +6529,3008,28,5,f +6529,3010,71,1,f +6529,30133,4,1,f +6529,30136,484,2,f +6529,30136,70,10,f +6529,30137,70,8,f +6529,30141,72,1,f +6529,30145,28,2,f +6529,3020,484,2,f +6529,3020,19,3,f +6529,3020,70,2,f +6529,3020,73,4,f +6529,3022,19,4,f +6529,3023,72,14,f +6529,3023,47,1,f +6529,30237a,0,2,f +6529,3024,72,6,f +6529,3024,72,3,t +6529,30293,28,1,f +6529,30294,28,1,f +6529,3030,71,2,f +6529,3030,70,2,f +6529,3033,19,6,f +6529,3034,70,1,f +6529,3034,19,2,f +6529,30361b,0,1,f +6529,30363,70,1,f +6529,3037,70,1,f +6529,30385,80,5,f +6529,3039,71,14,f +6529,30395,72,1,f +6529,3040b,19,48,f +6529,3046a,72,1,f +6529,30504,19,2,f +6529,30553,72,2,f +6529,3062b,70,7,f +6529,3068b,72,2,f +6529,3069b,19,1,f +6529,3069b,70,8,f +6529,32000,0,1,f +6529,32001,71,1,f +6529,32002,72,1,t +6529,32002,72,1,f +6529,32013,72,1,f +6529,32123b,14,2,f +6529,32123b,14,1,t +6529,3228c,72,4,f +6529,3307,19,2,f +6529,33299a,71,1,f +6529,3622,72,2,f +6529,3622,70,2,f +6529,3623,71,6,f +6529,3626cpr1193,78,1,f +6529,3626cpr1197,78,1,f +6529,3626cpr1198,84,1,f +6529,3626cpr1259,78,1,f +6529,3626cpr1261,84,1,f +6529,3660,19,8,f +6529,3665,71,17,f +6529,3666,71,1,f +6529,3678b,28,3,f +6529,3679,71,1,f +6529,3680,0,1,f +6529,3700,70,2,f +6529,3700,0,2,f +6529,3706,0,1,f +6529,3707,0,1,f +6529,3710,19,8,f +6529,3741,2,2,f +6529,3741,2,2,t +6529,3794a,0,2,f +6529,3794a,19,1,f +6529,3795,71,1,f +6529,3837,72,1,f +6529,3841,72,1,f +6529,3894,72,2,f +6529,3899,14,1,f +6529,3937,72,1,f +6529,4032a,70,2,f +6529,4070,19,5,f +6529,4207,70,1,f +6529,4238,70,1,f +6529,42610,71,1,f +6529,4274,1,1,t +6529,4274,1,1,f +6529,4286,28,13,f +6529,4287,72,5,f +6529,43093,1,3,f +6529,43857,71,1,f +6529,43888,70,6,f +6529,44567a,71,1,f +6529,4460b,19,22,f +6529,4477,19,4,f +6529,4477,70,5,f +6529,4498,70,1,f +6529,4499,70,1,f +6529,4515,72,1,f +6529,4528,0,2,f +6529,4599b,0,3,t +6529,4599b,0,4,f +6529,4600,0,2,f +6529,4623,0,1,f +6529,4623,15,2,f +6529,47457,15,2,f +6529,47847,28,1,f +6529,48723,70,2,f +6529,50254,0,4,f +6529,50949,0,2,f +6529,53401,72,2,f +6529,54200,47,2,t +6529,54200,71,35,f +6529,54200,47,12,f +6529,54200,19,21,f +6529,54200,71,5,t +6529,54200,19,4,t +6529,56823c50,0,1,f +6529,59426,72,1,f +6529,59443,72,3,f +6529,60475b,0,8,f +6529,60475b,84,1,f +6529,60481,71,2,f +6529,60483,0,1,f +6529,60594,0,1,f +6529,60596,0,2,f +6529,60608,15,2,f +6529,60800a,72,2,f +6529,6082,28,2,f +6529,60897,72,1,f +6529,6111,19,1,f +6529,61184,71,1,f +6529,61252,0,1,f +6529,6134,0,1,f +6529,6141,0,9,f +6529,6141,0,5,t +6529,6141,80,3,t +6529,6141,80,13,f +6529,61485,0,1,f +6529,61506,70,1,f +6529,62462,0,3,f +6529,63864,72,1,f +6529,64448,70,2,f +6529,64728,4,3,f +6529,64951,70,1,f +6529,6575,0,1,f +6529,6587,28,2,f +6529,74698,0,2,f +6529,76768,28,4,f +6529,85984,28,10,f +6529,87079,71,2,f +6529,87081,0,1,f +6529,87083,72,2,f +6529,87580,19,4,f +6529,88289,308,1,f +6529,88292,84,3,f +6529,92099,72,1,f +6529,92107,72,1,f +6529,95228,34,1,f +6529,96874,25,1,t +6529,970c00,19,1,f +6529,970c00pr0506,0,1,f +6529,970c00pr0548,0,1,f +6529,970c00pr0550,308,1,f +6529,970c00pr0551,28,1,f +6529,973pr2346c01,0,1,f +6529,973pr2347c01,19,1,f +6529,973pr2437c01,72,1,f +6529,973pr2442c01,0,1,f +6529,973pr2456c01,84,1,f +6529,98138,71,2,t +6529,98138,71,3,f +6529,99207,71,2,f +6529,99563,80,2,f +6529,99780,72,2,f +6531,32073,7,1,f +6531,32174,135,6,f +6531,32556,7,1,f +6531,3706,0,2,f +6531,41665,1,2,f +6531,41666,7,2,f +6531,41667,7,1,f +6531,41668,135,2,f +6531,41669,57,2,f +6531,41670,1,4,f +6531,41671pb08,135,1,f +6531,41672,0,2,f +6531,41752,8,1,f +6531,42042,7,1,f +6531,42042und,137,1,f +6531,42074,15,2,f +6531,4519,7,5,f +6531,45274,179,2,f +6531,6628,0,2,f +6531,85544,10,1,f +6531,gahlokkalcd,9999,1,f +6535,30374,19,1,f +6535,30385,143,1,f +6535,33291,5,1,t +6535,33291,5,1,f +6535,43898,15,1,f +6535,4740,15,1,f +6535,59900,15,1,t +6535,59900,15,1,f +6536,2412b,42,3,f +6536,2420,72,4,f +6536,2780,0,4,f +6536,2817,4,1,f +6536,30176,2,2,f +6536,3022,27,2,f +6536,3023,28,8,f +6536,3030,72,1,f +6536,3040b,28,2,f +6536,3622,72,2,f +6536,3623,19,2,f +6536,3626cpr0865,272,1,f +6536,3660,72,2,f +6536,3678b,28,2,f +6536,3702,71,1,f +6536,3794b,72,2,f +6536,3795,28,2,f +6536,3795,72,1,f +6536,3832,72,1,f +6536,3941,42,2,f +6536,41239,72,2,f +6536,4460b,28,4,f +6536,47753pr0003,28,1,f +6536,48336,4,1,f +6536,51739,320,1,f +6536,54200,297,4,f +6536,59900,297,2,f +6536,59900,42,4,f +6536,6010859,9999,1,f +6536,60470a,0,1,f +6536,60474,72,1,f +6536,61252,297,2,f +6536,6141,85,4,f +6536,6141,42,1,f +6536,6232,72,2,f +6536,6541,19,2,f +6536,970c00pr0263,71,1,f +6536,973pr1881c01,71,1,f +6536,98134,297,1,f +6536,98136,52,2,f +6536,98138pr0002,33,1,f +6536,98153pr0001,71,1,f +6536,98283,28,2,f +6536,98342pr0001,27,1,f +6538,3011,14,2,f +6538,40666,14,2,f +6538,61898,27,1,f +6538,6394,14,2,f +6539,18789,179,1,f +6539,19727pr0005,0,1,f +6539,19729pr0001,308,1,f +6539,19729pr0003,2,1,f +6539,2456,70,2,f +6539,2456,71,6,f +6539,3001,70,2,f +6539,3001,71,13,f +6539,3003,70,6,f +6539,3003,0,3,f +6539,3003,25,4,f +6539,3003,71,43,f +6539,3004,25,2,f +6539,3004,71,1,f +6539,3004pr0036,15,2,f +6539,3005,25,2,f +6539,3005,182,2,f +6539,3006,71,2,f +6539,3007,71,3,f +6539,3020,0,1,f +6539,3021,0,1,f +6539,3022,71,6,f +6539,3022,72,6,f +6539,3022,4,1,f +6539,3023,0,4,f +6539,30236,71,1,f +6539,3024,182,2,f +6539,3024,71,24,f +6539,3024,46,2,f +6539,3036,72,1,f +6539,3039,25,4,f +6539,3068b,71,4,f +6539,3068b,0,1,f +6539,3069b,0,1,f +6539,3958,1,1,f +6539,3958,25,1,f +6539,3958,72,1,f +6539,4032a,0,1,f +6539,41539,72,2,f +6539,4342,19,1,f +6539,4697b,0,2,f +6539,4738a,84,1,f +6539,4739a,84,1,f +6539,6020,70,1,f +6539,6141,0,8,f +6539,6141,297,8,f +6539,6141,36,4,f +6539,6141,33,1,f +6539,6141,25,1,f +6539,6141,19,4,f +6539,63868,0,4,f +6539,64644,308,2,f +6539,73983,0,4,f +6539,87087,0,2,f +6539,87580,10,9,f +6539,87580,71,10,f +6539,87580,72,17,f +6539,87580,4,1,f +6539,95343,71,1,f +6539,95344,28,1,f +6539,970c00,85,2,f +6539,973pr2819c01,321,1,f +6539,973pr2820c01,321,1,f +6540,11169,4,2,f +6540,11198,4,1,f +6540,11198,322,1,f +6540,12592,0,1,f +6540,12659,4,1,f +6540,13869,4,1,f +6540,16195,4,1,f +6540,2301,1,2,f +6540,2302,4,2,f +6540,2302,1,2,f +6540,2302,5,2,f +6540,2302,27,2,f +6540,3011,4,2,f +6540,3011,191,2,f +6540,3437,73,2,f +6540,3437,14,2,f +6540,3437,322,2,f +6540,3437,1,2,f +6540,3437,4,2,f +6540,3437,25,2,f +6540,3437,29,2,f +6540,3437,5,2,f +6540,3437,15,2,f +6540,3437,191,2,f +6540,3437,27,2,f +6540,3437,484,2,f +6540,3437,10,2,f +6540,4066,29,2,f +6540,40666,10,2,f +6540,40666,73,2,f +6540,40666,14,2,f +6540,61649,73,1,f +6540,6510,14,1,f +6540,6510,25,1,f +6540,6510,10,2,f +6540,6510,4,1,f +6540,6510,73,1,f +6540,74730,1,1,f +6540,76371,73,2,f +6540,76371,322,2,f +6540,76371,14,2,f +6540,90265,15,1,f +6540,98223,4,1,f +6540,98223,27,1,f +6540,98223,25,1,f +6540,98225,484,1,f +6541,2423,2,2,f +6541,3003,2,1,f +6541,3004,14,1,f +6541,3004,2,3,f +6541,3005,14,1,f +6541,3020,2,1,f +6541,3022,2,1,f +6541,3023,0,1,f +6541,3033,1,1,f +6541,3039,2,6,f +6541,3040b,2,3,f +6541,3660,14,1,f +6541,3665,14,1,f +6541,3747b,14,1,f +6541,3794b,2,1,f +6541,3795,2,1,f +6541,4032a,14,1,f +6541,4032a,15,1,f +6541,4070,2,6,f +6541,4150,0,1,f +6541,4150,15,1,f +6541,54200,4,6,f +6541,6141,15,2,f +6541,6215,2,1,f +6542,3001,0,1,f +6542,3004,0,2,f +6542,3010,0,1,f +6542,30133,4,1,f +6542,3028,8,1,f +6542,3036,8,1,f +6542,30363,0,2,f +6542,30364,0,2,f +6542,30365,0,2,f +6542,3623,0,2,f +6542,3624,320,1,f +6542,3624,1,1,f +6542,3626bp07,14,1,f +6542,3626bpr0001,14,2,f +6542,3626bpr0126,14,1,f +6542,3626bpr0270,14,1,f +6542,3795,8,2,f +6542,3795,0,2,f +6542,3900,15,1,f +6542,3901,6,1,f +6542,41879a,0,1,f +6542,4287,0,2,f +6542,4449,4,1,f +6542,4449,7,1,f +6542,4485,2,1,f +6542,6093,0,1,f +6542,6112,0,2,f +6542,6141,34,1,f +6542,6141,34,1,t +6542,970c00,1,1,f +6542,970c00,4,1,f +6542,970c00,272,1,f +6542,970c00,7,1,f +6542,973p22c01,0,1,f +6542,973p72c01,15,1,f +6542,973pb0008c01,272,1,f +6542,973pb0009c01,15,1,f +6542,973pb0017c01,15,1,f +6543,11153,2,6,f +6543,11291,2,2,f +6543,11293,15,1,f +6543,11295,72,1,f +6543,11297,41,1,f +6543,11303,4,2,f +6543,11399,15,1,f +6543,12825,0,5,f +6543,14045,0,2,f +6543,2340,15,2,f +6543,2412b,71,4,f +6543,2431,72,1,f +6543,2432,4,2,f +6543,2465,72,2,f +6543,2540,72,4,f +6543,2584,0,1,f +6543,2585,71,1,f +6543,3002,4,1,f +6543,3002,14,1,f +6543,30031,0,1,f +6543,3004,14,2,f +6543,3004,4,1,f +6543,3005,2,4,f +6543,3006,15,1,f +6543,3009,2,6,f +6543,3009,72,2,f +6543,3010,2,2,f +6543,30150,70,1,f +6543,30194,72,1,f +6543,3020,71,5,f +6543,3020,72,2,f +6543,3021,15,5,f +6543,3021,72,2,f +6543,3022,2,1,f +6543,3022,71,4,f +6543,3023,4,10,f +6543,3023,15,2,f +6543,3024,2,1,t +6543,3024,2,2,f +6543,3029,71,3,f +6543,3031,2,2,f +6543,3034,72,2,f +6543,3036,2,3,f +6543,3037,15,4,f +6543,30383,0,6,f +6543,3039,15,4,f +6543,30395,72,1,f +6543,3039pr0013,15,1,f +6543,30407,0,6,f +6543,3040b,15,4,f +6543,3069b,2,3,f +6543,3069b,71,2,f +6543,3070b,36,2,f +6543,3070b,36,1,t +6543,32028,0,2,f +6543,32083,15,1,f +6543,32125,71,2,f +6543,32270,0,1,f +6543,3460,72,4,f +6543,3623,2,2,f +6543,3624,0,1,f +6543,3626cpr0889,14,1,f +6543,3626cpr0914,14,1,f +6543,3626cpr0929,14,1,f +6543,3660,72,6,f +6543,3665,72,4,f +6543,3666,2,6,f +6543,3700,15,4,f +6543,3710,2,1,f +6543,3710,71,3,f +6543,3710,15,2,f +6543,3710,72,1,f +6543,3713,4,1,t +6543,3713,4,1,f +6543,3738,0,2,f +6543,3747b,71,5,f +6543,3794b,71,5,f +6543,3795,15,7,f +6543,3795,72,5,f +6543,3835,0,1,f +6543,3839b,71,2,f +6543,3899,4,1,f +6543,3941,70,40,f +6543,3958,15,1,f +6543,4150,71,2,f +6543,4162,72,2,f +6543,42023,72,2,f +6543,4287,71,4,f +6543,4287,2,4,f +6543,43720,15,1,f +6543,43721,15,1,f +6543,43722,15,1,f +6543,43722,2,2,f +6543,43723,15,1,f +6543,43723,2,2,f +6543,44301a,71,4,f +6543,44302a,15,4,f +6543,44674,4,2,f +6543,4624,71,6,f +6543,4733,71,1,f +6543,47397,71,1,f +6543,47398,71,1,f +6543,4855,72,2,f +6543,4870,71,2,f +6543,48933,15,2,f +6543,52501,72,2,f +6543,54200,46,2,f +6543,54200,46,1,t +6543,55013,72,1,f +6543,56823c50,0,1,f +6543,59895,0,6,f +6543,59900,4,1,f +6543,59900,0,2,f +6543,60021stk01,9999,1,t +6543,60032,15,2,f +6543,6014b,71,4,f +6543,60208,71,2,f +6543,60479,15,2,f +6543,60479,71,2,f +6543,60581,15,1,f +6543,60601,41,2,f +6543,6081,72,4,f +6543,60849,71,1,f +6543,60849,71,1,t +6543,61072,0,4,f +6543,6117,72,1,f +6543,61409,72,4,f +6543,6141,46,1,f +6543,6141,34,1,t +6543,6141,4,1,t +6543,6141,4,2,f +6543,6141,71,1,t +6543,6141,71,4,f +6543,6141,34,2,f +6543,6141,36,1,t +6543,6141,46,1,t +6543,6141,36,2,f +6543,61483,71,1,f +6543,6157,0,2,f +6543,6192,71,2,f +6543,63864,4,2,f +6543,87079,2,2,f +6543,87083,72,2,f +6543,87617,4,4,f +6543,87697,0,4,f +6543,88072,0,1,f +6543,90194,15,2,f +6543,92099,72,1,f +6543,92220,4,2,f +6543,92338,72,1,f +6543,92586pr0001,84,1,f +6543,970c00,28,1,f +6543,970c00,308,1,f +6543,970c00,0,1,f +6543,973pr0250c01,320,2,f +6543,973pr2372c01,15,1,f +6543,98287,71,1,f +6543,99206,71,2,f +6545,2450,4,2,f +6545,2496,0,1,f +6545,2655,14,1,f +6545,3001,1,1,f +6545,3021,1,1,f +6545,3022,4,1,f +6545,3039,1,1,f +6545,3039,47,1,f +6546,3626bpr0433,14,1,f +6546,3841,72,1,f +6546,41879a,70,1,f +6546,60747,82,1,f +6546,60749,308,1,f +6546,973pr1321c01,72,1,f +6547,11211,19,2,f +6547,11217pr0007a,15,1,f +6547,11458,72,2,f +6547,2412b,71,3,f +6547,2456,0,1,f +6547,2730,0,2,f +6547,298c02,71,1,f +6547,298c02,71,1,t +6547,3003,71,1,f +6547,3004,71,1,f +6547,30162,72,2,f +6547,3020,0,2,f +6547,3022,72,5,f +6547,3023,40,1,f +6547,3023,320,3,f +6547,3023,72,2,f +6547,3069b,320,2,f +6547,3626cpr1149,78,1,f +6547,3673,71,2,f +6547,3673,71,1,t +6547,3749,19,10,f +6547,3794b,71,1,f +6547,3839b,0,1,f +6547,3941,72,10,f +6547,4032a,71,10,f +6547,4070,72,2,f +6547,43722,71,1,f +6547,43723,71,1,f +6547,51739,71,2,f +6547,54200,40,4,f +6547,54200,40,1,t +6547,58247,0,1,f +6547,59900,33,2,f +6547,61184,71,2,f +6547,6141,72,1,t +6547,6141,72,1,f +6547,85984,71,4,f +6547,87580,71,1,f +6547,970c00pr0631,15,1,f +6547,973pr2223c01,15,1,f +6547,99207,71,5,f +6547,99780,71,2,f +6550,3002,0,1,f +6550,3004,0,1,f +6550,3004,1,2,f +6550,3020,0,1,f +6550,3022,0,3,f +6550,3023,1,1,f +6550,3023,0,1,f +6550,3024,36,2,f +6550,3024,46,2,f +6550,3024,0,2,f +6550,3031,1,1,f +6550,3626apr0001,14,1,f +6550,3710,1,2,f +6550,3710,0,5,f +6550,3788,0,1,f +6550,3821,1,1,f +6550,3822,1,1,f +6550,3823,47,1,f +6550,3829c01,1,1,f +6550,3832,0,1,f +6550,3837,8,1,f +6550,3901,6,1,f +6550,3962a,0,1,f +6550,4070,1,2,f +6550,4084,0,5,f +6550,4085b,1,2,f +6550,4175,0,1,f +6550,4211,0,1,f +6550,4213,1,1,f +6550,4214,1,1,f +6550,4215ap10,1,2,f +6550,4488,0,1,f +6550,4600,7,2,f +6550,4624,7,5,f +6550,970c00,1,1,f +6550,973p26c01,1,1,f +6553,3899,14,1,f +6553,4094a,4,1,f +6553,4429,4,1,f +6553,63965,4,1,f +6553,749,0,1,f +6553,fab12f,9999,1,f +6553,u9206c01,14,1,f +6554,10201,15,1,f +6554,11303,4,1,f +6554,14045,0,1,f +6554,14718,71,4,f +6554,2335,15,1,f +6554,2540,71,1,f +6554,3002,4,2,f +6554,3004,0,4,f +6554,3004,15,7,f +6554,3009,0,2,f +6554,3020,71,2,f +6554,30237a,4,2,f +6554,30374,15,1,f +6554,30414,4,1,f +6554,30565,72,2,f +6554,3068b,0,2,f +6554,3069b,14,4,f +6554,3069b,4,4,f +6554,3626bpr0891,14,1,f +6554,3633,0,4,f +6554,3666,4,1,f +6554,3832,4,1,f +6554,3832,72,2,f +6554,4360,0,1,f +6554,4476b,15,2,f +6554,59900,71,1,f +6554,6141,36,3,f +6554,6141,34,1,f +6554,6215,15,2,f +6554,970c00,4,1,f +6554,973c02,4,1,f +6557,3001a,0,7,f +6557,3005,47,2,f +6557,3005,0,8,f +6557,3008,0,2,f +6557,3009,0,6,f +6557,3010,0,1,f +6557,3020,0,10,f +6557,3020,4,3,f +6557,3021,4,2,f +6557,3021,0,5,f +6557,3022,0,4,f +6557,3022,14,1,f +6557,3023,4,4,f +6557,3023,0,10,f +6557,3024,4,2,f +6557,3024,0,2,f +6557,3027,7,1,f +6557,3037,0,6,f +6557,3038,0,2,f +6557,3039,0,4,f +6557,3040a,0,2,f +6557,3045,0,2,f +6557,3062a,0,1,f +6557,3065,47,2,f +6557,3087bc01,4,2,f +6557,7049b,15,2,f +6557,737,4,1,f +6557,737c01,4,1,f +6557,wheel1a,4,4,f +6558,2496,0,1,f +6558,2655,7,1,f +6558,3004,4,1,f +6558,3020,14,1,f +6558,3022,0,1,f +6558,3039,47,1,f +6558,3039,4,1,f +6558,3710,0,1,f +6558,4859,1,1,f +6560,2444,71,1,f +6560,2445,70,2,f +6560,2456,70,1,f +6560,2577,0,8,f +6560,2780,0,2,f +6560,2780,0,1,t +6560,3006,70,1,f +6560,3007,0,2,f +6560,3009,71,1,f +6560,3022,70,4,f +6560,30293pat0002,72,1,f +6560,30294,0,1,f +6560,30294pat0001,72,1,f +6560,3034,0,3,f +6560,3037,71,1,f +6560,3039,71,2,f +6560,3040b,71,12,f +6560,3062b,57,3,f +6560,3069b,71,1,f +6560,3069b,71,1,t +6560,32001,71,4,f +6560,32013,0,2,f +6560,32333,0,2,f +6560,3660,72,2,f +6560,3673,71,4,f +6560,3673,71,1,t +6560,3703,0,2,f +6560,3708,0,2,f +6560,3749,19,2,f +6560,3749,19,1,t +6560,4032a,71,4,f +6560,43093,1,1,t +6560,43093,1,2,f +6560,47430,151,2,f +6560,47431,151,2,f +6560,47432,72,2,f +6560,47452,72,2,f +6560,47454,151,2,f +6560,47455,379,10,f +6560,47456,297,6,f +6560,47457,297,8,f +6560,47501,0,2,f +6560,50616,297,1,f +6560,50655pb01,142,1,f +6560,50658c01pb02,142,1,f +6560,53415,272,1,f +6560,54171,179,1,f +6560,54178,135,2,f +6560,54937,135,3,f +6560,55010,76,2,f +6560,6108,0,2,f +6560,6182,71,1,f +6560,6222,0,2,f +6560,6249,71,1,f +6560,6538b,72,2,f +6560,bb153pr0017,272,1,f +6561,2420,7,1,f +6561,2432,15,1,f +6561,2446,15,1,f +6561,2555,15,2,f +6561,298c02,4,2,f +6561,3020,7,1,f +6561,3024,46,1,f +6561,3069bp52,15,1,f +6561,3626bp06,14,1,f +6561,3641,0,4,f +6561,3794a,15,1,f +6561,3795,15,1,f +6561,3829c01,1,1,f +6561,3838,15,1,f +6561,3959,7,1,f +6561,4081b,7,1,f +6561,4085c,7,1,f +6561,4095,15,1,f +6561,4624,15,4,f +6561,4740,33,1,f +6561,4865a,1,1,f +6561,6157,0,2,f +6561,769,334,1,f +6561,970c00,15,1,f +6561,973px113c01,15,1,f +6562,14210,2,3,f +6562,2340,15,2,f +6562,2413,15,2,f +6562,2419,72,2,f +6562,2432,0,4,f +6562,2445,15,2,f +6562,2456,14,8,f +6562,2456,1,6,f +6562,2456,4,2,f +6562,2458,72,2,f +6562,2460,4,1,f +6562,2479,0,1,f +6562,2508,0,1,f +6562,30000,72,4,f +6562,3001,72,2,f +6562,3001,1,28,f +6562,3001,3,2,f +6562,3001,4,34,f +6562,3001,0,16,f +6562,3001,6,12,f +6562,3001,2,18,f +6562,3001,71,1,f +6562,3001,15,25,f +6562,3001,14,26,f +6562,3001pr1,14,3,f +6562,3002,4,27,f +6562,3002,0,12,f +6562,3002,15,22,f +6562,3002,2,12,f +6562,3002,71,2,f +6562,3002,1,20,f +6562,3002,14,22,f +6562,3003,72,2,f +6562,3003,1,34,f +6562,3003,14,42,f +6562,3003,71,4,f +6562,3003,4,53,f +6562,3003,0,30,f +6562,3003,6,18,f +6562,3003,36,6,f +6562,3003,3,2,f +6562,3003,34,6,f +6562,3003,2,24,f +6562,3003,15,34,f +6562,3004,4,34,f +6562,3004,1,22,f +6562,3004,14,30,f +6562,3004,72,4,f +6562,3004,15,30,f +6562,3004,3,4,f +6562,3004,0,18,f +6562,3005pe1,14,6,f +6562,3005pe1,15,6,f +6562,3007,14,6,f +6562,3007,1,8,f +6562,30076,0,2,f +6562,3008,15,4,f +6562,3008,1,8,f +6562,3008,4,4,f +6562,3008,71,2,f +6562,3008,14,10,f +6562,3009,71,2,f +6562,3009,15,10,f +6562,3009,1,14,f +6562,3009,4,12,f +6562,3009,0,8,f +6562,3009,2,6,f +6562,3009,14,16,f +6562,3010,2,12,f +6562,3010,72,2,f +6562,3010,0,14,f +6562,3010,71,2,f +6562,3010,15,22,f +6562,3010,14,21,f +6562,3010,4,28,f +6562,3010,1,16,f +6562,3010p72,4,1,f +6562,3020,15,2,f +6562,3020,4,2,f +6562,3020,71,1,f +6562,3021,4,2,f +6562,3022,15,2,f +6562,3022,71,2,f +6562,3022,4,2,f +6562,30248,0,1,f +6562,3028,2,1,f +6562,30285,71,8,f +6562,30285,15,8,f +6562,3030,71,1,f +6562,3032,71,1,f +6562,3033,0,1,f +6562,3034,0,4,f +6562,3034,15,2,f +6562,30359b,0,1,f +6562,3036,0,1,f +6562,3039,33,2,f +6562,3039,47,1,f +6562,3039,71,2,f +6562,3039,4,2,f +6562,3039,42,2,f +6562,30391,0,16,f +6562,3065,36,6,f +6562,3065,33,6,f +6562,3065,34,6,f +6562,3297px5,14,1,f +6562,3298,71,2,f +6562,3298,15,1,f +6562,3298,3,2,f +6562,3298,4,4,f +6562,3298,72,6,f +6562,3298p1b,4,2,f +6562,3298p21,1,2,f +6562,3298pb003,15,1,f +6562,3298px1,3,1,f +6562,33303,15,2,f +6562,3475b,0,2,f +6562,3660,15,1,f +6562,3666,15,2,f +6562,3710,15,2,f +6562,3730,71,1,f +6562,3747b,4,2,f +6562,3747b,3,2,f +6562,3747b,71,2,f +6562,3747b,72,2,f +6562,3795,4,4,f +6562,3795,71,1,f +6562,3823,33,1,f +6562,3823,41,1,f +6562,3829c01,71,2,f +6562,3829c01,4,1,f +6562,3832,4,2,f +6562,3832,15,2,f +6562,3832,71,2,f +6562,3832,0,2,f +6562,3865,2,2,f +6562,3870c01,71,3,f +6562,3941,42,1,f +6562,3942c,383,2,f +6562,3957a,0,3,f +6562,3960,15,1,f +6562,4006,0,1,f +6562,4070,14,4,f +6562,4083,0,2,f +6562,4083,383,3,f +6562,4132,1,1,f +6562,4133,15,1,f +6562,4175,71,1,f +6562,4286,72,4,f +6562,4286,4,4,f +6562,4287,72,2,f +6562,4328,71,2,f +6562,4349,0,2,f +6562,4617b,0,2,f +6562,4727,2,4,f +6562,4728,14,2,f +6562,4728,4,2,f +6562,4740,57,2,f +6562,4872,41,2,f +6562,600,14,2,f +6562,600,15,1,f +6562,6064,2,1,f +6562,6111,4,6,f +6562,6140,0,1,f +6562,6160c01,4,2,f +6562,6235,1,2,f +6562,6235,4,1,f +6562,6249,72,2,f +6562,6255,2,1,f +6562,71075,383,2,f +6562,cre003,9999,1,f +6562,cre004,9999,2,f +6562,cre005,9999,1,f +6563,3034,15,5,f +6563,3035,15,3,f +6563,3036,15,2,f +6564,194c01,7,2,f +6564,196926,9999,1,t +6564,2731,7,1,f +6564,298c02,7,2,f +6564,3002,14,1,f +6564,3003,4,2,f +6564,3003,14,2,f +6564,3004,4,2,f +6564,3004,14,6,f +6564,3004,15,3,f +6564,3004,0,8,f +6564,3004p06,4,6,f +6564,3004p06,14,1,f +6564,3005,4,8,f +6564,3009,14,7,f +6564,3009,4,4,f +6564,3010,14,6,f +6564,3010,15,2,f +6564,3010,4,6,f +6564,3020,14,1,f +6564,3020,4,2,f +6564,3020,7,1,f +6564,3022,0,9,f +6564,3023,4,5,f +6564,3023,14,6,f +6564,3023,0,16,f +6564,3023,7,1,f +6564,3027,0,3,f +6564,3031,0,2,f +6564,3032,7,1,f +6564,3033,7,3,f +6564,3037,15,2,f +6564,3037,14,1,f +6564,3039,0,2,f +6564,3040b,7,4,f +6564,3058b,0,1,f +6564,3068b,0,3,f +6564,3068b,7,3,f +6564,3069b,0,2,f +6564,3070bp02,14,2,f +6564,3070bp03,14,2,f +6564,3228b,7,4,f +6564,3229b,7,16,f +6564,3230b,7,16,f +6564,3241,7,15,f +6564,3242,7,2,f +6564,3297,14,1,f +6564,3298,0,3,f +6564,3460,14,2,f +6564,3460,4,2,f +6564,3460,0,2,f +6564,3464,4,4,f +6564,3622,14,2,f +6564,3624,4,1,f +6564,3626apr0001,14,2,f +6564,3633,7,3,f +6564,3633,0,1,f +6564,3633,4,12,f +6564,3641,0,8,f +6564,3659,4,1,f +6564,3660,14,4,f +6564,3665,0,24,f +6564,3665,14,2,f +6564,3666,14,2,f +6564,3666,0,18,f +6564,3666,4,2,f +6564,3700,15,2,f +6564,3710,14,4,f +6564,3710,4,7,f +6564,3710,0,7,f +6564,3747a,0,4,f +6564,3787,14,2,f +6564,3794a,0,2,f +6564,3795,7,2,f +6564,3795,0,12,f +6564,3829c01,14,1,f +6564,3832,0,3,f +6564,4006,0,1,f +6564,4022,0,8,f +6564,4023,0,8,f +6564,4033,14,2,f +6564,4034,47,2,f +6564,4070,15,2,f +6564,4070,4,8,f +6564,4070,14,2,f +6564,4083,7,2,f +6564,4083,4,1,f +6564,4085a,7,2,f +6564,4150,15,2,f +6564,4162,0,6,f +6564,4166,8,36,f +6564,4175,0,4,f +6564,4175,7,3,f +6564,4175,4,4,f +6564,4176,47,2,f +6564,4180c01,0,6,f +6564,4181,14,1,f +6564,4181p02,14,1,f +6564,4182,14,1,f +6564,4182p02,14,1,f +6564,4183,47,4,f +6564,4185,7,1,f +6564,4213,0,4,f +6564,4265a,7,1,f +6564,4275a,0,2,f +6564,4276a,0,2,f +6564,4315,0,4,f +6564,4480c01,15,1,f +6564,4480c01,1,1,f +6564,4485,4,1,f +6564,4509,7,3,f +6564,4510,0,2,f +6564,4510,14,2,f +6564,4511,14,2,f +6564,4519,0,1,f +6564,4522,0,1,f +6564,458,7,6,f +6564,4600,7,2,f +6564,4624,7,4,f +6564,501c,0,1,f +6564,502,7,2,f +6564,6141,47,6,f +6564,6141,36,6,f +6564,73090a,4,2,f +6564,73092,0,8,f +6564,867,0,2,f +6564,970c00,1,2,f +6564,973p26c01,1,1,f +6564,973p60c01,15,1,f +6567,10247,72,3,f +6567,11153,0,2,f +6567,11214,72,1,f +6567,11301,72,4,f +6567,11458,72,4,f +6567,11476,71,1,f +6567,11477,72,10,f +6567,11477,1,4,f +6567,12825,71,4,f +6567,12825,0,4,f +6567,13252,46,1,f +6567,13547,0,4,f +6567,13548,1,2,f +6567,14301,71,4,f +6567,14719,71,2,f +6567,15207,72,4,f +6567,15303,36,1,t +6567,15303,36,2,f +6567,15400,72,2,f +6567,15427pr0001,0,1,f +6567,15428,1,1,f +6567,15429,1,1,f +6567,15444,179,1,f +6567,15445,72,1,f +6567,15535,72,8,f +6567,15573,71,7,f +6567,16175pr01,4,1,f +6567,16577,71,1,f +6567,16599,1,1,f +6567,19220,0,1,f +6567,2340,0,2,f +6567,2340,1,6,f +6567,2357,0,6,f +6567,2412b,72,21,f +6567,2420,0,6,f +6567,2431,1,6,f +6567,2431pr0004,71,1,f +6567,2432,71,7,f +6567,2445,1,2,f +6567,2447,36,1,t +6567,2447,36,1,f +6567,2450,72,2,f +6567,2460,15,2,f +6567,2462,71,4,f +6567,2540,72,4,f +6567,2653,0,8,f +6567,2654,72,12,f +6567,2780,0,21,f +6567,2780,0,3,t +6567,2817,0,4,f +6567,298c02,1,2,f +6567,298c02,1,1,t +6567,3001,0,1,f +6567,3001,4,1,f +6567,3003,0,1,f +6567,3004,1,7,f +6567,30044,71,4,f +6567,30046,0,2,f +6567,3010,14,8,f +6567,30136,71,8,f +6567,30137,71,1,f +6567,30153,46,4,f +6567,30171,0,1,f +6567,3020,14,6,f +6567,3021,71,1,f +6567,3021,72,4,f +6567,3022,71,5,f +6567,3022,72,4,f +6567,3023,36,2,f +6567,3023,46,4,f +6567,3023,1,10,f +6567,30237b,0,2,f +6567,3024,1,1,t +6567,3024,297,1,t +6567,3024,297,2,f +6567,3024,1,2,f +6567,3029,71,1,f +6567,3033,71,1,f +6567,3034,1,7,f +6567,30355,71,3,f +6567,30356,71,3,f +6567,30363,1,2,f +6567,30363pr0006,1,3,f +6567,30367c,72,1,f +6567,3037,1,13,f +6567,30374,36,2,f +6567,30375,72,1,f +6567,3038,1,2,f +6567,3039,1,12,f +6567,3039pr0014,0,2,f +6567,3039pr0015,0,3,f +6567,3040b,1,2,f +6567,30414,72,2,f +6567,30503,1,2,f +6567,30553,0,1,f +6567,3062b,14,9,f +6567,3065,36,1,f +6567,3068b,1,6,f +6567,3068b,14,2,f +6567,3069b,14,4,f +6567,3069bpr0101,71,3,f +6567,32000,0,2,f +6567,32013,71,4,f +6567,32018,71,2,f +6567,32028,71,2,f +6567,32054,0,4,f +6567,32062,4,1,f +6567,32064a,71,10,f +6567,32123b,14,3,f +6567,32123b,14,2,t +6567,32187,71,2,f +6567,32291,4,1,f +6567,32324,71,2,f +6567,32531,0,2,f +6567,32532,71,1,f +6567,3460,71,9,f +6567,3464,72,2,f +6567,3622,1,2,f +6567,3622pr0005,1,1,f +6567,3623,1,2,f +6567,3623,14,2,f +6567,3626cpr1326,14,1,f +6567,3626cpr1407,14,1,f +6567,3626cpr1442,179,1,f +6567,3626cpr1459,179,1,f +6567,3660,72,4,f +6567,3665,0,10,f +6567,3666,71,2,f +6567,3673,71,2,f +6567,3673,71,1,t +6567,3700,72,2,f +6567,3701,72,1,f +6567,3701,71,4,f +6567,3702,71,3,f +6567,3710,0,8,f +6567,3713,4,1,t +6567,3713,4,2,f +6567,3747b,71,2,f +6567,3795,0,1,f +6567,3795,71,2,f +6567,3838,1,1,f +6567,3839b,72,2,f +6567,3894,72,5,f +6567,3899,4,1,f +6567,3937,72,4,f +6567,3941,1,2,f +6567,3942c,1,1,f +6567,3956,0,2,f +6567,3963,71,2,f +6567,4006,0,1,f +6567,4032a,72,1,f +6567,40490,14,2,f +6567,4070,0,4,f +6567,4070,72,4,f +6567,4081b,72,4,f +6567,4162,1,11,f +6567,41764,72,1,f +6567,41765,72,1,f +6567,41769,71,1,f +6567,41770,71,1,f +6567,42022,72,2,f +6567,42023,72,4,f +6567,4229,71,2,f +6567,42446,71,1,t +6567,42446,71,1,f +6567,42610,71,3,f +6567,4274,1,34,f +6567,4274,1,4,t +6567,4282,71,2,f +6567,4285b,71,1,f +6567,4286,1,2,f +6567,4287,72,12,f +6567,4287,71,4,f +6567,43093,1,6,f +6567,43337,46,3,f +6567,43710,1,3,f +6567,43711,1,3,f +6567,43713,72,1,f +6567,43898,72,2,f +6567,44567b,1,4,f +6567,44676,0,2,f +6567,44676,1,2,f +6567,4490pr0003,1,1,f +6567,4510,72,8,f +6567,4522,0,1,f +6567,4588,72,2,f +6567,4595,71,4,f +6567,4598,1,5,f +6567,4697b,71,2,f +6567,4697b,71,1,t +6567,4733,71,1,f +6567,4735,71,4,f +6567,47397,71,2,f +6567,47398,71,2,f +6567,4740,71,7,f +6567,4740,36,4,f +6567,47406,72,1,f +6567,47457,1,7,f +6567,48336,1,6,f +6567,4871,72,1,f +6567,50950,1,4,f +6567,52031,1,2,f +6567,54091,72,2,f +6567,54200,36,1,t +6567,54200,1,4,f +6567,54200,72,4,f +6567,54200,36,1,f +6567,54200,46,1,t +6567,54200,0,1,t +6567,54200,1,3,t +6567,54200,46,1,f +6567,54200,0,2,f +6567,54200,72,1,t +6567,54383,1,1,f +6567,54384,1,1,f +6567,55013,72,3,f +6567,55981,71,2,f +6567,56908,71,3,f +6567,57028c04,71,2,f +6567,57796,72,2,f +6567,59900,72,1,f +6567,59900,36,16,f +6567,59900,46,2,f +6567,60208,72,2,f +6567,60470a,71,4,f +6567,60471,0,2,f +6567,60581,47,1,f +6567,6063,72,1,f +6567,6070,46,2,f +6567,6106,71,2,f +6567,6111,0,3,f +6567,6112,72,1,f +6567,61184,71,4,f +6567,6134,71,4,f +6567,61409,4,2,f +6567,61409,72,6,f +6567,6141,1,1,t +6567,6141,36,4,t +6567,6141,34,4,f +6567,6141,72,3,t +6567,6141,71,3,t +6567,6141,34,3,t +6567,6141,71,14,f +6567,6141,1,1,f +6567,6141,72,12,f +6567,6141,36,7,f +6567,6233,71,2,f +6567,63864,72,4,f +6567,63965,70,1,f +6567,64567,71,1,t +6567,64567,71,4,f +6567,6558,1,12,f +6567,6564,71,2,f +6567,6565,71,2,f +6567,6589,19,2,t +6567,6589,19,3,f +6567,6636,72,11,f +6567,76766,1,2,f +6567,85861,15,1,f +6567,85861,15,1,t +6567,85943,72,1,f +6567,85984,0,4,f +6567,85984,72,6,f +6567,87079,1,4,f +6567,87087,71,2,f +6567,87580,72,3,f +6567,88072,72,7,f +6567,88292,0,8,f +6567,89522,297,1,t +6567,89522,297,1,f +6567,90194,71,6,f +6567,90194,1,1,f +6567,91988,0,2,f +6567,92099,72,2,f +6567,92280,71,6,f +6567,92579,47,1,f +6567,92582,71,1,f +6567,93273,1,3,f +6567,93274,72,2,f +6567,95120,72,1,f +6567,96874,25,1,t +6567,970c00,0,1,f +6567,970c00,1,1,f +6567,970c00pr0690,1,1,f +6567,970c00pr0725,25,1,f +6567,973pr2650c01,1,1,f +6567,973pr2694c01,0,1,f +6567,973pr2715c01,1,1,f +6567,973pr2726c01,25,1,f +6567,98138,182,2,t +6567,98138,182,16,f +6567,99207,71,4,f +6567,99780,71,5,f +6568,3020,4,3,f +6568,3022,4,2,f +6568,3023,320,4,f +6568,3024,320,1,f +6568,30414,72,4,f +6568,3623,4,1,f +6568,3937,71,1,f +6568,40379,0,2,f +6568,4085c,4,2,f +6568,43710,4,2,f +6568,43711,4,2,f +6568,47457,4,2,f +6568,48183,4,1,f +6568,48336,19,2,f +6568,49668,19,1,f +6568,6019,0,2,f +6568,6134,0,1,f +6568,6141,42,1,t +6568,6141,42,1,f +6569,11092,179,2,f +6569,11212,72,2,f +6569,11477,72,8,f +6569,12825,72,4,f +6569,15391,15,1,f +6569,15392,72,1,f +6569,15462,28,1,f +6569,18352,72,1,f +6569,19014,179,1,f +6569,2412b,71,1,f +6569,2431,0,2,f +6569,2432,72,1,f +6569,2458,72,2,f +6569,2460,71,1,f +6569,2569,0,1,f +6569,2780,0,1,f +6569,2817,71,1,f +6569,2877,0,2,f +6569,3004,28,1,f +6569,3021,15,1,f +6569,3021,0,5,f +6569,3022,71,2,f +6569,3023,36,4,f +6569,3023,41,2,f +6569,3023,46,4,f +6569,30236,19,1,f +6569,3029,71,2,f +6569,3031,15,1,f +6569,3034,72,1,f +6569,3039,0,2,f +6569,3040b,71,2,f +6569,30592,72,1,f +6569,3062b,72,4,f +6569,3069b,0,1,f +6569,3070bpr0001,34,1,t +6569,3070bpr0001,34,1,f +6569,32000,0,4,f +6569,32013,0,2,f +6569,32316,4,1,f +6569,3245c,0,2,f +6569,32524,72,2,f +6569,32525,0,2,f +6569,32556,19,4,f +6569,3298,28,5,f +6569,3623,72,4,f +6569,3626cpr1488,14,1,f +6569,3626cpr1490,14,1,f +6569,3665,72,2,f +6569,3666,28,3,f +6569,3673,71,11,f +6569,3700,72,2,f +6569,3702,4,2,f +6569,3747b,0,6,f +6569,3832,28,2,f +6569,4216,15,1,f +6569,4274,1,12,f +6569,43093,1,3,f +6569,43903,0,2,f +6569,4477,0,5,f +6569,4740,28,6,f +6569,48336,4,2,f +6569,4864b,41,1,f +6569,51739,28,4,f +6569,55981,71,6,f +6569,58176,179,6,f +6569,58176,36,4,f +6569,60470a,0,2,f +6569,60478,0,6,f +6569,60483,71,1,f +6569,61183,0,1,f +6569,61184,71,4,f +6569,61252,4,1,f +6569,61409,72,6,f +6569,6141,182,2,f +6569,6141,47,4,f +6569,6141,179,8,f +6569,6232,19,1,f +6569,62462,71,1,f +6569,63965,0,2,f +6569,85984,15,1,f +6569,85984,28,2,f +6569,87580,15,1,f +6569,88072,71,1,f +6569,88930,0,1,f +6569,92947,71,2,f +6569,970c00pr0703,71,1,f +6569,970c00pr0738,0,1,f +6569,973pr2757c01,71,1,f +6569,973pr2758c01,15,1,f +6569,98100,71,2,f +6569,98313,179,6,f +6569,98834,0,1,f +6569,99780,0,2,f +6569,99781,71,2,f +6571,11289,41,1,f +6571,18674,15,1,f +6571,2421,0,1,f +6571,2446,4,1,f +6571,2447,40,1,f +6571,2447,40,1,t +6571,2449,14,2,f +6571,2460,72,1,f +6571,2479,0,1,f +6571,2495,4,2,f +6571,2496,0,2,f +6571,2877,72,2,f +6571,3002,4,1,f +6571,3003,14,1,f +6571,3020,0,1,f +6571,3022,4,2,f +6571,3023,14,1,f +6571,3031,2,1,f +6571,3069bpr0099,15,3,f +6571,3069bpr0101,71,1,f +6571,3245c,14,1,f +6571,3460,0,4,f +6571,3623,0,1,f +6571,3626cpr0914,14,1,f +6571,3626cpr1146,14,1,f +6571,3626cpr1580,14,1,f +6571,3626cpr1664,14,1,f +6571,3710,4,2,f +6571,3710,72,2,f +6571,3747b,14,1,f +6571,3795,72,1,f +6571,3832,14,1,f +6571,3941,15,1,f +6571,3941,71,1,f +6571,4006,0,1,f +6571,4032a,2,1,f +6571,4032a,4,1,f +6571,4345b,14,2,f +6571,4345b,4,1,f +6571,4346,4,1,f +6571,4346,14,2,f +6571,43713,72,1,f +6571,43719,72,1,f +6571,43723,0,1,f +6571,44661,14,1,f +6571,4488,0,1,f +6571,4599b,71,1,t +6571,4599b,71,1,f +6571,58176,36,2,f +6571,60100stk01,9999,1,f +6571,64567,15,2,f +6571,64567,15,1,t +6571,86035,25,1,f +6571,86035,1,1,f +6571,88283,484,1,f +6571,90194,4,1,f +6571,92280,15,2,f +6571,93273,72,2,f +6571,970c00,0,2,f +6571,970c00,73,2,f +6571,973pr1356c01,4,1,f +6571,973pr1976c01,4,1,f +6571,973pr2998c01,25,1,f +6571,973pr3360c01,73,1,f +6573,10314,15,1,f +6573,11211,19,2,f +6573,11602pr0001b,15,1,f +6573,11618,31,1,f +6573,11618,26,1,f +6573,11816pr0003,78,1,f +6573,11816pr0006,78,1,f +6573,12622,30,1,f +6573,13336pr0001,27,1,f +6573,14769,71,2,f +6573,14769pr0001,15,1,f +6573,15068,484,2,f +6573,15207,15,2,f +6573,15623pr0004,84,1,f +6573,15627pr0012,226,1,f +6573,18852pr0001,15,1,f +6573,18855,323,1,f +6573,22888,27,1,f +6573,23969,26,2,f +6573,2412b,179,1,f +6573,2431,33,2,f +6573,2431pr0076,15,1,f +6573,2432,15,1,f +6573,2432,322,1,f +6573,2454b,226,2,f +6573,2496,85,2,f +6573,2655,71,2,f +6573,2877,14,1,f +6573,3001,323,3,f +6573,3001,322,1,f +6573,3001,29,1,f +6573,3003,29,1,f +6573,3004,15,1,f +6573,3004,29,1,f +6573,3004,30,2,f +6573,3004pr0017,27,1,f +6573,3010,15,1,f +6573,30145,226,2,f +6573,3020,322,1,f +6573,3020,30,4,f +6573,30236,15,2,f +6573,30237b,19,1,f +6573,30237b,15,2,f +6573,3031,19,1,f +6573,3037,322,1,f +6573,3039,484,2,f +6573,30414,19,1,f +6573,3062b,29,2,f +6573,3062b,41,1,f +6573,3068b,191,2,f +6573,3069b,191,2,f +6573,3069b,36,2,f +6573,3245cpr0005,25,1,f +6573,33172,25,1,f +6573,33183,10,2,f +6573,33243,322,2,f +6573,33291,26,1,f +6573,33291,5,1,f +6573,3623,29,1,f +6573,3633,15,2,f +6573,3659,5,2,f +6573,3710,70,2,f +6573,3710,15,2,f +6573,3795,30,1,f +6573,3823,41,1,f +6573,3829c01,71,1,f +6573,3958,27,1,f +6573,43898,71,1,f +6573,44568,15,1,f +6573,44570,15,1,f +6573,4533,41,1,f +6573,4599b,71,2,f +6573,48092,30,2,f +6573,4865b,41,5,f +6573,57895,47,2,f +6573,59900,129,1,f +6573,6014b,15,4,f +6573,60475b,15,3,f +6573,60581pr0002,15,3,f +6573,60596,15,2,f +6573,60598,15,1,f +6573,60599,15,1,f +6573,60607,70,2,f +6573,60608,15,2,f +6573,60616a,47,1,f +6573,6091,30,2,f +6573,6179,322,1,f +6573,6215,322,11,f +6573,6256,29,1,f +6573,63864,322,1,f +6573,63868,71,1,f +6573,87079,15,1,f +6573,87079pr0093,15,1,f +6573,87544,47,1,f +6573,87544pr0002,47,1,f +6573,87580,19,1,f +6573,87580,15,1,f +6573,87580,70,1,f +6573,87697,0,4,f +6573,92256,70,1,f +6573,92257,320,1,f +6573,92410,15,1,f +6573,92456pr0069c01,78,1,f +6573,92456pr0085c01,78,1,f +6573,92818pr0002c01,26,1,f +6573,92820pr0011c01,30,1,f +6573,92947,19,2,f +6573,93273,71,2,f +6573,98387pr0002,71,1,f +6573,98389pr0002,19,1,f +6573,98393a,323,1,f +6573,98393b,323,1,f +6573,98393c,323,1,f +6573,98393d,323,1,f +6573,98393e,323,1,f +6573,98393f,323,1,f +6573,98393g,323,1,f +6573,98393h,323,1,f +6573,98393i,323,1,f +6573,98393j,323,1,f +6574,2357,0,4,f +6574,2412b,335,6,f +6574,2420,4,6,f +6574,2432,7,1,f +6574,2450,4,2,f +6574,2540,335,5,f +6574,2654,7,1,f +6574,3002,4,2,f +6574,3003,0,1,f +6574,30035,42,1,f +6574,3004,4,4,f +6574,3005,33,2,f +6574,3005,4,1,f +6574,30183,7,1,f +6574,3020,4,1,f +6574,3021,8,6,f +6574,3022,4,8,f +6574,3022,4,1,t +6574,3023,7,12,f +6574,3023,0,1,f +6574,30237a,7,2,f +6574,30303,8,2,f +6574,3031,4,2,f +6574,3031,8,1,f +6574,30364,0,2,f +6574,30365,7,5,f +6574,3037,335,2,f +6574,30375,15,1,f +6574,30377,3,2,f +6574,30383,8,6,f +6574,30386,7,1,f +6574,30387,7,2,f +6574,30388,7,4,f +6574,3039,4,12,f +6574,30396,4,1,f +6574,30526,7,2,f +6574,30530,15,1,f +6574,30536,40,1,f +6574,30542,0,2,f +6574,30592,7,1,f +6574,3069bp55,8,1,f +6574,32000,335,3,f +6574,32001,4,1,f +6574,32138,0,1,t +6574,3298,4,2,f +6574,3298px6,4,2,f +6574,3710,8,7,f +6574,3839b,335,3,f +6574,3937,8,1,f +6574,3938,0,1,f +6574,3960px3,7,1,f +6574,4070,0,2,f +6574,4085c,4,2,f +6574,4095,4,2,f +6574,4150,335,2,f +6574,4150ps1,7,2,f +6574,4150px8,7,2,f +6574,4175,7,2,f +6574,4349,7,1,f +6574,4589,42,3,f +6574,4740,8,2,f +6574,4740,42,2,f +6574,4856a,7,1,f +6574,4859,335,4,f +6574,4859,4,1,f +6574,4871,4,2,f +6574,6126a,57,1,f +6574,6259,335,2,f +6574,6541,7,3,f +6574,6587,8,1,f +6574,73983,4,8,f +6574,75535,4,1,f +6574,758c03,7,2,f +6574,rb00167,14,6,t +6574,rb00167,14,1,f +6574,x117px4,3,1,f +6575,2338,0,1,f +6575,2446,7,1,f +6575,2570,8,1,f +6575,2586p4g,7,1,f +6575,2594,7,1,f +6575,30173a,0,1,f +6575,30173a,7,1,f +6575,30175,8,1,f +6575,30177,0,1,f +6575,30177,2,1,f +6575,30273,8,1,f +6575,3626bpr0895,15,1,f +6575,3844,0,1,f +6575,3846p4e,7,1,f +6575,3847,8,1,f +6575,3848,0,1,f +6575,3849,8,1,f +6575,3896,8,1,f +6575,3896,0,1,f +6575,4497,6,1,f +6575,4498,6,1,f +6575,4499,6,1,f +6575,4505,6,1,f +6575,59,383,1,f +6575,6122,0,1,f +6575,6123,8,1,f +6575,6131,1,1,f +6575,6132,15,1,f +6575,6260,15,1,f +6575,6265,15,3,f +6575,6266,15,2,f +6575,71015,334,1,f +6575,87692,4,1,f +6575,87693,4,1,f +6575,87694,4,1,f +6575,87695,15,2,f +6575,87696,15,1,f +6577,45463,9,1,f +6577,clikits025,52,1,f +6577,clikits110,383,1,f +6577,clikits217,89,1,f +6578,2335,8,1,f +6578,2412b,7,2,f +6578,2432,6,2,f +6578,2555,7,8,f +6578,2654,0,4,f +6578,2877,8,4,f +6578,298c02,0,1,t +6578,298c02,0,2,f +6578,3001,6,2,f +6578,3005,6,2,f +6578,3007,0,1,f +6578,30165,6,2,f +6578,3020,6,2,f +6578,3021,484,2,f +6578,3023,484,1,f +6578,30236,7,3,f +6578,3033,8,1,f +6578,3034,6,1,f +6578,30367b,15,1,f +6578,3037,6,2,f +6578,3038,6,2,f +6578,3045,6,4,f +6578,3048c,6,2,f +6578,3062b,8,2,f +6578,3068b,8,1,f +6578,3070b,7,3,f +6578,3070b,7,1,t +6578,32000,0,2,f +6578,3622,484,4,f +6578,3678a,6,2,f +6578,3794a,0,1,f +6578,3795,8,1,f +6578,3937,0,1,f +6578,3938,6,1,f +6578,4032a,14,1,f +6578,4081b,0,2,f +6578,4274,7,1,t +6578,4274,7,5,f +6578,4286,6,4,f +6578,4287,8,2,f +6578,43720,484,1,f +6578,43721,484,1,f +6578,43898,6,1,f +6578,4589,7,1,f +6578,4733,8,3,f +6578,4740,15,1,f +6578,6141,7,1,t +6578,6141,7,4,f +6578,63965,15,4,f +6579,30374,70,1,f +6579,3626bpr0511,378,5,f +6579,40234,71,1,f +6579,43899,72,1,f +6579,4495b,378,2,f +6579,48493,132,1,f +6579,53705,132,2,f +6579,60751,132,2,f +6579,60751,134,2,f +6579,60752,135,2,f +6579,6123,72,1,f +6579,61856p40,72,3,f +6579,62408,148,1,f +6579,86038,70,2,f +6579,970x199,70,5,f +6579,973pr1349c01,70,3,f +6579,973pr1352c01,72,2,f +6581,13535,15,1,f +6581,15580,73,2,f +6581,15957,322,1,f +6581,18012,71,1,f +6581,18783,15,6,f +6581,18921,70,1,f +6581,19818pr0031,14,1,f +6581,20820,15,1,f +6581,21990,27,1,f +6581,24181,4,1,f +6581,24806,14,1,f +6581,24992,322,2,f +6581,25546,1,1,f +6581,25765,15,1,f +6581,25981,14,1,f +6581,26249,15,2,f +6581,3011,73,2,f +6581,31023,25,1,f +6581,3437,484,6,f +6581,4066,191,2,f +6581,40666,191,3,f +6581,4911,15,1,f +6581,4912,27,1,f +6581,61649,14,1,f +6581,61649,73,1,f +6581,76371pr0038,15,1,f +6581,92094,73,1,f +6581,93353,191,2,f +6581,98223pr0009,70,1,f +6581,98233,70,1,f +6583,47225,14,2,f +6584,5306bc162,0,2,f +6585,10928,72,1,f +6585,11946,4,2,f +6585,11947,4,2,f +6585,12799,72,1,f +6585,18352,72,1,f +6585,2780,0,23,f +6585,2780,0,1,t +6585,2825,4,2,f +6585,32039,71,6,f +6585,32054,0,3,f +6585,32062,4,6,f +6585,32073,71,3,f +6585,32123b,71,1,t +6585,32123b,71,8,f +6585,32138,0,2,f +6585,32140,0,4,f +6585,32184,0,4,f +6585,32278,71,2,f +6585,32291,0,2,f +6585,32316,0,1,f +6585,32449,15,2,f +6585,32523,15,1,f +6585,32523,4,4,f +6585,32524,15,1,f +6585,32524,0,1,f +6585,3705,0,1,f +6585,3737,0,2,f +6585,40490,4,2,f +6585,41678,71,2,f +6585,42003,71,4,f +6585,43093,1,9,f +6585,44294,71,1,f +6585,4519,71,2,f +6585,4716,71,1,f +6585,48989,71,1,f +6585,55978,0,2,f +6585,55982,0,2,f +6585,56145,0,2,f +6585,58090,0,2,f +6585,60483,0,4,f +6585,6141,36,1,t +6585,6141,71,1,f +6585,6141,71,1,t +6585,6141,36,1,f +6585,62462,4,4,f +6585,62462,71,2,f +6585,64391,4,1,f +6585,64683,4,1,f +6585,6536,4,4,f +6585,6536,15,2,f +6585,6558,1,16,f +6585,75c10,4,1,f +6585,87080,4,2,f +6585,87082,0,1,f +6585,87086,4,2,f +6588,2540,0,2,f +6588,30367b,14,1,f +6588,3749,19,1,t +6588,3749,19,1,f +6588,3941,14,1,f +6588,4735,0,2,f +6588,4735,0,1,t +6588,6041,0,1,f +6588,6141,46,1,f +6588,6141,46,1,t +6590,1,15,2,f +6590,122c01,0,2,f +6590,2,15,1,f +6590,3,14,2,f +6590,3001,15,2,f +6590,3003,4,3,f +6590,3003,14,1,f +6590,3004,15,5,f +6590,3004,4,4,f +6590,3005,14,16,f +6590,3008,15,2,f +6590,3009,15,10,f +6590,3010,15,6,f +6590,3020,1,1,f +6590,3021,0,2,f +6590,3022,1,2,f +6590,3022,4,2,f +6590,3022,0,1,f +6590,3023,0,3,f +6590,3032,4,1,f +6590,3033,15,1,f +6590,3034,15,1,f +6590,3035,15,1,f +6590,3039,47,1,f +6590,3041,4,1,f +6590,3044a,4,2,f +6590,3062a,34,1,f +6590,3068b,15,7,f +6590,3068b,14,5,f +6590,3068b,4,11,f +6590,3069b,4,3,f +6590,3069b,15,9,f +6590,3070b,15,4,f +6590,3185,14,4,f +6590,3297,4,1,f +6590,3612,4,2,f +6590,3613,4,2,f +6590,3614b,14,2,f +6590,3622,15,4,f +6590,3626apr0001,14,1,f +6590,3633,1,2,f +6590,3633,15,2,f +6590,3641,0,4,f +6590,3666,15,1,f +6590,367,1,1,f +6590,3684,0,2,f +6590,3710,4,2,f +6590,3710,15,1,f +6590,3794a,15,2,f +6590,3795,4,1,f +6590,3837,8,1,f +6590,3852a,6,1,f +6590,3899,47,1,f +6590,3901,6,1,f +6590,3958,14,1,f +6590,4079,4,2,f +6590,685p01,14,1,f +6590,792c03,4,1,f +6590,837,15,1,f +6590,838,14,1,f +6590,970c00,1,1,f +6590,973c02,4,1,f +6590,x196,0,1,f +6591,11214,72,1,f +6591,15100,0,1,f +6591,18587,71,1,f +6591,18588,0,1,f +6591,18651,0,1,f +6591,18654,72,1,f +6591,19049,179,1,f +6591,19087,297,4,f +6591,20473,52,2,f +6591,24154,297,2,f +6591,24154,179,1,f +6591,24166,47,2,f +6591,24187,41,1,f +6591,24189,148,1,f +6591,24190,0,1,f +6591,24191,297,1,f +6591,24193pr0005,0,1,f +6591,2780,0,12,f +6591,32015,0,2,f +6591,32062,4,6,f +6591,32072,0,1,f +6591,32073,71,1,f +6591,32123b,71,7,f +6591,32184,0,2,f +6591,32270,0,1,f +6591,32449,0,4,f +6591,32523,0,2,f +6591,3648b,72,1,f +6591,3705,0,3,f +6591,3713,71,1,f +6591,3737,0,1,f +6591,3749,19,1,f +6591,41530,179,1,f +6591,41669,0,2,f +6591,4185,72,1,f +6591,42003,72,3,f +6591,4274,71,1,f +6591,43093,1,4,f +6591,4519,71,1,f +6591,50923,72,2,f +6591,55013,72,1,f +6591,59443,72,2,f +6591,59900,52,1,f +6591,60483,72,1,f +6591,6141,52,12,f +6591,62462,71,1,f +6591,64276,0,2,f +6591,64713,179,1,f +6591,6536,0,3,f +6591,6558,1,2,f +6591,6587,28,3,f +6591,74261,0,4,f +6591,87080,0,1,f +6591,87083,72,1,f +6591,87086,0,1,f +6591,90608,52,2,f +6591,90609,52,3,f +6591,90611,0,2,f +6591,90617,72,3,f +6591,90639,0,4,f +6591,90640,52,4,f +6591,92907,0,1,f +6591,93571,72,2,f +6591,93575,0,2,f +6591,98597,148,2,f +6592,10247,72,8,f +6592,10247,0,4,f +6592,10288,308,2,f +6592,11090,72,18,f +6592,11153,25,2,f +6592,11203,0,8,f +6592,11215,0,1,f +6592,11272,148,1,f +6592,11439,297,1,f +6592,11476,0,1,f +6592,11477,72,8,f +6592,11477,70,2,f +6592,11692pr0001c01,288,1,f +6592,14181,0,2,f +6592,14769,0,1,f +6592,15068,288,2,f +6592,15068,484,3,f +6592,15068,308,7,f +6592,15392,70,2,f +6592,15392,70,1,t +6592,15403,0,2,f +6592,15439,0,1,f +6592,15439,0,1,t +6592,15535,72,2,f +6592,15535pr0002,72,4,f +6592,15619,320,1,f +6592,15619,320,1,t +6592,15672,28,4,f +6592,15706,0,2,f +6592,15712,72,1,f +6592,16968,71,2,f +6592,18575,19,1,f +6592,18649,0,1,f +6592,18651,0,5,f +6592,18674,70,1,f +6592,18927,288,1,f +6592,19857pat0001,4,1,f +6592,19859pat0015,36,1,f +6592,21301,70,1,f +6592,21445,0,2,f +6592,22411,0,1,f +6592,2343,179,2,f +6592,23983,297,2,f +6592,23984,148,1,t +6592,23984,15,2,f +6592,23984,148,1,f +6592,23984,15,1,t +6592,23985,15,1,f +6592,2412b,297,4,f +6592,2415,71,1,f +6592,2419,72,2,f +6592,2419,2,2,f +6592,2421,0,1,f +6592,2431,0,2,f +6592,2450,308,2,f +6592,24724,9999,1,f +6592,2476a,28,6,f +6592,2526,288,1,t +6592,2526,288,1,f +6592,2528,272,1,f +6592,2530,72,1,f +6592,2530,72,1,t +6592,2540,25,1,f +6592,2550c02,179,1,f +6592,2561,70,1,t +6592,2561,70,1,f +6592,2562,70,1,f +6592,2562,70,1,t +6592,2585,71,1,f +6592,2723,0,2,f +6592,2744,308,2,f +6592,2780,0,38,f +6592,2780,0,4,t +6592,2817,71,2,f +6592,2877,71,2,f +6592,28809,71,2,f +6592,29978,148,2,f +6592,3001,72,2,f +6592,3003,0,3,f +6592,30036,72,2,f +6592,3008,28,2,f +6592,3009,0,3,f +6592,3009,72,2,f +6592,30136,484,2,f +6592,30137,70,2,f +6592,30137,71,4,f +6592,30150,71,1,f +6592,30157,72,4,f +6592,30170,72,1,t +6592,30170,72,1,f +6592,30173b,179,1,t +6592,30173b,179,2,f +6592,30173b,297,4,f +6592,30180,0,2,f +6592,3020,15,1,f +6592,3020,484,2,f +6592,3020,288,4,f +6592,3021,0,2,f +6592,3023,2,3,f +6592,3023,70,2,f +6592,3023,4,1,f +6592,3023,484,11,f +6592,3023,28,8,f +6592,3027,71,1,f +6592,3031,0,4,f +6592,3034,0,4,f +6592,30357,288,2,f +6592,30367c,0,2,f +6592,30374,71,1,f +6592,30374,71,1,t +6592,30395,297,1,f +6592,30505,70,2,f +6592,30526,72,1,f +6592,30565,0,4,f +6592,3062b,0,4,f +6592,3070bpr0007,71,1,t +6592,3070bpr0007,71,2,f +6592,32002,19,4,f +6592,32002,19,2,t +6592,32009,0,4,f +6592,32016,0,4,f +6592,32034,71,3,f +6592,32039,4,1,f +6592,32054,71,4,f +6592,32054,4,2,f +6592,32062,4,2,f +6592,32072,14,1,f +6592,32072,0,2,f +6592,32123b,14,2,f +6592,32124,70,6,f +6592,32184,0,3,f +6592,32184,71,1,f +6592,32316,71,2,f +6592,32333,71,1,f +6592,32449,4,2,f +6592,32523,0,2,f +6592,32526,0,2,f +6592,32531,0,1,f +6592,32532,71,2,f +6592,32532,0,1,f +6592,32555,0,4,f +6592,3460,308,6,f +6592,3464,72,1,f +6592,3623,72,6,f +6592,3626cpr0895,15,1,f +6592,3626cpr0895,15,1,t +6592,3626cpr1365,14,1,f +6592,3626cpr1366,14,1,f +6592,3626cpr1557,14,1,f +6592,3626cpr9985,14,1,f +6592,3626cpr9986,25,1,f +6592,3626pr1549,14,1,f +6592,3659,71,3,f +6592,3660,308,1,f +6592,3666,70,7,f +6592,3666,25,4,f +6592,3700,0,2,f +6592,3700,70,1,f +6592,3701,70,6,f +6592,3701,4,1,f +6592,3702,4,2,f +6592,3703,71,2,f +6592,3705,4,1,f +6592,3705,0,1,f +6592,3707,0,1,f +6592,3707,4,1,f +6592,3708,0,2,f +6592,3710,0,4,f +6592,3710,71,4,f +6592,3737,0,2,f +6592,3795,72,1,f +6592,3795,308,1,f +6592,3894,72,3,f +6592,3937,72,1,f +6592,4032a,2,2,f +6592,4032a,484,2,f +6592,4032a,71,4,f +6592,40490,15,1,f +6592,4151b,72,2,f +6592,41539,0,2,f +6592,4162,72,2,f +6592,41677,72,4,f +6592,41769,70,5,f +6592,41770,70,5,f +6592,4274,71,2,t +6592,4274,71,16,f +6592,43093,1,27,f +6592,4345b,71,2,f +6592,4346,71,2,f +6592,43719,0,1,f +6592,43887,71,2,f +6592,44375b,0,2,f +6592,4488,0,1,f +6592,4519,14,4,f +6592,4596,71,2,f +6592,47397,0,2,f +6592,47398,0,2,f +6592,47457,308,1,f +6592,48002a,0,2,f +6592,4865b,71,2,f +6592,4871,72,2,f +6592,48724,0,1,f +6592,48729b,71,1,t +6592,48729b,71,1,f +6592,49668,179,2,f +6592,50304,72,1,f +6592,50305,72,1,f +6592,50943,179,2,f +6592,50955,0,2,f +6592,50956,0,2,f +6592,51739,2,2,f +6592,51739,70,8,f +6592,52107,0,1,f +6592,53454,148,2,f +6592,54200,297,2,f +6592,54383,28,2,f +6592,54383,0,1,f +6592,54384,28,2,f +6592,54384,0,1,f +6592,56823c50,0,1,f +6592,57792,484,4,f +6592,59443,0,2,f +6592,59443,71,6,f +6592,59895,0,1,t +6592,59895,0,1,f +6592,59900,71,8,f +6592,6014b,71,1,f +6592,60470a,0,4,f +6592,60474,72,2,f +6592,60476,71,2,f +6592,60477,0,2,f +6592,60479,70,2,f +6592,60479,0,1,f +6592,60484,0,2,f +6592,60752,28,6,f +6592,60897,70,2,f +6592,61072,179,1,f +6592,61183,19,1,f +6592,6134,71,1,f +6592,61409,484,2,f +6592,6141,179,3,t +6592,6141,179,12,f +6592,6141,42,1,t +6592,6141,42,5,f +6592,6180,0,3,f +6592,61800,484,2,f +6592,62361,0,1,f +6592,62462,0,2,f +6592,62462,15,1,f +6592,6260,15,1,f +6592,6265,15,1,t +6592,6265,15,2,f +6592,62810,484,1,f +6592,63864,71,2,f +6592,63965,0,2,f +6592,64567,308,3,f +6592,64567,308,2,t +6592,6558,1,8,f +6592,6587,28,3,f +6592,6589,19,1,f +6592,6636,70,1,f +6592,72326,0,1,f +6592,73983,72,4,f +6592,74967,71,1,f +6592,75904,71,1,f +6592,75937,179,2,f +6592,76766,71,1,f +6592,85940,0,4,f +6592,85984,4,1,f +6592,85984pr0143,72,1,f +6592,87079,25,4,f +6592,87079,484,1,f +6592,87079,0,4,f +6592,87081,72,2,f +6592,87414,0,1,f +6592,87580,70,1,f +6592,87580,2,1,f +6592,87697,0,1,f +6592,87994,70,2,f +6592,87994,70,1,t +6592,88072,72,2,f +6592,90194,288,1,f +6592,90498,72,1,f +6592,92280,71,2,f +6592,92692,0,1,f +6592,92946,0,4,f +6592,93274,0,2,f +6592,93274,72,1,f +6592,93560,288,1,f +6592,93606,2,1,f +6592,93609,15,1,f +6592,95188,0,2,f +6592,95188,288,2,f +6592,95354,0,2,f +6592,96874,25,1,t +6592,96874,25,1,f +6592,970c00pr0877,0,1,f +6592,970c00pr0881,0,1,f +6592,970c00pr0889,0,1,f +6592,970pr6135528c01,320,1,f +6592,970x192pr0001,70,2,f +6592,973pr6134234c01,0,1,f +6592,973pr9977c01,25,1,f +6592,973pr9978c01,0,1,f +6592,973pr9990c01,0,1,f +6592,973pr9992,70,1,f +6592,98137,297,4,f +6592,98138,36,2,f +6592,98138,36,1,t +6592,98138,297,1,f +6592,98138,320,2,f +6592,98138,320,1,t +6592,98138pr0042,297,1,t +6592,98138pr0042,297,1,f +6592,98284,70,2,f +6592,98313,179,1,f +6592,98341,297,1,f +6592,98397,71,3,f +6592,98834,0,2,f +6592,99207,0,8,f +6592,99780,71,1,f +6592,99780,72,2,f +6592,99781,0,2,f +6593,3001,0,1,f +6593,3001,1,1,f +6593,3004,1,2,f +6593,3004,0,1,f +6593,3004,7,4,f +6593,3007,14,2,f +6593,3008,0,3,f +6593,3009,1,2,f +6593,3009,7,2,f +6593,3009,0,5,f +6593,3010,0,5,f +6593,3010,7,5,f +6593,3020,0,6,f +6593,3020,1,2,f +6593,3020,4,2,f +6593,3021,7,4,f +6593,3021,1,1,f +6593,3021,0,2,f +6593,3022,7,3,f +6593,3022,0,4,f +6593,3023,1,6,f +6593,3023,14,4,f +6593,3023,0,10,f +6593,3023,4,4,f +6593,3024,4,4,f +6593,3024,1,7,f +6593,3030,7,2,f +6593,3031,0,4,f +6593,3031,4,2,f +6593,3032,4,4,f +6593,3033,0,2,f +6593,3034,1,1,f +6593,3034,0,7,f +6593,3036,14,1,f +6593,3036,0,6,f +6593,3037,1,1,f +6593,3040b,0,4,f +6593,3040b,1,4,f +6593,3063b,0,2,f +6593,3068b,7,4,f +6593,3068b,0,3,f +6593,3069b,0,3,f +6593,3069b,7,4,f +6593,3297,7,2,f +6593,3298,7,1,f +6593,3460,14,1,f +6593,3460,0,6,f +6593,3460,1,2,f +6593,3460,7,4,f +6593,3460,4,4,f +6593,3622,7,2,f +6593,3623,1,4,f +6593,3623,7,12,f +6593,3623,0,19,f +6593,3623,4,4,f +6593,3647,7,11,f +6593,3648a,7,9,f +6593,3651,7,13,f +6593,3652,7,4,f +6593,3660,7,6,f +6593,3660,4,6,f +6593,3660,0,2,f +6593,3665,7,4,f +6593,3666,4,2,f +6593,3666,0,14,f +6593,3666,1,6,f +6593,3673,7,64,f +6593,3679,7,8,f +6593,3680,0,8,f +6593,3700,0,17,f +6593,3700,1,1,f +6593,3700,4,4,f +6593,3701,0,12,f +6593,3701,4,12,f +6593,3701,1,1,f +6593,3701,14,3,f +6593,3702,0,12,f +6593,3703,0,14,f +6593,3704,0,4,f +6593,3705,0,17,f +6593,3706,0,6,f +6593,3707,0,8,f +6593,3708,0,7,f +6593,3710,4,2,f +6593,3710,0,16,f +6593,3710,1,7,f +6593,3713,7,58,f +6593,3736,7,1,f +6593,3737,0,4,f +6593,3739,7,4,f +6593,3740,0,4,f +6593,3743,7,6,f +6593,3749,7,2,f +6593,3795,1,1,f +6593,3795,4,4,f +6593,3832,1,5,f +6593,3832,0,2,f +6593,3894,0,8,f +6593,3894,1,2,f +6593,3894,4,4,f +6593,3895,0,10,f +6593,3941,14,8,f +6593,3941,7,1,f +6593,3942a,14,2,f +6593,3958,4,2,f +6593,4019,7,4,f +6593,4032a,14,6,f +6593,4143,7,4,f +6593,4162,0,4,f +6593,4185,7,1,f +6593,69c01,1,4,f +6593,73071,7,1,f +6593,73129,7,4,f +6593,9244,7,6,f +6593,rb00167,0,2,f +6593,rb00170,0,1,f +6593,x467c12,0,4,f +6596,2420,0,1,f +6596,3002,70,3,f +6596,3005,0,8,f +6596,3005,70,5,f +6596,3020,0,1,f +6596,3022,0,1,f +6596,3023,0,5,f +6596,3023,70,1,f +6596,3024,0,1,f +6596,3039,70,2,f +6596,3040b,70,6,f +6596,3040b,0,2,f +6596,3460,70,1,f +6596,3622,70,1,f +6596,3623,0,1,f +6596,3623,70,1,f +6596,3660,70,1,f +6596,3665,0,3,f +6596,3665,70,9,f +6596,3666,70,1,f +6596,3710,70,1,f +6596,4286,70,2,f +6596,4287,70,3,f +6597,2357,14,2,f +6597,2431,0,2,f +6597,2432,0,1,f +6597,2452,0,2,f +6597,2454pa0,19,1,f +6597,2454px4,19,1,f +6597,2460,7,1,f +6597,2465px1,19,1,f +6597,2526,15,1,f +6597,2546,14,2,f +6597,2546,8,2,f +6597,2817,7,1,f +6597,3003,19,4,f +6597,3004,19,1,f +6597,30041,19,1,f +6597,30042,19,1,f +6597,3007,7,1,f +6597,3009,19,4,f +6597,3010,19,2,f +6597,3010,4,2,f +6597,3010,7,6,f +6597,30115,4,2,f +6597,30132,8,1,f +6597,30132,8,1,t +6597,30141,8,1,f +6597,30145,7,4,f +6597,30147,8,1,f +6597,30148,0,1,f +6597,30153,36,1,f +6597,30155,19,5,f +6597,30157,8,2,f +6597,30162,0,1,f +6597,30163,19,2,f +6597,30164p01,19,1,f +6597,30167,6,1,f +6597,30168px1,14,1,f +6597,30169,0,1,f +6597,30172,15,1,f +6597,3020,7,2,f +6597,3020,4,1,f +6597,3023,7,2,f +6597,3023,0,2,f +6597,3029,19,2,f +6597,3031,19,1,f +6597,3031,15,1,f +6597,3033,19,1,f +6597,3036,7,1,f +6597,3039,19,8,f +6597,3040b,14,4,f +6597,3041,0,1,f +6597,3044b,19,1,f +6597,3048c,0,1,f +6597,3062b,4,4,f +6597,3069bpa4,15,1,f +6597,3460,7,2,f +6597,3483,0,5,f +6597,3626bpa3,14,1,f +6597,3626bpa7,14,1,f +6597,3626bpr0895,15,1,f +6597,3659,0,1,f +6597,3665,7,2,f +6597,3666,0,2,f +6597,3700,0,1,f +6597,3710,7,1,f +6597,3710,0,2,f +6597,3795,7,1,f +6597,3829c01,7,1,f +6597,3832,0,2,f +6597,3841,8,1,f +6597,3937,1,1,f +6597,3938,14,1,f +6597,4079,2,1,f +6597,4085c,0,2,f +6597,4085c,7,2,f +6597,4162,7,2,f +6597,4460a,0,2,f +6597,4589,42,1,f +6597,4859,0,1,f +6597,4865a,4,1,f +6597,4865a,0,4,f +6597,6111,8,3,f +6597,6112,7,1,f +6597,6126a,57,2,f +6597,6141,46,2,f +6597,6141,47,1,t +6597,6141,47,1,f +6597,6141,4,2,f +6597,6141,4,1,t +6597,6141,46,1,t +6597,6260,15,1,f +6597,6265,15,2,f +6597,6265,15,1,t +6597,6266,15,2,f +6597,6541,7,2,f +6597,6587,8,2,f +6597,970c00,7,1,f +6597,970c00,0,1,f +6597,973pa7c01,19,1,f +6597,973pb0391c01,19,1,f +6598,2570,8,2,f +6598,30273,8,1,f +6598,3031,2,2,f +6598,3039,8,1,f +6598,32064b,7,1,f +6598,3403c01,0,1,f +6598,3626bpx68,14,1,f +6598,3846p4e,7,1,f +6598,4070,0,2,f +6598,4498,6,1,f +6598,970c00pb014,0,1,f +6598,973px115c01,8,1,f +6600,2446,4,1,f +6600,3626bp03,14,1,f +6600,3626bpr0001,14,3,f +6600,3626bpr0098,14,1,f +6600,3834,15,1,f +6600,3838,4,1,f +6600,3901,0,1,f +6600,4485,4,1,f +6600,6093,70,1,f +6600,970c00,15,1,f +6600,970c00,2,1,f +6600,970c00,71,1,f +6600,970c00,0,1,f +6600,970c00,4,1,f +6600,973p21c01,0,1,f +6600,973p90c02,4,1,f +6600,973pr0145c01,15,1,f +6600,973px130c01,15,1,f +6600,973px78ac01,4,1,f +6601,3003,14,4,f +6601,3004,14,5,f +6601,3004,0,5,f +6601,3005,0,6,f +6601,3005,14,7,f +6601,3006,14,1,f +6601,3009,0,1,f +6601,3009,14,5,f +6601,3009pt1,15,2,f +6601,3010,14,6,f +6601,3020,14,1,f +6601,3021,0,4,f +6601,3021,14,2,f +6601,3023,0,2,f +6601,3024,15,4,f +6601,3024,0,10,f +6601,3029,14,1,f +6601,3033,14,1,f +6601,3034,14,1,f +6601,3037,14,6,f +6601,3062a,0,1,f +6601,3460,0,1,f +6601,3488,0,4,f +6601,736c02,0,1,f +6603,2780,0,15,f +6603,2780,0,1,t +6603,2825,0,4,f +6603,32034,0,2,f +6603,32039,71,10,f +6603,32054,71,3,f +6603,32062,4,13,f +6603,32073,71,4,f +6603,32123b,71,14,f +6603,32123b,71,1,t +6603,32140,71,2,f +6603,32184,0,4,f +6603,32249,0,4,f +6603,32250,0,4,f +6603,32525,72,1,f +6603,3705,0,6,f +6603,3706,0,1,f +6603,41678,72,2,f +6603,43093,1,18,f +6603,4519,71,2,f +6603,45749,0,4,f +6603,47306,0,1,f +6603,47311,0,1,f +6603,49423,0,3,f +6603,50923,72,4,f +6603,53542,27,2,f +6603,53545,0,1,f +6603,53568,0,1,f +6603,53585,0,2,f +6603,53586,135,2,f +6603,54272,0,1,f +6603,55013,72,2,f +6603,57563,27,5,f +6603,57569,27,2,f +6603,57585,71,2,f +6603,59443,72,1,f +6603,60176,72,9,f +6603,60483,72,2,f +6603,60484,0,1,f +6603,60896,72,2,f +6603,61053,0,2,f +6603,61054,72,2,f +6603,62386,0,2,f +6603,64251,27,2,f +6603,64262,57,1,f +6603,64263pat0001,0,4,f +6603,64275,135,2,f +6603,64276,0,2,f +6603,64277c01,297,1,f +6603,64343,0,1,f +6603,64889pr0001,135,2,f +6603,6558,1,1,f +6603,6632,71,8,f +6606,45449,5,2,f +6606,45449,29,2,f +6606,45449,45,2,f +6606,45451,230,1,f +6606,45451,45,1,f +6606,45452,45,2,f +6606,45452,230,2,f +6606,45481,230,2,f +6606,45499,45,1,f +6606,46277,5,2,f +6606,46277,230,2,f +6606,46277,29,4,f +6606,46277,45,2,f +6606,46296,230,1,f +6606,46296,45,1,f +6606,clikits012,47,2,f +6606,clikits022,43,2,f +6606,clikits022,47,2,f +6606,clikits022,45,2,f +6606,clikits023,118,1,f +6606,clikits024,47,2,f +6606,clikits024,45,2,f +6606,clikits024,43,2,f +6606,clikits025,45,2,f +6606,clikits053,5,2,f +6606,clikits053,118,2,f +6606,clikits082,45,2,f +6607,11214,72,1,f +6607,15107,41,2,f +6607,15209,15,2,f +6607,30153,41,2,f +6607,3023,28,1,f +6607,3069b,72,1,f +6607,32034,0,1,f +6607,32530,0,1,f +6607,3660,71,1,f +6607,47457,72,1,f +6607,48336,19,1,f +6607,59900,0,1,f +6607,60474,308,1,f +6607,60897,72,2,f +6607,6091,72,2,f +6607,61184,71,2,f +6607,63868,0,2,f +6607,85984,15,1,f +6607,99780,71,1,f +6607,99781,0,1,f +6609,2039,110,1,f +6609,22670,334,1,f +6609,2417,10,5,f +6609,2417,2,1,f +6609,2419,15,2,f +6609,2431,462,2,f +6609,2546,74,1,f +6609,2546,13,1,f +6609,2546,73,1,f +6609,2921,5,2,f +6609,30016,26,2,f +6609,3003,25,1,f +6609,3004,34,2,f +6609,3004,45,1,f +6609,3005,34,2,f +6609,3005,45,1,t +6609,3005,45,6,f +6609,3009,22,2,f +6609,3010,22,1,f +6609,30109,5,1,f +6609,30153,45,3,f +6609,30153,36,1,f +6609,30153,52,2,f +6609,3020,462,2,f +6609,3022,26,1,f +6609,30224,462,1,f +6609,3024,462,4,f +6609,30338,6,1,f +6609,30339,2,1,f +6609,3036,462,2,f +6609,3062b,15,4,f +6609,3062b,5,8,f +6609,3066,34,2,f +6609,3068bpb0056,15,5,f +6609,33008,110,1,f +6609,33051,10,1,f +6609,33051,4,1,f +6609,33061,34,2,f +6609,3307,25,4,f +6609,3307,5,2,f +6609,3308,5,2,f +6609,33085,14,1,f +6609,33172,25,2,f +6609,33183,10,1,t +6609,33183,10,2,f +6609,33203,6,1,f +6609,33213,462,2,f +6609,33216,35,2,f +6609,33227,22,1,f +6609,33320,34,1,f +6609,3622,45,1,f +6609,3633,15,4,f +6609,3659,25,4,f +6609,3741,10,1,f +6609,3741,10,1,t +6609,3742,15,3,f +6609,3742,15,1,t +6609,3852b,13,1,f +6609,3898pb01,125,1,f +6609,3937,15,1,f +6609,3937,25,1,f +6609,3938,5,1,f +6609,3938,15,1,f +6609,3940b,15,1,f +6609,3958,10,1,f +6609,3958,73,1,f +6609,4032a,2,1,f +6609,4032a,73,1,f +6609,4088,22,1,f +6609,4201,26,1,f +6609,4429,45,1,f +6609,44510pb01,10,1,f +6609,44511,26,2,f +6609,4523,1,1,f +6609,4589,34,3,f +6609,4728,143,1,f +6609,4865a,25,2,f +6609,57503,334,1,f +6609,57504,334,1,f +6609,57505,334,1,f +6609,57506,334,1,f +6609,6112,26,2,f +6609,6140,4,1,f +6609,6141,5,1,t +6609,6141,5,4,f +6609,6171pr02,0,1,f +6609,6178,22,1,f +6609,6179,25,3,f +6609,6182,462,4,f +6609,6185,5,1,f +6609,6192,5,2,f +6609,6204,6,1,f +6609,6215,5,2,f +6609,6231,25,2,f +6609,6231,15,2,f +6609,6255,10,1,f +6609,6256,334,2,f +6609,62808,334,2,f +6609,6636,462,1,f +6609,6942,26,1,f +6609,6942,34,1,f +6609,pillow01,89,1,f +6609,pillow02,462,1,f +6610,11203,72,1,f +6610,12825,71,1,f +6610,15210,0,1,f +6610,2335,71,2,f +6610,2412b,71,4,f +6610,2456,72,1,f +6610,2540,71,3,f +6610,298c02,71,1,t +6610,298c02,71,4,f +6610,3003,72,1,f +6610,30162,72,4,f +6610,3021,71,2,f +6610,3023,72,3,f +6610,30304,72,1,f +6610,3034,0,2,f +6610,30350b,72,1,f +6610,30367c,72,2,f +6610,30374,71,1,f +6610,30377,71,4,f +6610,30377,71,1,t +6610,3039pr0005,15,1,f +6610,30565,72,2,f +6610,3069b,320,3,f +6610,3070b,72,2,f +6610,3070b,72,1,t +6610,32028,72,1,f +6610,3245c,71,1,f +6610,3298,71,2,f +6610,3460,71,1,f +6610,3623,71,2,f +6610,3626cpr1149,78,2,f +6610,3700,71,1,f +6610,3958,71,1,f +6610,4032a,70,2,f +6610,44728,72,2,f +6610,4590,72,1,f +6610,4595,71,2,f +6610,4697b,71,1,t +6610,4697b,71,2,f +6610,48092,71,2,f +6610,53451,179,6,f +6610,53451,179,1,t +6610,58176,36,2,f +6610,58247,0,2,f +6610,6005,320,2,f +6610,60478,72,6,f +6610,60849,71,4,f +6610,60849,71,1,t +6610,60897,71,4,f +6610,61184,71,1,f +6610,61189pr0012,15,1,f +6610,61189pr0013,15,1,f +6610,61252,72,1,f +6610,6141,70,4,f +6610,6141,41,1,t +6610,6141,70,1,t +6610,6141,41,1,f +6610,63864,320,2,f +6610,75937,179,2,f +6610,93273,70,2,f +6610,970x026,15,2,f +6610,973pr2223c01,15,1,f +6610,973pr2252c01,15,1,f +6610,98313,148,6,f +6610,99780,72,1,f +6610,99781,71,4,f +6611,3626bpr1090,14,1,f +6611,88646pr0001,15,1,f +6611,96204pr0001,1,1,f +6611,970c00pr0410,15,1,f +6611,973pr0801c01,1,1,f +6611,99250pr0001,4,1,f +6612,2436,0,2,f +6612,2447,47,1,f +6612,2447,47,1,t +6612,2540,72,2,f +6612,298c02,4,2,f +6612,298c02,4,1,t +6612,3020,72,1,f +6612,3626cpr0807,14,1,f +6612,3710,27,4,f +6612,3794a,27,2,f +6612,4081b,71,4,f +6612,50950,71,4,f +6612,59900,42,2,f +6612,60897,71,2,f +6612,61409,72,2,f +6612,6141,41,2,f +6612,6141,85,4,f +6612,6141,85,1,t +6612,6141,41,1,t +6612,87781,321,1,f +6612,95199,72,1,f +6612,95203pr0002,27,1,f +6612,970c00pr0231,0,1,f +6612,970c00pr0232,321,1,f +6612,973pr1775c01,0,1,f +6612,973pr1785c01,321,1,f +6615,12011,25,1,f +6615,12099,15,1,f +6615,15613,71,1,f +6615,3437,4,1,f +6615,41969,0,1,f +6615,87084,10,1,f +6615,93242,14,1,f +6615,93535,14,1,f +6616,164c01,4,1,f +6616,185c01,4,3,f +6616,3001a,1,2,f +6616,3003,1,3,f +6616,3003,15,2,f +6616,3004,15,11,f +6616,3004,47,4,f +6616,3005,15,10,f +6616,3005,47,8,f +6616,3008,15,4,f +6616,3010,15,1,f +6616,3022,1,1,f +6616,3031,0,1,f +6616,3032,0,2,f +6616,3032,15,1,f +6616,3038,47,2,f +6616,3040a,15,2,f +6616,3062a,34,1,f +6616,3062a,36,1,f +6616,3062a,0,4,f +6616,3063b,47,1,f +6616,3633,15,5,f +6616,3633,4,3,f +6616,3651,7,8,f +6616,3660,15,2,f +6616,3666,15,1,f +6616,3666,0,1,f +6616,3679,7,9,f +6616,3680,15,4,f +6616,3680,0,4,f +6616,3680,7,1,f +6616,3684,1,1,f +6616,3705,0,8,f +6616,3708,0,1,f +6616,3709,7,1,f +6616,3713,7,21,f +6616,3795,0,2,f +6616,709,0,1,f +6616,775stk01,9999,1,t +6616,997c01,4,1,f +6616,x149,4,2,f +6617,3004,0,2,f +6617,3020,2,1,f +6617,3039,2,4,f +6617,3710,6,2,f +6617,3794a,14,1,f +6617,3794a,14,1,t +6617,6124,36,1,f +6617,6124,36,2,t +6618,2420,2,1,f +6618,3003,320,2,f +6618,3022,2,1,f +6618,3062b,2,1,f +6618,3062b,320,1,f +6618,6091,320,4,f +6619,12825,0,26,f +6619,14226c11,0,2,f +6619,2039,15,1,f +6619,2339,71,2,f +6619,2343,297,2,f +6619,2343,47,2,f +6619,2357,71,9,f +6619,2357,0,3,f +6619,2357,19,3,f +6619,2412b,80,10,f +6619,2412b,72,16,f +6619,2419,15,4,f +6619,2420,1,2,f +6619,2420,15,8,f +6619,2420,71,4,f +6619,2420,28,6,f +6619,2431,14,4,f +6619,2431,72,2,f +6619,2431,70,1,f +6619,2445,15,7,f +6619,2445,72,6,f +6619,2496,0,2,f +6619,2654,47,1,f +6619,2723,0,2,f +6619,2736,71,1,f +6619,2780,0,3,t +6619,2780,0,5,f +6619,2877,71,32,f +6619,2921,70,4,f +6619,298c02,71,1,t +6619,298c02,71,1,f +6619,3001,288,2,f +6619,3001,15,2,f +6619,3003,71,16,f +6619,30031,0,1,f +6619,30033,0,1,f +6619,3004,19,10,f +6619,3004,272,4,f +6619,3004,15,4,f +6619,3004,71,11,f +6619,3005,19,26,f +6619,3005,15,14,f +6619,3005,71,11,f +6619,3005,288,2,f +6619,30056,0,2,f +6619,3006,71,2,f +6619,3008,19,36,f +6619,3008,71,12,f +6619,3009,71,19,f +6619,3009,15,4,f +6619,3009,19,44,f +6619,3010,288,6,f +6619,3010,71,8,f +6619,30136,71,2,f +6619,30136,19,60,f +6619,30151a,47,1,f +6619,30153,36,2,f +6619,30153,33,3,f +6619,30153,47,1,f +6619,30165,4,1,f +6619,3020,15,3,f +6619,3020,71,3,f +6619,3020,0,3,f +6619,3021,72,2,f +6619,3022,72,2,f +6619,3022,2,5,f +6619,3022,71,4,f +6619,3023,14,5,f +6619,3023,28,56,f +6619,3023,0,40,f +6619,3023,71,6,f +6619,3023,19,20,f +6619,3023,15,4,f +6619,3023,47,23,f +6619,3024,28,4,f +6619,3024,46,3,f +6619,3024,15,18,f +6619,3024,34,4,f +6619,3024,320,4,f +6619,3024,19,14,f +6619,3024,14,10,f +6619,3028,72,7,f +6619,3029,72,12,f +6619,3030,0,2,f +6619,3031,0,2,f +6619,3034,15,6,f +6619,30363,0,4,f +6619,30383,72,4,f +6619,3039,0,4,f +6619,3040b,15,8,f +6619,3040b,288,2,f +6619,30504,72,1,f +6619,30553,0,4,f +6619,30565,71,1,f +6619,30565,15,3,f +6619,3062b,46,6,f +6619,3062b,71,36,f +6619,3065,47,22,f +6619,3068b,72,34,f +6619,3068b,19,14,f +6619,3068b,73,7,f +6619,3068b,71,7,f +6619,3069b,28,30,f +6619,3069b,71,30,f +6619,3069b,0,15,f +6619,3069b,15,20,f +6619,3069b,73,5,f +6619,3069b,72,36,f +6619,3069b,272,34,f +6619,3069bpr0099,15,2,f +6619,3070b,320,6,f +6619,3070b,73,4,f +6619,3070b,19,2,t +6619,3070b,15,2,t +6619,3070b,0,5,f +6619,3070b,73,2,t +6619,3070b,34,1,t +6619,3070b,0,3,t +6619,3070b,19,6,f +6619,3070b,71,6,f +6619,3070b,34,2,f +6619,3070b,71,2,t +6619,3070b,72,1,t +6619,3070b,14,2,t +6619,3070b,320,2,t +6619,3070b,15,4,f +6619,3070b,14,3,f +6619,3070b,72,4,f +6619,3185,0,3,f +6619,32028,71,6,f +6619,32028,72,10,f +6619,32028,15,3,f +6619,32062,4,2,f +6619,32125,71,1,f +6619,32530,0,2,f +6619,33061,34,2,f +6619,3460,72,4,f +6619,3460,19,6,f +6619,3622,71,15,f +6619,3622,0,3,f +6619,3622,19,22,f +6619,3623,15,11,f +6619,3623,14,5,f +6619,3623,71,3,f +6619,3623,72,4,f +6619,3624,1,1,f +6619,3626b,47,1,f +6619,3626bpr0001,14,7,f +6619,3660,19,1,f +6619,3660,71,2,f +6619,3665,15,4,f +6619,3665,71,20,f +6619,3666,72,4,f +6619,3666,15,13,f +6619,3666,19,18,f +6619,3666,71,2,f +6619,3678bpr0003,15,1,f +6619,3700,70,4,f +6619,3710,15,27,f +6619,3710,0,5,f +6619,3741,2,1,t +6619,3741,2,2,f +6619,3742,5,1,t +6619,3742,15,3,f +6619,3742,5,3,f +6619,3742,15,1,t +6619,3749,19,1,f +6619,3794b,19,6,f +6619,3794b,15,5,f +6619,3794b,28,4,f +6619,3795,71,12,f +6619,3811,19,1,f +6619,3832,0,2,f +6619,3832,71,7,f +6619,3833,4,1,f +6619,3836,70,1,f +6619,3878,0,1,f +6619,3899,47,1,f +6619,3901,28,1,f +6619,3941,0,9,f +6619,3956,1,1,f +6619,3956,0,1,f +6619,3957a,71,2,f +6619,3958,72,3,f +6619,4032a,0,5,f +6619,4032a,70,3,f +6619,4032a,2,4,f +6619,4070,0,70,f +6619,4070,15,2,f +6619,4070,47,5,f +6619,4081b,1,1,f +6619,4162,72,2,f +6619,4162,19,8,f +6619,4185,71,1,f +6619,41879a,85,1,f +6619,41879a,1,1,f +6619,41879a,272,1,f +6619,42446,72,1,f +6619,4274,71,1,t +6619,4274,71,2,f +6619,4282,0,1,f +6619,43337,0,6,f +6619,4345b,15,1,f +6619,4345b,4,1,f +6619,4346,15,1,f +6619,4346,47,1,f +6619,43898,15,1,f +6619,44358,70,2,f +6619,44728,71,2,f +6619,4477,15,36,f +6619,4495b,272,4,f +6619,4495b,4,4,f +6619,4510,15,2,f +6619,4510,71,4,f +6619,4510,72,16,f +6619,4589,33,1,f +6619,4599b,15,2,f +6619,4623,72,3,f +6619,4728,15,1,f +6619,4740,15,2,f +6619,48092,15,2,f +6619,48092,71,3,f +6619,48336,19,2,f +6619,4864b,47,2,f +6619,4865a,15,2,f +6619,4865a,40,1,f +6619,50231,0,2,f +6619,51739,0,7,f +6619,51739,320,11,f +6619,54200,71,18,f +6619,54200,0,8,f +6619,54200,15,3,f +6619,54200,4,2,f +6619,54200,0,2,t +6619,54200,4,1,t +6619,54200,15,1,t +6619,54200,71,2,t +6619,54821,14,1,f +6619,54821,1,1,f +6619,57895,47,3,f +6619,58827,0,1,f +6619,59349,47,4,f +6619,59443,71,3,f +6619,6003,72,5,f +6619,6019,14,7,f +6619,6019,15,4,f +6619,6019,1,3,f +6619,60474,71,1,f +6619,60478,15,4,f +6619,60592,288,38,f +6619,60593,288,38,f +6619,60594,0,2,f +6619,60596,0,1,f +6619,60596,15,3,f +6619,60601,47,38,f +6619,60602,47,38,f +6619,60603,47,2,f +6619,60616a,47,1,f +6619,6087,71,4,f +6619,6091,0,6,f +6619,6091,71,64,f +6619,6111,15,8,f +6619,6111,0,2,f +6619,6141,0,3,f +6619,6141,297,10,f +6619,6141,297,2,t +6619,6141,0,1,t +6619,6141,27,1,f +6619,6141,27,1,t +6619,61485,0,1,f +6619,61780,70,2,f +6619,6182,19,16,f +6619,6231,15,4,f +6619,62462,71,4,f +6619,6254,15,2,f +6619,6256,82,2,f +6619,6267,40,2,f +6619,62696,308,1,f +6619,62711,0,1,f +6619,62810,0,1,f +6619,63864,14,5,f +6619,63864,71,32,f +6619,63868,0,6,f +6619,63965,0,4,f +6619,64644,0,8,f +6619,6636,28,4,f +6619,6636,19,14,f +6619,6636,0,16,f +6619,6636,71,33,f +6619,75c08,71,1,f +6619,75c15,0,5,f +6619,85974,70,1,f +6619,85984,71,16,f +6619,86035,4,1,f +6619,87087,72,2,f +6619,87087,19,3,f +6619,87552,15,2,f +6619,87580,28,3,f +6619,87618,71,3,f +6619,88292,15,22,f +6619,88292,19,6,f +6619,88293,288,8,f +6619,970c00,15,1,f +6619,970c00,0,1,f +6619,970c00,2,2,f +6619,970c00,1,1,f +6619,970x026,14,1,f +6619,973pr1184c01,0,1,f +6619,973pr1192c01,0,1,f +6619,973pr1440c01,1,1,f +6619,973pr1443c01,15,1,f +6619,973pr1446c01,4,1,f +6619,973pr1485c01,4,1,f +6619,973pr1576c01,72,1,f +6622,32203,14,2,f +6622,32205,14,1,f +6622,32207,8,2,f +6622,32208,14,1,f +6622,32214,14,2,f +6622,32219,0,4,f +6622,3749,7,4,f +6622,zbb013,22,9,f +6622,zbb014,7,2,f +6622,zbb015,14,3,f +6623,2335,14,1,f +6623,2479,0,1,f +6623,2654,0,1,f +6623,2926,0,1,f +6623,30148,0,1,f +6623,3023,8,1,f +6623,30374,8,1,f +6623,30602,14,1,f +6623,3626bpr0126,14,1,f +6623,3795,7,1,f +6623,3942c,14,1,f +6623,4274,7,1,t +6623,4274,7,1,f +6623,4485,0,1,f +6623,4623,0,1,f +6623,4624,7,2,f +6623,4735,7,2,f +6623,6636,7,2,f +6623,970c00,0,1,f +6623,973px65c01,15,1,f +6624,122c01,7,2,f +6624,3001,1,3,f +6624,3004,1,4,f +6624,3004p20,1,2,f +6624,3004p90,1,4,f +6624,3005,1,6,f +6624,3008,1,7,f +6624,3009,1,1,f +6624,3010,1,10,f +6624,3010ap04,1,3,f +6624,3010pr0928,1,2,f +6624,3020,1,1,f +6624,3020,7,4,f +6624,3021,1,2,f +6624,3021,7,5,f +6624,3022,7,6,f +6624,3022,1,2,f +6624,3023,7,2,f +6624,3023,1,2,f +6624,3024,36,2,f +6624,3024,34,2,f +6624,3024,1,2,f +6624,3028,7,2,f +6624,3029,7,2,f +6624,3030,7,3,f +6624,3030,46,1,f +6624,3031,7,2,f +6624,3032,1,4,f +6624,3032,7,1,f +6624,3034,7,10,f +6624,3035,7,2,f +6624,3035,1,1,f +6624,3039,7,1,f +6624,3039p23,7,1,f +6624,3039p23,1,1,f +6624,3039p34,7,1,f +6624,3039p34,1,1,f +6624,3040b,1,4,f +6624,3062a,34,1,f +6624,3062a,36,15,f +6624,3066,46,7,f +6624,3067,46,2,f +6624,3069b,1,7,f +6624,3070b,1,2,f +6624,3144,7,1,f +6624,3149c01,7,1,f +6624,3297,7,2,f +6624,3298,7,2,f +6624,3460,7,6,f +6624,3460,1,4,f +6624,3479,7,6,f +6624,3479,1,8,f +6624,3622,1,10,f +6624,3623,14,8,f +6624,3623,0,4,f +6624,3623,1,4,f +6624,3626apr0001,14,4,f +6624,3641,0,4,f +6624,3660,1,9,f +6624,3665,1,2,f +6624,3666,7,7,f +6624,3666,1,3,f +6624,3710,1,6,f +6624,3710,7,5,f +6624,3794a,7,1,f +6624,3795,7,5,f +6624,3795,1,2,f +6624,3821,7,1,f +6624,3822,7,1,f +6624,3829c01,7,2,f +6624,3830,1,4,f +6624,3831,1,4,f +6624,3832,7,3,f +6624,3838,15,2,f +6624,3838,7,1,f +6624,3838,4,2,f +6624,3839a,7,4,f +6624,3842a,15,2,f +6624,3842a,4,2,f +6624,3933a,7,4,f +6624,3934a,7,4,f +6624,3935,7,2,f +6624,3936,7,2,f +6624,3937,1,2,f +6624,3938,1,2,f +6624,3939,46,3,f +6624,3939p91,1,1,f +6624,3940b,7,5,f +6624,3941,7,4,f +6624,3942a,7,2,f +6624,3943a,7,7,f +6624,3947a,7,1,f +6624,3956,1,2,f +6624,3956,7,3,f +6624,3957a,7,2,f +6624,3958,7,3,f +6624,3959,7,1,f +6624,3961,7,1,f +6624,3962a,0,2,f +6624,3963,7,2,f +6624,4006,0,1,f +6624,6099p05,7,1,f +6624,970c00,15,2,f +6624,970c00,4,2,f +6624,973p90c02,4,2,f +6624,973p90c05,15,2,f +6627,22670,383,1,f +6627,30153,34,1,f +6627,3626b,47,1,f +6627,4094b,5,1,f +6627,6203,5,1,f +6627,63965,15,1,f +6629,2362b,15,1,f +6629,2419,4,1,f +6629,2431,15,2,f +6629,2431,4,2,f +6629,2449,25,4,f +6629,2456,15,1,f +6629,2654,47,1,f +6629,298c02,71,1,f +6629,298c02,71,1,t +6629,3003,71,1,f +6629,3004,25,12,f +6629,3005,1,2,f +6629,3005,25,6,f +6629,3009,25,5,f +6629,30093,34,1,f +6629,3010,1,3,f +6629,3020,25,6,f +6629,3021,4,2,f +6629,3022,15,2,f +6629,3023,15,1,f +6629,3023,71,3,f +6629,3023,72,5,f +6629,3023,4,2,f +6629,3024,47,6,f +6629,3031,19,1,f +6629,3032,19,1,f +6629,3033,4,1,f +6629,30357,4,4,f +6629,3036,4,1,f +6629,3039,25,1,f +6629,3040b,25,4,f +6629,30602,25,4,f +6629,3062b,2,1,f +6629,3062b,4,5,f +6629,3068b,1,1,f +6629,3068b,4,1,f +6629,3069b,25,2,f +6629,3069b,4,2,f +6629,3069bpr0108,15,6,f +6629,3070b,1,2,f +6629,3070b,1,1,t +6629,32064b,4,1,f +6629,33243,72,2,f +6629,3455,4,1,f +6629,3622,25,2,f +6629,3622,1,2,f +6629,3623,4,2,f +6629,3623,1,2,f +6629,3624,0,1,f +6629,3710,72,1,f +6629,3710,71,1,f +6629,3710,25,1,f +6629,3713,4,1,f +6629,3713,4,1,t +6629,3749,19,1,f +6629,3794a,4,1,f +6629,3829c01,15,1,f +6629,3830stk01,9999,1,t +6629,3937,72,1,f +6629,3938,15,1,f +6629,3942c,25,1,f +6629,4070,25,8,f +6629,4079,0,3,f +6629,4162,4,2,f +6629,41749,25,1,f +6629,41750,25,1,f +6629,41879a,70,1,f +6629,42022,25,2,f +6629,4215b,15,1,f +6629,4215b,47,1,f +6629,43888,72,1,f +6629,44567a,0,2,f +6629,4488,0,6,f +6629,4519,71,1,f +6629,4599a,4,1,f +6629,4864b,71,3,f +6629,4864bpr16,47,8,f +6629,52031,25,1,f +6629,54200,47,6,f +6629,54200,47,1,t +6629,54872pr01,14,1,f +6629,54873pr0001,78,1,f +6629,59443,71,1,f +6629,6014b,71,6,f +6629,6041,0,1,f +6629,60471,4,2,f +6629,60700,15,6,f +6629,6091,4,2,f +6629,61286pr0001,27,1,f +6629,6141,47,1,t +6629,6141,34,1,t +6629,6141,47,2,f +6629,6141,34,1,f +6629,6636,71,1,f +6629,970c00,272,1,f +6629,970c00pr0108,78,1,f +6629,973c11,14,1,f +6629,973pr1164c01,272,1,f +6629,973pr1259c01,78,1,f +6630,2412b,71,6,f +6630,2420,14,2,f +6630,2431,71,4,f +6630,2431,14,1,f +6630,2431,25,3,f +6630,2431pr0017,14,2,f +6630,2432,4,2,f +6630,2486,0,2,f +6630,2540,14,2,f +6630,2555,0,2,f +6630,2654,46,2,f +6630,2780,0,4,f +6630,2780,0,1,t +6630,2817,0,2,f +6630,2877,72,4,f +6630,298c02,71,2,t +6630,298c02,71,3,f +6630,3001,15,1,f +6630,3002,27,1,f +6630,3003,71,6,f +6630,3009,71,1,f +6630,3020,14,1,f +6630,3021,0,2,f +6630,3023,25,4,f +6630,3023,4,3,f +6630,3023,2,4,f +6630,30237a,72,1,f +6630,3024,272,2,f +6630,30248,0,1,f +6630,3031,0,4,f +6630,3032,72,3,f +6630,30361c,27,2,f +6630,30367b,27,2,f +6630,30383,72,3,f +6630,30407,0,3,f +6630,30414,14,1,f +6630,3062b,15,2,f +6630,3068b,71,2,f +6630,3068b,272,1,f +6630,3068b,0,2,f +6630,3069b,15,4,f +6630,3069b,4,4,f +6630,3070bpr0007,71,2,t +6630,3070bpr0007,71,2,f +6630,32018,0,2,f +6630,32064b,72,2,f +6630,32123b,14,1,t +6630,32123b,14,4,f +6630,32125,71,1,f +6630,32192,0,2,f +6630,32316,72,2,f +6630,32529,0,2,f +6630,32530,4,2,f +6630,32556,19,1,f +6630,3298,71,2,f +6630,3460,0,6,f +6630,3622,72,4,f +6630,3623,0,2,f +6630,3626bpr0551,14,1,f +6630,3626bpr0553,42,1,f +6630,3660,71,10,f +6630,3665,71,8,f +6630,3666,272,3,f +6630,3679,71,1,f +6630,3680,15,1,f +6630,3700,14,2,f +6630,3705,0,2,f +6630,3707,0,1,f +6630,3708,0,2,f +6630,3710,71,4,f +6630,3710,25,3,f +6630,3713,4,1,t +6630,3713,4,9,f +6630,3747b,72,6,f +6630,3749,19,2,f +6630,3794b,2,1,f +6630,3795,72,6,f +6630,3823,47,2,f +6630,3829c01,0,1,f +6630,3941,0,1,f +6630,4032a,0,4,f +6630,4032a,15,1,f +6630,4070,15,2,f +6630,4081b,14,2,f +6630,4085c,71,2,f +6630,4150,15,1,f +6630,41531,25,1,f +6630,4162,272,1,f +6630,42003,71,2,f +6630,4286,25,2,f +6630,4287,72,4,f +6630,43093,1,5,f +6630,43713,0,1,f +6630,43719,25,1,f +6630,43722,25,1,f +6630,43723,25,1,f +6630,44309,0,4,f +6630,44568,71,1,f +6630,44728,72,4,f +6630,4477,71,2,f +6630,4519,71,1,f +6630,45590,0,2,f +6630,4589,14,2,f +6630,4617b,0,1,f +6630,4735,71,2,f +6630,4868b,25,1,f +6630,4871,0,1,f +6630,48729a,0,1,t +6630,48729a,0,2,f +6630,4873,0,1,f +6630,50747,47,1,f +6630,50950,0,2,f +6630,52031,272,1,f +6630,54200,4,2,f +6630,54200,4,1,t +6630,56145,71,4,f +6630,56902,71,1,f +6630,58176,36,2,f +6630,59443,72,1,f +6630,60219,71,2,f +6630,60470a,0,1,f +6630,60470a,71,1,f +6630,60478,71,2,f +6630,6070,80,4,f +6630,60849,0,2,f +6630,6091,0,2,f +6630,61184,71,2,f +6630,6141,36,2,t +6630,6141,36,7,f +6630,6141,46,2,t +6630,6141,46,4,f +6630,6180,272,1,f +6630,62462,4,4,f +6630,62699pr0002,15,1,f +6630,62810,0,1,f +6630,63868,71,2,f +6630,6541,71,2,f +6630,6541,14,2,f +6630,6636,14,1,f +6630,85961pr01,72,1,f +6630,85975,320,2,f +6630,970c00pr0118,272,1,f +6630,970c00pr0128,0,1,f +6630,973pr1386c01,272,1,f +6631,2343,47,2,f +6631,2362a,15,2,f +6631,2412b,0,1,f +6631,2417,2,1,f +6631,2432,13,3,f +6631,2536,6,5,f +6631,2540,15,1,f +6631,2546p01,4,1,f +6631,2550c01,6,1,f +6631,2563,6,1,f +6631,2566,2,1,f +6631,2571,15,2,f +6631,2610,14,2,f +6631,2614,4,1,f +6631,2654,7,1,f +6631,298c02,15,1,f +6631,3001,15,1,f +6631,3001,7,1,f +6631,3002,15,1,f +6631,3003,15,2,f +6631,3004,15,9,f +6631,3004,7,1,f +6631,3005,15,1,f +6631,3008,7,3,f +6631,3010,7,3,f +6631,3010,15,5,f +6631,3020,15,2,f +6631,3023,13,5,f +6631,3023,7,2,f +6631,3024,13,3,f +6631,3024,15,1,f +6631,3028,7,1,f +6631,3581,15,2,f +6631,3622,15,8,f +6631,3622px1,15,1,f +6631,3623,13,6,f +6631,3623,15,1,f +6631,3626bp02,14,2,f +6631,3626bp03,14,2,f +6631,3644,13,2,f +6631,3666,13,1,f +6631,3666,15,1,f +6631,3741,2,1,f +6631,3742,4,1,t +6631,3742,4,3,f +6631,3829c01,7,1,f +6631,3857px1,17,1,f +6631,3899,13,1,f +6631,3901,6,1,f +6631,3901,0,1,f +6631,3960pb001,15,1,f +6631,4032a,2,1,f +6631,4032a,15,1,f +6631,4081b,0,1,f +6631,4085c,0,1,f +6631,4095,15,2,f +6631,4150px14,15,1,f +6631,4485,15,1,f +6631,4509,7,2,f +6631,4536,14,1,f +6631,4589,15,1,f +6631,4599a,13,1,f +6631,476,15,1,f +6631,4854,15,1,f +6631,4855,15,1,f +6631,4859,13,1,f +6631,4865a,41,1,f +6631,56823,0,1,f +6631,6075,15,1,f +6631,6093,4,1,f +6631,6111,7,1,f +6631,6111,15,3,f +6631,6141,15,8,f +6631,6141,7,3,f +6631,6148,2,4,f +6631,92410,15,1,f +6631,970c00,0,1,f +6631,970c00,15,1,f +6631,970x001,14,1,f +6631,970x026,14,1,f +6631,973pb0018c01,13,1,f +6631,973pr1190c01,0,1,f +6631,973pr1204c01,15,1,f +6631,973px23c01,13,1,f +6631,x66px9,47,1,f +6632,2419,7,1,f +6632,2555,4,2,f +6632,30103,0,1,f +6632,30105,0,1,f +6632,3020,7,1,f +6632,3022,14,1,f +6632,3039,4,1,f +6632,3626bpx74,14,1,f +6632,3957a,36,1,f +6632,4081b,0,2,f +6632,4596,4,1,f +6632,4859,0,1,f +6632,59,383,1,f +6632,6126a,57,2,f +6632,6133,0,2,f +6632,970x026,8,1,f +6632,973px125c01,4,1,f +6633,2730,1,4,f +6633,3700,1,24,f +6633,3701,1,16,f +6633,3702,1,8,f +6633,3703,1,4,f +6633,3894,1,8,f +6633,3895,1,4,f +6635,2458,4,2,f +6635,2470,6,2,f +6635,2488,0,1,f +6635,2489,6,1,f +6635,251,4,1,f +6635,2586p4f,7,1,f +6635,2817,0,1,f +6635,3004,0,1,f +6635,30103,0,1,f +6635,3020,0,1,f +6635,3022,0,1,f +6635,3023,0,1,f +6635,3023,4,1,f +6635,3031,0,1,f +6635,3034,0,2,f +6635,3069b,7,1,f +6635,3626bp44,14,1,f +6635,3626bpx54,14,1,f +6635,3679,7,1,f +6635,3794a,14,1,f +6635,3844,0,1,f +6635,3847,8,1,f +6635,3849,8,1,f +6635,4085c,14,2,f +6635,4488,7,4,f +6635,4489,6,2,f +6635,4493c01pb02,0,1,f +6635,4495a,14,1,f +6635,4495a,4,1,f +6635,4497,6,1,f +6635,4587,4,1,f +6635,4589,57,2,f +6635,4623,0,2,f +6635,59,383,1,f +6635,6122,0,1,f +6635,6126a,57,2,f +6635,6141,14,2,f +6635,87692,4,1,t +6635,87693,4,1,t +6635,87694,4,1,f +6635,970x026,8,1,f +6635,970x026,4,1,f +6635,973p45c01,8,1,f +6635,973px90c01,0,1,f +6636,3004,7,2,f +6636,3021,7,1,f +6636,3024,36,2,f +6636,3024,7,2,f +6636,3032,7,1,f +6636,3034,7,2,f +6636,3036,7,1,f +6636,3039,7,1,f +6636,3062b,36,2,f +6636,3065,34,1,f +6636,3298p90,7,1,f +6636,3479,7,1,f +6636,3626apr0001,14,1,f +6636,3829c01,7,1,f +6636,3832,7,1,f +6636,3838,4,1,f +6636,3839a,7,1,f +6636,3842a,4,1,f +6636,3933a,7,2,f +6636,3934a,7,2,f +6636,3940a,7,4,f +6636,3941,7,8,f +6636,3942a,7,2,f +6636,3943a,7,2,f +6636,3956,7,4,f +6636,3957a,7,2,f +6636,3959,7,2,f +6636,3963,7,2,f +6636,970c00,4,1,f +6636,973p90c02,4,1,f +6638,10928,72,2,f +6638,11090,72,6,f +6638,11153,71,2,f +6638,11211,71,1,f +6638,11212,72,4,f +6638,11212,71,2,f +6638,11217pr0007b,179,1,f +6638,11399,72,3,f +6638,11476,0,1,f +6638,11477,326,4,f +6638,11908,0,1,f +6638,13547,71,6,f +6638,13547,0,10,f +6638,14418,71,1,f +6638,14769,71,2,f +6638,14769,326,2,f +6638,15068,71,5,f +6638,15068,0,1,f +6638,15207,71,2,f +6638,15303,33,6,f +6638,15311pr0001,326,1,f +6638,15392,72,3,f +6638,15392,72,2,t +6638,15400,72,4,f +6638,15403,0,3,f +6638,15461,0,8,f +6638,15462,28,2,f +6638,15573,19,4,f +6638,15672,72,2,f +6638,18646,71,1,f +6638,18649,0,2,f +6638,18651,0,6,f +6638,18654,72,1,t +6638,18654,72,4,f +6638,18671,72,1,f +6638,18674,15,3,f +6638,19159,0,2,f +6638,19888,308,1,f +6638,22888,72,1,f +6638,2412b,72,14,f +6638,2412b,0,3,f +6638,2412b,326,3,f +6638,2412b,320,5,f +6638,2420,72,2,f +6638,2420,19,2,f +6638,2431,71,2,f +6638,24316,70,4,f +6638,2432,72,1,f +6638,2456,4,1,f +6638,2654,0,12,f +6638,2780,0,25,f +6638,2780,0,4,t +6638,2817,4,4,f +6638,3003,19,2,f +6638,30031,72,2,f +6638,3004,19,1,f +6638,30150,14,1,f +6638,3020,71,10,f +6638,3020,326,1,f +6638,3020,28,12,f +6638,3020,72,1,f +6638,3021,72,8,f +6638,3021,0,1,f +6638,3022,0,7,f +6638,3023,71,3,f +6638,3023,0,22,f +6638,30304,72,1,f +6638,3031,71,6,f +6638,3032,71,6,f +6638,3032,72,4,f +6638,3033,71,1,f +6638,3034,71,1,f +6638,3035,71,1,f +6638,30374,0,1,f +6638,30374,35,2,f +6638,30375,19,2,f +6638,30376,19,2,f +6638,30377,19,2,f +6638,30377,19,1,t +6638,30378,19,2,f +6638,30383,72,2,f +6638,30386,71,2,f +6638,30554b,71,2,f +6638,3062b,72,4,f +6638,3068b,72,2,f +6638,3069b,40,13,f +6638,3069b,71,6,f +6638,3184,0,1,f +6638,32000,71,2,f +6638,32002,19,2,f +6638,32028,72,10,f +6638,32028,4,2,f +6638,32054,4,9,f +6638,32056,14,4,f +6638,32062,4,12,f +6638,32064a,4,4,f +6638,32072,14,2,f +6638,32073,71,1,f +6638,32123b,14,6,f +6638,32140,14,2,f +6638,32140,72,2,f +6638,32184,0,4,f +6638,32192,72,8,f +6638,32270,0,1,f +6638,32324,71,4,f +6638,32449,4,2,f +6638,32523,71,4,f +6638,32524,0,5,f +6638,32530,0,3,f +6638,32556,19,10,f +6638,32557,71,4,f +6638,3456,71,2,f +6638,3460,71,3,f +6638,3623,71,4,f +6638,3626cpr1149,78,2,f +6638,3626cpr1983,19,1,f +6638,3626cpr1984,92,1,f +6638,3660,71,4,f +6638,3666,28,6,f +6638,3666,72,6,f +6638,3673,71,4,f +6638,3679,71,1,f +6638,3680,0,1,f +6638,3701,0,2,f +6638,3702,71,2,f +6638,3703,71,4,f +6638,3706,4,2,f +6638,3706,0,1,f +6638,3710,0,6,f +6638,3710,72,12,f +6638,3713,71,1,t +6638,3713,4,1,f +6638,3713,4,1,t +6638,3713,71,2,f +6638,3795,71,1,f +6638,3795,72,6,f +6638,3829c01,4,1,f +6638,3832,71,2,f +6638,3894,72,1,f +6638,3899,47,1,f +6638,3941,0,10,f +6638,3941,72,1,f +6638,3958,72,2,f +6638,3960,71,1,f +6638,4032a,72,8,f +6638,40490,72,3,f +6638,4081b,72,2,f +6638,41239,71,5,f +6638,4162,71,1,f +6638,4162,72,6,f +6638,4162,320,2,f +6638,41677,72,3,f +6638,41678,71,1,f +6638,41769,72,1,f +6638,41769,71,6,f +6638,41770,72,1,f +6638,41770,71,6,f +6638,41854,326,1,f +6638,42003,72,20,f +6638,4274,1,1,t +6638,4274,71,6,f +6638,4274,1,8,f +6638,43093,1,28,f +6638,43857,0,2,f +6638,43898,71,3,f +6638,44302a,71,2,f +6638,44375a,71,10,f +6638,4460b,71,2,f +6638,4477,0,2,f +6638,4519,71,2,f +6638,4595,0,1,f +6638,4740,72,1,f +6638,47457,72,3,f +6638,47458,326,1,f +6638,48336,71,3,f +6638,48723,72,2,f +6638,51739,320,1,f +6638,51739,71,1,f +6638,52345,308,1,f +6638,54200,72,2,t +6638,54200,72,4,f +6638,54383,71,4,f +6638,54384,71,4,f +6638,55013,72,1,f +6638,55817,72,10,f +6638,58247,0,4,f +6638,59230,19,2,f +6638,59230,19,1,t +6638,59443,72,2,f +6638,59443,0,2,f +6638,60470b,71,1,f +6638,60474,71,2,f +6638,60478,72,18,f +6638,60479,0,2,f +6638,60897,0,2,f +6638,6111,72,1,f +6638,6141,0,10,f +6638,6141,72,14,f +6638,6141,33,10,f +6638,61485,71,1,f +6638,6190,72,4,f +6638,63864,320,6,f +6638,63864,0,2,f +6638,63868,28,4,f +6638,63868,71,8,f +6638,64567,80,2,t +6638,64567,80,2,f +6638,64781,0,1,f +6638,6558,1,5,f +6638,6572,71,1,f +6638,6632,72,6,f +6638,6636,71,9,f +6638,76138,71,2,f +6638,85861,0,1,t +6638,85861,0,2,f +6638,85984,0,3,f +6638,85984,72,4,f +6638,85984,326,1,f +6638,85984pr0006,72,3,f +6638,87079,72,2,f +6638,87083,72,10,f +6638,87994,71,1,f +6638,87994,0,3,t +6638,87994,71,1,t +6638,87994,0,8,f +6638,88646,0,1,f +6638,91988,72,2,f +6638,92099,28,1,f +6638,92280,0,3,f +6638,92907,0,1,f +6638,93095,0,3,f +6638,93273,72,2,f +6638,96874,25,1,t +6638,970c00pr0630,308,1,f +6638,970c00pr1092,308,1,f +6638,970c00pr1093,0,1,f +6638,970c11pr0574,0,1,f +6638,973pr2484c01,326,1,f +6638,973pr2594c01,326,1,f +6638,973pr3475c01,0,1,f +6638,973pr3476c01,308,1,f +6638,98138,47,11,f +6638,98138,47,3,t +6638,98138pr0010,179,1,f +6638,98138pr0010,179,1,t +6638,98285,0,4,f +6638,98286,71,12,f +6638,98560,72,2,f +6638,99780,71,4,f +6638,99780,72,2,f +6638,99781,71,4,f +6639,2357,15,4,f +6639,2377,15,2,f +6639,2413,15,2,f +6639,2432,14,2,f +6639,2437,40,1,f +6639,2458,1,2,f +6639,2540,72,2,f +6639,3003,71,1,f +6639,3004,15,4,f +6639,3009,15,1,f +6639,3010,15,2,f +6639,3021,72,2,f +6639,3022,14,2,f +6639,3023,4,4,f +6639,3023,72,4,f +6639,3023,1,2,f +6639,3024,1,2,f +6639,3024,72,4,f +6639,3031,15,2,f +6639,3031,72,1,f +6639,3034,1,1,f +6639,3035,71,1,f +6639,30363,0,4,f +6639,3039pr0013,15,1,f +6639,3068b,15,1,f +6639,3068b,1,1,f +6639,3070b,72,2,f +6639,3070b,72,1,t +6639,3139,0,6,f +6639,3460,1,2,f +6639,3665,15,2,f +6639,3666,1,2,f +6639,3710,1,5,f +6639,3795,72,1,f +6639,3853,0,1,f +6639,3854,15,2,f +6639,3899,4,2,f +6639,3941,15,1,f +6639,3942c,15,1,f +6639,3957a,15,1,f +6639,4032a,2,1,f +6639,4032a,4,2,f +6639,4032a,15,1,f +6639,4345b,71,1,f +6639,4346,47,1,f +6639,43712,15,2,f +6639,44571,15,1,f +6639,44822,72,1,f +6639,4599a,71,1,f +6639,4617b,0,2,f +6639,4624,15,6,f +6639,48183,72,2,f +6639,48183,1,1,f +6639,4854,1,1,f +6639,4855,1,4,f +6639,4856a,15,2,f +6639,4858,15,1,f +6639,4861,15,1,f +6639,4862,40,2,f +6639,4865a,15,2,f +6639,4870,71,3,f +6639,48729a,72,1,f +6639,48933,15,1,f +6639,54383,15,1,f +6639,54384,15,1,f +6639,55295,0,1,f +6639,55296,0,1,f +6639,55297,0,1,f +6639,55298,0,1,f +6639,55299,0,1,f +6639,55300,0,1,f +6639,6140,14,1,f +6639,6141,36,1,f +6639,6141,36,1,t +6639,6141,34,1,f +6639,6141,34,1,t +6639,6239,15,1,f +6639,6636,72,1,f +6639,73983,1,1,f +6646,2335,1,5,f +6646,2335,4,5,f +6646,2412b,0,6,f +6646,2458,15,4,f +6646,2460,15,4,f +6646,2465,15,2,f +6646,2540,0,10,f +6646,3003,15,8,f +6646,3004,15,8,f +6646,30043,4,4,f +6646,3006,7,4,f +6646,3010,15,4,f +6646,3020,4,8,f +6646,3021,0,16,f +6646,3022,4,46,f +6646,3023,7,12,f +6646,3037,15,4,f +6646,3039,15,8,f +6646,30488,7,2,f +6646,30488c01,15,5,f +6646,30488c01,0,5,f +6646,30489,2,10,f +6646,30492,2,2,f +6646,30493,0,2,f +6646,3068b,2,46,f +6646,32064b,7,16,f +6646,3403c01,0,2,f +6646,3626bp03,14,2,f +6646,3626bp05,14,2,f +6646,3626bpa3,14,2,f +6646,3626bpb0103,14,2,f +6646,3626bpx134,14,2,f +6646,3626bpx33,14,2,f +6646,3700,15,8,f +6646,3710,15,4,f +6646,3900,7,8,f +6646,3901,0,4,f +6646,3901,19,2,f +6646,3901,6,4,f +6646,3957a,15,4,f +6646,41732,4,2,f +6646,41733,4,2,f +6646,4176,15,14,f +6646,41819c01,2,2,f +6646,4204,2,2,f +6646,4476b,15,4,f +6646,4477,15,10,f +6646,4485,0,1,f +6646,4485,15,1,f +6646,4495b,4,4,f +6646,4871,7,12,f +6646,6636,15,2,f +6646,71509,0,4,f +6646,72824p01,15,2,f +6646,72824pr02,15,1,f +6646,78c11,15,4,f +6646,970c00,8,1,f +6646,970c00,7,1,f +6646,970c00,1,5,f +6646,970c00pb020,15,5,f +6646,973pb0165c01,0,1,f +6646,973pb0166c01,0,1,f +6646,973pb0167c01,4,1,f +6646,973pb0169c01,4,1,f +6646,973pb0171c01,4,1,f +6646,973pb0173c01,4,1,f +6646,973pb0175c01,4,1,f +6646,973pb0279c01,1,5,f +6646,x386,15,2,f +6647,10201,4,1,f +6647,2357,15,2,f +6647,2412b,72,9,f +6647,2419,0,1,f +6647,2420,4,2,f +6647,2420,0,2,f +6647,2437,40,1,f +6647,2444,72,1,f +6647,2460,72,2,f +6647,2479,0,1,f +6647,2654,46,1,f +6647,2780,0,1,t +6647,2780,0,4,f +6647,2877,15,2,f +6647,3001,71,2,f +6647,3002,15,1,f +6647,3004,25,4,f +6647,3004,15,4,f +6647,3005,25,3,f +6647,3007,15,1,f +6647,30136,72,4,f +6647,3020,4,3,f +6647,3020,25,3,f +6647,3020,15,2,f +6647,3021,25,2,f +6647,3021,15,3,f +6647,3021,71,3,f +6647,3022,15,4,f +6647,3022,25,1,f +6647,3023,72,2,f +6647,3023,15,4,f +6647,3023,25,4,f +6647,3023,19,2,f +6647,3024,46,6,f +6647,3024,71,2,f +6647,3024,25,4,f +6647,3032,0,3,f +6647,30363,0,2,f +6647,3038,71,4,f +6647,3040b,25,2,f +6647,3040b,0,1,f +6647,3040b,15,2,f +6647,30592,71,2,f +6647,3065,40,6,f +6647,3068b,0,4,f +6647,3068b,4,1,f +6647,3069b,14,6,f +6647,3070b,14,4,f +6647,3070b,14,1,t +6647,3176,71,1,f +6647,32002,72,3,f +6647,32002,72,1,t +6647,32028,0,6,f +6647,32062,4,1,f +6647,32124,0,6,f +6647,32184,71,2,f +6647,32291,71,1,f +6647,32449,0,2,f +6647,32523,72,1,f +6647,3460,0,6,f +6647,3622,15,6,f +6647,3622,72,2,f +6647,3623,71,4,f +6647,3623,0,4,f +6647,3623,72,2,f +6647,3660,25,1,f +6647,3660,72,2,f +6647,3665,25,3,f +6647,3665,72,2,f +6647,3666,25,1,f +6647,3666,0,6,f +6647,3666,71,5,f +6647,3673,71,1,f +6647,3673,71,1,t +6647,3700,4,2,f +6647,3702,71,2,f +6647,3709,72,2,f +6647,3710,71,6,f +6647,3710,25,4,f +6647,3710,0,5,f +6647,3710,15,4,f +6647,3747b,15,1,f +6647,3747b,72,1,f +6647,3749,19,2,f +6647,3794b,0,5,f +6647,3795,15,1,f +6647,3795,72,2,f +6647,3795,71,2,f +6647,3795,25,4,f +6647,3832,71,1,f +6647,3894,4,2,f +6647,3937,71,2,f +6647,3958,72,1,f +6647,4070,47,2,f +6647,4162,0,3,f +6647,41764,72,1,f +6647,41765,72,1,f +6647,41769,71,2,f +6647,41770,71,2,f +6647,42023,72,2,f +6647,42610,71,1,f +6647,4274,1,1,t +6647,4274,1,1,f +6647,4286,0,2,f +6647,4287,15,4,f +6647,4287,72,2,f +6647,43093,1,4,f +6647,43337,40,1,f +6647,43710,25,1,f +6647,43711,25,1,f +6647,43720,15,1,f +6647,43721,15,1,f +6647,43722,25,3,f +6647,43723,25,3,f +6647,43898,72,1,f +6647,43898,0,1,f +6647,4445,15,2,f +6647,44728,72,6,f +6647,4510,0,6,f +6647,4589,72,3,f +6647,4600,71,2,f +6647,4624,15,8,f +6647,50950,0,1,f +6647,50951,0,1,f +6647,54200,40,1,t +6647,54200,40,3,f +6647,54383,15,1,f +6647,54384,15,1,f +6647,55981,71,2,f +6647,59895,0,4,f +6647,60477,72,2,f +6647,60479,15,2,f +6647,6091,25,2,f +6647,6134,71,2,f +6647,61409,72,4,f +6647,6141,4,7,f +6647,6141,47,1,t +6647,6141,47,3,f +6647,6141,4,1,t +6647,6141,72,2,f +6647,6141,72,1,t +6647,61483,71,2,f +6647,61678,25,12,f +6647,6233,71,2,f +6647,63868,71,2,f +6647,64566,0,1,f +6647,6564,15,1,f +6647,6565,15,1,f +6647,6628,0,2,f +6647,6636,4,2,f +6647,87414,0,4,f +6647,92099,15,1,f +6647,92907,0,2,f +6648,14226c11,0,1,f +6648,2512,14,1,f +6648,2926,7,2,f +6648,3001,14,2,f +6648,30016,15,2,f +6648,3002,14,8,f +6648,3003,15,4,f +6648,3004,15,4,f +6648,3005,15,2,f +6648,3008,15,4,f +6648,3008,5,1,f +6648,3009,15,4,f +6648,3010,14,1,f +6648,30107,74,1,f +6648,30109,5,2,f +6648,30109,13,1,f +6648,30110,15,6,f +6648,30112,4,1,f +6648,30112,2,1,f +6648,3024,15,4,f +6648,3062b,2,5,f +6648,3069b,15,2,f +6648,3069b,4,3,f +6648,3139,0,4,f +6648,33051,2,2,f +6648,3308,5,2,f +6648,3741,2,4,f +6648,3742,13,2,t +6648,3742,14,6,f +6648,3742,14,2,t +6648,3742,13,6,f +6648,3837,0,1,f +6648,3852b,74,2,f +6648,3899,13,3,f +6648,4207,2,2,f +6648,4424,1,1,f +6648,4477,15,1,f +6648,45,383,2,f +6648,4599a,1,1,f +6648,4599a,4,1,f +6648,4624,14,4,f +6648,6019,14,2,f +6648,6161,20,2,f +6648,6162,74,2,f +6648,6162,14,2,f +6648,6171pr02,6,1,f +6648,6171pr02,0,1,f +6648,6175,8,1,f +6648,6179,5,2,f +6648,6180,5,1,f +6648,6182,5,2,f +6648,6184,5,2,f +6648,6185,6,1,f +6648,6185,0,1,f +6648,6187,14,1,f +6648,6189,0,3,f +6648,6191,5,2,f +6648,6193,6,1,f +6648,6195,5,1,f +6648,6196,14,1,f +6648,6197b,5,1,f +6648,6201,0,1,f +6648,6203,5,1,f +6648,6203,1,1,f +6648,6204,0,1,f +6648,6204,6,1,f +6648,6206,14,1,f +6648,6206,15,1,f +6648,6251,15,1,f +6648,6251,0,1,f +6648,6255,2,2,f +6648,6256,14,1,f +6648,70973c01,383,1,f +6648,71861,383,1,f +6648,75347,15,4,f +6648,belblank,10,2,f +6648,belvfem36,-1,1,f +6648,belvfem68,-1,1,f +6648,belvfem69,-1,1,f +6648,pouch03,17,2,f +6650,2413,85,2,f +6650,2436,15,2,f +6650,2462,27,2,f +6650,2654,72,1,f +6650,3004,27,5,f +6650,3004,71,2,f +6650,3020,27,2,f +6650,3020,15,1,f +6650,3021,85,3,f +6650,3021,15,9,f +6650,3022,27,2,f +6650,3022,15,3,f +6650,3023,4,1,f +6650,3023,27,17,f +6650,3031,15,1,f +6650,30373,15,1,f +6650,3039,15,2,f +6650,30414,1,1,f +6650,30602,15,5,f +6650,3069b,15,2,f +6650,3069bpr0111,15,1,f +6650,32062,4,1,f +6650,32064b,15,2,f +6650,3298pr0029,15,1,f +6650,3298pr0030,15,1,f +6650,3300,15,1,f +6650,3660,27,6,f +6650,3665,15,6,f +6650,3666,71,1,f +6650,3700,72,1,f +6650,3710,27,4,f +6650,3710,71,4,f +6650,3747b,72,1,f +6650,3795,71,3,f +6650,3941,4,1,f +6650,3956,0,2,f +6650,4150,27,2,f +6650,41879a,1,1,f +6650,42023,27,2,f +6650,43093,1,1,f +6650,43710,27,1,f +6650,43711,27,1,f +6650,43722,27,3,f +6650,43723,27,3,f +6650,44728,15,11,f +6650,4589,36,1,f +6650,47455,72,2,f +6650,48170,72,2,f +6650,48172,15,1,f +6650,50950,27,6,f +6650,54200,34,1,t +6650,54200,36,1,f +6650,54200,36,1,t +6650,54200,34,1,f +6650,54200,27,2,t +6650,54200,27,12,f +6650,57909a,72,6,f +6650,60474,0,2,f +6650,60474,85,2,f +6650,60477,15,2,f +6650,61184,4,1,f +6650,6141,85,2,f +6650,6141,85,1,t +6650,61678,15,4,f +6650,62712,15,4,f +6650,63864,15,8,f +6650,64225,15,2,f +6650,64251,15,2,f +6650,6536,15,1,f +6650,6587,28,1,f +6650,6636,15,2,f +6650,73983,0,4,f +6650,85080,0,4,f +6650,87087,71,2,f +6650,87769pr0001,27,1,f +6650,88067,47,1,f +6650,88068,47,1,f +6650,88200pb01,85,1,f +6650,973pr1532c01,1,1,f +6654,2450,1,2,f +6654,3022,4,1,f +6654,3039,47,1,f +6654,3710,14,2,f +6654,3747b,4,1,f +6654,4859,4,1,f +6656,2357,72,2,f +6656,2376,0,1,f +6656,2412b,42,2,f +6656,2412b,71,4,f +6656,2412b,41,4,f +6656,2431,1,2,f +6656,2431,15,4,f +6656,2432,1,1,f +6656,2445,15,4,f +6656,2465,15,1,f +6656,2540,70,1,f +6656,2569,71,1,f +6656,2653,0,2,f +6656,2654,72,6,f +6656,2877,71,11,f +6656,298c02,15,1,t +6656,298c02,15,1,f +6656,298c05,0,2,f +6656,298c05,0,1,t +6656,3001,2,1,f +6656,3001,72,1,f +6656,3001,71,3,f +6656,3003,1,6,f +6656,3004,72,1,f +6656,3005,72,3,f +6656,3008,15,1,f +6656,3009,15,1,f +6656,3010,71,3,f +6656,3010,0,1,f +6656,3010,72,2,f +6656,3010,15,2,f +6656,30135,72,2,f +6656,30150,0,1,f +6656,30165,72,2,f +6656,30194,72,1,f +6656,3020,19,1,f +6656,3020,71,2,f +6656,3021,71,2,f +6656,3021,72,2,f +6656,3023,1,3,f +6656,30237a,71,2,f +6656,30237a,0,2,f +6656,30249,15,2,f +6656,3028,72,2,f +6656,30283,0,1,f +6656,3029,71,2,f +6656,3032,0,2,f +6656,3034,15,4,f +6656,3035,15,2,f +6656,3035,72,1,f +6656,30355,15,2,f +6656,30356,15,2,f +6656,3036,71,1,f +6656,3036,15,1,f +6656,3036,72,1,f +6656,30360,15,4,f +6656,30364,71,6,f +6656,30365,15,6,f +6656,30367b,15,1,f +6656,30368,0,1,f +6656,30374,71,6,f +6656,30374,41,2,f +6656,30374,0,1,f +6656,30381,0,1,f +6656,30386,71,1,f +6656,30388,71,1,f +6656,3039,71,6,f +6656,30395,72,1,f +6656,30396,0,1,f +6656,3039pr0008,0,1,f +6656,30408px2,15,4,f +6656,30414,71,1,f +6656,30526,71,8,f +6656,30561,4,2,f +6656,3062b,19,6,f +6656,3062b,71,2,f +6656,3069b,72,2,f +6656,3069bpa2,72,1,f +6656,3070b,71,2,f +6656,3070b,71,1,t +6656,32028,2,2,f +6656,32059,15,1,f +6656,32086ps1,40,1,f +6656,32348,71,4,f +6656,3245b,15,5,f +6656,32530,0,1,f +6656,3297ps1,15,1,f +6656,3460,19,7,f +6656,3460,0,1,f +6656,3622,15,3,f +6656,3623,0,2,f +6656,3626b,0,2,f +6656,3626b,14,4,f +6656,3626bpb0224,71,1,f +6656,3626bpb0238,71,1,f +6656,3626bpr0387,78,2,f +6656,3659,71,1,f +6656,3665,15,2,f +6656,3666,71,3,f +6656,3666,15,1,f +6656,3679,71,1,f +6656,3680,0,2,f +6656,3710,72,4,f +6656,3730,71,1,f +6656,3731,71,1,f +6656,3747a,71,1,f +6656,3754,71,1,f +6656,3794a,71,5,f +6656,3795,72,2,f +6656,3795,15,2,f +6656,3832,71,2,f +6656,3940b,0,3,f +6656,3959,72,4,f +6656,4006,0,1,f +6656,4070,71,6,f +6656,4079,70,3,f +6656,4162,72,2,f +6656,4286,15,2,f +6656,4328,71,1,f +6656,43337,72,2,f +6656,4345b,0,1,f +6656,4346,71,1,f +6656,4349,0,2,f +6656,4360,0,2,f +6656,44567a,72,1,f +6656,44568,71,2,f +6656,44570,15,2,f +6656,4460b,71,3,f +6656,4497,0,2,f +6656,4522,0,1,f +6656,4589,72,3,f +6656,4589,57,2,f +6656,4597,15,1,f +6656,4697b,71,1,t +6656,4697b,71,1,f +6656,4733,0,2,f +6656,4740,71,4,f +6656,47905,71,6,f +6656,4865a,1,4,f +6656,50231,0,2,f +6656,50231,4,2,f +6656,6019,0,1,f +6656,6070,40,2,f +6656,6081,15,8,f +6656,6091,15,4,f +6656,6111,15,2,f +6656,6111,72,1,f +6656,6141,42,1,t +6656,6141,46,1,t +6656,6141,57,1,t +6656,6141,1,1,t +6656,6141,36,2,f +6656,6141,42,6,f +6656,6141,57,2,f +6656,6141,1,3,f +6656,6141,46,3,f +6656,6141,36,1,t +6656,6179px1,15,1,f +6656,6215,15,4,f +6656,970c00,0,2,f +6656,970c00,4,2,f +6656,970c00,72,2,f +6656,970c00pb039,15,4,f +6656,973pr0520c01,15,4,f +6656,973pr1263c01,72,2,f +6656,973ps7c01,0,1,f +6656,973px70c01,4,2,f +6656,973px71c03,0,1,f +6658,132a,7,4,f +6658,3001a,14,1,f +6658,3004,14,4,f +6658,3004,1,4,f +6658,3004p50,4,1,f +6658,3005,4,2,f +6658,3005,1,4,f +6658,3009,47,1,f +6658,3009,1,8,f +6658,3009,14,2,f +6658,3009p02,1,2,f +6658,3010,47,1,f +6658,3010,1,6,f +6658,3020,14,2,f +6658,3021,14,1,f +6658,3022,0,2,f +6658,3022,47,2,f +6658,3022,14,3,f +6658,3027,7,2,f +6658,3176,4,1,f +6658,3192,1,1,f +6658,3193,1,1,f +6658,3194,1,1,f +6658,3195,1,1,f +6658,7039,4,4,f +6658,7049b,15,1,f +6658,709,14,1,f +6658,711,14,1,f +6658,799c800,15,1,f +6658,801,14,1,f +6658,802,14,1,f +6658,805,7,1,f +6660,2412b,73,2,f +6660,2436,1,2,f +6660,30027b,15,4,f +6660,30028,0,4,f +6660,3004,1,1,f +6660,3020,71,1,f +6660,3021,1,2,f +6660,3023,1,2,f +6660,30383,71,2,f +6660,3065,41,1,f +6660,3679,71,1,f +6660,3680,1,1,f +6660,3710,1,2,f +6660,3937,1,1,f +6660,3938,71,1,f +6660,3942c,15,1,f +6660,41855,1,1,f +6660,44302a,1,2,f +6660,4600,71,2,f +6660,47674,47,1,f +6660,47675,1,1,f +6660,47676,1,1,f +6660,6141,46,1,t +6660,6141,36,2,f +6660,6141,36,1,t +6660,6141,46,2,f +6663,15573,70,1,f +6663,3020,72,1,f +6663,3022,71,1,f +6663,3023,71,2,f +6663,3034,0,1,f +6663,3040b,0,2,f +6663,30414,71,1,f +6663,3069b,72,1,f +6663,32064a,0,1,f +6663,3626cpr0001,14,1,f +6663,3665,72,2,f +6663,3839b,0,1,f +6663,3844,71,1,f +6663,3846p4g,71,2,f +6663,3848,72,1,f +6663,3941,14,1,f +6663,4032a,14,2,f +6663,4032a,0,2,f +6663,4286,0,2,f +6663,4287,72,2,f +6663,4488,0,2,f +6663,4489b,70,2,f +6663,4497,308,3,f +6663,59900,15,3,f +6663,60897,0,3,f +6663,61678,70,2,f +6663,970c00,71,1,f +6663,973px138c01,4,1,f +6665,2446,71,1,f +6665,2587pr0030,179,1,f +6665,2594,71,1,f +6665,3626bpr1056,14,1,f +6665,3846pr0004a,179,1,f +6665,64647,15,1,f +6665,76764,179,1,f +6665,88646,0,1,f +6665,970c00pr0394,71,1,f +6665,973c47,71,1,f +6666,2561,0,1,f +6666,2562,0,1,f +6666,30173a,0,1,f +6666,30173a,7,2,f +6666,30174,8,1,f +6666,30175,7,1,f +6666,30175,0,1,f +6666,30175,8,1,f +6666,30177,0,1,f +6666,30177,8,1,f +6666,3626bpn1,14,1,f +6666,3626bpx5,14,1,f +6666,3626bpx6,14,1,f +6666,3626bpx7,14,1,f +6666,3626bpx8,14,1,f +6666,3849,6,2,f +6666,529,334,1,f +6666,529,334,1,t +6666,970c00,8,1,f +6666,970c00,0,1,f +6666,970c11pb02b,0,1,f +6666,970x021,0,1,f +6666,970x023,0,1,f +6666,973pb0240c03,8,1,f +6666,973pn1c01,1,1,f +6666,973px11c01,0,1,f +6666,973px12c01,1,1,f +6666,973px14c01,4,1,f +6666,x55,47,1,f +6666,x65,47,1,f +6667,29bc01,15,10,f +6667,3001a,4,7,f +6667,3001a,15,4,f +6667,3002a,4,3,f +6667,3005,4,2,f +6667,3005,15,30,f +6667,3007,4,2,f +6667,3007,15,2,f +6667,3008a,15,3,f +6667,3009a,15,9,f +6667,3009apb08,15,1,f +6667,3034a,15,2,f +6667,3035a,15,1,f +6667,3036a,15,1,f +6667,3065,4,3,f +6667,3065,15,58,f +6667,3087bc01,15,10,f +6667,ftpine1,2,1,f +6668,11211,19,1,f +6668,11609,484,1,f +6668,11618,26,1,f +6668,11618,322,1,f +6668,11816pr0001,84,1,f +6668,11816pr0006,78,1,f +6668,14716,19,4,f +6668,14769,15,4,f +6668,14769pr0001,15,1,f +6668,15210,15,1,f +6668,15254,15,1,f +6668,15254,19,2,f +6668,15395,26,1,f +6668,15395,322,1,f +6668,15533,84,3,f +6668,15573,19,2,f +6668,15573,15,9,f +6668,15712,297,1,f +6668,15712,70,1,f +6668,18653,30,6,f +6668,18653,15,6,f +6668,18674,70,1,f +6668,18853,191,1,f +6668,20482,47,3,f +6668,22885,71,1,f +6668,2343,297,1,f +6668,23969,322,2,f +6668,24111pr0001,19,1,f +6668,2412b,71,4,f +6668,2412b,15,9,f +6668,2420,15,2,f +6668,2431,30,4,f +6668,2431,85,1,f +6668,2432,71,1,f +6668,2456,15,1,f +6668,25269,322,2,f +6668,26467,71,1,f +6668,3001,15,1,f +6668,3001,71,1,f +6668,3002,71,1,f +6668,3002,15,1,f +6668,3003,322,1,f +6668,3003,15,1,f +6668,3004,71,3,f +6668,3004,84,6,f +6668,3004,15,5,f +6668,3005,15,2,f +6668,3005,19,3,f +6668,3005,45,1,f +6668,3008,19,2,f +6668,3009,30,1,f +6668,3010,19,2,f +6668,3010,15,2,f +6668,3020,2,1,f +6668,3020,15,2,f +6668,3020,30,1,f +6668,3020,322,1,f +6668,3021,85,4,f +6668,3022,15,2,f +6668,3022,322,3,f +6668,3023,30,2,f +6668,3023,322,1,f +6668,3023,15,3,f +6668,3023,71,2,f +6668,3024,19,2,f +6668,3032,2,1,f +6668,3040b,85,2,f +6668,3062b,47,1,f +6668,3062b,322,1,f +6668,3062b,4,1,f +6668,3062b,34,1,f +6668,3068b,15,1,f +6668,3069b,26,4,f +6668,3069bpr0130,322,1,f +6668,3245b,15,3,f +6668,32474,191,1,f +6668,33183,70,1,f +6668,33291,191,10,f +6668,33291,10,6,f +6668,33291,4,6,f +6668,33303,70,2,f +6668,3622,19,2,f +6668,3623,15,1,f +6668,3623,85,4,f +6668,3666,15,2,f +6668,3666,85,4,f +6668,3666,322,1,f +6668,3666,30,1,f +6668,3679,71,2,f +6668,3680,15,2,f +6668,3685,85,2,f +6668,3710,70,2,f +6668,3710,26,1,f +6668,3710,71,1,f +6668,3794b,71,2,f +6668,3795,70,1,f +6668,3795,2,1,f +6668,3837,72,1,f +6668,3852b,322,1,f +6668,3941,15,1,f +6668,4032a,322,1,f +6668,4150,72,2,f +6668,43888,15,2,f +6668,44728,71,1,f +6668,4599b,71,2,f +6668,47905,4,1,f +6668,48336,71,2,f +6668,59349,19,1,f +6668,59349,47,3,f +6668,60470a,15,2,f +6668,60474,322,1,f +6668,60481,15,2,f +6668,60581,19,1,f +6668,60596,19,1,f +6668,60616a,47,1,f +6668,60897,15,2,f +6668,6091,30,2,f +6668,6141,29,2,f +6668,6141,4,1,f +6668,6141,72,2,f +6668,6182,15,1,f +6668,6254,70,1,f +6668,85080,15,2,f +6668,85080,71,2,f +6668,85984,15,2,f +6668,87079,15,1,f +6668,87580,71,2,f +6668,87580,15,1,f +6668,87580,26,3,f +6668,91405,226,1,f +6668,92257,320,1,f +6668,92438,10,1,f +6668,92456pr0070c01,78,1,f +6668,92456pr0114c01,31,1,f +6668,92819pr0002a,27,1,f +6668,92820pr0009c01,322,1,f +6668,92950,85,1,f +6668,93160,15,3,f +6668,93273,30,1,f +6668,93352,308,1,f +6668,95343,4,1,f +6668,95344,28,1,f +6668,98138,27,1,f +6668,98138,71,4,f +6668,98138pr0056,84,3,f +6669,2340,15,2,f +6669,2348b,41,1,f +6669,2349a,15,1,f +6669,2357,15,2,f +6669,2412b,15,1,f +6669,2437,41,1,f +6669,2540,15,1,f +6669,2555,15,1,f +6669,2610,14,1,f +6669,2625,4,2,f +6669,2626,15,2,f +6669,2654,0,4,f +6669,298c02,15,2,f +6669,3009,15,1,f +6669,3023,4,2,f +6669,3023,15,1,f +6669,3024,46,1,f +6669,3032,4,2,f +6669,3033,4,1,f +6669,3034,4,1,f +6669,3040b,15,2,f +6669,3070b,36,1,f +6669,3070b,7,2,f +6669,3070b,34,1,f +6669,3622,15,2,f +6669,3626bp04,14,1,f +6669,3665,15,2,f +6669,3666,4,2,f +6669,3666,15,2,f +6669,3829c01,7,1,f +6669,3939,15,2,f +6669,4286,15,2,f +6669,4289,15,1,f +6669,4315,15,1,f +6669,4485,4,1,f +6669,4865a,41,4,f +6669,6111,15,2,f +6669,6112,15,2,f +6669,6141,46,2,f +6669,970c00,15,1,f +6669,973c11,0,1,f +6672,3001a,1,12,f +6672,3001a,4,20,f +6672,3001a,14,20,f +6672,3001a,15,12,f +6672,3001a,47,4,f +6672,3001a,0,8,f +6672,3002a,15,2,f +6672,3002a,0,2,f +6672,3002a,4,4,f +6672,3002a,14,4,f +6672,3002a,1,4,f +6672,3003,4,8,f +6672,3003,0,4,f +6672,3003,1,8,f +6672,3003,15,8,f +6672,3003,14,8,f +6672,3003,47,2,f +6672,3004,14,8,f +6672,3004,15,4,f +6672,3004,1,4,f +6672,3004,0,4,f +6672,3004,4,8,f +6672,3006,1,1,f +6672,3007,4,1,f +6672,3008,15,2,f +6672,3008,1,2,f +6672,3009,14,2,f +6672,3021,0,3,f +6672,3030,4,1,f +6672,3032,14,2,f +6672,3033,4,1,f +6672,3035,1,1,f +6672,3039,1,4,f +6672,3039,14,4,f +6672,3081cc01,4,2,f +6672,3081cc01,15,1,f +6672,3137c01,0,2,f +6672,3144,79,1,f +6672,3149c01,4,1,f +6672,3183a,1,1,f +6672,3184,1,1,f +6672,3185,4,5,f +6672,3297,1,12,f +6672,3298,1,4,f +6672,3299,1,2,f +6672,3300,1,2,f +6672,3315,4,1,f +6672,3324c01,4,1,f +6672,3433,14,1,f +6672,3456,1,1,f +6672,3471,2,1,f +6672,3483,0,8,f +6672,3579,4,1,f +6672,3581,4,4,f +6672,3582,1,4,f +6672,3612,15,2,f +6672,3612,1,2,f +6672,3612,0,2,f +6672,3613,0,2,f +6672,3613,15,2,f +6672,3613,1,2,f +6672,3614a,14,6,f +6672,3641,0,4,f +6672,3660,14,2,f +6672,3660,1,4,f +6672,453cc01,4,2,f +6672,453cc01,15,1,f +6672,685p01,14,1,f +6672,685px3,14,1,f +6672,685px4,14,1,f +6672,700ed2,2,1,f +6672,7039,4,8,f +6672,7049b,0,4,f +6672,792c03,0,1,f +6672,792c03,1,1,f +6672,792c03,15,1,f +6672,7930,1,1,f +6672,x196,0,1,f +6672,x197,6,1,f +6672,x407,0,1,f +6672,x407,4,1,f +6673,32054,0,1,f +6673,32174,320,3,f +6673,32175,0,2,f +6673,32524,0,1,f +6673,3673,71,2,f +6673,43093,1,1,f +6673,47296,72,2,f +6673,47300,72,2,f +6673,47308,320,1,f +6673,47311,320,2,f +6673,50899,179,1,f +6673,50900,0,1,f +6673,50901,72,1,f +6673,50903,14,1,f +6674,32062,0,1,t +6674,32062,0,3,f +6674,32174,72,1,f +6674,32476,320,2,f +6674,41668,0,2,f +6674,43093,1,1,t +6674,43093,1,1,f +6674,44808,179,1,f +6674,47296,72,2,f +6674,47300,72,2,f +6674,47312,72,1,f +6674,47313,42,1,f +6675,5306bc020,0,3,f +6676,11609,191,1,t +6676,11609,191,2,f +6676,11816pr0013,78,1,f +6676,13392pr0001,212,1,f +6676,15573,297,3,f +6676,15624,322,1,f +6676,15627pr0010,226,1,f +6676,15677,4,1,f +6676,15679pr0001,14,1,f +6676,16530pr01,2,1,f +6676,18646,1,1,f +6676,18853,29,1,f +6676,18853,191,1,f +6676,18853,191,1,t +6676,18853,29,1,t +6676,18970,15,1,f +6676,22888,5,1,f +6676,23969,15,1,f +6676,24055,26,1,f +6676,2431,41,2,f +6676,2454b,226,2,f +6676,2654,1,1,f +6676,3003,85,2,f +6676,3004,191,2,f +6676,3005,85,2,f +6676,30153,52,1,f +6676,30153,45,2,f +6676,3020,30,1,f +6676,3021,15,1,f +6676,3022,191,1,f +6676,3023,41,2,f +6676,3068b,5,1,f +6676,3068b,29,1,f +6676,33322,297,1,f +6676,33322,297,1,t +6676,3633,297,1,f +6676,3710,29,1,f +6676,3710,1,1,f +6676,3852b,191,1,f +6676,3941,41,1,f +6676,4489,297,2,f +6676,4523,5,1,f +6676,4536,15,1,f +6676,4728,45,1,f +6676,50950,30,2,f +6676,59900,129,4,f +6676,60470b,191,1,f +6676,60478,15,2,f +6676,60607,297,2,f +6676,74968pr0001,47,1,f +6676,88293,26,2,f +6676,92410,30,1,f +6676,92456pr0052c01a,78,1,f +6676,92593,26,1,f +6676,93095,29,2,f +6679,107pr0001,15,1,f +6679,3001apb02,15,1,f +6679,3008p03,15,1,f +6679,3008pb032,15,1,f +6679,3009pb002,15,1,f +6679,3009pb009,15,1,f +6679,3009pb034,15,1,f +6679,3009pte,15,1,f +6679,3034,15,1,f +6679,3036,7,1,f +6679,3062a,47,8,f +6679,x1721,14,2,f +6680,122c01,0,3,f +6680,298c01,1,1,f +6680,3001,1,1,f +6680,3003,15,2,f +6680,3004,1,1,f +6680,3004p06,15,1,f +6680,3005,15,2,f +6680,3005,1,1,f +6680,3021,0,1,f +6680,3021,15,1,f +6680,3022,1,3,f +6680,3023,0,1,f +6680,3023,15,1,f +6680,3023,1,6,f +6680,3024,46,4,f +6680,3039,15,2,f +6680,3062b,0,1,f +6680,3063b,15,4,f +6680,3063b,1,4,f +6680,3070b,7,5,f +6680,3324c01,0,1,f +6680,3403c01,15,1,f +6680,3626apr0001,14,1,f +6680,3639,0,1,f +6680,3640,0,1,f +6680,3660,1,2,f +6680,3710,15,3,f +6680,3787,1,2,f +6680,3788,1,1,f +6680,3821,15,1,f +6680,3822,15,1,f +6680,3823,47,1,f +6680,3829c01,1,1,f +6680,3833,4,1,f +6680,3957a,14,2,f +6680,4070,15,2,f +6680,4070,1,1,f +6680,4081a,1,2,f +6680,4084,0,6,f +6680,4085b,15,2,f +6680,4213,1,1,f +6680,4214,1,1,f +6680,4275a,1,2,f +6680,4276a,1,2,f +6680,4589,0,1,f +6680,4742,1,1,f +6680,6141,36,2,f +6680,970c00,0,1,f +6680,973pb0202c01,15,1,f +6681,2780,0,1,t +6681,2780,0,22,f +6681,2817,0,1,f +6681,2850a,71,2,f +6681,2851,14,2,f +6681,2852,71,2,f +6681,2853,14,2,f +6681,2902,0,2,f +6681,2903,15,2,f +6681,2905,71,3,f +6681,2909c03,0,2,f +6681,30552,72,2,f +6681,32002,72,1,t +6681,32002,72,1,f +6681,32009,27,2,f +6681,32013,71,2,f +6681,32016,71,2,f +6681,32039,0,7,f +6681,32062,4,4,f +6681,32073,71,5,f +6681,32123b,71,12,f +6681,32123b,71,1,t +6681,32138,0,2,f +6681,32140,71,4,f +6681,32184,0,5,f +6681,32192,0,1,f +6681,32270,0,1,f +6681,32291,0,2,f +6681,32316,0,3,f +6681,32348,71,2,f +6681,32524,71,3,f +6681,32525,0,3,f +6681,32525,71,2,f +6681,32526,0,1,f +6681,32526,27,1,f +6681,32527,27,1,f +6681,32528,27,1,f +6681,32557,71,2,f +6681,33299a,0,2,f +6681,3649,71,1,f +6681,3705,0,3,f +6681,3706,0,2,f +6681,3711a,0,1,t +6681,3711a,0,39,f +6681,3713,71,1,t +6681,3713,71,14,f +6681,3737,0,1,f +6681,3900,71,2,f +6681,3941,71,3,f +6681,4019,71,3,f +6681,4185,71,2,f +6681,42003,72,5,f +6681,4274,71,1,f +6681,4274,71,1,t +6681,43093,1,4,f +6681,44294,71,6,f +6681,44352,27,1,f +6681,44353,27,1,f +6681,4519,71,11,f +6681,47844,27,2,f +6681,59426,72,1,f +6681,59443,0,4,f +6681,60483,72,1,f +6681,6141,80,1,t +6681,6141,80,1,f +6681,6179,15,1,f +6681,6536,71,6,f +6681,6558,1,16,f +6681,6589,19,1,f +6681,76537,14,1,f +6681,78c18,179,1,f +6684,3004,15,2,f +6684,3004,4,1,f +6684,3005,15,2,f +6684,3021,15,2,f +6684,3022,15,1,f +6684,3022,19,1,f +6684,3023,71,2,f +6684,3023,19,1,f +6684,3023,15,1,f +6684,3023,70,1,f +6684,3024,15,1,f +6684,3032,15,1,f +6684,3040b,0,2,f +6684,3068b,15,1,f +6684,3069b,47,1,f +6684,3069b,15,1,f +6684,3070b,4,2,f +6684,3623,0,1,f +6684,3660,0,1,f +6684,3665,0,1,f +6684,3794b,4,2,f +6684,4070,19,2,f +6684,44728,15,2,f +6684,49668,15,2,f +6684,50950,4,2,f +6684,6019,15,3,f +6684,6141,0,1,f +6684,63965,71,1,f +6684,87087,15,2,f +6686,3003pe2,4,1,f +6686,3020,1,1,f +6686,3039,1,1,f +6686,6215,14,1,f +6686,6564,4,1,f +6686,6565,4,1,f +6688,2458,72,1,f +6688,3003,2,1,f +6688,3020,2,1,f +6688,30602,40,1,f +6688,3710,2,2,f +6688,3747b,2,1,f +6688,4617b,0,1,f +6688,6141,57,1,f +6688,6141,57,4,t +6689,2356,2,1,f +6689,2446,8,1,f +6689,2454a,7,2,f +6689,2490px4,7,1,f +6689,2555,1,4,f +6689,2586p4g,7,1,f +6689,2594,0,1,f +6689,3001,4,1,f +6689,3003,0,2,f +6689,3003,1,1,f +6689,3004,0,4,f +6689,3004,15,1,f +6689,3008,0,3,f +6689,30101,8,1,f +6689,30102px2,47,1,f +6689,30104,0,1,f +6689,30157,8,1,f +6689,3023,0,1,f +6689,3023,15,1,f +6689,30237a,7,2,f +6689,30274,19,4,f +6689,3062b,19,6,f +6689,3068b,1,2,f +6689,3622,7,2,f +6689,3626bpx68,14,1,f +6689,3626bpx71,14,1,f +6689,3626bpx73,14,1,f +6689,3679,7,1,f +6689,3680,0,1,f +6689,3684,0,2,f +6689,3688,1,2,f +6689,3700,4,2,f +6689,3794a,14,1,f +6689,3795,4,2,f +6689,3832,0,1,f +6689,3846p4e,7,3,f +6689,3848,6,1,f +6689,3849,0,1,f +6689,3849,8,1,f +6689,3941,7,3,f +6689,3957a,0,2,f +6689,4070,7,2,f +6689,4202,2,2,f +6689,4491b,4,1,f +6689,4493c01pb02,0,1,f +6689,4495a,1,2,f +6689,4497,6,1,f +6689,4738a,6,1,f +6689,4739a,6,1,f +6689,59,383,1,f +6689,6122,0,1,f +6689,6123,8,4,f +6689,6125,4,1,f +6689,6141,34,1,f +6689,6141,33,1,t +6689,6141,33,1,f +6689,6141,34,2,t +6689,6141,46,1,f +6689,6141,46,1,t +6689,71015,334,1,f +6689,75998pr0007,15,1,f +6689,87692,4,1,t +6689,87693,4,1,t +6689,87694,4,1,f +6689,87695,15,1,t +6689,87695,15,2,f +6689,87696,15,1,t +6689,970c00pb014,0,1,f +6689,970c00pb015,0,1,f +6689,970c09pb01,7,1,f +6689,973px115c01,8,1,f +6689,973px118c01,7,1,f +6689,973px120c01,0,1,f +6690,2412b,4,1,f +6690,2432,15,1,f +6690,2437,47,1,f +6690,2441,0,1,f +6690,3022,4,2,f +6690,3062b,14,1,f +6690,3622,4,2,f +6690,3623,15,2,f +6690,3626cpr1087,14,1,f +6690,3829c01,15,1,f +6690,3834,320,1,f +6690,3835,0,1,f +6690,4085c,15,2,f +6690,4599b,14,1,f +6690,4599b,14,1,t +6690,50951,0,4,f +6690,54200,33,1,t +6690,54200,33,2,f +6690,60212,4,2,f +6690,6141,46,1,t +6690,6141,46,2,f +6690,93273,72,1,f +6690,93274,4,1,f +6690,93595,15,4,f +6690,970c00pr0408,0,1,f +6690,973pr2189c01,0,1,f +6692,3679,7,20,f +6692,3680,1,20,f +6692,3937,1,12,f +6692,3938,1,12,f +6692,3956,1,8,f +6694,10201,71,1,f +6694,11211,19,1,f +6694,11303,1,1,f +6694,11408pr0001c01,78,1,f +6694,11477,15,4,f +6694,11816pr0005,78,1,f +6694,11833,84,1,f +6694,14014pr0002,78,1,f +6694,14045,0,1,f +6694,15207,15,2,f +6694,16985pr0001b,272,1,f +6694,2362b,47,2,f +6694,2412b,71,2,f +6694,2431,322,3,f +6694,2654,71,2,f +6694,3001,19,2,f +6694,3001,15,2,f +6694,3004,5,2,f +6694,3004,15,8,f +6694,3010,5,2,f +6694,3020,15,2,f +6694,3020,27,1,f +6694,3020,322,4,f +6694,3020,14,4,f +6694,3023,29,2,f +6694,3023,14,1,f +6694,3023,15,4,f +6694,3023,71,3,f +6694,3024,71,2,f +6694,3024,272,2,f +6694,30261,15,1,f +6694,3029,15,1,f +6694,3034,4,1,f +6694,30357,15,4,f +6694,30367b,15,1,f +6694,30374,15,1,f +6694,30414,15,2,f +6694,3068b,29,2,f +6694,3068b,15,4,f +6694,3069b,272,9,f +6694,3069b,4,1,f +6694,3069b,322,6,f +6694,3069bpr0030,15,1,f +6694,3070b,71,5,f +6694,3176,71,1,f +6694,3245c,15,4,f +6694,33291,5,6,f +6694,33291,10,1,f +6694,33291,191,2,f +6694,3622,15,3,f +6694,3665,5,8,f +6694,3666,71,6,f +6694,3666,15,1,f +6694,3666,322,2,f +6694,3666,272,9,f +6694,3679,71,1,f +6694,3680,4,1,f +6694,3710,15,3,f +6694,3710,4,3,f +6694,3710,272,2,f +6694,3710,71,3,f +6694,3795,71,1,f +6694,3795,72,1,f +6694,3795,15,3,f +6694,3829c01,14,1,f +6694,3830,15,2,f +6694,3831,15,2,f +6694,3852,191,1,f +6694,3937,14,1,f +6694,3938,0,1,f +6694,3941,14,2,f +6694,3958,10,1,f +6694,3958,19,1,f +6694,3960,15,1,f +6694,4150,15,1,f +6694,4176,47,1,f +6694,4360,0,1,f +6694,4477,71,2,f +6694,4488,71,4,f +6694,4733,71,1,f +6694,4740,42,1,f +6694,48336,14,1,f +6694,4865b,4,1,f +6694,50745,322,4,f +6694,50950,72,2,f +6694,52031,15,1,f +6694,52037,72,1,f +6694,54200,0,3,f +6694,59349,15,1,f +6694,6014b,15,4,f +6694,60471,71,2,f +6694,60474,15,1,f +6694,60581,15,3,f +6694,61409,15,1,f +6694,6141,47,3,f +6694,6141,0,1,f +6694,6141,45,4,f +6694,6141,36,10,f +6694,6141,70,1,f +6694,6141,46,8,f +6694,6191,29,1,f +6694,6266,0,1,f +6694,63864,15,3,f +6694,64644,71,1,f +6694,87079,15,1,f +6694,87081,15,1,f +6694,87087,15,2,f +6694,87580,322,3,f +6694,87609,14,1,f +6694,87697,0,4,f +6694,88930,322,1,f +6694,90370pr0001,0,1,f +6694,92280,15,2,f +6694,92456pr0039c01,78,1,f +6694,92582,15,2,f +6694,92820pr0006c01b,378,1,f +6694,92946,14,2,f +6694,92947,15,1,f +6694,92950,15,2,f +6694,93094,5,1,f +6694,93095,29,2,f +6694,98549,71,1,f +6695,2757,7,2,f +6695,3069b,14,2,f +6695,3069b,4,2,f +6695,3069b,7,2,f +6695,3069b,2,2,f +6695,3069b,0,2,f +6695,766c01,7,12,f +6695,x157,0,12,f +6695,x466,7,6,f +6696,12825,72,9,f +6696,14226c11,0,1,f +6696,2039,15,1,f +6696,2339,71,6,f +6696,2357,71,30,f +6696,2357,320,9,f +6696,2400,0,2,f +6696,2412b,320,2,f +6696,2412b,80,8,f +6696,2417,288,1,f +6696,2420,71,10,f +6696,2420,28,24,f +6696,2423,2,5,f +6696,2431,0,8,f +6696,2431,71,11,f +6696,2431,14,2,f +6696,2431pr0017,14,1,f +6696,2432,0,1,f +6696,2436,4,1,f +6696,2439,71,1,f +6696,2445,71,4,f +6696,2465,71,1,f +6696,2780,0,2,f +6696,2780,0,1,t +6696,2877,71,4,f +6696,2921,71,9,f +6696,298c02,14,1,t +6696,298c02,14,1,f +6696,3001,0,8,f +6696,3001,70,3,f +6696,3003,28,6,f +6696,3003,320,2,f +6696,3003,71,6,f +6696,3004,71,64,f +6696,3004,72,2,f +6696,3004,320,42,f +6696,3004,28,54,f +6696,3004,0,4,f +6696,30043,71,3,f +6696,3005,4,4,f +6696,3005,320,15,f +6696,3005,71,26,f +6696,3005,0,2,f +6696,30055,0,2,f +6696,30055,70,3,f +6696,3008,71,33,f +6696,3009,71,36,f +6696,3009,320,34,f +6696,3010,0,4,f +6696,3010,71,24,f +6696,3010,70,2,f +6696,3010,4,5,f +6696,30103,0,1,f +6696,30134,70,1,f +6696,30134,0,2,f +6696,30136,70,6,f +6696,30162,71,2,f +6696,3020,70,4,f +6696,3020,0,1,f +6696,3020,71,8,f +6696,3020,19,5,f +6696,3021,15,4,f +6696,3021,0,2,f +6696,3021,2,7,f +6696,3021,71,7,f +6696,3022,71,12,f +6696,3022,0,1,f +6696,3023,1,1,f +6696,3023,28,44,f +6696,3023,320,17,f +6696,3023,15,7,f +6696,3023,4,11,f +6696,3023,71,37,f +6696,3023,70,6,f +6696,3023,72,32,f +6696,30237a,71,9,f +6696,3024,0,2,t +6696,3024,15,1,t +6696,3024,15,9,f +6696,3024,4,9,f +6696,3024,70,6,f +6696,3024,28,83,f +6696,3024,72,1,t +6696,3024,0,8,f +6696,3024,1,1,t +6696,3024,1,1,f +6696,3024,28,1,t +6696,3024,320,1,t +6696,3024,72,7,f +6696,3024,320,8,f +6696,3024,4,1,t +6696,3024,71,49,f +6696,3024,71,2,t +6696,3024,70,1,t +6696,3028,0,4,f +6696,3029,0,5,f +6696,3031,0,2,f +6696,3032,71,1,f +6696,3032,0,1,f +6696,3033,72,1,f +6696,3035,0,4,f +6696,3036,0,2,f +6696,3037,0,4,f +6696,30374,0,1,f +6696,30374,71,2,f +6696,3039,0,4,f +6696,3039,71,1,f +6696,3040b,71,10,f +6696,30414,71,34,f +6696,3045,0,12,f +6696,30552,72,1,f +6696,30586,71,8,f +6696,30613,15,2,f +6696,3062b,71,3,f +6696,3062b,36,1,f +6696,3062b,70,8,f +6696,3062b,14,13,f +6696,3062b,33,3,f +6696,3062b,46,2,f +6696,30663,0,2,f +6696,3068b,28,17,f +6696,3068b,71,16,f +6696,3068b,72,13,f +6696,3068b,19,2,f +6696,3068b,2,4,f +6696,3068b,15,1,f +6696,3069b,70,12,f +6696,3069b,19,6,f +6696,3069b,4,6,f +6696,3069b,72,28,f +6696,3069b,15,14,f +6696,3069b,71,35,f +6696,3069b,82,4,f +6696,3069b,320,35,f +6696,3069bpr0101,71,1,f +6696,3070b,14,1,t +6696,3070b,19,2,f +6696,3070b,4,3,f +6696,3070b,4,1,t +6696,3070b,71,3,t +6696,3070b,15,2,t +6696,3070b,320,1,t +6696,3070b,15,6,f +6696,3070b,72,16,f +6696,3070b,71,29,f +6696,3070b,320,19,f +6696,3070b,72,2,t +6696,3070b,14,6,f +6696,3070b,19,1,t +6696,3176,71,4,f +6696,32028,71,28,f +6696,32028,0,2,f +6696,32028,15,23,f +6696,32039,14,4,f +6696,32064b,71,2,f +6696,32064b,320,4,f +6696,32064b,4,2,f +6696,32123b,14,2,t +6696,32123b,14,3,f +6696,32291,72,2,f +6696,3297,0,2,f +6696,33078,4,2,f +6696,3308,71,2,f +6696,33320,72,3,f +6696,3455,4,2,f +6696,3460,0,2,f +6696,3460,71,8,f +6696,3460,72,2,f +6696,3581,71,2,f +6696,3622,71,28,f +6696,3622,0,3,f +6696,3623,71,12,f +6696,3626b,47,1,f +6696,3626bpr0001,14,4,f +6696,3633,15,1,f +6696,3660,71,9,f +6696,3665,71,12,f +6696,3666,4,2,f +6696,3666,320,10,f +6696,3666,71,17,f +6696,3675,0,2,f +6696,3700,72,1,f +6696,3700,19,4,f +6696,3710,15,5,f +6696,3710,320,11,f +6696,3710,0,8,f +6696,3710,70,2,f +6696,3710,4,5,f +6696,3710,71,16,f +6696,3749,19,4,f +6696,3794b,72,5,f +6696,3794b,4,2,f +6696,3794b,71,40,f +6696,3794b,19,3,f +6696,3794b,70,2,f +6696,3795,71,11,f +6696,3795,0,1,f +6696,3795,2,3,f +6696,3832,15,5,f +6696,3834,80,3,f +6696,3834,82,2,f +6696,3835,0,3,f +6696,3836,70,1,f +6696,3837,0,1,f +6696,3838,14,1,f +6696,3857,72,2,f +6696,3898,15,1,f +6696,3900,71,4,f +6696,3942c,0,1,f +6696,4070,72,19,f +6696,4070,4,3,f +6696,4079b,0,2,f +6696,4081b,71,11,f +6696,4085c,71,4,f +6696,4085c,4,3,f +6696,4085c,1,1,f +6696,4085c,15,1,f +6696,4150pr0001,15,1,f +6696,4161,0,2,f +6696,4162,320,6,f +6696,4162,71,13,f +6696,4162,14,4,f +6696,4216,15,18,f +6696,4217,15,2,f +6696,4218,47,2,f +6696,4218,4,8,f +6696,4219,15,1,f +6696,4282,71,4,f +6696,4282,72,1,f +6696,43337,0,2,f +6696,43337,40,1,f +6696,43337,4,2,f +6696,4345b,71,1,f +6696,4346,47,1,f +6696,43898,70,1,f +6696,44728,71,7,f +6696,44728,72,20,f +6696,4477,71,3,f +6696,4477,72,2,f +6696,4510,0,2,f +6696,4510,71,3,f +6696,4519,71,3,f +6696,4522,0,2,f +6696,4528,135,1,f +6696,4529,0,1,f +6696,4530,19,1,f +6696,4533,15,1,f +6696,4536,15,2,f +6696,4599b,71,2,f +6696,4599b,14,4,f +6696,4599b,0,2,f +6696,4623,71,2,f +6696,4733,0,3,f +6696,4740,0,3,f +6696,4740,15,1,f +6696,4740,71,1,f +6696,47720,0,2,f +6696,47905,0,2,f +6696,47905,71,14,f +6696,48288,72,1,f +6696,48336,71,4,f +6696,4854,0,1,f +6696,4865a,71,4,f +6696,48729a,72,2,t +6696,48729a,72,12,f +6696,48812,70,1,f +6696,50946,71,3,f +6696,50950,71,4,f +6696,52107,0,7,f +6696,54200,72,15,f +6696,54200,72,2,t +6696,54200,71,4,f +6696,54200,0,1,t +6696,54200,0,2,f +6696,54200,4,2,f +6696,54200,71,1,t +6696,54200,4,1,t +6696,55295,0,1,f +6696,55296,0,1,f +6696,55297,0,1,f +6696,55298,0,1,f +6696,55299,0,1,f +6696,55300,0,1,f +6696,56902,71,4,f +6696,57894,15,1,f +6696,57895,47,1,f +6696,58176,36,2,f +6696,58380,15,1,f +6696,59900,0,1,f +6696,6005,4,4,f +6696,6019,4,4,f +6696,60471,71,1,f +6696,60479,71,4,f +6696,60479,0,5,f +6696,60592,15,18,f +6696,60593,15,22,f +6696,60594,15,6,f +6696,60596,72,1,f +6696,60596,15,2,f +6696,60601,47,18,f +6696,60602,47,22,f +6696,60603,47,5,f +6696,60608,15,2,f +6696,60623,0,3,f +6696,6081,4,2,f +6696,6091,0,6,f +6696,6091,19,4,f +6696,6093,70,1,f +6696,6111,0,2,f +6696,61254,0,4,f +6696,6140,15,1,f +6696,6141,71,8,f +6696,6141,14,1,t +6696,6141,80,1,t +6696,6141,46,1,t +6696,6141,0,15,f +6696,6141,0,2,t +6696,6141,46,2,f +6696,6141,15,6,f +6696,6141,71,1,t +6696,6141,15,1,t +6696,6141,36,2,f +6696,6141,14,10,f +6696,6141,36,1,t +6696,6141,80,1,f +6696,61780,70,3,f +6696,6179,72,2,f +6696,6191,0,2,f +6696,61976,19,1,f +6696,6231,71,6,f +6696,6233,0,1,f +6696,6256,82,1,f +6696,62810,308,1,f +6696,63965,72,3,f +6696,63965,0,2,f +6696,64450,0,1,f +6696,64567,71,7,f +6696,64951,70,2,f +6696,6587,72,1,f +6696,6636,71,27,f +6696,6636,15,4,f +6696,6636,0,5,f +6696,75c10,14,1,f +6696,75c19,14,1,f +6696,75c19,14,1,t +6696,78c06,135,2,f +6696,92410,71,2,f +6696,970c00,0,3,f +6696,970c00,15,1,f +6696,973c50,379,1,f +6696,973pr1187c01,0,3,f +6697,2357,1,2,f +6697,2412b,0,3,f +6697,2412b,7,1,f +6697,2412b,15,3,f +6697,2412b,36,1,f +6697,2412b,73,2,f +6697,2412b,25,2,f +6697,2420,1,2,f +6697,2420,7,2,f +6697,2431,1,2,f +6697,2436,1,4,f +6697,2476a,7,1,f +6697,2540,4,1,f +6697,2540,8,1,f +6697,2540,25,4,f +6697,2555,25,2,f +6697,2654,7,1,f +6697,298c02,15,2,f +6697,3003,1,2,f +6697,30033,8,2,f +6697,3005,73,2,f +6697,3010,73,2,f +6697,3020,1,8,f +6697,3020,8,4,f +6697,3021,25,1,f +6697,3021,0,3,f +6697,3021,15,2,f +6697,3021,1,9,f +6697,3021,8,3,f +6697,3022,25,4,f +6697,3022,1,2,f +6697,3022,8,1,f +6697,3022,15,1,f +6697,3022,7,2,f +6697,3023,15,4,f +6697,3023,8,1,f +6697,3023,4,1,f +6697,3023,7,2,f +6697,3023,1,4,f +6697,3023,0,4,f +6697,3024,7,2,f +6697,3031,8,1,f +6697,3034,0,2,f +6697,30365,8,2,f +6697,30365,1,4,f +6697,30367b,7,1,f +6697,30383,0,4,f +6697,30386,7,4,f +6697,30387,7,4,f +6697,30389b,7,1,f +6697,3039,47,1,f +6697,3039,1,4,f +6697,3040b,8,4,f +6697,30414,8,3,f +6697,3049b,8,2,f +6697,30540,0,2,f +6697,30554a,0,4,f +6697,30592,7,1,f +6697,30602,25,1,f +6697,3062b,0,2,f +6697,3068b,1,3,f +6697,3068b,7,1,f +6697,3069b,25,4,f +6697,3069b,1,2,f +6697,3176,1,2,f +6697,3176,7,2,f +6697,32001,1,1,f +6697,32059,0,1,f +6697,3298,73,3,f +6697,3475b,0,2,f +6697,3623,15,2,f +6697,3660,1,3,f +6697,3666,1,1,f +6697,3676,8,2,f +6697,3678a,1,1,f +6697,3679,7,1,f +6697,3680,1,1,f +6697,3700,8,1,f +6697,3700,1,3,f +6697,3709,0,1,f +6697,3710,8,1,f +6697,3710,1,6,f +6697,3710,15,3,f +6697,3710,25,2,f +6697,3710,7,1,f +6697,3794a,25,2,f +6697,3794a,7,1,f +6697,3795,1,1,f +6697,3795,7,1,f +6697,3839b,1,2,f +6697,3839b,0,3,f +6697,3937,0,2,f +6697,3938,1,2,f +6697,3957a,383,2,f +6697,3963,8,2,f +6697,4070,1,4,f +6697,4081b,0,2,f +6697,4081b,7,2,f +6697,4081b,1,2,f +6697,4081b,8,2,f +6697,4085c,0,2,f +6697,4085c,1,1,f +6697,41532,0,4,f +6697,41854,73,4,f +6697,41855,73,6,f +6697,41862,73,2,f +6697,41862,1,1,f +6697,41862,8,1,f +6697,4274,7,2,f +6697,4274,7,1,t +6697,4285b,0,1,f +6697,4286,1,4,f +6697,4360,0,1,f +6697,43710,1,2,f +6697,43711,1,2,f +6697,43719,0,2,f +6697,43720,8,2,f +6697,43721,8,2,f +6697,43722,7,1,f +6697,43722,73,1,f +6697,43723,73,1,f +6697,43723,7,1,f +6697,44301a,7,4,f +6697,44302a,7,4,f +6697,4589,8,2,f +6697,4855,8,1,f +6697,4859,1,4,f +6697,4859,0,2,f +6697,4859,7,1,f +6697,4861,1,1,f +6697,4861,8,2,f +6697,4871,1,1,f +6697,48933,8,2,f +6697,57467,383,2,f +6697,6091,1,4,f +6697,6091,73,2,f +6697,6141,47,1,t +6697,6141,8,2,f +6697,6141,36,1,t +6697,6141,47,2,f +6697,6141,25,1,t +6697,6141,15,1,t +6697,6141,36,2,f +6697,6141,25,4,f +6697,6141,15,2,f +6697,6141,8,1,t +6697,6215,1,2,f +6697,6541,7,2,f +6697,6564,73,1,f +6697,6565,73,1,f +6697,73983,1,2,f +6697,73983,0,2,f +6699,12825,0,4,f +6699,3001,70,1,f +6699,3021,0,2,f +6699,30374,0,1,f +6699,3040b,0,4,f +6699,3660,0,1,f +6699,3710,19,2,f +6699,3794a,28,4,f +6699,3957a,0,3,f +6699,43722,0,1,f +6699,43723,0,2,f +6699,44676,0,1,f +6699,4589,70,3,f +6699,4854,0,1,f +6699,4855,0,1,f +6699,6141,19,2,f +6699,6141,46,1,t +6699,6141,46,3,f +6699,6141,19,1,t +6699,6141,0,8,f +6699,6141,0,1,t +6699,87580,28,1,f +6699,87620,0,2,f +6701,2412b,36,2,f +6701,2412b,14,1,f +6701,2431,71,4,f +6701,2444,14,4,f +6701,2450,28,2,f +6701,2540,0,9,f +6701,2555,72,2,f +6701,2569,14,3,f +6701,2654,72,3,f +6701,3004,71,5,f +6701,30056,0,1,f +6701,30088,72,1,f +6701,3009,14,2,f +6701,3010,71,2,f +6701,30170,72,1,t +6701,30170,72,1,f +6701,30171,70,1,f +6701,3020,72,2,f +6701,3021,14,2,f +6701,3022,71,5,f +6701,3023,72,24,f +6701,30236,19,1,f +6701,30283,71,1,f +6701,30303,71,1,f +6701,3034,0,1,f +6701,30350b,72,1,f +6701,30355,71,1,f +6701,30356,71,1,f +6701,30361dps1,15,1,f +6701,30362,15,2,f +6701,30364,0,2,f +6701,30367apr01,15,1,f +6701,30377,0,10,f +6701,30377,0,1,t +6701,30382,70,4,f +6701,30384,40,1,f +6701,3040b,0,1,f +6701,30565,28,2,f +6701,3062b,70,2,f +6701,3068b,28,3,f +6701,3069b,71,2,f +6701,3069b,14,1,f +6701,3069bpr0070,0,1,f +6701,3176,71,3,f +6701,32000,72,2,f +6701,32002,72,1,t +6701,32002,72,6,f +6701,32054,4,2,f +6701,32064b,14,1,t +6701,3298,14,2,f +6701,3460,19,2,f +6701,3460,71,1,f +6701,3622,14,2,f +6701,3623,71,2,f +6701,3624,70,1,f +6701,3626bpr0001,78,1,f +6701,3626bpr0492,78,1,f +6701,3660,71,10,f +6701,3666,71,2,f +6701,3679,71,1,f +6701,3680,0,1,f +6701,3700,14,1,f +6701,3701,72,2,f +6701,3702,71,2,f +6701,3705,0,2,f +6701,3710,14,3,f +6701,3710,70,6,f +6701,3737,0,2,f +6701,3747b,72,2,f +6701,3832,14,3,f +6701,3941,14,2,f +6701,3942c,71,2,f +6701,3942c,14,3,f +6701,40233,28,1,f +6701,4150,70,2,f +6701,41531,71,4,f +6701,41747,14,1,f +6701,41748,14,1,f +6701,41764,71,3,f +6701,41765,71,3,f +6701,4185,14,4,f +6701,41879a,19,1,f +6701,4274,1,1,t +6701,4274,1,1,f +6701,4287,71,2,f +6701,44126,71,1,f +6701,44302a,71,2,f +6701,4589,36,2,f +6701,4589,14,3,f +6701,47457,72,1,f +6701,47753,28,2,f +6701,47753,14,1,f +6701,48336,19,1,f +6701,4855,14,1,f +6701,4865a,14,2,f +6701,50304,14,1,f +6701,50305,14,1,f +6701,50373,14,1,f +6701,50955,71,1,f +6701,50956,71,1,f +6701,51739,71,2,f +6701,54200,72,2,f +6701,57028c01,71,1,f +6701,57796,0,1,f +6701,60208,14,4,f +6701,60208,71,2,f +6701,6091,14,2,f +6701,6141,72,13,f +6701,6141,72,1,t +6701,6191,14,2,f +6701,6215,0,1,f +6701,6233,14,2,f +6701,6233,71,2,f +6701,63965,4,3,f +6701,6558,0,4,f +6701,6587,72,2,f +6701,6636,28,4,f +6701,970x199,70,1,f +6701,973pr1325c01,19,1,f +6701,973pr1326c01,19,1,f +6704,2825,14,2,f +6704,2905,0,2,f +6704,30155,7,1,f +6704,32017,7,2,f +6704,32056,14,4,f +6704,32062,0,1,f +6704,32123b,7,1,t +6704,32123b,7,2,f +6704,3482,7,1,f +6704,3483,0,2,f +6704,3673,7,1,f +6704,3713,7,1,t +6704,3713,7,1,f +6704,4519,0,5,f +6704,6558,0,1,f +6704,6632,14,2,f +6704,71509,0,2,t +6704,71509,0,1,f +6706,2431,15,1,f +6706,2436,0,2,f +6706,2540,4,1,f +6706,298c02,4,2,f +6706,298c02,4,1,t +6706,3020,15,4,f +6706,3021,15,4,f +6706,3022,15,1,f +6706,3023,320,1,f +6706,3024,320,1,f +6706,3070b,14,2,f +6706,3070b,14,1,t +6706,3710,15,2,f +6706,3794b,15,4,f +6706,3957a,15,2,f +6706,4081b,4,2,f +6706,41769,15,1,f +6706,41770,15,1,f +6706,43722,15,1,f +6706,43723,15,1,f +6706,4595,71,1,f +6706,54200,15,1,t +6706,54200,320,4,f +6706,54200,15,2,f +6706,54200,320,1,t +6706,54200,40,1,t +6706,54200,40,1,f +6706,54383,320,1,f +6706,54384,320,1,f +6706,6019,0,1,f +6706,60470a,15,4,f +6706,6141,41,6,f +6706,6141,41,1,t +6707,265pb01,0,1,f +6707,268pb01,7,1,f +6707,3001a,47,1,f +6707,3001a,4,2,f +6707,3002a,4,4,f +6707,3004,4,7,f +6707,3004,47,1,f +6707,3004pb052,4,2,f +6707,3005,4,2,f +6707,3020,7,3,f +6707,3020,4,6,f +6707,3021,4,4,f +6707,3022,4,2,f +6707,3023a,4,2,f +6707,3035a,7,5,f +6707,3063b,4,4,f +6707,3137c01,0,4,f +6707,3139,0,8,f +6707,3149c01,4,3,f +6707,3404bc01,15,1,f +6707,661pb01,1,1,f +6707,661pb01,4,1,f +6708,15100,0,2,f +6708,15208,0,1,f +6708,15406,0,1,f +6708,15407,148,1,f +6708,15462,28,1,f +6708,15573,0,2,f +6708,15706,0,2,f +6708,18654,72,1,t +6708,18654,72,1,f +6708,22385pr0029,35,1,f +6708,22385pr0033,47,1,f +6708,22385pr0052,36,1,f +6708,22409,0,1,f +6708,2540,4,1,f +6708,3004,320,1,f +6708,3021,0,2,f +6708,3022,25,1,f +6708,3023,182,5,f +6708,3023,14,1,f +6708,32013,4,1,f +6708,32062,4,1,f +6708,32270,0,1,f +6708,32474pr1007,25,1,f +6708,32474pr1008,25,1,f +6708,3626cpr1796,4,1,f +6708,3937,0,2,f +6708,3960pr0018,52,1,f +6708,41769,4,1,f +6708,41770,4,1,f +6708,4274,71,1,t +6708,4274,71,2,f +6708,4505,308,1,f +6708,4697b,71,1,t +6708,4697b,71,1,f +6708,48729b,0,1,t +6708,48729b,0,1,f +6708,59443,0,1,f +6708,60897,4,2,f +6708,6134,71,2,f +6708,62462,320,2,f +6708,64728,4,2,f +6708,64867,182,1,f +6708,6541,0,2,f +6708,6558,1,1,f +6708,85984,4,2,f +6708,87580,320,2,f +6708,89522,297,1,f +6708,89522,297,1,t +6708,92338,297,2,f +6708,973pr3160c01,4,1,f +6708,98313,320,1,f +6709,2362a,40,2,f +6709,2432,4,2,f +6709,2540,4,1,f +6709,2819,7,1,f +6709,2921,4,1,f +6709,3001,15,2,f +6709,3002,7,1,f +6709,3003,2,1,f +6709,3004,15,2,f +6709,3005,15,3,f +6709,3007,15,1,f +6709,3009,15,2,f +6709,3010,15,2,f +6709,3020,7,1,f +6709,3021,15,4,f +6709,3021,0,4,f +6709,3022,4,5,f +6709,3023,15,3,f +6709,30237a,15,4,f +6709,3032,0,1,f +6709,3039,15,1,f +6709,30488,7,1,f +6709,30488c01,15,1,f +6709,30492,2,2,f +6709,30503,15,2,f +6709,3068b,2,4,f +6709,32064b,7,1,f +6709,32123b,7,1,f +6709,32123b,7,1,t +6709,32293,0,1,f +6709,32524,4,1,f +6709,33291,15,4,f +6709,33291,15,1,t +6709,3403c01,0,1,f +6709,3626bpa3,14,1,f +6709,3626bpx33,14,1,f +6709,3705,0,1,f +6709,3706,0,1,f +6709,3710,0,1,f +6709,3710,4,4,f +6709,3710,7,1,f +6709,3731,7,1,f +6709,3900,15,4,f +6709,3901,0,1,f +6709,3937,7,1,f +6709,3938,4,1,f +6709,4032a,15,1,f +6709,41752,8,1,f +6709,4204,2,1,f +6709,42073cx1,8,1,f +6709,4215b,40,2,f +6709,42411a,14,2,f +6709,42411b,14,2,f +6709,4282,15,1,f +6709,4282,2,1,f +6709,4476b,15,2,f +6709,4485,0,1,f +6709,4729,15,1,f +6709,6182,15,1,f +6709,6628,0,2,f +6709,6632,1,2,f +6709,71509,0,3,t +6709,71509,0,1,f +6709,72824p01,15,3,f +6709,970c00,1,1,f +6709,970c00,8,1,f +6709,973pb0165c01,0,1,f +6709,973pb0172c01,15,1,f +6711,14417,72,2,f +6711,14418,71,2,f +6711,15064,0,7,f +6711,15208,15,1,f +6711,15573,0,2,f +6711,18663,47,1,f +6711,3022,0,2,f +6711,30553,0,1,f +6711,30554b,0,1,f +6711,3626cpr0966,4,1,f +6711,3626cpr1069,0,5,f +6711,3937,0,2,f +6711,3938,0,2,f +6711,3941,47,1,f +6711,4032a,71,1,f +6711,44728,71,2,f +6711,4519,71,1,f +6711,51739,0,1,f +6711,63868,0,2,f +6711,75937,0,1,f +6711,90258,72,1,f +6711,92582,0,1,f +6711,970c00,1,1,f +6711,973pr2047c01,1,1,f +6711,98313,0,4,f +6711,99780,0,3,f +6712,2412b,0,2,f +6712,2432,4,2,f +6712,3003,4,2,f +6712,3020,19,2,f +6712,3021,4,1,f +6712,3022,8,1,f +6712,3022,4,1,f +6712,3039,4,1,f +6712,30492,19,1,f +6712,3068b,4,2,f +6712,32014,7,1,f +6712,32062,0,1,f +6712,32064b,4,2,f +6712,3626bpb0165,14,1,f +6712,3660,0,2,f +6712,3666,19,2,f +6712,3709,4,1,f +6712,3737,0,1,f +6712,3754pb05,4,1,f +6712,3832,8,3,f +6712,3937,7,1,f +6712,3941,19,1,f +6712,43093,1,1,f +6712,43337,4,4,f +6712,43372,19,1,f +6712,43373,25,1,f +6712,43374,15,1,f +6712,43702pr0001,25,2,f +6712,4865a,4,2,f +6712,6134,4,1,f +6712,973bpb179c01,110,1,f +6712,x494cx1,110,1,f +6713,2444,71,1,f +6713,2780,0,1,t +6713,2780,0,2,f +6713,32039,0,1,f +6713,3737,0,1,f +6713,43093,1,1,f +6713,4519,71,2,f +6713,47430,288,2,f +6713,47431,288,2,f +6713,47432,28,2,f +6713,47452,28,2,f +6713,47454,288,2,f +6713,47455,379,10,f +6713,47456,135,2,f +6713,47457,135,2,f +6713,54169,76,1,f +6713,54177,135,2,f +6713,54181pb01,297,1,f +6713,54182c01pb01,135,1,f +6713,54937,135,2,f +6713,55010,76,2,f +6713,bb153pr0015,28,1,f +6716,3626bpr0895,15,1,f +6716,6260,15,1,f +6716,6265,15,1,t +6716,6265,15,2,f +6716,6266,15,2,f +6717,4767,15,1,f +6717,4773,36,1,f +6717,4773,33,1,f +6717,4773,46,1,f +6717,4773,34,1,f +6718,645bc01,15,8,f +6718,645bc01,4,8,f +6719,10187,179,2,f +6719,10187,179,1,t +6719,11096,297,1,f +6719,11097,297,1,f +6719,11100,15,2,f +6719,11477,0,1,f +6719,12549pr0006,15,1,f +6719,15070,14,1,f +6719,15712,15,2,f +6719,18759,71,2,f +6719,18868a,41,1,f +6719,19981pr0044,41,1,f +6719,2540,71,1,f +6719,30162,71,2,f +6719,3023,182,2,f +6719,3023,72,1,f +6719,3024,15,1,t +6719,3024,15,1,f +6719,30374,70,1,f +6719,3626cpr1124,212,1,f +6719,3710,71,1,f +6719,3941,41,1,f +6719,4070,15,2,f +6719,41769,272,1,f +6719,41770,272,1,f +6719,43722,15,1,f +6719,43723,15,1,f +6719,48336,15,3,f +6719,50950,272,2,f +6719,51739,272,1,f +6719,54200,272,2,f +6719,54200,272,1,t +6719,6019,0,1,f +6719,60470a,15,3,f +6719,60897,71,2,f +6719,6126b,182,2,f +6719,6141,71,1,t +6719,6141,71,2,f +6719,85861,15,1,t +6719,85861,15,2,f +6719,970c00pr0933,4,1,f +6719,973pr3146c01,297,1,f +6719,98138,182,1,t +6719,98138,15,2,f +6719,98138,15,1,t +6719,98138,182,2,f +6719,98138pr0023,182,1,t +6719,98138pr0023,182,1,f +6720,2335,15,1,f +6720,2356,71,3,f +6720,2357,15,8,f +6720,2412b,0,1,f +6720,2412b,72,4,f +6720,2413,15,10,f +6720,2413,71,2,f +6720,2420,72,8,f +6720,2431,320,3,f +6720,2431,15,10,f +6720,2431,72,3,f +6720,2432,15,3,f +6720,2432,4,4,f +6720,2444,0,10,f +6720,2445,71,2,f +6720,2450,71,2,f +6720,2450,320,2,f +6720,2456,15,6,f +6720,2458,19,4,f +6720,2460,72,6,f +6720,2476a,15,1,f +6720,2524,70,1,f +6720,2540,19,5,f +6720,2540,72,5,f +6720,2555,0,2,f +6720,2654,19,8,f +6720,2744,4,4,f +6720,2780,0,1,t +6720,2780,0,33,f +6720,2817,4,2,f +6720,2877,71,23,f +6720,298c02,71,1,t +6720,298c02,71,2,f +6720,3001,27,4,f +6720,3001,15,4,f +6720,3003,19,5,f +6720,3004,27,3,f +6720,3005,15,12,f +6720,3007,0,1,f +6720,3008,15,8,f +6720,3009,15,9,f +6720,3009,4,2,f +6720,3010,15,4,f +6720,3010,27,2,f +6720,30187e,70,1,f +6720,3020,71,16,f +6720,3021,70,2,f +6720,3022,71,7,f +6720,3023,71,25,f +6720,3023,70,2,f +6720,3023,27,2,f +6720,30259,70,2,f +6720,3028,71,3,f +6720,3029,15,2,f +6720,3030,72,1,f +6720,3031,4,2,f +6720,3032,71,3,f +6720,3034,15,2,f +6720,3034,19,2,f +6720,3035,72,2,f +6720,30355,15,1,f +6720,30356,15,1,f +6720,30357,72,6,f +6720,3036,15,2,f +6720,30363,4,1,f +6720,30364,72,4,f +6720,30365,71,4,f +6720,30373,72,2,f +6720,30374,36,2,f +6720,30374,41,2,f +6720,30377,0,4,f +6720,30377,0,1,t +6720,3039,19,2,f +6720,3039,15,11,f +6720,3039,71,2,f +6720,3039,4,2,f +6720,3040b,15,10,f +6720,3048c,70,2,f +6720,30503,72,4,f +6720,30503,15,2,f +6720,30592,71,3,f +6720,3063b,71,2,f +6720,3063b,15,6,f +6720,3068b,19,4,f +6720,3069b,320,7,f +6720,3069b,40,18,f +6720,3069b,27,6,f +6720,3070b,40,12,f +6720,3070b,40,1,t +6720,3070b,15,4,f +6720,3070b,15,1,t +6720,32018,15,4,f +6720,32028,15,14,f +6720,32054,71,6,f +6720,32062,4,1,f +6720,32063,71,4,f +6720,32064b,14,6,f +6720,32140,72,4,f +6720,32316,71,4,f +6720,3245b,15,11,f +6720,32523,71,4,f +6720,32526,71,2,f +6720,32530,72,4,f +6720,3298,14,1,f +6720,3307,15,7,f +6720,33243,27,2,f +6720,3460,72,3,f +6720,3460,15,2,f +6720,3622,71,6,f +6720,3623,19,2,f +6720,3623,320,4,f +6720,3626bpr0525,78,2,f +6720,3626bpr0547,78,1,f +6720,3626bpr0549,15,1,f +6720,3660,27,3,f +6720,3660,15,9,f +6720,3665,15,6,f +6720,3665,4,2,f +6720,3666,19,8,f +6720,3678b,15,8,f +6720,3700,1,5,f +6720,3706,0,5,f +6720,3708,0,2,f +6720,3710,1,16,f +6720,3710,15,18,f +6720,3747b,15,12,f +6720,3794a,0,6,f +6720,3795,71,5,f +6720,3832,72,3,f +6720,3894,4,2,f +6720,3937,15,3,f +6720,3942c,320,2,f +6720,3958,15,2,f +6720,3960,72,2,f +6720,3960,71,2,f +6720,4032a,72,11,f +6720,4070,15,4,f +6720,4070,70,2,f +6720,4085c,71,4,f +6720,4150,15,2,f +6720,4151b,72,2,f +6720,41531,15,6,f +6720,4162,320,2,f +6720,4162,15,8,f +6720,4162,71,4,f +6720,41747,71,1,f +6720,41747,4,1,f +6720,41748,4,1,f +6720,41748,71,1,f +6720,41764,15,1,f +6720,41765,15,1,f +6720,41883,40,2,f +6720,42003,72,2,f +6720,42022,15,16,f +6720,4274,71,1,t +6720,4274,71,5,f +6720,4282,71,4,f +6720,4282,15,3,f +6720,43093,1,7,f +6720,43337,4,4,f +6720,4345b,71,4,f +6720,4346,15,4,f +6720,4349,0,1,f +6720,44301a,72,14,f +6720,44302a,71,12,f +6720,44358,71,3,f +6720,44359,71,6,f +6720,4445,15,2,f +6720,44568,71,3,f +6720,44570,15,3,f +6720,44675,70,1,f +6720,44728,71,8,f +6720,4510,15,4,f +6720,4515,15,4,f +6720,4519,71,2,f +6720,4589,72,11,f +6720,4599a,0,2,f +6720,4600,0,1,f +6720,4623,0,1,f +6720,4733,72,1,f +6720,4740,71,2,f +6720,47457,14,1,f +6720,47759,320,1,f +6720,48336,0,2,f +6720,4854,4,4,f +6720,4865a,71,8,f +6720,50747pr02,40,2,f +6720,50950,15,4,f +6720,52501,15,8,f +6720,54200,27,8,f +6720,54200,27,2,t +6720,54200,320,6,f +6720,54200,320,2,t +6720,54200,72,5,f +6720,54200,72,1,t +6720,56145,71,2,f +6720,58247,0,2,f +6720,59443,71,7,f +6720,60208,320,12,f +6720,60470a,4,3,f +6720,60478,4,2,f +6720,60481,15,10,f +6720,6091,320,8,f +6720,61184,71,8,f +6720,61189pr0003,15,1,f +6720,61189pr0004,15,1,f +6720,61190a,72,1,f +6720,61190a,72,1,t +6720,61190b,72,1,f +6720,61190b,72,1,t +6720,61190c,72,1,t +6720,61190c,72,1,f +6720,61190f,72,2,t +6720,61190f,72,2,f +6720,61196,484,1,f +6720,61198,0,1,f +6720,61199,71,2,f +6720,61199,71,1,t +6720,6120,72,2,f +6720,61200pr0001,484,1,f +6720,6134,0,3,f +6720,6141,71,1,f +6720,6141,71,2,t +6720,6141,47,1,t +6720,6141,47,1,f +6720,6141,42,1,t +6720,6141,42,4,f +6720,6179,15,16,f +6720,6180,15,5,f +6720,6222,15,2,f +6720,6233,320,2,f +6720,62462,0,2,f +6720,62462,320,6,f +6720,6259,41,2,f +6720,63585,72,2,t +6720,63585,72,2,f +6720,63586,72,2,f +6720,63586,72,2,t +6720,63965,0,2,f +6720,63965,71,5,f +6720,64567,71,4,f +6720,6536,71,4,f +6720,6541,71,8,f +6720,6558,1,2,f +6720,7676stk01,9999,1,t +6720,95120,72,2,f +6720,970c00,308,1,f +6720,970c00,272,1,f +6720,970x005,15,1,f +6720,970x026,15,2,f +6720,973pr0470c01,15,1,f +6720,973pr1401c01,15,1,f +6720,973pr1402c01,308,1,f +6720,973pr1403c01,19,1,f +6720,973pr1404c01,272,1,f +6722,3001a,14,2,f +6722,3001a,1,4,f +6722,3002a,14,1,f +6722,3002a,47,1,f +6722,3002a,1,2,f +6722,3003,4,4,f +6722,3003,14,6,f +6722,3003,47,3,f +6722,3006,1,2,f +6722,3007,4,1,f +6722,3007,1,8,f +6722,3008a,1,2,f +6722,3009a,1,2,f +6722,3009a,14,2,f +6722,3034,15,2,f +6722,3035,15,7,f +6722,3036,15,6,f +6722,3037,4,2,f +6722,3039,4,4,f +6722,3039,1,2,f +6722,3065,4,4,f +6722,3065,14,6,f +6722,3065,47,6,f +6726,2357,15,2,f +6726,2362b,15,2,f +6726,2412b,7,6,f +6726,2412b,383,1,f +6726,2431,7,2,f +6726,2436,1,3,f +6726,2445,1,1,f +6726,2495,4,1,f +6726,2496,0,1,t +6726,2496,0,1,f +6726,2877,15,2,f +6726,2877,7,1,f +6726,3005,15,2,f +6726,3010,15,2,f +6726,3020,15,2,f +6726,3020,7,3,f +6726,3022,15,3,f +6726,3023,4,1,f +6726,3024,36,2,f +6726,3030,15,1,f +6726,3032,7,2,f +6726,3034,1,1,f +6726,3062b,1,4,f +6726,3070b,46,2,f +6726,3070b,46,1,t +6726,3626bpr0001,14,1,f +6726,3710,15,1,f +6726,3710,0,4,f +6726,3821,15,1,f +6726,3822,15,1,f +6726,3823,41,1,f +6726,3829c01,4,1,f +6726,3832,0,1,f +6726,4211,0,1,f +6726,4213,15,2,f +6726,4214,15,1,f +6726,4215b,15,4,f +6726,4315,1,1,f +6726,4485,1,1,f +6726,6014a,15,4,f +6726,6015,0,4,f +6726,6111,15,2,f +6726,6141,14,1,t +6726,6141,14,8,f +6726,6157,7,2,f +6726,970c00,1,1,f +6726,973c07,1,1,f +6728,132a,0,8,f +6728,3001a,15,4,f +6728,3001a,14,1,f +6728,3001a,0,1,f +6728,3001a,4,2,f +6728,3002a,1,1,f +6728,3002a,14,7,f +6728,3002a,0,3,f +6728,3003,0,3,f +6728,3003,4,6,f +6728,3003,14,1,f +6728,3003,15,2,f +6728,3004,1,1,f +6728,3004,0,11,f +6728,3004,14,4,f +6728,3004,4,7,f +6728,3005,1,4,f +6728,3006,14,2,f +6728,3007,4,1,f +6728,3008,1,2,f +6728,3009,1,4,f +6728,3009,47,2,f +6728,3009,14,2,f +6728,3010,14,2,f +6728,3010,15,1,f +6728,3028,15,1,f +6728,3033,1,1,f +6728,3039,4,4,f +6728,3062a,14,4,f +6728,3183a,14,1,f +6728,3184,1,1,f +6728,3613,1,2,f +6728,3613,4,2,f +6728,3614a,14,4,f +6728,685p01,14,1,f +6728,685px3,14,1,f +6728,7039,4,8,f +6728,7049b,0,4,f +6728,792c03,1,1,f +6728,792c03,4,1,f +6728,x196,0,1,f +6728,x407,4,1,f +6729,b6000stk01,9999,1,f +6729,b6000stk02,9999,1,f +6735,194cx1,7,1,f +6735,2335,14,2,f +6735,2345,14,1,f +6735,2357,14,1,f +6735,2357,0,1,f +6735,2408,33,2,f +6735,2412b,14,1,f +6735,2412b,0,11,f +6735,2418b,33,1,f +6735,2419,0,2,f +6735,2420,0,5,f +6735,2420,14,1,f +6735,2431,0,4,f +6735,2432,14,3,f +6735,2434,14,1,f +6735,2449,0,1,f +6735,2450,0,3,f +6735,2460,14,2,f +6735,2465,14,4,f +6735,2540,0,4,f +6735,2569,57,2,f +6735,2582,33,2,f +6735,2582px2,14,2,f +6735,2596,33,2,f +6735,2598,33,1,f +6735,2607,0,1,f +6735,2609,0,2,f +6735,2618,14,1,f +6735,2639,0,2,f +6735,2654,0,2,f +6735,2662,14,2,f +6735,2744,0,2,f +6735,2854,7,2,f +6735,30014,0,2,f +6735,3003,0,3,f +6735,3003,14,3,f +6735,3004,14,13,f +6735,3004,0,4,f +6735,3005,14,9,f +6735,3006,14,2,f +6735,3008,14,1,f +6735,3008,0,1,f +6735,3009,0,1,f +6735,3010,0,6,f +6735,3010,14,5,f +6735,3020,0,8,f +6735,3021,0,4,f +6735,3021,14,2,f +6735,3022,0,6,f +6735,3022,14,2,f +6735,3023,0,15,f +6735,3023,14,5,f +6735,3024,14,1,t +6735,3024,14,2,f +6735,3028,0,1,f +6735,3031,0,1,f +6735,3032,0,3,f +6735,3032,14,1,f +6735,3034,14,3,f +6735,3035,0,2,f +6735,3037,14,2,f +6735,30385,383,3,f +6735,3039,14,2,f +6735,3039,0,1,f +6735,3039pb019,14,2,f +6735,3040b,14,2,f +6735,3040b,0,3,f +6735,3040p01,0,1,f +6735,3062b,14,13,f +6735,3069b,0,3,f +6735,3069b,14,2,f +6735,3069bp12,14,4,f +6735,3069bps9,14,2,f +6735,3070b,0,2,f +6735,3070b,0,1,t +6735,3070bp06,14,1,t +6735,3070bp06,14,1,f +6735,3297,14,1,f +6735,3307,14,1,f +6735,3403,0,1,f +6735,3404,0,1,f +6735,3460,14,1,f +6735,3491,0,1,f +6735,3492c01,33,1,f +6735,3612,14,6,f +6735,3612,0,2,f +6735,3622,14,4,f +6735,3623,14,3,f +6735,3626bp69,14,1,f +6735,3626bpx101,14,1,f +6735,3626bpx114,14,2,f +6735,3633,0,1,f +6735,3660,14,3,f +6735,3665,14,2,f +6735,3665,0,4,f +6735,3666,14,1,f +6735,3673,7,2,f +6735,37,383,4,f +6735,3700,14,7,f +6735,3701,0,2,f +6735,3702,0,2,f +6735,3704,0,1,f +6735,3705,0,2,f +6735,3706,0,3,f +6735,3710,0,5,f +6735,3711a,0,23,f +6735,3711a,0,2,t +6735,3713,7,1,f +6735,3713,7,1,t +6735,3730,14,1,f +6735,3731,14,1,f +6735,3749,7,4,f +6735,3795,14,3,f +6735,3795,0,1,f +6735,3829c01,14,1,f +6735,3839b,0,3,f +6735,3937,14,1,f +6735,3937,0,3,f +6735,3941,0,1,f +6735,3958,0,1,f +6735,4019,7,3,f +6735,4032a,0,2,f +6735,4070,0,2,f +6735,4070,57,3,f +6735,4085c,0,7,f +6735,412,57,4,f +6735,4150pa0,14,1,f +6735,4161,0,4,f +6735,4213,0,4,f +6735,4220,14,1,f +6735,4221,0,2,f +6735,4265b,7,1,f +6735,4265b,7,1,t +6735,4282,0,1,f +6735,4286,14,4,f +6735,4286,0,1,f +6735,4315,0,3,f +6735,4315,14,1,f +6735,4345b,57,2,f +6735,4346,57,2,f +6735,4445,14,2,f +6735,4460a,0,4,f +6735,4519,0,1,f +6735,4590,0,1,f +6735,4623,14,1,f +6735,4625,0,5,f +6735,4735,0,2,f +6735,4859,0,1,f +6735,4864a,33,2,f +6735,4865a,0,3,f +6735,4865a,14,1,f +6735,57467,383,4,f +6735,59275,1,8,f +6735,6019,0,5,f +6735,6020,0,1,f +6735,6024px1,9,2,f +6735,6032,14,6,f +6735,6037,14,11,f +6735,6039,14,8,f +6735,6040,14,1,f +6735,6041,57,8,f +6735,6042,14,6,f +6735,6043,14,7,f +6735,6044,14,2,f +6735,6046,14,1,f +6735,6063,14,1,f +6735,6064,2,2,f +6735,6065,4,2,f +6735,6065,2,1,f +6735,6084,33,1,f +6735,6085,33,1,f +6735,6086,0,1,f +6735,6087,0,1,f +6735,6088,15,4,f +6735,6090,33,1,f +6735,6090,0,3,f +6735,6134,4,1,f +6735,6140,0,1,f +6735,6141,57,2,f +6735,6141,57,1,t +6735,6217,14,1,f +6735,6232,14,2,f +6735,70001pb01,0,1,f +6735,73092,0,3,f +6735,970x001,1,4,f +6735,973px170c01,15,4,f +6737,4342,19,2,f +6737,fab3a,9999,1,f +6737,fabeh8,366,1,f +6738,2420,4,2,f +6738,2428,0,1,f +6738,2431,7,1,f +6738,2436,0,1,f +6738,2444,0,1,f +6738,2444,4,5,f +6738,2711,0,2,f +6738,2719,7,3,f +6738,2793c02,14,2,f +6738,2797c03,14,1,f +6738,2825,7,10,f +6738,3005,0,1,f +6738,3008,0,1,f +6738,3020,4,2,f +6738,3021,4,2,f +6738,3022,7,2,f +6738,3022,4,2,f +6738,3022,0,5,f +6738,3023,7,8,f +6738,3023,0,5,f +6738,3023,4,17,f +6738,3024,0,10,f +6738,3024,4,3,f +6738,3030,4,2,f +6738,3032,4,4,f +6738,3034,4,2,f +6738,3036,4,1,f +6738,3040b,7,2,f +6738,3063b,0,2,f +6738,3069b,0,2,f +6738,3070b,7,2,f +6738,3403c01,0,1,f +6738,3460,7,2,f +6738,3460,4,8,f +6738,3482,7,1,f +6738,3623,7,2,f +6738,3623,0,8,f +6738,3623,4,9,f +6738,3647,7,9,f +6738,3648a,7,3,f +6738,3650a,7,2,f +6738,3651,7,4,f +6738,3665,0,4,f +6738,3665,7,2,f +6738,3666,0,1,f +6738,3666,4,8,f +6738,3673,7,14,f +6738,3700,4,10,f +6738,3700,7,3,f +6738,3700,0,2,f +6738,3701,4,15,f +6738,3702,4,3,f +6738,3702,7,5,f +6738,3702,0,7,f +6738,3703,0,2,f +6738,3703,4,6,f +6738,3704,0,5,f +6738,3705,0,18,f +6738,3706,0,7,f +6738,3707,0,4,f +6738,3708,0,1,f +6738,3709,0,1,f +6738,3709,7,1,f +6738,3709,4,8,f +6738,3710,0,3,f +6738,3710,4,7,f +6738,3710,7,1,f +6738,3713,7,22,f +6738,3736,7,5,f +6738,3737,0,6,f +6738,3737b,0,1,f +6738,3738,4,1,f +6738,3743,7,1,f +6738,3749,7,7,f +6738,3795,7,2,f +6738,3795,0,1,f +6738,3795,4,1,f +6738,3894,0,7,f +6738,3894,4,4,f +6738,3894,7,2,f +6738,3895,0,5,f +6738,3895,4,6,f +6738,3941,0,1,f +6738,3941,46,1,f +6738,4032a,14,1,f +6738,4143,7,9,f +6738,4150,15,2,f +6738,4150,14,1,f +6738,4162,4,4,f +6738,4185,7,5,f +6738,4261,7,2,f +6738,4262,4,2,f +6738,4265a,7,40,f +6738,4266,14,4,f +6738,4267,0,4,f +6738,4273b,7,5,f +6738,4274,7,2,f +6738,4286,4,2,f +6738,4287,0,1,f +6738,4459,0,43,f +6738,4477,4,2,f +6738,4519,0,4,f +6738,4697a,7,2,f +6738,4698,7,2,f +6738,4716,0,2,f +6738,5102c04,0,4,f +6738,5102c08,0,2,f +6738,5102c22,7,1,f +6738,70496,0,1,f +6738,75215,7,1,f +6738,9244,7,3,f +6738,rb00164,0,1,f +6739,32062,4,100,f +6740,12651,4,1,f +6740,15454pr0003,14,1,f +6740,20793,14,1,f +6740,24911,71,1,f +6740,25081,71,1,f +6740,3437,322,2,f +6740,3437,27,2,f +6740,3437,25,2,f +6740,3437,4,2,f +6740,61649,14,2,f +6740,63710pr0013,19,1,f +6740,98459,27,3,f +6742,16542,7,1,f +6742,2341,4,2,f +6742,2350a,4,1,f +6742,2351,15,1,f +6742,2412a,15,2,f +6742,2412b,0,3,f +6742,2413,15,1,f +6742,2420,15,2,f +6742,2424,15,1,f +6742,2431,0,2,f +6742,2436,4,1,f +6742,3005,4,2,f +6742,3020,15,1,f +6742,3020,0,1,f +6742,3020,4,4,f +6742,3021,0,2,f +6742,3022,0,1,f +6742,3022,4,1,f +6742,3023,0,1,f +6742,3023,4,6,f +6742,3024,47,2,f +6742,3024,33,3,f +6742,3024,4,9,f +6742,3030,4,1,f +6742,3040b,4,6,f +6742,3062b,15,1,f +6742,3068b,0,1,f +6742,3068b,4,4,f +6742,3069b,0,1,f +6742,3069b,15,2,f +6742,3070b,36,1,t +6742,3070b,36,2,f +6742,3315,0,1,f +6742,3403,4,1,f +6742,3404,4,1,f +6742,3597,0,1,f +6742,3623,4,2,f +6742,3626apr0001,14,2,f +6742,3639,0,1,f +6742,3640,0,1,f +6742,3660,4,1,f +6742,3665,4,6,f +6742,3673,7,2,f +6742,3700,4,2,f +6742,3710,4,4,f +6742,3710,15,1,f +6742,3730,0,1,f +6742,3731,0,1,f +6742,3794a,4,1,f +6742,3795,0,2,f +6742,3823,41,1,f +6742,3829c01,15,2,f +6742,3832,0,1,f +6742,3834,15,2,f +6742,3838,15,1,f +6742,3839b,0,1,f +6742,3959,15,2,f +6742,4070,4,4,f +6742,4084,0,8,f +6742,4085b,4,1,f +6742,4208,0,1,f +6742,4209p01,4,1,f +6742,4213,4,1,f +6742,4214,4,1,f +6742,4287,4,2,f +6742,4532,4,2,f +6742,4533,15,2,f +6742,4590,4,1,f +6742,4599a,15,1,f +6742,4600,0,4,f +6742,4624,15,8,f +6742,4735,15,2,f +6742,4740,15,2,f +6742,970c00,0,2,f +6742,973p21c01,0,2,f +6743,2444,14,2,f +6743,2445,14,1,f +6743,2654,0,3,f +6743,2780,0,1,f +6743,2780,0,1,t +6743,3003,4,1,f +6743,3004,14,2,f +6743,30088,0,1,f +6743,3020,1,2,f +6743,3021,4,1,f +6743,3021,0,1,f +6743,3021,14,3,f +6743,3022,71,1,f +6743,3032,71,1,f +6743,3040b,0,2,f +6743,30414,14,2,f +6743,3176,0,2,f +6743,32016,0,3,f +6743,32054,0,1,f +6743,32056,0,2,f +6743,32062,4,5,f +6743,32064b,4,1,f +6743,32123b,71,2,f +6743,32123b,71,1,t +6743,33299a,0,1,f +6743,3626bpr0644,14,1,f +6743,3701,0,2,f +6743,3706,0,2,f +6743,3710,0,1,f +6743,3713,4,1,t +6743,3713,4,2,f +6743,3747b,0,1,f +6743,3795,0,1,f +6743,4085c,4,6,f +6743,41669,36,2,f +6743,41677,4,2,f +6743,42023,0,2,f +6743,4274,71,3,f +6743,4274,71,1,t +6743,43093,1,9,f +6743,43713,0,1,f +6743,43720,0,1,f +6743,43721,0,1,f +6743,44661,0,1,f +6743,45301,0,1,f +6743,45590,0,2,f +6743,45705,0,1,f +6743,47406,0,1,f +6743,47455,0,1,f +6743,47457,4,2,f +6743,48169,72,1,f +6743,48170,72,1,f +6743,48336,14,2,f +6743,53451,15,6,f +6743,53451,0,4,f +6743,53451,15,1,t +6743,53451,0,1,t +6743,54383,0,2,f +6743,54384,0,2,f +6743,59275,27,2,f +6743,60470a,0,2,f +6743,60479,14,2,f +6743,6134,0,1,f +6743,6141,14,2,f +6743,6141,14,1,t +6743,6239,0,1,f +6743,6541,0,2,f +6743,6632,0,1,f +6743,6636,0,1,f +6743,73983,0,2,f +6743,85970,0,1,f +6743,87745,0,4,f +6743,87747,0,9,f +6743,87747,15,4,f +6743,87748pr0001,36,1,f +6743,87754,72,1,f +6743,89141,9999,1,t +6743,89159,35,1,f +6743,970c00pr0145,72,1,f +6743,973pr1557c01,72,1,f +6745,3068b,0,2,f +6745,4733,71,1,f +6745,6141,47,1,t +6745,6141,47,1,f +6745,6141,71,1,t +6745,6141,71,2,f +6745,6141,41,1,t +6745,6141,41,1,f +6747,32064b,2,50,f +6749,10247,72,9,f +6749,10247,71,4,f +6749,11089,0,1,f +6749,11215,0,3,f +6749,11476,71,2,f +6749,11477,15,6,f +6749,11477,0,6,f +6749,13547,0,2,f +6749,15068,0,6,f +6749,15367,0,4,f +6749,15462,28,2,f +6749,15619,2,1,f +6749,15706,0,8,f +6749,15827,0,2,f +6749,15831,0,1,f +6749,16057,9999,1,t +6749,17979,71,2,f +6749,2362b,40,2,f +6749,2412b,36,4,f +6749,2419,85,5,f +6749,2431,0,6,f +6749,2431,15,2,f +6749,2445,0,3,f +6749,2450,0,2,f +6749,2476a,71,4,f +6749,2540,71,6,f +6749,2540,0,2,f +6749,2540,72,2,f +6749,2639,72,2,f +6749,2654,0,3,f +6749,2654,182,6,f +6749,2723,0,4,f +6749,2730,0,2,f +6749,2780,0,16,f +6749,2817,0,1,f +6749,2904,0,1,f +6749,3001,4,1,f +6749,3004,19,1,f +6749,3005,71,4,f +6749,3006,71,1,f +6749,30173b,297,3,f +6749,30192,72,1,f +6749,3020,0,10,f +6749,3020,15,5,f +6749,3021,72,2,f +6749,3021,85,5,f +6749,3021,0,3,f +6749,3022,71,5,f +6749,3022,70,3,f +6749,3023,15,2,f +6749,3023,72,1,f +6749,3023,36,14,f +6749,30237b,71,2,f +6749,3024,0,2,f +6749,3030,0,1,f +6749,3031,15,1,f +6749,3032,0,1,f +6749,3035,72,1,f +6749,3037,72,2,f +6749,3039,72,4,f +6749,3040b,0,2,f +6749,3048c,72,1,f +6749,3049d,71,1,f +6749,30602,85,2,f +6749,3062b,36,2,f +6749,3065,36,4,f +6749,3068b,72,2,f +6749,3068b,0,2,f +6749,3068b,4,1,f +6749,3069b,85,6,f +6749,3069bpr0086,71,1,f +6749,3070b,36,4,f +6749,3176,72,3,f +6749,32000,72,2,f +6749,32000,0,6,f +6749,32015,0,4,f +6749,32028,0,4,f +6749,32028,71,2,f +6749,32039,0,1,f +6749,32054,4,1,f +6749,32054,0,10,f +6749,32062,4,3,f +6749,32064b,72,2,f +6749,32123b,71,2,f +6749,32123b,14,2,f +6749,32138,0,2,f +6749,32140,0,2,f +6749,32187,71,2,f +6749,32270,0,1,f +6749,32271,0,2,f +6749,32316,0,4,f +6749,32525,0,2,f +6749,32530,72,4,f +6749,32556,19,2,f +6749,3460,0,4,f +6749,3626cpr1278,14,1,f +6749,3626cpr1280,14,1,f +6749,3626cpr1282,0,1,f +6749,3626cpr1283,0,1,f +6749,3626cpr1366,14,1,f +6749,3639,72,2,f +6749,3640,72,2,f +6749,3649,71,2,f +6749,3659,72,1,f +6749,3660,72,2,f +6749,3666,71,4,f +6749,3666,72,2,f +6749,3700,0,11,f +6749,3701,0,6,f +6749,3705,0,4,f +6749,3708,0,1,f +6749,3710,71,7,f +6749,3710,0,6,f +6749,3795,72,1,f +6749,3795,28,1,f +6749,3795,308,2,f +6749,3832,71,1,f +6749,3849,0,1,f +6749,3941,71,1,f +6749,3941,0,2,f +6749,3941,85,3,f +6749,40490,72,2,f +6749,4070,72,6,f +6749,4150,72,2,f +6749,4150pr0012,72,1,f +6749,41669,179,3,f +6749,41769,15,1,f +6749,41770,15,1,f +6749,41854,15,2,f +6749,41854,85,3,f +6749,42446,72,1,f +6749,4274,1,5,f +6749,43093,1,19,f +6749,43712,72,1,f +6749,43713,72,1,f +6749,44301a,72,4,f +6749,44309,0,2,f +6749,44375a,0,2,f +6749,44676,72,2,f +6749,44676,19,1,f +6749,44728,72,7,f +6749,4590,72,1,f +6749,4598,0,1,f +6749,4740,0,2,f +6749,47455,0,2,f +6749,47456,0,2,f +6749,47457,71,1,f +6749,47720,0,1,f +6749,47755,71,2,f +6749,48169,72,2,f +6749,48171,72,2,f +6749,48336,71,1,f +6749,48336,297,1,f +6749,4869,71,2,f +6749,4871,0,1,f +6749,48729b,0,8,f +6749,48933,72,2,f +6749,48989,71,2,f +6749,50304,85,1,f +6749,50305,85,1,f +6749,51739,4,1,f +6749,53451,179,4,f +6749,53454,36,2,f +6749,54200,85,9,f +6749,54200,71,6,f +6749,55978,0,2,f +6749,56145,297,4,f +6749,57028c01,71,1,f +6749,57796,72,1,f +6749,57906,0,4,f +6749,57909b,72,6,f +6749,59900,297,1,f +6749,60470a,4,1,f +6749,60470a,71,2,f +6749,60470a,0,8,f +6749,60478,0,2,f +6749,60478,71,2,f +6749,60481,85,4,f +6749,60594,0,1,f +6749,60897,71,4,f +6749,6117,72,2,f +6749,61183,72,1,f +6749,61183,19,1,f +6749,61184,71,3,f +6749,61252,72,3,f +6749,61252,71,2,f +6749,61403,179,2,f +6749,6141,297,9,f +6749,6141,182,4,f +6749,6141,36,2,f +6749,6141,179,6,f +6749,6141,85,4,f +6749,61482,71,1,f +6749,61485,0,1,f +6749,62113,72,1,f +6749,6232,71,2,f +6749,62361,71,1,f +6749,62462,0,2,f +6749,62743,71,4,f +6749,63965,0,1,f +6749,63965,70,1,f +6749,64225,0,1,f +6749,6541,72,2,f +6749,6541,71,4,f +6749,6553,71,1,f +6749,6558,1,2,f +6749,6628,0,2,f +6749,6629,72,2,f +6749,72454,0,1,f +6749,73983,0,6,f +6749,76766,0,1,f +6749,85543,15,2,f +6749,85984,71,2,f +6749,86208,72,2,f +6749,87079,0,4,f +6749,87079,72,1,f +6749,87081,0,1,f +6749,87082,0,2,f +6749,87083,72,2,f +6749,87544,0,2,f +6749,87580,0,3,f +6749,88072,0,2,f +6749,88930,0,2,f +6749,91988,72,2,f +6749,92280,0,6,f +6749,92579,40,1,f +6749,92690,71,2,f +6749,92946,0,2,f +6749,93059,179,1,f +6749,93069,0,1,f +6749,93274,0,1,f +6749,93274,71,2,f +6749,94925,71,2,f +6749,96874,25,1,t +6749,970c00,0,1,f +6749,970c00,2,1,f +6749,970c00pr0603,0,2,f +6749,970c00pr0604,0,1,f +6749,973pr2475c01,2,1,f +6749,973pr2574c01,71,1,f +6749,973pr2576c01,15,1,f +6749,973pr2578c01,0,1,f +6749,973pr2584c01,0,1,f +6749,98137,179,8,f +6749,98138,47,4,f +6749,98565,72,1,f +6749,99207,71,5,f +6749,99780,0,2,f +6749,99780,72,2,f +6749,99781,71,2,f +6750,3003,2,100,f +6752,2980c01,14,1,f +6754,15082,0,2,f +6754,18587,71,1,f +6754,18588,0,1,f +6754,30031,72,1,f +6754,30033,0,1,f +6754,3022,70,2,f +6754,30377,308,1,f +6754,32123b,14,1,f +6754,3942c,0,1,f +6754,60470a,4,1,f +6754,6141,57,12,f +6754,87083,72,1,f +6754,92947,70,1,f +6754,98313,70,2,f +6754,99781,0,1,f +6757,3001a,4,13,f +6757,3001a,15,13,f +6757,3001a,1,13,f +6757,3001a,14,13,f +6758,2780,0,1,t +6758,2780,0,1,f +6758,32013,71,1,f +6758,32174,0,5,f +6758,32199,72,1,f +6758,32449,0,2,f +6758,32476,0,2,f +6758,32523,0,1,f +6758,41670,191,2,f +6758,42003,71,1,f +6758,42074,135,2,f +6758,43093,1,3,f +6758,4519,71,1,f +6758,47298,135,2,f +6758,47312,72,1,f +6758,47327,191,1,f +6758,50898,191,1,f +6758,50926,135,1,f +6758,54271,148,1,f +6758,54821,182,2,f +6758,57563,135,2,f +6758,59426,72,1,f +6758,6558,0,2,f +6758,6587,72,1,f +6761,2412b,42,6,f +6761,2540,71,1,f +6761,2817,4,2,f +6761,3005,0,4,f +6761,30173b,179,1,f +6761,30176,2,2,f +6761,3020,28,3,f +6761,3022,72,4,f +6761,3023,14,2,f +6761,3023,28,2,f +6761,3023,72,4,f +6761,3030,72,1,f +6761,3062b,272,2,f +6761,3626bpr0747,14,1,f +6761,3665,72,2,f +6761,3666,27,2,f +6761,3673,71,1,t +6761,3673,71,4,f +6761,3795,72,2,f +6761,3957a,42,2,f +6761,4460b,28,2,f +6761,47753pr0003,28,1,f +6761,48336,19,1,f +6761,51739,320,1,f +6761,59230,0,1,t +6761,59230,0,1,f +6761,6141,42,1,f +6761,6141,27,1,t +6761,6141,42,1,t +6761,6141,27,6,f +6761,61678,308,2,f +6761,63868,0,2,f +6761,6541,19,4,f +6761,6636,0,4,f +6761,970c00pr0275,15,1,f +6761,973pr1897c01,15,1,f +6761,98132,297,1,f +6761,98133pr0003,15,1,f +6761,98134,297,1,f +6761,98136,27,2,f +6761,98138pr0004,34,1,f +6761,98138pr0004,34,1,t +6761,98283,28,6,f +6762,11477,4,4,f +6762,14417,72,1,f +6762,14704,71,3,f +6762,15068,0,2,f +6762,15209,15,1,f +6762,22890,72,2,f +6762,2412b,72,2,f +6762,3020,0,1,f +6762,3021,14,1,f +6762,3022,4,3,f +6762,3023,4,3,f +6762,30367c,41,2,f +6762,3626cpr1001,15,1,f +6762,3660,4,1,f +6762,3710,0,2,f +6762,3834,14,1,f +6762,4032a,14,2,f +6762,4032a,0,3,f +6762,41769,4,1,f +6762,41770,4,1,f +6762,44661,0,1,f +6762,44728,0,2,f +6762,47457,4,2,f +6762,48336,4,2,f +6762,49668,15,4,f +6762,60470a,0,3,f +6762,60478,4,2,f +6762,6141,14,1,t +6762,6141,14,3,f +6762,6141,41,1,t +6762,6141,41,2,f +6762,63864,0,2,f +6762,63868,14,2,f +6762,87552,41,2,f +6762,98138,33,1,t +6762,98138,33,2,f +6762,99207,4,3,f +6762,99780,0,1,f +6763,32012,1,25,f +6764,3021,15,1,f +6764,3021,2,1,f +6764,3023,15,1,f +6764,3023,1,2,f +6764,3023,2,1,f +6764,3023,4,2,f +6764,3069b,1,2,f +6764,3069b,4,2,f +6764,3070b,15,1,t +6764,3070b,15,2,f +6764,3794b,2,1,f +6764,3794b,15,1,f +6765,2446,25,1,f +6765,2447,40,1,f +6765,3626bpr0387,14,1,f +6765,970c00,25,1,f +6765,973pb0751c01,25,1,f +6766,236bc96,15,1,f +6766,3001a,0,2,f +6766,3001a,4,4,f +6766,3003,0,2,f +6766,3003,4,1,f +6766,3004,0,7,f +6766,3005,47,2,f +6766,3005,0,2,f +6766,3008,0,2,f +6766,3009,0,1,f +6766,3009,4,2,f +6766,3009pb015,0,2,f +6766,3010,4,1,f +6766,3010,1,8,f +6766,3010,0,1,f +6766,3020,4,9,f +6766,3021,4,2,f +6766,3022,4,1,f +6766,3023,4,6,f +6766,3028,7,2,f +6766,3034,15,18,f +6766,3035,15,4,f +6766,3037,0,4,f +6766,3039,0,2,f +6766,3040a,4,2,f +6766,3058b,7,1,f +6766,3087bc01,4,2,f +6766,3145,15,4,f +6766,3229a,1,16,f +6766,3230a,1,16,f +6766,458,7,4,f +6766,468c02,0,1,f +6766,564c01,0,1,f +6766,7049b,15,6,f +6766,737ac01,4,4,f +6766,737ac02,4,4,f +6766,wheel2a,4,4,f +6766,wheel2b,4,12,f +6767,32123b,7,4,f +6767,4185,7,2,f +6767,85543,15,2,f +6767,85544,4,2,f +6767,85545,1,2,f +6767,85546,14,2,f +6768,10312pr0005,40,1,f +6768,11215,71,2,f +6768,11458,72,2,f +6768,11477,72,2,f +6768,14719,71,2,f +6768,15303,35,3,f +6768,15400,72,2,f +6768,15573,72,1,f +6768,17979,320,4,f +6768,2412b,0,2,f +6768,2412b,320,2,f +6768,2419,320,2,f +6768,2432,71,1,f +6768,2450,71,2,f +6768,2540,0,2,f +6768,25533,9999,1,t +6768,2639,72,4,f +6768,2654,72,4,f +6768,2780,0,1,t +6768,2780,0,4,f +6768,3020,72,3,f +6768,3020,71,7,f +6768,3021,28,1,f +6768,3022,0,2,f +6768,3022,71,5,f +6768,3023,320,7,f +6768,3023,72,2,f +6768,3024,71,2,f +6768,3024,71,1,t +6768,30361pr1008,15,1,f +6768,30362,15,2,f +6768,30367cpr1008,320,1,f +6768,30374,41,1,f +6768,30374,71,4,f +6768,30503,71,4,f +6768,32000,72,2,f +6768,32059,72,2,f +6768,32062,4,6,f +6768,32062,4,1,t +6768,32064a,0,2,f +6768,32531,71,1,f +6768,3623,320,2,f +6768,3623,4,2,f +6768,3666,72,2,f +6768,3666,0,2,f +6768,3700,71,1,f +6768,3701,0,2,f +6768,3710,71,2,f +6768,3710,72,2,f +6768,3737,0,1,f +6768,3747b,71,4,f +6768,3832,71,1,f +6768,3960pr13,40,1,f +6768,4032a,72,4,f +6768,4081b,72,4,f +6768,4162,320,1,f +6768,41678,72,2,f +6768,4274,1,5,f +6768,4274,1,1,t +6768,43093,1,1,t +6768,43093,1,2,f +6768,43722,71,1,f +6768,43723,71,1,f +6768,44567a,72,6,f +6768,44570,71,2,f +6768,4477,320,2,f +6768,4740,41,2,f +6768,50304,320,1,f +6768,50305,320,1,f +6768,50950,320,4,f +6768,54200,320,2,f +6768,54200,320,1,t +6768,59443,0,2,f +6768,59900,0,4,f +6768,60471,71,2,f +6768,60479,71,2,f +6768,60897,71,8,f +6768,6091,320,2,f +6768,6180,71,2,f +6768,63868,0,4,f +6768,63869,71,2,f +6768,63965,0,2,f +6768,64567,0,2,f +6768,64567,80,1,t +6768,64567,80,1,f +6768,6536,0,2,f +6768,6536,72,2,f +6768,6558,1,4,f +6768,6636,71,2,f +6768,85984,72,1,f +6768,87079,71,1,f +6768,87580,72,1,f +6768,970c00pr0576,28,1,f +6768,973pr0290c01,19,1,f +6768,98100,0,2,f +6768,98138pr0020,71,1,f +6768,98138pr0020,71,1,t +6768,99781,71,1,f +6768,99930,484,1,f +6769,10111,70,1,f +6769,10199,10,1,f +6769,10888,71,1,f +6769,11170,1,2,f +6769,12592,0,2,f +6769,12758,14,1,f +6769,13039,15,1,f +6769,13355,0,1,f +6769,14094,14,1,f +6769,16195,25,1,f +6769,17744,72,1,f +6769,2300,14,1,f +6769,2302,4,2,f +6769,3011,4,1,f +6769,3011,25,1,f +6769,3011,1,1,f +6769,31088,14,1,f +6769,3437,1,2,f +6769,3437,4,2,f +6769,3437,72,2,f +6769,40637,14,1,f +6769,40638,14,1,f +6769,4066,41,1,f +6769,44524,10,1,f +6769,44524,1,2,f +6769,47202bpr0007,25,1,f +6769,51269,71,1,f +6769,53157,4,2,f +6769,6394,4,1,f +6769,6474,14,1,f +6769,76371,14,2,f +6769,76371,25,2,f +6769,87084,73,1,f +6769,89465,0,1,f +6769,93346,0,2,f +6769,98223,4,1,f +6770,11100,25,2,f +6770,11477,14,4,f +6770,11477,4,2,f +6770,14417,72,3,f +6770,14704,71,5,f +6770,15070,15,4,f +6770,15208,15,1,f +6770,30165,14,1,f +6770,3020,14,2,f +6770,3022,14,4,f +6770,3022,71,1,f +6770,3039,191,2,f +6770,3069b,14,1,f +6770,3069b,4,1,f +6770,3176,4,1,f +6770,3660,14,2,f +6770,3731,71,2,f +6770,4032a,4,2,f +6770,4081b,14,4,f +6770,53451,15,2,f +6770,53451,15,1,t +6770,54200,182,4,f +6770,54200,182,1,t +6770,60470b,4,1,f +6770,60478,4,2,f +6770,87580,4,1,f +6770,98138pr0008,15,2,f +6770,98138pr0008,15,1,t +6770,99207,71,1,f +6770,99207,4,1,f +6770,99781,0,2,f +6771,2335p41,1,1,f +6771,2362a,0,2,f +6771,2462,0,4,f +6771,2539,8,1,f +6771,2540,0,1,f +6771,2588,21,1,f +6771,3004,0,11,f +6771,3004,15,1,f +6771,3023,0,3,f +6771,3023,15,1,f +6771,3034,2,2,f +6771,3622,0,2,f +6771,3626b,0,1,f +6771,3626bpr0001,14,1,f +6771,3659,0,2,f +6771,3710,0,2,f +6771,3844,0,1,f +6771,3847,8,2,f +6771,3848,6,1,f +6771,3957a,0,1,f +6771,4070,0,2,f +6771,4497,6,2,f +6771,6020,6,1,f +6771,970x026,4,1,f +6771,973c09,15,1,f +6771,973p41c02,4,1,f +6772,132a,0,4,f +6772,3001a,15,39,f +6772,3001a,1,3,f +6772,3001a,4,40,f +6772,3001a,0,3,f +6772,3001a,47,3,f +6772,3001a,14,3,f +6772,3002a,4,9,f +6772,3002a,47,2,f +6772,3002a,15,9,f +6772,3003,15,12,f +6772,3003,1,3,f +6772,3003,0,4,f +6772,3003,14,4,f +6772,3003,4,9,f +6772,3003,47,4,f +6772,3004,14,4,f +6772,3004,4,9,f +6772,3004,0,3,f +6772,3004,47,3,f +6772,3004,15,10,f +6772,3005,4,5,f +6772,3005,15,5,f +6772,3006,15,1,f +6772,3007,4,2,f +6772,3008,4,2,f +6772,3008,15,2,f +6772,3009,15,2,f +6772,3009,4,2,f +6772,3034,15,3,f +6772,3035,15,3,f +6772,3081bc01,4,2,f +6772,31bc01,4,2,f +6772,32bc01,4,1,f +6772,33bc01,4,1,f +6772,453bc01,4,2,f +6772,604c01,4,1,f +6772,645bc01,4,2,f +6772,700ex,7,1,f +6772,7039,4,4,f +6772,7049b,15,2,f +6773,2412b,15,2,f +6773,2420,15,2,f +6773,2431,15,2,f +6773,2436,15,3,f +6773,3020,15,1,f +6773,3022,14,1,f +6773,3023,36,2,f +6773,3023,14,2,f +6773,3031,15,1,f +6773,3034,0,1,f +6773,30602,0,1,f +6773,3068b,15,4,f +6773,3710,15,2,f +6773,3795,72,1,f +6773,44728,15,2,f +6773,50944pr0001,0,4,f +6773,50947,14,4,f +6773,50950,15,2,f +6773,50951,0,4,f +6773,54200,14,2,f +6773,6141,14,3,f +6773,6141,14,1,t +6773,6141,80,1,t +6773,6141,80,2,f +6773,6157,72,2,f +6774,10169,84,1,f +6774,10201,15,2,f +6774,11090,0,1,f +6774,11127,41,1,f +6774,11203,191,1,f +6774,11211,19,2,f +6774,11403pr0007,28,1,f +6774,11458,70,2,f +6774,11476,0,1,f +6774,11477,158,3,f +6774,11477,31,2,f +6774,11477,70,4,f +6774,11477,85,4,f +6774,11477,191,2,f +6774,11477,15,20,f +6774,11477,14,2,f +6774,11605,70,1,f +6774,11816pr0025,78,1,f +6774,11816pr0026,84,1,f +6774,13547,14,4,f +6774,13965,0,6,f +6774,13965,70,5,f +6774,14417,72,1,f +6774,14419,72,2,f +6774,14704,71,7,f +6774,14769,191,3,f +6774,14769,85,1,f +6774,15068,15,16,f +6774,15068,191,1,f +6774,15070,297,12,f +6774,15070,27,5,f +6774,15070,15,4,f +6774,15208,15,10,f +6774,15362,297,2,f +6774,15392,70,1,f +6774,15535,28,3,f +6774,15573,0,1,f +6774,15573,297,2,f +6774,15573,15,10,f +6774,15745,45,1,f +6774,18395,0,2,f +6774,18654,72,1,f +6774,19121,0,1,f +6774,19204pr0001,320,1,f +6774,19532pr0004,158,1,f +6774,20105,0,1,f +6774,20381pr0002,191,1,f +6774,22888,27,1,f +6774,22890,72,4,f +6774,2343,297,1,f +6774,2357,0,4,f +6774,2357,72,1,f +6774,2357,70,5,f +6774,23945pat0001,47,1,f +6774,24093pr0002b,297,1,f +6774,2412b,19,4,f +6774,2417,26,1,f +6774,24183pr0004,71,1,f +6774,24199,15,1,f +6774,2420,27,4,f +6774,2420,14,2,f +6774,2420,15,2,f +6774,24201,191,18,f +6774,24204,297,2,f +6774,24204,70,2,f +6774,2423,5,2,f +6774,2431,84,2,f +6774,24324,297,1,f +6774,2449,72,2,f +6774,2454a,0,2,f +6774,2458,14,2,f +6774,2460,72,2,f +6774,2476a,28,1,f +6774,25348,47,1,f +6774,2566,0,1,f +6774,26486,26,1,f +6774,26536,26,1,f +6774,26537pr0001,15,1,f +6774,26634,9999,1,f +6774,26750pr01,9999,2,f +6774,26809,323,1,f +6774,2736,71,1,f +6774,2780,0,3,f +6774,3001,0,1,f +6774,3001,72,1,f +6774,3004,72,6,f +6774,3004,191,2,f +6774,3005,72,5,f +6774,3007,1,1,f +6774,3009,72,1,f +6774,30099,308,1,f +6774,3010,0,1,f +6774,3010,72,5,f +6774,30153,35,4,f +6774,3020,15,4,f +6774,3020,0,1,f +6774,3021,191,4,f +6774,3021,19,3,f +6774,3021,72,2,f +6774,3022,15,3,f +6774,3022,27,2,f +6774,3022,191,2,f +6774,3022,72,2,f +6774,3023,191,23,f +6774,3023,41,1,f +6774,3023,15,14,f +6774,3023,0,4,f +6774,3023,27,2,f +6774,3023,70,5,f +6774,3023,31,3,f +6774,3023,72,3,f +6774,3024,182,2,f +6774,3024,191,4,f +6774,3024,14,2,f +6774,3024,15,12,f +6774,3024,70,4,f +6774,3034,28,1,f +6774,3034,14,1,f +6774,3035,28,2,f +6774,30357,15,2,f +6774,30357,72,2,f +6774,30385,35,2,f +6774,3040b,72,2,f +6774,30414,19,1,f +6774,30414,14,2,f +6774,3045,31,4,f +6774,3046a,72,2,f +6774,30526,71,1,f +6774,30553,0,1,f +6774,30565,27,1,f +6774,3065,35,4,f +6774,3065,42,2,f +6774,3068b,322,2,f +6774,3068b,27,1,f +6774,3068b,15,6,f +6774,3069b,15,2,f +6774,3069b,14,2,f +6774,3069b,182,2,f +6774,3069b,85,3,f +6774,3069bpr0172,15,1,f +6774,3070bpr0147,71,1,f +6774,32000,72,1,f +6774,32001,0,1,f +6774,32013,0,1,f +6774,32014,71,2,f +6774,32015,0,1,f +6774,32018,0,2,f +6774,32034,15,2,f +6774,32062,0,7,f +6774,32062,4,2,f +6774,32064a,15,6,f +6774,32064a,0,2,f +6774,32073,71,1,f +6774,32123b,71,3,f +6774,32124,0,1,f +6774,32199,0,1,f +6774,32449,15,10,f +6774,3245b,72,2,f +6774,3245c,0,3,f +6774,32523,71,1,f +6774,33183,70,1,f +6774,3456,191,1,f +6774,3460,72,2,f +6774,3460,15,2,f +6774,3622,70,1,f +6774,3622,0,3,f +6774,3659,0,2,f +6774,3660,70,1,f +6774,3665,15,2,f +6774,3665,72,2,f +6774,3666,27,1,f +6774,3678b,72,1,f +6774,3700,27,2,f +6774,3700,1,2,f +6774,3705,4,1,f +6774,3706,0,1,f +6774,3709,1,1,f +6774,3710,72,1,f +6774,3710,191,11,f +6774,3710,15,2,f +6774,3713,71,1,f +6774,3749,19,1,f +6774,3795,70,3,f +6774,3941,182,2,f +6774,3942c,72,1,f +6774,3956,0,1,f +6774,3958,27,1,f +6774,40243,31,8,f +6774,40244,0,1,f +6774,4032a,85,1,f +6774,40378,15,2,f +6774,4070,14,10,f +6774,4150,72,3,f +6774,41539,28,1,f +6774,41677,1,2,f +6774,42023,191,2,f +6774,4274,71,2,f +6774,4274,1,1,f +6774,4286,72,4,f +6774,43093,1,2,f +6774,43888,85,2,f +6774,44300,72,1,f +6774,44300,0,1,f +6774,44302a,71,1,f +6774,4460b,70,2,f +6774,44728,19,4,f +6774,4477,70,1,f +6774,4519,71,2,f +6774,4697b,0,2,f +6774,4733,15,1,f +6774,4740,15,3,f +6774,4740,41,4,f +6774,4740,70,1,f +6774,47455,72,1,f +6774,48169,41,1,f +6774,48171,72,1,f +6774,4865a,0,1,f +6774,49668,191,2,f +6774,50923,72,2,f +6774,50950,31,3,f +6774,50950,15,2,f +6774,52501,14,2,f +6774,53451,158,6,f +6774,53451,0,4,f +6774,53585,0,4,f +6774,54200,15,4,f +6774,54200,191,1,f +6774,54200,70,2,f +6774,54200,41,30,f +6774,55236,27,3,f +6774,57895,47,1,f +6774,57909a,15,2,f +6774,59443,0,1,f +6774,59900,15,2,f +6774,59900,72,3,f +6774,6005,15,4,f +6774,60169,35,1,f +6774,60476,0,1,f +6774,60481,31,4,f +6774,60581,72,1,f +6774,60596,0,1,f +6774,60897,0,2,f +6774,6091,15,8,f +6774,6091,70,2,f +6774,6091,191,8,f +6774,6111,72,2,f +6774,61252,72,2,f +6774,6141,297,1,f +6774,61678,15,2,f +6774,6183,15,1,f +6774,62462,15,4,f +6774,62808,297,2,f +6774,63868,70,2,f +6774,63965,15,4,f +6774,63965,0,1,f +6774,64648,179,1,f +6774,6587,28,3,f +6774,6628,0,1,f +6774,6632,1,2,f +6774,6636,191,4,f +6774,85861,182,1,f +6774,85861,0,4,f +6774,85984,70,1,f +6774,85984,15,2,f +6774,85984,323,1,f +6774,87079,72,1,f +6774,87083,72,4,f +6774,87580,297,1,f +6774,87580,19,3,f +6774,87580,0,1,f +6774,87580,15,5,f +6774,87611,191,1,f +6774,87747,15,2,f +6774,87994,15,3,f +6774,88072,72,3,f +6774,89522,179,3,f +6774,92013,15,1,f +6774,92456pr0090c01,84,1,f +6774,92456pr0093c01,78,1,f +6774,92946,72,3,f +6774,92947,0,2,f +6774,92950,0,1,f +6774,93095,70,2,f +6774,93273,70,2,f +6774,93549pat02,47,1,f +6774,93571,72,7,f +6774,93606,15,2,f +6774,96874,25,1,t +6774,98138,45,4,f +6774,98138,36,1,f +6774,98138,41,2,f +6774,98138,15,2,f +6774,98138,47,1,f +6774,98138,297,8,f +6774,98138,35,3,f +6774,98138pr0029,297,1,f +6774,99206,0,4,f +6774,99206,15,4,f +6774,99207,71,1,f +6774,99780,72,6,f +6774,99780,14,4,f +6774,99781,15,8,f +6777,30552,72,1,f +6777,30553,72,1,f +6777,3070b,14,1,f +6777,3070b,14,1,t +6777,4595,0,1,f +6777,4733,72,1,f +6777,48729b,0,1,f +6777,48729b,0,1,t +6777,54200,40,1,t +6777,54200,40,1,f +6777,54200,14,1,t +6777,54200,14,1,f +6777,60849,71,1,t +6777,60849,71,1,f +6777,6141,14,1,t +6777,6141,182,1,f +6777,6141,14,3,f +6777,6141,182,1,t +6777,6632,0,2,f +6781,11090,19,6,f +6781,11477,0,2,f +6781,14417,72,2,f +6781,14419,72,2,f +6781,14704,71,4,f +6781,14769pr1002,15,1,f +6781,15456,0,2,f +6781,3004,0,1,f +6781,3021,28,1,f +6781,3022,19,5,f +6781,3022,0,1,f +6781,3023,28,1,f +6781,3040b,0,2,f +6781,3040b,28,4,f +6781,32474pr1001,15,2,f +6781,3660,19,4,f +6781,44728,0,1,f +6781,53451,179,1,t +6781,53451,15,2,f +6781,53451,179,6,f +6781,53451,15,1,t +6781,54200,28,2,f +6781,54200,40,7,f +6781,54200,40,1,t +6781,54200,28,1,t +6781,54200,19,1,t +6781,54200,19,2,f +6781,60475b,0,2,f +6781,87087,19,2,f +6781,87580,28,3,f +6781,92692,0,2,f +6783,2357,19,2,f +6783,2412b,19,4,f +6783,2419,7,1,f +6783,2431,14,2,f +6783,2431ps0,14,2,f +6783,2431ps1,8,2,f +6783,2432,19,1,f +6783,2436,0,1,f +6783,2456,0,2,f +6783,2569,14,1,f +6783,2625,7,2,f +6783,2626,7,2,f +6783,3001,8,2,f +6783,3001,19,1,f +6783,3002,8,1,f +6783,3002,7,1,f +6783,3003,19,2,f +6783,3004,19,1,f +6783,3007,7,2,f +6783,30170,0,1,t +6783,30170,0,1,f +6783,30171,6,1,f +6783,3020,8,3,f +6783,3020,14,3,f +6783,3021,0,2,f +6783,3022,7,2,f +6783,3022,4,1,f +6783,3023,8,5,f +6783,3032,7,1,f +6783,30355,7,1,f +6783,30356,7,1,f +6783,30360,14,2,f +6783,30361aps1,15,1,f +6783,30362,15,2,f +6783,30363,7,1,f +6783,30363,14,4,f +6783,30367apr01,15,1,f +6783,3037,14,2,f +6783,30375,19,2,f +6783,30376,19,2,f +6783,30377,19,4,f +6783,30377,19,1,t +6783,30378,19,2,f +6783,30384,47,1,f +6783,3039,14,5,f +6783,3039ps3,7,1,f +6783,3039ps4,14,1,f +6783,3040b,19,2,f +6783,3062b,7,4,f +6783,3062b,1,2,f +6783,3068b,14,2,f +6783,3070b,4,2,f +6783,3070b,4,1,t +6783,32000,7,4,f +6783,3297,14,2,f +6783,3298,14,2,f +6783,3460,19,3,f +6783,3626bpsd,14,1,f +6783,3641,0,4,f +6783,3666,14,2,f +6783,3673,7,4,f +6783,3700,8,1,f +6783,3700,14,3,f +6783,3705,0,2,f +6783,3747a,8,2,f +6783,3749,7,1,f +6783,3795,14,3,f +6783,3795,8,5,f +6783,3937,8,1,f +6783,3938,19,1,f +6783,3941,14,5,f +6783,3942c,14,3,f +6783,3942c,7,2,f +6783,3957a,14,2,f +6783,4070,7,2,f +6783,4274,7,1,f +6783,4274,7,1,t +6783,4349,0,2,f +6783,4589,33,1,f +6783,4589,57,2,f +6783,4589,34,2,f +6783,4600,0,2,f +6783,4624,7,4,f +6783,4858,19,1,f +6783,4865a,14,2,f +6783,4865a,19,2,f +6783,6104,14,1,f +6783,6564,14,3,f +6783,6565,14,3,f +6783,970c00,19,1,f +6783,973px82ac01,19,1,f +6784,2412b,72,2,f +6784,2431,71,6,f +6784,2431,1,3,f +6784,2431,15,4,f +6784,2445,1,3,f +6784,2445,71,2,f +6784,2449,1,4,f +6784,2456,0,2,f +6784,2465,0,2,f +6784,2654,71,6,f +6784,2654,1,1,f +6784,2780,0,22,f +6784,2780,0,1,t +6784,3001,15,1,f +6784,3001,0,1,f +6784,3002,14,2,f +6784,3004,0,6,f +6784,3004,1,3,f +6784,3005,1,1,f +6784,3006,0,1,f +6784,3007,14,1,f +6784,3008,1,7,f +6784,3009,15,1,f +6784,3009,1,3,f +6784,3010,1,3,f +6784,3020,1,4,f +6784,3020,72,5,f +6784,3020,0,4,f +6784,3020,71,11,f +6784,3020,15,1,f +6784,3021,71,8,f +6784,3021,4,8,f +6784,3021,1,8,f +6784,3021,15,4,f +6784,3022,1,9,f +6784,3023,1,8,f +6784,3023,15,17,f +6784,3023,14,12,f +6784,3024,47,2,f +6784,3024,1,64,f +6784,3024,15,44,f +6784,3024,15,1,t +6784,3029,0,2,f +6784,3030,71,5,f +6784,3031,1,2,f +6784,3032,1,6,f +6784,3034,1,4,f +6784,3034,0,1,f +6784,3034,71,2,f +6784,3034,15,11,f +6784,3035,1,3,f +6784,30355,71,1,f +6784,30356,71,1,f +6784,3036,71,2,f +6784,3036,1,5,f +6784,3036,15,9,f +6784,3039,47,1,f +6784,3040b,15,8,f +6784,30414,0,4,f +6784,3065,47,2,f +6784,3068b,0,7,f +6784,3068b,71,10,f +6784,3069b,15,4,f +6784,3069b,1,5,f +6784,3069b,71,8,f +6784,3070b,15,1,t +6784,3070b,15,3,f +6784,32016,71,6,f +6784,32028,15,10,f +6784,32062,4,1,f +6784,32064b,71,24,f +6784,32073,71,2,f +6784,32123b,71,1,t +6784,32123b,71,4,f +6784,32140,0,2,f +6784,32324,71,1,f +6784,3298,0,8,f +6784,3460,1,14,f +6784,3460,15,6,f +6784,3622,1,5,f +6784,3623,71,2,f +6784,3623,1,12,f +6784,3626b,14,2,f +6784,3660,1,80,f +6784,3665,1,12,f +6784,3666,1,26,f +6784,3666,15,10,f +6784,3666,71,4,f +6784,3700,0,2,f +6784,3700,1,1,f +6784,3703,71,4,f +6784,3705,0,5,f +6784,3706,0,1,f +6784,3707,0,1,f +6784,3710,1,21,f +6784,3710,15,24,f +6784,3710,71,6,f +6784,3747b,71,6,f +6784,3749,19,1,f +6784,3794a,71,2,f +6784,3794a,15,63,f +6784,3794a,1,16,f +6784,3795,1,7,f +6784,3795,71,2,f +6784,3795,15,3,f +6784,3795,0,1,f +6784,3832,71,4,f +6784,3895,0,6,f +6784,3941,1,1,f +6784,3942c,1,1,f +6784,3942c,15,2,f +6784,4032a,1,4,f +6784,4070,15,2,f +6784,41530,71,2,f +6784,4162,1,2,f +6784,4162,0,12,f +6784,41747,1,2,f +6784,41747,15,2,f +6784,41748,1,2,f +6784,41748,15,2,f +6784,41769,1,21,f +6784,41770,1,21,f +6784,41896,15,2,f +6784,42022,15,4,f +6784,42023,1,4,f +6784,4286,15,2,f +6784,43722,71,5,f +6784,43722,15,6,f +6784,43722,1,23,f +6784,43723,15,6,f +6784,43723,1,23,f +6784,43723,71,5,f +6784,44728,71,3,f +6784,4477,15,18,f +6784,4477,1,10,f +6784,4519,71,6,f +6784,47397,71,7,f +6784,47398,71,7,f +6784,4742,1,1,f +6784,48183,1,3,f +6784,48183,15,1,f +6784,50304,71,3,f +6784,50305,71,3,f +6784,51739,15,3,f +6784,52501,1,6,f +6784,54200,15,1,t +6784,54200,47,52,f +6784,54200,15,4,f +6784,54200,47,3,t +6784,54383,71,5,f +6784,54383,15,4,f +6784,54384,71,5,f +6784,54384,15,4,f +6784,6141,4,2,f +6784,6141,47,1,f +6784,6141,36,1,t +6784,6141,34,1,f +6784,6141,36,3,f +6784,6141,4,1,t +6784,6141,47,1,t +6784,6141,34,1,t +6784,6179,71,10,f +6784,6180,71,12,f +6784,6541,71,2,f +6784,6564,15,2,f +6784,6565,15,2,f +6784,6629,0,2,f +6784,6636,71,8,f +6784,6636,15,40,f +6784,73983,4,1,f +6785,3068bpr0004,41,1,f +6785,3626bpr0882,14,1,f +6785,87989,71,1,f +6785,88646,0,1,f +6785,970c00,322,1,f +6785,973pr1954ac01,322,1,f +6785,98378,323,1,f +6786,2780,0,16,f +6786,2905,0,4,f +6786,32013,25,6,f +6786,32015,0,2,f +6786,32039,0,2,f +6786,32056,0,2,f +6786,32056,8,2,f +6786,32056,25,2,f +6786,32062,0,10,f +6786,32063,0,4,f +6786,32068,8,2,f +6786,32068,7,2,f +6786,32072,8,4,f +6786,32073,0,2,f +6786,32123b,7,1,f +6786,32123b,7,2,t +6786,32184,25,1,f +6786,32192,0,2,f +6786,32250,8,4,f +6786,32278,0,2,f +6786,32291,8,1,f +6786,32316,8,2,f +6786,32449,0,2,f +6786,32523,8,2,f +6786,32526,0,2,f +6786,32551,8,2,f +6786,32556,7,2,f +6786,32566,25,1,f +6786,32576,8,2,f +6786,32577,0,1,f +6786,32578,0,1,f +6786,32579,8,1,f +6786,33299a,7,6,f +6786,33299a,0,4,f +6786,3673,7,8,f +6786,3706,0,1,f +6786,3707,0,1,f +6786,3713,7,1,t +6786,3713,7,2,f +6786,3749,7,6,f +6786,40507,0,2,f +6786,41665,0,2,f +6786,41671pat0002,0,1,f +6786,41672,0,2,f +6786,41672,25,1,f +6786,41677,0,2,f +6786,41678,0,1,f +6786,42074,15,4,f +6786,4519,0,10,f +6786,6538b,7,1,f +6786,6587,8,2,f +6786,6628,0,2,f +6786,6629,8,4,f +6786,75c09,0,2,f +6786,75c13,0,2,f +6786,85543,15,2,f +6787,1490stk01,9999,1,t +6787,2341,4,1,f +6787,2401,15,1,f +6787,2412a,0,1,f +6787,2420,4,2,f +6787,2420,7,2,f +6787,2453a,4,5,f +6787,2454a,4,6,f +6787,2493b,15,6,f +6787,2494,47,6,f +6787,3001,14,1,f +6787,3005,0,2,f +6787,3005,15,4,f +6787,3005,4,10,f +6787,3010,4,6,f +6787,3010,14,2,f +6787,3010,15,5,f +6787,3020,0,3,f +6787,3022,0,1,f +6787,3022,7,2,f +6787,3023,7,1,f +6787,3023,0,4,f +6787,3023,4,2,f +6787,3024,4,4,f +6787,3024,46,2,f +6787,3024,36,2,f +6787,3033,4,1,f +6787,3033,15,2,f +6787,3034,7,1,f +6787,3037,0,1,f +6787,3039p23,7,1,f +6787,3040b,4,4,f +6787,3040p33,0,1,f +6787,3069b,0,1,f +6787,3070b,0,4,f +6787,3070b,14,8,f +6787,3622,4,4,f +6787,3623,0,2,f +6787,3624,15,1,f +6787,3626apr0001,14,3,f +6787,3641,0,4,f +6787,3660,4,4,f +6787,3665,4,3,f +6787,3666,15,1,f +6787,3666,4,2,f +6787,3679,7,1,f +6787,3680,7,1,f +6787,3710,0,4,f +6787,3741,2,1,f +6787,3742,14,1,t +6787,3742,14,3,f +6787,3788,0,1,f +6787,3794a,4,1,f +6787,3795,4,1,f +6787,3821,0,1,f +6787,3822,0,1,f +6787,3829c01,7,1,f +6787,3839b,7,1,f +6787,3853,0,1,f +6787,3856,0,2,f +6787,3857,7,1,f +6787,3901,6,1,f +6787,3937,7,1,f +6787,3938,7,1,f +6787,3941,15,1,f +6787,3957a,0,1,f +6787,3963,7,1,f +6787,4032a,0,2,f +6787,4070,7,2,f +6787,4070,4,2,f +6787,4079,1,2,f +6787,4150,0,1,f +6787,4162,14,1,f +6787,4213,0,1,f +6787,4215a,0,3,f +6787,4315,0,1,f +6787,4345a,7,1,f +6787,4345a,1,1,f +6787,4346,7,1,f +6787,4346,1,1,f +6787,4449,7,2,f +6787,4530,0,1,f +6787,4594,47,1,f +6787,4600,7,2,f +6787,4623,0,1,f +6787,4624,7,4,f +6787,47899c01,15,1,f +6787,73194c01,15,1,f +6787,73983,0,1,f +6787,970c00,1,1,f +6787,970c00,0,2,f +6787,973p71c01,15,1,f +6787,973pb0069c01,0,1,f +6787,973pb0091c01,0,1,f +6797,2654,0,1,f +6797,3004,27,2,f +6797,30175,179,1,f +6797,3022,27,1,f +6797,30374,0,1,f +6797,3626bpr0781,0,1,f +6797,4612934,9999,1,f +6797,4631418,9999,1,f +6797,4631420,9999,1,f +6797,4631422,9999,1,f +6797,4631424,9999,1,f +6797,59233pat0001,41,1,f +6797,60752,135,1,f +6797,87747,15,2,f +6797,92547pr0017,52,1,f +6797,92690,71,1,f +6797,92690,297,1,f +6797,93160,15,1,f +6797,93794,297,1,f +6797,970c00,0,1,f +6797,973pr1741c01,0,1,f +6798,11090,72,3,f +6798,11092,179,1,f +6798,11097,179,2,f +6798,11098,308,1,f +6798,11107,179,1,f +6798,11127,41,1,f +6798,11129pr0004,308,1,f +6798,11233pr0001,0,1,f +6798,11477,72,1,f +6798,12551pr0005,308,1,f +6798,13361pr0002,72,1,f +6798,2417,288,1,f +6798,3023,326,1,f +6798,30238,4,2,f +6798,30374,41,1,f +6798,30374,0,1,f +6798,3040b,72,1,f +6798,3622,71,1,f +6798,3626cpr1136,0,1,f +6798,3626cpr1143,308,1,f +6798,3626cpr1205,72,1,f +6798,4733,71,1,f +6798,48336,297,2,f +6798,53451,179,2,f +6798,60474,326,1,f +6798,6141,41,2,f +6798,63965,72,1,f +6798,64567,71,1,f +6798,87747,297,2,f +6798,970c00pr0431,28,1,f +6798,970c00pr0434,0,1,f +6798,970c00pr0438,70,1,f +6798,970c00pr0450,72,1,f +6798,973pr2227c01,28,1,f +6798,973pr2236c01,0,1,f +6798,973pr2248c01,70,1,f +6798,973pr2355c01,72,1,f +6798,98138,41,5,f +6798,98138,179,2,f +6800,11269,35,1,f +6800,11270,35,1,f +6800,11271,148,1,f +6800,11273,148,1,f +6800,11276,297,1,f +6800,11305,35,2,f +6800,2412b,72,1,f +6800,2780,0,2,t +6800,2780,0,30,f +6800,2853,71,2,f +6800,32009,71,4,f +6800,32009,15,2,f +6800,32039,0,2,f +6800,32062,4,3,f +6800,32072,0,4,f +6800,32073,71,4,f +6800,32123b,71,1,t +6800,32123b,71,1,f +6800,32140,71,7,f +6800,32184,0,2,f +6800,32192,0,4,f +6800,32271,15,4,f +6800,32271,71,2,f +6800,32291,71,2,f +6800,32316,15,3,f +6800,32348,71,2,f +6800,32523,15,1,f +6800,32524,15,4,f +6800,32525,15,1,f +6800,32526,15,6,f +6800,32556,19,3,f +6800,3713,71,4,f +6800,3713,71,1,t +6800,40490,4,1,f +6800,40490,71,1,f +6800,4150,15,1,f +6800,41677,71,4,f +6800,41751,35,1,f +6800,42003,71,11,f +6800,43093,1,32,f +6800,4519,71,8,f +6800,48989,71,6,f +6800,53451,297,4,f +6800,53451,297,1,t +6800,54821,35,2,f +6800,55615,71,2,f +6800,58176,35,4,f +6800,59443,71,2,f +6800,60483,72,3,f +6800,60484,72,4,f +6800,60485,71,2,f +6800,60935,179,2,f +6800,61184,71,4,f +6800,63869,71,7,f +6800,64394,15,1,f +6800,64680,15,1,f +6800,64712,0,2,f +6800,6536,0,4,f +6800,6558,1,23,f +6800,6587,28,2,f +6800,74261,72,4,f +6800,87080,15,2,f +6800,87083,72,4,f +6800,87086,15,2,f +6800,90608,72,4,f +6800,90609,0,2,f +6800,90617,72,2,f +6800,90623,0,1,f +6800,90639,15,1,f +6800,90639,297,2,f +6800,90640,35,2,f +6800,90641,297,4,f +6800,90650,148,2,f +6800,90661,297,2,f +6800,92907,0,1,f +6800,93575,179,2,f +6800,98313,179,4,f +6800,98563,148,2,f +6800,98564,35,2,f +6800,98570pat01,15,1,f +6800,98577,72,2,f +6800,98592,148,2,f +6802,3004,15,1,f +6802,3004,4,2,f +6802,3004pr20,15,1,f +6802,3010,4,1,f +6802,3022,15,1,f +6802,3022,0,1,f +6802,3039,4,1,f +6802,3660,7,1,f +6802,3665,4,1,f +6802,6141,15,1,f +6804,10201,71,1,f +6804,14769,71,2,f +6804,15068,1,2,f +6804,18649,71,2,f +6804,18651,0,1,f +6804,2340,191,2,f +6804,2412b,71,4,f +6804,2431,15,3,f +6804,2450,72,2,f +6804,2456,1,1,f +6804,3004,72,2,f +6804,3005,1,2,f +6804,3010,1,2,f +6804,3020,72,2,f +6804,3021,1,1,f +6804,3022,0,1,f +6804,3023,191,3,f +6804,3023,1,4,f +6804,3024,46,4,f +6804,3024,46,1,t +6804,3032,1,1,f +6804,30503,15,4,f +6804,30602,40,2,f +6804,3070b,34,1,t +6804,3070b,36,1,t +6804,3070b,34,1,f +6804,3070b,36,1,f +6804,3679,71,2,f +6804,3680,1,2,f +6804,3700,1,1,f +6804,3710,1,3,f +6804,3794b,71,3,f +6804,3795,0,1,f +6804,3795,1,1,f +6804,3832,71,2,f +6804,3942c,0,1,f +6804,41769,1,1,f +6804,41770,1,1,f +6804,43722,15,1,f +6804,43723,15,1,f +6804,44728,191,2,f +6804,4865a,4,2,f +6804,54383,15,1,f +6804,54383,71,1,f +6804,54384,71,1,f +6804,54384,15,1,f +6804,60897,4,4,f +6804,6231,71,2,f +6804,63864,71,2,f +6804,6636,191,3,f +6804,85984,191,2,f +6804,87079,71,2,f +6804,98100,71,2,f +6804,98138,182,1,t +6804,98138,182,4,f +6804,99780,71,1,f +6805,2413,15,2,f +6805,2420,72,2,f +6805,2431,15,1,f +6805,2431,72,1,f +6805,2437,40,1,f +6805,3003,0,1,f +6805,3005,72,1,f +6805,3010,15,2,f +6805,3020,15,3,f +6805,3020,4,1,f +6805,3021,7,1,f +6805,3021,72,4,f +6805,3022,7,1,f +6805,3023,0,5,f +6805,3024,72,2,f +6805,3024,15,1,f +6805,3039pc5,7,1,f +6805,3040b,15,2,f +6805,3068b,4,1,f +6805,3070b,15,3,f +6805,3070b,15,1,t +6805,3070b,14,1,f +6805,3070b,4,1,f +6805,3070b,14,1,t +6805,3070b,4,1,t +6805,3139,0,6,f +6805,3460,7,1,f +6805,3623,72,3,f +6805,3624,0,1,f +6805,3626bp02,14,1,f +6805,3626bpr0001,14,1,f +6805,3626bpx19,14,1,f +6805,3666,72,1,f +6805,3679,7,2,f +6805,3680,15,2,f +6805,3710,15,3,f +6805,3710,72,1,f +6805,3794a,15,1,f +6805,3795,7,2,f +6805,3937,7,1,f +6805,4032.1stk01,9999,1,t +6805,4079,6,3,f +6805,4162,72,1,f +6805,41769,15,4,f +6805,41770,15,4,f +6805,41879a,0,1,f +6805,4282,7,1,f +6805,44301a,15,2,f +6805,44302a,15,2,f +6805,4449,0,1,f +6805,4449,73,1,f +6805,44571,15,4,f +6805,4477,15,1,f +6805,4477,72,1,f +6805,44822,15,4,f +6805,4485,4,1,f +6805,4530,484,1,f +6805,4624,15,6,f +6805,4854,7,2,f +6805,4855,7,2,f +6805,4856a,72,2,f +6805,4858,15,1,f +6805,4859,72,1,f +6805,4859,15,1,f +6805,4861,15,1,f +6805,4862,40,12,f +6805,4863,15,6,f +6805,4865a,4,2,f +6805,4865a,15,2,f +6805,4867,15,1,f +6805,4868b,15,2,f +6805,4869,7,2,f +6805,4870,7,3,f +6805,4871,7,1,f +6805,6134,0,1,f +6805,6141,47,1,f +6805,6141,34,1,t +6805,6141,15,2,f +6805,6141,34,1,f +6805,6141,36,1,f +6805,6141,36,1,t +6805,6141,15,1,t +6805,6141,47,1,t +6805,6636,15,2,f +6805,73983,72,4,f +6805,970c00,272,1,f +6805,970c00,4,1,f +6805,973c01,15,1,f +6805,973px189c02,272,1,f +6805,973px18c01,15,1,f +6807,2780,0,4,f +6807,2780,0,1,t +6807,2815,0,2,f +6807,2825,1,2,f +6807,2994,15,2,f +6807,32002,8,2,f +6807,32002,8,1,t +6807,32013,1,2,f +6807,32073,0,1,f +6807,32123b,7,1,t +6807,32123b,7,4,f +6807,32200,1,2,f +6807,32278,0,1,f +6807,32283c01,8,1,f +6807,32527,1,1,f +6807,32528,1,1,f +6807,32557,0,2,f +6807,3706,0,1,f +6807,3713,7,4,f +6807,3713,7,1,t +6807,3737,0,1,f +6807,4185,15,2,f +6807,4519,0,1,f +6807,6558,0,2,f +6807,6578,0,2,f +6807,6587,8,1,f +6808,3626bpr0279,14,1,f +6808,3833,4,1,f +6808,3835,0,1,f +6808,3840,25,1,f +6808,970c00,1,1,f +6808,973pr1244c01,73,1,f +6810,11214,72,2,f +6810,15362,0,6,f +6810,18651,0,1,f +6810,20251,297,1,f +6810,2780,0,14,f +6810,2780,0,1,t +6810,32013,0,2,f +6810,32062,4,9,f +6810,32072,14,4,f +6810,32073,71,4,f +6810,32123b,71,1,t +6810,32123b,71,2,f +6810,32138,0,1,f +6810,32140,0,3,f +6810,32184,4,2,f +6810,32192,0,2,f +6810,32316,0,3,f +6810,32348,0,2,f +6810,32348,57,8,f +6810,32524,0,2,f +6810,32526,0,1,f +6810,3705,0,4,f +6810,4274,71,1,t +6810,4274,71,1,f +6810,43093,1,4,f +6810,4519,71,3,f +6810,53451,15,8,f +6810,53451,15,1,t +6810,53585,0,2,f +6810,59443,0,2,f +6810,60484,0,2,f +6810,64276,0,6,f +6810,6536,0,5,f +6810,6558,1,7,f +6810,6628,0,1,t +6810,6628,0,1,f +6810,85543,15,1,f +6810,87083,72,1,f +6810,87747,15,2,f +6810,87747,15,1,t +6810,90640,0,6,f +6810,90641,57,3,f +6810,90652,0,1,f +6810,93571,0,6,f +6810,98313,0,2,f +6810,98577,72,6,f +6810,98590,0,1,f +6810,98603s02pr0006,0,1,f +6810,99021,72,1,f +6811,2419,14,1,f +6811,2555,0,2,f +6811,3020,14,1,f +6811,3069bps9,14,1,f +6811,3298,14,1,f +6811,3626bpx114,14,1,f +6811,37,383,2,f +6811,4859,0,1,f +6811,59275,1,2,f +6811,6088,15,1,f +6811,6090,0,1,f +6811,970x001,1,1,f +6811,973px170c01,15,1,f +6813,122c01,0,6,f +6813,3004,14,10,f +6813,3004,0,1,f +6813,3005,0,2,f +6813,3005,14,13,f +6813,3005,4,2,f +6813,3008,14,2,f +6813,3008,1,1,f +6813,3008,0,1,f +6813,3009,0,1,f +6813,3009,14,2,f +6813,3010,0,1,f +6813,3010,1,1,f +6813,3010,14,2,f +6813,3020,14,2,f +6813,3020,4,1,f +6813,3020,0,3,f +6813,3021,0,1,f +6813,3022,4,1,f +6813,3022,0,2,f +6813,3023,14,11,f +6813,3023,15,2,f +6813,3023,4,4,f +6813,3023,0,2,f +6813,3023,1,1,f +6813,3024,1,2,f +6813,3024,14,4,f +6813,3024,46,4,f +6813,3024,36,6,f +6813,3030,14,1,f +6813,3034,1,2,f +6813,3034,14,2,f +6813,3040p02,4,1,f +6813,3062b,15,2,f +6813,3062b,4,1,f +6813,3062b,36,2,f +6813,3068b,4,1,f +6813,3068bp05,15,1,f +6813,3068bp06,15,1,f +6813,3069b,14,4,f +6813,3069b,4,1,f +6813,3070b,14,2,f +6813,3456,1,1,f +6813,3460,14,2,f +6813,3470,2,1,f +6813,3471,2,1,f +6813,3596,15,1,f +6813,3622,14,2,f +6813,3623,14,7,f +6813,3624,15,2,f +6813,3626apr0001,14,3,f +6813,3641,0,12,f +6813,3665,4,1,f +6813,3710,0,3,f +6813,3710,14,7,f +6813,3741,2,4,f +6813,3742,15,6,f +6813,3742,4,2,t +6813,3742,4,6,f +6813,3742,15,2,t +6813,3787,14,1,f +6813,3788,4,2,f +6813,3788,14,2,f +6813,3795,14,1,f +6813,3795,1,2,f +6813,3821,14,2,f +6813,3821,4,1,f +6813,3822,14,2,f +6813,3822,4,1,f +6813,3823,47,5,f +6813,3829c01,14,2,f +6813,3829c01,0,1,f +6813,3832,0,1,f +6813,3839b,0,1,f +6813,3853,0,2,f +6813,3855,47,2,f +6813,3901,6,1,f +6813,3937,0,1,f +6813,3937,4,1,f +6813,3938,0,1,f +6813,3938,4,1,f +6813,3962a,0,1,f +6813,4006,0,2,f +6813,4070,4,4,f +6813,4070,14,10,f +6813,4079,0,1,f +6813,4085b,14,4,f +6813,4211,14,1,f +6813,4212b,0,1,f +6813,4212b,14,1,f +6813,4213,14,2,f +6813,4213,4,1,f +6813,4214,14,1,f +6813,4275b,14,2,f +6813,4276b,14,2,f +6813,4287,14,2,f +6813,4315,4,1,f +6813,4315,14,1,f +6813,4347,1,3,f +6813,4349,7,1,f +6813,608p01,7,1,f +6813,609p01,7,1,f +6813,6141,47,2,f +6813,6141,36,2,f +6813,73194c01,1,1,f +6813,970c00,4,2,f +6813,970c00,7,1,f +6813,973p13c01,4,2,f +6813,973p22c01,0,1,f +6814,12825,0,1,f +6814,2357,71,8,f +6814,2412b,0,3,f +6814,2412b,71,1,f +6814,2420,0,4,f +6814,2420,14,2,f +6814,2431,4,1,f +6814,2431,14,3,f +6814,2453a,0,2,f +6814,2654,1,1,f +6814,3001,71,4,f +6814,3004,72,10,f +6814,3004,4,6,f +6814,3004,15,1,f +6814,30046,297,1,f +6814,3005,0,12,f +6814,3005,15,8,f +6814,3005,71,3,f +6814,3005,4,5,f +6814,3008,71,1,f +6814,3009,4,1,f +6814,3009,15,1,f +6814,3009,72,8,f +6814,3010,4,7,f +6814,3010,15,3,f +6814,30162,72,1,f +6814,3020,70,1,f +6814,3021,0,2,f +6814,3021,15,5,f +6814,3022,0,6,f +6814,3022,15,4,f +6814,3023,0,11,f +6814,3023,4,1,f +6814,30237a,71,3,f +6814,3024,15,6,f +6814,3024,4,6,f +6814,3024,46,4,f +6814,3027,1,1,f +6814,3029,2,1,f +6814,3030,0,1,f +6814,3034,0,1,f +6814,30340,14,1,f +6814,3035,1,1,f +6814,30357,15,8,f +6814,30357,4,7,f +6814,3036,2,2,f +6814,3037,71,3,f +6814,30374,15,4,f +6814,3038,71,2,f +6814,3039,0,9,f +6814,3039,71,3,f +6814,3040b,0,4,f +6814,3062b,71,6,f +6814,3062b,70,2,f +6814,30663,0,1,f +6814,3070b,71,2,f +6814,3070b,71,1,t +6814,3070b,4,2,f +6814,3070b,4,1,t +6814,32000,14,1,f +6814,32001,0,2,f +6814,32028,72,1,f +6814,32034,15,2,f +6814,32123b,14,3,f +6814,32270,0,2,f +6814,32529,0,1,f +6814,3298,72,7,f +6814,33299a,0,1,f +6814,3460,0,1,f +6814,3622,4,13,f +6814,3622,15,9,f +6814,3623,15,10,f +6814,3623,4,3,f +6814,3626bpr0388,14,1,f +6814,3659,0,1,f +6814,3665,15,8,f +6814,3665,4,2,f +6814,3665,72,2,f +6814,3666,4,2,f +6814,3673,71,1,f +6814,3673,71,1,t +6814,3707,0,1,f +6814,3710,15,5,f +6814,3710,4,3,f +6814,3710,0,8,f +6814,3713,4,1,t +6814,3713,4,6,f +6814,3794b,15,1,f +6814,3795,70,1,f +6814,3830,4,2,f +6814,3831,4,2,f +6814,3832,2,2,f +6814,3899,14,1,f +6814,3937,0,1,f +6814,3938,14,1,f +6814,3941,0,5,f +6814,3961,0,1,f +6814,4032a,70,1,f +6814,4032a,0,1,f +6814,4070,70,1,f +6814,41334,72,1,f +6814,4161,0,4,f +6814,43722,15,2,f +6814,43723,15,2,f +6814,4445,0,1,f +6814,44728,72,1,f +6814,4477,15,1,f +6814,4589,2,4,f +6814,4589,46,1,f +6814,4599b,15,8,f +6814,46212,47,4,f +6814,47905,15,2,f +6814,48336,14,1,f +6814,4854,15,1,f +6814,4855,15,1,f +6814,4865a,0,1,f +6814,49668,15,2,f +6814,51739,14,1,f +6814,51739,15,1,f +6814,54200,70,4,f +6814,54200,70,1,t +6814,54200,15,1,t +6814,54200,15,2,f +6814,54200,72,4,f +6814,54200,72,1,t +6814,59426,72,1,f +6814,6019,14,2,f +6814,6041,179,1,f +6814,60470a,71,1,f +6814,60478,71,2,f +6814,60479,71,1,f +6814,60592,15,4,f +6814,60594,70,1,f +6814,60596,15,1,f +6814,60601,47,4,f +6814,60607,297,2,f +6814,6091,72,2,f +6814,61409,14,2,f +6814,6141,71,1,t +6814,6141,27,1,t +6814,6141,14,4,f +6814,6141,57,1,t +6814,6141,57,4,f +6814,6141,70,1,t +6814,6141,15,1,t +6814,6141,15,12,f +6814,6141,27,2,f +6814,6141,71,6,f +6814,6141,14,1,t +6814,6141,70,9,f +6814,6266,15,8,f +6814,62930,47,1,f +6814,63868,4,1,f +6814,64390,70,1,f +6814,64648,179,2,f +6814,6541,72,4,f +6814,6541,14,1,f +6814,6587,28,4,f +6814,6636,0,1,f +6814,6636,71,6,f +6814,85080,15,17,f +6814,85080,4,24,f +6814,85984,0,2,f +6814,87083,72,1,f +6814,87580,71,4,f +6814,87747,15,4,f +6814,91405,1,1,f +6814,970c00,272,1,f +6814,973pr1801c01,25,1,f +6815,11215,71,4,f +6815,11215,15,1,f +6815,11215,1,1,f +6815,11303,272,1,f +6815,13731,191,2,f +6815,14210,15,7,f +6815,14682,71,2,f +6815,15068,71,2,f +6815,15207,71,2,f +6815,15535,72,1,f +6815,15573,72,1,f +6815,15672,191,2,f +6815,18674,15,1,f +6815,18892,0,3,f +6815,18980,71,2,f +6815,22885,71,1,f +6815,2340,0,2,f +6815,2357,191,2,f +6815,23969,71,4,f +6815,2412b,71,8,f +6815,2412b,4,1,f +6815,2431,72,1,f +6815,2431,272,1,f +6815,2432,0,1,f +6815,2446pr0016,15,1,f +6815,2447,40,1,f +6815,2456,71,2,f +6815,2508,0,1,f +6815,25214,148,6,f +6815,2540,4,4,f +6815,2654,72,2,f +6815,2654,0,2,f +6815,30028,0,6,f +6815,3003,2,2,f +6815,3004,4,2,f +6815,3004,15,4,f +6815,3004,272,4,f +6815,30043,0,1,f +6815,3010,272,2,f +6815,30153,46,4,f +6815,30153,36,2,f +6815,30153,34,2,f +6815,3020,15,1,f +6815,3020,191,2,f +6815,3020,4,1,f +6815,3021,71,4,f +6815,3022,1,1,f +6815,3022,0,3,f +6815,3023,272,2,f +6815,3023,19,2,f +6815,3023,0,1,f +6815,3023,182,2,f +6815,3023,71,1,f +6815,30237b,71,2,f +6815,3024,191,6,f +6815,3028,72,2,f +6815,3031,0,1,f +6815,3032,272,1,f +6815,3032,72,1,f +6815,3034,72,1,f +6815,3036,71,1,f +6815,30414,4,2,f +6815,3069b,71,4,f +6815,3069b,15,1,f +6815,3069b,72,1,f +6815,3069b,191,2,f +6815,3070b,71,2,f +6815,32000,71,2,f +6815,32001,71,1,f +6815,32018,71,2,f +6815,32123b,71,2,f +6815,3623,191,2,f +6815,3626cpr2088a,14,1,f +6815,3626cpr2113,14,1,f +6815,3666,71,1,f +6815,3666,191,1,f +6815,3666,272,1,f +6815,3700,72,2,f +6815,3701,0,2,f +6815,3710,15,4,f +6815,3710,272,4,f +6815,3710,1,2,f +6815,3713,4,2,f +6815,3795,0,1,f +6815,3795,15,2,f +6815,3795,1,1,f +6815,3821,15,1,f +6815,3822,15,1,f +6815,3829c01,0,1,f +6815,3829c01,4,1,f +6815,3899,14,1,f +6815,3937,71,1,f +6815,3941,15,1,f +6815,4006,0,1,f +6815,4032a,2,1,f +6815,4032a,4,1,f +6815,4079,4,1,f +6815,4083,15,1,f +6815,4162,71,6,f +6815,4176,40,1,f +6815,41769,15,2,f +6815,41770,15,2,f +6815,4282,71,2,f +6815,4282,0,1,f +6815,43093,1,6,f +6815,43719,15,1,f +6815,43722,191,2,f +6815,43723,191,2,f +6815,44294,71,1,f +6815,44302a,71,2,f +6815,44567a,71,2,f +6815,44728,0,7,f +6815,4522,0,1,f +6815,4599b,14,1,f +6815,47905,0,4,f +6815,50373,191,1,f +6815,50745,272,2,f +6815,50943,72,1,f +6815,50944,0,2,f +6815,50949,0,1,f +6815,50951,0,2,f +6815,51739,15,1,f +6815,52031,272,1,f +6815,52501,72,2,f +6815,54200,72,1,f +6815,54200,47,2,f +6815,54200,272,2,f +6815,55978,0,2,f +6815,56145,0,2,f +6815,58176,182,2,f +6815,6014b,71,6,f +6815,60151stk01,9999,1,f +6815,60470a,71,2,f +6815,60478,72,4,f +6815,6126b,182,6,f +6815,6134,0,1,f +6815,61409,71,4,f +6815,6141,36,2,f +6815,6157,71,1,f +6815,6183,71,1,f +6815,6192,71,2,f +6815,6636,15,2,f +6815,74967,71,6,f +6815,85984,71,2,f +6815,85984,191,2,f +6815,87079,71,4,f +6815,87079,272,2,f +6815,87697,0,6,f +6815,87990,70,1,f +6815,90194,191,1,f +6815,92593,71,1,f +6815,93273,272,2,f +6815,93606,272,2,f +6815,93606,71,2,f +6815,970c00,272,1,f +6815,970c00,15,1,f +6815,973pr3750c01,15,2,f +6815,98138,182,2,f +6815,98549,71,1,f +6815,99780,15,2,f +6815,99781,71,1,f +6816,2913c02,1,1,f +6818,10247,0,2,f +6818,10928,72,5,f +6818,11153,0,4,f +6818,11214,72,15,f +6818,11478,71,6,f +6818,11954,0,1,f +6818,14720,71,3,f +6818,15038,14,4,f +6818,15265,0,1,f +6818,15462,28,7,f +6818,18575,0,4,f +6818,2780,0,6,t +6818,2780,0,285,f +6818,2819,71,1,f +6818,2850b,2,6,f +6818,2851,14,6,f +6818,2852,71,6,f +6818,2853,14,2,f +6818,2854,19,5,f +6818,3003,14,1,f +6818,3010,0,2,f +6818,3021,14,1,f +6818,3023,36,2,f +6818,3023,0,2,f +6818,3023,14,2,f +6818,3023,47,2,f +6818,3068b,0,2,f +6818,3069b,71,2,f +6818,3069b,1,2,f +6818,3069b,0,2,f +6818,3069b,14,2,f +6818,32000,14,3,f +6818,32002,19,1,t +6818,32002,19,11,f +6818,32009,0,4,f +6818,32009,14,8,f +6818,32013,0,16,f +6818,32013,14,18,f +6818,32014,0,10,f +6818,32014,14,2,f +6818,32015,14,4,f +6818,32018,0,2,f +6818,32034,0,14,f +6818,32039,4,4,f +6818,32054,0,9,f +6818,32054,71,10,f +6818,32056,14,12,f +6818,32062,4,36,f +6818,32063,14,2,f +6818,32064a,14,2,f +6818,32065,0,1,f +6818,32073,71,1,t +6818,32073,71,8,f +6818,32123b,14,16,f +6818,32123b,14,2,t +6818,32138,0,2,f +6818,32140,14,14,f +6818,32140,71,8,f +6818,32140,0,7,f +6818,32184,0,34,f +6818,32192,0,4,f +6818,32270,0,2,f +6818,32271,14,2,f +6818,32271,0,4,f +6818,32278,14,12,f +6818,32291,71,2,f +6818,32316,14,19,f +6818,32348,0,2,f +6818,32449,14,12,f +6818,32498,0,1,f +6818,32523,14,24,f +6818,32524,4,4,f +6818,32524,14,26,f +6818,32524,0,2,f +6818,32525,71,2,f +6818,32525,14,11,f +6818,32525,0,6,f +6818,32526,0,2,f +6818,32526,14,14,f +6818,32556,19,5,f +6818,32557,0,2,f +6818,33299a,71,1,f +6818,3460,0,10,f +6818,3622,14,1,f +6818,3623,14,1,f +6818,3648b,72,8,f +6818,3666,0,2,f +6818,3673,71,1,t +6818,3673,71,4,f +6818,3703,0,2,f +6818,3705,0,17,f +6818,3706,0,1,t +6818,3706,0,33,f +6818,3707,0,1,f +6818,3713,4,1,t +6818,3713,4,4,f +6818,3713,71,1,t +6818,3713,71,29,f +6818,3737,0,2,f +6818,3749,19,1,f +6818,3941,0,1,f +6818,3942c,0,1,f +6818,40490,0,6,f +6818,40490,2,2,f +6818,40490,14,14,f +6818,41239,14,10,f +6818,41239,0,6,f +6818,41239,2,2,f +6818,41530,71,1,f +6818,42003,14,19,f +6818,42003,71,4,f +6818,42022,0,4,f +6818,4274,1,22,f +6818,4274,1,1,t +6818,4274,71,4,f +6818,4274,71,2,t +6818,43093,1,2,t +6818,43093,1,116,f +6818,44294,71,1,t +6818,44294,71,9,f +6818,4477,0,2,f +6818,4519,71,56,f +6818,48989,71,4,f +6818,54200,182,1,t +6818,54200,47,1,t +6818,54200,182,2,f +6818,54200,47,2,f +6818,58119,71,1,f +6818,58120,71,1,f +6818,58121,71,1,f +6818,58122,71,2,f +6818,58123a,71,2,f +6818,58176,182,1,f +6818,59443,14,11,f +6818,59443,0,12,f +6818,60483,0,19,f +6818,60484,71,12,f +6818,60485,71,1,f +6818,6141,47,1,t +6818,6141,47,4,f +6818,61903,71,1,f +6818,61904,72,3,f +6818,61927b,71,3,f +6818,62462,0,11,f +6818,62462,14,4,f +6818,62462,15,3,f +6818,62531,14,4,f +6818,62821,72,2,f +6818,63864,14,7,f +6818,63869,0,9,f +6818,63965,71,1,f +6818,64178,71,2,f +6818,64179,71,4,f +6818,64391,14,3,f +6818,64391,0,1,f +6818,64683,14,3,f +6818,64683,0,1,f +6818,64782,0,1,f +6818,6536,14,21,f +6818,6536,71,10,f +6818,6538b,19,1,f +6818,6542b,72,1,f +6818,6553,71,1,f +6818,6558,1,147,f +6818,6575,0,4,f +6818,6587,28,8,f +6818,6589,19,12,f +6818,6589,19,2,t +6818,6628,0,1,t +6818,6628,0,4,f +6818,6629,0,2,f +6818,6629,14,10,f +6818,6632,71,6,f +6818,6632,4,3,f +6818,6636,0,3,f +6818,87082,0,6,f +6818,87083,72,16,f +6818,87407,71,3,f +6818,92907,71,4,f +6818,92908,71,4,f +6818,92909,72,4,f +6818,92912,0,4,f +6818,94925,71,4,f +6818,99008,19,3,f +6818,99009,71,1,f +6818,99010,0,1,f +6818,99498,71,1,f +6818,99499,71,1,f +6818,99773,14,12,f +6818,99773,0,4,f +6819,2654,8,2,f +6819,2717,7,2,f +6819,2723,15,8,f +6819,2736,7,5,f +6819,2780,0,118,f +6819,2780,0,1,t +6819,2850a,47,6,f +6819,2851,14,6,f +6819,2852,7,6,f +6819,2853,7,6,f +6819,2854,8,2,f +6819,2905,0,4,f +6819,30153,42,2,f +6819,3069b,7,6,f +6819,32000,0,6,f +6819,32009,0,4,f +6819,32009,15,1,f +6819,32009,8,4,f +6819,32013,0,6,f +6819,32015,0,2,f +6819,32034,0,2,f +6819,32039,0,5,f +6819,32054,0,15,f +6819,32062,0,26,f +6819,32068,0,6,f +6819,32069,0,6,f +6819,32073,7,6,f +6819,32123b,7,1,t +6819,32123b,7,18,f +6819,32140,8,2,f +6819,32140,0,10,f +6819,32180,0,8,f +6819,32184,0,3,f +6819,32201,179,3,f +6819,32209,0,6,f +6819,32235,179,1,f +6819,32269,7,1,f +6819,32270,7,3,f +6819,32271,8,1,f +6819,32278,4,2,f +6819,32278,0,6,f +6819,32291,0,3,f +6819,32293,0,2,f +6819,32316,0,2,f +6819,32316,8,4,f +6819,32333,47,2,f +6819,32348,8,2,f +6819,32348,0,2,f +6819,32449,0,2,f +6819,32523,0,2,f +6819,32524,4,1,f +6819,32525,4,2,f +6819,32525,0,7,f +6819,32526,0,8,f +6819,32527,4,2,f +6819,32528,4,2,f +6819,32534,4,1,f +6819,32535,4,1,f +6819,32556,7,6,f +6819,32557,0,8,f +6819,33299a,0,2,f +6819,3647,7,1,t +6819,3647,7,5,f +6819,3648b,7,1,f +6819,3650c,7,1,f +6819,3705,0,16,f +6819,3706,0,11,f +6819,3707,0,1,t +6819,3707,0,5,f +6819,3713,7,1,t +6819,3713,7,3,f +6819,3737,0,1,f +6819,3749,19,4,f +6819,3941,33,2,f +6819,40001,8,1,f +6819,4019,7,1,f +6819,4032a,8,2,f +6819,40490,4,2,f +6819,40490,0,4,f +6819,41669,33,4,f +6819,41677,0,22,f +6819,41678,0,10,f +6819,42003,7,2,f +6819,42003,0,6,f +6819,4274,7,1,t +6819,4274,7,8,f +6819,43093,1,13,f +6819,43857,0,2,f +6819,44350,4,1,f +6819,44351,4,1,f +6819,44352,8,1,f +6819,44352,4,3,f +6819,44353,4,3,f +6819,44353,8,1,f +6819,4519,7,18,f +6819,6536,0,8,f +6819,6538b,0,3,f +6819,6538b,7,9,f +6819,6553,0,3,f +6819,6558,0,34,f +6819,6573,8,1,f +6819,6587,8,4,f +6819,6589,7,1,t +6819,6589,7,4,f +6819,6592,0,3,f +6819,6595,15,8,f +6819,6632,0,6,f +6819,6632,7,2,f +6819,6636,0,1,f +6819,75535,15,9,f +6819,76320,41,2,f +6823,10197,72,1,f +6823,15100,0,1,f +6823,15367,0,2,f +6823,15976,0,2,f +6823,18651,0,2,f +6823,19049,42,1,f +6823,19050,42,1,f +6823,20252,42,6,f +6823,20473,41,1,f +6823,24010,0,1,f +6823,24150,15,1,f +6823,24188,148,2,f +6823,24316,70,3,f +6823,25528,148,1,f +6823,25531,272,1,f +6823,25534,41,2,f +6823,2736,71,4,f +6823,2780,0,3,f +6823,32039,0,2,f +6823,32062,4,10,f +6823,32073,71,1,f +6823,32123b,71,2,f +6823,32184,71,2,f +6823,32291,0,2,f +6823,32293,0,2,f +6823,32449,0,2,f +6823,32557,0,2,f +6823,3713,71,1,f +6823,41669,42,2,f +6823,41677,72,4,f +6823,43093,1,7,f +6823,4519,71,2,f +6823,50923,72,2,f +6823,64276,0,4,f +6823,6536,0,3,f +6823,6558,1,1,f +6823,6628,0,2,f +6823,74261,0,2,f +6823,90607,0,2,f +6823,90609,0,1,f +6823,90617,72,2,f +6823,90640,272,3,f +6823,92907,71,3,f +6823,93571,0,5,f +6823,98603s02pr0021,0,1,f +6823,99021,72,2,f +6824,11213,322,1,f +6824,11610,19,2,f +6824,11816pr0003,78,1,f +6824,12825,71,1,f +6824,15395,15,1,f +6824,15470,29,1,t +6824,15470,70,1,f +6824,15470,29,1,f +6824,15470,70,1,t +6824,2362b,47,1,f +6824,3004,29,1,f +6824,30136,84,8,f +6824,3020,2,1,f +6824,3022,2,1,f +6824,30222,42,2,f +6824,3023,4,1,f +6824,3023,29,5,f +6824,30261pr0001,15,1,f +6824,3031,27,2,f +6824,3039,15,2,f +6824,3062b,41,2,f +6824,3068b,0,1,f +6824,3068b,4,1,f +6824,3069bpr0055,15,1,f +6824,33291,191,1,t +6824,33291,5,1,t +6824,33291,191,6,f +6824,33291,5,2,f +6824,3623,2,2,f +6824,3710,30,4,f +6824,3795,29,2,f +6824,3941,19,1,f +6824,3960,191,1,f +6824,4345b,4,1,f +6824,4346,4,1,f +6824,4489,70,2,f +6824,4600,0,1,f +6824,4719,4,1,f +6824,48336,19,3,f +6824,4865b,15,2,f +6824,59900,33,1,f +6824,60470a,71,2,f +6824,60897,4,2,f +6824,6126b,41,1,f +6824,6141,47,2,f +6824,6141,47,1,t +6824,6231,15,2,f +6824,63965,15,1,f +6824,85080,15,4,f +6824,85984,4,2,f +6824,87079,30,2,f +6824,87580,322,1,f +6824,88072,0,1,f +6824,92256,70,1,f +6824,92280,15,2,f +6824,92456pr0034c01,78,1,f +6824,92820pr0007c01,379,1,f +6824,92851,47,2,f +6824,98138,297,1,t +6824,98138,297,1,f +6824,98138,179,1,f +6824,98138,179,1,t +6824,99781,15,1,f +6826,2412b,7,2,f +6826,2412b,7,1,t +6826,2454a,1,2,f +6826,3001,7,2,f +6826,3003,7,2,f +6826,3004,1,1,f +6826,3007,1,2,f +6826,30089,0,1,t +6826,30089,0,1,f +6826,30180,7,2,f +6826,3020,1,2,f +6826,3022,0,2,f +6826,3034,15,5,f +6826,30359a,0,2,f +6826,30365,7,2,f +6826,3039,15,2,f +6826,3069b,4,1,t +6826,3069b,4,2,f +6826,3626bpa5,14,1,f +6826,3626bpr0001,14,1,f +6826,3795,7,4,f +6826,3865,2,1,f +6826,3901,6,1,f +6826,3901,6,1,t +6826,4079,14,2,f +6826,4079,1,2,f +6826,4286,1,2,f +6826,4476b,0,2,f +6826,4485,4,1,f +6826,4485,4,1,t +6826,4515,15,1,f +6826,6192,46,4,f +6826,72824p01,15,1,f +6826,76385,0,2,f +6826,970c00,1,1,f +6826,970x026,8,1,f +6826,973c02,4,1,f +6826,973c11,0,1,f +6828,11153,0,2,f +6828,11211,4,1,f +6828,12825,14,1,f +6828,2432,0,1,f +6828,2569,42,1,f +6828,3003,0,13,f +6828,3003,46,12,f +6828,30153,46,1,f +6828,3021,72,3,f +6828,3021,1,2,f +6828,3023,71,2,f +6828,3023,0,17,f +6828,3030,72,1,f +6828,3031,0,2,f +6828,3034,0,3,f +6828,30385,143,2,f +6828,3040b,4,6,f +6828,30414,0,1,f +6828,3048c,0,4,f +6828,3068bpr0142,15,1,f +6828,3068bpr0143,15,1,f +6828,3068bpr0221,4,2,f +6828,3068bpr0222,4,1,f +6828,3068bpr0223,14,3,f +6828,3069b,1,21,f +6828,3659,0,3,f +6828,3659,4,1,f +6828,3665,0,2,f +6828,3666,0,2,f +6828,3679,71,1,f +6828,3680,0,1,f +6828,3710,1,1,f +6828,3794b,14,4,f +6828,3960pr0011,0,1,f +6828,4081b,0,2,f +6828,4282,0,1,f +6828,4286,0,6,f +6828,4740,0,2,f +6828,4864b,47,4,f +6828,54200,14,1,t +6828,54200,0,9,f +6828,54200,85,4,f +6828,54200,85,1,t +6828,54200,14,2,f +6828,54200,0,1,t +6828,54200,143,2,f +6828,54200,143,1,t +6828,60474,14,1,f +6828,61252,14,1,f +6828,6141,14,6,f +6828,6141,14,1,t +6828,62361,71,2,f +6828,64776pat0001,0,1,f +6828,6636,1,2,f +6828,85863,71,4,f +6828,85863pr0123,14,1,f +6828,85863pr0124,212,1,f +6828,85863pr0125,2,1,f +6828,85863pr0126,25,1,f +6828,85863pr0127,85,1,f +6828,85863pr0128,0,1,f +6828,85863pr0129,1,1,f +6828,85863pr0130,4,1,f +6828,85984,71,2,f +6828,87580,0,8,f +6828,87580,1,8,f +6828,87580,72,26,f +6828,87580,71,7,f +6828,87580,14,7,f +6828,91405,72,1,f +6828,91405,71,2,f +6828,93273,0,9,f +6828,96874,25,1,t +6828,98138,71,4,f +6828,98138,71,1,t +6828,98721,0,1,t +6828,98721,0,1,f +6829,14728c100,0,1,f +6829,2456,4,2,f +6829,2456,0,3,f +6829,30000,72,2,f +6829,3001,0,2,f +6829,3001,4,3,f +6829,3002,4,2,f +6829,3003,4,1,f +6829,3004,0,3,f +6829,3005,0,4,f +6829,3010,0,4,f +6829,3021,15,1,f +6829,3021,0,2,f +6829,3022,4,1,f +6829,3022,0,3,f +6829,3023,4,1,f +6829,3023,25,1,f +6829,3024,0,2,f +6829,3034,0,1,f +6829,3040b,0,2,f +6829,3069b,0,1,f +6829,3176,0,2,f +6829,3456,0,1,f +6829,3660,4,4,f +6829,3665,0,4,f +6829,3678b,4,1,f +6829,3795,25,1,f +6829,3795,0,2,f +6829,42022,0,2,f +6829,42023,0,2,f +6829,42023,4,2,f +6829,4287,0,2,f +6829,44126,4,1,f +6829,50950,0,2,f +6829,50950,25,2,f +6829,54200,0,2,f +6829,54200,0,1,t +6829,60474,0,2,f +6829,6091,0,2,f +6829,85984,4,1,f +6829,85984,0,1,f +6829,85984,25,2,f +6829,87081,4,4,f +6829,87087,0,4,f +6829,93606,4,1,f +6829,98138pr0008,15,2,f +6829,98138pr0008,15,1,t +6830,13792pr0001,148,1,f +6830,13793,72,1,f +6830,3062bpr0004,25,1,f +6830,3626cpr1244,14,1,f +6830,88646,0,1,f +6830,970c00,272,1,f +6830,973pr2416c01,71,1,f +6832,3001a,15,22,f +6832,3001a,1,2,f +6832,3001a,4,22,f +6832,3001a,47,6,f +6832,3002a,4,8,f +6832,3002a,15,6,f +6832,3003,14,2,f +6832,3003,47,2,f +6832,3003,4,8,f +6832,3003,0,1,f +6832,3003,15,8,f +6832,3004,15,4,f +6832,3004,4,4,f +6832,3004,47,2,f +6832,3006,4,2,f +6832,3007,15,2,f +6832,3007,4,2,f +6832,32bc01,4,1,f +6832,33bc01,4,1,f +6832,453bc01,4,2,f +6832,645bc01,4,2,f +6832,700ex,7,1,f +6833,3001,15,2,f +6833,4066pb137,14,1,f +6834,2412b,0,2,f +6834,2446pb11,4,1,f +6834,2447,0,1,t +6834,2447,0,1,f +6834,2921,4,2,f +6834,3022,4,1,f +6834,3062b,0,2,f +6834,3626bpb0119,14,1,f +6834,4070,4,2,f +6834,41854pb10,25,1,f +6834,41862,25,1,f +6834,42289,0,1,f +6834,4600,0,1,f +6834,6014b,4,4,f +6834,6015,0,4,f +6834,x351,0,1,f +6836,11477,0,2,f +6836,14417,72,2,f +6836,14418,71,2,f +6836,14769pr1003,15,2,f +6836,15068,272,2,f +6836,2450,4,2,f +6836,2654,4,3,f +6836,3003,14,2,f +6836,3003,4,1,f +6836,3004,14,1,f +6836,3022,4,2,f +6836,3022,1,1,f +6836,3023,4,2,f +6836,3024,14,1,t +6836,3024,14,2,f +6836,3039,1,1,f +6836,30602,0,1,f +6836,3678b,4,1,f +6836,3710,0,1,f +6836,41769,4,1,f +6836,41769,14,1,f +6836,41770,4,1,f +6836,41770,14,1,f +6836,44728,14,1,f +6836,48336,1,1,f +6836,4871,14,1,f +6836,60470a,4,1,f +6836,60478,0,2,f +6836,85984,4,1,f +6836,87087,15,2,f +6840,11437,4,1,f +6840,11438,4,1,f +6840,12825,0,1,f +6840,2570,148,1,f +6840,30173b,0,1,f +6840,30237b,4,1,f +6840,3039,0,1,f +6840,3626bpr0747,14,1,f +6840,3626cpr0746,14,1,f +6840,3626cpr1083,0,1,f +6840,3626cpr1084,0,1,f +6840,3794b,0,1,f +6840,41879a,0,1,f +6840,43887,0,1,f +6840,4498,4,1,f +6840,54200,0,2,f +6840,60474,72,1,f +6840,92338,297,1,f +6840,92690,297,2,f +6840,93058,297,2,f +6840,93059,4,2,f +6840,970c00pr0274,1,1,f +6840,970c00pr0275,15,1,f +6840,970c00pr0422,0,1,f +6840,973pr1896c01,1,1,f +6840,973pr1897c01,15,1,f +6840,973pr2187c01,72,2,f +6840,98132,297,1,f +6840,98132,179,1,f +6840,98133pr0002,1,1,f +6840,98133pr0003,15,1,f +6841,46281,45,1,f +6841,46285,52,1,f +6841,46286,52,1,f +6841,clikits037,5,1,f +6841,clikits084,45,1,f +6843,32062,0,1,t +6843,32062,0,1,f +6843,32073,71,1,f +6843,32174,0,2,f +6843,32174,15,4,f +6843,32523,15,1,f +6843,3706,0,1,f +6843,41668,15,2,f +6843,43093,1,1,t +6843,43093,1,1,f +6843,44807,15,1,f +6843,44819,135,1,f +6843,47300,72,4,f +6843,50899pr0002,15,1,f +6843,50900,72,1,f +6843,50901,72,1,f +6843,50903,14,1,f +6843,6536,0,1,f +6843,6632,25,4,f +6844,15391,0,1,f +6844,15392,70,1,f +6844,15619,4,1,f +6844,15705,308,1,f +6844,2530,72,1,f +6844,30104,72,1,f +6844,30173a,179,1,f +6844,30192,72,1,f +6844,3626cpr1365,14,1,f +6844,6141,0,1,f +6844,88290,308,1,f +6844,970c00pr0776,4,1,f +6844,973pr2853c01,4,1,f +6846,33085,14,1,f +6846,3626bpr0742,14,1,f +6846,88646,0,1,f +6846,93228pr0001,0,1,f +6846,970c00,0,1,f +6846,973pr1713c01,0,1,f +6847,30162,71,1,f +6847,3020,0,1,f +6847,3021,0,1,f +6847,32064b,0,1,f +6847,32184,0,1,f +6847,3666,0,2,f +6847,3706,0,1,f +6847,3747b,0,1,f +6847,4085c,0,1,f +6847,41531,0,2,f +6847,4360,0,1,f +6847,44661,14,1,f +6847,44675,14,1,f +6847,4519,71,1,f +6847,4589,36,1,f +6847,4623,0,2,f +6847,48729a,72,2,f +6847,53984,135,2,f +6847,53988pat03,36,1,f +6847,53989,135,2,f +6847,54200,36,2,f +6847,54200,36,1,t +6847,6558,0,1,f +6847,6558,0,1,t +6850,3626bpr0645,14,1,f +6850,74188,4,1,f +6850,86035,4,1,f +6850,87079pr0023,15,1,f +6850,970c00,1,1,f +6850,973pr1867c01,15,1,f +6851,2339,70,4,f +6851,2357,70,2,f +6851,2412b,71,5,f +6851,2420,0,4,f +6851,2420,70,2,f +6851,2420,19,4,f +6851,2431,0,7,f +6851,2431,19,11,f +6851,2431,71,1,f +6851,2439,71,1,f +6851,2450,72,2,f +6851,2546,72,1,f +6851,2555,0,2,f +6851,3001,19,2,f +6851,3003,72,2,f +6851,3003,70,2,f +6851,3004,19,2,f +6851,3004,0,6,f +6851,3004,72,12,f +6851,3004,70,5,f +6851,30043,71,1,f +6851,30043,70,4,f +6851,3005,72,4,f +6851,30055,0,8,f +6851,3008,72,2,f +6851,3009,72,15,f +6851,3010,72,14,f +6851,3010,0,1,f +6851,30103,0,4,f +6851,30104,71,1,f +6851,30104,0,2,f +6851,30115,4,2,f +6851,30115,2,1,f +6851,30157,71,1,f +6851,30176,2,6,f +6851,3020,71,1,f +6851,3020,0,1,f +6851,3020,70,6,f +6851,3020,19,3,f +6851,3021,19,2,f +6851,3021,0,2,f +6851,3021,71,1,f +6851,3022,72,1,f +6851,3022,19,1,f +6851,3023,71,4,f +6851,3023,70,5,f +6851,3023,0,4,f +6851,30237a,19,4,f +6851,30237a,72,2,f +6851,30238,0,2,f +6851,3030,72,1,f +6851,3032,72,2,f +6851,3033,72,2,f +6851,3034,72,3,f +6851,3035,72,3,f +6851,3036,72,1,f +6851,3037,0,2,f +6851,3037,71,1,f +6851,3037,72,3,f +6851,30374,0,3,f +6851,30377,15,1,t +6851,30377,15,2,f +6851,30381,0,1,f +6851,3039,19,2,f +6851,3039,0,4,f +6851,3040b,72,12,f +6851,3040b,70,4,f +6851,3040b,71,2,f +6851,3041,378,2,f +6851,30414,72,6,f +6851,30414,0,2,f +6851,3044b,72,2,f +6851,3045,71,2,f +6851,30553,0,1,f +6851,3062b,19,16,f +6851,3068b,70,2,f +6851,3068b,72,2,f +6851,3068bpb0087,70,1,f +6851,3068bpb0088,70,1,f +6851,3069b,15,8,f +6851,3069b,19,10,f +6851,3069b,72,2,f +6851,3070b,19,1,t +6851,3070b,19,2,f +6851,3070bpr007,19,1,f +6851,3070bpr007,19,1,t +6851,32039,0,1,f +6851,3245b,71,4,f +6851,32474,0,4,f +6851,3298,71,2,f +6851,33320,72,1,f +6851,3455,72,1,f +6851,3460,72,3,f +6851,3622,72,4,f +6851,3623,19,2,f +6851,3623,72,2,f +6851,3626bpr0190,15,3,f +6851,3626bpr0439,78,1,f +6851,3626bpx326,0,2,f +6851,3626bpx328,78,1,f +6851,3626bpx329,78,1,f +6851,3626bpx330a,21,1,f +6851,3665,70,2,f +6851,3666,0,2,f +6851,3679,71,1,f +6851,3680,0,1,f +6851,37,383,2,f +6851,3700,72,2,f +6851,3700,70,2,f +6851,3701,0,3,f +6851,3710,19,4,f +6851,3710,71,4,f +6851,3710,0,1,f +6851,3741,2,1,t +6851,3741,2,1,f +6851,3742,4,3,f +6851,3742,4,1,t +6851,3794a,71,1,f +6851,3794a,0,2,f +6851,3794a,378,1,f +6851,3795,70,2,f +6851,3795,0,1,f +6851,3830,72,2,f +6851,3831,72,2,f +6851,3836,70,1,f +6851,3837,0,1,f +6851,3839b,72,2,f +6851,3849,0,1,f +6851,3901,484,1,f +6851,3937,0,6,f +6851,3938,15,6,f +6851,3958,72,4,f +6851,40232,0,2,f +6851,40233,0,1,f +6851,40239,19,1,f +6851,4070,70,2,f +6851,4070,72,4,f +6851,4088,71,1,f +6851,41535,0,2,f +6851,4162,71,4,f +6851,42446,71,1,f +6851,42448,0,2,f +6851,4274,71,1,t +6851,4274,71,2,f +6851,4286,70,6,f +6851,4287,70,4,f +6851,43337,70,2,f +6851,43337,0,2,f +6851,4341,0,1,f +6851,4445,378,4,f +6851,44567a,71,1,f +6851,4460a,70,2,f +6851,4477,72,4,f +6851,4489b,70,4,f +6851,4490,72,6,f +6851,4519,71,1,f +6851,4589,378,3,f +6851,4589,19,8,f +6851,4599a,71,1,f +6851,4740,71,1,f +6851,4766stk01,9999,1,t +6851,47905,0,1,f +6851,47990,15,1,f +6851,48284,0,2,f +6851,48336,70,1,f +6851,4865a,0,1,f +6851,48724,71,1,f +6851,48729a,0,12,f +6851,49193,72,2,f +6851,54200,72,4,f +6851,6019,71,2,f +6851,6141,46,2,f +6851,6141,46,1,t +6851,6141,36,1,t +6851,6141,57,1,t +6851,6141,57,6,f +6851,6141,15,1,t +6851,6141,15,4,f +6851,6141,71,1,f +6851,6141,47,1,t +6851,6141,47,2,f +6851,6141,71,1,t +6851,6141,36,2,f +6851,6157,71,2,f +6851,6178,72,2,f +6851,6179,0,2,f +6851,6179,15,1,f +6851,6179,71,1,f +6851,6191,0,2,f +6851,6215,0,2,f +6851,6260,15,2,f +6851,6260,0,1,f +6851,6260,378,1,f +6851,6265,15,2,t +6851,6265,0,2,f +6851,6265,378,1,t +6851,6265,0,1,t +6851,6265,15,4,f +6851,6265,378,2,f +6851,6266,0,4,f +6851,6266,15,4,f +6851,6636,0,4,f +6851,6636,72,4,f +6851,73983,72,2,f +6851,970c00,0,2,f +6851,970c00,71,1,f +6851,970c00,72,1,f +6851,973c42,0,2,f +6851,973pb0060ac01,72,1,f +6851,973pb0331c01,4,1,f +6851,973pb0343c02,71,1,f +6854,2357,15,7,f +6854,2417,10,2,f +6854,2423,2,1,f +6854,2436,15,1,f +6854,2453a,5,2,f +6854,2454a,15,5,f +6854,2921,14,2,f +6854,3001,14,3,f +6854,30016,29,1,f +6854,3004,26,10,f +6854,3004,15,4,f +6854,3005,5,15,f +6854,3005,15,6,f +6854,3010,15,5,f +6854,30107,14,1,f +6854,30109,191,1,f +6854,30112,5,1,f +6854,3022,4,2,f +6854,3023,4,1,f +6854,3040b,5,14,f +6854,3062b,15,14,f +6854,3069b,27,3,f +6854,3245b,15,8,f +6854,33051,10,2,f +6854,3307,15,3,f +6854,3308,15,6,f +6854,33172,25,2,f +6854,33175,1,1,f +6854,33175,4,1,f +6854,33183,10,2,f +6854,33183,10,1,t +6854,3622,15,8,f +6854,3666,15,2,f +6854,3741,2,1,f +6854,3741,2,1,t +6854,3742,5,3,f +6854,3742,4,6,f +6854,3742,5,1,t +6854,3742,4,2,t +6854,3794a,15,2,f +6854,3830,15,3,f +6854,3831,15,3,f +6854,3857,10,1,f +6854,3867,10,1,f +6854,3899,45,1,f +6854,3941,4,1,f +6854,3957a,15,1,f +6854,4032a,70,1,f +6854,4070,14,2,f +6854,4085c,4,1,f +6854,4286,26,9,f +6854,4424,70,1,f +6854,4490,15,6,f +6854,4495b,5,1,f +6854,4523,27,1,f +6854,4623,14,2,f +6854,6091,15,4,f +6854,6108,15,2,f +6854,6111,15,2,f +6854,6141,5,2,f +6854,6141,5,1,t +6854,6141,41,1,t +6854,6141,41,3,f +6854,6162,5,1,f +6854,6171pr02,484,1,f +6854,6185,70,1,f +6854,6189,0,1,f +6854,6193,484,1,f +6854,6204,0,1,f +6854,6251,15,1,f +6854,6255,10,1,f +6854,6636,70,6,f +6854,6936,297,1,f +6854,70973,135,1,f +6854,71861,135,2,f +6854,belvfem80,15,1,f +6855,10183,57,1,f +6855,10201,4,1,f +6855,11090,0,1,f +6855,11153,28,4,f +6855,11215,0,1,f +6855,11303,320,1,f +6855,11458,72,6,f +6855,11476,15,1,f +6855,11477,0,2,f +6855,11599,143,1,f +6855,13547,0,2,f +6855,13608,179,1,f +6855,13731,0,6,f +6855,13971,71,2,f +6855,15068,0,2,f +6855,15068,28,2,f +6855,15391,70,1,f +6855,15392,72,5,f +6855,15392,72,2,t +6855,15403,0,4,f +6855,15461,0,1,f +6855,15672,70,2,f +6855,15712,0,2,f +6855,15712,1,4,f +6855,16091,71,2,f +6855,18646,0,2,f +6855,18973,40,1,f +6855,18975,72,1,f +6855,18987,0,1,f +6855,20482,297,1,f +6855,20482,47,2,f +6855,20482,47,1,t +6855,20482,297,1,t +6855,20606,484,1,f +6855,23443,0,1,f +6855,23444,0,1,f +6855,24135,71,1,t +6855,24135,71,1,f +6855,2420,4,2,f +6855,2420,70,2,f +6855,24299,15,1,f +6855,24307,15,1,f +6855,2431,0,7,f +6855,2431,308,1,f +6855,24316,70,2,f +6855,2432,71,1,f +6855,2432,70,1,f +6855,2460,72,1,f +6855,2540,72,3,f +6855,25893,47,1,t +6855,25893,47,1,f +6855,25894,27,1,f +6855,2653,0,2,f +6855,2654,0,2,f +6855,26785,1,1,f +6855,26824,27,1,f +6855,2780,0,2,t +6855,2780,0,11,f +6855,2817,0,1,f +6855,30000,71,2,f +6855,3002,71,2,f +6855,3003,4,1,f +6855,3004,1,2,f +6855,3004,71,3,f +6855,3006,0,1,f +6855,3009,28,2,f +6855,3010,71,1,f +6855,30136,71,2,f +6855,30157,70,4,f +6855,30165,4,3,f +6855,3020,72,3,f +6855,3020,70,1,f +6855,3020,4,1,f +6855,3020,1,1,f +6855,3020,28,7,f +6855,3021,1,1,f +6855,3022,0,3,f +6855,3022,14,5,f +6855,3023,25,5,f +6855,3023,19,6,f +6855,3023,33,10,f +6855,3023,70,6,f +6855,30248,72,1,f +6855,3031,70,1,f +6855,3032,72,1,f +6855,3034,72,2,f +6855,3035,1,1,f +6855,30383,0,2,f +6855,3040b,71,2,f +6855,30414,0,2,f +6855,30426,0,1,f +6855,30592,72,1,f +6855,30602,72,2,f +6855,3062b,71,2,f +6855,3068b,1,4,f +6855,3069b,70,2,f +6855,3069b,14,2,f +6855,32000,14,1,f +6855,32000,72,5,f +6855,32062,4,1,f +6855,32123b,71,1,f +6855,32123b,14,1,t +6855,32123b,14,4,f +6855,32123b,71,1,t +6855,32124,0,6,f +6855,32138,0,3,f +6855,32140,71,2,f +6855,32140,72,2,f +6855,32187,179,4,f +6855,32526,0,1,f +6855,3460,308,3,f +6855,3460,72,6,f +6855,3623,72,4,f +6855,3626c,42,4,f +6855,3626cpr1615,78,1,f +6855,3626cpr1951,19,1,f +6855,3626cpr1952,1,1,f +6855,3626cpr1960,0,1,f +6855,3660,308,9,f +6855,3665,72,4,f +6855,3666,1,6,f +6855,3673,71,4,f +6855,3673,71,2,t +6855,3701,72,2,f +6855,3702,0,4,f +6855,3705,0,3,f +6855,3706,4,1,f +6855,3710,14,2,f +6855,3710,70,4,f +6855,3749,19,6,f +6855,3795,0,3,f +6855,3795,70,3,f +6855,3829c01,0,2,f +6855,3839b,72,1,f +6855,3937,71,2,f +6855,3941,42,4,f +6855,41530,42,1,f +6855,4162,15,2,f +6855,41747,28,1,f +6855,41748,28,1,f +6855,4175,0,2,f +6855,4274,1,1,t +6855,4274,1,2,f +6855,4274,71,9,f +6855,4274,71,1,t +6855,43093,1,2,f +6855,43898,72,1,f +6855,44302a,71,2,f +6855,44728,1,2,f +6855,44809,71,2,f +6855,4510,72,2,f +6855,4519,71,2,f +6855,45677,72,1,f +6855,4599b,0,1,t +6855,4599b,0,2,f +6855,46667,0,1,f +6855,4740,33,1,f +6855,4740,52,1,f +6855,47720,0,1,f +6855,48336,0,3,f +6855,4856a,1,2,f +6855,4865a,71,2,f +6855,4865b,57,1,f +6855,50373,1,1,f +6855,50950,1,4,f +6855,51739,28,2,f +6855,54200,36,2,f +6855,54200,36,1,t +6855,54383,28,1,f +6855,54384,28,1,f +6855,55706,0,1,f +6855,55981,71,4,f +6855,56898,0,2,f +6855,56904,71,2,f +6855,57539pat0002,47,1,f +6855,59443,0,4,f +6855,59443,70,1,f +6855,60470a,71,2,f +6855,60470a,4,3,f +6855,60470a,0,2,f +6855,60477,308,4,f +6855,60478,71,4,f +6855,60484,0,1,f +6855,60484,72,2,f +6855,6091,0,2,f +6855,61254,0,2,f +6855,6134,0,2,f +6855,61409,72,2,f +6855,61409,4,2,f +6855,6141,47,5,f +6855,6141,179,31,f +6855,6141,179,3,t +6855,6141,47,1,t +6855,6141,182,10,f +6855,6141,182,1,t +6855,6153b,0,4,f +6855,6232,72,2,f +6855,63082,71,1,f +6855,63868,72,2,f +6855,64566,0,6,f +6855,64644,0,3,f +6855,6541,0,2,f +6855,6628,0,2,f +6855,6636,0,2,f +6855,75c13,0,1,t +6855,75c13,0,6,f +6855,85941,42,2,f +6855,85984,72,7,f +6855,85984,1,2,f +6855,87082,0,2,f +6855,87087,71,2,f +6855,87087,0,4,f +6855,87609,0,2,f +6855,90194,72,4,f +6855,91988,0,1,f +6855,92402,0,4,f +6855,92593,15,2,f +6855,93273,0,5,f +6855,93273,4,1,f +6855,93273,70,1,f +6855,93606,0,2,f +6855,94925,71,4,f +6855,95345,70,1,f +6855,96874,25,1,t +6855,970c00,0,1,f +6855,970c00,379,1,f +6855,970c00pr0002,0,1,f +6855,970c00pr1078,25,1,f +6855,970c00pr2077,484,1,f +6855,973pr2655c01,15,1,f +6855,973pr3437c01,0,1,f +6855,973pr3442c01,484,1,f +6855,973pr3446c01,85,1,f +6855,973pr3447c01,0,1,f +6855,98138,36,2,f +6855,98138,36,1,t +6855,98282,4,2,f +6855,98721,0,1,t +6855,98721,0,1,f +6855,99206,0,1,f +6855,99206,15,2,f +6855,99206,4,2,f +6855,99207,0,1,f +6856,32062,0,1,f +6856,32062,0,1,t +6856,32174,72,6,f +6856,32533pb574,21,1,f +6856,32553,72,1,f +6856,32554,36,1,f +6856,32570pb01,288,1,f +6856,41668,288,2,f +6856,43093,1,1,t +6856,43093,1,6,f +6856,47295,288,1,f +6856,47300,72,4,f +6856,47304,179,1,f +6856,6553,0,1,f +6856,6558,0,1,t +6856,6558,0,1,f +6858,29bc01,4,1,f +6858,3001a,4,10,f +6858,3001a,47,2,f +6858,3001a,15,8,f +6858,3002a,4,2,f +6858,3002a,15,3,f +6858,3003,4,6,f +6858,3003,15,4,f +6858,3007,4,1,f +6858,3035,15,1,f +6858,3065,4,2,f +6858,3065,15,3,f +6858,3081bc01,4,1,f +6858,31bc01,4,1,f +6858,33bc01,4,1,f +6859,10048,84,1,f +6859,10052,71,1,f +6859,10053,179,1,f +6859,10053,179,1,t +6859,10170,84,1,f +6859,11211,71,1,f +6859,11420pr0001,484,1,f +6859,11422pr0001,72,1,f +6859,11833,47,1,f +6859,11833,84,4,f +6859,11891,15,1,f +6859,11911,308,1,f +6859,12825,0,3,f +6859,13048,9999,1,t +6859,13276,326,1,f +6859,22667,27,2,f +6859,22667,4,1,t +6859,22667,4,2,f +6859,22667,27,1,t +6859,2343,71,2,f +6859,2357,2,2,f +6859,2357,19,1,f +6859,2417,2,3,f +6859,2417,10,2,f +6859,2420,2,4,f +6859,2431,2,1,f +6859,2431,70,6,f +6859,2431,19,1,f +6859,2453a,19,2,f +6859,2456,2,1,f +6859,2456,19,2,f +6859,2489,308,1,f +6859,2654,47,1,f +6859,2921,70,2,f +6859,2921,19,1,f +6859,3003,2,1,f +6859,3003,19,1,f +6859,3004,19,6,f +6859,3004,70,5,f +6859,3004,2,2,f +6859,30044,288,4,f +6859,30046,0,4,f +6859,3005,19,6,f +6859,3005,182,1,f +6859,3005,71,2,f +6859,3005,70,1,f +6859,3005,2,2,f +6859,3008,2,2,f +6859,3008,70,1,f +6859,3008,19,5,f +6859,3009,19,7,f +6859,3010,19,2,f +6859,30126,72,1,f +6859,30126,72,1,t +6859,30136,308,4,f +6859,3020,28,6,f +6859,3020,70,2,f +6859,3020,2,12,f +6859,3021,2,4,f +6859,3021,70,2,f +6859,3022,2,3,f +6859,3022,70,13,f +6859,3023,0,1,f +6859,3023,28,4,f +6859,3023,19,2,f +6859,3023,2,2,f +6859,3023,70,4,f +6859,3024,0,1,t +6859,3024,72,1,f +6859,3024,0,1,f +6859,3024,2,1,t +6859,3024,72,1,t +6859,3024,2,2,f +6859,3031,19,1,f +6859,3034,2,2,f +6859,3035,70,1,f +6859,30350b,0,1,f +6859,30350b,70,1,f +6859,3036,2,3,f +6859,3036,28,2,f +6859,3039,2,5,f +6859,3040b,19,2,f +6859,3040b,2,13,f +6859,3040b,308,4,f +6859,3040b,70,2,f +6859,3062b,46,1,f +6859,3062b,70,25,f +6859,3068b,19,3,f +6859,3068b,2,2,f +6859,3068b,71,8,f +6859,3069b,72,4,f +6859,3069b,70,6,f +6859,3069b,2,4,f +6859,3069b,84,14,f +6859,3069bpr0055,15,1,f +6859,3070b,2,1,t +6859,3070b,2,2,f +6859,3184,0,1,f +6859,3297,2,4,f +6859,33009,70,1,f +6859,33051,10,2,f +6859,33057,484,2,f +6859,3307,19,2,f +6859,33078,4,1,f +6859,33172,25,2,f +6859,33183,10,1,t +6859,33183,10,7,f +6859,3622,19,3,f +6859,3622,2,2,f +6859,3623,70,7,f +6859,3623,19,4,f +6859,3626cpr0972,78,1,f +6859,3626cpr1080,78,1,f +6859,3626cpr1100,78,1,f +6859,3626cpr1103,78,1,f +6859,3626cpr1104,78,1,f +6859,3626cpr1106,78,1,f +6859,3633,0,1,f +6859,3659,71,1,f +6859,3659,19,4,f +6859,3659,0,1,f +6859,3665,70,2,f +6859,3665,19,4,f +6859,3666,70,8,f +6859,3666,19,2,f +6859,3680,0,4,f +6859,37,72,2,f +6859,3710,70,7,f +6859,3710,2,4,f +6859,3710,0,3,f +6859,3710,19,3,f +6859,3741,2,6,f +6859,3741,2,1,t +6859,3742,14,9,f +6859,3742,4,1,t +6859,3742,15,6,f +6859,3742,14,3,t +6859,3742,4,3,f +6859,3742,15,2,t +6859,3794b,70,5,f +6859,3795,2,3,f +6859,3795,70,8,f +6859,3832,2,2,f +6859,3837,72,1,f +6859,3841,72,1,f +6859,3937,71,1,f +6859,4032a,70,8,f +6859,4070,70,14,f +6859,4081b,19,2,f +6859,41539,2,1,f +6859,4162,2,1,f +6859,4162,70,4,f +6859,41879a,70,2,f +6859,41879a,72,2,f +6859,41879a,0,1,f +6859,41879a,308,3,f +6859,42022,2,8,f +6859,4286,2,4,f +6859,4286,70,1,f +6859,4287,70,6,f +6859,4332,0,1,f +6859,4342,84,1,f +6859,4460b,10,6,f +6859,4528,0,1,f +6859,4529,0,2,f +6859,4738a,70,1,f +6859,4739a,70,1,f +6859,47905,72,1,f +6859,48092,84,4,f +6859,4865a,19,1,f +6859,50231,72,2,f +6859,54200,70,3,f +6859,54200,10,3,t +6859,54200,10,10,f +6859,54200,70,2,t +6859,54200,72,1,t +6859,54200,2,1,t +6859,54200,72,1,f +6859,54200,2,6,f +6859,59900,40,1,f +6859,59900,34,1,f +6859,6003,2,2,f +6859,6003,28,2,f +6859,60475a,84,3,f +6859,60478,0,2,f +6859,6064,2,1,f +6859,6112,70,1,f +6859,6131,72,1,f +6859,6134,0,1,f +6859,6141,70,24,f +6859,6141,297,3,f +6859,6141,182,2,f +6859,6141,70,3,t +6859,6141,182,1,t +6859,6141,46,1,t +6859,6141,72,9,f +6859,6141,72,1,t +6859,6141,46,1,f +6859,6141,297,1,t +6859,61678,2,10,f +6859,6177pr0001,2,1,f +6859,6215,2,13,f +6859,62361,70,3,f +6859,6256,191,2,f +6859,63868,0,2,f +6859,63965,70,2,f +6859,64951,70,1,f +6859,6636,70,3,f +6859,6636,19,4,f +6859,76768,70,3,f +6859,87079,2,4,f +6859,87087,19,12,f +6859,87552,0,1,f +6859,87580,28,1,f +6859,87994,70,1,f +6859,88292,84,5,f +6859,92438,28,2,f +6859,92438,2,1,f +6859,93273,70,1,f +6859,95228,40,2,f +6859,95673,179,1,f +6859,96874,25,1,t +6859,970c00,72,1,f +6859,973pr2053c01,72,1,f +6859,973pr2178c01,19,1,f +6859,973pr2208c01,326,1,f +6859,973pr2211c01,320,1,f +6859,973pr2212c01,84,1,f +6859,98283,84,10,f +6859,98560,2,9,f +6859,99464,70,1,f +6859,99464,320,1,f +6860,32013,19,2,f +6860,32016,19,2,f +6860,32034,7,1,f +6860,32062,0,6,f +6860,32065,19,2,f +6860,32123b,7,4,f +6860,32165,19,1,f +6860,32305,0,1,f +6860,32306,0,1,f +6860,32307,19,2,f +6860,32348,19,1,f +6860,32439a,8,3,f +6860,3705,0,2,f +6860,3706,0,3,f +6860,3707,0,1,f +6860,3713,7,1,f +6860,4519,0,3,f +6860,57467,383,2,f +6860,6536,19,2,f +6860,6538b,0,2,f +6860,6538b,19,1,f +6860,rb00168,0,1,f +6860,rb00168,0,1,t +6860,rb00182,19,1,t +6860,x209pw1,0,1,f +6861,122c01,0,1,f +6861,3004pb005,15,1,f +6861,3005,15,2,f +6861,3010,15,1,f +6861,3068bp67,15,2,f +6861,3069b,1,4,f +6861,3626apr0001,14,1,f +6861,3641,0,2,f +6861,3795,15,1,f +6861,3839b,15,1,f +6861,3937,15,3,f +6861,3938,15,3,f +6861,3957a,14,1,f +6861,3960,15,1,f +6861,4211,15,1,f +6861,4485,4,1,f +6861,4599a,4,2,f +6861,970c00,1,1,f +6861,973px3c01,15,1,f +6862,10178,35,1,f +6862,10247,71,4,f +6862,14769pr1018,84,1,f +6862,15429pr0001,15,1,f +6862,15443,70,1,f +6862,15557pr0001,484,1,f +6862,16599,1,1,f +6862,20683pr01,1000,1,f +6862,2412b,0,1,f +6862,2441,0,1,f +6862,2540,72,2,f +6862,30028,0,4,f +6862,3021,70,2,f +6862,3021,72,2,f +6862,3022,15,2,f +6862,3023,70,4,f +6862,3023,73,6,f +6862,3023,0,5,f +6862,3023,36,2,f +6862,3023,72,10,f +6862,3024,323,1,f +6862,3024,323,1,t +6862,3024,29,1,f +6862,3024,29,1,t +6862,3024,15,1,t +6862,3024,15,1,f +6862,3040b,29,1,f +6862,3068b,73,12,f +6862,3069b,73,20,f +6862,3069bpr0140,0,1,f +6862,32062,4,2,f +6862,3245cpr0003,15,1,f +6862,33078,4,1,f +6862,3622,15,2,f +6862,3622pr0009,29,1,f +6862,3622pr0010,29,1,f +6862,3623,15,1,f +6862,3623pr0009,29,1,f +6862,3623pr0010,29,1,f +6862,3626b,0,1,f +6862,3626cpr1643,14,1,f +6862,3626cpr1645,14,1,f +6862,3626cpr1647,14,1,f +6862,3666,70,1,f +6862,3821,15,1,f +6862,3822,15,1,f +6862,3829c01,0,1,f +6862,3832,70,3,f +6862,3833,4,1,f +6862,3838,1,1,f +6862,3899,15,4,f +6862,4081b,0,2,f +6862,43093,1,4,f +6862,44728,15,2,f +6862,4477,70,1,f +6862,45677,0,1,f +6862,48336,71,8,f +6862,4865a,15,2,f +6862,50231pat0001,321,1,f +6862,54200,5,2,f +6862,54200,0,2,f +6862,54200,0,1,t +6862,54200,5,1,t +6862,57783,40,1,f +6862,59443,71,4,f +6862,6020,70,2,f +6862,60212,0,1,f +6862,60212,15,1,f +6862,60481,0,2,f +6862,6141,70,2,f +6862,6141,158,1,t +6862,6141,158,1,f +6862,6141,70,1,t +6862,63868,72,20,f +6862,63965,15,1,f +6862,74967,71,4,f +6862,85861,15,2,f +6862,85861,15,1,t +6862,87087,29,1,f +6862,89522,212,1,f +6862,89522,212,1,t +6862,93273,71,1,f +6862,970c00,1,1,f +6862,970c00,72,1,f +6862,970c00pr0605,25,1,f +6862,973c09,15,1,f +6862,973pr2538c01,25,1,f +6862,973pr2555c01,72,1,f +6862,973pr2650c01,1,1,f +6862,98138,47,1,t +6862,98138,47,4,f +6863,2736,71,2,f +6863,2780,0,1,t +6863,2780,0,59,f +6863,30374,36,2,f +6863,32009,0,7,f +6863,32016,71,2,f +6863,32034,0,6,f +6863,32039,0,4,f +6863,32054,71,11,f +6863,32062,4,10,f +6863,32072,14,4,f +6863,32073,71,12,f +6863,32123b,71,3,f +6863,32123b,71,1,t +6863,32138,0,3,f +6863,32140,0,5,f +6863,32140,71,2,f +6863,32184,0,4,f +6863,32235,14,2,f +6863,32271,71,1,f +6863,32316,14,3,f +6863,32449,4,6,f +6863,32523,4,2,f +6863,32524,14,5,f +6863,32524,71,3,f +6863,32525,14,2,f +6863,32525,0,5,f +6863,32526,71,2,f +6863,32526,14,2,f +6863,33299a,71,2,f +6863,3705,0,2,f +6863,3706,0,4,f +6863,3707,0,1,f +6863,3713,71,1,t +6863,3713,71,11,f +6863,3737,0,2,f +6863,3749,19,2,f +6863,3900,71,2,f +6863,40490,0,4,f +6863,41239,0,4,f +6863,41239,14,5,f +6863,41669,36,6,f +6863,41677,0,4,f +6863,42003,71,7,f +6863,43093,1,12,f +6863,44772,71,1,f +6863,4519,71,16,f +6863,45590,0,4,f +6863,48989,71,1,f +6863,54821,179,4,f +6863,57585,71,1,f +6863,59443,14,2,f +6863,59443,0,14,f +6863,60483,71,7,f +6863,60485,71,1,f +6863,60896,73,2,f +6863,60930,179,2,f +6863,60935,179,4,f +6863,6141,36,1,t +6863,6141,36,2,f +6863,61800,179,2,f +6863,61801,179,4,f +6863,62233,135,1,f +6863,62386,0,2,f +6863,62462,71,1,f +6863,62531,14,2,f +6863,64251,1,2,f +6863,64262,143,1,f +6863,64330,1,1,f +6863,64391,14,2,f +6863,64392,71,1,f +6863,64393,71,1,f +6863,64394,71,2,f +6863,64394,14,1,f +6863,64680,71,2,f +6863,64680,14,1,f +6863,64681,71,1,f +6863,64682,71,1,f +6863,64683,14,2,f +6863,64712,72,1,f +6863,6536,4,2,f +6863,6536,14,10,f +6863,6558,1,31,f +6863,6587,28,4,f +6863,6628,0,2,f +6863,78c18,135,2,f +6863,85543,15,2,f +6863,87082,71,6,f +6863,87794,0,1,f +6863,87796,1,2,f +6863,87799,179,1,f +6863,87807,1,1,f +6864,2352,4,1,f +6864,2456,14,1,f +6864,2456,4,2,f +6864,2456,1,2,f +6864,3001,1,12,f +6864,3001,14,12,f +6864,3001,15,8,f +6864,3001,0,4,f +6864,3001,2,4,f +6864,3001,4,12,f +6864,3001p08,14,1,f +6864,3001pr1,14,1,f +6864,3002,14,4,f +6864,3002,0,4,f +6864,3002,15,4,f +6864,3002,2,4,f +6864,3002,1,4,f +6864,3002,4,4,f +6864,3003,0,8,f +6864,3003,1,16,f +6864,3003,4,16,f +6864,3003,2,6,f +6864,3003,14,16,f +6864,3003,15,12,f +6864,3003pe2,4,2,f +6864,3003pe2,14,2,f +6864,3007,14,1,f +6864,3007,1,2,f +6864,30075pb02,4,1,f +6864,30076,4,1,f +6864,30077,4,2,f +6864,30078,14,1,f +6864,30341,4,1,f +6864,3483,0,4,f +6864,3857,10,2,f +6864,4727,2,4,f +6864,4728,14,1,f +6864,4728,15,1,f +6864,4728,1,1,f +6864,4728,4,1,f +6864,4729,14,1,f +6864,4743,1,1,f +6864,4744pr0001,0,1,f +6864,4744px4,2,1,f +6864,4744px5,4,1,f +6864,4744px6,6,1,f +6864,4745,4,1,f +6864,600,15,1,f +6864,601,15,2,f +6864,6214px2,2,1,f +6864,6215,1,2,f +6864,6215,14,2,f +6864,6215,2,4,f +6864,6216,2,1,f +6864,6216,1,1,f +6864,6216,14,1,f +6864,6232,14,1,f +6864,6235,4,1,f +6864,6236,4,1,f +6864,6248,14,4,f +6864,82248,1,1,f +6865,2877,15,2,f +6865,30153,41,1,f +6865,30374,71,1,f +6865,3062b,41,2,f +6865,32002,72,3,f +6865,32002,72,1,t +6865,3626bpr0747,14,1,f +6865,4643661,9999,1,f +6865,4643662,9999,1,f +6865,4643663,9999,1,f +6865,4643664,9999,1,f +6865,4643665,9999,1,f +6865,54200,47,4,f +6865,54200,47,1,t +6865,6141,297,1,t +6865,6141,297,2,f +6865,63965,297,1,f +6865,63965,70,1,f +6865,87747,297,1,f +6865,92338,297,1,f +6865,92690,71,1,f +6865,92947,15,1,f +6865,93058,297,3,f +6865,970c00pr0275,15,1,f +6865,973pr1897c01,15,1,f +6865,98132,297,1,f +6865,98133pr0003,15,1,f +6865,98141,179,1,f +6865,98338,179,3,f +6866,3001,14,1,f +6866,3003,14,1,f +6866,3003pe2,14,1,f +6866,3004,14,1,f +6866,3021,4,2,f +6867,2412b,72,5,f +6867,2420,0,2,f +6867,2431px18,72,1,f +6867,2431px19,72,1,f +6867,2540,72,2,f +6867,2780,0,1,t +6867,2780,0,2,f +6867,2994,0,4,f +6867,3020,4,1,f +6867,3021,72,2,f +6867,3022,72,2,f +6867,3022,71,2,f +6867,3030,0,1,f +6867,3660,4,1,f +6867,3702,0,2,f +6867,3705,0,1,f +6867,3710,4,1,f +6867,3713,71,4,f +6867,3713,71,1,t +6867,3737,0,2,f +6867,3794a,4,8,f +6867,3795,0,3,f +6867,4081b,4,2,f +6867,4175,72,1,f +6867,41769,0,1,f +6867,41770,0,1,f +6867,41855pb09,72,2,f +6867,41855pb10,72,2,f +6867,43719,72,1,f +6867,43722,0,1,f +6867,43723,0,1,f +6867,44675,71,2,f +6867,44676,0,2,f +6867,44728,4,4,f +6867,47715,0,1,f +6867,47753pb002,0,1,f +6867,6141,71,12,f +6867,6141,71,1,t +6867,6141,41,1,t +6867,6141,41,4,f +6867,6578,0,4,f +6867,6589,71,4,f +6868,cwindow05,15,1,f +6868,cwindow05,1,1,f +6868,cwindow05,14,1,f +6868,cwindow05,4,1,f +6869,10170,84,1,f +6869,11211,19,1,f +6869,11816pr0002,78,1,f +6869,12939,15,1,f +6869,15470,29,1,f +6869,15470,29,1,t +6869,2456,15,1,f +6869,3005,27,2,f +6869,3023,484,2,f +6869,30357,191,2,f +6869,3040b,29,2,f +6869,3040b,26,2,f +6869,33291,191,1,f +6869,33291,10,1,f +6869,33291,10,1,t +6869,33291,191,1,t +6869,3794b,27,1,f +6869,3795,29,1,f +6869,60897,15,1,f +6869,6141,70,1,f +6869,6141,4,1,t +6869,6141,4,1,f +6869,6141,70,1,t +6869,92255,226,1,f +6869,92456pr0045c01,78,1,f +6869,92818pr0002c01,26,1,f +6869,98138pr0017,29,1,f +6869,98138pr0017,29,1,t +6869,98138pr0018,84,1,f +6869,98138pr0018,84,1,t +6870,14418,71,2,f +6870,15395,0,1,f +6870,15456,0,2,f +6870,15573,0,22,f +6870,15712,71,6,f +6870,18787,322,1,f +6870,18792,70,1,f +6870,19723,322,1,f +6870,19729pr0001,308,1,f +6870,19729pr0004,0,3,f +6870,19730,322,1,f +6870,19732,0,3,f +6870,2357,72,4,f +6870,2420,0,8,f +6870,2431,0,4,f +6870,2450,0,2,f +6870,2456,0,5,f +6870,2540,0,1,f +6870,3001,0,1,f +6870,3001,19,33,f +6870,3003,71,6,f +6870,3003,33,4,f +6870,3003,46,3,f +6870,3003,0,81,f +6870,3003,72,3,f +6870,3003,19,19,f +6870,3004,71,2,f +6870,3004,72,6,f +6870,3004,0,1,f +6870,3004pr0013,0,1,f +6870,3020,0,17,f +6870,3021,0,7,f +6870,3022,71,9,f +6870,3022,0,16,f +6870,3022,19,3,f +6870,3023,0,13,f +6870,3023,72,12,f +6870,3023,71,20,f +6870,3023,4,2,f +6870,3024,182,8,f +6870,3024,71,2,t +6870,3024,0,18,f +6870,3024,71,14,f +6870,3024,46,2,t +6870,3024,46,8,f +6870,3024,182,2,t +6870,3024,0,3,t +6870,30367c,0,1,f +6870,30540,0,2,f +6870,3062b,47,3,f +6870,3065,47,6,f +6870,3068b,0,3,f +6870,3068b,71,4,f +6870,3068bpr0246a,0,1,f +6870,3069b,0,14,f +6870,3070b,0,6,f +6870,3070b,0,1,t +6870,3176,71,2,f +6870,32000,0,4,f +6870,32034,0,4,f +6870,32062,4,4,f +6870,3660,72,1,f +6870,3666,0,4,f +6870,3673,71,4,f +6870,3673,71,1,t +6870,3710,0,2,f +6870,3795,0,2,f +6870,3832,0,1,f +6870,4032a,85,3,f +6870,4070,19,12,f +6870,4070,72,4,f +6870,41539,19,2,f +6870,41677,15,2,f +6870,43093,1,4,f +6870,44300,0,4,f +6870,44301a,0,8,f +6870,44302a,0,12,f +6870,44567a,0,8,f +6870,44728,0,10,f +6870,47455,0,2,f +6870,48171,72,2,f +6870,48172,0,1,f +6870,51342,0,2,f +6870,60471,0,6,f +6870,60478,0,6,f +6870,60897,0,2,f +6870,6141,85,48,f +6870,6141,85,1,t +6870,6141,36,1,t +6870,6141,36,2,f +6870,63864,0,4,f +6870,63868,0,2,f +6870,64644,308,8,f +6870,64799,71,3,f +6870,6636,0,6,f +6870,85984,0,2,f +6870,87079,0,4,f +6870,87580,19,3,f +6870,88072,71,1,f +6870,91405,19,1,f +6870,92280,0,2,f +6870,92438,19,3,f +6870,96874,25,1,t +6870,970c00,322,1,f +6870,973pr2819c01,321,1,f +6870,98782,36,1,f +6870,99207,0,4,f +6870,99781,0,4,f +6874,3004,1,2,f +6874,3005,1,4,f +6874,3008,1,8,f +6874,3008p03,15,1,f +6874,3009,1,7,f +6874,3010,1,8,f +6874,3035,15,2,f +6874,3036,15,1,f +6874,645cc01,15,2,f +6874,820a,7,1,f +6874,grautodoor,4,2,f +6875,132a,7,2,f +6875,3001a,4,1,f +6875,3001a,1,2,f +6875,3002a,1,1,f +6875,3004,0,6,f +6875,3004,1,5,f +6875,3004,4,1,f +6875,3007,1,3,f +6875,3020,0,2,f +6875,3021,1,2,f +6875,3021,4,1,f +6875,3022,1,4,f +6875,3039,1,1,f +6875,3040a,1,4,f +6875,3062c,0,1,f +6875,3063b,4,2,f +6875,36,7,2,f +6875,7039,4,3,f +6875,7049a,15,4,f +6875,715,4,2,f +6876,3001a,47,2,f +6876,3001a,1,2,f +6876,3001a,0,2,f +6876,3003,0,10,f +6876,3004,4,23,f +6876,3004,0,16,f +6876,3004,1,17,f +6876,3005,1,5,f +6876,3005,0,2,f +6876,3005,14,6,f +6876,3008,4,4,f +6876,3008,14,2,f +6876,3009,14,20,f +6876,3009,4,1,f +6876,3009,1,9,f +6876,3010,1,4,f +6876,3010,14,12,f +6876,3010,0,4,f +6876,3010pb035u,4,1,f +6876,3020,0,1,f +6876,3020,4,2,f +6876,3021,4,2,f +6876,3032,0,1,f +6876,3035a,15,2,f +6876,3035a,7,1,f +6876,3036,0,2,f +6876,3037,4,4,f +6876,3037,1,5,f +6876,3039,4,4,f +6876,3040a,0,2,f +6876,3046a,4,6,f +6876,3062a,15,7,f +6876,3062a,0,3,f +6876,3068a,4,1,f +6876,3137c01,0,6,f +6876,3139,0,12,f +6876,3149c01,4,1,f +6876,3183b,15,1,f +6876,3184,15,1,f +6876,630,14,1,f +6876,rb00197,7,1,f +6879,3001a,4,10,f +6879,3001a,0,8,f +6879,3001a,15,10,f +6879,3001a,1,10,f +6879,3001a,47,2,f +6879,3001a,14,10,f +6879,3002a,15,2,f +6879,3002a,14,4,f +6879,3002a,4,2,f +6879,3002a,1,2,f +6879,3003,0,6,f +6879,3003,4,6,f +6879,3003,14,4,f +6879,3003,15,6,f +6879,3003,47,2,f +6879,3003,1,4,f +6879,3004,0,2,f +6879,3004,1,4,f +6879,3004,15,4,f +6879,3004,4,4,f +6879,3004,14,4,f +6879,3007,4,2,f +6879,3008,1,2,f +6879,3008,15,2,f +6879,3009,14,2,f +6879,3010,15,2,f +6879,3021,0,1,f +6879,3032,14,1,f +6879,3033,4,1,f +6879,3034,1,2,f +6879,3035,1,1,f +6879,3039,4,4,f +6879,3039,1,4,f +6879,3081cc01,4,2,f +6879,3137c01,0,2,f +6879,3185,15,4,f +6879,3471,2,1,f +6879,3579,4,1,f +6879,3581,4,4,f +6879,3582,1,4,f +6879,3612,15,2,f +6879,3613,15,2,f +6879,3614a,14,2,f +6879,3641,0,4,f +6879,3660,1,4,f +6879,3660,4,4,f +6879,453cc01,4,2,f +6879,685px1c01,14,1,f +6879,700ed2,2,1,f +6879,7930,1,1,f +6879,x196,0,1,f +6879,x407,1,1,f +6880,11090,297,2,f +6880,14419,72,2,f +6880,14704,71,4,f +6880,15068,272,1,f +6880,15619,1,1,f +6880,15619,1,1,t +6880,2412b,297,1,f +6880,2736,71,2,f +6880,3004,1,1,f +6880,3020,1,1,f +6880,3022,1,2,f +6880,3023,1,1,f +6880,3023,0,4,f +6880,3069b,1,1,f +6880,32192,0,2,f +6880,3626cpr1367,14,1,f +6880,3660,1,1,f +6880,3680,0,1,f +6880,3700,0,4,f +6880,3747a,1,1,f +6880,4032a,0,2,f +6880,47457,1,2,f +6880,48336,297,1,f +6880,48729b,71,2,f +6880,48729b,71,1,t +6880,51739,272,2,f +6880,60849,0,2,f +6880,61409,1,2,f +6880,62810,484,1,f +6880,6628,0,2,f +6880,6628,0,1,t +6880,970c00pr0763,1,1,f +6880,973pr2848c01,1,1,f +6880,98137,297,2,f +6880,99207,0,1,f +6883,11091,272,4,f +6883,11091,15,2,f +6883,11096,297,1,f +6883,11097,297,1,f +6883,11100,15,2,f +6883,11477,15,5,f +6883,12549pr0001,15,1,f +6883,12825,15,2,f +6883,13547,0,2,f +6883,14417,72,3,f +6883,14418,71,1,f +6883,14419,72,2,f +6883,14704,71,2,f +6883,15068,0,1,f +6883,15070,14,1,f +6883,3021,272,2,f +6883,3023,272,8,f +6883,3023,72,2,f +6883,3024,14,1,f +6883,3024,15,1,t +6883,3024,15,2,f +6883,3024,14,1,t +6883,30374,70,1,f +6883,3626cpr1124,212,1,f +6883,3666,272,2,f +6883,3710,272,1,f +6883,41769,272,1,f +6883,41770,272,1,f +6883,43722,71,1,f +6883,43723,71,1,f +6883,49668,15,2,f +6883,52107,15,1,f +6883,53451,0,6,f +6883,53451,0,1,t +6883,53989,15,6,f +6883,54200,71,1,t +6883,54200,71,6,f +6883,54200,15,1,t +6883,54200,15,1,f +6883,63868,15,3,f +6883,87087,15,4,f +6883,92690,297,1,f +6883,92692,15,3,f +6883,92692,0,2,f +6883,92747,41,1,f +6883,970c01pr0440,15,1,f +6883,973pr2229c01,212,1,f +6883,98138,41,1,t +6883,98138,41,3,f +6883,98138pr0016,15,2,f +6883,98138pr0016,15,1,t +6883,98313,14,6,f +6884,2412b,7,1,f +6884,2419,0,2,f +6884,2446,0,1,f +6884,2447,34,1,f +6884,2447,34,1,t +6884,2540,4,2,f +6884,2569,4,1,f +6884,2817,0,4,f +6884,298c02,0,1,t +6884,298c02,0,1,f +6884,3001,0,1,f +6884,3003,0,1,f +6884,3023,7,1,f +6884,3023,0,1,f +6884,3068bp69,0,1,f +6884,3475b,0,2,f +6884,3626bp69,14,1,f +6884,3673,7,8,f +6884,3730,7,1,f +6884,3731,7,1,f +6884,3747b,0,1,f +6884,3794a,0,1,f +6884,3829c01,0,1,f +6884,3838,0,1,f +6884,3937,0,1,f +6884,3938,0,1,f +6884,3941,0,1,f +6884,3942b,7,1,f +6884,3956,7,1,f +6884,4349,15,1,f +6884,4591,7,1,f +6884,4732,0,1,f +6884,4735,0,2,f +6884,4740,34,2,f +6884,4859,7,1,f +6884,6019,0,2,f +6884,6070,34,1,f +6884,6118,0,8,f +6884,970x001,2,1,f +6884,973p69c01,15,1,f +6885,23306,383,1,t +6885,23306,383,1,f +6885,2540,6,10,f +6885,2555,7,2,f +6885,298c02,7,1,t +6885,298c02,7,4,f +6885,30132,8,4,f +6885,30132,8,1,t +6885,30162,8,4,f +6885,30374,41,1,f +6885,30375,8,2,f +6885,30377,7,1,t +6885,30377,7,16,f +6885,3626bpr0635,14,1,f +6885,3794a,8,2,f +6885,3901,6,1,f +6885,3941,47,2,f +6885,4081b,6,2,f +6885,4623,0,4,f +6885,50231,6,1,f +6885,970c00,6,1,f +6885,973px145c01,19,1,f +6886,10172,297,1,f +6886,3626bpr1025,14,1,f +6886,88646,0,1,f +6886,93560,1,1,f +6886,93561,15,1,f +6886,93565pr0002,15,1,f +6886,970c00pr0381,15,1,f +6886,973c11,15,1,f +6888,11212,71,4,f +6888,11291,4,1,f +6888,13269,0,2,f +6888,13965,15,2,f +6888,14520,72,2,f +6888,14716,15,2,f +6888,15068,72,8,f +6888,15207,4,2,f +6888,17454,15,2,f +6888,17457,41,2,f +6888,20877,484,1,f +6888,2412b,15,4,f +6888,2420,14,4,f +6888,2420,71,4,f +6888,2431,15,2,f +6888,2431,71,4,f +6888,2431,4,1,f +6888,2432,71,1,f +6888,2437,40,1,f +6888,2445,0,2,f +6888,2654,15,15,f +6888,2877,15,1,f +6888,3005,14,8,f +6888,3005,15,4,f +6888,3008,15,1,f +6888,3010,15,3,f +6888,3020,71,1,f +6888,3020,0,2,f +6888,3023,0,2,f +6888,3023,71,4,f +6888,30236,15,2,f +6888,3024,182,1,t +6888,3024,182,2,f +6888,3029,0,2,f +6888,30340,15,4,f +6888,3037,14,6,f +6888,3040b,15,2,f +6888,3068b,0,4,f +6888,3069b,0,1,f +6888,3069b,15,1,f +6888,3069bpr0137,71,1,f +6888,3070b,34,1,t +6888,3070b,36,2,f +6888,3070b,34,2,f +6888,3070b,36,1,t +6888,3460,15,1,f +6888,3460,14,4,f +6888,3622,14,8,f +6888,3623,72,4,f +6888,3623,14,4,f +6888,3624,0,1,f +6888,3626bpr0386,14,1,f +6888,3626cpr0893,14,1,f +6888,3666,0,4,f +6888,3710,4,1,f +6888,3795,14,2,f +6888,3795,15,3,f +6888,3829c01,1,3,f +6888,3830,14,8,f +6888,3831,14,8,f +6888,3832,72,2,f +6888,3832,15,4,f +6888,3899,4,1,f +6888,3958,0,1,f +6888,4032a,14,1,f +6888,4079b,1,1,f +6888,4151b,72,1,f +6888,4162,72,2,f +6888,4162,0,4,f +6888,4289,15,1,f +6888,4476b,15,2,f +6888,4477,72,2,f +6888,45677,4,1,f +6888,47397,72,2,f +6888,47398,72,2,f +6888,47905,14,4,f +6888,48336,71,4,f +6888,50745,4,4,f +6888,52036,72,1,f +6888,52501,4,2,f +6888,54200,36,2,f +6888,54200,47,1,t +6888,54200,47,2,f +6888,54200,36,1,t +6888,60032,15,1,f +6888,60119stk01,9999,1,f +6888,6014b,71,4,f +6888,60479,15,1,f +6888,60479,14,2,f +6888,60481,15,8,f +6888,60601,41,1,f +6888,6111,14,2,f +6888,61252,0,2,f +6888,61252,71,4,f +6888,61345,15,2,f +6888,61409,0,2,f +6888,6141,0,1,t +6888,6141,47,1,f +6888,6141,47,1,t +6888,6141,0,1,f +6888,6157,0,2,f +6888,63864,14,4,f +6888,63864,0,4,f +6888,64799,14,1,f +6888,6636,4,3,f +6888,6636,1,3,f +6888,6636,0,1,f +6888,6636,71,2,f +6888,85984,0,1,f +6888,87620,15,4,f +6888,87697,0,4,f +6888,88646,71,2,f +6888,90498,2,2,f +6888,91405,72,1,f +6888,92593,15,2,f +6888,93273,4,1,f +6888,970c00,72,1,f +6888,970c00,15,1,f +6888,973pr1576c01,72,1,f +6888,973pr3018c01a,1,1,f +6888,98138,71,1,t +6888,98138,46,1,t +6888,98138,46,2,f +6888,98138,71,6,f +6889,132a,0,2,f +6889,3001a,47,2,f +6889,3001a,1,2,f +6889,3002a,15,3,f +6889,3003,4,1,f +6889,3003,15,2,f +6889,3003,1,2,f +6889,3003pt1,14,1,f +6889,3004,14,5,f +6889,3004,47,3,f +6889,3004,0,20,f +6889,3004,15,7,f +6889,3004,4,31,f +6889,3004pb011,4,2,f +6889,3005,15,4,f +6889,3005,4,24,f +6889,3007,4,1,f +6889,3008,15,3,f +6889,3008,4,10,f +6889,3008pb064,15,1,f +6889,3009,4,12,f +6889,3009,47,2,f +6889,3009,0,2,f +6889,3009,15,4,f +6889,3010,4,8,f +6889,3010,47,3,f +6889,3010,14,2,f +6889,3010,1,1,f +6889,3010,15,9,f +6889,3010p30,14,2,f +6889,3010p30,4,1,f +6889,3010p31,0,2,f +6889,3010pb035e,1,1,f +6889,3010pb035e,4,1,f +6889,3010pb036e,15,1,f +6889,3020,14,2,f +6889,3020,4,2,f +6889,3020,1,1,f +6889,3021,4,4,f +6889,3021,7,1,f +6889,3021,14,4,f +6889,3022,7,1,f +6889,3023,14,5,f +6889,3023,4,8,f +6889,3023,7,3,f +6889,3027,1,2,f +6889,3029,1,1,f +6889,3031,4,1,f +6889,3032,0,1,f +6889,3032,14,1,f +6889,3033,1,1,f +6889,3034,14,1,f +6889,3034,7,1,f +6889,3034,4,1,f +6889,3034,1,1,f +6889,3035,1,2,f +6889,3035,15,1,f +6889,3037,47,1,f +6889,3039,0,4,f +6889,3040a,47,2,f +6889,3046a,1,2,f +6889,3062a,0,7,f +6889,3068a,0,2,f +6889,3068a,4,2,f +6889,3068a,7,4,f +6889,3069a,1,1,f +6889,3069a,4,1,f +6889,3081cc01,15,3,f +6889,3127b,4,1,f +6889,3137c01,0,7,f +6889,3137c02,0,2,f +6889,3139,0,14,f +6889,3144,15,1,f +6889,3149c01,4,1,f +6889,3176,4,2,f +6889,3190,1,1,f +6889,3191,1,1,f +6889,3297,4,10,f +6889,3298,4,7,f +6889,3299,4,2,f +6889,3300,4,1,f +6889,3307,4,1,f +6889,3314,4,1,f +6889,3317,14,1,f +6889,3324c01,4,2,f +6889,33bc01,4,1,f +6889,33bc01,15,1,f +6889,3404ac01,0,1,f +6889,359cdb01,89,1,f +6889,453cc01,4,1,f +6889,586c01,14,1,f +6889,646cc01,4,2,f +6889,647p01,15,1,f +6889,649pb10,15,1,f +6889,649pb11,15,1,f +6889,7039,4,2,f +6889,7049b,0,1,f +6889,7284,15,1,f +6889,777px7,15,1,f +6889,784,4,1,f +6889,7b,0,4,f +6889,896p01,2,1,f +6889,915px1,2,1,f +6889,bp02a,2,1,f +6889,gtbush3,2,1,f +6889,rb00164,0,1,f +6890,3001,1,1,f +6890,3002,4,1,f +6890,3034,1,2,f +6890,3037,4,1,f +6890,3039,47,1,f +6890,3297px18,4,1,f +6890,3483,0,4,f +6890,6248,15,4,f +6890,6249,4,2,f +6894,11477,0,4,f +6894,14704,71,2,f +6894,14769pr1002,15,1,f +6894,15209,15,2,f +6894,15456,0,2,f +6894,2540,0,2,f +6894,3004,0,1,f +6894,3020,484,2,f +6894,3022,484,1,f +6894,3022,4,1,f +6894,3022,0,1,f +6894,3023,70,5,f +6894,3024,70,1,t +6894,3024,70,2,f +6894,3040b,0,2,f +6894,32474pr1001,15,2,f +6894,3298,70,2,f +6894,3700,70,3,f +6894,3747b,70,2,f +6894,4274,71,1,t +6894,4274,71,2,f +6894,44728,0,1,f +6894,47759,70,2,f +6894,4871,70,1,f +6894,49668,0,2,f +6894,51739,70,1,f +6894,53451,0,1,t +6894,53451,0,4,f +6894,54200,308,1,t +6894,54200,308,8,f +6894,60475b,0,2,f +6894,6141,15,1,f +6894,6141,297,1,f +6894,6141,297,1,t +6894,6141,15,1,t +6894,87087,484,2,f +6894,87620,0,2,f +6894,98313,70,2,f +6895,15100,0,1,f +6895,15303,36,2,f +6895,15362,179,2,f +6895,15400,72,1,f +6895,15712,72,1,f +6895,21560,179,2,f +6895,21561pr0008,179,1,f +6895,21562,179,2,f +6895,24123,179,1,f +6895,24203pr0002,179,1,f +6895,24954,0,1,f +6895,2780,0,6,f +6895,32014,0,1,f +6895,32039,0,3,f +6895,32054,0,1,f +6895,32062,4,4,f +6895,32123b,71,3,f +6895,32449,0,4,f +6895,3705,0,1,f +6895,41669,0,1,f +6895,41677,0,2,f +6895,43093,1,2,f +6895,4519,71,2,f +6895,58176,179,1,f +6895,59443,72,1,f +6895,60478,72,1,f +6895,60483,72,1,f +6895,61409,0,1,f +6895,62462,179,2,f +6895,63864,72,1,f +6895,6536,0,1,f +6895,74261,72,4,f +6895,87082,0,1,f +6895,90605,0,2,f +6895,90608,72,2,f +6895,90615,72,2,f +6895,90616,0,2,f +6895,90623,0,1,f +6895,90638,179,2,f +6895,90639,179,4,f +6895,90641,179,1,f +6895,90652,179,1,f +6895,90661,179,2,f +6895,92907,0,1,f +6895,93575,179,2,f +6895,98577,72,1,f +6897,10048,70,1,f +6897,10049,148,1,f +6897,10055pr0001,226,1,f +6897,10056pr0001,308,1,f +6897,10062,379,1,f +6897,10064,379,1,f +6897,10065,70,1,f +6897,10066pr0002,0,2,f +6897,10395,379,1,f +6897,10396,379,1,f +6897,10635,9999,1,t +6897,11795,379,1,f +6897,15207,71,1,f +6897,2357,72,8,f +6897,2420,72,2,f +6897,2420,71,9,f +6897,2431,0,2,f +6897,2431,70,9,f +6897,2431,72,6,f +6897,2431,71,14,f +6897,2436,71,8,f +6897,2449,72,4,f +6897,2453b,72,4,f +6897,2454a,72,8,f +6897,2458,71,2,f +6897,2465,72,1,f +6897,2489,70,1,f +6897,2540,72,4,f +6897,2540,0,1,f +6897,2540,19,1,f +6897,2817,71,1,f +6897,3001,72,6,f +6897,3001,0,2,f +6897,3002,72,10,f +6897,3003,71,1,f +6897,3003,72,3,f +6897,3004,72,27,f +6897,3004,0,4,f +6897,3004,71,4,f +6897,3005,72,11,f +6897,3005,0,4,f +6897,3005,71,2,f +6897,3008,72,3,f +6897,3009,0,4,f +6897,3009,72,5,f +6897,3010,0,6,f +6897,3010,72,22,f +6897,30153,42,1,f +6897,30153,47,3,f +6897,3020,72,2,f +6897,3020,71,2,f +6897,3021,71,4,f +6897,3021,72,4,f +6897,3022,70,6,f +6897,3022,0,1,f +6897,3022,71,5,f +6897,3023,0,5,f +6897,3023,28,6,f +6897,3023,71,5,f +6897,3023,72,17,f +6897,30237a,72,5,f +6897,3024,28,7,f +6897,3024,0,2,f +6897,3024,71,2,t +6897,3024,70,4,f +6897,3024,72,7,f +6897,3024,71,7,f +6897,3029,71,1,f +6897,3030,70,2,f +6897,3031,71,2,f +6897,3033,71,2,f +6897,3034,71,1,f +6897,3035,71,5,f +6897,3036,71,1,f +6897,30385,297,2,f +6897,3039,72,12,f +6897,3039,0,2,f +6897,3040b,72,12,f +6897,30414,72,4,f +6897,3044c,72,6,f +6897,3045,72,8,f +6897,3046a,72,4,f +6897,3048c,72,8,f +6897,30526,71,2,f +6897,3062b,72,1,f +6897,3068b,70,4,f +6897,3068b,72,5,f +6897,3068b,0,2,f +6897,3069b,0,2,f +6897,3069b,28,2,f +6897,3069b,71,2,f +6897,3069b,70,12,f +6897,3069b,72,13,f +6897,3070b,71,4,f +6897,3070b,0,2,f +6897,3070b,72,4,t +6897,3070b,71,1,t +6897,3070b,72,35,f +6897,3070b,70,6,f +6897,3070b,70,1,t +6897,3070b,0,1,t +6897,32000,72,2,f +6897,32316,72,1,f +6897,32348,0,2,f +6897,3245c,71,3,f +6897,33009,70,2,f +6897,3456,71,2,f +6897,3622,72,4,f +6897,3623,71,2,f +6897,3623,0,12,f +6897,3623,72,4,f +6897,3626bpr0895,15,3,f +6897,3626cpr0992,78,1,f +6897,3626cpr0993,78,1,f +6897,3626cpr0994,78,1,f +6897,3626cpr0995,78,1,f +6897,3626cpr1000,326,2,f +6897,3660,0,2,f +6897,3660,72,6,f +6897,3665,72,12,f +6897,3666,71,9,f +6897,3673,71,2,t +6897,3673,71,3,f +6897,3710,72,7,f +6897,3710,71,5,f +6897,3795,71,3,f +6897,3795,72,2,f +6897,3832,71,1,f +6897,3841,72,1,f +6897,3941,72,1,f +6897,3958,71,2,f +6897,4070,72,16,f +6897,4070,71,6,f +6897,4085c,0,8,f +6897,4162,71,2,f +6897,41879a,308,2,f +6897,4274,71,1,t +6897,4274,71,1,f +6897,43093,1,2,f +6897,4477,70,2,f +6897,4497,0,2,f +6897,4738a,70,1,f +6897,4739a,70,1,f +6897,4865a,72,3,f +6897,4865a,71,2,f +6897,50231,308,1,f +6897,53705,134,1,f +6897,53705,148,3,f +6897,54200,72,24,f +6897,54200,72,4,t +6897,54200,71,1,t +6897,54200,71,2,f +6897,59232,179,1,f +6897,59900,70,1,f +6897,59900,72,1,f +6897,60169,72,2,f +6897,60581,72,2,f +6897,60581,70,2,f +6897,60752,179,1,f +6897,6111,72,1,f +6897,6112,72,1,f +6897,6141,0,1,t +6897,6141,0,8,f +6897,6231,71,2,f +6897,6260,15,2,f +6897,6265,15,4,f +6897,6265,15,1,t +6897,6266,15,4,f +6897,63965,72,1,f +6897,63965,70,1,f +6897,63965,0,1,f +6897,64644,308,3,f +6897,64647,57,2,t +6897,64647,57,3,f +6897,6541,71,1,f +6897,6541,72,2,f +6897,6636,71,2,f +6897,6636,72,1,f +6897,85984,72,5,f +6897,87079,70,2,f +6897,87079,71,4,f +6897,87087,72,13,f +6897,87620,71,8,f +6897,87994,70,1,f +6897,88283,484,1,f +6897,91501,71,2,f +6897,91884pr0005,179,1,f +6897,92593,71,1,f +6897,92593,0,2,f +6897,93160,15,1,f +6897,93231,70,1,f +6897,95049,72,1,f +6897,95050,72,1,f +6897,95051,72,1,f +6897,95052,72,1,f +6897,95053,72,1,f +6897,95054,72,2,f +6897,95228,40,1,f +6897,95343,70,1,f +6897,95344,28,1,t +6897,95344,28,1,f +6897,95673,179,1,f +6897,970c00pr0353,71,1,f +6897,970c00pr0354,72,1,f +6897,970x026,72,2,f +6897,973pr2078c01,326,1,f +6897,973pr2079c01,320,1,f +6897,973pr2080c01,272,1,f +6897,973pr2081c01,272,1,f +6897,973pr2087c01,72,2,f +6897,98283,72,19,f +6897,98370,179,1,f +6897,99464,326,1,f +6897,99780,72,4,f +6898,132a,7,8,f +6898,3404bc01,15,1,f +6898,36,7,4,f +6898,650,79,2,f +6898,7039,4,8,f +6898,7049a,15,8,f +6898,715,4,4,f +6900,2421,0,1,f +6900,2433,0,2,f +6900,2446,2,1,f +6900,2447,0,1,f +6900,2555,0,2,f +6900,3021,0,1,f +6900,3626bp7c,14,1,f +6900,3933,4,1,f +6900,3934,4,1,f +6900,4095,0,2,f +6900,4276b,4,2,f +6900,4488,7,1,f +6900,73590c02b,14,1,f +6900,970x024,0,1,f +6900,973p8ac01,0,1,f +6901,10124,10,1,f +6901,10126,10,1,f +6901,10127,10,1,f +6901,10128pr0001,10,1,f +6901,10154,10,1,f +6901,10258,0,1,f +6901,10909,297,1,f +6901,12825,72,2,f +6901,15207,272,2,f +6901,2335,0,2,f +6901,2357,14,2,f +6901,2412b,179,10,f +6901,2412b,15,1,f +6901,2419,0,4,f +6901,2431,71,2,f +6901,2432,14,1,f +6901,2444,14,1,f +6901,2445,72,1,f +6901,2454a,72,4,f +6901,2654,71,1,f +6901,2654,72,4,f +6901,2780,0,11,f +6901,2780,0,2,t +6901,2817,4,2,f +6901,2877,71,4,f +6901,2877,15,2,f +6901,298c02,71,1,f +6901,298c02,71,1,t +6901,3003,14,1,f +6901,3004,4,1,f +6901,3009,72,1,f +6901,3010,15,1,f +6901,30137,71,4,f +6901,3020,71,4,f +6901,3020,72,2,f +6901,3021,272,3,f +6901,3022,1,3,f +6901,3022,71,2,f +6901,3023,15,2,f +6901,3023,14,1,f +6901,30292,41,4,f +6901,3031,72,1,f +6901,3034,0,1,f +6901,30350b,41,2,f +6901,3036,72,2,f +6901,3036,0,1,f +6901,30374,15,1,f +6901,30377,15,1,t +6901,30377,15,2,f +6901,3039,272,2,f +6901,3040b,71,2,f +6901,30504,272,2,f +6901,30526,72,2,f +6901,3062b,46,10,f +6901,3062b,72,4,f +6901,3062b,4,1,f +6901,3068b,0,2,f +6901,3068b,15,1,f +6901,3068b,71,4,f +6901,3069b,272,3,f +6901,3069b,72,2,f +6901,3176,71,1,f +6901,32000,72,2,f +6901,32059,72,3,f +6901,32187,71,1,f +6901,32316,0,2,f +6901,3460,14,2,f +6901,3622,72,4,f +6901,3626cpr0937,78,1,f +6901,3626cpr0963,78,1,f +6901,3626cpr0964,78,1,f +6901,3660,0,4,f +6901,3665,0,2,f +6901,3666,272,2,f +6901,3673,71,4,f +6901,3673,71,2,t +6901,3700,14,1,f +6901,3701,71,14,f +6901,3702,71,1,f +6901,3795,71,6,f +6901,3830,0,2,f +6901,3831,0,2,f +6901,3894,1,2,f +6901,3937,72,2,f +6901,3941,15,5,f +6901,40244,0,2,f +6901,4032a,15,2,f +6901,4032a,4,2,f +6901,4032a,71,2,f +6901,4032a,2,2,f +6901,4079,1,2,f +6901,4081b,4,1,f +6901,4085c,1,1,f +6901,4150,71,5,f +6901,4162,272,1,f +6901,41769,72,1,f +6901,41770,72,1,f +6901,42023,72,4,f +6901,4274,1,8,f +6901,4274,1,1,t +6901,4460b,71,2,f +6901,4460b,72,6,f +6901,4599b,4,1,f +6901,47753,272,1,f +6901,48336,15,1,f +6901,4855,0,1,f +6901,4865a,71,2,f +6901,50231,4,1,f +6901,50231,2,1,f +6901,50304,272,1,f +6901,50305,272,1,f +6901,50950,71,4,f +6901,50950,15,2,f +6901,53989,148,2,f +6901,58176,33,4,f +6901,60470a,71,7,f +6901,60475b,71,2,f +6901,60478,72,2,f +6901,60581,15,1,f +6901,60594,0,2,f +6901,6091,71,2,f +6901,6106,71,4,f +6901,61184,71,4,f +6901,6134,1,2,f +6901,61409,0,2,f +6901,61409,14,2,f +6901,6141,46,4,f +6901,6141,46,1,t +6901,6141,71,1,t +6901,6141,71,4,f +6901,6153b,272,1,f +6901,6239,272,2,f +6901,63868,0,1,f +6901,64453,41,1,f +6901,6583,0,2,f +6901,6628,0,1,f +6901,6636,272,3,f +6901,72454,0,2,f +6901,75904,71,1,f +6901,75c06,0,1,f +6901,85544,4,1,f +6901,85984,72,1,f +6901,85984,15,1,f +6901,85984,71,3,f +6901,87079,72,1,f +6901,87079,272,1,f +6901,87081,0,1,f +6901,87617,0,1,f +6901,87618,0,3,f +6901,87752,40,1,f +6901,87926,47,2,f +6901,88283,226,1,f +6901,89523,72,4,f +6901,90194,14,1,f +6901,92081,308,1,f +6901,92280,71,2,f +6901,92593,72,3,f +6901,92593,0,9,f +6901,92947,71,4,f +6901,93252,297,1,f +6901,93273,71,3,f +6901,93273,72,2,f +6901,96874,25,1,t +6901,970c00,272,1,f +6901,970c00pr0345,72,1,f +6901,970c00pr0346,0,1,f +6901,973pr2042c01,72,1,f +6901,973pr2043c01,0,1,f +6901,973pr2044c01,272,1,f +6901,98138,182,1,t +6901,98138,182,11,f +6901,98139,297,1,f +6902,11090,72,2,f +6902,11203pr0005,72,1,f +6902,11458,72,2,f +6902,11476,71,2,f +6902,11477,71,4,f +6902,12825,71,9,f +6902,14769,71,3,f +6902,14769,14,2,f +6902,15068,72,8,f +6902,15395,71,4,f +6902,15535,72,5,f +6902,15573,71,2,f +6902,2412b,179,3,f +6902,2420,71,4,f +6902,2432,71,1,f +6902,2446,2,2,f +6902,2447,47,1,t +6902,2447,47,2,f +6902,2489,72,2,f +6902,2569,71,1,f +6902,2654,71,2,f +6902,2723,71,2,f +6902,2780,0,1,f +6902,2780,0,1,t +6902,2825,71,4,f +6902,30162,71,6,f +6902,3020,71,1,f +6902,3023,46,8,f +6902,3024,46,1,t +6902,3024,46,2,f +6902,30374,19,2,f +6902,3065,46,1,f +6902,3070b,71,4,f +6902,3070b,71,1,t +6902,32013,71,2,f +6902,32062,0,6,f +6902,32123b,71,16,f +6902,32123b,71,1,t +6902,3626c,71,4,f +6902,3626cpr0747,14,1,f +6902,3626cpr0893,14,1,f +6902,3710,71,2,f +6902,3795,71,1,f +6902,3838,2,2,f +6902,3838,2,1,t +6902,3938,71,1,f +6902,3941,14,4,f +6902,3962b,0,1,f +6902,4032b,71,4,f +6902,4070,71,2,f +6902,4081b,71,6,f +6902,4151b,72,1,f +6902,41677,71,4,f +6902,42610,71,4,f +6902,4274,71,1,t +6902,4274,71,2,f +6902,43093,1,2,f +6902,43898,80,1,f +6902,44728,71,2,f +6902,4519,71,14,f +6902,4590,72,5,f +6902,4697b,71,9,f +6902,4697b,71,1,t +6902,4735,71,8,f +6902,48336,71,1,f +6902,48729b,71,5,f +6902,48729b,71,1,t +6902,50923,72,6,f +6902,52107,71,2,f +6902,53451,179,1,t +6902,53451,179,10,f +6902,53585,0,2,f +6902,57539,179,1,f +6902,59443,71,6,f +6902,59900,80,2,f +6902,60470a,71,1,f +6902,60849,71,1,t +6902,60849,71,4,f +6902,61184,71,2,f +6902,6141,179,8,f +6902,6141,179,1,t +6902,6141,36,1,t +6902,6141,36,3,f +6902,62359,179,2,f +6902,63864,71,2,f +6902,64644,71,4,f +6902,6541,71,2,f +6902,6553,71,2,f +6902,6558,1,2,f +6902,6632,71,4,f +6902,75937,179,3,f +6902,85943,72,4,f +6902,86208,71,2,f +6902,92690,71,2,f +6902,93571,72,8,f +6902,95199,72,2,f +6902,96874,25,1,t +6902,970c00,2,2,f +6902,973pr2814c01b,2,2,f +6902,98138,34,1,t +6902,98138,71,1,t +6902,98138,71,8,f +6902,98138,34,4,f +6902,98313,179,10,f +6902,98397,71,2,f +6902,99207,0,1,f +6902,99781,71,2,f +6904,2736,7,4,f +6904,2780,0,3,f +6904,2780,0,1,t +6904,2825,2,1,f +6904,2905,2,2,f +6904,32013,2,4,f +6904,32016,19,6,f +6904,32034,2,1,f +6904,32039,0,2,f +6904,32039,2,5,f +6904,32039,19,1,f +6904,32054,0,1,f +6904,32056,0,2,f +6904,32056,19,4,f +6904,32062,0,34,f +6904,32063,19,4,f +6904,32065,2,2,f +6904,32072,2,2,f +6904,32073,0,3,f +6904,32123b,7,21,f +6904,32123b,7,3,t +6904,32165,19,2,f +6904,32173,19,2,f +6904,32174,19,2,f +6904,32174,2,2,f +6904,32177,19,2,f +6904,32199,2,1,f +6904,32250,2,4,f +6904,32271,19,1,f +6904,32271,2,2,f +6904,32291,19,2,f +6904,32291,0,1,f +6904,32291,2,1,f +6904,32307,19,2,f +6904,32439apb01,2,1,f +6904,33299a,19,2,f +6904,3705,0,1,f +6904,3706,0,3,f +6904,3707,0,3,f +6904,3713,7,8,f +6904,3713,7,2,t +6904,3737,0,1,f +6904,3749,7,4,f +6904,4274,7,2,t +6904,4274,7,12,f +6904,4519,0,10,f +6904,4740,8,2,f +6904,6536,0,2,f +6904,6536,8,1,f +6904,6536,2,9,f +6904,6538b,0,3,f +6904,6553,19,2,f +6904,6558,0,2,f +6904,6587,8,2,f +6904,6632,2,14,f +6904,6632,19,4,f +6904,71509,0,5,f +6904,71509,0,7,t +6904,75c07,7,1,f +6904,75c09,7,1,f +6904,78c16,2,2,f +6904,rb00167,0,3,t +6904,rb00168,0,4,t +6904,rb00168,0,2,f +6906,2357,71,3,f +6906,2412b,0,1,f +6906,2420,71,1,f +6906,2432,15,2,f +6906,2436,0,1,f +6906,2555,72,1,f +6906,3001,15,2,f +6906,3004,1,1,f +6906,3004,15,2,f +6906,3004,4,1,f +6906,3004,71,19,f +6906,3005,1,2,f +6906,3005,15,10,f +6906,3005,0,1,f +6906,3005,71,33,f +6906,3005,4,2,f +6906,3010,0,1,f +6906,3010,4,1,f +6906,3010,1,1,f +6906,30162,72,4,f +6906,30165,0,1,f +6906,3020,15,6,f +6906,3020,71,10,f +6906,3021,71,11,f +6906,3021,15,1,f +6906,3022,15,1,f +6906,3022,71,1,f +6906,3023,15,2,f +6906,3023,73,6,f +6906,3023,4,1,f +6906,3023,71,8,f +6906,3023,0,3,f +6906,3024,71,4,f +6906,3024,73,8,f +6906,3024,15,2,f +6906,3031,71,2,f +6906,3031,2,6,f +6906,30367b,0,1,f +6906,3039,15,9,f +6906,3040b,15,3,f +6906,30414,0,1,f +6906,3045,15,9,f +6906,30602,40,1,f +6906,30603,0,1,f +6906,3062b,72,8,f +6906,3065,40,1,f +6906,3065,36,3,f +6906,3065,47,2,f +6906,3065,33,24,f +6906,3068b,1,1,f +6906,3068b,72,36,f +6906,3069b,71,1,f +6906,3069b,1,1,f +6906,3069b,72,8,f +6906,3069b,15,4,f +6906,3069b,73,1,f +6906,3070b,36,1,t +6906,3070b,33,2,t +6906,3070b,36,5,f +6906,3070b,33,12,f +6906,3070b,46,1,f +6906,3460,15,2,f +6906,3460,0,2,f +6906,3460,1,2,f +6906,3623,1,4,f +6906,3623,71,6,f +6906,3623,15,3,f +6906,3666,15,8,f +6906,3666,4,1,f +6906,3666,73,9,f +6906,3710,73,4,f +6906,3710,1,2,f +6906,3710,4,1,f +6906,3710,71,5,f +6906,3710,15,9,f +6906,3710,0,1,f +6906,3794a,1,1,f +6906,3794a,14,2,f +6906,3794a,0,1,t +6906,3794a,4,1,f +6906,3794a,15,2,f +6906,3794a,19,1,f +6906,3794a,0,3,f +6906,3795,71,5,f +6906,3795,15,3,f +6906,3839b,72,2,f +6906,3937,71,1,f +6906,3938,4,1,f +6906,3938,71,2,f +6906,3941,4,1,f +6906,3941,72,2,f +6906,3957a,71,2,f +6906,3963,71,1,f +6906,4032a,73,47,f +6906,4070,15,1,f +6906,4070,73,54,f +6906,4085c,15,2,f +6906,41539,72,8,f +6906,41769,4,1,f +6906,41770,4,1,f +6906,44661,72,1,f +6906,4589,2,4,f +6906,4589,14,1,f +6906,4740,72,2,f +6906,47905,0,1,f +6906,4865a,4,2,f +6906,4865a,71,3,f +6906,54200,47,3,f +6906,54200,15,57,f +6906,6019,72,2,f +6906,6070,40,6,f +6906,6141,71,2,f +6906,6141,70,1,t +6906,6141,70,6,f +6906,6141,15,2,f +6906,6141,14,1,t +6906,6141,14,3,f +6906,6141,15,1,t +6906,6141,4,3,f +6906,6141,4,1,t +6906,6141,1,4,f +6906,6141,71,1,t +6906,6141,1,1,t +6906,6231,4,2,f +6906,6231,71,4,f +6907,32060,7,20,f +6908,2412b,3,2,f +6908,2540,3,2,f +6908,298c02,14,2,f +6908,3010,7,1,f +6908,30170,0,1,f +6908,30325,8,1,f +6908,3039px16,8,1,f +6908,3040b,14,2,f +6908,3626bpx33,14,1,f +6908,3795,8,2,f +6908,4070,8,2,f +6908,4735,7,2,f +6908,4740,8,2,f +6908,6117,7,2,f +6908,6141,42,2,f +6908,970c00,25,1,f +6908,973pb0090c01,25,1,f +6909,2437,40,1,f +6909,2444,7,1,f +6909,2458,14,1,f +6909,2460,7,1,f +6909,2496,0,1,f +6909,2655,7,1,f +6909,3001,1,2,f +6909,3001,15,2,f +6909,3003,15,2,f +6909,3004,1,4,f +6909,3009,4,2,f +6909,3020,1,6,f +6909,3021,15,3,f +6909,3022,15,2,f +6909,3040b,4,4,f +6909,3062b,14,4,f +6909,3298,15,1,f +6909,3660,1,2,f +6909,3666,1,2,f +6909,3747b,1,2,f +6909,3795,15,2,f +6909,4070,15,2,f +6909,4286,4,4,f +6909,4740,34,1,f +6909,6041,0,1,f +6909,cre004,9999,1,f +6910,22119,3,1,f +6910,2695,3,2,f +6910,2715px1,3,1,f +6910,2716,0,1,f +6910,2723,0,4,f +6910,2780,0,18,f +6910,2825,7,2,f +6910,2825,22,2,f +6910,3069b,22,2,f +6910,32002,8,1,t +6910,32002,8,2,f +6910,32009,0,5,f +6910,32009,22,1,f +6910,32013,0,4,f +6910,32015,22,4,f +6910,32015,0,2,f +6910,32016,0,7,f +6910,32018,0,4,f +6910,32034,3,2,f +6910,32039,22,2,f +6910,32039,14,2,f +6910,32039,0,8,f +6910,32054,14,8,f +6910,32056,0,4,f +6910,32062,0,15,f +6910,32065,0,2,f +6910,32065,22,2,f +6910,32068,0,1,f +6910,32073,0,5,f +6910,32123b,7,28,f +6910,32123b,7,2,t +6910,32126,7,2,f +6910,32140,7,1,f +6910,32140,3,1,f +6910,3673,7,8,f +6910,3705,0,19,f +6910,3706,0,4,f +6910,3707,0,6,f +6910,3713,7,17,f +6910,3713,7,2,t +6910,3747b,0,2,f +6910,3749,7,16,f +6910,3749,7,1,t +6910,3942c,14,4,f +6910,4274,7,4,f +6910,4274,7,1,t +6910,4519,0,14,f +6910,6536,0,3,f +6910,6538b,0,1,f +6910,6538b,7,2,f +6910,6558,0,7,f +6910,6558,0,1,t +6910,6628,0,6,f +6910,6628,0,1,t +6910,6629,22,4,f +6910,6629,0,8,f +6910,6629,3,8,f +6910,6632,14,4,f +6910,6632,0,6,f +6910,6632,3,8,f +6910,71509,0,16,f +6910,71509,0,7,t +6910,75535,3,1,f +6910,75535,22,3,f +6910,76110c01,7,2,f +6910,76138,8,2,f +6910,78c02,22,1,f +6910,78c04,22,1,f +6910,78c08,3,2,f +6910,78c09,22,2,f +6910,tech001,9999,1,f +6911,2547,8,1,f +6911,2548,8,1,f +6911,30385,383,2,f +6911,3626bpx101,14,2,f +6911,3626bpx141,14,1,f +6911,37,383,2,f +6911,57467,383,2,f +6911,59275,0,2,f +6911,59275,1,2,f +6911,6064,2,1,f +6911,6065,2,1,f +6911,6065,4,1,f +6911,6086,0,1,f +6911,6088,15,1,f +6911,6089,0,1,f +6911,6090,33,1,f +6911,6090,4,1,f +6911,970x001,1,1,f +6911,970x024,0,1,f +6911,973pb0075c02,0,1,f +6911,973px170c01,15,1,f +6912,2419,14,1,f +6912,2555,0,2,f +6912,3020,14,1,f +6912,3069bps9,14,1,f +6912,3298,14,1,f +6912,3626bpx114,14,1,f +6912,37,383,2,f +6912,4859,0,1,f +6912,59275,1,2,f +6912,6088,15,1,f +6912,6090,0,1,f +6912,970x001,1,1,f +6912,973px170c01,15,1,f +6914,2420,0,2,f +6914,3004,15,1,f +6914,3022,71,1,f +6914,30602,4,1,f +6914,3298,1,1,f +6914,3660,15,1,f +6914,4070,15,2,f +6914,4070,15,1,t +6915,3008apb21a,15,1,f +6915,3008apb30,15,1,f +6915,3009apb23,15,1,f +6915,3009apb39,15,1,f +6915,3009apb41a,15,1,f +6915,3009apb42a,15,1,f +6915,3009apb45a,15,1,f +6915,3009apb62,15,1,f +6916,2736,7,4,f +6916,2737,15,2,f +6916,2738,1,4,f +6916,32005a,0,2,f +6917,2335pb005,4,3,f +6917,2339,0,2,f +6917,2357,6,2,f +6917,2357,4,2,f +6917,2357,378,2,f +6917,2431,4,2,f +6917,2445,8,1,f +6917,2449,19,6,f +6917,2454a,19,14,f +6917,2456,0,1,f +6917,2458,8,2,f +6917,2489,6,1,f +6917,2530,8,1,f +6917,2530,8,1,t +6917,2540,4,1,f +6917,2540,0,3,f +6917,2570,6,2,f +6917,2586,8,1,f +6917,2730,4,1,f +6917,2817,0,3,f +6917,2877,4,39,f +6917,2877,7,2,f +6917,3001,19,11,f +6917,3002,4,2,f +6917,3003,4,1,f +6917,3003,19,1,f +6917,3004,378,4,f +6917,3004,19,20,f +6917,3004,6,4,f +6917,30041,8,1,f +6917,30042,8,1,f +6917,30045,8,2,f +6917,3005,19,26,f +6917,3005,7,6,f +6917,30055,6,2,f +6917,3006,0,1,f +6917,3006,4,1,f +6917,30072,8,1,f +6917,3008,8,2,f +6917,3008,378,3,f +6917,30089,0,1,f +6917,3009,378,5,f +6917,3009,0,2,f +6917,3010,19,10,f +6917,30104,0,1,f +6917,30105,8,1,f +6917,30132,8,1,t +6917,30132,8,1,f +6917,30136,6,8,f +6917,30137,6,10,f +6917,30141,8,1,f +6917,30147,8,1,f +6917,30149,8,1,f +6917,30150,6,2,f +6917,30152pat0001,0,1,f +6917,30153,33,1,f +6917,30153,36,4,f +6917,30153,46,1,f +6917,30153,34,1,f +6917,30155,7,2,f +6917,30157,7,1,f +6917,30161,47,1,f +6917,30162,8,1,f +6917,30165,378,2,f +6917,30165,8,1,f +6917,30167,6,1,f +6917,30170,0,1,f +6917,30170,0,1,t +6917,30171,6,1,f +6917,30172,15,2,f +6917,30174,8,1,f +6917,30176,2,6,f +6917,3020,6,3,f +6917,3020,8,1,f +6917,3021,0,2,f +6917,3022,0,2,f +6917,3022,7,1,f +6917,3022,4,1,f +6917,30223,0,4,f +6917,3023,4,2,f +6917,30236,8,4,f +6917,30237a,0,2,f +6917,3024,4,12,f +6917,3024,8,2,f +6917,30271px4,7,1,f +6917,30285,7,4,f +6917,3030,8,1,f +6917,3032,8,2,f +6917,3035,4,2,f +6917,3036,8,4,f +6917,3037,0,2,f +6917,30374,0,5,f +6917,3039,0,6,f +6917,30390b,7,1,f +6917,3040b,4,18,f +6917,3040b,8,4,f +6917,3041,0,3,f +6917,3045,0,8,f +6917,3062b,14,3,f +6917,3062b,4,18,f +6917,3068b,7,1,f +6917,3068bpb0067,15,1,f +6917,32132,0,2,f +6917,32269,7,2,f +6917,3245b,19,4,f +6917,32524,8,2,f +6917,3297,0,26,f +6917,3298,0,5,f +6917,3307,19,2,f +6917,3307,0,6,f +6917,3308,19,3,f +6917,3460,19,1,f +6917,3460,0,10,f +6917,3483,0,2,f +6917,3581,19,6,f +6917,3622,378,6,f +6917,3622,0,4,f +6917,3623,0,4,f +6917,3623,19,2,f +6917,3626b,46,4,f +6917,3626bpa1,14,1,f +6917,3626bpao,14,1,f +6917,3626bpb0169,14,2,f +6917,3626bpb0182,14,1,f +6917,3626bpb0192,8,1,f +6917,3626bpr0247,14,1,f +6917,3626bpx127,14,1,f +6917,3626bpx128,14,1,f +6917,3633,4,8,f +6917,3633,6,2,f +6917,3660,378,2,f +6917,3660,19,4,f +6917,3665,4,6,f +6917,3666,0,4,f +6917,3673,7,1,t +6917,3673,7,8,f +6917,3675,0,8,f +6917,3676,4,8,f +6917,3679,7,1,f +6917,3680,0,1,f +6917,3700,8,2,f +6917,3710,8,14,f +6917,3710,0,2,f +6917,3747a,8,2,f +6917,3794a,4,3,f +6917,3795,4,1,f +6917,3795,8,4,f +6917,3829c01,4,1,f +6917,3837,8,1,f +6917,3841,8,1,f +6917,3849,0,1,t +6917,3849,0,2,f +6917,3878,0,1,f +6917,3941,0,2,f +6917,3942c,19,2,f +6917,40241,0,2,f +6917,4070,4,2,f +6917,4095,0,2,f +6917,4185,6,2,f +6917,4189440pb01,9999,1,t +6917,4189440pb02,9999,1,t +6917,4189440pb03,9999,1,t +6917,4189440pb04,9999,1,t +6917,4189440pb05,9999,1,t +6917,4189440pb06,9999,1,t +6917,4189440pb07,9999,1,t +6917,4189440pb08,9999,1,t +6917,4189440pb09,9999,1,t +6917,4189440pb10,9999,1,t +6917,4189440pb11,9999,1,t +6917,4189440pb12,9999,1,t +6917,4189440pb13,9999,1,t +6917,4189440pb14,9999,1,t +6917,4189440pb15,9999,1,t +6917,4189440pb16,9999,1,t +6917,4189440pb17,9999,1,t +6917,4189440pb18,9999,1,t +6917,4189440pb19,9999,1,t +6917,4189440pb20,9999,1,t +6917,4189440pb21,9999,1,t +6917,4189440pb22,9999,1,t +6917,4189440pb23,9999,1,t +6917,4189440pb24,9999,1,t +6917,4189440pb25,9999,1,t +6917,4189440pb26,9999,1,t +6917,4189440pb27,9999,1,t +6917,4189440pb28,9999,1,t +6917,4189445pb01,9999,1,t +6917,4189445pb02,9999,1,t +6917,4189445pb03,9999,1,t +6917,4189445pb04,9999,1,t +6917,4189445pb05,9999,1,t +6917,4189445pb06,9999,1,t +6917,4189445pb07,9999,1,t +6917,4189445pb08,9999,1,t +6917,4189445pb09,9999,1,t +6917,4189445pb10,9999,1,t +6917,4189445pb11,9999,1,t +6917,4201,8,4,f +6917,42450,0,1,f +6917,4286,0,2,f +6917,43887,8,1,f +6917,43888,4,18,f +6917,43898,0,2,f +6917,43898px2,8,2,f +6917,43899,8,2,f +6917,43900,334,1,f +6917,43903,0,2,f +6917,4445,0,4,f +6917,4495a,4,1,f +6917,45106p01,0,1,f +6917,4519,7,2,f +6917,4589,378,5,f +6917,4589,14,3,f +6917,4589,8,2,f +6917,4623,7,1,f +6917,4625,0,1,f +6917,4865a,7,3,f +6917,6019,0,4,f +6917,6020,6,1,f +6917,6093,0,1,f +6917,6111,19,10,f +6917,6112,4,1,f +6917,6112,0,2,f +6917,6122,334,1,f +6917,6125,4,4,f +6917,6126a,57,2,f +6917,6127,0,1,f +6917,6128,0,1,f +6917,6129pb01c01,0,1,f +6917,6133,36,2,f +6917,6141,47,1,f +6917,6141,0,36,f +6917,6141,0,1,t +6917,6141,46,1,t +6917,6141,47,1,t +6917,6141,46,2,f +6917,6182,19,3,f +6917,6231,4,4,f +6917,62808,60,2,f +6917,6541,8,4,f +6917,6587,8,1,f +6917,6636,8,4,f +6917,6636,4,4,f +6917,87685,4,1,t +6917,87686,4,1,t +6917,87687,4,1,f +6917,970c00,2,1,f +6917,970c00,4,3,f +6917,970c00,0,3,f +6917,970c00,8,2,f +6917,973c30,8,1,f +6917,973pa1c01,15,1,f +6917,973pa6c01,19,1,f +6917,973pb0273c01,8,2,f +6917,973pb0292c01,4,1,f +6917,973pb0293c01,2,1,f +6917,973pb0391c01,19,1,f +6917,973px181c01,0,1,f +6917,rb00186,4,2,f +6917,x268px1,15,1,t +6918,2412b,14,1,f +6918,2412b,4,1,f +6918,2423,2,2,f +6918,2432,73,1,f +6918,2446pb01,15,1,f +6918,2446px5,0,1,f +6918,2447,42,1,f +6918,2447,33,1,f +6918,2488,2,2,f +6918,2540,0,1,f +6918,30136,8,2,f +6918,30176,2,4,f +6918,3023,4,1,f +6918,3023,14,1,f +6918,3023,0,2,f +6918,3029,6,1,f +6918,30603px1,14,1,f +6918,3626bpb0046,14,1,f +6918,3626bpb0103,14,1,f +6918,3710,2,2,f +6918,3832,6,2,f +6918,4081b,0,2,f +6918,41854pb03,25,1,f +6918,41854pb05,1,2,f +6918,41855px1,73,1,f +6918,41862,25,1,f +6918,42022,8,4,f +6918,42289,8,1,f +6918,42289,0,1,f +6918,4477,6,2,f +6918,4599a,0,2,f +6918,4600,0,2,f +6918,6014b,14,4,f +6918,6014b,73,4,f +6918,6015,0,8,f +6918,6141,4,2,f +6918,6141,14,2,f +6918,x351,4,1,f +6918,x351,8,1,f +6920,71793,7,1,f +6920,x87,8,1,f +6921,2654,72,2,f +6921,4623,0,2,f +6921,4733,0,1,f +6921,4740,47,1,f +6921,4740,0,1,f +6921,51739,0,4,f +6921,6141,0,1,f +6923,10164pr0001,15,1,f +6923,10169,84,1,f +6923,11090,70,3,f +6923,11090,72,2,f +6923,11303,28,1,f +6923,11458,72,1,f +6923,11609,297,1,f +6923,11640,4,1,f +6923,13548,15,1,f +6923,14417,72,1,f +6923,14704,71,1,f +6923,15068,4,1,f +6923,15397,0,1,f +6923,15573,2,1,f +6923,15573,27,1,f +6923,15573,14,3,f +6923,15712,15,1,f +6923,15712,14,1,f +6923,16606pat0001,15,1,f +6923,18649,0,2,f +6923,18674,15,1,f +6923,18674,4,1,f +6923,18740,0,1,f +6923,19220,0,1,f +6923,2412b,4,1,f +6923,2431,15,1,f +6923,2431,41,1,f +6923,2447,47,2,f +6923,2447,40,2,f +6923,2460,72,1,f +6923,2654,0,2,f +6923,2877,71,1,f +6923,298c02,14,1,f +6923,3002,15,1,f +6923,30031,72,1,f +6923,3004,71,2,f +6923,3004,0,2,f +6923,3005,4,2,f +6923,3005,15,2,f +6923,30136,70,1,f +6923,30171,26,1,f +6923,30171,0,1,f +6923,3020,15,2,f +6923,3021,70,4,f +6923,3021,72,1,f +6923,3021,15,2,f +6923,3022,0,2,f +6923,3022,1,1,f +6923,3022,14,3,f +6923,3023,33,1,f +6923,30340,2,2,f +6923,30374,70,1,f +6923,30377,308,4,f +6923,3040b,2,8,f +6923,3040b,15,4,f +6923,3040b,4,4,f +6923,3062b,14,1,f +6923,3062b,308,2,f +6923,3062b,0,3,f +6923,3062b,15,1,f +6923,3062b,46,2,f +6923,3062b,70,2,f +6923,3065,47,6,f +6923,3068b,71,1,f +6923,3069b,0,1,f +6923,3069bpr0100,2,1,f +6923,3070b,15,2,f +6923,32125,71,1,f +6923,33183,70,5,f +6923,3623,4,1,f +6923,3623,70,4,f +6923,3623,72,1,f +6923,3626b,15,3,f +6923,3626bpr0677,14,1,f +6923,3626bpr0754a,14,1,f +6923,3626cpr0893,14,1,f +6923,3626cpr0920,14,1,f +6923,3626cpr1146,14,1,f +6923,3626cpr1162,14,1,f +6923,3626cpr1635,14,1,f +6923,3633,15,2,f +6923,3665,4,4,f +6923,3666,27,1,f +6923,3700,0,1,f +6923,3710,4,2,f +6923,3710,0,1,f +6923,3710,2,4,f +6923,3710,70,2,f +6923,3710,71,2,f +6923,3833,15,1,f +6923,3834,15,2,f +6923,3834,82,1,f +6923,3838,14,2,f +6923,3839b,71,2,f +6923,3899,4,1,f +6923,3900,71,1,f +6923,3957b,70,1,f +6923,4032a,4,3,f +6923,4032a,70,1,f +6923,4032a,2,2,f +6923,4070,2,1,f +6923,41334,320,1,f +6923,41854,4,1,f +6923,41879a,321,1,f +6923,41879a,4,1,f +6923,4345b,71,1,f +6923,4346,47,1,f +6923,4599b,14,1,f +6923,4599b,0,2,f +6923,4733,15,1,f +6923,4733,0,1,f +6923,4740,72,2,f +6923,4740,82,1,f +6923,47458,4,1,f +6923,48336,297,2,f +6923,4865b,71,1,f +6923,49668,4,2,f +6923,54200,27,1,f +6923,54200,2,1,f +6923,54200,14,1,f +6923,54200,0,2,f +6923,54200,47,3,f +6923,58176,35,1,f +6923,58176,33,1,f +6923,58176,36,1,f +6923,58176,182,1,f +6923,59900,2,1,f +6923,6140,71,1,f +6923,6141,4,6,f +6923,6141,36,4,f +6923,6141,297,6,f +6923,6141,41,1,f +6923,6141,0,4,f +6923,6158,72,2,f +6923,6231,71,2,f +6923,63868,72,2,f +6923,64644,297,1,f +6923,64644,308,2,f +6923,85984,4,1,f +6923,85984,72,2,f +6923,87580,1,1,f +6923,87580,297,1,f +6923,87580,72,1,f +6923,87994,0,1,f +6923,88072,15,1,f +6923,92593,15,4,f +6923,92842,0,1,f +6923,93160,15,1,f +6923,93223,15,1,f +6923,93273,15,1,f +6923,93555,179,4,f +6923,93559,15,2,f +6923,95343,4,1,f +6923,95344,28,1,f +6923,970c00,4,1,f +6923,970c00,379,1,f +6923,970c00pr0408,0,2,f +6923,970c00pr1057,326,1,f +6923,973pr1772c01,10,1,f +6923,973pr1800c01,73,1,f +6923,973pr2188c01,0,1,f +6923,973pr2300c01,4,1,f +6923,973pr3205c01,0,1,f +6923,973pr3388c01,326,1,f +6923,973pr3389c01,326,1,f +6923,98138,36,1,f +6923,98138,15,4,f +6923,98138pr0018,84,2,f +6923,98283,84,4,f +6923,99774,72,2,f +6923,99780,71,1,f +6923,99781,15,1,f +6926,11214,72,3,f +6926,11478,0,4,f +6926,15100,0,2,f +6926,15362,0,2,f +6926,18651,0,4,f +6926,18654,179,3,f +6926,18654,179,1,t +6926,19087,0,1,f +6926,21755,0,4,f +6926,22961,71,2,f +6926,24124,0,1,f +6926,2431,0,1,f +6926,24316,70,2,f +6926,2654,71,1,f +6926,26831,0,2,f +6926,26907,0,1,f +6926,27405,0,2,f +6926,2780,0,11,f +6926,2780,0,1,t +6926,28212,9999,1,f +6926,298c02,0,1,f +6926,298c02,0,1,t +6926,31511,0,2,f +6926,32039,0,7,f +6926,32062,4,4,f +6926,32062,0,19,f +6926,32138,0,1,f +6926,32184,0,4,f +6926,32523,0,4,f +6926,32524,0,2,f +6926,32556,19,2,f +6926,3957a,0,1,f +6926,41677,0,12,f +6926,41678,0,2,f +6926,42003,0,5,f +6926,4274,71,8,f +6926,4274,71,1,t +6926,43093,1,1,f +6926,4519,71,4,f +6926,50923,72,2,f +6926,53585,0,2,f +6926,57585,71,1,f +6926,60483,0,2,f +6926,62462,179,2,f +6926,64276,0,5,f +6926,6536,0,2,f +6926,6558,1,2,f +6926,74261,72,4,f +6926,78c03,179,1,f +6926,87080,0,1,f +6926,87082,0,2,f +6926,87086,0,1,f +6926,90613,72,2,f +6926,90616,0,2,f +6926,90639,0,2,f +6926,90661,0,2,f +6926,92907,0,1,f +6926,93550,0,1,f +6926,93550,0,1,t +6926,93571,0,4,f +6926,93575,0,2,f +6927,2419,8,1,f +6927,2432,15,1,f +6927,2456,14,3,f +6927,2456,1,1,f +6927,2456,4,1,f +6927,2458,4,2,f +6927,2460,4,1,f +6927,2479,0,2,f +6927,2550c01,6,1,f +6927,2621,4,2,f +6927,30000,8,1,f +6927,3001,14,4,f +6927,3001,1,3,f +6927,3001,4,8,f +6927,3001p0a,14,1,f +6927,3002,14,2,f +6927,3002,1,3,f +6927,3003,0,4,f +6927,3003,4,8,f +6927,3003,1,5,f +6927,3003,14,18,f +6927,3004,14,12,f +6927,3004,4,8,f +6927,3004,19,3,f +6927,3004,8,6,f +6927,3004,0,11,f +6927,3004,1,8,f +6927,3004,6,2,f +6927,3004p0a,14,1,f +6927,3005pe1,14,2,f +6927,3007,4,2,f +6927,3007,14,1,f +6927,30076,4,1,f +6927,3010,8,3,f +6927,3010,1,9,f +6927,3010,4,12,f +6927,3010,14,12,f +6927,3010,0,2,f +6927,30150,6,1,f +6927,3020,14,2,f +6927,3020,8,3,f +6927,3021,0,4,f +6927,3021,14,2,f +6927,3021,4,2,f +6927,3022,7,1,f +6927,30239,2,4,f +6927,30248,0,1,f +6927,30285,15,8,f +6927,3032,1,2,f +6927,3033,8,1,f +6927,3035,14,1,f +6927,30364,7,2,f +6927,30365,7,2,f +6927,30385,383,2,f +6927,30386,14,2,f +6927,3039,14,8,f +6927,3039,1,6,f +6927,3039,6,2,f +6927,3039,0,4,f +6927,30391,0,8,f +6927,3040b,1,2,f +6927,3062b,34,2,f +6927,3062b,46,3,f +6927,3297px5,14,1,f +6927,3297px9,15,1,f +6927,3298,0,2,f +6927,3298,1,4,f +6927,3298,14,2,f +6927,3307,4,2,f +6927,33303,14,2,f +6927,3455,4,1,f +6927,3460,7,2,f +6927,3622,8,2,f +6927,3659,8,4,f +6927,3659,14,2,f +6927,3660,4,4,f +6927,3660,1,6,f +6927,3660,14,6,f +6927,3665,4,2,f +6927,3665,0,5,f +6927,3665,14,6,f +6927,3666,7,4,f +6927,3675,1,4,f +6927,3710,14,2,f +6927,3710,8,1,f +6927,3710,7,2,f +6927,3710,1,2,f +6927,3747b,1,2,f +6927,3747b,14,3,f +6927,3747b,0,2,f +6927,3795,14,3,f +6927,3795,7,1,f +6927,3795,1,1,f +6927,3823,41,2,f +6927,3829c01,15,1,f +6927,3829c01,4,1,f +6927,3832,8,2,f +6927,3865,2,2,f +6927,3941,383,1,f +6927,3957a,383,3,f +6927,4070,15,2,f +6927,4083,383,2,f +6927,4132,4,2,f +6927,4132,1,1,f +6927,4133,15,3,f +6927,4286,14,2,f +6927,4286,1,2,f +6927,4349,4,2,f +6927,4495b,14,1,f +6927,4727,2,6,f +6927,4728,4,2,f +6927,4728,15,2,f +6927,6041,0,2,f +6927,6215,8,2,f +6927,6216p02,14,1,f +6927,6232,14,1,f +6927,6234,15,2,f +6927,6235,1,1,f +6927,6235,4,1,f +6927,6249,8,1,f +6927,6252,14,1,f +6927,6253,15,1,f +6927,71075,383,2,f +6927,73037c02,1,1,f +6927,82248,1,1,f +6927,cre001,9999,1,f +6927,cre002,9999,1,f +6927,cre003,9999,1,f +6928,33172,308,1,f +6928,3626bpr0565,14,1,f +6928,40239,71,1,f +6928,6126a,182,1,f +6928,6132,71,1,f +6928,970c00pr0123,14,1,f +6928,973pr1439c01,70,1,f +6929,2877,72,2,f +6929,3003,70,1,f +6929,3004,70,4,f +6929,3010,70,1,f +6929,30115,4,1,f +6929,3021,19,1,f +6929,3023,19,2,f +6929,3024,2,1,f +6929,3040b,70,4,f +6929,3623,2,1,f +6929,3665,70,2,f +6929,3666,2,1,f +6929,3741,2,2,f +6929,3742,5,3,f +6929,3742,5,1,t +6929,3742,15,3,f +6929,3742,15,1,t +6929,3795,70,1,f +6929,4070,70,2,f +6929,48729a,72,1,f +6931,64228,71,1,f +6932,14704,71,2,f +6932,14769pr1007,0,1,f +6932,15208,15,1,f +6932,15209,15,1,f +6932,15456,0,2,f +6932,3003,272,1,f +6932,3010,272,1,f +6932,3024,272,4,f +6932,3024,272,1,t +6932,3039,272,2,f +6932,3049b,0,2,f +6932,3660,0,2,f +6932,3710,272,1,f +6932,3960,1000,1,f +6932,4871,0,2,f +6932,48729b,0,2,f +6932,48729b,0,1,t +6932,49668,15,2,f +6932,54200,272,1,t +6932,54200,272,4,f +6932,54200,323,4,f +6932,54200,323,1,t +6932,60474,72,1,f +6932,60478,72,2,f +6932,6133,272,2,f +6932,87087,0,2,f +6932,92280,0,2,f +6932,93274,72,1,f +6933,3001,14,2,f +6933,3001,4,3,f +6933,3002,14,1,f +6933,3003,14,4,f +6933,3003,1,1,f +6933,3003,4,2,f +6933,3003pe1,14,1,f +6934,194cx1,7,1,f +6934,2399,1,1,f +6934,2413,15,2,f +6934,2415,7,3,f +6934,2421,0,2,f +6934,2431,15,1,f +6934,2437,41,1,f +6934,2445,15,1,f +6934,3003,15,1,f +6934,3003,1,1,f +6934,3010,1,1,f +6934,3020,15,3,f +6934,3021,15,2,f +6934,3022,4,1,f +6934,3022,1,1,f +6934,3023,15,1,f +6934,3024,15,2,f +6934,3034,7,1,f +6934,3039pc4,0,1,f +6934,3139,0,3,f +6934,3298,15,2,f +6934,3464,47,3,f +6934,3479,1,1,f +6934,3623,15,2,f +6934,3626apr0001,14,1,f +6934,3666,4,2,f +6934,3710,15,1,f +6934,3710,4,1,f +6934,3747a,1,1,f +6934,3794a,15,1,f +6934,3795,15,2,f +6934,3941,14,1,f +6934,3941,15,1,f +6934,4006,0,1,f +6934,4032a,4,1,f +6934,4083,4,1,f +6934,4213,15,1,f +6934,4315,15,1,f +6934,4485,4,1,f +6934,4488,15,2,f +6934,4589,7,1,f +6934,4855,15,1,f +6934,4856a,15,1,f +6934,4858,15,1,f +6934,4858,1,1,f +6934,4859,4,2,f +6934,4859,15,1,f +6934,4865a,41,4,f +6934,6141,34,1,t +6934,6141,36,2,f +6934,6141,34,1,f +6934,970c00,4,1,f +6934,973c01,1,1,f +6937,2412b,0,3,f +6937,2419,14,1,f +6937,2431,7,1,f +6937,2450,14,2,f +6937,2654,7,1,f +6937,2744,0,2,f +6937,2780,0,8,f +6937,2790,7,1,f +6937,2791,7,1,f +6937,2792,0,1,f +6937,2817,0,2,f +6937,2825,7,2,f +6937,2850a,47,2,f +6937,2851,4,2,f +6937,2852,7,2,f +6937,2853,4,2,f +6937,2854,7,2,f +6937,2905,7,1,f +6937,2905,14,4,f +6937,3022,0,1,f +6937,3023,0,2,f +6937,3023,7,2,f +6937,32001,14,1,f +6937,32002,8,5,f +6937,32002,8,1,t +6937,32007,14,6,f +6937,32013,0,8,f +6937,32014,14,2,f +6937,32017,0,2,f +6937,32018,0,2,f +6937,32028,0,2,f +6937,32034,7,1,f +6937,32062,0,4,f +6937,3460,0,3,f +6937,3623,0,4,f +6937,3647,7,2,f +6937,3648a,7,1,f +6937,3665,0,2,f +6937,3666,14,2,f +6937,3673,7,2,f +6937,3700,7,1,f +6937,3701,7,2,f +6937,3705,0,7,f +6937,3706,0,7,f +6937,3707,0,6,f +6937,3709,0,1,f +6937,3709,7,3,f +6937,3710,7,2,f +6937,3713,7,20,f +6937,3737,0,1,f +6937,3738,14,1,f +6937,3749,7,14,f +6937,3894,7,2,f +6937,3895,14,2,f +6937,3941,7,1,f +6937,4019,7,2,f +6937,4162,7,1,f +6937,4261,7,2,f +6937,4265b,7,1,t +6937,4265b,7,10,f +6937,4274,7,6,f +6937,4274,7,1,t +6937,4275b,0,2,f +6937,4442,0,2,f +6937,4519,0,1,f +6937,4531,0,2,f +6937,6536,0,3,f +6937,6536,7,4,f +6937,6538b,7,4,f +6937,6541,0,2,f +6937,6558,0,4,f +6937,6579,0,2,f +6937,6580,14,2,f +6937,6587,8,4,f +6937,6589,7,4,f +6937,6629,14,2,f +6937,6632,7,10,f +6937,6632,0,4,f +6937,680c01,0,2,f +6937,73129,7,2,f +6937,75c44,14,1,f +6937,9244,7,1,f +6938,32474pr1003,4,2,f +6938,4595,0,2,f +6938,4697b,71,4,f +6938,53451,4,8,f +6938,85861,182,4,f +6938,98313,0,8,f +6940,3022,15,2,f +6940,3710,1,2,f +6940,3839b,72,2,f +6940,6231,14,4,f +6940,88072,15,1,f +6941,12825,72,2,f +6941,3005,182,1,f +6941,30136,70,2,f +6941,3022,70,2,f +6941,3035,19,2,f +6941,3048c,70,2,f +6941,3062b,70,3,f +6941,3688,2,1,f +6941,37,297,2,f +6941,3795,1,2,f +6941,3943b,0,1,f +6941,3957a,70,1,f +6941,4032a,2,2,f +6941,43898,70,1,f +6941,4495b,4,1,f +6941,4589,70,2,f +6941,4740,2,1,f +6941,4740,0,1,f +6941,48336,71,1,f +6941,53451,15,2,f +6941,53451,15,1,t +6941,6141,25,1,t +6941,6141,25,2,f +6941,6141,70,11,f +6941,6141,70,1,t +6941,85863pr0058,2,1,f +6941,85863pr0078,148,1,f +6941,87580,70,2,f +6941,87580,28,2,f +6941,87580,19,2,f +6941,87580,4,1,f +6941,92280,71,2,f +6942,11211,19,1,f +6942,14769pr0001,15,1,f +6942,15332,15,1,f +6942,15573,71,2,f +6942,2412b,15,1,f +6942,2431,1,2,f +6942,2780,0,1,t +6942,2780,0,2,f +6942,2921,19,4,f +6942,3003,19,2,f +6942,3004,19,4,f +6942,3005,71,2,f +6942,3005,19,6,f +6942,3021,15,4,f +6942,3021,19,6,f +6942,3022,19,2,f +6942,3023,19,7,f +6942,3023,47,5,f +6942,3023,2,2,f +6942,3023,4,2,f +6942,3023,0,1,f +6942,3024,36,1,t +6942,3024,47,1,t +6942,3024,36,1,f +6942,3024,47,19,f +6942,3024,15,1,t +6942,3024,15,2,f +6942,3024,19,1,t +6942,3024,19,8,f +6942,3036,0,1,f +6942,30367c,71,1,f +6942,3065,47,4,f +6942,3070b,71,1,t +6942,3070b,19,2,f +6942,3070b,71,8,f +6942,3070b,19,1,t +6942,32000,71,2,f +6942,32028,15,11,f +6942,33291,10,2,f +6942,33291,10,1,t +6942,33320,72,2,f +6942,3622,71,2,f +6942,3623,4,1,f +6942,3666,71,1,f +6942,3710,71,3,f +6942,3710,72,3,f +6942,3710,14,1,f +6942,3794b,19,6,f +6942,4081b,4,2,f +6942,4081b,14,2,f +6942,54200,378,14,f +6942,59900,2,1,f +6942,60897,15,6,f +6942,6091,4,1,f +6942,6141,4,2,f +6942,6141,71,1,t +6942,6141,47,1,t +6942,6141,47,1,f +6942,6141,4,1,t +6942,6141,0,1,t +6942,6141,70,1,t +6942,6141,70,1,f +6942,6141,71,7,f +6942,6141,0,9,f +6942,63864,14,1,f +6942,63864,4,1,f +6942,64644,0,1,f +6944,bslot14,4,1,f +6944,bslot14,15,1,f +6944,bslot14,1,1,f +6944,bslot14,2,1,f +6944,bslot14,14,1,f +6945,x482,0,1,f +6946,96479,85,3,f +6946,96480,85,1,f +6946,96481,85,2,f +6946,96482,85,1,f +6946,96483,85,2,f +6946,96484,85,1,f +6946,96485,85,2,f +6946,96486,85,1,f +6946,96487,85,2,f +6946,96488,85,1,f +6946,96489,85,2,f +6946,96490,85,1,f +6946,96491,85,1,f +6949,11946,25,2,f +6949,11947,25,2,f +6949,12799,72,1,f +6949,15462,28,1,f +6949,18352,72,1,f +6949,2780,0,22,f +6949,2780,0,1,t +6949,32013,0,2,f +6949,32054,0,5,f +6949,32062,4,4,f +6949,32073,71,1,f +6949,32140,25,2,f +6949,32202,0,2,f +6949,32202,0,1,t +6949,32271,25,3,f +6949,32316,0,2,f +6949,32524,71,1,f +6949,32524,0,1,f +6949,32525,71,2,f +6949,32526,0,2,f +6949,32556,19,3,f +6949,32557,0,2,f +6949,3708,0,2,f +6949,3713,71,1,t +6949,3713,71,12,f +6949,41678,0,1,f +6949,43093,1,8,f +6949,43857,0,3,f +6949,4519,71,5,f +6949,4716,0,1,f +6949,55978,0,4,f +6949,56145,0,4,f +6949,60483,25,4,f +6949,60484,0,1,f +6949,64391,0,2,f +6949,64683,0,2,f +6949,6536,71,4,f +6949,6558,1,13,f +6949,6632,72,2,f +6949,78c06,179,2,f +6949,87080,0,2,f +6949,87082,71,2,f +6949,87086,0,2,f +6950,2456,1,4,f +6950,3001,1,2,f +6950,3001,15,14,f +6950,3001,4,20,f +6950,3001,14,12,f +6950,3001,0,4,f +6950,3001,47,2,f +6950,3002,14,2,f +6950,3002,1,4,f +6950,3002,15,2,f +6950,3002,0,4,f +6950,3002,4,6,f +6950,3003,15,4,f +6950,3003,14,6,f +6950,3003,0,2,f +6950,3003,4,8,f +6950,3003,1,4,f +6950,3006,4,2,f +6950,3006,1,2,f +6950,3007,4,2,f +6950,3470,2,1,f +6950,3483,0,4,f +6950,4130,4,1,f +6950,4131,14,1,f +6950,4132,4,2,f +6950,4133,14,2,f +6950,4180c02,0,2,f +6951,3020,8,1,f +6951,3023,0,2,f +6951,3034,0,1,f +6951,30608,0,1,f +6951,32064b,0,1,f +6951,3626bpb0022,14,1,f +6951,3710,0,1,f +6951,3794a,0,2,f +6951,4195292,9999,1,f +6951,43373,25,1,f +6951,43374,15,1,f +6951,43702,25,1,f +6951,45522,8,1,f +6951,973bpb159c01,7,1,f +6951,x494cx1,272,1,f +6952,3134,15,1,f +6952,996bc01,1,4,f +6952,x456c01,47,1,f +6952,x466,15,2,f +6953,3003,1,1,f +6953,3004,1,5,f +6953,3004p06,15,2,f +6953,3005,1,10,f +6953,3008,1,6,f +6953,3021,1,1,f +6953,3022,7,2,f +6953,3023,15,4,f +6953,3023,0,9,f +6953,3023,1,11,f +6953,3024,1,6,f +6953,3030,46,1,f +6953,3033,1,2,f +6953,3034,7,1,f +6953,3034,15,1,f +6953,3039p23,15,1,f +6953,3039p34,15,2,f +6953,3040b,1,2,f +6953,3062b,34,3,f +6953,3062b,36,8,f +6953,3065,46,1,f +6953,3069b,1,8,f +6953,3070b,36,2,f +6953,3149c01,1,1,f +6953,3185,1,3,f +6953,3298p90,15,1,f +6953,3460,15,1,f +6953,3460,1,2,f +6953,3622,1,2,f +6953,3626apr0001,14,3,f +6953,3666,1,1,f +6953,3679,7,1,f +6953,3680,7,1,f +6953,3703,1,1,f +6953,3705,0,1,f +6953,3706,0,1,f +6953,3709,7,1,f +6953,3710,7,2,f +6953,3749,7,1,f +6953,3761,1,2,f +6953,3762,46,2,f +6953,3794a,1,7,f +6953,3795,15,2,f +6953,3829c01,15,2,f +6953,3829c01,1,2,f +6953,3832,1,4,f +6953,3838,14,1,f +6953,3838,1,1,f +6953,3838,0,1,f +6953,3842a,0,1,f +6953,3842a,1,1,f +6953,3842a,14,1,f +6953,3876,36,4,f +6953,3937,7,4,f +6953,3938,7,4,f +6953,3941,1,3,f +6953,3941,15,3,f +6953,3942b,15,1,f +6953,3947a,7,2,f +6953,3957a,7,4,f +6953,3957a,36,2,f +6953,3958,46,2,f +6953,3959,7,6,f +6953,3959,0,1,f +6953,3959,1,4,f +6953,3959,15,2,f +6953,3960,15,4,f +6953,3962a,0,1,f +6953,3963,7,4,f +6953,3963,15,2,f +6953,4006,0,1,f +6953,4032a,0,2,f +6953,4033,1,4,f +6953,4070,15,2,f +6953,4081a,15,4,f +6953,4085a,15,2,f +6953,4085a,1,2,f +6953,4162,1,9,f +6953,4228,1,2,f +6953,4229,15,3,f +6953,4275a,0,2,f +6953,4276a,0,2,f +6953,4282,1,1,f +6953,4285a,7,2,f +6953,4286,1,4,f +6953,4287,0,6,f +6953,4287,1,4,f +6953,4360,7,1,f +6953,4447,1,8,f +6953,4475,15,1,f +6953,4476a,1,10,f +6953,4476a,7,2,f +6953,4477,1,3,f +6953,4479,7,2,f +6953,4522,0,1,f +6953,4588,0,2,f +6953,4590,7,2,f +6953,4590,1,4,f +6953,4590,15,4,f +6953,4591,15,2,f +6953,4591,0,2,f +6953,4596,1,6,f +6953,4596,15,2,f +6953,4597,7,1,f +6953,4598,15,2,f +6953,5102c12,0,2,f +6953,6141,46,2,f +6953,6141,34,8,f +6953,6141,36,12,f +6953,970c00,1,1,f +6953,970c00,14,1,f +6953,970c00,0,1,f +6953,973p90c03,0,1,f +6953,973p90c04,14,1,f +6953,973pr1594c01,1,1,f +6956,2419,72,1,f +6956,2431,72,2,f +6956,2449,320,2,f +6956,2454a,320,6,f +6956,2460,72,4,f +6956,2465,0,2,f +6956,2476a,71,4,f +6956,2780,0,35,f +6956,2780,0,3,t +6956,3001,0,4,f +6956,3002,72,5,f +6956,3003,72,8,f +6956,3004,320,8,f +6956,3010,0,4,f +6956,30181,0,1,f +6956,3020,4,2,f +6956,3020,72,7,f +6956,3021,71,3,f +6956,3022,72,8,f +6956,3023,0,2,f +6956,30249,71,2,f +6956,3030,0,2,f +6956,3031,0,1,f +6956,3032,0,1,f +6956,3033,0,4,f +6956,3034,72,2,f +6956,30363,72,2,f +6956,30363,0,4,f +6956,3039,72,2,f +6956,3049b,272,4,f +6956,30526,72,4,f +6956,30553,0,1,f +6956,3062b,320,4,f +6956,3068b,272,3,f +6956,3068b,72,7,f +6956,32001,0,1,f +6956,32013,0,7,f +6956,32018,72,2,f +6956,32018,71,1,f +6956,32034,71,1,f +6956,32039,71,18,f +6956,32054,4,2,f +6956,32062,4,5,f +6956,32073,71,3,f +6956,32123b,71,3,f +6956,32123b,71,2,t +6956,32138,0,4,f +6956,32174,272,2,f +6956,32198,71,1,f +6956,32199,72,3,f +6956,32269,71,1,f +6956,32270,71,2,f +6956,32278,0,2,f +6956,32316,0,1,f +6956,3245b,72,4,f +6956,32506,179,2,f +6956,32523,72,2,f +6956,32523,0,1,f +6956,32525,72,4,f +6956,32529,0,4,f +6956,32530,0,4,f +6956,32532,0,1,f +6956,33299a,0,6,f +6956,3622,0,2,f +6956,3648b,71,1,f +6956,3673,71,5,f +6956,3673,71,2,t +6956,3678b,71,2,f +6956,3700,0,7,f +6956,3701,0,2,f +6956,3702,0,1,f +6956,3703,0,2,f +6956,3705,0,1,f +6956,3706,0,3,f +6956,3707,0,2,f +6956,3708,0,3,f +6956,3709,71,3,f +6956,3710,0,6,f +6956,3713,71,7,f +6956,3713,71,2,t +6956,3737,0,7,f +6956,3738,71,2,f +6956,3749,19,5,f +6956,3894,0,1,f +6956,3895,0,5,f +6956,4032a,0,4,f +6956,40379,320,2,f +6956,40490,0,2,f +6956,4151b,72,2,f +6956,41539,72,1,f +6956,41677,71,2,f +6956,41764,72,1,f +6956,41765,72,1,f +6956,41767,0,2,f +6956,41768,0,2,f +6956,42003,71,2,f +6956,4202,0,1,f +6956,42023,72,4,f +6956,4274,71,2,t +6956,4274,71,4,f +6956,4286,0,2,f +6956,43093,1,4,f +6956,43710,72,1,f +6956,43711,72,1,f +6956,43713,72,2,f +6956,44033,179,8,f +6956,44567a,72,1,f +6956,4460a,320,2,f +6956,44816,179,1,f +6956,44817,179,2,f +6956,4519,71,4,f +6956,45301,0,4,f +6956,45705,272,1,f +6956,4589,71,1,f +6956,4716,71,1,f +6956,47338,135,2,f +6956,47406,0,1,f +6956,4865a,71,1,f +6956,48729a,72,16,f +6956,50304,0,1,f +6956,50305,0,1,f +6956,50451,15,2,f +6956,50858,179,2,f +6956,50915,179,2,f +6956,50923,72,2,f +6956,51663,179,2,f +6956,53451,4,6,f +6956,53451,4,2,t +6956,53568,135,1,f +6956,53569,297,2,f +6956,53583,297,2,f +6956,53587,179,1,f +6956,53588pat01,8,1,f +6956,53590pr01,320,1,f +6956,53596pr01,148,1,f +6956,53989,288,2,f +6956,53989,0,4,f +6956,53989,191,2,f +6956,53989,151,2,f +6956,53989,72,2,f +6956,53989,320,4,f +6956,54271,179,3,f +6956,54272,179,2,f +6956,54275,297,3,f +6956,54275,179,1,f +6956,54275,148,3,f +6956,54275,0,1,f +6956,54276,272,1,f +6956,54276,151,1,f +6956,54276,0,2,f +6956,54276,191,1,f +6956,54276,288,1,f +6956,54276,320,2,f +6956,54821,143,2,f +6956,54821,42,4,f +6956,55236,0,1,f +6956,55236,151,1,f +6956,55236,288,1,f +6956,55236,320,1,f +6956,55237a,179,1,f +6956,55237b,179,1,f +6956,55237c,179,1,f +6956,55237d,179,1,f +6956,55237e,179,1,f +6956,55237f,179,1,f +6956,55237g,179,1,f +6956,55237h,179,1,f +6956,55237i,179,1,f +6956,55237j,179,1,f +6956,55237k,179,1,f +6956,55237l,179,1,f +6956,55240pr0001,151,1,f +6956,56653,320,1,f +6956,56654,272,1,f +6956,56656,0,1,f +6956,56657,288,1,f +6956,56661,0,1,f +6956,59426,72,3,f +6956,6538b,71,6,f +6956,6538b,0,8,f +6956,6553,0,1,f +6956,6558,0,2,f +6956,6564,0,1,f +6956,6565,0,1,f +6956,6628,0,2,f +6956,85546,14,1,f +6957,2412b,72,1,f +6957,2412b,4,1,f +6957,2512,71,1,f +6957,2540,4,1,f +6957,2555,72,2,f +6957,2780,0,2,f +6957,2780,0,1,t +6957,2817,0,1,f +6957,2877,4,2,f +6957,3003,4,3,f +6957,3020,71,3,f +6957,3022,15,2,f +6957,3023,47,1,f +6957,3023,72,1,f +6957,30374,14,1,f +6957,30391,0,2,f +6957,3069b,0,1,f +6957,32013,72,2,f +6957,3623,15,4,f +6957,3626bpr0387,14,1,f +6957,3666,4,2,f +6957,3700,72,2,f +6957,3710,71,2,f +6957,3829c01,15,1,f +6957,3837,0,1,f +6957,3895,0,2,f +6957,43093,1,2,f +6957,44294,71,1,f +6957,44728,4,3,f +6957,4485,1,1,f +6957,45677,4,1,f +6957,47720,0,1,f +6957,4854,0,1,f +6957,4871,0,1,f +6957,50950,4,2,f +6957,54200,36,1,t +6957,54200,36,2,f +6957,55981,15,2,f +6957,56898,0,2,f +6957,56904,15,2,f +6957,61409,72,2,f +6957,6141,72,2,f +6957,6141,72,1,t +6957,62361,4,2,f +6957,63082,71,1,f +6957,63965,0,1,f +6957,6553,0,2,f +6957,7634stk01,9999,1,t +6957,84954,40,2,f +6957,970c00,2,1,f +6957,973pr1446c01,4,1,f +6958,10201,15,1,f +6958,11212,72,2,f +6958,11215,71,1,f +6958,11477,15,2,f +6958,15391,15,2,f +6958,15392,72,2,f +6958,15411,0,2,f +6958,15535,72,4,f +6958,15573,19,2,f +6958,15712,15,1,f +6958,2412b,182,4,f +6958,2420,0,2,f +6958,2540,19,3,f +6958,2654,182,3,f +6958,298c02,15,1,f +6958,3003,4,1,f +6958,30031,0,1,f +6958,3004,15,2,f +6958,3020,72,4,f +6958,3021,71,3,f +6958,3022,322,1,f +6958,3023,41,14,f +6958,3032,0,2,f +6958,3040b,71,2,f +6958,30602,47,1,f +6958,3062b,71,1,f +6958,3062b,57,1,f +6958,30663,0,1,f +6958,3069b,82,3,f +6958,3069b,47,2,f +6958,3069bpr0070,0,1,f +6958,3070b,0,1,f +6958,32000,72,4,f +6958,32013,0,2,f +6958,32062,4,4,f +6958,32064a,0,4,f +6958,32192,0,2,f +6958,3622,71,3,f +6958,3623,0,2,f +6958,3626cpr1606,14,1,f +6958,3626cpr1608,47,1,f +6958,3660,72,2,f +6958,3665,71,2,f +6958,3710,0,3,f +6958,3795,72,2,f +6958,3795,19,1,f +6958,3839b,0,2,f +6958,3937,72,4,f +6958,3960,40,1,f +6958,4032a,15,6,f +6958,41854,15,1,f +6958,4274,71,4,f +6958,4285,72,4,f +6958,4285b,41,4,f +6958,44375b,0,4,f +6958,44674,15,1,f +6958,44676,15,2,f +6958,4697b,71,1,f +6958,4735,71,2,f +6958,4740,47,1,f +6958,4740,0,2,f +6958,47455,0,2,f +6958,47456,0,6,f +6958,47457,72,1,f +6958,47458,0,2,f +6958,47755,0,3,f +6958,48169,41,2,f +6958,48170,72,2,f +6958,48336,0,1,f +6958,4865b,41,1,f +6958,4868b,15,1,f +6958,4869,71,1,f +6958,54200,46,1,f +6958,54200,182,2,f +6958,58176,41,2,f +6958,59443,0,2,f +6958,59900,182,4,f +6958,60169,72,1,f +6958,60897,15,2,f +6958,61252,0,2,f +6958,6134,0,4,f +6958,61409,0,1,f +6958,6141,46,2,f +6958,6141,182,3,f +6958,61506,19,1,f +6958,62462,15,1,f +6958,63864,0,3,f +6958,63868,71,2,f +6958,6536,72,2,f +6958,6587,28,5,f +6958,85984,71,4,f +6958,87083,72,2,f +6958,87544,40,2,f +6958,88072,71,1,f +6958,92280,0,4,f +6958,92474,41,1,f +6958,95199,72,1,f +6958,970c00,320,1,f +6958,970c00pr0805,272,1,f +6958,973pr2909c01,272,1,f +6958,973pr2911c01,320,1,f +6958,98138,179,2,f +6958,98385,0,1,f +6958,98834,0,1,f +6958,99206,0,4,f +6958,99780,15,2,f +6959,702,15,2,f +6959,702,14,2,f +6959,702,4,3,f +6959,702,1,3,f +6960,3020,0,24,f +6960,728,7,1,f +6960,729,47,1,f +6966,2433,0,2,f +6966,2516,0,1,f +6966,2516,1,1,f +6966,3959,0,2,f +6966,3962b,0,2,f +6966,4085c,0,2,f +6966,4275b,1,2,f +6966,4349,15,2,f +6966,4479,7,1,f +6966,4735,0,2,f +6966,6019,0,2,f +6966,6117,57,2,f +6966,6120,57,4,f +6966,73590c01a,0,2,f +6967,27ac01,15,1,f +6967,29ac01,15,1,f +6967,3081ac01,15,1,f +6967,3087ac01,15,1,f +6967,31ac01,15,1,f +6967,33ac01,15,1,f +6967,453ac01,15,1,f +6967,604ac01,15,1,f +6967,645ac01,15,1,f +6967,646ac01,15,1,f +6968,3004,14,4,f +6968,503c01,4,1,f +6968,fab8i,9999,1,f +6968,fabed8,15,1,f +6969,11211,71,1,f +6969,15573,72,1,f +6969,15573,15,1,f +6969,2357,19,2,f +6969,2412b,72,4,f +6969,2412b,4,1,f +6969,2431,72,2,f +6969,2431,71,2,f +6969,2431,2,1,f +6969,3001,72,5,f +6969,3004,71,2,f +6969,3005,72,3,f +6969,3009,72,1,f +6969,3010,71,3,f +6969,3020,70,3,f +6969,3020,71,5,f +6969,3021,2,1,f +6969,3023,47,12,f +6969,3023,71,9,f +6969,3023,2,5,f +6969,3023,1,5,f +6969,3023,72,4,f +6969,3023,15,2,f +6969,3024,71,10,f +6969,3024,41,1,f +6969,3024,72,1,f +6969,3024,47,7,f +6969,3024,4,1,f +6969,3024,2,4,f +6969,3028,0,4,f +6969,3031,71,2,f +6969,30414,71,2,f +6969,3068b,288,1,f +6969,3068b,72,4,f +6969,3069b,72,3,f +6969,3069b,71,12,f +6969,3069b,320,1,f +6969,3070b,71,7,f +6969,3070b,2,2,f +6969,3070b,0,4,f +6969,3070b,4,2,f +6969,3070b,72,8,f +6969,3070b,15,1,f +6969,32028,4,1,f +6969,32028,72,3,f +6969,33291,10,3,f +6969,3623,0,1,f +6969,3623,71,3,f +6969,3710,2,6,f +6969,3710,15,5,f +6969,3710,72,2,f +6969,3795,4,3,f +6969,4081b,71,1,f +6969,4162,0,7,f +6969,4162pr0038,0,1,f +6969,54200,4,1,f +6969,59900,2,5,f +6969,6141,70,7,f +6969,6141,4,2,f +6969,63864,14,1,f +6969,6636,71,1,f +6969,6636,72,2,f +6969,87087,15,8,f +6970,2412a,14,2,f +6970,2431,4,1,f +6970,2441,4,1,f +6970,2446,0,1,f +6970,2447,41,1,f +6970,2452,4,1,f +6970,3005,4,2,f +6970,3020,4,1,f +6970,3021,4,1,f +6970,3022,4,1,f +6970,3023,0,1,f +6970,3023,15,1,f +6970,3040b,15,1,f +6970,3070b,4,1,f +6970,3298p56,4,1,f +6970,3623,15,2,f +6970,3626apr0001,14,1,f +6970,3641,0,4,f +6970,3794a,4,2,f +6970,3794a,15,2,f +6970,3829c01,15,1,f +6970,4276b,4,1,f +6970,4595,0,1,f +6970,4624,15,4,f +6970,4865a,4,2,f +6970,970c00,15,1,f +6970,973p14c01,15,1,f +6971,22670,383,1,f +6971,30018,15,1,f +6971,3010,73,1,f +6971,30145,9,2,f +6971,30151a,47,1,f +6971,30153,143,1,f +6971,30153,45,1,f +6971,30218,17,1,f +6971,3035,73,1,f +6971,3307,9,2,f +6971,33286,462,4,f +6971,33291,41,1,t +6971,33291,41,1,f +6971,33322,34,1,t +6971,33322,34,1,f +6971,4032a,5,1,f +6971,6186,14,1,f +6971,6195,15,1,f +6971,6932,462,1,f +6971,6936,383,1,f +6971,skirt01,15,1,f +6971,towel,14,1,f +6971,x16,17,1,f +6971,x222,5,1,f +6973,32373,1,2,f +6973,4274,71,1,f +6973,4274,71,1,t +6973,57539pat0004,47,1,f +6973,58176,182,1,f +6973,90608,0,2,f +6973,90611,0,2,f +6973,90617,0,4,f +6973,90626,0,1,f +6973,90639,15,4,f +6973,90639pr0006,179,1,f +6973,90652,179,1,f +6973,90661,15,2,f +6973,92199,1,1,f +6973,92201,15,1,f +6973,92202,15,1,f +6973,92203,179,1,f +6973,92207,179,1,f +6973,92208,15,1,f +6973,93277,1,1,f +6973,93571,0,1,f +6973,93575,15,1,f +6974,194cx1,7,1,f +6974,2412a,0,2,f +6974,2412a,2,2,f +6974,2419,2,4,f +6974,2419,4,4,f +6974,2420,4,6,f +6974,2436,2,1,f +6974,2436,0,2,f +6974,2436,4,1,f +6974,2462,15,8,f +6974,2463,15,8,f +6974,2464,15,8,f +6974,2555,0,2,f +6974,2584,0,1,f +6974,2585,0,1,f +6974,2877,0,1,f +6974,2878c01,0,2,f +6974,2920,0,2,f +6974,298c02,15,1,f +6974,298c02,15,1,t +6974,3001,0,2,f +6974,3005,15,2,f +6974,3010,15,1,f +6974,3020,0,1,f +6974,3020,4,2,f +6974,3021,4,2,f +6974,3021,0,4,f +6974,3022,0,2,f +6974,3022,4,2,f +6974,3023,15,4,f +6974,3023,4,4,f +6974,3024,47,2,f +6974,3034,0,1,f +6974,3035,4,1,f +6974,3039pc4,0,2,f +6974,3062b,4,2,f +6974,3069b,4,2,f +6974,3069b,15,2,f +6974,3070b,36,2,f +6974,3070b,36,1,t +6974,3185,4,2,f +6974,3626bpr0001,14,1,f +6974,3710,4,1,f +6974,3710,0,2,f +6974,3710,2,1,f +6974,3787,4,1,f +6974,3794a,15,1,f +6974,3795,0,2,f +6974,3821,15,1,f +6974,3822,15,1,f +6974,3823,41,1,f +6974,3829c01,4,1,f +6974,3832,2,1,f +6974,3832,15,1,f +6974,3832,0,1,f +6974,3941pb01,15,6,f +6974,4022,0,2,f +6974,4032a,2,8,f +6974,4032a,4,6,f +6974,4032a,15,6,f +6974,4081b,4,2,f +6974,4162,15,2,f +6974,4211,4,1,f +6974,4213,15,1,f +6974,4214,15,1,f +6974,4485,4,1,f +6974,4537stk01,9999,1,t +6974,4599a,0,2,f +6974,4600,0,2,f +6974,4865a,0,2,f +6974,4865a,15,2,f +6974,6014a,15,4,f +6974,6015,0,4,f +6974,6141,4,1,t +6974,6141,4,2,f +6974,73092,0,2,f +6974,970c00,2,1,f +6974,973px130c01,15,1,f +6975,2357,15,16,f +6975,2412b,14,1,f +6975,2412b,15,4,f +6975,2412b,4,21,f +6975,2431,4,1,f +6975,2431,1,8,f +6975,2431,71,2,f +6975,2436,0,1,f +6975,2439,2,1,f +6975,2441,0,2,f +6975,2444,72,1,f +6975,2454a,15,6,f +6975,2460,71,1,f +6975,2465,0,2,f +6975,2508,0,2,f +6975,2569,71,1,f +6975,2780,0,2,t +6975,2780,0,14,f +6975,2926,0,1,f +6975,298c02,71,1,f +6975,298c02,71,1,t +6975,3001,4,1,f +6975,3001,71,2,f +6975,3002,1,5,f +6975,30027b,71,10,f +6975,30028,0,10,f +6975,3003,14,2,f +6975,3004,15,14,f +6975,3004,1,3,f +6975,3004,0,1,f +6975,3005,1,4,f +6975,3005,15,2,f +6975,3008,1,3,f +6975,3009,71,2,f +6975,3009,15,9,f +6975,3010,4,2,f +6975,30134,0,1,f +6975,30157,72,2,f +6975,3020,72,2,f +6975,3020,14,1,f +6975,3020,4,8,f +6975,3020,2,2,f +6975,3020,1,3,f +6975,3021,15,4,f +6975,3022,4,2,f +6975,3022,15,2,f +6975,3022,0,2,f +6975,3023,4,5,f +6975,3023,46,5,f +6975,3023,14,3,f +6975,3023,0,8,f +6975,3023,1,14,f +6975,30256,71,1,f +6975,30258,0,1,f +6975,3028,72,2,f +6975,3030,15,1,f +6975,3032,1,1,f +6975,3034,1,1,f +6975,3035,72,1,f +6975,3036,71,5,f +6975,3036,72,3,f +6975,30367b,15,1,f +6975,30374,0,1,f +6975,30377,0,2,f +6975,30377,0,1,t +6975,30383,71,1,f +6975,30383,72,1,f +6975,3039pr0002,15,3,f +6975,3039pr0005,15,1,f +6975,3039pr0013,15,1,f +6975,3040bpr0003,71,1,f +6975,30552,71,2,f +6975,30562,41,4,f +6975,30565,72,2,f +6975,3062b,4,2,f +6975,3062b,15,1,f +6975,3063b,15,2,f +6975,3065,47,1,f +6975,3068b,15,3,f +6975,3068b,1,10,f +6975,3069b,14,5,f +6975,3069b,15,3,f +6975,3069bpr0030,15,1,f +6975,3069bpr0090,72,1,f +6975,3070b,4,4,f +6975,3070b,4,1,t +6975,3070b,46,2,f +6975,3070b,46,1,t +6975,3245b,72,2,f +6975,3245b,4,2,f +6975,32474,0,1,f +6975,32530,72,4,f +6975,3298,72,2,f +6975,3308,15,1,f +6975,3460,1,1,f +6975,3460,4,1,f +6975,3622,14,4,f +6975,3622,1,16,f +6975,3623,4,5,f +6975,3623,0,4,f +6975,3623,15,3,f +6975,3624,0,1,f +6975,3626bpr0389,14,1,f +6975,3626bpr0498,14,1,f +6975,3626bpr0499,14,1,f +6975,3626bpr0646,14,1,f +6975,3626bpr0647,14,1,f +6975,3660,15,1,f +6975,3665,15,4,f +6975,3666,71,1,f +6975,3666,15,1,f +6975,3679,71,3,f +6975,3680,4,3,f +6975,3684,15,3,f +6975,3710,4,4,f +6975,3710,15,6,f +6975,3710,14,2,f +6975,3710,71,4,f +6975,3741,2,1,t +6975,3741,2,1,f +6975,3742,4,1,t +6975,3742,4,3,f +6975,3747b,15,2,f +6975,3788,14,4,f +6975,3794b,15,1,f +6975,3795,4,2,f +6975,3795,1,5,f +6975,3821,14,1,f +6975,3822,14,1,f +6975,3823,40,1,f +6975,3829c01,71,1,f +6975,3833,4,1,f +6975,3857,72,1,f +6975,3899,14,4,f +6975,3901,70,1,f +6975,3901,0,1,f +6975,3941,4,2,f +6975,3941,2,1,f +6975,3957a,15,1,f +6975,4032a,15,1,f +6975,4032a,4,1,f +6975,4032a,14,1,f +6975,4079,1,12,f +6975,4079,4,6,f +6975,4085c,4,1,f +6975,41539,72,1,f +6975,4162,1,1,f +6975,4162,4,4,f +6975,4175,71,16,f +6975,42022,15,4,f +6975,42445,71,2,f +6975,43093,1,1,f +6975,43121,4,2,f +6975,43337,4,1,f +6975,43337,14,2,f +6975,44126,15,3,f +6975,44301a,72,3,f +6975,44301a,71,1,f +6975,44302a,71,7,f +6975,4449,70,3,f +6975,44567a,0,1,f +6975,44567a,72,1,f +6975,44728,1,1,f +6975,4477,15,3,f +6975,4477,71,1,f +6975,4528,0,1,f +6975,4532,15,3,f +6975,4533,15,2,f +6975,4533,41,2,f +6975,4589,15,1,f +6975,4589,40,5,f +6975,4599b,14,1,f +6975,4599b,4,1,f +6975,4599b,1,1,f +6975,4623,72,2,f +6975,4624,71,10,f +6975,46667,72,2,f +6975,4740,2,1,f +6975,48092,71,2,f +6975,4864b,14,4,f +6975,4865a,14,6,f +6975,4870,71,4,f +6975,4872,41,3,f +6975,50304,71,2,f +6975,50305,71,2,f +6975,54090,4,1,f +6975,54091,4,4,f +6975,54092c01,15,1,f +6975,54093,71,1,f +6975,54094pr01,4,1,f +6975,54095,15,3,f +6975,54096,15,1,f +6975,54097,15,1,f +6975,54200,0,1,t +6975,54200,0,2,f +6975,54200,14,1,t +6975,54200,14,2,f +6975,54701c04,4,1,f +6975,57895,41,4,f +6975,58176,182,3,f +6975,59349,15,4,f +6975,59349,41,5,f +6975,59895,0,10,f +6975,6003,72,2,f +6975,60471,15,1,f +6975,60471,71,2,f +6975,60484,71,2,f +6975,60596,15,6,f +6975,60601,40,26,f +6975,6081,4,1,f +6975,61345,15,13,f +6975,6141,36,6,f +6975,6141,34,2,t +6975,6141,47,1,t +6975,6141,34,2,f +6975,6141,47,2,f +6975,6141,4,1,t +6975,6141,4,2,f +6975,6141,36,3,t +6975,61483,71,1,f +6975,6177,1,2,f +6975,6231,14,2,f +6975,62462,71,1,f +6975,63082,71,2,f +6975,63864,4,4,f +6975,64567,71,2,f +6975,64799,14,1,f +6975,6558,1,4,f +6975,6564,15,1,f +6975,6565,15,1,f +6975,6636,1,2,f +6975,73983,1,4,f +6975,85974,70,1,f +6975,87079,15,1,f +6975,87079,4,1,f +6975,87087,15,4,f +6975,87087,4,2,f +6975,87926,15,4,f +6975,92410,4,1,f +6975,970c00,7,1,f +6975,970c00,71,1,f +6975,970c00,272,1,f +6975,970c00,0,1,f +6975,970c00,25,1,f +6975,973pr1182c01,25,1,f +6975,973pr1238c01,0,1,f +6975,973pr1240c01,1,1,f +6975,973pr1517c01,73,1,f +6975,973pr1576c01,72,1,f +6979,3666,4,50,f +6981,10197,72,2,f +6981,10201,71,5,f +6981,10247,0,2,f +6981,11215,0,1,f +6981,11476,71,5,f +6981,11477,28,2,f +6981,11477,0,2,f +6981,11477,288,6,f +6981,11477,14,4,f +6981,11538pr0005,71,1,f +6981,13349,72,6,f +6981,13547,71,4,f +6981,13548,71,2,f +6981,14769pr086,71,2,f +6981,15068,71,7,f +6981,15303,36,6,f +6981,15400,72,4,f +6981,15462,28,2,f +6981,15535,28,4,f +6981,15672,71,2,f +6981,18671,72,2,f +6981,18674,15,2,f +6981,18675pr0001,71,1,f +6981,18675pr0002,40,1,f +6981,18858pr0002,10,1,f +6981,19888,0,1,f +6981,19916,0,1,f +6981,19917,0,1,t +6981,19917,0,1,f +6981,21268,72,1,f +6981,2357,0,2,f +6981,23930,71,4,f +6981,2412b,71,4,f +6981,2412b,72,7,f +6981,2412b,0,3,f +6981,2420,72,8,f +6981,2420,71,10,f +6981,24299,72,1,f +6981,24307,72,1,f +6981,2431,19,2,f +6981,2432,0,1,f +6981,2476a,71,2,f +6981,2639,72,2,f +6981,2653,0,4,f +6981,2654,71,8,f +6981,2654,46,2,f +6981,2730,15,1,f +6981,2780,0,8,f +6981,2780,0,2,t +6981,2853,71,3,f +6981,3001,0,3,f +6981,3004,72,1,f +6981,30043,0,3,f +6981,3005,0,2,f +6981,3005,19,2,f +6981,3005,40,2,f +6981,3010,72,5,f +6981,3020,19,2,f +6981,3020,288,3,f +6981,3020,71,4,f +6981,3020,0,8,f +6981,3021,0,3,f +6981,3021,72,10,f +6981,3021,71,4,f +6981,3022,71,5,f +6981,3022,19,3,f +6981,3022,72,3,f +6981,3022,0,8,f +6981,3023,288,10,f +6981,3023,1,6,f +6981,3023,36,7,f +6981,3023,71,18,f +6981,3024,46,1,t +6981,3024,71,1,t +6981,3024,72,2,f +6981,3024,46,10,f +6981,3024,71,2,f +6981,3024,72,1,t +6981,3029,71,4,f +6981,3031,71,4,f +6981,3032,71,1,f +6981,3032,0,4,f +6981,30363,72,2,f +6981,3037,0,1,f +6981,30374,36,1,f +6981,30375,72,1,f +6981,30390a,72,2,f +6981,3040b,71,4,f +6981,30503,72,2,f +6981,30552,72,3,f +6981,30565,72,2,f +6981,3068b,71,7,f +6981,3069b,14,1,f +6981,3069b,71,4,f +6981,3070b,0,2,f +6981,3070b,71,1,t +6981,3070b,0,1,t +6981,3070b,71,2,f +6981,32001,4,2,f +6981,32013,72,2,f +6981,32028,0,4,f +6981,32028,71,8,f +6981,32028,4,2,f +6981,32059,71,1,f +6981,32123b,71,2,f +6981,32123b,71,1,t +6981,32123b,14,2,f +6981,32123b,14,1,t +6981,32126,1,2,f +6981,32187,71,2,f +6981,32316,0,2,f +6981,32531,71,1,f +6981,32555,0,2,f +6981,3298,71,2,f +6981,3460,0,4,f +6981,3460,72,2,f +6981,3622,71,2,f +6981,3623,0,2,f +6981,3623,19,2,f +6981,3626cpr1617,78,1,f +6981,3626cpr1669,15,1,f +6981,3626cpr1806,78,1,f +6981,3626cpr1961,78,1,f +6981,3660,71,2,f +6981,3665,71,4,f +6981,3666,71,1,f +6981,3666,0,5,f +6981,3666,19,4,f +6981,3666,72,1,f +6981,3676,72,2,f +6981,3700,72,4,f +6981,3700,19,2,f +6981,3701,0,2,f +6981,3701,71,1,f +6981,3703,71,1,f +6981,3707,0,2,f +6981,3709,72,2,f +6981,3710,288,2,f +6981,3710,4,2,f +6981,3710,72,4,f +6981,3710,71,2,f +6981,3710,0,6,f +6981,3713,4,2,f +6981,3713,4,1,t +6981,3747b,71,4,f +6981,3747b,72,3,f +6981,3794b,71,5,f +6981,3795,4,2,f +6981,3795,71,7,f +6981,3941,28,2,f +6981,4032a,72,2,f +6981,4032a,4,2,f +6981,4070,71,2,f +6981,4081b,72,4,f +6981,4162,71,2,f +6981,41764,71,1,f +6981,41765,71,1,f +6981,41769,0,8,f +6981,41769,71,1,f +6981,41770,71,1,f +6981,41770,0,8,f +6981,42023,72,2,f +6981,42610,71,2,f +6981,4274,1,2,f +6981,4274,1,1,t +6981,4282,0,4,f +6981,4287,72,2,f +6981,43093,1,2,f +6981,43719,0,8,f +6981,43722,71,1,f +6981,43723,71,1,f +6981,44567a,72,8,f +6981,44728,72,4,f +6981,44728,15,1,f +6981,4477,72,4,f +6981,4477,0,8,f +6981,4510,71,4,f +6981,47753,288,1,f +6981,48336,71,4,f +6981,4871,71,1,f +6981,48933,71,2,f +6981,50304,72,1,f +6981,50305,72,1,f +6981,50955,71,1,f +6981,50956,71,1,f +6981,54200,36,2,f +6981,54200,28,4,f +6981,54200,71,1,t +6981,54200,28,1,t +6981,54200,36,1,t +6981,54200,71,2,f +6981,54200,288,1,t +6981,54200,288,2,f +6981,54383,71,4,f +6981,54383,72,1,f +6981,54384,71,4,f +6981,54384,72,1,f +6981,59900,71,2,f +6981,6003,72,2,f +6981,60219,71,1,f +6981,60470b,71,2,f +6981,60471,0,8,f +6981,60471,71,3,f +6981,60477,72,2,f +6981,60478,72,4,f +6981,60479,71,3,f +6981,61409,72,2,f +6981,61409,0,2,f +6981,6141,36,2,f +6981,6141,36,1,t +6981,6141,29,2,f +6981,6141,29,1,t +6981,6179,71,1,f +6981,6180,0,4,f +6981,62885,0,2,f +6981,63864,14,2,f +6981,63864,71,4,f +6981,63864,72,2,f +6981,64567,80,1,t +6981,64567,80,1,f +6981,6558,1,4,f +6981,6632,15,2,f +6981,6636,71,2,f +6981,6636,72,2,f +6981,85543,15,2,f +6981,85861,14,1,t +6981,85861,14,3,f +6981,85984,72,1,f +6981,85984,71,6,f +6981,87552,71,1,f +6981,87620,71,4,f +6981,90194,288,3,f +6981,90194,72,2,f +6981,92279,40,1,f +6981,92280,71,6,f +6981,92593,71,1,f +6981,92593,72,2,f +6981,92738,0,2,f +6981,93095,0,1,f +6981,93168,28,2,f +6981,93273,71,3,f +6981,93606,71,4,f +6981,95188,71,2,f +6981,96874,25,1,t +6981,970c00,28,1,f +6981,970c00,379,1,f +6981,970c00pr0718,0,1,f +6981,970c00pr1074,28,1,f +6981,973pr3422c01,379,1,f +6981,973pr3423c01,72,1,f +6981,973pr3439c01,0,1,f +6981,973pr3440c01,28,1,f +6981,98138,36,1,t +6981,98138,36,2,f +6981,98138,46,1,t +6981,98138,46,4,f +6981,99207,0,2,f +6981,99780,71,2,f +6981,99780,72,7,f +6981,99781,71,1,f +6982,32073,7,1,f +6982,32174,135,6,f +6982,32556,7,1,f +6982,3706,0,2,f +6982,41665,2,2,f +6982,41666,7,2,f +6982,41667,7,1,f +6982,41668,135,2,f +6982,41669,36,2,f +6982,41670,2,4,f +6982,41671pb06,135,1,f +6982,41672,0,2,f +6982,41752,8,1,f +6982,42042,7,1,f +6982,42042und,81,1,f +6982,42074,15,2,f +6982,44936,179,2,f +6982,4519,7,5,f +6982,6628,0,2,f +6982,85544,10,1,f +6982,lehvakkalcd,9999,1,f +6984,2412b,15,4,f +6984,2412b,0,5,f +6984,2431,1,1,f +6984,2432,15,2,f +6984,2432,1,1,f +6984,2436,0,2,f +6984,2445,7,1,f +6984,2454a,7,4,f +6984,2456,8,4,f +6984,2540,15,2,f +6984,2555,7,1,f +6984,2584,0,1,f +6984,2585,7,1,f +6984,3002,0,1,f +6984,3003,14,1,f +6984,3003,1,1,f +6984,30031,0,1,f +6984,30033,15,1,f +6984,3004,1,1,f +6984,3007,25,2,f +6984,3009,8,2,f +6984,3010,14,4,f +6984,30104,8,1,f +6984,30150,6,2,f +6984,30157,7,3,f +6984,30162,8,1,f +6984,30192,8,1,f +6984,30193,8,1,f +6984,30194,8,1,f +6984,3020,7,1,f +6984,3020,0,1,f +6984,3020,1,2,f +6984,30208,42,1,f +6984,30209,8,1,f +6984,3021,25,2,f +6984,3022,0,1,f +6984,3022,1,2,f +6984,30228,8,1,f +6984,3023,42,2,f +6984,3024,36,2,f +6984,30248,7,2,f +6984,30284,14,4,f +6984,30285,15,6,f +6984,30287p01,0,1,f +6984,30287p01,2,1,f +6984,30288,1,4,f +6984,3032,0,2,f +6984,30322,1,2,f +6984,30323,7,1,f +6984,30323,14,1,f +6984,3034,1,2,f +6984,3034,0,2,f +6984,3035,0,2,f +6984,30367a,25,1,f +6984,3039,7,1,f +6984,3039,25,2,f +6984,3039pr0005,15,1,f +6984,3069bpr0101,7,1,f +6984,354,33,4,f +6984,3622,25,4,f +6984,3626bp7b,14,1,f +6984,3626bp7c,14,1,f +6984,3660,25,4,f +6984,3666,0,2,f +6984,3679,7,1,f +6984,3680,1,1,f +6984,3710,0,3,f +6984,3710,25,3,f +6984,3794a,1,1,f +6984,3795,0,2,f +6984,3829c01,7,1,f +6984,3837,8,1,f +6984,3937,7,1,f +6984,3938,0,1,f +6984,3941,14,1,f +6984,3956,7,1,f +6984,3958,0,2,f +6984,3962b,8,1,f +6984,4079,4,1,f +6984,4081b,15,6,f +6984,4083,7,2,f +6984,4085c,1,2,f +6984,4150p01,15,1,f +6984,4176,33,1,f +6984,4213,0,1,f +6984,4215b,15,1,f +6984,4286,0,2,f +6984,4287,8,4,f +6984,4479,7,1,f +6984,4485,2,1,f +6984,4485,1,1,f +6984,4589,57,1,f +6984,4599a,15,2,f +6984,4623,15,7,f +6984,4625,0,1,f +6984,4864b,33,4,f +6984,6019,15,2,f +6984,6112,0,2,f +6984,6120,7,4,f +6984,6141,36,2,t +6984,6141,34,2,f +6984,6141,42,7,f +6984,6141,36,3,f +6984,6141,34,2,t +6984,6141,42,3,t +6984,6153apx2,25,1,f +6984,6520stk01,9999,1,t +6984,6564,25,1,f +6984,6565,25,1,f +6984,6583,0,2,f +6984,6636,1,3,f +6984,71965,0,2,f +6984,73983,15,2,f +6984,970x026,1,1,f +6984,970x026,2,1,f +6984,973p7ac01,0,1,f +6984,973p7bc01,2,1,f +6984,rb00164,0,1,f +6984,x206c01,15,1,f +6985,14226c31,0,2,f +6985,2339,4,2,f +6985,2357,15,4,f +6985,2357,14,2,f +6985,2412b,71,4,f +6985,2420,71,10,f +6985,2420,4,4,f +6985,2431,4,4,f +6985,2431,70,4,f +6985,2431,15,6,f +6985,2431,71,4,f +6985,2431,0,4,f +6985,2432,1,3,f +6985,2435,2,1,f +6985,2436,0,3,f +6985,2445,0,1,f +6985,2456,15,7,f +6985,2458,71,4,f +6985,2458,14,2,f +6985,2465,15,1,f +6985,2465,4,2,f +6985,2476a,15,2,f +6985,2780,0,3,t +6985,2780,0,37,f +6985,2878,0,2,f +6985,3001,15,4,f +6985,3001,0,6,f +6985,3002,15,4,f +6985,3002,0,4,f +6985,3003,15,2,f +6985,3004,14,3,f +6985,3004,15,18,f +6985,3004,72,5,f +6985,3004,4,2,f +6985,3004,0,4,f +6985,3005,33,8,f +6985,3005,71,6,f +6985,3005,4,10,f +6985,3005,0,22,f +6985,3006,4,2,f +6985,3006,15,4,f +6985,3006,71,6,f +6985,3007,0,3,f +6985,3008,15,13,f +6985,3008,4,2,f +6985,3009,4,1,f +6985,3009,14,9,f +6985,3009,15,8,f +6985,3009,71,4,f +6985,3010,4,2,f +6985,3010,72,3,f +6985,3010,15,5,f +6985,3010,70,2,f +6985,3010,0,2,f +6985,30157,72,4,f +6985,3020,0,5,f +6985,3020,1,2,f +6985,3021,71,4,f +6985,3021,0,7,f +6985,3021,1,2,f +6985,3021,4,3,f +6985,3022,72,2,f +6985,3022,71,3,f +6985,3023,14,2,f +6985,3023,4,7,f +6985,3023,1,12,f +6985,3023,0,8,f +6985,3023,2,12,f +6985,3024,0,4,f +6985,3028,0,2,f +6985,3029,72,2,f +6985,30296,72,2,f +6985,3030,1,2,f +6985,3031,0,4,f +6985,3032,4,1,f +6985,3032,72,4,f +6985,3032,1,9,f +6985,3033,71,1,f +6985,3034,1,2,f +6985,3034,19,4,f +6985,3034,0,5,f +6985,3034,72,7,f +6985,3035,1,4,f +6985,3035,0,1,f +6985,3036,1,2,f +6985,3036,4,1,f +6985,3036,0,2,f +6985,30363,71,8,f +6985,3037,14,2,f +6985,3037,4,35,f +6985,3038,4,6,f +6985,3039,4,10,f +6985,3039,2,4,f +6985,30391,0,4,f +6985,3040b,4,2,f +6985,3040b,2,16,f +6985,3040b,33,4,f +6985,3040b,0,4,f +6985,3040b,14,2,f +6985,3041,4,6,f +6985,30414,14,2,f +6985,30414,4,2,f +6985,30414,0,2,f +6985,3045,4,4,f +6985,3046b,4,6,f +6985,3048c,4,3,f +6985,3049b,4,1,f +6985,30562,71,4,f +6985,30565,72,4,f +6985,30648,0,4,f +6985,3065,33,40,f +6985,30663,0,1,f +6985,3068b,14,2,f +6985,3068b,0,5,f +6985,3069b,4,2,f +6985,3069b,36,4,f +6985,3069b,0,26,f +6985,3069b,15,8,f +6985,3070b,71,1,t +6985,3070b,71,6,f +6985,3070b,15,2,f +6985,3070b,15,1,t +6985,32000,0,8,f +6985,32000,72,2,f +6985,32001,14,2,f +6985,32002,72,1,t +6985,32002,72,8,f +6985,32013,71,16,f +6985,32034,71,10,f +6985,32034,4,2,f +6985,32039,4,5,f +6985,32054,0,12,f +6985,32056,0,6,f +6985,32062,4,34,f +6985,32064b,14,4,f +6985,32073,71,4,f +6985,32123b,14,1,t +6985,32123b,14,13,f +6985,32125,71,2,f +6985,32184,71,8,f +6985,32270,0,2,f +6985,32291,71,3,f +6985,32316,0,1,f +6985,32316,71,2,f +6985,32449,0,2,f +6985,32524,0,6,f +6985,32525,0,4,f +6985,32525,14,1,f +6985,32526,0,5,f +6985,32556,19,1,f +6985,3298,14,1,f +6985,3460,71,5,f +6985,3460,0,10,f +6985,3460,14,2,f +6985,3460,72,2,f +6985,3460,1,12,f +6985,3470,2,2,f +6985,3471,2,2,f +6985,3622,15,10,f +6985,3622,14,5,f +6985,3623,14,2,f +6985,3623,71,4,f +6985,3623,4,6,f +6985,3626bpr0001,14,1,f +6985,3660,70,18,f +6985,3665,4,8,f +6985,3665,14,4,f +6985,3665,15,6,f +6985,3665,70,4,f +6985,3666,72,14,f +6985,3666,4,5,f +6985,3666,14,5,f +6985,3666,0,1,f +6985,3700,70,4,f +6985,3700,0,2,f +6985,3701,0,3,f +6985,3701,14,3,f +6985,3705,0,11,f +6985,3706,0,1,f +6985,3707,0,7,f +6985,3708,0,2,f +6985,3709,72,8,f +6985,3710,71,3,f +6985,3710,1,7,f +6985,3710,0,23,f +6985,3710,15,2,f +6985,3710,14,6,f +6985,3713,71,3,t +6985,3713,71,13,f +6985,3737,0,3,f +6985,3741,2,4,f +6985,3742,5,4,t +6985,3742,5,12,f +6985,3749,19,6,f +6985,3794a,71,2,f +6985,3794a,15,4,f +6985,3795,1,7,f +6985,3795,71,7,f +6985,3795,0,2,f +6985,3832,70,3,f +6985,3832,4,3,f +6985,3855,47,2,f +6985,3857,72,2,f +6985,3861b,272,1,f +6985,3894,4,1,f +6985,3937,0,2,f +6985,3941,15,7,f +6985,3941,72,44,f +6985,3941,14,6,f +6985,3941,0,2,f +6985,3941,4,14,f +6985,3941,42,7,f +6985,3943b,15,2,f +6985,3943b,72,7,f +6985,3958,0,1,f +6985,3958,71,2,f +6985,4022,0,1,f +6985,4032b,15,7,f +6985,4032b,4,7,f +6985,4032b,2,7,f +6985,4032b,0,5,f +6985,4079,0,2,f +6985,41239,14,1,f +6985,41239,4,4,f +6985,41239,0,4,f +6985,41539,72,3,f +6985,41539,143,5,f +6985,4162,15,6,f +6985,4162,4,2,f +6985,4162,14,8,f +6985,4162,0,4,f +6985,4176,40,1,f +6985,42003,0,6,f +6985,4274,1,1,t +6985,4274,1,10,f +6985,4285b,15,1,f +6985,4286,71,8,f +6985,43093,1,22,f +6985,43857,0,4,f +6985,44294,71,1,f +6985,44728,4,3,f +6985,4477,72,6,f +6985,44822,0,1,f +6985,4519,71,25,f +6985,4519599,9999,1,f +6985,4589,15,2,f +6985,46413,40,1,f +6985,47905,19,4,f +6985,48092,71,4,f +6985,4864b,40,4,f +6985,4865a,33,22,f +6985,50950,0,6,f +6985,50950,14,8,f +6985,50967,0,2,f +6985,50990a,71,1,f +6985,52031,14,1,f +6985,52031,4,2,f +6985,53401,72,4,f +6985,54095,15,4,f +6985,54200,36,2,f +6985,56902,71,8,f +6985,57051,383,2,f +6985,57878,0,4,f +6985,59443,4,1,f +6985,59443,71,21,f +6985,6083,72,4,f +6985,6091,4,6,f +6985,6093,0,1,f +6985,6111,70,2,f +6985,6111,14,5,f +6985,6134,0,2,f +6985,6141,57,4,f +6985,6141,47,2,f +6985,6141,47,1,t +6985,6141,57,1,t +6985,6231,0,3,f +6985,6251pr0002,15,1,f +6985,6536,0,6,f +6985,6541,15,2,f +6985,6556,0,2,f +6985,6558,1,30,f +6985,6629,0,6,f +6985,6632,0,16,f +6985,6636,71,2,f +6985,6636,4,3,f +6985,6636,70,2,f +6985,75535,15,16,f +6985,75535,0,8,f +6985,78c16,179,6,f +6985,85545,15,2,f +6985,970c00,25,1,f +6985,973pr0805c01,15,1,f +6985,rb00170,1,2,f +6986,11371,484,1,f +6986,13530,73,2,f +6986,13531pr0001,0,1,f +6986,13532,73,1,f +6986,13969,4,1,f +6986,13970,4,2,f +6986,13973,73,1,f +6986,14211,4,1,f +6986,15847,41,1,f +6986,19796,0,1,f +6986,3011,191,1,f +6986,3011,10,2,f +6986,31170,4,1,f +6986,3437,14,2,f +6986,3437,191,3,f +6986,3437,73,1,f +6986,40666,10,2,f +6986,41969,0,1,f +6986,47510pr0001,29,1,f +6986,51704,191,1,f +6986,52381,4,1,f +6986,58498,14,1,f +6986,61649,14,1,f +6986,6378,72,12,f +6986,63871,4,2,f +6986,6427,25,1,f +6986,6474,4,1,f +6986,6510,25,1,f +6986,76371,1,1,f +6986,87084,73,2,f +6986,90265,15,1,f +6986,98465,1,1,f +6987,2431,0,1,f +6987,2436,0,3,f +6987,3020,72,2,f +6987,3021,0,1,f +6987,3023,36,1,f +6987,3031,0,2,f +6987,3034,4,1,f +6987,30602,0,1,f +6987,3660,0,1,f +6987,3666,0,2,f +6987,3710,0,2,f +6987,47457,72,2,f +6987,47753,0,2,f +6987,50943,80,1,f +6987,50944pr0001,0,4,f +6987,50947,0,4,f +6987,50951,0,4,f +6987,54200,0,2,f +6987,6157,0,2,f +6987,6636,0,2,f +6988,700ex,15,1,f +6988,700ex,2,1,f +6988,700ex,7,1,f +6988,700ex,14,1,f +6988,700ex,4,1,f +6988,700ex,1,1,f +6989,30556,110,1,f +6989,30598,22,1,f +6989,30600pb07,373,1,f +6989,30602pb011,373,1,f +6989,racerbase,110,1,f +6989,rb00168,0,2,f +6991,3004,1,1,f +6991,3068b,15,1,f +6991,3622,1,1,f +6991,3795,72,1,f +6991,3899,4,1,f +6991,3899,4,1,t +6992,10201,71,2,f +6992,11153,14,4,f +6992,11211,4,2,f +6992,11215,71,1,f +6992,11458,72,2,f +6992,11477,14,4,f +6992,11477,15,2,f +6992,11477,71,4,f +6992,15068,0,1,f +6992,2412b,72,4,f +6992,2420,72,2,f +6992,2432,72,1,f +6992,2456,0,1,f +6992,2780,0,2,f +6992,2780,0,1,t +6992,2904,0,1,f +6992,3001,72,1,f +6992,3002,71,1,f +6992,3004,72,2,f +6992,3020,0,2,f +6992,3021,72,4,f +6992,3021,14,8,f +6992,3022,71,1,f +6992,3022,14,2,f +6992,3023,14,2,f +6992,3023,36,4,f +6992,3023,72,2,f +6992,3023,0,3,f +6992,3034,72,2,f +6992,30383,0,2,f +6992,30553,71,2,f +6992,3062b,71,2,f +6992,3069b,71,1,f +6992,32000,72,3,f +6992,32062,0,2,f +6992,32064b,71,3,f +6992,32271,4,2,f +6992,3460,14,2,f +6992,3623,71,2,f +6992,3659,71,1,f +6992,3665,14,2,f +6992,3673,71,2,f +6992,3673,71,1,t +6992,3705,0,1,f +6992,3710,71,1,f +6992,3713,4,1,t +6992,3713,4,8,f +6992,3794b,15,2,f +6992,3795,71,2,f +6992,4032a,71,5,f +6992,41669,47,2,f +6992,4287,71,2,f +6992,43093,1,4,f +6992,43722,14,2,f +6992,43723,14,2,f +6992,43857,4,2,f +6992,44728,15,2,f +6992,4519,71,2,f +6992,4740,72,2,f +6992,48336,71,2,f +6992,48933,15,1,f +6992,55976,0,4,f +6992,56145,71,4,f +6992,59426,72,2,f +6992,59443,0,4,f +6992,6005,14,4,f +6992,60485,71,1,f +6992,6091,14,4,f +6992,6141,47,1,t +6992,6141,47,2,f +6992,6141,0,1,t +6992,6141,0,2,f +6992,63864,71,2,f +6992,64225,0,1,f +6992,64799,71,2,f +6992,6541,72,2,f +6992,85545,1,1,f +6992,85984,71,1,f +6992,87083,72,2,f +6992,88072,0,2,f +6992,93606,0,2,f +6992,99207,71,4,f +6992,99780,72,3,f +6992,99781,0,2,f +6993,3005,29,1,f +6993,3022,4,2,f +6993,3023,25,2,f +6993,3023,14,1,f +6993,3023,73,1,f +6993,3023,1,2,f +6993,3023,2,4,f +6993,3062b,19,1,f +6993,33122,42,1,f +6993,3665,2,8,f +6993,3941,70,1,f +6993,3942c,2,1,f +6993,4287,288,8,f +6993,54200,2,6,f +6993,60474,4,1,f +6993,60474,320,1,f +6993,6141,46,10,f +6994,2654,4,1,f +6994,3004,70,2,f +6994,30173a,179,1,f +6994,30177,0,1,f +6994,3022,70,1,f +6994,30374,297,1,f +6994,3626bpr0745,14,1,f +6994,4497,148,1,f +6994,4612919,9999,1,f +6994,4613788,9999,1,f +6994,4617053,9999,1,f +6994,4617054,9999,1,f +6994,4617055,9999,1,f +6994,60897,0,1,f +6994,87747,297,1,f +6994,92547pr0009,297,1,f +6994,92690,297,1,f +6994,93794,4,1,f +6994,970c00pb104,0,1,f +6994,973pr1751c01,0,1,f +6995,2348b,41,1,f +6995,2349a,14,1,f +6995,2357,0,1,f +6995,2412b,15,1,f +6995,2431,14,1,f +6995,2432,4,1,f +6995,2432,14,1,f +6995,2433,0,1,f +6995,2435,2,4,f +6995,2449,0,1,f +6995,2453a,7,1,f +6995,2453a,0,1,f +6995,2454a,7,1,f +6995,2489,6,2,f +6995,2508,0,1,f +6995,2524,6,1,f +6995,2540,0,1,f +6995,2546,8,1,f +6995,2549,6,1,f +6995,2555,15,1,f +6995,2610,14,1,f +6995,2614,0,1,f +6995,2654,0,1,f +6995,2877,7,1,f +6995,2926,0,1,f +6995,298c02,4,1,f +6995,3001,0,1,f +6995,3001,7,1,f +6995,3003,0,1,f +6995,3003,15,1,f +6995,3004,6,1,f +6995,3004,4,1,f +6995,3004,0,8,f +6995,3005,6,6,f +6995,3005,4,1,f +6995,3005,0,10,f +6995,3005,7,1,f +6995,3009,0,1,f +6995,3009,4,2,f +6995,3009,7,1,f +6995,3010,7,1,f +6995,3010,0,3,f +6995,3020,0,1,f +6995,3020,7,1,f +6995,3020,14,2,f +6995,3021,4,1,f +6995,3021,7,2,f +6995,3022,0,1,f +6995,3023,0,1,f +6995,3023,15,1,f +6995,3023,1,1,f +6995,3023,7,4,f +6995,3023,14,2,f +6995,3024,14,4,f +6995,3024,36,2,f +6995,3024,0,2,f +6995,3024,47,2,f +6995,3030,7,1,f +6995,3032,7,1,f +6995,3034,8,1,f +6995,3040b,7,1,f +6995,3062b,7,1,f +6995,3068b,14,1,f +6995,3069b,6,1,f +6995,3070b,33,1,f +6995,3081cc01,14,2,f +6995,309p02,2,1,f +6995,3460,0,2,f +6995,3581,6,9,f +6995,3582,4,2,f +6995,3622,0,5,f +6995,3623,0,2,f +6995,3623,14,4,f +6995,3626bp02,14,1,f +6995,3626bp7e,14,1,f +6995,3629,7,1,f +6995,3641,0,2,f +6995,3660,0,2,f +6995,3666,15,1,f +6995,3684,7,4,f +6995,3710,14,3,f +6995,3730,0,1,f +6995,3788,4,2,f +6995,3794a,4,1,f +6995,3794a,14,1,f +6995,3795,1,1,f +6995,3795,2,1,f +6995,3821,14,1,f +6995,3822,14,1,f +6995,3823,41,1,f +6995,3829c01,4,1,f +6995,3829c01,7,1,f +6995,3836,6,1,f +6995,3841,8,1,f +6995,3861b,14,1,f +6995,3899,14,2,f +6995,3937,7,1,f +6995,3938,4,1,f +6995,4032a,2,3,f +6995,4032a,14,2,f +6995,4070,14,2,f +6995,4079,1,1,f +6995,4081b,7,3,f +6995,4085c,4,1,f +6995,4212b,4,1,f +6995,4213,14,1,f +6995,4286,7,2,f +6995,4315,14,1,f +6995,4349,7,1,f +6995,4444,7,1,f +6995,4449,6,1,f +6995,4479,7,1,f +6995,4485,4,1,f +6995,4491b,4,1,f +6995,4493c01pb01,6,1,f +6995,4515p03,7,2,f +6995,4528,0,1,f +6995,4589,46,1,f +6995,4600,7,2,f +6995,4624,7,2,f +6995,4625,14,1,f +6995,4854,7,1,f +6995,4855,7,1,f +6995,4859,14,1,f +6995,4862,41,4,f +6995,4863,14,2,f +6995,4871,7,1,f +6995,56823,0,1,f +6995,6014a,7,4,f +6995,6015,0,4,f +6995,6019,7,2,f +6995,6020,6,1,f +6995,6064,2,1,f +6995,6079,15,1,f +6995,6082,8,1,f +6995,6083,8,1,f +6995,6112,0,1,f +6995,6117,7,1,f +6995,6141,47,2,f +6995,6141,4,2,f +6995,6141,46,2,f +6995,6141,1,2,f +6995,6141,36,2,f +6995,970c00,7,1,f +6995,970c00,1,1,f +6995,973p73c01,2,1,f +6995,973px2c01,1,1,f +6996,10126,326,1,f +6996,10127,326,1,f +6996,10247,71,2,f +6996,11153,1,4,f +6996,11203,19,1,f +6996,11212,71,2,f +6996,11215,0,1,f +6996,11477,1,2,f +6996,13547,0,2,f +6996,14210,15,1,f +6996,15462,28,1,f +6996,16427,326,1,f +6996,16428,326,1,f +6996,16429,326,1,f +6996,2412b,0,2,f +6996,2420,1,2,f +6996,2479,0,1,f +6996,2540,0,2,f +6996,2654,46,3,f +6996,2780,0,2,f +6996,2817,0,1,f +6996,30000,71,1,f +6996,3004,4,3,f +6996,3009,4,3,f +6996,3010,71,1,f +6996,3020,71,2,f +6996,3020,72,5,f +6996,3021,4,4,f +6996,3021,0,2,f +6996,3022,72,4,f +6996,3023,27,3,f +6996,3023,71,8,f +6996,30332,0,2,f +6996,3034,71,2,f +6996,3062b,27,2,f +6996,3068b,72,2,f +6996,3069b,72,3,f +6996,3069b,1,2,f +6996,3070b,1,4,f +6996,32000,71,4,f +6996,32016,0,2,f +6996,32028,0,1,f +6996,32054,0,2,f +6996,32062,4,1,f +6996,32064b,72,9,f +6996,32123b,71,2,f +6996,32523,72,2,f +6996,32532,0,1,f +6996,3298,71,2,f +6996,3460,4,1,f +6996,3622,4,2,f +6996,3623,72,1,f +6996,3623,1,6,f +6996,3626cpr0966,4,1,f +6996,3626cpr1384,78,1,f +6996,3626cpr1385,70,1,f +6996,3660,0,4,f +6996,3665,72,6,f +6996,3666,72,7,f +6996,3666,71,2,f +6996,3700,0,4,f +6996,3705,0,1,f +6996,3710,4,4,f +6996,3713,71,2,f +6996,3747b,72,1,f +6996,3747b,4,2,f +6996,3749,19,1,f +6996,3794b,1,1,f +6996,3795,4,1,f +6996,3832,72,1,f +6996,4032a,71,1,f +6996,40490,72,2,f +6996,4070,71,2,f +6996,41677,71,2,f +6996,41769,72,1,f +6996,41769,71,1,f +6996,41770,72,1,f +6996,41770,71,1,f +6996,41770,0,2,f +6996,42023,4,2,f +6996,4274,71,6,f +6996,4282,4,1,f +6996,43093,1,8,f +6996,44676,72,2,f +6996,44728,1,1,f +6996,4477,1,2,f +6996,4519,71,2,f +6996,45301,1,1,f +6996,45705,40,1,f +6996,46667,72,2,f +6996,47406,0,1,f +6996,47457,72,1,f +6996,50373,4,1,f +6996,50745,4,2,f +6996,50943,71,1,f +6996,52501,0,2,f +6996,54383,71,1,f +6996,54384,71,1,f +6996,58176,15,4,f +6996,58176,35,2,f +6996,59426,72,1,f +6996,59443,71,1,f +6996,59900,34,2,f +6996,6081,4,2,f +6996,6091,72,2,f +6996,61072,179,1,f +6996,61184,71,6,f +6996,61409,72,2,f +6996,61409,27,2,f +6996,6141,46,2,f +6996,6141,27,4,f +6996,6141,41,10,f +6996,6141,179,2,f +6996,6232,72,1,f +6996,62696,320,1,f +6996,62743,0,2,f +6996,63864,0,1,f +6996,6587,28,2,f +6996,6636,4,2,f +6996,71155,15,1,f +6996,85984,1,2,f +6996,87079,1,1,f +6996,87079,71,1,f +6996,87083,72,4,f +6996,88517,72,2,f +6996,90194,71,1,f +6996,92280,71,2,f +6996,92579,40,1,f +6996,92593,72,2,f +6996,92946,72,2,f +6996,92946,1,2,f +6996,93606,72,2,f +6996,970c00,272,1,f +6996,970c00,1,1,f +6996,970c00,0,1,f +6996,973pr2047c01,1,1,f +6996,973pr2626c01,0,1,f +6996,973pr2705c01,191,1,f +6996,98138,71,2,f +6996,99207,0,1,f +6997,12708pr02,47,2,f +6997,3003,82,14,f +6997,3003,28,14,f +6997,3065,46,12,f +6999,2420,0,4,f +6999,2450,0,2,f +6999,3004,0,1,f +6999,3020,0,2,f +6999,3021,0,6,f +6999,3021,14,1,f +6999,3022,0,1,f +6999,3023,0,5,f +6999,3024,14,3,f +6999,3024,0,9,f +6999,3623,14,4,f +6999,3623,0,6,f +6999,3666,0,5,f +6999,4070,0,2,f +6999,54200,0,7,f +6999,6141,47,2,f +6999,73983,0,12,f +7000,3218,4,2,f +7000,3443c02,4,1,f +7000,699,1,1,f +7000,trainsig2,4,1,f +7000,x466c11,15,1,f +7000,x489,4,1,f +7001,11097,179,1,f +7001,11100,0,2,f +7001,11127,41,1,f +7001,12550pr0003,0,1,f +7001,12825,0,2,f +7001,30031,72,1,f +7001,3004,72,1,f +7001,3023,71,1,f +7001,3626cpr1131,0,1,f +7001,3660,72,1,f +7001,3794b,320,3,f +7001,3795,0,1,f +7001,50950,0,1,f +7001,54200,36,1,t +7001,54200,36,2,f +7001,6014b,0,4,f +7001,6019,72,1,f +7001,6091,71,1,f +7001,6157,0,2,f +7001,87697,0,4,f +7001,970c00pr0439,0,1,f +7001,973pr2241c01,0,1,f +7001,98138,41,1,f +7001,98138,41,1,t +7001,99780,72,2,f +7003,11939,4,1,f +7003,13164,25,1,f +7003,13165,14,1,f +7003,15515,27,1,f +7003,19419,4,1,f +7003,2302,5,2,f +7003,2302,322,2,f +7003,24996,25,1,f +7003,25186,14,1,f +7003,25187,14,1,f +7003,44524,27,1,f +7003,44524,4,1,f +7003,98223,4,1,f +7003,98224,10,1,f +7003,98224,85,1,f +7003,98252,27,2,f +7004,30000,7,5,f +7004,3007,14,2,f +7004,32001,0,2,f +7004,32013,7,1,f +7004,32034,15,1,f +7004,3700,1,1,f +7004,3706,0,1,f +7004,3708,0,2,f +7004,3713,7,4,f +7004,3749,19,3,f +7004,3895,4,6,f +7004,4287,15,1,f +7004,54821,42,6,f +7004,55981,14,1,f +7004,59426,72,2,f +7004,92402,0,1,f +7005,15,0,2,f +7005,15,15,1,f +7005,17,15,1,f +7005,17,1,1,f +7005,3002a,4,1,f +7005,3002a,47,1,f +7005,3002a,0,2,f +7005,3002apb04,0,2,f +7005,3003,4,2,f +7005,3004,14,1,f +7005,3004,0,1,f +7005,3004,4,17,f +7005,3004,47,2,f +7005,3004p60,15,1,f +7005,3005,0,3,f +7005,3005,4,22,f +7005,3008,0,3,f +7005,3008,4,9,f +7005,3009,0,1,f +7005,3009,4,7,f +7005,3010,0,2,f +7005,3010,4,12,f +7005,3010p11,14,1,f +7005,3010pb035e,0,1,f +7005,3021,15,1,f +7005,3023,4,5,f +7005,3024,0,2,f +7005,3024,4,2,f +7005,3030,1,4,f +7005,3030,0,1,f +7005,3031,0,1,f +7005,3037,47,2,f +7005,3069a,14,1,f +7005,3081cc01,14,2,f +7005,3137c01,0,2,f +7005,3139,0,4,f +7005,3297,1,6,f +7005,3298,1,2,f +7005,3299,1,2,f +7005,3300,1,1,f +7005,3471,2,1,f +7005,3579,4,1,f +7005,3581,4,4,f +7005,3582,14,2,f +7005,3624,0,1,f +7005,3625,0,1,f +7005,3626a,14,2,f +7005,3644,14,2,f +7005,3659,4,7,f +7005,374,2,1,f +7005,7930,14,1,f +7006,26562,15,1,f +7006,3626cpr1924,92,1,f +7006,88646pr0002,15,1,f +7006,92081,0,1,f +7006,970c00pr1053,0,1,f +7006,973pr3380c01,15,1,f +7007,64892,151,1,f +7009,32203,4,5,f +7009,32203,0,15,f +7009,32204,4,4,f +7009,32205,4,2,f +7009,32206,4,4,f +7009,32207,8,12,f +7009,32208,0,2,f +7009,32209,15,8,f +7009,32213,0,2,f +7009,32214,0,4,f +7009,32214,4,8,f +7009,32216,4,7,f +7009,32218,4,1,f +7009,32221,8,2,f +7009,32229,0,7,f +7009,case10,0,1,f +7009,zbb013,22,30,f +7009,zbb014,7,22,f +7009,zbb015,0,10,f +7009,zbb015,4,5,f +7009,zbb018,14,13,f +7009,zbb022,0,8,f +7010,11211,71,1,f +7010,2357,1,2,f +7010,2412b,14,1,f +7010,2431,71,3,f +7010,2431,4,2,f +7010,2445,4,2,f +7010,2495,4,1,f +7010,2496,0,1,f +7010,2508,0,1,f +7010,2926,0,2,f +7010,3002,0,1,f +7010,3003,19,9,f +7010,3004,4,4,f +7010,3004,19,9,f +7010,3005,14,2,f +7010,3008,1,4,f +7010,3009,4,5,f +7010,3009,71,6,f +7010,3010,71,4,f +7010,3010,1,1,f +7010,3010,4,1,f +7010,3010,14,1,f +7010,3020,0,3,f +7010,3021,14,1,f +7010,3021,4,2,f +7010,3022,72,2,f +7010,3023,4,3,f +7010,3023,1,6,f +7010,3023,14,7,f +7010,3024,4,4,f +7010,3032,1,3,f +7010,3032,4,1,f +7010,30357,0,2,f +7010,3036,1,5,f +7010,30414,14,14,f +7010,3068b,19,9,f +7010,3068b,4,1,f +7010,3069b,71,2,f +7010,3069b,19,9,f +7010,3070b,14,1,f +7010,3070b,4,2,f +7010,32028,0,4,f +7010,32064b,2,1,f +7010,3245b,14,4,f +7010,3245b,71,4,f +7010,3622,71,2,f +7010,3622,14,2,f +7010,3624,0,1,f +7010,3626cpr0499,14,1,f +7010,3626cpr0677,14,1,f +7010,3626cpr0893,14,1,f +7010,3660,4,2,f +7010,3666,4,4,f +7010,3666,1,2,f +7010,3666,14,2,f +7010,3710,72,9,f +7010,3710,0,1,f +7010,3710,14,1,f +7010,3710,4,2,f +7010,3794b,4,2,f +7010,3794b,0,14,f +7010,3795,1,4,f +7010,3821,4,1,f +7010,3822,4,1,f +7010,3829c01,0,1,f +7010,3832,14,1,f +7010,3899,4,1,f +7010,4070,1,20,f +7010,4079,0,1,f +7010,4176,47,1,f +7010,41879a,272,1,f +7010,4282,71,1,f +7010,4488,71,4,f +7010,4735,71,2,f +7010,47457,14,3,f +7010,50745,0,2,f +7010,50950,4,4,f +7010,52031,4,1,f +7010,54200,4,2,f +7010,54200,1,10,f +7010,58380,71,4,f +7010,58381,71,4,f +7010,59349,71,8,f +7010,60032,4,2,f +7010,6014b,4,8,f +7010,60474,4,5,f +7010,60479,14,4,f +7010,60583a,71,2,f +7010,60601,47,2,f +7010,6091,4,2,f +7010,6141,36,4,f +7010,6141,47,2,f +7010,61485,0,1,f +7010,6191,14,18,f +7010,62810,484,1,f +7010,63082,0,1,f +7010,63864,1,2,f +7010,63864,71,2,f +7010,6553,72,1,f +7010,6636,71,11,f +7010,85974,70,1,f +7010,87087,4,2,f +7010,87697,0,8,f +7010,88072,4,2,f +7010,91988,0,1,f +7010,970c00,70,1,f +7010,970c00,1,1,f +7010,973pr1163c01,272,1,f +7010,973pr1576c01,72,1,f +7010,973pr1617c01,2,1,f +7010,98138,15,1,f +7010,99206,71,1,f +7011,2431,72,2,f +7011,2445,70,1,f +7011,2446,272,1,f +7011,2454a,72,4,f +7011,2458,71,2,f +7011,2587pb08,73,1,f +7011,3004,71,2,f +7011,3004,112,1,f +7011,3004,72,2,f +7011,3004,70,5,f +7011,3005,72,2,f +7011,3008,71,4,f +7011,30104,72,2,f +7011,3023,70,1,f +7011,30237a,72,2,f +7011,30293,132,1,f +7011,30294,132,1,f +7011,3030,70,1,f +7011,3034,70,1,f +7011,3034,0,2,f +7011,3035,70,1,f +7011,3040b,71,2,f +7011,3040b,72,4,f +7011,3048c,112,6,f +7011,32000,0,4,f +7011,3245b,71,2,f +7011,3245b,72,2,f +7011,3308,72,1,f +7011,3626bpb0217,14,2,f +7011,3626bpr0351,14,1,f +7011,3626bpr0353,14,1,f +7011,3647,71,1,f +7011,3665,72,2,f +7011,3684,72,4,f +7011,3700,71,2,f +7011,3701,72,2,f +7011,3710,70,1,f +7011,3737,0,1,f +7011,3743,71,1,f +7011,3749,19,4,f +7011,3832,70,2,f +7011,3846pb17,151,1,f +7011,3848,0,2,f +7011,3957a,71,1,f +7011,4151b,70,1,f +7011,4162,72,2,f +7011,43899,72,2,f +7011,4460a,71,2,f +7011,44728,71,2,f +7011,44728,0,1,f +7011,4495a,112,2,f +7011,4588,135,4,f +7011,4740,57,1,f +7011,48486,73,1,f +7011,48493,0,2,f +7011,48495,179,1,f +7011,48495,134,1,f +7011,53347pb01,134,2,f +7011,6111,71,2,f +7011,6192,70,2,f +7011,6222,70,4,f +7011,6538b,70,2,f +7011,71015,334,1,f +7011,970x023,72,1,f +7011,970x140,73,1,f +7011,970x154,0,2,f +7011,973c40,73,1,f +7011,973pb0346c01,71,1,f +7011,973pb0347c01,0,2,f +7013,11153,72,2,f +7013,11212,71,1,f +7013,11455,0,1,f +7013,11458,72,3,f +7013,2340,15,1,f +7013,2412b,0,4,f +7013,2444,4,4,f +7013,2445,72,2,f +7013,2446,15,1,f +7013,2447,40,1,f +7013,2458,71,4,f +7013,2460,71,4,f +7013,2479,0,1,f +7013,2516,14,2,f +7013,2654,71,2,f +7013,2654,0,2,f +7013,2655,71,1,f +7013,2780,0,1,f +7013,2877,71,1,f +7013,298c02,14,2,f +7013,3001,14,2,f +7013,3002,0,2,f +7013,3003,72,1,f +7013,3004,4,3,f +7013,30055,72,3,f +7013,3006,4,1,f +7013,3008,72,1,f +7013,3009,72,2,f +7013,3009,4,3,f +7013,3010,72,1,f +7013,30165,72,5,f +7013,30192,72,1,f +7013,3020,72,11,f +7013,3021,15,4,f +7013,3022,4,2,f +7013,3023,33,1,f +7013,3023,15,2,f +7013,30236,72,2,f +7013,3024,33,4,f +7013,3029,0,1,f +7013,3032,15,1,f +7013,30332,0,1,f +7013,3034,15,1,f +7013,30367b,0,1,f +7013,30374,14,2,f +7013,30377,0,2,f +7013,30592,72,1,f +7013,3062b,14,1,f +7013,30663,0,1,f +7013,32012,14,1,f +7013,32034,0,1,f +7013,32530,72,1,f +7013,3464,72,1,f +7013,3626cpr0754,14,1,f +7013,3626cpr1664,14,1,f +7013,3673,71,1,f +7013,3700,72,1,f +7013,3701,15,2,f +7013,3710,4,1,f +7013,3795,72,1,f +7013,3834,320,1,f +7013,3839b,15,2,f +7013,3941,0,1,f +7013,3941,15,2,f +7013,3958,72,2,f +7013,3960,15,2,f +7013,4032a,15,2,f +7013,4032a,2,2,f +7013,4032a,4,2,f +7013,4150,71,1,f +7013,41539,71,1,f +7013,4274,1,2,f +7013,44126,72,1,f +7013,4445,4,2,f +7013,4460b,71,1,f +7013,44728,72,4,f +7013,4488,71,2,f +7013,45406,4,1,f +7013,4589,14,2,f +7013,4599b,14,1,f +7013,46103,41,1,f +7013,4624,15,2,f +7013,47457,1,5,f +7013,4868b,72,2,f +7013,4869,71,2,f +7013,50305,15,1,f +7013,54200,33,3,f +7013,56823c50,0,1,f +7013,58176,36,1,f +7013,59895,0,2,f +7013,60032,4,1,f +7013,60583b,4,2,f +7013,60598,14,1,f +7013,60601,41,5,f +7013,61100c01,71,1,f +7013,6126b,182,2,f +7013,6126b,41,2,f +7013,61345,4,2,f +7013,6141,0,2,f +7013,62743,0,4,f +7013,64644,71,1,f +7013,6636,72,4,f +7013,85941,15,2,f +7013,85959pat0001,36,1,f +7013,85984,0,1,f +7013,87079,71,2,f +7013,87083,72,1,f +7013,87552,4,2,f +7013,87615,4,1,f +7013,87616,4,1,f +7013,87619,72,1,f +7013,90194,72,2,f +7013,92582,0,1,f +7013,92946,4,4,f +7013,93589,72,1,f +7013,95347,0,1,f +7013,970c00pr0408,0,2,f +7013,973pr1976c01,4,1,f +7013,973pr2188c01,0,1,f +7013,98138,46,1,f +7013,99206,71,2,f +7014,2412b,1,1,f +7014,2540,8,2,f +7014,2653,7,4,f +7014,298c02,14,1,f +7014,298c02,14,1,t +7014,3005,0,1,f +7014,30132,8,1,t +7014,30132,8,1,f +7014,30148,0,1,f +7014,30153,36,1,f +7014,30167,6,1,f +7014,30169,0,1,f +7014,30176,2,1,f +7014,3020,19,4,f +7014,3023,8,1,f +7014,3030,7,1,f +7014,30383,8,1,f +7014,3048c,0,1,f +7014,30553,8,1,f +7014,3062b,8,2,f +7014,3069bp02,7,1,f +7014,3455,7,1,f +7014,3460,7,2,f +7014,3626bpa3,14,1,f +7014,3626bpr0895,15,1,f +7014,3626bpx32,14,1,f +7014,3666,7,2,f +7014,3794a,15,1,f +7014,3795,7,2,f +7014,4162,1,2,f +7014,4460a,8,2,f +7014,4477,0,4,f +7014,4485,1,1,f +7014,4510,0,2,f +7014,4859,0,1,f +7014,6126a,57,2,f +7014,6141,15,2,f +7014,6141,15,1,t +7014,970c00,0,1,f +7014,970c00,1,1,f +7014,973pb0391c01,19,1,f +7014,973px64c01,15,1,f +7015,2496,0,1,f +7015,2655,14,1,f +7015,3020,14,1,f +7015,3020,1,1,f +7015,3021,14,1,f +7015,3021,1,2,f +7015,3039,47,1,f +7015,3747b,4,1,f +7015,6141,36,1,f +7015,6141,34,1,f +7016,11055,71,1,f +7016,11153,15,2,f +7016,11477,71,2,f +7016,15573,272,2,f +7016,2412b,15,2,f +7016,2450,15,2,f +7016,2540,72,3,f +7016,2817,0,2,f +7016,3001,72,1,f +7016,3004,72,1,f +7016,3021,71,1,f +7016,3023,33,2,f +7016,3069b,33,1,f +7016,3660,0,1,f +7016,3710,72,2,f +7016,3795,0,1,f +7016,4081b,72,2,f +7016,44302a,0,1,f +7016,44567a,72,1,f +7016,44568,71,2,f +7016,44676,272,2,f +7016,4595,0,1,f +7016,47456,272,1,f +7016,51739,272,2,f +7016,54200,0,1,f +7016,54200,36,1,t +7016,54200,0,1,t +7016,54200,36,2,f +7016,58176,36,2,f +7016,60470a,71,2,f +7016,60471,0,4,f +7016,60478,15,4,f +7016,61184,71,2,f +7016,93606,272,1,f +7017,2431,15,1,f +7017,2431,27,8,f +7017,2432,0,1,f +7017,2486,0,1,f +7017,2555,0,2,f +7017,2653,0,2,f +7017,2730,0,1,f +7017,2780,0,5,f +7017,2780,0,3,t +7017,3001,72,1,f +7017,3002,27,8,f +7017,3003,27,1,f +7017,3004,27,5,f +7017,30041,0,1,f +7017,30042,0,1,f +7017,30088,72,1,f +7017,3009,27,3,f +7017,30170,72,2,f +7017,30170,72,1,t +7017,3020,27,2,f +7017,3023,27,4,f +7017,3024,47,5,f +7017,30325,1,2,f +7017,3034,0,5,f +7017,3035,0,2,f +7017,30363,72,2,f +7017,30367b,15,2,f +7017,30385,36,3,f +7017,3039,72,4,f +7017,3040b,27,1,f +7017,30663,0,2,f +7017,3068b,0,1,f +7017,3070bpr0007,71,1,t +7017,3070bpr0007,71,1,f +7017,32013,0,1,f +7017,32039,71,2,f +7017,32054,0,3,f +7017,32064b,4,2,f +7017,32138,0,8,f +7017,32449,71,4,f +7017,32532,0,1,f +7017,3460,0,1,f +7017,3622,72,2,f +7017,3623,15,2,f +7017,3626bpr0557,14,1,f +7017,3626bpr0561,14,1,f +7017,3639,72,2,f +7017,3640,72,2,f +7017,3660,27,4,f +7017,3666,27,2,f +7017,3701,15,1,f +7017,3701,72,1,f +7017,3702,71,4,f +7017,3706,0,1,f +7017,3749,19,2,f +7017,3794b,71,1,f +7017,3829c01,15,1,f +7017,3832,15,1,f +7017,3837,72,1,f +7017,3841,72,1,f +7017,3941,27,4,f +7017,3960,27,7,f +7017,40244,0,1,f +7017,4032a,4,1,f +7017,4032a,1,3,f +7017,4070,15,2,f +7017,4081b,72,1,f +7017,4150,71,4,f +7017,41530,25,1,f +7017,4176,40,1,f +7017,42610,71,2,f +7017,4274,1,12,f +7017,4274,1,3,t +7017,43093,1,4,f +7017,4510,71,2,f +7017,4519,71,1,f +7017,4597,15,1,f +7017,48336,15,1,f +7017,48989,71,2,f +7017,50946,0,2,f +7017,50950,27,4,f +7017,50951,0,2,f +7017,53989,0,1,f +7017,54200,36,1,t +7017,54200,36,2,f +7017,54200,182,3,t +7017,54200,182,6,f +7017,57539,25,2,f +7017,59426,72,2,f +7017,6019,15,1,f +7017,60470a,15,1,f +7017,60470a,0,2,f +7017,60476,0,1,f +7017,61068,27,2,f +7017,6126a,57,1,f +7017,61403,71,2,f +7017,61409,27,9,f +7017,6141,47,1,t +7017,6141,47,4,f +7017,61780,72,2,f +7017,6222,71,2,f +7017,6232,15,1,f +7017,6249,72,4,f +7017,64711,0,12,f +7017,64728,4,1,f +7017,6587,72,2,f +7017,6629,25,2,f +7017,85049pat01,36,1,f +7017,85204,72,1,f +7017,85205,72,1,f +7017,970c00pr0122,1,2,f +7017,973pr1432c01,71,1,f +7017,973pr1433c01,71,1,f +7018,11477,72,6,f +7018,11478,0,2,f +7018,12825,72,6,f +7018,15379,0,60,f +7018,15379,0,2,t +7018,2654,71,6,f +7018,2825,71,2,f +7018,2877,72,6,f +7018,298c02,71,1,t +7018,298c02,71,2,f +7018,3001,72,1,f +7018,3002,71,1,f +7018,3022,71,3,f +7018,3023,182,8,f +7018,3023,484,1,f +7018,30375,484,1,f +7018,30376,484,1,f +7018,30377,484,1,t +7018,30377,0,4,f +7018,30377,484,1,f +7018,30377,0,1,t +7018,30378,484,1,f +7018,3039,72,3,f +7018,3069b,72,2,f +7018,32000,71,2,f +7018,32001,71,1,f +7018,32039,71,1,f +7018,32054,0,3,f +7018,32062,4,4,f +7018,32064a,0,2,f +7018,32073,71,1,f +7018,32123b,14,4,f +7018,32123b,14,1,t +7018,32138,0,2,f +7018,32449,0,6,f +7018,32523,0,2,f +7018,3626cpr0666,78,1,f +7018,3626cpr1149,78,1,f +7018,3648b,72,3,f +7018,3700,72,10,f +7018,3708,0,1,f +7018,3713,4,1,t +7018,3713,4,1,f +7018,3747b,72,3,f +7018,3795,0,4,f +7018,3832,0,1,f +7018,3960,72,2,f +7018,4032a,1,8,f +7018,4070,72,4,f +7018,41677,4,2,f +7018,4274,71,6,f +7018,4274,71,1,t +7018,43093,1,2,f +7018,44375b,71,2,f +7018,4519,71,4,f +7018,4595,0,2,f +7018,4697b,71,4,f +7018,4740,71,2,f +7018,50990b,72,2,f +7018,57899,0,1,f +7018,58247,0,1,f +7018,59230,484,1,f +7018,59230,484,1,t +7018,59443,0,2,f +7018,59900,0,6,f +7018,60474,71,2,f +7018,60849,71,2,f +7018,60849,71,1,t +7018,61184,71,4,f +7018,61189pr0012,15,1,f +7018,61190c,72,4,t +7018,6141,182,1,t +7018,6141,182,2,f +7018,62462,0,2,f +7018,63586,72,1,f +7018,63586,72,3,t +7018,63864,72,2,f +7018,63965,0,4,f +7018,64802,179,1,f +7018,6553,72,2,f +7018,6589,19,2,f +7018,6589,19,1,t +7018,85984,0,2,f +7018,87087,71,6,f +7018,87610pr0002a,179,1,f +7018,87618,71,6,f +7018,92593,71,4,f +7018,93606,71,2,f +7018,970c00pr0508,379,1,f +7018,970x026,15,1,f +7018,973pr2223c01,15,1,f +7018,973pr2359c01,72,1,f +7020,3003,4,1,f +7020,3004,7,1,f +7020,3004,15,1,f +7020,3004p0b,14,1,f +7020,3005,14,2,f +7020,3022,0,1,f +7020,3022,15,1,f +7020,3040b,15,2,f +7020,3040b,4,2,f +7020,3660,7,1,f +7020,3665,4,1,f +7020,4286,4,2,f +7021,3008apb21a,15,1,f +7021,3008apb29,15,1,f +7021,3008apb32,15,1,f +7021,3008apb34,15,1,f +7021,3008apb36,15,1,f +7021,3009apb23,15,1,f +7021,3009apb41a,15,1,f +7021,3009apb62,15,1,f +7022,92218,179,2,f +7022,92222,148,2,f +7022,92235pat0002,0,2,f +7023,3003,14,10,f +7023,3004,14,6,f +7023,3005,14,2,f +7023,3009,14,1,f +7023,3010,14,7,f +7023,3010,0,2,f +7023,3020,14,11,f +7023,3021,14,12,f +7023,3022,14,4,f +7023,3023,14,13,f +7023,3030,14,3,f +7023,3031,0,1,f +7023,3032,14,1,f +7023,3034,14,4,f +7023,3039,14,3,f +7023,3040a,0,2,f +7023,3460,14,6,f +7023,3482,7,4,f +7023,3634,0,4,f +7023,3647,7,1,t +7023,3647,7,4,f +7023,3648a,7,2,f +7023,3650a,7,1,f +7023,3651,7,2,f +7023,3651,7,1,t +7023,3660,14,3,f +7023,3666,14,1,f +7023,3673,7,15,f +7023,3673,7,1,t +7023,3679,7,6,f +7023,3680,14,6,f +7023,3700,14,15,f +7023,3701,14,10,f +7023,3702,14,6,f +7023,3703,14,4,f +7023,3705,0,4,f +7023,3706,0,4,f +7023,3707,0,1,f +7023,3709,14,1,f +7023,3710,14,7,f +7023,3713,7,14,f +7023,3736,7,2,f +7023,3737,0,3,f +7023,3737,0,1,t +7023,3738,14,1,f +7023,3743,7,8,f +7024,2446pb13,1,1,f +7024,2447,40,1,t +7024,2447,40,1,f +7024,2540,8,1,f +7024,2540,73,2,f +7024,3022,0,1,f +7024,3023,73,2,f +7024,3626bpb0055,14,1,f +7024,41855pb05,73,1,f +7024,42289,8,1,f +7024,43719,1,1,f +7024,44674,1,1,f +7024,44675,0,1,f +7024,4600,0,1,f +7024,6014b,73,4,f +7024,6015,0,4,f +7024,6141,15,2,f +7024,6141,15,1,t +7024,x351,0,1,f +7026,53551,148,3,f +7026,98562,148,2,f +7026,98566,35,1,f +7027,3008,2,25,f +7028,3021,4,4,f +7028,3022,4,4,f +7028,3023,4,16,f +7028,3031,4,2,f +7028,3032,4,2,f +7028,3033,4,2,f +7028,32001,4,2,f +7028,3460,4,4,f +7028,3623,4,8,f +7028,3666,4,4,f +7028,3709,4,8,f +7028,3710,4,8,f +7028,3738,4,4,f +7028,4477,4,4,f +7029,16816,321,1,f +7029,19906pr0001,14,1,f +7029,3068bpr0253,15,1,f +7029,88646,0,1,f +7029,970x321,14,1,f +7029,973pr2977c01,321,1,f +7031,298c02,14,1,f +7031,3004,0,1,f +7031,3020,0,1,f +7031,3021,14,1,f +7031,3022,14,1,f +7031,3023,7,1,f +7031,3062b,0,2,f +7031,3069b,0,1,f +7031,3626apr0001,14,1,f +7031,3639,0,1,f +7031,3640,0,1,f +7031,3710,14,1,f +7031,3795,14,1,f +7031,3829c01,14,1,f +7031,3833,4,1,f +7031,3839b,7,1,f +7031,4070,14,2,f +7031,4079,14,1,f +7031,4080,14,1,f +7031,4084,0,6,f +7031,4275b,14,2,f +7031,4531,14,2,f +7031,4600,0,3,f +7031,4624,14,6,f +7031,4859,14,1,f +7031,6141,0,1,t +7031,6141,0,2,f +7031,6141,47,2,f +7031,970c00,1,1,f +7031,973pb0201c01,15,1,f +7032,2412b,71,2,f +7032,2431,71,3,f +7032,2436,71,1,f +7032,2444,0,1,f +7032,2540,0,1,f +7032,2555,71,2,f +7032,2780,0,1,t +7032,2780,0,1,f +7032,2921,72,1,f +7032,3001,72,2,f +7032,3001,27,2,f +7032,3002,0,1,f +7032,3002,27,1,f +7032,3003,19,2,f +7032,3003,27,1,f +7032,3005,72,1,f +7032,3009,15,1,f +7032,3010,72,2,f +7032,3010,0,1,f +7032,3020,0,1,f +7032,3020,27,1,f +7032,3021,72,3,f +7032,3022,27,1,f +7032,3022,72,2,f +7032,3023,27,1,f +7032,3023,0,2,f +7032,3024,46,1,f +7032,3031,72,1,f +7032,3034,71,1,f +7032,30350b,72,1,f +7032,3062b,4,2,f +7032,3068b,19,2,f +7032,3068b,71,3,f +7032,3069b,33,1,f +7032,3069bpr0100,2,2,f +7032,32028,71,2,f +7032,32054,0,2,f +7032,32123b,71,2,f +7032,32123b,71,1,t +7032,32278,71,1,f +7032,32557,71,2,f +7032,3623,27,4,f +7032,3706,0,2,f +7032,3710,0,1,f +7032,3788,72,1,f +7032,3794b,1,2,f +7032,3794b,27,4,f +7032,3795,72,2,f +7032,3832,0,1,f +7032,3957a,71,2,f +7032,4085c,71,2,f +7032,41862,71,1,f +7032,4274,71,6,f +7032,4274,71,1,t +7032,43093,1,2,f +7032,44674,72,1,f +7032,44728,27,1,f +7032,44728,0,1,f +7032,50944pr0001,0,10,f +7032,50947,27,2,f +7032,50950,27,3,f +7032,50951,0,6,f +7032,51011,0,4,f +7032,59443,72,2,f +7032,6019,0,1,f +7032,60581,15,1,f +7032,6141,182,2,f +7032,6141,182,1,t +7032,6157,0,5,f +7032,6180,71,2,f +7032,62113,0,1,f +7032,64700,14,1,f +7032,86501,72,1,f +7032,87079,15,1,f +7033,3736,7,1,f +7033,4185,7,2,f +7033,4265a,7,4,f +7033,71509,0,2,f +7033,9244,7,1,f +7033,rb00168,0,2,f +7034,10190,4,2,f +7034,11476,71,1,f +7034,15712,72,2,f +7034,2446,4,1,f +7034,30031,71,1,f +7034,30088,0,2,f +7034,30090,41,1,f +7034,30090,41,1,t +7034,30091,72,1,f +7034,30093,10,1,f +7034,30153,41,2,f +7034,3020,0,1,f +7034,3021,72,1,f +7034,3023,47,1,f +7034,3023,71,2,f +7034,3626cpr0499,14,1,f +7034,4032a,19,1,f +7034,41769,14,1,f +7034,41770,14,1,f +7034,41854,72,1,f +7034,4274,1,1,t +7034,4274,1,2,f +7034,48729b,0,2,f +7034,48729b,0,1,t +7034,6041,0,2,f +7034,6086,320,1,f +7034,6141,42,2,f +7034,6141,42,1,t +7034,87618,71,2,f +7034,93606,14,1,f +7034,970c00pr0827,0,1,f +7034,973pr2955c01,0,1,f +7034,98302,72,2,f +7034,98313,72,2,f +7035,2362a,40,2,f +7035,2362b,15,1,f +7035,2412b,72,5,f +7035,2412b,0,10,f +7035,2412b,15,6,f +7035,2419,15,1,f +7035,2431,0,1,f +7035,2431,15,4,f +7035,2431,71,4,f +7035,2432,71,1,f +7035,2446,15,1,f +7035,2447,40,1,f +7035,2447,40,1,t +7035,2453a,15,3,f +7035,2454a,15,3,f +7035,2456,15,1,f +7035,2465,15,2,f +7035,2486,15,1,f +7035,2486,14,1,f +7035,2555,72,1,f +7035,2555,71,5,f +7035,2569,72,2,f +7035,2569,72,2,t +7035,2736,71,1,f +7035,2780,0,1,t +7035,2780,0,4,f +7035,2877,15,4,f +7035,2877,72,8,f +7035,2877,0,2,f +7035,2926,0,2,f +7035,298c02,71,2,f +7035,298c02,71,1,t +7035,3001,14,2,f +7035,3001,15,3,f +7035,3003,15,7,f +7035,3003,72,2,f +7035,3003,0,1,f +7035,30031,0,1,f +7035,3004,0,2,f +7035,3004,15,3,f +7035,3005,15,19,f +7035,30055,72,3,f +7035,3008,15,6,f +7035,3009,72,2,f +7035,3009,15,4,f +7035,3010,15,5,f +7035,3010,14,1,f +7035,30134,0,1,f +7035,3020,15,3,f +7035,3020,71,4,f +7035,3021,0,1,f +7035,3022,15,3,f +7035,3022,1,3,f +7035,3023,14,3,f +7035,3023,72,4,f +7035,3023,1,4,f +7035,3023,47,2,f +7035,30236,71,4,f +7035,30237a,14,4,f +7035,3024,36,16,f +7035,3024,15,7,f +7035,3027,72,1,f +7035,3030,0,1,f +7035,3032,1,1,f +7035,3033,0,1,f +7035,3035,1,1,f +7035,3035,0,2,f +7035,3036,1,1,f +7035,3039pr0001,15,2,f +7035,3039pr0005,15,2,f +7035,3040b,15,12,f +7035,30414,15,1,f +7035,30552,71,1,f +7035,3069b,1,8,f +7035,3069b,33,4,f +7035,3069b,0,4,f +7035,3069bp02,71,1,f +7035,3069bpr0030,15,2,f +7035,3070b,15,2,f +7035,3070b,15,1,t +7035,3176,14,1,f +7035,32014,0,1,f +7035,32028,0,3,f +7035,32062,4,5,f +7035,3245b,15,4,f +7035,3460,72,4,f +7035,3460,15,4,f +7035,3460,1,6,f +7035,3622,72,4,f +7035,3623,15,1,f +7035,3624,15,2,f +7035,3626bpr0282,14,1,f +7035,3626bpr0325,14,1,f +7035,3626bpr0409,14,1,f +7035,3626bpr0410,14,1,f +7035,3660,0,1,f +7035,3666,0,1,f +7035,3666,15,4,f +7035,3666,1,2,f +7035,3679,71,1,f +7035,3680,1,1,f +7035,3709,4,1,f +7035,3710,72,3,f +7035,3710,1,1,f +7035,3710,15,4,f +7035,3747b,15,2,f +7035,3794a,15,2,f +7035,3794a,72,1,f +7035,3795,1,2,f +7035,3795,0,1,f +7035,3795,15,8,f +7035,3829c01,14,1,f +7035,3837,0,1,f +7035,3899,4,1,f +7035,3900,15,1,f +7035,3942c,15,2,f +7035,3958,72,1,f +7035,3962b,0,2,f +7035,4070,0,4,f +7035,4070,15,8,f +7035,4079,14,4,f +7035,4085c,72,1,f +7035,41334,0,1,f +7035,4162,72,4,f +7035,4176,41,1,f +7035,4215b,15,6,f +7035,4282,15,3,f +7035,4282,72,1,f +7035,43093,1,1,f +7035,43337,15,2,f +7035,4360,0,1,f +7035,43722,72,1,f +7035,43723,72,1,f +7035,43898,72,1,f +7035,44302a,15,1,f +7035,44674,15,2,f +7035,44728,71,6,f +7035,4488,71,6,f +7035,4600,0,2,f +7035,4740,72,2,f +7035,47905,71,4,f +7035,48336,0,3,f +7035,48336,15,2,f +7035,4865a,15,4,f +7035,50745,72,2,f +7035,50950,0,1,f +7035,52501,15,2,f +7035,54200,33,2,f +7035,54200,0,1,t +7035,54200,182,1,t +7035,54200,0,4,f +7035,54200,33,1,t +7035,54200,182,2,f +7035,57895,41,3,f +7035,58380,15,2,f +7035,58381,15,2,f +7035,59443,14,3,f +7035,59443,0,2,f +7035,6014b,71,14,f +7035,6015,0,14,f +7035,6019,15,2,f +7035,6019,14,1,f +7035,60596,72,3,f +7035,60657,15,2,f +7035,60658,15,2,f +7035,6141,33,3,t +7035,6141,34,1,f +7035,6141,33,7,f +7035,6141,36,2,t +7035,6141,36,5,f +7035,6141,47,1,f +7035,6141,47,1,t +7035,6141,1,1,t +7035,6141,46,3,f +7035,6141,1,4,f +7035,6141,46,2,t +7035,6141,34,1,t +7035,61482,71,3,f +7035,61482,71,1,t +7035,61484,15,1,f +7035,6180,15,2,f +7035,64567,71,1,f +7035,6541,1,2,f +7035,6541,72,8,f +7035,6558,1,1,f +7035,6636,71,2,f +7035,6636,15,7,f +7035,6636,1,2,f +7035,87058,72,1,f +7035,970c00,72,1,f +7035,970c00,0,3,f +7035,973pr1186c01,0,1,f +7035,973pr1188c01,0,2,f +7035,973pr1197c01,15,1,f +7036,2460,4,1,f +7036,3020,14,1,f +7036,3021,4,1,f +7036,3039,47,1,f +7036,3710,14,2,f +7036,3747b,4,1,f +7036,4617b,0,1,f +7037,2412b,72,16,f +7037,2419,4,1,f +7037,2431,71,4,f +7037,2431,0,2,f +7037,2431,2,1,f +7037,2432,14,1,f +7037,2436,0,1,f +7037,2456,72,2,f +7037,2508,0,1,f +7037,2555,0,4,f +7037,2817,4,1,f +7037,298c02,14,2,f +7037,298c02,14,1,t +7037,3001,71,3,f +7037,3003,71,1,f +7037,3004,2,9,f +7037,3005,15,5,f +7037,3010,2,2,f +7037,3010,15,4,f +7037,30157,71,1,f +7037,3020,72,5,f +7037,3021,2,4,f +7037,3022,0,2,f +7037,3023,2,12,f +7037,3023,46,2,f +7037,3024,72,4,f +7037,3030,2,1,f +7037,3032,19,3,f +7037,3034,2,1,f +7037,3034,72,3,f +7037,3035,2,1,f +7037,30383,14,2,f +7037,30414,0,1,f +7037,30602,4,2,f +7037,3068b,72,2,f +7037,3068b,71,1,f +7037,3068b,0,2,f +7037,3069b,2,4,f +7037,3069b,71,1,f +7037,3070bpr0007,71,1,t +7037,3070bpr0007,71,1,f +7037,32000,0,1,f +7037,32028,0,2,f +7037,32556,19,2,f +7037,3626bpr0282,14,1,f +7037,3626bpr0389,14,1,f +7037,3666,0,2,f +7037,3666,71,3,f +7037,3666,72,1,f +7037,3710,19,6,f +7037,3710,2,6,f +7037,3747b,15,4,f +7037,3788,0,2,f +7037,3794a,4,2,f +7037,3795,2,2,f +7037,3795,4,3,f +7037,3829c01,14,2,f +7037,3832,2,2,f +7037,3833,4,1,f +7037,3899,4,1,f +7037,3901,70,1,f +7037,3941,46,3,f +7037,3941,15,2,f +7037,3957a,71,1,f +7037,3957a,71,1,t +7037,3957a,0,2,f +7037,3958,72,1,f +7037,3962b,0,1,f +7037,4032a,72,6,f +7037,4032a,2,5,f +7037,4032a,4,2,f +7037,4070,0,5,f +7037,4079,14,1,f +7037,4083,14,1,f +7037,4085c,0,2,f +7037,4150,15,2,f +7037,4150pr0022,71,1,f +7037,4176,40,1,f +7037,4215b,15,4,f +7037,42610,71,6,f +7037,4274,1,1,t +7037,4274,1,4,f +7037,4282,0,1,f +7037,4349,72,1,f +7037,43722,72,1,f +7037,43723,72,1,f +7037,44728,72,4,f +7037,4477,2,4,f +7037,4488,71,10,f +7037,4518bc02,0,1,f +7037,4589,182,1,f +7037,4590,72,1,f +7037,47905,19,2,f +7037,48336,0,4,f +7037,48336,2,4,f +7037,4865a,2,2,f +7037,4871,4,2,f +7037,50745,0,2,f +7037,51011,0,6,f +7037,52107,0,1,f +7037,52501,72,1,f +7037,54200,0,1,t +7037,54200,0,4,f +7037,54200,4,2,f +7037,54200,4,1,t +7037,59349,15,8,f +7037,6014b,71,10,f +7037,6015,0,10,f +7037,60470a,0,3,f +7037,60470a,2,4,f +7037,60474,0,1,f +7037,60477,0,2,f +7037,60594,0,1,f +7037,6091,0,2,f +7037,6141,36,6,f +7037,6141,46,1,t +7037,6141,46,2,f +7037,6141,182,1,t +7037,6141,36,3,t +7037,6141,182,2,f +7037,61484,2,1,f +7037,61485,0,1,f +7037,6178,71,2,f +7037,61780,72,2,f +7037,62113,0,1,f +7037,6231,15,4,f +7037,63082,0,1,f +7037,6541,2,2,f +7037,6636,71,4,f +7037,772,15,4,f +7037,970c00,72,1,f +7037,970c00,1,1,f +7037,973pr1163c01,272,1,f +7037,973pr1244c01,73,1,f +7038,2446,15,1,f +7038,2447,0,1,f +7038,2540,15,1,f +7038,30027a,14,4,f +7038,30028,0,4,f +7038,3022,7,1,f +7038,3062b,7,2,f +7038,3069bpx36,15,1,f +7038,3626bp04,14,1,f +7038,3795,15,1,f +7038,3829c01,15,1,f +7038,6157,0,2,f +7038,6187,14,1,f +7038,970c00,4,1,f +7038,973px36c01,4,1,f +7039,3626bpr0001,14,1,f +7039,3901,0,1,f +7039,970c00,15,1,f +7039,973c07,1,1,f +7040,11203,72,1,f +7040,11211,19,2,f +7040,11213,71,1,f +7040,11289,41,1,f +7040,11399,72,2,f +7040,11476,71,4,f +7040,11477,14,4,f +7040,11477,72,2,f +7040,11477,15,2,f +7040,13792pr0001,148,1,f +7040,13793,72,1,f +7040,14704,71,1,f +7040,14769,71,2,f +7040,15068,4,8,f +7040,15207,4,2,f +7040,15210,0,1,f +7040,15535,72,2,f +7040,15573,15,2,f +7040,15573,72,2,f +7040,15573,71,2,f +7040,15712,0,2,f +7040,16178pr01,4,1,f +7040,18674,15,2,f +7040,18899pat0001,4,1,f +7040,21709,14,1,f +7040,2357,2,2,f +7040,2412b,72,38,f +7040,2420,0,4,f +7040,2421,0,1,f +7040,2431,0,1,f +7040,2431,14,2,f +7040,2431,4,6,f +7040,2432,71,2,f +7040,2432,14,1,f +7040,2446,15,1,f +7040,2447,40,1,t +7040,2447,40,1,f +7040,2449,1,2,f +7040,2449,70,4,f +7040,2456,72,3,f +7040,2460,15,1,f +7040,2479,0,1,f +7040,2540,71,3,f +7040,2584,0,1,f +7040,2585,71,1,f +7040,2637,14,1,f +7040,2638,14,1,f +7040,2653,71,12,f +7040,2654,1,1,f +7040,2654,71,6,f +7040,2730,0,2,f +7040,2736,71,2,f +7040,2780,0,10,f +7040,2780,0,2,t +7040,2817,71,1,f +7040,2871b,0,4,f +7040,2877,72,4,f +7040,2877,0,1,f +7040,2878,0,8,f +7040,298c02,4,5,f +7040,298c02,4,3,t +7040,30000,72,2,f +7040,3002,15,2,f +7040,3003,4,2,f +7040,3003,70,4,f +7040,3004,2,1,f +7040,3004,70,4,f +7040,30043,0,2,f +7040,3005,4,14,f +7040,3005,71,1,f +7040,3006,0,1,f +7040,3008,71,6,f +7040,3009,4,5,f +7040,3009,71,1,f +7040,3009,1,2,f +7040,3009,72,2,f +7040,3010,72,1,f +7040,3010,15,1,f +7040,3010,14,2,f +7040,3010,70,6,f +7040,30136,71,1,f +7040,30165,0,1,f +7040,3020,19,4,f +7040,3020,25,1,f +7040,3020,0,4,f +7040,3020,1,2,f +7040,3020,15,1,f +7040,3021,71,2,f +7040,3021,0,3,f +7040,3022,14,3,f +7040,3022,71,1,f +7040,3023,19,4,f +7040,3023,72,4,f +7040,3023,47,2,f +7040,3023,46,1,f +7040,3023,15,2,f +7040,3023,4,2,f +7040,3023,14,9,f +7040,30236,71,2,f +7040,30237a,72,8,f +7040,30237a,4,8,f +7040,3024,36,1,t +7040,3024,36,1,f +7040,30248,72,1,f +7040,3027,0,1,f +7040,3028,28,4,f +7040,3030,28,1,f +7040,3030,0,1,f +7040,3031,2,2,f +7040,3031,71,1,f +7040,3032,72,1,f +7040,3032,0,1,f +7040,3033,72,1,f +7040,3034,28,7,f +7040,3034,0,1,f +7040,3035,0,1,f +7040,30350b,72,6,f +7040,30359b,72,2,f +7040,3037,72,4,f +7040,3037,4,2,f +7040,30374,71,4,f +7040,30377,71,10,f +7040,30377,71,1,t +7040,30386,14,1,f +7040,30387,14,2,f +7040,3039,72,2,f +7040,3039,71,8,f +7040,30395,72,1,f +7040,3040b,70,4,f +7040,30414,19,1,f +7040,3045,70,4,f +7040,30526,72,1,f +7040,30540,71,2,f +7040,30541,0,1,f +7040,3062b,72,15,f +7040,3062b,321,1,f +7040,3068b,72,1,f +7040,3068b,0,2,f +7040,3068b,25,1,f +7040,3069b,72,1,f +7040,3069b,182,1,f +7040,3070b,14,1,t +7040,3070b,2,2,f +7040,3070b,14,2,f +7040,3070b,2,1,t +7040,3176,72,4,f +7040,32001,71,2,f +7040,32002,19,1,t +7040,32002,19,2,f +7040,32028,0,6,f +7040,32028,4,4,f +7040,32059,72,3,f +7040,32073,71,1,f +7040,32124,0,1,f +7040,3299,0,1,f +7040,3460,0,4,f +7040,3460,15,1,f +7040,3492c01,14,1,f +7040,3622,1,2,f +7040,3623,15,2,f +7040,3623,19,4,f +7040,3623,71,4,f +7040,3626bpr0754a,14,1,f +7040,3626cpr0893,14,1,f +7040,3626cpr0914,14,1,f +7040,3626cpr1087,14,1,f +7040,3626cpr1146,14,1,f +7040,3633,72,4,f +7040,3659,19,6,f +7040,3660,70,12,f +7040,3660,72,1,f +7040,3666,1,1,f +7040,3666,2,2,f +7040,3666,72,2,f +7040,3673,71,4,f +7040,3673,71,1,t +7040,3701,71,2,f +7040,3701,72,2,f +7040,3706,0,4,f +7040,3709,15,1,f +7040,3710,14,2,f +7040,3710,2,2,f +7040,3710,1,7,f +7040,3710,72,3,f +7040,3710,70,5,f +7040,3710,71,4,f +7040,3795,72,9,f +7040,3795,70,2,f +7040,3795,4,3,f +7040,3795,1,2,f +7040,3795,0,2,f +7040,3829c01,4,1,f +7040,3833,4,3,f +7040,3836,70,1,f +7040,3837,72,1,f +7040,3839b,71,1,f +7040,3899,14,1,f +7040,3958,1,1,f +7040,4006,0,1,f +7040,4025,14,3,f +7040,4032a,0,1,f +7040,4032a,14,2,f +7040,4079b,4,1,f +7040,4079b,1,2,f +7040,4083,14,1,f +7040,41532,0,1,f +7040,4162,4,4,f +7040,41678,71,1,f +7040,4175,0,4,f +7040,4274,1,1,t +7040,4274,1,1,f +7040,4282,72,2,f +7040,4286,2,2,f +7040,4460b,70,4,f +7040,44661,15,1,f +7040,44675,0,2,f +7040,44728,71,4,f +7040,4476b,0,4,f +7040,4477,70,6,f +7040,4477,72,1,f +7040,4477,0,2,f +7040,4488,71,1,f +7040,4515,71,4,f +7040,45406,4,2,f +7040,45677,14,1,f +7040,46103,41,2,f +7040,47457,72,2,f +7040,47457,71,1,f +7040,47458,0,2,f +7040,47508,0,1,f +7040,47720,71,2,f +7040,48336,0,1,f +7040,48336,15,1,f +7040,4865b,71,2,f +7040,52501,0,2,f +7040,52501,14,2,f +7040,53400,72,16,f +7040,53401,72,12,f +7040,54200,15,1,t +7040,54200,36,2,f +7040,54200,15,2,f +7040,54200,14,1,t +7040,54200,36,1,t +7040,54200,14,4,f +7040,55981,71,4,f +7040,56823c50,0,1,f +7040,57051,383,8,f +7040,57878,0,16,f +7040,57999,0,8,f +7040,58123a,71,1,f +7040,58176,182,2,f +7040,59807,14,2,f +7040,60169,71,1,f +7040,6020,71,1,f +7040,60219,72,1,f +7040,60470b,71,1,f +7040,60475b,1,4,f +7040,60592,4,4,f +7040,60601,41,4,f +7040,60897,25,2,f +7040,60897,71,2,f +7040,6091,14,4,f +7040,6111,71,2,f +7040,61409,0,18,f +7040,6141,36,1,t +7040,6141,36,2,f +7040,6141,72,4,f +7040,6141,72,1,t +7040,61485,0,1,f +7040,61780,70,1,f +7040,6205,72,2,f +7040,62361,14,2,f +7040,62462,14,2,f +7040,63864,71,5,f +7040,63864,72,4,f +7040,63965,71,8,f +7040,64227,71,1,f +7040,64228,71,1,f +7040,64451,72,2,f +7040,64799,71,2,f +7040,6583,14,2,f +7040,6583,0,4,f +7040,6636,4,8,f +7040,6636,71,25,f +7040,72475,40,1,f +7040,73983,72,2,f +7040,75c16,71,4,f +7040,84954,40,2,f +7040,85984,72,20,f +7040,85984,70,10,f +7040,85984,4,8,f +7040,87079,70,4,f +7040,87079,71,10,f +7040,87079,72,1,f +7040,87081,72,1,f +7040,87087,1,2,f +7040,87544,40,2,f +7040,87574,0,1,f +7040,87609,15,4,f +7040,87619,72,2,f +7040,87620,4,4,f +7040,88292,15,1,f +7040,88930,1,1,f +7040,91988,71,3,f +7040,91992,0,2,f +7040,91994,0,6,f +7040,92280,71,2,f +7040,92280,15,2,f +7040,92339,72,2,f +7040,92402,0,4,f +7040,92582,0,3,f +7040,92593,0,8,f +7040,92593,71,8,f +7040,92593,15,2,f +7040,92593,27,4,f +7040,92947,71,3,f +7040,93273,14,2,f +7040,93274,0,2,f +7040,93606,14,1,f +7040,93606,72,5,f +7040,96874,25,1,t +7040,970c00,25,1,f +7040,970c00,272,1,f +7040,970c00,72,2,f +7040,970c00,1,1,f +7040,973pr1580c01,15,1,f +7040,973pr2692c01,326,2,f +7040,973pr2885c01,25,1,f +7040,973pr2913c01,25,1,f +7040,98138,36,1,t +7040,98138,47,2,f +7040,98138,36,2,f +7040,98138,47,1,t +7040,98549,71,1,f +7040,98560,71,2,f +7040,99780,72,2,f +7041,122c01,0,2,f +7041,3001a,14,1,f +7041,3003,4,2,f +7041,3003,14,1,f +7041,3004,14,2,f +7041,3010pb035e,14,1,f +7041,3020,14,3,f +7041,3020,0,2,f +7041,3021,14,2,f +7041,3022,14,2,f +7041,3023,0,4,f +7041,3031,0,1,f +7041,3032,14,1,f +7041,3039,14,1,f +7041,3062a,7,1,f +7041,3062a,46,1,f +7041,3068b,0,2,f +7041,3127,7,1,f +7041,3149c01,0,1,f +7041,3176,0,2,f +7041,3626apr0001,14,1,f +7041,3641,0,4,f +7041,3678a,47,2,f +7041,3679,7,1,f +7041,3680,0,1,f +7041,3710,0,1,f +7041,3710,14,1,f +7041,3787,0,1,f +7041,3788,14,1,f +7041,3832,0,3,f +7041,3833,4,1,f +7041,3840,14,1,f +7041,56823,0,1,f +7041,73037,14,1,f +7041,970c00,1,1,f +7041,973c02,4,1,f +7042,2357,4,8,f +7042,2357,0,4,f +7042,2357,14,8,f +7042,2357,1,8,f +7042,2357,15,8,f +7042,2412b,7,8,f +7042,2435,2,1,f +7042,2458,7,1,f +7042,2460,7,1,f +7042,2479,0,2,f +7042,3001,15,4,f +7042,3001,0,4,f +7042,3001,4,4,f +7042,3001,1,4,f +7042,3001,14,4,f +7042,3002,4,4,f +7042,3002,1,4,f +7042,3002,15,4,f +7042,3002,0,2,f +7042,3002,14,4,f +7042,3003,1,13,f +7042,3003,15,13,f +7042,3003,0,6,f +7042,3003,14,13,f +7042,3003,4,13,f +7042,3004,14,32,f +7042,3004,4,34,f +7042,3004,0,16,f +7042,3004,15,36,f +7042,3004,1,36,f +7042,3005,14,28,f +7042,3005,0,12,f +7042,3005,1,28,f +7042,3005,15,28,f +7042,3005,4,28,f +7042,3005pe1,14,2,f +7042,3007,1,2,f +7042,3008,15,2,f +7042,3008,4,2,f +7042,3009,14,2,f +7042,3009,15,4,f +7042,3009,1,4,f +7042,3010,15,28,f +7042,3010,0,12,f +7042,3010,4,22,f +7042,3010,14,22,f +7042,3010,1,28,f +7042,3010p01,14,1,f +7042,3010p72,4,2,f +7042,3020,14,4,f +7042,3021,14,2,f +7042,3022,14,4,f +7042,3035,14,2,f +7042,3037pr0005,4,1,f +7042,3039,4,4,f +7042,3039,47,2,f +7042,3040b,4,4,f +7042,30473px1,2,1,f +7042,3062b,7,6,f +7042,3185,4,6,f +7042,3297,4,8,f +7042,3298,4,8,f +7042,3299,4,2,f +7042,3300,4,2,f +7042,3460,14,2,f +7042,3471,2,1,f +7042,3483,0,8,f +7042,3622,14,8,f +7042,3622,15,10,f +7042,3622,4,8,f +7042,3622,0,2,f +7042,3622,1,10,f +7042,3626bpr0001,14,2,f +7042,3660,4,4,f +7042,3665,4,4,f +7042,3679,7,2,f +7042,3680,14,2,f +7042,3710,14,4,f +7042,3730,0,1,f +7042,3731,0,1,f +7042,3741,2,3,f +7042,3742,15,3,f +7042,3742,15,1,t +7042,3742,4,3,f +7042,3742,14,1,t +7042,3742,14,3,f +7042,3742,4,1,t +7042,3747a,4,4,f +7042,3823,47,2,f +7042,3829c01,14,2,f +7042,3832,14,2,f +7042,3836,6,1,f +7042,3837,8,1,f +7042,3853,1,4,f +7042,3854,15,8,f +7042,3861b,1,2,f +7042,3901,6,1,f +7042,3937,4,4,f +7042,3957a,14,2,f +7042,3957a,7,2,f +7042,3962b,0,1,f +7042,4070,4,4,f +7042,4079,14,2,f +7042,4083,7,2,f +7042,4175,14,2,f +7042,4286,4,4,f +7042,4287,4,4,f +7042,4328,7,1,f +7042,6093,0,1,f +7042,6134,4,4,f +7042,6212,1,1,f +7042,6248,7,8,f +7042,6249,8,4,f +7042,970c00,7,1,f +7042,970c00,1,1,f +7042,973c01,1,1,f +7042,973pb0201c01,15,1,f +7044,2456,14,1,f +7044,3003,4,1,f +7044,3003,14,2,f +7044,30474pb08,2,1,f +7044,3298,2,2,f +7044,3460,4,2,f +7044,3747b,14,1,f +7044,3795,4,1,f +7044,3795,2,2,f +7045,2412b,72,1,f +7045,2420,320,2,f +7045,2444,0,2,f +7045,2555,0,1,f +7045,2569,71,1,f +7045,2654,0,1,f +7045,2877,0,2,f +7045,2922,320,3,f +7045,30191,320,1,f +7045,3020,19,1,f +7045,3020,320,1,f +7045,3022,19,2,f +7045,3022,71,1,f +7045,3023,320,1,f +7045,3024,19,2,f +7045,30285,71,4,f +7045,3034,19,1,f +7045,30374,36,1,f +7045,30391,0,2,f +7045,3062b,0,1,f +7045,3062b,72,6,f +7045,30648,0,2,f +7045,30663,0,1,f +7045,32054,0,1,f +7045,3673,71,1,t +7045,3673,71,2,f +7045,3710,320,1,f +7045,3747b,0,1,f +7045,3794a,0,1,f +7045,3795,0,1,f +7045,3795,72,1,f +7045,3937,0,1,f +7045,3938,71,1,f +7045,4070,0,9,f +7045,4079,71,1,f +7045,4095,0,1,f +7045,4282,0,1,f +7045,4360,0,1,f +7045,44567a,0,3,f +7045,4599a,0,4,f +7045,47720,0,1,f +7045,48183,320,1,f +7045,48336,320,2,f +7045,50943,71,1,f +7045,6019,72,1,f +7045,6141,42,1,t +7045,6141,42,1,f +7045,daraptor1,14,1,f +7046,700ed,4,1,f +7046,700ed,1,1,f +7047,16542,7,1,f +7047,2341,4,4,f +7047,2343,14,2,f +7047,2348b,41,1,f +7047,2349a,15,1,f +7047,2362a,15,1,f +7047,2412b,0,1,f +7047,2431,15,2,f +7047,2540,0,3,f +7047,2540,15,2,f +7047,2555,0,1,f +7047,2584,4,1,f +7047,2585,0,1,f +7047,3004,15,2,f +7047,3005,4,2,f +7047,3005,15,1,f +7047,3009,0,2,f +7047,3010,15,1,f +7047,3010,0,2,f +7047,3010ap04,15,1,f +7047,3020,15,2,f +7047,3021,15,2,f +7047,3022,15,1,f +7047,3023,4,1,f +7047,3023,15,1,f +7047,3024,46,6,f +7047,3024,36,4,f +7047,3040b,36,2,f +7047,3062b,14,3,f +7047,3070b,36,2,f +7047,3297,15,2,f +7047,3298,15,2,f +7047,3622,15,2,f +7047,3626apr0001,14,2,f +7047,3660,4,1,f +7047,3665,4,4,f +7047,3666,4,4,f +7047,3666,0,3,f +7047,3679,7,1,f +7047,3680,15,1,f +7047,3710,4,1,f +7047,3710,15,1,f +7047,3794a,0,1,f +7047,3795,4,2,f +7047,3795,0,1,f +7047,3795,7,1,f +7047,3821,15,1,f +7047,3822,15,1,f +7047,3829c01,0,1,f +7047,3832,4,2,f +7047,3834,0,2,f +7047,3835,0,2,f +7047,3838,14,1,f +7047,3937,15,1,f +7047,3938,15,1,f +7047,4070,15,9,f +7047,4079,7,1,f +7047,4081b,14,2,f +7047,4083,14,1,f +7047,4084,0,6,f +7047,4085c,15,2,f +7047,4162,15,2,f +7047,4176,41,1,f +7047,4215a,15,2,f +7047,4282,0,1,f +7047,4460b,15,2,f +7047,4477,4,2,f +7047,4488,0,6,f +7047,4533,4,1,f +7047,4589,14,2,f +7047,4599a,14,1,f +7047,4624,15,6,f +7047,4625,15,1,f +7047,4757,15,1,f +7047,4760c01,15,1,f +7047,4771,15,1,f +7047,4773,33,2,t +7047,4773,46,2,t +7047,4774c01,0,1,f +7047,4864a,15,1,f +7047,4864a,41,2,f +7047,6019,15,1,f +7047,6141,46,1,f +7047,6440stk01,9999,1,t +7047,92410,15,1,f +7047,970c00,0,2,f +7047,973p16c01,15,2,f +7049,3001,4,1,f +7049,3004,4,2,f +7049,3039,4,2,f +7049,3062b,4,1,f +7049,3941,182,2,f +7049,3941,4,1,f +7049,3941,15,2,f +7049,3942c,4,1,f +7050,10258,0,1,f +7050,10907,320,1,f +7050,10908pr0001,320,1,f +7050,10909,297,1,f +7050,12825,72,4,f +7050,2412b,71,3,f +7050,2431,71,4,f +7050,2436,0,4,f +7050,2486,0,1,f +7050,2654,71,2,f +7050,2817,4,1,f +7050,2877,72,1,f +7050,298c02,71,1,t +7050,298c02,71,1,f +7050,3001,4,1,f +7050,3003,272,3,f +7050,3005,272,2,f +7050,3005,47,1,f +7050,3010,272,2,f +7050,30157,72,2,f +7050,3020,1,2,f +7050,3021,272,7,f +7050,3023,272,11,f +7050,3023,36,2,f +7050,3024,47,4,f +7050,3032,72,4,f +7050,3062b,4,1,f +7050,3062b,41,2,f +7050,3069b,71,2,f +7050,3070bpr0007,71,1,f +7050,32013,72,2,f +7050,3623,0,2,f +7050,3626cpr0937,78,1,f +7050,3626cpr0961,78,1,f +7050,3626cpr0963,78,1,f +7050,3666,272,4,f +7050,3673,71,2,f +7050,3700,0,4,f +7050,3710,272,10,f +7050,3794b,71,1,f +7050,3829c01,71,1,f +7050,4032a,72,1,f +7050,4079,1,1,f +7050,4150,4,1,f +7050,43093,1,2,f +7050,4599b,4,1,f +7050,48336,4,1,f +7050,50231,2,1,f +7050,50950,272,6,f +7050,52031,272,2,f +7050,54200,272,1,t +7050,54200,272,2,f +7050,54200,182,1,t +7050,54200,182,2,f +7050,55981,71,4,f +7050,56891,0,4,f +7050,58176,36,2,f +7050,58181,47,1,f +7050,60475b,0,2,f +7050,60594,0,1,f +7050,60603,47,1,f +7050,6091,72,4,f +7050,61184,71,2,f +7050,6141,4,2,f +7050,6141,41,1,t +7050,6141,41,2,f +7050,6141,4,1,t +7050,63868,0,2,f +7050,6583,0,1,f +7050,6636,272,1,f +7050,75c06,0,2,f +7050,87087,72,2,f +7050,91988,71,3,f +7050,92081,84,1,f +7050,92262,272,1,f +7050,92263,272,1,f +7050,92950,0,4,f +7050,93252,297,1,f +7050,970c00pr0344,320,1,f +7050,970c00pr0345,72,1,f +7050,970c00pr0346,0,1,f +7050,973pr2041c01,320,1,f +7050,973pr2042c01,72,1,f +7050,973pr2043c01,0,1,f +7050,98138,47,1,t +7050,98138,47,2,f +7050,98139,297,1,f +7050,99780,72,6,f +7054,2412b,71,4,f +7054,2412b,72,2,f +7054,2436,71,3,f +7054,2444,72,2,f +7054,2458,72,2,f +7054,2512,71,1,f +7054,2736,71,4,f +7054,2780,0,1,t +7054,2780,0,4,f +7054,3001,27,4,f +7054,3003,27,1,f +7054,3004,27,2,f +7054,3008,71,4,f +7054,30150,70,2,f +7054,3021,71,1,f +7054,3022,71,2,f +7054,3022,27,2,f +7054,3023,27,4,f +7054,30304,72,1,f +7054,3031,0,3,f +7054,30325,80,1,f +7054,3034,71,1,f +7054,3035,71,1,f +7054,3036,71,1,f +7054,30367b,27,2,f +7054,30385,36,1,f +7054,3039,71,4,f +7054,30562,41,2,f +7054,30565,27,4,f +7054,3069b,36,2,f +7054,32009,1,2,f +7054,32015,71,2,f +7054,32018,0,2,f +7054,32034,71,1,f +7054,32054,4,2,f +7054,32064b,71,2,f +7054,32073,71,1,f +7054,32123b,14,1,t +7054,32123b,14,4,f +7054,32278,0,1,f +7054,32293,0,2,f +7054,32348,71,2,f +7054,32449,27,2,f +7054,32523,27,4,f +7054,32524,27,4,f +7054,32526,27,2,f +7054,32531,71,1,f +7054,3298,27,2,f +7054,33078,4,1,f +7054,3460,71,1,f +7054,3626bpr0562,14,1,f +7054,3673,71,1,t +7054,3673,71,2,f +7054,3675,27,2,f +7054,3702,71,2,f +7054,3705,0,2,f +7054,3710,27,2,f +7054,3713,71,8,f +7054,3713,71,2,t +7054,3749,19,6,f +7054,3795,72,2,f +7054,3829c01,1,1,f +7054,3837,72,1,f +7054,3841,72,1,f +7054,3937,72,4,f +7054,3938,71,4,f +7054,3956,1,2,f +7054,40378,27,2,f +7054,4081b,27,2,f +7054,4151b,72,1,f +7054,41678,71,2,f +7054,41747,27,1,f +7054,41748,27,1,f +7054,43093,1,6,f +7054,44568,1,1,f +7054,44570,71,1,f +7054,4528,135,1,f +7054,46667,72,2,f +7054,47457,1,1,f +7054,4865a,40,1,f +7054,50943,71,2,f +7054,53451,135,1,t +7054,53451,135,4,f +7054,54200,47,1,t +7054,54200,1,2,f +7054,54200,47,4,f +7054,54200,182,1,t +7054,54200,182,2,f +7054,54200,1,1,t +7054,57557,1,2,f +7054,59426,72,2,f +7054,59577,135,2,f +7054,60208,71,2,f +7054,61072,135,4,f +7054,6140,0,2,f +7054,6141,47,4,f +7054,6141,72,10,f +7054,6141,47,1,t +7054,6141,72,1,t +7054,63864,71,2,f +7054,64711,0,8,f +7054,64728,4,1,f +7054,64783,0,2,f +7054,64784pat02,36,1,f +7054,6536,27,2,f +7054,6541,71,2,f +7054,6553,71,2,f +7054,6558,1,16,f +7054,6587,28,4,f +7054,8190stk01,9999,1,t +7054,85940,0,2,f +7054,85961,80,1,f +7054,87079,71,1,f +7054,87083,72,4,f +7054,87777,80,1,f +7054,87780,36,1,f +7054,970c00pr0149a,71,1,f +7054,973pr1581c01,71,1,f +7056,2412b,0,6,f +7056,2431,15,1,f +7056,2431,0,4,f +7056,2444,0,2,f +7056,2654,47,3,f +7056,2654,0,3,f +7056,2736,71,2,f +7056,2741,0,1,f +7056,2780,0,346,f +7056,2817,4,4,f +7056,2825,4,16,f +7056,2850a,71,8,f +7056,2851,14,8,f +7056,2852,71,8,f +7056,2853,14,4,f +7056,2854,72,3,f +7056,3021,0,2,f +7056,3022,0,4,f +7056,3023,36,2,f +7056,3023,0,6,f +7056,3023,47,8,f +7056,3030,0,1,f +7056,3069b,4,8,f +7056,32000,71,6,f +7056,32002,72,4,f +7056,32002,72,1,t +7056,32009,71,2,f +7056,32009,0,2,f +7056,32009,14,6,f +7056,32012,14,1,f +7056,32013,0,6,f +7056,32013,4,8,f +7056,32014,14,1,f +7056,32015,71,2,f +7056,32019,0,8,f +7056,32034,4,7,f +7056,32034,0,6,f +7056,32039,4,5,f +7056,32039,71,5,f +7056,32054,0,6,f +7056,32054,4,67,f +7056,32054,71,16,f +7056,32056,0,6,f +7056,32062,4,28,f +7056,32063,71,8,f +7056,32064b,0,2,f +7056,32072,14,2,f +7056,32073,71,28,f +7056,32123b,71,51,f +7056,32123b,71,3,t +7056,32138,0,2,f +7056,32140,4,2,f +7056,32140,71,29,f +7056,32140,14,2,f +7056,32184,71,24,f +7056,32187,71,3,f +7056,32200,4,2,f +7056,32250,71,8,f +7056,32269,19,3,f +7056,32270,0,18,f +7056,32271,14,1,f +7056,32278,14,4,f +7056,32278,4,7,f +7056,32278,0,7,f +7056,32278,71,23,f +7056,32291,4,2,f +7056,32316,0,6,f +7056,32316,4,9,f +7056,32316,71,11,f +7056,32316,14,4,f +7056,32333,0,2,f +7056,32449,14,4,f +7056,32449,0,10,f +7056,32523,14,4,f +7056,32523,0,19,f +7056,32524,4,2,f +7056,32524,71,17,f +7056,32524,14,6,f +7056,32524,0,4,f +7056,32525,14,2,f +7056,32525,4,11,f +7056,32525,71,7,f +7056,32526,1,4,f +7056,32526,0,8,f +7056,32526,4,12,f +7056,32526,14,6,f +7056,32556,19,6,f +7056,33299a,0,6,f +7056,3647,72,8,f +7056,3648b,72,1,f +7056,3673,71,6,f +7056,3673,71,1,t +7056,3701,71,1,f +7056,3705,0,30,f +7056,3706,0,15,f +7056,3707,0,4,f +7056,3708,0,4,f +7056,3710,0,2,f +7056,3713,4,4,f +7056,3713,71,43,f +7056,3713,4,1,t +7056,3713,71,4,t +7056,3737,0,4,f +7056,3749,19,7,f +7056,3941,0,1,f +7056,3941,46,2,f +7056,3957a,71,2,f +7056,4019,71,26,f +7056,4032a,0,3,f +7056,40490,14,3,f +7056,40490,4,4,f +7056,40490,71,12,f +7056,41239,0,15,f +7056,41239,14,6,f +7056,41239,4,5,f +7056,41239,71,13,f +7056,41677,4,4,f +7056,42003,4,27,f +7056,42610,71,1,f +7056,4274,1,3,f +7056,4274,1,1,t +7056,43093,1,100,f +7056,43857,71,2,f +7056,43857,4,2,f +7056,44294,71,10,f +7056,44374,135,1,f +7056,4519,71,49,f +7056,45590,0,1,f +7056,4716,71,2,f +7056,4740,71,2,f +7056,48989,71,24,f +7056,50163,72,1,f +7056,54200,47,1,t +7056,54200,182,4,f +7056,54200,47,4,f +7056,54200,182,1,t +7056,55013,72,4,f +7056,55982,71,1,f +7056,56823c200,0,1,f +7056,58119,71,1,f +7056,58121,71,1,f +7056,59426,72,8,f +7056,59443,4,2,f +7056,59443,71,25,f +7056,60483,72,6,f +7056,60484,0,7,f +7056,60485,71,5,f +7056,6141,46,4,f +7056,6141,46,1,t +7056,61903,71,2,f +7056,61904,72,6,f +7056,61927a,71,2,f +7056,61929,71,1,f +7056,62462,4,10,f +7056,62462,0,10,f +7056,62531,14,4,f +7056,62531,4,5,f +7056,62821,72,1,f +7056,63869,71,5,f +7056,64178,71,3,f +7056,64179,71,8,f +7056,64391,4,2,f +7056,64392,4,1,f +7056,64393,4,1,f +7056,64681,4,1,f +7056,64682,4,1,f +7056,64683,4,2,f +7056,64781,0,7,f +7056,64782,4,4,f +7056,6536,4,4,f +7056,6536,0,34,f +7056,6536,14,8,f +7056,6538b,19,2,f +7056,6539,4,3,f +7056,6542a,72,10,f +7056,6558,1,139,f +7056,6558,1,3,t +7056,6587,72,7,f +7056,6589,19,8,f +7056,6629,0,8,f +7056,6632,71,8,f +7056,6636,4,2,f +7056,6641,4,2,f +7056,70496,0,1,f +7056,76244,15,3,f +7056,8258stk01,9999,1,t +7056,86652,71,8,f +7057,2446,15,1,f +7057,2447,33,1,f +7057,2555,0,1,f +7057,2610,14,1,f +7057,2654,7,1,f +7057,3003,7,1,f +7057,30031,0,1,f +7057,3023,15,1,f +7057,3032,14,1,f +7057,3298pb024,14,1,f +7057,3626bp04,14,1,f +7057,3794a,14,1,f +7057,4286,0,2,f +7057,4859,14,1,f +7057,6153a,0,1,f +7057,970x026,15,1,f +7057,973p8bc01,15,1,f +7060,30556,22,1,f +7060,30599,14,1,f +7060,30601pb07,110,1,f +7060,30602pb028,110,1,f +7060,racerbase,22,1,f +7060,rb00168,0,2,f +7061,16175pr01,4,1,f +7061,3069bpr0009,14,1,f +7061,3626cpr1296b,14,1,f +7061,88646,0,1,f +7061,970c00pr0605,25,1,f +7061,973pr2538c01,25,1,f +7062,2000421stk01,9999,1,f +7062,2780,0,56,f +7062,2780,0,1,t +7062,32002,19,8,f +7062,32002,19,1,t +7062,32034,0,8,f +7062,32056,14,8,f +7062,32062,0,20,f +7062,32073,71,8,f +7062,32192,0,8,f +7062,32271,14,2,f +7062,32316,14,8,f +7062,32449,0,6,f +7062,32449,14,16,f +7062,32523,14,12,f +7062,32524,14,4,f +7062,32525,14,4,f +7062,32525,0,7,f +7062,3705,0,4,f +7062,40490,14,8,f +7062,42003,14,4,f +7062,4519,71,8,f +7062,64782,0,3,f +7062,6558,1,22,f +7062,6632,14,8,f +7063,10247,0,1,f +7063,11303,4,1,f +7063,11303,1,1,f +7063,12622,0,1,f +7063,12622,4,1,f +7063,14045,0,2,f +7063,14769,15,4,f +7063,15207,71,1,f +7063,2335pr02,15,1,f +7063,2412b,71,2,f +7063,2432,14,1,f +7063,2432,0,2,f +7063,2432,15,1,f +7063,2446,1,1,f +7063,2446,4,1,f +7063,2447,40,2,f +7063,2456,15,1,f +7063,2456,4,1,f +7063,2460,71,1,f +7063,2653,71,4,f +7063,2877,71,4,f +7063,3001,2,2,f +7063,3001,27,4,f +7063,3001,4,6,f +7063,3001,1,5,f +7063,3001,321,4,f +7063,3001,25,4,f +7063,3001,14,2,f +7063,3001,0,6,f +7063,3001,15,6,f +7063,3002,4,2,f +7063,3002,0,2,f +7063,3002,14,2,f +7063,3002,1,2,f +7063,3002,72,4,f +7063,3003,2,3,f +7063,3003,4,3,f +7063,3003,0,4,f +7063,3003,27,4,f +7063,3003,14,4,f +7063,3003,72,1,f +7063,3003,1,3,f +7063,3003,71,1,f +7063,3003,15,5,f +7063,3004,4,4,f +7063,3004,27,1,f +7063,3004,321,4,f +7063,3004,2,4,f +7063,3004,15,6,f +7063,3004,0,4,f +7063,3004,25,3,f +7063,3007,0,1,f +7063,3007,15,1,f +7063,3009,72,1,f +7063,3009,15,3,f +7063,3010,25,4,f +7063,3010,2,2,f +7063,3010,0,2,f +7063,3010,4,2,f +7063,3020,4,2,f +7063,3020,25,4,f +7063,3022,25,2,f +7063,3035,0,1,f +7063,3037,15,2,f +7063,30386,71,2,f +7063,30389b,0,1,f +7063,3039,72,4,f +7063,3039,0,3,f +7063,3039,4,2,f +7063,3039,15,2,f +7063,30395,72,1,f +7063,30396,0,1,f +7063,3040b,4,2,f +7063,3040b,27,4,f +7063,3040b,321,4,f +7063,3040b,25,4,f +7063,30414,15,4,f +7063,30602,1,2,f +7063,3062b,36,2,f +7063,3062b,34,2,f +7063,30663,0,2,f +7063,3068b,15,2,f +7063,3069b,15,7,f +7063,3069b,46,2,f +7063,3069b,4,8,f +7063,32028,15,2,f +7063,3298,0,2,f +7063,3460,0,2,f +7063,3626cpr0645,14,1,f +7063,3626cpr0754,14,1,f +7063,3660,15,4,f +7063,3710,27,3,f +7063,3795,321,2,f +7063,3795,0,3,f +7063,3795,27,2,f +7063,3795,14,1,f +7063,3823,47,1,f +7063,3829c01,15,1,f +7063,3829c01,14,1,f +7063,3941,1,4,f +7063,3941,71,4,f +7063,3941,2,4,f +7063,3942c,25,2,f +7063,3957a,0,1,f +7063,3963,71,2,f +7063,4006,0,1,f +7063,4282,15,1,f +7063,4286,0,4,f +7063,4286,1,2,f +7063,4349,72,1,f +7063,4865b,4,2,f +7063,50943,71,1,f +7063,59900,71,6,f +7063,6014b,15,4,f +7063,6014b,71,4,f +7063,60477,4,2,f +7063,61068pr0001,1,2,f +7063,61068pr0002,4,1,f +7063,61072,179,4,f +7063,6126b,182,4,f +7063,6140,71,1,f +7063,61409,4,2,f +7063,61409,72,4,f +7063,61409,1,4,f +7063,73590c01a,14,1,f +7063,85080,4,4,f +7063,85984,15,1,f +7063,87697,0,8,f +7063,89801,71,1,f +7063,92947,15,4,f +7063,93273,72,2,f +7063,95347,0,2,f +7063,96874,25,1,t +7063,970c00,4,1,f +7063,970c00,1,1,f +7063,973pr0817c01,321,1,f +7063,973pr2274c01,27,1,f +7063,98560,72,2,f +7064,122c01,7,2,f +7064,3004,47,1,f +7064,3005,4,2,f +7064,3010,4,1,f +7064,3010pb035u,4,1,f +7064,3020,4,2,f +7064,3023,4,4,f +7064,3031,4,1,f +7064,3062a,33,1,f +7064,3626bpr0001,14,1,f +7064,3633,4,2,f +7064,3641,0,4,f +7064,3710,4,2,f +7064,3788,4,2,f +7064,3795,4,1,f +7064,3823,47,1,f +7064,3834,0,1,f +7064,3835,7,1,f +7064,970c00,0,1,f +7064,973c18,0,1,f +7065,2346,0,4,f +7065,2357,0,4,f +7065,2419,2,2,f +7065,2420,7,8,f +7065,2456,0,6,f +7065,2654,0,2,f +7065,2730,0,8,f +7065,2780,0,24,f +7065,2815,0,2,f +7065,2817,7,4,f +7065,2825,7,2,f +7065,2854,7,2,f +7065,2902,0,4,f +7065,2903,15,4,f +7065,2982c01,1,2,f +7065,2983,7,4,f +7065,2994,15,2,f +7065,3001,2,1,f +7065,3001,0,25,f +7065,3003,0,20,f +7065,3004,2,4,f +7065,3004,0,20,f +7065,3004,14,4,f +7065,3007,0,8,f +7065,3010,0,6,f +7065,3020,14,6,f +7065,3022,7,8,f +7065,3022,2,2,f +7065,3022,1,4,f +7065,3023,7,20,f +7065,3024,7,8,f +7065,3033,7,1,f +7065,3034,2,4,f +7065,3039,2,3,f +7065,3040b,14,4,f +7065,3040b,0,12,f +7065,3069b,1,4,f +7065,32000,8,2,f +7065,32001,7,4,f +7065,32002,8,16,f +7065,32007,15,4,f +7065,32009,14,4,f +7065,32013,1,4,f +7065,32014,1,4,f +7065,32015,7,4,f +7065,32017,7,4,f +7065,32028,7,8,f +7065,32034,1,2,f +7065,32039,7,8,f +7065,32054,1,4,f +7065,32056,7,4,f +7065,32060,7,1,f +7065,32062,0,10,f +7065,32064b,2,8,f +7065,32065,0,4,f +7065,32068,7,2,f +7065,32069,0,2,f +7065,32073,7,2,f +7065,32123b,7,18,f +7065,32137,33,4,f +7065,32138,14,2,f +7065,32140,0,2,f +7065,32184,1,2,f +7065,32250,1,2,f +7065,32269,15,1,f +7065,32449,1,2,f +7065,3460,7,8,f +7065,3482,14,10,f +7065,3483,0,2,f +7065,3623,14,2,f +7065,3634,0,4,f +7065,3647,7,6,f +7065,3648b,7,4,f +7065,3649,7,4,f +7065,3650c,7,4,f +7065,3665,0,4,f +7065,3665,14,4,f +7065,3666,7,10,f +7065,3673,7,24,f +7065,3679,7,2,f +7065,3680,1,2,f +7065,3700,0,12,f +7065,3700,14,4,f +7065,3701,2,2,f +7065,3701,0,10,f +7065,3702,0,8,f +7065,3703,0,6,f +7065,3705,0,7,f +7065,3706,0,8,f +7065,3707,0,7,f +7065,3708,0,2,f +7065,3709,7,4,f +7065,3710,7,10,f +7065,3713,7,40,f +7065,3736,7,2,f +7065,3737,0,4,f +7065,3738,7,8,f +7065,3743,7,4,f +7065,3747b,0,4,f +7065,3749,19,16,f +7065,3832,7,6,f +7065,3894,0,8,f +7065,3895,0,6,f +7065,3941,0,8,f +7065,3956,7,4,f +7065,3960,15,2,f +7065,4019,7,4,f +7065,4032a,15,2,f +7065,4032a,1,2,f +7065,4085c,0,2,f +7065,4185,7,4,f +7065,4220,14,2,f +7065,4221,0,4,f +7065,4274,7,8,f +7065,4275b,0,2,f +7065,4477,7,6,f +7065,4519,7,3,f +7065,4531,0,2,f +7065,4589,15,2,f +7065,4589,14,2,f +7065,4716,0,4,f +7065,5306bc015,0,6,f +7065,6007,8,1,t +7065,6019,0,2,f +7065,6035,15,1,f +7065,6048a,8,2,f +7065,6133,57,2,f +7065,6141,15,2,f +7065,6141,0,2,f +7065,6141,1,2,f +7065,6215,2,4,f +7065,6536,7,6,f +7065,6538a,7,8,f +7065,6553,7,4,f +7065,6558,0,8,f +7065,6573,8,1,f +7065,6575,7,2,f +7065,6578,0,2,f +7065,6587,8,2,f +7065,6588,14,1,f +7065,6589,7,8,f +7065,6594,0,2,f +7065,6595,15,2,f +7065,6629,0,4,f +7065,6630,7,1,f +7065,6632,7,4,f +7065,680c01,0,2,f +7065,71082,47,1,f +7065,71128,383,1,f +7065,71427c01,7,2,f +7065,71509,0,4,f +7065,71793,7,1,f +7065,75c16,14,2,f +7065,78c08,0,4,f +7065,78c08,3,4,f +7065,78c11,22,4,f +7065,85543,15,3,f +7065,85544,1,3,f +7065,85545,14,3,f +7065,879,7,2,f +7065,884,14,1,f +7065,9244,7,2,f +7065,9794bc,9999,1,f +7065,bin03,10,1,f +7065,x87,8,1,f +7067,3003,14,1,f +7067,3005,2,3,f +7067,30055,70,2,f +7067,3021,15,1,f +7067,3023,15,3,f +7067,3023,4,2,f +7067,3023,27,2,f +7067,3024,1,1,f +7067,3024,1,1,t +7067,3024,47,1,f +7067,3024,47,1,t +7067,3040b,2,6,f +7067,3069b,27,2,f +7067,3069b,2,6,f +7067,3069bpr0055,15,1,f +7067,32125,71,4,f +7067,3623,1,1,f +7067,3626cpr0645,14,1,f +7067,3626cpr0677,14,1,f +7067,3710,70,2,f +7067,3737,0,1,f +7067,3794b,15,3,f +7067,3794b,4,2,f +7067,3901,70,1,f +7067,3941,70,1,f +7067,3958,15,1,f +7067,41879a,4,1,f +7067,4286,2,9,f +7067,4595,0,1,f +7067,49668,288,3,f +7067,54200,14,1,t +7067,54200,14,2,f +7067,54200,1,1,t +7067,54200,1,1,f +7067,59900,2,1,f +7067,6124,42,1,t +7067,6124,42,1,f +7067,6141,0,1,t +7067,6141,15,1,t +7067,6141,36,6,f +7067,6141,46,6,f +7067,6141,15,14,f +7067,6141,36,1,t +7067,6141,0,2,f +7067,6141,46,1,t +7067,73983,19,2,f +7067,85080,15,4,f +7067,85974,70,1,f +7067,970c00,320,1,f +7067,973pr1163c01,272,1,f +7067,973pr1485c01,4,1,f +7067,98138,179,1,t +7067,98138,179,4,f +7068,2446,8,1,f +7068,30088,8,2,f +7068,30090,33,1,f +7068,30091,8,1,f +7068,30094,14,1,f +7068,3022,0,1,f +7068,3023,7,1,f +7068,3475b,14,2,f +7068,3626bpx51,14,1,f +7068,3660,0,1,f +7068,4360,7,1,f +7068,4588,42,2,f +7068,4589,36,1,f +7068,4623,14,1,f +7068,59275,0,2,f +7068,6019,0,2,f +7068,970c00pb033,272,1,f +7068,973pb0071c02,272,1,f +7070,4697a,7,8,f +7070,5102,7,2,f +7070,5102,0,4,f +7070,rb00164,0,40,f +7070,rb00167,0,30,f +7070,rb00169,0,30,f +7070,rb00170,0,30,f +7072,3010,14,1,f +7072,3020,0,2,f +7072,3020,14,3,f +7072,3023,14,4,f +7072,3023,4,2,f +7072,3023,0,2,f +7072,3030,0,1,f +7072,3032,0,2,f +7072,3034,4,1,f +7072,3034,0,2,f +7072,3037,0,2,f +7072,3038,0,2,f +7072,3039,0,2,f +7072,3040a,0,4,f +7072,3062a,14,8,f +7072,3297,0,1,f +7072,3298,47,1,f +7072,3481,14,2,f +7072,3482,4,6,f +7072,3483,0,6,f +7072,3660,0,1,f +7072,3700,0,6,f +7072,3707,79,2,f +7072,69c01,14,2,f +7072,x148,4,2,f +7073,2780,0,5,f +7073,3062b,42,2,f +7073,32062,0,6,f +7073,32174,0,5,f +7073,4274,71,1,t +7073,4274,71,4,f +7073,43093,1,1,f +7073,47306,0,1,f +7073,47312,72,1,f +7073,47313,57,1,f +7073,49423,135,1,f +7073,50898,72,4,f +7073,53545,0,1,f +7073,53546,0,1,f +7073,53563,0,4,f +7073,53568,0,2,f +7073,57523c01,135,1,f +7073,57525,4,9,f +7073,57526,0,2,f +7073,57529,135,2,f +7073,57533,135,1,f +7073,57539,135,1,f +7073,57541,0,2,f +7073,57702,41,1,f +7075,2431,0,2,f +7075,2445,8,3,f +7075,2465,7,1,f +7075,3004,7,5,f +7075,3008,7,5,f +7075,3009,7,1,f +7075,3010,7,3,f +7075,30145,7,3,f +7075,3020,7,2,f +7075,3021,8,4,f +7075,3022,1,1,f +7075,3022,8,2,f +7075,3034,7,1,f +7075,30364,7,1,f +7075,30365,7,1,f +7075,3069b,8,5,f +7075,3070b,8,2,f +7075,3070b,8,1,t +7075,3537stk01,9999,1,t +7075,3626bpb0126,14,1,f +7075,3626bpb0161,14,1,f +7075,3666,7,1,f +7075,3747a,7,1,f +7075,3794a,7,2,f +7075,3957a,4,1,f +7075,4162,0,1,f +7075,4162,8,13,f +7075,43085,28,3,f +7075,4495b,14,1,f +7075,4515,28,1,f +7075,45917,14,1,f +7075,45917,1,1,f +7075,45918,15,4,f +7075,46303,15,1,f +7075,46303,0,1,f +7075,6091,1,2,f +7075,6179,7,2,f +7075,6187,1,2,f +7075,6636,8,2,f +7075,73983,7,2,f +7075,970c00,272,1,f +7075,970c00,19,1,f +7075,973pb0275c01,272,1,f +7075,973pb0276c01,73,1,f +7075,rb00185,19,1,f +7076,2335,15,2,f +7076,2412b,4,2,f +7076,2431pr0042,4,1,f +7076,2431pr0043,4,1,f +7076,2436,4,3,f +7076,2555,14,1,f +7076,2877,72,2,f +7076,3001,72,1,f +7076,30027b,4,4,f +7076,30028,0,4,f +7076,3020,15,3,f +7076,3021,4,2,f +7076,3021,72,1,f +7076,3022,15,1,f +7076,3023,4,2,f +7076,3023,2,3,f +7076,3023,72,2,f +7076,3024,4,1,f +7076,3024,15,2,f +7076,3031,0,1,f +7076,3034,4,2,f +7076,30367cpr0017,4,1,f +7076,30414,71,1,f +7076,3068b,15,1,f +7076,3069b,15,10,f +7076,3069b,4,6,f +7076,3705,0,2,f +7076,3710,4,1,f +7076,3710,71,2,f +7076,3710,72,1,f +7076,3710,14,1,f +7076,3710,15,1,f +7076,3738,71,2,f +7076,3794b,71,1,f +7076,3794b,4,3,f +7076,3794b,0,4,f +7076,3795,1,1,f +7076,3846,71,1,f +7076,3941,72,2,f +7076,3957a,71,2,f +7076,4081b,71,2,f +7076,4282,15,1,f +7076,43719,15,1,f +7076,4477,72,2,f +7076,48183,2,1,f +7076,48336,0,1,f +7076,4865a,4,1,f +7076,4865a,2,1,f +7076,48729b,0,2,f +7076,48729b,0,1,t +7076,50950,4,2,f +7076,50951,0,4,f +7076,52107,0,3,f +7076,58827,72,2,f +7076,60479,0,2,f +7076,6141,34,1,t +7076,6141,34,1,f +7076,6141,36,5,f +7076,6141,36,2,t +7076,6157,0,4,f +7076,61678,15,1,f +7076,63868,71,2,f +7076,6636,1,2,f +7076,87079,15,1,f +7076,87079pr0019,4,1,f +7076,87079pr0020,4,1,f +7076,93587pr0006,4,1,f +7076,93589pr0001,15,1,f +7076,93590,4,1,f +7076,93591pr0010,4,1,f +7076,93595pr0002,15,4,f +7078,2780,0,5,f +7078,32013,71,1,f +7078,32062,0,1,f +7078,32174,15,5,f +7078,32199,72,1,f +7078,3705,0,1,f +7078,43093,1,1,f +7078,4519,71,2,f +7078,47306,272,1,f +7078,47328,272,2,f +7078,50898,15,4,f +7078,53543,272,2,f +7078,53544pat0001,272,2,f +7078,53545,272,1,f +7078,53547,148,1,f +7078,53548pat0001,272,2,f +7078,53549pat0001,272,2,f +7078,53550,148,1,f +7078,53558pat01,27,1,f +7078,53561,272,1,f +7078,53585,0,1,f +7078,54271,148,1,f +7078,54821,42,4,f +7078,55825,148,1,f +7078,59426,72,1,f +7078,6558,0,1,f +7079,2357,7,2,f +7079,2376,0,1,f +7079,2377,0,2,f +7079,2412b,14,2,f +7079,2412b,4,10,f +7079,2412b,0,4,f +7079,2419,4,1,f +7079,2450,4,2,f +7079,2450,1,2,f +7079,2462,1,2,f +7079,2540,7,3,f +7079,2625,1,1,f +7079,2625,4,1,f +7079,2626,1,1,f +7079,2654,7,8,f +7079,2877,4,4,f +7079,2877,7,3,f +7079,2877,14,4,f +7079,298c02,15,2,f +7079,3003,15,2,f +7079,3004,1,4,f +7079,3004,0,1,f +7079,3009p26,15,14,f +7079,3010,1,2,f +7079,3010,15,5,f +7079,3020,14,1,f +7079,3020,0,2,f +7079,3020,4,2,f +7079,3021,1,2,f +7079,3021,4,2,f +7079,3021,15,2,f +7079,3022,4,2,f +7079,3024,36,3,f +7079,3024,34,1,f +7079,3024,46,2,f +7079,3028,1,1,f +7079,3031,15,4,f +7079,3033,15,2,f +7079,3033,1,1,f +7079,3033,7,1,f +7079,3037,0,1,f +7079,3039,33,2,f +7079,3040b,15,4,f +7079,3069b,4,6,f +7079,3176,4,1,f +7079,32000,15,2,f +7079,3403c01,4,1,f +7079,3460,15,1,f +7079,3622,15,6,f +7079,3641,0,8,f +7079,3660p02,15,3,f +7079,3666,4,3,f +7079,3678a,1,2,f +7079,3678a,0,1,f +7079,3678a,15,2,f +7079,3795,4,1,f +7079,3795,0,1,f +7079,3830,1,2,f +7079,3830,15,2,f +7079,3831,1,2,f +7079,3831,15,2,f +7079,4289,15,1,f +7079,4477,4,4,f +7079,4477,0,2,f +7079,4596,4,1,f +7079,4600,0,2,f +7079,4600,7,2,f +7079,4624,14,4,f +7079,4624,15,4,f +7079,56823,0,1,f +7079,6111,1,4,f +7079,6141,46,1,f +7079,6141,0,4,f +7079,6141,7,12,f +7079,6191,15,2,f +7079,6564,15,1,f +7079,6565,15,1,f +7079,73037,4,1,f +7080,2486,14,4,f +7080,2486,15,8,f +7080,30256,7,48,f +7080,30258p01,14,12,f +7080,30258p02,14,4,f +7080,30258p03,15,4,f +7080,30258p04,15,4,f +7080,30258p05,15,4,f +7080,30259p02,15,4,f +7080,30259p03,15,4,f +7080,30259p04,15,4,f +7080,30259p05,14,4,f +7080,30259p06,15,4,f +7080,30261p01,15,4,f +7080,30261p02,15,4,f +7080,30261p03,15,4,f +7080,30261p04,15,4,f +7080,3062b,33,8,f +7080,3062b,46,8,f +7080,4740,15,24,f +7080,890p01,15,4,f +7080,892pb06,14,4,f +7081,10509pr0003,15,1,f +7081,11055pr0007,14,1,f +7081,12825,0,2,f +7081,13562,148,1,t +7081,13562,179,2,f +7081,13562,179,1,t +7081,13562,148,1,f +7081,13565,15,1,f +7081,2420,70,2,f +7081,2524,70,2,f +7081,2527,70,1,f +7081,2540,72,1,f +7081,2926,0,1,f +7081,3004,15,1,f +7081,30135,272,3,f +7081,30136,70,4,f +7081,30137,70,4,f +7081,30141,72,2,f +7081,3020,19,1,f +7081,3022,19,1,f +7081,3023,15,1,f +7081,3062b,0,5,f +7081,3068b,0,1,f +7081,33057,484,1,f +7081,3626cpr0472,78,1,f +7081,3626cpr0593,78,2,f +7081,3626cpr1191,78,1,f +7081,3626cpr1193,78,1,f +7081,3794b,4,1,f +7081,3795,70,1,f +7081,4489b,0,2,f +7081,4491b,70,1,f +7081,4528,179,1,f +7081,4589,19,1,f +7081,50304,28,1,f +7081,50305,28,1,f +7081,6141,47,1,t +7081,6141,47,1,f +7081,61976,19,1,f +7081,63965,70,2,f +7081,64644,297,1,f +7081,64647,57,1,t +7081,64647,57,2,f +7081,73983,71,1,f +7081,84943,148,1,f +7081,970c00,379,3,f +7081,970c00pr0502,308,1,f +7081,973pr2340c01,0,1,f +7081,973pr2342c01,272,3,f +7084,2357,72,4,f +7084,2357,71,3,f +7084,2420,2,4,f +7084,2431,71,4,f +7084,2431,2,8,f +7084,2431,0,3,f +7084,2456,2,1,f +7084,2456,71,1,f +7084,2540,72,3,f +7084,2555,0,8,f +7084,298c02,0,1,f +7084,3001,2,7,f +7084,3002,72,2,f +7084,3002,19,5,f +7084,3004,71,17,f +7084,3004,72,5,f +7084,3004,2,10,f +7084,30043,71,1,f +7084,3005,2,4,f +7084,3005,14,13,f +7084,3005,72,2,f +7084,3005,71,11,f +7084,3008,71,16,f +7084,3008,2,7,f +7084,3009,71,11,f +7084,3009,2,11,f +7084,3010,2,6,f +7084,3010,72,2,f +7084,30150,14,1,f +7084,3020,72,3,f +7084,3020,2,5,f +7084,3020,71,3,f +7084,3021,0,2,f +7084,3021,14,1,f +7084,3021,2,1,f +7084,3021,72,8,f +7084,3022,0,3,f +7084,3022,72,5,f +7084,3022,2,3,f +7084,3022,4,2,f +7084,3023,47,2,f +7084,3023,0,7,f +7084,3023,72,14,f +7084,3023,2,4,f +7084,3023,71,3,f +7084,3024,0,2,f +7084,3024,71,3,f +7084,3024,14,2,f +7084,3024,47,2,f +7084,3024,2,2,f +7084,3024,72,7,f +7084,3030,0,1,f +7084,3031,14,1,f +7084,3034,72,4,f +7084,3034,71,3,f +7084,3036,72,4,f +7084,3036,2,1,f +7084,3037,14,4,f +7084,30374,0,2,f +7084,30374,71,3,f +7084,3039,2,2,f +7084,3039,72,1,f +7084,3040b,2,1,f +7084,30414,72,3,f +7084,30586,71,6,f +7084,3062b,47,2,f +7084,3068b,2,4,f +7084,3069b,0,9,f +7084,3069b,72,6,f +7084,3069b,2,14,f +7084,3069b,47,14,f +7084,3069b,71,4,f +7084,3070b,0,6,f +7084,3070b,2,4,f +7084,3070b,72,12,f +7084,32016,71,1,f +7084,32039,71,1,f +7084,32054,0,5,f +7084,32062,0,5,f +7084,32064b,2,2,f +7084,32073,71,1,f +7084,32123b,14,3,f +7084,32123b,71,10,f +7084,32184,71,2,f +7084,32449,4,2,f +7084,32449,72,2,f +7084,3456,72,2,f +7084,3460,14,7,f +7084,3460,2,11,f +7084,3460,71,9,f +7084,3622,2,4,f +7084,3622,72,3,f +7084,3622,0,8,f +7084,3623,72,10,f +7084,3623,0,3,f +7084,3660,71,9,f +7084,3660,2,2,f +7084,3665,2,2,f +7084,3666,71,2,f +7084,3666,2,13,f +7084,3673,71,1,f +7084,3684b,2,4,f +7084,3700,0,1,f +7084,3701,0,2,f +7084,3701,71,7,f +7084,3701,72,2,f +7084,3702,0,1,f +7084,3702,71,2,f +7084,3703,0,1,f +7084,3708,0,2,f +7084,3710,72,5,f +7084,3710,2,20,f +7084,3749,19,4,f +7084,3754,47,2,f +7084,3794b,2,2,f +7084,3795,71,3,f +7084,3795,72,2,f +7084,3795,2,3,f +7084,3894,0,2,f +7084,3937,4,2,f +7084,3941,25,1,f +7084,3941,47,2,f +7084,3941,2,2,f +7084,3942c,71,1,f +7084,3956,71,1,f +7084,3957a,42,4,f +7084,4032a,72,2,f +7084,4032a,0,9,f +7084,4081b,4,2,f +7084,4150pr0022,7,1,f +7084,4162,0,8,f +7084,4162,2,5,f +7084,4162,14,2,f +7084,42446,72,1,f +7084,4286,2,2,f +7084,43093,1,4,f +7084,43337,15,2,f +7084,44728,14,4,f +7084,44728,72,2,f +7084,44728,2,4,f +7084,4599b,0,3,f +7084,48336,0,1,f +7084,4864b,47,12,f +7084,54200,2,19,f +7084,54200,72,5,f +7084,54200,0,2,f +7084,58380,71,1,f +7084,58381,71,1,f +7084,59426,72,2,f +7084,59443,0,1,f +7084,59900,71,3,f +7084,60483,71,1,f +7084,60484,72,1,f +7084,60581,47,1,f +7084,60583a,14,2,f +7084,60897,72,14,f +7084,60897,4,1,f +7084,6134,1,2,f +7084,6141,4,2,f +7084,6141,57,3,f +7084,6141,1,6,f +7084,6141,36,3,f +7084,6141,72,6,f +7084,6141,33,3,f +7084,6141,25,16,f +7084,6141,47,4,f +7084,6231,4,4,f +7084,63864,72,3,f +7084,63868,71,2,f +7084,63965,71,4,f +7084,64644,0,1,f +7084,6541,2,2,f +7084,6558,1,4,f +7084,6628,0,2,f +7084,6632,71,2,f +7084,6636,71,7,f +7084,85543,15,1,f +7084,85984,72,2,f +7084,87079,14,4,f +7084,87079,15,7,f +7084,87079,71,2,f +7084,87079,0,8,f +7084,87087,0,4,f +7084,87087,15,4,f +7084,88072,72,1,f +7084,92947,71,2,f +7084,98549,71,1,f +7085,3001a,1,1,f +7085,3001a,14,12,f +7085,3004,47,2,f +7085,3005,1,2,f +7085,3010,47,1,f +7085,3010pb035e,1,1,f +7085,3021,1,2,f +7085,3029,1,1,f +7085,3030,1,3,f +7085,3137c01,0,1,f +7085,3137c02,0,4,f +7085,3139,0,2,f +7085,3183b,1,1,f +7085,3184,1,1,f +7085,3190,14,4,f +7085,3191,14,4,f +7085,7b,0,8,f +7087,3010,1,2,f +7087,3460,4,4,f +7087,3460,15,3,f +7087,3710,15,3,f +7087,3710,4,3,f +7089,2412b,7,1,f +7089,2420,4,6,f +7089,2420,0,8,f +7089,2431,0,2,f +7089,2450,0,2,f +7089,2450,4,4,f +7089,2585,0,1,f +7089,2711,0,2,f +7089,2711,7,2,f +7089,2717,1,2,f +7089,2730,7,2,f +7089,2730,4,5,f +7089,2780,0,27,f +7089,2819,7,1,f +7089,2825,0,2,f +7089,2850a,7,6,f +7089,2851,8,6,f +7089,2852,7,6,f +7089,2853,7,6,f +7089,2854,8,3,f +7089,2905,0,2,f +7089,2909c03,0,2,f +7089,2995,0,4,f +7089,2996,15,4,f +7089,3004,4,2,f +7089,3005,7,1,f +7089,3020,4,1,f +7089,3021,4,2,f +7089,3021,7,4,f +7089,3022,14,2,f +7089,3022,7,1,f +7089,3023,4,4,f +7089,3023,1,1,f +7089,3023,7,2,f +7089,3023,0,8,f +7089,3024,0,4,f +7089,3039,4,2,f +7089,3040b,7,1,f +7089,3040b,4,2,f +7089,3069b,7,1,f +7089,3069b,0,4,f +7089,3070b,0,2,f +7089,32005a,0,2,f +7089,3460,4,1,f +7089,3460,0,4,f +7089,3460,14,4,f +7089,3460,7,1,f +7089,3623,0,2,f +7089,3623,4,4,f +7089,3647,7,5,f +7089,3648a,7,1,f +7089,3650c,7,1,f +7089,3651,7,8,f +7089,3660,4,6,f +7089,3665,0,2,f +7089,3665,7,1,f +7089,3666,0,5,f +7089,3666,7,2,f +7089,3673,7,4,f +7089,3676,0,2,f +7089,3700,0,5,f +7089,3700,7,3,f +7089,3700,4,2,f +7089,3701,7,4,f +7089,3701,0,3,f +7089,3702,7,2,f +7089,3702,0,2,f +7089,3702,4,8,f +7089,3703,0,2,f +7089,3703,7,2,f +7089,3704,0,12,f +7089,3705,0,6,f +7089,3706,0,8,f +7089,3707,0,4,f +7089,3708,0,1,f +7089,3709,0,3,f +7089,3710,0,3,f +7089,3710,7,1,f +7089,3710,14,2,f +7089,3713,7,14,f +7089,3737,0,3,f +7089,3738,0,1,f +7089,3738,4,1,f +7089,3747b,4,4,f +7089,3749,7,12,f +7089,3795,0,3,f +7089,3795,4,4,f +7089,3832,4,1,f +7089,3894,7,3,f +7089,3894,0,2,f +7089,3895,0,3,f +7089,3941,46,1,f +7089,3956,0,2,f +7089,4019,7,3,f +7089,4032a,4,1,f +7089,4143,7,5,f +7089,4150,4,1,f +7089,4175,4,2,f +7089,4262,4,2,f +7089,4265b,7,29,f +7089,4273b,7,6,f +7089,4274,7,15,f +7089,4477,0,1,f +7089,4477,4,3,f +7089,4519,0,9,f +7089,6536,7,10,f +7089,6538a,7,2,f +7089,6541,0,2,f +7089,6542a,8,1,f +7089,6553,7,2,f +7089,6558,0,8,f +7089,6571,7,2,f +7089,6572,1,4,f +7089,6573,8,1,f +7089,6574,7,1,f +7089,6575,7,4,f +7089,70278,0,1,f +7089,73129,7,3,f +7089,9244,7,1,f +7089,rb00164,0,1,f +7090,3626cpr0920,14,1,f +7090,3626cpr1234,14,1,f +7090,3626cpr1665,14,1,f +7090,62698,0,1,f +7090,64644,308,1,f +7090,85974,226,1,f +7090,88283,308,1,f +7090,89801,80,1,f +7090,92081,84,1,f +7090,92084pr0001,70,1,f +7090,970c00,71,1,f +7090,970c00,15,1,f +7090,970c00,0,1,f +7090,973c01,15,1,f +7090,973pr1694c01,71,1,f +7090,973pr1724bc01,15,1,f +7094,3023,15,1,f +7094,3068bpr0138,15,1,f +7094,4599b,0,1,f +7094,4599b,0,1,t +7094,48336,15,1,f +7094,6141,46,1,f +7094,6141,46,1,t +7094,6141,57,1,t +7094,6141,0,1,f +7094,6141,57,1,f +7094,6141,0,1,t +7096,3021,70,1,f +7096,3062b,19,4,f +7096,33057,484,1,f +7096,3899,4,1,f +7096,40234,71,1,f +7097,4186a,7,1,f +7098,3626cpr0966,4,1,f +7099,10247,71,1,f +7099,11090,0,2,f +7099,11477,326,4,f +7099,12607ass02pr04,10,1,f +7099,12607ass03pr04,2,1,f +7099,12609pr0001,28,2,f +7099,12617,179,1,f +7099,12618,179,1,f +7099,12825,0,2,f +7099,13233,85,1,f +7099,13965,0,4,f +7099,15207,0,4,f +7099,15332,0,2,f +7099,15462,28,2,f +7099,15534,72,1,f +7099,15706,0,2,f +7099,2412b,320,4,f +7099,2412b,19,1,f +7099,2420,14,2,f +7099,2420,72,2,f +7099,2431,41,3,f +7099,2431,85,9,f +7099,2431,71,1,f +7099,2445,71,2,f +7099,2449,72,4,f +7099,2453a,72,2,f +7099,2454a,72,2,f +7099,2454a,0,2,f +7099,2458,72,2,f +7099,2489,70,1,f +7099,2540,72,4,f +7099,2653,71,2,f +7099,2654,57,2,f +7099,2744,15,2,f +7099,2780,0,2,f +7099,2817,71,3,f +7099,2817,0,1,f +7099,298c02,4,1,f +7099,3003,72,2,f +7099,3003,85,2,f +7099,3004,320,2,f +7099,3005,47,6,f +7099,3005,33,4,f +7099,30056,0,1,f +7099,3009,72,4,f +7099,3010,71,2,f +7099,30136,70,2,f +7099,30136,72,6,f +7099,30173a,297,2,f +7099,3020,0,3,f +7099,3020,70,4,f +7099,3022,0,1,f +7099,3023,320,11,f +7099,3023,0,4,f +7099,3023,72,8,f +7099,30236,72,2,f +7099,30292,272,2,f +7099,3033,0,1,f +7099,3033,71,2,f +7099,3034,72,2,f +7099,3034,0,1,f +7099,3034,71,1,f +7099,30355,71,1,f +7099,30356,71,1,f +7099,30363,72,2,f +7099,3040b,72,6,f +7099,3044b,72,2,f +7099,3045,72,4,f +7099,30602,14,1,f +7099,3062b,320,9,f +7099,3068b,19,3,f +7099,3068b,320,1,f +7099,3069b,72,5,f +7099,3069b,41,2,f +7099,3069b,85,1,f +7099,3069b,14,2,f +7099,3176,71,1,f +7099,32000,72,6,f +7099,32028,14,4,f +7099,32028,0,6,f +7099,32054,71,4,f +7099,32059,71,2,f +7099,32064b,4,1,f +7099,3245c,71,2,f +7099,32525,72,2,f +7099,3298,72,4,f +7099,3307,71,2,f +7099,3460,70,1,f +7099,3626cpr1150,0,2,f +7099,3626cpr1450,78,1,f +7099,3648b,72,1,f +7099,3660,72,3,f +7099,3666,72,4,f +7099,3666,70,12,f +7099,3679,71,1,f +7099,3680,0,1,f +7099,3700,71,3,f +7099,3701,0,1,f +7099,3710,320,5,f +7099,3710,15,2,f +7099,3710,0,2,f +7099,3713,4,1,f +7099,3794b,0,6,f +7099,3795,4,1,f +7099,3832,0,2,f +7099,40234,71,1,f +7099,4035,0,6,f +7099,4162,4,2,f +7099,41769,71,1,f +7099,41769,14,1,f +7099,41770,71,1,f +7099,41770,14,1,f +7099,41862,71,1,f +7099,4274,1,1,f +7099,43093,1,2,f +7099,43713,14,1,f +7099,43719,4,1,f +7099,43888,71,2,f +7099,44661,15,2,f +7099,44676,72,2,f +7099,4477,72,1,f +7099,48336,0,1,f +7099,48336,71,2,f +7099,50943,71,1,f +7099,51739,14,2,f +7099,53451,179,8,f +7099,54200,72,2,f +7099,54383,71,1,f +7099,54384,71,1,f +7099,57895,47,4,f +7099,59232,179,1,f +7099,59900,182,1,f +7099,59900,71,8,f +7099,60169,71,1,f +7099,60470a,0,3,f +7099,60475a,0,4,f +7099,60477,72,4,f +7099,60479,0,4,f +7099,60581,72,2,f +7099,60596,0,4,f +7099,6126b,57,2,f +7099,6141,0,24,f +7099,6141,35,3,f +7099,6141,1000,12,f +7099,6141,179,6,f +7099,63864,72,2,f +7099,63864,1,2,f +7099,63868,71,2,f +7099,64644,0,2,f +7099,6636,0,1,f +7099,6636,72,2,f +7099,75c03,70,2,f +7099,75c06,0,1,f +7099,85959pat0003,36,1,f +7099,85984,0,2,f +7099,87079,71,1,f +7099,87079,4,2,f +7099,87087,72,4,f +7099,87580,0,1,f +7099,87580,72,1,f +7099,87580,85,4,f +7099,88811,179,6,f +7099,92338,72,1,f +7099,92438,71,1,f +7099,92593,0,4,f +7099,92946,0,2,f +7099,92950,72,1,f +7099,93058,297,3,f +7099,93273,326,1,f +7099,96874,25,1,t +7099,970c00,0,2,f +7099,970c00pr0472,10,1,f +7099,970c00pr0473,2,1,f +7099,970c00pr0681,0,1,f +7099,973pr2262c01,10,1,f +7099,973pr2263c01,2,1,f +7099,973pr2264c01,0,2,f +7099,973pr2706c01,0,1,f +7099,98138,326,2,f +7099,98139,179,2,f +7099,99415,148,1,f +7099,99781,71,2,f +7100,3004,72,1,f +7100,3021,0,1,f +7100,3176,0,1,f +7100,32013,0,2,f +7100,32062,0,1,f +7100,32062,0,1,t +7100,32064b,72,3,f +7100,3626bpb0165,14,1,f +7100,3673,71,1,t +7100,3673,71,1,f +7100,3707,0,1,f +7100,4195285,89,1,f +7100,43373,25,1,f +7100,43374,15,1,f +7100,43702,25,1,f +7100,45522,110,1,f +7100,970c00,110,1,f +7100,973bpb179c01,110,1,f +7101,3647,7,12,f +7101,3648a,7,12,f +7101,3650a,7,4,f +7101,3651,7,8,f +7101,3673,7,8,f +7101,3700,1,12,f +7101,3702,1,8,f +7101,3705,0,4,f +7101,3706,0,6,f +7101,3708,0,4,f +7101,3709,4,16,f +7101,3710,4,16,f +7101,3713,7,4,f +7101,3895,1,8,f +7102,14728,0,1,f +7102,2412b,15,18,f +7102,2420,15,2,f +7102,2431,72,4,f +7102,2431,71,3,f +7102,2431,4,2,f +7102,2432,15,1,f +7102,2435,2,1,f +7102,2437,41,1,f +7102,2447,40,1,f +7102,2447,40,1,t +7102,2453a,4,3,f +7102,2454a,4,18,f +7102,2456,1,2,f +7102,2456,15,2,f +7102,2465,4,2,f +7102,2465,15,4,f +7102,2525,4,1,f +7102,2569,0,1,f +7102,2569,0,1,t +7102,2780,0,3,f +7102,2780,0,1,t +7102,298c02,14,1,t +7102,298c02,14,2,f +7102,30000,72,2,f +7102,3001,15,2,f +7102,3001,71,1,f +7102,3002,4,2,f +7102,3002,1,1,f +7102,3003,15,3,f +7102,3005,0,1,f +7102,3008,15,1,f +7102,3009,15,2,f +7102,3009,4,10,f +7102,3010,4,8,f +7102,30162,72,2,f +7102,30179,72,1,f +7102,3020,72,9,f +7102,3020,4,2,f +7102,3021,71,2,f +7102,3022,15,3,f +7102,3022,4,1,f +7102,3023,71,13,f +7102,3023,46,4,f +7102,3023,0,1,f +7102,3023,15,1,f +7102,30237a,4,2,f +7102,3024,47,1,f +7102,3024,33,4,f +7102,3024,72,2,f +7102,3030,72,2,f +7102,3031,72,2,f +7102,3033,72,3,f +7102,3034,71,1,f +7102,3036,72,1,f +7102,30365,4,2,f +7102,3037,4,1,f +7102,30374,15,1,f +7102,30383,71,2,f +7102,3039pr0014,0,1,f +7102,3040bpr0003,71,1,f +7102,30552,71,2,f +7102,30553,72,2,f +7102,30586,71,2,f +7102,3062b,14,2,f +7102,3068b,71,6,f +7102,3068b,15,4,f +7102,3068bpr0136,72,2,f +7102,3069b,0,1,f +7102,3069b,33,4,f +7102,3069b,71,3,f +7102,3069bpr0030,72,2,f +7102,32002,72,2,f +7102,32002,72,1,t +7102,32028,15,5,f +7102,32123b,14,4,f +7102,32123b,14,1,t +7102,32140,4,1,f +7102,32271,4,2,f +7102,32278,15,2,f +7102,3245b,4,4,f +7102,3298,72,3,f +7102,3460,72,2,f +7102,3622,4,2,f +7102,3622,15,1,f +7102,3626bpr0126,14,1,f +7102,3626bpr0282,14,1,f +7102,3626bpr0325,14,1,f +7102,3626bpr0387,14,1,f +7102,3660,4,3,f +7102,3665,4,4,f +7102,3666,15,3,f +7102,3666,4,3,f +7102,3673,71,4,f +7102,3673,71,1,t +7102,3679,71,2,f +7102,3680,0,2,f +7102,3700,15,8,f +7102,3705,0,2,f +7102,3710,72,4,f +7102,3710,15,9,f +7102,3710,4,4,f +7102,3738,4,1,f +7102,3741,2,2,f +7102,3741,2,1,t +7102,3742,15,1,t +7102,3742,4,1,t +7102,3742,15,3,f +7102,3742,4,3,f +7102,3749,19,1,f +7102,3754,4,2,f +7102,3794a,71,1,f +7102,3794a,15,4,f +7102,3795,1,1,f +7102,3795,4,1,f +7102,3829c01,14,2,f +7102,3832,72,2,f +7102,3834,80,1,f +7102,3834,15,3,f +7102,3835,0,2,f +7102,3836,70,1,f +7102,3837,72,1,f +7102,3838,14,1,f +7102,3849,0,1,f +7102,3852b,191,1,f +7102,3865,72,1,f +7102,3899,47,1,f +7102,3899,14,2,f +7102,3937,72,2,f +7102,3941,71,1,f +7102,3962b,0,2,f +7102,4070,71,4,f +7102,4079,14,5,f +7102,4083,14,5,f +7102,4085c,15,6,f +7102,41532,0,1,f +7102,41539,72,2,f +7102,4162,71,4,f +7102,4162,15,1,f +7102,4175,71,2,f +7102,4176,41,1,f +7102,4207,15,1,f +7102,4208,0,1,f +7102,4209,4,1,f +7102,4216,15,18,f +7102,4216,4,29,f +7102,4217,4,4,f +7102,4218,41,16,f +7102,4219,15,2,f +7102,4286,4,6,f +7102,43337,4,2,f +7102,4349,0,1,f +7102,44728,4,2,f +7102,44809,71,1,f +7102,4488,0,6,f +7102,4519,71,3,f +7102,4523,1,1,f +7102,4533,15,1,f +7102,45677,4,1,f +7102,4599a,14,1,t +7102,4599a,71,1,f +7102,4599a,14,2,f +7102,4623,14,2,f +7102,4733,15,2,f +7102,48336,71,2,f +7102,4865a,4,2,f +7102,50745,72,10,f +7102,51595,72,3,f +7102,51858,15,1,f +7102,52031,4,1,f +7102,52036,72,1,f +7102,52037,72,1,f +7102,52038,4,2,f +7102,52501,4,3,f +7102,53586,135,2,f +7102,54200,46,2,f +7102,54200,46,1,t +7102,54200,33,2,t +7102,54200,4,2,t +7102,54200,47,4,f +7102,54200,4,10,f +7102,54200,47,2,t +7102,54200,182,2,f +7102,54200,182,1,t +7102,54200,33,6,f +7102,54200,36,4,f +7102,54200,36,2,t +7102,55013,72,2,f +7102,57779,4,2,f +7102,57783,41,1,f +7102,57894,72,6,f +7102,57895,41,6,f +7102,58181,41,6,f +7102,6014b,15,10,f +7102,6015,0,10,f +7102,6019,4,2,f +7102,60849,14,1,f +7102,6091,72,2,f +7102,6111,4,2,f +7102,6134,0,2,f +7102,6157,71,2,f +7102,6158,72,1,f +7102,6179,71,2,f +7102,6180,71,1,f +7102,6231,4,2,f +7102,6536,15,2,f +7102,6541,4,6,f +7102,6558,0,2,f +7102,6587,72,1,f +7102,6632,4,2,f +7102,6636,71,7,f +7102,76041c01,72,1,f +7102,7945stk01,9999,1,t +7102,92410,4,1,f +7102,970c00,0,4,f +7102,973pr1187c01,0,4,f +7103,30173b,0,1,f +7103,3626bpr0747,14,1,f +7103,63965,297,1,f +7103,64567,71,1,f +7103,970c00,15,1,f +7103,973pr2681c01,15,1,f +7103,98132,179,1,f +7103,98133,15,1,f +7103,98139,297,1,f +7104,56823,0,1,f +7104,rb00167,0,40,f +7104,rb00169,0,30,f +7104,rb00170,0,30,f +7105,3001a,14,1,f +7105,3004,47,1,f +7105,3005,1,2,f +7105,3010,0,2,f +7105,3010,14,2,f +7105,3010p30,14,1,f +7105,3010pb035e,14,1,f +7105,3020,0,1,f +7105,3023,0,9,f +7105,3037,47,1,f +7105,3062a,0,12,f +7105,3137c01,0,1,f +7105,3137c02,0,3,f +7105,3139,0,2,f +7105,3228a,1,3,f +7105,7b,0,6,f +7105,967,14,1,f +7105,968,14,1,f +7105,969,7,1,f +7106,2335pr02,15,2,f +7106,2417,10,5,f +7106,2431,14,2,f +7106,2432,2,1,f +7106,2432,73,1,f +7106,2446pb09,2,1,f +7106,2446pb10,1,1,f +7106,2447,42,1,f +7106,2447,41,1,f +7106,2447,42,1,t +7106,2447,41,1,t +7106,2458,7,4,f +7106,2458,14,2,f +7106,2460,14,4,f +7106,2465,19,2,f +7106,2488,6,5,f +7106,2540,2,1,f +7106,2540,14,1,f +7106,2555,14,4,f +7106,2555,0,8,f +7106,2780,0,44,f +7106,2905,7,1,f +7106,3001,14,6,f +7106,30027b,73,2,f +7106,30027b,2,2,f +7106,30028,0,4,f +7106,3003,8,2,f +7106,3003,14,2,f +7106,3004,19,4,f +7106,3004,8,4,f +7106,3007,1,2,f +7106,3008,0,1,f +7106,3010,14,4,f +7106,30115,4,1,f +7106,30136,6,6,f +7106,30137,6,2,f +7106,30169,0,2,f +7106,30176,2,10,f +7106,3021,8,8,f +7106,3021,2,4,f +7106,3022,8,1,f +7106,3022,0,1,f +7106,3023,14,1,f +7106,3023,2,2,f +7106,3023,1,1,f +7106,30237a,0,5,f +7106,30238,0,1,f +7106,30240,7,1,f +7106,3032,0,2,f +7106,3034,0,2,f +7106,3034,8,2,f +7106,3040b,8,4,f +7106,30602pb015,2,1,f +7106,30603pb11,73,1,f +7106,30624,0,2,f +7106,3062b,34,2,f +7106,3062b,6,3,f +7106,3069b,14,2,f +7106,32002,8,7,f +7106,32013,8,2,f +7106,32062,0,2,f +7106,32271,25,4,f +7106,32449,7,1,f +7106,32524,6,2,f +7106,32525,8,1,f +7106,32556,7,2,f +7106,3626bpah,14,1,f +7106,3626bpx88,14,1,f +7106,3700,14,4,f +7106,3710,25,4,f +7106,3795,0,2,f +7106,3832,7,2,f +7106,3839b,7,2,f +7106,3941,6,8,f +7106,40379,2,5,f +7106,40490,15,2,f +7106,40902,8,2,f +7106,4162,7,4,f +7106,4162,6,2,f +7106,41669,25,2,f +7106,41752,8,1,f +7106,41854pb07,27,2,f +7106,41854pb08,1,1,f +7106,41862,1,1,f +7106,41864,0,4,f +7106,41865,0,4,f +7106,4207,6,2,f +7106,42289,8,2,f +7106,4274,7,5,f +7106,4274,1,5,f +7106,4282,6,2,f +7106,4286,25,2,f +7106,42936,8,6,f +7106,42936,28,5,f +7106,42938,28,8,f +7106,42941,28,2,f +7106,42942,28,2,f +7106,4477,0,8,f +7106,4519,0,1,f +7106,4600,0,2,f +7106,4865a,14,2,f +7106,6014b,2,2,f +7106,6014b,73,2,f +7106,6015,0,4,f +7106,6019,7,4,f +7106,6019,4,2,f +7106,6046,8,1,f +7106,6141,0,3,f +7106,6141,42,3,f +7106,6141,4,6,f +7106,6232,14,2,f +7106,63965,15,2,f +7106,6538b,4,2,f +7106,6553,8,2,f +7106,6628,0,2,f +7106,75c16,14,4,f +7106,rb00168,0,1,f +7106,rb00168,0,3,t +7106,x351,0,1,f +7106,x351,14,1,f +7108,2412b,72,1,f +7108,2419,0,2,f +7108,2540,71,1,f +7108,2654,72,3,f +7108,2780,0,1,f +7108,2780,0,1,t +7108,2825,0,2,f +7108,2877,0,1,f +7108,30136,72,1,f +7108,3020,72,1,f +7108,3021,1,2,f +7108,3022,72,2,f +7108,3023,1,1,f +7108,3032,0,1,f +7108,3034,0,1,f +7108,30363,1,1,f +7108,3039,1,1,f +7108,3039,72,2,f +7108,30408pr0002,15,3,f +7108,30408px5,0,1,f +7108,3068b,1,1,f +7108,32064b,72,1,f +7108,32530,72,2,f +7108,3298,1,2,f +7108,3626b,0,4,f +7108,3660,71,2,f +7108,3666,0,2,f +7108,3710,0,2,f +7108,3713,71,1,f +7108,3713,71,1,t +7108,3747b,0,1,f +7108,3940b,0,1,f +7108,4081b,0,2,f +7108,41883,40,1,f +7108,42610,71,2,f +7108,43093,1,2,f +7108,44294,71,1,f +7108,4519,71,1,f +7108,4589,36,2,f +7108,48336,0,1,f +7108,4864b,0,2,f +7108,57899,0,2,f +7108,58247,0,2,f +7108,60470a,0,1,f +7108,6232,72,2,f +7108,6541,1,2,f +7108,6632,71,2,f +7108,7667stk01,9999,1,t +7108,970c00,0,1,f +7108,970x026,15,3,f +7108,973pr0520c01,15,3,f +7108,973pr1342c01,0,1,f +7109,2838c01,7,1,f +7110,2362b,0,2,f +7110,2412b,0,1,f +7110,2432,1,2,f +7110,2456,1,1,f +7110,2540,0,2,f +7110,2921,1,12,f +7110,3004,0,4,f +7110,3004,1,21,f +7110,3009,1,1,f +7110,3020,1,1,f +7110,3023,1,2,f +7110,3037,1,6,f +7110,3040b,1,6,f +7110,3062b,8,2,f +7110,3068b,0,1,f +7110,32064b,15,1,f +7110,3297,0,4,f +7110,3623,1,2,f +7110,3660,1,4,f +7110,3794a,0,1,f +7110,3941,0,1,f +7110,3960,0,1,f +7110,4032a,0,1,f +7110,4175,0,2,f +7110,4215b,0,2,f +7110,4349,0,1,f +7110,4510,0,2,f +7110,6019,0,2,f +7110,6111,1,2,f +7110,6141,42,4,f +7110,6141,36,3,f +7110,6141,8,8,f +7110,6587,8,1,f +7111,11090,72,1,f +7111,11303,28,1,f +7111,15573,15,1,f +7111,15712,72,1,f +7111,2412b,272,1,f +7111,2417,288,1,f +7111,2432,70,1,f +7111,2432,14,1,f +7111,2456,72,1,f +7111,30031,72,1,f +7111,30115,4,1,f +7111,30137,70,1,f +7111,3020,70,1,f +7111,3023,70,2,f +7111,3040b,288,1,f +7111,30503,70,1,f +7111,3626cpr1091,14,1,f +7111,3626cpr1147,14,1,f +7111,41334,72,1,f +7111,4286,72,1,f +7111,44674,272,2,f +7111,4599b,71,1,t +7111,4599b,71,2,f +7111,48336,71,1,f +7111,48729b,0,1,t +7111,48729b,0,1,f +7111,6014b,71,4,f +7111,60470a,0,1,f +7111,60897,15,4,f +7111,6141,27,1,f +7111,6141,27,1,t +7111,6141,33,1,t +7111,6141,46,2,f +7111,6141,33,2,f +7111,6141,46,1,t +7111,61482,71,1,f +7111,61482,71,1,t +7111,6157,0,2,f +7111,85984pr0001,15,1,f +7111,87697,0,4,f +7111,87994,71,1,f +7111,87994,71,1,t +7111,92590,28,1,f +7111,970c00,272,1,f +7111,970c00,28,1,f +7111,973pr2879c01,19,1,f +7111,973pr2880c01,15,1,f +7111,98138,36,1,t +7111,98138,36,2,f +7114,cre010,9999,1,f +7115,2335p30,15,1,f +7115,2436,0,2,f +7115,2530,8,1,f +7115,2542,4,1,f +7115,2543,1,1,f +7115,2654,0,2,f +7115,3020,14,1,f +7115,3022,14,1,f +7115,3032,0,1,f +7115,3062b,14,8,f +7115,3626bp48,14,1,f +7115,3957a,0,1,f +7115,970c00,1,1,f +7115,973p33c01,14,1,f +7116,10247,72,2,f +7116,11215,0,1,f +7116,11477,288,2,f +7116,14417,72,2,f +7116,14418,71,2,f +7116,14419,72,2,f +7116,14704,71,2,f +7116,14769,297,3,f +7116,15571,288,2,f +7116,15706,0,2,f +7116,17114,0,1,f +7116,2431,2,2,f +7116,3004,2,2,f +7116,30173b,297,2,f +7116,3020,72,2,f +7116,3023,46,3,f +7116,3034,2,1,f +7116,3626cpr1366,14,1,f +7116,3666,0,2,f +7116,3937,72,2,f +7116,4079b,288,2,f +7116,48183,288,1,f +7116,60800a,2,2,f +7116,6091,288,2,f +7116,61252,297,2,f +7116,6134,0,2,f +7116,6141,297,1,t +7116,6141,297,2,f +7116,61678,2,2,f +7116,63868,70,4,f +7116,6628,0,2,f +7116,92013,72,2,f +7116,970c00pr0277,2,1,f +7116,973pr2682c01,2,1,f +7116,98133,2,1,f +7116,98137,297,2,f +7116,99780,72,3,f +7116,99780,2,2,f +7116,99781,71,3,f +7118,x1167cx1,0,1,f +7119,10884,2,2,f +7119,11110pr0003,191,1,f +7119,11113pr0002,4,1,f +7119,11126,4,1,f +7119,11126,14,1,f +7119,11127,41,12,f +7119,11129pr0004,308,1,f +7119,11233pr0004,72,1,f +7119,11767,72,2,f +7119,2540,71,1,f +7119,2654,0,2,f +7119,2780,0,4,f +7119,2780,0,1,t +7119,30153,41,1,f +7119,3023,71,2,f +7119,3062b,41,1,f +7119,3062b,36,1,f +7119,3062b,27,1,f +7119,3626bpr1138,72,1,f +7119,3626cpr1122,28,1,f +7119,3794b,27,4,f +7119,3849,0,1,f +7119,3941,70,1,f +7119,3957b,71,1,f +7119,3960,41,1,f +7119,4032a,14,1,f +7119,43898,70,1,f +7119,44358,70,1,f +7119,44728,19,4,f +7119,4497,179,1,f +7119,4589,72,4,f +7119,4590,72,1,f +7119,4740,14,2,f +7119,4740,4,2,f +7119,53451,15,1,t +7119,53451,15,7,f +7119,53989,0,1,f +7119,54821,143,1,f +7119,6021384,9999,1,f +7119,6021385,9999,1,f +7119,6021386,9999,1,f +7119,6021387,9999,1,f +7119,6021388,9999,1,f +7119,6021440,9999,1,f +7119,6021441,9999,1,f +7119,6021442,9999,1,f +7119,6021443,9999,1,f +7119,6021444,9999,1,f +7119,6117,72,1,f +7119,6180,10,2,f +7119,63965,70,1,f +7119,64567,71,1,t +7119,64567,71,1,f +7119,64644,297,1,f +7119,93059,297,1,f +7119,970c00pr0431,28,1,f +7119,970c00pr0437,72,1,f +7119,973pr2227c01,28,1,f +7119,973pr2238c01,320,1,f +7120,3003,14,1,f +7120,3020,14,1,f +7120,3040bpr0003,71,1,f +7120,3710,14,1,f +7120,3741,2,1,f +7120,3741,2,2,t +7120,3742,4,1,t +7120,3742,4,3,f +7120,3795,2,1,f +7120,4864b,40,2,f +7120,4871,14,1,f +7121,2131c01,15,1,f +7121,3004,14,6,f +7121,3009,14,1,f +7121,3010,14,4,f +7121,3010,0,3,f +7121,3020,4,1,f +7121,3028,2,2,f +7121,3035,4,1,f +7121,3062b,15,4,f +7121,3068bp16,15,2,f +7121,3068pb06,15,1,f +7121,3068pb07,15,1,f +7121,3068pb23,15,1,f +7121,3068pb24,15,1,f +7121,3068pb25,15,1,f +7121,3069b,15,4,f +7121,3297,0,1,f +7121,3622,14,2,f +7121,3899,1,2,f +7121,4222a,450,2,f +7121,4341,0,1,f +7121,4536,4,5,f +7121,4780c01,15,1,f +7121,92410,14,2,f +7121,fab3h,9999,1,f +7121,fabca2,450,1,f +7121,fabeh5,1,1,f +7121,x234,14,1,f +7122,4204,2,3,f +7123,2412b,25,2,f +7123,2412b,42,1,f +7123,2412b,71,5,f +7123,2419,0,1,f +7123,2420,71,2,f +7123,2431,15,1,f +7123,2445,72,5,f +7123,2446,15,1,f +7123,2447,82,1,t +7123,2447,82,1,f +7123,2515,25,2,f +7123,2577,0,4,f +7123,2780,0,12,f +7123,2780,0,3,t +7123,298c02,71,2,f +7123,298c02,71,1,t +7123,3002,15,2,f +7123,3003,1,2,f +7123,3004,25,2,f +7123,3009,15,1,f +7123,30145,71,2,f +7123,30153,42,7,f +7123,3020,15,3,f +7123,3020,70,5,f +7123,3022,0,2,f +7123,3022,15,6,f +7123,3023,25,5,f +7123,3023,72,3,f +7123,3032,0,1,f +7123,3034,71,2,f +7123,30364,72,2,f +7123,30364,15,1,f +7123,30516,71,1,f +7123,30540,0,2,f +7123,30602,15,1,f +7123,3062b,33,5,f +7123,30658,0,1,f +7123,3068b,0,1,f +7123,3068b,1,2,f +7123,3069b,15,8,f +7123,32000,0,2,f +7123,32015,71,1,f +7123,32018,0,4,f +7123,32039,0,2,f +7123,32062,4,4,f +7123,32064b,72,1,f +7123,32123b,71,1,t +7123,32123b,71,16,f +7123,32174,15,1,f +7123,32316,0,2,f +7123,3245b,15,1,f +7123,32523,71,6,f +7123,32527,0,1,f +7123,32528,0,1,f +7123,32532,0,1,f +7123,32556,71,2,f +7123,3623,15,4,f +7123,3626bpr0233,14,1,f +7123,3647,71,1,t +7123,3647,71,2,f +7123,3660,15,2,f +7123,3666,0,2,f +7123,3666,15,1,f +7123,3673,71,1,t +7123,3673,71,2,f +7123,3684,15,2,f +7123,3700,15,7,f +7123,3701,15,2,f +7123,3706,0,2,f +7123,3710,0,3,f +7123,3736,15,2,f +7123,3743,71,2,f +7123,3747b,72,1,f +7123,3794a,0,2,f +7123,3795,15,2,f +7123,3795,0,1,f +7123,3839b,0,1,f +7123,40378,27,2,f +7123,4070,15,4,f +7123,4095,71,2,f +7123,4150,0,2,f +7123,41669,15,2,f +7123,41677,15,4,f +7123,41747,15,1,f +7123,41748,15,1,f +7123,41749,15,1,f +7123,41750,15,1,f +7123,41769,15,1,f +7123,41769,72,2,f +7123,41770,72,2,f +7123,41862,71,2,f +7123,42003,0,1,f +7123,42022,15,2,f +7123,4274,1,10,f +7123,4274,1,2,t +7123,4286,0,2,f +7123,4286,15,4,f +7123,43093,1,4,f +7123,43722,0,1,f +7123,43723,0,1,f +7123,44294,71,2,f +7123,44301a,0,4,f +7123,44302a,71,5,f +7123,44675,71,2,f +7123,44728,72,2,f +7123,4519,71,1,f +7123,45590,0,2,f +7123,4588,72,3,f +7123,4589,42,6,f +7123,4589,182,2,f +7123,4589,15,7,f +7123,4599a,71,2,f +7123,4735,71,2,f +7123,4740,33,6,f +7123,47455,0,2,f +7123,47905,72,2,f +7123,48169,72,2,f +7123,48170,72,2,f +7123,50950,0,2,f +7123,50986,182,1,f +7123,53451,4,2,f +7123,53451,4,1,t +7123,53990,0,1,f +7123,53992,25,2,f +7123,53993pat0003,27,6,f +7123,54200,0,2,f +7123,56145,71,4,f +7123,57909a,72,2,f +7123,57910,72,1,f +7123,58843,15,2,f +7123,58844pat0001,34,2,f +7123,58845,34,2,f +7123,58846,0,2,f +7123,58947,182,2,f +7123,59625,9999,1,t +7123,6060,15,2,f +7123,6091,15,8,f +7123,6141,42,4,f +7123,6141,71,1,t +7123,6141,71,8,f +7123,6141,182,2,f +7123,6141,182,1,t +7123,6141,42,1,t +7123,6558,0,6,f +7123,6564,0,1,f +7123,6565,0,1,f +7123,6587,72,4,f +7123,73983,71,4,f +7123,970x194,15,1,f +7123,973pr1317c01,15,1,f +7124,258cdb01,89,1,f +7124,3001a,1,21,f +7124,3001a,14,20,f +7124,3001a,4,30,f +7124,3001a,0,3,f +7124,3001a,15,17,f +7124,3002a,14,8,f +7124,3002a,1,6,f +7124,3002a,4,2,f +7124,3002a,0,5,f +7124,3003,14,20,f +7124,3003,15,12,f +7124,3003,0,12,f +7124,3003,1,8,f +7124,3003,4,20,f +7124,3004,14,16,f +7124,3004,0,12,f +7124,3004,15,2,f +7124,3004,1,15,f +7124,3004,4,17,f +7124,3005,0,8,f +7124,3005,14,10,f +7124,3005,1,4,f +7124,3005,4,3,f +7124,3006,14,3,f +7124,3006,4,6,f +7124,3007,4,2,f +7124,3008,1,2,f +7124,3009,4,6,f +7124,3009,14,3,f +7124,3009,0,1,f +7124,3009,15,1,f +7124,3009,1,1,f +7124,3010,14,2,f +7124,3010,0,1,f +7124,3010,1,2,f +7124,3010,4,3,f +7124,3021,0,4,f +7124,3021,4,3,f +7124,3021,14,1,f +7124,3022,1,4,f +7124,3022,14,2,f +7124,3023,1,3,f +7124,3023,14,2,f +7124,3030,14,2,f +7124,3032,1,1,f +7124,3033,14,1,f +7124,3034,4,1,f +7124,3037,1,1,f +7124,3038,4,2,f +7124,3039,0,8,f +7124,3039,14,3,f +7124,3039,4,12,f +7124,3039,1,13,f +7124,3040a,1,2,f +7124,3040a,4,3,f +7124,3040a,0,8,f +7124,3049b,4,1,f +7124,3062a,0,2,f +7124,3063b,14,2,f +7124,3063b,15,2,f +7124,3137c01,0,2,f +7124,3139,0,1,f +7124,3298,1,3,f +7124,3298,4,2,f +7124,3464,4,1,f +7124,3471,2,6,f +7124,3596,15,2,f +7124,3612,4,2,f +7124,3612,0,4,f +7124,3613,4,2,f +7124,3613,14,2,f +7124,3613,15,2,f +7124,3613,1,2,f +7124,3613,0,4,f +7124,3614a,14,12,f +7124,3641,0,4,f +7124,3660a,4,3,f +7124,3660a,14,2,f +7124,3660a,1,7,f +7124,453cc01,4,2,f +7124,685p01,14,3,f +7124,685px2,14,1,f +7124,685px3,14,1,f +7124,685px4,14,1,f +7124,792c03,0,2,f +7124,792c03,1,1,f +7124,792c03,4,2,f +7124,792c03,15,1,f +7124,8,1,1,f +7124,x196,0,3,f +7124,x197,6,1,f +7124,x407,0,2,f +7126,2357,7,2,f +7126,2412b,0,13,f +7126,2431,1,8,f +7126,2431pr0017,14,4,f +7126,2432,7,4,f +7126,2436,0,1,f +7126,2453a,7,2,f +7126,2454a,7,10,f +7126,2540,0,4,f +7126,2555,7,1,f +7126,2569,4,1,f +7126,2680,0,1,f +7126,2815,0,1,f +7126,2877,4,2,f +7126,2877,7,14,f +7126,2926,7,4,f +7126,298c02,14,3,f +7126,298c02,14,1,t +7126,3001,0,6,f +7126,3001,2,4,f +7126,3001,7,2,f +7126,3002,7,2,f +7126,3003pd0,8,9,f +7126,3005,8,4,f +7126,3005,0,1,f +7126,3006,0,2,f +7126,3009,0,4,f +7126,3010,8,2,f +7126,3010,4,1,f +7126,3010,0,4,f +7126,3010,2,1,f +7126,30133,15,1,f +7126,30148,0,1,f +7126,30179,8,1,f +7126,30180,7,2,f +7126,30181,0,8,f +7126,30185c01,8,3,f +7126,3020,0,1,f +7126,3020,14,1,f +7126,3021,7,2,f +7126,3021,1,2,f +7126,3022,2,1,f +7126,3022,14,3,f +7126,3023,8,2,f +7126,3023,1,7,f +7126,3031,14,1,f +7126,3032,0,2,f +7126,3033,0,2,f +7126,30332,0,1,f +7126,3034,1,1,f +7126,30360,8,2,f +7126,30365,7,1,f +7126,3037,2,2,f +7126,3038,2,2,f +7126,30389a,1,1,f +7126,3039,7,3,f +7126,3039,4,1,f +7126,3039,14,2,f +7126,3039px7,15,1,f +7126,3040b,7,1,f +7126,3045,2,2,f +7126,30456,2,1,f +7126,30457,2,1,f +7126,30459,2,1,f +7126,30464,2,1,f +7126,3048c,7,2,f +7126,30516,1,1,f +7126,30517,0,2,f +7126,30518,0,1,f +7126,30526,2,1,f +7126,30554a,8,1,f +7126,30606px1,7,2,f +7126,3062b,4,2,f +7126,3062b,7,2,f +7126,30658,0,1,f +7126,3068b,0,3,f +7126,3068b,1,13,f +7126,3068bp18,14,3,f +7126,3068bpx5,0,1,f +7126,3068bpx6,15,2,f +7126,3069bp02,7,1,f +7126,3069bp0a,0,1,f +7126,3069bp52,15,1,f +7126,3070b,4,1,f +7126,3070b,14,1,t +7126,3070b,4,1,t +7126,3070b,14,1,f +7126,3139,0,4,f +7126,32000,7,1,f +7126,32062,4,2,f +7126,32064a,14,4,f +7126,32073,0,2,f +7126,32561c02,7,1,f +7126,3298,2,4,f +7126,3622,2,4,f +7126,3622,8,6,f +7126,3623,0,4,f +7126,3623,1,4,f +7126,3626bp06,14,1,f +7126,3626bp69,14,1,f +7126,3626bpr0098,14,1,f +7126,3626bpr0126,14,1,f +7126,3626bpx32,14,1,f +7126,3626bpx33,14,1,f +7126,3626bpx42,14,1,f +7126,3648b,7,1,f +7126,3660,2,5,f +7126,3666,0,6,f +7126,3679,7,2,f +7126,3680,1,2,f +7126,3700,8,6,f +7126,3703,0,1,f +7126,3710,14,3,f +7126,3713,7,1,t +7126,3713,7,2,f +7126,3737,0,1,f +7126,3749,7,1,f +7126,3794a,14,1,f +7126,3794a,4,1,f +7126,3794a,7,11,f +7126,3795,7,1,f +7126,3829c01,7,1,f +7126,3834,15,1,f +7126,3937,15,2,f +7126,3938,0,2,f +7126,3941,14,3,f +7126,3958,0,2,f +7126,4032a,0,1,f +7126,4079,15,3,f +7126,4095,0,1,f +7126,4130630,9999,1,t +7126,4130910,9999,1,t +7126,4185,14,1,f +7126,4187,7,1,f +7126,4212b,0,1,f +7126,4282,7,1,f +7126,4285b,7,1,f +7126,4286,8,4,f +7126,4286,2,2,f +7126,4286,4,2,f +7126,43337,4,2,f +7126,4349,7,1,f +7126,4477,4,2,f +7126,4485,1,3,f +7126,4485,0,2,f +7126,4519,0,2,f +7126,4599a,0,2,f +7126,4624,7,4,f +7126,4716,14,1,f +7126,4733,7,2,f +7126,6014a,15,4,f +7126,6015,0,4,f +7126,6087,0,2,f +7126,6091,0,4,f +7126,6093,6,1,f +7126,610px2,7,1,f +7126,6126a,57,10,f +7126,6127,2,1,f +7126,6128,2,1,f +7126,6141,36,7,f +7126,6141,15,6,f +7126,6141,42,2,t +7126,6141,42,4,f +7126,6141,15,2,t +7126,6141,36,1,t +7126,6141,34,3,f +7126,6141,34,1,t +7126,6222,8,2,f +7126,6232,14,5,f +7126,6238,33,1,f +7126,6251,15,1,f +7126,6576,7,1,f +7126,6583,8,2,f +7126,6588,0,1,f +7126,6636,1,6,f +7126,71128,383,2,f +7126,73983,0,1,f +7126,75c29,0,2,f +7126,76041c02,7,1,f +7126,970c00,15,3,f +7126,970c00,1,2,f +7126,970c00,0,2,f +7126,973pd1c01,4,1,f +7126,973px64c01,15,1,f +7126,973px65c01,15,1,f +7126,973px66c01,0,1,f +7126,973px75c01,15,1,f +7126,973px77c01,1,1,f +7126,973px79c01,15,1,f +7126,mm98,9999,1,t +7128,14pb01,15,1,f +7128,14pb02,15,1,f +7128,14pb04,15,1,f +7128,14pb05,15,1,f +7128,3470,2,6,f +7128,3471,2,6,f +7128,607p01,7,1,f +7128,608p01,7,1,f +7128,609p01,7,4,f +7128,649p02,15,2,f +7128,675pr01,15,1,f +7128,7284,15,1,f +7128,739p01,15,2,f +7128,80039,15,1,f +7128,80045,15,1,f +7130,2432,1,1,f +7130,2458,1,2,f +7130,2470,6,4,f +7130,2586p4d,15,1,f +7130,2817,1,1,f +7130,2926,0,2,f +7130,3004,7,2,f +7130,3020,0,2,f +7130,3021,0,1,f +7130,3023,1,1,f +7130,3023,0,2,f +7130,3034,0,1,f +7130,3040b,1,4,f +7130,3307,1,2,f +7130,3460,0,1,f +7130,3626bp35,14,1,f +7130,3666,0,1,f +7130,3794a,0,2,f +7130,3795,0,1,f +7130,3844,8,1,f +7130,3846p4d,15,1,f +7130,3848,6,1,f +7130,3957a,0,1,f +7130,4495a,15,1,f +7130,4497,6,1,f +7130,4504,0,1,f +7130,4626,0,1,f +7130,6019,1,2,f +7130,6019,0,1,f +7130,73590c02a,0,1,f +7130,970x026,1,1,f +7130,973p4dc01,4,1,f +7131,11213,71,1,f +7131,11833,0,1,f +7131,15068,320,4,f +7131,15303,36,2,f +7131,15391,0,4,f +7131,15392,72,1,t +7131,15392,72,4,f +7131,15400,72,1,f +7131,15535,72,1,f +7131,15712,0,1,f +7131,16497pr0003,0,1,f +7131,18654,72,1,t +7131,18654,72,1,f +7131,2412b,320,3,f +7131,24217,15,2,f +7131,2432,0,2,f +7131,3021,72,2,f +7131,3022,72,2,f +7131,3023,36,5,f +7131,3034,0,2,f +7131,3039,72,1,f +7131,30408pr0011,15,2,f +7131,30408pr0012,15,1,f +7131,3069bpr0086,71,2,f +7131,3070bpr0165,15,1,t +7131,3070bpr0165,15,2,f +7131,32001,71,1,f +7131,32054,0,1,f +7131,32062,4,1,f +7131,3626cpr1149,78,3,f +7131,3626cpr1363,78,1,f +7131,3660,72,2,f +7131,3710,320,1,f +7131,41532,0,1,f +7131,44302a,71,1,f +7131,4599b,0,3,f +7131,4599b,0,1,t +7131,4865b,40,2,f +7131,54200,36,2,f +7131,54200,36,1,t +7131,59900,36,1,f +7131,60474,71,1,f +7131,60478,72,2,f +7131,60897,72,4,f +7131,6091,0,2,f +7131,6141,36,12,f +7131,6141,41,4,f +7131,6141,41,1,t +7131,6141,36,1,t +7131,6541,0,2,f +7131,85984,0,2,f +7131,970c00pr0705,71,1,f +7131,970c00pr0719,15,2,f +7131,970c00pr1020,15,1,f +7131,973pr2764c01,71,1,f +7131,973pr3291c01,15,2,f +7131,973pr3292c01,15,1,f +7131,99780,71,2,f +7131,99781,0,3,f +7132,15,1,3,f +7132,17,4,3,f +7132,3001a,0,6,f +7132,3001a,4,4,f +7132,3002a,0,2,f +7132,3002a,47,2,f +7132,3003,0,44,f +7132,3003,14,4,f +7132,3003,15,4,f +7132,3004,15,3,f +7132,3004,14,11,f +7132,3005,4,2,f +7132,3005,0,4,f +7132,3005,14,43,f +7132,3006,0,2,f +7132,3007,0,1,f +7132,3008,0,6,f +7132,3008,4,8,f +7132,3008,14,11,f +7132,3009,4,2,f +7132,3009,0,4,f +7132,3009,14,6,f +7132,3009pt1,15,1,f +7132,3010,15,4,f +7132,3010,0,4,f +7132,3010,14,1,f +7132,3010,47,1,f +7132,3010,4,4,f +7132,3020,7,2,f +7132,3020,15,2,f +7132,3020,0,1,f +7132,3021,15,2,f +7132,3021,4,3,f +7132,3022,0,7,f +7132,3022,7,2,f +7132,3023,7,2,f +7132,3023,0,4,f +7132,3023,14,2,f +7132,3024,14,5,f +7132,3024,1,2,f +7132,3024,47,2,f +7132,3024,4,3,f +7132,3027,0,5,f +7132,3030,0,2,f +7132,3031,14,1,f +7132,3031,4,1,f +7132,3032,14,2,f +7132,3032,15,1,f +7132,3034,4,2,f +7132,3036,15,1,f +7132,3036,0,5,f +7132,3037,47,1,f +7132,3039,4,2,f +7132,3040a,15,4,f +7132,3040a,47,2,f +7132,3040a,14,2,f +7132,3040a,4,5,f +7132,3040a,0,4,f +7132,3062a,7,18,f +7132,3062a,0,24,f +7132,3062a,15,2,f +7132,3063b,15,26,f +7132,3069a,15,10,f +7132,3139,0,5,f +7132,3144,79,1,f +7132,3460,7,14,f +7132,3460,0,14,f +7132,3460,4,8,f +7132,3461,7,1,f +7132,3462,4,1,f +7132,3464,4,5,f +7132,3480,7,1,f +7132,3481,4,1,f +7132,3579,14,2,f +7132,3624,0,3,f +7132,3626a,14,3,f +7132,3633,0,1,f +7132,3633,15,3,f +7132,3645p04,1,1,f +7132,3660,4,5,f +7132,3660,0,6,f +7132,3666,14,9,f +7132,3710,14,7,f +7132,3710,7,2,f +7132,3710,0,1,f +7132,3710,4,2,f +7132,420,14,1,f +7132,69c01,15,4,f +7132,7930,4,2,f +7132,8,7,5,f +7132,x467c12,0,2,f +7133,14226c11,0,1,f +7133,14226c31,0,2,f +7133,23306,71,1,f +7133,2335,15,3,f +7133,2335,4,2,f +7133,2335pr02,15,5,f +7133,2357,15,12,f +7133,2412b,4,1,f +7133,2412b,71,4,f +7133,2420,72,4,f +7133,2431,4,6,f +7133,2432,4,4,f +7133,2436,0,1,f +7133,2436,15,4,f +7133,2444,0,2,f +7133,2445,15,4,f +7133,2446,4,4,f +7133,2446pb20,4,1,f +7133,2446pr21,4,1,f +7133,2447,40,2,f +7133,2447,40,1,t +7133,2453a,4,2,f +7133,2454a,4,2,f +7133,2456,15,3,f +7133,2456,72,4,f +7133,2456,4,1,f +7133,2486,15,3,f +7133,2486,71,1,f +7133,2495,4,1,f +7133,2496,0,1,f +7133,2540,15,3,f +7133,2653,71,2,f +7133,2877,15,2,f +7133,2877,4,2,f +7133,3001,15,1,f +7133,3001,72,1,f +7133,30029,0,2,f +7133,3003,0,2,f +7133,3003,4,12,f +7133,3003,15,2,f +7133,3003,72,4,f +7133,3004,15,34,f +7133,3004,72,6,f +7133,3004,4,3,f +7133,3004,0,23,f +7133,3005,4,2,f +7133,3006,15,2,f +7133,3008,15,2,f +7133,3008,4,1,f +7133,3009,72,1,f +7133,30145,72,6,f +7133,3020,4,7,f +7133,3020,0,4,f +7133,3020,72,8,f +7133,3020,15,1,f +7133,3021,72,2,f +7133,3022,72,2,f +7133,3022,15,4,f +7133,3022,4,2,f +7133,3023,15,2,f +7133,3023,4,4,f +7133,3023,0,5,f +7133,30237a,4,3,f +7133,3024,15,2,f +7133,3024,4,4,f +7133,30261,15,1,f +7133,3028,4,5,f +7133,30285,71,10,f +7133,3029,72,2,f +7133,3031,72,2,f +7133,3031,4,1,f +7133,3034,0,1,f +7133,3035,4,3,f +7133,30367b,72,1,f +7133,30374,15,3,f +7133,3040b,4,2,f +7133,30414,4,1,f +7133,30517,72,2,f +7133,30517,0,2,f +7133,30518,0,2,f +7133,30562,40,2,f +7133,30565,4,2,f +7133,30602,4,8,f +7133,3062b,4,3,f +7133,30648,0,10,f +7133,3068b,15,4,f +7133,3068b,0,1,f +7133,3068b,72,4,f +7133,3069bp02,71,1,f +7133,3069bpr0030,15,2,f +7133,3070b,4,2,f +7133,3070b,4,1,t +7133,3070bpr0007,71,1,t +7133,3070bpr0007,71,1,f +7133,32018,15,4,f +7133,32018,72,2,f +7133,32530,4,2,f +7133,3299,15,6,f +7133,3299,4,8,f +7133,3623,71,4,f +7133,3626bpr0252,14,1,f +7133,3626bpr0270,14,1,f +7133,3626bpr0282,14,1,f +7133,3626bpr0367,78,1,f +7133,3626bpr0368,78,1,f +7133,3626bpr0370,4,3,f +7133,3626bpr0387,14,1,f +7133,3626bpx33,14,1,f +7133,3660,72,2,f +7133,3666,4,4,f +7133,3666,72,1,f +7133,3710,4,4,f +7133,3710,15,4,f +7133,3794a,15,4,f +7133,3794a,4,4,f +7133,3795,0,4,f +7133,3795,15,2,f +7133,3795,72,2,f +7133,3795,4,3,f +7133,3829c01,15,2,f +7133,3830,0,2,f +7133,3830,15,2,f +7133,3831,15,2,f +7133,3831,0,2,f +7133,3832,15,1,f +7133,3840,25,1,f +7133,3901,0,1,f +7133,3901,70,1,f +7133,3937,4,2,f +7133,3938,4,2,f +7133,3941,71,2,f +7133,3957a,15,4,f +7133,4006,0,1,f +7133,4032a,1,2,f +7133,4085c,4,2,f +7133,4085c,15,2,f +7133,4095,71,1,f +7133,4162,15,2,f +7133,4215b,40,7,f +7133,4215b,15,4,f +7133,42445,71,2,f +7133,42446,72,4,f +7133,4282,72,4,f +7133,4287,72,4,f +7133,4349,0,1,f +7133,4360,0,1,f +7133,43719,4,4,f +7133,43722,4,2,f +7133,43723,4,2,f +7133,44126,4,2,f +7133,4449,0,1,f +7133,44728,4,4,f +7133,4477,72,1,f +7133,4477,15,4,f +7133,4485,0,1,f +7133,4485,4,2,f +7133,4532,4,4,f +7133,4533,0,4,f +7133,4589,71,4,f +7133,4599a,71,7,f +7133,4600,71,2,f +7133,4624,71,4,f +7133,47720,0,4,f +7133,48336,0,1,f +7133,4864b,0,4,f +7133,4865a,4,8,f +7133,50373,4,2,f +7133,55295,0,1,f +7133,55296,0,1,f +7133,55297,0,1,f +7133,55298,0,1,f +7133,55299,0,1,f +7133,55300,0,1,f +7133,6019,0,1,f +7133,6112,72,4,f +7133,6141,1,1,t +7133,6141,34,2,f +7133,6141,71,6,f +7133,6141,0,6,f +7133,6141,71,1,t +7133,6141,1,2,f +7133,6141,36,1,t +7133,6141,34,1,t +7133,6141,0,1,t +7133,6141,36,6,f +7133,6212,72,1,f +7133,72092,383,1,f +7133,970c00,1,2,f +7133,970c00,0,1,f +7133,970c00,4,7,f +7133,973c02,4,2,f +7133,973c31,4,5,f +7133,973pr1184c01,0,1,f +7133,973pr1245c01,1,1,f +7134,45449,5,1,f +7134,45451,45,1,f +7134,45462,232,1,f +7134,45464,41,1,f +7134,45481,45,1,f +7134,46281,46,1,f +7134,46296,47,2,f +7134,clikits040,47,1,f +7134,clikits078,41,1,f +7134,clikits080,45,1,f +7134,clikits081,57,1,f +7134,clikits084,46,1,f +7135,3001,1,4,f +7135,3001,14,4,f +7135,3001,4,3,f +7135,3002,14,2,f +7135,3002,4,2,f +7135,3002,1,2,f +7135,3003,14,4,f +7135,3003,4,2,f +7135,3003,1,3,f +7135,3004,4,5,f +7135,3004,1,10,f +7135,3004,14,8,f +7135,3004,47,2,f +7135,3005,1,8,f +7135,3005,47,2,f +7135,3005,4,4,f +7135,3005,14,2,f +7135,3008,1,2,f +7135,3009,14,3,f +7135,3009,1,3,f +7135,3010,1,10,f +7135,3010,14,6,f +7135,3010,4,6,f +7135,3020,4,2,f +7135,3021,4,2,f +7135,3022,4,2,f +7135,3031,4,2,f +7135,3032,4,1,f +7135,3034,4,2,f +7135,3039,4,2,f +7135,3039,47,2,f +7135,3081cc01,4,2,f +7135,3137c01,0,2,f +7135,3297,4,2,f +7135,3298,4,4,f +7135,3299,4,1,f +7135,3300,4,2,f +7135,3622,1,4,f +7135,3622,4,2,f +7135,3622,14,4,f +7135,3624,4,1,f +7135,3626apr0001,14,1,f +7135,3633,4,2,f +7135,3641,0,4,f +7135,3660,4,2,f +7135,3710,4,2,f +7135,3741,2,2,f +7135,3742,4,1,t +7135,3742,15,3,f +7135,3742,15,1,t +7135,3742,4,3,f +7135,3823,47,1,f +7135,3853,15,3,f +7135,3854,4,6,f +7135,3856,15,4,f +7135,3861b,15,1,f +7135,3867,2,1,f +7135,970c00,15,1,f +7135,973c07,1,1,f +7136,2412b,71,1,f +7136,2441,0,1,f +7136,3004,14,1,f +7136,3020,14,1,f +7136,3021,70,1,f +7136,3022,15,5,f +7136,3069b,15,1,f +7136,3070b,36,1,t +7136,3070b,36,2,f +7136,3623,14,2,f +7136,3623,15,2,f +7136,3710,14,1,f +7136,3788,14,2,f +7136,3821,14,1,f +7136,3822,14,1,f +7136,3823,40,2,f +7136,3829c01,14,1,f +7136,4624,71,4,f +7136,4865b,15,2,f +7136,6141,46,1,t +7136,6141,46,2,f +7136,87414,0,4,f +7136,93273,71,2,f +7136,93273,14,3,f +7136,93274,14,2,f +7137,11816pr0002,78,1,f +7137,2343,47,1,f +7137,3001,15,1,f +7137,3003,27,2,f +7137,3004,15,2,f +7137,3005pr0006,73,1,f +7137,3020,27,1,f +7137,3023,19,1,f +7137,3024,70,1,f +7137,3062b,15,1,f +7137,3062b,41,1,f +7137,3069b,70,1,f +7137,33291,5,1,f +7137,33291,5,1,t +7137,3941,27,3,f +7137,3960pr20,15,1,f +7137,4032a,19,1,f +7137,4150,15,1,f +7137,4345b,71,1,f +7137,4346,47,1,f +7137,4599b,71,1,f +7137,4865b,322,2,f +7137,54200,15,1,t +7137,54200,15,1,f +7137,60474,15,1,f +7137,6141,29,1,t +7137,6141,0,4,f +7137,6141,0,1,t +7137,6141,29,7,f +7137,6256,29,1,f +7137,63965,15,1,f +7137,92255,226,1,f +7137,92456pr0019c01,78,1,f +7137,92820pr0003c01,30,1,f +7137,92947,15,1,f +7139,2417,288,1,f +7139,2420,70,1,f +7139,2432,70,1,f +7139,2555,0,1,f +7139,2570,70,1,f +7139,30273,80,1,f +7139,3031,2,1,f +7139,3040b,70,2,f +7139,3062b,70,2,f +7139,33051,10,2,f +7139,33057,484,1,f +7139,3626bpr0645,14,1,f +7139,4032a,4,1,f +7139,4460b,70,1,f +7139,4497,135,2,f +7139,4498,70,1,f +7139,48729b,0,1,f +7139,48729b,0,1,t +7139,59900,0,1,f +7139,59900,2,1,f +7139,6019,0,1,f +7139,60474,14,1,f +7139,61780,70,1,f +7139,64644,308,2,f +7139,64647,57,1,t +7139,64647,57,1,f +7139,970x026,71,1,f +7139,973pr1622c01,4,1,f +7141,2736,7,4,f +7141,2780,0,21,f +7141,30324,0,2,f +7141,32002,8,7,f +7141,32013,0,7,f +7141,32014,0,1,f +7141,32015,0,1,f +7141,32034,0,2,f +7141,32039,0,5,f +7141,32062,0,17,f +7141,32063,135,4,f +7141,32069,135,2,f +7141,32073,0,8,f +7141,32123b,7,9,f +7141,32140,0,2,f +7141,32180,0,2,f +7141,32250,135,4,f +7141,32269,7,2,f +7141,32270,7,2,f +7141,32270,0,6,f +7141,32291,0,2,f +7141,32291,135,2,f +7141,32293,135,2,f +7141,32348,135,2,f +7141,32449,0,2,f +7141,32526,0,2,f +7141,3647,0,2,f +7141,3705,0,7,f +7141,3706,0,2,f +7141,3713,7,3,f +7141,3713,0,9,f +7141,3737,0,1,f +7141,3749,7,3,f +7141,41669,34,2,f +7141,41669,135,1,f +7141,41677,0,16,f +7141,41677,135,2,f +7141,41752,8,1,f +7141,4177936,9999,1,f +7141,42003,0,4,f +7141,4232,34,1,f +7141,4232rc,34,1,f +7141,4232sc,0,1,f +7141,4274,7,3,f +7141,43093,0,15,f +7141,43857,0,4,f +7141,4519,0,2,f +7141,6536,0,9,f +7141,6538b,0,4,f +7141,6538b,135,2,f +7141,6558,0,2,f +7141,6575,0,6,f +7141,6587,8,8,f +7141,6589,0,1,f +7141,6595,135,2,f +7141,6628,0,3,f +7141,71509,0,4,f +7141,75535,0,5,f +7141,78c02,179,5,f +7141,78c02,0,1,f +7141,78c06,179,2,f +7141,78c09,0,1,f +7141,78c10,179,2,f +7141,x165c05,47,2,f +7141,x400c12,47,2,f +7145,3001,14,8,f +7145,3001,15,8,f +7145,3001,0,8,f +7145,3001,4,8,f +7145,3001,1,8,f +7145,3001a,47,4,f +7145,3001pr1,14,2,f +7145,3002,14,4,f +7145,3002,1,4,f +7145,3002,4,4,f +7145,3002,0,4,f +7145,3002,15,4,f +7145,3003,1,12,f +7145,3003,15,12,f +7145,3003,0,12,f +7145,3003,4,12,f +7145,3003,14,12,f +7145,3003pe1,14,4,f +7145,3006,14,2,f +7145,3007,1,2,f +7145,3007,14,2,f +7145,3007,4,2,f +7145,3137c01,0,2,f +7145,3185,14,8,f +7145,3471,2,2,f +7145,3483,0,8,f +7145,3596pb02,15,2,f +7145,3641,0,4,f +7145,4130,4,2,f +7145,4131,14,2,f +7145,4132,4,4,f +7145,4133,14,4,f +7145,4180c02,0,4,f +7145,4201,2,1,f +7145,4202,14,1,f +7145,4202,4,1,f +7145,4204,2,1,f +7149,11816pr0001,84,1,f +7149,11816pr0003,78,1,f +7149,2412b,71,10,f +7149,2431,27,11,f +7149,2431,72,1,f +7149,2508,72,1,f +7149,2654,4,1,f +7149,3001,15,1,f +7149,3004,5,2,f +7149,3004,15,4,f +7149,3005,15,5,f +7149,3005,27,2,f +7149,3005pr17,27,1,f +7149,3010,29,3,f +7149,3010,5,6,f +7149,30176,2,1,f +7149,3020,15,2,f +7149,3020,72,3,f +7149,3021,14,1,f +7149,3022,27,3,f +7149,3022,0,1,f +7149,3023,71,6,f +7149,3023,27,18,f +7149,30237a,70,2,f +7149,3024,36,2,f +7149,3031,14,1,f +7149,3032,72,2,f +7149,3034,19,2,f +7149,30414,0,1,f +7149,30414,15,1,f +7149,3062b,70,2,f +7149,3068b,29,1,f +7149,3068b,0,1,f +7149,3069b,15,3,f +7149,3069b,27,3,f +7149,3069b,14,1,f +7149,3069b,29,2,f +7149,3070b,27,1,t +7149,3070b,27,4,f +7149,3184stk01,9999,1,t +7149,33057,484,1,f +7149,33291,5,1,t +7149,33291,5,2,f +7149,3460,15,2,f +7149,3460,19,2,f +7149,3622,15,5,f +7149,3659,5,2,f +7149,3665,5,8,f +7149,3666,70,2,f +7149,3666,72,2,f +7149,3666,27,12,f +7149,3710,15,5,f +7149,3710,70,2,f +7149,3710,14,7,f +7149,3747b,15,1,f +7149,3795,72,1,f +7149,3795,15,3,f +7149,3795,14,1,f +7149,3795,0,1,f +7149,3829c01,14,1,f +7149,3830,15,2,f +7149,3831,15,2,f +7149,3832,15,1,f +7149,3899,5,2,f +7149,4176,47,1,f +7149,4488,71,6,f +7149,4490,15,4,f +7149,4599b,71,1,f +7149,4719,4,1,f +7149,4719,322,1,f +7149,48336,71,1,f +7149,48336,15,1,f +7149,4865b,29,3,f +7149,48729b,72,1,t +7149,48729b,72,1,f +7149,50745,27,4,f +7149,50950,27,2,f +7149,52037,72,1,f +7149,54200,29,1,t +7149,54200,47,1,t +7149,54200,25,1,t +7149,54200,29,2,f +7149,54200,47,2,f +7149,54200,25,1,f +7149,6014b,15,6,f +7149,60470a,15,1,f +7149,60471,71,2,f +7149,60479,15,1,f +7149,60581,47,4,f +7149,6081,14,1,f +7149,6091,72,2,f +7149,6111,29,2,f +7149,6141,182,3,t +7149,6141,36,2,t +7149,6141,70,1,t +7149,6141,14,1,t +7149,6141,70,1,f +7149,6141,182,11,f +7149,6141,14,1,f +7149,6141,36,6,f +7149,61484,29,1,f +7149,61780,72,1,f +7149,6191,29,3,f +7149,63864,15,3,f +7149,63868,15,2,f +7149,6636,72,1,f +7149,6636,70,6,f +7149,87079,191,3,f +7149,87079,15,1,f +7149,87087,29,4,f +7149,87544,47,1,f +7149,87544,15,1,f +7149,87580,72,2,f +7149,87609,15,2,f +7149,87697,0,6,f +7149,90397,322,1,f +7149,92256,70,1,f +7149,92257,0,1,f +7149,92456pr0004c01,78,1,f +7149,92456pr0018c01,84,1,f +7149,92582,15,2,f +7149,92818pr0006c01,323,1,f +7149,92820pr0003c01,30,1,f +7149,92851,47,4,f +7149,92950,27,1,f +7149,93092,191,1,f +7149,93095,14,2,f +7149,97781,4,3,f +7149,97782,4,3,f +7149,97783,4,3,f +7149,97784,4,3,f +7149,97785,4,1,f +7149,97787,4,1,f +7149,97790,4,1,f +7149,97791,4,1,f +7149,97793,4,1,f +7149,98263,71,1,f +7149,99780,72,2,f +7153,11094,0,1,f +7153,11098,179,2,f +7153,11103,0,1,f +7153,11127,41,1,f +7153,11129pr0003,320,1,f +7153,11305,179,1,f +7153,11338,179,4,f +7153,11477,308,2,f +7153,12551pr0001,288,1,f +7153,12825,0,1,f +7153,13548,308,2,f +7153,15064,308,1,f +7153,15066,297,1,f +7153,15071,0,2,f +7153,15462,28,2,f +7153,15475pr0003,297,1,f +7153,2397,72,1,f +7153,2412b,179,2,f +7153,2412b,0,1,f +7153,2420,70,2,f +7153,2444,15,2,f +7153,2456,71,1,f +7153,2476,71,4,f +7153,2540,2,1,f +7153,2654,0,2,f +7153,2736,71,4,f +7153,2780,0,31,f +7153,3001,4,1,f +7153,3003,70,4,f +7153,30031,71,1,f +7153,3005,72,2,f +7153,30136,71,4,f +7153,30153,36,2,f +7153,30169,297,1,f +7153,3020,0,4,f +7153,3021,19,4,f +7153,3022,72,5,f +7153,3023,1,1,f +7153,3023,28,14,f +7153,3023,71,1,f +7153,3030,72,1,f +7153,3034,72,1,f +7153,30374,41,1,f +7153,3039,72,2,f +7153,3048c,297,3,f +7153,30503,72,2,f +7153,3062b,41,4,f +7153,32000,72,4,f +7153,32009,0,4,f +7153,32013,72,4,f +7153,32016,0,4,f +7153,32018,72,2,f +7153,32039,71,1,f +7153,32054,71,2,f +7153,32059,0,1,f +7153,32062,4,6,f +7153,32073,71,2,f +7153,32184,0,6,f +7153,32291,72,4,f +7153,32293,0,2,f +7153,32348,4,2,f +7153,32523,71,2,f +7153,32526,0,2,f +7153,32529,0,2,f +7153,32555,0,2,f +7153,32556,19,2,f +7153,3623,70,4,f +7153,3626cpr1121,19,1,f +7153,3626cpr1141,288,1,f +7153,3626cpr1321,0,1,f +7153,3660,72,1,f +7153,3665,70,2,f +7153,3666,0,4,f +7153,3701,0,2,f +7153,3705,0,5,f +7153,3706,0,2,f +7153,3710,72,3,f +7153,3713,4,5,f +7153,3794b,297,1,f +7153,3795,308,2,f +7153,3839b,72,1,f +7153,4032a,308,2,f +7153,40490,72,2,f +7153,4070,0,2,f +7153,41239,71,1,f +7153,4150,0,1,f +7153,41677,0,8,f +7153,42446,72,2,f +7153,4274,71,6,f +7153,4274,1,4,f +7153,43093,1,6,f +7153,43710,0,1,f +7153,43711,0,1,f +7153,43898,179,1,f +7153,4477,19,2,f +7153,4519,71,4,f +7153,4697b,71,1,f +7153,4733,72,2,f +7153,47753,308,4,f +7153,48336,71,1,f +7153,48336,297,1,f +7153,48723,72,2,f +7153,50923,72,1,f +7153,50950,308,2,f +7153,53451,297,2,f +7153,53451,27,2,f +7153,54200,0,10,f +7153,54200,297,4,f +7153,54821,35,5,f +7153,55981,71,2,f +7153,57539pat0001,47,2,f +7153,58176,36,4,f +7153,59900,35,2,f +7153,59900,72,4,f +7153,59900,33,2,f +7153,60470a,2,3,f +7153,60471,0,1,f +7153,60478,71,4,f +7153,60483,72,2,f +7153,60849,0,4,f +7153,60897,72,2,f +7153,6091,0,6,f +7153,61252,14,2,f +7153,61409,72,2,f +7153,61409,0,2,f +7153,6141,179,14,f +7153,6141,2,2,f +7153,6187,0,4,f +7153,62462,71,1,f +7153,64225,0,1,f +7153,64567,71,2,f +7153,6536,71,4,f +7153,6558,1,8,f +7153,6632,72,2,f +7153,85543,15,2,f +7153,85940,0,2,f +7153,85943,72,1,f +7153,87083,72,2,f +7153,87087,72,2,f +7153,87747,179,2,f +7153,88072,72,2,f +7153,92013,0,1,f +7153,92220,35,2,f +7153,92402,0,2,f +7153,92907,0,2,f +7153,93273,0,2,f +7153,93606,308,1,f +7153,970c02pr0566,19,1,f +7153,970c11pr0584,0,1,f +7153,970c155pr0567,326,1,f +7153,973pr2477c03,71,1,f +7153,973pr2478c02,71,1,f +7153,973pr2531c01,0,1,f +7153,98138,320,2,f +7153,98138,41,6,f +7153,98564,35,2,f +7153,98835,308,4,f +7153,99780,0,1,f +7153,99780,72,3,f +7153,99781,0,2,f +7156,10928,72,2,f +7156,11211,0,1,f +7156,11214,72,2,f +7156,11215,71,4,f +7156,11477,25,1,f +7156,11477,71,1,f +7156,14769,0,1,f +7156,15303,36,3,f +7156,15400,72,2,f +7156,15573,0,10,f +7156,15712,0,1,f +7156,18671,72,4,f +7156,18674,72,2,f +7156,23443,71,1,f +7156,24122,0,1,f +7156,2412b,71,7,f +7156,2412b,70,3,f +7156,2420,28,2,f +7156,24299,72,1,f +7156,24307,72,1,f +7156,2431,71,2,f +7156,2458,72,8,f +7156,27090pr0001,15,2,f +7156,2780,0,1,t +7156,2780,0,4,f +7156,28211,320,1,f +7156,2877,0,2,f +7156,3001,19,1,f +7156,3002,72,2,f +7156,3008,72,1,f +7156,3009,71,3,f +7156,3020,0,1,f +7156,3020,71,4,f +7156,3021,28,1,f +7156,3021,72,14,f +7156,3021,71,12,f +7156,3021,25,5,f +7156,3022,71,2,f +7156,3023,28,4,f +7156,30237b,72,2,f +7156,3030,71,1,f +7156,30304,72,1,f +7156,3032,72,1,f +7156,3034,28,1,f +7156,3034,72,2,f +7156,3034,0,2,f +7156,3036,72,1,f +7156,3039,70,1,f +7156,3040b,72,2,f +7156,3070b,36,1,t +7156,3070b,36,4,f +7156,32028,71,3,f +7156,32062,4,2,f +7156,32123b,14,4,f +7156,32123b,14,2,t +7156,32138,0,2,f +7156,3460,71,3,f +7156,3623,71,2,f +7156,3623,72,8,f +7156,3626cpr1149,78,2,f +7156,3626cpr2053,78,1,f +7156,3666,25,2,f +7156,3700,71,6,f +7156,3701,71,10,f +7156,3710,71,2,f +7156,3747a,72,4,f +7156,3749,19,4,f +7156,3795,28,2,f +7156,3832,72,1,f +7156,3832,71,2,f +7156,3895,71,2,f +7156,3957a,71,6,f +7156,4070,72,2,f +7156,4162,71,2,f +7156,4162,0,2,f +7156,41677,71,3,f +7156,41769,71,3,f +7156,41770,71,3,f +7156,4185,47,4,f +7156,4216,71,18,f +7156,42446,0,1,f +7156,42446,0,1,t +7156,4274,1,2,t +7156,4274,71,2,t +7156,4274,71,4,f +7156,4274,1,14,f +7156,4286,71,4,f +7156,43722,72,1,f +7156,43722,71,3,f +7156,43723,71,3,f +7156,43723,72,1,f +7156,4477,0,2,f +7156,48336,71,2,f +7156,4865b,72,2,f +7156,4865b,71,2,f +7156,48989,71,2,f +7156,52107,0,2,f +7156,53451,297,2,f +7156,53451,297,1,t +7156,57899,0,2,f +7156,58247,0,1,f +7156,59443,72,2,f +7156,59900,70,1,f +7156,60208,72,2,f +7156,60474,71,1,f +7156,60479,71,4,f +7156,60483,0,2,f +7156,6111,0,2,f +7156,6141,0,3,t +7156,6141,0,12,f +7156,63868,72,2,f +7156,63868,71,2,f +7156,64567,148,1,t +7156,64567,148,2,f +7156,6636,72,2,f +7156,85861,297,1,f +7156,85861,297,1,t +7156,85861,71,4,f +7156,85861,71,1,t +7156,85984,72,2,f +7156,85984,25,8,f +7156,87079,72,2,f +7156,87079,71,4,f +7156,87083,72,2,f +7156,87580,71,4,f +7156,87994,0,2,f +7156,87994,70,2,f +7156,87994,0,1,t +7156,88072,71,1,f +7156,92081,0,1,f +7156,92099,72,1,f +7156,92107,71,1,f +7156,92280,71,1,f +7156,92593,71,3,f +7156,92738,0,1,f +7156,93095,70,2,f +7156,93273,72,4,f +7156,970c00,0,1,f +7156,970c00pr1139,15,2,f +7156,973pr3580c01,15,2,f +7156,973pr3581c01,0,1,f +7156,98138,4,4,f +7156,98138,4,1,t +7156,99207,25,2,f +7156,99780,72,3,f +7157,4143,7,100,f +7158,4701c01,4,1,f +7159,32073,7,50,f +7161,3001a,47,1,f +7161,3002a,14,2,f +7161,3003,14,1,f +7161,3004,47,2,f +7161,3010,1,2,f +7161,3010p30,14,2,f +7161,3020,14,1,f +7161,3021,0,2,f +7161,3023,14,2,f +7161,3023,0,2,f +7161,3035,14,1,f +7161,3035,1,1,f +7161,3037,47,1,f +7161,3062a,15,2,f +7161,3062a,0,3,f +7161,3062a,4,2,f +7161,3137c01,0,3,f +7161,3137c02,0,1,f +7161,3139,0,6,f +7161,3183b,14,1,f +7161,3184,1,1,f +7161,3430c02,0,1,f +7161,7b,0,2,f +7163,2397,1,1,f +7163,2420,0,4,f +7163,2436,1,4,f +7163,2470,6,2,f +7163,2488,0,1,f +7163,3003,14,3,f +7163,3004,1,1,f +7163,3004,15,1,f +7163,3020,0,1,f +7163,3022,0,3,f +7163,3023,0,3,f +7163,3023,15,1,f +7163,3024,0,2,f +7163,3034,1,2,f +7163,3035,1,1,f +7163,3460,0,2,f +7163,3626apr0001,14,3,f +7163,3710,0,1,f +7163,3847,8,1,f +7163,3876,8,1,f +7163,4085c,0,2,f +7163,4275b,0,2,f +7163,4488,0,2,f +7163,4491a,4,1,f +7163,4496,6,1,f +7163,4498,6,1,f +7163,4499,6,1,f +7163,4506,2,2,f +7163,4506,6,1,f +7163,4531,0,2,f +7163,4865a,0,4,f +7163,75998pr0007,15,1,f +7163,87692,4,1,f +7163,87693,4,1,f +7163,87694,4,1,f +7163,970c00,2,3,f +7163,973p46c01,2,1,f +7163,973p48c01,2,1,f +7163,973p49c01,2,1,f +7166,25991,0,1,f +7166,3626cpr1880,92,1,f +7166,88646,0,1,f +7166,970c00pr1034,15,1,f +7166,973pr3319c01,85,1,f +7166,98383,297,1,f +7167,4589,182,2,f +7167,6126b,182,2,f +7167,61780,70,1,f +7168,14226c11,0,1,f +7168,2412b,14,2,f +7168,2415,7,3,f +7168,2419,0,1,f +7168,2431,15,1,f +7168,2432,14,1,f +7168,2432,1,1,f +7168,2447,0,1,f +7168,2447,33,1,t +7168,2447,33,1,f +7168,2456,4,2,f +7168,2496,0,2,f +7168,2625,0,1,f +7168,2655,7,2,f +7168,2877,1,1,f +7168,298c02,14,1,f +7168,298c02,14,1,t +7168,30027a,15,4,f +7168,30028,0,4,f +7168,30038,8,1,f +7168,3007,7,1,f +7168,3010,4,2,f +7168,3020,15,2,f +7168,3020,0,2,f +7168,3021,1,1,f +7168,3034,15,1,f +7168,3037,4,2,f +7168,3039,4,1,f +7168,3039,0,2,f +7168,3039p70,15,1,f +7168,3039pc1,0,1,f +7168,3062b,7,2,f +7168,3068b,14,1,f +7168,3069b,0,1,f +7168,3069bp15,0,1,f +7168,3069bp28,0,1,f +7168,3070b,34,1,t +7168,3070b,34,1,f +7168,3070b,36,1,f +7168,3070b,36,1,t +7168,3070bpr0007,7,1,f +7168,3070bpr0007,7,1,t +7168,3139,0,3,f +7168,3460,0,4,f +7168,3464,47,3,f +7168,3585,4,1,f +7168,3586,4,1,f +7168,3626bp03,14,1,f +7168,3626bp04,14,1,f +7168,3626bp07,14,1,f +7168,3660,7,4,f +7168,3710,4,2,f +7168,3794a,1,1,f +7168,3795,0,3,f +7168,3829c01,1,1,f +7168,3834,15,1,f +7168,3838,15,2,f +7168,3937,0,5,f +7168,3938,7,1,f +7168,4070,14,8,f +7168,4085c,1,4,f +7168,4349,7,1,f +7168,4485,1,1,f +7168,4735,0,2,f +7168,4856a,4,1,f +7168,4858,4,1,f +7168,4859,0,1,f +7168,4859,4,1,f +7168,4865a,4,2,f +7168,55298,8,1,f +7168,6134,4,4,f +7168,6141,36,1,t +7168,6141,36,1,f +7168,6152,33,1,f +7168,6153a,4,1,f +7168,6157,7,2,f +7168,6158,0,1,f +7168,6191,15,2,f +7168,6239,0,2,f +7168,6564,4,2,f +7168,6565,4,2,f +7168,6636,4,2,f +7168,73590c02b,14,1,f +7168,970c00,1,2,f +7168,970x026,7,1,f +7168,973p29c01,7,1,f +7168,973pb0097c01,1,1,f +7168,973pr1245c01,1,2,f +7169,3004,0,1,f +7169,3023,15,2,f +7169,3040b,15,2,f +7169,3665,15,2,f +7169,3700,15,2,f +7169,3710,15,1,f +7169,3710,0,2,f +7169,4070,15,2,f +7169,44301a,70,1,f +7169,44302a,70,1,f +7169,44567a,25,1,f +7169,6141,0,1,t +7169,6141,0,2,f +7172,2446,0,1,f +7172,2447,42,1,f +7172,30027,9,4,f +7172,30028,0,4,f +7172,3022,8,1,f +7172,30603pb03,1,1,f +7172,3626bp7a,14,1,f +7172,4081b,1,2,f +7172,41854,1,1,f +7172,41855,1,1,f +7172,41861c01,7,1,f +7172,4600,0,1,f +7172,6141,0,2,f +7172,x351,9,1,f +7174,10197,72,2,f +7174,11097,179,1,f +7174,11097,297,2,f +7174,11103,179,1,f +7174,11107,179,1,f +7174,11127,297,1,f +7174,11127,41,1,f +7174,11129pr0001,70,1,f +7174,11129pr0005,25,1,f +7174,11153,326,4,f +7174,11153,191,2,f +7174,11213,71,1,f +7174,11458,72,10,f +7174,11476,71,1,f +7174,11477,72,13,f +7174,12551pr0001,288,1,f +7174,12551pr0004,297,1,f +7174,12551pr0005,308,1,f +7174,13548,308,4,f +7174,13608,179,1,f +7174,15207,288,4,f +7174,2339,70,2,f +7174,2412b,297,12,f +7174,2417,288,2,f +7174,2423,326,1,f +7174,2431,288,12,f +7174,2432,70,2,f +7174,2445,15,1,f +7174,2453b,71,1,f +7174,2454a,72,5,f +7174,2566,0,2,f +7174,2584,0,1,f +7174,2585,71,1,f +7174,2654,72,5,f +7174,2780,0,6,f +7174,2780,0,1,t +7174,2817,0,1,f +7174,298c02,1,1,t +7174,298c02,1,2,f +7174,3001,70,6,f +7174,3004,326,2,f +7174,3005,71,9,f +7174,3008,71,2,f +7174,3009,72,5,f +7174,3009,326,4,f +7174,30093,288,2,f +7174,30094,70,2,f +7174,30095,72,4,f +7174,3010,0,2,f +7174,30136,308,13,f +7174,30137,70,7,f +7174,30153,36,1,f +7174,30157,70,1,f +7174,30192,72,1,f +7174,30192,72,1,t +7174,3020,70,4,f +7174,3022,0,7,f +7174,3023,33,8,f +7174,3023,0,2,f +7174,3023,326,13,f +7174,30236,72,4,f +7174,3024,71,2,f +7174,3024,71,1,t +7174,3031,71,1,f +7174,3032,70,2,f +7174,3032,72,2,f +7174,3035,71,1,f +7174,30350b,4,2,f +7174,30357,288,4,f +7174,3036,0,3,f +7174,3037,70,1,f +7174,30374,41,1,f +7174,30374,70,5,f +7174,30374,36,1,f +7174,3039,326,6,f +7174,3040b,288,12,f +7174,30526,71,6,f +7174,30586,71,2,f +7174,3062b,70,13,f +7174,3062b,71,2,f +7174,3068b,4,1,f +7174,3069b,70,10,f +7174,32002,19,2,f +7174,32002,19,1,t +7174,32013,72,2,f +7174,32039,0,1,f +7174,32054,4,2,f +7174,32056,0,2,f +7174,32062,0,2,f +7174,32062,4,5,f +7174,32064a,320,3,f +7174,32123b,14,2,t +7174,32123b,14,3,f +7174,32140,72,2,f +7174,32270,0,1,f +7174,32278,72,2,f +7174,3245c,72,5,f +7174,3297,4,1,f +7174,3298,72,4,f +7174,3308,72,4,f +7174,3622,70,9,f +7174,3623,72,2,f +7174,3626cpr1119,19,1,f +7174,3626cpr1123,19,1,f +7174,3626cpr1139,288,1,f +7174,3626cpr1141,288,1,f +7174,3626cpr1143,308,1,f +7174,3660,0,4,f +7174,3665,70,1,f +7174,3665,0,1,f +7174,3666,14,2,f +7174,3666,288,2,f +7174,3700,72,6,f +7174,3701,70,1,f +7174,3705,0,2,f +7174,3706,0,1,f +7174,3710,70,15,f +7174,3710,191,2,f +7174,3710,0,1,f +7174,3713,4,2,f +7174,3713,4,1,t +7174,3747b,70,2,f +7174,3795,70,1,f +7174,3895,0,1,f +7174,3937,4,1,f +7174,3941,41,1,f +7174,3941,72,1,f +7174,3942c,0,2,f +7174,3956,71,1,f +7174,3958,70,3,f +7174,4032a,70,2,f +7174,40490,0,3,f +7174,4070,0,1,f +7174,4081b,0,2,f +7174,4151b,0,2,f +7174,41539,71,1,f +7174,4162,70,3,f +7174,41669,36,2,f +7174,41767,72,3,f +7174,41768,72,3,f +7174,41854,326,1,f +7174,42003,71,1,f +7174,42023,72,4,f +7174,4274,71,4,t +7174,4274,71,5,f +7174,4285b,71,1,f +7174,4286,72,4,f +7174,43093,1,4,f +7174,43710,288,3,f +7174,43711,288,3,f +7174,43722,191,1,f +7174,43723,191,1,f +7174,4460b,308,6,f +7174,4497,148,2,f +7174,4522,0,1,f +7174,47847,72,4,f +7174,48729b,72,2,f +7174,48729b,72,2,t +7174,50950,288,4,f +7174,53451,15,1,t +7174,53451,15,2,f +7174,53705,36,1,t +7174,53705,36,3,f +7174,54200,182,1,t +7174,54200,0,2,f +7174,54200,182,2,f +7174,54200,0,1,t +7174,54383,288,2,f +7174,54384,288,2,f +7174,55236,288,1,f +7174,56823c50,0,1,f +7174,59443,4,5,f +7174,59443,71,1,f +7174,59900,36,4,f +7174,59900,33,3,f +7174,60475b,72,2,f +7174,60478,71,2,f +7174,60581,72,1,f +7174,60583b,71,2,f +7174,60897,72,14,f +7174,6091,288,2,f +7174,6108,71,2,f +7174,61184,71,2,f +7174,6134,71,1,f +7174,6141,19,1,t +7174,6141,19,3,f +7174,61485,0,1,f +7174,6182,71,1,f +7174,6232,71,2,f +7174,6232,72,4,f +7174,63864,0,1,f +7174,63965,297,2,f +7174,64448,70,4,f +7174,64449,72,2,f +7174,64567,0,2,f +7174,64567,0,1,t +7174,64647,57,1,t +7174,64647,57,2,f +7174,64799,71,1,f +7174,6541,72,4,f +7174,6553,72,4,f +7174,6587,28,7,f +7174,6628,0,3,f +7174,6632,4,2,f +7174,6636,72,6,f +7174,74698,0,1,f +7174,75937,0,1,f +7174,85080,326,4,f +7174,85543,15,1,f +7174,85984,72,4,f +7174,86038,320,2,f +7174,86208,72,1,f +7174,87079,70,3,f +7174,87079,72,1,f +7174,87083,72,3,f +7174,87580,72,1,f +7174,87747,15,12,f +7174,87747,15,4,t +7174,91405,28,2,f +7174,92099,72,2,f +7174,92280,0,6,f +7174,92438,28,2,f +7174,92593,326,1,f +7174,92690,297,2,f +7174,92842,0,1,f +7174,92950,71,1,f +7174,93273,326,6,f +7174,96874,25,1,t +7174,970c00pr0438,70,1,f +7174,970c00pr0442,326,1,f +7174,970c02pr0430,19,2,f +7174,970c155pr0443,326,1,f +7174,973pr2225c01,19,1,f +7174,973pr2226c01,19,1,f +7174,973pr2244c01,326,1,f +7174,973pr2245c01,326,1,f +7174,973pr2248c01,70,1,f +7174,98138,41,5,f +7174,98138,41,1,t +7174,98560,72,1,f +7175,11261,484,1,f +7175,2586pr0007,70,1,f +7175,3626bpr1054,14,1,f +7175,3678bpr0015,288,1,f +7175,88646,0,1,f +7175,93231,70,1,f +7175,973pr0802c01,288,1,f +7176,2412b,73,2,f +7176,2436,1,2,f +7176,30027b,15,4,f +7176,30028,0,4,f +7176,3004,1,1,f +7176,3020,71,1,f +7176,3021,1,2,f +7176,3023,1,2,f +7176,30383,71,2,f +7176,3065,41,1,f +7176,3679,71,1,f +7176,3680,1,1,f +7176,3710,1,2,f +7176,3937,1,1,f +7176,3938,71,1,f +7176,3942c,15,1,f +7176,41855,1,1,f +7176,44302a,1,2,f +7176,4600,71,2,f +7176,47674,47,1,f +7176,47675,1,1,f +7176,47676,1,1,f +7176,6141,36,2,f +7176,6141,36,1,t +7176,6141,46,2,f +7176,6141,46,1,t +7177,32062,0,1,f +7177,32174,72,6,f +7177,32533pb226,21,1,f +7177,32553,72,1,f +7177,32554,57,1,f +7177,32572pb01,272,1,f +7177,41668,272,2,f +7177,43093,1,6,f +7177,47295,272,1,f +7177,47300,72,4,f +7177,47304,15,1,f +7177,6553,0,1,f +7177,6558,0,1,f +7180,2446,72,1,f +7180,2447,0,1,f +7180,2447,0,1,t +7180,2540,0,2,f +7180,2555,0,1,f +7180,30031,0,1,f +7180,30091,72,1,f +7180,3022,14,1,f +7180,3023,71,1,f +7180,3024,36,2,f +7180,30602pb023,0,1,f +7180,3626bpr0325,14,1,f +7180,3794a,14,1,f +7180,3795,0,1,f +7180,41854,14,2,f +7180,4600,71,2,f +7180,4623,0,1,f +7180,59275,25,2,f +7180,6014b,14,4,f +7180,6015,0,4,f +7180,6019,15,2,f +7180,6141,46,1,t +7180,6141,46,2,f +7180,6187,71,1,f +7180,970x106,272,1,f +7180,973pb0302c01,25,1,f +7182,3003,335,100,f +7184,43559,15,2,f +7184,44814,135,1,f +7184,55013,72,2,f +7184,57543,135,2,f +7184,60176,72,2,f +7184,60894,72,1,f +7184,60899,15,4,f +7184,60901,42,1,f +7184,64251,72,2,f +7184,87790,15,1,f +7184,87790,297,1,f +7184,87791,15,2,f +7186,ideabook250,9999,1,f +7188,2456,1,1,f +7188,2456,4,1,f +7188,3001,1,1,f +7188,3001,15,1,f +7188,3001pr1,14,1,f +7188,3002,14,2,f +7188,3002,1,2,f +7188,3002,4,2,f +7188,3002,15,2,f +7188,3003,14,2,f +7188,3003,15,3,f +7188,3003,4,2,f +7188,3003,1,6,f +7188,3003pe2,14,2,f +7188,4744,4,1,f +7188,4744pr0001,0,1,f +7190,2302,10,1,f +7190,2312c02,14,1,f +7190,3011,73,2,f +7190,3011,0,2,f +7190,3011,4,3,f +7190,3011,1,2,f +7190,3011,10,2,f +7190,3011,27,1,f +7190,3011,14,2,f +7190,31061,484,1,f +7190,3437,0,4,f +7190,3437,14,6,f +7190,3437,73,6,f +7190,3437,27,3,f +7190,3437,41,2,f +7190,3437,10,6,f +7190,3437,1,6,f +7190,3437,4,9,f +7190,3437pe1,10,2,f +7190,40666,10,2,f +7190,40666,1,2,f +7190,40666,14,2,f +7190,47511pr0001,15,1,f +7190,51262,1,1,f +7190,6474,14,2,f +7193,2431,0,2,f +7193,2695,0,2,f +7193,2723,0,7,f +7193,2780,0,18,f +7193,2825,0,2,f +7193,2905,0,2,f +7193,3068b,0,1,f +7193,32000,0,2,f +7193,32002,8,4,f +7193,32009,0,2,f +7193,32013,0,6,f +7193,32016,0,4,f +7193,32034,0,17,f +7193,32039,0,15,f +7193,32056,0,2,f +7193,32062,0,32,f +7193,32073,0,7,f +7193,32123b,7,22,f +7193,32140,0,2,f +7193,32165,0,2,f +7193,32174,0,5,f +7193,32177,0,2,f +7193,32184,0,6,f +7193,32192,0,2,f +7193,32249,0,4,f +7193,32250,0,2,f +7193,32291,0,5,f +7193,32449,0,14,f +7193,32474,0,5,f +7193,32527,80,1,f +7193,32527,82,3,f +7193,32528,82,4,f +7193,32534,82,1,f +7193,32535,82,1,f +7193,33299a,7,2,f +7193,3705,0,6,f +7193,3706,0,7,f +7193,3713,7,14,f +7193,3749,7,12,f +7193,4274,7,11,f +7193,4519,0,23,f +7193,4740,334,2,f +7193,6141,46,2,f +7193,6536,0,8,f +7193,6538b,0,3,f +7193,6558,0,4,f +7193,6575,7,2,f +7193,6587,8,3,f +7193,6632,0,14,f +7193,6632,7,2,f +7193,6636,0,4,f +7193,71509,0,2,f +7193,75c04,4,2,f +7193,75c04,1,1,f +7193,75c04,15,1,f +7193,75c09,0,1,f +7193,75c10,82,1,f +7193,78c04,82,3,f +7193,78c04,179,1,f +7193,78c07,82,1,f +7193,8007stk01,9999,1,t +7193,x209,0,2,f +7194,2412b,0,4,f +7194,2420,14,2,f +7194,2431,4,2,f +7194,2432,4,3,f +7194,2436,14,1,f +7194,2441,0,1,f +7194,2445,7,1,f +7194,2446,4,1,f +7194,2447,0,1,f +7194,2456,0,2,f +7194,2877,7,1,f +7194,30027a,15,4,f +7194,30028,0,4,f +7194,3003,0,1,f +7194,3003,4,1,f +7194,3004,4,2,f +7194,3004,1,1,f +7194,3020,14,2,f +7194,3020,4,2,f +7194,3021,0,1,f +7194,3023,14,1,f +7194,3023,4,2,f +7194,3023,7,1,f +7194,3024,46,4,f +7194,3024,14,2,f +7194,3024,36,2,f +7194,30251,41,1,f +7194,30263,7,1,f +7194,30350b,7,2,f +7194,3040b,4,3,f +7194,3068b,4,1,f +7194,3298pb015,4,1,f +7194,3626bp05,14,1,f +7194,3660,0,2,f +7194,3666,4,2,f +7194,3710,15,1,f +7194,3710,4,1,f +7194,3794a,0,2,f +7194,3829c01,15,1,f +7194,3829c01,0,1,f +7194,4006,0,1,f +7194,4081b,7,4,f +7194,4085c,7,2,f +7194,4211,4,1,f +7194,4485,4,1,f +7194,4522,0,1,f +7194,4533,15,1,f +7194,4865a,4,2,f +7194,6014a,15,4,f +7194,6015,0,4,f +7194,6019,0,2,f +7194,6141,46,4,f +7194,6141,46,1,t +7194,6157,0,2,f +7194,92410,4,1,f +7194,970c00,0,1,f +7194,973pb0242c01,15,1,f +7195,193au,4,2,f +7195,3004,4,1,f +7195,3004,15,1,f +7195,3005,4,1,f +7195,3005,15,1,f +7195,3007,15,1,f +7195,3008,15,1,f +7195,3009,0,2,f +7195,3020,7,1,f +7195,3021,15,2,f +7195,3021,4,1,f +7195,3023,4,2,f +7195,3024,36,2,f +7195,3029,4,1,f +7195,3032,15,1,f +7195,3037,15,1,f +7195,3040b,4,3,f +7195,3040b,15,2,f +7195,3068b,15,2,f +7195,3068b,7,4,f +7195,3069b,7,1,f +7195,3298,4,1,f +7195,3460,7,4,f +7195,3461,7,2,f +7195,3462,4,1,f +7195,3475a,0,2,f +7195,3481,4,1,f +7195,3622,15,2,f +7195,3626apr0001,14,2,f +7195,3633,4,1,f +7195,3665,0,4,f +7195,3665,4,1,f +7195,3666,7,12,f +7195,3666,4,2,f +7195,3710,4,6,f +7195,3710,7,4,f +7195,3747b,4,2,f +7195,3747b,15,1,f +7195,3794a,15,5,f +7195,3795,4,1,f +7195,3795,7,1,f +7195,3821,15,1,f +7195,3822,15,1,f +7195,3823,47,1,f +7195,3829c01,15,1,f +7195,3832,15,1,f +7195,3839a,7,2,f +7195,3853,4,1,f +7195,3856,15,2,f +7195,4213,15,1,f +7195,4214,15,1,f +7195,4215ap02,15,2,f +7195,4215ap03,15,1,f +7195,970c00,15,2,f +7195,973p24c01,15,2,f +7196,11289,40,1,f +7196,11302pat0001,36,2,f +7196,15339,148,1,f +7196,15341,4,2,f +7196,15343,4,2,f +7196,15348,4,1,f +7196,15353,25,1,f +7196,15354,27,1,f +7196,15355,0,1,f +7196,15361,57,2,f +7196,2654,47,2,f +7196,2780,0,3,f +7196,3062b,14,1,f +7196,32002,19,1,f +7196,32054,0,2,f +7196,3626c,212,1,f +7196,41531,4,2,f +7196,43093,1,4,f +7196,4519,71,2,f +7196,4599b,4,1,f +7196,48729b,0,4,f +7196,48989,71,1,f +7196,60115,0,1,f +7196,60484,0,1,f +7196,87806pat0003,179,2,f +7196,90609,0,6,f +7196,90612,0,1,f +7196,90617,72,4,f +7196,90622,0,2,f +7196,90625,0,1,f +7196,90634,0,1,f +7196,90639,4,4,f +7196,90639pr0029,179,1,f +7196,90640,148,4,f +7196,90661,4,2,f +7196,92947,71,2,f +7196,93571,0,4,f +7196,95199,72,1,f +7196,98138pr0019,15,1,f +7196,98592,148,2,f +7197,11291,4,1,f +7197,13793,72,1,f +7197,14418,71,1,f +7197,14520,4,2,f +7197,16091,0,1,f +7197,18895pr03,15,1,f +7197,18896,0,1,f +7197,19220,0,1,f +7197,22385,0,1,f +7197,22886,71,1,f +7197,2412b,0,3,f +7197,2412b,179,2,f +7197,2420,4,2,f +7197,2437,40,1,f +7197,2446,15,2,f +7197,2447,40,2,f +7197,2453b,71,2,f +7197,2654,19,1,f +7197,28324,0,1,f +7197,28326,4,2,f +7197,3002,14,2,f +7197,30031,72,1,f +7197,3004,15,1,f +7197,3009,71,2,f +7197,3010,71,1,f +7197,30153,36,1,f +7197,3020,1,2,f +7197,3021,72,4,f +7197,3022,4,1,f +7197,3023,71,4,f +7197,30237b,4,2,f +7197,3024,15,2,f +7197,3037,1,1,f +7197,30387,14,1,f +7197,3039,14,1,f +7197,30395,72,1,f +7197,3062b,14,1,f +7197,3068b,4,1,f +7197,3069b,182,3,f +7197,3069bpr0100,2,3,f +7197,3626cpr2113,14,1,f +7197,3626cpr2139,14,1,f +7197,3626cpr2140,14,1,f +7197,3666,0,3,f +7197,3666,71,1,f +7197,3710,4,3,f +7197,3794b,71,1,f +7197,3821,4,1,f +7197,3822,4,1,f +7197,3829c01,1,1,f +7197,3900,71,1,f +7197,4006,0,1,f +7197,4079b,1,1,f +7197,41334,0,1,f +7197,4345b,71,1,f +7197,4346,71,1,f +7197,44302a,14,1,f +7197,45677,4,1,f +7197,4697b,71,2,f +7197,50859b,179,2,f +7197,50860,15,1,f +7197,50861,0,4,f +7197,50862,297,4,f +7197,52501,4,2,f +7197,54200,47,2,f +7197,54200,33,1,f +7197,56890,0,4,f +7197,6014b,71,4,f +7197,60475b,71,2,f +7197,60477,71,2,f +7197,60481,4,2,f +7197,60599,71,1,f +7197,60616b,71,1,f +7197,60897,15,2,f +7197,61482,71,1,f +7197,6157,71,2,f +7197,6231,4,2,f +7197,6636,72,1,f +7197,92338,72,1,f +7197,92582,71,1,f +7197,92585,297,1,f +7197,92593,72,2,f +7197,970c00,272,2,f +7197,970c00,72,1,f +7197,973pr3627,212,1,f +7197,973pr3693,25,1,f +7197,973pr3694,272,1,f +7197,98138,33,1,f +7197,98138,36,2,f +7197,98282,4,2,f +7198,3811,1,1,f +7199,11213,71,2,f +7199,18674,72,1,f +7199,2412b,72,1,f +7199,30162,71,1,f +7199,3024,71,1,f +7199,3069b,41,1,f +7199,3623,72,2,f +7199,3666,71,1,f +7199,3700,72,2,f +7199,4070,72,4,f +7199,4081b,71,1,f +7199,41769,71,1,f +7199,41770,71,1,f +7199,4274,1,2,f +7199,43722,71,1,f +7199,43723,71,1,f +7199,4599b,71,1,f +7199,4733,71,2,f +7199,4740,71,1,f +7199,54200,41,2,f +7199,54200,71,3,f +7199,59900,40,1,f +7199,6141,72,4,f +7199,6141,47,2,f +7199,85861,71,1,f +7199,98138,71,2,f +7200,3003,7,100,f +7201,clikits134,89,1,f +7202,3899,14,2,f +7202,4094a,14,1,f +7202,4095,14,1,f +7202,4222a,6,1,f +7202,fab5b,9999,1,f +7202,fabca2,6,1,f +7203,12825,0,1,f +7203,2420,73,4,f +7203,3020,15,2,f +7203,3023,4,2,f +7203,3031,73,1,f +7203,3034,1,1,f +7203,30374,71,1,f +7203,30414,73,2,f +7203,3069b,73,2,f +7203,3070b,73,1,t +7203,3070b,73,4,f +7203,3710,73,1,f +7203,4589,4,1,f +7203,4740,71,1,f +7203,4865a,42,1,f +7203,48729b,0,1,t +7203,48729b,0,1,f +7203,50951,0,4,f +7203,60475a,73,2,f +7203,6091,73,2,f +7203,61184,71,1,f +7203,6141,47,1,t +7203,6141,36,3,f +7203,6141,15,1,f +7203,6141,15,1,t +7203,6141,36,1,t +7203,6141,47,1,f +7203,6157,0,2,f +7203,85940,0,1,f +7203,85973,0,1,f +7203,87079,1,1,f +7203,93590,73,1,f +7203,93591pr0017,73,1,f +7203,93595pr0001,0,4,f +7203,93597pr0007,73,1,f +7203,98138pr0005,71,1,f +7203,98138pr0005,71,1,t +7204,11477,71,4,f +7204,12825,72,4,f +7204,14301,71,1,f +7204,15207,71,2,f +7204,15443,70,1,f +7204,15444,4,1,f +7204,15445,72,1,f +7204,15489pr0001,0,1,f +7204,15706,0,1,f +7204,2397,72,1,f +7204,2412b,72,5,f +7204,2432,0,1,f +7204,2780,0,1,f +7204,2780,0,1,t +7204,2815,0,1,f +7204,2817,4,2,f +7204,298c02,4,1,f +7204,298c02,4,1,t +7204,30136,71,3,f +7204,3022,71,2,f +7204,3023,36,5,f +7204,3024,182,1,f +7204,3024,46,1,t +7204,3024,182,1,t +7204,3024,46,1,f +7204,3031,71,1,f +7204,3032,72,1,f +7204,30374,36,1,f +7204,3068b,71,1,f +7204,3069bpr0101,71,2,f +7204,32034,0,1,f +7204,32054,71,1,f +7204,32062,4,1,f +7204,32270,0,1,f +7204,32530,0,2,f +7204,3460,72,2,f +7204,3626cpr1325,14,1,f +7204,3626cpr1326,14,1,f +7204,3626cpr1340,179,1,f +7204,3673,71,1,f +7204,3673,71,1,t +7204,3710,71,2,f +7204,3713,71,1,f +7204,3713,71,1,t +7204,3830,72,1,f +7204,3831,72,1,f +7204,3835,0,1,f +7204,3937,72,1,f +7204,4081b,72,2,f +7204,4185,47,1,f +7204,41854,0,1,f +7204,42446,71,1,t +7204,42446,71,1,f +7204,4274,1,1,t +7204,4274,1,1,f +7204,48336,0,1,f +7204,50950,71,2,f +7204,59900,72,2,f +7204,60470a,71,4,f +7204,60474,71,1,f +7204,60475a,0,1,f +7204,60849,71,1,t +7204,60849,71,1,f +7204,60897,15,2,f +7204,61252,0,4,f +7204,6134,0,1,f +7204,6141,36,1,t +7204,6141,36,5,f +7204,61482,71,1,f +7204,61482,71,1,t +7204,61485,0,1,f +7204,6187,0,2,f +7204,63965,71,2,f +7204,6587,28,1,f +7204,88072,72,1,f +7204,89523,72,1,f +7204,92280,0,2,f +7204,92338,72,2,f +7204,92947,71,1,f +7204,93095,15,1,f +7204,93219pr0007,0,1,f +7204,93273,0,4,f +7204,970c00pr0605,25,1,f +7204,970c00pr0628,0,1,f +7204,970c63pr0609,272,1,f +7204,973pr2538c01,25,1,f +7204,973pr2554c01,272,1,f +7204,973pr2590c01,0,1,f +7204,99781,71,1,f +7205,3004,15,2,f +7205,3005,0,2,f +7205,3005,15,4,f +7205,3008,0,1,f +7205,3009,15,2,f +7205,3010,15,2,f +7205,3010,0,1,f +7205,3021,15,2,f +7205,3023,0,1,f +7205,3023,15,2,f +7205,3622,15,4,f +7205,3700,0,1,f +7205,3700,15,6,f +7205,6111,15,2,f +7205,6141,57,1,t +7205,6141,0,1,t +7205,6141,0,10,f +7205,6141,57,2,f +7208,2335,4,5,f +7208,2335,1,5,f +7208,2476a,71,4,f +7208,2540,1,5,f +7208,2540,4,5,f +7208,2555,0,12,f +7208,2877,0,8,f +7208,3008,15,4,f +7208,3010,0,2,f +7208,3023,4,2,f +7208,3023,1,2,f +7208,3024,4,2,f +7208,3024,1,2,f +7208,3037,0,2,f +7208,30383,72,8,f +7208,30488,0,1,f +7208,30488,15,1,f +7208,30488c01,15,5,f +7208,30488c01,0,5,f +7208,30489,2,10,f +7208,30493,0,2,f +7208,30517,0,4,f +7208,30608,70,2,f +7208,30608,0,2,f +7208,3068b,2,26,f +7208,3069b,2,20,f +7208,32002,72,2,f +7208,32062,4,2,f +7208,3626bp09,14,1,f +7208,3626bpr0136,14,1,f +7208,3626bpr0216,14,1,f +7208,3626bpr0250,14,1,f +7208,3626bpr0262,14,1,f +7208,3626bpr0270,14,1,f +7208,3626bpr0325,14,1,f +7208,3626bpr0348,14,2,f +7208,3626bpr0387,14,1,f +7208,3626bpr0389,14,2,f +7208,3626bpr0411,14,1,f +7208,3626bpx126,14,1,f +7208,3709,72,26,f +7208,3710,4,1,f +7208,3710,1,1,f +7208,3794a,72,4,f +7208,3795,4,4,f +7208,3795,1,4,f +7208,3795,0,14,f +7208,3901,70,2,f +7208,3901,0,2,f +7208,4032a,0,4,f +7208,41819c01,2,2,f +7208,42022,0,4,f +7208,42023,0,4,f +7208,4274,71,49,f +7208,43093,1,4,f +7208,44302a,0,6,f +7208,4485,1,1,f +7208,4485,4,2,f +7208,4510,0,2,f +7208,4530,0,2,f +7208,4740,42,24,f +7208,48298,15,4,f +7208,53531,15,2,f +7208,53532,288,1,f +7208,53533,0,2,f +7208,6093,70,1,f +7208,6190,72,12,f +7208,6536,71,2,f +7208,72824p01,15,1,f +7208,72824pr03,15,1,f +7208,85543,15,2,f +7208,970c00,71,2,f +7208,970c00,15,6,f +7208,970c00,379,1,f +7208,970c00,0,5,f +7208,973c01,1,1,f +7208,973c01,15,5,f +7208,973c02,4,6,f +7208,973c18,0,2,f +7211,15,1,2,f +7211,17,4,2,f +7211,21,47,1,f +7211,270c02,0,1,f +7211,3003,0,1,f +7211,3004,1,8,f +7211,3009,1,4,f +7211,3010,47,1,f +7211,3010,1,8,f +7211,3020,7,5,f +7211,3020,1,2,f +7211,3021,1,4,f +7211,3022,1,2,f +7211,3022,7,1,f +7211,3023,1,2,f +7211,3023,0,2,f +7211,3024,1,1,f +7211,3032,1,4,f +7211,3034,7,5,f +7211,3037,1,4,f +7211,3039,1,4,f +7211,3062a,0,1,f +7211,3062a,7,4,f +7211,3127b,4,1,f +7211,3145,7,2,f +7211,3176,7,1,f +7211,3185,0,4,f +7211,3228a,1,4,f +7211,3315,7,1,f +7211,3358,0,4,f +7211,3359,0,4,f +7211,3403c01,0,1,f +7211,3488,0,8,f +7211,3581,1,2,f +7211,3582,1,2,f +7211,3597,7,1,f +7211,3624,0,2,f +7211,3626a,14,2,f +7211,3633,0,2,f +7211,3660,1,12,f +7211,56823,0,2,f +7211,586c01,1,2,f +7211,736c02,0,1,f +7212,2412b,15,2,f +7212,2412b,72,3,f +7212,2412b,71,3,f +7212,2412b,4,3,f +7212,2421,0,1,f +7212,2431,1,4,f +7212,2435,2,2,f +7212,2436,15,1,f +7212,2437,41,1,f +7212,2445,15,5,f +7212,2446,1,1,f +7212,2447,40,1,t +7212,2447,40,1,f +7212,2453a,15,6,f +7212,2454a,4,6,f +7212,2454a,15,7,f +7212,2460,72,1,f +7212,2479,0,1,f +7212,2540,71,2,f +7212,2555,4,6,f +7212,2569,0,1,t +7212,2569,0,2,f +7212,2877,0,2,f +7212,3001,15,6,f +7212,3002,15,1,f +7212,3003,15,2,f +7212,30035,0,1,f +7212,3004,4,5,f +7212,3004,1,4,f +7212,3004,15,12,f +7212,3004,72,2,f +7212,3005,15,11,f +7212,3009,15,6,f +7212,3010,15,1,f +7212,3010,4,7,f +7212,3010,72,1,f +7212,30134,0,1,f +7212,30145,15,8,f +7212,30179,4,2,f +7212,30194,72,1,f +7212,3020,4,2,f +7212,3020,72,4,f +7212,3022,4,1,f +7212,3022,72,1,f +7212,3022,0,1,f +7212,3023,4,1,f +7212,3023,33,6,f +7212,3023,72,1,f +7212,3023,46,1,f +7212,3023,15,9,f +7212,30236,72,1,f +7212,3024,34,1,f +7212,3024,46,5,f +7212,3024,36,3,f +7212,30248,0,1,f +7212,30251,41,1,f +7212,3028,15,3,f +7212,3029,15,1,f +7212,3030,72,2,f +7212,3032,72,1,f +7212,3034,15,2,f +7212,30365,4,4,f +7212,30383,0,1,f +7212,3039,4,1,f +7212,3040b,1,2,f +7212,3040bpr0003,71,1,f +7212,30552,0,4,f +7212,30608,70,1,f +7212,3062b,34,1,f +7212,3068b,15,1,f +7212,3068bpr0137,15,1,f +7212,3069b,1,2,f +7212,3069bpr0030,15,1,f +7212,3069bpr0070,0,1,f +7212,3070bpr0007,71,1,f +7212,3070bpr0007,71,1,t +7212,3460,0,2,f +7212,3460,4,2,f +7212,3622,1,2,f +7212,3622,15,1,f +7212,3623,15,4,f +7212,3626bpr0245,14,1,f +7212,3626bpr0282,14,1,f +7212,3626bpr0314,14,1,f +7212,3626bpr0409,14,1,f +7212,3660,72,1,f +7212,3660,15,2,f +7212,3710,4,2,f +7212,3710,15,5,f +7212,3741,2,1,t +7212,3741,2,2,f +7212,3742,4,6,f +7212,3742,4,2,t +7212,3754,15,2,f +7212,3788,15,1,f +7212,3794a,4,1,f +7212,3795,71,1,f +7212,3795,1,1,f +7212,3795,15,2,f +7212,3829c01,1,1,f +7212,3832,72,2,f +7212,3899,4,2,f +7212,3901,70,1,f +7212,3937,71,1,f +7212,3938,0,1,f +7212,3941,71,2,f +7212,3958,72,1,f +7212,3963,71,1,f +7212,4070,15,2,f +7212,4079,1,1,f +7212,4081b,15,2,f +7212,4085c,4,4,f +7212,4151,72,1,f +7212,41539,72,1,f +7212,4162,72,1,f +7212,41855,15,1,f +7212,42022,4,4,f +7212,4211,15,1,f +7212,4215b,15,1,f +7212,43337,15,2,f +7212,4345b,4,1,f +7212,4346,15,1,f +7212,43723,71,1,f +7212,43898,47,1,f +7212,43898,0,1,f +7212,44126,15,1,f +7212,44302a,0,1,f +7212,4449,71,1,f +7212,44661,15,1,f +7212,4476b,15,9,f +7212,4485,1,1,f +7212,4488,71,1,f +7212,4589,72,2,f +7212,4599a,71,3,f +7212,4714,15,1,f +7212,4715,15,2,f +7212,4735,71,2,f +7212,4740,36,2,f +7212,48183,15,1,f +7212,48288,72,2,f +7212,48336,0,2,f +7212,4865a,15,2,f +7212,48729a,72,1,t +7212,48729a,72,1,f +7212,50373,4,1,f +7212,51542,71,1,f +7212,51739,15,1,f +7212,54200,36,2,f +7212,54200,33,8,f +7212,57894,4,5,f +7212,57895,41,5,f +7212,58181,41,4,f +7212,6014b,15,4,f +7212,6015,0,4,f +7212,6019,15,8,f +7212,6064,2,1,f +7212,6087,71,1,f +7212,6112,15,1,f +7212,6117,72,1,f +7212,6141,36,4,f +7212,6141,36,1,t +7212,6157,0,2,f +7212,63965,0,2,f +7212,75c10,0,5,f +7212,75c10,0,1,t +7212,76041c01,4,2,f +7212,7892stk01,9999,1,t +7212,970c00,15,3,f +7212,970c00,71,1,f +7212,973pr1163c01,272,1,f +7212,973pr1239c01,15,2,f +7212,973pr1241c01,15,1,f +7213,2555,4,1,f +7213,3004,4,1,f +7213,3021,72,1,f +7213,3021,4,1,f +7213,30374,0,1,f +7213,3623,71,2,f +7213,4081b,0,3,f +7213,4274,71,1,f +7213,4274,71,1,t +7213,54200,4,2,f +7213,54200,4,1,t +7213,60478,72,1,f +7213,6636,4,2,f +7214,3022,72,1,f +7214,30386,4,1,f +7214,30387,4,1,f +7214,30389b,4,1,f +7214,3795,72,1,f +7214,51858,15,1,f +7214,6141,33,1,f +7214,6141,33,2,t +7216,14769,0,1,f +7216,15391,15,1,f +7216,15392,72,1,f +7216,15406,0,1,f +7216,15411,0,2,f +7216,15573,297,1,f +7216,15706,0,4,f +7216,18587,71,2,f +7216,18588,15,2,f +7216,19179,148,4,f +7216,19220,0,1,f +7216,20394,179,1,f +7216,20401pr0001,45,1,f +7216,2450,72,2,f +7216,2639,15,2,f +7216,2780,0,4,f +7216,3003,72,1,f +7216,30151b,42,1,f +7216,3020,72,5,f +7216,3021,15,4,f +7216,3022,72,1,f +7216,3023,41,9,f +7216,30237b,0,1,f +7216,3031,0,2,f +7216,3034,71,1,f +7216,30355,0,1,f +7216,30356,0,1,f +7216,3039,72,1,f +7216,30602,41,3,f +7216,3069b,36,1,f +7216,32039,0,1,f +7216,3623,72,2,f +7216,3626cpr1503,14,1,f +7216,3626cpr1706,14,1,f +7216,3700,72,3,f +7216,3701,72,2,f +7216,3795,72,1,f +7216,3937,0,2,f +7216,4032a,72,2,f +7216,4070,1,2,f +7216,4274,1,2,f +7216,43093,1,1,f +7216,43121,0,1,f +7216,43710,0,1,f +7216,43711,0,1,f +7216,43722,0,1,f +7216,43722,15,1,f +7216,43723,0,1,f +7216,43723,15,1,f +7216,4595,0,1,f +7216,4740,41,1,f +7216,4740,36,1,f +7216,47457,72,1,f +7216,47753,0,2,f +7216,50304,0,1,f +7216,50305,0,1,f +7216,54200,0,2,f +7216,54200,41,2,f +7216,55013,72,2,f +7216,59900,182,2,f +7216,60470a,0,1,f +7216,6134,71,2,f +7216,61409,0,2,f +7216,61409,15,1,f +7216,6141,36,2,f +7216,6141,182,25,f +7216,61485,15,2,f +7216,6239,0,2,f +7216,6541,15,2,f +7216,6636,15,2,f +7216,75937,179,1,f +7216,87081,0,2,f +7216,87580,72,2,f +7216,87752,41,1,f +7216,92947,0,2,f +7216,93274,0,2,f +7216,95188,0,2,f +7216,95199,15,1,f +7216,970c00pr0805,272,1,f +7216,973pr2909c01,272,1,f +7216,973pr2949c01,15,1,f +7216,98100,15,1,f +7216,98100,0,2,f +7216,98138,41,4,f +7216,98313,15,4,f +7216,99207,4,2,f +7216,99780,0,5,f +7216,99781,15,3,f +7216,99930,308,1,f +7217,2358p03,2,2,f +7218,2335,15,2,f +7218,2412b,71,6,f +7218,2412b,72,5,f +7218,2413,71,1,f +7218,2420,72,2,f +7218,2431,15,1,f +7218,2432,0,1,f +7218,2444,72,2,f +7218,2445,15,1,f +7218,2445,70,1,f +7218,2456,14,1,f +7218,2458,15,1,f +7218,2540,15,2,f +7218,2714a,0,2,f +7218,2817,71,2,f +7218,2877,72,2,f +7218,298c02,4,1,t +7218,298c02,14,1,f +7218,298c02,4,1,f +7218,298c02,0,2,f +7218,298c02,14,1,t +7218,298c02,0,1,t +7218,3001,70,1,f +7218,3001,71,3,f +7218,3002,15,1,f +7218,3003,1,1,f +7218,3004,2,1,f +7218,3004,71,5,f +7218,3004,70,1,f +7218,3009,15,2,f +7218,3010,15,1,f +7218,30132,72,1,t +7218,30132,72,2,f +7218,30170,72,1,f +7218,30170,72,1,t +7218,30171,70,1,f +7218,30172,72,1,f +7218,3020,70,1,f +7218,3020,72,3,f +7218,3020,15,4,f +7218,3021,15,1,f +7218,3021,71,1,f +7218,3021,1,1,f +7218,3022,1,2,f +7218,3022,2,1,f +7218,3022,70,1,f +7218,3023,4,2,f +7218,3023,71,2,f +7218,3023,15,2,f +7218,3023,72,5,f +7218,3028,71,2,f +7218,3031,72,2,f +7218,3031,15,2,f +7218,3032,71,2,f +7218,30332,0,2,f +7218,3034,15,5,f +7218,3034,19,1,f +7218,30367b,0,1,f +7218,3039,71,2,f +7218,3040b,4,1,f +7218,30414,4,2,f +7218,30414,71,2,f +7218,30414,72,4,f +7218,3062b,0,4,f +7218,3066,40,1,f +7218,3068b,4,1,f +7218,3068b,15,4,f +7218,3068b,71,3,f +7218,3069b,71,2,f +7218,3069b,0,1,f +7218,3069b,15,1,f +7218,3069b,2,1,f +7218,3069b,1,1,f +7218,3069bpr0101,71,1,f +7218,3070b,4,1,t +7218,3070b,4,2,f +7218,32000,0,3,f +7218,32059,72,2,f +7218,32059,15,1,f +7218,32059,71,2,f +7218,32064b,15,1,f +7218,3245b,72,1,f +7218,3245b,4,1,f +7218,33299a,0,4,f +7218,3623,71,1,f +7218,3626bpr0472,78,1,f +7218,3626bpr0516a,78,1,f +7218,3626bpr0518,78,1,f +7218,3660,72,1,f +7218,3660,4,1,f +7218,3660,2,1,f +7218,3660,71,2,f +7218,3665,15,1,f +7218,3673,71,1,t +7218,3673,71,2,f +7218,3679,71,1,f +7218,3680,4,1,f +7218,3701,71,8,f +7218,3706,0,1,f +7218,3710,71,2,f +7218,3710,15,1,f +7218,3710,0,11,f +7218,3713,4,1,t +7218,3713,4,1,f +7218,3794a,15,2,f +7218,3794a,71,6,f +7218,3794a,72,1,f +7218,3795,71,3,f +7218,3795,4,2,f +7218,3795,72,2,f +7218,3832,72,1,f +7218,4032a,0,3,f +7218,4070,71,4,f +7218,4070,0,2,f +7218,4070,15,4,f +7218,4070,4,4,f +7218,4081b,0,2,f +7218,4083,0,2,f +7218,41767,15,1,f +7218,41768,15,1,f +7218,41769,15,3,f +7218,41770,15,3,f +7218,42022,15,2,f +7218,42023,15,2,f +7218,42023,72,4,f +7218,42610,71,4,f +7218,4282,71,3,f +7218,43093,1,2,f +7218,43337,40,4,f +7218,43712,71,1,f +7218,43713,15,1,f +7218,43719,4,1,f +7218,43720,15,1,f +7218,43721,15,1,f +7218,44126,4,1,f +7218,4449,70,1,f +7218,4460b,4,1,f +7218,4460b,72,1,f +7218,47397,15,4,f +7218,47397,71,1,f +7218,47398,15,4,f +7218,47398,71,1,f +7218,48336,0,1,f +7218,4854,72,3,f +7218,4854,15,1,f +7218,4855,15,1,f +7218,4864b,40,1,f +7218,4865a,40,1,f +7218,4865a,4,3,f +7218,4871,72,1,f +7218,50947,4,2,f +7218,50955,71,1,f +7218,50956,71,1,f +7218,51011,0,4,f +7218,54200,15,6,f +7218,54200,0,1,t +7218,54200,72,2,f +7218,54200,0,8,f +7218,54200,72,1,t +7218,54200,15,1,t +7218,54383,71,2,f +7218,54384,71,2,f +7218,6070,40,2,f +7218,6081,71,2,f +7218,6091,71,10,f +7218,6111,71,4,f +7218,61184,71,6,f +7218,6141,0,4,f +7218,6141,15,2,f +7218,6141,72,6,f +7218,6141,72,1,t +7218,6141,0,1,t +7218,6141,15,1,t +7218,61506,70,1,f +7218,61975,70,1,f +7218,6215,71,2,f +7218,6231,4,2,f +7218,62363,28,1,f +7218,64644,0,10,f +7218,6558,1,2,f +7218,6587,72,3,f +7218,6636,14,2,f +7218,6636,15,2,f +7218,6636,71,2,f +7218,6636,4,2,f +7218,7198stk01,9999,1,t +7218,970c00,19,1,f +7218,970c00,28,1,f +7218,973pr1369ac01,28,1,f +7218,973pr1370c01,308,1,f +7218,973pr1374c01,19,1,f +7219,10201,15,2,f +7219,11090,15,5,f +7219,11090,0,2,f +7219,11153,322,2,f +7219,11211,71,1,f +7219,14769,71,2,f +7219,15207,70,2,f +7219,15573,71,8,f +7219,15752,9999,1,t +7219,17231,9999,1,t +7219,2357,320,4,f +7219,2357,322,3,f +7219,2431,70,2,f +7219,2431,322,2,f +7219,2431,15,9,f +7219,2432,15,2,f +7219,2445,320,2,f +7219,2450,320,2,f +7219,2456,322,3,f +7219,2540,71,4,f +7219,2654,0,27,f +7219,2780,0,8,f +7219,2780,0,1,t +7219,2877,15,4,f +7219,298c02,15,2,f +7219,298c02,15,1,t +7219,3001,379,44,f +7219,3001,15,44,f +7219,3001,322,7,f +7219,3001,71,117,f +7219,3001,320,5,f +7219,3002,0,6,f +7219,3003,322,2,f +7219,3004,322,15,f +7219,3005,322,5,f +7219,3007,71,2,f +7219,3009,70,1,f +7219,3009,322,35,f +7219,3009,15,8,f +7219,3010,15,9,f +7219,3010,320,4,f +7219,3020,15,9,f +7219,3020,379,28,f +7219,3020,322,3,f +7219,3020,70,1,f +7219,3020,378,4,f +7219,3020,71,124,f +7219,3021,320,6,f +7219,3021,322,2,f +7219,3021,0,8,f +7219,3022,15,5,f +7219,3023,322,2,f +7219,3023,40,14,f +7219,3023,0,2,f +7219,3023,320,12,f +7219,3023,15,8,f +7219,3024,72,12,f +7219,3024,15,6,f +7219,3024,72,1,t +7219,3024,15,1,t +7219,3029,0,1,f +7219,3029,71,1,f +7219,3030,320,4,f +7219,3032,70,1,f +7219,3032,320,1,f +7219,3033,0,5,f +7219,3033,320,6,f +7219,3034,70,3,f +7219,30363,72,1,f +7219,30367c,320,1,f +7219,3037,0,3,f +7219,3037,320,18,f +7219,3038,72,6,f +7219,3039,320,3,f +7219,3040b,0,8,f +7219,3045,0,4,f +7219,3062b,71,8,f +7219,3068b,15,5,f +7219,3069b,15,7,f +7219,3069b,0,6,f +7219,3070b,15,3,f +7219,3070b,15,1,t +7219,3070b,1,1,f +7219,3070b,1,1,t +7219,3185,70,45,f +7219,32028,378,24,f +7219,32062,0,4,f +7219,3460,72,2,f +7219,3622,15,2,f +7219,3623,71,10,f +7219,3633,70,24,f +7219,3660,320,58,f +7219,3665,320,4,f +7219,3665,322,2,f +7219,3666,322,33,f +7219,3666,15,2,f +7219,3666,0,5,f +7219,3676,72,2,f +7219,3702,14,2,f +7219,3705,0,3,f +7219,3709,0,8,f +7219,3710,15,9,f +7219,3738,0,2,f +7219,3794b,15,23,f +7219,3794b,70,4,f +7219,3794b,0,2,f +7219,3795,72,2,f +7219,3795,15,2,f +7219,3795,320,3,f +7219,3832,70,24,f +7219,3832,15,4,f +7219,3895,71,4,f +7219,3899,47,2,f +7219,3937,0,4,f +7219,3941,320,3,f +7219,4032a,72,4,f +7219,4070,15,4,f +7219,4070,72,2,f +7219,4081b,71,8,f +7219,4162,71,2,f +7219,41764,320,2,f +7219,41765,320,2,f +7219,4202,71,9,f +7219,4202,15,3,f +7219,42023,322,12,f +7219,42023,320,16,f +7219,42446,72,2,f +7219,4286,70,4,f +7219,4287,320,6,f +7219,43722,15,1,f +7219,43723,15,1,f +7219,44294,71,2,f +7219,4445,0,5,f +7219,44676,320,2,f +7219,44728,0,1,f +7219,4477,15,1,f +7219,4477,70,16,f +7219,4697b,71,2,f +7219,4697b,71,1,t +7219,47404,322,3,f +7219,4865b,322,1,f +7219,50950,322,2,f +7219,50950,0,8,f +7219,51739,15,4,f +7219,51739,70,3,f +7219,51739,320,1,f +7219,54200,40,1,t +7219,54200,71,1,t +7219,54200,40,14,f +7219,54200,71,8,f +7219,54200,320,1,t +7219,54200,320,10,f +7219,54383,320,1,f +7219,54384,320,1,f +7219,58176,15,1,f +7219,59443,0,6,f +7219,59900,0,3,f +7219,59900,15,1,f +7219,6041,297,2,f +7219,60478,0,2,f +7219,60478,15,5,f +7219,60479,70,15,f +7219,60581,47,2,f +7219,60897,71,2,f +7219,60897,15,2,f +7219,61252,71,2,f +7219,61252,0,2,f +7219,6134,0,2,f +7219,6134,71,2,f +7219,6141,0,14,f +7219,6141,47,3,f +7219,6141,0,1,t +7219,6141,71,12,f +7219,6141,71,1,t +7219,6141,47,2,t +7219,6231,322,4,f +7219,62885,0,2,f +7219,63864,71,2,f +7219,63868,0,2,f +7219,64567,0,1,f +7219,64567,0,1,t +7219,64567,15,1,f +7219,6541,70,4,f +7219,85984,71,10,f +7219,85984,15,6,f +7219,87079,0,14,f +7219,87079,379,14,f +7219,87079,71,64,f +7219,87087,378,16,f +7219,87580,71,4,f +7219,87994,15,6,f +7219,87994,0,3,f +7219,90258,0,6,f +7219,90395,25,2,f +7219,90498,0,1,f +7219,92593,71,7,f +7219,92946,72,10,f +7219,93555,179,2,f +7219,93555,179,1,t +7219,96874,25,1,t +7219,96904,334,1,f +7219,96905,334,1,t +7219,96906,334,1,t +7219,96907,334,1,t +7219,98138,34,1,f +7219,98138,179,1,t +7219,98138,36,1,f +7219,98138,179,16,f +7219,98138,34,1,t +7219,98138,36,1,t +7219,99563,334,1,t +7219,99780,378,10,f +7219,99781,71,2,f +7220,45575,71,2,f +7220,45799,71,2,f +7220,45805c01,0,1,f +7220,85544,2,1,f +7221,122c01,0,1,f +7221,3007,15,1,f +7221,3037,0,1,f +7221,3039,47,1,f +7221,3137c01,0,1,f +7221,3298,15,1,f +7221,3641,0,4,f +7221,3795,15,1,f +7221,3795,0,2,f +7221,4286,0,2,f +7221,4287,15,2,f +7222,10p02,2,1,f +7222,3001a,1,9,f +7222,3001a,15,1,f +7222,3002a,1,2,f +7222,3002a,15,2,f +7222,3002a,0,1,f +7222,3002apb06,15,2,f +7222,3003,1,1,f +7222,3004,47,2,f +7222,3004,1,5,f +7222,3005,1,6,f +7222,3005,47,1,f +7222,3006,1,2,f +7222,3007,1,2,f +7222,3008,1,5,f +7222,3008,15,1,f +7222,3008pb020,0,1,f +7222,3009,1,1,f +7222,3009p27,15,2,f +7222,3010,15,1,f +7222,3010,1,18,f +7222,3010p30,1,1,f +7222,3010pb036u,15,1,f +7222,3023,0,1,f +7222,3024,1,1,f +7222,3027,0,1,f +7222,3028,0,1,f +7222,3029,1,1,f +7222,3030,1,1,f +7222,3030,0,1,f +7222,3031,0,1,f +7222,3033,0,2,f +7222,3035,1,2,f +7222,3035,0,2,f +7222,3037,47,2,f +7222,3040a,0,1,f +7222,3040a,47,3,f +7222,3068a,0,7,f +7222,3068a,7,32,f +7222,3069a,14,14,f +7222,3070a,4,4,f +7222,3081cc01,15,2,f +7222,3137c01,0,2,f +7222,3139,0,4,f +7222,3144,15,1,f +7222,32bc01,15,2,f +7222,33bc01,15,2,f +7222,3460,15,6,f +7222,3461,15,1,f +7222,3462,0,1,f +7222,453cc01,15,2,f +7222,604c01,15,2,f +7222,645cc01,15,2,f +7222,675pr02,15,1,f +7223,3004,15,1,f +7223,3004p0b,14,1,f +7223,3022,0,1,f +7223,3022,15,1,f +7223,3039,2,3,f +7223,3040b,2,2,f +7224,11211,19,1,f +7224,11816pr0002,78,1,f +7224,12939,19,1,f +7224,13965,70,2,f +7224,14769,19,2,f +7224,15875pr0001ac01,272,1,f +7224,16409,9999,1,t +7224,16771pr0002,72,3,f +7224,2335,15,1,f +7224,2417,10,2,f +7224,2423,2,1,f +7224,2453a,19,2,f +7224,2454a,19,1,f +7224,2456,19,1,f +7224,2540,15,1,f +7224,2566,0,1,f +7224,2921,19,1,f +7224,3002,19,1,f +7224,3004,30,9,f +7224,3004,5,2,f +7224,3005,30,2,f +7224,3005,19,3,f +7224,30136,19,2,f +7224,30153,41,2,f +7224,3020,70,2,f +7224,3021,322,1,f +7224,3022,70,2,f +7224,3023,2,2,f +7224,30236,71,1,f +7224,3031,27,4,f +7224,3034,2,1,f +7224,30374,70,1,f +7224,30377,15,1,f +7224,3040b,71,4,f +7224,3040b,19,5,f +7224,30562,19,2,f +7224,3062b,70,3,f +7224,3068b,71,1,f +7224,32530,72,2,f +7224,33057,484,1,f +7224,33291,191,2,t +7224,33291,191,6,f +7224,3622,19,1,f +7224,3622,71,1,f +7224,3660,70,2,f +7224,3673,71,1,f +7224,3673,71,1,t +7224,3710,70,3,f +7224,3941,70,2,f +7224,4032a,308,3,f +7224,4274,1,1,t +7224,4274,1,1,f +7224,43719,15,1,f +7224,4495b,297,1,f +7224,4499,297,1,f +7224,4740pr0001a,4,1,f +7224,48092,19,2,f +7224,58176,35,1,f +7224,59900,15,1,f +7224,59900,182,4,f +7224,59900,33,2,f +7224,60583a,19,2,f +7224,6091,322,2,f +7224,6141,182,2,f +7224,6141,182,1,t +7224,6141,27,1,t +7224,6141,27,3,f +7224,6141,297,1,t +7224,6141,297,2,f +7224,6231,322,4,f +7224,6256,191,1,f +7224,62808,72,1,t +7224,62808,72,1,f +7224,64390,30,1,f +7224,64644,297,2,f +7224,64648,179,1,f +7224,87087,29,1,f +7224,87580,0,1,f +7224,88072,19,2,f +7224,88289,308,1,f +7224,92438,10,1,f +7224,92456pr0046c01,78,1,f +7224,93352,484,1,f +7224,98138,41,2,f +7224,98138,41,1,t +7224,98138pr0018,84,3,f +7224,98138pr0018,84,1,t +7225,3004,2,6,f +7225,3005,2,3,f +7225,30153,42,1,f +7225,3020,70,1,f +7225,3023,70,2,f +7225,3024,15,2,f +7225,3024,1,2,f +7225,3024,4,10,f +7225,3024,14,4,f +7225,3040b,2,3,f +7225,30565,15,4,f +7225,32125,71,5,f +7225,3623,4,1,f +7225,3623,1,1,f +7225,3623,15,1,f +7225,3710,2,3,f +7225,3737,0,1,f +7225,3941,70,1,f +7225,4286,2,12,f +7225,4589,2,2,f +7225,49668,288,3,f +7225,6141,4,1,t +7225,6141,25,3,f +7225,6141,14,3,f +7225,6141,14,1,t +7225,6141,4,3,f +7225,6141,25,1,t +7227,2780,0,24,f +7227,32002,8,18,f +7227,32062,0,8,f +7227,32123b,7,10,f +7227,3673,7,24,f +7227,3713,7,43,f +7227,3749,7,16,f +7227,4274,7,17,f +7228,2446,47,1,f +7228,298c02,0,2,f +7228,298c02,0,1,t +7228,3021,0,1,f +7228,3022,7,1,f +7228,3039px8,8,1,f +7228,32001,0,1,f +7228,3626bpb0034,0,1,f +7228,3795,8,1,f +7228,3839b,1,1,f +7228,3960,1,1,f +7228,4589,42,2,f +7228,6019,1,2,f +7228,6919,42,2,f +7228,970c11pb04,0,1,f +7228,973pb0198c01,0,1,f +7229,3004,15,1,f +7229,3020,1,1,f +7229,3020,72,1,f +7229,3021,1,3,f +7229,3039,47,1,f +7229,3039,15,1,f +7229,3660,15,1,f +7229,3710,1,1,f +7229,3710,72,2,f +7229,3747b,15,1,f +7231,32203,0,14,f +7231,32206,14,2,f +7231,32206,0,7,f +7231,32207,8,4,f +7231,32209,15,5,f +7231,32213,0,5,f +7231,32214,0,7,f +7231,32214,14,2,f +7231,32216,0,4,f +7231,32219,14,4,f +7231,32221,8,2,f +7231,32225,14,1,f +7231,32229,0,8,f +7231,3647,7,2,f +7231,3749,7,5,f +7231,4019,7,2,f +7231,4760c01,0,1,f +7231,5306bc020,0,1,f +7231,6232,7,2,f +7231,71427c01,7,1,f +7231,x334c01,15,2,f +7231,zbb013,22,28,f +7231,zbb014,7,16,f +7231,zbb015,14,4,f +7231,zbb015,0,4,f +7231,zbb018,14,6,f +7231,zbb022,14,4,f +7234,2431,7,2,f +7234,2432,7,4,f +7234,2439,8,1,f +7234,2454a,18,2,f +7234,2496,0,4,f +7234,2496,14,2,f +7234,2543,0,1,f +7234,2555,0,6,f +7234,3001,18,5,f +7234,3004,7,2,f +7234,3005,0,2,f +7234,3008,7,1,f +7234,3009,18,1,f +7234,3010,18,5,f +7234,30134,18,1,f +7234,3020,4,2,f +7234,3020,7,4,f +7234,3023,42,4,f +7234,30249,0,1,f +7234,3034,7,1,f +7234,3034,10,1,f +7234,3035,4,1,f +7234,3035,10,4,f +7234,30517,8,2,f +7234,3068b,8,4,f +7234,3622pb002,8,1,f +7234,3623,4,3,f +7234,3626bpb0049,14,1,f +7234,3626bpb0051,14,1,f +7234,3626bpr0216,14,1,f +7234,3666,4,2,f +7234,3679,7,3,f +7234,3680,0,3,f +7234,3710,7,2,f +7234,3832,4,2,f +7234,41766,8,4,f +7234,42445,7,3,f +7234,42446,0,2,f +7234,42446,2,1,f +7234,42511,1,1,f +7234,42511,14,1,f +7234,42511,25,1,f +7234,43085,7,2,f +7234,4485,15,1,f +7234,4740,8,1,f +7234,4876,0,1,f +7234,6093,0,1,f +7234,6111,0,1,f +7234,6179,8,1,f +7234,6187,0,2,f +7234,6190,8,1,f +7234,6636,7,2,f +7234,6738stk01,9999,1,t +7234,73983,7,1,f +7234,75c10,8,1,f +7234,970c00,73,1,f +7234,970c00pb009,0,1,f +7234,970c00pb010,1,1,f +7234,973pb0055c01,15,1,f +7234,973pb0057c01,4,1,f +7234,973pb0058c01,320,1,f +7235,2412b,36,1,f +7235,2730,0,2,f +7235,3007,1,1,f +7235,3020,72,1,f +7235,3021,72,1,f +7235,3032,1,1,f +7235,3037,15,1,f +7235,30648,0,2,f +7235,32002,72,2,f +7235,32002,72,1,t +7235,32123b,71,1,t +7235,32123b,71,4,f +7235,32140,1,2,f +7235,32310,0,1,f +7235,32316,0,2,f +7235,3298,1,2,f +7235,3460,1,1,f +7235,3701,1,4,f +7235,3705,0,2,f +7235,3706,0,1,f +7235,3707,0,1,f +7235,3710,0,1,f +7235,3737,0,1,f +7235,3795,0,1,f +7235,41749,0,1,f +7235,41750,0,1,f +7235,42022,1,2,f +7235,44126,15,3,f +7235,44661,15,2,f +7235,47715,72,1,f +7235,50943,71,1,f +7235,53543,135,2,f +7235,54200,0,4,f +7235,55978,0,2,f +7235,55982,71,2,f +7235,56145,71,2,f +7235,6538b,0,1,f +7235,6558,0,6,f +7238,2412b,72,2,f +7238,2431,71,1,f +7238,2436,0,1,f +7238,2555,4,1,f +7238,3010,4,1,f +7238,3020,4,2,f +7238,3021,15,2,f +7238,3021,71,1,f +7238,3021,0,1,f +7238,3022,4,1,f +7238,3023,0,2,f +7238,3023,4,4,f +7238,3023,71,1,f +7238,3024,4,2,f +7238,3024,47,2,f +7238,3034,0,1,f +7238,3062b,71,2,f +7238,3065,40,2,f +7238,3068b,4,1,f +7238,3068b,71,1,f +7238,3069b,71,1,f +7238,3070b,36,2,f +7238,3070b,46,2,f +7238,3070b,46,1,t +7238,3070b,36,1,t +7238,3623,4,2,f +7238,3710,4,3,f +7238,3788,4,1,f +7238,3832,71,1,f +7238,4081b,4,2,f +7238,4081b,71,2,f +7238,44302a,71,1,f +7238,44567a,72,1,f +7238,44728,4,1,f +7238,4599b,71,1,f +7238,4600,0,3,f +7238,4624,15,6,f +7238,48183,4,1,f +7238,54200,71,1,t +7238,54200,71,4,f +7238,54200,4,1,t +7238,54200,4,2,f +7238,60478,0,1,f +7238,6141,71,4,f +7238,6141,71,1,t +7238,63868,71,1,f +7238,87414,0,6,f +7239,10a,2,1,f +7239,2040,15,2,f +7239,2040,14,6,f +7239,2041,15,1,f +7239,2046,4,1,f +7239,2145,14,3,f +7239,2145,15,2,f +7239,3001,14,5,f +7239,3003,4,2,f +7239,3003,14,4,f +7239,3004,15,2,f +7239,3004,4,2,f +7239,3009,4,1,f +7239,3010,4,2,f +7239,3029,1,3,f +7239,3031,14,1,f +7239,3031,1,1,f +7239,3031,4,1,f +7239,3035,4,1,f +7239,3068bp08,15,1,f +7239,3068bpf5,15,1,f +7239,3068bpf6,15,1,f +7239,3068bpf7,15,1,f +7239,3068bpf8,15,1,f +7239,3068bpfa,15,1,f +7239,3068pb12,15,1,f +7239,3068pb13,15,1,f +7239,3068pb34,15,1,f +7239,3403c01,4,1,f +7239,3497,2,1,f +7239,3700,4,1,f +7239,3795,1,1,f +7239,3795,15,1,f +7239,3941,1,1,f +7239,3958,1,1,f +7239,3960pf1,15,1,f +7239,3980c02,1,4,f +7239,4237,4,1,f +7239,4238,4,1,f +7239,4424,4,1,f +7239,4461,1,1,f +7239,4727,2,3,f +7239,4728,15,1,f +7239,4728,4,2,f +7239,4750,14,3,f +7239,4779,14,2,f +7239,4782,4,4,f +7239,4783,1,2,f +7239,4790,4,1,f +7239,4793,4,1,f +7239,4794a,14,2,f +7239,4841,4,1,f +7239,4842c01,14,1,f +7239,4876,4,1,f +7239,fab9b,9999,1,f +7240,3063b,14,20,f +7240,3063b,47,20,f +7240,3063b,1,20,f +7240,3063b,4,20,f +7240,3063b,15,20,f +7241,3003,1,1,f +7241,3021,15,1,f +7241,3034,15,1,f +7241,3039,47,1,f +7241,3039,15,1,f +7241,30474,15,2,f +7241,3747a,8,2,f +7241,3747a,1,3,f +7241,3795,15,3,f +7242,2420,0,2,f +7242,2431,0,2,f +7242,2432,4,1,f +7242,2446,0,1,f +7242,2447,41,1,f +7242,2610,14,1,f +7242,2823,14,2,f +7242,2994,14,1,f +7242,3002,14,1,f +7242,3002,4,1,f +7242,3034,0,1,f +7242,3298,2,1,f +7242,3626bp04,14,1,f +7242,3700,0,1,f +7242,3749,7,1,f +7242,3829c01,14,1,f +7242,4070,2,2,f +7242,4856a,4,1,f +7242,4859,0,1,f +7242,6126a,57,3,f +7242,6152,41,1,f +7242,6249,7,1,f +7242,970c00,15,1,f +7242,973px124c01,15,1,f +7243,3001a,47,1,f +7243,3001a,1,1,f +7243,3004,1,2,f +7243,3010pb035u,1,1,f +7243,3020,0,1,f +7243,3020,1,3,f +7243,3021,4,1,f +7243,3022,1,1,f +7243,3023,4,1,f +7243,3023,0,2,f +7243,3029,1,1,f +7243,3034,4,1,f +7243,3039,47,1,f +7243,3127b,4,1,f +7243,3137c01,0,1,f +7243,3137c02,0,2,f +7243,3139,0,2,f +7243,3149c01,4,1,f +7243,3176,4,1,f +7243,3324c01,4,1,f +7243,3404ac01,0,1,f +7243,56823,0,1,f +7243,586c01,0,1,f +7243,7b,0,4,f +7244,3006b,2,1,f +7244,3006b,4,1,f +7244,3006b,14,1,f +7244,3006b,15,1,f +7244,3006b,1,1,f +7245,2431,1,2,f +7245,3001,73,1,f +7245,3023,1,1,f +7245,3023,15,2,f +7245,3957a,15,2,f +7245,4085c,15,2,f +7245,49668,15,2,f +7246,2419,0,1,f +7246,2449,70,2,f +7246,2653,4,1,f +7246,30103,0,2,f +7246,30136,70,10,f +7246,30136,71,10,f +7246,30136,19,10,f +7246,30385,297,1,f +7246,3048c,72,4,f +7246,3068b,4,1,f +7246,3068b,19,1,f +7246,3068b,0,1,f +7246,3068b,71,1,f +7246,3068b,70,1,f +7246,3070b,19,1,t +7246,3070b,71,1,t +7246,3070b,0,1,t +7246,3070b,19,1,f +7246,3070b,70,1,f +7246,3070b,0,1,f +7246,3070b,70,1,t +7246,3070b,71,1,f +7246,32062,0,1,f +7246,3666,0,3,f +7246,3678b,70,4,f +7246,3709,4,1,f +7246,3867,25,1,f +7246,3942c,320,1,f +7246,4006,0,1,f +7246,4032a,0,1,f +7246,4085c,25,1,f +7246,4286,72,2,f +7246,4460b,70,2,f +7246,4733,0,1,f +7246,49668,320,3,f +7246,53451,25,3,f +7246,53451,25,1,t +7246,53989,320,2,f +7246,54200,72,2,f +7246,54200,72,1,t +7246,54275,320,1,f +7246,59900,182,2,f +7246,6126b,57,6,f +7246,64776pat0001,0,1,f +7246,85861,15,1,f +7246,85861,15,1,t +7246,85863pr0021,1,1,f +7246,85863pr0022,15,1,f +7246,85863pr0023,2,1,f +7246,85863pr0024,72,1,f +7246,87580,0,1,f +7248,2412a,0,1,f +7248,2436,15,1,f +7248,2441,0,1,f +7248,3022,15,2,f +7248,3024,46,2,f +7248,3069bpb001,15,1,f +7248,3623,15,2,f +7248,3624,15,1,f +7248,3626apr0001,14,1,f +7248,3641,0,4,f +7248,3710,15,1,f +7248,3788,15,2,f +7248,3821,15,1,f +7248,3822,15,1,f +7248,3823,41,1,f +7248,3829c01,0,1,f +7248,4083,0,1,f +7248,4624,15,4,f +7248,6141,33,2,f +7248,970c00,0,1,f +7248,973pb0091c01,0,1,f +7249,15207,71,2,f +7249,2412b,4,2,f +7249,2412b,71,7,f +7249,2417,10,14,f +7249,2419,2,4,f +7249,2419,4,4,f +7249,2419,72,2,f +7249,2423,2,16,f +7249,2431,14,2,f +7249,2431pr0028,72,1,f +7249,2436,14,2,f +7249,2447,40,1,t +7249,2456,4,1,f +7249,2508,0,1,f +7249,2569,0,1,t +7249,2569,0,1,f +7249,2654,71,8,f +7249,2654,47,1,f +7249,2780,0,6,f +7249,2780,0,1,t +7249,2877,71,3,f +7249,3001,1,1,f +7249,3003,72,2,f +7249,3005,4,5,f +7249,3009,4,3,f +7249,3010,73,2,f +7249,30162,72,1,f +7249,30165,4,2,f +7249,3020,72,4,f +7249,3021,4,9,f +7249,3021,15,2,f +7249,3022,14,3,f +7249,3023,1,4,f +7249,3023,72,2,f +7249,3024,4,2,f +7249,3026,15,2,f +7249,3029,4,1,f +7249,3031,1,1,f +7249,3032,4,1,f +7249,3032,14,1,f +7249,30332,0,2,f +7249,3034,71,2,f +7249,30367b,14,2,f +7249,30382,72,2,f +7249,3039,72,1,f +7249,3039pr0014,0,1,f +7249,3039pr0015,0,1,f +7249,3040b,71,2,f +7249,3040b,14,4,f +7249,30414,14,5,f +7249,30586,15,2,f +7249,3062b,70,2,f +7249,3062b,41,30,f +7249,3068b,4,1,f +7249,3068b,72,2,f +7249,3069b,4,3,f +7249,3069b,15,1,f +7249,3069bpr0101,71,2,f +7249,3070b,34,1,t +7249,3070b,34,1,f +7249,3070b,36,1,f +7249,3070b,36,1,t +7249,3070bpr0007,71,1,t +7249,3070bpr0007,71,2,f +7249,32000,4,1,f +7249,32062,4,2,f +7249,32064b,72,6,f +7249,32083,4,2,f +7249,32348,4,4,f +7249,3245c,4,2,f +7249,32530,72,1,f +7249,3623,72,2,f +7249,3647,72,2,f +7249,3647,72,1,t +7249,3660,14,2,f +7249,3665,4,8,f +7249,3666,71,1,f +7249,3666,14,7,f +7249,3666,4,11,f +7249,3666,72,4,f +7249,3710,4,6,f +7249,3710,15,7,f +7249,3747b,71,4,f +7249,3794b,15,9,f +7249,3794b,2,8,f +7249,3794b,71,1,f +7249,3795,15,4,f +7249,3795,4,2,f +7249,3795,1,3,f +7249,3821,4,1,f +7249,3822,4,1,f +7249,3829c01,14,1,f +7249,3832,72,1,f +7249,3835,0,1,f +7249,3940b,72,4,f +7249,3941,70,16,f +7249,3941,14,4,f +7249,3958,4,1,f +7249,3958,72,1,f +7249,3962b,0,1,f +7249,4032a,71,4,f +7249,4070,71,4,f +7249,4079,14,3,f +7249,4085c,4,2,f +7249,4162,15,2,f +7249,41669,179,1,f +7249,4176,41,1,f +7249,42023,72,2,f +7249,42023,4,4,f +7249,4274,1,1,f +7249,4274,1,1,t +7249,43093,1,2,f +7249,43722,4,2,f +7249,43723,4,2,f +7249,44728,4,2,f +7249,4477,15,6,f +7249,4477,72,2,f +7249,4488,71,6,f +7249,4733,0,1,f +7249,4740,14,1,f +7249,47457,15,1,f +7249,48729b,0,2,f +7249,48729b,0,1,t +7249,50943,80,2,f +7249,50943,72,1,f +7249,52501,4,1,f +7249,54200,70,1,t +7249,54200,70,8,f +7249,54200,72,1,t +7249,54200,72,2,f +7249,56890,0,6,f +7249,56902,71,2,f +7249,59426,72,1,f +7249,6014b,15,6,f +7249,60478,72,2,f +7249,60479,71,2,f +7249,60481,71,2,f +7249,60594,72,1,f +7249,60601,41,8,f +7249,60849,71,2,f +7249,6117,72,1,f +7249,6126b,182,10,f +7249,61345,4,4,f +7249,61409,4,4,f +7249,6141,47,4,f +7249,6141,14,1,t +7249,6141,14,2,f +7249,6141,36,1,t +7249,6141,47,1,t +7249,6141,25,1,t +7249,6141,33,1,t +7249,6141,36,2,f +7249,6141,33,3,f +7249,6141,25,1,f +7249,61780,72,1,f +7249,6232,19,1,f +7249,62462,71,1,f +7249,63965,71,4,f +7249,64567,0,2,f +7249,6541,1,1,f +7249,6587,28,2,f +7249,6636,72,1,f +7249,6636,4,1,f +7249,73590c01b,14,2,f +7249,85984,15,4,f +7249,87079,71,1,f +7249,87580,0,1,f +7249,87611,72,1,f +7249,87612,41,1,f +7249,87613,4,1,f +7249,87614,15,1,f +7249,87615,4,1,f +7249,87616,4,1,f +7249,90194,4,2,f +7249,92099,15,1,f +7249,92107,72,1,f +7249,92280,71,2,f +7249,93274,4,1,f +7249,93589,15,1,f +7249,93589,72,2,f +7249,98138,46,1,t +7249,98138,46,3,f +7249,98263,71,1,f +7249,98282,72,6,f +7249,98284,70,6,f +7250,10201,71,12,f +7250,11833,71,1,f +7250,12825,71,12,f +7250,2412b,80,30,f +7250,2420,72,8,f +7250,2431,71,10,f +7250,3022,71,5,f +7250,3023,71,20,f +7250,3024,71,24,f +7250,3024,71,1,t +7250,3029,71,3,f +7250,3031,71,2,f +7250,30367b,71,1,f +7250,30374,71,1,f +7250,3068b,288,12,f +7250,3068b,72,4,f +7250,3070b,71,1,t +7250,3070b,71,8,f +7250,32062,4,2,f +7250,32200,179,4,f +7250,3623,71,4,f +7250,3666,71,4,f +7250,3679,7,4,f +7250,3680,0,4,f +7250,3709,71,1,f +7250,3710,71,4,f +7250,3794b,71,8,f +7250,3795,71,1,f +7250,3832,0,3,f +7250,3941,71,1,f +7250,3958,71,2,f +7250,4032a,72,4,f +7250,4151b,72,1,f +7250,4162,71,4,f +7250,4162,0,1,f +7250,4162pr0030,0,1,f +7250,4162pr0031,0,1,t +7250,44294,71,1,f +7250,4733,72,2,f +7250,54200,71,1,t +7250,54200,71,4,f +7250,59443,71,1,f +7250,59900,71,1,f +7250,6019,71,20,f +7250,60478,71,32,f +7250,63864,71,4,f +7250,63864,0,4,f +7250,6636,71,6,f +7250,6636,0,4,f +7250,75937,179,1,f +7250,87079,72,8,f +7250,87580,71,4,f +7250,91988,0,2,f +7250,92280,71,8,f +7250,99780,71,4,f +7250,99781,71,8,f +7251,132a,7,4,f +7251,3001a,4,8,f +7251,3002a,4,5,f +7251,3003,0,1,f +7251,3003,4,5,f +7251,3004,0,1,f +7251,3004,4,29,f +7251,3005,4,12,f +7251,3005,14,2,f +7251,3005pt7,15,2,f +7251,3005pt8,15,2,f +7251,3006,4,3,f +7251,3007,4,2,f +7251,3008,4,2,f +7251,3009,4,2,f +7251,3020,0,1,f +7251,3021,15,4,f +7251,3035,15,2,f +7251,3036,15,4,f +7251,3037,4,6,f +7251,3039,4,4,f +7251,3040a,4,2,f +7251,3045,4,4,f +7251,3046a,4,2,f +7251,3062a,0,4,f +7251,3081bc01,15,1,f +7251,31bc01,15,6,f +7251,453bc01,15,14,f +7251,7039,4,4,f +7251,7049b,15,2,f +7253,3626bpr0828,15,1,f +7253,41879a,2,1,f +7253,88646,0,1,f +7253,93568pat0001,84,1,f +7253,95674pr0001,1,1,f +7253,973pr1825c01,4,1,f +7254,3068bpr0003,15,1,f +7254,3626bpr0834,14,1,f +7254,88646,0,1,f +7254,92814,0,1,f +7254,970c00,72,1,f +7254,97302,0,1,f +7254,973pr1831c01,0,1,f +7255,3626bpr0411,14,1,f +7255,3962b,0,1,t +7255,3962b,0,1,f +7255,4485,15,1,f +7255,4485,15,1,t +7255,970c00,0,1,f +7255,973pr1188c01,0,1,f +7256,3001,0,14,f +7256,3002,0,8,f +7256,3003,0,12,f +7256,3004,0,8,f +7256,3005,0,4,f +7256,3006,0,1,f +7256,3007,0,1,f +7256,3008,0,2,f +7256,3009,0,4,f +7256,3010,0,4,f +7256,3622,0,4,f +7257,10201,0,1,f +7257,11303,4,1,f +7257,11477,71,4,f +7257,11477,14,2,f +7257,18892,0,1,f +7257,2412b,71,4,f +7257,2432,70,2,f +7257,2432,71,2,f +7257,2437,40,1,f +7257,2445,0,1,f +7257,2446,4,1,f +7257,2447,40,1,f +7257,2508,0,1,f +7257,2569,0,1,f +7257,2926,0,1,f +7257,3004,71,2,f +7257,3009,14,2,f +7257,3010,15,1,f +7257,30157,72,2,f +7257,3020,0,2,f +7257,3020,72,1,f +7257,3021,1,5,f +7257,3022,4,3,f +7257,3022,72,5,f +7257,3023,0,2,f +7257,3023,71,3,f +7257,3023,72,2,f +7257,3023,1,4,f +7257,3024,0,2,f +7257,3029,71,1,f +7257,3031,72,1,f +7257,3032,71,1,f +7257,3032,72,1,f +7257,3034,0,1,f +7257,3035,0,1,f +7257,30350b,72,2,f +7257,3036,72,2,f +7257,3062b,71,2,f +7257,3068b,71,2,f +7257,3069b,14,2,f +7257,3069b,15,3,f +7257,3070b,71,2,f +7257,3623,72,2,f +7257,3623,1,2,f +7257,3626bpr0389,14,1,f +7257,3626cpr1580,14,1,f +7257,3660,71,2,f +7257,3665,71,4,f +7257,3666,71,1,f +7257,3666,1,2,f +7257,3666,72,2,f +7257,3666,14,2,f +7257,3710,14,1,f +7257,3710,0,2,f +7257,3710,72,1,f +7257,3829c01,1,2,f +7257,3832,14,1,f +7257,4006,0,1,f +7257,4070,71,2,f +7257,4081b,0,2,f +7257,4081b,14,2,f +7257,4083,0,1,f +7257,4176,41,1,f +7257,41769,1,1,f +7257,41770,1,1,f +7257,41854,14,1,f +7257,44728,1,2,f +7257,4488,0,4,f +7257,45677,1,1,f +7257,47457,72,3,f +7257,47457,4,2,f +7257,48336,71,2,f +7257,50943,72,1,f +7257,50950,14,2,f +7257,50951,0,4,f +7257,54200,14,2,f +7257,54200,36,2,f +7257,54200,71,2,f +7257,54200,72,2,f +7257,55981,297,4,f +7257,56890,0,4,f +7257,59900,72,2,f +7257,6014b,14,4,f +7257,60219,72,1,f +7257,6140,71,1,f +7257,6141,14,14,f +7257,6141,36,2,f +7257,6141,1,2,f +7257,6141,182,2,f +7257,6180,15,1,f +7257,63082,71,1,f +7257,6636,72,1,f +7257,85974,484,1,f +7257,85984,71,2,f +7257,85984,72,2,f +7257,87079,71,1,f +7257,92402,0,4,f +7257,93274,14,1,f +7257,93593,71,4,f +7257,93606,71,1,f +7257,970c00,379,1,f +7257,970c00,272,1,f +7257,973pr2500c01,1,1,f +7257,973pr2875c01,2,1,f +7257,98138,36,2,f +7257,98138,47,2,f +7257,98138,182,2,f +7257,98282,14,2,f +7257,98282,72,2,f +7257,99207,71,2,f +7257,99781,0,2,f +7259,2397,72,1,f +7259,2431,70,1,f +7259,2540,0,1,f +7259,2570,135,1,f +7259,2587pr21,297,1,f +7259,3001,71,4,f +7259,3004,71,2,f +7259,3004,15,1,f +7259,3010,272,4,f +7259,30153,46,1,f +7259,30153,36,1,f +7259,30153,34,1,f +7259,30153,33,1,f +7259,3020,70,2,f +7259,3022,72,1,f +7259,3023,272,1,f +7259,3023,15,1,f +7259,30273,80,1,f +7259,3034,0,1,f +7259,3036,72,2,f +7259,3048c,297,3,f +7259,30565,72,4,f +7259,3069b,70,1,f +7259,33212,70,2,f +7259,3626bpr0325,14,1,f +7259,3626bpr0433,14,1,f +7259,3626bpr0511,378,2,f +7259,3633,297,2,f +7259,3679,71,2,f +7259,3680,0,2,f +7259,3710,0,1,f +7259,3747b,72,1,f +7259,3794a,297,1,f +7259,3957a,0,2,f +7259,4070,71,2,f +7259,4081b,72,2,f +7259,4286,70,2,f +7259,43899,72,3,f +7259,4460b,272,2,f +7259,4460b,70,2,f +7259,4495b,297,2,f +7259,4497,308,2,f +7259,4738a,297,1,f +7259,4739a,297,1,f +7259,48092,272,4,f +7259,48492,297,1,f +7259,59,334,1,f +7259,60169,72,2,f +7259,60219,272,1,f +7259,60751,132,1,f +7259,60751,134,1,f +7259,6091,72,2,f +7259,6141,297,2,f +7259,6141,297,1,t +7259,61856p40,72,2,f +7259,6232,71,2,f +7259,64647,272,1,f +7259,71015,334,1,f +7259,75998pr0007,15,1,f +7259,970c00pr0126,272,1,f +7259,970x026,71,1,f +7259,970x199,70,2,f +7259,973pr0430c01,272,1,f +7259,973pr1349c01,70,1,f +7259,973pr1352c01,72,1,f +7259,973pr1475c01,272,1,f +7260,15998,212,1,f +7260,16368pr0001,14,1,f +7260,19893pr0001,484,1,f +7260,88646,0,1,f +7263,4181,1,5,f +7263,4182,1,5,f +7263,4183,47,10,f +7264,1588322,9999,1,f +7264,32171pb006,0,1,f +7264,32505,383,1,f +7264,32567,0,1,f +7264,32576,0,2,f +7264,32577,19,1,f +7264,32578,19,1,f +7264,32579,8,1,f +7264,40507,19,1,f +7265,30144pb116,15,1,f +7265,30144pb117,15,1,f +7267,45462,41,2,f +7267,45462,52,2,f +7267,45462,212,2,f +7267,45462,45,2,f +7267,45463,42,2,f +7267,45463,45,2,f +7267,45463,41,2,f +7267,45463,118,2,f +7267,45463,52,2,f +7267,45464,41,1,f +7267,45464,52,1,f +7267,45464,45,1,f +7267,45469,45,2,f +7267,45481,41,2,f +7267,45499,43,1,f +7267,46286,52,2,f +7267,46286,45,2,f +7267,46286,41,2,f +7267,46286,42,2,f +7267,46296,41,1,f +7267,46296,47,1,f +7267,clikits006pb02,52,1,f +7267,clikits012,47,2,f +7267,clikits015,52,2,f +7267,clikits015,45,2,f +7267,clikits025,41,2,f +7267,clikits064,383,1,f +7267,clikits082,41,2,f +7267,clikits110,383,2,f +7268,3002a,1,8,f +7268,3002a,47,8,f +7268,3002a,14,8,f +7268,3002a,15,8,f +7268,3002a,0,8,f +7268,3002a,4,8,f +7268,3003,4,15,f +7268,3003,0,15,f +7268,3003,14,15,f +7268,3003,15,15,f +7268,3003,47,15,f +7268,3003,1,15,f +7268,3004,14,8,f +7268,3004,15,8,f +7268,3004,1,8,f +7268,3004,4,8,f +7268,3004,0,8,f +7268,3004,47,8,f +7269,10201,14,2,f +7269,11153,73,2,f +7269,11477,15,3,f +7269,11477,14,4,f +7269,11477,326,3,f +7269,12825,0,3,f +7269,13770,297,1,f +7269,13965,0,7,f +7269,15332,70,3,f +7269,15395,15,1,f +7269,15573,71,5,f +7269,2357,15,4,f +7269,2357,71,5,f +7269,2357,320,7,f +7269,2357,19,4,f +7269,2412b,0,4,f +7269,2412b,72,20,f +7269,2420,15,5,f +7269,2420,71,3,f +7269,2437,40,1,f +7269,2445,71,2,f +7269,2453b,19,1,f +7269,2540,71,5,f +7269,2654,57,1,f +7269,2877,0,4,f +7269,2877,71,6,f +7269,2921,19,3,f +7269,3004,73,17,f +7269,3004,19,10,f +7269,3004,71,5,f +7269,3004,320,20,f +7269,3005,72,7,f +7269,3005,73,15,f +7269,3005,320,14,f +7269,3005,19,11,f +7269,3005,15,15,f +7269,3009,72,2,f +7269,3009,19,4,f +7269,3009,320,3,f +7269,3009,15,2,f +7269,3009,71,2,f +7269,3009,0,1,f +7269,3010,15,6,f +7269,3010,71,2,f +7269,3010,19,14,f +7269,3010,320,8,f +7269,3010,73,4,f +7269,30134,0,1,f +7269,30165,0,4,f +7269,3020,0,2,f +7269,3020,70,4,f +7269,3020,19,3,f +7269,3020,71,3,f +7269,3021,71,2,f +7269,3022,70,2,f +7269,3022,0,12,f +7269,3023,71,27,f +7269,3023,73,10,f +7269,3023,19,6,f +7269,3023,46,5,f +7269,3023,15,15,f +7269,3023,0,10,f +7269,3023,320,12,f +7269,30236,19,4,f +7269,30237a,4,1,f +7269,3024,0,6,f +7269,3024,320,8,f +7269,3024,71,8,f +7269,3024,47,4,f +7269,3024,15,18,f +7269,3024,73,8,f +7269,3029,71,5,f +7269,3031,0,1,f +7269,3035,71,3,f +7269,3036,71,4,f +7269,3037,272,8,f +7269,3038,272,2,f +7269,3039,272,3,f +7269,3039pr62,71,2,f +7269,3040b,0,2,f +7269,3040b,15,4,f +7269,3040bpr0003,71,1,f +7269,30414,0,1,f +7269,3045,272,3,f +7269,3062b,41,2,f +7269,3068b,71,2,f +7269,3068bpr0136,72,1,f +7269,3069b,14,2,f +7269,3069bpr0100,2,2,f +7269,3070b,14,5,f +7269,3070b,4,1,t +7269,3070b,4,3,f +7269,33057,484,1,f +7269,33291,5,3,f +7269,33291,10,9,f +7269,3622,15,6,f +7269,3622,19,8,f +7269,3622,73,8,f +7269,3623,71,6,f +7269,3623,14,2,f +7269,3623,0,3,f +7269,3626bpr0891,14,1,f +7269,3626cpr1580,14,1,f +7269,3626cpr1665,14,1,f +7269,3633,15,2,f +7269,3633,0,4,f +7269,3659,15,4,f +7269,3660,0,8,f +7269,3666,73,6,f +7269,3666,15,5,f +7269,3666,71,4,f +7269,3666,14,2,f +7269,3666,320,7,f +7269,3678b,320,12,f +7269,3710,320,5,f +7269,3710,15,8,f +7269,3710,0,7,f +7269,3710,73,3,f +7269,3710,71,9,f +7269,3710,14,2,f +7269,3710,19,3,f +7269,3747b,71,3,f +7269,3794b,15,5,f +7269,3794b,70,3,f +7269,3794b,0,3,f +7269,3794b,4,1,f +7269,3795,0,2,f +7269,3795,71,2,f +7269,3829c01,4,1,f +7269,3830,72,1,f +7269,3830,15,2,f +7269,3831,15,2,f +7269,3831,72,1,f +7269,3899,14,1,f +7269,3899,4,2,f +7269,3937,71,2,f +7269,3940b,0,1,f +7269,3941,0,3,f +7269,3941,47,1,f +7269,4006,0,1,f +7269,4032a,70,2,f +7269,4032a,0,5,f +7269,4070,0,7,f +7269,4079,14,1,f +7269,4216,15,35,f +7269,4345b,71,1,f +7269,4346,71,1,f +7269,44301a,14,2,f +7269,44570,71,1,f +7269,4522,0,1,f +7269,4528,0,1,f +7269,4536,15,2,f +7269,4599b,71,3,f +7269,4719,4,1,f +7269,4733,71,1,f +7269,4740,0,3,f +7269,49668,0,2,f +7269,50950,14,2,f +7269,50950,71,4,f +7269,50951,0,4,f +7269,54200,0,2,f +7269,54200,36,2,f +7269,54200,4,1,f +7269,59349,47,2,f +7269,59900,2,4,f +7269,59900,25,2,f +7269,59900,0,4,f +7269,59900,71,10,f +7269,6020,0,2,f +7269,60475b,0,6,f +7269,60479,71,4,f +7269,60592,0,12,f +7269,60593,15,12,f +7269,60593,19,2,f +7269,60593,0,4,f +7269,60594,19,2,f +7269,60596,15,4,f +7269,60596,19,1,f +7269,60601,47,12,f +7269,60602,47,18,f +7269,60603,47,2,f +7269,60614,72,2,f +7269,60616a,47,2,f +7269,60623,1,1,f +7269,60623,0,1,f +7269,60797c02,0,1,f +7269,60806,0,1,f +7269,6091,14,2,f +7269,6111,72,1,f +7269,6112,15,1,f +7269,61252,14,3,f +7269,6134,4,2,f +7269,6141,4,3,f +7269,6141,46,3,f +7269,6141,70,3,f +7269,6141,27,8,f +7269,6141,71,7,f +7269,6141,14,3,f +7269,6141,57,4,f +7269,6154,15,1,f +7269,6155,71,1,f +7269,6157,71,2,f +7269,6179,0,1,f +7269,6231,4,2,f +7269,6231,71,1,f +7269,62810,0,1,f +7269,62810,484,1,f +7269,63864,0,3,f +7269,63864,72,5,f +7269,63864,14,2,f +7269,63864,15,4,f +7269,64644,0,7,f +7269,6636,0,2,f +7269,6636,72,8,f +7269,73983,72,2,f +7269,85984,15,2,f +7269,87079,272,3,f +7269,87087,70,6,f +7269,87552,40,2,f +7269,87580,15,2,f +7269,87990,308,1,f +7269,88072,0,3,f +7269,88292,15,4,f +7269,88292,19,2,f +7269,92410,4,1,f +7269,92438,71,2,f +7269,92593,0,2,f +7269,92851,47,2,f +7269,92950,15,2,f +7269,93273,71,1,f +7269,93273,0,4,f +7269,93594,179,4,f +7269,95120,72,1,f +7269,96874,25,1,t +7269,970c00,272,1,f +7269,970c00,28,1,f +7269,970c00,1,1,f +7269,973pr1192c01,0,1,f +7269,973pr1801c01,25,1,f +7269,973pr1918c01,73,1,f +7269,98138,297,7,f +7269,99206,71,2,f +7269,99207,71,3,f +7269,99780,72,1,f +7269,99781,71,2,f +7271,3004,15,1,f +7271,3004pr0001,14,1,f +7271,3004pr0002,14,1,f +7271,3022,15,1,f +7271,3022,0,1,f +7271,3023,73,3,f +7271,3023,15,1,f +7271,3023,0,3,f +7271,3024,2,4,f +7271,3040b,1,2,f +7271,3040b,0,1,f +7271,3040b,2,4,f +7271,3040b,15,2,f +7271,3040b,4,1,f +7271,3040b,29,1,f +7271,3623,4,1,f +7271,3623,15,2,f +7271,3623,2,4,f +7271,3660,15,1,f +7271,3665,1,1,f +7271,3665,4,1,f +7271,3941,70,1,f +7271,4216,4,2,f +7271,4589,2,1,f +7271,4589,70,1,f +7271,4733,72,2,f +7271,54200,2,8,f +7271,6141,15,6,f +7271,6141,46,1,t +7271,6141,14,1,t +7271,6141,14,4,f +7271,6141,15,1,t +7271,6141,46,1,f +7271,85984,15,1,f +7272,266ac01,15,2,f +7275,4325,27,1,f +7275,4327,14,1,f +7275,749,366,1,f +7275,fab9a,9999,1,f +7275,u9206c01,1,1,f +7276,4234,4,2,f +7282,14226c41,0,1,f +7282,14618,89,1,f +7282,2431,27,2,f +7282,2456,14,2,f +7282,2456,4,2,f +7282,2458,72,4,f +7282,2654,4,2,f +7282,2780,0,6,f +7282,2815,0,2,f +7282,3001,4,2,f +7282,3001,14,2,f +7282,3003,14,2,f +7282,3003,4,2,f +7282,3004,14,2,f +7282,3005pr0003,15,4,f +7282,3009,14,2,f +7282,3010,4,2,f +7282,3010,14,2,f +7282,3020,2,4,f +7282,30364,14,2,f +7282,30365,4,2,f +7282,3039,4,2,f +7282,3039,14,2,f +7282,3040b,4,2,f +7282,32001,15,4,f +7282,32064b,72,4,f +7282,32530,4,2,f +7282,3298,14,2,f +7282,33718,89,1,f +7282,3460,15,4,f +7282,3626bpr0495,14,1,f +7282,3626bpr0500,14,1,f +7282,3647,72,2,f +7282,3648b,72,2,f +7282,3650c,71,2,f +7282,3660,14,2,f +7282,3660,4,2,f +7282,3665,4,2,f +7282,3679,71,1,f +7282,3680,4,1,f +7282,3700,4,6,f +7282,3702,4,2,f +7282,3703,4,2,f +7282,3706,0,2,f +7282,3707,0,2,f +7282,3710,15,4,f +7282,3713,71,4,f +7282,3738,15,4,f +7282,3743,15,2,f +7282,3747b,14,2,f +7282,3749,19,4,f +7282,3894,4,2,f +7282,3941,27,4,f +7282,41752,72,1,f +7282,4185,27,2,f +7282,42022,4,2,f +7282,42022,14,2,f +7282,4204,72,1,f +7282,4286,14,2,f +7282,4287,14,2,f +7282,43718,89,1,f +7282,4485,27,1,f +7282,4519,71,2,f +7282,4716,71,1,f +7282,53982,4,1,f +7282,58120,71,1,f +7282,6575,72,4,f +7282,6588,47,1,f +7282,85546,14,2,f +7282,970c00,70,1,f +7282,973pr1204c01,15,1,f +7284,26562,15,1,f +7284,3626cpr1926,78,1,f +7284,88646pr0002,15,1,f +7284,970c00pr1051,0,1,f +7284,973pr3382c01,15,1,f +7284,99930,84,1,f +7286,satchel4,9999,1,f +7287,11089,0,1,f +7287,11089,71,2,f +7287,11090,0,4,f +7287,11098,179,1,f +7287,11106,179,1,f +7287,11127,41,1,f +7287,11203,72,1,f +7287,11476,71,1,f +7287,11477,15,4,f +7287,11953,0,1,f +7287,15064,308,4,f +7287,15067pr0001,71,1,f +7287,15067pr0002,71,1,f +7287,15071,0,1,f +7287,15464pr0002,308,1,f +7287,2420,15,2,f +7287,2450,379,4,f +7287,2730,71,2,f +7287,2780,0,16,f +7287,3001,15,2,f +7287,3003,1,3,f +7287,30031,72,1,f +7287,3007,71,2,f +7287,3008,1,1,f +7287,3009,15,3,f +7287,3020,72,4,f +7287,3021,15,3,f +7287,3022,72,5,f +7287,3023,41,4,f +7287,30236,19,2,f +7287,3024,15,2,f +7287,30293,72,1,f +7287,30294,72,1,f +7287,3034,1,1,f +7287,3035,15,1,f +7287,30363,15,3,f +7287,3038,71,4,f +7287,3039,15,3,f +7287,30414,72,2,f +7287,30602,1,1,f +7287,3062b,41,2,f +7287,3068b,1,1,f +7287,3069b,15,2,f +7287,32054,71,2,f +7287,32064b,0,1,f +7287,32316,15,1,f +7287,32348,0,2,f +7287,32523,72,2,f +7287,32526,71,4,f +7287,3626cpr1284,71,1,f +7287,3626cpr1357,308,1,f +7287,3626cpr1358,71,1,f +7287,3666,1,2,f +7287,3678b,379,4,f +7287,3700,71,3,f +7287,3701,15,2,f +7287,3706,0,1,f +7287,3710,71,2,f +7287,3747b,72,1,f +7287,3795,71,3,f +7287,3895,72,2,f +7287,42446,72,1,f +7287,42610,71,2,f +7287,4274,71,1,f +7287,43093,1,6,f +7287,4349,0,2,f +7287,4360,0,1,f +7287,4477,15,2,f +7287,4697b,71,2,f +7287,4733,0,1,f +7287,4740,33,2,f +7287,47456,15,2,f +7287,47457,15,2,f +7287,47720,71,1,f +7287,48336,71,2,f +7287,48933,379,2,f +7287,54383,15,1,f +7287,54384,15,1,f +7287,55013,72,4,f +7287,59900,35,1,f +7287,60208,15,4,f +7287,60470a,15,2,f +7287,60477,15,2,f +7287,60478,71,2,f +7287,60484,71,2,f +7287,60897,15,4,f +7287,61069,379,2,f +7287,61070,15,1,f +7287,61071,15,1,f +7287,61252,71,4,f +7287,6141,41,4,f +7287,6141,33,1,f +7287,63868,72,2,f +7287,63965,0,1,f +7287,64644,0,1,f +7287,64711,72,4,f +7287,6558,1,10,f +7287,6628,0,4,f +7287,85543,15,2,f +7287,87747,179,1,f +7287,87747,0,1,f +7287,92234,0,1,f +7287,92907,0,1,f +7287,93273,15,2,f +7287,95199,0,2,f +7287,970c00pr0565,71,1,f +7287,970c120pr0590,308,1,f +7287,970c86pr0591,71,1,f +7287,973pr2470c01,71,1,f +7287,973pr2570c01,308,1,f +7287,973pr2571c01,71,1,f +7287,98138,15,2,f +7287,98138,41,2,f +7287,98585,41,4,f +7287,99207,71,7,f +7288,251,0,1,f +7288,3004,15,1,f +7288,3020,0,1,f +7288,3021,4,2,f +7288,3022,0,1,f +7288,3023,15,1,f +7288,3023,0,1,f +7288,3023,1,2,f +7288,3042,4,1,f +7288,3626apr0001,14,1,f +7288,3679,7,1,f +7288,3847a,8,1,f +7288,3848,0,1,f +7288,3876,8,1,f +7288,4085a,4,5,f +7288,4085a,0,2,f +7288,4488,0,2,f +7288,4489a,6,2,f +7288,4497,6,1,f +7288,4505,6,1,f +7288,4522,0,1,f +7288,4587,1,1,f +7288,4623,0,2,f +7288,75998pr0007,15,1,f +7288,970x026,7,1,f +7288,973p46c02,7,1,f +7290,2456,0,2,f +7290,2456,70,2,f +7290,2456,320,2,f +7290,2456,2,2,f +7290,3001,14,4,f +7290,3001,1,4,f +7290,3001,4,4,f +7290,3001,27,4,f +7290,3001,15,4,f +7290,3002,1,4,f +7290,3002,2,3,f +7290,3002,71,4,f +7290,3002,25,4,f +7290,3003,272,4,f +7290,3003,2,4,f +7290,3003,15,4,f +7290,3003,0,4,f +7290,3004,272,4,f +7290,3004,27,4,f +7290,3004,14,4,f +7290,3004,191,4,f +7290,3004,70,6,f +7290,3004,25,4,f +7290,3004,321,7,f +7290,3004,4,4,f +7290,3005,4,4,f +7290,3005,182,4,f +7290,3007,4,2,f +7290,3009,15,4,f +7290,3009,4,2,f +7290,3010,272,8,f +7290,3010,15,4,f +7290,30165,4,4,f +7290,3039,272,6,f +7290,3039,14,2,f +7290,3039,25,4,f +7290,3039,4,4,f +7290,3040b,2,8,f +7290,3040b,4,2,f +7290,3040b,321,2,f +7290,3040b,191,2,f +7290,3040b,71,5,f +7290,3040b,320,4,f +7290,30414,71,4,f +7290,3062b,15,10,f +7290,3062b,4,4,f +7290,3062b,0,4,f +7290,3062b,70,4,f +7290,3065,36,2,f +7290,3065,46,2,f +7290,3065,34,2,f +7290,3298,71,2,f +7290,3660,272,2,f +7290,3660,70,4,f +7290,3660,27,4,f +7290,3660,71,5,f +7290,3665,1,2,f +7290,3678b,71,2,f +7290,3747b,4,2,f +7290,3747b,15,2,f +7290,3941,1,4,f +7290,3941,71,8,f +7290,3941,4,4,f +7290,3941,15,4,f +7290,3941,182,4,f +7290,3941,70,4,f +7290,3942c,4,2,f +7290,42022,2,2,f +7290,4286,0,2,f +7290,54200,2,1,t +7290,54200,2,3,f +7290,54200,288,6,f +7290,54200,288,1,t +7290,59900,72,4,f +7290,6215,2,5,f +7290,6215,1,2,f +7290,85984,71,2,f +7290,85984,70,2,f +7290,85984,15,6,f +7290,85984,1,2,f +7290,87087,288,4,f +7290,87087,27,4,f +7290,96874,25,1,t +7290,98138pr0008,15,2,f +7290,98138pr0008,15,1,t +7290,98138pr0027,15,1,t +7290,98138pr0027,15,2,f +7291,2352,4,1,f +7291,2456,14,2,f +7291,2456,15,2,f +7291,3001,14,14,f +7291,3001,15,14,f +7291,3001,4,12,f +7291,3001,1,14,f +7291,3001,0,4,f +7291,3001pr1,14,1,f +7291,3002,0,2,f +7291,3002,1,4,f +7291,3002,14,4,f +7291,3002,15,4,f +7291,3002,4,4,f +7291,3003,1,14,f +7291,3003,4,12,f +7291,3003,15,14,f +7291,3003,0,6,f +7291,3003,14,14,f +7291,3003pe2,15,2,f +7291,3003pe2,14,2,f +7291,3006,14,2,f +7291,3185,15,6,f +7291,3471,2,1,f +7291,3483,0,4,f +7291,4130,4,1,f +7291,4131,15,1,f +7291,4132,4,2,f +7291,4133,15,2,f +7291,4180c02,0,2,f +7291,4204,2,1,f +7291,4259,4,4,f +7291,4727,2,2,f +7291,4728,14,2,f +7291,4730,14,1,f +7291,4744,4,1,f +7291,4744,1,1,f +7291,4744p03,4,1,f +7291,4744p04,0,1,f +7291,4745,4,1,f +7291,6007,8,1,f +7292,14210,2,24,f +7292,2419,2,1,f +7292,2419,15,1,f +7292,2419,0,1,f +7292,2450,6,1,f +7292,2450,4,1,f +7292,3005,4,4,f +7292,3005,6,4,f +7292,3023,71,4,f +7292,3024,4,4,f +7292,3024,1,4,f +7292,3062b,14,1,f +7292,3065,47,4,f +7292,3065,34,4,f +7292,3069b,1,4,f +7292,3069b,4,4,f +7292,3460,71,4,f +7292,3623,71,8,f +7292,3666,71,8,f +7292,3958,15,2,f +7292,4275b,0,24,f +7292,4276b,0,24,f +7294,2357,8,2,f +7294,2412b,41,4,f +7294,2412b,7,2,f +7294,2412b,42,2,f +7294,2431,15,4,f +7294,2445,15,4,f +7294,2465,15,1,f +7294,2540,6,1,f +7294,2653,0,2,f +7294,2877,7,6,f +7294,298c02,15,2,f +7294,3001,8,1,f +7294,3001,2,1,f +7294,3003,1,6,f +7294,3004,8,1,f +7294,3005,8,3,f +7294,3008,15,1,f +7294,3009,15,1,f +7294,3010,7,2,f +7294,3010,15,2,f +7294,3010,8,2,f +7294,30165,8,2,f +7294,3020,7,1,f +7294,3020,19,1,f +7294,3021,7,2,f +7294,30249,15,2,f +7294,3028,8,2,f +7294,3029,7,2,f +7294,3034,15,4,f +7294,3035,15,2,f +7294,30355,15,2,f +7294,30356,15,2,f +7294,3036,15,1,f +7294,3036,7,1,f +7294,30360,15,4,f +7294,30364,7,6,f +7294,30365,15,6,f +7294,30374,0,1,f +7294,30374,7,4,f +7294,30381,0,1,f +7294,3039,7,4,f +7294,30526,7,8,f +7294,30561,4,2,f +7294,3062b,19,6,f +7294,3069b,8,2,f +7294,3069bpa2,8,1,f +7294,32028,2,2,f +7294,32059,15,1,f +7294,32086ps1,40,1,f +7294,32348,7,4,f +7294,3245b,15,5,f +7294,3297ps1,15,1,f +7294,3460,19,7,f +7294,3622,15,3,f +7294,3623,0,2,f +7294,3624,0,1,f +7294,3626b,0,2,f +7294,3626bpr0001,14,1,f +7294,3626bpx34,14,1,f +7294,3659,7,1,f +7294,3665,15,2,f +7294,3666,7,3,f +7294,3666,15,1,f +7294,3710,8,4,f +7294,3747a,7,1,f +7294,3754,7,1,f +7294,3794a,7,4,f +7294,3795,15,2,f +7294,3795,8,2,f +7294,3832,7,2,f +7294,3940b,0,3,f +7294,3959,8,4,f +7294,4070,7,6,f +7294,4162,8,2,f +7294,4213,15,2,f +7294,4286,15,2,f +7294,4315,7,2,f +7294,4460a,7,3,f +7294,4497,0,2,f +7294,4597,15,1,f +7294,50231,4,2,f +7294,50231,0,1,f +7294,6081,15,8,f +7294,6091,15,4,f +7294,6111,8,1,f +7294,6111,15,2,f +7294,6141,42,1,t +7294,6141,42,5,f +7294,6141,1,1,t +7294,6141,1,2,f +7294,6179px1,15,1,f +7294,6215,15,4,f +7294,970c00,4,2,f +7294,970c00,0,2,f +7294,973psnc01,0,1,f +7294,973px70c01,4,2,f +7294,973px71c01,0,1,f +7296,3001,1,1,f +7296,3002,4,1,f +7296,3020,1,2,f +7296,3034,1,1,f +7296,3039,4,2,f +7296,3039,47,1,f +7296,3297p02,1,1,f +7296,3483,0,4,f +7296,6248,15,4,f +7296,6249,4,2,f +7298,2357,15,6,f +7298,2357,7,1,f +7298,2362a,15,1,f +7298,2397,14,1,f +7298,2412b,15,1,f +7298,2420,7,2,f +7298,2420,15,2,f +7298,2422,15,2,f +7298,2431,7,4,f +7298,2432,7,1,f +7298,2436,15,1,f +7298,2444,14,2,f +7298,2453a,15,5,f +7298,2454a,15,2,f +7298,2488,0,1,f +7298,2508,0,1,f +7298,2518,2,4,f +7298,2536,6,6,f +7298,2540,7,1,f +7298,2563,6,1,f +7298,2566,6,1,f +7298,2815,0,2,f +7298,2873,7,1,f +7298,2926,7,1,f +7298,3003,14,1,f +7298,3004,7,6,f +7298,3004,14,3,f +7298,3004,15,13,f +7298,3004,0,1,f +7298,3004,6,1,f +7298,3005,15,22,f +7298,3005,7,6,f +7298,3008,15,1,f +7298,3008,7,2,f +7298,3009,7,1,f +7298,3009,15,4,f +7298,3010,7,1,f +7298,3010,15,5,f +7298,3010pb022,15,1,f +7298,3020,7,3,f +7298,3021,7,1,f +7298,3021,0,1,f +7298,3021,15,3,f +7298,3022,7,1,f +7298,3023,15,7,f +7298,3023,13,8,f +7298,3023,7,11,f +7298,3023,0,1,f +7298,3023,14,1,f +7298,3024,13,6,f +7298,3024,36,2,f +7298,3024,7,6,f +7298,3024,14,1,f +7298,3024,15,9,f +7298,3031,7,1,f +7298,3032,7,1,f +7298,3069b,15,3,f +7298,3069b,0,1,f +7298,3069b,6,1,f +7298,3070b,15,2,f +7298,3308,15,1,f +7298,3455,15,6,f +7298,3460,15,2,f +7298,3581,15,7,f +7298,3622,15,2,f +7298,3623,7,6,f +7298,3623,13,4,f +7298,3623,15,1,f +7298,3626bp03,14,1,f +7298,3626bp07,14,1,f +7298,3626bpb0175,14,1,f +7298,3641,0,2,f +7298,3666,13,4,f +7298,3710,7,3,f +7298,3710,15,4,f +7298,3730,0,1,f +7298,3749,7,2,f +7298,3788,15,1,f +7298,3788,7,1,f +7298,3795,0,2,f +7298,3823,41,1,f +7298,3829c01,15,1,f +7298,3833,0,2,f +7298,3837,8,1,f +7298,3852a,6,1,f +7298,3857,17,1,f +7298,3942b,7,2,f +7298,4032a,2,1,f +7298,4070,15,1,f +7298,4081b,15,6,f +7298,4081b,7,1,f +7298,4083,7,3,f +7298,4085c,7,1,f +7298,4085c,14,1,f +7298,4185,47,2,f +7298,4211,15,1,f +7298,4217,15,1,f +7298,4315,7,1,f +7298,4478p04,17,1,f +7298,4491b,0,1,f +7298,4491b,4,1,f +7298,4493c01pb01,6,1,f +7298,4493c01pb02,0,1,f +7298,4515p03,7,4,f +7298,4523,0,3,f +7298,4589,7,1,f +7298,4599a,13,1,f +7298,4600,0,3,f +7298,4624,7,2,f +7298,4626,7,1,f +7298,4859,13,1,f +7298,4864a,15,6,f +7298,4864ap04,15,2,f +7298,4865a,14,1,f +7298,6003,7,2,f +7298,6014a,7,4,f +7298,6015,0,4,f +7298,6060,15,2,f +7298,6078,13,7,f +7298,6079,13,2,f +7298,6079,15,8,f +7298,6081,7,4,f +7298,6081,15,4,f +7298,6091,15,2,f +7298,6093,6,1,f +7298,6093,4,1,f +7298,6141,0,4,f +7298,6141,46,14,f +7298,75998pr0007,15,1,f +7298,970c00,7,1,f +7298,970c00,0,1,f +7298,970c00,15,1,f +7298,973p12c01,4,1,f +7298,973pb0039c01,13,1,f +7298,973pb0128c01,15,1,f +7299,10212stk01,9999,1,t +7299,2357,0,4,f +7299,2357,15,6,f +7299,2412b,72,18,f +7299,2412b,15,11,f +7299,2412b,71,7,f +7299,2419,15,1,f +7299,2420,71,4,f +7299,2431,71,4,f +7299,2431,15,13,f +7299,2436,71,5,f +7299,2449,71,2,f +7299,2449,15,12,f +7299,2454a,15,52,f +7299,2540,15,2,f +7299,2654,72,3,f +7299,2714a,71,4,f +7299,2780,0,2,t +7299,2780,0,133,f +7299,2877,71,2,f +7299,2877,15,12,f +7299,2921,71,2,f +7299,3001,71,19,f +7299,3001,15,10,f +7299,3004,15,45,f +7299,3004,0,20,f +7299,3004,71,6,f +7299,3006,71,2,f +7299,3008,15,16,f +7299,3009,0,4,f +7299,3009,15,25,f +7299,3009,71,6,f +7299,3010,15,19,f +7299,3010,71,11,f +7299,30135,0,1,f +7299,30135,72,1,f +7299,3020,71,6,f +7299,3020,15,2,f +7299,3021,15,4,f +7299,3021,71,10,f +7299,3021,0,5,f +7299,3022,71,2,f +7299,3022,0,10,f +7299,3023,0,10,f +7299,3023,15,82,f +7299,3023,71,8,f +7299,3024,72,4,f +7299,3024,15,106,f +7299,3024,71,16,f +7299,30249,15,5,f +7299,3029,15,12,f +7299,3029,0,2,f +7299,3030,15,4,f +7299,3030,0,2,f +7299,30303,71,2,f +7299,3032,0,1,f +7299,3032,15,7,f +7299,3034,15,1,f +7299,3034,71,2,f +7299,3035,0,2,f +7299,3035,15,7,f +7299,3035,71,1,f +7299,30357,15,2,f +7299,3036,71,1,f +7299,30360,15,4,f +7299,30368,0,1,f +7299,30374,36,1,f +7299,30374,42,1,f +7299,30374,71,4,f +7299,30377,15,4,f +7299,30377,15,1,t +7299,30408pr0002,15,1,f +7299,30414,15,17,f +7299,3046a,71,2,f +7299,30586,15,1,f +7299,3068b,15,4,f +7299,3069b,33,12,f +7299,3069b,15,14,f +7299,3069bpr0070,0,4,f +7299,3070b,15,12,f +7299,3070b,46,1,t +7299,3070b,71,1,t +7299,3070b,15,1,t +7299,3070b,46,10,f +7299,3070b,71,4,f +7299,32018,72,2,f +7299,32018,0,2,f +7299,32028,15,6,f +7299,32054,4,8,f +7299,32064b,0,2,f +7299,32123b,71,16,f +7299,32123b,71,1,t +7299,32184,15,8,f +7299,32269,19,4,f +7299,32270,0,4,f +7299,32278,15,30,f +7299,32291,72,4,f +7299,32324,71,4,f +7299,32348,15,32,f +7299,32449,15,20,f +7299,32523,15,31,f +7299,32524,0,6,f +7299,32524,1,4,f +7299,32525,71,10,f +7299,32526,72,8,f +7299,32529,0,4,f +7299,32530,4,5,f +7299,32530,72,2,f +7299,33299a,71,2,f +7299,3455,0,4,f +7299,3460,15,19,f +7299,3460,0,10,f +7299,3622,15,58,f +7299,3622,71,4,f +7299,3623,15,28,f +7299,3623,71,4,f +7299,3623,0,8,f +7299,3626b,0,1,f +7299,3626bpr0472,78,1,f +7299,3626bpr0632,78,1,f +7299,3626bpr0639,71,1,f +7299,3626cpr0635,78,1,f +7299,3648b,72,8,f +7299,3649,71,8,f +7299,3660,0,5,f +7299,3660,71,2,f +7299,3665,71,2,f +7299,3665,15,6,f +7299,3666,72,2,f +7299,3666,15,19,f +7299,3666,71,15,f +7299,3684,15,27,f +7299,3685,15,10,f +7299,3700,72,12,f +7299,3701,15,2,f +7299,3702,0,4,f +7299,3702,14,6,f +7299,3703,15,4,f +7299,3703,0,10,f +7299,3705,0,6,f +7299,3706,0,16,f +7299,3707,0,19,f +7299,3708,0,6,f +7299,3709,72,4,f +7299,3710,72,25,f +7299,3710,71,1,f +7299,3710,15,24,f +7299,3710,0,4,f +7299,3713,71,18,f +7299,3713,71,1,t +7299,3738,0,6,f +7299,3794b,15,12,f +7299,3795,15,5,f +7299,3795,0,7,f +7299,3832,71,5,f +7299,3832,15,5,f +7299,3894,72,2,f +7299,3901,19,1,f +7299,3937,71,4,f +7299,3938,15,2,f +7299,3941,15,8,f +7299,3957a,15,6,f +7299,3958,15,4,f +7299,3960,15,4,f +7299,40490,15,30,f +7299,4070,71,8,f +7299,4079,0,4,f +7299,4081b,15,2,f +7299,4085c,71,12,f +7299,4162,0,2,f +7299,4162,15,15,f +7299,41677,15,40,f +7299,41769,15,3,f +7299,41770,15,3,f +7299,4274,71,58,f +7299,4274,71,1,t +7299,4286,15,2,f +7299,4287,15,4,f +7299,43093,1,12,f +7299,43337,71,4,f +7299,43337,15,3,f +7299,43898,15,2,f +7299,4460b,71,14,f +7299,4460b,15,37,f +7299,4477,15,10,f +7299,4477,0,4,f +7299,4510,15,2,f +7299,4599b,71,4,f +7299,4599b,15,4,f +7299,4716,71,4,f +7299,47905,72,2,f +7299,48183,71,8,f +7299,48288,0,1,f +7299,4865a,15,28,f +7299,50231,0,1,f +7299,51739,15,2,f +7299,54200,15,1,t +7299,54200,72,16,f +7299,54200,71,20,f +7299,54200,46,1,t +7299,54200,71,1,t +7299,54200,72,1,t +7299,54200,46,1,f +7299,54200,15,15,f +7299,55013,72,22,f +7299,58247,0,1,f +7299,59443,14,8,f +7299,60470a,71,2,f +7299,60477,15,4,f +7299,60477,0,16,f +7299,60478,71,4,f +7299,60479,15,9,f +7299,6081,15,19,f +7299,6091,15,12,f +7299,6111,15,8,f +7299,6112,15,14,f +7299,6134,0,2,f +7299,61409,0,8,f +7299,6141,0,18,f +7299,6141,0,1,t +7299,6141,46,1,t +7299,6141,46,3,f +7299,61678,71,2,f +7299,6183,15,32,f +7299,6215,15,4,f +7299,6231,71,6,f +7299,62462,0,4,f +7299,62462,15,8,f +7299,6267,40,1,f +7299,64225,15,2,f +7299,64567,383,2,f +7299,6541,15,133,f +7299,6541,71,21,f +7299,6558,1,108,f +7299,6587,28,4,f +7299,6588,47,4,f +7299,6629,71,6,f +7299,6632,71,4,f +7299,6636,71,3,f +7299,6636,0,2,f +7299,6636,15,9,f +7299,85984,15,11,f +7299,87079,15,7,f +7299,87083,72,6,f +7299,89762,15,2,f +7299,970c00,0,3,f +7299,970c00,72,1,f +7299,970x026,15,1,f +7299,973pr0520c01,15,1,f +7299,973pr1263c01,72,1,f +7299,973pr1418c01,0,1,f +7299,973pr1420c01,0,1,f +7299,973pr1469c01,0,1,f +7300,3002a,7,3,f +7300,3003,7,17,f +7300,3004,4,9,f +7300,3004,0,3,f +7300,3004,7,52,f +7300,3004,15,1,f +7300,3005,4,13,f +7300,3005,0,6,f +7300,3005,7,54,f +7300,3008,7,8,f +7300,3009,7,6,f +7300,3010,7,5,f +7300,3020,7,2,f +7300,3020,2,1,f +7300,3021,7,4,f +7300,3021,0,3,f +7300,3022,7,2,f +7300,3023,15,1,f +7300,3023,0,4,f +7300,3023,4,4,f +7300,3023,7,4,f +7300,3024,0,3,f +7300,3024,7,8,f +7300,3030,7,1,f +7300,3031,7,2,f +7300,3033,0,1,f +7300,3034,7,3,f +7300,3069b,0,5,f +7300,3070b,0,2,f +7300,3308,4,2,f +7300,3460,2,1,f +7300,3460,7,1,f +7300,3622,0,1,f +7300,3622,4,3,f +7300,3622,7,6,f +7300,3623,4,1,f +7300,3623,0,2,f +7300,3623,7,5,f +7300,3626apr0001,14,6,f +7300,3660,0,8,f +7300,3665,7,4,f +7300,3665,0,2,f +7300,3666,0,1,f +7300,3666,7,2,f +7300,3673,7,3,f +7300,3676,0,12,f +7300,3676,7,2,f +7300,3700,7,2,f +7300,3700,4,2,f +7300,3700,0,2,f +7300,3709,0,2,f +7300,3709,4,1,f +7300,3710,7,2,f +7300,3795,2,1,f +7300,3795,7,1,f +7300,3830,7,4,f +7300,3830,0,2,f +7300,3831,0,2,f +7300,3831,7,4,f +7300,3832,7,2,f +7300,3832,2,2,f +7300,3844,0,2,f +7300,3846p45,7,3,f +7300,3846p46,7,3,f +7300,3847a,8,3,f +7300,3849,6,1,f +7300,3849,8,1,f +7300,3896,0,2,f +7300,3957a,0,2,f +7300,3958,2,1,f +7300,3958,7,2,f +7300,4070,7,2,f +7300,4070,4,2,f +7300,4085a,7,2,f +7300,4085a,0,1,f +7300,4175,7,2,f +7300,4282,2,2,f +7300,4287,4,2,f +7300,4444,7,15,f +7300,4444p01,7,1,f +7300,4444p02,7,1,f +7300,4477,7,1,f +7300,4490,4,2,f +7300,4490,7,4,f +7300,4490,0,1,f +7300,4491a,14,1,f +7300,4491a,1,1,f +7300,4493c01pb02,0,1,f +7300,4495a,15,3,f +7300,4495a,2,4,f +7300,4497,6,4,f +7300,4498,6,2,f +7300,4499,6,2,f +7300,4503,0,1,f +7300,4503,8,1,f +7300,4524,0,1,f +7300,4524,4,1,f +7300,4623,0,1,f +7300,56823c50,0,1,f +7300,73037,4,1,f +7300,75998pr0007,15,1,f +7300,87692,4,1,f +7300,87692,0,1,f +7300,87693,4,1,t +7300,87693,0,1,t +7300,87694,0,1,t +7300,87694,4,1,t +7300,970c00,0,4,f +7300,970x021,0,2,f +7300,973p40c01,1,1,f +7300,973p40c01,0,1,f +7300,973p43c01,1,4,f +7302,15391,0,1,f +7302,15392,72,1,f +7302,15392,72,1,t +7302,3021,71,2,f +7302,3022,72,1,f +7302,30367b,71,1,f +7302,3040b,15,1,f +7302,3794b,72,1,f +7302,4740,71,1,f +7302,54200,15,1,t +7302,54200,15,2,f +7302,6141,15,4,f +7302,6141,15,1,t +7302,92738,0,1,f +7304,8889,9999,1,f +7307,bb277,7,1,f +7307,x431c01,8,1,f +7308,10124,28,1,f +7308,10126,28,1,f +7308,10127,28,1,f +7308,10154,28,1,f +7308,10201,71,1,f +7308,11089,70,5,f +7308,11098,297,2,f +7308,11103,297,1,f +7308,11107,297,1,f +7308,11127,41,1,f +7308,11127,182,1,f +7308,11129pr0007,320,1,f +7308,11214,72,2,f +7308,11215,0,2,f +7308,11302pat0001,36,2,f +7308,11477,308,6,f +7308,12551pr0001,288,1,f +7308,12825,70,2,f +7308,14769,4,2,f +7308,15068,308,1,f +7308,15092,72,4,f +7308,15100,0,4,f +7308,15207,4,2,f +7308,15209,15,4,f +7308,15362,70,3,f +7308,15456,0,2,f +7308,15461,0,2,f +7308,15462,28,2,f +7308,15535,72,1,f +7308,16667pr0003,28,1,f +7308,16768pat0001,4,2,f +7308,16770,182,8,f +7308,18312,28,1,f +7308,2412b,320,7,f +7308,2431,72,3,f +7308,2432,4,1,f +7308,2476,71,2,f +7308,2730,71,2,f +7308,2736,71,4,f +7308,2780,0,18,f +7308,2817,4,1,f +7308,2877,72,6,f +7308,30000,71,4,f +7308,3003,4,1,f +7308,3004,0,2,f +7308,3020,70,4,f +7308,3020,72,3,f +7308,3023,71,6,f +7308,3023,0,6,f +7308,3023,4,4,f +7308,30367c,15,1,f +7308,30552,71,2,f +7308,30553,72,1,f +7308,30592,72,2,f +7308,3062b,0,2,f +7308,32000,72,4,f +7308,32002,19,4,f +7308,32005a,72,2,f +7308,32013,4,3,f +7308,32015,0,1,f +7308,32016,70,2,f +7308,32028,28,2,f +7308,32028,71,6,f +7308,32034,320,3,f +7308,32039,0,1,f +7308,32054,4,2,f +7308,32062,0,1,f +7308,32062,4,4,f +7308,32063,0,2,f +7308,32140,4,2,f +7308,32271,0,2,f +7308,32278,72,2,f +7308,32293,0,2,f +7308,32316,0,5,f +7308,32324,71,1,f +7308,32474,4,1,f +7308,32523,72,2,f +7308,32526,0,2,f +7308,32530,0,4,f +7308,32530,4,2,f +7308,32531,0,1,f +7308,33299a,71,2,f +7308,3460,0,2,f +7308,3623,0,6,f +7308,3626cpr1121,19,1,f +7308,3626cpr1141,288,1,f +7308,3639,72,2,f +7308,3640,72,2,f +7308,3673,71,3,f +7308,3703,0,2,f +7308,3705,0,1,f +7308,3708,0,1,f +7308,3709,4,2,f +7308,3710,19,4,f +7308,3795,70,2,f +7308,3839b,72,1,f +7308,3894,0,1,f +7308,3941,182,6,f +7308,3942c,15,1,f +7308,3956,71,1,f +7308,4006,0,1,f +7308,4032a,0,2,f +7308,4032a,71,10,f +7308,41239,0,2,f +7308,41747,191,1,f +7308,41748,191,1,f +7308,42003,72,2,f +7308,42060,191,1,f +7308,42061,191,1,f +7308,4274,1,2,f +7308,4286,0,4,f +7308,4287,71,2,f +7308,43093,1,13,f +7308,4345b,4,1,f +7308,4346,47,1,f +7308,43857,4,4,f +7308,44728,19,1,f +7308,4477,4,2,f +7308,44809,0,2,f +7308,4519,71,1,f +7308,4522,0,1,f +7308,4733,72,1,f +7308,47457,4,1,f +7308,47458,0,1,f +7308,47753,191,2,f +7308,4861,19,1,f +7308,4871,72,1,f +7308,50373,191,2,f +7308,50943,320,1,f +7308,50950,191,2,f +7308,53451,15,4,f +7308,53992,4,2,f +7308,55982,71,2,f +7308,56145,0,6,f +7308,56891,0,2,f +7308,57906,191,2,f +7308,57909b,72,2,f +7308,59426,72,5,f +7308,59900,182,4,f +7308,60483,71,2,f +7308,60592,4,1,f +7308,6070,191,5,f +7308,60897,4,2,f +7308,61072,179,1,f +7308,61184,71,4,f +7308,6141,4,4,f +7308,6232,72,2,f +7308,62360,182,1,f +7308,62462,320,5,f +7308,63868,70,2,f +7308,63868,71,2,f +7308,63965,15,1,f +7308,6536,72,1,f +7308,6553,72,1,f +7308,6558,1,13,f +7308,6589,19,1,f +7308,6628,0,6,f +7308,6636,191,2,f +7308,6636,70,1,f +7308,76766,0,1,f +7308,85984,191,2,f +7308,87079,72,1,f +7308,87082,71,2,f +7308,87083,72,2,f +7308,87580,4,1,f +7308,88072,4,2,f +7308,92233,191,2,f +7308,92582,71,1,f +7308,92946,191,4,f +7308,92947,4,2,f +7308,970c00pr0664,4,1,f +7308,970c00pr0665,4,1,f +7308,973pr2668c01,4,1,f +7308,973pr2669c01,4,1,f +7308,98138,41,3,f +7308,98138pr0023,182,2,f +7308,98286,71,2,f +7308,99207,71,5,f +7308,99781,71,2,f +7309,2341,15,2,f +7309,2412b,1,1,f +7309,2412b,15,1,f +7309,2431,15,1,f +7309,2432,1,1,f +7309,2540,1,1,f +7309,2873,7,1,f +7309,2877,0,2,f +7309,298c02,14,1,f +7309,3010,15,1,f +7309,3020,1,1,f +7309,3022,1,1,f +7309,30350b,15,1,f +7309,3039,1,1,f +7309,3040b,15,4,f +7309,3069bp50,15,1,f +7309,3069bp80,15,1,f +7309,3069bpr0101,7,1,f +7309,3070b,36,2,f +7309,32059,15,1,f +7309,32086,33,1,f +7309,3626bpx24,14,1,f +7309,3666,7,1,f +7309,3679,7,1,f +7309,3680,1,1,f +7309,3747b,0,2,f +7309,3829c01,14,1,f +7309,3832,15,4,f +7309,3940b,15,1,f +7309,4285b,42,1,f +7309,4485,15,1,f +7309,4488,7,4,f +7309,4625,7,1,f +7309,4864b,33,1,f +7309,6014a,15,4,f +7309,6015,0,4,f +7309,6111,0,2,f +7309,6141,33,1,t +7309,6141,33,1,f +7309,970c00,4,1,f +7309,973pb0059c01,4,1,f +7310,3004,15,2,f +7310,3005,0,2,f +7310,3005,15,4,f +7310,3008,0,1,f +7310,3009,15,2,f +7310,3010,0,1,f +7310,3010,15,2,f +7310,3023,15,2,f +7310,3023,0,1,f +7310,3622,15,4,f +7310,3700,15,6,f +7310,3700,0,1,f +7310,6111,15,2,f +7310,6141,4,1,f +7310,6141,0,5,f +7311,2412b,72,4,f +7311,2421,0,2,f +7311,2432,0,2,f +7311,2437,41,2,f +7311,2456,4,2,f +7311,2456,15,2,f +7311,2456,1,2,f +7311,2456,14,2,f +7311,2479,0,2,f +7311,2877,71,2,f +7311,3001,14,10,f +7311,3001,0,5,f +7311,3001,15,10,f +7311,3001,1,10,f +7311,3001,4,10,f +7311,3001,2,5,f +7311,3002,14,8,f +7311,3002,0,4,f +7311,3002,4,8,f +7311,3002,1,8,f +7311,3002,15,8,f +7311,3002,2,4,f +7311,3003,15,30,f +7311,3003,1,30,f +7311,3003,4,30,f +7311,3003,0,14,f +7311,3003,14,30,f +7311,3003,2,14,f +7311,3004,4,20,f +7311,3004,2,10,f +7311,3004,15,20,f +7311,3004,0,10,f +7311,3004,1,20,f +7311,3004,14,20,f +7311,3005,2,6,f +7311,3005,14,10,f +7311,3005,15,10,f +7311,3005,4,10,f +7311,3005,1,10,f +7311,3005,0,6,f +7311,3007,1,1,f +7311,3007,15,1,f +7311,3007,14,1,f +7311,3007,4,1,f +7311,3008,1,2,f +7311,3008,14,2,f +7311,3008,4,2,f +7311,3008,15,2,f +7311,3009,15,4,f +7311,3009,4,4,f +7311,3009,1,4,f +7311,3009,14,4,f +7311,3010,15,5,f +7311,3010,14,5,f +7311,3010,0,4,f +7311,3010,2,4,f +7311,3010,4,5,f +7311,3010,1,5,f +7311,3020,14,2,f +7311,3020,4,2,f +7311,3022,14,2,f +7311,3022,1,2,f +7311,3022,4,2,f +7311,3023,4,4,f +7311,3034,0,1,f +7311,30386,14,1,f +7311,30387,14,1,f +7311,30388,14,1,f +7311,30389c,14,1,f +7311,3039,14,2,f +7311,3039,4,4,f +7311,3039,47,4,f +7311,30394,14,1,f +7311,30395,72,1,f +7311,30396,14,1,f +7311,3040b,4,4,f +7311,3040b,14,4,f +7311,30474,4,2,f +7311,30592,71,1,f +7311,3062b,46,4,f +7311,3062b,36,4,f +7311,3062b,0,4,f +7311,30648,0,4,f +7311,3065,47,4,f +7311,3298,14,2,f +7311,3298,1,2,f +7311,3483,0,4,f +7311,3622,0,4,f +7311,3622,1,4,f +7311,3622,2,4,f +7311,3622,4,4,f +7311,3622,14,4,f +7311,3622,15,4,f +7311,3641,0,4,f +7311,3666,4,2,f +7311,3666,14,2,f +7311,3710,4,4,f +7311,3710,1,4,f +7311,3795,1,2,f +7311,3795,4,2,f +7311,3823,41,2,f +7311,3832,0,1,f +7311,3839b,0,2,f +7311,3857,2,1,f +7311,3957a,71,2,f +7311,4070,71,4,f +7311,4081b,71,4,f +7311,4083,0,2,f +7311,40996,33,1,f +7311,42022,4,2,f +7311,42022,1,2,f +7311,4286,1,4,f +7311,4488,0,2,f +7311,4624,71,4,f +7311,47720,0,2,f +7311,48336,0,2,f +7311,55981,71,4,f +7311,56902,71,4,f +7311,6019,0,4,f +7311,6141,46,4,f +7311,6141,36,4,f +7311,6157,0,2,f +7311,6215,1,2,f +7311,6215,4,2,f +7311,6249,72,2,f +7313,2412b,3,1,f +7313,30194,8,2,f +7313,3020,14,1,f +7313,3626bpx15,14,1,f +7313,3641,0,4,f +7313,3829c01,7,1,f +7313,3833,0,1,f +7313,3962b,8,1,f +7313,4600,7,2,f +7313,4624,7,4,f +7313,4735,7,2,f +7313,970c00,1,1,f +7313,973px25c01,4,1,f +7314,2412b,25,2,f +7314,2412b,7,3,f +7314,2412b,0,10,f +7314,2419,0,1,f +7314,2432,0,1,f +7314,2432,4,4,f +7314,2436,15,1,f +7314,2445,0,1,f +7314,2446px8,25,1,f +7314,2446px9,4,1,f +7314,2447,0,1,f +7314,2447,40,1,t +7314,2447,0,1,t +7314,2447,40,1,f +7314,2540,0,2,f +7314,2555,4,4,f +7314,2625,4,1,f +7314,2736,7,2,f +7314,2780,0,2,f +7314,2994,14,4,f +7314,3001,8,1,f +7314,3002,8,1,f +7314,3003,25,1,f +7314,3004,0,1,f +7314,3004,46,1,f +7314,3004,36,1,f +7314,3004,15,2,f +7314,3008,15,2,f +7314,3009,0,1,f +7314,30191,0,1,f +7314,3020,7,1,f +7314,3022,4,2,f +7314,3022,7,3,f +7314,3023,4,3,f +7314,3029,0,2,f +7314,3031,7,1,f +7314,3034,4,1,f +7314,3034,7,1,f +7314,30389a,0,1,f +7314,30554a,0,1,f +7314,30602,462,1,f +7314,30602pb008,0,1,f +7314,32002,8,2,f +7314,32002,8,1,t +7314,32009,8,2,f +7314,32013,25,4,f +7314,32059,4,1,f +7314,32073,0,2,f +7314,32271,4,2,f +7314,32283c02,0,2,f +7314,32294,0,2,f +7314,3626bpx121,14,1,f +7314,3626bpx16,14,1,f +7314,3660,4,1,f +7314,3673,7,3,f +7314,3702,0,2,f +7314,3705,4,2,f +7314,3706,0,1,f +7314,3707,0,3,f +7314,3713,7,10,f +7314,3713,7,2,t +7314,3749,7,4,f +7314,3795,7,1,f +7314,3829c01,4,2,f +7314,3839b,14,1,f +7314,3839b,4,1,f +7314,4070,0,4,f +7314,40902,8,1,f +7314,41751pr3,40,1,f +7314,41753,8,2,f +7314,41769,462,1,f +7314,41770,462,1,f +7314,41854,25,1,f +7314,41862,8,3,f +7314,42021,0,1,f +7314,42022,25,2,f +7314,42022,14,2,f +7314,42022px3,0,2,f +7314,42022px4,14,2,f +7314,42022px6,25,2,f +7314,42023,14,2,f +7314,42023,25,2,f +7314,42060pb03,15,1,f +7314,42061pb03,15,1,f +7314,4349,7,4,f +7314,4476b,15,3,f +7314,4589,7,2,f +7314,6112,15,1,f +7314,6141,36,1,t +7314,6141,34,1,t +7314,6141,34,2,f +7314,6141,36,2,f +7314,6232,15,4,f +7314,6578,0,4,f +7314,6579,0,4,f +7314,6580,14,4,f +7314,6587,8,2,t +7314,71128,383,2,f +7314,970x021,25,1,f +7314,970x026,4,1,f +7314,973pb0272c01,25,1,f +7314,973px270c01,0,1,f +7314,rb00168,0,3,t +7314,rb00168,0,4,f +7315,2412b,1,2,f +7315,2454a,8,8,f +7315,2570,8,1,f +7315,2586p4g,7,1,f +7315,3004,0,2,f +7315,30044,7,1,f +7315,30045,0,1,f +7315,3005,0,4,f +7315,3009,0,3,f +7315,3010,0,8,f +7315,3010,7,3,f +7315,3021,19,2,f +7315,30236,4,1,f +7315,30237a,7,4,f +7315,30246,7,1,f +7315,30273,8,1,f +7315,30274,19,2,f +7315,3032,7,1,f +7315,3062b,7,12,f +7315,3062b,19,2,f +7315,3626bpx68,14,1,f +7315,3626bpx72,14,1,f +7315,3684,7,2,f +7315,3685,1,4,f +7315,3688,1,1,f +7315,3700,8,2,f +7315,3844,0,1,f +7315,3846p4e,7,1,f +7315,3847,8,1,f +7315,3941,7,3,f +7315,3959,6,2,f +7315,4070,19,2,f +7315,4071,7,1,f +7315,4201,2,2,f +7315,4460a,7,2,f +7315,4497,6,2,f +7315,4589,46,2,f +7315,4611,8,1,f +7315,4865a,0,1,f +7315,59,383,1,f +7315,6066,8,1,f +7315,6123,8,2,f +7315,6182,7,1,f +7315,6182,0,1,f +7315,6249,8,1,f +7315,970c00,0,1,f +7315,970c00pb014,0,1,f +7315,973px115c01,8,1,f +7315,973px119c01,0,1,f +7316,2346,0,16,f +7316,2453a,4,6,f +7316,2453a,14,6,f +7316,2458,14,3,f +7316,2460,4,3,f +7316,2479,7,6,f +7316,2493b,15,10,f +7316,2494,47,10,f +7316,251,4,3,f +7316,3001,14,54,f +7316,3001,4,54,f +7316,3002,4,28,f +7316,3002,14,28,f +7316,3003,4,30,f +7316,3003,14,30,f +7316,3004,47,30,f +7316,3004,4,54,f +7316,3004,14,54,f +7316,3005,14,54,f +7316,3005,4,54,f +7316,3006,4,10,f +7316,3006,14,10,f +7316,3007,14,10,f +7316,3007,4,10,f +7316,3008,14,30,f +7316,3008,4,30,f +7316,3009,4,72,f +7316,3009,14,72,f +7316,3010,47,18,f +7316,3010,4,126,f +7316,3010,14,126,f +7316,3020,7,24,f +7316,3021,7,18,f +7316,3022,7,18,f +7316,3027,7,6,f +7316,3028,7,6,f +7316,3030,7,6,f +7316,3031,7,6,f +7316,3032,7,6,f +7316,3034,7,12,f +7316,3035,7,6,f +7316,3036,7,12,f +7316,3039,47,12,f +7316,3039,14,12,f +7316,3039,4,12,f +7316,3040b,4,12,f +7316,3040b,14,12,f +7316,3062b,7,24,f +7316,3063b,14,24,f +7316,3081cc01,15,12,f +7316,3127,7,3,f +7316,3149c01,7,6,f +7316,3183a,4,3,f +7316,3184,4,3,f +7316,3297,4,30,f +7316,3298,4,30,f +7316,3299,4,16,f +7316,3300,4,16,f +7316,3307,4,6,f +7316,3307,14,6,f +7316,3324c01,7,3,f +7316,3403,4,3,f +7316,3404,4,3,f +7316,3460,7,18,f +7316,3482,7,28,f +7316,3483,0,12,f +7316,3622,14,54,f +7316,3622,4,54,f +7316,3624,15,2,f +7316,3626apr0001,14,12,f +7316,3634,0,12,f +7316,3639,7,3,f +7316,3640,7,3,f +7316,3659,14,6,f +7316,3659,4,6,f +7316,3660,14,12,f +7316,3660,4,12,f +7316,3665,4,12,f +7316,3665,14,12,f +7316,3666,7,12,f +7316,3673,7,54,f +7316,3679,7,9,f +7316,3680,14,6,f +7316,3700,4,36,f +7316,3700,0,30,f +7316,3702,4,12,f +7316,3703,4,12,f +7316,3707,0,30,f +7316,3709,4,6,f +7316,3710,7,24,f +7316,3741,2,6,f +7316,3742,1,8,f +7316,3742,4,8,f +7316,3742,15,8,f +7316,3747a,14,12,f +7316,3747a,4,12,f +7316,3749,7,30,f +7316,3795,7,6,f +7316,3823,47,3,f +7316,3830,14,4,f +7316,3831,14,4,f +7316,3832,7,12,f +7316,3857,2,3,f +7316,3857,7,3,f +7316,3861b,15,6,f +7316,3894,4,12,f +7316,3901,0,2,f +7316,3901,6,2,f +7316,3937,7,6,f +7316,3938,7,6,f +7316,3941,7,24,f +7316,3956,7,6,f +7316,4275b,7,6,f +7316,4276b,7,6,f +7316,4504,7,6,f +7316,4507,7,3,f +7316,4530,4,2,f +7316,4530,0,2,f +7316,4530,6,2,f +7316,4594,47,3,f +7316,4864a,47,24,f +7316,56823,0,1,f +7316,6007,8,4,f +7316,7039,4,12,f +7316,7049b,0,6,f +7316,73037,14,3,f +7316,73983,7,4,f +7316,970c00,1,3,f +7316,970c00,4,3,f +7316,970c00,0,3,f +7316,970c00,15,3,f +7316,973c01,15,4,f +7316,973c07,1,4,f +7316,973c18,0,4,f +7318,2352,14,1,f +7318,3001,14,8,f +7318,3001,1,6,f +7318,3001,4,8,f +7318,3001,15,6,f +7318,3001,0,4,f +7318,3001pr1,14,1,f +7318,3002,14,2,f +7318,3002,0,2,f +7318,3002,4,2,f +7318,3002,1,2,f +7318,3002,15,2,f +7318,3003,15,8,f +7318,3003,0,4,f +7318,3003,4,7,f +7318,3003,1,8,f +7318,3003,14,8,f +7318,3003pe1,14,2,f +7318,3006,4,2,f +7318,3007,1,2,f +7318,3185,15,4,f +7318,3470,2,1,f +7318,3483,0,4,f +7318,4130,14,2,f +7318,4131,4,2,f +7318,4132,14,2,f +7318,4133,4,2,f +7318,4180c02,0,2,f +7318,4202,1,1,f +7318,4204,2,1,f +7318,bfp001,9999,1,f +7319,10884,41,1,f +7319,11477,15,1,f +7319,15091,41,1,f +7319,2419,15,1,f +7319,3020,15,1,f +7319,3023,41,1,f +7319,30374,70,1,f +7319,3062b,41,3,f +7319,32530,72,2,f +7319,32556,19,1,f +7319,53705,41,1,f +7319,54200,15,1,f +7319,60478,71,1,f +7319,88289,308,1,f +7320,2555,0,1,f +7320,3022,72,1,f +7320,3070b,0,1,t +7320,3070b,0,1,f +7320,3794b,70,1,f +7320,3847,135,1,f +7320,4589,72,2,f +7320,4589,0,1,f +7320,47905,0,1,f +7320,54200,0,1,f +7320,54200,0,1,t +7320,6141,297,1,t +7320,6141,297,1,f +7320,64647,57,1,t +7320,64647,57,1,f +7320,87552,0,1,f +7321,3001a,1,1,f +7321,3002a,1,1,f +7321,3003,1,1,f +7321,3004,1,7,f +7321,3004,47,2,f +7321,3007,1,1,f +7321,3020,1,2,f +7321,3021,1,7,f +7321,3022,0,2,f +7321,3022,1,7,f +7321,3023,1,1,f +7321,3030,0,4,f +7321,3034,1,1,f +7321,3034,0,1,f +7321,3039,47,1,f +7321,3062a,0,1,f +7321,3139,0,2,f +7321,3460,0,1,f +7321,3461,7,1,f +7321,3464,4,2,f +7321,3481,1,1,f +7321,3587,1,1,f +7321,8,1,2,f +7322,2555,4,1,t +7322,2555,4,2,f +7322,3021,70,1,f +7322,3839b,0,1,f +7322,4489b,70,2,f +7322,4497,0,2,f +7322,6157,71,1,f +7323,122c01,0,2,f +7323,3003,15,1,f +7323,3004,15,10,f +7323,3004,0,2,f +7323,3005,4,2,f +7323,3005,15,9,f +7323,3005,0,2,f +7323,3009,0,2,f +7323,3009,15,5,f +7323,3010,0,2,f +7323,3010,15,4,f +7323,3020,4,2,f +7323,3021,1,1,f +7323,3022,15,2,f +7323,3023,15,1,f +7323,3023,4,7,f +7323,3024,46,2,f +7323,3024,36,2,f +7323,3024,15,1,f +7323,3024,33,2,f +7323,3024,7,3,f +7323,3028,4,1,f +7323,3069b,15,2,f +7323,3298,15,1,f +7323,3460,15,1,f +7323,3471,2,1,f +7323,3497,7,1,f +7323,3622,15,2,f +7323,3622,1,1,f +7323,3623,15,4,f +7323,3623,1,1,f +7323,3625,0,1,f +7323,3626apr0001,14,2,f +7323,3641,0,4,f +7323,3660,1,2,f +7323,3679,7,2,f +7323,3680,0,2,f +7323,3710,15,6,f +7323,3741,2,1,f +7323,3742,14,1,t +7323,3742,14,3,f +7323,3788,4,2,f +7323,3795,15,1,f +7323,3821,4,1,f +7323,3822,4,1,f +7323,3823,47,1,f +7323,3829c01,4,1,f +7323,3832,4,2,f +7323,3853,4,3,f +7323,3855a,47,3,f +7323,3861b,4,1,f +7323,3901,6,1,f +7323,3939,47,2,f +7323,3941,0,1,f +7323,3962a,0,2,f +7323,4070,4,4,f +7323,4079,1,3,f +7323,4083,15,1,f +7323,4085a,7,2,f +7323,4212a,0,1,f +7323,970c00,4,1,f +7323,970c00,0,1,f +7323,973p17c01,0,1,f +7323,973p25c01,15,1,f +7324,2458,4,1,f +7324,3003,4,1,f +7324,3020,1,1,f +7324,3039,47,1,f +7324,3298,4,1,f +7324,3710,1,2,f +7324,6041,0,1,f +7325,3020,14,1,f +7325,3023,25,2,f +7325,3039,14,1,f +7325,3068b,14,1,f +7325,3660,14,3,f +7325,4070,14,2,f +7325,4274,71,4,f +7325,43722,14,1,f +7325,43723,14,1,f +7325,54200,14,2,f +7325,54200,25,2,f +7325,6141,0,2,f +7325,6141,25,4,f +7325,6541,14,4,f +7326,20601pr0001,14,1,f +7326,3626cpr1725,14,1,f +7326,88646,0,1,f +7326,93549pat06pr001,47,1,f +7326,970c00pr0920,15,1,f +7326,973pr3108c01,15,1,f +7327,13746pr0002,320,1,f +7327,15499,226,1,f +7327,2561,70,1,f +7327,3626cpr1309,179,1,f +7327,3678bpr0024b,320,1,f +7327,88646,0,1,f +7327,973pr2526c01,320,1,f +7330,2436,4,2,f +7330,2540,8,1,f +7330,2542,4,1,f +7330,2555,0,2,f +7330,30137,6,3,f +7330,30173a,7,1,f +7330,30177,0,1,f +7330,3062b,8,1,f +7330,3626bpx5,14,1,f +7330,3710,0,1,f +7330,3794a,7,1,f +7330,4085c,4,4,f +7330,4497,6,2,f +7330,4499,6,1,f +7330,6019,7,1,f +7330,970c00,0,1,f +7330,973px11c01,0,1,f +7331,11153,2,4,f +7331,11477,2,4,f +7331,15573,2,1,f +7331,15712,14,2,f +7331,19888,4,1,f +7331,2357,19,2,f +7331,2420,14,2,f +7331,2431,0,2,f +7331,2431,14,2,f +7331,2432,14,1,f +7331,2437,47,1,f +7331,30029,0,1,f +7331,3003,14,1,f +7331,3004,2,2,f +7331,3005,47,2,f +7331,30157,71,2,f +7331,3020,2,2,f +7331,3021,0,4,f +7331,3022,19,2,f +7331,3023,19,1,f +7331,3023,14,1,f +7331,3029,0,3,f +7331,3037,2,1,f +7331,3039,19,4,f +7331,3040b,19,3,f +7331,30414,71,1,f +7331,3068b,2,1,f +7331,3069b,14,1,f +7331,3626cpr0901,78,1,f +7331,3660,19,1,f +7331,3665,2,4,f +7331,3666,2,2,f +7331,3710,2,5,f +7331,3710,0,2,f +7331,3795,2,2,f +7331,3829c01,14,1,f +7331,3832,19,5,f +7331,4081b,14,2,f +7331,42610,71,4,f +7331,43722,2,2,f +7331,43723,2,2,f +7331,4449,0,1,f +7331,4460b,19,2,f +7331,4865a,2,4,f +7331,50946,71,1,f +7331,54200,19,10,f +7331,54200,2,2,f +7331,6091,2,4,f +7331,61252,19,2,f +7331,61252,14,2,f +7331,6141,36,2,f +7331,6141,0,4,f +7331,63868,14,2,f +7331,63965,14,2,f +7331,6636,0,6,f +7331,87580,19,2,f +7331,92409,0,4,f +7331,970d04,1,1,f +7331,973pr1957c01,1,1,f +7331,98138,71,1,f +7331,98138,47,2,f +7331,98138,34,1,f +7331,98281,2,1,f +7331,98726,0,1,f +7332,2335,15,1,f +7332,2412b,72,2,f +7332,2436,0,2,f +7332,2447,0,1,f +7332,2447,0,1,t +7332,2540,15,3,f +7332,2555,0,1,f +7332,30031,0,1,f +7332,30171,0,1,f +7332,3020,0,2,f +7332,3021,71,1,f +7332,3022,4,1,f +7332,3022,0,1,f +7332,30414,15,2,f +7332,3069bpr0100,2,1,f +7332,32000,15,1,f +7332,3626bpr0540,14,1,f +7332,3794b,15,1,f +7332,41747,15,1,f +7332,41748,15,1,f +7332,4274,1,2,f +7332,4274,1,1,t +7332,43710,15,1,f +7332,43711,15,1,f +7332,44567a,0,1,f +7332,4589,34,2,f +7332,50231,4,1,f +7332,54200,36,1,t +7332,54200,33,1,f +7332,54200,36,1,f +7332,54200,33,1,t +7332,60471,15,1,f +7332,85947pr0001,71,1,f +7332,970c00,2,1,f +7332,970c00pr0127,72,1,f +7332,973pr1490c01,72,1,f +7332,973pr1511c01,2,1,f +7334,5306bc036,0,1,f +7336,2412b,71,2,f +7336,2432,70,4,f +7336,2456,1,2,f +7336,2456,14,1,f +7336,2456,15,2,f +7336,2456,4,1,f +7336,2458,15,4,f +7336,2540,1,2,f +7336,3001,25,4,f +7336,3001,4,10,f +7336,3001,73,2,f +7336,3001,0,5,f +7336,3001,70,4,f +7336,3001,1,10,f +7336,3001,15,10,f +7336,3001,14,10,f +7336,3001,2,5,f +7336,3001,27,2,f +7336,3002,14,6,f +7336,3002,0,3,f +7336,3002,15,6,f +7336,3002,1,6,f +7336,3002,73,4,f +7336,3002,2,3,f +7336,3002,4,8,f +7336,3002,27,4,f +7336,3002,72,2,f +7336,3003,2,14,f +7336,3003,0,14,f +7336,3003,4,30,f +7336,3003,72,2,f +7336,3003,14,30,f +7336,3003,27,6,f +7336,3003,73,8,f +7336,3003,25,4,f +7336,3003,70,4,f +7336,3003,1,30,f +7336,3003,15,30,f +7336,3004,2,6,f +7336,3004,25,6,f +7336,3004,14,12,f +7336,3004,73,10,f +7336,3004,10,8,f +7336,3004,4,18,f +7336,3004,15,12,f +7336,3004,70,10,f +7336,3004,1,12,f +7336,3004,27,8,f +7336,3004,71,2,f +7336,3004,72,2,f +7336,3004,0,18,f +7336,3004pr0001,14,2,f +7336,3004pr0002,14,1,f +7336,3005,1,8,f +7336,3005,0,4,f +7336,3005,2,4,f +7336,3005,4,12,f +7336,3005,70,8,f +7336,3005,25,10,f +7336,3005,73,4,f +7336,3005,15,8,f +7336,3005,72,6,f +7336,3005,14,8,f +7336,3005,27,6,f +7336,3005pr0003,2,2,f +7336,3005pr0003,14,2,f +7336,3005pr0003,15,4,f +7336,3007,1,1,f +7336,3007,14,1,f +7336,3007,15,1,f +7336,3007,4,1,f +7336,3008,1,2,f +7336,3008,15,2,f +7336,3008,14,1,f +7336,3008,4,2,f +7336,3009,4,2,f +7336,3009,1,3,f +7336,3009,14,2,f +7336,3009,15,3,f +7336,3010,2,4,f +7336,3010,14,5,f +7336,3010,25,2,f +7336,3010,1,5,f +7336,3010,15,5,f +7336,3010,70,2,f +7336,3010,4,9,f +7336,3010,0,4,f +7336,3020,25,1,f +7336,3020,15,2,f +7336,3020,2,3,f +7336,3020,0,2,f +7336,3020,27,2,f +7336,3020,4,3,f +7336,3020,73,2,f +7336,3020,70,2,f +7336,3021,0,2,f +7336,3021,15,3,f +7336,3021,2,2,f +7336,3021,25,2,f +7336,3021,1,2,f +7336,3021,4,4,f +7336,3022,27,4,f +7336,3022,2,4,f +7336,3022,1,2,f +7336,3022,14,2,f +7336,3022,0,4,f +7336,3022,4,2,f +7336,3022,25,3,f +7336,3023,70,2,f +7336,3023,1,4,f +7336,3023,0,4,f +7336,3023,15,4,f +7336,3023,27,4,f +7336,3023,4,4,f +7336,3031,14,1,f +7336,3031,70,1,f +7336,3032,14,1,f +7336,3034,70,2,f +7336,3035,2,3,f +7336,30363,0,2,f +7336,3037,4,10,f +7336,3037,14,5,f +7336,3039,2,4,f +7336,3039,4,16,f +7336,3039,0,4,f +7336,3039,1,4,f +7336,3039,14,9,f +7336,3039,71,4,f +7336,3040b,14,6,f +7336,3040b,1,2,f +7336,3040b,72,2,f +7336,3040b,0,4,f +7336,3040b,4,2,f +7336,30414,14,2,f +7336,3062b,70,4,f +7336,3062b,0,4,f +7336,3062b,14,4,f +7336,3065,47,1,f +7336,3065,34,2,f +7336,3298,1,2,f +7336,33291,10,4,f +7336,33291,10,1,t +7336,33291,191,4,f +7336,33291,191,1,t +7336,3622,1,4,f +7336,3622,4,6,f +7336,3622,0,2,f +7336,3622,25,6,f +7336,3622,2,2,f +7336,3622,14,4,f +7336,3622,27,4,f +7336,3622,15,4,f +7336,3623,1,2,f +7336,3623,14,2,f +7336,3659,15,4,f +7336,3660,1,4,f +7336,3660,2,4,f +7336,3660,27,2,f +7336,3660,71,2,f +7336,3660,70,4,f +7336,3660,14,2,f +7336,3660,4,8,f +7336,3665,4,6,f +7336,3665,1,4,f +7336,3665,25,6,f +7336,3666,25,3,f +7336,3666,14,1,f +7336,3676,4,4,f +7336,3710,15,2,f +7336,3710,73,2,f +7336,3710,14,2,f +7336,3710,1,1,f +7336,3710,27,2,f +7336,3747b,1,2,f +7336,3794a,0,2,f +7336,3794b,15,2,f +7336,3794b,25,2,f +7336,3795,25,4,f +7336,3795,0,1,f +7336,3823,47,2,f +7336,4070,71,2,f +7336,4070,14,4,f +7336,4081b,0,2,f +7336,42023,15,6,f +7336,42023,14,4,f +7336,44301a,0,2,f +7336,44302a,72,2,f +7336,4460b,10,4,f +7336,54200,27,1,t +7336,54200,2,1,t +7336,54200,25,1,t +7336,54200,27,4,f +7336,54200,70,1,t +7336,54200,70,4,f +7336,54200,25,4,f +7336,54200,4,1,t +7336,54200,2,4,f +7336,54200,4,4,f +7336,56902,71,4,f +7336,59900,34,4,f +7336,59900,182,4,f +7336,59900,15,4,f +7336,6041,0,2,f +7336,6091,14,2,f +7336,61252,15,2,f +7336,61254,0,4,f +7336,6141,14,4,f +7336,6141,15,1,t +7336,6141,1,4,f +7336,6141,4,4,f +7336,6141,34,4,f +7336,6141,46,4,f +7336,6141,41,1,t +7336,6141,57,1,t +7336,6141,27,4,f +7336,6141,29,4,f +7336,6141,46,1,t +7336,6141,29,1,t +7336,6141,1,1,t +7336,6141,25,1,t +7336,6141,25,8,f +7336,6141,36,1,t +7336,6141,14,1,t +7336,6141,36,4,f +7336,6141,57,4,f +7336,6141,15,4,f +7336,6141,27,1,t +7336,6141,41,4,f +7336,6141,4,1,t +7336,6141,34,1,t +7336,61678,73,4,f +7336,6191,14,1,f +7336,6215,2,4,f +7336,6249,71,2,f +7336,6541,2,2,f +7336,73590c03a,0,1,f +7338,30488c01,0,1,f +7338,30492,2,1,f +7338,3062b,14,4,f +7338,3068b,2,3,f +7338,3626bp05,14,1,f +7338,3795,2,1,f +7338,3832,15,1,f +7338,3901,19,1,f +7338,3957a,15,1,f +7338,4476b,15,2,f +7338,4495b,4,1,f +7338,4589,4,4,f +7338,72824p01,15,1,f +7338,970c00,15,1,f +7338,973pb0173c01,4,1,f +7339,11091,0,2,f +7339,11091,85,4,f +7339,11336,4,2,f +7339,13708pr01,0,1,f +7339,32062,4,2,f +7339,43093,1,2,f +7339,53551,148,4,f +7339,53562,0,2,f +7339,59443,70,2,f +7339,74261,72,2,f +7339,87747,179,6,f +7339,87747,179,1,t +7339,90607,0,2,f +7339,90609,0,2,f +7339,90611,0,1,f +7339,90617,72,10,f +7339,90626,0,1,f +7339,90630,0,1,f +7339,90639,179,2,f +7339,90639,0,2,f +7339,90641,85,4,f +7339,90641,0,6,f +7339,90652,0,1,f +7339,93571,0,4,f +7339,93575,0,2,f +7339,98603s01pr0009,148,1,f +7340,10126,84,1,f +7340,10127,84,1,f +7340,10884,2,2,f +7340,10884,27,2,f +7340,11458,70,1,f +7340,11477,70,4,f +7340,11816pr0108,84,1,f +7340,14769,71,1,f +7340,15068,10,4,f +7340,15070,27,2,f +7340,15100,0,1,f +7340,15573,19,1,f +7340,15712,70,3,f +7340,18674,72,1,f +7340,18853,29,1,t +7340,18853,29,1,f +7340,20379pr0109,19,1,f +7340,22885,4,2,f +7340,2357,71,4,f +7340,24201,15,1,f +7340,2423,27,1,f +7340,2431,4,1,f +7340,2431,19,2,f +7340,25269,19,1,t +7340,25269,19,6,f +7340,2780,0,1,t +7340,2780,0,1,f +7340,28705,0,1,f +7340,28895,19,1,f +7340,28959,308,1,f +7340,29780,84,1,f +7340,29787,84,1,f +7340,29789,84,1,f +7340,3001,71,2,f +7340,3001,70,1,f +7340,3003,72,4,f +7340,3004,2,4,f +7340,3005,182,2,f +7340,3010,19,2,f +7340,30176,2,5,f +7340,3020,2,1,f +7340,3020,19,1,f +7340,3020,25,1,f +7340,3021,1,2,f +7340,3021,19,2,f +7340,3022,2,3,f +7340,3022,4,1,f +7340,3023,70,2,f +7340,3023,182,3,f +7340,3023,15,1,f +7340,3023,27,8,f +7340,30237b,27,1,f +7340,3024,182,2,f +7340,3024,41,4,f +7340,3024,182,1,t +7340,3024,41,2,t +7340,3032,19,1,f +7340,3040b,182,4,f +7340,3040b,71,4,f +7340,3040b,2,2,f +7340,3045,71,2,f +7340,3062b,15,2,f +7340,3062b,19,2,f +7340,3068b,19,1,f +7340,3068bpr0322,19,1,f +7340,3176,71,1,f +7340,3176,72,1,f +7340,32013,0,2,f +7340,32016,70,1,f +7340,32028,4,1,f +7340,32028,2,2,f +7340,32034,0,1,f +7340,32062,4,1,f +7340,32064a,0,2,f +7340,32192,72,1,f +7340,32994,191,1,f +7340,33085,14,1,f +7340,33291,4,1,t +7340,33291,4,3,f +7340,33291,2,2,f +7340,33291,2,1,t +7340,33291,191,16,f +7340,33291,191,3,t +7340,3460,70,2,f +7340,3622,27,2,f +7340,3626cpr1296a,14,1,f +7340,3626cpr2117,70,2,f +7340,3666,19,6,f +7340,3673,71,2,t +7340,3673,71,2,f +7340,3700,72,5,f +7340,3706,0,1,f +7340,3710,70,2,f +7340,3710,28,7,f +7340,3710,27,3,f +7340,3737,0,2,f +7340,3846,0,2,f +7340,3941,70,1,f +7340,3957b,70,1,f +7340,40378,70,2,f +7340,41150stk01,9999,1,f +7340,42023,70,4,f +7340,4282,19,1,f +7340,43093,1,4,f +7340,44676,15,1,f +7340,48729b,0,1,t +7340,48729b,0,1,f +7340,50303,28,2,f +7340,54200,70,1,t +7340,54200,15,1,f +7340,54200,70,4,f +7340,54200,15,1,t +7340,59443,70,1,f +7340,6003,322,2,f +7340,60219,70,2,f +7340,60474,71,1,f +7340,60479,19,2,f +7340,6091,322,4,f +7340,6141,85,1,t +7340,6141,182,1,f +7340,6141,85,1,f +7340,6141,10,11,f +7340,6141,46,1,f +7340,6141,10,2,t +7340,6141,182,1,t +7340,6141,46,1,t +7340,6141,29,1,t +7340,6141,29,11,f +7340,61485,71,1,f +7340,6182,15,1,f +7340,6215,2,6,f +7340,62462,70,1,f +7340,63864,70,4,f +7340,63965,15,1,f +7340,6553,72,1,f +7340,6628,0,3,f +7340,85984,19,4,f +7340,85984,10,2,f +7340,87079,19,2,f +7340,87079,4,1,f +7340,87087,27,2,f +7340,87585,70,1,t +7340,87585,70,1,f +7340,87611,70,2,f +7340,87994,10,2,f +7340,87994,10,1,t +7340,88289,308,1,f +7340,92099,28,1,f +7340,92456pr0209c01,84,1,f +7340,93095,19,1,f +7340,93273,15,1,f +7340,93273,19,4,f +7340,93273,70,2,f +7340,93273,4,1,f +7340,98138,47,1,t +7340,98138,47,4,f +7340,98138pr0064,27,1,f +7340,98138pr0064,27,1,t +7340,99207,71,1,f +7341,22969,80,4,f +7341,2420,0,4,f +7341,2431,0,2,f +7341,2444,0,2,f +7341,2741,0,1,f +7341,2744,0,2,f +7341,2780,0,4,t +7341,2780,0,125,f +7341,2850a,47,8,f +7341,2851,14,8,f +7341,2852,7,8,f +7341,2853,7,1,t +7341,2853,7,4,f +7341,2854,8,3,f +7341,2905,0,9,f +7341,2909c02,14,4,f +7341,3004,7,3,f +7341,3022,7,2,f +7341,3023,0,2,f +7341,3023,7,2,f +7341,30374,41,4,f +7341,30374,36,4,f +7341,3176,0,4,f +7341,32000,7,8,f +7341,32001,0,1,f +7341,32002,8,2,f +7341,32002,8,1,t +7341,32005b,8,6,f +7341,32009,8,13,f +7341,32009,0,8,f +7341,32013,0,4,f +7341,32015,0,2,f +7341,32016,0,10,f +7341,32017,0,3,f +7341,32018,0,4,f +7341,32034,0,11,f +7341,32034,7,2,f +7341,32039,0,6,f +7341,32054,0,12,f +7341,32056,0,10,f +7341,32062,0,44,f +7341,32062,0,4,t +7341,32063,0,3,f +7341,32068,0,5,f +7341,32069,0,2,f +7341,32073,0,15,f +7341,32123b,7,5,f +7341,32123b,7,3,t +7341,32124,0,4,f +7341,32126,7,2,f +7341,32138,0,4,f +7341,32140,0,19,f +7341,32184,0,7,f +7341,32187,8,1,f +7341,32188,81,3,f +7341,32189,81,3,f +7341,32190,81,2,f +7341,32191,81,2,f +7341,32192,0,10,f +7341,32195b,8,8,f +7341,32198,7,1,f +7341,32199,179,2,f +7341,32201,179,2,f +7341,32202,179,4,f +7341,32235,179,5,f +7341,32249,0,4,f +7341,32269,7,2,f +7341,32270,7,2,f +7341,32271,15,4,f +7341,32278,0,2,f +7341,32291,0,32,f +7341,32298,0,4,f +7341,32310,0,1,f +7341,32316,0,6,f +7341,32333,0,2,f +7341,32348,0,4,f +7341,32449,0,11,f +7341,32494,7,4,f +7341,32495c01,14,4,f +7341,32523,0,6,f +7341,32524,0,5,f +7341,32526,0,9,f +7341,32527,81,1,f +7341,32528,81,1,f +7341,32534,81,1,f +7341,32534,0,1,f +7341,32535,81,1,f +7341,32535,0,1,f +7341,32555,0,4,f +7341,32557,0,8,f +7341,33299a,0,10,f +7341,3460,7,1,f +7341,3623,0,6,f +7341,3647,7,2,t +7341,3647,7,5,f +7341,3648b,7,2,f +7341,3660,0,2,f +7341,3666,0,4,f +7341,3673,7,2,f +7341,3700,7,1,f +7341,3700,0,4,f +7341,3701,7,1,f +7341,3703,0,6,f +7341,3705,0,34,f +7341,3706,0,18,f +7341,3707,0,14,f +7341,3708,0,1,f +7341,3709,0,2,f +7341,3710,0,5,f +7341,3710,7,2,f +7341,3713,7,5,t +7341,3713,7,19,f +7341,3737,0,11,f +7341,3738,0,1,f +7341,3747b,0,2,f +7341,3749,7,2,t +7341,3749,7,24,f +7341,3794a,0,4,f +7341,3832,0,2,f +7341,3894,0,6,f +7341,3895,0,2,f +7341,4019,7,7,f +7341,40490,0,4,f +7341,4274,7,15,f +7341,4274,7,4,t +7341,4288,0,1,f +7341,4477,0,2,f +7341,4519,0,45,f +7341,6087,0,6,f +7341,6536,0,2,t +7341,6536,0,30,f +7341,6538b,0,9,f +7341,6538b,8,14,f +7341,6539,7,3,f +7341,6542a,8,6,f +7341,6553,0,2,f +7341,6558,0,2,t +7341,6558,0,66,f +7341,6573,8,3,f +7341,6587,8,21,f +7341,6589,7,16,f +7341,6592,0,2,f +7341,6628,0,1,t +7341,6628,0,6,f +7341,6629,0,4,f +7341,6630,0,2,f +7341,6631,0,2,f +7341,6632,0,30,f +7341,6636,0,1,f +7341,6641,7,1,f +7341,75535,15,4,f +7341,76320,0,2,f +7341,78c02,179,10,f +7341,78c11,179,3,f +7341,78c12,179,1,f +7341,78c12,81,1,f +7341,78c14,179,1,f +7341,78c16,179,2,f +7341,78c24,179,1,f +7341,8466stk01,9999,1,t +7341,9244,7,6,f +7344,2456,1,2,f +7344,2456,4,2,f +7344,2456,14,2,f +7344,3001,27,2,f +7344,3001,25,4,f +7344,3001,4,8,f +7344,3001,1,4,f +7344,3001,14,4,f +7344,3001,2,2,f +7344,3002,1,6,f +7344,3002,25,6,f +7344,3002,4,10,f +7344,3002,2,4,f +7344,3002,14,8,f +7344,3002,27,4,f +7344,3003,2,6,f +7344,3003,27,6,f +7344,3003,1,14,f +7344,3003,4,18,f +7344,3003,25,14,f +7344,3003,14,22,f +7344,3004,4,16,f +7344,3004,27,4,f +7344,3004,2,4,f +7344,3004,14,20,f +7344,3004,25,12,f +7344,3004,1,12,f +7344,3005,1,8,f +7344,3005,25,8,f +7344,3005,2,4,f +7344,3005,27,4,f +7344,3005,4,12,f +7344,3005,14,12,f +7344,3007,4,1,f +7344,3007,1,2,f +7344,3007,14,1,f +7344,3008,14,2,f +7344,3008,4,2,f +7344,3008,1,2,f +7344,3009,4,5,f +7344,3009,14,2,f +7344,3009,1,3,f +7344,3010,14,4,f +7344,3010,27,4,f +7344,3010,4,4,f +7344,3010,1,2,f +7344,3010,25,2,f +7344,3010,2,4,f +7344,3622,2,2,f +7344,3622,14,6,f +7344,3622,1,4,f +7344,3622,25,4,f +7344,3622,4,6,f +7345,11212,29,1,f +7345,11618,322,1,f +7345,11618,322,1,t +7345,2458,15,2,f +7345,2817,71,1,f +7345,3004,19,3,f +7345,3004,30,1,f +7345,3005,30,1,f +7345,3020,27,1,f +7345,3032,2,1,f +7345,3038,30,4,f +7345,33291,4,1,f +7345,33291,191,2,f +7345,33291,191,1,t +7345,33291,4,1,t +7345,3622,15,4,f +7345,3623,29,2,f +7345,3665,19,2,f +7345,3795,29,1,f +7345,4490,19,1,f +7345,6141,27,1,f +7345,6141,27,1,t +7345,6256,191,1,f +7345,87087,19,2,f +7345,93088pr0001b,19,1,f +7345,93160,15,1,f +7345,93160,15,1,t +7345,98283,84,4,f +7347,10288,308,1,f +7347,3020,0,1,f +7347,3023,71,2,f +7347,3023,47,1,f +7347,3034,71,1,f +7347,32062,4,3,f +7347,3659,15,1,f +7347,3794a,0,2,f +7347,3941,4,4,f +7347,3942c,15,1,f +7347,3957b,15,1,f +7347,4032a,15,3,f +7347,4070,15,2,f +7347,4150pr0022,71,1,f +7347,41669,4,3,f +7347,43093,1,1,f +7347,4476b,15,1,f +7347,4697b,71,1,f +7347,4733,72,3,f +7347,54200,40,6,f +7347,6141,36,3,f +7347,6141,34,1,f +7347,63864,71,4,f +7347,87580,0,1,f +7351,3022,0,1,f +7351,3062b,4,1,f +7351,3062b,14,2,f +7351,4070,4,1,f +7351,4349,72,1,f +7351,4736,14,1,f +7351,6126a,41,1,f +7351,6141,71,2,f +7351,6141,71,1,t +7354,10048,308,1,f +7354,10052,71,1,f +7354,10509pr0001,70,1,f +7354,2397,72,1,f +7354,2489,70,1,f +7354,3004,70,1,f +7354,3005,19,8,f +7354,30157,70,1,f +7354,3020,19,4,f +7354,3023,70,1,f +7354,3023,28,6,f +7354,30374,71,1,f +7354,30374,14,1,f +7354,3062b,2,1,f +7354,3069b,308,1,f +7354,3069bpr0055,15,1,f +7354,33009,70,1,f +7354,33172,25,1,f +7354,33183,10,1,t +7354,33183,10,1,f +7354,33211,70,2,f +7354,3460,19,2,f +7354,3626cpr0972,78,1,f +7354,3626cpr0973,78,1,f +7354,3710,19,1,f +7354,3794a,70,1,f +7354,3795,28,3,f +7354,3832,70,1,f +7354,4081b,19,4,f +7354,41879a,308,1,f +7354,4865b,28,3,f +7354,50231,72,1,f +7354,51739,28,1,f +7354,59900,15,1,f +7354,59900,2,1,f +7354,60478,71,6,f +7354,6131,72,1,f +7354,6141,19,4,f +7354,6141,19,1,t +7354,63965,70,1,f +7354,87580,70,2,f +7354,92280,71,6,f +7354,92590,28,1,f +7354,970c00,72,1,f +7354,973pr2053c01,72,1,f +7354,973pr2054c01,378,1,f +7354,98136,4,1,f +7355,10201,0,1,f +7355,11477,308,3,f +7355,14418,71,2,f +7355,14419,72,2,f +7355,15068,308,2,f +7355,15573,70,1,f +7355,16770,297,8,f +7355,2736,71,2,f +7355,3020,70,3,f +7355,30350a,70,1,f +7355,3070bpr0147,71,1,f +7355,3070bpr0147,71,1,t +7355,32474pr1001,15,2,f +7355,33291,10,2,f +7355,33291,10,1,t +7355,3710,70,2,f +7355,48336,297,2,f +7355,60478,0,3,f +7355,60478,72,1,f +7355,60897,0,2,f +7355,6141,179,6,f +7355,6141,179,1,t +7355,63868,308,1,f +7355,85984,70,1,f +7355,85984,4,1,f +7355,87079,70,1,f +7355,92692,0,2,f +7355,98138,297,6,f +7355,98138,297,1,t +7355,99207,0,4,f +7356,2446,15,1,f +7356,2452,14,2,f +7356,2655,14,1,f +7356,2780,0,2,f +7356,3068b,14,1,f +7356,3068bp11,15,2,f +7356,3068bp12,15,1,f +7356,3068bp80,15,1,f +7356,3464,4,1,f +7356,3749,7,2,f +7356,3838,15,1,f +7356,4274,7,3,f +7356,4276b,14,4,f +7356,4319,14,2,f +7356,4531,15,2,f +7356,55295,8,1,f +7356,55296,8,1,f +7356,55297,8,1,f +7356,55298,8,1,f +7356,55299,8,1,f +7356,55300,8,1,f +7356,75535,0,2,f +7356,769,334,1,f +7357,1772stk01,9999,1,t +7357,2348b,41,1,f +7357,2349a,15,1,f +7357,2412a,7,1,f +7357,298c02,15,1,f +7357,3004,4,2,f +7357,3010,15,6,f +7357,3010,4,1,f +7357,3020,4,1,f +7357,3021,0,1,f +7357,3022,15,1,f +7357,3024,47,2,f +7357,3032,15,4,f +7357,3068b,4,4,f +7357,3149c01,4,1,f +7357,3324c01,0,1,f +7357,3626apr0001,14,1,f +7357,3641,0,4,f +7357,3666,15,4,f +7357,3710,4,1,f +7357,3821,4,1,f +7357,3822,4,1,f +7357,3823,41,1,f +7357,3829c01,15,1,f +7357,3853,15,2,f +7357,3856,15,4,f +7357,3899,47,2,f +7357,4070,15,2,f +7357,4070,4,2,f +7357,4211,4,1,f +7357,4214,15,1,f +7357,4215a,15,4,f +7357,4345b,14,4,f +7357,4346,14,4,f +7357,4485,1,1,f +7357,4600,0,2,f +7357,4624,15,4,f +7357,6141,46,2,f +7357,970c00,1,1,f +7357,973p26c01,1,1,f +7359,2508,14,1,f +7359,3149c01,4,1,f +7359,3324c01,4,1,f +7359,3679,7,3,f +7359,3680,15,1,f +7359,3680,0,2,f +7359,3730,4,2,f +7359,3730,0,2,f +7359,3731,0,2,f +7359,3731,4,1,f +7359,4275b,0,2,f +7359,4276b,0,2,f +7361,3001,4,6,f +7361,3001,1,10,f +7361,3001,14,8,f +7361,3002,14,2,f +7361,3003,2,3,f +7361,3003,4,5,f +7361,3003,14,5,f +7361,3003,1,5,f +7361,3004,4,6,f +7361,3004,2,4,f +7361,3004,1,4,f +7361,3004,14,8,f +7361,3005,1,6,f +7361,3005,4,6,f +7361,3005,2,4,f +7361,3005pe1,14,2,f +7361,3020,0,2,f +7361,3021,4,2,f +7361,3022,7,2,f +7361,3022,15,4,f +7361,3039,14,2,f +7361,3040b,14,2,f +7361,3665,14,2,f +7365,45463,45,4,f +7365,45463,41,6,f +7365,45463,52,4,f +7365,45466,45,4,f +7365,45469,45,2,f +7365,47912,236,1,f +7365,48794,22,1,f +7365,clikits006pb02,45,2,f +7365,clikits015,52,4,f +7365,clikits015,0,6,f +7365,clikits015,15,4,f +7365,clikits016pb04,45,2,f +7365,clikits021,52,1,f +7365,clikits025,52,18,f +7365,clikits037,5,2,f +7365,clikits078,22,1,f +7365,clikits175,22,1,f +7365,clikits200,129,1,f +7365,clikits200,15,2,f +7365,clikits201,129,3,f +7365,clikits201,52,2,f +7365,clikits201,15,1,f +7366,3626bpr0282,14,1,f +7366,4485,4,1,f +7366,4589,46,1,t +7366,4589,46,2,f +7366,4599a,71,2,f +7366,4599a,71,1,t +7366,970c00,1,1,f +7366,973pr1240c01,1,1,f +7369,2496,15,2,f +7369,3626bpr0774,14,1,f +7369,42511pr0001,0,1,f +7369,88646,0,1,f +7369,90541pr0001,72,1,f +7369,970c00,28,1,f +7369,973pr1761c01,71,1,f +7370,22239,89,1,f +7370,3004,5,1,f +7370,3005,5,1,f +7370,3010,13,1,f +7370,3957a,14,1,f +7370,4237,5,1,f +7370,4238,13,1,f +7370,4495b,5,1,f +7370,45,383,2,f +7370,6124,34,1,f +7370,6176,5,1,f +7371,2412b,0,2,f +7371,2412b,15,2,f +7371,2412b,14,2,f +7371,2412b,7,11,f +7371,2419,15,1,f +7371,2419,7,1,f +7371,2420,0,16,f +7371,2420,7,17,f +7371,2431,0,2,f +7371,2431,7,3,f +7371,2431,14,1,f +7371,2444,0,4,f +7371,2450,0,2,f +7371,2536,7,2,f +7371,2711,1,8,f +7371,2712,7,1,f +7371,2719,7,2,f +7371,2730,7,6,f +7371,2730,0,11,f +7371,2736,7,4,f +7371,2738,1,8,f +7371,2741,7,1,f +7371,2743,15,4,f +7371,2744,0,2,f +7371,2780,0,1,t +7371,2780,0,88,f +7371,2825,7,10,f +7371,2825,0,2,f +7371,2850a,7,8,f +7371,2851,8,8,f +7371,2852,7,8,f +7371,2853,7,2,f +7371,2854,8,3,f +7371,2905,1,8,f +7371,2907,7,4,f +7371,2909c03,8,8,f +7371,2997,0,4,f +7371,2998,15,4,f +7371,2999,7,4,f +7371,3002,0,4,f +7371,3005,15,1,f +7371,3005,0,8,f +7371,3005,7,5,f +7371,3020,0,2,f +7371,3021,0,20,f +7371,3022,0,22,f +7371,3022,4,1,f +7371,3022,15,2,f +7371,3022,7,1,f +7371,3023,7,20,f +7371,3023,15,6,f +7371,3023,47,2,f +7371,3023,14,4,f +7371,3023,0,23,f +7371,3024,36,8,f +7371,3024,7,7,f +7371,3024,0,6,f +7371,3031,15,2,f +7371,3032,7,2,f +7371,3032,15,2,f +7371,3037,15,1,f +7371,3039,15,2,f +7371,3040b,7,8,f +7371,3040b,0,6,f +7371,3040b,14,2,f +7371,3041pb001,0,2,f +7371,3043,7,2,f +7371,3048c,7,8,f +7371,3068b,0,5,f +7371,3069b,0,2,f +7371,32005a,8,4,f +7371,3297,15,3,f +7371,3460,14,6,f +7371,3460,0,15,f +7371,3460,15,3,f +7371,3460,7,3,f +7371,3482,0,1,f +7371,3483,0,1,f +7371,3483,0,1,t +7371,3622,15,1,f +7371,3622,0,6,f +7371,3622,7,3,f +7371,3623,0,22,f +7371,3623,7,8,f +7371,3623,15,6,f +7371,3647,7,1,t +7371,3647,7,7,f +7371,3648a,7,5,f +7371,3650c,7,2,f +7371,3651,7,3,f +7371,3660,0,4,f +7371,3660,15,1,f +7371,3665,7,4,f +7371,3665,0,8,f +7371,3666,0,33,f +7371,3666,7,9,f +7371,3666,14,4,f +7371,3666,15,2,f +7371,3673,7,1,t +7371,3673,7,6,f +7371,3676,0,2,f +7371,3700,7,20,f +7371,3700,15,7,f +7371,3700,0,15,f +7371,3701,0,21,f +7371,3701,7,7,f +7371,3701,15,2,f +7371,3701,14,3,f +7371,3702,0,23,f +7371,3702,7,11,f +7371,3703,15,1,f +7371,3703,7,6,f +7371,3703,0,6,f +7371,3704,0,11,f +7371,3705,0,14,f +7371,3706,0,25,f +7371,3707,0,2,f +7371,3708,0,5,f +7371,3709,0,2,f +7371,3709,7,3,f +7371,3710,0,16,f +7371,3710,14,2,f +7371,3710,15,8,f +7371,3710,7,6,f +7371,3711a,0,21,f +7371,3711a,0,1,t +7371,3713,7,19,f +7371,3713,7,1,t +7371,3737,0,4,f +7371,3738,7,2,f +7371,3738,0,12,f +7371,3743,7,4,f +7371,3747b,0,2,f +7371,3749,7,14,f +7371,3794a,0,2,f +7371,3795,0,1,f +7371,3795,15,4,f +7371,3832,0,3,f +7371,3894,0,5,f +7371,3895,0,18,f +7371,3933,0,5,f +7371,3934,0,5,f +7371,4019,7,14,f +7371,4070,0,6,f +7371,4143,7,18,f +7371,4162,0,2,f +7371,4175,14,2,f +7371,4262,0,3,f +7371,4263,0,4,f +7371,4265b,7,1,t +7371,4265b,7,62,f +7371,4273b,7,1,f +7371,4274,7,1,t +7371,4274,7,20,f +7371,4275b,15,4,f +7371,4275b,0,1,f +7371,4276b,15,4,f +7371,4276b,0,1,f +7371,4282,0,2,f +7371,4287,14,2,f +7371,4287,15,2,f +7371,4287,0,8,f +7371,4477,0,18,f +7371,4477,14,4,f +7371,4477,7,6,f +7371,4477,15,2,f +7371,4504,0,4,f +7371,4519,0,18,f +7371,4589,1,1,f +7371,4730,0,2,f +7371,6536,7,4,f +7371,6538a,7,18,f +7371,6539,7,2,f +7371,6540b,15,4,f +7371,6541,0,18,f +7371,6541,15,2,f +7371,6541,7,6,f +7371,6541,14,2,f +7371,6542a,8,4,f +7371,6543,15,1,f +7371,6549,0,1,f +7371,6553,7,16,f +7371,6558,0,20,f +7371,6573,8,3,f +7371,6628,0,4,f +7371,73983,14,2,f +7371,73983,0,52,f +7371,8880stk01,9999,1,t +7371,9244,7,6,f +7373,2413,0,1,f +7373,2432,14,1,f +7373,2446,15,1,f +7373,2447,41,1,f +7373,2877,7,1,f +7373,3005,2,2,f +7373,3020,14,1,f +7373,3020,4,1,f +7373,3022,0,1,f +7373,3034,4,1,f +7373,3034,14,1,f +7373,3048c,0,1,f +7373,3139,0,2,f +7373,3298p76,2,1,f +7373,3626bp04,14,1,f +7373,3829c01,14,1,f +7373,4070,7,2,f +7373,4286,2,2,f +7373,4488,7,2,f +7373,4624,14,2,f +7373,6014a,14,2,f +7373,6015,0,2,f +7373,6019,0,2,f +7373,6126a,57,2,f +7373,6157,0,1,f +7373,6636,4,1,f +7373,970c00,4,1,f +7373,973px36c01,4,1,f +7374,2420,2,6,f +7374,3021,2,1,f +7374,3022,2,3,f +7374,3023,4,1,f +7374,3034,2,1,f +7374,3039,2,1,f +7374,3794b,2,4,f +7374,4070,2,2,f +7374,4740,15,2,f +7374,54200,27,4,f +7374,6141,0,1,t +7374,6141,0,4,f +7374,73983,2,4,f +7375,2432,15,1,f +7375,3020,0,1,f +7375,3023,0,2,f +7375,3023,0,1,t +7375,3039,4,1,f +7375,4070,15,2,f +7375,4070,15,1,t +7375,4589,34,2,f +7375,4589,34,1,t +7375,4859,4,2,f +7376,2335,15,4,f +7376,2335p30,15,1,f +7376,2452,0,1,f +7376,2489,6,4,f +7376,2530,8,2,f +7376,2543,1,1,f +7376,2543,4,1,f +7376,2544,6,1,f +7376,2547,8,1,f +7376,2548,8,1,f +7376,2561,6,1,f +7376,2562,6,2,f +7376,3023,0,1,f +7376,3029,0,1,f +7376,3068bp30,15,1,f +7376,3460,0,1,f +7376,3626apb03,14,1,f +7376,3626apb04,14,2,f +7376,3702,0,2,f +7376,3708,0,2,f +7376,3794a,0,2,f +7376,3849,6,2,f +7376,3941,0,6,f +7376,4032a,6,4,f +7376,4085b,0,1,f +7376,4276b,0,1,f +7376,4733,0,1,f +7376,970c00,7,1,f +7376,970c00,15,2,f +7376,973p31c01,14,1,f +7376,973p32c01,14,1,f +7376,973p34c01,1,1,f +7377,2470,6,2,f +7377,3020,0,1,f +7377,3069b,0,1,f +7377,3626bpr0001,14,1,f +7377,3795,0,1,f +7377,3839b,0,1,f +7377,3846p4h,7,1,f +7377,3847,8,1,f +7377,3896,8,1,f +7377,4085c,0,3,f +7377,4495b,14,1,f +7377,4497,6,1,f +7377,4600,7,1,f +7377,4738a,6,1,f +7377,4739a,6,1,f +7377,6141,36,2,f +7377,6141,46,2,f +7377,970c00,1,1,f +7377,973px138c01,4,1,f +7378,48379c01,19,1,f +7378,48394,484,1,f +7378,48394base,71,1,f +7378,mcsport7,8,1,f +7378,paddle,135,1,f +7379,2412b,7,2,f +7379,2412b,0,4,f +7379,2419,0,2,f +7379,2419,7,1,f +7379,2420,1,2,f +7379,2431,7,1,f +7379,2433,0,2,f +7379,2444,0,6,f +7379,2446,14,1,f +7379,2446p51,14,1,f +7379,2447,33,2,f +7379,2452,0,1,f +7379,2456,7,1,f +7379,2507,33,2,f +7379,2515,0,2,f +7379,2569,42,4,f +7379,2593,0,2,f +7379,3001,0,1,f +7379,3003,1,1,f +7379,3004,0,2,f +7379,3004,7,2,f +7379,3010,0,3,f +7379,3010,7,1,f +7379,3020,7,2,f +7379,3020,0,3,f +7379,3020,1,1,f +7379,3021,7,2,f +7379,3022,0,2,f +7379,3022,7,2,f +7379,3022,1,1,f +7379,3023,1,2,f +7379,3023,0,2,f +7379,3023,7,1,f +7379,3034,0,1,f +7379,3035,0,1,f +7379,3039,7,2,f +7379,3039,0,1,f +7379,3040b,7,2,f +7379,3068b,0,1,f +7379,3068bp51,0,2,f +7379,3070b,33,2,f +7379,3460,0,2,f +7379,3623,1,2,f +7379,3623,0,4,f +7379,3626bp68,14,1,f +7379,3626bp69,14,1,f +7379,3665,1,2,f +7379,3673,7,6,f +7379,3700,1,1,f +7379,3710,0,1,f +7379,3747a,0,5,f +7379,3794a,0,2,f +7379,3794a,7,2,f +7379,3795,7,1,f +7379,3832,0,1,f +7379,3832,7,1,f +7379,3838,1,2,f +7379,3937,0,1,f +7379,3938,7,1,f +7379,3941,7,1,f +7379,3943b,0,1,f +7379,3957a,0,2,f +7379,3960,0,1,f +7379,3960,33,2,f +7379,4032a,7,1,f +7379,4162,7,2,f +7379,4229,0,2,f +7379,4275b,0,2,f +7379,4276b,0,2,f +7379,4285b,0,1,f +7379,4286,7,2,f +7379,4286,0,2,f +7379,4287,1,2,f +7379,4315,0,2,f +7379,4531,0,1,f +7379,4531,7,2,f +7379,4589,42,6,f +7379,4591,0,1,f +7379,4732,1,1,f +7379,4740,42,4,f +7379,4856a,0,1,f +7379,4859,0,2,f +7379,4859,7,1,f +7379,4865a,7,1,f +7379,6019,0,4,f +7379,6104,7,1,f +7379,6112,0,1,f +7379,6112,1,2,f +7379,6118,0,2,f +7379,6141,42,10,f +7379,6141,33,2,f +7379,970x024,7,2,f +7379,973p64c01,8,2,f +7380,30109,13,1,f +7380,3899,14,1,f +7380,4342,18,1,f +7380,6176,5,1,f +7380,6206,15,1,f +7380,6251,0,1,f +7380,6256,14,1,f +7380,71861,383,1,f +7381,3011,191,1,f +7381,3011,28,3,f +7381,3011,484,3,f +7381,31164,2,1,f +7381,3437,19,3,f +7381,3437,484,3,f +7381,3437,191,2,f +7381,3437,0,1,f +7381,4066,191,1,f +7381,4066,484,2,f +7381,4199,28,1,f +7381,4543,2,2,f +7381,4543,14,1,f +7381,4550,4,1,f +7381,64665,0,1,f +7381,64668,0,1,f +7381,6510,2,2,f +7381,73355,0,1,f +7381,87084,10,2,f +7381,89616,14,1,f +7381,89617,15,1,f +7381,89618,15,1,f +7381,89942,15,1,f +7381,89947,4,1,f +7381,92453,4,2,f +7382,11609,191,1,t +7382,11609,191,1,f +7382,3020,2,1,f +7382,3039,2,2,f +7382,3040b,2,2,f +7382,3900,15,1,f +7382,3941,70,1,f +7382,3942c,2,1,f +7382,4032a,70,2,f +7382,4286,2,2,f +7382,60474,15,1,f +7382,6141,45,4,f +7382,6141,45,1,t +7386,2825,7,6,f +7386,2905,7,2,f +7386,6536,7,2,f +7386,6575,7,2,f +7388,2340,0,2,f +7388,2412b,71,4,f +7388,2412b,15,5,f +7388,2419,15,1,f +7388,2420,72,8,f +7388,2431,15,3,f +7388,2431,2,3,f +7388,2431,72,7,f +7388,2444,71,8,f +7388,2456,15,6,f +7388,2486,14,2,f +7388,2508,0,2,f +7388,2540,72,3,f +7388,2654,71,1,f +7388,2780,0,34,f +7388,2780,0,3,t +7388,298c02,71,1,t +7388,298c02,71,1,f +7388,3001,4,4,f +7388,3003,15,2,f +7388,3003,19,2,f +7388,3003,70,2,f +7388,3004,71,3,f +7388,3004,15,11,f +7388,3008,15,10,f +7388,3008,72,2,f +7388,3009,0,3,f +7388,3010,15,8,f +7388,3020,2,2,f +7388,3020,71,1,f +7388,3020,14,3,f +7388,3020,72,1,f +7388,3022,4,3,f +7388,3022,72,2,f +7388,3023,2,10,f +7388,3023,71,2,f +7388,30236,72,1,f +7388,3024,15,2,f +7388,3032,19,1,f +7388,3032,71,1,f +7388,3033,0,1,f +7388,30332,0,4,f +7388,3034,71,9,f +7388,3034,2,4,f +7388,3035,71,1,f +7388,30355,71,1,f +7388,30356,71,1,f +7388,3036,72,3,f +7388,3039pr0002,15,1,f +7388,3039pr0005,15,1,f +7388,3039pr0013,15,1,f +7388,3040b,14,2,f +7388,3068b,72,2,f +7388,3068b,15,2,f +7388,3068b,19,2,f +7388,3068b,70,2,f +7388,3069b,15,6,f +7388,3139,0,14,f +7388,32028,71,2,f +7388,32064b,72,1,f +7388,32316,72,2,f +7388,32529,71,2,f +7388,32532,14,2,f +7388,32532,71,1,f +7388,3460,14,2,f +7388,3460,71,1,f +7388,3460,2,7,f +7388,3460,15,2,f +7388,3623,15,10,f +7388,3624,1,1,f +7388,3626bpr0314,14,1,f +7388,3626bpr0325,14,1,f +7388,3626bpr0389,14,1,f +7388,3660,15,5,f +7388,3665,72,4,f +7388,3666,14,3,f +7388,3673,71,1,t +7388,3673,71,8,f +7388,3709,1,1,f +7388,3710,14,1,f +7388,3710,15,2,f +7388,3710,2,5,f +7388,3710,19,2,f +7388,3710,71,1,f +7388,3730,71,2,f +7388,3794a,14,2,f +7388,3794a,15,4,f +7388,3795,4,2,f +7388,3829c01,71,1,f +7388,3832,1,1,f +7388,3899,4,1,f +7388,3957a,71,1,f +7388,3962b,0,1,f +7388,4079,70,3,f +7388,4162,72,10,f +7388,4162,14,2,f +7388,41747,72,2,f +7388,41748,72,2,f +7388,41769,15,4,f +7388,41770,15,4,f +7388,42610,71,8,f +7388,43337,4,1,f +7388,43712,2,4,f +7388,4519,71,1,f +7388,45677,14,1,f +7388,4589,182,1,f +7388,4624,15,14,f +7388,48336,71,1,f +7388,4870,71,6,f +7388,48729a,0,2,f +7388,50745,72,4,f +7388,50950,72,10,f +7388,51011,0,8,f +7388,52038,72,2,f +7388,54090,72,1,f +7388,54091,72,3,f +7388,54092c01,2,1,f +7388,54093,71,1,f +7388,54094,15,1,f +7388,54095,2,2,f +7388,54701c02,2,1,f +7388,6014b,71,4,f +7388,6015,0,4,f +7388,6020,71,1,f +7388,60470a,0,1,f +7388,6081,71,4,f +7388,6091,15,8,f +7388,6141,34,1,f +7388,6141,36,3,f +7388,6141,47,2,f +7388,6141,182,1,t +7388,6141,47,1,t +7388,6141,182,1,f +7388,6141,34,1,t +7388,6141,36,2,t +7388,61483,71,1,f +7388,61487,2,8,f +7388,6157,0,2,f +7388,61780,72,2,f +7388,6232,72,4,f +7388,6636,71,2,f +7388,86035,1,2,f +7388,970c00,1,2,f +7388,970c00,72,1,f +7388,973pr1182c01,25,2,f +7388,973pr1240c01,1,1,f +7389,3707,0,3,f +7389,3708,0,3,f +7389,3737,0,3,f +7391,8887-1,9999,1,f +7396,132a,0,4,f +7396,3035,15,1,f +7396,650,79,1,f +7396,7039,4,4,f +7396,7049b,15,2,f +7397,2357,72,2,f +7397,2412b,72,1,f +7397,2412b,4,4,f +7397,2445,71,2,f +7397,2449,72,4,f +7397,2540,4,2,f +7397,2540,72,1,f +7397,2555,72,6,f +7397,2654,47,4,f +7397,2730,71,2,f +7397,2780,0,23,f +7397,2780,0,3,t +7397,298c02,15,3,f +7397,298c02,15,2,t +7397,30000,72,2,f +7397,3003,72,3,f +7397,30031,71,1,f +7397,3004,72,14,f +7397,3005,4,4,f +7397,30088,0,4,f +7397,30106,71,3,f +7397,3020,72,2,f +7397,3021,19,2,f +7397,3022,72,5,f +7397,3022,4,3,f +7397,3022,0,2,f +7397,3022,27,1,f +7397,3023,4,5,f +7397,3023,72,3,f +7397,3023,71,6,f +7397,3032,71,2,f +7397,3036,71,2,f +7397,30367b,27,4,f +7397,30374,0,4,f +7397,30377,0,4,f +7397,30377,0,1,t +7397,30386,14,1,f +7397,30387,14,1,f +7397,30395,72,1,f +7397,30396,0,1,f +7397,3039pr0005,15,1,f +7397,3039pr0013,15,1,f +7397,3040b,71,6,f +7397,30565,28,2,f +7397,30602,4,2,f +7397,3062b,4,10,f +7397,30663,0,4,f +7397,3068b,14,2,f +7397,3068bpr0167,19,1,f +7397,3069b,4,3,f +7397,3069b,72,2,f +7397,3069bpr0030,15,1,f +7397,3176,0,2,f +7397,32000,4,2,f +7397,32013,72,4,f +7397,32018,72,2,f +7397,32039,71,4,f +7397,32062,4,4,f +7397,32324,71,3,f +7397,3245b,72,4,f +7397,32524,4,4,f +7397,32555,0,1,f +7397,32556,19,6,f +7397,3460,71,4,f +7397,3622,72,2,f +7397,3623,4,4,f +7397,3626bpr0630,71,1,f +7397,3626bpr0640,14,1,f +7397,3626bpr0641,14,1,f +7397,3666,72,4,f +7397,3673,71,1,f +7397,3673,71,1,t +7397,3679,71,1,f +7397,3680,0,1,f +7397,3700,4,2,f +7397,3701,0,2,f +7397,3702,0,2,f +7397,3709,4,5,f +7397,3710,0,2,f +7397,3710,4,2,f +7397,3738,71,2,f +7397,3794b,72,4,f +7397,3794b,71,1,f +7397,3795,72,1,f +7397,3830,71,4,f +7397,3831,71,4,f +7397,3832,71,2,f +7397,3832,72,2,f +7397,3895,72,4,f +7397,3895,71,2,f +7397,3899,14,1,f +7397,3937,72,4,f +7397,3941,4,16,f +7397,3941,71,2,f +7397,3941,0,4,f +7397,4032a,72,6,f +7397,4079,4,3,f +7397,4081b,71,6,f +7397,4085c,72,1,f +7397,4151b,71,1,f +7397,41531,4,4,f +7397,41532,0,1,f +7397,4274,1,4,f +7397,4274,1,1,t +7397,4286,72,2,f +7397,43093,1,8,f +7397,44294,71,4,f +7397,44301a,72,2,f +7397,44302a,72,2,f +7397,44568,71,1,f +7397,44676,0,2,f +7397,44728,0,1,f +7397,4477,4,2,f +7397,4477,72,1,f +7397,4479,0,1,f +7397,4497,135,2,f +7397,4497,135,1,t +7397,4599b,71,4,f +7397,4623,72,2,f +7397,46667,0,4,f +7397,48336,4,2,f +7397,4865a,4,6,f +7397,50747,35,1,f +7397,53989,148,4,f +7397,54200,34,1,f +7397,54200,34,1,t +7397,54200,36,1,f +7397,54200,36,1,t +7397,58176,35,2,f +7397,58827,72,1,f +7397,59275,27,4,f +7397,6005,4,2,f +7397,6019,71,2,f +7397,60470a,4,2,f +7397,60474,72,2,f +7397,60479,71,2,f +7397,6063,72,1,f +7397,6087,0,2,f +7397,6112,72,2,f +7397,61184,71,2,f +7397,61409,72,4,f +7397,61409,4,2,f +7397,6141,36,1,t +7397,6141,34,1,t +7397,6141,34,1,f +7397,6141,36,1,f +7397,61678,4,8,f +7397,6215,71,8,f +7397,6232,71,6,f +7397,62531,4,2,f +7397,6259,72,2,f +7397,64393,4,1,f +7397,64648,135,1,f +7397,64681,4,1,f +7397,64799,4,6,f +7397,6541,72,6,f +7397,6558,1,2,f +7397,6587,28,1,f +7397,78c12,179,2,f +7397,85080,4,1,f +7397,86500,35,6,f +7397,87079,4,2,f +7397,87580,72,2,f +7397,87748pr0005,46,1,f +7397,87754,72,2,f +7397,87758pr01,272,1,f +7397,89159,35,2,f +7397,92290,297,1,f +7397,970c00,272,1,f +7397,970c00pr0145,72,2,f +7397,973pr1555c01,272,1,f +7397,973pr1557c01,72,2,f +7398,11127,41,2,f +7398,2450,308,2,f +7398,30357,72,1,f +7398,3710,27,1,f +7398,4460b,72,1,f +7398,4589,71,3,f +7398,4740pr0003,35,3,f +7398,53451,27,3,f +7398,54200,71,2,f +7398,55236,27,3,f +7398,92280,0,1,f +7398,92280,71,2,f +7398,93606,72,1,f +7399,10247,0,2,f +7399,11153,71,8,f +7399,11211,71,2,f +7399,11212,71,4,f +7399,11213,71,2,f +7399,11214,72,4,f +7399,11477,15,2,f +7399,11477,0,4,f +7399,11833,71,5,f +7399,12825,72,2,f +7399,12825,71,2,f +7399,14718,71,4,f +7399,14769,72,2,f +7399,15068,72,2,f +7399,15068,15,3,f +7399,15303,35,3,f +7399,15400,72,2,f +7399,15535,72,4,f +7399,15571,0,2,f +7399,15573,71,6,f +7399,17535pr0001,30,1,f +7399,17630,0,1,f +7399,2412b,0,2,f +7399,2412b,71,12,f +7399,2412b,72,4,f +7399,2420,72,6,f +7399,2431,71,1,f +7399,2431,4,1,f +7399,2431,14,2,f +7399,2432,70,2,f +7399,2450,72,4,f +7399,2458,71,6,f +7399,2458,72,4,f +7399,2476a,15,4,f +7399,2540,15,2,f +7399,2653,71,5,f +7399,2654,57,4,f +7399,2654,72,16,f +7399,2730,71,2,f +7399,2780,0,32,f +7399,2780,0,4,t +7399,2817,0,1,f +7399,2817,71,4,f +7399,2823,0,4,f +7399,2877,72,11,f +7399,298c02,71,2,f +7399,298c02,71,1,t +7399,30000,1,2,f +7399,3001,71,2,f +7399,3003,71,2,f +7399,3004,15,4,f +7399,3005,72,4,f +7399,3005,15,6,f +7399,3005,71,8,f +7399,3008,72,4,f +7399,3009,71,5,f +7399,3010,72,7,f +7399,30165,0,4,f +7399,3020,15,8,f +7399,3020,72,10,f +7399,3021,70,1,f +7399,3021,71,6,f +7399,3021,0,4,f +7399,3022,72,6,f +7399,3022,19,2,f +7399,3023,72,9,f +7399,3023,71,9,f +7399,3023,15,7,f +7399,3023,36,2,f +7399,30236,72,2,f +7399,30237b,15,1,f +7399,3024,41,1,f +7399,3024,41,1,t +7399,3024,47,1,t +7399,3024,15,1,t +7399,3024,4,4,f +7399,3024,72,6,f +7399,3024,15,6,f +7399,3024,72,2,t +7399,3024,47,2,f +7399,3024,4,1,t +7399,3024,71,1,t +7399,3024,71,4,f +7399,3031,15,3,f +7399,3031,72,2,f +7399,3032,71,4,f +7399,3034,4,1,f +7399,3034,72,2,f +7399,3035,72,5,f +7399,3036,72,1,f +7399,30367c,0,2,f +7399,30374,71,1,f +7399,30374,41,1,f +7399,30374,36,2,f +7399,3039,15,2,f +7399,3039,71,6,f +7399,30408pr0008,15,1,f +7399,3040b,71,2,f +7399,3040b,15,2,f +7399,3040b,72,2,f +7399,30414,71,6,f +7399,30503,15,4,f +7399,30504,15,4,f +7399,3068b,71,17,f +7399,3069b,4,2,f +7399,3069b,15,6,f +7399,3069b,378,6,f +7399,3069b,191,2,f +7399,3069b,72,4,f +7399,3069bpr0070,0,2,f +7399,3070b,72,4,f +7399,3070b,72,1,t +7399,3176,71,6,f +7399,32000,71,1,f +7399,32009,71,4,f +7399,32018,71,8,f +7399,32028,15,8,f +7399,32054,0,6,f +7399,32062,4,4,f +7399,32064b,72,2,f +7399,32123b,14,2,f +7399,32123b,14,1,t +7399,32278,72,2,f +7399,32523,4,1,f +7399,32555,0,2,f +7399,3298,72,2,f +7399,3300,15,2,f +7399,3460,15,4,f +7399,3622,15,1,f +7399,3623,15,5,f +7399,3623,4,2,f +7399,3626cpb1111,92,1,f +7399,3626cpr1149,78,1,f +7399,3626cpr1520,27,1,f +7399,3660,72,2,f +7399,3665,15,2,f +7399,3665,0,2,f +7399,3665,72,2,f +7399,3666,4,4,f +7399,3666,72,6,f +7399,3666,15,7,f +7399,3701,71,3,f +7399,3702,0,6,f +7399,3705,0,2,f +7399,3709,4,10,f +7399,3710,71,9,f +7399,3710,0,2,f +7399,3710,15,2,f +7399,3713,4,5,f +7399,3713,4,1,t +7399,3747b,71,4,f +7399,3795,71,2,f +7399,3894,72,2,f +7399,3941,71,2,f +7399,3941,182,4,f +7399,3942c,0,2,f +7399,4032a,72,8,f +7399,4032a,0,4,f +7399,4079,70,1,f +7399,4162,71,2,f +7399,4162,15,2,f +7399,41677,0,2,f +7399,41767,15,1,f +7399,41768,15,1,f +7399,41769,15,3,f +7399,41769,0,1,f +7399,41770,0,1,f +7399,41770,15,3,f +7399,42610,71,2,f +7399,4274,1,3,t +7399,4274,1,6,f +7399,4286,15,1,f +7399,4287,71,2,f +7399,43093,1,2,f +7399,43722,71,1,f +7399,43722,72,1,f +7399,43723,72,1,f +7399,43723,71,1,f +7399,44294,71,2,f +7399,44568,71,1,f +7399,44570,15,1,f +7399,44728,71,2,f +7399,4477,72,2,f +7399,4477,71,2,f +7399,45410,15,2,f +7399,45590,0,1,f +7399,4598,0,2,f +7399,4697b,71,1,t +7399,4697b,71,1,f +7399,47397,15,1,f +7399,47398,15,1,f +7399,4742,0,4,f +7399,47457,71,16,f +7399,47457,72,2,f +7399,48336,71,1,f +7399,4865b,15,2,f +7399,4865b,0,2,f +7399,4871,71,2,f +7399,48729b,0,2,t +7399,48729b,0,4,f +7399,50304,72,2,f +7399,50305,72,2,f +7399,50747pr0009,40,1,f +7399,51739,15,3,f +7399,54200,15,4,f +7399,54200,71,2,f +7399,54200,4,1,t +7399,54200,4,2,f +7399,54200,72,2,f +7399,54200,71,1,t +7399,54200,15,1,t +7399,54200,72,1,t +7399,54383,71,2,f +7399,54383,15,4,f +7399,54384,15,4,f +7399,54384,71,2,f +7399,57899,0,1,f +7399,58247,0,3,f +7399,59426,72,1,f +7399,59443,4,1,f +7399,60219,71,1,f +7399,60475b,15,2,f +7399,60477,72,4,f +7399,60477,15,4,f +7399,60478,15,2,f +7399,60478,72,8,f +7399,60479,15,3,f +7399,60481,15,8,f +7399,60594,15,1,f +7399,60614,72,2,f +7399,6091,15,4,f +7399,6106,71,4,f +7399,6111,15,2,f +7399,6141,36,2,t +7399,6141,36,14,f +7399,6141,57,1,t +7399,6141,57,4,f +7399,6141,71,2,t +7399,6141,71,4,f +7399,61780,72,1,f +7399,6179,72,3,f +7399,6180,15,4,f +7399,6191,15,2,f +7399,6232,72,2,f +7399,62462,71,4,f +7399,63864,15,8,f +7399,63868,71,10,f +7399,64567,80,1,f +7399,64567,0,2,t +7399,64567,80,1,t +7399,64567,0,5,f +7399,6541,0,8,f +7399,6558,1,5,f +7399,6587,28,5,f +7399,6636,15,2,f +7399,6636,72,2,f +7399,72454,72,2,f +7399,76766,0,4,f +7399,85080,15,2,f +7399,85941,15,1,f +7399,85984,72,8,f +7399,85984,71,9,f +7399,86500,40,1,f +7399,87079,72,4,f +7399,87079,71,3,f +7399,87079,378,4,f +7399,87081,72,1,f +7399,87081,0,4,f +7399,87083,72,1,f +7399,87571pr0003,27,1,f +7399,87580,72,1,f +7399,87926,15,2,f +7399,88072,4,1,f +7399,92099,72,1,f +7399,92107,72,1,f +7399,92279,40,1,f +7399,92280,15,2,f +7399,92582,15,2,f +7399,92738,0,1,f +7399,92947,0,2,f +7399,92950,71,3,f +7399,96874,25,1,t +7399,970c00pr0720,72,1,f +7399,970c00pr0731,191,1,f +7399,970c00pr0732,25,1,f +7399,970c00pr0735,15,1,f +7399,973pr2769c01,326,1,f +7399,973pr2791c01,191,1,f +7399,973pr2792c01,308,1,f +7399,973pr2795c01,15,1,f +7399,98138,46,8,f +7399,98138,179,2,f +7399,98138,46,3,t +7399,98138,179,1,t +7399,98286,71,4,f +7399,98287,71,2,f +7399,99207,0,2,f +7401,11399,72,1,f +7401,11477,15,6,f +7401,13731,15,2,f +7401,14769,19,2,f +7401,15068,15,4,f +7401,15207,320,4,f +7401,15303,35,3,f +7401,15400,72,2,f +7401,15461,0,1,f +7401,16957,72,1,f +7401,18108,84,1,f +7401,2412b,179,13,f +7401,2419,15,2,f +7401,2420,71,2,f +7401,2431,320,4,f +7401,2431,15,2,f +7401,2450,15,4,f +7401,2450,320,4,f +7401,2476,71,4,f +7401,2540,72,10,f +7401,2653,0,4,f +7401,2744,15,4,f +7401,2780,0,12,f +7401,2780,0,3,t +7401,2817,4,2,f +7401,2877,72,4,f +7401,3010,72,2,f +7401,3020,71,1,f +7401,3021,0,1,f +7401,3021,15,2,f +7401,3022,320,8,f +7401,3023,19,11,f +7401,3024,34,1,f +7401,3024,33,1,f +7401,3024,34,1,t +7401,3024,33,1,t +7401,3024,47,4,f +7401,3024,47,1,t +7401,3031,71,1,f +7401,3031,19,1,f +7401,3032,71,2,f +7401,3032,72,2,f +7401,3034,71,4,f +7401,3034,72,4,f +7401,30361pr1005,272,1,f +7401,30362,272,2,f +7401,30367cpr1005,179,1,f +7401,30374,41,1,f +7401,30374,35,1,f +7401,3038,15,2,f +7401,3039,70,2,f +7401,30408pr0006,15,1,f +7401,3040b,71,2,f +7401,3045,15,2,f +7401,30504,15,2,f +7401,3068b,70,4,f +7401,3068b,71,2,f +7401,3069b,320,6,f +7401,3069bpr0090,72,2,f +7401,32028,28,2,f +7401,32054,0,2,f +7401,32054,0,1,t +7401,32059,15,4,f +7401,32316,72,2,f +7401,3245c,15,2,f +7401,3298,0,3,f +7401,3456,72,1,f +7401,3460,320,6,f +7401,3460,0,4,f +7401,3460,15,8,f +7401,3622,70,1,f +7401,3623,320,8,f +7401,3626cpr1233,78,1,f +7401,3660,71,12,f +7401,3666,72,6,f +7401,3676,72,2,f +7401,3700,71,1,f +7401,3701,71,4,f +7401,3702,71,2,f +7401,3707,0,2,f +7401,3710,15,6,f +7401,3710,0,2,f +7401,3749,19,4,f +7401,3794b,70,4,f +7401,3795,15,2,f +7401,3795,72,1,f +7401,3832,71,4,f +7401,3894,72,4,f +7401,3941,41,2,f +7401,4032a,72,5,f +7401,40490,71,2,f +7401,41531,71,4,f +7401,4162,19,2,f +7401,41677,71,2,f +7401,41747,15,2,f +7401,41748,15,2,f +7401,41764,71,1,f +7401,41765,71,1,f +7401,41767,72,1,f +7401,41768,72,1,f +7401,41769,15,1,f +7401,41769,320,1,f +7401,41770,320,1,f +7401,41770,15,1,f +7401,42023,15,4,f +7401,42060,320,1,f +7401,42061,320,1,f +7401,43713,72,2,f +7401,43720,15,1,f +7401,43721,15,1,f +7401,44728,0,2,f +7401,4510,71,2,f +7401,47397,15,2,f +7401,47398,15,2,f +7401,47407,15,1,f +7401,47456,72,4,f +7401,47457,71,6,f +7401,50304,71,1,f +7401,50304,15,5,f +7401,50305,71,1,f +7401,50305,15,5,f +7401,50373,320,2,f +7401,51000,320,4,f +7401,54200,70,1,t +7401,54200,70,2,f +7401,54383,71,2,f +7401,54384,71,2,f +7401,59426,72,2,f +7401,59900,35,6,f +7401,60208,71,2,f +7401,60208,320,2,f +7401,60470b,0,4,f +7401,60476,0,2,f +7401,60478,72,8,f +7401,60483,72,2,f +7401,60484,71,4,f +7401,6106,71,4,f +7401,61409,72,12,f +7401,6141,179,7,f +7401,6141,57,12,f +7401,6141,179,1,t +7401,6141,182,2,t +7401,61485,0,1,f +7401,61780,72,2,f +7401,62462,71,4,f +7401,63965,72,6,f +7401,63965,72,3,t +7401,64567,15,1,f +7401,64567,15,1,t +7401,64567,80,1,f +7401,64567,80,1,t +7401,6558,1,15,f +7401,6636,320,2,f +7401,72454,72,1,f +7401,85984,72,2,f +7401,87081,72,1,f +7401,90194,15,2,f +7401,92279,40,2,f +7401,92280,0,4,f +7401,93273,71,1,f +7401,96874,25,1,t +7401,970c00pr0695,15,1,f +7401,970c00pr0698,72,1,f +7401,970c00pr0700,84,1,f +7401,973pr2724c01,15,1,f +7401,973pr2732c01,72,1,f +7401,973pr2734c01,484,1,f +7401,98138pr0010,179,3,f +7401,98138pr0010,179,1,t +7401,98313,72,2,f +7401,98585,71,6,f +7401,99780,72,2,f +7401,99781,71,1,f +7402,2730,4,2,f +7402,2780,0,4,f +7402,2825,7,1,f +7402,3647,7,1,f +7402,3648a,7,2,f +7402,3649,7,2,f +7402,3673,7,7,f +7402,3700,1,2,f +7402,3701,4,2,f +7402,3702,1,3,f +7402,3702,4,3,f +7402,3706,0,2,f +7402,3707,0,2,f +7402,3708,0,1,f +7402,3710,7,4,f +7402,3713,7,7,f +7402,3736,7,2,f +7402,3737,0,2,f +7402,3738,7,2,f +7402,3749,7,2,f +7402,3894,1,2,f +7402,3895,1,2,f +7402,4185,7,2,f +7402,rb00167,0,2,f +7402,rb00169,0,3,f +7406,281,14,2,f +7406,3001,14,2,f +7406,3001,4,16,f +7406,3002,4,2,f +7406,3002,1,4,f +7406,3003,14,6,f +7406,3003,4,19,f +7406,3003,1,9,f +7406,3004,1,17,f +7406,3004,4,9,f +7406,3009,1,2,f +7406,3010,4,4,f +7406,3027,14,1,f +7406,3030,14,1,f +7406,3031,4,1,f +7406,3031,1,2,f +7406,3033,14,2,f +7406,3035,14,1,f +7406,3185,4,4,f +7406,3403,4,1,f +7406,3404,4,1,f +7406,3836,6,1,f +7406,3888ac01,14,1,f +7406,3888ac01,0,1,f +7406,3900,7,1,f +7406,4000,14,1,f +7406,5,4,1,f +7406,691,1,1,f +7406,691,4,1,f +7406,692,4,1,f +7406,692,1,1,f +7406,fab5e,9999,1,f +7406,fab7e,9999,1,f +7406,u9143,4,1,f +7406,u9154,0,1,f +7406,u9213,2,1,f +7406,u9215,4,1,f +7406,x581c05,1,1,f +7406,x610c04,1,2,f +7406,x636c01,14,6,f +7406,x655c01,14,1,f +7406,x661c02,14,1,f +7406,x837,1,1,f +7406,x838,1,1,f +7407,11954,272,3,f +7407,14728c100,0,1,f +7407,15038pr0001,0,4,f +7407,2412b,272,5,f +7407,2412b,1,1,f +7407,2412b,25,1,f +7407,2412b,15,3,f +7407,2412b,80,2,f +7407,2654,47,4,f +7407,2780,0,344,f +7407,2780,0,8,t +7407,2817,71,1,f +7407,2819,71,1,f +7407,3021,0,1,f +7407,3022,71,2,f +7407,3023,19,6,f +7407,3023,0,2,f +7407,3024,0,1,t +7407,3024,0,2,f +7407,3031,19,2,f +7407,30395,72,1,f +7407,3068b,19,4,f +7407,3069b,272,2,f +7407,3069b,36,6,f +7407,3069b,182,2,f +7407,32000,0,2,f +7407,32002,19,2,t +7407,32002,19,3,f +7407,32005a,0,4,f +7407,32012,72,1,f +7407,32013,0,4,f +7407,32014,0,4,f +7407,32016,0,6,f +7407,32017,14,1,f +7407,32034,71,4,f +7407,32034,0,12,f +7407,32039,0,7,f +7407,32054,4,6,f +7407,32054,71,24,f +7407,32054,0,17,f +7407,32056,71,8,f +7407,32062,4,69,f +7407,32063,0,2,f +7407,32073,71,14,f +7407,32123b,71,18,f +7407,32123b,14,4,f +7407,32123b,71,1,t +7407,32123b,14,1,t +7407,32126,0,4,f +7407,32138,71,2,f +7407,32140,4,29,f +7407,32140,0,5,f +7407,32184,71,6,f +7407,32269,19,13,f +7407,32270,0,12,f +7407,32271,80,6,f +7407,32271,0,6,f +7407,32278,4,10,f +7407,32278,15,1,f +7407,32278,272,10,f +7407,32291,4,4,f +7407,32316,4,13,f +7407,32316,15,2,f +7407,32316,0,7,f +7407,32348,71,4,f +7407,32348,0,6,f +7407,32498,0,1,f +7407,32523,4,2,f +7407,32523,71,6,f +7407,32523,15,4,f +7407,32524,4,6,f +7407,32524,14,2,f +7407,32524,0,2,f +7407,32524,80,4,f +7407,32525,272,24,f +7407,32525,4,16,f +7407,32525,15,5,f +7407,32525,0,1,f +7407,32526,4,5,f +7407,32526,71,4,f +7407,32526,272,6,f +7407,32526,15,4,f +7407,32556,19,5,f +7407,3666,0,2,f +7407,3673,71,1,t +7407,3673,71,4,f +7407,3701,19,4,f +7407,3703,0,1,f +7407,3705,0,4,f +7407,3706,0,4,f +7407,3708,0,2,f +7407,3713,71,15,f +7407,3713,71,2,t +7407,3713,4,1,t +7407,3713,4,10,f +7407,3737,0,2,f +7407,3749,19,1,f +7407,4032a,0,6,f +7407,40490,4,9,f +7407,40490,71,2,f +7407,41239,0,1,f +7407,41239,4,10,f +7407,4162,272,1,f +7407,41669,80,2,f +7407,41669,15,2,f +7407,41677,0,14,f +7407,41677,1,3,f +7407,41678,0,11,f +7407,41678,72,2,f +7407,41678,4,2,f +7407,42003,71,17,f +7407,42003,0,8,f +7407,42003,272,14,f +7407,42610,71,1,f +7407,4274,1,12,f +7407,4274,1,2,t +7407,4282,0,1,f +7407,43093,1,115,f +7407,43857,4,6,f +7407,43857,0,7,f +7407,44294,71,2,f +7407,44809,71,2,f +7407,4519,71,38,f +7407,45590,0,4,f +7407,4716,71,1,f +7407,48989,71,6,f +7407,50950,19,4,f +7407,54120,0,4,f +7407,54200,19,4,f +7407,54200,19,1,t +7407,55013,72,4,f +7407,58119,71,1,f +7407,58120,71,1,f +7407,58122,71,1,f +7407,58123b,71,1,f +7407,59426,72,3,f +7407,59443,4,8,f +7407,59443,71,2,f +7407,59443,0,12,f +7407,60483,71,15,f +7407,60484,71,2,f +7407,60484,0,1,f +7407,60485,71,6,f +7407,6141,47,1,t +7407,6141,47,4,f +7407,61903,71,6,f +7407,61929,71,1,f +7407,61930,0,1,f +7407,62462,0,10,f +7407,62462,80,10,f +7407,62821,72,2,f +7407,63869,71,9,f +7407,64178,71,2,f +7407,64179,71,2,f +7407,64393,272,3,f +7407,64681,272,3,f +7407,64782,272,6,f +7407,6536,0,13,f +7407,6536,71,21,f +7407,6553,71,6,f +7407,6558,1,101,f +7407,6587,28,3,f +7407,6589,19,1,t +7407,6589,19,6,f +7407,6628,0,8,f +7407,6629,0,6,f +7407,6632,4,5,f +7407,76244,15,1,f +7407,85984,19,2,f +7407,87079,15,1,t +7407,87079pr0061,15,1,f +7407,87080,272,3,f +7407,87082,0,2,f +7407,87082,71,12,f +7407,87083,72,9,f +7407,87086,272,3,f +7407,87761,0,2,f +7407,92907,0,12,f +7407,92908,71,4,f +7407,92909,72,4,f +7407,92910,71,2,f +7407,92911,72,2,f +7407,94925,71,5,f +7407,95292c01,14,4,f +7407,98989,71,4,f +7407,99008,19,9,f +7407,99498,71,1,f +7407,99499,71,2,f +7407,99773,14,5,f +7407,99773,0,2,f +7408,3020,7,1,f +7408,3021,14,1,f +7408,3022,14,1,f +7408,3062b,0,2,f +7408,3062b,15,2,f +7408,3324c01,0,1,f +7408,3626bp03,14,1,f +7408,3639,7,1,f +7408,3640,0,1,f +7408,3829c01,4,1,f +7408,3833,4,1,f +7408,3836,6,1,f +7408,3837,0,1,f +7408,3839b,7,1,f +7408,4070,14,2,f +7408,4079,14,1,f +7408,4080,14,1,f +7408,4600,7,3,f +7408,6014a,14,6,f +7408,6015,0,6,f +7408,6141,47,2,f +7408,6141,0,1,f +7408,6141,36,2,f +7408,970c00,1,1,f +7408,973px122c01,1,1,f +7409,3001,0,12,f +7409,3001,4,36,f +7409,3004,15,24,f +7409,3749,71,2,f +7412,10314,26,1,f +7412,11477,26,4,f +7412,11609,191,1,t +7412,11609,191,3,f +7412,11640pr0002,85,1,f +7412,11816pr0003,78,1,f +7412,14045,85,1,f +7412,14045,85,1,t +7412,14769,0,2,f +7412,14769pr1020,297,1,f +7412,15210,72,1,f +7412,15573,85,3,f +7412,15712,71,1,f +7412,18674,15,1,f +7412,2343,47,1,f +7412,2431,322,4,f +7412,2432,72,1,f +7412,2456,0,1,f +7412,2653,0,2,f +7412,298c02,71,1,t +7412,298c02,71,1,f +7412,3003,0,1,f +7412,3004,15,3,f +7412,3010,15,3,f +7412,3020,15,1,f +7412,3021,85,5,f +7412,3021,0,1,f +7412,3022,322,1,f +7412,3023,0,5,f +7412,3023,322,4,f +7412,3023,47,2,f +7412,3023,85,2,f +7412,3023,15,6,f +7412,30237b,15,2,f +7412,3034,15,1,f +7412,3068bpr0138,15,1,f +7412,3068bpr0255,15,1,f +7412,3069b,26,4,f +7412,3069bp02,71,1,f +7412,3069bpr0086,71,2,f +7412,3069bpr0101,71,1,f +7412,3069bpr0130,322,1,f +7412,3070b,322,4,f +7412,3070b,322,1,t +7412,33291,26,3,f +7412,33291,26,1,t +7412,3623,0,4,f +7412,3623,85,6,f +7412,3623,26,3,f +7412,3666,0,1,f +7412,3700,0,5,f +7412,3710,15,1,f +7412,3795,0,1,f +7412,3900,71,1,f +7412,3937,0,1,f +7412,3941,85,2,f +7412,4032a,0,2,f +7412,4595,0,1,f +7412,4740,0,3,f +7412,4740,71,2,f +7412,48336,0,2,f +7412,52107,15,1,f +7412,57895,15,1,f +7412,60470a,0,1,f +7412,60581,47,2,f +7412,60596,0,2,f +7412,60616a,47,1,f +7412,6134,0,1,f +7412,6141,42,1,t +7412,6141,71,1,t +7412,6141,47,1,t +7412,6141,45,1,t +7412,6141,45,2,f +7412,6141,42,2,f +7412,6141,71,3,f +7412,6141,297,1,t +7412,6141,34,1,t +7412,6141,297,7,f +7412,6141,47,2,f +7412,6141,36,1,t +7412,6141,34,1,f +7412,6141,36,1,f +7412,6231,322,2,f +7412,63868,0,2,f +7412,64644,297,2,f +7412,73983,15,4,f +7412,75937,0,1,f +7412,87079,26,1,f +7412,87087,15,1,f +7412,88072,0,2,f +7412,90370pr0005,0,1,t +7412,90370pr0005,0,1,f +7412,92256,70,1,f +7412,92456pr0026c01,78,1,f +7412,92593,0,3,f +7412,92820pr0007c01,379,1,f +7412,99207,0,1,f +7412,99781,15,1,f +7413,298c02,0,1,f +7413,298c02,0,3,t +7413,3626cpr0677,14,1,f +7413,41879a,28,1,f +7413,48336,71,1,f +7413,86035,4,1,t +7413,86035,4,1,f +7413,973pr1479c01,15,1,f +7413,98138,25,3,t +7413,98138,25,1,f +7415,122c01,0,2,f +7415,2731,7,1,f +7415,27c01,15,2,f +7415,29c,0,2,f +7415,3001,0,2,f +7415,3002,15,2,f +7415,3003,4,16,f +7415,3004,4,14,f +7415,3004,0,9,f +7415,3004,15,4,f +7415,3005,1,2,f +7415,3005,0,4,f +7415,3009,15,2,f +7415,3009,1,2,f +7415,3009,4,4,f +7415,3009,0,1,f +7415,3010,0,1,f +7415,3010,4,2,f +7415,3010,15,11,f +7415,3010,1,1,f +7415,3020,14,5,f +7415,3021,14,1,f +7415,3021,15,5,f +7415,3021,0,2,f +7415,3022,0,10,f +7415,3023,0,6,f +7415,3023,14,11,f +7415,3024,0,12,f +7415,3024,7,4,f +7415,3027,0,3,f +7415,3028,7,1,f +7415,3031,0,1,f +7415,3032,0,1,f +7415,3035,0,1,f +7415,3037,0,2,f +7415,3038,0,2,f +7415,3039,0,4,f +7415,3039,7,2,f +7415,3040b,14,2,f +7415,3040b,0,2,f +7415,3063b,14,36,f +7415,3081cc01,15,1,f +7415,3081cc01,0,2,f +7415,3228b,7,4,f +7415,3229b,7,16,f +7415,3230b,7,16,f +7415,3241,7,15,f +7415,3242,7,2,f +7415,3297,7,6,f +7415,3297,0,2,f +7415,3298,7,2,f +7415,3430c02,0,1,f +7415,3460,0,2,f +7415,3460,4,4,f +7415,3581,15,4,f +7415,3622,15,6,f +7415,3622,4,4,f +7415,3622,1,4,f +7415,3623,0,2,f +7415,3624,4,1,f +7415,3626a,0,2,f +7415,3626apr0001,14,2,f +7415,3641,0,4,f +7415,3644,15,4,f +7415,3651,7,4,f +7415,3660,4,4,f +7415,3665,0,24,f +7415,3666,0,11,f +7415,3666,7,2,f +7415,3666,4,2,f +7415,3710,0,3,f +7415,3710,4,4,f +7415,3788,14,2,f +7415,3794a,0,2,f +7415,3795,4,2,f +7415,3795,7,1,f +7415,3795,0,9,f +7415,3829c01,4,1,f +7415,3829c01,0,1,f +7415,3832,0,3,f +7415,3833,4,1,f +7415,3853,4,4,f +7415,3856,4,8,f +7415,3941,0,1,f +7415,3943a,14,3,f +7415,3958,0,1,f +7415,4022,0,6,f +7415,4022,4,2,f +7415,4023,0,8,f +7415,4032a,0,2,f +7415,4032a,4,1,f +7415,4070,14,4,f +7415,4070,0,2,f +7415,4079,4,1,f +7415,4083,0,4,f +7415,4161,0,2,f +7415,4175,4,2,f +7415,4175,0,2,f +7415,4175,7,6,f +7415,4180c01,0,6,f +7415,4181,0,1,f +7415,4182,0,1,f +7415,4183,47,2,f +7415,458,7,6,f +7415,501a,4,1,f +7415,502,7,4,f +7415,6141,47,2,f +7415,6141,36,2,f +7415,6141,46,2,f +7415,73090a,0,2,f +7415,73092,0,8,f +7415,767,8,36,f +7415,867,4,2,f +7415,970c00,1,2,f +7415,973p26c01,1,2,f +7415,x461,0,2,f +7417,14210,0,1,f +7417,2412b,71,5,f +7417,2420,72,1,f +7417,2431,14,3,f +7417,2444,72,1,f +7417,2445,72,2,f +7417,2445,15,1,f +7417,2445,1,1,f +7417,2446,15,1,f +7417,2447,40,1,t +7417,2447,40,1,f +7417,2479,0,1,f +7417,2654,46,1,f +7417,3004,4,2,f +7417,3005,14,2,f +7417,3010,0,2,f +7417,3010,14,1,f +7417,3020,71,2,f +7417,3020,0,2,f +7417,3021,1,5,f +7417,3022,1,9,f +7417,3023,15,9,f +7417,3023,14,1,f +7417,3023,36,1,f +7417,3029,1,1,f +7417,30332,0,1,f +7417,3034,15,3,f +7417,30367b,0,1,f +7417,3037,14,1,f +7417,30374,14,4,f +7417,3039,72,6,f +7417,3039pr0013,15,1,f +7417,30414,0,2,f +7417,30592,72,1,f +7417,3069b,15,1,f +7417,3069bpr0100,2,1,f +7417,3069bpr0101,71,1,f +7417,3070b,46,1,t +7417,3070b,46,2,f +7417,3070b,36,1,t +7417,3070b,36,2,f +7417,32018,71,2,f +7417,32028,71,4,f +7417,32039,14,1,f +7417,3475b,72,2,f +7417,3623,1,7,f +7417,3624,15,1,f +7417,3626bpr0325,14,1,f +7417,3626bpr0410,14,1,f +7417,3626bpr0498,14,1,f +7417,3626bpr0499,14,1,f +7417,3658stk01,9999,1,t +7417,3673,71,1,t +7417,3673,71,1,f +7417,3710,14,2,f +7417,3710,0,2,f +7417,3795,15,2,f +7417,3829c01,4,1,f +7417,3899,4,1,f +7417,3900,15,1,f +7417,3960,15,1,f +7417,4079,14,2,f +7417,4079,4,1,f +7417,4085c,1,8,f +7417,41334,72,1,f +7417,4150pr0022,71,1,f +7417,4212b,72,1,f +7417,42610,71,4,f +7417,43337,14,4,f +7417,4349,72,1,f +7417,4360,0,1,f +7417,43720,72,2,f +7417,43721,72,2,f +7417,45677,0,1,f +7417,4623,0,2,f +7417,4624,71,6,f +7417,47720,71,2,f +7417,48183,72,1,f +7417,4863,15,4,f +7417,4870,71,2,f +7417,50745,0,4,f +7417,50943,72,1,f +7417,51011,0,4,f +7417,51739,72,1,f +7417,54384,72,1,f +7417,57783,40,1,f +7417,59895,0,6,f +7417,6019,72,1,f +7417,60219,1,1,f +7417,60470a,0,1,f +7417,60479,15,2,f +7417,60601,41,8,f +7417,61409,72,5,f +7417,6141,46,1,t +7417,6141,46,2,f +7417,6141,34,1,t +7417,6141,47,1,t +7417,6141,33,1,t +7417,6141,47,3,f +7417,6141,36,2,t +7417,6141,33,1,f +7417,6141,36,2,f +7417,6141,34,1,f +7417,61483,71,1,f +7417,61678,15,8,f +7417,6239,15,1,f +7417,62743,0,4,f +7417,86035,15,1,f +7417,87611,1,1,f +7417,87612,41,1,f +7417,87613,15,1,f +7417,87615,15,1,f +7417,87616,1,1,f +7417,92950,72,2,f +7417,970c00,0,3,f +7417,970c00,72,1,f +7417,973pr1188c01,0,1,f +7417,973pr1197c01,15,1,f +7417,973pr1693c01,0,2,f +7418,122c01,7,2,f +7418,3004,47,1,f +7418,3021,15,3,f +7418,3021,0,1,f +7418,3023,15,1,f +7418,3034,15,1,f +7418,3034,0,1,f +7418,3039,0,1,f +7418,3039,47,1,f +7418,3062a,33,1,f +7418,3624,15,1,f +7418,3626apr0001,14,1,f +7418,3641,0,4,f +7418,3787,15,2,f +7418,970c00,0,1,f +7418,973c18,0,1,f +7419,3700,0,4,f +7419,3701,0,4,f +7419,3702,0,4,f +7419,3709,0,2,f +7419,3738,0,2,f +7419,3894,0,4,f +7420,10830pat0001,0,1,f +7420,15207,71,2,f +7420,2039,15,1,f +7420,2343,297,1,f +7420,2357,71,22,f +7420,2357,72,3,f +7420,2412b,80,2,f +7420,2412b,72,8,f +7420,2420,0,8,f +7420,2423,2,3,f +7420,2431,15,2,f +7420,2431,19,9,f +7420,2445,71,5,f +7420,2453b,71,4,f +7420,2540,19,1,f +7420,2736,71,1,f +7420,2780,0,7,f +7420,2780,0,1,t +7420,2877,72,16,f +7420,2877,70,2,f +7420,2921,70,6,f +7420,3001,0,5,f +7420,3002,0,5,f +7420,3002,15,7,f +7420,3004,71,40,f +7420,3004,484,121,f +7420,3004,72,9,f +7420,3004,15,11,f +7420,3004,288,9,f +7420,3005,484,49,f +7420,3005,47,3,f +7420,3005,71,32,f +7420,3005,72,5,f +7420,3005,15,11,f +7420,3005,288,14,f +7420,30055,0,2,f +7420,30056,0,1,f +7420,3006,0,3,f +7420,3008,484,50,f +7420,3008,15,7,f +7420,3008,72,19,f +7420,3008,71,38,f +7420,30089b,0,1,f +7420,3009,15,8,f +7420,3009,72,17,f +7420,3009,484,64,f +7420,3009,71,22,f +7420,3010,71,21,f +7420,3010,72,5,f +7420,3010,288,6,f +7420,30136,484,48,f +7420,30176,2,2,f +7420,3020,484,9,f +7420,3020,0,2,f +7420,3020,71,4,f +7420,3020,19,6,f +7420,3020,15,10,f +7420,3021,0,2,f +7420,3021,15,4,f +7420,3021,71,3,f +7420,3022,484,6,f +7420,3022,71,9,f +7420,3022,19,6,f +7420,3022,15,11,f +7420,3022,0,3,f +7420,30222,42,1,f +7420,3023,72,20,f +7420,3023,15,27,f +7420,3023,19,17,f +7420,3023,71,38,f +7420,3023,1,1,f +7420,3023,70,4,f +7420,3023,484,22,f +7420,3024,15,34,f +7420,3024,70,12,f +7420,3024,19,2,f +7420,3024,71,37,f +7420,3026,71,2,f +7420,3026,15,4,f +7420,3031,72,2,f +7420,3033,71,5,f +7420,3034,71,4,f +7420,3034,15,10,f +7420,3035,71,2,f +7420,30357,15,2,f +7420,3036,71,2,f +7420,3036,15,4,f +7420,30367c,72,1,f +7420,3037,0,1,f +7420,3038,0,4,f +7420,30383,0,2,f +7420,3039,0,8,f +7420,30414,15,3,f +7420,3045,0,8,f +7420,3048c,297,1,f +7420,30505,0,2,f +7420,30586,71,4,f +7420,3062b,72,23,f +7420,3062b,47,1,f +7420,3062b,15,17,f +7420,3068b,288,4,f +7420,3068b,72,23,f +7420,3068b,15,5,f +7420,3068b,0,4,f +7420,3068bpr0137,15,1,f +7420,3068bpr0197,28,1,f +7420,3069b,19,26,f +7420,3069b,71,27,f +7420,3069b,1,3,f +7420,3069b,15,20,f +7420,3069b,70,4,f +7420,3069b,0,4,f +7420,3069b,28,4,f +7420,3069b,72,18,f +7420,3069bpr0030,15,1,f +7420,3069bpr0055,15,1,f +7420,3069bpr0100,2,1,f +7420,3070b,71,3,t +7420,3070b,0,1,t +7420,3070b,71,14,f +7420,3070b,15,19,f +7420,3070b,272,6,f +7420,3070b,70,8,f +7420,3070b,272,1,t +7420,3070b,70,1,t +7420,3070b,15,3,t +7420,3070b,0,4,f +7420,3070b,72,2,f +7420,3070b,72,1,t +7420,3176,0,6,f +7420,3176,1,1,f +7420,32000,19,2,f +7420,32013,71,1,f +7420,32028,15,31,f +7420,32028,0,8,f +7420,32062,4,1,f +7420,3245b,71,2,f +7420,3308,484,3,f +7420,3308,71,1,f +7420,33125,484,2,f +7420,33291,10,3,t +7420,33291,10,12,f +7420,33320,72,1,f +7420,3460,72,13,f +7420,3622,71,29,f +7420,3622,484,72,f +7420,3622,72,16,f +7420,3622,15,11,f +7420,3623,71,6,f +7420,3623,19,2,f +7420,3623,0,10,f +7420,3623,15,28,f +7420,3626c,47,1,f +7420,3626c,15,1,f +7420,3626cpr0001,14,8,f +7420,3659,71,7,f +7420,3659,15,4,f +7420,3659,484,6,f +7420,3660,71,10,f +7420,3665,71,4,f +7420,3666,15,28,f +7420,3666,71,25,f +7420,3666,0,4,f +7420,3678b,15,1,f +7420,3679,71,1,f +7420,3680,1,1,f +7420,3685,0,4,f +7420,3688,0,1,f +7420,3700,71,5,f +7420,3700,70,4,f +7420,3710,72,6,f +7420,3710,15,26,f +7420,3710,0,11,f +7420,3741,2,3,f +7420,3741,2,1,t +7420,3742,4,3,t +7420,3742,4,9,f +7420,3794a,71,6,f +7420,3794a,70,14,f +7420,3794a,15,15,f +7420,3794a,272,2,f +7420,3794a,19,9,f +7420,3794a,72,12,f +7420,3795,71,4,f +7420,3795,70,1,f +7420,3811,19,1,f +7420,3832,71,4,f +7420,3832,72,9,f +7420,3836,70,1,f +7420,3846pr0001b,71,2,f +7420,3878,0,1,f +7420,3901,71,1,f +7420,3937,1,1,f +7420,3957a,0,1,f +7420,3958,0,1,f +7420,3958,15,1,f +7420,3960pr0001,0,1,f +7420,4032a,72,1,f +7420,4081b,15,12,f +7420,4162,0,5,f +7420,4162,71,3,f +7420,4162,15,16,f +7420,4162,72,8,f +7420,41854,0,1,f +7420,41854,15,2,f +7420,41879a,4,1,f +7420,41879a,1,1,f +7420,4216,15,8,f +7420,4216,71,10,f +7420,4218,47,18,f +7420,4219,0,2,f +7420,4274,1,3,f +7420,4274,1,1,t +7420,4282,72,1,f +7420,4282,71,4,f +7420,43898,72,1,f +7420,4445,0,2,f +7420,4449,70,1,f +7420,44728,71,2,f +7420,4477,0,2,f +7420,4477,71,19,f +7420,4477,15,32,f +7420,4490,72,4,f +7420,4510,15,22,f +7420,4536,15,5,f +7420,4697b,71,1,f +7420,4697b,71,1,t +7420,4733,72,4,f +7420,4735,0,4,f +7420,4740,15,2,f +7420,4740,70,1,f +7420,4740,0,2,f +7420,47457,72,7,f +7420,47905,19,10,f +7420,47905,70,8,f +7420,48336,1,2,f +7420,48729b,0,2,f +7420,48729b,0,1,t +7420,50950,72,4,f +7420,50950,19,2,f +7420,53989,0,1,f +7420,54200,72,8,f +7420,54200,15,26,f +7420,54200,72,1,t +7420,54200,15,2,t +7420,59900,0,18,f +7420,59900,70,29,f +7420,59900,297,1,f +7420,6020,0,1,f +7420,60470b,0,2,f +7420,60475b,288,4,f +7420,60477,15,4,f +7420,60483,0,1,f +7420,60592,288,6,f +7420,60592,15,49,f +7420,60593,15,14,f +7420,60594,72,1,f +7420,60594,15,6,f +7420,60596,0,5,f +7420,60596,15,2,f +7420,60601,47,52,f +7420,60602,47,14,f +7420,60608,15,12,f +7420,60614,72,2,f +7420,60616a,47,1,f +7420,60623,0,3,f +7420,60623,2,3,f +7420,60849,0,5,f +7420,60897,1,2,f +7420,60897,15,1,f +7420,6091,71,12,f +7420,61252,71,3,f +7420,61287pr0001,28,1,f +7420,61287pr0002,28,1,f +7420,6134,71,1,f +7420,6141,72,7,f +7420,6141,0,5,t +7420,6141,0,53,f +7420,6141,14,9,f +7420,6141,14,2,t +7420,6141,47,2,t +7420,6141,27,2,t +7420,6141,27,10,f +7420,6141,15,2,f +7420,6141,72,1,t +7420,6141,4,2,t +7420,6141,4,8,f +7420,6141,15,1,t +7420,6141,47,4,f +7420,6183,0,4,f +7420,6266,15,4,f +7420,62810,0,1,f +7420,63864,71,3,f +7420,63864,0,20,f +7420,63864,15,4,f +7420,63864,288,8,f +7420,63869,71,1,f +7420,64567,0,2,f +7420,6541,70,4,f +7420,6628,0,2,f +7420,6636,71,61,f +7420,6636,70,6,f +7420,6636,19,12,f +7420,6636,15,7,f +7420,85975,320,1,f +7420,85984,19,12,f +7420,86035,1,1,f +7420,87079,71,6,f +7420,87079,0,2,f +7420,87087,0,14,f +7420,87087,71,2,f +7420,87087,484,14,f +7420,87552,15,8,f +7420,87580,71,2,f +7420,87580,0,17,f +7420,87990,70,1,f +7420,88072,0,1,f +7420,88286,308,1,f +7420,90195,71,6,f +7420,92083,484,1,f +7420,92099,72,1,f +7420,92107,72,1,f +7420,92410,4,2,f +7420,92410,15,1,f +7420,92593,15,5,f +7420,92593,71,6,f +7420,92946,72,2,f +7420,92947,19,2,f +7420,92947,15,4,f +7420,93223,15,1,f +7420,93273,19,4,f +7420,93562,0,1,f +7420,96874,25,1,t +7420,970c00,0,1,f +7420,970c00,272,1,f +7420,970c00,85,1,f +7420,970c00,288,1,f +7420,970c00,1,1,f +7420,973pr1192c01,0,1,f +7420,973pr1244c01,73,1,f +7420,973pr1479c01,15,1,f +7420,973pr1576c01,72,1,f +7420,973pr1585c01,25,1,f +7420,973pr1776c01,272,1,f +7420,973pr1783c01,4,1,f +7420,973pr2036c01,15,1,f +7420,98138,297,5,f +7420,98138,71,4,t +7420,98138,71,14,f +7420,98138,297,3,t +7420,98282,15,6,f +7421,2431,0,1,f +7421,3001,0,3,f +7421,3002,0,7,f +7421,3020,0,1,f +7421,3021,0,3,f +7421,3022,0,1,f +7421,3024,0,1,f +7421,3030,0,2,f +7421,3032,71,2,f +7421,3069b,0,2,f +7421,3070b,0,1,f +7421,3070b,0,1,t +7421,3622,0,7,f +7421,3623,0,2,f +7421,3623,15,1,f +7421,3794a,0,19,f +7421,3957a,15,2,f +7421,4032a,71,3,f +7421,4150,71,1,f +7421,4162,0,3,f +7421,4162pb017,0,1,f +7421,6141,0,1,t +7421,6141,0,2,f +7421,6636,71,4,f +7422,12825,72,2,f +7422,2437,47,1,f +7422,2456,4,2,f +7422,2456,14,2,f +7422,2456,1,2,f +7422,2456,15,2,f +7422,2877,71,2,f +7422,3001,15,6,f +7422,3001,73,2,f +7422,3001,70,1,f +7422,3001,4,6,f +7422,3001,2,3,f +7422,3001,1,6,f +7422,3001,14,6,f +7422,3001,0,8,f +7422,3002,70,1,f +7422,3002,0,4,f +7422,3002,14,8,f +7422,3002,1,8,f +7422,3002,25,2,f +7422,3002,73,1,f +7422,3002,27,4,f +7422,3002,15,8,f +7422,3002,2,4,f +7422,3002,4,8,f +7422,3003,14,16,f +7422,3003,2,8,f +7422,3003,73,1,f +7422,3003,4,16,f +7422,3003,1,16,f +7422,3003,27,2,f +7422,3003,15,16,f +7422,3003,70,2,f +7422,3003,0,8,f +7422,3004,70,3,f +7422,3004,15,13,f +7422,3004,14,12,f +7422,3004,1,12,f +7422,3004,0,6,f +7422,3004,2,6,f +7422,3004,4,12,f +7422,3004,25,2,f +7422,30044,15,2,f +7422,30046,0,2,f +7422,3005,14,8,f +7422,3005,1,13,f +7422,3005,0,4,f +7422,3005,2,4,f +7422,3005,4,8,f +7422,3005,73,4,f +7422,3005,15,10,f +7422,3005pr0003,15,4,f +7422,3006,14,1,f +7422,3007,1,1,f +7422,3007,4,1,f +7422,3007,14,1,f +7422,3007,15,1,f +7422,3008,4,2,f +7422,3008,1,2,f +7422,3008,14,2,f +7422,3008,15,2,f +7422,3009,4,4,f +7422,3009,1,4,f +7422,3009,14,4,f +7422,3009,15,6,f +7422,3010,1,3,f +7422,3010,0,2,f +7422,3010,2,2,f +7422,3010,4,3,f +7422,3010,15,7,f +7422,3010,73,2,f +7422,3010,14,3,f +7422,3010,27,2,f +7422,3010,25,1,f +7422,3020,1,3,f +7422,3020,15,4,f +7422,3020,2,1,f +7422,3020,70,1,f +7422,3021,25,1,f +7422,3021,0,2,f +7422,3022,1,1,f +7422,3022,15,1,f +7422,3023,73,3,f +7422,3023,1,9,f +7422,3023,15,4,f +7422,3023,25,2,f +7422,3023,0,2,f +7422,3023,4,3,f +7422,3028,10,1,f +7422,3030,2,2,f +7422,3031,1,2,f +7422,3031,4,1,f +7422,3037,4,8,f +7422,3037,0,2,f +7422,3038,4,4,f +7422,3039,0,10,f +7422,3039,4,7,f +7422,3040b,4,4,f +7422,3040b,1,2,f +7422,3040b,15,2,f +7422,3040b,25,4,f +7422,3043,4,1,f +7422,30613,15,1,f +7422,3062b,46,2,f +7422,3062b,15,4,f +7422,3062b,70,4,f +7422,3062b,71,8,f +7422,3068b,70,2,f +7422,33125,484,2,f +7422,33243,4,2,f +7422,33303,15,3,f +7422,3622,4,4,f +7422,3622,0,4,f +7422,3622,14,4,f +7422,3622,1,4,f +7422,3622,2,4,f +7422,3622,15,8,f +7422,3626bpr0677,14,1,f +7422,3626bpr0892,14,1,f +7422,3659,4,4,f +7422,3659,73,2,f +7422,3660,70,2,f +7422,3665,1,4,f +7422,3665,15,2,f +7422,3665,4,4,f +7422,3666,1,3,f +7422,3666,73,2,f +7422,3700,15,2,f +7422,3710,73,2,f +7422,3710,25,2,f +7422,3710,1,4,f +7422,3710,15,4,f +7422,3710,71,2,f +7422,3710,4,2,f +7422,3795,1,1,f +7422,3823,47,1,f +7422,3829c01,15,2,f +7422,3832,72,2,f +7422,3832,1,1,f +7422,3836,70,1,f +7422,3957b,15,1,f +7422,4032a,4,2,f +7422,4070,1,3,f +7422,4070,4,4,f +7422,4079,4,2,f +7422,4175,72,1,f +7422,41879a,1,1,f +7422,4477,15,2,f +7422,4528,0,1,f +7422,4599b,15,2,f +7422,4600,71,4,f +7422,4624,15,4,f +7422,4727,2,4,f +7422,4728,14,2,f +7422,4740,15,2,f +7422,4865b,1,2,f +7422,50950,4,2,f +7422,54200,15,1,t +7422,54200,36,1,t +7422,54200,70,1,t +7422,54200,36,4,f +7422,54200,70,2,f +7422,54200,15,2,f +7422,55295,0,1,f +7422,55296,0,1,f +7422,55297,0,1,f +7422,55298,0,1,f +7422,55299,0,1,f +7422,55300,0,1,f +7422,6014b,71,4,f +7422,6019,15,2,f +7422,6020,71,1,f +7422,60478,71,2,f +7422,60583a,4,2,f +7422,60593,2,2,f +7422,60598,14,2,f +7422,60598,15,2,f +7422,60598,4,4,f +7422,60599,4,2,f +7422,60599,15,2,f +7422,60607,15,4,f +7422,60608,14,4,f +7422,60608,73,4,f +7422,60608,15,4,f +7422,60623,14,1,f +7422,60623,0,1,f +7422,60623,2,1,f +7422,60623,15,1,f +7422,60800a,2,2,f +7422,6093,0,1,f +7422,6112,14,3,f +7422,6112,4,2,f +7422,6141,46,4,f +7422,6141,33,1,t +7422,6141,33,6,f +7422,6141,25,1,t +7422,6141,46,1,t +7422,6141,25,4,f +7422,6141,4,4,f +7422,6141,4,1,t +7422,6215,4,4,f +7422,6256,191,1,f +7422,63868,72,2,f +7422,86035,4,1,f +7422,87414,0,4,f +7422,87552,1,2,f +7422,87601,70,2,f +7422,87697,0,4,f +7422,92438,10,1,f +7422,92926,2,2,f +7422,970c00,4,1,f +7422,973pr1470c01,1,1,f +7422,973pr1585c01,25,1,f +7424,2420,2,8,f +7424,2452,15,2,f +7424,2452,4,1,f +7424,3003,14,1,f +7424,3003,2,1,f +7424,3020,2,4,f +7424,3021,2,8,f +7424,3022,14,1,f +7424,3022,2,4,f +7424,3023,2,5,f +7424,3024,2,2,f +7424,3039,14,1,f +7424,3049b,4,1,f +7424,3622,2,2,f +7424,3623,2,2,f +7424,3660,14,1,f +7424,3666,2,1,f +7424,3710,2,7,f +7424,3794a,2,5,f +7424,3795,2,2,f +7424,4070,15,2,f +7424,4275b,15,2,f +7424,4589,4,3,f +7424,6141,0,2,f +7424,6141,15,2,f +7426,2412b,72,11,f +7426,2412b,25,2,f +7426,2420,71,2,f +7426,2431,27,3,f +7426,2447,40,1,t +7426,2447,40,2,f +7426,2458,71,6,f +7426,2486,0,2,f +7426,2540,0,9,f +7426,2555,0,2,f +7426,2654,15,1,f +7426,2780,0,50,f +7426,2780,0,3,t +7426,2825,71,2,f +7426,2877,0,6,f +7426,298c02,71,2,f +7426,298c02,71,1,t +7426,3001,0,5,f +7426,3001,71,1,f +7426,3004,72,2,f +7426,30091,72,1,f +7426,3010,71,1,f +7426,30150,70,2,f +7426,30170,72,1,t +7426,30170,72,1,f +7426,30194,72,1,f +7426,3021,72,2,f +7426,3022,71,6,f +7426,30228,72,1,f +7426,3023,27,13,f +7426,30237a,72,2,f +7426,3031,27,1,f +7426,3031,72,2,f +7426,3032,0,1,f +7426,30325,1,3,f +7426,3034,71,1,f +7426,3035,72,5,f +7426,30359b,0,2,f +7426,3036,71,1,f +7426,30361c,0,4,f +7426,30367b,0,2,f +7426,30367b,27,2,f +7426,30367b,25,4,f +7426,30385,42,2,f +7426,30385,36,3,f +7426,3039,72,2,f +7426,30391,0,2,f +7426,30395,72,3,f +7426,30540,0,2,f +7426,30552,71,2,f +7426,3062b,27,3,f +7426,3062b,0,2,f +7426,30663,0,5,f +7426,3068b,72,2,f +7426,3068bpr0136,72,2,f +7426,3069bpr0030,15,1,f +7426,3069bpr0101,71,2,f +7426,32001,71,1,f +7426,32002,72,2,f +7426,32002,72,1,t +7426,32013,0,1,f +7426,32015,15,2,f +7426,32018,0,8,f +7426,32034,0,2,f +7426,32054,0,9,f +7426,32062,4,5,f +7426,32064b,72,3,f +7426,32072,0,2,f +7426,32073,71,2,f +7426,32123b,14,2,t +7426,32123b,14,6,f +7426,32123b,71,5,f +7426,32123b,71,2,t +7426,32177,72,2,f +7426,32192,72,1,f +7426,32270,0,1,f +7426,32316,0,2,f +7426,32348,27,1,f +7426,3245b,71,2,f +7426,32523,72,2,f +7426,32524,72,2,f +7426,32524,0,2,f +7426,32526,27,2,f +7426,32530,0,8,f +7426,32532,0,4,f +7426,3308,72,2,f +7426,33085,14,1,f +7426,33299a,0,2,f +7426,3460,15,2,f +7426,3623,72,6,f +7426,3626bpr0557,14,1,f +7426,3626bpr0562,14,1,f +7426,3626bpr0563,14,1,f +7426,3633,0,1,f +7426,3647,72,4,f +7426,3648b,72,2,f +7426,3666,27,4,f +7426,3678b,72,4,f +7426,3700,0,8,f +7426,3701,0,4,f +7426,3705,0,9,f +7426,3706,0,3,f +7426,3707,0,3,f +7426,3709,0,8,f +7426,3713,71,4,t +7426,3713,71,14,f +7426,3737,0,7,f +7426,3738,0,15,f +7426,3743,0,2,f +7426,3749,19,5,f +7426,3832,72,13,f +7426,3837,72,1,f +7426,3841,72,1,f +7426,3894,72,2,f +7426,3895,72,3,f +7426,3937,15,2,f +7426,3941,25,1,f +7426,3941,27,5,f +7426,3941,72,1,f +7426,3962b,0,1,f +7426,4019,71,3,f +7426,4032a,0,7,f +7426,40490,72,2,f +7426,4079,70,3,f +7426,40902,0,2,f +7426,41239,0,4,f +7426,4150,0,2,f +7426,4150pr0022,71,2,f +7426,4151b,72,1,f +7426,41532,0,2,f +7426,41539,72,1,f +7426,4162,72,3,f +7426,41677,72,3,f +7426,4185,27,8,f +7426,42003,71,2,f +7426,42022,72,2,f +7426,4274,1,6,f +7426,4274,71,2,t +7426,4274,71,4,f +7426,4274,1,3,t +7426,4284,47,4,f +7426,4287,72,2,f +7426,43093,1,5,f +7426,43121,0,1,f +7426,44224,72,2,f +7426,44225,71,2,f +7426,44294,71,1,f +7426,44302a,0,1,f +7426,4477,72,3,f +7426,4519,71,5,f +7426,4589,71,11,f +7426,4716,71,1,f +7426,4740,47,4,f +7426,4740,0,4,f +7426,47457,4,2,f +7426,4854,72,1,f +7426,4868b,25,2,f +7426,4869,71,2,f +7426,4871,72,1,f +7426,50943,71,2,f +7426,55013,72,8,f +7426,55982,71,2,f +7426,56823c100,0,1,f +7426,56823c50,0,1,f +7426,57539,25,2,f +7426,57779,27,1,f +7426,57909a,72,4,f +7426,58176,182,6,f +7426,58827,27,8,f +7426,59426,72,5,f +7426,59443,71,8,f +7426,60176,0,1,f +7426,6019,0,4,f +7426,60481,27,14,f +7426,60483,0,3,f +7426,6087,71,4,f +7426,6112,71,2,f +7426,61184,71,2,f +7426,6126a,182,2,f +7426,6134,0,2,f +7426,61409,27,7,f +7426,6141,27,5,f +7426,6141,47,8,f +7426,6141,47,2,t +7426,6141,27,2,t +7426,61510,71,2,f +7426,61780,70,1,f +7426,6180,27,3,f +7426,6233,0,2,f +7426,62462,0,2,f +7426,62712,72,1,f +7426,63965,71,6,f +7426,64566,0,2,f +7426,64711,0,8,f +7426,64711,25,1,f +7426,64712,0,8,f +7426,64712,72,1,f +7426,64713,71,1,f +7426,64728,4,2,f +7426,64783,72,2,f +7426,64784pat01,33,1,f +7426,64785,72,1,f +7426,6536,72,6,f +7426,6541,72,4,f +7426,6558,1,4,f +7426,6585,0,1,f +7426,6587,72,7,f +7426,6588,47,1,f +7426,6589,19,3,f +7426,71155,0,1,f +7426,85049pat01,36,1,f +7426,85204,72,1,f +7426,85205,72,1,f +7426,8964stk01,9999,1,t +7426,970c00pr0122,1,3,f +7426,973pr1432c01,71,1,f +7426,973pr1434c01,15,1,f +7426,973pr1435c01,71,1,f +7427,16709pat01,25,1,f +7427,20489pr0001,14,1,f +7427,33009pr0010,70,1,f +7427,88646,0,1,f +7427,973pr2979c01,15,1,f +7428,2412b,334,1,f +7428,2446,15,1,f +7428,3004pb010,15,1,f +7428,30256,15,1,f +7428,3068bpx27,15,1,f +7428,3962b,8,2,f +7428,4006,0,1,f +7428,4479,7,1,f +7428,4740,42,1,f +7428,6023,15,1,f +7428,71966,15,1,f +7428,769,334,2,f +7428,890,0,2,f +7429,2401,7,2,f +7429,2412b,6,6,f +7429,2418b,40,1,f +7429,2445,7,1,f +7429,2524,6,1,f +7429,2654,15,1,f +7429,298c02,14,1,f +7429,298c02,14,1,t +7429,3004,2,2,f +7429,3005,7,6,f +7429,3005,0,1,f +7429,3006,0,4,f +7429,3008,2,2,f +7429,3008,8,1,f +7429,3009,2,2,f +7429,30101,8,2,f +7429,30102,47,2,f +7429,30148,0,1,f +7429,30162,8,1,f +7429,30167,6,1,f +7429,3020,8,2,f +7429,3021,0,2,f +7429,3022,7,2,f +7429,3022,0,2,f +7429,3022,8,1,f +7429,3023,2,1,f +7429,30239,2,4,f +7429,3031,8,2,f +7429,30363,8,1,f +7429,3040b,0,8,f +7429,30503,8,4,f +7429,30552,0,2,f +7429,30552,8,1,f +7429,30553,8,1,f +7429,30553,0,2,f +7429,3062b,19,4,f +7429,3069bp02,7,1,f +7429,32062,4,3,f +7429,32064a,7,3,f +7429,3298,0,2,f +7429,3626bpa3,14,1,f +7429,3626bpr0098,14,1,f +7429,3626bpx32,14,1,f +7429,3665,0,6,f +7429,3700,0,4,f +7429,3747a,7,4,f +7429,3795,7,1,f +7429,3933,8,1,f +7429,3934,8,1,f +7429,3937,7,1,f +7429,3958,6,1,f +7429,40378,0,2,f +7429,40379,0,2,f +7429,40379,8,1,f +7429,4070,7,2,f +7429,4085c,0,4,f +7429,4286,0,4,f +7429,4485,15,1,f +7429,4485,1,1,f +7429,4497,0,1,f +7429,4623,0,4,f +7429,6127,0,2,f +7429,6128,0,2,f +7429,6141,4,1,t +7429,6141,4,4,f +7429,6141,15,2,f +7429,6141,15,1,t +7429,6541,8,4,f +7429,6636,14,3,f +7429,75c30,8,1,f +7429,970c00,0,1,f +7429,970c00,1,1,f +7429,970c00,4,1,f +7429,973pa6c01,19,1,f +7429,973pb0391c01,19,1,f +7429,973px64c01,15,1,f +7429,x158,8,1,f +7429,x158,0,2,f +7434,266bc02,0,1,f +7437,2654,15,2,f +7437,2780,0,4,f +7437,3003,15,1,f +7437,30176,2,4,f +7437,3021,15,1,f +7437,3022,0,1,f +7437,3022,15,1,f +7437,3023,2,2,f +7437,3023,15,1,f +7437,3031,19,1,f +7437,30367b,15,1,f +7437,3039,0,1,f +7437,3040b,0,4,f +7437,3062b,19,3,f +7437,3070b,0,4,f +7437,32028,15,1,f +7437,3665,0,4,f +7437,3700,0,4,f +7437,3710,15,2,f +7437,3794b,0,4,f +7437,47457,15,1,f +7437,48336,15,3,f +7437,4871,15,1,f +7437,52501,15,2,f +7437,6091,15,2,f +7437,6091,0,2,f +7437,61252,0,4,f +7437,6141,0,1,f +7437,63864,15,2,f +7437,6541,4,4,f +7437,87087,15,2,f +7438,30374,36,2,f +7438,3626bpb0722,0,1,f +7438,64567,80,2,f +7438,92761pr0002,0,1,f +7438,970c00,0,1,f +7438,973pb1127c01,0,1,f +7441,3001,4,1,f +7441,3001,15,1,f +7441,3003,15,2,f +7441,3003,4,3,f +7441,3004,14,4,f +7441,3004,4,2,f +7441,3004,15,2,f +7441,3005pe1,4,2,f +7441,3020,1,2,f +7441,3021,14,2,f +7441,3034,1,1,f +7441,3039,47,1,f +7441,3039,4,1,f +7441,3040b,4,2,f +7441,3641,0,2,f +7441,3665,4,4,f +7441,4600,0,1,f +7441,4624,15,2,f +7441,6215,2,2,f +7444,3003pe2,14,1,f +7444,3021,4,1,f +7444,3039,4,1,f +7444,3660,14,2,f +7444,6564,2,1,f +7444,6565,2,1,f +7445,9608b1,9999,1,f +7445,9608b10,9999,1,f +7445,9608b11,9999,1,f +7445,9608b12,9999,1,f +7445,9608b13,9999,1,f +7445,9608b14,9999,1,f +7445,9608b15,9999,1,f +7445,9608b16,9999,1,f +7445,9608b2,9999,1,f +7445,9608b3,9999,1,f +7445,9608b4,9999,1,f +7445,9608b5,9999,1,f +7445,9608b6,9999,1,f +7445,9608b7,9999,1,f +7445,9608b8,9999,1,f +7445,9608b9,9999,1,f +7447,3003,14,1,f +7447,3020,14,1,f +7447,3022,14,1,f +7447,3039,14,2,f +7447,3039,47,1,f +7447,3062b,1,2,f +7447,3298p17,14,1,f +7447,3666,4,2,f +7447,3795,14,2,f +7447,3839b,4,1,f +7447,4070,14,2,f +7447,6564,1,1,f +7447,6565,1,1,f +7448,2496,0,2,f +7448,3626bpr0628,14,1,f +7448,42511,1,1,f +7448,87991,0,1,f +7448,88646,0,1,f +7448,970c00,272,1,f +7448,973pr1548c01,378,1,f +7449,2362b,0,7,f +7449,3004,0,7,f +7449,3005,0,3,f +7449,3062b,0,1,f +7449,3958,4,7,f +7449,85080,0,16,f +7451,11211,71,6,f +7451,11211,19,4,f +7451,11215,0,2,f +7451,11215,71,1,f +7451,11215,15,1,f +7451,11476,71,4,f +7451,11477,288,2,f +7451,11477,15,2,f +7451,15068,288,4,f +7451,15068,15,4,f +7451,15391,0,4,f +7451,15392,72,4,f +7451,15392,72,2,t +7451,15712,72,6,f +7451,18649,0,2,f +7451,18858pr0001,272,1,f +7451,20244,9999,1,f +7451,2412b,71,3,f +7451,2412b,0,3,f +7451,2654,47,6,f +7451,2780,0,4,f +7451,2780,0,2,t +7451,30162,71,1,f +7451,3020,71,2,f +7451,3020,19,2,f +7451,3021,288,4,f +7451,3021,15,4,f +7451,3022,71,2,f +7451,3023,15,7,f +7451,3023,25,2,f +7451,3023,72,2,f +7451,3023,288,7,f +7451,3023,19,6,f +7451,3024,25,2,f +7451,3024,15,2,f +7451,3024,288,2,f +7451,3024,15,1,t +7451,3024,25,1,t +7451,3024,288,1,t +7451,30374,41,1,f +7451,30408pr0008,15,1,f +7451,30414,0,4,f +7451,3062b,72,4,f +7451,3068b,288,2,f +7451,3068b,15,2,f +7451,3070b,71,1,t +7451,3070b,25,1,f +7451,3070b,71,1,f +7451,3070b,25,1,t +7451,32064a,72,4,f +7451,3623,71,4,f +7451,3626cpr1149,78,1,f +7451,3626cpr1515,78,1,f +7451,3626cpr1617,78,1,f +7451,3839b,72,2,f +7451,4006,0,1,f +7451,4081b,72,4,f +7451,41678,72,2,f +7451,41769,15,1,f +7451,41769,288,1,f +7451,41770,15,1,f +7451,41770,288,1,f +7451,4274,1,2,t +7451,4274,1,4,f +7451,43898,15,1,f +7451,43898pr1001,288,1,f +7451,4519,71,4,f +7451,4697b,71,2,f +7451,4697b,71,2,t +7451,51739,15,2,f +7451,51739,288,2,f +7451,54200,288,2,f +7451,54200,15,1,t +7451,54200,288,1,t +7451,54200,15,2,f +7451,58247,0,1,f +7451,60849,71,2,t +7451,60849,71,4,f +7451,61409,72,8,f +7451,6141,72,2,t +7451,6141,36,6,f +7451,6141,35,6,f +7451,6141,36,1,t +7451,6141,72,10,f +7451,6141,35,2,t +7451,62462,179,4,f +7451,62885,0,2,f +7451,63965,72,4,f +7451,6632,72,4,f +7451,85984,0,8,f +7451,85984,19,2,f +7451,87087,72,4,f +7451,88283,0,1,f +7451,93606,15,1,f +7451,93606,288,1,f +7451,970c00pr0728,484,1,f +7451,970c00pr0735,15,1,f +7451,970c00pr0815,28,1,f +7451,973pr2788c01,28,1,f +7451,973pr2795c01,15,1,f +7451,973pr2917c01,72,1,f +7451,99206,15,1,f +7451,99206,0,3,f +7451,99207,71,4,f +7451,99780,15,4,f +7451,99780,0,9,f +7451,99780,72,5,f +7452,11211,19,2,f +7452,3001,71,1,f +7452,3010,4,1,f +7452,3020,0,1,f +7452,3065,47,2,f +7452,3795,4,3,f +7452,4079b,70,4,f +7452,44567a,14,2,f +7452,4600,0,2,f +7452,48336,0,2,f +7452,6014b,14,4,f +7452,87697,0,4,f +7452,98138,36,1,f +7454,12891pr0001,15,1,f +7454,12895pr0001a,15,1,f +7454,30162,0,1,f +7454,3626bpr1173,14,1,f +7454,88646,0,1,f +7454,970c00,15,1,f +7454,973pr0807c01,272,1,f +7455,2412b,0,2,f +7455,2711,0,2,f +7455,2780,0,10,f +7455,2825,7,2,f +7455,2825,0,2,f +7455,2853,7,2,f +7455,2854,7,2,f +7455,2857,0,4,f +7455,2900,8,4,f +7455,2951,0,1,f +7455,3004,7,1,f +7455,3023,0,3,f +7455,3023,14,3,f +7455,3023,7,4,f +7455,3031,14,1,f +7455,3032,14,1,f +7455,3068b,7,1,f +7455,3069b,14,1,f +7455,3623,14,2,f +7455,3647,7,1,f +7455,3650b,7,1,f +7455,3665,14,2,f +7455,3673,7,3,f +7455,3700,14,5,f +7455,3700,7,3,f +7455,3701,0,2,f +7455,3701,14,5,f +7455,3702,14,6,f +7455,3702,0,2,f +7455,3704,0,2,f +7455,3705,0,5,f +7455,3706,0,4,f +7455,3707,0,1,f +7455,3708,0,1,f +7455,3709,14,8,f +7455,3710,14,9,f +7455,3713,7,7,f +7455,3738,14,2,f +7455,3743,7,1,f +7455,3749,7,6,f +7455,3894,14,2,f +7455,3895,14,2,f +7455,3941,46,1,f +7455,4032a,14,1,f +7455,4070,0,4,f +7455,4143,7,4,f +7455,4150,14,1,f +7455,4261,7,2,f +7455,4262,7,3,f +7455,4265a,7,10,f +7455,4266,14,4,f +7455,4274,7,1,f +7455,4275b,14,4,f +7455,4276b,14,4,f +7455,4460a,14,2,f +7455,4519,0,1,f +7455,4716,0,1,f +7455,6141,0,2,f +7455,flex08c05l,7,2,f +7456,3001a,4,1,f +7456,3002a,14,2,f +7456,3002a,4,2,f +7456,3004,47,2,f +7456,3010,47,1,f +7456,3010p20c,1,1,f +7456,3010p20c,4,1,f +7456,3020,0,2,f +7456,3020,1,1,f +7456,3023,14,6,f +7456,3030,4,1,f +7456,3035,1,1,f +7456,3037,47,3,f +7456,3135,1,1,f +7456,3136,1,1,f +7456,3137c01,0,3,f +7456,3137c02,0,2,f +7456,3139,0,6,f +7456,7b,0,4,f +7457,2780,0,4,f +7457,30293,6,1,f +7457,30294,6,1,f +7457,32013,0,1,f +7457,32013,19,1,f +7457,32039,0,1,f +7457,32062,0,4,f +7457,32073,0,1,f +7457,32172,0,2,f +7457,32173,19,2,f +7457,32174,0,4,f +7457,32269,7,1,f +7457,32270,7,2,f +7457,32474,0,2,f +7457,32475,6,2,f +7457,32482,19,2,f +7457,32489,6,1,f +7457,32553,7,1,f +7457,32554,57,1,f +7457,32560,19,2,f +7457,32568,6,1,f +7457,3706,0,1,f +7457,3713,7,2,f +7457,4519,0,8,f +7457,6553,19,1,f +7457,gbiocd2001,89,1,f +7458,x469ba,0,1,f +7458,x469bb,0,1,f +7462,2444,73,1,f +7462,2460,0,2,f +7462,2780,0,2,f +7462,30367b,0,1,t +7462,43093,1,2,f +7462,4740,71,1,t +7462,47430,272,2,f +7462,47431,272,2,f +7462,47432,73,2,f +7462,47452,73,2,f +7462,47454,272,2,f +7462,47455,379,10,f +7462,47456,73,2,f +7462,47457,73,4,f +7462,47471pb01,73,1,f +7462,50602,135,2,f +7462,50625,135,1,f +7462,50629,135,2,f +7462,50655pb01,297,1,f +7462,50658c01pb01,73,1,f +7462,bb153pb10,272,1,f +7463,2412b,15,1,f +7463,2420,4,2,f +7463,2431,15,1,f +7463,2436,4,2,f +7463,2540,0,1,f +7463,2555,15,4,f +7463,3020,0,2,f +7463,3020,4,1,f +7463,3023,72,3,f +7463,3031,4,1,f +7463,3069b,4,2,f +7463,3070b,15,1,t +7463,3070b,15,4,f +7463,32028,15,1,f +7463,3623,15,2,f +7463,3710,0,1,f +7463,3710,72,2,f +7463,3788,4,1,f +7463,3795,15,1,f +7463,4081b,0,2,f +7463,44674,4,1,f +7463,48336,15,1,f +7463,50944pr0001,0,4,f +7463,50949,4,1,f +7463,50950,0,4,f +7463,50951,0,4,f +7463,54200,15,2,f +7463,54200,4,2,f +7463,6157,15,2,f +7463,6215,4,2,f +7464,11476,0,2,f +7464,15573,0,6,f +7464,15712,71,2,f +7464,18649,0,1,f +7464,22385,0,1,f +7464,30157,72,1,f +7464,3021,0,1,f +7464,3022,0,2,f +7464,3022,14,1,f +7464,3023,46,2,f +7464,3023,0,2,f +7464,3070b,71,1,f +7464,3673,71,4,f +7464,3705,0,2,f +7464,3839b,0,1,f +7464,3839b,71,1,f +7464,4081b,72,2,f +7464,42610,71,4,f +7464,43722,0,1,f +7464,43723,0,1,f +7464,44728,0,1,f +7464,54200,46,2,f +7464,54200,71,3,f +7464,60483,0,4,f +7464,61252,0,1,f +7464,6141,52,1,f +7464,63864,0,3,f +7464,64644,0,2,f +7464,85943,72,2,f +7464,92409,0,4,f +7464,98100,0,1,f +7464,98721,0,1,f +7464,99780,4,4,f +7464,99780,0,1,f +7465,3001,14,1,f +7465,3003,14,1,f +7465,3003pe1,14,1,f +7465,3004,14,1,f +7465,3021,4,2,f +7466,2346,0,2,f +7466,2348b,47,1,f +7466,2349a,14,1,f +7466,2431,14,1,f +7466,2433,0,2,f +7466,251,0,1,f +7466,2540,0,1,f +7466,2817,0,1,f +7466,3020,14,2,f +7466,3022,14,2,f +7466,3023,14,4,f +7466,3023,15,2,f +7466,3023,0,3,f +7466,3024,46,2,f +7466,3024,36,2,f +7466,3062b,0,2,f +7466,3065,47,2,f +7466,3068bp05,15,1,f +7466,3068bp06,15,1,f +7466,3069b,0,1,f +7466,3070b,14,2,f +7466,3314,0,1,f +7466,3317,14,1,f +7466,3433,14,1,f +7466,3482,14,2,f +7466,3626bpr0001,14,1,f +7466,3665,14,2,f +7466,3666,14,2,f +7466,3679,7,2,f +7466,3680,14,1,f +7466,3706,0,1,f +7466,3710,14,2,f +7466,3823,47,1,f +7466,3829c01,4,1,f +7466,3832,14,1,f +7466,3833,4,1,f +7466,3836,6,1,f +7466,3837,8,1,f +7466,4070,14,2,f +7466,4084,0,2,f +7466,4265a,7,2,f +7466,4275b,14,2,f +7466,4276b,14,3,f +7466,4315,14,1,f +7466,4531,14,1,f +7466,4589,0,1,f +7466,4594,47,1,f +7466,4600,0,1,f +7466,4624,14,2,f +7466,4626,14,1,f +7466,6141,0,2,f +7466,6141,47,2,f +7466,6141,7,2,f +7466,6141,46,2,f +7466,970c00,4,1,f +7466,973pb0203c01,15,1,f +7467,11816pr0002,78,1,f +7467,3003,322,1,f +7467,92255,226,1,f +7467,92456pr0019c01,78,1,f +7467,92818pr0002c01,26,1,f +7468,14226c11,0,1,f +7468,2445,7,1,f +7468,2454a,15,2,f +7468,2456,15,2,f +7468,2465,15,1,f +7468,3003,15,3,f +7468,3004,8,1,f +7468,3009,15,1,f +7468,30151a,4,1,f +7468,3027,2,1,f +7468,3029,2,1,f +7468,3038,15,2,f +7468,3062b,1,4,f +7468,3062b,73,4,f +7468,33085,14,4,f +7468,3626bp04,14,1,f +7468,3626bpr0001,14,2,f +7468,3666,0,1,f +7468,3852b,6,1,f +7468,3940b,8,1,f +7468,3957a,15,4,f +7468,43337,15,1,f +7468,4476b,15,2,f +7468,4485,0,2,f +7468,4485,1,1,f +7468,4495a,5,2,f +7468,4495a,0,2,f +7468,4523,1,1,f +7468,4599a,14,5,f +7468,4599a,15,4,f +7468,4719,5,2,f +7468,55298,8,1,f +7468,6140,15,2,f +7468,6231,15,2,f +7468,92851,47,4,f +7468,970c00,1,1,f +7468,970c00,0,2,f +7468,973c03,15,2,f +7468,973pr1245c01,1,1,f +7469,468c03,7,1,f +7470,10113,29,1,f +7470,10183,45,1,f +7470,24087,29,1,f +7470,3626cpr2087,78,1,f +7470,6124,45,1,f +7470,88646,0,1,f +7470,970c00pr1167,0,1,f +7470,973pr3629c01,29,1,f +7472,3002,2,1,f +7472,3004,2,4,f +7472,3004p0a,2,1,f +7472,3022,2,1,f +7472,3039,2,1,f +7473,2340,4,2,f +7473,2357,14,4,f +7473,2377,15,2,f +7473,2412b,71,6,f +7473,2419,72,2,f +7473,2432,71,6,f +7473,2449,0,2,f +7473,2449,15,2,f +7473,2456,15,1,f +7473,2516,14,4,f +7473,2540,72,2,f +7473,2569,72,2,f +7473,2654,71,15,f +7473,298c02,4,2,f +7473,298c02,4,1,t +7473,3001,0,2,f +7473,3004,0,3,f +7473,3004,4,6,f +7473,3007,4,2,f +7473,3007,0,1,f +7473,30086,72,1,f +7473,3009,4,9,f +7473,30194,72,1,f +7473,3020,15,2,f +7473,3020,72,4,f +7473,3021,72,2,f +7473,3021,1,1,f +7473,3023,46,1,f +7473,3023,72,9,f +7473,3028,0,2,f +7473,3032,72,1,f +7473,3034,0,2,f +7473,3034,72,2,f +7473,3034,15,2,f +7473,3036,4,1,f +7473,3037,4,5,f +7473,3037px7,4,1,f +7473,30389b,4,3,f +7473,3039pr0002,15,1,f +7473,3040b,15,2,f +7473,3040b,4,2,f +7473,30503,0,2,f +7473,3062b,14,3,f +7473,3069b,14,1,f +7473,3069b,33,2,f +7473,3070b,34,1,f +7473,3070b,36,1,t +7473,3070b,34,1,t +7473,3070b,36,1,f +7473,3245b,15,4,f +7473,32474,71,1,f +7473,3455,0,2,f +7473,3460,4,1,f +7473,3622,4,2,f +7473,3623,72,2,f +7473,3624,15,1,f +7473,3626bpb0181,14,1,f +7473,3626bpb0196,14,1,f +7473,3626bpr0282,14,1,f +7473,3666,15,1,f +7473,3666,72,2,f +7473,3679,71,1,f +7473,3680,0,1,f +7473,3684,0,1,f +7473,3710,72,1,f +7473,3710,15,2,f +7473,3795,14,1,f +7473,3795,0,2,f +7473,3795,72,3,f +7473,3829c01,14,2,f +7473,3830,4,2,f +7473,3831,4,2,f +7473,3832,0,2,f +7473,3834,15,2,f +7473,3835,0,1,f +7473,3840,25,2,f +7473,3899,15,1,f +7473,3937,72,2,f +7473,3938,4,1,f +7473,3940b,72,2,f +7473,3962b,0,1,f +7473,4032a,71,3,f +7473,4079,14,1,f +7473,4162,15,2,f +7473,41769,4,3,f +7473,41769,72,1,f +7473,41770,72,1,f +7473,41770,4,3,f +7473,41855,0,1,f +7473,42022,15,2,f +7473,42022,4,4,f +7473,4286,72,2,f +7473,43720,4,2,f +7473,43721,4,2,f +7473,44728,72,3,f +7473,45406,4,1,f +7473,45677,15,1,f +7473,4589,0,2,f +7473,4589,14,4,f +7473,46103,40,1,f +7473,46413,40,1,f +7473,47404,72,1,f +7473,47404,4,2,f +7473,47405,0,1,f +7473,4858,4,2,f +7473,4859,0,1,f +7473,4862,40,6,f +7473,4863,4,2,f +7473,4865a,71,7,f +7473,6019,71,6,f +7473,6134,0,1,f +7473,6141,0,1,t +7473,6141,0,8,f +7473,6187,4,1,f +7473,6231,71,2,f +7473,6564,4,1,f +7473,6565,4,1,f +7473,73983,0,2,f +7473,970c00,0,3,f +7473,973pr1187c01,0,1,f +7473,973pr1667c01,0,2,f +7475,55804,0,1,f +7475,55805,0,4,f +7475,55806,0,2,f +7476,2431,308,2,f +7476,2555,0,1,f +7476,2587,148,1,f +7476,2877,0,5,f +7476,3004,28,2,f +7476,3005,72,2,f +7476,3008,72,1,f +7476,30137,70,4,f +7476,3020,1,1,f +7476,3023,71,3,f +7476,3029,70,1,f +7476,3035,19,1,f +7476,30385,82,1,f +7476,3040b,0,5,f +7476,3062b,70,8,f +7476,3070b,0,1,t +7476,3070b,0,1,f +7476,32034,71,1,f +7476,32123b,14,2,f +7476,32530,0,1,f +7476,3626bpr0411,14,1,f +7476,3626bpr0753b,14,1,f +7476,3666,70,2,f +7476,3673,71,1,t +7476,3673,71,1,f +7476,3700,71,1,f +7476,3710,72,3,f +7476,3794b,72,2,f +7476,3795,70,1,f +7476,3846pr0002,71,1,f +7476,3847,148,1,f +7476,3937,0,2,f +7476,3938,71,2,f +7476,4085c,71,2,f +7476,41677,0,1,f +7476,4274,1,1,f +7476,4274,1,1,t +7476,4286,70,2,f +7476,4505,0,1,f +7476,4510,72,1,f +7476,4522,0,2,f +7476,4740,0,1,f +7476,47905,0,1,f +7476,59900,182,2,f +7476,59900,71,2,f +7476,59900,0,1,f +7476,6141,0,1,t +7476,6141,0,3,f +7476,6182,71,1,f +7476,64566,308,2,f +7476,64647,57,1,t +7476,64647,288,1,f +7476,64647,288,1,t +7476,64647,57,2,f +7476,85080,0,2,f +7476,87083,72,1,f +7476,87580,71,1,f +7476,89520,148,1,f +7476,92946,72,4,f +7476,95049,72,1,f +7476,95050,72,1,f +7476,95051,72,1,f +7476,95052,72,1,f +7476,95053,72,1,f +7476,95054,72,2,f +7476,95342pr0001,28,1,f +7476,95343,70,1,f +7476,95344,70,1,t +7476,95344,70,1,f +7476,970c00pr0154,0,1,f +7476,970c00pr0195,70,1,f +7476,973pr1626c01,0,1,f +7476,973pr1721bc01,71,1,f +7477,3626bpr0949,14,1,f +7477,88646,0,1,f +7477,92290,297,1,f +7477,93069,15,1,f +7477,95351pr0003,378,1,f +7477,973pr2030c01,14,1,f +7477,99245pr0001,15,1,f +7479,11211,19,1,f +7479,15118,15,1,f +7479,2412b,72,5,f +7479,2431,14,4,f +7479,2431,4,1,f +7479,2446,15,1,f +7479,2447,40,2,t +7479,2496,0,2,f +7479,3003,14,2,f +7479,3004,4,2,f +7479,3004,15,2,f +7479,3005,15,6,f +7479,3009,4,2,f +7479,3009,15,5,f +7479,3010,4,3,f +7479,30153,42,1,f +7479,30153,36,1,f +7479,3021,15,1,f +7479,3021,1,5,f +7479,3023,33,6,f +7479,3024,46,4,f +7479,3024,33,1,t +7479,3024,46,1,t +7479,3024,33,4,f +7479,3031,4,1,f +7479,3032,72,1,f +7479,3032,4,2,f +7479,3037,14,1,f +7479,3037,15,1,f +7479,3040b,4,2,f +7479,3040b,15,2,f +7479,3062b,14,1,f +7479,3069b,33,5,f +7479,3069b,82,1,f +7479,3069b,36,2,f +7479,3069b,15,5,f +7479,3069bpr0100,2,2,f +7479,3245c,15,2,f +7479,3622,15,4,f +7479,3626cpr0389,14,1,f +7479,3626cpr0499,14,1,f +7479,3626cpr0677,14,1,f +7479,3626cpr1145,14,1,f +7479,3626cpr1146,14,1,f +7479,3665,4,12,f +7479,3666,15,5,f +7479,3666,4,8,f +7479,3666,72,3,f +7479,3710,15,5,f +7479,3710,72,3,f +7479,3710,14,4,f +7479,3821,4,1,f +7479,3822,4,1,f +7479,3829c01,14,1,f +7479,3829c01,1,1,f +7479,3834,320,1,f +7479,3835,0,1,f +7479,3838,14,1,f +7479,3899,14,1,f +7479,3900,15,1,f +7479,3938,71,2,f +7479,3957b,15,1,t +7479,3957b,15,1,f +7479,3958,4,1,f +7479,3958,72,1,f +7479,4079b,1,1,f +7479,4079b,14,1,f +7479,41334,72,1,f +7479,4150pr0022,71,1,f +7479,41879a,272,1,f +7479,42511,25,1,f +7479,4449,0,1,f +7479,4488,0,8,f +7479,4599b,14,1,f +7479,4599b,14,1,t +7479,46303,71,1,f +7479,4697b,71,2,f +7479,4697b,71,1,t +7479,50745,4,4,f +7479,50745,72,4,f +7479,50859b,0,1,f +7479,50861,0,2,f +7479,50862,71,2,f +7479,50950,15,2,f +7479,52031,4,1,f +7479,54200,46,2,t +7479,54200,33,4,f +7479,54200,33,1,t +7479,54200,4,2,f +7479,54200,46,3,f +7479,54200,4,1,t +7479,58181,15,1,f +7479,58380,15,1,f +7479,58381,15,1,f +7479,59900,33,1,f +7479,60023stk01,9999,1,t +7479,60023stk02,9999,1,t +7479,6014b,15,4,f +7479,6014b,71,4,f +7479,60581,4,2,f +7479,60598,4,3,f +7479,60614,72,4,f +7479,6141,36,1,t +7479,6141,36,1,f +7479,61482,71,1,f +7479,61482,71,1,t +7479,6158,72,1,f +7479,61780,70,1,f +7479,63868,71,2,f +7479,6636,1,2,f +7479,85959pat0003,36,1,f +7479,85984,72,2,f +7479,86035,1,1,f +7479,87552,41,4,f +7479,87609,4,1,f +7479,87697,0,8,f +7479,89536,15,1,f +7479,91988,71,4,f +7479,92583,41,2,f +7479,92585,4,1,f +7479,92590,28,1,f +7479,93140,15,1,f +7479,96874,25,1,t +7479,970c00,0,1,f +7479,970c00,72,1,f +7479,970c00,4,1,f +7479,970c00pr0408,0,1,f +7479,973pr1197c01,15,1,f +7479,973pr1693c01,0,1,f +7479,973pr1772c01,10,1,f +7479,973pr1914c01,4,1,f +7479,973pr2189c01,0,1,f +7479,98835,4,1,f +7479,99206,71,5,f +7479,99780,72,2,f +7484,3011,10,3,f +7484,31059,2,5,f +7484,31061,484,14,f +7484,3437,10,5,f +7484,3437,19,5,f +7484,3437,72,2,f +7484,3437,41,2,f +7484,3437,33,2,f +7484,3437,1,4,f +7484,3437,27,8,f +7484,3437,71,4,f +7484,40666,1,6,f +7484,4199,72,2,f +7484,44524,72,2,f +7484,44524,1,3,f +7484,44524,28,2,f +7484,51262,19,2,f +7484,51262,1,1,f +7484,61310,10,1,f +7484,61346,25,2,f +7484,61348,14,2,f +7484,61349,27,2,f +7484,6510,14,1,f +7484,6510,4,1,f +7484,6510,5,1,f +7484,6510,10,2,f +7484,75930,484,2,f +7484,75931,191,1,f +7484,75939,10,2,f +7484,75940,4,2,f +7484,89158,2,4,f +7486,2452,0,2,f +7486,2654,7,2,f +7486,3021,4,1,f +7486,3022,0,1,f +7486,3024,46,2,f +7486,3298,4,1,f +7486,3626bp7e,14,1,f +7486,3795,15,1,f +7486,3829c01,4,1,f +7486,3962a,0,1,f +7486,4079,4,1,f +7486,4081b,7,2,f +7486,4485,1,1,f +7486,4865a,41,1,f +7486,6117,7,2,f +7486,6120,7,2,f +7486,970c00,1,1,f +7486,973p70c01,6,1,f +7489,3020,72,1,f +7489,3022,70,1,f +7489,32530,0,1,f +7489,3626bpr0511,378,1,f +7489,3839b,0,1,f +7489,40234,71,1,f +7489,4489b,70,2,f +7489,4497,135,2,f +7489,59900,320,1,f +7489,6019,0,2,f +7489,60751,132,1,f +7489,60752,135,1,f +7489,61184,71,1,f +7489,6157,0,1,f +7489,970x199,70,1,f +7489,973pr1349c01,70,1,f +7493,11477,272,2,f +7493,15573,25,4,f +7493,15573,15,19,f +7493,15573,272,1,f +7493,15573,19,6,f +7493,2357,15,2,f +7493,2456,14,2,f +7493,2654,47,7,f +7493,3001,15,3,f +7493,3002,15,3,f +7493,3003,4,2,f +7493,3003,15,1,f +7493,3004,272,2,f +7493,3008,15,2,f +7493,3010,272,1,f +7493,3010,15,2,f +7493,3020,272,2,f +7493,3020,15,6,f +7493,3021,15,6,f +7493,3021,272,3,f +7493,3022,15,2,f +7493,3022,14,1,f +7493,3023,2,2,f +7493,3023,272,9,f +7493,3024,15,1,f +7493,3024,15,1,t +7493,3034,15,4,f +7493,3035,15,2,f +7493,3037,15,2,f +7493,3039,272,1,f +7493,3068b,19,2,f +7493,3069b,15,1,f +7493,3069b,47,1,f +7493,3069b,41,2,f +7493,3070b,272,2,f +7493,3070b,272,1,t +7493,32028,15,1,f +7493,3622,15,2,f +7493,3623,272,1,f +7493,3710,15,4,f +7493,3710,272,9,f +7493,3795,71,1,f +7493,40227stk01,9999,1,f +7493,44728,15,2,f +7493,4856a,15,1,f +7493,54200,272,1,t +7493,54200,15,2,f +7493,54200,272,4,f +7493,54200,15,1,t +7493,60477,15,2,f +7493,6111,15,2,f +7493,6141,15,3,f +7493,6141,179,1,t +7493,6141,15,1,t +7493,6141,179,2,f +7493,63864,15,2,f +7493,6636,15,4,f +7493,85984,15,4,f +7493,85984,0,2,f +7493,87087,15,4,f +7493,88930,15,2,f +7493,90194,15,1,f +7493,98138,25,12,f +7493,98138,41,1,t +7493,98138,41,1,f +7493,98138,25,1,t +7493,99206,15,2,f +7493,99780,15,2,f +7496,32062,0,6,f +7496,32173,8,2,f +7496,32174,6,10,f +7496,32174,57,1,f +7496,32270,7,1,f +7496,3737,0,1,f +7496,3749,19,4,f +7496,4204590,9999,1,f +7496,44135,8,1,f +7496,44136,8,1,f +7496,44138,6,2,f +7496,44139,8,1,f +7496,44140,6,1,f +7496,44142,179,1,f +7496,44148,8,2,f +7496,44247,8,1,f +7496,44807,6,1,f +7496,44816,179,2,f +7496,4519,7,3,f +7496,45749,8,2,f +7496,6538b,8,1,f +7496,kraataund,178,1,f +7499,2412b,0,5,f +7499,2436,0,1,f +7499,2654,47,2,f +7499,2780,0,7,f +7499,2780,0,1,t +7499,2877,15,2,f +7499,298c02,15,1,t +7499,298c02,15,2,f +7499,3003,71,2,f +7499,3004,27,7,f +7499,3005,72,2,f +7499,3010,27,2,f +7499,30194,72,1,f +7499,3020,0,3,f +7499,3021,72,1,f +7499,3022,15,1,f +7499,3023,15,8,f +7499,30237a,72,1,f +7499,30325,1,1,f +7499,3034,72,4,f +7499,30385,42,2,f +7499,3040b,72,2,f +7499,3068b,72,1,f +7499,3069b,27,2,f +7499,32002,72,1,t +7499,32002,72,8,f +7499,32015,71,1,f +7499,32018,0,2,f +7499,32054,71,2,f +7499,32064b,0,2,f +7499,32123b,14,1,t +7499,32123b,14,4,f +7499,32278,27,2,f +7499,3460,27,5,f +7499,3626bpr0560,14,1,f +7499,3660,27,2,f +7499,3666,0,3,f +7499,3700,71,5,f +7499,3701,71,2,f +7499,3713,4,1,t +7499,3713,4,2,f +7499,3795,71,5,f +7499,3841,72,1,f +7499,3941,25,2,f +7499,3941,0,2,f +7499,4032a,0,2,f +7499,4079,15,1,f +7499,4150,0,2,f +7499,4185,27,8,f +7499,42003,71,4,f +7499,4274,1,1,t +7499,4274,1,2,f +7499,43093,1,2,f +7499,44567a,0,1,f +7499,4519,71,2,f +7499,4599a,71,4,f +7499,4740,71,2,f +7499,47508,25,1,f +7499,50943,71,1,f +7499,50950,27,4,f +7499,54200,47,2,f +7499,54200,27,1,t +7499,54200,47,1,t +7499,54200,27,6,f +7499,55981,71,2,f +7499,57563,25,4,f +7499,59426,72,6,f +7499,60470a,71,1,f +7499,60475a,0,2,f +7499,60483,72,2,f +7499,60484,0,2,f +7499,61072,135,2,f +7499,6141,27,1,t +7499,6141,27,8,f +7499,64450,0,1,f +7499,64712,0,4,f +7499,64728,4,1,f +7499,64783,72,2,f +7499,64784pat01,42,1,f +7499,64785,72,1,f +7499,6558,1,4,f +7499,970c00pr0122,1,1,f +7499,973pr1433c01,71,1,f +7500,3001a,14,2,f +7500,3003,4,4,f +7500,3004,14,2,f +7500,3004,4,9,f +7500,3005,14,18,f +7500,3008,0,2,f +7500,3008,4,5,f +7500,3009,0,4,f +7500,3009,14,10,f +7500,3010,0,4,f +7500,3010,1,6,f +7500,3010,14,8,f +7500,3010,4,6,f +7500,3020,4,3,f +7500,3020,14,2,f +7500,3020,1,2,f +7500,3021,1,2,f +7500,3021,14,10,f +7500,3021,4,3,f +7500,3022,1,2,f +7500,3022,7,24,f +7500,3022,4,9,f +7500,3023,14,17,f +7500,3023,7,8,f +7500,3023,4,7,f +7500,3023,1,25,f +7500,3024,1,2,f +7500,3024,14,6,f +7500,3027,4,3,f +7500,3027,14,1,f +7500,3030,4,2,f +7500,3031,14,2,f +7500,3031,4,1,f +7500,3032,4,2,f +7500,3032,14,2,f +7500,3034,4,2,f +7500,3039,4,2,f +7500,3040b,4,5,f +7500,3040b,14,10,f +7500,3068b,4,18,f +7500,3069b,14,4,f +7500,3149c01,14,4,f +7500,3460,7,8,f +7500,3460,1,8,f +7500,3460,4,11,f +7500,3460,14,2,f +7500,3647,7,9,f +7500,3648a,7,12,f +7500,3649,7,1,f +7500,3650a,7,1,f +7500,3651,7,17,f +7500,3652,7,4,f +7500,3660,4,11,f +7500,3666,1,15,f +7500,3666,14,2,f +7500,3666,4,8,f +7500,3673,7,42,f +7500,3679,7,4,f +7500,3680,4,4,f +7500,3700,4,22,f +7500,3700,14,2,f +7500,3700,1,1,f +7500,3701,4,11,f +7500,3701,14,2,f +7500,3701,1,4,f +7500,3702,1,1,f +7500,3702,4,8,f +7500,3703,4,10,f +7500,3704,0,9,f +7500,3705,0,12,f +7500,3706,0,1,f +7500,3707,0,6,f +7500,3708,0,3,f +7500,3709,1,1,f +7500,3709,4,12,f +7500,3710,7,8,f +7500,3710,14,5,f +7500,3710,4,23,f +7500,3710,1,6,f +7500,3713,7,16,f +7500,3736,7,1,f +7500,3737,0,2,f +7500,3738,4,2,f +7500,3739,7,4,f +7500,3740,0,4,f +7500,3743,7,3,f +7500,9244,7,5,f +7501,15494pr0001,84,1,f +7501,15501,70,1,f +7501,30132,72,1,f +7501,3626cpr1307,179,1,f +7501,64728,4,1,f +7501,88646,0,1,f +7501,970c00pr0599,70,1,f +7501,973pr2524c01,84,1,f +7502,2357,7,2,f +7502,2413,4,1,f +7502,2420,4,2,f +7502,2436,4,1,f +7502,2540,7,2,f +7502,2654,7,2,f +7502,2711,0,4,f +7502,2717,1,2,f +7502,2730,7,1,f +7502,2730,4,12,f +7502,2736,7,2,f +7502,2738,0,2,f +7502,2743,4,2,f +7502,2744,4,2,f +7502,2744,7,2,f +7502,2780,0,1,t +7502,2780,0,68,f +7502,2817,4,2,f +7502,2825,0,2,f +7502,2825,7,1,f +7502,2876,7,1,f +7502,2900,8,9,f +7502,2901,0,3,f +7502,2906,0,1,f +7502,2907,7,1,f +7502,2908,7,1,f +7502,3005,7,3,f +7502,3020,0,4,f +7502,3020,4,2,f +7502,3021,4,2,f +7502,3022,0,1,f +7502,3022,7,1,f +7502,3023,7,14,f +7502,3023,4,9,f +7502,3039,7,2,f +7502,3068b,0,2,f +7502,3069b,14,4,f +7502,3069b,7,2,f +7502,3070b,14,1,t +7502,3070b,14,4,f +7502,3460,4,7,f +7502,3460,0,8,f +7502,3482,15,4,f +7502,3483,0,4,f +7502,3623,4,5,f +7502,3623,7,3,f +7502,3648a,7,2,f +7502,3650a,7,2,f +7502,3651,7,5,f +7502,3660,4,2,f +7502,3665,4,2,f +7502,3665,4,2,t +7502,3666,0,4,f +7502,3666,7,1,f +7502,3666,4,12,f +7502,3673,7,2,f +7502,3700,7,15,f +7502,3700,4,6,f +7502,3701,4,9,f +7502,3701,0,1,f +7502,3702,4,3,f +7502,3702,7,3,f +7502,3703,4,4,f +7502,3704,0,5,f +7502,3705,0,13,f +7502,3706,0,5,f +7502,3707,0,5,f +7502,3708,0,5,f +7502,3709,4,6,f +7502,3709,7,2,f +7502,3710,4,3,f +7502,3710,7,3,f +7502,3713,7,15,f +7502,3713,7,1,t +7502,3736,7,1,f +7502,3737,0,1,f +7502,3738,7,5,f +7502,3738,4,5,f +7502,3749,7,3,f +7502,3795,4,2,f +7502,3795,7,1,f +7502,3894,7,1,f +7502,3894,4,16,f +7502,3895,4,8,f +7502,3960,7,1,f +7502,4019,7,2,f +7502,4032a,7,2,f +7502,4143,7,10,f +7502,4185,7,3,f +7502,4262,4,2,f +7502,4263,7,2,f +7502,4265a,7,1,t +7502,4265a,7,45,f +7502,4266,4,2,f +7502,4273b,7,10,f +7502,4274,7,1,t +7502,4274,7,10,f +7502,4282,0,4,f +7502,4286,7,2,f +7502,4477,4,4,f +7502,4519,0,8,f +7502,4716,0,2,f +7502,4865a,4,4,f +7502,6141,34,1,f +7502,6141,36,1,f +7502,6141,36,1,t +7502,6141,34,1,t +7502,70278,0,1,f +7502,75c10,8,1,f +7502,75c16,8,1,f +7502,9244,7,4,f +7502,flex08c04l,7,2,f +7502,flex08c05l,7,2,f +7502,flex08c15l,7,1,f +7502,flex08c20l,7,1,f +7502,rb00164,0,1,f +7503,2432,13,1,f +7503,2540,15,1,f +7503,2546p01,4,1,f +7503,298c02,15,1,f +7503,298c02,15,1,t +7503,3023,15,1,f +7503,3033,14,1,f +7503,3062b,15,1,f +7503,3069b,15,2,f +7503,3622px1,15,1,f +7503,3626bp02,14,1,f +7503,3626bp03,14,1,f +7503,3741,2,1,f +7503,3742,5,3,f +7503,3742,5,1,t +7503,3795,15,1,f +7503,3899,5,1,f +7503,3960,13,1,f +7503,4079,5,1,f +7503,4095,15,1,f +7503,4349,0,1,f +7503,4476b,15,1,f +7503,4485,1,1,f +7503,4589,15,2,f +7503,4871,15,1,f +7503,6020,8,1,f +7503,6093,0,1,f +7503,6141,7,1,t +7503,6141,7,4,f +7503,6228b,7,1,f +7503,970x001,14,1,f +7503,970x026,14,1,f +7503,973pr1204c01,15,1,f +7503,973px34c01,15,1,f +7504,2335px10,7,1,f +7504,2446,0,1,f +7504,2458,1,1,f +7504,2470,6,4,f +7504,2570,6,1,f +7504,2594,0,1,f +7504,2926,0,2,f +7504,3004,7,2,f +7504,30145,19,1,f +7504,3020,6,2,f +7504,30236,0,1,f +7504,30237a,8,1,f +7504,30273,8,1,f +7504,30275,8,1,f +7504,3044c,0,4,f +7504,3626bpx68,14,1,f +7504,3626bpx69,14,1,f +7504,3659,8,2,f +7504,3684,7,2,f +7504,3688,1,1,f +7504,3846p4e,7,1,f +7504,3849,0,1,f +7504,3941,0,4,f +7504,4286,8,4,f +7504,4495a,1,1,f +7504,4498,6,1,f +7504,59,383,1,f +7504,6212,7,1,f +7504,87692,4,1,f +7504,87693,4,1,t +7504,87694,4,1,t +7504,970c00pb014,0,1,f +7504,970x026,4,1,f +7504,973px115c01,8,1,f +7504,973px116c01,8,1,f +7505,10201,0,4,f +7505,11253,0,4,f +7505,11458,0,1,f +7505,11476,71,2,f +7505,14769,0,2,f +7505,15303,36,3,f +7505,15400,72,2,f +7505,15571,4,1,f +7505,15571,0,1,f +7505,15712,0,2,f +7505,18649,0,8,f +7505,18671,71,2,f +7505,18675pr0004b,36,1,f +7505,18675pr0005,36,1,f +7505,18675pr0006,0,1,f +7505,18980,71,4,f +7505,20908,0,1,f +7505,20954pr0001,72,1,f +7505,2357,0,2,f +7505,23756,0,2,f +7505,2412b,0,4,f +7505,2419,0,4,f +7505,2420,0,3,f +7505,2420,72,2,f +7505,2450,0,1,f +7505,2450,4,1,f +7505,2458,15,2,f +7505,2639,72,2,f +7505,2780,0,6,f +7505,3004,4,4,f +7505,3004,0,5,f +7505,3009,0,2,f +7505,30165,0,4,f +7505,3020,71,4,f +7505,3020,0,1,f +7505,3021,19,3,f +7505,3021,72,5,f +7505,3021,0,2,f +7505,3022,0,8,f +7505,3022,72,12,f +7505,3023,4,10,f +7505,3024,0,6,f +7505,3029,71,4,f +7505,3034,71,8,f +7505,3034,0,2,f +7505,30375,72,2,f +7505,3039,0,2,f +7505,3039,4,2,f +7505,3040b,4,2,f +7505,3040b,0,2,f +7505,3068b,72,2,f +7505,3068b,0,2,f +7505,3069b,71,2,f +7505,3069b,0,24,f +7505,32028,72,4,f +7505,32054,0,1,f +7505,3460,71,8,f +7505,3623,72,4,f +7505,3626cpr1149,78,2,f +7505,3626cpr1709,78,1,f +7505,3626cpr1794,84,1,f +7505,3660,0,1,f +7505,3660,4,1,f +7505,3665,0,3,f +7505,3665,4,1,f +7505,3666,0,1,f +7505,3666,72,8,f +7505,3702,0,2,f +7505,3703,71,1,f +7505,3710,71,16,f +7505,3710,0,15,f +7505,3794b,71,8,f +7505,3795,0,2,f +7505,3832,72,4,f +7505,3839b,0,1,f +7505,3958,71,4,f +7505,4162,0,12,f +7505,4286,0,2,f +7505,4287,0,2,f +7505,43722,4,1,f +7505,43723,0,1,f +7505,44728,72,2,f +7505,4477,0,12,f +7505,4519,71,1,f +7505,47758,0,2,f +7505,52501,0,1,f +7505,54383,71,12,f +7505,54384,71,12,f +7505,60219,0,1,f +7505,60470a,0,8,f +7505,60478,71,8,f +7505,60478,4,8,f +7505,60478,0,12,f +7505,60479,71,9,f +7505,60479,0,8,f +7505,60483,0,1,f +7505,6091,71,2,f +7505,6141,0,8,f +7505,6178,71,4,f +7505,63868,0,12,f +7505,63868,1,8,f +7505,6536,0,1,f +7505,6636,0,8,f +7505,73983,0,8,f +7505,85984,0,2,f +7505,85984,4,2,f +7505,87580,71,12,f +7505,87609,71,8,f +7505,87994,0,1,f +7505,88292,0,2,f +7505,91988,71,4,f +7505,92280,0,8,f +7505,92738,0,3,f +7505,92950,0,1,f +7505,93273,72,8,f +7505,96874,25,1,t +7505,970c00,0,1,f +7505,970c00,72,1,f +7505,970c00pr0941,0,2,f +7505,973pr3154c01,0,2,f +7505,973pr3155c01,72,1,f +7505,973pr3158c01,0,1,f +7505,98100,0,2,f +7505,99206,0,1,f +7505,99207,0,4,f +7505,99780,71,8,f +7507,15,4,1,f +7507,17,4,1,f +7507,3001a,4,1,f +7507,3001a,14,1,f +7507,3001a,1,1,f +7507,3010,47,1,f +7507,3023,14,2,f +7507,3023,4,2,f +7507,3032,1,1,f +7507,3037,14,1,f +7507,3137c01,0,2,f +7507,3139,0,4,f +7507,3430c02,0,1,f +7507,3624,0,1,f +7507,3626a,14,1,f +7509,21,47,2,f +7509,3001a,14,1,f +7509,3002a,4,2,f +7509,3004,47,3,f +7509,3005,4,2,f +7509,3008,14,2,f +7509,3009,4,2,f +7509,3010,14,1,f +7509,3010,4,1,f +7509,3010pb035e,4,1,f +7509,3020,14,4,f +7509,3020,4,1,f +7509,3029,4,1,f +7509,3031,4,2,f +7509,3034,4,1,f +7509,3035,14,1,f +7509,3037,14,1,f +7509,3062a,0,1,f +7509,3137c01,0,2,f +7509,3137c02,0,2,f +7509,3139,0,4,f +7509,3149c01,4,2,f +7509,3404ac01,0,1,f +7509,3491,4,1,f +7509,3492c01,14,1,f +7509,7b,0,4,f +7510,2412b,4,4,f +7510,2445,71,1,f +7510,2536,71,2,f +7510,2780,0,132,f +7510,2850a,47,10,f +7510,2851,14,10,f +7510,2852,71,10,f +7510,2853,71,2,f +7510,2854,72,4,f +7510,2905,4,4,f +7510,3021,71,6,f +7510,3062b,4,2,f +7510,3068b,4,2,f +7510,32000,0,4,f +7510,32002,72,5,f +7510,32005a,0,2,f +7510,32009,0,2,f +7510,32013,15,2,f +7510,32013,71,10,f +7510,32014,0,2,f +7510,32014,4,2,f +7510,32015,0,2,f +7510,32015,4,2,f +7510,32017,0,3,f +7510,32017,4,2,f +7510,32034,15,2,f +7510,32034,0,1,f +7510,32039,0,1,f +7510,32039,4,4,f +7510,32054,4,9,f +7510,32054,0,6,f +7510,32056,4,2,f +7510,32056,0,8,f +7510,32062,0,28,f +7510,32063,0,2,f +7510,32063,4,2,f +7510,32073,71,14,f +7510,32123b,71,9,f +7510,32126,4,2,f +7510,32138,0,6,f +7510,32140,4,4,f +7510,32140,0,14,f +7510,32184,71,3,f +7510,32184,0,2,f +7510,32184,4,4,f +7510,32195b,0,4,f +7510,32199,4,2,f +7510,32200,4,2,f +7510,32209,0,3,f +7510,32235,4,2,f +7510,32250,0,2,f +7510,32269,71,1,f +7510,32270,71,5,f +7510,32278,15,2,f +7510,32278,0,3,f +7510,32278,4,8,f +7510,32291,0,2,f +7510,32291,4,2,f +7510,32294,0,8,f +7510,32316,0,7,f +7510,32316,4,3,f +7510,32333,0,2,f +7510,32449,4,4,f +7510,32495c01,0,2,f +7510,32523,0,2,f +7510,32523,4,4,f +7510,32524,4,2,f +7510,32524,71,1,f +7510,32525,4,2,f +7510,32526,15,2,f +7510,32526,0,2,f +7510,32526,4,6,f +7510,32534,4,1,f +7510,32535,4,1,f +7510,32557,0,2,f +7510,32557,4,2,f +7510,3647,71,2,f +7510,3705,0,6,f +7510,3706,0,2,f +7510,3707,0,1,f +7510,3708,0,3,f +7510,3710,0,1,f +7510,3713,15,3,f +7510,3713,71,10,f +7510,3713,4,6,f +7510,3737,0,2,f +7510,3743,0,1,f +7510,3743,71,6,f +7510,3749,19,1,f +7510,40001,72,1,f +7510,40490,4,1,f +7510,4162,4,2,f +7510,41677,0,4,f +7510,41677,4,8,f +7510,41678,4,1,f +7510,41678,0,4,f +7510,42003,0,12,f +7510,42003,71,2,f +7510,4274,71,15,f +7510,43093,1,20,f +7510,43857,4,8,f +7510,44294,71,5,f +7510,44350,4,3,f +7510,44351,4,3,f +7510,44352,4,2,f +7510,44353,4,2,f +7510,44771,0,4,f +7510,44772,71,4,f +7510,4519,71,22,f +7510,47712,4,2,f +7510,47713,4,2,f +7510,48989,71,1,f +7510,48989,4,1,f +7510,49856,9999,1,f +7510,6141,36,3,f +7510,6536,4,2,f +7510,6536,0,4,f +7510,6536,71,8,f +7510,6538b,71,5,f +7510,6538b,0,6,f +7510,6538b,4,4,f +7510,6558,0,57,f +7510,6573,72,1,f +7510,6587,72,10,f +7510,6589,71,3,f +7510,6628,0,2,f +7510,6629,0,1,f +7510,6632,4,6,f +7510,75535,15,1,f +7510,78c07,179,2,f +7510,78c11,179,8,f +7513,2412b,0,8,f +7513,2420,4,2,f +7513,2431,71,1,f +7513,2444,0,2,f +7513,2654,47,4,f +7513,2780,0,182,f +7513,2780,0,4,t +7513,2817,71,1,f +7513,2819,71,1,f +7513,3001,0,2,f +7513,3020,15,4,f +7513,3021,14,2,f +7513,3021,4,3,f +7513,3021,0,2,f +7513,3022,0,6,f +7513,3023,47,4,f +7513,3023,182,7,f +7513,3023,36,4,f +7513,3024,4,3,f +7513,3024,182,4,f +7513,3024,47,2,f +7513,3035,4,1,f +7513,30395,72,1,f +7513,3069b,182,5,f +7513,32000,0,4,f +7513,32002,72,1,t +7513,32002,72,4,f +7513,32009,71,4,f +7513,32009,4,4,f +7513,32013,0,18,f +7513,32014,71,4,f +7513,32015,4,4,f +7513,32034,0,9,f +7513,32039,71,5,f +7513,32039,4,5,f +7513,32054,0,25,f +7513,32056,71,10,f +7513,32062,4,37,f +7513,32063,0,2,f +7513,32064a,71,4,f +7513,32068,0,2,f +7513,32072,14,2,f +7513,32073,71,17,f +7513,32123b,71,23,f +7513,32123b,71,1,t +7513,32138,0,5,f +7513,32140,4,4,f +7513,32140,14,6,f +7513,32140,71,12,f +7513,32184,71,3,f +7513,32198,19,1,f +7513,32199,0,2,f +7513,32249,4,8,f +7513,32269,0,1,f +7513,32269,19,2,f +7513,32270,0,9,f +7513,32271,4,2,f +7513,32278,4,2,f +7513,32278,14,3,f +7513,32278,71,11,f +7513,32278,0,3,f +7513,32291,71,4,f +7513,32316,71,5,f +7513,32316,4,4,f +7513,32523,4,2,f +7513,32523,14,21,f +7513,32524,0,4,f +7513,32524,14,7,f +7513,32525,4,4,f +7513,32525,71,4,f +7513,32525,0,1,f +7513,32526,0,16,f +7513,32526,1,4,f +7513,32526,14,2,f +7513,32526,4,6,f +7513,32556,19,8,f +7513,33299a,0,3,f +7513,3460,14,2,f +7513,3623,0,2,f +7513,3623,15,2,f +7513,3647,72,2,f +7513,3647,72,1,t +7513,3648b,72,4,f +7513,3705,0,10,f +7513,3706,0,4,f +7513,3710,0,2,f +7513,3710,4,3,f +7513,3713,71,24,f +7513,3713,71,2,t +7513,3749,19,4,f +7513,3795,4,1,f +7513,4032a,71,4,f +7513,40490,14,9,f +7513,40490,0,5,f +7513,40490,4,4,f +7513,41239,72,3,f +7513,41239,0,1,f +7513,41239,4,3,f +7513,41239,14,3,f +7513,41677,71,18,f +7513,41678,0,5,f +7513,42003,72,16,f +7513,4274,71,20,f +7513,4274,71,2,t +7513,43093,1,56,f +7513,43722,0,1,f +7513,43722,4,1,f +7513,43723,4,1,f +7513,43723,0,1,f +7513,43857,71,7,f +7513,44294,71,7,f +7513,44309,0,6,f +7513,4519,71,28,f +7513,4716,71,2,f +7513,48989,71,2,f +7513,54200,182,4,f +7513,54200,4,1,t +7513,54200,47,4,f +7513,54200,182,2,t +7513,54200,47,2,t +7513,54200,4,4,f +7513,55013,72,4,f +7513,56145,71,6,f +7513,56823c50,0,1,f +7513,58119,71,1,f +7513,58120,71,1,f +7513,59426,72,7,f +7513,59443,71,4,f +7513,59443,0,18,f +7513,60479,0,1,f +7513,60483,0,18,f +7513,60484,0,5,f +7513,60485,71,5,f +7513,61070,14,1,f +7513,61071,14,1,f +7513,6141,47,1,t +7513,6141,47,4,f +7513,61510,71,1,f +7513,62462,14,3,f +7513,62531,4,2,f +7513,63864,0,2,f +7513,63864,14,3,f +7513,63869,71,1,f +7513,64178,71,1,f +7513,64393,14,2,f +7513,64681,14,2,f +7513,64781,0,2,f +7513,64782,0,6,f +7513,6536,4,2,f +7513,6536,72,7,f +7513,6538b,19,1,f +7513,6539,4,1,f +7513,6542a,72,2,f +7513,6558,1,75,f +7513,6587,28,3,f +7513,6589,19,2,f +7513,6589,19,1,t +7513,6628,0,2,f +7513,6632,0,11,f +7513,6641,4,1,f +7513,76244,15,1,f +7513,8109stk01,9999,1,t +7513,85543,15,1,f +7513,87080,14,2,f +7513,87080,4,1,f +7513,87082,71,3,f +7513,87083,72,7,f +7513,87086,14,2,f +7513,87086,4,1,f +7513,87408,0,2,f +7513,87761,0,1,f +7513,88930,14,4,f +7513,94925,71,2,f +7514,3811,1,1,f +7515,10201,0,1,f +7515,11055,15,1,f +7515,11211,19,1,f +7515,11215,4,1,f +7515,11253,297,1,f +7515,11253,297,1,t +7515,11303,4,1,f +7515,11477,4,12,f +7515,11477,15,2,f +7515,11477,0,6,f +7515,15068,0,8,f +7515,15068,4,1,f +7515,15068,71,1,f +7515,15535,72,2,f +7515,18674,15,1,f +7515,18677,71,2,f +7515,18972,40,1,f +7515,18974,4,4,f +7515,18974,0,2,f +7515,18975,72,3,f +7515,18976,179,6,f +7515,18977,0,6,f +7515,18978a,179,4,f +7515,18978b,179,4,t +7515,21445,71,1,f +7515,2343,297,1,f +7515,24299,0,3,f +7515,24299,4,1,f +7515,24307,0,3,f +7515,24307,4,1,f +7515,24309,15,1,f +7515,2431,71,3,f +7515,2431,0,2,f +7515,2431,4,4,f +7515,2431,15,2,f +7515,2437,40,1,f +7515,2446,15,1,f +7515,2446,0,1,f +7515,2447,47,2,f +7515,2447,47,2,t +7515,2654,47,1,f +7515,3001,4,1,f +7515,3001,0,1,f +7515,3002,14,1,f +7515,3002,1,1,f +7515,30029,0,2,f +7515,3004,14,1,f +7515,3004,4,4,f +7515,3005,0,4,f +7515,3005,4,4,f +7515,3009,71,2,f +7515,3020,72,3,f +7515,3020,71,3,f +7515,3021,71,5,f +7515,3022,72,1,f +7515,3022,0,3,f +7515,3022,1,2,f +7515,3023,71,4,f +7515,3023,15,4,f +7515,3023,0,13,f +7515,3023,4,10,f +7515,3024,1,4,f +7515,3024,0,1,t +7515,3024,1,1,t +7515,3024,4,1,t +7515,3024,0,4,f +7515,3024,4,8,f +7515,3031,72,1,f +7515,3032,0,1,f +7515,3032,72,1,f +7515,3034,72,2,f +7515,30374,71,1,f +7515,30414,72,2,f +7515,30414,0,1,f +7515,3066,40,2,f +7515,3068b,4,2,f +7515,3069b,0,3,f +7515,3069b,36,2,f +7515,3069b,4,4,f +7515,3069b,72,1,f +7515,3069b,15,1,f +7515,3070b,0,1,t +7515,3070b,0,2,f +7515,32028,179,12,f +7515,32064a,0,2,f +7515,3297,0,1,f +7515,3299,4,2,f +7515,3460,72,2,f +7515,3622,71,2,f +7515,3623,71,4,f +7515,3626cpr0893,14,1,f +7515,3626cpr1087,14,1,f +7515,3626cpr1537,14,1,f +7515,3666,0,4,f +7515,3666,4,2,f +7515,3678b,71,1,f +7515,3700,14,2,f +7515,3710,4,4,f +7515,3710,15,4,f +7515,3710,0,5,f +7515,3710,71,6,f +7515,3749,19,6,f +7515,3795,4,1,f +7515,3795,0,3,f +7515,3829c01,71,1,f +7515,3829c01,4,1,f +7515,3832,15,1,f +7515,3839b,71,1,f +7515,3895,0,2,f +7515,3941,4,1,f +7515,4006,0,1,f +7515,4162,15,3,f +7515,4274,71,1,f +7515,4274,71,1,t +7515,4477,0,1,f +7515,45590,0,1,f +7515,4624,71,1,f +7515,50943,179,1,f +7515,54200,0,2,t +7515,54200,4,12,f +7515,54200,4,2,t +7515,54200,15,1,t +7515,54200,0,6,f +7515,54200,15,8,f +7515,55982,179,2,f +7515,58090,0,2,f +7515,58176,36,1,f +7515,59443,4,1,f +7515,60474,72,1,f +7515,6141,15,2,t +7515,6141,297,1,t +7515,6141,297,1,f +7515,6141,71,1,t +7515,6141,15,10,f +7515,6141,71,4,f +7515,6179,0,1,f +7515,6180,71,1,f +7515,6231,4,2,f +7515,6536,72,1,f +7515,6564,4,1,f +7515,6565,4,1,f +7515,6587,28,2,f +7515,6636,71,2,f +7515,6636,4,2,f +7515,6636,0,3,f +7515,72454,72,1,f +7515,75874stk01,9999,1,f +7515,85984,0,11,f +7515,85984,4,4,f +7515,85984,15,1,f +7515,87079,4,1,f +7515,87083,72,3,f +7515,87609,4,1,f +7515,87609,0,1,f +7515,88930,15,1,f +7515,93273,71,1,f +7515,93606,4,2,f +7515,95347,0,2,f +7515,970c00,4,2,f +7515,970c00,73,1,f +7515,973pr1166c01,272,1,f +7515,973pr3299c01,4,2,f +7515,98138,36,1,t +7515,98138,46,2,f +7515,98138,34,1,t +7515,98138,34,6,f +7515,98138,36,6,f +7515,98138,46,1,t +7515,98138pr0047,179,1,t +7515,98138pr0047,179,4,f +7515,98282,0,2,f +7515,99206,15,1,f +7515,99206,4,3,f +7515,99207,0,12,f +7515,99780,0,5,f +7515,99780,4,9,f +7515,99781,15,4,f +7515,99781,71,6,f +7519,11929,27,1,f +7519,15515,27,1,f +7519,3437,27,1,f +7519,3437,10,2,f +7519,3437,322,1,f +7519,3437,484,2,f +7519,64146,14,1,f +7519,64150,15,1,f +7519,6510,2,1,f +7519,6510,4,1,f +7519,94412,25,1,f +7520,15491pr0001,14,1,f +7520,3068bpr0012,19,1,f +7520,3626cpr1302,14,1,f +7520,87693,15,1,f +7520,88646,0,1,f +7520,970c88pr0595,70,1,f +7520,973pr2519c01,320,1,f +7521,11477,72,1,f +7521,12825,1,1,f +7521,3024,1,1,f +7521,3024,72,1,t +7521,3024,1,1,t +7521,3024,72,2,f +7521,30374,0,1,f +7521,3069b,72,1,f +7521,3794b,272,2,f +7521,3839b,72,1,f +7521,4287,1,1,f +7521,6091,1,2,f +7521,99206,71,1,f +7523,10884,27,1,f +7523,11403pr0002c01,226,1,f +7523,11609,191,1,t +7523,11609,191,1,f +7523,11816pr0001,84,1,f +7523,2450,19,1,f +7523,3022,15,1,f +7523,3031,19,1,f +7523,3032,322,1,f +7523,3062b,70,3,f +7523,3068b,5,1,f +7523,3069b,191,2,f +7523,3069bpr0175,29,1,f +7523,3623,15,1,f +7523,3852b,191,1,f +7523,3942c,297,1,f +7523,3957a,70,1,f +7523,4032a,15,1,f +7523,48336,15,1,f +7523,54200,143,1,t +7523,54200,143,2,f +7523,59275,25,2,f +7523,60470a,15,1,f +7523,6141,41,1,f +7523,6141,41,1,t +7523,92456pr0044c01,84,1,f +7523,93352,308,1,f +7525,3032,15,1,f +7525,3068bpb0373,15,1,f +7525,3068bpb0409,15,1,f +7525,3068bpb0410,15,1,f +7525,3068bpb0411,15,1,f +7525,3068bpb0412,15,1,f +7525,3068bpb0413,15,1,f +7527,3022,4,1,f +7527,3626cpb1002,78,1,f +7527,85974,4,1,f +7527,970c03pb23,14,1,f +7527,973pb1517c01,2,1,f +7529,2495,4,1,f +7529,2496,0,1,f +7529,30028,0,4,f +7529,74967,15,4,f +7534,tplan01,9999,1,f +7536,2527,4,2,f +7536,3062b,7,12,f +7536,4600,0,4,f +7536,4624,6,8,f +7536,84943,8,2,f +7537,3666,0,50,f +7538,30153,36,1,f +7538,3626cpr1145,14,1,f +7538,41334,0,1,f +7538,6141,46,1,t +7538,6141,46,1,f +7538,64567,71,1,t +7538,64567,71,1,f +7538,92590,28,1,f +7538,970c00,0,1,f +7538,973pr2502c01,15,1,f +7540,2450,1,2,f +7540,3004,14,1,f +7540,3020,1,1,f +7540,3020,15,1,f +7540,3022,15,1,f +7540,3039,14,1,f +7540,3039,47,1,f +7540,6141,36,1,f +7540,6141,34,1,f +7541,3001a,14,1,f +7541,3001a,47,1,f +7541,3004,14,7,f +7541,3004pb011,4,3,f +7541,3009pt1,14,2,f +7541,3010pb035e,14,1,f +7541,3020,14,3,f +7541,3021,14,2,f +7541,3023a,14,2,f +7541,3023a,7,4,f +7541,3032,14,1,f +7541,3035,14,1,f +7541,3137c01,0,1,f +7541,3137c02,0,3,f +7541,3139,0,2,f +7541,7b,0,6,f +7541,967,14,1,f +7541,968,4,1,f +7541,969,7,1,f +7543,2335,1,8,f +7543,2343,47,1,f +7543,2357,0,2,f +7543,2357,71,5,f +7543,2412b,19,2,f +7543,2420,0,2,f +7543,2420,72,2,f +7543,2431,70,5,f +7543,2432,70,2,f +7543,2449,0,12,f +7543,2453a,0,2,f +7543,2453a,71,13,f +7543,2454a,71,6,f +7543,2454a,0,5,f +7543,2458,72,2,f +7543,2489,70,1,f +7543,2540,72,8,f +7543,2546,72,2,f +7543,2566,0,2,f +7543,2570,70,6,f +7543,2586,71,2,f +7543,2587,297,1,f +7543,2587,132,3,f +7543,2587pr0013,4,2,f +7543,2587pr0015,0,1,f +7543,2587pr0016,0,1,f +7543,2588,294,1,f +7543,2653,0,2,f +7543,2817,0,1,f +7543,3001,71,2,f +7543,3003,71,12,f +7543,3004,71,71,f +7543,3004,0,1,f +7543,3004,72,4,f +7543,3004,15,1,f +7543,30043,70,1,f +7543,30046,0,1,f +7543,3005,71,45,f +7543,30055,0,4,f +7543,3007,71,2,f +7543,30072,2,1,f +7543,3008,71,6,f +7543,3009,71,1,f +7543,3010,71,11,f +7543,30103,0,1,f +7543,30104,0,1,f +7543,30115,4,1,f +7543,30152pat0001,0,1,f +7543,30153,41,1,f +7543,30153,36,2,f +7543,3020,72,6,f +7543,3020,0,2,f +7543,3021,70,6,f +7543,3021,0,2,f +7543,3021,71,3,f +7543,3022,0,2,f +7543,3023,15,1,f +7543,3023,71,6,f +7543,3023,72,9,f +7543,3023,70,8,f +7543,3023,72,1,t +7543,3023,0,7,f +7543,30237a,0,10,f +7543,3024,70,3,f +7543,3024,72,20,f +7543,30246,71,4,f +7543,30271px2,2,1,f +7543,30272,71,1,f +7543,30274,71,5,f +7543,3031,71,1,f +7543,3032,71,1,f +7543,3034,72,4,f +7543,3035,0,3,f +7543,3036,1,1,f +7543,30374,0,3,f +7543,30383,19,3,f +7543,3040b,0,20,f +7543,3040b,4,2,f +7543,3045,71,2,f +7543,3048c,1,11,f +7543,3048c,4,1,f +7543,30504,0,1,f +7543,30553,72,3,f +7543,3062b,70,1,t +7543,3062b,70,35,f +7543,3063b,0,2,f +7543,3068bpr0131,15,1,f +7543,3069b,72,22,f +7543,32013,0,2,f +7543,32028,71,2,f +7543,32034,0,2,f +7543,32039,0,2,f +7543,32062,4,2,f +7543,33061,33,1,f +7543,3622,71,15,f +7543,3626b,0,1,f +7543,3626bpr0190,15,2,f +7543,3626bpr0245,14,2,f +7543,3626bpr0247,14,1,f +7543,3626bpr0250,14,1,f +7543,3626bpr0348,14,1,f +7543,3626bpr0353,14,1,f +7543,3626bpr0434,14,1,f +7543,3626bpr0458,14,1,f +7543,3626bpr0459,14,1,f +7543,3659,0,2,f +7543,3659,71,4,f +7543,3660,71,26,f +7543,3665,0,1,f +7543,3665,4,4,f +7543,3665,71,23,f +7543,3666,0,2,f +7543,3679,71,3,f +7543,3680,0,3,f +7543,3684,1,8,f +7543,3688,1,8,f +7543,3710,0,2,f +7543,3794a,19,3,f +7543,3795,71,2,f +7543,3795,70,1,f +7543,3837,0,1,f +7543,3839b,0,1,f +7543,3844,0,6,f +7543,3846,71,4,f +7543,3848,132,3,f +7543,3849,0,2,f +7543,3894,0,1,f +7543,3937,15,5,f +7543,3938,0,5,f +7543,3941,0,1,f +7543,3942c,71,2,f +7543,3957a,0,6,f +7543,3958,71,3,f +7543,40241,70,1,f +7543,40242,0,1,f +7543,4070,1,10,f +7543,4070,70,4,f +7543,4085c,4,2,f +7543,4150,4,1,f +7543,41539,0,3,f +7543,4162,72,4,f +7543,41752,72,1,t +7543,41879a,70,1,f +7543,4201,72,3,f +7543,4204,72,1,f +7543,42448,0,2,f +7543,4274,71,4,f +7543,4274,71,1,t +7543,43898,70,2,f +7543,4444p08,0,13,f +7543,4460a,70,2,f +7543,44728,72,2,f +7543,4477,71,3,f +7543,4489b,70,2,f +7543,4491b,72,2,f +7543,4493c01pb02,0,1,f +7543,4495a,1,4,f +7543,4495a,4,5,f +7543,4495a,72,1,f +7543,4497,135,4,f +7543,4503,135,1,f +7543,4519,71,2,f +7543,4522,0,1,f +7543,4738a,70,1,f +7543,4739a,70,1,f +7543,48493,0,1,f +7543,48495,82,2,f +7543,48495,179,2,f +7543,4865a,0,4,f +7543,4871,4,1,f +7543,48729a,72,14,f +7543,48812,70,1,f +7543,50687,71,1,f +7543,57503,334,2,f +7543,57504,334,2,f +7543,57505,334,2,f +7543,57506,334,2,f +7543,58174,9999,1,t +7543,59,383,1,f +7543,6019,19,2,f +7543,6046,0,1,f +7543,6056,71,2,f +7543,6066,71,5,f +7543,6083,72,2,f +7543,6111,71,2,f +7543,6123,72,5,f +7543,6126a,57,12,f +7543,6131,0,1,f +7543,6132,15,1,f +7543,6140,0,1,f +7543,6141,0,1,t +7543,6141,57,3,f +7543,6141,57,1,t +7543,6141,0,10,f +7543,6157,0,1,f +7543,6231,0,2,f +7543,6260,15,1,f +7543,6265,15,2,f +7543,6265,15,1,t +7543,6266,15,2,f +7543,62808,72,2,f +7543,6541,0,10,f +7543,6587,72,4,f +7543,6636,72,4,f +7543,71015,334,1,f +7543,75998pr0007,15,1,f +7543,85543,15,2,f +7543,970c00,0,1,f +7543,970c00,1,2,f +7543,970c00,15,1,f +7543,970c00,72,1,f +7543,970c00,4,1,f +7543,970x026,71,3,f +7543,973c01,15,1,f +7543,973c07,1,1,f +7543,973c10,14,1,f +7543,973c45,0,2,f +7543,973c46,0,1,f +7543,973c47,71,4,f +7545,2780,0,3,f +7545,2905,135,2,f +7545,32013,135,4,f +7545,32014,0,2,f +7545,32015,0,2,f +7545,32016,135,4,f +7545,32062,0,12,f +7545,32073,71,2,f +7545,32123b,71,3,f +7545,32140,0,2,f +7545,32174,0,8,f +7545,32175,71,2,f +7545,32175,0,1,f +7545,32192,0,2,f +7545,32271,0,1,f +7545,32278,0,2,f +7545,32307,0,4,f +7545,32316,135,1,f +7545,32449,135,2,f +7545,32506,135,1,f +7545,32523,0,1,f +7545,32525,0,1,f +7545,32551,135,6,f +7545,32553,0,1,f +7545,32554,57,1,f +7545,32556,71,4,f +7545,32580,135,4,f +7545,33299a,135,2,f +7545,3673,71,6,f +7545,3705,0,3,f +7545,3749,19,2,f +7545,40490,0,1,f +7545,41239,135,2,f +7545,41668,0,2,f +7545,41669,57,2,f +7545,41669,0,2,f +7545,41670,4,4,f +7545,41677,0,12,f +7545,41678,0,3,f +7545,42003,135,1,f +7545,43093,1,9,f +7545,44036,135,1,f +7545,44813,135,2,f +7545,44847,0,1,f +7545,4519,71,6,f +7545,45749,0,2,f +7545,47295,4,1,f +7545,47306,0,1,f +7545,47311,0,1,f +7545,47326pat03,0,6,f +7545,47327pat0001,4,1,f +7545,47335,135,4,f +7545,6536,135,4,f +7545,6553,0,1,f +7545,6553,71,2,f +7545,6558,0,11,f +7545,6587,72,5,f +7545,6632,0,2,f +7547,3229b,7,8,f +7547,3230b,7,8,f +7547,767,8,16,f +7548,122c01,0,4,f +7548,3002,0,1,f +7548,3004,4,4,f +7548,3006,4,1,f +7548,3020,4,1,f +7548,3020,14,1,f +7548,3022,0,4,f +7548,3023,4,5,f +7548,3023,0,3,f +7548,3024,46,2,f +7548,3024,33,2,f +7548,3024,36,2,f +7548,3024,0,2,f +7548,3031,14,1,f +7548,3032,0,1,f +7548,3040b,14,2,f +7548,3069b,4,1,f +7548,3149c01,0,2,f +7548,3403,4,1,f +7548,3404,4,1,f +7548,3623,14,2,f +7548,3626apr0001,14,2,f +7548,3641,0,8,f +7548,3660,0,1,f +7548,3665,4,4,f +7548,3679,7,1,f +7548,3680,0,1,f +7548,3710,4,6,f +7548,3787,4,3,f +7548,3788,4,1,f +7548,3821,4,1,f +7548,3822,4,1,f +7548,3823,47,1,f +7548,3829c01,4,1,f +7548,3832,4,2,f +7548,3832,0,2,f +7548,3834,0,2,f +7548,3835,7,2,f +7548,3956,0,1,f +7548,3959,7,3,f +7548,4070,4,2,f +7548,4079,1,2,f +7548,4081a,0,2,f +7548,4083,14,3,f +7548,4085a,0,4,f +7548,6690stk01,9999,1,t +7548,970c00,0,2,f +7548,973c18,0,2,f +7550,2524,28,1,f +7550,30170,72,1,f +7550,30171,308,1,f +7550,3626bpr0741,14,1,f +7550,88646,0,1,f +7550,970c00,28,1,f +7550,973pr1712c01,70,1,f +7551,2357,15,1,f +7551,2420,15,1,f +7551,2555,4,1,f +7551,3002,15,1,f +7551,3021,15,1,t +7551,3021,15,1,f +7551,3021,4,1,f +7551,3022,15,1,f +7551,3022,19,1,f +7551,3023,15,2,f +7551,3023,19,2,f +7551,3023,0,4,f +7551,3024,15,2,f +7551,3028,28,1,f +7551,3062b,70,3,f +7551,3068b,15,1,f +7551,3069b,15,4,f +7551,3070b,15,1,f +7551,3623,15,1,f +7551,3665,15,2,f +7551,3700,15,1,f +7551,3710,15,1,f +7551,3794a,0,2,f +7551,3794a,19,2,f +7551,3957a,0,1,f +7551,4032a,4,1,f +7551,4081b,4,1,f +7551,4274,1,1,f +7551,44301a,15,1,f +7551,44302a,15,1,f +7551,4589,70,1,f +7551,6091,15,2,f +7551,6141,15,5,f +7551,6141,4,5,f +7551,6141,19,1,f +7551,6541,15,1,f +7552,2412b,0,1,f +7552,2420,14,2,f +7552,2431,14,1,f +7552,2431,0,2,f +7552,2436,14,1,f +7552,2439,8,2,f +7552,298c02,0,1,f +7552,3004,4,3,f +7552,3005,4,2,f +7552,3008,4,2,f +7552,3010,14,3,f +7552,3010,4,2,f +7552,3020,14,2,f +7552,3020,0,1,f +7552,3021,0,1,f +7552,3022,14,1,f +7552,3022,0,1,f +7552,3023,0,1,f +7552,3023,4,1,f +7552,3023,14,3,f +7552,3024,4,2,f +7552,3024,36,2,f +7552,3024,46,2,f +7552,3031,14,1,f +7552,3035,14,1,f +7552,3040b,4,2,f +7552,3062b,4,2,f +7552,3149c01,0,1,f +7552,3460,14,2,f +7552,3624,0,1,f +7552,3626apr0001,14,2,f +7552,3665,14,2,f +7552,3710,14,4,f +7552,3821,4,1,f +7552,3822,4,1,f +7552,3823,47,1,f +7552,3829c01,14,1,f +7552,3832,0,1,f +7552,3836,6,1,f +7552,3837,0,1,f +7552,3901,0,1,f +7552,4033,4,1,f +7552,4070,14,2,f +7552,4081b,4,2,f +7552,4084,0,6,f +7552,4085b,14,2,f +7552,4211,14,1,f +7552,4213,14,2,f +7552,4214,14,1,f +7552,4215a,14,2,f +7552,4215ap08,14,2,f +7552,4275b,14,2,f +7552,4276b,4,2,f +7552,4315,14,1,f +7552,4460a,14,2,f +7552,4598,4,1,f +7552,4600,0,3,f +7552,4624,14,6,f +7552,4740,8,2,f +7552,4865a,4,1,f +7552,6141,46,2,f +7552,6141,4,2,f +7552,970c00,1,2,f +7552,973p26c01,1,1,f +7552,973pb0201c01,15,1,f +7553,2431pt2,15,3,f +7553,2432,7,1,f +7553,2446px3,4,1,f +7553,2447,41,1,f +7553,30027a,15,4,f +7553,30028,0,4,f +7553,30029,4,1,f +7553,3020,15,1,f +7553,3023,4,1,f +7553,3023,15,1,f +7553,3039,15,1,f +7553,3039p74,15,2,f +7553,3298p74,15,1,f +7553,3626bp04,14,1,f +7553,3666,2,2,f +7553,3710,15,2,f +7553,3710,2,1,f +7553,3829c01,15,1,f +7553,3839b,0,1,f +7553,4865a,15,1,f +7553,6019,0,2,f +7553,6141,7,2,f +7553,6157,0,2,f +7553,970c00,4,1,f +7553,973px36c01,4,1,f +7554,2340,15,2,f +7554,2341,15,2,f +7554,2362a,33,1,f +7554,2362a,36,1,f +7554,2401,15,2,f +7554,2408,15,2,f +7554,2409,33,2,f +7554,2412b,0,2,f +7554,2412b,15,3,f +7554,2419,15,4,f +7554,2420,15,2,f +7554,2431,0,1,f +7554,2432,0,2,f +7554,2432,15,1,f +7554,2436,0,3,f +7554,2444,15,1,f +7554,2446,8,1,f +7554,2447,42,2,f +7554,2450,0,2,f +7554,2456,0,2,f +7554,2456,15,1,f +7554,2508,15,2,f +7554,2540,0,1,f +7554,2569,42,1,f +7554,2607,15,1,f +7554,2653,0,2,f +7554,2736,7,2,f +7554,2877,15,1,f +7554,30000,15,2,f +7554,30033,15,1,f +7554,30034,15,4,f +7554,30035,15,2,f +7554,30038,8,1,f +7554,3004,0,2,f +7554,3004,15,6,f +7554,3009,0,1,f +7554,3010,0,4,f +7554,3020,0,1,f +7554,3020,15,1,f +7554,3021,15,1,f +7554,3022,0,3,f +7554,3022,15,4,f +7554,3023,0,4,f +7554,3023,42,2,f +7554,3023,15,3,f +7554,3024,0,4,f +7554,3032,15,1,f +7554,3038,15,4,f +7554,3039,15,1,f +7554,3039p15,15,1,f +7554,3040b,15,2,f +7554,3062b,15,4,f +7554,3068b,0,2,f +7554,3068b,15,4,f +7554,3068bp10,15,1,f +7554,3069b,0,4,f +7554,3069bp06,15,2,f +7554,3069bp13,15,1,f +7554,3069bp50,15,2,f +7554,3070b,0,2,f +7554,3149c01,0,1,f +7554,32005a,8,2,f +7554,3403,0,1,f +7554,3404,0,1,f +7554,3475b,15,2,f +7554,3475b,0,2,f +7554,3622,15,2,f +7554,3626bp64,47,1,f +7554,3626bp69,14,1,f +7554,3626bpb0057,14,1,f +7554,3660,15,3,f +7554,3666,0,2,f +7554,3666,15,2,f +7554,3673,7,1,f +7554,3678a,15,2,f +7554,3679,7,2,f +7554,3680,15,1,f +7554,3680,0,1,f +7554,3710,15,1,f +7554,3737,0,1,f +7554,3747a,15,1,f +7554,3794a,0,3,f +7554,3795,0,3,f +7554,3795,15,1,f +7554,3829c01,15,2,f +7554,3830,0,4,f +7554,3831,0,4,f +7554,3838,0,2,f +7554,3857,7,1,f +7554,3937,15,2,f +7554,3937,0,2,f +7554,3938,15,4,f +7554,3941,42,2,f +7554,3941,15,2,f +7554,3941,0,5,f +7554,3943b,15,1,f +7554,3956,15,2,f +7554,3957a,15,1,f +7554,3958,0,1,f +7554,3958,15,2,f +7554,3959,0,1,f +7554,3960,33,1,f +7554,3960,42,1,f +7554,3962a,0,1,f +7554,4032a,15,2,f +7554,4032a,0,2,f +7554,4070,0,4,f +7554,4081b,15,1,f +7554,4150,15,1,f +7554,4151a,15,1,f +7554,4162,15,1,f +7554,4162,0,6,f +7554,4275b,0,2,f +7554,4286,15,2,f +7554,4287,15,2,f +7554,4510,15,2,f +7554,4531,0,2,f +7554,4589,0,1,f +7554,4589,33,1,f +7554,4595,0,1,f +7554,4598,0,2,f +7554,4740,0,1,f +7554,4740,42,4,f +7554,4746,15,1,f +7554,4859,0,1,f +7554,4865a,15,2,f +7554,6019,15,1,f +7554,6019,0,1,f +7554,6039,15,1,f +7554,6111,15,3,f +7554,6118,0,4,f +7554,6141,46,1,f +7554,6141,42,1,t +7554,6141,42,1,f +7554,6179,0,1,f +7554,6958stk01,9999,1,t +7554,6958stk02,9999,1,t +7554,6958stk03,9999,1,t +7554,6958stk04,9999,1,t +7554,6958stk05,9999,1,t +7554,73092,0,1,f +7554,73590c02a,0,1,f +7554,970c00pb019,15,1,f +7554,970x026,7,2,f +7554,973p63c02,15,1,f +7554,973pb0003c01,15,1,f +7554,973pb0004c01,15,1,f +7555,2419,0,1,f +7555,2432,0,2,f +7555,2877,7,1,f +7555,3004,15,1,f +7555,3004pb010,15,2,f +7555,3031,15,1,f +7555,30350p01,14,1,f +7555,3039,33,1,f +7555,3069b,0,1,f +7555,3069bp68,15,1,f +7555,3626bpr0126,14,1,f +7555,3700,15,1,f +7555,3795,0,1,f +7555,3833,15,1,f +7555,3962b,0,1,f +7555,4865a,15,1,f +7555,6141,57,1,f +7555,970c00,15,1,f +7555,973px24c01,15,1,f +7557,3001a,14,2,f +7557,3003,4,4,f +7557,3004,14,2,f +7557,3004,4,9,f +7557,3005,14,18,f +7557,3008,4,5,f +7557,3008,0,2,f +7557,3009,14,10,f +7557,3009,0,4,f +7557,3010,1,6,f +7557,3010,4,6,f +7557,3010,0,4,f +7557,3010,14,8,f +7557,3020,14,2,f +7557,3020,4,3,f +7557,3020,1,2,f +7557,3021,1,2,f +7557,3021,14,10,f +7557,3021,4,3,f +7557,3022,4,9,f +7557,3022,1,2,f +7557,3022,7,24,f +7557,3023,14,17,f +7557,3023,14,1,t +7557,3023,1,25,f +7557,3023,7,1,t +7557,3023,7,8,f +7557,3023,1,1,t +7557,3023,4,1,t +7557,3023,4,7,f +7557,3024,14,6,f +7557,3024,1,2,f +7557,3024,1,1,t +7557,3027,14,1,f +7557,3027,4,3,f +7557,3030,4,2,f +7557,3031,4,1,f +7557,3031,14,2,f +7557,3032,14,2,f +7557,3032,4,2,f +7557,3034,4,2,f +7557,3039,4,2,f +7557,3040a,4,5,f +7557,3040a,14,10,f +7557,3068b,4,18,f +7557,3069b,14,4,f +7557,3069b,14,1,t +7557,3149c01,14,4,f +7557,3460,1,8,f +7557,3460,7,8,f +7557,3460,4,11,f +7557,3460,14,2,f +7557,3647,7,9,f +7557,3648a,7,12,f +7557,3649,7,1,f +7557,3650a,7,1,f +7557,3651,7,17,f +7557,3651,7,2,t +7557,3652,7,4,f +7557,3660,4,11,f +7557,3666,4,8,f +7557,3666,1,15,f +7557,3666,14,2,f +7557,3673,7,42,f +7557,3673,7,1,t +7557,3679,7,6,f +7557,3680,4,6,f +7557,3700,1,1,f +7557,3700,4,22,f +7557,3700,14,2,f +7557,3701,4,11,f +7557,3701,14,2,f +7557,3701,1,4,f +7557,3702,1,1,f +7557,3702,4,8,f +7557,3703,4,10,f +7557,3704,0,9,f +7557,3704,0,1,t +7557,3705,0,2,t +7557,3705,0,12,f +7557,3706,0,1,f +7557,3707,0,6,f +7557,3708,0,3,f +7557,3709,1,1,f +7557,3709,4,12,f +7557,3710,1,7,f +7557,3710,7,8,f +7557,3710,4,23,f +7557,3710,14,5,f +7557,3713,7,16,f +7557,3713,7,3,t +7557,3736,7,1,f +7557,3737,0,2,f +7557,3738,4,2,f +7557,3739,7,4,f +7557,3740,0,4,f +7557,3743,7,3,f +7557,3743,7,1,t +7557,9244,7,5,f +7558,4019,7,50,f +7559,3022,7,40,f +7563,2780,0,6,f +7563,32013,71,1,f +7563,32054,0,1,f +7563,32062,0,1,f +7563,32174,379,5,f +7563,32199,72,1,f +7563,3705,0,1,f +7563,43093,1,1,f +7563,47296,379,2,f +7563,47306,379,1,f +7563,47311,272,1,f +7563,50898,379,2,f +7563,53500,57,1,f +7563,53562pat0003,272,2,f +7563,53563,272,1,f +7563,53564,135,1,f +7563,53566,272,2,f +7563,53571,179,1,f +7563,53574,272,2,f +7563,53576,272,1,f +7563,54271,135,1,f +7563,54821,42,4,f +7563,55095pr0001,15,1,f +7563,55305,272,1,t +7563,59426,72,1,f +7566,2555,4,1,t +7566,2555,4,2,f +7566,2780,0,1,t +7566,2780,0,4,f +7566,2817,4,1,f +7566,3021,72,3,f +7566,32530,4,2,f +7566,3626bpr0446,14,1,f +7566,3894,4,2,f +7566,4070,0,2,f +7566,4349,0,2,f +7566,43710,4,1,f +7566,43711,4,1,f +7566,4740,14,1,t +7566,4740,14,1,f +7566,47458,4,2,f +7566,53982,10,1,f +7566,6070,40,1,f +7566,6141,36,1,t +7566,6141,36,1,f +7566,970c00,320,1,f +7566,973pr980c01,320,1,f +7568,3823,47,2,f +7568,3829c01,4,2,f +7568,4079,4,4,f +7568,4284,47,2,f +7569,2412b,71,6,f +7569,2420,71,2,f +7569,2431,0,2,f +7569,2431,4,1,f +7569,2432,14,1,f +7569,2555,0,1,f +7569,2780,0,8,f +7569,2780,0,1,t +7569,2817,4,2,f +7569,2877,70,5,f +7569,30031,0,1,f +7569,3004,0,6,f +7569,3004,4,2,f +7569,3010,70,2,f +7569,30132,72,1,f +7569,30132,72,1,t +7569,30136,72,1,f +7569,30150,70,1,f +7569,30153,36,1,f +7569,30153,41,1,f +7569,30153,34,1,f +7569,30153,47,1,f +7569,3020,4,3,f +7569,3021,1,1,f +7569,3022,14,1,f +7569,3022,71,2,f +7569,3023,70,3,f +7569,3031,71,5,f +7569,3031,0,1,f +7569,3035,72,1,f +7569,30374,19,1,f +7569,30391,0,3,f +7569,3062b,72,8,f +7569,3062b,70,2,f +7569,3068b,4,1,f +7569,3068b,15,2,f +7569,3068b,0,1,f +7569,3069b,4,2,f +7569,3069b,0,2,f +7569,32009,0,2,f +7569,32013,0,4,f +7569,32018,0,2,f +7569,32039,71,1,f +7569,32062,4,2,f +7569,32064b,15,2,f +7569,32523,72,2,f +7569,32526,71,2,f +7569,32531,0,1,f +7569,3460,0,2,f +7569,3623,0,2,f +7569,3626bpr0476,78,1,f +7569,3626bpr0523,15,1,f +7569,3660,0,1,f +7569,3660,72,2,f +7569,3666,70,2,f +7569,3673,71,7,f +7569,3673,71,2,t +7569,3700,72,9,f +7569,3708,0,3,f +7569,3710,71,10,f +7569,3710,72,1,f +7569,3713,4,1,t +7569,3713,4,5,f +7569,3738,1,1,f +7569,3747b,0,4,f +7569,3749,19,2,f +7569,3794a,72,1,f +7569,3829c01,71,1,f +7569,3937,0,1,f +7569,3941,4,1,f +7569,3941,19,2,f +7569,3941,0,1,f +7569,4032a,0,1,f +7569,40620,71,2,f +7569,4079,70,1,f +7569,4085c,14,2,f +7569,4176,40,1,f +7569,41769,4,3,f +7569,41770,0,3,f +7569,42023,0,2,f +7569,42023,4,2,f +7569,4274,1,1,t +7569,4274,1,4,f +7569,43093,1,4,f +7569,44728,71,4,f +7569,4589,34,2,f +7569,4589,46,2,f +7569,4733,72,1,f +7569,47759,0,1,f +7569,4854,72,2,f +7569,49668,0,2,f +7569,50943,71,1,f +7569,50950,4,1,f +7569,50950,0,3,f +7569,50967,4,4,f +7569,50967,0,4,f +7569,54200,4,1,t +7569,54200,0,1,t +7569,54200,0,1,f +7569,54200,46,1,t +7569,54200,46,2,f +7569,54200,4,1,f +7569,55013,72,1,f +7569,55704,0,1,f +7569,55707a,0,1,f +7569,55707e,0,2,f +7569,55976,0,4,f +7569,55981,71,3,f +7569,56145,71,4,f +7569,56619,0,1,f +7569,56630,0,1,f +7569,60474,72,2,f +7569,60483,0,2,f +7569,61072,135,1,f +7569,61184,71,4,f +7569,6133,0,2,f +7569,6134,4,1,f +7569,6141,36,1,t +7569,6141,46,1,t +7569,6141,46,6,f +7569,6141,36,2,f +7569,6222,70,2,f +7569,62462,15,4,f +7569,62537pr0002,4,1,f +7569,6636,0,1,f +7569,85973,0,1,f +7569,970c00,72,1,f +7569,970d03pr0115,4,1,f +7569,973pr1381c01,4,1,f +7569,973pr1382c01,72,1,f +7569,98721,0,3,f +7573,11090,72,1,f +7573,11097,179,1,f +7573,11100,71,2,f +7573,11126,321,1,f +7573,11127,41,6,f +7573,12825,71,2,f +7573,15073,15,2,f +7573,15093pr0001,321,1,f +7573,15100,0,2,f +7573,15104,41,1,f +7573,15105,41,2,f +7573,15336c01,41,1,f +7573,15365pat0001,1,1,f +7573,16659pr0002,15,1,f +7573,2419,71,1,f +7573,2419,15,1,f +7573,2780,0,2,f +7573,3002,72,2,f +7573,3005,71,4,f +7573,3023,41,2,f +7573,30374,41,1,f +7573,3045,15,2,f +7573,3045,71,2,f +7573,3049d,15,1,f +7573,32062,4,2,f +7573,3626cpr1419,15,1,f +7573,3666,71,2,f +7573,3710,15,2,f +7573,4070,15,4,f +7573,54200,41,6,f +7573,54200,15,2,f +7573,59232,179,1,f +7573,6179,15,1,f +7573,85543,15,1,f +7573,87747,179,1,f +7573,970d00pr0661,15,1,f +7573,973pr2663c01,15,1,f +7573,98138,41,5,f +7577,11260pr0002,0,1,f +7577,11265pr0002,0,1,f +7577,3626cpr1236,27,1,f +7577,4349,0,1,f +7577,59900,42,1,f +7577,88646,0,1,f +7577,970c00pr0525,0,1,f +7577,973pr2407c01,0,1,f +7579,3022,71,2,f +7579,3022,0,2,f +7579,3023,71,2,f +7579,3023,72,2,f +7579,32000,71,2,f +7579,32138,71,1,f +7579,3626cpr0922,0,1,f +7579,3710,71,1,f +7579,3713,71,1,t +7579,3713,71,1,f +7579,3795,0,4,f +7579,3941,0,1,f +7579,4032a,71,1,f +7579,4032a,72,2,f +7579,4519,71,2,f +7579,4740pr0001b,47,1,f +7579,4871,0,6,f +7579,60471,71,2,f +7579,6141,47,2,f +7579,6141,47,1,t +7579,6179pr0006b,0,1,f +7579,63082,71,1,f +7579,6541,71,1,f +7579,6587,28,1,f +7579,6636,0,4,f +7579,74698,0,1,f +7579,75937,0,1,f +7579,87556pr0003,0,1,f +7579,87580,0,1,f +7579,92582,71,2,f +7579,92738,0,1,f +7579,92947,71,2,f +7579,970c00,0,1,f +7579,973pr2293c01,0,1,f +7579,98100,71,2,f +7579,98107pr0006,0,2,f +7579,98138,71,1,t +7579,98138,71,2,f +7581,11090,0,2,f +7581,11458,72,2,f +7581,13349,0,1,f +7581,15619,0,1,f +7581,15619,0,1,t +7581,15621,35,1,f +7581,2419,72,1,f +7581,2450,0,2,f +7581,2654,71,1,f +7581,3022,19,1,f +7581,3023,71,2,f +7581,3031,71,1,f +7581,3034,0,1,f +7581,3069bpr0086,71,1,f +7581,3070b,36,2,f +7581,3070b,36,1,t +7581,32013,71,1,f +7581,32039,0,1,f +7581,32062,4,1,f +7581,32064a,0,1,f +7581,32123b,14,2,f +7581,32123b,14,1,t +7581,32138,0,1,f +7581,3626cpr0745,14,1,f +7581,3626cpr1282,0,1,f +7581,3749,19,1,f +7581,4070,71,4,f +7581,4150pr0012,72,2,f +7581,41677,72,2,f +7581,44728,72,1,f +7581,4519,71,3,f +7581,4598,0,1,f +7581,4740,36,1,f +7581,4868b,71,2,f +7581,50304,85,1,f +7581,50305,85,1,f +7581,54200,85,1,t +7581,54200,85,4,f +7581,59443,0,1,f +7581,59895,0,1,f +7581,59900,36,2,f +7581,61072,179,1,f +7581,61184,71,2,f +7581,61403,179,1,f +7581,61409,0,2,f +7581,6141,36,1,t +7581,6141,36,4,f +7581,75937,0,1,f +7581,78c02,179,1,t +7581,78c02,179,2,f +7581,87991,0,1,f +7581,92218,179,2,f +7581,92338,297,1,f +7581,92690,297,1,f +7581,970c00,0,2,f +7581,973pr2472c01,0,1,f +7581,973pr2579c01,0,1,f +7581,98141,179,2,f +7582,10111,70,1,f +7582,10199,19,2,f +7582,18351,0,1,f +7582,2300,19,2,f +7582,3011,484,4,f +7582,31041,0,1,f +7582,31059,10,3,f +7582,31061,484,4,f +7582,31062,70,1,f +7582,31070,70,1,f +7582,31445,179,1,f +7582,3437,2,3,f +7582,3437,10,1,f +7582,3437,41,3,f +7582,3437,484,3,f +7582,3966,10,2,f +7582,4066,484,4,f +7582,40666,484,1,f +7582,40666,70,1,f +7582,40666,10,1,f +7582,51703,182,1,f +7582,54246,15,2,f +7582,55886pr0002,15,1,f +7582,62780,15,1,f +7582,63710pr0005,2,1,f +7582,6411,70,1,f +7582,64402,14,1,f +7582,6504,179,1,f +7582,6510,14,1,f +7582,6510,2,2,f +7582,6510,4,1,f +7582,6510,10,1,f +7582,6510,25,1,f +7582,75113pr0005,4,1,f +7582,87084,10,2,f +7582,87684,19,1,f +7582,88694,2,1,f +7582,89467,70,1,f +7582,89873,71,1,f +7582,89879,72,1,f +7582,91348,2,1,f +7582,91871,191,1,f +7582,98201,72,1,f +7582,98204,78,1,f +7582,98233,70,1,f +7583,3004,7,2,f +7583,3004,8,5,f +7583,3020,0,1,f +7583,3045,7,2,f +7583,3065,36,1,f +7584,2780,0,7,f +7584,2780,0,1,t +7584,32062,4,4,f +7584,32073,71,3,f +7584,32140,0,2,f +7584,32184,4,1,f +7584,32192,0,2,f +7584,32523,71,5,f +7584,3713,71,1,t +7584,3713,71,4,f +7584,42003,0,1,f +7584,43093,1,2,f +7584,48989,71,3,f +7584,50923,72,2,f +7584,53585,0,2,f +7584,58177,0,1,f +7584,60483,0,6,f +7584,61805,148,1,f +7584,64262,57,1,f +7584,64275,148,2,f +7584,64276,0,10,f +7584,6558,1,3,f +7584,6587,28,6,f +7584,87082,71,1,f +7584,87083,72,2,f +7584,87806pat0002,135,2,f +7584,90607,0,4,f +7584,90609,0,2,f +7584,90612,0,3,f +7584,90613,25,2,f +7584,90613,0,4,f +7584,90617,4,2,f +7584,90622,0,2,f +7584,90623,25,1,f +7584,90638,148,4,f +7584,90638pr0010,0,4,f +7584,90639,148,2,f +7584,90641,179,2,f +7584,90650,148,1,f +7584,90652,179,1,f +7584,92212pat0001,4,2,f +7584,92214,148,1,f +7584,92215,148,2,f +7584,92216,4,1,f +7584,92217,4,2,f +7584,93571,0,7,f +7584,93575,179,2,f +7584,95753pat0001,4,1,f +7585,2412b,383,2,f +7585,2412b,14,3,f +7585,2412b,71,1,f +7585,2412b,71,1,t +7585,2412b,0,7,f +7585,2431,0,4,f +7585,2540,71,2,f +7585,298c02,15,2,f +7585,298c02,15,1,t +7585,3002,14,1,f +7585,3004,14,1,f +7585,3005,14,1,f +7585,3020,14,2,f +7585,3020,0,1,f +7585,3020,71,1,f +7585,3021,14,1,f +7585,3021,0,1,f +7585,3022,71,1,f +7585,3022,14,3,f +7585,3023,25,1,f +7585,3023,14,1,t +7585,3023,71,1,f +7585,3023,0,1,f +7585,3023,14,3,f +7585,3024,14,3,f +7585,3031,0,1,f +7585,3034,71,1,f +7585,3039,71,1,f +7585,3039,14,2,f +7585,3040b,14,1,f +7585,30503,15,2,f +7585,30602,40,3,f +7585,3062b,14,2,f +7585,3069b,15,1,f +7585,3069b,0,1,f +7585,3069b,71,2,f +7585,3298,14,1,f +7585,3460,15,2,f +7585,3660,0,5,f +7585,3665,0,2,f +7585,3666,15,1,f +7585,3666,14,2,f +7585,3666,0,2,f +7585,3666,71,1,f +7585,3710,25,1,f +7585,3710,15,1,f +7585,3794a,71,5,f +7585,3794a,0,10,f +7585,3795,14,2,f +7585,3795,72,1,f +7585,3839b,14,1,f +7585,4032a,0,1,f +7585,4081b,0,2,f +7585,4081b,71,3,f +7585,4081b,14,4,f +7585,41764,0,1,f +7585,41765,0,1,f +7585,41767,14,1,f +7585,41768,14,1,f +7585,41769,14,3,f +7585,41770,14,3,f +7585,4286,0,4,f +7585,4286,14,1,f +7585,43713,0,3,f +7585,43719,14,1,f +7585,44302a,0,3,f +7585,44567a,14,3,f +7585,44661,14,1,f +7585,44728,72,1,f +7585,6019,0,4,f +7585,6141,40,1,t +7585,6141,71,1,t +7585,6141,15,7,f +7585,6141,40,2,f +7585,6141,71,4,f +7585,6141,25,1,t +7585,6141,15,1,t +7585,6141,0,11,f +7585,6141,25,4,f +7585,6141,0,1,t +7585,6564,14,1,f +7585,6565,14,1,f +7587,2412b,72,2,f +7587,2431,320,8,f +7587,2432,0,2,f +7587,2445,0,1,f +7587,2555,72,4,f +7587,2569,71,1,f +7587,2730,0,4,f +7587,2780,0,25,f +7587,2780,0,1,t +7587,3001,72,1,f +7587,3003,320,4,f +7587,3004,71,1,f +7587,3007,0,3,f +7587,3010,19,2,f +7587,3010,15,1,f +7587,30171,0,1,f +7587,3020,72,2,f +7587,3022,15,1,f +7587,3023,15,4,f +7587,3023,0,2,f +7587,3024,72,2,f +7587,3031,320,3,f +7587,3032,19,1,f +7587,3034,0,4,f +7587,3034,19,2,f +7587,3034,320,2,f +7587,3035,0,2,f +7587,3039,320,4,f +7587,3040b,320,2,f +7587,30488c01,0,1,f +7587,30592,72,1,f +7587,30663,0,1,f +7587,3069b,4,1,f +7587,3070b,15,3,t +7587,3070b,15,6,f +7587,3176,1,2,f +7587,32054,71,2,f +7587,32073,71,4,f +7587,32209,72,4,f +7587,32316,72,2,f +7587,32324,0,1,f +7587,3245b,72,4,f +7587,32474,27,4,f +7587,32524,0,1,f +7587,32526,72,2,f +7587,32531,0,2,f +7587,3308,15,1,f +7587,3460,19,1,f +7587,3623,19,3,f +7587,3626bpr0441,14,1,f +7587,3660,320,10,f +7587,3665,72,2,f +7587,3678b,72,1,f +7587,3700,0,6,f +7587,3700,19,5,f +7587,3709,0,5,f +7587,3710,72,4,f +7587,3713,71,1,t +7587,3713,71,8,f +7587,3747b,320,4,f +7587,3747b,72,8,f +7587,3794a,19,4,f +7587,3795,320,2,f +7587,3832,72,3,f +7587,3894,0,2,f +7587,3937,71,2,f +7587,3962b,0,1,f +7587,4079,71,1,f +7587,4081b,0,2,f +7587,4085c,72,2,f +7587,4150,71,2,f +7587,4162,72,1,f +7587,4175,72,3,f +7587,4176,40,2,f +7587,42022,320,2,f +7587,42023,320,2,f +7587,4274,71,1,f +7587,4274,71,1,t +7587,44728,0,2,f +7587,4477,0,1,f +7587,4515,19,1,f +7587,50943,71,1,f +7587,50950,320,4,f +7587,54125pb01,484,1,f +7587,54125pb01,0,1,f +7587,54125pb02,69,1,f +7587,54200,40,2,f +7587,54470,9999,1,t +7587,6134,0,2,f +7587,6141,46,1,t +7587,6141,46,4,f +7587,6141,71,1,t +7587,6141,71,8,f +7587,6581,0,4,f +7587,6582,71,4,f +7587,970c00,0,1,f +7587,973pb0181c01,72,1,f +7588,2343,14,1,f +7588,2423,2,2,f +7588,2445,74,1,f +7588,2456,15,1,f +7588,2488,0,1,f +7588,2489,6,1,f +7588,3003,15,1,f +7588,3004,0,1,f +7588,3069b,0,1,f +7588,3185,13,2,f +7588,3460,15,2,f +7588,3626bp02,14,1,f +7588,3741,2,3,f +7588,3742,5,9,f +7588,3742,5,3,t +7588,3833,0,1,f +7588,3836,6,1,f +7588,3837,8,1,f +7588,3852b,6,1,f +7588,4491b,1,1,f +7588,4493c01pb02,0,1,f +7588,4523,1,1,f +7588,4589,7,1,f +7588,6093,0,1,f +7588,6183,15,2,f +7588,6251,15,1,f +7588,6417stk01,9999,1,t +7588,970c00,15,1,f +7588,973p12c01,4,1,f +7589,645bc01,15,8,f +7589,645bc01,4,8,f +7590,15573,0,4,f +7590,15573,71,1,f +7590,15712,0,2,f +7590,3020,0,3,f +7590,3021,72,1,f +7590,3023,40,4,f +7590,3034,72,1,f +7590,30374,0,1,f +7590,3069b,40,1,f +7590,3176,0,1,f +7590,3710,0,2,f +7590,4070,72,4,f +7590,4081b,0,2,f +7590,41769,0,1,f +7590,41770,0,1,f +7590,42610,71,2,f +7590,4488,71,2,f +7590,47456,0,1,f +7590,47720,0,1,f +7590,47755,0,1,f +7590,49668,0,2,f +7590,54200,40,2,f +7590,54200,0,4,f +7590,54200,0,1,t +7590,54200,40,1,t +7590,59900,182,1,f +7590,6014b,71,2,f +7590,60470a,71,1,f +7590,60849,71,1,t +7590,60849,71,2,f +7590,61409,0,2,f +7590,6141,179,1,t +7590,6141,179,2,f +7590,87697,0,2,f +7590,92409,0,2,f +7590,99206,4,1,f +7590,99781,71,4,f +7592,11291,14,1,f +7592,11477,14,8,f +7592,11477,0,2,f +7592,13731,14,2,f +7592,15068,14,2,f +7592,15068,0,1,f +7592,18972,40,1,f +7592,18974,14,4,f +7592,18975,72,2,f +7592,18976,0,4,f +7592,18977,0,4,f +7592,18980,0,1,f +7592,2420,14,4,f +7592,24299,14,2,f +7592,24307,14,2,f +7592,24308a,0,4,t +7592,24308b,0,4,f +7592,2446,4,1,f +7592,2447,47,1,f +7592,2447,47,1,t +7592,298c02,0,1,f +7592,298c02,0,1,t +7592,3001,71,1,f +7592,3002,27,1,f +7592,30029,0,1,f +7592,3004,15,1,f +7592,3020,0,1,f +7592,3020,4,3,f +7592,3021,15,4,f +7592,3022,14,2,f +7592,3022,1,3,f +7592,3023,71,9,f +7592,3024,71,1,t +7592,3024,71,3,f +7592,3024,14,1,t +7592,3024,14,4,f +7592,3031,71,1,f +7592,3040b,4,2,f +7592,30414,0,1,f +7592,3066,40,2,f +7592,3068b,14,3,f +7592,3069b,14,1,f +7592,3069b,4,1,f +7592,3069b,0,4,f +7592,3069bp02,71,1,f +7592,3069bpr0165,14,1,f +7592,3069bpr0166,14,1,f +7592,3070b,14,1,t +7592,3070b,14,4,f +7592,3176,72,1,f +7592,3460,4,2,f +7592,3622,4,2,f +7592,3623,14,2,f +7592,3626cpr1579,14,1,f +7592,3678b,4,1,f +7592,3710,1,3,f +7592,3749,19,4,f +7592,3795,0,2,f +7592,3829c01,4,1,f +7592,4006,0,1,f +7592,4070,14,2,f +7592,4274,1,1,t +7592,4274,1,2,f +7592,43722,14,1,f +7592,43723,14,1,f +7592,4595,0,1,f +7592,54200,0,5,f +7592,54200,15,1,t +7592,54200,4,1,t +7592,54200,14,6,f +7592,54200,0,1,t +7592,54200,4,1,f +7592,54200,15,1,f +7592,54200,14,1,t +7592,6141,47,1,f +7592,6141,15,8,f +7592,6141,15,1,t +7592,6141,47,1,t +7592,62462,0,1,f +7592,6636,14,2,f +7592,75870stk01,9999,1,f +7592,87079,14,3,f +7592,87087,0,1,f +7592,87609,14,1,f +7592,93273,0,1,f +7592,93606,14,3,f +7592,970c00,15,1,f +7592,973pr3285c01,15,1,f +7592,99206,15,2,f +7592,99207,0,7,f +7592,99780,71,1,f +7594,194cx1,2,1,f +7594,2340,15,2,f +7594,2340,14,2,f +7594,2343,47,2,f +7594,2357,14,4,f +7594,2357,1,1,f +7594,2357,15,8,f +7594,2358p03,2,2,f +7594,2361p02,2,1,f +7594,2362a,41,2,f +7594,2362a,7,2,f +7594,2362a,14,2,f +7594,2399,14,2,f +7594,2399,15,1,f +7594,2412b,4,5,f +7594,2412b,14,2,f +7594,2420,7,2,f +7594,2420,14,4,f +7594,2421,7,1,f +7594,2431,14,1,f +7594,2431,15,1,f +7594,2431,7,1,f +7594,2432,0,2,f +7594,2432,7,1,f +7594,2432,14,2,f +7594,2432,15,2,f +7594,2440p69,0,1,f +7594,2441,2,1,f +7594,2446,15,1,f +7594,2447,41,1,f +7594,2453a,15,4,f +7594,2454a,15,5,f +7594,2460,4,1,f +7594,2460,0,2,f +7594,2466,41,7,f +7594,2468,41,2,f +7594,2479,7,3,f +7594,2483,41,1,f +7594,2486,4,2,f +7594,2495,4,1,f +7594,2496,0,3,f +7594,2508,15,1,f +7594,2518,2,4,f +7594,2536,6,5,f +7594,2540,0,3,f +7594,2540,4,2,f +7594,2540,7,2,f +7594,2555,0,1,f +7594,2563,6,1,f +7594,2566,2,1,f +7594,2569,0,2,f +7594,2582,14,4,f +7594,2620,41,1,f +7594,2635a,15,2,f +7594,2655,7,2,f +7594,2877,15,3,f +7594,298c02,4,2,f +7594,298c02,7,1,f +7594,3001,7,1,f +7594,3002,0,1,f +7594,3003,14,8,f +7594,3003,0,1,f +7594,3003,15,1,f +7594,3004,7,3,f +7594,3004,0,2,f +7594,3004,15,6,f +7594,3004,14,2,f +7594,3004,1,6,f +7594,3004,4,2,f +7594,3005,15,18,f +7594,3005,14,2,f +7594,3005,7,3,f +7594,3005,1,3,f +7594,3008,15,8,f +7594,3009,1,2,f +7594,3009,15,4,f +7594,3010,14,1,f +7594,3010,15,5,f +7594,3020,14,3,f +7594,3020,4,5,f +7594,3020,7,1,f +7594,3020,0,3,f +7594,3020,15,3,f +7594,3021,14,1,f +7594,3021,7,1,f +7594,3021,15,1,f +7594,3021,0,1,f +7594,3022,2,8,f +7594,3022,15,1,f +7594,3022,4,7,f +7594,3022,0,4,f +7594,3023,15,6,f +7594,3023,0,5,f +7594,3023,14,5,f +7594,3023,4,7,f +7594,3023,7,1,f +7594,3024,46,4,f +7594,3024,36,3,f +7594,3024,7,4,f +7594,3024,33,1,f +7594,3024,15,6,f +7594,3024,34,1,f +7594,3029,14,1,f +7594,3030,7,3,f +7594,3031,4,1,f +7594,3031,15,2,f +7594,3033,7,3,f +7594,3034,7,1,f +7594,3034,0,1,f +7594,3035,1,1,f +7594,3035,7,1,f +7594,3037,7,2,f +7594,3038,15,2,f +7594,3039,0,2,f +7594,3039pc5,7,1,f +7594,3039pr0005,15,1,f +7594,3040b,14,3,f +7594,3040b,15,15,f +7594,3040p32,7,2,f +7594,3062b,7,1,f +7594,3068b,4,1,f +7594,3068b,7,2,f +7594,3068b,14,4,f +7594,3069b,4,3,f +7594,3069b,14,4,f +7594,3069b,15,1,f +7594,3069bp68,15,1,f +7594,3070b,4,2,f +7594,3070b,15,3,f +7594,3070b,36,2,f +7594,3070b,34,2,f +7594,3070b,46,2,f +7594,309p03,2,1,f +7594,3139,0,14,f +7594,3188,14,1,f +7594,3189,14,1,f +7594,3298,4,2,f +7594,3430c01,7,1,f +7594,3456,15,1,f +7594,3460,1,1,f +7594,3460,15,1,f +7594,3460,7,8,f +7594,3460,14,1,f +7594,3460,0,3,f +7594,3474,15,1,f +7594,3475a,0,2,f +7594,3585,15,1,f +7594,3586,15,1,f +7594,3622,1,5,f +7594,3622,15,12,f +7594,3623,14,2,f +7594,3623,7,3,f +7594,3623,0,2,f +7594,3623,15,4,f +7594,3623,4,4,f +7594,3624,0,1,f +7594,3624,15,1,f +7594,3626bp02,14,2,f +7594,3626bp03,14,2,f +7594,3626bp07,14,3,f +7594,3626bp7e,14,2,f +7594,3626bpr0001,14,2,f +7594,3626bpx11,14,1,f +7594,3633,0,2,f +7594,3641,0,12,f +7594,3660,14,1,f +7594,3665,15,6,f +7594,3666,7,1,f +7594,3666,0,6,f +7594,3666,15,2,f +7594,3676,4,2,f +7594,3676,14,2,f +7594,3679,7,5,f +7594,3680,7,1,f +7594,3680,0,3,f +7594,3680,4,1,f +7594,3710,1,2,f +7594,3710,7,4,f +7594,3710,15,4,f +7594,3710,4,2,f +7594,3710,0,2,f +7594,3730,0,1,f +7594,3741,2,2,f +7594,3742,14,2,t +7594,3742,14,6,f +7594,3747a,0,1,f +7594,3755,15,2,f +7594,3787,15,1,f +7594,3788,4,1,f +7594,3794a,15,1,f +7594,3794a,14,3,f +7594,3794a,0,2,f +7594,3795,0,1,f +7594,3795,4,1,f +7594,3829c01,4,2,f +7594,3829c01,15,1,f +7594,3832,2,4,f +7594,3832,15,3,f +7594,3833,4,1,f +7594,3839b,0,1,f +7594,3857,2,1,f +7594,3867,2,1,f +7594,3899,47,2,f +7594,3900,15,2,f +7594,3901,0,2,f +7594,3938,0,1,f +7594,3941,4,2,f +7594,3941,0,1,f +7594,3942bpr01,15,1,f +7594,3942c,15,1,f +7594,3962b,0,2,f +7594,4032a,2,1,f +7594,4070,14,4,f +7594,4070,15,7,f +7594,4079,4,6,f +7594,4079,7,4,f +7594,4081b,0,1,f +7594,4081b,4,2,f +7594,4085c,15,4,f +7594,4162,7,1,f +7594,4162,15,1,f +7594,4175,7,2,f +7594,4215a,15,1,f +7594,4216,15,10,f +7594,4216,1,2,f +7594,4217,15,5,f +7594,4218,1,6,f +7594,4218,41,2,f +7594,4219,1,1,f +7594,4275b,0,1,f +7594,4276b,0,1,f +7594,4282,14,1,f +7594,4286,14,2,f +7594,4286,4,2,f +7594,4315,4,5,f +7594,4315,14,1,f +7594,4345b,7,2,f +7594,4345b,14,2,f +7594,4346,14,2,f +7594,4346,7,2,f +7594,4360,0,1,f +7594,4445,14,2,f +7594,4449,6,2,f +7594,4449,15,2,f +7594,4449,0,2,f +7594,4449,7,2,f +7594,4477,14,2,f +7594,4477,15,5,f +7594,4477,1,2,f +7594,4485,4,4,f +7594,4485,1,1,f +7594,4488,0,1,f +7594,4530,0,1,f +7594,4533,7,3,f +7594,4589,36,1,f +7594,4589,4,1,f +7594,4589,0,4,f +7594,4600,0,3,f +7594,4623,0,2,f +7594,4624,15,12,f +7594,4624,7,14,f +7594,4625,15,4,f +7594,476,15,1,f +7594,47899c01,7,1,f +7594,4854,4,4,f +7594,4854,14,1,f +7594,4855,4,2,f +7594,4855,14,1,f +7594,4856a,15,1,f +7594,4856a,1,1,f +7594,4857,15,4,f +7594,4859,15,1,f +7594,4859,0,1,f +7594,4859,1,1,f +7594,4859,4,1,f +7594,4861,14,1,f +7594,4862,41,12,f +7594,4863,15,6,f +7594,4864a,1,2,f +7594,4864a,15,2,f +7594,4864a,7,2,f +7594,4864a,41,1,f +7594,4865a,4,5,f +7594,4865a,7,4,f +7594,4865a,15,4,f +7594,4865a,14,12,f +7594,4867pb05,15,1,f +7594,4868a,15,2,f +7594,4869,7,2,f +7594,4870,7,7,f +7594,6069,15,1,f +7594,6081,15,2,f +7594,6087,7,2,f +7594,6111,15,6,f +7594,6141,15,30,f +7594,6141,47,8,f +7594,6141,46,10,f +7594,6141,33,8,f +7594,6141,36,9,f +7594,6152,41,1,f +7594,6153a,15,1,f +7594,6157,0,1,f +7594,6159,7,4,f +7594,6160c01,7,6,f +7594,6597stk01,9999,1,t +7594,73194c01,7,1,f +7594,92410,1,1,f +7594,92410,15,2,f +7594,970c00,4,1,f +7594,970c00,0,2,f +7594,970c00,15,2,f +7594,970c00,2,2,f +7594,970c00,7,1,f +7594,970c00,1,4,f +7594,973p70c01,6,1,f +7594,973p73c01,2,1,f +7594,973pb0031c01,1,1,f +7594,973pb0097c01,1,3,f +7594,973pb0128c01,15,1,f +7594,973pr1204c01,15,1,f +7594,973px130c01,15,1,f +7594,973px189c01,0,1,f +7594,973px20c01,0,1,f +7594,973px2c01,1,1,f +7595,12825,0,2,f +7595,2357,320,2,f +7595,2412b,72,2,f +7595,2444,4,1,f +7595,2460,4,2,f +7595,2540,0,1,f +7595,2654,0,7,f +7595,2780,0,1,f +7595,2780,0,1,t +7595,298c02,15,1,f +7595,298c02,15,1,t +7595,3001,71,2,f +7595,3005,71,2,f +7595,3005,320,2,f +7595,3008,0,2,f +7595,3020,72,2,f +7595,3020,19,1,f +7595,3023,4,7,f +7595,3023,19,1,f +7595,3031,19,1,f +7595,3032,19,1,f +7595,3035,19,4,f +7595,30361dps1,15,1,f +7595,30362,15,2,f +7595,30367cpr0006,71,1,f +7595,30374,41,2,f +7595,30408pr0002,15,1,f +7595,3040b,320,8,f +7595,30480,297,1,f +7595,30565,19,4,f +7595,3062b,47,2,f +7595,3069b,320,16,f +7595,32530,4,1,f +7595,3626b,0,1,f +7595,3626bpr0638,78,1,f +7595,3626cpr0635,78,1,f +7595,3700,0,2,f +7595,3794a,320,3,f +7595,3829c01,0,1,f +7595,3832,72,1,f +7595,3901,71,1,f +7595,4079b,0,2,f +7595,4162,320,2,f +7595,4229,71,1,f +7595,42446,72,1,f +7595,44728,72,2,f +7595,4530,19,1,f +7595,4733,0,1,f +7595,4740,72,2,f +7595,4740,47,1,f +7595,4865b,71,3,f +7595,4865b,4,4,f +7595,4868b,72,2,f +7595,50950,320,1,f +7595,54200,320,4,f +7595,54200,15,1,t +7595,54200,320,1,t +7595,54200,15,2,f +7595,54200,0,2,f +7595,54200,0,1,t +7595,58247,0,1,f +7595,61409,72,4,f +7595,6141,36,1,f +7595,6141,0,1,t +7595,6141,36,1,t +7595,6141,0,2,f +7595,6231,4,6,f +7595,62360,47,1,f +7595,64567,71,2,f +7595,64567,80,2,f +7595,75c21,71,2,f +7595,85080,0,2,f +7595,87087,72,6,f +7595,89140,0,1,f +7595,970c00,19,1,f +7595,970c00,297,1,f +7595,970c00pr0113,19,1,f +7595,970x026,15,1,f +7595,973pr0510c01,15,1,f +7595,973pr0520c01,15,1,f +7595,973pr0530c01,19,1,f +7595,973pr1339c01,297,1,f +7597,15391,15,2,f +7597,15392,72,2,f +7597,15392,72,1,t +7597,2540,0,3,f +7597,2584,0,1,f +7597,2585,71,1,f +7597,30031,0,1,f +7597,3004,0,1,f +7597,3020,71,1,f +7597,3021,72,1,f +7597,3023,41,8,f +7597,30236,15,1,f +7597,3024,71,2,f +7597,3034,0,1,f +7597,30377,0,1,f +7597,30377,0,1,t +7597,30395,72,1,f +7597,30602,41,1,f +7597,3062b,42,2,f +7597,3068b,72,2,f +7597,3626cpr1489,14,1,f +7597,3626cpr1491,35,1,f +7597,3710,0,1,f +7597,3747b,0,1,f +7597,41334,0,1,f +7597,43713,0,1,f +7597,44728,71,1,f +7597,4740,41,2,f +7597,47755,0,1,f +7597,56823c50,0,1,f +7597,56890,0,4,f +7597,6014b,71,4,f +7597,60478,71,2,f +7597,60897,71,4,f +7597,61252,0,2,f +7597,61409,0,2,f +7597,6141,182,6,f +7597,6141,182,1,t +7597,6141,47,2,f +7597,6141,47,1,t +7597,6157,71,2,f +7597,61780,72,2,f +7597,85984,0,2,f +7597,87991,484,1,f +7597,93273,0,2,f +7597,95199,0,1,f +7597,970c00,272,1,f +7597,970c00pr0737,0,1,f +7597,973pr2756c01,0,1,f +7597,973pr2759c01,72,1,f +7597,98138,41,4,f +7597,98138,41,1,t +7597,99207,0,1,f +7598,2431,7,4,f +7598,2450,2,2,f +7598,2456,1,2,f +7598,2555,0,4,f +7598,2577,1,4,f +7598,2654,0,2,f +7598,2730,1,4,f +7598,2780,0,13,f +7598,2825,7,2,f +7598,2854,7,2,f +7598,3001,1,10,f +7598,3003,1,2,f +7598,3004,1,16,f +7598,30208,42,2,f +7598,30209,1,2,f +7598,3022,7,2,f +7598,3023,7,14,f +7598,30230px1,33,1,f +7598,30230px2,33,1,f +7598,3033,7,2,f +7598,3040b,7,4,f +7598,3068b,3,2,f +7598,3069b,7,2,f +7598,32000,7,1,f +7598,32001,7,6,f +7598,32002,8,8,f +7598,32009,22,2,f +7598,32013,1,4,f +7598,32014,1,2,f +7598,32015,7,2,f +7598,32016,1,4,f +7598,32017,7,4,f +7598,32028,7,4,f +7598,32039,7,4,f +7598,32054,3,8,f +7598,32062,0,4,f +7598,32064a,3,2,f +7598,32073,0,2,f +7598,32074c01,3,1,f +7598,32104c01,1,1,f +7598,32123b,7,8,f +7598,3460,7,2,f +7598,3482,3,2,f +7598,3623,7,4,f +7598,3634,0,2,f +7598,3647,7,4,f +7598,3648a,7,2,f +7598,3649,7,4,f +7598,3650c,7,2,f +7598,3666,7,2,f +7598,3673,7,12,f +7598,3700,1,8,f +7598,3701,1,4,f +7598,3702,1,2,f +7598,3703,1,6,f +7598,3705,0,2,f +7598,3706,0,2,f +7598,3707,0,2,f +7598,3708,0,2,f +7598,3709,7,4,f +7598,3709,22,2,f +7598,3710,7,4,f +7598,3710,3,6,f +7598,3710,14,2,f +7598,3713,7,20,f +7598,3737,0,2,f +7598,3738,7,6,f +7598,3747b,1,2,f +7598,3749,7,8,f +7598,3832,7,2,f +7598,3894,1,8,f +7598,3895,1,2,f +7598,3937,0,2,f +7598,3938,0,2,f +7598,3941,1,4,f +7598,3960,15,2,f +7598,4019,7,2,f +7598,4032a,15,2,f +7598,4162,7,2,f +7598,4274,7,4,f +7598,4286,14,2,f +7598,4477,7,2,f +7598,4519,0,2,f +7598,4740,15,2,f +7598,5306bc020,0,2,f +7598,5306bc036,0,2,f +7598,6048a,0,2,f +7598,6141,1,3,f +7598,6141,7,3,f +7598,6536,7,6,f +7598,6538b,7,4,f +7598,6541,1,4,f +7598,6553,7,2,f +7598,6558,0,2,f +7598,6575,7,2,f +7598,6581,0,2,f +7598,6582,3,2,f +7598,6587,8,2,f +7598,6629,3,2,f +7598,6632,7,4,f +7598,71427c01,7,2,f +7598,71509,0,4,f +7598,75c16,14,2,f +7598,75c36,3,2,f +7598,75c44,14,2,f +7598,76019,15,2,f +7598,76110c01,14,2,f +7598,879,7,2,f +7598,x35,14,2,f +7599,3811,2,1,f +7602,2542,4,1,f +7602,2555,0,1,f +7602,3009,6,2,f +7602,30115,4,1,f +7602,30141,8,1,f +7602,30153,42,1,f +7602,30158,6,1,f +7602,30167,0,1,f +7602,3068bpx24,19,1,f +7602,3069bp03,7,1,f +7602,3626bpx93,14,1,f +7602,3794a,4,1,f +7602,3841,8,1,f +7602,3937,4,1,f +7602,3938,0,1,f +7602,3958,6,1,f +7602,970c00,6,1,f +7602,973paac01,8,1,f +7603,12113,179,1,f +7603,12602,14,2,f +7603,12651,4,2,f +7603,2302,1,2,f +7603,3011,14,1,f +7603,31110,1,1,f +7603,31110,15,4,f +7603,31171,0,1,f +7603,3437,14,1,f +7603,4066,15,9,f +7603,4066,1,4,f +7603,40666,1,1,f +7603,40666,14,1,f +7603,4066pb423,15,1,f +7603,44524,72,2,f +7603,47414,0,1,f +7603,47437,15,1,f +7603,48842,15,1,f +7603,4892,15,1,f +7603,4895,14,1,f +7603,51262,72,2,f +7603,51695,72,1,f +7603,51697,72,1,f +7603,51704,1,1,f +7603,51705,1,2,f +7603,51706,179,2,f +7603,51708,179,1,f +7603,61318,71,1,f +7603,6474,1,3,f +7603,92009,14,1,f +7603,92011,71,1,f +7603,92925,71,1,f +7603,93242,14,1,f +7603,93801,1,1,f +7603,98465,212,2,f +7603,dupmc3pb02,4,1,f +7604,95652,15,1,f +7606,30361dps5,0,1,f +7606,30362,0,2,f +7606,30367cpr0003,0,1,f +7608,11055,71,6,f +7608,11203,72,1,f +7608,11211,71,6,f +7608,11214,72,1,f +7608,11215,71,2,f +7608,11477,191,4,f +7608,14719,191,2,f +7608,14769,71,2,f +7608,14769,191,2,f +7608,15068,72,2,f +7608,15573,70,6,f +7608,15573,71,12,f +7608,2357,71,2,f +7608,2357,191,14,f +7608,2412b,72,8,f +7608,2412b,71,2,f +7608,2420,72,2,f +7608,2431,70,2,f +7608,2431,191,7,f +7608,2431,71,1,f +7608,2540,72,8,f +7608,2654,71,9,f +7608,2654,0,2,f +7608,2780,0,2,f +7608,2780,0,1,t +7608,298c02,0,1,f +7608,298c02,0,1,t +7608,3002,71,2,f +7608,3004,72,2,f +7608,3004,191,10,f +7608,3005,71,8,f +7608,3009,72,4,f +7608,3010,191,4,f +7608,3020,191,8,f +7608,3021,191,3,f +7608,3021,70,2,f +7608,3021,71,7,f +7608,3022,72,2,f +7608,3022,191,2,f +7608,3022,71,9,f +7608,3023,72,8,f +7608,3023,191,13,f +7608,3023,0,1,f +7608,3023,71,2,f +7608,3024,71,2,f +7608,3024,191,6,f +7608,3024,72,1,t +7608,3024,191,1,t +7608,3024,72,4,f +7608,3024,71,1,t +7608,3030,71,2,f +7608,3031,72,2,f +7608,3032,71,2,f +7608,3034,71,6,f +7608,3036,71,1,f +7608,30364,0,2,f +7608,30365,71,2,f +7608,30387,71,2,f +7608,3040b,191,2,f +7608,30414,72,5,f +7608,3068b,70,4,f +7608,3068b,72,3,f +7608,3068b,191,6,f +7608,3068b,71,4,f +7608,3068bpr0278,0,1,f +7608,3068bpr0279,191,1,f +7608,3069b,71,3,f +7608,3069b,191,8,f +7608,3069b,72,5,f +7608,3069b,0,1,f +7608,3070b,71,2,f +7608,3070b,191,4,f +7608,3070b,191,1,t +7608,3070b,72,1,t +7608,3070b,72,1,f +7608,3070b,71,1,t +7608,32000,71,2,f +7608,32000,19,6,f +7608,32039,71,2,f +7608,32054,0,4,f +7608,32062,4,2,f +7608,32064a,71,7,f +7608,32123b,71,1,t +7608,32123b,71,6,f +7608,32187,71,2,f +7608,32250,72,4,f +7608,32291,0,1,f +7608,32316,72,2,f +7608,3460,0,2,f +7608,3622,191,2,f +7608,3622,72,2,f +7608,3623,72,8,f +7608,3623,191,4,f +7608,3660,70,5,f +7608,3665,191,6,f +7608,3666,0,4,f +7608,3666,71,5,f +7608,3666,191,6,f +7608,3700,72,13,f +7608,3705,0,2,f +7608,3707,0,2,f +7608,3709,71,1,f +7608,3710,191,7,f +7608,3710,72,2,f +7608,3710,70,2,f +7608,3713,71,1,t +7608,3713,71,5,f +7608,3749,19,4,f +7608,3795,72,5,f +7608,3795,191,9,f +7608,3832,72,1,f +7608,3832,71,1,f +7608,3941,70,1,f +7608,40490,71,2,f +7608,4070,72,4,f +7608,4081b,72,4,f +7608,4162,72,4,f +7608,41677,71,4,f +7608,4185,71,2,f +7608,42003,71,4,f +7608,4274,1,4,f +7608,4274,71,2,f +7608,4274,71,1,t +7608,4274,1,1,t +7608,4286,191,4,f +7608,4287,191,4,f +7608,43093,1,6,f +7608,43898,72,2,f +7608,44728,71,4,f +7608,44728,72,4,f +7608,4477,72,3,f +7608,4519,14,2,f +7608,45590,0,2,f +7608,4740,71,4,f +7608,47755,72,2,f +7608,48729b,72,1,t +7608,48729b,72,2,f +7608,50950,72,4,f +7608,54200,72,1,t +7608,54200,191,1,t +7608,54200,72,2,f +7608,54200,191,2,f +7608,57520,0,8,f +7608,60470b,71,3,f +7608,60478,191,6,f +7608,60897,0,2,f +7608,6091,71,2,f +7608,6141,36,3,f +7608,6141,36,1,t +7608,6141,0,2,f +7608,6141,0,1,t +7608,6231,71,2,f +7608,62462,71,2,f +7608,6255,2,1,f +7608,63864,70,2,f +7608,63864,72,4,f +7608,64276,72,3,f +7608,6536,72,2,f +7608,6541,70,1,f +7608,6558,1,8,f +7608,6587,28,10,f +7608,6636,191,7,f +7608,6636,72,2,f +7608,73590c03a,0,2,f +7608,85984,72,2,f +7608,85984,71,4,f +7608,87079,71,1,f +7608,87079,191,6,f +7608,87079,70,2,f +7608,87079,72,4,f +7608,87079pr0083,191,1,f +7608,87087,1,2,f +7608,87087,191,12,f +7608,87544,0,1,f +7608,87552,71,4,f +7608,87580,71,1,f +7608,88323,0,40,f +7608,92013,72,3,f +7608,93273,72,6,f +7608,93274,71,2,f +7608,96874,25,1,t +7608,98138,71,1,t +7608,98138,71,4,f +7608,98282,72,2,f +7608,98286,71,4,f +7608,99021,72,2,f +7608,99206,0,1,f +7608,99207,25,2,f +7608,99780,72,6,f +7608,99781,71,3,f +7609,10048,308,1,f +7609,2343,297,1,f +7609,2489,70,1,f +7609,3004,72,2,f +7609,3020,0,1,f +7609,3021,2,2,f +7609,3021,0,1,f +7609,3040b,72,2,f +7609,3062b,72,2,f +7609,3062b,70,4,f +7609,3069b,72,1,f +7609,33078,4,1,f +7609,3626cpr0973,78,1,f +7609,3741,2,1,t +7609,3741,2,1,f +7609,3742,15,3,f +7609,3742,15,1,t +7609,3794a,0,1,f +7609,4032a,70,1,f +7609,41879a,308,1,f +7609,4528,0,1,f +7609,4599b,0,1,f +7609,4865b,72,1,f +7609,52107,0,1,f +7609,6141,70,1,f +7609,6141,70,1,t +7609,64647,57,1,t +7609,64647,57,1,f +7609,95228,40,1,f +7609,973pr2054c01,378,1,f +7610,11211,15,7,f +7610,13251,308,1,f +7610,15573,14,1,f +7610,2357,15,5,f +7610,2431,15,2,f +7610,2456,14,1,f +7610,3001,4,1,f +7610,3003,14,2,f +7610,3004,14,4,f +7610,3004,1,4,f +7610,3004,2,2,f +7610,3004,15,15,f +7610,3004,4,4,f +7610,3004,30,4,f +7610,3005,2,4,f +7610,3005,0,4,f +7610,3005,1,2,f +7610,3009,15,15,f +7610,3010,15,8,f +7610,3021,2,1,f +7610,3023,1,3,f +7610,3023,15,2,f +7610,3023,2,4,f +7610,3023,71,14,f +7610,3024,2,1,f +7610,3024,19,3,f +7610,3024,0,1,f +7610,3024,71,4,f +7610,3027,71,1,f +7610,3031,71,1,f +7610,3034,14,4,f +7610,3040b,2,1,f +7610,30414,15,6,f +7610,3062b,47,5,f +7610,3068b,15,1,f +7610,3068b,71,4,f +7610,3068bpr0136,72,1,f +7610,3069b,29,1,f +7610,3069b,15,6,f +7610,3069b,14,5,f +7610,3069b,19,4,f +7610,3069b,28,4,f +7610,3069b,71,18,f +7610,3070b,71,6,f +7610,3070b,4,1,f +7610,3070b,2,3,f +7610,3070b,15,5,f +7610,32000,15,2,f +7610,3460,71,2,f +7610,3622,15,23,f +7610,3623,15,2,f +7610,3623,71,14,f +7610,3626cpr0893,14,1,f +7610,3666,71,6,f +7610,3666,15,7,f +7610,3710,2,1,f +7610,3710,71,2,f +7610,3937,15,1,f +7610,3958,71,2,f +7610,4070,2,2,f +7610,4070,19,1,f +7610,44728,4,1,f +7610,46212,47,4,f +7610,4733,0,1,f +7610,48336,2,1,f +7610,48336,14,1,f +7610,49668,0,2,f +7610,49668,191,1,f +7610,54200,2,8,f +7610,54200,0,2,f +7610,54200,4,4,f +7610,54200,47,1,f +7610,59349,47,2,f +7610,60470a,2,1,f +7610,60592,15,2,f +7610,60596,15,1,f +7610,60616a,47,1,f +7610,60897,25,2,f +7610,6134,71,1,f +7610,6141,47,3,f +7610,6231,14,4,f +7610,63864,1,1,f +7610,6541,15,2,f +7610,6636,15,11,f +7610,73983,71,2,f +7610,87079,71,10,f +7610,87079,14,1,f +7610,87087,27,4,f +7610,87580,14,14,f +7610,88072,15,1,f +7610,92438,72,2,f +7610,92593,15,10,f +7610,970c00,0,1,f +7610,973pr1485c01,4,1,f +7610,98138,320,3,f +7610,98138,46,12,f +7610,98138,36,4,f +7610,98138,27,3,f +7610,98138,41,2,f +7610,98138,182,3,f +7610,98138,1,3,f +7610,98138,33,4,f +7610,98138,25,3,f +7610,98138,34,4,f +7610,98138,29,3,f +7610,98138pr0008,15,2,f +7610,99207,71,1,f +7611,12551pr0001,288,1,f +7611,86038,320,1,f +7611,970c155pr0443,326,1,f +7611,973pr2245c01,326,1,f +7612,2780,0,1,f +7612,32014,0,2,f +7612,32062,4,2,f +7612,43093,1,9,f +7612,47306,15,1,f +7612,50923,72,2,f +7612,53585,0,1,f +7612,57543,135,4,f +7612,57575,135,1,f +7612,60176,72,3,f +7612,60930,135,1,f +7612,61053,15,1,f +7612,6558,1,1,f +7613,32171pb005,0,1,f +7613,32565,3,1,f +7613,32576,3,2,f +7613,32577,27,1,f +7613,32578,27,1,f +7613,32579,8,1,f +7613,40507,27,1,f +7615,24067pr0001,28,1,f +7615,30126pr0001,15,1,f +7615,3626cpr1830,14,1,f +7615,42446,70,1,f +7615,88418,0,1,f +7615,88646,0,1,f +7615,970c00pr0991,19,1,f +7615,973pr3219c01,19,1,f +7619,2431,7,3,f +7619,2444,7,1,f +7619,2456,1,1,f +7619,2625,7,1,f +7619,2654,7,4,f +7619,2780,0,3,f +7619,298c02,19,3,f +7619,3001,19,3,f +7619,3003,1,6,f +7619,3009,19,4,f +7619,3010,0,7,f +7619,30117pb02l,19,1,f +7619,30117pb02r,19,1,f +7619,3020,19,10,f +7619,3022,1,1,f +7619,3022,6,1,f +7619,3023,0,2,f +7619,30237a,8,2,f +7619,3030,7,2,f +7619,30303,19,1,f +7619,30304,8,1,f +7619,3034,1,1,f +7619,3035,6,2,f +7619,30360,19,2,f +7619,30363,6,4,f +7619,30364,0,2,f +7619,30365,8,4,f +7619,30374,7,2,f +7619,30375,19,2,f +7619,30376,19,2,f +7619,30377,19,4,f +7619,30378,19,2,f +7619,30383,8,2,f +7619,3039,19,2,f +7619,3068b,0,1,f +7619,3069b,6,2,f +7619,3070b,7,4,f +7619,3403,0,1,f +7619,3404,0,1,f +7619,3460,0,3,f +7619,3622,1,2,f +7619,3660,8,2,f +7619,3678a,19,1,f +7619,3710,6,8,f +7619,3795,19,2,f +7619,3795,7,3,f +7619,3957a,7,4,f +7619,4070,0,2,f +7619,4150,19,1,f +7619,4274,7,2,f +7619,4282,6,2,f +7619,4286,8,2,f +7619,4349,0,2,f +7619,4460a,19,2,f +7619,4589,19,2,f +7619,4589,57,2,f +7619,4595,19,2,f +7619,4865a,4,1,f +7619,6069px2,19,1,f +7619,6232,7,2,f +7619,6541,1,2,f +7619,6564,19,3,f +7619,6565,19,3,f +7619,6636,6,2,f +7619,75535,19,3,f +7620,2343,0,1,f +7620,2343,7,2,f +7620,2352,14,1,f +7620,2431,0,2,f +7620,2432,4,2,f +7620,2453a,15,4,f +7620,3003,7,1,f +7620,3005,7,2,f +7620,3009,7,1,f +7620,3009,4,2,f +7620,3010,0,1,f +7620,3010p15,14,4,f +7620,3010px2,15,1,f +7620,30179,0,1,f +7620,30181,1,1,f +7620,30182,0,1,f +7620,30182pb03,0,1,f +7620,30184,4,1,f +7620,30185c03pb01,0,1,f +7620,30194,8,1,f +7620,3020,15,1,f +7620,3022,0,1,f +7620,3022,14,1,f +7620,30228,8,1,f +7620,3023,7,1,f +7620,30277,14,1,f +7620,30278c01,4,1,f +7620,3032,0,1,f +7620,3040b,46,2,f +7620,3062b,7,2,f +7620,3062b,46,3,f +7620,3068b,7,2,f +7620,3068bp05,15,1,f +7620,3297p06,15,1,f +7620,3314,0,1,f +7620,3317,14,1,f +7620,3433,14,1,f +7620,3622pb007,15,2,f +7620,3626bp02,14,1,f +7620,3626bp03,14,1,f +7620,3626bp05,14,1,f +7620,3660,15,2,f +7620,3741,2,1,f +7620,3742,14,1,t +7620,3742,14,3,f +7620,3823,41,2,f +7620,3829c01,7,2,f +7620,3836,6,1,f +7620,3837,8,1,f +7620,3865,2,1,f +7620,3899,47,2,f +7620,3942cpr01,15,1,f +7620,3957a,15,2,f +7620,4033,0,1,f +7620,4083,0,1,f +7620,4150p02,14,1,f +7620,4162,7,1,f +7620,4215bpx15,15,1,f +7620,4485,4,1,f +7620,4485,0,1,f +7620,4495b,14,2,f +7620,4532,15,2,f +7620,4533,7,2,f +7620,4599a,7,1,f +7620,4600,0,3,f +7620,4864bpx1,15,1,f +7620,4871,0,3,f +7620,4873,0,2,f +7620,55298,8,1,f +7620,6014a,14,4,f +7620,6014a,15,10,f +7620,6015,0,14,f +7620,6093,0,1,f +7620,6141,34,1,f +7620,6141,36,1,f +7620,6212,1,1,f +7620,76041c01,0,1,f +7620,970c00,1,2,f +7620,970c00,7,1,f +7620,973px122c01,1,1,f +7620,973px18c01,15,1,f +7620,973px28c01,15,1,f +7621,10199,10,2,f +7621,11169,10,6,f +7621,14294,14,1,f +7621,14721,10,2,f +7621,15319,71,1,f +7621,15580,191,3,f +7621,15868,27,1,f +7621,16205,1,1,f +7621,16236,191,1,f +7621,18652,27,1,f +7621,18783,70,4,f +7621,19015,0,1,f +7621,19030,0,1,f +7621,19034,484,1,f +7621,19038,484,1,f +7621,19039,484,1,f +7621,19053,71,1,f +7621,19349,191,1,f +7621,19350,27,1,f +7621,19353,19,1,f +7621,19364,27,1,f +7621,20409,15,1,f +7621,20497,321,1,f +7621,2300,10,1,f +7621,2301,10,2,f +7621,3011,484,4,f +7621,3011,71,3,f +7621,3437,19,4,f +7621,3437,14,2,f +7621,3437,2,2,f +7621,3437,484,3,f +7621,3437,72,4,f +7621,3437,1,2,f +7621,3437,191,4,f +7621,3437,4,4,f +7621,4066,10,2,f +7621,4066,484,2,f +7621,4066,19,2,f +7621,4066,191,2,f +7621,40666,484,1,f +7621,4196,10,1,f +7621,42234,15,2,f +7621,47510pr0005,73,1,f +7621,51704,191,1,f +7621,58086,70,1,f +7621,63710pr0012,25,1,f +7621,6474,71,2,f +7621,6510,73,1,f +7621,6510,4,1,f +7621,6510,25,1,f +7621,6510,10,1,f +7621,75121pr0025,4,1,f +7621,87084,4,1,f +7621,87084,10,3,f +7621,98233,4,1,f +7621,98460,70,4,f +7622,51643,179,1,f +7622,51645,179,1,f +7623,299,9999,1,t +7623,3001a,4,1,f +7623,3002a,4,4,f +7623,3003,4,1,f +7623,3004,47,4,f +7623,3004,0,4,f +7623,3005,47,8,f +7623,3005,4,12,f +7623,3008,4,2,f +7623,3009,4,2,f +7623,3010,4,4,f +7623,3020,4,2,f +7623,3022,4,1,f +7623,3023,4,10,f +7623,3023,14,16,f +7623,3034,0,5,f +7623,3039,4,1,f +7623,3488,0,4,f +7623,4178a,0,1,f +7623,433c01,0,2,f +7623,458,0,4,f +7623,wheel2a,4,4,f +7623,x550a,0,1,f +7624,3650a,7,2,f +7626,33718,89,1,f +7627,3001a,4,1,f +7627,3001a,14,4,f +7627,3003,4,4,f +7627,3004,14,8,f +7627,3005,14,3,f +7627,3009,14,10,f +7627,3010,14,3,f +7627,3020,0,18,f +7627,3020,14,5,f +7627,3022,0,2,f +7627,3022,7,1,f +7627,3081bc01,4,12,f +7627,33bc01,4,2,f +7627,912,2,1,f +7629,3475a,0,2,f +7629,3479,0,2,f +7629,3839b,0,2,f +7629,3940b,15,2,f +7629,3941,1,2,f +7629,3941,57,2,f +7629,3941,0,2,f +7629,3942c,0,1,f +7629,3943b,0,1,f +7629,3956,0,2,f +7629,3960,57,1,f +7629,4032a,1,2,f +7629,4070,0,2,f +7629,4229,0,2,f +7629,4285a,0,1,f +7629,4589,57,2,f +7629,4591,0,1,f +7629,4595,0,2,f +7629,4596,0,2,f +7629,4733,0,2,f +7629,6087,0,2,f +7631,3003,4,1,f +7631,3003,1,1,f +7631,3022,2,1,f +7631,3024,4,1,f +7631,3024,1,1,f +7631,3024,2,2,f +7631,3024,14,2,f +7635,3007mia,4,3,f +7635,3007mia,15,1,f +7635,3185,2,3,f +7635,3297mia,2,40,f +7635,3298mia,2,19,f +7635,3299mia,2,6,f +7635,3853mi,15,5,f +7635,3856mi,2,10,f +7635,3861mi,15,2,f +7635,604mi,15,4,f +7635,archmia,4,2,f +7635,m3001,4,125,f +7635,m3001,15,17,f +7635,m3003,15,14,f +7635,m3003,4,56,f +7636,2357,8,6,f +7636,2412b,1,43,f +7636,2419,1,4,f +7636,2420,1,2,f +7636,30000,8,4,f +7636,3002,7,2,f +7636,3003,1,2,f +7636,3004,19,4,f +7636,3020,1,10,f +7636,3021,7,2,f +7636,3022,14,2,f +7636,3023,8,1,f +7636,3023,7,3,f +7636,30283,7,1,f +7636,3029,0,4,f +7636,30355,0,4,f +7636,30356,0,4,f +7636,30366ps1,40,1,f +7636,30373,8,2,f +7636,3039,7,2,f +7636,30408pr0001,0,1,f +7636,30408px2,15,1,f +7636,3040b,1,2,f +7636,3043,1,2,f +7636,3046a,8,2,f +7636,30517,8,1,f +7636,3068b,0,1,f +7636,3069bpr0086,7,1,f +7636,3176,1,1,f +7636,3622,1,2,f +7636,3623,0,2,f +7636,3626b,6,1,f +7636,3626b,14,1,f +7636,3660,0,2,f +7636,3701,0,3,f +7636,3706,0,1,f +7636,3710,8,4,f +7636,3747a,7,8,f +7636,3794a,2,1,f +7636,3937,8,1,f +7636,3938,0,1,f +7636,3941,7,2,f +7636,3942c,8,1,f +7636,3958,7,1,f +7636,3960,7,1,f +7636,3960ps2,8,1,f +7636,4150,0,1,f +7636,4150ps5,7,2,f +7636,4213,0,1,f +7636,4274,7,1,f +7636,4274,7,1,t +7636,4315,7,1,f +7636,4349,0,1,f +7636,4477,1,4,f +7636,4740,33,1,f +7636,6141,57,1,f +7636,6141,36,1,t +7636,6141,57,1,t +7636,6141,36,4,f +7636,6179,0,1,f +7636,758c01,7,1,f +7636,970c00,0,1,f +7636,970x026,15,1,f +7636,973pr0520c01,15,1,f +7636,973pr1148c01,0,1,f +7637,2420,15,2,f +7637,2420,2,2,f +7637,2456,4,2,f +7637,2456,1,2,f +7637,2456,14,1,f +7637,2456,15,2,f +7637,2458,15,1,f +7637,2460,15,1,f +7637,2479,0,1,f +7637,2877,72,1,f +7637,2926,0,2,f +7637,3001,1,6,f +7637,3001,0,3,f +7637,3001,2,3,f +7637,3001,14,6,f +7637,3001,4,6,f +7637,3001,15,6,f +7637,3001,73,2,f +7637,3002,14,6,f +7637,3002,0,3,f +7637,3002,2,3,f +7637,3002,1,6,f +7637,3002,4,6,f +7637,3002,15,6,f +7637,3003,4,16,f +7637,3003,73,4,f +7637,3003,14,16,f +7637,3003,2,8,f +7637,3003,0,8,f +7637,3003,15,16,f +7637,3003,1,16,f +7637,3004,4,12,f +7637,3004,73,2,f +7637,3004,14,12,f +7637,3004,1,12,f +7637,3004,15,12,f +7637,3004,2,6,f +7637,3004,0,6,f +7637,3005,1,8,f +7637,3005,2,4,f +7637,3005,15,8,f +7637,3005,4,8,f +7637,3005,14,8,f +7637,3005,0,4,f +7637,3005pe1,15,2,f +7637,3007,4,1,f +7637,3007,1,1,f +7637,3007,15,1,f +7637,3007,14,1,f +7637,3008,4,1,f +7637,3008,14,1,f +7637,3008,1,2,f +7637,3008,15,2,f +7637,3009,15,3,f +7637,3009,14,2,f +7637,3009,4,2,f +7637,3009,1,3,f +7637,3010,2,2,f +7637,3010,0,2,f +7637,3010,1,3,f +7637,3010,15,3,f +7637,3010,4,3,f +7637,3010,73,2,f +7637,3010,14,3,f +7637,3020,14,1,f +7637,3020,71,4,f +7637,3021,72,2,f +7637,3021,0,1,f +7637,3021,14,2,f +7637,3022,0,2,f +7637,3022,4,2,f +7637,3023,14,2,f +7637,3023,0,2,f +7637,3030,72,1,f +7637,3031,4,1,f +7637,3039,4,2,f +7637,3039,47,2,f +7637,3040b,15,2,f +7637,3062b,15,4,f +7637,3065,47,2,f +7637,3622,1,4,f +7637,3622,4,4,f +7637,3622,14,4,f +7637,3622,0,2,f +7637,3622,2,2,f +7637,3622,15,4,f +7637,3660,14,2,f +7637,3666,72,2,f +7637,3710,15,1,f +7637,3710,0,4,f +7637,3794a,15,2,f +7637,3794a,0,2,f +7637,3823,47,1,f +7637,3829c01,15,1,f +7637,3832,4,2,f +7637,3867,10,1,f +7637,4083,14,1,f +7637,4130,14,1,f +7637,4131,0,1,f +7637,4132,4,2,f +7637,4133,14,2,f +7637,4864b,47,2,f +7637,55295,0,1,f +7637,55296,0,1,f +7637,55297,0,1,f +7637,55298,0,1,f +7637,55299,0,1,f +7637,55300,0,1,f +7637,6014b,71,4,f +7637,6015,0,4,f +7637,6141,4,2,f +7637,6141,27,1,t +7637,6141,25,2,f +7637,6141,27,4,f +7637,6141,4,1,t +7637,6141,25,1,t +7638,2335,2,1,f +7638,2431pr0053,15,1,f +7638,2436,0,1,f +7638,2456,72,1,f +7638,30027b,4,4,f +7638,30028,0,4,f +7638,3010,15,1,f +7638,3020,15,1,f +7638,3021,4,1,f +7638,3022,15,1,f +7638,3023,72,1,f +7638,3024,15,2,f +7638,3024,4,1,f +7638,3031,0,1,f +7638,3034,2,1,f +7638,30367cpr0018,4,1,f +7638,3040b,4,1,f +7638,3040b,2,1,f +7638,3069b,4,2,f +7638,3069b,15,5,f +7638,3460,72,1,f +7638,3710,15,1,f +7638,3794b,4,3,f +7638,3794b,71,1,f +7638,43719,15,1,f +7638,4589,71,1,f +7638,4865a,2,1,f +7638,4865a,4,1,f +7638,6157,0,2,f +7638,61678,15,1,f +7638,63965,15,1,f +7638,85984,15,1,f +7638,90194,2,1,f +7638,93589pr0002,15,1,f +7640,2335,4,1,f +7640,2343,47,2,f +7640,2362a,40,1,f +7640,2412b,72,6,f +7640,2412b,71,2,f +7640,2420,72,4,f +7640,2431,0,2,f +7640,2431,14,5,f +7640,2431,71,2,f +7640,2431,72,3,f +7640,2439,71,1,f +7640,2445,71,1,f +7640,2453a,71,1,f +7640,2453a,15,1,f +7640,2454a,71,1,f +7640,2456,4,1,f +7640,2465,4,1,f +7640,2496,0,4,f +7640,2540,71,1,f +7640,2542,70,1,t +7640,2542,70,1,f +7640,2736,71,1,f +7640,298c02,15,1,t +7640,298c02,15,1,f +7640,3002,15,2,f +7640,3003,0,4,f +7640,3004,71,4,f +7640,3004,0,2,f +7640,3004,15,11,f +7640,3004,4,13,f +7640,3005,0,6,f +7640,3005,4,8,f +7640,3005,14,4,f +7640,3009,71,3,f +7640,3009,14,1,f +7640,3009,0,3,f +7640,3009,15,8,f +7640,3009,4,10,f +7640,3010,0,1,f +7640,3010,15,1,f +7640,3010,4,9,f +7640,3010,14,1,f +7640,30179,14,2,f +7640,3020,72,1,f +7640,3020,71,3,f +7640,3020,4,1,f +7640,3021,14,2,f +7640,3022,14,2,f +7640,3023,72,3,f +7640,3023,14,18,f +7640,3023,46,4,f +7640,3024,182,5,f +7640,3024,46,3,f +7640,30256,71,1,f +7640,3027,72,2,f +7640,3027,0,1,f +7640,3032,72,1,f +7640,3033,14,1,f +7640,3035,71,2,f +7640,3035,1,1,f +7640,3036,72,1,f +7640,3037,0,4,f +7640,30383,72,2,f +7640,3040b,0,10,f +7640,3040bpr0003,71,1,f +7640,30414,4,1,f +7640,30414,72,2,f +7640,30414,1,1,f +7640,30552,71,2,f +7640,3062b,2,1,f +7640,3062b,4,1,f +7640,3062b,1,6,f +7640,3069b,0,1,f +7640,3069b,14,3,f +7640,3069b,72,2,f +7640,3070b,1,3,f +7640,3070b,1,2,t +7640,3070b,0,1,t +7640,3070b,0,2,f +7640,32000,71,1,f +7640,32054,4,1,f +7640,32062,0,1,f +7640,3245b,14,1,f +7640,3297,15,1,f +7640,3622,4,4,f +7640,3623,72,2,f +7640,3623,14,2,f +7640,3624,0,1,f +7640,3626bpr0043,14,1,f +7640,3626bpr0216,14,1,f +7640,3626bpr0389,14,1,f +7640,3626bpr0498,14,1,f +7640,3626cpr0891,14,1,f +7640,3633,72,3,f +7640,3660,4,3,f +7640,3665,14,6,f +7640,3666,14,6,f +7640,3666,72,6,f +7640,3675,0,4,f +7640,3710,14,6,f +7640,3710,0,2,f +7640,3710,71,2,f +7640,3741,2,1,t +7640,3741,2,1,f +7640,3742,15,1,t +7640,3742,15,3,f +7640,3794b,71,1,f +7640,3795,14,6,f +7640,3795,4,1,f +7640,3795,72,1,f +7640,3829c01,4,1,f +7640,3832,72,2,f +7640,3865,72,3,f +7640,3901,0,1,f +7640,3941,19,2,f +7640,3941,70,1,f +7640,3957a,71,1,t +7640,3957a,71,1,f +7640,3958,14,1,f +7640,4006,0,1,f +7640,4070,15,2,f +7640,4070,4,1,f +7640,4070,71,3,f +7640,4079,14,4,f +7640,4079,4,6,f +7640,4083,15,1,f +7640,4150p02,14,2,f +7640,41879a,71,1,f +7640,4215b,40,8,f +7640,42445,71,2,f +7640,42511,1,2,f +7640,4360,0,1,f +7640,44302a,71,4,f +7640,4449,70,1,f +7640,4460b,4,2,f +7640,44728,0,2,f +7640,4485,4,1,f +7640,4485,1,1,f +7640,4488,71,4,f +7640,4510,71,2,f +7640,4510,72,2,f +7640,4510,0,2,f +7640,4522,0,1,f +7640,46303,71,2,f +7640,4719,4,1,f +7640,4740,71,1,f +7640,48336,71,2,f +7640,4865a,0,1,f +7640,48729a,72,1,t +7640,48729a,72,1,f +7640,50745,14,4,f +7640,52031,14,1,f +7640,52501,14,1,f +7640,54200,47,1,t +7640,54200,47,2,f +7640,54200,14,1,t +7640,54200,36,1,t +7640,54200,14,2,f +7640,54200,36,2,f +7640,57895,40,3,f +7640,59349,47,1,f +7640,59349,71,1,f +7640,59349,15,2,f +7640,59349,4,2,f +7640,6014b,71,4,f +7640,6019,15,2,f +7640,6019,4,2,f +7640,6019,14,1,f +7640,60475a,15,2,f +7640,60476,0,1,f +7640,60478,4,2,f +7640,60478,72,2,f +7640,60593,15,2,f +7640,60594,15,4,f +7640,60596,15,4,f +7640,60602,47,2,f +7640,60603,47,6,f +7640,60616a,40,3,f +7640,60700,0,4,f +7640,60806,0,2,f +7640,6093,70,1,f +7640,6112,4,1,f +7640,61409,72,4,f +7640,6141,182,1,t +7640,6141,4,1,t +7640,6141,0,2,f +7640,6141,14,1,t +7640,6141,0,1,t +7640,6141,182,2,f +7640,6141,14,2,f +7640,6141,4,1,f +7640,6141,71,2,f +7640,6141,71,1,t +7640,6179,14,2,f +7640,64453,40,3,f +7640,6536,0,1,f +7640,6553,71,1,f +7640,6636,14,4,f +7640,6636,4,1,f +7640,6636,72,4,f +7640,85984,0,1,f +7640,85984,0,1,t +7640,87585,70,1,t +7640,88930,14,1,f +7640,92851,47,2,f +7640,970c00,2,1,f +7640,970c00,71,2,f +7640,970c00,0,1,f +7640,973pr1163c01,272,1,f +7640,973pr1173c01,4,1,f +7640,973pr1184c01,0,1,f +7640,973pr1196c01,15,1,f +7640,973pr1271c01,15,1,f +7641,2446,4,1,f +7641,30608,0,1,f +7641,3626bp03,14,1,f +7641,3626bpr0001,14,3,f +7641,3626bpx111,14,1,f +7641,3834,15,1,f +7641,3838,4,1,f +7641,3901,0,1,f +7641,4485,4,1,f +7641,970c00,2,1,f +7641,970c00,4,1,f +7641,970c00,0,1,f +7641,970c00,71,1,f +7641,970c11pb06,0,1,f +7641,973p21c01,0,1,f +7641,973p90c02,4,1,f +7641,973pr0145c01,15,1,f +7641,973px130c01,15,1,f +7641,973px166c02,15,1,f +7642,3003a,15,1,f +7642,3005,15,1,f +7642,3009a,15,1,f +7642,3035a,15,2,f +7642,3062c,4,4,f +7642,3065,15,7,f +7642,32ac01,4,1,f +7642,453ac01,4,1,f +7642,646ac01,4,1,f +7643,2555,15,2,f +7643,2555,1,2,f +7643,2555,0,2,f +7643,2555,14,2,f +7643,2555,7,2,f +7643,2555,4,2,f +7643,4081b,0,2,f +7643,4081b,15,2,f +7643,4081b,14,2,f +7643,4081b,7,2,f +7643,4081b,4,2,f +7643,4081b,1,2,f +7643,4085c,15,2,f +7643,4085c,14,2,f +7643,4085c,7,2,f +7643,4085c,1,2,f +7643,4085c,4,2,f +7643,4085c,0,2,f +7643,6019,4,2,f +7643,6019,1,2,f +7643,6019,15,2,f +7643,6019,0,2,f +7643,6019,7,2,f +7643,6019,14,2,f +7643,6141,0,2,f +7643,6141,15,2,f +7643,6141,7,2,f +7643,6141,4,2,f +7643,6141,1,2,f +7643,6141,14,2,f +7644,3001a,0,1,f +7644,3001a,15,1,f +7644,3003,0,2,f +7644,3003,15,2,f +7644,3004,15,5,f +7644,3004,0,3,f +7644,3004,4,22,f +7644,3004,14,5,f +7644,3005,14,2,f +7644,3005,4,18,f +7644,3005,0,2,f +7644,3008,4,3,f +7644,3009,4,11,f +7644,3010,4,20,f +7644,3010,0,1,f +7644,3020,15,1,f +7644,3020,14,1,f +7644,3022,15,4,f +7644,3023,15,2,f +7644,3023,14,6,f +7644,3037,1,12,f +7644,3039,14,1,f +7644,3039,1,12,f +7644,3040b,0,2,f +7644,3042,1,3,f +7644,3044a,1,1,f +7644,3081cc01,15,3,f +7644,3297,1,8,f +7644,3297,4,2,f +7644,3298,4,2,f +7644,3298,1,8,f +7644,3307,4,1,f +7644,3471,2,1,f +7644,3622,4,14,f +7644,3624,4,1,f +7644,3625,0,1,f +7644,3626bpr0001,14,2,f +7644,3660,14,1,f +7644,3710,14,1,f +7644,3741,2,9,f +7644,3742,4,2,t +7644,3742,4,6,f +7644,3742,14,18,f +7644,3742,14,6,t +7644,3795,14,1,f +7644,3830,4,2,f +7644,3831,4,2,f +7644,3853,15,2,f +7644,3854,15,4,f +7644,3856,2,4,f +7644,3861b,15,1,f +7644,3867,2,2,f +7644,69c01,15,1,f +7644,970c00,4,1,f +7644,970c00,1,1,f +7644,973c07,1,1,f +7644,973c18,0,1,f +7645,bslot12,4,1,f +7645,bslot12,1,1,f +7645,bslot12,15,3,f +7647,2540,15,1,f +7647,3004,0,2,f +7647,3020,71,2,f +7647,3021,85,2,f +7647,3023,15,2,f +7647,3024,0,6,f +7647,3034,72,1,f +7647,30648,0,2,f +7647,3068b,0,1,f +7647,3623,0,2,f +7647,3700,15,2,f +7647,3749,19,2,f +7647,3794b,71,2,f +7647,3794b,0,6,f +7647,3832,71,1,f +7647,4070,71,8,f +7647,4081b,15,1,f +7647,41854,85,1,f +7647,44728,72,2,f +7647,4600,0,3,f +7647,48729b,0,2,f +7647,48729b,0,1,t +7647,49668,15,2,f +7647,50950,15,1,f +7647,50951,0,6,f +7647,50951,0,1,t +7647,54200,0,1,t +7647,54200,15,1,t +7647,54200,0,2,f +7647,54200,15,2,f +7647,55982,0,2,f +7647,6014b,0,6,f +7647,6126b,182,2,f +7647,61409,0,3,f +7647,6141,72,1,t +7647,6141,72,3,f +7647,6636,15,1,f +7647,87747,15,1,t +7647,87747,15,2,f +7648,11439pat0001,46,1,f +7648,15339,148,2,f +7648,15341,4,2,f +7648,15341,14,2,f +7648,15343,14,2,f +7648,15343,4,2,f +7648,15346,14,1,f +7648,15348,4,1,f +7648,15357,0,1,f +7648,15357pr0003,322,1,f +7648,15359,0,1,f +7648,15359pr0001,25,1,f +7648,15362,0,3,f +7648,15367,0,2,f +7648,15976,0,2,f +7648,3069bpr0136,41,1,f +7648,32013,71,1,f +7648,32015,71,1,f +7648,32062,4,3,f +7648,3626c,4,1,f +7648,3626c,212,1,f +7648,3960,71,1,f +7648,44294,71,1,f +7648,4740,42,1,f +7648,48729b,72,2,f +7648,48989,71,1,f +7648,53451,0,1,f +7648,59443,71,1,f +7648,60115,0,2,f +7648,60169,182,1,f +7648,60485,71,1,f +7648,61252,72,1,f +7648,74261,72,2,f +7648,87747,0,8,f +7648,90609,322,6,f +7648,90611,72,3,f +7648,90612,0,7,f +7648,90617,72,4,f +7648,90625,0,1,f +7648,90640,148,3,f +7648,90640pr0024,0,2,f +7648,90641,0,1,f +7648,90641,57,4,f +7648,90652,0,1,f +7648,92220,57,8,f +7648,92233,0,2,f +7648,93571,0,6,f +7648,95199,72,1,f +7648,98138pr0019,15,2,f +7648,98590,0,1,f +7648,98603,148,1,f +7649,12825,14,2,f +7649,22667,4,3,f +7649,22667,27,2,f +7649,2335pr02,15,1,f +7649,2431,71,2,f +7649,2431,70,2,f +7649,2431,72,1,f +7649,2446,15,1,f +7649,2446,1,1,f +7649,2456,15,1,f +7649,2496,0,2,f +7649,3003,15,1,f +7649,3004,4,1,f +7649,3004,15,2,f +7649,3004,71,4,f +7649,3004,19,2,f +7649,3005,15,2,f +7649,3005,71,1,f +7649,30090,41,2,f +7649,3010,72,1,f +7649,3010,15,1,f +7649,30165,4,1,f +7649,3020,15,1,f +7649,3020,19,1,f +7649,3020,71,1,f +7649,3021,70,3,f +7649,3022,19,1,f +7649,3022,15,1,f +7649,30222,42,1,f +7649,30228,72,1,f +7649,3023,15,1,f +7649,3023,0,1,f +7649,3031,70,1,f +7649,30367b,15,2,f +7649,3037,72,1,f +7649,30374,70,3,f +7649,3040b,15,2,f +7649,3062b,14,2,f +7649,3062b,0,4,f +7649,3062b,72,1,f +7649,3062b,2,5,f +7649,3062b,4,1,f +7649,3062b,19,2,f +7649,3068bpr0155,1,1,f +7649,3069b,19,1,f +7649,3069bpr0099,15,1,f +7649,3069bpr0100,2,2,f +7649,3297,72,1,f +7649,33051,10,1,f +7649,33085,14,1,f +7649,33172,25,1,f +7649,33183,10,4,f +7649,3623,15,1,f +7649,3624,1,1,f +7649,3624,0,1,f +7649,3626b,14,1,f +7649,3626bpr0387,14,11,f +7649,3626bpr0580,14,11,f +7649,3626bpr0895,15,2,f +7649,3666,4,1,f +7649,3679,71,1,f +7649,3680,4,1,f +7649,3710,15,1,f +7649,3741,2,3,f +7649,3794b,72,2,f +7649,3794b,4,1,f +7649,3834,15,2,f +7649,3835,0,1,f +7649,3836,70,2,f +7649,3837,72,1,f +7649,3837,0,1,f +7649,3838,15,1,f +7649,3878,0,2,f +7649,3898,15,1,f +7649,3901,70,1,f +7649,3941,15,3,f +7649,3942c,14,2,f +7649,3962b,0,1,f +7649,4006,0,1,f +7649,4079,70,1,f +7649,4083,15,1,f +7649,41334,0,1,f +7649,4150p02,14,1,f +7649,41879a,1,2,f +7649,41879a,85,1,f +7649,42511,1,1,f +7649,4342,19,2,f +7649,4345b,4,1,f +7649,4346,15,1,f +7649,4349,72,1,f +7649,4449,0,1,f +7649,4449,70,1,f +7649,4523,1,1,f +7649,4530,19,1,f +7649,4530,0,1,f +7649,4589,4,3,f +7649,4589,15,1,f +7649,4599b,4,1,f +7649,46304,15,2,f +7649,4714,15,1,f +7649,4719,2,1,f +7649,4719,4,1,f +7649,4740,72,5,f +7649,59275,27,2,f +7649,59363,484,1,f +7649,60474,14,1,f +7649,6093,70,1,f +7649,6093,19,2,f +7649,6120,15,2,f +7649,6126a,57,1,f +7649,6126a,41,1,f +7649,6132,15,1,f +7649,6141,71,3,f +7649,6141,0,3,f +7649,6141,19,3,f +7649,6141,25,3,f +7649,61482,71,2,f +7649,61506,19,1,f +7649,61780,70,1,f +7649,61976,19,1,f +7649,6251,308,1,f +7649,62696,320,1,f +7649,62698,0,1,f +7649,62810,484,1,f +7649,63965,15,1,f +7649,86035,25,1,f +7649,86035,27,1,f +7649,86035,1,1,f +7649,86035,4,1,f +7649,87087,71,1,f +7649,88286,308,1,f +7649,89801,80,1,f +7649,92585,4,1,f +7649,92586pr0001,84,1,f +7649,92851,47,4,f +7649,92926,72,1,f +7649,970c00,272,1,f +7649,970c00,2,2,f +7649,970c00,15,3,f +7649,970c00,0,4,f +7649,970c00,25,1,f +7649,970c00,1,5,f +7649,970c00,72,1,f +7649,970c00,4,1,f +7649,973c01,1,1,f +7649,973pr1156c01,1,1,f +7649,973pr1173c01,4,1,f +7649,973pr1183c01,25,1,f +7649,973pr1184c01,0,1,f +7649,973pr1187c01,0,2,f +7649,973pr1188c01,0,1,f +7649,973pr1196c01,15,1,f +7649,973pr1197c01,15,1,f +7649,973pr1239c01,15,1,f +7649,973pr1240c01,1,2,f +7649,973pr1241c01,15,1,f +7649,973pr1244c01,73,1,f +7649,973pr1356c01,4,1,f +7649,973pr1446c01,4,2,f +7649,973pr1470c01,1,1,f +7649,973pr1479c01,15,1,f +7649,973pr1480c01,15,2,f +7649,97895,14,1,f +7650,11268,179,2,f +7650,15462,28,1,f +7650,15976,0,2,f +7650,18587,14,1,f +7650,18588,72,1,f +7650,19049,179,1,f +7650,19050,42,1,f +7650,19149pat0001,0,1,f +7650,20251,158,1,f +7650,20252,148,4,f +7650,2780,0,2,f +7650,32062,4,5,f +7650,32123b,14,2,f +7650,32270,0,2,f +7650,50923,72,2,f +7650,59443,14,1,f +7650,6141,85,12,f +7650,64727,71,2,f +7650,6536,0,1,f +7650,6558,1,1,f +7650,87083,72,1,f +7650,90612,0,4,f +7650,90617,52,4,f +7650,90641,0,6,f +7650,93575,0,2,f +7650,98578,52,1,f +7650,98590,0,1,f +7650,99773,0,2,f +7653,3836,6,1,f +7653,fab10a,9999,1,f +7653,fab8d,9999,1,f +7653,fabac1,4,1,f +7653,fabeb4,14,1,f +7655,15,1,2,f +7655,17,1,2,f +7655,21,47,1,f +7655,3003pt1,14,1,f +7655,3004,14,3,f +7655,3008,14,2,f +7655,3010,14,5,f +7655,3010pb035e,1,1,f +7655,3020,1,1,f +7655,3020,7,1,f +7655,3020,14,3,f +7655,3022,0,1,f +7655,3023,7,1,f +7655,3023,1,1,f +7655,3030,1,1,f +7655,3031,1,1,f +7655,3035,14,1,f +7655,3062a,4,1,f +7655,3137c01,0,5,f +7655,3139,0,13,f +7655,3183a,1,1,f +7655,3314,4,1,f +7655,3317,14,1,f +7655,3464,4,1,f +7655,3624,1,2,f +7655,3626a,14,2,f +7655,649pb09,15,1,f +7655,784,14,1,f +7655,8,7,1,f +7655,817c01,1,1,f +7656,10202,71,1,f +7656,11153,27,4,f +7656,11212,72,4,f +7656,11214,72,1,f +7656,11215,71,4,f +7656,11291,27,1,f +7656,11399,72,2,f +7656,11458,72,2,f +7656,11477,72,2,f +7656,11478,71,4,f +7656,13731,72,2,f +7656,14395,19,4,f +7656,14704,71,2,f +7656,14769,14,8,f +7656,15068,15,1,f +7656,15068pr0009,27,1,f +7656,15070,14,2,f +7656,15207,27,2,f +7656,15462,28,2,f +7656,15571,14,6,f +7656,15573,14,2,f +7656,15573,19,4,f +7656,15625,72,1,f +7656,15672,72,2,f +7656,15712,72,16,f +7656,16577,72,2,f +7656,18041,179,2,f +7656,18651,0,1,f +7656,18899pat0002,15,1,f +7656,19159,0,2,f +7656,19220,0,1,f +7656,22885,71,20,f +7656,22888,0,1,f +7656,23443,0,2,f +7656,23447,182,8,f +7656,2357,14,2,f +7656,23996,72,4,f +7656,2412b,0,17,f +7656,2412b,72,10,f +7656,2420,27,4,f +7656,2420,0,2,f +7656,2431,72,17,f +7656,2431,27,3,f +7656,2431,4,2,f +7656,2432,1,1,f +7656,2436,71,1,f +7656,2445,72,2,f +7656,2446,15,1,f +7656,2447,40,3,f +7656,2456,71,3,f +7656,2456,72,1,f +7656,2456,0,2,f +7656,2458,71,2,f +7656,2465,72,2,f +7656,2479,0,2,f +7656,2569,71,1,f +7656,2744,27,16,f +7656,2744,308,2,f +7656,2780,0,45,f +7656,2877,0,6,f +7656,2877,72,2,f +7656,2877,71,2,f +7656,298c02,1,2,f +7656,298c02,4,1,f +7656,3001,72,10,f +7656,3002,70,1,f +7656,3002,71,2,f +7656,3002,72,1,f +7656,30022,14,2,f +7656,3003,71,8,f +7656,3003,0,4,f +7656,3003,72,1,f +7656,3004,27,4,f +7656,3004,72,7,f +7656,3004,1,1,f +7656,3005,27,2,f +7656,3005,182,6,f +7656,3005,71,8,f +7656,3005,14,1,f +7656,3008,72,1,f +7656,30089,0,1,f +7656,3009,27,4,f +7656,3009,71,2,f +7656,3009,72,2,f +7656,3010,1,2,f +7656,3010,0,2,f +7656,3010,27,4,f +7656,3010,71,2,f +7656,3010,72,8,f +7656,30136,72,6,f +7656,30145,71,2,f +7656,30150,14,1,f +7656,30157,70,4,f +7656,30162,72,1,f +7656,30165,72,2,f +7656,3020,27,10,f +7656,3020,72,1,f +7656,3020,1,1,f +7656,3020,0,1,f +7656,3020,14,1,f +7656,3021,0,1,f +7656,3021,71,2,f +7656,3022,0,5,f +7656,3022,72,8,f +7656,3022,1,10,f +7656,3022,19,7,f +7656,3022,27,1,f +7656,30228,72,1,f +7656,3023,1,2,f +7656,3023,4,2,f +7656,3023,0,2,f +7656,3023,15,2,f +7656,3023,36,2,f +7656,3023,71,10,f +7656,3023,72,4,f +7656,3023,27,13,f +7656,30237b,72,3,f +7656,3024,27,4,f +7656,3024,36,3,f +7656,3024,34,3,f +7656,3024,182,2,f +7656,3029,72,1,f +7656,3032,0,1,f +7656,3034,72,5,f +7656,3034,71,2,f +7656,3034,14,4,f +7656,3034,0,8,f +7656,3035,71,1,f +7656,3035,72,3,f +7656,30350b,41,4,f +7656,30357,0,2,f +7656,3037,72,4,f +7656,30374,71,4,f +7656,30385,33,7,f +7656,3039,36,12,f +7656,3039,27,4,f +7656,3039pr0005,15,1,f +7656,3039pr0013,15,1,f +7656,3040b,72,9,f +7656,3040b,182,13,f +7656,3040b,27,6,f +7656,30414,0,10,f +7656,30414,14,2,f +7656,3044b,72,4,f +7656,30503,0,4,f +7656,30592,72,2,f +7656,3062b,71,2,f +7656,3065,36,11,f +7656,3068b,72,1,f +7656,3068b,14,8,f +7656,3069b,182,6,f +7656,3069b,72,3,f +7656,3069b,46,2,f +7656,3070b,47,2,f +7656,3070b,27,4,f +7656,3176,72,9,f +7656,32028,72,8,f +7656,32054,4,8,f +7656,32064a,71,4,f +7656,32064a,14,18,f +7656,32073,71,4,f +7656,32123b,14,5,f +7656,32124,1,2,f +7656,32140,72,2,f +7656,32187,71,1,f +7656,32270,0,1,f +7656,32523,14,1,f +7656,32526,1,10,f +7656,32531,71,1,f +7656,3297,72,3,f +7656,3298,71,4,f +7656,3298,72,4,f +7656,33243,27,2,f +7656,3456,72,1,f +7656,3460,72,6,f +7656,3460,0,2,f +7656,3460,27,3,f +7656,3622,27,4,f +7656,3622,72,10,f +7656,3622,14,2,f +7656,3623,14,2,f +7656,3623,0,3,f +7656,3626bpr0754a,14,1,f +7656,3626cpr0920,14,1,f +7656,3626cpr1580,14,2,f +7656,3626cpr1638,14,1,f +7656,3626cpr1662,14,1,f +7656,3626cpr1663,14,1,f +7656,3626cpr1666,14,1,f +7656,3660,72,2,f +7656,3665,27,12,f +7656,3665,0,4,f +7656,3665,72,10,f +7656,3666,0,6,f +7656,3666,72,1,f +7656,3666,27,3,f +7656,3700,27,2,f +7656,3700,71,2,f +7656,3701,19,1,f +7656,3701,71,2,f +7656,3702,14,2,f +7656,3703,71,1,f +7656,3703,0,2,f +7656,3705,4,1,f +7656,3705,0,1,f +7656,3706,4,1,f +7656,3709,72,4,f +7656,3710,27,25,f +7656,3710,72,3,f +7656,3713,4,2,f +7656,3737,0,1,f +7656,3795,71,2,f +7656,3795,72,7,f +7656,3795,19,1,f +7656,3829c01,1,2,f +7656,3832,0,1,f +7656,3833,15,2,f +7656,3837,72,1,f +7656,3838,14,2,f +7656,3839b,72,1,f +7656,3841,72,1,f +7656,3894,4,2,f +7656,3895,0,2,f +7656,3899,4,1,f +7656,3940b,14,8,f +7656,3958,72,1,f +7656,3958,71,2,f +7656,3960,72,2,f +7656,40490,71,5,f +7656,4079,1,2,f +7656,41677,15,4,f +7656,41769,72,1,f +7656,41770,72,1,f +7656,42003,72,1,f +7656,42003,4,1,f +7656,42610,71,2,f +7656,4274,1,5,f +7656,4286,72,2,f +7656,43121,0,2,f +7656,43722,0,1,f +7656,43723,0,1,f +7656,44126,72,1,f +7656,44570,72,1,f +7656,44728,0,2,f +7656,44728,72,18,f +7656,4477,0,2,f +7656,4479,0,1,f +7656,45677,27,1,f +7656,4590,72,1,f +7656,4599b,71,1,f +7656,4624,71,8,f +7656,46667,72,2,f +7656,4740,71,1,f +7656,47457,14,3,f +7656,47457,72,2,f +7656,47457,1,4,f +7656,48336,71,2,f +7656,48336,0,7,f +7656,4871,0,2,f +7656,50304,0,1,f +7656,50305,0,1,f +7656,50950,27,2,f +7656,52107,0,2,f +7656,54095,27,3,f +7656,54200,27,2,f +7656,54200,47,2,f +7656,54200,36,2,f +7656,54383,72,2,f +7656,54384,72,2,f +7656,55981,71,8,f +7656,59895,0,8,f +7656,59900,0,3,f +7656,60475b,71,2,f +7656,60476,71,2,f +7656,60478,0,10,f +7656,60481,27,2,f +7656,60481,71,2,f +7656,60484,71,1,f +7656,60594,72,5,f +7656,60601,41,4,f +7656,6081,72,2,f +7656,6082,72,1,f +7656,6083,72,1,f +7656,6091,72,4,f +7656,6091,14,1,f +7656,6111,72,2,f +7656,6112,72,4,f +7656,61345,27,2,f +7656,61409,72,3,f +7656,6141,34,1,f +7656,6141,46,1,f +7656,6141,71,7,f +7656,61483,71,4,f +7656,61506,28,1,f +7656,6158,72,2,f +7656,6179,72,2,f +7656,6192,72,5,f +7656,62113,0,1,f +7656,6231,71,2,f +7656,6232,72,2,f +7656,6232,19,2,f +7656,62462,0,2,f +7656,62576,41,1,f +7656,62743,0,8,f +7656,63965,71,1,f +7656,63965,0,4,f +7656,64450,0,1,f +7656,64451,72,2,f +7656,64453,41,2,f +7656,6536,4,1,f +7656,6541,4,2,f +7656,6558,1,6,f +7656,6583,0,1,f +7656,6628,0,6,f +7656,6632,14,5,f +7656,6636,72,1,f +7656,6636,14,3,f +7656,72454,72,1,f +7656,76766,0,8,f +7656,84954,41,1,f +7656,85543,15,2,f +7656,85984,27,3,f +7656,87079,71,3,f +7656,87079,72,20,f +7656,87079,14,3,f +7656,87079,15,1,f +7656,87083,72,4,f +7656,87087,72,4,f +7656,87580,72,1,f +7656,87620,71,2,f +7656,87994,0,2,f +7656,88293,27,4,f +7656,92280,0,4,f +7656,92402,0,8,f +7656,92438,72,1,f +7656,92582,71,2,f +7656,92589,71,4,f +7656,92593,4,2,f +7656,93224pr0004,179,1,f +7656,93273,72,5,f +7656,93274,72,2,f +7656,93606,72,1,f +7656,96874,25,1,t +7656,970c00,379,4,f +7656,970c00pr1057,326,3,f +7656,970c00pr1068,179,1,f +7656,973pr3388c01,326,3,f +7656,973pr3389c01,326,2,f +7656,973pr3390c01,326,1,f +7656,973pr3402c01,179,1,f +7656,973pr3403c01,15,1,f +7656,98138,47,1,f +7656,98138,36,2,f +7656,98138,27,2,f +7656,98282,72,2,f +7656,98560,72,4,f +7656,99206,15,4,f +7656,99206,0,2,f +7656,99207,71,6,f +7656,99207,0,8,f +7658,2420,70,2,f +7658,3001,70,1,f +7658,3003,70,1,f +7658,3020,72,1,f +7658,3020,1,5,f +7658,3020,19,6,f +7658,3020,70,9,f +7658,3022,70,4,f +7658,3023,70,7,f +7658,3023,1,5,f +7658,3024,70,2,f +7658,3062b,70,7,f +7658,3069b,15,5,f +7658,3069b,70,1,f +7658,3666,72,2,f +7658,3666,1,2,f +7658,3666,70,4,f +7658,3710,70,7,f +7658,3710,1,2,f +7658,3747b,70,2,f +7658,3794a,70,3,f +7658,3832,1,13,f +7658,4070,72,8,f +7658,4286,1,5,f +7658,4287,1,5,f +7658,4589,70,6,f +7658,4733,0,2,f +7658,54200,15,10,f +7659,2780,0,1,t +7659,2780,0,9,f +7659,2825,0,2,f +7659,2905,14,2,f +7659,3035,19,1,f +7659,30391,0,4,f +7659,32013,14,1,f +7659,32016,0,1,f +7659,32039,0,3,f +7659,32056,14,2,f +7659,32062,4,3,f +7659,32073,71,5,f +7659,32123b,71,7,f +7659,32184,0,3,f +7659,32249,14,2,f +7659,32250,0,4,f +7659,32270,0,1,f +7659,32278,14,1,f +7659,32291,0,1,f +7659,32316,0,2,f +7659,32316,14,1,f +7659,32523,0,2,f +7659,32556,19,4,f +7659,3647,72,1,f +7659,3701,19,2,f +7659,3705,0,3,f +7659,3713,71,6,f +7659,3713,71,1,t +7659,3737,0,1,f +7659,41239,14,2,f +7659,43093,1,3,f +7659,44294,71,1,f +7659,4519,71,8,f +7659,4716,71,1,f +7659,55981,71,4,f +7659,60483,72,3,f +7659,60484,72,1,f +7659,6141,47,1,t +7659,6141,36,1,t +7659,6141,36,2,f +7659,6141,47,2,f +7659,6141,182,1,f +7659,6141,182,1,t +7659,6536,0,5,f +7659,6558,1,4,f +7659,6632,0,4,f +7659,87080,14,1,f +7659,87082,71,2,f +7665,2412b,0,1,f +7665,2413,8,1,f +7665,2432,7,2,f +7665,2446,2,1,f +7665,2447,33,1,f +7665,2460,1,1,f +7665,2610,14,1,f +7665,2654,0,1,f +7665,3004,15,1,f +7665,3022,7,1,f +7665,3037,1,2,f +7665,3039,1,2,f +7665,3039pr0005,15,1,f +7665,3297,1,1,f +7665,3460,8,2,f +7665,3626bp7c,14,1,f +7665,3956,8,1,f +7665,4285b,0,1,f +7665,4617b,0,1,f +7665,4856a,1,1,f +7665,4859,8,1,f +7665,6141,36,1,f +7665,6141,34,1,f +7665,6152,33,1,f +7665,970c00,2,1,f +7665,973p8ac01,0,1,f +7666,3001,14,32,f +7666,3001,0,4,f +7666,3001,1,33,f +7666,3001,15,14,f +7666,3001,4,50,f +7666,3002,15,4,f +7666,3002,1,4,f +7666,3002,14,12,f +7666,3002,0,6,f +7666,3002,4,12,f +7666,3003,0,4,f +7666,3003,1,6,f +7666,3003,15,6,f +7666,3003,14,16,f +7666,3003,4,12,f +7666,3004,4,22,f +7666,3004,47,4,f +7666,3004,1,14,f +7666,3004,0,10,f +7666,3004,14,18,f +7666,3004,15,10,f +7666,3005,15,10,f +7666,3005,4,12,f +7666,3005,0,8,f +7666,3005,1,14,f +7666,3005,14,12,f +7666,3006,15,2,f +7666,3007,4,2,f +7666,3007,1,2,f +7666,3008,15,4,f +7666,3008,14,2,f +7666,3008,1,2,f +7666,3009,14,8,f +7666,3009,4,10,f +7666,3009,15,4,f +7666,3009,1,6,f +7666,3010,15,8,f +7666,3010,4,14,f +7666,3010,1,14,f +7666,3010,47,1,f +7666,3010,0,4,f +7666,3010,14,6,f +7666,3020,0,1,f +7666,3020,4,15,f +7666,3021,4,4,f +7666,3030,1,3,f +7666,3030,4,4,f +7666,3032,4,3,f +7666,3032,0,1,f +7666,3033,4,2,f +7666,3034,4,4,f +7666,3034,0,2,f +7666,3034,1,2,f +7666,3035,4,1,f +7666,3036,1,2,f +7666,3039,4,6,f +7666,3039,1,6,f +7666,3039,47,2,f +7666,3135c02,4,1,f +7666,3137c01,0,6,f +7666,3149c01,4,2,f +7666,3183a,4,2,f +7666,3184,4,2,f +7666,3297,4,6,f +7666,3297,1,6,f +7666,3298,1,6,f +7666,3298,4,6,f +7666,3299,1,4,f +7666,3299,4,4,f +7666,3300,1,4,f +7666,3300,4,4,f +7666,3307,1,2,f +7666,3308,14,2,f +7666,3403c01,4,2,f +7666,3460,15,4,f +7666,3461,15,2,f +7666,3462,4,2,f +7666,3471,2,6,f +7666,3480,7,2,f +7666,3481,4,2,f +7666,3483,0,12,f +7666,3581,15,2,f +7666,3622,1,2,f +7666,3622,4,6,f +7666,3622,14,4,f +7666,3622,15,8,f +7666,3624,15,2,f +7666,3625,0,2,f +7666,3633,15,8,f +7666,3633,4,4,f +7666,3641,0,12,f +7666,3644,4,2,f +7666,3659,1,2,f +7666,3660,4,6,f +7666,3660,1,6,f +7666,3710,4,5,f +7666,3823,47,3,f +7666,3833,4,2,f +7666,3834,0,2,f +7666,3836,6,4,f +7666,3837,8,4,f +7666,3841,8,4,f +7666,3853,14,6,f +7666,3853,4,6,f +7666,3854,15,12,f +7666,3854,4,12,f +7666,3856,2,12,f +7666,3856,4,12,f +7666,3861b,4,6,f +7666,3867,2,6,f +7666,3901,6,2,f +7666,4207,14,2,f +7666,4485,1,2,f +7666,4530,6,2,f +7666,7039,4,12,f +7666,7049,0,6,f +7666,970c00,1,2,f +7666,970c00,0,2,f +7666,970c00,4,2,f +7666,973c01,15,2,f +7666,973c02,4,2,f +7666,973c07,1,2,f +7667,14520,14,2,f +7667,14769pr0001,15,2,f +7667,15112,9999,1,f +7667,15207,14,2,f +7667,15210pr01,0,2,f +7667,15625,72,6,f +7667,2412b,72,15,f +7667,2412b,0,1,f +7667,2412b,71,9,f +7667,2420,14,2,f +7667,2431,71,5,f +7667,2432,72,2,f +7667,2445,71,5,f +7667,2445,0,2,f +7667,2445,72,4,f +7667,2454a,19,6,f +7667,2465,0,9,f +7667,3001,71,1,f +7667,3002,15,1,f +7667,3003,19,1,f +7667,3003,0,8,f +7667,3003,72,1,f +7667,3004,15,1,f +7667,3004,4,2,f +7667,3005,0,3,f +7667,3006,0,1,f +7667,3006,19,1,f +7667,3007,15,1,f +7667,3008,15,1,f +7667,3009,19,6,f +7667,3009,15,1,f +7667,3009,0,5,f +7667,3010,19,3,f +7667,3020,1,1,f +7667,3020,15,2,f +7667,3021,72,1,f +7667,3021,4,2,f +7667,3022,4,1,f +7667,3023,46,1,f +7667,3023,15,2,f +7667,3023,71,7,f +7667,3023,28,2,f +7667,3023,4,3,f +7667,3023,72,3,f +7667,3023,0,1,f +7667,3024,47,1,t +7667,3024,47,2,f +7667,3024,182,2,f +7667,3024,182,1,t +7667,3028,0,2,f +7667,3028,71,8,f +7667,3030,72,1,f +7667,3032,72,1,f +7667,3034,4,1,f +7667,3034,72,1,f +7667,3036,0,1,f +7667,30363,0,4,f +7667,30414,4,5,f +7667,3062b,72,6,f +7667,3068b,71,11,f +7667,3068b,1,3,f +7667,3068b,4,1,f +7667,3068bpr0137,15,1,f +7667,3068bpr0201,15,1,f +7667,3069b,1,2,f +7667,3069b,15,1,f +7667,3069b,4,2,f +7667,3069b,0,1,f +7667,3069b,72,1,f +7667,3069bpr0030,15,2,f +7667,3070b,14,2,f +7667,3070b,14,1,t +7667,32028,4,6,f +7667,32028,72,5,f +7667,32294,72,4,f +7667,3245c,72,1,f +7667,3245c,19,6,f +7667,33078,4,1,f +7667,33125,484,1,f +7667,3624,320,1,f +7667,3626cpr0498,14,1,f +7667,3626cpr0893,14,1,f +7667,3626cpr1144,14,1,f +7667,3626cpr1147,14,1,f +7667,3626cpr1665,14,1,f +7667,3660,14,3,f +7667,3666,71,2,f +7667,3666,4,2,f +7667,3666,72,1,f +7667,3678b,72,5,f +7667,3710,4,7,f +7667,3710,72,2,f +7667,3710,0,2,f +7667,3710,14,2,f +7667,3710,71,2,f +7667,3794b,4,2,f +7667,3795,0,4,f +7667,3795,28,2,f +7667,3829c01,1,1,f +7667,3898,15,1,f +7667,3899,14,1,f +7667,3900,15,1,f +7667,4079b,4,2,f +7667,4150p02,14,1,f +7667,44301a,72,2,f +7667,4449,70,1,f +7667,44728,72,4,f +7667,4477,71,1,f +7667,4510,4,2,f +7667,4595,0,2,f +7667,4719,322,1,f +7667,4865b,72,2,f +7667,4865b,47,8,f +7667,48729a,71,1,f +7667,48729a,71,1,t +7667,50745,14,4,f +7667,52036,72,1,f +7667,52107,71,5,f +7667,52501,14,2,f +7667,53401,72,4,f +7667,54200,36,2,f +7667,54200,14,2,f +7667,54200,36,1,t +7667,54200,14,1,t +7667,54200,47,1,t +7667,54200,47,2,f +7667,57783,40,2,f +7667,59349,19,2,f +7667,59900,46,2,f +7667,59900,34,2,f +7667,6014b,71,4,f +7667,60478,72,1,f +7667,60581,72,1,f +7667,60596,19,2,f +7667,60616a,40,2,f +7667,6111,0,1,f +7667,6112,19,4,f +7667,6141,72,2,f +7667,6141,34,1,f +7667,6141,34,1,t +7667,6141,4,4,f +7667,6141,47,1,t +7667,6141,47,1,f +7667,6141,14,2,t +7667,6141,14,3,f +7667,6141,72,2,t +7667,6141,4,2,t +7667,6157,71,2,f +7667,62113,0,1,f +7667,6267,40,2,f +7667,62696,308,1,f +7667,62810,0,1,f +7667,62810,484,1,f +7667,63864,0,4,f +7667,64449,72,3,f +7667,6636,4,1,f +7667,85984,0,1,f +7667,85984,14,2,f +7667,87087,19,2,f +7667,87580,71,5,f +7667,87580,4,1,f +7667,87580,19,1,f +7667,87697,0,4,f +7667,88930,15,4,f +7667,88930,4,2,f +7667,88930,14,2,f +7667,92280,0,2,f +7667,92851,47,2,f +7667,92926,2,2,f +7667,93273,4,1,f +7667,93273,72,2,f +7667,96874,25,1,t +7667,970c00,1,1,f +7667,970c00,272,1,f +7667,970c00,15,1,f +7667,970c00,379,1,f +7667,970c00,0,1,f +7667,973pr1164c01,272,1,f +7667,973pr1166c01,272,1,f +7667,973pr1196c01,15,1,f +7667,973pr1485c01,4,1,f +7667,973pr1617c01,2,1,f +7667,98138,46,9,f +7667,98138,46,1,t +7667,98281,14,1,f +7670,biosampler,89,1,f +7671,122c01,7,2,f +7671,122c01,0,1,f +7671,15,0,1,f +7671,3001a,0,1,f +7671,3003,0,1,f +7671,3003,4,2,f +7671,3003,47,1,f +7671,3004,15,2,f +7671,3004,4,14,f +7671,3004,47,1,f +7671,3005,14,2,f +7671,3005,4,16,f +7671,3005,15,4,f +7671,3005,0,2,f +7671,3007,4,1,f +7671,3008,4,2,f +7671,3009,4,13,f +7671,3009,15,1,f +7671,3010,14,4,f +7671,3010,4,4,f +7671,3010p20c,1,1,f +7671,3020,14,2,f +7671,3022,0,2,f +7671,3023,15,3,f +7671,3023,1,3,f +7671,3024,47,1,f +7671,3024,4,8,f +7671,3024,0,1,f +7671,3032,14,1,f +7671,3034,4,1,f +7671,3035,0,2,f +7671,3035,1,1,f +7671,3036,4,1,f +7671,3037,0,6,f +7671,3039,0,6,f +7671,3040b,15,6,f +7671,3040b,0,1,f +7671,3043,0,2,f +7671,3048a,0,2,f +7671,3062a,0,3,f +7671,3062a,15,3,f +7671,3062a,7,9,f +7671,3069b,4,1,f +7671,3069b,0,2,f +7671,3127,7,1,f +7671,3176,4,1,f +7671,3176,0,1,f +7671,3185,0,1,f +7671,3308,4,2,f +7671,3470,2,1,f +7671,3622,4,4,f +7671,3624,4,1,f +7671,3625,0,1,f +7671,3626a,0,2,f +7671,3626apr0001,14,3,f +7671,3629,0,1,f +7671,3633,0,2,f +7671,3633,14,2,f +7671,3641,0,6,f +7671,3660,4,2,f +7671,3665,4,2,f +7671,3665,15,4,f +7671,3710,15,5,f +7671,3710,1,3,f +7671,3710,4,2,f +7671,3741,2,3,f +7671,3742,4,6,f +7671,3742,4,2,t +7671,3742,14,1,t +7671,3742,14,3,f +7671,3787,7,1,f +7671,3788,1,1,f +7671,3794a,15,2,f +7671,3795,7,2,f +7671,3795,0,1,f +7671,3823,47,1,f +7671,3839b,7,1,f +7671,3853,15,4,f +7671,3854,15,8,f +7671,3861b,15,1,f +7671,56823,0,1,f +7671,608p01,7,1,f +7671,739p01,15,1,f +7671,970c00,0,1,f +7671,970c00,1,1,f +7671,970c00,4,1,f +7671,973c07,1,2,f +7671,973c18,0,1,f +7672,1525stk01,9999,1,t +7672,2343,0,2,f +7672,2362a,14,4,f +7672,3003,1,11,f +7672,3010,14,7,f +7672,3020,0,2,f +7672,3020,14,2,f +7672,3021,0,2,f +7672,3022,14,1,f +7672,3023,14,18,f +7672,3023,0,3,f +7672,3024,46,2,f +7672,3035,14,5,f +7672,3039,14,1,f +7672,3062b,0,4,f +7672,3068b,14,2,f +7672,3068b,0,1,f +7672,3069b,14,2,f +7672,3069b,0,1,f +7672,3070b,14,2,f +7672,3176,0,1,f +7672,3324c01,0,1,f +7672,3626apr0001,14,1,f +7672,3709,14,1,f +7672,3710,14,5,f +7672,3738,14,1,f +7672,3749,7,1,f +7672,3788,14,2,f +7672,3794a,7,4,f +7672,3821,14,1,f +7672,3822,14,1,f +7672,3829c01,0,1,f +7672,3853,14,2,f +7672,3856,4,4,f +7672,3937,7,1,f +7672,3938,7,1,f +7672,4070,14,2,f +7672,4081a,14,2,f +7672,4081a,0,2,f +7672,4084,0,10,f +7672,4168,7,2,f +7672,4175,0,1,f +7672,4211,14,1,f +7672,4213,14,1,f +7672,4214,14,1,f +7672,4215a,14,4,f +7672,4275b,14,2,f +7672,4485,4,1,f +7672,4531,14,2,f +7672,4590,0,2,f +7672,4594,47,1,f +7672,4600,0,5,f +7672,4624,14,10,f +7672,6141,36,2,f +7672,970c00,1,1,f +7672,973pb0201c01,15,1,f +7673,3738,4,4,f +7673,3738,0,8,f +7673,3795,4,8,f +7676,10197,72,1,f +7676,15341,179,4,f +7676,15362,70,4,f +7676,15362,72,1,f +7676,18651,0,1,f +7676,22961,71,1,f +7676,24014,71,2,f +7676,24122,148,1,f +7676,24162pat0004,179,1,f +7676,24165,27,2,f +7676,24188,148,2,f +7676,24191,148,1,f +7676,2780,0,1,f +7676,2780,0,1,t +7676,30552,71,1,f +7676,30553,72,1,f +7676,32002,19,1,t +7676,32002,19,2,f +7676,32039,0,2,f +7676,32062,4,3,f +7676,32073,71,1,f +7676,32123b,71,1,t +7676,32123b,71,1,f +7676,32192,0,1,f +7676,4274,71,1,t +7676,4274,71,5,f +7676,43093,1,3,f +7676,48989,71,1,f +7676,53551,179,4,f +7676,53585,0,1,f +7676,58176,36,1,f +7676,60483,0,4,f +7676,64272,28,1,f +7676,64276,484,4,f +7676,6587,28,1,f +7676,6589,19,1,f +7676,90611,72,1,f +7676,90611,42,5,f +7676,93571,0,9,f +7676,98141,0,2,f +7676,98590,0,1,f +7679,14210,2,1,f +7679,2145,15,2,f +7679,22239,89,1,f +7679,22667,5,1,f +7679,2555,74,5,f +7679,30077,15,3,f +7679,30151a,47,1,f +7679,30153,33,5,f +7679,30153,46,1,f +7679,30153,47,1,f +7679,30153,45,2,f +7679,3020,18,1,f +7679,3020,2,1,f +7679,3031,10,1,f +7679,3036,18,1,f +7679,33031,73,1,f +7679,33172,25,2,f +7679,33183,10,2,f +7679,33207p01,15,1,f +7679,33215,114,1,f +7679,3742,14,3,f +7679,3742,13,3,f +7679,3742,14,1,t +7679,3742,13,1,t +7679,3794a,15,1,f +7679,3837,1,1,f +7679,4032a,6,2,f +7679,4201,74,1,f +7679,4325,5,1,f +7679,4523,1,1,f +7679,4528,5,1,f +7679,4529,5,1,f +7679,4589,57,1,f +7679,4727,2,2,f +7679,4728,74,1,f +7679,4728,73,1,f +7679,4728,13,2,f +7679,6124,45,1,f +7679,6141,57,1,f +7679,6141,34,4,f +7679,6176,1,1,f +7679,6182,18,2,f +7679,bel003,14,1,f +7682,3020,4,16,f +7682,3021,4,12,f +7682,3022,4,16,f +7682,3034,4,4,f +7682,3795,4,4,f +7682,3832,4,4,f +7683,2437,41,1,f +7683,2447,41,1,f +7683,2513,4,1,f +7683,2569,7,1,f +7683,3004,0,2,f +7683,3010,4,1,f +7683,3021,0,1,f +7683,3024,36,2,f +7683,3024,46,2,f +7683,3062b,14,1,f +7683,3070b,33,2,f +7683,3626bpb0083,14,1,f +7683,3660,0,2,f +7683,3666,4,2,f +7683,3710,15,1,f +7683,3821,4,1,f +7683,3822,4,1,f +7683,3829c01,7,1,f +7683,3834,15,1,f +7683,3838,14,1,f +7683,4079,7,1,f +7683,4083,0,1,f +7683,4085c,4,2,f +7683,4212b,15,1,f +7683,4599a,14,1,f +7683,4865a,4,2,f +7683,6014a,15,4,f +7683,6015,0,4,f +7683,6157,0,2,f +7683,6158,0,1,f +7683,6231,4,2,f +7683,970c00,0,1,f +7683,973pb0099c01,0,1,f +7684,10049,148,2,f +7684,10050,148,2,f +7684,10051,148,3,f +7684,10054,179,1,f +7684,10054pr0001,179,1,f +7684,10509pr0001,70,1,f +7684,2357,71,2,f +7684,2419,0,1,f +7684,2431pr0060,70,3,f +7684,2432,4,1,f +7684,2587,148,2,f +7684,2730,0,2,f +7684,2780,0,1,t +7684,2780,0,2,f +7684,3001,71,3,f +7684,3002,72,1,f +7684,3002,70,1,f +7684,3004,70,1,f +7684,3004,71,16,f +7684,3005,71,5,f +7684,3005,378,8,f +7684,3009,71,1,f +7684,3010,71,5,f +7684,30134,70,1,f +7684,30192,72,2,f +7684,3020,70,1,f +7684,3021,71,1,f +7684,3023,70,4,f +7684,3036,28,2,f +7684,3039,0,1,f +7684,3040b,72,5,f +7684,3062b,72,3,f +7684,3069b,320,1,f +7684,32000,72,3,f +7684,32001,0,2,f +7684,32016,70,1,f +7684,32123b,71,2,f +7684,32123b,71,1,t +7684,32530,0,2,f +7684,32556,19,1,f +7684,3622,378,4,f +7684,3622,0,2,f +7684,3626cpr0976,320,4,f +7684,3626cpr0979,78,1,f +7684,3626cpr0983,78,1,f +7684,3666,0,1,f +7684,3666,71,1,f +7684,3709,72,4,f +7684,3710,70,2,f +7684,3747b,70,1,f +7684,3749,19,4,f +7684,3794a,72,6,f +7684,3795,72,2,f +7684,3941,70,2,f +7684,40239,0,1,f +7684,4032a,70,5,f +7684,4070,71,4,f +7684,4162,0,2,f +7684,4274,1,4,f +7684,4274,1,1,t +7684,4282,71,2,f +7684,4286,0,2,f +7684,44300,0,2,f +7684,44302a,72,2,f +7684,4460b,72,2,f +7684,44728,72,2,f +7684,4490,71,2,f +7684,4491b,72,1,f +7684,4495b,297,1,f +7684,4495b,288,1,f +7684,4498,70,1,f +7684,4499,70,1,f +7684,4519,71,2,f +7684,50231,288,1,f +7684,54200,288,5,f +7684,54200,288,1,t +7684,54200,71,4,f +7684,54200,71,1,t +7684,59900,70,3,f +7684,60474,308,4,f +7684,61184,71,2,f +7684,6123,72,2,f +7684,61252,0,2,f +7684,6141,72,1,t +7684,6141,70,6,f +7684,6141,72,1,f +7684,6141,70,1,t +7684,61678,72,6,f +7684,63965,70,1,f +7684,64644,308,1,f +7684,64647,57,1,f +7684,64647,57,1,t +7684,72454,72,1,f +7684,75902pr0002,320,1,f +7684,85984,71,7,f +7684,85984,0,1,f +7684,87079,70,1,f +7684,87552,71,1,f +7684,87580,0,1,f +7684,87620,71,10,f +7684,88289,308,1,f +7684,90391pr01,70,1,f +7684,970c00,308,1,f +7684,970c00pr0334,308,4,f +7684,970c120pr0335,72,1,f +7684,973pr2057c01,308,4,f +7684,973pr2058c01,72,1,f +7684,973pr2069c01,320,1,f +7684,98283,71,5,f +7684,98347,179,2,f +7684,98370,179,1,f +7684,99780,72,5,f +7685,2431,15,2,f +7685,32014,4,12,f +7685,32016,15,2,f +7685,32016,0,2,f +7685,32034,135,2,f +7685,32034,15,2,f +7685,32039,7,2,f +7685,32056,0,2,f +7685,32062,0,16,f +7685,32073,7,4,f +7685,32209,15,8,f +7685,32579,7,2,f +7685,3706,4,8,f +7685,3707,0,2,f +7685,3708,4,4,f +7685,3713,7,11,f +7685,3749,19,2,f +7685,41662,0,2,f +7685,41677,135,2,f +7685,41677,0,2,f +7685,4274,7,5,f +7685,43093,1,6,f +7685,43559,25,2,f +7685,44790,15,1,f +7685,44790,0,1,f +7685,44791,2,1,f +7685,44791,0,1,f +7685,44845,179,1,f +7685,44846,80,1,f +7685,44847,0,4,f +7685,44848,0,4,f +7685,44849,2,1,f +7685,44849,0,1,f +7685,44850,15,2,f +7685,44851,15,2,f +7685,44852,0,1,f +7685,44852,25,1,f +7685,45590,0,2,f +7685,6536,0,2,f +7685,6538b,4,8,f +7685,6558,0,4,f +7685,71509,0,4,f +7685,75c11,4,4,f +7685,hmaskpw1,7,1,f +7685,hmaskpw2,7,1,f +7685,hmaskpw3,7,1,f +7685,x1012,15,2,f +7686,3626bpb0723,10,1,f +7686,40233,0,1,f +7686,970c36pb02,10,1,f +7686,973pb1179c01,10,1,f +7687,10a,2,1,f +7687,2039,7,2,f +7687,2040,450,2,f +7687,2041,15,1,f +7687,2042c02,14,1,f +7687,264,1,2,f +7687,3001,14,3,f +7687,3002,4,1,f +7687,3002,1,4,f +7687,3003,1,2,f +7687,3003,14,3,f +7687,3004,1,8,f +7687,3004,14,5,f +7687,3010,14,2,f +7687,3010,1,4,f +7687,3020,1,1,f +7687,3021,4,1,f +7687,3030,1,1,f +7687,3032,14,1,f +7687,3036,14,2,f +7687,3068pb01,15,1,f +7687,3068pb02,15,1,f +7687,3068pb03,15,1,f +7687,3068pb04,15,1,f +7687,3068pb05,15,1,f +7687,3068pb17,15,1,f +7687,3622pf1,4,1,f +7687,3633,4,4,f +7687,3633,14,2,f +7687,3795,1,1,f +7687,3795,14,3,f +7687,3795,4,1,f +7687,3899,14,1,f +7687,3899,1,1,f +7687,3980c01,14,1,f +7687,4222a,4,1,f +7687,4231,1,1,f +7687,4332,366,1,f +7687,4461,1,1,f +7687,4536,14,4,f +7687,4610,4,1,f +7687,4618c01,14,1,f +7687,4727,2,3,f +7687,4728,15,1,f +7687,4728,14,1,f +7687,4796c01,14,1,f +7687,4823c02,1,1,f +7687,787c01,14,2,f +7687,787c05,1,4,f +7687,92410,1,2,f +7687,fab2j,9999,1,f +7687,fab5f,9999,1,f +7687,fab6f,9999,1,f +7687,fabaj1,1,1,f +7687,fabaj1,14,1,f +7687,fabaj3,14,1,f +7687,fabbc1c,14,1,f +7687,fabef1,1,1,f +7687,fabeh5,1,1,f +7687,u9213p01,2,1,f +7687,x222,4,2,f +7687,x659,4,1,f +7688,2444,4,1,f +7688,2516,0,1,f +7688,2540,0,1,f +7688,30377,0,2,f +7688,30377,0,1,t +7688,3626bpr0596,14,1,f +7688,3839b,0,1,f +7688,4274,1,1,t +7688,4274,1,1,f +7688,6126a,57,1,f +7688,6141,42,1,t +7688,6141,42,1,f +7688,64644,0,1,f +7688,85942,72,1,f +7688,970c00pr0131,0,1,f +7688,973pr1516c01,14,1,f +7690,12825,1,2,f +7690,2412b,80,6,f +7690,2412b,72,4,f +7690,2420,4,8,f +7690,2431,72,9,f +7690,2431,4,6,f +7690,2444,0,6,f +7690,2449,72,2,f +7690,2450,15,6,f +7690,2456,4,6,f +7690,2456,71,1,f +7690,2540,71,2,f +7690,2654,72,3,f +7690,2780,0,12,f +7690,2780,0,1,t +7690,298c02,1,2,f +7690,298c02,1,1,t +7690,3003,71,3,f +7690,3004,4,4,f +7690,3004,15,3,f +7690,3005,4,2,f +7690,3005,72,3,f +7690,3008,4,2,f +7690,3008,15,2,f +7690,3009,15,5,f +7690,3010,4,3,f +7690,3020,4,8,f +7690,3020,15,3,f +7690,3021,15,4,f +7690,3021,4,4,f +7690,3021,0,5,f +7690,3022,72,12,f +7690,3023,71,10,f +7690,3024,72,4,f +7690,3024,36,3,f +7690,3024,46,4,f +7690,3024,34,1,f +7690,3028,0,2,f +7690,3031,0,1,f +7690,3032,4,3,f +7690,3034,15,9,f +7690,3039,4,2,f +7690,3039pr0014,0,1,f +7690,3040b,4,8,f +7690,30414,15,2,f +7690,30503,4,2,f +7690,30504,15,4,f +7690,30526,71,4,f +7690,3062b,71,4,f +7690,3062b,47,2,f +7690,3068b,4,2,f +7690,3069b,4,4,f +7690,3069bpr0090,72,1,f +7690,3070b,15,1,t +7690,3070b,15,5,f +7690,32009,0,2,f +7690,32013,72,4,f +7690,32056,71,4,f +7690,32059,72,2,f +7690,32062,4,3,f +7690,32064b,14,1,f +7690,32073,71,1,f +7690,32125,71,2,f +7690,32140,0,3,f +7690,32449,72,2,f +7690,32524,0,4,f +7690,3456,71,1,f +7690,3460,72,2,f +7690,3622,4,3,f +7690,3623,15,4,f +7690,3659,15,2,f +7690,3660,4,11,f +7690,3665,4,2,f +7690,3666,0,4,f +7690,3673,71,2,f +7690,3673,71,1,t +7690,3700,72,10,f +7690,3701,19,4,f +7690,3705,0,1,f +7690,3710,15,8,f +7690,3710,4,6,f +7690,3710,72,8,f +7690,3713,71,1,t +7690,3713,71,2,f +7690,3749,19,2,f +7690,3794b,4,10,f +7690,3794b,72,2,f +7690,3795,4,5,f +7690,3795,0,2,f +7690,3795,71,4,f +7690,3832,0,2,f +7690,3941,47,2,f +7690,3942c,0,1,f +7690,3956,1,2,f +7690,3958,0,2,f +7690,41677,72,2,f +7690,41764,4,1,f +7690,41765,4,1,f +7690,41767,4,1,f +7690,41768,4,1,f +7690,41769,15,1,f +7690,41769,72,2,f +7690,41770,15,1,f +7690,41770,72,2,f +7690,42023,4,2,f +7690,42023,15,2,f +7690,42610,71,1,f +7690,4274,1,2,f +7690,4274,1,1,t +7690,43093,1,8,f +7690,43121,71,2,f +7690,43337,15,2,f +7690,43712,4,2,f +7690,43712,15,1,f +7690,43719,72,4,f +7690,4445,4,4,f +7690,4477,4,2,f +7690,4477,0,4,f +7690,4510,15,2,f +7690,4519,71,2,f +7690,4740,57,2,f +7690,48183,15,2,f +7690,4854,4,4,f +7690,4865a,15,2,f +7690,50745,15,2,f +7690,51011,0,1,f +7690,54200,71,1,t +7690,54200,71,4,f +7690,54200,15,1,t +7690,54200,15,2,f +7690,54200,4,30,f +7690,54383,72,1,f +7690,54384,72,1,f +7690,56902,71,2,f +7690,59443,71,1,f +7690,6019,72,4,f +7690,60477,4,1,f +7690,60478,72,2,f +7690,60478,15,4,f +7690,60479,71,2,f +7690,60483,0,4,f +7690,6081,4,6,f +7690,6091,4,4,f +7690,6106,0,8,f +7690,61254,0,2,f +7690,61409,72,2,f +7690,6141,46,1,t +7690,6141,46,4,f +7690,61678,15,3,f +7690,6191,4,6,f +7690,6231,15,2,f +7690,6233,0,1,f +7690,63864,71,2,f +7690,6536,14,2,f +7690,6541,1,2,f +7690,6558,1,4,f +7690,6636,4,4,f +7690,6636,72,4,f +7690,6636,15,2,f +7690,87082,71,2,f +7690,87083,72,2,f +7690,87609,4,2,f +7690,89762,40,2,f +7690,98782,36,2,f +7692,3626bpr0884,14,1,f +7692,88646,0,1,f +7692,970c00pr0289,212,1,f +7692,973pr1957ac01,212,1,f +7692,98382pr0001,84,1,f +7692,98385,70,1,f +7693,2780,0,8,f +7693,32062,0,2,f +7693,32174,72,5,f +7693,32209,15,1,f +7693,32270,71,4,f +7693,3705,0,2,f +7693,3713,71,2,f +7693,4519,71,2,f +7693,47296,72,4,f +7693,47297,15,2,f +7693,47298,15,2,f +7693,47299,15,2,f +7693,47301,15,1,f +7693,47305,15,1,f +7693,47306,15,1,f +7693,47310,15,2,f +7693,47311,15,2,f +7693,47312,72,1,f +7693,47313,41,1,f +7693,47317,179,2,f +7693,49423,15,1,f +7695,3001,1,14,f +7695,3002,1,8,f +7695,3003,1,12,f +7695,3004,1,8,f +7695,3005,1,4,f +7695,3006,1,1,f +7695,3007,1,1,f +7695,3008,1,2,f +7695,3009,1,4,f +7695,3010,1,4,f +7695,3622,1,4,f +7697,10039,0,1,f +7697,11002,0,1,f +7697,12825,0,2,f +7697,18051pr0001,1,1,f +7697,18052pr0001,1,1,f +7697,2431,1,4,f +7697,3020,0,2,f +7697,3023,4,2,f +7697,3023,1,2,f +7697,3034,72,1,f +7697,3068b,1,1,f +7697,3069b,1,1,f +7697,3070b,1,1,t +7697,3070b,1,2,f +7697,3710,0,1,f +7697,3710,1,1,f +7697,4070,1,10,f +7697,48336,1,1,f +7697,50951,0,4,f +7697,54200,1,2,f +7697,54200,1,1,t +7697,60212,1,1,f +7697,93274,1,1,f +7697,93595pr0001,0,4,f +7700,7049b,15,2,f +7700,737,4,3,f +7700,737c01,4,3,f +7700,wheel1a,4,4,f +7701,2419,4,1,f +7701,2419,0,1,f +7701,2420,4,2,f +7701,2446,4,1,f +7701,2447,42,1,f +7701,2555,0,2,f +7701,3020,4,1,f +7701,3022,4,2,f +7701,3023,0,3,f +7701,3023,4,1,f +7701,3040b,4,6,f +7701,3068bp51,0,1,f +7701,3069b,0,4,f +7701,3069bp28,0,2,f +7701,3070b,0,2,f +7701,3626bp66,14,1,f +7701,3794a,4,2,f +7701,3795,4,1,f +7701,3832,0,1,f +7701,3838,0,1,f +7701,3933,0,1,f +7701,3934,0,1,f +7701,3959,0,2,f +7701,3962b,0,1,f +7701,4589,33,3,f +7701,4590,0,1,f +7701,4598,0,1,f +7701,4740,33,1,f +7701,4740,42,2,f +7701,4746,0,1,f +7701,6141,42,4,f +7701,6141,33,2,f +7701,73983,4,2,f +7701,970x021,0,1,f +7701,973p66c01,1,1,f +7705,260pb01,0,24,f +7708,2450,2,2,f +7708,2496,0,1,f +7708,2655,7,1,f +7708,3020,4,1,f +7708,3021,2,1,f +7708,3039,14,2,f +7708,3039,47,1,f +7708,3710,4,1,f +7710,3005,1,40,f +7710,3008,1,2,f +7710,3010,1,12,f +7710,3031,1,4,f +7710,3033,1,1,f +7710,3062a,47,2,f +7710,3068a,4,12,f +7710,3068a,15,2,f +7710,3069a,1,34,f +7710,3070a,15,2,f +7710,3307,1,2,f +7712,2431,4,2,f +7712,2446,4,1,f +7712,2447,40,1,t +7712,2447,40,1,f +7712,2450,4,2,f +7712,2654,15,1,f +7712,2780,0,1,t +7712,2780,0,6,f +7712,2994,71,4,f +7712,3002,4,1,f +7712,3004,4,3,f +7712,3022,4,1,f +7712,3023,4,2,f +7712,3024,4,2,f +7712,3030,0,1,f +7712,3034,0,1,f +7712,3040b,4,1,f +7712,3068b,4,4,f +7712,3068b,15,2,f +7712,32064b,0,2,f +7712,32530,4,2,f +7712,3626bpr0369,15,1,f +7712,3666,4,2,f +7712,3700,4,1,f +7712,3701,0,2,f +7712,3702,4,2,f +7712,3702,0,2,f +7712,3705,0,1,f +7712,3706,0,1,f +7712,3713,71,2,f +7712,3713,71,1,t +7712,3737,0,2,f +7712,3794a,4,2,f +7712,3795,4,1,f +7712,3795,0,1,f +7712,3829c01,4,1,f +7712,3832,0,1,f +7712,4070,0,2,f +7712,4274,71,1,f +7712,4274,71,1,t +7712,43719,4,2,f +7712,43722,4,1,f +7712,43723,4,1,f +7712,44126,4,3,f +7712,44676,0,2,f +7712,44728,4,4,f +7712,4589,71,2,f +7712,4623,4,2,f +7712,47715,0,1,f +7712,4864b,0,2,f +7712,4865a,4,2,f +7712,50373,4,1,f +7712,6141,36,1,f +7712,6141,71,6,f +7712,6141,71,1,t +7712,6141,36,1,t +7712,6231,4,4,f +7712,6558,0,2,f +7712,6578,0,4,f +7712,6589,71,2,f +7712,6636,4,2,f +7712,75535,0,2,f +7712,8362stk01,9999,1,t +7712,970c00,4,1,f +7712,973c31,4,1,f +7713,2302,2,6,f +7713,2302,1,6,f +7713,3011,25,10,f +7713,3011,2,8,f +7713,3011,1,10,f +7713,3011,73,8,f +7713,3011,14,18,f +7713,3011,27,4,f +7713,3011,4,10,f +7713,3437,73,10,f +7713,3437,25,14,f +7713,3437,1,40,f +7713,3437,27,6,f +7713,3437,2,10,f +7713,3437,4,40,f +7713,3437,14,50,f +7714,2421,0,2,f +7714,30165,0,1,f +7714,3020,15,1,f +7714,3020,25,3,f +7714,3021,25,1,f +7714,3022,15,1,f +7714,3023,25,4,f +7714,3034,71,1,f +7714,30602,40,1,f +7714,3065,40,1,f +7714,3069b,25,2,f +7714,3070b,25,1,t +7714,3070b,25,2,f +7714,3666,25,1,f +7714,3666,15,2,f +7714,3710,15,2,f +7714,3794a,25,3,f +7714,4081b,71,2,f +7714,41769,15,1,f +7714,41770,15,1,f +7714,4286,0,1,f +7714,44728,25,1,f +7714,4488,71,2,f +7714,51739,15,1,f +7714,54200,36,1,f +7714,54200,40,1,t +7714,54200,36,1,t +7714,54200,40,2,f +7714,54200,25,2,f +7714,54200,25,1,t +7714,54383,15,1,f +7714,54384,15,1,f +7714,61409,72,2,f +7714,6141,80,4,f +7714,6141,46,1,t +7714,6141,46,2,f +7714,6141,80,1,t +7715,2980c01,14,1,f +7716,2412b,4,2,f +7716,2446,4,1,f +7716,2447,42,1,f +7716,2625,0,1,f +7716,3039,0,1,f +7716,3069bp28,0,1,f +7716,3298,0,1,f +7716,3626bp66,14,1,f +7716,3838,0,1,f +7716,3937,4,2,f +7716,3938,0,2,f +7716,3959,0,1,f +7716,3962b,0,1,f +7716,4589,36,2,f +7716,4595,0,2,f +7716,6141,42,1,f +7716,970x021,0,1,f +7716,973p66c01,1,1,f +7717,2420,14,4,f +7717,2431,14,1,f +7717,2436,14,1,f +7717,3020,14,1,f +7717,3021,14,1,f +7717,3023,72,1,f +7717,3023,36,1,f +7717,3031,72,1,f +7717,3069b,14,1,f +7717,3795,14,1,f +7717,50944pr0001,0,4,f +7717,50947pb001,14,2,f +7717,50947pb002,14,2,f +7717,50948,0,1,f +7717,50949,14,1,f +7717,50950,14,2,f +7717,50951,0,4,f +7717,6157,0,2,f +7717,6231,72,4,f +7719,2346,0,4,f +7719,2460,14,1,f +7719,2479,0,1,f +7719,3001,15,2,f +7719,3001,1,2,f +7719,3001,4,2,f +7719,3001,14,2,f +7719,3002,15,2,f +7719,3002,4,2,f +7719,3003,15,2,f +7719,3003,1,2,f +7719,3003,14,2,f +7719,3003,4,2,f +7719,3004,4,14,f +7719,3004,14,14,f +7719,3004,0,8,f +7719,3004,1,14,f +7719,3004,15,14,f +7719,3005,14,10,f +7719,3005,4,10,f +7719,3005,15,10,f +7719,3005,1,10,f +7719,3005,0,8,f +7719,3008,4,1,f +7719,3009,4,2,f +7719,3009,15,2,f +7719,3009,1,2,f +7719,3010,0,4,f +7719,3010,1,6,f +7719,3010,4,12,f +7719,3010,15,8,f +7719,3010,14,4,f +7719,3010px2,14,1,f +7719,3020,1,2,f +7719,3022,1,2,f +7719,3030,1,1,f +7719,3039,47,1,f +7719,3062b,7,4,f +7719,3065,47,2,f +7719,3297,4,4,f +7719,3298,4,4,f +7719,3298p21,1,2,f +7719,3299,4,1,f +7719,3300,4,1,f +7719,3622,14,2,f +7719,3622,15,2,f +7719,3622,4,6,f +7719,3626bp04,14,1,f +7719,3666,1,2,f +7719,3710,1,2,f +7719,3747a,4,2,f +7719,3823,41,1,f +7719,3829c01,14,1,f +7719,3832,1,2,f +7719,3853,1,1,f +7719,3854,15,2,f +7719,3856,2,2,f +7719,3861b,1,1,f +7719,3865,10,1,f +7719,3901,0,1,f +7719,3957a,0,2,f +7719,4070,4,2,f +7719,4070,1,2,f +7719,4079,14,1,f +7719,4083,0,2,f +7719,4286,4,4,f +7719,4287,4,2,f +7719,6248,15,4,f +7719,6249,8,2,f +7719,970c00,15,1,f +7719,973p73c01,2,1,f +7725,45463,15,1,f +7725,clikits025,52,1,f +7725,clikits110,63,1,f +7725,clikits218,89,1,f +7726,10111,70,1,f +7726,10199,1,1,f +7726,10199,10,1,f +7726,11198,27,4,f +7726,12067,14,1,f +7726,12592,0,1,f +7726,12602,4,1,f +7726,12651,4,1,f +7726,12758,14,1,f +7726,13341,14,1,f +7726,13355,0,1,f +7726,13358,0,1,f +7726,13530,25,2,f +7726,13975,14,2,f +7726,13976,25,1,f +7726,14013,71,1,f +7726,14094,14,1,f +7726,14211,4,1,f +7726,15847,41,2,f +7726,16434,25,1,f +7726,19796,0,2,f +7726,2300,1,1,f +7726,3011,73,1,f +7726,31023,15,1,f +7726,3437,72,2,f +7726,3437,1,2,f +7726,3437,10,4,f +7726,3437,15,1,f +7726,3437,73,2,f +7726,3437,71,2,f +7726,3437,2,4,f +7726,4066,73,2,f +7726,40666,4,2,f +7726,40666,10,4,f +7726,40666,1,2,f +7726,40666,25,2,f +7726,41969,0,1,f +7726,42030,0,1,f +7726,44524,10,2,f +7726,45141,179,1,f +7726,4672,14,1,f +7726,47202bpr0007,25,1,f +7726,47423,25,1,f +7726,47423,27,2,f +7726,47509,179,1,f +7726,51269,71,1,f +7726,51557,14,1,f +7726,51558,1,1,f +7726,51704,1,1,f +7726,51704,4,2,f +7726,52381,4,1,f +7726,58498,14,1,f +7726,61649,73,1,f +7726,63017,14,1,f +7726,63710pr0012,25,1,f +7726,6377,72,5,f +7726,6378,72,20,f +7726,63871,4,4,f +7726,6392,72,2,f +7726,6393,72,2,f +7726,6510,4,1,f +7726,6510,25,1,f +7726,76371,4,4,f +7726,76371,1,2,f +7726,90265,15,1,f +7726,92005,4,2,f +7726,92094,73,1,f +7726,93353,1,1,f +7726,98222,1,1,f +7726,98252,27,2,f +7726,98458,179,3,f +7727,11477,85,1,f +7727,11477,158,1,f +7727,15470,29,1,f +7727,2496,0,2,f +7727,2655,71,2,f +7727,3004,158,2,f +7727,3004,85,2,f +7727,3020,5,2,f +7727,32028,15,2,f +7727,33291,70,1,f +7727,4495b,5,1,f +7727,48336,15,2,f +7727,54200,85,1,f +7727,54200,158,1,f +7727,60032,15,2,f +7727,6141,19,1,f +7727,6141,297,1,f +7727,6141,70,1,f +7727,88072,15,1,f +7727,98138pr0013,15,1,f +7727,98138pr0018,84,1,f +7729,10288,308,1,f +7729,11215,0,2,f +7729,11245,379,1,f +7729,11403pr0005c01,379,1,f +7729,11408pr0009c01,78,1,f +7729,11477,26,2,f +7729,11605,70,1,f +7729,11816pr0020,84,1,f +7729,11816pr0021,78,1,f +7729,11818pr0007,78,1,f +7729,13965,320,2,f +7729,13965,19,2,f +7729,14417,72,2,f +7729,14418,71,4,f +7729,14419,72,1,f +7729,14704,71,1,f +7729,14734pr0002b,379,1,f +7729,14769,30,2,f +7729,14769,288,4,f +7729,14769,19,5,f +7729,14769pr1016,27,1,f +7729,15068,378,2,f +7729,15254,84,1,f +7729,15279,297,2,f +7729,15397,484,1,f +7729,15469,322,1,f +7729,15706,30,2,f +7729,15712,297,2,f +7729,18838,70,2,f +7729,19119,2,4,f +7729,19121,378,4,f +7729,19203pr0001,308,1,f +7729,19204pr0001,320,1,f +7729,20232,9999,1,f +7729,20381pr0001,26,1,f +7729,2343,297,2,f +7729,2357,320,16,f +7729,2417,85,7,f +7729,2420,320,2,f +7729,2420,19,4,f +7729,2423,5,4,f +7729,2423,31,5,f +7729,2431,19,3,f +7729,2460,0,2,f +7729,2736,71,3,f +7729,2825,0,1,f +7729,3001,70,2,f +7729,3002,70,2,f +7729,3003,19,1,f +7729,3004,320,24,f +7729,3004,71,1,f +7729,30044,70,1,f +7729,30046,297,1,f +7729,3005,84,1,f +7729,3009,320,1,f +7729,30099,320,4,f +7729,3010,320,6,f +7729,30106,117,1,f +7729,30153,47,1,f +7729,30153,45,13,f +7729,3020,322,1,f +7729,3020,30,2,f +7729,3020,19,3,f +7729,3020,0,1,f +7729,3020,288,4,f +7729,3021,0,2,f +7729,3022,70,1,f +7729,3022,19,7,f +7729,3023,320,9,f +7729,3023,30,2,f +7729,3023,19,12,f +7729,3023,288,2,f +7729,3024,71,1,t +7729,3024,71,3,f +7729,3034,70,2,f +7729,30357,288,4,f +7729,3036,28,1,f +7729,30374,42,1,f +7729,3039,19,1,f +7729,3039,72,1,f +7729,30553,0,2,f +7729,30565,28,1,f +7729,30565,322,1,f +7729,3062b,320,11,f +7729,3068b,15,1,f +7729,3068b,19,2,f +7729,3069b,322,2,f +7729,3069b,378,11,f +7729,3069bpr0055,15,1,f +7729,32062,4,1,f +7729,32126,0,1,f +7729,32140,0,2,f +7729,32523,0,2,f +7729,32557,0,1,f +7729,33051,4,2,f +7729,33172,25,1,f +7729,33183,10,1,t +7729,33183,70,4,t +7729,33183,10,1,f +7729,33183,70,7,f +7729,33291,26,2,t +7729,33291,26,7,f +7729,33291,31,14,f +7729,33291,31,3,t +7729,3460,19,1,f +7729,3623,85,3,f +7729,3623,288,3,f +7729,3659,308,2,f +7729,3665,320,2,f +7729,3666,0,1,f +7729,3666,288,4,f +7729,3673,71,1,t +7729,3673,71,4,f +7729,3700,0,3,f +7729,3708,0,1,f +7729,3710,322,2,f +7729,3710,378,2,f +7729,3710,320,3,f +7729,3710,0,1,f +7729,3710,30,2,f +7729,3742,5,16,f +7729,3795,70,2,f +7729,3795,19,1,f +7729,3795,2,2,f +7729,3941,15,3,f +7729,3960pr0019,41,1,f +7729,4032a,0,1,f +7729,41770,70,3,f +7729,4274,1,4,f +7729,4274,1,1,t +7729,4286,320,13,f +7729,43093,1,1,f +7729,4341,0,1,f +7729,43888,71,4,f +7729,43888,70,1,f +7729,44301a,0,1,f +7729,44567a,72,1,f +7729,4460b,320,3,f +7729,44728,19,5,f +7729,4477,0,1,f +7729,4740,129,4,f +7729,48336,19,1,f +7729,48336,0,1,f +7729,48729b,0,2,f +7729,48729b,0,1,t +7729,50950,378,2,f +7729,50950,320,8,f +7729,54200,288,1,t +7729,54200,288,2,f +7729,59900,70,1,f +7729,59900,35,1,f +7729,59900,26,3,f +7729,60169,52,1,f +7729,60474,308,2,f +7729,60477,320,2,f +7729,60478,71,2,f +7729,60481,19,2,f +7729,60481,70,2,f +7729,6091,322,1,f +7729,6141,45,14,f +7729,6141,45,3,t +7729,6141,41,5,f +7729,6141,182,4,f +7729,6141,182,1,t +7729,6141,41,1,t +7729,6256,191,1,f +7729,6266,0,1,t +7729,6266,0,1,f +7729,63868,0,2,f +7729,64644,297,1,f +7729,64799,0,1,f +7729,64951,30,1,f +7729,73983,19,1,f +7729,73983,288,2,f +7729,76768,70,8,f +7729,85984,72,1,f +7729,85984,30,4,f +7729,85984,19,1,f +7729,87087,70,2,f +7729,88072,0,4,f +7729,88323,84,5,f +7729,89523,19,1,f +7729,91405,2,1,f +7729,92280,0,2,f +7729,92438,2,1,f +7729,92438,322,1,f +7729,92456pr0074c01,84,1,f +7729,92456pr0075c01,78,1,f +7729,92819pr0006c01,288,1,f +7729,93273,320,1,f +7729,95343,70,1,f +7729,95344,297,1,f +7729,95344,297,1,t +7729,96874,25,1,t +7729,98138,297,1,t +7729,98138,34,1,f +7729,98138,297,1,f +7729,98138,36,1,t +7729,98138,34,1,t +7729,98138,36,1,f +7729,98560,320,4,f +7729,99207,0,4,f +7730,11458,4,2,f +7730,11477,4,3,f +7730,11477,0,2,f +7730,15068,4,1,f +7730,15573,4,6,f +7730,2412b,179,2,f +7730,2877,15,2,f +7730,3004,1,2,f +7730,3005,15,2,f +7730,3020,4,1,f +7730,3021,4,2,f +7730,3022,0,2,f +7730,3023,47,7,f +7730,3024,182,2,f +7730,3024,182,1,t +7730,3069b,0,1,f +7730,32028,72,1,f +7730,32062,4,2,f +7730,32064a,72,4,f +7730,3623,0,1,f +7730,3710,4,1,f +7730,4274,71,2,f +7730,4274,71,1,t +7730,48336,71,1,f +7730,50951,0,4,f +7730,6141,179,2,f +7730,6141,179,1,t +7730,6157,71,2,f +7730,63864,4,1,f +7730,63868,0,2,f +7730,92593,0,1,f +7730,93273,4,2,f +7730,93274,4,1,f +7730,93593,15,4,f +7730,98138,47,2,f +7730,98138,47,1,t +7730,99780,4,2,f +7731,2412b,0,1,f +7731,2446,15,1,f +7731,3039,1,1,f +7731,3069bp61,15,1,f +7731,3475b,0,2,f +7731,3626bp62,14,1,f +7731,3795,1,1,f +7731,3838,15,1,f +7731,3937,1,1,f +7731,3938,15,1,f +7731,4085c,15,2,f +7731,4349,0,1,f +7731,4859,15,1,f +7731,6117,57,1,f +7731,6119,57,1,f +7731,970x023,0,1,f +7731,973p62c01,0,1,f +7736,2436,15,1,f +7736,2440p67,1,1,f +7736,2446,15,1,f +7736,2452,15,1,f +7736,2452,0,1,f +7736,2817,0,3,f +7736,3021,1,1,f +7736,3022,15,1,f +7736,3023,0,1,f +7736,3023,15,1,f +7736,3034,1,1,f +7736,3039pc8,15,1,f +7736,3069bp13,15,1,f +7736,3069bp61,15,1,f +7736,3298p61,1,1,f +7736,3626bp61,14,1,f +7736,3673,7,6,f +7736,3794a,1,2,f +7736,3838,15,1,f +7736,3938,1,1,f +7736,3960,15,1,f +7736,4276b,15,1,f +7736,4349,0,1,f +7736,4531,0,1,f +7736,4589,57,1,f +7736,4590,0,1,f +7736,4598,0,1,f +7736,6117,57,1,f +7736,6118,15,6,f +7736,6119,57,1,f +7736,6120,57,2,f +7736,970x023,0,1,f +7736,973p61c01,0,1,f +7740,2436,14,1,f +7740,3010,14,2,f +7740,3020,0,1,f +7740,3021,14,1,f +7740,3022,14,1,f +7740,3022,71,1,f +7740,3023,4,1,f +7740,3023,71,1,f +7740,3031,14,1,f +7740,3034,14,1,f +7740,3037,0,1,f +7740,30553,71,1,f +7740,32028,14,1,f +7740,3710,0,2,f +7740,3788,14,1,f +7740,3795,0,1,f +7740,42074,135,1,f +7740,44567a,71,1,f +7740,44674,14,1,f +7740,50944pr0001,0,4,f +7740,50951,0,4,f +7740,6141,46,2,f +7740,6141,46,1,t +7740,6157,0,2,f +7740,6553,71,1,f +7742,2412b,72,3,f +7742,2431,70,2,f +7742,2432,70,2,f +7742,2540,71,3,f +7742,2654,47,1,f +7742,298c02,71,2,f +7742,298c02,71,1,t +7742,30044,70,2,f +7742,3010,70,2,f +7742,3020,72,3,f +7742,3022,70,5,f +7742,3023,0,4,f +7742,3023,71,2,f +7742,30237a,71,2,f +7742,3029,71,1,f +7742,3032,72,1,f +7742,3035,72,2,f +7742,30367b,28,7,f +7742,30374,71,4,f +7742,30375,19,8,f +7742,30375ps2,1,2,f +7742,30376,19,10,f +7742,30377,19,1,t +7742,30377,72,1,f +7742,30377,19,12,f +7742,30377,72,1,t +7742,30378,19,10,f +7742,3040b,28,12,f +7742,3062b,41,3,f +7742,3068b,28,2,f +7742,3298,72,1,f +7742,3623,70,2,f +7742,3665,71,4,f +7742,3666,72,4,f +7742,3666,70,2,f +7742,3666,71,2,f +7742,3700,71,8,f +7742,3710,71,5,f +7742,3795,72,3,f +7742,3832,72,3,f +7742,3937,72,1,f +7742,3957a,71,1,f +7742,3960,72,2,f +7742,4032a,0,2,f +7742,4070,72,8,f +7742,4081b,72,2,f +7742,41747,28,2,f +7742,41748,28,2,f +7742,41769,28,1,f +7742,41770,28,1,f +7742,43093,1,6,f +7742,44728,71,4,f +7742,4599b,71,1,f +7742,4623,71,1,f +7742,47753,28,1,f +7742,53451,179,2,f +7742,53451,179,1,t +7742,58247,0,8,f +7742,59230,19,8,f +7742,59230,19,1,t +7742,60470a,71,1,f +7742,60475a,71,8,f +7742,60479,71,2,f +7742,6091,71,4,f +7742,6120,72,6,f +7742,6134,0,1,f +7742,61409,72,2,f +7742,6141,71,4,f +7742,6141,71,1,t +7742,6636,70,3,f +7742,87580,71,8,f +7742,92743pr0001,19,1,f +7742,92743pr0002,19,1,f +7742,92747pr0001a,52,1,f +7742,970c00,72,1,f +7742,970c00,28,1,f +7742,973pr1739c01,28,1,f +7742,973pr1740c01,308,1,f +7746,2335p04,15,1,f +7746,2345p04,14,1,f +7746,2454a,15,1,f +7746,2462,15,3,f +7746,2524,6,1,f +7746,2526,4,1,f +7746,2526,14,1,f +7746,2530,8,1,f +7746,2530,8,1,t +7746,2543,4,1,f +7746,2544,0,1,f +7746,2545,0,1,f +7746,2546p01,4,1,f +7746,2561,6,2,f +7746,2562,6,1,f +7746,3004,15,11,f +7746,3005,14,1,f +7746,3005,15,1,f +7746,3010,14,1,f +7746,3020,7,1,f +7746,3024,15,2,f +7746,3027,7,1,f +7746,3307,14,1,f +7746,3455,15,1,f +7746,3622,15,2,f +7746,3626apb04,14,1,f +7746,3626apb05,14,1,f +7746,3626apr0001,14,1,f +7746,3659,15,2,f +7746,3660,15,1,f +7746,3710,14,2,f +7746,3710,7,1,f +7746,3755,15,1,f +7746,3957a,0,5,f +7746,3959,0,1,f +7746,4070,14,1,f +7746,4071,14,1,f +7746,4085c,15,1,f +7746,4460a,14,2,f +7746,4589,46,1,f +7746,4611,8,1,f +7746,970c00,15,2,f +7746,970c00,7,1,f +7746,973p32c01,14,1,f +7746,973pb0204c01,15,2,f +7747,45568,0,6,f +7747,45573,72,6,f +7747,45574,71,8,f +7747,45575,71,16,f +7747,45783,27,1,f +7747,45784,27,2,f +7747,45785,27,1,f +7747,45786,27,2,f +7747,45803,27,2,f +7747,49823,148,1,f +7747,49828,148,1,f +7747,49829,148,1,f +7748,2357,72,16,f +7748,2412b,0,18,f +7748,2420,15,13,f +7748,2432,71,7,f +7748,2436,15,3,f +7748,2441,0,1,f +7748,2444,15,2,f +7748,2446,15,2,f +7748,2447,82,2,f +7748,2447,82,1,t +7748,2449,15,2,f +7748,2456,71,4,f +7748,2540,72,3,f +7748,2577,484,24,f +7748,2654,72,1,f +7748,2730,15,2,f +7748,2743,72,4,f +7748,2780,0,9,f +7748,2780,0,1,t +7748,2921,14,2,f +7748,298c02,71,1,t +7748,298c02,71,1,f +7748,3001,71,10,f +7748,3002,0,2,f +7748,3003,70,7,f +7748,3003,71,4,f +7748,3003,33,4,f +7748,3004,0,2,f +7748,3004,71,6,f +7748,3004,15,5,f +7748,3005,0,2,f +7748,3005,15,6,f +7748,3008,72,2,f +7748,3009,72,2,f +7748,3010,15,3,f +7748,30145,0,3,f +7748,3020,71,3,f +7748,3021,15,9,f +7748,3021,0,10,f +7748,3022,0,4,f +7748,3022,15,11,f +7748,3023,15,20,f +7748,3023,0,24,f +7748,3023,33,7,f +7748,3024,0,2,f +7748,3024,70,24,f +7748,3024,15,12,f +7748,30256,15,4,f +7748,30292,41,2,f +7748,3031,72,3,f +7748,3032,0,1,f +7748,3036,71,1,f +7748,30361c,15,1,f +7748,30363,15,1,f +7748,30363,0,1,f +7748,3038,15,2,f +7748,3040b,0,6,f +7748,30504,15,2,f +7748,30504,0,4,f +7748,30562,484,12,f +7748,30565,72,16,f +7748,3062b,36,3,f +7748,3062b,70,10,f +7748,3068b,0,5,f +7748,3068b,70,4,f +7748,3068b,15,4,f +7748,3069b,15,13,f +7748,3069b,40,1,f +7748,3069b,70,4,f +7748,3069b,0,2,f +7748,3069bp02,71,1,f +7748,3069bpr0030,72,1,f +7748,3069bpr0086,71,2,f +7748,3070b,70,4,f +7748,3070b,70,1,t +7748,3070b,15,1,t +7748,3070b,15,2,f +7748,32000,15,3,f +7748,32001,71,2,f +7748,32013,15,1,f +7748,32013,0,2,f +7748,32014,15,1,f +7748,32016,70,3,f +7748,32028,72,3,f +7748,32034,0,2,f +7748,32056,14,4,f +7748,32062,4,21,f +7748,32073,71,2,f +7748,32123b,14,1,t +7748,32123b,14,4,f +7748,32556,19,6,f +7748,3298,71,2,f +7748,33243,72,8,f +7748,3460,71,8,f +7748,3623,15,4,f +7748,3623,0,2,f +7748,3626bpr0389,14,1,f +7748,3626bpr0498,14,1,f +7748,3626bpr0893,14,1,f +7748,3659,71,3,f +7748,3665,15,2,f +7748,3666,0,7,f +7748,3666,15,9,f +7748,3673,71,1,t +7748,3673,71,4,f +7748,3684,72,2,f +7748,3700,70,16,f +7748,3706,0,2,f +7748,3707,0,1,f +7748,3709,1,4,f +7748,3710,15,16,f +7748,3713,4,8,f +7748,3713,4,1,t +7748,3737,0,1,f +7748,3738,71,1,f +7748,3794b,0,17,f +7748,3794b,15,7,f +7748,3795,15,8,f +7748,3795,72,4,f +7748,3795,0,7,f +7748,3829c01,71,1,f +7748,3832,0,2,f +7748,3857,72,1,f +7748,3894,15,5,f +7748,3895,72,2,f +7748,3941,15,3,f +7748,3942c,0,2,f +7748,3942c,15,2,f +7748,3943b,15,2,f +7748,3957a,71,1,f +7748,3958,0,1,f +7748,3961,72,1,f +7748,40244,0,2,f +7748,4032a,72,7,f +7748,4032a,4,2,f +7748,4070,0,10,f +7748,4070,70,24,f +7748,4081b,0,2,f +7748,40902,0,1,f +7748,4150pr0022,71,1,f +7748,41532,0,1,f +7748,4162,71,2,f +7748,4162,15,6,f +7748,41677,1,6,f +7748,41677,15,4,f +7748,41747,484,2,f +7748,41748,484,2,f +7748,41769,0,1,f +7748,41769,15,1,f +7748,41770,15,1,f +7748,41770,0,1,f +7748,4274,1,1,t +7748,4274,1,12,f +7748,4282,0,2,f +7748,4282,15,2,f +7748,4286,0,2,f +7748,4286,15,2,f +7748,4287,0,6,f +7748,4287,15,1,f +7748,43093,1,9,f +7748,4360,0,1,f +7748,43722,15,1,f +7748,43723,15,1,f +7748,43898,72,1,f +7748,44568,71,2,f +7748,44728,15,2,f +7748,44728,4,6,f +7748,4477,72,8,f +7748,4477,15,6,f +7748,4519,71,7,f +7748,45705,484,2,f +7748,4589,15,2,f +7748,4599b,14,4,f +7748,4624,15,10,f +7748,47397,15,2,f +7748,47397,0,2,f +7748,47398,15,2,f +7748,47398,0,2,f +7748,4740,71,8,f +7748,4740,15,3,f +7748,4742,0,2,f +7748,47455,0,1,f +7748,48092,72,4,f +7748,48171,72,1,f +7748,48336,15,4,f +7748,4865b,0,2,f +7748,50303,0,2,f +7748,50450,0,2,f +7748,54200,15,6,f +7748,54200,0,1,t +7748,54200,40,6,f +7748,54200,40,1,t +7748,54200,36,1,t +7748,54200,36,2,f +7748,54200,70,24,f +7748,54200,70,1,t +7748,54200,0,8,f +7748,54200,15,1,t +7748,54383,0,1,f +7748,54384,0,1,f +7748,59443,0,9,f +7748,59443,4,4,f +7748,59895,0,6,f +7748,6005,15,50,f +7748,6019,15,12,f +7748,60212,272,2,f +7748,60470a,15,2,f +7748,60471,0,4,f +7748,60474,71,4,f +7748,60474,0,8,f +7748,60474,15,7,f +7748,60477,0,2,f +7748,60478,4,4,f +7748,60479,0,2,f +7748,60483,0,3,f +7748,6091,15,6,f +7748,61184,71,1,f +7748,6140,71,2,f +7748,6141,57,1,t +7748,6141,71,1,t +7748,6141,47,1,t +7748,6141,47,8,f +7748,6141,57,22,f +7748,6141,71,2,f +7748,61483,71,3,f +7748,61678,15,2,f +7748,61678,484,8,f +7748,6222,0,4,f +7748,6231,0,2,f +7748,6233,0,3,f +7748,62462,15,2,f +7748,6259,15,20,f +7748,62696,484,1,f +7748,62810,308,1,f +7748,63965,0,1,f +7748,6536,15,2,f +7748,6558,1,2,f +7748,6632,15,10,f +7748,6636,15,6,f +7748,6636,0,4,f +7748,6636,72,10,f +7748,76537,14,2,f +7748,85080,15,48,f +7748,85984,15,4,f +7748,85984,0,7,f +7748,86035,1,1,f +7748,87079,15,10,f +7748,87087,1,4,f +7748,87414,0,4,f +7748,87544,15,4,f +7748,89762,15,2,f +7748,92280,15,8,f +7748,92907,0,3,f +7748,970c00,15,2,f +7748,970c00,1,1,f +7748,973pr1240c01,1,1,f +7748,973pr1655c01,15,2,f +7749,10247,0,2,f +7749,11211,4,4,f +7749,11212,72,1,f +7749,11213,71,1,f +7749,11299,15,1,f +7749,11477,72,4,f +7749,14769,15,1,f +7749,15118,15,1,f +7749,15210,0,1,f +7749,15392,72,1,f +7749,19220,0,1,f +7749,23922,14,1,f +7749,23924,0,1,f +7749,2412b,14,4,f +7749,2420,15,2,f +7749,2431,71,2,f +7749,2432,71,1,f +7749,2447,40,1,f +7749,2456,1,2,f +7749,3004,4,6,f +7749,3005,72,4,f +7749,3010,71,1,f +7749,30194,72,1,f +7749,3020,14,2,f +7749,3020,15,3,f +7749,3020,72,2,f +7749,3021,4,7,f +7749,3022,72,3,f +7749,3023,36,1,f +7749,3023,33,4,f +7749,3023,15,1,f +7749,3023,182,1,f +7749,30237b,71,2,f +7749,3024,182,4,f +7749,3032,71,2,f +7749,3034,15,6,f +7749,30374,14,2,f +7749,3062b,14,1,f +7749,3069b,33,2,f +7749,3069b,72,3,f +7749,32028,15,2,f +7749,32348,4,2,f +7749,3245b,4,1,f +7749,3626cpr1580,14,1,f +7749,3626cpr1826,14,1,f +7749,3660,4,8,f +7749,3710,2,3,f +7749,3795,72,3,f +7749,3795,15,1,f +7749,3829c01,14,1,f +7749,3832,71,2,f +7749,3834,15,2,f +7749,3835,0,1,f +7749,3837,72,1,f +7749,3838,14,1,f +7749,3941,15,1,f +7749,3957a,71,1,f +7749,3958,72,1,f +7749,4032a,4,1,f +7749,4032a,2,1,f +7749,4079b,14,1,f +7749,4162,15,2,f +7749,4162,71,2,f +7749,4208,0,1,f +7749,4209,4,1,f +7749,43093,1,2,f +7749,4488,0,4,f +7749,4533,71,1,f +7749,4599b,14,1,f +7749,4865a,4,4,f +7749,50745,15,4,f +7749,52031,4,2,f +7749,54200,36,2,f +7749,54200,46,2,f +7749,6014b,71,4,f +7749,60475b,4,4,f +7749,6126b,182,2,f +7749,6141,41,4,f +7749,61485,0,1,f +7749,6158,72,1,f +7749,6179,71,1,f +7749,6249,71,2,f +7749,63868,4,6,f +7749,64453,41,1,f +7749,85861,182,2,f +7749,87079,71,3,f +7749,87544,71,1,f +7749,87552,4,2,f +7749,87609,4,2,f +7749,87617,4,2,f +7749,87618,71,2,f +7749,87697,0,4,f +7749,87913,71,1,f +7749,92280,71,2,f +7749,92410,4,1,f +7749,92593,4,2,f +7749,92593,15,1,f +7749,970c00pr0408,0,2,f +7749,973pr2188c01,0,1,f +7749,973pr3205c01,0,1,f +7749,98138,33,4,f +7750,3003,0,9,f +7750,3004,0,34,f +7750,3004,4,49,f +7750,3005,4,21,f +7750,3007,0,2,f +7750,3008,4,5,f +7750,3008,0,2,f +7750,3009,4,16,f +7750,3009,0,3,f +7750,3010,14,3,f +7750,3010,4,5,f +7750,3010,0,5,f +7750,3021,0,2,f +7750,3022,0,4,f +7750,3023,0,15,f +7750,3023,4,3,f +7750,3024,4,1,f +7750,3024,0,2,f +7750,3026,7,11,f +7750,3033,7,1,f +7750,3040b,4,2,f +7750,3067p10,36,1,f +7750,3068b,7,4,f +7750,3068b,4,8,f +7750,3069b,15,1,f +7750,3185,4,10,f +7750,3228b,7,8,f +7750,3455,4,2,f +7750,3460,4,2,f +7750,3581,4,2,f +7750,3622,4,15,f +7750,3623,4,1,f +7750,3623,0,4,f +7750,3624,4,1,f +7750,3625,0,1,f +7750,3626apr0001,14,3,f +7750,3644,15,2,f +7750,3651,7,4,f +7750,3665,4,36,f +7750,3666,7,2,f +7750,3706,0,2,f +7750,3710,4,1,f +7750,3713,7,4,f +7750,3795,7,18,f +7750,3833,4,1,f +7750,3836,6,1,f +7750,3853,14,5,f +7750,3854,15,10,f +7750,3861b,15,1,f +7750,3900,7,1,f +7750,3941,0,1,f +7750,3960,7,4,f +7750,4079,14,6,f +7750,4083,0,2,f +7750,4168,7,2,f +7750,4169,7,2,f +7750,4175,4,4,f +7750,767,8,9,f +7750,970c00,1,3,f +7750,973c02,4,1,f +7750,973p18c01,1,1,f +7750,973p26c01,1,1,f +7751,2362b,71,2,f +7751,2412b,80,1,f +7751,2431,0,2,f +7751,2432,4,2,f +7751,2432,1,1,f +7751,2446,135,1,f +7751,2447,46,1,t +7751,2447,46,1,f +7751,2456,14,1,f +7751,2489,72,1,f +7751,2555,71,4,f +7751,2654,71,2,f +7751,2817,71,3,f +7751,298c02,1,1,t +7751,298c02,1,1,f +7751,3001,25,1,f +7751,3004,71,2,f +7751,3004,4,2,f +7751,3005,25,4,f +7751,3005,71,4,f +7751,3009,0,5,f +7751,3010,71,3,f +7751,3010,72,2,f +7751,30136,72,9,f +7751,3020,25,1,f +7751,3021,4,1,f +7751,3022,71,2,f +7751,3023,28,8,f +7751,3023,14,2,f +7751,3023,71,3,f +7751,3024,36,2,f +7751,3024,72,6,f +7751,3031,72,1,f +7751,3035,72,1,f +7751,30350b,0,2,f +7751,30355,272,1,f +7751,30356,272,1,f +7751,3036,72,1,f +7751,30374,71,2,f +7751,30384,40,1,f +7751,30391,0,6,f +7751,3040b,25,4,f +7751,3040b,71,4,f +7751,30414,72,4,f +7751,3048c,4,1,f +7751,30526,72,2,f +7751,30608,82,1,f +7751,3068b,0,1,f +7751,3069b,14,3,f +7751,3069b,25,5,f +7751,3069b,82,10,f +7751,32054,0,2,f +7751,32062,4,2,f +7751,32064b,71,4,f +7751,32073,71,4,f +7751,32123b,71,1,t +7751,32123b,71,2,f +7751,32530,72,2,f +7751,3298,71,2,f +7751,3456,72,1,f +7751,3626bpr0410,14,1,f +7751,3626bpr0536,14,1,f +7751,3626bpr0540,14,1,f +7751,3660,0,2,f +7751,3666,72,2,f +7751,3673,71,2,f +7751,3673,71,1,t +7751,3679,71,1,f +7751,3680,4,1,f +7751,3701,14,2,f +7751,3707,0,3,f +7751,3709,72,2,f +7751,3710,71,2,f +7751,3713,71,6,f +7751,3713,71,1,t +7751,3731,0,1,f +7751,3747b,71,2,f +7751,3794a,1,1,f +7751,3795,71,1,f +7751,3795,0,5,f +7751,3829c01,4,1,f +7751,3832,1,1,f +7751,3837,72,1,f +7751,3937,72,1,f +7751,3938,4,1,f +7751,3942c,80,1,f +7751,3957a,0,2,f +7751,3962b,0,1,f +7751,4079b,0,1,f +7751,4085c,0,4,f +7751,41334,0,1,f +7751,4150,4,1,f +7751,42003,71,2,f +7751,42003,0,4,f +7751,4286,71,4,f +7751,43710,0,2,f +7751,43711,0,2,f +7751,43713,72,1,f +7751,44728,0,10,f +7751,44728,71,2,f +7751,4477,71,2,f +7751,4519,71,4,f +7751,45590,0,8,f +7751,4589,42,6,f +7751,4589,4,2,f +7751,4589,80,1,f +7751,47397,272,1,f +7751,47398,272,1,f +7751,47457,72,1,f +7751,47753,272,1,f +7751,48183,71,1,f +7751,48336,0,5,f +7751,4854,0,1,f +7751,4854,72,1,f +7751,4865a,71,2,f +7751,4871,72,1,f +7751,49668,135,2,f +7751,50304,272,2,f +7751,50305,272,2,f +7751,50373,71,1,f +7751,50950,14,2,f +7751,50950,25,2,f +7751,50955,71,1,f +7751,50956,71,1,f +7751,51000,272,2,f +7751,54200,182,1,t +7751,54200,36,2,f +7751,54200,72,1,t +7751,54200,182,4,f +7751,54200,36,1,t +7751,54200,47,1,t +7751,54200,14,2,f +7751,54200,47,4,f +7751,54200,0,6,f +7751,54200,80,2,f +7751,54200,25,1,t +7751,54200,14,1,t +7751,54200,72,2,f +7751,54200,0,1,t +7751,54200,25,2,f +7751,55982,0,6,f +7751,57028c01,71,2,f +7751,57796,72,2,f +7751,60219,0,2,f +7751,60470a,71,2,f +7751,60474,0,1,f +7751,6070,40,2,f +7751,60849,0,2,f +7751,60849,82,1,f +7751,61409,72,8,f +7751,6141,25,1,t +7751,6141,25,2,f +7751,6231,71,2,f +7751,63082,0,1,f +7751,6583,0,2,f +7751,6636,14,2,f +7751,6636,0,3,f +7751,8630stk01,9999,1,t +7751,970c00pr0117,25,2,f +7751,970c00pr0118,272,1,f +7751,973pr1384c01,25,2,f +7751,973pr1386c01,272,1,f +7752,11211,19,1,f +7752,11215,15,1,f +7752,11290,212,2,f +7752,11408pr0005c01,78,1,f +7752,11618,26,2,f +7752,11618,26,2,t +7752,11816pr0002,78,1,f +7752,11818pr0004,78,1,f +7752,14769pr1038,29,1,f +7752,15207,5,2,f +7752,15279,10,1,f +7752,15279,27,1,f +7752,15470,29,1,t +7752,15470,29,1,f +7752,15470,297,1,t +7752,15470,297,1,f +7752,15573,297,2,f +7752,15624,27,1,f +7752,15627pr0011,15,1,f +7752,15673pr0001,226,1,f +7752,15744,297,4,f +7752,15745,45,3,f +7752,15875pr0011c01,212,1,f +7752,16985pr0001a,320,1,f +7752,18646,27,1,f +7752,2397,72,1,f +7752,2431,2,2,f +7752,2449pb06,212,4,f +7752,2454a,15,2,f +7752,25051,47,1,f +7752,3003,2,1,f +7752,3004,29,2,f +7752,3005,73,2,f +7752,3007,15,1,f +7752,30076,212,1,f +7752,3010,73,4,f +7752,30165,15,1,f +7752,3020,2,1,f +7752,3023,5,1,f +7752,3023,71,1,f +7752,3031,10,1,f +7752,3039,1,2,f +7752,3040b,15,2,f +7752,3068b,29,1,f +7752,3068b,5,1,f +7752,3069b,26,1,f +7752,33061,34,1,f +7752,33291,26,1,f +7752,33291,26,1,t +7752,33291,10,3,f +7752,33291,5,2,t +7752,33291,10,2,t +7752,33291,5,5,f +7752,3626b,25,1,f +7752,3852b,29,1,f +7752,3941,15,3,f +7752,3942c,212,2,f +7752,4032a,15,1,f +7752,4215b,15,1,f +7752,4495b,297,1,f +7752,4738a,30,1,f +7752,4739a,30,1,f +7752,4865a,15,2,f +7752,60481,212,2,f +7752,60607,297,2,f +7752,6091,5,2,f +7752,6124,45,1,t +7752,6124,45,1,f +7752,6182,15,1,f +7752,6256,29,1,f +7752,62810,308,1,f +7752,64644,297,2,f +7752,64647,182,2,f +7752,64647,182,1,t +7752,86208,71,1,f +7752,87079,26,1,f +7752,87580,297,1,f +7752,92456pr0104c01,78,1,f +7752,92947,15,1,f +7752,93085pr02,15,1,f +7752,93088pr0001a,84,1,f +7752,93094,5,1,t +7752,93094,5,1,f +7752,93160,15,1,f +7752,93160,15,1,t +7752,93273,1,3,f +7752,98283,71,2,f +7753,3626cpr1189,78,1,f +7753,41879a,321,1,f +7753,88283,0,1,f +7753,973pr2336c01,321,1,f +7754,11090,72,2,f +7754,11153,320,2,f +7754,11153,71,1,f +7754,11217pr0008a,326,2,f +7754,11458,72,2,f +7754,15311pr0001,326,2,f +7754,15391,0,4,f +7754,15392,72,4,f +7754,15392,72,1,t +7754,2412b,320,1,f +7754,2431,72,2,f +7754,2540,72,1,f +7754,2654,47,6,f +7754,2723,0,2,f +7754,2780,0,2,f +7754,2780,0,1,t +7754,3020,71,3,f +7754,3022,320,1,f +7754,3023,71,1,f +7754,30357,71,2,f +7754,30367b,72,1,f +7754,30375,72,1,f +7754,30565,72,2,f +7754,30592,71,1,f +7754,32000,71,2,f +7754,3626cpr1149,78,4,f +7754,3666,72,1,f +7754,3705,0,1,f +7754,3710,15,1,f +7754,3794b,72,4,f +7754,3795,0,2,f +7754,4079b,0,2,f +7754,41531,71,1,f +7754,43093,1,1,f +7754,43710,71,1,f +7754,43711,71,1,f +7754,60470b,71,1,f +7754,6141,41,15,f +7754,6141,41,1,t +7754,63864,320,2,f +7754,63868,71,2,f +7754,87580,71,1,f +7754,92280,71,1,f +7754,93606,71,1,f +7754,970c00pr0630,308,2,f +7754,970c00pr0639,28,2,f +7754,973pr1590c01,326,2,f +7754,973pr2594c01,326,2,f +7754,98100,71,1,f +7754,99021,72,1,f +7755,2343,47,2,f +7755,2356,15,1,f +7755,2357,15,8,f +7755,2412b,0,4,f +7755,2431,15,1,f +7755,2432,15,1,f +7755,2454a,15,1,f +7755,2465,5,2,f +7755,2493b,15,1,f +7755,2494,47,1,f +7755,2555,15,2,f +7755,2926,7,2,f +7755,298c02,15,1,f +7755,3001,15,2,f +7755,30016,5,3,f +7755,30018,15,1,f +7755,3002,15,4,f +7755,3003,5,1,f +7755,3003,15,1,f +7755,3004,15,12,f +7755,3004,5,8,f +7755,3005,1,1,f +7755,3005,15,6,f +7755,3005,5,1,f +7755,3005,14,1,f +7755,3005,13,2,f +7755,30055,15,4,f +7755,3008,5,2,f +7755,3009,15,3,f +7755,3010,14,3,f +7755,3010,15,9,f +7755,3022,15,3,f +7755,3023,15,1,f +7755,3023,7,1,f +7755,3034,15,1,f +7755,3039,15,1,f +7755,3045,15,2,f +7755,3062b,33,1,f +7755,3062b,34,1,f +7755,3062b,46,2,f +7755,3062b,47,3,f +7755,3068b,15,1,f +7755,3139,0,4,f +7755,3307,20,2,f +7755,3307,15,4,f +7755,3455,15,4,f +7755,3622,15,3,f +7755,3623,15,2,f +7755,3666,15,2,f +7755,3679,7,3,f +7755,3680,15,3,f +7755,3710,15,1,f +7755,3741,2,4,f +7755,3742,5,6,f +7755,3742,5,2,t +7755,3742,14,2,t +7755,3742,14,6,f +7755,3747b,15,2,f +7755,3794a,15,1,f +7755,3830,15,2,f +7755,3831,15,2,f +7755,3837,1,1,f +7755,3852b,74,1,f +7755,3899,13,4,f +7755,3900,1,1,f +7755,3941,15,2,f +7755,4083,5,1,f +7755,4085c,15,2,f +7755,4150,15,4,f +7755,4151a,5,1,f +7755,4161pb01,74,1,f +7755,4202,18,2,f +7755,4213,15,1,f +7755,4315,15,1,f +7755,4325,14,1,f +7755,4337,14,1,f +7755,4341,0,1,f +7755,4461,1,1,f +7755,45,383,2,f +7755,4589,15,1,f +7755,45896px1,15,1,f +7755,4591,15,5,f +7755,4599a,1,2,f +7755,4599a,5,2,f +7755,4624,7,4,f +7755,4744,15,1,f +7755,4861,5,1,f +7755,4865a,15,4,f +7755,4908,20,1,f +7755,6016,0,1,f +7755,6019,15,2,f +7755,6081,15,2,f +7755,6111,15,1,f +7755,6141,7,1,f +7755,6141,57,2,f +7755,6141,0,1,f +7755,6141,15,5,f +7755,6161,20,1,f +7755,6161,18,2,f +7755,6162,74,2,f +7755,6162,18,2,f +7755,6165,15,1,f +7755,6166,15,1,f +7755,6169,20,1,f +7755,6175,8,1,f +7755,6176,20,1,f +7755,6177,15,1,f +7755,6178,20,1,f +7755,6179,15,6,f +7755,6179,13,1,f +7755,6179,1,2,f +7755,6179,14,3,f +7755,6180,13,1,f +7755,6180,1,1,f +7755,6182,15,7,f +7755,6182,13,2,f +7755,6183,20,2,f +7755,6183,15,1,f +7755,6183,1,2,f +7755,6184,1,1,f +7755,6184,15,3,f +7755,6186,20,1,f +7755,6187,15,2,f +7755,6190,74,1,f +7755,6191,15,4,f +7755,6191,13,1,f +7755,6191,14,3,f +7755,6192,13,1,f +7755,6195,15,1,f +7755,6195,1,1,f +7755,6196,1,1,f +7755,6196,5,3,f +7755,6197b,15,6,f +7755,6198,1,2,f +7755,6198,15,1,f +7755,6201,0,1,f +7755,6203,5,1,f +7755,6205,15,2,f +7755,6206,15,1,f +7755,6251,15,1,f +7755,6252,13,1,f +7755,6253,15,1,f +7755,6255,2,3,f +7755,6256,14,3,f +7755,75347,15,1,f +7755,75347,5,3,f +7755,bel002,77,1,f +7755,bel002,18,1,f +7755,belvbaby5,-1,1,f +7755,belvfem24,-1,1,f +7755,belvfem51,-1,1,f +7755,belvmale12,-1,1,f +7755,fabeh5,20,1,f +7755,pouch07,13,1,f +7755,pouch08,20,2,f +7755,towel2,5,2,f +7756,2420,14,6,f +7756,2730,4,6,f +7756,2780,0,14,f +7756,2815,0,4,f +7756,2825,7,2,f +7756,2838c01,7,1,f +7756,3001,4,1,f +7756,3003,4,2,f +7756,3004,4,10,f +7756,3021,14,2,f +7756,3022,14,2,f +7756,3023,14,12,f +7756,3033,14,1,f +7756,3040b,4,2,f +7756,3065,34,1,f +7756,3069b,14,2,f +7756,3460,14,5,f +7756,3482,7,1,f +7756,3483,0,1,f +7756,3623,14,4,f +7756,3626bpr0001,14,2,f +7756,3647,7,2,f +7756,3648b,7,2,f +7756,3649,7,1,f +7756,3650,7,1,f +7756,3651,7,4,f +7756,3666,14,4,f +7756,3673,7,6,f +7756,3700,4,6,f +7756,3701,4,6,f +7756,3702,4,6,f +7756,3703,4,4,f +7756,3705,0,2,f +7756,3706,0,3,f +7756,3707,0,2,f +7756,3709,14,2,f +7756,3710,14,8,f +7756,3713,7,6,f +7756,3737,0,2,f +7756,3738,14,4,f +7756,3749,7,4,f +7756,3794a,14,4,f +7756,3795,14,2,f +7756,3857,7,1,f +7756,3894,4,4,f +7756,3895,4,4,f +7756,4032a,14,2,f +7756,4143,7,2,f +7756,4162,14,3,f +7756,4185,7,6,f +7756,4265b,7,6,f +7756,4477,14,4,f +7756,4485,4,1,f +7756,4519,0,2,f +7756,4530,0,1,f +7756,4716,7,1,f +7756,4758,15,1,f +7756,4774c01,0,1,f +7756,5306bc015,0,1,f +7756,5306bc162,0,3,f +7756,6035,15,1,f +7756,6538a,7,1,f +7756,71128,383,1,f +7756,71509,0,1,f +7756,85544,15,1,f +7756,85545,15,2,f +7756,970c00,1,1,f +7756,970c00,0,1,f +7756,973p71c01,15,1,f +7756,973pb0202c01,15,1,f +7756,rb00164,0,2,f +7756,x157,15,3,f +7756,x245px1,0,1,f +7757,2421,0,1,f +7757,2431,15,4,f +7757,2496,0,1,f +7757,2655,71,1,f +7757,298c02,4,2,f +7757,3003,4,1,f +7757,3023,4,3,f +7757,3065,47,1,f +7757,3623,4,3,f +7757,3794a,15,3,f +7757,3795,4,4,f +7757,4081b,72,2,f +7757,41769,4,2,f +7757,41770,4,2,f +7757,44661,15,1,f +7757,4488,0,1,f +7757,51739,15,1,f +7757,6141,71,4,f +7757,6141,71,1,t +7758,10884,27,5,f +7758,11211,71,1,f +7758,11211,19,1,f +7758,11267,30,1,f +7758,11403pr0004c01,19,1,f +7758,11610,19,2,f +7758,11618,26,1,f +7758,11618,191,1,f +7758,11816pr0001,84,1,f +7758,11816pr0002,78,1,f +7758,12825,15,1,f +7758,14395,70,8,f +7758,14736pr0002,0,1,f +7758,14769,29,1,f +7758,15210,15,1,f +7758,15284pr0001,226,1,f +7758,15332,70,4,f +7758,15395,15,1,f +7758,15678pat0002,2,1,f +7758,16981,27,2,f +7758,17436pr0001,0,1,f +7758,22667,4,1,f +7758,2335,15,1,f +7758,2357,70,4,f +7758,2412b,72,2,f +7758,2420,70,4,f +7758,2420,19,2,f +7758,2431,19,3,f +7758,2432,71,1,f +7758,2453a,70,1,f +7758,2454a,70,2,f +7758,2476,15,1,f +7758,2496,0,2,f +7758,2569,71,1,f +7758,2584,0,1,f +7758,2585,71,1,f +7758,2654,0,2,f +7758,2655,71,2,f +7758,3001,70,1,f +7758,3001,15,1,f +7758,3002,70,2,f +7758,3003,70,5,f +7758,3003,19,4,f +7758,3003,5,2,f +7758,3004,5,1,f +7758,3005,70,11,f +7758,30056,26,2,f +7758,30086,30,1,f +7758,3009,19,2,f +7758,30136,71,7,f +7758,30136,70,18,f +7758,30137,70,7,f +7758,30162,72,1,f +7758,30176,2,3,f +7758,3020,70,1,f +7758,3020,71,1,f +7758,3020,2,4,f +7758,3020,19,2,f +7758,3021,19,1,f +7758,3021,70,2,f +7758,3022,70,2,f +7758,3022,27,8,f +7758,3023,19,8,f +7758,3023,29,2,f +7758,3034,70,1,f +7758,30340,15,1,f +7758,3035,2,1,f +7758,30357,2,2,f +7758,30357,19,2,f +7758,30357,29,1,f +7758,3036,2,1,f +7758,3037,70,1,f +7758,30374,19,1,f +7758,3039,71,4,f +7758,3039,70,10,f +7758,3039,15,1,f +7758,3040b,26,4,f +7758,3040b,484,4,f +7758,3040b,70,3,f +7758,30565,2,2,f +7758,3062b,47,1,f +7758,3062b,27,4,f +7758,3062b,70,16,f +7758,3068b,72,1,f +7758,3069b,33,4,f +7758,3176,71,3,f +7758,3176,0,1,f +7758,32001,0,1,f +7758,32270,0,1,f +7758,3245c,71,1,f +7758,3298,70,1,f +7758,3308,484,4,f +7758,33085,14,1,f +7758,33291,10,6,f +7758,33291,5,5,f +7758,33320,2,1,f +7758,3460,19,4,f +7758,3622,19,1,f +7758,3623,2,2,f +7758,3660,71,1,f +7758,3660,70,1,f +7758,3665,70,2,f +7758,3666,70,1,f +7758,3678b,484,4,f +7758,3700,15,1,f +7758,3705,0,1,f +7758,3708,0,1,f +7758,3710,71,2,f +7758,3710,27,7,f +7758,3710,19,2,f +7758,3741,2,2,f +7758,3747b,71,2,f +7758,3794b,72,1,f +7758,3794b,15,1,f +7758,3794b,27,8,f +7758,3795,27,2,f +7758,3795,19,1,f +7758,3899,47,2,f +7758,3937,71,5,f +7758,3940b,72,1,f +7758,3941,70,8,f +7758,3941,15,1,f +7758,3957a,71,1,f +7758,3962b,191,2,f +7758,4032a,19,1,f +7758,4032a,2,1,f +7758,4081b,27,1,f +7758,4162,1,1,f +7758,4162,70,2,f +7758,4282,71,1,f +7758,4286,70,1,f +7758,4287,70,2,f +7758,43093,1,1,f +7758,4345b,71,1,f +7758,4346,47,1,f +7758,43888,484,4,f +7758,4460b,70,1,f +7758,44728,15,1,f +7758,4523,5,1,f +7758,4528,0,1,f +7758,4599b,71,3,f +7758,4740,71,1,f +7758,47457,15,2,f +7758,4865b,15,2,f +7758,48729a,72,1,f +7758,54200,70,3,f +7758,54200,72,1,f +7758,56823c50,0,1,f +7758,59443,72,1,f +7758,59900,42,1,f +7758,59900,297,1,f +7758,59900,15,2,f +7758,59900,0,1,f +7758,60475a,71,1,f +7758,60476,0,1,f +7758,60581,2,2,f +7758,60583a,19,2,f +7758,60800b,2,2,f +7758,60897,71,8,f +7758,6134,0,5,f +7758,6141,47,1,f +7758,6141,2,2,f +7758,6141,41,5,f +7758,6141,27,12,f +7758,6141,1,1,f +7758,6141,71,2,f +7758,6141,4,1,f +7758,6141,46,1,f +7758,6179,5,2,f +7758,6180,5,1,f +7758,6205,5,1,f +7758,6231,15,3,f +7758,6231,71,2,f +7758,6256,191,1,f +7758,63864,71,2,f +7758,63965,70,1,f +7758,64644,297,1,f +7758,64644,308,2,f +7758,64647,182,2,f +7758,6541,15,1,f +7758,6587,28,1,f +7758,85984,27,2,f +7758,87079,15,1,f +7758,87079,26,4,f +7758,87087,0,1,f +7758,87580,1,2,f +7758,87580,70,1,f +7758,88072,19,2,f +7758,88072,71,2,f +7758,89523,19,1,f +7758,91405,322,1,f +7758,92438,19,1,f +7758,92438,2,1,f +7758,92456pr0054c01,78,1,f +7758,92456pr0057c01,84,1,f +7758,92690,71,1,f +7758,92820pr0007c01,379,1,f +7758,92842,0,1,f +7758,93091pr0004,323,1,f +7758,93352,308,1,f +7758,95347,0,1,f +7758,95827,191,4,f +7758,95828,191,4,f +7758,95829,191,4,f +7758,95831,191,4,f +7758,95832,191,4,f +7758,96874,25,1,t +7758,98138,29,1,f +7758,98138,179,2,f +7758,98138,15,1,f +7758,98284,70,1,f +7758,98388pr0005,322,1,f +7758,98393a,323,1,f +7758,98393b,323,1,f +7758,98393c,323,1,f +7758,98393d,323,1,f +7758,98393e,323,1,f +7758,98393f,323,1,f +7758,98393g,323,1,f +7758,98393h,323,1,f +7758,98393i,323,1,f +7758,98393j,323,1,f +7758,98397,71,2,f +7758,99780,71,2,f +7759,3626bpr0619,71,1,f +7759,88431,0,1,f +7759,88432,484,1,f +7759,88646,0,1,f +7759,970c00pr0405,72,1,f +7759,973pr1539c01,72,1,f +7760,10187,179,1,f +7760,10884,2,2,f +7760,11089,15,2,f +7760,11090,70,1,f +7760,11476,71,2,f +7760,14395,19,2,f +7760,14769,0,1,f +7760,15303,36,3,f +7760,15400,72,2,f +7760,15573,70,2,f +7760,15573,15,4,f +7760,15712,15,2,f +7760,15712,0,2,f +7760,16577,72,2,f +7760,18957pat0002,19,1,f +7760,18961pr01,320,1,f +7760,18962,19,4,f +7760,19044pr01,19,1,f +7760,19136pr0001,85,1,f +7760,2419,28,1,f +7760,2449,72,2,f +7760,2450,28,2,f +7760,2454a,72,12,f +7760,2456,71,1,f +7760,2456,0,1,f +7760,2540,2,2,f +7760,2570,70,1,f +7760,2654,72,3,f +7760,2780,0,2,f +7760,3001,72,3,f +7760,3004,72,2,f +7760,30043,0,1,f +7760,3009,72,2,f +7760,3010,19,3,f +7760,3010,71,1,f +7760,30115,4,1,f +7760,30134,0,1,f +7760,30136,19,14,f +7760,30173b,297,2,f +7760,30176,2,3,f +7760,3020,70,1,f +7760,3020,19,1,f +7760,3021,85,2,f +7760,3021,28,1,f +7760,3022,72,18,f +7760,3022,4,1,f +7760,3023,85,6,f +7760,3023,19,11,f +7760,30236,71,1,f +7760,3024,15,2,f +7760,3024,0,2,f +7760,3024,19,2,f +7760,3034,72,1,f +7760,3034,28,1,f +7760,3035,28,5,f +7760,3035,2,1,f +7760,30374,70,1,f +7760,30377,15,4,f +7760,3040b,72,10,f +7760,30526,71,1,f +7760,3062b,72,8,f +7760,3062b,33,1,f +7760,3062b,34,1,f +7760,3062b,36,1,f +7760,3062b,19,8,f +7760,3068b,19,2,f +7760,3069b,71,8,f +7760,3069b,85,2,f +7760,3176,72,4,f +7760,32000,4,2,f +7760,32013,71,2,f +7760,32028,28,2,f +7760,32062,4,2,f +7760,32073,71,1,f +7760,3245b,72,2,f +7760,32474,27,2,f +7760,32474,0,2,f +7760,3298,28,6,f +7760,3456,72,1,f +7760,3460,72,1,f +7760,3622,72,2,f +7760,3622,71,2,f +7760,3623,85,12,f +7760,3626c,28,2,f +7760,3626cpr1366,14,1,f +7760,3626cpr1367,14,1,f +7760,3626cpr1567,14,1,f +7760,3626cpr1573,14,1,f +7760,3675,28,4,f +7760,3678b,72,2,f +7760,3700,71,1,f +7760,3705,0,1,f +7760,3706,0,3,f +7760,3710,28,7,f +7760,3710,72,6,f +7760,3713,71,3,f +7760,3795,72,2,f +7760,3894,71,2,f +7760,3941,70,2,f +7760,3960pr0017b,28,1,f +7760,4032a,19,2,f +7760,4032a,4,2,f +7760,4032a,85,4,f +7760,4070,71,1,f +7760,41678,4,1,f +7760,43710,28,2,f +7760,43711,28,2,f +7760,43722,72,1,f +7760,43723,72,1,f +7760,4460b,72,1,f +7760,44728,72,4,f +7760,4733,72,2,f +7760,4738a,70,1,f +7760,4739a,70,1,f +7760,47753,85,2,f +7760,48336,0,2,f +7760,50231,0,1,f +7760,50950,72,4,f +7760,53451,15,20,f +7760,54200,85,10,f +7760,54383,28,1,f +7760,54384,28,1,f +7760,55236,288,5,f +7760,59443,72,4,f +7760,59900,0,2,f +7760,6003,2,4,f +7760,60470a,15,4,f +7760,60475b,71,4,f +7760,60477,72,2,f +7760,60478,0,6,f +7760,60581,72,1,f +7760,60752,28,3,f +7760,60808,72,2,f +7760,60897,72,14,f +7760,6091,19,2,f +7760,61252,0,13,f +7760,6126b,182,1,f +7760,6141,71,4,f +7760,6141,27,1,f +7760,6141,85,19,f +7760,63864,4,2,f +7760,63868,72,10,f +7760,63965,0,1,f +7760,64644,297,1,f +7760,64644,0,1,f +7760,64647,57,1,f +7760,64867,28,1,f +7760,73983,71,3,f +7760,85959pat0003,36,2,f +7760,87559,85,2,f +7760,87580,71,2,f +7760,87618,0,1,f +7760,88290,308,1,f +7760,90981,72,1,f +7760,92099,72,1,f +7760,92107,28,1,f +7760,92691,15,8,f +7760,92947,19,18,f +7760,92950,71,1,f +7760,93274,0,1,f +7760,96874,25,1,t +7760,970c00pr0766,85,1,f +7760,970c00pr0770,0,1,f +7760,970c00pr0773,2,1,f +7760,970c00pr0774,1,1,f +7760,973pr2851c01,14,1,f +7760,973pr2855c01,1,1,f +7760,973pr2856c01,2,1,f +7760,973pr2861c01,320,1,f +7760,973pr2901c01,85,1,f +7760,98133pr0011,2,1,f +7760,98133pr0015,1,1,f +7760,98138pr0014,297,1,f +7760,98139,297,2,f +7760,98283,28,12,f +7760,98560,72,2,f +7760,99778pr0007,85,1,f +7761,3023,4,2,f +7761,3023,47,1,f +7761,3024,47,1,f +7761,3069b,0,1,f +7761,3070b,0,1,t +7761,3070b,0,1,f +7761,4595,0,2,f +7761,54200,4,1,t +7761,54200,4,1,f +7761,59900,0,1,f +7761,6141,71,1,t +7761,6141,71,8,f +7761,6254,15,1,f +7764,3004,15,2,f +7764,30043,0,2,f +7764,3070b,15,2,f +7764,3626bpr0463,14,1,f +7764,41747,288,1,f +7764,41748,288,1,f +7764,4360,0,1,f +7764,4623,0,2,f +7764,52107,0,1,f +7764,53982,85,1,f +7764,54383,71,1,f +7764,54384,71,1,f +7764,6141,36,1,t +7764,6141,36,1,f +7764,970c00,288,1,f +7764,973pr1303c01,288,1,f +7765,3626bpr0325,14,1,f +7765,4006,0,1,f +7765,4485,4,1,f +7765,970c00,1,1,f +7765,973pr1156c01,1,1,f +7767,32533,36,2,f +7767,43093,1,1,f +7767,43093,1,1,t +7767,47304,179,1,f +7769,10247,72,1,f +7769,11211,19,1,f +7769,11211,71,2,f +7769,11477,272,2,f +7769,11477,14,4,f +7769,14181,15,2,f +7769,15068,272,4,f +7769,15207,15,2,f +7769,18904,288,1,f +7769,18905pr0001,288,1,f +7769,18906,288,1,f +7769,2412b,179,2,f +7769,2412b,71,4,f +7769,2419,2,1,f +7769,2431,19,1,f +7769,2446,15,1,f +7769,2447,40,1,f +7769,2540,71,4,f +7769,3001,71,1,f +7769,3001,15,2,f +7769,3002,19,1,f +7769,3003,4,2,f +7769,3004,1,2,f +7769,3010,4,4,f +7769,30157,71,2,f +7769,30176,2,1,f +7769,3020,14,1,f +7769,3020,72,3,f +7769,3020,15,2,f +7769,3020,28,1,f +7769,3022,4,1,f +7769,3023,36,2,f +7769,3023,33,1,f +7769,3023,4,2,f +7769,3023,46,4,f +7769,3023,14,4,f +7769,3030,72,1,f +7769,3031,72,1,f +7769,3031,70,1,f +7769,3032,14,2,f +7769,30332,0,1,f +7769,3069b,82,1,f +7769,3069b,4,2,f +7769,3069b,272,2,f +7769,32028,0,2,f +7769,3298,72,4,f +7769,3460,15,1,f +7769,3623,0,2,f +7769,3626cpr0914,14,1,f +7769,3626cpr1091,14,1,f +7769,3665,4,6,f +7769,3666,71,2,f +7769,3666,14,2,f +7769,3666,0,2,f +7769,3666,4,1,f +7769,3666,272,2,f +7769,3673,71,1,f +7769,3710,1,4,f +7769,3710,272,3,f +7769,3710,72,2,f +7769,3747a,15,2,f +7769,3747a,72,2,f +7769,3795,15,1,f +7769,3829c01,71,1,f +7769,3829c01,1,1,f +7769,3832,72,1,f +7769,3835,0,1,f +7769,3837,72,1,f +7769,3937,72,1,f +7769,3938,71,1,f +7769,3958,28,1,f +7769,3958,0,1,f +7769,41334,72,1,f +7769,4162,272,2,f +7769,4162,14,2,f +7769,4175,72,2,f +7769,4176,40,1,f +7769,41764,14,2,f +7769,41765,14,2,f +7769,41769,15,1,f +7769,41769,14,4,f +7769,41770,14,4,f +7769,41770,15,1,f +7769,42023,15,2,f +7769,4274,1,1,f +7769,43713,72,1,f +7769,43719,272,1,f +7769,4477,0,2,f +7769,45677,272,1,f +7769,48336,71,1,f +7769,4865a,72,2,f +7769,4871,14,2,f +7769,50373,15,1,f +7769,50745,15,1,f +7769,52031,4,2,f +7769,54200,72,2,f +7769,55981,71,4,f +7769,57783,40,1,f +7769,60479,15,1,f +7769,60481,4,2,f +7769,60897,4,2,f +7769,61409,0,2,f +7769,6141,36,2,f +7769,6141,72,4,f +7769,6141,34,2,f +7769,6141,14,5,f +7769,6141,1,4,f +7769,61482,71,1,f +7769,6215,14,1,f +7769,6231,72,2,f +7769,6239,15,1,f +7769,63082,71,1,f +7769,64567,0,1,f +7769,6636,72,1,f +7769,6636,28,2,f +7769,6636,4,2,f +7769,72454,72,1,f +7769,85984,72,3,f +7769,87079,272,1,f +7769,87585,70,1,f +7769,90194,72,1,f +7769,90194,15,1,f +7769,91988,72,2,f +7769,92280,0,2,f +7769,92402,0,4,f +7769,92590,28,1,f +7769,92593,4,4,f +7769,93274,71,1,f +7769,93348,272,1,f +7769,970c00,28,1,f +7769,970c00pr0293,272,1,f +7769,973pr1947bc01,272,1,f +7769,973pr2880c01,15,1,f +7769,98138,46,7,f +7769,98138,47,2,f +7769,98138,33,2,f +7769,98282,0,4,f +7769,99780,71,1,f +7769,99780,0,2,f +7769,99781,15,2,f +7770,132a,0,4,f +7770,3001a,14,3,f +7770,3001a,1,7,f +7770,3001a,15,25,f +7770,3001a,4,22,f +7770,3001a,0,2,f +7770,3002a,4,2,f +7770,3002a,1,2,f +7770,3002a,14,2,f +7770,3002a,15,4,f +7770,3003,0,3,f +7770,3003,4,12,f +7770,3003,1,2,f +7770,3003,14,2,f +7770,3003,15,12,f +7770,3004,4,4,f +7770,3004,0,5,f +7770,3004,1,1,f +7770,3004,14,4,f +7770,3004,15,4,f +7770,3005,14,2,f +7770,3007,4,2,f +7770,3009,15,2,f +7770,3010,4,2,f +7770,3010,15,2,f +7770,3035,1,1,f +7770,3081cc01,4,2,f +7770,3579,4,1,f +7770,3581,15,2,f +7770,3582,1,2,f +7770,453cc01,4,2,f +7770,700ed,2,1,f +7770,7039,4,4,f +7770,7049b,0,2,f +7770,7930,1,1,f +7771,2780,0,1,f +7771,30374,36,2,f +7771,32013,0,1,f +7771,32016,0,2,f +7771,32017,0,1,f +7771,32039,0,1,f +7771,32062,0,6,f +7771,32138,0,2,f +7771,32165,0,2,f +7771,32305,8,1,f +7771,32306,8,1,f +7771,32307,0,2,f +7771,32311,0,1,f +7771,32439a,21,2,f +7771,3705,0,2,f +7771,3707,0,1,f +7771,3713,7,1,f +7771,3749,7,1,f +7771,4274,7,2,f +7771,4519,0,2,f +7771,4716,0,1,f +7771,rb00168,0,1,f +7771,rb00182,0,1,f +7771,x209pb03,0,1,f +7773,2840c01,0,1,f +7773,3068b,14,1,f +7773,3068b,0,10,f +7773,3068b,4,1,f +7773,3068b,1,1,f +7776,2418b,33,1,f +7776,30014,0,1,f +7776,3004,0,1,f +7776,3005,0,2,f +7776,3010,0,1,f +7776,3032,0,1,f +7776,3626bpx101,14,1,f +7776,3633,0,3,f +7776,37,383,2,f +7776,3937,0,1,f +7776,412,57,2,f +7776,4150pa0,14,1,f +7776,4220,14,1,f +7776,4221,0,2,f +7776,59275,1,2,f +7776,6039,14,2,f +7776,6041,57,1,f +7776,6042,14,2,f +7776,6088,15,1,f +7776,6090,33,1,f +7776,6232,14,1,f +7776,970x001,1,1,f +7776,973px170c01,15,1,f +7778,10166pr0001,84,1,f +7778,3626cpr1338,179,1,f +7778,970c00pb347,70,1,f +7778,973pb1815c01,1,1,f +7779,3004,15,4,f +7779,3004,4,4,f +7779,3005,15,3,f +7779,3005,4,3,f +7779,3008,4,2,f +7779,3008,15,2,f +7779,3009,4,2,f +7779,3009,15,2,f +7779,3010,4,3,f +7779,3010,15,3,f +7780,4033,7,10,f +7780,4034,47,10,f +7781,3003,47,1,f +7781,3004,4,1,f +7781,3020,1,1,f +7781,3021,4,2,f +7781,3021,1,2,f +7781,3022,0,1,f +7781,3022,1,2,f +7781,3023,1,4,f +7781,3024,1,2,f +7781,3034,4,3,f +7781,3034,0,1,f +7781,3034,1,1,f +7781,3039,47,1,f +7781,3062a,47,1,f +7781,3068a,4,1,f +7781,3070a,4,1,f +7781,3137c01,0,1,f +7781,3139,0,2,f +7782,14226c21,0,2,f +7782,2340,15,2,f +7782,2412b,383,2,f +7782,2540,15,1,f +7782,2569,4,2,f +7782,2610,14,3,f +7782,298c02,15,1,f +7782,3001,7,1,f +7782,3003,0,5,f +7782,30033,8,1,f +7782,30089,14,1,f +7782,3009,15,3,f +7782,3009,1,4,f +7782,30162,0,1,f +7782,30180,0,2,f +7782,30194,8,1,f +7782,3022,4,1,f +7782,30236,4,1,f +7782,30237a,15,2,f +7782,3024,33,2,f +7782,30254,15,1,f +7782,3033,0,1,f +7782,30340,25,2,f +7782,3037,4,2,f +7782,3037pc0,14,1,f +7782,3039pr0005,15,1,f +7782,3040b,33,2,f +7782,3062b,14,1,f +7782,32083,0,1,f +7782,32086,34,1,f +7782,3297p11,0,1,f +7782,3626bp02,14,1,f +7782,3626bp04,14,1,f +7782,3626bpx11,14,1,f +7782,3829c01,4,1,f +7782,3901,0,1,f +7782,3939,34,1,f +7782,3962b,0,1,f +7782,4286,15,2,f +7782,4289,15,1,f +7782,4349,1,2,f +7782,4476b,15,1,f +7782,4485,0,2,f +7782,4599a,14,2,f +7782,4623,7,2,f +7782,4740,383,1,f +7782,6019,1,1,f +7782,6020,8,1,f +7782,6140,4,4,f +7782,6141,36,1,f +7782,6141,42,2,f +7782,6141,34,1,f +7782,71610,0,1,f +7782,970c00,0,3,f +7782,973px20c01,0,1,f +7782,973px67c01,0,1,f +7782,973px9c01,0,1,f +7788,32074c01,3,1,f +7788,76110c01,14,2,f +7788,rb00167,0,4,f +7788,rb00170,0,4,f +7789,4476b,0,6,f +7790,11153,0,8,f +7790,3020,322,2,f +7790,3023,25,7,f +7790,30414,71,2,f +7790,4081b,72,6,f +7790,44302b,72,2,f +7790,44567b,71,2,f +7790,54383,71,1,f +7790,54384,71,1,f +7790,98138,71,6,f +7791,10197,72,1,f +7791,10928,72,5,f +7791,11214,72,60,f +7791,11478,71,6,f +7791,11946,15,2,f +7791,11947,15,2,f +7791,13971,71,13,f +7791,14720,71,5,f +7791,15100,0,35,f +7791,15413,0,4,f +7791,15458,72,8,f +7791,15458,272,13,f +7791,15462,28,10,f +7791,16511,71,1,f +7791,16513,71,1,f +7791,18575,19,9,f +7791,18575,0,2,f +7791,18651,0,28,f +7791,18654,72,5,f +7791,18654,72,3,t +7791,18938,0,2,f +7791,18939,71,2,f +7791,18945,14,2,f +7791,18945,15,2,f +7791,18946,4,22,f +7791,18947,72,4,f +7791,18948,15,7,f +7791,22961,71,4,f +7791,23948,14,3,f +7791,24116,14,4,f +7791,24120,14,8,f +7791,24121,14,14,f +7791,2412b,272,8,f +7791,24316,70,4,f +7791,27091,9999,1,t +7791,2780,0,18,t +7791,2780,0,724,f +7791,2825,4,2,f +7791,3023,0,11,f +7791,3032,15,1,f +7791,30367c,72,16,f +7791,30367c,71,16,f +7791,30374,14,1,f +7791,3062b,72,40,f +7791,3062b,71,40,f +7791,32002,19,5,t +7791,32002,19,34,f +7791,32009,72,12,f +7791,32013,14,35,f +7791,32014,14,17,f +7791,32016,71,2,f +7791,32017,14,1,f +7791,32034,0,12,f +7791,32039,71,3,f +7791,32054,71,64,f +7791,32054,4,15,f +7791,32056,71,2,f +7791,32062,4,42,f +7791,32063,0,8,f +7791,32065,14,3,f +7791,32072,14,2,f +7791,32073,14,67,f +7791,32123b,14,4,t +7791,32123b,14,39,f +7791,32140,71,38,f +7791,32184,0,31,f +7791,32198,19,2,f +7791,32249,72,2,f +7791,32270,0,25,f +7791,32271,71,9,f +7791,32278,14,6,f +7791,32278,72,75,f +7791,32278,71,4,f +7791,32291,0,13,f +7791,32316,14,10,f +7791,32316,15,14,f +7791,32316,71,101,f +7791,32348,71,9,f +7791,32449,14,8,f +7791,32494,71,5,f +7791,32523,72,93,f +7791,32523,15,2,f +7791,32523,14,2,f +7791,32524,15,11,f +7791,32524,14,7,f +7791,32524,72,50,f +7791,32525,15,7,f +7791,32525,72,59,f +7791,32526,15,4,f +7791,32526,72,53,f +7791,32556,19,17,f +7791,32557,71,2,f +7791,3648b,72,2,f +7791,3673,71,19,f +7791,3673,71,5,t +7791,3701,71,1,f +7791,3705,0,12,f +7791,3706,4,5,f +7791,3707,0,7,f +7791,3708,0,1,f +7791,3713,4,7,t +7791,3713,4,53,f +7791,3737,4,3,f +7791,3749,19,3,f +7791,40490,71,27,f +7791,41239,71,18,f +7791,41677,15,18,f +7791,4185,72,32,f +7791,42003,71,51,f +7791,42610,71,5,f +7791,4274,71,2,t +7791,4274,71,39,f +7791,43093,1,162,f +7791,43857,1,4,f +7791,43857,14,30,f +7791,44294,71,11,f +7791,44809,71,2,f +7791,4519,71,39,f +7791,4716,71,1,f +7791,48989,71,12,f +7791,51739,71,1,f +7791,54200,47,22,f +7791,54200,71,1,t +7791,54200,47,2,t +7791,54200,71,2,f +7791,55013,72,9,f +7791,55615,71,24,f +7791,56145,71,4,f +7791,57520,0,8,f +7791,59426,72,9,f +7791,59443,14,51,f +7791,6020,0,4,f +7791,60483,71,26,f +7791,60483,25,3,f +7791,60484,71,15,f +7791,60485,14,14,f +7791,61254,0,1,f +7791,6141,47,1,t +7791,6141,47,2,f +7791,61903,71,2,f +7791,61904,72,2,f +7791,61927b,71,2,f +7791,6231,15,8,f +7791,62462,4,8,f +7791,62462,15,4,f +7791,63869,71,15,f +7791,64178,71,3,f +7791,64179,71,53,f +7791,64782,71,4,f +7791,64782,15,1,f +7791,6536,14,4,f +7791,6536,72,33,f +7791,6558,1,457,f +7791,6587,28,9,f +7791,6589,19,12,f +7791,6629,72,13,f +7791,6632,72,35,f +7791,6636,15,2,f +7791,6641,4,4,f +7791,76244,15,3,f +7791,84954,40,1,f +7791,87082,71,20,f +7791,87083,72,20,f +7791,87087,71,2,f +7791,87407,71,19,f +7791,87408,0,6,f +7791,87761,0,1,f +7791,87994,71,1,f +7791,87994,71,1,t +7791,88323,0,88,f +7791,88323,72,116,f +7791,92906,72,5,f +7791,92907,0,4,f +7791,94925,71,22,f +7791,98138,15,4,f +7791,98138,15,1,t +7791,99008,19,17,f +7791,99009,71,2,f +7791,99010,0,2,f +7791,99773,71,8,f +7792,19859pat0011,47,1,f +7792,20595,40,1,f +7792,3626cpr1730,323,1,f +7792,88646,0,1,f +7792,973pr3114c01,378,1,f +7793,2356,0,1,f +7793,2412b,19,8,f +7793,2412b,72,2,f +7793,2431,19,8,f +7793,2431,72,10,f +7793,2431,70,8,f +7793,2444,71,11,f +7793,2445,0,5,f +7793,2449,72,1,f +7793,2450,72,2,f +7793,2653,0,2,f +7793,2654,182,2,f +7793,2780,0,1,t +7793,2780,0,4,f +7793,3001,15,3,f +7793,3002,71,2,f +7793,3003,0,2,f +7793,3004,28,2,f +7793,3005,72,3,f +7793,3020,72,10,f +7793,3021,19,6,f +7793,3022,72,9,f +7793,30229,72,1,f +7793,3023,72,8,f +7793,3023,28,16,f +7793,3030,0,2,f +7793,3031,72,2,f +7793,3036,72,2,f +7793,30374,42,2,f +7793,30374,41,3,f +7793,30374,19,1,f +7793,30376,19,1,f +7793,30377,19,1,f +7793,30377,72,2,f +7793,30377,19,1,t +7793,30377,72,1,t +7793,30382,72,2,f +7793,30383,0,4,f +7793,3039,72,6,f +7793,3040b,72,2,f +7793,30414,0,4,f +7793,30503,72,2,f +7793,30553,0,4,f +7793,3062b,19,6,f +7793,3062b,272,2,f +7793,3069b,182,2,f +7793,3069b,70,2,f +7793,3069b,19,4,f +7793,3069b,0,7,f +7793,32000,0,6,f +7793,32001,0,4,f +7793,32013,0,2,f +7793,32028,0,2,f +7793,32062,4,2,f +7793,32064b,71,2,f +7793,32065,0,1,f +7793,32123b,71,2,f +7793,32123b,71,1,t +7793,3460,0,1,f +7793,3623,0,11,f +7793,3665,72,1,f +7793,3666,72,8,f +7793,3679,71,1,f +7793,3680,0,1,f +7793,3710,72,6,f +7793,3794a,0,2,f +7793,3795,70,7,f +7793,3832,19,1,f +7793,3894,0,4,f +7793,3941,72,1,f +7793,3942c,72,2,f +7793,3957a,0,1,f +7793,4032a,72,1,f +7793,4032a,19,6,f +7793,41677,71,2,f +7793,41767,72,1,f +7793,41768,72,1,f +7793,41769,70,1,f +7793,41769,72,6,f +7793,41770,72,6,f +7793,41770,70,1,f +7793,4185,19,2,f +7793,41854,0,1,f +7793,42023,0,2,f +7793,4282,71,1,f +7793,43093,1,6,f +7793,43713,0,2,f +7793,44676,72,2,f +7793,4477,71,2,f +7793,4519,71,2,f +7793,45301,72,1,f +7793,45590,0,1,f +7793,4595,71,1,f +7793,4599b,0,8,f +7793,4623,72,1,f +7793,4697b,71,2,t +7793,4697b,71,4,f +7793,4735,71,1,f +7793,47397,72,2,f +7793,47398,72,2,f +7793,4740,72,1,f +7793,4740,41,2,f +7793,47753,72,1,f +7793,48336,71,4,f +7793,4871,0,1,f +7793,48729a,72,1,t +7793,48729b,72,1,t +7793,48729b,72,1,f +7793,54200,272,1,t +7793,54200,272,2,f +7793,58247,0,1,f +7793,59230,19,1,f +7793,59230,19,1,t +7793,59900,0,2,f +7793,59900,182,3,f +7793,6005,72,1,f +7793,60470b,71,2,f +7793,60475a,0,2,f +7793,60479,0,2,f +7793,60897,0,5,f +7793,6091,72,7,f +7793,6091,19,1,f +7793,61184,71,4,f +7793,61193,72,1,f +7793,61409,72,4,f +7793,6141,41,1,t +7793,6141,0,3,t +7793,6141,182,1,t +7793,6141,0,15,f +7793,6141,182,4,f +7793,6141,47,1,t +7793,6141,41,4,f +7793,6141,47,2,f +7793,61678,19,2,f +7793,61678,0,4,f +7793,61678,72,6,f +7793,6180,0,2,f +7793,6233,72,2,f +7793,63965,0,2,f +7793,64567,80,5,f +7793,64808pr0001,484,1,f +7793,6541,0,1,f +7793,6558,1,1,f +7793,85943,72,1,f +7793,85970,72,4,f +7793,85984,72,2,f +7793,87082,71,1,f +7793,87083,72,2,f +7793,87087,71,10,f +7793,87566pr01,72,1,f +7793,87567pr01,72,1,f +7793,87568pr01l,72,2,f +7793,87568pr01r,72,2,f +7793,87569pr01,19,2,f +7793,87606pr0001,40,1,f +7793,970c00,28,1,f +7793,973pr1615c01,19,1,f +7795,12602,1,1,f +7795,14013,71,1,f +7795,17940,15,2,f +7795,18454,41,2,f +7795,2300,14,1,f +7795,3011,27,1,f +7795,3011,1,1,f +7795,31023,1,4,f +7795,31041,25,1,f +7795,31110,15,1,f +7795,3437,1,1,f +7795,3437,4,1,f +7795,3437,27,3,f +7795,4066,15,12,f +7795,40666,4,10,f +7795,41169c01,71,1,f +7795,42026,0,1,f +7795,42030,0,1,f +7795,44524,212,1,f +7795,44524,4,1,f +7795,44524,10,1,f +7795,47575pr0005,15,1,f +7795,4895,14,3,f +7795,51260,15,4,f +7795,51261,15,2,f +7795,51262,212,2,f +7795,51383,15,4,f +7795,53916,15,2,f +7795,58233,15,1,f +7795,58498,0,1,f +7795,60809,15,1,f +7795,61310,212,3,f +7795,61310,4,1,f +7795,61318,71,1,f +7795,62873,41,2,f +7795,6424,25,1,f +7795,6424,15,1,f +7795,6427,1,1,f +7795,6461,15,1,f +7795,6473,27,1,f +7795,6478,14,3,f +7795,6510,5,1,f +7795,75113pr0005,4,1,f +7795,85610,15,1,f +7795,87084,14,5,f +7795,90265,1,1,f +7795,92925,71,1,f +7795,94301,0,1,f +7795,94901,71,1,f +7795,94902,15,1,f +7795,95431,15,1,f +7795,95443,15,1,f +7795,95447,15,1,f +7795,95920,15,3,f +7795,96151,10,1,f +7795,98457,15,3,f +7796,2436,4,1,f +7796,30165,4,3,f +7796,30165,0,1,f +7796,3020,0,3,f +7796,3022,4,2,f +7796,3023,4,2,f +7796,3024,15,2,f +7796,3034,0,1,f +7796,3034,14,1,f +7796,3068b,0,1,f +7796,3068b,4,2,f +7796,32000,4,1,f +7796,32028,0,2,f +7796,3460,4,2,f +7796,4216,4,3,f +7796,4600,0,5,f +7796,54200,4,8,f +7796,54200,4,1,t +7796,60212,4,5,f +7796,6141,0,1,t +7796,6141,14,1,f +7796,6141,71,1,t +7796,6141,14,1,t +7796,6141,71,2,f +7796,6141,0,2,f +7796,87087,4,4,f +7796,93593,0,10,f +7797,11203pr0013,29,1,f +7797,11213,191,1,f +7797,11816pr0001,84,1,f +7797,14210,15,1,f +7797,14395,70,2,f +7797,14769,297,1,f +7797,14769,323,3,f +7797,14769,29,4,f +7797,15395,322,1,f +7797,15470,29,8,f +7797,15672,15,8,f +7797,16577,15,4,f +7797,18674,15,1,f +7797,18853,29,1,f +7797,2343,47,2,f +7797,23969,322,2,f +7797,2412b,15,6,f +7797,24131,26,1,f +7797,24131,322,1,f +7797,24131,191,1,f +7797,2417,2,1,f +7797,2423,2,2,f +7797,2454a,70,1,f +7797,2454a,323,4,f +7797,2456,19,4,f +7797,2456,15,2,f +7797,2458,15,2,f +7797,2780,0,2,f +7797,2817,71,2,f +7797,3001,15,1,f +7797,3002,70,2,f +7797,3003,70,5,f +7797,3020,26,4,f +7797,3020,191,1,f +7797,3022,19,1,f +7797,3022,15,1,f +7797,3023,182,6,f +7797,3023,191,5,f +7797,3031,19,1,f +7797,30357,0,1,f +7797,3036,27,1,f +7797,30367c,322,1,f +7797,30565,0,1,f +7797,3062b,0,3,f +7797,3069b,26,4,f +7797,3069bpr0158,323,1,f +7797,32524,15,2,f +7797,33172,25,1,f +7797,33183,10,1,f +7797,33291,10,3,f +7797,33291,4,12,f +7797,33291,31,1,f +7797,3623,2,2,f +7797,3623,70,2,f +7797,3626b,4,1,f +7797,3710,191,3,f +7797,3710,15,1,f +7797,3941,70,1,f +7797,50950,26,4,f +7797,6003,27,2,f +7797,60474,15,1,f +7797,61252,15,7,f +7797,6141,15,2,f +7797,61485,71,1,f +7797,6266,15,1,f +7797,63965,15,1,f +7797,6636,191,2,f +7797,87081,70,1,f +7797,87580,26,5,f +7797,87994,15,1,f +7797,90370pr0005,0,1,f +7797,92438,27,1,f +7797,92456pr0060c01,84,1,f +7797,92692,15,1,f +7797,92818pr0006c01,323,1,f +7797,93352,308,1,f +7797,98138,45,6,f +7797,98138,45,1,t +7797,98138,41,6,f +7797,98138,182,2,f +7797,98387pr0001,15,1,f +7797,98388pr0002,31,1,f +7797,98560,308,1,f +7797,99206,15,1,f +7799,30151a,47,1,f +7799,3021,322,1,f +7799,3021,85,1,f +7799,4536,15,2,f +7799,54200,14,1,t +7799,54200,14,1,f +7799,59900,0,1,f +7799,59900,15,1,f +7799,6141,47,3,f +7799,6141,47,1,t +7799,87580,70,1,f +7799,92410,15,1,f +7801,2412b,71,2,f +7801,2412b,0,2,f +7801,2432,14,2,f +7801,2432,15,2,f +7801,2436,71,2,f +7801,2456,4,2,f +7801,2456,15,2,f +7801,2456,1,2,f +7801,2456,14,2,f +7801,2479,0,2,f +7801,2877,15,4,f +7801,2877,71,4,f +7801,2926,0,2,f +7801,298c02,14,2,f +7801,3001,14,6,f +7801,3001,2,3,f +7801,3001,15,6,f +7801,3001,1,6,f +7801,3001,0,3,f +7801,3001,4,6,f +7801,3001,73,2,f +7801,3002,14,8,f +7801,3002,0,4,f +7801,3002,4,8,f +7801,3002,1,8,f +7801,3002,2,4,f +7801,3002,15,8,f +7801,3002,73,2,f +7801,3003,15,16,f +7801,3003,2,8,f +7801,3003,4,16,f +7801,3003,0,8,f +7801,3003,14,16,f +7801,3003,1,16,f +7801,3003,73,4,f +7801,3004,14,20,f +7801,3004,15,20,f +7801,3004,2,10,f +7801,3004,1,20,f +7801,3004,73,5,f +7801,3004,4,20,f +7801,3004,0,10,f +7801,3005,73,6,f +7801,3005,0,6,f +7801,3005,15,10,f +7801,3005,2,6,f +7801,3005,4,10,f +7801,3005,1,10,f +7801,3005,14,10,f +7801,3007,14,1,f +7801,3007,1,1,f +7801,3007,15,1,f +7801,3007,4,1,f +7801,3008,14,2,f +7801,3008,4,2,f +7801,3008,15,2,f +7801,3008,1,2,f +7801,3009,14,4,f +7801,3009,4,4,f +7801,3009,15,4,f +7801,3009,1,4,f +7801,3010,73,4,f +7801,3010,15,3,f +7801,3010,0,2,f +7801,3010,2,2,f +7801,3010,1,3,f +7801,3010,4,3,f +7801,3010,14,3,f +7801,3020,71,2,f +7801,3020,15,2,f +7801,3020,14,2,f +7801,3020,4,2,f +7801,3021,71,2,f +7801,3021,14,2,f +7801,3022,14,2,f +7801,3022,15,2,f +7801,3022,4,4,f +7801,3022,71,2,f +7801,3023,71,4,f +7801,3029,14,1,f +7801,3031,14,1,f +7801,3031,4,1,f +7801,3033,14,1,f +7801,3034,71,2,f +7801,3034,14,2,f +7801,3034,4,2,f +7801,30388,14,2,f +7801,30389a,14,1,f +7801,3039,47,2,f +7801,3039,2,4,f +7801,3039,1,4,f +7801,3039,14,2,f +7801,3039,33,2,f +7801,3039,71,2,f +7801,30391,0,4,f +7801,30394,14,1,f +7801,30395,72,1,f +7801,30396,14,1,f +7801,3040b,14,4,f +7801,3040b,2,4,f +7801,3040b,1,4,f +7801,3040b,71,4,f +7801,30592,71,1,f +7801,30602,4,2,f +7801,30603,0,2,f +7801,3062b,4,4,f +7801,3062b,15,4,f +7801,30648,0,4,f +7801,3065,47,2,f +7801,3139,0,4,f +7801,3176,0,2,f +7801,3298,1,2,f +7801,3298,4,4,f +7801,3403c01,71,1,f +7801,3622,15,4,f +7801,3622,4,4,f +7801,3622,1,4,f +7801,3622,0,4,f +7801,3622,14,4,f +7801,3622,2,4,f +7801,3660,71,2,f +7801,3660,14,2,f +7801,3660,4,2,f +7801,3660,1,2,f +7801,3665,4,4,f +7801,3665,71,4,f +7801,3665,1,4,f +7801,3665,14,4,f +7801,3666,71,2,f +7801,3710,71,2,f +7801,3788,0,2,f +7801,3795,15,2,f +7801,3795,4,2,f +7801,3823,41,2,f +7801,3823,47,2,f +7801,3832,4,2,f +7801,3937,0,2,f +7801,3957a,71,2,f +7801,4070,15,2,f +7801,4070,14,2,f +7801,4080,14,1,f +7801,4081b,4,2,f +7801,4081b,0,2,f +7801,4083,0,2,f +7801,40996,33,1,f +7801,4175,0,2,f +7801,4202,71,1,f +7801,42022,15,2,f +7801,42022,4,2,f +7801,4286,4,4,f +7801,43719,72,1,f +7801,43719,4,1,f +7801,44126,4,2,f +7801,4488,0,4,f +7801,4589,4,2,f +7801,4600,71,3,f +7801,4623,0,2,f +7801,4624,71,4,f +7801,4733,15,2,f +7801,4864b,47,4,f +7801,4865a,71,4,f +7801,4865a,33,2,f +7801,4865a,47,2,f +7801,4873,0,2,f +7801,52036,72,1,f +7801,55981,71,8,f +7801,6014b,71,10,f +7801,6015,0,10,f +7801,6134,71,2,f +7801,6141,36,4,f +7801,6141,46,4,f +7801,6215,15,4,f +7801,6215,4,4,f +7801,6232,15,4,f +7801,6249,71,4,f +7803,30000,72,24,f +7803,3139,0,72,f +7803,3483,0,72,f +7803,4600,0,36,f +7803,4624,15,72,f +7803,56902,71,72,f +7803,6249,72,12,f +7804,3001,14,2,f +7804,3002,1,1,f +7804,3003,4,1,f +7804,3003,1,1,f +7804,3003,14,2,f +7804,3003pe2,14,1,f +7804,4727,2,1,f +7806,2377,0,2,f +7806,2420,8,4,f +7806,2431,8,2,f +7806,2431,7,2,f +7806,2434,7,1,f +7806,2877,135,50,f +7806,2878c01,7,4,f +7806,2920,0,2,f +7806,2921,7,4,f +7806,3002,6,2,f +7806,3004,6,7,f +7806,3004,0,4,f +7806,3004,15,2,f +7806,30043,0,2,f +7806,3005,7,16,f +7806,30055,6,2,f +7806,3010,7,1,f +7806,30136,8,16,f +7806,3020,8,4,f +7806,3020,7,2,f +7806,3021,8,2,f +7806,3022,7,4,f +7806,3022,8,3,f +7806,3023,8,8,f +7806,3023,7,8,f +7806,3023,15,1,f +7806,3024,7,8,f +7806,3029,7,2,f +7806,3031,8,2,f +7806,3032,7,1,f +7806,3034,7,2,f +7806,30367b,7,2,f +7806,30414,7,2,f +7806,3068b,7,4,f +7806,3069b,8,2,f +7806,3069bpr0099,15,5,f +7806,3245b,7,10,f +7806,3622,7,8,f +7806,3710,7,5,f +7806,3795,7,2,f +7806,3795,8,4,f +7806,3899,14,2,f +7806,3941,7,2,f +7806,4022,7,2,f +7806,4025,0,2,f +7806,4079,4,2,f +7806,4093a,8,1,f +7806,4162,8,8,f +7806,4162,7,4,f +7806,4181,7,4,f +7806,4182,7,4,f +7806,4183,47,8,f +7806,4477,8,4,f +7806,4623,0,2,f +7806,4735,0,2,f +7806,4862,41,2,f +7806,4864b,47,6,f +7806,4865a,6,2,f +7806,6081,7,2,f +7806,6091,8,4,f +7806,6091,7,8,f +7806,6111,7,2,f +7806,6141,46,1,t +7806,6141,46,2,f +7806,6215,7,32,f +7806,6636,7,2,f +7806,73092,0,2,f +7807,700ed,7,1,f +7807,700ed,15,1,f +7811,14769,29,1,f +7811,30153,41,1,f +7811,3032,19,1,f +7811,3062b,47,1,f +7811,3062b,46,6,f +7811,3245c,30,1,f +7811,33291,191,2,f +7811,3710,26,1,f +7811,3795,31,1,f +7811,3852b,322,1,f +7811,4032b,14,1,f +7811,4032b,15,1,f +7811,4536,29,1,f +7811,87544,15,1,f +7811,92410,30,1,f +7811,93094,5,1,f +7812,281,14,1,f +7812,3001,14,9,f +7812,3001,4,2,f +7812,3002,1,2,f +7812,3002,4,2,f +7812,3002,14,10,f +7812,3003,1,5,f +7812,3003,15,5,f +7812,3003,4,5,f +7812,3003,14,21,f +7812,3004,15,10,f +7812,3004,1,3,f +7812,3004,14,4,f +7812,3010,15,4,f +7812,3027,4,1,f +7812,3031,1,1,f +7812,3035,14,1,f +7812,3035,15,3,f +7812,3888ac01,1,1,f +7812,3980c03,4,4,f +7812,691,15,1,f +7812,692,15,1,f +7812,fab4g,-1,1,f +7812,fab7h,9999,1,f +7812,x610c02,15,2,f +7812,x655c03,4,1,f +7812,x661c04,4,1,f +7812,x837,4,1,f +7812,x838,4,1,f +7813,3001,25,12,f +7813,3002,25,16,f +7813,3003,25,7,f +7813,3004,2,3,f +7813,3004,0,4,f +7813,3007,25,9,f +7813,3039,2,2,f +7813,3039,25,6,f +7813,3298,25,6,f +7813,3660,25,18,f +7813,3747b,25,4,f +7814,2348b,33,3,f +7814,2349a,15,3,f +7814,2357,4,2,f +7814,2362a,15,1,f +7814,2377,15,2,f +7814,2399,4,1,f +7814,2399,1,1,f +7814,2412b,1,1,f +7814,2412b,4,3,f +7814,2412b,15,1,f +7814,2413,15,6,f +7814,2415,7,4,f +7814,2420,4,2,f +7814,2420,15,2,f +7814,2420,1,4,f +7814,2431,15,1,f +7814,2431,4,1,f +7814,2431p06,1,4,f +7814,2431p51,4,4,f +7814,2432,4,1,f +7814,2432,15,1,f +7814,2437,41,2,f +7814,2445,4,2,f +7814,2446px3,4,1,f +7814,2446px6,1,1,f +7814,2447,41,2,f +7814,2655,15,2,f +7814,2780,0,2,f +7814,2873,15,2,f +7814,2873,4,2,f +7814,298c02,4,3,f +7814,3002,1,1,f +7814,3003,1,1,f +7814,3004,15,2,f +7814,3004,0,1,f +7814,3005,15,6,f +7814,3010,1,3,f +7814,3020,1,2,f +7814,3020,15,4,f +7814,3020,4,3,f +7814,3021,4,4,f +7814,3021,15,2,f +7814,3021,1,1,f +7814,3022,4,6,f +7814,3022,2,1,f +7814,3022,1,3,f +7814,3023,0,1,f +7814,3023,4,2,f +7814,3023,15,14,f +7814,3023,1,5,f +7814,3024,46,6,f +7814,3024,4,1,f +7814,3024,36,4,f +7814,3024,1,2,f +7814,3024,15,8,f +7814,3031,4,3,f +7814,3032,15,1,f +7814,3034,2,1,f +7814,3034,4,2,f +7814,3037,4,2,f +7814,3037,15,1,f +7814,3039p12,4,1,f +7814,3039pc5,7,1,f +7814,3040b,15,2,f +7814,3062b,4,1,f +7814,3069b,1,1,f +7814,3069b,15,3,f +7814,3070b,4,2,f +7814,3139,0,8,f +7814,3188,15,1,f +7814,3190,15,1,f +7814,3460,4,2,f +7814,3460,1,2,f +7814,3464,4,2,f +7814,3464,47,4,f +7814,3587,15,2,f +7814,3622,1,3,f +7814,3623,15,1,f +7814,3623,4,2,f +7814,3626bp7e,14,2,f +7814,3626bpb0175,14,2,f +7814,3626bpr0001,14,2,f +7814,3660,1,3,f +7814,3665,1,2,f +7814,3666,15,4,f +7814,3666,1,2,f +7814,3673,7,1,f +7814,3700,1,2,f +7814,3705,0,1,f +7814,3710,1,4,f +7814,3710,4,2,f +7814,3710,15,2,f +7814,3730,4,1,f +7814,3731,4,1,f +7814,3788,1,3,f +7814,3794a,15,2,f +7814,3795,1,1,f +7814,3821,15,1,f +7814,3822,15,1,f +7814,3829c01,1,1,f +7814,3829c01,15,2,f +7814,3832,15,1,f +7814,3832,0,1,f +7814,3900,15,1,f +7814,3901,0,1,f +7814,3935,15,2,f +7814,3936,15,2,f +7814,3942b,4,1,f +7814,3942bpr01,15,1,f +7814,3957a,0,2,f +7814,3957a,4,5,f +7814,3962b,0,1,f +7814,3963,7,1,f +7814,4083,4,2,f +7814,4143,7,1,f +7814,4185,7,1,f +7814,4211,1,1,f +7814,4213,15,1,f +7814,4214,15,1,f +7814,4215a,41,1,f +7814,4265a,7,1,f +7814,4265a,7,1,t +7814,4266,4,1,f +7814,4282,2,1,f +7814,4315,15,1,f +7814,4315,4,2,f +7814,4466,7,1,f +7814,4467,7,1,f +7814,4477,15,1,f +7814,4477,4,1,f +7814,4485,4,1,f +7814,4495b,14,4,f +7814,4594,41,2,f +7814,4600,0,4,f +7814,4616b,1,1,f +7814,4617b,14,2,f +7814,4624,7,4,f +7814,4625,15,4,f +7814,476,15,1,f +7814,4854,15,1,f +7814,4855,15,1,f +7814,4859,4,1,f +7814,4859,1,1,f +7814,4859,15,1,f +7814,4862,41,2,f +7814,4864a,15,4,f +7814,4865a,4,2,f +7814,4865a,41,1,f +7814,4871,15,1,f +7814,6014a,15,4,f +7814,6015,0,4,f +7814,6019,15,4,f +7814,6069,4,1,f +7814,6079,15,3,f +7814,6081,15,2,f +7814,6093,0,2,f +7814,6141,36,2,f +7814,6141,36,1,t +7814,970c00,4,2,f +7814,970c00,0,2,f +7814,970c00,1,1,f +7814,970c00,7,1,f +7814,973c01,1,1,f +7814,973p18c01,1,1,f +7814,973p70c01,6,1,f +7814,973p73c01,2,1,f +7814,973pb0061c01,14,1,f +7814,973px2c01,1,1,f +7817,122c01,7,3,f +7817,3020,7,2,f +7817,3024,34,2,f +7817,3024,36,4,f +7817,3034,7,1,f +7817,3039p34,7,1,f +7817,3040b,7,2,f +7817,3626apr0001,14,1,f +7817,3641,0,6,f +7817,3666,7,2,f +7817,3788,7,3,f +7817,3829c01,7,1,f +7817,3830,7,2,f +7817,3831,7,2,f +7817,3838,4,1,f +7817,3842a,4,1,f +7817,3957a,7,1,f +7817,3960,7,2,f +7817,3962a,0,1,f +7817,3963,7,2,f +7817,4083,7,1,f +7817,4085a,7,1,f +7817,970c00,4,1,f +7817,973p90c02,4,1,f +7819,24793,0,1,f +7819,26100pr0112,15,1,f +7819,3626cpr1885,31,1,f +7819,88646,0,1,f +7819,92290,297,1,f +7819,973pr3324c01,0,1,f +7821,22969,80,4,f +7821,2412b,36,1,f +7821,2736,71,8,f +7821,2780,0,173,f +7821,2780,0,3,t +7821,2825,0,6,f +7821,2825,4,2,f +7821,2850a,71,10,f +7821,2851,14,10,f +7821,2852,71,10,f +7821,2853,71,2,f +7821,2854,72,4,f +7821,2905,71,19,f +7821,3020,0,3,f +7821,3021,0,2,f +7821,3022,0,2,f +7821,3038,0,2,f +7821,3040b,0,2,f +7821,3045,0,2,f +7821,3069b,4,1,f +7821,32000,0,12,f +7821,32002,72,1,t +7821,32002,72,9,f +7821,32009,4,4,f +7821,32009,0,2,f +7821,32013,4,6,f +7821,32014,4,2,f +7821,32015,4,4,f +7821,32016,4,4,f +7821,32016,0,4,f +7821,32017,0,10,f +7821,32034,0,8,f +7821,32039,0,6,f +7821,32039,14,4,f +7821,32054,0,2,f +7821,32054,71,2,f +7821,32054,4,20,f +7821,32056,4,12,f +7821,32056,71,12,f +7821,32062,0,4,f +7821,32062,4,48,f +7821,32069,0,2,f +7821,32073,71,20,f +7821,32123b,71,1,t +7821,32123b,71,5,f +7821,32138,0,1,f +7821,32140,4,11,f +7821,32140,71,10,f +7821,32140,0,4,f +7821,32175,0,2,f +7821,32184,0,12,f +7821,32184,71,9,f +7821,32184,4,12,f +7821,32192,4,2,f +7821,32199,4,4,f +7821,32202,4,3,f +7821,32235,4,4,f +7821,32249,4,2,f +7821,32269,71,2,f +7821,32270,71,4,f +7821,32278,4,5,f +7821,32278,0,10,f +7821,32278,71,4,f +7821,32291,4,1,f +7821,32291,0,4,f +7821,32293,0,6,f +7821,32294,0,16,f +7821,32296,0,4,f +7821,32316,0,6,f +7821,32316,4,5,f +7821,32333,71,2,f +7821,32449,14,2,f +7821,32449,4,4,f +7821,32449,0,2,f +7821,32523,4,6,f +7821,32524,0,7,f +7821,32524,4,11,f +7821,32525,4,2,f +7821,32525,0,8,f +7821,32526,4,14,f +7821,32526,0,4,f +7821,32527,0,2,f +7821,32528,0,2,f +7821,32534,4,2,f +7821,32535,4,2,f +7821,32556,71,14,f +7821,3298,0,2,f +7821,33299a,0,4,f +7821,3647,71,1,t +7821,3647,71,1,f +7821,3705,0,23,f +7821,3706,0,7,f +7821,3707,0,4,f +7821,3708,0,2,f +7821,3710,0,1,f +7821,3713,71,9,f +7821,3713,71,1,t +7821,3737,0,2,f +7821,3743,0,7,f +7821,3749,19,2,f +7821,3832,0,1,f +7821,4019,71,1,f +7821,40490,4,5,f +7821,40490,0,2,f +7821,4095,15,1,f +7821,41239,0,3,f +7821,41239,4,3,f +7821,4162,4,2,f +7821,41669,4,4,f +7821,41677,4,30,f +7821,41677,15,4,f +7821,41677,0,6,f +7821,41678,0,4,f +7821,41678,4,7,f +7821,42003,4,15,f +7821,4274,71,23,f +7821,4274,71,1,t +7821,43093,1,60,f +7821,43857,4,7,f +7821,44126,0,1,f +7821,44294,71,11,f +7821,44350,4,3,f +7821,44351,4,3,f +7821,44352,15,1,f +7821,44352,4,6,f +7821,44353,4,6,f +7821,44353,15,1,f +7821,4519,71,35,f +7821,47712,4,3,f +7821,47713,4,3,f +7821,50451,15,2,f +7821,59426,72,6,f +7821,6179,4,2,f +7821,6180,4,2,f +7821,6536,4,26,f +7821,6536,0,14,f +7821,6536,71,8,f +7821,6538b,71,10,f +7821,6538b,0,9,f +7821,6558,0,100,f +7821,6573,72,1,f +7821,6587,72,10,f +7821,6589,71,3,f +7821,6628,0,4,f +7821,6629,4,4,f +7821,6632,0,10,f +7821,6632,4,2,f +7821,6636,15,2,f +7821,75535,4,2,f +7821,75535,0,2,f +7821,75c23,4,1,f +7821,76537,14,4,f +7821,78c05,179,4,f +7821,78c07,179,2,f +7821,78c11,179,4,f +7821,9244,71,4,f +7822,2342,3,1,f +7822,2447,42,1,f +7822,298c01,0,2,f +7822,30038,8,1,f +7822,3004,3,1,f +7822,30194,8,1,f +7822,3022,0,1,f +7822,30303,8,1,f +7822,30304,8,1,f +7822,3031,8,1,f +7822,30385,42,1,f +7822,3039,7,2,f +7822,3039px15,3,1,f +7822,3048c,7,2,f +7822,3049b,8,1,f +7822,3069bpr0090,8,1,f +7822,3626bpb0106,14,1,f +7822,3794a,7,1,f +7822,3841,8,1,f +7822,3962b,0,1,f +7822,4081b,0,4,f +7822,4085c,14,4,f +7822,4735,7,1,f +7822,4740,8,1,f +7822,6141,42,1,t +7822,6141,57,2,f +7822,6141,42,3,f +7822,970c00,1,1,f +7822,973pb0044c01,1,1,f +7823,2431,4,2,f +7823,3005,0,4,f +7823,3021,1,4,f +7823,3021,14,1,f +7823,3022,19,1,f +7823,3023,0,4,f +7823,3023,19,2,f +7823,3023,1,1,f +7823,3024,19,3,f +7823,3024,15,4,f +7823,3024,14,1,f +7823,3069b,1,2,f +7823,3070b,1,1,f +7823,3070b,4,1,f +7823,3623,1,2,f +7823,3623,15,2,f +7823,3665,15,2,f +7823,3700,1,2,f +7823,3794a,19,1,f +7823,3794a,1,3,f +7823,4081b,0,3,f +7823,4274,7,4,f +7823,4275b,1,2,f +7823,4275b,0,1,f +7823,4276b,1,2,f +7823,6141,14,2,f +7823,6541,1,2,f +7824,3624,1,1,f +7824,3626bpr0270,14,1,f +7824,3962b,0,1,f +7824,970c00,72,1,f +7824,973pr1240c01,1,1,f +7827,2346,0,5,f +7827,2420,4,6,f +7827,2436,0,1,f +7827,2569,0,1,f +7827,2717,1,1,f +7827,2730,4,2,f +7827,2780,0,4,f +7827,2790,7,1,f +7827,2791,7,1,f +7827,2792,0,1,f +7827,3020,4,4,f +7827,3023,4,4,f +7827,3024,4,2,f +7827,3482,15,5,f +7827,3623,0,2,f +7827,3647,7,1,f +7827,3651,7,4,f +7827,3666,4,3,f +7827,3673,7,12,f +7827,3700,4,2,f +7827,3700,0,3,f +7827,3701,4,4,f +7827,3701,0,2,f +7827,3706,0,2,f +7827,3707,0,3,f +7827,3709,4,2,f +7827,3709,0,2,f +7827,3710,0,6,f +7827,3713,7,6,f +7827,3737,0,1,f +7827,3749,7,7,f +7827,3894,0,4,f +7827,3894,4,3,f +7827,3895,0,2,f +7827,4085c,4,2,f +7827,4150p01,15,2,f +7827,4185,7,1,f +7827,4261,7,2,f +7827,4262,4,1,f +7827,4265a,7,11,f +7827,4273b,7,4,f +7827,4442,0,1,f +7827,4519,0,5,f +7827,73129,7,1,f +7828,3004,5,2,f +7828,3005,14,1,f +7828,3005,2,1,f +7828,3005,4,1,f +7828,3005,1,1,f +7828,3010,1,1,f +7828,3068b,15,1,f +7828,3830,5,2,f +7828,3831,5,2,f +7828,3837,1,1,f +7828,3852b,17,1,f +7828,3942c,15,1,f +7828,3943b,15,1,f +7828,4461,1,1,f +7828,45,383,2,f +7828,45896px1,15,1,f +7828,4599a,17,1,t +7828,4599a,17,1,f +7828,4908,17,1,f +7828,6161,18,1,f +7828,6166,5,2,f +7828,6176,5,1,f +7828,6179,1,2,f +7828,6180,20,1,f +7828,6182,13,2,f +7828,6182,1,4,f +7828,6184,5,1,f +7828,6186,20,1,f +7828,6186,14,1,f +7828,6191,1,1,f +7828,6195,13,1,f +7828,6196,13,1,f +7828,6197b,20,2,f +7828,6198,13,2,f +7828,6203,5,1,f +7828,6206,14,1,f +7828,6206,15,1,f +7828,70973c01,383,1,f +7828,71861,383,1,t +7830,10029stk01,9999,1,t +7830,2335,15,1,f +7830,2339,7,2,f +7830,2356,8,1,f +7830,2356,7,1,f +7830,2357,7,4,f +7830,2357,8,4,f +7830,2412b,383,2,f +7830,2412b,8,4,f +7830,2418b,7,2,f +7830,2419,7,2,f +7830,2420,7,2,f +7830,2446,15,2,f +7830,2447,40,1,t +7830,2447,40,2,f +7830,2456,7,2,f +7830,2456,19,4,f +7830,2462,7,4,f +7830,2540,15,1,f +7830,2540,19,8,f +7830,2654,7,5,f +7830,2780,0,1,t +7830,2780,0,8,f +7830,2825,7,8,f +7830,2877,8,3,f +7830,298c02,15,1,t +7830,298c02,15,8,f +7830,3001,7,2,f +7830,3003,8,1,f +7830,3003,19,12,f +7830,3004,19,8,f +7830,3004,8,1,f +7830,3004,7,4,f +7830,3005,7,2,f +7830,3008,7,2,f +7830,3009,7,3,f +7830,3009,8,2,f +7830,30099,7,2,f +7830,3010,7,8,f +7830,30145,8,4,f +7830,3020,7,1,f +7830,3021,8,1,f +7830,3022,7,1,f +7830,3023,19,8,f +7830,3023,8,9,f +7830,3023,7,2,f +7830,3024,8,2,f +7830,3031,8,3,f +7830,30323,15,2,f +7830,3035,7,1,f +7830,3037,7,2,f +7830,3038,7,4,f +7830,3039,8,3,f +7830,3040b,8,4,f +7830,30414,8,4,f +7830,3045,8,4,f +7830,30562,7,4,f +7830,30565,7,4,f +7830,3062b,15,1,f +7830,3063b,8,2,f +7830,3069b,19,8,f +7830,3069b,7,1,f +7830,3070b,8,4,f +7830,3070b,8,1,t +7830,32013,7,4,f +7830,32014,15,1,f +7830,32016,15,1,f +7830,32034,7,5,f +7830,32034,15,1,f +7830,32039,7,8,f +7830,32062,0,19,f +7830,32064a,19,16,f +7830,32064a,7,2,f +7830,32073,7,3,f +7830,32523,7,8,f +7830,3622,7,4,f +7830,3622,8,2,f +7830,3623,7,1,f +7830,3626bp69,14,2,f +7830,3633,8,2,f +7830,3666,7,2,f +7830,3666,8,5,f +7830,3675,7,2,f +7830,3701,7,8,f +7830,3705,0,4,f +7830,3710,7,11,f +7830,3710,8,3,f +7830,3747a,7,4,f +7830,3795,19,8,f +7830,3795,7,6,f +7830,3830,19,16,f +7830,3831,19,16,f +7830,3943b,8,1,f +7830,3958,19,1,f +7830,3960,8,1,f +7830,3963,8,4,f +7830,4032a,8,2,f +7830,4032a,15,2,f +7830,4032a,7,8,f +7830,4081b,7,1,f +7830,4085c,8,2,f +7830,4095,15,1,f +7830,41677,7,16,f +7830,4274,15,1,f +7830,4274,15,1,t +7830,4286,7,2,f +7830,4286,8,2,f +7830,43093,1,2,f +7830,43898,15,2,f +7830,44568,7,1,f +7830,44570,7,1,f +7830,44728,8,4,f +7830,4519,7,16,f +7830,4589,15,1,f +7830,4623,7,1,f +7830,4740,15,1,f +7830,4740,7,1,f +7830,4740,57,2,f +7830,6019,15,1,f +7830,6020,8,1,f +7830,6106,19,4,f +7830,6106,7,4,f +7830,6111,7,1,f +7830,6141,19,1,f +7830,6141,19,1,t +7830,6141,47,2,f +7830,6141,47,1,t +7830,6180,7,1,f +7830,6541,15,1,f +7830,6636,7,1,f +7830,6636,8,1,f +7830,970c00,15,2,f +7830,973pb0296c01,15,2,f +7831,3002a,4,1,f +7831,3003,4,2,f +7831,3004,1,14,f +7831,3004,4,9,f +7831,3005,4,20,f +7831,3005,1,4,f +7831,3008,1,4,f +7831,3008,4,6,f +7831,3009,1,3,f +7831,3009,4,4,f +7831,3010,1,11,f +7831,3010,4,4,f +7831,3021,0,1,f +7831,3021,4,2,f +7831,3022,0,2,f +7831,3023,0,2,f +7831,3032,4,1,f +7831,3068a,15,8,f +7831,3081cc01,15,4,f +7831,3144,15,1,f +7831,3185,15,5,f +7831,3297,4,6,f +7831,3297,1,8,f +7831,3298,4,2,f +7831,3298,1,3,f +7831,3299,4,1,f +7831,3299,1,2,f +7831,32bc01,15,2,f +7831,3300,4,2,f +7831,3300,1,1,f +7831,3307,1,5,f +7831,3581,1,2,f +7831,3581,4,2,f +7831,3582,14,4,f +7831,374p03,2,1,f +7831,gtfruit,2,1,f +7832,122c01,0,2,f +7832,3004,4,6,f +7832,3004,1,4,f +7832,3004,15,28,f +7832,3005,4,6,f +7832,3005,15,26,f +7832,3005,1,4,f +7832,3008,15,2,f +7832,3009,15,8,f +7832,3010,1,2,f +7832,3010,15,16,f +7832,3020,1,4,f +7832,3020,15,2,f +7832,3022,4,4,f +7832,3022,1,2,f +7832,3023,1,6,f +7832,3023,0,2,f +7832,3023,4,4,f +7832,3023,15,5,f +7832,3024,0,2,f +7832,3024,1,2,f +7832,3024,15,4,f +7832,3024,47,2,f +7832,3030,1,2,f +7832,3031,1,1,f +7832,3032,1,1,f +7832,3037,4,10,f +7832,3038,4,8,f +7832,3039,4,10,f +7832,3039,15,2,f +7832,3040b,4,8,f +7832,3040b,15,2,f +7832,3041,4,2,f +7832,3042,4,2,f +7832,3043,4,1,f +7832,3044a,4,1,f +7832,3045,4,4,f +7832,3046a,4,4,f +7832,3048a,4,2,f +7832,3049c,4,1,f +7832,3062b,46,2,f +7832,3062b,4,2,f +7832,3068b,15,2,f +7832,3069b,15,6,f +7832,3069b,4,4,f +7832,3070b,15,4,f +7832,3081cc01,4,2,f +7832,3307,15,2,f +7832,3460,15,4,f +7832,3471,2,1,f +7832,3581,15,2,f +7832,3582,0,2,f +7832,3622,15,12,f +7832,3626apr0001,14,2,f +7832,3633,4,4,f +7832,3641,0,4,f +7832,3659,15,2,f +7832,3665,1,4,f +7832,3665,4,4,f +7832,3666,1,2,f +7832,3710,15,4,f +7832,3710,4,2,f +7832,3710,1,6,f +7832,3741,2,5,f +7832,3742,4,4,f +7832,3742,14,12,f +7832,3788,1,2,f +7832,3794a,15,2,f +7832,3821,1,1,f +7832,3822,1,1,f +7832,3823,47,1,f +7832,3832,1,2,f +7832,3836,6,1,f +7832,3853,14,4,f +7832,3854,4,8,f +7832,3856,2,4,f +7832,3857,2,1,f +7832,3861b,4,1,f +7832,3899,47,2,f +7832,3901,6,1,f +7832,3957a,4,1,f +7832,3960,4,1,f +7832,4070,1,2,f +7832,4079,4,2,f +7832,4287,4,2,f +7832,4287,15,2,f +7832,4528,0,1,f +7832,4529,0,1,f +7832,4530,0,1,f +7832,4533,4,1,f +7832,4534,14,1,f +7832,4535,4,1,f +7832,4536,4,2,f +7832,6141,46,2,f +7832,6141,36,2,f +7832,73312,4,1,f +7832,92410,14,2,f +7832,970c00,7,1,f +7832,970c00,0,1,f +7832,973c02,4,1,f +7832,973px62c02,15,1,f +7833,2780,0,8,f +7833,2780,0,1,t +7833,32034,4,2,f +7833,32054,4,2,f +7833,32062,4,4,f +7833,32073,71,2,f +7833,32123b,71,1,t +7833,32123b,71,4,f +7833,32184,0,2,f +7833,32198,71,2,f +7833,32269,71,2,f +7833,32270,71,2,f +7833,32498,0,1,f +7833,3647,71,3,f +7833,3647,71,1,t +7833,3648b,71,2,f +7833,3649,71,1,f +7833,3650c,71,1,f +7833,3705,0,2,f +7833,3706,0,2,f +7833,3707,0,2,f +7833,3708,0,1,f +7833,3713,71,4,f +7833,3713,71,1,t +7833,3737,0,1,f +7833,3749,19,4,f +7833,4019,71,3,f +7833,42003,72,2,f +7833,42908,0,1,f +7833,43093,1,4,f +7833,44294,71,2,f +7833,4519,71,2,f +7833,4716,71,2,f +7833,5306bc036,0,1,f +7833,54734,71,1,f +7833,6536,71,2,f +7833,6538b,4,2,f +7833,6539,4,1,f +7833,6542a,72,2,f +7833,6558,0,6,f +7833,6573,72,1,f +7833,6589,71,4,f +7833,6641,4,1,f +7833,76244,15,1,f +7833,9244,71,1,f +7835,16542,7,1,f +7835,2341,4,2,f +7835,2412a,7,1,f +7835,2412a,15,2,f +7835,2420,4,6,f +7835,2445,0,1,f +7835,298c04,15,1,f +7835,3004,4,1,f +7835,3005,4,1,f +7835,3020,15,1,f +7835,3021,4,2,f +7835,3021,1,1,f +7835,3021,14,1,f +7835,3022,15,2,f +7835,3022,0,1,f +7835,3022,4,2,f +7835,3023,4,4,f +7835,3023,14,1,f +7835,3023,0,1,f +7835,3023,15,2,f +7835,3024,4,2,f +7835,3024,46,4,f +7835,3024,33,2,f +7835,3024,36,4,f +7835,3034,4,1,f +7835,3035,15,1,f +7835,3037,4,1,f +7835,3039,4,1,f +7835,3062b,14,1,f +7835,3068bp57,4,1,f +7835,3069b,4,3,f +7835,3070b,4,2,f +7835,3149c01,4,1,f +7835,3403,4,1,f +7835,3404,4,1,f +7835,3626apr0001,14,1,f +7835,3641,0,2,f +7835,3660,4,1,f +7835,3665,4,6,f +7835,3710,4,3,f +7835,3710,15,3,f +7835,3730,0,1,f +7835,3731,0,1,f +7835,3795,4,1,f +7835,3823,41,1,f +7835,3829c01,15,1,f +7835,3834,15,1,f +7835,3835,0,1,f +7835,3937,4,1,f +7835,3938,4,1,f +7835,3962a,0,1,f +7835,4070,0,2,f +7835,4070,4,1,f +7835,4070,7,4,f +7835,4084,0,4,f +7835,4085c,15,2,f +7835,4207,7,2,f +7835,4208,0,1,f +7835,4209p01,4,1,f +7835,4211,15,1,f +7835,4213,4,1,f +7835,4214,4,1,f +7835,4276b,0,2,f +7835,4599a,14,1,f +7835,4600,0,3,f +7835,4624,15,6,f +7835,4715,15,1,f +7835,4864a,4,1,f +7835,4865a,4,3,f +7835,73590c01a,7,1,f +7835,970c00,0,1,f +7835,973p21c01,0,1,f +7836,3624,0,1,f +7836,3626bpr0245,14,1,f +7836,4349,72,1,f +7836,970c00,0,1,f +7836,973pr1188c01,0,1,f +7839,11816pr0006,78,1,f +7839,16985pr0001b,272,1,f +7839,92257,320,1,f +7839,92456pr0032c01,78,1,f +7841,2780,0,4,f +7841,32062,0,3,f +7841,32123b,7,1,t +7841,32123b,7,4,f +7841,32165,0,1,f +7841,32167,0,2,f +7841,32168,0,1,f +7841,32170,22,1,f +7841,32171pb032,0,1,f +7841,32171pb049,22,1,f +7841,32172,22,1,f +7841,32173,0,4,f +7841,32174,22,5,f +7841,32176,22,1,f +7841,32177,22,2,f +7841,32194,0,1,f +7841,3647,22,1,t +7841,3647,22,2,f +7841,6587,8,2,f +7841,x209,40,1,f +7842,2412b,15,1,f +7842,2420,0,4,f +7842,2431,15,3,f +7842,2436,0,4,f +7842,3020,0,2,f +7842,3022,0,1,f +7842,3022,1,1,f +7842,3023,36,1,f +7842,3031,0,1,f +7842,30602,0,1,f +7842,3794a,0,1,f +7842,50943,80,1,f +7842,50944pr0001,0,4,f +7842,50947,15,4,f +7842,50951,0,4,f +7842,54200,15,3,f +7842,54200,294,2,f +7842,6157,0,2,f +7842,6231,0,2,f +7843,3039,8,2,f +7843,40373pb04,7,2,f +7843,40374pb04,7,2,f +7843,40375,378,2,f +7843,40379,19,4,f +7843,40379,378,1,f +7843,40380c01pb04,378,1,f +7843,40382c01pb04,378,1,f +7843,40389,378,1,f +7843,40396,378,2,f +7843,x158,378,1,f +7844,2458,15,1,f +7844,2458,72,2,f +7844,2780,0,4,f +7844,3001,0,1,f +7844,3020,0,2,f +7844,3023,15,4,f +7844,3032,72,1,f +7844,3036,72,1,f +7844,3069b,15,3,f +7844,32034,0,2,f +7844,32123b,71,2,f +7844,32140,0,1,f +7844,32316,72,2,f +7844,32524,72,1,f +7844,32525,0,2,f +7844,32556,71,1,f +7844,3660,72,7,f +7844,3666,15,2,f +7844,3707,0,1,f +7844,3708,0,1,f +7844,3713,71,6,f +7844,41747,288,2,f +7844,41748,288,2,f +7844,4274,71,4,f +7844,43093,1,4,f +7844,43712,288,1,f +7844,44126,288,1,f +7844,47715,0,1,f +7844,48336,15,1,f +7844,50948,0,1,f +7844,50950,15,2,f +7844,55982,71,4,f +7844,6141,36,2,f +7844,6141,14,8,f +7844,6578,0,4,f +7845,2046,13,1,f +7845,2341,15,1,f +7845,2343,47,2,f +7845,2357,15,1,f +7845,2397,0,1,f +7845,2399,15,1,f +7845,2412b,1,1,f +7845,2417,2,2,f +7845,2432,13,1,f +7845,2453a,15,8,f +7845,2454a,15,3,f +7845,2488,0,1,f +7845,2518,2,4,f +7845,2536,6,5,f +7845,2540,7,3,f +7845,2546p01,4,1,f +7845,2563,6,1,f +7845,2566,2,1,f +7845,2926,7,1,f +7845,3001,7,1,f +7845,3003,15,1,f +7845,30032,6,1,f +7845,3004,15,14,f +7845,3004,6,1,f +7845,3004,7,5,f +7845,3004,0,1,f +7845,3005,15,24,f +7845,3005,7,5,f +7845,30055,15,3,f +7845,30056,15,2,f +7845,3008,15,1,f +7845,3008,7,1,f +7845,3009,15,2,f +7845,3009,7,1,f +7845,3010,7,4,f +7845,3010,15,1,f +7845,3021,15,1,f +7845,3022,7,1,f +7845,3023,15,3,f +7845,3023,7,1,f +7845,3024,7,4,f +7845,3030,7,1,f +7845,3031,1,1,f +7845,3034,15,1,f +7845,3036,15,4,f +7845,3045,0,1,f +7845,3062b,1,1,f +7845,3069b,6,1,f +7845,3069b,0,1,f +7845,3070b,15,2,f +7845,3455,15,5,f +7845,3460,15,4,f +7845,3460,7,1,f +7845,3581,15,3,f +7845,3622,15,4,f +7845,3626bp02,14,3,f +7845,3626bp03,14,2,f +7845,3659,15,4,f +7845,3660,15,2,f +7845,3665,15,4,f +7845,3666,15,4,f +7845,3741,2,6,f +7845,3742,5,18,f +7845,3742,5,2,t +7845,3795,15,1,f +7845,3811,74,1,f +7845,3833,0,2,f +7845,3836,6,1,f +7845,3837,8,1,f +7845,3852b,6,1,f +7845,3861b,13,1,f +7845,3899,5,2,f +7845,3899,47,1,f +7845,3901,0,1,f +7845,3941,15,1,f +7845,3960,13,2,f +7845,4032a,2,1,f +7845,4079,5,5,f +7845,4085c,15,3,f +7845,4095,15,2,f +7845,4151a,15,2,f +7845,4449,6,1,f +7845,4485,1,1,f +7845,4489,0,2,f +7845,4491b,1,1,f +7845,4491b,4,1,f +7845,4493c01pb01,6,1,f +7845,4493c01pb02,0,1,f +7845,4523,1,5,f +7845,4528,0,1,f +7845,4533,14,2,f +7845,4589,15,3,f +7845,47899c01,15,1,f +7845,6003,15,2,f +7845,6005,15,8,f +7845,6064,2,1,f +7845,6078,13,3,f +7845,6079,15,5,f +7845,6093,6,1,f +7845,6093,0,1,f +7845,6093,4,1,f +7845,6112,15,4,f +7845,6141,47,4,f +7845,6141,7,6,f +7845,6160c01,15,1,f +7845,6191,15,1,f +7845,6254,15,2,f +7845,6255,2,2,f +7845,6418stk01,9999,1,t +7845,92410,15,2,f +7845,970c00,1,1,f +7845,970c00,15,1,f +7845,970c00,0,1,f +7845,970x001,14,2,f +7845,973pb0018c01,13,1,f +7845,973pr1190c01,0,1,f +7845,973pr1204c01,15,1,f +7845,973px2c01,1,1,f +7845,973px5c01,15,1,f +7846,2431,70,1,f +7846,3020,15,1,f +7846,3062b,15,1,t +7846,3062b,15,2,f +7846,32530,72,2,f +7846,32556,19,1,f +7846,32556,19,1,t +7846,88289,308,1,f +7847,2458,72,100,f +7847,2460,72,100,f +7847,2479,0,100,f +7847,3001,2,100,f +7847,3003,2,100,f +7847,3004,2,200,f +7847,3004,72,200,f +7847,3004,27,200,f +7847,3005pr0003,14,300,f +7847,3010,4,200,f +7847,3010,1,200,f +7847,3010,2,200,f +7847,3010,5,200,f +7847,3020,25,100,f +7847,3021,25,100,f +7847,3032,0,100,f +7847,3039,47,100,f +7847,3040b,25,200,f +7847,3065,36,200,f +7847,3626cpr0892,14,100,f +7847,3659,71,200,f +7847,3795,14,200,f +7847,3941,46,100,f +7847,3957b,0,200,f +7847,4175,72,100,f +7847,4286,72,200,f +7847,4287,72,200,f +7847,4477,19,200,f +7847,4495b,2,200,f +7847,4727,10,100,f +7847,4728,45,100,f +7847,6215,14,100,f +7847,970c00,15,100,f +7847,973c01,1,100,f +7848,3022,7,1,f +7848,3023,7,2,f +7848,3023,0,2,f +7848,3024,0,2,f +7848,3034,0,1,f +7848,3040b,0,4,f +7848,3623,0,2,f +7848,3626apr0001,14,2,f +7848,3666,0,1,f +7848,3710,0,1,f +7848,3794a,0,2,f +7848,3839b,0,1,f +7848,3844,8,1,f +7848,3846p4g,7,1,f +7848,3896,8,1,f +7848,3941,14,1,f +7848,4032a,14,2,f +7848,4032a,0,2,f +7848,4070,7,2,f +7848,4070,0,1,f +7848,4085b,0,3,f +7848,4287,0,2,f +7848,4488,0,2,f +7848,4489a,6,2,f +7848,4497,6,3,f +7848,4498,6,1,f +7848,4499,6,1,f +7848,4524,1,1,f +7848,4589,15,3,f +7848,970c00,7,2,f +7848,973px138c01,4,2,f +7849,32062,0,6,f +7849,32173,8,2,f +7849,32174,2,10,f +7849,32174,57,1,f +7849,32270,7,1,f +7849,3737,0,1,f +7849,3749,19,4,f +7849,44135,8,1,f +7849,44136,8,1,f +7849,44138,2,2,f +7849,44139,8,1,f +7849,44140,2,1,f +7849,44144,179,1,f +7849,44148,8,2,f +7849,44247,8,1,f +7849,44807,2,1,f +7849,44818,179,2,f +7849,4519,7,3,f +7849,45749,8,2,f +7849,6538b,8,1,f +7849,kraataund,22,1,f +7850,6003555,-1,1,f +7851,3626cpb1125,14,1,f +7851,61506,70,1,f +7851,90542pr03,19,2,f +7851,970c00pr0605,25,1,f +7851,973pr2538c01,25,1,f +7853,2419,1,1,f +7853,2460,15,1,f +7853,2744,15,2,f +7853,2790,7,1,f +7853,2791,7,1,f +7853,2792,0,1,f +7853,2819,7,1,f +7853,2825,0,2,f +7853,2825,15,2,f +7853,2994,15,4,f +7853,3022,15,1,f +7853,3023,1,1,f +7853,3023,0,2,f +7853,3031,0,1,f +7853,3069b,15,2,f +7853,32000,15,2,f +7853,32002,8,1,t +7853,32002,8,2,f +7853,32015,15,1,f +7853,32039,7,2,f +7853,3298,15,1,f +7853,3298pb003,15,1,f +7853,3460,1,2,f +7853,3647,7,1,f +7853,3678a,0,1,f +7853,3700,0,2,f +7853,3705,0,2,f +7853,3706,0,1,f +7853,3707,0,2,f +7853,3709,15,2,f +7853,3710,0,2,f +7853,3710,15,2,f +7853,3713,7,1,f +7853,3713,7,1,t +7853,3738,0,2,f +7853,3749,7,6,f +7853,3895,15,2,f +7853,4261,7,2,f +7853,4274,7,6,f +7853,4274,7,1,t +7853,4442,0,1,f +7853,4477,1,2,f +7853,4519,0,1,f +7853,6141,0,1,t +7853,6141,0,2,f +7853,6536,7,2,f +7853,6541,0,2,f +7853,6578,0,4,f +7853,6632,15,4,f +7853,75c11,1,2,f +7853,75c13,1,2,f +7854,2357,15,2,f +7854,2412b,7,8,f +7854,2431,0,2,f +7854,2432,4,1,f +7854,2432,1,2,f +7854,2436,7,2,f +7854,2445,7,1,f +7854,2454a,0,2,f +7854,2454a,15,4,f +7854,2465,7,2,f +7854,2489,6,2,f +7854,2526,15,1,f +7854,2540,19,4,f +7854,2540,8,2,f +7854,2622,7,2,f +7854,2622,15,1,f +7854,2877,7,3,f +7854,3001,7,2,f +7854,3001,0,3,f +7854,3002,0,2,f +7854,3003,0,5,f +7854,3003,15,4,f +7854,3003,4,1,f +7854,3003,1,1,f +7854,3004,6,6,f +7854,30055,0,1,f +7854,3006,0,2,f +7854,3007,15,4,f +7854,3008,7,4,f +7854,3009,15,7,f +7854,3010,0,1,f +7854,3010,15,2,f +7854,3010,4,1,f +7854,30104,8,1,f +7854,30132,8,2,f +7854,30135,6,1,f +7854,30141,8,3,f +7854,30147,7,1,f +7854,30148,0,1,f +7854,30150,6,3,f +7854,30152pat0001,0,1,f +7854,30154,0,1,f +7854,30155,7,12,f +7854,30157,6,6,f +7854,30158,6,1,f +7854,30161pa1,47,1,f +7854,30162,0,2,f +7854,30165,8,2,f +7854,30167,6,1,f +7854,30172,15,2,f +7854,30181,7,2,f +7854,30184,7,1,f +7854,3020,6,1,f +7854,3020,7,2,f +7854,3021,0,2,f +7854,3023,7,4,f +7854,30236,15,3,f +7854,30237a,4,6,f +7854,30237a,0,4,f +7854,3031,4,2,f +7854,3032,19,1,f +7854,3033,7,1,f +7854,3039,0,4,f +7854,3039,15,1,f +7854,3040b,15,4,f +7854,30457c01,2,1,f +7854,30464,2,1,f +7854,3062b,34,1,f +7854,3062b,0,23,f +7854,3062b,36,1,f +7854,3069bp03,7,1,f +7854,3069bpa0,19,1,f +7854,3069bpa1,0,1,f +7854,3069bpa3,15,1,f +7854,3460,15,4,f +7854,3483,0,12,f +7854,3623,1,4,f +7854,3626bpa1,14,1,f +7854,3626bpa3,14,1,f +7854,3626bpa7,14,1,f +7854,3626bpb0109,14,1,f +7854,3626bpx134,14,1,f +7854,3660,7,1,f +7854,3666,7,4,f +7854,3666,0,5,f +7854,3701,7,1,f +7854,3710,19,7,f +7854,3795,7,1,f +7854,3795,8,1,f +7854,3829c01,15,2,f +7854,3832,4,1,f +7854,3832,0,2,f +7854,3837,8,1,f +7854,3841,8,2,f +7854,3849,15,1,f +7854,3899,4,1,f +7854,3941,15,3,f +7854,3957a,15,1,f +7854,4032a,6,4,f +7854,4070,14,2,f +7854,4085c,15,4,f +7854,4204,4,2,f +7854,4445,7,6,f +7854,4465c01,8,1,f +7854,4495b,4,2,f +7854,4528,0,1,f +7854,4530,0,1,f +7854,4599a,0,4,f +7854,4623,1,2,f +7854,4625,7,1,f +7854,4790,6,1,f +7854,4854,7,1,f +7854,4854,1,1,f +7854,4865a,15,2,f +7854,6020,8,2,f +7854,6046,8,2,f +7854,6081,0,2,f +7854,6141,7,2,f +7854,6141,0,1,t +7854,6141,0,1,f +7854,6141,7,1,t +7854,6141,47,1,t +7854,6141,47,5,f +7854,6583,8,2,f +7854,6636,15,3,f +7854,87695,15,2,f +7854,87696,15,1,f +7854,970c00,0,2,f +7854,970c00,2,1,f +7854,970c00,7,2,f +7854,973pa1c01,15,1,f +7854,973pa7c01,19,1,f +7854,973pb0042c01,7,1,f +7854,973pb0391c01,19,1,f +7854,973px190c01,6,1,f +7856,2412b,179,4,f +7856,2431,70,2,f +7856,2546pat0001,4,1,f +7856,30136,70,4,f +7856,3020,0,1,f +7856,3020,70,1,f +7856,30218,15,1,f +7856,3022,14,1,f +7856,3023,0,1,f +7856,3031,19,1,f +7856,3040b,71,2,f +7856,3041,0,1,f +7856,30414,0,1,f +7856,3045,71,1,f +7856,33057,484,2,f +7856,33085,14,2,f +7856,3626bpr0692,14,1,f +7856,3626bpr0732,14,1,f +7856,3626bpr0772,14,1,f +7856,37,72,2,f +7856,3839b,72,1,f +7856,4085c,0,4,f +7856,54200,182,4,f +7856,6126b,57,1,f +7856,6141,72,4,f +7856,6148,2,3,f +7856,64567,71,1,f +7856,72454,0,1,f +7856,85974pr0001,0,1,f +7856,87990,84,1,f +7856,87991,19,1,f +7856,90397pr0001a,15,1,f +7856,90397pr0002,15,1,f +7856,90508,70,2,f +7856,93496,2,1,f +7856,970c00pr0165,14,1,f +7856,970c00pr0184,14,1,f +7856,970c00pr0210,0,1,f +7856,973pr1654c01,14,1,f +7856,973pr1702c01,14,1,f +7856,973pr1759c01,0,1,f +7858,2825,0,2,f +7858,2905,1,2,f +7858,32068,7,1,f +7858,32073,0,2,f +7858,32123b,7,1,t +7858,32123b,7,4,f +7858,32193,0,4,f +7858,3705,0,2,f +7858,3713,7,4,f +7858,3713,7,1,t +7858,4274,7,1,t +7858,4274,7,1,f +7858,4519,0,2,f +7858,6041,0,1,f +7858,6536,7,2,f +7858,75c05,8,1,f +7858,rb00168,0,1,t +7858,rb00168,0,1,f +7860,10201,71,1,f +7860,15573,72,3,f +7860,15712,71,1,f +7860,3020,72,1,f +7860,3068b,0,2,f +7860,3710,72,1,f +7860,41769,71,1,f +7860,41770,71,1,f +7860,4733,71,1,f +7860,6141,41,4,f +7860,6141,71,2,f +7860,6141,47,1,f +7860,6141,72,1,f +7860,90194,71,1,f +7861,2397,25,1,f +7861,2540,0,1,f +7861,2569,0,1,f +7861,30094,0,1,f +7861,30162,0,1,f +7861,3022,1,2,f +7861,30284,14,4,f +7861,30287p01,4,1,f +7861,30287p01,0,1,f +7861,3626bp02,14,1,f +7861,3626bp7c,14,1,f +7861,3710,0,1,f +7861,4345b,7,1,f +7861,4346,7,1,f +7861,6120,7,2,f +7861,970x001,4,1,f +7861,970x026,1,1,f +7861,973p7ac01,0,1,f +7861,973pb0102c01,4,1,f +7864,2780,0,4,f +7864,32054,71,1,f +7864,32062,0,2,f +7864,32174,0,4,f +7864,32174,320,1,f +7864,32209,15,1,f +7864,32270,0,3,f +7864,3705,0,2,f +7864,3708,0,2,f +7864,3713,71,1,t +7864,3713,71,2,f +7864,43093,1,1,f +7864,43559,179,2,f +7864,44031,179,1,f +7864,4519,71,3,f +7864,47295,179,1,f +7864,47296,320,4,f +7864,47297,320,2,f +7864,47298,179,2,f +7864,47299,179,2,f +7864,47305,0,1,f +7864,47306,320,1,f +7864,47312,72,1,f +7864,47313,42,1,f +7864,47327,179,1,f +7864,47328,320,2,f +7864,49423,320,1,f +7864,50899,320,1,f +7864,50899pr0002,179,1,f +7864,50900,0,1,f +7864,50901,72,1,f +7864,50903,14,1,f +7864,53379,179,1,f +7864,6538b,0,1,f +7865,3034,4,2,f +7865,3034,15,5,f +7865,3035,4,2,f +7865,3036,15,2,f +7865,3149c01,4,4,f +7865,3404ac01,0,2,f +7866,18746pr0002,15,1,f +7866,3626bpr0824,14,1,f +7866,88646,0,1,f +7866,90541,272,1,f +7866,970c00,72,1,f +7866,973pr1821c01,1,1,f +7867,2415,71,1,f +7867,2444,72,1,f +7867,2446,15,1,f +7867,2447,40,1,t +7867,2447,40,1,f +7867,2877,72,1,f +7867,2926,0,1,f +7867,3022,72,1,f +7867,3069bpr0115,15,1,f +7867,3464,15,1,f +7867,3626cpr0914,14,1,f +7867,3660,1,1,f +7867,3673,71,1,f +7867,3673,71,1,t +7867,3795,72,1,f +7867,3829c01,15,1,f +7867,44661,15,1,f +7867,4624,15,2,f +7867,54200,33,1,t +7867,54200,33,2,f +7867,54383,15,1,f +7867,54384,15,1,f +7867,59895,0,3,f +7867,6141,36,1,f +7867,6141,34,1,f +7867,6141,36,1,t +7867,6141,34,1,t +7867,85984,15,1,f +7867,90194,1,2,f +7867,92842,0,1,f +7867,970c00pr0293,272,1,f +7867,973pr1947bc01,272,1,f +7869,10201,0,6,f +7869,10201,71,2,f +7869,10247,0,2,f +7869,10247,71,2,f +7869,10928,72,10,f +7869,11203,0,8,f +7869,11211,71,3,f +7869,11214,72,4,f +7869,11215,71,2,f +7869,11458,72,4,f +7869,11477,72,4,f +7869,11833,0,2,f +7869,13349,0,1,f +7869,13548,71,2,f +7869,13564,70,5,f +7869,13564,70,1,t +7869,14210,0,1,f +7869,14301,71,2,f +7869,14395,0,4,f +7869,14719,0,2,f +7869,14769,71,1,f +7869,14769,4,2,f +7869,15068,72,2,f +7869,15207,72,5,f +7869,15303,35,4,f +7869,15307pr0001,308,1,f +7869,15310pr0001,0,2,f +7869,15332,0,4,f +7869,15392,72,1,t +7869,15392,72,1,f +7869,15400,72,2,f +7869,15462,28,3,f +7869,15535,72,2,f +7869,15573,320,4,f +7869,15573,0,14,f +7869,15573,72,5,f +7869,15672,4,3,f +7869,15712,72,20,f +7869,15712,0,1,f +7869,16497pr0003,0,2,f +7869,16957,0,1,f +7869,18654,72,1,t +7869,18654,72,7,f +7869,18675pr0003,40,1,f +7869,18980,0,2,f +7869,19888,0,2,f +7869,19888,4,2,f +7869,19916,0,1,f +7869,19917,0,1,t +7869,19917,0,1,f +7869,20105,0,1,f +7869,21268,71,1,f +7869,2357,72,45,f +7869,2357,71,29,f +7869,24122,0,2,f +7869,2412b,72,46,f +7869,2412b,0,12,f +7869,2412b,36,8,f +7869,2420,72,12,f +7869,2420,71,7,f +7869,2420,0,8,f +7869,2420,19,11,f +7869,24299,0,4,f +7869,24307,0,4,f +7869,2431,72,31,f +7869,2431,71,2,f +7869,2431pr0017,14,2,f +7869,2432,71,1,f +7869,2445,71,12,f +7869,2449,0,4,f +7869,2450,0,2,f +7869,2450,72,4,f +7869,2454a,0,4,f +7869,2454a,71,10,f +7869,2456,71,31,f +7869,2456,4,13,f +7869,2456,72,6,f +7869,2458,72,4,f +7869,2462,71,4,f +7869,2465,71,2,f +7869,2489,72,4,f +7869,2496,0,2,f +7869,2512,71,1,f +7869,2540,0,1,f +7869,2540,72,13,f +7869,2569,42,9,f +7869,26139,70,2,f +7869,2639,72,2,f +7869,2654,72,6,f +7869,2654,19,14,f +7869,2655,71,2,f +7869,2780,0,26,f +7869,2780,0,3,t +7869,27946,40,1,f +7869,27948pr1006,1,1,f +7869,2817,71,1,f +7869,2817,0,5,f +7869,28555,41,2,f +7869,2877,70,8,f +7869,2877,72,31,f +7869,28959,308,1,f +7869,298c02,4,1,t +7869,298c02,71,2,f +7869,298c02,71,3,t +7869,298c02,4,5,f +7869,3001,0,4,f +7869,3001,72,26,f +7869,3001,71,42,f +7869,3002,71,49,f +7869,3003,1,20,f +7869,3003,71,50,f +7869,3003,0,5,f +7869,3004,70,8,f +7869,3004,320,3,f +7869,3004,0,29,f +7869,3004,71,62,f +7869,3004,72,61,f +7869,3005,72,42,f +7869,3005,0,18,f +7869,3005,70,12,f +7869,3007,71,27,f +7869,3008,72,3,f +7869,3008,71,11,f +7869,3009,71,13,f +7869,3009,72,8,f +7869,3009,0,5,f +7869,30099,0,4,f +7869,3010,0,7,f +7869,3010,71,23,f +7869,3010,15,7,f +7869,3010,72,12,f +7869,30134,0,2,f +7869,30136,70,8,f +7869,30145,0,1,f +7869,30145,71,11,f +7869,3020,71,66,f +7869,3020,1,2,f +7869,3020,4,45,f +7869,3020,320,1,f +7869,3020,0,8,f +7869,3020,72,10,f +7869,3021,72,75,f +7869,3021,0,5,f +7869,3021,71,77,f +7869,3022,71,71,f +7869,3022,0,6,f +7869,3022,72,18,f +7869,3022,1,13,f +7869,3023,4,2,f +7869,3023,72,55,f +7869,3023,71,54,f +7869,3023,320,7,f +7869,3023,0,34,f +7869,30237b,71,2,f +7869,3024,72,7,f +7869,3024,1,1,t +7869,3024,71,2,t +7869,3024,71,15,f +7869,3024,72,3,t +7869,3024,1,4,f +7869,3029,71,1,f +7869,3030,71,35,f +7869,3030,0,4,f +7869,3031,0,1,f +7869,3031,72,3,f +7869,3031,71,7,f +7869,3032,72,4,f +7869,3032,71,2,f +7869,3032,0,3,f +7869,3033,71,4,f +7869,3034,0,7,f +7869,3034,71,32,f +7869,3035,0,1,f +7869,3035,72,8,f +7869,3035,71,10,f +7869,30355,0,3,f +7869,30355,71,19,f +7869,30356,0,2,f +7869,30356,71,20,f +7869,30357,72,4,f +7869,3036,0,1,f +7869,3036,71,6,f +7869,30361pr1001,15,1,f +7869,30362,15,2,f +7869,30362,1,2,f +7869,30367c,0,1,f +7869,30367cpr1001,179,1,f +7869,3037,0,2,f +7869,30374,35,1,f +7869,30374,36,1,f +7869,30374,0,2,f +7869,30374,41,1,f +7869,30374,71,2,f +7869,30375,72,4,f +7869,30377,0,5,f +7869,30377,0,1,t +7869,30381,0,1,f +7869,30386,71,16,f +7869,3039,0,6,f +7869,3039,72,1,f +7869,3039,71,30,f +7869,3039pr0015,0,2,f +7869,3039pr0018,0,2,f +7869,30408pr0007,15,4,f +7869,3040b,71,18,f +7869,3040b,72,22,f +7869,3040b,0,29,f +7869,3040bpr0003,71,2,f +7869,30414,72,22,f +7869,30480ps0,297,1,f +7869,30503,71,13,f +7869,30503,0,3,f +7869,30504,71,7,f +7869,30504,0,1,f +7869,30561,4,2,f +7869,30562,72,11,f +7869,30565,72,7,f +7869,30602,14,2,f +7869,3062b,42,21,f +7869,3062b,320,14,f +7869,3062b,1,7,f +7869,3062b,0,10,f +7869,3068b,72,22,f +7869,3068b,71,3,f +7869,3068b,272,3,f +7869,3069b,40,20,f +7869,3069b,26,2,f +7869,3069b,72,16,f +7869,3069bpr0086,71,11,f +7869,3070b,71,1,t +7869,3070b,0,12,f +7869,3070b,71,1,f +7869,3070b,0,3,t +7869,3070bpr0007,71,1,t +7869,3070bpr0007,71,1,f +7869,32000,14,1,f +7869,32000,4,7,f +7869,32000,72,6,f +7869,32001,0,12,f +7869,32002,19,8,f +7869,32002,19,1,t +7869,32009,0,2,f +7869,32013,320,3,f +7869,32014,0,4,f +7869,32015,0,6,f +7869,32028,0,3,f +7869,32028,71,3,f +7869,32034,0,2,f +7869,32039,71,1,f +7869,32039,14,1,f +7869,32039,0,5,f +7869,32054,4,2,f +7869,32054,71,3,f +7869,32062,4,13,f +7869,32064a,0,19,f +7869,32064a,4,4,f +7869,32073,14,2,f +7869,32123b,71,1,t +7869,32123b,71,2,f +7869,32123b,14,4,t +7869,32123b,14,21,f +7869,32184,0,4,f +7869,32187,71,5,f +7869,32250,0,4,f +7869,32270,0,6,f +7869,32316,0,2,f +7869,32316,14,2,f +7869,32449,72,2,f +7869,32449,0,3,f +7869,3245b,71,5,f +7869,3245c,0,4,f +7869,32523,72,4,f +7869,32523,1,2,f +7869,32524,0,2,f +7869,32525,0,1,f +7869,32530,72,1,f +7869,32905,71,1,f +7869,3297,71,5,f +7869,3298,71,5,f +7869,33299a,71,1,f +7869,3456,71,15,f +7869,3456,0,2,f +7869,3460,0,3,f +7869,3460,72,3,f +7869,3460,71,13,f +7869,3460,320,6,f +7869,3622,71,15,f +7869,3622,72,52,f +7869,3622,0,26,f +7869,3623,71,10,f +7869,3623,0,4,f +7869,3623,72,32,f +7869,3626b,0,2,f +7869,3626cpr1149,78,2,f +7869,3626cpr1363,78,2,f +7869,3626cpr1368,78,2,f +7869,3626cpr1444,78,1,f +7869,3626cpr1492,78,1,f +7869,3626cpr1661,78,1,f +7869,3626cpr1669,15,1,f +7869,3626cpr1670,78,3,f +7869,3626cpr1671,19,1,f +7869,3626cpr1709,78,1,f +7869,3626cpr1961,78,1,f +7869,3626cpr2010,78,2,f +7869,3648b,72,2,f +7869,3660,72,1,f +7869,3660,71,37,f +7869,3665,0,27,f +7869,3665,72,18,f +7869,3665,71,13,f +7869,3666,320,4,f +7869,3666,0,8,f +7869,3666,72,5,f +7869,3666,71,16,f +7869,3673,71,4,f +7869,3673,71,2,t +7869,3678b,71,13,f +7869,3679,71,11,f +7869,3680,0,11,f +7869,3700,71,7,f +7869,3700,4,1,f +7869,3700,70,3,f +7869,3701,70,3,f +7869,3705,0,1,f +7869,3705,4,8,f +7869,3706,4,1,f +7869,3707,0,1,f +7869,3708,0,2,f +7869,3709,15,8,f +7869,3710,0,14,f +7869,3710,71,24,f +7869,3710,72,32,f +7869,3713,71,1,t +7869,3713,4,11,f +7869,3713,4,2,t +7869,3713,71,6,f +7869,3737,0,1,f +7869,3738,72,2,f +7869,3738,0,1,f +7869,3743,15,3,f +7869,3747a,71,7,f +7869,3795,72,3,f +7869,3795,0,3,f +7869,3795,71,42,f +7869,3830,70,4,f +7869,3831,70,4,f +7869,3832,70,2,f +7869,3901,71,1,f +7869,3901,28,1,f +7869,3937,72,21,f +7869,3941,272,4,f +7869,3941,4,4,f +7869,3941,41,4,f +7869,3941,42,2,f +7869,3941,72,6,f +7869,3957a,71,6,f +7869,3957a,0,2,f +7869,3957a,47,1,f +7869,3960pr13,40,1,f +7869,3961,72,1,f +7869,4032a,4,7,f +7869,4032a,1,13,f +7869,4032a,72,18,f +7869,40490,72,2,f +7869,4070,320,43,f +7869,4070,72,2,f +7869,4079,0,11,f +7869,4081b,4,1,f +7869,4081b,72,2,f +7869,4085c,71,2,f +7869,4151b,72,2,f +7869,41539,71,9,f +7869,4162,72,5,f +7869,4162,71,3,f +7869,41678,72,5,f +7869,4175,0,1,f +7869,4274,1,2,t +7869,4274,71,2,f +7869,4274,71,1,t +7869,4274,1,12,f +7869,4286,70,2,f +7869,4286,71,2,f +7869,4287,70,2,f +7869,43093,1,22,f +7869,4349,0,1,f +7869,43722,72,16,f +7869,43722,71,1,f +7869,43723,71,1,f +7869,43898,70,1,f +7869,43898,72,2,f +7869,43898,0,2,f +7869,44294,14,1,f +7869,44294,71,5,f +7869,44301a,72,2,f +7869,44302a,72,2,f +7869,44375a,71,1,f +7869,44568,71,5,f +7869,44570,71,1,f +7869,4460b,0,2,f +7869,4460b,71,4,f +7869,44728,4,2,f +7869,44728,72,1,f +7869,4477,71,13,f +7869,4477,70,5,f +7869,4477,0,7,f +7869,4477,72,2,f +7869,4519,71,8,f +7869,4590,72,1,f +7869,4595,0,2,f +7869,4733,72,1,f +7869,47397,0,1,f +7869,47398,0,1,f +7869,4740,0,2,f +7869,4740,36,2,f +7869,4742,0,1,f +7869,4742,72,3,f +7869,47905,0,1,f +7869,48092,72,4,f +7869,48336,71,2,f +7869,4865b,0,5,f +7869,4871,0,1,f +7869,48729b,0,7,f +7869,48729b,0,1,t +7869,50304,71,8,f +7869,50305,71,8,f +7869,50451,0,1,f +7869,50950,14,1,f +7869,50990b,71,2,f +7869,51739,72,8,f +7869,51739,71,1,f +7869,52107,0,8,f +7869,52501,0,2,f +7869,54200,0,25,f +7869,54200,72,4,f +7869,54200,0,3,t +7869,54200,71,9,f +7869,54200,33,16,f +7869,54200,72,1,t +7869,54200,71,2,t +7869,55013,72,3,f +7869,56823c100,0,1,f +7869,56823c50,0,1,f +7869,57899,0,4,f +7869,58247,0,4,f +7869,59349,0,3,f +7869,59426,72,2,f +7869,59443,72,7,f +7869,59443,4,1,f +7869,6020,0,2,f +7869,604547,0,1,f +7869,604548,0,1,f +7869,604549,0,1,f +7869,604550,0,1,f +7869,604551,0,1,f +7869,604552,0,1,f +7869,604553,0,1,f +7869,604614,0,1,f +7869,604615,0,1,f +7869,60471,71,8,f +7869,60474,0,16,f +7869,60477,0,4,f +7869,60478,72,2,f +7869,60478,71,2,f +7869,60479,71,1,f +7869,60483,72,2,f +7869,60581,40,4,f +7869,60897,0,6,f +7869,6111,71,3,f +7869,6111,0,4,f +7869,6112,70,8,f +7869,61252,0,16,f +7869,6134,71,3,f +7869,6134,0,20,f +7869,6141,0,3,t +7869,6141,70,1,f +7869,6141,36,24,f +7869,6141,35,1,t +7869,6141,36,3,t +7869,6141,57,26,f +7869,6141,179,2,t +7869,6141,47,40,f +7869,6141,71,1,t +7869,6141,57,5,t +7869,6141,0,30,f +7869,6141,179,1,f +7869,6141,35,4,f +7869,6141,47,4,t +7869,6141,70,1,t +7869,6141,71,8,f +7869,61482,71,1,f +7869,61482,71,1,t +7869,61485,0,5,f +7869,61510,71,2,f +7869,6177,0,2,f +7869,61780,72,3,f +7869,6179,0,3,f +7869,6182,71,2,f +7869,6190,72,2,f +7869,6222,72,2,f +7869,6231,0,2,f +7869,62462,71,5,f +7869,6259,72,2,f +7869,63965,15,1,f +7869,63965,71,2,f +7869,64567,80,2,t +7869,64567,80,3,f +7869,64644,0,2,f +7869,64799,0,1,f +7869,6536,14,1,f +7869,6541,4,4,f +7869,6541,14,1,f +7869,6541,72,8,f +7869,6587,28,8,f +7869,6588,47,1,f +7869,6636,0,2,f +7869,6636,71,6,f +7869,6636,15,6,f +7869,6636,72,6,f +7869,6636,70,17,f +7869,72454,0,1,f +7869,75159stk01,9999,1,f +7869,75937,0,2,f +7869,75c14,0,1,f +7869,75c32,0,1,f +7869,78c02,179,1,t +7869,78c02,179,3,f +7869,78c06,179,3,f +7869,85943,72,1,f +7869,85984,72,10,f +7869,85984pr0006,72,2,f +7869,87079,71,4,f +7869,87087,4,2,f +7869,87407,71,1,f +7869,87544,71,15,f +7869,87552,71,4,f +7869,87620,71,8,f +7869,87620,72,4,f +7869,87989,71,1,f +7869,87989,71,1,t +7869,88072,71,2,f +7869,90194,0,1,f +7869,90194,72,2,f +7869,90202,0,1,f +7869,92280,71,1,f +7869,92280,0,4,f +7869,92738,0,3,f +7869,92746,19,2,f +7869,92758,308,1,f +7869,92947,71,2,f +7869,93274,72,2,f +7869,96874,25,1,t +7869,970c00,15,1,f +7869,970c00,72,1,f +7869,970c00,4,2,f +7869,970c00,0,4,f +7869,970c00,71,1,f +7869,970c00pr0583,0,2,f +7869,970c00pr0625,272,1,f +7869,970c00pr0632,308,1,f +7869,970c00pr0650,15,1,f +7869,970c00pr0687,19,1,f +7869,970c00pr0693,297,1,f +7869,970c00pr0717,0,1,f +7869,970c00pr0718,0,1,f +7869,970c00pr0719,15,4,f +7869,970c00pr1112,0,1,f +7869,973c63,308,1,f +7869,973pr0810c01,4,2,f +7869,973pr0811c01,0,2,f +7869,973pr2301c01,0,1,f +7869,973pr2648c01,15,1,f +7869,973pr2697c01,0,1,f +7869,973pr2699c01,308,1,f +7869,973pr2766c01,0,1,f +7869,973pr2767c01,15,4,f +7869,973pr3012c01,0,1,f +7869,973pr3258c01,297,1,f +7869,973pr3520c01,0,1,f +7869,973pr3521c01,71,1,f +7869,973pr3522c01,72,1,f +7869,973pr3523c01,15,1,f +7869,973pr3524c01,0,2,f +7869,973pr3533c01,0,1,f +7869,98108,0,2,f +7869,98138,0,2,f +7869,98138,0,1,t +7869,98286,71,1,f +7869,98313,0,4,f +7869,99780,14,2,f +7869,99781,15,4,f +7870,2540,2,1,f +7870,3004,2,1,f +7870,3023,2,1,f +7870,3070b,2,1,t +7870,3070b,2,2,f +7870,4070,2,2,f +7870,4081b,72,2,f +7870,48729b,72,1,f +7870,48729b,72,1,t +7870,54200,2,1,t +7870,54200,2,2,f +7870,54200,40,2,f +7870,54200,40,1,t +7872,3626bpr0520,14,1,f +7872,3678bpb012,0,1,f +7872,59233pat0001,41,1,f +7872,6131,0,1,f +7872,973pr1377c01,0,1,f +7873,90609,72,4,f +7873,90617,0,4,f +7873,90625,0,1,f +7873,90639,4,2,f +7873,90639pr0018,34,1,f +7873,90641,4,1,f +7873,90652,179,1,f +7873,90661,4,2,f +7873,92199,14,1,f +7873,92201,4,1,f +7873,92217,148,2,f +7873,92221,179,2,f +7873,92227,4,1,f +7873,93277,14,1,f +7873,93571,0,2,f +7873,93575,4,2,f +7874,bball01,9999,1,f +7875,32054,0,1,f +7875,32062,4,2,f +7875,32174,27,5,f +7875,32348,27,1,f +7875,3673,71,5,f +7875,41677,0,1,f +7875,43093,1,2,f +7875,4519,71,4,f +7875,47296,27,2,f +7875,47297,288,2,f +7875,47328,288,2,f +7875,47330,288,2,f +7875,48729a,0,2,f +7875,50898,27,2,f +7875,50923,72,1,f +7875,53451,15,4,f +7875,53451,15,1,t +7875,53568,288,2,f +7875,57553pat0001,34,1,f +7875,57554,135,2,f +7875,57555,46,2,f +7875,57556,135,1,f +7875,57562pat0001,34,3,f +7875,57568,135,2,f +7875,58176,33,2,f +7875,6587,72,1,f +7876,3020,25,1,f +7876,3039,25,1,f +7876,3040b,25,2,f +7876,32064a,25,1,f +7876,3660,25,1,f +7876,3665,25,2,f +7876,3794a,25,1,f +7876,40379,25,1,f +7876,4286,25,2,f +7876,4589,25,1,f +7876,6127,25,1,f +7876,6128,25,1,f +7876,6541,25,2,f +7876,x158,25,1,f +7879,2357,15,2,f +7879,2441,0,1,f +7879,2444,4,2,f +7879,2445,0,5,f +7879,2454a,15,7,f +7879,2513,4,1,f +7879,2730,15,2,f +7879,2952,7,2,f +7879,2982c01,1,1,f +7879,2983,7,2,f +7879,2985,4,2,f +7879,2986,4,1,f +7879,3001,15,1,f +7879,3003,0,2,f +7879,3004,15,11,f +7879,3005,15,1,f +7879,3008,15,2,f +7879,3021,4,1,f +7879,3022,4,1,f +7879,3023,4,1,f +7879,3024,47,2,f +7879,3036,4,1,f +7879,3065,36,1,f +7879,3068b,1,1,f +7879,3068b,0,1,f +7879,3068b,7,1,f +7879,3068b,4,1,f +7879,3068b,15,1,f +7879,3297,0,2,f +7879,3460,4,1,f +7879,3623,0,2,f +7879,3626bpr0001,14,1,f +7879,3641,0,4,f +7879,3647,7,2,f +7879,3650c,7,1,f +7879,3673,7,4,f +7879,3675,0,2,f +7879,3700,15,4,f +7879,3700,0,2,f +7879,3702,15,1,f +7879,3704,0,1,f +7879,3705,0,2,f +7879,3707,0,1,f +7879,3709,0,4,f +7879,3710,0,4,f +7879,3713,7,5,f +7879,3755,15,5,f +7879,3788,4,1,f +7879,3795,0,3,f +7879,3829c01,4,1,f +7879,3857,2,1,f +7879,3894,15,1,f +7879,3895,15,1,f +7879,3901,0,1,f +7879,3941,0,1,f +7879,3956,0,1,f +7879,3960,15,1,f +7879,4032a,0,2,f +7879,4161,0,8,f +7879,4185,7,1,f +7879,4275b,0,2,f +7879,4282,0,1,f +7879,4286,4,2,f +7879,4531,0,2,f +7879,4624,14,4,f +7879,47899c01,4,1,f +7879,4865a,4,1,f +7879,5306bc069,0,1,f +7879,5306bc162,0,2,f +7879,6035,15,1,f +7879,6064,2,1,f +7879,6093,0,1,f +7879,6159,4,2,f +7879,6538b,7,1,f +7879,6553,14,1,f +7879,6587,8,1,f +7879,71082,47,1,f +7879,71128,383,1,f +7879,85544,1,2,f +7879,970c00,4,1,f +7879,973c01,15,1,f +7879,bin01,4,1,f +7879,x157,15,5,f +7883,122c02,0,2,f +7883,2412b,15,1,f +7883,2436,4,1,f +7883,3023,4,2,f +7883,3024,46,2,f +7883,3024,36,2,f +7883,3626apr0001,14,1,f +7883,3641,0,4,f +7883,3666,4,2,f +7883,3710,4,1,f +7883,3788,4,1,f +7883,3795,0,1,f +7883,3823,47,1,f +7883,3829c01,4,1,f +7883,3834,15,1,f +7883,4083,4,1,f +7883,4211,4,1,f +7883,6141,33,2,f +7883,970c00,0,1,f +7883,973p21c01,0,1,f +7884,14226c11,0,2,f +7884,2357,4,4,f +7884,2362b,15,2,f +7884,2412b,0,1,f +7884,2413,4,1,f +7884,2420,7,4,f +7884,2420,0,2,f +7884,2431,4,6,f +7884,2432,8,1,f +7884,2433,0,2,f +7884,2434,7,2,f +7884,2436,4,1,f +7884,2444,4,13,f +7884,2450,4,2,f +7884,2452,0,1,f +7884,2465,0,2,f +7884,2529,6,4,f +7884,2625,8,1,f +7884,2653,7,2,f +7884,2736,7,2,f +7884,2741,0,2,f +7884,2780,0,16,f +7884,2877,4,4,f +7884,2880,0,7,f +7884,2921,8,2,f +7884,3001,14,1,f +7884,3002,4,2,f +7884,3004,4,1,f +7884,3005,4,10,f +7884,30056,4,2,f +7884,3008,4,3,f +7884,3008,7,1,f +7884,3008,15,2,f +7884,3009,4,8,f +7884,3009,0,2,f +7884,3010,0,2,f +7884,3010,15,1,f +7884,3010,4,6,f +7884,3020,15,1,f +7884,3020,4,10,f +7884,3020,8,2,f +7884,3020,0,1,f +7884,3021,4,9,f +7884,3022,4,8,f +7884,3023,4,14,f +7884,3023,7,9,f +7884,3024,4,8,f +7884,3027,4,3,f +7884,3031,0,3,f +7884,3031,4,4,f +7884,3032,4,2,f +7884,3034,4,1,f +7884,3034,0,2,f +7884,30357,4,14,f +7884,30363,4,1,f +7884,30383,8,2,f +7884,30407,6,2,f +7884,3040b,8,2,f +7884,3040b,15,2,f +7884,3040b,4,10,f +7884,30414,7,2,f +7884,30503,4,2,f +7884,30504,4,2,f +7884,30540,15,1,f +7884,30565,4,2,f +7884,3063b,4,2,f +7884,3068b,4,2,f +7884,3068b,15,2,f +7884,3069b,4,6,f +7884,3069bpa0,19,1,f +7884,3070b,4,1,t +7884,3070b,4,2,f +7884,3070bpr0007,7,1,t +7884,3070bpr0007,7,2,f +7884,32000,0,4,f +7884,32000,4,4,f +7884,32002,8,1,t +7884,32002,8,8,f +7884,32064b,7,5,f +7884,32073,0,4,f +7884,32123b,7,6,f +7884,32123b,7,1,t +7884,32124,7,1,f +7884,32184,7,2,f +7884,32192,0,1,f +7884,32293,4,2,f +7884,32294,4,4,f +7884,32294,6,8,f +7884,33286,0,2,f +7884,3455,7,1,f +7884,3456,4,4,f +7884,3460,4,3,f +7884,3622,15,1,f +7884,3622,4,6,f +7884,3622,0,2,f +7884,3623,4,12,f +7884,3623,8,4,f +7884,3623,15,1,f +7884,3660,4,2,f +7884,3665,15,2,f +7884,3665,7,2,f +7884,3666,4,12,f +7884,3700,7,3,f +7884,3700,4,1,f +7884,3702,4,1,f +7884,3708,0,2,f +7884,3710,0,1,f +7884,3710,15,1,f +7884,3710,4,26,f +7884,3713,7,1,t +7884,3713,7,3,f +7884,3794a,7,8,f +7884,3794a,4,2,f +7884,3795,4,5,f +7884,3795,8,2,f +7884,3830,4,6,f +7884,3831,4,6,f +7884,3837,6,1,f +7884,3894,0,1,f +7884,3894,4,2,f +7884,3933,4,3,f +7884,3934,4,3,f +7884,3941,1,4,f +7884,3942c,8,1,f +7884,3960,4,2,f +7884,40244,0,2,f +7884,4032a,1,1,f +7884,4032a,7,2,f +7884,4150p05,4,2,f +7884,41532,0,1,f +7884,4162,4,2,f +7884,4162,15,2,f +7884,41769,4,4,f +7884,41770,4,4,f +7884,4185,6,3,f +7884,42023,4,2,f +7884,42023,15,2,f +7884,42060,4,3,f +7884,42061,4,3,f +7884,4213,4,4,f +7884,4215b,15,2,f +7884,4274,7,1,t +7884,4274,7,16,f +7884,4275b,7,4,f +7884,4275b,4,2,f +7884,4276b,7,4,f +7884,4282,4,2,f +7884,4286,15,2,f +7884,4287,15,1,f +7884,4315,4,4,f +7884,4349,7,6,f +7884,4477,4,6,f +7884,4497,6,2,f +7884,4510,7,2,f +7884,4531,4,4,f +7884,4589,0,2,f +7884,4599a,0,2,f +7884,4740,8,18,f +7884,6005,4,4,f +7884,6019,7,4,f +7884,6091,0,4,f +7884,6091,4,4,f +7884,6111,7,2,f +7884,6112,4,2,f +7884,6141,0,2,f +7884,6141,7,1,t +7884,6141,0,1,t +7884,6141,4,2,f +7884,6141,7,7,f +7884,6141,4,1,t +7884,6178,4,2,f +7884,6179,4,6,f +7884,6179,15,4,f +7884,6180,4,6,f +7884,6205,4,6,f +7884,6215,4,2,f +7884,6232,14,2,f +7884,6536,0,2,f +7884,6541,4,10,f +7884,6558,0,4,f +7884,6628,0,2,f +7884,6636,4,20,f +7884,73983,4,2,f +7884,75535,0,1,f +7884,75535,4,3,f +7885,3001a,4,13,f +7885,3001a,14,3,f +7885,3001a,0,7,f +7885,3002a,4,6,f +7885,3002a,14,4,f +7885,3003,4,10,f +7885,3003,1,3,f +7885,3003,0,15,f +7885,3004,4,14,f +7885,3005,14,6,f +7885,3008,4,2,f +7885,3009,47,6,f +7885,3009,4,10,f +7885,3010,14,3,f +7885,3010,4,4,f +7885,3022,4,3,f +7885,3026,4,1,f +7885,3030,4,1,f +7885,3031,4,1,f +7885,3032,4,1,f +7885,3034,4,2,f +7885,3037,4,4,f +7885,3038,4,14,f +7885,3040b,4,8,f +7885,3062a,1,6,f +7885,3127b,4,1,f +7885,3149c01,4,1,f +7885,3183a,4,2,f +7885,3184,4,2,f +7885,3403,4,1,f +7885,3404,4,1,f +7885,3456,4,2,f +7885,3483,0,18,f +7885,3613,0,12,f +7885,3614b,14,12,f +7885,3660,4,28,f +7885,559c01,4,1,f +7885,685px2,14,2,f +7885,685px3,14,2,f +7885,685px4,14,2,f +7885,7039,4,18,f +7885,7049b,0,9,f +7885,792c03,0,6,f +7885,850,14,1,f +7885,851a,14,1,f +7885,852,14,1,f +7885,bb15a,4,6,f +7885,rb00164,0,1,f +7886,251,0,1,f +7886,3149c01,1,1,f +7886,3324c01,1,1,f +7886,3679,7,2,f +7886,3680,15,1,f +7886,3730,0,1,f +7886,3731,0,1,f +7886,3830,15,2,f +7886,3831,15,2,f +7886,3937,7,2,f +7886,3938,7,2,f +7886,4275b,0,4,f +7886,4276b,0,2,f +7886,4504,0,2,f +7886,4531,0,2,f +7887,4023,0,2,f +7887,4178,0,1,f +7887,73092,0,2,f +7888,3001,15,1,f +7888,3002,0,2,f +7888,3004,15,1,f +7888,3020,0,1,f +7888,3021,15,3,f +7888,3021,0,2,f +7888,3023,15,2,f +7888,3039,15,2,f +7888,3062b,14,5,f +7888,3063b,15,2,f +7888,3622,15,1,f +7888,3623,14,3,f +7888,3660,15,2,f +7888,3794a,15,4,f +7888,4070,15,5,f +7888,4589,4,1,f +7888,4871,15,1,f +7888,6141,0,1,t +7888,6141,0,4,f +7891,11214,72,2,f +7891,11946,0,1,f +7891,11947,0,1,f +7891,11954,272,2,f +7891,12799,72,1,f +7891,18352,72,1,f +7891,2723,0,2,f +7891,2780,0,18,f +7891,2780,0,1,t +7891,2815,0,2,f +7891,32034,0,1,f +7891,32062,4,6,f +7891,32073,71,2,f +7891,32123b,71,6,f +7891,32123b,71,1,t +7891,32140,71,1,f +7891,32140,15,2,f +7891,32184,71,2,f +7891,32250,15,4,f +7891,32278,0,3,f +7891,32316,0,3,f +7891,32449,15,2,f +7891,3706,0,1,f +7891,41239,15,1,f +7891,41669,15,2,f +7891,41678,71,2,f +7891,4185,71,2,f +7891,43093,1,3,f +7891,4519,71,5,f +7891,47994,0,1,f +7891,48989,71,3,f +7891,55978,0,2,f +7891,55982,0,1,f +7891,56145,71,2,f +7891,60484,72,2,f +7891,60485,71,1,f +7891,61800,15,1,f +7891,62462,80,3,f +7891,63869,71,3,f +7891,64393,15,1,f +7891,64681,15,1,f +7891,6536,15,2,f +7891,6558,1,16,f +7891,6587,28,1,f +7891,6632,1,4,f +7891,87083,72,1,f +7891,92279,40,1,f +7893,3001,4,6,f +7893,3001,14,8,f +7893,3001,1,10,f +7893,3002,14,2,f +7893,3003,2,3,f +7893,3003,14,5,f +7893,3003,1,5,f +7893,3003,4,5,f +7893,3004,14,8,f +7893,3004,2,4,f +7893,3004,4,6,f +7893,3004,1,4,f +7893,3005,4,6,f +7893,3005,2,4,f +7893,3005,1,6,f +7893,3005pe1,14,2,f +7893,3020,0,2,f +7893,3021,4,2,f +7893,3022,7,2,f +7893,3022,15,4,f +7893,3039,14,2,f +7893,3040b,14,2,f +7893,3665,14,2,f +7897,2352,14,2,f +7897,2456,14,2,f +7897,2456,4,2,f +7897,3001,0,4,f +7897,3001,4,14,f +7897,3001,15,8,f +7897,3001,14,14,f +7897,3001,1,16,f +7897,3001,2,4,f +7897,3001pr1,14,1,f +7897,3002,4,4,f +7897,3002,0,4,f +7897,3002,15,4,f +7897,3002,14,4,f +7897,3002,1,4,f +7897,3003,15,18,f +7897,3003,1,22,f +7897,3003,14,22,f +7897,3003,2,8,f +7897,3003,0,10,f +7897,3003,4,22,f +7897,3003pe1,14,2,f +7897,3006,1,1,f +7897,30076,4,1,f +7897,30077,4,2,f +7897,30144p01,4,1,f +7897,30145,1,2,f +7897,3483,0,6,f +7897,4204,2,1,f +7897,4727,2,4,f +7897,4728,14,1,f +7897,4728,4,1,f +7897,4728,15,1,f +7897,4728,1,1,f +7897,4743,14,1,f +7897,4744pr0002,4,1,f +7897,4744pr0004,1,1,f +7897,4744px5,2,1,f +7897,4744px6,6,1,f +7897,4745,14,2,f +7897,4747,4,1,f +7897,4748,4,1,f +7897,600,15,1,f +7897,6007,2,1,f +7897,601,15,2,f +7897,6213px1,4,1,f +7897,6215,2,4,f +7897,6215,4,4,f +7897,6216,4,1,f +7897,6216,2,1,f +7897,6232,4,2,f +7897,6235,1,1,f +7897,6236,1,1,f +7897,6244px1,14,1,f +7897,6248,14,6,f +7897,6249,4,1,f +7899,2456,14,2,f +7899,2456,1,2,f +7899,2456,7,2,f +7899,2456,4,2,f +7899,2456,15,2,f +7899,3001,14,14,f +7899,3001,1,14,f +7899,3001,0,8,f +7899,3001,15,14,f +7899,3001,25,4,f +7899,3001,4,14,f +7899,3001,2,4,f +7899,3001,7,4,f +7899,3002,7,2,f +7899,3002,1,8,f +7899,3002,14,8,f +7899,3002,0,6,f +7899,3002,15,10,f +7899,3002,2,8,f +7899,3002,25,2,f +7899,3002,4,8,f +7899,3003,4,30,f +7899,3003,0,18,f +7899,3003,33,12,f +7899,3003,7,6,f +7899,3003,1,30,f +7899,3003,2,18,f +7899,3003,15,30,f +7899,3003,14,27,f +7899,3003,36,12,f +7899,3003,25,6,f +7899,3004,15,40,f +7899,3004,36,14,f +7899,3004,7,8,f +7899,3004,8,10,f +7899,3004,47,8,f +7899,3004,25,8,f +7899,3004,33,14,f +7899,3004,2,22,f +7899,3004,1,36,f +7899,3004,14,28,f +7899,3004,4,34,f +7899,3004,0,28,f +7899,3005,15,28,f +7899,3005,2,14,f +7899,3005,33,4,f +7899,3005,1,30,f +7899,3005,4,30,f +7899,3005,0,26,f +7899,3005pe1,14,4,f +7899,3005pe2,8,2,f +7899,3005pe3,8,2,f +7899,3005px2,14,2,f +7899,3007,4,2,f +7899,3007,1,2,f +7899,3007,15,2,f +7899,3007,14,2,f +7899,3008,7,2,f +7899,3009,4,4,f +7899,3009,15,4,f +7899,3009,14,2,f +7899,3009,1,4,f +7899,3010,14,6,f +7899,3010,8,2,f +7899,3010,25,2,f +7899,3010,36,2,f +7899,3010,2,4,f +7899,3010,1,6,f +7899,3010,15,6,f +7899,3010,0,4,f +7899,3010,4,6,f +7899,3010p01,14,1,f +7899,3020,4,2,f +7899,3020,7,2,f +7899,3020,15,4,f +7899,3020,1,2,f +7899,3020,2,2,f +7899,3020,14,2,f +7899,3020,0,2,f +7899,3020,25,2,f +7899,3021,15,4,f +7899,3021,1,4,f +7899,3021,4,2,f +7899,3021,8,2,f +7899,3021,14,2,f +7899,3021,25,2,f +7899,3021,2,2,f +7899,3022,1,6,f +7899,3022,15,6,f +7899,3022,8,2,f +7899,3022,14,4,f +7899,3022,0,2,f +7899,3022,2,2,f +7899,3022,4,4,f +7899,3034,14,2,f +7899,3034,4,2,f +7899,3034,1,2,f +7899,3034,15,2,f +7899,3037,4,8,f +7899,3039,15,4,f +7899,3039,33,4,f +7899,3039,47,2,f +7899,3039,36,2,f +7899,3039,1,4,f +7899,3039,8,2,f +7899,3039,4,6,f +7899,3040b,4,4,f +7899,3040b,15,4,f +7899,3040b,14,2,f +7899,3040b,2,2,f +7899,3040b,1,4,f +7899,3040b,7,2,f +7899,3040b,25,4,f +7899,3040b,8,2,f +7899,3041,4,2,f +7899,3043,4,2,f +7899,3298,1,4,f +7899,3298,15,4,f +7899,3298,4,4,f +7899,3622,8,2,f +7899,3622,2,2,f +7899,3660,15,2,f +7899,3660,4,2,f +7899,3660,1,2,f +7899,3665,14,2,f +7899,3665,7,2,f +7899,3665,8,2,f +7899,3665,15,4,f +7899,3665,1,4,f +7899,3665,4,4,f +7899,3665,25,4,f +7899,3665,2,2,f +7899,3710,15,2,f +7899,3710,4,2,f +7899,3747b,1,2,f +7899,3795,1,2,f +7899,3795,15,2,f +7899,3795,4,2,f +7899,3795,14,2,f +7899,3957a,1,1,f +7899,4286,15,4,f +7899,4286,4,4,f +7899,4286,1,4,f +7899,4286,8,2,f +7899,4287,8,2,f +7899,4287,1,4,f +7899,4287,4,4,f +7899,4287,15,4,f +7899,4495b,14,1,f +7901,3004,72,1,f +7901,3021,0,1,f +7901,3176,0,1,f +7901,32013,0,2,f +7901,32062,0,1,f +7901,32062,0,1,t +7901,32064b,72,3,f +7901,3626bpb0165,14,1,f +7901,3673,71,1,f +7901,3673,71,1,t +7901,3707,0,1,f +7901,4195285,89,1,f +7901,43373,25,1,f +7901,43374,15,1,f +7901,43702,25,1,f +7901,45522,110,1,f +7901,970c00,110,1,f +7901,973bpb179c01,110,1,f +7903,2489,6,1,f +7903,2542,6,2,f +7903,2570,8,1,f +7903,3004,4,1,f +7903,3023,0,2,f +7903,3023,4,2,f +7903,3024,0,1,t +7903,3024,4,1,t +7903,3024,4,1,f +7903,3024,0,2,f +7903,3032,1,1,f +7903,3623,4,2,f +7903,3626apr0001,14,2,f +7903,3666,1,2,f +7903,3710,0,3,f +7903,3710,4,1,f +7903,3794a,0,2,f +7903,3795,4,1,f +7903,3844,8,2,f +7903,3846p46,7,1,f +7903,4032a,6,1,f +7903,4081b,4,1,f +7903,4088,0,1,f +7903,4495b,4,1,f +7903,4589,0,8,f +7903,4854,0,1,f +7903,4855,0,2,f +7903,4859,1,2,f +7903,6141,14,4,f +7903,970x026,1,1,f +7903,970x026,4,1,f +7903,973p41c01,1,1,f +7903,973p41c03,4,1,f +7904,2335p30,15,1,f +7904,2417,2,1,f +7904,2527,6,1,f +7904,2544,0,1,f +7904,2562,6,1,f +7904,3002,7,1,f +7904,3004,7,2,f +7904,3032,14,1,f +7904,3622,7,1,f +7904,3626bp35,14,1,f +7904,3679,7,1,f +7904,3680,0,1,f +7904,3957a,0,1,f +7904,84943,8,1,f +7904,970c00,0,1,f +7904,973p32c01,14,1,f +7906,14226c31,0,15,f +7906,2445,4,8,f +7906,2453a,14,10,f +7906,2454a,25,10,f +7906,2458,1,20,f +7906,2486,14,15,f +7906,2637,71,25,f +7906,2780,0,50,f +7906,30000,1,25,f +7906,3001,27,140,f +7906,3003,5,80,f +7906,3004,25,40,f +7906,3007,0,60,f +7906,3020,19,10,f +7906,3021,25,10,f +7906,30249,71,6,f +7906,3030,0,40,f +7906,3031,4,10,f +7906,3039,25,180,f +7906,3046a,0,40,f +7906,30526,71,20,f +7906,32013,0,25,f +7906,32014,1,25,f +7906,32034,71,80,f +7906,32064b,15,10,f +7906,32199,72,20,f +7906,32200,0,30,f +7906,32201,27,24,f +7906,32278,27,12,f +7906,32580,179,20,f +7906,3460,14,10,f +7906,3626bpr0001,14,10,f +7906,3626bpr0386,14,10,f +7906,3626bpr0387,14,10,f +7906,3647,72,10,f +7906,3648b,72,10,f +7906,3649,71,30,f +7906,3650c,71,10,f +7906,3673,71,100,f +7906,3679,71,12,f +7906,3680,0,12,f +7906,3700,0,30,f +7906,3702,4,12,f +7906,3703,1,8,f +7906,3705,0,6,f +7906,3706,0,10,f +7906,3737,0,24,f +7906,3738,0,6,f +7906,3749,19,50,f +7906,3795,1,10,f +7906,3832,2,10,f +7906,3832,0,10,f +7906,3832,15,10,f +7906,3894,4,8,f +7906,3895,4,8,f +7906,3937,71,14,f +7906,3938,0,6,f +7906,4185,27,10,f +7906,4207,15,20,f +7906,4282,14,8,f +7906,44300,71,5,f +7906,44302a,71,5,f +7906,4477,1,16,f +7906,4477,2,10,f +7906,46212,41,15,f +7906,4729,1,50,f +7906,47996,71,6,f +7906,54572,151,3,f +7906,57028c01,71,4,f +7906,57539,0,20,f +7906,57539,25,12,f +7906,57796,72,4,f +7906,58497,0,4,f +7906,60169,72,20,f +7906,60479,4,14,f +7906,60479,0,10,f +7906,6108,15,10,f +7906,6134,4,8,f +7906,6232,4,50,f +7906,6232,19,50,f +7906,75c14,4,25,f +7906,76138,71,6,f +7906,78c14,0,25,f +7906,78c18,179,45,f +7906,85546,14,8,f +7906,89157,27,8,f +7906,970c00,1,10,f +7906,970c00,0,10,f +7906,970c00,15,10,f +7906,973c01,1,10,f +7906,973c01,15,10,f +7906,973c01,4,10,f +7906,98460,15,8,f +7908,12592,0,1,f +7908,12602,14,1,f +7908,14721,4,1,f +7908,16701,0,1,f +7908,16856,71,1,f +7908,17317,0,1,f +7908,17478,1,1,f +7908,17494,4,1,f +7908,3011,10,2,f +7908,3437,25,4,f +7908,3437,10,2,f +7908,3437,14,2,f +7908,3437,85,4,f +7908,40666,14,5,f +7908,51703,182,1,f +7908,60770,10,1,f +7908,6474,10,2,f +7908,75115pr0022,85,1,f +7908,76371,25,4,f +7908,92009,14,1,f +7908,92011,4,1,f +7908,98223,85,1,f +7908,98233,4,1,f +7909,11055,71,2,f +7909,11303,4,1,f +7909,11476,71,2,f +7909,11477,0,2,f +7909,15068,0,2,f +7909,15068,71,3,f +7909,15712,0,2,f +7909,18674,15,1,f +7909,2412b,71,6,f +7909,2419,71,1,f +7909,24201,71,4,f +7909,24299,0,1,f +7909,24307,0,1,f +7909,2432,72,2,f +7909,2446,0,1,f +7909,2446,4,1,f +7909,2447,40,2,f +7909,2447,40,1,t +7909,2508,0,1,f +7909,2654,0,3,f +7909,26603,19,2,f +7909,3001,19,1,f +7909,30031,72,2,f +7909,3010,4,1,f +7909,3010,71,2,f +7909,30157,72,2,f +7909,3020,1,2,f +7909,3020,0,4,f +7909,3020,15,1,f +7909,3022,15,2,f +7909,3023,71,2,f +7909,3023,15,7,f +7909,3023,36,6,f +7909,3031,0,1,f +7909,3031,4,1,f +7909,3032,71,1,f +7909,3034,0,1,f +7909,3036,71,1,f +7909,30363,71,1,f +7909,3039,19,2,f +7909,30414,0,1,f +7909,3068b,71,2,f +7909,3069b,46,2,f +7909,3069b,2,4,f +7909,3069b,0,1,f +7909,3069b,36,2,f +7909,3070b,0,2,f +7909,3070b,15,2,f +7909,3070b,15,1,t +7909,3070b,0,1,t +7909,32028,71,4,f +7909,3460,71,2,f +7909,3623,0,2,f +7909,3626cpr1147,14,1,f +7909,3626cpr2113,14,1,f +7909,3665,71,2,f +7909,3666,15,3,f +7909,3666,0,1,f +7909,3710,70,1,f +7909,3795,15,1,f +7909,3795,14,1,f +7909,3795,4,1,f +7909,3823,40,1,f +7909,3829c01,4,1,f +7909,3832,72,1,f +7909,3941,15,1,f +7909,3958,0,1,f +7909,4006,0,1,f +7909,4032a,4,1,f +7909,4032a,2,1,f +7909,4162,1,2,f +7909,4282,71,2,f +7909,43722,71,1,f +7909,43723,71,1,f +7909,44674,14,1,f +7909,44674,4,1,f +7909,4477,72,2,f +7909,4477,15,2,f +7909,4488,71,2,f +7909,4599b,71,1,t +7909,4599b,71,1,f +7909,4600,0,4,f +7909,47457,4,1,f +7909,4865b,19,2,f +7909,48729b,72,1,f +7909,48729b,72,1,t +7909,52031,0,2,f +7909,54200,47,4,f +7909,54200,0,1,t +7909,54200,47,1,t +7909,54200,0,2,f +7909,55981,0,4,f +7909,6014b,71,9,f +7909,60478,71,2,f +7909,60481,0,2,f +7909,6141,46,1,t +7909,6141,46,4,f +7909,63868,72,4,f +7909,63965,72,1,f +7909,6636,19,2,f +7909,6636,0,2,f +7909,73983,4,1,f +7909,85984,0,2,f +7909,85984,4,2,f +7909,85984,14,2,f +7909,87079,19,1,f +7909,87079,71,1,f +7909,87087,71,2,f +7909,87697,0,9,f +7909,88072,0,3,f +7909,88283,484,1,f +7909,92280,71,1,f +7909,92402,0,4,f +7909,92409,0,2,f +7909,92583,40,1,f +7909,92950,71,2,f +7909,93593,71,2,f +7909,970c00,72,1,f +7909,970c00,272,1,f +7909,973pr3451c01,71,1,f +7909,973pr3659c01,15,1,f +7909,98263,71,1,f +7909,98282,72,2,f +7909,99206,71,4,f +7909,99207,0,2,f +7909,99780,0,4,f +7910,2458,4,1,f +7910,3003,4,1,f +7910,3020,1,1,f +7910,3039,47,1,f +7910,3298,4,1,f +7910,3710,1,2,f +7910,6041,0,1,f +7913,2569,0,1,f +7913,2780,0,2,f +7913,30173a,0,1,f +7913,32039,0,1,f +7913,32062,0,2,f +7913,32073,0,1,f +7913,32123b,7,2,f +7913,32165,3,1,f +7913,32166,2,2,f +7913,32168,2,1,f +7913,32171pb037,2,1,f +7913,32171pb050,22,1,f +7913,32172,3,2,f +7913,32173,2,3,f +7913,32174,3,5,f +7913,32175,2,2,f +7913,32176,2,1,f +7913,32194,3,1,f +7913,3649,2,1,f +7913,3705,0,1,f +7913,3706,0,1,f +7913,4019,3,1,f +7913,4716,0,1,f +7913,x209pb07,0,1,f +7914,3626apr0001,14,6,f +7914,3838,15,2,f +7914,3838,14,2,f +7914,3838,4,2,f +7914,3842a,14,2,f +7914,3842a,4,2,f +7914,3842a,15,2,f +7914,3959,0,1,f +7914,3962a,0,1,f +7914,4006,0,1,f +7914,4349,0,1,f +7914,4360,0,1,f +7914,4479,0,1,f +7914,970c00,15,2,f +7914,970c00,14,2,f +7914,970c00,4,2,f +7914,973p90c02,4,2,f +7914,973p90c04,14,2,f +7914,973p90c05,15,2,f +7915,10048,84,1,f +7915,11010,334,1,f +7915,11153,2,2,f +7915,12825,0,1,f +7915,2420,70,1,f +7915,2423,2,4,f +7915,2431,2,2,f +7915,3005,484,2,f +7915,3005,2,4,f +7915,3021,2,4,f +7915,3022,2,1,f +7915,3023,2,11,f +7915,3023,19,1,f +7915,3024,2,3,f +7915,3024,70,3,f +7915,3030,28,1,f +7915,3036,2,2,f +7915,30374,70,1,f +7915,3040b,2,6,f +7915,3062b,70,6,f +7915,3069b,28,1,f +7915,3069b,2,10,f +7915,3069b,70,1,f +7915,3069b,71,1,f +7915,3070b,2,2,f +7915,3070b,72,1,f +7915,32028,71,1,f +7915,32028,70,6,f +7915,3460,19,1,f +7915,3623,70,1,f +7915,3626cpr1081,78,1,f +7915,3666,2,1,f +7915,3700,19,4,f +7915,3710,70,4,f +7915,3710,2,2,f +7915,3832,2,1,f +7915,4162,2,2,f +7915,41879a,28,1,f +7915,4274,1,1,f +7915,4490,71,1,f +7915,4740,2,1,f +7915,4865b,28,3,f +7915,54200,2,4,f +7915,60478,0,1,f +7915,6141,46,2,f +7915,6141,70,9,f +7915,6541,19,2,f +7915,85984,2,6,f +7915,973pr2179c01,320,1,f +7915,98138,297,1,f +7916,24787,25,1,f +7916,3068bpr0294,272,1,f +7916,3626cpr1889,78,1,f +7916,88646,0,1,f +7916,970c00pr1041,0,1,f +7916,973pr3330c01,0,1,f +7917,2543,4,1,t +7917,2543,4,1,f +7917,3626bpr0387,14,1,f +7917,3852b,191,1,f +7917,3852b,191,1,t +7917,6132,15,1,f +7917,970x026,14,1,f +7917,973c11,14,1,f +7918,12602,14,1,f +7918,3011,27,1,f +7918,31352,0,2,f +7918,3437,27,1,f +7918,40666,4,3,f +7918,44524,4,1,f +7918,47394pb160,9999,1,f +7918,47394pb161,9999,1,f +7918,47509,135,1,f +7918,51708,179,1,f +7918,51725pr05,15,1,f +7918,58498c01,0,1,f +7918,60777px1,15,1,f +7918,6474pb24,14,1,f +7918,6474pb29,1,1,f +7918,85345,0,4,f +7918,85347,71,1,f +7918,98218,4,1,f +7918,98252,27,2,f +7918,98541c01pb01,27,1,f +7918,99565c01,71,6,f +7918,dt001,4,1,f +7919,10p0a,2,1,f +7919,21,47,1,f +7919,3001a,0,1,f +7919,3001a,1,2,f +7919,3003,0,1,f +7919,3003,14,6,f +7919,3004,1,24,f +7919,3004,14,4,f +7919,3004,0,2,f +7919,3004,47,1,f +7919,3004,4,5,f +7919,3005,14,8,f +7919,3005,0,4,f +7919,3006,14,1,f +7919,3008,0,3,f +7919,3008,14,10,f +7919,3009,4,3,f +7919,3009,0,1,f +7919,3009,14,9,f +7919,3010,14,8,f +7919,3010,1,2,f +7919,3010,0,1,f +7919,3010pb035u,0,1,f +7919,3020,0,4,f +7919,3020,1,3,f +7919,3020,4,1,f +7919,3021,0,1,f +7919,3021,1,4,f +7919,3022,1,7,f +7919,3022,4,1,f +7919,3023,0,2,f +7919,3029,4,1,f +7919,3030,0,2,f +7919,3033,0,1,f +7919,3035,0,2,f +7919,3036,0,1,f +7919,3039,1,2,f +7919,3081cc01,4,2,f +7919,3127b,4,1,f +7919,3137c01,0,5,f +7919,3139,0,4,f +7919,3176,7,2,f +7919,3192,4,1,f +7919,3193,4,1,f +7919,3228a,1,8,f +7919,3228a,1,2,t +7919,3464,4,4,f +7919,3471,2,1,f +7919,3579,14,1,f +7919,3581,14,2,f +7919,3641,0,10,f +7919,3644,4,2,f +7919,3659,14,6,f +7919,586c01,0,1,f +7919,7930,4,1,f +7919,8,1,4,f +7920,122c01,0,4,f +7920,16542,7,1,f +7920,298c02,0,1,f +7920,3001,4,1,f +7920,3003,4,1,f +7920,3004,4,41,f +7920,3005,4,18,f +7920,3008,4,3,f +7920,3009,4,10,f +7920,3010,4,10,f +7920,3020,4,1,f +7920,3020,0,7,f +7920,3021,4,4,f +7920,3022,4,1,f +7920,3022,0,1,f +7920,3023,0,1,f +7920,3023,15,1,f +7920,3023,4,12,f +7920,3024,36,4,f +7920,3024,33,6,f +7920,3024,4,3,f +7920,3024,46,4,f +7920,3028,4,1,f +7920,3033,0,2,f +7920,3034,0,1,f +7920,3034,15,1,f +7920,3039p23,15,1,f +7920,3039p32,15,1,f +7920,3040b,15,1,f +7920,3040p03,15,2,f +7920,3062b,0,2,f +7920,3062b,15,2,f +7920,3149c01,4,1,f +7920,3185,1,4,f +7920,3297,0,2,f +7920,3298,4,1,f +7920,3403,4,1,f +7920,3404,4,1,f +7920,3622,4,16,f +7920,3623,4,6,f +7920,3626apr0001,14,3,f +7920,3641,0,4,f +7920,3660,4,2,f +7920,3665,4,10,f +7920,3666,4,2,f +7920,3710,0,9,f +7920,3710,4,14,f +7920,3741,2,4,f +7920,3742,15,8,f +7920,3742,14,4,f +7920,3788,4,2,f +7920,3794a,15,4,f +7920,3795,0,1,f +7920,3795,4,6,f +7920,3821p09,4,2,f +7920,3822p09,4,2,f +7920,3823,47,1,f +7920,3829c01,15,2,f +7920,3832,0,6,f +7920,3834,15,2,f +7920,3835,7,2,f +7920,3838,15,1,f +7920,3853,1,7,f +7920,3855,47,7,f +7920,3861b,1,1,f +7920,3939,47,6,f +7920,3957a,15,2,f +7920,3962a,0,1,f +7920,3963,15,1,f +7920,4070,4,4,f +7920,4070,0,2,f +7920,4079,15,1,f +7920,4084,0,4,f +7920,4085b,0,2,f +7920,4085b,4,5,f +7920,4175,15,6,f +7920,4207,7,2,f +7920,4208,0,1,f +7920,4209,4,1,f +7920,4211,0,2,f +7920,4212b,0,1,f +7920,4213,4,2,f +7920,4214,4,1,f +7920,4216,4,28,f +7920,4217,4,4,f +7920,4218,47,18,f +7920,4219,1,2,f +7920,4315,4,1,f +7920,4445,4,1,f +7920,4460a,4,2,f +7920,4477,4,8,f +7920,4530,6,1,f +7920,4532,4,1,f +7920,4533,15,1,f +7920,4594,47,1,f +7920,4599a,15,2,f +7920,4733,0,2,f +7920,4864a,4,1,f +7920,4872,41,2,f +7920,6100p04,7,1,f +7920,73590c01a,0,3,f +7920,970c00,0,2,f +7920,970c00,1,1,f +7920,973p21c01,0,2,f +7920,973px61c02,15,1,f +7922,33009pb041,70,1,f +7922,3626bpb0912,14,1,f +7922,3899pr0002,15,1,f +7922,88646,0,1,f +7922,92083,308,1,f +7922,970c00pb247,28,1,f +7922,973pr2323c01,320,1,f +7924,2412b,0,1,f +7924,2412b,383,4,f +7924,2412b,14,2,f +7924,2431,7,1,f +7924,2436,14,2,f +7924,2437,41,1,f +7924,2456,14,1,f +7924,2465,0,2,f +7924,3001,383,1,f +7924,3001,14,1,f +7924,3003,0,1,f +7924,3004,0,2,f +7924,3010,14,7,f +7924,3020,14,1,f +7924,3020,4,1,f +7924,3021,14,1,f +7924,3022,7,1,f +7924,3022,14,1,f +7924,3023,14,1,f +7924,3023,7,4,f +7924,3024,47,2,f +7924,3031,14,1,f +7924,3032,14,1,f +7924,3040b,14,2,f +7924,3062b,14,2,f +7924,3068b,7,1,f +7924,3069b,14,2,f +7924,3188,14,1,f +7924,3189,14,1,f +7924,3626bp04,14,1,f +7924,3710,14,3,f +7924,3788,14,1,f +7924,3829c01,15,1,f +7924,4070,14,6,f +7924,4081b,14,2,f +7924,4085c,14,4,f +7924,4215b,14,1,f +7924,4315,14,1,f +7924,4474,14,1,f +7924,4485,1,1,f +7924,4858,14,1,f +7924,6014a,15,6,f +7924,6015,0,6,f +7924,6141,7,4,f +7924,6141,57,2,f +7924,6141,14,2,f +7924,6157,0,3,f +7924,71075,383,2,f +7924,71137,383,2,f +7924,71182,383,2,f +7924,71184,383,2,f +7924,970c00,1,1,f +7924,973pr1245c01,1,2,f +7925,2446,148,1,f +7925,2450,0,4,f +7925,2453a,70,4,f +7925,2454a,71,2,f +7925,2454a,0,2,f +7925,2490pr0005,288,1,f +7925,2570,148,1,f +7925,2586p4k,71,1,f +7925,2587pr0025,148,1,f +7925,2594,148,1,f +7925,2653,0,2,f +7925,2926,0,1,f +7925,3003,70,1,f +7925,3003,72,2,f +7925,3004,0,9,f +7925,3004,70,3,f +7925,30044,70,1,f +7925,30045,0,1,f +7925,3005,72,2,f +7925,30136,70,7,f +7925,30153,36,1,f +7925,3021,70,2,f +7925,3022,71,1,f +7925,3023,0,5,f +7925,30273,148,1,f +7925,30273,80,1,f +7925,3032,2,2,f +7925,3034,70,1,f +7925,3034,2,1,f +7925,3048c,297,1,f +7925,3062b,71,5,f +7925,3062b,0,6,f +7925,32530,72,2,f +7925,3308,0,1,f +7925,3460,0,2,f +7925,3626bpr0600,14,1,f +7925,3626bpr0725,14,1,f +7925,3626bpr0754a,14,1,f +7925,3626bpr0755b,14,1,f +7925,3659,0,1,f +7925,3660,0,8,f +7925,3665,70,8,f +7925,3666,70,4,f +7925,3673,71,1,f +7925,3673,71,1,t +7925,3700,72,2,f +7925,3794a,70,8,f +7925,3795,4,1,f +7925,3839b,71,1,f +7925,3844,80,1,f +7925,3846pr0002,71,2,f +7925,3847,148,1,f +7925,3847,135,1,f +7925,3957a,0,1,f +7925,40234,71,1,f +7925,42448,148,2,f +7925,4274,1,1,t +7925,4274,1,2,f +7925,4286,0,2,f +7925,4489b,70,2,f +7925,4495b,297,1,f +7925,4495b,288,1,f +7925,4497,135,2,f +7925,4498,70,1,f +7925,54200,70,1,t +7925,54200,70,13,f +7925,59900,297,5,f +7925,60475a,71,4,f +7925,60596,0,3,f +7925,60621,71,1,f +7925,61184,71,1,f +7925,61252,15,2,f +7925,6141,19,1,f +7925,6141,19,1,t +7925,64647,288,1,f +7925,64647,288,1,t +7925,75998pr0001,0,1,f +7925,87620,0,4,f +7925,88289,308,1,f +7925,89522,297,1,f +7925,89524,148,1,f +7925,92589,0,1,f +7925,970c00,0,1,f +7925,970c00pr0154,0,1,f +7925,970x026,71,2,f +7925,973pr1622c01,4,1,f +7925,973pr1623c01,72,1,f +7925,973pr1624c01,72,1,f +7925,973pr1626c01,0,1,f +7927,3836,6,1,f +7927,3837,8,1,f +7927,503c01,4,1,f +7927,fab11a,9999,1,f +7928,2357,71,2,f +7928,2420,72,2,f +7928,2431,72,1,f +7928,2431,0,2,f +7928,2456,0,3,f +7928,2458,71,1,f +7928,2460,72,2,f +7928,2540,71,2,f +7928,2780,0,3,t +7928,2780,0,21,f +7928,298c02,71,1,t +7928,298c02,71,1,f +7928,3001,0,1,f +7928,3004,0,1,f +7928,3009,72,3,f +7928,3010,72,4,f +7928,3020,72,1,f +7928,3020,0,2,f +7928,3021,0,1,f +7928,3023,71,2,f +7928,30283,0,2,f +7928,3031,0,1,f +7928,3032,72,1,f +7928,3034,72,1,f +7928,3035,72,1,f +7928,3039,71,1,f +7928,3040b,72,2,f +7928,30526,72,5,f +7928,30552,71,3,f +7928,30553,72,8,f +7928,30554b,0,5,f +7928,3069b,72,2,f +7928,32000,71,2,f +7928,32013,0,8,f +7928,32014,0,2,f +7928,32039,0,2,f +7928,32039,71,4,f +7928,32054,71,5,f +7928,32059,0,1,f +7928,32062,4,15,f +7928,32064b,72,6,f +7928,32138,0,3,f +7928,32184,71,1,f +7928,32192,0,6,f +7928,32291,72,1,f +7928,32316,0,2,f +7928,32316,72,1,f +7928,32524,0,4,f +7928,32527,4,2,f +7928,32528,4,2,f +7928,32531,71,2,f +7928,32532,71,2,f +7928,3298,0,2,f +7928,3460,72,3,f +7928,3660,0,1,f +7928,3665,0,2,f +7928,3701,71,5,f +7928,3705,0,1,f +7928,3708,0,1,f +7928,3710,71,7,f +7928,3747b,0,1,f +7928,3794a,71,4,f +7928,3795,0,2,f +7928,3894,0,1,f +7928,40378,0,5,f +7928,40379,15,1,f +7928,40379,0,5,f +7928,40395,0,2,f +7928,41532,0,3,f +7928,41749,0,1,f +7928,41750,0,1,f +7928,41751,0,1,f +7928,42003,0,1,f +7928,4274,71,2,t +7928,4274,71,3,f +7928,43093,1,12,f +7928,43936,0,1,f +7928,44033,135,2,f +7928,44301a,0,1,f +7928,44350,0,1,f +7928,44351,0,1,f +7928,44352,0,1,f +7928,44353,0,1,f +7928,44567a,0,1,f +7928,44568,71,1,f +7928,4460b,72,2,f +7928,44813,135,2,f +7928,4519,71,2,f +7928,4623,0,2,f +7928,46413,36,1,f +7928,47326pat02,0,1,f +7928,47337,135,2,f +7928,47406,0,1,f +7928,50908,135,2,f +7928,50914,135,2,f +7928,53451,15,2,t +7928,53451,15,11,f +7928,53550,0,3,f +7928,53586,135,1,f +7928,53989,320,2,f +7928,53989,0,2,f +7928,54200,72,6,f +7928,54821,182,9,f +7928,55237a,135,1,f +7928,55237b,135,1,f +7928,55237c,135,1,f +7928,55237d,135,1,f +7928,55237e,135,1,f +7928,55237f,135,1,f +7928,55237g,135,1,f +7928,55237h,135,1,f +7928,55237i,135,1,f +7928,55237j,135,1,f +7928,55237k,135,1,f +7928,55237l,135,1,f +7928,57523c01,135,1,f +7928,57525,4,18,f +7928,57539,4,1,f +7928,57550pat0001,0,1,f +7928,57555,46,1,f +7928,57555,46,2,t +7928,57563,135,11,f +7928,57566,135,2,f +7928,57585,71,3,f +7928,58176,36,2,t +7928,58176,36,6,f +7928,58230,320,1,f +7928,59577,135,3,f +7928,6538b,71,7,f +7928,6558,0,7,f +7928,6628,0,1,f +7928,78c06,179,1,f +7930,2412b,14,2,f +7930,2413,1,2,f +7930,2419,2,1,f +7930,2432,14,1,f +7930,2450,2,2,f +7930,2458,14,1,f +7930,2460,14,1,f +7930,2479,7,1,f +7930,298c01,0,2,f +7930,3001,4,2,f +7930,3001,15,2,f +7930,3001,1,2,f +7930,3001,14,2,f +7930,3001,0,2,f +7930,3002,1,2,f +7930,3002,15,2,f +7930,3002,0,2,f +7930,3002,14,2,f +7930,3002,4,2,f +7930,3003,15,2,f +7930,3003,4,2,f +7930,3003,0,2,f +7930,3003,1,2,f +7930,3003,14,2,f +7930,3004,0,4,f +7930,3004,4,8,f +7930,3004,15,6,f +7930,3004,14,8,f +7930,3004,1,6,f +7930,3005,15,4,f +7930,3005,14,4,f +7930,3005,1,4,f +7930,3005,0,4,f +7930,3005,4,4,f +7930,3005pe1,2,2,f +7930,3008,14,2,f +7930,3008,4,2,f +7930,3009,14,2,f +7930,3009,15,2,f +7930,3009,4,2,f +7930,3009,1,2,f +7930,3010,15,6,f +7930,3010,0,4,f +7930,3010,14,6,f +7930,3010,4,6,f +7930,3010,1,6,f +7930,3010p01,4,1,f +7930,30161,47,1,f +7930,30176,2,2,f +7930,3020,4,2,f +7930,3021,4,2,f +7930,3022,4,2,f +7930,3022,1,2,f +7930,3030,1,1,f +7930,3031,1,1,f +7930,3040b,14,2,f +7930,3149c01,4,1,f +7930,3297,1,2,f +7930,3297px1,1,2,f +7930,3298,1,2,f +7930,3298p11,1,2,f +7930,3299,1,2,f +7930,3300,1,2,f +7930,3307,14,2,f +7930,3483,0,4,f +7930,3622,4,2,f +7930,3622,14,2,f +7930,3626bpx19,14,1,f +7930,3633,14,2,f +7930,3665,14,2,f +7930,3666,1,2,f +7930,3666,4,2,f +7930,3679,7,1,f +7930,3680,14,1,f +7930,3747a,1,2,f +7930,3795,4,2,f +7930,3795,1,2,f +7930,3823,41,1,f +7930,3829c01,14,1,f +7930,3853,1,2,f +7930,3854,14,4,f +7930,3856,2,4,f +7930,3861b,1,1,f +7930,3865,2,1,f +7930,3957a,15,1,f +7930,4070,4,2,f +7930,4079,14,1,f +7930,4175,14,2,f +7930,4286,1,4,f +7930,4287,1,4,f +7930,4485,4,1,f +7930,4495b,14,1,f +7930,4589,15,6,f +7930,4625,4,1,f +7930,6041,0,1,f +7930,6064,2,1,f +7930,6215,2,2,f +7930,6248,15,4,f +7930,6249,8,2,f +7930,6564,4,1,f +7930,6565,4,1,f +7930,970c00,1,1,f +7930,973px39c01,2,1,f +7939,2343,47,4,f +7939,2412b,0,2,f +7939,2417,2,4,f +7939,2420,15,4,f +7939,2423,2,1,f +7939,2453a,15,11,f +7939,2454a,15,1,f +7939,2465,15,1,f +7939,2493b,15,2,f +7939,2494,47,2,f +7939,2518,2,4,f +7939,2536,6,5,f +7939,2546p01,4,1,f +7939,2563,6,1,f +7939,2566,6,1,f +7939,2571,47,2,f +7939,2572,47,2,f +7939,3001,14,1,f +7939,3004,15,2,f +7939,3004,14,6,f +7939,3005,15,13,f +7939,3010,15,3,f +7939,3020,14,3,f +7939,3020,4,2,f +7939,3020,0,1,f +7939,3021,15,1,f +7939,3022,0,1,f +7939,3023,15,5,f +7939,3024,15,2,f +7939,3024,46,6,f +7939,3026,15,1,f +7939,3062b,14,1,f +7939,3069b,15,2,f +7939,3070b,4,1,t +7939,3070b,4,2,f +7939,3185,4,6,f +7939,3307,15,2,f +7939,3455,15,1,f +7939,3622,15,2,f +7939,3626bpr0001,14,5,f +7939,3629,7,1,f +7939,3666,15,2,f +7939,3710,4,2,f +7939,3741,2,1,t +7939,3741,2,6,f +7939,3742,4,3,t +7939,3742,4,9,f +7939,3742,14,3,t +7939,3742,14,9,f +7939,3755,15,2,f +7939,3795,4,1,f +7939,3857,2,1,f +7939,3898,15,1,f +7939,3901,0,2,f +7939,3941,14,1,f +7939,4032a,7,1,f +7939,4032a,2,1,f +7939,4079,14,5,f +7939,4217,15,1,f +7939,4477,15,1,f +7939,4528,0,1,f +7939,4529,0,1,f +7939,4530,4,1,f +7939,4599a,4,1,f +7939,4599a,14,1,f +7939,4864b,15,3,f +7939,6141,36,1,t +7939,6141,15,2,f +7939,6141,15,1,t +7939,6141,46,4,f +7939,6141,46,1,t +7939,6141,36,8,f +7939,970c00,15,1,f +7939,970c00,0,2,f +7939,970c00,7,1,f +7939,970c00,4,1,f +7939,973p18c01,1,1,f +7939,973p22c01,0,1,f +7939,973p72c01,15,1,f +7939,973pr1190c01,0,1,f +7939,973px3c01,15,1,f +7940,15573,15,3,f +7940,2431,15,2,f +7940,2654,15,2,f +7940,2654,71,4,f +7940,3004,15,1,f +7940,3005,15,2,f +7940,30162,71,2,f +7940,3020,72,2,f +7940,3021,15,1,f +7940,3023,71,2,f +7940,3031,15,2,f +7940,3068b,15,3,f +7940,3069b,0,1,f +7940,32028,72,2,f +7940,3245c,15,1,f +7940,3623,15,1,f +7940,3666,15,2,f +7940,3710,71,3,f +7940,44567a,72,1,f +7940,4460b,15,1,f +7940,52501,15,1,f +7940,54383,15,1,f +7940,54384,15,1,f +7940,60470b,71,2,f +7940,60471,71,1,f +7940,60478,15,4,f +7940,60481,15,2,f +7940,61252,71,2,f +7940,6141,41,2,f +7940,6141,46,3,f +7941,15068,15,1,f +7941,15573,15,1,f +7941,2456,15,1,f +7941,2654,47,2,f +7941,3001,15,1,f +7941,3020,15,2,f +7941,3020,71,3,f +7941,3020,0,1,f +7941,3022,15,3,f +7941,3022,0,1,f +7941,3023,71,2,f +7941,3023,40,1,f +7941,3023,15,1,f +7941,3024,71,2,f +7941,3031,0,1,f +7941,3068b,15,1,f +7941,3624,1,1,f +7941,3626bpr0325,14,1,f +7941,3666,71,1,f +7941,3700,15,1,f +7941,3747a,15,1,f +7941,3839b,71,2,f +7941,3937,0,1,f +7941,4032a,15,1,f +7941,43093,1,1,f +7941,43722,15,2,f +7941,43723,15,2,f +7941,4449,0,1,f +7941,49668,179,4,f +7941,51739,15,1,f +7941,54200,15,2,f +7941,54383,15,1,f +7941,54384,15,1,f +7941,59900,15,1,f +7941,59900,80,4,f +7941,6134,71,1,f +7941,6239,15,1,f +7941,73983,71,2,f +7941,85984,0,1,f +7941,87079,15,2,f +7941,970c00,1,1,f +7941,973c07,1,1,f +7941,98100,15,1,f +7941,98138,15,1,f +7941,99781,15,1,f +7945,11214,72,2,f +7945,11478,0,2,f +7945,14682,71,1,f +7945,14720,71,1,f +7945,15100,0,5,f +7945,15361,4,2,f +7945,15462,28,1,f +7945,18575,19,4,f +7945,18651,0,13,f +7945,18654,72,1,t +7945,18654,72,1,f +7945,18938,0,1,f +7945,18939,71,1,f +7945,24116,14,4,f +7945,2431,14,1,f +7945,24931,9999,1,t +7945,2780,0,1,t +7945,2780,0,55,f +7945,2850b,71,2,f +7945,2851,14,2,f +7945,2852,71,2,f +7945,2853,14,2,f +7945,2854,19,1,f +7945,32002,19,1,t +7945,32002,19,1,f +7945,32005b,0,2,f +7945,32009,14,2,f +7945,32019,0,4,f +7945,32034,0,7,f +7945,32039,14,7,f +7945,32054,0,16,f +7945,32056,71,4,f +7945,32062,4,19,f +7945,32073,71,12,f +7945,32123b,71,20,f +7945,32123b,71,1,t +7945,32140,1,2,f +7945,32140,0,6,f +7945,32184,0,10,f +7945,32270,0,5,f +7945,32291,0,2,f +7945,32316,14,6,f +7945,32316,0,6,f +7945,32348,14,1,f +7945,32348,0,4,f +7945,32449,14,8,f +7945,32523,0,5,f +7945,32524,14,6,f +7945,32525,14,2,f +7945,32526,14,11,f +7945,32556,19,1,f +7945,33299a,0,2,f +7945,3648b,72,1,f +7945,3673,71,1,t +7945,3673,71,8,f +7945,3705,0,9,f +7945,3706,4,3,f +7945,3713,4,1,t +7945,3713,4,11,f +7945,3749,19,2,f +7945,40490,14,7,f +7945,41239,14,2,f +7945,41530,179,1,f +7945,42003,71,9,f +7945,4274,71,12,f +7945,4274,71,1,t +7945,43093,1,9,f +7945,44294,14,2,f +7945,4519,71,11,f +7945,45590,0,2,f +7945,4716,71,1,f +7945,55013,72,2,f +7945,59426,72,1,f +7945,59443,72,6,f +7945,60483,0,16,f +7945,60484,14,1,f +7945,60485,71,1,f +7945,6141,36,1,t +7945,6141,182,1,f +7945,6141,36,2,f +7945,6141,182,1,t +7945,6141,47,1,t +7945,6141,47,4,f +7945,61903,71,3,f +7945,62462,71,6,f +7945,64178,71,1,f +7945,6536,14,21,f +7945,6558,1,22,f +7945,6589,19,2,f +7945,6628,0,6,f +7945,6632,71,2,f +7945,86652,71,4,f +7945,87083,72,5,f +7945,87408,0,1,f +7945,93550,179,1,t +7945,93550,179,1,f +7945,94925,71,1,f +7945,99773,0,2,f +7946,3437,14,1,f +7946,58086,70,1,f +7946,75115bpr0001,1,1,f +7946,92328,92,1,f +7947,2780,0,41,f +7947,2817,0,2,f +7947,2853,14,4,f +7947,3022,7,4,f +7947,32002,8,8,f +7947,32002,8,2,t +7947,32007,1,3,f +7947,32007,3,3,f +7947,32013,0,4,f +7947,32034,0,6,f +7947,32039,0,4,f +7947,32054,1,2,f +7947,32054,3,2,f +7947,32056,7,6,f +7947,32062,0,8,f +7947,32073,0,7,f +7947,32123b,7,2,t +7947,32123b,7,12,f +7947,32138,0,10,f +7947,32140,7,5,f +7947,32184,7,2,f +7947,32190,1,1,f +7947,32191,1,1,f +7947,32192,0,4,f +7947,32271,0,8,f +7947,32278,1,2,f +7947,32278,0,8,f +7947,32278,3,2,f +7947,32291,0,7,f +7947,32316,0,8,f +7947,32348,0,6,f +7947,32348,1,2,f +7947,32449,7,2,f +7947,32474,0,2,f +7947,32474,7,2,f +7947,32475,3,2,f +7947,32475,1,2,f +7947,32506,15,1,f +7947,32524,7,4,f +7947,32526,7,4,f +7947,32527,3,2,f +7947,32527,1,1,f +7947,32528,1,1,f +7947,32528,3,2,f +7947,32551,15,2,f +7947,32553,15,2,f +7947,32556,7,12,f +7947,32557,7,2,f +7947,32557,0,2,f +7947,32566,1,1,f +7947,32568,3,1,f +7947,3673,7,16,f +7947,3700,0,4,f +7947,3703,0,4,f +7947,3705,0,9,f +7947,3706,0,7,f +7947,3707,0,1,f +7947,3713,7,16,f +7947,3738,0,4,f +7947,3738,3,2,f +7947,3738,1,2,f +7947,3749,7,10,f +7947,41752,8,2,f +7947,4274,7,4,f +7947,4274,7,2,t +7947,4519,0,13,f +7947,6141,25,2,f +7947,6141,4,1,t +7947,6141,25,1,t +7947,6141,4,2,f +7947,6192,3,3,f +7947,6192,1,3,f +7947,6536,0,8,f +7947,6536,7,5,f +7947,6538b,7,2,f +7947,6553,0,2,f +7947,6558,0,13,f +7947,6628,0,8,f +7947,680c01,0,2,f +7947,71509,0,8,f +7947,73129,7,2,f +7947,75535,3,2,f +7947,76110c01,7,4,f +7947,76138,1,2,f +7947,76138,3,2,f +7947,78c04,179,2,f +7947,78c09,179,8,f +7948,3743,7,10,f +7948,4716,7,12,f +7950,10126,10,1,f +7950,10127,10,1,f +7950,10201,71,1,f +7950,11458,72,2,f +7950,11476,71,2,f +7950,11477,85,2,f +7950,11477,72,4,f +7950,15573,28,1,f +7950,2412b,179,1,f +7950,24151,71,1,f +7950,2432,70,1,f +7950,24326,71,2,f +7950,2540,72,2,f +7950,30028,0,8,f +7950,3022,84,1,f +7950,3023,326,3,f +7950,3024,36,2,f +7950,3024,36,1,t +7950,32823,179,1,f +7950,33057,484,1,f +7950,3626cpr1891,10,1,f +7950,3626cpr1896,179,1,f +7950,3829c01,0,2,f +7950,4006,0,1,f +7950,4081b,0,2,f +7950,41879a,85,1,f +7950,41879a,179,1,f +7950,4865b,35,1,f +7950,4865b,40,1,f +7950,4871,85,1,f +7950,50943,71,1,f +7950,53451,179,2,f +7950,53451,179,1,t +7950,54200,182,2,f +7950,54200,182,1,t +7950,6019,71,2,f +7950,6141,47,2,f +7950,6141,47,1,t +7950,74967,0,4,f +7950,74967,10,4,f +7950,86208,71,2,f +7950,92220,179,5,f +7950,93590,85,1,f +7950,973pr3336c01,10,1,f +7950,973pr3340c01,179,1,f +7950,98385,0,1,f +7950,98397,71,2,f +7950,99780,72,1,f +7951,2412b,72,3,f +7951,2419,2,1,f +7951,2436,71,4,f +7951,2476a,71,1,f +7951,2654,72,2,f +7951,298c02,4,1,t +7951,298c02,4,2,f +7951,3002,71,1,f +7951,3003,2,2,f +7951,3004,2,1,f +7951,30151a,47,2,f +7951,3020,71,8,f +7951,3021,85,5,f +7951,3022,71,6,f +7951,3023,72,3,f +7951,3023,71,4,f +7951,30361b,72,2,f +7951,30385,34,1,f +7951,3039,2,2,f +7951,30602,35,4,f +7951,30602,85,6,f +7951,3069b,85,1,f +7951,3069b,35,3,f +7951,3176,71,2,f +7951,32001,0,1,f +7951,32013,72,2,f +7951,32062,4,3,f +7951,32064b,0,6,f +7951,32530,0,2,f +7951,3626bpr0902,78,1,f +7951,3626bpr0903,78,1,f +7951,3626cpr0901,78,1,f +7951,3660,0,3,f +7951,3660,2,6,f +7951,3701,0,1,f +7951,3710,72,1,f +7951,3795,2,4,f +7951,3839b,72,1,f +7951,3941,85,7,f +7951,40244,0,1,f +7951,4032a,2,4,f +7951,4150,71,2,f +7951,4274,71,1,t +7951,4274,71,4,f +7951,43093,1,3,f +7951,43712,2,2,f +7951,44728,72,4,f +7951,4740,47,2,f +7951,47455,0,2,f +7951,47755,0,1,f +7951,47994,0,1,f +7951,48170,72,2,f +7951,48172,0,1,f +7951,4864b,47,2,f +7951,50231,4,1,f +7951,53989,72,6,f +7951,57539pat0002,47,1,t +7951,57539pat0002,47,1,f +7951,57908,72,2,f +7951,57909a,72,2,f +7951,58176,35,9,f +7951,58176,35,1,t +7951,6004466,9999,1,f +7951,60474,71,1,f +7951,60478,71,6,f +7951,6091,72,2,f +7951,61409,0,8,f +7951,6141,85,6,f +7951,6141,85,1,t +7951,61678,2,4,f +7951,6215,2,2,f +7951,62462,71,1,f +7951,6587,28,1,f +7951,85984,72,1,f +7951,87752,40,1,f +7951,92013,0,6,f +7951,93273,71,1,f +7951,970c00,0,1,f +7951,970c00pr0296,4,1,f +7951,970x021,1,1,f +7951,973pr1957bc01,1,1,f +7951,973pr1958c01b,4,1,f +7951,973pr1960bc01,0,1,f +7951,98725pr0001,0,1,f +7951,98726,0,1,f +7951,99253,297,1,f +7953,2654,47,2,f +7953,2736,71,3,f +7953,2780,0,1,t +7953,2780,0,43,f +7953,2825,0,4,f +7953,2850a,71,3,f +7953,2851,14,3,f +7953,2853,14,4,f +7953,2854,72,2,f +7953,2905,71,6,f +7953,2905,0,4,f +7953,2909c03,0,2,f +7953,3031,0,1,f +7953,30552,0,1,f +7953,32009,71,2,f +7953,32009,4,2,f +7953,32013,72,2,f +7953,32013,14,3,f +7953,32015,0,4,f +7953,32016,71,4,f +7953,32034,71,2,f +7953,32039,0,8,f +7953,32054,71,2,f +7953,32054,4,3,f +7953,32062,4,13,f +7953,32073,71,8,f +7953,32123b,71,20,f +7953,32123b,71,1,t +7953,32126,71,2,f +7953,32138,0,2,f +7953,32140,71,2,f +7953,32184,0,4,f +7953,32269,19,1,f +7953,32270,0,3,f +7953,32271,0,2,f +7953,32291,0,4,f +7953,32316,0,1,f +7953,32316,72,2,f +7953,32449,4,4,f +7953,32523,71,2,f +7953,32523,4,1,f +7953,32525,0,2,f +7953,32526,71,2,f +7953,32526,4,1,f +7953,32557,71,2,f +7953,33299a,71,2,f +7953,3648b,72,2,f +7953,3649,71,1,f +7953,3666,0,2,f +7953,3705,0,10,f +7953,3706,0,5,f +7953,3707,0,2,f +7953,3708,0,1,f +7953,3711a,0,53,f +7953,3711a,0,2,t +7953,3713,71,23,f +7953,3713,71,1,t +7953,3743,71,4,f +7953,3900,71,2,f +7953,4019,71,5,f +7953,4032a,0,6,f +7953,40490,72,5,f +7953,4150,71,2,f +7953,41669,36,2,f +7953,41669,0,2,f +7953,41677,72,4,f +7953,41678,4,3,f +7953,4185,71,3,f +7953,42003,71,9,f +7953,42022,0,2,f +7953,4274,1,1,t +7953,4274,1,10,f +7953,43093,1,14,f +7953,44294,71,3,f +7953,4519,71,21,f +7953,45590,0,1,f +7953,47844pr0001,4,1,f +7953,48989,71,2,f +7953,55013,72,2,f +7953,55981,71,2,f +7953,59443,14,4,f +7953,60483,71,5,f +7953,60484,72,2,f +7953,60485,71,1,f +7953,62462,71,5,f +7953,64391,4,1,f +7953,64391,0,2,f +7953,64683,4,1,f +7953,64683,0,2,f +7953,6536,72,8,f +7953,6542a,72,2,f +7953,6558,1,23,f +7953,6629,71,2,f +7953,6629,72,5,f +7953,6632,4,2,f +7953,76537,14,1,f +7953,78c10,179,2,f +7953,8051stk01,9999,1,t +7953,87080,0,1,f +7953,87080,4,1,f +7953,87082,71,3,f +7953,87086,4,1,f +7953,87086,0,1,f +7953,88516,0,2,f +7953,88517,72,2,f +7954,2357,15,4,f +7954,2412b,0,4,f +7954,2412b,15,9,f +7954,2431,15,1,f +7954,2444,72,2,f +7954,2450,72,2,f +7954,2458,72,2,f +7954,2465,72,2,f +7954,2540,72,1,f +7954,2540,0,4,f +7954,2654,71,4,f +7954,2780,0,10,f +7954,2780,0,1,t +7954,3003,15,2,f +7954,3004,15,4,f +7954,3007,15,1,f +7954,3010,15,4,f +7954,3020,1,3,f +7954,3023,15,5,f +7954,3023,1,3,f +7954,3024,1,4,f +7954,3027,72,2,f +7954,3031,1,1,f +7954,30332,0,2,f +7954,3035,15,1,f +7954,30355,72,1,f +7954,30356,72,1,f +7954,3037,71,2,f +7954,3038,15,4,f +7954,30387,71,4,f +7954,30414,14,2,f +7954,3068b,1,3,f +7954,3068b,15,1,f +7954,3070b,36,1,t +7954,3070b,4,1,t +7954,3070b,34,1,f +7954,3070b,4,2,f +7954,3070b,34,1,t +7954,3070b,36,1,f +7954,32018,15,2,f +7954,32324,71,1,f +7954,33243,15,2,f +7954,3460,1,2,f +7954,3626bpr0409,14,1,f +7954,3665,15,2,f +7954,3666,15,3,f +7954,3666,1,1,f +7954,3710,1,2,f +7954,3747a,15,2,f +7954,3794a,1,4,f +7954,3795,1,9,f +7954,3829c01,4,1,f +7954,3839b,71,1,f +7954,3937,4,2,f +7954,3938,0,2,f +7954,3956,1,2,f +7954,3958,1,1,f +7954,40902,71,4,f +7954,4162,0,4,f +7954,41747,1,2,f +7954,41748,1,2,f +7954,42023,72,4,f +7954,43720,15,2,f +7954,43721,15,2,f +7954,4445,15,2,f +7954,44567a,71,4,f +7954,4477,1,3,f +7954,4485,0,1,f +7954,4855,1,2,f +7954,4856a,72,2,f +7954,4865a,15,3,f +7954,48933,15,2,f +7954,50303,72,2,f +7954,54090,72,1,f +7954,54091,72,1,f +7954,54092c01,15,1,f +7954,54094,15,1,f +7954,54200,33,4,f +7954,54701c02,15,1,f +7954,60601,40,8,f +7954,6081,15,4,f +7954,61345,15,4,f +7954,6141,47,1,t +7954,6141,47,1,f +7954,61487,15,2,f +7954,6212,72,2,f +7954,6636,1,2,f +7954,7723stk01,9999,1,t +7954,970c00,0,1,f +7954,973pr1188c01,0,1,f +7956,122c01,7,3,f +7956,3004,4,5,f +7956,3005,47,2,f +7956,3005,4,3,f +7956,3010,4,4,f +7956,3010pb035u,4,1,f +7956,3020,4,1,f +7956,3021,4,3,f +7956,3022,4,3,f +7956,3023,4,4,f +7956,3024,7,1,f +7956,3030,4,1,f +7956,3035,4,1,f +7956,3039,4,1,f +7956,3062a,7,2,f +7956,3062a,33,2,f +7956,3087c,4,1,f +7956,3183a,4,1,f +7956,3184,4,1,f +7956,3581,4,2,f +7956,3582,7,2,f +7956,3626bpr0001,14,1,f +7956,3641,0,6,f +7956,3710,4,1,f +7956,3787,4,1,f +7956,3788,4,2,f +7956,3794a,4,1,f +7956,3823,47,1,f +7956,3834,0,1,f +7956,3835,7,1,f +7956,420,7,1,f +7956,421,7,1,f +7956,69c01,14,1,f +7956,970c00,0,1,f +7956,973c18,0,1,f +7956,rb00166,0,1,f +7957,11609,191,1,f +7957,11609,191,1,t +7957,3040b,72,1,f +7957,3068b,72,1,f +7957,3665,71,2,f +7957,3710,15,3,f +7957,6141,29,1,t +7957,6141,72,2,f +7957,6141,72,1,t +7957,6141,29,2,f +7957,64647,182,1,f +7957,64647,182,1,t +7957,87087,71,3,f +7957,98283,84,1,f +7958,3001p0d,15,1,f +7958,3002,4,1,f +7958,3004,15,2,f +7958,3008,15,8,f +7958,3009,15,6,f +7958,3009pb027,15,2,f +7958,3010,15,2,f +7958,3010,4,2,f +7958,3020,0,3,f +7958,3021,1,1,f +7958,3021,0,1,f +7958,3022,0,5,f +7958,3023,0,5,f +7958,3023,1,3,f +7958,3023,15,1,f +7958,3024,46,2,f +7958,3024,15,2,f +7958,3024,36,4,f +7958,3029,15,2,f +7958,3031,15,1,f +7958,3032,15,1,f +7958,3032,4,1,f +7958,3034,0,4,f +7958,3062b,0,8,f +7958,3068b,15,1,f +7958,3069b,15,1,f +7958,3069b,4,2,f +7958,3622,15,6,f +7958,3624,0,1,f +7958,3626apr0001,14,1,f +7958,3679,7,1,f +7958,3680,7,1,f +7958,3710,0,2,f +7958,3788,4,1,f +7958,3821,4,1,f +7958,3822,4,1,f +7958,3823,47,1,f +7958,3829c01,4,1,f +7958,3853,15,1,f +7958,3856,15,2,f +7958,3937,0,1,f +7958,3938,0,1,f +7958,3957a,0,2,f +7958,4070,0,2,f +7958,4081a,4,2,f +7958,4081a,0,4,f +7958,4084,0,10,f +7958,4085b,1,2,f +7958,4175,7,1,f +7958,4213,15,1,f +7958,4214,15,1,f +7958,4600,7,5,f +7958,4624,7,10,f +7958,6141,46,2,f +7958,970c00,1,1,f +7958,973p26c01,1,1,f +7959,3001,0,1,f +7959,3021,0,4,f +7959,3022,14,2,f +7959,3023,7,2,f +7959,3023,0,7,f +7959,3023,14,10,f +7959,3035,14,2,f +7959,3069b,7,2,f +7959,3460,7,1,f +7959,3482,7,4,f +7959,3634,0,4,f +7959,3647,7,5,f +7959,3648a,7,2,f +7959,3650a,7,1,f +7959,3651,7,4,f +7959,3666,14,2,f +7959,3673,7,8,f +7959,3700,0,4,f +7959,3700,14,8,f +7959,3701,14,4,f +7959,3702,0,2,f +7959,3702,14,6,f +7959,3703,0,2,f +7959,3705,0,3,f +7959,3706,0,4,f +7959,3707,0,2,f +7959,3709,14,2,f +7959,3710,7,4,f +7959,3710,0,2,f +7959,3710,14,4,f +7959,3713,7,10,f +7959,3737,0,2,f +7959,3738,14,2,f +7959,3743,7,1,f +7959,3749,7,6,f +7959,3795,0,2,f +7959,3894,14,2,f +7959,3895,14,2,f +7959,4143,7,2,f +7959,4185,7,1,f +7959,4261,7,2,f +7959,4262,7,3,f +7959,4263,7,3,f +7959,4265a,7,2,f +7959,4459,0,8,f +7959,4688c01,4,1,f +7959,4692c01,7,1,f +7959,4701c01,4,1,f +7959,5102c50,7,1,f +7959,5102c76,0,1,f +7959,75215,7,1,f +7960,2420,19,6,f +7960,3004,70,2,f +7960,3020,70,2,f +7960,3020,15,1,f +7960,3021,70,2,f +7960,3021,15,1,f +7960,3022,15,1,f +7960,3023,19,1,f +7960,3023,70,2,f +7960,3024,19,4,f +7960,3070b,70,1,t +7960,3070b,70,1,f +7960,3623,70,4,f +7960,3794b,70,3,f +7960,4070,70,4,f +7960,48336,15,1,f +7960,52501,15,2,f +7960,54200,15,1,f +7960,54200,19,1,t +7960,54200,15,1,t +7960,54200,70,1,t +7960,54200,19,4,f +7960,54200,70,8,f +7960,6019,15,5,f +7960,60470a,71,1,f +7960,60478,19,5,f +7960,6141,0,3,f +7960,6141,15,1,t +7960,6141,15,2,f +7960,6141,0,1,t +7963,3001,1,13,f +7963,3001,14,3,f +7963,3002,14,3,f +7963,3002,4,2,f +7963,3003,4,8,f +7963,3003,1,6,f +7963,3003,14,32,f +7963,3004,4,18,f +7963,3004,1,5,f +7963,3009,4,2,f +7963,3010,4,4,f +7963,3030,14,1,f +7963,3031,4,2,f +7963,3033,14,1,f +7963,3035,4,1,f +7963,3185,1,3,f +7963,3836,6,1,f +7963,3837,8,1,f +7963,3979c01,14,2,f +7963,fab3g,9999,1,f +7963,fab9c,9999,1,f +7963,u9213,2,1,f +7963,u9215,4,1,f +7963,x661c01,14,1,f +7963,x837,1,1,f +7963,x838,1,1,f +7965,45463,9,1,f +7965,45463,5,1,f +7965,45464,42,1,f +7965,45499,46,1,f +7965,45499,45,1,f +7965,46286,42,1,f +7965,47912,41,1,f +7965,clikits006pb02,9,1,f +7965,clikits078,52,1,f +7966,3003,1,1,f +7966,3004,1,1,f +7966,3005pe1,14,2,f +7966,3021,14,1,f +7966,3039,1,2,f +7966,3660,1,1,f +7966,6215,4,1,f +7968,11477,2,4,f +7968,2412b,15,2,f +7968,2432,0,1,f +7968,3020,27,5,f +7968,3022,0,3,f +7968,3022,27,1,f +7968,3024,36,2,f +7968,3039,47,2,f +7968,3065,47,2,f +7968,3710,15,3,f +7968,3795,2,1,f +7968,4070,2,2,f +7968,44728,15,1,f +7968,4600,0,2,f +7968,4865b,15,3,f +7968,59900,0,2,f +7968,6014b,71,4,f +7968,60212,15,2,f +7968,6141,0,2,f +7968,6141,46,6,f +7968,6231,15,2,f +7968,87697,0,4,f +7968,98138,71,6,f +7968,99780,2,4,f +7969,45449,13,4,f +7969,45463,112,4,f +7969,clikits088,143,1,f +7969,clikits113,41,1,f +7970,266ac01,15,4,f +7970,4170,4,2,f +7970,4170,0,2,f +7970,4171,47,8,f +7970,6141,36,4,f +7970,6141,46,4,f +7970,765c28,7,4,f +7972,10201,0,2,f +7972,11211,71,4,f +7972,11215,71,1,f +7972,11476,71,2,f +7972,13197pr0001,72,1,f +7972,14769,71,4,f +7972,15571,71,2,f +7972,2412b,71,3,f +7972,2412b,72,3,f +7972,2419,72,4,f +7972,2420,72,4,f +7972,2431,72,1,f +7972,2432,15,2,f +7972,2449,71,2,f +7972,2450,71,4,f +7972,2458,4,1,f +7972,2476a,71,2,f +7972,2540,72,1,f +7972,2555,72,2,f +7972,2653,71,5,f +7972,2654,71,2,f +7972,2780,0,39,f +7972,2780,0,4,t +7972,2817,4,5,f +7972,2877,72,7,f +7972,298c02,71,2,f +7972,298c02,71,1,t +7972,3001,71,8,f +7972,3003,72,1,f +7972,3004,71,2,f +7972,3004,15,2,f +7972,3005,320,2,f +7972,3009,72,2,f +7972,3010,0,3,f +7972,30157,71,3,f +7972,3020,71,4,f +7972,3020,320,2,f +7972,3020,72,7,f +7972,3021,71,5,f +7972,3022,72,4,f +7972,3022,71,3,f +7972,3023,320,20,f +7972,3023,71,3,f +7972,3023,72,4,f +7972,3024,72,2,f +7972,30249,71,4,f +7972,30303,71,6,f +7972,3031,0,4,f +7972,3032,72,8,f +7972,3034,15,4,f +7972,3034,72,1,f +7972,3035,71,2,f +7972,3037,71,2,f +7972,30374,52,1,f +7972,30374,35,1,f +7972,30375,484,1,f +7972,30375pr0003,484,1,f +7972,30376,484,2,f +7972,30377,484,2,f +7972,30377,484,1,t +7972,30378,484,1,f +7972,30378pr0002,484,1,f +7972,3039,72,28,f +7972,3040b,71,12,f +7972,3049b,71,1,f +7972,30552,0,1,f +7972,3068b,0,1,f +7972,3068b,320,3,f +7972,3069b,320,3,f +7972,3070b,72,1,t +7972,3070b,72,2,f +7972,3070b,320,1,t +7972,3070b,320,2,f +7972,32000,72,10,f +7972,32013,71,2,f +7972,32013,72,6,f +7972,32018,72,4,f +7972,32028,15,2,f +7972,32028,0,4,f +7972,32054,0,2,f +7972,32062,4,16,f +7972,32064a,72,2,f +7972,32123b,14,1,t +7972,32123b,71,1,t +7972,32123b,71,4,f +7972,32123b,14,1,f +7972,32184,71,4,f +7972,32192,0,4,f +7972,32333,71,2,f +7972,3245c,0,3,f +7972,32523,0,4,f +7972,32525,0,1,f +7972,32526,72,2,f +7972,32531,71,4,f +7972,3297,71,1,f +7972,3460,71,4,f +7972,3623,320,2,f +7972,3626bpr0650,70,1,f +7972,3626cpr1149,78,1,f +7972,3660,4,2,f +7972,3660,71,2,f +7972,3665,71,4,f +7972,3666,72,4,f +7972,3673,71,2,f +7972,3673,71,1,t +7972,3700,71,11,f +7972,3701,0,2,f +7972,3702,0,2,f +7972,3705,0,1,f +7972,3707,0,2,f +7972,3710,71,8,f +7972,3710,72,1,f +7972,3710,320,10,f +7972,3743,0,4,f +7972,3747b,0,2,f +7972,3749,19,4,f +7972,3795,0,1,f +7972,3832,71,2,f +7972,3839b,0,1,f +7972,3895,72,2,f +7972,3941,0,8,f +7972,3958,72,2,f +7972,3960,72,4,f +7972,4032a,72,6,f +7972,40490,0,4,f +7972,4070,320,2,f +7972,4079,70,1,f +7972,41677,71,6,f +7972,41677,0,8,f +7972,42003,72,4,f +7972,4274,71,14,f +7972,4274,1,6,f +7972,4274,71,2,t +7972,4274,1,2,t +7972,4286,71,8,f +7972,4287,72,2,f +7972,4287,71,8,f +7972,43093,1,10,f +7972,43722,71,1,f +7972,43723,71,1,f +7972,43898,72,6,f +7972,44294,71,1,f +7972,44301a,71,8,f +7972,44302a,0,12,f +7972,44358,71,6,f +7972,44359,72,12,f +7972,44375a,71,6,f +7972,44375bpr0001a,71,2,f +7972,44728,72,1,f +7972,4477,320,2,f +7972,4519,71,6,f +7972,4697b,71,6,f +7972,4697b,71,2,t +7972,4740,71,2,f +7972,47457,72,4,f +7972,47755,71,1,f +7972,47759,72,1,f +7972,4865a,71,4,f +7972,48933,71,3,f +7972,50304,71,2,f +7972,50305,71,2,f +7972,50950,0,1,f +7972,50955,71,2,f +7972,50956,71,2,f +7972,51739,72,4,f +7972,52031,71,2,f +7972,54200,320,2,f +7972,54200,320,1,t +7972,54383,71,2,f +7972,54384,71,2,f +7972,57899,0,1,f +7972,58247,0,2,f +7972,59230,484,2,f +7972,59230,484,1,t +7972,59426,72,5,f +7972,59443,0,6,f +7972,59900,71,1,f +7972,59900,0,14,f +7972,6020,71,1,f +7972,60471,0,1,f +7972,60475b,71,2,f +7972,60484,71,1,f +7972,6081,71,1,f +7972,6091,71,4,f +7972,6106,71,4,f +7972,61184,71,6,f +7972,61189pr0014,15,1,f +7972,61409,72,2,f +7972,6141,36,1,t +7972,6141,71,8,f +7972,6141,71,1,t +7972,6141,41,2,f +7972,6141,36,6,f +7972,6141,42,1,t +7972,6141,41,1,t +7972,6141,42,4,f +7972,61485,0,1,f +7972,61780,72,1,f +7972,6179,72,4,f +7972,62113,72,1,f +7972,6232,72,2,f +7972,62462,320,1,f +7972,62462,4,4,f +7972,63965,72,1,t +7972,63965,72,6,f +7972,64567,80,1,t +7972,64567,80,2,f +7972,64799,71,1,f +7972,6536,0,2,f +7972,6541,72,2,f +7972,6558,1,12,f +7972,6629,71,4,f +7972,6636,71,6,f +7972,76385,0,4,f +7972,85984,0,2,f +7972,87079,71,4,f +7972,87081,72,1,f +7972,87087,72,2,f +7972,87544,71,4,f +7972,87544,47,4,f +7972,92107,72,1,f +7972,92593,320,4,f +7972,93273,71,1,f +7972,96874,25,1,t +7972,970c00pr0509,15,1,f +7972,970c00pr0510,19,1,f +7972,970x026,15,1,f +7972,973pr1459c01,28,1,f +7972,973pr2360c01,15,1,f +7972,973pr2361c01,19,1,f +7972,98138,36,2,f +7972,98138,36,1,t +7972,98138pr0010,179,2,f +7972,98138pr0010,179,1,t +7972,99780,72,2,f +7972,99781,71,2,f +7973,3443c02,4,1,f +7973,699,7,1,f +7974,14226c11,0,1,f +7974,2512,14,1,f +7974,2926,7,2,f +7974,3001,14,2,f +7974,30016,15,2,f +7974,3002,14,8,f +7974,3003,15,4,f +7974,3004,15,4,f +7974,3005,15,2,f +7974,3008,5,1,f +7974,3008,15,4,f +7974,3009,15,4,f +7974,3010,14,1,f +7974,30107,74,1,f +7974,30109,5,2,f +7974,30109,13,1,f +7974,30110,15,6,f +7974,30112,4,1,f +7974,30112,2,1,f +7974,3024,15,4,f +7974,3062b,2,5,f +7974,3069b,4,3,f +7974,3069b,15,2,f +7974,3139,0,4,f +7974,33051,2,2,f +7974,3308,5,2,f +7974,3741,2,4,f +7974,3742,13,6,f +7974,3742,14,2,t +7974,3742,14,6,f +7974,3742,13,2,t +7974,3837,0,1,f +7974,3852b,74,2,f +7974,3899,13,3,f +7974,4207,2,2,f +7974,4424,1,1,f +7974,4477,15,1,f +7974,45,383,2,f +7974,4599a,1,1,f +7974,4599a,4,1,f +7974,4624,14,4,f +7974,6019,14,2,f +7974,6161,20,2,f +7974,6162,14,2,f +7974,6162,74,2,f +7974,6171pr02,0,1,f +7974,6171pr02,6,1,f +7974,6175,8,1,f +7974,6179,5,2,f +7974,6180,5,1,f +7974,6182,5,2,f +7974,6184,5,2,f +7974,6185,6,1,f +7974,6185,0,1,f +7974,6187,14,1,f +7974,6189,0,3,f +7974,6191,5,2,f +7974,6193,6,1,f +7974,6195,5,1,f +7974,6196,14,1,f +7974,6197b,5,1,f +7974,6201,0,1,f +7974,6203,1,1,f +7974,6203,5,1,f +7974,6204,6,1,f +7974,6204,0,1,f +7974,6206,15,1,f +7974,6206,14,1,f +7974,6251,0,1,f +7974,6251,15,1,f +7974,6255,2,2,f +7974,6256,14,1,f +7974,70973c01,383,1,f +7974,71861,383,1,f +7974,75347,15,4,f +7974,belblank,10,2,f +7974,belvfem36,-1,1,f +7974,belvfem68,-1,1,f +7974,belvfem69,-1,1,f +7974,pouch03,17,2,f +7975,10446,14,2,f +7975,11169,4,2,f +7975,11170,1,2,f +7975,11248c01,10,1,f +7975,11248c01,4,1,f +7975,11344,14,1,f +7975,13858,10,1,f +7975,13869,4,1,f +7975,16195,25,1,f +7975,20678,41,2,f +7975,2302,4,2,f +7975,2302,1,2,f +7975,2302,10,2,f +7975,2302,14,2,f +7975,2302,25,2,f +7975,3011,5,2,f +7975,3011,14,4,f +7975,3011,10,2,f +7975,3011,1,2,f +7975,3011,27,2,f +7975,3011,4,2,f +7975,3011,73,2,f +7975,3437,10,6,f +7975,3437,1,6,f +7975,3437,4,6,f +7975,3437,5,4,f +7975,3437,27,4,f +7975,3437,14,6,f +7975,3437,73,4,f +7975,3437,25,2,f +7975,3437,2,2,f +7975,3437,15,2,f +7975,3437,484,4,f +7975,4066,484,2,f +7975,40666,25,2,f +7975,40666,1,2,f +7975,40666,27,2,f +7975,40666,70,2,f +7975,40666,73,2,f +7975,40666,4,2,f +7975,40666,14,2,f +7975,44524,1,1,f +7975,44524,10,1,f +7975,6474,14,2,f +7975,6510,25,2,f +7975,6510,5,2,f +7975,6510,4,2,f +7975,6510,10,2,f +7975,74730,1,1,f +7975,76371,14,4,f +7975,87084,10,2,f +7975,98223,10,1,f +7975,98223,27,2,f +7975,98224,4,2,f +7975,98224,27,1,f +7975,98224,25,1,f +7975,98224,10,1,f +7975,98224,1,2,f +7975,98233,4,1,f +7975,98233,70,1,f +7975,98252,27,2,f +7977,122c01,0,2,f +7977,16542,7,1,f +7977,3001,4,2,f +7977,3004,0,1,f +7977,3004,4,2,f +7977,3020,4,1,f +7977,3022,0,2,f +7977,3023,4,1,f +7977,3024,33,2,f +7977,3024,46,2,f +7977,3024,4,4,f +7977,3034,0,1,f +7977,3626apr0001,14,1,f +7977,3633,4,2,f +7977,3710,4,1,f +7977,3821p09,4,1,f +7977,3822p09,4,1,f +7977,3823,47,1,f +7977,3829c01,4,1,f +7977,3834,0,1,f +7977,3962a,0,1,f +7977,4070,4,2,f +7977,4084,0,4,f +7977,4085a,0,2,f +7977,4208,0,1,f +7977,4209,4,1,f +7977,4211,4,1,f +7977,4213,4,1,f +7977,4214,4,1,f +7977,970c00,0,1,f +7977,973p21c01,0,1,f +7978,2540,7,1,f +7978,2555,1,2,f +7978,2555,15,1,f +7978,30031,4,1,f +7978,3023,0,2,f +7978,3024,46,4,f +7978,3068bp66,15,1,f +7978,3626bp04,14,1,f +7978,3787,4,2,f +7978,3794a,15,1,f +7978,3795,4,1,f +7978,3962b,0,1,f +7978,4085c,7,2,f +7978,4095,15,1,f +7978,4349,0,1,f +7978,4485,1,1,f +7978,4495b,14,1,f +7978,4600,15,2,f +7978,6014a,15,4,f +7978,6015,0,4,f +7978,6187,15,1,f +7978,970x026,14,1,f +7978,973pb0040c01,7,1,f +7979,15662pr0001,226,1,f +7979,88646,0,1,f +7979,93568pat0002,84,1,f +7979,970c00,27,1,f +7979,973pr2611c01,29,1,f +7981,3002a,4,1,f +7981,3002a,0,1,f +7981,3003,1,1,f +7981,3004,0,1,f +7981,3004,4,4,f +7981,3004,14,1,f +7981,3023,4,1,f +7981,3034,4,1,f +7981,3038,4,2,f +7981,3039,4,1,f +7981,3039,1,2,f +7981,3045,4,2,f +7981,3137c01,0,2,f +7981,3139,0,4,f +7981,3183a,4,1,f +7981,3612,1,2,f +7981,3613,1,2,f +7981,3613,15,2,f +7981,3614a,14,4,f +7981,685p01,14,1,f +7981,685px4,14,1,f +7981,792c03,1,1,f +7981,792c03,15,1,f +7981,x196,0,1,f +7981,x197,6,1,f +7982,2039,15,1,f +7982,22670,334,2,f +7982,2343,47,3,f +7982,2417,15,3,f +7982,2713,85,2,f +7982,2921,15,2,f +7982,3004,15,4,f +7982,3005,114,8,f +7982,3005,15,4,f +7982,30077,15,1,f +7982,30093,41,1,f +7982,3010,15,2,f +7982,3010,26,1,f +7982,30153,47,8,f +7982,30153,45,2,f +7982,3024,33,2,f +7982,3028,29,2,f +7982,3031,191,1,f +7982,3031,85,2,f +7982,3032,85,1,f +7982,30374,15,2,f +7982,30385,143,14,f +7982,30613,15,2,f +7982,33051,10,1,f +7982,3307,15,5,f +7982,33172,25,1,f +7982,33183,10,1,t +7982,33183,10,1,f +7982,33207p01,15,1,f +7982,33213,15,4,f +7982,33214pr0002,9,1,f +7982,33215,26,1,f +7982,33215,114,2,f +7982,33216,114,2,f +7982,33227,15,1,f +7982,33230,5,1,f +7982,3622,15,2,f +7982,3626b,47,2,f +7982,3659,15,3,f +7982,3794a,15,4,f +7982,3852b,29,1,f +7982,3940b,26,1,f +7982,4032a,15,2,f +7982,4088,26,1,f +7982,4088,15,3,f +7982,41539,143,2,f +7982,4202,5,1,f +7982,42409,52,4,f +7982,4589,46,5,f +7982,4728,143,8,f +7982,4728,45,2,f +7982,4738a,45,1,f +7982,4739a,45,1,f +7982,4740,47,3,f +7982,47847pat0001,143,1,f +7982,6141,5,3,f +7982,6141,41,6,f +7982,6162,212,2,f +7982,6162,5,1,f +7982,6182,15,4,f +7982,6193,15,1,f +7982,6254,191,4,f +7982,6256,82,1,f +7982,62808,72,1,f +7982,62808,72,1,t +7982,6942,47,1,f +7982,72515,334,1,f +7983,2446,15,1,f +7983,2447,41,1,t +7983,2447,41,1,f +7983,2460,7,1,f +7983,2479,0,1,f +7983,298c02,15,1,t +7983,298c02,15,2,f +7983,3003,4,1,f +7983,3479,0,1,f +7983,3626bp05,14,1,f +7983,3666,0,4,f +7983,3795,0,1,f +7983,4617b,0,1,f +7983,6140,4,2,f +7983,6232,4,1,f +7983,970c00,1,1,f +7983,973pr1156c01,1,1,f +7984,2335p30,15,1,f +7984,2528pb01,0,1,f +7984,2530,8,2,f +7984,2540,0,2,f +7984,2542,4,2,f +7984,2543,1,2,f +7984,2544,0,2,f +7984,2545,0,2,f +7984,2555,0,2,f +7984,2555,15,2,f +7984,2561,6,2,f +7984,2562,6,2,f +7984,3068bp30,15,1,f +7984,3957a,0,1,f +7984,57503,334,2,f +7984,57504,334,2,f +7984,57505,334,2,f +7984,57506,334,2,f +7984,87692,14,1,f +7984,87693,14,1,f +7984,87694,14,1,f +7986,4266,7,2,f +7986,4267,0,2,f +7988,3003,4,100,f +7991,2983,7,1,f +7991,2984,4,1,f +7991,2985,4,1,f +7991,2986,4,1,f +7992,10201,71,1,f +7992,10247,71,2,f +7992,11153,4,2,f +7992,11211,15,1,f +7992,11289,41,1,f +7992,11303,272,1,f +7992,11476,15,2,f +7992,11476,71,1,f +7992,14769,71,1,f +7992,15068,2,1,f +7992,15068,19,2,f +7992,15068,15,3,f +7992,15207,72,9,f +7992,15207,15,1,f +7992,15210pr01,0,1,f +7992,15573,14,1,f +7992,16091,71,1,f +7992,18649,71,2,f +7992,18671,71,8,f +7992,18759,71,2,f +7992,2412b,71,13,f +7992,2412b,72,4,f +7992,2420,71,2,f +7992,2431,71,8,f +7992,2432,14,1,f +7992,2432,72,1,f +7992,2446,15,1,f +7992,2447,40,1,f +7992,2453b,19,10,f +7992,2454a,19,5,f +7992,2460,15,1,f +7992,2465,72,2,f +7992,2479,0,1,f +7992,2540,72,1,f +7992,2654,46,1,f +7992,2654,0,4,f +7992,2780,0,4,f +7992,28326,72,4,f +7992,2877,71,1,f +7992,298c02,14,1,f +7992,3001,15,1,f +7992,3002,72,2,f +7992,3003,2,1,f +7992,3004,0,1,f +7992,3004,19,5,f +7992,3004,71,2,f +7992,3004,72,6,f +7992,30043,71,1,f +7992,3005,19,8,f +7992,3005,71,2,f +7992,3009,72,1,f +7992,3009,2,1,f +7992,3010,15,1,f +7992,3010,1,1,f +7992,30157,72,3,f +7992,3020,71,1,f +7992,3020,0,6,f +7992,3021,19,1,f +7992,3021,72,3,f +7992,3022,70,1,f +7992,3022,0,2,f +7992,3022,2,2,f +7992,3022,71,2,f +7992,3023,15,4,f +7992,3023,70,2,f +7992,3023,71,2,f +7992,3023,1,2,f +7992,3023,72,1,f +7992,3023,19,6,f +7992,3024,182,2,f +7992,3024,36,2,f +7992,3024,33,4,f +7992,30248,72,1,f +7992,30283,72,1,f +7992,3031,0,1,f +7992,3032,72,1,f +7992,3032,0,1,f +7992,3034,71,7,f +7992,3034,72,1,f +7992,3035,72,2,f +7992,30374,71,4,f +7992,30395,72,1,f +7992,3040b,1,2,f +7992,30414,72,1,f +7992,3062b,1,2,f +7992,3068b,71,2,f +7992,3069b,33,3,f +7992,3069b,46,2,f +7992,3069bpr0030,72,1,f +7992,3069bpr0100,2,7,f +7992,3070b,36,3,f +7992,3070b,71,2,f +7992,3070b,34,1,f +7992,30725,70,1,f +7992,32013,71,2,f +7992,32054,71,1,f +7992,32062,4,2,f +7992,32064a,15,3,f +7992,32187,71,2,f +7992,3245b,19,2,f +7992,3245b,72,1,f +7992,3245b,71,2,f +7992,3245c,2,2,f +7992,32524,0,2,f +7992,32807,4,2,f +7992,3297,15,1,f +7992,3622,1,2,f +7992,3626cpr1147,14,1,f +7992,3626cpr1623,14,1,f +7992,3626cpr1849,14,1,f +7992,3626cpr2109,14,1,f +7992,3626cpr2141,14,1,f +7992,3633,72,3,f +7992,3660,72,2,f +7992,3660,1,1,f +7992,3665,71,2,f +7992,3665,72,4,f +7992,3666,2,1,f +7992,3666,28,1,f +7992,3666,15,2,f +7992,3666,1,4,f +7992,3666,71,6,f +7992,3666,4,1,f +7992,3673,71,4,f +7992,3706,0,1,f +7992,3710,72,2,f +7992,3710,19,1,f +7992,3710,0,3,f +7992,3710,71,5,f +7992,3747a,71,1,f +7992,3795,70,1,f +7992,3795,14,2,f +7992,3795,4,1,f +7992,3795,28,1,f +7992,3795,71,2,f +7992,3795,72,1,f +7992,3821,1,1,f +7992,3822,1,1,f +7992,3829c01,14,1,f +7992,3829c01,71,1,f +7992,3899,4,1,f +7992,4079,4,2,f +7992,41334,0,2,f +7992,41531,15,1,f +7992,4162,71,4,f +7992,4162,0,2,f +7992,41677,1,2,f +7992,4175,71,1,f +7992,4176,41,1,f +7992,41769,4,1,f +7992,41770,4,1,f +7992,4282,71,2,f +7992,43093,1,1,f +7992,4345b,71,1,f +7992,4346,15,1,f +7992,43888,19,10,f +7992,43903,0,2,f +7992,44570,71,1,f +7992,44728,71,2,f +7992,44728,15,4,f +7992,4522,0,1,f +7992,45677,4,1,f +7992,4595,0,2,f +7992,46667,0,1,f +7992,47720,71,2,f +7992,48336,71,1,f +7992,4865b,19,1,f +7992,4871,71,1,f +7992,50950,1,2,f +7992,52031,15,1,f +7992,52501,72,7,f +7992,54200,72,4,f +7992,54200,1,2,f +7992,55981,71,10,f +7992,57895,41,7,f +7992,59900,36,1,f +7992,60169,72,1,f +7992,60475b,1,4,f +7992,60475b,71,2,f +7992,60475b,72,2,f +7992,60475b,15,7,f +7992,60477,4,2,f +7992,60478,15,2,f +7992,60478,72,2,f +7992,60481,14,2,f +7992,60483,15,4,f +7992,60594,15,1,f +7992,60596,0,9,f +7992,60601,41,4,f +7992,60616a,41,1,f +7992,60621,71,1,f +7992,60657,15,1,f +7992,60658,15,1,f +7992,60897,0,2,f +7992,61252,4,2,f +7992,61345,15,2,f +7992,61409,15,2,f +7992,61409,72,2,f +7992,6141,34,1,f +7992,6141,47,2,f +7992,6141,2,1,f +7992,6141,36,1,f +7992,61482,71,2,f +7992,6179,71,2,f +7992,62113,0,1,f +7992,6231,72,2,f +7992,63868,71,2,f +7992,63868,0,2,f +7992,63965,0,1,f +7992,64450,0,1,f +7992,64567,0,1,f +7992,6636,71,1,f +7992,75c18,0,1,f +7992,85984,71,4,f +7992,85984,15,2,f +7992,87079,71,1,f +7992,87079,2,1,f +7992,87079,19,1,f +7992,87087,72,2,f +7992,87087,1,2,f +7992,87552,15,2,f +7992,87552,19,2,f +7992,87580,71,1,f +7992,88072,72,1,f +7992,88072,0,2,f +7992,92099,15,1,f +7992,92099,72,1,f +7992,92107,15,1,f +7992,92107,72,1,f +7992,92280,71,2,f +7992,92402,0,4,f +7992,92438,71,2,f +7992,92585,297,1,f +7992,92586pr0001,84,1,f +7992,92593,72,4,f +7992,92593,15,1,f +7992,92947,71,1,f +7992,93273,71,2,f +7992,93273,15,1,f +7992,96874,25,1,f +7992,970c00,272,3,f +7992,970c00,288,1,f +7992,970cpr1207,4,1,f +7992,973pr3694,272,1,f +7992,973pr3699,212,1,f +7992,973pr3700,15,1,f +7992,973pr3727,272,1,f +7992,973pr3728c01,288,1,f +7992,98100,15,1,f +7992,98138,46,1,f +7992,98138,36,1,f +7992,98313,0,2,f +7992,99207,0,2,f +7992,99780,72,3,f +7992,99780,71,2,f +7992,99780,4,7,f +7992,99780,0,1,f +7993,3005,15,2,f +7993,3021,462,2,f +7993,30363,15,2,f +7993,3626bpr0233,14,1,f +7993,3795,462,1,f +7993,3957a,7,1,f +7993,41334,0,1,f +7993,42446,7,1,f +7993,42446,7,1,t +7993,46203pb01c01,0,1,f +7993,6636,1,1,f +7993,73983,7,2,f +7993,970c00,462,1,f +7993,973px66c01,0,1,f +7994,11458,72,3,f +7994,11477,0,1,f +7994,12607ass01pr03,2,1,f +7994,12610pr0001,28,1,f +7994,12825,0,1,f +7994,14226c11,0,1,f +7994,14769,71,1,f +7994,15728pr01,0,1,f +7994,2357,14,2,f +7994,2431,71,2,f +7994,2446,0,1,f +7994,2447,40,1,f +7994,2447,40,1,t +7994,2496,0,2,f +7994,2540,15,1,f +7994,3005,14,1,f +7994,30136,71,2,f +7994,30162,71,1,f +7994,30173a,0,1,t +7994,30173a,0,1,f +7994,30173a,179,1,t +7994,30173a,179,1,f +7994,3020,71,1,f +7994,3023,71,2,f +7994,3023,0,1,f +7994,3024,4,1,t +7994,3024,4,1,f +7994,3035,72,1,f +7994,3062b,42,1,f +7994,3062b,4,1,f +7994,3062b,0,1,f +7994,3068b,15,1,f +7994,3068bpr0201,15,1,f +7994,3070b,0,1,t +7994,3070b,0,1,f +7994,32014,0,1,f +7994,32123b,14,1,t +7994,32123b,14,1,f +7994,3622,14,1,f +7994,3623,14,1,f +7994,3626cpr1412,78,1,f +7994,3673,71,1,t +7994,3673,71,1,f +7994,3794b,14,2,f +7994,4070,4,1,f +7994,42511,1,1,f +7994,4519,71,1,f +7994,4697b,71,2,f +7994,4697b,71,1,t +7994,4864b,47,2,f +7994,50859b,179,1,f +7994,50861,0,2,f +7994,50862,4,2,f +7994,54200,40,1,t +7994,54200,40,2,f +7994,55013,72,1,f +7994,59900,0,1,f +7994,60897,0,1,f +7994,6091,14,2,f +7994,61252,14,1,f +7994,6141,71,6,f +7994,6141,36,1,f +7994,6141,71,1,t +7994,6141,36,1,t +7994,63864,2,2,f +7994,63864,14,1,f +7994,63868,15,1,f +7994,64567,0,1,t +7994,64567,0,1,f +7994,88072,0,1,f +7994,89536,0,1,f +7994,92946,0,1,f +7994,95199,72,1,f +7994,970c00pr0653,0,1,f +7994,970c00pr0654,2,1,f +7994,973pr2267c01,2,1,f +7994,973pr2652c01,72,1,f +7994,98138,182,1,t +7994,98138,179,1,f +7994,98138,182,1,f +7994,98138,179,1,t +7995,2412b,72,1,t +7995,2412b,72,1,f +7995,2540,72,1,f +7995,2555,0,1,f +7995,2555,0,1,t +7995,30031,0,1,f +7995,3023,320,1,f +7995,3062b,0,3,f +7995,3069b,19,1,f +7995,3794a,19,2,f +7995,3794a,72,2,f +7995,3795,0,1,f +7995,3937,0,1,f +7995,3941,0,1,f +7995,4360,0,1,f +7995,44674,320,2,f +7995,44675,19,1,f +7995,4589,72,2,f +7995,4589,72,1,t +7995,4589,0,1,f +7995,4589,0,1,t +7995,4599a,0,1,t +7995,4599a,0,1,f +7995,4740,33,1,f +7995,54125pb02,0,1,f +7995,6014b,71,4,f +7995,6015,0,4,f +7995,6134,71,1,f +7995,6141,42,1,t +7995,6141,42,1,f +7995,6157,72,2,f +7997,3020,72,1,f +7997,3022,71,1,f +7997,4032a,71,4,f +7997,4519,14,2,f +7997,4740pr0001b,47,1,f +7997,4871,0,2,f +7997,60471,71,2,f +7997,6141,47,1,f +7997,6636,0,4,f +7997,72454,0,2,f +7997,92582,71,2,f +7997,92947,71,2,f +7997,98100,71,2,f +7998,11214,72,1,f +7998,11302pat0001,36,2,f +7998,15462,28,2,f +7998,18651,0,2,f +7998,19049,179,1,f +7998,19087,297,2,f +7998,20475,297,2,f +7998,24148,4,1,f +7998,24148,297,1,f +7998,24165,179,2,f +7998,24166,57,2,f +7998,24187,41,1,f +7998,24189,148,1,f +7998,24190,0,1,f +7998,24191,297,3,f +7998,24193pr0001,297,1,f +7998,24316,70,2,f +7998,2780,0,7,f +7998,2780,0,1,t +7998,32013,0,2,f +7998,32034,0,6,f +7998,32039,71,2,f +7998,32062,4,13,f +7998,32072,0,1,f +7998,32123b,71,4,f +7998,32123b,71,1,t +7998,32270,0,3,f +7998,32449,0,8,f +7998,3705,0,1,f +7998,3749,19,4,f +7998,41669,57,4,f +7998,41669,321,2,f +7998,42003,72,3,f +7998,4274,71,1,t +7998,4274,71,2,f +7998,43093,1,4,f +7998,4519,71,4,f +7998,53585,0,4,f +7998,6536,0,5,f +7998,6558,1,1,f +7998,74261,0,4,f +7998,87083,72,1,f +7998,90608,57,2,f +7998,90609,0,2,f +7998,90609,57,2,f +7998,90615,72,2,f +7998,90638,4,2,f +7998,90640,57,2,f +7998,90640,297,2,f +7998,90641,57,2,f +7998,90661,297,2,f +7998,93575,57,2,f +7999,2149stk01,9999,1,t +7999,2348b,33,1,f +7999,2349a,15,1,f +7999,2362a,15,4,f +7999,2377,15,2,f +7999,2412b,7,1,f +7999,2420,15,8,f +7999,2431,7,3,f +7999,2436,15,3,f +7999,2445,0,2,f +7999,2452,0,1,f +7999,2460,4,2,f +7999,2496,0,1,f +7999,2654,7,1,f +7999,2736,7,1,f +7999,298c03,0,2,f +7999,298c03,0,1,t +7999,3002,1,1,f +7999,3003,0,1,f +7999,3003,1,1,f +7999,3004,1,1,f +7999,3004,7,1,f +7999,3010,15,6,f +7999,3010,1,1,f +7999,3022,0,3,f +7999,3023,0,1,f +7999,3023,1,1,f +7999,3023,7,6,f +7999,3024,36,4,f +7999,3024,4,1,f +7999,3024,46,4,f +7999,3029,15,2,f +7999,3029,0,1,f +7999,3031,7,1,f +7999,3031,15,3,f +7999,3038,15,1,f +7999,3039,15,1,f +7999,3062b,4,2,f +7999,3069b,4,4,f +7999,3069b,7,4,f +7999,3070b,1,1,t +7999,3070b,1,2,f +7999,3491,0,1,f +7999,3622,15,2,f +7999,3626bpr0001,14,1,f +7999,3709,7,1,f +7999,3710,7,4,f +7999,3710,15,5,f +7999,3738,0,3,f +7999,3747a,7,1,f +7999,3794a,15,4,f +7999,3821,1,1,f +7999,3822,1,1,f +7999,3823,41,1,f +7999,3829c01,7,1,f +7999,3832,7,3,f +7999,3836,6,1,f +7999,3837,8,1,f +7999,4070,1,2,f +7999,4070,0,2,f +7999,4162,7,6,f +7999,4211,15,1,f +7999,4214,15,1,f +7999,4215a,15,8,f +7999,4276b,0,1,f +7999,4485,4,1,f +7999,4600,7,5,f +7999,4859,1,1,f +7999,4862,41,2,f +7999,6014a,15,10,f +7999,6015,0,10,f +7999,6019,4,3,f +7999,6179,15,4,f +7999,6546,15,4,f +7999,6556,15,2,f +7999,71137,383,2,f +7999,970c00,1,1,f +7999,973c01,15,1,f +8002,3004,14,4,f +8002,3030,14,1,f +8002,3033,4,1,f +8002,3633,4,1,f +8002,3660stk01,9999,1,t +8002,3741,2,1,f +8002,3742,15,1,t +8002,3742,15,3,f +8002,3867,2,1,f +8002,3899,1,1,f +8002,3980c02,4,2,f +8002,4071,4,1,f +8002,4072,14,1,f +8002,4222a,450,1,f +8002,4223,450,1,f +8002,4327,6,1,f +8002,4793,4,1,f +8002,4794a,366,2,f +8002,787c02,4,4,f +8002,x588c04,9999,1,f +8003,2456,4,2,f +8003,2456,14,2,f +8003,2456,1,2,f +8003,2456,15,2,f +8003,3001,0,7,f +8003,3001,2,7,f +8003,3001,15,14,f +8003,3001,1,14,f +8003,3001,14,14,f +8003,3001,4,14,f +8003,3002,4,8,f +8003,3002,0,4,f +8003,3002,2,4,f +8003,3002,1,8,f +8003,3002,15,8,f +8003,3002,14,8,f +8003,3003,0,20,f +8003,3003,14,44,f +8003,3003,15,44,f +8003,3003,2,20,f +8003,3003,4,44,f +8003,3003,1,44,f +8003,3004,15,24,f +8003,3004,27,4,f +8003,3004,14,24,f +8003,3004,0,12,f +8003,3004,73,4,f +8003,3004,2,12,f +8003,3004,4,24,f +8003,3004,1,24,f +8003,3005,73,4,f +8003,3005,0,8,f +8003,3005,14,16,f +8003,3005,15,16,f +8003,3005,27,4,f +8003,3005,2,8,f +8003,3005,4,16,f +8003,3005,1,16,f +8003,3007,14,1,f +8003,3007,15,1,f +8003,3007,4,1,f +8003,3007,1,1,f +8003,3008,14,2,f +8003,3008,4,2,f +8003,3008,15,2,f +8003,3008,1,2,f +8003,3009,14,4,f +8003,3009,15,4,f +8003,3009,1,4,f +8003,3009,4,4,f +8003,3010,15,7,f +8003,3010,0,6,f +8003,3010,14,7,f +8003,3010,1,7,f +8003,3010,4,7,f +8003,3010,2,6,f +8003,3020,0,2,f +8003,3020,4,2,f +8003,3021,1,2,f +8003,3021,4,2,f +8003,3022,4,2,f +8003,3022,1,2,f +8003,3037,4,6,f +8003,3039,4,6,f +8003,3040b,4,4,f +8003,3062b,4,2,f +8003,3062b,0,2,f +8003,3062b,15,2,f +8003,3297,0,2,f +8003,3298,0,2,f +8003,3299,4,1,f +8003,3300,4,1,f +8003,3622,14,4,f +8003,3622,1,4,f +8003,3622,4,4,f +8003,3622,15,4,f +8003,3622,2,4,f +8003,3622,0,4,f +8003,3660,4,2,f +8003,3665,4,2,f +8003,3710,15,2,f +8003,3794a,15,2,f +8003,4286,0,2,f +8003,6141,15,2,f +8003,6141,1,1,t +8003,6141,15,1,t +8003,6141,25,1,t +8003,6141,27,1,t +8003,6141,25,2,f +8003,6141,1,2,f +8003,6141,27,2,f +8004,2337,57,1,f +8004,2357,0,5,f +8004,2362a,0,1,f +8004,2362a,1,1,f +8004,2399,0,1,f +8004,2412b,1,1,f +8004,2418b,57,2,f +8004,2420,0,4,f +8004,2431,1,2,f +8004,2431,0,3,f +8004,2432,0,5,f +8004,2433,0,2,f +8004,2434,1,2,f +8004,2443,0,2,f +8004,2445,0,1,f +8004,2463,1,2,f +8004,2486,0,4,f +8004,2507pb01,57,1,f +8004,2540,0,1,f +8004,2547,8,1,f +8004,2548,8,1,f +8004,2569,57,2,f +8004,2582pb01,1,1,f +8004,2607,0,1,f +8004,2609,1,2,f +8004,3001,0,3,f +8004,30014,0,2,f +8004,3003,0,4,f +8004,3004,0,12,f +8004,3005,0,6,f +8004,3010,1,2,f +8004,3010,0,5,f +8004,3020,1,1,f +8004,3022,0,4,f +8004,3023,1,1,f +8004,3023,0,6,f +8004,3028,0,1,f +8004,3029,1,1,f +8004,3030,0,1,f +8004,30385,383,2,f +8004,3039,0,1,f +8004,3039pb019,1,1,f +8004,3040b,0,6,f +8004,3068b,1,1,f +8004,3587pb02,0,1,f +8004,3612,0,4,f +8004,3612,1,4,f +8004,3623,1,2,f +8004,3626bp7a,14,1,f +8004,3626bpx141,14,1,f +8004,3633,0,3,f +8004,3660,1,6,f +8004,3665,0,1,f +8004,3666,0,2,f +8004,37,383,2,f +8004,3710,0,4,f +8004,3749,7,5,f +8004,3795,1,1,f +8004,3795,0,2,f +8004,3829c01,1,2,f +8004,3829c01,0,1,f +8004,3855,57,2,f +8004,3933,0,2,f +8004,3934,0,2,f +8004,3941,0,2,f +8004,3947bpx1,9,1,f +8004,4032a,0,2,f +8004,4032a,1,1,f +8004,4033,0,2,f +8004,4070,0,2,f +8004,4085c,0,4,f +8004,412,57,4,f +8004,4162,0,1,f +8004,4220,1,1,f +8004,4221,0,2,f +8004,4275b,0,2,f +8004,4286,0,2,f +8004,4315,0,3,f +8004,4345b,57,2,f +8004,4346,57,2,f +8004,4474,57,1,f +8004,4477,1,2,f +8004,4477,0,1,f +8004,4531,0,4,f +8004,4589,57,2,f +8004,4623,1,2,f +8004,4625,0,2,f +8004,4857,0,2,f +8004,4859,1,1,f +8004,4859,0,1,f +8004,4865a,0,4,f +8004,4867,0,1,f +8004,57467,383,2,f +8004,59275,0,4,f +8004,6019,0,2,f +8004,6020,0,1,f +8004,6037,1,2,f +8004,6039,0,1,f +8004,6040,0,2,f +8004,6041,0,2,f +8004,6041,57,3,f +8004,6042,0,1,f +8004,6043,1,2,f +8004,6046,0,1,f +8004,6058,0,1,f +8004,6058,1,1,f +8004,6061,0,1,f +8004,6064,2,1,f +8004,6065,4,1,f +8004,6065,2,1,f +8004,6082,1,1,f +8004,6089,0,2,f +8004,6090,4,2,f +8004,6104,1,1,f +8004,6111,0,2,f +8004,6217,1,1,f +8004,70001pb01,0,1,f +8004,73092,0,3,f +8004,970x024,0,2,f +8004,973pb0075c01,0,1,f +8004,973pb0075c02,0,1,f +8005,10b,2,1,f +8005,141ac96,15,1,f +8005,15,1,2,f +8005,15,15,1,f +8005,17,1,2,f +8005,17,15,1,f +8005,21,47,2,f +8005,242c01,4,4,f +8005,273,0,48,f +8005,3001a,14,4,f +8005,3001a,0,4,f +8005,3002a,14,4,f +8005,3002a,0,4,f +8005,3003,0,4,f +8005,3003,14,4,f +8005,3004,14,20,f +8005,3004,47,4,f +8005,3004,0,10,f +8005,3005,0,8,f +8005,3005,14,12,f +8005,3006,14,2,f +8005,3007,14,2,f +8005,3008,0,6,f +8005,3008,14,6,f +8005,3009,14,16,f +8005,3009,0,6,f +8005,3010,0,6,f +8005,3010,14,14,f +8005,3010,47,2,f +8005,3020,7,4,f +8005,3020,0,4,f +8005,3020,14,4,f +8005,3021,0,4,f +8005,3021,14,4,f +8005,3022,0,4,f +8005,3022,14,4,f +8005,3022,7,2,f +8005,3023,14,4,f +8005,3023,0,5,f +8005,3024,14,2,f +8005,3024,0,3,f +8005,3030,14,2,f +8005,3032,0,2,f +8005,3032,14,2,f +8005,3034,7,4,f +8005,3034,14,4,f +8005,3034,0,4,f +8005,3035,0,2,f +8005,3036,0,1,f +8005,3037,14,2,f +8005,3037,47,2,f +8005,3037,0,16,f +8005,3038,0,4,f +8005,3039,47,2,f +8005,3039,14,4,f +8005,3039,0,12,f +8005,3040a,0,4,f +8005,3041,0,4,f +8005,3042,0,2,f +8005,3043,0,4,f +8005,3044a,0,2,f +8005,3046a,0,4,f +8005,3049b,0,1,f +8005,3062a,14,2,f +8005,3062a,0,2,f +8005,3068b,7,2,f +8005,3081cc01,4,6,f +8005,3127b,4,1,f +8005,3137c01,0,2,f +8005,3139,0,1,f +8005,3145,0,2,f +8005,3149c01,7,1,f +8005,3176,7,2,f +8005,3183a,4,1,f +8005,3184,4,1,f +8005,3228a,1,4,f +8005,3308,14,2,f +8005,3315,7,1,f +8005,3317,14,1,f +8005,3324c01,7,2,f +8005,3359,0,2,f +8005,3403c01,0,1,f +8005,3433,14,1,f +8005,3460,7,4,f +8005,3460,0,2,f +8005,3461,7,1,f +8005,3462,14,1,f +8005,3464,4,1,f +8005,3475a,7,2,f +8005,3480,7,2,f +8005,3481,14,2,f +8005,3482,4,4,f +8005,3483,0,4,f +8005,3491,7,1,f +8005,3492c01,14,1,f +8005,3579,14,1,f +8005,3581,14,4,f +8005,3582,4,4,f +8005,3587,14,1,f +8005,3597,7,1,f +8005,3624,15,1,f +8005,3624,1,2,f +8005,3626a,14,3,f +8005,3633,4,4,f +8005,3634,0,4,f +8005,3639,4,1,f +8005,3640,4,1,f +8005,3641,0,4,f +8005,3660,0,6,f +8005,3660,14,8,f +8005,3707,79,2,f +8005,3708,79,1,f +8005,3709a,7,2,f +8005,453cc01,4,2,f +8005,468c03,0,1,f +8005,569,4,4,f +8005,586c01,14,1,f +8005,7039,4,4,f +8005,7049b,0,4,f +8005,7930,4,1,f +8005,8,7,1,f +8005,828,4,1,f +8005,rb00164,0,1,f +8005,rb00168,0,2,f +8005,rb00169,0,2,f +8005,x148,4,6,f +8005,x469b,14,1,f +8006,10314,0,1,f +8006,11211,15,1,f +8006,11303,4,1,f +8006,11477,14,2,f +8006,11477,0,2,f +8006,11477,1,2,f +8006,13965,70,3,f +8006,15068,15,1,f +8006,15068,4,2,f +8006,15208,72,1,f +8006,15210,15,1,f +8006,15573,19,1,f +8006,15573,0,1,f +8006,15712,0,2,f +8006,2357,70,5,f +8006,2412b,71,5,f +8006,2412b,0,3,f +8006,2420,1,2,f +8006,2431,71,4,f +8006,2432,71,3,f +8006,2437,40,1,f +8006,2540,14,1,f +8006,2780,0,1,t +8006,2780,0,1,f +8006,3003,19,5,f +8006,30031,71,1,f +8006,3004,71,12,f +8006,3004,19,31,f +8006,3005,19,26,f +8006,3008,19,8,f +8006,3009,71,2,f +8006,3009,19,9,f +8006,30136,72,7,f +8006,3020,15,4,f +8006,3020,70,3,f +8006,3020,1,1,f +8006,3020,25,1,f +8006,3021,72,2,f +8006,3022,70,8,f +8006,3023,15,9,f +8006,3023,1,4,f +8006,3023,4,2,f +8006,3023,19,4,f +8006,3023,72,7,f +8006,3024,36,2,f +8006,3024,36,1,t +8006,3024,15,7,f +8006,3024,15,1,t +8006,3034,72,2,f +8006,30340,2,1,f +8006,3035,15,2,f +8006,3036,72,1,f +8006,3036,2,2,f +8006,30367c,15,1,f +8006,3037,320,16,f +8006,3037,15,14,f +8006,30377,0,1,t +8006,30377,0,1,f +8006,3039,15,6,f +8006,3039,320,16,f +8006,3040b,308,2,f +8006,3040b,15,10,f +8006,3040b,320,17,f +8006,3040b,288,4,f +8006,3040b,4,4,f +8006,3040b,25,2,f +8006,3046a,15,6,f +8006,3046a,320,6,f +8006,30565,2,3,f +8006,3062b,46,2,f +8006,3062b,70,5,f +8006,3062b,72,8,f +8006,3069b,14,1,f +8006,3069bpr0099,15,1,f +8006,32000,15,2,f +8006,33078,4,1,f +8006,33291,10,10,f +8006,33291,10,1,t +8006,3460,2,2,f +8006,3460,72,1,f +8006,3626b,25,1,f +8006,3626bpr0645,14,1,f +8006,3626bpr0677,14,1,f +8006,3666,15,7,f +8006,3710,70,2,f +8006,3710,15,8,f +8006,3710,1,6,f +8006,3795,15,4,f +8006,3829c01,14,1,f +8006,3830,72,2,f +8006,3831,72,2,f +8006,3832,2,1,f +8006,3836,70,1,f +8006,3899,47,1,f +8006,4032a,0,4,f +8006,4032a,2,3,f +8006,4070,15,4,f +8006,4081b,71,4,f +8006,4162,1,3,f +8006,41879a,321,1,f +8006,4286,2,5,f +8006,43093,1,1,f +8006,44728,1,4,f +8006,4599b,71,1,f +8006,4599b,71,1,t +8006,4600,0,3,f +8006,4624,71,6,f +8006,4733,0,1,f +8006,4740,15,2,f +8006,4740,0,2,f +8006,48336,0,3,f +8006,48729b,71,1,t +8006,48729b,71,1,f +8006,54200,15,4,f +8006,54200,15,1,t +8006,59900,0,2,f +8006,59900,15,4,f +8006,60470a,71,1,f +8006,60592,15,4,f +8006,60593,15,2,f +8006,60594,15,3,f +8006,60596,15,1,f +8006,60601,47,4,f +8006,60602,47,2,f +8006,60608,2,6,f +8006,60623,2,1,f +8006,60897,72,3,f +8006,61252,4,1,f +8006,6141,14,1,t +8006,6141,182,1,t +8006,6141,47,1,t +8006,6141,0,3,f +8006,6141,4,1,t +8006,6141,25,6,f +8006,6141,4,9,f +8006,6141,14,7,f +8006,6141,182,3,f +8006,6141,47,2,f +8006,6141,0,1,t +8006,6141,25,1,t +8006,6231,4,2,f +8006,6231,70,2,f +8006,63965,0,1,f +8006,6636,72,3,f +8006,85984,70,3,f +8006,87079,14,1,f +8006,87414,0,6,f +8006,88286,308,1,f +8006,91405,10,1,f +8006,96874,25,1,t +8006,970c00,28,1,f +8006,973pr1163c01,272,1,f +8006,973pr1573c01,15,1,f +8006,98138,71,1,t +8006,98138,71,5,f +8006,98138pr0012,179,1,t +8006,98138pr0012,179,1,f +8006,98782,36,1,f +8006,99781,0,1,f +8009,18830pr0001,15,1,f +8009,3626cpr1550,14,1,f +8009,88646,0,1,f +8009,93550,179,1,f +8009,970c00pr0759,15,1,f +8009,973pr2842c01,15,1,f +8011,3020,7,5,f +8011,3020,4,5,f +8011,3020,47,5,f +8011,3020,1,5,f +8011,3020,15,5,f +8011,3020,14,5,f +8011,3021,4,5,f +8011,3021,1,5,f +8011,3021,47,5,f +8011,3021,7,5,f +8011,3021,14,5,f +8011,3021,15,5,f +8011,3022,15,4,f +8011,3022,4,4,f +8011,3022,1,4,f +8011,3022,47,4,f +8011,3022,14,4,f +8011,3022,7,4,f +8011,3023,15,3,f +8011,3023,1,3,f +8011,3023,14,3,f +8011,3023,7,3,f +8011,3023,4,3,f +8011,3023,47,3,f +8011,3024,4,2,f +8011,3024,14,2,f +8011,3024,47,2,f +8011,3024,7,2,f +8011,3024,15,2,f +8011,3024,1,2,f +8013,30136,84,2,f +8013,3022,19,1,f +8013,3024,2,2,f +8013,3024,2,1,t +8013,3024,4,1,t +8013,3024,4,2,f +8013,30367c,322,1,f +8013,33009,26,1,f +8013,59900,15,1,f +8013,6141,46,1,f +8013,6141,46,1,t +8016,2432,4,1,f +8016,2540,71,2,f +8016,2543,4,1,f +8016,3004,2,1,f +8016,3004,1,1,f +8016,3004,14,1,f +8016,30150,70,1,f +8016,30377,71,1,f +8016,30377,71,1,t +8016,3062b,15,1,f +8016,3069b,2,1,f +8016,3626bpr0001,14,1,f +8016,3710,70,2,f +8016,3795,4,1,f +8016,48812,72,1,f +8016,6120,72,4,f +8016,6132,15,1,f +8016,970c00,72,1,f +8016,973c02,4,1,f +8017,2357,320,4,f +8017,3003,2,1,f +8017,3004,320,6,f +8017,3005,15,3,f +8017,3005,272,1,f +8017,3005,320,7,f +8017,3005,288,1,f +8017,3009,320,10,f +8017,3009,15,2,f +8017,3020,19,1,f +8017,3021,19,5,f +8017,3021,2,4,f +8017,3022,4,1,f +8017,3031,2,2,f +8017,3068bpr0197,28,1,f +8017,3070b,15,1,t +8017,3070b,15,3,f +8017,3623,19,1,f +8017,3623,2,4,f +8017,3626bpr0645,14,1,f +8017,3710,28,2,f +8017,3794b,1,1,f +8017,3901,70,1,f +8017,3941,70,1,f +8017,41539,71,1,f +8017,41879a,1,1,f +8017,4589,297,1,f +8017,54200,297,4,f +8017,54200,297,1,t +8017,60594,15,1,f +8017,60607,15,2,f +8017,6141,4,4,f +8017,6141,14,1,t +8017,6141,25,4,f +8017,6141,4,1,t +8017,6141,1,5,f +8017,6141,25,1,t +8017,6141,14,4,f +8017,6141,1,1,t +8017,6636,15,2,f +8017,87087,71,2,f +8017,87580,10,2,f +8017,87580,4,1,f +8017,973c02,4,1,f +8018,10201,71,1,f +8018,15391,70,2,f +8018,15392,72,2,f +8018,15573,72,3,f +8018,15712,71,2,f +8018,2412b,70,2,f +8018,2432,70,1,f +8018,2877,70,2,f +8018,3003,70,1,f +8018,3020,70,1,f +8018,3023,484,1,f +8018,3023,0,2,f +8018,32028,70,1,f +8018,3795,72,1,f +8018,4070,0,2,f +8018,4286,70,1,f +8018,43898,70,1,f +8018,4697b,71,1,f +8018,4740,0,1,f +8018,47905,72,1,f +8018,52107,71,1,f +8018,54200,484,2,f +8018,6141,182,4,f +8018,85984,70,7,f +8018,99781,0,1,f +8023,30132,8,1,f +8023,30141,8,1,f +8023,30150,6,1,f +8023,30152pat0001,0,1,f +8023,30158,6,1,f +8023,30167,6,1,f +8023,30169,0,1,f +8023,3069bp03,7,1,f +8023,3626bpa3,14,1,f +8023,3795,2,1,f +8023,3837,8,1,f +8023,970c00,0,1,f +8023,973pb0391c01,19,1,f +8027,2362b,0,2,f +8027,2412b,0,1,f +8027,2432,0,2,f +8027,2456,0,1,f +8027,2540,0,2,f +8027,2921,0,12,f +8027,3004,0,25,f +8027,3009,0,1,f +8027,3020,0,1,f +8027,3023,0,2,f +8027,3037,0,6,f +8027,3040b,0,6,f +8027,3062b,8,2,f +8027,3068b,0,1,f +8027,32064b,15,1,f +8027,3297,0,4,f +8027,3623,0,2,f +8027,3660,0,4,f +8027,3794a,0,1,f +8027,3941,0,1,f +8027,3960,0,1,f +8027,4032a,0,1,f +8027,4175,0,2,f +8027,4215b,0,2,f +8027,4349,0,1,f +8027,4510,0,2,f +8027,6019,0,2,f +8027,6111,0,2,f +8027,6141,8,8,f +8027,6141,42,4,f +8027,6141,36,3,f +8027,6587,8,1,f +8028,2607,1,3,f +8028,2609,15,3,f +8028,73092,0,6,f +8029,2780,0,14,f +8029,2780,0,1,t +8029,32015,0,2,f +8029,32034,0,1,f +8029,32039,0,6,f +8029,32062,4,10,f +8029,32073,71,1,f +8029,32140,71,4,f +8029,32278,0,2,f +8029,32291,0,6,f +8029,32316,0,1,f +8029,32348,0,3,f +8029,32525,71,2,f +8029,3707,0,1,f +8029,40490,0,1,f +8029,41678,71,5,f +8029,43093,1,2,f +8029,4519,71,15,f +8029,50858,135,2,f +8029,53544,135,1,f +8029,54821,135,8,f +8029,57563,135,1,f +8029,57585,71,2,f +8029,60176,320,2,f +8029,60895,320,1,f +8029,60896,320,4,f +8029,60898pat0001,320,1,f +8029,60901,57,1,f +8029,60902,320,2,f +8029,60935,135,4,f +8029,61800,135,4,f +8029,61801,135,3,f +8029,61806,135,1,f +8029,62233,135,1,f +8029,62531,0,2,f +8029,6536,0,2,f +8029,6558,1,14,f +8029,6632,0,1,f +8030,15573,71,5,f +8030,2357,71,14,f +8030,2357,72,12,f +8030,2412b,19,7,f +8030,2420,70,2,f +8030,2420,71,5,f +8030,2431,71,6,f +8030,3001,72,1,f +8030,3001,71,2,f +8030,3003,71,1,f +8030,3004,72,3,f +8030,3004,71,16,f +8030,3005,72,1,f +8030,3005,19,23,f +8030,3005,71,10,f +8030,3005,1,1,f +8030,3009,71,5,f +8030,3010,72,1,f +8030,3010,71,12,f +8030,3021,28,5,f +8030,3023,71,7,f +8030,3023,19,6,f +8030,3023,28,3,f +8030,3024,71,12,f +8030,3024,71,1,t +8030,3024,0,1,f +8030,3024,28,2,f +8030,3024,0,1,t +8030,3024,28,1,t +8030,3024,4,1,t +8030,3024,4,2,f +8030,3024,70,34,f +8030,3024,70,1,t +8030,3024,15,2,f +8030,3024,15,1,t +8030,3024pr0005,27,1,f +8030,3024pr0005,27,1,t +8030,3024pr0006,2,1,t +8030,3024pr0006,2,1,f +8030,3024pr0007,19,1,t +8030,3024pr0007,19,1,f +8030,3024pr0008,19,1,t +8030,3024pr0008,19,1,f +8030,3069b,71,7,f +8030,3070b,288,67,f +8030,3070b,15,1,t +8030,3070b,27,1,t +8030,3070b,71,1,t +8030,3070b,71,18,f +8030,3070b,1,3,f +8030,3070b,70,3,f +8030,3070b,28,25,f +8030,3070b,2,1,t +8030,3070b,2,1,f +8030,3070b,1,1,t +8030,3070b,19,17,f +8030,3070b,27,20,f +8030,3070b,15,11,f +8030,3070b,28,1,t +8030,3070b,19,1,t +8030,3070b,288,1,t +8030,3070b,70,1,t +8030,3070bpr0148,29,1,f +8030,3070bpr0148,29,1,t +8030,32062,0,4,f +8030,32064b,72,11,f +8030,3622,2,1,f +8030,3622,71,5,f +8030,3623,19,6,f +8030,3623,71,2,f +8030,3710,70,4,f +8030,3710,71,5,f +8030,3710,28,8,f +8030,3710,19,2,f +8030,3794b,28,3,f +8030,3958,71,4,f +8030,3958,70,4,f +8030,47905,29,1,f +8030,54200,47,5,f +8030,54200,47,1,t +8030,60475b,72,3,f +8030,6141,2,1,t +8030,6141,27,1,t +8030,6141,27,3,f +8030,6141,2,3,f +8030,63864,71,1,f +8030,64647,182,3,f +8030,64647,182,1,t +8030,6636,71,5,f +8030,92593,72,4,f +8030,96874,25,1,t +8033,2357,272,76,f +8033,2357,15,50,f +8033,3001,15,2,f +8033,3002,15,4,f +8033,3004,15,30,f +8033,3004,272,36,f +8033,3005,272,16,f +8033,3005,15,20,f +8033,3008,15,4,f +8033,3009,15,28,f +8033,3010,15,16,f +8033,3010,272,16,f +8033,3020,15,2,f +8033,3023,15,4,f +8033,3024,15,4,f +8033,3035,15,1,f +8033,3070b,15,4,f +8033,3622,15,18,f +8033,3666,15,4,f +8033,3710,15,8,f +8033,3958,15,3,f +8033,4162,15,4,f +8034,23306,383,1,f +8034,2357,8,2,f +8034,2412b,1,5,f +8034,2412b,8,2,f +8034,2420,14,2,f +8034,2431,15,7,f +8034,2431,7,1,f +8034,2450,7,4,f +8034,2458,7,1,f +8034,2462,15,2,f +8034,2462,8,2,f +8034,2540,4,4,f +8034,2577,1,2,f +8034,2637,7,8,f +8034,2780,0,16,f +8034,2877,7,8,f +8034,298c02,15,2,f +8034,3001,8,3,f +8034,3001,15,2,f +8034,3002,14,3,f +8034,3002,7,2,f +8034,3003,0,6,f +8034,3004,0,4,f +8034,3004,7,5,f +8034,3005,0,2,f +8034,3005,7,2,f +8034,3010,8,2,f +8034,3010,7,5,f +8034,3020,1,6,f +8034,3020,0,1,f +8034,3020,14,2,f +8034,3020,8,3,f +8034,30208,15,2,f +8034,3021,1,4,f +8034,3021,7,5,f +8034,3022,14,4,f +8034,3022,1,4,f +8034,3022,7,2,f +8034,3023,8,8,f +8034,3029,0,4,f +8034,3031,8,4,f +8034,3031,0,2,f +8034,3032,8,2,f +8034,3033,0,2,f +8034,3033,8,1,f +8034,3034,4,3,f +8034,3035,8,1,f +8034,30357,8,2,f +8034,30359a,8,2,f +8034,3036,0,2,f +8034,30361apr1,15,1,f +8034,30362,15,2,f +8034,30363,1,2,f +8034,30364,8,8,f +8034,30365,7,8,f +8034,30366ps1,40,1,f +8034,30367bpr0007,15,1,f +8034,30368,0,1,f +8034,3037,8,1,f +8034,30370ps5,15,1,f +8034,30372pr0001,40,1,f +8034,30373,8,2,f +8034,30374,36,1,f +8034,3039,8,1,f +8034,3039,7,5,f +8034,3039pr0008,0,1,f +8034,3040b,1,8,f +8034,3040b,7,2,f +8034,3045,7,2,f +8034,3068b,0,3,f +8034,3068b,15,1,f +8034,3068bpr0071,19,2,f +8034,3069b,0,3,f +8034,3069bpr0086,7,1,f +8034,3298,0,1,f +8034,3460,4,2,f +8034,3460,1,4,f +8034,3623,0,2,f +8034,3626bp69,14,1,f +8034,3626bps7,7,1,f +8034,3660,7,6,f +8034,3660,0,4,f +8034,3665,8,4,f +8034,3666,8,5,f +8034,3666,1,4,f +8034,3666,14,1,f +8034,3679,7,1,f +8034,3680,4,1,f +8034,3701,0,3,f +8034,3708,0,2,f +8034,3710,8,8,f +8034,3747a,7,4,f +8034,3794a,0,2,f +8034,3795,8,8,f +8034,3832,7,5,f +8034,3933,8,1,f +8034,3934,8,1,f +8034,3935,0,4,f +8034,3936,0,4,f +8034,3937,7,3,f +8034,3938,0,3,f +8034,3940b,0,3,f +8034,3958,8,1,f +8034,4070,8,4,f +8034,4070,15,2,f +8034,4085c,4,2,f +8034,4150,7,1,f +8034,4150ps5,7,3,f +8034,4286,7,16,f +8034,4345b,15,1,f +8034,4346ps1,7,1,f +8034,4589,15,2,f +8034,4599a,0,4,f +8034,4871,7,4,f +8034,50231,0,1,f +8034,6112,7,2,f +8034,6141,4,4,f +8034,6141,36,6,f +8034,6222,14,2,f +8034,6222,7,2,f +8034,6222,8,8,f +8034,6232,7,4,f +8034,6233,0,2,f +8034,6249,8,4,f +8034,6259,7,4,f +8034,6564,15,3,f +8034,6565,15,3,f +8034,76385,8,2,f +8034,970c00,0,1,f +8034,970x027,25,1,f +8034,973pr1301c01,25,1,f +8034,973ps7c01,0,1,f +8035,2412b,14,2,f +8035,2419,2,1,f +8035,2432,14,2,f +8035,2458,4,1,f +8035,2479,7,1,f +8035,2625,4,2,f +8035,3001,1,4,f +8035,3001,14,4,f +8035,3001,4,4,f +8035,3001,15,2,f +8035,3001,2,2,f +8035,3001,0,2,f +8035,3002,1,2,f +8035,3002,0,2,f +8035,3002,4,2,f +8035,3002,15,2,f +8035,3002,14,2,f +8035,3003,1,6,f +8035,3003,14,6,f +8035,3003,4,6,f +8035,3003,15,2,f +8035,3003,0,2,f +8035,3004,14,20,f +8035,3004,4,20,f +8035,3004,15,10,f +8035,3004,0,10,f +8035,3004,1,20,f +8035,3004,2,6,f +8035,3005,1,12,f +8035,3005,15,6,f +8035,3005,4,12,f +8035,3005,0,6,f +8035,3005,2,4,f +8035,3005,14,12,f +8035,3005pe1,2,2,f +8035,3008,14,2,f +8035,3008,4,2,f +8035,3009,4,4,f +8035,3009,14,2,f +8035,3009,15,2,f +8035,3009,1,2,f +8035,3010,15,6,f +8035,3010,4,14,f +8035,3010,14,14,f +8035,3010,1,14,f +8035,3010,0,6,f +8035,3010p01,14,1,f +8035,30161,47,1,f +8035,3020,1,2,f +8035,3021,2,2,f +8035,3021,1,2,f +8035,3022,2,2,f +8035,3022,1,2,f +8035,3030,1,1,f +8035,3032,1,1,f +8035,3040b,4,2,f +8035,3062b,2,4,f +8035,3062b,15,8,f +8035,3149c01,4,1,f +8035,3297,4,2,f +8035,3297px3,4,2,f +8035,3298,4,2,f +8035,3298p12,4,2,f +8035,3299,4,2,f +8035,3300,4,2,f +8035,3307,15,2,f +8035,3334,2,1,f +8035,3483,0,6,f +8035,3622,15,2,f +8035,3622,14,2,f +8035,3622,4,6,f +8035,3622,2,2,f +8035,3622,1,6,f +8035,3626bpr0001,14,1,f +8035,3626bpx19,14,1,f +8035,3633,15,2,f +8035,3665,4,2,f +8035,3666,1,2,f +8035,3666,2,2,f +8035,3679,7,1,f +8035,3680,4,1,f +8035,3710,1,2,f +8035,3730,4,1,f +8035,3731,4,1,f +8035,3741,2,2,f +8035,3742,15,3,f +8035,3742,15,1,t +8035,3742,4,3,f +8035,3742,4,1,t +8035,3747b,4,2,f +8035,3795,1,2,f +8035,3795,2,2,f +8035,3823,41,1,f +8035,3829c01,14,2,f +8035,3853,1,2,f +8035,3854,14,4,f +8035,3856,2,4,f +8035,3861b,14,1,f +8035,3957a,15,1,f +8035,3960p03,15,1,f +8035,3962b,0,1,f +8035,4070,4,2,f +8035,4079,14,2,f +8035,4175,14,2,f +8035,4286,4,4,f +8035,4287,4,4,f +8035,4485,4,1,f +8035,4485,0,1,f +8035,4495b,2,1,f +8035,4625,1,1,f +8035,6041,0,1,f +8035,6064,2,1,f +8035,6248,15,6,f +8035,6249,8,3,f +8035,6564,4,1,f +8035,6565,4,1,f +8035,970c00,0,1,f +8035,970c00,1,1,f +8035,973p01c01,15,1,f +8035,973px33c01,15,1,f +8037,2399,0,1,f +8037,2412a,15,1,f +8037,2412b,0,2,f +8037,2421,0,1,f +8037,2431,0,2,f +8037,2436,15,1,f +8037,2437,41,1,f +8037,2446,15,2,f +8037,2447,41,2,f +8037,2460,0,1,f +8037,2479,7,1,f +8037,2483,41,1,f +8037,2508,7,1,f +8037,2540,0,1,f +8037,2610,14,1,f +8037,298c02,15,1,f +8037,298c02,4,3,f +8037,3003,0,1,f +8037,3004p18,15,2,f +8037,3005,15,2,f +8037,3020,0,4,f +8037,3020,15,2,f +8037,3021,0,1,f +8037,3021,15,2,f +8037,3022,15,3,f +8037,3022,0,1,f +8037,3023,0,2,f +8037,3023,15,4,f +8037,3024,33,2,f +8037,3024,46,3,f +8037,3024,36,4,f +8037,3024,0,2,f +8037,3024,15,4,f +8037,3062b,15,2,f +8037,3068bp06,15,1,f +8037,3069bp02,7,1,f +8037,3069bpb001,15,3,f +8037,3070b,36,2,f +8037,3070b,34,1,f +8037,3139,0,2,f +8037,3176,7,1,f +8037,3460,0,2,f +8037,3464,47,2,f +8037,3624,15,1,f +8037,3626apr0001,14,3,f +8037,3641,0,2,f +8037,3666,0,2,f +8037,3666,15,2,f +8037,3710,0,1,f +8037,3710,15,9,f +8037,3730,0,1,f +8037,3747a,15,1,f +8037,3788,15,2,f +8037,3794a,0,3,f +8037,3795,7,1,f +8037,3795,0,1,f +8037,3821,15,1,f +8037,3822,15,1,f +8037,3823,41,1,f +8037,3829c01,4,2,f +8037,3962b,0,1,f +8037,4070,0,2,f +8037,4081b,7,2,f +8037,4084,0,4,f +8037,4085c,15,1,f +8037,4162,0,2,f +8037,4213,15,1,f +8037,4214,15,1,f +8037,4286,0,1,f +8037,4286,15,2,f +8037,4287,15,1,f +8037,4315,15,1,f +8037,4360,7,1,f +8037,4477,15,1,f +8037,4480c01,15,1,f +8037,4488,15,1,f +8037,4589,7,2,f +8037,4599a,7,2,f +8037,4600,0,3,f +8037,4624,15,4,f +8037,4624,7,2,f +8037,4854,15,1,f +8037,4855,15,1,f +8037,4859,7,1,f +8037,4859,0,1,f +8037,4859,15,2,f +8037,4865a,0,1,f +8037,4865p18,15,2,f +8037,4871,15,1,f +8037,4873,7,2,f +8037,6141,33,2,f +8037,6141,46,2,f +8037,6141,36,4,f +8037,970c00,0,3,f +8037,973pb0079c01,0,2,f +8037,973pb0091c01,0,1,f +8044,2419,1,2,f +8044,3003,4,1,f +8044,3004,4,2,f +8044,3021,1,1,f +8044,3021,4,1,f +8044,3022,4,3,f +8044,3022,1,1,f +8044,3023,14,1,f +8044,3023,4,1,f +8044,3024,4,4,f +8044,3024,0,1,f +8044,3298,4,1,f +8044,3700,1,2,f +8044,3710,71,1,f +8044,3794b,0,1,f +8044,3794b,15,1,f +8044,4274,71,2,f +8044,4274,71,1,t +8044,44728,15,1,f +8044,48336,1,1,f +8044,49668,191,2,f +8044,50950,25,1,f +8044,51739,14,2,f +8044,54200,4,4,f +8044,54200,4,1,t +8044,60470a,14,1,f +8044,6141,41,1,t +8044,6141,41,2,f +8044,63864,4,2,f +8044,6636,4,2,f +8044,87087,15,4,f +8045,2346,0,8,f +8045,2357,15,4,f +8045,2357,14,2,f +8045,2357,1,4,f +8045,2412b,7,4,f +8045,2413,1,2,f +8045,2419,1,2,f +8045,2423,2,2,f +8045,2432,14,2,f +8045,2434,7,1,f +8045,2446px6,1,1,f +8045,2447,41,1,f +8045,2458,7,2,f +8045,2460,7,2,f +8045,2479,0,2,f +8045,2540,7,2,f +8045,2625,1,2,f +8045,2877,7,2,f +8045,3001,4,2,f +8045,3001,14,4,f +8045,3001,15,6,f +8045,3001,1,6,f +8045,3001,0,2,f +8045,3002,4,2,f +8045,3002,1,6,f +8045,3002,15,6,f +8045,3002,0,2,f +8045,3002,14,4,f +8045,3003,14,8,f +8045,3003,15,14,f +8045,3003,4,6,f +8045,3003,1,12,f +8045,3003,0,6,f +8045,3004,14,18,f +8045,3004,1,30,f +8045,3004,4,14,f +8045,3004,0,8,f +8045,3004,15,34,f +8045,3005,14,18,f +8045,3005,4,12,f +8045,3005,0,10,f +8045,3005,15,24,f +8045,3005,1,20,f +8045,30055,15,4,f +8045,30056,15,2,f +8045,3005pe1,2,2,f +8045,3005pe1,14,2,f +8045,3008,15,4,f +8045,3008,1,2,f +8045,3008,14,2,f +8045,3009,14,2,f +8045,3009,4,2,f +8045,3009,1,4,f +8045,3009,0,2,f +8045,3009,15,4,f +8045,3010,14,12,f +8045,3010,0,8,f +8045,3010,15,18,f +8045,3010,4,8,f +8045,3010,1,16,f +8045,3010p01,14,2,f +8045,3010p02,15,2,f +8045,3020,1,4,f +8045,3021,1,2,f +8045,3022,1,4,f +8045,3028,1,1,f +8045,3031,1,2,f +8045,3032,1,2,f +8045,3035,1,2,f +8045,3036,1,1,f +8045,3062b,15,16,f +8045,3065,47,4,f +8045,3149c01,7,2,f +8045,3297,2,12,f +8045,3297p02,2,4,f +8045,3298,2,10,f +8045,3298p18,2,2,f +8045,3299,2,4,f +8045,3300,2,4,f +8045,3460,1,4,f +8045,3622,14,8,f +8045,3622,15,12,f +8045,3622,0,6,f +8045,3622,1,10,f +8045,3622,4,6,f +8045,3626bpr0001,14,1,f +8045,3626bpx19,14,1,f +8045,3626bpx55,14,1,f +8045,3679,7,2,f +8045,3680,14,2,f +8045,3710,1,4,f +8045,3730,14,1,f +8045,3731,14,1,f +8045,3741,2,2,f +8045,3742,4,3,f +8045,3742,4,1,t +8045,3742,15,3,f +8045,3742,15,1,t +8045,3747b,15,4,f +8045,3794a,7,2,f +8045,3795,1,2,f +8045,3823,47,2,f +8045,3829c01,14,2,f +8045,3832,1,2,f +8045,3853,4,4,f +8045,3854,15,8,f +8045,3856,2,8,f +8045,3861b,4,2,f +8045,3867,14,2,f +8045,3878,0,1,f +8045,3937,7,2,f +8045,3938,7,2,f +8045,3941,7,2,f +8045,3957a,14,2,f +8045,3960p03,15,1,f +8045,3962b,0,1,f +8045,4083,14,2,f +8045,4175,14,2,f +8045,4286,2,4,f +8045,4287,15,4,f +8045,4495b,4,1,f +8045,55298,8,1,f +8045,6007,8,1,f +8045,6041,0,2,f +8045,6060,15,4,f +8045,6064,2,2,f +8045,6131,2,1,f +8045,6215,14,6,f +8045,6248,7,8,f +8045,6249,8,4,f +8045,970c00,2,1,f +8045,970c00,15,1,f +8045,970c00,1,1,f +8045,973c01,1,1,f +8045,973px33c01,15,2,f +8046,15210,15,1,f +8046,3002,71,1,f +8046,3005,70,1,f +8046,3020,70,3,f +8046,3022,70,1,f +8046,3022,72,3,f +8046,3022,71,2,f +8046,3023,71,2,f +8046,30385,297,1,f +8046,3048c,70,2,f +8046,3068bprg0001,19,1,f +8046,3068bprg0002,19,2,f +8046,3068bprg0003,19,2,f +8046,3068bprg0004,0,1,f +8046,3069b,1,1,f +8046,3070b,70,1,t +8046,3070b,70,1,f +8046,3659,71,2,f +8046,3710,14,1,f +8046,3710,4,1,f +8046,3794a,70,2,f +8046,3795,1,1,f +8046,3957a,70,1,f +8046,3958,19,2,f +8046,3958,1,2,f +8046,3958,72,2,f +8046,4460b,71,3,f +8046,54200,71,1,t +8046,54200,71,4,f +8046,59900,4,8,f +8046,59900,36,1,f +8046,6091,1,2,f +8046,6141,4,1,t +8046,6141,4,1,f +8046,6141,70,8,f +8046,6141,70,1,t +8046,6215,1,1,f +8046,64776pat0001,0,1,f +8046,85863pr0053,14,1,f +8046,85863pr0055,4,1,f +8046,85863pr0057,148,1,f +8046,85863pr0058,2,5,f +8046,87580,71,8,f +8046,87580,70,1,f +8046,87580,19,3,f +8046,87580,72,9,f +8046,87580,28,3,f +8046,92585,4,1,f +8047,11211,71,2,f +8047,12825,15,2,f +8047,14769,72,2,f +8047,2357,70,3,f +8047,2357,19,3,f +8047,2420,4,1,f +8047,2420,19,4,f +8047,2420,72,1,f +8047,2420,15,1,f +8047,2420,70,4,f +8047,2540,1,1,f +8047,2586pr0009,71,1,f +8047,3002,72,1,f +8047,3002,15,1,f +8047,3003,5,1,f +8047,3004,15,2,f +8047,3004,2,2,f +8047,3004,72,3,f +8047,3004,70,9,f +8047,3004,1,2,f +8047,3004,19,9,f +8047,3005,4,1,f +8047,3005,15,1,f +8047,3005,72,2,f +8047,3020,1,1,f +8047,3020,2,4,f +8047,3021,1,2,f +8047,3021,72,3,f +8047,3021,15,1,f +8047,3022,1,1,f +8047,3022,70,5,f +8047,3022,0,1,f +8047,3022,19,4,f +8047,3022,72,4,f +8047,3023,71,2,f +8047,3023,70,1,f +8047,3023,19,1,f +8047,3023,15,4,f +8047,3023,14,1,f +8047,3023,0,8,f +8047,3024,15,2,f +8047,3024,70,1,f +8047,3024,72,1,f +8047,3024,19,1,f +8047,3036,2,2,f +8047,3037,2,2,f +8047,3040b,2,2,f +8047,3040b,71,4,f +8047,3068b,1,1,f +8047,3068b,28,1,f +8047,3070b,72,2,f +8047,3070b,0,5,f +8047,33291,5,3,f +8047,33291,191,3,f +8047,3622,15,1,f +8047,3623,0,3,f +8047,3623,70,1,f +8047,3623,19,1,f +8047,3623,15,3,f +8047,3623,4,2,f +8047,3623,1,1,f +8047,3660,15,1,f +8047,3678b,4,2,f +8047,3679,71,1,f +8047,3680,4,1,f +8047,3710,19,1,f +8047,3710,70,1,f +8047,3741,2,1,f +8047,3742,5,4,f +8047,3794b,0,1,f +8047,3794b,4,2,f +8047,3794b,70,3,f +8047,3794b,19,3,f +8047,3832,71,4,f +8047,4032a,15,1,f +8047,4070,0,2,f +8047,4070,72,4,f +8047,4070,70,2,f +8047,4081b,0,7,f +8047,4081b,19,3,f +8047,4081b,14,4,f +8047,4085c,19,5,f +8047,4085c,15,2,f +8047,4085c,0,5,f +8047,41769,1,1,f +8047,41770,1,1,f +8047,4589,1,1,f +8047,51739,1,1,f +8047,54383,288,1,f +8047,54384,288,1,f +8047,60474,15,1,f +8047,60478,15,5,f +8047,60478,72,2,f +8047,6124,45,1,f +8047,61252,1,3,f +8047,61252,15,3,f +8047,6141,70,4,f +8047,6141,19,4,f +8047,6141,72,6,f +8047,6141,2,2,f +8047,63864,288,4,f +8047,64647,1,1,f +8047,73983,15,1,f +8047,85984,72,1,f +8047,85984,15,4,f +8047,85984,0,2,f +8047,87079,0,2,f +8047,87087,4,3,f +8047,87580,15,1,f +8047,87580,0,1,f +8047,87580,72,1,f +8047,87580,14,1,f +8047,88072,0,1,f +8047,92438,71,1,f +8047,92946,15,2,f +8047,92946,4,2,f +8047,98138,47,1,f +8047,99780,0,1,f +8051,2456,14,2,f +8051,3002,14,3,f +8051,3021,14,1,f +8051,3023,14,1,f +8051,3039,14,4,f +8051,3040b,14,4,f +8051,3045,14,2,f +8051,3062b,0,1,f +8051,3660,14,1,f +8051,3665,14,2,f +8051,3684,72,2,f +8051,4070,14,2,f +8051,4286,14,2,f +8051,44567a,14,1,f +8051,6141,14,1,f +8052,2399,0,1,f +8052,2412b,1,2,f +8052,2412b,3,7,f +8052,2431,1,2,f +8052,2780,0,16,f +8052,2825,0,4,f +8052,2850a,47,2,f +8052,2851,14,2,f +8052,2852,7,2,f +8052,2853,7,4,f +8052,2904,0,1,f +8052,2905,1,1,f +8052,30028,0,3,f +8052,3021,0,1,f +8052,3021,1,1,f +8052,3022,1,1,f +8052,3023,1,1,f +8052,3023,0,7,f +8052,3032,0,1,f +8052,3069b,1,2,f +8052,32000,0,2,f +8052,32000,1,1,f +8052,32002,8,2,f +8052,32002,8,1,t +8052,32009,0,2,f +8052,32013,0,5,f +8052,32014,0,2,f +8052,32015,0,2,f +8052,32016,0,2,f +8052,32017,0,4,f +8052,32017,7,2,f +8052,32034,0,4,f +8052,32039,0,1,f +8052,32054,1,2,f +8052,32056,15,2,f +8052,32057,80,1,f +8052,32062,0,11,f +8052,32063,1,6,f +8052,32065,0,2,f +8052,32068,0,3,f +8052,32068,15,1,f +8052,32073,0,4,f +8052,32076,0,1,f +8052,32077,80,1,f +8052,32078,0,1,f +8052,32079,0,1,f +8052,32123b,7,15,f +8052,32123b,7,1,t +8052,3623,1,2,f +8052,3647,7,1,f +8052,3647,7,1,t +8052,3648a,7,1,f +8052,3650c,7,2,f +8052,3666,1,2,f +8052,3705,0,12,f +8052,3706,0,8,f +8052,3709,0,1,f +8052,3710,1,1,f +8052,3710,0,2,f +8052,3711a,0,25,f +8052,3711a,0,1,t +8052,3713,7,1,t +8052,3713,7,8,f +8052,3749,7,9,f +8052,3895,0,2,f +8052,4019,7,2,f +8052,4081b,0,2,f +8052,4185,7,2,f +8052,4274,7,1,t +8052,4274,7,6,f +8052,4275b,0,2,f +8052,4276b,0,2,f +8052,4519,0,10,f +8052,4859,1,1,f +8052,6141,36,1,t +8052,6141,46,1,t +8052,6141,46,2,f +8052,6141,36,2,f +8052,6536,1,3,f +8052,6536,0,21,f +8052,6536,15,1,f +8052,6538b,7,1,f +8052,6542a,8,2,f +8052,6553,0,2,f +8052,6558,0,2,f +8052,6628,0,2,f +8052,6632,0,17,f +8052,6632,15,2,f +8052,6632,7,2,f +8052,75535,0,3,f +8052,75c17,1,1,f +8052,75c30,1,1,f +8052,76138,8,1,f +8052,78c06,0,2,f +8052,78c13,0,2,f +8052,78c15,0,1,f +8055,2456,0,6,f +8055,3001,0,6,f +8055,3003,0,1,f +8055,3006,0,2,f +8055,3039,0,60,f +8055,3045,0,24,f +8055,54200,47,4,f +8058,2412b,7,4,f +8058,2420,0,2,f +8058,2711,0,2,f +8058,2730,0,4,f +8058,2780,0,8,f +8058,2815,0,1,f +8058,2817,0,1,f +8058,2825,14,4,f +8058,2825,7,2,f +8058,2825,0,2,f +8058,2850a,7,2,f +8058,2851,8,2,f +8058,2852,7,2,f +8058,2853,7,4,f +8058,2902,0,2,f +8058,2903,15,2,f +8058,2904,0,1,f +8058,2905,0,4,f +8058,2909c03,0,4,f +8058,3021,14,5,f +8058,3021,0,1,f +8058,3022,0,1,f +8058,3023,0,1,f +8058,3023,7,5,f +8058,3039,0,1,f +8058,3068bp87,15,1,f +8058,3460,14,1,f +8058,3623,14,1,f +8058,3623,0,1,f +8058,3647,7,1,f +8058,3648a,7,2,f +8058,3651,7,2,f +8058,3660,0,1,f +8058,3665,0,2,f +8058,3666,7,1,f +8058,3700,7,1,f +8058,3700,0,2,f +8058,3701,7,3,f +8058,3702,0,5,f +8058,3704,0,6,f +8058,3705,0,7,f +8058,3706,0,10,f +8058,3707,0,4,f +8058,3709,0,2,f +8058,3710,7,2,f +8058,3710,0,3,f +8058,3711a,0,2,t +8058,3711a,0,30,f +8058,3713,7,21,f +8058,3749,7,6,f +8058,3894,0,2,f +8058,4019,7,1,f +8058,4143,7,2,f +8058,4185,7,1,f +8058,4263,14,2,f +8058,4265a,7,1,t +8058,4265a,7,34,f +8058,4273b,7,8,f +8058,4274,7,5,f +8058,4275b,0,4,f +8058,4276b,0,4,f +8058,4519,0,1,f +8058,71509,0,2,f +8059,15528pr0001,14,1,f +8059,3068bpr0013,15,1,f +8059,88646,0,1,f +8059,970c00,71,1,f +8059,973pr2608c01,78,1,f +8061,32034,0,1,f +8061,32062,0,4,f +8061,32073,0,1,f +8061,32172,2,1,f +8061,32173,27,1,f +8061,32174,0,4,f +8061,32269,7,1,f +8061,32270,7,2,f +8061,32474,0,1,f +8061,32475,2,2,f +8061,32476,27,1,f +8061,32482,27,2,f +8061,32489,2,1,f +8061,32553,7,1,f +8061,32554,42,1,f +8061,32559,2,1,f +8061,32565,2,1,f +8061,3706,0,1,f +8061,3713,7,2,f +8061,3749,7,3,f +8061,4519,0,2,f +8061,6538b,0,2,f +8061,gbiocd2001,89,1,f +8062,2456,4,2,f +8062,2456,1,2,f +8062,2456,15,2,f +8062,2456,14,2,f +8062,2456,71,2,f +8062,3001,0,6,f +8062,3001,14,18,f +8062,3001,2,6,f +8062,3001,1,18,f +8062,3001,71,6,f +8062,3001,25,6,f +8062,3001,15,12,f +8062,3001,73,6,f +8062,3001,27,6,f +8062,3001,4,18,f +8062,3002,4,8,f +8062,3002,1,8,f +8062,3002,25,4,f +8062,3002,0,4,f +8062,3002,14,8,f +8062,3002,73,4,f +8062,3002,71,4,f +8062,3002,27,4,f +8062,3002,2,4,f +8062,3002,15,6,f +8062,3003,2,18,f +8062,3003,71,18,f +8062,3003,14,32,f +8062,3003,15,28,f +8062,3003,1,32,f +8062,3003,73,18,f +8062,3003,0,18,f +8062,3003,27,18,f +8062,3003,25,18,f +8062,3003,36,2,f +8062,3003,4,32,f +8062,3004,14,28,f +8062,3004,0,16,f +8062,3004,4,28,f +8062,3004,71,16,f +8062,3004,73,16,f +8062,3004,1,28,f +8062,3004,15,24,f +8062,3004,27,16,f +8062,3004,2,16,f +8062,3004,25,16,f +8062,3005,4,20,f +8062,3005,0,12,f +8062,3005,25,12,f +8062,3005,15,18,f +8062,3005,71,12,f +8062,3005,1,21,f +8062,3005,73,12,f +8062,3005pe1,14,4,f +8062,3005pe1,2,2,f +8062,3007,4,2,f +8062,3007,1,2,f +8062,3007,14,2,f +8062,3008,71,2,f +8062,3008,1,2,f +8062,3008,14,2,f +8062,3008,4,2,f +8062,3009,15,2,f +8062,3009,4,4,f +8062,3009,1,4,f +8062,3009,14,4,f +8062,3010,2,4,f +8062,3010,15,6,f +8062,3010,71,4,f +8062,3010,73,4,f +8062,3010,1,6,f +8062,3010,0,4,f +8062,3010,27,4,f +8062,3010,14,8,f +8062,3010,4,8,f +8062,3010,25,2,f +8062,3010p01,14,1,f +8062,3020,2,2,f +8062,3020,15,4,f +8062,3020,1,2,f +8062,3020,0,2,f +8062,3020,25,2,f +8062,3020,4,2,f +8062,3020,14,2,f +8062,3020,71,2,f +8062,3021,14,2,f +8062,3021,1,4,f +8062,3021,2,2,f +8062,3021,25,2,f +8062,3021,15,4,f +8062,3021,4,2,f +8062,3022,0,2,f +8062,3022,2,2,f +8062,3022,1,6,f +8062,3022,15,6,f +8062,3022,4,4,f +8062,3022,14,4,f +8062,3034,15,2,f +8062,3034,1,2,f +8062,3034,14,2,f +8062,3034,4,2,f +8062,3037,4,6,f +8062,3039,4,6,f +8062,3039,33,2,f +8062,3039,1,4,f +8062,3039,15,4,f +8062,3040b,4,4,f +8062,3040b,14,2,f +8062,3040b,1,4,f +8062,3040b,71,2,f +8062,3040b,2,2,f +8062,3040b,25,4,f +8062,3040b,15,4,f +8062,3041,4,2,f +8062,3043,4,2,f +8062,3065,33,4,f +8062,3065,36,4,f +8062,3298,15,4,f +8062,3298,1,4,f +8062,3298,4,4,f +8062,3622,2,2,f +8062,3660,4,2,f +8062,3660,15,2,f +8062,3660,1,2,f +8062,3665,25,4,f +8062,3665,15,4,f +8062,3665,14,2,f +8062,3665,71,2,f +8062,3665,1,4,f +8062,3665,4,4,f +8062,3665,2,2,f +8062,3710,4,2,f +8062,3710,1,2,f +8062,3710,15,2,f +8062,3747b,1,2,f +8062,3795,14,2,f +8062,3795,4,2,f +8062,3795,1,2,f +8062,3795,15,2,f +8062,4286,15,4,f +8062,4286,4,4,f +8062,4286,1,4,f +8062,4287,4,4,f +8062,4287,1,4,f +8062,4287,15,4,f +8063,2780,0,2,f +8063,2780,0,1,t +8063,32062,0,2,f +8063,32174,19,2,f +8063,32174,484,2,f +8063,32270,7,1,f +8063,32568,484,1,f +8063,32576,484,2,f +8063,32579,7,1,f +8063,3713,7,1,f +8063,3713,7,1,t +8063,3749,19,1,f +8063,41670,19,2,f +8063,43093,1,1,f +8063,44137,19,1,f +8063,44809,484,2,f +8063,44810,19,1,f +8063,44811,179,1,f +8063,44812,179,1,f +8063,4519,7,1,f +8065,2352,14,2,f +8065,2456,14,2,f +8065,3001,15,12,f +8065,3001,1,14,f +8065,3001,14,14,f +8065,3001,0,6,f +8065,3001,4,12,f +8065,3001pr1,14,1,f +8065,3002,4,4,f +8065,3002,0,4,f +8065,3002,14,4,f +8065,3002,1,4,f +8065,3002,15,4,f +8065,3003,14,16,f +8065,3003,0,6,f +8065,3003,15,20,f +8065,3003,1,18,f +8065,3003,4,15,f +8065,3003pe2,14,2,f +8065,3006,4,2,f +8065,3185,15,4,f +8065,3641,0,4,f +8065,4130,4,1,f +8065,4131,15,1,f +8065,4132,4,1,f +8065,4133,15,1,f +8065,4180c02,0,2,f +8065,4201,2,1,f +8065,4202,1,1,f +8065,4727,2,2,f +8065,4728,1,1,f +8065,4728,4,1,f +8065,4743,4,1,f +8065,4744,14,1,f +8065,bfp002,9999,1,f +8066,122c01,0,4,f +8066,3004,0,1,f +8066,3020,1,2,f +8066,3020,15,2,f +8066,3021,4,2,f +8066,3021,0,2,f +8066,3022,0,2,f +8066,3023,1,1,f +8066,3023,0,3,f +8066,3023,15,7,f +8066,3024,46,6,f +8066,3024,1,2,f +8066,3034,0,2,f +8066,3040b,1,2,f +8066,3068b,15,1,f +8066,3135,4,1,f +8066,3136,7,1,f +8066,3460,1,2,f +8066,3624,0,1,f +8066,3626apr0001,14,1,f +8066,3641,0,4,f +8066,3710,4,2,f +8066,3710,1,3,f +8066,3788,4,2,f +8066,3821,1,1,f +8066,3821,15,1,f +8066,3822,1,1,f +8066,3822,15,1,f +8066,3823,47,2,f +8066,3829c01,4,2,f +8066,3842a,1,1,f +8066,4070,1,2,f +8066,4070,15,2,f +8066,4079,0,1,f +8066,4083,1,2,f +8066,4084,0,4,f +8066,970c00,0,1,f +8066,973pb0034c01,4,1,f +8067,2412b,80,4,f +8067,3021,28,1,f +8067,3023,320,2,f +8067,3069b,320,2,f +8067,3623,320,3,f +8067,3665,320,1,f +8067,3666,28,1,f +8067,3710,72,2,f +8067,4070,72,3,f +8067,4589,320,2,f +8067,4589,80,1,f +8067,47905,71,1,f +8067,52107,0,2,f +8067,54200,47,3,f +8067,6091,320,2,f +8067,6141,80,3,f +8067,63864,28,2,f +8067,99780,72,2,f +8068,2412b,1,2,f +8068,2446,15,1,f +8068,298c02,15,1,t +8068,298c02,15,2,f +8068,3001,15,1,f +8068,3040b,15,4,f +8068,3298,15,1,f +8068,3626bp69,14,1,f +8068,3933,0,1,f +8068,3934,0,1,f +8068,4070,8,2,f +8068,6126a,57,2,f +8068,6141,36,1,t +8068,6141,36,1,f +8068,6141,34,1,t +8068,6141,34,1,f +8068,769,334,1,f +8068,970c00,15,1,f +8068,973px176c01,15,1,f +8069,2412b,0,4,f +8069,2412b,25,3,f +8069,2413,7,2,f +8069,2446,8,1,f +8069,2447,0,1,t +8069,2447,0,1,f +8069,2450,7,2,f +8069,2547,15,1,f +8069,2548,15,1,f +8069,2610,14,1,f +8069,3004,25,1,f +8069,3004,8,5,f +8069,3005,0,2,f +8069,30088,8,1,f +8069,3009,0,2,f +8069,30104,8,1,f +8069,30137,6,2,f +8069,30153,42,1,f +8069,30153,34,1,f +8069,30153,36,1,f +8069,3020,8,2,f +8069,3021,25,1,f +8069,3022,7,2,f +8069,30236,8,1,f +8069,3024,0,2,f +8069,3032,8,1,f +8069,3032,0,2,f +8069,30384,40,1,f +8069,3039,8,7,f +8069,3070b,34,1,t +8069,3070b,36,1,f +8069,3070b,34,1,f +8069,3070b,36,1,t +8069,3298,8,1,f +8069,3626bpr0098,14,1,f +8069,3626bpx90,14,1,f +8069,3660,25,4,f +8069,3710,25,2,f +8069,3710,7,5,f +8069,3795,8,1,f +8069,3829c01,15,2,f +8069,3832,0,1,f +8069,3839b,0,1,f +8069,3962b,0,1,f +8069,4081b,7,2,f +8069,4083,0,1,f +8069,4150,25,2,f +8069,4286,0,2,f +8069,4345b,7,1,f +8069,4346,7,1,f +8069,4449,6,1,f +8069,4599a,7,1,f +8069,4617b,0,2,f +8069,4854,0,1,f +8069,4855,0,1,f +8069,4856a,25,2,f +8069,4859,7,2,f +8069,4865a,0,3,f +8069,6093,6,1,f +8069,6111,8,2,f +8069,6141,46,3,f +8069,6232,8,2,f +8069,6564,0,1,f +8069,6565,0,1,f +8069,970c00,0,1,f +8069,970x027,25,1,f +8069,973pb0090c01,25,1,f +8069,973px143c01,0,1,f +8070,2342,0,1,f +8070,2345p44,0,2,f +8070,2357,0,2,f +8070,2419,36,4,f +8070,2419,0,1,f +8070,2432,0,1,f +8070,2446,0,1,f +8070,2447,0,1,f +8070,3001,0,1,f +8070,3004,0,4,f +8070,3004p03,0,1,f +8070,3005,0,2,f +8070,3021,14,1,f +8070,3022,0,6,f +8070,3022,14,2,f +8070,3022,7,2,f +8070,3023,0,6,f +8070,3023,14,2,f +8070,3024,0,6,f +8070,3024,34,2,f +8070,3024,36,1,f +8070,3030,0,2,f +8070,3031,0,1,f +8070,3031,14,1,f +8070,3037,0,2,f +8070,3039,0,2,f +8070,3039p33,0,1,f +8070,3040b,0,2,f +8070,3062b,0,2,f +8070,3068b,0,2,f +8070,3069b,0,2,f +8070,3069bp25,14,1,f +8070,3070b,36,4,f +8070,3622,0,2,f +8070,3626apr0001,14,1,f +8070,3660,0,8,f +8070,3660,14,4,f +8070,3665,14,4,f +8070,3666,0,2,f +8070,3701,0,2,f +8070,3710,0,3,f +8070,3747a,0,2,f +8070,3794a,14,1,f +8070,3832,0,2,f +8070,3838,0,1,f +8070,3933a,0,1,f +8070,3934a,0,1,f +8070,3937,0,1,f +8070,3938,14,1,f +8070,3941,7,1,f +8070,3956,0,1,f +8070,3957a,36,2,f +8070,4006,0,1,f +8070,4070,0,6,f +8070,4081b,0,2,f +8070,4085b,0,2,f +8070,4213,0,1,f +8070,4275b,0,4,f +8070,4276b,0,4,f +8070,4315,0,1,f +8070,4474,46,1,f +8070,4477,14,2,f +8070,4522,0,1,f +8070,4598,7,1,f +8070,4625,0,1,f +8070,4730,0,4,f +8070,4733,0,1,f +8070,4735,0,2,f +8070,4858p01,0,1,f +8070,4861,0,1,f +8070,4865a,46,2,f +8070,4865a,0,2,f +8070,6141,36,2,f +8070,73983,0,4,f +8070,970c00,0,1,f +8070,973p52c01,0,1,f +8073,2994,15,4,f +8073,6578,0,4,f +8074,2362a,47,2,f +8074,2412b,0,6,f +8074,2420,4,2,f +8074,2420,0,4,f +8074,2432,0,2,f +8074,2446pr0005,0,1,f +8074,2447,0,1,t +8074,2447,0,1,f +8074,2458,72,2,f +8074,2744,0,2,f +8074,2780,0,10,f +8074,2780,0,2,t +8074,298c02,4,1,f +8074,298c02,4,1,t +8074,3001,14,2,f +8074,3001,0,1,f +8074,3002,4,2,f +8074,3002,14,2,f +8074,3003,4,2,f +8074,3004,4,9,f +8074,3004,72,3,f +8074,3005,14,4,f +8074,3009,4,1,f +8074,3009,0,4,f +8074,3010,14,2,f +8074,3010,4,1,f +8074,30137,70,4,f +8074,30157,71,1,f +8074,3020,0,3,f +8074,3021,14,3,f +8074,3022,72,6,f +8074,3023,14,4,f +8074,3023,0,5,f +8074,3023,4,3,f +8074,3024,4,1,f +8074,3032,4,2,f +8074,3036,0,5,f +8074,3039,71,2,f +8074,3039,72,1,f +8074,30414,0,2,f +8074,30648,0,4,f +8074,3068b,4,3,f +8074,32001,71,1,f +8074,32039,0,2,f +8074,32054,0,1,f +8074,32062,4,1,f +8074,32123b,71,2,t +8074,32123b,71,6,f +8074,32184,15,1,f +8074,32524,4,2,f +8074,32526,4,2,f +8074,3460,14,4,f +8074,3460,0,2,f +8074,3623,0,6,f +8074,3626bpr0472,78,1,f +8074,3626bpr0527,78,1,f +8074,3626bpr0529,78,1,f +8074,3626bpr0531,78,1,f +8074,3660,14,2,f +8074,3666,71,4,f +8074,3666,4,10,f +8074,3679,71,1,f +8074,3680,0,1,f +8074,3684,4,2,f +8074,3701,72,5,f +8074,3703,0,4,f +8074,3705,0,5,f +8074,3707,0,2,f +8074,3709,4,2,f +8074,3710,71,2,f +8074,3710,4,5,f +8074,3710,14,6,f +8074,3737,0,4,f +8074,3738,0,2,f +8074,3749,19,2,f +8074,3795,0,1,f +8074,3795,14,1,f +8074,3829c01,14,1,f +8074,3829c01,4,1,f +8074,3895,72,2,f +8074,3941,0,8,f +8074,3958,72,1,f +8074,4070,0,2,f +8074,4070,4,4,f +8074,4079b,70,1,f +8074,4079b,0,2,f +8074,4162,4,7,f +8074,41769,4,2,f +8074,41770,4,2,f +8074,4215b,47,2,f +8074,4215b,15,3,f +8074,4274,71,4,f +8074,4274,71,1,t +8074,43337,0,2,f +8074,44126,0,1,f +8074,4460b,4,1,f +8074,44728,4,4,f +8074,4477,4,2,f +8074,4477,0,2,f +8074,4735,0,2,f +8074,48336,0,5,f +8074,50967,4,2,f +8074,52031,4,3,f +8074,55978,0,8,f +8074,55982,0,4,f +8074,56145,0,8,f +8074,57028c01,71,1,f +8074,57796,72,1,f +8074,59426,72,1,f +8074,59443,0,1,f +8074,6019,0,2,f +8074,6087,0,2,f +8074,61072,135,3,f +8074,6141,47,4,f +8074,6141,0,1,t +8074,6141,4,1,t +8074,6141,47,1,t +8074,6141,36,2,f +8074,6141,36,1,t +8074,6141,0,4,f +8074,6141,4,4,f +8074,61678,0,4,f +8074,61678,14,8,f +8074,6179,14,1,f +8074,6232,4,2,f +8074,62359,135,4,f +8074,62360,47,2,f +8074,62361,14,4,f +8074,6553,71,1,f +8074,6632,71,2,f +8074,6636,71,3,f +8074,6636,14,4,f +8074,6636,4,4,f +8074,8160stk01,9999,1,t +8074,970c00,0,2,f +8074,970c00,70,1,f +8074,970c00,272,1,f +8074,973pr1391c01,0,1,f +8074,973pr1413c01,0,1,f +8074,973pr1414c01,272,1,f +8074,973pr1415c01,272,1,f +8075,3004p50,4,1,f +8075,3005,4,4,f +8075,3005,47,2,f +8075,3010,4,5,f +8075,3010pb035e,4,1,f +8075,3020,4,1,f +8075,3023,4,4,f +8075,3024,1,2,f +8075,3029,4,1,f +8075,3031,4,3,f +8075,3037,47,1,f +8075,3040a,4,2,f +8075,3137c01,0,2,f +8075,3137c02,0,2,f +8075,3139,0,4,f +8075,3149c01,4,1,f +8075,3183b,4,1,f +8075,3184,4,1,f +8075,3404ac01,4,1,f +8075,420,14,1,f +8075,421,14,1,f +8075,7b,0,4,f +8076,11153,71,8,f +8076,11211,71,2,f +8076,11476,71,1,f +8076,11477,71,8,f +8076,13548,71,2,f +8076,14719,71,8,f +8076,14769pr086,71,2,f +8076,15303,36,3,f +8076,15400,72,2,f +8076,15573,71,6,f +8076,15573,72,4,f +8076,16497pr0002,28,1,f +8076,18673,148,1,f +8076,18675pr0001,71,1,f +8076,18675pr0002,40,1,f +8076,18679pr0001,0,1,f +8076,18684pr0001,0,1,f +8076,2412b,36,2,f +8076,2412b,72,3,f +8076,2419,0,4,f +8076,2419,71,4,f +8076,2420,71,4,f +8076,2431,72,3,f +8076,2432,72,1,f +8076,2450,71,4,f +8076,2458,71,1,f +8076,2462,71,2,f +8076,2654,0,12,f +8076,2736,71,1,f +8076,2780,0,2,t +8076,2780,0,4,f +8076,3001,1,2,f +8076,3004,4,2,f +8076,3004,72,3,f +8076,30136,72,2,f +8076,3020,0,4,f +8076,3020,1,6,f +8076,3020,15,4,f +8076,3021,72,2,f +8076,3022,0,3,f +8076,3023,1,3,f +8076,3023,15,1,f +8076,3023,36,9,f +8076,3023,72,2,f +8076,3031,71,3,f +8076,30357,72,4,f +8076,3037,0,2,f +8076,30374,36,2,f +8076,30375,72,1,f +8076,30565,71,4,f +8076,3062b,0,4,f +8076,3062b,71,2,f +8076,3068b,71,3,f +8076,3069b,71,4,f +8076,3070b,36,1,t +8076,3070b,36,1,f +8076,32028,72,10,f +8076,32449,4,1,f +8076,32531,71,2,f +8076,3623,71,4,f +8076,3626cpr1149,78,1,f +8076,3626cpr1587,78,1,f +8076,3626cpr1589,15,1,f +8076,3665,72,8,f +8076,3666,0,2,f +8076,3701,71,2,f +8076,3701,0,4,f +8076,3709,71,2,f +8076,3710,72,2,f +8076,3710,0,2,f +8076,3713,4,1,t +8076,3713,4,1,f +8076,3738,72,2,f +8076,3747a,71,2,f +8076,3795,0,2,f +8076,3795,71,4,f +8076,3941,72,1,f +8076,4032a,71,4,f +8076,4274,1,2,t +8076,4274,1,2,f +8076,4287,71,2,f +8076,43712,71,2,f +8076,43713,71,2,f +8076,43719,72,2,f +8076,43722,0,4,f +8076,43722,71,1,f +8076,43723,0,4,f +8076,43723,71,1,f +8076,44375a,71,1,f +8076,44728,72,2,f +8076,48336,0,8,f +8076,4865a,72,1,f +8076,4871,72,2,f +8076,51739,71,8,f +8076,52501,72,1,f +8076,54200,0,2,f +8076,54200,0,1,t +8076,54383,71,4,f +8076,54384,71,4,f +8076,60219,72,1,f +8076,60477,72,2,f +8076,61409,72,4,f +8076,6141,36,2,t +8076,6141,36,4,f +8076,6179,71,6,f +8076,63868,71,16,f +8076,6558,1,2,f +8076,6575,0,1,f +8076,6587,28,2,f +8076,72454,72,2,f +8076,87079,72,1,f +8076,87083,72,1,f +8076,87556pr0005b,0,1,f +8076,87620,71,4,f +8076,88646,71,4,f +8076,92280,0,4,f +8076,92738,0,2,f +8076,92946,72,6,f +8076,92950,72,2,f +8076,93095,0,1,f +8076,970c00,0,1,f +8076,970c00,28,1,f +8076,970c00pr0786,72,1,f +8076,973pr2878c01,0,1,f +8076,973pr2882c01,28,1,f +8076,973pr2884c01,72,1,f +8076,99207,0,1,f +8077,15395,179,2,f +8077,15573,70,9,f +8077,15672,70,2,f +8077,19303pr0002,179,1,f +8077,19305,148,3,f +8077,19305pr0002,179,1,f +8077,2412b,70,6,f +8077,2420,71,2,f +8077,2431,0,2,f +8077,2432,70,1,f +8077,2450,19,8,f +8077,2562,70,2,f +8077,3003,14,1,f +8077,30044,70,1,f +8077,30046,0,2,f +8077,3005,72,3,f +8077,3020,19,2,f +8077,3021,72,2,f +8077,3023,71,6,f +8077,3023,19,9,f +8077,3024,70,3,f +8077,3029,0,3,f +8077,3034,28,2,f +8077,30503,19,2,f +8077,3062b,47,3,f +8077,3062b,57,1,t +8077,3062b,33,6,f +8077,3062b,57,2,f +8077,3062b,33,3,t +8077,3062b,72,3,f +8077,3068b,28,4,f +8077,3069b,28,6,f +8077,3070b,28,2,f +8077,3070b,70,6,f +8077,32028,70,2,f +8077,3626cpr1650,148,3,f +8077,3626cpr1667,57,1,f +8077,3659,19,2,f +8077,3666,28,2,f +8077,3710,70,2,f +8077,3795,19,1,f +8077,3957b,70,2,f +8077,4070,47,1,f +8077,4070,19,2,f +8077,43888,72,4,f +8077,54200,19,1,f +8077,59900,70,3,f +8077,60475b,0,2,f +8077,60897,70,2,f +8077,6126b,182,2,f +8077,6141,70,5,f +8077,6141,57,1,t +8077,6141,57,2,f +8077,6141,19,12,f +8077,6141,33,3,t +8077,6141,33,6,f +8077,6636,0,6,f +8077,73983,71,4,f +8077,92593,72,4,f +8077,970c00pr0845,148,3,f +8077,970c00pr0849,179,1,f +8077,973pr2968c01,148,3,f +8077,973pr3006c01,179,1,f +8077,98283,28,4,f +8077,98313,70,2,f +8077,99780,72,4,f +8080,11153,31,4,f +8080,11477,4,2,f +8080,13971,71,10,f +8080,15397,15,1,f +8080,15573,25,1,f +8080,2412b,4,2,f +8080,2412b,71,4,f +8080,2431,27,2,f +8080,2431,4,2,f +8080,2431,322,2,f +8080,2479,0,1,f +8080,2926,0,2,f +8080,30000,72,5,f +8080,3001,1,2,f +8080,3001,29,2,f +8080,3001,321,2,f +8080,3001,2,2,f +8080,3001,4,2,f +8080,3001,70,2,f +8080,3001,30,2,f +8080,3001,191,3,f +8080,3001,15,2,f +8080,3001,85,2,f +8080,3001,288,2,f +8080,3001,27,2,f +8080,3001,72,2,f +8080,3002,25,2,f +8080,3002,70,2,f +8080,3003,320,3,f +8080,3003,2,2,f +8080,3003,5,2,f +8080,3003,14,2,f +8080,3003,71,3,f +8080,3004,191,2,f +8080,3004,158,4,f +8080,3004,27,2,f +8080,3004,226,4,f +8080,3004,15,4,f +8080,3004,272,2,f +8080,3004,288,2,f +8080,3004,484,8,f +8080,3004,321,16,f +8080,3004,25,7,f +8080,3004,323,4,f +8080,3004,320,4,f +8080,30044,19,1,f +8080,3005,25,3,f +8080,3005,0,3,f +8080,3005,1,2,f +8080,3007,71,2,f +8080,3007,4,1,f +8080,3009,322,2,f +8080,3009,14,2,f +8080,3010,27,2,f +8080,3010,19,4,f +8080,3010,1,6,f +8080,3010,26,2,f +8080,3010,31,2,f +8080,3010,322,8,f +8080,3020,71,2,f +8080,3020,0,2,f +8080,3020,25,1,f +8080,3020,15,2,f +8080,3021,2,1,f +8080,3021,14,2,f +8080,3022,4,2,f +8080,3023,85,4,f +8080,3023,320,3,f +8080,3023,4,2,f +8080,30236,0,1,f +8080,3031,10,2,f +8080,3031,1,2,f +8080,3032,272,2,f +8080,3034,2,1,f +8080,3035,14,1,f +8080,3036,72,1,f +8080,3037,320,1,f +8080,3039,1,2,f +8080,3039,25,2,f +8080,3039,15,5,f +8080,3039,47,4,f +8080,3040b,4,2,f +8080,3040b,27,2,f +8080,3040b,30,4,f +8080,3040b,29,4,f +8080,3040b,1,2,f +8080,3040b,0,8,f +8080,3040b,19,4,f +8080,3040b,25,2,f +8080,3040b,2,4,f +8080,3040b,288,2,f +8080,3040b,484,4,f +8080,30414,14,2,f +8080,3062b,484,2,f +8080,3062b,0,2,f +8080,3065,45,2,f +8080,3065,46,2,f +8080,3065,35,2,f +8080,3069b,14,4,f +8080,3184,0,1,f +8080,3622,25,2,f +8080,3623,19,4,f +8080,3659,308,2,f +8080,3660,2,2,f +8080,3660,1,2,f +8080,3665,0,4,f +8080,3665,72,4,f +8080,3665,1,2,f +8080,3666,322,4,f +8080,3679,71,1,f +8080,3680,4,1,f +8080,3710,71,2,f +8080,3710,484,5,f +8080,3710,14,2,f +8080,3710,272,2,f +8080,3710,320,2,f +8080,3747b,15,2,f +8080,3747b,25,1,f +8080,3795,27,1,f +8080,3795,15,1,f +8080,3941,2,1,f +8080,3941,14,3,f +8080,3941,70,2,f +8080,3941,85,2,f +8080,3941,4,3,f +8080,4032a,14,1,f +8080,4070,2,2,f +8080,4070,72,2,f +8080,4286,2,2,f +8080,4460b,71,2,f +8080,44728,0,1,f +8080,44728,25,1,f +8080,4600,0,2,f +8080,4624,71,4,f +8080,49668,15,2,f +8080,50950,71,4,f +8080,54200,288,4,f +8080,54200,25,2,f +8080,59900,72,3,f +8080,59900,26,2,f +8080,60032,0,10,f +8080,60032,19,1,f +8080,6014b,71,4,f +8080,60478,15,1,f +8080,60481,308,4,f +8080,6091,4,4,f +8080,6091,5,4,f +8080,6091,322,4,f +8080,61252,14,4,f +8080,61254,0,10,f +8080,6141,14,2,f +8080,6141,15,6,f +8080,6141,0,2,f +8080,6141,36,3,f +8080,6141,47,2,f +8080,6215,4,1,f +8080,6215,15,1,f +8080,6232,19,1,f +8080,63868,14,4,f +8080,63868,0,1,f +8080,64799,14,1,f +8080,75937,15,1,f +8080,85984,323,2,f +8080,85984,4,2,f +8080,87079,272,2,f +8080,87087,321,4,f +8080,87087,323,2,f +8080,87414,0,4,f +8080,87580,27,1,f +8080,87580,1,1,f +8080,87697,0,4,f +8080,88292,15,1,f +8080,88930,1,2,f +8080,92438,10,1,f +8080,92947,0,1,f +8080,93273,1,2,f +8080,94161,70,1,f +8080,96874,25,1,t +8080,98100,0,1,f +8080,98138pr0008,15,2,f +8080,98138pr0026,15,2,f +8080,98138pr0027,15,2,f +8080,98263,71,2,f +8080,98560,71,2,f +8081,11203,72,4,f +8081,15332,0,2,f +8081,15462,28,1,f +8081,15535,72,2,f +8081,15712,0,2,f +8081,18677,71,4,f +8081,18789,179,1,f +8081,19729pr0001,308,1,f +8081,19729pr0003,2,2,f +8081,2420,72,3,f +8081,2431,72,2,f +8081,2431,0,2,f +8081,2456,72,3,f +8081,3001,70,2,f +8081,3001,19,6,f +8081,3001,72,8,f +8081,3003,28,3,f +8081,3003,19,3,f +8081,3003,2,3,f +8081,3003,72,16,f +8081,3004,72,4,f +8081,3007,19,3,f +8081,3008,72,4,f +8081,3010,19,1,f +8081,3010,72,8,f +8081,3020,72,1,f +8081,3020,19,1,f +8081,3021,70,1,f +8081,3022,72,2,f +8081,3022,71,1,f +8081,3023,288,5,f +8081,3023,72,6,f +8081,3024,46,1,t +8081,3024,182,3,f +8081,3024,71,4,f +8081,3024,1,1,f +8081,3024,182,1,t +8081,3024,1,1,t +8081,3024,71,1,t +8081,3024,72,2,t +8081,3024,46,3,f +8081,3024,72,5,f +8081,3024pr0005,27,1,t +8081,3024pr0005,27,1,f +8081,3024pr0006,2,1,f +8081,3024pr0006,2,1,t +8081,3030,71,1,f +8081,3030,72,1,f +8081,3031,72,2,f +8081,3032,72,1,f +8081,3032,19,1,f +8081,3035,19,1,f +8081,3068b,19,2,f +8081,3069b,72,2,f +8081,3070b,288,2,t +8081,3070b,2,1,f +8081,3070b,2,1,t +8081,3070b,288,10,f +8081,33183,191,2,f +8081,33183,191,1,t +8081,33291,70,1,t +8081,33291,70,2,f +8081,3622,70,2,f +8081,3666,72,1,f +8081,3673,71,1,t +8081,3673,71,2,f +8081,3700,71,2,f +8081,3710,71,3,f +8081,3713,4,1,f +8081,3713,4,1,t +8081,3795,72,1,f +8081,3958,25,1,f +8081,4032a,25,1,f +8081,4032a,71,1,f +8081,41539,72,2,f +8081,44728,2,8,f +8081,44728,72,1,f +8081,4738a,84,1,f +8081,4739a,84,1,f +8081,4871,15,1,f +8081,60474,0,1,f +8081,60592,0,2,f +8081,6141,36,1,t +8081,6141,297,1,t +8081,6141,36,2,f +8081,6141,85,1,f +8081,6141,297,4,f +8081,6141,85,1,t +8081,62113,0,1,f +8081,64644,308,3,f +8081,64799,0,1,f +8081,6587,28,1,f +8081,6589,19,2,f +8081,85984,0,1,f +8081,87580,28,1,f +8081,87580,19,3,f +8081,87580,71,1,f +8081,87580,72,5,f +8081,92947,71,1,f +8081,970c00,85,3,f +8081,973pr2819c01,321,1,f +8081,973pr2820c01,321,2,f +8081,99207,71,3,f +8083,5306c01,8,1,f +8085,3626bpr0494,15,1,f +8085,59230,15,1,t +8085,59230,15,2,f +8085,59232,135,1,f +8085,60115,15,1,f +8085,6266,15,2,f +8086,12011,25,1,f +8086,12602,366,1,f +8086,3437,33,1,f +8086,4375,135,1,f +8086,51273,135,1,f +8087,10134stk01,9999,1,t +8087,23306,71,1,t +8087,23306,71,1,f +8087,2357,72,2,f +8087,2412b,71,23,f +8087,2412b,484,18,f +8087,2419,72,1,f +8087,2420,15,4,f +8087,2431,72,12,f +8087,2431,71,8,f +8087,2432,72,6,f +8087,2445,71,4,f +8087,2456,72,1,f +8087,2456,71,1,f +8087,2456,15,2,f +8087,2456,0,3,f +8087,2460,71,1,f +8087,2465,0,2,f +8087,2555,71,46,f +8087,2730,0,4,f +8087,2780,0,38,f +8087,2780,0,1,t +8087,2877,72,12,f +8087,298c05,71,8,f +8087,298c05,71,1,t +8087,3001,71,14,f +8087,3001,0,1,f +8087,3002,72,5,f +8087,3002,15,8,f +8087,3003,71,4,f +8087,3004,15,6,f +8087,3004,0,3,f +8087,3005,15,2,f +8087,3005,14,4,f +8087,3006,0,4,f +8087,3007,71,1,f +8087,3007,0,2,f +8087,30083,15,2,f +8087,3009,72,2,f +8087,3010,72,8,f +8087,30136,19,16,f +8087,30155,71,1,f +8087,30165,72,2,f +8087,30183,71,2,f +8087,3020,72,11,f +8087,3020,0,3,f +8087,3020,19,15,f +8087,3020,71,5,f +8087,3021,0,2,f +8087,3021,71,2,f +8087,3021,72,2,f +8087,3022,14,2,f +8087,3022,0,1,f +8087,3022,19,11,f +8087,3022,71,2,f +8087,3022,15,2,f +8087,3023,19,3,f +8087,3023,14,6,f +8087,3023,15,2,f +8087,3023,0,2,f +8087,30236,484,18,f +8087,30237a,71,2,f +8087,3029,0,2,f +8087,3030,71,2,f +8087,30303,71,2,f +8087,3031,0,1,f +8087,3031,71,4,f +8087,3032,15,1,f +8087,3032,72,12,f +8087,3033,19,2,f +8087,3033,72,6,f +8087,3034,19,3,f +8087,3034,0,3,f +8087,3035,71,7,f +8087,3035,72,1,f +8087,3035,0,1,f +8087,30359b,15,16,f +8087,30359b,72,4,f +8087,3036,15,2,f +8087,30361cpr1,15,1,f +8087,30367b,71,2,f +8087,30367bpr0007,15,1,f +8087,3037,71,8,f +8087,30372,40,1,f +8087,30374,15,4,f +8087,30375,15,8,f +8087,30377,71,8,f +8087,30377,71,1,t +8087,30383,71,1,f +8087,3039,0,1,f +8087,3039,15,4,f +8087,3039,72,8,f +8087,3039px16,72,2,f +8087,3040b,14,4,f +8087,3040b,15,2,f +8087,30414,72,12,f +8087,30414,14,2,f +8087,3048c,71,8,f +8087,30586,71,2,f +8087,30602,15,2,f +8087,3062b,15,10,f +8087,3062b,19,7,f +8087,30647,15,4,f +8087,3065,40,1,f +8087,3066,40,2,f +8087,3068b,0,1,f +8087,3068b,15,2,f +8087,3068b,72,6,f +8087,3069b,14,4,f +8087,3069b,15,13,f +8087,3069b,72,4,f +8087,3070b,14,1,t +8087,3070b,14,4,f +8087,32000,4,2,f +8087,32018,71,4,f +8087,32034,15,6,f +8087,32039,15,24,f +8087,32062,0,8,f +8087,32064b,71,16,f +8087,32073,71,10,f +8087,32077,15,2,f +8087,32123b,71,50,f +8087,32123b,71,1,t +8087,32140,0,2,f +8087,32324,71,1,f +8087,32531,71,2,f +8087,32532,71,4,f +8087,3298,71,2,f +8087,3298,0,6,f +8087,3298,15,2,f +8087,3460,71,1,f +8087,3460,72,6,f +8087,3622,72,6,f +8087,3622,14,2,f +8087,3623,15,3,f +8087,3623,72,8,f +8087,3626b,72,1,f +8087,3660,15,4,f +8087,3660,71,40,f +8087,3665,14,4,f +8087,3665,72,10,f +8087,3665,15,2,f +8087,3666,71,7,f +8087,3666,14,2,f +8087,3666,15,5,f +8087,3675,15,2,f +8087,3675,71,2,f +8087,3679,71,1,f +8087,3680,15,1,f +8087,3700,72,2,f +8087,3700,0,2,f +8087,3700,14,4,f +8087,3701,15,1,f +8087,3701,14,4,f +8087,3701,71,1,f +8087,3705,0,3,f +8087,3708,15,24,f +8087,3710,72,2,f +8087,3710,0,2,f +8087,3710,71,3,f +8087,3710,15,7,f +8087,3710,14,5,f +8087,3713,71,8,f +8087,3713,71,1,t +8087,3747b,72,2,f +8087,3747b,71,4,f +8087,3794a,19,8,f +8087,3794a,71,34,f +8087,3794a,15,8,f +8087,3795,19,2,f +8087,3795,71,2,f +8087,3795,15,2,f +8087,3795,72,18,f +8087,3832,72,12,f +8087,3832,0,1,f +8087,3832,71,5,f +8087,3849,72,4,f +8087,3894,14,2,f +8087,3894,71,6,f +8087,3895,0,2,f +8087,3937,15,10,f +8087,3941,71,5,f +8087,3956,71,2,f +8087,4032a,72,2,f +8087,4070,15,16,f +8087,4070,71,16,f +8087,4081b,71,4,f +8087,4150,19,4,f +8087,4150pr0021,71,1,f +8087,4150pr0022,71,2,f +8087,4161,14,2,f +8087,4162,72,10,f +8087,4162,0,12,f +8087,41764,15,1,f +8087,41765,15,1,f +8087,41769,19,1,f +8087,41769,71,4,f +8087,41770,71,4,f +8087,41770,19,1,f +8087,41855,71,2,f +8087,42022,15,4,f +8087,42023,19,2,f +8087,42060,15,1,f +8087,42061,15,1,f +8087,42446,72,16,f +8087,4274,1,26,f +8087,4274,1,1,t +8087,4286,72,2,f +8087,4315,15,2,f +8087,43719,14,1,f +8087,43722,72,1,f +8087,43723,72,1,f +8087,44126,14,1,f +8087,44302a,72,1,f +8087,4445,72,4,f +8087,4477,14,1,f +8087,4477,19,11,f +8087,4510,72,4,f +8087,45677,15,1,f +8087,4588,72,2,f +8087,4589,71,5,f +8087,4589,15,2,f +8087,4599a,15,2,f +8087,4599a,71,11,f +8087,4735,71,7,f +8087,4740,42,2,f +8087,4742,72,2,f +8087,48183,71,2,f +8087,48336,15,19,f +8087,4864b,71,4,f +8087,4865a,0,1,f +8087,6019,71,1,f +8087,6019,19,14,f +8087,6111,71,2,f +8087,6134,19,8,f +8087,6134,0,2,f +8087,6141,71,1,t +8087,6141,71,6,f +8087,6141,15,4,f +8087,6141,15,1,t +8087,6179,15,1,f +8087,6190,72,6,f +8087,6222,71,2,f +8087,6232,14,4,f +8087,6538b,15,24,f +8087,6541,0,2,f +8087,6558,0,2,f +8087,6564,15,2,f +8087,6565,15,2,f +8087,6587,72,14,f +8087,6629,0,2,f +8087,6636,14,2,f +8087,6636,19,2,f +8087,6636,15,2,f +8087,75c06,134,1,t +8087,75c06,134,7,f +8087,75c08,134,8,f +8087,75c08,134,1,t +8087,75c14,72,4,f +8087,76385,15,2,f +8087,78c02,15,3,t +8087,78c02,15,112,f +8090,132a,0,8,f +8090,242c01,4,8,f +8090,3001a,1,1,f +8090,3001a,0,2,f +8090,3003,0,1,f +8090,3004,1,2,f +8090,3004,15,32,f +8090,3004p50,4,1,f +8090,3005,4,2,f +8090,3005,15,24,f +8090,3005,1,2,f +8090,3009,47,1,f +8090,3009,1,1,f +8090,3009,15,4,f +8090,3009p01,1,1,f +8090,3010,1,2,f +8090,3010,47,1,f +8090,3010,15,3,f +8090,3020,1,1,f +8090,3020,0,4,f +8090,3022,1,1,f +8090,3022,0,2,f +8090,3028,1,4,f +8090,3183b,1,1,f +8090,3184,1,1,f +8090,3192,15,2,f +8090,3193,15,2,f +8090,3194pb01,15,2,f +8090,3195pb01,15,2,f +8090,7049b,0,3,f +8090,709,1,1,f +8090,711,1,1,f +8090,799c800,0,1,f +8090,801,1,1,f +8090,802,1,1,f +8090,804,0,1,f +8092,10563,15,1,f +8092,12602,14,3,f +8092,12651,212,1,f +8092,13358,0,2,f +8092,14721,4,1,f +8092,14786,71,1,f +8092,15454pr0002,4,1,f +8092,15613,71,1,f +8092,16265,179,1,f +8092,16685,4,2,f +8092,18018,179,1,f +8092,18806,4,1,f +8092,19663,71,1,f +8092,20706,71,1,f +8092,20820,15,1,f +8092,20922,15,2,f +8092,21107,4,1,f +8092,2300,4,4,f +8092,24911,71,2,f +8092,3011,72,1,f +8092,31023,15,1,f +8092,3437,4,26,f +8092,3437,322,10,f +8092,3437,14,4,f +8092,3437,320,8,f +8092,40666,4,2,f +8092,40666,15,2,f +8092,47517pr0001c01,0,1,f +8092,47517pr0029,0,1,f +8092,51703,182,1,f +8092,51704,4,2,f +8092,61649,4,1,f +8092,6414,4,1,f +8092,74965,10,1,f +8092,76338,212,1,f +8092,76371,322,2,f +8092,90265,15,1,f +8092,92094,4,1,f +8092,98233,10,4,f +8092,98233,15,4,f +8092,99627,4,1,f +8094,2357,0,2,f +8094,2419,1,1,f +8094,2507pb01,57,1,f +8094,3010,0,1,f +8094,3022,0,2,f +8094,3023,0,1,f +8094,3023,1,4,f +8094,3024,1,1,t +8094,3024,1,2,f +8094,3069bps9,1,1,f +8094,3587pb02,0,1,f +8094,3626bpx141,14,1,f +8094,3633,0,2,f +8094,3660,0,2,f +8094,3666,0,1,f +8094,3704,0,2,f +8094,3710,1,3,f +8094,3749,7,2,f +8094,3795,0,1,f +8094,4032a,0,2,f +8094,4081b,0,2,f +8094,4315,0,1,f +8094,4732,1,1,f +8094,4855,1,1,f +8094,57467,383,2,f +8094,59275,0,2,f +8094,6019,0,2,f +8094,6032,0,2,f +8094,6039,0,2,f +8094,6041,57,2,f +8094,6042,0,4,f +8094,6064,2,1,f +8094,6089,0,1,f +8094,6090,4,1,f +8094,6141,57,1,t +8094,6141,57,2,f +8094,970x024,0,1,f +8094,973pb0075c02,0,1,f +8095,2695,7,8,f +8095,2696,0,8,f +8095,3010,4,2,f +8095,3020,4,1,f +8095,3022,0,1,f +8095,3022,7,9,f +8095,3023,0,1,f +8095,3023,7,6,f +8095,3023,4,2,f +8095,3024,7,1,f +8095,3029,7,1,f +8095,3032,0,1,f +8095,3034,4,1,f +8095,3034,7,1,f +8095,3034,0,2,f +8095,3035,0,1,f +8095,3039,4,3,f +8095,3062b,7,1,f +8095,3069b,4,3,f +8095,3460,4,1,f +8095,3460,7,1,f +8095,3623,7,4,f +8095,3623,4,4,f +8095,3648a,7,1,f +8095,3651,7,5,f +8095,3652,7,1,f +8095,3666,7,2,f +8095,3666,0,4,f +8095,3666,4,9,f +8095,3673,7,5,f +8095,3700,7,1,f +8095,3700,4,5,f +8095,3701,4,3,f +8095,3702,4,2,f +8095,3702,7,1,f +8095,3703,4,2,f +8095,3704,0,5,f +8095,3705,0,5,f +8095,3706,0,3,f +8095,3707,0,4,f +8095,3708,0,2,f +8095,3709,7,1,f +8095,3710,4,4,f +8095,3710,7,13,f +8095,3713,7,17,f +8095,3736,7,1,f +8095,3737,0,1,f +8095,3743,7,1,f +8095,3749,7,4,f +8095,3795,0,2,f +8095,3894,4,3,f +8095,3894,7,1,f +8095,3895,4,3,f +8095,3935,7,1,f +8095,3936,7,1,f +8095,3941,7,4,f +8095,3942c,7,1,f +8095,4019,7,3,f +8095,4032a,0,1,f +8095,4070,7,2,f +8095,4070,4,2,f +8095,4143,7,2,f +8095,4185,7,6,f +8095,4215a,15,1,f +8095,4261,7,2,f +8095,4262,7,2,f +8095,4262,4,4,f +8095,4265a,7,8,f +8095,4273b,7,22,f +8095,4274,7,24,f +8095,4459,0,14,f +8095,4477,7,4,f +8095,4519,0,2,f +8096,2412b,25,1,f +8096,2420,1,2,f +8096,2431,14,2,f +8096,2436,15,2,f +8096,2436,0,1,f +8096,2436,1,2,f +8096,2436,71,2,f +8096,2540,15,1,f +8096,2555,14,2,f +8096,2780,0,1,t +8096,2780,0,2,f +8096,3001,72,1,f +8096,3009,72,1,f +8096,3010,1,2,f +8096,3010,0,2,f +8096,3020,1,3,f +8096,3020,25,2,f +8096,3022,72,2,f +8096,3023,36,1,f +8096,3023,14,2,f +8096,3023,0,2,f +8096,3023,33,1,f +8096,3024,36,2,f +8096,3024,14,2,f +8096,3031,15,2,f +8096,3032,72,1,f +8096,3034,71,1,f +8096,30553,0,1,f +8096,3068b,0,1,f +8096,3068b,71,1,f +8096,3069b,15,2,f +8096,3069b,1,2,f +8096,3069b,72,1,f +8096,3070b,1,1,t +8096,3070b,1,2,f +8096,3070b,36,1,t +8096,3070b,36,2,f +8096,32014,71,1,f +8096,32028,15,1,f +8096,32064b,71,3,f +8096,32073,71,2,f +8096,3460,71,1,f +8096,3666,71,1,f +8096,3710,1,2,f +8096,3710,25,1,f +8096,3788,15,1,f +8096,3788,1,2,f +8096,3794b,71,2,f +8096,3795,0,3,f +8096,4035,71,1,f +8096,41532,0,1,f +8096,4274,71,1,t +8096,4274,71,4,f +8096,43093,1,3,f +8096,44674,15,1,f +8096,45677,0,1,f +8096,47456,0,2,f +8096,47458,0,2,f +8096,48336,14,2,f +8096,4865a,1,1,f +8096,50943,71,1,f +8096,50944pr0001,0,8,f +8096,50949,1,1,f +8096,50951,0,8,f +8096,54200,40,1,t +8096,54200,36,1,f +8096,54200,33,1,f +8096,54200,40,2,f +8096,54200,33,1,t +8096,54200,36,1,t +8096,59426,72,1,f +8096,59443,72,2,f +8096,60478,72,2,f +8096,6141,71,1,t +8096,6141,71,2,f +8096,6141,182,2,f +8096,6141,182,1,t +8096,6157,0,4,f +8096,61678,14,2,f +8096,62462,4,1,f +8096,62462,15,2,f +8096,64700,14,1,f +8096,6881b,71,1,f +8096,85984,0,1,f +8096,86501,72,1,f +8096,87079,15,3,f +8096,88930,0,1,f +8098,10830pat0001,0,1,f +8098,3626bpr0314,14,1,f +8098,3626bpr0386,14,1,f +8098,3626bpr0388,14,1,f +8098,3833,14,1,f +8098,3962b,0,1,f +8098,4449,71,1,f +8098,62810,484,1,f +8098,92081,308,1,f +8098,970c00,0,1,f +8098,970c00,1,1,f +8098,970c00,19,1,f +8098,973pr1163c01,272,1,f +8098,973pr1182c01,25,1,f +8098,973pr1184c01,0,1,f +8099,2357,4,2,f +8099,2358p02,2,1,f +8099,2412b,14,2,f +8099,2420,15,2,f +8099,2422,0,4,f +8099,2431,7,4,f +8099,2431,0,2,f +8099,2431,4,1,f +8099,2432,14,7,f +8099,2432,0,2,f +8099,2432,4,2,f +8099,2436,15,2,f +8099,2445,7,1,f +8099,2446,15,1,f +8099,2450,4,4,f +8099,2452,14,2,f +8099,2452,0,2,f +8099,2454a,4,24,f +8099,2456,7,3,f +8099,2458,7,2,f +8099,2465,7,4,f +8099,2540,7,1,f +8099,2555,15,3,f +8099,2582,15,6,f +8099,2637,4,6,f +8099,2653,4,6,f +8099,2655,14,1,f +8099,2714a,14,1,f +8099,2780,0,11,f +8099,2780,0,1,t +8099,2823,4,2,f +8099,2880,0,2,f +8099,2921,4,2,f +8099,3001,4,1,f +8099,3002,7,2,f +8099,3003,7,2,f +8099,3003,4,2,f +8099,3003,0,1,f +8099,3004,14,4,f +8099,3004,7,7,f +8099,3005,7,2,f +8099,3005,4,4,f +8099,3009,4,2,f +8099,3009,7,2,f +8099,3009,15,3,f +8099,3010,4,1,f +8099,3010,7,2,f +8099,3010,15,1,f +8099,3020,7,1,f +8099,3020,15,2,f +8099,3021,0,2,f +8099,3022,0,7,f +8099,3022,15,2,f +8099,3022,7,4,f +8099,3023,0,5,f +8099,3023,4,2,f +8099,3023,7,2,f +8099,3023,15,1,f +8099,3024,0,2,f +8099,3024,46,3,f +8099,3024,7,2,f +8099,3024,34,1,f +8099,3024,36,1,f +8099,3032,4,1,f +8099,3034,4,2,f +8099,3035,7,2,f +8099,3037,7,3,f +8099,3039,0,2,f +8099,3039pc5,7,1,f +8099,3039pr0005,15,1,f +8099,3040b,15,2,f +8099,3040b,7,4,f +8099,3062b,14,10,f +8099,3063b,4,2,f +8099,3068b,15,1,f +8099,3068b,14,1,f +8099,3068b,0,2,f +8099,3069b,14,2,f +8099,3069bp02,7,1,f +8099,3069bp12,14,2,f +8099,3069bp80,15,1,f +8099,3070b,15,2,f +8099,3139,0,8,f +8099,3176,15,1,f +8099,3176,7,7,f +8099,3185,4,4,f +8099,3297,7,4,f +8099,3298,0,2,f +8099,3460,4,2,f +8099,3460,7,1,f +8099,3464,4,1,f +8099,3613,15,1,f +8099,3614b,7,1,f +8099,3623,7,2,f +8099,3626bp06,14,3,f +8099,3626bpx66,14,1,f +8099,3660,7,1,f +8099,3666,15,2,f +8099,3666,7,1,f +8099,3679,7,1,f +8099,3680,14,1,f +8099,3700,0,3,f +8099,3702,4,2,f +8099,3705,0,2,f +8099,3706,0,2,f +8099,3708,0,2,f +8099,3710,0,1,f +8099,3710,15,5,f +8099,3710,7,1,f +8099,3747a,4,2,f +8099,3747a,0,4,f +8099,3749,7,4,f +8099,3794a,14,1,f +8099,3795,2,2,f +8099,3795,0,1,f +8099,3795,4,1,f +8099,3795,7,3,f +8099,3838,15,1,f +8099,3857,2,1,f +8099,3870,7,3,f +8099,3894,4,2,f +8099,3895,4,1,f +8099,3901,0,1,f +8099,3937,7,4,f +8099,3938,14,4,f +8099,3941,15,18,f +8099,3942b,15,2,f +8099,3943b,7,1,f +8099,3956,15,1,f +8099,3956,0,1,f +8099,3962b,0,2,f +8099,4032a,1,2,f +8099,4032a,4,2,f +8099,4032a,15,2,f +8099,4032a,14,2,f +8099,4079,14,1,f +8099,4083,7,2,f +8099,4085c,7,8,f +8099,4150,14,2,f +8099,4162,15,2,f +8099,4274,7,5,f +8099,4274,7,1,t +8099,4276b,14,4,f +8099,4282,7,5,f +8099,4286,0,2,f +8099,4286,7,8,f +8099,4319,14,2,f +8099,4447,7,2,f +8099,4448,41,2,f +8099,4460a,7,2,f +8099,4476b,4,6,f +8099,4477,15,4,f +8099,4485,4,2,f +8099,4510,7,4,f +8099,4531,15,2,f +8099,4596,7,1,f +8099,4596,15,1,f +8099,4599a,14,1,f +8099,4624,7,8,f +8099,4625,15,6,f +8099,4740,33,1,f +8099,4856a,0,1,f +8099,4858,15,1,f +8099,4859,0,2,f +8099,4861,15,1,f +8099,4865a,7,1,f +8099,4865a,15,4,f +8099,55295,8,1,f +8099,55296,8,1,f +8099,55297,8,1,f +8099,55298,8,1,f +8099,55299,8,1,f +8099,55300,8,1,f +8099,56823,0,1,f +8099,6048a,0,3,f +8099,6081,7,1,f +8099,6091,7,2,f +8099,6111,0,4,f +8099,6112,4,3,f +8099,6141,36,11,f +8099,6141,36,1,t +8099,6141,15,8,f +8099,6141,15,1,t +8099,6141,14,6,f +8099,6141,14,1,t +8099,6157,0,4,f +8099,6192,15,2,f +8099,6217,0,2,f +8099,6219,15,1,f +8099,6219,0,1,f +8099,6222,7,4,f +8099,6230,0,6,f +8099,6231,15,2,f +8099,6232,7,3,f +8099,6232,15,4,f +8099,6233,15,2,f +8099,6233,0,3,f +8099,6238,33,1,f +8099,6239,15,1,f +8099,6259,7,6,f +8099,6339stk01,9999,1,t +8099,6339stk02,9999,1,t +8099,6538a,7,3,f +8099,6541,15,2,f +8099,6564,15,2,f +8099,6565,15,2,f +8099,73037,7,1,f +8099,75535,15,3,f +8099,75535,0,2,f +8099,769,334,1,f +8099,970c00,15,1,f +8099,970c00,0,1,f +8099,970c00,1,2,f +8099,973px111c01,15,1,f +8099,973px112c01,1,2,f +8099,973px113c01,15,1,f +8100,2420,7,2,f +8100,2847c01,7,1,f +8100,2983,7,1,f +8100,2994,15,4,f +8100,3023,7,2,f +8100,32002,8,4,f +8100,32002,8,1,t +8100,32017,7,2,f +8100,32028,7,4,f +8100,32123b,7,2,f +8100,32123b,7,1,t +8100,3647,7,2,f +8100,3647,7,1,t +8100,3648a,7,1,f +8100,3650c,7,1,f +8100,3700,7,2,f +8100,3701,7,2,f +8100,3705,0,1,f +8100,3706,0,1,f +8100,3707,0,1,f +8100,3709,7,1,f +8100,3710,7,2,f +8100,3713,7,2,f +8100,3713,7,1,t +8100,3737,0,1,f +8100,3794a,7,2,f +8100,3894,7,2,f +8100,4019,7,2,f +8100,4185,7,1,f +8100,4519,0,1,f +8100,5306bc162,0,1,f +8100,6538b,7,1,f +8100,6578,0,4,f +8100,6589,7,2,f +8100,71427c01,7,1,f +8100,76019,15,1,f +8100,85544,4,1,f +8100,85545,1,1,f +8100,85546,14,1,f +8103,10197,72,2,f +8103,10201,0,1,f +8103,10201,4,1,f +8103,10247,0,6,f +8103,10288,308,1,f +8103,11476,71,2,f +8103,11477,4,5,f +8103,11477,0,7,f +8103,11477,15,1,f +8103,11610,0,1,f +8103,13548,1,2,f +8103,14417,72,2,f +8103,14419,72,4,f +8103,14704,71,4,f +8103,15068,72,2,f +8103,15068,0,8,f +8103,15068,4,6,f +8103,15082,0,2,f +8103,15092,72,1,f +8103,15208,15,1,f +8103,15209,0,2,f +8103,15456,0,2,f +8103,15461,0,2,f +8103,15462,28,1,f +8103,15535,72,1,f +8103,15571,4,8,f +8103,15571,0,8,f +8103,15573,0,8,f +8103,15712,72,2,f +8103,16770,182,2,f +8103,18041,297,1,t +8103,18041,297,2,f +8103,18649,0,12,f +8103,18651,0,3,f +8103,18671,72,4,f +8103,18980,0,2,f +8103,20612,40,1,f +8103,22385,0,1,f +8103,22385pr0001,33,1,f +8103,22385pr0002,57,1,f +8103,22385pr0003,46,1,f +8103,22387,0,1,f +8103,22388,297,8,f +8103,22388,182,8,f +8103,22388,179,1,f +8103,22388,179,1,t +8103,22388,182,1,t +8103,22388,297,1,t +8103,22391,272,2,f +8103,22401,179,1,f +8103,22408,179,1,f +8103,22425,0,1,f +8103,22961,71,2,f +8103,2357,0,1,f +8103,2357,4,1,f +8103,24093pr0001,70,1,f +8103,24097,179,1,f +8103,2412b,72,2,f +8103,2419,72,2,f +8103,2420,70,6,f +8103,24301pr0002,0,1,f +8103,24324,70,1,f +8103,24426,9999,1,f +8103,2446,15,1,f +8103,2460,0,2,f +8103,2462,72,2,f +8103,2496,0,1,f +8103,2540,1,1,f +8103,2540,72,3,f +8103,2569,57,1,t +8103,2569,57,1,f +8103,2654,182,2,f +8103,2654,71,2,f +8103,2655,71,1,f +8103,2780,0,2,t +8103,2780,0,6,f +8103,2921,0,2,f +8103,3003,0,1,f +8103,30136,72,3,f +8103,30137,70,2,f +8103,3020,72,1,f +8103,3020,70,6,f +8103,3021,0,1,f +8103,3022,15,3,f +8103,3022,72,18,f +8103,3023,70,23,f +8103,3023,182,4,f +8103,3024,72,2,f +8103,3024,72,1,t +8103,3028,72,1,f +8103,30293,182,2,f +8103,3030,0,1,f +8103,3033,72,1,f +8103,30374,70,2,f +8103,30375,1,1,f +8103,3040b,4,3,f +8103,3040b,0,3,f +8103,3045,0,1,f +8103,3045,4,1,f +8103,3062b,0,3,f +8103,3062b,4,1,f +8103,3068b,0,1,f +8103,3069b,4,6,f +8103,3069b,0,6,f +8103,3069bpr0159,19,1,f +8103,32000,0,2,f +8103,32000,4,2,f +8103,32013,72,8,f +8103,32014,0,2,f +8103,32016,70,3,f +8103,32018,0,2,f +8103,32039,4,1,f +8103,32054,4,6,f +8103,32054,0,6,f +8103,32062,4,7,f +8103,32064a,71,3,f +8103,32140,72,2,f +8103,32187,179,1,f +8103,32192,4,1,f +8103,32192,0,1,f +8103,3245c,4,1,f +8103,3245c,0,1,f +8103,32474,4,1,f +8103,32474,0,1,f +8103,32525,4,1,f +8103,32525,0,1,f +8103,32530,0,2,f +8103,32556,19,3,f +8103,3626cpr0895,15,1,f +8103,3626cpr1783,14,1,f +8103,3626cpr1795,15,1,f +8103,3626cpr1819,0,1,f +8103,3659,72,2,f +8103,3660,0,6,f +8103,3665,72,2,f +8103,3666,72,2,f +8103,3673,71,1,t +8103,3673,71,2,f +8103,3700,70,2,f +8103,3700,72,4,f +8103,3707,0,2,f +8103,3708,0,2,f +8103,3710,70,2,f +8103,3747b,0,2,f +8103,3832,0,1,f +8103,3937,4,1,f +8103,3941,182,3,f +8103,3956,0,2,f +8103,4032a,4,2,f +8103,4032a,70,2,f +8103,4079b,0,1,f +8103,4081b,15,2,f +8103,41239,72,2,f +8103,4151b,72,1,f +8103,41530,182,2,f +8103,4162,0,1,f +8103,4162,4,1,f +8103,41669,4,1,f +8103,41669,0,1,f +8103,41677,4,3,f +8103,41677,0,1,f +8103,42610,71,1,f +8103,4274,71,2,t +8103,4274,71,7,f +8103,4286,72,2,f +8103,4287,0,2,f +8103,43093,1,1,f +8103,43710,0,1,f +8103,43711,4,1,f +8103,43722,4,1,f +8103,43723,0,1,f +8103,44728,15,1,f +8103,44728,4,12,f +8103,44728,0,8,f +8103,4495b,0,1,f +8103,4495b,4,1,f +8103,4519,71,1,f +8103,4697b,71,1,f +8103,4697b,71,1,t +8103,4738a,70,1,f +8103,4739a,70,1,f +8103,4740,57,1,f +8103,47456,308,2,f +8103,47457,72,2,f +8103,48336,0,3,f +8103,4865b,4,1,f +8103,4871,0,1,f +8103,48729b,72,1,t +8103,48729b,72,2,f +8103,48729b,57,4,f +8103,48729b,57,1,t +8103,49668,15,2,f +8103,50860,272,1,f +8103,50923,72,2,f +8103,50950,272,1,f +8103,51739,0,2,f +8103,53451,25,1,t +8103,53451,15,1,t +8103,53451,25,8,f +8103,53451,0,1,f +8103,53451,0,1,t +8103,53451,4,1,t +8103,53451,15,2,f +8103,53451,4,1,f +8103,54200,15,1,t +8103,54200,4,1,t +8103,54200,72,2,f +8103,54200,0,1,t +8103,54200,4,2,f +8103,54200,0,2,f +8103,54200,15,2,f +8103,54200,72,1,t +8103,55013,72,2,f +8103,59443,4,2,f +8103,59900,179,1,t +8103,59900,179,1,f +8103,59900,182,2,f +8103,59900,297,4,f +8103,60169,182,2,f +8103,6020,70,1,f +8103,60471,4,1,f +8103,60483,71,1,f +8103,60483,72,3,f +8103,60752,179,1,f +8103,60849,71,1,t +8103,60849,71,2,f +8103,6091,70,2,f +8103,6091,0,2,f +8103,6111,0,2,f +8103,61252,4,24,f +8103,61252,1,1,f +8103,6134,0,1,f +8103,61409,72,2,f +8103,6141,297,2,f +8103,6141,72,1,t +8103,6141,72,2,f +8103,6141,57,1,t +8103,6141,297,1,t +8103,6141,57,3,f +8103,62537pr0003b,4,1,f +8103,63868,1,1,f +8103,63868,4,4,f +8103,63868,15,1,f +8103,63965,0,1,f +8103,64448,72,2,f +8103,64567,0,1,f +8103,64567,0,1,t +8103,64647,182,2,f +8103,64647,182,2,t +8103,6536,0,2,f +8103,6541,72,8,f +8103,6558,1,3,f +8103,6587,28,6,f +8103,6629,4,1,f +8103,6629,0,1,f +8103,6636,4,1,f +8103,6636,0,1,f +8103,85861,0,7,f +8103,85861,15,1,t +8103,85861,0,2,t +8103,85861,15,1,f +8103,85943,72,1,f +8103,85984,70,2,f +8103,86038,320,1,f +8103,87079,4,2,f +8103,87083,72,1,f +8103,87544,0,2,f +8103,87620,72,2,f +8103,87747,15,2,t +8103,87747,15,4,f +8103,87846,4,1,f +8103,87846,0,1,f +8103,88517,182,2,f +8103,88930,0,1,f +8103,92280,4,1,f +8103,92280,0,1,f +8103,92582,71,1,f +8103,92593,0,1,f +8103,92593,4,1,f +8103,92690,70,1,f +8103,93273,0,1,f +8103,970c00pr0939,71,1,f +8103,970d30pr0944,4,1,f +8103,973pb2298c01,4,1,f +8103,973pr3152c01,71,1,f +8103,98138,36,1,f +8103,98138,36,1,t +8103,98313,179,2,f +8103,98313,0,4,f +8103,99008,19,3,f +8103,99021,72,1,f +8103,99206,71,2,f +8103,99207,0,9,f +8103,99781,71,2,f +8103,99781,0,4,f +8105,3020,7,1,f +8105,3022,8,1,f +8105,3040b,7,2,f +8105,3040b,8,4,f +8105,3298,379,1,f +8105,3660,7,2,f +8105,3665,7,2,f +8105,3700,379,1,f +8105,3700,8,3,f +8105,40378,379,1,f +8105,40379,379,1,f +8105,40396,379,1,f +8105,6127,379,1,f +8105,6128,379,1,f +8105,x158,379,1,f +8106,3001,4,1,f +8106,3004,4,1,f +8106,3004,15,1,f +8106,3022,15,1,f +8106,3034,15,2,f +8106,3039,15,2,f +8106,3039,47,1,f +8106,3139,0,2,f +8106,3298,15,1,f +8106,3460,15,1,f +8106,3461,14,1,f +8106,3464,4,2,f +8106,3481,4,1,f +8106,3666,15,1,f +8106,3710,15,1,f +8106,3747b,4,1,f +8106,3795,4,2,f +8106,8,7,2,f +8107,22670,334,1,f +8107,2417,10,1,f +8107,2432,2,1,f +8107,30033,26,1,f +8107,30078,26,1,f +8107,30176,2,2,f +8107,3031,26,1,f +8107,3035,120,1,f +8107,3066,45,1,f +8107,33006,4,1,f +8107,3659,5,2,f +8107,3899,4,1,f +8107,3957a,26,1,f +8107,4088,10,1,f +8107,43579,114,4,f +8107,4728,45,3,f +8107,4728,35,2,f +8107,4865a,35,6,f +8107,6019,115,4,f +8107,6141,36,1,f +8107,6141,5,1,t +8107,6141,36,1,t +8107,6141,5,4,f +8107,6176,5,1,f +8107,6177,10,1,f +8107,6182,5,2,f +8107,rb00191,117,1,f +8108,11203,0,1,f +8108,11211,19,2,f +8108,11833,47,1,f +8108,14719,71,2,f +8108,15332,19,3,f +8108,15573,72,1,f +8108,15712,72,1,f +8108,18674,72,2,f +8108,2412b,19,4,f +8108,2420,19,6,f +8108,2431,71,8,f +8108,2431,0,2,f +8108,2460,71,1,f +8108,2780,0,4,f +8108,2780,0,1,t +8108,3010,19,6,f +8108,3020,0,2,f +8108,3020,71,5,f +8108,3022,72,4,f +8108,3022,19,4,f +8108,3022,0,1,f +8108,3022,71,3,f +8108,3023,378,1,f +8108,3023,0,13,f +8108,3024,71,2,f +8108,3034,0,4,f +8108,3062b,47,2,f +8108,3069b,378,5,f +8108,3069b,72,2,f +8108,3069b,19,2,f +8108,3069b,0,2,f +8108,3069b,71,7,f +8108,3070b,72,1,t +8108,3070b,72,2,f +8108,32123b,71,1,t +8108,32123b,71,1,f +8108,3700,0,1,f +8108,3710,0,8,f +8108,3794b,71,6,f +8108,3832,19,2,f +8108,3832,0,2,f +8108,3942c,15,1,f +8108,3957a,15,1,f +8108,4032a,19,2,f +8108,4070,19,4,f +8108,4162,0,2,f +8108,4162pr0044,0,1,f +8108,4216,19,12,f +8108,4274,71,2,f +8108,4274,71,1,t +8108,43898,80,2,f +8108,43898,72,2,f +8108,4477,0,5,f +8108,4733,72,1,f +8108,4740,15,2,f +8108,4740,71,2,f +8108,4740,47,2,f +8108,4865bpr0001,71,1,f +8108,4865bpr0002,71,1,f +8108,4865bpr0003,71,1,f +8108,54200,72,1,t +8108,54200,4,1,f +8108,54200,378,1,t +8108,54200,72,4,f +8108,54200,4,1,t +8108,54200,378,8,f +8108,60897,72,2,f +8108,6141,15,6,f +8108,6141,4,4,f +8108,6141,15,1,t +8108,6141,47,3,f +8108,6141,4,1,t +8108,6141,19,45,f +8108,6141,19,1,t +8108,62462,15,5,f +8108,63864,0,1,f +8108,63965,71,1,f +8108,63965,15,1,f +8108,64799,71,1,f +8108,85984,0,7,f +8108,86500,40,1,f +8108,87087,0,10,f +8108,87580,72,2,f +8108,87609,0,5,f +8108,90398,297,1,t +8108,90398,297,1,f +8108,92947,19,1,f +8108,93273,0,10,f +8108,93273,19,1,f +8109,2419,4,2,f +8109,3022,4,2,f +8109,3023,4,1,f +8109,3298,4,1,f +8109,3794a,4,1,f +8109,3795,4,1,f +8109,40379,15,1,f +8109,4070,4,2,f +8109,4085c,0,4,f +8109,4589,4,1,f +8109,x158,4,1,f +8110,3020,47,24,f +8110,728,7,1,f +8110,729,47,1,f +8111,2335,14,1,f +8111,2343,47,2,f +8111,2412b,72,2,f +8111,2431,308,2,f +8111,2432,0,3,f +8111,2460,72,1,f +8111,3001,70,1,f +8111,3004,73,2,f +8111,3004,15,10,f +8111,3009,4,1,f +8111,3010,70,3,f +8111,30136,308,8,f +8111,30137,70,1,f +8111,3020,70,1,f +8111,3031,70,3,f +8111,3032,19,2,f +8111,30357,19,2,f +8111,3040b,73,8,f +8111,30414,15,3,f +8111,3043,4,1,f +8111,3062b,4,2,f +8111,3062b,70,6,f +8111,3068b,73,1,f +8111,3068b,19,3,f +8111,3069b,73,10,f +8111,32002,72,1,t +8111,32002,72,1,f +8111,32014,4,3,f +8111,32123b,14,1,t +8111,32123b,14,1,f +8111,3245c,70,2,f +8111,3659,70,2,f +8111,3678b,70,7,f +8111,3700,4,5,f +8111,3710,4,4,f +8111,3710,73,2,f +8111,3749,19,3,f +8111,3832,19,2,f +8111,3957b,70,1,f +8111,41879a,70,1,f +8111,4460b,15,2,f +8111,4519,71,3,f +8111,4589,4,1,f +8111,50950,73,2,f +8111,50950,4,4,f +8111,54872pr0008,14,1,f +8111,54873pr0005,78,1,f +8111,57585,71,1,f +8111,59426,72,1,f +8111,59443,70,3,f +8111,60477,15,6,f +8111,61285pr0001,226,1,f +8111,61286pr0003,14,1,f +8111,61287,47,2,f +8111,6141,70,1,f +8111,6141,70,1,t +8111,6141,15,2,f +8111,6141,47,1,t +8111,6141,47,6,f +8111,62462,15,1,f +8111,6254,70,1,f +8111,6632,4,1,f +8111,87079,4,1,f +8111,87087,4,4,f +8111,92947,15,1,f +8111,92950,15,2,f +8111,970c00,1,1,f +8111,970c00pr0108,78,1,f +8111,970x194,15,1,f +8111,973c11,14,1,f +8111,973pr1855c01,78,1,f +8111,973pr1857c01,1,1,f +8113,bdoor01,2,1,f +8113,bdoor01,15,3,f +8113,bdoor01,4,1,f +8113,bdoor01,14,1,f +8113,bdoor01,1,1,f +8114,11289,41,1,f +8114,15339,148,1,f +8114,15341,14,2,f +8114,15343,14,2,f +8114,15346,14,1,f +8114,15353,25,1,f +8114,15354,4,1,f +8114,15354,27,1,f +8114,15354,25,1,f +8114,15355,0,3,f +8114,30194,72,1,f +8114,3069bpr0136,41,1,f +8114,32002,19,3,f +8114,32062,4,2,f +8114,3626c,4,1,f +8114,48729b,0,3,f +8114,54821,35,1,f +8114,60115,0,1,f +8114,61252,72,1,f +8114,90607,0,1,f +8114,90609,0,3,f +8114,90611,14,2,f +8114,90612,0,1,f +8114,90617,72,1,f +8114,90622,0,2,f +8114,90630,0,1,f +8114,90639,14,3,f +8114,90639pr0028,179,1,f +8114,90640,148,1,f +8114,93571,0,1,f +8114,98138pr0019,15,1,f +8114,98563,148,1,f +8114,98564,35,1,f +8114,98565,72,1,f +8114,98577,72,1,f +8115,11618,26,1,t +8115,11618,26,1,f +8115,14734pr0002a,19,1,f +8115,15672,70,2,f +8115,2423,2,3,f +8115,2780,0,1,t +8115,2780,0,1,f +8115,2817,0,1,f +8115,3004,28,1,f +8115,30176,2,1,f +8115,3023,28,4,f +8115,3032,19,1,f +8115,30357,19,2,f +8115,30374,19,1,f +8115,3040b,28,2,f +8115,3062b,70,1,f +8115,32016,70,1,f +8115,32062,4,1,f +8115,33057,484,1,f +8115,33291,10,2,f +8115,33291,191,3,f +8115,33291,10,1,t +8115,33291,191,1,t +8115,3941,70,1,f +8115,4727,10,1,f +8115,6141,70,1,t +8115,6141,25,1,t +8115,6141,25,3,f +8115,6141,70,1,f +8115,6231,70,2,f +8115,87580,212,2,f +8115,87580,27,2,f +8115,93160,15,1,t +8115,93160,15,1,f +8116,3022,7,40,f +8116,728,7,1,f +8116,729,47,1,f +8120,104,383,2,f +8120,14226c11,0,1,f +8120,2343,47,2,f +8120,2412b,383,4,f +8120,2419,5,1,f +8120,2432,15,2,f +8120,2449,15,6,f +8120,2465,5,3,f +8120,2540,1,1,f +8120,2555,15,8,f +8120,2877,15,2,f +8120,298c02,15,1,f +8120,3002,14,1,f +8120,3003,15,1,f +8120,3004,15,4,f +8120,3005,34,1,f +8120,3005,36,1,f +8120,30089,0,1,f +8120,3010,14,2,f +8120,3010,15,1,f +8120,30144,15,3,f +8120,30162,0,1,f +8120,30215,15,1,f +8120,30216,5,1,f +8120,30217,14,1,f +8120,30218,15,1,f +8120,30220,462,1,f +8120,30222,4,1,f +8120,3023,15,1,f +8120,3031,14,2,f +8120,3039pr0005,15,1,f +8120,3040b,5,2,f +8120,3040b,15,8,f +8120,3040p32,15,1,f +8120,3062b,36,1,f +8120,3062b,33,2,f +8120,33120,15,1,f +8120,33120,462,1,f +8120,33121,4,1,f +8120,33122,462,1,f +8120,33123,462,2,f +8120,33129,14,1,f +8120,3622,15,3,f +8120,3679,7,2,f +8120,3680,15,2,f +8120,3700,14,1,f +8120,3741,2,1,f +8120,3742,5,1,t +8120,3794a,15,1,f +8120,3852b,4,1,f +8120,3899,5,1,f +8120,3940b,15,1,f +8120,3941,14,8,f +8120,3957a,15,1,f +8120,4081b,15,2,f +8120,4085c,15,10,f +8120,4213,33,2,f +8120,4282,5,1,f +8120,4460a,5,6,f +8120,4495b,4,1,f +8120,45,383,1,f +8120,4589,33,1,f +8120,4589,36,1,f +8120,4599a,1,1,f +8120,4625,1,2,f +8120,4790,6,1,f +8120,4794b,462,2,f +8120,5848stk01,9999,1,t +8120,6016,0,1,f +8120,6019,0,2,f +8120,6020,15,1,f +8120,6112,15,2,f +8120,6141,46,5,f +8120,6141,36,3,f +8120,6141,34,3,f +8120,6176,5,1,f +8120,6179,5,4,f +8120,6179,15,1,f +8120,6179,14,2,f +8120,6180,74,4,f +8120,6182,74,8,f +8120,6182,5,8,f +8120,6183,15,2,f +8120,6183,1,2,f +8120,6186,14,1,f +8120,6190,4,1,f +8120,6191,14,1,f +8120,6191,5,4,f +8120,6192,74,2,f +8120,6192,1,1,f +8120,6195,14,1,f +8120,6196,15,1,f +8120,6197b,14,2,f +8120,6198,15,2,f +8120,6205,15,2,f +8120,6250,0,1,f +8120,6256,1,1,f +8120,6636,15,2,f +8120,6945,20,1,f +8120,70001pb02,0,1,f +8120,70973,1,1,f +8120,71182,383,2,f +8120,71183,383,4,f +8120,71184,383,4,f +8120,71861,1,1,f +8120,belvfem60,9999,2,f +8120,belvfem61,9999,1,f +8120,belvmale15,9999,1,f +8120,pouch07,13,1,f +8120,pouch08,20,2,f +8120,towel,14,1,f +8121,11477,72,1,f +8121,3024,272,1,t +8121,3024,272,1,f +8121,3069b,72,1,f +8121,3794b,1,1,f +8121,4600,71,1,f +8121,60897,72,2,f +8121,93273,272,2,f +8122,219,72,8,t +8122,2412b,14,3,f +8122,2412b,15,2,f +8122,2412b,71,16,f +8122,2431,4,28,f +8122,2432,71,3,f +8122,2456,4,2,f +8122,2465,0,2,f +8122,2730,0,2,f +8122,2871b,0,4,f +8122,2877,72,4,f +8122,2878,0,8,f +8122,2922,0,2,f +8122,30000,71,2,f +8122,3001,0,3,f +8122,3001,2,2,f +8122,3002,0,2,f +8122,3004,4,40,f +8122,3004,0,10,f +8122,3005,4,44,f +8122,3005,0,12,f +8122,3008,4,4,f +8122,3009,71,1,f +8122,3009,4,27,f +8122,3010,72,6,f +8122,30165,0,1,f +8122,3020,0,9,f +8122,3021,2,2,f +8122,3022,71,3,f +8122,3023,46,1,f +8122,3023,36,8,f +8122,3023,4,8,f +8122,3023,15,12,f +8122,30237a,71,1,f +8122,3030,0,1,f +8122,3032,72,2,f +8122,3032,19,2,f +8122,3036,72,2,f +8122,3039pr0015,0,2,f +8122,3040b,4,12,f +8122,30552,71,1,f +8122,30554b,0,2,f +8122,3069b,1,1,f +8122,3069b,71,22,f +8122,3069b,0,4,f +8122,3069b,25,1,f +8122,3298,0,2,f +8122,3455,4,3,f +8122,3460,14,1,f +8122,3623,71,10,f +8122,3624,320,1,f +8122,3626bpr0386,14,1,f +8122,3626bpr0498,14,1,f +8122,3626bpr0645,14,1,f +8122,3659,0,4,f +8122,3666,1,4,f +8122,3666,72,2,f +8122,3673,71,3,t +8122,3673,71,12,f +8122,3676,72,4,f +8122,3706,0,4,f +8122,3709,1,1,f +8122,3710,14,1,f +8122,3747b,72,2,f +8122,3795,72,4,f +8122,3795,14,4,f +8122,3901,70,1,f +8122,3941,19,5,f +8122,4025,14,5,f +8122,4032a,14,8,f +8122,4079,1,14,f +8122,4150pr0001,15,1,f +8122,4150pr0022,71,1,f +8122,4162,71,8,f +8122,4175,4,4,f +8122,42022,4,4,f +8122,4286,4,4,f +8122,44300,71,4,f +8122,44302a,71,3,f +8122,4449,70,1,f +8122,44568,71,2,f +8122,4477,71,1,f +8122,4523,1,1,f +8122,45411,4,7,f +8122,46413,40,2,f +8122,4740,0,2,f +8122,4864b,40,8,f +8122,53400,72,16,f +8122,54200,14,2,t +8122,54200,14,4,f +8122,57051,383,8,f +8122,57878,0,16,f +8122,57999,0,8,f +8122,58123a,71,1,f +8122,60219,72,4,f +8122,60581,0,8,f +8122,60581,40,18,f +8122,60593,4,4,f +8122,60602,47,4,f +8122,6091,0,8,f +8122,61409,72,16,f +8122,6141,15,2,f +8122,6141,34,1,f +8122,6141,34,1,t +8122,6141,36,3,f +8122,6141,47,1,t +8122,6141,15,1,t +8122,6141,47,2,f +8122,6141,36,2,t +8122,6182,71,4,f +8122,61976,19,1,f +8122,62462,25,2,f +8122,62711,0,1,f +8122,63868,15,1,f +8122,63965,15,1,f +8122,64022,72,16,f +8122,64227,71,1,f +8122,64228,71,1,f +8122,64453,47,1,f +8122,6587,28,1,f +8122,6589,19,1,f +8122,6636,14,3,f +8122,7938stk01,9999,1,t +8122,85984,0,4,f +8122,87079,71,9,f +8122,87574,0,1,f +8122,87580,72,4,f +8122,87619,15,2,f +8122,87620,4,4,f +8122,91994,0,4,f +8122,92340,15,3,f +8122,970c00,72,1,f +8122,970c00,15,1,f +8122,970c00,272,1,f +8122,973pr1164c01,272,1,f +8122,973pr1480c01,15,1,f +8122,973pr1517c01,73,1,f +8125,10199,10,1,f +8125,11198,73,1,f +8125,11248c01,70,1,f +8125,11249,297,1,f +8125,13355,0,1,f +8125,13530,15,1,f +8125,14721,10,1,f +8125,15515,27,2,f +8125,15944,4,1,f +8125,15994,15,1,f +8125,16304,4,1,f +8125,16304,73,2,f +8125,16385,15,1,f +8125,16598,71,1,f +8125,16600,179,2,f +8125,16685,14,3,f +8125,16686,70,1,f +8125,17458,4,1,f +8125,17646,14,1,f +8125,18018,179,1,f +8125,18917,4,1,f +8125,31169,4,1,f +8125,31333,15,1,f +8125,3437,73,2,f +8125,3437,484,2,f +8125,51708,70,1,f +8125,61649,73,1,f +8125,6474,71,4,f +8125,76371,1,2,f +8125,98224,1,2,f +8125,98224,27,1,f +8125,98225,484,1,f +8125,98233,4,1,f +8125,98252,4,1,f +8126,2343,7,2,f +8126,2412b,0,1,f +8126,2436,7,1,f +8126,2452,14,1,f +8126,2540,7,1,f +8126,2555,7,2,f +8126,2877,0,1,f +8126,2921,14,2,f +8126,3020,7,1,f +8126,3022,4,1,f +8126,3022,0,1,f +8126,3023,14,1,f +8126,3023,7,6,f +8126,3023,4,2,f +8126,3024,36,4,f +8126,3034,0,2,f +8126,30363,8,1,f +8126,3039,15,1,f +8126,3062b,7,2,f +8126,3070b,46,2,f +8126,3460,15,2,f +8126,3626bp05,14,1,f +8126,3660,7,1,f +8126,3665,15,4,f +8126,3710,4,1,f +8126,3710,14,1,f +8126,3730,7,1,f +8126,3731,0,1,f +8126,3788,14,1,f +8126,3788,15,2,f +8126,3795,7,2,f +8126,3821,14,1,f +8126,3822,14,1,f +8126,3823,41,1,f +8126,3829c01,15,1,f +8126,3832,15,1,f +8126,4070,14,3,f +8126,4070,4,1,f +8126,4085c,4,2,f +8126,4211,14,1,f +8126,4213,15,1,f +8126,4214,15,1,f +8126,4276b,0,1,f +8126,4485,4,1,f +8126,4589,7,2,f +8126,4599a,14,2,f +8126,4600,7,4,f +8126,4854,15,1,f +8126,6014a,15,8,f +8126,6015,0,8,f +8126,6081,14,4,f +8126,6091,15,4,f +8126,6111,14,2,f +8126,73590c02a,7,1,f +8126,970c00,0,1,f +8126,973pb0242c01,15,1,f +8128,3139,0,3,f +8128,3461,7,1,f +8128,3462,4,1,f +8128,3464,4,3,f +8128,3480,7,2,f +8128,3481,4,2,f +8128,8,7,3,f +8129,2435,2,2,f +8129,2518,2,4,f +8129,2536,6,6,f +8129,2563,6,1,f +8129,2566,6,1,f +8129,3470,2,1,f +8129,3471,2,1,f +8129,3741,2,4,f +8129,3742,1,1,t +8129,3742,1,3,f +8129,3742,15,1,t +8129,3742,15,3,f +8129,3742,4,3,f +8129,3742,14,3,f +8129,3742,14,1,t +8129,3742,4,1,t +8129,3957a,4,4,f +8129,4032a,2,1,f +8129,4495a,4,1,f +8129,4495a,14,1,f +8129,4495a,15,1,f +8129,4495a,1,1,f +8129,6064,2,2,f +8129,6079,15,2,f +8132,3626bp03,14,1,f +8132,3901,0,1,f +8132,970c00,0,1,f +8132,973pb0007c02,297,1,f +8134,32054,0,12,f +8134,32140,72,2,f +8134,32278,72,6,f +8134,32525,72,4,f +8134,3702,71,2,f +8134,43093,1,10,f +8134,44294,71,2,f +8134,55615,71,8,f +8135,32062,0,4,f +8135,32174,25,2,f +8135,32474,0,3,f +8135,32506,25,2,f +8135,32553,7,1,f +8135,32566,25,1,f +8137,3713,7,100,f +8141,11241pr0003,70,1,f +8141,13770,297,1,f +8141,18855,323,1,f +8141,2423,2,2,f +8141,2877,14,3,f +8141,3004,19,4,f +8141,3020,15,1,f +8141,30237b,15,2,f +8141,3297,322,1,f +8141,33291,4,1,t +8141,33291,4,4,f +8141,33303,15,1,f +8141,3622,19,2,f +8141,3666,26,3,f +8141,3795,27,1,f +8141,3821,15,1,f +8141,3822,15,1,f +8141,3852b,322,1,f +8141,3958,27,1,f +8141,4865a,29,2,f +8141,6141,27,1,t +8141,6141,27,4,f +8141,6231,29,2,f +8141,92950,19,2,f +8141,98283,84,2,f +8142,4350c01,7,2,f +8143,11213,322,4,f +8143,2431,322,12,f +8143,2431,15,12,f +8143,2458,15,4,f +8143,3001,15,2,f +8143,3002,15,2,f +8143,3004,15,5,f +8143,3007,15,2,f +8143,3009,15,6,f +8143,3010,322,8,f +8143,3010,71,2,f +8143,3020,30,1,f +8143,3021,85,2,f +8143,3022,322,1,f +8143,3028,15,2,f +8143,3030,15,2,f +8143,3034,5,2,f +8143,3063b,15,12,f +8143,3068b,27,1,f +8143,3069b,322,6,f +8143,32059,15,4,f +8143,33291,26,1,t +8143,33291,26,8,f +8143,3622,71,4,f +8143,3795,27,2,f +8143,3832,19,1,f +8143,3895,71,2,f +8143,3958,15,2,f +8143,4032a,322,6,f +8143,40379,0,2,f +8143,44567a,71,4,f +8143,44570,15,4,f +8143,48092,322,12,f +8143,6003,85,4,f +8143,6003,15,14,f +8143,87087,321,2,f +8143,93606,27,2,f +8143,98138,41,1,t +8143,98138,41,10,f +8144,270c02,0,3,f +8144,29,4,2,f +8144,3001a,14,5,f +8144,3002a,14,2,f +8144,3003,14,2,f +8144,3003,1,1,f +8144,3004,14,4,f +8144,3004,1,5,f +8144,3005,1,6,f +8144,3005,14,8,f +8144,3009,1,5,f +8144,3020,4,4,f +8144,3021,4,4,f +8144,3022,4,2,f +8144,3023,4,2,f +8144,3032,4,1,f +8144,3040a,4,2,f +8144,3062a,14,1,f +8144,3087c,4,2,f +8144,3185,4,7,f +8144,3186,4,6,f +8144,3187,4,6,f +8144,3307,1,2,f +8144,3307,14,4,f +8144,3456,4,1,f +8145,11477,4,2,f +8145,14704,71,2,f +8145,15456,0,2,f +8145,15571,4,2,f +8145,15573,320,6,f +8145,15672,4,2,f +8145,2540,0,1,f +8145,3020,4,1,f +8145,3021,4,3,f +8145,3022,4,3,f +8145,3023,4,4,f +8145,3039,4,2,f +8145,3069b,0,1,f +8145,32474pr1001,15,2,f +8145,3839b,0,1,f +8145,3937,4,2,f +8145,3938,0,2,f +8145,40379,4,1,f +8145,48336,4,1,f +8145,4871,4,1,f +8145,50947,4,2,f +8145,52107,0,1,f +8145,54200,182,4,f +8145,54200,182,1,t +8145,60478,4,2,f +8145,60897,0,4,f +8145,6126b,182,2,f +8145,6141,15,6,f +8145,6141,15,1,t +8145,92280,4,2,f +8145,98313,0,1,f +8145,99781,0,1,f +8146,2412b,15,1,f +8146,2413,8,1,f +8146,2431,1,4,f +8146,2446,14,1,f +8146,2447,40,1,t +8146,2447,40,1,f +8146,2654,1,1,f +8146,2730,1,2,f +8146,2780,0,1,t +8146,2780,0,2,f +8146,2994,8,4,f +8146,3003,15,1,f +8146,3004,15,3,f +8146,3020,1,2,f +8146,3022,1,1,f +8146,3023,8,1,f +8146,3039,15,2,f +8146,3062b,36,2,f +8146,3068b,15,1,f +8146,3069b,15,2,f +8146,3069b,1,2,f +8146,3070b,1,1,t +8146,3070b,1,2,f +8146,32059,8,2,f +8146,32123b,7,1,t +8146,32123b,7,4,f +8146,32283c03,0,1,f +8146,3626bpr0369,15,1,f +8146,3665,15,2,f +8146,3710,8,1,f +8146,3713,7,4,f +8146,3713,7,1,t +8146,3737,0,2,f +8146,3795,0,1,f +8146,3829c02,15,1,f +8146,4070,15,4,f +8146,41747pb012,15,1,f +8146,41747pb015,15,1,f +8146,41748pb012,15,1,f +8146,41748pb015,15,1,f +8146,41769,15,2,f +8146,41769,1,1,f +8146,41770,1,1,f +8146,41770,15,2,f +8146,4274,7,1,t +8146,4274,7,4,f +8146,43093,1,2,f +8146,4864b,15,2,f +8146,6141,0,2,f +8146,6141,0,1,t +8146,6215,1,1,f +8146,6564,1,2,f +8146,6565,1,2,f +8146,6578,0,4,f +8146,6636,15,2,f +8146,970x023,15,1,f +8146,973c27,15,1,f +8149,10199,10,1,f +8149,11939,4,1,f +8149,12651,14,2,f +8149,13124,15,1,f +8149,13128,0,1,f +8149,13131,14,1,f +8149,13132,484,1,f +8149,13133,484,1,f +8149,13135,5,1,f +8149,13136,4,1,f +8149,13164,25,1,f +8149,13165,14,1,f +8149,16129,0,1,f +8149,16135,0,1,f +8149,2302,25,2,f +8149,2302,73,2,f +8149,2302,10,2,f +8149,2302,4,1,f +8149,3011,29,1,f +8149,3011,1,1,f +8149,3437,10,1,f +8149,3437,1,5,f +8149,3437,73,1,f +8149,3437,29,1,f +8149,3437,25,1,f +8149,3437,19,2,f +8149,3437,5,2,f +8149,3437,14,1,f +8149,4066,10,2,f +8149,40666,10,2,f +8149,40666,14,1,f +8149,40666,4,1,f +8149,40666,15,1,f +8149,44524,15,1,f +8149,44524,14,1,f +8149,61649,5,1,f +8149,61649,14,1,f +8149,6497,15,1,f +8149,6510,5,1,f +8149,6510,4,1,f +8149,76371,1,2,f +8149,76371,14,2,f +8149,88784,0,1,f +8149,90265,15,2,f +8149,98222,1,1,f +8149,98223,4,2,f +8149,98223,10,1,f +8149,98233,10,1,f +8149,98233,4,1,f +8150,2412b,72,2,f +8150,2420,4,2,f +8150,2420,0,2,f +8150,2420,71,1,f +8150,2450,4,4,f +8150,2540,4,7,f +8150,2654,15,1,f +8150,2877,72,2,f +8150,298c02,0,3,f +8150,3003,19,2,f +8150,3004,19,3,f +8150,3005,272,1,f +8150,3010,19,3,f +8150,3021,4,4,f +8150,3021,71,6,f +8150,3022,72,1,f +8150,3022,1,2,f +8150,3023,71,1,f +8150,3023,25,3,f +8150,3023,0,1,f +8150,3024,272,2,f +8150,3032,71,2,f +8150,3033,72,2,f +8150,3034,71,2,f +8150,3035,71,3,f +8150,3036,71,1,f +8150,30367b,15,3,f +8150,30374,71,1,f +8150,3062b,2,16,f +8150,3062b,72,2,f +8150,3062b,14,15,f +8150,3068b,71,1,f +8150,3069b,4,4,f +8150,3069b,72,1,f +8150,3069b,19,4,f +8150,3069b,2,2,f +8150,3070b,4,3,f +8150,32062,0,1,f +8150,3460,71,1,f +8150,3460,4,5,f +8150,3633,0,19,f +8150,3666,4,1,f +8150,3700,0,1,f +8150,3706,0,1,f +8150,3707,0,1,f +8150,3709,4,2,f +8150,3710,4,1,f +8150,3749,19,1,f +8150,3941,4,14,f +8150,3941,15,2,f +8150,3958,72,1,f +8150,4032a,15,3,f +8150,4032a,4,2,f +8150,4032a,72,1,f +8150,4070,14,1,f +8150,4070,4,1,f +8150,4070,71,1,f +8150,4081b,71,4,f +8150,4150,0,1,f +8150,4287,0,2,f +8150,4733,72,1,f +8150,4733,71,1,f +8150,54200,4,1,f +8150,54200,47,1,f +8150,54200,72,4,f +8150,54200,25,1,f +8150,6019,0,8,f +8150,6141,0,1,f +8150,6141,4,5,f +8150,6141,72,3,f +8150,6232,72,1,f +8150,6541,14,1,f +8150,6636,4,4,f +8150,73983,4,1,f +8151,2866,14,2,f +8151,53400,72,4,f +8151,53403,72,1,f +8151,53406,72,1,f +8152,14226c11,0,2,f +8152,14728,0,1,f +8152,2039,15,2,f +8152,2357,15,2,f +8152,2357,71,2,f +8152,2357,320,4,f +8152,2357,4,2,f +8152,2362b,15,2,f +8152,2412b,80,5,f +8152,2412b,0,2,f +8152,2412b,71,2,f +8152,2420,4,4,f +8152,2420,1,6,f +8152,2420,0,4,f +8152,2423,2,13,f +8152,2431,15,10,f +8152,2431,72,1,f +8152,2431,71,4,f +8152,2431,1,2,f +8152,2432,19,1,f +8152,2436,1,2,f +8152,2436,0,1,f +8152,2436,4,1,f +8152,2437,41,1,f +8152,2439,72,1,f +8152,2445,71,2,f +8152,2445,15,1,f +8152,2445,4,3,f +8152,2453a,71,6,f +8152,2453a,15,2,f +8152,2454a,19,2,f +8152,2454a,15,9,f +8152,2456,0,1,f +8152,2456,71,8,f +8152,2456,15,3,f +8152,2460,4,2,f +8152,2474,72,3,f +8152,2475,4,3,f +8152,2476a,15,2,f +8152,2495,4,1,f +8152,2496,0,2,f +8152,2498,1,9,f +8152,2540,1,2,f +8152,2555,0,9,f +8152,2555,15,3,f +8152,2572,47,1,f +8152,2655,71,1,f +8152,2877,15,4,f +8152,298c02,0,3,f +8152,298c02,0,3,t +8152,298c02,1,1,t +8152,298c02,1,1,f +8152,3001,19,1,f +8152,3001,15,4,f +8152,3001,4,1,f +8152,3001,71,6,f +8152,3001,288,1,f +8152,3001,320,6,f +8152,3002,71,9,f +8152,30029,0,1,f +8152,3003,320,6,f +8152,3003,73,2,f +8152,3003,1,2,f +8152,3003,288,12,f +8152,3003,19,1,f +8152,3003,4,3,f +8152,3003,71,10,f +8152,3003,82,3,f +8152,3004,0,2,f +8152,3004,288,53,f +8152,3004,71,15,f +8152,3004,320,4,f +8152,3004,19,2,f +8152,3004,15,6,f +8152,3004,4,2,f +8152,3004,73,61,f +8152,3005,15,6,f +8152,3005,73,55,f +8152,3005,4,1,f +8152,3005,288,44,f +8152,3005,71,18,f +8152,3005,70,3,f +8152,3006,0,3,f +8152,3007,71,7,f +8152,3007,19,2,f +8152,3008,71,2,f +8152,3008,4,1,f +8152,3008,15,2,f +8152,3009,15,4,f +8152,3009,71,8,f +8152,3009,19,2,f +8152,3009,4,3,f +8152,30093,34,1,f +8152,3010,15,3,f +8152,3010,19,3,f +8152,3010,73,14,f +8152,3010,288,23,f +8152,3010,71,10,f +8152,3010,4,1,f +8152,30136,19,1,f +8152,30136,72,8,f +8152,30136,70,4,f +8152,30176,2,10,f +8152,30179,0,9,f +8152,30179,4,1,f +8152,3020,70,8,f +8152,3020,71,11,f +8152,3020,1,1,f +8152,3020,4,2,f +8152,3020,0,1,f +8152,3021,71,6,f +8152,3021,2,2,f +8152,3021,72,2,f +8152,3021,4,3,f +8152,3022,4,3,f +8152,3022,19,2,f +8152,3022,71,6,f +8152,3022,1,6,f +8152,3022,0,7,f +8152,3022,15,2,f +8152,3023,70,2,f +8152,3023,19,4,f +8152,3023,1,1,f +8152,3023,320,8,f +8152,3023,15,26,f +8152,3023,72,5,f +8152,3023,71,23,f +8152,3023,4,15,f +8152,3024,1,1,f +8152,3024,15,7,f +8152,3024,320,2,f +8152,3024,71,16,f +8152,3024,4,2,f +8152,3028,15,3,f +8152,3028,72,1,f +8152,3028,0,2,f +8152,3029,2,2,f +8152,3030,15,1,f +8152,3031,2,2,f +8152,3031,4,1,f +8152,3032,2,4,f +8152,3032,19,4,f +8152,3033,72,2,f +8152,3034,71,2,f +8152,3034,2,1,f +8152,3034,15,3,f +8152,3034,4,1,f +8152,3034,72,3,f +8152,3035,15,1,f +8152,30357,72,4,f +8152,30363,71,8,f +8152,30367b,72,1,f +8152,30374,0,2,f +8152,30374,15,2,f +8152,30377,0,5,t +8152,30377,0,18,f +8152,30383,72,4,f +8152,3039,71,2,f +8152,3040bpr0003,71,3,f +8152,30414,0,1,f +8152,30565,2,5,f +8152,30565,15,1,f +8152,3062b,70,3,f +8152,3062b,47,1,f +8152,3062b,1,4,f +8152,3062b,46,3,f +8152,3062b,4,3,f +8152,3062b,15,1,f +8152,3062b,72,1,f +8152,3062b,0,1,f +8152,3062b,71,2,f +8152,3062b,14,2,f +8152,3063b,71,4,f +8152,3065,47,14,f +8152,3068b,72,9,f +8152,3068b,320,9,f +8152,3068b,19,6,f +8152,3068b,4,3,f +8152,3068b,15,11,f +8152,3068b,71,16,f +8152,3068b,28,7,f +8152,3069b,71,6,f +8152,3069b,19,11,f +8152,3069b,72,8,f +8152,3069b,1,3,f +8152,3069b,4,6,f +8152,3069b,15,17,f +8152,3069b,73,6,f +8152,3069bp02,71,1,f +8152,3070b,70,2,t +8152,3070b,19,2,t +8152,3070b,4,4,f +8152,3070b,19,2,f +8152,3070b,72,2,t +8152,3070b,71,8,f +8152,3070b,1,2,f +8152,3070b,4,4,t +8152,3070b,15,12,f +8152,3070b,71,3,t +8152,3070b,1,2,t +8152,3070b,72,2,f +8152,3070b,15,3,t +8152,3070b,70,2,f +8152,3176,4,1,f +8152,32028,71,5,f +8152,3245b,19,4,f +8152,3297,71,4,f +8152,3298,71,2,f +8152,33051,10,1,f +8152,33085,14,1,f +8152,33125,484,1,f +8152,3460,2,5,f +8152,3460,71,6,f +8152,3460,4,1,f +8152,3622,19,4,f +8152,3622,4,2,f +8152,3622,15,7,f +8152,3622,71,10,f +8152,3623,15,5,f +8152,3623,1,2,f +8152,3624,1,1,f +8152,3624,320,1,f +8152,3626bp09,14,2,f +8152,3626bpr0001,14,2,f +8152,3626bpr0245,14,1,f +8152,3626bpr0314,14,1,f +8152,3626bpr0387,14,1,f +8152,3626bpr0389,14,1,f +8152,3641,0,6,f +8152,3665,4,6,f +8152,3665,71,18,f +8152,3666,320,4,f +8152,3666,71,7,f +8152,3666,1,2,f +8152,3666,2,6,f +8152,3666,72,1,f +8152,3666,15,5,f +8152,3666,4,9,f +8152,3675,71,2,f +8152,3678b,15,1,f +8152,3710,15,8,f +8152,3710,320,2,f +8152,3710,1,9,f +8152,3710,72,1,f +8152,3710,4,7,f +8152,3710,71,6,f +8152,3710,2,6,f +8152,3741,2,12,f +8152,3741,2,2,t +8152,3742,15,8,t +8152,3742,15,24,f +8152,3742,4,5,t +8152,3742,5,3,f +8152,3742,4,15,f +8152,3742,5,1,t +8152,3794a,320,16,f +8152,3794a,1,2,f +8152,3794a,4,6,f +8152,3794a,72,24,f +8152,3794a,71,8,f +8152,3795,19,1,f +8152,3795,15,4,f +8152,3795,72,1,f +8152,3795,2,2,f +8152,3795,0,1,f +8152,3795,71,2,f +8152,3795,70,4,f +8152,3821,4,2,f +8152,3822,4,2,f +8152,3823,47,1,f +8152,3829c01,71,1,f +8152,3829c01,1,1,f +8152,3830,15,2,f +8152,3831,15,2,f +8152,3832,71,1,f +8152,3832,15,2,f +8152,3854,15,16,f +8152,3857,72,3,f +8152,3867,72,1,f +8152,3878,0,1,f +8152,3901,70,1,f +8152,3941,1,2,f +8152,3941,71,2,f +8152,3941,0,2,f +8152,3941,19,2,f +8152,3941,4,2,f +8152,3957a,0,2,f +8152,3958,72,1,f +8152,4006,0,1,f +8152,4032a,70,2,f +8152,4032a,0,2,f +8152,4032a,72,1,f +8152,4070,15,11,f +8152,4070,1,2,f +8152,4070,71,17,f +8152,4070,4,3,f +8152,4070,0,6,f +8152,4079,70,8,f +8152,4083,15,2,f +8152,4093a,72,1,f +8152,4150,15,2,f +8152,4150pr0001,15,1,f +8152,41539,143,1,f +8152,4162,15,3,f +8152,4162,4,1,f +8152,41753,72,1,f +8152,41769,320,1,f +8152,41770,320,1,f +8152,4208,0,1,f +8152,4209,4,1,f +8152,4215b,15,1,f +8152,4216,4,7,f +8152,4216,15,25,f +8152,4217,4,2,f +8152,4218,47,8,f +8152,4219,15,1,f +8152,4282,71,4,f +8152,4286,71,2,f +8152,43337,71,2,f +8152,4349,0,1,f +8152,43888,71,12,f +8152,43898,80,2,f +8152,44301a,0,4,f +8152,44302a,71,8,f +8152,44302a,72,1,f +8152,44567a,0,1,f +8152,44728,1,2,f +8152,44728,4,2,f +8152,44728,15,8,f +8152,44728,19,3,f +8152,44728,71,10,f +8152,4477,4,8,f +8152,4477,15,4,f +8152,4485,4,1,f +8152,4485,1,1,f +8152,4522,0,1,f +8152,4589,2,2,f +8152,4589,15,3,f +8152,4599a,14,1,f +8152,4599a,4,2,f +8152,4599a,1,2,f +8152,4599a,0,7,f +8152,4600,71,2,f +8152,4624,15,6,f +8152,4733,15,1,f +8152,4740,47,2,f +8152,4740,0,4,f +8152,4740,15,1,f +8152,4740,72,4,f +8152,47905,0,11,f +8152,48092,15,2,f +8152,48092,4,1,f +8152,48336,71,1,f +8152,48336,0,6,f +8152,4864b,47,7,f +8152,4865a,15,12,f +8152,4865a,71,2,f +8152,4865a,1,4,f +8152,4865a,4,5,f +8152,50745,4,2,f +8152,50950,15,2,f +8152,52107,0,2,f +8152,54200,15,2,t +8152,54200,0,4,f +8152,54200,1,1,t +8152,54200,0,2,t +8152,54200,1,2,f +8152,54200,15,2,f +8152,55295,0,1,f +8152,55296,0,1,f +8152,55297,0,1,f +8152,55298,0,1,f +8152,55299,0,1,f +8152,55300,0,1,f +8152,57895,47,6,f +8152,59349,47,2,f +8152,6003,4,1,f +8152,6005,15,3,f +8152,6014b,71,4,f +8152,6015,0,4,f +8152,60475a,71,2,f +8152,60475a,15,1,f +8152,60481,4,2,f +8152,60594,0,8,f +8152,6060,15,3,f +8152,60616a,47,4,f +8152,6081,15,1,f +8152,6081,4,4,f +8152,60849,71,1,f +8152,6091,0,4,f +8152,6091,320,6,f +8152,6091,15,2,f +8152,6091,19,9,f +8152,6091,4,12,f +8152,6093,70,1,f +8152,6093,0,1,f +8152,6111,4,2,f +8152,6111,15,6,f +8152,6112,15,5,f +8152,6112,4,1,f +8152,6112,71,1,f +8152,6141,4,7,f +8152,6141,47,5,f +8152,6141,14,2,t +8152,6141,15,2,t +8152,6141,1,1,t +8152,6141,36,1,t +8152,6141,71,2,t +8152,6141,41,1,t +8152,6141,15,10,f +8152,6141,70,2,t +8152,6141,71,2,f +8152,6141,14,12,f +8152,6141,70,4,f +8152,6141,72,4,f +8152,6141,4,3,t +8152,6141,46,2,t +8152,6141,46,20,f +8152,6141,41,2,f +8152,6141,72,1,t +8152,6141,0,16,f +8152,6141,36,2,f +8152,6141,47,2,t +8152,6141,0,6,t +8152,6141,1,4,f +8152,6157,0,2,f +8152,6179,15,4,f +8152,6191,15,16,f +8152,6215,15,6,f +8152,6231,4,4,f +8152,6232,15,2,f +8152,6266,0,4,f +8152,63965,0,4,f +8152,63965,15,2,f +8152,63965,4,2,f +8152,6636,72,8,f +8152,6636,1,2,f +8152,6636,15,4,f +8152,6636,71,10,f +8152,6636,70,8,f +8152,6636,19,12,f +8152,73983,15,2,f +8152,73983,71,2,f +8152,75c10,0,4,f +8152,85545,1,1,f +8152,970c00,72,1,f +8152,970c00,1,1,f +8152,970c00,71,1,f +8152,970c00,320,2,f +8152,970c00,272,1,f +8152,970c00,0,1,f +8152,973pr0805c01,15,1,f +8152,973pr1156c01,1,2,f +8152,973pr1163c01,272,1,f +8152,973pr1190c01,0,1,f +8152,973pr1192c01,0,1,f +8152,973pr1196c01,15,1,f +8152,973pr1204c01,15,1,f +8153,2905,4,2,f +8153,3139,0,2,f +8153,32002,8,1,t +8153,32002,8,2,f +8153,32039,7,1,f +8153,32056,4,2,f +8153,32062,0,3,f +8153,32073,0,3,f +8153,32123b,7,6,f +8153,32123b,7,1,t +8153,32125,1,1,f +8153,3707,0,2,f +8153,3713,7,1,t +8153,3713,7,2,f +8153,4519,0,3,f +8153,6536,0,2,f +8153,6538b,7,2,f +8153,6589,7,2,f +8153,6629,4,1,f +8153,6632,4,2,f +8153,75c10,0,2,f +8153,85543,15,1,t +8153,85543,15,1,f +8154,11217pr0007a,15,1,f +8154,15573,71,1,f +8154,2877,71,1,f +8154,3023,36,1,f +8154,41769,72,1,f +8154,57899,0,1,f +8154,58247,0,1,f +8154,59900,72,1,f +8154,60897,72,2,f +8154,85984,71,1,f +8156,10201,0,1,f +8156,11458,72,2,f +8156,12607ass01pr01,2,1,f +8156,12610pr0001,28,1,f +8156,12622,0,1,f +8156,15624,72,2,f +8156,15625pr0003,72,1,f +8156,15627pr0005,326,1,f +8156,2431,70,1,f +8156,2431pr0017,14,2,f +8156,2432,0,5,f +8156,2454a,2,2,f +8156,2460,72,2,f +8156,2496,0,2,f +8156,2817,0,1,f +8156,3001,27,1,f +8156,3003,2,2,f +8156,3004,71,2,f +8156,3004,27,1,f +8156,3010,2,5,f +8156,30173a,179,2,f +8156,30173a,179,1,t +8156,30180,71,1,f +8156,3020,326,2,f +8156,3022,71,2,f +8156,30362,0,2,f +8156,30367c,4,1,f +8156,30602pr0005,320,1,f +8156,30663,0,1,f +8156,3068bpr0210,15,1,f +8156,3069b,14,1,f +8156,3626cpr1150,0,1,f +8156,3710,71,1,f +8156,3795,70,2,f +8156,3795,27,1,f +8156,4032a,1,1,f +8156,4032a,25,1,f +8156,4083,0,1,f +8156,4150pr0022,71,2,f +8156,41531,71,1,f +8156,42511,1,1,f +8156,43719,15,1,f +8156,46667,0,1,f +8156,47457,27,2,f +8156,47974,71,1,f +8156,4865b,14,1,f +8156,50303,0,1,f +8156,50943,71,1,f +8156,50950,71,2,f +8156,59900,71,4,f +8156,59900,34,1,f +8156,59900,36,1,f +8156,6014b,27,4,f +8156,60476,0,2,f +8156,60603pr0001,41,1,f +8156,61409,27,2,f +8156,61409,0,4,f +8156,6232,4,1,f +8156,63864,15,2,f +8156,64867,326,1,f +8156,87697,0,4,f +8156,88930,27,1,f +8156,92593,326,2,f +8156,93058,297,1,t +8156,93058,297,1,f +8156,970c00,2,1,f +8156,970c00,0,1,f +8156,973pr2264c01,0,1,f +8156,973pr2267c01,2,1,f +8157,11816pr0006,78,1,f +8157,2343,47,1,f +8157,2496,0,2,f +8157,3032,19,1,f +8157,3062b,4,1,f +8157,3062b,46,1,f +8157,3068b,15,2,f +8157,33291,191,1,t +8157,33291,191,1,f +8157,33291,5,2,f +8157,33291,5,1,t +8157,3741,2,1,f +8157,3741,2,1,t +8157,3940b,72,1,f +8157,3941,27,1,f +8157,4032a,19,1,f +8157,4032a,27,1,f +8157,42511,1,1,f +8157,59900,46,1,f +8157,6141,71,1,t +8157,6141,71,2,f +8157,6254,191,1,f +8157,87087,4,1,f +8157,87580,14,2,f +8157,92257,320,1,f +8157,92456pr0001c01,78,1,f +8157,92819pr0002a,27,1,f +8158,3703,14,4,f +8158,3895,14,4,f +8160,30155,7,2,f +8160,30237a,15,1,f +8160,30602,15,1,f +8160,3062b,33,1,f +8160,3483,0,2,f +8160,3962b,8,1,f +8160,40620,383,1,f +8160,45950,0,1,f +8160,45951,15,1,f +8160,4j002,-1,1,f +8161,2412b,71,2,f +8161,2436,71,2,f +8161,2444,15,2,f +8161,2540,15,1,f +8161,2555,4,2,f +8161,30000,72,2,f +8161,3004,0,2,f +8161,3023,72,9,f +8161,30384,40,1,f +8161,30389c,71,2,f +8161,30553,0,1,t +8161,30553,0,4,f +8161,30602,15,4,f +8161,3068b,15,2,f +8161,3176,0,2,f +8161,32000,15,4,f +8161,32001,71,1,f +8161,32034,15,1,f +8161,32054,0,5,f +8161,32062,0,3,f +8161,32123b,71,1,t +8161,32123b,71,1,f +8161,32140,0,2,f +8161,32316,0,2,f +8161,3626bpr0445,14,1,f +8161,3666,15,2,f +8161,3673,71,1,t +8161,3673,71,4,f +8161,3700,72,2,f +8161,3705,0,1,f +8161,3706,0,1,f +8161,3709,0,1,f +8161,3710,15,2,f +8161,3738,0,1,f +8161,3747b,0,1,f +8161,3794a,71,2,f +8161,3839b,71,1,f +8161,40002,47,1,f +8161,40244,0,1,f +8161,41532,0,2,f +8161,4162,15,1,f +8161,41672,0,1,f +8161,41677,0,2,f +8161,41678,71,1,f +8161,41747,15,1,f +8161,41748,15,1,f +8161,42022,15,2,f +8161,42060,15,1,f +8161,42061,15,1,f +8161,4274,71,6,f +8161,4274,71,1,t +8161,43093,1,3,f +8161,43710,15,1,f +8161,43711,15,1,f +8161,43712,15,2,f +8161,44728,15,5,f +8161,4519,71,1,f +8161,4588,72,1,f +8161,4589,71,2,f +8161,4589,36,1,f +8161,4599a,71,2,f +8161,4740,71,1,f +8161,47432,72,2,f +8161,47452,72,4,f +8161,47455,15,8,f +8161,47459,15,2,f +8161,48169,72,2,f +8161,48170,72,2,f +8161,48172,0,1,f +8161,48336,0,1,f +8161,48729a,0,1,f +8161,48729a,0,1,t +8161,53981,73,1,f +8161,54605,47,1,f +8161,6019,0,2,f +8161,6091,0,2,f +8161,6134,71,1,f +8161,6141,71,2,f +8161,6141,36,1,t +8161,6141,71,1,t +8161,6141,36,2,f +8161,6153b,15,2,f +8161,6239,15,2,f +8161,6536,0,1,f +8161,6538b,4,1,f +8161,6553,0,1,f +8161,6558,0,2,f +8161,6636,71,2,f +8161,7700stk01,9999,1,t +8161,970x026,15,1,f +8161,973pr1232c01,15,1,f +8162,122c01,0,2,f +8162,3001,0,1,f +8162,3001,14,6,f +8162,3002,14,4,f +8162,3002,0,2,f +8162,3003,14,4,f +8162,3003,0,2,f +8162,3004,0,14,f +8162,3004,14,47,f +8162,3004,47,7,f +8162,3005,14,34,f +8162,3005,0,6,f +8162,3008,14,26,f +8162,3008,0,6,f +8162,3009,14,30,f +8162,3009,0,8,f +8162,3010,47,4,f +8162,3010,14,31,f +8162,3010,0,6,f +8162,3010p05,0,2,f +8162,3020,14,10,f +8162,3020,0,13,f +8162,3021,0,2,f +8162,3021,14,4,f +8162,3022,14,6,f +8162,3022,0,11,f +8162,3023,0,7,f +8162,3023,14,11,f +8162,3024,0,6,f +8162,3024,14,8,f +8162,3024,46,6,f +8162,3024,36,6,f +8162,3027,14,1,f +8162,3028,14,1,f +8162,3029,14,2,f +8162,3029,0,1,f +8162,3032,14,2,f +8162,3032,0,2,f +8162,3034,14,2,f +8162,3034,0,9,f +8162,3035,0,2,f +8162,3036,14,3,f +8162,3036,0,3,f +8162,3037,0,16,f +8162,3038,0,4,f +8162,3039,14,4,f +8162,3039,0,8,f +8162,3039,47,5,f +8162,3040b,14,6,f +8162,3040b,0,11,f +8162,3041,0,3,f +8162,3042,0,1,f +8162,3043,0,2,f +8162,3044b,0,2,f +8162,3045,0,8,f +8162,3046a,0,8,f +8162,3062b,0,8,f +8162,3062b,36,2,f +8162,3062b,46,2,f +8162,3069b,0,4,f +8162,3069b,14,8,f +8162,3070b,14,2,f +8162,3070b,0,2,f +8162,3127,4,2,f +8162,3176,0,1,f +8162,3188,0,1,f +8162,3188,14,1,f +8162,3189,0,1,f +8162,3189,14,1,f +8162,3192,4,1,f +8162,3193,4,1,f +8162,3228b,7,4,f +8162,3298,0,3,f +8162,3298,14,3,f +8162,3315,0,1,f +8162,3324c01,0,2,f +8162,3403,4,1,f +8162,3404,4,1,f +8162,3455,14,4,f +8162,3460,14,6,f +8162,3460,0,5,f +8162,3461,7,4,f +8162,3462,14,1,f +8162,3462,0,1,f +8162,3480,7,3,f +8162,3481,14,3,f +8162,3482,7,20,f +8162,3483,0,20,f +8162,3491,0,1,f +8162,3492c01,14,1,f +8162,3581,14,4,f +8162,3582,0,4,f +8162,3597,0,1,f +8162,3622,0,6,f +8162,3622,14,12,f +8162,3623,0,7,f +8162,3623,14,6,f +8162,3625,0,3,f +8162,3626apr0001,14,6,f +8162,3641,0,4,f +8162,3644,4,4,f +8162,3647,7,2,f +8162,3650,7,1,f +8162,3660,0,16,f +8162,3660,14,10,f +8162,3665,14,12,f +8162,3665,0,14,f +8162,3666,0,6,f +8162,3666,14,6,f +8162,3673,7,2,f +8162,3678a,47,8,f +8162,3679,7,2,f +8162,3680,14,1,f +8162,3680,0,1,f +8162,3700,0,12,f +8162,3700,14,12,f +8162,3705,0,2,f +8162,3706,0,12,f +8162,3709,14,2,f +8162,3710,14,8,f +8162,3710,0,10,f +8162,3713,7,2,f +8162,3730,0,2,f +8162,3731,0,2,f +8162,3736,7,1,f +8162,3737,0,1,f +8162,3738,14,1,f +8162,3747a,14,3,f +8162,3747a,0,3,f +8162,3749,7,8,f +8162,3794a,0,4,f +8162,3795,0,6,f +8162,3795,14,4,f +8162,3821,0,2,f +8162,3822,0,2,f +8162,3829c01,0,2,f +8162,3830,14,2,f +8162,3831,14,2,f +8162,3832,0,1,f +8162,3833,4,3,f +8162,3837,8,1,f +8162,3838,4,2,f +8162,3838,15,1,f +8162,3839a,0,2,f +8162,3841,8,1,f +8162,3842a,4,2,f +8162,3842a,15,1,f +8162,3853,0,4,f +8162,3854,4,8,f +8162,3857,2,6,f +8162,3861b,4,1,f +8162,3937,0,2,f +8162,3938,0,2,f +8162,3939,47,3,f +8162,3941,0,4,f +8162,3956,0,4,f +8162,3957a,0,3,f +8162,3959,0,1,f +8162,3960,7,1,f +8162,3961,7,1,f +8162,3962a,0,1,f +8162,3963,0,2,f +8162,4006,0,1,f +8162,4070,14,2,f +8162,4085a,0,3,f +8162,4282,14,2,f +8162,4288,0,4,f +8162,4476b,0,4,f +8162,4477,0,2,f +8162,73037,14,3,f +8162,970c00,0,1,f +8162,970c00,1,2,f +8162,970c00,4,2,f +8162,970c00,15,1,f +8162,973c01,15,1,f +8162,973c02,4,2,f +8162,973c07,1,2,f +8162,973c18,0,1,f +8162,rb00164,0,3,f +8164,11211,71,1,f +8164,11293,272,1,f +8164,11295,72,1,f +8164,11297,41,1,f +8164,11476,71,2,f +8164,14518,72,1,f +8164,15068,14,3,f +8164,15254,71,2,f +8164,15712,14,2,f +8164,17485,14,2,f +8164,18990,47,1,f +8164,19220,0,1,f +8164,2357,14,2,f +8164,2412b,14,1,f +8164,2412b,272,3,f +8164,2431,14,4,f +8164,2445,72,2,f +8164,2446,15,1,f +8164,2446,4,1,f +8164,2447,40,1,f +8164,2460,72,4,f +8164,2476a,71,4,f +8164,2584,0,1,f +8164,2585,71,1,f +8164,2877,0,3,f +8164,3001,1,1,f +8164,3001,71,1,f +8164,3003,72,1,f +8164,3004,71,2,f +8164,3005,14,2,f +8164,3005,71,2,f +8164,3009,72,2,f +8164,30090,41,1,f +8164,30091,72,1,f +8164,3010,4,2,f +8164,30150,70,1,f +8164,30153,33,1,f +8164,30153,46,1,f +8164,3020,0,3,f +8164,3020,14,1,f +8164,3021,72,1,f +8164,3021,14,4,f +8164,3022,72,4,f +8164,3022,71,3,f +8164,3023,14,4,f +8164,3023,0,6,f +8164,3030,72,1,f +8164,3031,71,4,f +8164,3031,72,1,f +8164,3036,71,1,f +8164,30361c,14,2,f +8164,30367c,14,2,f +8164,3037,14,2,f +8164,30383,72,6,f +8164,30395,72,1,f +8164,3039pr0013,15,1,f +8164,3040b,72,2,f +8164,30554b,0,2,f +8164,30592,72,2,f +8164,3068b,14,2,f +8164,3069bpr0101,71,1,f +8164,3070b,36,2,f +8164,3070b,34,2,f +8164,3176,71,8,f +8164,32059,72,1,f +8164,32125,71,2,f +8164,32270,0,1,f +8164,3298,72,2,f +8164,3460,14,4,f +8164,3460,0,2,f +8164,3623,14,10,f +8164,3626cpr0499,14,1,f +8164,3626cpr0914,14,1,f +8164,3626cpr1666,14,1,f +8164,3665,71,4,f +8164,3666,0,2,f +8164,3673,71,2,f +8164,3700,71,2,f +8164,3710,71,4,f +8164,3710,4,2,f +8164,3710,14,2,f +8164,3713,4,1,f +8164,3747a,14,2,f +8164,3749,19,2,f +8164,3795,71,2,f +8164,3894,72,2,f +8164,3956,71,2,f +8164,4032a,0,2,f +8164,4032a,14,2,f +8164,4079,4,1,f +8164,4081b,0,2,f +8164,4081b,71,4,f +8164,41529,71,2,f +8164,41532,0,2,f +8164,4175,71,1,f +8164,42023,72,2,f +8164,43093,1,2,f +8164,43720,72,1,f +8164,43721,72,1,f +8164,43857,0,2,f +8164,4477,1,2,f +8164,4624,71,8,f +8164,4868b,71,2,f +8164,4869,71,2,f +8164,4871,0,2,f +8164,48729b,72,2,f +8164,50943,72,1,f +8164,50950,72,4,f +8164,51739,72,1,f +8164,52501,72,2,f +8164,54200,71,2,f +8164,55013,72,1,f +8164,56823c50,0,1,f +8164,57906,0,6,f +8164,59275,4,2,f +8164,59895,0,8,f +8164,60219,72,3,f +8164,6041,0,2,f +8164,60471,71,4,f +8164,60478,0,2,f +8164,60479,14,2,f +8164,60479,71,2,f +8164,60601,41,8,f +8164,6081,272,10,f +8164,6091,272,4,f +8164,6091,72,4,f +8164,6091,14,2,f +8164,61345,71,4,f +8164,61409,72,2,f +8164,6141,71,4,f +8164,61483,71,4,f +8164,6183,14,3,f +8164,6192,72,6,f +8164,62462,71,2,f +8164,63868,71,2,f +8164,64567,0,2,f +8164,64799,14,1,f +8164,6541,71,2,f +8164,6583,0,2,f +8164,6636,1,2,f +8164,73590c03a,0,2,f +8164,74698,0,1,f +8164,85984,72,3,f +8164,87079,72,1,f +8164,87552,71,8,f +8164,87587pr0001,72,1,f +8164,87990,70,1,f +8164,92099,72,1,f +8164,92593,72,2,f +8164,95120,72,2,f +8164,970c00,272,1,f +8164,970c00pr0293,272,1,f +8164,970c00pr0827,0,1,f +8164,973pr1976c01,4,1,f +8164,973pr2955c01,0,1,f +8164,973pr3010c01,4,1,f +8164,98138,47,4,f +8164,98138,297,3,f +8164,98835,14,1,f +8164,99206,15,2,f +8164,99207,71,6,f +8164,99780,0,3,f +8164,99781,71,4,f +8166,2350c,14,1,f +8166,2351,0,1,f +8166,2376,0,1,f +8166,2431,14,1,f +8166,2512,14,1,f +8166,2877,72,1,f +8166,3001,71,3,f +8166,30076,0,1,f +8166,3010pb046,14,1,f +8166,30285,14,10,f +8166,3031,72,1,f +8166,30365,0,2,f +8166,30386,14,2,f +8166,30387,14,1,f +8166,30391,0,6,f +8166,30395,72,1,f +8166,30619,14,1,f +8166,30622,14,4,f +8166,30624,14,3,f +8166,30635,0,1,f +8166,30636,72,1,f +8166,30640,72,1,f +8166,30642,72,1,f +8166,30663,71,1,f +8166,32324,14,1,f +8166,3403,0,1,f +8166,3404,0,1,f +8166,3701,72,2,f +8166,3823,40,1,f +8166,40344c01,0,1,f +8166,40996,42,2,f +8166,42022,14,2,f +8166,43903,0,2,f +8166,45406,14,1,f +8166,46103,40,1,f +8166,4j003,9999,1,f +8166,56823,0,1,f +8166,6111,14,2,f +8166,js022,-1,1,f +8167,12825,72,3,f +8167,2540,72,2,f +8167,3004,72,1,f +8167,30157,71,2,f +8167,3020,0,1,f +8167,3023,15,2,f +8167,30238,1000,1,f +8167,3034,0,2,f +8167,3040b,0,4,f +8167,3624,0,1,f +8167,3626cpr1013,71,1,f +8167,3710,70,1,f +8167,3829c01,71,1,f +8167,3837,0,1,f +8167,4083,0,1,f +8167,4085c,72,2,f +8167,44676,0,2,f +8167,4589,72,2,f +8167,4865a,47,1,f +8167,50946,0,1,f +8167,51739,0,1,f +8167,53451,15,1,t +8167,53451,15,2,f +8167,56902,71,4,f +8167,60475b,0,2,f +8167,61254,0,4,f +8167,6141,46,1,t +8167,6141,46,2,f +8167,6141,36,1,t +8167,6141,36,1,f +8167,6141,15,1,t +8167,6141,15,2,f +8167,64647,57,1,t +8167,64647,57,2,f +8167,970c00pr0364,272,1,f +8167,973pr2102c01,272,1,f +8167,98138,179,4,f +8167,98138,179,1,t +8167,99780,72,2,f +8169,11213,71,1,f +8169,11833,71,1,f +8169,13548,15,3,f +8169,14301,71,1,f +8169,15068,72,1,f +8169,15303,36,3,f +8169,15392,72,1,t +8169,15392,72,1,f +8169,15400,72,2,f +8169,15403,0,1,f +8169,15535,4,1,f +8169,15712,72,4,f +8169,16501pr0001,15,1,f +8169,18675,71,1,f +8169,2412b,72,5,f +8169,2460,15,1,f +8169,2524,15,1,f +8169,298c02,0,1,t +8169,298c02,0,3,f +8169,3002,71,1,f +8169,30031,72,1,f +8169,3004,15,12,f +8169,3005,15,5,f +8169,3009,15,3,f +8169,3010,1,1,f +8169,3020,15,1,f +8169,3021,0,1,f +8169,3021,28,5,f +8169,3022,19,6,f +8169,3023,71,12,f +8169,30237b,71,1,f +8169,3024,71,1,t +8169,3024,0,2,f +8169,3024,0,1,t +8169,3024,71,8,f +8169,3028,15,1,f +8169,3031,72,2,f +8169,30355,15,2,f +8169,30377,0,1,t +8169,30377,0,4,f +8169,3040b,71,10,f +8169,30414,71,2,f +8169,30565,15,7,f +8169,3062b,47,1,f +8169,3070bpr0149,15,1,f +8169,3070bpr0149,15,1,t +8169,32001,15,2,f +8169,32054,0,1,f +8169,3626cpr1149,78,1,f +8169,3626cpr1368,78,1,f +8169,3626cpr1709,78,1,f +8169,3666,19,3,f +8169,3678b,15,3,f +8169,3700,71,1,f +8169,3709,71,1,f +8169,3713,71,1,t +8169,3713,71,1,f +8169,3830,15,1,f +8169,3831,15,1,f +8169,3837,0,1,f +8169,3957a,47,1,f +8169,3960,47,1,f +8169,4006,0,1,f +8169,4032a,70,2,f +8169,4070,0,1,f +8169,4081b,15,1,f +8169,4081b,0,2,f +8169,4150,72,1,f +8169,42446,71,1,t +8169,42446,71,1,f +8169,43898,0,1,f +8169,44728,15,1,f +8169,46304,15,1,t +8169,46304,15,1,f +8169,4733,72,1,f +8169,4740,47,1,f +8169,48092,15,4,f +8169,50305,15,1,f +8169,50950,15,8,f +8169,54200,15,1,t +8169,54200,15,7,f +8169,54200,72,1,t +8169,54200,72,1,f +8169,57899,0,1,f +8169,58247,0,1,f +8169,59426,72,1,f +8169,60474,72,1,f +8169,60475b,72,1,f +8169,60477,15,2,f +8169,60849,0,4,f +8169,60849,0,1,t +8169,60897,72,1,f +8169,6141,36,1,t +8169,6141,36,5,f +8169,61485,15,1,f +8169,62462,0,1,f +8169,6259,15,2,f +8169,63868,0,1,f +8169,6589,19,2,f +8169,73983,15,3,f +8169,74664,15,1,f +8169,75937,0,2,f +8169,85984,15,5,f +8169,87079,15,1,f +8169,87083,72,1,f +8169,87555,15,1,f +8169,88072,72,1,f +8169,92280,15,2,f +8169,92593,72,2,f +8169,92738,0,1,f +8169,92947,0,1,f +8169,93273,71,2,f +8169,970c00pr0858,71,1,f +8169,970c00pr0966,71,1,f +8169,970x194,15,1,f +8169,973pr2311c01,15,1,f +8169,973pr3025c01,15,1,f +8169,98138,41,2,t +8169,98138,41,2,f +8169,99781,0,1,f +8170,11203,72,2,f +8170,11439pat0001,46,1,f +8170,12605,9999,1,t +8170,2570,148,1,f +8170,3003,4,1,f +8170,30031,0,1,f +8170,30173b,297,1,t +8170,30173b,297,2,f +8170,3022,70,1,f +8170,3023,0,4,f +8170,3034,4,1,f +8170,3039,4,2,f +8170,30602,4,4,f +8170,32062,4,1,f +8170,3626cpr0744,14,1,f +8170,3626cpr1084,0,1,f +8170,3660,0,2,f +8170,3666,4,1,f +8170,3795,0,2,f +8170,4032a,4,1,f +8170,4081b,0,1,f +8170,4150,297,3,f +8170,41879a,0,1,f +8170,44728,0,2,f +8170,4498,4,1,f +8170,47457,297,1,f +8170,4871,4,2,f +8170,48729b,0,1,f +8170,48729b,0,1,t +8170,54200,297,4,f +8170,54200,297,1,t +8170,57908,72,1,f +8170,57909a,72,6,f +8170,59443,4,1,f +8170,59900,297,1,f +8170,59900,182,5,f +8170,61409,4,4,f +8170,6141,4,3,f +8170,6141,4,1,t +8170,64644,297,1,f +8170,88072,0,1,f +8170,90622,0,4,f +8170,90641,4,4,f +8170,92692,0,3,f +8170,93059,4,1,f +8170,970c00pr0417,0,1,f +8170,973pr2185c01,0,1,f +8170,973pr2187c01,72,1,f +8170,98133pr0001,4,1,f +8170,98138,297,1,t +8170,98138,297,2,f +8170,98141,297,4,f +8170,98313,297,7,f +8170,99207,71,1,f +8170,99780,72,2,f +8170,99781,0,1,f +8172,3700,0,6,f +8172,3701,0,6,f +8172,3709,0,2,f +8172,3738,0,2,f +8172,3894,0,6,f +8172,6541,0,4,f +8173,3004,15,1,f +8173,3004,0,1,f +8173,3021,25,1,f +8173,3021,72,1,f +8173,3040b,15,2,f +8173,3040b,0,2,f +8173,3665,15,2,f +8173,4070,15,2,f +8174,996ac01,4,4,f +8174,996ac01,1,4,f +8174,x466,15,2,f +8174,x869b,15,1,f +8174,x870bc01,0,1,f +8174,x871b,47,1,f +8175,11610,19,6,f +8175,12825,71,4,f +8175,16443,9999,1,t +8175,2362b,47,5,f +8175,2412b,0,2,f +8175,2412b,72,4,f +8175,2431,27,2,f +8175,2431,15,1,f +8175,2444,15,4,f +8175,3003,71,2,f +8175,3004,5,4,f +8175,3010,0,1,f +8175,3010,5,2,f +8175,3010,15,5,f +8175,3020,0,1,f +8175,3020,15,3,f +8175,3020,5,4,f +8175,3021,70,1,f +8175,3022,72,8,f +8175,30222,42,2,f +8175,3023,47,6,f +8175,3031,0,2,f +8175,3034,29,5,f +8175,30361c,15,2,f +8175,30362,15,2,f +8175,30367b,15,2,f +8175,30367b,158,2,f +8175,3037,15,1,f +8175,30374,15,1,f +8175,3040b,72,2,f +8175,30414,15,5,f +8175,30414,72,2,f +8175,30552,0,2,f +8175,30553,72,2,f +8175,30586,15,2,f +8175,3062b,0,1,f +8175,3068b,0,3,f +8175,3069b,5,6,f +8175,3070b,15,2,f +8175,32002,19,2,f +8175,32015,71,4,f +8175,32028,0,2,f +8175,32028,15,4,f +8175,32062,0,4,f +8175,32064b,15,8,f +8175,32073,71,1,f +8175,32316,71,1,f +8175,32530,72,2,f +8175,3460,15,2,f +8175,3622,5,2,f +8175,3623,15,2,f +8175,3623,72,6,f +8175,3626cpr0893,14,1,f +8175,3626cpr1329,14,1,f +8175,3626cpr1330,14,1,f +8175,3648b,72,1,f +8175,3665,15,4,f +8175,3665,5,6,f +8175,3666,27,5,f +8175,3710,71,5,f +8175,3710,0,2,f +8175,3794b,27,1,f +8175,3795,15,10,f +8175,3829c01,14,1,f +8175,3941,1,1,f +8175,3941,27,1,f +8175,3956,71,1,f +8175,4150pr0022,71,1,f +8175,4176,47,1,f +8175,41769,5,2,f +8175,41770,5,2,f +8175,4274,71,2,f +8175,43093,1,6,f +8175,4345b,15,1,f +8175,4346,47,1,f +8175,43722,15,2,f +8175,43723,15,2,f +8175,44728,14,2,f +8175,4488,71,4,f +8175,4519,71,3,f +8175,4599b,71,2,f +8175,4623,15,2,f +8175,4740,71,2,f +8175,4865b,47,2,f +8175,48729b,0,2,f +8175,50745,15,4,f +8175,52031,5,1,f +8175,52031,15,1,f +8175,52037,72,1,f +8175,54200,47,2,f +8175,54200,36,2,f +8175,57539pat0002,47,1,t +8175,57539pat0002,47,1,f +8175,57539pat0004,47,1,f +8175,57539pat0004,47,1,t +8175,59443,4,1,f +8175,59900,19,1,f +8175,6014b,15,4,f +8175,6019,71,2,f +8175,60478,15,2,f +8175,60479,15,2,f +8175,60481,15,4,f +8175,60897,15,4,f +8175,6091,5,4,f +8175,61184,71,5,f +8175,6141,27,8,f +8175,6141,36,10,f +8175,61484,15,1,f +8175,6222,15,1,f +8175,6254,321,1,f +8175,6254,27,1,f +8175,6254,191,2,f +8175,6254,15,2,f +8175,62696,308,1,f +8175,64713,19,1,f +8175,64799,0,2,f +8175,6541,4,2,f +8175,6628,0,1,f +8175,6632,72,2,f +8175,6636,5,2,f +8175,85984,15,2,f +8175,86500,15,1,f +8175,87079,15,1,f +8175,87087,71,6,f +8175,87619,5,1,f +8175,87697,0,4,f +8175,87990,84,1,f +8175,92280,71,2,f +8175,92593,27,4,f +8175,93273,0,2,f +8175,970c01pr0610,15,2,f +8175,970c11pr0611,0,1,f +8175,973pr2543c01,321,1,f +8175,973pr2545c01,321,1,f +8175,973pr2546c01,0,1,f +8175,98302,0,2,f +8175,98381,15,1,f +8177,15965,27,1,f +8177,16205,1,1,f +8177,18783,70,2,f +8177,23990,14,1,f +8177,24807,322,1,f +8177,25221,15,1,f +8177,25234,4,1,f +8177,26392,15,1,f +8177,31465,14,1,f +8177,3437,191,1,f +8177,42234,4,2,f +8177,44524,10,1,f +8177,47551,73,1,f +8177,61896,321,1,f +8177,98460,70,4,f +8179,2357,4,2,f +8179,2376,0,1,f +8179,2412b,72,7,f +8179,2420,2,2,f +8179,2420,72,2,f +8179,2431,27,2,f +8179,2431,0,2,f +8179,2432,15,2,f +8179,2432,0,1,f +8179,2446,135,1,f +8179,2446pr30,0,1,f +8179,2450,0,2,f +8179,2555,0,1,f +8179,2584,0,1,f +8179,2585,71,1,f +8179,2654,15,4,f +8179,2730,71,2,f +8179,2780,0,5,f +8179,2780,0,2,t +8179,2817,71,1,f +8179,298c02,1,1,f +8179,298c02,15,2,f +8179,298c02,14,1,f +8179,298c02,15,1,t +8179,298c02,14,1,t +8179,298c02,1,1,t +8179,3001,0,1,f +8179,3001,72,1,f +8179,3003,72,1,f +8179,30031,72,1,f +8179,30033,15,1,f +8179,3004,14,2,f +8179,3004,0,5,f +8179,3005,4,1,f +8179,3005,0,2,f +8179,3009,0,2,f +8179,3010,4,1,f +8179,3020,2,1,f +8179,3020,0,3,f +8179,3020,72,3,f +8179,3021,15,1,f +8179,3021,0,2,f +8179,3022,4,4,f +8179,3022,0,3,f +8179,3022,72,3,f +8179,3023,71,3,f +8179,3023,0,5,f +8179,3023,27,2,f +8179,3023,2,1,f +8179,3023,72,4,f +8179,3023,4,2,f +8179,3024,36,2,f +8179,3024,72,2,f +8179,3024,4,4,f +8179,3024,0,4,f +8179,3024,15,2,f +8179,30293,15,2,f +8179,30294,15,2,f +8179,3031,0,1,f +8179,3032,0,1,f +8179,30325,27,2,f +8179,3034,0,2,f +8179,3034,15,1,f +8179,3035,0,2,f +8179,30367b,72,4,f +8179,3037,2,1,f +8179,30372,40,2,f +8179,30383,0,2,f +8179,3039,2,2,f +8179,3039,72,2,f +8179,30395,72,1,f +8179,30407,0,3,f +8179,3040b,15,2,f +8179,30602,4,1,f +8179,3062b,71,2,f +8179,3068b,0,2,f +8179,3069b,4,1,f +8179,3069b,72,2,f +8179,32002,72,1,t +8179,32002,72,2,f +8179,32013,0,8,f +8179,32018,72,2,f +8179,32059,0,1,f +8179,32062,4,2,f +8179,32064b,0,2,f +8179,32123b,14,36,f +8179,32123b,14,3,t +8179,32123b,71,1,t +8179,32123b,71,3,f +8179,32125,71,1,f +8179,32140,0,2,f +8179,32270,0,1,f +8179,32271,72,2,f +8179,32449,0,2,f +8179,32525,72,1,f +8179,32556,19,2,f +8179,3460,4,2,f +8179,3622,0,2,f +8179,3623,15,2,f +8179,3623,0,4,f +8179,3626bpr0558,14,1,f +8179,3626bpr0662,14,1,f +8179,3626bpr0668,14,1,f +8179,3626bpr0669,14,1,f +8179,3626bpr0671,14,1,f +8179,3626bpr0675,14,1,f +8179,3665,15,4,f +8179,3665,4,2,f +8179,3666,0,1,f +8179,3666,15,2,f +8179,3673,71,2,t +8179,3673,71,3,f +8179,3679,71,1,f +8179,3680,71,1,f +8179,3700,72,3,f +8179,3702,0,2,f +8179,3703,0,2,f +8179,3705,0,12,f +8179,3706,0,2,f +8179,3707,0,1,f +8179,3708,0,4,f +8179,3710,0,4,f +8179,3710,72,5,f +8179,3710,27,2,f +8179,3713,71,12,f +8179,3713,71,4,t +8179,3749,19,3,f +8179,3794b,71,1,f +8179,3795,0,1,f +8179,3795,25,1,f +8179,3829c01,15,2,f +8179,4032a,4,2,f +8179,4079b,72,1,f +8179,4079b,0,1,f +8179,4081b,0,4,f +8179,41530,71,1,f +8179,41747,27,1,f +8179,41747,4,2,f +8179,41748,27,1,f +8179,41748,4,1,f +8179,41764,0,1,f +8179,41765,0,1,f +8179,41769,0,1,f +8179,41769,72,2,f +8179,41769,4,1,f +8179,41769,15,1,f +8179,41770,72,2,f +8179,41770,0,1,f +8179,41770,4,1,f +8179,41770,15,1,f +8179,42003,72,1,f +8179,42003,71,1,f +8179,42022,2,2,f +8179,42023,4,2,f +8179,4286,2,2,f +8179,4286,0,2,f +8179,4287,72,2,f +8179,43722,4,1,f +8179,43723,4,1,f +8179,43903,0,2,f +8179,44301a,0,5,f +8179,44568,15,1,f +8179,44675,71,1,f +8179,44728,4,2,f +8179,44728,71,2,f +8179,44728,14,1,f +8179,4519,71,3,f +8179,45301,4,1,f +8179,4617b,0,1,f +8179,46304,15,3,f +8179,46304,15,1,t +8179,46413,40,1,f +8179,4740,71,2,f +8179,48336,71,1,f +8179,4868b,71,4,f +8179,50304,0,1,f +8179,50304,15,1,f +8179,50305,0,1,f +8179,50305,15,1,f +8179,50923,72,2,f +8179,50950,72,2,f +8179,50950,4,2,f +8179,51739,15,1,f +8179,53451,4,4,f +8179,53451,4,1,t +8179,53989,15,4,f +8179,54200,15,2,f +8179,54200,25,2,f +8179,54200,47,2,f +8179,54200,15,1,t +8179,54200,4,1,t +8179,54200,4,2,f +8179,54200,25,1,t +8179,54200,0,2,f +8179,54200,47,1,t +8179,54200,0,1,t +8179,54821,1,2,f +8179,55982,0,4,f +8179,56145,0,4,f +8179,56823c50,0,1,f +8179,59443,0,1,f +8179,6087,0,2,f +8179,6091,4,8,f +8179,6117,72,2,f +8179,6120,72,2,f +8179,61409,27,2,f +8179,61409,0,1,f +8179,61409,72,2,f +8179,6141,46,1,t +8179,6141,34,1,f +8179,6141,36,1,t +8179,6141,71,2,t +8179,6141,0,1,t +8179,6141,34,1,t +8179,6141,46,2,f +8179,6141,36,1,f +8179,6141,0,3,f +8179,6141,71,10,f +8179,61481,0,4,f +8179,61678,4,2,f +8179,61678,71,2,f +8179,61678,27,2,f +8179,61678,0,3,f +8179,6232,72,1,f +8179,64275,135,4,f +8179,6541,72,2,f +8179,6541,4,1,f +8179,6587,28,4,f +8179,6589,19,2,f +8179,6632,4,1,f +8179,6636,15,1,f +8179,85543,15,1,f +8179,85944,72,2,f +8179,87083,72,1,f +8179,8863stk01,9999,1,t +8179,8863stk02,9999,1,t +8179,89652,27,2,f +8179,89801,80,1,f +8179,970c00pr0151,15,2,f +8179,970x026,72,3,f +8179,970x199,25,1,f +8179,973pr1587c01,0,1,f +8179,973pr1589c01,0,1,f +8179,973pr1591c01,15,1,f +8179,973pr1603c01,27,1,f +8179,973pr1606c01,27,1,f +8179,973pr1607c01,0,1,f +8180,12057,15,1,f +8180,3437,14,1,f +8180,3437,191,1,f +8180,3437,27,1,f +8180,6510,4,1,f +8181,2458,4,2,f +8181,3004,2,1,f +8181,3020,4,2,f +8181,3040b,15,4,f +8181,30488c01,15,1,f +8181,30492,2,1,f +8181,3069b,2,1,f +8181,3700,15,2,f +8181,3795,14,1,f +8181,3832,2,1,f +8181,4150ps3,0,1,f +8181,72824p01,15,2,f +8182,2540,0,1,f +8182,2555,0,1,f +8182,3023,1,1,f +8182,30359b,47,1,f +8182,30377,19,1,t +8182,30602,1,1,f +8182,3069b,1,1,f +8182,3710,272,1,f +8182,3839b,72,1,f +8182,3960,47,1,f +8182,4349,72,2,f +8182,44676,272,2,f +8182,4697b,71,2,f +8182,4697b,71,1,t +8182,4733,1,2,f +8182,50950,72,1,f +8182,54200,1,1,f +8182,54200,1,1,t +8182,6141,1,2,f +8182,6141,1,1,t +8182,64567,71,2,f +8183,10314,30,1,f +8183,10314,26,1,f +8183,10830pat0001,0,1,f +8183,11211,19,1,f +8183,11267,297,1,f +8183,11458,15,2,f +8183,11477,15,2,f +8183,11477,26,6,f +8183,11609,191,2,t +8183,11609,191,4,f +8183,11816pr0005,78,1,f +8183,11816pr0013,78,1,f +8183,13392pr0001,212,1,f +8183,14716,71,2,f +8183,14769,297,4,f +8183,15068,15,1,f +8183,15207,72,1,f +8183,15254,226,3,f +8183,15469,322,1,f +8183,15573,297,5,f +8183,15677,4,1,f +8183,15679pr0001,14,1,f +8183,15745,41,4,f +8183,16530pr01,2,1,f +8183,16530pr02,5,1,f +8183,16577,226,3,f +8183,18853,29,1,t +8183,18853,29,1,f +8183,18970,297,2,f +8183,18970,15,3,f +8183,19642pr0001,4,1,f +8183,2343,47,2,f +8183,2412b,15,2,f +8183,2423,5,5,f +8183,2423,27,1,f +8183,2431,15,2,f +8183,2431,0,1,f +8183,2431,322,2,f +8183,2445,15,2,f +8183,2453b,226,2,f +8183,2454b,226,1,f +8183,2654,19,1,f +8183,2654,15,2,f +8183,3001,15,2,f +8183,3004,15,8,f +8183,3004,19,2,f +8183,3005,26,4,f +8183,3005,19,5,f +8183,3005,72,2,f +8183,30056,26,2,f +8183,30093,10,3,f +8183,3010,15,2,f +8183,30106,117,2,f +8183,30153,45,2,f +8183,3020,15,4,f +8183,3020,27,8,f +8183,3020,0,1,f +8183,30218,15,1,f +8183,3023,15,4,f +8183,3023,27,4,f +8183,3024,0,2,f +8183,3024,0,1,t +8183,3032,322,1,f +8183,3035,19,2,f +8183,30367c,322,1,f +8183,3039,33,2,f +8183,3040b,19,8,f +8183,3040b,72,3,f +8183,30504,322,1,f +8183,30562,47,4,f +8183,30565,27,1,f +8183,30565,19,2,f +8183,3062b,297,2,f +8183,3062b,46,1,f +8183,3062b,36,1,f +8183,3068bpr0138,15,1,f +8183,3068bpr0167,19,1,f +8183,3069b,26,3,f +8183,32474,4,1,f +8183,33291,5,2,t +8183,33291,5,18,f +8183,33291,10,9,f +8183,33291,10,2,t +8183,33322,5,1,f +8183,33322,5,1,t +8183,3622,19,2,f +8183,3660,71,1,f +8183,3665,72,1,f +8183,3666,26,1,f +8183,3666,15,1,f +8183,3666,19,1,f +8183,3673,71,1,t +8183,3673,71,1,f +8183,3679,71,2,f +8183,3680,15,2,f +8183,3700,71,1,f +8183,3710,19,4,f +8183,3710,26,2,f +8183,3710,27,1,f +8183,3795,19,4,f +8183,3795,71,1,f +8183,3852b,191,1,f +8183,3900,15,1,f +8183,3941,71,4,f +8183,3941,41,2,f +8183,3942c,297,1,f +8183,4032a,15,5,f +8183,4032a,70,1,f +8183,4460b,19,1,f +8183,4728,45,1,f +8183,48092,15,6,f +8183,48336,297,2,f +8183,4865b,41,2,f +8183,50950,26,1,f +8183,54200,297,2,t +8183,54200,297,6,f +8183,54200,71,2,f +8183,54200,71,1,t +8183,58176,143,2,f +8183,59426,72,1,f +8183,59900,36,1,f +8183,59900,129,1,t +8183,59900,26,4,f +8183,59900,46,3,f +8183,59900,34,2,f +8183,59900,129,1,f +8183,60474,297,1,f +8183,60475b,71,2,f +8183,60581,15,1,f +8183,60808,226,4,f +8183,6111,19,1,f +8183,6112,19,1,f +8183,6141,25,2,t +8183,6141,297,15,f +8183,6141,25,7,f +8183,6141,0,1,f +8183,6141,297,2,t +8183,6141,2,2,f +8183,6141,2,1,t +8183,6141,0,1,t +8183,6141,41,6,f +8183,6141,41,2,t +8183,6182,19,2,f +8183,6182,226,4,f +8183,6266,15,1,t +8183,6266,15,2,f +8183,64644,297,6,f +8183,85984,30,2,f +8183,87079,26,2,f +8183,87079,30,1,f +8183,87087,71,2,f +8183,87552,41,3,f +8183,87580,15,1,f +8183,87580,26,3,f +8183,88293,26,4,f +8183,89522,297,4,f +8183,89522,297,1,t +8183,90370pr0005,0,1,t +8183,90370pr0005,0,1,f +8183,90508,27,1,f +8183,91405,322,1,f +8183,92099,15,1,f +8183,92107,15,1,f +8183,92256,0,1,f +8183,92280,71,2,f +8183,92290,297,1,t +8183,92290,297,1,f +8183,92438,322,1,f +8183,92456pr0052c01a,78,1,f +8183,92456pr0067c01,78,1,f +8183,92593,15,4,f +8183,92947,15,2,f +8183,93094,5,1,f +8183,93094,5,1,t +8183,93273,15,1,f +8183,96874,25,1,t +8183,98138,297,2,f +8183,98138,297,1,t +8183,98138pr0013,15,1,t +8183,98138pr0013,15,1,f +8184,3626b,0,1,f +8184,61189pr0001,15,1,f +8184,970x026,15,1,f +8184,973pr1389c01,15,1,f +8187,2486,7,4,f +8187,30055,7,6,f +8187,3185,7,20,f +8187,6583,7,4,f +8188,2357,15,4,f +8188,2377,15,2,f +8188,2413,15,2,f +8188,2432,14,2,f +8188,2437,40,1,f +8188,2458,1,2,f +8188,2540,72,2,f +8188,3003,71,1,f +8188,3004,15,4,f +8188,3009,15,1,f +8188,3010,15,2,f +8188,3021,72,2,f +8188,3022,14,2,f +8188,3023,72,4,f +8188,3023,1,2,f +8188,3023,4,4,f +8188,3024,1,2,f +8188,3024,72,4,f +8188,3031,15,2,f +8188,3031,72,1,f +8188,3034,1,1,f +8188,3035,71,1,f +8188,30363,0,4,f +8188,3039pr0013,15,1,f +8188,3068b,1,1,f +8188,3068b,15,1,f +8188,3070b,72,2,f +8188,3070b,72,1,t +8188,3139,0,6,f +8188,3460,1,2,f +8188,3665,15,2,f +8188,3666,1,2,f +8188,3710,1,5,f +8188,3795,72,1,f +8188,3853,0,1,f +8188,3854,15,2,f +8188,3899,4,2,f +8188,3941,15,1,f +8188,3942c,15,1,f +8188,3957a,15,1,f +8188,4032a,4,2,f +8188,4032a,2,1,f +8188,4032a,15,1,f +8188,4345b,71,1,f +8188,4346,47,1,f +8188,43712,15,2,f +8188,44571,15,1,f +8188,44822,72,1,f +8188,4599a,71,1,f +8188,4617b,0,2,f +8188,4624,15,6,f +8188,48183,72,2,f +8188,48183,1,1,f +8188,4854,1,1,f +8188,4855,1,4,f +8188,4856a,15,2,f +8188,4858,15,1,f +8188,4861,15,1,f +8188,4862,40,2,f +8188,4865a,15,2,f +8188,4870,71,3,f +8188,48729a,72,1,f +8188,48933,15,1,f +8188,54383,15,1,f +8188,54384,15,1,f +8188,55295,0,1,f +8188,55296,0,1,f +8188,55297,0,1,f +8188,55298,0,1,f +8188,55299,0,1,f +8188,55300,0,1,f +8188,6140,14,1,f +8188,6141,36,1,t +8188,6141,34,1,f +8188,6141,36,1,f +8188,6141,34,1,t +8188,6239,15,1,f +8188,6636,72,1,f +8188,73983,1,1,f +8190,32203,4,1,f +8190,32203,0,1,f +8190,32205,4,2,f +8190,32206,0,1,f +8190,32206,4,1,f +8190,32214,0,2,f +8190,32218,4,1,f +8190,zbb013,22,8,f +8190,zbb014,7,3,f +8190,zbb015,4,2,f +8191,3596,15,6,f +8191,649p01,15,1,f +8191,649pb06,15,1,f +8191,649pb07,15,1,f +8191,649pb08a,15,1,f +8191,649pb10,15,1,f +8191,675pr02,15,1,f +8191,7284,15,1,f +8191,739p01,15,1,f +8191,81294,15,1,f +8191,gtfruit,2,2,f +8194,2341,4,2,f +8194,2348b,41,1,f +8194,2349a,15,1,f +8194,2357,7,2,f +8194,2412b,7,3,f +8194,2419,15,1,f +8194,2420,1,2,f +8194,2420,15,2,f +8194,2420,4,4,f +8194,2431,7,1,f +8194,2431,15,2,f +8194,2437,41,2,f +8194,2540,14,1,f +8194,2540,4,2,f +8194,2540,15,3,f +8194,2569,7,2,f +8194,2654,7,4,f +8194,2780,0,4,f +8194,2819,7,2,f +8194,298c03,7,2,f +8194,3001,4,2,f +8194,3002,4,2,f +8194,3003,7,1,f +8194,3004,0,6,f +8194,3004,4,2,f +8194,3004,7,4,f +8194,3005,0,2,f +8194,3005,4,4,f +8194,3009,4,1,f +8194,3010,7,2,f +8194,3020,0,1,f +8194,3020,1,2,f +8194,3020,4,4,f +8194,3020,14,1,f +8194,3021,1,2,f +8194,3021,4,7,f +8194,3021,14,1,f +8194,3021,0,6,f +8194,3021,7,1,f +8194,3021,15,8,f +8194,3022,7,2,f +8194,3022,4,3,f +8194,3022,0,2,f +8194,3022,15,3,f +8194,3023,15,7,f +8194,3023,7,2,f +8194,3023,1,2,f +8194,3023,0,2,f +8194,3023,4,12,f +8194,3024,0,2,f +8194,3024,1,6,f +8194,3024,4,6,f +8194,3024,15,6,f +8194,3031,4,2,f +8194,3034,7,1,f +8194,3034,0,2,f +8194,3037,4,2,f +8194,3037,15,2,f +8194,3038,4,2,f +8194,3039pc4,0,1,f +8194,3040b,15,2,f +8194,3040b,4,2,f +8194,3040p33,0,2,f +8194,3045,4,2,f +8194,3068b,4,2,f +8194,3069b,14,2,f +8194,3069b,15,14,f +8194,3069b,0,2,f +8194,3070b,15,4,f +8194,3070b,4,2,f +8194,3456,7,1,f +8194,3460,7,1,f +8194,3460,0,1,f +8194,3622,0,2,f +8194,3622,1,4,f +8194,3622,4,2,f +8194,3623,7,1,f +8194,3623,4,6,f +8194,3623,15,4,f +8194,3623,1,4,f +8194,3651,7,2,f +8194,3660,4,2,f +8194,3665,4,4,f +8194,3666,15,2,f +8194,3666,4,4,f +8194,3666,0,3,f +8194,3666,7,2,f +8194,3673,7,2,f +8194,3685,4,2,f +8194,3700,7,4,f +8194,3700,0,2,f +8194,3705,0,2,f +8194,3710,4,4,f +8194,3710,7,2,f +8194,3710,1,2,f +8194,3710,15,4,f +8194,3713,7,4,f +8194,3749,7,2,f +8194,3795,15,5,f +8194,3795,0,1,f +8194,3832,15,2,f +8194,3849,7,2,f +8194,3899,14,2,f +8194,3937,15,2,f +8194,3937,0,2,f +8194,3938,15,2,f +8194,3938,0,2,f +8194,4070,7,2,f +8194,4081b,0,2,f +8194,4081b,14,2,f +8194,4081b,4,6,f +8194,4085c,15,4,f +8194,4162,15,2,f +8194,4175,7,2,f +8194,4273b,7,4,f +8194,4275b,0,2,f +8194,4276b,0,2,f +8194,4286,15,2,f +8194,4286,4,2,f +8194,4287,4,2,f +8194,4445,15,2,f +8194,4460b,15,2,f +8194,4477,0,2,f +8194,4515,15,1,f +8194,4623,7,2,f +8194,4625,15,1,f +8194,4730,7,2,f +8194,4854,4,6,f +8194,4855,4,2,f +8194,4856a,15,1,f +8194,4859,1,2,f +8194,4859,4,2,f +8194,4859,15,4,f +8194,4865a,15,2,f +8194,6019,1,4,f +8194,6041,0,2,f +8194,6081,15,2,f +8194,6091,4,2,f +8194,6091,1,2,f +8194,6091,15,6,f +8194,6104,1,1,f +8194,6104,15,2,f +8194,6141,0,2,f +8194,6141,4,4,f +8194,6141,7,6,f +8194,6541,15,4,f +8195,2723,0,2,f +8195,2780,0,12,f +8195,2905,0,2,f +8195,32009,0,2,f +8195,32016,0,2,f +8195,32017,0,2,f +8195,32039,0,4,f +8195,32039,0,2,t +8195,32062,0,3,f +8195,32073,0,6,f +8195,32123b,7,6,f +8195,32138,0,2,f +8195,32165,82,1,f +8195,32166,8,2,f +8195,32168,8,2,f +8195,32171pb036,0,1,f +8195,32171pb061,82,1,f +8195,32172,0,2,f +8195,32173,8,2,f +8195,32174,0,4,f +8195,32175,8,2,f +8195,32177,0,2,f +8195,32190,0,1,f +8195,32190,4,1,f +8195,32191,4,1,f +8195,32191,0,1,f +8195,3647,7,2,f +8195,3648b,8,1,f +8195,3705,0,5,f +8195,3706,0,4,f +8195,3707,0,1,f +8195,3713,7,10,f +8195,3749,7,2,f +8195,4032a,0,2,f +8195,4150,0,1,f +8195,4274,7,2,f +8195,4716,0,1,f +8195,6141,36,2,f +8195,6536,0,7,f +8195,6538b,7,2,f +8195,6558,0,1,f +8195,6587,8,2,f +8195,6594,0,2,f +8195,6595,8,2,f +8195,6628,0,6,f +8195,6629,4,6,f +8195,6629,0,2,f +8195,78c02,4,2,f +8195,78c10,0,2,f +8195,x209px1,0,1,f +8196,122c02,0,2,f +8196,2336p90,15,1,f +8196,2432,15,1,f +8196,2433,15,2,f +8196,298c02,0,2,f +8196,3001,15,1,f +8196,3020,15,1,f +8196,3023,15,1,f +8196,3023,0,1,f +8196,3626apr0001,14,1,f +8196,3747a,15,1,f +8196,3838,1,1,f +8196,3842b,1,1,f +8196,4032a,0,1,f +8196,4084,0,4,f +8196,4276b,15,2,f +8196,4589,36,1,f +8196,4596,15,2,f +8196,4598,15,1,f +8196,4740,34,2,f +8196,6141,36,2,f +8196,73983,15,2,f +8196,970c00,1,1,f +8196,973pr1594c01,1,1,f +8197,b11idea,9999,1,f +8198,30153,46,1,f +8198,3022,2,2,f +8198,3040b,2,4,f +8198,3941,70,1,f +8198,4286,2,4,f +8198,59900,2,1,f +8198,6141,33,1,t +8198,6141,36,1,t +8198,6141,46,1,t +8198,6141,182,1,t +8198,6141,36,2,f +8198,6141,182,2,f +8198,6141,46,2,f +8198,6141,33,2,f +8201,3022,0,2,f +8201,3024,0,720,f +8201,3024,15,540,f +8201,3024,71,270,f +8201,3024,72,540,f +8201,3037,0,44,f +8201,3038,0,2,f +8201,3046a,0,6,f +8201,3176,0,1,f +8201,4186,71,1,f +8201,6007,72,1,t +8203,10884,27,5,f +8203,11211,19,1,f +8203,11245pr0001,322,1,f +8203,11816pr0006,78,1,f +8203,12825,70,1,f +8203,13336pr0001,27,1,f +8203,14734pr0002a,19,1,f +8203,14736pr0001,484,1,f +8203,14769,30,3,f +8203,14769,15,1,f +8203,15279,27,2,f +8203,15332,70,4,f +8203,15672,70,3,f +8203,16981,27,1,f +8203,16981,27,1,t +8203,2335,15,1,f +8203,2420,2,1,f +8203,2431,26,4,f +8203,2431,70,1,f +8203,2456,70,2,f +8203,2476,15,1,f +8203,2540,2,1,f +8203,2817,71,1,f +8203,3001,70,3,f +8203,3002,70,4,f +8203,3003,70,2,f +8203,3005,70,1,f +8203,30089,0,1,f +8203,3009,70,1,f +8203,3009,19,2,f +8203,3009,26,2,f +8203,3010,70,1,f +8203,30136,70,14,f +8203,30136,31,12,f +8203,30154,72,1,f +8203,30157,70,1,f +8203,30162,72,1,f +8203,30176,2,6,f +8203,3020,5,1,f +8203,3020,484,1,f +8203,3020,19,5,f +8203,3022,27,4,f +8203,3022,484,6,f +8203,3023,27,13,f +8203,3023,30,3,f +8203,30357,19,2,f +8203,3040b,70,6,f +8203,30565,28,2,f +8203,30565,322,1,f +8203,30592,71,1,f +8203,3062b,46,1,f +8203,3062b,322,1,f +8203,3062b,0,1,f +8203,32013,320,6,f +8203,32062,4,6,f +8203,33051,10,1,f +8203,33057,484,1,f +8203,33085,14,1,f +8203,33183,10,1,t +8203,33183,10,2,f +8203,33291,4,14,f +8203,33291,4,2,t +8203,3622,70,3,f +8203,3623,2,1,f +8203,3660,308,3,f +8203,3673,71,2,f +8203,3673,71,1,t +8203,3678b,484,3,f +8203,3679,71,1,f +8203,3680,15,1,f +8203,3700,70,1,f +8203,3710,27,5,f +8203,3710,19,4,f +8203,3794b,19,4,f +8203,3795,19,1,f +8203,3832,19,2,f +8203,3941,70,2,f +8203,3958,10,1,f +8203,3962b,191,1,f +8203,41059stk01,9999,1,t +8203,4287,70,2,f +8203,4460b,70,5,f +8203,4523,5,1,f +8203,4536,15,1,f +8203,4697b,71,1,t +8203,4697b,71,1,f +8203,4733,15,1,f +8203,4740pr0001a,4,1,f +8203,4865b,322,1,f +8203,4865b,19,3,f +8203,54200,29,1,t +8203,54200,29,1,f +8203,59443,70,3,f +8203,59900,19,1,f +8203,59900,15,1,f +8203,59900,26,1,f +8203,6003,19,2,f +8203,6020,70,1,f +8203,60475a,0,1,f +8203,60478,15,4,f +8203,60897,19,6,f +8203,6141,47,1,t +8203,6141,41,8,f +8203,6141,2,2,t +8203,6141,47,2,f +8203,6141,2,9,f +8203,6141,41,2,t +8203,6179,5,2,f +8203,6231,322,6,f +8203,62462,15,1,f +8203,6249,72,1,f +8203,62698,0,1,f +8203,63965,70,1,f +8203,64951,30,1,f +8203,75c20,10,1,t +8203,75c20,10,1,f +8203,85984,15,1,f +8203,87079,26,3,f +8203,88072,19,4,f +8203,91405,2,1,f +8203,91501,19,1,f +8203,92257,320,1,f +8203,92280,15,4,f +8203,92410,30,1,f +8203,92456pr0054c01,78,1,f +8203,92590,28,1,f +8203,92820pr0006c01b,378,1,f +8203,92950,70,2,f +8203,93160,15,1,t +8203,93160,15,1,f +8203,95343,4,1,f +8203,95344,28,1,t +8203,95344,28,1,f +8203,98138,71,7,f +8203,98138,71,1,t +8203,98138pr0018,84,1,t +8203,98138pr0018,84,1,f +8203,98388pr0001,191,1,f +8203,98560,308,12,f +8204,14210,15,2,f +8204,2335,4,1,f +8204,2339,0,4,f +8204,2357,71,2,f +8204,2412b,297,6,f +8204,2412b,85,7,f +8204,2420,72,2,f +8204,2431,72,12,f +8204,2444,0,1,f +8204,2445,0,2,f +8204,2460,72,5,f +8204,2540,0,1,f +8204,2736,71,2,f +8204,2780,0,29,f +8204,2780,0,1,t +8204,3001,288,1,f +8204,3001,0,1,f +8204,3002,0,2,f +8204,3003,288,3,f +8204,3004,72,4,f +8204,3004,0,5,f +8204,3007,0,2,f +8204,3009,0,6,f +8204,30099,0,4,f +8204,3021,15,1,f +8204,3021,288,2,f +8204,3022,72,8,f +8204,3023,71,8,f +8204,30236,0,1,f +8204,30332,0,1,f +8204,3034,72,2,f +8204,3035,72,1,f +8204,30350b,0,2,f +8204,30355,0,2,f +8204,30356,0,2,f +8204,30374,15,1,f +8204,30377,0,1,t +8204,30377,0,9,f +8204,3038,0,4,f +8204,30384,40,1,f +8204,3039,0,2,f +8204,3039,288,2,f +8204,30407,0,2,f +8204,3040b,72,2,f +8204,3046a,0,2,f +8204,3048c,71,1,f +8204,30503,288,1,f +8204,30526,72,2,f +8204,30553,0,2,f +8204,30602,0,2,f +8204,30644,0,1,f +8204,3069b,0,2,f +8204,3069b,72,15,f +8204,3069bpr0106,15,1,f +8204,3070b,72,2,f +8204,3070b,72,1,t +8204,32000,0,12,f +8204,32001,0,1,f +8204,32013,0,8,f +8204,32014,0,1,f +8204,32034,71,2,f +8204,32039,0,2,f +8204,32059,71,1,f +8204,32062,4,6,f +8204,32074c01,72,1,f +8204,32123b,71,2,f +8204,32123b,71,1,t +8204,32278,0,1,f +8204,32316,0,1,f +8204,32324,0,2,f +8204,32449,0,4,f +8204,32525,72,4,f +8204,32529,0,2,f +8204,32530,72,2,f +8204,32531,0,1,f +8204,3298,72,5,f +8204,3298,15,2,f +8204,3460,0,2,f +8204,3475b,0,2,f +8204,3623,72,2,f +8204,3626bpr0347,78,1,f +8204,3626bpr0469,15,1,f +8204,3626bpr0476,78,1,f +8204,3626cpr0468,42,2,f +8204,3660,0,6,f +8204,3665,72,2,f +8204,3666,71,12,f +8204,3673,71,1,t +8204,3673,71,1,f +8204,3684,71,1,f +8204,3701,288,3,f +8204,3701,0,3,f +8204,3702,0,3,f +8204,3705,0,4,f +8204,3709,15,1,f +8204,3710,71,10,f +8204,3710,15,4,f +8204,3737,0,2,f +8204,3747a,0,2,f +8204,3747a,15,1,f +8204,3795,72,3,f +8204,3894,0,2,f +8204,3895,0,2,f +8204,3937,72,1,f +8204,3942c,85,4,f +8204,4032a,0,8,f +8204,4070,19,2,f +8204,41334,0,1,f +8204,4162,72,4,f +8204,41677,71,2,f +8204,41747,0,1,f +8204,41748,0,1,f +8204,41764,0,1,f +8204,41765,0,1,f +8204,41769,72,2,f +8204,41770,72,2,f +8204,41855,71,2,f +8204,42021,0,1,f +8204,42022,0,2,f +8204,42023,72,10,f +8204,4215b,0,2,f +8204,42444,2,1,f +8204,4274,1,8,f +8204,4274,1,1,t +8204,4286,0,2,f +8204,43093,1,11,f +8204,4349,0,1,f +8204,43712,288,1,f +8204,43719,72,2,f +8204,43898,72,1,f +8204,44126,0,1,f +8204,44294,71,2,f +8204,44300,71,2,f +8204,44301a,0,4,f +8204,44302a,71,4,f +8204,44567a,0,2,f +8204,4519,71,5,f +8204,45301,0,1,f +8204,45705,40,1,f +8204,4589,36,8,f +8204,4589,42,5,f +8204,47397,0,2,f +8204,47398,0,2,f +8204,4740,42,1,f +8204,47753,72,1,f +8204,48336,15,4,f +8204,4865a,71,1,f +8204,4868b,15,4,f +8204,50955,0,2,f +8204,50956,0,2,f +8204,52040,71,1,f +8204,54200,46,12,f +8204,54383,0,5,f +8204,54384,0,5,f +8204,55704,0,1,f +8204,55706,0,2,f +8204,55707a,0,1,f +8204,55707e,0,2,f +8204,56619,0,1,f +8204,56630,0,1,f +8204,56711,9999,1,t +8204,6020,71,2,f +8204,6134,0,1,f +8204,6141,42,1,t +8204,6141,42,3,f +8204,6179,0,2,f +8204,6239,15,1,f +8204,6536,15,1,f +8204,6538b,4,4,f +8204,6541,0,9,f +8204,6558,0,1,f +8204,6587,72,5,f +8204,6589,71,1,f +8204,75535,15,2,f +8204,75535,71,4,f +8204,75535,85,2,f +8204,76110c01,71,1,f +8204,85973,0,1,f +8204,970c00,72,1,f +8204,970c00,85,1,f +8204,970x026,71,1,f +8204,973c43,85,1,f +8204,973pr1272c01,71,1,f +8204,973pr1282c01,85,1,f +8204,98721,0,3,f +8205,3003,6,1,f +8205,3004,15,1,f +8205,3005,6,1,f +8205,3021,6,2,f +8205,3022,15,1,f +8205,3024,15,2,f +8205,3031,2,1,f +8205,3040b,6,9,f +8205,3048c,0,2,f +8205,3069b,0,1,f +8205,3622,6,2,f +8205,3660,6,2,f +8205,3665,6,2,f +8205,3710,6,2,f +8205,3794b,72,3,f +8205,4740,15,2,f +8205,54200,14,2,f +8205,6019,71,1,f +8205,6141,0,2,f +8205,87087,15,2,f +8206,45575,71,2,f +8206,45793c01,0,2,f +8206,45799,71,4,f +8206,47349c01,0,2,f +8209,3003,4,1,f +8209,3021,14,2,f +8209,3022,0,1,f +8209,3062b,1,4,f +8209,3660,4,2,f +8209,3700,4,2,f +8210,3004,0,2,f +8210,3004,15,3,f +8210,3004,4,4,f +8210,3005,15,4,f +8210,3005,14,2,f +8210,3005px2,14,2,f +8210,3009,15,1,f +8210,3010,0,1,f +8210,3010,4,2,f +8210,3021,0,2,f +8210,3023,4,1,f +8210,3622,15,1,f +8210,3622,4,4,f +8210,3622,0,1,f +8210,3700,4,3,f +8210,3700,15,1,f +8210,3710,15,1,f +8210,4589,15,1,f +8210,6141,4,1,t +8210,6141,0,4,f +8210,6141,4,2,f +8210,6141,0,1,t +8211,3001a,1,10,f +8211,3001a,4,10,f +8211,3001a,15,10,f +8211,3001a,14,10,f +8211,3001a,47,2,f +8211,3001a,0,8,f +8211,3002a,15,2,f +8211,3002a,1,2,f +8211,3002a,4,2,f +8211,3002a,14,2,f +8211,3003,14,4,f +8211,3003,0,4,f +8211,3003,4,4,f +8211,3003,1,4,f +8211,3003,15,4,f +8211,3003,47,2,f +8211,3004,15,4,f +8211,3004,1,4,f +8211,3004,14,4,f +8211,3004,4,4,f +8211,3004,0,2,f +8211,3007,4,2,f +8211,3008,15,2,f +8211,3008,1,2,f +8211,3009,14,2,f +8211,3033,4,1,f +8211,3035,1,1,f +8211,3081cc01,4,2,f +8211,3137c01,0,2,f +8211,3579,4,1,f +8211,3581,4,4,f +8211,3582,1,4,f +8211,3641,0,4,f +8211,453cc01,4,2,f +8211,700ed2,2,1,f +8211,7930,1,1,f +8212,132a,7,4,f +8212,3001a,47,1,f +8212,3001a,4,5,f +8212,3002a,47,1,f +8212,3002a,4,3,f +8212,3002a,0,1,f +8212,3003,0,1,f +8212,3003,47,1,f +8212,3003,4,2,f +8212,3004,4,2,f +8212,3004,15,4,f +8212,3005,15,1,f +8212,3020,15,5,f +8212,3020,0,7,f +8212,3020,4,14,f +8212,3021,4,8,f +8212,3021,47,2,f +8212,3021,15,3,f +8212,3022,15,3,f +8212,3022,0,1,f +8212,3022,4,17,f +8212,3023a,4,9,f +8212,3023a,0,2,f +8212,3023a,7,8,f +8212,3034,15,4,f +8212,3035,15,4,f +8212,7039,4,4,f +8212,7049a,15,3,f +8213,3648a,7,12,f +8213,3649,7,4,f +8214,2780,0,2,f +8214,2780,0,1,t +8214,32062,0,1,f +8214,32073,0,1,f +8214,32165,4,1,f +8214,32166,0,2,f +8214,32168,0,1,f +8214,32171pb007,4,1,f +8214,32171pb014,15,1,f +8214,32172,4,3,f +8214,32173,0,3,f +8214,32174,4,4,f +8214,32175,0,2,f +8214,32176,4,1,f +8214,32194,0,1,f +8214,3647,216,1,t +8214,3647,216,1,f +8214,3649,4,1,f +8214,3705,0,1,f +8214,3706,0,1,f +8214,3713,7,1,f +8214,3713,7,1,t +8214,4716,216,1,f +8214,6126a,57,2,f +8214,x209pb09,0,1,f +8215,2362b,15,1,f +8215,2412b,72,2,f +8215,2412b,15,2,f +8215,2412b,42,1,f +8215,2420,1,1,f +8215,2431,15,1,f +8215,2431,72,2,f +8215,2436,0,2,f +8215,2449,72,2,f +8215,2453a,72,4,f +8215,2540,71,1,f +8215,2654,19,2,f +8215,2817,71,1,f +8215,298c02,71,1,t +8215,298c02,71,2,f +8215,3001,15,1,f +8215,3004,72,3,f +8215,3004,14,1,f +8215,3005,72,2,f +8215,3008,71,2,f +8215,3009,71,4,f +8215,3010,1,1,f +8215,3020,2,1,f +8215,3021,15,3,f +8215,3021,0,2,f +8215,3023,15,5,f +8215,3023,14,1,f +8215,3023,71,1,f +8215,3023,70,1,f +8215,3024,1,12,f +8215,3024,71,2,f +8215,3031,71,2,f +8215,3034,1,1,f +8215,30361c,72,1,f +8215,30374,36,1,f +8215,30377,0,6,f +8215,30377,0,1,t +8215,3039pr0002,15,1,f +8215,3040b,0,2,f +8215,3045,2,4,f +8215,30503,72,2,f +8215,3062b,0,1,f +8215,3062b,71,9,f +8215,3062bpb001,378,1,f +8215,3068b,1,7,f +8215,3069b,15,1,f +8215,3069b,4,1,f +8215,3069bpr0100,2,1,f +8215,3070b,36,2,f +8215,3070b,34,2,f +8215,32039,71,2,f +8215,32064b,320,4,f +8215,32064b,71,4,f +8215,32073,71,4,f +8215,32123b,71,1,t +8215,32123b,71,2,f +8215,32192,72,4,f +8215,32530,4,2,f +8215,3460,0,1,f +8215,3623,1,8,f +8215,3641,0,4,f +8215,3673,71,2,f +8215,3673,71,1,t +8215,3679,71,1,f +8215,3680,4,1,f +8215,3710,15,1,f +8215,3710,1,2,f +8215,3755,71,4,f +8215,3794a,0,3,f +8215,3794a,71,1,f +8215,3794a,72,5,f +8215,3832,15,1,f +8215,3937,15,1,f +8215,3941,71,1,f +8215,3941,72,2,f +8215,3960,15,1,f +8215,4032a,4,1,f +8215,4032a,19,1,f +8215,40490,1,2,f +8215,4085c,4,2,f +8215,4150,71,1,f +8215,41539,71,2,f +8215,4162,1,2,f +8215,41769,1,1,f +8215,41770,1,1,f +8215,41879a,70,1,f +8215,4274,1,1,t +8215,4274,1,4,f +8215,43093,1,2,f +8215,43888,272,4,f +8215,43898pr0002,19,1,f +8215,4519,71,2,f +8215,4528,135,1,f +8215,4589,2,1,f +8215,4589,42,1,f +8215,4600,71,2,f +8215,4624,71,4,f +8215,46303,71,1,f +8215,4697b,71,1,t +8215,4697b,71,1,f +8215,4735,71,4,f +8215,4740,42,2,f +8215,4740,36,2,f +8215,47899c04,71,1,f +8215,48336,19,2,f +8215,48336,1,13,f +8215,4864b,47,2,f +8215,4865a,4,1,f +8215,51739,15,1,f +8215,54872pr02,14,1,f +8215,59349,72,5,f +8215,6019,0,26,f +8215,6020,71,1,f +8215,6081,71,4,f +8215,6091,71,6,f +8215,6106,71,4,f +8215,6134,71,1,f +8215,6141,27,1,t +8215,6141,14,1,t +8215,6141,4,1,t +8215,6141,27,4,f +8215,6141,4,1,f +8215,6141,15,4,f +8215,6141,71,5,f +8215,6141,15,1,t +8215,6141,70,1,f +8215,6141,14,5,f +8215,6141,70,1,t +8215,6141,71,1,t +8215,6180,1,2,f +8215,6215,1,5,f +8215,6256,462,1,f +8215,6259,15,1,f +8215,6259,41,1,f +8215,6541,14,2,f +8215,6587,72,2,f +8215,73194c04,71,1,f +8215,73983,1,12,f +8215,73983,15,2,f +8215,973c11,14,1,f +8217,11096,297,1,f +8217,11458,72,2,f +8217,11476,71,2,f +8217,15573,72,2,f +8217,15706,72,2,f +8217,15712,297,2,f +8217,18587,14,1,f +8217,18588,72,1,f +8217,22385pr0014,46,1,f +8217,22385pr0017,35,1,f +8217,22385pr0047,36,1,f +8217,22388,179,1,t +8217,22388,179,5,f +8217,22391,179,1,f +8217,22400,36,1,f +8217,22402,36,1,f +8217,22408,179,1,f +8217,22411,320,1,f +8217,2446,4,1,f +8217,2540,1,1,f +8217,2780,0,1,t +8217,2780,0,2,f +8217,3004,4,1,f +8217,3021,72,2,f +8217,3022,4,2,f +8217,3023,182,2,f +8217,32039,71,1,f +8217,32054,4,1,f +8217,32062,4,1,f +8217,32270,0,1,f +8217,3626cpr1780,14,1,f +8217,3937,1,2,f +8217,4032a,72,1,f +8217,41769,272,1,f +8217,41770,272,1,f +8217,4519,71,1,f +8217,4733,72,1,f +8217,4738a,179,1,f +8217,4739a,57,1,f +8217,48729b,57,1,t +8217,48729b,57,1,f +8217,55236,288,2,f +8217,59426,72,1,f +8217,59900,179,1,f +8217,59900,179,1,t +8217,61184,71,1,f +8217,6134,71,2,f +8217,6141,36,1,t +8217,6141,34,1,t +8217,6141,34,12,f +8217,6141,36,16,f +8217,62462,179,1,f +8217,63869,0,1,f +8217,64647,57,1,t +8217,64647,57,2,f +8217,85984,1,2,f +8217,85984,4,1,f +8217,87580,272,2,f +8217,87994,297,1,f +8217,87994,297,1,t +8217,92947,4,1,f +8217,970c00pr0979,4,1,f +8217,973pr3202c01,4,1,f +8217,98313,179,1,f +8218,12825,71,1,f +8218,2412b,72,2,f +8218,2431,4,1,f +8218,2437,47,1,f +8218,2460,15,1,f +8218,2479,0,1,f +8218,3003,73,1,f +8218,30031,0,1,f +8218,3004,1,4,f +8218,3004,4,2,f +8218,3004,15,4,f +8218,30055,71,2,f +8218,3010,1,4,f +8218,3010,15,4,f +8218,3020,71,2,f +8218,3020,25,1,f +8218,3020,0,4,f +8218,3022,14,1,f +8218,3022,25,2,f +8218,3023,182,1,f +8218,3023,25,2,f +8218,3023,71,4,f +8218,3024,1,4,f +8218,3029,2,1,f +8218,3032,1,1,f +8218,3034,1,1,f +8218,3039,4,1,f +8218,3069b,36,1,f +8218,3069bpr0115,15,1,f +8218,3460,1,2,f +8218,3460,0,1,f +8218,3460,15,2,f +8218,3624,0,1,f +8218,3626cpr0389,14,1,f +8218,3626cpr0649,14,1,f +8218,3665,1,4,f +8218,3710,15,1,f +8218,3710,1,4,f +8218,3710,0,2,f +8218,3795,71,1,f +8218,3829c01,15,1,f +8218,4070,4,4,f +8218,41334,72,1,f +8218,41854,25,1,f +8218,44728,15,2,f +8218,4600,0,4,f +8218,50950,1,2,f +8218,50950,4,2,f +8218,54200,182,1,t +8218,54200,33,1,t +8218,54200,33,2,f +8218,54200,182,2,f +8218,6014b,71,8,f +8218,60596,0,1,f +8218,60621,71,1,f +8218,60700,0,8,f +8218,6141,46,1,t +8218,6141,36,1,t +8218,6141,36,2,f +8218,6141,80,4,f +8218,6141,80,1,t +8218,6141,46,2,f +8218,6215,71,1,f +8218,87580,4,1,f +8218,88930,1,1,f +8218,970c00,2,1,f +8218,970c00,272,1,f +8218,973pr1697c01,73,1,f +8218,973pr1992c01,71,1,f +8219,2341,4,2,f +8219,2343,47,1,f +8219,2343,0,1,f +8219,2345,8,4,f +8219,2357,7,4,f +8219,2357,0,4,f +8219,2431,4,3,f +8219,2431,7,2,f +8219,2449,0,2,f +8219,2449,7,6,f +8219,2456,0,2,f +8219,2458,4,2,f +8219,2465,7,1,f +8219,2465,0,4,f +8219,2489,6,1,f +8219,2490pb01,7,1,f +8219,2554,6,4,f +8219,2555,14,1,f +8219,2586p4f,7,1,f +8219,2817,7,1,f +8219,3001,0,2,f +8219,3002,0,2,f +8219,3002,14,2,f +8219,3003,14,1,f +8219,3003,0,2,f +8219,3004,6,1,f +8219,3004,0,27,f +8219,3004,7,48,f +8219,3004,14,5,f +8219,30041,7,1,f +8219,30042,7,1,f +8219,30044,4,5,f +8219,30045,0,2,f +8219,30046,0,3,f +8219,3005,7,40,f +8219,3005,0,12,f +8219,30055,0,2,f +8219,30072,2,2,f +8219,3008,0,1,f +8219,3008,7,4,f +8219,3009,0,2,f +8219,30099,4,6,f +8219,3010,0,14,f +8219,3010,7,12,f +8219,30100,8,1,f +8219,30101,8,2,f +8219,30102,8,2,f +8219,30103,0,5,f +8219,30104,8,2,f +8219,30105,0,1,f +8219,30106,47,1,f +8219,3020,0,1,f +8219,3020,14,2,f +8219,3020,7,1,f +8219,3023,6,1,f +8219,3023,14,2,f +8219,3023,0,1,f +8219,3030,7,2,f +8219,3034,0,2,f +8219,3034,7,2,f +8219,3036,0,1,f +8219,3039,4,2,f +8219,3040b,0,2,f +8219,3040b,4,4,f +8219,3062b,0,3,f +8219,3062b,36,1,f +8219,3062b,7,19,f +8219,3062b,34,2,f +8219,3068b,4,5,f +8219,3068bp40,15,1,f +8219,3307,0,3,f +8219,3455,0,6,f +8219,3460,7,2,f +8219,3581,7,4,f +8219,3622,7,11,f +8219,3622,0,2,f +8219,3622,14,4,f +8219,3626bp35,14,1,f +8219,3626bp44,14,1,f +8219,3626bpr0895,15,2,f +8219,3626bpx20,14,1,f +8219,3626bpx54,14,1,f +8219,3626bpx74,14,1,f +8219,3626bpx97,14,2,f +8219,3659,0,5,f +8219,3659,7,3,f +8219,3660,0,2,f +8219,3665,0,14,f +8219,3665,4,2,f +8219,3666,0,2,f +8219,3666,7,1,f +8219,3678ap01,0,1,f +8219,3679,7,1,f +8219,3680,0,1,f +8219,3684,7,4,f +8219,3700,14,2,f +8219,3700,4,2,f +8219,3709,14,1,f +8219,3710,14,1,f +8219,3710,7,6,f +8219,3794a,4,4,f +8219,3795,7,1,f +8219,3832,0,1,f +8219,3844,0,1,f +8219,3844,8,1,f +8219,3846p4f,7,5,f +8219,3847,8,1,f +8219,3849,6,3,f +8219,3896,0,2,f +8219,3937,14,3,f +8219,3938,4,3,f +8219,3957a,36,1,f +8219,4070,4,25,f +8219,4083,14,2,f +8219,4085c,4,8,f +8219,4162,0,2,f +8219,4201,2,1,f +8219,4202,2,1,f +8219,4216,4,2,f +8219,4332,6,1,f +8219,4341,0,1,f +8219,4444,8,4,f +8219,4460a,7,4,f +8219,4460a,0,6,f +8219,4490,0,4,f +8219,4490,7,4,f +8219,4491b,1,1,f +8219,4493c01pb01,6,1,f +8219,4493c01pb02,0,1,f +8219,4495b,4,1,f +8219,4495b,14,1,f +8219,4497,6,3,f +8219,4498,6,1,f +8219,4499,6,1,f +8219,4523,6,2,f +8219,4589,0,1,f +8219,4589,4,2,f +8219,4623,0,1,f +8219,4738a,6,1,f +8219,4739a,6,1,f +8219,4865a,4,2,f +8219,59,383,1,f +8219,6027,0,1,f +8219,6028,0,1,f +8219,6046,6,1,f +8219,6056,0,6,f +8219,6066,8,1,f +8219,6072,7,2,f +8219,6106,0,2,f +8219,6107,7,2,f +8219,6108,7,8,f +8219,6111,0,1,f +8219,6111,7,2,f +8219,6112,4,1,f +8219,6112,7,2,f +8219,6122,0,1,f +8219,6123,8,3,f +8219,6124,36,2,f +8219,6125,4,1,f +8219,6126a,57,4,f +8219,6127,0,1,f +8219,6128,0,1,f +8219,6131,0,1,f +8219,6133,57,2,f +8219,6141,33,1,f +8219,6141,0,2,f +8219,6141,14,9,f +8219,6141,46,1,f +8219,6141,34,1,f +8219,6141,36,1,f +8219,6141,47,1,f +8219,6182,7,1,f +8219,6249,4,1,f +8219,6260,15,1,f +8219,6265,15,2,f +8219,6266,15,2,f +8219,6587,8,1,f +8219,75174,0,1,f +8219,75347,0,6,f +8219,87692,4,1,f +8219,87693,4,1,t +8219,87694,4,1,t +8219,970x026,1,1,f +8219,970x026,4,1,f +8219,970x026,8,4,f +8219,973p45c01,8,1,f +8219,973p4dc01,4,1,f +8219,973pb0066c01,7,2,f +8219,973px125c01,4,1,f +8219,973px35c01,0,1,f +8219,973px90c01,0,1,f +8219,bb190pb01,7,1,f +8219,bb190pb02,4,1,f +8219,x376px2,7,1,f +8222,5573-2,89,1,f +8223,30115,4,2,f +8223,30173b,135,2,f +8223,3626bpr0654,78,1,f +8223,3626bpr0655,78,1,f +8223,3626bpr0659,78,1,f +8223,50231,0,1,f +8223,50231,15,1,f +8223,74188,72,3,f +8223,88283,308,1,f +8223,88286,308,1,f +8223,88287,0,1,f +8223,88288pat0001,297,1,f +8223,88290,308,1,f +8223,970c00,308,1,f +8223,970c00,15,1,f +8223,970c00pr0150,0,1,f +8223,973pr1558c01,308,1,f +8223,973pr1559c01,15,1,f +8223,973pr1563c01,308,1,f +8225,3626bpr0388,14,1,f +8225,61976,70,1,f +8225,86035,4,1,f +8225,970c00,0,1,f +8225,973pr1356c01,4,1,f +8227,87577,71,1,f +8228,2357,4,4,f +8228,2412b,72,9,f +8228,2431,71,8,f +8228,2445,72,3,f +8228,2450,71,7,f +8228,2456,71,2,f +8228,2462,71,1,f +8228,2540,71,2,f +8228,2555,72,7,f +8228,2653,71,2,f +8228,2654,71,2,f +8228,2780,0,1,t +8228,2780,0,8,f +8228,3001,4,1,f +8228,3004,71,4,f +8228,3009,19,4,f +8228,3010,19,7,f +8228,30162,72,4,f +8228,3020,71,5,f +8228,3021,71,6,f +8228,3022,71,7,f +8228,3023,71,7,f +8228,3023,19,7,f +8228,3023,72,6,f +8228,3024,320,9,f +8228,3030,71,1,f +8228,3034,72,8,f +8228,3035,72,2,f +8228,30374,71,2,f +8228,30377,71,1,t +8228,30377,71,2,f +8228,30387,14,2,f +8228,30414,0,1,f +8228,30503,72,3,f +8228,30541,4,2,f +8228,3062b,0,3,f +8228,3068b,72,6,f +8228,3069b,40,2,f +8228,3069b,72,1,f +8228,3069b,320,4,f +8228,3069b,71,11,f +8228,3070b,4,3,f +8228,3070b,4,1,t +8228,32064b,4,2,f +8228,3460,71,2,f +8228,3623,71,2,f +8228,3666,72,10,f +8228,3666,71,5,f +8228,3679,71,3,f +8228,3680,4,3,f +8228,3701,0,4,f +8228,3705,0,1,f +8228,3710,71,3,f +8228,3738,4,2,f +8228,3794b,71,4,f +8228,3795,71,7,f +8228,3832,71,3,f +8228,3937,72,1,f +8228,3940b,72,6,f +8228,3941,1,6,f +8228,3943b,71,1,f +8228,3960,71,1,f +8228,4032a,1,6,f +8228,4070,71,10,f +8228,4081b,71,2,f +8228,4150,71,7,f +8228,4150pr0022,71,6,f +8228,41531,71,2,f +8228,4274,1,1,t +8228,4274,1,2,f +8228,43121,71,2,f +8228,43722,72,1,f +8228,43722,71,4,f +8228,43723,71,5,f +8228,44375a,71,2,f +8228,4477,72,3,f +8228,4697b,71,1,t +8228,4697b,71,2,f +8228,4740,72,1,f +8228,48336,4,1,f +8228,50304,71,1,f +8228,50305,71,2,f +8228,54200,72,1,t +8228,54200,72,4,f +8228,54383,71,5,f +8228,54384,71,4,f +8228,60470a,0,1,f +8228,60474,71,1,f +8228,60479,71,4,f +8228,6106,71,7,f +8228,6134,4,1,f +8228,6141,72,15,f +8228,6141,72,1,t +8228,6190,72,2,f +8228,6564,71,1,f +8228,6565,71,2,f +8228,6587,72,2,f +8228,6636,71,4,f +8228,73983,72,1,f +8228,78c14,41,1,f +8231,2412b,15,12,f +8231,2432,14,4,f +8231,2437,40,1,f +8231,2440,15,1,f +8231,2441,0,1,f +8231,2465,15,2,f +8231,2654,71,4,f +8231,2780,0,1,t +8231,2780,0,2,f +8231,30027b,15,4,f +8231,30028,0,4,f +8231,3004,15,6,f +8231,3004,1,4,f +8231,3010,15,2,f +8231,3020,1,2,f +8231,3020,4,9,f +8231,3021,15,2,f +8231,3021,1,2,f +8231,3022,4,5,f +8231,3022,71,4,f +8231,3023,15,7,f +8231,3024,36,2,f +8231,3024,71,2,f +8231,3024,46,2,f +8231,3034,71,3,f +8231,30355,71,1,f +8231,30356,71,1,f +8231,3036,2,1,f +8231,30360,15,2,f +8231,3039,72,2,f +8231,3039pr0013,15,1,f +8231,30503,71,2,f +8231,3068b,15,4,f +8231,3068b,1,5,f +8231,3069bpr0090,72,1,f +8231,3069bpr0101,71,1,f +8231,3183c,71,1,f +8231,32000,72,4,f +8231,32013,14,1,f +8231,32018,71,2,f +8231,32062,0,2,f +8231,32062,4,1,f +8231,32083,15,6,f +8231,32138,71,2,f +8231,32187,71,2,f +8231,3245b,15,2,f +8231,32556,19,1,f +8231,3460,15,4,f +8231,3624,0,1,f +8231,3626bpr0325,14,1,f +8231,3626bpr0389,14,1,f +8231,3626bpr0498,14,1,f +8231,3660,15,4,f +8231,3666,71,2,f +8231,3679,71,1,f +8231,3680,0,1,f +8231,3709,72,1,f +8231,3710,15,5,f +8231,3710,1,6,f +8231,3794b,1,1,f +8231,3795,1,8,f +8231,3829c01,1,1,f +8231,3832,72,3,f +8231,3901,70,1,f +8231,3938,4,1,f +8231,3941,71,1,f +8231,3962b,0,1,f +8231,4019,71,2,f +8231,4032a,72,4,f +8231,4079b,14,7,f +8231,4079b,1,2,f +8231,41334,72,1,f +8231,4162,1,4,f +8231,42610,71,2,f +8231,43093,1,2,f +8231,43337,14,2,f +8231,44302a,72,3,f +8231,4449,70,1,f +8231,44567a,0,3,f +8231,4519,71,1,f +8231,4624,71,6,f +8231,47397,71,1,f +8231,47398,71,1,f +8231,47457,15,1,f +8231,4870,71,2,f +8231,50304,15,1,f +8231,50305,15,1,f +8231,51011,0,2,f +8231,54383,71,1,f +8231,54384,71,1,f +8231,58827,72,1,f +8231,59895,0,6,f +8231,59900,182,1,f +8231,60219,1,6,f +8231,60475a,15,2,f +8231,60601,41,20,f +8231,61345,15,10,f +8231,6141,47,1,t +8231,6141,34,1,f +8231,6141,34,1,t +8231,6141,36,1,t +8231,6141,36,2,f +8231,6141,47,1,f +8231,61483,71,1,f +8231,6231,14,2,f +8231,6238,14,1,f +8231,62462,14,2,f +8231,62462,0,1,f +8231,63965,15,1,f +8231,6628,0,1,f +8231,85984,15,4,f +8231,87079,15,4,f +8231,87082,71,1,f +8231,87611,1,1,f +8231,87612,41,1,f +8231,87613,15,1,f +8231,87614,1,1,f +8231,87615,1,1,f +8231,87616,1,1,f +8231,970c00,0,1,f +8231,970c00,1,1,f +8231,970c00,71,1,f +8231,973pr1166c01,272,1,f +8231,973pr1182c01,25,1,f +8231,973pr1238c01,0,1,f +8232,2335p04,15,1,f +8232,2357,15,1,f +8232,2453a,15,3,f +8232,2462,15,2,f +8232,2518,2,4,f +8232,2524,6,2,f +8232,2525p32,15,1,f +8232,2526,4,1,t +8232,2526,4,2,f +8232,2526,14,1,f +8232,2526,14,1,t +8232,2527,4,1,f +8232,2530,8,3,f +8232,2536,6,4,f +8232,2542,6,2,f +8232,2544,0,1,f +8232,2545,0,2,f +8232,2551,4,1,f +8232,2561,6,2,f +8232,2562,6,1,f +8232,2563,6,1,f +8232,2566,6,1,f +8232,3004,14,2,f +8232,3004,15,1,f +8232,3005,14,5,f +8232,3005,15,5,f +8232,3020,7,2,f +8232,3020,0,1,f +8232,3023,7,4,f +8232,3024,15,1,f +8232,3024,14,2,f +8232,3031,0,1,f +8232,3062b,0,6,f +8232,3062b,2,1,f +8232,3185,7,1,f +8232,3403,0,1,f +8232,3404,0,1,f +8232,3455,14,1,f +8232,3622,15,1,f +8232,3626apb05,14,1,f +8232,3626apr0001,14,2,f +8232,3633,7,3,f +8232,3849,8,1,f +8232,3867p01,7,1,f +8232,3957a,0,1,f +8232,3958,0,1,f +8232,3959,0,1,f +8232,4032a,2,1,f +8232,4070,14,1,f +8232,4085b,14,1,f +8232,4085b,15,1,f +8232,4444,15,2,f +8232,4444p07,15,1,f +8232,84943,8,1,f +8232,970c00,15,3,f +8232,973pb0204c01,15,3,f +8233,2460,14,1,f +8233,3020,14,1,f +8233,3021,72,1,f +8233,3022,0,2,f +8233,3023,47,1,f +8233,3023,14,2,f +8233,30602,40,1,f +8233,3068b,14,1,f +8233,3475b,72,2,f +8233,3710,14,2,f +8233,3747b,14,1,f +8233,3839b,71,1,f +8233,4070,14,2,f +8233,4081b,0,2,f +8233,41862,14,1,f +8233,4286,14,2,f +8233,43722,14,1,f +8233,43723,14,1,f +8233,44302a,14,2,f +8233,44567a,14,2,f +8233,44661,14,1,f +8233,4617b,0,1,f +8233,6141,57,1,t +8233,6141,57,2,f +8234,cloth02,1,1,f +8235,3001,15,2,f +8235,3001,1,1,f +8235,3001,4,2,f +8235,3001,14,2,f +8235,3002,15,2,f +8235,3002,1,2,f +8235,3003,14,3,f +8235,3003,1,4,f +8235,3003,15,2,f +8235,3003,4,2,f +8235,4130,4,1,f +8235,4131,14,1,f +8235,4132,4,1,f +8235,4133,14,1,f +8235,4202,2,1,f +8236,3003pe2,4,1,f +8236,3004,0,3,f +8236,3021,1,1,f +8236,3040b,4,2,f +8236,3298,0,1,f +8236,3660,0,1,f +8237,2206,14,1,f +8237,2301,4,1,f +8237,2302,25,1,f +8237,3011,27,1,f +8237,3011,1,1,f +8237,3011,4,1,f +8237,3011,73,1,f +8237,3011,10,1,f +8237,3437,25,2,f +8237,3437,1,3,f +8237,3437,73,1,f +8237,3437,4,3,f +8237,3437,10,3,f +8237,3437,27,3,f +8237,3437pe1,4,1,f +8237,3437pe1,14,1,f +8237,4066,25,2,f +8237,40666,14,1,f +8237,48835,71,1,f +8237,58057pr03,15,1,f +8237,61649,4,1,f +8237,6394,14,1,f +8237,6510,4,1,f +8237,6510,73,1,f +8238,12057,15,1,f +8238,16874,15,1,f +8238,18652,4,2,f +8238,18814,14,2,f +8238,18816,322,2,f +8238,18823,1,1,f +8238,18825pr0007,9999,1,f +8238,18857,25,2,f +8238,18857,322,1,f +8238,18921,27,1,f +8238,19425,14,1,f +8238,19426,1,1,f +8238,19593,4,2,f +8238,20339,15,1,f +8238,31110,4,2,f +8238,61896,484,1,f +8238,87651,308,1,f +8238,90265,15,1,f +8238,98223,14,2,f +8239,3626bpr0314,14,1,f +8239,3626bpr0499,14,1,f +8239,3626bpr0645,14,1,f +8239,40233,28,1,f +8239,62810,484,1,f +8239,92081,308,1,f +8239,970c00,0,3,f +8239,973pr1184c01,0,3,f +8241,3020,15,3,f +8241,3660,15,1,f +8241,4081b,71,2,f +8241,4081b,71,1,t +8241,43719,71,1,f +8241,6070,143,1,f +8241,6141,4,2,t +8241,6141,4,2,f +8246,10039,0,1,f +8246,11002,0,1,f +8246,2436,14,1,f +8246,30194stk01,9999,1,t +8246,3020,0,1,f +8246,3021,14,1,f +8246,3023,14,2,f +8246,3069b,14,2,f +8246,3622,14,2,f +8246,3795,4,1,f +8246,50951,0,4,f +8246,54200,14,2,f +8246,54200,14,1,t +8246,6141,36,1,t +8246,6141,36,4,f +8246,6231,14,2,f +8246,87079,15,1,f +8246,93590,14,1,f +8246,93591pr0019,14,1,f +8246,93595,72,4,f +8246,98835pr0005,14,1,f +8249,2412b,72,1,f +8249,2431,71,2,f +8249,2431,15,2,f +8249,2436,14,2,f +8249,2456,70,2,f +8249,2460,72,2,f +8249,2540,71,2,f +8249,2654,19,2,f +8249,2694,14,1,f +8249,2694pr0001,40,1,f +8249,2694pr0002,40,1,f +8249,3001,72,2,f +8249,3001,19,2,f +8249,3004,70,6,f +8249,3007,71,1,f +8249,3009,14,2,f +8249,3020,71,1,f +8249,3021,14,4,f +8249,3022,70,1,f +8249,3022,15,2,f +8249,3023,4,4,f +8249,3031,19,1,f +8249,3034,15,2,f +8249,3034,0,1,f +8249,3035,0,2,f +8249,3036,70,2,f +8249,30367b,15,1,f +8249,30372,15,1,f +8249,3039,19,1,f +8249,3040b,19,2,f +8249,30414,14,2,f +8249,30541,0,4,f +8249,3065,47,2,f +8249,30663,0,1,f +8249,3068b,4,2,f +8249,3068b,71,1,f +8249,3068bpr0169,14,1,f +8249,3069b,182,2,f +8249,3069b,36,2,f +8249,3069bpr0112,15,1,f +8249,3070b,71,2,f +8249,3070b,71,1,t +8249,3176,0,1,f +8249,32123b,71,1,t +8249,32123b,71,1,f +8249,32278,0,2,f +8249,32530,72,1,f +8249,3460,15,3,f +8249,3460,0,1,f +8249,3622,72,2,f +8249,3659,71,5,f +8249,3666,0,1,f +8249,3666,72,1,f +8249,3666,14,1,f +8249,3710,19,4,f +8249,3795,14,2,f +8249,3823,40,2,f +8249,3832,14,3,f +8249,3941,15,1,f +8249,4081b,72,2,f +8249,4150p02,14,6,f +8249,4162,72,5,f +8249,41669,4,3,f +8249,41747,15,1,f +8249,41748,15,1,f +8249,41879a,1,1,f +8249,4282,15,1,f +8249,4284,14,6,f +8249,4287,14,2,f +8249,4287,72,6,f +8249,43093,1,1,f +8249,44570,14,2,f +8249,4460b,14,2,f +8249,44728,14,2,f +8249,4477,14,3,f +8249,4477,71,2,f +8249,4515,14,2,f +8249,4599b,71,2,f +8249,4742,0,1,f +8249,47457,72,2,f +8249,48336,14,2,f +8249,48729b,72,1,f +8249,48729b,72,1,t +8249,54200,14,1,t +8249,54200,14,2,f +8249,54383,15,1,f +8249,54384,15,1,f +8249,55982,0,4,f +8249,56891,0,4,f +8249,57585,71,1,f +8249,60470a,0,2,f +8249,6112,0,2,f +8249,6179pr0002,14,1,f +8249,6179pr0003a,14,1,f +8249,63864,14,4,f +8249,64799,14,1,f +8249,6541,72,4,f +8249,6628,0,1,f +8249,6636,14,7,f +8249,6636,71,1,f +8249,6636,0,1,f +8249,76385,15,2,f +8249,85543,15,1,f +8249,87079,4,1,f +8249,87083,72,5,f +8249,87769pr0001,27,1,f +8249,88062pr0001,78,1,f +8249,88064pr0001,15,1,f +8249,88065pr0001,27,2,f +8249,88066,47,1,f +8249,89891pr0001,10,1,f +8249,89895,10,1,f +8249,89898,10,1,f +8249,89899,10,1,f +8249,89993,86,1,f +8249,89994pr0001,78,1,f +8249,970c00pr0162,15,1,f +8249,973pr1532c01,1,1,f +8249,973pr1552c01,15,1,f +8250,27,15,1,f +8250,29,15,1,f +8250,3081cc01,15,1,f +8250,3087c,15,1,f +8250,31cc01,15,1,f +8250,33bc01,15,1,f +8250,453cc01,15,1,f +8250,604c01,15,1,f +8250,645,15,1,f +8250,646,15,1,f +8251,10197,72,2,f +8251,11272,148,1,f +8251,11946,1,1,f +8251,11947,1,1,f +8251,18041,297,1,f +8251,21560,179,2,f +8251,21561pr0002,72,1,f +8251,21562,179,2,f +8251,21938,179,1,f +8251,2343,179,1,f +8251,2780,0,4,f +8251,32034,71,2,f +8251,32039,71,3,f +8251,32062,4,6,f +8251,32123b,71,2,f +8251,41669,179,2,f +8251,41677,71,1,f +8251,43093,1,6,f +8251,43857,0,1,f +8251,4519,71,2,f +8251,48729b,72,2,f +8251,59900,71,2,f +8251,59900,179,3,f +8251,60483,72,1,f +8251,61184,71,1,f +8251,6553,71,2,f +8251,6558,1,1,f +8251,6587,28,1,f +8251,74261,72,2,f +8251,87083,72,1,f +8251,90607,0,2,f +8251,90608,72,2,f +8251,90609,0,2,f +8251,90615,72,2,f +8251,90623,0,1,f +8251,90638pr0002,379,2,f +8251,90639,379,2,f +8251,90640,179,3,f +8251,90641,179,2,f +8251,90661,179,2,f +8251,92907,71,2,f +8251,92907,70,2,f +8251,93575,0,2,f +8251,98577,72,1,f +8252,122c01,0,2,f +8252,2446,15,1,f +8252,2447,36,1,f +8252,2447,36,1,t +8252,298c02,0,1,t +8252,298c02,0,2,f +8252,3020,0,1,f +8252,3022,0,1,f +8252,3039,1,1,f +8252,3298p53,0,1,f +8252,3626apr0001,14,1,f +8252,3787,0,2,f +8252,3832,0,1,f +8252,3838,0,1,f +8252,3937,1,1,f +8252,3938,0,1,f +8252,3957a,0,2,f +8252,4070,1,2,f +8252,4288,0,4,f +8252,4590,0,1,f +8252,4740,36,2,f +8252,4859,1,1,f +8252,4873,0,1,f +8252,6141,36,2,f +8252,970x026,15,1,f +8252,973p6bc01,15,1,f +8255,2357,72,2,f +8255,2419,272,1,f +8255,2420,0,2,f +8255,2446pr23,0,2,f +8255,2488,0,1,f +8255,2540,0,5,f +8255,2555,1,1,f +8255,2555,0,1,f +8255,2736,71,2,f +8255,30031,0,1,f +8255,30088,72,2,f +8255,30090,41,2,f +8255,30091,72,2,f +8255,30093,34,1,f +8255,3020,72,1,f +8255,3021,0,1,f +8255,3022,0,3,f +8255,30228,72,1,f +8255,3023,71,11,f +8255,3024,71,1,f +8255,3032,72,1,f +8255,3034,0,1,f +8255,3040b,72,4,f +8255,30414,72,2,f +8255,30553,0,1,f +8255,3068b,1,1,f +8255,3069b,72,3,f +8255,3070b,72,1,f +8255,3070b,72,1,t +8255,32000,71,2,f +8255,32034,0,1,f +8255,32556,71,1,f +8255,3475b,14,2,f +8255,3626bpr0325,14,1,f +8255,3626bpr0433,14,1,f +8255,3700,72,1,f +8255,3710,4,1,f +8255,3747a,0,1,f +8255,3794a,14,1,f +8255,3794a,1,1,f +8255,3795,0,4,f +8255,3839b,0,1,f +8255,40379,21,2,f +8255,4085c,4,10,f +8255,43093,1,1,t +8255,43093,1,1,f +8255,44126,272,1,f +8255,44567a,0,1,f +8255,4460a,72,1,f +8255,44661pr0001,14,1,f +8255,44675,14,1,f +8255,44676,1,2,f +8255,44676,0,2,f +8255,4589,34,1,f +8255,4589,42,1,f +8255,47457,14,1,f +8255,47457,1,1,f +8255,47753,272,2,f +8255,47759,272,4,f +8255,47759pr03,272,1,f +8255,48183,1,1,f +8255,48336,71,1,f +8255,4865a,71,1,f +8255,53451,15,8,f +8255,53451,15,1,t +8255,57503,334,1,f +8255,57504,334,1,f +8255,57505,334,1,f +8255,57506,334,1,f +8255,59275,0,4,f +8255,6019,72,4,f +8255,970c00,0,2,f +8255,973pr1300c01,0,2,f +8256,2825,7,6,f +8256,2905,7,2,f +8256,6536,7,2,f +8256,6632,7,2,f +8257,11090,70,3,f +8257,11437,70,2,f +8257,11477,70,5,f +8257,11609,484,1,t +8257,11609,484,2,f +8257,11816pr0026,84,1,f +8257,11816pr0028,78,1,f +8257,13459,0,1,f +8257,13965,70,1,f +8257,14716,19,3,f +8257,14718,27,1,f +8257,14769,30,3,f +8257,14769pr1016,27,1,f +8257,15068,10,6,f +8257,15254,19,1,f +8257,15535,19,2,f +8257,15573,72,1,f +8257,15573,70,4,f +8257,15672,72,1,f +8257,16577,19,1,f +8257,18651,0,1,f +8257,18674,70,1,f +8257,19119,2,1,f +8257,19204pr0001,320,1,f +8257,19206pr0002,158,1,f +8257,20379pr0004,27,1,f +8257,20381pr0002,191,1,f +8257,20482,47,1,t +8257,20482,47,1,f +8257,22667,26,1,t +8257,22667,26,1,f +8257,22888,19,1,f +8257,2357,70,3,f +8257,23986,5,1,f +8257,24130,182,1,f +8257,24132,182,1,f +8257,2417,26,1,f +8257,2423,5,4,f +8257,2431,85,1,f +8257,2453b,70,2,f +8257,2454b,19,2,f +8257,25753,9999,1,f +8257,26090pr0002,191,1,f +8257,3001,72,2,f +8257,3004,19,2,f +8257,30044,70,2,f +8257,30046,297,3,f +8257,3005,84,4,f +8257,3005,70,1,f +8257,3009,70,1,f +8257,3009,19,1,f +8257,3010,70,1,f +8257,30153,52,5,f +8257,30153,47,1,f +8257,3020,26,3,f +8257,3020,288,3,f +8257,3021,0,1,f +8257,3021,288,2,f +8257,3022,72,2,f +8257,3023,28,2,f +8257,3023,0,3,f +8257,3023,288,5,f +8257,30237b,70,1,f +8257,3024,70,6,f +8257,3024,70,2,t +8257,3030,28,1,f +8257,3032,2,1,f +8257,3032,70,1,f +8257,30357,2,3,f +8257,30385,143,3,f +8257,3040b,72,1,f +8257,3040b,70,1,f +8257,3045,31,2,f +8257,3062b,70,11,f +8257,3065,45,5,f +8257,3068b,10,2,f +8257,3068b,272,1,f +8257,3068bpr0291,19,1,f +8257,3069b,71,2,f +8257,3069b,191,1,f +8257,3069b,0,2,f +8257,3069b,19,3,f +8257,32013,297,1,f +8257,32073,71,1,f +8257,33291,191,6,f +8257,33291,191,2,t +8257,3622,70,4,f +8257,3623,72,4,f +8257,3623,0,2,f +8257,3633,297,1,f +8257,3659,308,2,f +8257,3659,72,1,f +8257,3660,72,2,f +8257,3665,70,4,f +8257,3666,288,1,f +8257,3666,70,1,f +8257,3679,71,1,f +8257,3680,0,1,f +8257,3709,72,1,f +8257,3710,288,4,f +8257,3710,26,1,f +8257,3710,10,2,f +8257,3742,5,4,f +8257,3899,45,1,f +8257,3937,72,2,f +8257,3938,0,2,f +8257,3941,70,2,f +8257,4032a,70,4,f +8257,4032a,484,2,f +8257,4162,0,1,f +8257,4274,71,2,t +8257,4274,71,2,f +8257,4286,72,2,f +8257,43888,70,1,f +8257,4449,70,1,f +8257,4528,297,1,f +8257,49668,288,2,f +8257,50950,19,2,f +8257,50950,10,4,f +8257,54200,70,1,t +8257,54200,143,6,f +8257,54200,143,2,t +8257,54200,70,2,f +8257,59900,26,3,f +8257,59900,15,1,f +8257,60475b,72,3,f +8257,60478,70,2,f +8257,60481,31,5,f +8257,60583b,19,1,f +8257,60592,70,3,f +8257,60593,70,2,f +8257,60594,0,1,f +8257,60601pb013,47,3,f +8257,60614,30,2,f +8257,60897,0,2,f +8257,6141,27,1,f +8257,6141,297,2,t +8257,6141,15,1,t +8257,6141,297,7,f +8257,6141,27,1,t +8257,6141,15,3,f +8257,62808,297,2,f +8257,64390,30,1,f +8257,64647,182,3,f +8257,64647,15,1,t +8257,64647,182,3,t +8257,64647,15,1,f +8257,6536,15,1,f +8257,6541,0,2,f +8257,6541,71,1,f +8257,73983,288,2,f +8257,85975,297,1,f +8257,85984,10,4,f +8257,85984,15,3,f +8257,87079,26,3,f +8257,87079,72,1,f +8257,87087,70,8,f +8257,87580,85,1,f +8257,87580,27,1,f +8257,87994,70,1,f +8257,87994,70,1,t +8257,88072,0,6,f +8257,92280,0,2,f +8257,92438,2,1,f +8257,92456pr0090c01,84,1,f +8257,92456pr0092c01,78,1,f +8257,92593,0,1,f +8257,92950,72,1,f +8257,95228,34,1,f +8257,98138,45,1,t +8257,98138,34,1,f +8257,98138,45,1,f +8257,98138,34,1,t +8257,98138,36,1,t +8257,98138,27,1,t +8257,98138,27,2,f +8257,98138,36,1,f +8257,98138pr0048,70,1,t +8257,98138pr0048,70,2,f +8257,98138pr0051,297,1,f +8257,98138pr0051,297,1,t +8257,98283,84,4,f +8257,99207,0,1,f +8257,99780,72,4,f +8258,3001,14,1,f +8258,3002,14,1,f +8258,3002,0,1,f +8258,3003,4,1,f +8258,3003,0,4,f +8258,3003,14,7,f +8258,3003pe1,14,1,f +8259,11211,15,2,f +8259,11408pr0015c01,78,1,f +8259,11476,71,1,f +8259,11477,19,2,f +8259,11610,19,1,f +8259,11618,26,1,t +8259,11618,26,1,f +8259,11816pr0006,78,1,f +8259,14014pr0002,78,1,f +8259,14769,27,1,f +8259,14769pr0001,15,1,f +8259,15395,2,1,f +8259,15470,70,1,t +8259,15470,70,2,f +8259,15573,19,2,f +8259,15573,27,2,f +8259,15712,71,1,f +8259,16985pr0001b,272,1,f +8259,18674,15,1,f +8259,18674,72,1,f +8259,22667,26,1,f +8259,22667,26,1,t +8259,23969,71,1,f +8259,23969,47,4,f +8259,2412b,179,2,f +8259,2420,27,2,f +8259,2431,72,2,f +8259,2431,15,1,f +8259,2431,26,2,f +8259,2453b,15,2,f +8259,2454a,15,2,f +8259,2456,19,1,f +8259,2496,0,2,f +8259,2655,71,2,f +8259,2921,15,1,f +8259,3001,71,1,f +8259,3001,15,2,f +8259,3001,27,1,f +8259,3002,15,1,f +8259,3003,71,1,f +8259,3003,15,2,f +8259,3003,27,1,f +8259,3004,26,3,f +8259,3004,191,1,f +8259,3005,15,1,f +8259,3005,26,2,f +8259,3005,47,1,f +8259,3005pr0006,73,1,f +8259,3005pr17,27,1,f +8259,3010,26,3,f +8259,3010,191,2,f +8259,3010,15,3,f +8259,3010,71,2,f +8259,30150,84,1,f +8259,3020,322,1,f +8259,3020,70,1,f +8259,3020,26,1,f +8259,3020,2,1,f +8259,3020,4,1,f +8259,3020,191,1,f +8259,3021,27,1,f +8259,3022,2,2,f +8259,3022,72,1,f +8259,3022,0,1,f +8259,3022,15,1,f +8259,3022,191,3,f +8259,3023,15,3,f +8259,3023,191,1,f +8259,3023,322,1,f +8259,3023,36,1,f +8259,3023,27,3,f +8259,3023,70,2,f +8259,3031,27,1,f +8259,3031,19,1,f +8259,3032,19,1,f +8259,3039pr0020,15,1,f +8259,3040b,191,3,f +8259,3040b,26,2,f +8259,3040b,15,2,f +8259,30562,47,2,f +8259,30565,27,2,f +8259,3062b,36,1,f +8259,3062b,70,2,f +8259,3068b,15,1,f +8259,3068bpr0201,15,1,f +8259,3068bpr0255,15,1,f +8259,3069b,15,1,f +8259,3069bpr0100,2,1,f +8259,3069bpr0168,70,2,f +8259,3070b,15,4,f +8259,3070b,15,2,t +8259,32028,71,1,f +8259,3245b,19,1,f +8259,33057,484,1,f +8259,33172,25,1,f +8259,33183,10,1,t +8259,33183,10,1,f +8259,33243,191,2,f +8259,33291,10,2,t +8259,33291,26,3,f +8259,33291,4,2,f +8259,33291,10,10,f +8259,33291,26,1,t +8259,33291,4,1,t +8259,3460,15,2,f +8259,3622,15,2,f +8259,3623,191,3,f +8259,3626b,25,1,f +8259,3626cpr1296a,14,1,f +8259,3660,322,2,f +8259,3660,4,2,f +8259,3666,27,3,f +8259,3679,71,1,f +8259,3680,15,1,f +8259,3710,27,1,f +8259,3741,2,1,f +8259,3741,2,1,t +8259,3742,4,4,f +8259,3794b,71,3,f +8259,3830,71,1,f +8259,3831,71,1,f +8259,3852b,322,1,f +8259,3941,15,2,f +8259,3957a,15,1,f +8259,4083,15,1,f +8259,41118stk01,9999,1,f +8259,44676,15,1,f +8259,44728,15,1,f +8259,4477,26,2,f +8259,4533,41,1,f +8259,46212,47,2,f +8259,48092,191,2,f +8259,4865b,41,2,f +8259,4865b,47,2,f +8259,4865b,71,2,f +8259,48729b,72,1,f +8259,48729b,72,1,t +8259,50950,191,2,f +8259,54200,14,1,f +8259,54200,14,1,t +8259,59349,47,1,f +8259,59349,15,1,f +8259,59900,52,1,f +8259,59900,40,2,f +8259,60475b,15,3,f +8259,60596,15,2,f +8259,60616a,47,2,f +8259,60897,70,1,f +8259,6091,71,4,f +8259,6091,191,4,f +8259,6091,4,2,f +8259,6091,226,4,f +8259,6091,15,2,f +8259,6091,26,2,f +8259,6141,41,1,f +8259,6141,71,1,t +8259,6141,71,4,f +8259,6141,27,2,t +8259,6141,70,1,f +8259,6141,14,1,t +8259,6141,15,1,t +8259,6141,41,1,t +8259,6141,15,2,f +8259,6141,4,2,t +8259,6141,47,2,f +8259,6141,2,2,f +8259,6141,47,1,t +8259,6141,4,4,f +8259,6141,14,2,f +8259,6141,70,1,t +8259,6141,27,8,f +8259,6141,2,1,t +8259,6231,15,4,f +8259,6254,27,1,f +8259,63864,322,2,f +8259,63864,71,1,f +8259,63965,15,2,f +8259,64648,25,1,f +8259,6636,191,1,f +8259,85984,4,1,f +8259,85984,15,2,f +8259,85984,85,1,f +8259,87079,15,3,f +8259,87087,15,2,f +8259,87552,15,1,f +8259,87580,322,1,f +8259,87580,19,1,f +8259,91405,31,1,f +8259,92257,320,1,f +8259,92410,15,1,f +8259,92438,31,1,f +8259,92456pr0036c01,78,1,f +8259,92818pr0012c01,322,1,f +8259,93092,191,1,f +8259,93094,5,1,t +8259,93094,5,1,f +8259,93273,191,1,f +8259,98138,15,2,f +8259,98138,25,2,f +8259,98138,29,1,t +8259,98138,25,1,t +8259,98138,15,1,t +8259,98138,29,1,f +8259,98138pr0017,29,1,t +8259,98138pr0017,29,1,f +8259,98138pr0018,84,1,t +8259,98138pr0018,84,2,f +8259,98138pr0024a,179,1,f +8259,98138pr0024a,179,1,t +8259,98138pr0049,0,1,t +8259,98138pr0049,0,2,f +8259,98138pr0050,19,2,f +8259,98138pr0050,19,1,t +8259,98385,70,1,f +8259,98397,71,1,f +8259,99780,15,1,f +8259,99781,71,1,f +8261,11293,2,1,f +8261,11295,72,1,f +8261,11297,41,1,f +8261,14718,15,4,f +8261,15068,2,2,f +8261,15068,15,4,f +8261,19220,0,1,f +8261,2412b,71,2,f +8261,2431,14,2,f +8261,2436,14,1,f +8261,2441,0,1,f +8261,2445,0,1,f +8261,2495,4,1,f +8261,2496,0,1,f +8261,30028,0,4,f +8261,3003,2,1,f +8261,3003,71,1,f +8261,3004,14,1,f +8261,3021,71,1,f +8261,3022,0,1,f +8261,3022,4,1,f +8261,3022,14,2,f +8261,3023,0,6,f +8261,3024,34,2,f +8261,3024,36,2,f +8261,3029,0,1,f +8261,3031,14,1,f +8261,3033,72,1,f +8261,3034,15,1,f +8261,30355,71,1,f +8261,30356,71,1,f +8261,30383,72,2,f +8261,3068b,0,1,f +8261,3068b,4,1,f +8261,3068b,2,1,f +8261,3068b,71,2,f +8261,3069b,15,1,f +8261,3069b,71,1,f +8261,3069b,2,1,f +8261,3623,72,2,f +8261,3624,0,1,f +8261,3626bpr0389,14,1,f +8261,3626cpr1664,14,1,f +8261,3665,15,4,f +8261,3665,2,2,f +8261,3666,71,4,f +8261,3666,15,1,f +8261,3710,14,1,f +8261,3795,14,1,f +8261,3829c01,14,1,f +8261,3829c01,15,1,f +8261,3832,2,1,f +8261,3832,71,1,f +8261,3833,4,1,f +8261,3899,4,1,f +8261,3957a,71,1,f +8261,3958,15,1,f +8261,43121,71,2,f +8261,43722,2,1,f +8261,43722,15,1,f +8261,43723,15,1,f +8261,43723,2,1,f +8261,44302a,71,2,f +8261,44567a,71,1,f +8261,4624,71,6,f +8261,46667,0,2,f +8261,47457,71,2,f +8261,4870,71,2,f +8261,52501,72,2,f +8261,54383,71,1,f +8261,54384,71,1,f +8261,59895,0,6,f +8261,60219,72,1,f +8261,60475b,14,2,f +8261,6111,2,2,f +8261,6141,182,1,f +8261,61483,71,1,f +8261,6239,15,1,f +8261,63868,15,2,f +8261,6636,15,1,f +8261,6636,71,4,f +8261,74967,71,4,f +8261,85984,14,1,f +8261,87079,71,2,f +8261,87079,2,2,f +8261,87552,15,2,f +8261,88930,15,2,f +8261,92099,72,1,f +8261,92950,15,2,f +8261,970c00,73,1,f +8261,970c00,0,1,f +8261,973pr2998c01,25,1,f +8261,973pr3370c01,15,1,f +8261,98138,36,2,f +8261,98138,46,1,f +8262,11214,72,2,f +8262,11477,85,6,f +8262,15573,0,2,f +8262,15712,0,10,f +8262,18957pat0002,19,1,f +8262,18962,19,1,f +8262,2412b,0,2,f +8262,2419,0,1,f +8262,2420,72,2,f +8262,2456,0,1,f +8262,2780,0,2,f +8262,2780,0,1,t +8262,30173b,297,2,f +8262,30176,2,1,f +8262,3020,28,1,f +8262,3021,72,1,f +8262,3022,0,1,f +8262,3023,85,9,f +8262,3032,72,2,f +8262,3034,71,2,f +8262,3035,71,1,f +8262,3039,19,1,f +8262,30602,0,1,f +8262,3062b,0,2,f +8262,3069b,4,1,f +8262,32000,15,1,f +8262,32015,0,2,f +8262,32039,71,1,f +8262,32062,4,3,f +8262,32064a,0,4,f +8262,32123b,14,6,f +8262,32123b,14,2,t +8262,32125,71,2,f +8262,32348,72,2,f +8262,32530,72,1,f +8262,3626cpr1365,14,1,f +8262,3626cpr1568,14,1,f +8262,3639,72,1,f +8262,3640,72,1,f +8262,3666,0,4,f +8262,3673,71,1,t +8262,3673,71,1,f +8262,3700,72,6,f +8262,3701,0,3,f +8262,3713,4,1,t +8262,3713,4,2,f +8262,3747a,0,1,f +8262,3749,19,2,f +8262,3795,28,2,f +8262,3839b,15,1,f +8262,3937,15,1,f +8262,3960pr0017b,28,2,f +8262,4006,0,1,f +8262,4175,72,2,f +8262,4274,71,1,t +8262,4274,71,4,f +8262,43093,1,2,f +8262,43710,28,1,f +8262,43711,28,1,f +8262,43722,28,3,f +8262,43723,28,3,f +8262,44301a,0,2,f +8262,44302a,15,2,f +8262,4477,0,2,f +8262,47456,85,2,f +8262,48336,0,1,f +8262,49668,15,4,f +8262,53451,15,1,t +8262,53451,15,11,f +8262,54200,72,2,f +8262,54200,28,1,t +8262,54200,85,1,t +8262,54200,72,1,t +8262,54200,85,4,f +8262,54200,28,2,f +8262,59426,72,2,f +8262,59895,0,1,t +8262,59895,0,2,f +8262,59900,36,2,f +8262,59900,182,4,f +8262,60470a,15,1,f +8262,60476,0,2,f +8262,60485,71,1,f +8262,60752,28,6,f +8262,60897,15,8,f +8262,60897,4,2,f +8262,61184,71,2,f +8262,6126b,182,2,f +8262,6134,4,1,f +8262,6260,15,2,f +8262,63868,71,2,f +8262,64711,72,2,f +8262,64867,28,1,f +8262,6536,4,1,f +8262,87079,0,1,f +8262,87620,28,4,f +8262,87747,15,3,f +8262,87747,15,1,t +8262,88072,71,1,f +8262,88289,308,1,f +8262,88290,308,1,f +8262,970c00pr0767,85,1,f +8262,970c00pr0776,4,1,f +8262,973pr2852c01,14,1,f +8262,973pr2853c01,4,1,f +8262,98133pr0014,4,1,f +8262,98283,28,2,f +8262,99008,19,2,f +8263,20494pr0001,14,1,f +8263,88646,0,1,f +8263,93549pat01,47,1,f +8263,970c00pr0836,5,1,f +8263,973pr2980c01,15,1,f +8265,3626bpr0779,70,1,f +8265,88646,0,1,f +8265,93160,15,1,f +8265,93230pr0002,308,1,f +8265,970c00pr0213,379,1,f +8265,973pr1766c01,15,1,f +8267,2540,8,1,f +8267,30141,8,1,f +8267,30148,0,1,f +8267,30172,15,1,f +8267,3022,19,1,f +8267,3031,0,1,f +8267,3069bpa3,15,1,f +8267,3626bpa1,14,1,f +8267,3660,7,1,f +8267,3673,7,1,f +8267,3710,2,1,f +8267,3794a,2,2,f +8267,3794a,4,2,f +8267,3837,8,1,f +8267,4070,4,2,f +8267,4085c,4,2,f +8267,4599a,4,1,f +8267,4617b,0,1,f +8267,6019,7,2,f +8267,6141,47,1,f +8267,6141,47,1,t +8267,75535,15,1,f +8267,970c00,2,1,f +8267,973pa1c01,15,1,f +8268,10048,84,1,f +8268,10053,179,1,t +8268,10053,179,1,f +8268,10055pr0001,70,1,f +8268,10055pr0001,308,1,f +8268,11010,334,2,t +8268,11010,334,1,f +8268,11156,297,2,f +8268,11156,297,1,t +8268,11423pr0001,71,1,f +8268,11900,484,1,f +8268,12825,72,1,f +8268,15207,70,5,f +8268,2357,19,3,f +8268,2412b,70,12,f +8268,2420,70,4,f +8268,2454a,19,2,f +8268,2460,72,1,f +8268,2476a,28,1,f +8268,2489,308,3,f +8268,3002,19,1,f +8268,3003,19,7,f +8268,3005,19,9,f +8268,3009,19,1,f +8268,3010,0,1,f +8268,3010,19,3,f +8268,30136,19,19,f +8268,30139,70,3,f +8268,3020,72,1,f +8268,3021,19,3,f +8268,3022,70,3,f +8268,3022,72,2,f +8268,3023,70,3,f +8268,3023,28,12,f +8268,3023,0,1,f +8268,30237a,70,7,f +8268,3028,28,1,f +8268,3030,72,1,f +8268,3030,28,1,f +8268,3031,70,2,f +8268,3032,70,1,f +8268,3032,72,1,f +8268,3034,28,5,f +8268,3036,28,2,f +8268,30374,70,1,f +8268,3039,19,3,f +8268,3040b,19,6,f +8268,30414,19,2,f +8268,3069b,28,13,f +8268,3069bpr0055,15,1,f +8268,32014,72,2,f +8268,32064a,72,2,f +8268,33061,34,2,f +8268,3307,19,2,f +8268,3460,72,2,f +8268,3622,19,6,f +8268,3623,72,2,f +8268,3626cpr1003,78,1,f +8268,3626cpr1081,78,1,f +8268,3626cpr1099,78,1,f +8268,3626cpr1101,78,1,f +8268,3626cpr1111,78,1,f +8268,3659,19,4,f +8268,3659,0,2,f +8268,3700,19,3,f +8268,3700,70,2,f +8268,3705,0,1,f +8268,3710,72,1,f +8268,3710,19,3,f +8268,3710,70,3,f +8268,3713,4,2,f +8268,3713,4,1,t +8268,3747b,71,1,f +8268,3794b,70,4,f +8268,3795,70,1,f +8268,3795,28,2,f +8268,3830,70,4,f +8268,3831,70,4,f +8268,3958,28,3,f +8268,3960,70,1,f +8268,40243,72,8,f +8268,40244,0,1,f +8268,4032a,308,2,f +8268,4032a,70,2,f +8268,4081b,0,1,f +8268,4162,70,1,f +8268,41879a,28,2,f +8268,41879a,308,1,f +8268,4274,1,2,f +8268,4274,1,2,t +8268,44728,72,2,f +8268,4599b,0,2,f +8268,4599b,0,2,t +8268,48336,19,2,f +8268,4865a,19,1,f +8268,53705,132,3,f +8268,54200,70,1,t +8268,54200,70,2,f +8268,59900,182,2,f +8268,59900,70,8,f +8268,60596,0,4,f +8268,60621,71,2,f +8268,60808,19,2,f +8268,6108,70,2,f +8268,6111,19,1,f +8268,6141,297,1,t +8268,6141,72,1,t +8268,6141,72,2,f +8268,6141,297,6,f +8268,62808,297,1,t +8268,62808,297,1,f +8268,63868,71,2,f +8268,63965,70,1,f +8268,63965,70,1,t +8268,64644,308,3,f +8268,64647,57,1,t +8268,64647,57,2,f +8268,6541,72,1,f +8268,6587,28,4,f +8268,6632,0,2,f +8268,6636,28,2,f +8268,6636,0,1,f +8268,87087,19,8,f +8268,87618,0,1,f +8268,87994,70,1,f +8268,90391pr01,70,1,f +8268,92589,71,2,f +8268,92946,72,2,f +8268,92950,19,2,f +8268,93231,70,1,f +8268,95228,40,6,f +8268,96874,25,1,t +8268,970c00,308,1,f +8268,970c00pr0456,308,1,f +8268,973pr2179c01,320,1,f +8268,973pr2207c01,70,1,f +8268,973pr2209c01,320,1,f +8268,973pr2217c01,326,1,f +8268,973pr2219c01,320,1,f +8268,99464,72,1,f +8269,2431,1,1,f +8269,2432,15,1,f +8269,2540,15,1,f +8269,3005,41,2,f +8269,3010,7,2,f +8269,30136,8,4,f +8269,30157,8,2,f +8269,3020,1,1,f +8269,3020,15,1,f +8269,3021,15,2,f +8269,3022,15,2,f +8269,3023,1,4,f +8269,3023,15,1,f +8269,30236,0,1,f +8269,3024,46,4,f +8269,3024,36,4,f +8269,3024,46,1,t +8269,3024,36,1,t +8269,3032,1,3,f +8269,3032,0,1,f +8269,3035,7,2,f +8269,30365,8,2,f +8269,30383,8,2,f +8269,3069b,15,2,f +8269,3069b,0,3,f +8269,3297,15,1,f +8269,3460,15,2,f +8269,3483,0,4,f +8269,3622,1,2,f +8269,3626bp03,14,1,f +8269,3626bp05,14,1,f +8269,3626bpa3,14,1,f +8269,3626bpr0001,14,2,f +8269,3626bpx19,14,1,f +8269,3665,7,2,f +8269,3666,0,1,f +8269,3666,1,1,f +8269,3710,15,6,f +8269,3795,15,2,f +8269,3795,0,2,f +8269,3829c01,0,1,f +8269,3855,41,7,f +8269,3901,0,2,f +8269,3901,19,1,f +8269,3901,6,2,f +8269,4085c,7,2,f +8269,4162,7,4,f +8269,4176,41,2,f +8269,4282,7,1,f +8269,4287,7,2,f +8269,4349,0,2,f +8269,4485,15,1,f +8269,6112,1,2,f +8269,6248,7,4,f +8269,6556,15,7,f +8269,72824p01,15,1,f +8269,970c00,1,5,f +8269,970c00,0,1,f +8269,973c01,15,5,f +8269,973c12,2,1,f +8269,bb80pb01,15,1,f +8273,1197stk01,9999,1,t +8273,2446,0,2,f +8273,2447,41,2,f +8273,2447,41,1,t +8273,30187a,0,1,f +8273,30187c01,0,1,t +8273,30189,0,1,f +8273,30190,15,1,f +8273,3023,42,1,f +8273,3024,36,1,f +8273,3069bp02,7,1,f +8273,3626bp05,14,1,f +8273,3626bpr0001,14,1,f +8273,3626bpr0098,14,1,f +8273,4360,0,1,f +8273,4485,0,1,f +8273,4719,5,1,f +8273,6014a,15,2,f +8273,6015,0,3,f +8273,6141,47,1,t +8273,6141,47,1,f +8273,92851,47,2,f +8273,970c00,0,3,f +8273,973c03,13,1,f +8273,973pb0028c01,0,2,f +8275,11127,41,1,f +8275,12551pr0005,308,1,f +8275,2540,71,2,f +8275,3623,4,2,f +8275,3626cpr1143,308,1,f +8275,3795,19,1,f +8275,3829c01,4,1,f +8275,3937,4,1,f +8275,4085c,4,2,f +8275,43713,72,1,f +8275,44675,71,1,f +8275,4871,72,1,f +8275,53451,15,2,f +8275,53451,15,1,t +8275,6134,4,1,f +8275,87079,326,1,f +8275,93273,326,2,f +8275,970c00pr0438,70,1,f +8275,973pr2248c01,70,1,f +8276,2357,4,2,f +8276,2362a,15,2,f +8276,2412b,7,1,f +8276,2420,1,2,f +8276,2420,15,4,f +8276,2420,14,8,f +8276,2420,4,2,f +8276,2432,0,1,f +8276,2436,4,1,f +8276,2436,1,1,f +8276,2439,8,3,f +8276,2441,4,1,f +8276,2445,1,1,f +8276,2453a,4,6,f +8276,2465,4,2,f +8276,2495,4,1,f +8276,2496,0,1,f +8276,2580c01,4,3,f +8276,2635a,14,1,f +8276,2648,4,2,f +8276,2649,0,2,f +8276,2653,14,18,f +8276,2873,1,1,f +8276,2877,15,1,f +8276,2878c01,0,4,f +8276,2920,0,2,f +8276,2927,0,8,f +8276,3001,14,1,f +8276,3002,4,2,f +8276,3003,14,2,f +8276,3003,4,2,f +8276,3004,14,2,f +8276,3004,4,1,f +8276,3004,6,4,f +8276,3004,0,1,f +8276,3005,15,2,f +8276,3005,4,2,f +8276,3008,4,1,f +8276,3008,14,2,f +8276,3009,4,2,f +8276,3010,4,3,f +8276,3010,15,3,f +8276,3020,15,1,f +8276,3020,7,1,f +8276,3020,14,1,f +8276,3021,7,5,f +8276,3022,7,7,f +8276,3022,1,1,f +8276,3022,4,1,f +8276,3023,0,4,f +8276,3023,1,1,f +8276,3023,4,4,f +8276,3023,7,4,f +8276,3024,4,7,f +8276,3027,0,1,f +8276,3032,1,1,f +8276,3034,4,3,f +8276,3034,14,1,f +8276,3034,1,1,f +8276,3035,15,1,f +8276,3035,14,2,f +8276,3035,0,1,f +8276,3036,14,1,f +8276,3039,14,2,f +8276,3039,4,2,f +8276,3039p12,0,1,f +8276,3039p23,15,1,f +8276,3040b,4,4,f +8276,3069b,15,3,f +8276,3069b,7,8,f +8276,3069bp80,15,1,f +8276,3176,4,1,f +8276,3228b,7,8,f +8276,3297,15,1,f +8276,3299,4,1,f +8276,3456,4,1,f +8276,3456,0,1,f +8276,3460,14,18,f +8276,3464,4,2,f +8276,3624,4,1,f +8276,3626bp03,14,1,f +8276,3626bp04,14,1,f +8276,3626bpr0001,14,1,f +8276,3641,0,4,f +8276,3666,4,1,f +8276,3710,1,1,f +8276,3710,14,2,f +8276,3741,2,2,f +8276,3741,2,1,t +8276,3742,14,6,f +8276,3742,14,2,t +8276,3747a,1,4,f +8276,3754,4,2,f +8276,3787,4,2,f +8276,3794a,7,2,f +8276,3795,4,2,f +8276,3795,1,1,f +8276,3795,0,2,f +8276,3821,15,1,f +8276,3822,15,1,f +8276,3823,41,1,f +8276,3829c01,15,1,f +8276,3829c01,4,1,f +8276,3832,14,1,f +8276,3832,4,1,f +8276,3833,15,1,f +8276,3839b,0,1,f +8276,3857,7,1,f +8276,3899,15,2,f +8276,3937,14,1,f +8276,3938,0,1,f +8276,3962b,0,1,f +8276,4022,0,2,f +8276,4025,0,2,f +8276,4070,15,2,f +8276,4079,14,3,f +8276,4162,7,4,f +8276,4162,15,2,f +8276,4211,1,1,f +8276,4213,1,1,f +8276,4214,1,1,f +8276,4215b,14,2,f +8276,4215b,15,4,f +8276,425p01,7,1,f +8276,4282,0,1,f +8276,4282,14,3,f +8276,4282,4,1,f +8276,4286,4,2,f +8276,4315,1,1,f +8276,4477,4,2,f +8276,4485,15,1,f +8276,4510,4,2,f +8276,4555stk01,9999,1,t +8276,4589,7,8,f +8276,4600,0,3,f +8276,4624,7,4,f +8276,4740,8,3,f +8276,4865a,15,2,f +8276,4865a,7,6,f +8276,4865a,0,1,f +8276,4870,7,4,f +8276,56823c50,0,1,f +8276,6014a,15,6,f +8276,6015,0,6,f +8276,6111,4,2,f +8276,6141,0,3,f +8276,6141,36,1,t +8276,6141,46,4,f +8276,6141,46,1,t +8276,6141,7,2,f +8276,6141,36,2,f +8276,6141,0,1,t +8276,6141,7,1,t +8276,6160c01,15,7,f +8276,6546,15,4,f +8276,6556,15,2,f +8276,6576,1,1,f +8276,6576,14,2,f +8276,6583,7,2,f +8276,6583,4,2,f +8276,6584,1,1,f +8276,73037,4,1,f +8276,73092,0,2,f +8276,73194c01,15,1,f +8276,74746,8,2,f +8276,970c00,1,2,f +8276,970c00,0,1,f +8276,973p73c01,2,1,f +8276,973px1c01,1,1,f +8276,973px8c01,1,1,f +8277,3034,4,25,f +8278,10124,10,1,f +8278,10126,10,1,f +8278,10127,10,1,f +8278,10128pr0002,10,1,f +8278,10154,10,1,f +8278,11203,72,1,f +8278,11211,71,2,f +8278,12825,0,1,f +8278,14769,71,1,f +8278,14769,14,1,f +8278,15207,71,1,f +8278,16614,297,1,f +8278,2357,71,2,f +8278,2412b,14,1,f +8278,2412b,1,10,f +8278,2419,71,3,f +8278,2420,72,4,f +8278,2431pr0017,14,2,f +8278,2432,1,2,f +8278,2449,71,2,f +8278,2449,72,2,f +8278,2453b,71,5,f +8278,2453b,72,1,f +8278,2454a,71,8,f +8278,2458,71,5,f +8278,2569,14,2,f +8278,2653,0,2,f +8278,2780,0,1,f +8278,2817,0,2,f +8278,2877,0,3,f +8278,3001,1,4,f +8278,3004,71,4,f +8278,3004,4,2,f +8278,3005,1,9,f +8278,3007,0,1,f +8278,3008,1,2,f +8278,3009,1,2,f +8278,3010,0,1,f +8278,30134,0,1,f +8278,30145,71,1,f +8278,30151a,47,1,f +8278,3020,71,3,f +8278,3020,1,2,f +8278,3022,1,1,f +8278,3022,71,2,f +8278,3023,36,1,f +8278,3023,4,2,f +8278,3023,71,6,f +8278,3023,72,5,f +8278,30236,71,1,f +8278,30237b,71,1,f +8278,3027,72,2,f +8278,3031,0,1,f +8278,3032,0,2,f +8278,3034,0,2,f +8278,30361c,14,1,f +8278,30374,36,1,f +8278,30381,15,1,f +8278,30383,71,2,f +8278,30389b,0,1,f +8278,3039,0,4,f +8278,3040b,72,2,f +8278,30553,0,2,f +8278,30562,47,2,f +8278,3062b,33,4,f +8278,3062b,4,1,f +8278,30663,71,2,f +8278,3070b,14,4,f +8278,32013,0,3,f +8278,32062,4,3,f +8278,3245c,71,2,f +8278,3460,71,2,f +8278,3622,1,5,f +8278,3626cpr1388,15,1,f +8278,3626cpr1389,15,1,f +8278,3626cpr1393,78,1,f +8278,3660,1,4,f +8278,3665,14,2,f +8278,3666,1,2,f +8278,3666,14,2,f +8278,3710,71,7,f +8278,3794b,4,2,f +8278,3794b,1,2,f +8278,3795,72,2,f +8278,3941,1,2,f +8278,4032a,1,2,f +8278,4032a,14,2,f +8278,4032a,0,1,f +8278,40490,14,1,f +8278,4274,71,1,f +8278,4286,0,2,f +8278,4287,72,4,f +8278,43093,1,4,f +8278,43898,72,1,f +8278,44728,14,1,f +8278,4490,72,2,f +8278,4599b,4,1,f +8278,4733,0,1,f +8278,4740,0,2,f +8278,48092,71,2,f +8278,4865b,0,3,f +8278,4871,72,1,f +8278,50231,15,1,f +8278,50231,4,1,f +8278,50950,1,8,f +8278,53989,179,4,f +8278,54200,1,8,f +8278,58176,46,4,f +8278,59349,1,2,f +8278,59426,72,1,f +8278,59900,40,2,f +8278,59900,46,12,f +8278,59900,36,1,f +8278,6020,0,1,f +8278,60471,0,1,f +8278,60474,71,1,f +8278,60581,40,2,f +8278,60596,14,1,f +8278,60616a,47,1,f +8278,6091,1,6,f +8278,6091,71,4,f +8278,6091,72,2,f +8278,6106,71,2,f +8278,6111,71,2,f +8278,6112,0,3,f +8278,61184,71,3,f +8278,6141,46,3,f +8278,6141,57,1,f +8278,6141,14,7,f +8278,6141,36,3,f +8278,6141,71,12,f +8278,6141,47,1,f +8278,61482,71,1,f +8278,61485,0,1,f +8278,6232,71,1,f +8278,64647,182,4,f +8278,6536,71,1,f +8278,6541,14,1,f +8278,6583,14,3,f +8278,75904,71,1,f +8278,75937,0,1,f +8278,85984,0,4,f +8278,87079,0,3,f +8278,87079,71,6,f +8278,87087,1,6,f +8278,87580,0,3,f +8278,87620,0,6,f +8278,88283,226,1,f +8278,91884pr0005,179,1,f +8278,92081,0,1,f +8278,92438,72,1,f +8278,92593,0,4,f +8278,92946,1,2,f +8278,93250,36,1,f +8278,96874,25,1,t +8278,970c00,85,1,f +8278,970c00,4,1,f +8278,970c00,1,1,f +8278,970c00,272,1,f +8278,973c66,297,1,f +8278,973pr2630c01,4,1,f +8278,973pr2631c01,272,1,f +8278,973pr2636c01,0,1,f +8278,98370,179,1,f +8278,99207,0,1,f +8278,99781,0,3,f +8279,15339,179,1,f +8279,15341,15,2,f +8279,15343,15,2,f +8279,15345,15,1,f +8279,15357pr0001,85,1,f +8279,15359,0,1,f +8279,15362,0,3,f +8279,15976,0,2,f +8279,2780,0,2,f +8279,3069bpr0136,41,1,f +8279,32062,4,1,f +8279,3626c,1,1,f +8279,4497,148,1,f +8279,60115,0,1,f +8279,61252,72,1,f +8279,87747,85,6,f +8279,90609,0,2,f +8279,90611,72,1,f +8279,90612,41,4,f +8279,90617,72,2,f +8279,90626,0,1,f +8279,90640pr0022,0,1,f +8279,90641,0,4,f +8279,90652,0,1,f +8279,93571,322,4,f +8279,98138pr0019,15,1,f +8279,98577,72,1,f +8280,11303,4,1,f +8280,11610,19,1,f +8280,15573,0,5,f +8280,15573,14,1,f +8280,2357,0,1,f +8280,2420,4,10,f +8280,2431,0,4,f +8280,2445,4,8,f +8280,2465,71,2,f +8280,2486,72,3,f +8280,2508,0,2,f +8280,2654,72,4,f +8280,2877,0,2,f +8280,298c02,14,1,f +8280,3001,0,8,f +8280,3004,71,1,f +8280,3004,4,12,f +8280,3004,0,3,f +8280,3005,14,8,f +8280,3005,0,4,f +8280,3005,4,30,f +8280,3008,71,2,f +8280,30089,0,1,f +8280,3009,4,2,f +8280,3009,0,1,f +8280,3010,4,6,f +8280,3010,71,1,f +8280,3020,0,2,f +8280,3021,0,2,f +8280,3022,0,5,f +8280,3022,71,7,f +8280,3022,14,1,f +8280,3023,0,22,f +8280,3023,14,13,f +8280,3023,15,3,f +8280,3023,71,1,f +8280,3023,4,22,f +8280,3024,14,8,f +8280,3024,4,2,f +8280,3024,0,3,f +8280,30350b,4,1,f +8280,30374,71,1,f +8280,3040b,0,2,f +8280,3045,4,2,f +8280,3048c,0,2,f +8280,3062b,0,40,f +8280,3069b,4,1,f +8280,3069b,0,2,f +8280,3069b,14,36,f +8280,3070b,47,3,f +8280,3070b,4,2,f +8280,3070b,0,2,f +8280,3228c,72,6,f +8280,3456,71,2,f +8280,3460,15,1,f +8280,3622,71,1,f +8280,3623,0,4,f +8280,3624,0,1,f +8280,3626bpr0388,14,1,f +8280,3626bpr0389,14,1,f +8280,3626bpr0677,14,1,f +8280,3626cpr0498,14,1,f +8280,3626cpr0645,14,1,f +8280,3626cpr1349,14,1,f +8280,3626cpr1665,14,1,f +8280,3666,71,6,f +8280,3666,4,4,f +8280,3666,0,11,f +8280,3710,0,3,f +8280,3710,14,8,f +8280,3710,71,1,f +8280,3710,4,9,f +8280,3795,0,21,f +8280,3795,4,1,f +8280,3795,71,4,f +8280,3832,4,3,f +8280,3958,71,5,f +8280,4070,14,3,f +8280,4081b,71,2,f +8280,41879a,4,1,f +8280,41879a,28,1,f +8280,4477,0,2,f +8280,4600,0,6,f +8280,50254,0,12,f +8280,54200,0,2,f +8280,59900,297,1,f +8280,60475a,71,1,f +8280,60479,71,4,f +8280,60479,4,4,f +8280,60593,0,2,f +8280,60594,0,1,f +8280,60602,47,2,f +8280,60603,47,1,f +8280,60897,71,2,f +8280,60897,0,1,f +8280,6141,14,3,f +8280,6141,0,17,f +8280,61976,19,1,f +8280,6254,191,1,f +8280,62696,320,1,f +8280,62711,0,1,f +8280,63082,0,3,f +8280,85984,0,3,f +8280,87079,15,4,f +8280,87087,0,3,f +8280,87087,4,26,f +8280,87552,0,3,f +8280,87580,0,1,f +8280,87990,70,1,f +8280,90386,0,1,f +8280,91988,71,8,f +8280,970c00,308,1,f +8280,970c00,85,1,f +8280,970c00,0,1,f +8280,970c00,326,1,f +8280,970c00,73,1,f +8280,973pb1782c01,4,1,f +8280,973pr1163c01,272,1,f +8280,973pr1479c01,15,1,f +8280,973pr1480c01,15,1,f +8280,973pr1517c01,73,1,f +8280,973pr1576c01,72,1,f +8280,973pr1720c01,15,1,f +8280,99930,484,1,f +8281,2346,0,2,f +8281,2654,0,2,f +8281,2730,0,4,f +8281,2780,0,1,t +8281,2780,0,12,f +8281,2815,0,2,f +8281,2982c01,1,2,f +8281,2983,7,4,f +8281,2994,14,2,f +8281,3003,0,4,f +8281,3004,0,4,f +8281,3021,14,4,f +8281,3022,14,4,f +8281,3023,14,16,f +8281,3031,14,2,f +8281,3032,14,2,f +8281,3033,14,2,f +8281,3065,34,2,f +8281,3065,46,4,f +8281,3065,36,2,f +8281,3069b,4,6,f +8281,3069b,15,6,f +8281,32001,14,2,f +8281,32002,8,8,f +8281,32002,8,1,t +8281,32009,14,4,f +8281,32013,1,4,f +8281,32015,7,2,f +8281,32017,7,4,f +8281,32034,7,2,f +8281,32062,0,4,f +8281,32064b,2,4,f +8281,32068,7,2,f +8281,32073,0,2,f +8281,32123b,7,4,f +8281,32123b,7,1,t +8281,3460,14,4,f +8281,3482,14,8,f +8281,3483,0,2,f +8281,3623,14,8,f +8281,3626bp04,14,1,f +8281,3626bp07,14,1,f +8281,3626bpr0001,14,2,f +8281,3634,0,2,f +8281,3647,7,6,f +8281,3648a,7,4,f +8281,3650c,7,4,f +8281,3666,14,4,f +8281,3673,7,12,f +8281,3700,0,16,f +8281,3701,0,8,f +8281,3702,0,4,f +8281,3703,0,5,f +8281,3705,0,2,f +8281,3706,0,2,f +8281,3707,0,2,f +8281,3708,0,2,f +8281,3709,14,8,f +8281,3710,14,8,f +8281,3713,7,1,t +8281,3713,7,20,f +8281,3737,0,2,f +8281,3738,14,4,f +8281,3743,7,4,f +8281,3749,7,8,f +8281,3894,0,4,f +8281,3895,0,4,f +8281,3901,0,1,f +8281,3941,0,8,f +8281,3956,0,2,f +8281,4019,7,4,f +8281,4125890,47,1,f +8281,41752,8,1,f +8281,4185,7,4,f +8281,4274,7,4,f +8281,4274,7,1,t +8281,43362c01,0,1,f +8281,4477,14,4,f +8281,4485,1,1,f +8281,4519,0,2,f +8281,4530,0,1,f +8281,4530,6,1,f +8281,4716,0,4,f +8281,5306bc020,0,2,f +8281,5306bc026,14,3,f +8281,5306bc036,0,2,f +8281,5306bc069,0,1,f +8281,5306bc378,0,1,f +8281,6035,15,4,f +8281,610p01,2,1,f +8281,6536,7,2,f +8281,6538b,7,2,f +8281,6573,8,1,f +8281,6578,0,2,f +8281,6587,8,2,f +8281,6588,14,1,f +8281,6589,7,9,f +8281,6632,7,2,f +8281,71082,47,1,f +8281,71509,0,4,f +8281,75535,14,2,f +8281,75c18,1,2,f +8281,75c20,1,2,f +8281,76019,15,1,f +8281,85544,4,2,f +8281,879,7,2,f +8281,970c00,15,1,f +8281,970c00,4,1,f +8281,970c00,0,1,f +8281,970c00,1,1,f +8281,9723b1,9999,1,f +8281,9723b2,9999,1,f +8281,9723b3,9999,1,f +8281,9723b4,9999,1,f +8281,973c02,4,1,f +8281,973pb0017c01,15,1,f +8281,973pr1245c01,1,1,f +8281,973px130c01,15,1,f +8281,bin01,0,1,f +8283,2736,71,2,f +8283,2780,0,1,t +8283,2780,0,14,f +8283,2905,71,4,f +8283,32002,72,2,f +8283,32002,72,1,t +8283,32005a,72,2,f +8283,32009,4,2,f +8283,32013,4,5,f +8283,32015,4,2,f +8283,32016,0,2,f +8283,32034,0,1,f +8283,32039,0,5,f +8283,32054,4,9,f +8283,32056,4,2,f +8283,32062,4,11,f +8283,32063,71,8,f +8283,32065,0,2,f +8283,32073,71,5,f +8283,32123b,71,16,f +8283,32123b,71,1,t +8283,32138,0,1,f +8283,32140,4,7,f +8283,32184,0,5,f +8283,32192,0,2,f +8283,32200,0,1,f +8283,32200,4,2,f +8283,32250,0,4,f +8283,32271,0,1,f +8283,32271,71,2,f +8283,32291,0,2,f +8283,32316,72,3,f +8283,32449,71,8,f +8283,32523,72,3,f +8283,32524,0,6,f +8283,32525,4,1,f +8283,32526,4,1,f +8283,32527,4,2,f +8283,32528,4,2,f +8283,32534,4,2,f +8283,32535,4,2,f +8283,33299a,71,1,f +8283,3647,71,1,f +8283,3647,71,1,t +8283,3705,0,8,f +8283,3706,0,2,f +8283,3707,0,2,f +8283,3713,71,8,f +8283,3713,71,1,t +8283,3737,0,1,f +8283,40490,4,2,f +8283,40490,72,1,f +8283,41239,0,7,f +8283,41669,143,2,f +8283,41669,135,2,f +8283,41669,36,2,f +8283,4185,71,6,f +8283,42003,4,7,f +8283,4274,71,2,f +8283,43093,1,12,f +8283,44352,4,1,f +8283,44353,4,1,f +8283,4519,71,8,f +8283,4716,0,1,f +8283,48989,71,2,f +8283,57518,72,28,f +8283,57520,0,4,f +8283,6141,80,1,t +8283,6141,80,1,f +8283,6536,71,6,f +8283,6536,0,6,f +8283,6558,0,27,f +8283,6587,72,14,f +8283,6628,0,2,f +8283,6632,71,2,f +8283,6632,4,4,f +8283,6632,0,2,f +8283,76537,14,2,f +8283,78c02,179,2,f +8283,78c14,4,1,f +8284,2540,72,1,f +8284,298c02,15,1,t +8284,298c02,15,2,f +8284,3004,25,1,f +8284,3021,72,2,f +8284,3021,25,1,f +8284,3022,0,1,f +8284,3023,72,1,f +8284,30602,25,1,f +8284,32062,0,2,f +8284,32064b,4,2,f +8284,32556,71,1,f +8284,3623,72,2,f +8284,3673,71,2,f +8284,3673,71,1,t +8284,3747b,4,1,f +8284,3794a,0,2,f +8284,3957a,0,8,f +8284,4081b,4,2,f +8284,42003,0,2,f +8284,4274,71,2,f +8284,43719,4,1,f +8284,43722,4,1,f +8284,43723,4,1,f +8284,44301a,0,2,f +8284,44302a,72,2,f +8284,47674,182,1,f +8284,47675,25,1,f +8284,47676,25,1,f +8284,48336,0,1,f +8284,54200,182,2,f +8284,54200,72,2,f +8284,6019,4,2,f +8284,6141,25,2,f +8284,6141,25,1,t +8284,6541,0,2,f +8286,3004,14,1,f +8286,3005pe1,14,2,f +8286,3020,8,1,f +8286,3021,8,1,f +8286,3298,14,1,f +8286,3660,14,1,f +8286,3710,14,1,f +8286,3747a,8,1,f +8288,15504,72,1,f +8288,15659pr0001,72,1,f +8288,88646,0,1,f +8288,95330pr0002,84,1,f +8288,970c00,72,1,f +8288,973pr2613c01,72,1,f +8289,2340,15,2,f +8289,2346,0,2,f +8289,2357,15,2,f +8289,2420,15,2,f +8289,2654,0,2,f +8289,2717,4,1,f +8289,2730,15,2,f +8289,2730,0,1,f +8289,2744,15,4,f +8289,2780,0,18,f +8289,2780,0,1,t +8289,2817,15,1,f +8289,2825,7,1,f +8289,2905,7,1,f +8289,2952,7,2,f +8289,2989,0,8,f +8289,2991,0,4,f +8289,3020,15,1,f +8289,3021,15,2,f +8289,3022,15,2,f +8289,3022,0,4,f +8289,3022,1,1,f +8289,3023,15,4,f +8289,3031,0,1,f +8289,3460,0,4,f +8289,3460,1,2,f +8289,3460,15,4,f +8289,3482,0,4,f +8289,3483,0,1,t +8289,3483,0,2,f +8289,3623,1,4,f +8289,3647,7,1,t +8289,3647,7,1,f +8289,3648a,7,1,f +8289,3650c,7,2,f +8289,3651,7,8,f +8289,3665,0,2,f +8289,3666,15,2,f +8289,3700,15,4,f +8289,3701,15,1,f +8289,3702,15,2,f +8289,3704,0,4,f +8289,3705,0,2,f +8289,3706,0,4,f +8289,3707,0,3,f +8289,3710,15,2,f +8289,3710,0,4,f +8289,3713,7,4,f +8289,3713,7,1,t +8289,3738,15,1,f +8289,3749,7,2,f +8289,3832,15,2,f +8289,3894,0,2,f +8289,3894,15,6,f +8289,3895,15,2,f +8289,4019,7,2,f +8289,4143,7,2,f +8289,4265b,7,1,t +8289,4265b,7,8,f +8289,4273b,7,4,f +8289,4282,0,2,f +8289,4287,15,2,f +8289,4288,0,1,f +8289,4477,1,1,f +8289,4519,0,3,f +8289,6538a,7,2,f +8289,6542a,8,2,f +8289,6558,0,2,f +8289,70961,0,8,f +8289,70962,0,4,f +8290,2780,0,2,f +8290,32062,4,1,f +8290,32173,0,1,f +8290,3705,0,1,f +8290,4519,71,2,f +8290,47306,15,1,f +8290,47311,0,1,f +8290,48989,71,1,f +8290,55615,71,1,f +8290,58176,36,2,f +8290,59443,4,2,f +8290,60176,15,8,f +8290,60896,0,4,f +8290,60918,0,1,f +8290,61791pat0001,79,1,f +8290,61797pat0001,79,4,f +8290,61802,15,1,f +8290,61807pat01,79,2,f +8290,61808,135,1,f +8290,61810,4,1,f +8290,61811,27,2,f +8291,2420,14,2,f +8291,2449,1,2,f +8291,2456,14,1,f +8291,2456,1,2,f +8291,2456,4,1,f +8291,2456,15,2,f +8291,3001,4,10,f +8291,3001,1,10,f +8291,3001,15,10,f +8291,3001,2,5,f +8291,3001,27,4,f +8291,3001,73,4,f +8291,3001,14,10,f +8291,3001,0,5,f +8291,3002,2,3,f +8291,3002,4,6,f +8291,3002,15,6,f +8291,3002,1,6,f +8291,3002,0,3,f +8291,3002,14,6,f +8291,3003,1,30,f +8291,3003,4,30,f +8291,3003,73,2,f +8291,3003,2,14,f +8291,3003,27,4,f +8291,3003,14,30,f +8291,3003,15,30,f +8291,3003,0,14,f +8291,3003,70,4,f +8291,3004,2,10,f +8291,3004,29,4,f +8291,3004,27,4,f +8291,3004,14,20,f +8291,3004,0,10,f +8291,3004,70,4,f +8291,3004,4,20,f +8291,3004,15,20,f +8291,3004,73,4,f +8291,3004,1,20,f +8291,3004pr0001,14,1,f +8291,3004pr0002,14,1,f +8291,3004pr0003,15,1,f +8291,3005,1,10,f +8291,3005,0,6,f +8291,3005,2,6,f +8291,3005,15,10,f +8291,3005,73,4,f +8291,3005,4,10,f +8291,3005,14,10,f +8291,3005pr0003,15,5,f +8291,3005pr0003,14,2,f +8291,3007,15,1,f +8291,3007,1,1,f +8291,3007,14,1,f +8291,3007,4,1,f +8291,3008,15,2,f +8291,3008,4,1,f +8291,3008,14,1,f +8291,3008,1,2,f +8291,3009,14,2,f +8291,3009,1,3,f +8291,3009,15,3,f +8291,3009,4,2,f +8291,3010,1,5,f +8291,3010,15,5,f +8291,3010,2,4,f +8291,3010,70,4,f +8291,3010,14,5,f +8291,3010,0,4,f +8291,3010,4,5,f +8291,3020,0,5,f +8291,3020,4,4,f +8291,3020,1,4,f +8291,3020,15,4,f +8291,3022,0,3,f +8291,3022,15,3,f +8291,3022,70,2,f +8291,3022,27,2,f +8291,3023,14,4,f +8291,3023,27,4,f +8291,3023,2,4,f +8291,3023,0,8,f +8291,3039,1,2,f +8291,3039,4,6,f +8291,3039,0,4,f +8291,3040b,1,4,f +8291,3040b,14,2,f +8291,3043,4,3,f +8291,3062b,14,4,f +8291,3065,47,2,f +8291,32028,2,2,f +8291,3622,0,2,f +8291,3622,4,4,f +8291,3622,1,4,f +8291,3622,14,4,f +8291,3622,15,4,f +8291,3622,2,2,f +8291,3623,0,2,f +8291,3660,70,4,f +8291,3660,1,2,f +8291,3660,4,4,f +8291,3660,0,2,f +8291,3665,1,4,f +8291,3710,0,2,f +8291,3710,14,2,f +8291,4070,15,4,f +8291,4070,0,2,f +8291,4286,4,2,f +8291,44728,15,1,f +8291,4589,15,4,f +8291,4589,70,6,f +8291,54200,0,4,f +8291,54200,0,1,t +8291,6141,14,4,f +8291,6141,29,4,f +8291,6141,29,1,t +8291,6141,0,1,t +8291,6141,1,1,t +8291,6141,27,1,t +8291,6141,27,4,f +8291,6141,0,4,f +8291,6141,14,1,t +8291,6141,1,4,f +8292,2412b,4,1,f +8292,2412b,72,1,f +8292,2432,71,6,f +8292,2456,14,4,f +8292,2458,14,6,f +8292,2460,72,1,f +8292,2540,14,1,f +8292,2744,14,2,f +8292,2780,0,5,f +8292,2780,0,2,t +8292,2877,72,2,f +8292,3001,1,1,f +8292,30031,0,1,f +8292,3009,14,2,f +8292,3010,14,2,f +8292,3020,71,3,f +8292,3021,14,4,f +8292,3023,46,2,f +8292,3023,72,1,f +8292,30236,72,1,f +8292,30258,0,1,f +8292,3031,0,1,f +8292,3034,72,2,f +8292,3035,0,2,f +8292,30374,0,1,f +8292,30377,0,1,t +8292,30377,0,1,f +8292,3040b,14,2,f +8292,30414,1,1,f +8292,30565,72,2,f +8292,3068b,72,3,f +8292,32028,14,2,f +8292,32123b,71,2,f +8292,32123b,71,1,t +8292,32324,71,1,f +8292,32523,71,2,f +8292,32530,72,1,f +8292,3626bpr0245,14,1,f +8292,3626bpr0282,14,1,f +8292,3660,14,2,f +8292,3666,14,5,f +8292,3666,72,4,f +8292,3700,0,2,f +8292,3710,0,7,f +8292,3713,4,1,t +8292,3713,4,2,f +8292,3794a,0,6,f +8292,3795,0,4,f +8292,3795,14,1,f +8292,3829c01,1,1,f +8292,3833,4,2,f +8292,3836,70,1,f +8292,3837,72,1,f +8292,3941,0,1,f +8292,4032b,14,12,f +8292,4079b,1,1,f +8292,4083,0,1,f +8292,4085c,0,2,f +8292,4150,0,1,f +8292,42022,14,4,f +8292,4215b,40,1,f +8292,43093,1,1,f +8292,43337,14,2,f +8292,44126,14,2,f +8292,44126,72,1,f +8292,4460b,14,2,f +8292,44675,14,1,f +8292,44728,14,3,f +8292,4735,0,4,f +8292,4740,0,2,f +8292,47455,0,1,f +8292,48169,72,1,f +8292,48170,4,1,f +8292,48336,0,2,f +8292,50451,15,1,f +8292,52031,14,1,f +8292,54200,36,2,f +8292,54200,36,1,t +8292,55817,72,5,f +8292,55976,0,2,f +8292,56145,14,2,f +8292,58176,182,4,f +8292,59426,72,2,f +8292,59900,15,2,f +8292,60470a,71,2,f +8292,60478,72,4,f +8292,6111,14,2,f +8292,61409,72,4,f +8292,6141,182,2,t +8292,6141,182,4,f +8292,61678,14,4,f +8292,62361,14,2,f +8292,62462,0,1,f +8292,64566,14,2,f +8292,7746stk01,9999,1,t +8292,84954,40,1,f +8292,970x199,25,2,f +8292,973pr1182c01,25,2,f +8293,1775stk01,9999,1,t +8293,2343,47,1,f +8293,2399,15,1,f +8293,2415,7,1,f +8293,2440,0,1,f +8293,2452,7,1,f +8293,2540,7,1,f +8293,2540,15,1,f +8293,2555,7,1,f +8293,2569,0,1,f +8293,298c03,0,1,f +8293,3002,7,1,f +8293,3003,15,1,f +8293,3004,7,2,f +8293,3004,15,1,f +8293,3010,4,2,f +8293,3010,1,2,f +8293,3022,0,2,f +8293,3024,1,4,f +8293,3024,46,2,f +8293,3024,15,2,f +8293,3030,15,1,f +8293,3032,15,1,f +8293,3036,2,1,f +8293,3038,15,2,f +8293,3039pc5,7,1,f +8293,3039pr0005,15,1,f +8293,3069bp68,15,1,f +8293,3069bp80,15,1,f +8293,3070b,15,3,f +8293,3139,0,5,f +8293,3298,7,2,f +8293,3460,15,1,f +8293,3464,15,1,f +8293,3474,15,1,f +8293,3585,15,1,f +8293,3586,15,1,f +8293,3624,0,1,f +8293,3626bp07,14,1,f +8293,3626bpr0001,14,2,f +8293,3660,15,2,f +8293,3660,4,2,f +8293,3666,1,2,f +8293,3679,7,3,f +8293,3680,0,3,f +8293,3684,15,2,f +8293,3710,15,6,f +8293,3794a,15,1,f +8293,3795,4,1,f +8293,3795,7,1,f +8293,3832,4,1,f +8293,3901,0,2,f +8293,3938,0,1,f +8293,3941,7,1,f +8293,4070,15,4,f +8293,4079,7,3,f +8293,4162,1,1,f +8293,4276b,7,1,f +8293,4449,7,1,f +8293,4449,0,1,f +8293,4476b,15,2,f +8293,4477,1,1,f +8293,4477,15,2,f +8293,4624,7,2,f +8293,4625,15,3,f +8293,4854,7,3,f +8293,4855,7,2,f +8293,4856a,1,1,f +8293,4856a,15,1,f +8293,4857,15,3,f +8293,4859,1,1,f +8293,4859,15,1,f +8293,4862,41,8,f +8293,4863,15,4,f +8293,4864a,15,2,f +8293,4865a,15,2,f +8293,4865a,7,1,f +8293,4867,15,1,f +8293,4868a,15,2,f +8293,4869,7,2,f +8293,4870,7,2,f +8293,4872,41,3,f +8293,6019,7,1,f +8293,6069,15,1,f +8293,6141,36,4,f +8293,6141,34,2,f +8293,6152,41,1,f +8293,6153a,15,1,f +8293,970c00,0,2,f +8293,970c00,1,1,f +8293,973p28c01,0,1,f +8293,973pb0097c01,1,1,f +8293,973px189c01,0,1,f +8295,30089b,0,1,f +8295,3962b,0,1,f +8295,4449,71,1,f +8295,tls061,9999,1,f +8295,tls062,9999,1,f +8295,tls063,9999,1,f +8296,3711a,0,70,f +8297,2412b,42,2,f +8297,2419,1,1,f +8297,2420,0,2,f +8297,2444,0,1,f +8297,2446,47,1,f +8297,2456,1,1,f +8297,2462,0,2,f +8297,2555,0,4,f +8297,2569,42,2,f +8297,2607,0,2,f +8297,2780,0,1,t +8297,2780,0,1,f +8297,30014,8,2,f +8297,3004,0,1,f +8297,3007,1,1,f +8297,30195,8,1,f +8297,3020,1,2,f +8297,3021,1,1,f +8297,3021,0,2,f +8297,30211,8,4,f +8297,30213,42,2,f +8297,30214,42,1,f +8297,3022,8,1,f +8297,3022,1,1,f +8297,3023,0,1,f +8297,30231pb01,33,2,f +8297,30231pb02,33,2,f +8297,3032,0,1,f +8297,3039,8,2,f +8297,3039,0,1,f +8297,3068bpx7,0,2,f +8297,3069bp53,0,2,f +8297,3176,0,1,f +8297,3298,8,1,f +8297,3475b,0,4,f +8297,3622,8,2,f +8297,3626bpb0034,0,1,f +8297,3626bpb0097,1,1,f +8297,3701,0,2,f +8297,3710,1,2,f +8297,3794a,1,1,f +8297,3795,1,1,f +8297,3838,1,1,f +8297,3959,0,2,f +8297,4032a,0,5,f +8297,4081b,0,4,f +8297,412,8,4,f +8297,4282,1,1,f +8297,4287,8,2,f +8297,4589,42,2,f +8297,4590,8,3,f +8297,4599a,1,2,f +8297,4599a,1,1,t +8297,4856a,1,1,f +8297,4859,1,1,f +8297,4871,0,1,f +8297,6048a,0,2,f +8297,6069,8,3,f +8297,6141,42,4,f +8297,6141,42,2,t +8297,6232,8,1,f +8297,6905stk01,9999,2,t +8297,73092,0,2,f +8297,970c11pb04,0,1,f +8297,970x023,8,1,f +8297,973pb0198c01,0,1,f +8297,973pb0199c01,0,1,f +8298,2346,0,4,f +8298,2431,2,4,f +8298,2458,8,8,f +8298,2653,0,4,f +8298,2780,0,44,f +8298,2815,0,2,f +8298,2825,7,2,f +8298,2854,7,2,f +8298,2902,0,3,f +8298,2903,15,3,f +8298,2905,7,4,f +8298,30000,8,2,f +8298,3001,2,2,f +8298,3001,4,4,f +8298,3022,0,4,f +8298,3023,0,20,f +8298,3031,0,2,f +8298,3069b,0,5,f +8298,3069b,4,5,f +8298,3127,7,1,f +8298,3176,0,1,f +8298,32001,0,6,f +8298,32002,8,26,f +8298,32012,1,1,f +8298,32013,1,6,f +8298,32014,1,5,f +8298,32015,7,4,f +8298,32016,1,4,f +8298,32017,7,5,f +8298,32028,7,4,f +8298,32034,7,4,f +8298,32039,7,6,f +8298,32062,0,12,f +8298,32073,0,6,f +8298,32123b,7,24,f +8298,32138,0,4,f +8298,32342c01,2,1,f +8298,3482,14,10,f +8298,3483,0,2,f +8298,3626bp04,14,1,f +8298,3626bp07,14,1,f +8298,3626bpr0001,14,2,f +8298,3634,0,2,f +8298,3647,7,2,f +8298,3648b,7,6,f +8298,3649,7,3,f +8298,3650,7,1,f +8298,3666,0,6,f +8298,3673,7,36,f +8298,3700,14,4,f +8298,3700,4,16,f +8298,3701,4,4,f +8298,3701,14,4,f +8298,3702,14,2,f +8298,3702,4,14,f +8298,3703,14,2,f +8298,3703,4,14,f +8298,3705,0,6,f +8298,3706,0,6,f +8298,3707,0,7,f +8298,3708,0,6,f +8298,3709,0,10,f +8298,3710,0,16,f +8298,3710,2,2,f +8298,3711a,0,72,f +8298,3713,7,60,f +8298,3736,7,1,f +8298,3737,0,6,f +8298,3738,0,4,f +8298,3749,7,32,f +8298,3832,0,2,f +8298,3894,4,4,f +8298,3894,14,2,f +8298,3895,14,4,f +8298,3895,4,4,f +8298,3901,0,1,f +8298,4079,15,4,f +8298,4080,14,4,f +8298,4162,0,4,f +8298,4185,7,2,f +8298,4274,7,12,f +8298,4485,1,1,f +8298,4519,0,6,f +8298,4530,0,1,f +8298,4530,6,1,f +8298,4716,0,1,f +8298,5306b,0,4,f +8298,6035,15,1,f +8298,6222,8,2,f +8298,6536,7,6,f +8298,6538b,7,6,f +8298,6553,7,6,f +8298,6558,0,10,f +8298,6575,7,2,f +8298,6587,8,6,f +8298,6588,14,1,f +8298,6632,7,6,f +8298,71427c01,7,2,f +8298,71509,0,8,f +8298,73090b,0,1,f +8298,970c00,0,1,f +8298,970c00,4,1,f +8298,970c00,15,1,f +8298,970c00,1,1,f +8298,973c02,4,1,f +8298,973pb0017c01,15,1,f +8298,973pr1245c01,1,1,f +8298,973px130c01,15,1,f +8298,9912,2,1,f +8298,rb00164,0,1,f +8298,sailbb03,15,4,f +8299,16542,7,1,f +8299,2357,4,2,f +8299,2362a,15,1,f +8299,2412a,0,3,f +8299,2412a,15,1,f +8299,2412a,4,1,f +8299,2420,4,2,f +8299,2420,15,2,f +8299,2421,0,1,f +8299,2431,15,2,f +8299,2436,15,1,f +8299,2436,4,1,f +8299,2437,41,1,f +8299,2445,0,2,f +8299,2446,15,1,f +8299,2447,41,3,f +8299,2453a,4,4,f +8299,2454a,4,7,f +8299,2460,4,1,f +8299,2479,0,1,f +8299,2483,41,1,f +8299,2486,0,3,f +8299,2513,4,1,f +8299,2540,0,2,f +8299,2569,7,1,f +8299,2584,4,1,f +8299,2585,0,1,f +8299,2877,4,4,f +8299,2880,0,1,f +8299,2881,0,1,f +8299,2921,4,1,f +8299,298c02,0,3,f +8299,298c04,15,2,f +8299,3004,0,1,f +8299,3004,4,7,f +8299,3005,15,2,f +8299,3005,4,8,f +8299,3008,4,2,f +8299,3009,4,13,f +8299,3010,4,1,f +8299,3010,15,5,f +8299,3020,15,1,f +8299,3020,4,1,f +8299,3021,0,1,f +8299,3021,15,2,f +8299,3021,4,3,f +8299,3022,0,3,f +8299,3022,15,1,f +8299,3023,0,3,f +8299,3023,15,2,f +8299,3023,4,7,f +8299,3023,7,1,f +8299,3024,36,7,f +8299,3024,46,2,f +8299,3024,15,1,f +8299,3024,34,1,f +8299,3024,4,5,f +8299,3024,33,6,f +8299,3030,4,1,f +8299,3031,15,1,f +8299,3031,4,1,f +8299,3032,4,1,f +8299,3033,0,1,f +8299,3033,4,5,f +8299,3039pr0005,15,1,f +8299,3039px14,15,1,f +8299,3040b,4,4,f +8299,3062b,14,2,f +8299,3068b,15,1,f +8299,3069b,15,4,f +8299,3069bp52,15,2,f +8299,3070b,33,6,f +8299,3070b,0,1,f +8299,3070b,46,2,f +8299,3070bp01,14,1,f +8299,3070bp02,14,1,f +8299,3149c01,4,1,f +8299,3176,4,1,f +8299,3297,4,1,f +8299,3298,4,2,f +8299,3403,4,1,f +8299,3404,4,1,f +8299,3460,15,1,f +8299,3460,0,2,f +8299,3622,4,2,f +8299,3623,4,2,f +8299,3626bp02,14,1,f +8299,3626bp03,14,1,f +8299,3626bp05,14,1,f +8299,3626bpb0083,14,1,f +8299,3641,0,4,f +8299,3660,4,1,f +8299,3666,4,3,f +8299,3679,7,1,f +8299,3680,0,1,f +8299,3700,4,2,f +8299,3710,15,4,f +8299,3710,4,6,f +8299,3741,2,2,f +8299,3742,14,6,f +8299,3742,14,2,t +8299,3749,7,2,f +8299,3788,4,1,f +8299,3794a,4,2,f +8299,3794a,15,3,f +8299,3794a,0,1,f +8299,3795,0,1,f +8299,3821,4,2,f +8299,3822,4,2,f +8299,3823,41,1,f +8299,3829c01,4,2,f +8299,3832,4,2,f +8299,3834,15,1,f +8299,3834p01,15,1,f +8299,3835,7,2,f +8299,3838,14,2,f +8299,3937,4,2,f +8299,3938,4,2,f +8299,3941,14,3,f +8299,3956,7,1,f +8299,3957a,0,2,f +8299,3957a,7,1,f +8299,3962b,0,3,f +8299,3963,15,1,f +8299,4070,4,3,f +8299,4070,7,2,f +8299,4079,0,3,f +8299,4081b,4,2,f +8299,4083,0,2,f +8299,4085c,4,2,f +8299,4085c,15,2,f +8299,4085c,7,2,f +8299,4150,14,2,f +8299,4162,15,2,f +8299,4175,0,1,f +8299,4207,15,2,f +8299,4211,15,2,f +8299,4212b,15,1,f +8299,4213,4,1,f +8299,4214,4,1,f +8299,4216,4,28,f +8299,4217,4,4,f +8299,4218,15,2,f +8299,4218,41,16,f +8299,4219,15,2,f +8299,4286,15,1,f +8299,4286,4,2,f +8299,4315,4,1,f +8299,4477,4,3,f +8299,4488,4,1,f +8299,4495b,14,2,f +8299,4531,15,1,f +8299,4533,7,2,f +8299,4596,7,2,f +8299,4599a,14,4,f +8299,4600,15,2,f +8299,4624,15,4,f +8299,4865a,4,2,f +8299,4872,41,2,f +8299,6014a,15,4,f +8299,6015,0,4,f +8299,6019,15,3,f +8299,6019,0,1,f +8299,6093,0,1,f +8299,6100p01,2,1,f +8299,6111,4,1,f +8299,6140,0,2,f +8299,6141,46,4,f +8299,6141,34,1,f +8299,6141,36,1,t +8299,6141,0,2,f +8299,6141,34,1,t +8299,6141,36,1,f +8299,6154,4,2,f +8299,6155,7,2,f +8299,6157,0,2,f +8299,6158,0,2,f +8299,6159,15,2,f +8299,6160c01,15,4,f +8299,6571stk01,9999,1,t +8299,73194c01,15,1,f +8299,73590c01b,14,2,f +8299,92410,4,2,f +8299,970c00,0,2,f +8299,970c00,1,1,f +8299,970c00,7,1,f +8299,973p29c01,7,1,f +8299,973pb0099c01,0,1,f +8299,973px121c01,0,1,f +8299,973px18c01,15,1,f +8300,132a,0,8,f +8300,242c01,4,12,f +8300,3001a,4,2,f +8300,3003,0,1,f +8300,3004,4,2,f +8300,3004,14,2,f +8300,3004p50,1,1,f +8300,3005,4,2,f +8300,3007,4,1,f +8300,3008,4,2,f +8300,3009,14,2,f +8300,3009,4,2,f +8300,3009,47,1,f +8300,3009,0,2,f +8300,3009p01,14,1,f +8300,3010,47,5,f +8300,3010,14,2,f +8300,3010,4,1,f +8300,3020,14,3,f +8300,3020,4,4,f +8300,3020,0,1,f +8300,3022,14,1,f +8300,3022,0,2,f +8300,3023,0,2,f +8300,3023,14,1,f +8300,3023,4,2,f +8300,3027,14,1,f +8300,3035,4,1,f +8300,3039,4,2,f +8300,3062a,0,2,f +8300,3149c01,14,2,f +8300,3149c01,4,2,f +8300,3324c01,4,2,f +8300,3404ac01,0,1,f +8300,498,0,2,f +8300,7049b,0,5,f +8300,709,14,1,f +8300,711,14,1,f +8300,799c800,0,1,f +8300,801,14,1,f +8300,802,14,1,f +8300,803,0,1,f +8301,3626bpx33,14,1,f +8301,4485,4,1,f +8301,970c00,0,1,f +8301,973pb0193c01,8,1,f +8302,10312pr0003,40,1,f +8302,12825,4,4,f +8302,2412b,70,1,f +8302,2412b,71,5,f +8302,2420,0,4,f +8302,2431,70,2,f +8302,2431,288,4,f +8302,2431,19,2,f +8302,2540,0,2,f +8302,2654,71,5,f +8302,2877,0,2,f +8302,298c02,4,1,t +8302,298c02,4,1,f +8302,3002,72,1,f +8302,3004,71,1,f +8302,3020,288,8,f +8302,3021,71,6,f +8302,3021,0,1,f +8302,3022,19,2,f +8302,3023,70,3,f +8302,3023,71,5,f +8302,3032,70,2,f +8302,30361dps1,15,1,f +8302,30362,15,2,f +8302,30367cpr0006,71,1,f +8302,30374,0,5,f +8302,30374,41,2,f +8302,30375,320,1,f +8302,30376,19,1,f +8302,30377,19,1,t +8302,30377,71,1,t +8302,30377,71,2,f +8302,30377,19,1,f +8302,30378,19,1,f +8302,30503,288,4,f +8302,30526,71,1,f +8302,3068b,288,4,f +8302,3070b,0,2,f +8302,3070b,0,2,t +8302,32000,71,1,f +8302,32054,0,2,f +8302,32062,4,4,f +8302,32064b,72,4,f +8302,3623,71,2,f +8302,3626bpr0928,78,1,f +8302,3626cpr0926,78,1,f +8302,3626cpr0927,326,1,f +8302,3666,71,3,f +8302,3678bpr0032,484,1,f +8302,3710,28,17,f +8302,3747b,72,2,f +8302,3795,0,4,f +8302,3795,71,4,f +8302,3832,72,1,f +8302,3832,0,1,f +8302,3941,47,7,f +8302,3941,0,4,f +8302,3960pr13,40,1,f +8302,4032a,70,2,f +8302,4070,70,4,f +8302,4081b,0,4,f +8302,4085c,72,3,f +8302,4085c,71,10,f +8302,4150,0,1,f +8302,41677,0,2,f +8302,41678,72,1,f +8302,41769,72,1,f +8302,41770,72,1,f +8302,4286,72,2,f +8302,43710,71,2,f +8302,43711,71,2,f +8302,44567a,72,4,f +8302,44570,72,2,f +8302,4477,71,4,f +8302,4519,71,2,f +8302,4697b,71,1,t +8302,4697b,71,2,f +8302,48336,0,7,f +8302,4871,72,4,f +8302,48729b,71,1,t +8302,48729b,71,2,f +8302,50304,288,1,f +8302,50305,288,1,f +8302,51000,71,4,f +8302,51739,71,2,f +8302,53989,70,2,f +8302,54200,46,1,f +8302,54200,46,1,t +8302,58176,182,2,f +8302,58247,0,1,f +8302,59230,19,1,f +8302,59230,19,1,t +8302,59443,0,2,f +8302,60470a,71,3,f +8302,60474,0,1,f +8302,60474,4,2,f +8302,6091,19,4,f +8302,61183,308,1,f +8302,61184,71,2,f +8302,6141,45,1,t +8302,6141,45,2,f +8302,6141,57,10,f +8302,6141,72,12,f +8302,6141,41,1,t +8302,6141,47,1,f +8302,6141,57,1,t +8302,6141,47,1,t +8302,6141,72,3,t +8302,6141,41,2,f +8302,61678,19,2,f +8302,63868,0,4,f +8302,63965,0,2,f +8302,64567,80,2,f +8302,64567,0,2,f +8302,64647,57,1,t +8302,64647,57,4,f +8302,64797,320,1,f +8302,6536,71,1,f +8302,6587,28,2,f +8302,87079,71,2,f +8302,87580,71,1,f +8302,970c00,28,1,f +8302,970c00pr0304,308,1,f +8302,973pr1802c01,19,1,f +8302,973pr1996c01,484,1,f +8302,973pr1997c01,0,1,f +8302,99930,484,1,f +8304,2460,4,1,f +8304,3020,14,1,f +8304,3021,1,1,f +8304,3039,47,1,f +8304,3710,14,2,f +8304,3747a,1,1,f +8304,4617b,14,1,f +8306,2412b,72,6,f +8306,2431,72,1,f +8306,2431,15,1,f +8306,2439,72,1,f +8306,2444,4,2,f +8306,2495,4,1,f +8306,2496,0,1,f +8306,2540,0,1,f +8306,2555,15,1,f +8306,2780,0,2,f +8306,2780,0,1,t +8306,2921,0,2,f +8306,3002,15,1,f +8306,3003,15,1,f +8306,3004,15,2,f +8306,3005,15,4,f +8306,3005,25,10,f +8306,3009,25,5,f +8306,3009,15,2,f +8306,3010,15,3,f +8306,30162,72,2,f +8306,3020,15,5,f +8306,3020,25,2,f +8306,3021,0,1,f +8306,3022,71,5,f +8306,30236,71,1,f +8306,30237a,15,2,f +8306,3024,46,1,f +8306,3024,36,2,f +8306,3032,25,2,f +8306,3033,25,1,f +8306,30377,0,1,t +8306,30377,0,1,f +8306,30383,72,2,f +8306,3040b,25,2,f +8306,30414,72,1,f +8306,3068b,72,1,f +8306,3069b,46,2,f +8306,32000,15,2,f +8306,32028,15,6,f +8306,3626bpr0270,14,1,f +8306,3660,72,4,f +8306,3665,15,4,f +8306,3666,25,4,f +8306,3794a,15,2,f +8306,3795,25,3,f +8306,3829c01,14,1,f +8306,3836,70,1,f +8306,3837,0,1,f +8306,3937,4,2,f +8306,40620,71,2,f +8306,4070,71,2,f +8306,4079,70,1,f +8306,4176,40,1,f +8306,4215b,25,4,f +8306,4282,72,3,f +8306,43093,1,2,f +8306,43337,72,3,f +8306,44567a,71,2,f +8306,44570,71,1,f +8306,4460a,25,2,f +8306,4485,0,1,f +8306,4488,0,4,f +8306,4740,72,1,f +8306,4865a,15,2,f +8306,50745,72,4,f +8306,52031,25,1,f +8306,54200,15,2,f +8306,54200,46,10,f +8306,54200,46,2,t +8306,54200,72,2,f +8306,54200,72,1,t +8306,54200,15,1,t +8306,55013,72,2,f +8306,59718,9999,1,t +8306,6014b,71,4,f +8306,6015,0,4,f +8306,6091,72,2,f +8306,6134,1,2,f +8306,6141,19,5,f +8306,6141,70,1,t +8306,6141,72,1,t +8306,6141,72,5,f +8306,6141,70,5,f +8306,6141,19,1,t +8306,6180,0,1,f +8306,6231,15,2,f +8306,6536,0,4,f +8306,6541,71,2,f +8306,6636,72,4,f +8306,970c00,2,1,f +8306,973pr1182c01,25,1,f +8307,3020,0,2,f +8307,3020,14,1,f +8307,3021,4,1,f +8307,3022,14,1,f +8307,30602,25,1,f +8307,3660,14,3,f +8307,3660,0,1,f +8307,3747b,25,1,f +8307,3794a,14,1,f +8307,4070,14,2,f +8307,4286,4,1,f +8307,4286,14,2,f +8307,43722,14,1,f +8307,43723,14,1,f +8307,44301a,0,2,f +8307,44302a,0,2,f +8307,48183,4,1,f +8307,6141,0,1,t +8307,6141,15,1,t +8307,6141,15,2,f +8307,6141,0,2,f +8309,2357,70,1,f +8309,2417,10,2,f +8309,2423,2,2,f +8309,3003,70,1,f +8309,3004,70,2,f +8309,3020,27,2,f +8309,3022,70,2,f +8309,3023,70,3,f +8309,3039,70,1,f +8309,3040b,70,2,f +8309,3069b,2,4,f +8309,3070b,1,1,f +8309,3623,70,3,f +8309,3710,19,1,f +8309,4070,70,2,f +8309,4733,15,1,f +8309,49668,15,2,f +8309,49668,191,1,f +8309,54200,1,2,f +8309,54200,71,2,f +8309,6141,15,12,f +8309,6141,29,8,f +8309,88292,19,3,f +8309,98138pr0008,15,2,f +8310,2419,0,1,f +8310,2432,1,1,f +8310,2507pb01,57,1,f +8310,2507pb04,0,1,f +8310,2547,8,1,f +8310,2548,8,1,f +8310,2607,0,1,f +8310,2609a,1,1,f +8310,30014,0,2,f +8310,3004,1,1,f +8310,3008,1,2,f +8310,3020,1,1,f +8310,3022,0,1,f +8310,3023,0,5,f +8310,3023,4,2,f +8310,3024,1,2,f +8310,3024,0,4,f +8310,3031,0,1,f +8310,3038,0,2,f +8310,30385,383,1,f +8310,3039pb019,1,1,f +8310,3298,1,1,f +8310,3587pb02,0,1,f +8310,3612,1,6,f +8310,3612,0,2,f +8310,3622,1,2,f +8310,3623,0,2,f +8310,3623,1,2,f +8310,3626bp7a,14,1,f +8310,3659,0,2,f +8310,37,383,2,f +8310,3710,1,2,f +8310,3710,0,3,f +8310,3749,7,1,f +8310,3935,0,1,f +8310,3936,0,1,f +8310,4081b,0,2,f +8310,4085c,1,2,f +8310,412,57,4,f +8310,4220,1,1,f +8310,4221,0,2,f +8310,4282,0,1,f +8310,4315,0,2,f +8310,4345b,57,1,f +8310,4346,57,1,f +8310,4589,1,4,f +8310,4623,1,2,f +8310,4854,0,2,f +8310,4855,0,1,f +8310,4859,4,1,f +8310,57467,383,2,f +8310,59275,0,2,f +8310,6040,0,1,f +8310,6041,57,1,f +8310,6058,0,1,f +8310,6064,2,1,f +8310,6065,4,1,f +8310,6089,0,1,f +8310,6090,4,1,f +8310,6217,1,1,f +8310,73092,0,2,f +8310,970x024,0,1,f +8310,973pb0075c01,0,1,f +8311,122c01,7,4,f +8311,3001,1,3,f +8311,3002,1,2,f +8311,3003,1,2,f +8311,3003,15,2,f +8311,3004,15,6,f +8311,3004,1,4,f +8311,3004p06,1,2,f +8311,3004p06,15,5,f +8311,3005,1,4,f +8311,3008,1,4,f +8311,3009,15,4,f +8311,3010,1,2,f +8311,3010,15,3,f +8311,3020,1,3,f +8311,3020,15,5,f +8311,3021,15,1,f +8311,3021,1,4,f +8311,3022,15,3,f +8311,3022,1,4,f +8311,3023,1,10,f +8311,3023,15,11,f +8311,3024,15,7,f +8311,3024,1,6,f +8311,3024,36,8,f +8311,3028,15,1,f +8311,3029,15,1,f +8311,3033,15,1,f +8311,3034,7,1,f +8311,3034,15,1,f +8311,3035,33,1,f +8311,3039,1,4,f +8311,3039p23,15,1,f +8311,3039p23,1,1,f +8311,3039p34,15,1,f +8311,3040b,15,4,f +8311,3062b,36,14,f +8311,3062b,46,4,f +8311,3062b,34,4,f +8311,3066,33,8,f +8311,3068b,1,3,f +8311,3069b,15,7,f +8311,3069b,1,7,f +8311,3070b,15,2,f +8311,3298,1,4,f +8311,3298p90,1,1,f +8311,3460,15,5,f +8311,3479,15,3,f +8311,3623,1,4,f +8311,3623,15,5,f +8311,3626apr0001,14,5,f +8311,3660,15,2,f +8311,3666,1,4,f +8311,3666,15,2,f +8311,3710,1,6,f +8311,3710,15,5,f +8311,3795,1,5,f +8311,3795,15,4,f +8311,3829c01,1,4,f +8311,3830,1,4,f +8311,3831,1,4,f +8311,3832,15,2,f +8311,3832,1,2,f +8311,3838,4,1,f +8311,3838,14,2,f +8311,3838,15,2,f +8311,3839b,15,4,f +8311,3839b,1,1,f +8311,3842a,4,1,f +8311,3842a,15,2,f +8311,3842a,14,2,f +8311,3895,1,2,f +8311,3933a,15,3,f +8311,3933a,1,2,f +8311,3934a,15,3,f +8311,3934a,1,2,f +8311,3937,15,3,f +8311,3938,15,3,f +8311,3940b,0,3,f +8311,3941,15,2,f +8311,3943b,1,1,f +8311,3943b,15,4,f +8311,3956,1,3,f +8311,3956,15,2,f +8311,3957a,1,5,f +8311,3957a,7,1,f +8311,3957a,15,8,f +8311,3959,7,1,f +8311,3959,15,2,f +8311,3962a,0,2,f +8311,3963,15,4,f +8311,3963,1,2,f +8311,4032a,0,7,f +8311,4079,1,1,f +8311,4081a,1,20,f +8311,4081a,15,10,f +8311,4085a,7,2,f +8311,4085a,15,4,f +8311,4162,15,3,f +8311,4175,1,2,f +8311,4175,7,1,f +8311,4213,1,1,f +8311,4228,15,2,f +8311,4228,33,2,f +8311,4229,0,6,f +8311,4285a,1,1,f +8311,4286,1,2,f +8311,4287,1,2,f +8311,4288,0,8,f +8311,4315,1,3,f +8311,4345a,1,2,f +8311,4346,1,2,f +8311,4349,0,1,f +8311,4360,15,4,f +8311,4474,33,2,f +8311,4475,15,2,f +8311,4476a,1,4,f +8311,4477,15,4,f +8311,4479,0,1,f +8311,5102c12,0,1,f +8311,6099p03,7,1,f +8311,6141,34,6,f +8311,6141,36,7,f +8311,970c00,4,1,f +8311,970c00,14,2,f +8311,970c00,15,2,f +8311,973p90c02,4,1,f +8311,973p90c04,14,2,f +8311,973p90c05,15,2,f +8312,44814,178,1,f +8314,10197,0,1,f +8314,10928,72,2,f +8314,11214,72,2,f +8314,11946,28,2,f +8314,11947,28,2,f +8314,15100,0,1,f +8314,15462,28,1,f +8314,19086,72,1,f +8314,21755,148,2,f +8314,22961,308,2,f +8314,24010,0,1,f +8314,24124,28,1,f +8314,24250,28,1,f +8314,24316,70,2,f +8314,24902,28,1,f +8314,2736,71,2,f +8314,2780,0,3,f +8314,2780,0,1,t +8314,32034,0,1,f +8314,32062,4,3,f +8314,32072,0,3,f +8314,32123b,71,1,t +8314,32123b,71,1,f +8314,33299a,0,1,f +8314,3705,0,2,f +8314,3706,0,2,f +8314,41677,72,1,f +8314,43093,1,1,f +8314,53585,0,2,f +8314,57585,71,1,f +8314,59443,0,3,f +8314,59900,0,4,f +8314,60483,72,1,f +8314,62462,179,1,f +8314,6558,1,4,f +8314,74261,72,2,f +8314,87082,0,1,f +8314,90607,0,2,f +8314,90609,0,4,f +8314,90615,72,2,f +8314,90638,19,2,f +8314,90639,19,4,f +8314,90641,308,1,f +8314,90641,19,1,f +8314,90652,28,1,f +8314,90661,308,2,f +8314,93571,0,1,f +8314,93575,78,2,f +8314,98577,72,1,f +8318,298c02,0,2,f +8318,3020,7,1,f +8318,3021,7,1,f +8318,3022,7,2,f +8318,3023,7,2,f +8318,3039p23,7,1,f +8318,3039p34,7,1,f +8318,3040b,7,6,f +8318,3069bp25,7,3,f +8318,3623,0,2,f +8318,3679,7,1,f +8318,3680,0,1,f +8318,3700,7,2,f +8318,3749,7,2,f +8318,3839b,7,1,f +8318,3937,0,2,f +8318,3938,0,2,f +8318,3941,0,2,f +8318,3959,0,1,f +8318,4006,0,1,f +8318,4032a,7,1,f +8318,4070,7,6,f +8318,4085b,7,2,f +8318,4085b,0,3,f +8318,4275b,7,2,f +8318,4531,7,2,f +8318,4589,0,4,f +8318,4590,7,1,f +8318,4595,0,1,f +8318,4623,0,1,f +8318,6141,34,2,f +8318,73983,7,2,f +8319,5306bc020,0,1,f +8319,5306bc036,0,1,f +8319,879,7,1,f +8320,4510,0,4,f +8320,4511,4,2,f +8321,2420,0,6,f +8321,2431,0,6,f +8321,2445,0,1,f +8321,3004,2,2,f +8321,3004,4,2,f +8321,3004,14,7,f +8321,3004,73,2,f +8321,3004,1,2,f +8321,3004,15,4,f +8321,3005,2,2,f +8321,3005,15,16,f +8321,3005,27,2,f +8321,3005,47,5,f +8321,3005,0,26,f +8321,3009,15,16,f +8321,3010,14,4,f +8321,3023,1,3,f +8321,3023,2,1,f +8321,3023,4,2,f +8321,3023,15,3,f +8321,3024,0,6,f +8321,3024,15,4,f +8321,3024,72,1,f +8321,3028,72,2,f +8321,3029,0,2,f +8321,30414,15,4,f +8321,3065,47,4,f +8321,3068b,71,11,f +8321,3068b,15,1,f +8321,3069b,71,6,f +8321,3069b,14,6,f +8321,3070b,14,2,f +8321,3070b,72,1,f +8321,32000,15,4,f +8321,3460,0,2,f +8321,3622,15,4,f +8321,3622,14,1,f +8321,3623,0,2,f +8321,3666,71,2,f +8321,3666,15,8,f +8321,3794b,14,2,f +8321,3794b,15,2,f +8321,3941,47,2,f +8321,4070,14,1,f +8321,4070,47,2,f +8321,4162,0,6,f +8321,44728,0,1,f +8321,4477,71,4,f +8321,4589,2,2,f +8321,54200,0,1,f +8321,54200,40,1,f +8321,54200,4,2,f +8321,60581,47,1,f +8321,60849,71,2,f +8321,6111,15,2,f +8321,6141,41,2,f +8321,6141,27,2,f +8321,6141,19,2,f +8321,6141,29,2,f +8321,6141,47,3,f +8321,6141,71,2,f +8321,6141,4,2,f +8321,6141,70,4,f +8321,6141,14,2,f +8321,6141,34,2,f +8321,6141,25,2,f +8321,6141,1,2,f +8321,6141,72,2,f +8321,6231,14,1,f +8321,87087,15,8,f +8321,87544,47,8,f +8321,87580,14,7,f +8321,87580,71,2,f +8321,92593,0,2,f +8321,98138,47,6,f +8322,2412b,7,1,f +8322,2419,4,1,f +8322,2431,4,3,f +8322,2717,0,1,f +8322,2723,15,1,f +8322,2743,4,2,f +8322,2780,0,3,f +8322,2790,0,1,f +8322,2791,7,1,f +8322,2817,4,1,f +8322,2819,7,1,f +8322,2850a,47,1,f +8322,2851,14,1,f +8322,2852,7,1,f +8322,2853,7,2,f +8322,2905,0,1,f +8322,2994,15,4,f +8322,3023,0,1,f +8322,3040b,4,2,f +8322,3068b,4,1,f +8322,3068b,0,1,f +8322,32002,8,1,f +8322,32062,0,2,f +8322,32064a,0,1,f +8322,32068,7,2,f +8322,32069,0,2,f +8322,32073,0,3,f +8322,32123b,7,9,f +8322,32123b,7,2,t +8322,3623,0,1,f +8322,3647,7,2,f +8322,3648a,7,1,f +8322,3666,4,1,f +8322,3700,7,1,f +8322,3700,4,3,f +8322,3701,4,1,f +8322,3702,4,3,f +8322,3705,0,1,f +8322,3707,0,2,f +8322,3707,0,1,t +8322,3708,0,1,f +8322,3710,0,1,f +8322,3710,4,2,f +8322,3713,7,2,f +8322,3749,7,8,f +8322,3795,4,2,f +8322,3895,4,2,f +8322,4229,0,1,f +8322,4519,0,1,f +8322,6536,0,1,f +8322,6538b,7,4,f +8322,6558,0,2,f +8322,6578,0,4,f +8322,6632,4,2,f +8323,32062,0,1,t +8323,32062,0,1,f +8323,3749,19,1,f +8323,3749,19,1,t +8323,48989,71,1,f +8323,74261,72,2,f +8323,90608,0,2,f +8323,90609,72,2,f +8323,90617,0,4,f +8323,90625,0,2,f +8323,90639,148,4,f +8323,90640,0,2,f +8323,90641,148,1,f +8323,90650,10,2,f +8323,90652,148,1,f +8323,90661,10,2,f +8323,92222,15,2,f +8323,92223,10,3,f +8323,93575,15,2,f +8323,98578,35,1,f +8323,98602,35,1,f +8323,98603s01pr0002,10,1,f +8323,98608pr01,78,1,f +8324,2342,0,1,f +8324,2357,4,2,f +8324,2401,0,2,f +8324,2412b,42,14,f +8324,2418bpx1,42,1,f +8324,2419,8,5,f +8324,2420,4,2,f +8324,2431,8,2,f +8324,2432,0,1,f +8324,2458,4,1,f +8324,2460,6,2,f +8324,2476a,1,2,f +8324,2507,42,1,f +8324,2540,0,2,f +8324,2555,4,10,f +8324,2654,7,19,f +8324,298c03,0,2,f +8324,3001,4,5,f +8324,30014,0,2,f +8324,30037,8,1,f +8324,3004,6,11,f +8324,3004,0,1,f +8324,3005,0,4,f +8324,3009,0,1,f +8324,3010,1,3,f +8324,3010,0,2,f +8324,3010,4,2,f +8324,30198,8,1,f +8324,3020,6,2,f +8324,30200,0,1,f +8324,30202,8,3,f +8324,3021,4,2,f +8324,3022,6,7,f +8324,3023,1,1,f +8324,3023,6,6,f +8324,3031,0,1,f +8324,3032,4,1,f +8324,3037,0,3,f +8324,30385,383,2,f +8324,3039,8,18,f +8324,3039pc0,8,1,f +8324,3040b,8,4,f +8324,3062b,4,2,f +8324,3068b,8,5,f +8324,3068bpx14,0,3,f +8324,3069bp21,0,2,f +8324,3069bpa2,8,3,f +8324,32017,0,4,f +8324,3298pb020,0,1,f +8324,3460,0,2,f +8324,3612,0,4,f +8324,3622,0,4,f +8324,3623,6,3,f +8324,3626bpb0092,14,1,f +8324,3626bpb0108,14,1,f +8324,3626bpx113,14,1,f +8324,3639,0,1,f +8324,3640,0,1,f +8324,3660,0,3,f +8324,3673,7,2,f +8324,3679,7,2,f +8324,3680,4,2,f +8324,37,383,2,f +8324,3700,4,3,f +8324,3710,0,3,f +8324,3747a,0,1,f +8324,3749,7,3,f +8324,3794a,4,2,f +8324,3830,4,2,f +8324,3831,4,2,f +8324,3933,8,3,f +8324,3934,8,3,f +8324,3935,8,1,f +8324,3936,8,1,f +8324,3941,42,5,f +8324,4070,4,2,f +8324,4081b,0,1,f +8324,412,42,2,f +8324,4220,0,2,f +8324,4221,0,6,f +8324,4286,0,2,f +8324,4315,0,1,f +8324,4345b,42,2,f +8324,4346px6,42,2,f +8324,4623,0,5,f +8324,4740,42,2,f +8324,4859,8,1,f +8324,5102c19,7,1,f +8324,57467,383,8,f +8324,59275,7,6,f +8324,6040,0,3,f +8324,6041,42,5,f +8324,6106,8,2,f +8324,6111,0,4,f +8324,6141,42,1,t +8324,6141,42,6,f +8324,6232,4,2,f +8324,6541,0,2,f +8324,970x026,4,1,f +8324,970x026,6,2,f +8324,973pb0046c01,8,1,f +8324,973pb0048c01,8,1,f +8324,973px169c01,8,1,f +8325,10199,10,1,f +8325,12651,4,2,f +8325,15957,322,1,f +8325,16685,14,1,f +8325,18816,322,1,f +8325,19361,15,1,f +8325,19430,1,1,f +8325,20302,25,1,f +8325,2302,1,1,f +8325,3011,14,1,f +8325,3011,1,2,f +8325,3011,27,2,f +8325,3437,5,2,f +8325,3437,25,4,f +8325,3437,4,2,f +8325,3437,322,4,f +8325,3437,27,4,f +8325,3437,484,2,f +8325,3437,85,2,f +8325,3437,14,5,f +8325,3437pb044,29,1,f +8325,40554,14,1,f +8325,4672,14,1,f +8325,47510pr0001,29,1,f +8325,47511pr0002c02,1,1,f +8325,51269,71,1,f +8325,61257,14,1,f +8325,61649,14,1,f +8325,61649,4,1,f +8325,6510,10,2,f +8325,6510,14,2,f +8325,6510,5,2,f +8325,6510,25,2,f +8325,6510,4,2,f +8325,76371,14,4,f +8325,76371,4,2,f +8325,87084,4,2,f +8325,90265,5,1,f +8325,98223,4,1,f +8329,3022,72,1,f +8329,3794b,15,2,f +8329,3794b,4,2,f +8329,4081b,4,2,f +8329,48183,15,1,f +8329,54200,40,1,f +8329,54200,40,1,t +8331,jaykomask,9999,1,f +8332,2339,15,2,f +8332,2339,4,1,f +8332,2357,2,1,f +8332,2357,6,1,f +8332,2357,19,1,f +8332,2362b,0,1,f +8332,2362b,8,1,f +8332,2376,1,1,f +8332,2412b,8,13,f +8332,2413,8,1,f +8332,2431,6,1,f +8332,2431,27,1,f +8332,2431,18,1,f +8332,2432,8,1,f +8332,2453a,15,3,f +8332,2454a,484,3,f +8332,2456,1,2,f +8332,2456,14,2,f +8332,2540,6,1,f +8332,2540,7,1,f +8332,2555,27,1,f +8332,2555,6,3,f +8332,2555,320,3,f +8332,2555,19,1,f +8332,2654,33,1,f +8332,2654,4,2,f +8332,2877,7,1,f +8332,2877,135,1,f +8332,2877,8,1,f +8332,2877,15,3,f +8332,3001,226,1,f +8332,3001,0,2,f +8332,3001,4,6,f +8332,3001,70,2,f +8332,3001,1,6,f +8332,3001,73,2,f +8332,3001,13,1,f +8332,3001,27,2,f +8332,3001,14,6,f +8332,3001,15,6,f +8332,3001,2,2,f +8332,3001,72,2,f +8332,3002,72,2,f +8332,3002,0,2,f +8332,3002,4,4,f +8332,3002,27,2,f +8332,3002,15,4,f +8332,3002,1,4,f +8332,3002,70,2,f +8332,3002,73,2,f +8332,3002,484,2,f +8332,3002,14,4,f +8332,3002,2,2,f +8332,3003,14,14,f +8332,3003,15,14,f +8332,3003,4,14,f +8332,3003,27,6,f +8332,3003,72,6,f +8332,3003,2,8,f +8332,3003,73,6,f +8332,3003,0,8,f +8332,3003,70,6,f +8332,3003,22,2,f +8332,3003,1,12,f +8332,3004,22,1,f +8332,3004,15,22,f +8332,3004,71,10,f +8332,3004,0,8,f +8332,3004,484,1,f +8332,3004,4,22,f +8332,3004,14,22,f +8332,3004,70,10,f +8332,3004,1,20,f +8332,3004,2,8,f +8332,3004,3,1,f +8332,3004,27,10,f +8332,3004,73,4,f +8332,3004,72,10,f +8332,3005,484,1,f +8332,3005,1,14,f +8332,3005,72,6,f +8332,3005,71,8,f +8332,3005,378,2,f +8332,3005,6,5,f +8332,3005,73,9,f +8332,3005,118,1,f +8332,3005,462,1,f +8332,3005,2,8,f +8332,3005,70,6,f +8332,3005,27,6,f +8332,3005,4,14,f +8332,3005,0,8,f +8332,3005pe1,15,2,f +8332,3005pe1,14,2,f +8332,3007,19,1,f +8332,3008,1,2,f +8332,3008,15,2,f +8332,3008,14,2,f +8332,3009,14,2,f +8332,3009,15,2,f +8332,3009,4,2,f +8332,3009,1,2,f +8332,3010,1,6,f +8332,3010,14,4,f +8332,3010,15,6,f +8332,3010,4,4,f +8332,3010p01,14,1,f +8332,30136,2,2,f +8332,30137,7,2,f +8332,30141,8,1,f +8332,30173a,0,1,f +8332,3020,71,2,f +8332,3020,4,2,f +8332,3020,73,3,f +8332,3021,4,2,f +8332,3021,73,3,f +8332,3022,73,4,f +8332,3022,27,1,f +8332,3022,4,4,f +8332,3022,71,4,f +8332,3022,22,3,f +8332,3022,72,3,f +8332,3023,335,1,f +8332,3023,73,1,f +8332,3023,36,1,f +8332,30236,6,1,f +8332,3024,73,1,f +8332,3024,503,2,f +8332,3032,4,2,f +8332,30367b,0,1,f +8332,30367b,25,2,f +8332,30367b,4,2,f +8332,30367b,19,2,f +8332,3038,8,1,f +8332,3039,70,2,f +8332,3039,73,2,f +8332,3039,14,2,f +8332,3040b,14,2,f +8332,3040b,27,2,f +8332,3040b,70,2,f +8332,30414,7,1,f +8332,3044c,0,1,f +8332,3045,8,1,f +8332,3048c,6,1,f +8332,30505,19,1,f +8332,3062b,272,2,f +8332,3062b,0,2,f +8332,3062b,41,1,f +8332,3062b,73,1,f +8332,3063b,4,1,f +8332,3063b,7,1,f +8332,3065,45,1,f +8332,3068b,27,1,f +8332,3069b,272,1,f +8332,3069b,6,1,f +8332,3069b,73,3,f +8332,3069bp03,7,1,f +8332,3070b,46,1,f +8332,32000,4,1,f +8332,3245b,14,2,f +8332,3245b,7,2,f +8332,3297,1,1,f +8332,3297,0,1,f +8332,3298,8,4,f +8332,3298,14,2,f +8332,3298,25,1,f +8332,33243,15,1,f +8332,3614b,7,2,f +8332,3622,462,1,f +8332,3622,4,2,f +8332,3622,1,4,f +8332,3622,15,4,f +8332,3622,14,2,f +8332,3623,1,2,f +8332,3626b,92,3,f +8332,3626b,0,20,f +8332,3626b,379,1,f +8332,3626b,320,1,f +8332,3626b,6,20,f +8332,3626b,10,3,f +8332,3633,4,1,f +8332,3659,13,2,f +8332,3659,8,1,f +8332,3660,14,4,f +8332,3660,70,2,f +8332,3665,22,1,f +8332,3665,14,4,f +8332,3665,70,2,f +8332,3675,0,2,f +8332,3700,25,1,f +8332,3700,8,1,f +8332,3700,378,2,f +8332,3700,366,1,f +8332,3700,73,1,f +8332,3710,73,1,f +8332,3747a,14,2,f +8332,3755,7,1,f +8332,3794a,2,1,f +8332,3795,71,2,f +8332,3795,4,2,f +8332,3836,6,1,f +8332,3839b,4,1,f +8332,3839b,320,1,f +8332,3841,8,1,f +8332,3846,379,1,f +8332,3957a,47,1,f +8332,3960,19,1,f +8332,4032a,19,2,f +8332,4032a,2,1,f +8332,4070,73,1,f +8332,4070,2,1,f +8332,4070,272,1,f +8332,4081b,19,1,f +8332,4081b,6,1,f +8332,4150,19,1,f +8332,4150,462,1,f +8332,4150,15,1,f +8332,4150,25,1,f +8332,4150ps5,7,1,f +8332,41539,19,1,f +8332,42022,8,4,f +8332,4215b,6,1,f +8332,4286,335,1,f +8332,4286,14,2,f +8332,4286,379,1,f +8332,4287,14,2,f +8332,43337,19,1,f +8332,43888,4,2,f +8332,43888,484,3,f +8332,4460a,7,2,f +8332,4515,4,1,f +8332,4515,1,1,f +8332,4522,0,2,f +8332,4589,1,1,f +8332,4589,378,1,f +8332,4740,4,1,f +8332,47458,1,1,f +8332,4854,0,2,f +8332,4864b,14,1,f +8332,4864b,40,1,f +8332,4865a,7,1,f +8332,4865a,25,4,f +8332,6005,15,2,f +8332,6091,15,1,f +8332,6091,8,8,f +8332,6091,7,1,f +8332,6112,7,1,f +8332,6141,8,7,f +8332,6141,272,2,f +8332,6182,6,1,f +8332,6215,15,1,f +8332,6215,71,4,f +8332,6231,7,8,f +8332,6231,14,3,f +8332,6231,25,2,f +8332,6231,19,1,f +8332,6541,1,3,f +8332,6636,27,1,f +8332,6636,7,1,f +8332,6636,1,1,f +8335,12602,1,8,f +8335,12602,4,8,f +8335,12602,14,8,f +8335,15449,0,1,f +8335,15450,7,1,f +8335,2222,14,1,f +8335,2223,14,1,f +8335,2223,0,1,f +8335,2224,4,1,f +8335,2224,70,1,f +8335,2291,10,1,f +8335,2300,4,2,f +8335,2300,10,1,f +8335,2300,25,1,f +8335,2300,14,1,f +8335,2300,1,2,f +8335,2301,4,2,f +8335,2301,10,4,f +8335,2301,14,4,f +8335,2301,1,2,f +8335,2302,10,10,f +8335,2302,1,10,f +8335,2302,14,10,f +8335,2302,4,10,f +8335,2312c02,4,3,f +8335,2312c02,1,3,f +8335,2312c02,14,3,f +8335,3011,10,20,f +8335,3011,25,10,f +8335,3011,1,20,f +8335,3011,27,10,f +8335,3011,14,24,f +8335,3011,73,10,f +8335,3011,4,20,f +8335,31111,4,2,f +8335,31213,14,2,f +8335,31213,4,2,f +8335,3437,10,50,f +8335,3437,4,40,f +8335,3437,25,20,f +8335,3437,14,40,f +8335,3437,73,20,f +8335,3437,1,40,f +8335,3437,27,20,f +8335,3437pe1,14,2,f +8335,3437pe1,4,2,f +8335,3437pe1,10,2,f +8335,40666,1,12,f +8335,40666,4,12,f +8335,40666,73,10,f +8335,40666,25,10,f +8335,40666,14,12,f +8335,40666,10,10,f +8335,40666,27,10,f +8335,4196,4,2,f +8335,4196,14,1,f +8335,4662,1,1,f +8335,47219,15,2,f +8335,47510pr0002,212,2,f +8335,47511pr0001,15,2,f +8335,47511pr0002c01,1,2,f +8335,61649,4,6,f +8335,6352,1,2,f +8335,6394,4,2,f +8335,6448,1,2,f +8335,6448,14,2,f +8335,90265,15,6,f +8337,606p02,7,2,f +8339,2412b,4,2,f +8339,2421,7,1,f +8339,2431,7,2,f +8339,2460,7,1,f +8339,2479,0,1,f +8339,2620,41,1,f +8339,3003,0,1,f +8339,3020,7,1,f +8339,3023,4,1,f +8339,3024,36,2,f +8339,3024,34,1,f +8339,3032,7,1,f +8339,3040b,0,1,f +8339,3069bp68,15,1,f +8339,3127,7,1,f +8339,3176,7,1,f +8339,3460,7,4,f +8339,3626bp04,14,1,f +8339,3660,0,2,f +8339,3710,4,3,f +8339,3794a,7,4,f +8339,3835,0,1,f +8339,3837,0,1,f +8339,3841,8,1,f +8339,3901,0,1,f +8339,3941,15,1,f +8339,3941,0,1,f +8339,4032a,14,1,f +8339,4032a,4,2,f +8339,4032a,2,1,f +8339,4032a,0,1,f +8339,4032a,15,1,f +8339,4083,7,1,f +8339,4315,4,1,f +8339,4449,6,2,f +8339,4477,0,1,f +8339,4488,0,1,f +8339,4599a,15,1,f +8339,4856a,0,1,f +8339,6091,4,2,f +8339,6117,7,1,f +8339,6140,7,4,f +8339,6141,0,2,f +8339,6141,46,1,f +8339,6141,46,1,t +8339,6141,0,1,t +8339,6541,7,1,f +8339,73037,4,1,f +8339,970c00,2,1,f +8339,973p73c01,2,1,f +8339,rb00164,0,1,f +8340,2654,47,2,f +8340,2780,0,2,t +8340,2780,0,107,f +8340,2905,72,4,f +8340,3003,0,1,f +8340,3004,4,2,f +8340,3008,4,1,f +8340,3032,0,2,f +8340,3034,14,1,f +8340,30367b,15,2,f +8340,30414,0,1,f +8340,3068b,0,1,f +8340,3069b,4,2,f +8340,3069b,0,1,f +8340,32009,14,10,f +8340,32013,71,2,f +8340,32013,14,6,f +8340,32014,72,2,f +8340,32014,4,2,f +8340,32016,0,2,f +8340,32016,4,2,f +8340,32034,0,3,f +8340,32054,71,12,f +8340,32062,4,22,f +8340,32063,0,2,f +8340,32068,0,2,f +8340,32069,0,2,f +8340,32073,71,5,f +8340,32123b,71,1,t +8340,32123b,71,2,f +8340,32140,0,12,f +8340,32184,15,2,f +8340,32192,0,7,f +8340,32195b,0,1,f +8340,32199,0,2,f +8340,32235,4,4,f +8340,32271,4,4,f +8340,32271,14,2,f +8340,32278,72,6,f +8340,32278,14,10,f +8340,32291,4,5,f +8340,32316,14,8,f +8340,32348,4,7,f +8340,32523,4,4,f +8340,32524,0,3,f +8340,32524,14,3,f +8340,32525,4,7,f +8340,32526,14,21,f +8340,32534,4,1,f +8340,32535,4,1,f +8340,32557,14,8,f +8340,3647,71,1,t +8340,3647,71,2,f +8340,3666,71,1,f +8340,3705,0,10,f +8340,3708,0,3,f +8340,3710,4,1,f +8340,3713,4,10,f +8340,3743,71,1,f +8340,3795,14,1,f +8340,3941,15,4,f +8340,40001,72,1,f +8340,4032a,0,4,f +8340,40490,14,4,f +8340,40490,0,1,f +8340,41239,0,6,f +8340,41669,36,4,f +8340,41677,0,4,f +8340,41678,71,5,f +8340,42003,14,14,f +8340,4274,71,10,f +8340,4274,71,1,t +8340,43093,1,35,f +8340,44350,4,3,f +8340,44351,4,3,f +8340,44352,4,1,f +8340,44353,4,1,f +8340,4477,14,1,f +8340,44771,0,2,f +8340,44772,0,4,f +8340,4519,71,6,f +8340,4599a,4,2,f +8340,46453,179,2,f +8340,48989,71,2,f +8340,52031,14,1,f +8340,55982,71,2,f +8340,56145,71,1,f +8340,56907,0,2,f +8340,59426,72,5,f +8340,6231,14,20,f +8340,6536,0,4,f +8340,6538b,71,2,f +8340,6538b,14,4,f +8340,6558,0,71,f +8340,6587,72,10,f +8340,6632,0,4,f +8340,78c11,179,2,f +8340,8146stk01,9999,1,t +8341,11153,73,4,f +8341,11153pr0001,73,16,f +8341,11816pr0002,78,1,f +8341,15470,297,1,f +8341,15470,297,1,t +8341,15673pr0001,226,1,f +8341,15744,297,4,f +8341,15745,45,4,f +8341,15745,45,1,t +8341,15875pr0003c01,212,1,f +8341,2397,72,1,f +8341,2412b,297,4,f +8341,2423,2,3,f +8341,2431,29,2,f +8341,2540,19,2,f +8341,3004,15,4,f +8341,30044,15,2,f +8341,30046,297,2,f +8341,30136,19,2,f +8341,30165,15,1,f +8341,3020,73,10,f +8341,3020,15,2,f +8341,3022,15,1,f +8341,3022,1,1,f +8341,3023,73,22,f +8341,3023,30,3,f +8341,3023,15,6,f +8341,30236,15,2,f +8341,3031,15,2,f +8341,3034,15,1,f +8341,3035,2,1,f +8341,3036,212,1,f +8341,30367c,297,1,f +8341,3039,15,4,f +8341,30565,2,4,f +8341,3062b,15,8,f +8341,3068b,29,2,f +8341,3068b,73,2,f +8341,3069bpr0055,15,1,f +8341,3070b,15,1,t +8341,3070b,15,4,f +8341,32556,19,4,f +8341,33291,10,3,f +8341,33291,5,1,t +8341,33291,5,4,f +8341,33291,10,1,t +8341,3626c,25,2,f +8341,3659,15,2,f +8341,3660,73,4,f +8341,3665,85,4,f +8341,3665,73,4,f +8341,3666,73,2,f +8341,3666,15,2,f +8341,3700,15,4,f +8341,3703,15,2,f +8341,3710,15,2,f +8341,3710,26,2,f +8341,3710,73,9,f +8341,3794a,297,4,f +8341,3821,212,2,f +8341,3822,212,2,f +8341,3942c,15,1,f +8341,4282,15,1,f +8341,4332,70,1,f +8341,4460b,15,2,f +8341,4738a,30,1,f +8341,4739a,30,1,f +8341,4740pr0001a,4,1,f +8341,59900,297,1,f +8341,59900,15,1,f +8341,60481,85,4,f +8341,6124,42,1,t +8341,6124,42,1,f +8341,61252,297,2,f +8341,6126b,41,1,f +8341,6141,41,1,t +8341,6141,297,2,t +8341,6141,297,6,f +8341,6141,41,4,f +8341,6191,29,2,f +8341,63864,15,4,f +8341,64644,297,2,f +8341,64647,57,1,t +8341,64647,57,2,f +8341,85080,15,4,f +8341,85984,15,3,f +8341,85984,30,2,f +8341,85984,29,2,f +8341,87087,85,4,f +8341,87087,15,12,f +8341,87580,15,2,f +8341,88292,15,2,f +8341,92456pr0024c01,78,1,f +8341,92950,15,1,f +8341,93085pr02,15,1,f +8341,93095,29,2,f +8341,93273,15,4,f +8341,93609,15,1,t +8341,93609,15,4,f +8341,98379pr0002,297,1,f +8341,98379pr0002,297,1,t +8342,11090,72,3,f +8342,14417,72,2,f +8342,14704,71,2,f +8342,15303,33,2,f +8342,15303,57,3,f +8342,15400,72,2,f +8342,15573,72,2,f +8342,15706,72,2,f +8342,18031,179,1,f +8342,22385pr0024,47,1,f +8342,22385pr0025,33,1,f +8342,22385pr0026,46,1,f +8342,22391,179,1,f +8342,22402,179,1,f +8342,22408,179,1,f +8342,3004,73,1,f +8342,3021,72,2,f +8342,3021,272,2,f +8342,3022,73,2,f +8342,3023,1,5,f +8342,3062b,57,1,f +8342,33057,484,2,f +8342,3626cpr1786,14,1,f +8342,3937,1,2,f +8342,41769,272,1,f +8342,41770,272,1,f +8342,41879a,1,1,f +8342,4287,72,2,f +8342,44728,72,2,f +8342,50950,272,2,f +8342,59233pat0001,41,1,f +8342,60897,1,2,f +8342,6134,71,2,f +8342,6141,57,1,t +8342,6141,57,4,f +8342,85984,1,2,f +8342,87580,272,3,f +8342,88072,71,3,f +8342,89520,179,1,f +8342,92746,84,1,f +8342,973pr3153c01,1,1,f +8342,98368,4,1,f +8342,99781,0,2,f +8343,2412b,14,2,f +8343,2412b,0,2,f +8343,2436,0,1,f +8343,2436,14,1,f +8343,2540,14,1,f +8343,2540,0,2,f +8343,2877,0,2,f +8343,298c02,14,2,f +8343,3001,14,1,f +8343,3001,8,1,f +8343,3002,14,2,f +8343,30027b,14,4,f +8343,30028,0,4,f +8343,3003,8,1,f +8343,3003,14,2,f +8343,3004,8,2,f +8343,3004,14,4,f +8343,3005,14,2,f +8343,3010,14,4,f +8343,3020,14,4,f +8343,3020,0,4,f +8343,3021,14,2,f +8343,3021,8,4,f +8343,3021,0,2,f +8343,3022,14,2,f +8343,3022,8,4,f +8343,3023,47,3,f +8343,3023,8,10,f +8343,3034,0,1,f +8343,3034,8,1,f +8343,3039,47,2,f +8343,3039,14,2,f +8343,3040b,0,2,f +8343,3040b,14,4,f +8343,3062b,7,2,f +8343,3062b,0,1,f +8343,3065,47,2,f +8343,3068b,0,2,f +8343,3069b,0,3,f +8343,3176,0,1,f +8343,3460,14,2,f +8343,3622,14,2,f +8343,3622,8,2,f +8343,3623,14,2,f +8343,3623,8,4,f +8343,3641,0,8,f +8343,3660,8,2,f +8343,3665,8,2,f +8343,3666,8,2,f +8343,3679,7,1,f +8343,3680,14,1,f +8343,3710,14,4,f +8343,3788,14,3,f +8343,3794a,0,2,f +8343,3795,8,2,f +8343,3937,0,2,f +8343,3938,14,2,f +8343,3941,7,3,f +8343,3942c,7,1,f +8343,4032a,8,1,f +8343,4070,14,4,f +8343,4081b,0,2,f +8343,4081b,14,4,f +8343,4085c,0,2,f +8343,41769,14,1,f +8343,41770,14,1,f +8343,41855,14,2,f +8343,4286,14,4,f +8343,43719,14,1,f +8343,4589,0,4,f +8343,4600,0,4,f +8343,4623,0,1,f +8343,4624,14,8,f +8343,4865a,0,4,f +8343,6014b,14,4,f +8343,6015,0,4,f +8343,6141,46,1,t +8343,6141,0,2,f +8343,6141,36,4,f +8343,6141,0,1,t +8343,6141,36,1,t +8343,6141,47,2,f +8343,6141,46,2,f +8343,6141,4,1,t +8343,6141,47,1,t +8343,6141,4,2,f +8343,6157,8,4,f +8343,6231,0,4,f +8344,43093,1,1,f +8344,4740,47,1,f +8344,4740,47,1,t +8344,47430,85,2,f +8344,47431,85,2,f +8344,47432,85,2,f +8344,47452,71,2,f +8344,47454,71,2,f +8344,47455,14,10,f +8344,47456,85,4,f +8344,47457,85,4,f +8344,47457pb02,85,2,f +8344,47459,178,1,f +8344,47469,85,1,f +8344,47474,71,1,f +8344,47477c01pb02,85,1,f +8344,47501,85,4,f +8344,bb153pb01,71,1,f +8344,rb00188,9999,1,f +8345,11055,71,1,f +8345,11090,72,2,f +8345,11477,19,4,f +8345,15573,19,2,f +8345,15672,19,2,f +8345,18677,71,4,f +8345,19232pr0001,70,1,f +8345,2412b,72,2,f +8345,2412b,70,4,f +8345,2432,70,1,f +8345,2540,72,1,f +8345,2570,148,1,f +8345,2817,71,2,f +8345,3020,72,1,f +8345,3021,70,2,f +8345,3022,19,1,f +8345,3023,19,4,f +8345,3024,19,2,f +8345,3024,19,1,t +8345,30367c,72,2,f +8345,30602,40,1,f +8345,3068b,19,1,f +8345,3660,19,1,f +8345,3705,0,2,f +8345,3795,19,1,f +8345,3839b,71,1,f +8345,41769,71,1,f +8345,41770,71,1,f +8345,44567a,72,2,f +8345,44661,72,1,f +8345,44728,72,2,f +8345,48336,71,1,f +8345,51739,19,2,f +8345,54200,72,2,f +8345,54200,72,1,t +8345,59900,35,2,f +8345,60471,71,2,f +8345,61184,71,2,f +8345,61252,71,1,f +8345,6141,179,3,f +8345,6141,179,1,t +8345,63864,19,2,f +8345,76766,71,1,f +8345,85984,19,4,f +8345,970c00pr0781,70,1,f +8345,973c32,70,1,f +8345,98100,71,2,f +8345,99207,71,5,f +8346,10247,72,2,f +8346,10928,72,1,f +8346,11478,0,7,f +8346,13971,71,1,f +8346,15413,0,6,f +8346,15462,28,8,f +8346,2431,15,1,f +8346,2780,0,121,f +8346,2780,0,3,t +8346,2819,71,1,f +8346,3068b,0,2,f +8346,32000,0,2,f +8346,32002,19,22,f +8346,32002,19,2,t +8346,32009,72,2,f +8346,32013,0,14,f +8346,32014,72,2,f +8346,32034,71,22,f +8346,32039,14,7,f +8346,32054,71,26,f +8346,32056,71,6,f +8346,32062,4,33,f +8346,32063,14,4,f +8346,32063,71,2,f +8346,32072,14,2,f +8346,32073,71,12,f +8346,32123b,71,29,f +8346,32123b,71,1,t +8346,32184,71,6,f +8346,32269,0,1,f +8346,32269,19,3,f +8346,32270,0,6,f +8346,32278,71,8,f +8346,32278,1,2,f +8346,32291,71,2,f +8346,32316,14,4,f +8346,32316,4,4,f +8346,32316,0,1,f +8346,32316,15,1,f +8346,32316,1,11,f +8346,32449,4,6,f +8346,32523,1,4,f +8346,32523,4,8,f +8346,32523,72,2,f +8346,32524,1,4,f +8346,32524,0,3,f +8346,32524,4,6,f +8346,32525,71,6,f +8346,32525,4,5,f +8346,32525,14,4,f +8346,32526,14,2,f +8346,32526,72,15,f +8346,32556,19,1,f +8346,33299a,0,4,f +8346,3648b,72,4,f +8346,3673,71,1,t +8346,3673,71,2,f +8346,3705,0,10,f +8346,3706,0,9,f +8346,3710,0,1,f +8346,3713,71,1,t +8346,3713,71,33,f +8346,3737,0,4,f +8346,3749,19,7,f +8346,40490,4,9,f +8346,40490,0,6,f +8346,40490,14,1,f +8346,41239,4,11,f +8346,41239,72,1,f +8346,41239,14,4,f +8346,41677,15,2,f +8346,41678,72,3,f +8346,42003,72,14,f +8346,4274,71,9,f +8346,4274,71,1,t +8346,43093,1,42,f +8346,43857,1,4,f +8346,43857,4,2,f +8346,44294,71,8,f +8346,44809,0,1,f +8346,4519,71,30,f +8346,48989,71,4,f +8346,53551,148,14,f +8346,55013,72,2,f +8346,56145,71,6,f +8346,59426,72,4,f +8346,59443,72,29,f +8346,60483,72,22,f +8346,60484,72,3,f +8346,60485,71,3,f +8346,6141,47,4,f +8346,6141,182,1,t +8346,6141,47,1,t +8346,6141,182,6,f +8346,6141,36,1,t +8346,6141,36,2,f +8346,61903,71,3,f +8346,61904,72,2,f +8346,61927b,71,2,f +8346,62462,4,9,f +8346,62531,0,1,f +8346,64782,1,2,f +8346,64782,14,2,f +8346,6536,14,16,f +8346,6538b,19,1,f +8346,6539,4,1,f +8346,6542b,72,2,f +8346,6558,1,66,f +8346,6575,72,1,f +8346,6587,28,5,f +8346,6589,19,1,f +8346,6589,19,1,t +8346,6628,0,2,f +8346,6629,4,6,f +8346,6629,1,8,f +8346,6632,72,7,f +8346,6641,4,1,f +8346,75c06,0,2,f +8346,85984,0,2,f +8346,87080,14,2,f +8346,87082,71,6,f +8346,87083,72,10,f +8346,87086,14,2,f +8346,87408,0,1,f +8346,87761,0,1,f +8346,92693,71,1,f +8346,92907,0,2,f +8346,94925,71,4,f +8346,99008,19,2,f +8346,99773,71,4,f +8347,122c01,7,2,f +8347,3003,1,2,f +8347,3004,1,5,f +8347,3004,15,1,f +8347,3004p20,1,2,f +8347,3004p90,1,2,f +8347,3008,1,2,f +8347,3009,1,1,f +8347,3010,1,3,f +8347,3010pr0924,1,2,f +8347,3020,15,2,f +8347,3020,7,4,f +8347,3020,1,6,f +8347,3021,7,4,f +8347,3021,1,2,f +8347,3022,1,2,f +8347,3023,1,8,f +8347,3023,15,2,f +8347,3024,36,2,f +8347,3024,34,2,f +8347,3027,7,1,f +8347,3030,7,3,f +8347,3030,46,1,f +8347,3032,7,1,f +8347,3039p23,7,1,f +8347,3039p34,7,1,f +8347,3062a,34,1,f +8347,3065,46,4,f +8347,3066,46,2,f +8347,3068b,1,4,f +8347,3069b,1,8,f +8347,3430c03,7,1,f +8347,3460,7,2,f +8347,3460,1,2,f +8347,3479,7,4,f +8347,3479,1,2,f +8347,3622,1,2,f +8347,3623,1,2,f +8347,3623,0,2,f +8347,3623,14,2,f +8347,3623,7,2,f +8347,3626apr0001,14,2,f +8347,3641,0,4,f +8347,3660,1,2,f +8347,3665,1,2,f +8347,3666,1,1,f +8347,3666,7,2,f +8347,3710,1,7,f +8347,3795,7,1,f +8347,3821,15,1,f +8347,3822,15,1,f +8347,3829c01,7,2,f +8347,3830,1,2,f +8347,3831,1,2,f +8347,3838,4,1,f +8347,3838,15,1,f +8347,3839a,7,1,f +8347,3842a,4,1,f +8347,3842a,15,1,f +8347,3933a,7,3,f +8347,3934a,7,3,f +8347,3937,1,2,f +8347,3938,1,2,f +8347,3939,46,2,f +8347,3939p91,1,1,f +8347,3940a,7,4,f +8347,3941,7,2,f +8347,3943a,7,2,f +8347,3956,1,2,f +8347,3957a,7,1,f +8347,3958,7,2,f +8347,3959,7,1,f +8347,3963,7,2,f +8347,4006,0,1,f +8347,970c00,15,1,f +8347,970c00,4,1,f +8347,973p90c02,4,1,f +8347,973p90c05,15,1,f +8348,3626bpr0387,14,1,f +8348,41334,0,1,f +8348,970c00,1,1,f +8348,973pr1244c01,73,1,f +8352,30381,0,1,f +8352,50231,0,1,f +8352,970c00pr0717,0,1,f +8352,973pr2766c01,0,1,f +8353,3183a,14,3,f +8353,3184,14,3,f +8353,3639,4,1,f +8353,3640,4,1,f +8354,2458,72,5,f +8354,2570,135,1,f +8354,2587pr0014,0,1,f +8354,2825,71,2,f +8354,30000,72,2,f +8354,3004,71,3,f +8354,3006,70,2,f +8354,30136,308,5,f +8354,3020,72,8,f +8354,3021,70,4,f +8354,3022,71,8,f +8354,3023,70,2,f +8354,30237a,71,2,f +8354,30273,80,1,f +8354,30275,70,1,f +8354,3031,70,1,f +8354,3035,72,2,f +8354,3035,288,2,f +8354,30363,70,1,f +8354,30383,72,6,f +8354,30386,0,48,f +8354,30386,71,16,f +8354,30395,72,1,f +8354,3048c,297,4,f +8354,30553,71,6,f +8354,3069b,72,64,f +8354,32001,71,8,f +8354,32002,72,1,t +8354,32002,72,2,f +8354,32009,0,1,f +8354,32062,4,4,f +8354,32064b,72,4,f +8354,32271,71,1,f +8354,32525,72,2,f +8354,32530,72,2,f +8354,32556,19,1,f +8354,3622,70,4,f +8354,3622,71,4,f +8354,3626bpr0348,14,1,f +8354,3626bpr0411,14,1,f +8354,3626bpr0500,14,1,f +8354,3626bpr0511,378,3,f +8354,3660,70,4,f +8354,3678b,72,8,f +8354,3700,70,6,f +8354,3710,70,6,f +8354,3737,0,1,f +8354,3738,72,1,f +8354,3794a,0,3,f +8354,3794a,272,4,f +8354,3795,308,56,f +8354,3832,72,3,f +8354,3844,80,2,f +8354,3846pr24,71,1,f +8354,3847,135,2,f +8354,3849,135,1,f +8354,3941,70,33,f +8354,4032a,72,35,f +8354,4162,72,1,f +8354,41677,72,4,f +8354,41678,71,1,f +8354,4274,1,2,f +8354,4274,1,1,t +8354,43899,71,4,f +8354,44294,71,8,f +8354,44728,72,2,f +8354,4495b,378,1,f +8354,4495b,272,1,f +8354,4495b,82,1,f +8354,4497,135,6,f +8354,4519,71,1,f +8354,47456,0,2,f +8354,49668,135,32,f +8354,54200,272,1,t +8354,54200,272,4,f +8354,54821,135,1,f +8354,57028c01,71,1,f +8354,57796,72,1,f +8354,59426,72,2,f +8354,60169,72,1,f +8354,60751,132,1,f +8354,60751,134,1,f +8354,60752,134,1,f +8354,61747,320,1,f +8354,6222,72,2,f +8354,6232,70,1,f +8354,63965,70,1,f +8354,6541,72,4,f +8354,6628,0,2,f +8354,73983,72,2,f +8354,970x026,72,1,f +8354,970x026,71,2,f +8354,970x199,70,3,f +8354,973pr0430c01,272,2,f +8354,973pr1349c01,70,1,f +8354,973pr1352c01,72,1,f +8355,367a,7,3,f +8357,22667,4,1,t +8357,22667,4,8,f +8357,2339,70,3,f +8357,2357,70,4,f +8357,2417,10,4,f +8357,30176,2,2,f +8357,3023,15,2,f +8357,3034,15,1,f +8357,3035,2,3,f +8357,3062b,15,4,f +8357,3062b,33,1,f +8357,33291,5,1,t +8357,33291,5,15,f +8357,33291,191,3,f +8357,33291,191,1,t +8357,33303,15,3,f +8357,33320,2,1,f +8357,3623,70,3,f +8357,3626cpr0645,14,1,f +8357,3626cpr0893,14,1,f +8357,3741,2,2,f +8357,3741,2,1,t +8357,3794b,15,4,f +8357,4623,4,1,f +8357,4871,15,2,f +8357,60481,70,3,f +8357,6126b,41,1,f +8357,6141,29,4,f +8357,6141,29,1,t +8357,6255,2,1,f +8357,62696,308,1,f +8357,64799,71,1,f +8357,85984,15,2,f +8357,86035,27,1,f +8357,87580,1,1,f +8357,92947,15,1,f +8357,970c00,25,1,f +8357,970c00,1,1,f +8357,973pr1573c01,15,1,f +8357,973pr1585c01,25,1,f +8358,10563,15,1,f +8358,15944,4,1,f +8358,16265,179,1,f +8358,18012,71,1,f +8358,18806,4,1,f +8358,21238,4,1,f +8358,21711,4,1,f +8358,22721,4,1,f +8358,45141,179,1,f +8358,6474,14,2,f +8358,76371,1,1,f +8358,98233,191,1,f +8360,2343,14,2,f +8360,2460,4,1,f +8360,2479,7,1,f +8360,3001,0,2,f +8360,3001,4,4,f +8360,3001,14,4,f +8360,3001,15,4,f +8360,3001,1,4,f +8360,3002,4,4,f +8360,3002,14,4,f +8360,3002,1,4,f +8360,3002,15,2,f +8360,3003,0,2,f +8360,3003,14,4,f +8360,3003,15,4,f +8360,3003,1,4,f +8360,3003,4,4,f +8360,3004,1,14,f +8360,3004,14,12,f +8360,3004,47,4,f +8360,3004,15,6,f +8360,3004,4,12,f +8360,3004,0,4,f +8360,3005,14,8,f +8360,3005,1,12,f +8360,3005,0,2,f +8360,3005,15,4,f +8360,3005,4,8,f +8360,3005pe1,4,2,f +8360,3008,4,2,f +8360,3008,1,2,f +8360,3008,14,2,f +8360,3009,14,2,f +8360,3009,1,4,f +8360,3009,15,2,f +8360,3009,0,2,f +8360,3009,4,2,f +8360,3009pb012,15,1,f +8360,3010,0,4,f +8360,3010,4,8,f +8360,3010,1,10,f +8360,3010,14,8,f +8360,3010,15,6,f +8360,3010px2,1,1,f +8360,3020,4,4,f +8360,3021,4,2,f +8360,3022,4,2,f +8360,3031,4,1,f +8360,3032,4,2,f +8360,3034,4,2,f +8360,3035,4,1,f +8360,3039,4,4,f +8360,3039,14,4,f +8360,3039,47,2,f +8360,3040b,4,4,f +8360,3040b,14,4,f +8360,3062b,15,6,f +8360,3081cc01,4,2,f +8360,3135,4,1,f +8360,3136,7,1,f +8360,3149c01,4,1,f +8360,3297,4,4,f +8360,3298,4,4,f +8360,3299,4,2,f +8360,3300,4,2,f +8360,3471,2,1,f +8360,3483,0,4,f +8360,3622,1,6,f +8360,3622,4,4,f +8360,3622,14,4,f +8360,3622,15,2,f +8360,3626bp02,14,1,f +8360,3626bpx19,14,1,f +8360,3633,14,4,f +8360,3641,0,4,f +8360,3660,4,4,f +8360,3660,14,4,f +8360,3665,14,4,f +8360,3665,4,4,f +8360,3666,4,4,f +8360,3710,4,4,f +8360,3730,4,1,f +8360,3731,4,1,f +8360,3741,2,2,f +8360,3742,4,1,t +8360,3742,15,1,t +8360,3742,15,3,f +8360,3742,4,3,f +8360,3823,47,1,f +8360,3829c01,0,1,f +8360,3853,4,4,f +8360,3854,15,8,f +8360,3856,2,4,f +8360,3861b,4,1,f +8360,3867,2,1,f +8360,3957a,15,2,f +8360,3960,1,1,f +8360,4079,0,1,f +8360,4485,1,1,f +8360,4495b,2,1,f +8360,4600,0,2,f +8360,4624,15,4,f +8360,6041,0,1,f +8360,6093,0,1,f +8360,6232,4,1,f +8360,6248,15,4,f +8360,6249,8,2,f +8360,970c00,2,1,f +8360,970c00,1,1,f +8360,973px2c01,1,1,f +8360,973px39c01,2,1,f +8362,2419,0,1,f +8362,2456,0,1,f +8362,2780,0,1,t +8362,2780,0,6,f +8362,2877,0,2,f +8362,298c02,4,2,f +8362,298c02,4,1,t +8362,3001,71,3,f +8362,3002,72,1,f +8362,3003,72,5,f +8362,30033,15,1,f +8362,3008,0,2,f +8362,3009,72,2,f +8362,3010,72,1,f +8362,3023,71,4,f +8362,3031,72,1,f +8362,3033,0,2,f +8362,3037,72,1,f +8362,3039,71,1,f +8362,3176,0,6,f +8362,32000,71,1,f +8362,32039,0,2,f +8362,32054,0,2,f +8362,32062,4,1,f +8362,32192,0,4,f +8362,32476,0,6,f +8362,3297,0,2,f +8362,3298,0,2,f +8362,3666,0,2,f +8362,3675,0,2,f +8362,3700,0,2,f +8362,3701,71,1,f +8362,3709,71,3,f +8362,3710,4,2,f +8362,3713,71,1,f +8362,3713,71,1,t +8362,3747b,0,2,f +8362,3794a,4,4,f +8362,3794a,0,4,f +8362,3832,71,2,f +8362,3960,57,1,f +8362,4032a,0,1,f +8362,40378,0,2,f +8362,40379,0,2,f +8362,41751,40,1,f +8362,41881,40,1,f +8362,42021,0,1,f +8362,42022,0,4,f +8362,42023,0,2,f +8362,4274,71,1,t +8362,4274,71,2,f +8362,4286,0,2,f +8362,43093,1,3,f +8362,44375a,41,1,f +8362,44813,135,2,f +8362,45425,135,2,f +8362,4589,15,4,f +8362,46667,72,1,f +8362,4733,71,2,f +8362,47337,135,6,f +8362,47507,0,1,f +8362,50914,15,2,f +8362,53451,15,1,t +8362,53451,15,12,f +8362,53451,4,4,f +8362,53451,4,1,t +8362,53989,0,8,f +8362,54821,182,4,f +8362,55236,320,4,f +8362,55236,21,4,f +8362,55237a,135,1,f +8362,55237b,135,1,f +8362,55237c,135,1,f +8362,55237d,135,1,f +8362,55237e,135,1,f +8362,55237f,135,1,f +8362,55237g,135,1,f +8362,55237h,135,1,f +8362,55237i,135,1,f +8362,55237j,135,1,f +8362,55237k,135,1,f +8362,55237l,135,1,f +8362,57555,46,3,f +8362,57556,135,1,f +8362,57563,135,3,f +8362,57564,0,2,f +8362,57585,71,1,f +8362,57587,143,2,f +8362,57910,72,6,f +8362,58176,36,1,t +8362,58176,36,2,f +8362,59426,72,1,f +8362,6538b,0,1,f +8364,820,15,1,f +8364,821,4,1,f +8364,822ac01,4,1,f +8365,2420,27,2,f +8365,2540,2,2,f +8365,2555,2,1,f +8365,3020,27,1,f +8365,3022,2,2,f +8365,3023,2,2,f +8365,3049b,2,1,f +8365,30552,2,2,f +8365,3623,2,1,f +8365,3660,27,1,f +8365,3700,2,1,f +8365,3710,27,3,f +8365,3749,19,1,f +8365,4085c,115,2,f +8365,41769,2,1,f +8365,41770,2,1,f +8365,44301a,27,1,f +8365,44302a,2,6,f +8365,44567a,2,3,f +8365,4519,71,1,f +8365,47674,42,1,f +8365,47675,27,1,f +8365,47676,27,1,f +8365,48183,2,2,f +8365,49668,15,2,f +8365,54200,34,6,f +8365,6126a,57,1,f +8365,6141,36,1,t +8365,6141,36,2,f +8365,6536,27,1,f +8369,2436,0,2,f +8369,2695,15,2,f +8369,2696,0,2,f +8369,2815,0,1,f +8369,2817,0,1,f +8369,2904,15,1,f +8369,3021,7,2,f +8369,3022,0,3,f +8369,3023,0,1,f +8369,3023,15,1,f +8369,3024,36,2,f +8369,3034,0,1,f +8369,3039,15,1,f +8369,3176,15,2,f +8369,3298,15,1,f +8369,3651,7,2,f +8369,3673,7,4,f +8369,3700,15,2,f +8369,3700,0,1,f +8369,3701,15,2,f +8369,3704,0,2,f +8369,3705,0,2,f +8369,3706,0,2,f +8369,3707,0,2,f +8369,3710,0,1,f +8369,3713,7,6,f +8369,3747a,15,1,f +8369,3747b,0,1,f +8369,3795,0,1,f +8369,3894,15,2,f +8369,4150p01,15,1,f +8369,4185,7,1,f +8369,4262,0,2,f +8369,4263,0,2,f +8369,4265a,7,8,f +8369,4273b,7,2,f +8369,4275b,0,2,f +8369,4276b,0,2,f +8369,6141,46,4,f +8369,73129,7,2,f +8371,9244,7,10,f +8372,3218,4,2,f +8372,trainsig2,4,1,f +8372,x489,4,1,f +8373,30556,4,1,f +8373,30599,0,1,f +8373,30600pb01,22,1,f +8373,30602pb013,22,1,f +8373,40607,8,1,f +8373,racerbase,4,1,f +8373,rb00168,0,2,f +8374,15379,0,66,f +8374,15379,0,2,t +8374,2432,72,1,f +8374,2585,71,1,f +8374,2780,0,5,f +8374,2780,0,1,t +8374,2905,14,2,f +8374,3021,14,2,f +8374,3022,14,1,f +8374,30395,72,1,f +8374,3069b,14,1,f +8374,32000,14,2,f +8374,32002,72,1,t +8374,32002,72,4,f +8374,32054,0,2,f +8374,32056,0,2,f +8374,32062,4,4,f +8374,32123b,14,1,t +8374,32123b,14,12,f +8374,32140,14,4,f +8374,32140,1,1,f +8374,32184,0,1,f +8374,32250,0,2,f +8374,32270,0,4,f +8374,32271,14,1,f +8374,32278,0,1,f +8374,32523,14,2,f +8374,32524,14,3,f +8374,32525,0,4,f +8374,32525,14,2,f +8374,32526,14,2,f +8374,32530,0,1,f +8374,33299a,0,4,f +8374,3647,72,1,t +8374,3647,72,3,f +8374,3702,4,1,f +8374,3705,0,1,f +8374,3706,0,1,f +8374,3713,71,9,f +8374,3713,71,1,t +8374,3749,19,4,f +8374,41677,71,2,f +8374,42003,71,2,f +8374,42003,14,2,f +8374,43093,1,4,f +8374,4519,71,10,f +8374,4716,71,1,f +8374,55013,72,2,f +8374,56823c100,0,1,f +8374,57779,14,1,f +8374,59443,14,2,f +8374,60485,71,4,f +8374,6141,182,2,f +8374,6141,182,1,t +8374,61678,14,4,f +8374,62462,0,2,f +8374,63869,71,4,f +8374,6558,1,9,f +8374,87082,0,2,f +8374,92907,0,1,f +8374,94925,71,4,f +8374,99009,71,1,f +8374,99010,0,1,f +8376,3002a,15,2,f +8376,3002a,47,1,f +8376,3005,0,2,f +8376,3020,7,2,f +8376,3021,0,2,f +8376,3021,7,1,f +8376,3023,0,2,f +8376,3024,4,1,f +8376,3024,0,3,f +8376,3038,47,1,f +8376,3040a,0,3,f +8376,3460,0,4,f +8376,3460,7,6,f +8376,3461,7,1,f +8376,3462,0,1,f +8376,3660,15,2,f +8376,3665,15,2,f +8376,3665,0,1,f +8376,3710,7,1,f +8379,10048,308,1,f +8379,10053,179,1,t +8379,10053,179,1,f +8379,10056pr0001,308,1,f +8379,10065,70,1,f +8379,10247,71,2,f +8379,11010,334,2,t +8379,11010,334,1,f +8379,11156,297,1,f +8379,11156,297,1,t +8379,13765pr0001,308,1,f +8379,13766pr0001,308,1,f +8379,13965,15,4,f +8379,2339,70,4,f +8379,2417,484,3,f +8379,2420,70,1,f +8379,2423,326,5,f +8379,2431,71,1,f +8379,2445,71,1,f +8379,2450,28,1,f +8379,2458,15,2,f +8379,2462,19,2,f +8379,2540,19,2,f +8379,2653,0,2,f +8379,2654,19,2,f +8379,2780,0,1,t +8379,2780,0,2,f +8379,2817,0,1,f +8379,3004,15,9,f +8379,3004,70,2,f +8379,3005,15,4,f +8379,3008,19,1,f +8379,3010,4,2,f +8379,3010,15,2,f +8379,30136,19,8,f +8379,3020,19,2,f +8379,3020,28,1,f +8379,3021,4,1,f +8379,3022,70,1,f +8379,3022,19,1,f +8379,3023,70,2,f +8379,3023,71,2,f +8379,30237a,15,2,f +8379,3030,28,2,f +8379,3034,72,1,f +8379,3034,19,1,f +8379,30350b,70,3,f +8379,3037,15,1,f +8379,30374,70,1,f +8379,3040b,19,4,f +8379,3040b,308,6,f +8379,30565,28,4,f +8379,3069b,71,3,f +8379,3069b,70,9,f +8379,3069b,71,1,t +8379,32028,14,2,f +8379,3460,19,3,f +8379,3622,15,1,f +8379,3623,70,7,f +8379,3623,1,2,f +8379,3626cpr0993,78,1,f +8379,3626cpr1254,78,1,f +8379,3626cpr1256,78,1,f +8379,3626cpr1257,78,1,f +8379,3633,297,2,f +8379,3660,4,1,f +8379,3665,15,2,f +8379,3665,19,4,f +8379,3678bpr0038,379,1,f +8379,3679,71,3,f +8379,3680,0,3,f +8379,3701,19,2,f +8379,3710,19,7,f +8379,3795,71,4,f +8379,41879a,308,2,f +8379,4286,70,1,f +8379,43888,71,5,f +8379,4460b,308,6,f +8379,48336,0,3,f +8379,4871,70,3,f +8379,50231pb002,320,1,f +8379,53705,132,1,f +8379,54200,297,1,t +8379,54200,19,1,t +8379,54200,326,2,t +8379,54200,297,6,f +8379,54200,326,4,f +8379,54200,19,4,f +8379,60474,297,2,f +8379,6106,71,8,f +8379,6108,15,1,f +8379,6141,70,2,t +8379,6141,70,7,f +8379,6232,19,2,f +8379,6636,19,2,f +8379,85863,71,2,f +8379,87079,71,1,f +8379,87580,71,2,f +8379,87580,19,1,f +8379,91988,71,2,f +8379,92950,19,3,f +8379,93231,70,1,f +8379,93231,70,1,t +8379,93606,4,1,f +8379,970c88pr0537,70,1,f +8379,973pr2055c01,70,1,f +8379,973pr2079c01,320,1,f +8379,973pr2428c01,320,1,f +8379,973pr2429c01,379,1,f +8380,2343,47,1,f +8380,3031,15,1,f +8380,33006,4,1,f +8380,33125,484,1,f +8380,3659,5,2,f +8380,3899,45,1,f +8380,6254,191,1,f +8380,6256,82,1,f +8381,32062,0,2,f +8381,32174,320,4,f +8381,32174,72,2,f +8381,3706,0,1,f +8381,42003,72,2,f +8381,4519,71,1,f +8381,47296,72,1,f +8381,47300,72,2,f +8381,47311,320,2,f +8381,48253,82,1,f +8381,50921,320,1,f +8381,53069,82,1,f +8381,6558,0,2,f +8384,32034,7,1,f +8384,32039,7,1,f +8384,32062,0,2,f +8384,32073,0,1,f +8384,32173,7,1,f +8384,32174,0,4,f +8384,32174,15,1,f +8384,32269,7,1,f +8384,32270,7,2,f +8384,32474,0,1,f +8384,32475,15,2,f +8384,32476,7,1,f +8384,32482,7,2,f +8384,32489,15,1,f +8384,32552,15,1,f +8384,32553,7,1,f +8384,32554,143,1,f +8384,32569,15,1,f +8384,3706,0,1,f +8384,3713,7,2,f +8384,3749,7,1,f +8384,4285b,15,1,f +8384,4519,0,3,f +8384,gbiocd2001,89,1,f +8389,3037,4,14,f +8389,3038,4,4,f +8389,3039,4,8,f +8389,3040b,4,4,f +8389,3041,4,3,f +8389,3042,4,2,f +8389,3043,4,2,f +8389,3044b,4,2,f +8389,3045,4,8,f +8389,3046a,4,8,f +8389,3048c,4,2,f +8389,3049b,4,2,f +8390,132a,0,8,f +8390,3001a,15,44,f +8390,3001a,0,18,f +8390,3001a,47,6,f +8390,3001a,1,16,f +8390,3001a,14,16,f +8390,3001a,4,46,f +8390,3002a,4,4,f +8390,3002a,15,8,f +8390,3002a,14,4,f +8390,3003,47,4,f +8390,3003,14,4,f +8390,3003,4,12,f +8390,3003,1,6,f +8390,3003,0,4,f +8390,3003,15,12,f +8390,3004,14,10,f +8390,3004,0,4,f +8390,3004,4,4,f +8390,3004,15,16,f +8390,3005,14,4,f +8390,3006,4,2,f +8390,3006,15,2,f +8390,3007,4,2,f +8390,3007,15,2,f +8390,3007,14,1,f +8390,3008,14,2,f +8390,3010,15,2,f +8390,3010,14,2,f +8390,3030,0,1,f +8390,3032,0,1,f +8390,3081cc01,15,2,f +8390,3081cc01,4,4,f +8390,3192,1,1,f +8390,3193,1,1,f +8390,3297,4,12,f +8390,3298,4,10,f +8390,3299,4,3,f +8390,3300,4,2,f +8390,3579,15,1,f +8390,3579,14,1,f +8390,3581,15,2,f +8390,3581,14,4,f +8390,3582,1,6,f +8390,453cc01,4,3,f +8390,453cc01,15,2,f +8390,604c01,4,1,f +8390,700ed,2,2,f +8390,7039,4,8,f +8390,7049b,0,4,f +8390,7930,4,2,f +8391,1,4,3,f +8391,2,4,1,f +8391,268.1stk01,9999,1,t +8391,268.1stk02,9999,1,t +8391,3,14,2,f +8391,3001a,15,4,f +8391,3002a,0,4,f +8391,3003,14,1,f +8391,3003,0,4,f +8391,3003,15,8,f +8391,3003,4,2,f +8391,3003,1,1,f +8391,3004,0,2,f +8391,3005,0,2,f +8391,3008,0,1,f +8391,3009,4,6,f +8391,3009,0,2,f +8391,3010,14,4,f +8391,3010,0,4,f +8391,3010,4,12,f +8391,3020,15,1,f +8391,3021,0,3,f +8391,3022,4,1,f +8391,3029,4,2,f +8391,3031,4,1,f +8391,3032,4,2,f +8391,3035,0,1,f +8391,3036,0,1,f +8391,3036,14,1,f +8391,3037,0,1,f +8391,3038,0,2,f +8391,3039,0,4,f +8391,3039,15,2,f +8391,3040a,0,3,f +8391,3045,0,6,f +8391,3062a,47,4,f +8391,3068b,1,4,f +8391,3068b,14,20,f +8391,3068b,4,14,f +8391,3068b,15,6,f +8391,3068b,0,2,f +8391,3069b,4,27,f +8391,3069b,0,3,f +8391,3069b,14,10,f +8391,3070b,4,2,f +8391,3460,0,1,f +8391,3612,0,2,f +8391,3613,15,2,f +8391,3613,0,2,f +8391,3614b,14,4,f +8391,3622,4,6,f +8391,3622,14,2,f +8391,3625,0,1,f +8391,3626a,47,3,f +8391,3626apr0001,14,2,f +8391,3679,7,1,f +8391,3680,15,1,f +8391,3741,2,4,f +8391,3742,1,1,t +8391,3742,15,2,t +8391,3742,1,3,f +8391,3742,15,6,f +8391,3742,4,1,t +8391,3742,4,3,f +8391,3794a,4,3,f +8391,3794a,14,1,f +8391,3899,47,1,f +8391,3900,4,1,f +8391,3901,6,1,f +8391,685px2,14,1,f +8391,685px3,14,1,f +8391,785,1,1,f +8391,792c03,15,1,f +8391,792c03,0,1,f +8391,837,4,2,f +8391,838,14,2,f +8391,970c00,1,1,f +8391,970c00,15,1,f +8391,973c01,15,1,f +8391,973c07,1,1,f +8391,x196,4,1,f +8391,x197,6,1,f +8392,2780,0,4,f +8392,2780,0,1,t +8392,2905,0,2,f +8392,32062,4,4,f +8392,43093,1,1,f +8392,45749,272,4,f +8392,47306,272,1,f +8392,47328,73,1,f +8392,49423,0,1,f +8392,50923,72,2,f +8392,53542,73,2,f +8392,60176,272,2,f +8392,64251,73,2,f +8392,64262,42,1,f +8392,64275,135,2,f +8392,64277c01,297,1,f +8392,64296,272,4,f +8392,64302pat0001,272,1,f +8392,64308,179,2,f +8392,64311,73,4,f +8392,64889pr0001,135,1,f +8392,6558,1,1,f +8393,2397,320,1,f +8393,2446,288,1,f +8393,2453a,320,4,f +8393,2540,0,1,f +8393,2555,320,4,f +8393,2587pb07,2,1,f +8393,3004,320,1,f +8393,3004,0,2,f +8393,30055,0,3,f +8393,3010,0,2,f +8393,3022,320,2,f +8393,30223,0,2,f +8393,3023,320,2,f +8393,3023,0,2,f +8393,30237a,72,2,f +8393,3024,320,2,f +8393,3024,320,1,t +8393,30275,70,1,f +8393,3031,0,2,f +8393,3032,0,2,f +8393,3032,72,1,f +8393,30357,320,2,f +8393,3039,72,2,f +8393,3062b,320,4,f +8393,3183c,71,1,f +8393,3307,0,1,f +8393,3581,0,2,f +8393,3626bpb0217,14,1,f +8393,3626bpr0348,14,1,f +8393,3665,0,2,f +8393,3666,0,1,f +8393,3700,0,4,f +8393,3710,70,4,f +8393,3731,0,1,f +8393,3749,19,4,f +8393,3795,72,2,f +8393,3795,320,1,f +8393,3795,0,2,f +8393,3846pb15,151,1,f +8393,3848,0,2,f +8393,3849,71,2,f +8393,3849,72,2,f +8393,3941,57,2,f +8393,3957a,0,2,f +8393,3958,0,2,f +8393,4215b,0,2,f +8393,4282,0,1,f +8393,4460a,72,4,f +8393,4460a,320,2,f +8393,4491b,72,1,f +8393,4493c01pb02,0,1,f +8393,4495a,112,1,f +8393,4588,135,4,f +8393,4589,71,2,f +8393,48488,2,1,f +8393,48492,320,1,f +8393,48492,2,1,f +8393,48493,0,1,f +8393,48495,178,1,f +8393,6020,0,1,f +8393,6123,72,2,f +8393,6126a,57,2,f +8393,6222,70,4,f +8393,6232,72,1,f +8393,75998pr0007,15,1,f +8393,970x141,2,1,f +8393,970x154,0,1,f +8393,973c12,2,1,f +8393,973pb0347c01,0,1,f +8393,bb181a,47,1,f +8393,bb181b,47,1,f +8395,32073,0,6,f +8395,3705,0,6,f +8395,3706,0,6,f +8395,3707,0,6,f +8395,3708,0,6,f +8395,3737,0,6,f +8395,4519,0,6,f +8395,6538a,7,6,f +8395,6587,8,6,f +8397,12825,71,1,f +8397,2357,15,11,f +8397,2357,72,2,f +8397,2357,71,2,f +8397,2412b,72,12,f +8397,2412b,15,1,f +8397,2420,19,3,f +8397,2420,71,4,f +8397,2420,15,1,f +8397,2431,1,2,f +8397,2431,19,3,f +8397,2436,14,1,f +8397,2437,40,1,f +8397,2456,15,2,f +8397,2654,71,1,f +8397,2780,0,1,t +8397,2780,0,2,f +8397,2877,72,1,f +8397,2921,4,2,f +8397,3002,71,7,f +8397,3003,71,1,f +8397,3004,72,8,f +8397,3004,19,5,f +8397,3004,15,41,f +8397,3005,0,3,f +8397,3005,15,15,f +8397,3005,72,7,f +8397,3005,47,8,f +8397,3007,15,2,f +8397,3008,1,3,f +8397,3009,72,3,f +8397,3009,1,1,f +8397,3009,15,39,f +8397,3010,15,20,f +8397,3010,72,6,f +8397,3010,71,3,f +8397,30134,70,1,f +8397,3020,14,3,f +8397,3020,70,1,f +8397,3020,2,6,f +8397,3021,71,1,f +8397,3022,14,2,f +8397,3022,19,1,f +8397,3022,72,5,f +8397,3023,73,5,f +8397,3023,46,3,f +8397,3023,72,10,f +8397,3023,15,7,f +8397,3023,19,8,f +8397,3024,14,1,t +8397,3024,71,2,f +8397,3024,14,5,f +8397,3024,15,1,t +8397,3024,73,9,f +8397,3024,46,1,t +8397,3024,73,1,t +8397,3024,46,5,f +8397,3024,15,3,f +8397,3024,71,1,t +8397,3028,71,1,f +8397,3029,71,1,f +8397,3031,1,1,f +8397,3031,2,2,f +8397,3034,19,1,f +8397,3037,71,1,f +8397,3039,70,1,f +8397,3039,2,2,f +8397,3040b,71,2,f +8397,3040b,288,2,f +8397,3062b,0,1,f +8397,3062b,70,3,f +8397,3062b,71,4,f +8397,3068b,73,3,f +8397,3068b,71,2,f +8397,3069b,72,4,f +8397,3069b,14,4,f +8397,3070b,4,1,t +8397,3070b,36,1,t +8397,3070b,15,1,t +8397,3070b,15,5,f +8397,3070b,36,2,f +8397,3070b,4,4,f +8397,3176,1,1,f +8397,32028,28,2,f +8397,3297,320,16,f +8397,3298,320,6,f +8397,33057,484,1,f +8397,3460,1,4,f +8397,3460,71,1,f +8397,3622,72,8,f +8397,3622,15,37,f +8397,3623,1,2,f +8397,3623,72,5,f +8397,3626cpr0891,14,1,f +8397,3626cpr0893,14,1,f +8397,3659,71,1,f +8397,3665,2,4,f +8397,3666,15,3,f +8397,3666,73,5,f +8397,3666,14,2,f +8397,3673,71,1,t +8397,3673,71,1,f +8397,3679,71,1,f +8397,3680,0,1,f +8397,3709,4,1,f +8397,3710,14,2,f +8397,3710,15,4,f +8397,3710,70,5,f +8397,3710,73,3,f +8397,3747b,15,5,f +8397,3794b,0,3,f +8397,3795,28,2,f +8397,3795,2,1,f +8397,3795,72,1,f +8397,3829c01,1,1,f +8397,3830,15,1,f +8397,3830,71,1,f +8397,3831,15,1,f +8397,3831,71,1,f +8397,3899,4,1,f +8397,3941,2,1,f +8397,3941,70,1,f +8397,3941,71,2,f +8397,3957b,15,1,f +8397,3962b,0,1,f +8397,4032a,2,3,f +8397,4032a,0,4,f +8397,4070,47,2,f +8397,4081b,14,2,f +8397,4161,70,18,f +8397,4162,19,4,f +8397,4162,15,4,f +8397,4286,2,4,f +8397,4490,72,1,f +8397,4595,0,1,f +8397,4624,15,4,f +8397,4733,0,1,f +8397,4740,42,1,f +8397,48336,71,3,f +8397,49668,0,2,f +8397,54200,47,3,f +8397,54200,0,4,f +8397,54200,14,2,f +8397,54200,320,2,f +8397,54200,0,1,t +8397,54200,73,5,f +8397,54200,320,1,t +8397,54200,71,1,t +8397,54200,71,2,f +8397,54200,73,1,t +8397,54200,14,1,t +8397,54200,47,1,t +8397,57895,47,3,f +8397,59900,19,4,f +8397,59900,182,2,f +8397,59900,2,4,f +8397,60470a,4,1,f +8397,60475b,14,2,f +8397,60479,71,1,f +8397,60592,19,8,f +8397,60593,19,8,f +8397,60596,19,7,f +8397,60601,47,8,f +8397,60602,47,8,f +8397,60616a,47,3,f +8397,60623,1,1,f +8397,6091,14,2,f +8397,6108,15,2,f +8397,6111,15,4,f +8397,6111,71,1,f +8397,61252,14,1,f +8397,6141,70,6,f +8397,6141,57,1,t +8397,6141,70,1,t +8397,6141,47,2,f +8397,6141,47,1,t +8397,6141,0,6,f +8397,6141,14,1,t +8397,6141,27,5,f +8397,6141,0,1,t +8397,6141,57,7,f +8397,6141,27,1,t +8397,6141,14,8,f +8397,6141,4,1,t +8397,6141,4,5,f +8397,6157,71,2,f +8397,62810,0,1,f +8397,62930,47,1,f +8397,63864,15,6,f +8397,63864,14,2,f +8397,63965,71,1,f +8397,6541,1,2,f +8397,6541,71,4,f +8397,6942,47,2,f +8397,85975,297,1,f +8397,85984,0,4,f +8397,85984,15,1,f +8397,87079,71,7,f +8397,87087,73,1,f +8397,87414,0,4,f +8397,87580,0,1,f +8397,87618,71,1,f +8397,87990,70,1,f +8397,88292,15,6,f +8397,91405,71,1,f +8397,91405,10,1,f +8397,91988,71,2,f +8397,92438,10,2,f +8397,92593,15,5,f +8397,92950,15,2,f +8397,96874,25,1,t +8397,970c00,28,1,f +8397,970c00,272,1,f +8397,973pr1166c01,272,1,f +8397,973pr1585c01,25,1,f +8397,98138,71,1,t +8397,98138,71,8,f +8397,98283,28,5,f +8397,99206,71,2,f +8397,99207,71,4,f +8397,99780,71,1,f +8399,2412b,15,3,f +8399,2445,71,6,f +8399,2450,15,4,f +8399,2654,15,2,f +8399,2723,0,1,f +8399,2730,71,2,f +8399,2780,0,6,f +8399,2780,0,1,t +8399,2855,71,1,f +8399,2856,0,1,f +8399,2877,15,10,f +8399,3001,15,2,f +8399,3002,19,1,f +8399,3003,15,4,f +8399,3004,4,6,f +8399,3005,15,4,f +8399,3005,4,8,f +8399,3007,15,1,f +8399,3009,15,2,f +8399,30136,19,4,f +8399,3020,4,8,f +8399,3021,15,8,f +8399,3023,47,8,f +8399,3023,4,8,f +8399,3023,19,7,f +8399,3029,15,2,f +8399,3031,4,3,f +8399,3031,15,2,f +8399,3034,72,2,f +8399,3035,0,1,f +8399,30355,15,1,f +8399,30356,15,1,f +8399,3036,71,2,f +8399,30374,42,1,f +8399,30374,41,3,f +8399,3039,15,3,f +8399,3040b,19,2,f +8399,30414,15,12,f +8399,3048c,15,2,f +8399,30503,4,14,f +8399,30504,15,2,f +8399,30526,72,1,f +8399,3062b,41,2,f +8399,3068b,19,3,f +8399,3069b,15,5,f +8399,3069bpr0070,0,1,f +8399,32000,14,1,f +8399,32054,0,5,f +8399,32073,71,1,f +8399,32123b,71,1,f +8399,32123b,71,1,t +8399,32140,15,2,f +8399,32523,72,2,f +8399,3623,15,2,f +8399,3626bpr0514,78,1,f +8399,3626bpr0547,78,1,f +8399,3626bpr0762,4,1,f +8399,3626bpr0786,78,1,f +8399,3647,72,1,f +8399,3660,4,2,f +8399,3666,71,10,f +8399,3678b,15,4,f +8399,3700,15,5,f +8399,3701,15,3,f +8399,3705,0,1,f +8399,3710,72,13,f +8399,3710,4,4,f +8399,3747b,15,4,f +8399,3795,15,5,f +8399,3895,0,1,f +8399,3941,41,3,f +8399,4032a,19,3,f +8399,41769,4,2,f +8399,41770,4,2,f +8399,43093,1,1,f +8399,43121,71,3,f +8399,43722,15,1,f +8399,43723,15,2,f +8399,43723,4,1,f +8399,44728,0,4,f +8399,4477,72,3,f +8399,4519,71,1,f +8399,45705pr0006,40,1,f +8399,47406,15,1,f +8399,48183,15,3,f +8399,50304,4,2,f +8399,50304,15,2,f +8399,50305,4,2,f +8399,50305,15,2,f +8399,50950,15,8,f +8399,50950,4,2,f +8399,54200,15,1,t +8399,54200,15,2,f +8399,54383,15,1,f +8399,54384,15,1,f +8399,55013,72,2,f +8399,59443,72,1,f +8399,6005,4,4,f +8399,60481,15,2,f +8399,60481,4,2,f +8399,60484,0,2,f +8399,61183,70,1,f +8399,61184,71,2,f +8399,61196,484,1,f +8399,6141,41,2,t +8399,6141,41,15,f +8399,6178,15,2,f +8399,6179,15,4,f +8399,6180,15,4,f +8399,6183,15,10,f +8399,6232,15,5,f +8399,63864,0,2,f +8399,64567,80,4,f +8399,6558,1,4,f +8399,6636,15,6,f +8399,7931stk01,9999,1,t +8399,87079,15,6,f +8399,87087,19,6,f +8399,92744pr0001,78,1,f +8399,92745pr0001,15,1,f +8399,970c00,0,1,f +8399,970c00,308,2,f +8399,970x005,15,1,f +8399,973pr1358ac01,0,1,f +8399,973pr1403c01,19,1,f +8399,973pr1746c01,308,1,f +8399,973pr1747c01,308,1,f +8400,3022,27,1,f +8400,3022,15,1,f +8400,3023,4,1,f +8400,3023,15,1,f +8400,3024,4,3,f +8400,3024,15,1,t +8400,3024,15,3,f +8400,3024,4,1,t +8400,3794b,27,2,f +8400,54200,15,1,t +8400,54200,15,2,f +8402,11476,15,1,f +8402,11610,0,2,f +8402,15303,33,3,f +8402,15391,0,1,f +8402,15392,72,3,f +8402,15400,72,2,f +8402,15403,15,2,f +8402,15619,15,1,f +8402,15621,42,1,f +8402,15672,71,1,f +8402,15712,0,3,f +8402,22385,15,1,f +8402,2412b,297,1,f +8402,2419,15,2,f +8402,2420,15,4,f +8402,2431,15,3,f +8402,2431,0,2,f +8402,24458,179,4,f +8402,2450,15,2,f +8402,2460,0,3,f +8402,2780,0,4,f +8402,3002,72,2,f +8402,3003,15,2,f +8402,30031,72,1,f +8402,3004,15,3,f +8402,3005,72,4,f +8402,3008,72,1,f +8402,3009,0,1,f +8402,30137,71,2,f +8402,30153,42,1,f +8402,30173b,297,2,f +8402,30173b,179,2,f +8402,3020,71,7,f +8402,3021,72,1,f +8402,3022,0,4,f +8402,3023,72,6,f +8402,3023,1,7,f +8402,3023,143,7,f +8402,3031,72,1,f +8402,3032,72,2,f +8402,3035,15,1,f +8402,30350b,15,1,f +8402,3036,72,2,f +8402,30503,15,2,f +8402,30608,179,1,f +8402,3068b,0,1,f +8402,32000,0,3,f +8402,32017,14,2,f +8402,32028,72,2,f +8402,32054,71,3,f +8402,32062,4,1,f +8402,32063,0,4,f +8402,32064a,14,1,f +8402,32474,15,1,f +8402,32531,0,1,f +8402,3298,15,3,f +8402,3622,72,2,f +8402,3626cpr1570,179,1,f +8402,3666,15,9,f +8402,3700,1,2,f +8402,3701,72,1,f +8402,3710,0,2,f +8402,3710,71,5,f +8402,3710,72,4,f +8402,3710,1,2,f +8402,3713,4,4,f +8402,3894,15,2,f +8402,3937,71,6,f +8402,4070,0,2,f +8402,4162,1,3,f +8402,42446,0,1,f +8402,4282,71,1,f +8402,43093,1,3,f +8402,43722,15,3,f +8402,43723,15,3,f +8402,44302a,72,1,f +8402,44728,0,4,f +8402,4740,0,1,f +8402,48336,297,3,f +8402,4865a,0,1,f +8402,48933,15,4,f +8402,50950,15,2,f +8402,55013,72,1,f +8402,56145,297,4,f +8402,59443,72,2,f +8402,59900,0,4,f +8402,59900,36,2,f +8402,60470a,71,6,f +8402,60477,0,2,f +8402,60478,72,1,f +8402,60897,71,2,f +8402,6134,0,6,f +8402,6141,19,2,f +8402,6141,71,2,f +8402,6141,36,2,f +8402,6141,143,4,f +8402,61481,0,4,f +8402,63864,0,2,f +8402,63864,71,6,f +8402,63868,0,4,f +8402,64567,0,1,f +8402,85861,297,2,f +8402,85940,0,2,f +8402,85941,47,1,f +8402,85984,0,4,f +8402,87079,0,1,f +8402,87079,71,6,f +8402,87083,72,4,f +8402,87580,72,9,f +8402,87606,15,1,f +8402,87606,47,1,f +8402,87620,72,2,f +8402,92099,72,1,f +8402,92107,71,1,f +8402,92338,42,1,f +8402,92950,71,3,f +8402,93058b,297,2,f +8402,93095,0,1,f +8402,93273,15,2,f +8402,93274,0,2,f +8402,970c00,0,2,f +8402,98137,297,2,f +8402,98138,297,8,f +8402,98286,71,1,f +8402,98397,71,1,f +8402,99207,71,10,f +8402,99780,71,5,f +8402,99781,0,1,f +8403,30374,41,1,f +8403,30374,42,1,f +8403,3626b,78,1,f +8403,3626bpr0514,78,1,f +8403,3626bpr0555,25,1,f +8403,57899,0,1,f +8403,61183,70,1,f +8403,61195pr01,15,1,f +8403,64567,80,2,f +8403,74188,72,3,f +8403,86408pr0001a,1,1,f +8403,970c00,0,1,f +8403,970x026,1,1,f +8403,970x192,71,1,f +8403,973pr1358ac01,0,1,f +8403,973pr1388c01,25,1,f +8403,973pr1476c01,1,1,f +8404,3001a,4,30,f +8404,3001a,15,30,f +8404,3001a,47,2,f +8404,3002a,4,4,f +8404,3002a,15,4,f +8404,3003,15,10,f +8404,3003,4,10,f +8404,3003,14,2,f +8404,3003,0,2,f +8404,3003,47,2,f +8404,3003,1,2,f +8404,3004,4,10,f +8404,3004,47,4,f +8404,3004,15,10,f +8404,3006,4,2,f +8404,3006,15,2,f +8404,3007,4,4,f +8404,3007,15,4,f +8404,3034,15,2,f +8404,3062a,4,2,f +8404,3069a,4,2,f +8404,3081bc01,4,2,f +8404,32bc01,4,1,f +8404,646,4,1,f +8404,700ex,2,1,f +8405,3626cpr1403,78,1,f +8405,92746,19,1,f +8405,970c00pr0650,15,1,f +8405,973pr2648c01,15,1,f +8406,2335p30,15,1,f +8406,2339,0,5,f +8406,2343,14,1,f +8406,2345,0,2,f +8406,2345,7,1,f +8406,2345pb01,7,3,f +8406,2357,0,1,f +8406,2357,7,3,f +8406,2359p02,2,1,f +8406,2375,0,1,f +8406,2417,2,3,f +8406,2419,7,1,f +8406,2420,0,3,f +8406,2423,2,1,f +8406,2431,7,1,f +8406,2449,0,1,f +8406,2449,7,1,f +8406,2453a,7,1,f +8406,2453a,4,4,f +8406,2453a,0,2,f +8406,2454a,4,1,f +8406,2454a,0,2,f +8406,2456,7,1,f +8406,2462,7,4,f +8406,2488,2,2,f +8406,2518,2,10,f +8406,2528pb01,0,1,f +8406,2530,8,4,f +8406,2536,6,10,f +8406,2540,0,4,f +8406,2542,6,1,f +8406,2542,4,2,f +8406,2543,1,1,f +8406,2546p01,4,1,f +8406,2549,6,1,f +8406,2550c01,6,1,f +8406,2551,6,1,f +8406,2555,15,1,f +8406,2555,7,1,f +8406,2555,0,1,f +8406,2562,6,1,f +8406,2563,6,2,f +8406,2566,2,2,f +8406,2586p30,15,4,f +8406,3001,7,5,f +8406,3002,7,4,f +8406,3002,0,1,f +8406,3003,7,5,f +8406,3003,0,2,f +8406,3004,7,9,f +8406,3004,4,1,f +8406,3004,0,11,f +8406,3005,0,3,f +8406,3005,7,6,f +8406,3008,7,1,f +8406,3009,4,1,f +8406,3009,7,6,f +8406,3009,0,1,f +8406,3010,7,4,f +8406,3020,4,2,f +8406,3020,7,2,f +8406,3020,0,3,f +8406,3021,2,2,f +8406,3021,7,1,f +8406,3022,1,1,f +8406,3022,7,2,f +8406,3022,4,2,f +8406,3023,1,1,f +8406,3023,4,7,f +8406,3023,2,3,f +8406,3023,0,5,f +8406,3023,7,4,f +8406,3024,7,7,f +8406,3024,46,2,f +8406,3032,0,2,f +8406,3032,7,1,f +8406,3034,2,1,f +8406,3035,7,1,f +8406,3036,0,1,f +8406,3036,7,1,f +8406,3039,7,1,f +8406,3040b,7,4,f +8406,3040b,0,1,f +8406,3062b,4,4,f +8406,3062b,0,6,f +8406,3062b,2,2,f +8406,3068bp30,15,1,f +8406,3069b,1,1,f +8406,3069b,7,1,f +8406,3307,7,1,f +8406,3455,0,1,f +8406,3460,7,1,f +8406,3460,0,2,f +8406,3460,2,1,f +8406,3622,0,2,f +8406,3622,4,2,f +8406,3623,7,2,f +8406,3623,0,7,f +8406,3626bp35,14,1,f +8406,3626bp3j,14,3,f +8406,3626bp3k,14,1,f +8406,3626bp40,14,1,f +8406,3626bp46,14,1,f +8406,3659,7,1,f +8406,3660,7,4,f +8406,3665,4,2,f +8406,3666,0,5,f +8406,3666,4,2,f +8406,3673,7,2,f +8406,3679,7,3,f +8406,3680,0,3,f +8406,3701,0,4,f +8406,3710,7,2,f +8406,3710,0,5,f +8406,3713,7,3,f +8406,3794a,7,3,f +8406,3794a,0,1,f +8406,3795,0,1,f +8406,3795,4,1,f +8406,3795,2,2,f +8406,3830,7,1,f +8406,3831,7,1,f +8406,3839b,4,2,f +8406,3849,6,1,f +8406,3849,0,2,f +8406,3941,4,1,f +8406,3957a,0,1,f +8406,3958,0,1,f +8406,4032a,2,5,f +8406,4032a,1,1,f +8406,4032a,0,1,f +8406,4070,7,2,f +8406,4081b,4,1,f +8406,4085c,7,2,f +8406,4085c,4,3,f +8406,4085c,0,4,f +8406,4150p30,15,1,f +8406,4275b,0,6,f +8406,4276b,7,2,f +8406,4286,0,1,f +8406,4287,7,2,f +8406,4318,0,2,f +8406,4319,0,2,f +8406,4444,0,1,f +8406,4460a,0,1,f +8406,4490,7,1,f +8406,4490,0,1,f +8406,4495a,15,1,f +8406,4497,6,6,f +8406,4498,6,1,f +8406,4499,6,1,f +8406,4519,0,1,f +8406,4529,0,1,f +8406,4531,0,4,f +8406,4589,15,3,f +8406,4738a,6,1,f +8406,4739a,6,1,f +8406,57503,334,2,f +8406,57504,334,2,f +8406,57505,334,2,f +8406,57506,334,2,f +8406,6019,7,2,f +8406,6019,0,4,f +8406,6020,6,4,f +8406,6021,4,1,f +8406,6024px2,7,1,f +8406,6025,0,4,f +8406,6026,2,1,f +8406,6027,2,1,f +8406,6028,2,1,f +8406,6030,4,1,f +8406,6064,2,3,f +8406,6091,7,3,f +8406,6126a,57,4,f +8406,6141,14,3,f +8406,6148,2,7,f +8406,6292stk01,9999,1,t +8406,73983,0,1,f +8406,87695,15,8,f +8406,87696,15,4,f +8406,970c00,7,1,f +8406,970c03pb01,14,5,f +8406,970d01,0,1,f +8406,973p31c01,14,1,f +8406,973p3ac01,14,1,f +8406,973pb0062c01,14,3,f +8406,973pb0063c01,14,1,f +8406,973pb0064c01,14,1,f +8406,sailbb01,15,1,f +8406,sailbb10,15,1,f +8406,sailbb14,15,1,f +8408,3626bp69,14,1,f +8408,4485,4,1,t +8408,4485,4,1,f +8408,970c00,7,1,f +8408,973px75c01,15,1,f +8409,2420,15,4,f +8409,2420,0,1,f +8409,2420,4,1,f +8409,3001,70,1,f +8409,3002,70,2,f +8409,3003,70,2,f +8409,3003,1,1,f +8409,3004,0,1,f +8409,3004,19,1,f +8409,3004,70,3,f +8409,3004,4,1,f +8409,3005,1,2,f +8409,3005,70,2,f +8409,3005,0,2,f +8409,3010,70,1,f +8409,3020,70,1,f +8409,3021,70,3,f +8409,3022,15,2,f +8409,3022,19,1,f +8409,3022,0,2,f +8409,3022,70,4,f +8409,3022,4,1,f +8409,3023,15,2,f +8409,3023,0,7,f +8409,3023,70,11,f +8409,3023,19,6,f +8409,3024,15,1,f +8409,3024,0,8,f +8409,3024,70,6,f +8409,3024,4,2,f +8409,3028,28,1,f +8409,3039,70,2,f +8409,3040b,15,1,f +8409,3040b,1,2,f +8409,3040b,70,4,f +8409,3069b,4,2,f +8409,3069b,19,2,f +8409,3070b,19,2,f +8409,3070b,15,2,f +8409,3070b,70,2,f +8409,3623,4,1,f +8409,3623,19,2,f +8409,3623,70,4,f +8409,3660,70,4,f +8409,3665,70,4,f +8409,3710,15,1,f +8409,3710,70,1,f +8409,3747b,70,1,f +8409,3794b,70,2,f +8409,4070,70,2,f +8409,4070,4,2,f +8409,4070,15,1,f +8409,54200,70,4,f +8409,54200,15,3,f +8409,54200,0,6,f +8409,6141,19,1,f +8409,6141,0,2,f +8410,28768,2,1,f +8410,3626cpr2090,15,1,f +8410,61482,71,1,f +8410,88646,0,1,f +8410,970c00pr1172,25,1,f +8410,973pr3636c01,25,1,f +8411,32017,0,2,f +8411,32039,4,1,f +8411,32056,4,4,f +8411,32062,0,2,f +8411,32063,4,2,f +8411,32073,0,3,f +8411,32124,4,2,f +8411,32193,0,4,f +8411,3705,0,4,f +8411,3706,0,1,f +8411,3713,7,5,f +8411,3749,7,2,f +8411,4274,7,4,f +8411,4286,4,2,f +8411,4519,0,1,f +8411,6536,4,1,f +8411,6589,7,1,f +8411,6632,4,4,f +8411,6632,0,2,f +8411,73129,4,1,f +8412,11055,0,1,f +8412,11408pr0006c01,84,1,f +8412,11477,15,2,f +8412,11816pr0003,78,1,f +8412,14014pr0001,84,1,f +8412,14716,71,2,f +8412,14718,15,2,f +8412,14769,15,1,f +8412,15210,0,2,f +8412,15573,0,3,f +8412,15573,19,1,f +8412,15712,71,4,f +8412,16985pr0001c,0,1,f +8412,18853,191,1,f +8412,20482,47,1,f +8412,2343,47,2,f +8412,2432,15,1,f +8412,2450,322,4,f +8412,2654,46,4,f +8412,298c02,15,1,f +8412,3002,15,1,f +8412,3003,15,1,f +8412,3004,15,1,f +8412,3007,15,1,f +8412,3020,71,2,f +8412,3021,15,2,f +8412,3022,71,6,f +8412,3023,36,1,f +8412,3023,15,5,f +8412,3024,191,2,f +8412,3024,34,2,f +8412,3034,15,1,f +8412,30355,322,1,f +8412,30356,322,1,f +8412,30374,0,1,f +8412,3039,15,1,f +8412,3040b,322,2,f +8412,3068b,29,1,f +8412,3068b,19,2,f +8412,3069b,322,1,f +8412,3069b,26,5,f +8412,3070b,19,2,f +8412,32083,15,3,f +8412,3245b,71,2,f +8412,33291,191,1,f +8412,33291,5,2,f +8412,3623,15,4,f +8412,3665,71,2,f +8412,3666,191,4,f +8412,3666,26,6,f +8412,3700,71,2,f +8412,3710,71,1,f +8412,3710,191,2,f +8412,3794b,71,4,f +8412,3795,15,1,f +8412,3795,19,1,f +8412,3795,71,1,f +8412,3941,15,1,f +8412,3958,19,1,f +8412,4070,15,2,f +8412,4162,0,2,f +8412,4274,71,2,f +8412,4282,71,1,f +8412,4449,70,1,f +8412,4624,15,6,f +8412,48336,19,2,f +8412,4865b,322,1,f +8412,4868b,15,2,f +8412,4869,71,2,f +8412,4870,71,2,f +8412,51739,15,1,f +8412,54383,15,1,f +8412,54384,15,1,f +8412,59895,0,6,f +8412,60219,322,3,f +8412,60479,71,2,f +8412,60601,41,12,f +8412,6091,19,2,f +8412,61345,15,6,f +8412,6141,42,5,f +8412,6141,72,4,f +8412,6141,15,2,f +8412,61483,71,1,f +8412,6183,71,1,f +8412,6239,15,1,f +8412,62698,0,1,f +8412,64567,71,1,f +8412,6636,15,8,f +8412,85984,191,1,f +8412,87544,15,4,f +8412,87580,15,2,f +8412,87611,322,1,f +8412,87612,41,1,f +8412,87613,15,1,f +8412,87615,15,1,f +8412,87616,322,1,f +8412,87991,0,1,f +8412,88072,71,1,f +8412,92256,70,1,f +8412,92456pr0081c01,78,1,f +8412,92593,15,2,f +8412,92820pr0006c01a,85,1,f +8412,93091,297,1,f +8412,93095,29,3,f +8412,93273,71,2,f +8412,98138,34,2,f +8412,98138,36,2,f +8412,98138,71,2,f +8412,99780,71,1,f +8413,2412b,71,20,f +8413,2444,0,2,f +8413,2780,0,195,f +8413,2780,0,1,t +8413,2819,71,1,f +8413,2850a,71,4,f +8413,2851,14,4,f +8413,2852,71,4,f +8413,2853,14,2,f +8413,2854,72,3,f +8413,3023,0,2,f +8413,3035,0,1,f +8413,32000,71,4,f +8413,32009,14,2,f +8413,32009,72,6,f +8413,32013,0,14,f +8413,32014,0,2,f +8413,32017,14,2,f +8413,32019,0,6,f +8413,32034,0,5,f +8413,32034,71,13,f +8413,32039,71,10,f +8413,32054,71,6,f +8413,32054,0,18,f +8413,32054,4,25,f +8413,32056,71,4,f +8413,32062,4,26,f +8413,32068,0,2,f +8413,32072,0,6,f +8413,32073,71,12,f +8413,32123b,14,26,f +8413,32123b,14,2,t +8413,32138,0,2,f +8413,32140,4,4,f +8413,32140,14,3,f +8413,32140,71,6,f +8413,32184,0,14,f +8413,32187,71,1,f +8413,32269,0,3,f +8413,32270,0,7,f +8413,32278,4,16,f +8413,32278,71,7,f +8413,32278,14,3,f +8413,32291,4,2,f +8413,32316,4,4,f +8413,32316,14,2,f +8413,32316,0,4,f +8413,32316,71,5,f +8413,32348,0,4,f +8413,32449,0,4,f +8413,32523,0,10,f +8413,32523,15,2,f +8413,32524,71,8,f +8413,32524,0,5,f +8413,32525,71,7,f +8413,32525,4,2,f +8413,32525,0,12,f +8413,32526,71,4,f +8413,32526,4,14,f +8413,32526,14,4,f +8413,32526,0,3,f +8413,32526,1,4,f +8413,32556,19,6,f +8413,32557,0,4,f +8413,3460,0,1,f +8413,3647,72,1,t +8413,3647,72,2,f +8413,3648b,72,1,f +8413,3673,71,1,t +8413,3673,71,8,f +8413,3705,0,8,f +8413,3706,0,10,f +8413,3708,0,5,f +8413,3710,0,2,f +8413,3713,71,22,f +8413,3713,71,1,t +8413,3737,0,3,f +8413,3749,19,6,f +8413,3941,71,18,f +8413,40490,71,7,f +8413,40490,0,2,f +8413,40490,14,2,f +8413,41239,72,3,f +8413,41239,0,3,f +8413,41239,14,2,f +8413,41239,71,2,f +8413,4150,71,2,f +8413,41677,72,8,f +8413,42003,71,11,f +8413,4274,1,1,t +8413,4274,1,11,f +8413,43093,1,84,f +8413,43857,14,1,f +8413,44294,71,7,f +8413,4519,71,63,f +8413,4716,71,3,f +8413,48989,71,7,f +8413,50163,71,1,f +8413,55013,72,3,f +8413,56145,70,8,f +8413,57585,71,1,f +8413,58119,71,1,f +8413,58120,71,1,f +8413,59426,72,1,f +8413,59443,14,6,f +8413,59443,71,26,f +8413,60483,71,24,f +8413,60484,0,7,f +8413,60485,71,4,f +8413,6141,182,5,f +8413,6141,47,2,t +8413,6141,80,1,t +8413,6141,47,6,f +8413,6141,36,1,t +8413,6141,36,4,f +8413,6141,182,1,t +8413,6141,80,1,f +8413,61903,71,2,f +8413,61904,72,1,f +8413,61927b,71,1,f +8413,62462,0,19,f +8413,62462,71,3,f +8413,62531,0,2,f +8413,62531,71,4,f +8413,62821,72,1,f +8413,63864,0,4,f +8413,63869,71,6,f +8413,64178,71,2,f +8413,64179,71,1,f +8413,64393,0,1,f +8413,64394,0,1,f +8413,64680,0,1,f +8413,64681,0,1,f +8413,6536,71,14,f +8413,6536,0,13,f +8413,6538b,19,2,f +8413,6539,4,3,f +8413,6542b,72,13,f +8413,6553,71,2,f +8413,6558,1,91,f +8413,6587,28,9,f +8413,6589,19,1,t +8413,6589,19,7,f +8413,6629,0,8,f +8413,6632,4,10,f +8413,6632,71,4,f +8413,6641,4,2,f +8413,76244,15,2,f +8413,86652,71,6,f +8413,87082,0,23,f +8413,87083,72,10,f +8413,87407,71,1,f +8413,87408,0,2,f +8413,87761,0,1,f +8413,92693,71,1,f +8413,9397stk01,9999,1,t +8413,94925,71,15,f +8413,98989,71,4,f +8413,99009,71,1,f +8413,99010,0,1,f +8413,99773,0,8,f +8413,99773,14,2,f +8414,14226c11,0,1,f +8414,23306,7,2,f +8414,23306,383,1,f +8414,2357,0,4,f +8414,2412b,379,4,f +8414,2412b,0,5,f +8414,2412b,8,12,f +8414,2420,8,12,f +8414,2431,8,17,f +8414,2432,7,3,f +8414,2432,1,5,f +8414,2433,0,2,f +8414,2444,1,8,f +8414,2445,7,2,f +8414,2445,8,1,f +8414,2462,7,16,f +8414,2524,8,1,f +8414,2540,8,1,f +8414,2555,8,6,f +8414,2625,0,1,f +8414,2653,7,6,f +8414,2714a,7,2,f +8414,2780,0,52,f +8414,30000,1,4,f +8414,3001,1,4,f +8414,3003,1,2,f +8414,30031,0,1,f +8414,3004,1,3,f +8414,3005,8,10,f +8414,3007,1,1,f +8414,3008,7,4,f +8414,3009,0,8,f +8414,3010,19,2,f +8414,3020,7,15,f +8414,3020,19,8,f +8414,3020,8,8,f +8414,3021,7,25,f +8414,3021,0,2,f +8414,3021,8,3,f +8414,3022,8,13,f +8414,3023,15,1,f +8414,3023,8,39,f +8414,3024,8,8,f +8414,30258,8,3,f +8414,30259,15,2,f +8414,30283,7,1,f +8414,3029,8,4,f +8414,3030,8,2,f +8414,3030,7,1,f +8414,3031,0,1,f +8414,3031,4,4,f +8414,3032,1,1,f +8414,3034,8,23,f +8414,3035,0,2,f +8414,30359b,8,4,f +8414,3036,8,2,f +8414,30363,4,2,f +8414,3037,8,2,f +8414,30370ps2,15,1,f +8414,30374,8,2,f +8414,30374,41,1,f +8414,30408px3,15,1,f +8414,3040b,7,12,f +8414,3041pb002,7,1,f +8414,3048c,4,6,f +8414,30553,8,10,f +8414,30592,1,2,f +8414,3063b,8,6,f +8414,3068b,8,11,f +8414,3069bpr0090,8,1,f +8414,3176,0,3,f +8414,32001,1,2,f +8414,32005b,8,4,f +8414,32013,8,11,f +8414,32014,8,2,f +8414,32028,0,6,f +8414,32062,4,2,f +8414,32064a,4,4,f +8414,32123b,7,3,f +8414,32324,7,1,f +8414,32532,8,5,f +8414,3298,8,1,f +8414,33243,8,8,f +8414,3455,7,8,f +8414,3460,7,4,f +8414,3623,7,10,f +8414,3626b,14,1,f +8414,3626b,0,2,f +8414,3626bps3,14,1,f +8414,3660,8,8,f +8414,3665,1,6,f +8414,3665,7,4,f +8414,3666,7,4,f +8414,3666,8,16,f +8414,3673,7,8,f +8414,3679,7,2,f +8414,3680,1,2,f +8414,3684,7,2,f +8414,3684,14,4,f +8414,3700,7,12,f +8414,3701,7,2,f +8414,3702,7,6,f +8414,3703,7,4,f +8414,3705,0,4,f +8414,3709,7,12,f +8414,3710,7,18,f +8414,3710,0,1,f +8414,3747a,7,2,f +8414,3749,19,12,f +8414,3794a,8,4,f +8414,3795,8,22,f +8414,3832,8,2,f +8414,3839b,15,1,f +8414,3895,7,6,f +8414,3937,7,6,f +8414,3938,4,2,f +8414,3958,7,2,f +8414,3960,7,2,f +8414,3960pr0005,7,4,f +8414,4032a,0,7,f +8414,4070,1,10,f +8414,4085c,7,2,f +8414,4088,379,4,f +8414,40902,0,2,f +8414,41531,8,2,f +8414,41532,0,10,f +8414,4162,7,1,f +8414,41747,15,1,f +8414,41748,15,1,f +8414,41769,7,11,f +8414,41769,8,1,f +8414,41770,8,1,f +8414,41770,7,11,f +8414,41854,8,1,f +8414,41862,15,1,f +8414,4274,1,28,f +8414,4286,7,6,f +8414,4287,7,4,f +8414,4328,7,2,f +8414,4349,0,3,f +8414,43719,8,1,f +8414,43720,8,1,f +8414,43721,8,1,f +8414,43722,7,27,f +8414,43722,8,3,f +8414,43723,7,27,f +8414,43723,8,3,f +8414,43898,8,6,f +8414,44224,0,8,f +8414,44225,7,8,f +8414,44294,7,1,f +8414,44300,8,8,f +8414,44302a,7,6,f +8414,44360,15,2,f +8414,44375a,8,4,f +8414,44375apr01,7,4,f +8414,44661,379,2,f +8414,4477,8,2,f +8414,45677,8,3,f +8414,4623,7,4,f +8414,4740,8,8,f +8414,4864b,7,1,f +8414,4865a,7,18,f +8414,6019,7,2,f +8414,6111,7,4,f +8414,6120,8,2,f +8414,6134,1,4,f +8414,6141,0,1,f +8414,6141,57,2,f +8414,6141,1,14,f +8414,6178,7,4,f +8414,6179,7,6,f +8414,6180,7,9,f +8414,6183,7,4,f +8414,6222,7,4,f +8414,6222,8,2,f +8414,6231,4,2,f +8414,6232,14,1,f +8414,6541,7,10,f +8414,6558,0,15,f +8414,6587,8,2,f +8414,6628,0,8,f +8414,6636,7,2,f +8414,6636,8,14,f +8414,75c10,8,2,f +8414,970x002,15,2,f +8414,970x002,8,1,f +8414,970x027,25,1,f +8414,973pb0270c01,15,1,f +8414,973pr1301c01,25,1,f +8414,973pr1344c01,15,2,f +8415,4175,7,8,f +8415,4175,0,8,f +8416,2417,2,1,f +8416,2526,14,1,f +8416,2530,8,2,f +8416,2530,8,1,t +8416,2544,6,1,f +8416,2544,0,1,f +8416,2546p01,4,1,f +8416,2562,6,2,f +8416,3035,14,1,f +8416,3626bp44,14,1,f +8416,3626bp49,14,1,f +8416,3837,8,1,f +8416,4070,0,1,f +8416,4738a,6,1,f +8416,4739a,6,1,f +8416,57503,334,2,f +8416,57504,334,2,f +8416,57505,334,2,f +8416,57506,334,2,f +8416,970c00,15,1,f +8416,970c00,7,1,f +8416,973p34c01,1,1,f +8416,973pb0206c01,15,1,f +8417,122c01,0,2,f +8417,3004,0,1,f +8417,3004p06,4,1,f +8417,3020,0,1,f +8417,3022,0,1,f +8417,3023,4,2,f +8417,3024,4,2,f +8417,3024,46,2,f +8417,3024,36,2,f +8417,3034,0,1,f +8417,3070b,4,2,f +8417,3624,0,1,f +8417,3626apr0001,14,1,f +8417,3641,0,4,f +8417,3710,0,1,f +8417,3710,4,1,f +8417,3821,4,1,f +8417,3822,4,1,f +8417,3823,47,1,f +8417,3829c01,4,1,f +8417,4070,4,2,f +8417,4211,0,1,f +8417,4213,0,1,f +8417,4213,4,1,f +8417,4215a,4,2,f +8417,4315,0,1,f +8417,4315,4,1,f +8417,970c00,0,1,f +8417,973c07,1,1,f +8418,2346,0,8,f +8418,2412b,0,1,f +8418,2419,15,2,f +8418,2432,0,4,f +8418,2432,15,1,f +8418,2433,0,2,f +8418,2436,15,2,f +8418,2444,0,8,f +8418,2446,14,1,f +8418,2447,33,1,f +8418,2486,0,2,f +8418,3009,15,2,f +8418,3020,15,1,f +8418,3022,15,1,f +8418,3024,36,2,f +8418,3024,15,2,f +8418,3034,0,1,f +8418,3062b,36,2,f +8418,3070b,15,4,f +8418,3482,15,8,f +8418,3626apr0001,14,1,f +8418,3666,0,2,f +8418,3730,0,1,f +8418,3731,0,1,f +8418,3749,7,8,f +8418,3832,15,2,f +8418,3832,0,2,f +8418,3838,14,1,f +8418,3937,0,2,f +8418,3938,15,2,f +8418,3941,15,1,f +8418,3957a,0,6,f +8418,3960,15,2,f +8418,4083,0,1,f +8418,4085b,15,6,f +8418,4285a,15,1,f +8418,4286,15,2,f +8418,4531,15,2,f +8418,4589,15,2,f +8418,4590,15,1,f +8418,4591,0,1,f +8418,4598,0,1,f +8418,4623,15,2,f +8418,4735,0,2,f +8418,4755,15,1,f +8418,4757,15,1,f +8418,4758,15,1,f +8418,4760p01c01,15,1,f +8418,4771,15,1,f +8418,4773,36,1,f +8418,4773,34,1,f +8418,4774c02,15,1,f +8418,970c00,14,1,f +8418,973p6ec01,15,1,f +8419,15442,15,1,f +8419,16691pr0002,15,1,f +8419,3626cpb1122,84,1,f +8419,3678bpb075,15,1,f +8419,50231pat0001,321,1,f +8419,973pb1695c01,15,1,f +8426,3070b,4,4,f +8426,3070b,4,1,t +8426,4733,71,2,f +8426,47905,4,1,f +8426,54200,40,1,t +8426,54200,40,2,f +8426,59900,4,2,f +8426,6141,4,1,t +8426,6141,41,1,t +8426,6141,4,4,f +8426,6141,41,1,f +8427,264,1,2,f +8427,3001,14,6,f +8427,3002,14,4,f +8427,3003,14,2,f +8427,3004,4,4,f +8427,3010,1,3,f +8427,3027,4,1,f +8427,3033,14,1,f +8427,3185,14,2,f +8427,3334,2,1,f +8427,3622,4,2,f +8427,3997,4,1,f +8427,4328,7,1,f +8427,4362acx1,4,1,f +8427,4440,4,1,f +8427,4452,4,1,f +8427,4461,1,1,f +8427,4614,7,1,f +8427,4618c01,14,2,f +8427,749,366,1,f +8427,787c02,14,5,f +8427,fab1b,9999,1,f +8427,fab1c,9999,1,f +8427,fabaj1,1,1,f +8427,fabaj3,1,1,f +8427,fabbc1,4,1,f +8427,fabed4,7,1,f +8427,fabhook,4,1,f +8427,u9204c01,1,1,f +8427,x636c02,4,3,f +8428,32062,0,100,f +8429,122c01,0,2,f +8429,3020,4,1,f +8429,3023,15,1,f +8429,3039p0u,15,1,f +8429,3626apr0001,14,1,f +8429,3641,0,4,f +8429,3710,15,1,f +8429,3795,4,1,f +8429,3829c01,15,1,f +8429,3842a,4,1,f +8429,4083,0,1,f +8429,970c00,1,1,f +8429,973p01c01,15,1,f +8431,11214,72,3,f +8431,11215,1,1,f +8431,11476,0,1,f +8431,11477,1,2,f +8431,11477,15,1,f +8431,15068,272,1,f +8431,15092,72,2,f +8431,15461,0,1,f +8431,15573,15,1,f +8431,15672,1,2,f +8431,15712,1,2,f +8431,15712,15,2,f +8431,18041,179,2,f +8431,18041,179,1,t +8431,18651,0,5,f +8431,18654,72,1,f +8431,18654,72,1,t +8431,18671,272,1,f +8431,18677,71,1,f +8431,18948,15,1,f +8431,22385,179,1,f +8431,22385pr0004,57,1,f +8431,22388,179,1,t +8431,22388,179,2,f +8431,22391,179,1,f +8431,22391,272,2,f +8431,22392,15,2,f +8431,22401,179,1,f +8431,22408,179,1,f +8431,22410,148,2,f +8431,24078,71,1,f +8431,24097,179,1,f +8431,24450,9999,1,f +8431,2446,15,1,f +8431,2458,0,1,f +8431,2570,148,1,f +8431,2723,71,2,f +8431,2780,0,1,t +8431,2780,0,4,f +8431,2817,0,1,f +8431,2853,71,2,f +8431,30031,72,1,f +8431,3005,15,1,f +8431,3020,71,1,f +8431,3021,72,1,f +8431,3023,71,4,f +8431,30602,272,4,f +8431,3070bpr0156,15,1,t +8431,3070bpr0156,15,1,f +8431,32000,0,2,f +8431,32017,71,1,f +8431,32039,0,1,f +8431,32056,0,2,f +8431,32062,0,5,f +8431,32064a,1,3,f +8431,32073,71,2,f +8431,32123b,71,1,t +8431,32123b,71,4,f +8431,32187,179,1,f +8431,32271,1,2,f +8431,32348,57,2,f +8431,32449,15,2,f +8431,32449,72,4,f +8431,3626cpr1783,14,1,f +8431,3626cpr1785,179,1,f +8431,3626cpr1818,4,1,f +8431,3665,1,4,f +8431,3666,71,2,f +8431,3700,71,2,f +8431,3701,1,2,f +8431,3705,4,2,f +8431,3710,1,2,f +8431,3713,4,1,t +8431,3713,4,1,f +8431,3844,179,1,f +8431,3849,179,1,f +8431,40490,1,2,f +8431,41532,0,4,f +8431,41677,1,8,f +8431,4185,57,4,f +8431,42003,72,3,f +8431,4274,71,1,t +8431,4274,71,5,f +8431,43093,1,2,f +8431,43722,1,1,f +8431,43723,1,1,f +8431,44224,72,1,f +8431,44225,71,1,f +8431,4498,70,1,f +8431,4519,14,2,f +8431,4590,72,1,f +8431,48336,1,1,f +8431,4865b,57,1,f +8431,48729b,71,1,t +8431,48729b,71,2,f +8431,52107,71,1,f +8431,55982,179,1,f +8431,59443,71,5,f +8431,59900,57,5,f +8431,59900,57,1,t +8431,59900,179,1,f +8431,59900,179,1,t +8431,60470b,15,2,f +8431,60471,71,4,f +8431,6070,57,1,f +8431,61069,272,2,f +8431,61184,71,2,f +8431,6134,1,2,f +8431,61409,1,2,f +8431,6141,57,1,t +8431,6141,57,6,f +8431,6541,71,1,f +8431,6553,71,2,f +8431,6558,1,1,f +8431,6587,28,4,f +8431,6632,71,1,f +8431,85861,15,1,f +8431,85861,15,1,t +8431,85984,1,3,f +8431,87083,72,3,f +8431,92593,272,6,f +8431,92907,71,4,f +8431,93062c02,179,2,f +8431,93563,0,1,f +8431,970c00pr0939,71,1,f +8431,970c00pr0947,0,1,f +8431,973pr3152c01,71,1,f +8431,973pr3191c01,4,1,f +8431,98138,1,2,f +8431,98138,1,1,t +8431,98834,72,2,f +8431,99206,0,1,f +8431,99207,0,2,f +8431,99780,71,1,f +8433,3004,14,1,f +8433,3020,4,1,f +8433,3020,1,1,f +8433,3021,4,1,f +8433,3022,14,1,f +8433,3022,4,1,f +8433,3039,47,1,f +8433,3710,1,2,f +8433,4871,14,1,f +8435,11055,15,1,f +8435,11267,85,1,f +8435,11403pr0005c01,379,1,f +8435,11476,71,1,f +8435,11477,26,4,f +8435,11816pr0002,78,1,f +8435,11816pr0005,78,1,f +8435,11816pr0011,78,1,f +8435,13547,484,4,f +8435,13965,70,12,f +8435,14395,70,2,f +8435,14707,70,3,f +8435,15395,322,1,f +8435,15571,26,3,f +8435,15571,191,2,f +8435,15573,70,1,f +8435,15675,320,1,f +8435,15712,70,1,f +8435,16981,2,1,f +8435,18646,19,1,f +8435,18654,72,1,t +8435,18654,72,3,f +8435,18674,15,2,f +8435,19532pr0002,484,1,f +8435,20482,297,1,t +8435,20482,297,1,f +8435,22667,4,1,t +8435,22667,4,1,f +8435,22885,71,4,f +8435,22888,2,1,f +8435,2357,71,1,f +8435,2357,70,15,f +8435,23969,322,1,f +8435,2412b,71,2,f +8435,2417,10,3,f +8435,2420,2,4,f +8435,2423,2,11,f +8435,2431,19,1,f +8435,2431,484,1,f +8435,2432,85,4,f +8435,2453b,71,1,f +8435,2454a,70,2,f +8435,2456,70,2,f +8435,2614,0,1,f +8435,2654,47,4,f +8435,2780,0,2,f +8435,2780,0,1,t +8435,30000,71,1,f +8435,3001,70,3,f +8435,3001,71,2,f +8435,3002,70,6,f +8435,3002,71,2,f +8435,3003,70,4,f +8435,3004,71,8,f +8435,3004,2,1,f +8435,3004,70,22,f +8435,30044,70,1,f +8435,3005,70,11,f +8435,3005,15,1,f +8435,3005,2,6,f +8435,3005,41,7,f +8435,3005,71,1,f +8435,3008,70,4,f +8435,30089,0,1,f +8435,3009,70,3,f +8435,30099,308,1,f +8435,3010,71,1,f +8435,3010,26,1,f +8435,3010,70,11,f +8435,30134,70,1,f +8435,30137,84,10,f +8435,30145,71,2,f +8435,3020,484,1,f +8435,3020,322,2,f +8435,3020,70,4,f +8435,3020,19,2,f +8435,3021,2,1,f +8435,3021,19,1,f +8435,3022,70,4,f +8435,3022,484,3,f +8435,3022,0,2,f +8435,3022,191,6,f +8435,3023,484,8,f +8435,3023,191,3,f +8435,3023,26,3,f +8435,3023,71,2,f +8435,3023,2,8,f +8435,3023,70,25,f +8435,3023,143,7,f +8435,3023,72,4,f +8435,30237b,71,2,f +8435,3024,26,2,f +8435,3024,27,1,t +8435,3024,27,2,f +8435,3024,26,1,t +8435,3028,71,1,f +8435,3030,322,1,f +8435,3031,70,1,f +8435,3031,19,1,f +8435,3031,71,1,f +8435,3032,71,1,f +8435,3033,19,1,f +8435,3036,19,6,f +8435,3037,71,3,f +8435,3039,41,2,f +8435,3039,70,3,f +8435,3039,71,1,f +8435,3040b,70,8,f +8435,3040b,71,3,f +8435,30565,322,1,f +8435,3062b,70,12,f +8435,3068b,322,2,f +8435,3068b,15,2,f +8435,3069b,19,2,f +8435,3069b,484,2,f +8435,3070b,19,1,t +8435,3070b,19,2,f +8435,3245b,71,3,f +8435,3298,85,2,f +8435,33009,26,1,f +8435,33057,484,1,f +8435,33183,10,1,t +8435,33183,10,2,f +8435,33291,26,4,f +8435,33291,4,24,f +8435,33291,4,3,t +8435,33291,26,2,t +8435,3460,70,2,f +8435,3622,70,5,f +8435,3623,2,3,f +8435,3623,71,1,f +8435,3623,70,3,f +8435,3633,31,6,f +8435,3659,308,1,f +8435,3660,70,2,f +8435,3660,2,2,f +8435,3660,71,2,f +8435,3665,70,2,f +8435,3665,2,5,f +8435,3666,19,1,f +8435,3678b,70,1,f +8435,3700,19,2,f +8435,3700,71,7,f +8435,3707,0,2,f +8435,3709,72,2,f +8435,3710,484,3,f +8435,3710,71,1,f +8435,3710,70,16,f +8435,3710,2,2,f +8435,3795,2,3,f +8435,3795,19,2,f +8435,3795,70,4,f +8435,3830,71,2,f +8435,3831,84,2,f +8435,3832,70,2,f +8435,3899,4,1,f +8435,3941,70,11,f +8435,3941,15,1,f +8435,3957a,15,1,f +8435,4032a,2,1,f +8435,41122stk01,9999,1,f +8435,4175,71,1,f +8435,4345b,15,1,f +8435,4346,47,1,f +8435,43888,31,3,f +8435,43888,70,1,f +8435,44728,19,3,f +8435,4528,0,1,f +8435,4529,0,1,f +8435,4533,41,1,f +8435,4599b,1,1,f +8435,4599b,1,1,t +8435,46212,41,2,f +8435,46303,26,1,f +8435,4697b,71,1,f +8435,4697b,71,1,t +8435,4733,70,2,f +8435,47847,72,2,f +8435,48336,71,1,f +8435,54200,71,1,t +8435,54200,19,5,f +8435,54200,19,1,t +8435,54200,143,7,f +8435,54200,71,3,f +8435,54200,143,1,t +8435,59900,46,2,f +8435,60169,71,1,f +8435,60470a,71,1,f +8435,60475b,84,2,f +8435,60478,72,4,f +8435,60481,70,3,f +8435,60594,70,4,f +8435,60608,15,8,f +8435,6083,71,1,f +8435,60897,71,2,f +8435,6091,70,2,f +8435,6141,41,1,t +8435,6141,0,1,f +8435,6141,0,1,t +8435,6141,70,6,f +8435,6141,70,2,t +8435,6141,2,7,f +8435,6141,41,4,f +8435,6141,2,3,t +8435,6232,19,1,f +8435,63864,19,2,f +8435,63864,322,2,f +8435,63864,2,4,f +8435,63868,71,2,f +8435,63965,15,2,f +8435,6558,1,3,f +8435,73983,71,2,f +8435,85984,191,48,f +8435,85984,71,1,f +8435,87079,19,1,f +8435,87079,484,1,f +8435,87079,26,5,f +8435,87087,19,2,f +8435,87580,26,1,f +8435,88072,71,2,f +8435,88930,15,2,f +8435,89523,19,1,f +8435,89801,71,1,f +8435,91405,322,1,f +8435,92255,226,1,f +8435,92258,0,1,f +8435,92402,0,1,f +8435,92410,30,1,f +8435,92438,19,1,f +8435,92438,10,2,f +8435,92456pr0100c01,78,1,f +8435,92456pr0102c01,78,1,f +8435,92456pr0103c01,78,1,f +8435,92820pr0006c01a,85,1,f +8435,92950,70,2,f +8435,92950,71,2,f +8435,96874,25,1,t +8435,98138,84,13,f +8435,98138,47,1,t +8435,98138,47,1,f +8435,98138,84,3,t +8435,98138pr0017,29,1,t +8435,98138pr0017,29,2,f +8435,98138pr0048,70,2,f +8435,98138pr0048,70,1,t +8435,98285,0,2,f +8435,98286,71,2,f +8435,98388pr0008,308,1,f +8435,98560,2,1,f +8435,98560,308,3,f +8435,98560,71,3,f +8438,10201,71,8,f +8438,10202,71,2,f +8438,10247,71,4,f +8438,10258,0,1,f +8438,11211,4,8,f +8438,11212,71,9,f +8438,11212,72,14,f +8438,11213,71,1,f +8438,11253,0,2,f +8438,11253,0,1,t +8438,11399,72,3,f +8438,11476,71,2,f +8438,11477,272,9,f +8438,11477,72,5,f +8438,11478,71,6,f +8438,13349,0,2,f +8438,14704,71,8,f +8438,14769,72,5,f +8438,15068,72,64,f +8438,15461,0,24,f +8438,15462,28,8,f +8438,15573,72,19,f +8438,15573,272,7,f +8438,15573,0,15,f +8438,15712,71,26,f +8438,15712,72,11,f +8438,16091,71,1,f +8438,16770,41,32,f +8438,18575,0,1,f +8438,18649,0,4,f +8438,18651,0,10,f +8438,20877,484,1,f +8438,2357,72,1,f +8438,2357,14,4,f +8438,2357,71,4,f +8438,2412b,0,48,f +8438,2412b,179,14,f +8438,2412b,72,8,f +8438,2419,72,2,f +8438,2419,71,7,f +8438,2420,0,4,f +8438,2420,28,2,f +8438,2431,15,2,f +8438,2431,41,16,f +8438,2431,1,2,f +8438,2431,72,2,f +8438,2431,71,4,f +8438,2431,0,9,f +8438,2431pr0017,14,4,f +8438,2432,0,2,f +8438,2445,71,1,f +8438,2449,71,2,f +8438,2449,72,4,f +8438,2450,71,6,f +8438,2450,72,6,f +8438,2450,0,9,f +8438,2456,0,2,f +8438,2460,71,2,f +8438,2465,71,4,f +8438,2465,0,1,f +8438,2476a,71,8,f +8438,2540,72,5,f +8438,2654,72,14,f +8438,2654,41,6,f +8438,2654,0,2,f +8438,2730,71,4,f +8438,2730,0,9,f +8438,2780,0,9,t +8438,2780,0,120,f +8438,2921,71,2,f +8438,298c02,71,1,t +8438,298c02,71,2,f +8438,30000,71,6,f +8438,3001,71,2,f +8438,3001,0,10,f +8438,3002,72,5,f +8438,3003,71,3,f +8438,3003,15,2,f +8438,3003,0,11,f +8438,3003,14,2,f +8438,3004,0,7,f +8438,3004,71,4,f +8438,3004,72,7,f +8438,3005,72,4,f +8438,3005,0,12,f +8438,3006,0,2,f +8438,3007,0,2,f +8438,3008,0,5,f +8438,3008,72,2,f +8438,3009,0,5,f +8438,3009,72,1,f +8438,3010,71,4,f +8438,3010,72,2,f +8438,30145,71,2,f +8438,30165,15,1,f +8438,3020,1,2,f +8438,3020,72,49,f +8438,3020,272,48,f +8438,3020,71,6,f +8438,3020,14,2,f +8438,3020,15,13,f +8438,3021,4,1,f +8438,3021,0,15,f +8438,3021,15,4,f +8438,3021,72,6,f +8438,3022,71,4,f +8438,3022,0,3,f +8438,3022,72,7,f +8438,3022,14,9,f +8438,3022,1,3,f +8438,3022,2,1,f +8438,3023,15,2,f +8438,3023,41,49,f +8438,3023,0,1,f +8438,3023,28,2,f +8438,3023,72,11,f +8438,3023,47,2,f +8438,3023,71,12,f +8438,3023,1,24,f +8438,30237b,71,2,f +8438,3024,72,3,t +8438,3024,72,7,f +8438,3024,28,1,t +8438,3024,71,6,f +8438,3024,71,2,t +8438,3024,28,6,f +8438,3024,1,2,f +8438,3024,1,1,t +8438,3024,0,1,t +8438,3024,0,3,f +8438,30251,40,1,f +8438,30259,71,6,f +8438,3028,0,1,f +8438,3029,72,2,f +8438,3030,71,7,f +8438,3030,72,2,f +8438,3031,71,4,f +8438,3032,71,4,f +8438,3034,71,6,f +8438,3034,72,3,f +8438,3034,0,5,f +8438,3035,71,8,f +8438,3035,72,3,f +8438,3035,0,5,f +8438,30350b,0,2,f +8438,30355,0,3,f +8438,30355,71,6,f +8438,30356,71,6,f +8438,30356,0,3,f +8438,30359b,71,2,f +8438,3036,72,2,f +8438,30363,0,4,f +8438,30363,72,8,f +8438,30363,15,2,f +8438,3037,71,5,f +8438,3037,72,5,f +8438,3038,0,2,f +8438,3039,0,4,f +8438,3039,72,3,f +8438,3039,71,1,f +8438,30414,15,10,f +8438,30414,71,2,f +8438,30503,72,4,f +8438,30503,71,1,f +8438,30504,0,3,f +8438,30526,71,1,f +8438,30565,272,3,f +8438,3068b,0,4,f +8438,3068b,71,2,f +8438,3068b,72,5,f +8438,3068b,14,1,f +8438,3069b,71,7,f +8438,3069b,41,48,f +8438,3069b,40,6,f +8438,3069b,0,24,f +8438,3069b,72,3,f +8438,3070b,14,1,t +8438,3070b,0,2,t +8438,3070b,28,9,f +8438,3070b,72,7,t +8438,3070b,72,27,f +8438,3070b,0,4,f +8438,3070b,41,20,f +8438,3070b,28,1,t +8438,3070b,41,1,t +8438,3070b,14,2,f +8438,3176,72,4,f +8438,3176,71,1,f +8438,32002,19,5,t +8438,32002,19,6,f +8438,32009,0,4,f +8438,32018,0,3,f +8438,32028,72,6,f +8438,32034,15,4,f +8438,32054,4,22,f +8438,32059,71,4,f +8438,32064a,0,8,f +8438,32123b,71,4,f +8438,32123b,14,1,t +8438,32123b,14,2,f +8438,32123b,71,4,t +8438,32124,0,12,f +8438,32124,1,4,f +8438,32125,71,5,f +8438,32126,1,2,f +8438,32198,19,4,f +8438,32270,0,4,f +8438,32316,72,2,f +8438,32324,71,1,f +8438,3245c,71,1,f +8438,32523,71,4,f +8438,32524,71,16,f +8438,32526,71,4,f +8438,32526,0,4,f +8438,32529,0,2,f +8438,32530,0,2,f +8438,32531,71,6,f +8438,32532,0,4,f +8438,32532,71,3,f +8438,32555,0,16,f +8438,3297,71,2,f +8438,3298,0,4,f +8438,3298,72,1,f +8438,3298,71,4,f +8438,33299a,71,1,f +8438,3460,72,4,f +8438,3460,0,1,f +8438,3460,71,22,f +8438,3460,1,4,f +8438,3622,72,4,f +8438,3622,0,2,f +8438,3622,71,4,f +8438,3623,72,5,f +8438,3623,0,22,f +8438,3626cpr0902,78,1,f +8438,3626cpr1068,70,1,f +8438,3626cpr1517,78,1,f +8438,3626cpr1649,78,1,f +8438,3626cpr1673,78,1,f +8438,3660,72,8,f +8438,3660,0,2,f +8438,3665,0,8,f +8438,3665,72,6,f +8438,3666,72,9,f +8438,3666,0,35,f +8438,3673,71,3,t +8438,3673,71,10,f +8438,3678b,71,2,f +8438,3678b,72,2,f +8438,3700,71,7,f +8438,3701,71,2,f +8438,3701,15,2,f +8438,3702,0,4,f +8438,3703,72,4,f +8438,3703,0,10,f +8438,3703,71,2,f +8438,3705,0,4,f +8438,3707,0,1,f +8438,3709,71,2,f +8438,3710,1,4,f +8438,3710,15,4,f +8438,3710,72,4,f +8438,3710,0,3,f +8438,3710,14,4,f +8438,3710,71,20,f +8438,3710,272,6,f +8438,3713,71,4,f +8438,3713,71,1,t +8438,3737,0,5,f +8438,3747b,14,2,f +8438,3747b,72,2,f +8438,3747b,71,4,f +8438,3747b,0,10,f +8438,3795,71,2,f +8438,3795,15,6,f +8438,3795,72,16,f +8438,3795,0,4,f +8438,3832,71,2,f +8438,3832,0,5,f +8438,3895,72,24,f +8438,3937,71,8,f +8438,3941,4,4,f +8438,3957b,71,1,f +8438,3958,0,1,f +8438,4032a,71,7,f +8438,4032a,0,4,f +8438,4032a,14,2,f +8438,40490,0,4,f +8438,4070,72,2,f +8438,4070,47,2,f +8438,4081b,71,3,f +8438,41239,72,3,f +8438,4162,15,10,f +8438,4162,0,7,f +8438,4162,72,16,f +8438,41749,72,1,f +8438,4175,0,4,f +8438,41750,72,1,f +8438,41767,72,2,f +8438,41768,72,2,f +8438,41769,72,1,f +8438,41769,71,6,f +8438,41769,0,4,f +8438,41770,72,1,f +8438,41770,0,4,f +8438,41770,71,6,f +8438,42003,72,1,f +8438,42022,72,2,f +8438,42023,0,8,f +8438,42446,72,2,f +8438,42610,71,5,f +8438,4274,1,5,t +8438,4274,71,16,f +8438,4274,1,8,f +8438,4274,71,1,t +8438,4282,0,5,f +8438,4282,71,2,f +8438,4285b,41,4,f +8438,4286,72,4,f +8438,4286,71,4,f +8438,4287,71,4,f +8438,43093,1,16,f +8438,43711,71,1,f +8438,43711,72,1,f +8438,43712,72,2,f +8438,43713,71,8,f +8438,43720,72,1,f +8438,43722,71,5,f +8438,43722,72,9,f +8438,43723,72,9,f +8438,43723,71,3,f +8438,43898,72,4,f +8438,44126,72,2,f +8438,44294,71,1,f +8438,44300,72,3,f +8438,44728,72,12,f +8438,44728,0,20,f +8438,44728,15,4,f +8438,4477,72,3,f +8438,4477,71,16,f +8438,4519,71,6,f +8438,45677,72,1,f +8438,4588,72,6,f +8438,4590,72,3,f +8438,4598,0,2,f +8438,4599b,71,1,f +8438,4599b,71,1,t +8438,47397,71,2,f +8438,47398,71,2,f +8438,4740,71,1,f +8438,47455,0,2,f +8438,47457,71,4,f +8438,47759,72,1,f +8438,48169,72,2,f +8438,48171,72,2,f +8438,48336,71,10,f +8438,48496,0,6,f +8438,4861,72,3,f +8438,4865b,71,14,f +8438,4871,0,1,f +8438,48729b,0,2,t +8438,48729b,0,10,f +8438,48933,72,4,f +8438,48989,71,18,f +8438,50304,71,1,f +8438,50304,72,1,f +8438,50305,72,1,f +8438,50305,71,3,f +8438,50955,71,5,f +8438,50956,71,5,f +8438,51739,272,3,f +8438,51739,72,14,f +8438,51739,71,4,f +8438,52501,0,2,f +8438,54200,72,18,f +8438,54200,40,1,t +8438,54200,72,5,t +8438,54200,40,2,f +8438,54383,0,2,f +8438,54383,72,3,f +8438,54383,71,5,f +8438,54384,72,3,f +8438,54384,0,2,f +8438,54384,71,5,f +8438,59426,72,1,f +8438,59443,71,18,f +8438,59900,1,1,f +8438,60470b,0,3,f +8438,60474,72,2,f +8438,60475b,15,2,f +8438,60477,72,1,f +8438,60479,15,4,f +8438,60484,72,2,f +8438,60485,71,2,f +8438,60581,72,2,f +8438,60849,71,1,t +8438,60849,71,2,f +8438,60897,14,2,f +8438,6106,0,3,f +8438,6106,71,2,f +8438,61184,71,4,f +8438,61252,72,3,f +8438,6134,0,6,f +8438,6134,1,8,f +8438,61409,72,26,f +8438,6141,179,6,f +8438,6141,36,2,f +8438,6141,0,4,t +8438,6141,47,1,t +8438,6141,36,1,t +8438,6141,182,1,t +8438,6141,0,30,f +8438,6141,179,2,t +8438,6141,47,3,f +8438,6141,182,16,f +8438,6141,41,1,t +8438,6141,41,3,f +8438,61485,0,1,f +8438,6179,72,2,f +8438,6180,0,1,f +8438,6222,15,1,f +8438,6232,71,4,f +8438,6232,15,4,f +8438,62462,71,3,f +8438,6249,72,5,f +8438,62810,84,1,f +8438,63864,72,5,f +8438,63864,71,8,f +8438,63868,71,2,f +8438,63965,71,4,f +8438,63965,0,2,f +8438,64651,72,1,f +8438,6541,71,2,f +8438,6558,1,22,f +8438,6583,0,6,f +8438,6587,28,4,f +8438,6589,19,16,f +8438,6589,19,5,t +8438,6628,0,8,f +8438,6632,0,6,f +8438,6636,72,5,f +8438,6636,71,12,f +8438,72454,0,2,f +8438,73983,72,42,f +8438,75902pr0004,4,1,f +8438,75937,179,4,f +8438,76042stk01,9999,1,f +8438,85861,0,5,f +8438,85861,0,1,t +8438,85984,72,20,f +8438,85984,71,15,f +8438,86208,71,2,f +8438,87079,0,16,f +8438,87079,72,8,f +8438,87079,71,12,f +8438,87083,72,15,f +8438,87087,0,6,f +8438,87087,71,2,f +8438,87408,0,4,f +8438,87544,40,3,f +8438,87552,71,20,f +8438,87552,0,2,f +8438,87552,47,6,f +8438,87580,0,6,f +8438,87615,272,2,f +8438,87990,308,1,f +8438,88517,47,4,f +8438,88646,0,13,f +8438,88646,71,4,f +8438,90194,72,1,f +8438,90194,71,3,f +8438,90258,72,2,f +8438,90398pr0005,0,1,f +8438,90398pr0006,272,8,f +8438,90398pr0008,320,1,f +8438,90398pr0009,0,1,f +8438,90398pr0010,272,1,f +8438,90498,0,3,f +8438,90498pr0001,0,4,f +8438,90498pr0002,0,2,f +8438,91501,71,4,f +8438,91988,72,8,f +8438,92474,47,2,f +8438,92593,71,4,f +8438,92947,0,1,f +8438,93273,71,2,f +8438,93274,72,2,f +8438,93274,0,1,f +8438,93274,15,6,f +8438,93606,72,8,f +8438,95188,72,2,f +8438,95199,72,1,f +8438,95227,72,2,f +8438,95347,0,2,f +8438,96874,25,1,t +8438,970c00,272,2,f +8438,970c00pr0842,0,1,f +8438,970c00pr0853,0,1,f +8438,970c00pr0856,72,1,f +8438,973pr2985c01,272,1,f +8438,973pr2993c01,0,1,f +8438,973pr3003c01,272,1,f +8438,973pr3013c01,0,1,f +8438,973pr3016c01,0,1,f +8438,98138,179,4,t +8438,98138,71,4,f +8438,98138,179,32,f +8438,98138,71,2,t +8438,98385,70,1,f +8438,98560,15,2,f +8438,99206,71,12,f +8438,99207,0,8,f +8438,99773,14,1,f +8438,99773,72,3,f +8438,99780,72,8,f +8438,99780,0,1,f +8438,99780,15,2,f +8438,99781,71,12,f +8438,99784,47,1,f +8441,14226c11,0,2,f +8441,14226c31,0,1,f +8441,2335,4,2,f +8441,2335,1,1,f +8441,2356,0,2,f +8441,2357,4,2,f +8441,2357,15,19,f +8441,2357,14,2,f +8441,2412b,15,1,f +8441,2412b,71,3,f +8441,2420,4,2,f +8441,2435,2,4,f +8441,2436,4,2,f +8441,2439,72,2,f +8441,2445,0,2,f +8441,2453a,15,8,f +8441,2454a,15,6,f +8441,2456,4,2,f +8441,2456,14,2,f +8441,2456,1,1,f +8441,2456,71,2,f +8441,2465,4,6,f +8441,2465,15,1,f +8441,2540,15,1,f +8441,2877,14,1,f +8441,2877,15,4,f +8441,298c02,14,2,f +8441,3001,4,33,f +8441,3001,1,33,f +8441,3001,14,4,f +8441,3001,71,6,f +8441,3001,0,7,f +8441,3001,15,25,f +8441,3002,1,1,f +8441,3002,15,8,f +8441,3003,15,7,f +8441,3003,33,21,f +8441,3003,0,10,f +8441,3003,71,5,f +8441,3003,36,8,f +8441,3003,4,29,f +8441,3003,1,7,f +8441,3004,46,92,f +8441,3004,15,95,f +8441,3004,14,9,f +8441,3004,71,38,f +8441,3004,4,51,f +8441,3004,33,46,f +8441,3004,0,63,f +8441,3004,1,18,f +8441,3005,4,79,f +8441,3005,72,28,f +8441,3005,15,65,f +8441,3005,71,87,f +8441,3005,0,52,f +8441,3005,33,10,f +8441,3006,71,4,f +8441,3006,1,1,f +8441,3006,14,3,f +8441,3006,4,4,f +8441,3007,4,2,f +8441,3007,15,2,f +8441,3007,71,3,f +8441,3007,1,4,f +8441,30076,0,2,f +8441,3008,0,3,f +8441,3008,15,6,f +8441,3008,4,13,f +8441,3008,71,27,f +8441,3009,4,11,f +8441,3009,71,44,f +8441,3009,15,19,f +8441,3010,15,46,f +8441,3010,1,10,f +8441,3010,14,5,f +8441,3010,0,2,f +8441,3010,4,47,f +8441,3010,71,54,f +8441,30151a,47,1,f +8441,30194,72,2,f +8441,3020,14,1,f +8441,3020,0,1,f +8441,3020,4,2,f +8441,3022,0,3,f +8441,30228,72,2,f +8441,3023,0,1,f +8441,3027,72,3,f +8441,3027,71,1,f +8441,3031,4,2,f +8441,3031,14,1,f +8441,3031,0,1,f +8441,3031,71,2,f +8441,3035,4,1,f +8441,3037,4,16,f +8441,3037,0,12,f +8441,3037,14,1,f +8441,30388,14,2,f +8441,30389b,14,1,f +8441,3039,14,3,f +8441,3039,33,1,f +8441,3039,4,16,f +8441,3039,47,2,f +8441,30391,0,18,f +8441,30396,14,1,f +8441,3040b,71,2,f +8441,3040b,14,2,f +8441,3041,4,2,f +8441,3043,0,2,f +8441,3043,4,1,f +8441,3045,4,2,f +8441,3048c,0,4,f +8441,3062b,0,2,f +8441,30648,0,4,f +8441,3069b,14,2,f +8441,3297,0,6,f +8441,3297,4,2,f +8441,3297,1,1,f +8441,3299,4,2,f +8441,3300,4,1,f +8441,3403c01,71,1,f +8441,3460,4,2,f +8441,3470,2,4,f +8441,3471,2,4,f +8441,3492c01,14,1,f +8441,3622,71,32,f +8441,3622,15,25,f +8441,3622,0,4,f +8441,3622,4,27,f +8441,3623,4,4,f +8441,3626bpr0001,14,2,f +8441,3660,1,6,f +8441,3660,4,2,f +8441,3660,14,5,f +8441,3679,71,1,f +8441,3680,0,1,f +8441,3710,4,4,f +8441,3710,15,2,f +8441,3795,0,1,f +8441,3823,41,2,f +8441,3823,47,2,f +8441,3836,6,1,f +8441,3837,72,2,f +8441,3865,72,2,f +8441,3867,72,1,f +8441,3901,70,1,f +8441,3937,71,3,f +8441,3937,0,2,f +8441,3938,0,1,f +8441,3941,0,3,f +8441,3941,15,1,f +8441,3941,14,17,f +8441,3941,4,2,f +8441,3941,25,1,f +8441,3941,71,1,f +8441,3941,46,1,f +8441,3941,72,3,f +8441,3957a,71,1,f +8441,3957a,15,2,f +8441,4032a,0,3,f +8441,4079,15,2,f +8441,4080,71,1,f +8441,4080,14,1,f +8441,4130,15,4,f +8441,4131,0,4,f +8441,4132,15,6,f +8441,4132,1,5,f +8441,4132,4,14,f +8441,4133,14,5,f +8441,4133,72,6,f +8441,4133,15,14,f +8441,4286,71,1,f +8441,44126,15,2,f +8441,45677,4,1,f +8441,4589,182,1,f +8441,4589,46,8,f +8441,4714,15,1,f +8441,4715,15,2,f +8441,4719,4,1,f +8441,4740,72,2,f +8441,56902,71,22,f +8441,6083,72,3,f +8441,6091,4,4,f +8441,6093,0,1,f +8441,6111,0,2,f +8441,6111,71,14,f +8441,6111,4,7,f +8441,6111,15,9,f +8441,6112,71,14,f +8441,6112,15,1,f +8441,6134,71,4,f +8441,6141,4,2,f +8441,6141,182,3,f +8441,6141,36,3,f +8441,6141,47,5,f +8441,6215,4,2,f +8441,6238,47,1,f +8441,6249,72,2,f +8441,6249,71,5,f +8441,92851,47,2,f +8441,970c00,15,1,f +8441,970c00,0,1,f +8441,973pr1239c01,15,2,f +8442,11055pr0004,0,1,f +8442,2343,71,1,f +8442,2357,71,6,f +8442,2397,72,2,f +8442,2412b,0,3,f +8442,2420,0,10,f +8442,2431,70,3,f +8442,2432,70,3,f +8442,2489,70,3,f +8442,2526,1,1,f +8442,2526,297,1,f +8442,2530,72,1,t +8442,2530,72,2,f +8442,2544,0,1,f +8442,2544pr0001,0,2,f +8442,2561,70,2,f +8442,2562,70,1,f +8442,2566,0,1,f +8442,2654,19,3,f +8442,2780,0,1,t +8442,2780,0,2,f +8442,2817,71,1,f +8442,2926,0,1,f +8442,3001,288,2,f +8442,3002,70,1,f +8442,3004,71,16,f +8442,3004,15,1,f +8442,3004,288,5,f +8442,30044,70,4,f +8442,30046,0,3,f +8442,3005,0,2,f +8442,3009,71,5,f +8442,3010,288,4,f +8442,3010,70,2,f +8442,30136,308,4,f +8442,30154,72,1,f +8442,3020,0,12,f +8442,3021,70,2,f +8442,3021,72,1,f +8442,3022,71,8,f +8442,3023,70,6,f +8442,3023,72,7,f +8442,3023,15,1,f +8442,30237b,71,3,f +8442,30238,0,1,f +8442,3024,72,2,f +8442,3033,0,2,f +8442,3035,70,1,f +8442,30374,0,1,f +8442,3038,0,2,f +8442,3039,71,2,f +8442,3040b,288,4,f +8442,3040b,72,5,f +8442,30503,0,1,f +8442,3062b,46,2,f +8442,3062b,71,41,f +8442,3068b,0,1,f +8442,3068bpr0197,28,1,f +8442,3069b,308,5,f +8442,3070bpr0058,272,1,f +8442,3070bpr0058,272,1,t +8442,32064b,0,2,f +8442,33211,70,2,f +8442,33211,0,2,f +8442,3460,0,4,f +8442,3623,70,2,f +8442,3626bpr0472,78,1,f +8442,3626bpr0593,78,1,f +8442,3626bpr0658,78,1,f +8442,3626bpr0789,78,1,f +8442,3626bpr0804,78,1,f +8442,3659,71,5,f +8442,3660,0,2,f +8442,3660,70,8,f +8442,3665,70,6,f +8442,3666,308,2,f +8442,3673,71,2,f +8442,3673,71,1,t +8442,3679,71,1,f +8442,3680,0,1,f +8442,3700,70,6,f +8442,3705,0,1,f +8442,3710,0,8,f +8442,3710,71,2,f +8442,3731,0,2,f +8442,3795,0,4,f +8442,3795,308,3,f +8442,3830,72,1,f +8442,3831,72,1,f +8442,3832,0,1,f +8442,3837,72,1,f +8442,3937,72,2,f +8442,40234,71,1,f +8442,4032a,70,4,f +8442,4070,0,3,f +8442,4085c,0,2,f +8442,4085c,71,4,f +8442,4286,0,2,f +8442,43888,71,2,f +8442,4460b,72,15,f +8442,4488,0,2,f +8442,4489b,0,2,f +8442,4489b,70,2,f +8442,45677,0,2,f +8442,4589,182,1,f +8442,4599b,0,3,f +8442,4623,71,1,f +8442,4643131,9999,1,t +8442,4644163,9999,1,t +8442,4738a,70,1,f +8442,4739a,70,1,f +8442,4740,0,1,f +8442,47720,0,1,f +8442,48336,0,4,f +8442,4854,0,1,f +8442,4865a,288,2,f +8442,50231,70,1,f +8442,51739,0,1,f +8442,54200,0,12,f +8442,54200,0,2,t +8442,60475a,288,6,f +8442,60477,308,3,f +8442,60478,0,4,f +8442,60583a,0,1,f +8442,6087,71,1,f +8442,6091,288,4,f +8442,6134,71,2,f +8442,6141,0,3,t +8442,6141,0,12,f +8442,6141,71,1,t +8442,6141,71,7,f +8442,61482,71,1,f +8442,63082,71,2,f +8442,63864,72,2,f +8442,63868,71,2,f +8442,64390,70,1,f +8442,64644,308,3,f +8442,64647,57,6,f +8442,64647,57,2,t +8442,64647,4,1,t +8442,64647,4,1,f +8442,6541,14,2,f +8442,6636,0,2,f +8442,73983,0,2,f +8442,75998pr0005,70,1,f +8442,75998pr0007,15,1,f +8442,85984,0,4,f +8442,87087,71,4,f +8442,87552,71,3,f +8442,88292,0,2,f +8442,88704,70,2,f +8442,92950,71,2,f +8442,94161,70,2,f +8442,95220pr0001,0,1,f +8442,95226,72,1,f +8442,95228,40,2,f +8442,95343,70,1,f +8442,95344,28,1,f +8442,95344,28,1,t +8442,95348,15,1,f +8442,96904,334,1,f +8442,96904,334,1,t +8442,96905,334,1,t +8442,96905,334,1,f +8442,96906,334,1,f +8442,96906,334,1,t +8442,96907,334,1,t +8442,96907,334,1,f +8442,970c00,71,1,f +8442,970c00,15,2,f +8442,970c00pr0217,70,1,f +8442,970x026,72,1,f +8442,973pr1689c01,70,1,f +8442,973pr1770c01,308,1,f +8442,973pr1811c01,72,1,f +8442,973pr1845c01,4,1,f +8442,973pr1866c01,4,1,f +8442,99563,334,1,f +8442,99563,334,1,t +8443,14769,0,1,f +8443,15571,0,1,f +8443,15573,0,1,f +8443,15573,4,2,f +8443,18868a,41,1,f +8443,19220,0,1,f +8443,19981pr0041,41,1,f +8443,21269,15,1,f +8443,21445,0,4,f +8443,2412b,41,2,f +8443,298c02,14,1,f +8443,298c02,14,1,t +8443,30162,297,1,f +8443,30165,0,1,f +8443,3021,0,1,f +8443,3023,4,2,f +8443,3023,0,1,f +8443,3065,40,3,f +8443,3176,0,1,f +8443,3626cpr1275,78,1,f +8443,3795,72,1,f +8443,3941,41,1,f +8443,4032a,0,2,f +8443,4081b,0,6,f +8443,44567a,0,1,f +8443,50254,0,4,f +8443,54200,4,1,t +8443,54200,0,1,t +8443,54200,4,1,f +8443,54200,0,4,f +8443,59900,0,2,f +8443,6141,297,6,f +8443,6141,0,3,f +8443,6141,4,2,f +8443,6141,0,1,t +8443,6141,297,1,t +8443,6141,4,1,t +8443,64644,297,2,f +8443,64647,182,2,f +8443,64647,182,1,t +8443,970c00,15,1,f +8443,973pr2464c01,15,1,f +8443,99206,0,1,f +8443,99780,0,2,f +8445,3134,15,1,f +8445,394ac48,15,1,f +8445,x456c01,47,1,f +8447,2357,19,4,f +8447,2376,0,1,f +8447,2412b,484,8,f +8447,2412b,379,2,f +8447,2412b,72,15,f +8447,2419,72,4,f +8447,2420,72,11,f +8447,2431,19,6,f +8447,2431,0,1,f +8447,2456,14,1,f +8447,2460,72,3,f +8447,2476a,70,18,f +8447,2555,19,11,f +8447,2654,71,1,f +8447,2654,19,29,f +8447,2723,0,10,f +8447,2817,14,3,f +8447,2876,71,1,f +8447,298c02,71,1,t +8447,298c02,71,4,f +8447,2991,0,10,f +8447,3001,0,27,f +8447,3002,320,2,f +8447,3003,484,7,f +8447,30031,0,1,f +8447,3008,72,8,f +8447,3009,71,23,f +8447,3010,72,6,f +8447,30136,19,18,f +8447,30154,72,2,f +8447,30162,72,2,f +8447,3020,19,7,f +8447,3021,72,33,f +8447,3022,19,14,f +8447,3023,72,2,f +8447,3023,47,2,f +8447,3023,320,33,f +8447,30287pr01,272,1,f +8447,3029,71,1,f +8447,30303,71,4,f +8447,30304,72,1,f +8447,3031,72,16,f +8447,3032,71,12,f +8447,3034,19,2,f +8447,30365,71,1,f +8447,3037,71,2,f +8447,30373,19,1,f +8447,30374,71,4,f +8447,3038,72,4,f +8447,30383,0,2,f +8447,30387,71,8,f +8447,30388,71,20,f +8447,3039,19,11,f +8447,3039pr0008,0,1,f +8447,30409,70,1,f +8447,3040b,19,24,f +8447,3045,71,2,f +8447,30480,142,1,f +8447,30483pr01,70,1,f +8447,30503,72,2,f +8447,30526,1,4,f +8447,30541,0,1,f +8447,30553,0,2,f +8447,30565,71,16,f +8447,30592,71,1,f +8447,3062b,19,14,f +8447,3062b,0,3,f +8447,3063b,71,16,f +8447,30663,14,2,f +8447,3068b,72,26,f +8447,3069bp51,0,1,f +8447,3069bpr0090,72,3,f +8447,3176,320,1,f +8447,32000,71,4,f +8447,32018,71,2,f +8447,32028,71,2,f +8447,32064b,0,6,f +8447,32065,71,1,f +8447,32073,71,2,f +8447,32126,0,1,f +8447,3455,0,1,f +8447,3460,72,4,f +8447,3622,71,11,f +8447,3623,19,7,f +8447,3626b,0,1,f +8447,3626b,41,5,f +8447,3626bpr0342,78,1,f +8447,3626bpr0378,78,1,f +8447,3660,72,12,f +8447,3665,72,14,f +8447,3666,0,5,f +8447,3676,19,6,f +8447,3678b,71,20,f +8447,3679,71,3,f +8447,3680,0,3,f +8447,3700,72,1,f +8447,3701,0,1,f +8447,3702,0,2,f +8447,3709,0,1,f +8447,3710,72,12,f +8447,3713,0,1,t +8447,3713,0,1,f +8447,3747b,71,7,f +8447,3794a,72,10,f +8447,3795,71,6,f +8447,3821,72,1,f +8447,3822,72,1,f +8447,3894,72,5,f +8447,3901,70,1,f +8447,3933,71,8,f +8447,3934,71,8,f +8447,3937,0,1,f +8447,3938,19,1,f +8447,3940b,72,8,f +8447,3941,71,2,f +8447,3958,71,3,f +8447,3960pb010,47,1,f +8447,4032a,0,1,f +8447,4079,484,4,f +8447,4083,19,4,f +8447,4150pr0021,71,2,f +8447,4150pr0022,71,2,f +8447,4150ps3,0,1,f +8447,4151,72,2,f +8447,41539,72,10,f +8447,4274,1,6,f +8447,4274,1,1,t +8447,4287,71,1,f +8447,43093,1,10,f +8447,4345b,71,1,f +8447,4346,47,1,f +8447,43719,72,5,f +8447,43720,19,1,f +8447,43721,19,1,f +8447,43898,72,1,f +8447,44360,15,1,f +8447,44375a,72,1,f +8447,4445,71,4,f +8447,44661,72,4,f +8447,44728,72,6,f +8447,44938,484,1,f +8447,45410,71,1,f +8447,45411,71,1,f +8447,45677,72,1,f +8447,4589,72,4,f +8447,4590,72,2,f +8447,4599a,320,8,f +8447,4623,0,6,f +8447,4733,0,3,f +8447,47397,71,12,f +8447,47398,71,12,f +8447,4740,0,2,f +8447,4740,41,1,f +8447,47543,71,1,f +8447,47543pb01,47,1,f +8447,48092,71,8,f +8447,48336,19,24,f +8447,4864b,15,2,f +8447,48980,9999,1,t +8447,55295,0,1,f +8447,55296,0,1,f +8447,55297,0,1,f +8447,55298,0,1,f +8447,55299,0,1,f +8447,55300,0,1,f +8447,6019,71,35,f +8447,6091,71,3,f +8447,6141,14,5,f +8447,6141,14,1,t +8447,6141,72,1,t +8447,6141,72,6,f +8447,6177,71,1,f +8447,6179,0,1,f +8447,6541,19,2,f +8447,6564,72,1,f +8447,6565,72,1,f +8447,6587,72,1,f +8447,6636,71,27,f +8447,78c06,143,2,f +8447,78c31,143,1,f +8447,970c00,70,1,f +8447,970c00,15,1,f +8447,970c00,142,1,f +8447,970c00pr0074,19,1,f +8447,970x194,15,1,f +8447,973c32,70,1,f +8447,973pr0579c01,15,1,f +8447,973pr1142c01,272,1,f +8447,973pr1145c01,19,1,f +8447,973px160c03,142,1,f +8450,46281,45,1,f +8450,clikits037,13,1,f +8450,clikits081,5,1,f +8450,clikits084,45,1,f +8451,3011,4,1,f +8451,4066,4,2,f +8451,40666,10,2,f +8451,47440,14,1,f +8451,51546,15,1,f +8451,58498,0,1,f +8451,6474,10,1,f +8451,89618,15,1,f +8451,89619,1,1,f +8451,89937,4,1,f +8451,89941,15,1,f +8454,2412b,4,2,f +8454,2412b,80,29,f +8454,2431,0,4,f +8454,2444,0,7,f +8454,2555,0,2,f +8454,2569,0,2,f +8454,2654,0,5,f +8454,2780,0,3,t +8454,2780,0,296,f +8454,2797c02,14,1,f +8454,2819,71,1,f +8454,2850a,71,6,f +8454,2851,14,6,f +8454,2852,71,6,f +8454,2853,71,2,f +8454,2854,72,2,f +8454,2905,71,8,f +8454,30031,80,2,f +8454,3022,0,4,f +8454,3023,47,4,f +8454,3034,71,1,f +8454,3036,0,1,f +8454,30360,71,2,f +8454,3040b,0,1,f +8454,3068b,71,1,f +8454,32000,0,14,f +8454,32000,71,2,f +8454,32002,72,1,t +8454,32002,72,3,f +8454,32009,4,2,f +8454,32009,0,4,f +8454,32012,14,1,f +8454,32013,4,6,f +8454,32013,0,17,f +8454,32014,4,2,f +8454,32014,0,4,f +8454,32017,71,4,f +8454,32019,0,10,f +8454,32020,71,4,f +8454,32020,80,6,f +8454,32034,0,10,f +8454,32034,71,16,f +8454,32039,71,2,f +8454,32039,0,8,f +8454,32054,0,60,f +8454,32054,4,20,f +8454,32056,14,2,f +8454,32056,4,14,f +8454,32062,4,32,f +8454,32062,4,1,t +8454,32064b,0,4,f +8454,32073,71,26,f +8454,32123b,71,49,f +8454,32123b,71,4,t +8454,32125,71,1,f +8454,32138,0,2,f +8454,32140,0,14,f +8454,32140,4,17,f +8454,32140,71,4,f +8454,32184,0,2,f +8454,32184,4,28,f +8454,32199,0,2,f +8454,32250,4,4,f +8454,32269,71,1,f +8454,32270,71,18,f +8454,32271,0,2,f +8454,32278,0,36,f +8454,32278,71,4,f +8454,32278,4,28,f +8454,32291,71,6,f +8454,32291,0,4,f +8454,32316,71,4,f +8454,32316,72,4,f +8454,32316,4,6,f +8454,32316,0,4,f +8454,32333,0,2,f +8454,32449,71,4,f +8454,32449,0,4,f +8454,32523,4,11,f +8454,32523,72,6,f +8454,32523,71,1,f +8454,32523,0,2,f +8454,32524,4,6,f +8454,32524,71,9,f +8454,32524,0,11,f +8454,32525,0,4,f +8454,32525,4,5,f +8454,32526,4,6,f +8454,32526,71,2,f +8454,32526,0,15,f +8454,32526,1,7,f +8454,32556,71,3,f +8454,32557,0,12,f +8454,3460,0,3,f +8454,3647,71,3,f +8454,3647,71,1,t +8454,3648b,71,2,f +8454,3666,0,1,f +8454,3673,71,2,t +8454,3673,71,2,f +8454,3700,4,1,f +8454,3703,0,1,f +8454,3705,0,45,f +8454,3706,0,15,f +8454,3707,0,10,f +8454,3708,0,4,f +8454,3710,0,3,f +8454,3713,71,50,f +8454,3713,71,2,t +8454,3737,0,7,f +8454,3743,0,7,f +8454,3749,19,6,f +8454,3794a,14,2,f +8454,3794a,0,2,f +8454,3895,0,1,f +8454,3941,71,18,f +8454,3941,0,7,f +8454,3941,46,8,f +8454,3960,80,4,f +8454,4019,71,2,f +8454,40490,71,4,f +8454,40490,0,7,f +8454,40490,4,3,f +8454,40490,72,2,f +8454,41239,71,2,f +8454,41239,72,2,f +8454,41239,0,9,f +8454,41531,4,8,f +8454,41669,36,2,f +8454,41677,0,13,f +8454,41677,4,9,f +8454,41678,0,4,f +8454,42003,0,32,f +8454,42610,71,1,f +8454,4274,71,1,t +8454,4274,71,15,f +8454,43093,1,96,f +8454,43857,71,2,f +8454,43857,0,6,f +8454,43857,4,2,f +8454,43898,80,2,f +8454,44294,71,9,f +8454,44350,0,3,f +8454,44351,0,3,f +8454,44352,0,1,f +8454,44353,0,1,f +8454,4519,71,42,f +8454,45590,0,1,f +8454,4589,46,3,f +8454,4716,0,2,f +8454,47223a,72,1,f +8454,47225,14,1,f +8454,48989,71,2,f +8454,50450,0,2,f +8454,5102c19,1,1,f +8454,5102c26,71,1,f +8454,5102c26,0,1,f +8454,56763,9999,1,t +8454,56823c150,0,1,f +8454,59426,72,6,f +8454,6141,36,2,t +8454,6141,46,2,t +8454,6141,80,6,f +8454,6141,47,2,f +8454,6141,47,1,t +8454,6141,46,6,f +8454,6141,36,2,f +8454,6178,0,4,f +8454,6215,71,2,f +8454,6536,71,2,f +8454,6536,0,23,f +8454,6536,4,1,t +8454,6536,4,41,f +8454,6538b,71,29,f +8454,6538b,0,10,f +8454,6541,4,2,f +8454,6542a,72,1,f +8454,6553,71,2,f +8454,6558,0,142,f +8454,6573,72,1,f +8454,6575,0,2,f +8454,6587,72,32,f +8454,6589,71,8,f +8454,6632,0,10,f +8454,6632,72,4,f +8454,6636,0,4,f +8454,6636,71,2,f +8454,70496,0,1,f +8454,75535,71,2,f +8454,75535,80,8,f +8454,76320,0,1,f +8454,78c14,0,4,f +8457,3001,4,2,f +8457,3003,1,2,f +8457,3010,1,2,f +8457,3032,4,2,f +8457,3741,2,3,f +8457,3742,14,1,t +8457,3742,15,1,t +8457,3742,4,3,f +8457,3742,14,3,f +8457,3742,4,1,t +8457,3742,15,3,f +8457,3888ac01,1,1,f +8457,4086,1,1,f +8457,4088px4,14,1,f +8457,4237,6,1,f +8457,4238,6,1,f +8457,691,1,1,f +8457,692,1,1,f +8457,fab3c,9999,1,f +8457,fabai1,14,1,f +8457,x610c02,14,2,f +8458,12939,4,4,f +8458,2465,15,2,f +8458,3001,4,1,f +8458,3001,14,1,f +8458,3001,2,1,f +8458,3001,15,2,f +8458,3002,14,1,f +8458,3002,1,1,f +8458,3003,15,1,f +8458,3003,1,1,f +8458,3003,4,2,f +8458,3003,14,2,f +8458,3004,15,4,f +8458,3004,2,1,f +8458,3004,14,2,f +8458,3004,25,8,f +8458,3004,0,4,f +8458,3004,1,3,f +8458,3005,25,4,f +8458,3005,15,5,f +8458,3005,0,1,f +8458,3005,4,2,f +8458,30089b,0,1,f +8458,3009,15,2,f +8458,3022,1,2,f +8458,3022,15,1,f +8458,3023,4,2,f +8458,3027,1,1,f +8458,3031,2,2,f +8458,3034,2,6,f +8458,3036,1,2,f +8458,3039,2,2,f +8458,3040b,4,1,f +8458,3040b,15,1,f +8458,3040b,0,1,f +8458,3062b,15,8,f +8458,3062b,2,7,f +8458,3062b,4,2,f +8458,3622,0,2,f +8458,3622,15,2,f +8458,3626cpr0499,14,1,f +8458,3648b,72,1,f +8458,3649,71,1,f +8458,3659,15,4,f +8458,3700,71,2,f +8458,3749,19,2,f +8458,3942c,1,1,f +8458,3942c,15,1,f +8458,3957a,1,2,f +8458,4286,14,1,f +8458,4460b,1,2,f +8458,4495b,4,1,f +8458,4495b,2,1,f +8458,86035,4,1,f +8458,970c00,1,1,f +8458,973pr1580c01,15,1,f +8459,2909c03,0,2,f +8461,10201,0,2,f +8461,10247,71,1,f +8461,10314,14,6,f +8461,10830pat0001,0,1,f +8461,11062,0,1,f +8461,11090,0,2,f +8461,11090,297,2,f +8461,11203,15,1,f +8461,11211,71,131,f +8461,11211,15,1,f +8461,11211,19,9,f +8461,11212,71,1,f +8461,11214,72,1,f +8461,11437,297,1,f +8461,11476,0,1,f +8461,11477,71,11,f +8461,14395,71,2,f +8461,14395,70,2,f +8461,14395,0,2,f +8461,14716,0,4,f +8461,14719,71,10,f +8461,14769,70,1,f +8461,14769pr0011,14,1,f +8461,14769pr1010,0,1,f +8461,15207,70,1,f +8461,15332,0,1,f +8461,15332,70,5,f +8461,15395,179,2,f +8461,15395,320,1,f +8461,15395,15,4,f +8461,15395,0,1,f +8461,15535,19,3,f +8461,15571,14,2,f +8461,15573,71,68,f +8461,15573,70,9,f +8461,15573,2,2,f +8461,15573,19,1,f +8461,15573,0,7,f +8461,15712,15,1,f +8461,15712,4,2,f +8461,15712,71,7,f +8461,15712,0,5,f +8461,15712,72,2,f +8461,18651,0,1,f +8461,19220,0,4,f +8461,19859pat0014,22,1,f +8461,19861pr03,143,1,f +8461,20310,19,2,f +8461,20482,297,4,f +8461,20482,297,3,t +8461,20595,308,1,f +8461,20595,15,1,f +8461,21268,70,1,f +8461,21778,0,1,f +8461,21968pr0002,35,1,f +8461,23405,0,1,f +8461,23421,297,1,f +8461,23422,72,1,f +8461,2343,297,2,f +8461,2343,71,5,f +8461,2357,15,13,f +8461,2357,4,2,f +8461,2357,71,18,f +8461,2357,320,12,f +8461,2357,14,2,f +8461,2357,19,4,f +8461,23969,71,2,f +8461,2412b,15,2,f +8461,2412b,0,14,f +8461,2412b,179,7,f +8461,2412b,71,1,f +8461,2412b,14,1,f +8461,2412b,70,1,f +8461,2420,320,13,f +8461,2420,15,4,f +8461,2420,70,1,f +8461,2420,4,2,f +8461,2420,71,14,f +8461,2431,73,14,f +8461,2431,72,3,f +8461,2431,0,1,f +8461,2431,71,26,f +8461,2431,84,6,f +8461,2431,42,1,f +8461,2431,15,2,f +8461,2431,14,3,f +8461,2431,70,10,f +8461,2436,71,1,f +8461,2445,71,2,f +8461,2450,70,1,f +8461,2453a,0,2,f +8461,2453b,70,6,f +8461,2453b,19,9,f +8461,2454a,19,26,f +8461,2454a,15,6,f +8461,2454a,0,2,f +8461,2454a,71,8,f +8461,2456,71,8,f +8461,2456,15,2,f +8461,2456,72,8,f +8461,2458,71,2,f +8461,2465,72,1,f +8461,25238,9999,1,t +8461,25239,9999,1,t +8461,2540,0,2,f +8461,2653,0,2,f +8461,2653,71,2,f +8461,2654,47,6,f +8461,2654,15,4,f +8461,2654pr0001,0,4,f +8461,2714a,71,2,f +8461,2780,0,6,t +8461,2780,0,44,f +8461,2921,70,6,f +8461,298c02,0,1,f +8461,298c02,0,1,t +8461,298c02,15,2,t +8461,298c02,15,2,f +8461,3001,72,5,f +8461,3001,71,7,f +8461,3001,15,2,f +8461,3002,71,5,f +8461,3002,72,1,f +8461,3003,320,7,f +8461,3003,28,9,f +8461,3003,71,3,f +8461,3003,70,2,f +8461,3003,19,2,f +8461,3003,15,3,f +8461,3003,272,1,f +8461,3004,71,54,f +8461,3004,70,8,f +8461,3004,72,2,f +8461,3004,320,67,f +8461,3004,15,24,f +8461,3004,0,5,f +8461,3004,19,15,f +8461,3004,288,22,f +8461,30044,71,1,f +8461,30044,15,1,f +8461,3005,0,10,f +8461,3005,15,11,f +8461,3005,47,3,f +8461,3005,19,15,f +8461,3005,288,8,f +8461,3005,320,69,f +8461,3005,70,18,f +8461,3005,71,57,f +8461,3005pr0006,73,1,f +8461,3006,71,5,f +8461,3008,71,16,f +8461,30089b,0,1,f +8461,3009,19,13,f +8461,3009,71,28,f +8461,3009,320,67,f +8461,3009,70,4,f +8461,3009,15,23,f +8461,3009,72,1,f +8461,3009,0,2,f +8461,30095,72,2,f +8461,3010,71,58,f +8461,3010,15,19,f +8461,3010,288,6,f +8461,3010,70,4,f +8461,3010,4,2,f +8461,3010,320,108,f +8461,3010,19,22,f +8461,30126,72,1,f +8461,30126,72,1,t +8461,30134,70,3,f +8461,30136,72,3,f +8461,30137,70,1,f +8461,30145,71,4,f +8461,30145,15,1,f +8461,30151b,47,1,f +8461,30154,72,1,f +8461,3020,70,4,f +8461,3020,71,16,f +8461,3020,320,14,f +8461,3020,72,10,f +8461,3020,28,4,f +8461,3021,28,2,f +8461,3021,4,1,f +8461,3021,72,4,f +8461,3021,0,10,f +8461,3021,71,25,f +8461,3022,70,1,f +8461,3022,320,5,f +8461,3022,71,17,f +8461,3022,1,1,f +8461,3022,4,2,f +8461,3022,2,1,f +8461,3022,0,6,f +8461,3022,15,7,f +8461,3023,14,4,f +8461,3023,288,25,f +8461,3023,15,17,f +8461,3023,47,5,f +8461,3023,1,2,f +8461,3023,378,2,f +8461,3023,72,28,f +8461,3023,70,19,f +8461,3023,0,10,f +8461,3023,320,27,f +8461,3023,4,1,f +8461,3023,19,8,f +8461,3023,71,94,f +8461,30237b,72,2,f +8461,30237b,71,2,f +8461,30237b,19,2,f +8461,3024,0,3,f +8461,3024,320,28,f +8461,3024,15,12,f +8461,3024,288,4,f +8461,3024,71,7,t +8461,3024,288,1,t +8461,3024,71,69,f +8461,3024,15,4,t +8461,3024,0,1,t +8461,3024,320,5,t +8461,3027,70,10,f +8461,3027,71,6,f +8461,3030,71,2,f +8461,3031,70,3,f +8461,3032,320,2,f +8461,3034,70,6,f +8461,3034,72,6,f +8461,30340,70,1,f +8461,30350a,70,2,f +8461,3036,70,4,f +8461,3036,71,2,f +8461,3037,320,2,f +8461,3037,71,10,f +8461,30374,0,7,f +8461,30375,72,1,f +8461,30377,0,1,t +8461,30377,0,6,f +8461,3038,71,3,f +8461,3039,320,5,f +8461,3039,71,9,f +8461,3039pr0013,15,1,f +8461,3040b,320,2,f +8461,3040b,71,4,f +8461,30414,0,1,f +8461,30414,71,14,f +8461,30414,19,1,f +8461,3045,71,2,f +8461,3046a,320,4,f +8461,30541,0,1,f +8461,30553,0,1,f +8461,3062b,0,2,f +8461,3062b,15,1,f +8461,3062b,72,3,f +8461,3062b,322,1,f +8461,3062b,47,3,f +8461,3062b,4,3,f +8461,3065,47,2,f +8461,3065,40,1,f +8461,3068b,72,15,f +8461,3068b,320,16,f +8461,3068b,84,1,f +8461,3068b,272,14,f +8461,3068b,0,3,f +8461,3068b,1,1,f +8461,3068b,71,25,f +8461,3068b,15,10,f +8461,3068bpr0400,15,2,f +8461,3068bpr0401,19,2,f +8461,3069b,72,32,f +8461,3069b,15,14,f +8461,3069b,25,1,f +8461,3069b,484,9,f +8461,3069b,73,2,f +8461,3069b,272,1,f +8461,3069b,322,1,f +8461,3069b,2,5,f +8461,3069b,84,3,f +8461,3069b,27,1,f +8461,3069b,378,6,f +8461,3069b,70,3,f +8461,3069b,19,3,f +8461,3069b,71,173,f +8461,3069b,0,4,f +8461,3069bpr0030,15,2,f +8461,3069bpr0086,71,4,f +8461,3069bpr0099,15,1,f +8461,3069bpr0138,191,1,f +8461,3069bpr0155,14,2,f +8461,3070b,0,23,f +8461,3070b,0,4,t +8461,3070b,71,113,f +8461,3070b,72,1,t +8461,3070b,70,2,t +8461,3070b,15,37,f +8461,3070b,14,1,f +8461,3070b,14,1,t +8461,3070b,15,6,t +8461,3070b,72,2,f +8461,3070b,70,14,f +8461,3070b,71,10,t +8461,3070bpr0007,71,1,t +8461,3070bpr0007,71,1,f +8461,3176,72,1,f +8461,32013,0,2,f +8461,32013,71,6,f +8461,32018,71,3,f +8461,32028,15,2,f +8461,32028,0,11,f +8461,32028,14,1,f +8461,32028,71,25,f +8461,32062,4,1,f +8461,32124,0,4,f +8461,32324,71,1,f +8461,3245b,19,20,f +8461,3245b,71,6,f +8461,3245b,15,7,f +8461,3245c,0,2,f +8461,3245cpr0002,19,1,f +8461,32524,71,2,f +8461,32532,71,3,f +8461,3298,71,1,f +8461,33009,70,1,f +8461,33078,4,1,f +8461,33078,4,1,t +8461,33291,10,1,t +8461,33291,70,1,t +8461,33291,70,1,f +8461,33291,10,1,f +8461,33299a,0,1,f +8461,3460,71,1,f +8461,3460,15,2,f +8461,3622,19,15,f +8461,3622,15,15,f +8461,3622,71,9,f +8461,3622,14,3,f +8461,3623,70,2,f +8461,3623,72,2,f +8461,3623,0,9,f +8461,3623,14,2,f +8461,3623,71,6,f +8461,3623,320,13,f +8461,3623,15,5,f +8461,3626b,47,3,f +8461,3626c,57,1,f +8461,3626c,41,1,f +8461,3626c,42,1,f +8461,3626c,143,1,f +8461,3626cpr1533a,70,1,f +8461,3626cpr1534,78,1,f +8461,3626cpr1536,78,1,f +8461,3626cpr2000,28,1,f +8461,3626cpr2001,78,1,f +8461,3626cpr2002,78,1,f +8461,3626cpr2003,78,1,f +8461,3626cpr2004,78,1,f +8461,3626cpr2005,78,1,f +8461,3626cpr2006,69,1,f +8461,3633,0,2,f +8461,3659,15,2,f +8461,3660,71,8,f +8461,3660,70,3,f +8461,3660,15,1,f +8461,3665,70,11,f +8461,3665,15,2,f +8461,3666,70,3,f +8461,3666,72,4,f +8461,3666,19,1,f +8461,3666,0,5,f +8461,3666,320,32,f +8461,3666,288,10,f +8461,3666,71,38,f +8461,3673,71,1,t +8461,3673,71,2,f +8461,3679,71,2,f +8461,3680,0,4,f +8461,3702,71,8,f +8461,3703,71,12,f +8461,3710,19,3,f +8461,3710,288,2,f +8461,3710,15,12,f +8461,3710,320,22,f +8461,3710,0,2,f +8461,3710,70,5,f +8461,3710,71,28,f +8461,3794b,15,11,f +8461,3795,320,3,f +8461,3795,71,43,f +8461,3795,72,3,f +8461,3795,70,2,f +8461,3811,72,1,f +8461,3830,70,3,f +8461,3830,320,2,f +8461,3830,71,5,f +8461,3831,320,2,f +8461,3831,70,3,f +8461,3831,71,5,f +8461,3832,71,22,f +8461,3839b,71,2,f +8461,3839b,0,2,f +8461,3857,72,1,f +8461,3894,72,1,f +8461,3894,71,1,f +8461,3899,14,2,f +8461,3900,15,1,f +8461,3938,0,1,f +8461,3957b,71,1,f +8461,3958,71,1,f +8461,4032a,71,1,f +8461,4032a,0,4,f +8461,40490,72,2,f +8461,4070,4,1,f +8461,4070,0,1,f +8461,4070,15,14,f +8461,4070,70,6,f +8461,4070,72,2,f +8461,4079,0,2,f +8461,4081b,0,5,f +8461,4085c,0,1,f +8461,4162,70,1,f +8461,4162,71,61,f +8461,4162,72,1,f +8461,4162,0,2,f +8461,42446,0,4,t +8461,42446,0,4,f +8461,4274,71,1,t +8461,4274,71,4,f +8461,4274,1,52,f +8461,4274,1,5,t +8461,4282,71,18,f +8461,4287,71,2,f +8461,43093,1,8,f +8461,4345b,15,2,f +8461,4346,15,2,f +8461,43857,71,1,f +8461,43898,71,6,f +8461,44300,71,1,f +8461,44301a,15,3,f +8461,44302a,71,1,f +8461,4445,320,10,f +8461,44567a,71,1,f +8461,44728,0,1,f +8461,4477,15,6,f +8461,4477,71,1,f +8461,4510,71,35,f +8461,4528,179,1,f +8461,4529,0,1,f +8461,4533,72,1,f +8461,4536,84,6,f +8461,4536,15,4,f +8461,4595,0,2,f +8461,4596,71,1,f +8461,4599b,4,1,f +8461,4599b,4,1,t +8461,4733,71,3,f +8461,4733,0,1,f +8461,4740,82,1,f +8461,4740,0,1,f +8461,4740,45,1,f +8461,47457,72,2,f +8461,47457,71,1,f +8461,48336,71,2,f +8461,48336,0,4,f +8461,48336,15,1,f +8461,4865b,71,8,f +8461,48729b,0,3,t +8461,48729b,72,4,f +8461,48729b,72,2,t +8461,48729b,0,4,f +8461,53451,0,1,f +8461,53451,0,1,t +8461,54200,42,1,t +8461,54200,4,4,f +8461,54200,70,1,t +8461,54200,28,3,t +8461,54200,72,5,f +8461,54200,42,1,f +8461,54200,28,16,f +8461,54200,70,2,f +8461,54200,14,1,t +8461,54200,72,1,t +8461,54200,4,1,t +8461,54200,14,1,f +8461,54200,15,2,f +8461,54200,15,1,t +8461,57894,0,6,f +8461,57895,47,6,f +8461,58176,36,4,f +8461,58176,35,1,f +8461,59349,19,12,f +8461,59349,288,5,f +8461,59349,15,3,f +8461,59443,0,2,f +8461,59900,14,2,f +8461,59900,70,8,f +8461,6020,0,5,f +8461,604547,0,1,f +8461,604548,0,1,f +8461,604549,0,1,f +8461,604550,0,1,f +8461,604551,0,1,f +8461,604552,0,1,f +8461,604553,0,1,f +8461,604614,0,1,f +8461,604615,0,1,f +8461,60470b,71,1,f +8461,60470b,0,1,f +8461,60471,0,3,f +8461,60474,15,1,f +8461,60475b,0,4,f +8461,60475b,71,2,f +8461,60478,4,2,f +8461,60478,0,2,f +8461,60478,72,1,f +8461,60479,71,1,f +8461,60479,72,2,f +8461,60581,71,3,f +8461,60583b,19,2,f +8461,60592,0,66,f +8461,60592,70,4,f +8461,60593,4,2,f +8461,60593,0,2,f +8461,60596,70,2,f +8461,60596,0,4,f +8461,60599,70,3,f +8461,60601,15,6,f +8461,60601,47,64,f +8461,60602,47,2,f +8461,60616b,70,2,f +8461,60623,0,4,f +8461,60797c03,308,3,f +8461,60849,0,1,t +8461,60849,0,1,f +8461,60897,71,5,f +8461,6112,15,3,f +8461,61184,71,6,f +8461,61252,72,4,f +8461,6135189,45,1,f +8461,61409,72,2,f +8461,6141,4,3,f +8461,6141,71,1,t +8461,6141,85,1,t +8461,6141,42,2,f +8461,6141,0,23,f +8461,6141,72,2,t +8461,6141,1,2,t +8461,6141,14,1,t +8461,6141,15,1,t +8461,6141,1,2,f +8461,6141,70,16,f +8461,6141,297,2,f +8461,6141,47,5,t +8461,6141,71,15,f +8461,6141,0,5,t +8461,6141,47,11,f +8461,6141,27,1,f +8461,6141,179,2,f +8461,6141,45,6,f +8461,6141,85,3,f +8461,6141,27,1,t +8461,6141,14,3,f +8461,6141,15,1,f +8461,6141,72,6,f +8461,6141,179,1,t +8461,6141,70,2,t +8461,6141,45,2,t +8461,6141,4,3,t +8461,6141,297,1,t +8461,6141,42,1,t +8461,6190,72,1,f +8461,6231,0,2,f +8461,6231,15,2,f +8461,6231,71,4,f +8461,62462,0,3,f +8461,62810,308,2,f +8461,63864,0,2,f +8461,63864,72,10,f +8461,63864,14,2,f +8461,63864,71,10,f +8461,63864,70,4,f +8461,63965,0,2,f +8461,63965,70,2,f +8461,64567,0,4,f +8461,64567,0,1,t +8461,64644,0,1,f +8461,64644,71,16,f +8461,64647,182,2,t +8461,64647,182,2,f +8461,6541,0,6,f +8461,6558,1,2,f +8461,6636,71,26,f +8461,6636,70,2,f +8461,6636,15,4,f +8461,6636,72,8,f +8461,75c12,179,1,f +8461,85861,320,1,t +8461,85861,71,2,t +8461,85861,15,5,f +8461,85861,71,3,f +8461,85861,320,4,f +8461,85861,15,3,t +8461,85984,320,4,f +8461,85984,15,6,f +8461,85984,0,4,f +8461,85984,71,7,f +8461,85984,1,2,f +8461,87079,15,1,f +8461,87079,72,91,f +8461,87079,1,2,f +8461,87079,71,16,f +8461,87079,70,4,f +8461,87087,71,124,f +8461,87087,0,4,f +8461,87552,4,1,f +8461,87552,70,16,f +8461,87552,71,9,f +8461,87580,72,29,f +8461,87580,15,7,f +8461,87580,322,1,f +8461,87580,0,1,f +8461,87580,71,14,f +8461,87580,28,2,f +8461,87580,272,2,f +8461,87580,2,2,f +8461,87580,320,8,f +8461,88072,71,1,f +8461,88072,0,2,f +8461,88646,71,1,f +8461,88704,0,4,t +8461,88704,0,4,f +8461,90386,0,1,f +8461,91501,15,2,f +8461,92280,0,8,f +8461,92410,71,2,f +8461,92410,4,1,f +8461,92410,70,3,f +8461,92593,72,7,f +8461,93061,72,2,t +8461,93061,72,2,f +8461,93217,71,1,f +8461,93221pr0003,71,1,f +8461,93549pat01,47,1,f +8461,96874,25,1,t +8461,970c00,19,4,f +8461,970c00,308,1,f +8461,970c00,0,2,f +8461,970c00pr1003,484,1,f +8461,973pr3212c01,9,1,f +8461,973pr3231c01,19,1,f +8461,973pr3232c01,19,1,f +8461,973pr3233c01,19,1,f +8461,973pr3234c01,19,1,f +8461,973pr3235,484,1,f +8461,973pr3236c01,9,1,f +8461,973pr3237c01,320,1,f +8461,973pr3238c01,69,1,f +8461,973pr3239c01,0,1,f +8461,98138,29,2,f +8461,98138,71,17,f +8461,98138,36,1,f +8461,98138,182,1,t +8461,98138,29,1,t +8461,98138,34,1,t +8461,98138,182,1,f +8461,98138,45,1,t +8461,98138,71,6,t +8461,98138,34,1,f +8461,98138,45,2,f +8461,98138,36,1,t +8461,98138pr0035,179,1,t +8461,98138pr0035,179,2,f +8461,98138pr0038,1,1,t +8461,98138pr0038,1,4,f +8461,98283,71,66,f +8461,98368,272,1,f +8461,98371,308,1,f +8461,98385,70,1,f +8461,99206,71,2,f +8461,99207,71,12,f +8461,99207,15,5,f +8461,99780,4,1,f +8461,99780,15,2,f +8461,99780,0,3,f +8461,99780,71,9,f +8461,99781,0,1,f +8461,99781,71,3,f +8461,99784,47,3,f +8461,99784,71,2,f +8462,458,0,4,f +8462,wheel2a,4,4,f +8463,2420,1,4,f +8463,2695,15,4,f +8463,2696,0,4,f +8463,2730,1,2,f +8463,2780,0,18,f +8463,2793c01,14,1,f +8463,2797c02,14,1,f +8463,2825,7,8,f +8463,2905,0,2,f +8463,3021,15,2,f +8463,3022,1,2,f +8463,3023,1,13,f +8463,3023,15,2,f +8463,3024,1,2,f +8463,3032,1,2,f +8463,3069b,7,2,f +8463,3623,1,2,f +8463,3647,7,2,f +8463,3651,7,4,f +8463,3665,1,2,f +8463,3666,1,2,f +8463,3673,7,10,f +8463,3700,1,12,f +8463,3701,1,6,f +8463,3702,1,4,f +8463,3703,1,2,f +8463,3704,0,2,f +8463,3705,0,4,f +8463,3706,0,6,f +8463,3707,0,5,f +8463,3708,0,3,f +8463,3709,15,1,f +8463,3709,1,4,f +8463,3710,1,7,f +8463,3713,7,12,f +8463,3737,0,2,f +8463,3738,1,2,f +8463,3743,7,1,f +8463,3749,7,6,f +8463,3795,1,1,f +8463,3894,1,4,f +8463,3895,1,4,f +8463,3941,46,1,f +8463,4019,7,2,f +8463,4032a,14,1,f +8463,4143,7,2,f +8463,4150,14,1,f +8463,4261,7,2,f +8463,4262,7,2,f +8463,4265b,7,15,f +8463,4273b,7,6,f +8463,4274,7,2,f +8463,4275b,1,4,f +8463,4276b,1,4,f +8463,4442,7,3,f +8463,4697a,7,1,f +8463,5102c34,7,1,f +8463,5102c89,0,1,f +8463,74981,14,1,f +8463,75215,7,2,f +8465,851211,9999,1,f +8468,30374,36,1,f +8468,64567,80,1,f +8470,2456,1,2,f +8470,2456,14,1,f +8470,2456,4,1,f +8470,2456,15,2,f +8470,3001,4,6,f +8470,3001,15,6,f +8470,3001,14,6,f +8470,3001,2,3,f +8470,3001,27,2,f +8470,3001,1,6,f +8470,3001,0,3,f +8470,3002,1,6,f +8470,3002,0,3,f +8470,3002,14,6,f +8470,3002,27,2,f +8470,3002,2,3,f +8470,3002,15,6,f +8470,3002,4,6,f +8470,3003,2,8,f +8470,3003,1,16,f +8470,3003,4,16,f +8470,3003,0,8,f +8470,3003,27,6,f +8470,3003,14,16,f +8470,3003,15,16,f +8470,3004,27,10,f +8470,3004,15,20,f +8470,3004,1,20,f +8470,3004,2,10,f +8470,3004,4,20,f +8470,3004,0,10,f +8470,3004,14,20,f +8470,3005,1,10,f +8470,3005,4,10,f +8470,3005,27,6,f +8470,3005,2,6,f +8470,3005,0,6,f +8470,3005,15,10,f +8470,3005,14,10,f +8470,3007,14,1,f +8470,3007,15,1,f +8470,3007,4,1,f +8470,3007,1,1,f +8470,3008,14,2,f +8470,3009,15,3,f +8470,3009,1,3,f +8470,3009,4,2,f +8470,3009,14,2,f +8470,3010,15,3,f +8470,3010,14,3,f +8470,3010,4,3,f +8470,3010,1,3,f +8470,3010,2,2,f +8470,3010,0,2,f +8470,3622,2,2,f +8470,3622,14,4,f +8470,3622,4,4,f +8470,3622,15,4,f +8470,3622,27,2,f +8470,3622,0,2,f +8470,3622,1,4,f +8470,4744,0,1,f +8470,4744pr0001,0,1,f +8470,4744pr0002,4,2,f +8470,4744pr0003,4,1,f +8470,4744pr0004,2,1,f +8470,6141,4,2,f +8470,6141,14,2,f +8470,6215,4,2,f +8472,2736,7,5,f +8472,2780,0,17,f +8472,32039,0,2,f +8472,32054,25,2,f +8472,32062,0,9,f +8472,32073,0,5,f +8472,32123b,7,2,f +8472,32165,25,1,f +8472,32165,0,3,f +8472,32165,14,1,f +8472,32166,0,2,f +8472,32166,14,6,f +8472,32168,0,4,f +8472,32172,8,2,f +8472,32172,0,2,f +8472,32173,0,8,f +8472,32173,14,2,f +8472,32174,22,2,f +8472,32174,25,2,f +8472,32174,14,10,f +8472,32174,0,7,f +8472,32177,0,2,f +8472,32190,25,1,f +8472,32190,0,2,f +8472,32191,0,2,f +8472,32191,25,1,f +8472,3647,7,6,f +8472,3648b,0,2,f +8472,3649,0,1,f +8472,3705,0,7,f +8472,3706,0,2,f +8472,3737,0,1,f +8472,4519,0,4,f +8472,4716,0,1,f +8472,4716,14,2,f +8472,6536,0,7,f +8472,71509,0,1,f +8472,78c02,179,4,f +8472,x209pb01,0,1,f +8472,x209pb02,0,1,f +8473,122c01,7,3,f +8473,2336p35,1,1,f +8473,2342,7,4,f +8473,298c02,7,4,f +8473,3022,1,4,f +8473,3023,1,4,f +8473,3024,46,2,f +8473,3031,1,1,f +8473,3040b,1,2,f +8473,3069bp25,1,1,f +8473,3626apr0001,14,2,f +8473,3639,1,1,f +8473,3640,1,1,f +8473,3710,1,4,f +8473,3795,1,1,f +8473,3838,0,1,f +8473,3838,14,1,f +8473,3842b,14,1,f +8473,3842b,0,1,f +8473,3962a,0,1,f +8473,4006,0,1,f +8473,4288,0,6,f +8473,4589,36,2,f +8473,4589,1,2,f +8473,4589,46,2,f +8473,4590,1,2,f +8473,4596,1,1,f +8473,4735,7,2,f +8473,4736,7,2,f +8473,4740,46,1,f +8473,4859,1,1,f +8473,6141,46,2,f +8473,970c00,14,1,f +8473,970c00,0,1,f +8473,973p90c03,0,1,f +8473,973p90c04,14,1,f +8475,3006,1,1,f +8475,3006,14,1,f +8475,3006,15,2,f +8475,3006,4,2,f +8475,3007,4,4,f +8475,3007,15,4,f +8475,3007,1,2,f +8475,3007,14,2,f +8476,2346,0,4,f +8476,3482,15,8,f +8476,3483,0,4,f +8478,2723,0,1,f +8478,2780,0,2,f +8478,32056,8,2,f +8478,32062,0,6,f +8478,32073,7,2,f +8478,32123b,7,1,t +8478,32123b,7,9,f +8478,32138,0,2,f +8478,32140,148,2,f +8478,32175,4,1,f +8478,32184,0,2,f +8478,32199,179,2,f +8478,32310,4,1,f +8478,32348,0,1,f +8478,32523,0,1,f +8478,32525,0,1,f +8478,32527,148,2,f +8478,32528,148,2,f +8478,3705,0,9,f +8478,3713,7,6,f +8478,41669,135,4,f +8478,41669,42,2,f +8478,41677,4,4,f +8478,41677,7,8,f +8478,41678,4,1,f +8478,42003,0,2,f +8478,4274,7,1,t +8478,4274,7,4,f +8478,43093,1,4,f +8478,44292,7,1,f +8478,44293c01,7,1,f +8478,44294,7,1,f +8478,44309,0,1,f +8478,4519,7,1,f +8478,6141,36,2,f +8478,6141,36,1,t +8478,6536,4,3,f +8478,6632,4,2,f +8478,6632,7,3,f +8478,motor8,0,1,f +8481,11208,71,4,f +8481,11209,0,4,f +8481,14520,15,2,f +8481,15210,0,1,f +8481,15573,15,2,f +8481,19220,0,1,f +8481,22889,0,1,f +8481,2343,47,1,f +8481,2357,0,2,f +8481,2412b,72,3,f +8481,2412b,15,5,f +8481,2412b,71,3,f +8481,2420,15,2,f +8481,2431,0,1,f +8481,2432,4,6,f +8481,2441,0,1,f +8481,2445,71,1,f +8481,2456,0,1,f +8481,2460,0,4,f +8481,2465,4,2,f +8481,2654,4,6,f +8481,3001,71,2,f +8481,30029,0,2,f +8481,3003,4,1,f +8481,3004,19,1,f +8481,3004,0,2,f +8481,3005,15,2,f +8481,3009,15,2,f +8481,3010,14,1,f +8481,3020,4,1,f +8481,3020,1,2,f +8481,3020,0,1,f +8481,3020,15,2,f +8481,3020,71,6,f +8481,3022,15,4,f +8481,3022,19,4,f +8481,3022,71,2,f +8481,3022,72,2,f +8481,30222,42,1,f +8481,3023,46,2,f +8481,3023,28,6,f +8481,3023,1,3,f +8481,3023,2,2,f +8481,3023,15,2,f +8481,3023,36,1,f +8481,3024,182,1,t +8481,3024,182,2,f +8481,3024,0,1,t +8481,3024,0,2,f +8481,3031,0,1,f +8481,30355,15,1,f +8481,30356,15,1,f +8481,3039pr0013,15,1,f +8481,30414,1,1,f +8481,3068b,0,1,f +8481,3068b,4,1,f +8481,3069b,15,2,f +8481,3069b,36,2,f +8481,3069bpr0137,71,1,f +8481,3070b,15,2,f +8481,3070b,28,4,f +8481,3070b,15,1,t +8481,3070b,47,2,f +8481,3070b,47,1,t +8481,3070b,28,1,t +8481,3176,15,1,f +8481,3176,0,1,f +8481,32083,15,4,f +8481,3245b,15,4,f +8481,33125,484,1,f +8481,3460,15,2,f +8481,3623,71,2,f +8481,3624,0,2,f +8481,3626bpr0389,14,1,f +8481,3626cpr1580,14,1,f +8481,3626cpr1662,14,1,f +8481,3626cpr1663,14,1,f +8481,3665,15,4,f +8481,3666,15,4,f +8481,3701,15,2,f +8481,3705,4,2,f +8481,3710,0,4,f +8481,3710,15,2,f +8481,3795,15,1,f +8481,3821,15,2,f +8481,3822,15,2,f +8481,3829c01,4,1,f +8481,3829c01,71,1,f +8481,3832,0,4,f +8481,3833,4,1,f +8481,3957b,71,1,f +8481,4079b,4,1,f +8481,4162,15,4,f +8481,42022,15,2,f +8481,4282,0,2,f +8481,4282,19,1,f +8481,4282,15,3,f +8481,43337,40,2,f +8481,4345b,15,1,f +8481,4346,47,1,f +8481,43719,0,1,f +8481,43722,0,1,f +8481,43723,0,1,f +8481,44567a,71,2,f +8481,4477,71,4,f +8481,4510,15,4,f +8481,4519,71,2,f +8481,45677,15,2,f +8481,4624,71,6,f +8481,4624,71,1,t +8481,47457,72,2,f +8481,48336,0,1,f +8481,4865b,15,2,f +8481,4865b,71,2,f +8481,4868b,0,2,f +8481,4870,71,2,f +8481,50745,15,4,f +8481,50951,0,4,f +8481,54200,47,2,f +8481,54200,36,2,f +8481,54200,47,1,t +8481,54200,36,1,t +8481,54383,15,1,f +8481,54383,0,1,f +8481,54384,15,1,f +8481,54384,0,1,f +8481,55982,0,2,f +8481,57783,40,2,f +8481,59443,14,2,f +8481,59895,0,6,f +8481,59895,0,1,t +8481,59900,71,2,f +8481,60102stk01,9999,1,f +8481,60212,14,2,f +8481,60219,0,3,f +8481,60475b,14,2,f +8481,60479,15,2,f +8481,60601,41,12,f +8481,61345,15,6,f +8481,6141,182,1,f +8481,6141,182,1,t +8481,61483,71,1,f +8481,6157,71,2,f +8481,6179,15,2,f +8481,6187,0,1,f +8481,6231,0,2,f +8481,62698,0,1,f +8481,63864,14,2,f +8481,63864,15,6,f +8481,6636,28,4,f +8481,85974,484,1,f +8481,85984,15,1,f +8481,85984,72,1,f +8481,87079,0,1,f +8481,87079,4,1,f +8481,87079,15,10,f +8481,87580,0,1,f +8481,87611,0,1,f +8481,87612,41,1,f +8481,87613,15,1,f +8481,87614,0,1,f +8481,87615,0,1,f +8481,87616,0,1,f +8481,88930,14,1,f +8481,92280,0,2,f +8481,92593,15,2,f +8481,93273,72,2,f +8481,93273,15,2,f +8481,93274,14,2,f +8481,93594,179,4,f +8481,970c00,73,1,f +8481,970c00,0,2,f +8481,970c00,272,1,f +8481,973pr1192c01,0,1,f +8481,973pr1238c01,0,1,f +8481,973pr2998c01,25,1,f +8481,973pr3415c01,272,1,f +8481,98138,47,1,t +8481,98138,36,1,t +8481,98138,47,2,f +8481,98138,34,1,f +8481,98138,36,1,f +8481,98138,34,1,t +8481,99207,71,1,f +8482,10928,72,2,f +8482,11271,179,1,f +8482,11302pat0003,15,3,f +8482,15462,28,2,f +8482,19049,179,1,f +8482,19050,41,1,f +8482,19064,15,1,f +8482,19064,297,1,f +8482,19086,72,1,f +8482,19087,15,4,f +8482,19992,15,2,f +8482,20251,179,1,f +8482,20252,148,4,f +8482,2780,0,1,t +8482,2780,0,6,f +8482,32013,15,1,f +8482,32062,4,2,f +8482,32072,14,1,f +8482,32072,0,2,f +8482,32184,0,1,f +8482,33299a,71,1,f +8482,3707,0,2,f +8482,3713,71,3,f +8482,3713,71,1,t +8482,41677,0,2,f +8482,4274,71,1,t +8482,4274,71,2,f +8482,43093,1,2,f +8482,44817,179,1,f +8482,53585,0,2,f +8482,59443,0,1,f +8482,60483,0,1,f +8482,6558,1,5,f +8482,74261,72,2,f +8482,87083,72,1,f +8482,90607,41,2,f +8482,90609,41,2,f +8482,90612,0,2,f +8482,90616,0,2,f +8482,90617,72,2,f +8482,90626,0,1,f +8482,90639,297,4,f +8482,90639,15,3,f +8482,90641,15,2,f +8482,90650,15,2,f +8482,90661,15,2,f +8482,92233,297,2,f +8482,93575,41,2,f +8482,98577,72,5,f +8482,98603s02pr0003,297,1,f +8483,2695,15,6,f +8483,2696,0,6,f +8483,2713,14,2,f +8483,2714a,4,2,f +8483,2715,15,1,f +8483,2716,47,1,f +8483,2717,0,2,f +8483,2717,7,1,f +8483,2719,7,6,f +8483,3001,4,1,f +8483,3002,1,1,f +8483,3004,4,1,f +8483,3004,1,1,f +8483,3009,1,3,f +8483,3020,4,4,f +8483,3020,1,2,f +8483,3020,15,6,f +8483,3021,1,2,f +8483,3022,4,1,f +8483,3022,1,4,f +8483,3023,15,2,f +8483,3023,7,1,f +8483,3023,1,3,f +8483,3023,0,6,f +8483,3024,0,4,f +8483,3024,7,8,f +8483,3030,15,4,f +8483,3033,7,1,f +8483,3034,15,4,f +8483,3035,4,1,f +8483,3062b,7,6,f +8483,3069b,7,4,f +8483,3460,15,2,f +8483,3460,4,2,f +8483,3647,7,7,f +8483,3648a,7,6,f +8483,3650a,7,1,f +8483,3651,7,10,f +8483,3665,4,2,f +8483,3666,4,2,f +8483,3673,7,10,f +8483,3700,4,5,f +8483,3700,1,7,f +8483,3700,15,3,f +8483,3701,4,1,f +8483,3701,1,2,f +8483,3702,15,9,f +8483,3702,4,3,f +8483,3702,0,1,f +8483,3703,15,4,f +8483,3703,1,2,f +8483,3704,0,3,f +8483,3705,0,6,f +8483,3706,0,1,f +8483,3707,0,3,f +8483,3708,0,3,f +8483,3709,15,2,f +8483,3709,4,1,f +8483,3710,4,4,f +8483,3710,1,4,f +8483,3710,7,4,f +8483,3710,15,4,f +8483,3713,7,8,f +8483,3736,7,1,f +8483,3738,4,1,f +8483,3743,7,2,f +8483,3749,7,14,f +8483,3795,15,1,f +8483,3832,7,1,f +8483,3832,15,4,f +8483,3873,0,44,f +8483,3894,15,4,f +8483,3894,1,5,f +8483,3894,4,2,f +8483,3895,15,4,f +8483,3941,0,2,f +8483,4033,15,4,f +8483,4085b,15,2,f +8483,4143,7,4,f +8483,4150,14,2,f +8483,4185,7,2,f +8483,4215a,15,2,f +8483,4215ap19,15,2,f +8483,4261,7,4,f +8483,4265a,7,10,f +8483,4273b,7,4,f +8483,4274,7,1,f +8483,4459,0,31,f +8483,4477,7,1,f +8483,4477,15,8,f +8483,4519,0,1,f +8483,4716,0,1,f +8483,9244,7,2,f +8483,tech003,9999,1,f +8483,tech028,9999,1,f +8484,132a,0,4,f +8484,3001a,4,14,f +8484,3001a,14,2,f +8484,3001a,0,4,f +8484,3002a,4,2,f +8484,3003,4,8,f +8484,3004,4,6,f +8484,3005,4,2,f +8484,3006,4,3,f +8484,3008,4,2,f +8484,3009,4,2,f +8484,3010,4,2,f +8484,3020,15,2,f +8484,3022,1,2,f +8484,3023,14,6,f +8484,3034,7,8,f +8484,3149c01,7,1,f +8484,3187,4,1,f +8484,3404ac01,15,1,f +8484,3705,79,2,f +8484,3706,79,4,f +8484,3707,79,2,f +8484,3708,79,1,f +8484,3709c,7,5,f +8484,468c02,1,1,f +8484,564c01,1,1,f +8484,569,4,4,f +8484,570,1,3,f +8484,572,14,2,f +8484,584,4,8,f +8484,700ed,7,1,f +8484,7039,4,4,f +8484,7049b,15,4,f +8484,bb236bc01,1,2,f +8484,bb301,80,2,f +8484,rb00164,0,1,f +8484,x466,15,1,f +8485,2610,14,1,f +8485,298c02,15,3,f +8485,3835,0,2,f +8485,3836,6,1,f +8485,3837,8,1,f +8485,3900,0,2,f +8485,3959,0,2,f +8485,3962b,0,2,f +8485,4006,0,1,f +8485,4081b,7,1,f +8485,4083,7,2,f +8485,4349,0,2,f +8485,4360,7,1,f +8485,4449,15,2,f +8485,4479,8,1,f +8485,4522,0,1,f +8485,4599a,7,2,f +8485,4623,1,2,f +8485,4735,7,2,f +8485,6023,15,1,f +8486,2454a,1,1,f +8486,2456,15,6,f +8486,3001,15,6,f +8486,3003,1,1,f +8486,3004,1,2,f +8486,3005,1,2,f +8486,30089,0,1,f +8486,3009,1,2,f +8486,30180,7,1,f +8486,3023,7,2,f +8486,3039,1,5,f +8486,3062b,0,1,f +8486,3626bp04,14,3,f +8486,3794a,1,2,f +8486,3867,2,1,f +8486,3901,0,2,f +8486,3957a,15,2,f +8486,3963,7,1,f +8486,4079,4,6,f +8486,4079,14,6,f +8486,4176,15,2,f +8486,4282,15,1,f +8486,4282,7,4,f +8486,4449,7,1,f +8486,4476b,1,2,f +8486,4485,4,1,f +8486,4495b,4,1,f +8486,4495b,2,1,f +8486,4740,15,2,f +8486,4740,42,2,f +8486,6019,15,1,f +8486,6141,47,1,f +8486,6187,1,3,f +8486,6190,15,1,f +8486,6583,7,2,f +8486,71342,334,1,f +8486,970c00,1,1,f +8486,970c00,2,1,f +8486,970c00,7,1,f +8486,973c11,0,1,f +8486,973p70c01,6,1,f +8486,973px36c01,4,1,f +8487,2654,0,1,f +8487,3004,73,2,f +8487,3022,73,1,f +8487,4631396,9999,1,f +8487,4631398,9999,1,f +8487,4631411,9999,1,f +8487,4631414,9999,1,f +8487,4631416,9999,1,f +8487,88704,70,1,f +8487,92338,297,2,f +8487,92547pr0019,41,1,f +8487,92690,297,1,f +8487,92691,15,1,f +8487,93057pr0002,0,1,f +8487,93059,19,1,f +8487,93062c01,15,2,f +8487,93062c01,15,2,t +8487,93066pr0001,15,1,f +8487,93609,15,2,t +8487,93609,15,2,f +8487,93764pr0004,15,1,f +8488,10164pr0001,15,1,f +8488,10169,84,1,f +8488,11609,191,1,f +8488,3022,4,1,f +8488,3022,14,1,f +8488,3024,1,1,f +8488,3024,15,1,f +8488,3035,2,1,f +8488,3070b,1,2,f +8488,3626cpr0498,14,1,f +8488,3626cpr0677,14,1,f +8488,41879a,85,1,f +8488,4595,0,1,f +8488,6141,71,4,f +8488,6141,4,1,f +8488,6141,0,1,f +8488,62810,70,1,f +8488,87580,4,1,f +8488,87990,226,1,f +8488,93223,15,1,f +8488,970c00,4,1,f +8488,973pr1573c01,15,1,f +8488,973pr2300c01,4,1,f +8489,2856c01,7,2,f +8490,2357,72,2,f +8490,2420,72,10,f +8490,2431,2,10,f +8490,2436,0,4,f +8490,2555,0,2,f +8490,2653,0,2,f +8490,2654,71,6,f +8490,3001,2,3,f +8490,3003,2,3,f +8490,3004,288,15,f +8490,3005,2,4,f +8490,3010,2,4,f +8490,30104,72,1,f +8490,3020,2,10,f +8490,3020,0,6,f +8490,3021,2,6,f +8490,3021,0,4,f +8490,3022,2,15,f +8490,3022,0,2,f +8490,3023,27,28,f +8490,3023,320,3,f +8490,3024,2,16,f +8490,30383,72,12,f +8490,3039,2,4,f +8490,3040b,2,8,f +8490,3040b,14,4,f +8490,30414,72,4,f +8490,3049b,2,1,f +8490,3068b,320,2,f +8490,3068b,2,5,f +8490,3069b,2,14,f +8490,32028,14,2,f +8490,3460,2,6,f +8490,3623,2,4,f +8490,3660,71,1,f +8490,3665,288,18,f +8490,3666,0,7,f +8490,3700,71,3,f +8490,3710,27,12,f +8490,3710,2,11,f +8490,3747b,72,4,f +8490,3794a,2,13,f +8490,3795,2,2,f +8490,3795,72,2,f +8490,3832,2,2,f +8490,40002,47,1,f +8490,4032a,71,6,f +8490,40379,15,2,f +8490,40379,27,6,f +8490,4081b,0,14,f +8490,41669,42,2,f +8490,41747,288,3,f +8490,41748,288,3,f +8490,41764,288,2,f +8490,41765,288,2,f +8490,41769,72,3,f +8490,41770,72,3,f +8490,42023,72,2,f +8490,4274,71,2,f +8490,4274,71,1,t +8490,4282,0,2,f +8490,4286,2,8,f +8490,43093,1,3,f +8490,43722,2,11,f +8490,43723,2,11,f +8490,44126,288,2,f +8490,44301a,27,11,f +8490,44302a,2,24,f +8490,44567a,72,2,f +8490,44728,0,2,f +8490,4477,72,4,f +8490,4589,182,4,f +8490,4589,0,6,f +8490,4623,72,4,f +8490,47397,288,1,f +8490,47398,288,1,f +8490,47452,0,4,f +8490,47455,0,12,f +8490,48169,288,8,f +8490,48170,72,2,f +8490,48171,288,6,f +8490,48336,0,10,f +8490,4871,72,2,f +8490,49668,15,20,f +8490,50304,0,1,f +8490,50305,0,1,f +8490,51739,15,1,f +8490,53451,15,1,t +8490,53451,15,6,f +8490,54200,15,2,f +8490,54200,288,7,f +8490,54200,14,12,f +8490,54383,72,2,f +8490,54384,72,2,f +8490,54869,36,1,f +8490,6019,72,19,f +8490,6126a,57,1,f +8490,6141,42,6,f +8490,6141,71,1,t +8490,6141,42,1,t +8490,6141,57,4,f +8490,6141,57,1,t +8490,6141,71,8,f +8490,6222,72,1,f +8490,73983,2,4,f +8490,sailbb38,2,2,f +8492,2412b,1,1,f +8492,2412b,72,2,f +8492,2420,15,2,f +8492,2436,4,1,f +8492,2555,0,1,f +8492,3021,0,2,f +8492,3023,0,4,f +8492,3024,15,2,f +8492,30367b,15,1,f +8492,3040b,1,2,f +8492,3043,0,1,f +8492,3623,1,4,f +8492,3700,4,1,f +8492,3710,72,2,f +8492,3794a,1,4,f +8492,3839b,0,1,f +8492,3941,4,1,f +8492,4032a,1,1,f +8492,4032a,4,2,f +8492,4085c,15,6,f +8492,4286,15,2,f +8492,43093,1,1,f +8492,44302a,0,2,f +8492,44567a,72,2,f +8492,44728,0,1,f +8492,4589,33,2,f +8492,4599a,0,1,f +8492,48183,72,2,f +8492,48336,0,2,f +8492,51739,15,1,f +8492,54200,15,6,f +8492,54200,33,2,f +8492,6019,1,4,f +8492,6091,15,2,f +8492,6141,57,2,f +8492,6141,42,2,f +8492,6141,57,1,t +8492,6141,42,1,t +8492,6190,72,2,f +8493,3297,4,26,f +8493,3298,4,8,f +8493,3299,4,6,f +8493,3300,4,2,f +8494,12825,72,1,f +8494,13547,0,2,f +8494,15068pr0003,25,1,f +8494,15540,72,2,f +8494,15541pat0001,1,1,f +8494,18738,71,1,t +8494,18738,71,1,f +8494,2432,15,1,f +8494,2654,72,1,f +8494,30031,71,1,f +8494,3021,0,2,f +8494,3022,0,2,f +8494,3023,72,1,f +8494,3023,15,1,f +8494,30293,41,1,f +8494,30294,41,1,f +8494,30385,80,1,f +8494,3626cpr1395a,14,1,f +8494,3794b,72,1,f +8494,3795,72,1,f +8494,3795,25,2,f +8494,3839b,72,2,f +8494,3962b,0,1,f +8494,41854,25,1,f +8494,47456,71,1,f +8494,47720,71,1,f +8494,47755,25,1,f +8494,54200,25,1,t +8494,54200,40,1,t +8494,54200,40,2,f +8494,54200,25,2,f +8494,60897,25,2,f +8494,88072,0,2,f +8494,92338,72,1,f +8494,970c00pr0645,1,1,f +8494,973pr2641c01,25,1,f +8494,99781,71,1,f +8495,53788,0,1,f +8496,2346,0,4,f +8496,2420,14,4,f +8496,2436,0,2,f +8496,2444,7,2,f +8496,2444,0,1,f +8496,2780,0,2,f +8496,2817,0,1,f +8496,2825,7,2,f +8496,2904,0,1,f +8496,2905,0,2,f +8496,3021,7,1,f +8496,3021,1,1,f +8496,3022,0,4,f +8496,3023,14,2,f +8496,3023,0,2,f +8496,3024,36,2,f +8496,3039,1,1,f +8496,3069b,15,1,f +8496,3069b,0,1,f +8496,3298,14,1,f +8496,3482,14,4,f +8496,3651,7,2,f +8496,3673,7,2,f +8496,3700,0,1,f +8496,3701,7,2,f +8496,3701,0,2,f +8496,3704,0,2,f +8496,3705,0,1,f +8496,3706,0,3,f +8496,3709,14,3,f +8496,3709,7,2,f +8496,3713,7,1,t +8496,3713,7,4,f +8496,3738,0,2,f +8496,3738,14,1,f +8496,3749,7,4,f +8496,3794a,7,4,f +8496,3795,14,1,f +8496,4032a,14,2,f +8496,4143,7,2,f +8496,4150p01,15,1,f +8496,4265a,7,2,t +8496,4265a,7,6,f +8496,4273b,7,2,f +8496,4519,0,1,f +8496,6141,46,4,f +8496,6141,46,1,t +8498,2444,0,2,f +8498,2711,7,2,f +8498,2719,7,2,f +8498,2817,0,2,f +8498,4261,7,2,f +8498,4442,7,2,f +8498,6587,8,2,f +8498,6592,7,1,f +8498,6630,7,1,f +8499,2039,72,1,f +8499,2357,72,1,f +8499,2357,15,1,f +8499,2412b,0,7,f +8499,2412b,297,1,f +8499,2420,72,2,f +8499,2431,0,2,f +8499,2432,72,4,f +8499,2445,72,2,f +8499,2445,0,1,f +8499,2456,14,3,f +8499,2540,72,2,f +8499,2555,72,1,f +8499,2730,0,2,f +8499,2780,0,4,f +8499,2780,0,1,t +8499,2877,15,1,f +8499,2877,72,1,f +8499,2921,0,2,f +8499,3002,0,2,f +8499,3003,72,2,f +8499,3004,71,4,f +8499,3004,72,3,f +8499,3004,0,1,f +8499,30041,72,1,f +8499,30042,72,1,f +8499,3005,72,1,f +8499,3009,15,1,f +8499,3009,72,3,f +8499,3009,71,2,f +8499,3010,15,2,f +8499,3010,72,2,f +8499,3010,71,4,f +8499,3020,72,3,f +8499,3021,72,4,f +8499,3022,15,1,f +8499,3022,72,1,f +8499,3023,0,5,f +8499,3023,4,1,f +8499,3023,72,8,f +8499,3024,36,10,f +8499,30258,72,1,f +8499,3027,0,1,f +8499,3032,0,2,f +8499,3035,0,3,f +8499,30357,0,2,f +8499,3037,0,3,f +8499,30374,0,1,f +8499,30383,72,2,f +8499,3039,0,4,f +8499,30391,0,4,f +8499,3039pr0014,0,1,f +8499,3040b,0,2,f +8499,30414,15,1,f +8499,30414,72,1,f +8499,30553,0,2,f +8499,30602,0,2,f +8499,3068b,0,5,f +8499,3069b,0,4,f +8499,3069b,15,2,f +8499,3069b,72,2,f +8499,3070b,0,1,t +8499,3070b,15,3,f +8499,3070b,15,1,t +8499,3070b,72,3,f +8499,3070b,0,4,f +8499,3070b,72,1,t +8499,3176,4,1,f +8499,32018,0,2,f +8499,32059,0,1,f +8499,32074c01,0,1,f +8499,3298,72,1,f +8499,3298,15,1,f +8499,3622,15,2,f +8499,3622,72,2,f +8499,3623,72,4,f +8499,3623,0,5,f +8499,3626bpr0347,78,1,f +8499,3626bpr0470b,78,1,f +8499,3626bpr0476,78,1,f +8499,3660,0,2,f +8499,3665,72,3,f +8499,3665,15,3,f +8499,3666,0,2,f +8499,3666,4,1,f +8499,3666,72,2,f +8499,3673,71,1,t +8499,3673,71,4,f +8499,3700,15,3,f +8499,3710,72,1,f +8499,3710,0,3,f +8499,3710,15,1,f +8499,3710,71,1,f +8499,3794a,0,1,f +8499,3795,72,2,f +8499,3829c01,71,2,f +8499,3895,14,2,f +8499,3937,72,8,f +8499,3938,0,4,f +8499,3940b,0,1,f +8499,3958,0,1,f +8499,40379,0,1,f +8499,4070,72,6,f +8499,41239,72,1,f +8499,41334,0,1,f +8499,4162,72,2,f +8499,4176,40,1,f +8499,41767,0,1,f +8499,41768,0,1,f +8499,41769,72,2,f +8499,41770,72,2,f +8499,4274,71,1,f +8499,4274,71,1,t +8499,4286,72,1,f +8499,4286,15,1,f +8499,43093,1,4,f +8499,4349,0,2,f +8499,43720,0,1,f +8499,43721,0,1,f +8499,43898,15,1,f +8499,44728,15,6,f +8499,4477,0,2,f +8499,4488,71,4,f +8499,45677,0,1,f +8499,45705,40,1,f +8499,4589,42,1,f +8499,4589,14,2,f +8499,4740,15,1,f +8499,4742,72,1,f +8499,47458,0,4,f +8499,49668,0,10,f +8499,50745,0,4,f +8499,50950,0,10,f +8499,50967,0,8,f +8499,51377,297,4,f +8499,52031,72,1,f +8499,52501,72,2,f +8499,54200,182,2,f +8499,54200,0,16,f +8499,55704,0,1,f +8499,55706,0,2,f +8499,55707a,0,1,f +8499,55707e,0,2,f +8499,56619,0,1,f +8499,56630,0,1,f +8499,56710,9999,2,t +8499,6014b,71,4,f +8499,6015,0,4,f +8499,60169,72,1,f +8499,6091,72,2,f +8499,6126a,57,4,f +8499,6134,0,4,f +8499,6141,46,1,t +8499,6141,42,6,f +8499,6141,80,1,f +8499,6141,46,2,f +8499,6141,80,1,t +8499,6141,36,1,t +8499,6141,42,3,t +8499,6141,36,1,f +8499,6232,14,1,f +8499,6541,0,4,f +8499,6636,15,1,f +8499,76110c01,71,1,f +8499,78c08,0,2,f +8499,85973,0,1,f +8499,970c00,0,1,f +8499,970c00,72,1,f +8499,970d06pr01,15,1,f +8499,973pr1273c01,15,1,f +8499,973pr1274c01,0,1,f +8499,973pr1281c01,15,1,f +8499,98721,0,3,f +8499,98723pr0001,15,1,f +8500,3021,0,10,f +8500,3022,0,10,f +8500,3023,0,20,f +8500,3031,0,5,f +8500,3032,0,5,f +8500,3033,0,5,f +8500,32001,0,10,f +8500,3460,0,10,f +8500,3623,0,20,f +8500,3666,0,10,f +8500,3709,0,10,f +8500,3710,0,20,f +8500,3738,0,10,f +8500,3832,0,10,f +8500,4477,0,10,f +8502,2412b,14,2,f +8502,2413,4,2,f +8502,2419,1,2,f +8502,2432,14,2,f +8502,2458,4,1,f +8502,2460,4,1,f +8502,2479,7,1,f +8502,30000,8,1,f +8502,3001,15,4,f +8502,3001,4,6,f +8502,3001,0,4,f +8502,3001,14,6,f +8502,3001,1,6,f +8502,3002,14,6,f +8502,3002,1,6,f +8502,3002,15,6,f +8502,3002,0,4,f +8502,3002,4,6,f +8502,3003,15,4,f +8502,3003,1,4,f +8502,3003,0,4,f +8502,3003,14,6,f +8502,3003,2,4,f +8502,3003,4,6,f +8502,3004,2,4,f +8502,3004,1,16,f +8502,3004,15,16,f +8502,3004,14,20,f +8502,3004,4,20,f +8502,3004,0,10,f +8502,3005,4,10,f +8502,3005,1,8,f +8502,3005,0,6,f +8502,3005,2,6,f +8502,3005,14,10,f +8502,3005,15,8,f +8502,3005pe1,14,2,f +8502,3008,4,2,f +8502,3008,14,2,f +8502,3009,4,4,f +8502,3009,14,4,f +8502,3009,15,4,f +8502,3009,1,4,f +8502,3010,15,12,f +8502,3010,4,14,f +8502,3010,1,12,f +8502,3010,14,14,f +8502,3010p01,14,1,f +8502,30161,47,1,f +8502,3020,1,2,f +8502,3021,1,2,f +8502,3022,4,2,f +8502,3022,1,2,f +8502,3034,1,2,f +8502,3035,1,1,f +8502,3040b,4,2,f +8502,3062b,15,4,f +8502,3149c01,1,1,f +8502,3297,1,2,f +8502,3297p05,1,2,f +8502,3298,1,2,f +8502,3298p15,1,4,f +8502,3299,1,2,f +8502,3300,1,2,f +8502,3307,15,2,f +8502,3470,2,1,f +8502,3483,0,6,f +8502,3622,15,6,f +8502,3622,1,6,f +8502,3622,4,6,f +8502,3622,14,6,f +8502,3626bp02,14,1,f +8502,3626bp04,14,1,f +8502,3633,15,4,f +8502,3660,4,2,f +8502,3665,4,2,f +8502,3666,1,2,f +8502,3666,4,2,f +8502,3710,1,2,f +8502,3730,4,1,f +8502,3731,4,1,f +8502,3741,2,2,f +8502,3742,1,1,t +8502,3742,1,3,f +8502,3742,4,3,f +8502,3742,4,1,t +8502,3747b,1,4,f +8502,3795,1,2,f +8502,3823,47,1,f +8502,3829c01,14,2,f +8502,3853,4,4,f +8502,3854,15,8,f +8502,3856,2,8,f +8502,3861b,4,2,f +8502,3867,10,2,f +8502,3957a,15,2,f +8502,3960p01,15,1,f +8502,4070,4,2,f +8502,4079,14,2,f +8502,4175,14,2,f +8502,4286,1,2,f +8502,4287,1,4,f +8502,4485,15,1,f +8502,4495b,2,1,f +8502,4589,15,4,f +8502,4625,1,1,f +8502,6041,0,1,f +8502,6093,6,1,f +8502,6215,4,4,f +8502,6248,4,6,f +8502,6249,8,2,f +8502,970c00,2,1,f +8502,970c00,0,1,f +8502,973px37c01,1,1,f +8502,973px38c01,15,1,f +8504,2444,7,4,f +8504,2445,4,2,f +8504,2445,0,1,f +8504,2445,7,1,f +8504,2450,0,4,f +8504,2555,0,6,f +8504,2711,0,7,f +8504,2712,0,2,f +8504,2730,7,4,f +8504,2730,0,8,f +8504,2737,0,1,f +8504,2744,0,4,f +8504,2744,7,2,f +8504,2780,0,90,f +8504,2825,7,4,f +8504,2825,0,14,f +8504,2838c01,7,3,f +8504,2840c02,0,1,f +8504,2853,7,2,f +8504,2905,0,4,f +8504,2994,15,3,f +8504,3020,4,4,f +8504,3021,0,4,f +8504,3022,0,4,f +8504,3022,14,3,f +8504,3022,7,3,f +8504,3023,7,32,f +8504,3023,4,4,f +8504,3023,14,1,f +8504,3023,0,38,f +8504,3024,7,2,f +8504,3024,0,2,f +8504,3031,0,4,f +8504,3040b,0,2,f +8504,3040b,7,4,f +8504,3048c,0,2,f +8504,3068b,0,4,f +8504,3069b,0,4,f +8504,3069b,7,4,f +8504,3069b,14,3,f +8504,3070b,14,3,f +8504,3070b,0,1,t +8504,3070b,14,1,t +8504,3070b,0,2,f +8504,3298,0,1,f +8504,3460,0,5,f +8504,3460,14,4,f +8504,3460,7,2,f +8504,3482,7,2,f +8504,3483,0,2,f +8504,3585,4,2,f +8504,3586,4,2,f +8504,3623,7,10,f +8504,3623,4,4,f +8504,3623,0,9,f +8504,3623,14,2,f +8504,3647,7,4,f +8504,3648a,7,4,f +8504,3650c,7,1,f +8504,3651,7,8,f +8504,3660,7,1,f +8504,3665,0,4,f +8504,3666,7,9,f +8504,3666,0,14,f +8504,3673,7,8,f +8504,3700,0,33,f +8504,3700,7,27,f +8504,3701,7,10,f +8504,3701,0,15,f +8504,3702,0,12,f +8504,3702,7,6,f +8504,3703,7,6,f +8504,3703,0,12,f +8504,3704,0,6,f +8504,3705,0,11,f +8504,3706,0,19,f +8504,3707,0,7,f +8504,3708,0,4,f +8504,3709,14,1,f +8504,3709,7,8,f +8504,3709,0,7,f +8504,3710,7,15,f +8504,3710,14,4,f +8504,3710,0,27,f +8504,3713,7,1,t +8504,3713,7,18,f +8504,3737,0,2,f +8504,3738,7,4,f +8504,3738,0,6,f +8504,3743,7,8,f +8504,3747b,0,1,f +8504,3749,7,17,f +8504,3795,7,2,f +8504,3795,0,1,f +8504,3832,7,1,f +8504,3832,4,2,f +8504,3894,7,6,f +8504,3894,0,15,f +8504,3895,0,21,f +8504,3895,7,8,f +8504,4100204,9999,1,f +8504,4185,7,10,f +8504,4262,0,2,f +8504,4263,0,4,f +8504,4265b,7,97,f +8504,4265b,7,3,t +8504,4273b,7,9,f +8504,4274,7,1,t +8504,4274,7,17,f +8504,4282,7,4,f +8504,4282,0,3,f +8504,4286,0,2,f +8504,4287,7,4,f +8504,4287,0,2,f +8504,4442,7,2,f +8504,4477,7,6,f +8504,4477,14,2,f +8504,4477,0,8,f +8504,4519,0,11,f +8504,4716,0,3,f +8504,5306bc015,0,2,f +8504,5306bc069,0,4,f +8504,6536,7,8,f +8504,6538a,7,7,f +8504,6541,7,4,f +8504,6541,0,20,f +8504,6558,0,28,f +8504,6575,7,2,f +8504,6578,0,3,f +8504,6587,8,6,f +8504,6588,7,2,f +8504,6589,7,8,f +8504,6643,8,12,f +8504,6644,0,2,f +8504,70931,0,1,f +8504,73983,14,2,f +8504,73983,0,11,f +8504,73983,7,2,f +8504,75c10,8,2,f +8504,85543,15,2,t +8504,85543,15,2,f +8504,85545,4,4,f +8504,85545,1,2,f +8504,85545,4,2,t +8504,85545,1,2,t +8504,flex08c09l,7,1,f +8504,flex08c11l,7,1,f +8504,flex08c16l,7,1,f +8504,flex08c23l,7,4,f +8504,x157,15,2,f +8505,23306,383,2,f +8505,2412b,320,2,f +8505,2412b,72,16,f +8505,2412b,0,4,f +8505,2412b,14,2,f +8505,2420,71,4,f +8505,2431,72,4,f +8505,2436,0,4,f +8505,2444,72,4,f +8505,2450,272,4,f +8505,2458,19,2,f +8505,2476a,272,2,f +8505,2555,72,3,f +8505,298c02,71,2,f +8505,298c02,71,1,t +8505,3004,71,4,f +8505,3010,72,8,f +8505,3020,14,1,f +8505,3020,0,2,f +8505,3020,71,1,f +8505,3021,19,2,f +8505,3021,71,2,f +8505,3022,72,8,f +8505,3023,19,2,f +8505,3023,72,2,f +8505,3024,320,4,f +8505,3031,0,8,f +8505,3034,71,2,f +8505,3034,72,2,f +8505,30365,71,6,f +8505,30365,0,2,f +8505,30367apr01,15,1,f +8505,30367bpr0001,72,2,f +8505,30367bpr04,320,1,f +8505,30374,0,8,f +8505,30374,41,2,f +8505,30374,71,4,f +8505,30382,379,8,f +8505,30383,0,10,f +8505,30386,379,12,f +8505,30386,0,3,f +8505,30387,71,4,f +8505,30389b,71,2,f +8505,3044b,19,2,f +8505,30503,72,6,f +8505,30503,0,2,f +8505,30503,71,4,f +8505,30565,379,4,f +8505,3062b,71,4,f +8505,3062b,0,4,f +8505,3068b,71,4,f +8505,3068b,72,4,f +8505,3068b,379,6,f +8505,3068b,272,12,f +8505,3068b,0,6,f +8505,3069b,272,2,f +8505,3069bps8,272,4,f +8505,32015,71,1,f +8505,32062,4,2,f +8505,32062,0,2,f +8505,32064b,72,8,f +8505,32123b,19,1,f +8505,32123b,19,1,t +8505,32125,272,2,f +8505,32529,0,3,f +8505,3622,71,4,f +8505,3623,71,3,f +8505,3626bpr0444,78,1,f +8505,3626bpx298,78,1,f +8505,3660,15,2,f +8505,3666,71,4,f +8505,3700,15,2,f +8505,3710,0,4,f +8505,3747b,15,2,f +8505,3747b,71,2,f +8505,3747b,14,2,f +8505,3794a,72,3,f +8505,3795,72,2,f +8505,3901,484,1,f +8505,3937,72,2,f +8505,3942c,72,1,f +8505,3960pr13,40,2,f +8505,4032a,71,1,f +8505,4070,0,4,f +8505,4079,70,2,f +8505,4081b,71,12,f +8505,4085c,72,16,f +8505,4095,0,2,f +8505,4095,71,2,f +8505,4150pr0002,19,4,f +8505,4150pr0005,15,2,f +8505,41532,0,4,f +8505,4162,14,4,f +8505,4162,320,4,f +8505,41669,36,2,f +8505,41677,19,4,f +8505,41769,72,2,f +8505,41770,72,2,f +8505,4185,71,2,f +8505,4210,71,4,f +8505,4210,71,1,t +8505,42446,0,4,f +8505,42610,71,8,f +8505,4286,0,4,f +8505,43710,320,1,f +8505,43710,14,1,f +8505,43711,14,1,f +8505,43711,320,1,f +8505,43722,71,1,f +8505,43722,14,1,f +8505,43723,71,1,f +8505,43723,14,1,f +8505,44300,72,2,f +8505,44302a,272,6,f +8505,44302a,71,4,f +8505,44568,71,4,f +8505,44570,71,4,f +8505,4477,72,4,f +8505,44822,71,2,f +8505,4519,71,1,f +8505,4530,86,1,f +8505,4589,41,4,f +8505,4589,36,16,f +8505,4589,72,1,f +8505,4740,57,3,f +8505,47456,379,6,f +8505,47753,72,2,f +8505,47753,272,2,f +8505,50304,320,1,f +8505,50304,14,1,f +8505,50305,14,1,f +8505,50305,320,1,f +8505,50747pr0001a,40,2,f +8505,50986pr0001,40,2,f +8505,51000,320,4,f +8505,51000,14,4,f +8505,51739,272,6,f +8505,51739,379,6,f +8505,52107,379,15,f +8505,52107,0,3,f +8505,6091,0,4,f +8505,6134,0,2,f +8505,6141,72,15,f +8505,6141,57,1,t +8505,6141,41,1,t +8505,6141,41,4,f +8505,6587,72,9,f +8505,6636,272,8,f +8505,970c00,0,1,f +8505,970x005,484,1,f +8505,973pb0363c01,0,1,f +8505,973pr1324c01,19,1,f +8506,6035,15,2,f +8507,11476,71,2,f +8507,11477,85,6,f +8507,11477,0,6,f +8507,13549,41,1,f +8507,14417,72,1,f +8507,14704,71,2,f +8507,15208,15,1,f +8507,3020,0,1,f +8507,3021,0,1,f +8507,3021,85,1,f +8507,3023,33,3,f +8507,30395,72,1,f +8507,30602,85,1,f +8507,32062,4,1,f +8507,32064a,0,1,f +8507,32474pr1001,15,2,f +8507,3941,85,1,f +8507,4032a,72,2,f +8507,41854,85,1,f +8507,54200,33,1,t +8507,54200,33,2,f +8507,60478,0,2,f +8507,60897,72,6,f +8507,6141,15,6,f +8507,6141,15,1,t +8507,63868,71,6,f +8507,75937,0,1,f +8507,87747,0,1,t +8507,87747,0,6,f +8507,92280,0,2,f +8507,99781,0,4,f +8508,3626bpr1088,14,1,f +8508,4499,0,1,f +8508,88646pr0001,15,1,f +8508,970c00pr0407,1,1,f +8508,973pr2193c01,15,1,f +8508,98726,484,1,f +8508,99250pr0001,4,1,f +8509,3001,4,7,f +8509,3001,14,1,f +8509,3002,4,10,f +8509,3003,4,1,f +8509,3004,14,20,f +8509,3004,4,1,f +8509,3009,14,2,f +8509,3010,4,2,f +8509,3010,14,3,f +8509,3027,14,2,f +8509,3029,4,2,f +8509,3030,14,1,f +8509,3032,14,1,f +8509,3033,4,2,f +8509,3033,14,1,f +8509,3033,1,1,f +8509,3185,1,7,f +8509,3645,2,1,f +8509,3741,2,3,f +8509,3742,4,3,f +8509,3742,15,1,t +8509,3742,4,1,t +8509,3742,14,3,f +8509,3742,14,1,t +8509,3742,15,3,f +8509,3899,1,2,f +8509,3979c01,14,3,f +8509,3979c02,4,4,f +8509,3980c02,1,2,f +8509,4088px4,14,1,f +8509,4094a,14,1,f +8509,4095,14,1,f +8509,4222a,450,4,f +8509,4331,14,1,f +8509,4332,366,1,f +8509,4335,1,1,f +8509,4362acx1,4,1,f +8509,787c01,14,3,f +8509,787c01,1,3,f +8509,787c02,4,2,f +8509,787c03,1,1,f +8509,787c04,4,1,f +8509,790,1,1,f +8509,x636c02,4,4,f +8511,3626cpr0645,14,1,f +8511,4485,4,1,f +8511,74188,15,1,f +8511,87079pr0046,15,1,f +8511,970c00,1,1,f +8511,973pr2147c01,15,1,f +8512,10050,148,1,f +8512,14769,297,1,f +8512,14769pr1024,297,1,f +8512,16965,0,1,f +8512,18585,0,1,f +8512,18590,0,1,f +8512,18591,47,1,f +8512,18592,297,1,f +8512,2654,70,1,f +8512,3001,0,1,f +8512,30173b,297,2,f +8512,3021,25,4,f +8512,30602,70,2,f +8512,3626cpr1677,25,1,f +8512,43712,70,1,f +8512,43713,70,1,f +8512,4733,0,1,f +8512,4740,182,2,f +8512,53454,148,1,f +8512,6141,297,2,f +8512,63965,297,1,f +8512,87087,0,2,f +8512,87747,0,1,f +8512,92690,297,1,f +8512,93058,297,2,f +8512,970c00pr0862,0,1,f +8512,973pr3022c01,0,1,f +8512,98133,0,1,f +8512,98138,297,2,f +8512,98141,297,1,f +8512,99780,0,3,f +8512,99781,0,3,f +8513,3041,4,10,f +8513,3043,4,10,f +8513,3044b,4,6,f +8513,3045,4,18,f +8513,3048c,4,4,f +8517,2476a,1,2,f +8517,2847c02,0,1,f +8517,32013,1,2,f +8517,32203,14,3,f +8517,32203,2,6,f +8517,32203,0,18,f +8517,32204,2,4,f +8517,32205,14,2,f +8517,32206,0,2,f +8517,32206,2,2,f +8517,32207,8,7,f +8517,32208,14,2,f +8517,32209,15,9,f +8517,32213,2,2,f +8517,32213,0,3,f +8517,32214,2,2,f +8517,32214,0,6,f +8517,32214,14,1,f +8517,32216,2,4,f +8517,32216,14,2,f +8517,32218,14,1,f +8517,32219,0,4,f +8517,32221,8,2,f +8517,32225,14,1,f +8517,32225,2,1,f +8517,32229,14,2,f +8517,32229,2,12,f +8517,32229,0,6,f +8517,32230,0,10,f +8517,3647,7,2,f +8517,3708,15,1,f +8517,3749,7,2,f +8517,4019,7,4,f +8517,5306bc069,0,1,f +8517,6538b,7,2,f +8517,71427c01,7,1,f +8517,zbb013,22,69,f +8517,zbb014,7,38,f +8517,zbb015,0,14,f +8517,zbb015,2,2,f +8517,zbb015,14,2,f +8517,zbb018,14,2,f +8517,zbb022,0,6,f +8518,11203,29,1,f +8518,11610,5,1,f +8518,15745,45,1,f +8518,2431,26,2,f +8518,30136,19,2,f +8518,30565,27,1,f +8518,3068b,73,1,f +8518,3069bpr0055,15,1,f +8518,33291,2,1,f +8518,33291,4,3,f +8518,33291,14,1,f +8518,3741,2,1,f +8518,3941,19,1,f +8518,4345b,4,1,f +8518,4346,4,1,f +8518,6141,70,4,f +8518,87580,26,1,f +8519,298c02,4,2,f +8519,3021,70,2,f +8519,3022,0,1,f +8519,3022,25,1,f +8519,3023,25,1,f +8519,3039,4,1,f +8519,3660,4,1,f +8519,3710,70,1,f +8519,3747b,4,1,f +8519,3839b,0,2,f +8519,4081b,4,2,f +8519,41769,4,1,f +8519,41770,4,1,f +8519,4286,4,3,f +8519,43722,25,1,f +8519,43723,25,1,f +8519,44302a,4,4,f +8519,44567a,25,3,f +8519,4740,15,2,f +8519,6141,0,2,f +8519,6141,25,2,f +8519,6141,15,2,f +8519,73983,4,4,f +8520,122c01,0,2,f +8520,3020,0,1,f +8520,3022,0,1,f +8520,3039,0,1,f +8520,3068bp26,0,1,f +8520,3626apr0001,14,1,f +8520,3641,0,4,f +8520,3710,15,2,f +8520,3710,0,3,f +8520,3829c01,15,1,f +8520,3842b,15,1,f +8520,4070,0,2,f +8520,4589,15,2,f +8520,4589,0,2,f +8520,4590,0,2,f +8520,4732,0,1,f +8520,970c00,4,1,f +8520,973p0ac04,4,1,f +8521,2456,15,2,f +8521,2456,1,2,f +8521,2456,14,2,f +8521,2456,4,2,f +8521,3001,0,8,f +8521,3001,4,16,f +8521,3001,1,16,f +8521,3001,14,16,f +8521,3001,15,16,f +8521,3001,2,8,f +8521,3002,0,4,f +8521,3002,15,8,f +8521,3002,14,8,f +8521,3002,4,8,f +8521,3002,2,4,f +8521,3002,1,8,f +8521,3003,4,46,f +8521,3003,1,46,f +8521,3003,14,46,f +8521,3003,0,22,f +8521,3003,2,22,f +8521,3003,15,46,f +8521,3004,1,20,f +8521,3004,4,20,f +8521,3004,14,20,f +8521,3004,0,10,f +8521,3004,15,20,f +8521,3004,2,10,f +8521,3005,1,10,f +8521,3005,14,10,f +8521,3005,2,6,f +8521,3005,15,10,f +8521,3005,4,10,f +8521,3005,0,6,f +8521,3007,14,1,f +8521,3007,1,1,f +8521,3007,4,1,f +8521,3007,15,1,f +8521,3008,15,2,f +8521,3008,4,2,f +8521,3008,14,2,f +8521,3008,1,2,f +8521,3009,4,4,f +8521,3009,15,4,f +8521,3009,14,4,f +8521,3009,1,4,f +8521,3010,2,6,f +8521,3010,14,8,f +8521,3010,1,8,f +8521,3010,15,8,f +8521,3010,0,6,f +8521,3010,4,8,f +8521,3622,14,4,f +8521,3622,15,4,f +8521,3622,0,4,f +8521,3622,4,4,f +8521,3622,2,4,f +8521,3622,1,4,f +8524,11477,1,2,f +8524,11601,41,2,f +8524,14704,71,2,f +8524,14769pr1002,15,1,f +8524,15208,15,1,f +8524,15456,0,2,f +8524,2446,1,2,f +8524,3004,1,1,f +8524,3021,322,1,f +8524,3022,322,2,f +8524,3022,1,2,f +8524,3023,322,2,f +8524,3023,0,1,f +8524,3024,1,1,t +8524,3024,1,2,f +8524,30385,143,1,f +8524,3039,1,3,f +8524,3626cpr1001,15,2,f +8524,3794b,1,1,f +8524,44728,0,1,f +8524,48729a,0,2,f +8524,48729b,0,1,t +8524,49668,0,2,f +8524,51739,272,1,f +8524,54200,0,1,t +8524,54200,143,1,t +8524,54200,0,2,f +8524,54200,143,8,f +8524,60478,0,2,f +8524,61252,0,4,f +8524,6141,1,1,t +8524,6141,1,2,f +8524,64225,322,1,f +8524,73983,1,2,f +8524,87087,0,2,f +8524,92593,272,1,f +8524,99207,71,1,f +8525,2412b,1,1,f +8525,2446,7,1,f +8525,2447,33,1,f +8525,2540,7,1,f +8525,2817,0,2,f +8525,298c02,7,1,f +8525,3020,7,1,f +8525,30237a,15,2,f +8525,30367a,15,4,f +8525,3626bpx24,14,1,f +8525,3749,7,4,f +8525,3829c01,15,1,f +8525,3957a,0,1,f +8525,4032a,0,4,f +8525,4349,0,1,f +8525,4740,15,1,f +8525,970x026,1,1,f +8525,973px57c01,7,1,f +8527,18787,322,1,f +8528,11477,0,2,f +8528,13547,0,2,f +8528,15207,15,2,f +8528,15303,35,3,f +8528,15392,72,2,f +8528,15400,72,2,f +8528,15403,0,2,f +8528,15621,46,1,f +8528,18663,47,1,f +8528,18986,47,1,f +8528,18987,179,1,f +8528,20273,47,1,f +8528,2654,0,2,f +8528,3002,2,1,f +8528,30157,72,1,f +8528,3020,0,2,f +8528,3020,25,1,f +8528,3020,14,1,f +8528,3022,0,1,f +8528,3022,2,1,f +8528,3023,27,4,f +8528,3023,14,1,f +8528,3024,46,2,f +8528,3035,2,2,f +8528,30374,46,1,f +8528,3040b,25,2,f +8528,30504,2,2,f +8528,30602,35,2,f +8528,3065,35,1,f +8528,3068b,14,1,f +8528,3069b,15,1,f +8528,32028,15,1,f +8528,32062,0,1,f +8528,32064a,14,1,f +8528,32073,71,1,f +8528,32187,71,2,f +8528,32524,0,1,f +8528,3298,15,1,f +8528,3623,0,2,f +8528,3626cpr0896,78,1,f +8528,3626cpr1596,15,1,f +8528,3626cpr1597,78,1,f +8528,3626cpr1598,5,1,f +8528,3660,14,1,f +8528,3701,15,1,f +8528,3701,14,2,f +8528,3795,14,1,f +8528,3839b,71,1,f +8528,3894,0,1,f +8528,3958,0,1,f +8528,3960pr0016,0,1,f +8528,41747,0,2,f +8528,41748,0,2,f +8528,42022,35,2,f +8528,43719,72,1,f +8528,43722,0,1,f +8528,43723,0,1,f +8528,45590,0,1,f +8528,4733,0,1,f +8528,4740,35,2,f +8528,4740,2,2,f +8528,47753,0,1,f +8528,47753pr0006,0,1,f +8528,4865b,35,1,f +8528,50950,0,4,f +8528,51739,14,1,f +8528,54200,34,6,f +8528,55982,71,1,f +8528,59426,72,1,f +8528,59443,4,1,f +8528,59900,71,2,f +8528,60219,0,2,f +8528,60470a,2,2,f +8528,60478,0,4,f +8528,60849,0,1,f +8528,6091,0,2,f +8528,61409,288,2,f +8528,61409,27,2,f +8528,6141,0,4,f +8528,6141,42,15,f +8528,6239,35,2,f +8528,6249,71,1,f +8528,62810,308,1,f +8528,64798,0,1,f +8528,6536,14,1,f +8528,6536,15,1,f +8528,6558,1,2,f +8528,6587,28,1,f +8528,85941,47,2,f +8528,85943,72,1,f +8528,85984,2,3,f +8528,85984,15,1,f +8528,87752,42,1,f +8528,92280,0,2,f +8528,93273,14,1,f +8528,970c00pr0795,2,1,f +8528,970c00pr0796,14,1,f +8528,970x194,15,1,f +8528,973pr2894c01,2,1,f +8528,973pr2895c01,15,1,f +8528,973pr2896c01,14,1,f +8528,99207,0,6,f +8528,99780,14,1,f +8531,2456,4,2,f +8531,2456,14,2,f +8531,2456,15,2,f +8531,3001,4,40,f +8531,3001,14,40,f +8531,3001,1,40,f +8531,3001,15,40,f +8531,3001,0,28,f +8531,3002,1,12,f +8531,3002,14,12,f +8531,3002,0,8,f +8531,3002,15,12,f +8531,3002,4,12,f +8531,3003,15,32,f +8531,3003,0,20,f +8531,3003,1,32,f +8531,3003,14,32,f +8531,3003,4,32,f +8531,3006,4,2,f +8531,3006,1,2,f +8531,3006,14,2,f +8532,132a,0,4,f +8532,242c01,4,4,f +8532,3001a,14,1,f +8532,3003,0,1,f +8532,3004,14,2,f +8532,3004p50,1,1,f +8532,3005,4,2,f +8532,3005,14,2,f +8532,3009,47,1,f +8532,3009,14,1,f +8532,3009p01,14,1,f +8532,3010,47,1,f +8532,3010,14,5,f +8532,3020,14,1,f +8532,3020,0,2,f +8532,3021,0,2,f +8532,3022,14,1,f +8532,3022,0,2,f +8532,3033,14,1,f +8532,3034,4,1,f +8532,3035,4,2,f +8532,3145,4,2,f +8532,7049b,0,1,f +8532,709,14,1,f +8532,711,14,1,f +8532,799c800,0,1,f +8532,801,14,1,f +8532,802,14,1,f +8532,804,0,1,f +8534,ftbirch1,2,1,f +8534,ftbush1,2,1,f +8534,ftcyp1,2,1,f +8534,ftelm,2,1,f +8534,ftfruita1,2,1,f +8534,ftpine1,2,1,f +8535,2489,6,1,f +8535,2530,8,1,f +8535,2530,8,1,t +8535,2543,4,1,f +8535,2562,6,1,f +8535,3003,7,1,f +8535,3004,7,4,f +8535,30048,0,1,f +8535,3023,7,1,f +8535,3036,14,1,f +8535,3622,7,2,f +8535,3626bpr0895,15,1,f +8535,3626bpx108,14,1,f +8535,3710,7,1,f +8535,4215b,7,2,f +8535,57503,334,1,f +8535,57504,334,1,f +8535,57505,334,1,f +8535,57506,334,1,f +8535,6148,2,1,t +8535,6148,2,1,f +8535,6260,15,1,f +8535,6265,15,1,t +8535,6265,15,2,f +8535,6266,15,2,f +8535,970c00,1,1,f +8535,973p3cc01,15,1,f +8536,2357,0,2,f +8536,2362b,71,2,f +8536,2412b,72,20,f +8536,2419,72,2,f +8536,2420,71,12,f +8536,2431,72,6,f +8536,2431,71,6,f +8536,2444,0,2,f +8536,2445,72,6,f +8536,2450,71,6,f +8536,2540,72,2,f +8536,2555,71,6,f +8536,2730,71,12,f +8536,2736,71,2,f +8536,2780,0,3,t +8536,2780,0,55,f +8536,2817,71,4,f +8536,3004,71,7,f +8536,3009,71,1,f +8536,3010,71,7,f +8536,30162,72,4,f +8536,30165,72,6,f +8536,3020,71,15,f +8536,3021,71,27,f +8536,3022,72,11,f +8536,3023,72,39,f +8536,3029,0,2,f +8536,3029,71,2,f +8536,3030,72,1,f +8536,3031,71,4,f +8536,3032,0,1,f +8536,3032,71,13,f +8536,3034,72,2,f +8536,3035,71,2,f +8536,30359b,72,4,f +8536,3036,71,10,f +8536,30363,72,3,f +8536,30365,72,6,f +8536,30367b,72,2,f +8536,3037,72,2,f +8536,30374,71,2,f +8536,3040b,71,4,f +8536,3040b,72,6,f +8536,30414,72,3,f +8536,30516,71,1,f +8536,30553,72,11,f +8536,3062b,72,13,f +8536,30658,0,1,f +8536,3068b,71,14,f +8536,32001,0,1,f +8536,32013,72,2,f +8536,32014,0,4,f +8536,32062,0,5,f +8536,32063,71,2,f +8536,32064b,71,4,f +8536,32073,71,6,f +8536,32123b,71,6,f +8536,32123b,71,1,t +8536,32198,71,1,f +8536,32271,72,6,f +8536,32324,0,2,f +8536,3245b,71,2,f +8536,3298,4,4,f +8536,3460,71,6,f +8536,3622,72,4,f +8536,3623,71,20,f +8536,3660,72,6,f +8536,3665,72,14,f +8536,3665,71,8,f +8536,3666,71,10,f +8536,3666,0,2,f +8536,3675,71,4,f +8536,3700,72,1,f +8536,3701,19,18,f +8536,3702,71,7,f +8536,3705,0,1,f +8536,3706,0,2,f +8536,3707,0,5,f +8536,3709,0,8,f +8536,3710,72,22,f +8536,3713,71,1,t +8536,3713,71,7,f +8536,3738,71,6,f +8536,3747b,72,5,f +8536,3794a,71,2,f +8536,3795,71,10,f +8536,3832,71,3,f +8536,3894,72,4,f +8536,3895,72,6,f +8536,3937,0,17,f +8536,3941,71,2,f +8536,3958,71,2,f +8536,3960,71,2,f +8536,3961,72,3,f +8536,4032a,71,10,f +8536,4070,0,4,f +8536,4085c,0,2,f +8536,4095,71,5,f +8536,41239,71,4,f +8536,4162,0,12,f +8536,4162,71,8,f +8536,41677,71,2,f +8536,41747,72,2,f +8536,41748,72,2,f +8536,41749,71,2,f +8536,41750,71,2,f +8536,41753,72,1,f +8536,41769,71,7,f +8536,41770,71,7,f +8536,42022,72,14,f +8536,42445,71,2,f +8536,4274,1,3,t +8536,4274,1,41,f +8536,4286,71,4,f +8536,4286,72,8,f +8536,4287,71,6,f +8536,43093,1,14,f +8536,43337,71,2,f +8536,4349,72,2,f +8536,43710,72,1,f +8536,43711,72,1,f +8536,43720,72,2,f +8536,43721,72,2,f +8536,43722,71,1,f +8536,43722,72,10,f +8536,43723,71,1,f +8536,43723,72,9,f +8536,44224,72,4,f +8536,44225,71,4,f +8536,44301a,71,2,t +8536,44301a,71,11,f +8536,44375a,71,4,f +8536,44567a,72,8,f +8536,44728,72,4,f +8536,4477,71,3,f +8536,4519,71,3,f +8536,45677,72,5,f +8536,4589,72,9,f +8536,4599a,71,15,f +8536,46667,72,2,f +8536,4733,71,1,f +8536,47397,71,5,f +8536,47398,71,5,f +8536,4740,72,16,f +8536,47456,71,4,f +8536,47457,71,7,f +8536,47905,72,8,f +8536,4864b,71,2,f +8536,4865a,71,8,f +8536,54200,72,2,f +8536,54383,71,7,f +8536,54384,71,7,f +8536,56143,9999,1,f +8536,6005,72,4,f +8536,6111,71,2,f +8536,6134,71,17,f +8536,6141,0,2,t +8536,6141,0,20,f +8536,6190,72,6,f +8536,6191,0,4,f +8536,6215,71,2,f +8536,6222,0,1,f +8536,6231,71,8,f +8536,6558,0,26,f +8536,6587,72,5,f +8536,6629,71,2,f +8536,6632,72,4,f +8536,6636,72,4,f +8536,73590c02a,0,3,f +8536,75535,71,3,f +8536,85545,1,1,f +8540,2335,15,1,f +8540,2412b,4,2,f +8540,2412b,15,2,f +8540,2420,4,2,f +8540,2420,72,2,f +8540,2431,4,3,f +8540,2436,0,1,f +8540,2436,4,1,f +8540,2445,71,1,f +8540,2780,0,6,f +8540,2780,0,1,t +8540,3001,15,1,f +8540,3004,0,1,f +8540,3005,4,2,f +8540,3020,1,1,f +8540,3020,15,2,f +8540,3021,72,2,f +8540,3022,0,2,f +8540,30236,0,1,f +8540,30237a,15,2,f +8540,30258,0,1,f +8540,3029,72,1,f +8540,3031,0,1,f +8540,3037,0,2,f +8540,30374,15,1,f +8540,30414,4,2,f +8540,30414,15,1,f +8540,3068b,15,1,f +8540,3069b,4,4,f +8540,3069b,15,2,f +8540,3069b,0,3,f +8540,3069bpr0100,2,1,f +8540,3070b,36,1,t +8540,3070b,36,4,f +8540,32013,0,4,f +8540,32028,15,2,f +8540,32064b,71,1,f +8540,32524,15,2,f +8540,32524,0,2,f +8540,3788,4,1,f +8540,3788,15,1,f +8540,3795,72,2,f +8540,3832,72,1,f +8540,3941,71,5,f +8540,3957a,71,3,f +8540,4032a,2,10,f +8540,4150,71,5,f +8540,41862,71,1,f +8540,4274,71,1,f +8540,4274,71,1,t +8540,43093,1,5,f +8540,44674,4,1,f +8540,48336,15,1,f +8540,50944pr0001,0,8,f +8540,50949,0,1,f +8540,50951,0,8,f +8540,54200,1,2,f +8540,54200,15,2,f +8540,54200,40,2,f +8540,54200,15,1,t +8540,54200,1,1,t +8540,54200,40,1,t +8540,59426,72,1,f +8540,59443,72,1,f +8540,60470a,0,1,f +8540,6141,72,2,f +8540,6141,72,1,t +8540,6157,0,4,f +8540,6231,0,2,f +8540,64700,14,1,f +8540,86501,72,1,f +8540,87079,15,1,f +8540,88930,15,1,f +8543,30173a,0,1,f +8543,30177,1,1,f +8543,3626bpr0746,14,1,f +8543,970c00pr0192,1,1,f +8543,973pr1717c01,1,1,f +8544,3650,7,2,f +8544,3743,7,2,f +8544,4143,7,4,f +8544,4716,7,2,f +8545,2446p01,15,1,f +8545,2446px2,15,1,f +8545,2446px3,4,1,f +8545,2446px6,1,1,f +8545,2447,41,4,f +8545,3629,7,2,f +8545,3833,0,2,f +8545,3878,0,2,f +8545,3898,15,2,f +8545,3901,0,2,f +8545,4485,0,1,f +8545,4485,1,1,f +8545,4485,15,1,f +8545,4485,4,1,f +8545,4530,6,1,f +8545,4530,4,1,f +8545,4530,0,1,f +8545,6093,0,2,f +8545,6093,6,2,f +8545,6093,4,2,f +8546,2420,7,2,f +8546,2470,0,4,f +8546,2488,0,1,f +8546,2489,6,2,f +8546,251,0,1,f +8546,2527,6,1,f +8546,2530,8,1,f +8546,2926,0,1,f +8546,3001,0,1,f +8546,3003,0,1,f +8546,3004,6,1,f +8546,3008,0,2,f +8546,3010,0,2,f +8546,30132,8,1,f +8546,30133,15,1,f +8546,30135,1,1,f +8546,30141,8,1,f +8546,3020,0,1,f +8546,3022,7,2,f +8546,3023,7,2,f +8546,3023,6,2,f +8546,3030,0,1,f +8546,3032,0,1,f +8546,3062b,7,6,f +8546,3069bp03,7,1,f +8546,3176,0,3,f +8546,3626bp39,14,1,f +8546,3679,7,1,f +8546,4489,0,2,f +8546,4493c01pb01,6,1,f +8546,4587,0,1,f +8546,4623,0,7,f +8546,4865a,0,3,f +8546,6157,0,2,f +8546,71396p01c01,15,1,f +8546,84943,8,1,f +8546,970c00,1,1,f +8546,973px43c01,1,1,f +8547,2339,7,4,f +8547,2339,0,2,f +8547,2345,0,3,f +8547,2345p03,0,1,f +8547,2357,7,8,f +8547,2357,0,6,f +8547,2417,2,3,f +8547,2420,0,2,f +8547,2423,2,1,f +8547,2436,4,2,f +8547,2444,0,2,f +8547,2454a,0,2,f +8547,2458,7,2,f +8547,2540,0,1,f +8547,2540,4,1,f +8547,2542,6,1,f +8547,2570,8,1,f +8547,2586p4c,7,1,f +8547,2586p4d,15,2,f +8547,2654,0,2,f +8547,3001,7,2,f +8547,3004,6,1,f +8547,3004,0,6,f +8547,3004,7,3,f +8547,3005,0,2,f +8547,3005,7,16,f +8547,3009,7,2,f +8547,3020,7,1,f +8547,3021,0,1,f +8547,3022,0,3,f +8547,3023,0,5,f +8547,3023,6,1,f +8547,3023,7,7,f +8547,3024,0,2,f +8547,3024,0,1,t +8547,3028,0,3,f +8547,3031,7,1,f +8547,3032,0,2,f +8547,3034,0,1,f +8547,3039,0,4,f +8547,3040b,7,2,f +8547,3048c,7,2,f +8547,3062b,0,8,f +8547,3062b,7,2,f +8547,3307,7,1,f +8547,3455,0,2,f +8547,3622,7,2,f +8547,3623,6,2,f +8547,3626bpr0001,14,3,f +8547,3626bpr0895,15,1,f +8547,3626bpx96,14,1,f +8547,3659,7,2,f +8547,3660,7,4,f +8547,3665,7,4,f +8547,3688,1,2,f +8547,3710,7,1,f +8547,3844,8,1,f +8547,3846p4d,15,3,f +8547,3849,8,2,f +8547,3849,0,1,f +8547,3857,1,1,f +8547,3896,8,1,f +8547,3896,0,1,f +8547,3957a,0,14,f +8547,3958,1,1,f +8547,4070,0,2,f +8547,4081b,0,2,f +8547,4081b,7,2,f +8547,4085c,0,5,f +8547,4275b,0,4,f +8547,4276b,0,4,f +8547,4286,7,2,f +8547,4460a,7,2,f +8547,4490,7,3,f +8547,4491b,4,1,f +8547,4493c01pb01,6,1,f +8547,4495a,15,2,f +8547,4495a,4,3,f +8547,4495a,14,1,f +8547,4497,6,1,f +8547,4498,6,1,f +8547,4499,6,1,f +8547,4623,0,3,f +8547,4738a,6,1,f +8547,4739a,6,1,f +8547,56823c25,0,1,f +8547,59,383,1,f +8547,6019,0,1,f +8547,6037,7,2,f +8547,6044,0,2,f +8547,6066,0,1,f +8547,6066,7,2,f +8547,6082,8,1,f +8547,6083,8,2,f +8547,6111,0,2,f +8547,6111,7,1,f +8547,6122,0,1,f +8547,6123,8,2,f +8547,6125,4,1,f +8547,6126a,57,2,f +8547,6141,33,1,f +8547,6141,36,1,f +8547,6141,0,1,t +8547,6141,34,1,f +8547,6141,36,1,t +8547,6141,0,2,f +8547,6141,33,1,t +8547,6141,34,1,t +8547,6260,15,1,f +8547,6265,15,2,f +8547,6265,15,1,t +8547,6266,15,2,f +8547,6266,15,1,t +8547,87685,4,1,f +8547,87686,4,1,f +8547,87687,4,1,f +8547,970x021,0,1,f +8547,970x026,7,2,f +8547,970x026,4,1,f +8547,973p41c02,4,2,f +8547,973p4dc02,15,1,f +8547,973pb0105c02,4,1,f +8549,3626bpr0469,15,1,f +8549,3626bpr0476,78,1,f +8549,42444,2,1,f +8549,55704,0,1,f +8549,56630,0,1,f +8549,970c00,0,1,f +8549,970c00,85,1,f +8549,973pr1274c01,0,1,f +8549,973pr1282c01,85,1,f +8550,11098,179,1,f +8550,11127,41,1,f +8550,11233pr0002,71,1,f +8550,13549,41,1,f +8550,15535,72,1,f +8550,30374,71,1,f +8550,3626cpr1134,71,1,f +8550,3941,41,1,f +8550,4032a,19,2,f +8550,60474,72,1,f +8550,6587,28,1,f +8550,75937,0,1,f +8550,87747,15,1,f +8550,92690,71,1,f +8550,970c00pr0436,71,1,f +8550,973pr2234c01,320,1,f +8550,98138,41,1,f +8551,11458,72,2,f +8551,11477,1,2,f +8551,12825,4,1,f +8551,2412b,72,1,f +8551,2419,4,1,f +8551,2476,15,1,f +8551,2780,0,1,f +8551,30031,0,1,f +8551,30153,34,1,f +8551,3023,4,3,f +8551,30526,72,2,f +8551,30602,4,1,f +8551,32017,71,2,f +8551,32294,0,2,f +8551,32556,19,1,f +8551,3626cpr0966,4,1,f +8551,3626cpr1409,143,1,f +8551,3673,71,2,f +8551,3710,0,1,f +8551,3794b,73,2,f +8551,3794b,72,1,f +8551,3795,1,1,f +8551,43093,1,2,f +8551,47458,4,1,f +8551,52501,1,2,f +8551,55981,71,4,f +8551,58176,15,2,f +8551,59233pat0001,41,5,f +8551,59900,72,2,f +8551,61184,71,2,f +8551,6536,4,2,f +8551,89201,0,4,f +8551,90202,0,1,f +8551,92593,72,2,f +8551,93273,4,2,f +8551,970c00,1,1,f +8551,970c00pr0658,73,1,f +8551,973pr2047c01,1,1,f +8551,973pr2718c01,73,1,f +8551,98285,0,1,f +8551,98286,71,1,f +8551,99781,71,1,f +8555,2780,0,1,f +8555,2853,7,2,f +8555,2905,0,2,f +8555,32017,7,2,f +8555,32017,4,2,f +8555,32056,4,2,f +8555,32062,0,1,f +8555,32123b,7,1,t +8555,32123b,7,2,f +8555,3482,15,3,f +8555,3483,0,3,f +8555,3673,7,1,f +8555,3705,0,1,f +8555,3706,0,1,f +8555,3713,7,3,f +8555,3713,7,1,t +8555,4519,0,2,f +8555,6558,0,1,f +8555,71509,0,1,t +8555,71509,0,1,f +8556,12825,14,4,f +8556,14226c11,0,1,f +8556,2335,1,1,f +8556,2377,15,2,f +8556,2412b,15,4,f +8556,2412b,71,8,f +8556,2413,15,2,f +8556,2413,71,2,f +8556,2415,71,4,f +8556,2419,15,1,f +8556,2419,71,1,f +8556,2419,0,2,f +8556,2421,0,1,f +8556,2431,15,2,f +8556,2431pr0017,14,3,f +8556,2432,72,2,f +8556,2436,15,1,f +8556,2437,41,2,f +8556,2437,40,1,f +8556,2445,72,2,f +8556,2446,15,4,f +8556,2447,40,4,f +8556,2447,40,1,t +8556,2456,72,6,f +8556,2456,71,10,f +8556,2456,15,4,f +8556,2458,4,1,f +8556,2458,72,2,f +8556,2460,72,1,f +8556,2479,0,1,f +8556,2486,14,2,f +8556,2877,71,9,f +8556,298c02,4,1,t +8556,298c02,4,1,f +8556,3001,71,1,f +8556,3001,0,1,f +8556,3001,15,7,f +8556,3001,25,2,f +8556,3001,72,2,f +8556,3001,2,1,f +8556,3002,4,2,f +8556,3002,15,1,f +8556,3002,72,6,f +8556,3003,2,2,f +8556,3003,71,2,f +8556,3003,72,2,f +8556,3003,15,1,f +8556,3004,25,4,f +8556,3004,15,2,f +8556,3004,72,27,f +8556,3004,4,4,f +8556,3004,71,26,f +8556,3005,4,11,f +8556,3005,15,14,f +8556,3005,70,4,f +8556,3005,71,56,f +8556,3005,25,4,f +8556,3006,15,1,f +8556,3008,0,2,f +8556,3008,72,3,f +8556,3008,2,2,f +8556,3008,71,5,f +8556,3008,15,4,f +8556,3009,15,6,f +8556,3009,2,2,f +8556,3009,0,2,f +8556,3009,71,7,f +8556,3009,72,4,f +8556,3009,4,2,f +8556,3010,15,4,f +8556,3010,71,6,f +8556,3020,25,5,f +8556,3020,4,2,f +8556,3020,70,2,f +8556,3020,15,1,f +8556,3020,0,3,f +8556,3021,4,2,f +8556,3021,72,9,f +8556,3021,2,5,f +8556,3021,71,1,f +8556,3022,15,2,f +8556,3022,71,1,f +8556,3022,1,2,f +8556,3022,2,4,f +8556,3022,25,2,f +8556,3022,72,8,f +8556,3023,71,2,f +8556,3023,72,9,f +8556,30236,0,2,f +8556,30236,72,7,f +8556,3024,72,2,f +8556,3028,72,2,f +8556,3028,71,1,f +8556,3029,72,1,f +8556,3029,71,1,f +8556,3030,72,3,f +8556,3031,15,4,f +8556,3031,72,2,f +8556,3032,1,2,f +8556,3032,15,2,f +8556,3033,71,2,f +8556,30332,0,2,f +8556,3034,0,2,f +8556,3034,72,9,f +8556,3035,15,1,f +8556,3035,72,4,f +8556,3035,71,5,f +8556,3035,1,2,f +8556,3035,0,2,f +8556,30355,0,1,f +8556,30355,15,1,f +8556,30356,0,1,f +8556,30356,15,1,f +8556,30357,72,8,f +8556,30367b,0,5,f +8556,30367b,15,4,f +8556,3037,15,4,f +8556,3038,15,4,f +8556,30389c,0,1,f +8556,3039,0,2,f +8556,3039,71,8,f +8556,3039,72,9,f +8556,3039,15,11,f +8556,3039,25,4,f +8556,3039pr0002,15,4,f +8556,3040b,2,2,f +8556,3040b,19,1,f +8556,3040b,4,5,f +8556,3040b,25,4,f +8556,30414,72,2,f +8556,30504,0,2,f +8556,30554a,71,3,f +8556,3062b,15,4,f +8556,3062b,72,2,f +8556,3063b,71,20,f +8556,3063b,15,8,f +8556,3063b,4,4,f +8556,3063b,0,16,f +8556,3068b,72,3,f +8556,3068b,15,2,f +8556,3068bpr0139a,19,1,f +8556,3069b,4,4,f +8556,3069b,15,7,f +8556,3069bpr0101,71,1,f +8556,3297,15,2,f +8556,3456,72,2,f +8556,3460,0,2,f +8556,3460,72,2,f +8556,3464,15,4,f +8556,3622,71,5,f +8556,3622,4,2,f +8556,3622,15,6,f +8556,3622,2,2,f +8556,3623,15,2,f +8556,3624,0,1,f +8556,3626bpr0387,14,7,f +8556,3626cpr0495,14,7,f +8556,3660,72,4,f +8556,3660,2,2,f +8556,3660,15,4,f +8556,3660,4,2,f +8556,3665,4,2,f +8556,3666,72,8,f +8556,3666,0,4,f +8556,3666,2,4,f +8556,3678a,4,1,f +8556,3678a,0,4,f +8556,3679,71,1,f +8556,3680,15,1,f +8556,3710,72,9,f +8556,3710,25,2,f +8556,3710,15,6,f +8556,3710,4,4,f +8556,3710,71,1,f +8556,3710,2,4,f +8556,3731,71,2,f +8556,3747b,4,3,f +8556,3794b,15,6,f +8556,3795,71,3,f +8556,3795,25,1,f +8556,3795,72,5,f +8556,3795,70,2,f +8556,3795,15,5,f +8556,3795,14,1,f +8556,3795,2,2,f +8556,3821,15,1,f +8556,3822,15,1,f +8556,3823,47,2,f +8556,3829c01,15,2,f +8556,3838,15,4,f +8556,3839b,71,1,f +8556,3900,15,2,f +8556,3901,71,1,f +8556,3940b,72,4,f +8556,3941,25,1,f +8556,3941,15,6,f +8556,3942c,15,2,f +8556,3943b,0,3,f +8556,3956,0,1,f +8556,3957a,15,7,f +8556,3958,15,2,f +8556,3960,72,1,f +8556,3962b,0,1,f +8556,3963,15,1,f +8556,4032a,72,1,f +8556,4070,19,4,f +8556,4079b,0,1,f +8556,4079b,4,6,f +8556,4083,15,4,f +8556,4085c,15,2,f +8556,41529,71,1,f +8556,4162,4,5,f +8556,4162,71,4,f +8556,42023,4,2,f +8556,4286,2,2,f +8556,4286,4,4,f +8556,4287,15,6,f +8556,43720,15,1,f +8556,43721,15,1,f +8556,43722,25,1,f +8556,43723,25,1,f +8556,43898,72,4,f +8556,44300,72,4,f +8556,44302a,72,4,f +8556,4445,15,6,f +8556,4449,0,2,f +8556,4449,71,2,f +8556,4449,70,2,f +8556,44571,15,2,f +8556,4460b,19,1,f +8556,4477,72,4,f +8556,4479,0,1,f +8556,4485,27,1,f +8556,4488,71,11,f +8556,45677,15,1,f +8556,4589,14,14,f +8556,4589,0,2,f +8556,4589,15,2,f +8556,4617b,0,1,f +8556,4624,71,26,f +8556,4740,57,7,f +8556,4740,15,1,f +8556,4740,72,2,f +8556,48336,15,4,f +8556,4854,72,5,f +8556,4855,72,3,f +8556,4856a,15,2,f +8556,4858,15,3,f +8556,4859,4,2,f +8556,4859,15,2,f +8556,4861,15,3,f +8556,4862,47,2,f +8556,4863,15,4,f +8556,4865a,15,6,f +8556,4868b,71,2,f +8556,4869,71,2,f +8556,4870,71,6,f +8556,4871,72,1,f +8556,50303,0,1,f +8556,50304,15,2,f +8556,50305,15,2,f +8556,54200,15,2,f +8556,54200,15,1,t +8556,54200,70,2,f +8556,54200,70,1,t +8556,54383,1,2,f +8556,54384,1,2,f +8556,57895,47,7,f +8556,59349,47,7,f +8556,59363,70,1,f +8556,59363,0,1,f +8556,6014a,15,10,f +8556,6020,71,1,f +8556,60470a,15,3,f +8556,60474,15,4,f +8556,60476,71,2,f +8556,60596,15,1,f +8556,60596,0,10,f +8556,60616a,47,2,f +8556,60700,0,10,f +8556,6091,71,2,f +8556,6093,0,1,f +8556,6093,70,1,f +8556,6093,19,1,f +8556,6106,71,4,f +8556,6111,71,3,f +8556,6141,36,3,f +8556,6141,34,3,f +8556,6141,25,6,f +8556,6141,71,1,t +8556,6141,34,1,t +8556,6141,46,1,t +8556,6141,25,1,t +8556,6141,71,2,f +8556,6141,36,1,t +8556,6141,46,2,f +8556,61506,19,1,f +8556,6157,71,7,f +8556,6239,15,3,f +8556,62698,0,2,f +8556,62810,484,1,f +8556,63082,71,3,f +8556,6564,0,1,f +8556,6564,15,3,f +8556,6565,0,1,f +8556,6565,15,3,f +8556,6636,15,3,f +8556,6636,4,9,f +8556,85941,33,6,f +8556,85941,15,6,f +8556,87414,0,30,f +8556,95120,72,2,f +8556,970c00,15,5,f +8556,970c00,1,2,f +8556,970c00,0,5,f +8556,970c00,272,1,f +8556,970c00,4,1,f +8556,973c01,15,4,f +8556,973pr1163c01,272,1,f +8556,973pr1238c01,0,5,f +8556,973pr1244c01,73,1,f +8556,973pr1480c01,15,1,f +8556,973pr1485c01,4,1,f +8556,973pr1517c01,73,1,f +8557,2352,4,1,f +8557,2456,14,2,f +8557,2456,4,2,f +8557,3001,4,7,f +8557,3001,14,6,f +8557,3001,1,6,f +8557,3001,15,1,f +8557,3001pr1,14,1,f +8557,3002,14,4,f +8557,3002,0,2,f +8557,3002,15,2,f +8557,3002,1,4,f +8557,3002,4,2,f +8557,3003,14,10,f +8557,3003,4,9,f +8557,3003,0,3,f +8557,3003,15,2,f +8557,3003,1,8,f +8557,3003,2,4,f +8557,3003pe1,14,2,f +8557,3007,14,2,f +8557,30075pb01,2,1,f +8557,30076,1,1,f +8557,30077,4,2,f +8557,30078,4,1,f +8557,30143px1,14,1,f +8557,30145p01,4,2,f +8557,3483,0,4,f +8557,4204,2,1,f +8557,4727,2,2,f +8557,4728,4,1,f +8557,4728,14,1,f +8557,4729,14,1,f +8557,4743,14,1,f +8557,4744,4,1,f +8557,4744pr0001,0,1,f +8557,4744px1,6,1,f +8557,4744px5,2,1,f +8557,4745,4,1,f +8557,600,15,1,f +8557,601,15,2,f +8557,6215,2,2,f +8557,6215,14,8,f +8557,6216,14,2,f +8557,6216,2,1,f +8557,6232,14,1,f +8557,6235,1,1,f +8557,6236,1,1,f +8557,6248,4,4,f +8559,11291,4,1,f +8559,12622,4,1,f +8559,14210,15,1,f +8559,2412b,1,2,f +8559,2540,4,2,f +8559,3001,72,4,f +8559,3002,71,1,f +8559,3003,15,1,f +8559,30237b,71,1,f +8559,3031,71,1,f +8559,30602,1,1,f +8559,30602pr0004,1,2,f +8559,3069b,36,2,f +8559,3626bpr0966,4,1,f +8559,3626cpr1069,0,1,f +8559,3795,1,1,f +8559,3829c01,15,1,f +8559,3957a,71,1,f +8559,4079,1,1,f +8559,4081b,1,2,f +8559,44676,1,2,f +8559,45677pr0001,1,1,f +8559,47458,4,1,f +8559,47905,0,1,f +8559,55236,0,2,f +8559,59900,71,2,f +8559,6014b,15,4,f +8559,6126b,182,2,f +8559,61409,1,2,f +8559,87697,0,4,f +8559,90981,15,1,f +8559,92593,15,1,f +8559,970c00,0,1,f +8559,970x021,1,1,f +8559,973pr2047c01,1,1,f +8559,973pr2167c01,0,1,f +8560,14226c21,0,2,f +8560,2420,4,2,f +8560,2421,0,1,f +8560,2431,14,1,f +8560,2431,4,2,f +8560,2436,4,1,f +8560,2446,15,1,f +8560,2447,41,1,t +8560,2447,41,1,f +8560,2460,7,1,f +8560,2479,0,1,f +8560,2483,41,1,f +8560,2513,4,1,f +8560,2540,0,2,f +8560,2877,7,1,f +8560,298c02,15,2,f +8560,298c02,15,1,t +8560,30192,8,1,f +8560,3020,4,1,f +8560,3021,0,2,f +8560,3021,4,1,f +8560,3022,0,2,f +8560,3023,15,4,f +8560,3024,36,2,f +8560,3024,46,2,f +8560,3031,4,1,f +8560,3062b,7,2,f +8560,3069bp52,15,1,f +8560,3070b,36,1,t +8560,3070b,36,1,f +8560,3176,0,1,f +8560,3460,0,4,f +8560,3460,4,1,f +8560,3623,15,3,f +8560,3626bp04,14,1,f +8560,3626bp05,14,1,f +8560,3659,0,1,f +8560,3660,14,1,f +8560,3666,15,1,f +8560,3700,14,1,f +8560,3710,4,1,f +8560,3794a,4,2,f +8560,3794a,15,1,f +8560,3795,7,1,f +8560,3823,41,1,f +8560,3829c01,7,1,f +8560,4070,0,2,f +8560,4081b,15,2,f +8560,4211,4,1,f +8560,4286,15,3,f +8560,4315,15,1,f +8560,4485,2,1,f +8560,4488,15,1,f +8560,4600,7,2,f +8560,4623,7,1,f +8560,4856a,14,1,f +8560,4871,14,1,f +8560,56823,0,1,f +8560,6014a,15,4,f +8560,6015,0,4,f +8560,6019,15,1,f +8560,6140,0,2,f +8560,6141,34,1,t +8560,6141,34,1,f +8560,6141,36,1,t +8560,6141,36,1,f +8560,71128,383,1,f +8560,71155,0,1,f +8560,73037,4,1,f +8560,970c00,0,1,f +8560,970c00,7,1,f +8560,973p28c01,0,1,f +8560,973p70c01,6,1,f +8561,122c01,0,3,f +8561,2493b,15,2,f +8561,2494,47,2,f +8561,3001,4,1,f +8561,3002,4,2,f +8561,3003,4,4,f +8561,3004,0,80,f +8561,3004,15,1,f +8561,3004,4,22,f +8561,3004pb005,15,2,f +8561,3005,0,14,f +8561,3005,15,1,f +8561,3005,14,2,f +8561,3005,4,21,f +8561,3008,4,6,f +8561,3009,4,16,f +8561,3009,0,2,f +8561,3010,15,5,f +8561,3010,4,6,f +8561,3010,0,2,f +8561,3020,7,3,f +8561,3020,4,2,f +8561,3020,14,1,f +8561,3020,15,2,f +8561,3020,0,1,f +8561,3021,0,1,f +8561,3022,0,1,f +8561,3023,0,9,f +8561,3023,4,8,f +8561,3023,14,3,f +8561,3024,47,1,f +8561,3024,4,2,f +8561,3024,14,2,f +8561,3027,0,2,f +8561,3028,7,2,f +8561,3030,0,2,f +8561,3030,4,2,f +8561,3032,14,1,f +8561,3033,7,2,f +8561,3034,14,1,f +8561,3035,7,4,f +8561,3036,0,2,f +8561,3037,4,2,f +8561,3039,4,1,f +8561,3039p23,7,1,f +8561,3039p34,7,1,f +8561,3040p02,0,1,f +8561,3044a,4,2,f +8561,3045,4,4,f +8561,3069b,0,1,f +8561,3069bpr0099,15,1,f +8561,3070b,4,2,f +8561,3070b,15,4,f +8561,3228b,7,8,f +8561,3456,7,6,f +8561,3622,4,11,f +8561,3623,14,2,f +8561,3623,0,4,f +8561,3624,4,2,f +8561,3624,1,1,f +8561,3625,0,2,f +8561,3625,4,1,f +8561,3626apr0001,14,9,f +8561,3629,7,1,f +8561,3633,14,4,f +8561,3641,0,6,f +8561,3651,7,2,f +8561,3660,0,4,f +8561,3660,4,6,f +8561,3666,4,2,f +8561,3679,7,1,f +8561,3680,0,1,f +8561,3705,0,2,f +8561,3710,14,1,f +8561,3710,4,4,f +8561,3710,0,8,f +8561,3710,7,7,f +8561,3713,7,4,f +8561,3730,0,1,f +8561,3731,0,1,f +8561,3794a,15,3,f +8561,3794a,4,1,f +8561,3795,14,1,f +8561,3829c01,14,1,f +8561,3832,7,2,f +8561,3833,4,1,f +8561,3853,15,1,f +8561,3855,47,3,f +8561,3856,2,2,f +8561,3857,7,2,f +8561,3898,15,1,f +8561,3899,47,1,f +8561,3899,14,2,f +8561,3900,7,1,f +8561,3956,0,1,f +8561,3960,7,2,f +8561,4033,15,4,f +8561,4079,7,1,f +8561,4079,14,4,f +8561,4081a,0,2,f +8561,4083,0,1,f +8561,4150pr0001,15,1,f +8561,4166,8,9,f +8561,4168,7,2,f +8561,4169,7,2,f +8561,4275b,0,4,f +8561,4275b,4,6,f +8561,4276b,0,4,f +8561,4276b,4,4,f +8561,4286,4,4,f +8561,4287,4,4,f +8561,4345ap03,14,1,f +8561,4346p03,14,1,f +8561,4449,6,4,f +8561,4449,15,2,f +8561,4531,4,2,f +8561,47899c01,15,1,f +8561,6141,47,2,f +8561,73194c01,15,1,f +8561,970c00,1,6,f +8561,970c00,4,1,f +8561,970c00,0,1,f +8561,970c00,7,1,f +8561,973c07,1,1,f +8561,973p18c01,1,1,f +8561,973p22c01,0,1,f +8561,973p26c01,1,3,f +8561,973p72c01,15,1,f +8561,973pb0069c01,0,1,f +8561,973px3c01,15,1,f +8562,2780,0,5,f +8562,32013,71,1,f +8562,32062,0,1,f +8562,32174,288,5,f +8562,32199,72,1,f +8562,3705,0,1,f +8562,43093,1,1,f +8562,4519,71,2,f +8562,47297,288,2,f +8562,47306,288,1,f +8562,50898,288,4,f +8562,53543,135,2,f +8562,53544,135,2,f +8562,53545,288,1,f +8562,53547pat0001,288,1,f +8562,53548,288,2,f +8562,53549pat0002,288,2,f +8562,53550,135,1,f +8562,53558pat01,27,1,f +8562,53585,0,1,f +8562,54271,135,1,f +8562,54821,33,4,f +8562,56153,288,1,f +8562,59426,72,1,f +8562,6558,0,1,f +8562,bion014c01,135,1,f +8565,2444,15,2,f +8565,298c02,15,1,t +8565,298c02,15,2,f +8565,3020,15,4,f +8565,3023,15,4,f +8565,3024,15,1,f +8565,3024,15,1,t +8565,30383,15,1,f +8565,30503,15,2,f +8565,30553,71,1,f +8565,3069b,272,4,f +8565,3069b,15,5,f +8565,3070b,272,2,f +8565,3070b,272,1,t +8565,3710,15,1,f +8565,4081b,15,1,f +8565,41769,272,1,f +8565,41770,272,1,f +8565,43093,1,1,f +8565,50304,15,1,f +8565,50305,15,1,f +8565,54200,33,1,t +8565,54200,15,4,f +8565,54200,15,1,t +8565,54200,33,1,f +8565,6141,46,4,f +8565,6141,46,1,t +8565,63864,15,2,f +8565,87082,71,1,f +8565,99781,71,2,f +8566,2154stk01,9999,1,t +8566,2342,7,1,f +8566,2357,0,2,f +8566,2357,7,6,f +8566,2399,7,3,f +8566,2399,0,1,f +8566,2412b,42,9,f +8566,2412b,0,5,f +8566,2413,0,2,f +8566,2419,0,1,f +8566,2420,1,4,f +8566,2431,1,1,f +8566,2431px10,0,2,f +8566,2432,7,1,f +8566,2445,1,1,f +8566,2447,0,2,f +8566,2449,0,8,f +8566,2466,42,5,f +8566,2468,42,2,f +8566,2540,0,10,f +8566,2569,42,2,f +8566,2744,0,6,f +8566,2877,7,12,f +8566,2880,0,3,f +8566,298c03,0,4,f +8566,30000,8,6,f +8566,3001,0,2,f +8566,3001,1,2,f +8566,3001,7,2,f +8566,3002,1,2,f +8566,3002,0,2,f +8566,3003,0,2,f +8566,3003,7,2,f +8566,30034,0,4,f +8566,30038,42,2,f +8566,3004,14,6,f +8566,3007,7,2,f +8566,3008,0,1,f +8566,3009,7,5,f +8566,3010,0,3,f +8566,3020,1,1,f +8566,3020,7,3,f +8566,3021,0,4,f +8566,3021,14,1,f +8566,3022,1,2,f +8566,3022,0,2,f +8566,3023,4,1,f +8566,3023,0,1,f +8566,3029,7,1,f +8566,3032,0,1,f +8566,3034,0,2,f +8566,3034,7,4,f +8566,3035,0,1,f +8566,3038,0,2,f +8566,3039,0,7,f +8566,3039pb016,0,1,f +8566,3062b,7,12,f +8566,3069bp08,15,1,f +8566,3069bp52,15,1,f +8566,3069bp68,15,1,f +8566,3069bp80,15,1,f +8566,3069bpx33,0,3,f +8566,3149c01,0,2,f +8566,3176,1,2,f +8566,3298,7,2,f +8566,3298,0,2,f +8566,3298pb009,0,3,f +8566,3307,0,1,f +8566,3324c01,7,2,f +8566,3324c01,0,1,f +8566,3622,0,4,f +8566,3623,0,2,f +8566,3626bp68,14,2,f +8566,3660,7,4,f +8566,3660,0,4,f +8566,3710,7,2,f +8566,3710,0,4,f +8566,3794a,7,2,f +8566,3795,7,1,f +8566,3795,0,1,f +8566,3832,7,1,f +8566,3838,0,2,f +8566,3839b,0,5,f +8566,3933,0,1,f +8566,3933,7,1,f +8566,3934,7,1,f +8566,3934,0,1,f +8566,3935,0,1,f +8566,3935,7,1,f +8566,3936,0,1,f +8566,3936,7,1,f +8566,3937,0,2,f +8566,3938,7,2,f +8566,3941,1,5,f +8566,3957a,0,3,f +8566,4070,7,18,f +8566,4162,0,2,f +8566,4213,0,1,f +8566,4276b,7,3,f +8566,4315,0,1,f +8566,4460a,0,2,f +8566,4588,0,1,f +8566,4589,42,1,f +8566,4590,0,3,f +8566,4595,7,2,f +8566,4595,0,4,f +8566,4740,42,8,f +8566,4854,0,1,f +8566,4856a,7,1,f +8566,4859,0,1,f +8566,4871,0,2,f +8566,6019,0,4,f +8566,6112,0,2,f +8566,6118,0,12,f +8566,6141,42,18,f +8566,6141,36,4,f +8566,6152,42,1,f +8566,73590c02a,7,4,f +8566,73983,0,4,f +8566,970c11pb05b,0,2,f +8566,973pb0088c01,8,2,f +8569,2412b,71,1,f +8569,2420,72,2,f +8569,2555,72,2,f +8569,2877,14,2,f +8569,3020,14,2,f +8569,3020,72,1,f +8569,3022,14,3,f +8569,3022,72,2,f +8569,3023,0,4,f +8569,3024,36,2,f +8569,3034,71,1,f +8569,30374,71,1,f +8569,3069b,14,2,f +8569,3623,14,2,f +8569,3710,72,5,f +8569,3710,14,1,f +8569,3795,0,1,f +8569,4070,0,2,f +8569,4599a,71,2,f +8569,4600,71,2,f +8569,4623,14,2,f +8569,48336,71,2,f +8569,4865a,14,2,f +8569,54200,40,4,f +8569,54200,40,1,t +8569,6014b,15,4,f +8569,6015,0,4,f +8569,60470a,0,2,f +8569,6141,71,2,f +8569,6141,46,2,f +8569,6141,71,1,t +8569,6141,46,1,t +8570,2431,2,2,f +8570,2432,4,2,f +8570,30115,4,1,f +8570,30141,8,1,f +8570,30153,42,1,f +8570,30158,6,1,f +8570,30172,15,1,f +8570,30176,2,2,f +8570,30238,0,1,f +8570,30239,2,1,f +8570,3031,0,1,f +8570,3032,2,1,f +8570,3068bpx24,19,1,f +8570,3626bpr0098,14,1,f +8570,3659,8,2,f +8570,3710,7,2,f +8570,3794a,14,1,f +8570,3937,1,1,f +8570,3938,7,1,f +8570,4070,7,1,f +8570,4865a,7,3,f +8570,6231,0,2,f +8570,970c00,4,1,f +8570,973pa8c01,2,1,f +8570,x276,334,1,f +8572,10199,10,1,f +8572,11170,4,2,f +8572,11970,4,1,f +8572,15956,322,1,f +8572,15957,322,1,f +8572,15958,191,1,f +8572,15962,27,1,f +8572,15965,27,1,f +8572,16236,191,1,f +8572,2302,14,2,f +8572,2302,25,2,f +8572,3011,1,2,f +8572,3011,4,2,f +8572,3437,484,2,f +8572,3437,4,2,f +8572,3437,1,4,f +8572,3437,27,4,f +8572,3437,25,2,f +8572,3437,191,2,f +8572,3437,322,4,f +8572,3437,10,2,f +8572,4066,322,2,f +8572,4066,25,2,f +8572,40666,27,1,f +8572,40666,1,2,f +8572,40666,4,2,f +8572,40666,191,2,f +8572,47511pr0004,71,1,f +8572,58057pr02,0,1,f +8572,61649,1,1,f +8572,61649,14,1,f +8572,6474,10,2,f +8572,6510,25,1,f +8572,6510,10,1,f +8572,6510,4,1,f +8572,90265,15,2,f +8572,98223,10,1,f +8572,98252,27,2,f +8576,194cx1,2,1,f +8576,2343,47,3,f +8576,2348b,33,1,f +8576,2349a,0,1,f +8576,2362a,41,16,f +8576,2412b,383,10,f +8576,2412b,14,1,f +8576,2412b,15,2,f +8576,2412b,0,6,f +8576,2412b,4,1,f +8576,2420,0,4,f +8576,2431,4,4,f +8576,2431,2,4,f +8576,2431,1,2,f +8576,2431,0,7,f +8576,2431,15,4,f +8576,2431,14,4,f +8576,2432,15,3,f +8576,2432,4,2,f +8576,2436,0,2,f +8576,2441,0,1,f +8576,2441,4,1,f +8576,2456,0,1,f +8576,2458,4,1,f +8576,2465,15,4,f +8576,2465,0,1,f +8576,2465,1,4,f +8576,2584,0,1,f +8576,2585,7,1,f +8576,2642,8,1,f +8576,2780,0,13,f +8576,2868b,0,1,f +8576,2871a,0,2,f +8576,2873,15,2,f +8576,2875,15,12,f +8576,2877,4,5,f +8576,2877,1,24,f +8576,2877,2,4,f +8576,2877,14,4,f +8576,2878c01,0,8,f +8576,2919,46,1,f +8576,2920,0,6,f +8576,2921,15,12,f +8576,2921,14,2,f +8576,2921,1,2,f +8576,2921,4,2,f +8576,2921,0,2,f +8576,2972,0,2,f +8576,3001,1,6,f +8576,3001,4,1,f +8576,3001,0,2,f +8576,3003,4,1,f +8576,3004,14,1,f +8576,3004,4,4,f +8576,3004,15,1,f +8576,3004pc0,15,1,f +8576,3004px1,15,1,f +8576,3005,36,12,f +8576,3008,0,5,f +8576,30089,0,1,f +8576,3009,1,2,f +8576,3009,0,1,f +8576,3010,4,2,f +8576,3010,2,2,f +8576,3010,1,4,f +8576,3010,15,2,f +8576,3010px1,0,1,f +8576,30161,47,2,f +8576,30162,0,1,f +8576,3020,15,10,f +8576,3020,0,10,f +8576,3021,4,2,f +8576,3022,0,5,f +8576,3022,15,7,f +8576,3023,1,2,f +8576,3023,42,5,f +8576,3023,15,6,f +8576,3023,4,2,f +8576,3024,36,1,t +8576,3024,46,6,f +8576,3024,46,1,t +8576,3024,36,2,f +8576,3034,0,2,f +8576,3034,15,4,f +8576,3036,0,2,f +8576,30385,383,1,f +8576,3039p70,15,1,f +8576,3068bp80,15,1,f +8576,3069b,15,10,f +8576,3069bp02,7,1,f +8576,3069bp08,15,1,f +8576,3069bp80,15,2,f +8576,3069bpr0099,15,2,f +8576,3069bpr0100,2,2,f +8576,3070b,36,2,f +8576,3070b,46,14,f +8576,3070b,46,1,t +8576,3185,4,2,f +8576,32014,0,1,f +8576,32059,15,1,f +8576,32083,15,9,f +8576,32084,1,1,f +8576,32085,0,1,f +8576,32086,41,1,f +8576,3460,15,8,f +8576,3622,14,2,f +8576,3622,0,2,f +8576,3622px1,15,1,f +8576,3623,0,2,f +8576,3624,4,1,f +8576,3624,0,1,f +8576,3626bp02,14,2,f +8576,3626bp03,14,2,f +8576,3626bp04,14,2,f +8576,3626bp05,14,1,f +8576,3626bpx17,14,1,f +8576,3626bpx18,14,1,f +8576,3641,0,12,f +8576,3665,15,2,f +8576,3665,1,4,f +8576,3710,0,6,f +8576,3710,15,8,f +8576,3749,7,1,f +8576,3788,14,2,f +8576,3788,4,2,f +8576,3795,4,6,f +8576,3823,41,1,f +8576,3829c01,7,3,f +8576,3830,14,1,f +8576,3830,0,1,f +8576,3830,4,1,f +8576,3830,1,1,f +8576,3831,1,1,f +8576,3831,14,1,f +8576,3831,0,1,f +8576,3831,4,1,f +8576,3832,0,1,f +8576,3832,15,4,f +8576,3900,15,1,f +8576,3901,6,1,f +8576,3901,0,2,f +8576,4022,0,5,f +8576,4025,0,4,f +8576,4079,4,7,f +8576,4085c,0,2,f +8576,4085c,1,4,f +8576,4150p02,14,3,f +8576,4162,0,16,f +8576,4211,2,2,f +8576,4215b,41,25,f +8576,4286,1,14,f +8576,4286,4,2,f +8576,4449,15,1,f +8576,4449,7,1,f +8576,4449,6,1,f +8576,4449,0,1,f +8576,4477,15,2,f +8576,4485,15,1,f +8576,4485,4,2,f +8576,4600,7,2,f +8576,4624,15,12,f +8576,4625,15,2,f +8576,4625,0,3,f +8576,4864b,41,4,f +8576,4864bpx1,15,2,f +8576,4865a,4,4,f +8576,4865a,0,4,f +8576,5306c01,8,1,f +8576,55295,8,1,f +8576,55296,8,1,f +8576,55297,8,1,f +8576,55298,8,1,f +8576,55299,8,1,f +8576,55300,8,1,f +8576,6019,15,2,f +8576,6035,15,1,f +8576,6093,6,1,f +8576,6111,0,4,f +8576,6141,36,1,f +8576,6141,34,1,f +8576,6141,36,1,t +8576,6141,34,1,t +8576,6190,15,1,f +8576,6541,1,16,f +8576,6636,15,4,f +8576,70358,0,1,f +8576,70931,0,1,f +8576,73092,0,6,f +8576,74746,8,2,f +8576,74747,8,16,f +8576,75535,15,3,f +8576,75535,4,3,f +8576,970c00,8,3,f +8576,970c00,15,1,f +8576,970c00,4,1,f +8576,970c00,1,1,f +8576,970c00,0,1,f +8576,970c00,2,2,f +8576,973p70c01,6,1,f +8576,973p83c01,14,1,f +8576,973p8ac01,0,1,f +8576,973px28c01,15,1,f +8576,973px2c01,1,1,f +8576,973px30c01,1,1,f +8576,973px31c01,7,1,f +8576,973px32c01,1,1,f +8576,973px8c01,1,1,f +8584,3020,462,1,f +8584,3626bpr0233,14,1,f +8584,43702pr0001,25,1,f +8584,973bpb177c01,19,1,f +8584,x494cx1,0,1,f +8586,3069bpr0100,2,1,f +8586,33078,4,1,f +8586,3626bp02,14,1,f +8586,4530,6,1,f +8586,970c00,8,1,f +8586,973px3c01,15,1,f +8588,10178pr0003,57,1,f +8588,10187,1000,1,t +8588,10187,1000,2,f +8588,10302pr0001,70,1,f +8588,2339,308,2,f +8588,2412b,179,5,f +8588,2417,288,2,f +8588,2419,72,1,f +8588,2420,2,3,f +8588,2423,326,5,f +8588,2540,72,2,f +8588,2817,0,2,f +8588,3001,2,2,f +8588,3004,19,1,f +8588,3005,182,4,f +8588,30093,288,2,f +8588,30132,72,1,t +8588,30132,72,4,f +8588,30136,308,13,f +8588,30137,71,1,f +8588,30172,15,1,f +8588,3020,72,2,f +8588,3021,19,2,f +8588,3021,70,2,f +8588,3022,71,3,f +8588,3023,19,2,f +8588,3023,70,9,f +8588,3031,70,1,f +8588,3033,288,1,f +8588,3034,70,1,f +8588,3040b,308,20,f +8588,3062b,70,10,f +8588,3069b,2,5,f +8588,3176,4,1,f +8588,33320,179,1,f +8588,3622,72,2,f +8588,3623,0,6,f +8588,3626cpr0978,14,1,f +8588,3660,0,2,f +8588,3665,0,11,f +8588,3673,71,1,t +8588,3673,71,4,f +8588,3678b,70,2,f +8588,3710,70,1,f +8588,3747b,70,1,f +8588,3749,19,2,f +8588,3794a,320,3,f +8588,3794a,71,1,f +8588,3795,0,1,f +8588,3829c01,15,1,f +8588,3832,72,1,f +8588,3941,70,7,f +8588,4070,72,4,f +8588,4085c,0,6,f +8588,42003,0,2,f +8588,4274,1,1,t +8588,4274,1,4,f +8588,4599b,0,4,f +8588,47720,0,2,f +8588,4865a,288,2,f +8588,4865a,47,1,f +8588,50946,71,1,f +8588,51739,72,1,f +8588,53451,15,1,t +8588,53451,15,2,f +8588,54200,19,1,t +8588,54200,19,4,f +8588,56897,0,2,f +8588,56902,71,4,f +8588,60475b,71,2,f +8588,6091,19,2,f +8588,61254,0,2,f +8588,6141,19,1,t +8588,6141,19,7,f +8588,6141,47,4,f +8588,6141,36,2,f +8588,6141,47,1,t +8588,6141,36,1,t +8588,64225,19,1,f +8588,64644,308,1,f +8588,64644,297,1,f +8588,6541,0,6,f +8588,85975,297,1,f +8588,87079,0,1,f +8588,92946,19,2,f +8588,93160,15,2,f +8588,93274,0,1,f +8588,970c00pr0333,28,1,f +8588,970c00pr0362,1,1,f +8588,973pr2060c01,28,1,f +8588,973pr2101c01,4,1,f +8588,98283,28,3,f +8588,99781,71,1,f +8588,99809,308,1,f +8589,3004,1,2,f +8589,3020,15,1,f +8589,3068bpr0137,15,1,f +8589,3069bpr0030,15,1,t +8589,3069bpr0030,15,1,f +8589,3937,72,1,f +8589,3938,15,1,f +8589,4079,1,1,f +8591,2431,4,4,f +8591,2432,1,2,f +8591,2432,14,7,f +8591,2447,40,1,t +8591,2447,40,1,f +8591,2516,14,1,f +8591,2654,71,1,f +8591,2780,0,1,f +8591,2780,0,1,t +8591,2825,0,1,f +8591,2877,14,3,f +8591,298c02,4,1,f +8591,298c02,4,1,t +8591,3009,14,4,f +8591,3020,4,2,f +8591,3020,14,3,f +8591,3021,72,4,f +8591,3022,4,2,f +8591,3023,72,1,f +8591,3023,14,4,f +8591,3023,33,4,f +8591,3039,14,2,f +8591,30414,1,1,f +8591,3062b,4,2,f +8591,3062b,1,1,f +8591,30663,0,1,f +8591,3069b,33,4,f +8591,3070bpr0007,71,1,f +8591,3070bpr0007,71,1,t +8591,32000,71,1,f +8591,32013,0,1,f +8591,32316,71,1,f +8591,3626bpr0282,14,1,f +8591,3665,14,6,f +8591,3666,14,3,f +8591,3666,72,3,f +8591,3684,14,2,f +8591,3710,1,1,f +8591,3794a,4,2,f +8591,3795,14,1,f +8591,3795,72,1,f +8591,3795,4,1,f +8591,3829c01,1,1,f +8591,3834,15,1,f +8591,3835,0,1,f +8591,3838,14,1,f +8591,3962b,0,1,f +8591,4070,14,2,f +8591,4085c,4,2,f +8591,4175,0,1,f +8591,4176,40,1,f +8591,43093,1,2,f +8591,4477,4,2,f +8591,4488,0,4,f +8591,4522,0,1,f +8591,4532,14,2,f +8591,4533,72,2,f +8591,4589,72,2,f +8591,4589,14,1,f +8591,4599a,4,1,t +8591,4599a,4,1,f +8591,48336,0,2,f +8591,4864b,40,2,f +8591,50745,72,4,f +8591,52031,14,1,f +8591,52037,72,1,f +8591,54200,46,2,f +8591,54200,36,2,f +8591,54200,33,6,f +8591,6014b,14,4,f +8591,6015,0,4,f +8591,6019,71,3,f +8591,6141,1,1,t +8591,6141,1,1,f +8591,6158,72,1,f +8591,6636,14,2,f +8591,970c00,0,1,f +8591,973pr1187c01,0,1,f +8594,702,14,5,f +8594,702,15,10,f +8594,702,4,5,f +8594,702,1,5,f +8594,702,0,5,f +8595,15955,15,1,f +8595,3626cpr1303,14,1,f +8595,88646,0,1,f +8595,970c00pr0596,0,1,f +8595,973pr0511c01,15,1,f +8595,98382pr0003,0,1,f +8596,43362c01,7,1,f +8598,45568,0,1,f +8598,45568,27,1,f +8598,45571,0,1,f +8598,45573,72,5,f +8598,45574,71,5,f +8598,45575,71,42,f +8598,45575,71,4,t +8598,45783,27,1,f +8598,45784,148,1,f +8598,45784,27,1,f +8598,45785,27,1,f +8598,45786,148,1,f +8598,45786,27,1,f +8598,45799,71,4,f +8598,45799,71,1,t +8598,45803,27,1,f +8598,45805c01,0,1,f +8598,47324,14,4,f +8598,47349c04,148,4,f +8598,47371,148,1,f +8598,47385c01,0,1,f +8598,47871c01,0,1,f +8598,48912c01,72,1,f +8598,49815,27,1,f +8598,49816,27,1,f +8598,49821,27,1,f +8598,49830,71,7,f +8598,5282,0,1,f +8598,85544,10,2,f +8598,8675stk01,9999,1,t +8598,bat9volt,89,1,f +8598,bb236,0,1,f +8598,bb90,89,1,f +8598,rb00178,0,2,f +8598,x1220,89,1,f +8600,3004,14,4,f +8600,3022,14,1,f +8600,3023,14,16,f +8600,3023,7,2,f +8600,3024,46,2,f +8600,3040b,14,2,f +8600,3068b,7,1,f +8600,3482,7,5,f +8600,3483,0,5,f +8600,3647,7,3,f +8600,3648a,7,1,f +8600,3650a,7,1,f +8600,3665,14,2,f +8600,3666,14,4,f +8600,3673,7,2,t +8600,3673,7,4,f +8600,3700,14,8,f +8600,3702,14,8,f +8600,3705,0,2,f +8600,3706,0,2,f +8600,3707,0,1,f +8600,3709,14,2,f +8600,3710,7,3,f +8600,3710,14,4,f +8600,3713,7,1,t +8600,3713,7,4,f +8600,3743,7,1,f +8600,3749,7,7,f +8600,3749,7,1,t +8600,3795,14,4,f +8600,3821,14,1,f +8600,3822,14,1,f +8600,3894,14,2,f +8600,3895,0,2,f +8600,4070,14,2,f +8600,4176,47,1,f +8600,4261,7,2,f +8600,4262,7,3,f +8600,4459,0,4,f +8600,6141,36,1,t +8600,6141,36,2,f +8602,2543,4,1,f +8602,2877,15,2,f +8602,3005,15,2,f +8602,3020,72,1,f +8602,3023,71,1,f +8602,3040b,15,4,f +8602,3062b,70,2,f +8602,3626bpr0314,14,1,f +8602,3710,72,1,f +8602,3839b,72,1,f +8602,4081b,4,1,f +8602,4081b,1,1,f +8602,4523,70,1,f +8602,54200,1,1,f +8602,54200,4,1,t +8602,54200,4,1,f +8602,54200,1,1,t +8602,6132,15,1,f +8602,6141,182,1,t +8602,6141,182,2,f +8602,970c00,4,1,f +8602,973c31,4,1,f +8603,10197,72,2,f +8603,10288,308,5,f +8603,10928,72,2,f +8603,11478,0,4,f +8603,11946,4,2,f +8603,11947,4,2,f +8603,11954,0,4,f +8603,14149,4,28,f +8603,2654,0,2,f +8603,2736,71,2,f +8603,2780,0,170,f +8603,32002,19,1,t +8603,32002,19,6,f +8603,32005a,72,2,f +8603,32009,15,2,f +8603,32009,71,4,f +8603,32013,0,6,f +8603,32014,0,2,f +8603,32015,0,3,f +8603,32016,0,4,f +8603,32034,0,5,f +8603,32039,0,22,f +8603,32062,4,22,f +8603,32073,71,8,f +8603,32123b,14,16,f +8603,32123b,14,1,t +8603,32138,0,4,f +8603,32140,4,4,f +8603,32140,71,8,f +8603,32184,0,4,f +8603,32198,19,1,f +8603,32269,0,1,f +8603,32270,0,2,f +8603,32278,15,13,f +8603,32316,71,5,f +8603,32494,71,2,f +8603,32523,4,2,f +8603,32523,15,1,f +8603,32523,71,10,f +8603,32524,71,16,f +8603,32525,71,6,f +8603,32526,71,6,f +8603,32556,19,14,f +8603,32557,71,4,f +8603,33299a,0,1,f +8603,3648b,72,3,f +8603,3649,71,2,f +8603,3705,0,5,f +8603,3706,0,1,f +8603,3707,0,1,f +8603,3708,0,1,f +8603,3713,71,1,t +8603,3713,71,45,f +8603,3737,0,1,f +8603,3749,19,6,f +8603,3941,41,2,f +8603,3941,42,2,f +8603,4032a,0,4,f +8603,40490,71,7,f +8603,41669,4,2,f +8603,41669,15,1,f +8603,41677,71,1,f +8603,41677,0,2,f +8603,41897,0,2,f +8603,42003,72,4,f +8603,42610,71,7,f +8603,43093,1,57,f +8603,43093,1,1,t +8603,43857,71,3,f +8603,44294,71,2,f +8603,44309,0,2,f +8603,44771,0,4,f +8603,44772,71,4,f +8603,4519,71,12,f +8603,4589,36,4,f +8603,4716,71,1,f +8603,48989,71,10,f +8603,50163,71,1,f +8603,55013,72,6,f +8603,55615,71,4,f +8603,55982,71,5,f +8603,56145,71,3,f +8603,56902,71,1,f +8603,56908,71,2,f +8603,57519,0,2,f +8603,57539,179,2,f +8603,59426,72,4,f +8603,59443,4,4,f +8603,60483,0,6,f +8603,60484,0,2,f +8603,60485,71,5,f +8603,61903,71,2,f +8603,62462,71,2,f +8603,62821,72,1,f +8603,63869,71,2,f +8603,64178,71,6,f +8603,64179,71,9,f +8603,64391,0,2,f +8603,64393,0,1,f +8603,64394,0,1,f +8603,64680,0,1,f +8603,64681,0,1,f +8603,64683,0,2,f +8603,64781,0,2,f +8603,6536,71,4,f +8603,6538b,19,1,f +8603,6539,4,1,f +8603,6542b,72,2,f +8603,6553,72,2,f +8603,6558,1,33,f +8603,6575,72,2,f +8603,6587,28,16,f +8603,6589,19,1,t +8603,6589,19,3,f +8603,6628,0,8,f +8603,6629,0,2,f +8603,6632,71,10,f +8603,6641,4,1,f +8603,78c19,41,4,f +8603,85543,15,2,f +8603,85544,4,2,f +8603,85545,1,2,f +8603,85546,14,2,f +8603,87080,0,1,f +8603,87082,71,2,f +8603,87083,72,8,f +8603,87086,0,1,f +8603,87407,71,2,f +8603,87408,0,1,f +8603,88323,0,5,f +8603,89201,0,2,f +8603,92906,72,2,f +8603,92908,71,2,f +8603,92909,72,2,f +8603,92910,71,1,f +8603,92911,72,1,f +8603,98138,36,1,t +8603,98138,36,6,f +8603,98578,33,2,f +8603,98585,41,2,f +8603,98989,71,3,f +8603,99008,19,2,f +8603,99773,71,5,f +8606,11602pr0001a,0,1,f +8606,2877,19,4,f +8606,3020,322,1,f +8606,3023,30,1,f +8606,3031,26,1,f +8606,30357,19,1,f +8606,3045,322,1,f +8606,3062b,19,2,f +8606,32474,27,1,f +8606,33291,5,2,f +8606,3852b,191,1,f +8606,87580,26,2,f +8607,3001,14,2,f +8607,3003,14,2,f +8607,3004,4,1,f +8607,3010,15,2,f +8607,3020,14,1,f +8607,3021,1,4,f +8607,3021,4,1,f +8607,3034,1,2,f +8607,3039,4,1,f +8607,3039,33,1,f +8607,3298pb002,4,1,f +8607,3641,0,2,f +8607,3747b,4,2,f +8607,4600,0,1,f +8607,4617b,0,1,f +8607,4624,14,2,f +8607,6141,36,1,f +8607,6141,34,1,f +8607,6232,14,1,f +8609,2780,0,5,f +8609,32015,8,2,f +8609,32016,25,4,f +8609,32039,8,2,f +8609,32062,0,7,f +8609,32123b,7,5,f +8609,32138,0,1,f +8609,32140,8,2,f +8609,32166,4,2,f +8609,32174,25,2,f +8609,32177,8,2,f +8609,32271,8,2,f +8609,32291,8,2,f +8609,32310,8,1,f +8609,32316,8,2,f +8609,32348,8,2,f +8609,32474,0,4,f +8609,32475,8,1,f +8609,32476,25,2,f +8609,32506,25,2,f +8609,32524,8,2,f +8609,32527,4,1,f +8609,32528,4,1,f +8609,32551,4,1,f +8609,32553,8,1,f +8609,32556,7,4,f +8609,32566,25,1,f +8609,3647,8,2,f +8609,3648b,8,1,f +8609,3673,7,5,f +8609,3705,0,4,f +8609,3706,0,2,f +8609,3707,0,1,f +8609,3713,7,5,f +8609,3749,7,5,f +8609,41752,8,1,f +8609,4274,7,3,f +8609,4519,0,2,f +8609,4716,0,1,f +8609,6141,36,3,f +8609,6536,8,4,f +8609,6632,0,2,f +8609,71509,0,4,f +8609,75c03,4,1,f +8609,75c03,4,1,t +8609,78c02,179,3,f +8613,2335px16,8,4,f +8613,2476a,0,4,f +8613,2540,19,6,f +8613,298c02,71,2,f +8613,3001,19,1,f +8613,3003,6,1,f +8613,3020,8,2,f +8613,3020,15,2,f +8613,3020,19,5,f +8613,3022,0,6,f +8613,3023,71,3,f +8613,3034,15,1,f +8613,3034,8,3,f +8613,30374,71,1,f +8613,30377,71,2,f +8613,30389b,71,1,f +8613,3039,19,8,f +8613,3048c,6,4,f +8613,30554a,71,1,f +8613,3062b,57,1,f +8613,32000,15,6,f +8613,3679,7,1,f +8613,3680,0,1,f +8613,3700,8,4,f +8613,3707,0,1,f +8613,3710,6,4,f +8613,3795,71,2,f +8613,3941,71,2,f +8613,3942c,71,2,f +8613,3960,47,1,f +8613,3960,71,1,f +8613,4032a,6,3,f +8613,4081b,6,1,f +8613,40902,8,1,f +8613,4095,0,1,f +8613,41769,484,6,f +8613,41770,484,6,f +8613,4274,1,15,f +8613,4349,0,3,f +8613,43710,8,2,f +8613,43711,8,2,f +8613,43712,6,4,f +8613,43898,19,1,f +8613,44358,8,2,f +8613,44359,484,4,f +8613,44375a,8,2,f +8613,44375px1,71,1,f +8613,45301px1,6,2,f +8613,4589,19,1,f +8613,4740,57,1,f +8613,6104,484,4,f +8613,6141,57,6,f +8613,6636,8,2,f +8618,51796,0,1,f +8618,51802,4,1,f +8618,51808,71,1,f +8620,2452,0,2,f +8620,2654,7,2,f +8620,3021,4,1,f +8620,3022,0,1,f +8620,3024,46,2,f +8620,3298,4,1,f +8620,3626bp7e,14,1,f +8620,3795,15,1,f +8620,3829c01,4,1,f +8620,3962b,0,1,f +8620,4079,4,1,f +8620,4081b,7,2,f +8620,4485,1,1,f +8620,4865a,41,1,f +8620,6117,7,2,f +8620,6120,7,2,f +8620,970c00,1,1,f +8620,973p70c01,6,1,f +8622,3037,4,12,f +8622,3039,4,6,f +8622,3041,4,3,f +8622,3043,4,2,f +8626,164c01,4,1,f +8626,185c01,4,3,f +8626,3001a,1,2,f +8626,3003,15,2,f +8626,3003,1,3,f +8626,3004,15,11,f +8626,3004,47,4,f +8626,3005,47,8,f +8626,3005,15,10,f +8626,3008,15,4,f +8626,3010,15,1,f +8626,3022,1,1,f +8626,3031,0,1,f +8626,3032,15,1,f +8626,3032,0,2,f +8626,3038,47,2,f +8626,3040a,15,2,f +8626,3062a,36,1,f +8626,3062a,0,4,f +8626,3062a,34,1,f +8626,3063b,47,1,f +8626,316.1stk01,9999,1,t +8626,3633,4,3,f +8626,3633,15,5,f +8626,3651,7,8,f +8626,3660,15,2,f +8626,3666,15,1,f +8626,3666,0,1,f +8626,3679,7,9,f +8626,3680,15,4,f +8626,3680,0,4,f +8626,3680,7,1,f +8626,3684,1,1,f +8626,3705,0,8,f +8626,3708,0,1,f +8626,3709,7,1,f +8626,3713,7,21,f +8626,3795,0,2,f +8626,709,0,1,f +8626,997c01,4,1,f +8626,x149,4,2,f +8627,11213,1,6,f +8627,11289,41,1,f +8627,11458,72,2,f +8627,11477,0,2,f +8627,11477,272,6,f +8627,11833,272,1,f +8627,14704,71,6,f +8627,14719,71,2,f +8627,15391,15,1,f +8627,15392,72,1,f +8627,15400,72,1,f +8627,15411,0,4,f +8627,15535,4,1,f +8627,15712,0,6,f +8627,18675pr0004a,52,1,f +8627,18731c01pr0001,52,1,f +8627,18827pr0002,41,1,f +8627,18948,15,2,f +8627,19020,182,1,f +8627,19023c01,15,1,f +8627,19179,148,3,f +8627,2412b,85,11,f +8627,2412b,179,2,f +8627,2431,15,1,f +8627,2431,71,2,f +8627,2444,15,1,f +8627,2453b,72,2,f +8627,2508,0,2,f +8627,2540,72,2,f +8627,2569,0,1,f +8627,2654,72,5,f +8627,2654,47,7,f +8627,2730,0,4,f +8627,2736,71,1,f +8627,2780,0,19,f +8627,2877,72,5,f +8627,298c02,0,1,f +8627,3001,28,2,f +8627,3005,52,6,f +8627,30088,0,1,f +8627,30099,272,4,f +8627,30151a,47,2,f +8627,30153,52,1,f +8627,30165,72,8,f +8627,3020,19,1,f +8627,3021,72,1,f +8627,30229,72,1,f +8627,3023,47,2,f +8627,3023,272,2,f +8627,3023,41,2,f +8627,30236,15,1,f +8627,3030,72,2,f +8627,3036,72,3,f +8627,30361,272,2,f +8627,30367c,27,1,f +8627,30374,52,9,f +8627,30386,0,8,f +8627,3039,272,2,f +8627,3040b,28,12,f +8627,30562,71,2,f +8627,3062b,57,2,f +8627,3062b,0,1,f +8627,30663,0,1,f +8627,3068b,272,9,f +8627,3068bpr0246b,15,1,f +8627,3069b,28,4,f +8627,3070bpr0001,34,1,f +8627,32039,0,1,f +8627,32054,4,1,f +8627,32054,0,2,f +8627,32062,4,13,f +8627,32064a,71,6,f +8627,32073,71,1,f +8627,32123b,71,2,f +8627,32126,0,1,f +8627,32138,71,8,f +8627,32324,71,1,f +8627,32523,15,1,f +8627,32525,72,1,f +8627,32555,0,4,f +8627,33299a,71,2,f +8627,3626c,1000,1,f +8627,3626cpr1508,14,1,f +8627,3626cpr1631,14,1,f +8627,3626cpr1711,71,1,f +8627,3660,272,8,f +8627,3666,72,1,f +8627,3700,72,4,f +8627,3700,0,2,f +8627,3710,272,3,f +8627,3710,322,2,f +8627,3713,4,1,f +8627,3747a,71,2,f +8627,3835,0,1,f +8627,3894,72,1,f +8627,3895,1,4,f +8627,3937,71,1,f +8627,3941,27,1,f +8627,3942c,71,1,f +8627,4032a,85,9,f +8627,4032a,71,2,f +8627,4070,0,1,f +8627,4150,72,2,f +8627,4151b,0,1,f +8627,41532,0,1,f +8627,4162,71,3,f +8627,41678,72,1,f +8627,4175,72,2,f +8627,42446,71,1,f +8627,4274,71,2,f +8627,4286,0,2,f +8627,43093,1,7,f +8627,44294,71,1,f +8627,44676,379,1,f +8627,4510,71,1,f +8627,4733,0,1,f +8627,4740,0,1,f +8627,4740,41,1,f +8627,47406,0,1,f +8627,4740pr0004b,52,1,f +8627,4742,0,1,f +8627,48729b,72,2,f +8627,50231,272,1,f +8627,55013,72,2,f +8627,56823c50,0,1,f +8627,57539pat0004,47,2,f +8627,59349,71,2,f +8627,59349,52,1,f +8627,59443,14,5,f +8627,59900,36,1,f +8627,6003,72,4,f +8627,6019,0,1,f +8627,60219,0,1,f +8627,60471,71,1,f +8627,60474,72,1,f +8627,60477,272,4,f +8627,60478,72,1,f +8627,6081,15,1,f +8627,6091,72,2,f +8627,6112,72,1,f +8627,61252,72,1,f +8627,61252,15,2,f +8627,6134,0,1,f +8627,6141,182,4,f +8627,6141,36,1,f +8627,6141,46,1,f +8627,61485,0,1,f +8627,62604pat0002,179,1,f +8627,62605pat02,179,1,f +8627,62697,297,1,f +8627,62810,71,1,f +8627,63965,0,1,f +8627,64448,72,2,f +8627,64449,72,4,f +8627,6541,72,6,f +8627,6583,0,2,f +8627,6587,28,2,f +8627,6628,0,3,f +8627,6632,72,2,f +8627,75937,179,3,f +8627,87081,0,1,f +8627,87580,85,6,f +8627,87580,15,1,f +8627,88072,72,1,f +8627,90194,0,1,f +8627,92099,72,2,f +8627,92220,148,3,f +8627,92946,72,2,f +8627,92947,71,2,f +8627,94448pat0003,52,2,f +8627,95199,15,1,f +8627,96874,25,1,t +8627,970c00,379,1,f +8627,970c00pr0734,0,1,f +8627,970c00pr0820,0,1,f +8627,970c00pr0821,0,1,f +8627,973pr2758c01,15,1,f +8627,973pr2781c01,0,1,f +8627,973pr2938c01,0,1,f +8627,973pr3069c01,71,1,f +8627,98138,52,5,f +8627,98138,41,4,f +8627,98313,148,17,f +8627,98564,148,2,f +8627,99207,0,3,f +8627,99780,0,1,f +8627,99781,71,3,f +8628,2343,297,2,f +8628,2420,71,2,f +8628,2445,70,5,f +8628,2540,19,2,f +8628,2587,80,1,f +8628,3001,70,2,f +8628,3002,72,1,f +8628,3003,70,3,f +8628,30048,0,1,f +8628,3005,71,1,f +8628,30132,72,1,t +8628,30132,72,1,f +8628,30136,72,2,f +8628,30153,34,2,f +8628,30169,0,2,f +8628,30176,2,4,f +8628,3023,0,1,f +8628,3023,71,7,f +8628,30238,0,1,f +8628,3024,0,2,f +8628,3024,46,1,f +8628,30240,72,1,f +8628,3032,72,3,f +8628,3033,71,1,f +8628,3035,70,1,f +8628,3037,72,2,f +8628,30374,70,1,f +8628,30377,15,2,f +8628,30377,15,1,t +8628,3039,72,4,f +8628,3040b,72,12,f +8628,3044b,72,3,f +8628,3062b,71,2,f +8628,3068b,72,3,f +8628,3069b,72,6,f +8628,32000,0,4,f +8628,32039,0,1,f +8628,32064b,2,2,f +8628,3455,72,1,f +8628,3626bpr0190,15,1,f +8628,3626bpr0515b,78,1,f +8628,3626bpr0589,92,2,f +8628,3626bpr0593,78,1,f +8628,3647,72,2,f +8628,3666,71,1,f +8628,3673,71,2,f +8628,3673,71,1,t +8628,37,72,2,f +8628,3700,72,2,f +8628,3701,72,2,f +8628,3710,19,6,f +8628,3749,19,1,f +8628,3794b,0,3,f +8628,3837,72,1,f +8628,40233,0,2,f +8628,4070,72,4,f +8628,4460b,72,6,f +8628,4490,72,2,f +8628,4519,71,2,f +8628,4599b,0,1,f +8628,4738a,297,1,f +8628,4739a,297,1,f +8628,48336,70,2,f +8628,4865a,71,1,f +8628,50859a,0,1,f +8628,50861,0,2,f +8628,50862,71,2,f +8628,54200,72,10,f +8628,54200,72,1,t +8628,60115,15,1,f +8628,6019,0,2,f +8628,60470a,0,2,f +8628,60474,71,1,f +8628,6117,72,1,f +8628,6126a,57,2,f +8628,6141,71,5,f +8628,6141,71,1,t +8628,61506,70,1,f +8628,61975,70,1,f +8628,61976,70,1,f +8628,62113,0,2,f +8628,62363,28,1,f +8628,6266,15,2,f +8628,62810,308,1,f +8628,63859,47,1,f +8628,85983pr01,0,1,f +8628,970c00,0,2,f +8628,970c00,272,1,f +8628,973pr1370c01,308,1,f +8628,973pr1392c01,0,1,f +8628,973pr1497c01,308,2,f +8632,2439,72,1,f +8632,2446,1,1,f +8632,2446px3,4,1,f +8632,2447,41,2,f +8632,2447,0,2,t +8632,2447,41,2,t +8632,2495,4,1,f +8632,2496,0,3,f +8632,2540,15,1,f +8632,30089,0,1,f +8632,30162,72,1,f +8632,30187c06,1,2,f +8632,30187c06,15,2,f +8632,30323,2,1,f +8632,3062b,4,2,f +8632,3069b,46,4,f +8632,3624,4,1,f +8632,3626bp02,14,2,f +8632,3626bpb0043,14,1,f +8632,3626bpb0049,14,1,f +8632,3626bpb0051,14,1,f +8632,3626bpr0001,14,5,f +8632,3626bpr0216,14,1,f +8632,3626bpr0279,14,1,f +8632,3834,15,2,f +8632,3835,71,1,f +8632,3836,70,2,f +8632,3837,72,2,f +8632,3841,72,1,f +8632,3900,15,4,f +8632,3901,70,2,f +8632,3942c,25,2,f +8632,3942c,15,2,f +8632,3962b,0,3,f +8632,3962b,72,1,f +8632,4006,0,1,f +8632,40251,0,1,f +8632,41334,72,2,f +8632,4150p02,14,1,f +8632,42511,25,1,f +8632,4349,0,1,f +8632,4449,0,1,f +8632,4449,71,1,f +8632,4449,70,1,f +8632,4449,15,2,f +8632,4485,0,1,f +8632,4522,0,1,f +8632,4528,0,1,f +8632,4530,0,1,f +8632,4599a,4,2,f +8632,4714,15,1,f +8632,4715,15,2,f +8632,4719,4,2,f +8632,4719,0,1,f +8632,4740,72,1,f +8632,55295,72,1,f +8632,55296,72,1,f +8632,55297,72,1,f +8632,55298,72,1,f +8632,55299,72,1,f +8632,55300,72,1,f +8632,6141,46,1,t +8632,6141,36,1,t +8632,6141,33,1,t +8632,6141,4,1,f +8632,6141,33,4,f +8632,6141,36,7,f +8632,6141,4,1,t +8632,6254,15,1,f +8632,92851,47,6,f +8632,970c00,1,3,f +8632,970c00,73,1,f +8632,970c00,4,1,f +8632,970c00,71,1,f +8632,970c00,0,2,f +8632,970c00,15,1,f +8632,970c00,72,1,f +8632,970c00pb009,0,1,f +8632,970c00pb010,1,1,f +8632,973pb0055c01,15,1,f +8632,973pb0057c01,4,1,f +8632,973pb0058c01,320,1,f +8632,973pb0099c01,0,2,f +8632,973pb0233c01,4,1,f +8632,973pr1208c01,72,1,f +8632,973pr1239c01,15,2,f +8632,973px130c01,15,2,f +8632,973px18c01,15,2,f +8633,2352,14,1,f +8633,2574,4,1,f +8633,3002,14,2,f +8633,3185,14,1,f +8633,3483,0,4,f +8633,4744,1,1,f +8633,4744pr0002,4,1,f +8633,6248,4,2,f +8633,6249,4,1,f +8634,23306,383,1,f +8634,2335,8,2,f +8634,2357,0,2,f +8634,2412b,25,1,t +8634,2412b,8,1,f +8634,2412b,25,7,f +8634,2420,8,4,f +8634,2431,8,4,f +8634,2432,0,1,f +8634,2436,19,2,f +8634,2437,40,1,f +8634,2445,7,2,f +8634,2447,6,1,f +8634,2456,7,1,f +8634,2524,15,1,f +8634,2540,25,2,f +8634,2877,8,6,f +8634,3001,7,2,f +8634,3002,8,4,f +8634,3003,7,4,f +8634,3004,0,2,f +8634,3010,7,1,f +8634,30165,8,2,f +8634,30171,15,1,f +8634,3020,7,1,f +8634,3020,8,2,f +8634,3021,7,2,f +8634,3022,19,2,f +8634,3022,7,1,f +8634,3022,8,4,f +8634,3023,1,2,f +8634,3023,0,4,f +8634,3024,0,4,f +8634,3024,7,2,f +8634,3027,19,1,f +8634,30304,8,1,f +8634,3031,15,1,f +8634,3032,7,2,f +8634,30355,7,1,f +8634,30356,7,1,f +8634,30359a,8,2,f +8634,30363,8,4,f +8634,30363ps1,7,1,f +8634,30364,8,6,f +8634,30365,7,4,f +8634,30370ps2,15,1,f +8634,30370ps3,15,1,f +8634,30372pr0001,40,1,f +8634,30374,41,1,f +8634,3038,7,2,f +8634,3039,8,3,f +8634,3039,7,1,f +8634,3039ps2,8,2,f +8634,3040b,7,6,f +8634,3045,7,2,f +8634,3062b,8,6,f +8634,3068b,0,1,f +8634,3068bpr0071,19,2,f +8634,3069b,7,3,f +8634,3069bpr0086,7,2,f +8634,3070b,19,1,t +8634,3070b,19,2,f +8634,3298,0,1,f +8634,3298,7,2,f +8634,3622,7,2,f +8634,3623,7,2,f +8634,3623,19,2,f +8634,3626bp7a,14,1,f +8634,3626bpr0001,14,1,f +8634,3626bps3,14,1,f +8634,3660,7,2,f +8634,3666,19,1,f +8634,3679,7,2,f +8634,3680,0,2,f +8634,3710,8,1,f +8634,3710,7,2,f +8634,3794a,8,12,f +8634,3937,15,1,f +8634,3937,8,2,f +8634,3938,7,2,f +8634,3956,7,1,f +8634,4150,15,1,f +8634,4162,7,2,f +8634,4285b,15,1,f +8634,4286,25,2,f +8634,4286,8,2,f +8634,4287,7,2,f +8634,4360,0,1,f +8634,4460a,7,2,f +8634,4595,0,1,f +8634,4740,8,1,f +8634,4864b,7,4,f +8634,4865a,7,4,f +8634,6134,0,1,f +8634,6141,8,1,t +8634,6141,8,4,f +8634,6231,7,4,f +8634,63965,15,1,f +8634,970x001,7,1,f +8634,970x027,25,2,f +8634,973pr1301c01,25,2,f +8634,973px84c01,19,1,f +8635,2412b,15,5,f +8635,3002,15,1,f +8635,3005,15,1,f +8635,3010,15,2,f +8635,3020,15,2,f +8635,3021,15,5,f +8635,3022,15,3,f +8635,3023,15,8,f +8635,3023,4,1,f +8635,3024,0,1,f +8635,3024,15,5,f +8635,30385,383,1,f +8635,3460,15,1,f +8635,3623,15,13,f +8635,3666,15,4,f +8635,3700,15,2,f +8635,3710,15,2,f +8635,3794a,15,4,f +8635,3832,15,2,f +8635,4274,7,2,f +8635,4275b,15,2,f +8635,4276b,15,4,f +8635,6091,15,1,f +8637,2412b,14,2,f +8637,2431,4,1,f +8637,2441,4,1,f +8637,2446,0,1,f +8637,2447,41,1,t +8637,2447,41,1,f +8637,2452,4,1,f +8637,3005,4,2,f +8637,3020,4,1,f +8637,3021,4,1,f +8637,3022,4,1,f +8637,3023,15,1,f +8637,3023,0,1,f +8637,3040b,15,1,f +8637,3070b,4,1,f +8637,3070b,4,1,t +8637,3298p56,4,1,f +8637,3623,15,2,f +8637,3626apr0001,14,1,f +8637,3641,0,4,f +8637,3794a,4,2,f +8637,3794a,15,2,f +8637,3829c01,15,1,f +8637,4276b,4,1,f +8637,4595,0,1,f +8637,4624,15,4,f +8637,4865a,4,2,f +8637,970c00,15,1,f +8637,973p14c01,15,1,f +8638,3003,1,20,f +8638,3003,47,10,f +8638,3003,14,20,f +8638,3003,4,20,f +8638,3003,15,20,f +8638,3003,0,10,f +8639,2357,4,2,f +8639,2357,0,6,f +8639,2412b,80,5,f +8639,2420,4,6,f +8639,2431,71,1,f +8639,2431,4,1,f +8639,2436,4,6,f +8639,2444,71,4,f +8639,2445,0,1,f +8639,2540,0,1,f +8639,2555,71,4,f +8639,2780,0,5,f +8639,3003,4,2,f +8639,3004,19,2,f +8639,3004,4,2,f +8639,3005,4,6,f +8639,3010,4,10,f +8639,3020,4,4,f +8639,3021,19,3,f +8639,3021,4,1,f +8639,3022,4,2,f +8639,3022,0,2,f +8639,3023,71,8,f +8639,3023,36,2,f +8639,3023,47,2,f +8639,3024,4,7,f +8639,3024,36,2,f +8639,3029,0,1,f +8639,3032,72,2,f +8639,3032,4,3,f +8639,3035,0,1,f +8639,30357,4,2,f +8639,30374,0,2,f +8639,30383,0,4,f +8639,3039,4,1,f +8639,3039,40,2,f +8639,30391,0,5,f +8639,30602,40,1,f +8639,30648,0,8,f +8639,3065,40,2,f +8639,30663,71,2,f +8639,3069b,19,7,f +8639,32028,15,1,f +8639,3460,4,4,f +8639,3623,4,8,f +8639,3660,4,8,f +8639,3660,0,4,f +8639,3665,4,8,f +8639,3666,4,2,f +8639,3673,71,5,f +8639,3710,0,2,f +8639,3710,4,6,f +8639,3794a,0,2,f +8639,3795,71,1,f +8639,3795,0,1,f +8639,3894,72,2,f +8639,4070,0,2,f +8639,4070,4,6,f +8639,4162,4,2,f +8639,4176,40,1,f +8639,41855,4,2,f +8639,43710,4,1,f +8639,43711,4,1,f +8639,43722,4,2,f +8639,43723,4,2,f +8639,44302a,19,4,f +8639,45677,15,1,f +8639,45677,4,5,f +8639,4623,0,2,f +8639,4864b,40,4,f +8639,49668,40,2,f +8639,51377,80,13,f +8639,54200,4,2,f +8639,6091,4,4,f +8639,6141,80,3,f +8639,6141,47,7,f +8639,6141,57,5,f +8639,6141,36,3,f +8639,6215,4,2,f +8639,6232,72,1,f +8639,6238,40,2,f +8639,6249,72,6,f +8640,3001,14,3,f +8640,3003,14,3,f +8640,3003pr0001,14,3,f +8640,3004,14,3,f +8640,3021,4,3,f +8641,125c01,0,1,f +8641,2348b,41,1,f +8641,2349a,15,1,f +8641,2412b,1,4,f +8641,2419,4,1,f +8641,2432,4,1,f +8641,2446p01,15,1,f +8641,2447,0,1,f +8641,2447,0,1,t +8641,2450,4,2,f +8641,2555,4,2,f +8641,2610,14,1,f +8641,298c02,15,1,t +8641,298c02,15,2,f +8641,3002,1,2,f +8641,3010,1,2,f +8641,3023,4,4,f +8641,3068b,4,2,f +8641,3069bp52,15,1,f +8641,3070b,36,1,t +8641,3070b,34,1,f +8641,3070b,34,1,t +8641,3070b,36,1,f +8641,3479,4,2,f +8641,3623,4,2,f +8641,3626bp03,14,1,f +8641,3666,4,2,f +8641,3710,4,1,f +8641,3829c01,15,1,f +8641,3832,15,1,f +8641,3937,7,2,f +8641,3938,0,2,f +8641,4002stk01,9999,1,t +8641,4315,15,1,f +8641,4477,4,1,f +8641,4623,1,1,f +8641,6152,41,1,f +8641,71137,383,2,f +8641,970c00,15,1,f +8641,973pb0101c01,15,1,f +8642,2412b,14,2,f +8642,2413,4,2,f +8642,2419,1,2,f +8642,2432,14,2,f +8642,2458,4,1,f +8642,2460,4,1,f +8642,2479,7,1,f +8642,30000,8,1,f +8642,3001,14,6,f +8642,3001,1,6,f +8642,3001,4,6,f +8642,3001,0,4,f +8642,3001,15,4,f +8642,3002,1,6,f +8642,3002,14,6,f +8642,3002,0,4,f +8642,3002,15,6,f +8642,3002,4,6,f +8642,3003,15,4,f +8642,3003,14,6,f +8642,3003,4,6,f +8642,3003,1,4,f +8642,3003,2,4,f +8642,3003,0,4,f +8642,3004,15,16,f +8642,3004,1,16,f +8642,3004,2,4,f +8642,3004,0,10,f +8642,3004,14,20,f +8642,3004,4,20,f +8642,3005,14,10,f +8642,3005,15,8,f +8642,3005,4,10,f +8642,3005,0,6,f +8642,3005,2,6,f +8642,3005,1,8,f +8642,3005pe1,14,2,f +8642,3008,14,2,f +8642,3008,4,2,f +8642,3009,4,4,f +8642,3009,15,4,f +8642,3009,1,4,f +8642,3009,14,4,f +8642,3010,1,12,f +8642,3010,15,12,f +8642,3010,4,14,f +8642,3010,14,14,f +8642,3010p01,14,1,f +8642,30161,47,1,f +8642,3020,1,2,f +8642,3021,1,2,f +8642,3022,1,2,f +8642,3022,4,2,f +8642,3034,1,2,f +8642,3035,1,1,f +8642,3040b,4,2,f +8642,3062b,15,4,f +8642,3149c01,1,1,f +8642,3297,1,2,f +8642,3297p05,1,2,f +8642,3298,1,2,f +8642,3298p15,1,4,f +8642,3299,1,2,f +8642,3300,1,2,f +8642,3307,15,2,f +8642,3470,2,1,f +8642,3483,0,6,f +8642,3622,4,6,f +8642,3622,14,6,f +8642,3622,15,6,f +8642,3622,1,6,f +8642,3626bp02,14,1,f +8642,3626bp04,14,1,f +8642,3633,15,4,f +8642,3660,4,2,f +8642,3665,4,2,f +8642,3666,1,2,f +8642,3666,4,2,f +8642,3710,1,2,f +8642,3730,4,1,f +8642,3731,4,1,f +8642,3741,2,2,f +8642,3742,1,3,f +8642,3742,1,1,t +8642,3742,4,1,t +8642,3742,4,3,f +8642,3747b,1,4,f +8642,3795,1,2,f +8642,3823,47,1,f +8642,3829c01,14,2,f +8642,3853,4,4,f +8642,3854,15,8,f +8642,3856,2,8,f +8642,3861b,4,2,f +8642,3867,10,2,f +8642,3957a,15,2,f +8642,3960p01,15,1,f +8642,4070,4,2,f +8642,4079,14,2,f +8642,4175,14,2,f +8642,4286,1,2,f +8642,4287,1,4,f +8642,4485,15,1,f +8642,4495b,2,1,f +8642,4589,15,4,f +8642,4625,1,1,f +8642,6041,0,1,f +8642,6093,6,1,f +8642,6215,4,4,f +8642,6248,4,6,f +8642,6249,8,2,f +8642,970c00,2,1,f +8642,970c00,0,1,f +8642,973px37c01,1,1,f +8642,973px38c01,15,1,f +8643,2420,0,5,f +8643,2711,0,3,f +8643,2717,4,1,f +8643,2825,7,14,f +8643,3022,0,2,f +8643,3023,0,4,f +8643,3040b,0,2,f +8643,3062b,36,1,f +8643,3070b,14,2,f +8643,3623,0,3,f +8643,3647,7,2,f +8643,3650a,7,1,f +8643,3665,0,1,f +8643,3673,7,2,f +8643,3700,0,6,f +8643,3701,0,2,f +8643,3702,0,4,f +8643,3703,0,1,f +8643,3704,0,4,f +8643,3705,0,1,f +8643,3706,0,1,f +8643,3707,0,3,f +8643,3708,0,1,f +8643,3709,0,3,f +8643,3710,0,6,f +8643,3713,7,1,t +8643,3713,7,7,f +8643,3737,0,1,f +8643,3749,7,8,f +8643,3895,0,2,f +8643,3941,0,1,f +8643,3942b,0,1,f +8643,4032a,14,1,f +8643,4032a,0,1,f +8643,4143,7,2,f +8643,4150,15,1,f +8643,4185,7,1,f +8643,4262,7,2,f +8643,4265a,7,1,t +8643,4265a,7,5,f +8643,4274,7,1,t +8643,4274,7,2,f +8643,4477,0,2,f +8643,4519,0,1,f +8644,3626bpr0775,14,1,f +8644,62699,71,1,f +8644,88646,0,1,f +8644,93549pat01,47,1,f +8644,970x001,0,1,f +8644,973pr1762c01,15,1,f +8648,2412b,0,2,f +8648,2780,0,2,f +8648,2780,0,1,t +8648,2853,71,2,f +8648,3024,47,2,f +8648,32016,71,2,f +8648,32039,4,4,f +8648,32039,71,4,f +8648,32054,4,2,f +8648,32056,71,2,f +8648,32062,4,2,f +8648,32073,71,4,f +8648,32123b,71,1,t +8648,32123b,71,6,f +8648,32184,0,4,f +8648,32250,0,2,f +8648,32270,0,3,f +8648,32316,0,1,f +8648,32449,4,2,f +8648,32526,4,2,f +8648,3647,72,1,t +8648,3647,72,1,f +8648,3666,4,1,f +8648,3705,0,3,f +8648,3706,0,1,f +8648,3706,0,1,t +8648,3713,4,1,t +8648,3713,4,3,f +8648,4080,71,1,f +8648,41239,0,2,f +8648,41669,4,2,f +8648,42003,4,4,f +8648,4274,71,2,f +8648,4274,71,1,t +8648,43093,1,7,f +8648,44294,71,3,f +8648,4519,71,6,f +8648,4716,71,1,f +8648,55981,71,4,f +8648,59443,0,3,f +8648,60483,0,6,f +8648,6536,71,4,f +8648,6541,0,2,f +8648,6632,4,4,f +8648,6632,1,2,f +8648,87083,72,5,f +8648,89201,0,4,f +8649,30273,80,1,f +8649,3626bpr0499,14,1,f +8649,3847,135,1,f +8649,3847,135,1,t +8649,970x026,71,1,f +8649,973pr1321c01,72,1,f +8650,11211,4,1,f +8650,12825,71,3,f +8650,13812pr0001,148,1,f +8650,13813pr0001,148,1,f +8650,13952,148,1,f +8650,2412b,80,3,f +8650,2654,0,1,f +8650,2780,0,1,f +8650,2780,0,1,t +8650,2921,0,1,f +8650,3003,0,1,f +8650,30095,72,1,f +8650,3010,72,1,f +8650,3020,72,3,f +8650,3020,0,2,f +8650,3021,28,3,f +8650,3022,72,2,f +8650,3023,2,6,f +8650,30236,0,1,f +8650,30350b,40,1,f +8650,3038,0,1,f +8650,3040b,28,2,f +8650,30414,0,3,f +8650,30504,0,1,f +8650,30586,71,2,f +8650,3062b,72,5,f +8650,32064b,2,1,f +8650,32064b,72,1,f +8650,3622,0,2,f +8650,3623,71,2,f +8650,3626cpr1215,78,1,f +8650,3626cpr1221,78,1,f +8650,3626cpr1767,78,1,f +8650,3660,0,1,f +8650,3665,0,4,f +8650,3666,0,1,f +8650,3747b,72,2,f +8650,3942c,71,2,f +8650,4032a,2,2,f +8650,4079,288,1,f +8650,4085c,72,2,f +8650,42003,0,1,f +8650,43712,72,1,f +8650,4519,71,4,f +8650,45590,0,2,f +8650,4740,28,1,f +8650,4740,28,1,t +8650,47456,0,1,f +8650,47457,72,4,f +8650,48336,71,1,f +8650,48729b,72,1,t +8650,48729b,72,6,f +8650,50231,4,1,f +8650,50231,0,1,f +8650,51739,28,1,f +8650,55982,71,1,f +8650,59349,72,1,f +8650,59900,34,4,f +8650,59900,182,2,f +8650,60470a,0,2,f +8650,60474,0,1,f +8650,60478,0,2,f +8650,61409,0,4,f +8650,6141,80,4,f +8650,6141,182,1,t +8650,6141,80,1,t +8650,6141,34,1,t +8650,6141,34,4,f +8650,6141,182,2,f +8650,62113,72,1,f +8650,64225,0,5,f +8650,6541,71,1,f +8650,6553,72,1,f +8650,6587,28,1,f +8650,75937,179,1,f +8650,76009stk01,9999,1,t +8650,85974,484,1,f +8650,85984,28,1,f +8650,87079,72,1,f +8650,87544,40,2,f +8650,87615,72,2,f +8650,92081,0,1,f +8650,92579,47,1,f +8650,93273,0,2,f +8650,95188,72,2,f +8650,95199,72,2,f +8650,970c00,272,1,f +8650,970c00pr0539,272,1,f +8650,970c00pr0539,0,1,f +8650,973pr2374c01,272,1,f +8650,973pr2375c01,0,1,f +8650,973pr2431c01,71,1,f +8650,98138,47,2,f +8650,98138,47,1,t +8650,98286,71,1,f +8650,98560,72,2,f +8650,98726,0,1,f +8650,99206,71,2,f +8650,99780,0,2,f +8650,99781,71,2,f +8652,2376,0,1,f +8652,2412b,71,2,f +8652,2431,71,1,f +8652,2432,1,1,f +8652,3003,70,3,f +8652,3003,1,1,f +8652,3004,1,1,f +8652,30153,47,1,f +8652,3023,1,3,f +8652,30504,72,1,f +8652,3068b,70,5,f +8652,3068bpr0201,15,2,f +8652,3069b,72,2,f +8652,32001,71,1,f +8652,32013,0,1,f +8652,32062,4,2,f +8652,3623,14,3,f +8652,3626bpr0896,78,1,f +8652,3626bpr0906,78,1,f +8652,3707,0,1,f +8652,4006,0,1,f +8652,4032a,0,2,f +8652,4032a,14,1,f +8652,4274,1,1,f +8652,4274,1,1,t +8652,4595,0,2,f +8652,4697b,71,1,t +8652,4697b,71,2,f +8652,4865a,19,2,f +8652,49668,0,1,f +8652,50859b,0,1,f +8652,50861,0,2,f +8652,50862,71,2,f +8652,54200,47,1,t +8652,54200,0,2,f +8652,54200,47,1,f +8652,54200,0,1,t +8652,55704,272,1,f +8652,59443,0,2,f +8652,59900,0,1,f +8652,61409,72,2,f +8652,6141,41,2,f +8652,6141,34,1,t +8652,6141,36,4,f +8652,6141,46,1,t +8652,6141,46,3,f +8652,6141,36,1,t +8652,6141,41,1,t +8652,6141,34,3,f +8652,61678,0,1,f +8652,61780,70,2,f +8652,85984,1,1,f +8652,88704,70,1,f +8652,88811,179,1,t +8652,88811,179,1,f +8652,89536,85,1,f +8652,92280,0,2,f +8652,970c00,0,1,f +8652,970x140,71,1,f +8652,973pr1948bc01,71,1,f +8652,973pr1954bc01,0,1,f +8652,98138,179,1,t +8652,98138,179,1,f +8652,98721,0,1,f +8652,98722,272,1,f +8652,98729,0,1,f +8654,12825,15,2,f +8654,2412b,15,2,f +8654,2436,4,1,f +8654,2447,40,1,t +8654,2447,40,1,f +8654,2456,72,1,f +8654,30031,0,1,f +8654,3022,4,2,f +8654,3024,33,2,f +8654,3062b,14,1,f +8654,3626cpr0754,14,1,f +8654,3794b,14,2,f +8654,3834,320,1,f +8654,3835,0,1,f +8654,3838,14,1,f +8654,4085c,15,2,f +8654,44674,4,2,f +8654,4599b,14,1,f +8654,4733,0,1,f +8654,6014b,71,4,f +8654,6019,71,1,f +8654,60849,71,2,f +8654,6117,72,1,f +8654,6141,46,2,f +8654,6141,25,1,t +8654,6141,46,1,t +8654,6141,25,1,f +8654,6157,71,2,f +8654,6158,72,1,f +8654,6187,71,1,f +8654,85984,72,2,f +8654,87087,4,2,f +8654,87697,0,4,f +8654,970c00pr0282,191,1,f +8654,973pr1919c01,191,1,f +8655,2825,7,10,f +8655,3705b,0,2,f +8655,3737b,0,2,f +8655,4698,7,12,f +8656,45481,230,4,f +8656,46296,57,1,f +8656,46296,45,2,f +8656,48794,77,1,f +8656,51034,43,1,f +8656,53657,118,2,f +8656,53657,29,8,f +8656,53657,230,2,f +8656,53657,191,4,f +8656,53657,45,6,f +8656,53658,41,2,f +8656,53658,230,2,f +8656,53658,45,2,f +8656,53658,57,2,f +8656,53660,230,1,f +8656,clikits011pb01,41,1,f +8656,clikits012,47,1,f +8656,clikits021,230,1,f +8656,clikits028,35,4,f +8656,clikits028,118,4,f +8656,clikits037,5,2,f +8656,clikits038,35,4,f +8656,clikits068,47,1,f +8656,clikits069pb01,57,1,f +8656,clikits085,230,1,f +8656,clikits122,118,4,f +8656,clikits122,18,6,f +8656,clikits137,57,1,f +8656,clikits138,89,1,f +8656,clikits139,89,1,f +8656,clikits140,9999,1,f +8656,clikits141,29,1,f +8656,clikits142pb01,118,1,f +8656,clikits144,35,1,f +8656,clikits144,27,1,f +8656,clikits145,35,1,f +8657,2780,0,5,t +8657,2815,0,3,f +8657,2817,0,1,t +8657,3023,7,2,f +8657,32002,8,3,t +8657,32013,7,2,f +8657,32062,0,1,f +8657,32123b,7,2,t +8657,32123b,7,2,f +8657,32467,14,1,f +8657,3701,0,1,f +8657,3706,0,1,f +8657,3707,0,1,f +8657,4185,7,3,f +8657,6553,7,1,f +8657,6553,7,1,t +8657,6558,0,1,t +8657,cr2032,89,1,f +8658,10830pat0001,0,1,f +8658,2555,71,1,f +8658,3004,15,2,f +8658,3023,46,1,f +8658,3068b,71,1,f +8658,3710,1,2,f +8658,63864,15,1,f +8658,64644,0,1,f +8660,2540,1,1,f +8660,3003,1,2,f +8660,3023,73,3,f +8660,30363,15,1,f +8660,3794b,1,1,f +8660,3794b,0,1,f +8660,4085c,14,2,f +8660,41769,1,1,f +8660,41770,1,1,f +8660,4286,1,1,f +8660,49668,191,1,f +8660,50950,1,1,f +8660,63868,15,1,f +8660,87087,15,4,f +8666,10201,71,4,f +8666,11153,28,8,f +8666,11211,71,2,f +8666,14769,72,3,f +8666,15068,72,4,f +8666,15573,71,10,f +8666,15712,72,2,f +8666,19923,19,1,f +8666,2420,28,1,f +8666,2431,72,8,f +8666,2540,0,1,f +8666,2653,71,4,f +8666,2654,47,20,f +8666,2730,71,4,f +8666,2780,0,3,t +8666,2780,0,26,f +8666,2877,72,4,f +8666,3001,71,3,f +8666,3002,71,1,f +8666,3010,72,4,f +8666,3020,71,6,f +8666,3020,70,1,f +8666,3021,72,5,f +8666,3022,70,2,f +8666,3022,72,3,f +8666,3023,28,6,f +8666,3023,71,2,f +8666,3023,72,29,f +8666,3024,72,4,f +8666,3024,28,1,t +8666,3024,28,2,f +8666,3024,72,1,t +8666,3032,72,3,f +8666,3034,28,1,f +8666,30367c,71,1,f +8666,30375,19,12,f +8666,30375ps2,1,2,f +8666,30376,19,14,f +8666,30377,19,2,t +8666,30377,19,16,f +8666,30378,19,14,f +8666,30414,71,4,f +8666,30526,72,1,f +8666,30602,70,2,f +8666,3062b,41,1,f +8666,3068b,28,1,f +8666,32000,72,2,f +8666,32018,71,2,f +8666,32028,71,4,f +8666,32064a,0,4,f +8666,32123b,71,1,t +8666,32123b,71,4,f +8666,32530,72,2,f +8666,3460,72,2,f +8666,3622,70,4,f +8666,3666,28,4,f +8666,3666,71,6,f +8666,3678b,28,1,f +8666,3700,71,1,f +8666,3701,71,4,f +8666,3705,0,2,f +8666,3710,72,4,f +8666,3710,28,5,f +8666,3749,19,5,f +8666,3795,0,1,f +8666,3839b,71,1,f +8666,3894,72,2,f +8666,3957b,71,1,f +8666,40490,72,8,f +8666,4081b,72,4,f +8666,41677,71,1,f +8666,4185,47,4,f +8666,4274,71,1,t +8666,4274,71,40,f +8666,4286,70,2,f +8666,43710,28,1,f +8666,43711,28,1,f +8666,4477,70,6,f +8666,45590,0,2,f +8666,4697b,71,1,f +8666,4697b,71,1,t +8666,4740,28,10,f +8666,47456,70,1,f +8666,48336,71,1,f +8666,4865a,71,4,f +8666,48729b,71,2,f +8666,48729b,71,1,t +8666,50950,72,24,f +8666,53451,28,2,f +8666,53451,28,1,t +8666,54200,71,4,f +8666,54200,28,2,f +8666,54200,28,1,t +8666,54200,71,1,t +8666,58247,0,12,f +8666,59230,19,1,t +8666,59230,19,12,f +8666,60474,71,2,f +8666,6081,28,2,f +8666,60897,71,12,f +8666,6091,28,22,f +8666,6141,70,2,t +8666,6141,70,22,f +8666,62462,71,4,f +8666,6249,72,2,f +8666,6541,71,8,f +8666,6558,1,6,f +8666,6632,0,1,f +8666,85080,28,2,f +8666,85984,72,4,f +8666,87082,0,2,f +8666,87087,70,10,f +8666,92280,71,2,f +8666,92747pr0001c,52,1,f +8666,93273,71,2,f +8666,970c00,28,1,f +8666,973pr2956c01,308,1,f +8666,98138,36,4,f +8666,98138,36,1,t +8666,99780,72,4,f +8666,99781,15,4,f +8667,2357,0,2,f +8667,2357,7,1,f +8667,2362a,0,4,f +8667,2401,7,1,f +8667,2409,33,1,f +8667,2412b,7,2,f +8667,2419,0,1,f +8667,2420,1,1,f +8667,2431,7,5,f +8667,2433,0,1,f +8667,2436,0,1,f +8667,2436,7,1,f +8667,2446,14,2,f +8667,2446p51,14,1,f +8667,2447,33,3,f +8667,2448,33,2,f +8667,2449,7,6,f +8667,2449,0,8,f +8667,2458,7,2,f +8667,2466,33,1,f +8667,2507,33,1,f +8667,2555,0,2,f +8667,2569,42,7,f +8667,2817,0,3,f +8667,2880,0,3,f +8667,3001,0,2,f +8667,3001,7,1,f +8667,3002,0,2,f +8667,3003,0,2,f +8667,3003,1,2,f +8667,3003,7,2,f +8667,3004,7,4,f +8667,3004,0,3,f +8667,3005,0,4,f +8667,3005,7,2,f +8667,3010,0,3,f +8667,3010,7,1,f +8667,3020,7,2,f +8667,3020,0,7,f +8667,3021,7,1,f +8667,3021,0,1,f +8667,3022,7,1,f +8667,3022,1,2,f +8667,3022,0,3,f +8667,3023,7,7,f +8667,3023,0,3,f +8667,3023,1,3,f +8667,3034,7,1,f +8667,3035,0,1,f +8667,3038,0,2,f +8667,3039,1,5,f +8667,3039,7,1,f +8667,3039,0,2,f +8667,3039pc1,0,2,f +8667,3039pc7,0,1,f +8667,3040b,0,9,f +8667,3062b,7,4,f +8667,3068b,0,4,f +8667,3069b,0,3,f +8667,3069b,7,4,f +8667,3069bp28,0,2,f +8667,3070b,7,1,f +8667,3149c01,1,2,f +8667,3184,0,2,f +8667,3298,1,1,f +8667,3315,0,1,f +8667,3403,0,2,f +8667,3404,0,2,f +8667,3460,0,2,f +8667,3475b,1,2,f +8667,3475b,0,2,f +8667,3597,0,1,f +8667,3626bp68,14,1,f +8667,3626bp69,14,2,f +8667,3660,0,1,f +8667,3660,7,3,f +8667,3665,0,8,f +8667,3665,7,2,f +8667,3666,7,1,f +8667,3673,7,4,f +8667,3679,7,4,f +8667,3680,0,4,f +8667,3684,7,2,f +8667,3685,1,5,f +8667,3710,7,4,f +8667,3710,0,3,f +8667,3731,1,1,f +8667,3747a,0,1,f +8667,3794a,0,1,f +8667,3794a,1,6,f +8667,3795,7,2,f +8667,3795,0,1,f +8667,3811,7,1,f +8667,3832,1,1,f +8667,3838,1,3,f +8667,3937,0,3,f +8667,3938,7,3,f +8667,3942b,7,1,f +8667,3957a,0,1,f +8667,4150,0,2,f +8667,4162,0,4,f +8667,4215b,0,2,f +8667,4215b,7,2,f +8667,4275b,1,4,f +8667,4275b,0,1,f +8667,4275b,7,4,f +8667,4276b,7,1,f +8667,4285b,0,2,f +8667,4286,0,2,f +8667,4286,7,2,f +8667,4315,0,1,f +8667,4460a,7,2,f +8667,4460a,0,2,f +8667,4477,7,1,f +8667,4507,7,1,f +8667,4531,0,8,f +8667,4588,0,2,f +8667,4589,42,11,f +8667,4589,0,2,f +8667,4589,33,6,f +8667,4589,7,1,f +8667,4590,7,3,f +8667,4596,0,1,f +8667,4598,0,1,f +8667,4732,1,1,f +8667,4740,42,3,f +8667,4740,7,2,f +8667,4859,1,1,f +8667,4859,0,1,f +8667,4859,7,1,f +8667,4865a,1,2,f +8667,6083,8,2,f +8667,6104,1,1,f +8667,6118,0,4,f +8667,6141,0,4,f +8667,6141,33,3,f +8667,6141,42,5,f +8667,970x024,7,2,f +8667,973p64c01,8,3,f +8668,2431,7,1,f +8668,32016,14,2,f +8668,32034,14,2,f +8668,32062,0,8,f +8668,32073,7,1,f +8668,32579,7,1,f +8668,3707,0,1,f +8668,41677,0,2,f +8668,4274,7,1,t +8668,4274,7,2,f +8668,43558,135,2,f +8668,44790,0,1,f +8668,44791,0,1,f +8668,44843,135,1,f +8668,44847,0,2,f +8668,44848,0,2,f +8668,44849,0,1,f +8668,44850,15,1,f +8668,44851,15,1,f +8668,44852,14,1,f +8668,4519,7,2,f +8668,45590,0,1,f +8668,47073,89,1,f +8668,47074,0,1,f +8668,6536,0,2,f +8668,6558,0,2,f +8668,6587,8,1,f +8668,hmaskpw1,7,1,f +8668,hmaskpw2,7,1,f +8668,hmaskpw3,7,1,f +8669,11211,71,2,f +8669,11267,14,1,f +8669,12622,4,1,f +8669,14769pr0001,15,1,f +8669,15207,4,2,f +8669,15624,72,2,f +8669,15625pr0001,72,2,f +8669,15627pr0006,4,3,f +8669,2412b,0,1,f +8669,2431,14,2,f +8669,2431,33,1,f +8669,2431pr0061,72,1,f +8669,2432,72,2,f +8669,2432,14,2,f +8669,2454a,4,1,f +8669,2456,1,1,f +8669,3001,4,3,f +8669,3002,0,1,f +8669,3003,1,1,f +8669,3003,0,1,f +8669,3004,0,1,f +8669,3007,0,2,f +8669,30180,0,1,f +8669,3020,71,1,f +8669,3020,4,1,f +8669,3023,1,1,f +8669,30236,15,1,f +8669,30237b,15,4,f +8669,3031,71,1,f +8669,3034,72,1,f +8669,30367c,4,1,f +8669,3037,0,2,f +8669,3039pr0002,15,1,f +8669,3039pr0005,15,1,f +8669,3040b,0,4,f +8669,3062b,33,2,f +8669,3062b,71,1,f +8669,30663,71,1,f +8669,3069b,36,1,f +8669,3069b,33,2,f +8669,3245c,15,1,f +8669,3626bpr0314,14,1,f +8669,3626bpr0649,14,1,f +8669,3710,25,1,f +8669,3795,71,1,f +8669,3823,47,1,f +8669,3829c01,14,1,f +8669,3834,15,2,f +8669,3835,0,1,f +8669,3957b,71,1,f +8669,3962b,0,1,f +8669,3963,71,1,f +8669,4006,0,1,f +8669,4079b,14,2,f +8669,4079b,70,1,f +8669,4349,0,1,f +8669,43888,71,2,f +8669,4599b,71,1,f +8669,4599b,1,1,t +8669,4599b,1,1,f +8669,4599b,71,1,t +8669,4740,2,1,f +8669,50950,4,1,f +8669,50950,72,2,f +8669,52107,14,1,f +8669,59900,182,2,f +8669,6014b,15,4,f +8669,6020,71,1,f +8669,60599,4,1,f +8669,60603,47,3,f +8669,60616a,47,1,f +8669,6126b,182,2,f +8669,6126b,41,1,f +8669,6190,4,1,f +8669,73590c03b,14,1,f +8669,85984,15,1,f +8669,87079,71,2,f +8669,87079,1,1,f +8669,87079pr0063,14,1,f +8669,87087,4,1,f +8669,87580,25,1,f +8669,87697,0,4,f +8669,92926,2,1,f +8669,93273,4,2,f +8669,970c00,0,2,f +8669,973pr2189c01,0,2,f +8670,10052,71,1,f +8670,13768pr0001,15,1,f +8670,2639,72,2,f +8670,3001,0,3,f +8670,3010,0,1,f +8670,3010,19,2,f +8670,30106,47,1,f +8670,30106,46,2,f +8670,30136,0,6,f +8670,3022,72,4,f +8670,3023,0,1,f +8670,3023,72,1,f +8670,30357,72,4,f +8670,3036,72,1,f +8670,30374,0,1,f +8670,3040b,0,4,f +8670,3068b,0,1,f +8670,32073,71,1,f +8670,32123b,14,2,f +8670,32123b,14,1,t +8670,3298,0,2,f +8670,3626cpr1212,78,1,f +8670,3626cpr1252,57,1,f +8670,3626cpr1253,78,1,f +8670,3665,0,2,f +8670,3678b,0,1,f +8670,3700,0,1,f +8670,3710,0,6,f +8670,3713,4,1,t +8670,3713,4,1,f +8670,3737,0,1,f +8670,3794b,0,1,f +8670,3894,0,1,f +8670,3942c,0,2,f +8670,40239,71,1,f +8670,4032a,0,2,f +8670,4460b,0,2,f +8670,4477,0,2,f +8670,4519,71,1,f +8670,4588,0,4,f +8670,47905,0,1,f +8670,50231,15,1,f +8670,54200,0,4,f +8670,54200,0,1,t +8670,58176,15,1,f +8670,59443,4,1,f +8670,59900,0,14,f +8670,60474,0,1,f +8670,6141,72,1,f +8670,6141,72,1,t +8670,61485,0,1,f +8670,63965,70,3,f +8670,64644,0,1,f +8670,6585,0,1,f +8670,6587,28,1,f +8670,6589,19,1,t +8670,6589,19,2,f +8670,91988,72,2,f +8670,92947,0,2,f +8670,970c00,72,1,f +8670,970c00,15,1,f +8670,973pr2053c01,72,1,f +8670,973pr2430c01,15,1,f +8671,85543,15,24,f +8672,2376,0,1,f +8672,2412b,4,4,f +8672,2444,7,4,f +8672,2446pr02a,8,1,f +8672,2447,46,1,t +8672,2447,46,1,f +8672,2555,8,2,f +8672,2780,0,2,f +8672,2877,7,3,f +8672,3001,0,2,f +8672,3007,1,1,f +8672,3009,7,1,f +8672,3010,4,7,f +8672,3020,7,2,f +8672,3021,14,2,f +8672,3023,1,6,f +8672,30304,8,1,f +8672,3032,4,1,f +8672,3035,4,1,f +8672,3035,7,2,f +8672,30359a,8,2,f +8672,30360,4,2,f +8672,30363pb001,4,2,f +8672,30374,0,2,f +8672,30384,47,1,f +8672,3039,4,3,f +8672,3039pr23,8,1,f +8672,3040b,8,8,f +8672,3045,7,2,f +8672,3297,7,2,f +8672,3298,7,2,f +8672,3460,8,4,f +8672,3622,7,4,f +8672,3622,14,2,f +8672,3626bp06,14,1,f +8672,3626bpx11,14,1,f +8672,3660,8,2,f +8672,3665,7,2,f +8672,3666,4,2,f +8672,3666,7,3,f +8672,3710,8,2,f +8672,3747a,4,2,f +8672,3747a,7,6,f +8672,3933,7,1,f +8672,3934,7,1,f +8672,3937,0,2,f +8672,3940b,8,3,f +8672,3941,42,2,f +8672,4006,0,1,f +8672,4345b,15,1,f +8672,4346,7,1,f +8672,4485,19,1,f +8672,4865a,15,3,f +8672,6069,4,1,f +8672,6134,4,2,f +8672,970c00,19,1,f +8672,970x026,2,1,f +8672,973pr1526c01,2,1,f +8672,973psac01,19,1,f +8673,3004,15,2,f +8673,30043,0,2,f +8673,3070b,15,2,f +8673,3626bpr0463,14,1,f +8673,41747,288,1,f +8673,41748,288,1,f +8673,4360,0,1,f +8673,4623,0,2,f +8673,52107,0,1,f +8673,53982,85,1,f +8673,54383,71,1,f +8673,54384,71,1,f +8673,6141,36,1,f +8673,6141,36,1,t +8673,970c00,288,1,f +8673,973pr1303c01,288,1,f +8674,2569,42,1,t +8674,2569,42,2,f +8674,2577,7,2,f +8674,2877,0,2,f +8674,3003,15,2,f +8674,3003,4,2,f +8674,3004,4,2,f +8674,30144pb019,4,1,f +8674,30180,0,1,f +8674,3023,4,1,t +8674,3023,4,1,f +8674,30237a,15,3,f +8674,30285,15,12,f +8674,3037,4,8,f +8674,30391,0,12,f +8674,3039pc2,15,1,f +8674,3039px37,15,1,f +8674,3041,4,2,f +8674,30619,4,2,f +8674,30622,4,3,f +8674,30632,0,2,f +8674,30633pb05,40,1,f +8674,30636c02,4,1,f +8674,30642,8,2,f +8674,30645,8,3,f +8674,30647,4,2,f +8674,30650,15,2,f +8674,30650pb02,143,1,f +8674,30663,0,1,t +8674,30663,0,1,f +8674,3068b,0,2,f +8674,32083,4,1,f +8674,3403c01,0,1,f +8674,3633,4,2,f +8674,3835,0,2,t +8674,3835,0,2,f +8674,3855,143,6,f +8674,3940b,15,2,f +8674,3941,46,2,f +8674,3941,0,2,f +8674,3962b,72,1,t +8674,3962b,8,2,f +8674,3963,15,2,f +8674,4000,8,1,t +8674,4000,8,1,f +8674,4006,0,1,t +8674,4006,0,1,f +8674,40344c01,4,1,f +8674,4083,15,2,f +8674,40996,33,3,f +8674,4202,7,2,f +8674,4222a,4,1,f +8674,45399,15,2,f +8674,45402px1,15,1,f +8674,45403,8,2,f +8674,45403c01,7,1,f +8674,45405,4,2,f +8674,45406pb003,4,1,f +8674,45410,4,1,f +8674,45411pb03,4,1,f +8674,45695,4,12,f +8674,46103,40,1,f +8674,5,4,1,f +8674,6232,14,4,f +8674,6255,2,2,f +8674,6583,0,2,f +8674,75,15,1,t +8674,75c30,8,1,f +8674,bb03pb01,143,1,f +8674,js001,9999,1,f +8674,js002,9999,1,f +8674,js007,9999,1,f +8676,30556,0,1,f +8676,30599,25,1,f +8676,30601pb02,0,1,f +8676,30602pb014,0,1,f +8676,racerbase,0,1,f +8676,rb00168,0,2,f +8677,2346,0,4,f +8677,2348b,41,1,f +8677,2349a,1,1,f +8677,2350ap01,14,1,f +8677,2351,0,1,f +8677,2376,7,1,f +8677,2412a,14,3,f +8677,2412a,0,4,f +8677,2420,1,2,f +8677,2436,14,2,f +8677,2436,1,1,f +8677,2436,4,2,f +8677,2441,0,1,f +8677,2444,0,4,f +8677,2445,0,1,f +8677,2452,14,1,f +8677,3001,1,1,f +8677,3004,14,2,f +8677,3004,1,1,f +8677,3005,1,2,f +8677,3010,1,1,f +8677,3020,0,1,f +8677,3020,14,1,f +8677,3020,1,2,f +8677,3021,0,1,f +8677,3021,14,1,f +8677,3022,4,2,f +8677,3022,0,1,f +8677,3022,14,2,f +8677,3022,1,1,f +8677,3023,1,6,f +8677,3023,0,1,f +8677,3023,14,4,f +8677,3024,47,2,f +8677,3024,36,2,f +8677,3029,1,1,f +8677,3032,1,1,f +8677,3039,1,1,f +8677,3040b,14,2,f +8677,3068b,0,1,f +8677,3176,0,1,f +8677,3315,0,1,f +8677,3403,0,1,f +8677,3404,0,1,f +8677,3482,14,4,f +8677,3597,0,1,f +8677,3623,15,2,f +8677,3623,1,2,f +8677,3626apr0001,14,2,f +8677,3641,0,4,f +8677,3666,1,6,f +8677,3666,14,2,f +8677,3673,7,2,f +8677,3700,14,2,f +8677,3710,14,2,f +8677,3710,1,1,f +8677,3749,7,4,f +8677,3788,4,2,f +8677,3794a,0,1,f +8677,3794a,1,4,f +8677,3821,4,1,f +8677,3821,1,1,f +8677,3822,4,1,f +8677,3822,1,1,f +8677,3823,41,1,f +8677,3823,47,1,f +8677,3829c01,4,1,f +8677,3829c01,14,1,f +8677,3959,14,4,f +8677,4070,1,4,f +8677,4070,0,2,f +8677,4081b,1,2,f +8677,4175,1,2,f +8677,4208,0,1,f +8677,4209,14,1,f +8677,4213,15,1,f +8677,4214,1,1,f +8677,4315,15,1,f +8677,4460a,14,2,f +8677,4485,15,1,f +8677,4530,6,1,f +8677,4594,47,1,f +8677,4624,15,4,f +8677,4735,1,4,f +8677,4740,1,4,f +8677,56823,0,1,f +8677,6141,14,4,f +8677,6141,46,2,f +8677,6141,47,2,f +8677,6141,36,2,f +8677,70278,0,1,f +8677,970c00,15,1,f +8677,970c00,4,1,f +8677,973pb0203c01,15,1,f +8677,973px61c01,15,1,f +8679,3626bpr0769,14,1,f +8679,53450,80,1,f +8679,53451,297,2,f +8679,53705,179,1,f +8679,87994,308,1,f +8679,88646,0,1,f +8679,91884pr0001,308,1,f +8679,970c00pr0208,28,1,f +8679,973pr1756c01,70,1,f +8680,3004,4,2,f +8680,3004,2,4,f +8680,3021,4,1,f +8681,2446,4,1,f +8681,2446,47,1,f +8681,2446,15,1,f +8681,2446p50,4,1,f +8681,2446p51,14,1,f +8681,2447,33,1,f +8681,2447,42,2,f +8681,2516,0,2,f +8681,3069bp28,0,2,f +8681,3626bp61,14,1,f +8681,3626bp63,0,1,f +8681,3626bp66,14,1,f +8681,3626bp67,14,1,f +8681,3626bp68,14,1,f +8681,3838,0,2,f +8681,3838,1,1,f +8681,3838,15,1,f +8681,3959,0,1,f +8681,4360,0,1,f +8681,4589,33,1,f +8681,6117,57,1,f +8681,6119,57,1,f +8681,6120,57,2,f +8681,6141,42,1,f +8681,970c00pb019,4,1,f +8681,970x021,0,2,f +8681,970x023,0,1,f +8681,970x024,7,1,f +8681,973p61c01,0,1,f +8681,973p63c01,4,1,f +8681,973p64c01,8,1,f +8681,973p66c01,1,2,f +8682,132a,0,4,f +8682,3058b,7,1,f +8682,458,7,4,f +8682,468c01,1,1,f +8682,7039b,4,4,f +8682,996bc01,1,4,f +8682,bb07pb01,1,1,f +8682,wheel1b,4,4,f +8682,x466,15,1,f +8683,10201,0,2,f +8683,10201,15,3,f +8683,11010,334,1,f +8683,11010,334,1,t +8683,11062,15,1,f +8683,11153,272,27,f +8683,11203,72,5,f +8683,11203,19,1,f +8683,11211,19,2,f +8683,11212,71,1,f +8683,11477,15,6,f +8683,12825,0,3,f +8683,12825,15,7,f +8683,13965,15,4,f +8683,14413,71,2,f +8683,14769,15,1,f +8683,14769pr0001,15,1,f +8683,15068,272,6,f +8683,15068,19,1,f +8683,15207,71,4,f +8683,15332,0,12,f +8683,15395,320,8,f +8683,15396,4,1,f +8683,15535,72,3,f +8683,15573,71,7,f +8683,15573,15,18,f +8683,15672,0,1,f +8683,15672,15,8,f +8683,22667,26,2,f +8683,22667,26,1,t +8683,2343,47,4,f +8683,2357,71,6,f +8683,2412b,70,4,f +8683,2412b,80,12,f +8683,2417,2,4,f +8683,2420,71,6,f +8683,2423,2,2,f +8683,2431,70,3,f +8683,2431,1,3,f +8683,2431,0,14,f +8683,2431,19,15,f +8683,2445,72,3,f +8683,2540,0,1,f +8683,2540,71,1,f +8683,2654,0,5,f +8683,2654,47,2,f +8683,2714a,0,3,f +8683,2780,0,2,t +8683,2780,0,4,f +8683,2877,70,6,f +8683,2921,0,2,f +8683,3001,70,5,f +8683,3001,71,1,f +8683,30031,0,1,f +8683,3004,15,8,f +8683,3004,326,70,f +8683,3004,71,75,f +8683,30044,15,2,f +8683,30046,0,2,f +8683,3005,0,10,f +8683,3005,71,5,f +8683,3005,326,44,f +8683,3005,15,10,f +8683,3005pr0006,73,1,f +8683,3008,326,26,f +8683,3008,71,3,f +8683,3009,71,18,f +8683,3009,326,15,f +8683,3010,326,20,f +8683,3010,1,2,f +8683,3010,0,4,f +8683,3010,71,8,f +8683,30126,72,1,t +8683,30126,72,18,f +8683,30134,0,1,f +8683,30136,0,9,f +8683,30165,72,1,f +8683,3020,19,3,f +8683,3020,70,7,f +8683,3020,0,3,f +8683,3020,272,6,f +8683,3020,15,8,f +8683,3020,71,6,f +8683,3020,72,2,f +8683,3021,70,4,f +8683,3021,71,19,f +8683,30218,15,2,f +8683,30218,15,1,t +8683,3022,15,23,f +8683,3022,320,1,f +8683,3022,0,15,f +8683,3022,19,4,f +8683,3023,15,19,f +8683,3023,272,17,f +8683,3023,19,16,f +8683,3023,0,9,f +8683,3023,70,5,f +8683,3023,71,18,f +8683,3023,326,52,f +8683,3024,326,20,f +8683,3024,19,5,f +8683,3024,326,3,t +8683,3024,71,30,f +8683,3024,15,12,f +8683,3024,1,4,f +8683,3024,15,2,t +8683,3024,71,4,t +8683,3024,72,25,f +8683,3024,1,1,t +8683,3024,72,1,t +8683,3024,0,21,f +8683,3024,19,1,t +8683,3024,0,3,t +8683,3028,72,6,f +8683,3029,15,1,f +8683,3030,72,1,f +8683,3031,15,2,f +8683,3031,71,2,f +8683,3034,15,4,f +8683,3034,71,5,f +8683,3034,72,7,f +8683,3035,72,2,f +8683,30374,0,2,f +8683,30374,71,1,f +8683,30383,72,2,f +8683,3040b,0,1,f +8683,30414,71,4,f +8683,3046a,72,2,f +8683,30503,70,1,f +8683,30553,0,2,f +8683,30586,71,6,f +8683,3062b,46,3,f +8683,3062b,0,4,f +8683,3062b,15,2,f +8683,3062b,308,9,f +8683,3062b,72,7,f +8683,3068b,15,8,f +8683,3068b,71,6,f +8683,3068b,72,17,f +8683,3068b,320,1,f +8683,3068bpr0197,28,1,f +8683,3068bpr0225,15,1,f +8683,3069b,1,7,f +8683,3069b,2,2,f +8683,3069b,308,4,f +8683,3069b,272,4,f +8683,3069b,73,4,f +8683,3069b,71,16,f +8683,3069b,47,1,f +8683,3069b,19,18,f +8683,3069b,72,19,f +8683,3069b,28,4,f +8683,3070b,72,1,t +8683,3070b,272,4,t +8683,3070b,4,1,t +8683,3070b,14,3,f +8683,3070b,71,5,t +8683,3070b,272,42,f +8683,3070b,14,1,t +8683,3070b,72,3,f +8683,3070b,4,3,f +8683,3070b,15,40,f +8683,3070b,71,34,f +8683,3070b,15,4,t +8683,3176,72,1,f +8683,32028,72,8,f +8683,32028,71,2,f +8683,32028,15,22,f +8683,32028,0,11,f +8683,32062,4,2,f +8683,32064a,15,4,f +8683,3245a,15,4,f +8683,3298,71,3,f +8683,33048,484,1,f +8683,33057,484,2,f +8683,33078,4,2,f +8683,33078,4,1,t +8683,33125,15,4,f +8683,33125,484,1,f +8683,33183,10,2,f +8683,33183,10,1,t +8683,33291,10,3,t +8683,33291,4,11,f +8683,33291,191,6,f +8683,33291,5,14,f +8683,33291,5,2,t +8683,33291,4,3,t +8683,33291,191,1,t +8683,33291,10,24,f +8683,3460,15,5,f +8683,3464,15,2,f +8683,3622,71,3,f +8683,3622,70,1,f +8683,3622,326,34,f +8683,3623,71,6,f +8683,3623,72,2,f +8683,3623,15,10,f +8683,3626c,47,2,f +8683,3626cpr0001,14,5,f +8683,3659,0,2,f +8683,3659,308,1,f +8683,3660,0,3,f +8683,3665,15,2,f +8683,3666,70,2,f +8683,3666,72,2,f +8683,3666,272,8,f +8683,3666,15,2,f +8683,3675,320,2,f +8683,3676,72,3,f +8683,3678b,72,1,f +8683,3679,71,1,f +8683,3680,0,1,f +8683,37,72,2,f +8683,3700,70,4,f +8683,3700,19,4,f +8683,3710,1,4,f +8683,3710,70,8,f +8683,3710,0,10,f +8683,3710,72,8,f +8683,3710,71,4,f +8683,3741,2,5,f +8683,3741,2,2,t +8683,3749,19,4,f +8683,3794b,70,24,f +8683,3794b,72,6,f +8683,3795,71,5,f +8683,3795,0,3,f +8683,3811,71,1,f +8683,3832,71,3,f +8683,3836,70,1,f +8683,3839b,15,4,f +8683,3898,15,1,f +8683,3899,14,1,f +8683,3937,0,1,f +8683,3940b,0,6,f +8683,3957b,0,3,f +8683,40234,71,1,f +8683,4032a,15,8,f +8683,4070,0,4,f +8683,4070,70,26,f +8683,4070,15,2,f +8683,4070,71,47,f +8683,4079b,1,7,f +8683,4079b,0,4,f +8683,4081b,72,4,f +8683,4161,320,2,f +8683,4162,15,2,f +8683,4162,71,5,f +8683,4216,15,24,f +8683,42446,71,2,t +8683,42446,71,6,f +8683,42448,0,1,f +8683,4274,71,2,t +8683,4274,71,5,f +8683,4282,71,2,f +8683,4286,71,6,f +8683,4345b,15,1,f +8683,4345b,71,1,f +8683,4346,47,2,f +8683,44567a,71,4,f +8683,44570,72,1,f +8683,4460b,71,5,f +8683,4477,0,5,f +8683,4477,71,14,f +8683,4528,179,1,f +8683,4528,0,1,f +8683,4529,0,1,f +8683,4533,15,2,f +8683,4533,72,1,f +8683,4536,15,6,f +8683,4599b,0,1,t +8683,4599b,0,2,f +8683,4623,15,4,f +8683,4623,71,1,f +8683,4623,0,1,f +8683,4735,0,2,f +8683,4740,15,5,f +8683,4740,0,4,f +8683,4740,2,1,f +8683,47905,72,4,f +8683,48336,19,1,f +8683,48336,15,11,f +8683,4865b,47,1,f +8683,4865b,40,1,f +8683,4865b,71,7,f +8683,48729b,0,3,t +8683,48729b,0,9,f +8683,50950,272,23,f +8683,50950,14,2,f +8683,50950,15,8,f +8683,50950,320,2,f +8683,53989,15,8,f +8683,54200,326,3,t +8683,54200,73,1,f +8683,54200,326,14,f +8683,54200,71,1,t +8683,54200,191,2,t +8683,54200,191,2,f +8683,54200,71,9,f +8683,54200,73,1,t +8683,54200,70,2,f +8683,54200,70,1,t +8683,54200,14,2,t +8683,54200,14,2,f +8683,58380,15,1,f +8683,59895,0,1,t +8683,59895,0,2,f +8683,59900,15,5,f +8683,59900,46,5,f +8683,59900,0,1,f +8683,59900,70,2,f +8683,60478,72,2,f +8683,60478,0,5,f +8683,60478,71,6,f +8683,60479,0,1,f +8683,60481,71,5,f +8683,60592,70,6,f +8683,60592,15,8,f +8683,60593,15,3,f +8683,60593,70,14,f +8683,60596,15,4,f +8683,60596,70,2,f +8683,60601,47,14,f +8683,60602,47,17,f +8683,60616b,47,2,f +8683,60623,15,4,f +8683,60897,0,15,f +8683,60897,15,1,f +8683,6091,15,8,f +8683,6111,71,4,f +8683,61252,19,2,f +8683,61252,15,4,f +8683,6134,0,1,f +8683,6141,71,1,t +8683,6141,15,9,f +8683,6141,0,41,f +8683,6141,71,9,f +8683,6141,0,5,t +8683,6141,297,2,t +8683,6141,15,2,t +8683,6141,297,25,f +8683,62113,0,2,f +8683,6231,70,8,f +8683,6231,71,9,f +8683,6231,15,8,f +8683,62462,0,4,f +8683,62462,15,5,f +8683,62696,484,1,f +8683,62810,308,1,f +8683,63864,0,2,f +8683,63864,71,12,f +8683,63864,15,7,f +8683,63864,28,6,f +8683,63864,320,14,f +8683,63868,0,2,f +8683,63965,15,8,f +8683,64567,0,1,f +8683,64567,0,1,t +8683,64644,0,11,f +8683,64647,182,2,t +8683,64647,182,2,f +8683,64727,71,1,f +8683,64727,2,11,f +8683,6541,0,3,f +8683,6636,71,19,f +8683,6636,0,8,f +8683,6636,28,5,f +8683,6636,326,4,f +8683,87079,71,2,f +8683,87079pr0060,0,1,f +8683,87087,15,2,f +8683,87087,1,4,f +8683,87087,19,6,f +8683,87544,0,1,f +8683,87552,71,6,f +8683,87580,73,4,f +8683,87580,0,4,f +8683,88286,308,1,f +8683,88292,0,4,f +8683,90194,0,1,f +8683,90258,72,2,f +8683,91884,179,1,f +8683,91988,71,2,f +8683,92099,15,1,f +8683,92280,15,12,f +8683,92280,0,11,f +8683,92338,0,3,f +8683,92410,71,4,f +8683,92410,15,2,f +8683,92438,72,1,f +8683,92593,71,9,f +8683,92746,19,1,f +8683,92926,2,1,f +8683,92950,15,1,f +8683,92950,70,1,f +8683,92950,71,1,f +8683,93160,15,1,t +8683,93160,15,2,f +8683,93273,272,4,f +8683,93551pr0001,84,1,f +8683,93552pr0001,70,1,t +8683,93552pr0001,70,1,f +8683,93568pat0001,84,1,f +8683,95120,72,1,f +8683,95228,47,4,f +8683,95228,34,3,f +8683,95228,40,2,f +8683,95344,28,1,f +8683,95344,28,1,t +8683,95673,179,1,t +8683,95673,179,1,f +8683,96874,25,1,t +8683,970c00,1,1,f +8683,970c00,19,1,f +8683,970c00,28,1,f +8683,970c00,15,2,f +8683,973pr0808c01,15,1,f +8683,973pr1192c01,0,1,f +8683,973pr1196c01,15,1,f +8683,973pr1776c01,272,1,f +8683,973pr1918c01,73,1,f +8683,98138,46,1,t +8683,98138,46,1,f +8683,98138pr0012,179,1,f +8683,98138pr0012,179,1,t +8683,98282,15,6,f +8683,98283,72,10,f +8683,99206,15,4,f +8683,99780,71,9,f +8683,99781,0,5,f +8685,4180c01,0,2,f +8686,30103,0,1,f +8686,30139,0,1,f +8686,30239,2,1,f +8686,4095,0,1,f +8686,4j015,9999,1,f +8690,2357,4,2,f +8690,2420,15,8,f +8690,2420,0,4,f +8690,2431,0,2,f +8690,2436,0,1,f +8690,2446,320,1,f +8690,2446pr0004,15,1,f +8690,2540,25,2,f +8690,3002,0,1,f +8690,3002,15,2,f +8690,3002,25,2,f +8690,3004,4,1,f +8690,3008,15,1,f +8690,3009,72,1,f +8690,3010,15,3,f +8690,3010,25,4,f +8690,3020,72,2,f +8690,3020,0,2,f +8690,3021,15,1,f +8690,3021,14,1,f +8690,3022,0,1,f +8690,3022,4,1,f +8690,3023,47,2,f +8690,3023,25,4,f +8690,3023,0,1,f +8690,3023,15,7,f +8690,3024,15,5,f +8690,3031,1,1,f +8690,3034,15,1,f +8690,3036,15,1,f +8690,3036,0,1,f +8690,3039,72,2,f +8690,3039,4,1,f +8690,30648,0,8,f +8690,3068b,15,1,f +8690,3068b,0,2,f +8690,3069b,25,2,f +8690,3069b,0,3,f +8690,32123b,71,2,t +8690,32123b,71,8,f +8690,3460,15,3,f +8690,3460,0,6,f +8690,3623,15,4,f +8690,3623,0,4,f +8690,3626bpr0526,78,1,f +8690,3626bpr0530,78,1,f +8690,3660,15,2,f +8690,3665,25,4,f +8690,3666,72,3,f +8690,3666,4,4,f +8690,3701,72,2,f +8690,3701,0,4,f +8690,3707,0,4,f +8690,3710,71,5,f +8690,3710,4,2,f +8690,3795,0,1,f +8690,3829c01,71,1,f +8690,3829c01,4,1,f +8690,3839b,15,1,f +8690,3894,0,2,f +8690,4079,4,2,f +8690,4079,72,2,f +8690,41769,15,1,f +8690,41769,0,1,f +8690,41770,15,1,f +8690,41770,0,1,f +8690,4287,0,2,f +8690,43722,25,2,f +8690,43723,25,2,f +8690,47753,0,1,f +8690,4855,15,1,f +8690,50950,25,8,f +8690,52031,15,1,f +8690,54200,25,1,t +8690,54200,4,2,f +8690,54200,25,4,f +8690,54200,4,1,t +8690,54200,15,2,f +8690,54200,15,1,t +8690,55982,0,8,f +8690,6087,0,4,f +8690,6141,27,1,t +8690,6141,27,4,f +8690,61678,15,15,f +8690,61678,0,4,f +8690,62359,135,4,f +8690,62360,47,2,f +8690,62361,15,4,f +8690,62361,25,6,f +8690,6636,25,1,f +8690,6636,15,2,f +8690,88930,0,1,f +8690,970c00,15,1,f +8690,970c00,320,1,f +8690,973pr1390c01,1,1,f +8690,973pr1406c01,0,1,f +8691,11097,297,1,f +8691,15071,0,1,f +8691,15084pr0001,14,1,f +8691,15712,297,1,f +8691,18395,191,1,f +8691,3626cpr1426,14,1,f +8691,59900,182,1,f +8691,970c00pr0668,14,1,f +8691,973pr2675c01,14,1,f +8691,98138pr0023,182,1,f +8692,3039,4,100,f +8693,2412b,0,4,f +8693,2420,72,4,f +8693,2431,72,1,f +8693,2432,71,1,f +8693,2525,15,1,f +8693,2540,1,2,f +8693,3003,1,1,f +8693,3004,72,2,f +8693,3008,1,2,f +8693,3010,1,5,f +8693,3020,72,4,f +8693,3021,1,1,f +8693,3022,71,1,f +8693,3022,14,4,f +8693,3023,1,8,f +8693,3023,14,2,f +8693,30237a,71,1,f +8693,3032,1,2,f +8693,30355,15,1,f +8693,30356,15,1,f +8693,30361pr0006,70,1,f +8693,30362,15,2,f +8693,30367cpr0013,15,1,f +8693,30374,0,1,f +8693,30374,41,1,f +8693,3038,1,2,f +8693,3039,15,2,f +8693,3039,72,1,f +8693,3040b,15,2,f +8693,30554b,0,3,f +8693,3062b,15,2,f +8693,3068b,15,4,f +8693,3069b,72,2,f +8693,3069b,15,3,f +8693,32123b,14,1,f +8693,32123b,14,1,t +8693,32474,0,1,f +8693,3623,72,4,f +8693,3623,1,10,f +8693,3666,1,6,f +8693,3700,1,4,f +8693,3709,15,1,f +8693,3710,71,4,f +8693,3794a,71,2,f +8693,3795,71,1,f +8693,4150pr0005,15,1,f +8693,41747,1,1,f +8693,41748,1,1,f +8693,41767,1,1,f +8693,41768,1,1,f +8693,41883,40,1,f +8693,43719,15,1,f +8693,43722,1,5,f +8693,43723,1,5,f +8693,44300,72,3,f +8693,44302a,0,2,f +8693,44568,71,2,f +8693,44570,15,2,f +8693,4477,1,2,f +8693,4477,72,2,f +8693,48183,1,1,f +8693,4855,1,1,f +8693,4868b,71,2,f +8693,50955,1,1,f +8693,50956,1,1,f +8693,54383,1,2,f +8693,54383,15,1,f +8693,54384,1,2,f +8693,54384,15,1,f +8693,60471,15,1,f +8693,60479,71,2,f +8693,61200pr0001,484,1,f +8693,6141,71,6,f +8693,6141,71,1,t +8693,6191,1,2,f +8693,63864,15,2,f +8693,63868,71,1,f +8693,64567,80,1,f +8693,6541,1,2,f +8693,6558,1,2,f +8693,6587,28,1,f +8693,8093stk01,9999,1,t +8693,970c00,308,1,f +8693,973pr1402c01,308,1,f +8694,122c01,7,4,f +8694,3002a,1,1,f +8694,3003,1,1,f +8694,3004,1,7,f +8694,3005,1,7,f +8694,3008,1,1,f +8694,3009,1,4,f +8694,3010,1,2,f +8694,3020,7,4,f +8694,3020,1,1,f +8694,3022,7,1,f +8694,3023,7,2,f +8694,3023,14,2,f +8694,3024,1,1,f +8694,3024,36,2,f +8694,3024,34,4,f +8694,3029,1,1,f +8694,3034,1,1,f +8694,3036,46,1,f +8694,3036,1,1,f +8694,3039p23,1,1,f +8694,3039p34,7,1,f +8694,3039p34,1,2,f +8694,3062a,36,3,f +8694,3062a,7,2,f +8694,3062a,34,2,f +8694,3066,46,9,f +8694,3149c01,1,1,f +8694,3479,1,4,f +8694,3622,1,1,f +8694,3626apr0001,14,3,f +8694,3641,0,8,f +8694,3660p01,1,3,f +8694,3666,1,2,f +8694,3679,7,1,f +8694,3680,7,1,f +8694,3710,14,2,f +8694,3710,7,1,f +8694,3710,1,2,f +8694,3730,7,1,f +8694,3731,7,1,f +8694,3787,7,2,f +8694,3788,7,2,f +8694,3794a,7,3,f +8694,3795,7,1,f +8694,3829c01,1,2,f +8694,3829c01,7,2,f +8694,3832,1,2,f +8694,3838,4,1,f +8694,3838,15,2,f +8694,3838,7,1,f +8694,3839a,7,8,f +8694,3842a,15,2,f +8694,3842a,4,1,f +8694,3937,7,1,f +8694,3938,7,1,f +8694,3941,1,6,f +8694,3941,15,8,f +8694,3941,7,11,f +8694,3941,0,2,f +8694,3942a,15,1,f +8694,3942a,0,1,f +8694,3947a,7,1,f +8694,3956,7,3,f +8694,3956,1,4,f +8694,3957a,7,3,f +8694,3960,7,1,f +8694,3962a,0,2,f +8694,4006,0,1,f +8694,69c01,1,4,f +8694,970c00,4,1,f +8694,970c00,15,2,f +8694,973p90c02,4,1,f +8694,973p90c05,15,2,f +8694,x467c12,0,3,f +8695,12825,72,2,f +8695,2420,72,2,f +8695,2431,288,4,f +8695,2444,72,2,f +8695,2654,72,2,f +8695,2780,0,1,t +8695,2780,0,2,f +8695,3021,14,1,f +8695,3022,71,4,f +8695,3023,36,2,f +8695,3023,72,2,f +8695,3034,72,1,f +8695,30361c,288,2,f +8695,3068b,72,4,f +8695,3666,288,2,f +8695,3705,0,2,f +8695,3795,14,1,f +8695,3795,71,1,f +8695,3839b,0,1,f +8695,3942c,72,2,f +8695,4032a,14,4,f +8695,4081b,71,2,f +8695,41769,72,1,f +8695,41770,72,1,f +8695,4287,288,2,f +8695,4588,72,2,f +8695,4589,71,2,f +8695,48183,288,2,f +8695,50950,288,6,f +8695,54200,40,1,t +8695,54200,40,2,f +8695,54200,288,2,f +8695,54200,288,1,t +8695,60849,0,2,f +8695,61409,72,2,f +8695,6141,46,2,f +8695,6141,46,1,t +8695,87087,72,8,f +8695,88292,0,2,f +8696,clikits006pb02,15,1,f +8696,clikits078,41,1,f +8696,clikits088,41,1,f +8697,2357,15,2,f +8697,2412b,72,6,f +8697,2420,15,2,f +8697,2445,71,3,f +8697,2465,15,6,f +8697,3002,71,7,f +8697,3002,15,3,f +8697,3004,288,9,f +8697,3004,71,8,f +8697,3004,15,11,f +8697,3005,15,26,f +8697,3005,71,6,f +8697,3005,288,9,f +8697,3007,15,2,f +8697,3007,0,1,f +8697,3009,15,8,f +8697,3009,0,1,f +8697,3010,288,11,f +8697,3010,15,4,f +8697,3020,0,2,f +8697,3020,288,10,f +8697,3020,15,4,f +8697,3021,15,6,f +8697,3021,71,10,f +8697,3022,0,1,f +8697,3022,15,3,f +8697,3022,71,14,f +8697,3023,47,61,f +8697,3023,288,7,f +8697,3023,0,4,f +8697,3023,1,13,f +8697,3023,15,9,f +8697,3023,4,13,f +8697,3024,15,1,t +8697,3024,47,1,t +8697,3024,47,6,f +8697,3024,0,1,t +8697,3024,71,1,t +8697,3024,0,3,f +8697,3024,71,14,f +8697,3024,15,24,f +8697,3028,0,6,f +8697,3029,0,2,f +8697,3029,15,1,f +8697,3032,15,3,f +8697,3034,15,2,f +8697,30374,15,16,f +8697,30414,0,1,f +8697,3062b,15,1,f +8697,3065,47,20,f +8697,3068b,71,4,f +8697,3068b,15,3,f +8697,3069b,0,2,f +8697,3069b,47,1,f +8697,3069b,71,1,f +8697,3069b,15,9,f +8697,3070b,15,8,f +8697,3070b,71,1,t +8697,3070b,15,1,t +8697,3070b,71,79,f +8697,32000,15,2,f +8697,3456,72,2,f +8697,3460,15,2,f +8697,3622,15,11,f +8697,3623,71,9,f +8697,3623,15,12,f +8697,3623,288,1,f +8697,3660,15,1,f +8697,3666,15,5,f +8697,3666,288,19,f +8697,3710,15,6,f +8697,3794b,71,1,f +8697,3795,0,2,f +8697,3795,15,1,f +8697,3832,15,1,f +8697,4085c,71,13,f +8697,4162,15,9,f +8697,4162,0,1,f +8697,4162pr0019,0,1,f +8697,4274,71,4,f +8697,4274,71,1,t +8697,4282,0,4,f +8697,4477,0,2,f +8697,4865b,15,5,f +8697,54200,288,6,f +8697,54200,288,1,t +8697,60475b,71,2,f +8697,60477,15,3,f +8697,60479,15,4,f +8697,6091,15,9,f +8697,61678,15,3,f +8697,6191,15,2,f +8697,6231,15,2,f +8697,63864,71,1,f +8697,6636,0,12,f +8697,6636,15,1,f +8697,87079,15,1,f +8697,87087,15,2,f +8697,87087,0,2,f +8697,87552,47,5,f +8697,92438,15,2,f +8697,96874,25,1,t +8700,122c01,0,4,f +8700,3001,0,1,f +8700,3001,15,2,f +8700,3003,4,4,f +8700,3003,47,1,f +8700,3004,15,37,f +8700,3004,4,16,f +8700,3004,7,2,f +8700,3005,0,2,f +8700,3005,14,1,f +8700,3005,4,23,f +8700,3005,1,58,f +8700,3005,15,12,f +8700,3007,4,2,f +8700,3008,4,10,f +8700,3008,15,2,f +8700,3009,4,6,f +8700,3009,1,30,f +8700,3010,4,4,f +8700,3010,14,1,f +8700,3020,4,3,f +8700,3020,7,2,f +8700,3020,0,3,f +8700,3020,1,1,f +8700,3022,4,1,f +8700,3022,0,1,f +8700,3022,7,9,f +8700,3023,4,6,f +8700,3023,0,1,f +8700,3023,7,5,f +8700,3023,14,3,f +8700,3024,15,8,f +8700,3024,46,5,f +8700,3024,14,4,f +8700,3024,36,4,f +8700,3027,4,1,f +8700,3027,0,2,f +8700,3031,0,1,f +8700,3031,4,1,f +8700,3032,14,1,f +8700,3034,15,5,f +8700,3035,4,1,f +8700,3037,15,2,f +8700,3039p23,1,1,f +8700,3040b,4,2,f +8700,3040b,15,4,f +8700,3062a,0,4,f +8700,3068b,14,4,f +8700,3069b,14,1,f +8700,3069b,15,5,f +8700,3069b,0,4,f +8700,3127,7,1,f +8700,3176,7,2,f +8700,3298,14,1,f +8700,3307,4,2,f +8700,3403,0,1,f +8700,3404,0,1,f +8700,3456,0,2,f +8700,3460,15,2,f +8700,3460,4,2,f +8700,3470,2,1,f +8700,3596,15,1,f +8700,3622,1,4,f +8700,3622,4,20,f +8700,3623,4,2,f +8700,3623,15,2,f +8700,3624,0,1,f +8700,3625,0,1,f +8700,3626apr0001,14,8,f +8700,3629,0,1,f +8700,3633,14,2,f +8700,3641,0,8,f +8700,3660,15,1,f +8700,3660,4,4,f +8700,3665,15,10,f +8700,3666,15,3,f +8700,3666,1,3,f +8700,3678a,47,1,f +8700,3679,7,2,f +8700,3680,0,2,f +8700,3710,15,5,f +8700,3710,4,9,f +8700,3710,14,5,f +8700,3741,2,7,f +8700,3742,4,3,f +8700,3742,4,1,t +8700,3742,14,18,f +8700,3742,14,6,t +8700,3778,2,1,f +8700,3787,4,1,f +8700,3788,4,1,f +8700,3788,14,2,f +8700,3794a,0,1,f +8700,3795,0,2,f +8700,3795,7,2,f +8700,3795,4,1,f +8700,3795,15,6,f +8700,3821,4,1,f +8700,3821,14,1,f +8700,3822,4,1,f +8700,3822,14,1,f +8700,3823,47,3,f +8700,3829c01,14,1,f +8700,3829c01,4,1,f +8700,3832,4,1,f +8700,3832,15,2,f +8700,3832,0,2,f +8700,3832,7,7,f +8700,3833,4,4,f +8700,3837,8,1,f +8700,3853,15,13,f +8700,3854,1,4,f +8700,3854,4,8,f +8700,3855a,47,7,f +8700,3861b,1,1,f +8700,3861b,15,1,f +8700,3898,15,1,f +8700,3937,14,1,f +8700,3937,0,1,f +8700,3938,0,1,f +8700,3938,7,1,f +8700,3939,47,2,f +8700,3940b,7,2,f +8700,3941,0,6,f +8700,3956,7,4,f +8700,3957a,7,1,f +8700,3960p06,15,1,f +8700,3962a,0,1,f +8700,4006,0,1,f +8700,4032a,0,2,f +8700,4070,14,5,f +8700,4070,4,3,f +8700,4079,4,1,f +8700,4079,14,6,f +8700,4081a,7,2,f +8700,4083,4,3,f +8700,4083,0,1,f +8700,4085a,0,3,f +8700,4187,7,2,f +8700,4212b,0,1,f +8700,606p02,7,1,f +8700,608p01,7,1,f +8700,649pb09,15,2,f +8700,73037,4,1,f +8700,739p01,15,1,f +8700,80045,15,1,f +8700,812,7,4,f +8700,970c00,0,4,f +8700,970c00,4,1,f +8700,970c00,1,3,f +8700,973p13c01,4,2,f +8700,973p18c01,1,1,f +8700,973p26c01,1,2,f +8700,973p72c01,15,1,f +8700,973pb0091c01,0,1,f +8700,973px3c01,15,1,f +8702,2399,4,1,f +8702,2413,7,1,f +8702,2431,0,1,f +8702,2432,0,1,f +8702,2432,15,2,f +8702,2435,2,2,f +8702,2437,34,1,f +8702,2437,41,2,f +8702,2446,4,1,f +8702,2447,41,1,f +8702,2447,41,1,t +8702,2453a,15,4,f +8702,2508,0,1,f +8702,2513pb04,1,1,f +8702,2540,7,1,f +8702,2569,7,1,t +8702,2569,7,1,f +8702,2926,7,1,f +8702,298c02,0,1,f +8702,298c02,15,1,f +8702,298c02,0,1,t +8702,298c02,15,1,t +8702,298c05,0,1,t +8702,298c05,0,2,f +8702,3003,15,2,f +8702,3004,0,1,f +8702,3004,7,1,f +8702,3005,7,2,f +8702,3009,15,2,f +8702,3009,7,1,f +8702,3009,4,2,f +8702,3009p70,4,2,f +8702,3009pb003,1,2,f +8702,3010,1,1,f +8702,30179,0,1,f +8702,30181,0,1,f +8702,30185c05pb01,0,1,f +8702,30187c01,4,1,f +8702,3021,0,1,f +8702,3022,0,1,f +8702,3023,4,1,f +8702,30235,0,3,f +8702,3068b,1,1,f +8702,3070b,46,1,f +8702,3070b,36,1,t +8702,3070b,46,1,t +8702,3070b,36,1,f +8702,3183c,1,1,f +8702,3297,15,1,f +8702,3300,0,1,f +8702,3471,2,1,f +8702,3626bp02,14,1,f +8702,3626bp04,14,2,f +8702,3626bp05,14,2,f +8702,3641,0,2,f +8702,3660,15,2,f +8702,3710,4,1,f +8702,3741,2,1,f +8702,3742,14,1,t +8702,3742,14,3,f +8702,3829c01,7,2,f +8702,3829c01,15,1,f +8702,3865,2,1,f +8702,3899,47,1,f +8702,3957a,4,2,f +8702,4033,0,1,f +8702,4081b,15,2,f +8702,4083,7,1,f +8702,4083,15,1,f +8702,4162,14,1,f +8702,4215pb067,0,1,f +8702,4276b,1,1,f +8702,4319,0,1,f +8702,4485,15,1,f +8702,4485,0,2,f +8702,4495a,15,2,f +8702,4624,15,2,f +8702,4858pb02,15,1,f +8702,4864apx14,7,1,f +8702,4865a,0,1,t +8702,4865a,0,1,f +8702,6014a,15,12,f +8702,6015,0,12,f +8702,6019,15,2,f +8702,6019,15,1,t +8702,6019,0,1,f +8702,6079,14,2,f +8702,6093,0,1,f +8702,611p01,2,1,f +8702,612p01,2,1,f +8702,6141,33,1,t +8702,6141,36,3,t +8702,6141,36,2,f +8702,6141,33,2,f +8702,6212,0,1,f +8702,649pb03,15,1,f +8702,739p01,15,1,f +8702,76041c03,0,1,f +8702,81294,15,1,f +8702,970c00,0,4,f +8702,970c00,1,1,f +8702,973p28c01,0,1,f +8702,973p73c01,2,1,f +8702,973pr1156c01,1,1,f +8702,973px67c01,0,1,f +8702,973px9c01,0,1,f +8703,10197,72,3,f +8703,10288,308,2,f +8703,11272,148,1,f +8703,11302pat0003,15,2,f +8703,11334,15,2,f +8703,15107,41,4,f +8703,15365pat0001,1,1,f +8703,15366,148,1,f +8703,15367,15,2,f +8703,15373pr01,15,1,f +8703,15462,28,1,f +8703,16632,0,1,f +8703,16737pr0002,15,1,f +8703,2780,0,2,f +8703,2853,71,1,f +8703,32016,71,1,f +8703,32039,71,4,f +8703,32062,4,7,f +8703,32138,0,1,f +8703,3673,71,2,f +8703,3737,0,2,f +8703,40490,0,1,f +8703,41677,72,6,f +8703,43093,1,4,f +8703,54271,148,1,f +8703,54821,1,1,f +8703,57585,71,2,f +8703,59443,72,2,f +8703,60484,0,1,f +8703,64276,72,2,f +8703,74261,72,4,f +8703,78c09,0,1,f +8703,87747,15,4,f +8703,90607,0,1,f +8703,90607,41,1,f +8703,90609,41,2,f +8703,90612,0,1,f +8703,90616,0,2,f +8703,90617,72,2,f +8703,90623,0,1,f +8703,90639pr0034,148,1,f +8703,90640,148,2,f +8703,90640,41,1,f +8703,90641,15,2,f +8703,90650,148,2,f +8703,92220,41,4,f +8703,92233,15,1,f +8703,93571,0,2,f +8703,93575,41,1,f +8704,2495,4,1,f +8704,2496,0,1,f +8704,3020,2,1,f +8704,30256,71,4,f +8704,30258,72,1,f +8704,30259,15,1,f +8704,30261,15,1,f +8704,3062b,4,1,f +8704,3068b,70,1,f +8704,3069bp02,71,1,f +8704,3624,15,1,f +8704,3626bpr0043,14,1,f +8704,3626bpr0245,14,1,f +8704,3626bpr0279,14,1,f +8704,3626bpr0386,14,1,f +8704,3666,70,1,f +8704,3710,71,1,f +8704,3794b,71,1,f +8704,3899,14,1,f +8704,3901,70,1,f +8704,3962b,0,1,f +8704,4070,0,3,f +8704,4070,4,1,f +8704,4349,0,1,f +8704,44301a,71,2,f +8704,44302a,72,2,f +8704,4449,70,1,f +8704,4485,4,1,f +8704,48336,71,1,f +8704,49668,0,1,f +8704,6093,19,1,f +8704,6141,4,1,f +8704,6141,46,1,t +8704,6141,34,1,t +8704,6141,36,1,f +8704,6141,46,1,f +8704,6141,34,1,f +8704,6141,0,1,t +8704,6141,71,1,t +8704,6141,0,2,f +8704,6141,36,1,t +8704,6141,71,3,f +8704,6141,4,1,t +8704,61780,70,1,f +8704,6636,70,3,f +8704,8401stk01,9999,1,t +8704,970c00,1,1,f +8704,970c00,19,1,f +8704,970c00,0,1,f +8704,970c00,71,1,f +8704,973pr0805c01,15,1,f +8704,973pr1170c01,4,1,f +8704,973pr1188c01,0,1,f +8704,973pr1192c01,0,1,f +8705,10170,84,1,f +8705,13784,226,1,f +8705,3626cpr1240,14,1,f +8705,88646,0,1,f +8705,970c00pr0527,15,1,f +8705,973pr2412c01,288,1,f +8705,99257pr0002,15,1,f +8706,2954,8,1,f +8706,bb276,0,1,f +8707,30035,0,1,f +8707,3004,15,2,f +8707,3020,72,1,f +8707,3022,72,1,f +8707,30261p02,15,1,f +8707,30377,71,1,f +8707,30377,71,1,t +8707,3624,15,1,f +8707,3626bpr0411,14,1,f +8707,3710,15,1,f +8707,3900,15,1,f +8707,3900,15,1,t +8707,3957a,15,1,f +8707,3962b,0,1,f +8707,4085c,71,1,t +8707,4085c,71,2,f +8707,48812,70,1,f +8707,6141,33,1,t +8707,6141,33,3,f +8707,970c00,0,1,f +8707,973pr1188c01,0,1,f +8708,3022,14,1,f +8708,3176,14,1,f +8708,3710,15,2,f +8708,3839b,71,1,f +8708,4623,15,1,f +8708,4865b,322,2,f +8708,6231,322,2,f +8709,2343,14,1,f +8709,2530,8,1,t +8709,2530,8,1,f +8709,2544,0,1,f +8709,2562,6,1,f +8709,3004,7,4,f +8709,3020,7,1,f +8709,3022,7,1,f +8709,3024,7,1,f +8709,3031,14,1,f +8709,3068b,7,1,f +8709,3622,7,1,f +8709,3626bp39,14,1,f +8709,4275b,7,1,f +8709,4276b,7,1,f +8709,4864a,7,1,f +8709,57503,334,1,f +8709,57504,334,1,f +8709,57505,334,1,f +8709,57506,334,1,f +8709,6148,2,1,f +8709,970c00,0,1,f +8709,973p39c01,1,1,f +8711,3626cpr0922,0,1,f +8711,44360,15,1,f +8711,970x194,15,1,f +8711,973pr2311c01,15,1,f +8712,2540,0,1,f +8712,30027b,71,2,t +8712,30027b,71,4,f +8712,30028,0,4,f +8712,3004pt6,72,2,f +8712,3020,4,1,f +8712,3022,4,1,f +8712,3039,47,1,f +8712,4600,71,2,f +8717,62808,60,2,f +8718,11610,19,1,f +8718,15470,70,1,f +8718,15470,29,1,f +8718,15712,71,2,f +8718,23969,322,1,f +8718,2412b,71,1,f +8718,2496,0,1,f +8718,2655,71,1,f +8718,3020,26,1,f +8718,3020,15,1,f +8718,30222,42,1,f +8718,3069b,322,2,f +8718,3660,15,1,f +8718,3960pr0015,15,1,f +8718,48336,15,2,f +8718,4865b,41,2,f +8718,60897,19,2,f +8718,63965,15,1,f +8718,87544,47,1,f +8719,2780,0,10,f +8719,3062b,7,4,f +8719,3184,7,1,f +8719,3651,7,50,f +8719,3673,7,150,f +8719,3713,7,150,f +8719,3749,7,10,f +8719,4261,7,4,f +8719,4265a,7,60,f +8719,4273b,7,4,f +8719,4274,7,10,f +8720,2420,15,2,f +8720,2780,0,1,t +8720,2780,0,1,f +8720,3003,15,2,f +8720,3004,1,3,f +8720,3010,1,2,f +8720,3010,0,1,f +8720,3022,14,1,f +8720,3024,1,2,f +8720,3034,0,1,f +8720,3035,0,1,f +8720,30357,0,2,f +8720,3040b,1,2,f +8720,3069b,36,1,f +8720,3069b,33,1,f +8720,32018,0,2,f +8720,3623,72,2,f +8720,3700,72,1,f +8720,3707,0,2,f +8720,3713,71,4,f +8720,3713,71,1,t +8720,3795,1,3,f +8720,41747,0,1,f +8720,41748,0,1,f +8720,41767,15,1,f +8720,41768,15,1,f +8720,41769,15,1,f +8720,41770,15,1,f +8720,42022,1,2,f +8720,44126,0,1,f +8720,44126,15,2,f +8720,50967,1,2,f +8720,54200,15,1,t +8720,54200,15,2,f +8720,55982,0,4,f +8720,58090,0,4,f +8720,60478,0,2,f +8720,6636,15,1,f +8720,87941,72,1,f +8720,87943,4,1,f +8720,87944,72,1,f +8720,88496,72,1,f +8720,88930,15,1,f +8722,3626cpr1147,14,1,f +8722,3899,4,1,f +8722,3899,4,1,t +8722,86035,0,1,t +8722,86035,0,1,f +8722,970c00pr0406,272,1,f +8722,973pr2190c01,73,1,f +8723,15068,484,2,f +8723,15573,25,2,f +8723,15573,70,1,f +8723,15712,72,1,f +8723,18927,288,1,f +8723,18975,72,1,f +8723,2562,70,1,t +8723,2562,70,1,f +8723,30031,72,1,f +8723,30173b,0,2,f +8723,3176,0,1,f +8723,32124,70,1,f +8723,3626cpr1557,14,1,f +8723,3795,308,2,f +8723,4081b,72,4,f +8723,41854,0,1,f +8723,4790,70,1,f +8723,4871,70,1,f +8723,61409,484,1,f +8723,95228,40,2,f +8723,95354,0,1,f +8723,970x192pr0001,70,1,f +8723,973pr9992,70,1,f +8724,11939,4,1,f +8724,11940,27,1,f +8724,11941,73,1,f +8724,11942,484,1,f +8724,13164,25,1,f +8724,13165,14,1,f +8724,13168,10,1,f +8724,13170,2,1,f +8724,13171,1,1,f +8724,13172,85,1,f +8724,2301,4,2,f +8724,2302,25,1,f +8724,3011,25,1,f +8724,3011,27,2,f +8724,3011,71,1,f +8724,31110,4,2,f +8724,3437,15,2,f +8724,3437,1,7,f +8724,3437,25,6,f +8724,3437,27,4,f +8724,3437,4,2,f +8724,3437,2,5,f +8724,3437,484,11,f +8724,3437,14,6,f +8724,3437,10,5,f +8724,3437,85,8,f +8724,3437,73,6,f +8724,3437pr0049,14,1,f +8724,3664,4,1,f +8724,40666,14,1,f +8724,40666,25,1,f +8724,40666,4,2,f +8724,40666,15,1,f +8724,41978,72,4,f +8724,44524,4,1,f +8724,44524,1,2,f +8724,44524,10,4,f +8724,47510pr0006,15,1,f +8724,61310,72,2,f +8724,61649,14,3,f +8724,63871,4,2,f +8724,6474,10,4,f +8724,6510,10,1,f +8724,6510,14,2,f +8724,75115pr0006,73,1,f +8724,90265,15,3,f +8724,98223,73,1,f +8724,98252,27,1,f +8725,11477,15,2,f +8725,11609,297,5,f +8725,11609,191,3,f +8725,11609,297,2,t +8725,11609,191,1,t +8725,11610,19,1,f +8725,11816pr0003,78,1,f +8725,11816pr0022,78,1,f +8725,14769pr1020,297,1,f +8725,15210,0,1,f +8725,15395,179,1,f +8725,15573,0,2,f +8725,15677,26,1,f +8725,15712,0,1,f +8725,18671,72,1,f +8725,18853,191,1,t +8725,18853,191,1,f +8725,18854,52,1,t +8725,18854,52,1,f +8725,18892,0,2,f +8725,22667,27,1,f +8725,22667,27,1,t +8725,2343,47,2,f +8725,2412b,272,1,f +8725,2412b,297,2,f +8725,2432,71,1,f +8725,2449,0,2,f +8725,2449,15,1,f +8725,2654,0,1,f +8725,3003,0,1,f +8725,3004,29,3,f +8725,3004,0,1,f +8725,3004,15,2,f +8725,3004,322,1,f +8725,3005,71,3,f +8725,3005,0,2,f +8725,3005,15,4,f +8725,3007,0,1,f +8725,3008,0,1,f +8725,30089,0,1,f +8725,3010,15,2,f +8725,30136,31,2,f +8725,3020,15,5,f +8725,3020,71,4,f +8725,3021,14,4,f +8725,3022,15,2,f +8725,3022,14,1,f +8725,3023,14,6,f +8725,3023,85,1,f +8725,3023,71,2,f +8725,3023,26,1,f +8725,3023,0,3,f +8725,3023,15,2,f +8725,3024,30,2,f +8725,3024,30,1,t +8725,3024,15,1,t +8725,3024,15,4,f +8725,3031,15,1,f +8725,3035,71,2,f +8725,3035,4,1,f +8725,30350b,15,1,f +8725,3062b,0,1,f +8725,3065,47,1,f +8725,3068b,29,2,f +8725,3068b,5,2,f +8725,32028,71,2,f +8725,3245c,0,1,f +8725,33291,5,1,t +8725,33291,5,4,f +8725,3460,30,3,f +8725,3623,26,2,f +8725,3623,85,1,f +8725,3665,15,6,f +8725,3666,26,2,f +8725,3666,15,5,f +8725,3710,15,1,f +8725,3710,26,1,f +8725,3710,30,1,f +8725,3710,71,2,f +8725,3741,2,1,f +8725,3741,2,1,t +8725,3795,15,2,f +8725,3821,15,1,f +8725,3822,15,1,f +8725,3829c01,15,1,f +8725,3832,72,2,f +8725,4070,0,3,f +8725,4081b,15,2,f +8725,43337,40,5,f +8725,43898,71,1,f +8725,4449,5,1,f +8725,4460b,0,2,f +8725,4460b,15,1,f +8725,4477,0,2,f +8725,4740,42,1,f +8725,47457,71,1,f +8725,48092,15,2,f +8725,48336,297,1,f +8725,4865a,40,2,f +8725,50745,15,6,f +8725,51739,15,1,f +8725,52031,15,1,f +8725,52037,15,1,f +8725,6003,85,2,f +8725,6014b,297,4,f +8725,60477,0,1,f +8725,60477,15,2,f +8725,60478,15,2,f +8725,60479,15,1,f +8725,6091,0,2,f +8725,6091,15,2,f +8725,6112,15,1,f +8725,6141,42,8,f +8725,6141,42,2,t +8725,6141,71,2,t +8725,6141,71,4,f +8725,6231,15,4,f +8725,62360,40,1,f +8725,64644,297,4,f +8725,6541,0,2,f +8725,85984,0,1,f +8725,87079,26,2,f +8725,87087,15,2,f +8725,87580,85,1,f +8725,87697,0,4,f +8725,87994,0,1,t +8725,87994,0,1,f +8725,88930,15,1,f +8725,90370pr0005,0,1,t +8725,90370pr0005,0,1,f +8725,92256,70,1,f +8725,92280,71,2,f +8725,92338,0,2,f +8725,92456pr0077c01,78,1,f +8725,92456pr0083c01,78,1,f +8725,92593,0,1,f +8725,92820pr0011c01,30,1,f +8725,93095,29,4,f +8725,93274,15,2,f +8725,98138,41,1,t +8725,98138,41,2,f +8725,98138,45,4,f +8725,98138,47,1,f +8725,98138,297,6,f +8725,98138,47,1,t +8725,98138,297,1,t +8725,99781,15,2,f +8726,2412b,15,1,f +8726,2436,4,1,f +8726,3023,15,2,f +8726,3024,46,2,f +8726,3024,36,2,f +8726,3062b,14,1,f +8726,3626bpr0325,14,1,f +8726,3641,0,4,f +8726,3788,4,1,f +8726,3795,72,1,f +8726,3829c01,15,1,f +8726,3834,15,1,f +8726,4083,15,1,f +8726,4211,4,1,f +8726,43719,4,1,f +8726,4599a,14,1,f +8726,4600,0,2,f +8726,4624,15,4,f +8726,6141,33,1,t +8726,6141,33,2,f +8726,970c00,0,1,f +8726,973pr1667c01,0,1,f +8727,2780,0,6,f +8727,2780,0,1,t +8727,32062,4,2,f +8727,4274,1,1,t +8727,4274,1,1,f +8727,43093,1,3,f +8727,4519,71,1,f +8727,47297,272,2,f +8727,47297,15,2,f +8727,47306,272,1,f +8727,47311,15,1,f +8727,49423,135,1,f +8727,53543,15,2,f +8727,53544,15,1,f +8727,53545,272,1,f +8727,53549,15,2,f +8727,55615,71,1,f +8727,60176,272,3,f +8727,61054,73,4,f +8727,64251,15,2,f +8727,64260pat0001,15,1,f +8727,64262,143,1,f +8727,64268pat0001,15,1,f +8727,64273pat0001,15,2,f +8727,64275,135,2,f +8727,64277c01,297,1,f +8727,64889pr0001,135,1,f +8727,6587,72,1,f +8728,2420,4,8,f +8728,3023,4,16,f +8728,3024,4,16,f +8728,3460,4,8,f +8728,3623,4,8,f +8728,3666,4,8,f +8728,3710,4,16,f +8728,4477,4,4,f +8729,32013,0,1,f +8729,32013,73,1,f +8729,32015,73,2,f +8729,32062,0,3,f +8729,32140,0,2,f +8729,32174,0,1,f +8729,32474,0,1,f +8729,32523,0,1,f +8729,32551,1,1,f +8729,32576,1,2,f +8729,41664,1,1,f +8729,41669,57,2,f +8729,42042,1,1,f +8729,42042und,22,1,f +8729,43093,0,1,t +8729,43093,0,2,f +8729,4519,0,1,f +8729,6553,0,1,f +8729,6558,0,2,f +8730,2780,0,2,f +8730,32062,4,4,f +8730,32174,71,2,f +8730,32475,15,3,f +8730,42003,4,1,f +8730,4274,71,6,f +8730,4274,71,1,t +8730,43857,71,2,f +8730,4519,71,5,f +8730,47297,15,1,f +8730,47306,15,1,f +8730,47311,15,1,f +8730,47312,72,1,f +8730,47313,57,1,f +8730,50898,73,4,f +8730,53543,15,2,f +8730,53544,15,2,f +8730,53545,15,1,f +8730,53548,15,2,f +8730,57523c01,135,1,f +8730,57525,4,9,f +8730,57528,135,2,f +8730,57535,135,1,f +8730,57539,0,2,f +8730,57539,135,1,f +8730,57544,135,2,f +8730,57702,41,1,f +8730,6558,0,2,f +8731,3437,4,2,f +8731,40666,25,1,f +8731,6510,10,1,f +8731,98223,4,1,f +8731,98224,4,1,f +8735,2412b,4,1,f +8735,2420,0,2,f +8735,298c02,15,2,f +8735,298c02,15,1,t +8735,3004,1,2,f +8735,3004,73,2,f +8735,3005,73,3,f +8735,3005,14,4,f +8735,3010,73,2,f +8735,3010,1,2,f +8735,3020,15,1,f +8735,3021,15,1,f +8735,3021,1,2,f +8735,3021,8,1,f +8735,3022,1,1,f +8735,3023,1,1,f +8735,3023,0,2,f +8735,30383,0,2,f +8735,3039,1,1,f +8735,3040b,14,1,f +8735,3040b,1,2,f +8735,30554a,0,6,f +8735,30602,25,1,f +8735,3298,1,1,f +8735,3623,0,1,f +8735,3623,1,1,f +8735,3660,1,1,f +8735,3665,73,4,f +8735,3665,14,4,f +8735,3666,1,2,f +8735,3710,1,2,f +8735,3747b,1,1,f +8735,3937,1,1,f +8735,3938,0,1,f +8735,4070,1,2,f +8735,4081b,0,2,f +8735,41769,1,1,f +8735,41770,1,1,f +8735,4286,73,1,f +8735,4286,14,6,f +8735,4287,14,2,f +8735,43719,1,1,f +8735,43722,73,1,f +8735,43723,73,1,f +8735,44302a,0,6,f +8735,44302a,1,2,f +8735,4740,15,2,f +8735,4740,14,2,f +8735,6141,0,1,t +8735,6141,36,3,f +8735,6141,0,4,f +8735,6141,15,2,f +8735,6141,15,1,t +8735,6141,1,1,t +8735,6141,36,1,t +8735,6141,1,2,f +8735,6541,14,2,f +8735,73983,0,6,f +8736,6581,0,4,f +8736,6582,15,4,f +8737,2736,7,1,f +8737,2780,0,2,f +8737,2905,8,2,f +8737,32002,8,1,f +8737,32002,8,1,t +8737,32014,0,2,f +8737,32015,8,3,f +8737,32016,8,1,f +8737,32017,4,1,f +8737,32034,0,2,f +8737,32034,7,1,f +8737,32039,8,4,f +8737,32062,0,6,f +8737,32072,8,3,f +8737,32073,7,6,f +8737,32123b,7,1,t +8737,32123b,7,6,f +8737,32138,0,1,f +8737,32174,15,6,f +8737,32174,135,1,f +8737,32192,0,2,f +8737,32269,7,1,f +8737,32270,7,2,f +8737,32278,8,2,f +8737,32316,8,1,f +8737,32449,8,12,f +8737,32474,0,1,f +8737,32475,15,2,f +8737,32489,15,1,f +8737,32505,8,1,f +8737,32523,8,1,f +8737,32553,15,1,f +8737,32553,8,1,f +8737,32554,54,1,f +8737,3705,0,3,f +8737,3706,0,2,f +8737,3707,0,3,f +8737,3708,0,2,f +8737,3713,7,1,t +8737,3713,7,9,f +8737,3749,19,3,f +8737,41664,179,1,f +8737,41668,135,2,f +8737,41677,4,2,f +8737,41677,135,4,f +8737,41752,8,1,f +8737,42003,0,1,f +8737,42003,8,1,f +8737,43093,1,9,f +8737,43557,15,4,f +8737,43558,178,1,f +8737,43559,178,2,f +8737,44033,179,3,f +8737,44036,179,2,f +8737,44136,8,6,f +8737,44139,8,6,f +8737,44140,179,6,f +8737,44813,179,1,f +8737,44814,117,1,f +8737,44814,178,1,f +8737,44938,179,2,f +8737,4519,7,11,f +8737,6536,0,5,f +8737,6538b,135,4,f +8737,6553,0,3,f +8737,6558,0,8,f +8737,6587,8,2,f +8737,6632,135,4,f +8737,78c09,179,2,f +8737,78c11,179,2,f +8737,78c16,179,2,f +8737,85543,15,1,t +8737,85543,15,1,f +8740,2456,4,2,f +8740,3001,4,3,f +8740,3001,14,2,f +8740,3001,1,2,f +8740,3001,15,1,f +8740,3001pr1,14,1,f +8740,3002,4,2,f +8740,3003,4,4,f +8740,3003,0,2,f +8740,3003,15,2,f +8740,3003,1,2,f +8740,3003,14,4,f +8740,3003pe2,14,2,f +8740,3007,14,1,f +8741,2780,0,1,t +8741,2780,0,2,f +8741,32062,4,2,f +8741,41531,15,2,f +8741,43093,1,4,f +8741,43899,72,1,f +8741,46667,72,2,f +8741,48729b,72,1,t +8741,48729b,72,3,f +8741,53551,148,3,f +8741,54821,179,1,f +8741,64262,42,1,f +8741,78c18,179,2,f +8741,87808,4,1,f +8741,90607,0,2,f +8741,90609,72,2,f +8741,90611,0,2,f +8741,90616,72,2,f +8741,90617,0,2,f +8741,90625,0,1,f +8741,90639,57,1,f +8741,90639,15,2,f +8741,90641,15,1,f +8741,90641,179,1,f +8741,90650,4,2,f +8741,90661,4,2,f +8741,92216,179,1,f +8741,92223,179,1,f +8741,93571,0,3,f +8741,93575,4,1,f +8741,98562,148,2,f +8741,98563,4,1,f +8741,98564,4,1,f +8741,98569pr0007,4,1,f +8741,98570pat01,15,1,f +8742,3007mia,4,6,f +8742,3007mia,15,2,f +8742,3297mia,2,24,f +8742,3298mia,2,8,f +8742,3299mia,2,6,f +8742,3853mi,15,2,f +8742,3861mi,15,2,f +8742,604mi,15,4,f +8742,m3001,15,6,f +8742,m3001,4,20,f +8742,m3003,4,26,f +8742,m3003,15,2,f +8742,x1561,2,1,f +8745,3001,15,2,f +8745,3002,4,1,f +8745,3003,15,3,f +8745,3003,4,2,f +8745,3004,0,4,f +8745,3004,4,5,f +8745,3004,1,16,f +8745,3005,4,3,f +8745,3005,1,14,f +8745,3008,1,4,f +8745,3009,1,7,f +8745,3009,0,1,f +8745,3010,0,1,f +8745,3010,1,6,f +8745,3020,15,1,f +8745,3020,4,1,f +8745,3022,0,1,f +8745,3023,15,4,f +8745,3023,0,1,f +8745,3023,4,1,f +8745,3024,0,3,f +8745,3024,1,2,f +8745,3028,1,1,f +8745,3031,4,1,f +8745,3031,15,1,f +8745,3033,4,1,f +8745,3038,4,4,f +8745,3039,4,4,f +8745,3045,4,2,f +8745,3062a,0,6,f +8745,3062a,46,1,f +8745,3068b,15,4,f +8745,3069b,14,1,f +8745,3069bpr0099,15,2,f +8745,3081cc01,14,3,f +8745,3297,4,11,f +8745,3298,4,5,f +8745,3299,4,3,f +8745,3300,4,1,f +8745,3460,1,3,f +8745,3622,4,2,f +8745,3622,0,2,f +8745,3622,1,19,f +8745,3623,4,2,f +8745,3623,0,1,f +8745,3625,0,1,f +8745,3626a,47,3,f +8745,3626apr0001,14,2,f +8745,3660,1,2,f +8745,3665,1,2,f +8745,3679,7,2,f +8745,3680,15,2,f +8745,3710,1,3,f +8745,3710,4,1,f +8745,3741,2,7,f +8745,3742,14,7,f +8745,3742,15,7,f +8745,3742,4,7,f +8745,3742,4,1,t +8745,3742,15,1,t +8745,3742,14,1,t +8745,3795,15,2,f +8745,3795,1,2,f +8745,3857,2,1,f +8745,3861b,14,1,f +8745,3899,47,4,f +8745,3901,0,1,f +8745,3957a,7,1,f +8745,3960p04,15,1,f +8745,4079,15,4,f +8745,4345ap03,14,1,f +8745,4346p03,14,1,f +8745,4347,14,2,f +8745,6372stk01,9999,1,t +8745,970c00,0,1,f +8745,970c00,4,1,f +8745,973p01c01,15,1,f +8745,973p13c01,4,1,f +8748,4332,366,1,f +8748,556,7,1,f +8748,fab5a,-1,1,f +8750,3001,4,18,f +8750,3001,0,12,f +8750,3001,15,18,f +8750,3001,14,18,f +8750,3001,1,18,f +8750,3002,15,10,f +8750,3002,1,10,f +8750,3002,4,10,f +8750,3002,0,8,f +8750,3002,14,10,f +8750,3003,14,24,f +8750,3003,1,24,f +8750,3003,0,22,f +8750,3003,15,24,f +8750,3003,4,24,f +8750,3004,0,40,f +8750,3004,14,46,f +8750,3004,4,46,f +8750,3004,15,46,f +8750,3004,1,46,f +8750,3005,4,40,f +8750,3005,0,36,f +8750,3005,1,40,f +8750,3005,14,40,f +8750,3005,15,40,f +8750,3009,4,6,f +8750,3009,1,6,f +8750,3009,0,4,f +8750,3009,15,6,f +8750,3009,14,6,f +8750,3010,4,32,f +8750,3010,0,28,f +8750,3010,1,32,f +8750,3010,15,32,f +8750,3010,14,32,f +8750,3622,4,20,f +8750,3622,15,20,f +8750,3622,14,20,f +8750,3622,1,20,f +8750,3622,0,16,f +8752,2348b,33,1,f +8752,2349a,0,1,f +8752,2362a,33,2,f +8752,2376,0,1,f +8752,2412b,7,2,f +8752,2420,7,4,f +8752,2431,0,4,f +8752,2431,1,4,f +8752,2435,2,1,f +8752,2436,7,2,f +8752,2456,0,1,f +8752,2465,7,4,f +8752,2540,7,1,f +8752,2617,8,1,f +8752,2635a,4,2,f +8752,2921,0,4,f +8752,3001,0,7,f +8752,3002,4,4,f +8752,3003,0,2,f +8752,3003,7,2,f +8752,3004,0,2,f +8752,3007,0,1,f +8752,3008,4,2,f +8752,3009,4,2,f +8752,3009,7,1,f +8752,3010,1,5,f +8752,3010,4,2,f +8752,3010,7,2,f +8752,3010,0,2,f +8752,30104,8,1,f +8752,3020,7,1,f +8752,3022,0,5,f +8752,3022,7,3,f +8752,3023,7,7,f +8752,3024,46,5,f +8752,3024,36,2,f +8752,3032,0,4,f +8752,3034,0,9,f +8752,3035,0,2,f +8752,3036,0,1,f +8752,3062b,36,1,f +8752,3062b,46,1,f +8752,3068b,4,1,f +8752,3069b,4,3,f +8752,3069b,1,2,f +8752,3069bpr0100,2,1,f +8752,3127,7,1,f +8752,32083,0,1,f +8752,3626bp03,14,2,f +8752,3639,7,1,f +8752,3640,7,1,f +8752,3666,0,5,f +8752,3666,7,2,f +8752,3666,1,2,f +8752,3679,7,1,f +8752,3680,0,1,f +8752,3701,4,2,f +8752,3707,0,1,f +8752,3710,0,2,f +8752,3738,7,1,f +8752,3795,0,1,f +8752,3821,1,1,f +8752,3822,1,1,f +8752,3823,41,1,f +8752,3829c01,7,3,f +8752,3901,6,1,f +8752,3941,0,2,f +8752,4083,15,1,f +8752,4085c,1,2,f +8752,4150,7,1,f +8752,4162,0,6,f +8752,4214,1,1,f +8752,4215b,33,2,f +8752,4286,7,6,f +8752,4286,4,4,f +8752,4345b,7,1,f +8752,4346px3,7,1,f +8752,4460a,4,2,f +8752,4485,15,1,f +8752,4519,0,1,f +8752,4557stk01,9999,1,t +8752,4597,0,1,f +8752,4623,1,2,f +8752,4872,41,2,f +8752,56823,0,1,f +8752,6014a,7,6,f +8752,6015,0,6,f +8752,6016,0,1,f +8752,6019,15,1,f +8752,6111,4,2,f +8752,6157,0,3,f +8752,6538b,2,1,f +8752,6553,14,1,f +8752,6636,15,2,f +8752,890p01,15,1,f +8752,892pb08,15,1,f +8752,970c00,8,1,f +8752,970c00,2,1,f +8752,973px122c01,1,1,f +8752,973px8c01,1,1,f +8753,9767,9999,1,f +8755,2357,4,2,f +8755,3001,4,2,f +8755,3001,14,2,f +8755,3003,4,1,f +8755,3003,14,1,f +8755,3004,14,6,f +8755,3004,4,8,f +8755,3004,1,1,f +8755,3004p51,14,1,f +8755,3005,1,2,f +8755,3005,4,8,f +8755,3005,14,6,f +8755,3005,0,2,f +8755,3009,4,4,f +8755,3010,4,8,f +8755,3010,14,4,f +8755,3020,1,2,f +8755,3021,1,2,f +8755,3022,1,2,f +8755,3031,1,1,f +8755,3034,1,1,f +8755,3039,47,2,f +8755,3040b,14,2,f +8755,3081cc01,15,2,f +8755,3137c01,0,2,f +8755,3297,1,2,f +8755,3298,1,4,f +8755,3299,1,1,f +8755,3300,1,2,f +8755,3622,14,4,f +8755,3622,4,4,f +8755,3641,0,4,f +8755,3660,14,2,f +8755,3741,2,2,f +8755,3742,4,1,t +8755,3742,4,3,f +8755,3742,15,1,t +8755,3742,15,3,f +8755,3795,1,1,f +8755,3853,15,2,f +8755,3854,4,4,f +8755,3861b,15,1,f +8755,3865,2,1,f +8755,6007,8,1,f +8756,3001a,15,1,f +8756,3002a,15,5,f +8756,3008,15,2,f +8756,3009,15,2,f +8756,3010,47,3,f +8756,3010pb036e,15,1,f +8756,3024,1,2,f +8756,3030,15,1,f +8756,3032,15,1,f +8756,3037,47,1,f +8756,3038,47,1,f +8756,3040a,4,1,f +8756,3070a,15,1,f +8756,3137c01,0,2,f +8756,3139,0,4,f +8756,3460,7,2,f +8756,3460,15,4,f +8756,3461,15,1,f +8756,3462,15,1,f +8757,10048,84,1,f +8757,10053,179,1,f +8757,3626cpr1081,78,1,f +8758,10928,72,3,f +8758,11153,71,2,f +8758,11214,72,21,f +8758,11478,0,12,f +8758,11949,71,2,f +8758,11950,71,2,f +8758,15038,0,4,f +8758,15100,0,12,f +8758,15458,10,4,f +8758,15458,15,1,f +8758,15458,0,6,f +8758,15462,28,2,f +8758,18575,0,3,f +8758,18677,71,2,f +8758,18944,10,8,f +8758,18946,4,2,f +8758,18947,72,1,f +8758,18948,15,1,f +8758,2412b,71,2,f +8758,2736,71,2,f +8758,2780,0,241,f +8758,2780,0,5,t +8758,2819,71,1,f +8758,2825,0,2,f +8758,2850b,71,8,f +8758,2851,14,8,f +8758,2852,71,8,f +8758,2853,14,2,f +8758,2854,19,3,f +8758,3024,71,2,f +8758,3024,71,1,t +8758,30367c,71,2,f +8758,32002,19,1,t +8758,32002,19,6,f +8758,32005a,0,4,f +8758,32009,4,2,f +8758,32009,15,4,f +8758,32013,15,14,f +8758,32014,4,1,f +8758,32015,15,2,f +8758,32015,0,2,f +8758,32015,71,4,f +8758,32017,71,4,f +8758,32034,0,5,f +8758,32039,4,4,f +8758,32054,71,17,f +8758,32054,0,4,f +8758,32062,4,16,f +8758,32068,71,2,f +8758,32072,0,4,f +8758,32073,71,13,f +8758,32123b,14,1,t +8758,32123b,14,8,f +8758,32140,0,18,f +8758,32140,15,4,f +8758,32140,71,9,f +8758,32184,4,6,f +8758,32198,19,1,f +8758,32199,0,2,f +8758,32235,15,3,f +8758,32270,0,6,f +8758,32278,0,10,f +8758,32291,71,2,f +8758,32316,15,5,f +8758,32316,71,11,f +8758,32316,10,6,f +8758,32316,0,6,f +8758,32333,71,2,f +8758,32348,71,1,f +8758,32494,71,4,f +8758,32523,15,7,f +8758,32524,10,6,f +8758,32524,71,13,f +8758,32524,0,7,f +8758,32525,0,5,f +8758,32525,15,1,f +8758,32525,10,4,f +8758,32526,0,5,f +8758,32526,71,10,f +8758,32556,19,6,f +8758,33299a,71,4,f +8758,3623,71,2,f +8758,3648b,72,1,f +8758,3705,0,13,f +8758,3706,0,15,f +8758,3713,71,38,f +8758,3713,71,2,t +8758,3737,0,1,f +8758,3749,19,2,f +8758,3832,4,1,f +8758,3941,71,2,f +8758,40490,15,2,f +8758,40490,0,12,f +8758,41239,15,7,f +8758,41239,71,11,f +8758,4162,4,2,f +8758,42003,10,30,f +8758,42003,0,10,f +8758,4274,1,1,t +8758,4274,1,6,f +8758,43093,1,43,f +8758,43093,1,2,t +8758,43898,47,2,f +8758,44294,71,8,f +8758,44771,0,4,f +8758,44809,71,2,f +8758,4519,71,31,f +8758,4716,71,2,f +8758,4740,47,2,f +8758,55013,72,1,f +8758,55615,71,4,f +8758,57515,72,4,f +8758,59443,14,9,f +8758,59443,0,13,f +8758,60483,71,13,f +8758,60484,0,14,f +8758,60485,71,4,f +8758,61184,71,2,f +8758,6141,36,1,t +8758,6141,47,2,f +8758,6141,47,1,t +8758,6141,36,4,f +8758,62462,71,4,f +8758,62462,15,10,f +8758,62531,15,2,f +8758,62821,72,1,f +8758,63869,0,7,f +8758,64178,71,3,f +8758,64179,71,1,f +8758,64391,10,5,f +8758,64392,15,1,f +8758,64393,10,2,f +8758,64393,15,3,f +8758,64681,10,2,f +8758,64681,15,3,f +8758,64682,15,1,f +8758,64683,10,5,f +8758,64782,0,2,f +8758,6536,0,14,f +8758,6536,10,4,f +8758,6542b,72,2,f +8758,6558,1,113,f +8758,6587,28,5,f +8758,6589,19,1,t +8758,6589,19,6,f +8758,6628,0,8,f +8758,6628,0,1,t +8758,6629,4,2,f +8758,6629,0,2,f +8758,6641,4,1,f +8758,76537,14,4,f +8758,78c11,179,2,f +8758,87080,15,1,f +8758,87082,71,6,f +8758,87083,72,13,f +8758,87086,15,1,f +8758,87408,0,3,f +8758,87761,0,1,f +8758,92906,72,2,f +8758,92909,72,4,f +8758,94925,71,4,f +8760,2412b,72,2,f +8760,2540,4,2,f +8760,2540,72,3,f +8760,2540,1,2,f +8760,2555,0,8,f +8760,2566,0,1,f +8760,2569,19,2,f +8760,2654,4,1,f +8760,2654,19,1,f +8760,2654,72,4,f +8760,2654,1,1,f +8760,30035,0,1,f +8760,30162,0,2,f +8760,3020,71,1,f +8760,3021,1,2,f +8760,3021,0,1,f +8760,3022,70,1,f +8760,3022,272,1,f +8760,3022,72,3,f +8760,3022,320,1,f +8760,3023,4,3,f +8760,3023,19,1,f +8760,3023,70,2,f +8760,3023,72,6,f +8760,3023,1,1,f +8760,3024,272,3,f +8760,3024,320,3,f +8760,3024,70,3,f +8760,30383,0,6,f +8760,3045,272,2,f +8760,3062b,0,11,f +8760,3068b,72,2,f +8760,3069b,19,5,f +8760,3069b,1,5,f +8760,3069b,4,5,f +8760,3176,0,2,f +8760,3176,320,2,f +8760,3176,272,2,f +8760,3794a,0,3,f +8760,3832,72,1,f +8760,4032a,71,3,f +8760,4081b,71,3,f +8760,4085c,0,6,f +8760,4095,0,1,f +8760,4150,0,1,f +8760,41747,272,1,f +8760,41748,272,1,f +8760,41769,1,1,f +8760,41770,1,1,f +8760,41854,320,2,f +8760,41855,4,2,f +8760,41855,19,2,f +8760,41855,1,2,f +8760,44302a,4,4,f +8760,44302a,1,4,f +8760,44302a,72,6,f +8760,44302a,19,4,f +8760,44567a,72,12,f +8760,44728,0,3,f +8760,4588,72,4,f +8760,47458,0,2,f +8760,47758,0,2,f +8760,47905,0,1,f +8760,49668,4,2,f +8760,49668,1,2,f +8760,49668,19,2,f +8760,49668,72,2,f +8760,57467,383,2,f +8760,6091,72,2,f +8760,6141,36,1,t +8760,6141,19,1,t +8760,6141,57,4,f +8760,6141,46,1,f +8760,6141,4,1,f +8760,6141,46,1,t +8760,6141,1,1,t +8760,6141,19,1,f +8760,6141,4,1,t +8760,6141,57,1,t +8760,6141,36,1,f +8760,6141,71,8,f +8760,6141,0,5,f +8760,6141,71,1,t +8760,6141,1,1,f +8760,6141,0,1,t +8760,6538b,0,3,f +8760,73983,4,2,f +8760,73983,1,2,f +8760,73983,19,2,f +8761,194cx1,2,1,f +8761,2431,15,3,f +8761,2432,4,1,f +8761,2437,41,1,f +8761,2445,1,1,f +8761,2718stk01,9999,1,t +8761,2718stk02,9999,1,t +8761,30027b,15,4,f +8761,30028,0,4,f +8761,3004,2,1,f +8761,3004,4,1,f +8761,3010,15,2,f +8761,3020,15,1,f +8761,3022,15,1,f +8761,3022,4,3,f +8761,3023,2,3,f +8761,3023,46,2,f +8761,3023,15,3,f +8761,3024,36,2,f +8761,3024,15,2,f +8761,3034,0,2,f +8761,3039pc5,7,1,f +8761,3040b,15,2,f +8761,3069b,15,1,f +8761,3070b,34,1,f +8761,3070b,15,2,f +8761,3070b,36,2,f +8761,3298,7,2,f +8761,3585,15,1,f +8761,3586,15,1,f +8761,3624,0,1,f +8761,3626bp04,14,2,f +8761,3626bpr0001,14,1,f +8761,3666,15,7,f +8761,3666,1,1,f +8761,3679,7,1,f +8761,3680,0,1,f +8761,3710,15,2,f +8761,3710,1,5,f +8761,3710,2,2,f +8761,3794a,15,1,f +8761,3795,15,1,f +8761,3823,41,1,f +8761,3829c01,7,1,f +8761,3870,7,3,f +8761,3901,0,1,f +8761,3935,15,1,f +8761,3936,15,1,f +8761,4070,7,2,f +8761,4079,14,2,f +8761,4150,4,1,f +8761,4211,2,1,f +8761,4449,6,1,f +8761,4485,4,1,f +8761,4625,15,3,f +8761,4744,15,2,f +8761,4854,15,1,f +8761,4854,7,2,f +8761,4855,7,2,f +8761,4856a,15,1,f +8761,4856a,1,1,f +8761,4857,15,3,f +8761,4858,15,1,f +8761,4859,1,1,f +8761,4859,15,2,f +8761,4861,15,1,f +8761,4864b,15,8,f +8761,4865a,15,2,f +8761,4865a,41,1,f +8761,4867,15,1,f +8761,4868a,15,2,f +8761,4869,7,2,f +8761,6157,0,2,f +8761,6230,0,6,f +8761,6636,1,1,f +8761,970c00,0,1,f +8761,970c00,7,2,f +8761,973c11,0,1,f +8761,973p73c01,2,1,f +8761,973px189c01,0,1,f +8764,10830pat0001,0,1,f +8764,11090,70,2,f +8764,11476,15,4,f +8764,15064,15,1,f +8764,15573,72,1,f +8764,15573,15,1,f +8764,15712,15,6,f +8764,2540,15,1,f +8764,2540,71,1,f +8764,2654,15,1,f +8764,30154,72,1,f +8764,30162,72,1,f +8764,3020,70,2,f +8764,3022,70,2,f +8764,3022,15,1,f +8764,3022,72,1,f +8764,3023,70,1,f +8764,3024,1,2,t +8764,3024,1,2,f +8764,30374,15,2,f +8764,30377,71,1,f +8764,30377,71,1,t +8764,3039,70,1,f +8764,3062b,47,1,f +8764,3062b,71,1,f +8764,3069b,47,1,f +8764,3069b,70,1,f +8764,3070b,72,2,t +8764,3070b,15,1,t +8764,3070b,72,17,f +8764,3070b,15,16,f +8764,3622,15,1,f +8764,3626cpr0580,14,1,f +8764,3626cpr1349,14,1,f +8764,3626cpr1353,14,1,f +8764,3899,47,2,f +8764,3937,0,1,f +8764,3958,71,3,f +8764,4081b,15,2,f +8764,4533,15,1,f +8764,4536,15,2,f +8764,4740,71,1,f +8764,4740,70,2,f +8764,4865b,15,1,f +8764,53451,15,1,t +8764,53451,15,6,f +8764,59363,484,1,f +8764,59900,15,1,t +8764,59900,40,1,f +8764,59900,15,1,f +8764,60470a,15,5,f +8764,60478,15,4,f +8764,60849,15,1,t +8764,60849,15,2,f +8764,6091,72,1,f +8764,6134,71,1,f +8764,6141,47,1,t +8764,6141,71,1,f +8764,6141,46,1,f +8764,6141,71,1,t +8764,6141,70,2,f +8764,6141,46,1,t +8764,6141,47,1,f +8764,6141,70,1,t +8764,6141,15,8,f +8764,6141,15,1,t +8764,6179pr0011,0,1,f +8764,6231,15,2,f +8764,62696,308,1,f +8764,64567,71,1,t +8764,64567,71,1,f +8764,6636,72,1,f +8764,87087,71,1,f +8764,87552,70,1,f +8764,87989,71,1,t +8764,87989,71,2,f +8764,87990,226,1,f +8764,87994,71,1,f +8764,87994,71,1,t +8764,87994,70,2,f +8764,87994,70,2,t +8764,92280,15,2,f +8764,92410,71,2,f +8764,92690,70,1,f +8764,93160,15,1,f +8764,93160,15,1,t +8764,93549pat01,47,1,f +8764,93549pat02,47,1,f +8764,93609,15,1,t +8764,93609,15,2,f +8764,95228,47,2,f +8764,95343,71,1,f +8764,96874,25,1,t +8764,970c00,71,1,f +8764,970c00,28,1,f +8764,970c00,272,1,f +8764,973pr1576c01,72,1,f +8764,973pr1918c01,73,1,f +8764,973pr2815c01,15,1,f +8764,98138,179,1,t +8764,98138,320,1,t +8764,98138,1,1,f +8764,98138,179,1,f +8764,98138,320,1,f +8764,98138,1,1,t +8764,98313,15,2,f +8765,4689c01,14,1,f +8767,45451,45,1,f +8767,46296,47,1,f +8767,clikits001pb03,13,1,f +8767,clikits018,45,1,f +8772,12825,71,2,f +8772,14520,4,2,f +8772,15210pr01,0,1,f +8772,2412b,71,11,f +8772,2412b,4,3,f +8772,2431,33,1,f +8772,2431,15,3,f +8772,2431,71,5,f +8772,2432,15,1,f +8772,2432,14,1,f +8772,2437,41,1,f +8772,2444,4,1,f +8772,2445,4,1,f +8772,2446,15,1,f +8772,2447,40,1,f +8772,2447,40,1,t +8772,2449,15,2,f +8772,2453b,15,3,f +8772,2454a,4,6,f +8772,2465,15,1,f +8772,2479,0,1,f +8772,2569,0,1,f +8772,2569,0,1,t +8772,2877,72,4,f +8772,3001,15,1,f +8772,3001,14,1,f +8772,3001,1,1,f +8772,3003,1,1,f +8772,3005,15,9,f +8772,3009,15,6,f +8772,3010,15,10,f +8772,3010,72,1,f +8772,30145,15,2,f +8772,3020,72,1,f +8772,3020,14,1,f +8772,3021,71,2,f +8772,3021,1,1,f +8772,3022,72,2,f +8772,3023,1,4,f +8772,3023,46,4,f +8772,3023,4,3,f +8772,3027,72,2,f +8772,3032,72,1,f +8772,3033,72,3,f +8772,3035,71,1,f +8772,3037,15,1,f +8772,3039,71,2,f +8772,3039pr0002,15,1,f +8772,3039pr0013,15,1,f +8772,30592,71,1,f +8772,3062b,47,1,f +8772,3068b,1,2,f +8772,3068b,4,2,f +8772,3069b,33,2,f +8772,3069b,0,2,f +8772,3069b,14,2,f +8772,3069b,15,2,f +8772,3069bpr0030,15,1,f +8772,3070b,36,2,f +8772,3070b,36,2,t +8772,32000,15,2,f +8772,32028,15,2,f +8772,3245c,15,4,f +8772,33085,14,1,f +8772,3460,15,3,f +8772,3460,4,6,f +8772,3623,71,1,f +8772,3626bpr0891,14,1,f +8772,3626bpr0893,14,1,f +8772,3626cpr0743,14,1,f +8772,3626cpr0914,14,1,f +8772,3666,14,2,f +8772,3666,15,1,f +8772,3673,71,1,f +8772,3673,71,1,t +8772,3710,4,2,f +8772,3710,15,9,f +8772,3710,72,1,f +8772,3795,15,6,f +8772,3795,19,1,f +8772,3795,71,2,f +8772,3829c01,14,1,f +8772,3832,72,2,f +8772,3899,4,1,f +8772,3901,70,1,f +8772,3957a,71,2,f +8772,3958,15,1,f +8772,4079,14,1,f +8772,4079,1,2,f +8772,4085c,72,1,f +8772,4162,15,2,f +8772,4162,4,7,f +8772,41770,4,1,f +8772,4216,15,15,f +8772,4217,15,3,f +8772,4218,41,7,f +8772,4219,15,1,f +8772,4274,1,4,f +8772,4274,1,1,t +8772,4287,15,2,f +8772,4349,0,1,f +8772,43898,15,2,f +8772,4429stk01,9999,1,f +8772,44301a,72,2,f +8772,44302a,72,2,f +8772,45677,15,1,f +8772,4589,46,1,f +8772,4599b,1,1,f +8772,4624,71,6,f +8772,4740,15,1,f +8772,47457,14,1,f +8772,47457,72,1,f +8772,47998,15,2,f +8772,48336,71,4,f +8772,48336,15,2,f +8772,4865a,41,4,f +8772,4865a,15,2,f +8772,4865b,4,1,f +8772,4870,71,2,f +8772,50304,15,1,f +8772,50305,15,1,f +8772,50745,72,4,f +8772,50950,4,2,f +8772,52036,72,1,f +8772,52501,4,2,f +8772,52501,72,2,f +8772,54200,46,1,t +8772,54200,46,2,f +8772,54200,33,1,t +8772,54200,72,2,f +8772,54200,72,1,t +8772,54200,33,4,f +8772,57895,41,1,f +8772,59349,15,3,f +8772,59349,41,3,f +8772,59895,0,6,f +8772,6014b,71,4,f +8772,60470a,15,2,f +8772,60479,0,4,f +8772,60581,15,2,f +8772,60596,15,3,f +8772,60598,15,1,f +8772,60601,41,4,f +8772,60616a,41,2,f +8772,6064,2,1,f +8772,6091,72,4,f +8772,6111,15,1,f +8772,61345,15,2,f +8772,61409,72,4,f +8772,6141,36,1,t +8772,6141,36,1,f +8772,6141,33,16,f +8772,6141,33,4,t +8772,6141,0,2,t +8772,6141,34,1,f +8772,6141,46,1,f +8772,6141,0,2,f +8772,6141,34,1,t +8772,6141,46,1,t +8772,61483,71,1,f +8772,6157,71,2,f +8772,61678,72,6,f +8772,6179,4,2,f +8772,6231,15,2,f +8772,6239,15,1,f +8772,63864,72,2,f +8772,6636,72,1,f +8772,6636,4,2,f +8772,6636,19,2,f +8772,86035,1,1,f +8772,87079,15,2,f +8772,87079,71,6,f +8772,87079,72,2,f +8772,87552,15,2,f +8772,87552,41,1,f +8772,87611,72,1,f +8772,87612,41,1,f +8772,87613,15,1,f +8772,87697,0,4,f +8772,87989,212,1,t +8772,87989,212,1,f +8772,88393,15,7,f +8772,91405,2,2,f +8772,92842,0,1,f +8772,93140,15,2,f +8772,93273,72,1,f +8772,970c00,4,1,f +8772,970c00,71,1,f +8772,970c00pr0293,272,1,f +8772,970c00pr0358,321,1,f +8772,973pr1617c01,2,1,f +8772,973pr1914c01,4,1,f +8772,973pr1976c01,4,1,f +8772,973pr2074c01,15,1,f +8772,99930,0,1,f +8773,2431,71,2,f +8773,2456,19,2,f +8773,2476,28,1,f +8773,3001,2,2,f +8773,3004,2,3,f +8773,3004,288,4,f +8773,3004,14,3,f +8773,3005,288,2,f +8773,3020,2,4,f +8773,3020,19,2,f +8773,3022,14,1,f +8773,3022,2,3,f +8773,3023,14,1,f +8773,3024,2,6,f +8773,3035,2,2,f +8773,3039,2,8,f +8773,3070b,29,2,f +8773,3700,72,1,f +8773,3710,2,1,f +8773,3794b,4,2,f +8773,4070,2,4,f +8773,41769,2,1,f +8773,41770,2,1,f +8773,4286,14,2,f +8773,4460b,10,2,f +8773,4727,10,2,f +8773,48336,2,1,f +8773,54200,2,10,f +8773,54200,288,2,f +8773,54200,4,3,f +8773,59900,70,2,f +8773,60470a,2,1,f +8773,60481,288,2,f +8773,6141,71,6,f +8773,6141,15,2,f +8773,85984,14,2,f +8773,87079,2,2,f +8773,87580,4,1,f +8773,92438,212,1,f +8773,98138pr0008,15,2,f +8774,11090,297,1,f +8774,11090,72,1,f +8774,11203,72,1,f +8774,11211,71,7,f +8774,11438,288,2,f +8774,11439pat0003,34,1,f +8774,11439pat0003,34,1,t +8774,11458,72,6,f +8774,11476,71,1,f +8774,11477,70,2,f +8774,11477,19,2,f +8774,11477,72,2,f +8774,11833,71,1,f +8774,14210,0,1,f +8774,14769,4,2,f +8774,14769,297,1,f +8774,14769,27,1,f +8774,15068,484,1,f +8774,15303,0,2,f +8774,15392,72,3,f +8774,15392,72,1,t +8774,15400,72,1,f +8774,15403,0,1,f +8774,15439,0,1,f +8774,15439,0,1,t +8774,15446,0,1,f +8774,15571,71,1,f +8774,15573,70,1,f +8774,15573,72,2,f +8774,15573,320,3,f +8774,15573,297,1,f +8774,15619,320,1,t +8774,15619,320,1,f +8774,15706,70,1,f +8774,15712,297,2,f +8774,15712,0,6,f +8774,15712,320,2,f +8774,15712,72,1,f +8774,16577,72,2,f +8774,18587,71,1,f +8774,18588,0,1,f +8774,18653,0,6,f +8774,18677,71,6,f +8774,18927,288,1,f +8774,19136pr0002,27,1,f +8774,19857pat0001,4,1,f +8774,19857pat0003,0,1,f +8774,19859pat0015,36,1,f +8774,20105,0,2,f +8774,22411,0,1,f +8774,22961,308,2,f +8774,2357,72,2,f +8774,2357,320,2,f +8774,2357,0,4,f +8774,2397,0,1,f +8774,23983,297,2,f +8774,23984,15,2,f +8774,23984,15,1,t +8774,23985,15,1,f +8774,2412b,70,1,f +8774,2412b,19,1,f +8774,2417,2,1,f +8774,2419,0,3,f +8774,2420,320,2,f +8774,24201,0,8,f +8774,2432,70,1,f +8774,2436,71,1,f +8774,2450,320,4,f +8774,2453b,71,6,f +8774,2454a,72,4,f +8774,2530,72,1,t +8774,2530,72,1,f +8774,25375,0,2,f +8774,2540,0,1,f +8774,2562,70,2,f +8774,2562,70,1,t +8774,26047,0,6,f +8774,2654,72,4,f +8774,2780,0,1,t +8774,2780,0,6,f +8774,2817,0,4,f +8774,2825,0,1,f +8774,298c02,15,1,t +8774,298c02,15,1,f +8774,30031,72,1,f +8774,3004,320,11,f +8774,3004,2,1,f +8774,3004,71,8,f +8774,3004,70,4,f +8774,3005,71,6,f +8774,3005,2,6,f +8774,3005,70,2,f +8774,3009,71,4,f +8774,3010,70,1,f +8774,30106,47,1,f +8774,30136,308,6,f +8774,30137,308,8,f +8774,30153,46,1,f +8774,30171,148,1,f +8774,30173b,297,6,f +8774,30173b,297,3,t +8774,3020,4,1,f +8774,3020,70,2,f +8774,3020,28,1,f +8774,3021,19,4,f +8774,3022,0,1,f +8774,3022,71,1,f +8774,3022,72,2,f +8774,3022,25,1,f +8774,3023,0,3,f +8774,3023,320,3,f +8774,3023,19,2,f +8774,3023,71,2,f +8774,3024,297,1,f +8774,3024,28,1,t +8774,3024,71,1,f +8774,3024,297,1,t +8774,3024,28,2,f +8774,3024,71,1,t +8774,3027,72,2,f +8774,3030,70,2,f +8774,3031,19,1,f +8774,3032,70,2,f +8774,3033,28,1,f +8774,3034,72,1,f +8774,3034,320,5,f +8774,3034,19,1,f +8774,30340,14,1,f +8774,3035,70,2,f +8774,3035,1,1,f +8774,30350a,4,1,f +8774,30363,72,1,f +8774,3037,71,1,f +8774,30374,297,2,f +8774,30374,70,6,f +8774,3039,71,5,f +8774,3040b,0,2,f +8774,3040b,72,16,f +8774,3040b,71,5,f +8774,30414,71,1,f +8774,3045,71,2,f +8774,3049c,0,2,f +8774,30503,320,2,f +8774,30608,297,1,f +8774,3062b,308,14,f +8774,3062b,19,1,f +8774,3062b,70,2,f +8774,3062b,0,5,f +8774,3062b,72,2,f +8774,3062bpr0012,297,1,f +8774,3068b,19,1,f +8774,3068b,71,1,f +8774,3068b,28,1,f +8774,3068b,1,2,f +8774,3069b,70,2,f +8774,3069b,15,1,f +8774,3069b,2,1,f +8774,3069bpr0099,15,1,f +8774,3069bpr0101,71,1,f +8774,3070b,2,1,t +8774,3070b,2,1,f +8774,3070bpr0147,71,1,t +8774,3070bpr0147,71,1,f +8774,32000,0,1,f +8774,32000,72,2,f +8774,32018,71,3,f +8774,32054,0,2,f +8774,32062,0,2,f +8774,32064a,72,4,f +8774,3245b,72,4,f +8774,3245b,71,4,f +8774,32523,0,1,f +8774,32556,19,1,f +8774,3460,70,2,f +8774,3622,71,2,f +8774,3626cpr0893,14,1,f +8774,3626cpr1561,14,1,f +8774,3626cpr1872,14,1,f +8774,3633,297,1,f +8774,3659,72,7,f +8774,3660,70,1,f +8774,3660,72,4,f +8774,3665,308,2,f +8774,3666,70,1,f +8774,3673,71,1,t +8774,3673,71,6,f +8774,3685,71,4,f +8774,3700,71,3,f +8774,3700,0,2,f +8774,3701,71,1,f +8774,3705,0,1,f +8774,3706,0,1,f +8774,3709,0,1,f +8774,3710,70,5,f +8774,3710,0,1,f +8774,3713,71,1,t +8774,3713,71,1,f +8774,3749,19,2,f +8774,3795,308,1,f +8774,3795,71,1,f +8774,3795,70,1,f +8774,3830,72,2,f +8774,3830,71,2,f +8774,3831,71,2,f +8774,3831,72,2,f +8774,3836,70,1,f +8774,3839b,72,2,f +8774,3937,72,2,f +8774,3941,47,1,f +8774,4070,71,6,f +8774,4070,70,1,f +8774,4081b,72,1,f +8774,41539,0,1,f +8774,41669,4,1,f +8774,41769,72,2,f +8774,4286,72,2,f +8774,4287,70,2,f +8774,43722,72,1,f +8774,43723,72,1,f +8774,43888,70,10,f +8774,44567a,72,3,f +8774,4460b,320,2,f +8774,4460b,71,2,f +8774,4460b,72,7,f +8774,4519,71,2,f +8774,4733,72,1,f +8774,4740,0,3,f +8774,4740,71,1,f +8774,47847,72,1,f +8774,4865a,71,2,f +8774,4865b,19,5,f +8774,48729b,72,5,f +8774,48729b,72,1,t +8774,49668,179,2,f +8774,50303,72,1,f +8774,51739,320,1,f +8774,53451,297,1,t +8774,53451,297,1,f +8774,53454,148,2,f +8774,54200,320,6,f +8774,54200,28,1,t +8774,54200,28,2,f +8774,54200,70,1,t +8774,54200,72,7,f +8774,54200,70,1,f +8774,54200,72,1,t +8774,54200,320,1,t +8774,55013,72,1,f +8774,55236,2,4,f +8774,55236,2,1,t +8774,59443,70,1,f +8774,59900,70,2,f +8774,59900,46,1,f +8774,59900,71,1,f +8774,59900,72,2,f +8774,6019,0,1,f +8774,604547,0,1,f +8774,604548,0,1,f +8774,604549,0,1,f +8774,604550,0,1,f +8774,604551,0,1,f +8774,604552,0,1,f +8774,604553,0,1,f +8774,604614,0,1,f +8774,604615,0,1,f +8774,60470a,0,2,f +8774,60471,0,3,f +8774,60476,71,1,f +8774,60481,72,1,f +8774,60593,70,8,f +8774,60596,70,1,f +8774,60596,0,1,f +8774,60616b,70,1,f +8774,60621,148,1,f +8774,60897,71,1,f +8774,60897,70,2,f +8774,6091,70,3,f +8774,6112,70,2,f +8774,6126b,182,1,f +8774,6134,0,2,f +8774,61409,72,2,f +8774,6141,15,4,f +8774,6141,36,1,t +8774,6141,70,1,t +8774,6141,297,1,t +8774,6141,19,1,t +8774,6141,0,2,t +8774,6141,71,1,t +8774,6141,19,4,f +8774,6141,1,2,f +8774,6141,34,1,t +8774,6141,0,2,f +8774,6141,34,1,f +8774,6141,47,1,t +8774,6141,36,1,f +8774,6141,15,1,t +8774,6141,71,4,f +8774,6141,47,1,f +8774,6141,297,3,f +8774,6141,25,14,f +8774,6141,25,1,t +8774,6141,70,8,f +8774,6179,71,1,f +8774,61800,484,4,f +8774,6231,19,6,f +8774,6266,71,1,t +8774,6266,71,8,f +8774,62930,47,1,f +8774,63868,0,6,f +8774,63965,297,1,f +8774,64644,297,1,f +8774,64647,182,3,f +8774,64647,182,2,t +8774,64728,4,2,f +8774,64799,71,1,f +8774,6536,72,2,f +8774,6541,72,6,f +8774,6587,28,1,f +8774,6636,320,1,f +8774,75c32,0,1,t +8774,75c32,0,1,f +8774,85861,0,7,f +8774,85861,0,1,t +8774,85861,71,1,t +8774,85861,71,2,f +8774,85984,71,10,f +8774,87079,71,2,f +8774,87083,72,1,f +8774,87087,0,4,f +8774,87087,70,2,f +8774,87087,72,1,f +8774,87552,0,4,f +8774,87580,71,1,f +8774,87580,70,1,f +8774,87609,0,1,f +8774,87617,0,2,f +8774,87989,27,1,f +8774,87989,27,1,t +8774,91988,72,1,f +8774,92081,0,1,f +8774,92099,72,1,f +8774,92107,71,1,f +8774,92438,72,2,f +8774,92690,297,2,f +8774,92950,70,2,f +8774,92950,71,2,f +8774,93095,0,1,f +8774,93274,14,1,f +8774,96874,25,1,t +8774,970c00pr0877,0,1,f +8774,970d00pr9999,70,1,f +8774,970d33,288,1,f +8774,970x192pr0001,70,1,f +8774,973pr9982c01,288,1,f +8774,973pr9996,27,1,f +8774,98138,71,1,t +8774,98138,71,3,f +8774,98138pr0012,179,1,t +8774,98138pr0012,179,1,f +8774,98138pr0043,34,1,f +8774,98138pr0043,34,1,t +8774,98139,297,3,f +8774,98139,297,1,t +8774,98141,297,1,t +8774,98141,297,1,f +8774,98283,28,5,f +8774,98383,297,1,f +8774,98560,72,1,f +8774,98560,320,4,f +8774,99780,71,1,f +8776,2412a,4,2,f +8776,2431,4,1,f +8776,2432,0,1,f +8776,2437,41,1,f +8776,2441,0,1,f +8776,2446,0,1,f +8776,2447,41,1,t +8776,2447,41,1,f +8776,2508,14,1,f +8776,2513,4,1,f +8776,3021,4,1,f +8776,3023,4,1,f +8776,3024,4,2,f +8776,3024,36,2,f +8776,3024,46,2,f +8776,3070b,4,2,f +8776,3070b,4,1,t +8776,3070bp03,15,1,t +8776,3070bp03,15,3,f +8776,3139,0,2,f +8776,3464,47,2,f +8776,3623,14,2,f +8776,3623,4,2,f +8776,3626apr0001,14,1,f +8776,3641,0,6,f +8776,3710,14,1,f +8776,3710,4,2,f +8776,3730,0,1,f +8776,3787,14,1,f +8776,3788,4,1,f +8776,3794a,14,3,f +8776,3795,14,1,f +8776,3821,4,1,f +8776,3822,4,1,f +8776,3829c01,14,1,f +8776,3937,4,1,f +8776,3938,4,1,f +8776,4081b,14,2,f +8776,4276b,0,2,f +8776,4480c01,0,1,f +8776,4485,1,1,f +8776,4600,0,1,f +8776,4624,14,2,f +8776,4624,15,4,f +8776,4715,15,1,f +8776,4859,14,1,f +8776,6141,36,2,f +8776,970c00,15,1,f +8776,973p14c01,15,1,f +8777,2730,0,20,f +8779,14769,297,1,f +8779,14769pr1025,297,1,f +8779,16965,0,1,f +8779,18585,0,1,f +8779,18590,0,1,f +8779,18591,47,1,f +8779,18592,1,1,f +8779,2654,1,1,f +8779,3001,0,1,f +8779,30173b,297,2,f +8779,3021,72,4,f +8779,30602,1,2,f +8779,3626cpr1676,1,1,f +8779,43712,1,1,f +8779,43713,1,1,f +8779,4497,179,1,f +8779,4740,33,2,f +8779,48729b,0,1,f +8779,59233pat0001,41,1,f +8779,6141,297,3,f +8779,63965,297,1,f +8779,64644,297,1,f +8779,87087,0,2,f +8779,92690,297,1,f +8779,93058,297,2,f +8779,970c00pr0859,0,1,f +8779,973pr3023c01,0,1,f +8779,98133,1,1,f +8779,98141,297,2,f +8779,99780,0,3,f +8779,99781,0,3,f +8780,3020,4,24,f +8780,728,7,1,f +8780,729,47,1,f +8784,3001,15,2,f +8784,3001,14,2,f +8784,3001,1,3,f +8784,3001,0,2,f +8784,3001,4,3,f +8784,3002,1,4,f +8784,3002,0,1,f +8784,3002,4,2,f +8784,3002,14,4,f +8784,3002,15,2,f +8784,3003,15,4,f +8784,3003,14,4,f +8784,3003,0,4,f +8784,3003,4,4,f +8784,3003,1,2,f +8784,3004,14,4,f +8784,3004,4,3,f +8784,3004,0,3,f +8784,3004,1,3,f +8784,3004,15,2,f +8784,3007,4,1,f +8784,3007,1,1,f +8784,3039,4,2,f +8784,3660,4,2,f +8785,2335pb004,7,1,f +8785,2357,378,2,f +8785,2453a,484,1,f +8785,2454a,484,2,f +8785,2489,6,1,f +8785,2493b,7,1,f +8785,2494pb06,47,1,f +8785,2566,0,1,f +8785,3004,7,4,f +8785,3005,378,2,f +8785,3009,378,2,f +8785,30151a,47,1,f +8785,3020,6,1,f +8785,3021,6,1,f +8785,3021,7,1,f +8785,3022,7,1,f +8785,3023,8,1,f +8785,3024,7,3,f +8785,3031,8,4,f +8785,3034,8,2,f +8785,3035,6,2,f +8785,30357,7,2,f +8785,30374,15,2,f +8785,3039,378,8,f +8785,3039ph1,19,1,f +8785,3040b,378,4,f +8785,3045,378,4,f +8785,3062b,484,14,f +8785,3062b,46,2,f +8785,3069bpb006,7,1,f +8785,3070b,8,1,f +8785,3070b,8,1,t +8785,32474,0,2,f +8785,32474,4,1,f +8785,33009pb004,1,1,f +8785,3455,7,1,f +8785,3460,7,1,f +8785,3623,6,2,f +8785,3626bph2,14,1,f +8785,3633,6,1,f +8785,3659,7,1,f +8785,3665,8,2,f +8785,3794a,7,3,f +8785,3830,7,1,f +8785,3831,7,1,f +8785,3901,19,1,f +8785,4032a,0,1,f +8785,4070,7,4,f +8785,4274,7,1,f +8785,4274,7,1,t +8785,4332,366,1,f +8785,4332,6,1,f +8785,4460a,484,2,f +8785,4495a,7,1,f +8785,4495a,4,1,f +8785,4495a,2,1,f +8785,4522,0,1,f +8785,4589,0,1,f +8785,4589,8,2,f +8785,4599a,0,2,f +8785,4740,0,2,f +8785,50231,4,1,f +8785,50231,2,1,f +8785,6019,0,1,f +8785,6141,60,1,f +8785,6541,0,1,f +8785,970c00,0,1,f +8785,973pb0268c01,0,1,f +8786,11477,72,8,f +8786,2654,47,1,f +8786,30357,71,4,f +8786,3709,71,2,f +8786,3956,71,2,f +8786,4032a,72,3,f +8786,43722,71,2,f +8786,43723,71,2,f +8786,51739,71,4,f +8786,60478,0,8,f +8786,6141,36,1,t +8786,6141,36,1,f +8786,6587,28,1,f +8786,92280,71,8,f +8786,92947,71,1,f +8787,608p33,2,1,f +8787,6099p01,2,1,f +8789,3001a,1,2,f +8789,3002a,15,1,f +8789,3003,14,2,f +8789,3003,4,2,f +8789,3003,15,1,f +8789,3004,15,3,f +8789,3004,4,2,f +8789,3007,4,1,f +8789,3021,0,1,f +8789,3021,4,2,f +8789,3022,1,2,f +8789,3022,0,2,f +8789,3022,14,2,f +8789,3023,1,1,f +8789,3039,1,2,f +8789,3062a,15,1,f +8789,3070b,15,1,f +8789,3612,1,2,f +8789,3613,1,2,f +8789,3613,4,2,f +8789,3614a,14,4,f +8789,685p01,14,2,f +8789,792c03,4,1,f +8789,792c03,1,1,f +8789,x196,0,1,f +8789,x197,6,1,f +8790,2412b,72,1,f +8790,2436,4,1,f +8790,2540,72,2,f +8790,3005,4,2,f +8790,3020,0,1,f +8790,3020,4,2,f +8790,3023,4,5,f +8790,3023,0,2,f +8790,3024,36,2,f +8790,3031,4,1,f +8790,3065,40,2,f +8790,3788,4,2,f +8790,3795,72,1,f +8790,4081b,72,2,f +8790,4600,0,2,f +8790,4624,71,4,f +8790,6141,47,1,t +8790,6141,47,2,f +8790,87414,0,4,f +8793,2205,14,1,f +8793,2212,14,1,f +8793,2292c01,4,1,f +8793,2961,2,1,f +8793,2962,14,1,f +8793,3011,4,2,f +8793,3011,1,4,f +8793,31021p01,15,1,f +8793,31025,2,1,f +8793,31026,4,1,f +8793,31076cx2,4,1,f +8793,31077,14,1,f +8793,31299,14,1,f +8793,31300c01,14,2,f +8793,31301,14,4,f +8793,31303,2,2,f +8793,31304pb01,4,1,f +8793,31304pb02,4,1,f +8793,3437,14,3,f +8793,3437,4,2,f +8793,3437,1,2,f +8793,4066pb009,14,1,f +8793,4066pb063,14,1,f +8793,4555pb076,4,1,f +8793,4555pb095,14,1,f +8793,4555pb096,14,1,f +8793,4672,2,1,f +8793,4913,4,1,f +8793,6360,4,1,f +8793,6377,8,5,f +8793,6378,8,18,f +8793,6379c01,8,2,f +8793,6391,8,1,f +8793,6394,4,2,f +8793,6405,14,2,f +8793,6406,4,2,f +8793,6442pb01,14,2,f +8793,6442pb02,14,1,f +8793,81917pb01,4,1,f +8793,x959cx1,8,1,f +8794,281,14,1,f +8794,3001,14,2,f +8794,3001,1,4,f +8794,3003,14,2,f +8794,3003,1,3,f +8794,3004,14,3,f +8794,3004,1,3,f +8794,3032,14,1,f +8794,3888ac01,4,1,f +8794,691,1,1,f +8794,692,1,1,f +8794,fab9d,9999,1,f +8795,10201,0,1,f +8795,11303,4,1,f +8795,11476,71,1,f +8795,11477,1,2,f +8795,11477,14,2,f +8795,13731,15,2,f +8795,13731,1,2,f +8795,15068,72,2,f +8795,15207,15,2,f +8795,15535,72,2,f +8795,15573,71,3,f +8795,18674,15,1,f +8795,18892,0,3,f +8795,2357,1,4,f +8795,2412b,0,1,f +8795,2412b,71,6,f +8795,2412b,72,2,f +8795,2412b,179,6,f +8795,2415,71,3,f +8795,2431,14,1,f +8795,2431,15,2,f +8795,2432,4,1,f +8795,2432,25,4,f +8795,2441,0,1,f +8795,2446,15,1,f +8795,2447,40,1,t +8795,2447,40,1,f +8795,2540,71,2,f +8795,2780,0,2,t +8795,2780,0,14,f +8795,2877,71,2,f +8795,2926,0,2,f +8795,3001,72,1,f +8795,3002,1,2,f +8795,3002,15,1,f +8795,30028,0,4,f +8795,3004,71,3,f +8795,3004,1,3,f +8795,3009,1,1,f +8795,3010,72,2,f +8795,30162,72,2,f +8795,3020,4,2,f +8795,3020,1,3,f +8795,3020,72,4,f +8795,3020,71,1,f +8795,3021,14,1,f +8795,3022,72,1,f +8795,3022,15,1,f +8795,3022,25,1,f +8795,3022,1,2,f +8795,3022,14,4,f +8795,3022,0,2,f +8795,3023,72,4,f +8795,3023,71,2,f +8795,3023,15,4,f +8795,3023,36,3,f +8795,3023,182,4,f +8795,3023,1,4,f +8795,3023,14,6,f +8795,3023,4,6,f +8795,3023,0,2,f +8795,3031,1,3,f +8795,3031,71,2,f +8795,3032,15,1,f +8795,3032,4,1,f +8795,3034,4,1,f +8795,3034,71,2,f +8795,3034,1,2,f +8795,3039,72,2,f +8795,3039pr0014,0,1,f +8795,30414,1,2,f +8795,3062b,71,4,f +8795,3069b,15,5,f +8795,3069b,14,2,f +8795,3070b,1,1,t +8795,3070b,1,2,f +8795,32064a,71,4,f +8795,32064a,15,3,f +8795,32187,71,1,f +8795,3464,15,3,f +8795,3622,15,2,f +8795,3623,71,2,f +8795,3623,72,2,f +8795,3623,14,2,f +8795,3626cpr0499,14,1,f +8795,3626cpr0893,14,1,f +8795,3626cpr1146,14,1,f +8795,3666,15,4,f +8795,3666,4,4,f +8795,3666,71,2,f +8795,3666,1,1,f +8795,3701,72,2,f +8795,3703,72,2,f +8795,3705,0,1,f +8795,3709,0,2,f +8795,3710,0,3,f +8795,3710,15,5,f +8795,3749,19,1,f +8795,3795,71,4,f +8795,3795,15,1,f +8795,3795,72,5,f +8795,3821,1,1,f +8795,3822,1,1,f +8795,3829c01,71,2,f +8795,3900,15,2,f +8795,3941,15,1,f +8795,3942c,0,1,f +8795,3958,1,1,f +8795,4006,0,1,f +8795,4032a,2,1,f +8795,4032a,4,1,f +8795,4070,71,12,f +8795,4162,1,2,f +8795,4176,41,1,f +8795,41769,15,2,f +8795,41770,15,2,f +8795,42022,15,2,f +8795,43093,1,1,f +8795,43713,4,2,f +8795,44301a,0,2,f +8795,44302a,0,2,f +8795,44302a,71,4,f +8795,44728,15,4,f +8795,4477,15,3,f +8795,4519,71,2,f +8795,4599b,14,1,f +8795,4599b,14,1,t +8795,47457,4,1,f +8795,4865b,71,6,f +8795,50373,15,1,f +8795,50745,1,2,f +8795,51739,72,4,f +8795,52031,1,1,f +8795,54200,14,1,t +8795,54200,14,2,f +8795,54200,47,1,t +8795,54200,47,2,f +8795,58176,182,2,f +8795,59895,0,3,f +8795,59900,182,2,f +8795,60079stk01,9999,1,f +8795,6014b,15,10,f +8795,60212,14,2,f +8795,60475b,14,2,f +8795,60897,71,2,f +8795,6091,15,4,f +8795,6106,15,2,f +8795,6112,0,2,f +8795,61409,15,2,f +8795,6141,36,2,f +8795,6141,34,2,f +8795,6141,34,1,t +8795,6141,36,1,t +8795,6141,72,1,t +8795,6141,72,3,f +8795,6239,15,1,f +8795,62462,71,8,f +8795,63864,15,4,f +8795,63864,1,2,f +8795,6536,71,2,f +8795,6636,72,1,f +8795,6636,14,1,f +8795,6636,71,2,f +8795,72454,4,1,f +8795,74967,15,4,f +8795,85984,14,1,f +8795,85984,71,4,f +8795,85984,1,4,f +8795,85984,0,1,f +8795,87058,71,1,f +8795,87079,1,1,f +8795,87079,15,2,f +8795,87079,71,2,f +8795,87580,1,2,f +8795,87580,72,1,f +8795,87697,0,10,f +8795,87991,484,1,f +8795,90194,72,4,f +8795,91988,72,1,f +8795,92279,41,1,f +8795,92280,0,2,f +8795,92582,15,4,f +8795,92593,72,1,f +8795,93273,15,1,f +8795,93274,71,1,f +8795,93274,14,4,f +8795,970c00,272,1,f +8795,970c00,15,1,f +8795,970c00,1,1,f +8795,973pr1244c01,73,1,f +8795,973pr2992c01,15,1,f +8795,973pr2998c01,25,1,f +8795,98138,47,2,f +8795,98138,71,2,f +8795,98138,36,4,f +8795,98138,182,2,f +8795,98138,47,1,t +8795,98138,36,2,t +8795,98138,182,1,t +8795,98138,71,1,t +8795,99206,71,1,f +8798,2456,4,1,f +8798,3001,4,3,f +8798,3002,4,2,f +8798,3003,4,2,f +8798,3022,4,1,f +8798,3039,4,6,f +8798,3068b,4,2,f +8798,3660,4,8,f +8798,44375a,15,1,f +8799,11090,72,2,f +8799,11153,4,2,f +8799,11458,4,1,f +8799,13547,0,2,f +8799,15092,72,1,f +8799,15397,0,1,f +8799,15573,4,4,f +8799,15712,71,4,f +8799,18649,71,2,f +8799,2340,4,1,f +8799,2412b,71,4,f +8799,2460,71,1,f +8799,2479,0,1,f +8799,2540,4,2,f +8799,2654,15,1,f +8799,3005,4,2,f +8799,30165,0,1,f +8799,3020,71,2,f +8799,3021,0,1,f +8799,3021,71,1,f +8799,3021,4,2,f +8799,3022,4,2,f +8799,3022,15,2,f +8799,3022,0,1,f +8799,3022,71,1,f +8799,3023,72,2,f +8799,3023,4,3,f +8799,3023,15,3,f +8799,30414,71,2,f +8799,30602,40,2,f +8799,3068b,4,3,f +8799,3070b,14,4,f +8799,3176,4,1,f +8799,32000,4,1,f +8799,3460,15,1,f +8799,3666,4,2,f +8799,3673,71,1,f +8799,3710,0,2,f +8799,3832,0,1,f +8799,42610,71,2,f +8799,43710,4,1,f +8799,43711,4,1,f +8799,44676,0,2,f +8799,4477,0,4,f +8799,4477,4,1,f +8799,4595,71,2,f +8799,48336,0,1,f +8799,50373,4,1,f +8799,54383,15,1,f +8799,54384,15,1,f +8799,60477,4,2,f +8799,6141,46,1,f +8799,6141,46,1,t +8799,63868,15,2,f +8799,85984,4,2,f +8799,88072,0,2,f +8799,90194,4,1,f +8799,92842,0,1,f +8799,98138,71,2,f +8801,2339,71,3,f +8801,2357,19,17,f +8801,2412b,71,3,f +8801,2420,19,2,f +8801,2431,19,5,f +8801,2431,71,2,f +8801,2453a,19,2,f +8801,2454a,19,1,f +8801,2456,19,1,f +8801,2877,72,11,f +8801,3001,19,3,f +8801,3001,70,3,f +8801,3002,71,7,f +8801,3002,70,7,f +8801,3002,19,6,f +8801,3003,72,3,f +8801,3003,19,13,f +8801,3003,71,6,f +8801,3004,71,15,f +8801,3004,72,7,f +8801,3004,19,56,f +8801,3005,71,8,f +8801,3005,72,3,f +8801,3005,19,20,f +8801,3006,19,7,f +8801,3007,19,3,f +8801,3008,19,15,f +8801,3009,71,2,f +8801,3009,19,23,f +8801,3009,72,8,f +8801,3010,71,2,f +8801,3010,72,3,f +8801,3010,19,32,f +8801,30136,70,4,f +8801,30136,71,1,f +8801,3020,15,1,f +8801,3020,19,2,f +8801,3021,72,2,f +8801,3021,15,1,f +8801,3021,19,2,f +8801,3021,71,4,f +8801,3022,15,1,f +8801,3022,19,8,f +8801,3022,71,3,f +8801,3023,72,13,f +8801,3023,19,6,f +8801,3023,71,1,f +8801,3023,15,4,f +8801,3024,73,5,f +8801,3024,19,6,f +8801,3024,71,9,f +8801,3034,15,1,f +8801,3034,70,1,f +8801,3035,15,7,f +8801,3037,4,19,f +8801,30374,71,2,f +8801,3038,4,23,f +8801,3039,71,4,f +8801,3039,4,15,f +8801,3040b,4,1,f +8801,3046a,4,16,f +8801,30552,71,2,f +8801,30586,15,3,f +8801,3062b,71,15,f +8801,3062b,15,3,f +8801,3065,47,6,f +8801,3068b,28,8,f +8801,3068b,19,2,f +8801,3068b,72,2,f +8801,3068b,73,8,f +8801,3068b,71,3,f +8801,3069b,70,3,f +8801,3069b,73,2,f +8801,3069b,71,5,f +8801,3069b,19,7,f +8801,3069b,72,10,f +8801,3070b,71,37,f +8801,3070b,71,1,t +8801,3070b,72,2,t +8801,3070b,19,1,t +8801,3070b,72,32,f +8801,3070b,19,5,f +8801,32028,71,2,f +8801,3245b,19,1,f +8801,3455,19,3,f +8801,3460,15,4,f +8801,3460,19,1,f +8801,3622,72,2,f +8801,3622,19,35,f +8801,3622,71,6,f +8801,3623,19,10,f +8801,3623,70,4,f +8801,3623,15,6,f +8801,3626b,47,1,f +8801,3659,19,3,f +8801,3665,71,2,f +8801,3666,15,5,f +8801,3666,19,4,f +8801,3710,71,4,f +8801,3710,19,4,f +8801,3794b,71,2,f +8801,3794b,15,25,f +8801,3794b,19,21,f +8801,3795,72,1,f +8801,3795,15,2,f +8801,3795,1,1,f +8801,3795,19,1,f +8801,3811,2,1,f +8801,3832,19,9,f +8801,3899,4,1,f +8801,3941,70,2,f +8801,3958,15,1,f +8801,4070,15,3,f +8801,4070,72,2,f +8801,4070,71,2,f +8801,4162,71,4,f +8801,4162,72,2,f +8801,4162,19,7,f +8801,4274,1,1,t +8801,4274,1,1,f +8801,44302a,71,2,f +8801,4445,4,23,f +8801,4477,19,4,f +8801,4510,71,4,f +8801,4589,4,4,f +8801,4589,15,1,f +8801,4589,2,5,f +8801,4589,14,3,f +8801,4599a,0,2,f +8801,4740,47,1,f +8801,4740,0,1,f +8801,47905,0,1,f +8801,49668,191,1,f +8801,49668,15,2,f +8801,50950,15,5,f +8801,50950,1,5,f +8801,54200,182,2,t +8801,54200,71,11,f +8801,54200,182,4,f +8801,54200,15,1,t +8801,54200,71,1,t +8801,54200,15,1,f +8801,57895,47,2,f +8801,60583a,15,4,f +8801,60592,15,5,f +8801,60593,15,6,f +8801,60594,15,1,f +8801,60596,15,3,f +8801,60601,47,5,f +8801,60602,47,6,f +8801,60603,47,1,f +8801,60623,14,1,f +8801,60800b,1,4,f +8801,6141,0,2,t +8801,6141,14,4,f +8801,6141,15,2,f +8801,6141,182,2,f +8801,6141,70,12,f +8801,6141,182,1,t +8801,6141,27,2,t +8801,6141,15,1,t +8801,6141,70,2,t +8801,6141,14,2,t +8801,6141,27,22,f +8801,6141,0,10,f +8801,62462,0,1,f +8801,6256,82,1,f +8801,6636,70,5,f +8801,6636,71,2,f +8802,3021,14,1,f +8802,3021,15,1,f +8802,3023,14,1,f +8802,3023,15,1,f +8802,3023,2,2,f +8802,3023,1,2,f +8802,3069b,2,2,f +8802,3069b,1,2,f +8802,3070b,14,1,f +8802,3070b,15,1,f +8802,3070b,15,1,t +8802,3070b,14,1,t +8802,3794b,15,1,f +8802,3794b,14,1,f +8803,122c01,7,2,f +8803,3004,7,1,f +8803,3021,7,1,f +8803,3062b,36,1,f +8803,3626apr0001,14,1,f +8803,3639,7,1,f +8803,3640,7,1,f +8803,3829c01,7,1,f +8803,3838,14,1,f +8803,3842a,14,1,f +8803,3957a,0,1,f +8803,4070,7,2,f +8803,4085a,7,2,f +8803,4175,7,2,f +8803,4288,0,4,f +8803,4345a,7,1,f +8803,4346,7,1,f +8803,4479,0,1,f +8803,970c00,14,1,f +8803,973p90c04,14,1,f +8805,3001,1,14,f +8805,3002,1,8,f +8805,3003,1,12,f +8805,3004,1,8,f +8805,3005,1,4,f +8805,3006,1,1,f +8805,3007,1,1,f +8805,3008,1,2,f +8805,3009,1,4,f +8805,3010,1,4,f +8805,3622,1,4,f +8806,3626bpr0645,14,1,f +8806,3626cpr0279,14,1,f +8806,3626cpr0388,14,1,f +8806,3833,14,1,f +8806,3898,15,1,f +8806,3962b,0,1,f +8806,4006,0,1,f +8806,4528,0,1,f +8806,86035,1,1,f +8806,970c00,15,1,f +8806,970c00,1,2,f +8806,973pr1156c01,1,1,f +8806,973pr1182c01,25,1,f +8806,973pr1196c01,15,1,f +8813,132a,0,4,f +8813,242c01,4,4,f +8813,3001a,4,1,f +8813,3003,0,1,f +8813,3004,4,2,f +8813,3004p50,4,1,f +8813,3005,1,2,f +8813,3005,4,2,f +8813,3009,47,1,f +8813,3009,4,1,f +8813,3009p01,4,1,f +8813,3010,47,1,f +8813,3010,4,2,f +8813,3020,0,2,f +8813,3020,4,1,f +8813,3021,0,2,f +8813,3022,4,1,f +8813,3022,0,2,f +8813,3023,4,10,f +8813,3033,4,1,f +8813,3062a,14,1,f +8813,3127b,4,1,f +8813,559c01,4,1,f +8813,7049b,0,1,f +8813,709,4,1,f +8813,711,4,1,f +8813,799c800,0,1,f +8813,801,4,1,f +8813,802,4,1,f +8813,804,0,1,f +8813,rb00164,0,1,f +8815,2343,47,4,f +8815,2435,2,3,f +8815,2456,1,2,f +8815,2456,4,2,f +8815,2456,15,2,f +8815,2456,14,2,f +8815,2493b,4,4,f +8815,2494,47,4,f +8815,3001,0,2,f +8815,3001,4,2,f +8815,3001,1,4,f +8815,3001,14,6,f +8815,3001,15,4,f +8815,3002,14,4,f +8815,3002,0,2,f +8815,3002,4,2,f +8815,3002,1,4,f +8815,3002,15,4,f +8815,3003,15,6,f +8815,3003,0,4,f +8815,3003,4,4,f +8815,3003,14,8,f +8815,3003,1,6,f +8815,3004,14,30,f +8815,3004,1,14,f +8815,3004,0,8,f +8815,3004,15,22,f +8815,3004,4,14,f +8815,3005,14,20,f +8815,3005,1,12,f +8815,3005,15,16,f +8815,3005,0,6,f +8815,3005,4,8,f +8815,3008,15,2,f +8815,3008,4,2,f +8815,3008,1,2,f +8815,3008,14,4,f +8815,3008,0,2,f +8815,3009,15,4,f +8815,3009,0,4,f +8815,3009,1,4,f +8815,3009,14,6,f +8815,3009,4,4,f +8815,3010,4,12,f +8815,3010,1,16,f +8815,3010,15,16,f +8815,3010,14,24,f +8815,3010,0,6,f +8815,3020,4,4,f +8815,3028,4,1,f +8815,3030,1,1,f +8815,3030,4,1,f +8815,3032,1,2,f +8815,3032,4,1,f +8815,3034,4,2,f +8815,3034,1,2,f +8815,3035,1,1,f +8815,3035,4,1,f +8815,3036,1,1,f +8815,3037,4,12,f +8815,3039,4,8,f +8815,3039p12,0,2,f +8815,3039pb007,1,2,f +8815,3040b,4,8,f +8815,3041,4,6,f +8815,3043,4,4,f +8815,3069bpr0099,15,6,f +8815,3185,14,12,f +8815,3245bpx11,1,2,f +8815,3297,4,12,f +8815,3298,4,8,f +8815,3299,4,6,f +8815,3300,4,4,f +8815,3460,4,2,f +8815,3460,1,2,f +8815,3470,2,2,f +8815,3471,2,3,f +8815,3596p01,15,2,f +8815,3622,0,4,f +8815,3622,14,6,f +8815,3622,4,4,f +8815,3622,15,6,f +8815,3622,1,4,f +8815,3624,1,2,f +8815,3626apr0001,14,8,f +8815,3660,4,4,f +8815,3665,4,4,f +8815,3666,1,2,f +8815,3666,4,2,f +8815,3679,7,4,f +8815,3680,4,4,f +8815,3710,4,2,f +8815,3747a,4,2,f +8815,3795,1,2,f +8815,3795,4,2,f +8815,3811,2,2,f +8815,3853,4,6,f +8815,3854,15,12,f +8815,3856,2,12,f +8815,3861b,4,2,f +8815,3899,15,2,f +8815,3901,0,2,f +8815,3957a,15,2,f +8815,3958,1,1,f +8815,3958,4,1,f +8815,3960p06,15,2,f +8815,4079,4,4,f +8815,4286,4,8,f +8815,4287,4,4,f +8815,4345a,14,2,f +8815,4346p03,14,2,f +8815,4445,4,6,f +8815,4495b,2,2,f +8815,4528,0,2,f +8815,4529,0,2,f +8815,4530,0,2,f +8815,4530,6,2,f +8815,4532,14,6,f +8815,4533,4,4,f +8815,4536,4,4,f +8815,47899c01,4,1,f +8815,6007,8,2,t +8815,69c01,15,2,f +8815,73194c01,4,1,f +8815,970c00,1,2,f +8815,970c00,15,2,f +8815,970c00,4,2,f +8815,970c00,0,2,f +8815,973c02,4,2,f +8815,973p26c01,1,2,f +8815,973p71c01,15,2,f +8815,973pb0201c01,15,2,f +8817,12825,72,4,f +8817,2341,71,4,f +8817,2412b,297,2,f +8817,2420,72,2,f +8817,2431,19,2,f +8817,2450,308,8,f +8817,2456,72,1,f +8817,2654,27,6,f +8817,2654,182,1,f +8817,2730,71,2,f +8817,2780,0,2,t +8817,2780,0,12,f +8817,2877,71,2,f +8817,3003,28,1,f +8817,30173b,297,2,f +8817,3020,72,3,f +8817,3021,15,2,f +8817,3022,19,1,f +8817,3023,27,6,f +8817,3023,36,2,f +8817,30236,72,2,f +8817,3035,288,1,f +8817,30367b,0,4,f +8817,30374,297,1,f +8817,3044c,72,4,f +8817,30526,72,2,f +8817,30552,71,2,f +8817,3062b,72,2,f +8817,3069b,308,5,f +8817,3069bpr0101,71,1,f +8817,3070b,71,2,f +8817,3070b,71,1,t +8817,32000,0,2,f +8817,32016,71,2,f +8817,32062,4,2,f +8817,32064a,4,2,f +8817,32138,71,4,f +8817,32291,72,2,f +8817,32316,15,2,f +8817,32324,71,2,f +8817,32523,72,2,f +8817,32525,72,2,f +8817,32526,72,2,f +8817,32530,72,2,f +8817,3460,308,1,f +8817,3626bpr0745,14,1,f +8817,3660,27,7,f +8817,3666,72,2,f +8817,3673,71,1,f +8817,3673,71,1,t +8817,3700,15,4,f +8817,3701,72,2,f +8817,3701,71,1,f +8817,3703,0,2,f +8817,3705,0,1,f +8817,3706,0,1,f +8817,3710,70,3,f +8817,3713,71,6,f +8817,3713,71,2,t +8817,3894,0,4,f +8817,4032a,71,5,f +8817,4150,71,2,f +8817,42023,27,4,f +8817,4274,71,4,f +8817,4274,71,1,t +8817,4286,72,2,f +8817,4287,72,4,f +8817,43722,0,1,f +8817,43723,0,1,f +8817,44300,0,2,f +8817,44728,15,2,f +8817,4519,71,1,f +8817,47456,72,1,f +8817,55013,72,2,f +8817,56145,297,2,f +8817,56908,71,2,f +8817,57028c01,71,1,f +8817,57796,72,1,f +8817,57906,0,6,f +8817,59426,72,2,f +8817,6019,297,2,f +8817,60474,72,2,f +8817,60483,72,2,f +8817,6087,71,1,f +8817,6091,71,2,f +8817,61072,0,4,f +8817,61409,0,4,f +8817,6141,297,2,t +8817,6141,297,12,f +8817,61480,0,2,f +8817,61481,0,2,f +8817,61678,0,4,f +8817,6553,72,2,f +8817,6558,1,14,f +8817,6587,28,2,f +8817,6628,0,2,f +8817,6636,0,2,f +8817,72454,0,2,f +8817,73983,72,2,f +8817,85543,15,2,f +8817,87747,297,1,f +8817,92218,297,2,f +8817,92280,0,2,f +8817,92579,40,1,f +8817,92582,0,2,f +8817,92690,297,1,f +8817,92947,71,1,f +8817,970c00pr0276,0,1,f +8817,973pr1878c01,272,1,f +8817,973pr1898c01,0,1,f +8817,98132,179,1,f +8817,98133pr0004,0,1,f +8817,98134,297,1,f +8817,98136,272,1,f +8817,98137,297,2,f +8817,98138pr0002,33,1,f +8817,98138pr0002,33,1,t +8817,98143pr0001,272,1,f +8817,98341,297,2,f +8817,99778pr0005,272,1,f +8818,3004,4,6,f +8818,3009,4,4,f +8818,3010,4,6,f +8818,3032,4,1,f +8818,3039,4,2,f +8818,3647,7,1,f +8818,3648a,7,2,f +8818,3649,7,1,f +8818,3651,7,2,f +8818,3652,7,1,f +8818,3666,4,2,f +8818,3673,7,1,f +8818,3700,4,2,f +8818,3701,4,2,f +8818,3704,0,2,f +8818,3705,0,2,f +8818,3707,0,1,f +8818,3713,7,1,f +8818,3736,7,1,f +8819,3001a,0,1,f +8819,3002a,15,2,f +8819,3002a,0,1,f +8819,3002apb05,15,2,f +8819,3003,0,12,f +8819,3004,14,1,f +8819,3004,4,1,f +8819,3004,0,3,f +8819,3006,0,1,f +8819,3009,15,1,f +8819,3010,0,1,f +8819,3021,0,2,f +8819,3022,15,1,f +8819,3023,15,4,f +8819,3024,15,2,f +8819,3039,0,3,f +8819,3040a,0,2,f +8819,3062a,0,2,f +8819,3062a,15,3,f +8819,3062a,1,2,f +8819,3137c01,15,1,f +8819,3139,0,3,f +8819,3183a,15,1,f +8819,3184,15,1,f +8819,3464,4,1,f +8819,3612,0,6,f +8819,3613,15,6,f +8819,3614a,14,6,f +8819,3660,0,2,f +8819,685px4,14,3,f +8819,739p01,15,2,f +8819,792c03,0,3,f +8819,8,15,1,f +8819,x407,15,3,f +8822,11609,191,1,f +8822,12708pr01,47,2,f +8822,30136,70,3,f +8822,3020,15,1,f +8822,3022,15,1,f +8822,3024,2,5,f +8822,3032,2,1,f +8822,3069b,46,1,f +8822,4070,70,2,f +8822,44375b,15,1,f +8822,54200,15,10,f +8822,6141,179,1,f +8822,6141,15,11,f +8822,6141,72,1,f +8822,6141,70,1,f +8822,6141,4,2,f +8822,6254,15,1,f +8824,3626bpr0827,14,1,f +8824,88646,0,1,f +8824,91884,148,1,f +8824,95673,148,1,f +8824,95676,82,1,f +8824,970c00pr0244,28,1,f +8824,973pr1824c01,14,1,f +8825,3022,15,40,f +8826,43093,1,1,f +8826,4740,47,1,t +8826,4740,47,1,f +8826,47430,2,2,f +8826,47431,2,2,f +8826,47432,2,2,f +8826,47452,72,2,f +8826,47454,72,2,f +8826,47455,320,10,f +8826,47456,2,2,f +8826,47457,2,4,f +8826,47457pb01,2,2,f +8826,47458,2,6,f +8826,47463,14,1,f +8826,47470,2,1,f +8826,47474,72,1,f +8826,47477c01pb03,2,1,f +8826,47501,2,4,f +8826,48079,89,1,f +8826,bb153pb03,72,1,f +8827,12825,71,1,f +8827,2412b,71,3,f +8827,3070b,71,1,t +8827,3070b,71,1,f +8827,33078,4,1,f +8827,3941,71,1,f +8827,4871,0,1,f +8827,6141,182,6,f +8827,6141,182,1,t +8827,64647,182,1,f +8827,64647,182,1,t +8828,2431,14,1,f +8828,2540,14,1,f +8828,2741,0,1,f +8828,3003,0,1,f +8828,3004,71,1,f +8828,3020,0,3,f +8828,3022,14,2,f +8828,3024,14,2,f +8828,3024,36,2,f +8828,3034,14,1,f +8828,30383,72,2,f +8828,30414,14,1,f +8828,3069b,14,2,f +8828,32062,0,1,f +8828,32123b,71,2,f +8828,32123b,71,1,t +8828,3460,72,1,f +8828,3622,14,2,f +8828,3710,72,7,f +8828,3737,0,1,f +8828,3749,19,1,f +8828,3795,72,2,f +8828,3795,14,2,f +8828,3832,1,1,f +8828,4162,14,3,f +8828,41747,14,1,f +8828,41748,14,1,f +8828,43720,72,1,f +8828,43721,72,1,f +8828,44302a,14,2,f +8828,4865a,14,2,f +8828,50943,72,1,f +8828,50950,0,2,f +8828,50967,14,2,f +8828,52031,14,1,f +8828,52031,0,1,f +8828,55982,0,4,f +8828,58090,0,4,f +8828,58122,71,1,f +8828,6081,14,2,f +8828,61072,135,2,f +8828,61409,14,2,f +8828,6141,72,1,t +8828,6141,72,4,f +8828,61678,14,2,f +8828,62361,14,2,f +8828,62701,135,4,f +8828,64766,71,1,f +8828,6553,0,2,f +8828,6632,0,1,f +8828,6636,14,2,f +8828,8183stk01,9999,1,t +8833,11097,297,1,f +8833,11100,25,2,f +8833,11126,25,1,f +8833,11127,41,6,f +8833,11477,4,4,f +8833,12825,297,2,f +8833,14769,4,1,f +8833,15073,320,2,f +8833,15093pr0002,297,1,f +8833,15100,0,2,f +8833,15104,182,1,f +8833,15105,182,2,f +8833,15336c02,182,1,f +8833,15395,4,1,f +8833,16656pr0003,4,1,f +8833,2780,0,2,f +8833,3023,320,6,f +8833,3023,57,4,f +8833,30387,182,2,f +8833,32062,4,2,f +8833,3626cpr1428,320,1,f +8833,3942c,297,1,f +8833,44301a,0,2,f +8833,44302a,0,2,f +8833,4497,179,1,f +8833,53451,297,1,f +8833,6019,4,4,f +8833,60474,72,1,f +8833,6126a,57,5,f +8833,6179,4,1,f +8833,64644,0,1,f +8833,85543,15,1,f +8833,95753pat0005,25,1,f +8833,970c00pr0669,320,1,f +8833,973pr2676c01,4,1,f +8833,98138,182,1,f +8835,10830pat0001,0,5,f +8835,11055,4,5,f +8835,12825,14,10,f +8835,2420,0,4,f +8835,2435,2,5,f +8835,2446,15,5,f +8835,2460,0,2,f +8835,2496,0,10,f +8835,2528,0,5,f +8835,2545,0,5,f +8835,2655,71,10,f +8835,3001,2,10,f +8835,3001,27,5,f +8835,3003,71,10,f +8835,3003,70,10,f +8835,3003,0,1,f +8835,3003,2,5,f +8835,3003,27,5,f +8835,3003,15,10,f +8835,3004,29,10,f +8835,3004,70,20,f +8835,3004,25,10,f +8835,3004,1,10,f +8835,3004,4,10,f +8835,3004,14,10,f +8835,3004,71,20,f +8835,3004,15,10,f +8835,3004,2,10,f +8835,3004,73,10,f +8835,3004,19,20,f +8835,3004,27,10,f +8835,3005,15,20,f +8835,3005,27,10,f +8835,3005,19,20,f +8835,3005,14,10,f +8835,3005,25,10,f +8835,3005,4,10,f +8835,3005,70,20,f +8835,3005,5,10,f +8835,3005,1,10,f +8835,3005,2,20,f +8835,3005,29,10,f +8835,3005,73,10,f +8835,3005,71,20,f +8835,30093,288,5,f +8835,3010,27,10,f +8835,3010,2,10,f +8835,3010,19,10,f +8835,3010,15,10,f +8835,30103,0,5,f +8835,30115,2,5,f +8835,30150,70,5,f +8835,30172,28,5,f +8835,3020,19,10,f +8835,3020,1,10,f +8835,3020,2,10,f +8835,30222,42,5,f +8835,3023,19,10,f +8835,3023,2,10,f +8835,30238,0,5,f +8835,30374,70,10,f +8835,30385,297,5,f +8835,3040b,15,5,f +8835,3040b,4,5,f +8835,3062b,2,10,f +8835,3062b,71,10,f +8835,3062b,70,10,f +8835,3062b,19,10,f +8835,3065,47,5,f +8835,32034,0,2,f +8835,3298,4,10,f +8835,3300,4,5,f +8835,33051,10,5,f +8835,33057,484,5,f +8835,3307,19,5,f +8835,33085,14,5,f +8835,33291,5,10,f +8835,33291,191,10,f +8835,33320,2,5,f +8835,3460,0,10,f +8835,3624,1,5,f +8835,3626bpr0891,14,10,f +8835,3626bpr0892,14,10,f +8835,3678b,15,5,f +8835,3833,14,5,f +8835,3835,0,5,f +8835,3837,72,5,f +8835,3841,72,5,f +8835,3878,0,5,f +8835,3899,4,5,f +8835,3962a,0,5,f +8835,4006,0,5,f +8835,4332,0,5,f +8835,4342,19,5,f +8835,4449,70,5,f +8835,4485,27,5,f +8835,4485,4,5,f +8835,4499,70,5,f +8835,4530,19,5,f +8835,4589,182,5,f +8835,4589,33,5,f +8835,4589,34,5,f +8835,4589,46,5,f +8835,4589,36,5,f +8835,46303,71,5,f +8835,4727,10,10,f +8835,54187,1,1,f +8835,54190,47,1,f +8835,59363,70,5,f +8835,60169,72,5,f +8835,6019,4,10,f +8835,6124,42,5,f +8835,6126b,41,5,f +8835,6126b,182,5,f +8835,6131,0,5,f +8835,6132,15,5,f +8835,6141,29,1,t +8835,6141,25,1,t +8835,6141,15,1,t +8835,6141,1,1,t +8835,6141,47,1,t +8835,6141,15,10,f +8835,6141,47,5,f +8835,6141,41,1,t +8835,6141,4,1,t +8835,6141,42,5,f +8835,6141,0,11,f +8835,6141,14,1,t +8835,6141,14,10,f +8835,6141,34,5,f +8835,6141,85,1,t +8835,6141,182,5,f +8835,6141,41,5,f +8835,6141,25,10,f +8835,6141,27,10,f +8835,6141,182,1,t +8835,6141,29,10,f +8835,6141,34,1,t +8835,6141,4,10,f +8835,6141,42,1,t +8835,6141,36,5,f +8835,6141,0,2,t +8835,6141,36,1,t +8835,6141,27,1,t +8835,6141,1,10,f +8835,6141,85,10,f +8835,61482,71,5,f +8835,61506,19,5,f +8835,6251,15,5,f +8835,6256,191,5,f +8835,62810,484,5,f +8835,62810,0,5,f +8835,64648,25,5,f +8835,6587,72,2,f +8835,76764,179,5,f +8835,87087,15,10,f +8835,89520,148,5,f +8835,91405,71,6,f +8835,92585,4,5,f +8835,92586pr0001,84,5,f +8835,96874,25,1,t +8835,970c00,0,5,f +8835,970c00,1,5,f +8835,970c00,4,5,f +8835,970c00,15,5,f +8835,973c01,15,5,f +8835,973c02,4,5,f +8835,973c07,1,5,f +8835,973c18,0,5,f +8836,15573,1,1,f +8836,15712,72,1,f +8836,18649,0,2,f +8836,2432,72,1,f +8836,2654,47,1,f +8836,30031,72,1,f +8836,3021,72,1,f +8836,3022,0,1,f +8836,3022,1,2,f +8836,3023,71,1,f +8836,3795,0,1,f +8836,41854,72,1,f +8836,47755,1,1,f +8836,4865b,47,1,f +8836,50949,0,2,f +8836,61409,71,2,f +8836,6141,47,2,f +8836,6141,36,2,f +8836,99781,71,2,f +8838,2340,15,2,f +8838,2340,1,2,f +8838,2357,1,6,f +8838,2412b,15,11,f +8838,2412b,0,9,f +8838,2412b,1,2,f +8838,2419,15,3,f +8838,2420,1,4,f +8838,2432,15,1,f +8838,2446,15,3,f +8838,2456,1,1,f +8838,2458,15,2,f +8838,2458,1,2,f +8838,2465,1,2,f +8838,2466,57,7,f +8838,2468,57,2,f +8838,2507,57,2,f +8838,2569,57,2,f +8838,2607,1,1,f +8838,2609,15,1,f +8838,2625,1,1,f +8838,2654,0,8,f +8838,2654,1,1,f +8838,2713,15,4,f +8838,2780,0,2,f +8838,298c02,15,5,f +8838,3003,15,1,f +8838,3003,1,1,f +8838,3004,1,11,f +8838,3004,0,1,f +8838,3004,15,4,f +8838,3005,1,2,f +8838,3008,1,4,f +8838,3009,1,1,f +8838,3010,1,6,f +8838,3020,1,6,f +8838,3022,0,3,f +8838,3023,1,11,f +8838,3023,15,12,f +8838,3023,0,12,f +8838,3024,1,6,f +8838,3030,1,1,f +8838,3033,0,4,f +8838,3034,0,2,f +8838,3034,1,2,f +8838,3036,0,1,f +8838,3039,1,2,f +8838,3039pc8,15,2,f +8838,3040b,1,6,f +8838,3068b,15,1,f +8838,3068bp61,1,3,f +8838,3069b,0,1,f +8838,3069b,1,1,f +8838,3069b,15,2,f +8838,3069bp06,15,2,f +8838,3069bp13,15,2,f +8838,3069bp61,15,1,f +8838,3297,1,1,f +8838,3298,1,2,f +8838,3298p61,1,2,f +8838,3460,1,3,f +8838,3475b,0,4,f +8838,3585,15,3,f +8838,3586,15,3,f +8838,3622,1,6,f +8838,3623,15,4,f +8838,3626bp61,14,1,f +8838,3626bp62,14,1,f +8838,3626bp65,14,1,f +8838,3660,0,2,f +8838,3660,1,3,f +8838,3665,1,4,f +8838,3666,0,2,f +8838,3666,15,3,f +8838,3666,1,4,f +8838,3700,1,7,f +8838,3700,15,4,f +8838,3700,0,1,f +8838,3703,1,1,f +8838,3708,0,1,f +8838,3710,0,2,f +8838,3710,15,1,f +8838,3710,1,2,f +8838,3749,7,1,f +8838,3795,1,1,f +8838,3832,1,1,f +8838,3838,15,3,f +8838,3933,15,1,f +8838,3934,15,1,f +8838,3940b,15,2,f +8838,3941,15,2,f +8838,3941,57,3,f +8838,3942b,0,1,f +8838,3957a,0,1,f +8838,3959,0,2,f +8838,3960,0,2,f +8838,4032a,1,1,f +8838,4070,0,2,f +8838,4081b,0,2,f +8838,4216,1,8,f +8838,4217,1,2,f +8838,4218,57,4,f +8838,4218,15,3,f +8838,4219,15,1,f +8838,4229,15,12,f +8838,4229,0,2,f +8838,4275b,1,6,f +8838,4276b,1,6,f +8838,4286,1,2,f +8838,4315,1,3,f +8838,4474p61,1,1,f +8838,4477,1,1,f +8838,4589,57,6,f +8838,4591,0,1,f +8838,4595,1,4,f +8838,4596,15,1,f +8838,4623,1,6,f +8838,4730,1,2,f +8838,4733,0,1,f +8838,4740,57,3,f +8838,4740,15,1,f +8838,4859,15,5,f +8838,4871,15,1,f +8838,6019,0,6,f +8838,6058,1,2,f +8838,6087,0,1,f +8838,6104,15,2,f +8838,6111,1,3,f +8838,6112,1,2,f +8838,6117,57,2,f +8838,6119,57,3,f +8838,6120,57,6,f +8838,6141,0,2,f +8838,6141,57,2,f +8838,73092,0,2,f +8838,73590c01a,0,2,f +8838,970x023,0,3,f +8838,973p61c01,0,1,f +8838,973p62c01,0,2,f +8840,3062a,14,2,f +8840,3297mia,2,2,f +8840,997c02,4,1,f +8840,m3001,47,2,f +8840,m3001,1,9,f +8840,m3003,1,3,f +8840,m3003,0,3,f +8840,m3003,14,1,f +8840,x146c02,4,1,f +8840,x147c02,4,1,f +8840,x149a,4,1,f +8841,2723,0,2,f +8841,2780,0,6,f +8841,3068b,1,1,f +8841,32015,7,1,f +8841,32016,0,2,f +8841,32062,0,4,f +8841,32065,1,2,f +8841,32073,7,6,f +8841,32123b,7,8,f +8841,32123b,7,1,t +8841,32291,0,2,f +8841,32310,148,2,f +8841,32316,7,1,f +8841,32348,1,1,f +8841,32348,0,2,f +8841,32449,8,2,f +8841,3705,0,3,f +8841,3713,7,1,t +8841,3713,7,3,f +8841,41669,36,2,f +8841,41669,1,2,f +8841,41677,1,4,f +8841,41678,0,1,f +8841,41752,8,1,f +8841,42003,0,1,f +8841,4274,7,1,t +8841,4274,7,2,f +8841,43093,1,5,f +8841,43558,272,1,f +8841,44292,7,2,f +8841,44308,0,2,f +8841,4519,7,3,f +8841,6558,0,4,f +8841,6628,0,2,f +8841,6629,1,2,f +8841,6632,0,4,f +8841,6632,7,1,f +8841,motor8,0,1,f +8841,rb00167,0,1,f +8841,rb00167,0,3,t +8842,2456,4,1,f +8842,2456,14,1,f +8842,2456,1,2,f +8842,2456,15,2,f +8842,3001,1,20,f +8842,3001,4,20,f +8842,3001,0,10,f +8842,3001,15,20,f +8842,3001,14,20,f +8842,3001,2,10,f +8842,3002,4,6,f +8842,3002,1,6,f +8842,3002,2,3,f +8842,3002,14,6,f +8842,3002,0,3,f +8842,3002,15,6,f +8842,3003,1,60,f +8842,3003,4,60,f +8842,3003,15,60,f +8842,3003,2,28,f +8842,3003,0,28,f +8842,3003,14,60,f +8842,3004,1,12,f +8842,3004,15,12,f +8842,3004,4,12,f +8842,3004,0,6,f +8842,3004,14,12,f +8842,3004,2,6,f +8842,3005,2,4,f +8842,3005,0,4,f +8842,3005,4,8,f +8842,3005,14,8,f +8842,3005,15,8,f +8842,3005,1,8,f +8842,30055,0,1,f +8842,3005pe1,14,4,f +8842,3007,15,1,f +8842,3007,1,1,f +8842,3007,14,1,f +8842,3007,4,1,f +8842,3008,14,1,f +8842,3008,15,2,f +8842,3008,4,1,f +8842,3008,1,2,f +8842,3009,15,3,f +8842,3009,1,3,f +8842,3009,4,2,f +8842,3009,14,2,f +8842,3010,4,10,f +8842,3010,14,10,f +8842,3010,15,10,f +8842,3010,0,8,f +8842,3010,1,10,f +8842,3010,2,8,f +8842,3020,15,2,f +8842,3020,71,2,f +8842,3021,71,2,f +8842,3022,71,2,f +8842,3034,71,2,f +8842,3039,47,2,f +8842,3298,15,2,f +8842,3622,0,2,f +8842,3622,14,4,f +8842,3622,1,4,f +8842,3622,15,4,f +8842,3622,2,2,f +8842,3622,4,4,f +8842,3626bpr0001,14,1,f +8842,3660,14,2,f +8842,3710,15,2,f +8842,3747b,15,2,f +8842,3957a,0,2,f +8842,4286,15,2,f +8842,4287,15,2,f +8842,4485,1,1,f +8842,4600,71,2,f +8842,6014b,15,4,f +8842,6015,0,4,f +8842,6141,33,4,f +8842,6141,36,4,f +8842,6238,47,2,f +8842,970c00,1,1,f +8842,973pr1244c01,73,1,f +8844,2420,4,2,f +8844,2436,0,1,f +8844,2445,0,1,f +8844,2452,4,2,f +8844,2452,14,1,f +8844,298c02,14,1,f +8844,298c02,14,1,t +8844,3004,4,1,f +8844,3005,4,2,f +8844,3021,0,1,f +8844,3021,4,3,f +8844,3023,4,3,f +8844,3023,0,4,f +8844,3024,14,2,f +8844,3031,4,1,f +8844,3069b,14,1,f +8844,3069b,4,1,f +8844,3070b,36,2,f +8844,3070b,36,1,t +8844,3127,4,1,f +8844,3626apr0001,14,1,f +8844,3666,4,2,f +8844,3710,4,4,f +8844,3787,4,1,f +8844,3788,4,1,f +8844,3795,0,1,f +8844,3821,4,1,f +8844,3822,4,1,f +8844,3823,47,1,f +8844,3829c01,14,1,f +8844,3957a,0,2,f +8844,4006,0,1,f +8844,4070,0,2,f +8844,4081b,4,2,f +8844,4081b,14,2,f +8844,4084,0,4,f +8844,4085b,14,4,f +8844,4175,0,1,f +8844,4208,0,1,f +8844,4209p05,4,1,f +8844,4213,14,1,f +8844,4214,4,1,f +8844,4275b,14,1,f +8844,4276b,4,2,f +8844,4349,0,2,f +8844,4485,4,1,f +8844,4504,14,1,f +8844,4522,0,1,f +8844,4600,0,2,f +8844,4624,14,4,f +8844,4859,4,3,f +8844,6141,4,1,t +8844,6141,47,2,f +8844,6141,46,1,f +8844,6141,46,1,t +8844,6141,14,4,f +8844,6141,4,1,f +8844,970c00,1,1,f +8844,973p27c01,1,1,f +8844,rb00164,0,1,f +8847,10830pat0001,0,1,f +8847,3626bpr0314,14,1,f +8847,3626bpr0325,14,1,f +8847,3626cpr0279,14,1,f +8847,3844,71,1,f +8847,3847,179,1,f +8847,4006,0,1,f +8847,62810,484,1,f +8847,86035,1,1,f +8847,970c00,1,1,f +8847,970c00,19,1,f +8847,970c00pr0155,71,1,f +8847,973pb1174c01,71,1,f +8847,973pb1175c01,1,1,f +8847,973pb1176c01,272,1,f +8851,2780,0,2,t +8851,2780,0,1,f +8851,32062,0,1,t +8851,32062,0,1,f +8851,32073,71,1,f +8851,32174,191,4,f +8851,41668,320,3,f +8851,41669,135,2,f +8851,44033,135,2,f +8851,47300,72,2,f +8851,47308,320,1,f +8851,47311,320,2,f +8851,47312,72,1,f +8851,50898,72,1,f +8851,6536,0,1,f +8852,2412b,8,1,f +8852,2444,0,2,f +8852,2446,0,1,f +8852,2540,4,2,f +8852,30121,0,1,f +8852,30553,8,1,f +8852,30602,0,1,f +8852,32013,0,1,f +8852,32062,4,1,f +8852,3626bpx40,14,1,f +8852,3749,7,2,f +8852,41530,36,1,f +8852,41532,0,1,f +8852,4859,0,1,f +8852,6041,4,1,f +8852,769,334,1,f +8852,970c00,0,1,f +8852,973c26,0,1,f +8853,10247,0,4,f +8853,11153,1,6,f +8853,11211,71,1,f +8853,11215,71,2,f +8853,11458,72,2,f +8853,11476,71,4,f +8853,13349,72,3,f +8853,13548,1,2,f +8853,14137,0,2,f +8853,14181,191,1,f +8853,14769,27,1,f +8853,15068,72,2,f +8853,15303,36,3,f +8853,15391,0,2,f +8853,15392,72,2,f +8853,15392,72,1,t +8853,15400,72,2,f +8853,15535,72,4,f +8853,15573,71,6,f +8853,15706,0,2,f +8853,17010,148,2,f +8853,17011,148,1,f +8853,17016pr0001,0,1,f +8853,17468pr0001,148,1,f +8853,17979,71,1,f +8853,2357,1,2,f +8853,2412b,71,1,t +8853,2412b,71,6,f +8853,2412b,320,1,f +8853,2412b,0,2,f +8853,2419,1,2,f +8853,2420,1,2,f +8853,2420,0,10,f +8853,2420,71,2,f +8853,2431,71,1,f +8853,2432,71,8,f +8853,2449,71,2,f +8853,2458,72,1,f +8853,2476,71,6,f +8853,2540,71,1,f +8853,2654,182,4,f +8853,2654,1,6,f +8853,2654,71,2,f +8853,2654,72,1,f +8853,2780,0,24,f +8853,2780,0,4,t +8853,2817,0,4,f +8853,3001,72,2,f +8853,3001,1,1,f +8853,3003,0,2,f +8853,3003,14,2,f +8853,30031,72,2,f +8853,3004,0,7,f +8853,3004,72,1,f +8853,3010,72,5,f +8853,30173a,179,1,t +8853,30173a,179,1,f +8853,3020,71,1,f +8853,3020,72,7,f +8853,3021,0,2,f +8853,3022,71,2,f +8853,3022,0,2,f +8853,3022,14,5,f +8853,3022,1,2,f +8853,3023,46,5,f +8853,3023,0,2,f +8853,3023,320,4,f +8853,3023,33,8,f +8853,3023,71,2,f +8853,3023,4,2,f +8853,3024,33,2,f +8853,3024,0,4,f +8853,3024,46,1,t +8853,3024,33,1,t +8853,3024,0,1,t +8853,3024,46,6,f +8853,3032,71,2,f +8853,3032,0,1,f +8853,3032,14,1,f +8853,3034,4,1,f +8853,30363,72,2,f +8853,30374,71,1,f +8853,30381,0,1,f +8853,30383,72,2,f +8853,3039,191,2,f +8853,3039,0,3,f +8853,3040b,84,8,f +8853,3040b,320,2,f +8853,30503,1,2,f +8853,30504,1,2,f +8853,30504,71,4,f +8853,3062b,46,3,f +8853,3062b,4,1,f +8853,3062b,1,2,f +8853,3068b,14,1,f +8853,3068b,72,2,f +8853,3068bpr0166,71,1,f +8853,3069b,191,4,f +8853,3069bp02,71,1,f +8853,3069bpr0070,0,1,f +8853,3069bpr0086,71,1,f +8853,3070b,72,2,t +8853,3070b,72,4,f +8853,3070b,1,2,f +8853,3070b,191,2,f +8853,3070b,191,2,t +8853,3070b,1,1,t +8853,3176,71,1,f +8853,32013,72,8,f +8853,32018,71,2,f +8853,32062,4,2,f +8853,32474,80,1,f +8853,32532,0,2,f +8853,32555,0,2,f +8853,3460,71,1,f +8853,3623,71,8,f +8853,3626cpr1466,71,1,f +8853,3626cpr1467,78,1,f +8853,3626cpr1468,27,1,f +8853,3626cpr1510,0,1,f +8853,3626cpr1514,1,1,f +8853,3660,72,6,f +8853,3665,71,2,f +8853,3665,72,2,f +8853,3665,1,4,f +8853,3666,71,6,f +8853,3666,72,4,f +8853,37,72,2,f +8853,3700,0,6,f +8853,3700,72,1,f +8853,3710,72,4,f +8853,3710,0,4,f +8853,3738,71,2,f +8853,3747b,1,1,f +8853,3795,0,4,f +8853,3795,71,4,f +8853,3832,0,1,f +8853,3894,71,3,f +8853,3937,71,1,f +8853,3941,41,1,f +8853,3941,182,1,f +8853,3958,72,1,f +8853,3960,71,2,f +8853,3960,41,2,f +8853,4032a,25,6,f +8853,4079,14,3,f +8853,41532,0,2,f +8853,41747,191,1,f +8853,41748,191,1,f +8853,41769,320,1,f +8853,41769,1,1,f +8853,41770,1,1,f +8853,41770,320,1,f +8853,41854,72,4,f +8853,42022,72,2,f +8853,42060,1,1,f +8853,42061,1,1,f +8853,4274,1,9,f +8853,4274,1,3,t +8853,4285,191,2,f +8853,43093,1,2,f +8853,43712,72,2,f +8853,43713,0,2,f +8853,43719,0,1,f +8853,43722,191,6,f +8853,43722,1,2,f +8853,43723,191,6,f +8853,43723,1,2,f +8853,43898,179,2,f +8853,44302a,71,2,f +8853,44568,71,1,f +8853,44676,72,2,f +8853,44728,0,1,f +8853,4510,71,1,f +8853,4519,71,6,f +8853,45705,41,1,f +8853,4599b,4,1,t +8853,4599b,4,1,f +8853,4599b,0,1,t +8853,4599b,0,2,f +8853,47397,71,1,f +8853,47398,71,1,f +8853,4740,0,2,f +8853,4740,36,1,f +8853,4740,41,3,f +8853,4740,28,1,f +8853,4742,72,1,f +8853,47457,4,4,f +8853,47973,72,2,f +8853,4865b,4,1,f +8853,50231,0,1,f +8853,50373,1,1,f +8853,50950,4,2,f +8853,50950,72,2,f +8853,50955,71,2,f +8853,50956,71,2,f +8853,51739,71,4,f +8853,54091,72,2,f +8853,54200,0,1,f +8853,54200,14,3,f +8853,54200,1,4,f +8853,54200,0,1,t +8853,54200,320,4,f +8853,54200,1,2,t +8853,54200,14,2,t +8853,54200,320,1,t +8853,57906,179,2,f +8853,58176,33,2,f +8853,58176,36,2,f +8853,58176,182,6,f +8853,59900,0,2,f +8853,60219,0,1,f +8853,60470a,0,2,f +8853,60470a,4,2,f +8853,60471,71,3,f +8853,60474,71,2,f +8853,60475a,0,2,f +8853,60475b,84,2,f +8853,60476,4,2,f +8853,60476,71,4,f +8853,60935,179,2,f +8853,61184,71,2,f +8853,61252,71,1,f +8853,61252,0,4,f +8853,6134,1,1,f +8853,61409,1,2,f +8853,61409,0,2,f +8853,6141,41,1,t +8853,6141,179,30,f +8853,6141,182,2,t +8853,6141,41,2,f +8853,6141,182,7,f +8853,6141,179,6,t +8853,6232,71,4,f +8853,62810,84,1,f +8853,63864,1,4,f +8853,63864,71,1,f +8853,63965,0,1,f +8853,64391,179,1,f +8853,64392,179,2,f +8853,64644,0,4,f +8853,64682,179,2,f +8853,64683,179,1,f +8853,64867,72,1,f +8853,6553,0,2,f +8853,6636,0,1,f +8853,6636,72,2,f +8853,72475,41,1,f +8853,73983,0,6,f +8853,75937,179,2,f +8853,75c03,70,1,f +8853,75c03,70,1,t +8853,75c07,0,2,t +8853,75c07,0,2,f +8853,85974pr0004,0,1,f +8853,87087,0,3,f +8853,87580,72,1,f +8853,87620,71,2,f +8853,90202,0,1,f +8853,90630,0,2,f +8853,92279,40,1,f +8853,92280,0,2,f +8853,92280,71,2,f +8853,92582,71,1,f +8853,92946,191,2,f +8853,92950,0,1,f +8853,93273,320,1,f +8853,93571,72,4,f +8853,93606,71,1,f +8853,95344,297,1,t +8853,95344,297,2,f +8853,96874,25,1,t +8853,970c00pr0701,320,3,f +8853,970c00pr0727,0,1,f +8853,970x026,72,1,f +8853,973pr2735c01,71,1,f +8853,973pr2736c01,320,1,f +8853,973pr2737c01,320,1,f +8853,973pr2783c01,0,1,f +8853,973pr2786c01,0,1,f +8854,2654,0,1,f +8854,3004,34,2,f +8854,30173b,135,1,f +8854,3022,2,1,f +8854,30374,297,1,f +8854,3626cpr0866,14,1,f +8854,4643537,9999,1,t +8854,4643538,9999,1,t +8854,4643539,9999,1,t +8854,4643540,9999,1,t +8854,4643541,9999,1,t +8854,63965,70,1,f +8854,64727,2,2,f +8854,92690,297,2,f +8854,970c00pr0277,2,1,f +8854,973pr1899c01,2,1,f +8854,98132,148,1,f +8854,98133pr0005,2,1,f +8854,98345pr0001,34,1,f +8854,98354pr0010,297,1,f +8855,2335pb006,0,2,f +8855,2412b,71,1,f +8855,2446,73,1,f +8855,2446,85,1,f +8855,2446,0,1,f +8855,2446,4,1,f +8855,2446,2,1,f +8855,2449,71,2,f +8855,2450,0,2,f +8855,2453a,71,6,f +8855,2454a,320,2,f +8855,2454a,112,4,f +8855,2454a,71,2,f +8855,2454a,0,2,f +8855,2454px7,0,4,f +8855,2458,15,2,f +8855,2465,71,3,f +8855,2490pb05,112,1,f +8855,2540,72,4,f +8855,2555,0,4,f +8855,2570,70,2,f +8855,2587pb01,85,1,f +8855,2587pb02,73,1,f +8855,2587pb03,2,1,f +8855,2587pb04,4,1,f +8855,2587pb05,0,1,f +8855,2817,0,1,f +8855,2921,0,2,f +8855,30000,71,1,f +8855,3001,19,1,f +8855,3001,72,3,f +8855,3002,0,2,f +8855,3002,71,2,f +8855,3003,71,1,f +8855,3004,19,2,f +8855,3004,15,1,f +8855,3004,71,43,f +8855,3004,0,3,f +8855,3004,72,11,f +8855,30045,0,2,f +8855,3005,71,14,f +8855,30055,70,1,f +8855,30072,0,1,f +8855,3009,72,1,f +8855,3009,71,16,f +8855,3009,112,8,f +8855,3010,72,2,f +8855,3010,71,2,f +8855,3010,15,2,f +8855,30104,70,1,f +8855,30145,72,4,f +8855,30145,15,2,f +8855,30145,71,2,f +8855,30169,0,5,f +8855,3020,70,2,f +8855,3021,0,4,f +8855,3022,0,8,f +8855,3022,72,2,f +8855,3023,15,3,f +8855,3023,0,16,f +8855,30237a,0,4,f +8855,30238,42,1,f +8855,30246,71,3,f +8855,30271pb01,71,1,f +8855,30272,71,1,f +8855,30293,70,1,f +8855,30294,70,1,f +8855,3031,0,3,f +8855,3031,320,1,f +8855,3032,0,2,f +8855,3034,0,1,f +8855,30365,0,2,f +8855,30386,0,2,f +8855,3039,320,2,f +8855,3039,15,2,f +8855,3039,71,6,f +8855,3040b,71,6,f +8855,3040b,15,4,f +8855,3040b,0,2,f +8855,3048c,71,24,f +8855,30541,320,2,f +8855,3062b,19,14,f +8855,3062b,112,6,f +8855,3062b,15,2,f +8855,3062b,320,2,f +8855,3068b,112,4,f +8855,3068b,0,5,f +8855,3069b,0,3,f +8855,3069b,15,1,f +8855,3069bpb039,15,1,f +8855,3245b,71,10,f +8855,3298,0,1,f +8855,3307,71,1,f +8855,3308,71,2,f +8855,33320,2,1,f +8855,3403,0,2,f +8855,3404,0,1,f +8855,3622,0,4,f +8855,3626bpb0217,14,1,f +8855,3626bpb0218,14,1,f +8855,3626bpb0220,14,1,f +8855,3626bpr0190,15,1,f +8855,3626bpr0348,14,1,f +8855,3626bpr0350,14,1,f +8855,3626bpr0351,14,1,f +8855,3626bpr0353,14,1,f +8855,3626bpr0895,15,1,f +8855,3659,15,1,f +8855,3660,0,2,f +8855,3660,71,4,f +8855,3660,112,8,f +8855,3665,0,2,f +8855,3665,71,2,f +8855,3666,0,1,f +8855,3678b,71,4,f +8855,3679,71,14,f +8855,3680,15,10,f +8855,3680,0,4,f +8855,3684,71,22,f +8855,3700,0,2,f +8855,3702,0,2,f +8855,3710,320,2,f +8855,3710,72,2,f +8855,3749,19,4,f +8855,3755,71,2,f +8855,3794a,0,6,f +8855,3848,0,3,f +8855,3848,70,2,f +8855,3849,72,3,f +8855,3865,72,1,f +8855,3937,15,2,f +8855,3938,0,2,f +8855,3957a,0,5,f +8855,40249,72,1,f +8855,40253,0,1,f +8855,4070,71,2,f +8855,4070,0,4,f +8855,4085c,0,2,f +8855,41539,0,5,f +8855,4162,71,2,f +8855,4162,0,2,f +8855,41747,320,2,f +8855,41748,320,2,f +8855,41769,0,1,f +8855,41770,0,1,f +8855,4201,0,4,f +8855,42022,0,2,f +8855,4204,72,1,f +8855,42060,112,1,f +8855,42060,320,1,f +8855,42061,320,1,f +8855,42061,112,1,f +8855,4286,71,4,f +8855,4460a,71,12,f +8855,4460a,15,6,f +8855,44728,112,6,f +8855,4495a,112,5,f +8855,4497,0,8,f +8855,4589,0,1,f +8855,4623,0,1,f +8855,4738a,70,1,f +8855,4739a,70,1,f +8855,48485,85,1,f +8855,48486,73,1,f +8855,48487,4,1,f +8855,48488,2,1,f +8855,48489,0,1,f +8855,48490,71,2,f +8855,48492,112,1,f +8855,48493,0,1,f +8855,48494pb01,151,1,f +8855,48494pb02,151,1,f +8855,48494pb03,151,1,f +8855,48494pb04,151,1,f +8855,48494pb05,151,1,f +8855,48495,14,1,f +8855,48495,179,3,f +8855,48495,178,1,f +8855,48495,4,1,f +8855,48495,134,1,f +8855,48495,137,1,f +8855,4865a,0,5,f +8855,4865a,15,2,f +8855,57503,334,1,f +8855,57504,334,1,f +8855,57505,334,1,f +8855,57506,334,1,f +8855,6020,0,2,f +8855,6046,0,1,f +8855,6056,71,2,f +8855,6066,71,4,f +8855,6066,72,2,f +8855,6112,71,1,f +8855,6126a,57,6,f +8855,6141,36,1,t +8855,6141,0,4,f +8855,6141,36,2,f +8855,6141,0,1,t +8855,6222,72,4,f +8855,6231,0,2,f +8855,6231,15,2,f +8855,6260,15,1,f +8855,6265,15,2,f +8855,6265,15,1,t +8855,6266,15,2,f +8855,6636,112,8,f +8855,6636,0,4,f +8855,71015,334,1,f +8855,75998pr0007,15,1,f +8855,970x021,0,1,f +8855,970x154,0,1,f +8855,970x194,73,1,f +8855,970x194,85,1,f +8855,970x195,72,1,f +8855,970x199,4,1,f +8855,970x199,2,1,f +8855,973c14,0,1,f +8855,973c33,73,1,f +8855,973c34,4,1,f +8855,973c35,2,1,f +8855,973c36,85,1,f +8855,973pb0346c01,71,1,f +8855,973pb0347c01,0,1,f +8855,kkc47,9999,1,t +8855,kkc58,9999,1,t +8855,kkc66,9999,1,t +8855,kkc68,9999,1,t +8855,kkc78,9999,1,t +8855,rb00189a,1,1,f +8855,rb00189b,1,2,f +8857,10201,71,1,f +8857,10314,19,1,f +8857,11477,15,2,f +8857,14874,9999,1,t +8857,15207,72,2,f +8857,2412b,71,4,f +8857,2420,15,1,f +8857,2431,4,1,f +8857,2445,72,1,f +8857,2456,0,1,f +8857,2456,71,1,f +8857,2877,15,2,f +8857,2877,71,2,f +8857,3004,1,3,f +8857,3005,15,6,f +8857,3009,15,1,f +8857,3010,71,2,f +8857,3021,71,2,f +8857,3022,14,1,f +8857,3023,0,3,f +8857,3024,182,4,f +8857,3024,15,3,f +8857,3024,182,1,t +8857,3024,15,1,t +8857,3031,71,1,f +8857,3034,15,2,f +8857,3036,71,1,f +8857,3036,28,2,f +8857,30374,71,1,f +8857,3069b,1,5,f +8857,3245c,15,2,f +8857,3623,15,4,f +8857,3626cpr0499,14,1,f +8857,3626cpr0893,14,1,f +8857,3660,71,4,f +8857,3665,71,2,f +8857,3666,71,1,f +8857,3666,28,1,f +8857,3666,2,1,f +8857,3666,15,6,f +8857,3710,2,5,f +8857,3710,28,3,f +8857,3795,71,2,f +8857,3821,15,1,f +8857,3822,15,1,f +8857,3829c01,1,1,f +8857,3899,4,2,f +8857,3958,15,1,f +8857,4070,15,6,f +8857,4079,1,2,f +8857,4162,2,1,f +8857,4162,15,2,f +8857,4215b,40,2,f +8857,44301a,0,2,f +8857,44302a,0,2,f +8857,4488,0,4,f +8857,4510,71,2,f +8857,50745,15,4,f +8857,50950,72,2,f +8857,52031,15,1,f +8857,54200,47,2,f +8857,54200,47,1,t +8857,60032,15,2,f +8857,6014b,71,4,f +8857,6021,4,1,f +8857,60581,15,3,f +8857,6081,15,1,f +8857,6091,15,2,f +8857,6111,15,2,f +8857,61484,15,1,f +8857,6179,4,1,f +8857,62711,0,1,f +8857,62810,484,1,f +8857,63864,2,2,f +8857,63864,15,4,f +8857,6636,71,1,f +8857,73983,15,2,f +8857,85984,15,2,f +8857,87552,40,2,f +8857,87580,71,1,f +8857,87580,28,1,f +8857,87585,70,2,f +8857,87585,70,1,t +8857,87697,0,4,f +8857,92099,15,1,f +8857,92107,15,1,f +8857,92280,71,2,f +8857,92583,40,1,f +8857,92593,15,7,f +8857,92950,15,1,f +8857,970c00,71,1,f +8857,970c00,1,1,f +8857,973pr1801c01,25,1,f +8857,973pr1918c01,73,1,f +8857,97895,14,2,f +8857,98100,71,1,f +8857,98138,182,4,f +8857,98138,182,1,t +8857,98138,36,1,t +8857,98138,36,2,f +8857,98835,15,1,f +8858,32034,7,1,f +8858,32062,0,1,f +8858,32073,0,1,f +8858,32123b,7,2,f +8858,32174,0,6,f +8858,32269,7,1,f +8858,32270,7,3,f +8858,32475,15,2,f +8858,32476,7,1,f +8858,32482,7,1,f +8858,32489,15,1,f +8858,32553,7,1,f +8858,32554,143,1,f +8858,3706,0,1,f +8858,3713,7,2,f +8858,3749,7,1,f +8858,3961,15,1,f +8858,43093,0,1,f +8858,43557,7,2,f +8858,43558,179,1,f +8858,43559,179,2,f +8858,43855,15,1,f +8858,44032,179,2,f +8858,4519,0,4,f +8858,6587,8,2,f +8860,30153,47,1,f +8860,30374,334,1,f +8860,64567,334,1,f +8860,88646,0,1,f +8860,col161,-1,1,f +8862,11089,0,1,f +8862,11090,14,4,f +8862,11090,14,1,t +8862,11091,0,2,f +8862,11091,321,2,f +8862,11091,272,10,f +8862,11096,297,1,f +8862,11097,179,2,f +8862,11097,297,1,f +8862,11100,15,2,f +8862,11100,0,4,f +8862,11107,179,3,f +8862,11127,41,1,f +8862,11203pr0005,72,4,f +8862,12549pr0001,15,1,f +8862,12550pr0002,0,1,f +8862,12550pr0005,0,1,f +8862,12825,0,2,f +8862,12825,15,2,f +8862,13277,9999,1,t +8862,15207,15,2,f +8862,2399,14,1,f +8862,2412b,1,3,f +8862,2419,15,2,f +8862,2431,15,2,f +8862,2431,1,2,f +8862,2445,1,1,f +8862,2540,14,2,f +8862,2540,1,2,f +8862,2817,71,2,f +8862,298c02,14,1,f +8862,298c02,71,1,t +8862,298c02,71,2,f +8862,298c02,14,1,t +8862,3001,321,3,f +8862,30035,0,1,f +8862,3004,321,3,f +8862,3004,14,2,f +8862,3020,272,1,f +8862,3020,0,1,f +8862,3021,1,5,f +8862,3022,27,2,f +8862,3023,320,2,f +8862,3023,272,10,f +8862,3031,15,1,f +8862,3032,1,2,f +8862,30374,70,1,f +8862,30374,36,3,f +8862,3039,14,4,f +8862,30414,1,2,f +8862,3048c,72,1,f +8862,3048c,14,1,f +8862,3049d,14,1,f +8862,30565,272,2,f +8862,3062b,36,1,f +8862,3062b,41,2,f +8862,3068b,15,1,f +8862,3068b,272,1,f +8862,3069b,15,1,f +8862,3626cpr1124,212,1,f +8862,3626cpr1130,0,1,f +8862,3665,15,2,f +8862,3666,1,2,f +8862,3710,1,2,f +8862,3747b,0,1,f +8862,3747b,1,2,f +8862,3794b,14,1,f +8862,4032a,1,1,f +8862,4081b,15,2,f +8862,4150,15,4,f +8862,41751,272,1,f +8862,41769,272,1,f +8862,41770,272,1,f +8862,43710,272,1,f +8862,43711,272,1,f +8862,43713,15,2,f +8862,43719,0,1,f +8862,44126,72,1,f +8862,44301a,0,2,f +8862,44302a,72,2,f +8862,44676,15,2,f +8862,44728,14,1,f +8862,44728,1,4,f +8862,4477,1,2,f +8862,4589,4,4,f +8862,4589,33,2,f +8862,4623,72,2,f +8862,4623,15,8,f +8862,47397,272,1,f +8862,47398,272,1,f +8862,4740,0,1,f +8862,47407,15,1,f +8862,47455,0,2,f +8862,48169,72,2,f +8862,48170,72,2,f +8862,4871,15,3,f +8862,50304,72,1,f +8862,50305,72,1,f +8862,50943,71,1,f +8862,53989,72,2,f +8862,53989,15,12,f +8862,54200,272,1,t +8862,54200,272,2,f +8862,57909a,72,2,f +8862,57910,72,2,f +8862,58176,33,2,f +8862,6019,72,2,f +8862,60478,15,6,f +8862,6087,0,1,f +8862,61072,135,3,f +8862,61184,71,2,f +8862,6140,0,2,f +8862,61409,1,2,f +8862,6141,36,1,t +8862,6141,36,2,f +8862,6141,41,1,t +8862,6141,41,19,f +8862,63864,0,2,f +8862,64225,272,2,f +8862,6636,272,8,f +8862,85984,15,2,f +8862,87087,321,4,f +8862,87747,0,1,t +8862,87747,0,8,f +8862,92280,71,4,f +8862,92579,40,1,f +8862,92692,0,2,f +8862,92946,15,8,f +8862,970c00pr0433,0,1,f +8862,970c01pr0440,15,1,f +8862,970d16,0,1,f +8862,973pr1358bc01,0,1,f +8862,973pr2229c01,212,1,f +8862,973pr2243c01,0,1,f +8862,98138,41,1,t +8862,98138,1,1,t +8862,98138,71,2,f +8862,98138,41,7,f +8862,98138,71,1,t +8862,98138,1,2,f +8862,98313,14,4,f +8862,99206,71,6,f +8862,99207,71,6,f +8862,99780,72,14,f +8862,99781,71,3,f +8863,2431,15,1,f +8863,32016,0,2,f +8863,32034,15,2,f +8863,32039,4,2,f +8863,32056,0,1,f +8863,32062,0,8,f +8863,32073,7,2,f +8863,32579,7,1,f +8863,3707,0,1,f +8863,3713,7,1,t +8863,3713,7,1,f +8863,3749,19,1,f +8863,41677,0,2,f +8863,4274,7,1,t +8863,4274,7,2,f +8863,43093,1,2,f +8863,43559,15,2,f +8863,44790,1,1,f +8863,44791,1,1,f +8863,44846,135,1,f +8863,44847,0,2,f +8863,44848,0,2,f +8863,44849,1,1,f +8863,44850,15,1,f +8863,44851,15,1,f +8863,44852,15,1,f +8863,44855,7,1,f +8863,45590,0,1,f +8863,47073,89,1,f +8863,47074,1,1,f +8863,6558,0,2,f +8865,x1167cx1,0,2,f +8867,2357,15,2,f +8867,2412b,0,2,f +8867,2420,1,2,f +8867,2431,72,2,f +8867,2431,71,4,f +8867,2436,1,4,f +8867,2444,0,1,f +8867,2456,15,2,f +8867,2540,1,1,f +8867,2654,71,10,f +8867,2780,0,1,t +8867,2780,0,5,f +8867,2877,71,10,f +8867,298c02,0,1,t +8867,298c02,0,2,f +8867,3001,71,3,f +8867,3002,1,5,f +8867,3003,71,4,f +8867,3005,0,6,f +8867,3007,1,2,f +8867,3009,0,2,f +8867,3010,71,6,f +8867,3010,72,1,f +8867,3020,0,1,f +8867,3020,71,6,f +8867,3021,72,2,f +8867,3022,72,3,f +8867,3023,4,2,f +8867,3023,72,24,f +8867,30237a,15,1,f +8867,30303,71,1,f +8867,3033,72,2,f +8867,3035,72,2,f +8867,30363,1,2,f +8867,30367b,72,2,f +8867,30374,42,1,f +8867,30375,19,2,f +8867,30376,19,2,f +8867,30377,19,1,t +8867,30377,19,4,f +8867,30378,19,2,f +8867,3039,1,6,f +8867,3040b,72,4,f +8867,30553,72,2,f +8867,30565,272,6,f +8867,30565,72,4,f +8867,3062b,72,2,f +8867,3068b,272,4,f +8867,3069b,71,6,f +8867,3069b,72,3,f +8867,3069bpr0086,71,1,f +8867,32000,72,6,f +8867,32039,71,1,f +8867,32054,0,3,f +8867,32062,4,1,f +8867,32123b,71,1,t +8867,32123b,71,2,f +8867,3298,272,8,f +8867,33243,72,2,f +8867,3622,71,6,f +8867,3623,71,6,f +8867,3626bpr0525,78,1,f +8867,3665,1,10,f +8867,3666,71,5,f +8867,3678b,272,2,f +8867,3678b,71,4,f +8867,3700,1,6,f +8867,3700,71,2,f +8867,3702,1,1,f +8867,3705,0,1,f +8867,3710,272,1,f +8867,3738,1,2,f +8867,3747b,71,1,f +8867,3794b,272,6,f +8867,3795,71,3,f +8867,3894,72,1,f +8867,3937,72,1,f +8867,3941,272,8,f +8867,3941,72,4,f +8867,3958,72,1,f +8867,3960,272,2,f +8867,4032a,0,1,f +8867,4070,72,12,f +8867,4175,72,2,f +8867,41751,72,1,f +8867,41769,1,3,f +8867,41770,1,3,f +8867,41879a,19,1,f +8867,41889,148,3,f +8867,41890,148,3,f +8867,42023,72,2,f +8867,42687,148,3,f +8867,4274,1,1,t +8867,4274,1,3,f +8867,4286,72,4,f +8867,43093,1,3,f +8867,44294,71,2,f +8867,4589,0,6,f +8867,4623,71,1,f +8867,4740,71,1,f +8867,48092,272,4,f +8867,48336,0,3,f +8867,4854,272,2,f +8867,50948,0,1,f +8867,50950,272,4,f +8867,54200,182,2,f +8867,54200,182,1,t +8867,57899,0,1,f +8867,58846,71,2,f +8867,58846,272,2,f +8867,6003,72,2,f +8867,60474,71,2,f +8867,60481,71,2,f +8867,6111,0,1,f +8867,61184,71,4,f +8867,61189pr0003,15,1,f +8867,6134,71,1,f +8867,6141,0,8,f +8867,6141,0,1,t +8867,6141,1,1,t +8867,6141,1,5,f +8867,61485,0,1,f +8867,61678,71,2,f +8867,6233,272,2,f +8867,62462,0,2,f +8867,63868,0,6,f +8867,63965,0,5,f +8867,64567,80,1,f +8867,64644,0,2,f +8867,64796,148,3,f +8867,64804pr01,378,1,f +8867,6541,15,2,f +8867,6564,71,1,f +8867,6565,71,1,f +8867,6636,1,2,f +8867,95120,72,1,f +8867,970x026,15,1,f +8867,973pr0470c01,15,1,f +8867,973pr1458c01,19,1,f +8868,3626bpr0953,14,1,f +8868,37,72,1,t +8868,37,72,1,f +8868,88283,70,1,f +8868,88646,0,1,f +8868,95327pr0001,0,1,f +8868,970c00pr0321,14,1,f +8868,973pr2034c01,14,1,f +8869,11211,71,3,f +8869,11213,322,1,f +8869,11267,26,1,f +8869,11403pr0002c01,226,1,f +8869,11407pr0001c01,26,1,f +8869,11610,19,1,f +8869,11618,31,1,f +8869,11618,31,1,t +8869,11641,15,1,f +8869,11816pr0001,84,1,f +8869,11816pr0005,78,1,f +8869,2339,70,2,f +8869,2343,47,2,f +8869,2357,15,2,f +8869,2412b,71,2,f +8869,2412b,15,7,f +8869,2420,70,1,f +8869,2450,15,1,f +8869,2453b,15,8,f +8869,2456,15,1,f +8869,2456,70,1,f +8869,2540,14,1,f +8869,2877,15,5,f +8869,2921,19,1,f +8869,3003,1,9,f +8869,3004,15,5,f +8869,3004,19,9,f +8869,30055,15,1,f +8869,3008,70,1,f +8869,3009,15,6,f +8869,3009,70,5,f +8869,3009,19,9,f +8869,3010,19,9,f +8869,3010,70,2,f +8869,3010,73,1,f +8869,30136,70,2,f +8869,30136,71,2,f +8869,30137,70,6,f +8869,3020,19,2,f +8869,3021,71,4,f +8869,3022,15,1,f +8869,3023,19,5,f +8869,3023,70,6,f +8869,3034,70,1,f +8869,3035,29,2,f +8869,3035,2,1,f +8869,30350b,15,1,f +8869,30357,19,1,f +8869,3037,26,2,f +8869,3039,33,3,f +8869,3039,15,2,f +8869,3039,26,14,f +8869,3039,70,1,f +8869,30390b,72,1,f +8869,3039pr62,71,1,f +8869,3040b,26,4,f +8869,3040b,70,1,f +8869,30414,72,1,f +8869,30503,15,1,f +8869,3062b,47,1,f +8869,3062b,19,8,f +8869,3065,33,2,f +8869,3068b,71,2,f +8869,3068b,15,1,f +8869,3069b,191,9,f +8869,3069b,26,4,f +8869,3069b,0,2,f +8869,3069b,27,4,f +8869,3069bpr0100,2,1,f +8869,3070b,14,1,t +8869,3070b,14,1,f +8869,32014,15,2,f +8869,32062,4,4,f +8869,32064b,71,2,f +8869,33078,4,1,f +8869,3308,19,2,f +8869,33291,5,3,t +8869,33291,5,25,f +8869,3622,15,6,f +8869,3623,71,4,f +8869,3666,70,13,f +8869,3666,19,7,f +8869,3700,0,4,f +8869,3701,15,2,f +8869,3710,70,18,f +8869,3741,2,3,t +8869,3741,2,4,f +8869,3747b,1,1,f +8869,3794b,15,2,f +8869,3795,70,1,f +8869,3795,15,3,f +8869,3941,70,4,f +8869,4070,19,6,f +8869,4085c,15,2,f +8869,4094b,45,1,f +8869,4150,27,2,f +8869,4150,15,1,f +8869,4150pr0009,15,1,f +8869,41539,2,2,f +8869,4175,14,1,f +8869,4460b,70,2,f +8869,44728,15,1,f +8869,45590,0,1,f +8869,4589,42,1,f +8869,4599b,15,1,t +8869,4599b,15,2,f +8869,4623,71,3,f +8869,4740,15,1,f +8869,4740,71,2,f +8869,48092,15,4,f +8869,48336,15,1,f +8869,54200,70,1,t +8869,54200,71,4,f +8869,54200,33,4,f +8869,54200,70,1,f +8869,54200,33,1,t +8869,54200,71,1,t +8869,59349,19,1,f +8869,59349,47,1,f +8869,59443,70,1,f +8869,6020,70,1,f +8869,60474,15,2,f +8869,60581,15,2,f +8869,60583b,15,2,f +8869,60800a,2,2,f +8869,6141,4,1,t +8869,6141,27,1,t +8869,6141,85,8,f +8869,6141,182,1,t +8869,6141,85,1,t +8869,6141,71,1,t +8869,6141,34,1,t +8869,6141,34,2,f +8869,6141,1,1,t +8869,6141,27,1,f +8869,6141,182,4,f +8869,6141,29,2,f +8869,6141,42,8,f +8869,6141,29,1,t +8869,6141,42,2,t +8869,6141,4,1,f +8869,6141,41,5,f +8869,6141,41,1,t +8869,6141,1,1,f +8869,6141,71,2,f +8869,6148,2,4,f +8869,6231,15,2,f +8869,63965,15,1,f +8869,6636,191,7,f +8869,72824,25,1,f +8869,87079,15,1,f +8869,91405,322,1,f +8869,92258,226,1,f +8869,92438,322,1,f +8869,92456pr0023c01,84,1,f +8869,92456pr0029c01,78,1,f +8869,93092,30,1,f +8869,93352,308,1,f +8869,95827,191,4,f +8869,95828,191,4,f +8869,95829,191,4,f +8869,95831,191,4,f +8869,95832,191,4,f +8869,99207,71,1,f +8870,107pr0002,15,1,f +8870,15,0,4,f +8870,17,0,4,f +8870,21,47,1,f +8870,3001a,15,1,f +8870,3002apb06,15,5,f +8870,3003,0,2,f +8870,3003,15,8,f +8870,3004,15,36,f +8870,3004,0,11,f +8870,3004,47,2,f +8870,3004p13,15,1,f +8870,3005,15,16,f +8870,3005,0,2,f +8870,3006,15,1,f +8870,3007,15,1,f +8870,3008,15,12,f +8870,3008,0,4,f +8870,3009,0,3,f +8870,3009,15,17,f +8870,3009p27,15,1,f +8870,3010,15,14,f +8870,3010,0,2,f +8870,3010p40,15,2,f +8870,3010pb036u,15,2,f +8870,3020,0,3,f +8870,3022,15,3,f +8870,3023,14,11,f +8870,3023,0,5,f +8870,3023,15,4,f +8870,3024,1,2,f +8870,3024,14,2,f +8870,3024,4,4,f +8870,3030,15,1,f +8870,3030,0,4,f +8870,3031,0,1,f +8870,3034,0,4,f +8870,3034,15,1,f +8870,3035,0,1,f +8870,3035,15,1,f +8870,3036,0,5,f +8870,3037,47,2,f +8870,3039,47,1,f +8870,3039,0,3,f +8870,3062a,47,4,f +8870,3070a,0,2,f +8870,3081cc01,14,11,f +8870,3137c01,0,5,f +8870,3139,0,14,f +8870,3144,79,1,f +8870,3460,15,3,f +8870,3460,7,4,f +8870,3461,7,1,f +8870,3462,0,1,f +8870,3464,4,4,f +8870,3475a,7,2,f +8870,3579,15,3,f +8870,3581,0,2,f +8870,3581,15,4,f +8870,3582,0,2,f +8870,3624,15,4,f +8870,3626a,14,4,f +8870,3633,14,1,f +8870,3644,47,4,f +8870,3645p03,2,1,f +8870,3660a,0,2,f +8870,3660a,15,2,f +8870,7284,15,1,f +8870,7930,14,3,f +8870,8,15,4,f +8871,53570,297,1,f +8871,6558,0,3,f +8871,78c06,297,2,f +8871,78c16,297,2,f +8873,122c01,0,4,f +8873,3001,0,2,f +8873,3002,15,1,f +8873,3003,0,1,f +8873,3003,14,9,f +8873,3004,15,6,f +8873,3004,4,14,f +8873,3004p06,15,1,f +8873,3005,4,11,f +8873,3005,15,2,f +8873,3008,15,2,f +8873,3009,4,5,f +8873,3009,15,2,f +8873,3010,4,2,f +8873,3020,1,2,f +8873,3020,0,2,f +8873,3022,1,1,f +8873,3022,0,2,f +8873,3022,15,2,f +8873,3023,15,5,f +8873,3023,4,4,f +8873,3023,1,2,f +8873,3024,46,4,f +8873,3024,15,2,f +8873,3024,4,5,f +8873,3024,1,2,f +8873,3024,36,4,f +8873,3027,0,1,f +8873,3028,1,1,f +8873,3031,0,1,f +8873,3031,1,2,f +8873,3034,0,1,f +8873,3034,1,1,f +8873,3035,0,2,f +8873,3039p23,4,1,f +8873,3039p32,15,1,f +8873,3040b,1,2,f +8873,3040p02,4,1,f +8873,3062b,1,2,f +8873,3068b,15,4,f +8873,3068b,1,1,f +8873,3069b,15,6,f +8873,3070b,1,4,f +8873,3139,0,6,f +8873,3460,4,1,f +8873,3474,7,1,f +8873,3585,7,1,f +8873,3586,7,1,f +8873,3622,4,8,f +8873,3623,15,4,f +8873,3624,15,1,f +8873,3626apr0001,14,4,f +8873,3641,0,8,f +8873,3660,7,2,f +8873,3660,4,1,f +8873,3666,1,1,f +8873,3666,7,2,f +8873,3666,4,3,f +8873,3679,7,2,f +8873,3680,7,1,f +8873,3680,15,1,f +8873,3710,0,1,f +8873,3710,15,2,f +8873,3710,1,5,f +8873,3795,1,4,f +8873,3795,4,2,f +8873,3795,7,1,f +8873,3821,15,2,f +8873,3822,15,2,f +8873,3823,47,2,f +8873,3829c01,4,2,f +8873,3832,15,1,f +8873,3833,4,1,f +8873,3853,15,2,f +8873,3855a,47,2,f +8873,3939,47,2,f +8873,3940b,0,11,f +8873,3957a,15,2,f +8873,4070,15,6,f +8873,4079,15,1,f +8873,4083,15,1,f +8873,4211,1,2,f +8873,4213,1,3,f +8873,4214,1,1,f +8873,4215a,15,2,f +8873,4276a,0,2,f +8873,4287,4,1,f +8873,4315,1,2,f +8873,4477,15,1,f +8873,4477,4,1,f +8873,4485,4,2,f +8873,4510,4,2,f +8873,4511,15,1,f +8873,4518ac01,0,1,f +8873,4624,7,6,f +8873,4625,1,3,f +8873,4854,7,2,f +8873,4855,7,2,f +8873,4856a,15,2,f +8873,4857,1,3,f +8873,4858,15,1,f +8873,4859,7,2,f +8873,4859,1,1,f +8873,4859,15,2,f +8873,4861,1,1,f +8873,4864a,15,2,f +8873,4865a,15,4,f +8873,4866,41,1,f +8873,4867px2,1,1,f +8873,4868a,1,2,f +8873,4869,7,2,f +8873,4870,7,3,f +8873,4871,7,1,f +8873,6141,36,3,f +8873,6141,36,1,t +8873,6141,34,1,f +8873,6141,34,1,t +8873,6377stk01,9999,1,t +8873,6377stk02,9999,1,t +8873,73312,15,1,f +8873,970c00,0,1,f +8873,970c00,1,3,f +8873,973pb0201c01,15,3,f +8873,973px189c01,0,1,f +8876,2412b,8,1,f +8876,2432,4,1,f +8876,2446pb14,8,1,f +8876,2447,0,1,t +8876,2447,0,1,f +8876,2540,8,1,f +8876,30027b,0,2,f +8876,30028,0,2,f +8876,3022,0,1,f +8876,3023,4,1,f +8876,30603pb09,4,1,f +8876,3062b,0,2,f +8876,3626bpb0188,0,1,f +8876,41854,0,1,f +8876,41861c01,7,1,f +8876,41862,0,1,f +8876,44728,7,1,f +8876,6014b,0,2,f +8876,6015,0,2,f +8876,6141,4,1,t +8876,6141,4,2,f +8876,6157,7,1,f +8876,x351,4,1,f +8878,3003,1,1,f +8878,3004,1,1,f +8878,3005pe1,14,2,f +8878,3021,14,1,f +8878,3039,1,2,f +8878,3660,1,1,f +8878,6215,4,1,f +8879,10p07,2,1,f +8879,3001a,15,1,f +8879,3002a,15,2,f +8879,3004,15,22,f +8879,3005,15,8,f +8879,3007,15,2,f +8879,3008,15,6,f +8879,3010,15,3,f +8879,3010pb036e,15,1,f +8879,3020,15,3,f +8879,3022,15,2,f +8879,3023,15,1,f +8879,3024,0,4,f +8879,3036,0,1,f +8879,3037,0,1,f +8879,3037,4,14,f +8879,3037,47,1,f +8879,3038,4,8,f +8879,3039,4,12,f +8879,3040a,4,1,f +8879,3041,4,1,f +8879,3042,4,2,f +8879,3043,4,2,f +8879,3046a,4,4,f +8879,3049b,4,1,f +8879,3062a,0,6,f +8879,3063b,4,4,f +8879,3068a,7,18,f +8879,3068a,0,4,f +8879,3081bc01,4,3,f +8879,3137c01,15,2,f +8879,3139,0,4,f +8879,3144,15,1,f +8879,3185,4,6,f +8879,3186,4,3,f +8879,3187,4,3,f +8879,31bc01,4,2,f +8879,32bc01,4,1,f +8879,453bc01,4,3,f +8879,ftfruith,2,2,f +8879,ftpineh,2,1,f +8880,20608,71,1,f +8880,21713,71,1,f +8880,3626cpr1727,71,1,f +8880,41879a,71,1,f +8880,88646,0,1,f +8880,973pr3111c01,71,1,f +8881,11303,4,1,f +8881,13608,179,1,t +8881,13608,179,1,f +8881,15573,14,4,f +8881,15712,71,2,f +8881,2412b,0,2,f +8881,2512,71,1,f +8881,3022,0,1,f +8881,30228,72,1,f +8881,3023,0,1,f +8881,3626cpr0891,14,1,f +8881,3795,14,1,f +8881,3829c01,14,1,f +8881,3836,70,1,f +8881,3837,72,1,f +8881,4070,14,2,f +8881,4083,15,1,f +8881,6014b,14,4,f +8881,60478,14,2,f +8881,60897,0,2,f +8881,6141,70,1,t +8881,6141,72,1,t +8881,6141,72,1,f +8881,6141,70,4,f +8881,6157,0,2,f +8881,87697,0,4,f +8881,970c00,1,1,f +8881,973pr1580c01,15,1,f +8881,98138,182,1,t +8881,98138,182,2,f +8882,32014,0,4,f +8882,32054,3,2,f +8882,32062,0,7,f +8882,32073,0,1,f +8882,32123b,7,2,f +8882,32123b,7,1,t +8882,32165,3,1,f +8882,32166,0,2,f +8882,32168,3,1,f +8882,32171pb008,4,1,f +8882,32171pb019,3,1,f +8882,32172,0,1,f +8882,32176,3,1,f +8882,32177,3,4,f +8882,32193,0,4,f +8882,32194,0,1,f +8882,3647,14,1,f +8882,3647,14,1,t +8882,3648b,14,1,f +8882,3705,0,1,f +8882,3706,0,1,f +8882,3706,0,1,t +8882,3749,7,4,f +8882,4716,14,1,f +8882,6553,14,2,f +8882,x209,0,1,f +8883,3039,25,2,f +8883,30390b,7,1,f +8883,3839b,15,1,f +8883,4617b,0,1,f +8883,js026,-1,1,f +8883,wing4612,15,1,f +8884,2412b,0,2,f +8884,2431,27,2,f +8884,2456,2,3,f +8884,2654,0,2,f +8884,2730,2,6,f +8884,2780,0,14,f +8884,2780,0,1,t +8884,2815,0,2,f +8884,3001,27,2,f +8884,3002,2,2,f +8884,3003,2,4,f +8884,3004,27,9,f +8884,3009,2,1,f +8884,3010,2,3,f +8884,3020,27,7,f +8884,3021,2,4,f +8884,3022,27,8,f +8884,3023,2,4,f +8884,3023,0,4,f +8884,3032,19,2,f +8884,3034,19,6,f +8884,30363,27,3,f +8884,3037,2,4,f +8884,3039,2,4,f +8884,3040b,2,2,f +8884,3048c,27,2,f +8884,3069b,27,4,f +8884,3173,19,1,f +8884,32000,27,4,f +8884,32013,8,5,f +8884,32014,8,4,f +8884,32039,0,4,f +8884,32062,4,7,f +8884,32064b,0,6,f +8884,32073,7,3,f +8884,32146,0,2,f +8884,32184,7,3,f +8884,32247,27,2,f +8884,32449,0,4,f +8884,32530,0,4,f +8884,32556,7,2,f +8884,3298,2,2,f +8884,3460,2,8,f +8884,3648b,7,4,f +8884,3660,2,6,f +8884,3665,2,4,f +8884,3666,27,2,f +8884,3673,7,2,f +8884,3700,2,7,f +8884,3701,27,5,f +8884,3702,2,2,f +8884,3703,2,3,f +8884,3705,0,6,f +8884,3706,0,4,f +8884,3707,0,3,f +8884,3708,0,2,f +8884,3710,27,6,f +8884,3710,0,2,f +8884,3713,7,1,t +8884,3713,7,4,f +8884,3747b,2,3,f +8884,3749,19,6,f +8884,3795,2,4,f +8884,3795,19,2,f +8884,3832,4,1,f +8884,3832,2,3,f +8884,3894,2,3,f +8884,3895,2,2,f +8884,3941,0,3,f +8884,3942c,0,1,f +8884,3956,0,1,f +8884,3958,19,1,f +8884,3960,15,2,f +8884,4032a,0,2,f +8884,4070,19,2,f +8884,41677,4,4,f +8884,41747,2,2,f +8884,41748,2,2,f +8884,41752,8,1,f +8884,4185,7,2,f +8884,42022,2,6,f +8884,4286,4,2,f +8884,4286,2,4,f +8884,43093,15,8,f +8884,44728,7,2,f +8884,4477,19,4,f +8884,4519,7,4,f +8884,45360c01,47,2,f +8884,4589,0,2,f +8884,539,0,2,f +8884,6106,0,2,f +8884,6141,0,1,t +8884,6141,15,6,f +8884,6141,4,1,t +8884,6141,0,2,f +8884,6141,15,1,t +8884,6141,4,2,f +8884,6248,15,2,f +8884,6538b,36,3,f +8884,6541,2,2,f +8884,6558,0,4,f +8884,6628,0,2,f +8884,6636,27,2,f +8884,75c13,2,2,f +8884,rb00168,0,4,f +8887,15868,27,1,f +8887,19084,179,1,f +8887,4066,10,1,f +8887,40666,70,1,f +8887,64150,70,1,f +8887,6474,71,1,f +8887,6510,4,1,f +8887,75113pr0004c02,2,1,f +8887,87084,10,1,f +8890,10187,92,1,t +8890,10187,92,2,f +8890,10247,71,4,f +8890,11100,297,2,f +8890,11476,0,1,f +8890,11477,0,2,f +8890,14769pr1055,297,1,f +8890,15068,0,4,f +8890,15573,70,5,f +8890,15573,297,2,f +8890,18601,72,1,f +8890,18868b01,46,1,f +8890,19121,297,8,f +8890,19981pr0067,46,1,f +8890,22385,70,3,f +8890,2412b,297,10,f +8890,2450,71,2,f +8890,2453b,70,2,f +8890,2454a,70,2,f +8890,26047,92,3,f +8890,2736,71,4,f +8890,2780,0,1,t +8890,2780,0,4,f +8890,3010,70,2,f +8890,30136,308,12,f +8890,3021,71,2,f +8890,3022,71,2,f +8890,3022,70,2,f +8890,3023,71,2,f +8890,3023,0,6,f +8890,3023,70,20,f +8890,3024,70,6,f +8890,3024,70,1,t +8890,3031,71,2,f +8890,3034,72,2,f +8890,30340,70,2,f +8890,3062b,70,4,f +8890,3068b,4,3,f +8890,3069b,70,2,f +8890,3070b,0,1,t +8890,3070b,0,2,f +8890,3176,71,8,f +8890,32028,70,4,f +8890,32316,72,2,f +8890,32526,71,2,f +8890,33291,70,1,t +8890,33291,70,8,f +8890,3623,71,2,f +8890,3626cpr2044,78,1,f +8890,3666,70,4,f +8890,3709,72,2,f +8890,3941,46,1,f +8890,4032a,71,4,f +8890,4070,70,6,f +8890,41677,71,2,f +8890,43093,1,4,f +8890,4510,71,1,f +8890,52107,71,1,f +8890,59443,71,4,f +8890,59900,297,2,f +8890,59900,70,2,f +8890,60470a,71,2,f +8890,60479,70,1,f +8890,60485,71,4,f +8890,60897,70,2,f +8890,6091,0,2,f +8890,61252,297,2,f +8890,61252,0,2,f +8890,6141,297,2,t +8890,6141,0,1,f +8890,6141,297,11,f +8890,6141,0,1,t +8890,6231,70,4,f +8890,6232,71,2,f +8890,63864,72,4,f +8890,63965,297,2,f +8890,64644,297,2,f +8890,6575,72,2,f +8890,6636,70,2,f +8890,87087,0,2,f +8890,87994,70,1,t +8890,87994,70,1,f +8890,90194,70,3,f +8890,91988,70,1,f +8890,93273,72,2,f +8890,970c00pr1137,308,1,f +8890,973pr3578c01,272,1,f +8890,98138,40,1,t +8890,98138,297,1,t +8890,98138,40,2,f +8890,98138,297,2,f +8890,98385,84,1,f +8890,99207,0,3,f +8890,99780,0,2,f +8891,270c02,0,2,f +8891,27c01,4,2,f +8891,29,14,2,f +8891,3001a,14,2,f +8891,3001a,0,1,f +8891,3003,0,1,f +8891,3004,1,4,f +8891,3004,14,4,f +8891,3004,0,1,f +8891,3005,0,6,f +8891,3008,0,2,f +8891,3009,1,4,f +8891,3009,0,3,f +8891,3010,0,5,f +8891,3010,14,2,f +8891,3021,4,2,f +8891,3022,0,1,f +8891,3022,4,1,f +8891,3023,0,2,f +8891,3032,4,2,f +8891,3034,15,16,f +8891,3034,4,1,f +8891,3035,4,2,f +8891,3037,0,4,f +8891,3039,0,1,f +8891,3040a,0,4,f +8891,3040a,4,2,f +8891,3062a,14,1,f +8891,3087c,14,4,f +8891,3145,4,2,f +8891,3185,4,4,f +8891,3188,0,1,f +8891,3189,0,1,f +8891,3218,4,1,f +8891,3229a,1,16,f +8891,3230a,1,16,f +8891,3297,4,1,f +8891,3359,0,2,f +8891,3443c02,4,1,f +8891,4178a,4,1,f +8891,458,0,4,f +8891,564c01,0,1,f +8891,699,1,1,f +8891,trainsig2,4,1,f +8891,wheel2a,4,4,f +8891,x466c11,15,1,f +8891,x489,4,1,f +8892,3626bpr0765,14,1,f +8892,88646,0,1,f +8892,93555,179,2,f +8892,93562,226,1,f +8892,95099,212,1,f +8892,970c00pr0207,15,1,f +8892,973pr1752c01,212,1,f +8893,10247,15,7,f +8893,10928,72,8,f +8893,11153,1,2,f +8893,11214,72,2,f +8893,11458,72,2,f +8893,11477,71,4,f +8893,11477,1,4,f +8893,11833,191,1,f +8893,15068,71,17,f +8893,15068,15,3,f +8893,15462,28,2,f +8893,15573,15,3,f +8893,15712,72,1,f +8893,18651,0,1,f +8893,18654,72,2,t +8893,18654,72,9,f +8893,18674,72,1,f +8893,20482,47,1,t +8893,20482,47,2,f +8893,2420,0,4,f +8893,2431,2,3,f +8893,2431,15,5,f +8893,2431,14,2,f +8893,2432,14,4,f +8893,2445,71,2,f +8893,2458,71,2,f +8893,2654,72,12,f +8893,2730,71,4,f +8893,2780,0,1,t +8893,2780,0,6,f +8893,3003,1,2,f +8893,3004,2,10,f +8893,3020,272,4,f +8893,3020,15,6,f +8893,3020,1,3,f +8893,3021,72,3,f +8893,3021,1,8,f +8893,3022,71,4,f +8893,3022,2,2,f +8893,3022,15,8,f +8893,30229,72,1,f +8893,3023,71,4,f +8893,3023,1,14,f +8893,3024,1,6,f +8893,3024,191,1,t +8893,3024,191,5,f +8893,3024,1,1,t +8893,3031,15,2,f +8893,3032,71,1,f +8893,3032,272,4,f +8893,3034,71,2,f +8893,3035,72,3,f +8893,3040b,71,2,f +8893,3040b,1,2,f +8893,30414,15,7,f +8893,30565,272,8,f +8893,3068b,15,3,f +8893,3069b,2,3,f +8893,3069b,15,10,f +8893,3070b,71,2,t +8893,3070b,71,5,f +8893,3176,0,2,f +8893,32000,72,2,f +8893,32002,19,2,f +8893,32002,19,1,t +8893,32028,14,4,f +8893,32028,15,2,f +8893,32054,71,3,f +8893,32062,0,5,f +8893,32064a,14,1,f +8893,32123b,14,2,t +8893,32123b,14,7,f +8893,32270,0,3,f +8893,32271,14,1,f +8893,32449,15,2,f +8893,32523,72,1,f +8893,32526,14,2,f +8893,3460,71,2,f +8893,3659,72,2,f +8893,3660,72,4,f +8893,3665,1,2,f +8893,3666,15,1,f +8893,3666,0,4,f +8893,3666,2,1,f +8893,3673,71,1,t +8893,3673,71,1,f +8893,3700,15,4,f +8893,3701,71,6,f +8893,3705,4,6,f +8893,3707,4,4,f +8893,3710,0,4,f +8893,3710,15,4,f +8893,3713,71,3,f +8893,3743,0,16,f +8893,3832,1,4,f +8893,3941,14,1,f +8893,3956,71,4,f +8893,3958,272,1,f +8893,4032a,15,2,f +8893,41769,71,2,f +8893,41770,71,2,f +8893,4274,1,1,t +8893,4274,1,1,f +8893,43093,1,5,f +8893,43710,1,1,f +8893,43711,1,1,f +8893,43719,15,2,f +8893,43722,1,1,f +8893,43723,1,1,f +8893,44294,71,1,f +8893,44728,1,2,f +8893,4519,71,3,f +8893,4716,71,2,f +8893,4733,72,1,f +8893,4865b,15,2,f +8893,49668,191,6,f +8893,53586,179,1,f +8893,54200,47,18,f +8893,54200,40,14,f +8893,54200,47,1,t +8893,54200,40,2,t +8893,55013,72,1,f +8893,56823c50,0,1,f +8893,57585,71,1,f +8893,59443,72,5,f +8893,59807,14,2,f +8893,60474,14,1,f +8893,60479,0,8,f +8893,60483,71,2,f +8893,60485,14,1,f +8893,60849,71,2,f +8893,60849,71,1,t +8893,60897,15,16,f +8893,6091,71,2,f +8893,61252,71,2,f +8893,61409,72,2,f +8893,61510,71,1,f +8893,62743,15,3,f +8893,63864,71,4,f +8893,64567,15,1,t +8893,64567,15,1,f +8893,6536,0,4,f +8893,6558,1,5,f +8893,6589,19,1,f +8893,6632,0,4,f +8893,6632,71,2,f +8893,6636,1,6,f +8893,74698,0,1,f +8893,75347,15,2,f +8893,85861,15,3,f +8893,85861,15,1,t +8893,85984,2,6,f +8893,87079,2,4,f +8893,87082,0,1,f +8893,87087,71,4,f +8893,87087,4,2,f +8893,87552,71,2,f +8893,87580,72,2,f +8893,87994,15,2,f +8893,87994,15,1,t +8893,90194,71,2,f +8893,90395,4,2,f +8893,92593,15,2,f +8893,92593,72,6,f +8893,92842,0,1,f +8893,92907,71,3,f +8893,93273,71,2,f +8893,96874,25,1,t +8893,98100,15,2,f +8893,99009,71,1,f +8893,99010,0,1,f +8893,99207,0,4,f +8893,99780,15,2,f +8894,2456,14,2,f +8894,2456,4,2,f +8894,3001,2,4,f +8894,3001,1,4,f +8894,3001,6,2,f +8894,3001,0,2,f +8894,3001,4,6,f +8894,3001,82,8,f +8894,3001,15,2,f +8894,3001,14,4,f +8894,3002,2,4,f +8894,3002,1,4,f +8894,3002,19,2,f +8894,3002,0,2,f +8894,3002,4,4,f +8894,3002,14,4,f +8894,3002,15,4,f +8894,3003,1,12,f +8894,3003,6,14,f +8894,3003,4,20,f +8894,3003,15,10,f +8894,3003,19,10,f +8894,3003,0,8,f +8894,3003,14,12,f +8894,3003,2,12,f +8894,3004,2,8,f +8894,3004,19,10,f +8894,3004,1,18,f +8894,3004,15,12,f +8894,3004,14,18,f +8894,3004,6,18,f +8894,3004,0,14,f +8894,3004,4,22,f +8894,3005,4,20,f +8894,3005,0,24,f +8894,3005,2,24,f +8894,3005,15,20,f +8894,3005,1,14,f +8894,3007,4,2,f +8894,3008,14,2,f +8894,3008,4,2,f +8894,3009,14,2,f +8894,3009,2,2,f +8894,3009,4,2,f +8894,3009,1,2,f +8894,3009,15,2,f +8894,3010,14,6,f +8894,3010,6,4,f +8894,3010,2,4,f +8894,3010,0,4,f +8894,3010,4,6,f +8894,3010,1,6,f +8894,3010,15,6,f +8894,30176,2,1,f +8894,3020,6,2,f +8894,3021,6,2,f +8894,3021,0,2,f +8894,3021,15,2,f +8894,3022,14,4,f +8894,3022,4,3,f +8894,3022,1,4,f +8894,3039,6,2,f +8894,3622,2,4,f +8894,3622,15,6,f +8894,3622,1,6,f +8894,3622,14,6,f +8894,3622,6,3,f +8894,3622,4,6,f +8894,3622,0,4,f +8894,3660,6,2,f +8894,4286,14,2,f +8894,4286,6,2,f +8894,4287,14,2,f +8894,4287,6,2,f +8894,4728,15,1,f +8897,2340,4,1,f +8897,2341,4,1,f +8897,2450,4,3,f +8897,2711,7,2,f +8897,2712,0,1,f +8897,2717,1,1,f +8897,2743,7,2,f +8897,2743,4,4,f +8897,2780,0,29,f +8897,2825,0,2,f +8897,2854,0,2,f +8897,2905,0,2,f +8897,2905,4,2,f +8897,3023,4,2,f +8897,3023,7,1,f +8897,3062b,7,5,f +8897,3069b,14,2,f +8897,3069b,7,2,f +8897,3070b,14,3,f +8897,32001,4,1,f +8897,32002,8,4,f +8897,32013,0,6,f +8897,32015,0,2,f +8897,32016,0,2,f +8897,32017,4,2,f +8897,32062,0,11,f +8897,3297,4,1,f +8897,3460,7,2,f +8897,3482,14,4,f +8897,3483,0,4,f +8897,3614b,7,1,f +8897,3623,0,3,f +8897,3647,7,3,f +8897,3650c,7,2,f +8897,3659,7,2,f +8897,3660,4,2,f +8897,3665,4,3,f +8897,3666,7,2,f +8897,3678a,4,2,f +8897,3700,4,3,f +8897,3700,7,2,f +8897,3701,7,1,f +8897,3701,1,4,f +8897,3701,15,1,f +8897,3701,4,1,f +8897,3702,4,4,f +8897,3703,4,1,f +8897,3705,0,6,f +8897,3706,0,1,f +8897,3707,0,3,f +8897,3709,7,1,f +8897,3709,1,2,f +8897,3710,1,2,f +8897,3710,4,4,f +8897,3710,7,2,f +8897,3713,7,5,f +8897,3749,7,7,f +8897,3894,4,3,f +8897,3895,4,6,f +8897,4019,7,4,f +8897,4032a,1,2,f +8897,4032a,7,1,f +8897,4070,7,4,f +8897,4265b,7,4,f +8897,4274,7,6,f +8897,4282,0,2,f +8897,4286,7,2,f +8897,4286,4,2,f +8897,4286,15,1,f +8897,4287,4,2,f +8897,4519,0,5,f +8897,4868a,0,2,f +8897,4869,7,2,f +8897,6141,34,1,f +8897,6141,14,2,f +8897,6141,36,1,f +8897,6141,7,6,f +8897,6141,1,1,f +8897,6536,7,2,f +8897,6536,0,6,f +8897,6538b,0,2,f +8897,6538b,7,3,f +8897,6558,0,8,f +8897,6589,7,4,f +8897,6592,7,1,f +8897,6628,0,2,f +8897,6641,7,2,f +8897,71509,0,1,f +8897,75535,4,2,f +8897,75535,0,6,f +8897,tech010,9999,1,f +8898,2339,15,2,f +8898,2412b,72,2,f +8898,2431,0,2,f +8898,2431,1,10,f +8898,2454a,71,2,f +8898,2456,71,3,f +8898,2458,72,4,f +8898,2540,72,2,f +8898,2655,71,4,f +8898,2694,40,1,f +8898,2780,0,23,f +8898,2780,0,1,t +8898,2819,71,2,f +8898,2823,0,2,f +8898,2877,71,6,f +8898,3003,0,4,f +8898,3004,15,6,f +8898,3005,15,4,f +8898,3008,70,1,f +8898,3008,71,4,f +8898,3009,72,1,f +8898,3009,1,12,f +8898,3009,71,2,f +8898,3010,72,1,f +8898,3020,1,4,f +8898,3022,0,1,f +8898,3022,72,2,f +8898,3023,72,2,f +8898,30237a,15,6,f +8898,3032,72,1,f +8898,3033,288,7,f +8898,3035,15,1,f +8898,3036,1,1,f +8898,30361c,72,2,f +8898,30367b,72,2,f +8898,30374,71,4,f +8898,3040b,72,4,f +8898,3040b,71,2,f +8898,30414,15,1,f +8898,3068b,15,2,f +8898,3068b,0,2,f +8898,3069b,71,2,f +8898,3069b,4,8,f +8898,3069b,15,12,f +8898,3070b,0,1,t +8898,3070b,0,2,f +8898,32000,72,2,f +8898,32009,72,4,f +8898,32123b,71,1,t +8898,32123b,71,2,f +8898,32140,0,2,f +8898,32278,72,2,f +8898,32524,72,6,f +8898,3460,1,4,f +8898,3460,72,1,f +8898,3464,15,4,f +8898,3623,0,2,f +8898,3665,0,2,f +8898,3666,288,8,f +8898,3702,0,6,f +8898,3703,0,2,f +8898,3706,0,1,f +8898,3707,0,1,f +8898,3710,72,4,f +8898,3749,19,6,f +8898,3795,0,1,f +8898,3795,72,6,f +8898,3832,72,1,f +8898,3832,15,2,f +8898,3941,71,6,f +8898,4079,70,2,f +8898,4274,71,22,f +8898,4274,71,1,t +8898,43093,1,6,f +8898,4477,15,1,f +8898,4510,15,1,f +8898,4515,288,1,f +8898,4519,71,4,f +8898,4589,71,2,f +8898,50950,0,4,f +8898,50950,288,4,f +8898,50950,72,4,f +8898,54200,182,1,t +8898,54200,36,1,t +8898,54200,182,10,f +8898,54200,36,2,f +8898,55982,71,6,f +8898,56891,0,6,f +8898,59349,288,7,f +8898,59443,71,2,f +8898,59443,0,2,f +8898,6019,71,4,f +8898,60470a,71,2,f +8898,60477,72,2,f +8898,60478,15,2,f +8898,60478,72,10,f +8898,6111,15,1,f +8898,61409,72,2,f +8898,6141,47,1,t +8898,6141,70,1,t +8898,6141,80,2,f +8898,6141,70,2,f +8898,6141,47,2,f +8898,6141,80,1,t +8898,62462,71,1,f +8898,63864,72,2,f +8898,63864,15,2,f +8898,6541,71,2,f +8898,6553,72,2,f +8898,6558,1,2,f +8898,6587,28,2,f +8898,6628,0,1,f +8898,6628,0,1,t +8898,6636,72,8,f +8898,87079pr0004,0,1,f +8898,87087,15,4,f +8898,87765pat02,78,1,f +8898,88062pr0002,78,1,f +8898,88064pr0002,15,1,f +8898,88065pr0001,27,2,f +8898,88066,47,1,f +8898,90187c01pr0002,26,1,f +8898,90190,26,1,f +8898,90191pr0001,10,1,f +8898,90192,10,2,f +8898,90193,47,1,f +8898,90203,26,1,f +8898,970c00pr0160,15,1,f +8898,970c99pr0003,1,1,f +8898,970x106,10,1,f +8898,973pr1552c01,15,1,f +8898,973pr1644c01,15,1,f +8898,973pr1661c01,10,1,f +8901,3626bpr1089,14,1,f +8901,88646pr0001,15,1,f +8901,92254pr0002,320,1,f +8901,970c00pb167,15,1,f +8901,973pr2194c01,0,1,f +8901,99250pr0001,4,1,f +8902,11213,322,1,f +8902,11407pr0003c01,322,1,f +8902,11477,72,2,f +8902,11477,322,1,f +8902,11477,70,2,f +8902,11816pr0019,78,1,f +8902,12939,71,2,f +8902,13392pr0003,30,1,f +8902,13965,70,3,f +8902,14716,71,2,f +8902,14769,288,2,f +8902,14769,71,1,f +8902,14769pr1015,323,1,f +8902,15068,72,1,f +8902,15279,10,1,f +8902,15573,297,1,f +8902,15745,45,2,f +8902,18853,29,1,t +8902,18853,29,2,f +8902,19201pr0001,323,1,f +8902,22667,26,1,t +8902,22667,26,1,f +8902,2343,47,1,f +8902,2417,85,2,f +8902,2420,70,1,f +8902,2423,5,2,f +8902,2423,31,2,f +8902,2431,19,1,f +8902,3001,71,4,f +8902,3002,71,2,f +8902,3002,72,2,f +8902,3003,71,3,f +8902,3003,70,2,f +8902,3004,70,2,f +8902,3004,71,8,f +8902,3005,322,1,f +8902,3005,70,4,f +8902,3005,72,3,f +8902,3008,70,1,f +8902,30099,308,1,f +8902,3010,71,4,f +8902,30153,41,9,f +8902,30153,45,2,f +8902,3020,72,2,f +8902,3020,322,2,f +8902,3022,72,1,f +8902,3022,70,1,f +8902,3023,19,1,f +8902,3023,85,3,f +8902,3023,47,2,f +8902,3023,70,3,f +8902,3034,19,1,f +8902,30357,19,1,f +8902,30385,45,2,f +8902,3039,33,2,f +8902,3039,72,4,f +8902,3039,70,2,f +8902,3040b,70,2,f +8902,3040b,72,5,f +8902,3045,71,2,f +8902,30565,322,4,f +8902,3062b,34,2,f +8902,3062b,47,1,f +8902,3068b,15,1,f +8902,3068bpr0247,19,1,f +8902,3069b,41,1,f +8902,3069b,322,2,f +8902,3069bpr0055,15,1,f +8902,32016,70,1,f +8902,32062,0,1,f +8902,32064a,15,1,f +8902,32123b,71,1,t +8902,32123b,71,2,f +8902,32449,41,4,f +8902,3245b,71,1,f +8902,32474,71,1,f +8902,3298,72,4,f +8902,33009,297,1,f +8902,33183,70,1,f +8902,33183,70,1,t +8902,33291,26,3,f +8902,33291,26,2,t +8902,33291,31,10,f +8902,33291,31,2,t +8902,3460,19,1,f +8902,3622,71,2,f +8902,3623,70,2,f +8902,3626b,47,1,f +8902,3626c,41,1,f +8902,3665,308,1,f +8902,3666,26,1,f +8902,3701,70,1,f +8902,3706,0,1,f +8902,3710,70,3,f +8902,3710,72,2,f +8902,3795,30,1,f +8902,3852b,5,1,f +8902,42446,71,2,f +8902,42446,71,1,t +8902,4274,71,1,f +8902,4274,71,1,t +8902,4286,320,1,f +8902,4287,70,2,f +8902,43093,1,1,f +8902,4490,71,4,f +8902,45590,0,1,f +8902,46212,41,1,f +8902,47974,71,1,f +8902,48092,85,4,f +8902,60481,308,1,f +8902,60897,19,1,f +8902,6091,322,8,f +8902,6141,1,2,f +8902,6141,27,1,t +8902,6141,45,1,t +8902,6141,27,3,f +8902,6141,1,1,t +8902,6141,41,1,t +8902,6141,41,3,f +8902,6141,4,1,f +8902,6141,4,1,t +8902,6141,45,3,f +8902,6182,71,1,f +8902,62462,70,1,f +8902,63868,0,1,f +8902,6541,15,2,f +8902,6553,72,1,f +8902,6587,28,1,f +8902,85984,15,1,f +8902,87079,26,1,f +8902,87087,71,2,f +8902,87580,322,1,f +8902,88072,19,2,f +8902,92438,322,1,f +8902,92456pr0073c01,78,1,f +8902,92946,72,1,f +8902,93092,5,1,f +8902,95343,70,1,f +8902,95344,297,1,f +8902,95344,297,1,t +8902,98138,29,1,f +8902,98138,71,1,t +8902,98138,29,1,t +8902,98138,33,1,f +8902,98138,71,1,f +8902,98138,33,1,t +8902,98138pr0032,33,1,t +8902,98138pr0032,33,1,f +8902,99207,71,1,f +8903,10201,4,2,f +8903,11153,4,6,f +8903,15068,15,1,f +8903,18575,0,1,f +8903,18651,0,1,f +8903,2412b,72,2,f +8903,2420,1,2,f +8903,2540,71,2,f +8903,2780,0,1,t +8903,2780,0,2,f +8903,2819,71,1,f +8903,3020,0,3,f +8903,3022,71,3,f +8903,3023,46,3,f +8903,30414,4,2,f +8903,3068b,73,2,f +8903,3069b,73,2,f +8903,3176,71,2,f +8903,32062,4,2,f +8903,32069,0,2,f +8903,32184,71,2,f +8903,3623,1,2,f +8903,3700,71,4,f +8903,3702,71,2,f +8903,3710,0,2,f +8903,3713,71,2,f +8903,3713,71,1,t +8903,3743,0,1,f +8903,3749,19,4,f +8903,3795,0,4,f +8903,3894,4,2,f +8903,3937,71,1,f +8903,3938,0,1,f +8903,3941,71,1,f +8903,4274,1,1,t +8903,4274,1,2,f +8903,48336,0,1,f +8903,54200,1,2,f +8903,54200,1,1,t +8903,55982,71,4,f +8903,59900,71,2,f +8903,60470a,15,1,f +8903,60478,0,4,f +8903,60485,71,1,f +8903,6141,14,4,f +8903,6141,14,1,t +8903,63868,4,2,f +8903,85984,1,4,f +8903,87079,4,1,f +8903,89201,0,4,f +8903,90194,4,1,f +8903,92280,71,2,f +8903,93273,4,1,f +8903,99780,72,1,f +8905,3001,4,8,f +8905,3001,1,6,f +8905,3001,0,2,f +8905,3001,15,8,f +8905,3001,14,8,f +8905,3002,14,6,f +8905,3002,1,4,f +8905,3002,4,4,f +8905,3002,0,4,f +8905,3002,15,4,f +8905,3003,14,6,f +8905,3003,4,6,f +8905,3003,0,4,f +8905,3003,15,6,f +8905,3003,1,4,f +8905,3004,1,12,f +8905,3004,15,14,f +8905,3004,47,4,f +8905,3004,0,10,f +8905,3004,4,14,f +8905,3004,14,16,f +8905,3005,47,4,f +8905,3005,14,14,f +8905,3005,4,10,f +8905,3005,0,6,f +8905,3005,15,10,f +8905,3005,1,8,f +8905,3007,14,1,f +8905,3008,15,2,f +8905,3008,4,2,f +8905,3008,14,2,f +8905,3008,1,2,f +8905,3009,1,6,f +8905,3009,14,8,f +8905,3009,15,8,f +8905,3009,4,6,f +8905,3009,0,2,f +8905,3010,4,10,f +8905,3010,14,10,f +8905,3010,0,4,f +8905,3010,47,2,f +8905,3010,15,12,f +8905,3010,1,10,f +8905,3020,1,2,f +8905,3020,4,2,f +8905,3021,4,2,f +8905,3021,1,4,f +8905,3022,1,2,f +8905,3022,4,2,f +8905,3030,1,1,f +8905,3031,4,1,f +8905,3032,4,1,f +8905,3032,1,1,f +8905,3034,4,2,f +8905,3035,4,1,f +8905,3036,4,1,f +8905,3036,1,1,f +8905,3039,0,4,f +8905,3039,4,6,f +8905,3039,14,4,f +8905,3039,47,2,f +8905,3040b,4,4,f +8905,3040b,0,4,f +8905,3062b,14,2,f +8905,3081cc01,4,4,f +8905,3127,4,1,f +8905,3137c01,0,4,f +8905,3144,79,1,f +8905,3149c01,4,2,f +8905,3176,4,1,f +8905,3183a,4,1,f +8905,3184,4,1,f +8905,3297,4,6,f +8905,3298,4,6,f +8905,3299,4,4,f +8905,3300,4,2,f +8905,3307,14,2,f +8905,3308,14,2,f +8905,3403,4,1,f +8905,3404,4,1,f +8905,3460,1,2,f +8905,3471,2,2,f +8905,3480,0,2,f +8905,3481,4,2,f +8905,3483,0,6,f +8905,3581,4,4,f +8905,3582,1,4,f +8905,3622,1,4,f +8905,3622,0,4,f +8905,3622,15,10,f +8905,3622,14,10,f +8905,3622,4,10,f +8905,3623,4,2,f +8905,3623,1,2,f +8905,3626apr0001,14,2,f +8905,3633,4,6,f +8905,3641,0,8,f +8905,3659,14,2,f +8905,3660,14,4,f +8905,3660,4,6,f +8905,3660,0,4,f +8905,3665,4,4,f +8905,3666,1,2,f +8905,3666,4,2,f +8905,3678a,47,4,f +8905,3700,4,1,f +8905,3710,4,4,f +8905,3710,1,2,f +8905,3741,2,5,f +8905,3742,1,4,f +8905,3742,4,4,f +8905,3742,15,4,f +8905,3742,14,4,f +8905,3747a,14,2,f +8905,3747a,4,2,f +8905,3747a,0,2,f +8905,3795,4,2,f +8905,3795,1,2,f +8905,3823,47,2,f +8905,384,4,1,f +8905,3853,4,5,f +8905,3854,14,10,f +8905,3856,2,10,f +8905,3861b,4,2,f +8905,3867,2,2,f +8905,3901,6,1,f +8905,3956,1,2,f +8905,4207,14,1,f +8905,4234,4,2,f +8905,4282,1,2,f +8905,4530,0,1,f +8905,7039,4,4,f +8905,7049b,0,4,f +8905,73037,4,1,f +8905,970c00,0,1,f +8905,970c00,7,1,f +8905,973c01,15,1,f +8905,973c02,4,1,f +8905,rb00164,0,1,f +8907,11203,19,3,f +8907,11211,4,3,f +8907,11212,72,2,f +8907,11213,71,4,f +8907,11477,28,4,f +8907,11833,71,4,f +8907,14181,71,2,f +8907,14301,71,1,f +8907,14418,71,1,f +8907,14769,30,2,f +8907,14769,71,4,f +8907,15303,36,3,f +8907,15307pr0001,308,1,f +8907,15392,72,1,f +8907,15400,72,2,f +8907,15573,71,4,f +8907,15573,70,2,f +8907,15712,72,15,f +8907,16577,19,4,f +8907,20105,0,1,f +8907,20952pr0001,15,1,f +8907,20953pr0001,15,1,f +8907,21777,308,1,f +8907,21778,0,1,f +8907,2412b,72,9,f +8907,2412b,179,20,f +8907,2419,71,1,f +8907,2420,0,4,f +8907,2420,71,5,f +8907,2431,71,2,f +8907,2431,0,3,f +8907,2440,72,1,f +8907,2445,0,1,f +8907,2445,71,1,f +8907,2453b,72,2,f +8907,2456,71,16,f +8907,2460,72,4,f +8907,2540,72,4,f +8907,2561,70,1,f +8907,2562,70,1,f +8907,2723,71,6,f +8907,2736,71,1,f +8907,2780,0,36,f +8907,2877,72,6,f +8907,298c02,71,3,f +8907,30000,71,4,f +8907,3001,4,1,f +8907,3001,28,1,f +8907,3001,19,2,f +8907,3001,0,2,f +8907,3002,71,4,f +8907,3003,19,1,f +8907,3003,28,1,f +8907,3004,71,11,f +8907,3004,15,1,f +8907,3004,320,5,f +8907,3004,0,4,f +8907,3005,72,4,f +8907,3009,71,31,f +8907,3010,71,6,f +8907,3010,28,8,f +8907,30136,19,6,f +8907,3020,71,2,f +8907,3020,4,2,f +8907,3020,72,19,f +8907,3020,28,2,f +8907,3021,72,44,f +8907,3021,1,2,f +8907,3021,71,3,f +8907,3021,28,2,f +8907,3022,72,6,f +8907,3022,19,23,f +8907,3022,320,1,f +8907,3023,72,21,f +8907,3023,28,14,f +8907,3023,19,3,f +8907,3023,33,4,f +8907,3023,71,6,f +8907,3023,0,55,f +8907,30236,72,2,f +8907,3024,71,8,f +8907,3027,71,5,f +8907,3031,72,5,f +8907,3032,0,1,f +8907,3032,72,2,f +8907,3033,71,1,f +8907,3034,72,1,f +8907,3035,72,1,f +8907,30350b,72,1,f +8907,30355,71,1,f +8907,30356,71,1,f +8907,3039,0,3,f +8907,3040b,72,4,f +8907,3040b,71,4,f +8907,30410,0,1,f +8907,30414,72,2,f +8907,3043,0,1,f +8907,30504,71,3,f +8907,30565,72,4,f +8907,3062b,19,2,f +8907,3062b,72,2,f +8907,3062b,484,2,f +8907,3068b,71,5,f +8907,3069b,71,8,f +8907,3069b,72,6,f +8907,3069b,28,3,f +8907,3069b,19,8,f +8907,3069b,320,11,f +8907,3069bpr0070,0,1,f +8907,32000,71,2,f +8907,32028,72,2,f +8907,32028,0,2,f +8907,32054,4,2,f +8907,32064a,71,8,f +8907,32140,71,4,f +8907,3245c,71,2,f +8907,32524,0,2,f +8907,32526,71,2,f +8907,32531,71,1,f +8907,32532,71,1,f +8907,3460,0,6,f +8907,3460,72,2,f +8907,3622,71,2,f +8907,3623,71,10,f +8907,3623,320,4,f +8907,3623,0,3,f +8907,3626cpr1778,78,1,f +8907,3626cpr1807,70,1,f +8907,3626cpr1808,78,1,f +8907,3626cpr1809,84,1,f +8907,3626cpr1810,84,1,f +8907,3665,71,24,f +8907,3666,72,8,f +8907,3666,19,5,f +8907,3678b,71,7,f +8907,3678b,28,4,f +8907,3678b,72,6,f +8907,3679,71,3,f +8907,3680,0,3,f +8907,3700,71,8,f +8907,3701,19,2,f +8907,3702,0,2,f +8907,3703,72,4,f +8907,3709,72,3,f +8907,3710,72,4,f +8907,3710,272,2,f +8907,3710,28,6,f +8907,3747a,71,2,f +8907,3747a,19,6,f +8907,3795,71,5,f +8907,3795,28,4,f +8907,3795,72,13,f +8907,3795,15,1,f +8907,3832,19,2,f +8907,3832,71,3,f +8907,3839b,72,2,f +8907,3894,71,6,f +8907,3895,71,10,f +8907,3937,15,1,f +8907,3938,0,1,f +8907,3940b,72,1,f +8907,3958,72,4,f +8907,3958,71,4,f +8907,3960pr0008,47,1,f +8907,4006,0,1,f +8907,4032a,71,1,f +8907,4032a,19,4,f +8907,4070,71,4,f +8907,41539,71,1,f +8907,4162,71,6,f +8907,4175,72,4,f +8907,41767,72,1,f +8907,41768,72,1,f +8907,4287,72,6,f +8907,43093,1,2,f +8907,4345b,15,1,f +8907,4346,15,1,f +8907,43722,71,3,f +8907,43723,71,3,f +8907,4445,71,2,f +8907,4460b,71,4,f +8907,44728,0,13,f +8907,44728,71,2,f +8907,4510,71,4,f +8907,4519,71,4,f +8907,4590,72,2,f +8907,4599b,71,2,f +8907,4735,0,1,f +8907,47397,72,4,f +8907,47397,71,8,f +8907,47398,71,8,f +8907,47398,72,4,f +8907,4740,71,1,f +8907,47543,71,1,f +8907,47543pr0001b,47,1,f +8907,48336,71,3,f +8907,4865,71,2,f +8907,4865b,0,3,f +8907,50950,71,14,f +8907,51739,71,1,f +8907,51739,72,5,f +8907,54383,71,4,f +8907,54383,72,1,f +8907,54384,71,4,f +8907,54384,72,1,f +8907,58247,0,1,f +8907,59349,72,1,f +8907,59900,71,8,f +8907,60208,72,2,f +8907,60474,72,1,f +8907,60477,72,2,f +8907,60478,72,40,f +8907,60479,71,3,f +8907,60897,72,2,f +8907,6091,71,2,f +8907,6106,71,1,f +8907,6112,71,2,f +8907,61184,71,8,f +8907,61252,72,2,f +8907,61252,15,2,f +8907,6134,4,1,f +8907,61409,72,4,f +8907,6141,182,1,f +8907,6141,36,5,f +8907,6141,72,9,f +8907,6141,0,4,f +8907,6141,41,2,f +8907,6141,19,9,f +8907,61485,0,1,f +8907,6177,71,2,f +8907,61780,72,1,f +8907,6179,72,1,f +8907,6179,0,1,f +8907,6190,72,2,f +8907,62462,71,2,f +8907,6249,72,14,f +8907,62810,71,1,f +8907,63864,71,10,f +8907,63868,71,58,f +8907,63868,0,2,f +8907,63965,71,3,f +8907,63965,72,3,f +8907,6541,1,2,f +8907,6558,1,6,f +8907,6628,0,4,f +8907,6636,72,4,f +8907,6636,71,36,f +8907,75902pr0007,0,1,f +8907,75937,179,2,f +8907,78c19,41,1,f +8907,85984,72,2,f +8907,85984,71,7,f +8907,85984,19,4,f +8907,87079,19,2,f +8907,87079,71,3,f +8907,87081,0,1,f +8907,87087,72,2,f +8907,87580,72,1,f +8907,87609,15,1,f +8907,87618,71,2,f +8907,87620,0,8,f +8907,88072,72,6,f +8907,88072,4,5,f +8907,88930,71,4,f +8907,90258,72,3,f +8907,92099,72,14,f +8907,92280,15,4,f +8907,92280,71,6,f +8907,92280,0,2,f +8907,92438,71,2,f +8907,92593,15,1,f +8907,92738,179,1,f +8907,92738,0,1,f +8907,92947,70,2,f +8907,93273,72,1,f +8907,93274,71,2,f +8907,96874,25,1,t +8907,970c00,0,1,f +8907,970c00pr0632,308,1,f +8907,970c00pr0932,28,1,f +8907,970c00pr0960,0,1,f +8907,970c00pr0961,0,1,f +8907,970c00pr0962,308,1,f +8907,973c63,308,1,f +8907,973pr3145c01,71,1,f +8907,973pr3174c01,84,1,f +8907,973pr3175c01,308,1,f +8907,973pr3176c01,308,1,f +8907,973pr3177c01,72,1,f +8907,98138,36,2,f +8907,98138,179,4,f +8907,99207,71,1,f +8907,99241,0,1,f +8907,99780,72,3,f +8910,30174,72,1,f +8910,30374,70,2,f +8910,30374,71,2,f +8910,3626bpr0746,14,1,f +8910,4496,70,1,f +8910,4497,297,1,f +8910,5000036,9999,1,f +8910,53705,0,2,f +8910,54200,33,2,f +8910,58176,33,1,f +8910,63965,0,2,f +8910,63965,70,1,f +8910,64567,0,2,f +8910,64567,71,1,f +8910,64727,71,1,f +8910,64727,1,3,f +8910,92690,71,3,f +8910,970c00pr0192,1,1,f +8910,973pr1717c01,1,1,f +8910,98130pr0001,72,1,f +8910,98341pr01,148,1,f +8911,3004,15,3,f +8911,3004,0,2,f +8911,3004,4,4,f +8911,3005,15,4,f +8911,3005,14,2,f +8911,3005px2,14,2,f +8911,3009,15,1,f +8911,3010,4,2,f +8911,3010,0,1,f +8911,3622,0,1,f +8911,3622,4,4,f +8911,3622,15,1,f +8911,3700,4,3,f +8911,3700,15,1,f +8911,3710,15,1,f +8911,4589,15,1,f +8911,6141,4,1,f +8911,6141,0,2,f +8913,11477,1,4,f +8913,15068,15,3,f +8913,15207,71,2,f +8913,15712,0,4,f +8913,2412b,179,2,f +8913,2412b,71,1,f +8913,2420,1,4,f +8913,2420,4,2,f +8913,2431,15,1,f +8913,2432,4,1,f +8913,2445,71,2,f +8913,2445,0,1,f +8913,2508,0,1,f +8913,2654,0,1,f +8913,2877,71,4,f +8913,3001,15,1,f +8913,3002,15,1,f +8913,3004,14,2,f +8913,3004,28,2,f +8913,3005,28,2,f +8913,3005,1,2,f +8913,3005,15,3,f +8913,3006,71,1,f +8913,3009,1,2,f +8913,3010,1,1,f +8913,3020,15,1,f +8913,3020,28,1,f +8913,3020,1,2,f +8913,3020,72,1,f +8913,3021,0,2,f +8913,3021,28,1,f +8913,3022,14,1,f +8913,3022,71,2,f +8913,3023,28,1,f +8913,3023,71,3,f +8913,3023,15,3,f +8913,3023,182,2,f +8913,3023,1,5,f +8913,3023,2,5,f +8913,3024,71,1,t +8913,3024,182,2,f +8913,3024,182,1,t +8913,3024,1,1,t +8913,3024,1,2,f +8913,3024,71,3,f +8913,3032,15,2,f +8913,3032,72,1,f +8913,3032,1,1,f +8913,3034,15,1,f +8913,3035,15,1,f +8913,3038,15,2,f +8913,30414,14,1,f +8913,3062b,47,1,f +8913,3068b,15,1,f +8913,3069b,1,1,f +8913,3070b,15,1,t +8913,3070b,36,2,f +8913,3070b,36,1,t +8913,3070b,15,2,f +8913,32028,71,1,f +8913,32028,72,1,f +8913,3245c,15,2,f +8913,33078,4,2,f +8913,3622,15,1,f +8913,3623,1,4,f +8913,3626cpr0891,14,1,f +8913,3626cpr0893,14,1,f +8913,3660,71,6,f +8913,3665,28,6,f +8913,3666,15,4,f +8913,3666,2,4,f +8913,3666,71,1,f +8913,3666,72,2,f +8913,3710,4,3,f +8913,3795,15,3,f +8913,3795,1,1,f +8913,3821,1,1,f +8913,3822,1,1,f +8913,3829c01,0,1,f +8913,3899,14,1,f +8913,3899,4,1,f +8913,4070,1,2,f +8913,4070,71,4,f +8913,4079b,15,1,f +8913,4162,15,3,f +8913,4176,40,2,f +8913,4477,15,1,f +8913,4488,71,2,f +8913,4488,0,4,f +8913,4865b,72,1,f +8913,49668,1,1,f +8913,50745,1,4,f +8913,50745,15,2,f +8913,52031,1,1,f +8913,54200,47,1,t +8913,54200,47,2,f +8913,54383,71,1,f +8913,60117stk01,9999,1,f +8913,6014b,15,2,f +8913,6014b,71,4,f +8913,60478,0,2,f +8913,60479,72,2,f +8913,60581,40,2,f +8913,60897,72,1,f +8913,60897,1,2,f +8913,6141,1,1,t +8913,6141,1,1,f +8913,6179,4,1,f +8913,62113,0,1,f +8913,62810,308,1,f +8913,63082,0,1,f +8913,63864,1,4,f +8913,73983,71,1,f +8913,73983,2,1,f +8913,85984pr0143,72,1,f +8913,87544,15,4,f +8913,87552,40,6,f +8913,87580,28,1,f +8913,87697,0,6,f +8913,88283,484,1,f +8913,88930,1,1,f +8913,88930,4,1,f +8913,92583,40,1,f +8913,92586pr0001,84,1,f +8913,92593,0,1,f +8913,92950,15,1,f +8913,92950,1,1,f +8913,93160,15,1,f +8913,93160,15,1,t +8913,970c00,71,1,f +8913,970c00,19,1,f +8913,973pr1163c01,272,1,f +8913,973pr2875c01,2,1,f +8913,98138,36,2,f +8913,98138,36,1,t +8913,98138,71,1,t +8913,98138,71,1,f +8913,98138,182,6,f +8913,98138,182,2,t +8913,99206,71,1,f +8914,2780,0,99,f +8914,2780,0,2,t +8914,2825,0,5,f +8914,32013,0,2,f +8914,32013,4,10,f +8914,32015,4,2,f +8914,32034,71,6,f +8914,32039,4,6,f +8914,32054,0,11,f +8914,32062,4,12,f +8914,32068,0,2,f +8914,32072,0,9,f +8914,32073,71,9,f +8914,32123b,71,1,t +8914,32123b,71,12,f +8914,32140,4,6,f +8914,32140,1,2,f +8914,32140,0,7,f +8914,32184,71,4,f +8914,32192,4,3,f +8914,32235,4,2,f +8914,32270,0,3,f +8914,32271,4,1,f +8914,32278,4,12,f +8914,32278,0,2,f +8914,32316,4,7,f +8914,32348,4,2,f +8914,32523,0,1,f +8914,32523,4,8,f +8914,32524,0,1,f +8914,32524,4,2,f +8914,32525,4,8,f +8914,32525,0,1,f +8914,32526,4,8,f +8914,3647,72,3,f +8914,3647,72,1,t +8914,3648b,72,2,f +8914,3673,71,1,t +8914,3673,71,5,f +8914,3705,0,6,f +8914,3707,0,2,f +8914,3708,0,3,f +8914,3713,71,1,t +8914,3713,71,18,f +8914,3737,0,1,f +8914,3749,19,2,f +8914,40490,4,1,f +8914,40490,0,1,f +8914,41239,0,2,f +8914,41239,4,2,f +8914,41677,4,6,f +8914,42003,4,5,f +8914,42610,71,3,f +8914,4274,71,4,f +8914,4274,71,1,t +8914,43093,1,1,t +8914,43093,1,33,f +8914,44294,71,4,f +8914,4519,71,17,f +8914,4716,71,3,f +8914,48989,71,1,f +8914,51011,0,3,f +8914,55013,72,1,f +8914,56145,0,1,f +8914,59426,72,2,f +8914,59443,0,2,f +8914,59443,71,8,f +8914,60483,0,11,f +8914,60485,71,2,f +8914,64391,4,2,f +8914,64392,4,2,f +8914,64393,4,4,f +8914,64394,4,1,f +8914,64680,4,1,f +8914,64681,4,4,f +8914,64682,4,2,f +8914,64683,4,2,f +8914,64781,0,2,f +8914,6536,4,23,f +8914,6553,0,3,f +8914,6558,1,28,f +8914,6628,0,2,f +8914,6632,0,2,f +8914,75c13,0,2,f +8914,87080,4,2,f +8914,87082,71,3,f +8914,87086,4,2,f +8914,9394stk01,9999,1,t +8914,99773,71,2,f +8917,3062b,33,2,f +8917,4032a,1,1,f +8917,43898,15,2,f +8917,4589,33,1,f +8917,4740,15,1,f +8917,6126a,41,1,f +8917,63965,72,1,f +8918,14,15,8,f +8918,3001,15,12,f +8918,3004,15,2,f +8918,3022,0,6,f +8918,3023,15,2,f +8918,3024,34,2,f +8918,3024,36,2,f +8918,3030,15,1,f +8918,3062a,46,8,f +8918,3062a,36,8,f +8918,3062a,34,8,f +8918,3460,0,6,f +8918,3471,2,13,f +8918,3623,15,8,f +8918,3633,15,25,f +8918,3849,7,2,f +8918,3941,0,2,f +8918,606,7,4,f +8918,607,7,4,f +8918,609,7,4,f +8918,747,15,8,f +8918,k1062stk01,89,1,f +8919,3023a,4,50,f +8919,3024,4,30,f +8919,728,7,1,f +8919,729,47,1,f +8920,x551,89,1,f +8923,3023a,7,50,f +8923,3024,7,30,f +8923,728,7,1,f +8923,729,47,1,f +8925,10563,15,1,f +8925,15449,0,1,f +8925,15450,71,1,f +8925,16265,179,1,f +8925,18012,71,1,f +8925,18806,4,1,f +8925,24765,27,1,f +8925,24911,71,1,f +8925,25117,15,1,f +8925,25152,25,1,f +8925,25275,14,1,f +8925,3011,25,1,f +8925,3437,14,1,f +8925,3437,322,2,f +8925,3437,1,2,f +8925,3437,72,1,f +8925,58498,14,1,f +8925,63017,14,1,f +8925,63710pr0012,25,1,f +8925,75115pr0006,73,1,f +8925,92005,322,1,f +8925,98222,1,1,f +8925,98223,4,1,f +8925,98233,10,1,f +8927,11089,15,4,f +8927,11089,70,2,f +8927,11127,41,1,f +8927,11129pr0001,70,1,f +8927,11153,191,2,f +8927,11203,19,2,f +8927,12551pr0005,308,1,f +8927,2420,19,2,f +8927,2654,0,1,f +8927,2654,72,2,f +8927,2780,0,1,t +8927,2780,0,8,f +8927,2817,71,2,f +8927,2825,0,2,f +8927,30136,308,1,f +8927,30157,72,1,f +8927,30162,72,1,f +8927,3020,71,6,f +8927,3021,72,1,f +8927,3022,191,2,f +8927,3022,0,2,f +8927,3023,28,7,f +8927,3031,72,1,f +8927,3032,72,1,f +8927,30350b,41,1,f +8927,3039,191,2,f +8927,3040b,28,2,f +8927,3062b,0,1,f +8927,3062b,19,2,f +8927,3063b,28,2,f +8927,3068b,191,1,f +8927,3069b,4,3,f +8927,32000,72,2,f +8927,32015,0,2,f +8927,32034,0,1,f +8927,32123b,71,1,t +8927,32123b,71,4,f +8927,32294,0,4,f +8927,3460,19,4,f +8927,3623,1,2,f +8927,3623,71,4,f +8927,3626cpr1119,19,1,f +8927,3626cpr1143,308,1,f +8927,3666,72,1,f +8927,3700,19,4,f +8927,3702,0,2,f +8927,3706,0,1,f +8927,3713,71,1,t +8927,3713,71,6,f +8927,3747b,19,3,f +8927,3795,72,1,f +8927,3937,0,1,f +8927,40244,0,2,f +8927,4070,191,4,f +8927,4081b,0,4,f +8927,4150,15,3,f +8927,43093,1,8,f +8927,43710,70,1,f +8927,43711,70,1,f +8927,43722,70,1,f +8927,43722,191,3,f +8927,43723,191,3,f +8927,43723,70,1,f +8927,44728,19,2,f +8927,4589,33,4,f +8927,4599b,71,1,f +8927,4599b,71,1,t +8927,4623,0,2,f +8927,47753,191,1,f +8927,47905,72,1,f +8927,48336,19,1,f +8927,4865a,19,2,f +8927,49668,191,2,f +8927,54200,326,1,f +8927,54200,326,1,t +8927,55013,72,2,f +8927,56145,297,4,f +8927,57539pat0004,47,2,f +8927,59443,72,2,f +8927,6019,71,3,f +8927,60470a,0,3,f +8927,60478,4,2,f +8927,60478,0,4,f +8927,6087,0,2,f +8927,6091,191,2,f +8927,61184,71,2,f +8927,6134,71,1,f +8927,6141,36,1,t +8927,6141,19,1,t +8927,6141,19,6,f +8927,6141,36,1,f +8927,61481,0,4,f +8927,6636,15,1,f +8927,85543,15,1,f +8927,85984,0,1,f +8927,87079,0,2,f +8927,87083,72,2,f +8927,87747,15,2,f +8927,87747,15,1,t +8927,92280,0,2,f +8927,92593,71,3,f +8927,92946,191,6,f +8927,970c00pr0438,70,1,f +8927,970c02pr0430,19,1,f +8927,973pr2226c01,19,1,f +8927,973pr2248c01,70,1,f +8927,99780,72,2,f +8927,99781,71,4,f +8929,11055,191,1,f +8929,11602pr0001a,0,1,f +8929,11618,26,1,f +8929,11618,26,2,t +8929,2540,15,1,f +8929,3001,30,1,f +8929,3004,30,1,f +8929,3022,191,1,f +8929,3032,85,1,f +8929,30357,191,3,f +8929,3062b,322,6,f +8929,3710,15,1,f +8929,4740,19,1,f +8929,4740,19,1,t +8929,6141,29,2,f +8929,6141,19,2,t +8929,6141,19,8,f +8929,6141,29,2,t +8929,6256,29,1,f +8929,64648,179,1,f +8930,2340,3,4,f +8930,2412b,0,2,f +8930,2412b,383,7,f +8930,2431,3,7,f +8930,2447,42,1,f +8930,2456,0,7,f +8930,2460,14,2,f +8930,2465,0,2,f +8930,2476a,14,2,f +8930,2512,7,1,f +8930,2569,0,2,f +8930,2609,14,2,f +8930,2743,8,2,f +8930,2877,0,3,f +8930,3001,7,9,f +8930,3002,0,8,f +8930,3003,14,4,f +8930,3003,8,8,f +8930,30038,8,1,f +8930,3004,7,16,f +8930,3005,8,6,f +8930,3008,0,2,f +8930,3009,7,5,f +8930,3010,8,4,f +8930,30133,0,1,f +8930,30135,8,1,f +8930,30159,8,1,f +8930,30194,8,2,f +8930,3020,14,1,f +8930,3020,0,2,f +8930,3021,0,1,f +8930,3022,14,3,f +8930,3022,7,7,f +8930,30228,8,1,f +8930,3023,14,6,f +8930,30236,0,5,f +8930,3028,7,1,f +8930,30293,6,2,f +8930,30294,6,2,f +8930,30296px1,8,1,f +8930,30298,6,1,f +8930,30299,8,1,f +8930,3030,7,1,f +8930,30300,8,1,f +8930,30303,7,4,f +8930,30303pb01,8,1,f +8930,3032,0,1,f +8930,30332,6,4,f +8930,3034,8,2,f +8930,3035,0,1,f +8930,3035,8,1,f +8930,3037,7,1,f +8930,30385,42,2,f +8930,3039,8,12,f +8930,3039px15,3,2,f +8930,3039px16,8,4,f +8930,3040b,7,2,f +8930,3040b,14,6,f +8930,3048c,3,2,f +8930,3062b,4,4,f +8930,3068b,3,2,f +8930,3068bpx1,0,4,f +8930,3069bp03,7,2,f +8930,3069bpr0090,8,2,f +8930,3245b,14,2,f +8930,3297,7,6,f +8930,3298,7,10,f +8930,3298px1,3,3,f +8930,3456,0,1,f +8930,3460,0,1,f +8930,3479,0,2,f +8930,3622,0,2,f +8930,3622,14,2,f +8930,3623,0,2,f +8930,3626bpb0106,14,1,f +8930,3626bpx32,14,1,f +8930,3660,0,8,f +8930,3684,7,2,f +8930,3701,14,1,f +8930,3710,7,2,f +8930,3710,14,7,f +8930,3832,7,3,f +8930,3841,8,1,f +8930,3937,0,1,f +8930,3956,8,2,f +8930,3962b,0,2,f +8930,4070,3,4,f +8930,4085c,0,6,f +8930,4286,8,8,f +8930,4488,0,4,f +8930,4589,42,4,f +8930,4735,7,4,f +8930,4740,8,5,f +8930,6014a,14,4,f +8930,6015,0,4,f +8930,6019,7,5,f +8930,6117,7,2,f +8930,6134,3,1,f +8930,6141,42,1,t +8930,6141,57,4,f +8930,6141,57,1,t +8930,6141,42,9,f +8930,6232,7,5,f +8930,6233,0,2,f +8930,73092,0,3,f +8930,76385,14,2,f +8930,78c14,0,2,f +8930,970c00,8,1,f +8930,970c00,1,1,f +8930,973pb0044c01,1,1,f +8930,973pb0070c01,8,1,f +8931,10197,72,2,f +8931,10928,72,2,f +8931,11478,0,2,f +8931,15100,0,1,f +8931,15107,41,2,f +8931,15462,28,1,f +8931,15976,179,2,f +8931,18587,71,1,f +8931,18588,41,1,f +8931,19049,179,1,f +8931,19050,57,1,f +8931,19064pat0001,297,1,f +8931,19086,72,1,f +8931,20473,41,1,f +8931,20474,179,5,f +8931,20475,148,2,f +8931,20476,148,1,f +8931,20480,179,1,f +8931,2780,0,3,f +8931,32013,72,1,f +8931,32034,0,1,f +8931,32039,0,3,f +8931,32062,4,5,f +8931,32072,0,2,f +8931,32072,14,1,f +8931,32123b,14,2,f +8931,32270,0,1,f +8931,33299a,71,1,f +8931,3708,0,1,f +8931,3713,71,2,f +8931,3749,19,3,f +8931,42003,0,1,f +8931,4274,71,1,f +8931,43093,1,3,f +8931,44294,71,1,f +8931,53585,0,2,f +8931,59443,0,4,f +8931,6141,15,12,f +8931,62462,71,2,f +8931,63869,0,1,f +8931,6558,1,2,f +8931,74261,72,2,f +8931,87083,72,3,f +8931,90609,41,3,f +8931,90626,179,1,f +8931,92220,57,4,f +8931,93575,179,2,f +8931,98603s02pr0013,179,1,f +8932,884a,14,1,f +8933,3242,7,8,f +8935,164c01,0,1,f +8935,185c01,0,1,f +8935,3001a,15,2,f +8935,3003,4,1,f +8935,3003,15,1,f +8935,3004,15,4,f +8935,3004,4,2,f +8935,3005,15,2,f +8935,3010,15,2,f +8935,3021,15,1,f +8935,3021,0,1,f +8935,3021,4,1,f +8935,3022,15,1,f +8935,3023,15,2,f +8935,3024,34,1,f +8935,3024,36,1,f +8935,3040b,15,4,f +8935,3127,4,1,f +8935,3624,0,1,f +8935,3626apr0001,14,1,f +8935,3684,4,1,f +8935,3710,15,7,f +8935,3795,15,1,f +8935,3829c01,15,1,f +8935,3962a,0,1,f +8935,4005stk01,9999,1,t +8935,4006,0,1,f +8935,4083,14,2,f +8935,4085a,15,2,f +8935,4175,7,2,f +8935,4175,0,2,f +8935,4208,0,1,f +8935,4209,15,1,f +8935,4213,15,1,f +8935,4284,47,1,f +8935,4289,15,1,f +8935,4315,15,1,f +8935,4349,0,2,f +8935,56823,0,1,f +8935,6141,46,1,f +8935,970c00,0,1,f +8935,973c07,1,1,f +8935,997c01,0,1,f +8935,x149,0,1,f +8936,2637,7,1,f +8936,2654,0,1,f +8936,2711,14,2,f +8936,2717,4,1,f +8936,2730,14,4,f +8936,2780,0,12,f +8936,2825,14,2,f +8936,2905,14,1,f +8936,2951,0,1,f +8936,3021,14,4,f +8936,3023,14,4,f +8936,3031,14,2,f +8936,3069b,14,2,f +8936,3647,7,1,t +8936,3647,7,1,f +8936,3648a,7,1,f +8936,3666,14,4,f +8936,3700,14,4,f +8936,3701,14,6,f +8936,3703,0,2,f +8936,3704,0,1,f +8936,3705,0,1,f +8936,3706,0,2,f +8936,3707,0,1,f +8936,3708,0,1,f +8936,3709,4,2,f +8936,3709,0,1,f +8936,3709,14,3,f +8936,3710,14,8,f +8936,3710,0,2,f +8936,3713,7,13,f +8936,3713,7,1,t +8936,3737,0,2,f +8936,3743,7,1,f +8936,3749,7,7,f +8936,3749,7,1,t +8936,3894,14,2,f +8936,3895,14,4,f +8936,3941,46,1,f +8936,4032a,0,1,f +8936,4185,7,1,f +8936,424,0,1,f +8936,424,0,1,t +8936,4261,7,2,f +8936,4263,14,2,f +8936,4265b,7,8,f +8936,4265b,7,1,t +8936,4274,7,7,f +8936,4274,7,1,t +8936,4275b,0,4,f +8936,4276b,0,2,f +8936,4442,7,3,f +8936,4504,0,2,f +8936,4531,0,2,f +8936,4716,0,1,f +8936,6141,36,1,t +8936,6141,36,2,f +8936,6553,7,2,f +8936,6558,0,2,f +8936,6575,7,1,f +8936,6581,0,4,f +8936,6582,14,4,f +8936,6585,4,1,f +8936,6587,8,3,f +8936,6588,14,1,f +8936,6589,7,2,f +8936,tech015,9999,1,f +8937,23306,383,1,f +8937,2335,15,2,f +8937,2412b,72,7,f +8937,2412b,0,4,f +8937,2431,15,1,f +8937,2432,71,2,f +8937,2436,71,1,f +8937,2456,15,1,f +8937,2540,25,2,f +8937,2584,0,1,f +8937,2585,0,1,f +8937,2654,71,4,f +8937,2780,0,2,f +8937,3001,15,1,f +8937,3002,71,1,f +8937,3003,71,1,f +8937,3004,25,1,f +8937,3004,19,1,f +8937,3005,15,2,f +8937,3010,15,1,f +8937,30170,15,1,t +8937,30192,72,1,f +8937,3020,72,6,f +8937,3020,15,5,f +8937,3022,25,2,f +8937,3022,15,3,f +8937,3023,0,2,f +8937,3023,25,3,f +8937,30236,72,1,f +8937,3029,19,1,f +8937,3030,72,2,f +8937,3031,72,6,f +8937,30363,72,4,f +8937,30370ps2,15,1,f +8937,30370ps3,15,1,f +8937,30372pr0001,40,1,f +8937,30374,41,1,f +8937,3039,15,4,f +8937,3039,72,1,f +8937,3039ps2,72,1,f +8937,3040b,25,2,f +8937,3040b,15,2,f +8937,3040b,19,2,f +8937,3068b,15,2,f +8937,3068bps0,15,2,f +8937,3069b,15,3,f +8937,3069bpr0085,15,1,f +8937,3069bpr0086,71,2,f +8937,32028,71,2,f +8937,32073,71,1,f +8937,32270,71,1,f +8937,3298,15,4,f +8937,3626bpr0001,14,1,f +8937,3626bps3,14,1,f +8937,3666,19,2,f +8937,3679,71,1,f +8937,3680,0,1,f +8937,3710,72,3,f +8937,3743,0,1,f +8937,3794a,15,3,f +8937,3794a,19,4,f +8937,3795,0,1,f +8937,3795,19,2,f +8937,3832,15,2,f +8937,3937,72,1,f +8937,3940b,72,2,f +8937,3956,71,1,f +8937,4032a,0,4,f +8937,4095,0,1,f +8937,4150,71,2,f +8937,41769,15,3,f +8937,41770,15,3,f +8937,4274,71,2,f +8937,4274,71,1,t +8937,4286,15,2,f +8937,4286,25,2,f +8937,43337,15,4,f +8937,4360,0,2,f +8937,43722,19,1,f +8937,43723,19,1,f +8937,44301a,19,6,f +8937,44302a,15,4,f +8937,44375a,71,1,f +8937,44728,71,6,f +8937,4477,15,2,f +8937,4510,71,2,f +8937,4588,72,2,f +8937,4589,72,2,f +8937,47397,15,1,f +8937,47398,15,1,f +8937,4740,72,1,f +8937,4855,15,1,f +8937,4858pb03,15,1,f +8937,56823,0,1,f +8937,6134,19,1,f +8937,6141,0,1,t +8937,6141,0,4,f +8937,6238,40,1,f +8937,6541,72,4,f +8937,6558,0,2,f +8937,75535,72,4,f +8937,970x199,25,2,f +8937,973pr1301c01,25,2,f +8938,2420,70,2,f +8938,2456,1,2,f +8938,2456,4,1,f +8938,2456,14,1,f +8938,2456,15,2,f +8938,2877,71,1,f +8938,2926,0,2,f +8938,3001,72,2,f +8938,3001,15,8,f +8938,3001,2,4,f +8938,3001,1,8,f +8938,3001,25,1,f +8938,3001,27,1,f +8938,3001,0,4,f +8938,3001,4,8,f +8938,3001,14,8,f +8938,3002,14,6,f +8938,3002,0,3,f +8938,3002,4,6,f +8938,3002,1,6,f +8938,3002,72,2,f +8938,3002,2,3,f +8938,3002,15,6,f +8938,3002,25,1,f +8938,3003,14,28,f +8938,3003,72,3,f +8938,3003,2,12,f +8938,3003,25,4,f +8938,3003,1,28,f +8938,3003,4,28,f +8938,3003,70,4,f +8938,3003,0,12,f +8938,3003,27,3,f +8938,3003,15,28,f +8938,3003pr0002,15,1,f +8938,3004,70,4,f +8938,3004,0,10,f +8938,3004,15,20,f +8938,3004,2,10,f +8938,3004,71,4,f +8938,3004,72,2,f +8938,3004,14,20,f +8938,3004,1,20,f +8938,3004,25,4,f +8938,3004,27,5,f +8938,3004,4,20,f +8938,3004pr0001,14,1,f +8938,3004pr0002,14,1,f +8938,3005,71,2,f +8938,3005,2,6,f +8938,3005,15,10,f +8938,3005,4,10,f +8938,3005,0,6,f +8938,3005,14,10,f +8938,3005,1,10,f +8938,3005,27,2,f +8938,3005,25,4,f +8938,3005,70,3,f +8938,3005pr0003,2,2,f +8938,3005pr0003,15,4,f +8938,3005pr0003,14,3,f +8938,3007,4,1,f +8938,3007,14,1,f +8938,3007,1,1,f +8938,3007,15,1,f +8938,3008,14,1,f +8938,3008,4,1,f +8938,3008,1,2,f +8938,3008,15,2,f +8938,3009,1,3,f +8938,3009,4,2,f +8938,3009,15,3,f +8938,3009,14,2,f +8938,3010,1,4,f +8938,3010,4,4,f +8938,3010,2,4,f +8938,3010,0,4,f +8938,3010,15,4,f +8938,3010,72,2,f +8938,3010,14,4,f +8938,3020,1,1,f +8938,3020,4,1,f +8938,3020,72,1,f +8938,3021,0,2,f +8938,3021,2,2,f +8938,3022,4,2,f +8938,3022,1,2,f +8938,3022,2,4,f +8938,3022,0,2,f +8938,3023,14,4,f +8938,3023,4,4,f +8938,3023,0,4,f +8938,3037,0,2,f +8938,3037,4,6,f +8938,3039,0,8,f +8938,3039,72,1,f +8938,3039,14,2,f +8938,3039,4,9,f +8938,3039,2,4,f +8938,3040b,14,4,f +8938,3040b,0,2,f +8938,3040b,15,2,f +8938,3040b,1,2,f +8938,3040b,72,4,f +8938,3062b,70,4,f +8938,3062b,46,2,f +8938,3065,47,2,f +8938,3622,4,4,f +8938,3622,27,2,f +8938,3622,15,4,f +8938,3622,14,4,f +8938,3622,1,4,f +8938,3622,0,2,f +8938,3622,2,2,f +8938,3623,14,2,f +8938,3660,72,2,f +8938,3665,14,2,f +8938,3665,4,4,f +8938,3665,15,4,f +8938,3710,0,2,f +8938,3710,1,1,f +8938,3795,1,2,f +8938,3795,4,1,f +8938,3832,2,1,f +8938,4070,72,2,f +8938,54200,25,4,f +8938,54200,15,1,t +8938,54200,0,1,t +8938,54200,15,2,f +8938,54200,25,1,t +8938,54200,0,2,f +8938,6014b,71,4,f +8938,60700,0,4,f +8938,6141,15,1,t +8938,6141,25,4,f +8938,6141,46,4,f +8938,6141,46,1,t +8938,6141,27,1,t +8938,6141,27,4,f +8938,6141,1,4,f +8938,6141,1,1,t +8938,6141,4,4,f +8938,6141,4,1,t +8938,6141,0,1,t +8938,6141,25,1,t +8938,6141,0,4,f +8938,6141,15,4,f +8939,10111,70,1,f +8939,13533,71,1,f +8939,14721,4,1,f +8939,15211,14,1,f +8939,16196,10,1,f +8939,16265,179,1,f +8939,3011,1,1,f +8939,3437,4,1,f +8939,3437,15,2,f +8939,45141,179,1,f +8939,92009,14,1,f +8939,92011,4,1,f +8941,32013,0,2,f +8941,32014,0,2,f +8941,32015,0,2,f +8941,32016,0,2,f +8941,32034,0,2,f +8941,32039,0,2,f +8941,32062,0,4,f +8941,32073,7,4,f +8941,32126,7,2,f +8941,32184,0,2,f +8941,32192,0,2,f +8941,32209,0,2,f +8941,32291,0,2,f +8941,32557,0,2,f +8941,3705,0,4,f +8941,3706,0,4,f +8941,3707,0,2,f +8941,3708,0,2,f +8941,3737,0,2,f +8941,41678,0,2,f +8941,42003,0,2,f +8941,44294,7,4,f +8941,4519,7,4,f +8941,6536,0,2,f +8941,6538b,0,2,f +8941,6553,0,2,f +8941,6587,8,2,f +8941,9244,7,2,f +8942,32062,0,6,f +8942,32173,8,2,f +8942,32174,15,10,f +8942,32174,57,1,f +8942,32270,7,1,f +8942,3737,0,1,f +8942,3749,19,4,f +8942,44135,8,1,f +8942,44136,8,1,f +8942,44138,183,2,f +8942,44139,8,1,f +8942,44140,183,1,f +8942,44145,179,1,f +8942,44148,8,2,f +8942,44247,8,1,f +8942,44807,183,1,f +8942,44819,135,2,f +8942,4519,7,3,f +8942,45749,8,2,f +8942,6538b,8,1,f +8942,kraataund,150,1,f +8945,15654pr0001,73,1,f +8945,41879a,73,1,f +8945,88001,70,1,f +8945,88646,0,1,f +8945,973pr2612c01,25,1,f +8946,10928,72,1,f +8946,11055,15,3,f +8946,11090,0,2,f +8946,11203,72,1,f +8946,11253,297,1,f +8946,11253,297,1,t +8946,11303,320,1,f +8946,11477,72,1,f +8946,11477,71,8,f +8946,11610,0,2,f +8946,13547,0,3,f +8946,13792pr0001,148,1,f +8946,13793,72,1,f +8946,14719,0,4,f +8946,15068,1,2,f +8946,15068,71,2,f +8946,15068,72,2,f +8946,15535,72,2,f +8946,15573,14,1,f +8946,15573,4,1,f +8946,15706,0,3,f +8946,15712,0,2,f +8946,18654,72,3,f +8946,18654,72,2,t +8946,18671,71,2,f +8946,18677,71,4,f +8946,18976,179,2,f +8946,18976,15,2,f +8946,18977,0,4,f +8946,22885,71,1,f +8946,22961,71,2,f +8946,2357,14,2,f +8946,2412b,0,4,f +8946,2412b,72,2,f +8946,2420,71,4,f +8946,2431,0,2,f +8946,2432,14,1,f +8946,2445,0,1,f +8946,2446,15,1,f +8946,2446,0,1,f +8946,2447,47,2,f +8946,2447,47,2,t +8946,2508,0,1,f +8946,2654,47,6,f +8946,2654,71,4,f +8946,2780,0,2,t +8946,2780,0,8,f +8946,298c02,4,1,t +8946,298c02,4,1,f +8946,3001,14,1,f +8946,3002,4,2,f +8946,3002,1,1,f +8946,3003,14,1,f +8946,3004,4,2,f +8946,30044,71,1,f +8946,30046,0,1,f +8946,3005,72,2,f +8946,3005,0,2,f +8946,3009,4,2,f +8946,3010,0,1,f +8946,30136,72,1,f +8946,3020,72,4,f +8946,3020,1,6,f +8946,3021,71,9,f +8946,3021,72,5,f +8946,3022,0,8,f +8946,3022,1,3,f +8946,3022,72,1,f +8946,3023,0,13,f +8946,3023,4,5,f +8946,3023,1,10,f +8946,3023,72,2,f +8946,30237b,72,3,f +8946,30237b,4,2,f +8946,3024,14,1,t +8946,3024,1,2,f +8946,3024,1,1,t +8946,3024,14,4,f +8946,3031,71,3,f +8946,3032,72,1,f +8946,3034,72,3,f +8946,3035,72,3,f +8946,30350b,72,2,f +8946,30357,4,2,f +8946,3036,72,3,f +8946,3037,71,2,f +8946,3037,4,2,f +8946,30374,71,4,f +8946,30383,71,2,f +8946,3040b,71,2,f +8946,3045,4,2,f +8946,30552,71,2,f +8946,30553,0,2,f +8946,30553,71,2,f +8946,30554a,0,1,f +8946,3062b,14,1,f +8946,3062b,2,1,f +8946,3066,40,1,f +8946,30663,71,1,f +8946,3068b,1,2,f +8946,3068b,71,2,f +8946,3069b,182,4,f +8946,3069b,72,1,f +8946,3069b,1,8,f +8946,3069b,15,4,f +8946,3070b,71,1,t +8946,3070b,71,1,f +8946,32000,72,1,f +8946,32018,0,2,f +8946,32028,71,2,f +8946,32028,179,2,f +8946,32054,0,1,f +8946,32062,4,2,f +8946,32062,0,1,f +8946,32123b,71,1,t +8946,32123b,71,2,f +8946,32140,0,8,f +8946,32184,0,1,f +8946,32449,72,2,f +8946,3245c,1,2,f +8946,32556,19,9,f +8946,3298,1,2,f +8946,3460,0,10,f +8946,3622,72,1,f +8946,3622,0,2,f +8946,3623,71,4,f +8946,3623,72,4,f +8946,3626bpr0649,14,1,f +8946,3626cpr0920,14,1,f +8946,3626cpr1578,14,1,f +8946,3626cpr1663,14,1,f +8946,3665,1,2,f +8946,3666,4,1,f +8946,3666,1,3,f +8946,3666,72,7,f +8946,3666,0,2,f +8946,3700,72,2,f +8946,3700,4,3,f +8946,3707,0,1,f +8946,3709,15,1,f +8946,3710,72,4,f +8946,3710,1,3,f +8946,3710,0,3,f +8946,3713,4,1,t +8946,3713,4,2,f +8946,3749,19,4,f +8946,3795,0,2,f +8946,3795,71,1,f +8946,3829c01,14,1,f +8946,3829c01,71,1,f +8946,3836,70,1,f +8946,3837,0,1,f +8946,3938,0,2,f +8946,3940b,0,2,f +8946,3941,4,1,f +8946,4070,15,2,f +8946,4162,72,2,f +8946,42003,71,1,f +8946,42023,72,4,f +8946,4274,71,1,t +8946,4274,71,1,f +8946,4282,72,2,f +8946,4286,0,2,f +8946,43093,1,3,f +8946,44302a,71,2,f +8946,4460b,72,4,f +8946,44728,72,6,f +8946,44728,71,2,f +8946,4477,1,4,f +8946,4477,71,1,f +8946,4528,0,8,f +8946,4533,72,1,f +8946,4536,72,2,f +8946,4599b,14,1,f +8946,4599b,14,1,t +8946,48336,71,2,f +8946,4865a,71,1,f +8946,4865a,40,1,f +8946,50943,179,1,f +8946,50950,71,4,f +8946,52031,1,2,f +8946,52107,0,5,f +8946,54200,0,1,t +8946,54200,1,8,f +8946,54200,0,2,f +8946,54200,1,2,t +8946,55981,0,4,f +8946,55982,15,2,f +8946,58090,0,2,f +8946,59349,4,1,f +8946,59443,0,1,f +8946,6005,0,4,f +8946,6019,0,2,f +8946,604547,0,1,f +8946,604548,0,1,f +8946,604549,0,1,f +8946,604550,0,1,f +8946,604551,0,1,f +8946,604552,0,1,f +8946,604553,0,1,f +8946,604614,0,1,f +8946,604615,0,1,f +8946,60475b,72,2,f +8946,60478,0,2,f +8946,60897,72,1,f +8946,6091,14,2,f +8946,6091,0,6,f +8946,6141,36,2,t +8946,6141,72,2,f +8946,6141,72,1,t +8946,6141,36,6,f +8946,6141,182,1,t +8946,6141,25,4,f +8946,6141,25,1,t +8946,6141,182,4,f +8946,6141,179,1,t +8946,6141,34,2,f +8946,6141,34,1,t +8946,6141,179,16,f +8946,6179,0,2,f +8946,6231,0,2,f +8946,6231,72,2,f +8946,62361,71,2,f +8946,62462,179,2,f +8946,63864,15,2,f +8946,63864,72,4,f +8946,63864,1,2,f +8946,63864,71,4,f +8946,64644,297,1,f +8946,6541,0,2,f +8946,6587,28,2,f +8946,6628,0,4,f +8946,6636,0,2,f +8946,6636,1,2,f +8946,72454,72,1,f +8946,75875stk01,9999,1,f +8946,75c07,0,1,f +8946,75c07,0,1,t +8946,85544,4,2,f +8946,85984,71,8,f +8946,85984,0,8,f +8946,85984,1,6,f +8946,87079,1,2,f +8946,87079,0,2,f +8946,87552,40,4,f +8946,87580,14,1,f +8946,87580,71,1,f +8946,87994,0,2,f +8946,87994,0,1,t +8946,88072,71,2,f +8946,92262pr0001,0,1,f +8946,92263pr0001,0,1,f +8946,92280,0,2,f +8946,92402,0,4,f +8946,92410,4,2,f +8946,92582,71,2,f +8946,92583,40,1,f +8946,92593,0,2,f +8946,92946,4,2,f +8946,92950,72,2,f +8946,93274,0,4,f +8946,96874,25,1,t +8946,970c00,0,1,f +8946,970c00,73,2,f +8946,970x001,272,1,f +8946,973pr1163c01,272,1,f +8946,973pr2500c01,1,1,f +8946,973pr3282c01,15,1,f +8946,973pr3283c01,4,1,f +8946,98100,71,1,f +8946,98138,36,2,f +8946,98138,46,2,f +8946,98138,46,1,t +8946,98138,36,1,t +8946,98138pr0046,4,2,f +8946,98138pr0046,4,1,t +8946,98138pr0047,179,6,f +8946,98138pr0047,179,1,t +8946,98263,71,1,f +8946,98282,0,4,f +8946,99207,1,10,f +8946,99207,0,7,f +8946,99780,72,5,f +8946,99781,71,4,f +8948,23306,383,1,f +8948,2357,71,6,f +8948,2362b,71,1,f +8948,2412b,36,2,f +8948,2412b,72,15,f +8948,2419,0,2,f +8948,2420,15,3,f +8948,2431,71,2,f +8948,2432,4,1,f +8948,2436,71,4,f +8948,2444,72,10,f +8948,2445,71,8,f +8948,2450,72,6,f +8948,2476a,71,6,f +8948,2515,72,3,f +8948,2555,72,14,f +8948,2653,71,7,f +8948,2654,4,4,f +8948,2730,71,2,f +8948,2780,0,6,t +8948,2780,0,51,f +8948,2817,4,2,f +8948,2817,71,18,f +8948,2825,0,2,f +8948,2877,72,6,f +8948,298c02,71,2,f +8948,298c02,71,1,t +8948,3001,71,2,f +8948,3003,71,4,f +8948,30031,72,2,f +8948,30033,15,1,f +8948,3004,71,10,f +8948,3008,71,6,f +8948,3009,71,3,f +8948,3010,71,12,f +8948,3010,15,2,f +8948,30106,71,2,f +8948,30135,72,1,f +8948,3020,71,10,f +8948,3021,71,30,f +8948,3022,15,8,f +8948,3023,72,47,f +8948,30236,72,2,f +8948,3029,71,4,f +8948,3031,71,8,f +8948,3032,72,12,f +8948,3032,71,2,f +8948,3032,15,4,f +8948,3034,71,11,f +8948,3035,71,4,f +8948,30355,71,5,f +8948,30356,71,5,f +8948,30361dps5,0,1,f +8948,30362,0,2,f +8948,30367bpr0003,0,1,f +8948,30368,0,1,f +8948,30374,36,1,f +8948,30374,42,10,f +8948,30374,15,3,f +8948,30383,71,4,f +8948,3039,71,1,f +8948,30408px2,15,2,f +8948,3040b,0,6,f +8948,30503,0,10,f +8948,30505,0,2,f +8948,30561,4,2,f +8948,3062b,72,4,f +8948,3068b,15,2,f +8948,3069b,0,9,f +8948,32000,71,6,f +8948,32002,72,13,f +8948,32002,72,3,t +8948,32009,0,4,f +8948,32013,72,2,f +8948,32018,0,4,f +8948,32018,15,16,f +8948,32028,0,2,f +8948,32039,1,3,f +8948,32054,0,2,f +8948,32056,72,2,f +8948,32062,4,9,f +8948,32064b,0,6,f +8948,32073,71,1,f +8948,32123b,71,37,f +8948,32123b,71,3,t +8948,32184,4,1,f +8948,32195b,0,1,f +8948,32198,71,1,f +8948,32250,0,4,f +8948,32278,71,4,f +8948,32291,0,3,f +8948,32316,15,5,f +8948,32449,71,4,f +8948,32474,0,1,f +8948,32523,4,2,f +8948,32524,4,1,f +8948,32525,1,1,f +8948,32557,71,4,f +8948,3456,72,3,f +8948,3456,71,8,f +8948,3460,72,1,f +8948,3460,71,2,f +8948,3622,72,6,f +8948,3623,71,14,f +8948,3626b,0,2,f +8948,3626b,78,2,f +8948,3626bpb0224,71,1,f +8948,3626bpr0449,78,1,f +8948,3626bpr0455,78,1,f +8948,3660,0,4,f +8948,3665,72,8,f +8948,3666,72,19,f +8948,3676,72,2,f +8948,3679,71,6,f +8948,3680,0,6,f +8948,3700,72,3,f +8948,3701,15,4,f +8948,3701,71,4,f +8948,3702,0,1,f +8948,3703,71,2,f +8948,3705,0,33,f +8948,3706,0,5,f +8948,3707,0,1,f +8948,3708,0,2,f +8948,3710,15,27,f +8948,3713,4,11,f +8948,3713,4,4,t +8948,3747a,72,2,f +8948,3749,19,4,f +8948,3794a,71,12,f +8948,3795,72,33,f +8948,3795,15,3,f +8948,3832,71,1,f +8948,3894,71,6,f +8948,3895,72,4,f +8948,3901,71,1,f +8948,3937,72,10,f +8948,3938,15,4,f +8948,3941,41,3,f +8948,3941,0,3,f +8948,3957a,1,7,f +8948,3960,41,3,f +8948,4032a,71,6,f +8948,40490,71,1,f +8948,4070,0,12,f +8948,4079,15,1,f +8948,4081b,72,8,f +8948,41669,33,1,f +8948,41677,1,3,f +8948,41678,72,6,f +8948,41752,72,1,t +8948,41767,72,3,f +8948,41768,72,3,f +8948,41769,71,4,f +8948,41770,71,4,f +8948,42003,72,1,f +8948,42023,72,4,f +8948,4274,71,3,t +8948,4274,71,18,f +8948,4287,72,2,f +8948,43093,1,25,f +8948,43337,71,4,f +8948,4349,0,4,f +8948,4360,0,2,f +8948,43722,72,4,f +8948,43723,72,4,f +8948,43857,1,5,f +8948,43898,47,4,f +8948,44302a,0,4,f +8948,44358,71,4,f +8948,4460a,71,8,f +8948,44728,72,8,f +8948,4477,15,2,f +8948,4477,71,7,f +8948,4497,0,2,f +8948,4519,71,2,f +8948,45410,15,1,f +8948,45411,15,1,f +8948,4589,182,2,f +8948,4599a,71,10,f +8948,46212,41,1,f +8948,4733,15,1,f +8948,4740,33,4,f +8948,47456,0,2,f +8948,47457,72,5,f +8948,47905,0,1,f +8948,47994,0,8,f +8948,48183,72,4,f +8948,48336,71,10,f +8948,48496,0,16,f +8948,4865a,71,3,f +8948,50231,4,2,f +8948,50231,0,1,f +8948,50304,71,4,f +8948,50305,71,4,f +8948,50950,320,2,f +8948,52107,0,4,f +8948,54200,0,13,f +8948,54383,71,13,f +8948,54383,72,6,f +8948,54383,15,4,f +8948,54384,72,6,f +8948,54384,15,4,f +8948,54384,71,13,f +8948,59426,72,1,f +8948,6019,71,11,f +8948,6070,15,8,f +8948,6070,0,6,f +8948,6134,0,6,f +8948,6141,47,6,t +8948,6141,33,1,t +8948,6141,42,8,f +8948,6141,0,4,f +8948,6141,47,51,f +8948,6141,42,1,t +8948,6141,182,1,t +8948,6141,33,2,f +8948,6141,182,2,f +8948,6141,0,1,t +8948,6178,71,4,f +8948,6179,15,2,f +8948,6179,71,3,f +8948,6180,71,6,f +8948,6190,72,1,f +8948,6211stk01,9999,1,t +8948,6231,71,14,f +8948,6232,72,2,f +8948,6536,71,8,f +8948,6538b,36,1,f +8948,6541,71,18,f +8948,6558,0,8,f +8948,6576,71,5,f +8948,6587,72,6,f +8948,6632,15,18,f +8948,6636,15,2,f +8948,6641,4,1,f +8948,73983,0,14,f +8948,85543,15,1,f +8948,970c00,4,2,f +8948,970c00,0,1,f +8948,970c00,72,2,f +8948,970x026,15,2,f +8948,973pr0520c01,15,2,f +8948,973pr1263c01,72,1,f +8948,973pr1267c01,72,1,f +8948,973ps7c01,0,1,f +8948,973px70c01,4,2,f +8949,11211,71,3,f +8949,11289,41,1,f +8949,11299,15,1,f +8949,14520,72,2,f +8949,15118,15,1,f +8949,15207,4,2,f +8949,16542,14,1,f +8949,16542,14,1,t +8949,2412b,0,1,f +8949,2412b,72,7,f +8949,2412b,71,12,f +8949,2420,15,2,f +8949,2421,0,1,f +8949,2431,72,1,f +8949,2431,33,1,f +8949,2431,4,6,f +8949,2431,71,3,f +8949,2432,1,2,f +8949,2444,0,2,f +8949,2446,15,1,f +8949,2447,40,2,t +8949,2447,40,2,f +8949,2454a,4,26,f +8949,2456,4,5,f +8949,2456,1,1,f +8949,2465,4,3,f +8949,2479,0,1,f +8949,2486,14,2,f +8949,2584,0,1,f +8949,2585,71,1,f +8949,2877,72,5,f +8949,298c02,14,2,f +8949,298c02,14,1,t +8949,3001,19,2,f +8949,3002,4,1,f +8949,3003,1,1,f +8949,3003,19,1,f +8949,3003,4,26,f +8949,3004,4,14,f +8949,3004,1,1,f +8949,3004,71,1,f +8949,3005,15,2,f +8949,3005,4,4,f +8949,3006,4,2,f +8949,3007,1,1,f +8949,3007,4,2,f +8949,3009,15,2,f +8949,3010,15,1,f +8949,3010,72,2,f +8949,3010,4,2,f +8949,3010,19,1,f +8949,30194,72,1,f +8949,3020,15,2,f +8949,3020,70,1,f +8949,3020,4,2,f +8949,3020,72,5,f +8949,3021,0,4,f +8949,3021,72,1,f +8949,3022,1,1,f +8949,3022,72,5,f +8949,3022,70,2,f +8949,3022,4,1,f +8949,3023,72,1,f +8949,3023,71,3,f +8949,3023,4,2,f +8949,3023,46,3,f +8949,3023,1,4,f +8949,30237b,4,2,f +8949,30237b,14,4,f +8949,3024,33,12,f +8949,3024,71,2,t +8949,3024,15,2,f +8949,3024,71,2,f +8949,3024,15,1,t +8949,30248,72,1,f +8949,3031,4,1,f +8949,3032,19,1,f +8949,3033,71,6,f +8949,3034,4,2,f +8949,3034,15,1,f +8949,30361c,14,1,f +8949,30414,1,2,f +8949,30552,71,1,f +8949,30592,72,2,f +8949,3062b,14,6,f +8949,3068b,4,2,f +8949,3068b,71,4,f +8949,3068b,15,2,f +8949,3068bpr0137,15,1,f +8949,3069b,15,3,f +8949,3069b,33,2,f +8949,3069b,14,1,f +8949,3069b,4,6,f +8949,3069bpr0030,15,1,f +8949,3070b,4,4,f +8949,3070b,4,3,t +8949,3176,72,1,f +8949,32013,0,1,f +8949,32028,15,3,f +8949,32348,4,2,f +8949,3245c,4,4,f +8949,3297,4,1,f +8949,33078,4,1,f +8949,3460,14,2,f +8949,3460,15,2,f +8949,3460,4,1,f +8949,3623,15,2,f +8949,3626cpr0893,14,1,f +8949,3626cpr0920,14,1,f +8949,3626cpr1087,14,1,f +8949,3626cpr1146,14,1,f +8949,3626cpr1664,14,1,f +8949,3660,4,3,f +8949,3665,4,8,f +8949,3666,72,2,f +8949,3666,15,2,f +8949,3666,4,4,f +8949,3709,4,2,f +8949,3710,70,1,f +8949,3710,15,6,f +8949,3710,4,7,f +8949,3794b,71,4,f +8949,3794b,14,2,f +8949,3794b,0,1,f +8949,3794b,4,2,f +8949,3795,71,2,f +8949,3795,14,2,f +8949,3795,15,1,f +8949,3821,4,1,f +8949,3822,4,1,f +8949,3829c01,1,2,f +8949,3832,71,10,f +8949,3834,320,3,f +8949,3834,82,1,f +8949,3835,0,2,f +8949,3838,14,1,f +8949,3899,4,1,f +8949,3899,14,3,f +8949,3937,0,1,f +8949,3958,72,1,f +8949,3958,15,1,f +8949,3960,15,1,f +8949,3962b,0,3,f +8949,3963,71,1,f +8949,4006,0,1,f +8949,4032a,14,1,f +8949,4079,14,1,f +8949,4079,1,2,f +8949,4085c,72,2,f +8949,41539,71,6,f +8949,4162,4,1,f +8949,4162,71,3,f +8949,4176,41,1,f +8949,4208,0,1,f +8949,4209,4,1,f +8949,4216,15,33,f +8949,4217,15,6,f +8949,4218,41,20,f +8949,4219,15,2,f +8949,4274,1,2,f +8949,4274,1,1,t +8949,43093,1,2,f +8949,4345b,4,2,f +8949,4346,15,2,f +8949,44302a,72,2,f +8949,44661,15,1,f +8949,44728,15,2,f +8949,4477,0,2,f +8949,4477,71,1,f +8949,4477,4,2,f +8949,4488,71,7,f +8949,4519,71,1,f +8949,4522,0,2,f +8949,4528,179,1,f +8949,4533,15,1,f +8949,45677,4,1,f +8949,4589,33,1,f +8949,4589,14,3,f +8949,4599b,14,3,f +8949,4599b,0,1,t +8949,4599b,14,2,t +8949,4599b,1,1,f +8949,4599b,1,1,t +8949,4599b,0,1,f +8949,4600,71,2,f +8949,4624,71,4,f +8949,4740,2,1,f +8949,48336,71,5,f +8949,50450,14,1,f +8949,50745,72,10,f +8949,50950,4,4,f +8949,52031,4,1,f +8949,52036,72,1,f +8949,52501,4,2,f +8949,54200,36,4,f +8949,54200,46,4,f +8949,54200,182,4,f +8949,54200,33,1,t +8949,54200,36,2,t +8949,54200,33,2,f +8949,54200,182,2,t +8949,54200,46,2,t +8949,57783,41,1,f +8949,57895,41,9,f +8949,59443,0,1,f +8949,6014b,15,10,f +8949,60470a,15,3,f +8949,60470b,14,1,f +8949,60474,72,1,f +8949,60479,71,1,f +8949,60479,15,1,f +8949,60481,4,2,f +8949,60483,71,1,f +8949,60581,15,2,f +8949,60581,4,1,f +8949,60594,15,3,f +8949,60596,15,12,f +8949,60603,41,3,f +8949,60616a,41,1,f +8949,6126b,41,1,f +8949,6134,0,1,f +8949,6141,0,1,t +8949,6141,36,1,t +8949,6141,0,1,f +8949,6141,34,1,t +8949,6141,46,2,t +8949,6141,46,2,f +8949,6141,34,1,f +8949,6141,36,1,f +8949,61485,0,1,f +8949,6157,71,2,f +8949,6158,72,1,f +8949,61780,70,1,f +8949,6179,4,1,f +8949,6180,71,2,f +8949,6190,4,1,f +8949,6231,71,2,f +8949,6249,71,2,f +8949,63864,15,2,f +8949,63864,72,1,f +8949,63868,0,2,f +8949,72454,4,2,f +8949,73590c03b,14,1,f +8949,85959pat0001,36,1,f +8949,85984,4,4,f +8949,85984,72,5,f +8949,87079,14,1,f +8949,87079,4,17,f +8949,87079,71,14,f +8949,87079,15,1,f +8949,87552,4,2,f +8949,87552,15,2,f +8949,87580,4,2,f +8949,87609,4,1,f +8949,87609,15,1,f +8949,87617,4,2,f +8949,87617,14,1,f +8949,87618,71,2,f +8949,87697,0,10,f +8949,87913,71,1,f +8949,88393,15,8,f +8949,89523,72,1,f +8949,91405,72,3,f +8949,91988,71,2,f +8949,92280,4,4,f +8949,92410,4,1,f +8949,92438,72,1,f +8949,92582,71,1,f +8949,92586pr0003,15,1,f +8949,92593,15,2,f +8949,92926,2,1,f +8949,93273,72,1,f +8949,96874,25,1,t +8949,970c00,0,1,f +8949,970c00pr0408,0,4,f +8949,973pr1976c01,4,1,f +8949,973pr2188c01,0,2,f +8949,973pr2189c01,0,1,f +8949,973pr2249c01,15,1,f +8949,98138,33,3,t +8949,98138,33,16,f +8949,99207,71,1,f +8949,99784,71,1,f +8951,122c01,0,3,f +8951,16542,7,1,f +8951,3001,4,1,f +8951,3004,4,1,f +8951,3009,4,4,f +8951,3010,4,1,f +8951,3010,15,2,f +8951,3020,0,3,f +8951,3020,15,1,f +8951,3022,0,2,f +8951,3023,15,8,f +8951,3023,0,4,f +8951,3024,46,2,f +8951,3024,36,2,f +8951,3024,15,2,f +8951,3034,0,1,f +8951,3037,15,6,f +8951,3038,15,2,f +8951,3062b,7,2,f +8951,3460,15,2,f +8951,3623,15,1,f +8951,3624,4,1,f +8951,3626apr0001,14,1,f +8951,3660,15,11,f +8951,3665,15,3,f +8951,3666,15,2,f +8951,3679,7,1,f +8951,3680,0,1,f +8951,3710,15,2,f +8951,3787,0,2,f +8951,3795,15,1,f +8951,3821,15,1,f +8951,3822,15,1,f +8951,3823,47,1,f +8951,3829c01,15,1,f +8951,3832,0,1,f +8951,3937,0,1,f +8951,3938,0,1,f +8951,4032a,0,2,f +8951,4070,15,3,f +8951,4081a,0,4,f +8951,4084,0,6,f +8951,4175,0,1,f +8951,4208,0,1,f +8951,4209,15,1,f +8951,4211,15,1,f +8951,4213,15,1,f +8951,4214,15,1,f +8951,970c00,1,1,f +8951,973pb0034c01,4,1,f +8953,2335,4,1,f +8953,2335,14,5,f +8953,2445,0,2,f +8953,3022,0,4,f +8953,3070b,14,1,t +8953,3070b,4,1,f +8953,3070b,4,1,t +8953,3070b,14,1,f +8953,3303stk01,9999,1,t +8953,3626bpr0001,14,3,f +8953,3731,15,4,f +8953,3901,0,3,f +8953,3957a,15,6,f +8953,4476b,15,4,f +8953,4477,15,2,f +8953,4599a,15,4,f +8953,71155,0,2,f +8953,72824p01,15,2,f +8953,970c00,0,3,f +8953,973c20,2,3,f +8955,30408pr0002,383,1,f +8955,3626b,0,1,f +8955,58247,0,1,f +8955,970c00,383,1,f +8955,973pb0588c01,383,1,f +8956,10509pr0001,70,1,f +8956,10509pr0004,0,2,f +8956,11211,4,4,f +8956,11215,71,1,f +8956,11455,0,2,f +8956,11458,72,2,f +8956,13562,148,1,t +8956,13562,148,1,f +8956,13562,179,1,t +8956,13562,179,2,f +8956,13565,0,1,f +8956,13565,15,1,f +8956,13664pr0001,308,1,f +8956,13665,0,1,f +8956,13746pr0001,378,1,f +8956,13750,484,1,f +8956,14143,9999,1,t +8956,14226c31,0,1,t +8956,14226c31,0,1,f +8956,14320,4,1,f +8956,15207,70,2,f +8956,2397,72,2,f +8956,2431,288,2,f +8956,2431,308,2,f +8956,2540,19,4,f +8956,2780,0,3,f +8956,2780,0,2,t +8956,3001,0,1,f +8956,3003,71,1,f +8956,3004,0,2,f +8956,3004,70,1,f +8956,3004,288,2,f +8956,3005,288,2,f +8956,3009,4,1,f +8956,3009,70,1,f +8956,3010,288,1,f +8956,30133,4,1,f +8956,30141,72,1,f +8956,3020,288,2,f +8956,3020,70,1,f +8956,3020,71,2,f +8956,3021,19,1,f +8956,3023,72,6,f +8956,3023,70,3,f +8956,3023,71,4,f +8956,3023,0,3,f +8956,3024,4,4,f +8956,3024,4,1,t +8956,3031,19,2,f +8956,3034,70,1,f +8956,30350b,0,1,f +8956,3036,28,1,f +8956,30374,70,4,f +8956,3062b,4,8,f +8956,30663,71,1,f +8956,3068b,288,2,f +8956,3068b,4,4,f +8956,3068b,297,1,f +8956,3069b,308,1,f +8956,3069bpr0055,15,1,f +8956,3070bpr0145,71,1,f +8956,3070bpr0145,71,1,t +8956,32000,72,2,f +8956,32002,19,4,f +8956,32002,19,1,t +8956,32028,28,4,f +8956,32034,0,1,f +8956,32059,0,2,f +8956,32123b,71,1,t +8956,32123b,71,5,f +8956,32294,70,2,f +8956,32556,19,2,f +8956,33211,28,2,f +8956,33212,28,2,f +8956,3460,70,2,f +8956,3626cpr1191,78,1,f +8956,3626cpr1194,84,1,f +8956,3626cpr1195,78,1,f +8956,3626cpr1248,78,1,f +8956,3626cpr1249,78,1,f +8956,3633,0,4,f +8956,3660,0,2,f +8956,3666,0,1,f +8956,3666,4,2,f +8956,3673,71,1,t +8956,3673,71,3,f +8956,37,72,2,f +8956,3705,0,2,f +8956,3710,288,6,f +8956,3713,71,2,f +8956,3713,71,1,t +8956,3731,0,1,f +8956,3738,72,2,f +8956,3821,4,2,f +8956,3822,4,2,f +8956,4032a,14,4,f +8956,4032a,70,3,f +8956,4070,4,2,f +8956,4085c,0,4,f +8956,4162,70,2,f +8956,41677,72,2,f +8956,42021,0,2,f +8956,42023,4,4,f +8956,4286,0,2,f +8956,4449,70,1,f +8956,4477,0,2,f +8956,4491b,72,1,f +8956,48336,297,2,f +8956,48336,71,1,f +8956,4865b,0,4,f +8956,60481,0,2,f +8956,60581,4,2,f +8956,60583b,0,2,f +8956,60592,0,4,f +8956,6091,0,2,f +8956,6141,46,2,f +8956,6141,297,9,f +8956,6141,46,1,t +8956,6141,297,4,t +8956,61506,70,1,f +8956,6232,72,1,f +8956,62462,0,3,f +8956,63082,71,1,f +8956,64728,4,1,f +8956,6541,0,6,f +8956,6587,28,1,f +8956,6628,0,2,f +8956,73983,71,2,f +8956,87082,71,1,f +8956,87083,72,2,f +8956,87087,72,2,f +8956,87580,0,2,f +8956,92092,4,1,f +8956,92582,0,2,f +8956,92590,28,1,f +8956,92593,4,4,f +8956,970c00pr0502,308,1,f +8956,970c00pr0545,28,1,f +8956,970c00pr0547,308,1,f +8956,970c00pr0549,0,1,f +8956,970d00pr0504,4,1,f +8956,973pr2340c01,0,1,f +8956,973pr2343c01,4,1,f +8956,973pr2344c01,84,1,f +8956,973pr2436c01,72,1,f +8956,973pr2441c01,19,1,f +8956,99563,80,1,f +8956,99780,72,6,f +8957,2412b,4,1,f +8957,2419,1,1,f +8957,2458,1,1,f +8957,2460,14,1,f +8957,2479,7,1,f +8957,298c01,0,2,f +8957,3001,2,2,f +8957,3001,1,1,f +8957,3003,14,3,f +8957,3003,0,1,f +8957,3004,15,1,f +8957,3004,47,1,f +8957,3004,4,1,f +8957,3020,4,2,f +8957,3020,2,2,f +8957,3031,2,1,f +8957,3034,4,2,f +8957,3039,47,3,f +8957,3039,15,2,f +8957,3298p12,4,1,f +8957,3298p19,14,1,f +8957,3298p21,1,1,f +8957,3460,14,2,f +8957,3641,0,4,f +8957,3660,1,4,f +8957,3660,14,2,f +8957,3710,1,4,f +8957,3710,4,2,f +8957,3747a,7,1,f +8957,3795,0,1,f +8957,3795,2,2,f +8957,3941,14,2,f +8957,3957a,15,1,f +8957,4070,14,2,f +8957,4600,7,2,f +8957,4624,15,4,f +8957,6041,0,1,f +8957,6141,36,1,f +8957,6141,34,1,f +8957,6215,4,2,f +8958,2412b,0,14,f +8958,2736,71,8,f +8958,2741,0,1,f +8958,2780,0,8,t +8958,2780,0,219,f +8958,2817,0,2,f +8958,2825,71,4,f +8958,2850b,71,8,f +8958,2851,14,8,f +8958,2852,71,8,f +8958,2853,14,2,f +8958,2854,72,3,f +8958,2905,0,4,f +8958,3021,0,2,f +8958,3023,0,6,f +8958,3069b,36,2,f +8958,3069b,4,1,f +8958,32000,4,4,f +8958,32005a,72,6,f +8958,32009,72,6,f +8958,32013,4,11,f +8958,32013,0,6,f +8958,32014,4,2,f +8958,32016,4,6,f +8958,32034,4,15,f +8958,32039,14,10,f +8958,32054,71,9,f +8958,32054,0,8,f +8958,32054,4,33,f +8958,32062,4,35,f +8958,32064b,0,2,f +8958,32073,71,19,f +8958,32123b,71,4,f +8958,32123b,71,1,t +8958,32126,4,4,f +8958,32138,0,2,f +8958,32140,0,12,f +8958,32140,4,4,f +8958,32184,71,12,f +8958,32187,71,2,f +8958,32192,72,2,f +8958,32199,4,2,f +8958,32200,4,2,f +8958,32200,0,1,f +8958,32202,4,1,f +8958,32235,4,5,f +8958,32269,0,4,f +8958,32270,0,5,f +8958,32271,4,4,f +8958,32271,72,4,f +8958,32278,4,2,f +8958,32278,0,12,f +8958,32291,0,8,f +8958,32293,0,2,f +8958,32316,72,3,f +8958,32316,4,12,f +8958,32316,0,8,f +8958,32333,0,2,f +8958,32348,0,3,f +8958,32449,72,4,f +8958,32494,71,4,f +8958,32495c01,0,4,f +8958,32523,4,12,f +8958,32524,4,4,f +8958,32524,0,20,f +8958,32525,0,8,f +8958,32525,4,5,f +8958,32526,0,4,f +8958,32526,4,16,f +8958,32556,19,11,f +8958,32557,71,4,f +8958,33299a,0,6,f +8958,3647,72,5,f +8958,3647,72,1,t +8958,3648b,72,1,f +8958,3666,4,1,f +8958,3673,71,1,t +8958,3673,71,7,f +8958,3705,0,21,f +8958,3706,0,9,f +8958,3707,0,5,f +8958,3708,0,2,f +8958,3710,4,1,f +8958,3710,0,2,f +8958,3713,71,1,t +8958,3713,71,16,f +8958,3737,0,1,f +8958,3749,19,5,f +8958,3832,0,2,f +8958,40490,0,6,f +8958,41239,72,1,f +8958,41239,0,3,f +8958,41239,4,5,f +8958,4162,0,2,f +8958,41669,4,2,f +8958,41677,4,8,f +8958,41678,0,2,f +8958,42003,4,11,f +8958,42022,4,2,f +8958,4274,71,12,f +8958,4274,71,1,t +8958,43093,1,54,f +8958,43857,0,12,f +8958,43857,4,2,f +8958,44294,71,8,f +8958,44771,0,4,f +8958,44772,71,4,f +8958,4519,71,42,f +8958,4716,71,4,f +8958,54200,182,1,t +8958,54200,182,2,f +8958,54200,36,2,f +8958,54200,36,1,t +8958,54383,0,1,f +8958,54384,0,1,f +8958,55013,72,6,f +8958,55615,71,2,f +8958,57515,72,8,f +8958,58119,71,1,f +8958,58120,71,1,f +8958,59443,4,6,f +8958,59443,0,16,f +8958,59443,71,16,f +8958,60483,72,14,f +8958,60484,72,6,f +8958,60485,71,1,f +8958,6141,47,1,t +8958,6141,182,2,f +8958,6141,182,1,t +8958,6141,47,6,f +8958,61678,4,2,f +8958,61903,71,2,f +8958,62462,4,20,f +8958,62462,71,6,f +8958,62821,72,1,f +8958,63869,71,6,f +8958,64179,71,1,f +8958,64391,4,1,f +8958,64392,4,3,f +8958,64394,4,5,f +8958,64680,4,5,f +8958,64682,4,3,f +8958,64683,4,1,f +8958,6536,4,36,f +8958,6536,0,9,f +8958,6538b,19,2,f +8958,6539,4,2,f +8958,6542a,72,8,f +8958,6558,1,72,f +8958,6587,28,5,f +8958,6589,19,3,f +8958,6589,19,1,t +8958,6628,0,2,f +8958,6629,4,2,f +8958,6629,0,2,f +8958,6632,0,12,f +8958,6641,4,1,f +8958,76244,15,1,f +8958,76537,14,4,f +8958,87082,71,1,f +8958,87083,72,10,f +8958,87761,0,1,f +8958,92906,72,2,f +8958,93677,9999,1,t +8958,94925,71,8,f +8960,12825,72,1,f +8960,15391,0,1,f +8960,15392,72,1,t +8960,15392,72,1,f +8960,298c02,0,1,t +8960,298c02,0,3,f +8960,30031,0,1,f +8960,4070,0,1,f +8960,4733,72,1,f +8960,4740,47,1,f +8960,6141,15,1,t +8960,6141,15,4,f +8960,6141,47,1,f +8960,6141,47,1,t +8960,92738,0,1,f +8961,3003,71,1,f +8961,3004,4,1,f +8961,3004,15,1,f +8961,3004pr20,15,1,f +8961,3010,4,1,f +8961,3021,4,1,f +8961,3021,72,1,f +8961,3039,15,1,f +8961,3039,71,1,f +8961,3040b,71,1,f +8961,3660,71,1,f +8961,3660,4,1,f +8961,3688,4,1,f +8962,2357,15,8,f +8962,2431,15,1,f +8962,2445,71,1,f +8962,2460,72,1,f +8962,2540,15,2,f +8962,2540,72,2,f +8962,2555,288,5,f +8962,2555,71,1,f +8962,2555,72,2,f +8962,2654,72,4,f +8962,2730,71,1,f +8962,2780,0,3,t +8962,2780,0,13,f +8962,2817,4,1,f +8962,2817,71,1,f +8962,30000,71,1,f +8962,3001,72,4,f +8962,3001,4,1,f +8962,3001,15,11,f +8962,3002,15,4,f +8962,3003,15,12,f +8962,3004,15,6,f +8962,3004,14,2,f +8962,3005,15,8,f +8962,3007,1,2,f +8962,3008,19,6,f +8962,30088,179,2,f +8962,3009,15,3,f +8962,3010,15,8,f +8962,30136,19,2,f +8962,30153,47,1,f +8962,30153,36,1,f +8962,30153,33,2,f +8962,3020,28,2,f +8962,3020,25,1,f +8962,3020,72,3,f +8962,3020,4,2,f +8962,3021,71,1,f +8962,3021,72,1,f +8962,3022,15,1,f +8962,3022,1,2,f +8962,3022,72,2,f +8962,30224,297,5,f +8962,3023,19,14,f +8962,3023,4,5,f +8962,3023,72,2,f +8962,3023,15,2,f +8962,30237b,15,2,f +8962,3030,71,1,f +8962,3033,71,1,f +8962,3034,28,5,f +8962,3036,28,2,f +8962,3039,15,1,f +8962,3039,72,2,f +8962,3040b,15,2,f +8962,30414,19,2,f +8962,30586,15,5,f +8962,3062b,14,2,f +8962,30663,0,2,f +8962,3068b,71,3,f +8962,3068b,0,1,f +8962,3069b,72,1,f +8962,3069b,1,2,f +8962,32000,19,4,f +8962,32039,71,1,f +8962,32054,4,2,f +8962,32064b,4,1,f +8962,32064b,71,1,f +8962,32269,19,1,f +8962,32498,0,1,f +8962,32524,15,4,f +8962,32530,72,2,f +8962,32530,0,2,f +8962,3308,15,1,f +8962,3460,71,3,f +8962,3460,15,3,f +8962,3626bpr0580,14,1,f +8962,3626bpr0640,14,1,f +8962,3626bpr0763,297,1,f +8962,3660,72,1,f +8962,3665,1,2,f +8962,3666,71,7,f +8962,3673,71,3,f +8962,3673,71,2,t +8962,3700,15,5,f +8962,3700,71,8,f +8962,3701,71,3,f +8962,3705,0,1,f +8962,3707,0,2,f +8962,3709,15,1,f +8962,3710,15,2,f +8962,3713,71,1,t +8962,3713,71,3,f +8962,3747b,4,2,f +8962,3749,19,3,f +8962,3794b,297,3,f +8962,3794b,15,1,f +8962,3795,19,2,f +8962,3829c01,14,1,f +8962,3832,19,7,f +8962,3832,71,2,f +8962,3832,4,1,f +8962,3894,71,1,f +8962,3937,15,2,f +8962,3956,71,1,f +8962,4032a,71,9,f +8962,4070,72,2,f +8962,4070,0,2,f +8962,4081b,15,18,f +8962,4085c,71,4,f +8962,4150,4,1,f +8962,4175,4,2,f +8962,41879a,320,1,f +8962,42023,72,2,f +8962,42448,297,2,f +8962,4274,1,1,t +8962,4274,1,3,f +8962,4282,15,2,f +8962,4286,72,6,f +8962,4289,72,1,f +8962,43719,0,1,f +8962,4460b,72,4,f +8962,44728,72,4,f +8962,4519,71,1,f +8962,45677,15,1,f +8962,4589,297,3,f +8962,4589,2,3,f +8962,4623,72,2,f +8962,4738a,297,1,f +8962,4739a,297,1,f +8962,47753,0,1,f +8962,47755,72,4,f +8962,47847,72,2,f +8962,48336,4,4,f +8962,4865a,15,1,f +8962,50950,0,2,f +8962,51739,72,2,f +8962,53451,15,1,t +8962,53451,25,1,t +8962,53451,15,2,f +8962,53451,25,2,f +8962,53989,0,6,f +8962,53989,179,6,f +8962,54200,25,4,f +8962,54200,4,1,t +8962,54200,4,4,f +8962,54200,72,1,f +8962,54200,72,1,t +8962,55236,25,4,f +8962,55236,288,9,f +8962,57564,2,2,f +8962,57909a,72,4,f +8962,58176,36,4,f +8962,59275,14,4,f +8962,59275,14,2,t +8962,59349,15,1,f +8962,6019,0,4,f +8962,60474,15,1,f +8962,60477,15,12,f +8962,60478,72,4,f +8962,60481,15,2,f +8962,60483,71,2,f +8962,60583a,15,2,f +8962,61053,72,2,f +8962,6111,15,1,f +8962,61184,71,4,f +8962,6123,72,1,f +8962,6134,15,2,f +8962,6141,4,1,t +8962,6141,36,1,t +8962,6141,36,1,f +8962,6141,46,6,f +8962,6141,297,28,f +8962,6141,34,1,t +8962,6141,297,1,t +8962,6141,46,1,t +8962,6141,4,4,f +8962,6141,34,1,f +8962,61485,15,1,f +8962,61678,4,8,f +8962,62462,1,1,f +8962,63965,0,3,f +8962,64648,179,1,f +8962,6541,19,4,f +8962,6585,0,1,f +8962,6587,28,1,f +8962,6589,19,2,f +8962,6636,15,1,f +8962,7985stk01,9999,1,t +8962,85984,15,1,f +8962,87083,72,1,f +8962,87747,0,8,f +8962,87748pr0006,52,1,f +8962,87750,72,1,f +8962,87751,179,2,f +8962,87752,46,1,f +8962,87754,71,2,f +8962,89159,46,2,f +8962,89917,133,1,f +8962,90392,82,1,f +8962,92099,72,1,f +8962,92107,72,1,f +8962,92280,0,2,f +8962,92290,297,6,f +8962,92690,297,1,f +8962,92692,0,2,f +8962,92944,320,2,f +8962,92945pr0001,320,1,f +8962,92947,19,19,f +8962,92947,15,83,f +8962,93148pr0001,378,1,f +8962,94448pat0002,34,3,f +8962,970c00,378,1,f +8962,970c00pr0198,72,2,f +8962,970c00pr0201,297,1,f +8962,973pr1734c01,72,2,f +8962,973pr1736c01,378,1,f +8962,973pr1737c01,320,1,f +8962,973pr1738c01,297,1,f +8964,11090,0,2,f +8964,11090,14,2,f +8964,11476,71,1,f +8964,15208,0,1,f +8964,15443,70,1,f +8964,15573,14,1,f +8964,18868a,41,1,f +8964,19981pr0029,41,1,f +8964,21445,0,4,f +8964,2412b,71,1,f +8964,2540,71,2,f +8964,3021,71,1,f +8964,30228,72,1,f +8964,30602,40,1,f +8964,3065,40,1,f +8964,3626cpr1496,14,1,f +8964,3710,14,1,f +8964,3839b,72,1,f +8964,3941,41,1,f +8964,4032a,71,2,f +8964,44728,0,1,f +8964,4624,71,4,f +8964,51739,14,1,f +8964,60470b,14,1,f +8964,60478,14,3,f +8964,61409,14,2,f +8964,6141,71,1,t +8964,6141,182,1,t +8964,6141,71,1,f +8964,6141,182,1,f +8964,6141,47,1,t +8964,6141,47,2,f +8964,63868,72,1,f +8964,63965,0,1,f +8964,87414,0,4,f +8964,88072,14,2,f +8964,92280,71,1,f +8964,970c00pr0605,25,1,f +8964,973pr2538c01,25,1,f +8964,99781,0,1,f +8966,12622,0,1,f +8966,15207,4,2,f +8966,15207,321,2,f +8966,2412b,179,4,f +8966,2431pr0017,14,4,f +8966,2512,71,1,f +8966,298c02,71,2,f +8966,298c02,71,1,t +8966,3001,14,1,f +8966,3001,321,4,f +8966,3002,72,2,f +8966,3003,4,12,f +8966,3003,27,2,f +8966,3003,0,2,f +8966,3003,25,2,f +8966,3003,72,1,f +8966,3004,14,7,f +8966,3004,321,2,f +8966,3007,4,1,f +8966,30176,2,2,f +8966,3022,25,2,f +8966,30228,72,1,f +8966,3032,0,1,f +8966,30363,72,4,f +8966,30386,0,2,f +8966,30388,0,1,f +8966,30394,14,1,f +8966,30395,72,1,f +8966,30396,0,1,f +8966,30663,71,1,f +8966,3068b,72,2,f +8966,3069b,15,1,f +8966,3069bpr0101,71,2,f +8966,32028,14,2,f +8966,3298,321,2,f +8966,3626cpr0645,14,1,f +8966,3679,71,1,f +8966,3680,15,1,f +8966,3710,0,2,f +8966,3710,14,1,f +8966,3794b,0,1,f +8966,3823,47,1,f +8966,3829c01,71,1,f +8966,3832,15,1,f +8966,3833,4,1,f +8966,3941,27,2,f +8966,3942c,25,2,f +8966,4079,72,2,f +8966,4083,0,1,f +8966,4522,0,1,f +8966,4589,182,2,f +8966,4599b,15,1,t +8966,4599b,15,1,f +8966,4742,72,1,f +8966,48336,71,1,f +8966,4865b,14,2,f +8966,6014b,15,4,f +8966,60474,72,1,f +8966,60599,15,1,f +8966,60623,15,1,f +8966,61409,72,2,f +8966,6141,46,2,f +8966,6141,179,4,f +8966,6141,46,1,t +8966,6141,182,5,f +8966,6141,36,2,f +8966,6141,179,1,t +8966,6141,182,1,t +8966,6141,36,1,t +8966,61780,70,1,f +8966,6191,14,1,f +8966,6215,4,2,f +8966,6215,14,2,f +8966,63868,15,2,f +8966,74698,0,2,f +8966,87552,40,2,f +8966,87697,0,4,f +8966,92582,0,1,f +8966,93273,0,2,f +8966,93608,71,1,f +8966,970c00,25,1,f +8966,973pr1182c01,25,1,f +8967,11211,19,1,f +8967,11609,297,1,f +8967,11618,31,1,f +8967,11816pr0001,84,1,f +8967,11816pr0013,78,1,f +8967,13808,297,1,f +8967,14733pr0001,0,1,f +8967,15470,29,1,f +8967,15470,70,1,f +8967,15470,15,1,f +8967,15573,26,1,f +8967,15573,14,2,f +8967,16925pr0003c01,15,1,f +8967,18674,15,1,f +8967,18852pr0001,15,1,f +8967,2423,2,1,f +8967,2431,27,1,f +8967,2431,322,4,f +8967,2432,71,1,f +8967,2450,15,1,f +8967,3001,30,1,f +8967,3003,27,1,f +8967,3004,30,2,f +8967,3005,71,1,f +8967,3005,15,1,f +8967,30136,484,5,f +8967,30136,19,2,f +8967,30171,26,1,f +8967,3020,484,1,f +8967,3020,19,1,f +8967,3020,15,1,f +8967,3021,19,1,f +8967,3021,15,2,f +8967,3022,15,5,f +8967,3022,70,2,f +8967,3023,29,1,f +8967,3023,30,2,f +8967,3023,71,3,f +8967,30367c,15,1,f +8967,3040b,14,4,f +8967,3040b,2,2,f +8967,3040b,29,2,f +8967,3040b,484,2,f +8967,3062b,15,3,f +8967,3062b,1,1,f +8967,3062b,71,1,f +8967,3062b,4,1,f +8967,3062b,2,1,f +8967,3068b,322,1,f +8967,3068b,29,1,f +8967,3069bpr0100,2,1,f +8967,32530,4,1,f +8967,33172,25,1,f +8967,33183,70,2,f +8967,33183,10,1,f +8967,33291,5,5,f +8967,33291,26,4,f +8967,33291,4,5,f +8967,33291,10,1,f +8967,33322,297,1,f +8967,3626b,15,1,f +8967,3626b,70,1,f +8967,3659,484,1,f +8967,3665,19,2,f +8967,3673,71,1,f +8967,3688,2,1,f +8967,3700,0,2,f +8967,3710,19,2,f +8967,3710,14,2,f +8967,3710,484,4,f +8967,3710,15,2,f +8967,3794b,15,2,f +8967,3795,19,2,f +8967,3878,0,1,f +8967,3899,47,1,f +8967,3899,45,2,f +8967,3900,15,1,f +8967,3941,70,1,f +8967,3957a,71,1,f +8967,4032a,70,4,f +8967,4286,2,2,f +8967,4286,15,2,f +8967,4345b,15,1,f +8967,4346,47,1,f +8967,4495b,5,1,f +8967,4529,0,1,f +8967,46304,15,1,f +8967,4733,15,1,f +8967,4740,15,1,f +8967,4740,71,1,f +8967,4865a,29,2,f +8967,48729b,71,1,f +8967,50949,0,2,f +8967,54200,15,3,f +8967,59900,71,1,f +8967,6005,14,4,f +8967,60471,15,1,f +8967,60474,15,1,f +8967,60475b,71,1,f +8967,6124,45,1,f +8967,6141,46,2,f +8967,6141,71,1,f +8967,6141,29,5,f +8967,6141,0,4,f +8967,6141,36,2,f +8967,6141,19,2,f +8967,6141,34,2,f +8967,6141,15,1,f +8967,6141,14,2,f +8967,6141,70,1,f +8967,6231,29,6,f +8967,64647,182,1,f +8967,85984,30,1,f +8967,87087,484,2,f +8967,87580,14,1,f +8967,87580,26,2,f +8967,88289,308,1,f +8967,88930,31,1,f +8967,90370pr0005,0,1,f +8967,90509,85,2,f +8967,90540,322,2,f +8967,92258,226,1,f +8967,92456pr0039c01,78,1,f +8967,92456pr0076c01,84,1,f +8967,92582,71,1,f +8967,92820pr0008c01,4,1,f +8967,93095,29,1,f +8967,93273,15,1,f +8967,93352,308,1,f +8967,93555,179,2,f +8967,93559,15,2,f +8967,93666,2,1,f +8967,96479,322,3,f +8967,96480,322,1,f +8967,96481,322,2,f +8967,96482,322,1,f +8967,96483,322,2,f +8967,96484,322,1,f +8967,96485,322,2,f +8967,96486,322,1,f +8967,96487,322,2,f +8967,96488,322,1,f +8967,96489,322,2,f +8967,96490,322,1,f +8967,96491,322,1,f +8967,98138,34,1,f +8967,98138,33,1,f +8967,98138,36,1,f +8967,98138,41,3,f +8967,98138,179,1,f +8967,98138pr0013,15,1,f +8967,98283,84,4,f +8969,2357,15,8,f +8969,2397,4,1,f +8969,2412b,6,10,f +8969,2412b,8,2,f +8969,2413,1,1,f +8969,2419,2,2,f +8969,2420,15,2,f +8969,2431,14,2,f +8969,2431ps1,8,1,f +8969,2432,0,4,f +8969,2445,19,4,f +8969,2445,2,2,f +8969,2456,8,2,f +8969,2456,19,2,f +8969,2458,4,4,f +8969,2540,1,4,f +8969,2555,7,10,f +8969,2577,2,8,f +8969,2593,4,4,f +8969,2625,8,2,f +8969,2877,8,14,f +8969,298c02,0,2,f +8969,3001,19,10,f +8969,3002,2,2,f +8969,3003,19,6,f +8969,3003,0,2,f +8969,3004,1,8,f +8969,3004,15,2,f +8969,3007,19,2,f +8969,3009,1,8,f +8969,3009,0,2,f +8969,3010,14,2,f +8969,3010,1,14,f +8969,30136,0,4,f +8969,30150,6,1,f +8969,3020,8,11,f +8969,3021,6,4,f +8969,3022,6,10,f +8969,3022,7,2,f +8969,3023,7,14,f +8969,3030,7,2,f +8969,3031,4,1,f +8969,3032,2,1,f +8969,3034,19,2,f +8969,30350b,4,2,f +8969,30358,8,2,f +8969,30359a,0,2,f +8969,30359a,57,4,f +8969,30363pb005,1,1,f +8969,30367b,7,2,f +8969,3037,6,4,f +8969,3039,1,1,f +8969,3039,2,2,f +8969,3039,6,2,f +8969,3040b,15,2,f +8969,3040b,6,2,f +8969,3040b,1,2,f +8969,30414,15,3,f +8969,30563,73,1,f +8969,30564,19,1,f +8969,30565,4,2,f +8969,30565,1,2,f +8969,3062b,0,16,f +8969,3065,47,1,f +8969,3068bps2,14,2,f +8969,3069b,15,4,f +8969,3070b,15,4,f +8969,3070bps0,19,1,t +8969,3070bps0,19,1,f +8969,32064a,2,6,f +8969,3622,6,2,f +8969,3623,0,2,f +8969,3660,2,4,f +8969,3660,6,2,f +8969,3665,6,2,f +8969,3684,1,2,f +8969,3684,15,4,f +8969,3685,1,4,f +8969,3701,8,8,f +8969,3706,7,4,f +8969,3707,0,4,f +8969,3710,6,1,f +8969,3738,7,2,f +8969,3747a,2,13,f +8969,3794a,0,2,f +8969,3795,14,3,f +8969,3795,0,1,f +8969,3821,14,2,f +8969,3822,14,2,f +8969,3830,7,2,f +8969,3831,7,2,f +8969,3937,0,1,f +8969,3938,1,1,f +8969,3941,42,2,f +8969,3941,0,8,f +8969,3943b,2,2,f +8969,3943b,0,4,f +8969,4162,15,4,f +8969,4213,2,2,f +8969,4282,19,4,f +8969,4286,2,6,f +8969,4286,1,2,f +8969,4287,2,2,f +8969,4315,14,2,f +8969,4345b,0,4,f +8969,4346,7,4,f +8969,4349,7,2,f +8969,4460a,15,4,f +8969,4460a,1,4,f +8969,4477,7,4,f +8969,4854,4,1,f +8969,4855,14,2,f +8969,4859,4,1,f +8969,4859,2,2,f +8969,4865a,0,2,f +8969,4865a,1,2,f +8969,4865a,47,1,f +8969,55295,0,1,f +8969,55296,0,1,f +8969,55297,0,1,f +8969,55298,0,1,f +8969,55299,0,1,f +8969,55300,0,1,f +8969,6019,7,8,f +8969,6111,1,4,f +8969,6153a,2,2,f +8969,6177ps1,7,2,f +8969,6184,19,2,f +8969,6222,2,2,f +8969,6558,0,4,f +8969,6636,14,2,f +8969,75c24,0,2,t +8969,75c24,0,2,f +8969,970x025,73,1,f +8969,973pr0490c01,19,1,f +8971,30033,0,1,f +8971,3005,4,1,f +8971,3005,0,1,f +8971,3021,19,1,f +8971,3021,2,4,f +8971,3021,4,1,f +8971,3021,14,1,t +8971,3022,0,1,f +8971,3022,19,1,f +8971,3023,0,23,f +8971,3023,15,23,f +8971,3023,2,3,f +8971,3024,4,5,f +8971,3024,0,1,f +8971,3024,19,9,f +8971,3024,2,2,f +8971,3028,28,1,f +8971,3031,19,1,f +8971,3048c,0,2,f +8971,3065,47,2,f +8971,3069b,71,1,f +8971,3069b,19,4,f +8971,3623,19,1,f +8971,3623,4,5,f +8971,3623,2,1,f +8971,3710,2,1,f +8971,3794b,19,14,f +8971,3795,2,4,f +8971,6141,41,4,f +8971,6141,33,3,f +8972,15573,72,2,f +8972,18789,322,1,f +8972,18792,70,1,f +8972,19727pr0003,4,1,f +8972,19729pr0001,308,1,f +8972,19729pr0002,15,1,f +8972,2431,84,4,f +8972,2453b,84,4,f +8972,2456,70,2,f +8972,2456,2,4,f +8972,2456,19,2,f +8972,2456,71,2,f +8972,2921,71,1,f +8972,3001,70,14,f +8972,3001,72,10,f +8972,3001,25,4,f +8972,3001,0,1,f +8972,3001,288,6,f +8972,3001,71,12,f +8972,3001,19,10,f +8972,3003,28,4,f +8972,3003,72,16,f +8972,3003,19,16,f +8972,3003,33,15,f +8972,3003,70,20,f +8972,3003,0,4,f +8972,3003,34,10,f +8972,3003,71,22,f +8972,3003,25,8,f +8972,3003,84,8,f +8972,3003pr0035,72,1,f +8972,3004,71,2,f +8972,3004,25,7,f +8972,3004pr0036,15,2,f +8972,3005,71,3,f +8972,3005,25,7,f +8972,3005,182,8,f +8972,3005,84,8,f +8972,3006,70,2,f +8972,3007,71,2,f +8972,3007,19,2,f +8972,3010,71,1,f +8972,3020,71,3,f +8972,3020,4,1,f +8972,3022,71,3,f +8972,3022,4,1,f +8972,3023,4,8,f +8972,3023,29,1,f +8972,3024,4,6,f +8972,3024,46,10,f +8972,3024,182,10,f +8972,3024,15,6,f +8972,3024,72,4,f +8972,3024,71,12,f +8972,3028,10,1,f +8972,3031,1,1,f +8972,3031,72,1,f +8972,3035,1,1,f +8972,3035,72,1,f +8972,3035,19,1,f +8972,3036,72,1,f +8972,3036,1,1,f +8972,3039,33,5,f +8972,3039,25,5,f +8972,3062b,72,2,f +8972,3065,47,14,f +8972,33172,25,1,f +8972,33183,10,3,f +8972,33183,191,2,f +8972,33291,4,4,f +8972,33291,10,4,f +8972,33291,70,16,f +8972,3710,72,4,f +8972,3830,71,1,f +8972,3831,71,1,f +8972,3958,10,2,f +8972,3958,25,2,f +8972,3958,72,1,f +8972,3958,1,1,f +8972,3958,19,1,f +8972,4032a,0,2,f +8972,41539,72,2,f +8972,41539,19,2,f +8972,4216,15,2,f +8972,4342,19,1,f +8972,44728,2,8,f +8972,4727,10,4,f +8972,60115,15,1,f +8972,6141,1,4,f +8972,6141,36,8,f +8972,6141,15,6,f +8972,6266,15,2,f +8972,64644,308,8,f +8972,87580,28,6,f +8972,87580,84,4,f +8972,87580,70,10,f +8972,87580,71,13,f +8972,87580,4,1,f +8972,87580,72,1,f +8972,87580,2,10,f +8972,92438,10,1,f +8972,93061,15,2,f +8972,96874,25,1,t +8972,970c00,85,1,f +8972,973pr2819c01,321,1,f +8972,98283,84,8,f +8972,98283,72,16,f +8974,2419,72,2,f +8974,2432,0,1,f +8974,3003,320,1,f +8974,3020,71,1,f +8974,3022,15,1,f +8974,30304,72,1,f +8974,30359b,71,2,f +8974,3068b,320,1,f +8974,3626b,0,4,f +8974,3678b,15,2,f +8974,3794a,320,2,f +8974,3832,15,1,f +8974,3839b,72,3,f +8974,4032a,72,1,f +8974,4070,15,4,f +8974,4349,0,2,f +8974,44728,72,2,f +8974,4589,72,1,f +8974,4589,33,2,f +8974,4599a,0,2,f +8974,47457,320,2,f +8974,50745,15,1,f +8974,50943,71,3,f +8974,50995pr0001,15,2,f +8974,50995pr0005,15,1,f +8974,50995pr0006,15,1,f +8974,57899,0,1,f +8974,58247,0,3,f +8974,970x026,15,4,f +8974,973pr0579c01,15,2,f +8974,973pr1309c01,15,1,f +8974,973pr1310c01,15,1,f +8975,2431,378,1,f +8975,298c02,378,1,t +8975,298c02,378,2,f +8975,3021,19,1,f +8975,3023,19,2,f +8975,3024,378,1,f +8975,3024,71,1,f +8975,3040b,70,2,f +8975,3666,71,1,f +8975,3794a,378,3,f +8975,3795,72,1,f +8975,4070,72,2,f +8975,4081b,71,1,f +8975,4287,378,1,f +8975,4589,19,2,f +8975,4599a,19,2,f +8975,48933pb01,70,1,f +8975,6005,0,1,f +8976,tech007,9999,1,f +8980,851211,9999,1,f +8980,jaykomask,9999,1,f +8982,15207,71,2,f +8982,2450,320,2,f +8982,2460,0,2,f +8982,2780,0,2,f +8982,3002,71,1,f +8982,3003,288,1,f +8982,3020,72,2,f +8982,3023,72,3,f +8982,3035,72,1,f +8982,30357,19,2,f +8982,30383,71,2,f +8982,30553,71,2,f +8982,3176,72,1,f +8982,32529,0,2,f +8982,3626bpr0922,0,1,f +8982,3666,320,2,f +8982,3700,71,3,f +8982,3710,4,3,f +8982,3747b,71,2,f +8982,3749,19,2,f +8982,3795,4,2,f +8982,4032a,71,3,f +8982,43710,320,1,f +8982,43711,320,1,f +8982,44728,72,1,f +8982,4589,0,4,f +8982,47759,320,1,f +8982,51739,72,1,f +8982,54383,320,1,f +8982,54384,320,1,f +8982,60470a,71,1,f +8982,60474,72,1,f +8982,6091,71,2,f +8982,62462,71,2,f +8982,6636,71,1,f +8982,85080,71,2,f +8982,87079,4,1,f +8982,87580,71,3,f +8982,87610pr0001a,378,1,f +8982,87620,288,4,f +8982,92474,47,1,f +8982,970c00pr0341,379,1,f +8982,973pr1619c01,71,1,f +8982,99207,71,4,f +8982,99781,71,2,f +8983,3626bpr0703,78,1,f +8983,40233,0,1,f +8983,970c00,0,1,f +8983,973pb0976c01,0,1,f +8985,15712,71,4,f +8985,3005,15,2,f +8985,3070b,4,2,f +8985,3794b,15,1,f +8985,3839b,15,4,f +8985,4070,71,1,f +8985,4733,15,1,f +8985,52107,4,1,f +8985,54200,71,1,f +8985,54200,40,1,f +8985,6141,1,1,f +8985,64567,71,4,f +8986,10219stk01,9999,1,t +8986,12825,71,2,f +8986,2335,0,4,f +8986,2357,313,3,f +8986,2412b,0,19,f +8986,2412b,71,17,f +8986,2420,71,13,f +8986,2431,313,16,f +8986,2431pr0028,72,1,f +8986,2432,0,10,f +8986,2436,71,2,f +8986,2453b,15,2,f +8986,2453b,71,4,f +8986,2456,71,1,f +8986,2723,0,4,f +8986,2730,0,6,f +8986,2780,0,3,t +8986,2780,0,7,f +8986,2825,0,2,f +8986,2871b,0,4,f +8986,2877,0,6,f +8986,2878,0,8,f +8986,30000,71,5,f +8986,3001,313,5,f +8986,3001,0,1,f +8986,3003,313,6,f +8986,3003,0,1,f +8986,3004,313,10,f +8986,30043,71,1,f +8986,3005,0,4,f +8986,3005,71,3,f +8986,3005,313,11,f +8986,3009,15,2,f +8986,3009,71,5,f +8986,3010,71,4,f +8986,3010,313,13,f +8986,30162,72,1,f +8986,30165,0,3,f +8986,3020,313,24,f +8986,3021,0,8,f +8986,3022,313,17,f +8986,3022,0,14,f +8986,3022,71,12,f +8986,3023,71,3,f +8986,3023,182,2,f +8986,3023,0,27,f +8986,3023,15,28,f +8986,3024,47,2,f +8986,3024,182,2,f +8986,3027,71,6,f +8986,3030,0,2,f +8986,3031,0,1,f +8986,3031,71,1,f +8986,3032,0,2,f +8986,3035,0,1,f +8986,30350b,0,10,f +8986,30357,15,2,f +8986,3037,0,2,f +8986,30374,71,2,f +8986,30374,0,4,f +8986,30377,0,18,f +8986,30377,0,2,t +8986,30383,0,2,f +8986,3039,15,1,f +8986,3040b,0,2,f +8986,30553,0,2,f +8986,3062b,71,5,f +8986,30663,71,3,f +8986,3069b,313,24,f +8986,3069b,0,21,f +8986,3069b,15,4,f +8986,3070b,313,16,f +8986,3070b,313,6,t +8986,3070b,0,4,f +8986,3070b,0,1,t +8986,3070bpr0007,71,1,t +8986,3070bpr0007,71,2,f +8986,32028,0,9,f +8986,32028,0,1,t +8986,32028,71,4,f +8986,32059,0,1,f +8986,32062,0,4,f +8986,32123b,71,1,t +8986,32123b,71,4,f +8986,32530,72,8,f +8986,3460,72,4,f +8986,3622,71,2,f +8986,3623,15,2,f +8986,3623,0,2,f +8986,3623,71,5,f +8986,3626bpr0282,14,1,f +8986,3626bpr0388,14,1,f +8986,3626bpr0646,14,1,f +8986,3660,313,2,f +8986,3666,15,1,f +8986,3666,0,11,f +8986,3666,71,10,f +8986,3673,71,8,f +8986,3673,71,2,t +8986,3702,0,2,f +8986,3706,0,4,f +8986,3709,0,9,f +8986,3710,313,16,f +8986,3710,70,4,f +8986,3710,71,6,f +8986,3713,71,3,f +8986,3713,71,1,t +8986,3747b,313,1,f +8986,3794a,15,2,f +8986,3794b,71,3,f +8986,3794b,0,6,f +8986,3795,0,5,f +8986,3795,15,7,f +8986,3829c01,71,1,f +8986,3832,0,1,f +8986,3833,313,3,f +8986,3840,25,3,f +8986,3941,0,1,f +8986,3956,71,13,f +8986,4006,0,1,f +8986,4025,0,6,f +8986,4032a,71,4,f +8986,4070,0,5,f +8986,4079,72,2,f +8986,4085c,71,2,f +8986,4150pr0022,71,1,f +8986,4162,15,4,f +8986,4162,313,20,f +8986,4175,72,1,f +8986,41862,71,4,f +8986,4216,15,28,f +8986,4216,71,89,f +8986,42446,72,4,f +8986,42610,71,1,f +8986,4274,71,3,t +8986,4274,71,8,f +8986,43093,1,4,f +8986,44728,71,4,f +8986,44728,72,26,f +8986,4477,0,4,f +8986,4488,0,8,f +8986,4510,72,4,f +8986,4510,71,8,f +8986,45677,15,1,f +8986,4590,72,1,f +8986,47456,70,2,f +8986,4865b,313,6,f +8986,4865b,0,9,f +8986,50745,0,8,f +8986,52107,4,1,f +8986,54200,0,2,t +8986,54200,15,3,t +8986,54200,71,12,f +8986,54200,0,5,f +8986,54200,71,4,t +8986,54200,15,7,f +8986,57051,383,8,f +8986,57878,0,16,f +8986,57999,0,8,f +8986,58176,182,1,f +8986,58380,71,2,f +8986,58380,15,1,f +8986,58381,71,2,f +8986,58381,15,1,f +8986,6014b,71,8,f +8986,6019,0,8,f +8986,60475a,15,1,f +8986,60476,71,1,f +8986,60479,0,2,f +8986,60583a,15,2,f +8986,60601,47,6,f +8986,60849,0,1,f +8986,6087,0,2,f +8986,6091,71,3,f +8986,6091,0,4,f +8986,6112,15,6,f +8986,6112,71,12,f +8986,61345,71,3,f +8986,61409,0,13,f +8986,6141,0,2,t +8986,6141,47,8,f +8986,6141,70,2,t +8986,6141,0,5,f +8986,6141,36,2,t +8986,6141,36,4,f +8986,6141,70,4,f +8986,6141,47,2,t +8986,61485,0,4,f +8986,6178,71,2,f +8986,6179,0,1,f +8986,6180,71,2,f +8986,6187,0,1,f +8986,6191,0,2,f +8986,6231,0,2,f +8986,6232,72,1,f +8986,62462,0,6,f +8986,63864,0,9,f +8986,63868,0,4,f +8986,63965,0,2,f +8986,64644,0,2,f +8986,64799,14,1,f +8986,6541,15,2,f +8986,6583,0,2,f +8986,6636,313,15,f +8986,75c24,0,4,f +8986,84954,40,1,f +8986,85984,0,2,f +8986,85984,313,24,f +8986,87058,71,2,f +8986,87079,15,1,f +8986,87079,71,6,f +8986,87083,72,2,f +8986,87087,72,12,f +8986,87544,71,2,f +8986,87609,15,6,f +8986,87617,0,1,f +8986,87620,15,2,f +8986,87697,0,8,f +8986,88393,15,2,f +8986,91992,0,2,f +8986,91994,0,4,f +8986,92339,0,1,f +8986,92593,0,10,f +8986,92946,4,2,f +8986,970c00,272,3,f +8986,973pr1773c01,272,3,f +8987,2335,15,1,f +8987,2357,320,2,f +8987,2357,272,4,f +8987,2412b,0,4,f +8987,2413,15,16,f +8987,2419,71,2,f +8987,2420,272,20,f +8987,2431,71,5,f +8987,2431,72,4,f +8987,2432,0,1,f +8987,2444,0,26,f +8987,2450,320,2,f +8987,2450,272,2,f +8987,2450,15,10,f +8987,2456,72,5,f +8987,2458,71,2,f +8987,2460,72,4,f +8987,2476a,71,7,f +8987,2540,19,4,f +8987,2555,72,7,f +8987,2654,72,34,f +8987,2730,15,4,f +8987,2730,71,5,f +8987,2744,0,4,f +8987,2780,0,2,t +8987,2780,0,63,f +8987,2817,4,1,f +8987,2853,14,1,f +8987,2905,72,2,f +8987,298c02,71,2,f +8987,298c02,71,1,t +8987,3001,272,1,f +8987,3001,15,2,f +8987,3001,320,3,f +8987,3003,71,1,f +8987,3003,19,4,f +8987,3004,320,9,f +8987,3004,15,10,f +8987,3007,71,5,f +8987,3008,15,17,f +8987,3009,71,9,f +8987,3010,272,3,f +8987,3010,15,8,f +8987,30136,72,4,f +8987,30157,71,2,f +8987,3020,72,13,f +8987,3021,272,3,f +8987,3021,71,6,f +8987,3021,320,2,f +8987,3022,72,6,f +8987,3023,71,29,f +8987,3023,272,2,f +8987,3023,320,5,f +8987,3028,71,2,f +8987,3030,72,1,f +8987,30303,71,8,f +8987,3031,71,8,f +8987,3032,15,3,f +8987,3034,15,2,f +8987,3035,71,11,f +8987,30357,72,6,f +8987,3036,0,1,f +8987,3036,15,6,f +8987,3036,71,1,f +8987,30364,0,2,f +8987,30365,4,4,f +8987,3037,71,12,f +8987,30383,72,2,f +8987,30389c,0,4,f +8987,3039,72,37,f +8987,3039,272,3,f +8987,3040b,15,14,f +8987,3040b,72,8,f +8987,3045,71,2,f +8987,3045,272,4,f +8987,30503,320,4,f +8987,30540,71,2,f +8987,30553,0,2,f +8987,3062b,72,28,f +8987,3063b,15,4,f +8987,3068b,0,6,f +8987,3069b,272,6,f +8987,32000,0,28,f +8987,32002,72,1,t +8987,32002,72,10,f +8987,32009,71,2,f +8987,32016,71,4,f +8987,32018,72,2,f +8987,32054,4,16,f +8987,32059,71,2,f +8987,32062,4,9,f +8987,32064b,72,14,f +8987,32073,71,4,f +8987,32123b,14,9,f +8987,32123b,71,1,t +8987,32123b,14,2,t +8987,32123b,71,9,f +8987,32140,71,7,f +8987,32184,0,6,f +8987,32271,71,10,f +8987,32278,15,8,f +8987,32316,72,4,f +8987,32316,0,4,f +8987,32333,71,2,f +8987,32348,72,5,f +8987,32523,71,14,f +8987,32523,4,1,f +8987,32524,71,2,f +8987,32525,71,6,f +8987,32531,71,11,f +8987,32556,19,7,f +8987,33299a,0,4,f +8987,3460,72,11,f +8987,3622,71,6,f +8987,3623,72,2,f +8987,3623,15,6,f +8987,3626bpr0525,78,8,f +8987,3660,72,9,f +8987,3665,72,8,f +8987,3665,15,6,f +8987,3666,71,32,f +8987,3673,71,18,f +8987,3673,71,2,t +8987,3678b,15,2,f +8987,3678b,72,3,f +8987,3700,19,9,f +8987,3701,72,8,f +8987,3702,71,6,f +8987,3703,15,4,f +8987,3705,0,20,f +8987,3706,0,6,f +8987,3708,0,5,f +8987,3709,71,8,f +8987,3710,272,28,f +8987,3710,71,9,f +8987,3713,71,8,f +8987,3713,71,2,t +8987,3747b,71,1,f +8987,3794b,4,1,f +8987,3795,71,13,f +8987,3832,71,9,f +8987,3937,71,4,f +8987,3938,0,2,f +8987,3941,1,8,f +8987,3941,71,8,f +8987,3960pr0005,71,10,f +8987,3961,72,2,f +8987,4032a,70,6,f +8987,40490,72,4,f +8987,4070,320,2,f +8987,4079,288,16,f +8987,4081b,72,2,f +8987,4150,15,5,f +8987,4150,19,2,f +8987,41531,15,4,f +8987,41539,71,3,f +8987,4162,320,4,f +8987,4162,71,5,f +8987,41747,72,1,f +8987,41748,72,1,f +8987,41764,15,1,f +8987,41765,15,1,f +8987,41883,40,1,f +8987,42003,72,3,f +8987,42022,15,26,f +8987,42023,15,14,f +8987,4274,1,21,f +8987,4274,71,1,t +8987,4274,71,6,f +8987,4274,1,2,t +8987,4282,72,8,f +8987,4286,72,8,f +8987,4287,72,10,f +8987,43093,1,33,f +8987,43337,72,5,f +8987,43710,71,1,f +8987,43710,272,1,f +8987,43711,71,1,f +8987,43711,272,1,f +8987,43719,320,2,f +8987,43722,71,3,f +8987,43723,71,3,f +8987,44301a,0,10,f +8987,44302a,71,12,f +8987,44358,71,5,f +8987,44359,71,10,f +8987,44375a,71,18,f +8987,4445,15,2,f +8987,44568,71,3,f +8987,44570,15,3,f +8987,44728,19,6,f +8987,4477,15,8,f +8987,4477,71,3,f +8987,4515,15,4,f +8987,4519,71,7,f +8987,4589,4,16,f +8987,4589,0,6,f +8987,4742,72,2,f +8987,47753,272,1,f +8987,47753,320,1,f +8987,47759,272,1,f +8987,47973,72,2,f +8987,48336,0,2,f +8987,48496,0,1,f +8987,4871,272,2,f +8987,4872,40,3,f +8987,48933,72,3,f +8987,50304,15,2,f +8987,50305,15,2,f +8987,50950,15,8,f +8987,50950,320,2,f +8987,51739,71,2,f +8987,52107,0,3,f +8987,52501,15,2,f +8987,54091,72,4,f +8987,54200,320,1,t +8987,54200,15,1,t +8987,54200,320,10,f +8987,54200,15,2,f +8987,54200,272,4,f +8987,54200,272,1,t +8987,54383,71,1,f +8987,54383,320,1,f +8987,54384,71,1,f +8987,54384,320,1,f +8987,55013,72,1,f +8987,56145,71,2,f +8987,57539,0,4,f +8987,57899,0,2,f +8987,58247,0,4,f +8987,59426,72,8,f +8987,59443,71,11,f +8987,6019,0,1,f +8987,60208,28,8,f +8987,60208,272,10,f +8987,60470a,4,1,f +8987,60474,0,3,f +8987,60481,15,6,f +8987,60483,72,6,f +8987,60484,0,5,f +8987,61184,71,18,f +8987,61189pr0001,15,2,f +8987,61189pr0003,15,6,f +8987,6134,4,2,f +8987,6141,19,1,t +8987,6141,71,1,t +8987,6141,19,15,f +8987,6141,71,16,f +8987,6179,15,7,f +8987,6222,72,12,f +8987,6232,72,2,f +8987,62462,0,2,f +8987,62462,15,18,f +8987,62462,71,3,f +8987,63965,71,7,f +8987,63965,0,4,f +8987,64644,0,4,f +8987,6541,71,8,f +8987,6558,1,33,f +8987,6587,72,30,f +8987,6628,0,3,f +8987,6632,14,4,f +8987,6632,72,15,f +8987,6636,15,10,f +8987,6636,272,4,f +8987,85545,1,3,f +8987,970x026,15,8,f +8987,973pr0470c01,15,6,f +8987,973pr1389c01,15,2,f +8988,3004,71,3,f +8988,3022,72,1,f +8988,3068b,72,1,f +8988,3070b,72,1,t +8988,3070b,72,1,f +8988,3794b,72,1,f +8988,4070,71,2,f +8988,60897,72,2,f +8988,6141,71,2,f +8988,6141,72,1,t +8988,6141,71,1,t +8988,6141,72,1,f +8990,122c01,7,2,f +8990,3004,1,2,f +8990,3022,1,1,f +8990,3023,7,2,f +8990,3024,1,1,f +8990,3062b,7,2,f +8990,3062b,36,2,f +8990,3626apr0001,14,1,f +8990,3639,7,1,f +8990,3640,7,1,f +8990,3710,1,1,f +8990,3747a,1,1,f +8990,3794a,1,5,f +8990,3795,1,1,f +8990,3829c01,7,1,f +8990,3838,15,1,f +8990,3839b,7,1,f +8990,3842a,15,1,f +8990,3957a,7,1,f +8990,4085a,7,2,f +8990,4275a,1,1,f +8990,4276a,1,1,f +8990,4285a,7,1,f +8990,4288,0,4,f +8990,4345a,1,2,f +8990,4346,1,2,f +8990,4476a,1,1,f +8990,4479,7,2,f +8990,970c00,15,1,f +8990,973p90c05,15,1,f +8991,10187,179,2,f +8991,18987,70,1,f +8991,28791,70,1,f +8991,3626cpr2128,84,1,f +8991,50231,70,1,f +8991,88646,0,1,f +8991,970x192pr0002,191,1,f +8991,973pr3678c01,191,1,f +8992,10247,71,1,f +8992,11153,72,4,f +8992,11153,14,2,f +8992,11213,71,1,f +8992,11303,28,1,f +8992,11458,72,2,f +8992,11477,72,2,f +8992,15068pr0009,27,1,f +8992,15573,27,2,f +8992,15672,72,2,f +8992,15712,72,2,f +8992,16178pr01,15,1,f +8992,18041,179,1,t +8992,18041,179,1,f +8992,22885,71,2,f +8992,23443,0,2,f +8992,23444,0,1,f +8992,23447,182,2,f +8992,2412b,71,10,f +8992,2431,14,2,f +8992,2431,27,2,f +8992,2432,0,1,f +8992,2447,40,1,t +8992,2447,40,1,f +8992,2780,0,1,t +8992,2780,0,5,f +8992,2877,71,2,f +8992,3001,72,4,f +8992,3004,71,2,f +8992,3009,14,2,f +8992,3010,71,2,f +8992,3020,14,1,f +8992,3020,27,2,f +8992,3021,0,1,f +8992,3022,71,1,f +8992,3023,182,3,f +8992,3023,1,5,f +8992,3023,36,2,f +8992,3030,72,2,f +8992,3031,71,2,f +8992,3032,70,2,f +8992,3032,0,4,f +8992,3034,72,1,f +8992,30374,0,3,f +8992,3038,72,2,f +8992,30385,33,1,f +8992,3039,27,1,f +8992,3040b,27,2,f +8992,30414,19,1,f +8992,3062b,71,2,f +8992,3068b,14,1,f +8992,3069b,72,2,f +8992,3069b,27,1,f +8992,3069b,0,2,f +8992,3176,72,2,f +8992,32028,72,2,f +8992,32028,71,2,f +8992,32034,0,1,f +8992,32062,4,1,f +8992,32063,14,2,f +8992,32123b,14,2,f +8992,32123b,14,1,t +8992,32474,4,1,f +8992,3460,72,3,f +8992,3622,27,2,f +8992,3626bpr0754a,14,1,f +8992,3626cpr1580,14,1,f +8992,3626cpr1638,14,1,f +8992,3660,72,5,f +8992,3660,71,1,f +8992,3666,1,2,f +8992,3700,72,1,f +8992,3700,0,8,f +8992,3705,0,2,f +8992,3710,72,4,f +8992,3710,14,1,f +8992,3710,27,3,f +8992,3747a,71,1,f +8992,3795,72,1,f +8992,3795,71,2,f +8992,3829c01,1,2,f +8992,3833,15,1,f +8992,3837,72,1,f +8992,3838,14,1,f +8992,3841,72,1,f +8992,3958,0,1,f +8992,3958,72,1,f +8992,41239,0,2,f +8992,4176,41,1,f +8992,4215b,15,1,f +8992,4274,71,1,f +8992,4274,71,1,t +8992,43093,1,1,f +8992,44674,27,1,f +8992,4477,14,2,f +8992,4519,71,1,f +8992,4600,0,2,f +8992,4865b,72,1,f +8992,52031,27,1,f +8992,54200,46,1,t +8992,54200,46,2,f +8992,55978,0,1,f +8992,56145,71,1,f +8992,57520,0,6,f +8992,59426,72,1,f +8992,59443,72,1,f +8992,59443,4,2,f +8992,59900,0,1,f +8992,6014b,71,4,f +8992,60470b,0,2,f +8992,60478,0,4,f +8992,60897,71,2,f +8992,61252,0,2,f +8992,61409,72,2,f +8992,6141,182,10,f +8992,6141,182,1,t +8992,61485,0,1,f +8992,6158,72,1,f +8992,6179,72,2,f +8992,6187,14,4,f +8992,6192,71,2,f +8992,6232,19,4,f +8992,62462,0,1,f +8992,6541,14,6,f +8992,6628,0,2,f +8992,6636,72,4,f +8992,6636,14,2,f +8992,72454,14,1,f +8992,85544,4,1,f +8992,87083,72,4,f +8992,87609,0,1,f +8992,87697,0,4,f +8992,88072,72,1,f +8992,88323,0,44,f +8992,92338,72,1,f +8992,970c00,379,2,f +8992,970c00pr1057,326,1,f +8992,973pr3388c01,326,1,f +8992,973pr3389c01,326,1,f +8992,973pr3390c01,326,1,f +8992,98138,46,4,f +8992,98138,46,1,t +8992,98280,71,1,f +8992,98560,72,2,f +8992,99780,0,3,f +8997,2871a,0,2,f +8997,3710,0,2,f +8997,70358,0,1,f +8997,73092,0,6,f +8997,74746,72,2,f +8997,74747,72,16,f +8998,15573,26,3,f +8998,3039,26,2,f +8998,4740,71,2,f +8998,60474,0,1,f +8998,6141,15,4,f +8998,61485,15,1,f +8998,6266,0,1,f +8998,90370pr0005,0,1,f +8998,93088pr0003,15,1,f +8998,98138,41,2,f +8998,98138,45,2,f +8999,3001,4,1,f +8999,3002,4,2,f +8999,3003,14,1,f +8999,3003,4,3,f +8999,3003pe2,4,1,f +8999,3004,14,2,f +8999,3020,4,1,f +8999,3022,15,2,f +8999,3040b,1,2,f +8999,3298,1,2,f +8999,3622,4,2,f +8999,3626bpr0001,14,1,f +8999,3747a,4,2,f +8999,3832,4,1,f +8999,3957a,14,1,f +8999,4485,4,1,f +8999,4495a,1,1,f +8999,6215,14,4,f +8999,970c00,15,1,f +8999,973c01,1,1,f +9001,10159stk01,9999,1,t +9001,194cx1,2,1,f +9001,2340,15,2,f +9001,2340,14,2,f +9001,2343,47,2,f +9001,2357,1,1,f +9001,2357,15,8,f +9001,2357,14,4,f +9001,2362a,41,2,f +9001,2362b,14,2,f +9001,2362b,71,2,f +9001,2412b,14,2,f +9001,2412b,4,5,f +9001,2420,71,2,f +9001,2420,14,4,f +9001,2421,71,1,f +9001,2431,14,1,f +9001,2431,15,1,f +9001,2431,71,1,f +9001,2432,15,2,f +9001,2432,0,2,f +9001,2432,14,2,f +9001,2432,71,1,f +9001,2440p69,0,1,f +9001,2441,2,1,f +9001,2445,2,4,f +9001,2446,15,1,f +9001,2447,41,1,f +9001,2447,41,1,t +9001,2453a,15,4,f +9001,2454a,15,5,f +9001,2460,4,1,f +9001,2460,0,2,f +9001,2466,41,7,f +9001,2468,41,2,f +9001,2479,71,3,f +9001,2483,41,1,f +9001,2486,4,2,f +9001,2495,4,1,f +9001,2496,0,3,f +9001,2508,15,1,f +9001,2536,70,5,f +9001,2540,0,3,f +9001,2540,71,2,f +9001,2540,4,2,f +9001,2555,0,1,f +9001,2563,70,1,f +9001,2566,2,1,f +9001,2569,0,2,f +9001,2582,14,4,f +9001,2620,41,1,f +9001,2635a,15,2,f +9001,2655,71,2,f +9001,2877,15,3,f +9001,298c02,71,1,f +9001,298c02,4,2,f +9001,298c02,71,1,t +9001,298c02,4,1,t +9001,3001,71,1,f +9001,3001,15,1,f +9001,3002,0,1,f +9001,3003,15,1,f +9001,3003,14,8,f +9001,3003,0,1,f +9001,3004,14,2,f +9001,3004,1,6,f +9001,3004,71,3,f +9001,3004,15,6,f +9001,3004,0,2,f +9001,3004,4,2,f +9001,3005,15,18,f +9001,3005,71,3,f +9001,3005,1,3,f +9001,3005,14,2,f +9001,3008,15,8,f +9001,3009,1,1,f +9001,3009,15,4,f +9001,3010,15,5,f +9001,3010,14,1,f +9001,3020,14,3,f +9001,3020,4,5,f +9001,3020,71,1,f +9001,3020,15,3,f +9001,3020,0,3,f +9001,3021,71,1,f +9001,3021,15,1,f +9001,3021,14,1,f +9001,3021,0,1,f +9001,3022,0,4,f +9001,3022,2,8,f +9001,3022,15,1,f +9001,3022,4,7,f +9001,30225bp1,2,1,f +9001,3023,0,5,f +9001,3023,14,5,f +9001,3023,15,6,f +9001,3023,71,1,f +9001,3023,4,7,f +9001,3024,34,1,f +9001,3024,15,6,f +9001,3024,46,4,f +9001,3024,36,3,f +9001,3024,71,4,f +9001,3029,14,1,f +9001,3030,71,3,f +9001,3031,4,1,f +9001,3031,15,2,f +9001,3033,71,3,f +9001,3034,0,1,f +9001,3034,71,1,f +9001,3035,71,1,f +9001,3035,1,1,f +9001,3037,71,2,f +9001,3038,15,2,f +9001,3039,0,2,f +9001,3039pc5,71,1,f +9001,3039pr0005,15,1,f +9001,3040b,15,15,f +9001,3040b,14,3,f +9001,3040p32,71,2,f +9001,3062b,71,1,f +9001,3068b,71,2,f +9001,3068b,14,4,f +9001,3068b,4,1,f +9001,3069b,14,4,f +9001,3069b,15,1,f +9001,3069b,4,3,f +9001,3069bp68,15,1,f +9001,3070b,15,3,f +9001,3070b,46,1,t +9001,3070b,4,2,f +9001,3070b,34,1,t +9001,3070b,4,1,t +9001,3070b,36,1,t +9001,3070b,36,2,f +9001,3070b,46,2,f +9001,3070b,15,1,t +9001,3070b,34,2,f +9001,3139,0,14,f +9001,3188,14,1,f +9001,3189,14,1,f +9001,3298,4,2,f +9001,3430c01,71,1,f +9001,3456,15,1,f +9001,3460,0,3,f +9001,3460,71,8,f +9001,3460,1,1,f +9001,3460,14,1,f +9001,3460,15,1,f +9001,3474,15,1,f +9001,3475b,0,2,f +9001,3585,15,1,f +9001,3586,15,1,f +9001,3622,1,5,f +9001,3622,15,12,f +9001,3623,14,2,f +9001,3623,0,2,f +9001,3623,4,4,f +9001,3623,15,4,f +9001,3623,71,3,f +9001,3624,0,1,f +9001,3624,15,1,f +9001,3626bp02,14,1,f +9001,3626bp03,14,2,f +9001,3626bp07,14,3,f +9001,3626bp09,14,1,f +9001,3626bp7e,14,2,f +9001,3626bpr0001,14,2,f +9001,3626bpx11,14,1,f +9001,3633,0,2,f +9001,3641,0,12,f +9001,3660,14,1,f +9001,3665,15,6,f +9001,3666,71,1,f +9001,3666,0,6,f +9001,3666,15,2,f +9001,3676,4,2,f +9001,3676,14,2,f +9001,3679,71,5,f +9001,3680,4,1,f +9001,3680,0,3,f +9001,3680,71,1,f +9001,3710,0,2,f +9001,3710,71,4,f +9001,3710,4,2,f +9001,3710,15,4,f +9001,3710,1,2,f +9001,3730,0,1,f +9001,3741,2,2,f +9001,3742,14,2,t +9001,3742,14,6,f +9001,3747a,0,1,f +9001,3755,15,2,f +9001,3787,15,1,f +9001,3788,4,1,f +9001,3794a,14,3,f +9001,3794a,0,2,f +9001,3794a,15,5,f +9001,3795,4,1,f +9001,3795,0,1,f +9001,3829c01,15,1,f +9001,3829c01,4,2,f +9001,3832,15,3,f +9001,3833,4,1,f +9001,3839b,0,1,f +9001,3857,2,1,f +9001,3867,2,1,f +9001,3899,47,2,f +9001,3900,15,2,f +9001,3901,0,2,f +9001,3938,0,1,f +9001,3941,0,1,f +9001,3941,4,2,f +9001,3942c,15,1,f +9001,3942c,4,1,f +9001,3962b,0,2,f +9001,4032a,2,1,f +9001,4070,15,7,f +9001,4070,14,4,f +9001,4079,4,6,f +9001,4079,71,4,f +9001,4081b,0,1,f +9001,4081b,4,2,f +9001,4085c,15,4,f +9001,4162,71,1,f +9001,4162,15,1,f +9001,4175,71,2,f +9001,4215b,15,1,f +9001,4216,1,2,f +9001,4216,15,10,f +9001,4217,15,5,f +9001,4218,1,6,f +9001,4218,41,2,f +9001,4219,1,1,f +9001,4275b,0,1,f +9001,4276b,0,1,f +9001,4282,14,1,f +9001,4286,14,2,f +9001,4286,4,2,f +9001,4315,4,5,f +9001,4315,14,1,f +9001,4345b,14,2,f +9001,4345b,71,2,f +9001,4346,14,2,f +9001,4346,71,2,f +9001,4360,0,1,f +9001,44336pr03,2,2,f +9001,44343pr02,2,1,f +9001,4445,14,2,f +9001,4447,71,4,f +9001,4448,41,4,f +9001,4449,70,2,f +9001,4449,71,4,f +9001,4449,0,2,f +9001,4477,1,2,f +9001,4477,14,2,f +9001,4477,15,5,f +9001,4485,4,4,f +9001,4485,1,1,f +9001,4488,0,1,f +9001,4530,0,1,f +9001,4533,71,3,f +9001,4589,4,1,f +9001,4589,36,1,f +9001,4589,0,4,f +9001,4600,0,3,f +9001,4623,0,2,f +9001,4624,71,14,f +9001,4624,15,12,f +9001,4625,15,4,f +9001,476,15,1,f +9001,47899c01,71,1,f +9001,48183,4,1,f +9001,48183,1,1,f +9001,48183,0,1,f +9001,48183,15,1,f +9001,4854,4,4,f +9001,4854,14,1,f +9001,4855,14,1,f +9001,4855,4,2,f +9001,4856a,1,1,f +9001,4856a,15,1,f +9001,4857,15,4,f +9001,4861,14,1,f +9001,4862,41,12,f +9001,4863,15,6,f +9001,4864b,41,1,f +9001,4864b,1,2,f +9001,4864b,71,2,f +9001,4864b,15,2,f +9001,4865a,14,12,f +9001,4865a,71,4,f +9001,4865a,4,5,f +9001,4865a,15,4,f +9001,4867pb05,15,1,f +9001,4868b,15,2,f +9001,4869,71,2,f +9001,4870,71,7,f +9001,48933,15,1,f +9001,50373,14,2,f +9001,50373,15,1,f +9001,6081,15,2,f +9001,6087,71,2,f +9001,6111,15,6,f +9001,6141,47,1,t +9001,6141,36,9,f +9001,6141,47,8,f +9001,6141,33,9,f +9001,6141,46,10,f +9001,6141,15,30,f +9001,6141,15,1,t +9001,6141,33,1,t +9001,6141,46,1,t +9001,6141,36,1,t +9001,6148,2,4,f +9001,6152,41,1,f +9001,6153a,15,1,f +9001,6157,0,1,f +9001,6160c01,71,6,f +9001,73194c01,71,1,f +9001,92410,15,2,f +9001,92410,1,1,f +9001,970c00,4,1,f +9001,970c00,0,2,f +9001,970c00,71,1,f +9001,970c00,15,2,f +9001,970c00,2,2,f +9001,970c00,1,4,f +9001,973p70c01,6,1,f +9001,973p73c01,2,1,f +9001,973pb0031c01,1,1,f +9001,973pb0097c01,1,3,f +9001,973pb0128c01,15,1,f +9001,973pr1204c01,15,1,f +9001,973px130c01,15,1,f +9001,973px189c01,0,1,f +9001,973px20c01,0,1,f +9001,973px2c01,1,1,f +9002,11458,72,2,f +9002,15712,72,1,f +9002,18677,71,4,f +9002,2357,71,2,f +9002,2412b,71,2,f +9002,2780,0,4,f +9002,2780,0,1,t +9002,298c02,71,1,t +9002,298c02,71,2,f +9002,3005,71,2,f +9002,3010,71,1,f +9002,3020,72,3,f +9002,3022,15,1,f +9002,3022,71,2,f +9002,3023,72,2,f +9002,3023,36,1,f +9002,3039,71,1,f +9002,30602,71,1,f +9002,3176,71,1,f +9002,32028,71,1,f +9002,3626cpr1149,78,1,f +9002,3660,71,2,f +9002,3839b,72,1,f +9002,40902,71,1,f +9002,4286,71,2,f +9002,43898,72,4,f +9002,44567b,72,1,f +9002,4740,71,6,f +9002,48729b,72,1,t +9002,48729b,72,4,f +9002,54200,71,4,f +9002,54200,71,1,t +9002,59900,36,2,f +9002,60478,71,4,f +9002,61184,71,2,f +9002,6141,72,2,f +9002,6141,72,1,t +9002,6541,72,4,f +9002,85984,71,4,f +9002,87556pr0005a,71,1,f +9002,92738,0,1,f +9002,970c00pr0704,379,1,f +9002,973pr2760c01,71,1,f +9002,99207,71,5,f +9002,99781,0,2,f +9003,2412b,4,1,f +9003,2540,4,1,f +9003,2540,0,1,f +9003,30031,80,2,f +9003,3020,4,1,f +9003,3020,0,1,f +9003,3022,4,1,f +9003,3022,72,2,f +9003,3023,72,3,f +9003,3024,36,2,f +9003,32000,4,1,f +9003,3795,0,2,f +9003,41854,72,2,f +9003,41854pb13,72,1,f +9003,4274,71,1,t +9003,4274,71,2,f +9003,44674pb02,72,1,f +9003,44675,71,1,f +9003,47458,0,1,f +9003,47753pb002,0,1,f +9003,47755,4,1,f +9003,6014b,72,4,f +9003,6015,0,4,f +9003,6019,4,2,f +9003,6141,72,1,t +9003,6141,72,2,f +9003,6157,0,2,f +9004,2346,0,1,t +9004,2412b,7,1,f +9004,2483,41,1,f +9004,2695,15,2,f +9004,2696,0,2,f +9004,2743,4,2,f +9004,2780,0,2,f +9004,2904,4,1,f +9004,3020,7,2,f +9004,3021,0,2,f +9004,3021,4,3,f +9004,3022,0,4,f +9004,3023,0,1,f +9004,3024,36,2,f +9004,3069b,0,2,f +9004,3176,4,2,f +9004,3298,4,2,f +9004,3482,15,1,t +9004,3651,7,2,f +9004,3660,7,1,f +9004,3660,4,1,f +9004,3673,7,2,f +9004,3700,4,1,f +9004,3701,4,2,f +9004,3704,0,2,f +9004,3705,0,2,f +9004,3706,0,4,f +9004,3710,4,1,f +9004,3713,7,1,t +9004,3713,7,4,f +9004,3747b,4,2,f +9004,3795,4,1,f +9004,3894,4,2,f +9004,4070,4,2,f +9004,4070,0,2,f +9004,4262,4,2,f +9004,4263,0,3,f +9004,4265a,7,1,t +9004,4265b,7,10,f +9004,4273b,7,2,f +9004,6141,47,2,f +9004,6141,47,1,t +9004,73129,7,2,f +9005,32184,0,5,f +9005,32291,72,5,f +9005,32557,0,5,f +9005,41678,0,5,f +9005,42003,72,5,f +9005,44809,72,5,f +9007,2654,0,2,f +9007,3001,4,6,f +9007,3003,14,6,f +9007,30208,42,2,f +9007,3023,1,8,f +9007,32001,1,4,f +9007,32064b,2,4,f +9007,32250,1,2,f +9007,3456,4,2,f +9007,3460,1,2,f +9007,3634,0,2,f +9007,3700,1,4,f +9007,3703,1,2,f +9007,3703,0,2,f +9007,3709,14,4,f +9007,3738,14,4,f +9007,3832,7,2,f +9007,3894,1,4,f +9007,3956,1,2,f +9007,6093,0,1,f +9007,6536,7,2,f +9007,6553,7,2,f +9007,78c12,22,2,f +9009,15319,4,1,f +9009,16195,25,2,f +9009,16265,179,1,f +9009,18012,71,1,f +9009,19708,15,1,f +9009,20356,27,1,f +9009,3437,322,2,f +9009,40666,0,1,f +9009,45141,179,1,f +9009,73241,14,1,f +9009,93242,15,1,f +9010,122c02,0,2,f +9010,2446,0,1,f +9010,2447,42,1,f +9010,2540,15,1,f +9010,2569,42,1,f +9010,3020,0,1,f +9010,3022,15,1,f +9010,3024,0,1,f +9010,3039,0,1,f +9010,3069bp68,15,1,f +9010,3626apr0001,14,1,f +9010,4288,0,4,f +9010,4740,42,1,f +9010,4865a,0,1,f +9010,6019,0,2,f +9010,6023,15,1,f +9010,6141,42,2,f +9010,970x026,15,1,f +9010,973p51c01,15,1,f +9011,10247,72,2,f +9011,11153,71,2,f +9011,11477,4,1,f +9011,13349,72,2,f +9011,13548,71,2,f +9011,14418,71,2,f +9011,15064,308,2,f +9011,15068,71,4,f +9011,15068,272,6,f +9011,15068,308,3,f +9011,15092,72,2,f +9011,15100,0,2,f +9011,15392,72,4,f +9011,15403,0,2,f +9011,15461,0,1,f +9011,15462,28,2,f +9011,15571,71,6,f +9011,15573,1,2,f +9011,17114,72,2,f +9011,18031,179,1,f +9011,18674,72,2,f +9011,18677,71,3,f +9011,20105,0,2,f +9011,20482,297,1,f +9011,22385pr0026,46,1,f +9011,22388,297,7,f +9011,22391,179,2,f +9011,22408,179,1,f +9011,22483,57,1,f +9011,22961,71,3,f +9011,2357,1,2,f +9011,2412b,272,4,f +9011,2419,71,1,f +9011,2420,1,2,f +9011,2431,272,3,f +9011,2432,1,3,f +9011,2436,71,3,f +9011,2458,71,2,f +9011,2540,1,2,f +9011,2780,0,5,f +9011,30000,71,2,f +9011,3003,71,2,f +9011,30031,72,1,f +9011,3005,272,8,f +9011,3020,272,1,f +9011,3020,71,2,f +9011,3021,272,2,f +9011,3023,308,2,f +9011,3023,1,11,f +9011,3023,272,6,f +9011,3023,182,1,f +9011,30375,1,1,f +9011,3038,71,2,f +9011,3039,272,2,f +9011,3040b,272,2,f +9011,3044b,72,2,f +9011,3068bpr0166,71,1,f +9011,3069b,71,7,f +9011,32001,1,1,f +9011,32062,0,3,f +9011,32064a,72,5,f +9011,32123b,71,4,f +9011,32187,179,2,f +9011,32316,1,3,f +9011,3623,71,2,f +9011,3626cpr1818,4,1,f +9011,3665,71,2,f +9011,3700,1,2,f +9011,3705,0,1,f +9011,3709,72,3,f +9011,3710,272,2,f +9011,3738,71,1,f +9011,3795,1,2,f +9011,3941,71,1,f +9011,4032a,70,1,f +9011,4274,71,3,f +9011,4286,71,2,f +9011,43093,1,1,f +9011,43719,272,2,f +9011,43719,57,4,f +9011,44301a,72,2,f +9011,44676,272,2,f +9011,44728,71,2,f +9011,44728,1,4,f +9011,4490,71,2,f +9011,4498,70,1,f +9011,4519,71,3,f +9011,4740,71,1,f +9011,4740,57,1,f +9011,47905,4,1,f +9011,48336,71,1,f +9011,4865a,1,2,f +9011,4871,71,1,f +9011,48729b,71,3,f +9011,50231,272,1,f +9011,51739,272,2,f +9011,53585,0,5,f +9011,54200,1,2,f +9011,54200,71,2,f +9011,54200,272,3,f +9011,57906,272,2,f +9011,57909b,72,1,f +9011,59443,72,1,f +9011,59900,297,1,f +9011,60219,72,1,f +9011,60470b,0,5,f +9011,60474,308,1,f +9011,60475b,1,2,f +9011,60483,0,2,f +9011,6141,57,19,f +9011,6232,72,2,f +9011,62462,179,2,f +9011,62743,71,1,f +9011,63868,70,1,f +9011,63868,1,2,f +9011,64567,0,1,f +9011,64567,297,1,f +9011,64647,1,1,f +9011,6553,72,2,f +9011,6558,1,1,f +9011,74261,0,2,f +9011,85861,71,2,f +9011,85943,72,3,f +9011,85984,1,5,f +9011,87087,71,2,f +9011,87580,272,1,f +9011,88072,72,3,f +9011,90194,1,2,f +9011,92013,72,9,f +9011,92280,4,1,f +9011,92692,0,1,f +9011,93273,272,1,f +9011,93563,0,2,f +9011,93571,72,1,f +9011,970c00pr0947,0,1,f +9011,970c00pr0973,297,1,f +9011,973pr3191c01,4,1,f +9011,973pr3194c01,297,1,f +9011,98138,182,4,f +9011,98313,1,4,f +9011,98375,179,1,f +9011,98834,72,3,f +9011,99021,72,2,f +9011,99780,72,5,f +9011,99781,0,3,f +9012,3626bpr0692,14,1,f +9012,87991,19,1,f +9012,88646,0,1,f +9012,90397pr0001a,15,1,f +9012,970c00pr0165,14,1,f +9012,973pr1654c01,14,1,f +9013,11253,15,2,f +9013,3626cpr1549,14,1,f +9013,87995,308,1,f +9013,88646,0,1,f +9013,90370pr0004,297,1,f +9013,970c00pr0758,85,1,f +9013,973pr2841c01,30,1,f +9014,3706,0,2,f +9014,57999,0,4,f +9014,87574,0,1,f +9016,20877,0,1,f +9016,30385,82,1,f +9016,3068bpr0167,19,1,f +9016,3626cpr1560,14,1,f +9016,64567,71,2,f +9016,64727,71,2,f +9016,970d00pr9999,70,1,f +9017,10226,15,1,f +9017,12011,25,1,f +9017,15613b,71,1,f +9017,2222,179,1,f +9017,3437,27,2,f +9017,41969,0,1,f +9017,4662,0,1,f +9017,47440,191,1,f +9017,47509,179,1,f +9017,63710pr0002c02,10,1,f +9017,6510,73,1,f +9017,76371,14,2,f +9017,86142,1,1,f +9017,98223,4,1,f +9017,98233,10,1,f +9018,2840c02,0,1,f +9018,3068b,4,1,f +9018,3068b,14,2,f +9018,3068b,0,10,f +9020,11403pr0001c01,5,1,f +9020,11609,191,1,t +9020,11609,191,1,f +9020,11618,26,1,f +9020,11618,26,1,t +9020,11816pr0005,78,1,f +9020,12939,15,1,f +9020,13392pr0001,212,1,f +9020,14716,15,2,f +9020,14769pr0009,15,1,f +9020,3004,15,2,f +9020,3009,15,2,f +9020,30136,19,3,f +9020,30162,297,2,t +9020,30162,297,1,f +9020,3020,322,1,f +9020,3021,15,3,f +9020,3023,30,3,f +9020,3023,4,1,f +9020,3032,322,1,f +9020,3032,4,1,f +9020,3032,19,2,f +9020,3038,30,2,f +9020,3062b,15,1,f +9020,3069b,28,2,f +9020,3622,15,1,f +9020,3666,4,1,f +9020,3942c,15,1,f +9020,4032a,4,1,f +9020,4094b,45,1,f +9020,4175,4,1,f +9020,4449,2,1,f +9020,4490,15,1,f +9020,4495b,4,1,f +9020,4495b,2,1,f +9020,4523,5,1,f +9020,4865b,47,1,f +9020,54200,143,1,t +9020,54200,143,5,f +9020,59275,25,2,f +9020,59900,19,2,f +9020,59900,4,1,f +9020,60481,15,2,f +9020,60594,15,1,f +9020,6141,41,1,t +9020,6141,29,3,f +9020,6141,41,1,f +9020,6141,29,1,t +9020,63965,15,2,f +9020,6636,30,1,f +9020,87079,30,1,f +9020,87087,15,5,f +9020,90395,4,1,f +9020,92258,0,1,f +9020,92456pr0033c01,78,1,f +9020,95343,4,1,f +9020,95344,297,1,f +9020,95344,297,1,t +9020,98138,15,1,t +9020,98138,15,1,f +9021,10197,72,2,f +9021,10928,72,4,f +9021,11214,72,34,f +9021,11478,0,2,f +9021,11946,15,3,f +9021,11947,15,3,f +9021,14720,71,3,f +9021,15100,0,19,f +9021,15458,15,3,f +9021,15459,71,10,f +9021,15461,0,1,f +9021,15462,28,10,f +9021,15573,0,2,f +9021,16511,71,1,f +9021,18575,19,15,f +9021,18651,0,25,f +9021,18654,72,1,t +9021,18654,72,4,f +9021,18938,0,1,f +9021,18939,71,1,f +9021,18940,4,3,f +9021,18942,72,3,f +9021,18943,0,2,f +9021,18946,4,9,f +9021,18947,72,2,f +9021,18948,15,2,f +9021,19475,14,1,f +9021,19476,14,1,f +9021,19478,14,2,f +9021,19482,1,1,f +9021,2412b,0,2,f +9021,2431,72,4,f +9021,2431,15,2,f +9021,2431pr0028,72,1,f +9021,2654,47,2,f +9021,2654,182,2,f +9021,2736,71,3,f +9021,2741,0,1,f +9021,2780,0,451,f +9021,2780,0,14,t +9021,2817,0,6,f +9021,2850b,71,6,f +9021,2851,14,6,f +9021,2852,71,6,f +9021,2853,14,2,f +9021,2854,19,5,f +9021,298c02,0,1,f +9021,298c02,0,1,t +9021,3021,14,2,f +9021,3023,182,2,f +9021,3068b,0,2,f +9021,3069b,72,4,f +9021,32000,0,4,f +9021,32002,19,12,f +9021,32002,19,2,t +9021,32005b,0,3,f +9021,32009,72,4,f +9021,32013,15,2,f +9021,32013,0,20,f +9021,32014,0,2,f +9021,32016,0,2,f +9021,32017,71,2,f +9021,32019,0,12,f +9021,32034,0,4,f +9021,32034,15,2,f +9021,32034,71,11,f +9021,32039,71,3,f +9021,32054,0,2,f +9021,32054,71,36,f +9021,32054,4,34,f +9021,32056,0,6,f +9021,32062,4,56,f +9021,32063,0,2,f +9021,32063,14,8,f +9021,32073,71,28,f +9021,32123b,71,23,f +9021,32123b,71,5,t +9021,32140,71,38,f +9021,32140,4,7,f +9021,32140,15,3,f +9021,32140,72,2,f +9021,32184,15,2,f +9021,32184,71,20,f +9021,32198,19,1,f +9021,32249,72,8,f +9021,32250,72,2,f +9021,32270,0,16,f +9021,32271,72,4,f +9021,32278,71,24,f +9021,32278,72,2,f +9021,32278,4,4,f +9021,32291,0,9,f +9021,32293,0,1,f +9021,32316,15,2,f +9021,32316,1,4,f +9021,32316,72,4,f +9021,32316,0,23,f +9021,32316,71,10,f +9021,32348,1,4,f +9021,32348,72,2,f +9021,32348,4,6,f +9021,32449,15,8,f +9021,32449,4,4,f +9021,32449,0,26,f +9021,32494,71,1,f +9021,32523,71,3,f +9021,32523,1,8,f +9021,32523,0,34,f +9021,32523,4,9,f +9021,32523,15,6,f +9021,32524,4,6,f +9021,32524,15,13,f +9021,32524,0,10,f +9021,32524,71,18,f +9021,32524,72,8,f +9021,32525,4,2,f +9021,32525,71,14,f +9021,32525,72,11,f +9021,32525,15,3,f +9021,32526,1,1,f +9021,32526,0,7,f +9021,32526,15,4,f +9021,32526,72,33,f +9021,32556,19,10,f +9021,33299a,0,11,f +9021,3648b,72,1,f +9021,3673,71,6,f +9021,3673,71,2,t +9021,3701,0,2,f +9021,3705,0,16,f +9021,3706,0,5,f +9021,3707,0,3,f +9021,3708,0,5,f +9021,3713,71,5,t +9021,3713,71,45,f +9021,3737,0,2,f +9021,3749,19,6,f +9021,3941,0,5,f +9021,3941,182,2,f +9021,3957b,71,2,f +9021,4032a,0,4,f +9021,4032a,71,2,f +9021,40490,4,8,f +9021,40490,0,20,f +9021,41239,72,4,f +9021,41239,0,26,f +9021,41669,4,2,f +9021,41677,71,30,f +9021,41678,72,25,f +9021,4185,72,4,f +9021,42003,72,33,f +9021,4274,71,6,t +9021,4274,1,1,t +9021,4274,71,30,f +9021,4274,1,2,f +9021,43093,1,137,f +9021,43857,0,2,f +9021,43857,14,15,f +9021,44294,71,18,f +9021,4519,71,65,f +9021,45590,0,4,f +9021,4697b,71,3,f +9021,4716,71,2,f +9021,47223b,72,4,f +9021,48989,71,5,f +9021,50950,14,4,f +9021,5102c03,1,2,f +9021,5102c06,1,4,f +9021,5102c08,71,1,f +9021,5102c09,0,1,f +9021,5102c10,1,1,f +9021,5102c19,71,1,f +9021,5102c27,0,4,f +9021,5102c27,71,5,f +9021,5102c28,1,1,f +9021,5102c30,71,2,f +9021,5102c30,0,4,f +9021,5102c37,0,1,f +9021,5102c37,71,1,f +9021,55013,72,3,f +9021,55615,71,6,f +9021,59426,72,5,f +9021,59443,71,38,f +9021,59443,0,2,f +9021,60483,71,1,f +9021,60483,72,57,f +9021,60484,14,1,f +9021,60484,71,1,f +9021,60484,0,11,f +9021,60485,71,5,f +9021,61184,71,30,f +9021,6141,71,6,f +9021,6141,71,3,t +9021,61903,71,3,f +9021,61904,72,1,f +9021,61927b,71,1,f +9021,62462,0,5,f +9021,62462,14,4,f +9021,62531,71,7,f +9021,62821,72,2,f +9021,63864,72,3,f +9021,63869,0,40,f +9021,64179,71,2,f +9021,64391,15,1,f +9021,64683,15,1,f +9021,64782,71,13,f +9021,64782,15,1,f +9021,6536,15,2,f +9021,6536,71,47,f +9021,6536,4,6,f +9021,6541,15,1,f +9021,6553,72,7,f +9021,6558,1,234,f +9021,6587,28,12,f +9021,6589,19,11,f +9021,6628,0,21,f +9021,6629,4,2,f +9021,6629,0,12,f +9021,6632,72,44,f +9021,6632,0,2,f +9021,6641,4,2,f +9021,75902pr0006,0,1,f +9021,76138,71,4,f +9021,76244,15,1,f +9021,76537,14,4,f +9021,86652,71,12,f +9021,87079,0,2,f +9021,87079,4,4,f +9021,87082,71,23,f +9021,87083,72,43,f +9021,87407,71,1,f +9021,87408,0,3,f +9021,87618,0,1,f +9021,88072,14,2,f +9021,92280,71,1,f +9021,92906,72,1,f +9021,92907,0,8,f +9021,94925,71,8,f +9021,98138,182,1,t +9021,98138,47,8,f +9021,98138,36,1,t +9021,98138,47,1,t +9021,98138,36,2,f +9021,98138,71,1,f +9021,98138,182,4,f +9021,98138,71,1,t +9021,99008,19,3,f +9021,99009,71,1,f +9021,99010,0,1,f +9021,99021,72,13,f +9021,99499,71,1,f +9021,99773,0,4,f +9025,3001a,14,4,f +9025,3001a,0,2,f +9025,3002a,14,4,f +9025,3003,14,4,f +9025,3004,47,16,f +9025,3004,14,14,f +9025,3005,14,8,f +9025,3005,0,4,f +9025,3006,0,2,f +9025,3009,14,7,f +9025,3009,0,2,f +9025,3009p01,14,1,f +9025,3010,14,8,f +9025,3010,0,6,f +9025,3010ap04,14,2,f +9025,3020,14,6,f +9025,3021,14,4,f +9025,3021,0,7,f +9025,3022,4,2,f +9025,3022,14,2,f +9025,3022,0,11,f +9025,3023,0,6,f +9025,3023,4,6,f +9025,3023,14,8,f +9025,3024,14,4,f +9025,3024,4,2,f +9025,3032,0,1,f +9025,3034,0,2,f +9025,3036,0,2,f +9025,3037,47,2,f +9025,3039,14,4,f +9025,3039,47,2,f +9025,3040a,14,2,f +9025,3062a,0,2,f +9025,3087c,4,4,f +9025,3460,4,2,f +9025,3581,14,4,f +9025,3582,0,4,f +9025,3633,0,2,f +9025,3660,14,4,f +9025,3665,14,4,f +9025,3710,4,4,f +9025,429c01,0,2,f +9025,458,0,8,f +9025,7049b,0,2,f +9025,wheel2a,0,8,f +9025,x555c01,0,1,f +9025,x946,0,2,f +9028,32073,0,1,f +9028,32174,0,6,f +9028,32556,7,1,f +9028,3706,0,2,f +9028,41660,15,2,f +9028,41665,15,2,f +9028,41666,7,2,f +9028,41667,7,1,f +9028,41668,15,2,f +9028,41669,41,2,f +9028,41670,7,4,f +9028,41671pat0002,15,1,f +9028,41672,0,2,f +9028,41752,8,1,f +9028,42042,7,1,f +9028,42042und,73,1,f +9028,42074,15,2,f +9028,4519,0,5,f +9028,6628,0,2,f +9028,85544,10,1,f +9030,122c01,0,2,f +9030,3004,14,2,f +9030,3004,1,8,f +9030,3004,0,1,f +9030,3005,14,2,f +9030,3005,1,17,f +9030,3005,0,4,f +9030,3008,0,1,f +9030,3009,1,7,f +9030,3009,0,1,f +9030,3010,0,2,f +9030,3020,14,2,f +9030,3022,0,1,f +9030,3023,0,1,f +9030,3023,4,1,f +9030,3023,14,4,f +9030,3024,36,2,f +9030,3024,46,4,f +9030,3024,14,2,f +9030,3028,0,1,f +9030,3030,0,2,f +9030,3033,0,1,f +9030,3034,0,2,f +9030,3135c02,4,1,f +9030,3460,14,2,f +9030,3460,1,4,f +9030,3470,2,1,f +9030,3622,1,7,f +9030,3623,1,2,f +9030,3624,0,1,f +9030,3626apr0001,14,1,f +9030,3665,1,5,f +9030,3710,14,4,f +9030,3710,1,6,f +9030,3710,4,1,f +9030,3821,14,1,f +9030,3822,14,1,f +9030,3823,47,1,f +9030,3829c01,14,1,f +9030,3839a,7,1,f +9030,3853,14,1,f +9030,3854,14,2,f +9030,3861b,14,1,f +9030,3865,7,2,f +9030,3937,1,1,f +9030,3938,1,1,f +9030,3957a,7,1,f +9030,3959,7,1,f +9030,3962a,0,1,f +9030,4006,0,2,f +9030,4070,14,2,f +9030,4079,1,1,f +9030,4079,14,1,f +9030,4081a,7,2,f +9030,4083,4,1,f +9030,4084,0,4,f +9030,4085a,0,4,f +9030,970c00,4,1,f +9030,973p13c01,4,1,f +9031,2412b,0,1,f +9031,2413,0,1,f +9031,2555,1,1,f +9031,30031,0,1,f +9031,30089,0,1,f +9031,30162,0,1,f +9031,30193,8,1,f +9031,3024,36,2,f +9031,30284,14,2,f +9031,30287p01,2,1,f +9031,30322,1,1,f +9031,30323,14,1,f +9031,3626bp7b,14,1,f +9031,3660,25,2,f +9031,3666,0,2,f +9031,3710,25,1,f +9031,3710,0,1,f +9031,3794a,0,1,f +9031,3832,1,1,f +9031,3962b,8,1,f +9031,4081b,15,2,f +9031,4085c,0,2,f +9031,4286,0,2,f +9031,4345b,1,1,f +9031,4346,1,1,f +9031,6120,7,2,f +9031,6141,7,2,f +9031,6141,46,2,f +9031,6153apx2,25,1,f +9031,6564,25,1,f +9031,6565,25,1,f +9031,970x026,2,1,f +9031,973p7bc01,2,1,f +9032,3004,2,2,f +9032,3020,4,1,f +9032,3020,2,2,f +9032,3020,0,2,f +9032,3034,0,1,f +9032,3039,42,1,f +9032,3039,2,1,f +9032,3641,0,4,f +9032,3710,2,1,f +9032,4600,7,2,f +9032,4624,14,4,f +9035,10199,10,1,f +9035,2300,10,1,f +9035,2300,1,1,f +9035,2300,14,1,f +9035,2300,4,1,f +9035,2301,1,2,f +9035,2301,10,2,f +9035,2301,4,2,f +9035,2301,14,2,f +9035,2302,10,4,f +9035,2302,4,6,f +9035,2302,14,6,f +9035,2302,1,4,f +9035,3011,10,9,f +9035,3011,14,13,f +9035,3011,1,11,f +9035,3011,4,9,f +9035,3437,14,22,f +9035,3437,10,24,f +9035,3437,1,24,f +9035,3437,4,22,f +9035,3437pe1,10,2,f +9035,3437pe1,4,3,f +9035,3437pe1,14,2,f +9035,3664,4,2,f +9035,4196,14,1,f +9035,4199,10,1,f +9035,4199,4,1,f +9035,47510pr0002,212,2,f +9035,47511pr0002c01,1,2,f +9035,61649,4,8,f +9035,6352,1,2,f +9035,6394,14,2,f +9035,6448,14,1,f +9035,90265,15,8,f +9036,3001,29,1,f +9037,3039,0,100,f +9038,3626bpr0880,14,1,f +9038,3878pr0001,2,1,f +9038,41879a,2,1,f +9038,6141,297,3,f +9038,88646,0,1,f +9038,973pr1951ac01,2,1,f +9038,98374,70,1,f +9039,3001,14,1,f +9039,30162,72,1,f +9039,3020,1,1,f +9039,30228,72,1,f +9039,3069bpr0100,2,2,f +9039,3624,15,1,f +9039,3626bpr0386,14,1,f +9039,3626bpr0411,14,1,f +9039,3626bpr0645,14,1,f +9039,3795,4,1,f +9039,3833,4,1,f +9039,3837,72,1,f +9039,3962b,0,1,f +9039,61482,71,1,f +9039,970c00,25,1,f +9039,970c00,0,1,f +9039,973pr1182c01,25,1,f +9039,973pr1188c01,0,1,f +9042,2420,71,4,f +9042,2420,27,4,f +9042,2431,27,7,f +9042,2431,71,1,f +9042,3008,71,1,f +9042,30136,71,10,f +9042,3022,2,1,f +9042,3023,27,2,f +9042,3024,0,2,f +9042,3035,71,1,f +9042,30374,0,1,f +9042,3040b,71,2,f +9042,3068b,19,2,f +9042,3068bpr0142,15,1,f +9042,3068bpr0143,15,1,f +9042,3068bpr0144,15,1,f +9042,3068bpr0145,15,1,f +9042,3069b,0,2,f +9042,3069b,27,4,f +9042,3069b,71,12,f +9042,3623,2,2,f +9042,3666,71,1,f +9042,37,297,1,f +9042,37,297,1,t +9042,3710,71,1,f +9042,3942c,0,1,f +9042,4032a,72,1,f +9042,4589,297,1,f +9042,4589,320,12,f +9042,4589,71,8,f +9042,4733,0,2,f +9042,53451,4,2,f +9042,53451,4,1,t +9042,54200,0,1,f +9042,54200,0,1,t +9042,54200,71,8,f +9042,54200,71,1,t +9042,6019,0,2,f +9042,6141,297,1,t +9042,6141,71,1,t +9042,6141,297,12,f +9042,6141,71,32,f +9042,6141,72,10,f +9042,6141,72,1,t +9042,64776pat0001,0,1,f +9042,85863pr0079,15,1,f +9042,85863pr0080,14,1,f +9042,85863pr0081,4,1,f +9042,85863pr0082,1,1,f +9042,87580,320,1,f +9042,91405,2,1,f +9042,92585,4,1,f +9044,3021,7,30,f +9044,728,7,1,f +9044,729,47,1,f +9045,2339,15,1,f +9045,2357,15,2,f +9045,2397,14,1,f +9045,2420,15,1,f +9045,2435,2,1,f +9045,2444,0,2,f +9045,2486,15,3,f +9045,2486,4,1,f +9045,2488,0,1,f +9045,2815,0,2,f +9045,3003,14,3,f +9045,3004,6,1,f +9045,3004,15,17,f +9045,3005,15,16,f +9045,3008,15,2,f +9045,3009,15,4,f +9045,3010,15,4,f +9045,3023,15,3,f +9045,3023,0,1,f +9045,3023,4,1,f +9045,3024,14,2,f +9045,3024,15,5,f +9045,3034,4,1,f +9045,3035,4,1,f +9045,3069b,6,1,f +9045,3307,15,1,f +9045,3460,15,2,f +9045,3460,4,1,f +9045,3581,15,2,f +9045,3622,15,9,f +9045,3623,15,3,f +9045,3626apr0001,14,1,f +9045,3644,1,2,f +9045,3710,14,1,f +9045,3710,15,3,f +9045,3741,2,1,f +9045,3742,14,1,t +9045,3742,14,3,f +9045,3749,7,2,f +9045,3833,0,1,f +9045,3836,6,1,f +9045,3837,8,1,f +9045,3853,1,1,f +9045,3854,4,2,f +9045,3867,7,1,f +9045,3867,2,1,f +9045,3941,7,1,f +9045,4081b,0,2,f +9045,4085b,7,2,f +9045,4185,47,2,f +9045,4445,4,7,f +9045,4491a,0,1,f +9045,4493c01pb01,6,1,f +9045,4623,7,1,f +9045,4626,7,1,f +9045,4740,7,1,f +9045,6141,0,1,f +9045,6141,46,4,f +9045,6141,0,1,t +9045,970c00,1,1,f +9045,973c02,4,1,f +9047,10197,72,1,f +9047,18651,0,2,f +9047,19049,179,1,f +9047,22961,71,1,f +9047,24122,148,1,f +9047,24187,41,1,f +9047,24189,148,1,f +9047,24190,0,1,f +9047,24191,179,1,f +9047,24193pr0006,179,1,f +9047,32015,0,1,f +9047,32039,0,3,f +9047,32062,0,6,f +9047,32072,0,1,f +9047,32270,0,2,f +9047,3673,71,1,f +9047,3707,0,1,f +9047,3749,19,2,f +9047,41677,1,4,f +9047,4274,1,2,f +9047,43093,1,2,f +9047,50923,72,2,f +9047,57585,71,1,f +9047,59443,0,2,f +9047,61409,1,1,f +9047,62462,179,2,f +9047,64272,25,2,f +9047,6536,0,1,f +9047,6558,1,1,f +9047,6587,28,1,f +9047,74261,0,4,f +9047,87083,72,1,f +9047,90609,41,4,f +9047,90616,0,2,f +9047,90617,72,2,f +9047,90661,179,2,f +9047,92338,179,1,f +9047,93571,0,1,f +9047,93575,179,2,f +9047,98138,33,1,f +9047,98141,179,3,f +9048,2419,1,4,f +9048,30136,70,4,f +9048,3022,1,1,f +9048,30256,15,1,f +9048,3062b,71,4,f +9048,3068b,14,1,f +9048,3068b,25,1,f +9048,3068b,272,1,f +9048,3068b,4,1,f +9048,3068b,70,1,f +9048,3068bpr0390,15,1,f +9048,3070b,15,1,f +9048,3070b,29,1,f +9048,3070b,2,1,t +9048,3070b,15,1,t +9048,3070b,2,1,f +9048,3070b,73,1,t +9048,3070b,29,1,t +9048,3070b,73,1,f +9048,33121,25,1,f +9048,3794b,1,4,f +9048,3957b,15,9,f +9048,3960,272,5,f +9048,3960pr20,15,1,f +9048,43898,4,4,f +9048,43898,14,4,f +9048,4740,15,5,f +9048,54200,70,1,t +9048,54200,70,4,f +9048,6141,4,4,f +9048,6141,47,4,f +9048,6141,25,4,f +9048,6141,4,2,t +9048,6141,47,1,t +9048,6141,25,1,t +9048,64644,308,4,f +9048,64776pat0001,0,1,f +9048,89523,19,1,f +9048,92585,4,1,f +9049,32034,0,1,f +9049,32062,0,1,f +9049,32073,0,1,f +9049,32174,4,2,f +9049,32174,0,4,f +9049,32269,7,1,f +9049,32270,7,3,f +9049,32270,7,1,t +9049,32474,0,1,f +9049,32475,4,2,f +9049,32482,25,2,f +9049,32489,4,1,f +9049,32553,7,1,f +9049,32554,45,1,f +9049,3706,0,1,f +9049,3713,7,2,f +9049,43093,0,1,f +9049,43557,25,2,f +9049,43558,179,1,f +9049,43559,179,2,f +9049,43853,4,1,f +9049,44035,179,2,f +9049,4519,0,3,f +9049,4519,0,1,t +9050,2339,272,8,f +9050,2420,72,4,f +9050,2460,72,2,f +9050,2476a,71,8,f +9050,2736,71,1,f +9050,2736,71,1,t +9050,3001,72,2,f +9050,3004,72,4,f +9050,3004,272,8,f +9050,3010,72,4,f +9050,30104,72,4,f +9050,3023,72,8,f +9050,3030,0,2,f +9050,3033,0,4,f +9050,3034,0,6,f +9050,3035,0,2,f +9050,3040b,272,8,f +9050,3062b,72,4,f +9050,3068b,72,2,f +9050,3069b,71,4,f +9050,32000,0,8,f +9050,32002,72,4,f +9050,32013,0,3,f +9050,32015,71,1,f +9050,32039,0,3,f +9050,32062,4,1,t +9050,32062,4,5,f +9050,32174,0,1,f +9050,32184,0,2,f +9050,32192,0,2,f +9050,32199,72,3,f +9050,32316,0,1,f +9050,3245b,272,8,f +9050,32556,71,1,f +9050,3307,272,4,f +9050,3308,272,4,f +9050,3456,0,2,f +9050,3660,72,4,f +9050,3666,0,4,f +9050,3700,72,2,f +9050,3705,0,1,f +9050,3708,0,8,f +9050,3713,71,8,f +9050,3713,71,1,t +9050,3737,0,2,f +9050,3738,0,2,f +9050,3794a,272,4,f +9050,3795,0,2,f +9050,3894,72,10,f +9050,40490,0,2,f +9050,41677,71,4,f +9050,41678,0,1,f +9050,43093,1,4,f +9050,43857,0,1,f +9050,44294,71,2,f +9050,4460a,272,32,f +9050,4519,71,5,f +9050,45274,179,2,f +9050,48253,179,2,f +9050,48729a,72,16,f +9050,50923,72,1,f +9050,53550,179,3,f +9050,53582,179,2,f +9050,53588pat01,8,2,f +9050,53596pr01,148,1,f +9050,53989,0,2,f +9050,53989,272,4,f +9050,53989,15,2,f +9050,53989,288,2,f +9050,53989,320,2,f +9050,53989,70,2,f +9050,53989,191,2,f +9050,54271,179,3,f +9050,54272,179,2,f +9050,54274pr01,15,1,f +9050,54275,297,1,f +9050,54275,179,2,f +9050,54275,148,4,f +9050,54275,0,1,f +9050,54276,191,1,f +9050,54276,320,1,f +9050,54276,272,2,f +9050,54276,288,1,f +9050,54276,15,1,f +9050,54276,70,1,f +9050,54276,0,1,f +9050,54821,42,4,f +9050,54821,143,6,f +9050,55236,70,1,f +9050,55236,288,1,f +9050,55236,272,1,f +9050,55236,320,1,f +9050,55237a,179,1,f +9050,55237b,179,1,f +9050,55237c,179,1,f +9050,55237d,179,1,f +9050,55237e,179,1,f +9050,55237f,179,1,f +9050,55237g,179,1,f +9050,55237h,179,1,f +9050,55237i,179,1,f +9050,55237j,179,1,f +9050,55237k,179,1,f +9050,55237l,179,1,f +9050,56653,320,1,f +9050,56654,272,1,f +9050,56655,272,1,f +9050,56656,0,1,f +9050,56657,288,1,f +9050,56659,70,1,f +9050,59426,72,3,f +9050,6075,135,4,f +9050,6111,272,4,f +9050,6126a,57,1,t +9050,6126a,57,4,f +9050,6141,72,5,f +9050,6141,72,1,t +9050,6538b,0,1,t +9050,6538b,0,9,f +9050,6553,71,4,f +9050,6558,0,4,f +9050,6587,72,2,f +9050,6632,0,2,f +9051,2780,0,6,f +9051,32062,4,3,f +9051,41669,42,2,f +9051,47306,0,1,f +9051,47328,272,1,f +9051,50923,72,4,f +9051,57543,135,1,f +9051,57563,135,5,f +9051,57565,0,2,f +9051,60176,0,3,f +9051,60484,72,1,f +9051,61053,0,2,f +9051,6575,0,2,f +9052,2431,4,1,f +9052,2436,15,2,f +9052,3022,25,1,f +9052,3023,14,3,f +9052,3023,4,2,f +9052,3034,4,1,f +9052,3710,71,2,f +9052,3794b,0,4,f +9052,3795,1,1,f +9052,3942c,25,1,f +9052,48336,4,1,f +9052,50951,0,4,f +9052,60470a,0,1,f +9052,6157,0,2,f +9052,87079pr0017,4,1,f +9052,87079pr0018,4,1,f +9052,93587pr0004,4,1,f +9052,93590,4,1,f +9052,93591pr0002,4,1,f +9052,93593,4,4,f +9053,58118,72,1,f +9053,61930,0,1,f +9053,87576,71,1,f +9053,87577,71,1,f +9053,87578,72,1,f +9053,89509,15,6,f +9053,89668,72,1,f +9054,2340,0,1,f +9054,2419,0,1,f +9054,2452,0,2,f +9054,2717,14,1,f +9054,2730,0,4,f +9054,2780,0,10,f +9054,2952,0,4,f +9054,3023,14,2,f +9054,3068b,0,1,f +9054,32001,0,1,f +9054,32002,8,6,f +9054,32013,7,5,f +9054,32014,7,3,f +9054,32015,7,6,f +9054,32016,7,2,f +9054,32017,0,2,f +9054,32017,7,2,f +9054,32039,7,2,f +9054,32062,0,9,f +9054,3482,14,3,f +9054,3483,0,3,f +9054,3648a,7,1,f +9054,3700,0,2,f +9054,3702,0,4,f +9054,3705,0,5,f +9054,3706,0,1,f +9054,3707,0,1,f +9054,3708,0,2,f +9054,3709,0,1,f +9054,3710,14,1,f +9054,3710,0,2,f +9054,3713,7,2,f +9054,3749,7,3,f +9054,3794a,0,2,f +9054,3942c,0,1,f +9054,4032a,14,1,f +9054,4265b,7,10,f +9054,4276b,0,2,f +9054,4519,0,6,f +9054,4589,14,2,f +9054,4716,7,1,f +9054,6141,46,2,f +9054,6536,7,2,f +9054,6538b,7,1,f +9054,6558,0,4,f +9054,6588,0,1,f +9054,6629,7,2,f +9054,6632,0,2,f +9054,75535,0,1,f +9054,75c12,8,2,f +9054,tech026,9999,1,f +9055,2335,15,2,f +9055,2412b,72,6,f +9055,2431,25,3,f +9055,2431,27,4,f +9055,2445,71,1,f +9055,2540,15,3,f +9055,2634c02,15,1,f +9055,2654,47,2,f +9055,2654,72,2,f +9055,2780,0,2,t +9055,2780,0,12,f +9055,2817,4,2,f +9055,298c02,15,2,t +9055,298c02,15,4,f +9055,3001,0,16,f +9055,3002,27,10,f +9055,3003,27,4,f +9055,3004,27,13,f +9055,3004,72,2,f +9055,30088,72,1,f +9055,3009,71,1,f +9055,3010,27,2,f +9055,30153,42,2,f +9055,30153,33,2,f +9055,30170,72,1,t +9055,30170,72,2,f +9055,3020,25,2,f +9055,3020,0,2,f +9055,3021,71,12,f +9055,3022,15,3,f +9055,3022,71,2,f +9055,3023,72,1,f +9055,3023,27,13,f +9055,3024,36,2,f +9055,3028,72,2,f +9055,30294pat0001,72,2,f +9055,30300,25,1,f +9055,3031,27,1,f +9055,30325,1,2,f +9055,3034,71,3,f +9055,3035,72,2,f +9055,3036,72,1,f +9055,30360,71,2,f +9055,30367b,72,2,f +9055,30367b,0,2,f +9055,30385,182,2,f +9055,30385,33,3,f +9055,30385,36,3,f +9055,30388,71,1,f +9055,3039,72,2,f +9055,3040b,72,4,f +9055,3044b,72,1,f +9055,3045,71,2,f +9055,30552,0,1,f +9055,30565,27,2,f +9055,30663,0,1,f +9055,3068b,72,1,f +9055,32009,27,2,f +9055,32016,71,1,f +9055,32018,0,4,f +9055,32062,4,2,f +9055,32064b,71,2,f +9055,32073,71,6,f +9055,32123b,14,1,t +9055,32123b,14,6,f +9055,32348,25,6,f +9055,32523,27,2,f +9055,32526,72,2,f +9055,32556,19,1,f +9055,3297,72,2,f +9055,33085,14,1,f +9055,33243,27,2,f +9055,3460,72,1,f +9055,3623,71,1,f +9055,3626bpr0561,14,1,f +9055,3626bpr0562,14,1,f +9055,3633,72,2,f +9055,3648b,72,3,f +9055,3660,27,4,f +9055,3666,27,2,f +9055,3684,27,1,f +9055,3701,0,4,f +9055,3702,0,1,f +9055,3707,0,1,f +9055,3708,0,2,f +9055,3710,27,7,f +9055,3713,71,9,f +9055,3713,71,2,t +9055,3747b,72,8,f +9055,3749,19,1,f +9055,3794b,15,1,f +9055,3795,15,1,f +9055,3837,72,1,f +9055,3941,71,1,f +9055,4032a,0,2,f +9055,4085c,15,2,f +9055,40902,71,1,f +9055,4150,27,1,f +9055,4162,0,2,f +9055,41669,25,24,f +9055,4185,27,8,f +9055,4274,71,1,t +9055,4274,71,1,f +9055,43093,1,6,f +9055,44126,27,2,f +9055,44294,71,1,f +9055,44728,71,4,f +9055,4515,71,1,f +9055,4589,36,1,f +9055,4589,25,1,f +9055,4599a,71,6,f +9055,4623,0,2,f +9055,47455,72,1,f +9055,48169,72,1,f +9055,48171,72,1,f +9055,50859b,0,1,f +9055,50860,25,1,f +9055,50861,0,2,f +9055,50862,71,2,f +9055,52031,27,2,f +9055,53992,0,2,f +9055,54200,182,1,t +9055,54200,71,1,t +9055,54200,182,4,f +9055,54200,71,8,f +9055,56145,0,6,f +9055,57585,71,1,f +9055,59426,72,5,f +9055,59443,71,2,f +9055,60169,72,1,f +9055,6020,0,1,f +9055,60470a,0,4,f +9055,60474,72,1,f +9055,60475a,15,2,f +9055,60477,72,2,f +9055,60478,71,4,f +9055,60592,15,1,f +9055,60601,40,1,f +9055,6087,0,2,f +9055,6091,27,6,f +9055,6112,72,2,f +9055,61409,72,4,f +9055,61409,27,8,f +9055,6141,0,4,f +9055,6141,47,2,t +9055,6141,47,6,f +9055,6141,0,1,t +9055,61485,0,1,f +9055,61678,27,6,f +9055,61780,72,2,f +9055,62462,25,1,f +9055,62462,0,2,f +9055,62698,0,1,f +9055,63868,0,4,f +9055,64450,0,1,f +9055,64644,0,2,f +9055,64711,25,2,f +9055,64713,71,1,f +9055,64728,4,2,f +9055,64783,72,4,f +9055,64784pat01,36,1,f +9055,64784pat01,33,1,f +9055,64785,72,2,f +9055,6536,27,2,f +9055,6558,1,2,f +9055,6587,72,13,f +9055,6629,0,2,f +9055,6636,72,1,f +9055,8961stk01,9999,1,t +9055,970c00pr0122,1,2,f +9055,973pr1433c01,71,1,f +9055,973pr1434c01,15,1,f +9056,3626bpr0728,14,1,f +9056,87990,484,1,f +9056,88646,0,1,f +9056,93216,15,1,f +9056,970c00pr0181,15,1,f +9056,973pr1698c01,15,1,f +9057,3940b,0,4,f +9057,3956,15,4,f +9058,3068b,27,1,f +9058,3899,5,1,f +9058,3941,27,1,f +9058,4032a,14,1,f +9058,4589,14,4,f +9058,60474,15,1,f +9062,2348b,41,1,f +9062,2349a,4,1,f +9062,2412b,15,1,f +9062,298c02,15,1,t +9062,298c02,15,1,f +9062,3020,4,1,f +9062,3021,0,1,f +9062,3021,15,1,f +9062,3022,0,1,f +9062,3022,15,1,f +9062,3023,15,2,f +9062,3024,4,2,f +9062,3024,33,2,f +9062,3024,46,2,f +9062,3062b,15,1,f +9062,3068bp57,4,1,f +9062,3069b,15,2,f +9062,3070b,4,1,t +9062,3070b,36,1,t +9062,3070b,36,2,f +9062,3070b,4,2,f +9062,3623,4,2,f +9062,3626apr0001,14,1,f +9062,3710,4,4,f +9062,3710,15,1,f +9062,3788,4,2,f +9062,3821,4,1,f +9062,3822,4,1,f +9062,3823,41,1,f +9062,3829c01,4,1,f +9062,3834,15,1,f +9062,3835,7,1,f +9062,3838,15,1,f +9062,4070,4,4,f +9062,4081b,7,2,f +9062,4084,0,4,f +9062,4212b,15,1,f +9062,4213,4,1,f +9062,4315,4,2,f +9062,4599a,15,1,f +9062,4600,0,2,f +9062,4624,15,4,f +9062,4862,41,4,f +9062,4863,4,2,f +9062,4865a,4,1,f +9062,6141,7,2,f +9062,970c00,0,1,f +9062,973p21c01,0,1,f +9063,32002,72,1,f +9063,32013,0,1,f +9063,32054,0,1,f +9063,32174,288,1,f +9063,32175,0,2,f +9063,32316,0,1,f +9063,32524,0,1,f +9063,3673,71,1,f +9063,3705,0,1,f +9063,3713,71,1,f +9063,43093,1,1,f +9063,44807,0,1,f +9063,47296,288,2,f +9063,47300,72,2,f +9063,50899,179,1,f +9063,50900,0,1,f +9063,50901,72,1,f +9063,50903,14,1,f +9063,50919,135,1,f +9063,50923,72,2,f +9063,6558,0,2,f +9064,73090a,4,4,f +9065,15207,71,3,f +9065,2420,320,60,f +9065,2420,71,6,f +9065,2431,71,18,f +9065,2431,320,5,f +9065,2445,0,3,f +9065,2445,72,2,f +9065,3002,71,1,f +9065,3004,71,7,f +9065,3004,320,11,f +9065,3005,320,10,f +9065,3005,0,4,f +9065,3009,320,4,f +9065,3009,71,4,f +9065,3010,15,2,f +9065,3020,320,7,f +9065,3020,0,1,f +9065,3020,71,20,f +9065,3021,19,1,f +9065,3021,320,6,f +9065,3021,71,5,f +9065,3022,71,3,f +9065,3023,47,5,f +9065,3023,15,4,f +9065,3023,320,771,f +9065,3023,71,18,f +9065,3024,320,268,f +9065,3024,71,33,f +9065,3024,47,245,f +9065,3024,0,11,f +9065,3030,71,5,f +9065,3031,71,2,f +9065,3032,0,2,f +9065,3032,19,2,f +9065,3032,71,2,f +9065,3033,288,7,f +9065,3033,72,10,f +9065,3034,72,6,f +9065,3034,19,2,f +9065,3034,0,2,f +9065,3035,288,1,f +9065,3035,0,4,f +9065,3039,47,6,f +9065,3039,320,2,f +9065,3040b,320,4,f +9065,3068b,320,32,f +9065,3068b,71,3,f +9065,3068b,0,63,f +9065,3069b,320,13,f +9065,3069b,0,4,f +9065,3069b,71,6,f +9065,3070b,71,235,f +9065,3070b,71,5,t +9065,3070b,320,2,f +9065,3070b,320,1,t +9065,3298,320,33,f +9065,3460,0,10,f +9065,3460,72,1,f +9065,3460,71,13,f +9065,3622,0,3,f +9065,3622,71,2,f +9065,3623,15,1,f +9065,3623,19,3,f +9065,3623,71,12,f +9065,3623,320,12,f +9065,3666,320,3,f +9065,3666,0,2,f +9065,3666,71,6,f +9065,3666,19,1,f +9065,3675,320,12,f +9065,3710,71,28,f +9065,3794b,0,9,f +9065,3794b,320,12,f +9065,3794b,71,16,f +9065,3795,19,1,f +9065,3795,0,3,f +9065,3832,71,4,f +9065,3958,19,7,f +9065,3958,71,1,f +9065,4032a,71,3,f +9065,4070,71,12,f +9065,4162,320,2,f +9065,4162,0,15,f +9065,4162pr0011,71,1,f +9065,4282,0,17,f +9065,4286,320,5,f +9065,60479,0,2,f +9065,6112,15,1,f +9065,6141,71,1,t +9065,6141,71,3,f +9065,6231,71,2,f +9065,63864,71,16,f +9065,63864,0,12,f +9065,63864,320,3,f +9065,6636,320,9,f +9065,6636,71,13,f +9065,6636,19,2,f +9065,87087,320,6,f +9065,87580,71,2,f +9065,99301,320,2,f +9066,11303,272,1,f +9066,2432,71,1,f +9066,3022,71,1,f +9066,3023,15,4,f +9066,30374,71,1,f +9066,3069b,36,1,f +9066,3626cpr0889,14,1,f +9066,3710,15,1,f +9066,3795,1,1,f +9066,3829c01,1,1,f +9066,3962b,0,1,f +9066,4083,0,1,f +9066,41854,15,1,f +9066,4871,1,1,f +9066,6014b,71,4,f +9066,60212,15,1,f +9066,60897,1,2,f +9066,61252,15,4,f +9066,6141,46,2,f +9066,61482,71,1,f +9066,6157,71,2,f +9066,85984,1,1,f +9066,87697,0,4,f +9066,970c00,272,1,f +9066,973pr2501c01,1,1,f +9066,98138,33,2,f +9068,2412b,0,1,f +9068,2420,7,2,f +9068,2431,14,1,f +9068,2446,8,1,f +9068,2540,7,1,f +9068,2780,0,6,f +9068,2921,14,2,f +9068,298c02,7,2,f +9068,3001,0,1,f +9068,3004,0,2,f +9068,30090,33,1,f +9068,30091,8,1,f +9068,30162,8,1,f +9068,30191,14,1,f +9068,3020,14,1,f +9068,3022,14,1,f +9068,3023,14,2,f +9068,30236,7,2,f +9068,30237a,0,1,f +9068,30374,8,1,f +9068,30552,7,2,f +9068,30554a,8,6,f +9068,30602pb005,14,1,f +9068,30626,0,1,f +9068,30632,14,2,f +9068,32013,14,2,f +9068,32062,0,2,f +9068,32532,14,1,f +9068,3626bpb0056,14,1,f +9068,3673,7,2,f +9068,3794a,0,1,f +9068,41529,14,2,f +9068,41531,14,2,f +9068,41747,14,1,f +9068,41748,14,1,f +9068,41751pr2,40,1,f +9068,41764,0,1,f +9068,41765,0,1,f +9068,42021,14,1,f +9068,42022,0,2,f +9068,4229,0,1,f +9068,4360,7,1,f +9068,4530,320,1,f +9068,4589,36,1,f +9068,4623,0,1,f +9068,4735,0,4,f +9068,4735,0,1,t +9068,4740,15,2,f +9068,59275,0,2,f +9068,6019,0,6,f +9068,6019,14,2,f +9068,6041,0,2,f +9068,6141,42,4,f +9068,6141,42,2,t +9068,970c00pb032,272,1,f +9068,973pb0221c01,272,1,f +9069,777p06,15,1,f +9069,777p07,15,1,f +9069,777p11,15,1,f +9069,777p12,15,1,f +9069,777px8,15,1,f +9071,11816pr0001,84,1,f +9071,11816pr0003,78,1,f +9071,15207,4,2,f +9071,2343,47,2,f +9071,2412b,80,1,f +9071,2412b,320,2,f +9071,2431,4,3,f +9071,2453b,15,2,f +9071,2454a,15,1,f +9071,2654,19,1,f +9071,298c02,15,1,t +9071,298c02,15,1,f +9071,3001,15,4,f +9071,3002,27,2,f +9071,3003,15,1,f +9071,3004,15,6,f +9071,3005,29,4,f +9071,3005pr17,27,1,f +9071,3008,4,2,f +9071,3010,15,1,f +9071,3010,4,1,f +9071,3010,29,3,f +9071,30106,47,1,f +9071,3020,15,1,f +9071,3020,4,4,f +9071,3022,4,6,f +9071,3023,4,1,f +9071,30237b,4,1,f +9071,3031,15,2,f +9071,3034,15,1,f +9071,30350b,4,1,f +9071,3039pr62,71,1,f +9071,30414,15,1,f +9071,30562,47,2,f +9071,30565,15,2,f +9071,3061stk01,9999,1,f +9071,3062b,4,1,f +9071,3062b,14,1,f +9071,3069b,72,1,f +9071,3069b,15,1,f +9071,3069bpr0100,2,1,f +9071,3185,15,2,f +9071,32474,4,2,f +9071,33243,29,8,f +9071,33243,4,8,f +9071,3460,15,1,f +9071,3460,4,6,f +9071,3666,320,2,f +9071,3710,15,1,f +9071,3710,4,1,f +9071,3741,2,4,f +9071,3741,2,1,t +9071,3742,15,3,f +9071,3742,14,1,t +9071,3742,4,1,t +9071,3742,15,1,t +9071,3742,4,3,f +9071,3742,14,3,f +9071,3795,70,1,f +9071,3823,47,1,f +9071,3836,70,1,f +9071,3940b,4,1,f +9071,3941,15,5,f +9071,3941,27,1,f +9071,4032a,70,1,f +9071,4150,4,2,f +9071,4150,71,1,f +9071,4150,19,1,f +9071,4162,320,2,f +9071,4282,4,1,f +9071,4345b,15,1,f +9071,4346,47,1,f +9071,4460b,15,2,f +9071,4536,29,1,f +9071,4599b,4,1,f +9071,4599b,0,2,f +9071,4599b,14,1,f +9071,48092,4,2,f +9071,48336,15,1,f +9071,4865b,15,2,f +9071,52107,4,1,f +9071,54200,70,1,f +9071,54200,29,1,t +9071,54200,29,1,f +9071,54200,70,1,t +9071,54200,25,1,f +9071,54200,25,1,t +9071,59349,47,2,f +9071,59900,15,1,f +9071,59900,0,1,f +9071,60474,4,2,f +9071,60596,15,1,f +9071,60616a,47,1,f +9071,6141,29,1,t +9071,6141,41,1,t +9071,6141,47,1,t +9071,6141,0,4,f +9071,6141,14,2,f +9071,6141,70,4,f +9071,6141,1,1,t +9071,6141,70,2,t +9071,6141,80,1,t +9071,6141,27,1,t +9071,6141,41,6,f +9071,6141,0,1,t +9071,6141,47,2,f +9071,6141,80,4,f +9071,6141,27,2,f +9071,6141,45,9,f +9071,6141,14,1,t +9071,6141,45,1,t +9071,6141,29,2,f +9071,6141,1,1,f +9071,6180,15,2,f +9071,6191,29,3,f +9071,6231,15,2,f +9071,87079,71,1,f +9071,87087,15,2,f +9071,87552,15,5,f +9071,87580,15,1,f +9071,88293,4,2,f +9071,91405,212,1,f +9071,92258,226,1,f +9071,92410,15,1,f +9071,92438,212,2,f +9071,92456pr0007c01,84,1,f +9071,92456pr0008c01,78,1,f +9071,92593,15,2,f +9071,92818pr0006c01,323,1,f +9071,92820pr0004c01,29,1,f +9071,93352,308,1,f +9071,93568pat0001,84,1,f +9071,97781,14,3,f +9071,97782,14,3,f +9071,97783,14,3,f +9071,97784,14,3,f +9071,97785,14,1,f +9071,97787,14,1,f +9071,97790,14,1,f +9071,97791,14,1,f +9071,97793,14,1,f +9072,2376,0,1,f +9072,2460,0,1,f +9072,30033,0,1,f +9072,30170,72,1,f +9072,30170,72,1,t +9072,30171,70,1,f +9072,3022,0,2,f +9072,3024,14,2,f +9072,30602,71,1,f +9072,3069b,14,1,f +9072,3176,72,1,f +9072,3623,72,2,f +9072,3626bpr0632,78,1,f +9072,3710,14,1,f +9072,3710,71,1,f +9072,3794a,14,4,f +9072,3795,0,2,f +9072,4032a,72,1,f +9072,41769,14,1,f +9072,41770,14,1,f +9072,4274,71,1,t +9072,4274,71,2,f +9072,43722,71,1,f +9072,43723,71,1,f +9072,4589,14,3,f +9072,54200,40,1,t +9072,54200,40,1,f +9072,58247,0,1,f +9072,59900,71,2,f +9072,6019,71,2,f +9072,6141,80,1,f +9072,6141,80,1,t +9072,6179pr39,0,1,f +9072,62462,14,1,f +9072,62462,0,1,f +9072,63864,71,2,f +9072,63965,14,3,f +9072,6541,14,2,f +9072,6558,1,1,f +9072,90194,71,1,f +9072,970c00,4,1,f +9072,973pr1819c01,4,1,f +9072,98107pr0001,378,2,f +9073,12531,27,1,f +9073,13246,1,1,f +9073,3437,191,1,f +9073,3437,14,1,f +9073,57052,0,1,f +9073,58086,70,1,f +9073,64146,14,1,f +9073,75115a,4,1,f +9073,87703,4,1,f +9074,132a,0,4,f +9074,3001a,0,10,f +9074,3001a,1,12,f +9074,3001a,15,18,f +9074,3001a,4,18,f +9074,3001a,14,12,f +9074,3002a,14,2,f +9074,3002a,15,6,f +9074,3002a,4,8,f +9074,3003,14,4,f +9074,3003,1,10,f +9074,3003,0,8,f +9074,3003,4,8,f +9074,3003,15,6,f +9074,3004,15,6,f +9074,3004,14,10,f +9074,3004,4,12,f +9074,3004,0,6,f +9074,3004,1,2,f +9074,3005,14,8,f +9074,3006,4,1,f +9074,3007,4,2,f +9074,3007,14,1,f +9074,3007,15,2,f +9074,3010,47,2,f +9074,3010,4,2,f +9074,3010,15,2,f +9074,3010,14,2,f +9074,3032,0,1,f +9074,3035,4,1,f +9074,3081cc01,15,2,f +9074,3081cc01,4,4,f +9074,3297,4,8,f +9074,3298,4,8,f +9074,3299,4,1,f +9074,3300,4,1,f +9074,3579,14,1,f +9074,3579,4,1,f +9074,3579,15,1,f +9074,3581,15,2,f +9074,3581,4,2,f +9074,3582,1,2,f +9074,3582,14,2,f +9074,453cc01,4,1,f +9074,453cc01,15,1,f +9074,604c01,4,1,f +9074,700ed,2,1,f +9074,7039,4,4,f +9074,7049b,0,2,f +9074,7930,4,2,f +9074,7930,15,1,f +9075,851490,9999,1,f +9076,194c01,7,1,f +9076,2335pr02,15,2,f +9076,2346,0,8,f +9076,2431p00,14,1,f +9076,2436,15,1,f +9076,2508,7,1,f +9076,3001,4,2,f +9076,3002,4,2,f +9076,3002,15,1,f +9076,3003,14,1,f +9076,3003,15,5,f +9076,3003,4,4,f +9076,3004,15,11,f +9076,3004,4,3,f +9076,3005,15,9,f +9076,3005,4,6,f +9076,3008,4,5,f +9076,3009,4,4,f +9076,3010,14,2,f +9076,3010,4,5,f +9076,3020,14,1,f +9076,3020,4,2,f +9076,3020,0,3,f +9076,3021,7,1,f +9076,3022,7,1,f +9076,3022,47,1,f +9076,3022,0,3,f +9076,3023,47,3,f +9076,3023,0,2,f +9076,3023,14,1,f +9076,3023,4,5,f +9076,3024,46,2,f +9076,3024,7,4,f +9076,3024,14,4,f +9076,3024,0,4,f +9076,3024,4,6,f +9076,3024,15,2,f +9076,3027,7,1,f +9076,3031,7,2,f +9076,3031,4,2,f +9076,3032,0,1,f +9076,3032,15,1,f +9076,3034,7,1,f +9076,3034,4,1,f +9076,3034,14,2,f +9076,3034,15,1,f +9076,3034,0,1,f +9076,3035,15,1,f +9076,3035,0,1,f +9076,3036,4,1,f +9076,3038,14,2,f +9076,3039p32,15,2,f +9076,3040b,0,2,f +9076,3062b,7,14,f +9076,3062b,36,3,f +9076,3062b,34,2,f +9076,3062b,0,6,f +9076,3188,4,1,f +9076,3189,4,1,f +9076,3297,14,2,f +9076,3460,14,2,f +9076,3460,4,2,f +9076,3460,15,2,f +9076,3460,7,4,f +9076,3482,15,24,f +9076,3483,0,16,f +9076,3622,14,2,f +9076,3622,7,2,f +9076,3622p02,15,1,f +9076,3623,14,2,f +9076,3623,4,2,f +9076,3623,7,4,f +9076,3623,0,2,f +9076,3633,0,1,f +9076,3660,14,2,f +9076,3660,4,6,f +9076,3665,0,2,f +9076,3665,4,2,f +9076,3666,4,1,f +9076,3666,15,3,f +9076,3666,7,2,f +9076,3666,0,5,f +9076,3666,14,2,f +9076,3679,7,2,f +9076,3680,0,2,f +9076,3700,14,4,f +9076,3701,0,4,f +9076,3707,0,1,f +9076,3710,4,3,f +9076,3710,15,1,f +9076,3710,0,1,f +9076,3710,7,5,f +9076,3713,7,4,f +9076,3730,0,1,f +9076,3737,0,5,f +9076,3794a,0,4,f +9076,3795,15,1,f +9076,3795,0,2,f +9076,3795,14,2,f +9076,3795,7,2,f +9076,3823,41,2,f +9076,3829c01,14,1,f +9076,3829c01,15,1,f +9076,3836,6,1,f +9076,3894,7,2,f +9076,3941p01,7,1,f +9076,3957a,14,2,f +9076,4006,0,1,f +9076,4070,0,10,f +9076,4070,14,4,f +9076,4070,15,2,f +9076,4070,4,4,f +9076,4070,7,4,f +9076,4079,1,1,f +9076,4079,15,2,f +9076,4083,14,2,f +9076,4085c,15,2,f +9076,4162,7,2,f +9076,4265a,7,1,t +9076,4265a,7,4,f +9076,4275b,7,6,f +9076,4276b,7,4,f +9076,4282,7,2,f +9076,4286,14,2,f +9076,4286,0,2,f +9076,4287,14,2,f +9076,4477,7,2,f +9076,4531,7,2,f +9076,4599a,7,5,f +9076,4864a,41,2,f +9076,4873,14,1,f +9076,4873,0,1,f +9076,6141,46,1,t +9076,6141,46,8,f +9076,6141,14,4,f +9076,6141,47,2,f +9076,6141,47,1,t +9076,6141,7,1,t +9076,6141,14,1,t +9076,6141,36,4,f +9076,6141,36,1,t +9076,6141,7,8,f +9077,2420,1,2,f +9077,2431,14,1,f +9077,2446pb04,4,1,f +9077,2486,4,1,f +9077,2780,0,1,t +9077,2780,0,6,f +9077,3005,1,2,f +9077,3008,15,2,f +9077,30145,7,4,f +9077,30170,0,1,f +9077,30170,0,1,t +9077,3020,15,1,f +9077,3022,7,4,f +9077,3032,4,1,f +9077,3035,4,1,f +9077,3036,15,1,f +9077,3039,4,1,f +9077,3040b,15,2,f +9077,3070b,4,1,t +9077,3070b,4,4,f +9077,32062,0,2,f +9077,32062,0,1,t +9077,32250,15,2,f +9077,32532,7,1,f +9077,3460,8,1,f +9077,3460,15,1,f +9077,3626bpb0126,14,1,f +9077,3666,1,4,f +9077,3701,15,2,f +9077,3702,7,1,f +9077,3705,0,1,f +9077,3710,1,6,f +9077,3713,7,1,t +9077,3713,7,1,f +9077,3840,15,1,f +9077,3957a,4,2,f +9077,4162,1,2,f +9077,41677,1,2,f +9077,4215b,14,1,f +9077,43085,15,2,f +9077,4495a,1,1,f +9077,4495a,2,1,f +9077,4515,15,2,f +9077,46203pb03c01,15,1,f +9077,6575,0,2,f +9077,6636,15,4,f +9077,970c00,272,1,f +9077,973c22,8,1,f +9078,3020,72,1,f +9078,3020,25,1,f +9078,30602,25,1,f +9078,3710,72,1,f +9078,3829c01,71,1,f +9078,4623,72,1,f +9078,6120,72,1,t +9078,6120,72,2,f +9080,2412b,297,1,f +9080,2412b,0,7,f +9080,2420,72,2,f +9080,2431,0,2,f +9080,2432,72,2,f +9080,2445,0,2,f +9080,2450,0,2,f +9080,2460,72,2,f +9080,2465,72,2,f +9080,2540,72,1,f +9080,2555,71,1,f +9080,2654,71,5,f +9080,2989,72,4,f +9080,2991b,72,4,f +9080,3002,72,2,f +9080,30031,72,1,f +9080,3007,71,2,f +9080,3009,0,2,f +9080,3010,0,1,f +9080,30136,72,1,f +9080,3020,72,1,f +9080,3021,19,2,f +9080,3023,72,1,f +9080,3024,36,4,f +9080,3028,0,1,f +9080,3031,0,4,f +9080,3034,70,1,f +9080,30359b,0,2,f +9080,3039pr0014,0,1,f +9080,3040b,72,2,f +9080,30553,0,2,f +9080,30602,0,2,f +9080,32002,72,1,t +9080,32002,72,2,f +9080,32059,0,2,f +9080,32064b,2,5,f +9080,32293,0,1,f +9080,32530,72,2,f +9080,32556,71,1,f +9080,3298,0,2,f +9080,3626bpr0475,2,1,f +9080,3626bpr0476,78,1,f +9080,3666,72,5,f +9080,3700,71,4,f +9080,3713,71,2,f +9080,3713,71,1,t +9080,3794a,19,2,f +9080,3795,70,2,f +9080,3937,72,1,f +9080,4070,0,4,f +9080,41747,72,1,f +9080,41747pb019,72,1,f +9080,41748,72,1,f +9080,41748pb019,72,1,f +9080,41767,0,1,f +9080,41768,0,1,f +9080,41855,71,2,f +9080,43093,1,2,f +9080,43121,0,2,f +9080,43713,72,1,f +9080,43713,0,1,f +9080,43719,72,1,f +9080,43722,0,1,f +9080,43723,0,1,f +9080,44300,72,2,f +9080,4519,71,2,f +9080,45301,0,2,f +9080,45705,40,1,f +9080,4589,72,6,f +9080,4589,42,2,f +9080,4617b,0,1,f +9080,46667,72,2,f +9080,47458,70,3,f +9080,47458,0,1,f +9080,47753,0,1,f +9080,4854,0,1,f +9080,4854,72,1,f +9080,50950,0,8,f +9080,54200,0,6,f +9080,55704,0,1,f +9080,55706,0,2,f +9080,55707a,0,1,f +9080,55707e,0,2,f +9080,56619,0,1,f +9080,56630,0,1,f +9080,6134,71,1,f +9080,6141,46,4,f +9080,6141,46,1,t +9080,6536,72,2,f +9080,6587,72,2,f +9080,6628,0,2,f +9080,7780stk01,9999,1,t +9080,85973,0,1,f +9080,970c00,272,1,f +9080,970x026,71,1,f +9080,973pr1272c01,71,1,f +9080,973pr1277c01,2,1,f +9080,98721,0,3,f +9080,x656,0,2,f +9080,x657,0,3,f +9085,3713,7,60,f +9085,4265a,7,150,f +9086,2420,15,2,f +9086,3004,15,3,f +9086,3021,15,3,f +9086,3022,72,2,f +9086,30367b,4,1,f +9086,3665,15,1,f +9086,3666,0,2,f +9086,3666,4,1,f +9086,3679,71,1,f +9086,3680,0,1,f +9086,3794a,15,2,f +9086,4070,15,1,f +9086,4081b,72,1,f +9086,4150,4,1,f +9086,44728,72,1,f +9086,50950,15,2,f +9086,54200,47,2,f +9086,54200,47,1,t +9086,6141,0,2,t +9086,6141,0,1,f +9088,3003pe2,4,1,f +9088,3020,14,1,f +9088,3022,14,1,f +9088,3040b,4,2,f +9088,3747b,1,2,f +9089,11816pr0001,84,1,f +9089,3032,19,1,f +9089,33121,191,1,f +9089,3837,72,1,f +9089,4032a,19,1,f +9089,4495b,5,1,f +9089,59275,27,2,f +9089,59275,27,2,t +9089,59900,19,5,f +9089,6141,33,3,f +9089,6141,19,2,t +9089,6141,33,1,t +9089,6141,41,3,f +9089,6141,19,3,f +9089,6141,41,1,t +9089,64644,297,1,f +9089,64648,25,1,f +9089,70973,5,1,f +9089,92456pr0007c01,84,1,f +9089,92818pr0006c01,323,1,f +9089,93352,308,1,f +9090,30367b,15,1,f +9090,30377,15,1,t +9090,30377,15,2,f +9090,3836,70,1,f +9090,3878,0,1,f +9090,3943b,15,1,f +9090,4070,15,1,f +9090,4623,15,2,f +9090,53451,25,1,f +9090,53451,25,1,t +9090,6141,0,1,f +9090,6141,0,1,t +9091,24069pr0001,70,1,f +9091,24394pr0975,70,1,f +9091,3626cpr1833,14,1,f +9091,87994pr0001b,70,1,f +9091,88646,0,1,f +9091,973pr3222c01,14,1,f +9092,14769,15,1,f +9092,15395,15,1,f +9092,15573,15,2,f +9092,16178pr01,4,1,f +9092,18899pat0001,4,1,f +9092,21709,14,1,f +9092,2412b,0,2,f +9092,298c02,71,2,f +9092,298c02,71,1,t +9092,3004,15,1,f +9092,3020,14,2,f +9092,30228,72,1,f +9092,3023,36,1,f +9092,3024,47,1,t +9092,3024,182,1,t +9092,3024,47,2,f +9092,3024,182,2,f +9092,3032,71,1,f +9092,30374,70,1,f +9092,3039,15,1,f +9092,3062b,71,2,f +9092,3070b,72,1,f +9092,3070b,72,1,t +9092,32028,14,3,f +9092,3626cpr0893,14,1,f +9092,3626cpr0914,14,1,f +9092,3626cpr0920,14,1,f +9092,3626cpr0929,14,1,f +9092,3795,72,2,f +9092,3833,4,2,f +9092,4349,4,1,f +9092,44567a,1,1,f +9092,4740,15,2,f +9092,58176,182,1,f +9092,59900,25,2,f +9092,6014b,71,4,f +9092,60212,14,2,f +9092,6126a,41,2,f +9092,6141,71,1,t +9092,6141,71,1,f +9092,6157,0,2,f +9092,64450,0,1,f +9092,64799,0,1,f +9092,6636,14,2,f +9092,87087,72,2,f +9092,87697,0,4,f +9092,92280,0,2,f +9092,970c00,308,1,f +9092,970c00,25,1,f +9092,970c00,379,1,f +9092,970c00,272,1,f +9092,973pr2037c01,272,1,f +9092,973pr2083c01,15,1,f +9092,973pr2885c01,25,1,f +9092,973pr2913c01,25,1,f +9092,98283,84,3,f +9092,98283,72,5,f +9092,99206,71,2,f +9093,32015,0,2,f +9093,4519,71,1,f +9093,48989,71,1,f +9093,50923,72,1,f +9093,53989,179,8,f +9093,87841,4,2,f +9093,90607,0,1,f +9093,90608,4,2,f +9093,90609,72,2,f +9093,90611,0,2,f +9093,90612,0,3,f +9093,90617,4,2,f +9093,90622,0,1,f +9093,90625,0,1,f +9093,90639,4,3,f +9093,90639pr0020,179,1,f +9093,90641,4,1,f +9093,90641,148,2,f +9093,90650,148,2,f +9093,90652,179,1,f +9093,92216,4,2,f +9093,92221,179,2,f +9093,92223,4,2,f +9093,92230,4,1,f +9093,92233,4,2,f +9093,92234,0,3,f +9093,92235pat0002,0,1,f +9095,11618,26,1,f +9095,11618,26,1,t +9095,14716,226,2,f +9095,14769,30,1,f +9095,22667,4,1,t +9095,22667,4,2,f +9095,2419,15,1,f +9095,2419,2,2,f +9095,2423,2,2,f +9095,3004,226,4,f +9095,3020,27,2,f +9095,3023,30,4,f +9095,3023,27,1,f +9095,30367b,15,1,f +9095,3040b,70,2,f +9095,3185,15,1,f +9095,3666,30,1,f +9095,3794b,70,1,f +9095,43898,15,1,f +9095,4740,15,1,f +9095,4740,33,1,f +9095,58176,35,2,f +9095,59900,15,1,f +9095,6126b,41,1,f +9095,6141,85,1,f +9095,6141,85,1,t +9095,87087,15,2,f +9095,98388pr0005,322,1,f +9097,2420,15,1,f +9097,2423,2,1,f +9097,3022,70,1,f +9097,6141,15,1,t +9097,6141,15,1,f +9097,6231,322,4,f +9098,3034,15,9,f +9098,3229,1,8,f +9098,3230,1,8,f +9101,2456,14,2,f +9101,2456,15,2,f +9101,3001,15,26,f +9101,3001,0,16,f +9101,3001,1,26,f +9101,3001,4,26,f +9101,3001,14,26,f +9101,3002,15,8,f +9101,3002,0,8,f +9101,3002,4,8,f +9101,3002,1,8,f +9101,3002,14,8,f +9101,3003,15,18,f +9101,3003,0,10,f +9101,3003,4,16,f +9101,3003,1,16,f +9101,3003,14,16,f +9101,3006,4,2,f +9101,3007,1,2,f +9101,6007,8,1,f +9102,k1062book,9999,1,f +9103,2412b,71,4,f +9103,2420,71,4,f +9103,2431,70,8,f +9103,2436,71,3,f +9103,2445,71,4,f +9103,2476a,15,8,f +9103,2540,0,1,f +9103,2780,0,1,t +9103,2780,0,3,f +9103,2854,72,2,f +9103,3001,71,1,f +9103,3002,0,4,f +9103,30031,0,1,f +9103,3004,28,15,f +9103,3009,71,6,f +9103,3010,70,2,f +9103,3010,0,4,f +9103,3020,71,3,f +9103,3021,70,10,f +9103,3022,72,7,f +9103,3023,72,8,f +9103,3031,0,1,f +9103,3034,71,1,f +9103,3036,28,2,f +9103,30363,70,24,f +9103,30365,72,8,f +9103,30366,71,2,f +9103,30374,36,1,f +9103,30375,15,1,f +9103,30376,15,1,f +9103,30377,15,2,f +9103,30377,15,1,t +9103,30381,70,1,f +9103,30383,72,2,f +9103,30383,71,8,f +9103,30407,72,2,f +9103,3040b,28,10,f +9103,30414,72,8,f +9103,30414,19,6,f +9103,3044b,72,1,f +9103,30602,72,1,f +9103,32013,71,4,f +9103,32039,0,2,f +9103,32123b,14,1,t +9103,32123b,14,4,f +9103,32532,71,1,f +9103,3297,72,2,f +9103,3460,70,2,f +9103,3622,70,4,f +9103,3623,71,4,f +9103,3626bpr0569,78,1,f +9103,3666,70,6,f +9103,3700,72,2,f +9103,3701,15,2,f +9103,3705,0,2,f +9103,3706,0,2,f +9103,3710,15,9,f +9103,3747b,71,2,f +9103,3794b,70,1,f +9103,3795,70,5,f +9103,3839b,72,1,f +9103,3894,0,2,f +9103,3937,0,5,f +9103,3938,71,1,f +9103,4070,71,2,f +9103,4079,70,1,f +9103,41751,70,2,f +9103,41769,70,1,f +9103,41770,70,1,f +9103,42022,70,8,f +9103,42023,70,2,f +9103,42060,70,2,f +9103,42061,70,2,f +9103,42114,383,1,f +9103,42687,72,2,f +9103,4286,70,10,f +9103,43337,4,1,f +9103,43712,72,1,f +9103,44568,71,1,f +9103,4477,71,4,f +9103,4589,52,8,f +9103,4590,72,1,f +9103,4864b,71,1,f +9103,48729a,72,1,t +9103,48729b,72,4,f +9103,50231,70,1,f +9103,50747,40,1,f +9103,50955,72,2,f +9103,50956,72,2,f +9103,53989,72,4,f +9103,54200,47,1,t +9103,54200,15,1,t +9103,54200,47,1,f +9103,54200,15,2,f +9103,54383,72,2,f +9103,54384,72,2,f +9103,6019,0,3,f +9103,6111,70,4,f +9103,61184,71,4,f +9103,61192pr0001,19,2,f +9103,61193,72,2,f +9103,61194,19,2,f +9103,6134,71,4,f +9103,61409,72,6,f +9103,6141,70,12,f +9103,6141,36,2,f +9103,6141,36,1,t +9103,6141,70,1,t +9103,6232,71,1,f +9103,62462,15,2,f +9103,6266,15,1,f +9103,63965,71,2,f +9103,64798,71,1,f +9103,6541,71,8,f +9103,6636,28,10,f +9103,970c00,0,1,f +9103,973pr1461c01,0,1,f +9104,30285,15,4,f +9104,3037,4,1,f +9104,30391,0,4,f +9104,30622,4,1,f +9104,30640,15,1,f +9104,30643,4,1,f +9104,30647pb04,15,1,f +9104,30647pb05,15,1,f +9104,30663,0,1,f +9104,3297px19,4,1,f +9104,3835,7,1,t +9104,3835,7,1,f +9104,4083,0,1,f +9104,40996,33,1,f +9104,4349,7,1,f +9104,6126a,41,1,t +9104,6126a,41,1,f +9104,js001,9999,1,f +9105,2412b,7,209,f +9105,2431,8,3,f +9105,2449,8,2,f +9105,2449,7,10,f +9105,2456,8,2,f +9105,3003,8,8,f +9105,3006,8,1,f +9105,3007,8,4,f +9105,3008,8,1,f +9105,3009,8,4,f +9105,3021,8,2,f +9105,3023,8,2,f +9105,3024,7,8,f +9105,3034,8,7,f +9105,3043,8,6,f +9105,3062b,0,4,f +9105,3068b,8,6,f +9105,3069b,8,2,f +9105,3070b,4,1,f +9105,3070b,14,1,f +9105,3070b,15,1,f +9105,3070b,2,1,f +9105,3070b,8,2,f +9105,3460,8,3,f +9105,3622,8,2,f +9105,3623,8,2,f +9105,3684,8,3,f +9105,3832,8,4,f +9105,4070,8,4,f +9105,4460b,7,10,f +9105,4460b,8,4,f +9105,4477,8,1,f +9105,6091,8,4,f +9105,6141,7,4,f +9105,ifountainstk01,9999,1,f +9105,ifountainstk02,9999,1,f +9105,ifountainstk03,9999,1,f +9106,14226c11,0,1,t +9106,14226c11,0,2,f +9106,2335pr02,15,1,f +9106,2357,15,1,f +9106,2412b,0,2,f +9106,2412b,4,1,f +9106,2412b,15,1,f +9106,2412b,80,2,f +9106,2420,0,2,f +9106,2431,0,4,f +9106,2431,1,3,f +9106,2431,14,2,f +9106,2431,72,1,f +9106,2431,15,6,f +9106,2432,0,2,f +9106,2436,0,12,f +9106,2436,15,3,f +9106,2454a,15,1,f +9106,2555,72,2,f +9106,2555,0,4,f +9106,2654,0,1,f +9106,2780,0,1,t +9106,2780,0,4,f +9106,3001,15,2,f +9106,30027b,0,4,f +9106,30028,0,4,f +9106,3003,0,1,f +9106,30031,72,2,f +9106,3004,15,4,f +9106,3004,19,1,f +9106,3004,4,1,f +9106,3005,19,10,f +9106,3005,15,5,f +9106,3007,19,1,f +9106,3008,19,2,f +9106,3008,15,2,f +9106,3009,15,1,f +9106,3010,15,5,f +9106,3020,25,2,f +9106,3020,0,6,f +9106,3020,15,1,f +9106,3021,72,2,f +9106,3021,15,1,f +9106,3021,19,10,f +9106,3021,0,6,f +9106,3022,0,5,f +9106,3022,19,4,f +9106,3023,47,2,f +9106,3023,25,1,f +9106,3023,4,2,f +9106,3023,72,2,f +9106,3023,0,2,f +9106,3023,15,5,f +9106,3023,36,2,f +9106,30236,0,4,f +9106,3024,36,2,f +9106,3024,15,4,f +9106,30259,14,1,f +9106,3029,15,1,f +9106,3029,0,3,f +9106,3030,15,1,f +9106,3031,1,1,f +9106,3031,0,5,f +9106,3032,0,1,f +9106,3034,72,1,f +9106,3034,19,2,f +9106,3034,15,1,f +9106,3035,72,1,f +9106,3036,0,1,f +9106,30374,0,1,f +9106,30374,15,1,f +9106,3040b,15,2,f +9106,3040b,72,2,f +9106,30552,0,2,f +9106,3062b,14,1,f +9106,3062b,15,6,f +9106,3068b,15,2,f +9106,3068b,4,1,f +9106,3068b,0,2,f +9106,3068b,1,2,f +9106,3069b,0,1,f +9106,3069b,25,4,f +9106,3070b,15,2,f +9106,3070b,15,1,t +9106,32002,72,2,f +9106,32002,72,1,t +9106,32013,72,1,f +9106,32028,0,1,f +9106,32034,1,1,f +9106,32039,0,1,f +9106,32062,0,1,f +9106,32064b,2,2,f +9106,32065,0,2,f +9106,32123b,71,2,t +9106,32123b,71,7,f +9106,32140,1,1,f +9106,32192,0,1,f +9106,32250,0,2,f +9106,3245b,15,3,f +9106,32530,72,1,f +9106,32556,71,1,f +9106,3297,0,1,f +9106,3307,19,1,f +9106,3460,0,1,f +9106,3460,15,2,f +9106,3622,19,2,f +9106,3622,15,4,f +9106,3623,15,2,f +9106,3623,0,10,f +9106,3647,71,2,f +9106,3648b,71,3,f +9106,3660,19,4,f +9106,3665,19,2,f +9106,3666,19,1,f +9106,3666,0,3,f +9106,3666,15,2,f +9106,3673,71,2,f +9106,3700,0,12,f +9106,3700,15,2,f +9106,3702,0,1,f +9106,3705,0,4,f +9106,3706,0,4,f +9106,3710,1,3,f +9106,3710,25,11,f +9106,3710,72,1,f +9106,3710,15,3,f +9106,3710,0,7,f +9106,3710,19,5,f +9106,3713,71,2,f +9106,3713,71,1,t +9106,3738,0,3,f +9106,3747b,19,2,f +9106,3749,19,2,f +9106,3788,0,1,f +9106,3788,25,2,f +9106,3788,1,1,f +9106,3794a,1,2,f +9106,3794a,15,2,f +9106,3794a,14,3,f +9106,3794a,0,2,f +9106,3795,72,1,f +9106,3795,0,5,f +9106,3832,72,3,f +9106,3894,15,2,f +9106,3941,15,1,f +9106,3957a,15,1,f +9106,4032a,15,1,f +9106,40490,15,2,f +9106,4070,4,2,f +9106,4070,15,4,f +9106,4085c,15,2,f +9106,4162,72,7,f +9106,41677,71,2,f +9106,41752,72,1,f +9106,42003,72,1,f +9106,42073c02,72,1,f +9106,4274,71,1,t +9106,4274,71,2,f +9106,43857,0,1,f +9106,44302a,14,2,f +9106,4460b,15,2,f +9106,44674,0,2,f +9106,44728,15,3,f +9106,44728,0,1,f +9106,44728,4,1,f +9106,4477,0,3,f +9106,45179,72,2,f +9106,4519,71,4,f +9106,4599a,71,3,f +9106,47456,0,1,f +9106,47899c03,0,1,f +9106,48288,72,1,f +9106,48336,0,2,f +9106,4872,40,2,f +9106,50944pr0001,0,13,f +9106,50947,14,4,f +9106,50949,14,1,f +9106,50950,0,3,f +9106,50951,0,8,f +9106,51011,0,5,f +9106,51595,72,1,f +9106,54200,1,4,f +9106,54200,40,8,f +9106,54200,0,6,f +9106,54200,14,2,f +9106,54200,25,2,f +9106,6141,80,1,t +9106,6141,0,2,f +9106,6141,15,2,t +9106,6141,47,8,f +9106,6141,36,1,t +9106,6141,80,2,f +9106,6141,15,6,f +9106,6141,1,1,t +9106,6141,33,2,f +9106,6141,33,1,t +9106,6141,4,12,f +9106,6141,4,2,t +9106,6141,36,2,f +9106,6141,1,3,f +9106,6141,47,2,t +9106,6141,0,1,t +9106,6157,0,6,f +9106,6157,72,2,f +9106,6180,15,1,f +9106,6182,19,2,f +9106,6231,0,4,f +9106,6238,40,1,f +9106,6538b,72,3,f +9106,6632,72,2,f +9106,85543,15,1,f +9107,16197,9999,1,t +9107,3003,0,10,f +9107,3003,15,60,f +9107,3003,1,60,f +9107,3003,4,60,f +9107,3003,14,60,f +9108,3003,1,2,f +9108,3004,72,1,f +9108,3005pe1,15,1,t +9108,3005pe1,15,2,f +9108,3021,0,2,f +9108,3023,1,1,t +9108,3023,1,1,f +9108,3623,72,4,f +9108,3660,1,1,f +9108,3665,0,2,f +9108,3710,0,1,f +9111,33057,484,1,f +9111,6250pr01,484,1,f +9111,6256,191,1,f +9112,11477,288,3,f +9112,18649,0,2,f +9112,2540,19,1,f +9112,2654,19,1,f +9112,3022,19,2,f +9112,3024,0,1,f +9112,30377,19,6,f +9112,3623,378,1,f +9112,4595,0,1,f +9112,49668,288,1,f +9112,49668,0,6,f +9112,49668,19,3,f +9112,50950,378,6,f +9112,60478,288,6,f +9112,61252,19,1,f +9112,6141,15,1,f +9112,6141,47,2,f +9112,63868,0,1,f +9112,92280,378,2,f +9112,92692,0,1,f +9112,93606,288,1,f +9113,11098,297,1,f +9113,11107,297,1,f +9113,11476,71,1,f +9113,11477,326,2,f +9113,12551pr0001,288,1,f +9113,13547,326,4,f +9113,15208,15,2,f +9113,16768pat0001,4,1,f +9113,18674,72,1,f +9113,18868a,41,1,f +9113,19981pr0043,41,1,f +9113,30031,72,1,f +9113,30162,72,2,f +9113,3020,288,1,f +9113,3021,288,1,f +9113,3023,326,3,f +9113,3623,288,2,f +9113,3626cpr1141,288,1,f +9113,3710,28,1,f +9113,3941,41,1,f +9113,60897,4,2,f +9113,6141,182,1,t +9113,6141,36,2,f +9113,6141,36,1,t +9113,6141,15,1,t +9113,6141,182,1,f +9113,6141,15,2,f +9113,64647,182,2,f +9113,64647,182,1,t +9113,64867,326,1,f +9113,92593,326,1,f +9113,970c00pr0935,4,1,f +9113,973pr3148c01,297,1,f +9113,98100,71,1,f +9113,98138pr0023,182,1,t +9113,98138pr0023,182,1,f +9113,99206,71,1,f +9114,2436,0,2,f +9114,2555,4,2,f +9114,2654,0,2,f +9114,30031,72,1,f +9114,30088,0,2,f +9114,3021,25,1,f +9114,3022,25,2,f +9114,3022,71,2,f +9114,3022,15,1,f +9114,3022,0,1,f +9114,3023,25,8,f +9114,3023,4,2,f +9114,30377,0,1,t +9114,30377,0,1,f +9114,30386,0,8,f +9114,3048c,0,16,f +9114,30503,0,2,f +9114,30552,0,2,f +9114,3069b,0,2,f +9114,32016,71,1,f +9114,32039,0,2,f +9114,32059,0,1,f +9114,32062,4,18,f +9114,32064b,72,2,f +9114,32064b,15,1,f +9114,32073,71,1,f +9114,32173,0,2,f +9114,32192,0,12,f +9114,32269,0,2,f +9114,32449,0,2,f +9114,3623,4,1,f +9114,3626bpr0643,14,1,f +9114,3701,72,3,f +9114,3706,0,3,f +9114,3710,25,1,f +9114,3795,71,1,f +9114,3894,71,2,f +9114,4032a,4,1,f +9114,4081b,72,4,f +9114,41677,4,2,f +9114,41747,0,1,f +9114,41748,0,1,f +9114,41749,0,1,f +9114,41750,0,1,f +9114,41751,0,1,f +9114,41854,25,4,f +9114,4274,1,4,f +9114,4274,1,1,t +9114,43093,1,10,f +9114,43712,0,1,f +9114,44302a,72,2,f +9114,44661,72,2,f +9114,44728,72,1,f +9114,4519,71,2,f +9114,4588,72,1,f +9114,47905,0,1,f +9114,48336,0,3,f +9114,50950,4,1,f +9114,50950,0,2,f +9114,52107,0,1,f +9114,53451,0,2,f +9114,53451,0,1,t +9114,53989,0,6,f +9114,54200,47,1,t +9114,54200,47,1,f +9114,58176,36,6,f +9114,59275,27,2,f +9114,59426,72,1,f +9114,59443,0,6,f +9114,59900,25,14,f +9114,6019,0,1,f +9114,60478,71,1,f +9114,61053,0,1,f +9114,61406pat0005,0,2,f +9114,6141,25,14,f +9114,6141,27,3,f +9114,6141,25,1,t +9114,6141,27,1,t +9114,62462,25,1,f +9114,62712,72,2,f +9114,6632,72,2,f +9114,73983,0,8,f +9114,87747,0,12,f +9114,87747,15,10,f +9114,87748pr0002,35,1,f +9114,87754,72,1,f +9114,89159,35,1,f +9114,970c00pr0145,72,1,f +9114,973pr1557c01,72,1,f +9115,11089,70,7,f +9115,11089,15,4,f +9115,11090,0,6,f +9115,11090,0,1,t +9115,11097,297,2,f +9115,11103,179,1,f +9115,11107,179,1,f +9115,11110pr0004,191,1,f +9115,11112pr0002,326,1,f +9115,11126,2,1,f +9115,11126,14,1,f +9115,11127,41,12,f +9115,11129pr0003,320,1,f +9115,11153,191,4,f +9115,11767,72,2,f +9115,12551pr0001,288,1,f +9115,12825,0,5,f +9115,2417,2,1,f +9115,2419,2,4,f +9115,2423,2,1,f +9115,2540,19,2,f +9115,2654,71,2,f +9115,2780,0,1,t +9115,2780,0,4,f +9115,3001,2,1,f +9115,30176,2,2,f +9115,30194,72,2,f +9115,3020,70,1,f +9115,3022,2,3,f +9115,3023,70,5,f +9115,3033,288,1,f +9115,30342,41,1,f +9115,30357,191,2,f +9115,30374,36,1,f +9115,30374,41,1,f +9115,3039,70,1,f +9115,3040b,191,6,f +9115,3049d,0,1,f +9115,3068b,70,3,f +9115,3070b,19,2,f +9115,3070b,19,1,t +9115,32014,71,1,f +9115,32034,71,2,f +9115,32039,71,1,f +9115,32062,4,3,f +9115,32064a,72,4,f +9115,32556,19,1,f +9115,3623,70,4,f +9115,3626cpr1121,19,1,f +9115,3626cpr1141,288,1,f +9115,3660,19,1,f +9115,3710,19,1,f +9115,3713,71,1,t +9115,3713,71,2,f +9115,3737,0,4,f +9115,3794a,297,2,f +9115,3795,72,1,f +9115,3937,71,1,f +9115,3941,19,4,f +9115,3942c,72,2,f +9115,3960,15,1,f +9115,4032a,1,1,f +9115,4070,19,2,f +9115,4081b,4,2,f +9115,4286,70,2,f +9115,4460b,28,2,f +9115,4460b,191,6,f +9115,4497,179,1,f +9115,45590,0,2,f +9115,4740,4,1,f +9115,47753,191,1,f +9115,50231,272,1,f +9115,53451,15,1,t +9115,53451,15,2,f +9115,53705,0,1,t +9115,53705,0,3,f +9115,54200,191,4,f +9115,54200,322,1,t +9115,54200,19,2,f +9115,54200,322,2,f +9115,54200,19,1,t +9115,54200,0,1,t +9115,54200,70,1,t +9115,54200,70,7,f +9115,54200,0,2,f +9115,54200,191,1,t +9115,54383,28,1,f +9115,54384,28,1,f +9115,54821,143,2,f +9115,59232,179,1,f +9115,59426,72,1,f +9115,6020982,9999,1,t +9115,6020983,9999,1,t +9115,6020984,9999,1,t +9115,6020985,9999,1,t +9115,6020986,9999,1,t +9115,6021425,9999,1,t +9115,6021426,9999,1,t +9115,6021427,9999,1,t +9115,6021428,9999,1,t +9115,6021429,9999,1,t +9115,60478,72,2,f +9115,60897,4,2,f +9115,60897,72,2,f +9115,6091,19,2,f +9115,6091,191,2,f +9115,6108,70,1,f +9115,61252,0,2,f +9115,6126b,182,1,t +9115,6126b,182,2,f +9115,6134,4,3,f +9115,6141,14,2,f +9115,6141,14,1,t +9115,85984,0,2,f +9115,86038,320,1,f +9115,87747,15,4,f +9115,87747,15,1,t +9115,88072,0,4,f +9115,970c02pr0430,19,1,f +9115,970c155pr0443,326,1,f +9115,973pr2224c01,1,1,f +9115,973pr2245c01,326,1,f +9115,98138,41,2,f +9115,98138,41,1,t +9115,98283,28,2,f +9115,99780,72,10,f +9115,99781,71,4,f +9116,27bc01,4,4,f +9116,3005,15,4,f +9116,3008a,15,2,f +9116,3008apb10,15,1,f +9116,3034a,15,1,f +9116,3036a,15,2,f +9116,3065,15,32,f +9116,3065,4,16,f +9116,3087bc01,4,4,f +9116,820,15,1,f +9116,821,15,1,f +9116,822ac01,4,1,f +9119,2339,4,4,f +9119,2348b,41,2,f +9119,2349a,4,2,f +9119,2362a,14,4,f +9119,2362a,0,4,f +9119,2362a,4,1,f +9119,2377,15,2,f +9119,2412b,15,12,f +9119,2413,15,2,f +9119,2420,7,2,f +9119,2420,15,2,f +9119,2420,4,8,f +9119,2431,4,3,f +9119,2431,0,2,f +9119,2436,4,2,f +9119,2454a,0,10,f +9119,2454a,4,4,f +9119,2456,0,1,f +9119,2456,4,1,f +9119,2465,0,4,f +9119,2486,14,3,f +9119,2571,14,2,f +9119,2572,15,2,f +9119,2619,4,1,f +9119,2620,41,2,f +9119,2670,7,8,f +9119,2671,7,5,f +9119,2672,7,8,f +9119,2677,7,2,f +9119,2678,7,2,f +9119,2680,0,2,f +9119,2681,0,10,f +9119,2684c01b,15,1,f +9119,2686c01,0,2,f +9119,2687,0,2,f +9119,2774,7,2,f +9119,3001,4,1,f +9119,3001,0,1,f +9119,3002,0,4,f +9119,3003,4,4,f +9119,3003,0,6,f +9119,3004,14,6,f +9119,3004,4,6,f +9119,3004,15,8,f +9119,3004,7,10,f +9119,3004,0,23,f +9119,3005,15,10,f +9119,3005,4,8,f +9119,3006,0,5,f +9119,3007,0,2,f +9119,3008,14,1,f +9119,3009,15,1,f +9119,3010,4,2,f +9119,3010,14,3,f +9119,3010,15,9,f +9119,3020,7,2,f +9119,3020,14,2,f +9119,3020,15,2,f +9119,3022,15,2,f +9119,3022,4,2,f +9119,3022,7,9,f +9119,3023,1,1,f +9119,3023,15,8,f +9119,3023,7,1,f +9119,3023,4,8,f +9119,3024,15,4,f +9119,3024,36,4,f +9119,3024,46,4,f +9119,3024,14,6,f +9119,3026,15,1,f +9119,3029,15,1,f +9119,3031,4,1,f +9119,3031,15,1,f +9119,3032,15,4,f +9119,3034,4,3,f +9119,3035,4,2,f +9119,3037,0,2,f +9119,3039p12,4,1,f +9119,3040b,15,25,f +9119,3040b,0,2,f +9119,3062b,4,4,f +9119,3068b,7,2,f +9119,3068bp18,4,2,f +9119,3069b,15,2,f +9119,3069b,4,2,f +9119,3069b,0,4,f +9119,3069bp12,14,3,f +9119,3069bp52,15,2,f +9119,3070b,1,7,f +9119,3070b,4,4,f +9119,3070b,7,3,f +9119,309p03,2,1,f +9119,309p04,7,1,f +9119,3134,4,1,f +9119,3176,7,4,f +9119,3176,15,2,f +9119,3460,15,5,f +9119,3460,4,10,f +9119,3460,14,1,f +9119,3460,1,1,f +9119,3470,2,2,f +9119,3622,15,2,f +9119,3622,0,2,f +9119,3623,4,2,f +9119,3623,1,2,f +9119,3623,7,2,f +9119,3623,15,5,f +9119,3624,4,1,f +9119,3624,0,1,f +9119,3626apr0001,14,9,f +9119,3633,4,5,f +9119,3660,0,25,f +9119,3660,4,7,f +9119,3660,15,1,f +9119,3665,14,3,f +9119,3665,15,5,f +9119,3666,15,12,f +9119,3666,4,4,f +9119,3710,7,54,f +9119,3710,4,11,f +9119,3710,15,13,f +9119,3741,2,10,f +9119,3742,14,2,t +9119,3742,14,6,f +9119,3742,4,24,f +9119,3747a,0,2,f +9119,3794a,4,4,f +9119,3795,4,2,f +9119,3795,15,1,f +9119,3855,41,12,f +9119,3857,7,1,f +9119,3865,2,2,f +9119,3867,7,1,f +9119,3898,15,1,f +9119,3899,47,2,f +9119,3901,0,1,f +9119,3940b,0,2,f +9119,3941,14,2,f +9119,3958,15,2,f +9119,4032a,15,2,f +9119,4032a,7,2,f +9119,4033,4,12,f +9119,4070,0,8,f +9119,4079,0,5,f +9119,4079,4,2,f +9119,4079,14,7,f +9119,4095,4,4,f +9119,4162,4,2,f +9119,4213,4,3,f +9119,4286,14,2,f +9119,4287,15,2,f +9119,4315,4,2,f +9119,4345a,14,2,f +9119,4346,7,2,f +9119,4449,0,2,f +9119,4449,6,3,f +9119,4460a,0,2,f +9119,4477,15,2,f +9119,4477,4,1,f +9119,4485,4,1,f +9119,4485,1,1,f +9119,4530,4,2,f +9119,4530,0,1,f +9119,4589,46,4,f +9119,4589,0,3,f +9119,4599a,14,1,f +9119,4599a,4,1,f +9119,4625,4,5,f +9119,4740,15,7,f +9119,4760c01,4,1,f +9119,4861,14,1,f +9119,4862,47,2,f +9119,4864a,41,4,f +9119,4865a,4,4,f +9119,5306bc015,0,1,f +9119,6141,4,2,f +9119,6141,15,8,f +9119,6141,46,3,f +9119,6141,36,4,f +9119,6141,34,4,f +9119,6141,14,4,f +9119,6399stk01,9999,1,t +9119,970c00,7,1,f +9119,970c00,1,3,f +9119,970c00,15,2,f +9119,970c00,4,1,f +9119,970c00,0,2,f +9119,973p01c01,15,1,f +9119,973p12c01,4,1,f +9119,973p16c01,15,1,f +9119,973p18c01,1,1,f +9119,973p22c01,0,1,f +9119,973p71c01,15,1,f +9119,973pb0006c01,15,1,f +9119,973px189c01,0,1,f +9119,973px62c01,15,1,f +9120,3004,15,3,f +9120,3020,15,1,f +9120,3023,7,2,f +9120,3023,15,2,f +9120,3024,36,2,f +9120,3024,7,2,f +9120,3034,15,1,f +9120,3040b,15,2,f +9120,3298,15,2,f +9120,3298p90,15,1,f +9120,3626apr0001,14,1,f +9120,3710,7,1,f +9120,3829c01,15,1,f +9120,3832,7,1,f +9120,3838,4,1,f +9120,3839b,0,1,f +9120,3842a,4,1,f +9120,3933a,7,1,f +9120,3934a,7,1,f +9120,3935,7,1,f +9120,3936,7,1,f +9120,3943b,0,1,f +9120,3956,15,1,f +9120,3957a,0,3,f +9120,3963,0,2,f +9120,4081a,15,2,f +9120,4175,0,2,f +9120,4229,7,4,f +9120,970c00,4,1,f +9120,973p90c02,4,1,f +9121,2419,4,1,f +9121,298c02,0,6,f +9121,3020,72,1,f +9121,30414,0,2,f +9121,3623,72,2,f +9121,3710,4,4,f +9121,4070,4,2,f +9121,43722,4,1,f +9121,43723,4,1,f +9121,50950,4,2,f +9121,51739,320,1,f +9121,54200,72,2,f +9121,60478,72,4,f +9121,6141,0,2,f +9121,63868,4,4,f +9121,92946,72,2,f +9122,15998,212,1,f +9122,16368pr0002,14,1,f +9122,88646,0,1,f +9122,98382pr0004,70,1,f +9125,4093a,4,1,f +9127,2446,8,1,f +9127,2540,14,2,f +9127,30088,8,1,f +9127,30090,33,1,f +9127,30091,8,1,f +9127,3626bpb0056,14,1,f +9127,3839b,14,1,f +9127,41769,14,1,f +9127,41770,14,1,f +9127,41854,14,1,f +9127,42022,0,2,f +9127,4588,42,2,f +9127,59275,0,2,f +9127,6019,7,1,f +9127,6141,42,1,f +9127,970c00pb030,272,1,f +9127,973pb0221c01,272,1,f +9128,2540,71,1,f +9128,298c02,71,2,f +9128,298c02,71,1,t +9128,3020,0,2,f +9128,3021,0,1,f +9128,3022,0,1,f +9128,3022,71,1,f +9128,3023,25,5,f +9128,3023,4,1,f +9128,3031,0,1,f +9128,3623,4,1,f +9128,41769,4,1,f +9128,41770,4,1,f +9128,44301a,0,6,f +9128,44302a,72,1,f +9128,44302a,4,6,f +9128,44567a,72,1,f +9129,15573,27,4,f +9129,15573,19,1,f +9129,2420,19,2,f +9129,3004,288,2,f +9129,3004,0,2,f +9129,3010,19,1,f +9129,3020,326,1,f +9129,3021,71,2,f +9129,3023,0,1,f +9129,30361c,14,1,f +9129,30367c,71,1,f +9129,30414,19,1,f +9129,3622,72,2,f +9129,3623,71,1,f +9129,3710,0,1,f +9129,3941,14,1,f +9129,4032a,19,1,f +9129,4274,1,1,f +9129,4274,1,1,t +9129,47759,326,1,f +9129,60474,326,1,f +9129,6091,288,2,f +9129,6141,15,3,f +9129,6141,15,1,t +9129,73590c03b,14,1,f +9129,85984,326,2,f +9129,86500,40,1,f +9129,92946,0,4,f +9129,98138pr0008,15,1,t +9129,98138pr0008,15,2,f +9129,98138pr0012,179,1,t +9129,98138pr0012,179,1,f +9129,99206,15,1,f +9130,2456,4,2,f +9130,2456,15,2,f +9130,3001,2,2,f +9130,3001,0,2,f +9130,3001,1,4,f +9130,3001,15,4,f +9130,3001,4,4,f +9130,3001,14,4,f +9130,3002,14,2,f +9130,3002,1,4,f +9130,3002,4,4,f +9130,3002,15,4,f +9130,3002,0,2,f +9130,3003,4,14,f +9130,3003,1,14,f +9130,3003,14,14,f +9130,3003,15,14,f +9130,3003,2,6,f +9130,3003,33,4,f +9130,3003,36,4,f +9130,3003,0,6,f +9130,3004,1,20,f +9130,3004,72,10,f +9130,3004,15,20,f +9130,3004,0,10,f +9130,3004,4,20,f +9130,3004,2,10,f +9130,3004,14,20,f +9130,3005,15,10,f +9130,3005,2,6,f +9130,3005,14,10,f +9130,3005,4,10,f +9130,3005,0,6,f +9130,3005,1,10,f +9130,3005,33,4,f +9130,3005pe1,14,4,f +9130,3009,14,2,f +9130,3009,15,4,f +9130,3009,4,4,f +9130,3009,1,2,f +9130,3010,15,2,f +9130,3010,14,2,f +9130,3010,4,2,f +9130,3010,72,2,f +9130,3010,2,2,f +9130,3010,1,2,f +9130,3010,0,2,f +9130,3010p01,14,1,f +9130,3020,15,2,f +9130,3020,4,2,f +9130,3020,1,2,f +9130,3020,14,2,f +9130,3020,2,2,f +9130,3021,4,2,f +9130,3021,2,2,f +9130,3021,72,2,f +9130,3021,14,2,f +9130,3021,1,2,f +9130,3021,15,2,f +9130,3022,15,4,f +9130,3022,14,4,f +9130,3022,2,2,f +9130,3022,1,4,f +9130,3022,4,4,f +9130,3022,72,2,f +9130,3039,1,4,f +9130,3039,47,2,f +9130,3039,15,4,f +9130,3039,4,2,f +9130,3039,72,2,f +9130,3039,33,2,f +9130,3040b,15,4,f +9130,3040b,1,4,f +9130,3040b,4,4,f +9130,3040b,72,2,f +9130,3065,33,6,f +9130,3065,36,6,f +9130,3065,47,8,f +9130,3066,36,2,f +9130,3298,4,4,f +9130,3298,1,2,f +9130,3298,15,4,f +9130,3622,72,2,f +9130,3622,2,2,f +9130,3660,1,2,f +9130,3660,15,2,f +9130,3660,4,2,f +9130,3665,1,4,f +9130,3665,15,4,f +9130,3665,4,4,f +9130,3665,72,2,f +9130,3710,15,2,f +9130,3710,4,2,f +9130,3710,1,2,f +9130,3747b,1,2,f +9130,3795,15,2,f +9130,3795,1,2,f +9130,3795,4,2,f +9130,4286,72,2,f +9130,4286,1,4,f +9130,4286,15,4,f +9130,4286,4,4,f +9130,4287,72,2,f +9130,4287,15,4,f +9130,4287,4,4,f +9130,4287,1,4,f +9131,10928,72,1,f +9131,11610,0,1,f +9131,15303,36,3,f +9131,15400,72,2,f +9131,15462,28,1,f +9131,15573,15,4,f +9131,15712,0,1,f +9131,17979,40,2,f +9131,19539,28,1,f +9131,2412b,14,2,f +9131,2445,15,1,f +9131,2453b,71,1,f +9131,2476a,71,2,f +9131,2540,15,4,f +9131,2654,72,2,f +9131,2780,0,2,t +9131,2780,0,7,f +9131,3010,71,1,f +9131,3020,0,6,f +9131,3021,4,1,f +9131,3023,71,3,f +9131,3023,4,4,f +9131,3024,47,2,f +9131,3024,71,9,f +9131,3024,71,1,t +9131,3024,47,1,t +9131,3031,72,1,f +9131,3032,71,2,f +9131,30355,71,1,f +9131,30356,71,1,f +9131,30370pr0002,71,1,f +9131,30374,0,1,f +9131,3068b,72,3,f +9131,3069b,72,2,f +9131,3070b,36,1,t +9131,3070b,36,2,f +9131,32001,71,1,f +9131,32054,4,2,f +9131,32059,15,1,f +9131,32063,71,2,f +9131,32064a,4,4,f +9131,32278,71,2,f +9131,3245b,4,1,f +9131,32523,71,1,f +9131,32524,72,1,f +9131,32530,72,1,f +9131,32531,71,1,f +9131,32532,71,1,f +9131,3460,4,5,f +9131,3622,72,2,f +9131,3622,15,6,f +9131,3622,4,2,f +9131,3626cpr1577,78,1,f +9131,3665,15,4,f +9131,3700,71,4,f +9131,3705,0,1,f +9131,3706,0,1,f +9131,3709,15,2,f +9131,3710,27,2,f +9131,3710,71,6,f +9131,3795,72,4,f +9131,3941,15,5,f +9131,40234,71,1,f +9131,40490,71,1,f +9131,4070,71,1,f +9131,4274,1,1,t +9131,4274,1,2,f +9131,43093,1,1,f +9131,43710,71,1,f +9131,43711,71,1,f +9131,44567a,0,4,f +9131,44570,15,2,f +9131,44728,71,2,f +9131,4519,71,1,f +9131,4740,45,1,f +9131,50304,15,1,f +9131,50305,15,1,f +9131,52107,71,2,f +9131,54200,71,1,f +9131,54200,71,1,t +9131,55981,15,1,f +9131,59443,72,1,f +9131,59900,15,4,f +9131,59900,72,1,f +9131,60481,71,6,f +9131,60481,4,1,f +9131,6141,72,1,t +9131,6141,1,1,f +9131,6141,72,4,f +9131,6141,1,1,t +9131,61780,72,1,f +9131,6180,71,2,f +9131,62462,15,2,f +9131,63965,15,1,f +9131,64567,0,1,t +9131,64567,0,1,f +9131,6541,72,18,f +9131,6558,1,12,f +9131,6564,15,1,f +9131,6565,15,1,f +9131,6636,71,3,f +9131,85984,71,3,f +9131,87079,72,1,f +9131,87083,72,1,f +9131,87087,15,4,f +9131,90194,15,2,f +9131,92738,0,1,f +9131,970c00,320,1,f +9131,970c00pr0779,19,1,f +9131,973pr2868c01,320,1,f +9131,973pr2870c01,19,1,f +9131,98286,71,2,f +9131,99780,72,2,f +9131,99781,15,4,f +9133,11568pr0001,484,1,f +9133,11816pr0001,84,1,f +9133,12825,0,3,f +9133,14769,30,1,f +9133,15397,484,1,f +9133,2423,2,3,f +9133,3005,30,3,f +9133,30089,0,1,f +9133,30136,84,4,f +9133,30136,19,9,f +9133,30137,84,4,f +9133,3020,30,4,f +9133,3020,2,1,f +9133,3023,19,1,f +9133,3031,2,4,f +9133,3040b,19,4,f +9133,3062b,0,1,f +9133,3062b,15,1,f +9133,3062b,19,7,f +9133,3062b,46,1,f +9133,3068bpr0139a,19,1,f +9133,33291,191,3,f +9133,33291,191,1,t +9133,33291,4,1,t +9133,33291,4,9,f +9133,3665,30,6,f +9133,3666,30,2,f +9133,3666,191,2,f +9133,3710,19,2,f +9133,3741,2,1,t +9133,3741,2,1,f +9133,3899,4,1,f +9133,4287,15,2,f +9133,4529,0,1,f +9133,4740,0,1,f +9133,48336,2,2,f +9133,54200,19,4,f +9133,54200,19,1,t +9133,60594,70,1,f +9133,60608,15,2,f +9133,61252,15,2,f +9133,6141,29,1,t +9133,6141,47,1,t +9133,6141,47,2,f +9133,6141,29,3,f +9133,63868,0,4,f +9133,63965,70,2,f +9133,64647,57,1,t +9133,64647,57,1,f +9133,85984,29,4,f +9133,85984,15,1,f +9133,87079,26,1,f +9133,87087,15,1,f +9133,92456pr0052c01b,84,1,f +9133,92819pr0003,26,1,f +9133,93352,308,1,f +9136,3004,1,6,f +9136,3005,1,24,f +9136,3010,1,6,f +9136,3031,1,2,f +9136,3036,1,1,f +9136,3068b,15,4,f +9136,3068b,1,12,f +9136,3069a,1,2,f +9136,3069a,15,6,f +9138,194cx1,2,1,f +9138,2340,4,2,f +9138,2362a,15,4,f +9138,2413,15,2,f +9138,2415,7,3,f +9138,2431,4,2,f +9138,2432,7,1,f +9138,2441,2,1,f +9138,2445,15,2,f +9138,2446,0,1,f +9138,2447,41,1,f +9138,2507,41,1,f +9138,2540,7,1,f +9138,2555,7,1,f +9138,2952,7,2,f +9138,3001,4,1,f +9138,3003,7,1,f +9138,3004,15,1,f +9138,3010,4,1,f +9138,3020,15,2,f +9138,3020,4,1,f +9138,3021,15,2,f +9138,3022,4,2,f +9138,3023,15,2,f +9138,3023,0,3,f +9138,3024,36,2,f +9138,3032,15,1,f +9138,3034,15,1,f +9138,3039,7,1,f +9138,3039pc5,7,1,f +9138,3062b,7,2,f +9138,3069b,4,1,f +9138,3069bp02,7,1,f +9138,3139,0,3,f +9138,3460,0,1,f +9138,3464,47,3,f +9138,3623,4,4,f +9138,3626bp04,14,1,f +9138,3626bpr0001,14,1,f +9138,3641,0,4,f +9138,3660,4,2,f +9138,3665,15,2,f +9138,3679,7,1,f +9138,3680,7,1,f +9138,3700,7,1,f +9138,3710,15,1,f +9138,3749,7,1,f +9138,3787,15,1,f +9138,3829c01,15,1,f +9138,3832,4,1,f +9138,4070,15,2,f +9138,4315,15,1,f +9138,4360,7,1,f +9138,4449,6,1,f +9138,4477,4,2,f +9138,4477,0,1,f +9138,4485,4,1,f +9138,4624,15,4,f +9138,4854,15,2,f +9138,4855,15,1,f +9138,4859,0,1,f +9138,4859,4,1,f +9138,6081,15,2,f +9138,6141,36,1,t +9138,6141,36,1,f +9138,6141,34,1,t +9138,6141,34,1,f +9138,6341stk01,9999,1,t +9138,970c00,2,1,f +9138,970c00,15,1,f +9138,973c11,0,1,f +9138,973px130c01,15,1,f +9139,3626bpb0149,6,1,f +9139,3626bpb0150,92,1,f +9139,3626bpb0151,6,1,f +9139,45522,19,3,f +9139,973bpb149c01,15,1,f +9139,973bpb150c01,110,1,f +9139,973bpb151c01,4,1,f +9139,bbcard19,9999,1,f +9139,bbcard20,9999,1,f +9139,bbcard21gl,9999,1,f +9139,x494cx1,15,1,f +9139,x494cx1,110,1,f +9139,x494cx1,4,1,f +9141,2335,4,2,f +9141,2335p01,15,2,f +9141,2335p02,15,1,f +9141,2339,7,3,f +9141,2343,14,1,f +9141,2350b,4,1,f +9141,2351,4,1,f +9141,2357,15,2,f +9141,2362a,15,1,f +9141,2376,0,3,f +9141,2412b,4,3,f +9141,2432,15,6,f +9141,2432,7,2,f +9141,2433,0,1,f +9141,2444,14,2,f +9141,2446,0,4,f +9141,2448,1,2,f +9141,2449,7,2,f +9141,2449,15,2,f +9141,2452,0,1,f +9141,2454a,7,1,f +9141,2458,7,2,f +9141,2465,15,2,f +9141,2530,8,3,f +9141,2540,0,2,f +9141,2540,15,3,f +9141,2547,15,1,f +9141,2547,7,1,f +9141,2548,15,1,f +9141,2555,7,2,f +9141,2564,0,1,f +9141,2569,0,1,f +9141,2610,14,2,f +9141,2621,1,1,f +9141,2622,1,1,f +9141,2622,15,2,f +9141,2623,1,1,f +9141,2634c01,15,1,f +9141,2654,0,13,f +9141,2877,7,4,f +9141,2921,0,16,f +9141,298c02,4,1,t +9141,298c02,4,1,f +9141,298c03,1,1,f +9141,298c03,1,1,t +9141,3002,4,4,f +9141,3002,0,4,f +9141,3004,0,6,f +9141,3004,15,3,f +9141,30048,0,1,f +9141,3005,1,2,f +9141,30079,14,2,f +9141,3008,1,5,f +9141,30080,14,2,f +9141,30082,8,2,f +9141,30082,8,1,t +9141,30083,41,1,f +9141,30084,0,1,f +9141,30085,7,1,f +9141,30086,14,1,f +9141,30088,14,4,f +9141,30089,14,1,f +9141,3009,15,2,f +9141,30090,47,4,f +9141,30091,7,4,f +9141,30092,14,2,f +9141,30093,2,6,f +9141,30094,7,1,f +9141,30094,14,2,f +9141,30095,14,3,f +9141,30099,7,3,f +9141,3010,7,1,f +9141,3010,15,1,f +9141,3010,0,2,f +9141,3020,14,1,f +9141,3021,15,2,f +9141,3021,0,3,f +9141,3022,0,2,f +9141,3023,7,4,f +9141,3023,15,4,f +9141,3023,1,2,f +9141,3024,34,2,f +9141,3024,36,2,f +9141,3024,46,2,f +9141,3030,15,1,f +9141,3031,14,1,f +9141,3032,7,1,f +9141,3033,15,1,f +9141,3033,1,4,f +9141,3035,1,1,f +9141,3039p23,15,1,f +9141,3039pr0005,15,1,f +9141,3040b,0,2,f +9141,3040b,1,2,f +9141,3040b,7,7,f +9141,3062b,4,4,f +9141,3069b,15,2,f +9141,3069bpc2,14,1,f +9141,3176,0,2,f +9141,3308,7,1,f +9141,3403,0,1,f +9141,3404,0,1,f +9141,3455,7,2,f +9141,3460,1,2,f +9141,3460,4,1,f +9141,3475a,0,2,f +9141,3613,14,2,f +9141,3622,7,1,f +9141,3622,1,2,f +9141,3622,15,4,f +9141,3623,1,2,f +9141,3623,7,2,f +9141,3626bpr0895,15,1,f +9141,3626bpx24,14,1,f +9141,3626bpx25,14,1,f +9141,3626bpx26,14,2,f +9141,3626bpx27,14,2,f +9141,3660,14,4,f +9141,3665,1,2,f +9141,3665,0,2,f +9141,3666,15,2,f +9141,3678a,0,2,f +9141,3710,0,1,f +9141,3710,7,5,f +9141,3741,2,4,f +9141,3747a,0,1,f +9141,3749,7,2,f +9141,3794a,4,1,f +9141,3794a,7,1,f +9141,3795,7,3,f +9141,3795,1,2,f +9141,3829c01,4,1,f +9141,3830,7,2,f +9141,3831,7,2,f +9141,3832,0,1,f +9141,3857,19,2,f +9141,3957a,15,2,f +9141,4032a,7,4,f +9141,4032a,2,2,f +9141,4032a,4,1,f +9141,4070,15,2,f +9141,4079,4,1,f +9141,4085c,1,1,f +9141,4085c,0,2,f +9141,4151a,8,1,f +9141,4162,7,6,f +9141,4175,7,2,f +9141,4213,15,2,f +9141,4215b,15,1,f +9141,4276b,0,1,f +9141,4286,15,4,f +9141,4286,7,4,f +9141,4287,15,2,f +9141,4289,15,1,f +9141,4315,14,1,f +9141,4360,15,1,f +9141,4460a,15,4,f +9141,4460a,7,1,f +9141,4477,15,2,f +9141,4485,0,3,f +9141,4485,4,3,f +9141,4504,0,1,f +9141,4589,0,4,f +9141,4599a,7,1,f +9141,4599a,4,2,f +9141,4623,0,5,f +9141,4625,15,2,f +9141,4738a,6,1,f +9141,4739a,6,1,f +9141,4740,15,2,f +9141,4740,8,1,f +9141,4865a,7,2,f +9141,56823,0,1,f +9141,57503,334,1,f +9141,57504,334,1,f +9141,57505,334,1,f +9141,57506,334,1,f +9141,59275,4,4,f +9141,59275,0,4,f +9141,6019,7,6,f +9141,6020,14,1,f +9141,6040,0,1,f +9141,6041,4,1,f +9141,6048a,0,4,f +9141,6082,8,3,f +9141,6083,8,4,f +9141,6086,0,1,f +9141,6106,7,4,f +9141,6108,7,2,f +9141,6111,1,2,f +9141,6112,15,2,f +9141,6126a,34,9,f +9141,6141,47,2,f +9141,6141,36,1,t +9141,6141,7,2,t +9141,6141,42,1,t +9141,6141,46,1,t +9141,6141,46,6,f +9141,6141,42,6,f +9141,6141,36,1,f +9141,6141,7,8,f +9141,6217,0,2,f +9141,6260,15,1,f +9141,6265,15,2,f +9141,6266,15,2,f +9141,6560stk01,9999,1,t +9141,6560stk02,9999,1,f +9141,70278,0,1,f +9141,71155,0,1,f +9141,73037,7,1,f +9141,75535,14,2,f +9141,970c00,0,1,f +9141,970c00,4,1,f +9141,970x021,0,2,f +9141,970x026,4,2,f +9141,973px51c01,4,4,f +9141,973px52c01,4,1,f +9141,973px52c02,4,1,f +9142,3021,1,1,f +9142,3021,4,1,f +9142,3039,47,1,f +9142,3660,14,1,f +9142,3747b,14,1,f +9142,4070,4,2,f +9142,4589,34,2,f +9142,4859,1,1,f +9144,48064c01,14,1,f +9145,76138,7,10,f +9146,20643,272,1,f +9146,3626cpr1688,42,1,f +9146,53705,148,1,f +9146,63965,70,1,f +9146,64567,0,1,f +9146,970x268pr001,42,1,f +9146,973pr3041c01,85,1,f +9146,98139,148,1,f +9148,2335,4,1,f +9148,2377,4,2,f +9148,2412b,80,2,f +9148,2456,15,2,f +9148,2456,1,2,f +9148,2456,4,2,f +9148,2456,14,2,f +9148,3001,14,8,f +9148,3001,2,4,f +9148,3001,4,8,f +9148,3001,1,8,f +9148,3001,0,4,f +9148,3001,15,8,f +9148,3002,0,4,f +9148,3002,15,8,f +9148,3002,14,8,f +9148,3002,4,8,f +9148,3002,1,8,f +9148,3002,2,4,f +9148,3003,14,28,f +9148,3003,15,28,f +9148,3003,0,12,f +9148,3003,2,12,f +9148,3003,1,28,f +9148,3003,4,28,f +9148,3004,15,12,f +9148,3004,0,6,f +9148,3004,4,12,f +9148,3004,14,12,f +9148,3004,1,12,f +9148,3004,2,6,f +9148,3005,14,8,f +9148,3005,1,8,f +9148,3005,4,8,f +9148,3005,15,8,f +9148,3005,0,4,f +9148,3005,2,4,f +9148,3007,4,1,f +9148,3007,1,1,f +9148,3007,15,1,f +9148,3007,14,1,f +9148,3008,15,2,f +9148,3008,14,2,f +9148,3008,4,2,f +9148,3008,1,2,f +9148,3009,4,4,f +9148,3009,15,4,f +9148,3009,14,4,f +9148,3009,1,4,f +9148,3010,2,4,f +9148,3010,15,4,f +9148,3010,4,4,f +9148,3010,1,4,f +9148,3010,0,4,f +9148,3010,14,4,f +9148,3020,4,2,f +9148,3022,4,2,f +9148,3029,2,1,f +9148,3034,4,2,f +9148,3037,1,2,f +9148,3039,14,2,f +9148,3039,1,4,f +9148,3040b,14,2,f +9148,3040b,1,4,f +9148,3062b,15,2,f +9148,3185,4,2,f +9148,3297,4,6,f +9148,3298,4,4,f +9148,3299,4,1,f +9148,3300,4,1,f +9148,3622,14,4,f +9148,3622,0,4,f +9148,3622,2,4,f +9148,3622,4,4,f +9148,3622,1,4,f +9148,3622,15,4,f +9148,3665,14,4,f +9148,3741,2,2,f +9148,3742,15,3,f +9148,3742,4,1,t +9148,3742,4,3,f +9148,3742,15,1,t +9148,3795,4,2,f +9148,3823,47,1,f +9148,3853,4,2,f +9148,3854,15,4,f +9148,3856,2,4,f +9148,3861b,15,1,f +9148,3957a,15,1,f +9148,4286,4,4,f +9148,4600,0,2,f +9148,4744pr0002,4,1,f +9148,4744pr0004,2,1,f +9148,6014,15,4,f +9148,6015,0,4,f +9152,2432,15,1,f +9152,3020,0,1,f +9152,3023,0,2,f +9152,3039,4,1,f +9152,4070,15,2,f +9152,4589,34,2,f +9152,4859,4,2,f +9157,3004,19,100,f +9159,bb527,0,1,f +9163,3626bpr0635,78,1,f +9163,3626cpr0635,78,1,f +9163,4530,19,1,f +9163,970c00pr0033,70,1,f +9163,973pb0613c01,14,1,f +9163,b09sw,9999,1,f +9164,10051,148,1,f +9164,2587,148,1,f +9164,3020,0,3,f +9164,3626cpr0976,320,1,f +9164,3700,72,1,f +9164,3937,72,1,f +9164,4623,72,2,f +9164,49668,0,2,f +9164,53989,72,2,f +9164,59900,70,1,f +9164,61184,71,1,f +9164,6123,72,1,f +9164,6134,71,1,f +9164,93273,70,1,f +9164,970c00pr0334,308,1,f +9164,973pr2057c01,308,1,f +9165,122c02,0,2,f +9165,2357,15,2,f +9165,2357,4,2,f +9165,2357,14,2,f +9165,2357,1,2,f +9165,2456,15,1,f +9165,2456,4,1,f +9165,2458,14,1,f +9165,2460,14,1,f +9165,2479,1,2,f +9165,3001,4,4,f +9165,3001,15,4,f +9165,3001,1,4,f +9165,3001,14,5,f +9165,3001,0,1,f +9165,3002,15,3,f +9165,3002,1,2,f +9165,3002,14,2,f +9165,3002,0,1,f +9165,3002,4,2,f +9165,3003,14,4,f +9165,3003,1,4,f +9165,3003,15,4,f +9165,3003,0,2,f +9165,3003,4,4,f +9165,3004,14,28,f +9165,3004,1,32,f +9165,3004,47,4,f +9165,3004,4,34,f +9165,3004,0,16,f +9165,3004,15,34,f +9165,3005,1,32,f +9165,3005,4,32,f +9165,3005,0,16,f +9165,3005,15,31,f +9165,3005,14,32,f +9165,3005,47,2,f +9165,3008,1,2,f +9165,3008,4,2,f +9165,3008,15,2,f +9165,3008,14,2,f +9165,3009,15,4,f +9165,3009,1,2,f +9165,3009,0,2,f +9165,3009,4,4,f +9165,3009,14,4,f +9165,3010,15,20,f +9165,3010,0,6,f +9165,3010,4,20,f +9165,3010,1,18,f +9165,3010,14,18,f +9165,3020,4,2,f +9165,3020,15,4,f +9165,3021,1,2,f +9165,3021,4,2,f +9165,3022,1,2,f +9165,3022,4,2,f +9165,3023,4,2,f +9165,3030,1,1,f +9165,3031,4,1,f +9165,3031,1,1,f +9165,3032,1,1,f +9165,3033,4,1,f +9165,3034,1,4,f +9165,3035,4,1,f +9165,3039,4,4,f +9165,3039,47,2,f +9165,3040b,4,4,f +9165,3062b,36,2,f +9165,3062b,33,2,f +9165,3068b,4,2,f +9165,3081cc01,4,2,f +9165,3149c01,1,1,f +9165,3245bpx11,1,1,f +9165,3297,4,8,f +9165,3298,4,6,f +9165,3299,4,2,f +9165,3300,4,2,f +9165,3403c01,4,1,f +9165,3460,1,2,f +9165,3470,2,1,f +9165,3622,14,10,f +9165,3622,1,8,f +9165,3622,4,10,f +9165,3622,0,4,f +9165,3622,15,12,f +9165,3624,4,1,f +9165,3626bpr0001,14,2,f +9165,3633,14,6,f +9165,3641,0,4,f +9165,3659,4,2,f +9165,3660,4,2,f +9165,3665,4,4,f +9165,3666,1,4,f +9165,3710,4,2,f +9165,3710,1,2,f +9165,3741,2,4,f +9165,3742,1,3,f +9165,3742,4,1,t +9165,3742,1,1,t +9165,3742,15,1,t +9165,3742,14,1,t +9165,3742,15,3,f +9165,3742,4,3,f +9165,3742,14,3,f +9165,3747b,4,2,f +9165,3788,4,2,f +9165,3794a,4,2,f +9165,3795,1,2,f +9165,3795,4,2,f +9165,3821,4,1,f +9165,3822,4,1,f +9165,3823,47,1,f +9165,3829c01,4,1,f +9165,3853,4,4,f +9165,3854,15,8,f +9165,3856,15,4,f +9165,3867,2,1,f +9165,3901,6,1,f +9165,3957a,15,2,f +9165,3960p04,15,1,f +9165,4212b,15,1,f +9165,4286,4,2,f +9165,4495b,14,1,f +9165,4530,6,1,f +9165,4864a,15,2,f +9165,73312,4,1,f +9165,970c00,15,1,f +9165,970c00,7,1,f +9165,973c01,15,1,f +9165,973c07,1,1,f +9166,2456,14,2,f +9166,2456,4,2,f +9166,2456,15,2,f +9166,2456,1,2,f +9166,2926,0,2,f +9166,3001,15,12,f +9166,3001,4,12,f +9166,3001,0,6,f +9166,3001,1,12,f +9166,3001,2,6,f +9166,3001,14,12,f +9166,3002,0,4,f +9166,3002,4,8,f +9166,3002,1,8,f +9166,3002,15,8,f +9166,3002,2,4,f +9166,3002,14,8,f +9166,3003,1,36,f +9166,3003,0,16,f +9166,3003,14,32,f +9166,3003,15,36,f +9166,3003,4,34,f +9166,3003,2,16,f +9166,3004,14,24,f +9166,3004,15,24,f +9166,3004,1,24,f +9166,3004,4,24,f +9166,3004,2,12,f +9166,3004,0,12,f +9166,3005,15,16,f +9166,3005,4,16,f +9166,3005,2,8,f +9166,3005,14,16,f +9166,3005,1,16,f +9166,3005,0,8,f +9166,3005pe1,14,2,f +9166,3007,1,1,f +9166,3007,4,1,f +9166,3007,14,1,f +9166,3007,15,1,f +9166,3008,1,2,f +9166,3008,4,2,f +9166,3008,14,2,f +9166,3008,15,2,f +9166,3009,15,4,f +9166,3009,14,4,f +9166,3009,4,4,f +9166,3009,1,4,f +9166,3010,14,6,f +9166,3010,1,6,f +9166,3010,4,6,f +9166,3010,15,6,f +9166,3010,0,4,f +9166,3010p01,14,1,f +9166,3020,1,2,f +9166,3020,4,2,f +9166,3021,1,2,f +9166,3021,4,2,f +9166,3022,1,2,f +9166,3022,4,2,f +9166,3032,4,1,f +9166,3034,4,2,f +9166,3035,4,1,f +9166,3039,47,2,f +9166,3062b,4,4,f +9166,3062b,14,4,f +9166,3065,47,4,f +9166,3185,0,2,f +9166,3185,4,4,f +9166,3188,14,1,f +9166,3189,14,1,f +9166,3297,4,4,f +9166,3298,14,4,f +9166,3298,4,6,f +9166,3299,4,2,f +9166,3300,4,2,f +9166,3307,4,2,f +9166,3307,15,2,f +9166,3471,2,1,f +9166,3622,15,4,f +9166,3622,14,4,f +9166,3622,1,4,f +9166,3622,2,4,f +9166,3622,4,4,f +9166,3622,0,4,f +9166,3730,1,1,f +9166,3731,1,1,f +9166,3741,2,3,f +9166,3742,15,4,f +9166,3742,4,8,f +9166,3747b,4,2,f +9166,3823,47,1,f +9166,3839b,15,2,f +9166,3937,4,1,f +9166,3957b,1,1,f +9166,3957b,15,1,f +9166,3960,4,1,f +9166,3960,15,1,f +9166,4070,1,2,f +9166,4070,4,2,f +9166,4130,15,2,f +9166,4131,0,2,f +9166,4132,4,2,f +9166,4132,15,2,f +9166,4133,72,2,f +9166,4133,15,2,f +9166,4175,0,2,f +9166,4204,2,1,f +9166,4286,4,4,f +9166,4286,14,2,f +9166,4287,4,4,f +9166,4600,71,2,f +9166,4744pr0002,4,1,f +9166,4744pr0004,2,1,f +9166,6014b,71,8,f +9166,60700,0,8,f +9166,6134,0,1,f +9166,6141,36,2,f +9166,6141,46,2,f +9167,11258,15,1,f +9167,12884,71,1,f +9167,12885,71,1,f +9167,3062b,322,1,f +9167,3626bpb0913,14,1,f +9167,88646,0,1,f +9167,95344,71,1,f +9167,970c00pr0485,15,1,f +9167,973pr2315c01,71,1,f +9168,11618,31,1,f +9168,11618,31,1,t +9168,14732pr0001,308,1,f +9168,2423,2,2,f +9168,3001,322,1,f +9168,3002,27,2,f +9168,3004,71,2,f +9168,3020,2,1,f +9168,3021,322,1,f +9168,3021,15,1,f +9168,3032,322,1,f +9168,3040b,72,2,f +9168,33291,4,1,t +9168,33291,4,3,f +9168,3665,71,2,f +9168,3666,27,1,f +9168,3710,72,2,f +9168,3795,2,1,f +9168,3941,70,2,f +9168,54200,33,2,f +9168,54200,33,1,t +9168,59230,15,1,t +9168,59230,15,1,f +9168,60478,15,1,f +9168,6091,322,2,f +9168,6141,15,2,f +9168,6141,15,1,t +9168,64648,179,1,f +9168,87580,19,1,f +9168,98284,70,1,f +9169,72824p01,15,2,f +9170,3038,1,8,f +9170,3040a,1,9,f +9170,3042,1,2,f +9170,3044a,1,2,f +9171,3626cpr0901,78,1,f +9171,50231,0,1,f +9171,98726,0,1,f +9172,14728c200,0,1,f +9172,2341,71,1,f +9172,2376,0,2,f +9172,2401,14,4,f +9172,2412b,72,4,f +9172,2412b,4,18,f +9172,2431,72,4,f +9172,2432,1,2,f +9172,2432,71,4,f +9172,2453a,71,8,f +9172,2456,14,4,f +9172,2462,71,4,f +9172,2486,14,2,f +9172,2540,72,3,f +9172,2637,71,12,f +9172,2780,0,3,t +9172,2780,0,16,f +9172,2855,71,1,f +9172,2856,0,1,f +9172,2921,14,2,f +9172,298c02,1,2,f +9172,298c02,1,1,t +9172,3001,14,1,f +9172,3005,1,2,f +9172,3008,15,1,f +9172,3008,4,1,f +9172,3010,4,3,f +9172,3010,1,5,f +9172,3010,14,2,f +9172,3010,15,2,f +9172,30151a,4,1,f +9172,3020,1,2,f +9172,3020,72,1,f +9172,3020,71,4,f +9172,3021,72,18,f +9172,3021,14,9,f +9172,3022,72,21,f +9172,30228,72,1,f +9172,3023,72,2,f +9172,3023,71,1,f +9172,3023,14,4,f +9172,3023,2,2,f +9172,30236,72,2,f +9172,30237a,15,3,f +9172,30259,14,2,f +9172,3031,72,8,f +9172,3032,72,1,f +9172,3033,71,2,f +9172,3034,71,1,f +9172,30340,15,1,f +9172,30363,72,8,f +9172,30374,14,1,f +9172,3039,72,1,f +9172,3039,71,1,f +9172,30395,72,1,f +9172,30503,72,4,f +9172,30517,14,16,f +9172,30526,71,2,f +9172,3062b,15,1,f +9172,3062b,72,8,f +9172,30663,71,1,f +9172,3068b,14,1,f +9172,3069b,2,1,f +9172,3176,71,2,f +9172,32000,0,2,f +9172,32012,72,1,f +9172,32013,72,2,f +9172,32018,71,10,f +9172,32018,14,21,f +9172,32039,4,2,f +9172,32054,4,12,f +9172,32062,4,16,f +9172,32064b,14,26,f +9172,32073,71,4,f +9172,32123b,14,8,f +9172,32123b,14,1,t +9172,32126,71,2,f +9172,32316,71,1,f +9172,32333,71,4,f +9172,32449,0,6,f +9172,32523,0,4,f +9172,32524,14,6,f +9172,32526,71,4,f +9172,32531,0,3,f +9172,32532,71,2,f +9172,32555,14,4,f +9172,32556,71,3,f +9172,33299a,71,1,f +9172,3626bpr0386,14,1,f +9172,3626bpr0387,14,1,f +9172,3626bpr0389,14,1,f +9172,3647,71,2,f +9172,3647,71,1,t +9172,3660,71,1,f +9172,3666,72,1,f +9172,3666,71,8,f +9172,3666,0,5,f +9172,3701,14,3,f +9172,3701,4,2,f +9172,3705,0,8,f +9172,3706,0,3,f +9172,3707,0,5,f +9172,3708,0,2,f +9172,3709,14,10,f +9172,3710,72,5,f +9172,3710,0,8,f +9172,3710,71,5,f +9172,3747a,14,2,f +9172,3749,19,4,f +9172,3794a,71,14,f +9172,3794a,0,12,f +9172,3794a,15,1,f +9172,3795,4,2,f +9172,3833,4,3,f +9172,3836,70,1,f +9172,3837,0,1,f +9172,3841,72,1,f +9172,3894,14,2,f +9172,3894,1,2,f +9172,3900,71,8,f +9172,3941,72,1,f +9172,3941,0,8,f +9172,3958,72,2,f +9172,3958,15,1,f +9172,4032a,72,1,f +9172,4033,4,1,f +9172,4034,47,1,f +9172,4079,4,1,f +9172,4083,0,1,f +9172,4095,0,4,f +9172,4151,0,1,f +9172,4162,72,10,f +9172,4162,14,2,f +9172,41677,72,4,f +9172,41678,71,4,f +9172,4175,72,1,f +9172,4182,4,1,f +9172,4182,1,1,f +9172,4183,47,2,f +9172,4207,71,4,f +9172,4215b,4,4,f +9172,4215b,1,3,f +9172,4215b,40,2,f +9172,42610,71,2,f +9172,4274,1,1,f +9172,4274,1,1,t +9172,4274,71,1,t +9172,4274,71,4,f +9172,4286,14,6,f +9172,4287,14,2,f +9172,43093,1,1,f +9172,4345b,71,2,f +9172,4346,71,2,f +9172,4349,72,1,f +9172,4449,70,1,f +9172,44728,71,3,f +9172,4476b,14,2,f +9172,4509,72,1,f +9172,4519,71,2,f +9172,4523,1,1,f +9172,45575,71,1,f +9172,45590,0,2,f +9172,4599a,71,1,f +9172,4740,72,8,f +9172,4872,40,1,f +9172,48729a,72,9,f +9172,48989,71,1,f +9172,54200,182,2,f +9172,6063,72,1,f +9172,6091,0,2,f +9172,6106,71,4,f +9172,6141,182,1,t +9172,6141,182,4,f +9172,6141,71,1,t +9172,6141,71,1,f +9172,6231,15,2,f +9172,6536,71,4,f +9172,6538b,0,2,f +9172,6541,15,2,f +9172,6558,0,27,f +9172,6583,14,4,f +9172,6587,72,6,f +9172,6632,15,8,f +9172,6632,14,4,f +9172,6636,71,7,f +9172,6636,72,6,f +9172,6636,1,2,f +9172,73090b,0,1,f +9172,73983,14,2,f +9172,75535,0,1,f +9172,7905stk01,9999,1,t +9172,970c00,25,3,f +9172,973pr1160c01,1,1,f +9172,973pr1182c01,25,2,f +9173,3070b,14,2,f +9173,3626cpr1311,14,1,f +9173,6256pr0001,191,1,f +9173,88646,0,1,f +9173,90388pr0002,4,1,f +9173,90542pr0002,288,2,f +9173,970c00pr0602,320,1,f +9173,973c02,10,1,f +9174,21019pr0191,15,1,f +9174,24633pr0001,15,1,f +9174,24779,15,1,f +9174,25877,0,1,f +9174,88646,0,1,f +9174,973pr3315c01,1,1,f +9175,2458,14,1,f +9175,3003,4,1,f +9175,3020,2,1,f +9175,3022,2,1,f +9175,3039,47,1,f +9175,3039,4,1,f +9175,3062b,15,2,f +9175,3747b,4,1,f +9177,11477,2,3,f +9177,2412b,15,1,f +9177,3020,2,1,f +9177,3020,27,1,f +9177,3022,14,1,f +9177,3022,2,2,f +9177,3069b,4,1,f +9177,3795,2,1,f +9177,3795,27,1,f +9177,4032a,1,3,f +9177,4070,2,2,f +9177,41769,2,1,f +9177,48336,2,1,f +9177,60470b,2,1,f +9177,6141,33,4,f +9177,73983,2,1,f +9177,93273,2,2,f +9177,98138pr0008,15,2,f +9177,99780,2,1,f +9181,32553,7,1,f +9181,32554,57,1,f +9181,4519,0,1,f +9181,4519,0,1,t +9183,2357,15,1,f +9183,2420,15,1,f +9183,2555,0,1,f +9183,3002,15,1,f +9183,3021,0,1,t +9183,3021,1,1,f +9183,3021,15,1,f +9183,3022,15,1,f +9183,3022,19,1,f +9183,3023,15,2,f +9183,3023,0,4,f +9183,3023,19,2,f +9183,3024,15,2,f +9183,3028,28,1,f +9183,3062b,70,3,f +9183,3068b,15,1,f +9183,3069b,15,4,f +9183,3070b,15,1,f +9183,3623,15,1,f +9183,3665,15,2,f +9183,3700,15,1,f +9183,3710,15,1,f +9183,3794b,19,2,f +9183,3794b,0,2,f +9183,3957a,0,1,f +9183,4032a,1,1,f +9183,4032a,0,1,t +9183,4081b,0,1,f +9183,4274,1,1,f +9183,44301a,15,1,f +9183,44302a,15,1,f +9183,4589,70,1,f +9183,6091,15,2,f +9183,6141,19,1,f +9183,6141,15,5,f +9183,6141,1,5,f +9183,6141,0,5,t +9183,6541,15,1,f +9185,2524,6,1,f +9185,2542,4,1,f +9185,2610,14,1,f +9185,3004,14,1,f +9185,30137,6,4,f +9185,3036,6,1,f +9185,3069bp03,7,2,f +9185,3626bp02,14,1,f +9185,3794a,4,1,f +9185,3835,0,1,f +9185,3962b,0,1,f +9185,4085c,7,2,f +9185,4485,1,1,f +9185,970c00,8,1,f +9185,973p8ac01,0,1,f +9187,2412b,57,2,f +9187,2415,7,1,f +9187,30332,0,2,f +9187,3034,14,2,f +9187,30621,14,1,f +9187,30627,14,1,f +9187,30640,0,1,f +9187,30649,41,1,f +9187,30663,7,1,f +9187,3139,0,1,f +9187,3464,47,1,f +9187,40344c01,7,1,f +9187,42607c01,14,2,f +9187,42608,7,2,f +9187,42610,7,4,f +9187,51011,0,4,f +9187,6239px4,14,1,f +9187,6249,25,2,f +9187,js014,-1,1,f +9187,js021,-1,1,f +9188,3002,14,2,f +9188,3034,4,1,f +9188,3037,14,2,f +9188,3039,4,1,f +9188,3039,47,1,f +9188,3137c01,0,2,f +9188,3298,0,1,f +9188,3641,0,4,f +9190,3005pta,15,2,f +9190,3005ptac,15,1,f +9190,3005ptae,15,1,f +9190,3005ptau,15,1,f +9190,3005ptb,15,2,f +9190,3005ptc,15,1,f +9190,3005ptd,15,2,f +9190,3005pte,15,2,f +9190,3005ptf,15,1,f +9190,3005ptg,15,2,f +9190,3005pth,15,2,f +9190,3005pti,15,1,f +9190,3005ptj,15,1,f +9190,3005ptk,15,2,f +9190,3005ptl,15,2,f +9190,3005ptm,15,2,f +9190,3005ptn,15,2,f +9190,3005pto,15,1,f +9190,3005ptoslas,15,1,f +9190,3005ptou,15,1,f +9190,3005ptp,15,1,f +9190,3005ptq,15,1,f +9190,3005ptr,15,2,f +9190,3005pts,15,2,f +9190,3005ptt,15,1,f +9190,3005ptu,15,1,f +9190,3005ptuu,15,1,f +9190,3005ptv,15,1,f +9190,3005ptw,15,1,f +9190,3005ptx,15,1,f +9190,3005pty,15,1,f +9190,3005ptz,15,1,f +9193,3647,7,4,f +9193,3648a,7,2,f +9193,3649,7,2,f +9193,3650a,7,2,f +9193,3736,7,1,f +9193,3743,7,6,f +9193,4019,7,2,f +9193,4185,7,1,f +9194,3626bpr0879,14,1,f +9194,88646,0,1,f +9194,90391pr01,70,1,f +9194,970c03pr0285,14,1,f +9194,973pr1950c01,71,1,f +9194,98366,80,1,f +9194,98367pr0001,320,1,f +9195,30115,2,1,f +9195,3626bpr0829,14,1,f +9195,3678bpr0004b,15,1,f +9195,88646,0,1,f +9195,95328pr0001,0,1,f +9195,973pr1826c01,15,1,f +9196,2420,72,2,f +9196,2431,320,6,f +9196,2431,15,7,f +9196,2444,15,9,f +9196,2445,15,2,f +9196,2450,320,2,f +9196,2476a,15,2,f +9196,2555,0,4,f +9196,2723,0,5,f +9196,2780,0,1,t +9196,2780,0,13,f +9196,2817,71,5,f +9196,2825,15,4,f +9196,3004,71,3,f +9196,3020,320,3,f +9196,3020,15,4,f +9196,3021,15,4,f +9196,3023,15,7,f +9196,3029,15,3,f +9196,3030,15,2,f +9196,3032,15,5,f +9196,30355,15,1,f +9196,30356,15,2,f +9196,30374,15,1,f +9196,30384,40,1,f +9196,30503,320,2,f +9196,3068bpr0108,72,1,f +9196,32000,71,2,f +9196,32002,72,9,f +9196,32002,72,1,t +9196,32013,15,3,f +9196,32014,15,4,f +9196,32056,71,2,f +9196,32062,4,5,f +9196,32064b,320,2,f +9196,32072,0,4,f +9196,32073,71,1,f +9196,32123b,71,16,f +9196,32123b,71,1,t +9196,32138,0,2,f +9196,32140,71,2,f +9196,32181c03,47,2,f +9196,32192,72,2,f +9196,32269,0,2,f +9196,32270,0,2,f +9196,32449,71,2,f +9196,32474,0,2,f +9196,32557,71,2,f +9196,3460,15,2,f +9196,3622,15,2,f +9196,3623,320,2,f +9196,3623,15,6,f +9196,3626bpr0525,78,1,f +9196,3659,15,1,f +9196,3660,15,10,f +9196,3666,15,2,f +9196,3666,320,22,f +9196,3680,15,7,f +9196,3700,4,2,f +9196,3701,15,4,f +9196,3703,15,4,f +9196,3705,0,2,f +9196,3706,0,3,f +9196,3708,0,1,f +9196,3710,320,3,f +9196,3713,71,1,f +9196,3713,71,1,t +9196,3737,0,4,f +9196,3749,19,10,f +9196,3794a,320,4,f +9196,3795,15,8,f +9196,3894,15,4,f +9196,3937,72,3,f +9196,3941,0,2,f +9196,3941,15,1,f +9196,4032a,72,2,f +9196,40490,14,1,f +9196,4079,1,1,f +9196,4081b,72,2,f +9196,4095,0,2,f +9196,41531,71,4,f +9196,41531,0,2,f +9196,4162,15,1,f +9196,41672,0,2,f +9196,41677,1,4,f +9196,41747,15,2,f +9196,41748,15,2,f +9196,41764,378,1,f +9196,41764,15,1,f +9196,41765,15,1,f +9196,41765,378,1,f +9196,41767,320,3,f +9196,41768,320,3,f +9196,41769,15,1,f +9196,41770,15,1,f +9196,4185,71,2,f +9196,42003,0,1,f +9196,42023,15,2,f +9196,42610,71,2,f +9196,4274,1,1,t +9196,4274,1,1,f +9196,43093,1,9,f +9196,43121,0,2,f +9196,43337,15,2,f +9196,43722,15,1,f +9196,44126,15,1,f +9196,44358,71,2,f +9196,4519,71,6,f +9196,4589,33,4,f +9196,4740,33,3,f +9196,47720,0,1,f +9196,4865a,15,2,f +9196,48723,72,3,f +9196,50304,15,1,f +9196,50451,15,2,f +9196,53533,0,1,f +9196,54383,15,3,f +9196,54383,320,7,f +9196,54384,320,5,f +9196,54384,15,1,f +9196,55013,72,1,f +9196,55982,0,4,f +9196,56145,71,2,f +9196,57899,0,1,f +9196,59426,72,2,f +9196,59443,0,17,f +9196,60208,71,4,f +9196,60470a,71,1,f +9196,60478,71,2,f +9196,6081,15,2,f +9196,6091,15,4,f +9196,61184,71,4,f +9196,61189pr0001,15,1,f +9196,6134,71,3,f +9196,6179,15,2,f +9196,6180,320,2,f +9196,6180,15,4,f +9196,6191,15,2,f +9196,6233,0,2,f +9196,6536,71,3,f +9196,6541,0,6,f +9196,6553,71,4,f +9196,6558,1,9,f +9196,6564,15,1,f +9196,6565,15,1,f +9196,6587,72,1,f +9196,6629,71,2,f +9196,6632,15,2,f +9196,6636,15,1,f +9196,7674stk01,9999,1,t +9196,970x026,15,1,f +9196,973pr1389c01,15,1,f +9197,2555,0,1,f +9197,30136,70,2,f +9197,3020,70,1,f +9197,3024,0,1,f +9197,3024,46,3,f +9197,3068bpr0139a,19,1,f +9198,10197,72,5,f +9198,11302pat0001,36,2,f +9198,15462,28,1,f +9198,15976,0,2,f +9198,18587,14,1,f +9198,18588,72,1,f +9198,19049,179,1,f +9198,19050,41,1,f +9198,19087,179,1,f +9198,19149pat0003,4,1,f +9198,20251,158,1,f +9198,20252,148,4,f +9198,2780,0,1,t +9198,2780,0,3,f +9198,32013,0,2,f +9198,32039,71,1,f +9198,32062,4,1,f +9198,32123b,14,2,f +9198,32123b,14,1,t +9198,32270,0,1,f +9198,43093,1,4,f +9198,53585,0,1,f +9198,6141,57,12,f +9198,6141,57,1,t +9198,63869,0,1,f +9198,64276,0,2,f +9198,90609,0,2,f +9198,90612,0,2,f +9198,90617,72,2,f +9198,90639,4,1,f +9198,90640,179,2,f +9198,90640,57,4,f +9198,92907,0,1,f +9198,93571,0,1,f +9198,93575,57,2,f +9198,98590,0,1,f +9200,22969,80,2,f +9200,2420,7,8,f +9200,2431,14,2,f +9200,2431,0,1,f +9200,2444,4,6,f +9200,2508,7,4,f +9200,2695,80,2,f +9200,2696,0,2,f +9200,2715pr0003,14,1,f +9200,2716,0,1,f +9200,2717,0,1,f +9200,2730,14,2,f +9200,2730,0,2,f +9200,2730,7,2,f +9200,2736,7,2,f +9200,2743,14,2,f +9200,2744,14,2,f +9200,2780,0,97,f +9200,2817,7,2,f +9200,2819,7,1,f +9200,2825,7,4,f +9200,2847c02,0,1,f +9200,2850a,47,20,f +9200,2851,14,20,f +9200,2852,7,20,f +9200,2853,7,11,f +9200,2854,8,6,f +9200,2854,7,2,f +9200,2905,7,2,f +9200,2905,14,2,f +9200,3022,7,6,f +9200,3022,4,4,f +9200,3022,0,2,f +9200,3023,7,14,f +9200,3023,0,7,f +9200,3068b,7,1,f +9200,32000,0,10,f +9200,32001,0,2,f +9200,32002,8,19,f +9200,32009,14,4,f +9200,32012,14,1,f +9200,32013,0,2,f +9200,32013,14,10,f +9200,32017,0,2,f +9200,32017,14,4,f +9200,32017,7,2,f +9200,32028,14,4,f +9200,32028,7,4,f +9200,32034,7,1,f +9200,32039,14,6,f +9200,32039,4,1,f +9200,32054,14,16,f +9200,32054,4,9,f +9200,32056,14,4,f +9200,32062,0,18,f +9200,32063,14,8,f +9200,32065,14,4,f +9200,32073,0,3,f +9200,32123b,7,20,f +9200,32140,14,3,f +9200,32180,0,2,f +9200,32184,7,2,f +9200,32190,14,1,f +9200,32191,14,1,f +9200,32192,14,2,f +9200,32195b,8,1,f +9200,32209,15,5,f +9200,32235,14,4,f +9200,32251,0,4,f +9200,32269,7,6,f +9200,32270,7,6,f +9200,32271,0,2,f +9200,32291,0,5,f +9200,32298pr01,0,2,f +9200,32310,14,5,f +9200,32316,14,6,f +9200,32316,7,5,f +9200,32333,47,10,f +9200,3298,7,2,f +9200,3460,0,1,f +9200,3460,14,6,f +9200,3623,0,6,f +9200,3647,7,2,f +9200,3648a,7,1,f +9200,3666,7,1,f +9200,3666,0,1,f +9200,3673,7,6,f +9200,3700,7,11,f +9200,3701,0,5,f +9200,3701,14,2,f +9200,3701,7,5,f +9200,3702,7,2,f +9200,3702,14,2,f +9200,3703,14,6,f +9200,3703,0,4,f +9200,3703,7,4,f +9200,3705,0,18,f +9200,3706,0,7,f +9200,3707,0,1,f +9200,3708,0,2,f +9200,3709,4,3,f +9200,3709,14,4,f +9200,3709,7,5,f +9200,3710,0,9,f +9200,3710,14,2,f +9200,3711a,0,81,f +9200,3713,7,25,f +9200,3737,0,2,f +9200,3749,7,47,f +9200,3794a,0,2,f +9200,3894,7,2,f +9200,3895,14,2,f +9200,4019,7,18,f +9200,4162,14,14,f +9200,4274,7,5,f +9200,4282,14,1,f +9200,4477,14,4,f +9200,4477,0,2,f +9200,4519,0,20,f +9200,5306bc046,0,1,f +9200,6141,7,16,f +9200,6179,14,5,f +9200,6536,7,2,f +9200,6536,0,2,f +9200,6536,4,1,f +9200,6538b,0,2,f +9200,6538b,14,9,f +9200,6538b,7,7,f +9200,6541,0,2,f +9200,6558,0,30,f +9200,6571,0,2,f +9200,6575,7,2,f +9200,6579,0,2,f +9200,6580,14,2,f +9200,6587,8,3,f +9200,6589,7,5,f +9200,6595,14,2,f +9200,6628,0,2,f +9200,6632,14,4,f +9200,6632,0,4,f +9200,6636,14,8,f +9200,6642,8,1,f +9200,6643,8,1,f +9200,6644,0,3,f +9200,71427c01,7,1,f +9200,75c03,8,2,f +9200,75c29,7,1,f +9200,78c03,179,10,f +9200,78c07,179,6,f +9200,8457stk01,9999,1,t +9200,8457tapentsc,9999,1,t +9200,8457tapepal,9999,1,t +9200,bb298,15,2,f +9200,flex08c05l,7,2,f +9200,flex08c33l,7,1,f +9200,tech014,9999,1,f +9201,3020,14,1,f +9201,3731,71,1,f +9201,4600,0,2,f +9201,4865a,14,2,f +9201,50254,0,1,t +9201,50254,0,4,f +9201,6231,14,4,f +9201,6231,14,1,t +9201,63082,71,1,f +9202,3021,15,30,f +9202,728,7,1,f +9202,729,47,1,f +9204,2432,15,1,f +9204,2516,0,1,f +9204,2540,71,1,f +9204,2555,15,1,f +9204,2780,0,1,f +9204,2877,15,1,f +9204,30027b,15,4,f +9204,30027b,71,2,f +9204,30028,0,6,f +9204,3005,15,1,f +9204,30151a,47,1,f +9204,30153,41,2,f +9204,30165,0,1,f +9204,30192,72,1,f +9204,3020,15,1,f +9204,3021,14,1,f +9204,30214,47,1,f +9204,3022,0,1,f +9204,3022,1,1,f +9204,3023,71,1,f +9204,3023,46,1,f +9204,3039,72,1,f +9204,3062b,41,2,f +9204,32064b,72,1,f +9204,32558pat0001,4,1,f +9204,3626bpr0471,15,1,f +9204,3626bpr0476,78,1,f +9204,3794a,72,1,f +9204,3795,0,1,f +9204,3829c01,14,1,f +9204,3832,72,1,f +9204,4032a,71,2,f +9204,4070,15,1,f +9204,41769,0,1,f +9204,41770,0,1,f +9204,41854,73,2,f +9204,41862,71,1,f +9204,4360,0,1,f +9204,44675,0,2,f +9204,4589,14,1,f +9204,4736,0,1,f +9204,48336,0,1,f +9204,55704,0,1,f +9204,55706,0,1,f +9204,56630,0,1,f +9204,57539,0,1,f +9204,59233pat0001,41,1,f +9204,6014b,71,2,f +9204,6015,0,2,f +9204,60483,0,1,f +9204,61072,135,2,f +9204,6157,0,2,f +9204,6157,15,2,f +9204,970c00,1,1,f +9204,970c00,72,1,f +9204,973c06,-1,1,f +9204,973pr1382c01,72,1,f +9205,122c01,7,2,f +9205,3001a,14,1,f +9205,3001a,1,1,f +9205,3003,4,1,f +9205,3005,47,2,f +9205,3005,14,2,f +9205,3010,14,6,f +9205,3010pb035e,1,1,f +9205,3020,14,1,f +9205,3020,7,2,f +9205,3023,7,7,f +9205,3023,14,2,f +9205,3030,1,1,f +9205,3032,1,1,f +9205,3034,7,2,f +9205,3035,1,1,f +9205,3137c01,0,2,f +9205,3430c02,0,1,f +9205,3624,1,1,f +9205,3626apr0001,14,1,f +9205,3641,0,8,f +9205,3787,7,1,f +9205,3788,1,1,f +9205,3821,14,1,f +9205,3822,14,1,f +9205,3823,47,2,f +9205,3829c01,14,1,f +9205,970c00,0,1,f +9205,973c02,4,1,f +9206,2346,0,6,f +9206,2420,7,4,f +9206,2719,7,3,f +9206,3023,7,4,f +9206,3023,14,6,f +9206,3040b,7,2,f +9206,3040b,14,6,f +9206,3069b,7,2,f +9206,3460,14,2,f +9206,3482,14,6,f +9206,3647,7,4,f +9206,3648a,7,2,f +9206,3650a,7,1,f +9206,3651,7,4,f +9206,3666,14,2,f +9206,3666,7,4,f +9206,3673,7,12,f +9206,3700,14,6,f +9206,3700,7,4,f +9206,3701,7,2,f +9206,3701,14,4,f +9206,3702,14,2,f +9206,3703,14,2,f +9206,3705,0,2,f +9206,3706,0,4,f +9206,3707,0,2,f +9206,3708,0,2,f +9206,3709,14,4,f +9206,3709,7,2,f +9206,3710,7,2,f +9206,3710,14,2,f +9206,3713,7,8,f +9206,3737,0,4,f +9206,3738,7,2,f +9206,3743,7,1,f +9206,3749,7,4,f +9206,3795,14,4,f +9206,3894,14,4,f +9206,3894,7,2,f +9206,3895,14,4,f +9206,3895,7,2,f +9206,4019,7,1,f +9206,4143,7,2,f +9206,4185,7,3,f +9206,4261,7,2,f +9206,4265a,7,10,f +9206,4273b,7,2,f +9206,4275b,14,4,f +9206,4276b,14,4,f +9206,4350c02,7,1,f +9206,4459,0,10,f +9206,4519,0,2,f +9206,4716,0,1,f +9206,6216b,7,1,f +9206,766c01,7,2,f +9206,9244,7,1,f +9206,rb00164,0,1,f +9206,rb00168,0,2,f +9206,rb00170,0,1,f +9206,x466,7,1,f +9207,2780,0,3,f +9207,32062,0,2,f +9207,32073,0,1,f +9207,32165,0,1,f +9207,32166,22,2,f +9207,32168,0,1,f +9207,32171pb056,21,1,f +9207,32171pb057,21,1,f +9207,32172,0,2,f +9207,32173,22,1,f +9207,32173,0,2,f +9207,32174,0,2,f +9207,32174,22,3,f +9207,32175,0,2,f +9207,32176,22,1,f +9207,32190,0,1,f +9207,32194,0,1,f +9207,3647,7,2,f +9207,3648b,0,1,f +9207,3705,0,1,f +9207,3706,0,1,f +9207,4716,14,1,f +9207,6536,0,1,f +9207,x209pb05,0,1,f +9211,2343,8,2,f +9211,2350b,1,1,f +9211,2351,0,1,f +9211,2376,0,1,f +9211,2412b,7,5,f +9211,2412b,7,1,t +9211,2431pr0017,14,6,f +9211,2432,0,2,f +9211,2445,7,1,f +9211,2458,7,2,f +9211,2465,0,4,f +9211,2635a,1,2,f +9211,2877,0,2,f +9211,2877,7,1,f +9211,30000,1,3,f +9211,3001,1,1,f +9211,3001,14,2,f +9211,3001,0,18,f +9211,3002,0,1,f +9211,3003,7,2,f +9211,3004,1,1,f +9211,3010,14,12,f +9211,3010,15,1,f +9211,30104,8,1,f +9211,3010pr0016,0,2,f +9211,30144,7,12,f +9211,30157,8,1,f +9211,30181,14,2,f +9211,30182,0,3,f +9211,30183,14,1,f +9211,30194,8,1,f +9211,3020,14,2,f +9211,30209,14,1,f +9211,3021,1,1,f +9211,30228,8,1,f +9211,30237a,0,2,f +9211,30237a,15,2,f +9211,30256,15,4,f +9211,30258p01,14,2,f +9211,30258p04,15,1,f +9211,30259p05,14,2,f +9211,30261p01,15,2,f +9211,30261p04,15,1,f +9211,30278c01,15,1,f +9211,30285,14,10,f +9211,3029,0,1,f +9211,30300,14,1,f +9211,3032,0,1,f +9211,3032,15,1,f +9211,3037,14,1,f +9211,30386,14,1,f +9211,30387,14,1,f +9211,30387p01,14,1,f +9211,30388,14,1,f +9211,30389a,14,2,f +9211,3039,42,4,f +9211,30390b,7,3,f +9211,30391,0,10,f +9211,30394,14,1,f +9211,30395,8,2,f +9211,30396,4,2,f +9211,30397,0,6,f +9211,30398,14,1,f +9211,30399,7,3,f +9211,30400,0,3,f +9211,30401px1,8,1,f +9211,30402px1,8,1,f +9211,3040b,42,6,f +9211,3040b,14,2,f +9211,3040b,33,2,f +9211,30477px1,8,2,f +9211,3062b,42,2,f +9211,3062b,8,10,f +9211,3068b,4,5,f +9211,3068bp05,15,1,f +9211,3068bp06,15,1,f +9211,3068bpx28,7,1,f +9211,3403c01,0,1,f +9211,3455,14,4,f +9211,3492c01,14,1,f +9211,3626bp04,14,1,f +9211,3626bpb0103,14,2,f +9211,3626bpx121,14,1,f +9211,3626bpx43,14,1,f +9211,3666,14,2,f +9211,3710,7,2,f +9211,3730,0,1,f +9211,3747b,14,1,f +9211,3794a,4,1,f +9211,3823,34,1,f +9211,3823,41,2,f +9211,3829c01,1,4,f +9211,3832,0,1,f +9211,3833,15,4,f +9211,3836,6,1,f +9211,3837,8,1,f +9211,3841,8,1,f +9211,3957a,15,2,f +9211,4079,0,1,f +9211,4083,15,1,f +9211,4201,1,1,f +9211,4282,0,2,f +9211,43337,7,2,f +9211,4476b,14,1,f +9211,4485,0,1,f +9211,4600,7,5,f +9211,4740,15,2,f +9211,4740,15,1,t +9211,4854,14,1,f +9211,4865a,0,1,f +9211,56823,0,1,f +9211,6014a,14,8,f +9211,6014a,15,6,f +9211,6015,0,14,f +9211,6020,0,2,f +9211,6141,36,2,t +9211,6141,42,6,f +9211,6141,42,3,t +9211,6141,36,6,f +9211,6249,8,3,f +9211,6583,7,1,f +9211,73037,1,1,f +9211,970c00,1,3,f +9211,970c00,25,1,f +9211,970c00,0,1,f +9211,973pb0014c01,25,2,f +9211,973px177c01,25,1,f +9211,973px67c01,0,1,f +9212,2352,14,2,f +9212,3001,0,18,f +9212,3001,14,26,f +9212,3001,15,24,f +9212,3001,1,27,f +9212,3001,4,24,f +9212,3001pr1,14,1,f +9212,3002a,4,8,f +9212,3002a,14,8,f +9212,3002a,15,8,f +9212,3002a,0,4,f +9212,3002a,1,8,f +9212,3003,0,16,f +9212,3003,15,20,f +9212,3003,14,22,f +9212,3003,1,22,f +9212,3003,4,22,f +9212,3003,47,2,f +9212,3003pe1,14,2,f +9212,3006,4,2,f +9212,3007,1,2,f +9212,3007,14,2,f +9212,3137c01,0,2,f +9212,3185,14,6,f +9212,3471,2,2,f +9212,3483,0,8,f +9212,3596pb03,15,1,f +9212,3641,0,4,f +9212,4130,14,3,f +9212,4131,4,3,f +9212,4132,14,5,f +9212,4133,4,5,f +9212,4180c02,0,4,f +9212,4201,2,1,f +9212,4202,4,1,f +9212,4204,2,1,f +9212,4727,2,2,f +9212,4728,4,1,f +9212,4728,14,1,f +9212,4730,1,1,f +9212,4743,4,1,f +9212,4743,1,1,f +9212,4744,14,1,f +9212,4744,4,1,f +9212,4745,14,1,f +9212,4747,4,1,f +9212,4748,4,1,f +9212,bfp001,9999,1,f +9212,bfp002,9999,1,f +9213,10113,0,1,f +9213,10201,71,4,f +9213,10202,71,1,f +9213,10247,71,4,f +9213,10928,72,2,f +9213,11090,0,4,f +9213,11153,0,2,f +9213,11203,19,4,f +9213,11211,71,5,f +9213,11212,72,2,f +9213,11399,72,1,f +9213,11477,71,2,f +9213,12825,72,30,f +9213,13965,0,2,f +9213,14716,0,4,f +9213,15303,36,3,f +9213,15400,72,2,f +9213,15423pr0001,0,2,f +9213,15443,70,1,f +9213,15444,4,1,f +9213,15445,72,4,f +9213,15446,72,2,f +9213,2412b,72,24,f +9213,2420,72,6,f +9213,2431,71,8,f +9213,2431pr0003,71,1,f +9213,2432,72,2,f +9213,2432,0,1,f +9213,2432,15,2,f +9213,2445,0,2,f +9213,2447,40,1,t +9213,2447,40,1,f +9213,2449,0,12,f +9213,2540,15,2,f +9213,2654,71,8,f +9213,2654,47,2,f +9213,2780,0,6,f +9213,2780,0,2,t +9213,2877,15,1,f +9213,2877,0,6,f +9213,298c02,71,1,t +9213,298c02,71,2,f +9213,3001,15,6,f +9213,3003,15,1,f +9213,3008,0,6,f +9213,3009,15,4,f +9213,3010,0,6,f +9213,30132,72,1,t +9213,30132,72,1,f +9213,30136,19,2,f +9213,30162,72,2,f +9213,30167,70,1,f +9213,30171,0,3,f +9213,30173b,297,2,f +9213,3020,15,7,f +9213,3022,72,8,f +9213,3023,15,7,f +9213,3023,0,10,f +9213,30237b,15,6,f +9213,3024,71,1,t +9213,3024,71,1,f +9213,3027,0,1,f +9213,3031,15,2,f +9213,3031,0,1,f +9213,3032,0,1,f +9213,3034,0,6,f +9213,3034,15,6,f +9213,3036,0,1,f +9213,30363,15,1,f +9213,30367c,72,3,f +9213,3037,0,6,f +9213,30374,71,12,f +9213,3038,0,4,f +9213,3039,15,2,f +9213,3039pr0014,0,1,f +9213,3039pr0015,0,1,f +9213,30414,71,8,f +9213,3045,0,4,f +9213,3062b,72,12,f +9213,3068b,71,1,f +9213,3068b,0,2,f +9213,3069b,71,6,f +9213,3069b,33,4,f +9213,3069b,36,4,f +9213,32001,0,12,f +9213,32039,0,1,f +9213,32054,4,6,f +9213,32056,71,4,f +9213,32059,15,2,f +9213,32123b,14,1,t +9213,32123b,14,2,f +9213,32140,72,4,f +9213,32270,0,2,f +9213,32316,0,4,f +9213,32449,72,4,f +9213,32523,71,4,f +9213,3298,15,8,f +9213,3298,0,4,f +9213,3460,0,1,f +9213,3460,15,3,f +9213,3622,0,10,f +9213,3623,0,14,f +9213,3626bpr0896,78,1,f +9213,3626cpr1325,14,1,f +9213,3626cpr1338,179,2,f +9213,3626cpr1340,179,2,f +9213,3626cpr1366,14,1,f +9213,3626cpr1436,14,1,f +9213,3660,0,2,f +9213,3665,0,4,f +9213,3666,72,10,f +9213,3666,0,2,f +9213,3678b,0,7,f +9213,3679,71,1,f +9213,3680,15,1,f +9213,3700,15,5,f +9213,3701,15,11,f +9213,3702,15,1,f +9213,3708,0,3,f +9213,3710,15,16,f +9213,3713,4,1,f +9213,3713,4,1,t +9213,3747b,0,1,f +9213,3749,19,1,f +9213,3794a,72,2,f +9213,3795,71,13,f +9213,3895,0,4,f +9213,3938,71,3,f +9213,3940b,0,1,f +9213,3941,72,7,f +9213,3957a,36,4,f +9213,3960,0,1,f +9213,4032a,72,24,f +9213,4081b,72,5,f +9213,41334,0,1,f +9213,41539,0,4,f +9213,4162,0,2,f +9213,41747,0,1,f +9213,41748,0,1,f +9213,41769,0,1,f +9213,41770,0,1,f +9213,42446,71,3,f +9213,42446,71,2,t +9213,4274,1,2,f +9213,4274,1,1,t +9213,4286,0,6,f +9213,4287,15,4,f +9213,43093,1,25,f +9213,4360,0,1,f +9213,43710,0,2,f +9213,43711,0,2,f +9213,43898,0,1,f +9213,44358,71,2,f +9213,44359,72,4,f +9213,4445,0,2,f +9213,44728,0,8,f +9213,4519,71,2,f +9213,45677,0,2,f +9213,4599b,0,1,f +9213,4697b,71,1,t +9213,4697b,71,5,f +9213,4740,72,3,f +9213,48336,0,2,f +9213,4865b,47,2,f +9213,4871,0,2,f +9213,51739,0,1,f +9213,52031,0,8,f +9213,52501,0,4,f +9213,54200,0,1,t +9213,54200,36,1,t +9213,54200,33,1,t +9213,54200,0,2,f +9213,54200,33,2,f +9213,54200,36,2,f +9213,54383,15,1,f +9213,54384,15,1,f +9213,55981,71,2,f +9213,56630,0,1,f +9213,56823c50,0,1,f +9213,57895,36,3,f +9213,59443,4,2,f +9213,60475b,0,6,f +9213,60478,71,8,f +9213,60479,0,6,f +9213,60481,0,4,f +9213,60483,71,4,f +9213,60596,0,3,f +9213,60897,0,2,f +9213,6141,36,6,f +9213,6141,72,19,f +9213,6141,33,2,t +9213,6141,72,4,t +9213,6141,36,2,t +9213,6141,33,5,f +9213,6141,47,3,t +9213,6141,47,8,f +9213,61482,71,1,t +9213,61482,71,2,f +9213,61510,71,1,f +9213,6154,4,1,f +9213,6178,15,2,f +9213,6182,19,1,f +9213,62462,71,2,f +9213,64567,71,5,f +9213,64567,71,3,t +9213,64644,71,1,f +9213,6558,1,4,f +9213,6585,0,2,f +9213,6589,19,5,f +9213,6589,19,1,t +9213,6636,71,6,f +9213,76766,0,2,f +9213,85940,0,2,f +9213,85984,0,7,f +9213,87079,71,2,f +9213,87083,72,2,f +9213,87087,0,2,f +9213,87544,71,2,f +9213,87552,0,12,f +9213,87580,0,1,f +9213,87620,0,2,f +9213,88930,15,1,f +9213,92280,0,4,f +9213,92593,72,1,f +9213,92947,71,1,f +9213,93606,15,2,f +9213,93609,15,2,f +9213,93609,15,1,t +9213,94531,47,1,f +9213,96874,25,1,t +9213,970c00,0,2,f +9213,970c00pr0277,2,1,f +9213,970c00pr0605,25,1,f +9213,970c63pr0609,272,4,f +9213,973pr1899c01,2,1,f +9213,973pr1961c01,0,1,f +9213,973pr2538c01,25,1,f +9213,973pr2554c01,272,4,f +9213,973pr2689c01,19,1,f +9213,98132,148,1,f +9213,98133pr0005,2,1,f +9213,98138,71,2,f +9213,98138,71,1,t +9213,98721,0,1,f +9213,98721,0,1,t +9213,99008,19,2,f +9213,99207,71,2,f +9213,99780,0,1,f +9213,99781,71,1,f +9214,30287pr04,10,1,f +9214,3626bpr0282,14,1,f +9214,3835,0,1,t +9214,3835,0,1,f +9214,970c00,72,1,f +9214,973pr1772c01,10,1,f +9216,30374,36,2,f +9216,64567,80,1,f +9217,747p01c02,15,1,f +9217,747p03c02,15,1,f +9217,747pb01c02,15,1,f +9217,747pb02c02,15,1,f +9217,747pb03c02r,15,1,f +9217,747pb05c02,15,1,f +9217,747pb06c02,15,1,f +9217,bb131pb01c02,15,1,f +9217,bb131pb02c02,15,1,f +9217,bb134pb01c02,15,1,f +9217,bb139pb01c02,15,1,f +9217,bb140pb01c02,15,1,f +9217,bb140pb03c02,15,1,f +9217,bb140pb05c02,15,1,f +9220,3626cpr0721,78,1,f +9220,970c00,28,1,f +9220,973pr2312c01,28,1,f +9220,99930,72,1,f +9221,2357,15,2,f +9221,2420,15,2,f +9221,2431,15,5,f +9221,2431,0,4,f +9221,3001,15,2,f +9221,3002,15,15,f +9221,3003,15,5,f +9221,3005,47,3,f +9221,3010,0,3,f +9221,3021,15,12,f +9221,3022,0,2,f +9221,3023,15,10,f +9221,3024,15,14,f +9221,3024,15,1,t +9221,3035,0,2,f +9221,3065,47,19,f +9221,3068b,71,18,f +9221,3068b,15,9,f +9221,3069b,71,9,f +9221,3069b,15,21,f +9221,3070b,47,2,f +9221,3070b,15,1,t +9221,3070b,71,1,t +9221,3070b,71,3,f +9221,3070b,15,16,f +9221,3070b,47,1,t +9221,33291,10,1,t +9221,33291,10,5,f +9221,3622,15,3,f +9221,3623,15,13,f +9221,3626bpr0891,14,1,f +9221,3710,15,2,f +9221,41539,0,4,f +9221,4162,0,3,f +9221,4162pr0036a,0,1,f +9221,4282,0,1,f +9221,6141,70,1,t +9221,6141,70,5,f +9221,62810,308,1,f +9221,63864,71,5,f +9221,63864,15,17,f +9221,6636,0,4,f +9221,87580,71,5,f +9221,970c00,15,1,f +9221,973pr2814c01a,15,1,f +9222,3001a,0,21,f +9222,3001a,4,21,f +9222,3001a,1,21,f +9222,3001a,47,21,f +9222,3001a,14,21,f +9222,3001a,15,21,f +9224,2489,70,1,f +9224,2570,135,1,f +9224,2736,71,1,f +9224,3021,0,2,f +9224,3040b,70,4,f +9224,3044b,72,1,f +9224,3062b,71,3,f +9224,32034,0,1,f +9224,32530,0,2,f +9224,32556,19,1,f +9224,3626bpr0325,14,1,f +9224,3844,80,1,f +9224,3847,135,1,f +9224,3848,72,1,f +9224,4529,0,1,f +9224,970x026,71,1,f +9224,973pr1318c01,272,1,f +9225,2377,4,2,f +9225,2412b,297,3,f +9225,2436,4,1,f +9225,30165,4,1,f +9225,30165,0,1,f +9225,3020,4,2,f +9225,3020,2,2,f +9225,3020,0,2,f +9225,3021,4,1,f +9225,3023,4,2,f +9225,3024,15,6,f +9225,3024,4,8,f +9225,3037,4,1,f +9225,3068b,4,1,f +9225,32028,0,1,f +9225,3731,0,1,f +9225,3788,4,5,f +9225,3794b,15,2,f +9225,3795,4,2,f +9225,4032a,2,2,f +9225,4589,2,1,f +9225,4600,0,5,f +9225,4865a,2,4,f +9225,50944pr0001,0,10,f +9225,52107,4,2,f +9225,6141,15,1,f +9225,6141,0,3,f +9225,6141,4,2,f +9225,6141,297,3,f +9225,6231,4,4,f +9225,63082,0,1,f +9227,2413,4,1,f +9227,2446px6,1,1,f +9227,2447,41,1,f +9227,2555,4,1,f +9227,2610,14,1,f +9227,2654,7,3,f +9227,3003,15,1,f +9227,30031,4,1,f +9227,3062b,2,1,f +9227,3062b,4,1,f +9227,3298p21,1,1,f +9227,3626bp04,14,1,f +9227,3794a,1,1,f +9227,3839b,1,1,f +9227,4032a,1,1,f +9227,4589,34,1,f +9227,4589,36,1,f +9227,4865a,15,2,f +9227,6141,15,2,f +9227,6153apb01,15,1,f +9227,6231,15,2,f +9227,6517stk01,9999,1,t +9227,970c00,4,1,f +9227,973pb0249c01,4,1,f +9228,3001,4,2,f +9228,3001,2,1,f +9228,3001,0,1,f +9228,3001p0b,14,1,f +9228,3003,14,2,f +9228,3003,2,3,f +9228,3003,0,2,f +9228,4727,2,3,f +9228,6215,2,2,f +9228,6216p02,14,1,f +9228,6247,1,1,f +9228,6248,4,1,f +9228,6249,4,1,f +9230,12825,72,3,f +9230,2412b,1,25,f +9230,2412b,15,8,f +9230,2419,1,2,f +9230,2420,15,2,f +9230,2431,33,2,f +9230,2432,14,2,f +9230,2436,15,2,f +9230,2450,71,2,f +9230,2456,71,3,f +9230,2465,15,2,f +9230,2508,0,1,f +9230,2569,72,1,t +9230,2569,72,2,f +9230,2654,1,4,f +9230,3001,0,4,f +9230,3001,1,4,f +9230,3004,14,3,f +9230,3004,1,7,f +9230,3005,1,2,f +9230,3005,15,6,f +9230,3009,1,10,f +9230,3010,2,1,f +9230,3010,1,6,f +9230,30150,70,1,f +9230,30157,70,2,f +9230,30165,72,1,f +9230,3020,2,2,f +9230,3022,1,1,f +9230,3022,2,1,f +9230,3022,15,4,f +9230,3023,1,8,f +9230,3023,15,2,f +9230,3023,19,3,f +9230,30237a,71,1,f +9230,3024,182,4,f +9230,3024,33,6,f +9230,3033,71,1,f +9230,3034,71,1,f +9230,3035,15,2,f +9230,30383,71,2,f +9230,3039,1,3,f +9230,3039,14,1,f +9230,30391,0,4,f +9230,3039pr0002,15,2,f +9230,3040b,1,2,f +9230,30414,14,1,f +9230,30526,72,1,f +9230,3068b,14,1,f +9230,3069bpr0030,15,1,f +9230,3070b,36,2,f +9230,3070b,36,1,t +9230,32059,71,1,f +9230,3245c,15,2,f +9230,3297,1,1,f +9230,3298,71,2,f +9230,3460,1,2,f +9230,3460,15,3,f +9230,3633,72,2,f +9230,3660,1,4,f +9230,3666,15,1,f +9230,3666,1,4,f +9230,3666,14,1,f +9230,3679,71,1,f +9230,3680,0,1,f +9230,3710,71,2,f +9230,3710,1,3,f +9230,3710,4,2,f +9230,3794b,71,12,f +9230,3795,1,7,f +9230,3821,1,1,f +9230,3822,1,1,f +9230,3829c01,14,1,f +9230,3829c01,1,1,f +9230,3839b,15,2,f +9230,3899,4,2,f +9230,3958,0,1,f +9230,3960,71,1,f +9230,3962b,0,1,f +9230,4079,14,3,f +9230,41539,15,1,f +9230,4162,15,1,f +9230,4176,41,1,f +9230,4282,72,3,f +9230,4286,15,6,f +9230,43720,15,2,f +9230,43721,15,2,f +9230,44300,72,1,f +9230,44301a,15,2,f +9230,44302a,71,3,f +9230,44728,1,8,f +9230,4488,71,4,f +9230,4599b,15,1,f +9230,46667,72,1,f +9230,47457,4,1,f +9230,48336,71,3,f +9230,4865b,71,4,f +9230,4865b,14,4,f +9230,52031,15,1,f +9230,52107,0,1,f +9230,54200,33,1,t +9230,54200,47,2,f +9230,54200,47,1,t +9230,54200,33,2,f +9230,55981,71,4,f +9230,6014b,71,4,f +9230,60208,15,1,f +9230,60219,72,2,f +9230,60470a,0,1,f +9230,60470a,15,2,f +9230,60581,15,2,f +9230,6091,1,2,f +9230,61184,71,2,f +9230,6141,46,2,t +9230,6141,182,2,f +9230,6141,36,4,f +9230,6141,182,1,t +9230,6141,36,1,t +9230,6141,46,2,f +9230,61482,71,1,f +9230,61482,71,1,t +9230,6154,1,2,f +9230,6155,71,2,f +9230,6179,71,1,f +9230,6187,71,1,f +9230,6192,71,2,f +9230,6231,15,2,f +9230,62360,41,1,f +9230,62360,15,1,f +9230,62361,15,2,f +9230,62812,0,1,f +9230,63082,71,1,f +9230,63864,1,2,f +9230,63868,0,2,f +9230,63965,71,1,f +9230,64567,0,1,f +9230,6636,71,1,f +9230,6636,15,8,f +9230,85984,71,6,f +9230,87079,15,4,f +9230,87544,15,2,f +9230,87552,41,10,f +9230,87585,70,1,f +9230,87585,70,1,t +9230,87617,0,2,f +9230,87697,0,4,f +9230,88292,15,2,f +9230,92099,15,1,f +9230,92593,15,10,f +9230,98282,15,4,f +9232,45449,45,1,f +9232,45449,18,3,f +9232,45449,13,1,f +9232,45451,45,1,f +9232,45451,230,2,f +9232,45451,46,2,f +9232,45452,230,4,f +9232,45452,45,2,f +9232,45452,46,4,f +9232,45452,47,2,f +9232,46277,230,4,f +9232,46277,183,4,f +9232,46277,13,4,f +9232,46277,18,3,f +9232,46277,45,2,f +9232,46277,46,4,f +9232,46296,45,2,f +9232,46296,46,2,f +9232,clikits001pb07,13,1,f +9232,clikits001pb08,13,2,f +9232,clikits001pb09,13,1,f +9232,clikits037,29,2,f +9232,clikits046,13,2,f +9232,clikits109a,230,1,f +9232,clikits114,13,1,f +9232,clikits115,142,1,f +9232,clikits190a,230,2,f +9232,clikits193,5,2,f +9232,clikits194,230,1,f +9232,clikits195,230,1,f +9232,clikits196,47,4,f +9233,2456,2,6,f +9233,3001,2,3,f +9233,3002,2,8,f +9233,3003,2,8,f +9233,3004,0,2,f +9233,3004,2,19,f +9233,3005,0,6,f +9233,3005,2,4,f +9233,3006,2,1,f +9233,3007,2,4,f +9233,3009,2,3,f +9233,3010,2,4,f +9233,3010,0,1,f +9233,3020,2,4,f +9233,3021,2,6,f +9233,3022,2,14,f +9233,3023,0,7,f +9233,3023,2,27,f +9233,3024,2,18,f +9233,3024,0,12,f +9233,3622,0,2,f +9233,3623,0,4,f +9233,3666,0,2,f +9233,3666,2,1,f +9233,3710,2,1,f +9233,3795,2,1,f +9234,14226c11,0,1,f +9234,2376,0,1,f +9234,2486,15,2,f +9234,3003,15,2,f +9234,3003,14,1,f +9234,3010pb021,15,1,f +9234,30180,0,1,f +9234,30285,15,10,f +9234,30387,4,2,f +9234,3039,4,1,f +9234,30391,0,10,f +9234,30395,8,1,f +9234,30396,15,1,f +9234,3039p70,15,1,f +9234,30516,4,2,f +9234,30619,4,1,f +9234,30620,4,1,f +9234,30622,4,1,f +9234,30624,0,1,f +9234,30625,0,3,f +9234,30626,0,1,f +9234,3062b,33,3,f +9234,30632,0,1,f +9234,30633px3,40,1,f +9234,30636c02,4,1,f +9234,30639,4,1,f +9234,30639,41,1,f +9234,30642,4,1,f +9234,30645,8,1,f +9234,30646a,0,4,f +9234,30647pb04,15,1,f +9234,30647pb05,15,1,f +9234,30650,33,1,f +9234,30658,0,2,f +9234,3068bp70,15,1,f +9234,3069bpr0100,2,1,f +9234,32324,15,1,f +9234,3701,15,2,f +9234,3835,0,1,f +9234,3941,57,3,f +9234,3942b,15,2,f +9234,4000,8,1,f +9234,40996,33,3,f +9234,4202,7,2,f +9234,4286,15,2,f +9234,4328,7,1,f +9234,4349,7,1,f +9234,5,4,1,f +9234,6126a,41,1,f +9234,6126a,57,3,f +9234,71137,383,2,f +9234,js001,9999,1,f +9234,js002,9999,1,f +9234,js007,9999,1,f +9235,2412b,4,2,f +9235,2446,4,1,f +9235,2447,42,1,f +9235,2447,42,1,t +9235,2625,0,1,f +9235,3039,0,1,f +9235,3069bp28,0,1,f +9235,3298,0,1,f +9235,3626bp66,14,1,f +9235,3838,0,1,f +9235,3937,4,2,f +9235,3938,0,2,f +9235,3959,0,1,f +9235,3962a,0,1,f +9235,4589,36,2,f +9235,4595,0,2,f +9235,6141,42,1,f +9235,6141,42,1,t +9235,970x021,0,1,f +9235,973p66c01,1,1,f +9236,10187,179,2,f +9236,10187,179,1,t +9236,10201,71,1,f +9236,10247,0,2,f +9236,10305pr0001,4,1,f +9236,11153,272,2,f +9236,11458,72,2,f +9236,11476,71,1,f +9236,11477,85,10,f +9236,13547,0,2,f +9236,13731,0,2,f +9236,13731,1,2,f +9236,14417,72,4,f +9236,14419,72,4,f +9236,14704,71,4,f +9236,14716,0,2,f +9236,15068,272,8,f +9236,15303,33,3,f +9236,15303,36,1,f +9236,15400,72,2,f +9236,17018pr0001,191,1,f +9236,17961,0,1,f +9236,2340,1,2,f +9236,2357,0,4,f +9236,2357,71,4,f +9236,2419,0,1,f +9236,2420,0,2,f +9236,2449,72,2,f +9236,2476,71,4,f +9236,2654,0,3,f +9236,2780,0,2,t +9236,2780,0,10,f +9236,3001,72,2,f +9236,3003,72,4,f +9236,30031,71,1,f +9236,3005,72,2,f +9236,3009,72,2,f +9236,3010,72,3,f +9236,30151bpr0002,85,1,f +9236,3020,72,1,f +9236,3020,0,1,f +9236,3021,71,3,f +9236,3023,5,4,f +9236,3023,72,2,f +9236,3023,0,2,f +9236,3023,33,2,f +9236,3024,33,6,f +9236,3024,33,2,t +9236,3031,71,1,f +9236,3037,1,1,f +9236,30414,0,2,f +9236,3062b,47,1,f +9236,3062b,4,1,f +9236,3068b,71,1,f +9236,3069b,26,2,f +9236,3069bpr0090,72,2,f +9236,32013,0,2,f +9236,32054,71,1,f +9236,32062,4,2,f +9236,32064b,0,2,f +9236,32140,71,2,f +9236,3626cpr0970,78,1,f +9236,3626cpr1460,78,1,f +9236,3626cpr1462,70,1,f +9236,3626cpr1506,272,1,f +9236,3659,72,1,f +9236,3660,71,2,f +9236,3700,0,4,f +9236,3701,71,2,f +9236,3702,0,2,f +9236,3710,1,6,f +9236,3713,4,2,f +9236,3713,4,1,t +9236,3747b,0,2,f +9236,3747b,72,4,f +9236,3794b,72,2,f +9236,3795,71,1,f +9236,3941,57,2,f +9236,3942c,0,2,f +9236,4006,0,1,f +9236,4032a,85,2,f +9236,4079,1,4,f +9236,41749,272,1,f +9236,41750,272,1,f +9236,41764,72,1,f +9236,41765,72,1,f +9236,41854,72,1,f +9236,42021,72,1,f +9236,42023,72,2,f +9236,42060,272,1,f +9236,42061,272,1,f +9236,42444,0,1,f +9236,4274,71,1,t +9236,4274,71,2,f +9236,43093,1,5,f +9236,43121,0,2,f +9236,44126,0,2,f +9236,44301a,71,2,f +9236,4445,0,2,f +9236,44568,71,3,f +9236,44674,1,2,f +9236,44728,1,2,f +9236,4522,0,1,f +9236,4599b,4,1,f +9236,4599b,4,1,t +9236,46413,40,1,f +9236,4740,57,4,f +9236,47456,85,2,f +9236,47457,71,4,f +9236,47458,0,1,f +9236,47753pr0005a,85,1,f +9236,48336,1,4,f +9236,48336,0,2,f +9236,4871,0,1,f +9236,48729b,0,1,t +9236,48729b,0,6,f +9236,50231,4,1,f +9236,50950,26,2,f +9236,50950,0,4,f +9236,54091,72,2,f +9236,54200,0,2,f +9236,54200,0,1,t +9236,58176,36,2,f +9236,58176,33,2,f +9236,59233pat0001,41,2,f +9236,59426,72,2,f +9236,60470a,71,3,f +9236,60471,0,4,f +9236,60477,0,2,f +9236,60594,0,1,f +9236,60614,72,2,f +9236,61184,71,4,f +9236,61409,0,6,f +9236,6141,179,2,t +9236,6141,57,2,f +9236,6141,57,1,t +9236,6141,179,8,f +9236,6239,72,2,f +9236,64798,15,1,f +9236,6536,0,2,f +9236,6636,272,1,f +9236,85974,15,1,f +9236,85984,0,6,f +9236,87079,0,3,f +9236,87544,0,1,f +9236,87580,1,2,f +9236,87614,272,2,f +9236,92946,1,2,f +9236,93274,0,1,f +9236,970c00,85,1,f +9236,970c00pr0697,0,1,f +9236,970x191,272,1,f +9236,970x308,191,1,f +9236,973pr2727c01,191,1,f +9236,973pr2729c01,0,1,f +9236,973pr2731c01,85,1,f +9236,973pr2779c01,272,1,f +9236,98286,71,1,f +9236,99780,0,2,f +9237,23306,71,1,t +9237,23306,71,5,f +9237,2432,70,1,f +9237,2540,72,1,f +9237,2555,70,2,f +9237,2780,0,1,t +9237,2780,0,6,f +9237,3001,288,3,f +9237,30031,72,1,f +9237,30162,72,4,f +9237,30191,70,1,f +9237,3020,19,1,f +9237,3021,72,2,f +9237,30228,72,4,f +9237,30374,42,2,f +9237,30374,71,2,f +9237,30374,41,3,f +9237,30376,15,1,f +9237,30377,71,1,t +9237,30377,15,4,f +9237,30377,71,1,f +9237,3038,72,2,f +9237,3176,72,1,f +9237,32039,135,1,f +9237,32062,0,6,f +9237,32123b,71,1,t +9237,32123b,71,2,f +9237,32174,135,2,f +9237,32174,379,4,f +9237,32476,71,4,f +9237,3626bpr0146,78,1,f +9237,3660,19,4,f +9237,3701,288,2,f +9237,3713,71,2,f +9237,3713,71,1,t +9237,3737,0,1,f +9237,3901,484,1,f +9237,4032a,71,2,f +9237,40373,288,2,f +9237,40374,288,2,f +9237,40375,288,2,f +9237,40378,288,1,f +9237,40379,72,1,f +9237,40380c01,378,2,f +9237,40393,72,4,f +9237,40395,288,1,f +9237,4095,71,2,f +9237,42003,135,2,f +9237,43093,1,1,f +9237,4598,379,1,f +9237,4865a,70,2,f +9237,50231,70,1,f +9237,50231px3,320,1,f +9237,50990pb02,47,2,f +9237,50994,15,1,f +9237,51689,288,1,f +9237,6141,71,1,t +9237,6141,71,1,f +9237,970x005,484,1,f +9237,973pr1324c01,19,1,f +9237,x1463,15,1,f +9239,2695,14,2,f +9239,2696,0,2,f +9239,3001,14,1,f +9239,30256,71,1,f +9239,30259p05,14,1,f +9239,30285,14,2,f +9239,30386,14,2,f +9239,30387,14,1,f +9239,30388,14,1,f +9239,30391,0,2,f +9239,30394,0,1,f +9239,30624,14,2,f +9239,3062b,0,2,f +9239,30643,8,1,f +9239,32324,14,1,f +9239,3297px23,14,1,f +9239,40620,383,1,f +9239,40996,42,1,f +9239,45677,14,1,f +9239,47506,40,1,f +9239,47507,14,1,f +9239,47508,0,1,f +9239,4j006,9999,1,f +9240,2555,4,3,f +9240,2569,42,1,f +9240,3032,0,1,f +9240,3039,7,1,f +9240,3068bp54,7,1,f +9240,3069bp51,0,1,f +9240,3626bp6w,4,1,f +9240,3933,7,1,f +9240,3934,7,1,f +9240,4079,7,1,f +9240,4286,7,2,f +9240,4349,0,2,f +9240,4740,42,2,f +9240,970c00pb021,0,1,f +9240,973pb0078c01,0,1,f +9241,45463,45,2,f +9241,45464,52,1,f +9241,45469,47,4,f +9241,45469,112,2,f +9241,45469,45,4,f +9241,45469,15,4,f +9241,45469,52,5,f +9241,46286,45,2,f +9241,46296,52,1,f +9241,51035,52,4,f +9241,51035,112,4,f +9241,51036,52,4,f +9241,51036,112,4,f +9241,clik01,9999,1,f +9241,clikits006pb05,52,1,f +9241,clikits015,45,4,f +9241,clikits015,112,2,f +9241,clikits015,15,4,f +9241,clikits015,52,4,f +9241,clikits015,0,4,f +9241,clikits016pb03,52,1,f +9241,clikits018,52,1,f +9241,clikits085,52,1,f +9241,clikits111,47,3,f +9243,5004103,9999,1,f +9244,30153,45,1,f +9244,30218,15,1,f +9244,3626cpr1299,14,1,f +9244,85974pr0003,212,1,f +9244,88646,0,1,f +9244,95351pr0005,30,1,f +9244,973pr0806c01,14,1,f +9245,2341,7,1,f +9245,2357,7,1,f +9245,2362a,14,1,f +9245,2377,14,2,f +9245,2412b,14,1,f +9245,2413,7,2,f +9245,2415,7,1,f +9245,2421,7,2,f +9245,2431,0,2,f +9245,2432,4,1,f +9245,2437,41,1,f +9245,2449,0,2,f +9245,2453a,7,2,f +9245,2458,7,1,f +9245,2529,2,2,f +9245,2546,8,1,f +9245,2569,4,1,f +9245,2580c01,0,2,f +9245,2877,7,7,f +9245,2877,0,2,f +9245,298c02,15,1,f +9245,3003,4,1,f +9245,3004pb009,4,1,f +9245,3005,0,4,f +9245,3005,7,4,f +9245,30078,8,1,f +9245,3009,0,1,f +9245,3010,0,5,f +9245,3010,7,2,f +9245,3010,14,4,f +9245,3020,0,2,f +9245,3020,7,1,f +9245,3022,7,1,f +9245,3024,0,1,f +9245,3031,7,1,f +9245,3034,7,1,f +9245,3034,15,1,f +9245,3034,0,1,f +9245,3037,14,2,f +9245,3039pc5,7,1,f +9245,3070b,36,3,f +9245,3070b,34,1,f +9245,3139,0,7,f +9245,3298,0,2,f +9245,3464,47,1,f +9245,3479,7,1,f +9245,3622,7,3,f +9245,3622px1,15,1,f +9245,3626bp04,14,2,f +9245,3626bp05,14,1,f +9245,3665,7,1,f +9245,3666,7,2,f +9245,3679,7,1,f +9245,3680,4,1,f +9245,3741,2,4,f +9245,3835,7,1,f +9245,3836,6,1,f +9245,3837,8,1,f +9245,3853,15,1,f +9245,3899,47,1,f +9245,3941,1,1,f +9245,3941,7,3,f +9245,3941,4,1,f +9245,3941,15,1,f +9245,3942c,4,1,f +9245,4032a,4,1,f +9245,4032a,15,1,f +9245,4032a,2,1,f +9245,4081b,7,2,f +9245,4085c,4,1,f +9245,4150,4,1,f +9245,4150,7,1,f +9245,4150,1,1,f +9245,4187,19,1,f +9245,4213,0,1,f +9245,4286,14,2,f +9245,4287,14,2,f +9245,4315,0,1,f +9245,4477,0,2,f +9245,4485,1,1,f +9245,4485,15,2,f +9245,4488,0,2,f +9245,4515px1,8,2,f +9245,4589,36,1,f +9245,4599a,4,1,f +9245,4624,7,4,f +9245,476,15,1,f +9245,4854,0,1,f +9245,4855,0,1,f +9245,4858,14,1,f +9245,4859,7,1,f +9245,4861,14,2,f +9245,4862,41,2,f +9245,4865a,14,2,f +9245,4870,7,2,f +9245,4871,0,1,f +9245,6141,46,1,t +9245,6141,46,2,f +9245,970c00,2,1,f +9245,970c00,1,1,f +9245,970c00,0,1,f +9245,973p28c01,0,1,f +9245,973p73c01,2,1,f +9245,973pr1245c01,1,1,f +9246,11090,15,5,f +9246,11458,72,2,f +9246,11476,71,2,f +9246,11477,19,2,f +9246,11477,2,2,f +9246,14417,72,5,f +9246,14418,71,3,f +9246,14704,71,2,f +9246,15068,2,4,f +9246,15208,15,7,f +9246,15712,72,4,f +9246,17114,72,1,f +9246,22885,71,1,f +9246,2431,19,2,f +9246,2431,320,1,f +9246,26604,19,4,f +9246,3001,19,1,f +9246,3003,2,3,f +9246,3004,2,2,f +9246,3010,288,2,f +9246,3020,2,3,f +9246,3020,19,1,f +9246,3021,19,2,f +9246,3022,2,2,f +9246,3023,320,2,f +9246,3023,288,8,f +9246,3023,2,4,f +9246,3024,2,2,f +9246,3024,2,1,t +9246,30357,2,4,f +9246,30374,15,1,f +9246,30383,72,2,f +9246,3040b,2,2,f +9246,3062b,0,2,f +9246,32062,4,2,f +9246,3660,2,2,f +9246,3660,19,2,f +9246,3710,19,2,f +9246,3747b,19,1,f +9246,3795,19,1,f +9246,4032a,288,1,f +9246,40379,15,3,f +9246,4081b,0,4,f +9246,41769,2,3,f +9246,41770,2,3,f +9246,4274,71,2,f +9246,4274,71,1,t +9246,43712,2,1,f +9246,43722,288,1,f +9246,43723,288,1,f +9246,44302a,72,2,f +9246,47755,288,1,f +9246,52107,28,3,f +9246,53451,0,1,t +9246,53451,0,4,f +9246,53585,0,2,f +9246,54200,2,4,f +9246,54200,2,1,t +9246,58176,182,2,f +9246,60470a,0,2,f +9246,60478,288,3,f +9246,60897,19,4,f +9246,6141,182,1,t +9246,6141,182,2,f +9246,61678,2,6,f +9246,63868,0,1,f +9246,74261,72,2,f +9246,85943,72,2,f +9246,87747,15,2,f +9246,87747,15,1,t +9246,87747,0,1,t +9246,87747,0,6,f +9246,87994,0,1,t +9246,87994,0,1,f +9246,92013,288,4,f +9246,99021,72,2,f +9247,2432,0,1,f +9247,2445,71,1,f +9247,2540,1,2,f +9247,3023,0,1,f +9247,30359b,71,2,f +9247,30375,0,2,f +9247,30375,80,3,f +9247,30376,0,2,f +9247,30376,80,3,f +9247,30377,0,1,t +9247,30377,80,3,f +9247,30377,0,2,f +9247,30377,80,1,t +9247,32000,14,2,f +9247,32064b,0,1,f +9247,3298,272,1,f +9247,3660,0,1,f +9247,3700,0,1,f +9247,3707,0,1,f +9247,3713,71,2,f +9247,3713,71,1,t +9247,3794b,72,2,f +9247,3795,1,1,f +9247,3941,71,2,f +9247,42003,72,2,f +9247,42446,71,2,f +9247,4274,1,1,t +9247,4274,1,6,f +9247,44675,272,1,f +9247,4589,52,2,f +9247,48729a,0,2,f +9247,48729a,0,1,t +9247,48729a,80,1,t +9247,48729a,80,3,f +9247,50950,272,6,f +9247,50955,72,1,f +9247,50956,72,1,f +9247,57899,0,1,f +9247,58247,0,4,f +9247,59230,0,1,t +9247,59230,0,2,f +9247,59230,80,1,t +9247,59230,80,3,f +9247,59900,0,2,f +9247,59900,80,3,f +9247,61184,71,2,f +9247,61406pat0004,72,2,f +9247,6141,182,5,f +9247,6141,80,3,f +9247,6141,80,1,t +9247,6141,0,1,t +9247,6141,182,1,t +9247,6141,0,3,f +9247,6541,14,2,f +9248,11153,179,4,f +9248,15068,179,5,f +9248,15397,15,1,f +9248,2431,71,7,f +9248,2431,72,3,f +9248,3004,15,6,f +9248,3004,71,3,f +9248,3005,15,1,f +9248,3021,2,3,f +9248,3022,72,2,f +9248,3022,2,2,f +9248,3023,0,1,f +9248,3023,14,1,f +9248,3023,1,2,f +9248,3023,4,1,f +9248,3023,47,25,f +9248,3023,19,8,f +9248,3023,15,6,f +9248,3023,71,5,f +9248,3023,321,1,f +9248,3024,47,17,f +9248,3024,288,2,f +9248,3024,2,3,f +9248,3024,2,1,t +9248,3024,47,1,t +9248,3024,15,6,f +9248,3024,25,1,t +9248,3024,288,1,t +9248,3024,71,1,t +9248,3024,15,1,t +9248,3024,71,3,f +9248,3024,25,3,f +9248,3028,0,4,f +9248,3062b,80,2,f +9248,3068b,72,3,f +9248,3068b,71,6,f +9248,3069b,71,7,f +9248,3069b,19,3,f +9248,3069b,72,8,f +9248,3070b,71,1,t +9248,3070b,19,5,f +9248,3070b,71,17,f +9248,3070b,14,1,t +9248,3070b,14,1,f +9248,3070b,0,1,t +9248,3070b,0,4,f +9248,3070b,72,2,f +9248,3070b,19,1,t +9248,3070b,72,1,t +9248,33291,10,7,f +9248,33291,10,1,t +9248,33291,191,4,f +9248,33291,191,1,t +9248,3622,15,1,f +9248,3623,288,2,f +9248,3623,2,3,f +9248,3623,15,8,f +9248,3666,14,4,f +9248,3710,15,4,f +9248,4162,0,7,f +9248,4162pr0000,0,1,f +9248,54200,47,12,f +9248,54200,47,1,t +9248,54200,179,4,f +9248,54200,15,1,t +9248,54200,4,1,f +9248,54200,14,1,f +9248,54200,14,1,t +9248,54200,15,4,f +9248,54200,1,1,f +9248,54200,272,1,f +9248,54200,272,1,t +9248,54200,179,1,t +9248,54200,1,1,t +9248,54200,4,1,t +9248,61252,4,1,f +9248,6141,15,1,t +9248,6141,179,4,f +9248,6141,179,1,t +9248,6141,1,1,t +9248,6141,15,4,f +9248,6141,1,4,f +9248,63864,15,5,f +9248,63864,71,2,f +9248,64644,0,3,f +9248,87087,15,4,f +9248,87580,71,5,f +9248,87994,15,1,f +9248,87994,15,1,t +9249,2412b,15,3,f +9249,2431,72,2,f +9249,2431,15,1,f +9249,2476a,15,1,f +9249,2540,25,1,f +9249,2780,0,1,t +9249,2780,0,35,f +9249,3009,15,1,f +9249,3021,25,2,f +9249,3021,15,1,f +9249,3022,15,1,f +9249,3023,71,9,f +9249,3032,72,1,f +9249,30360,15,1,f +9249,30367b,15,2,f +9249,30374,36,1,f +9249,30383,15,2,f +9249,3040b,25,4,f +9249,3040b,15,2,f +9249,30536,40,1,f +9249,32000,15,7,f +9249,32001,71,2,f +9249,32013,0,2,f +9249,32014,0,4,f +9249,32054,0,4,f +9249,32062,4,6,f +9249,32064b,71,8,f +9249,32123b,71,12,f +9249,32123b,71,1,t +9249,32140,72,8,f +9249,32174,71,3,f +9249,32184,0,4,f +9249,32271,72,4,f +9249,32278,71,2,f +9249,32291,72,12,f +9249,32523,0,1,f +9249,32523,72,1,f +9249,32530,72,2,f +9249,32532,71,1,f +9249,3298,25,2,f +9249,3460,72,2,f +9249,3626bpr0453,14,1,f +9249,3626bpr0463,14,1,f +9249,3660,71,2,f +9249,3705,0,5,f +9249,3706,0,1,f +9249,3708,0,2,f +9249,3709,72,5,f +9249,3713,71,4,f +9249,3713,71,1,t +9249,3747b,25,2,f +9249,3747b,71,4,f +9249,3795,72,1,f +9249,3839b,15,1,f +9249,3894,25,2,f +9249,3941,25,1,f +9249,3941,15,2,f +9249,3956,71,2,f +9249,40244,0,10,f +9249,4032a,0,4,f +9249,40490,71,4,f +9249,4095,0,2,f +9249,4150,15,4,f +9249,4151,72,2,f +9249,41749,25,2,f +9249,41750,25,2,f +9249,4185,25,2,f +9249,41855,15,2,f +9249,4274,71,1,t +9249,4274,71,4,f +9249,43093,1,19,f +9249,43712,25,8,f +9249,44224,72,4,f +9249,44225,71,4,f +9249,44728,71,1,f +9249,4519,71,4,f +9249,4589,1,10,f +9249,50923,72,3,f +9249,53981,0,1,f +9249,53982,85,1,f +9249,53990,40,1,f +9249,53992,0,4,f +9249,53993pat0003,27,10,f +9249,54095,25,2,f +9249,54605,47,1,f +9249,56145,0,12,f +9249,59426,72,8,f +9249,6111,25,1,f +9249,6126a,57,2,f +9249,6232,71,1,f +9249,6538b,0,5,f +9249,6558,0,18,f +9249,6587,72,12,f +9249,6632,72,2,f +9249,6636,15,1,f +9249,970x199,25,2,f +9249,973pr1247c01,25,2,f +9251,2341,4,1,f +9251,2342,15,1,f +9251,2343,47,4,f +9251,2348a,47,1,f +9251,2349a,15,1,f +9251,2362a,15,4,f +9251,2377,15,1,f +9251,2412b,0,3,f +9251,2412b,15,2,f +9251,2420,15,3,f +9251,2431,15,3,f +9251,2435,2,1,f +9251,2436,4,2,f +9251,2436,1,1,f +9251,2437,41,1,f +9251,2439,8,1,f +9251,2441,0,1,f +9251,298c02,0,1,f +9251,298c02,0,1,t +9251,298c02,15,1,t +9251,298c02,15,1,f +9251,3001,0,1,f +9251,3003,15,2,f +9251,3004,0,4,f +9251,3004,15,4,f +9251,3004,4,11,f +9251,3004p06,15,1,f +9251,3005,4,13,f +9251,3008,15,2,f +9251,3008,4,2,f +9251,3009,4,1,f +9251,3009,15,2,f +9251,3010,15,1,f +9251,3020,1,3,f +9251,3021,15,2,f +9251,3021,4,1,f +9251,3022,15,4,f +9251,3022,4,2,f +9251,3022,1,2,f +9251,3023,15,13,f +9251,3023,1,5,f +9251,3024,36,4,f +9251,3024,47,4,f +9251,3024,15,11,f +9251,3024,1,4,f +9251,3031,15,1,f +9251,3033,4,1,f +9251,3038,14,2,f +9251,3039,14,7,f +9251,3041,14,2,f +9251,3062b,4,1,f +9251,3062b,15,2,f +9251,3069b,15,4,f +9251,3081cc01,15,1,f +9251,3300,0,1,f +9251,3460,15,1,f +9251,3471,2,1,f +9251,3622,15,2,f +9251,3622,4,3,f +9251,3623,15,6,f +9251,3623,1,1,f +9251,3623,4,2,f +9251,3626apr0001,14,3,f +9251,3641,0,10,f +9251,3660,0,1,f +9251,3666,1,1,f +9251,3666,15,3,f +9251,3700,4,1,f +9251,3710,1,4,f +9251,3710,15,4,f +9251,3710,4,2,f +9251,3730,0,1,f +9251,3731,1,1,f +9251,3741,2,4,f +9251,3742,15,6,f +9251,3742,15,2,t +9251,3742,4,6,f +9251,3742,4,2,t +9251,3787,15,1,f +9251,3788,4,2,f +9251,3794a,15,5,f +9251,3794a,0,1,f +9251,3795,15,1,f +9251,3821,4,1,f +9251,3822,4,1,f +9251,3823,47,2,f +9251,3829c01,4,1,f +9251,3829c01,1,1,f +9251,3829c01,15,1,f +9251,3832,0,1,f +9251,3836,6,1,f +9251,3837,0,1,f +9251,3855,47,2,f +9251,3857,2,1,f +9251,3861b,15,1,f +9251,3899,47,2,f +9251,3901,0,2,f +9251,3937,15,1,f +9251,3938,15,1,f +9251,3957a,4,1,f +9251,3960p06,15,1,f +9251,4032a,15,6,f +9251,4033,15,2,f +9251,4079,15,4,f +9251,4079,4,2,f +9251,4081b,1,3,f +9251,4081b,7,1,f +9251,4085b,15,3,f +9251,4211,1,2,f +9251,4213,15,2,f +9251,4276b,1,2,f +9251,4315,15,1,f +9251,4345a,15,1,f +9251,4346,15,1,f +9251,4347,15,1,f +9251,4445,14,10,f +9251,4447,15,1,f +9251,4448,47,1,f +9251,4528,0,1,f +9251,4529,0,1,f +9251,4530,0,1,f +9251,4532,15,1,f +9251,4533,4,1,f +9251,4594,47,1,f +9251,4599a,14,1,f +9251,4599a,1,1,f +9251,4599a,4,1,f +9251,4600,0,3,f +9251,4624,15,10,f +9251,4625,15,2,f +9251,4715,15,1,f +9251,4719,4,1,f +9251,4740,15,2,f +9251,4740,8,1,f +9251,4854,4,1,f +9251,4855,4,1,f +9251,4859,4,1,f +9251,4859,15,1,f +9251,4859,1,1,f +9251,4861,0,1,f +9251,4862,47,1,f +9251,4864a,0,2,f +9251,4864a,15,2,f +9251,4865a,15,3,f +9251,4866,15,1,f +9251,4871,4,1,f +9251,6141,0,2,f +9251,6141,46,6,f +9251,6141,36,4,f +9251,73983,15,2,f +9251,92851,47,2,f +9251,970c00,1,1,f +9251,970c00,4,1,f +9251,970c00,15,1,f +9251,973p01c02,-1,1,f +9251,973p71c01,15,1,f +9251,973px61c02,15,1,f +9252,14733pr0001,0,1,f +9252,15573,15,1,f +9252,3004,15,1,f +9252,3039,33,2,f +9252,30565,322,1,f +9252,54200,143,1,f +9252,60481,15,1,f +9252,6141,41,1,f +9252,64648,179,1,f +9254,11458,72,2,f +9254,11477,70,4,f +9254,14417,72,4,f +9254,14419,72,2,f +9254,14682,71,2,f +9254,14704,71,4,f +9254,15208,15,2,f +9254,15573,72,1,f +9254,2412b,70,2,f +9254,2412b,179,2,f +9254,3021,70,2,f +9254,3022,0,3,f +9254,3023,70,4,f +9254,30663,71,1,f +9254,32000,71,2,f +9254,32064a,72,2,f +9254,32270,0,2,f +9254,3749,19,2,f +9254,47457,297,1,f +9254,47755,72,1,f +9254,4871,72,1,f +9254,54200,297,4,f +9254,54200,179,1,t +9254,54200,179,2,f +9254,54200,297,1,t +9254,6141,297,2,f +9254,6141,297,1,t +9254,98138pr0008,15,1,t +9254,98138pr0008,15,2,f +9254,98313,297,2,f +9254,99207,0,1,f +9255,3037,4,50,f +9257,30374,14,1,f +9257,3070b,14,1,t +9257,3070b,14,1,f +9257,3623,14,1,f +9257,4070,14,1,f +9257,4070,71,1,f +9257,4081b,71,2,f +9257,4085c,14,2,f +9257,4589,71,2,f +9257,4589,14,3,f +9257,54200,71,1,f +9257,54200,40,1,f +9257,54200,40,1,t +9257,54200,71,1,t +9259,3001,15,1,f +9259,3003,15,1,f +9259,3034,1,2,f +9259,3039,47,1,f +9259,3039,1,1,f +9259,3137c01,0,1,f +9259,3298,15,1,f +9259,3641,0,2,f +9259,3747b,15,1,f +9259,3795,1,3,f +9259,4730,15,1,f +9259,4745,4,1,f +9260,3001,1,2,f +9260,3001,14,2,f +9260,3001,15,2,f +9260,3001,4,3,f +9260,3002,14,2,f +9260,3002,1,2,f +9260,3002,4,2,f +9260,3003,15,2,f +9260,3003,1,4,f +9260,3003,14,4,f +9260,3003,4,4,f +9260,3007,4,1,f +9260,4202,2,1,f +9261,15445,72,1,f +9261,18828pr0001,27,1,f +9261,4740,42,1,f +9261,88646,0,1,f +9261,970c153pr0750,321,1,f +9261,973pr2831c01,321,1,f +9263,2432,0,1,f +9263,3001,8,2,f +9263,3001,15,2,f +9263,3001,0,2,f +9263,3001,3,2,f +9263,3001,4,2,f +9263,3002,14,2,f +9263,3002,4,2,f +9263,3002,15,2,f +9263,3003,8,2,f +9263,3003,14,4,f +9263,3003,15,4,f +9263,3003,4,8,f +9263,3003,3,2,f +9263,3003,0,2,f +9263,3004,14,4,f +9263,3004,15,6,f +9263,3004,3,4,f +9263,3004,4,10,f +9263,3004,0,2,f +9263,3004,8,4,f +9263,30076,0,1,f +9263,3008,15,2,f +9263,3008,4,2,f +9263,3008,14,2,f +9263,3009,4,2,f +9263,3009,14,2,f +9263,3009,15,2,f +9263,3010,4,4,f +9263,3010,14,2,f +9263,3010,8,2,f +9263,3010,15,2,f +9263,3020,4,2,f +9263,3022,4,2,f +9263,3022,7,2,f +9263,30285,15,4,f +9263,30285,7,4,f +9263,3030,7,1,f +9263,3032,7,1,f +9263,3039,47,1,f +9263,30391,0,8,f +9263,3297px5,14,1,f +9263,3298,8,6,f +9263,3298,4,2,f +9263,3298,3,2,f +9263,3298px1,3,1,f +9263,3747a,8,2,f +9263,3747a,3,2,f +9263,3795,4,2,f +9263,3823,33,1,f +9263,3829c01,4,1,f +9263,3832,7,2,f +9263,3865,2,1,f +9263,3941,42,1,f +9263,3957a,0,2,f +9263,4083,383,1,f +9263,4132,1,1,f +9263,4133,15,1,f +9263,4175,7,1,f +9263,4286,8,4,f +9263,4286,4,2,f +9263,4287,8,2,f +9263,4328,7,1,f +9263,4349,0,2,f +9263,4727,2,1,f +9263,4728,14,1,f +9263,6064,2,1,f +9263,6234,15,1,f +9263,6235,1,1,f +9263,6249,8,2,f +9263,cre004,9999,1,f +9264,2458,15,1,f +9264,2479,1,1,f +9264,3001,1,1,f +9264,3003,15,1,f +9264,3004,47,2,f +9264,3004,15,2,f +9264,3039,47,1,f +9264,3039,1,1,f +9264,3298,15,1,f +9264,3475b,14,2,f +9264,3747b,1,1,f +9264,3795,15,1,f +9264,3795,14,2,f +9265,160285,9999,1,t +9265,2138,14,1,f +9265,2140,1,1,f +9265,3002,4,1,f +9265,3004,14,4,f +9265,3009,14,3,f +9265,3010,14,2,f +9265,3062b,1,1,f +9265,3622pf1,4,1,f +9265,3795,4,1,f +9265,3852a,6,1,f +9265,3865,7,1,f +9265,4222a,4,2,f +9265,4536,1,2,f +9265,4780c01,15,1,f +9265,92410,14,1,f +9265,fab3h,9999,1,f +9265,fab7c,9999,1,f +9267,2357,0,4,f +9267,2420,71,2,f +9267,2420,70,2,f +9267,2436,71,3,f +9267,2456,19,1,f +9267,2540,19,2,f +9267,2540,0,2,f +9267,2540,71,1,f +9267,2555,71,1,f +9267,3002,0,1,f +9267,3003,71,1,f +9267,3004,19,1,f +9267,30044,71,1,f +9267,30046,0,1,f +9267,3005,0,4,f +9267,3010,72,2,f +9267,30132,72,3,f +9267,30132,72,1,t +9267,30149,19,1,f +9267,30149,0,1,f +9267,30153,47,1,f +9267,3020,72,4,f +9267,3020,0,1,f +9267,3021,71,1,f +9267,3022,0,2,f +9267,3022,71,5,f +9267,3023,19,3,f +9267,3023,72,2,f +9267,3023,0,4,f +9267,3023,71,7,f +9267,30236,19,2,f +9267,3024,70,2,f +9267,3024,0,4,f +9267,3036,0,1,f +9267,30374,0,2,f +9267,3044b,19,1,f +9267,3048c,15,1,f +9267,3069b,15,4,f +9267,3069b,19,2,f +9267,32123b,71,1,t +9267,32123b,71,2,f +9267,33322,36,1,t +9267,33322,36,1,f +9267,3483,0,8,f +9267,3626bpr0516a,78,1,f +9267,3626bpr0572,78,1,f +9267,3626bpr0573,78,1,f +9267,3626bpr0574,78,1,f +9267,3626bpr0575,78,1,f +9267,3660,0,4,f +9267,3660,19,2,f +9267,3665,19,2,f +9267,3666,19,1,f +9267,3666,71,1,f +9267,3700,4,1,f +9267,3710,19,3,f +9267,3710,71,4,f +9267,3710,0,3,f +9267,3794b,15,1,f +9267,3795,71,1,f +9267,3795,0,2,f +9267,3829c01,71,2,f +9267,3894,0,2,f +9267,3901,70,1,f +9267,4070,71,2,f +9267,4085c,0,2,f +9267,41769,15,3,f +9267,41769,0,1,f +9267,41769,71,1,f +9267,41770,71,1,f +9267,41770,0,1,f +9267,41770,15,3,f +9267,41879a,71,1,f +9267,4274,1,2,f +9267,4274,1,1,t +9267,4282,72,2,f +9267,43337,72,2,f +9267,43337,40,1,f +9267,44676,19,2,f +9267,44728,15,1,f +9267,4485,15,1,f +9267,4589,19,2,f +9267,47720,71,2,f +9267,47720,0,2,f +9267,4854,72,1,f +9267,4858,15,1,f +9267,4864b,40,2,f +9267,50946,71,1,f +9267,52031,0,2,f +9267,53451,135,1,t +9267,53451,135,1,f +9267,56902,71,8,f +9267,59230,0,1,t +9267,59230,0,2,f +9267,60032,0,5,f +9267,6005,19,2,f +9267,6019,71,5,f +9267,6019,19,2,f +9267,60470a,0,2,f +9267,60478,19,2,f +9267,60478,0,2,f +9267,6141,47,5,f +9267,6141,47,2,t +9267,6141,36,4,f +9267,6141,36,2,t +9267,6141,72,6,f +9267,6141,72,2,t +9267,61506,0,2,f +9267,61506,70,1,f +9267,61678,19,2,f +9267,6180,0,2,f +9267,6187,0,1,f +9267,62361,0,2,f +9267,6628,0,1,f +9267,6636,72,2,f +9267,6636,0,3,f +9267,6636,71,2,f +9267,75c06,0,1,f +9267,85607,226,1,f +9267,85718,28,1,f +9267,970c00,0,3,f +9267,970c00pr0124,4,1,f +9267,973pr1463c01,0,2,f +9267,973pr1464c01,4,1,f +9267,973pr1465c01,15,1,f +9267,973pr1468c01,28,1,f +9268,10190,0,2,f +9268,11303,272,1,f +9268,15068pr0006,4,1,f +9268,18980,0,2,f +9268,2412b,71,2,f +9268,2446,15,2,f +9268,2447,40,1,t +9268,2447,40,2,f +9268,2516,14,1,f +9268,2540,15,1,f +9268,2654,71,5,f +9268,3008,70,1,f +9268,30090,41,1,t +9268,30090,41,1,f +9268,30091,72,1,f +9268,30136,71,1,f +9268,30136,70,5,f +9268,3023,182,1,f +9268,3023,72,2,f +9268,3032,70,2,f +9268,3032,1,2,f +9268,30340,14,1,f +9268,30377,72,2,f +9268,30377,72,1,t +9268,30526,71,1,f +9268,3062b,14,1,f +9268,30663,71,1,f +9268,3626bpr0389,14,1,f +9268,3626bpr0754a,14,1,f +9268,3626cpr0893,14,1,f +9268,3626cpr1578,14,1,f +9268,3700,71,2,f +9268,3710,4,1,f +9268,3795,15,2,f +9268,3829c01,14,1,f +9268,3834,15,1,f +9268,3838,14,1,f +9268,3941,71,2,f +9268,3956,71,1,f +9268,3958,0,1,f +9268,4006,0,1,f +9268,4175,0,1,f +9268,4274,1,1,f +9268,4274,1,1,t +9268,44728,72,1,f +9268,4599b,71,1,t +9268,4599b,14,1,f +9268,4599b,71,1,f +9268,4599b,14,1,t +9268,46667,72,1,f +9268,50950,4,2,f +9268,51739,15,1,f +9268,58176,33,2,f +9268,59900,14,1,f +9268,60208,4,1,f +9268,60897,4,2,f +9268,6126b,182,2,f +9268,6126b,41,1,f +9268,6153b,4,1,f +9268,6158,72,1,f +9268,85861,182,2,f +9268,85861,182,1,t +9268,970c00,272,1,f +9268,970c00pr0408,0,1,f +9268,970c00pr0983,0,1,f +9268,970c00pr0984,0,1,f +9268,973pr2188c01,0,1,f +9268,973pr2913c01,25,1,f +9268,973pr3205c01,0,1,f +9268,973pr3206c01,0,1,f +9268,97895,14,1,f +9268,98100,71,1,f +9269,30374,42,1,f +9269,3626bpr0607,78,1,f +9269,3626bpr0635,78,1,f +9269,3901,28,1,f +9269,64567,71,1,f +9269,64808pr0001,484,1,f +9269,970c00,19,1,f +9269,970c00,0,1,f +9269,970c00,15,1,f +9269,973pr1418c01,0,1,f +9269,973pr1525c01,28,1,f +9269,973pr2302c01,15,1,f +9270,2362b,15,1,f +9270,3003,15,1,f +9270,3020,72,1,f +9270,3022,4,1,f +9270,3022,2,1,f +9270,3298,4,1,f +9270,3852b,191,1,f +9270,4070,15,1,f +9270,4085c,15,1,f +9270,4085c,15,1,t +9270,4523,1,1,f +9270,4599a,1,1,f +9270,4599a,1,1,t +9271,10301pr0002,0,1,f +9271,10677pr0002,0,1,f +9271,3626bpr1028,0,1,f +9271,88646,0,1,f +9271,970c00,0,1,f +9273,2412b,36,2,f +9273,2412b,1,2,f +9273,2431,33,1,f +9273,2432,14,2,f +9273,2446,15,1,f +9273,2447,40,1,f +9273,2447,40,1,t +9273,2555,0,1,f +9273,3004,0,3,f +9273,3005,4,2,f +9273,3005,15,2,f +9273,30089,0,1,f +9273,30187b,1,1,f +9273,30187c06,1,1,t +9273,30189,1,1,f +9273,30190,15,1,f +9273,3021,15,2,f +9273,3023,72,2,f +9273,3023,71,3,f +9273,30256,71,2,f +9273,30261p02,15,1,f +9273,3031,15,1,f +9273,3031,71,1,f +9273,30375,0,1,f +9273,3069b,4,2,f +9273,3069b,15,1,f +9273,3069bpr0115,15,1,f +9273,3070b,15,1,t +9273,3070b,15,2,f +9273,32028,15,2,f +9273,3245c,15,1,f +9273,3626bpr0282,14,1,f +9273,3626bpr0743,14,1,f +9273,3626cpr0892,14,1,f +9273,3648stk01,9999,1,t +9273,3710,4,3,f +9273,3710,15,4,f +9273,3710,72,1,f +9273,3794b,14,1,f +9273,3829c01,14,2,f +9273,3958,71,1,f +9273,4070,0,3,f +9273,4085c,15,2,f +9273,4162,71,1,f +9273,43337,15,2,f +9273,43337,4,2,f +9273,44301a,15,2,f +9273,44301a,4,2,f +9273,44568,15,1,f +9273,45677,15,1,f +9273,4589,0,2,f +9273,4865a,41,3,f +9273,48729b,0,1,t +9273,48729b,0,1,f +9273,49668,0,1,f +9273,50745,15,4,f +9273,50745,4,4,f +9273,50950,72,2,f +9273,52036,72,2,f +9273,52038,15,2,f +9273,52038,4,2,f +9273,52501,15,2,f +9273,52501,4,2,f +9273,54200,40,1,t +9273,54200,47,1,t +9273,54200,40,2,f +9273,54200,47,3,f +9273,54200,72,1,t +9273,54200,72,2,f +9273,54200,15,2,f +9273,54200,36,3,f +9273,54200,15,1,t +9273,54200,36,2,t +9273,57783,40,1,f +9273,57783,41,1,f +9273,58176,33,2,f +9273,6014b,15,6,f +9273,6014b,71,4,f +9273,60700,0,11,f +9273,6081,15,1,f +9273,6106,71,1,f +9273,61409,72,2,f +9273,61409,0,4,f +9273,6141,34,1,f +9273,6141,46,1,t +9273,6141,36,2,f +9273,6141,36,1,t +9273,6141,34,1,t +9273,6141,46,1,f +9273,6157,0,4,f +9273,61678,15,2,f +9273,61678,4,2,f +9273,6191,72,1,f +9273,62810,484,1,f +9273,6636,71,1,f +9273,85974,70,1,f +9273,88930,15,1,f +9273,88930,4,1,f +9273,92946,4,2,f +9273,970c00,0,2,f +9273,970c00,288,1,f +9273,973pr1186c01,0,1,f +9273,973pr1188c01,0,1,f +9273,973pr1573c01,15,1,f +9274,3004,1,1,f +9274,3010,1,1,f +9274,30608,70,1,f +9274,3062b,34,1,f +9274,3069b,1,1,f +9274,3626bpr0043,14,1,f +9274,3626bpr0245,14,1,f +9274,3795,15,1,f +9274,3899,4,1,f +9274,4085c,71,1,f +9274,4085c,71,1,t +9274,4095,0,1,f +9274,4735,71,1,t +9274,4735,71,1,f +9274,4865a,15,1,f +9274,6093,70,1,f +9274,970c00,71,1,f +9274,970c00,15,1,f +9274,973pr1163c01,272,1,f +9274,973pr1241c01,15,1,f +9275,10928,72,3,f +9275,11090,0,1,f +9275,11214,72,4,f +9275,11399,72,2,f +9275,11458,72,8,f +9275,11476,71,3,f +9275,11477,72,2,f +9275,13731,72,2,f +9275,14769,71,2,f +9275,15068,71,10,f +9275,15068,72,14,f +9275,15092,72,8,f +9275,15303,36,3,f +9275,15392,72,5,f +9275,15400,72,2,f +9275,15403,0,4,f +9275,15462,28,1,f +9275,15470,179,4,f +9275,15573,1,4,f +9275,15712,0,1,f +9275,17485pr0001,71,1,f +9275,17486,71,2,f +9275,18654,72,2,f +9275,18677,71,8,f +9275,19114pr0001,0,1,f +9275,2357,0,2,f +9275,2412b,320,4,f +9275,2412b,71,5,f +9275,2412b,0,8,f +9275,2420,72,4,f +9275,2420,320,6,f +9275,2431,19,2,f +9275,2431,72,1,f +9275,2432,0,2,f +9275,2450,71,8,f +9275,2476a,71,8,f +9275,2540,72,3,f +9275,2654,71,9,f +9275,27093,40,1,f +9275,2780,0,48,f +9275,2817,71,2,f +9275,3001,71,2,f +9275,3001,72,1,f +9275,3002,71,3,f +9275,3003,19,2,f +9275,3003,71,1,f +9275,3004,71,2,f +9275,3009,0,2,f +9275,30162,71,1,f +9275,3020,19,3,f +9275,3020,320,5,f +9275,3020,0,6,f +9275,3020,71,12,f +9275,3020,72,10,f +9275,3021,72,5,f +9275,3021,71,14,f +9275,3022,71,4,f +9275,3022,320,13,f +9275,3022,72,8,f +9275,3023,72,4,f +9275,3023,41,14,f +9275,3023,320,23,f +9275,3023,28,8,f +9275,3023,71,6,f +9275,3023,0,14,f +9275,3024,72,1,f +9275,3029,72,8,f +9275,3030,72,2,f +9275,3031,0,2,f +9275,3032,72,4,f +9275,3035,72,2,f +9275,3035,71,2,f +9275,3036,71,1,f +9275,30363,0,2,f +9275,30374,41,1,f +9275,30374,143,2,f +9275,3039,0,4,f +9275,30586,71,4,f +9275,30592,71,2,f +9275,3068b,71,4,f +9275,3068b,0,1,f +9275,3068b,19,1,f +9275,3069b,71,11,f +9275,3069b,41,4,f +9275,3069b,320,4,f +9275,32000,71,2,f +9275,32002,19,4,f +9275,32018,72,2,f +9275,32028,72,8,f +9275,32028,71,4,f +9275,32054,0,6,f +9275,32056,14,4,f +9275,32059,71,1,f +9275,32062,4,11,f +9275,32064a,4,2,f +9275,32072,0,4,f +9275,32123b,14,5,f +9275,32198,19,1,f +9275,32270,0,1,f +9275,32271,72,4,f +9275,32291,72,2,f +9275,32316,0,2,f +9275,32523,71,2,f +9275,32524,72,6,f +9275,32526,72,4,f +9275,3298,71,5,f +9275,3460,72,1,f +9275,3623,71,4,f +9275,3626cpr1515,78,1,f +9275,3626cpr1593,78,1,f +9275,3626cpr1954,484,1,f +9275,3626cpr1982,19,1,f +9275,3666,320,10,f +9275,3679,71,2,f +9275,3680,0,2,f +9275,3700,71,5,f +9275,3701,19,4,f +9275,3701,72,2,f +9275,3703,71,4,f +9275,3705,0,2,f +9275,3706,0,1,f +9275,3710,0,3,f +9275,3710,72,5,f +9275,3710,19,4,f +9275,3710,71,4,f +9275,3713,71,2,f +9275,3713,4,3,f +9275,3738,72,3,f +9275,3747b,72,2,f +9275,3795,320,1,f +9275,3795,71,6,f +9275,3795,0,2,f +9275,3795,72,4,f +9275,3832,71,6,f +9275,3832,72,4,f +9275,3894,71,11,f +9275,4032a,71,7,f +9275,4032a,0,6,f +9275,41678,71,2,f +9275,42610,71,4,f +9275,4274,1,20,f +9275,4282,72,2,f +9275,4282,71,5,f +9275,4286,71,2,f +9275,43093,1,6,f +9275,43898,72,1,f +9275,44294,71,3,f +9275,44567a,72,4,f +9275,44567a,71,4,f +9275,44728,72,2,f +9275,4477,71,4,f +9275,4477,72,5,f +9275,4510,71,2,f +9275,4510,72,9,f +9275,4697b,71,1,f +9275,4740,42,4,f +9275,4740,72,1,f +9275,4861,72,1,f +9275,50304,71,2,f +9275,50304,19,2,f +9275,50305,19,2,f +9275,50305,71,2,f +9275,54200,72,2,f +9275,55013,72,1,f +9275,55981,71,2,f +9275,56145,71,1,f +9275,58247,0,2,f +9275,59443,0,1,f +9275,59900,42,4,f +9275,60471,71,4,f +9275,60471,0,4,f +9275,60474,320,4,f +9275,60474,72,2,f +9275,60477,19,2,f +9275,60483,71,4,f +9275,60484,72,2,f +9275,60897,72,1,f +9275,61199,71,2,f +9275,6141,71,12,f +9275,6141,36,8,f +9275,62462,0,2,f +9275,62462,71,8,f +9275,63864,71,10,f +9275,63864,320,2,f +9275,64567,71,1,f +9275,64567,0,1,f +9275,64799,71,4,f +9275,6536,72,6,f +9275,6541,71,4,f +9275,6558,1,17,f +9275,6572,71,1,f +9275,6629,72,1,f +9275,6636,71,4,f +9275,76766,71,1,f +9275,85943,72,4,f +9275,85984,71,5,f +9275,85984,0,2,f +9275,85984,72,7,f +9275,87079,71,4,f +9275,87083,72,4,f +9275,87580,320,2,f +9275,87620,71,4,f +9275,87994,0,1,f +9275,88283,0,1,f +9275,91988,72,2,f +9275,92081,0,1,f +9275,92099,72,2,f +9275,92745pr0003,15,1,f +9275,93273,72,2,f +9275,93274,72,8,f +9275,96874,25,1,t +9275,970c00,0,1,f +9275,970c00,84,1,f +9275,970c00pr0728,484,1,f +9275,970c00pr1076,308,1,f +9275,973pr2788c01,28,1,f +9275,973pr2891c01,0,1,f +9275,973pr3441c01,72,1,f +9275,973pr3474c01,84,1,f +9275,98100,71,12,f +9275,98100,0,2,f +9275,98100pr1002,484,1,f +9275,98138,41,12,f +9275,98560,71,1,f +9275,98585,42,2,f +9275,99207,0,2,f +9275,99781,0,2,f +9275,99781,71,3,f +9276,2357,73,4,f +9276,2412b,72,8,f +9276,2420,4,2,f +9276,2431,73,6,f +9276,2445,4,1,f +9276,2540,0,1,f +9276,2780,0,1,t +9276,2780,0,2,f +9276,2817,4,1,f +9276,2921,71,1,f +9276,3001,1,2,f +9276,3001,19,6,f +9276,3002,70,2,f +9276,3003,4,3,f +9276,30031,71,1,f +9276,3004,73,28,f +9276,3004,15,1,f +9276,3005,47,4,f +9276,3005,15,4,f +9276,3005,73,34,f +9276,30055,15,6,f +9276,3008,70,1,f +9276,3009,15,3,f +9276,3009,4,1,f +9276,3010,15,2,f +9276,3010,73,24,f +9276,30134,70,1,f +9276,30176,2,2,f +9276,3020,19,4,f +9276,3021,4,2,f +9276,3023,46,2,f +9276,3023,4,3,f +9276,3023,73,4,f +9276,3024,73,1,t +9276,3024,73,6,f +9276,3024,4,1,t +9276,3024,71,1,t +9276,3024,4,2,f +9276,3024,71,4,f +9276,3030,71,1,f +9276,3031,1,1,f +9276,3031,19,1,f +9276,3032,71,1,f +9276,3033,71,2,f +9276,30340,14,1,f +9276,3036,1,2,f +9276,30374,70,1,f +9276,3038,4,1,f +9276,3039,4,9,f +9276,3040b,4,3,f +9276,3062b,19,3,f +9276,3068b,4,1,f +9276,3069b,73,2,f +9276,3069b,15,4,f +9276,3070b,72,1,t +9276,3070b,2,4,f +9276,3070b,72,7,f +9276,3070b,14,1,t +9276,3070b,15,5,f +9276,3070b,15,1,t +9276,3070b,2,1,t +9276,3070b,14,6,f +9276,3176,0,1,f +9276,3245c,73,2,f +9276,3297,4,6,f +9276,33121,191,1,f +9276,3622,73,8,f +9276,3623,71,1,f +9276,3626bpr0499,14,1,f +9276,3665,2,4,f +9276,3666,70,2,f +9276,3666,71,4,f +9276,3710,71,4,f +9276,3710,73,3,f +9276,3710,70,4,f +9276,3795,70,3,f +9276,3899,47,1,f +9276,3941,19,3,f +9276,3958,70,2,f +9276,4032a,71,1,f +9276,4032a,70,2,f +9276,4085c,71,1,f +9276,4162,4,2,f +9276,4274,71,1,f +9276,4274,71,1,t +9276,4445,4,1,f +9276,4477,71,2,f +9276,4495b,4,1,f +9276,4589,182,2,f +9276,4589,2,1,f +9276,4589,70,5,f +9276,4733,0,3,f +9276,4735,71,1,f +9276,48729b,0,1,t +9276,48729b,0,1,f +9276,49668,15,2,f +9276,49668,191,1,f +9276,54200,15,1,t +9276,54200,4,2,f +9276,54200,4,1,t +9276,54200,15,6,f +9276,57894,15,4,f +9276,57895,47,4,f +9276,6005,2,4,f +9276,6020,0,1,f +9276,60470a,4,1,f +9276,60475b,73,3,f +9276,60476,71,2,f +9276,60594,15,2,f +9276,60596,15,4,f +9276,60603,47,2,f +9276,60616a,47,3,f +9276,60623,14,1,f +9276,6091,1,6,f +9276,61184,71,1,f +9276,6141,71,8,f +9276,6141,71,1,t +9276,6141,15,3,f +9276,6141,70,4,f +9276,6141,15,1,t +9276,6141,57,1,t +9276,6141,57,4,f +9276,6141,4,3,f +9276,6141,4,1,t +9276,6141,70,1,t +9276,6141,14,1,t +9276,6141,14,6,f +9276,63864,71,4,f +9276,63965,0,1,f +9276,64644,308,2,f +9276,64648,179,1,f +9276,6541,4,4,f +9276,6636,71,2,f +9276,87087,71,3,f +9276,87991,484,1,f +9276,88292,73,4,f +9276,90397,15,1,f +9276,91405,10,1,f +9276,92438,19,1,f +9276,92593,71,2,f +9276,970c00,71,1,f +9276,973pr1173c01,4,1,f +9276,99781,71,2,f +9278,3004,47,4,f +9278,3004,0,4,f +9278,3005,47,3,f +9278,3005,0,3,f +9278,3008,47,2,f +9278,3008,0,2,f +9278,3009,0,2,f +9278,3009,47,2,f +9278,3010,47,3,f +9278,3010,0,3,f +9279,10928,72,2,f +9279,11271,179,1,f +9279,15462,28,1,f +9279,19049,179,1,f +9279,19050,42,1,f +9279,19082,484,1,f +9279,19082,297,1,f +9279,19086,72,1,f +9279,19087,179,3,f +9279,19090,148,4,f +9279,20251,272,1,f +9279,20252,148,5,f +9279,2780,0,1,t +9279,2780,0,3,f +9279,32062,4,1,f +9279,32072,0,2,f +9279,32072,14,1,f +9279,33299a,71,1,f +9279,3713,71,3,f +9279,3713,71,1,t +9279,41669,42,2,f +9279,43093,1,1,f +9279,44817,179,1,f +9279,53451,15,1,t +9279,53451,15,1,f +9279,53585,0,2,f +9279,6558,1,1,f +9279,87083,72,2,f +9279,87747,15,1,f +9279,87747,15,1,t +9279,90609,42,4,f +9279,90609,0,2,f +9279,90616,0,2,f +9279,90626,0,1,f +9279,90640,484,4,f +9279,90640,179,4,f +9279,90661,179,2,f +9279,93575,179,2,f +9279,98603s02pr0007,484,1,f +9280,3081cc01,4,6,f +9280,3853,4,8,f +9280,3854,15,16,f +9280,3856,2,16,f +9280,3861b,4,4,f +9280,73312,4,2,f +9287,2412b,42,2,f +9287,2419,1,1,f +9287,30214,42,1,f +9287,3032,1,1,f +9287,3069bp53,0,1,f +9287,3298,0,1,f +9287,3475b,0,2,f +9287,3626bpb0081,1,1,f +9287,3838,1,1,f +9287,4070,8,2,f +9287,4589,42,2,f +9287,4590,0,1,f +9287,4598,8,1,f +9287,4740,42,2,f +9287,970x023,8,1,f +9287,973pb0080c01,0,1,f +9288,2431,70,4,f +9288,2431,4,1,f +9288,2528pr0001,0,1,f +9288,2530,72,1,f +9288,2530,72,1,t +9288,3001,14,3,f +9288,3001,27,2,f +9288,3001,4,2,f +9288,3001,15,2,f +9288,3003,2,2,f +9288,3003,14,1,f +9288,3004,14,4,f +9288,3004,1,1,f +9288,3004,15,2,f +9288,3005,2,4,f +9288,3005pe1,15,2,f +9288,3009,4,2,f +9288,3010,0,2,f +9288,30153,47,3,f +9288,3020,25,2,f +9288,3020,1,1,f +9288,3021,1,2,f +9288,3021,70,4,f +9288,3023,1,4,f +9288,3034,14,1,f +9288,3036,1,1,f +9288,3039,1,1,f +9288,3040b,15,2,f +9288,3040b,70,4,f +9288,3040b,1,2,f +9288,3040b,0,2,f +9288,3062b,14,4,f +9288,3062b,72,5,f +9288,3070b,4,1,t +9288,3070b,4,2,f +9288,3298,1,1,f +9288,3460,14,1,f +9288,3622,4,2,f +9288,3622,15,4,f +9288,3622,2,1,f +9288,3623,0,1,f +9288,3626bpr0570,14,1,f +9288,3633,0,4,f +9288,3660,0,4,f +9288,3660,4,2,f +9288,3660,1,2,f +9288,3665,0,4,f +9288,3665,15,2,f +9288,3665,4,6,f +9288,3666,15,1,f +9288,3679,71,1,f +9288,3680,0,1,f +9288,3700,4,8,f +9288,3710,25,2,f +9288,3710,73,1,f +9288,3747b,70,2,f +9288,3794b,1,2,f +9288,3794b,14,1,f +9288,3795,71,1,f +9288,3937,4,1,f +9288,4733,1,1,f +9288,48723,70,1,f +9288,49668,191,1,f +9288,52501,1,2,f +9288,54200,27,1,f +9288,54200,4,2,f +9288,54200,4,1,t +9288,54200,27,1,t +9288,6134,4,1,f +9288,6141,15,4,f +9288,6141,15,1,t +9288,6215,4,2,f +9288,6232,15,1,f +9288,970c00,0,1,f +9288,973pr1460c01,1,1,f +9289,2356,2,3,f +9289,2412b,71,5,f +9289,2412b,15,3,f +9289,2456,15,3,f +9289,2456,1,3,f +9289,2456,4,6,f +9289,3001,1,24,f +9289,3001,2,8,f +9289,3001,71,8,f +9289,3001,0,21,f +9289,3001,70,2,f +9289,3001,14,22,f +9289,3001,4,13,f +9289,3001,15,50,f +9289,3002,15,12,f +9289,3002,1,12,f +9289,3002,4,6,f +9289,3002,0,12,f +9289,3002,14,7,f +9289,3002,2,2,f +9289,3003,14,26,f +9289,3003,70,4,f +9289,3003,71,7,f +9289,3003,1,42,f +9289,3003,4,39,f +9289,3003,15,45,f +9289,3003,33,9,f +9289,3003,0,19,f +9289,3003,2,18,f +9289,3004,70,6,f +9289,3004,1,42,f +9289,3004,4,26,f +9289,3004,2,18,f +9289,3004,14,30,f +9289,3004,15,68,f +9289,3004,0,30,f +9289,3005,1,26,f +9289,3005,2,16,f +9289,3005,4,20,f +9289,3005,15,28,f +9289,3005,0,16,f +9289,3005,33,4,f +9289,3005,14,24,f +9289,3005pe1,15,6,f +9289,3006,4,1,f +9289,3007,1,3,f +9289,3007,4,5,f +9289,3007,15,3,f +9289,3008,14,1,f +9289,3008,15,6,f +9289,3008,1,6,f +9289,3009,4,6,f +9289,3009,15,6,f +9289,3009,1,7,f +9289,3009,14,6,f +9289,3010,4,7,f +9289,3010,2,3,f +9289,3010,71,2,f +9289,3010,1,10,f +9289,3010,0,2,f +9289,3010,15,27,f +9289,3010,14,8,f +9289,3020,1,1,f +9289,3020,0,1,f +9289,3021,2,1,f +9289,3021,71,1,f +9289,3021,1,2,f +9289,3022,2,1,f +9289,3022,1,3,f +9289,3022,15,1,f +9289,3023,47,5,f +9289,3023,1,2,f +9289,3023,73,2,f +9289,3023,15,3,f +9289,3023,2,1,f +9289,3023,71,2,f +9289,3024,46,2,f +9289,3024,73,2,f +9289,3031,4,1,f +9289,30363,15,3,f +9289,3037,14,3,f +9289,3037,1,3,f +9289,3037,4,18,f +9289,3038,4,6,f +9289,3038,71,2,f +9289,3039,14,5,f +9289,3039,1,6,f +9289,3039,72,4,f +9289,3039,4,16,f +9289,3039,15,3,f +9289,3040b,14,4,f +9289,3040b,1,4,f +9289,3040b,2,4,f +9289,3040b,72,4,f +9289,3040b,15,3,f +9289,3040b,4,9,f +9289,3041,4,4,f +9289,3043,4,5,f +9289,3044b,2,1,f +9289,3044b,4,2,f +9289,3062b,4,4,f +9289,3062b,47,2,f +9289,3065,33,2,f +9289,3068b,2,1,f +9289,3069b,73,2,f +9289,3297,0,10,f +9289,3298,4,8,f +9289,3298,0,4,f +9289,33303,15,4,f +9289,3403c01,71,1,f +9289,3471,2,2,f +9289,3622,1,8,f +9289,3622,14,7,f +9289,3622,15,18,f +9289,3622,4,6,f +9289,3622,2,2,f +9289,3622,71,2,f +9289,3660,1,6,f +9289,3660,71,4,f +9289,3660,2,2,f +9289,3660,14,2,f +9289,3660,15,5,f +9289,3665,4,2,f +9289,3684,1,1,f +9289,3684,2,2,f +9289,3709,71,1,f +9289,3710,15,2,f +9289,3710,0,1,f +9289,3747b,1,1,f +9289,3832,72,2,f +9289,3832,15,1,f +9289,3937,71,1,f +9289,3938,15,1,f +9289,3957a,71,1,f +9289,4070,4,2,f +9289,4081b,14,1,f +9289,4130,14,1,f +9289,4130,15,1,f +9289,4131,0,2,f +9289,4132,15,4,f +9289,4132,1,4,f +9289,4133,15,4,f +9289,4133,72,4,f +9289,4201,2,2,f +9289,4202,71,3,f +9289,42022,14,2,f +9289,4286,14,2,f +9289,4286,2,2,f +9289,44126,4,1,f +9289,4733,71,1,f +9289,4864b,47,2,f +9289,6091,71,4,f +9289,6215,14,1,f +9290,2357,15,4,f +9290,2456,15,3,f +9290,3001,29,1,f +9290,3004,15,2,f +9290,3005,5,4,f +9290,30055,15,2,f +9290,3009,15,4,f +9290,3010,15,3,f +9290,3023,15,1,f +9290,3024,15,1,f +9290,3036,2,1,f +9290,3037,26,6,f +9290,3040b,5,12,f +9290,3040b,15,4,f +9290,3048c,297,1,f +9290,3062b,27,4,f +9290,33078,4,2,f +9290,33175,4,1,f +9290,3455,15,1,f +9290,3460,2,1,f +9290,3622,15,2,f +9290,3623,15,1,f +9290,3665,15,4,f +9290,3852b,191,1,f +9290,44728,15,1,f +9290,4523,27,1,f +9290,6141,41,3,f +9290,6141,15,8,f +9290,61969,484,1,f +9290,6250pr01,484,1,f +9290,6256,191,2,f +9291,2420,4,2,f +9291,2420,0,2,f +9291,2450,4,2,f +9291,2450,0,2,f +9291,2730,4,2,f +9291,2780,0,2,f +9291,2819,7,1,f +9291,2825,0,2,f +9291,3021,4,2,f +9291,3022,4,2,f +9291,3022,0,2,f +9291,3034,0,4,f +9291,3068b,4,1,f +9291,3298pb021,4,1,f +9291,3460,0,1,f +9291,3482,15,8,f +9291,3483,0,8,f +9291,3623,4,2,f +9291,3647,7,1,f +9291,3666,4,2,f +9291,3701,4,2,f +9291,3701,0,1,f +9291,3704,0,1,f +9291,3705,0,3,f +9291,3706,0,1,f +9291,3710,4,1,f +9291,3710,0,3,f +9291,3713,7,2,f +9291,3737,0,1,f +9291,3743,7,1,f +9291,3749,7,2,f +9291,3894,4,2,f +9291,4070,0,4,f +9291,4261,7,2,f +9291,4262,0,5,f +9291,4262,4,2,f +9291,4265a,7,4,f +9291,4274,7,2,f +9291,4519,0,1,f +9291,4864a,4,2,f +9291,6541,0,2,f +9293,32506,27,4,f +9293,57563,27,2,f +9293,60176,288,4,f +9293,60895,27,1,f +9293,60896,288,2,f +9293,60899,288,2,f +9293,64262,57,1,f +9293,64323,288,1,f +9294,11153,0,4,f +9294,11211,71,1,f +9294,11303,1,1,f +9294,11477,25,4,f +9294,11477,72,2,f +9294,13731,0,2,f +9294,14682,71,2,f +9294,15068,0,1,f +9294,15207,72,1,f +9294,15535,72,3,f +9294,15573,71,4,f +9294,2412b,0,2,f +9294,2412b,71,8,f +9294,2431,25,5,f +9294,2431,72,1,f +9294,2432,1,3,f +9294,2446,1,1,f +9294,2447,40,1,f +9294,2447,40,1,t +9294,2456,71,2,f +9294,2465,0,2,f +9294,2926,0,2,f +9294,3005,19,2,f +9294,3008,0,2,f +9294,3009,1,2,f +9294,3009,0,2,f +9294,3010,0,1,f +9294,3010,71,2,f +9294,30157,72,2,f +9294,30162,72,1,f +9294,3020,25,4,f +9294,3020,0,1,f +9294,3021,71,2,f +9294,3022,25,2,f +9294,3023,25,12,f +9294,3023,36,2,f +9294,3023,0,3,f +9294,3024,36,2,f +9294,3024,36,1,t +9294,3032,72,3,f +9294,3032,71,2,f +9294,3036,72,1,f +9294,3037,0,1,f +9294,30414,71,1,f +9294,30602,0,1,f +9294,3069b,72,2,f +9294,32001,0,1,f +9294,32009,72,1,f +9294,32013,72,2,f +9294,32028,72,10,f +9294,32062,4,1,f +9294,32064a,0,2,f +9294,32064a,72,2,f +9294,32073,71,1,f +9294,32123b,14,1,t +9294,32123b,14,3,f +9294,3245c,19,1,f +9294,3297,71,1,f +9294,33299a,71,1,f +9294,3460,72,4,f +9294,3623,72,2,f +9294,3623,0,2,f +9294,3626cpr0499,14,1,f +9294,3626cpr1580,14,1,f +9294,3665,0,2,f +9294,3666,25,9,f +9294,3666,0,8,f +9294,3673,71,1,t +9294,3673,71,2,f +9294,3700,0,2,f +9294,3701,19,1,f +9294,3705,0,2,f +9294,3709,72,4,f +9294,3710,0,3,f +9294,3710,25,7,f +9294,3713,4,2,f +9294,3713,4,1,t +9294,3795,25,1,f +9294,3829c01,1,2,f +9294,3839b,72,1,f +9294,3899,4,1,f +9294,3958,0,1,f +9294,4006,0,1,f +9294,4032a,25,2,f +9294,4070,0,2,f +9294,4162,72,6,f +9294,4282,71,1,f +9294,43722,25,2,f +9294,43723,25,2,f +9294,44568,71,1,f +9294,4477,72,2,f +9294,46413,40,1,f +9294,47457,15,2,f +9294,48336,71,1,f +9294,50943,71,2,f +9294,51739,25,1,f +9294,52031,25,1,f +9294,52031,0,1,f +9294,54200,0,1,t +9294,54200,25,1,t +9294,54200,47,1,t +9294,54200,25,4,f +9294,54200,0,2,f +9294,54200,47,4,f +9294,55981,0,4,f +9294,58090,0,4,f +9294,6014b,71,4,f +9294,6041,0,2,f +9294,60478,0,2,f +9294,60481,0,2,f +9294,6111,71,2,f +9294,61252,0,2,f +9294,6141,72,1,t +9294,6141,36,1,f +9294,6141,34,1,t +9294,6141,34,1,f +9294,6141,36,1,t +9294,6141,72,2,f +9294,6141,71,1,t +9294,6141,182,6,f +9294,6141,182,2,t +9294,6141,71,2,f +9294,63868,72,2,f +9294,6553,72,1,f +9294,6636,0,4,f +9294,85984,0,2,f +9294,87552,40,4,f +9294,87697,0,4,f +9294,91988,19,1,f +9294,92583,40,1,f +9294,92710c01,25,1,f +9294,970c00,25,2,f +9294,973pr2874c01,0,2,f +9294,97895,14,1,f +9294,98282,72,4,f +9294,99206,0,5,f +9294,99780,71,4,f +9295,2431,70,4,f +9295,2528,0,1,f +9295,2530,72,1,t +9295,2530,72,1,f +9295,2540,2,1,f +9295,2540,14,1,f +9295,2540,1,1,f +9295,2540,4,1,f +9295,3001,0,4,f +9295,3010,0,8,f +9295,30153,57,12,f +9295,30153,47,12,f +9295,30153,42,12,f +9295,30153,36,12,f +9295,30153,41,12,f +9295,30153,34,12,f +9295,3020,0,4,f +9295,3024,70,8,f +9295,3031,70,4,f +9295,3032,0,12,f +9295,3068b,73,1,f +9295,3068b,25,1,f +9295,3068b,14,3,f +9295,3068b,2,3,f +9295,3068b,15,1,f +9295,3068b,4,3,f +9295,3068b,1,2,f +9295,3626bpr0494,15,1,f +9295,3701,70,8,f +9295,3710,70,8,f +9295,3710,0,4,f +9295,3794b,2,4,f +9295,3794b,1,4,f +9295,3794b,4,4,f +9295,3794b,14,4,f +9295,3794b,297,34,f +9295,3937,0,4,f +9295,3941,70,1,f +9295,3958,0,1,f +9295,4006,0,1,f +9295,4237,70,1,f +9295,4238,70,1,f +9295,43337,70,4,f +9295,4865a,4,2,f +9295,4865a,2,2,f +9295,4865a,1,2,f +9295,4865a,14,2,f +9295,4865a,0,8,f +9295,6019,72,4,f +9295,6134,0,4,f +9295,6180,272,4,f +9295,6231,0,8,f +9295,6260,15,1,f +9295,6265,15,2,f +9295,6265,15,1,t +9295,6266,15,2,f +9295,64776pat0001,0,1,f +9295,88930,70,16,f +9296,3003,7,1,f +9296,3004,14,1,f +9296,3004,4,1,f +9296,3004,0,1,f +9296,3004p0b,14,1,f +9296,3020,7,1,f +9296,3022,4,1,f +9296,3040b,4,2,f +9296,3660,7,1,f +9297,bb656,9999,1,f +9299,2412b,0,14,f +9299,2412b,80,8,f +9299,2420,1,14,f +9299,2420,0,6,f +9299,2420,15,2,f +9299,2431,71,6,f +9299,2431,14,6,f +9299,2431,15,1,f +9299,2431,1,18,f +9299,2436,71,1,f +9299,2444,4,2,f +9299,2456,71,1,f +9299,2486,80,1,f +9299,2508,0,1,f +9299,2540,19,2,f +9299,2555,0,7,f +9299,2584,0,1,f +9299,2585,71,1,f +9299,2653,0,2,f +9299,2654,46,4,f +9299,2654,47,2,f +9299,2730,15,6,f +9299,2736,71,1,f +9299,2780,0,30,f +9299,2780,0,1,t +9299,2819,71,1,f +9299,2853,71,1,f +9299,2904,0,1,f +9299,298c02,15,1,t +9299,298c02,15,2,f +9299,30000,72,3,f +9299,3003,0,4,f +9299,3004,15,1,f +9299,3004,1,16,f +9299,30041,0,1,f +9299,3005,182,2,f +9299,3005,15,3,f +9299,3008,1,5,f +9299,3009,15,2,f +9299,3010,15,2,f +9299,3020,14,6,f +9299,3020,72,4,f +9299,3021,19,6,f +9299,3021,4,3,f +9299,3021,0,3,f +9299,3021,15,3,f +9299,3021,1,7,f +9299,3022,1,8,f +9299,3022,15,2,f +9299,3022,72,6,f +9299,3023,72,43,f +9299,3023,1,18,f +9299,3023,15,3,f +9299,3023,4,5,f +9299,3023,36,3,f +9299,3024,72,18,f +9299,3024,47,4,f +9299,3024,182,6,f +9299,3029,72,2,f +9299,3030,71,2,f +9299,3032,71,1,f +9299,3034,0,6,f +9299,3035,1,3,f +9299,30374,0,2,f +9299,30395,72,1,f +9299,30414,71,1,f +9299,30602,1,2,f +9299,3062b,71,17,f +9299,3065,36,2,f +9299,3068b,72,6,f +9299,3068b,1,4,f +9299,3069b,19,6,f +9299,3069b,0,5,f +9299,3069b,47,4,f +9299,3069bp08,15,1,f +9299,3069bpr0086,71,1,f +9299,3070b,1,8,f +9299,3070b,1,1,t +9299,3070bpr0007,71,1,t +9299,3070bpr0007,71,1,f +9299,3185,0,1,f +9299,32000,71,1,f +9299,32001,0,4,f +9299,32013,72,2,f +9299,32016,0,2,f +9299,32028,25,4,f +9299,32034,4,1,f +9299,32039,71,2,f +9299,32054,71,3,f +9299,32056,71,4,f +9299,32062,0,4,f +9299,32068,0,2,f +9299,32069,0,2,f +9299,32072,14,2,f +9299,32123b,14,12,f +9299,32123b,14,1,t +9299,32124,1,2,f +9299,32269,0,1,f +9299,32271,72,2,f +9299,32316,72,2,f +9299,32523,71,2,f +9299,32530,72,4,f +9299,32531,71,1,f +9299,32532,0,2,f +9299,32557,0,2,f +9299,3460,1,5,f +9299,3460,72,18,f +9299,3622,1,5,f +9299,3622,15,4,f +9299,3623,1,8,f +9299,3623,71,4,f +9299,3623,19,2,f +9299,3623,0,4,f +9299,3623,4,2,f +9299,3647,72,1,t +9299,3647,72,2,f +9299,3660,1,2,f +9299,3660,14,2,f +9299,3660,0,2,f +9299,3660,15,2,f +9299,3660,71,21,f +9299,3665,71,2,f +9299,3665,14,4,f +9299,3666,71,5,f +9299,3666,0,5,f +9299,3666,15,2,f +9299,3673,71,1,t +9299,3673,71,4,f +9299,3700,0,9,f +9299,3700,14,2,f +9299,3701,14,1,f +9299,3702,0,3,f +9299,3705,0,2,f +9299,3706,0,1,f +9299,3709,15,1,f +9299,3710,72,15,f +9299,3713,4,7,f +9299,3713,4,1,t +9299,3738,1,2,f +9299,3747b,0,1,f +9299,3749,19,10,f +9299,3794a,14,2,f +9299,3795,1,5,f +9299,3795,71,9,f +9299,3795,15,3,f +9299,3795,4,3,f +9299,3832,1,4,f +9299,3832,72,3,f +9299,3839b,0,3,f +9299,3894,72,3,f +9299,3937,1,2,f +9299,3938,71,2,f +9299,4032b,15,4,f +9299,4032b,72,2,f +9299,4070,72,4,f +9299,4070,14,5,f +9299,4150pr0022,71,1,f +9299,41677,4,1,f +9299,41769,1,1,f +9299,41769,71,1,f +9299,41770,71,1,f +9299,41770,1,1,f +9299,4185,14,4,f +9299,42610,71,1,f +9299,4274,71,10,f +9299,4274,71,1,t +9299,4286,0,6,f +9299,4287,15,4,f +9299,4287,71,2,f +9299,43093,1,2,f +9299,44294,71,1,f +9299,44309,0,2,f +9299,4460b,1,4,f +9299,44728,72,9,f +9299,4477,0,6,f +9299,4519,71,4,f +9299,4599b,71,2,f +9299,47720,0,1,f +9299,47755,4,4,f +9299,48336,71,4,f +9299,50304,72,1,f +9299,50305,72,1,f +9299,50943,71,1,f +9299,50948,0,1,f +9299,50950,4,8,f +9299,50951,0,1,f +9299,50967,72,4,f +9299,54200,4,4,f +9299,54200,1,32,f +9299,54200,4,1,t +9299,54200,182,4,f +9299,54200,1,1,t +9299,54200,71,1,t +9299,54200,71,9,f +9299,54200,47,4,f +9299,54200,47,1,t +9299,54200,182,1,t +9299,55976,0,4,f +9299,55981,71,4,f +9299,56145,71,6,f +9299,56823c50,0,1,f +9299,56891,0,4,f +9299,59443,72,4,f +9299,59900,71,8,f +9299,59900,0,4,f +9299,6005,1,8,f +9299,6019,71,6,f +9299,6041,135,1,f +9299,60478,19,2,f +9299,60478,0,18,f +9299,60479,71,4,f +9299,60484,72,2,f +9299,60485,71,2,f +9299,6060,1,2,f +9299,6081,1,2,f +9299,60897,0,2,f +9299,6091,1,6,f +9299,61100c01,71,1,f +9299,6140,0,1,f +9299,61409,72,12,f +9299,6141,46,1,t +9299,6141,46,1,f +9299,6141,71,25,f +9299,6141,4,2,t +9299,6141,71,1,t +9299,6141,14,1,t +9299,6141,4,4,f +9299,6141,14,2,f +9299,61510,71,1,f +9299,61678,1,6,f +9299,61678,15,4,f +9299,61678,71,2,f +9299,6231,71,4,f +9299,6232,71,2,f +9299,62462,71,2,f +9299,63082,71,1,f +9299,63864,4,6,f +9299,63864,71,9,f +9299,63864,15,4,f +9299,63868,4,8,f +9299,63868,1,4,f +9299,64567,71,1,f +9299,6541,1,10,f +9299,6541,15,2,f +9299,6558,1,7,f +9299,6592,71,1,f +9299,6636,1,2,f +9299,6636,15,2,f +9299,6636,71,8,f +9299,73983,1,2,f +9299,73983,4,2,f +9299,76138,71,2,f +9299,85984,15,3,f +9299,87083,72,7,f +9300,3022,15,40,f +9300,728,7,1,f +9300,729,47,1,f +9301,10201,15,2,f +9301,11477,15,2,f +9301,12825,71,3,f +9301,13349,15,1,f +9301,14769,15,2,f +9301,15207,15,4,f +9301,15303,36,3,f +9301,15391,0,1,f +9301,15392,72,1,f +9301,15392,72,1,t +9301,15400,72,2,f +9301,16501pr0001,15,1,f +9301,2335,15,2,f +9301,2412b,0,6,f +9301,2412b,71,2,f +9301,2431,15,1,f +9301,2445,15,2,f +9301,2488,0,1,f +9301,2540,72,2,f +9301,2584,0,1,f +9301,2585,71,1,f +9301,298c02,0,1,t +9301,298c02,0,3,f +9301,30031,0,1,f +9301,3004,0,3,f +9301,3005,15,2,f +9301,3010,71,2,f +9301,30192,72,1,t +9301,30192,72,1,f +9301,3020,72,4,f +9301,3020,15,2,f +9301,3021,15,1,f +9301,3021,19,5,f +9301,3022,4,5,f +9301,3023,71,1,f +9301,3023,0,7,f +9301,3023,15,2,f +9301,3024,15,2,f +9301,3024,72,4,f +9301,3024,0,2,f +9301,3024,15,1,t +9301,3029,15,1,f +9301,3032,72,2,f +9301,30355,71,1,f +9301,30356,71,1,f +9301,30359b,71,2,f +9301,30370pr04,15,1,f +9301,30370ps3,15,1,f +9301,30372pr0001,40,1,f +9301,30374,70,1,f +9301,30374,41,1,f +9301,30383,15,2,f +9301,3039,15,2,f +9301,3062b,0,1,f +9301,3068b,0,2,f +9301,3069b,320,2,f +9301,3069b,72,1,f +9301,3069b,15,4,f +9301,3069b,71,7,f +9301,3070bpr0149,15,1,t +9301,3070bpr0149,15,1,f +9301,32028,71,4,f +9301,32270,0,2,f +9301,3298,15,6,f +9301,3298,72,4,f +9301,3460,0,1,f +9301,3626cpr1149,78,1,f +9301,3626cpr1438,78,1,f +9301,3626cpr1441,78,1,f +9301,3666,19,6,f +9301,3705,0,1,f +9301,3710,0,2,f +9301,3710,72,2,f +9301,3710,15,2,f +9301,3794b,15,8,f +9301,3795,15,4,f +9301,3937,4,1,f +9301,3938,71,1,f +9301,4032a,0,2,f +9301,4070,0,2,f +9301,4070,71,6,f +9301,4081b,15,1,f +9301,42446,71,1,f +9301,42446,71,1,t +9301,42610,71,2,f +9301,4274,71,1,f +9301,4274,71,1,t +9301,4287,15,3,f +9301,43722,71,2,f +9301,43722,15,1,f +9301,43723,15,1,f +9301,43723,71,2,f +9301,44567a,14,4,f +9301,4510,71,2,f +9301,4595,0,1,f +9301,4733,71,1,f +9301,4740,15,2,f +9301,4740,72,1,f +9301,48336,15,2,f +9301,48729a,72,1,t +9301,48729a,72,1,f +9301,54200,0,2,f +9301,54383,15,2,f +9301,54384,15,2,f +9301,56823c50,0,1,f +9301,58247,0,1,f +9301,59900,72,2,f +9301,60470a,0,1,f +9301,60471,71,4,f +9301,60477,72,4,f +9301,60479,15,2,f +9301,60897,72,1,f +9301,61409,0,2,f +9301,6141,71,4,f +9301,6141,41,5,f +9301,6141,41,1,t +9301,6238,40,1,f +9301,62462,0,1,f +9301,64567,80,1,t +9301,64567,80,1,f +9301,74664,15,1,f +9301,85984,72,3,f +9301,87079,15,1,f +9301,87079,72,2,f +9301,90194,15,1,f +9301,92738,0,1,f +9301,92947,71,2,f +9301,93095,15,2,f +9301,93274,72,2,f +9301,93348,15,1,f +9301,970c00,15,1,f +9301,970c00pr0476,25,2,f +9301,973pr2289c01,25,2,f +9301,973pr2311c01,15,1,f +9301,98100,71,4,f +9301,99207,71,2,f +9301,99780,14,2,f +9301,99780,72,4,f +9301,99781,0,2,f +9302,2780,0,2,f +9302,32062,0,4,f +9302,32174,72,2,f +9302,32270,71,2,f +9302,32475,72,2,f +9302,32476,0,2,f +9302,32533pb665,21,1,f +9302,3749,19,2,f +9302,44135,72,1,f +9302,44810,0,1,f +9302,4519,71,2,f +9302,47296,72,2,f +9302,47328,0,2,f +9302,47330,0,1,f +9302,47331,0,1,f +9302,47332,0,1,f +9302,47334,179,1,f +9302,47339,179,2,f +9302,x1190,42,1,f +9304,11153,15,2,f +9304,11153,27,2,f +9304,11203,72,1,f +9304,11211,19,7,f +9304,11477,326,6,f +9304,11591pr0001,4,1,f +9304,11601,41,2,f +9304,11601,320,2,f +9304,12825,15,1,f +9304,13754,45,4,f +9304,13757pr0001,326,2,f +9304,13758pr0001,326,1,f +9304,2412b,0,3,f +9304,2419,4,1,f +9304,2420,27,2,f +9304,2444,4,2,f +9304,2447,47,1,t +9304,2447,47,1,f +9304,2456,70,1,f +9304,2476a,71,4,f +9304,2540,0,2,f +9304,2639,72,2,f +9304,2654,71,4,f +9304,2654,47,4,f +9304,2730,71,2,f +9304,2730,0,2,f +9304,2736,71,10,f +9304,2780,0,14,f +9304,2780,0,3,t +9304,2815,0,2,f +9304,2817,0,2,f +9304,2877,70,1,f +9304,298c02,15,1,f +9304,298c02,15,1,t +9304,3001,0,1,f +9304,3001,326,3,f +9304,30031,0,1,f +9304,3007,0,1,f +9304,3010,19,2,f +9304,30126,42,1,t +9304,30126,42,1,f +9304,30162,72,1,f +9304,3020,27,5,f +9304,3020,4,3,f +9304,3021,19,6,f +9304,3022,72,10,f +9304,3022,1,1,f +9304,3023,36,4,f +9304,3023,326,7,f +9304,3023,15,4,f +9304,3030,72,1,f +9304,3031,27,1,f +9304,3034,72,7,f +9304,3035,19,1,f +9304,30367b,297,2,f +9304,3039,27,4,f +9304,3040b,27,2,f +9304,30414,320,6,f +9304,30526,71,1,f +9304,30565,320,10,f +9304,30602,15,1,f +9304,3062b,41,4,f +9304,3062b,27,1,f +9304,3068b,28,8,f +9304,3068bpr0200b,72,1,f +9304,3070b,27,1,t +9304,3070b,27,1,f +9304,3176,320,4,f +9304,32000,72,5,f +9304,32005a,0,4,f +9304,32009,0,2,f +9304,32014,0,10,f +9304,32015,71,6,f +9304,32018,71,2,f +9304,32018,0,4,f +9304,32054,0,1,f +9304,32059,0,2,f +9304,32062,4,11,f +9304,32064b,320,4,f +9304,32123b,14,2,f +9304,32123b,14,1,t +9304,32140,27,2,f +9304,32184,0,2,f +9304,32192,27,4,f +9304,32250,0,2,f +9304,32271,71,2,f +9304,32556,19,6,f +9304,3622,27,6,f +9304,3626cpr1154,14,1,f +9304,3666,28,4,f +9304,3673,71,8,f +9304,3673,71,1,t +9304,3678b,0,1,f +9304,3700,19,4,f +9304,3705,0,1,f +9304,3706,0,7,f +9304,3710,27,3,f +9304,3710,1,1,f +9304,3710,4,2,f +9304,3713,4,4,f +9304,3713,4,1,t +9304,3749,19,10,f +9304,3794b,72,1,f +9304,3795,28,10,f +9304,3795,72,1,f +9304,3832,0,2,f +9304,4079,0,1,f +9304,4081b,72,1,f +9304,4150,71,1,f +9304,4150pr9009,27,1,f +9304,4162,320,2,f +9304,41669,36,2,f +9304,41749,320,1,f +9304,41750,320,1,f +9304,41769,15,1,f +9304,41770,15,1,f +9304,4185,27,2,f +9304,42023,72,2,f +9304,42446,72,1,f +9304,42610,71,8,f +9304,4274,1,4,f +9304,4274,1,2,t +9304,43093,1,2,f +9304,4349,0,2,f +9304,43722,27,1,f +9304,43723,27,1,f +9304,44358,27,2,f +9304,44359,320,4,f +9304,44375b,27,2,f +9304,44568,320,2,f +9304,44728,0,2,f +9304,4477,0,1,f +9304,4519,71,2,f +9304,47456,15,1,f +9304,47457,27,4,f +9304,47905,71,1,f +9304,48336,297,2,f +9304,48729b,320,2,f +9304,48729b,320,1,t +9304,50747pr0007,36,2,f +9304,50943,72,2,f +9304,53451,0,8,f +9304,53451,0,1,t +9304,54200,28,2,f +9304,54200,28,1,t +9304,55615,71,1,f +9304,55981,326,2,f +9304,59443,72,6,f +9304,6019,72,3,f +9304,60478,72,4,f +9304,60483,71,2,f +9304,6091,320,2,f +9304,6091,15,2,f +9304,61072,0,1,f +9304,61409,27,4,f +9304,6141,45,9,f +9304,6141,41,1,t +9304,6141,41,3,f +9304,6141,45,2,t +9304,62462,320,2,f +9304,62743,15,2,f +9304,6536,0,4,f +9304,6541,0,2,f +9304,6541,70,2,f +9304,6553,0,2,f +9304,6587,28,8,f +9304,6628,0,2,f +9304,6632,72,4,f +9304,6636,0,2,f +9304,85544,4,2,f +9304,85984,0,1,f +9304,85984,72,2,f +9304,85984,27,4,f +9304,87079,0,2,f +9304,87580,15,1,f +9304,87747,0,2,t +9304,87747,0,6,f +9304,87781,4,1,f +9304,88293,27,4,f +9304,92217,148,6,f +9304,92280,15,2,f +9304,92280,0,8,f +9304,92474,47,1,f +9304,92907,0,1,f +9304,92946,72,2,f +9304,93168,320,2,f +9304,93606,0,2,f +9304,95188,27,10,f +9304,95199,72,1,f +9304,970c00pr0458,326,1,f +9304,970c00pr0463,4,1,f +9304,970c00pr0464,4,1,f +9304,973pr2260c01,71,1,f +9304,973pr2297c01,71,1,f +9304,973pr2389c01,326,1,f +9304,98138,297,8,f +9304,98138,297,1,t +9304,98313,320,4,f +9304,99206,71,1,f +9304,99207,71,4,f +9304,99781,71,1,f +9305,3001,14,2,f +9305,3004,1,1,f +9305,3010,14,1,f +9305,3020,1,1,f +9305,3032,1,1,f +9305,3700,4,1,f +9305,3957a,0,1,f +9305,4231,1,1,f +9305,4495b,14,1,f +9305,4608,1,1,f +9305,4790,4,1,f +9305,4793,14,1,f +9305,fab12g,9999,1,f +9306,14769,71,1,f +9306,15573,4,1,f +9306,15619,0,1,f +9306,15619,0,1,t +9306,18950,34,1,f +9306,18962,19,1,f +9306,2420,71,3,f +9306,2420,320,1,f +9306,2445,25,1,f +9306,2449,72,3,f +9306,2780,0,1,t +9306,2780,0,2,f +9306,3001,0,1,f +9306,3002,0,2,f +9306,3003,0,1,f +9306,3003,72,1,f +9306,30136,72,4,f +9306,30136,70,3,f +9306,3020,4,3,f +9306,3020,25,1,f +9306,3021,25,1,f +9306,3021,28,1,f +9306,3022,4,3,f +9306,3022,71,1,f +9306,3023,320,1,f +9306,30237b,0,1,f +9306,30374,297,1,f +9306,3039,72,3,f +9306,3039,0,1,f +9306,3040b,0,1,f +9306,30565,320,1,f +9306,3062b,36,1,f +9306,3245b,72,2,f +9306,3623,71,1,f +9306,3626bpr0745,14,1,f +9306,3626cpr1572,14,1,f +9306,3700,72,1,f +9306,3701,72,2,f +9306,3708,0,1,f +9306,3710,0,2,f +9306,3713,4,1,f +9306,3713,4,1,t +9306,3713,71,1,f +9306,3713,71,1,t +9306,3795,25,1,f +9306,3941,72,3,f +9306,43722,4,1,f +9306,48336,297,1,f +9306,51739,320,1,f +9306,51739,25,2,f +9306,54200,0,3,f +9306,54200,0,1,t +9306,54383,28,1,f +9306,59443,4,1,f +9306,59900,15,1,f +9306,60752,28,1,f +9306,6141,4,1,t +9306,6141,4,2,f +9306,6266,15,1,f +9306,6266,15,1,t +9306,63965,297,1,f +9306,85959pat0003,36,2,f +9306,87991,0,1,f +9306,88323,308,4,f +9306,92690,70,1,f +9306,92690,297,1,f +9306,970c00pr0762,0,1,f +9306,970c00pr0767,85,1,f +9306,973pr2847c01,0,1,f +9306,973pr2852c01,14,1,f +9306,98138,71,1,f +9306,98138,71,1,t +9307,10888,71,1,f +9307,12602,14,1,f +9307,12651,1,1,f +9307,13358,0,1,f +9307,14013,71,1,f +9307,14294,14,1,f +9307,14721,4,1,f +9307,16701,0,1,f +9307,16855,0,1,f +9307,16856,71,1,f +9307,17048,0,1,f +9307,17178,0,1,f +9307,17311,25,2,f +9307,17417,1,1,f +9307,17418,0,1,f +9307,17478,1,1,f +9307,20302,25,1,f +9307,2300,4,2,f +9307,2302,1,4,f +9307,3011,4,3,f +9307,31171,179,1,f +9307,3437,1,2,f +9307,3437,25,2,f +9307,3437,322,2,f +9307,40666,14,1,f +9307,40666,25,2,f +9307,4196,71,1,f +9307,4199,1,1,f +9307,51703,182,1,f +9307,54043,14,2,f +9307,6474,0,1,f +9307,6474,4,1,f +9307,76371,14,4,f +9307,76371,1,2,f +9307,76371,322,4,f +9307,87084,4,1,f +9307,92005,4,1,f +9307,92094,14,1,f +9307,98222,1,1,f +9307,98223,0,1,f +9310,sh042,9999,1,f +9311,2780,0,1,f +9311,32002,72,1,t +9311,32002,72,2,f +9311,32062,0,4,f +9311,32174,1,4,f +9311,3673,71,2,f +9311,41669,41,2,f +9311,41670,1,2,f +9311,41678,0,1,f +9311,41752,72,1,f +9311,43093,1,4,f +9311,44809,71,1,f +9311,4519,71,2,f +9311,47297,15,2,f +9311,47299,15,2,f +9311,47330,15,1,f +9311,50858,15,4,f +9311,50898,1,2,f +9311,50898,15,1,f +9311,50899,179,1,f +9311,50899pr0002,179,1,f +9311,50900,0,1,f +9311,50901,72,1,f +9311,50903,14,1,f +9311,50904,71,1,f +9311,50911,15,1,f +9311,50914,179,2,f +9311,rb00167,14,1,f +9311,rb00167,14,1,t +9312,11055,71,1,f +9312,14419,72,2,f +9312,14704,71,2,f +9312,15070,15,2,f +9312,15208,15,1,f +9312,15573,14,1,f +9312,2343,47,1,f +9312,2412b,288,4,f +9312,2877,71,4,f +9312,2926,0,1,f +9312,3020,2,3,f +9312,3021,14,1,f +9312,3023,46,3,f +9312,3062b,46,2,f +9312,32028,72,2,f +9312,3626cpr1001,15,1,f +9312,3710,71,1,f +9312,3710,2,1,f +9312,3837,72,2,f +9312,4070,2,4,f +9312,41334,0,1,f +9312,4274,71,1,t +9312,4274,71,2,f +9312,48336,0,1,f +9312,52501,72,2,f +9312,54200,46,2,f +9312,54200,46,1,t +9312,6005,2,2,f +9312,6014b,71,2,f +9312,6091,2,2,f +9312,6141,179,4,f +9312,6141,179,1,t +9312,62462,14,2,f +9312,6628,0,2,f +9312,87618,71,1,f +9312,87697,0,2,f +9312,92280,0,2,f +9313,11214,72,6,f +9313,11946,322,1,f +9313,11946,0,3,f +9313,11947,322,1,f +9313,11947,0,3,f +9313,11954,322,3,f +9313,14696,0,1,t +9313,14696,0,18,f +9313,14720,71,1,f +9313,15100,0,5,f +9313,15413,0,2,f +9313,15458,0,2,f +9313,15461,0,3,f +9313,15462,28,3,f +9313,18352,72,1,f +9313,18450,0,2,f +9313,18651,0,8,f +9313,18654,72,3,f +9313,18654,72,1,t +9313,24116,1,1,f +9313,24316,70,2,f +9313,25032,9999,1,t +9313,2723,0,2,f +9313,2780,0,2,t +9313,2780,0,125,f +9313,2850a,71,8,f +9313,2851,14,8,f +9313,2852,71,8,f +9313,2853,14,2,f +9313,2854,19,3,f +9313,32000,0,2,f +9313,32013,0,7,f +9313,32015,0,2,f +9313,32016,322,6,f +9313,32054,0,16,f +9313,32054,4,4,f +9313,32056,71,2,f +9313,32062,4,7,f +9313,32073,71,5,f +9313,32123b,71,1,t +9313,32123b,71,9,f +9313,32126,0,2,f +9313,32140,71,3,f +9313,32184,4,2,f +9313,32192,72,2,f +9313,32198,19,1,f +9313,32202,0,1,f +9313,32270,0,3,f +9313,32278,0,8,f +9313,32278,71,2,f +9313,32278,4,12,f +9313,32316,71,6,f +9313,32316,0,11,f +9313,32333,0,2,f +9313,32348,0,2,f +9313,32523,71,3,f +9313,32523,0,2,f +9313,32524,0,7,f +9313,32524,322,4,f +9313,32525,0,4,f +9313,32526,0,8,f +9313,32530,0,1,f +9313,32580,0,2,f +9313,33299a,71,5,f +9313,3673,71,4,f +9313,3673,71,1,t +9313,3705,0,6,f +9313,3706,4,1,f +9313,3708,0,2,f +9313,3713,4,1,t +9313,3713,4,8,f +9313,3749,19,2,f +9313,40490,72,2,f +9313,41239,322,3,f +9313,41677,71,3,f +9313,42003,0,5,f +9313,42003,4,2,f +9313,42610,71,2,f +9313,4274,1,8,f +9313,4274,1,1,t +9313,43093,1,22,f +9313,44294,14,3,f +9313,4519,71,16,f +9313,48989,71,3,f +9313,53585,0,2,f +9313,55013,72,2,f +9313,55615,71,2,f +9313,56145,0,2,f +9313,56908,0,2,f +9313,59426,72,1,f +9313,59443,0,13,f +9313,60483,0,9,f +9313,60484,71,4,f +9313,61903,71,1,f +9313,6233,71,2,f +9313,62462,15,2,f +9313,62462,71,3,f +9313,63869,71,9,f +9313,63965,0,2,f +9313,64393,0,1,f +9313,64451,72,2,f +9313,64681,0,1,f +9313,64782,0,4,f +9313,6536,71,11,f +9313,6553,0,1,f +9313,6558,1,62,f +9313,6589,19,3,f +9313,6632,0,6,f +9313,78c06,179,8,f +9313,78c09,0,1,f +9313,85940,0,1,f +9313,87082,71,4,f +9313,87083,72,2,f +9313,87408,0,1,f +9313,87761,0,1,f +9313,92693,71,1,f +9313,94925,71,4,f +9313,98138,15,1,t +9313,98138,47,1,t +9313,98138,15,2,f +9313,98138,47,4,f +9313,98138pr0012,179,1,t +9313,98138pr0012,179,1,f +9314,3003,0,1,f +9314,3004,14,1,f +9314,3004,1,1,f +9314,3004p0b,14,1,f +9314,3010,1,1,f +9314,3020,0,1,f +9314,3021,0,1,f +9314,3022,15,1,f +9314,3039,1,1,f +9314,3660,1,1,f +9315,2412b,0,1,f +9315,2484c01,4,2,f +9315,2540,0,1,f +9315,2550c01,6,1,f +9315,3010,15,1,f +9315,3020,15,1,f +9315,3022,4,2,f +9315,3023,15,3,f +9315,3023,0,2,f +9315,3024,36,4,f +9315,3024,47,1,t +9315,3024,47,2,f +9315,3024,36,1,t +9315,3068bp0a,15,1,f +9315,3069bp02,7,3,f +9315,3623,15,2,f +9315,3626apr0001,14,2,f +9315,3629,7,1,f +9315,3788,15,2,f +9315,3821p01,15,1,f +9315,3822p01,15,1,f +9315,3823,47,1,f +9315,3829c01,0,1,f +9315,3837,8,1,f +9315,3841,0,1,f +9315,4070,15,4,f +9315,4081b,7,2,f +9315,4083,7,1,f +9315,4084,0,4,f +9315,4085c,15,2,f +9315,4212b,15,1,f +9315,4213,15,1,f +9315,4214,15,1,f +9315,4360,0,1,f +9315,4485,4,1,f +9315,4624,15,4,f +9315,6141,7,1,t +9315,6141,46,2,f +9315,6141,7,2,f +9315,970c00,4,1,f +9315,970c00,15,1,f +9315,973c01,1,1,f +9315,973p13c02,4,1,f +9316,30027b,71,1,t +9316,30027b,71,4,f +9316,30028,0,4,f +9316,3022,14,2,f +9316,3710,14,4,f +9316,41855,14,1,f +9316,4600,0,2,f +9317,12825,15,1,f +9317,3003,29,1,f +9317,3004,29,1,f +9317,3023,29,1,f +9317,3023,0,1,f +9317,30357,29,2,f +9317,3665,5,2,f +9317,3794b,71,1,f +9317,3795,29,1,f +9317,4286,29,2,f +9317,53451,0,1,f +9317,54200,29,4,f +9317,6141,29,2,f +9317,63965,0,2,f +9317,85984,0,1,f +9317,87087,29,6,f +9317,87087,0,2,f +9320,3001,1,2,f +9320,3001,0,2,f +9320,3001,4,2,f +9320,3001,14,2,f +9320,3001pr1,14,1,f +9320,3002,4,2,f +9320,3002,1,2,f +9320,3002,14,2,f +9320,3003,14,4,f +9320,3003,0,2,f +9320,3003,1,2,f +9320,3003,4,6,f +9320,3003pe1,14,2,f +9320,3006,4,2,f +9321,3001a,15,1,f +9321,3003,15,6,f +9321,3004,15,28,f +9321,3005,15,17,f +9321,3008,15,6,f +9321,3009,15,6,f +9321,3010,15,11,f +9321,3035,15,1,f +9321,3036,15,2,f +9321,3068a,7,4,f +9321,3069a,7,5,f +9321,3081bc01,4,3,f +9321,3144,15,1,f +9321,3185,4,6,f +9321,3297,4,10,f +9321,3298,4,4,f +9321,3299,4,2,f +9321,32bc01,4,3,f +9321,3300,4,1,f +9321,3307,15,2,f +9321,3308,15,2,f +9321,374p01,2,1,f +9321,453bc01,4,1,f +9321,646bc01,4,2,f +9321,gtpine,2,1,f +9323,10113pr0001,0,1,f +9323,15490,179,1,f +9323,21845,0,1,f +9323,29222,0,1,f +9323,3626cpr2089,78,1,f +9323,88646,0,1,f +9323,970c00pr1168,179,1,f +9323,973pr3679c01,0,1,f +9326,2412b,71,2,f +9326,2431,0,1,f +9326,2654,71,8,f +9326,2780,0,5,f +9326,2780,0,1,t +9326,2877,71,1,f +9326,3002,72,8,f +9326,3002,1,1,f +9326,3003,71,3,f +9326,30162,71,6,f +9326,3020,71,13,f +9326,3021,71,6,f +9326,3021,72,6,f +9326,3022,71,10,f +9326,3023,1,4,f +9326,3023,71,8,f +9326,3032,71,2,f +9326,3034,0,2,f +9326,30355,72,1,f +9326,30355,15,1,f +9326,30356,72,1,f +9326,30356,15,1,f +9326,30367b,71,2,f +9326,30503,71,2,f +9326,30586,71,6,f +9326,3068b,72,4,f +9326,3068b,71,4,f +9326,3069b,71,6,f +9326,3069b,72,2,f +9326,3069b,0,1,f +9326,3070b,0,4,f +9326,3070b,0,1,t +9326,3176,71,1,f +9326,32013,0,1,f +9326,32018,0,2,f +9326,32028,71,12,f +9326,32062,4,1,f +9326,32184,15,2,f +9326,32474,71,2,f +9326,3460,72,2,f +9326,3623,72,2,f +9326,3660,1,2,f +9326,3666,71,4,f +9326,3666,15,8,f +9326,3678b,71,3,f +9326,3701,4,2,f +9326,3705,0,2,f +9326,3709,72,2,f +9326,3710,71,10,f +9326,3738,71,1,f +9326,3747b,72,4,f +9326,3794b,71,4,f +9326,3795,15,1,f +9326,3832,71,6,f +9326,3957a,15,2,f +9326,4085c,72,24,f +9326,4162,71,2,f +9326,41769,71,4,f +9326,41769,72,1,f +9326,41770,72,1,f +9326,41770,71,4,f +9326,42023,72,2,f +9326,42610,71,4,f +9326,4274,71,6,f +9326,4274,71,1,t +9326,43722,71,9,f +9326,43722,72,2,f +9326,43723,72,2,f +9326,43723,71,9,f +9326,43898,71,4,f +9326,4477,0,4,f +9326,4740,41,3,f +9326,50304,72,5,f +9326,50304,71,2,f +9326,50305,71,2,f +9326,50305,72,5,f +9326,54383,15,1,f +9326,54383,72,4,f +9326,54383,71,7,f +9326,54384,71,7,f +9326,54384,72,4,f +9326,54384,15,1,f +9326,60470a,15,8,f +9326,60478,4,16,f +9326,6141,47,6,f +9326,6141,72,1,t +9326,6141,15,1,t +9326,6141,72,28,f +9326,6141,15,10,f +9326,6141,47,1,t +9326,6179,72,2,f +9326,6179,71,2,f +9326,6180,71,2,f +9326,62462,0,2,f +9326,63864,71,11,f +9326,6558,1,1,f +9326,6636,71,7,f +9326,6636,72,2,f +9326,85984,71,6,f +9326,87079,0,4,f +9327,264,4,1,f +9327,4461,4,1,f +9327,4466,14,1,f +9327,4467,14,1,f +9327,4607,4,1,f +9327,4612,4,1,f +9327,4613c01,4,1,f +9327,4616ac01,4,1,f +9327,fab4f,9999,1,f +9328,3001,15,18,f +9328,3001,0,10,f +9328,3001,47,4,f +9328,3001,14,20,f +9328,3001,4,20,f +9328,3001,1,20,f +9328,3001pr1,14,3,f +9328,3002,0,6,f +9328,3002,1,6,f +9328,3002,15,6,f +9328,3002,4,6,f +9328,3002,14,6,f +9328,3003,47,2,f +9328,3003,0,8,f +9328,3003,1,14,f +9328,3003,14,14,f +9328,3003,15,12,f +9328,3003,4,14,f +9328,3003pe1,14,6,f +9328,3006,4,4,f +9328,3007,1,4,f +9328,3007,14,2,f +9328,3137c01,0,2,f +9328,3185,4,6,f +9328,3185,15,4,f +9328,3470,2,1,f +9328,3471,2,2,f +9328,3483,0,8,f +9328,3596pb02,15,1,f +9328,3641,0,4,f +9328,4130,14,3,f +9328,4131,4,3,f +9328,4132,14,4,f +9328,4133,4,4,f +9328,4180c02,0,4,f +9328,4201,2,2,f +9328,4202,4,1,f +9328,4202,1,1,f +9328,4204,2,1,f +9328,bfp001,9999,2,f +9328,bfp002,9999,2,f +9331,2780,0,1,t +9331,2780,0,7,f +9331,32002,72,1,t +9331,32002,72,1,f +9331,32013,0,3,f +9331,3705,0,1,f +9331,3707,0,1,f +9331,43093,1,2,f +9331,47297,27,2,f +9331,47306,27,1,f +9331,49423,135,1,f +9331,50920,288,2,f +9331,53451,135,2,f +9331,53451,135,1,t +9331,53543,288,3,f +9331,53545,288,1,f +9331,53549,288,2,f +9331,57539pat0001,47,1,f +9331,59443,0,1,f +9331,60176,27,2,f +9331,61054,27,2,f +9331,64251,27,2,f +9331,64262,42,1,f +9331,64275,135,2,f +9331,64276,0,1,f +9331,64277c01,297,1,f +9331,64295,27,2,f +9331,64301,288,1,f +9331,64307pat0001,288,1,f +9331,64311,288,2,f +9331,64889pr0001,135,1,f +9331,6553,0,1,f +9331,6558,1,2,f +9334,10197,0,4,f +9334,11477,4,2,f +9334,11478,71,4,f +9334,18651,0,2,f +9334,18677,71,2,f +9334,2780,0,4,f +9334,2780,0,1,t +9334,3023,4,2,f +9334,32013,15,4,f +9334,32015,0,2,f +9334,32034,0,1,f +9334,32039,14,1,f +9334,32039,0,1,f +9334,32054,0,4,f +9334,32056,14,2,f +9334,32062,4,6,f +9334,32065,14,2,f +9334,32073,71,2,f +9334,32123b,71,4,f +9334,32123b,14,9,f +9334,32123b,14,1,t +9334,32123b,71,1,t +9334,32138,71,2,f +9334,32140,0,1,f +9334,32184,0,2,f +9334,32249,71,2,f +9334,32250,14,2,f +9334,32270,0,1,f +9334,32291,72,4,f +9334,32556,19,5,f +9334,3623,4,1,f +9334,3648b,72,1,f +9334,3705,0,5,f +9334,40490,15,2,f +9334,41239,0,2,f +9334,41678,0,4,f +9334,42003,0,2,f +9334,4274,71,1,t +9334,4274,71,6,f +9334,43093,1,5,f +9334,4519,71,6,f +9334,4716,71,1,f +9334,54200,4,3,f +9334,54200,4,1,t +9334,55013,72,1,f +9334,55981,71,4,f +9334,58176,182,2,f +9334,60483,0,1,f +9334,6141,47,2,f +9334,6141,36,1,t +9334,6141,47,1,t +9334,6141,182,2,f +9334,6141,36,2,f +9334,6141,182,1,t +9334,62462,14,1,f +9334,6536,14,7,f +9334,6536,15,2,f +9334,6553,71,1,f +9334,6558,1,6,f +9334,6632,14,2,f +9334,87082,71,3,f +9334,89201,0,4,f +9336,13665,0,1,f +9336,13788pr0001,70,1,f +9336,3626cpr1242,19,1,f +9336,88646,0,1,f +9336,95345,70,1,f +9336,970c00pr0529,379,1,f +9336,973pr2414c01,28,1,f +9338,32034,0,1,f +9338,32039,0,1,f +9338,32062,0,2,f +9338,32073,0,1,f +9338,32172,4,1,f +9338,32174,0,4,f +9338,32269,7,1,f +9338,32270,7,2,f +9338,32474,0,1,f +9338,32475,4,2,f +9338,32476,25,1,f +9338,32482,25,3,f +9338,32489,4,1,f +9338,32505,4,1,f +9338,32553,7,1,f +9338,32554,45,1,f +9338,32558,4,1,f +9338,3706,0,1,f +9338,3713,7,2,f +9338,4519,0,5,f +9340,2352,14,1,f +9340,2456,14,2,f +9340,3001,4,6,f +9340,3001,15,6,f +9340,3001,0,2,f +9340,3001,1,6,f +9340,3001,14,6,f +9340,3001pr1,14,1,f +9340,3002,15,2,f +9340,3002,1,2,f +9340,3002,4,4,f +9340,3002,14,4,f +9340,3003,0,4,f +9340,3003,4,12,f +9340,3003,14,12,f +9340,3003,15,12,f +9340,3003,1,12,f +9340,3003pb010,14,2,f +9340,3007,15,1,f +9340,3185,15,4,f +9340,3483,0,4,f +9340,4727,2,3,f +9340,4728,14,1,f +9340,4728,4,1,f +9340,4728,1,1,f +9340,4744pr0001,0,1,f +9340,4744pr0002,4,1,f +9340,4744px10,4,1,f +9340,4744px8,1,1,f +9340,600,14,1,f +9340,601,14,2,f +9340,6212,1,1,f +9340,6214px1,2,1,f +9340,6215,1,8,f +9340,6216,2,1,f +9340,6216,1,2,f +9340,6235,4,1,f +9340,6236,4,1,f +9340,6244px1,15,1,f +9340,6248,4,4,f +9340,6249,4,2,f +9340,6840c01pb01,4,1,f +9340,x184,2,1,f +9341,11211,4,1,f +9341,14210,15,5,f +9341,15627,19,2,f +9341,18455,71,3,f +9341,19220,0,1,f +9341,21709,0,1,f +9341,2412b,72,1,f +9341,2431pr0028,72,1,f +9341,2432,71,1,f +9341,2432,14,2,f +9341,2540,0,2,f +9341,3001,1,1,f +9341,3001,19,7,f +9341,3001,14,1,f +9341,3003,84,7,f +9341,3004,0,1,f +9341,30076,0,1,f +9341,3009,14,3,f +9341,3010,0,1,f +9341,3010,71,6,f +9341,3010,1,1,f +9341,30236,15,1,f +9341,30293,72,1,f +9341,30294,72,1,f +9341,3032,0,1,f +9341,30386,14,2,f +9341,30388,14,3,f +9341,30389c,0,1,f +9341,3039,0,3,f +9341,30395,72,2,f +9341,30396,0,2,f +9341,3039pr0013,15,1,f +9341,30414,4,1,f +9341,30592,71,1,f +9341,3068b,71,6,f +9341,3069b,36,2,f +9341,3069b,46,2,f +9341,3622,14,2,f +9341,3626bpr0389,14,1,f +9341,3626cpr1579,14,1,f +9341,3626cpr1662,14,1,f +9341,3829c01,15,1,f +9341,3833,4,3,f +9341,3837,72,1,f +9341,3839b,0,1,f +9341,3958,70,1,f +9341,3958,72,1,f +9341,4079,70,1,f +9341,4079,4,2,f +9341,4176,47,1,f +9341,4522,0,1,f +9341,55981,14,4,f +9341,55981,71,4,f +9341,59900,182,7,f +9341,6020,71,1,f +9341,60477,14,4,f +9341,60481,14,2,f +9341,60596,0,1,f +9341,60603,41,2,f +9341,60623,2,1,f +9341,64448,14,2,f +9341,64450,0,1,f +9341,6636,71,2,f +9341,6636,0,3,f +9341,74698,0,1,f +9341,85984pr0143,72,1,f +9341,87079,71,6,f +9341,87081,72,1,f +9341,87609,14,1,f +9341,89201,0,4,f +9341,92280,71,2,f +9341,92402,0,4,f +9341,92582,0,1,f +9341,93273,14,1,f +9341,970c00,1,1,f +9341,970c00,25,2,f +9341,973pr1160c01,1,2,f +9341,973pr1470c01,1,1,f +9341,98283,84,3,f +9342,2346,0,6,f +9342,2412b,72,4,f +9342,2412b,0,2,f +9342,2420,72,4,f +9342,2431,71,1,f +9342,2445,0,1,f +9342,2540,72,12,f +9342,2555,72,6,f +9342,2877,71,4,f +9342,2921,0,8,f +9342,298c02,71,1,t +9342,298c02,71,2,f +9342,30044,71,1,f +9342,30046,0,1,f +9342,3005,71,2,f +9342,3006,71,1,f +9342,3010,72,2,f +9342,3010,71,1,f +9342,30132,72,1,t +9342,30132,72,1,f +9342,30135,19,3,f +9342,30141,72,1,f +9342,30149,72,1,f +9342,30153,33,1,f +9342,30153,36,1,f +9342,30153,34,2,f +9342,30155,71,6,f +9342,30157,71,5,f +9342,3020,0,5,f +9342,3021,19,2,f +9342,3022,70,8,f +9342,3023,19,16,f +9342,30236,72,6,f +9342,3031,72,2,f +9342,3032,71,1,f +9342,3034,0,4,f +9342,3036,0,1,f +9342,3040b,0,4,f +9342,3068b,71,2,f +9342,3069b,71,2,f +9342,3300,72,1,f +9342,3307,71,1,f +9342,3460,72,2,f +9342,3483,0,5,f +9342,3626bpr0360,78,1,f +9342,3626bpr0427,78,1,f +9342,3626bpr0472,78,1,f +9342,3626bpr0516a,78,1,f +9342,3665,71,4,f +9342,3666,71,1,f +9342,3700,72,1,f +9342,3702,71,2,f +9342,3710,72,7,f +9342,3794a,71,1,f +9342,3795,72,2,f +9342,3829c01,71,2,f +9342,4081b,71,4,f +9342,4085c,0,6,f +9342,4274,1,5,f +9342,4274,1,2,t +9342,43722,72,2,f +9342,43723,72,2,f +9342,44568,71,4,f +9342,44569,72,4,f +9342,44676,72,12,f +9342,44728,71,1,f +9342,4491b,72,1,f +9342,4595,0,1,f +9342,4738a,82,1,f +9342,4739a,82,1,f +9342,48183,71,1,f +9342,4864b,47,2,f +9342,4865a,71,2,f +9342,4865a,40,2,f +9342,50946,71,1,f +9342,51739,71,1,f +9342,54200,72,4,f +9342,54200,72,1,t +9342,56902,71,5,f +9342,57503,334,1,f +9342,57504,334,1,f +9342,57505,334,1,f +9342,57506,334,1,f +9342,6112,71,2,f +9342,6140,0,1,f +9342,6141,47,2,t +9342,6141,80,16,f +9342,6141,80,2,t +9342,6141,47,4,f +9342,61506,70,1,f +9342,61975,70,1,f +9342,61976,70,1,f +9342,62113,0,1,f +9342,62243,28,1,f +9342,6231,71,4,f +9342,62363,28,1,f +9342,64567,0,1,f +9342,6636,72,2,f +9342,75998pr0007,15,1,f +9342,970c00,19,3,f +9342,973pr1370c01,308,1,f +9342,973pr1374c01,19,3,f +9343,2343,47,1,f +9343,2412b,15,6,f +9343,2420,15,5,f +9343,2431pr0050,4,1,f +9343,2449,4,2,f +9343,2577,0,1,f +9343,3001,0,1,f +9343,3003,26,4,f +9343,3004,26,2,f +9343,3010,4,2,f +9343,3021,0,1,f +9343,3023,30,2,f +9343,3029,0,1,f +9343,3032,0,1,f +9343,30414,15,1,f +9343,30565,85,2,f +9343,3062b,0,4,f +9343,3069b,226,4,f +9343,3666,0,2,f +9343,3710,0,2,f +9343,3710,4,1,f +9343,3957b,0,1,f +9343,4740,36,1,f +9343,4740,33,1,f +9343,48336,4,2,f +9343,54200,29,1,t +9343,54200,29,2,f +9343,59230,0,1,t +9343,59230,0,1,f +9343,6019,15,3,f +9343,60478,15,5,f +9343,60481,4,2,f +9343,6141,46,4,f +9343,6141,46,1,t +9343,6266,0,3,f +9343,64644,0,4,f +9343,6636,30,1,f +9343,76768,30,2,f +9343,87079,26,1,f +9343,87079pr0022,26,1,f +9343,90370pr0001,0,1,f +9343,90370pr0001,0,1,t +9343,92946,19,2,f +9344,2780,0,1,f +9344,2825,0,2,f +9344,2850a,47,1,f +9344,2851,14,1,f +9344,2852,7,1,f +9344,2853,7,1,f +9344,2854,0,2,f +9344,2994,14,3,f +9344,32002,8,2,f +9344,32009,1,2,f +9344,32013,7,1,f +9344,32015,7,2,f +9344,32039,0,4,f +9344,32056,0,2,f +9344,32062,0,6,f +9344,32073,0,3,f +9344,32123b,7,3,f +9344,32126,7,2,f +9344,3705,0,5,f +9344,3707,0,1,f +9344,3713,7,5,f +9344,3749,7,3,f +9344,4274,7,2,f +9344,4519,0,2,f +9344,6536,7,1,f +9344,6536,0,2,f +9344,6553,7,1,f +9344,6578,0,3,f +9344,6632,1,4,f +9344,75c07,1,2,f +9345,2412b,36,2,f +9345,2412b,0,1,f +9345,2436,4,1,f +9345,3001,4,2,f +9345,30027b,71,4,f +9345,30028,0,4,f +9345,3022,4,3,f +9345,3023,0,4,f +9345,3031,0,1,f +9345,30414,4,1,f +9345,3068b,0,3,f +9345,3710,4,2,f +9345,3788,4,2,f +9345,3795,0,1,f +9345,45677,0,1,f +9345,50949,0,1,f +9345,54200,294,2,f +9345,54200,294,1,t +9345,6157,72,2,f +9346,10201,14,1,f +9346,14226c31,0,1,f +9346,2412b,71,8,f +9346,2419,0,1,f +9346,2431,72,4,f +9346,2431,70,1,f +9346,2432,4,2,f +9346,2432,179,4,f +9346,2444,0,2,f +9346,2453b,4,2,f +9346,2454b,4,4,f +9346,2454b,70,2,f +9346,2460,0,2,f +9346,2654,15,1,f +9346,2780,0,2,t +9346,2780,0,10,f +9346,2819,71,1,f +9346,2877,14,2,f +9346,3003,70,12,f +9346,30031,0,1,f +9346,3004,2,10,f +9346,3005,70,4,f +9346,30055,0,2,f +9346,3009,70,4,f +9346,3009,0,2,f +9346,3010,2,1,f +9346,30134,0,1,f +9346,30136,308,2,f +9346,30139,85,1,f +9346,3020,4,2,f +9346,3020,0,2,f +9346,3021,85,1,f +9346,3022,4,2,f +9346,3023,2,2,f +9346,3024,0,4,f +9346,3028,28,3,f +9346,3031,70,1,f +9346,3034,0,1,f +9346,3036,72,1,f +9346,30383,0,2,f +9346,30414,14,2,f +9346,30553,0,3,f +9346,3062b,34,7,f +9346,3068b,4,2,f +9346,3069b,4,6,f +9346,3069b,0,3,f +9346,3069b,85,4,f +9346,3069b,272,1,f +9346,3069b,70,6,f +9346,32013,0,1,f +9346,32039,14,1,f +9346,32062,4,3,f +9346,32064a,72,3,f +9346,32123b,14,8,f +9346,32123b,14,2,t +9346,3245c,4,4,f +9346,32529,0,2,f +9346,32530,4,1,f +9346,3626cpr0896,78,1,f +9346,3626cpr0897,78,1,f +9346,3626cpr0898,15,1,f +9346,3626cpr0899,15,1,f +9346,3626cpr0900,78,2,f +9346,3647,72,1,f +9346,3647,72,1,t +9346,3659,0,2,f +9346,3660,4,2,f +9346,3660,2,2,f +9346,3660,0,1,f +9346,3665,4,2,f +9346,3666,0,4,f +9346,3673,71,4,f +9346,3673,71,1,t +9346,3700,0,5,f +9346,3701,0,1,f +9346,3701,15,2,f +9346,3706,0,1,f +9346,3710,2,4,f +9346,3710,0,4,f +9346,3710,4,2,f +9346,3794a,0,1,f +9346,3794b,272,2,f +9346,3795,0,1,f +9346,3795,70,2,f +9346,3894,71,2,f +9346,3957b,0,2,f +9346,3962b,0,1,f +9346,4079b,0,1,f +9346,4081b,0,2,f +9346,4150,15,1,f +9346,4150,4,2,f +9346,4162,4,2,f +9346,41769,2,1,f +9346,41770,2,1,f +9346,4274,71,2,f +9346,4274,71,1,t +9346,4286,2,3,f +9346,4287,0,2,f +9346,43093,1,2,f +9346,44225,0,4,f +9346,4495a,2,2,f +9346,4519,71,1,f +9346,4600,0,2,f +9346,50254,15,4,f +9346,50950,4,2,f +9346,51739,272,1,f +9346,54200,272,1,t +9346,54200,272,2,f +9346,55013,72,1,f +9346,55704,272,1,f +9346,55981,71,2,f +9346,56630,272,1,f +9346,56630,0,1,f +9346,59349,4,3,f +9346,59426,72,3,f +9346,59443,70,2,f +9346,59900,2,4,f +9346,59900,52,2,f +9346,6081,15,1,f +9346,60897,0,2,f +9346,6091,15,4,f +9346,6091,288,2,f +9346,6108,70,2,f +9346,61409,4,2,f +9346,6141,85,14,f +9346,6141,34,2,t +9346,6141,4,1,f +9346,6141,179,1,t +9346,6141,85,2,t +9346,6141,34,8,f +9346,6141,179,4,f +9346,6141,4,1,t +9346,61482,71,1,f +9346,61482,71,1,t +9346,6179,15,2,f +9346,6233,15,2,f +9346,62537pr0002,4,1,f +9346,64648,179,1,f +9346,64798,2,1,f +9346,6536,0,1,f +9346,6857stk01,9999,1,t +9346,76768,70,2,f +9346,85976,0,1,f +9346,85977,0,1,f +9346,87079,4,1,f +9346,87083,72,1,f +9346,87087,4,6,f +9346,87544,47,1,f +9346,87580,0,7,f +9346,87580,70,1,f +9346,87745,71,2,f +9346,88292,15,2,f +9346,92099,72,1,f +9346,92107,72,1,f +9346,92280,71,1,f +9346,92402,0,2,f +9346,92585,4,1,f +9346,92950,70,1,f +9346,92950,0,4,f +9346,95229,0,2,f +9346,95674pr0002,71,2,f +9346,96874,25,1,t +9346,970c00,2,1,f +9346,970c00,85,1,f +9346,970d03pr0302,4,1,f +9346,970x026,4,1,f +9346,970x140,71,1,f +9346,973pr1948bc01,71,1,f +9346,973pr1949bc01,4,1,f +9346,973pr1951bc01,4,1,f +9346,973pr1952bc01,2,1,f +9346,973pr2150c01,85,1,f +9346,98721,0,1,f +9346,98721,0,1,t +9346,99930,0,1,f +9348,32123b,7,3,f +9348,3736,7,1,f +9348,4185,7,2,f +9348,74982,14,1,f +9349,21,47,1,f +9349,3001a,1,1,f +9349,3001a,14,2,f +9349,3005,47,2,f +9349,3005,1,2,f +9349,3009,1,6,f +9349,3010,1,10,f +9349,3010pb035e,14,1,f +9349,3020,14,1,f +9349,3020,0,1,f +9349,3020,1,1,f +9349,3021,14,2,f +9349,3023,0,1,f +9349,3030,14,2,f +9349,3034,0,1,f +9349,3035,14,1,f +9349,3062a,0,3,f +9349,3137c01,0,1,f +9349,3137c02,0,4,f +9349,3139,0,2,f +9349,3190,1,2,f +9349,3191,1,2,f +9349,3581,1,2,f +9349,3582,1,2,f +9349,7b,0,8,f +9349,967,14,1,f +9349,968,14,1,f +9349,969,7,1,f +9350,12825,4,2,f +9350,22119,14,1,f +9350,22119,1,1,f +9350,2343,297,1,f +9350,2412b,0,12,f +9350,2420,4,2,f +9350,2420,14,4,f +9350,2420,15,2,f +9350,2431,70,2,f +9350,2431,14,13,f +9350,2431,15,2,f +9350,2432,1,4,f +9350,2432,14,2,f +9350,2432,4,4,f +9350,2436,71,2,f +9350,2449,15,4,f +9350,2456,15,7,f +9350,2456,0,2,f +9350,2456,71,1,f +9350,2456,70,1,f +9350,2456,14,3,f +9350,2460,15,2,f +9350,2465,15,3,f +9350,2465,4,1,f +9350,2780,0,170,f +9350,2815,0,2,f +9350,298c02,1,16,f +9350,3001,70,3,f +9350,3001,29,1,f +9350,3001,14,1,f +9350,3001,15,11,f +9350,3001,0,2,f +9350,3001,4,1,f +9350,3002,70,1,f +9350,3002,0,4,f +9350,3002,15,5,f +9350,3002,29,2,f +9350,3003,15,2,f +9350,3003,0,4,f +9350,3003,72,1,f +9350,3004,14,4,f +9350,3004,15,13,f +9350,3004,2,4,f +9350,3004,0,3,f +9350,3004,29,2,f +9350,3004,4,10,f +9350,3004,1,4,f +9350,3004,19,2,f +9350,3005,4,4,f +9350,3005,71,4,f +9350,3005,15,3,f +9350,3005,2,2,f +9350,3005,14,2,f +9350,3005,0,3,f +9350,3005,19,2,f +9350,3005pr0003,15,4,f +9350,3008,15,8,f +9350,3008,70,4,f +9350,3008,14,2,f +9350,3009,14,1,f +9350,3009,4,1,f +9350,3009,15,9,f +9350,3010,14,3,f +9350,3010,15,4,f +9350,3010,4,3,f +9350,30150,70,2,f +9350,30157,71,5,f +9350,3020,1,3,f +9350,3020,4,5,f +9350,3020,15,3,f +9350,3021,14,2,f +9350,3021,1,2,f +9350,3021,4,6,f +9350,3021,15,2,f +9350,3022,72,2,f +9350,3022,14,5,f +9350,3022,15,4,f +9350,3022,70,4,f +9350,3022,4,3,f +9350,3022,0,6,f +9350,3023,15,4,f +9350,3023,70,6,f +9350,3023,4,9,f +9350,3023,0,5,f +9350,3023,14,12,f +9350,3023,1,1,f +9350,3024,15,4,f +9350,3024,2,2,f +9350,3024,14,6,f +9350,3024,4,2,f +9350,3024,70,4,f +9350,3028,72,1,f +9350,3029,14,1,f +9350,3031,4,3,f +9350,3032,14,2,f +9350,3032,70,6,f +9350,3033,14,1,f +9350,3034,15,2,f +9350,3035,70,3,f +9350,3036,15,8,f +9350,3036,2,1,f +9350,3039,2,2,f +9350,3039,4,2,f +9350,3039,15,3,f +9350,3039,0,2,f +9350,3040b,14,2,f +9350,3040b,19,2,f +9350,3040b,70,3,f +9350,3040b,4,7,f +9350,3040b,15,2,f +9350,3040b,29,4,f +9350,3040b,2,4,f +9350,30414,71,2,f +9350,3045,0,1,f +9350,3045,15,1,f +9350,3062b,1,18,f +9350,3062b,14,6,f +9350,30648,0,2,f +9350,3068b,72,1,f +9350,3069b,1,2,f +9350,3069b,4,3,f +9350,3069b,36,4,f +9350,3069b,71,1,f +9350,3069b,2,1,f +9350,32000,4,2,f +9350,32001,15,2,f +9350,32002,72,4,f +9350,32009,71,8,f +9350,32009,0,8,f +9350,32039,0,2,f +9350,32039,71,9,f +9350,32054,71,37,f +9350,32062,4,24,f +9350,32064b,15,2,f +9350,32064b,4,2,f +9350,32072,0,2,f +9350,32073,71,10,f +9350,32123b,14,8,f +9350,32138,0,2,f +9350,32140,4,4,f +9350,32140,15,2,f +9350,32192,0,8,f +9350,32250,4,2,f +9350,32278,15,3,f +9350,32278,0,13,f +9350,32316,71,8,f +9350,32316,15,7,f +9350,32316,0,7,f +9350,32449,15,4,f +9350,32474,4,3,f +9350,32523,1,4,f +9350,32523,0,22,f +9350,32523,4,4,f +9350,32524,15,6,f +9350,32524,0,11,f +9350,32525,71,29,f +9350,32526,0,12,f +9350,32532,0,1,f +9350,32556,19,8,f +9350,32557,0,4,f +9350,3298,15,8,f +9350,33085,14,3,f +9350,33125,484,2,f +9350,33172,25,2,f +9350,33183,10,2,f +9350,33299a,0,1,f +9350,3460,15,2,f +9350,3622,15,18,f +9350,3622,14,2,f +9350,3622,4,2,f +9350,3647,72,2,f +9350,3648b,72,1,f +9350,3660,15,2,f +9350,3660,1,2,f +9350,3660,14,2,f +9350,3665,0,1,f +9350,3665,15,3,f +9350,3665,4,6,f +9350,3665,14,10,f +9350,3665,2,2,f +9350,3665,19,2,f +9350,3666,71,4,f +9350,3666,14,2,f +9350,3673,71,15,f +9350,3700,0,6,f +9350,3700,4,5,f +9350,3701,4,1,f +9350,3701,15,1,f +9350,3701,1,1,f +9350,3703,15,1,f +9350,3705,0,15,f +9350,3706,0,3,f +9350,3708,0,6,f +9350,3709,15,1,f +9350,3709,0,6,f +9350,3710,1,4,f +9350,3710,70,11,f +9350,3710,71,2,f +9350,3710,14,5,f +9350,3710,2,1,f +9350,3710,4,8,f +9350,3713,71,18,f +9350,3747b,1,1,f +9350,3747b,15,12,f +9350,3747b,14,1,f +9350,3749,19,2,f +9350,3795,71,3,f +9350,3829c01,0,1,f +9350,3832,14,2,f +9350,3832,15,2,f +9350,3832,0,1,f +9350,3894,14,1,f +9350,3894,4,2,f +9350,3941,4,2,f +9350,3941,15,3,f +9350,3941,14,1,f +9350,3941,70,24,f +9350,3941,1,1,f +9350,40234,71,2,f +9350,4032a,0,2,f +9350,40490,71,20,f +9350,40490,4,2,f +9350,4070,15,5,f +9350,41239,0,6,f +9350,41239,71,1,f +9350,4150,0,3,f +9350,4150p02,14,1,f +9350,4161,15,10,f +9350,4162,70,2,f +9350,4162,15,10,f +9350,4176,40,1,f +9350,4185,71,4,f +9350,42003,71,2,f +9350,42022,4,2,f +9350,4274,1,11,f +9350,4286,4,4,f +9350,4286,2,2,f +9350,4287,15,2,f +9350,4287,4,2,f +9350,43093,1,57,f +9350,4342,19,1,f +9350,44294,71,8,f +9350,44728,14,3,f +9350,4477,4,2,f +9350,4477,14,2,f +9350,4477,70,4,f +9350,4519,71,7,f +9350,45677,0,1,f +9350,4727,10,1,f +9350,4728,14,1,f +9350,4733,15,60,f +9350,49668,191,2,f +9350,52031,14,2,f +9350,54200,70,2,f +9350,54200,0,3,f +9350,54200,4,6,f +9350,54200,15,3,f +9350,55981,71,10,f +9350,55982,71,2,f +9350,56891,0,2,f +9350,58090,0,8,f +9350,59349,15,6,f +9350,59426,72,1,f +9350,59443,4,11,f +9350,59443,71,20,f +9350,59443,0,4,f +9350,6005,72,4,f +9350,6019,14,2,f +9350,60483,0,4,f +9350,60485,71,9,f +9350,6091,72,4,f +9350,6091,14,2,f +9350,6111,4,2,f +9350,6112,15,2,f +9350,61409,0,2,f +9350,6141,29,81,f +9350,6141,14,76,f +9350,6141,27,79,f +9350,6141,85,75,f +9350,6141,4,77,f +9350,6141,71,8,f +9350,6141,47,2,f +9350,6141,182,2,f +9350,61780,2,1,f +9350,6232,72,2,f +9350,6232,15,3,f +9350,62462,0,1,f +9350,62531,71,4,f +9350,62531,4,2,f +9350,6254,15,1,f +9350,63869,71,1,f +9350,64782,2,11,f +9350,64782,0,6,f +9350,6536,4,2,f +9350,6536,1,2,f +9350,6536,0,2,f +9350,6536,15,2,f +9350,6536,71,8,f +9350,6558,1,94,f +9350,6636,14,1,f +9350,6636,71,3,f +9350,6636,15,8,f +9350,6636,70,8,f +9350,6881b,71,6,f +9350,78c09,0,27,f +9350,84954,40,1,f +9350,87087,4,3,f +9350,87087,0,3,f +9350,87552,40,2,f +9350,87580,2,2,f +9350,87580,0,2,f +9350,92262,14,1,f +9350,92263,14,1,f +9351,32062,0,6,f +9351,32173,8,2,f +9351,32174,6,10,f +9351,32174,57,1,f +9351,32270,7,1,f +9351,3737,0,1,f +9351,3749,19,4,f +9351,44135,8,1,f +9351,44136,8,1,f +9351,44138,6,2,f +9351,44139,8,1,f +9351,44140,6,1,f +9351,44142,179,1,f +9351,44148,8,2,f +9351,44247,8,1,f +9351,44807,6,1,f +9351,44816,179,2,f +9351,4519,7,3,f +9351,45749,8,2,f +9351,6538b,8,1,f +9351,kraataund,178,1,f +9354,2335pw1,15,1,f +9354,2343,47,1,f +9354,2357,7,4,f +9354,2357,0,2,f +9354,2397,0,1,f +9354,2400,0,4,f +9354,2445,0,1,f +9354,2453a,0,4,f +9354,2454a,0,7,f +9354,2470,0,2,f +9354,2488,0,1,f +9354,2527,6,1,f +9354,2530,8,1,t +9354,2530,8,3,f +9354,2540,0,4,f +9354,2546,4,4,f +9354,2555,0,8,f +9354,2926,0,1,f +9354,3001,7,1,f +9354,3002,7,2,f +9354,3004,15,1,f +9354,3004,6,1,f +9354,3004,7,24,f +9354,3004,0,5,f +9354,30041,0,2,f +9354,30042,0,2,f +9354,3005,7,8,f +9354,3005,6,10,f +9354,3005,0,4,f +9354,30055,7,2,f +9354,30055,0,6,f +9354,3007,7,2,f +9354,3008,1,1,f +9354,3008,0,1,f +9354,3009,1,2,f +9354,3010,0,1,f +9354,3010,7,2,f +9354,30132,8,5,f +9354,30132,8,1,t +9354,30133,15,3,f +9354,30133,0,2,f +9354,30134,0,1,f +9354,30135,1,3,f +9354,30136,6,148,f +9354,30137,6,93,f +9354,30139,6,2,f +9354,30140,6,23,f +9354,30141,8,10,f +9354,3020,7,1,f +9354,3020,0,10,f +9354,3021,0,4,f +9354,3021,4,1,f +9354,3022,4,1,f +9354,3023,0,9,f +9354,3023,6,2,f +9354,3023,15,3,f +9354,3024,4,1,f +9354,3024,0,2,f +9354,3027,4,2,f +9354,3028,0,1,f +9354,3029,0,2,f +9354,3031,0,1,f +9354,3033,0,1,f +9354,3034,0,2,f +9354,3035,0,1,f +9354,3036,0,4,f +9354,3036,4,2,f +9354,3040b,7,3,f +9354,3062b,7,8,f +9354,3069b,7,4,f +9354,3069b,4,2,f +9354,3069bp03,7,1,f +9354,3069bpw1,15,1,f +9354,3176,0,1,f +9354,3455,7,1,f +9354,3460,0,3,f +9354,3581,6,4,f +9354,3581,7,2,f +9354,3596,15,2,f +9354,3622,0,2,f +9354,3622,4,2,f +9354,3622,7,2,f +9354,3623,0,1,f +9354,3623,4,1,f +9354,3626bp39,14,2,f +9354,3626bp42,14,3,f +9354,3626bp62,14,1,f +9354,3626bpx23,14,1,f +9354,3626bpx28,14,1,f +9354,3626bpx29,14,1,f +9354,3626bpx30,14,1,f +9354,3629,1,2,f +9354,3629,6,2,f +9354,3629,15,1,f +9354,3629pw1,1,1,f +9354,3644,0,2,f +9354,3666,0,2,f +9354,3666,4,1,f +9354,3679,7,1,f +9354,3680,4,1,f +9354,3684,7,4,f +9354,3710,0,6,f +9354,3710,4,2,f +9354,3794a,4,2,f +9354,3795,4,1,f +9354,3795,0,4,f +9354,3832,0,1,f +9354,3853,6,2,f +9354,3854,1,4,f +9354,3856,7,4,f +9354,3857,19,4,f +9354,3861b,7,1,f +9354,3878,0,1,f +9354,3941,6,1,f +9354,3958,0,1,f +9354,4070,0,4,f +9354,4070,7,2,f +9354,4071,7,1,f +9354,4085c,0,1,f +9354,4095,15,1,f +9354,4213,0,4,f +9354,4275b,0,3,f +9354,4276b,0,3,f +9354,4282,0,1,f +9354,4286,0,6,f +9354,4460a,7,4,f +9354,4477,4,1,f +9354,4477,0,2,f +9354,4489a,0,2,f +9354,4491b,6,1,f +9354,4491b,0,1,f +9354,4493c01pb01,6,1,f +9354,4493c01pb02,0,1,f +9354,4611,0,1,f +9354,4623,0,4,f +9354,4625,0,4,f +9354,4865a,7,7,f +9354,4865a,4,4,f +9354,4865a,1,4,f +9354,57503,334,1,f +9354,57504,334,1,f +9354,57505,334,1,f +9354,57506,334,1,f +9354,6020,0,4,f +9354,6039,0,1,f +9354,6064,2,5,f +9354,6082,7,2,f +9354,6083,7,1,f +9354,6126a,57,6,f +9354,6141,0,1,t +9354,6141,0,2,f +9354,6157,0,1,f +9354,6231,0,4,f +9354,6636,0,2,f +9354,6769stk01,9999,1,t +9354,71342,334,1,f +9354,75998pr0007,15,1,f +9354,84943,8,1,f +9354,87695,15,2,f +9354,87696,15,1,t +9354,970c00,1,6,f +9354,970c00,7,1,f +9354,970c00,8,1,f +9354,970c00,0,2,f +9354,973px41c01,1,1,f +9354,973px42c01,1,3,f +9354,973px43c01,1,2,f +9354,973px53c01,6,1,f +9354,973px54c01,0,1,f +9354,973px55c01,2,1,f +9354,973px56c01,4,1,f +9355,3034a,15,1,f +9355,3036a,15,3,f +9357,3001,1,8,f +9357,3001,4,8,f +9357,73090a,4,2,f +9358,14226c41,0,1,f +9358,2339,0,3,f +9358,2357,6,4,f +9358,2362b,6,2,f +9358,2417,2,3,f +9358,2420,0,2,f +9358,2423,2,2,f +9358,2431,6,4,f +9358,3001,6,1,f +9358,3002,8,2,f +9358,3004,6,8,f +9358,3004,0,2,f +9358,3005,0,1,f +9358,3010,0,1,f +9358,30176,2,6,f +9358,3020,7,1,f +9358,3020,0,3,f +9358,3021,2,1,f +9358,3022,2,2,f +9358,3022,0,1,f +9358,3023,7,1,f +9358,3023,0,6,f +9358,30238,0,2,f +9358,3024,8,1,t +9358,3024,8,1,f +9358,30240,8,3,f +9358,3031,2,1,f +9358,3032,8,1,f +9358,3034,8,1,f +9358,30364,7,2,f +9358,30365,8,2,f +9358,30374,6,1,f +9358,30374,7,1,f +9358,30389b,0,1,f +9358,3039,6,2,f +9358,3040b,6,9,f +9358,30540,0,2,f +9358,3068bpb0005,7,2,f +9358,3069b,6,4,f +9358,3070bph0,378,2,f +9358,3070bph0,378,1,t +9358,32000,7,2,f +9358,32474,0,2,f +9358,3623,0,5,f +9358,3626bpb0009,14,1,f +9358,3626bph1,14,1,f +9358,3660,8,2,f +9358,3676,8,2,f +9358,3684,6,2,f +9358,3710,6,2,f +9358,3747a,8,1,f +9358,3867,2,1,f +9358,40232,19,1,f +9358,40232,8,1,f +9358,40233,0,1,f +9358,40240,366,1,f +9358,40378,0,8,f +9358,40379,0,8,f +9358,4070,0,2,f +9358,41529,0,1,f +9358,41532,0,2,f +9358,41747,0,1,f +9358,41748,0,1,f +9358,41764,8,1,f +9358,41765,8,1,f +9358,41769,0,1,f +9358,41770,0,1,f +9358,4286,6,2,f +9358,4460a,6,4,f +9358,4623,0,1,f +9358,4865a,0,2,f +9358,57503,334,1,f +9358,57504,334,1,f +9358,57505,334,1,f +9358,57506,334,1,f +9358,6141,36,2,f +9358,6141,36,1,t +9358,6541,7,2,f +9358,6541,6,6,f +9358,6564,0,1,f +9358,6565,0,1,f +9358,6636,7,2,f +9358,73983,0,1,f +9358,75535,0,2,f +9358,75c08,8,3,f +9358,970c00,8,1,f +9358,970c00,7,1,f +9358,973pb0258c01,0,1,f +9358,973pb0259c01,272,1,f +9360,264,4,1,f +9360,4438,0,1,f +9360,4461,4,1,f +9360,4796c01,4,1,f +9360,fab2f,9999,1,f +9360,fabaj1,4,2,f +9360,fabaj3,14,1,f +9360,fabed10,0,1,f +9364,11477,4,4,f +9364,14704,71,2,f +9364,14769pr1001,15,1,f +9364,15209,15,1,f +9364,15456,0,2,f +9364,2412b,72,1,f +9364,2921,0,2,f +9364,3022,0,3,f +9364,3023,4,4,f +9364,3023,14,3,f +9364,32474pr1001,15,2,f +9364,3660,0,2,f +9364,4032a,14,1,f +9364,4488,0,2,f +9364,4624,15,2,f +9364,4735,0,2,f +9364,49668,182,2,f +9364,51739,4,2,f +9364,54200,15,2,f +9364,54200,15,1,t +9364,6019,14,4,f +9364,60470b,15,3,f +9364,60478,0,2,f +9364,6126a,41,2,f +9364,6141,15,2,f +9364,6141,15,1,t +9364,62113,15,2,f +9364,87414,0,2,f +9364,92280,0,2,f +9364,98138,33,4,f +9364,98138,33,1,t +9364,99206,4,1,f +9364,99780,0,4,f +9364,99781,71,2,f +9365,3464,15,1,f +9365,3464,15,1,t +9365,3837,72,1,f +9365,59895,0,1,f +9365,6141,15,1,t +9365,6141,15,3,f +9365,98288,4,1,f +9366,11055pr0005,7,1,f +9366,2412b,0,1,f +9366,2476a,8,1,f +9366,2540,8,1,f +9366,2555,25,2,f +9366,298c02,7,1,f +9366,298c02,7,1,t +9366,30162,8,1,f +9366,3022,7,2,f +9366,3022,8,1,f +9366,3023,7,3,f +9366,3023,40,1,f +9366,30361apr4,379,1,f +9366,30374,8,2,f +9366,30383,8,2,f +9366,3040b,7,2,f +9366,30553,8,2,f +9366,30554a,7,4,f +9366,3069b,7,2,f +9366,3070bps1,7,1,f +9366,3070bps1,7,1,t +9366,32028,7,1,f +9366,32039,7,2,f +9366,32062,0,2,f +9366,32123b,7,2,f +9366,32123b,7,1,t +9366,3623,8,5,f +9366,3707,0,1,f +9366,3713,7,1,t +9366,3713,7,1,f +9366,3794a,0,6,f +9366,4032a,7,1,f +9366,42446,7,2,f +9366,43722,7,2,f +9366,43723,7,2,f +9366,4519,7,1,f +9366,4599a,7,1,f +9366,4733,7,2,f +9366,4740,8,2,f +9366,4740,7,2,f +9366,4740,47,1,f +9366,6019,8,2,f +9366,6141,0,1,f +9366,6141,36,1,t +9366,6141,36,1,f +9366,6141,0,1,t +9366,6141,7,1,t +9366,6141,7,2,f +9366,6536,7,1,f +9366,6541,7,2,f +9369,2357,14,4,f +9369,2419,14,2,f +9369,2420,0,8,f +9369,2444,14,4,f +9369,2444,0,2,f +9369,2445,0,1,f +9369,2639,7,1,f +9369,2711,0,2,f +9369,2711,14,8,f +9369,2717,1,3,f +9369,2719,7,3,f +9369,2730,0,4,f +9369,2730,14,1,f +9369,2744,14,2,f +9369,2744,0,4,f +9369,2780,0,62,f +9369,2793c01,14,2,f +9369,2797c02,14,1,f +9369,2817,0,2,f +9369,2819,7,1,f +9369,2825,14,2,f +9369,2825,7,18,f +9369,2825,0,2,f +9369,2853,7,2,f +9369,2856c01,7,1,f +9369,2905,0,4,f +9369,3004,14,4,f +9369,3005,14,6,f +9369,3020,7,5,f +9369,3020,0,1,f +9369,3020,14,4,f +9369,3021,0,4,f +9369,3021,14,2,f +9369,3022,14,6,f +9369,3022,0,3,f +9369,3023,7,7,f +9369,3023,0,14,f +9369,3023,14,12,f +9369,3024,0,6,f +9369,3024,7,2,f +9369,3024,14,3,f +9369,3029,0,1,f +9369,3032,14,1,f +9369,3034,0,3,f +9369,3034,7,1,f +9369,3038,14,2,f +9369,3040b,0,2,f +9369,3040b,14,4,f +9369,3045,0,2,f +9369,3069b,15,8,f +9369,3070b,36,1,t +9369,3070b,14,1,t +9369,3070b,14,2,f +9369,3070b,36,2,f +9369,3460,14,4,f +9369,3460,0,21,f +9369,3482,7,1,f +9369,3622,0,2,f +9369,3623,14,7,f +9369,3623,0,8,f +9369,3647,7,11,f +9369,3648a,7,3,f +9369,3665,15,2,f +9369,3666,14,4,f +9369,3666,7,2,f +9369,3666,0,15,f +9369,3673,7,6,f +9369,3676,14,2,f +9369,3684,14,2,f +9369,3700,14,10,f +9369,3700,0,10,f +9369,3700,7,4,f +9369,3701,0,9,f +9369,3701,14,3,f +9369,3701,15,2,f +9369,3701,7,3,f +9369,3702,7,2,f +9369,3702,14,7,f +9369,3702,0,4,f +9369,3703,14,4,f +9369,3703,0,10,f +9369,3704,0,14,f +9369,3705,0,13,f +9369,3706,0,19,f +9369,3707,0,5,f +9369,3708,0,8,f +9369,3709,14,2,f +9369,3710,14,2,f +9369,3710,7,4,f +9369,3710,0,15,f +9369,3713,7,36,f +9369,3737,0,4,f +9369,3738,0,2,f +9369,3743,7,7,f +9369,3749,7,10,f +9369,3794a,14,5,f +9369,3794a,1,6,f +9369,3795,14,2,f +9369,3832,14,3,f +9369,3832,0,3,f +9369,3894,14,9,f +9369,3894,15,1,f +9369,3894,0,13,f +9369,3894,7,4,f +9369,3895,0,5,f +9369,3895,15,1,f +9369,3895,14,2,f +9369,3935,14,2,f +9369,3936,14,2,f +9369,3941,46,2,f +9369,4019,7,3,f +9369,4032a,15,2,f +9369,4070,0,8,f +9369,4070,14,2,f +9369,4081b,0,2,f +9369,4150,15,2,f +9369,4185,7,8,f +9369,424,0,5,f +9369,4261,7,4,f +9369,4262,0,2,f +9369,4263,7,2,f +9369,4263,0,2,f +9369,4265b,7,1,t +9369,4265b,7,36,f +9369,4273b,7,2,f +9369,4274,7,12,f +9369,4275b,14,2,f +9369,4287,0,2,f +9369,4287,14,2,f +9369,4460a,14,8,f +9369,4477,14,2,f +9369,4477,0,6,f +9369,4504,14,2,f +9369,4519,0,10,f +9369,4531,14,2,f +9369,4697b,7,3,f +9369,4716,0,3,f +9369,5102c02,0,2,f +9369,5102c04,0,1,f +9369,5102c08,0,1,f +9369,5102c11,7,1,f +9369,5102c18,0,2,f +9369,56823,0,1,f +9369,6536,7,8,f +9369,6538a,7,9,f +9369,6541,14,3,f +9369,6541,0,8,f +9369,6553,7,8,f +9369,6558,0,15,f +9369,6564,14,2,f +9369,6565,14,2,f +9369,6575,7,6,f +9369,6581,0,6,f +9369,6582,14,6,f +9369,6587,8,4,f +9369,6589,7,13,f +9369,6592,7,2,f +9369,6632,7,2,f +9369,70496,0,1,f +9369,75215,7,2,f +9369,75535,14,4,f +9369,8460stk01,9999,1,t +9372,2419,0,2,f +9372,2431pb002,15,1,f +9372,2436,15,2,f +9372,3005,15,2,f +9372,3005p03,15,2,f +9372,3008,15,1,f +9372,3010,7,2,f +9372,3010,15,2,f +9372,3020,15,1,f +9372,3020,0,2,f +9372,3021,15,1,f +9372,3022,1,1,f +9372,3023,1,2,f +9372,3023,4,2,f +9372,3024,15,2,f +9372,3024,36,2,f +9372,3030,7,1,f +9372,3035,7,1,f +9372,3036,0,1,f +9372,3062b,4,1,f +9372,3070bp02,14,2,f +9372,3070bp03,14,2,f +9372,3185,4,2,f +9372,3622,15,4,f +9372,3623,15,2,f +9372,3623,1,2,f +9372,3626apr0001,14,2,f +9372,3641,0,6,f +9372,3710,1,5,f +9372,3710,15,1,f +9372,3788,15,2,f +9372,3821,15,1,f +9372,3822,15,1,f +9372,3823,47,2,f +9372,3829c01,4,1,f +9372,3836,6,1,f +9372,3842b,4,1,f +9372,3900,15,2,f +9372,3937,15,3,f +9372,3938,15,3,f +9372,3941,15,1,f +9372,3941,14,1,f +9372,3957a,4,2,f +9372,4006,0,1,f +9372,4032a,4,1,f +9372,4083,1,1,f +9372,4085b,7,4,f +9372,4212b,4,1,f +9372,4213,4,1,f +9372,4275b,0,1,f +9372,4276b,0,1,f +9372,4315,4,1,f +9372,4477,15,1,f +9372,4485,4,1,f +9372,4522,0,1,f +9372,4599a,4,2,f +9372,4600,0,2,f +9372,4623,1,2,f +9372,4624,15,6,f +9372,4629c01,1,1,f +9372,6141,0,4,f +9372,6141,36,2,f +9372,6141,34,2,f +9372,6141,46,2,f +9372,6141,47,2,f +9372,970c00,15,1,f +9372,970c00,0,1,f +9372,973p14c01,15,1,f +9372,973pb0202c01,15,1,f +9377,3001,0,6,f +9377,3005,1,2,f +9377,3005,4,8,f +9377,3008,1,2,f +9377,3009,4,2,f +9377,3009,1,4,f +9377,3010,1,2,f +9377,3010,0,4,f +9377,3020,0,2,f +9377,3022,0,2,f +9377,3027,0,1,f +9377,3029,7,1,f +9377,3031,0,1,f +9377,3297,7,8,f +9377,3622,1,2,f +9377,3624,4,1,f +9377,3625,0,1,f +9377,3626apr0001,14,2,f +9377,3660,0,4,f +9377,3665,0,8,f +9377,3710,7,2,f +9377,3795,0,2,f +9377,3832,0,1,f +9377,4022,0,2,f +9377,4023,0,2,f +9377,4032a,0,8,f +9377,4032a,7,3,f +9377,4033,4,4,f +9377,4034,47,4,f +9377,4035,4,2,f +9377,4036,47,2,f +9377,4079,14,4,f +9377,4162,4,4,f +9377,4180c04,4,2,f +9377,4181p05,4,1,f +9377,4182p05,4,1,f +9377,4183,47,2,f +9377,73092,0,2,f +9377,970c00,4,1,f +9377,970c00,1,1,f +9377,973c01,15,1,f +9377,973c02,4,1,f +9379,32013,25,1,f +9379,32015,25,2,f +9379,32062,0,3,f +9379,32140,0,2,f +9379,32174,0,1,f +9379,32474,0,1,f +9379,32523,0,1,f +9379,32576,4,2,f +9379,40342,4,1,f +9379,41661,4,1,f +9379,41669,33,2,f +9379,42042,4,1,f +9379,42042und,14,1,f +9379,43093,0,2,f +9379,4519,0,1,f +9379,6536,0,1,f +9379,6553,0,2,f +9379,6558,0,2,f +9380,32017,0,1,f +9380,32062,0,3,f +9380,32068,0,1,f +9380,32073,0,1,f +9380,32172,0,2,f +9380,32173,14,2,f +9380,32174,0,2,f +9380,32305,14,1,f +9380,32306,0,1,f +9380,32307,0,2,f +9380,32310pb03,14,1,f +9380,32311,0,1,f +9380,32439a,14,2,f +9380,3647,0,1,f +9380,3705,0,1,f +9380,3713,7,1,f +9380,3737,0,1,f +9380,3749,7,1,f +9380,4274,7,2,f +9380,4589,57,2,f +9380,4716,0,1,f +9380,6538b,14,1,f +9380,rb00169,0,1,f +9380,rb00182,14,1,t +9381,kk2wb,89,1,f +9382,2825,7,2,f +9382,2854,7,2,f +9382,32013,1,2,f +9382,32017,7,2,f +9382,32039,7,2,f +9382,6536,7,2,f +9382,6553,7,2,f +9382,6575,7,2,f +9382,6632,7,2,f +9383,2335,0,1,f +9383,2335,4,1,f +9383,2412b,0,12,f +9383,2412b,71,1,f +9383,2412b,4,2,f +9383,2420,19,2,f +9383,2420,70,4,f +9383,2431,308,4,f +9383,2431,70,11,f +9383,2431pr0028,72,1,f +9383,2436,0,2,f +9383,2450,72,4,f +9383,2450,19,2,f +9383,2450,28,2,f +9383,2458,15,2,f +9383,2458,72,2,f +9383,2540,72,5,f +9383,2540,71,5,f +9383,2555,72,9,f +9383,2555,71,5,f +9383,2555,0,2,f +9383,2654,1,10,f +9383,2817,71,1,f +9383,2817,4,1,f +9383,3002,71,1,f +9383,3003,1,1,f +9383,3003,71,3,f +9383,3004,70,7,f +9383,3004,71,3,f +9383,3005,71,4,f +9383,3005,70,4,f +9383,3009,71,3,f +9383,3009,70,2,f +9383,3010,71,2,f +9383,3010,70,4,f +9383,30132,72,1,t +9383,30132,72,1,f +9383,30137,71,1,f +9383,3020,4,1,f +9383,3020,70,3,f +9383,3021,71,1,f +9383,3021,15,1,f +9383,3021,0,1,f +9383,3022,72,1,f +9383,3022,70,4,f +9383,3022,0,1,f +9383,3023,28,4,f +9383,3023,72,5,f +9383,3023,15,2,f +9383,3023,1,3,f +9383,3023,71,3,f +9383,30236,71,2,f +9383,3024,28,2,f +9383,3024,19,2,f +9383,3031,15,1,f +9383,3032,15,1,f +9383,3035,4,2,f +9383,3035,70,1,f +9383,30374,0,2,f +9383,3039,72,2,f +9383,3062b,1,7,f +9383,3062b,71,9,f +9383,3062b,19,2,f +9383,3062b,72,1,f +9383,3062b,15,11,f +9383,3062b,272,4,f +9383,3068b,72,2,f +9383,3068b,15,1,f +9383,3068b,0,1,f +9383,3068bpr0139a,19,1,f +9383,3069b,28,15,f +9383,3069b,19,7,f +9383,3069bpr0101,71,2,f +9383,3070b,72,2,f +9383,3070b,72,1,t +9383,3455,71,1,f +9383,3460,70,2,f +9383,3622,71,1,f +9383,3623,70,2,f +9383,3626b,15,2,f +9383,3626bpr0516a,78,1,f +9383,3626bpr0590,78,1,f +9383,3626bpr0591,92,1,f +9383,3626bpr0592,92,1,f +9383,3660,70,5,f +9383,3660,71,1,f +9383,3660,4,1,f +9383,3665,70,4,f +9383,3678b,70,4,f +9383,3701,19,3,f +9383,3710,1,1,f +9383,3710,72,1,f +9383,3710,4,2,f +9383,3710,71,5,f +9383,3710,19,2,f +9383,3794b,28,5,f +9383,3794b,19,5,f +9383,3795,19,1,f +9383,3795,28,1,f +9383,3795,0,1,f +9383,3795,4,4,f +9383,3829c01,71,2,f +9383,3894,71,2,f +9383,3901,70,1,f +9383,3958,1,2,f +9383,3960,71,1,f +9383,40234,71,1,f +9383,4070,71,1,f +9383,4070,72,1,f +9383,4079,0,2,f +9383,4079,15,2,f +9383,4150,71,3,f +9383,4162,19,3,f +9383,4175,72,1,f +9383,42023,70,4,f +9383,4274,1,1,t +9383,4274,1,4,f +9383,4286,70,4,f +9383,4589,71,2,f +9383,4599b,0,4,f +9383,4740,15,2,f +9383,47406,70,2,f +9383,47407,28,1,f +9383,47407,19,1,f +9383,4865a,71,2,f +9383,52501,70,10,f +9383,60474,72,1,f +9383,60849,0,1,f +9383,6108,71,2,f +9383,61184,71,2,f +9383,6141,1,2,f +9383,6141,72,1,t +9383,6141,14,2,f +9383,6141,14,1,t +9383,6141,36,1,t +9383,6141,71,5,f +9383,6141,36,1,f +9383,6141,4,1,t +9383,6141,34,1,f +9383,6141,1,1,t +9383,6141,34,1,t +9383,6141,71,1,t +9383,6141,4,2,f +9383,6141,72,13,f +9383,61506,70,1,f +9383,6182,71,2,f +9383,61975,70,1,f +9383,62360,47,2,f +9383,64644,0,4,f +9383,6558,1,2,f +9383,6587,72,1,f +9383,6636,19,6,f +9383,6636,70,2,f +9383,6636,28,2,f +9383,85973,0,1,f +9383,85974,226,1,f +9383,85975,320,2,f +9383,970c00,71,2,f +9383,970c00,72,2,f +9383,973pr1498c01,71,1,f +9383,973pr1499c01,15,1,f +9383,973pr1500c01,72,2,f +9384,15210pr01,0,1,f +9384,2343,297,2,f +9384,2412b,71,5,f +9384,2431,71,2,f +9384,2431,15,1,f +9384,2431,33,1,f +9384,2432,14,1,f +9384,2432,71,1,f +9384,2437,41,1,f +9384,2453a,14,5,f +9384,2454a,71,4,f +9384,2454a,14,2,f +9384,2456,71,2,f +9384,2465,14,2,f +9384,2495,4,1,f +9384,2496,0,1,f +9384,3001,272,4,f +9384,3001,4,1,f +9384,3003,14,1,f +9384,3004,71,5,f +9384,3004,84,4,f +9384,3004,14,4,f +9384,3004,272,3,f +9384,3004,15,1,f +9384,3005,15,2,f +9384,3005,71,5,f +9384,3005,272,6,f +9384,3005,14,2,f +9384,3008,15,1,f +9384,3009,84,2,f +9384,3010,71,2,f +9384,3010,14,10,f +9384,3010,272,2,f +9384,30162,72,2,f +9384,3020,0,1,f +9384,3020,15,3,f +9384,3021,15,4,f +9384,3021,272,2,f +9384,3022,14,1,f +9384,3023,4,6,f +9384,3024,71,4,f +9384,3024,14,2,f +9384,3027,72,1,f +9384,3036,72,1,f +9384,30365,0,2,f +9384,3039,272,3,f +9384,3040bpr0003,71,1,f +9384,3062b,71,1,f +9384,30663,0,1,f +9384,30663,71,2,f +9384,3068b,1,1,f +9384,3068b,4,1,f +9384,3068bpr0137,15,1,f +9384,3069b,15,2,f +9384,3069b,82,3,f +9384,3069b,272,2,f +9384,3069bpr0030,72,1,f +9384,3069bpr0100,2,2,f +9384,3070b,36,2,f +9384,3070b,36,1,t +9384,3070bpr0007,71,1,f +9384,3070bpr0007,71,1,t +9384,32028,71,10,f +9384,32064b,15,2,f +9384,3245c,15,3,f +9384,3623,71,4,f +9384,3623,15,2,f +9384,3624,15,1,f +9384,3626bpr0386,14,1,f +9384,3626bpr0647,14,1,f +9384,3626bpr0725,14,1,f +9384,3626bpr0743,14,1,f +9384,3665,15,9,f +9384,3666,0,1,f +9384,3666,72,2,f +9384,3710,1,1,f +9384,3710,272,1,f +9384,3710,71,1,f +9384,3741,2,2,f +9384,3741,2,2,t +9384,3742,4,3,f +9384,3742,15,1,t +9384,3742,15,3,f +9384,3742,4,1,t +9384,3794b,2,2,f +9384,3795,0,2,f +9384,3795,71,2,f +9384,3829c01,14,1,f +9384,3829c01,4,1,f +9384,3865,72,1,f +9384,3899,4,1,f +9384,3937,14,2,f +9384,3938,71,2,f +9384,3962b,0,1,f +9384,4079,4,1,f +9384,4079,1,1,f +9384,4085c,0,5,f +9384,41334,0,1,f +9384,4150pr0001,15,1,f +9384,4162,15,2,f +9384,4162,272,1,f +9384,4176,40,1,f +9384,42446,71,1,f +9384,43337,15,2,f +9384,43337,71,2,f +9384,4345b,15,1,f +9384,4345b,71,2,f +9384,4346,15,1,f +9384,4346,71,2,f +9384,43888,71,1,f +9384,44301a,72,2,f +9384,4449,2,4,f +9384,4488,71,4,f +9384,4533,15,1,f +9384,45677,15,1,f +9384,4623,15,1,f +9384,4697b,71,1,t +9384,4697b,71,2,f +9384,47457,72,1,f +9384,47457,4,2,f +9384,4865a,71,6,f +9384,4865a,4,2,f +9384,4865a,41,2,f +9384,50745,15,4,f +9384,50745,72,4,f +9384,50859b,0,1,f +9384,50860,4,1,f +9384,50861,0,2,f +9384,50862,71,2,f +9384,52036,72,1,f +9384,52037,72,1,f +9384,52038,15,2,f +9384,52107,0,1,f +9384,52501,15,2,f +9384,54200,72,2,t +9384,54200,71,1,t +9384,54200,46,2,t +9384,54200,46,4,f +9384,54200,71,1,f +9384,54200,72,6,f +9384,57783,41,1,f +9384,57895,41,5,f +9384,59349,14,2,f +9384,6014b,71,8,f +9384,60470a,15,1,f +9384,60479,15,2,f +9384,60596,0,6,f +9384,60616a,41,1,f +9384,6091,71,2,f +9384,6141,70,2,t +9384,6141,36,3,t +9384,6141,36,9,f +9384,6141,70,2,f +9384,6154,15,3,f +9384,6155,71,3,f +9384,6157,0,2,f +9384,6191,15,2,f +9384,6231,71,1,f +9384,62462,0,2,f +9384,63965,71,1,f +9384,64453,272,2,f +9384,64453,41,1,f +9384,6587,28,2,f +9384,6636,0,1,f +9384,6636,72,4,f +9384,6881b,71,2,f +9384,75c09,0,2,t +9384,75c09,0,2,f +9384,85984,71,1,f +9384,85984,72,2,f +9384,86035,15,1,f +9384,87079,71,1,f +9384,87087,1,2,f +9384,87544,71,2,f +9384,87552,40,2,f +9384,87580,71,5,f +9384,87580,272,4,f +9384,87609,15,1,f +9384,87697,0,8,f +9384,88286,308,1,f +9384,88930,15,1,f +9384,88930,71,2,f +9384,92107,72,1,f +9384,92410,71,1,f +9384,92585,4,1,f +9384,92590,28,1,f +9384,92593,72,6,f +9384,92946,4,1,f +9384,94737,9999,1,t +9384,970c00,72,1,f +9384,970c00,0,1,f +9384,970c00,272,1,f +9384,970c00,71,1,f +9384,973pr1188c01,0,1,f +9384,973pr1197c01,15,1,f +9384,973pr1576c01,72,1,f +9384,973pr1697c01,73,1,f +9389,10111,70,1,f +9389,12602,4,1,f +9389,2205,14,2,f +9389,2302,14,1,f +9389,3011,1,3,f +9389,3437,14,2,f +9389,3437,4,3,f +9389,3437,15,4,f +9389,4196,10,2,f +9389,42093,14,1,f +9389,4375,14,2,f +9389,4376,0,1,f +9389,4672,72,1,f +9389,47509,179,1,f +9389,47575,212,1,f +9389,48247,0,1,f +9389,51262,72,1,f +9389,51704,4,1,f +9389,52914,73,1,f +9389,52920,15,1,f +9389,52922,272,2,f +9389,52923,179,2,f +9389,52924,71,3,f +9389,53142,71,2,f +9389,53143,71,1,f +9389,53308,73,1,f +9389,58498,0,1,f +9389,60777px1,15,1,f +9389,60809,15,1,f +9389,61318,71,1,f +9389,62832,71,1,f +9389,6361,40,1,f +9389,6427,4,1,f +9389,6427,1,1,f +9389,6504,179,1,f +9389,73351,71,2,f +9389,73572,25,1,f +9389,92094,14,2,f +9389,98465,1,1,f +9390,10170,84,1,f +9390,10235stk01,9999,1,t +9390,10509pr0005,15,2,f +9390,10928,72,1,f +9390,11153,2,8,f +9390,11609,191,3,f +9390,11609,191,1,t +9390,12825,0,4,f +9390,14119,1,4,f +9390,14119,15,4,f +9390,14769,297,9,f +9390,2357,4,4,f +9390,2357,19,2,f +9390,2412b,72,2,f +9390,2420,4,8,f +9390,2431,19,4,f +9390,2431,15,9,f +9390,2435,2,2,f +9390,2450,320,20,f +9390,2453b,71,1,f +9390,2460,4,4,f +9390,2462,19,8,f +9390,2476a,71,4,f +9390,2540,0,8,f +9390,3001,70,1,f +9390,3001,4,1,f +9390,3003,4,2,f +9390,3003,19,4,f +9390,3004,4,10,f +9390,3004,19,14,f +9390,3005,19,5,f +9390,3005,288,2,f +9390,3008,15,1,f +9390,3008,71,1,f +9390,3009,19,8,f +9390,3010,71,1,f +9390,3010,19,15,f +9390,30133,4,1,f +9390,30136,19,9,f +9390,30136,0,7,f +9390,30137,70,3,f +9390,3020,28,4,f +9390,3020,288,4,f +9390,3020,4,5,f +9390,3020,320,14,f +9390,3021,19,4,f +9390,3021,15,3,f +9390,3022,0,19,f +9390,3023,320,5,f +9390,3023,28,9,f +9390,3023,71,4,f +9390,3023,272,34,f +9390,3023,15,4,f +9390,3023,19,11,f +9390,3023,1,7,f +9390,3024,15,1,t +9390,3024,15,3,f +9390,3024,73,1,t +9390,3024,272,2,t +9390,3024,272,14,f +9390,3024,73,2,f +9390,3030,15,3,f +9390,3032,1,1,f +9390,3033,15,3,f +9390,3034,28,2,f +9390,30340,2,2,f +9390,3035,288,2,f +9390,3036,320,1,f +9390,3036,272,2,f +9390,30367c,4,1,f +9390,30374,297,1,f +9390,3040b,1,4,f +9390,3040b,70,4,f +9390,3040b,15,4,f +9390,3040b,19,2,f +9390,30414,0,2,f +9390,30414,1,3,f +9390,30503,71,2,f +9390,3062b,46,2,f +9390,3062b,272,4,f +9390,3062b,308,8,f +9390,3062b,47,2,f +9390,3062b,320,6,f +9390,3068b,15,8,f +9390,3069b,272,4,f +9390,3069b,15,15,f +9390,3069b,19,12,f +9390,3069b,1,1,f +9390,3070b,19,1,t +9390,3070b,19,16,f +9390,32028,4,17,f +9390,32062,4,12,f +9390,32123b,71,1,t +9390,32123b,71,7,f +9390,32249,71,4,f +9390,32556,19,2,f +9390,3298,71,2,f +9390,3298,0,5,f +9390,33057,484,1,f +9390,33078,4,1,f +9390,3308,272,2,f +9390,33125,484,2,f +9390,33291,70,1,t +9390,33291,10,4,f +9390,33291,10,1,t +9390,33291,70,3,f +9390,33299a,71,1,f +9390,3460,71,3,f +9390,3460,70,2,f +9390,3471,2,1,f +9390,3622,71,2,f +9390,3622,19,4,f +9390,3623,320,2,f +9390,3623,71,3,f +9390,3624,1,1,f +9390,3626cpr0388,14,1,f +9390,3626cpr0498,14,2,f +9390,3626cpr0580,14,1,f +9390,3626cpr0677,14,1,f +9390,3626cpr0752,14,1,f +9390,3626cpr0891,14,1,f +9390,3626cpr0892,14,1,f +9390,3626cpr0893,14,1,f +9390,3649,71,1,f +9390,3660,1,4,f +9390,3666,15,4,f +9390,3666,28,1,f +9390,3666,73,2,f +9390,3666,19,6,f +9390,3700,71,5,f +9390,3709,0,3,f +9390,3710,320,4,f +9390,3710,1,4,f +9390,3710,28,12,f +9390,3710,71,6,f +9390,3710,15,1,f +9390,3738,71,5,f +9390,3749,19,1,f +9390,3794b,72,1,f +9390,3794b,320,9,f +9390,3795,15,10,f +9390,3795,19,6,f +9390,3795,70,2,f +9390,3849,0,2,f +9390,3894,15,4,f +9390,3899,47,1,f +9390,3899,14,2,f +9390,3900,15,2,f +9390,3937,71,8,f +9390,3941,70,8,f +9390,3942c,0,2,f +9390,4032a,2,9,f +9390,4081b,19,8,f +9390,41334,0,1,f +9390,4162,320,5,f +9390,41879a,321,1,f +9390,41879a,71,1,f +9390,41879a,1,1,f +9390,41879a,4,1,f +9390,42446,0,1,t +9390,42446,0,4,f +9390,4274,1,8,f +9390,4274,1,1,t +9390,4287,288,4,f +9390,43093,1,12,f +9390,44728,19,12,f +9390,4477,0,2,f +9390,4491b,297,2,f +9390,4740,0,2,f +9390,48336,71,18,f +9390,48336,297,1,f +9390,48729b,0,1,t +9390,48729b,0,1,f +9390,50950,272,2,f +9390,51739,4,8,f +9390,51739,272,8,f +9390,54200,15,22,f +9390,54200,2,4,f +9390,54200,71,4,f +9390,54200,71,1,t +9390,54200,272,8,f +9390,54200,15,2,t +9390,54200,70,1,t +9390,54200,272,1,t +9390,54200,70,10,f +9390,54200,2,1,t +9390,55013,72,1,f +9390,59363,484,1,f +9390,59426,72,2,f +9390,59443,71,18,f +9390,59900,40,2,f +9390,59900,0,1,f +9390,59900,297,1,f +9390,60474,4,1,f +9390,60476,4,32,f +9390,60478,72,4,f +9390,60481,19,12,f +9390,60485,71,1,f +9390,60897,15,2,f +9390,6091,288,8,f +9390,6106,28,4,f +9390,61252,72,10,f +9390,61287,47,4,f +9390,6134,71,8,f +9390,6141,27,1,t +9390,6141,297,21,f +9390,6141,15,37,f +9390,6141,182,46,f +9390,6141,41,1,t +9390,6141,41,34,f +9390,6141,34,1,t +9390,6141,15,3,t +9390,6141,182,2,t +9390,6141,4,2,t +9390,6141,27,3,f +9390,6141,34,2,f +9390,6141,29,3,f +9390,6141,297,1,t +9390,6141,29,1,t +9390,6141,4,25,f +9390,61976,378,1,f +9390,6222,15,1,f +9390,62462,71,9,f +9390,6251pr0003,84,1,f +9390,62711,0,1,f +9390,62810,70,1,f +9390,64647,4,1,t +9390,64647,1,1,t +9390,64647,4,2,f +9390,64647,1,2,f +9390,6589,19,4,f +9390,6589,19,1,t +9390,6636,19,10,f +9390,6636,70,2,f +9390,6636,272,8,f +9390,75937,0,1,f +9390,76768,4,8,f +9390,87079,15,2,f +9390,87083,72,1,f +9390,87580,72,1,f +9390,87620,71,4,f +9390,87620,28,4,f +9390,87990,70,1,f +9390,88286,308,1,f +9390,88292,19,6,f +9390,88930,1,1,f +9390,89523,72,1,f +9390,90386,0,1,f +9390,91405,15,2,f +9390,91988,71,1,f +9390,92280,0,2,f +9390,92926,2,1,f +9390,93223,15,1,t +9390,93223,15,1,f +9390,93273,4,4,f +9390,93273,1,6,f +9390,93562,0,1,f +9390,93568pat0001,84,1,f +9390,95343,4,4,f +9390,96874,25,1,t +9390,970c00,272,1,f +9390,970c00,378,1,f +9390,970c00,4,1,f +9390,970c00,288,1,f +9390,970c00,0,1,f +9390,973pr1163c01,272,1,f +9390,973pr1166c01,272,1,f +9390,973pr1485c01,4,1,f +9390,973pr1573c01,15,1,f +9390,973pr1576c01,72,1,f +9390,973pr1772c01,10,1,f +9390,973pr1800c01,73,1,f +9390,973pr1801c01,25,1,f +9390,973pr1994c01,378,1,f +9390,98138,297,21,f +9390,98138,297,2,t +9390,98138,179,1,t +9390,98138,179,2,f +9390,98138pr0013,15,2,f +9390,98138pr0013,15,1,t +9390,98382pr0001,84,1,f +9390,99207,71,5,f +9390,99780,0,9,f +9394,3010,15,3,f +9394,3010,1,1,f +9394,3626b,47,1,f +9394,3741,2,1,f +9394,3742,14,3,f +9394,3742,14,1,t +9394,3852b,17,1,f +9394,3855,47,1,f +9394,4033,15,1,f +9394,45,383,1,f +9394,6176,20,1,f +9394,6179,1,1,f +9394,6180,13,1,f +9394,6182,15,2,f +9394,6182,1,2,f +9394,6191,1,1,f +9394,6251,15,1,f +9395,10247,71,4,f +9395,10247,72,4,f +9395,11153,4,2,f +9395,11203,71,2,f +9395,11215,0,1,f +9395,11289,52,1,f +9395,11407pr0107,27,1,f +9395,11458,15,2,f +9395,11477,4,2,f +9395,11477,27,1,f +9395,11816pr0103,78,1,f +9395,11816pr0104,78,1,f +9395,11816pr0113,78,1,f +9395,13547,71,2,f +9395,13608,179,3,f +9395,13965,19,1,f +9395,14716,19,1,f +9395,14719,71,2,f +9395,14719,15,2,f +9395,14769,191,2,f +9395,14769,30,1,f +9395,14769,27,1,f +9395,14769pr1058,14,1,f +9395,14769pr1059,4,1,f +9395,14769pr1061,1,1,f +9395,14769pr1069,5,1,f +9395,15068,2,2,f +9395,15068,0,2,f +9395,15068,15,4,f +9395,15392,72,2,t +9395,15392,72,3,f +9395,15395,179,1,f +9395,15403,15,2,f +9395,15403,0,1,f +9395,15533,84,4,f +9395,15573,19,1,f +9395,15573,0,3,f +9395,15573,26,2,f +9395,15712,71,1,f +9395,16968,71,1,f +9395,16985pr0102,85,1,f +9395,18649,191,2,f +9395,18649,0,2,f +9395,18653,191,4,f +9395,18654,72,1,t +9395,18654,72,2,f +9395,18674,72,3,f +9395,18674,322,1,f +9395,18677,71,6,f +9395,18853,29,1,f +9395,18853,29,1,t +9395,18920,179,1,f +9395,18920,179,1,t +9395,18980,4,2,f +9395,18980,15,2,f +9395,20482,47,1,t +9395,20482,47,1,f +9395,22388,45,1,t +9395,22388,45,1,f +9395,22885,71,2,f +9395,22886,15,2,f +9395,22888,15,4,f +9395,2357,15,2,f +9395,2412b,179,2,f +9395,2419,71,1,f +9395,2420,71,1,f +9395,2420,0,1,f +9395,24201,71,4,f +9395,24299,14,1,f +9395,24307,14,1,f +9395,2431,71,5,f +9395,2454a,15,4,f +9395,2454a,19,1,f +9395,2454b,31,1,f +9395,2460,71,1,f +9395,25269,322,2,f +9395,25269,322,1,t +9395,25269,15,2,t +9395,25269,15,4,f +9395,2654,71,4,f +9395,2654,15,2,f +9395,26597,15,5,f +9395,26599,71,1,f +9395,2780,0,2,t +9395,2780,0,6,f +9395,28907,321,1,f +9395,28907,4,1,f +9395,29435,226,1,f +9395,29723,4,1,f +9395,298c02,71,2,f +9395,298c02,71,1,t +9395,3002,15,2,f +9395,3002,19,1,f +9395,3004,4,2,f +9395,3004,15,7,f +9395,3004,31,2,f +9395,3005,4,2,f +9395,3005,52,2,f +9395,3005,84,4,f +9395,3005,15,8,f +9395,3005,19,2,f +9395,3010,15,4,f +9395,3020,15,2,f +9395,3020,19,2,f +9395,3020,72,3,f +9395,3020,4,1,f +9395,3021,2,4,f +9395,3021,0,1,f +9395,3021,71,1,f +9395,3021,15,1,f +9395,3022,71,2,f +9395,3023,2,1,f +9395,3023,30,1,f +9395,3023,0,4,f +9395,3023,45,16,f +9395,3023,4,1,f +9395,3023,15,10,f +9395,3023,71,15,f +9395,3023,27,1,f +9395,3024,41,2,f +9395,3024,15,1,t +9395,3024,41,1,t +9395,3024,15,2,f +9395,3031,4,1,f +9395,3034,2,2,f +9395,30350b,57,2,f +9395,30357,191,2,f +9395,30357,2,3,f +9395,30357,15,2,f +9395,3036,15,1,f +9395,30383,72,2,f +9395,30385,45,1,f +9395,3039,0,1,f +9395,30553,0,1,f +9395,30553,71,2,f +9395,30554a,0,1,f +9395,30562,15,2,f +9395,30562,41,2,f +9395,30602,27,1,f +9395,3062b,4,1,f +9395,3062b,321,1,f +9395,3062b,14,1,f +9395,3062b,297,1,f +9395,3065,41,2,f +9395,3068b,15,2,f +9395,3068b,19,1,f +9395,3068b,31,1,f +9395,3068b,322,1,f +9395,3069b,4,2,f +9395,3069b,84,1,f +9395,3069b,15,2,f +9395,3069bpr0179,4,1,f +9395,3070b,71,1,t +9395,3070b,71,1,f +9395,3070bpr0172,30,1,t +9395,3070bpr0172,30,2,f +9395,3176,15,1,f +9395,32028,72,2,f +9395,32028,2,1,f +9395,32039,0,2,f +9395,32062,4,2,f +9395,32062,0,1,f +9395,32235,191,1,t +9395,32235,191,2,f +9395,3245b,15,2,f +9395,32474,27,4,f +9395,33291,5,4,t +9395,33291,5,13,f +9395,33299a,71,4,f +9395,3456,19,2,f +9395,3460,15,5,f +9395,3623,15,2,f +9395,3623,14,1,f +9395,3660,15,4,f +9395,3660,0,2,f +9395,3666,71,7,f +9395,3666,4,2,f +9395,3673,71,2,f +9395,3673,71,1,t +9395,3679,71,1,f +9395,3680,15,1,f +9395,3701,72,2,f +9395,3705,0,2,f +9395,3710,4,3,f +9395,3710,15,7,f +9395,3710,71,5,f +9395,3795,72,1,f +9395,3795,15,2,f +9395,3832,71,1,f +9395,3894,4,4,f +9395,3899,45,2,f +9395,3937,71,3,f +9395,3938,0,2,f +9395,3941,71,3,f +9395,3958,19,2,f +9395,4032a,2,2,f +9395,40490,2,1,f +9395,41232stk01,9999,1,f +9395,41531,148,2,f +9395,42022,15,2,f +9395,4274,71,10,f +9395,4274,71,2,t +9395,4282,71,1,f +9395,4282,191,2,f +9395,43093,1,4,f +9395,43722,2,1,f +9395,43723,2,1,f +9395,43888,297,2,f +9395,43888,31,2,f +9395,44567a,0,2,f +9395,44661,0,2,f +9395,4519,71,3,f +9395,4533,71,6,f +9395,4536,15,1,f +9395,46212,41,4,f +9395,46667,52,2,f +9395,4733,0,2,f +9395,4733,27,1,f +9395,4733,15,3,f +9395,47457,71,1,f +9395,48092,15,8,f +9395,48092,84,2,f +9395,48336,71,2,f +9395,4865b,0,2,f +9395,48729b,71,1,f +9395,48729b,71,1,t +9395,51739,72,3,f +9395,52107,0,4,f +9395,54200,2,1,t +9395,54200,45,1,t +9395,54200,35,4,f +9395,54200,2,1,f +9395,54200,45,12,f +9395,54200,52,8,f +9395,54200,52,1,t +9395,54200,35,1,t +9395,55236,2,4,f +9395,55981,0,2,f +9395,59443,4,3,f +9395,59900,2,1,f +9395,6003,15,2,f +9395,60032,15,2,f +9395,60470a,71,1,f +9395,60474,71,1,f +9395,60475b,15,2,f +9395,60475b,71,4,f +9395,60475b,84,1,f +9395,60596,15,1,f +9395,60616a,41,1,f +9395,60897,85,4,f +9395,6111,15,1,f +9395,6134,71,1,f +9395,6134,0,2,f +9395,6141,35,3,f +9395,6141,179,2,t +9395,6141,179,20,f +9395,6141,0,1,t +9395,6141,29,1,f +9395,6141,35,1,t +9395,6141,70,2,t +9395,6141,19,1,t +9395,6141,0,2,f +9395,6141,19,1,f +9395,6141,70,6,f +9395,6141,2,3,t +9395,6141,2,9,f +9395,6141,29,1,t +9395,61485,15,1,f +9395,6180,0,1,f +9395,62462,15,2,f +9395,63864,71,2,f +9395,63965,71,2,f +9395,63965,15,1,f +9395,6541,72,2,f +9395,6558,1,3,f +9395,6636,15,4,f +9395,6636,27,1,f +9395,85080,15,4,f +9395,85861,71,2,f +9395,85861,71,1,t +9395,85941,15,2,f +9395,85984,191,2,f +9395,85984,15,2,f +9395,85984,19,1,f +9395,87079,15,1,f +9395,87079,322,3,f +9395,87079,10,2,f +9395,87079,4,4,f +9395,87079,71,1,f +9395,87083,72,2,f +9395,87087,27,1,f +9395,87087,19,1,f +9395,87544,41,16,f +9395,87552,47,1,f +9395,87580,28,2,f +9395,87926,15,2,f +9395,87994,71,1,t +9395,87994,71,1,f +9395,89201,0,2,f +9395,90258,72,1,f +9395,91988,19,1,f +9395,92220,179,4,f +9395,92259,191,1,f +9395,92280,0,2,f +9395,92338,179,2,f +9395,92410,4,1,f +9395,92410,321,6,f +9395,92456pr0203,78,1,f +9395,92456pr0204,10,1,f +9395,92456pr0208,78,1,f +9395,92820pr0100,4,1,f +9395,92946,0,2,f +9395,92947,15,4,f +9395,92950,15,4,f +9395,93095,19,1,f +9395,93095,0,1,f +9395,93274,71,1,f +9395,93549pat01,47,1,f +9395,96874,25,1,t +9395,98138,34,1,t +9395,98138,15,1,t +9395,98138,36,1,f +9395,98138,41,4,f +9395,98138,15,1,f +9395,98138,34,1,f +9395,98138,41,1,t +9395,98138,36,1,t +9395,98138pr0027,15,1,f +9395,98138pr0027,15,1,t +9395,98138pr0049,0,1,f +9395,98138pr0049,0,1,t +9396,4629c01,1,1,f +9398,14728c30,0,1,f +9398,2376,0,1,f +9398,2419,1,2,f +9398,2431,308,7,f +9398,2453a,72,8,f +9398,2454a,71,1,f +9398,2489,308,1,f +9398,2530,72,4,f +9398,2540,2,2,f +9398,2562,70,1,f +9398,2921,70,1,f +9398,3001,71,2,f +9398,3003,28,1,f +9398,3008,70,4,f +9398,3009,71,2,f +9398,30093,288,2,f +9398,30115,4,1,f +9398,30136,72,20,f +9398,30137,71,10,f +9398,30145,71,2,f +9398,30176,2,2,f +9398,3020,72,1,f +9398,3022,71,4,f +9398,3023,19,4,f +9398,30237a,72,2,f +9398,3032,70,1,f +9398,3034,2,1,f +9398,3035,2,1,f +9398,3035,72,1,f +9398,3037,71,1,f +9398,30386,71,8,f +9398,30386,0,24,f +9398,3039,72,8,f +9398,3045,71,4,f +9398,3062b,71,13,f +9398,3062bpr0001,320,1,f +9398,3068b,28,2,f +9398,3069b,308,1,f +9398,3070bpr0058,272,1,t +9398,3070bpr0058,272,1,f +9398,32001,71,4,f +9398,32028,28,14,f +9398,32064b,2,2,f +9398,32271,72,1,f +9398,3245c,71,8,f +9398,32530,72,1,f +9398,32556,19,1,f +9398,3298,71,3,f +9398,3308,71,2,f +9398,3622,70,1,f +9398,3626bpr0789,78,1,f +9398,3626bpr0801,78,1,f +9398,3626bpr0805,78,1,f +9398,3626bpr0841,378,1,f +9398,3659,71,6,f +9398,3666,72,5,f +9398,3707,0,1,f +9398,3710,70,3,f +9398,3794b,70,2,f +9398,3795,308,20,f +9398,3795,28,10,f +9398,3839b,0,1,f +9398,3937,0,1,f +9398,3941,70,16,f +9398,3960,297,1,f +9398,4032a,72,16,f +9398,4032a,297,4,f +9398,41539,2,1,f +9398,44294,71,4,f +9398,4460b,70,2,f +9398,4589,70,1,f +9398,4644158,9999,1,t +9398,4738a,70,1,f +9398,4739a,70,1,f +9398,54200,72,2,t +9398,54200,72,13,f +9398,59443,70,2,f +9398,6020,0,1,f +9398,60478,0,2,f +9398,60483,0,2,f +9398,60808,71,5,f +9398,60849,71,1,f +9398,6112,71,2,f +9398,6134,4,1,f +9398,6141,71,13,f +9398,6141,41,1,t +9398,6141,41,2,f +9398,6141,71,2,t +9398,6222,72,1,f +9398,62808,72,2,f +9398,63868,71,1,f +9398,64648,179,1,f +9398,6587,28,2,f +9398,85984,71,3,f +9398,87079,70,3,f +9398,88283,308,1,f +9398,92280,4,2,f +9398,95221pr0001,0,1,f +9398,95226,308,1,f +9398,95228,40,1,f +9398,95343,70,1,f +9398,95344,28,1,f +9398,95344,28,1,t +9398,95348,308,2,f +9398,96223pr0001,28,1,f +9398,970c00,308,1,f +9398,970c00pr0218,70,1,f +9398,970c00pr0236,72,1,f +9398,970c00pr0257,28,1,f +9398,973pr1771c01,272,1,f +9398,973pr1789c01,71,1,f +9398,973pr1792c01,272,1,f +9398,973pr1839c01,378,1,f +9400,3001a,1,2,f +9400,3003,1,4,f +9400,3004,1,8,f +9400,3004,15,14,f +9400,3005,1,2,f +9400,3005,15,8,f +9400,3008,1,18,f +9400,3009,1,2,f +9400,3009,15,5,f +9400,3010,15,8,f +9400,3010,1,10,f +9400,3020,4,1,f +9400,3020,1,1,f +9400,3020,15,3,f +9400,3020,47,1,f +9400,3021,47,1,f +9400,3021,15,7,f +9400,3022,15,14,f +9400,3022,1,1,f +9400,3022,4,1,f +9400,3023,1,2,f +9400,3023,15,40,f +9400,3023,47,19,f +9400,3024,15,86,f +9400,3024,47,92,f +9400,3032,4,2,f +9400,3032,15,9,f +9400,3034,4,3,f +9400,3040a,15,4,f +9400,3062a,15,1,f +9400,3062a,4,4,f +9400,3069b,4,8,f +9400,3069b,15,1,f +9400,3456,1,3,f +9400,3460,15,28,f +9400,3479,15,1,f +9400,3623,15,26,f +9400,3660,1,5,f +9400,3660,15,2,f +9400,3665,1,8,f +9400,3665,15,4,f +9400,3710,4,2,f +9400,3710,15,20,f +9400,3710,47,24,f +9400,3710,1,2,f +9401,11260pr0003,0,1,f +9401,11265pr0003,0,1,f +9401,11439pat0003,33,1,f +9401,11597pr0001,41,1,f +9401,11597pr0002,41,1,f +9401,3626cpr1840,0,1,f +9401,88646,0,1,f +9401,970c00pr1000,0,1,f +9401,973pr3228c01,0,1,f +9402,11203,19,2,f +9402,11211,4,6,f +9402,12825,0,4,f +9402,2335,1,1,f +9402,2496,0,2,f +9402,2584,0,1,f +9402,2585,71,1,f +9402,2655,71,2,f +9402,2730,0,2,f +9402,2817,4,3,f +9402,3003,70,7,f +9402,3003,4,2,f +9402,3004,15,20,f +9402,3004,70,19,f +9402,3005,15,10,f +9402,3005,70,3,f +9402,30055,70,2,f +9402,3009,15,3,f +9402,3010,70,4,f +9402,3010,15,2,f +9402,3020,70,8,f +9402,3021,288,7,f +9402,3022,1,2,f +9402,3023,15,1,f +9402,3023,70,11,f +9402,3024,1,1,t +9402,3024,2,4,f +9402,3024,15,1,f +9402,3024,1,1,f +9402,3024,2,1,t +9402,3024,15,1,t +9402,3027,1,1,f +9402,3031,19,2,f +9402,3031,70,4,f +9402,3036,28,2,f +9402,30374,71,2,f +9402,30377,72,1,t +9402,30377,72,3,f +9402,30383,0,1,f +9402,3039,70,4,f +9402,3039,4,8,f +9402,30395,72,1,f +9402,30503,19,4,f +9402,3068bpr0139a,19,1,f +9402,3069b,71,15,f +9402,3070b,72,8,f +9402,3070b,70,4,f +9402,3070b,72,1,t +9402,3070b,70,1,t +9402,32270,0,1,f +9402,33320,2,1,f +9402,3626cpr0677,14,1,f +9402,3665,308,10,f +9402,3666,15,3,f +9402,3673,71,2,f +9402,3673,71,1,t +9402,3713,71,1,f +9402,3713,71,1,t +9402,3795,308,3,f +9402,3795,2,5,f +9402,3795,19,1,f +9402,3957b,15,1,f +9402,3958,19,1,f +9402,3962b,0,1,f +9402,4032a,288,3,f +9402,4032a,2,13,f +9402,4150p02,14,1,f +9402,41879a,71,1,f +9402,4274,1,1,t +9402,4274,1,5,f +9402,4286,70,7,f +9402,4445,4,3,f +9402,4460b,70,2,f +9402,4490,15,1,f +9402,48336,0,2,f +9402,4865b,14,3,f +9402,4865b,4,2,f +9402,54200,70,1,t +9402,54200,4,2,f +9402,54200,70,14,f +9402,54200,4,1,t +9402,56823c50,0,1,f +9402,59230,19,2,f +9402,59230,19,1,t +9402,59443,70,1,f +9402,59900,4,2,f +9402,60592,19,3,f +9402,60594,19,1,f +9402,60601,47,3,f +9402,60603,47,1,f +9402,6141,14,3,f +9402,6141,27,1,t +9402,6141,33,2,f +9402,6141,14,1,t +9402,6141,27,15,f +9402,6141,33,1,t +9402,62113,72,2,f +9402,6231,14,4,f +9402,6231,4,4,f +9402,63868,0,2,f +9402,64644,297,1,f +9402,6541,0,1,f +9402,6558,1,1,f +9402,6636,71,1,f +9402,76768,70,6,f +9402,86035,4,1,f +9402,87083,72,2,f +9402,91405,10,1,f +9402,92593,71,6,f +9402,92926,71,1,f +9402,973c07,1,1,f +9402,98138,71,1,t +9402,98138,71,7,f +9403,2335,15,1,f +9403,2412b,72,2,f +9403,2420,0,2,f +9403,2431,15,2,f +9403,2446pr30,0,1,f +9403,2446pr31,15,1,f +9403,2489,72,1,f +9403,2547,72,1,f +9403,2548,72,1,f +9403,2654,1,6,f +9403,30000,71,1,f +9403,3003,15,1,f +9403,30033,15,1,f +9403,3004,15,2,f +9403,3008,4,2,f +9403,3010,4,3,f +9403,3020,0,4,f +9403,3020,72,3,f +9403,3023,71,2,f +9403,3023,0,6,f +9403,3023,1,1,f +9403,3032,72,2,f +9403,30377,71,1,f +9403,30377,71,1,t +9403,3039,71,2,f +9403,30602,72,1,f +9403,3068b,0,3,f +9403,32000,72,1,f +9403,32039,0,2,f +9403,32062,0,2,f +9403,32123b,14,5,f +9403,32123b,14,1,t +9403,32249,71,2,f +9403,32530,72,1,f +9403,3460,15,2,f +9403,3623,15,2,f +9403,3626bpr0662,14,1,f +9403,3626bpr0668,14,1,f +9403,3660,0,2,f +9403,3665,15,2,f +9403,3666,4,2,f +9403,3666,0,1,f +9403,3676,0,2,f +9403,3701,71,2,f +9403,3701,15,2,f +9403,3705,0,3,f +9403,3710,0,2,f +9403,3710,15,3,f +9403,3794b,4,4,f +9403,3795,15,1,f +9403,3829c01,14,1,f +9403,3829c01,0,1,f +9403,3832,0,1,f +9403,3937,4,1,f +9403,3938,71,1,f +9403,3942c,4,1,f +9403,3957a,15,1,f +9403,4079b,0,1,f +9403,4081b,0,2,f +9403,4162,15,4,f +9403,41677,15,3,f +9403,41769,0,1,f +9403,41770,0,1,f +9403,42023,71,2,f +9403,42023,4,2,f +9403,42023,15,2,f +9403,42610,71,4,f +9403,4287,71,2,f +9403,43093,1,2,f +9403,43337,15,2,f +9403,43722,15,2,f +9403,43723,15,2,f +9403,44661,0,1,f +9403,45590,0,1,f +9403,45677,4,1,f +9403,47406,0,1,f +9403,47407,0,1,f +9403,47457,4,2,f +9403,4854,15,1,f +9403,4855,15,2,f +9403,49668,135,6,f +9403,50943,71,1,f +9403,52501,0,2,f +9403,54200,27,1,t +9403,54200,27,2,f +9403,59443,0,1,f +9403,59900,36,1,f +9403,60219,0,1,f +9403,6117,72,2,f +9403,61409,72,4,f +9403,6141,36,1,t +9403,6141,36,5,f +9403,6153b,15,1,f +9403,62695,135,1,f +9403,63864,0,2,f +9403,64648,135,1,f +9403,6536,27,1,f +9403,6558,1,4,f +9403,87079,4,1,f +9403,87087,0,2,f +9403,8897stk01,9999,1,t +9403,89801,80,1,f +9403,970c00pr0151,15,1,f +9403,970x026,72,1,f +9403,973pr1587c01,0,1,f +9403,973pr1603c01,27,1,f +9404,2362a,15,1,f +9404,2412b,15,1,f +9404,2432,7,1,f +9404,2436,15,1,f +9404,2454a,15,4,f +9404,2508,0,1,f +9404,2540,7,1,f +9404,2873,7,1,f +9404,3003,14,1,f +9404,3004,6,1,f +9404,3004,15,1,f +9404,3004,14,1,f +9404,3005,15,8,f +9404,3008,7,2,f +9404,3010,7,1,f +9404,3020,7,1,f +9404,3021,15,3,f +9404,3021,0,1,f +9404,3022,7,1,f +9404,3023,15,4,f +9404,3023,13,6,f +9404,3023,0,1,f +9404,3023,7,3,f +9404,3024,13,2,f +9404,3024,15,4,f +9404,3024,36,2,f +9404,3031,7,1,f +9404,3034,7,1,f +9404,3069b,6,1,f +9404,3069b,15,2,f +9404,3070b,15,2,f +9404,3308,15,2,f +9404,3455,15,2,f +9404,3460,15,2,f +9404,3623,7,2,f +9404,3623,13,2,f +9404,3626bp07,14,1,f +9404,3626bpr0001,14,1,f +9404,3641,0,2,f +9404,3666,13,2,f +9404,3710,15,1,f +9404,3710,7,1,f +9404,3730,0,1,f +9404,3788,15,1,f +9404,3788,7,1,f +9404,3795,0,2,f +9404,3823,41,1,f +9404,3829c01,15,1,f +9404,3833,0,1,f +9404,3865,17,1,f +9404,4211,15,1,f +9404,4315,7,1,f +9404,4491b,4,1,f +9404,4493c01pb01,6,1,f +9404,4515p03,7,2,f +9404,4523,0,1,f +9404,4600,0,3,f +9404,4624,7,2,f +9404,4859,13,1,f +9404,4864a,15,6,f +9404,4864ap04,15,2,f +9404,6014a,7,4,f +9404,6015,0,4,f +9404,6079,13,1,f +9404,6081,15,4,f +9404,6091,15,2,f +9404,6093,4,1,f +9404,6141,46,2,f +9404,6141,15,2,f +9404,970c00,7,1,f +9404,973p12c01,4,1,f +9404,973pb0039c01,13,1,f +9405,10888,71,1,f +9405,12053,15,1,f +9405,12057,15,1,f +9405,12058,86,1,f +9405,12062,308,1,f +9405,12147,71,1,f +9405,12602,14,1,f +9405,13355,0,1,f +9405,14013,71,1,f +9405,16874,15,1,f +9405,31042,179,1,f +9405,31110,4,4,f +9405,3437,191,3,f +9405,3437,4,2,f +9405,3437,14,2,f +9405,3437,484,1,f +9405,40666,71,1,f +9405,44524,14,1,f +9405,47451,191,1,f +9405,47511pr0001,15,1,f +9405,51260,4,2,f +9405,51261,4,2,f +9405,51262,70,2,f +9405,51704,4,1,f +9405,58057pr01,19,1,f +9405,58086,70,1,f +9405,58498,0,1,f +9405,59559,71,1,f +9405,61896,484,1,f +9405,63710pr0003,19,1,f +9405,6510,5,1,f +9405,6510,2,1,f +9405,74965,10,2,f +9405,75121,26,1,f +9405,76371,4,6,f +9405,87321,2,2,f +9405,87322,4,2,f +9405,87654,14,2,f +9405,87971,1,1,f +9405,89849,15,2,f +9405,90265,15,2,f +9405,98459,70,2,f +9405,98460,70,4,f +9408,2419,71,1,f +9408,2431,71,3,f +9408,2555,72,2,f +9408,3021,71,4,f +9408,3022,71,4,f +9408,3023,47,3,f +9408,3023,71,4,f +9408,3024,72,2,f +9408,3024,71,2,f +9408,3034,71,1,f +9408,3034,72,2,f +9408,3068b,71,7,f +9408,3069b,71,4,f +9408,3069b,72,4,f +9408,3070b,72,4,f +9408,32064b,71,1,f +9408,32269,0,1,f +9408,3460,72,2,f +9408,3623,71,1,f +9408,3623,72,2,f +9408,3794b,71,2,f +9408,3795,71,1,f +9408,4032a,0,2,f +9408,4150,0,2,f +9408,44302a,72,2,f +9408,4617b,0,1,f +9408,54200,47,2,f +9408,54200,71,13,f +9408,6019,71,2,f +9408,60478,72,2,f +9408,6141,0,2,f +9408,6587,28,1,f +9408,87087,71,2,f +9409,30153,46,1,t +9409,30153,46,1,f +9409,30153,47,1,f +9409,30153,36,1,t +9409,30153,47,1,t +9409,30153,36,1,f +9409,4738a,70,1,f +9409,4739a,70,1,f +9410,2418bpx1,42,1,f +9410,2419,8,2,f +9410,2420,4,2,f +9410,30014,0,4,f +9410,3004,6,3,f +9410,30198,8,1,f +9410,3020,4,1,f +9410,30200,0,1,f +9410,30202,8,1,f +9410,3022,4,1,f +9410,3022,0,2,f +9410,3023,6,4,f +9410,3035,8,2,f +9410,30385,383,1,f +9410,3040b,8,6,f +9410,3063b,8,2,f +9410,3068b,7,1,f +9410,3068bpx14,0,1,f +9410,3612,6,2,f +9410,3626bpx113,14,1,f +9410,3660,8,2,f +9410,3795,8,1,f +9410,3795,0,1,f +9410,412,42,6,f +9410,4220,0,1,f +9410,4221,0,4,f +9410,4345b,42,1,f +9410,4346px6,42,1,f +9410,4590,0,4,f +9410,4623,4,1,f +9410,4735,0,2,f +9410,59275,7,2,f +9410,6041,0,3,f +9410,6064,4,1,f +9410,6141,42,1,t +9410,6141,42,4,f +9410,6217,4,3,f +9410,970x026,6,1,f +9410,973px169c01,8,1,f +9414,10172,179,1,f +9414,10172,297,1,f +9414,10201,71,21,f +9414,10830pat0001,0,1,f +9414,11153,71,4,f +9414,11153,4,2,f +9414,11215,71,4,f +9414,11399,72,1,f +9414,11477,19,8,f +9414,11477,0,2,f +9414,13786pr0002,484,1,f +9414,14137,0,2,f +9414,14395,19,4,f +9414,14769,71,4,f +9414,15068,0,9,f +9414,15068,71,4,f +9414,15082,0,1,f +9414,15207,0,2,f +9414,15392,72,2,f +9414,15403,0,2,f +9414,15491,19,1,f +9414,15571,0,1,f +9414,15573,70,9,f +9414,15573,320,2,f +9414,15573,72,10,f +9414,15573,4,1,f +9414,15573,71,7,f +9414,15573,2,2,f +9414,15573,0,24,f +9414,15573,297,12,f +9414,15573,19,4,f +9414,15672,72,2,f +9414,15672,0,2,f +9414,15712,0,1,f +9414,15712,72,4,f +9414,15712,71,4,f +9414,15712,297,1,f +9414,15712,4,1,f +9414,15790,0,1,f +9414,18654,72,4,f +9414,18976,179,4,f +9414,18977,0,4,f +9414,19185,272,1,f +9414,20482,297,4,f +9414,23421,297,2,f +9414,23422,72,2,f +9414,2357,0,4,f +9414,2412b,4,4,f +9414,2412b,179,1,f +9414,2412b,71,5,f +9414,2412b,297,25,f +9414,2417,2,2,f +9414,2420,72,2,f +9414,2420,71,4,f +9414,2420,70,2,f +9414,2423,2,2,f +9414,2431,84,25,f +9414,2431,0,1,f +9414,2431,71,8,f +9414,2431,72,2,f +9414,2431,25,6,f +9414,2432,4,2,f +9414,2445,71,2,f +9414,2445,72,1,f +9414,2449,15,8,f +9414,2460,0,1,f +9414,2460,72,3,f +9414,2460,71,2,f +9414,2476a,28,16,f +9414,2479,0,1,f +9414,2540,19,1,f +9414,2546,72,2,f +9414,26423,9999,1,t +9414,2736,71,2,f +9414,2780,0,9,f +9414,2817,71,4,f +9414,2877,71,1,f +9414,298c02,4,1,f +9414,298c02,71,1,f +9414,30000,72,2,f +9414,3001,72,9,f +9414,3001,4,1,f +9414,3001,28,6,f +9414,30029,4,2,f +9414,3003,70,2,f +9414,3003,14,2,f +9414,3003,72,1,f +9414,3003,28,20,f +9414,3003,15,4,f +9414,3003,71,10,f +9414,30031,71,2,f +9414,3004,28,26,f +9414,3004,71,10,f +9414,3004,14,1,f +9414,3004,0,3,f +9414,3004,15,7,f +9414,3005,28,16,f +9414,3005,70,16,f +9414,3005,71,2,f +9414,3009,28,3,f +9414,3010,28,3,f +9414,3010,14,4,f +9414,30103,0,8,f +9414,30136,72,2,f +9414,30136,15,8,f +9414,30145,71,2,f +9414,30165,4,2,f +9414,30192,72,2,f +9414,3020,19,9,f +9414,3020,72,7,f +9414,3020,28,8,f +9414,3021,72,1,f +9414,3021,28,6,f +9414,3021,4,2,f +9414,3021,71,4,f +9414,3022,72,10,f +9414,3022,71,3,f +9414,3022,19,32,f +9414,3022,0,4,f +9414,3022,70,7,f +9414,3022,84,3,f +9414,3022,15,1,f +9414,3023,47,4,f +9414,3023,25,11,f +9414,3023,378,20,f +9414,3023,191,4,f +9414,3023,0,7,f +9414,3023,15,1,f +9414,3023,71,13,f +9414,3023,28,40,f +9414,3023,4,11,f +9414,3024,19,28,f +9414,3024,70,2,f +9414,3024,0,4,f +9414,3024,46,2,f +9414,3024,71,6,f +9414,3024,25,4,f +9414,30248,15,1,f +9414,3029,28,2,f +9414,3031,71,1,f +9414,3032,0,1,f +9414,3032,15,1,f +9414,3034,0,10,f +9414,3034,71,2,f +9414,3034,4,1,f +9414,3034,72,6,f +9414,3034,28,2,f +9414,3035,70,1,f +9414,3035,2,2,f +9414,3035,4,1,f +9414,30367c,0,1,f +9414,30367c,4,4,f +9414,30374,70,1,f +9414,30374,297,2,f +9414,30377,71,1,f +9414,3039,4,1,f +9414,3039,19,7,f +9414,3039,70,1,f +9414,3040b,4,4,f +9414,3040b,25,8,f +9414,3040b,28,46,f +9414,30414,72,12,f +9414,30553,0,1,f +9414,30602,47,4,f +9414,3062b,47,4,f +9414,3062b,42,1,f +9414,3062b,34,1,f +9414,3062b,36,1,f +9414,3068b,28,25,f +9414,3068b,72,1,f +9414,3068b,71,10,f +9414,3068b,4,1,f +9414,3069b,4,1,f +9414,3069b,71,12,f +9414,3069b,28,6,f +9414,3069b,70,6,f +9414,3069b,484,30,f +9414,3069b,0,14,f +9414,3069b,15,2,f +9414,3069b,19,45,f +9414,3069b,25,1,f +9414,3069b,84,22,f +9414,3069b,72,2,f +9414,3069bp02,71,9,f +9414,3069bpr0086,71,10,f +9414,3070b,71,8,f +9414,3070b,70,1,f +9414,3070b,484,16,f +9414,3070b,4,4,f +9414,32002,19,2,f +9414,32014,14,2,f +9414,32016,0,2,f +9414,32028,70,12,f +9414,32039,14,2,f +9414,32054,71,8,f +9414,32062,4,4,f +9414,32064a,72,4,f +9414,32073,71,1,f +9414,32123b,14,1,f +9414,32187,179,1,f +9414,32524,14,1,f +9414,3298,28,6,f +9414,33299a,71,1,f +9414,3460,71,6,f +9414,3460,72,2,f +9414,3460,70,7,f +9414,3622,0,4,f +9414,3623,71,3,f +9414,3626b,19,2,f +9414,3626b,47,2,f +9414,3626c,41,1,f +9414,3626c,57,1,f +9414,3626cpr1180,78,1,f +9414,3626cpr1515,78,1,f +9414,3626cpr1699,78,1,f +9414,3633,72,6,f +9414,3660,0,12,f +9414,3665,28,12,f +9414,3665,0,8,f +9414,3666,0,2,f +9414,3666,72,2,f +9414,3666,15,2,f +9414,3666,19,6,f +9414,3673,71,1,f +9414,3675,28,2,f +9414,3676,0,4,f +9414,3678b,71,2,f +9414,3678b,15,2,f +9414,3700,19,12,f +9414,3701,72,6,f +9414,3703,71,6,f +9414,3705,4,4,f +9414,3705,0,1,f +9414,3708,0,4,f +9414,3709,4,2,f +9414,3710,72,4,f +9414,3710,15,2,f +9414,3710,484,8,f +9414,3710,70,5,f +9414,3710,71,9,f +9414,3749,19,6,f +9414,3795,72,4,f +9414,3795,19,2,f +9414,3795,28,10,f +9414,3829c01,4,1,f +9414,3830,72,4,f +9414,3831,72,4,f +9414,3878,31,1,f +9414,3894,72,2,f +9414,3937,15,4,f +9414,3937,0,14,f +9414,3938,0,7,f +9414,3941,0,8,f +9414,3941,71,36,f +9414,3957b,71,1,f +9414,3960,0,1,f +9414,4032a,4,2,f +9414,4032a,72,1,f +9414,4070,71,3,f +9414,4079,72,1,f +9414,4162,4,2,f +9414,4162,70,4,f +9414,41747,28,13,f +9414,41748,28,9,f +9414,41879a,0,1,f +9414,42003,14,2,f +9414,4216,70,6,f +9414,42610,71,2,f +9414,4274,1,8,f +9414,4282,19,26,f +9414,4282,71,1,f +9414,4282,15,2,f +9414,4282,72,3,f +9414,4286,19,22,f +9414,4286,4,2,f +9414,4286,28,6,f +9414,4287,0,2,f +9414,43710,28,13,f +9414,43711,28,11,f +9414,43722,28,8,f +9414,43723,28,6,f +9414,43898,0,1,f +9414,44300,71,1,f +9414,44301a,0,2,f +9414,44568,71,1,f +9414,4460b,28,12,f +9414,44728,0,2,f +9414,44728,71,1,f +9414,44728,72,15,f +9414,4515,71,2,f +9414,4519,71,2,f +9414,4533,15,1,f +9414,4536,84,4,f +9414,4599b,0,2,f +9414,4697b,71,3,f +9414,47397,71,5,f +9414,47398,71,5,f +9414,4740,72,1,f +9414,4740,71,1,f +9414,47457,14,8,f +9414,47905,19,3,f +9414,48336,0,2,f +9414,4865b,71,11,f +9414,4871,0,6,f +9414,48729b,71,1,f +9414,48729b,0,8,f +9414,50304,28,5,f +9414,50305,28,5,f +9414,50859b,179,1,f +9414,50861,0,2,f +9414,50862,71,2,f +9414,50947,0,1,f +9414,50950,0,2,f +9414,50955,28,2,f +9414,50956,28,2,f +9414,51739,0,2,f +9414,51739,28,6,f +9414,51739,71,12,f +9414,54200,25,4,f +9414,54200,28,73,f +9414,54200,47,6,f +9414,54200,19,2,f +9414,54383,28,6,f +9414,54384,28,6,f +9414,55706,0,2,f +9414,56823c50,0,1,f +9414,58176,35,1,f +9414,58176,36,1,f +9414,59230,0,5,f +9414,59443,14,2,f +9414,59900,179,6,f +9414,59900,70,4,f +9414,59900,297,2,f +9414,59900,0,2,f +9414,60032,0,2,f +9414,60470a,15,1,f +9414,60471,71,4,f +9414,60476,15,2,f +9414,60478,0,1,f +9414,60478,72,8,f +9414,60479,0,1,f +9414,60481,15,8,f +9414,60594,19,8,f +9414,60608,0,16,f +9414,6063,72,1,f +9414,6082,28,4,f +9414,60897,19,4,f +9414,60897,71,12,f +9414,60897,0,8,f +9414,6091,0,1,f +9414,6106,28,7,f +9414,61184,71,5,f +9414,61252,19,1,f +9414,61287pr0001,28,1,f +9414,61287pr0002,28,1,f +9414,6134,71,6,f +9414,6134,0,5,f +9414,61409,4,2,f +9414,61409,72,2,f +9414,6141,179,1,f +9414,6141,0,13,f +9414,6141,36,8,f +9414,6141,47,2,f +9414,6141,297,10,f +9414,6141,34,1,f +9414,61482,71,1,f +9414,61780,70,2,f +9414,61780,72,3,f +9414,6183,0,1,f +9414,6187,378,15,f +9414,6190,4,2,f +9414,6205,484,2,f +9414,6231,71,2,f +9414,6231,4,6,f +9414,6239,15,1,f +9414,62462,14,5,f +9414,62462,179,4,f +9414,63864,0,6,f +9414,63864,25,4,f +9414,63864,71,2,f +9414,63868,72,4,f +9414,63965,0,5,f +9414,63965,297,2,f +9414,64648,179,1,f +9414,64728,4,3,f +9414,64798,15,1,f +9414,64798,27,1,f +9414,64867,28,10,f +9414,6564,0,1,f +9414,6565,0,1,f +9414,6636,70,2,f +9414,6636,72,3,f +9414,6636,28,8,f +9414,73983,71,4,f +9414,85861,71,3,f +9414,85983,0,1,f +9414,85984,0,9,f +9414,85984,71,19,f +9414,85984,28,37,f +9414,85984,72,3,f +9414,85984,4,2,f +9414,87079,2,1,f +9414,87079,14,2,f +9414,87079,15,1,f +9414,87079,70,2,f +9414,87079,0,2,f +9414,87079,71,19,f +9414,87087,70,11,f +9414,87552,70,4,f +9414,87552,71,2,f +9414,87580,70,1,f +9414,87994,0,2,f +9414,87994,71,4,f +9414,88072,19,8,f +9414,88704,0,1,f +9414,89801,71,1,f +9414,90498,72,2,f +9414,91176,19,16,f +9414,91405,28,6,f +9414,91405,71,1,f +9414,91405,72,1,f +9414,91988,19,4,f +9414,92081,84,1,f +9414,92409,0,2,f +9414,92410,70,2,f +9414,92410,71,1,f +9414,92438,71,1,f +9414,93273,0,2,f +9414,93274,71,4,f +9414,93274,0,2,f +9414,93549pat01,47,4,f +9414,93606,0,1,f +9414,95120,72,2,f +9414,95228,47,2,f +9414,95347,4,1,f +9414,96874,25,1,t +9414,970c00,10,1,f +9414,970c00,272,2,f +9414,970c00,0,2,f +9414,973pr2308c01,0,1,f +9414,98138,36,1,f +9414,98138,46,1,f +9414,98138pr0012,179,8,f +9414,98138pr0041,179,4,f +9414,98282,4,4,f +9414,98283,71,9,f +9414,98560,15,6,f +9414,98721,0,3,f +9414,99206,0,1,f +9414,99206,71,16,f +9414,99207,71,60,f +9414,99207,4,5,f +9414,99464,14,1,f +9414,99780,71,23,f +9414,99780,72,21,f +9414,99781,71,9,f +9414,99930,0,2,f +9414,99930,308,1,f +9415,194cx1,7,1,f +9415,2348b,33,1,f +9415,2349a,15,1,f +9415,2412b,0,2,f +9415,2412b,36,2,f +9415,2432,15,1,f +9415,2436,7,2,f +9415,2447,0,1,f +9415,2877,15,2,f +9415,2926,7,3,f +9415,3003,7,1,f +9415,3005,15,3,f +9415,3008,14,2,f +9415,3009,15,1,f +9415,30094,0,1,f +9415,30187c01,14,1,f +9415,30189,15,1,f +9415,30190,15,1,f +9415,3020,15,2,f +9415,3023,14,2,f +9415,3023,42,2,f +9415,3023,1,2,f +9415,30259p01,14,1,f +9415,30283,7,2,f +9415,3029,0,1,f +9415,3031,19,1,f +9415,3039pc2,15,1,f +9415,3069b,4,2,f +9415,3069bp09,15,2,f +9415,32083,7,2,f +9415,3622,15,1,f +9415,3626bp03,14,1,f +9415,3626bpx24,14,1,f +9415,3666,15,2,f +9415,3679,7,1,f +9415,3680,0,1,f +9415,3710,15,4,f +9415,3794a,14,1,f +9415,3794a,4,1,f +9415,3795,15,1,f +9415,3829c01,7,2,f +9415,3834,15,1,f +9415,3835,7,1,f +9415,3838,15,1,f +9415,3957a,15,2,f +9415,3959,0,1,f +9415,4070,14,6,f +9415,4176,33,1,f +9415,4315,15,1,f +9415,4485,4,1,f +9415,4589,33,1,f +9415,4589,36,2,f +9415,4599a,4,1,f +9415,4865a,33,2,f +9415,4865a,15,2,f +9415,5102c12,0,1,f +9415,6014,15,8,f +9415,6015,0,9,f +9415,6019,0,2,f +9415,6091,14,2,f +9415,6112,0,2,f +9415,6141,36,3,f +9415,6141,42,1,f +9415,6158,8,1,f +9415,6459stk01,9999,1,t +9415,970c00,4,1,f +9415,970x026,7,1,f +9415,973p29c01,7,1,f +9415,973pb0059c01,4,1,f +9417,3001a,14,2,f +9417,3001a,4,2,f +9417,3002a,14,1,f +9417,3003,4,1,f +9417,3003,0,4,f +9417,3003,14,1,f +9417,3004,4,4,f +9417,3004,14,7,f +9417,3005,4,2,f +9417,3009,4,1,f +9417,3010,4,6,f +9417,3010,0,6,f +9417,3020,14,13,f +9417,3020,4,2,f +9417,3020,1,1,f +9417,3021,14,4,f +9417,3022,1,6,f +9417,3022,4,2,f +9417,3022,0,2,f +9417,3023,14,2,f +9417,3023,4,1,f +9417,3024,14,4,f +9417,3024,4,4,f +9417,3027,0,4,f +9417,3029,14,1,f +9417,3030,14,1,f +9417,3031,14,3,f +9417,3031,0,2,f +9417,3032,0,2,f +9417,3034,0,14,f +9417,3039,4,2,f +9417,3039,14,2,f +9417,3040a,0,8,f +9417,3068b,14,1,f +9417,3139,0,1,f +9417,3464,4,1,f +9417,3482,7,4,f +9417,3483,0,4,f +9417,3623,14,2,f +9417,3647,7,3,f +9417,3648a,7,2,f +9417,3650a,7,3,f +9417,3651,7,36,f +9417,3660,4,1,f +9417,3660,0,2,f +9417,3660,14,3,f +9417,3665,1,2,f +9417,3665,14,2,f +9417,3666,0,2,f +9417,3673,7,43,f +9417,3700,14,22,f +9417,3700,1,4,f +9417,3701,14,18,f +9417,3701,1,4,f +9417,3702,14,4,f +9417,3703,1,2,f +9417,3703,14,10,f +9417,3704,0,2,f +9417,3705,0,3,f +9417,3706,0,13,f +9417,3707,0,5,f +9417,3708,0,3,f +9417,3709,14,3,f +9417,3709,1,3,f +9417,3710,1,4,f +9417,3710,14,5,f +9417,3713,7,16,f +9417,3736,7,1,f +9417,3737,0,4,f +9417,3738,4,3,f +9417,3743,7,2,f +9417,8,7,1,f +9417,9244,7,3,f +9418,3004,4,1,f +9418,3004pr20,15,1,f +9418,3022,0,1,f +9418,3023,15,1,f +9418,3023,0,2,f +9418,3040b,4,3,f +9418,3794a,4,1,f +9418,6141,15,1,f +9418,6141,14,2,f +9419,23306,383,1,f +9419,2335,15,2,f +9419,2412b,0,4,f +9419,2412b,72,7,f +9419,2431,15,1,f +9419,2432,71,2,f +9419,2436,71,1,f +9419,2456,15,1,f +9419,2540,25,2,f +9419,2584,0,1,f +9419,2585,0,1,f +9419,2654,71,4,f +9419,2780,0,2,f +9419,3001,15,1,f +9419,3002,71,1,f +9419,3003,71,1,f +9419,3004,19,1,f +9419,3004,25,1,f +9419,3005,15,2,f +9419,3010,15,1,f +9419,30170,15,1,t +9419,30170,15,1,f +9419,30171,15,1,f +9419,30192,72,1,f +9419,3020,15,5,f +9419,3020,72,6,f +9419,3022,25,2,f +9419,3022,15,3,f +9419,3023,0,2,f +9419,3023,25,3,f +9419,30236,72,1,f +9419,3029,19,1,f +9419,3030,72,2,f +9419,3031,72,6,f +9419,30363,72,4,f +9419,30370ps2,15,1,f +9419,30370ps3,15,1,f +9419,30372pr0001,40,1,f +9419,30374,41,1,f +9419,3039,15,4,f +9419,3039,72,1,f +9419,3039ps2,72,1,f +9419,3040b,15,2,f +9419,3040b,19,2,f +9419,3040b,25,2,f +9419,3068b,15,2,f +9419,3068bps0,15,2,f +9419,3069b,15,3,f +9419,3069bpr0085,15,1,f +9419,3069bpr0086,71,2,f +9419,32028,71,2,f +9419,32073,71,1,f +9419,32270,71,1,f +9419,3298,15,4,f +9419,3626bp7a,14,1,f +9419,3626bpr0001,14,1,f +9419,3626bps3,14,1,f +9419,3666,19,2,f +9419,3679,71,1,f +9419,3680,0,1,f +9419,3710,72,3,f +9419,3743,0,1,f +9419,3794a,19,4,f +9419,3794a,15,3,f +9419,3795,19,2,f +9419,3795,0,1,f +9419,3832,15,2,f +9419,3937,72,1,f +9419,3940b,72,2,f +9419,3956,71,1,f +9419,4032a,0,4,f +9419,4095,0,1,f +9419,4150,71,2,f +9419,41769,15,3,f +9419,41770,15,3,f +9419,4274,71,2,f +9419,4274,71,1,t +9419,4286,15,2,f +9419,4286,25,2,f +9419,43337,15,4,f +9419,4360,0,2,f +9419,43722,19,1,f +9419,43723,19,1,f +9419,44301a,19,6,f +9419,44302a,15,4,f +9419,44375a,71,1,f +9419,44728,71,6,f +9419,4477,15,2,f +9419,4510,71,2,f +9419,4588,72,2,f +9419,4589,72,2,f +9419,47397,15,1,f +9419,47398,15,1,f +9419,4740,72,1,f +9419,4855,15,1,f +9419,4858pb03,15,1,f +9419,56823,0,1,f +9419,6134,19,1,f +9419,6141,0,1,t +9419,6141,0,4,f +9419,6238,40,1,f +9419,6541,72,4,f +9419,6558,0,2,f +9419,75535,72,4,f +9419,970x001,71,1,f +9419,970x199,25,2,f +9419,973pr0450c01,19,1,f +9419,973pr1301c01,25,2,f +9422,2343,0,2,f +9422,2412b,72,5,f +9422,2431,14,2,f +9422,2431pr0017,14,1,f +9422,2456,14,2,f +9422,2458,72,2,f +9422,2540,72,3,f +9422,2654,0,3,f +9422,2780,0,1,t +9422,2780,0,10,f +9422,2877,72,1,f +9422,2921,14,1,f +9422,3001,71,1,f +9422,3003,72,1,f +9422,3009,14,1,f +9422,3010,71,1,f +9422,3020,14,4,f +9422,3020,0,1,f +9422,3021,72,2,f +9422,3022,72,1,f +9422,30228,72,1,f +9422,3023,71,2,f +9422,30237a,0,2,f +9422,3031,71,2,f +9422,30364,14,2,f +9422,3037,72,1,f +9422,30387,14,2,f +9422,30388,14,4,f +9422,3039,14,1,f +9422,30414,15,1,f +9422,3068b,14,1,f +9422,3070b,46,3,f +9422,3070b,46,1,t +9422,3176,14,2,f +9422,32007,14,6,f +9422,32084,14,1,f +9422,32531,71,2,f +9422,32556,71,6,f +9422,3403,0,1,f +9422,3404,0,1,f +9422,3456,0,1,f +9422,3626bpb0173,14,1,f +9422,3666,14,2,f +9422,3795,14,1,f +9422,3829c01,71,1,f +9422,3833,4,1,f +9422,3837,72,1,f +9422,41239,72,2,f +9422,43337,72,1,f +9422,43720,14,1,f +9422,43721,14,1,f +9422,44302a,14,2,f +9422,4445,14,2,f +9422,44567a,0,1,f +9422,44568,71,1,f +9422,44570,14,2,f +9422,44822,0,1,f +9422,4623,71,2,f +9422,47508,0,1,f +9422,4872,40,1,f +9422,50950,72,2,f +9422,54200,182,2,f +9422,54200,72,4,f +9422,54200,72,1,t +9422,54200,36,2,f +9422,6019,15,1,f +9422,6141,71,1,f +9422,6141,71,1,t +9422,6587,72,1,f +9422,680c01,0,2,f +9422,7248stk01,9999,1,t +9422,970c00,25,1,f +9422,973pr1160c01,1,1,f +9424,2456,14,1,f +9424,2456,1,2,f +9424,3001,70,3,f +9424,3001,15,6,f +9424,3001,14,6,f +9424,3001,27,3,f +9424,3001,0,3,f +9424,3001,2,3,f +9424,3001,4,6,f +9424,3001,25,3,f +9424,3001,1,6,f +9424,3002,4,4,f +9424,3002,1,4,f +9424,3002,25,4,f +9424,3002,0,4,f +9424,3002,27,4,f +9424,3002,2,4,f +9424,3002,14,4,f +9424,3002,70,4,f +9424,3002,15,4,f +9424,3003,1,20,f +9424,3003,15,20,f +9424,3003,0,12,f +9424,3003,4,20,f +9424,3003,27,12,f +9424,3003,14,20,f +9424,3003,70,8,f +9424,3003,2,12,f +9424,3003,25,12,f +9424,3004,14,32,f +9424,3004,25,18,f +9424,3004,15,32,f +9424,3004,0,21,f +9424,3004,2,21,f +9424,3004,70,18,f +9424,3004,27,18,f +9424,3004,1,32,f +9424,3004,4,32,f +9424,3005,25,15,f +9424,3005,14,18,f +9424,3005,1,18,f +9424,3005,15,18,f +9424,3005,27,15,f +9424,3005,0,10,f +9424,3005,2,10,f +9424,3005,70,10,f +9424,3005,4,18,f +9424,3007,4,1,f +9424,3007,14,1,f +9424,3008,14,2,f +9424,3008,1,2,f +9424,3008,4,2,f +9424,3009,4,4,f +9424,3009,15,2,f +9424,3009,14,2,f +9424,3009,1,2,f +9424,3010,1,4,f +9424,3010,0,2,f +9424,3010,14,4,f +9424,3010,25,2,f +9424,3010,15,4,f +9424,3010,2,2,f +9424,3010,70,2,f +9424,3010,27,2,f +9424,3010,4,4,f +9424,3622,14,4,f +9424,3622,27,4,f +9424,3622,0,4,f +9424,3622,2,4,f +9424,3622,70,4,f +9424,3622,25,4,f +9424,3622,4,4,f +9424,3622,1,4,f +9424,3622,15,4,f +9425,122c01,0,3,f +9425,3001,14,1,f +9425,3004,0,1,f +9425,3020,14,1,f +9425,3020,0,4,f +9425,3023,0,2,f +9425,3024,14,2,f +9425,3024,46,2,f +9425,3034,0,1,f +9425,3149c01,0,1,f +9425,3626apr0001,14,1,f +9425,3710,0,1,f +9425,3710,14,4,f +9425,3821,14,1,f +9425,3822,14,1,f +9425,3823,47,1,f +9425,3829c01,14,1,f +9425,3832,0,1,f +9425,3833,4,1,f +9425,4070,14,2,f +9425,4080,14,1,f +9425,4083,0,1,f +9425,4084,0,6,f +9425,970c00,0,1,f +9425,973c07,1,1,f +9427,3626bp05,14,1,f +9427,3901,19,1,f +9427,970c00,0,1,f +9427,973px173c01,4,1,f +9429,2357,1,2,f +9429,2357,15,2,f +9429,2423,2,2,f +9429,2450,1,2,f +9429,2456,15,1,f +9429,2456,1,1,f +9429,2460,7,1,f +9429,2577,15,4,f +9429,3001,15,3,f +9429,3001,0,2,f +9429,3001,4,3,f +9429,3001,14,2,f +9429,3001,1,2,f +9429,3002,15,2,f +9429,3002,1,2,f +9429,3002,4,2,f +9429,3002,0,2,f +9429,3002,14,2,f +9429,3003,4,2,f +9429,3003,14,3,f +9429,3003,0,2,f +9429,3003,1,3,f +9429,3003,15,2,f +9429,3004,0,8,f +9429,3004,14,22,f +9429,3004,15,20,f +9429,3004,4,20,f +9429,3004,1,20,f +9429,3005,1,12,f +9429,3005,15,12,f +9429,3005,14,12,f +9429,3005,4,12,f +9429,3005,0,10,f +9429,3005pe1,14,2,f +9429,3008,1,2,f +9429,3008,15,2,f +9429,3009,15,2,f +9429,3009,4,2,f +9429,3009,0,2,f +9429,3009,1,2,f +9429,3009,14,2,f +9429,3010,4,8,f +9429,3010,1,8,f +9429,3010,14,8,f +9429,3010,15,8,f +9429,3010,0,4,f +9429,3010p01,14,1,f +9429,3020,14,2,f +9429,3020,1,2,f +9429,3021,1,2,f +9429,3021,14,2,f +9429,3022,1,2,f +9429,3022,14,2,f +9429,3023,1,2,f +9429,3023,14,2,f +9429,3030,1,1,f +9429,3031,14,1,f +9429,3031,1,1,f +9429,3032,1,1,f +9429,3034,1,2,f +9429,3035,14,1,f +9429,3039,14,4,f +9429,3040b,14,4,f +9429,3062b,15,6,f +9429,3081cc01,4,2,f +9429,3149c01,4,1,f +9429,3297p01,14,4,f +9429,3298p17,14,2,f +9429,3299,14,2,f +9429,3300,14,2,f +9429,3307,15,2,f +9429,3470,2,1,f +9429,3483,0,4,f +9429,3622,4,4,f +9429,3622,0,2,f +9429,3622,1,4,f +9429,3622,15,4,f +9429,3622,14,4,f +9429,3626bpr0001,14,2,f +9429,3633,4,6,f +9429,3660,14,2,f +9429,3665,14,2,f +9429,3679,7,1,f +9429,3680,14,1,f +9429,3710,14,2,f +9429,3710,1,2,f +9429,3741,2,3,f +9429,3742,1,1,t +9429,3742,4,3,f +9429,3742,14,1,t +9429,3742,1,3,f +9429,3742,4,1,t +9429,3742,14,3,f +9429,3747b,14,2,f +9429,3794a,14,2,f +9429,3795,14,2,f +9429,3823,47,1,f +9429,3836,6,1,f +9429,3853,4,4,f +9429,3854,14,8,f +9429,3856,1,4,f +9429,3861b,4,1,f +9429,3867,2,1,f +9429,3901,6,1,f +9429,3957a,15,2,f +9429,3960p04,15,1,f +9429,4070,15,4,f +9429,4286,14,2,f +9429,4287,14,2,f +9429,4495b,4,1,f +9429,6093,0,1,f +9429,6215,15,4,f +9429,6248,4,4,f +9429,6249,7,2,f +9429,970c00,1,1,f +9429,970c00,4,1,f +9429,973p01c01,15,1,f +9429,973pb0006c01,15,1,f +9431,3024,36,4,f +9431,3024,7,2,f +9431,3024,36,1,t +9431,3024,7,1,t +9431,3612,7,3,f +9431,3626apr0001,14,1,f +9431,3710,7,1,f +9431,3794a,0,2,f +9431,3795,7,1,f +9431,3829c01,7,1,f +9431,3838,4,1,f +9431,3842a,4,1,f +9431,3957a,7,1,f +9431,3962a,0,1,f +9431,3963,0,2,f +9431,4081a,7,2,f +9431,4220,7,1,f +9431,4221,7,2,f +9431,4229,7,4,f +9431,792c01,7,1,f +9431,970c00,4,1,f +9431,973p90c02,4,1,f +9432,2413,15,2,f +9432,2420,72,2,f +9432,2431,72,1,f +9432,2431,15,1,f +9432,2437,40,1,f +9432,3003,0,1,f +9432,3005,72,1,f +9432,3010,15,2,f +9432,3020,15,3,f +9432,3020,4,1,f +9432,3021,71,1,f +9432,3021,72,4,f +9432,3022,71,1,f +9432,3023,0,5,f +9432,3024,15,1,f +9432,3024,72,2,f +9432,3039pc5,71,1,f +9432,3040b,15,2,f +9432,3068b,4,1,f +9432,3070b,4,1,t +9432,3070b,14,1,t +9432,3070b,4,1,f +9432,3070b,15,3,f +9432,3070b,15,1,t +9432,3070b,14,1,f +9432,3460,71,1,f +9432,3623,72,3,f +9432,3666,72,1,f +9432,3679,7,2,f +9432,3680,15,2,f +9432,3710,15,3,f +9432,3710,72,1,f +9432,3794a,15,1,f +9432,3795,71,2,f +9432,3937,71,1,f +9432,4079,70,3,f +9432,4162,72,1,f +9432,41769,15,4,f +9432,41770,15,4,f +9432,4282,71,1,f +9432,44301a,15,2,f +9432,44302a,15,2,f +9432,4449,0,1,f +9432,4449,73,1,f +9432,44571,15,4,f +9432,4477,15,1,f +9432,4477,72,1,f +9432,44822,15,4,f +9432,4854,71,2,f +9432,4855,71,2,f +9432,4856a,72,2,f +9432,4858,15,1,f +9432,4859,72,1,f +9432,4859,15,1,f +9432,4861,15,1,f +9432,4862,40,12,f +9432,4863,15,6,f +9432,4865a,4,2,f +9432,4865a,15,2,f +9432,4867,15,1,f +9432,4868b,15,2,f +9432,4869,71,2,f +9432,4870c02,71,3,f +9432,4871,71,1,f +9432,6134,0,1,f +9432,6141,15,1,t +9432,6141,34,1,t +9432,6141,47,1,t +9432,6141,34,1,f +9432,6141,36,1,f +9432,6141,36,1,t +9432,6141,47,1,f +9432,6141,15,2,f +9432,6636,15,2,f +9432,73983,72,4,f +9433,2335,0,2,f +9433,2335,8,1,f +9433,2412b,27,4,f +9433,2431,8,2,f +9433,2432,14,1,f +9433,2436,4,2,f +9433,2446pb05,4,1,f +9433,2447,42,1,f +9433,2447,42,1,t +9433,2540,8,3,f +9433,2780,0,1,t +9433,2780,0,2,f +9433,3001,2,2,f +9433,3004,14,1,f +9433,3010,4,1,f +9433,30136,2,4,f +9433,3020,14,2,f +9433,3021,2,1,f +9433,3022,14,1,f +9433,3023,0,3,f +9433,3031,0,1,f +9433,30383,8,2,f +9433,30414,0,2,f +9433,30540,0,4,f +9433,30552,2,4,f +9433,30553,0,2,f +9433,3062b,2,2,f +9433,3068bpb0055,27,1,f +9433,32283c03,0,1,f +9433,3626bpr0369,15,1,f +9433,3660,8,1,f +9433,3702,0,2,f +9433,3710,2,3,f +9433,3710,4,3,f +9433,3713,7,8,f +9433,3713,7,1,t +9433,3737,0,2,f +9433,3749,19,2,f +9433,3795,2,1,f +9433,3829c01,14,1,f +9433,41747pb005,27,1,f +9433,41748pb005,27,1,f +9433,41855,27,1,f +9433,4286,8,2,f +9433,43710,2,1,f +9433,43711,2,1,f +9433,43722,27,2,f +9433,43723,27,2,f +9433,44675,2,1,f +9433,44676,0,2,f +9433,44728,4,1,f +9433,4865a,47,1,f +9433,6141,47,1,t +9433,6141,36,1,t +9433,6141,14,1,t +9433,6141,14,2,f +9433,6141,47,2,f +9433,6141,36,2,f +9433,6579,0,4,f +9433,6580,27,4,f +9433,6636,0,2,f +9433,75c06,8,2,f +9433,75c12,8,2,f +9433,970x026,4,1,f +9433,973pb0130c01,4,1,f +9434,16542,7,1,f +9434,2412a,7,1,f +9434,2420,4,6,f +9434,2431pr0077,15,2,f +9434,2436,15,2,f +9434,2460,0,2,f +9434,2513,4,1,f +9434,2540,0,2,f +9434,2540,7,1,f +9434,2555,7,2,f +9434,2555,0,2,f +9434,2584,4,1,f +9434,2585,7,1,f +9434,2736,7,1,f +9434,3005,4,4,f +9434,3010,4,3,f +9434,3020,4,1,f +9434,3021,4,1,f +9434,3021,14,2,f +9434,3021,7,1,f +9434,3022,0,3,f +9434,3022,4,2,f +9434,3023,7,2,f +9434,3023,15,5,f +9434,3023,4,5,f +9434,3023,0,5,f +9434,3024,47,4,f +9434,3024,36,6,f +9434,3024,46,12,f +9434,3031,15,1,f +9434,3034,7,1,f +9434,3035,15,1,f +9434,3039p34,7,1,f +9434,3062b,7,6,f +9434,3062b,14,1,f +9434,3062b,4,2,f +9434,3068bp05,15,1,f +9434,3068bp06,15,1,f +9434,3069b,7,1,f +9434,3069bp09,15,1,f +9434,3298,4,2,f +9434,3314,0,1,f +9434,3317,14,1,f +9434,3491,0,1,f +9434,3623,4,4,f +9434,3623,15,2,f +9434,3626apr0001,14,2,f +9434,3641,0,6,f +9434,3666,4,2,f +9434,3709,4,1,f +9434,3710,15,3,f +9434,3710,4,6,f +9434,3738,15,2,f +9434,3747a,4,2,f +9434,3788,4,1,f +9434,3795,14,1,f +9434,3821p09,4,2,f +9434,3822p09,4,2,f +9434,3823,41,2,f +9434,3829c01,7,3,f +9434,3832,15,1,f +9434,3832,0,2,f +9434,3833,15,1,f +9434,3834,15,1,f +9434,3835,7,1,f +9434,3836,6,1,f +9434,3837,8,1,f +9434,3841,8,1,f +9434,3957a,7,2,f +9434,3962b,0,1,f +9434,4070,14,2,f +9434,4079,7,2,f +9434,4081b,7,2,f +9434,4084,0,4,f +9434,4085c,4,6,f +9434,4085c,7,2,f +9434,4175,4,2,f +9434,4211,4,1,f +9434,4212b,15,1,f +9434,4213,4,1,f +9434,4275b,4,2,f +9434,4477,4,2,f +9434,4504,0,2,f +9434,4531,15,2,f +9434,4589,0,1,f +9434,4599a,14,1,f +9434,4600,0,4,f +9434,4600,15,2,f +9434,4600,7,3,f +9434,4623,15,4,f +9434,4624,15,6,f +9434,4624,14,4,f +9434,4625,4,1,f +9434,4865a,41,1,f +9434,4865pb04,4,1,f +9434,6014a,15,8,f +9434,6015,0,8,f +9434,6141,47,2,f +9434,6141,33,6,f +9434,784,14,1,f +9434,970c00,0,2,f +9434,973p21c01,0,2,f +9435,11946,4,1,f +9435,11947,4,1,f +9435,14260,9999,1,t +9435,2780,0,1,t +9435,2780,0,41,f +9435,3023,47,2,f +9435,30663,71,1,f +9435,32000,0,2,f +9435,32005a,0,4,f +9435,32013,4,2,f +9435,32034,71,4,f +9435,32054,4,4,f +9435,32056,71,2,f +9435,32062,4,14,f +9435,32072,14,2,f +9435,32073,71,5,f +9435,32123b,71,1,t +9435,32123b,71,15,f +9435,32140,4,4,f +9435,32140,1,2,f +9435,32184,71,12,f +9435,32192,4,4,f +9435,32270,0,3,f +9435,32271,4,4,f +9435,32278,71,2,f +9435,32316,4,8,f +9435,32316,71,3,f +9435,32523,0,5,f +9435,32524,4,3,f +9435,32526,71,4,f +9435,3705,0,7,f +9435,3706,0,2,f +9435,3713,4,1,t +9435,3713,4,8,f +9435,40490,0,2,f +9435,40490,4,3,f +9435,41239,0,6,f +9435,41678,4,12,f +9435,42003,4,4,f +9435,4274,1,1,f +9435,4274,1,1,t +9435,43093,1,12,f +9435,43857,71,4,f +9435,43857,4,2,f +9435,44294,71,4,f +9435,4519,71,15,f +9435,45982,0,4,f +9435,48989,71,4,f +9435,56908,71,4,f +9435,59426,72,4,f +9435,59443,4,5,f +9435,61903,71,2,f +9435,62462,0,1,f +9435,64179,71,2,f +9435,64391,4,1,f +9435,64683,4,1,f +9435,64781,0,2,f +9435,6536,0,4,f +9435,6558,1,32,f +9435,6628,0,8,f +9435,76138,71,4,f +9435,87080,4,1,f +9435,87082,0,8,f +9435,87086,4,1,f +9435,92910,71,2,f +9435,92911,72,2,f +9438,2431,15,1,f +9438,2432,0,1,f +9438,2441,4,1,f +9438,2446,4,1,f +9438,2447,0,1,f +9438,2540,8,2,f +9438,30027a,14,4,f +9438,30028,0,4,f +9438,3039,14,1,f +9438,3623,14,2,f +9438,3626bp05,14,1,f +9438,3710,15,1,f +9438,3829c01,7,1,f +9438,4070,7,2,f +9438,970c00,4,1,f +9438,973pb0242c01,15,1,f +9440,3004,1,1,f +9440,3006,1,1,f +9440,3010,14,2,f +9440,3034,4,1,f +9440,3039,47,1,f +9440,3039,1,2,f +9440,3298,4,2,f +9440,3747b,1,1,f +9440,3795,4,2,f +9440,4730,1,1,f +9440,4745,14,1,f +9442,2338,4,1,f +9442,2339,14,2,f +9442,2343,4,1,f +9442,2343,7,1,f +9442,2343,15,1,f +9442,2345,4,2,f +9442,2418a,15,2,f +9442,2489,6,1,f +9442,2490px2,1,1,f +9442,2490px3,4,1,f +9442,3004,14,4,f +9442,3004,0,3,f +9442,3004,6,1,f +9442,3004,4,3,f +9442,3005,14,8,f +9442,3005,1,2,f +9442,3008,14,1,f +9442,3009,1,2,f +9442,3020,2,1,f +9442,3020,14,1,f +9442,3021,14,2,f +9442,3022,14,4,f +9442,3023,7,2,f +9442,3023,14,1,f +9442,3023,6,1,f +9442,3023,0,1,f +9442,3036,2,1,f +9442,3062b,1,4,f +9442,3069b,14,1,f +9442,3460,14,1,f +9442,3470,2,1,f +9442,3497,2,1,f +9442,3622,0,4,f +9442,3623,14,2,f +9442,3626apr0001,14,8,f +9442,3633,1,1,f +9442,3660,4,2,f +9442,3665,4,2,f +9442,3710,14,1,f +9442,3710,1,1,f +9442,3794a,4,4,f +9442,3832,0,2,f +9442,3844,0,2,f +9442,3846p4c,7,3,f +9442,3846p4g,7,2,f +9442,3846p4h,7,1,f +9442,3847,8,4,f +9442,3848,0,1,f +9442,3848,6,1,f +9442,3849,0,1,f +9442,3849,8,1,f +9442,3896,8,1,f +9442,3896,0,1,f +9442,3899,1,1,f +9442,3899,4,1,f +9442,3899,15,1,f +9442,3937,15,2,f +9442,3942b,14,2,f +9442,3957a,0,1,f +9442,4032a,6,1,f +9442,4070,7,2,f +9442,4081b,4,2,f +9442,4085b,4,4,f +9442,4085b,14,2,f +9442,4282,2,1,f +9442,4460a,1,2,f +9442,4460a,4,2,f +9442,4477,0,1,f +9442,4477,4,1,f +9442,4493c01pb02,0,1,f +9442,4493c01pb03,6,1,f +9442,4495a,4,3,f +9442,4495a,1,3,f +9442,4497,6,2,f +9442,4498,6,1,f +9442,4499,6,1,f +9442,4503,8,1,f +9442,4503,0,1,f +9442,4524,4,1,f +9442,4524,1,1,f +9442,4530,6,1,f +9442,4599a,7,1,f +9442,4623,14,2,f +9442,87692,14,1,f +9442,87692,4,1,f +9442,87693,14,1,t +9442,87693,4,1,t +9442,87694,14,1,t +9442,87694,4,1,t +9442,970c00,15,1,f +9442,970c00,0,1,f +9442,970x021,0,1,f +9442,970x026,1,2,f +9442,970x026,4,3,f +9442,973p40c01,1,1,f +9442,973p40c01,0,1,f +9442,973p40c03,4,1,f +9442,973p41c01,1,1,f +9442,973p42c01,4,1,f +9442,973p46c02,7,1,f +9442,973p71c01,15,1,f +9442,973px138c01,4,1,f +9443,7602-1,89,1,f +9443,7604-1,89,1,f +9443,7606-1,89,1,f +9443,7609-1,89,1,f +9443,7610-1,89,1,f +9443,7871-1,89,1,f +9443,7872-1,89,1,f +9443,7873-1,89,1,f +9443,7875-1,89,1,f +9444,2654,0,1,f +9444,2780,0,1,t +9444,2780,0,12,f +9444,2905,0,2,f +9444,32002,8,1,t +9444,32002,8,6,f +9444,32009,14,2,f +9444,32034,14,2,f +9444,32056,14,2,f +9444,32062,0,7,f +9444,32073,7,9,f +9444,32138,0,1,f +9444,32140,14,4,f +9444,32140,0,1,f +9444,32184,0,1,f +9444,32249,14,2,f +9444,32250,14,4,f +9444,32250,0,6,f +9444,32269,7,2,f +9444,32270,7,1,f +9444,32348,0,2,f +9444,32449,0,2,f +9444,32523,14,8,f +9444,32524,0,2,f +9444,32525,0,1,f +9444,32526,14,2,f +9444,32527,14,1,f +9444,32528,14,1,f +9444,32534,14,1,f +9444,32535,14,1,f +9444,32556,7,3,f +9444,3648b,7,1,f +9444,3705,0,4,f +9444,3706,0,2,f +9444,3713,7,5,f +9444,3713,7,1,t +9444,3749,19,11,f +9444,3941,46,1,f +9444,4032a,0,1,f +9444,41677,0,4,f +9444,42003,0,2,f +9444,43093,1,2,f +9444,43857,0,2,f +9444,4519,7,7,f +9444,4716,0,1,f +9444,6141,36,2,f +9444,6141,36,1,t +9444,6536,0,7,f +9444,6536,7,1,f +9444,6536,14,2,f +9444,6538b,0,2,f +9444,6558,0,13,f +9444,6579,0,6,f +9444,6580,14,6,f +9444,6629,14,4,f +9444,6632,14,4,f +9444,6632,0,4,f +9447,264,4,1,f +9447,3001,4,4,f +9447,3403c01,4,1,f +9447,4000,14,1,f +9447,4362acx1,0,1,f +9447,4438,0,2,f +9447,4461,4,1,f +9447,5,4,1,f +9447,fab2h,9999,1,f +9447,fabaj1,4,3,f +9447,fabaj3,14,1,f +9447,fabed10,0,1,f +9450,2301,4,2,f +9450,2302,25,2,f +9450,2302,10,1,f +9450,2302,1,2,f +9450,2312a,1,1,f +9450,3011,10,1,f +9450,31023,15,1,f +9450,31170,4,1,f +9450,31333pb01,0,1,f +9450,3437,10,2,f +9450,3437,27,2,f +9450,3437,14,2,f +9450,3437,73,2,f +9450,3437,1,2,f +9450,3437,25,2,f +9450,3437,41,1,f +9450,3437,4,2,f +9450,4066,4,1,f +9450,40666,73,2,f +9450,40666,4,1,f +9450,40666,10,1,f +9450,4066pb369,1,1,f +9450,44524,10,1,f +9450,44524,14,1,f +9450,4672,2,1,f +9450,47509,135,1,f +9450,58057pr01,19,1,f +9450,58498c01,0,1,f +9450,60773,484,1,f +9450,61649,14,4,f +9450,61649,73,1,f +9450,6446,484,1,f +9450,6474pb24,14,1,f +9450,6474pb28,71,1,f +9450,6478,14,1,f +9450,6497,15,1,f +9450,6510,10,1,f +9450,6510,14,1,f +9450,6510,25,1,f +9450,90265,15,2,f +9450,92094,73,1,f +9450,98223,27,1,f +9450,98223,25,1,f +9450,98223,4,1,f +9450,98252,27,2,f +9451,14918cpr0002,288,1,f +9451,3024,47,1,t +9451,3024,47,2,f +9451,30361pr1003,288,1,f +9451,30362,288,2,f +9451,6141,46,1,f +9451,6141,46,1,t +9452,45573,72,1,f +9452,45574,71,1,f +9452,45575,71,5,f +9452,45799,71,2,f +9452,47324,14,1,f +9452,85544,2,2,f +9452,rb00178,0,1,f +9453,2446px2,15,1,f +9453,2447,34,1,f +9453,30228,8,1,f +9453,3624,15,1,f +9453,3626bp02,14,2,f +9453,3626bp03,14,1,f +9453,3626bp04,14,2,f +9453,3626bp05,14,1,f +9453,3833,4,1,f +9453,3834,15,1,f +9453,3835,7,1,f +9453,3898,15,1,f +9453,3900,15,1,f +9453,3962b,0,1,f +9453,4150p02,14,1,f +9453,4449,0,1,f +9453,4719,4,1,f +9453,57503,334,1,f +9453,57504,334,1,f +9453,57505,334,1,f +9453,57506,334,1,f +9453,6093,6,1,f +9453,6141,47,1,f +9453,6251,15,1,f +9453,92851,47,2,f +9453,970c00,0,3,f +9453,970c00,2,1,f +9453,970c00,4,1,f +9453,970c00,1,1,f +9453,973px121c01,0,1,f +9453,973px122c01,1,1,f +9453,973px18c01,15,1,f +9453,973px31c01,7,1,f +9453,973px3c01,15,1,f +9453,973px9c01,0,1,f +9454,10830pat0001,0,1,f +9454,15210pr01,0,2,f +9454,2412b,15,4,f +9454,2412b,72,11,f +9454,2419,15,2,f +9454,2431,0,1,f +9454,2431,4,1,f +9454,2432,71,6,f +9454,2436,1,1,f +9454,2441,0,1,f +9454,2446,15,1,f +9454,2447,40,1,f +9454,2447,40,1,t +9454,2453a,15,2,f +9454,2456,1,1,f +9454,2465,15,1,f +9454,2540,1,2,f +9454,2877,71,9,f +9454,2926,0,2,f +9454,298c02,1,1,f +9454,298c02,1,1,t +9454,30027b,71,4,f +9454,30028,0,4,f +9454,3004,1,1,f +9454,30043,71,1,f +9454,3005,0,1,f +9454,3008,15,2,f +9454,3009,15,5,f +9454,3010,15,9,f +9454,30162,71,2,f +9454,3020,1,7,f +9454,3020,4,1,f +9454,3021,14,1,f +9454,3021,71,2,f +9454,3022,71,4,f +9454,3023,2,2,f +9454,3023,33,3,f +9454,3023,0,5,f +9454,3023,46,2,f +9454,3023,36,2,f +9454,30237a,15,3,f +9454,3024,47,1,f +9454,3027,72,1,f +9454,3032,15,3,f +9454,3034,0,4,f +9454,3034,1,2,f +9454,30350b,72,3,f +9454,30363,71,1,f +9454,30374,71,2,f +9454,30414,72,2,f +9454,3068b,71,6,f +9454,3069b,4,3,f +9454,3069b,82,1,f +9454,3069b,33,3,f +9454,3069bpr0030,15,2,f +9454,3069bpr0115,15,2,f +9454,3070b,36,4,f +9454,3070b,36,2,t +9454,32028,0,6,f +9454,3245c,15,6,f +9454,3460,4,2,f +9454,3460,72,2,f +9454,3622,4,2,f +9454,3626bpr0282,14,1,f +9454,3626bpr0389,14,1,f +9454,3626bpr0645,14,1,f +9454,3660,71,2,f +9454,3660,15,2,f +9454,3666,15,7,f +9454,3666,1,12,f +9454,3679,71,1,f +9454,3680,1,1,f +9454,3710,0,5,f +9454,3710,1,9,f +9454,3794b,71,2,f +9454,3795,71,2,f +9454,3795,15,8,f +9454,3821,15,1,f +9454,3821,4,1,f +9454,3822,4,1,f +9454,3822,15,1,f +9454,3829c01,14,2,f +9454,3830,15,8,f +9454,3831,15,8,f +9454,3899,4,1,f +9454,3937,71,1,f +9454,3958,15,1,f +9454,4032a,14,1,f +9454,4079,14,2,f +9454,4083,15,1,f +9454,4085c,0,2,f +9454,41334,0,1,f +9454,4162,1,6,f +9454,4176,41,1,f +9454,4282,0,1,f +9454,4285b,71,1,f +9454,44728,15,1,f +9454,44728,4,2,f +9454,4488,71,6,f +9454,4510,0,1,f +9454,4589,72,2,f +9454,4589,14,1,f +9454,4589,1,2,f +9454,4697b,71,2,f +9454,4697b,71,1,t +9454,4740,71,1,f +9454,47457,15,1,f +9454,47905,72,2,f +9454,48336,0,5,f +9454,49668,0,1,f +9454,50745,15,2,f +9454,50859b,0,1,f +9454,50861,0,2,f +9454,50862,71,2,f +9454,50949,0,1,f +9454,52107,14,2,f +9454,52501,15,1,f +9454,54200,182,1,t +9454,54200,36,1,t +9454,54200,46,5,f +9454,54200,15,2,f +9454,54200,46,2,t +9454,54200,4,1,t +9454,54200,33,3,t +9454,54200,15,1,t +9454,54200,182,2,f +9454,54200,36,2,f +9454,54200,4,8,f +9454,54200,33,8,f +9454,57783,41,1,f +9454,59349,15,4,f +9454,6014b,71,10,f +9454,60212,4,2,f +9454,60470a,15,2,f +9454,60583a,15,2,f +9454,60594,15,2,f +9454,60596,15,4,f +9454,60616a,15,2,f +9454,60621,71,1,f +9454,60657,15,1,f +9454,60658,15,1,f +9454,60700,0,10,f +9454,6091,0,2,f +9454,6134,4,1,f +9454,6141,46,1,t +9454,6141,0,1,f +9454,6141,46,1,f +9454,6141,33,1,t +9454,6141,0,1,t +9454,6141,33,3,f +9454,61482,71,1,t +9454,61482,71,1,f +9454,61484,15,1,f +9454,62113,72,2,f +9454,62810,308,1,f +9454,64567,0,1,f +9454,6636,72,1,f +9454,85984,72,1,f +9454,87079,15,1,f +9454,87079,0,1,f +9454,87087,15,4,f +9454,87421,15,2,f +9454,87609,15,1,f +9454,87617,0,2,f +9454,88930,4,1,f +9454,89536,15,1,f +9454,92339,72,1,f +9454,970c00,0,2,f +9454,970c00,72,1,f +9454,973pr1197c01,15,1,f +9454,973pr1693c01,0,1,f +9454,973pr1697c01,73,1,f +9456,2412b,7,2,f +9456,2420,6,2,f +9456,2431,8,1,f +9456,2432,4,4,f +9456,3001,4,2,f +9456,3002,0,2,f +9456,3003,8,2,f +9456,3004,4,4,f +9456,30136,7,4,f +9456,3020,0,1,f +9456,3022,0,2,f +9456,3023,8,8,f +9456,3031,8,2,f +9456,3034,4,1,f +9456,3040b,6,4,f +9456,3045,4,4,f +9456,3069bpr0070,0,2,f +9456,3298,6,2,f +9456,3623,6,2,f +9456,3626bpsc,14,1,f +9456,3660,8,2,f +9456,3710,6,4,f +9456,3710,8,4,f +9456,3794a,4,2,f +9456,3832,4,2,f +9456,3937,4,6,f +9456,3938,6,6,f +9456,3962b,0,1,f +9456,41747,4,2,f +9456,41748,4,2,f +9456,4175,8,2,f +9456,41764,4,2,f +9456,41765,4,2,f +9456,4477,8,2,f +9456,4625,8,1,f +9456,4854,4,1,f +9456,4857,4,1,f +9456,4859,8,2,f +9456,4864b,4,8,f +9456,4871,4,4,f +9456,6070,47,2,f +9456,6141,41,1,t +9456,6141,41,2,f +9456,6141,8,1,t +9456,6141,8,2,f +9456,6215,4,2,f +9456,970c00,7,1,f +9456,973pscc01,7,1,f +9457,2346,0,4,f +9457,2412b,7,2,f +9457,2420,0,2,f +9457,2436,0,1,f +9457,2717,4,1,f +9457,2738,0,1,f +9457,2790,0,1,f +9457,2791,7,1,f +9457,2792,0,1,f +9457,3020,0,1,f +9457,3021,0,2,f +9457,3022,0,1,f +9457,3023,0,1,f +9457,3024,0,1,f +9457,3031,0,2,f +9457,3482,14,4,f +9457,3623,0,2,f +9457,3647,7,1,f +9457,3673,7,4,f +9457,3701,0,2,f +9457,3705,0,2,f +9457,3706,0,3,f +9457,3707,0,2,f +9457,3710,0,1,f +9457,3713,7,7,f +9457,3737,0,1,f +9457,3749,7,6,f +9457,3894,0,2,f +9457,3895,0,2,f +9457,4070,0,4,f +9457,4081b,0,1,f +9457,4150,15,2,f +9457,4185,7,1,f +9457,4261,7,2,f +9457,4265a,7,4,f +9457,4273b,7,6,f +9457,4274,7,2,f +9457,4442,0,1,f +9457,73129,7,1,f +9457,73590c01b,14,1,f +9461,10169,84,1,f +9461,11408pr0010c01,78,1,f +9461,11477,26,2,f +9461,11477,70,2,f +9461,11816pr0020,84,1,f +9461,11818pr0008,78,1,f +9461,13459,0,1,f +9461,13965,19,4,f +9461,13965,70,2,f +9461,14769,27,3,f +9461,14769,19,2,f +9461,14769pr1014,19,1,f +9461,15207,71,2,f +9461,15395,179,1,f +9461,15470,29,1,t +9461,15470,297,2,f +9461,15470,29,2,f +9461,15470,297,1,t +9461,15533,84,2,f +9461,15672,19,2,f +9461,19118,191,1,f +9461,19121,297,1,f +9461,19193pr0002,15,1,f +9461,19203pr0002,484,1,f +9461,19204pr0001,320,1,f +9461,19532pr0001,320,1,f +9461,20223,9999,1,f +9461,20381pr0001,26,1,f +9461,2357,70,2,f +9461,2357,19,2,f +9461,2417,85,2,f +9461,2423,27,3,f +9461,2456,19,1,f +9461,2653,71,2,f +9461,2654,182,1,f +9461,3001,72,2,f +9461,3002,72,2,f +9461,3003,19,2,f +9461,3004,19,9,f +9461,3004,191,2,f +9461,30044,70,1,f +9461,30046,297,2,f +9461,3005,15,1,f +9461,3005,29,1,f +9461,3005,19,2,f +9461,3005,70,4,f +9461,30099,308,1,f +9461,3010,72,1,f +9461,30136,70,3,f +9461,30153,45,8,f +9461,3020,191,5,f +9461,3021,0,1,f +9461,3022,191,6,f +9461,3022,70,2,f +9461,3023,71,3,f +9461,30236,0,1,f +9461,30237b,0,1,f +9461,3024,26,2,f +9461,3024,71,1,t +9461,3024,71,2,f +9461,3024,26,1,t +9461,3027,2,1,f +9461,30350b,84,1,f +9461,30357,191,4,f +9461,3037,72,1,f +9461,30374,19,1,f +9461,30385,45,2,f +9461,3039,70,2,f +9461,3040b,308,1,f +9461,3040b,72,4,f +9461,3040b,182,4,f +9461,3062b,57,2,f +9461,3068bpr0247,19,1,f +9461,3069b,182,7,f +9461,3176,14,1,f +9461,32000,14,2,f +9461,32028,14,2,f +9461,3245b,71,4,f +9461,32474,19,1,f +9461,33125,484,1,f +9461,33183,70,2,f +9461,33183,70,1,t +9461,33291,191,2,f +9461,33291,31,1,t +9461,33291,191,1,t +9461,33291,31,4,f +9461,3460,70,1,f +9461,3622,19,1,f +9461,3623,191,2,f +9461,3626b,47,1,f +9461,3659,72,1,f +9461,3660,19,2,f +9461,3666,27,1,f +9461,3666,71,1,f +9461,3673,71,2,f +9461,3673,71,1,t +9461,3710,26,2,f +9461,3710,70,1,f +9461,3710,191,2,f +9461,3795,71,3,f +9461,3795,191,5,f +9461,3898,15,1,f +9461,3941,70,2,f +9461,4032a,19,1,f +9461,4081b,26,2,f +9461,4274,71,1,t +9461,4274,71,1,f +9461,4286,71,3,f +9461,4287,70,1,f +9461,4342,84,1,f +9461,4460b,308,2,f +9461,44728,70,1,f +9461,4697b,71,1,f +9461,4697b,71,1,t +9461,4740,129,1,f +9461,48336,297,2,f +9461,50950,26,6,f +9461,54200,182,1,t +9461,54200,182,4,f +9461,59900,15,2,f +9461,60474,297,1,f +9461,60475b,84,5,f +9461,60478,191,2,f +9461,60481,70,2,f +9461,60481,71,6,f +9461,60583b,19,1,f +9461,61252,0,1,f +9461,6141,19,2,t +9461,6141,33,4,f +9461,6141,33,1,t +9461,6141,19,4,f +9461,6182,71,4,f +9461,6233,70,1,f +9461,62462,70,1,f +9461,64390,70,1,f +9461,64644,0,1,f +9461,64647,182,1,t +9461,64647,182,2,f +9461,6541,15,2,f +9461,85984,72,5,f +9461,87079,26,1,f +9461,87079,71,4,f +9461,87087,71,3,f +9461,87580,26,9,f +9461,88072,0,3,f +9461,91405,2,1,f +9461,92280,0,2,f +9461,92456pr0074c01,84,1,f +9461,92590,28,1,f +9461,98138,52,1,t +9461,98138,1,1,t +9461,98138,297,1,t +9461,98138,1,2,f +9461,98138,45,4,f +9461,98138,71,9,f +9461,98138,27,2,f +9461,98138,297,2,f +9461,98138,45,1,t +9461,98138,36,1,f +9461,98138,27,1,t +9461,98138,52,1,f +9461,98138,36,1,t +9461,98138,71,2,t +9461,98138pr0018,84,1,t +9461,98138pr0018,84,2,f +9461,98138pr0031,36,1,t +9461,98138pr0031,36,2,f +9461,98283,84,8,f +9462,1851pr0001,15,1,f +9462,1853pr0001,15,1,f +9462,260pb01,0,1,f +9462,260pb01,2,1,f +9462,27bc01,15,4,f +9462,3001a,15,2,f +9462,3002a,15,1,f +9462,3003,15,2,f +9462,3005,15,2,f +9462,3007,1,1,f +9462,3008a,1,2,f +9462,3008a06,15,1,f +9462,3036a,15,2,f +9462,3065,47,2,f +9462,3065,15,18,f +9462,3065,1,4,f +9465,2444,72,4,f +9465,3020,70,3,f +9465,3021,70,1,f +9465,3023,72,1,f +9465,3040b,288,1,f +9465,3040b,308,4,f +9465,3062b,72,2,f +9465,32123b,71,1,t +9465,32123b,71,2,f +9465,32530,0,2,f +9465,3623,70,1,f +9465,3626bpr0541,14,1,f +9465,3626bpr0649,14,1,f +9465,3666,70,2,f +9465,3749,19,4,f +9465,3846pr0001a,71,1,f +9465,3847,135,1,f +9465,3847,148,1,f +9465,3848,148,1,f +9465,3957a,0,1,f +9465,4032a,70,8,f +9465,4085c,72,1,f +9465,4274,71,2,f +9465,4274,71,1,t +9465,4495b,297,1,f +9465,4503,80,1,f +9465,4589,0,2,f +9465,54200,72,1,f +9465,54200,288,1,t +9465,54200,288,2,f +9465,54200,72,1,t +9465,64647,4,1,t +9465,64647,288,1,f +9465,64647,4,1,f +9465,64647,288,1,t +9465,6587,28,1,f +9465,88289,308,1,f +9465,89520,148,1,f +9465,970c00pr0154,0,1,f +9465,970x026,71,1,f +9465,973pr1622c01,4,1,f +9465,973pr1626c01,0,1,f +9466,11098,297,1,f +9466,11103,297,1,f +9466,11129pr0007,320,1,f +9466,11477,191,4,f +9466,15573,191,2,f +9466,16768pat0001,4,1,f +9466,18868a,41,1,f +9466,19981pr0042,41,1,f +9466,30136,71,1,f +9466,3020,70,1,f +9466,3022,191,1,f +9466,3023,0,2,f +9466,3049c,308,1,f +9466,3070b,0,1,t +9466,3070b,0,1,f +9466,3626cpr1121,19,1,f +9466,3937,71,1,f +9466,3941,41,1,f +9466,4070,70,2,f +9466,41854,308,1,f +9466,50944,0,4,f +9466,6126b,182,2,f +9466,6134,71,1,f +9466,6141,15,2,f +9466,6141,33,1,t +9466,6141,182,1,t +9466,6141,33,2,f +9466,6141,15,1,t +9466,6141,182,10,f +9466,6157,0,2,f +9466,92409,0,4,f +9466,970c00pr0934,4,1,f +9466,973pr3147c01,297,1,f +9466,98138pr0023,182,1,t +9466,98138pr0023,182,1,f +9466,99781,71,2,f +9467,2335,4,5,f +9467,2335,1,5,f +9467,2339,8,2,f +9467,2362b,7,4,f +9467,2445,7,16,f +9467,2453a,15,4,f +9467,2456,8,11,f +9467,2458,7,8,f +9467,2540,4,5,f +9467,2540,1,5,f +9467,2736,7,2,f +9467,2819,7,2,f +9467,3001,8,9,f +9467,3002,8,10,f +9467,3003,8,18,f +9467,3004,8,4,f +9467,3005,8,6,f +9467,3007,7,8,f +9467,3009,8,6,f +9467,3010,7,6,f +9467,30145,4,2,f +9467,3020,1,14,f +9467,3022,4,21,f +9467,3022,19,6,f +9467,3023,19,20,f +9467,3031,4,8,f +9467,3032,0,8,f +9467,3034,8,4,f +9467,3035,8,1,f +9467,30363,1,4,f +9467,30489,19,4,f +9467,30489pb01,19,2,f +9467,30489pb02,19,2,f +9467,30520,15,2,f +9467,3068b,19,25,f +9467,3069b,19,12,f +9467,32034,0,2,f +9467,32062,0,10,f +9467,32064b,0,10,f +9467,32073,7,6,f +9467,32123b,7,1,t +9467,32123b,7,6,f +9467,32192,4,12,f +9467,32532,1,2,f +9467,3297,1,4,f +9467,3403c01,1,2,f +9467,3460,1,1,f +9467,3460,15,16,f +9467,3622,8,2,f +9467,3623,7,8,f +9467,3626bpb0131,6,1,f +9467,3626bpb0132,78,1,f +9467,3626bpb0137,6,1,f +9467,3626bpb0138,78,1,f +9467,3626bpb0140,6,1,f +9467,3626bpb0145,6,1,f +9467,3626bpb0148,92,1,f +9467,3626bpb0149,6,1,f +9467,3626bpb0152,6,1,f +9467,3626bpb0154,6,1,f +9467,3666,19,8,f +9467,3666,4,2,f +9467,3700,7,4,f +9467,3705,0,2,f +9467,3710,19,8,f +9467,3710,15,5,f +9467,3754pb05,47,2,f +9467,3901,19,1,f +9467,4070,4,2,f +9467,4162,4,2,f +9467,4162,15,2,f +9467,41819c01,19,2,f +9467,4282,8,2,f +9467,4282,7,10,f +9467,43085,1,4,f +9467,43086,1,4,f +9467,43093,1,8,f +9467,43372,19,10,f +9467,43373,25,2,f +9467,43374,15,2,f +9467,43702pr0001,25,3,f +9467,4515,1,2,f +9467,4515,4,8,f +9467,4519,7,4,f +9467,51011,79,2,f +9467,6141,42,2,f +9467,6141,42,1,t +9467,6538b,0,2,f +9467,6575,0,2,f +9467,973bpb138c01,272,1,f +9467,973bpb148c01,272,1,f +9467,973bpb181c01,110,1,f +9467,973bpb182c01,110,1,f +9467,973bpb183c01,15,1,f +9467,973bpb184c01,15,1,f +9467,973bpb185c01,272,1,f +9467,973bpb186c01,15,1,f +9467,973bpb187c01,15,1,f +9467,973bpb282c01,15,1,f +9467,bb84pb01,25,1,f +9467,x494cx1,272,2,f +9467,x494cx1,15,4,f +9467,x494cx1,110,2,f +9467,x494cx2,272,1,f +9467,x494cx2,15,1,f +9468,11816pr0002,78,1,f +9468,12825,15,1,f +9468,2412b,71,2,f +9468,2877,14,1,f +9468,3001,27,2,f +9468,3003,2,1,f +9468,3004,19,2,f +9468,30176,2,2,f +9468,3020,14,1,f +9468,3020,27,2,f +9468,3022,71,2,f +9468,3023,15,6,f +9468,3031,27,1,f +9468,3039,14,4,f +9468,3176,71,1,f +9468,32028,323,1,f +9468,33172,25,1,f +9468,33183,10,1,f +9468,33183,10,1,t +9468,33291,5,1,t +9468,33291,5,3,f +9468,3794b,27,1,f +9468,3795,72,1,f +9468,41854,27,1,f +9468,44674,323,2,f +9468,44728,15,1,f +9468,4600,0,3,f +9468,4623,71,1,f +9468,4624,71,2,f +9468,4727,10,1,f +9468,4865b,322,2,f +9468,54200,29,2,f +9468,54200,29,1,t +9468,56890,0,4,f +9468,6014b,15,4,f +9468,6141,36,2,f +9468,6141,36,1,t +9468,6231,322,2,f +9468,87414,0,2,f +9468,87580,14,2,f +9468,92255,226,1,f +9468,92456prx001,78,1,f +9468,92820pr0004c01,29,1,f +9468,98387pr0001,15,1,f +9468,98397,71,1,f +9470,2446,8,1,f +9470,2447,42,1,f +9470,2569,42,1,f +9470,3002,15,1,f +9470,30033,15,1,f +9470,30034,15,2,f +9470,30035,15,1,f +9470,30036,15,2,f +9470,3004,15,1,f +9470,3009,0,1,f +9470,3020,15,1,f +9470,3023,15,2,f +9470,3034,0,1,f +9470,3068b,0,3,f +9470,3479,15,2,f +9470,3479,0,2,f +9470,3626bp69,14,1,f +9470,3666,0,2,f +9470,3679,7,1,f +9470,3680,0,1,f +9470,3706,0,1,f +9470,3709,0,1,f +9470,3710,15,1,f +9470,3747b,0,1,f +9470,3795,0,2,f +9470,3795,15,1,f +9470,3838,0,1,f +9470,3940b,0,2,f +9470,3940b,15,2,f +9470,3941,0,1,f +9470,3960,33,1,f +9470,3960,42,1,f +9470,3960,0,2,f +9470,3960,36,1,f +9470,4032a,0,2,f +9470,4032a,15,3,f +9470,4081b,0,2,f +9470,4275b,0,4,f +9470,4276b,15,2,f +9470,4531,15,2,f +9470,4589,42,1,f +9470,4590,0,2,f +9470,4595,0,2,f +9470,4740,42,2,f +9470,4859,15,1,f +9470,6019,15,1,f +9470,6104,0,1,f +9470,6141,42,2,f +9470,6232,15,1,f +9470,6259,33,2,f +9470,970x026,7,1,f +9470,973pb0004c01,15,1,f +9471,satchel4,9999,1,f +9473,3626bpr0043,14,1,f +9473,41879a,272,1,f +9473,6093,0,1,f +9473,6251,15,1,f +9473,973pr1485c01,4,1,f +9475,2496,0,2,f +9475,2655,7,2,f +9475,3020,4,1,f +9475,3022,4,1,f +9475,3039,47,1,f +9475,3794a,4,1,f +9475,3941,4,1,f +9475,6141,33,1,f +9476,2456,1,4,f +9476,2456,2,2,f +9476,2456,71,2,f +9476,2456,4,2,f +9476,2456,15,4,f +9476,2456,14,2,f +9476,2456,0,2,f +9476,3001,14,20,f +9476,3001,25,10,f +9476,3001,71,10,f +9476,3001,2,10,f +9476,3001,4,20,f +9476,3001,15,26,f +9476,3001,1,26,f +9476,3001,0,20,f +9476,3002,25,8,f +9476,3002,1,20,f +9476,3002,4,10,f +9476,3002,0,8,f +9476,3002,14,10,f +9476,3002,71,8,f +9476,3002,2,8,f +9476,3002,15,20,f +9476,3003,0,20,f +9476,3003,14,24,f +9476,3003,1,36,f +9476,3003,25,18,f +9476,3003,4,24,f +9476,3003,71,18,f +9476,3003,15,36,f +9476,3003,2,20,f +9476,3004,15,24,f +9476,3004,71,10,f +9476,3004,4,20,f +9476,3004,1,24,f +9476,3004,14,20,f +9476,3004,2,10,f +9476,3004,25,10,f +9476,3004,0,10,f +9476,3005,14,6,f +9476,3005,2,6,f +9476,3005,0,6,f +9476,3005,4,6,f +9476,3005,15,8,f +9476,3005,1,8,f +9476,3005,71,6,f +9476,3005,25,6,f +9476,3007,14,2,f +9476,3007,2,2,f +9476,3007,15,2,f +9476,3007,1,2,f +9476,3007,71,2,f +9476,3007,0,2,f +9476,3007,4,2,f +9476,3007,25,2,f +9476,3008,4,2,f +9476,3008,2,2,f +9476,3008,1,4,f +9476,3008,0,2,f +9476,3008,71,2,f +9476,3008,14,2,f +9476,3008,15,4,f +9476,3009,4,4,f +9476,3009,15,8,f +9476,3009,2,4,f +9476,3009,14,4,f +9476,3009,0,4,f +9476,3009,1,8,f +9476,3009,71,4,f +9476,3010,15,10,f +9476,3010,71,6,f +9476,3010,25,6,f +9476,3010,0,6,f +9476,3010,14,8,f +9476,3010,4,8,f +9476,3010,2,6,f +9476,3010,1,10,f +9476,3622,1,8,f +9476,3622,15,8,f +9476,3622,4,4,f +9476,3622,2,4,f +9476,3622,25,4,f +9476,3622,71,4,f +9476,3622,14,4,f +9476,3622,0,6,f +9477,2412b,0,1,f +9477,2446,15,1,f +9477,3039,1,1,f +9477,3069bp61,15,1,f +9477,3475b,0,2,f +9477,3626bp62,14,1,f +9477,3795,1,1,f +9477,3838,15,1,f +9477,3937,1,1,f +9477,3938,15,1,f +9477,4085c,15,2,f +9477,4349,0,1,f +9477,4859,15,1,f +9477,6117,57,1,f +9477,6119,57,1,f +9477,970x023,0,1,f +9477,973p62c01,0,1,f +9478,10201,71,1,f +9478,11211,71,1,f +9478,11214,72,1,f +9478,11477,72,1,f +9478,15068pr0018,0,1,f +9478,15068pr0018,0,1,t +9478,15533,84,3,f +9478,15573,15,2,f +9478,18677,0,4,f +9478,24201,0,2,f +9478,24246pr0001,179,4,f +9478,24246pr0001,179,1,t +9478,2432,85,1,f +9478,2432,148,1,f +9478,2454a,0,2,f +9478,2654,71,1,f +9478,27145,85,1,t +9478,27145,85,1,f +9478,27145,14,1,t +9478,27145,14,1,f +9478,2780,0,1,f +9478,2780,0,1,t +9478,28777,85,1,f +9478,28778,320,1,f +9478,29028,14,1,f +9478,29292,85,1,f +9478,29384,70,1,f +9478,29453,14,1,f +9478,30031,179,1,f +9478,3004,0,1,f +9478,3010,0,5,f +9478,30153,36,1,f +9478,30153,47,1,f +9478,3020,0,2,f +9478,3021,72,1,f +9478,3023,46,3,f +9478,3023,0,1,f +9478,3028,71,1,f +9478,3030,0,1,f +9478,30383,72,1,f +9478,30553,72,2,f +9478,3068b,15,1,f +9478,3069b,0,1,f +9478,32015,179,2,f +9478,32016,0,2,f +9478,32034,0,2,f +9478,32073,71,2,f +9478,3626cpr2102,78,1,f +9478,3626cpr6173634,85,1,f +9478,3626cpr6174165,85,1,f +9478,3660,0,2,f +9478,3666,15,1,f +9478,3713,71,2,f +9478,3713,71,1,t +9478,3749,19,4,f +9478,4274,71,1,t +9478,4274,71,1,f +9478,43093,1,2,f +9478,44300,72,2,f +9478,44302a,71,1,f +9478,44567a,72,1,f +9478,48336,71,1,f +9478,48729b,72,1,f +9478,48729b,72,1,t +9478,54200,15,1,t +9478,54200,288,2,f +9478,54200,288,1,t +9478,54200,15,2,f +9478,55981,85,2,f +9478,60470b,71,1,f +9478,60471,0,1,f +9478,60478,72,1,f +9478,60581,47,1,f +9478,60596,0,1,f +9478,60616a,47,1,f +9478,61184,71,2,f +9478,61409,15,2,f +9478,6141,179,6,f +9478,6141,179,1,t +9478,61780,2,1,f +9478,62462,0,1,f +9478,6536,85,1,f +9478,6553,72,4,f +9478,85861,71,1,f +9478,85861,71,1,t +9478,87079,0,1,f +9478,88072,72,1,f +9478,88704,0,1,f +9478,88704,0,1,t +9478,92402,0,2,f +9478,92690,71,1,f +9478,93609,72,1,f +9478,93609,72,1,t +9478,970c00pr1187,85,1,f +9478,970c00pr6173642,85,1,f +9478,970x037pr1177,78,1,f +9478,973pr3639c01,85,1,f +9478,973pr3642c01,4,1,f +9478,973pr6173660,85,1,f +9478,98138,52,1,f +9478,98138,52,1,t +9478,98138,36,1,t +9478,98138,36,1,f +9478,98721,14,2,f +9478,98721,14,1,t +9478,99206,71,1,f +9478,99780,72,3,f +9478,99784,71,1,f +9479,22239,89,1,f +9479,30153,47,1,f +9479,30153,45,1,f +9479,30153,33,1,f +9479,3035,73,1,f +9479,3062b,15,4,f +9479,33051,2,1,f +9479,33054,383,1,f +9479,3794a,73,1,f +9479,4088px2,15,1,f +9479,4536pb01,15,2,f +9479,4589,46,1,f +9479,4599a,15,1,f +9479,4738a,45,1,f +9479,4739a,45,1,f +9479,4740,45,1,f +9479,6124,45,1,f +9479,6141,15,4,f +9479,6176,5,1,f +9479,6182,15,1,f +9479,6251pr0002,15,1,f +9479,6251pr02,68,1,f +9479,92410,73,1,f +9479,cloth5,15,1,f +9479,pouch06,18,1,f +9479,x15,17,1,f +9480,30480ps0,320,1,f +9480,970c00pb291,320,1,f +9480,973pb1600c01,320,1,f +9481,2412b,72,5,f +9481,2431,320,2,f +9481,2432,72,7,f +9481,2444,72,3,f +9481,2654,0,1,f +9481,2714a,71,1,f +9481,2730,0,2,f +9481,2780,0,1,t +9481,2780,0,48,f +9481,2877,0,3,f +9481,298c02,71,1,f +9481,298c02,71,1,t +9481,30041,72,2,f +9481,30042,72,2,f +9481,30136,19,2,f +9481,3021,71,6,f +9481,3023,72,8,f +9481,3031,72,2,f +9481,3032,71,1,f +9481,3035,19,2,f +9481,30359b,72,1,f +9481,30365,72,3,f +9481,30414,0,4,f +9481,30503,72,5,f +9481,3068b,71,2,f +9481,3069b,27,9,f +9481,3069bpr0101,71,1,f +9481,32009,72,2,f +9481,32013,72,5,f +9481,32015,71,2,f +9481,32062,4,3,f +9481,32064b,72,1,f +9481,32316,72,2,f +9481,32324,71,1,f +9481,32524,71,2,f +9481,32526,71,2,f +9481,32529,71,4,f +9481,32530,0,6,f +9481,32531,71,2,f +9481,3298,71,1,f +9481,3460,72,2,f +9481,3623,71,3,f +9481,3626b,0,2,f +9481,3665,71,2,f +9481,3666,320,2,f +9481,3679,71,1,f +9481,3680,0,1,f +9481,3700,71,3,f +9481,3702,71,4,f +9481,3709,0,5,f +9481,3710,72,5,f +9481,3738,72,3,f +9481,3747b,72,1,f +9481,3794a,320,3,f +9481,3795,71,5,f +9481,3829c01,0,1,f +9481,3832,71,1,f +9481,3894,72,5,f +9481,3937,0,2,f +9481,3941,42,1,f +9481,3960,71,2,f +9481,4032a,72,5,f +9481,4032a,1,5,f +9481,4079b,0,3,f +9481,4150,15,1,f +9481,4150pr0002,19,2,f +9481,4150pr0022,71,2,f +9481,41532,0,4,f +9481,41539,71,1,f +9481,41678,71,2,f +9481,41747,72,1,f +9481,41748,72,1,f +9481,41862,71,2,f +9481,42022,72,5,f +9481,42023,71,4,f +9481,4274,1,14,f +9481,4274,1,1,t +9481,43093,1,8,f +9481,43337,40,2,f +9481,43722,72,4,f +9481,43723,72,4,f +9481,43898,72,4,f +9481,44224,72,2,f +9481,44225,71,2,f +9481,44302a,71,6,f +9481,44375a,71,3,f +9481,44567a,0,1,f +9481,44568,71,2,f +9481,4510,71,2,f +9481,4519,71,9,f +9481,4588,72,2,f +9481,4589,72,2,f +9481,4623,71,2,f +9481,4740,71,2,f +9481,47457,15,1,f +9481,47753,72,1,f +9481,47905,72,2,f +9481,48169,72,1,f +9481,4865a,40,2,f +9481,50955,71,1,f +9481,50956,71,1,f +9481,50995pr0006,15,2,f +9481,51739,71,8,f +9481,52107,0,2,f +9481,54200,27,1,t +9481,54200,27,2,f +9481,54383,71,1,f +9481,54384,71,1,f +9481,57899,0,2,f +9481,59443,0,2,f +9481,60475a,71,2,f +9481,6106,71,2,f +9481,6134,71,2,f +9481,6141,19,6,f +9481,6141,19,1,t +9481,63965,4,1,f +9481,6536,72,2,f +9481,6558,1,13,f +9481,6587,72,1,f +9481,6629,71,4,f +9481,6636,71,2,f +9481,75535,71,5,f +9481,970c00,15,2,f +9481,973pr1309c01,15,2,f +9482,11476,0,2,f +9482,11477,14,4,f +9482,14704,71,2,f +9482,14769pr1033,15,1,f +9482,15208,15,2,f +9482,15208,0,1,f +9482,18649,71,2,f +9482,2412b,85,3,f +9482,2412b,71,1,f +9482,2736,71,2,f +9482,2921,0,2,f +9482,3010,14,1,f +9482,3020,14,3,f +9482,3022,0,1,f +9482,3023,14,4,f +9482,3023,85,4,f +9482,30236,72,1,f +9482,32064a,14,2,f +9482,32474pr1001,15,1,f +9482,3710,14,2,f +9482,41769,14,1,f +9482,41770,14,2,f +9482,44302a,72,1,f +9482,44728,14,1,f +9482,4735,0,2,f +9482,58176,179,1,f +9482,60475b,14,2,f +9482,60897,14,2,f +9482,6091,4,2,f +9482,63868,14,2,f +9482,64644,0,1,f +9482,85984,85,4,f +9482,85984,14,2,f +9482,87087,14,4,f +9482,92582,71,1,f +9482,99780,71,1,f +9483,2335pr02,15,1,f +9483,298c02,4,1,f +9483,298c02,4,1,t +9483,30374,15,1,f +9483,4032a,15,1,f +9483,4081b,4,2,f +9483,4589,25,4,f +9483,54200,40,1,f +9483,54200,40,1,t +9483,6141,0,1,t +9483,6141,0,4,f +9484,6787,14,1,f +9484,6788,2,2,f +9487,2419,4,2,f +9487,2420,320,6,f +9487,2436,4,3,f +9487,3003,4,2,f +9487,3004,320,3,f +9487,3005,4,2,f +9487,3010,4,1,f +9487,3020,320,2,f +9487,3020,4,5,f +9487,3021,4,2,f +9487,3021,19,7,f +9487,3022,4,4,f +9487,3022,19,4,f +9487,3023,4,10,f +9487,3023,19,4,f +9487,3023,320,8,f +9487,3024,19,4,f +9487,3024,4,3,f +9487,30383,71,4,f +9487,3039,320,6,f +9487,3040b,4,6,f +9487,3045,320,2,f +9487,3068b,320,3,f +9487,3069b,320,4,f +9487,3298,4,2,f +9487,3623,320,3,f +9487,3660,19,1,f +9487,3666,320,2,f +9487,3795,19,3,f +9487,41769,4,2,f +9487,41770,4,2,f +9487,4286,4,2,f +9487,44301a,4,7,f +9487,44302a,0,10,f +9487,44728,4,2,f +9487,47455,0,3,f +9487,47759,320,1,f +9487,48169,72,1,f +9487,48170,4,2,f +9487,48171,72,1,f +9487,48172,0,1,f +9487,4871,4,1,f +9487,4871,19,2,f +9487,49668,15,18,f +9487,51739,320,1,f +9487,54200,0,1,t +9487,54200,0,2,f +9487,60470a,4,2,f +9487,60471,4,1,f +9487,60478,71,6,f +9487,6141,42,1,t +9487,6141,42,4,f +9487,6141,0,1,t +9487,6141,0,4,f +9487,61678,320,3,f +9487,63868,72,2,f +9487,85984,15,1,f +9487,87087,0,2,f +9488,3001,14,6,f +9488,3001,4,8,f +9488,3001,15,6,f +9488,3001pr1,14,1,f +9488,3002,15,2,f +9488,3002,0,2,f +9488,3002,4,4,f +9488,3002,14,2,f +9488,3003,0,4,f +9488,3003,4,8,f +9488,3003,14,6,f +9488,3003,15,8,f +9488,3003pe1,14,2,f +9488,3007,4,2,f +9488,3185,15,4,f +9488,4204,2,1,f +9488,4727,2,4,f +9488,4728,1,2,f +9488,4728,14,2,f +9488,4743,14,1,f +9488,4744,7,1,f +9488,4744pb20,7,1,f +9488,4744pr0001,0,1,f +9488,4744px2,4,1,f +9488,601,15,2,f +9488,6213px4,4,1,f +9488,6214px2,2,1,f +9488,6215,14,8,f +9488,6216,2,1,f +9488,6216,14,1,f +9488,6234,15,1,f +9488,6235,4,1,f +9488,6236,4,1,f +9488,6244px1,14,1,f +9488,82249,15,1,f +9491,11153,272,4,f +9491,12825,0,3,f +9491,2357,0,2,f +9491,2412b,320,13,f +9491,2420,15,6,f +9491,2420,19,6,f +9491,2431,320,2,f +9491,2431,0,2,f +9491,2447,47,1,t +9491,2447,47,1,f +9491,2449,19,2,f +9491,2458,72,4,f +9491,2540,0,12,f +9491,2654,0,7,f +9491,2654,71,6,f +9491,2817,0,2,f +9491,2921,0,2,f +9491,298c02,0,2,t +9491,298c02,0,3,f +9491,3001,0,2,f +9491,3003,15,3,f +9491,3004,19,3,f +9491,3004,272,3,f +9491,3005,0,8,f +9491,3005,15,4,f +9491,3005,19,4,f +9491,3009,19,3,f +9491,3010,0,3,f +9491,3010,15,2,f +9491,30154,72,1,f +9491,30162,72,2,f +9491,30162,71,1,f +9491,30165,0,2,f +9491,30176,2,1,f +9491,3020,71,4,f +9491,3020,0,2,f +9491,3020,19,1,f +9491,3021,272,8,f +9491,3021,71,4,f +9491,3023,72,2,f +9491,3023,320,7,f +9491,3023,15,9,f +9491,3023,19,12,f +9491,3023,0,11,f +9491,30237b,0,2,f +9491,3024,15,1,t +9491,3024,15,6,f +9491,3024,19,3,f +9491,3024,19,1,t +9491,3032,19,3,f +9491,3033,288,2,f +9491,3034,0,1,f +9491,3034,15,1,f +9491,3035,19,2,f +9491,30367b,71,1,f +9491,30367b,15,3,f +9491,3037,272,2,f +9491,30374,71,1,f +9491,30377,15,1,t +9491,30377,15,2,f +9491,3039,19,8,f +9491,3039,272,5,f +9491,3039,72,2,f +9491,3040b,72,2,f +9491,3040b,0,4,f +9491,3040b,19,2,f +9491,30414,0,1,f +9491,3044c,272,1,f +9491,3045,272,6,f +9491,3062b,0,4,f +9491,3062b,320,6,f +9491,3062b,15,6,f +9491,30663,0,3,f +9491,3069b,71,6,f +9491,3069b,272,16,f +9491,3069bpr0101,71,3,f +9491,3070b,320,1,t +9491,3070b,272,2,f +9491,3070b,272,1,t +9491,3070b,320,1,f +9491,3070bpr0007,71,1,t +9491,3070bpr0007,71,2,f +9491,3176,0,1,f +9491,32001,0,1,f +9491,32001,71,2,f +9491,32028,15,12,f +9491,32039,0,3,f +9491,32062,4,3,f +9491,32064b,0,5,f +9491,32073,71,3,f +9491,32124,0,1,f +9491,32270,0,6,f +9491,32316,0,2,f +9491,32449,15,2,f +9491,32498,0,2,f +9491,3298,71,3,f +9491,3460,15,3,f +9491,3460,19,2,f +9491,3460,0,1,f +9491,3622,19,2,f +9491,3622,72,2,f +9491,3623,15,6,f +9491,3623,19,3,f +9491,3626bpr0001,14,3,f +9491,3647,72,1,f +9491,3647,72,1,t +9491,3660,19,2,f +9491,3665,19,10,f +9491,3666,19,2,f +9491,3666,15,2,f +9491,3666,320,1,f +9491,3666,0,1,f +9491,3673,71,2,t +9491,3673,71,3,f +9491,3700,15,3,f +9491,3700,71,2,f +9491,3701,71,6,f +9491,3705,0,4,f +9491,3706,0,2,f +9491,3709,72,3,f +9491,3710,0,10,f +9491,3710,72,2,f +9491,3713,71,3,f +9491,3713,71,2,t +9491,3743,71,1,f +9491,3794a,272,1,f +9491,3794a,320,1,f +9491,3794a,19,7,f +9491,3795,15,1,f +9491,3795,71,1,f +9491,3795,19,2,f +9491,3832,15,2,f +9491,3878,0,1,f +9491,3894,0,4,f +9491,3900,71,1,f +9491,3941,0,2,f +9491,3942c,0,1,f +9491,4032a,19,5,f +9491,4070,15,4,f +9491,4070,0,14,f +9491,4079b,70,1,f +9491,4081b,15,4,f +9491,41334,0,1,f +9491,4150pr0022,71,1,f +9491,4162,71,2,f +9491,42023,19,12,f +9491,4216,15,14,f +9491,42446,71,2,f +9491,42446,71,2,t +9491,4282,15,1,f +9491,4285b,71,2,f +9491,4286,0,2,f +9491,43093,1,2,f +9491,4460b,19,1,f +9491,4477,71,2,f +9491,4477,19,1,f +9491,4519,71,2,f +9491,4599b,15,1,t +9491,4599b,0,1,t +9491,4599b,0,1,f +9491,4599b,15,2,f +9491,4623,0,1,f +9491,4733,15,1,f +9491,4733,71,2,f +9491,4740,0,1,f +9491,4740,71,1,f +9491,48336,0,3,f +9491,48336,71,1,f +9491,49668,19,2,f +9491,50304,71,2,f +9491,50305,71,2,f +9491,54200,19,1,t +9491,54200,320,1,t +9491,54200,272,1,t +9491,54200,0,1,t +9491,54200,320,2,f +9491,54200,272,7,f +9491,54200,19,3,f +9491,54200,0,2,f +9491,55013,72,1,f +9491,58176,33,1,f +9491,59443,0,2,f +9491,59900,71,5,f +9491,59900,19,1,f +9491,60474,320,1,f +9491,60483,0,1,f +9491,61409,0,2,f +9491,6141,36,1,f +9491,6141,19,1,t +9491,6141,34,1,f +9491,6141,19,6,f +9491,6141,120,5,f +9491,6141,179,1,t +9491,6141,34,1,t +9491,6141,0,9,f +9491,6141,0,1,t +9491,6141,15,22,f +9491,6141,36,1,t +9491,6141,15,2,t +9491,61485,0,1,f +9491,63868,0,6,f +9491,63965,0,1,f +9491,64566,0,2,f +9491,64567,71,1,t +9491,64567,71,1,f +9491,64799,71,2,f +9491,6541,0,2,f +9491,6553,71,1,f +9491,6589,19,1,t +9491,6589,19,5,f +9491,6636,72,3,f +9491,6636,0,2,f +9491,73983,0,1,f +9491,85984,15,2,f +9491,87079,15,2,f +9491,87083,72,2,f +9491,87552,0,2,f +9491,87580,71,2,f +9491,87580,15,1,f +9491,87751,179,2,f +9491,87781,15,1,f +9491,92338,297,2,f +9491,92593,15,2,f +9491,92947,71,2,f +9491,92947,15,10,f +9491,92950,15,1,f +9491,970x001,272,3,f +9491,973pr2105c01,272,3,f +9491,98138,47,1,t +9491,98138,71,1,t +9491,98138,47,2,f +9491,98138,71,2,f +9491,98283,71,3,f +9491,98567,0,1,f +9491,99207,71,1,f +9492,16542,14,1,f +9492,2412b,15,15,f +9492,2431,72,1,f +9492,2432,15,1,f +9492,2447,40,1,t +9492,2447,40,1,f +9492,2458,15,1,f +9492,2508,15,1,f +9492,2654,0,1,f +9492,2877,15,3,f +9492,3001,4,1,f +9492,3003,4,3,f +9492,3008,4,2,f +9492,30086,72,1,f +9492,3010,15,1,f +9492,30150,15,1,f +9492,3020,72,1,f +9492,3021,71,3,f +9492,3022,15,2,f +9492,3023,4,6,f +9492,30237a,4,2,f +9492,30237a,15,2,f +9492,3032,72,2,f +9492,3032,4,1,f +9492,3034,72,1,f +9492,30374,14,1,f +9492,30383,15,2,f +9492,30390b,71,1,f +9492,30414,72,1,f +9492,30553,71,4,f +9492,30592,71,1,f +9492,3062b,14,2,f +9492,3069b,36,4,f +9492,3069b,33,2,f +9492,3183c,71,1,f +9492,32013,15,1,f +9492,32083,4,1,f +9492,3622,4,2,f +9492,3626bpr0325,14,1,f +9492,3626bpr0388,14,1,f +9492,3659,4,2,f +9492,3660,4,4,f +9492,3665,4,4,f +9492,3666,15,6,f +9492,3678b,4,2,f +9492,3700,14,2,f +9492,3705,0,2,f +9492,3710,15,5,f +9492,3743,15,2,f +9492,3794a,71,3,f +9492,3795,4,1,f +9492,3795,15,2,f +9492,3795,72,2,f +9492,3829c01,14,1,f +9492,3829c01,15,1,f +9492,3834,15,1,f +9492,3834,80,1,f +9492,3835,0,1,f +9492,3838,14,1,f +9492,3840,25,1,f +9492,3962b,0,1,f +9492,4079,14,1,f +9492,4085c,15,1,f +9492,4162,72,2,f +9492,4176,40,1,f +9492,4207,15,2,f +9492,4208,0,1,f +9492,4209,4,1,f +9492,4215b,4,1,f +9492,4345b,4,1,f +9492,4346,15,1,f +9492,44301a,71,2,f +9492,44567a,72,1,f +9492,44675,71,1,f +9492,44728,72,1,f +9492,4488,0,8,f +9492,4532,4,2,f +9492,4533,15,2,f +9492,4597,15,1,f +9492,4599a,14,2,f +9492,47905,19,4,f +9492,4865a,4,4,f +9492,50745,72,8,f +9492,50950,15,2,f +9492,51858,15,1,f +9492,52031,4,1,f +9492,52037,72,1,f +9492,52501,4,2,f +9492,54200,33,6,f +9492,54200,4,2,f +9492,54200,46,2,f +9492,54200,4,1,t +9492,54200,33,1,t +9492,54200,46,1,t +9492,6014b,15,8,f +9492,6015,0,8,f +9492,6154,4,2,f +9492,6155,15,2,f +9492,6158,72,1,f +9492,6636,4,1,f +9492,7239stk01,9999,1,t +9492,970c00,0,2,f +9492,973pr1187c01,0,1,f +9492,973pr1667c01,0,1,f +9493,2346,0,2,f +9493,2780,0,24,f +9493,2815,0,2,f +9493,32013,0,4,f +9493,32013,484,1,f +9493,32015,484,6,f +9493,32034,0,1,f +9493,32039,484,2,f +9493,32062,0,19,f +9493,32073,7,2,f +9493,32123b,7,6,f +9493,32138,0,1,f +9493,32174,4,2,f +9493,32174,484,6,f +9493,32174,1,2,f +9493,32184,8,2,f +9493,32192,0,4,f +9493,32201,6,2,f +9493,32270,7,1,f +9493,32278,8,2,f +9493,32278,6,3,f +9493,32291,6,1,f +9493,32291,8,6,f +9493,32316,6,2,f +9493,32474,0,2,f +9493,32476,8,2,f +9493,32482,8,2,f +9493,32523,6,2,f +9493,32523,0,3,f +9493,32525,0,2,f +9493,32566,73,1,f +9493,32576,1,2,f +9493,32579,7,1,f +9493,3482,0,2,f +9493,3648b,0,2,f +9493,3705,0,4,f +9493,3706,0,2,f +9493,3713,7,3,f +9493,3749,19,10,f +9493,41669,484,6,f +9493,41670,4,2,f +9493,41677,0,6,f +9493,41678,0,1,f +9493,4185,0,2,f +9493,4274,7,4,f +9493,43093,1,11,f +9493,44135,8,2,f +9493,44137,4,1,f +9493,44140,179,1,f +9493,44294,7,1,f +9493,44809,1,2,f +9493,44810,4,1,f +9493,44811,179,1,f +9493,44812,179,1,f +9493,44847,135,1,f +9493,44936,179,2,f +9493,4519,7,7,f +9493,6536,0,4,f +9493,6538b,8,2,f +9493,6538b,0,1,f +9493,6553,6,6,f +9493,6558,0,3,f +9493,6587,8,4,f +9493,78c13,6,2,f +9493,78c18,6,2,f +9493,78c24,484,2,f +9495,14210,2,1,f +9495,2335px2,1,3,f +9495,2343,14,2,f +9495,2431,7,6,f +9495,2444,0,2,f +9495,2458,7,3,f +9495,2540,0,3,f +9495,2562,0,1,f +9495,3004,7,1,f +9495,3005,7,7,f +9495,3006,4,1,f +9495,3009,4,2,f +9495,3010,7,1,f +9495,30136,7,4,f +9495,30136,15,8,f +9495,30137,15,2,f +9495,30137,7,2,f +9495,30140,15,4,f +9495,30153,36,1,f +9495,30173a,0,1,f +9495,30173a,7,2,f +9495,30174,8,1,f +9495,30175,8,1,f +9495,30175,7,1,f +9495,30176,2,4,f +9495,30177,0,1,f +9495,3022,0,2,f +9495,30223,6,2,f +9495,30224,7,2,f +9495,3023,0,4,f +9495,3023,1,3,f +9495,3028,0,1,f +9495,3032,0,2,f +9495,3039,0,4,f +9495,3040b,0,1,f +9495,3043,0,1,f +9495,3062b,14,1,f +9495,3062b,2,8,f +9495,3062b,4,14,f +9495,3062b,7,4,f +9495,3062b,0,6,f +9495,3068b,7,2,f +9495,3298,0,6,f +9495,3307,8,2,f +9495,3455,0,1,f +9495,3581,0,2,f +9495,3623,0,4,f +9495,3626bpn1,14,1,f +9495,3626bpx5,14,1,f +9495,3626bpx6,14,1,f +9495,3633,15,2,f +9495,3666,4,3,f +9495,3666,0,2,f +9495,3684,0,2,f +9495,3710,0,2,f +9495,3849,6,1,f +9495,3867,2,1,f +9495,3940b,8,1,f +9495,3942b,7,2,f +9495,3959,0,2,f +9495,4070,4,4,f +9495,4161,0,4,f +9495,4286,0,2,f +9495,4497,6,4,f +9495,4589,42,2,f +9495,4733,7,2,f +9495,4740,7,4,f +9495,4865a,1,4,f +9495,529,334,1,f +9495,6123,8,1,f +9495,6541,0,4,f +9495,6587,8,1,f +9495,970c00,0,1,f +9495,970c11pb02b,0,1,f +9495,970x023,0,1,f +9495,973pn1c01,1,1,f +9495,973px11c01,0,1,f +9495,973px12c01,1,1,f +9495,x55,47,1,f +9496,32002,8,100,f +9497,case9,4,1,f +9499,2536,7,2,f +9499,2780,0,21,f +9499,2906,0,1,f +9499,2907,7,2,f +9499,2952,0,1,f +9499,32002,8,12,f +9499,32009,1,2,f +9499,32009,0,2,f +9499,32013,1,2,f +9499,32013,15,4,f +9499,32013,0,17,f +9499,32014,0,2,f +9499,32015,0,5,f +9499,32015,15,4,f +9499,32016,0,4,f +9499,32017,0,4,f +9499,32034,1,4,f +9499,32039,0,9,f +9499,32056,1,2,f +9499,32056,0,2,f +9499,32062,0,26,f +9499,32073,0,9,f +9499,32123b,7,22,f +9499,32138,0,4,f +9499,32140,1,2,f +9499,32190,1,2,f +9499,32191,1,2,f +9499,32198,7,1,f +9499,32200,1,1,f +9499,32235,1,2,f +9499,3673,7,4,f +9499,3703,0,2,f +9499,3705,0,13,f +9499,3707,0,4,f +9499,3708,0,1,f +9499,3713,7,10,f +9499,3737,0,3,f +9499,3749,7,9,f +9499,4282,0,4,f +9499,4288,0,3,f +9499,4519,0,16,f +9499,6536,0,2,f +9499,6536,1,4,f +9499,6536,7,4,f +9499,6536,15,4,f +9499,6538b,1,2,f +9499,6538b,7,2,f +9499,6538b,0,6,f +9499,6540a,7,1,f +9499,6558,0,2,f +9499,6589,7,5,f +9499,6632,1,2,f +9499,6632,0,10,f +9499,6632,7,8,f +9499,6642,8,1,f +9499,6643,8,2,f +9499,75c13,8,1,f +9499,78c02,1,3,f +9499,78c04,1,3,f +9499,78c10,0,2,f +9499,flex08c06l,7,1,f +9499,flex08c18l,7,1,f +9503,2346,0,6,f +9503,2420,14,2,f +9503,2431,0,1,f +9503,2431,14,2,f +9503,2431pt0,15,1,f +9503,2436,0,1,f +9503,2569,0,1,f +9503,2715,4,1,f +9503,2716,47,1,f +9503,2717,4,1,f +9503,2744,14,2,f +9503,2825,14,4,f +9503,3005,14,4,f +9503,3010,0,1,f +9503,3021,0,2,f +9503,3022,14,2,f +9503,3023,14,6,f +9503,3023,0,5,f +9503,3024,14,2,f +9503,3069b,7,4,f +9503,3482,15,6,f +9503,3623,14,2,f +9503,3647,7,2,f +9503,3648a,7,1,f +9503,3650a,7,1,f +9503,3651,7,2,f +9503,3665,14,2,f +9503,3666,14,5,f +9503,3700,0,3,f +9503,3701,0,3,f +9503,3701,14,1,f +9503,3703,0,2,f +9503,3705,0,3,f +9503,3706,0,1,f +9503,3707,0,3,f +9503,3709,14,3,f +9503,3709,0,1,f +9503,3710,0,2,f +9503,3710,14,2,f +9503,3713,7,4,f +9503,3737,0,1,f +9503,3738,0,1,f +9503,3738,14,2,f +9503,3743,7,2,f +9503,3749,7,16,f +9503,3894,14,2,f +9503,3895,14,2,f +9503,3956,0,2,f +9503,4150p01,15,2,f +9503,4185,7,2,f +9503,4261,7,4,f +9503,4265a,7,5,f +9503,4273b,7,9,f +9503,4274,7,4,f +9503,4286,14,2,f +9503,4442,0,4,f +9503,4442,7,2,f +9503,4459,0,6,f +9503,4864apt3,15,2,f +9503,tech006,9999,1,f +9504,3003pe2,15,1,f +9504,3004,15,1,f +9504,3021,15,1,f +9504,3022,4,1,f +9504,3022,25,1,f +9504,3023,15,1,f +9504,3069b,4,1,f +9504,3747b,15,1,f +9505,27bc01,15,1,f +9505,29bc01,15,2,f +9505,3001a,4,11,f +9505,3002a,4,12,f +9505,3003,4,13,f +9505,3004,4,9,f +9505,3005,4,2,f +9505,3006,4,2,f +9505,3007,4,6,f +9505,3008,4,2,f +9505,3020,7,14,f +9505,3022,0,2,f +9505,3022,7,3,f +9505,3037,1,34,f +9505,3038,1,6,f +9505,3039,1,9,f +9505,3041,1,3,f +9505,3042,1,1,f +9505,3043,1,2,f +9505,3045,1,12,f +9505,3046a,1,4,f +9505,3048a,1,3,f +9505,3062a,4,4,f +9505,3081bc01,15,2,f +9505,32bc01,15,1,f +9505,453bc01,15,2,f +9505,646bc01,15,1,f +9505,700ex,2,2,f +9505,962,1,1,f +9505,ftbushh,2,4,f +9505,ftpineh,2,1,f +9506,250pb01,4,1,f +9506,253pb02,1,1,f +9506,255pb01,4,1,f +9506,256pb01,4,1,f +9506,257pb02,14,1,f +9506,260pb01,4,1,f +9506,260pb01,0,1,f +9506,260pb01,2,1,f +9506,270pb05,89,1,f +9506,270pb06,89,1,f +9506,270pb07,89,1,f +9506,270pb08,89,1,f +9506,27bc01,4,4,f +9506,29bc01,4,4,f +9506,3001a,4,29,f +9506,3001a,15,59,f +9506,3002a,15,12,f +9506,3003,47,32,f +9506,3003,15,23,f +9506,3003,4,17,f +9506,3005,15,118,f +9506,3005,4,3,f +9506,3005,47,6,f +9506,3006,4,9,f +9506,3006,15,18,f +9506,3007,4,12,f +9506,3007,15,11,f +9506,3008a,4,2,f +9506,3008a,47,2,f +9506,3008a,15,13,f +9506,3008pb011,15,1,f +9506,3009a,4,3,f +9506,3009a,15,4,f +9506,3009a,47,4,f +9506,3009apb23,15,1,f +9506,3034a,15,6,f +9506,3035a,15,9,f +9506,3036a,15,10,f +9506,3037,1,16,f +9506,3039,1,6,f +9506,3041,1,4,f +9506,3043,1,1,f +9506,3063b,47,14,f +9506,3063b,4,1,f +9506,3063b,15,18,f +9506,3065,47,69,f +9506,3065,4,13,f +9506,3065,15,111,f +9506,3081bc01,4,5,f +9506,3087bc01,4,4,f +9506,31bc01,4,4,f +9506,31bc01,15,2,f +9506,32bc01,15,1,f +9506,32bc01,4,4,f +9506,33bc01,4,5,f +9506,453bc01,15,2,f +9506,453bc01,4,4,f +9506,604c01,4,3,f +9506,645bc01,4,5,f +9506,646bc01,4,5,f +9506,700ex,7,1,f +9506,712a,15,4,f +9506,713a,15,6,f +9506,723a,80,1,f +9506,820,15,1,f +9506,821,15,1,f +9506,822ac01,15,1,f +9506,bb305pb01,15,1,f +9506,bb305pb02,15,1,f +9506,bb305pb03,15,1,f +9506,bb305pb05,15,1,f +9506,bb306pb01,15,1,f +9506,bb307pb01,15,1,f +9506,bb307pb05,15,1,f +9506,bb70pb01,15,1,f +9506,bb71pb01,15,1,f +9506,ftbirch,2,1,f +9506,ftbush,2,2,f +9506,ftcyp,2,2,f +9506,ftoak,2,1,f +9506,ftpine,2,2,f +9506,tplan08,89,1,f +9506,u9119c01,2,1,f +9508,30027,7,4,f +9508,30028,0,4,f +9508,30148,0,1,f +9508,30165,8,1,f +9508,3048c,7,1,f +9508,3626bpx32,14,1,f +9508,3795,14,1,f +9508,4485,1,1,f +9508,4735,7,1,f +9508,6157,7,2,f +9508,6187,7,1,f +9508,970c00,1,1,f +9508,973px64c01,15,1,f +9509,15,4,1,f +9509,17,1,1,f +9509,3001a,0,1,f +9509,3003,4,2,f +9509,3003,0,1,f +9509,3004,1,4,f +9509,3004,4,8,f +9509,3005,4,14,f +9509,3008,4,3,f +9509,3009,4,1,f +9509,3010,0,1,f +9509,3010,4,3,f +9509,3022,0,2,f +9509,3026,7,1,f +9509,3028,7,1,f +9509,3033,0,1,f +9509,3034,15,3,f +9509,3062a,0,1,f +9509,3081cc01,15,4,f +9509,3144,79,1,f +9509,3185,15,1,f +9509,3228a,1,4,f +9509,3471,2,1,f +9509,3579,15,1,f +9509,3624,0,1,f +9509,3626a,14,1,f +9509,7930,4,1,f +9509,812,7,1,f +9509,813,7,1,f +9509,815c01,15,1,f +9509,815c02,15,1,f +9510,3003,1,1,f +9510,3004,15,1,f +9510,3021,14,1,f +9510,3039,47,1,f +9510,3660,1,2,f +9510,3795,4,1,f +9510,6141,34,1,f +9510,6141,34,2,t +9510,6141,36,2,t +9510,6141,36,1,f +9511,2336,25,1,f +9511,2432,0,1,f +9511,2555,1,1,f +9511,30031,0,1,f +9511,3022,7,1,f +9511,3022,1,1,f +9511,30287p01,2,1,f +9511,3626bp7b,14,1,f +9511,3710,0,1,f +9511,3794a,0,1,f +9511,6019,0,2,f +9511,6117,7,2,f +9511,6120,7,2,f +9511,6141,42,1,t +9511,6141,42,2,f +9511,970x026,2,1,f +9511,973p7bc01,2,1,f +9512,2346,0,4,f +9512,2413,4,2,f +9512,2419,4,1,f +9512,2432,14,2,f +9512,2450,4,2,f +9512,2458,14,1,f +9512,2460,14,1,f +9512,2479,7,1,f +9512,30000,8,3,f +9512,3001,15,2,f +9512,3001,4,4,f +9512,3001,14,2,f +9512,3001,1,4,f +9512,3002,15,2,f +9512,3002,4,2,f +9512,3002,14,2,f +9512,3002,1,2,f +9512,3003,4,6,f +9512,3003,2,2,f +9512,3003,15,2,f +9512,3003,0,4,f +9512,3003,14,2,f +9512,3003,1,6,f +9512,3004,0,4,f +9512,3004,14,6,f +9512,3004,2,4,f +9512,3004,1,10,f +9512,3004,15,6,f +9512,3004,4,12,f +9512,3005,4,6,f +9512,3005,15,6,f +9512,3005,1,8,f +9512,3005,2,4,f +9512,3005,14,4,f +9512,3005,0,8,f +9512,3005pe1,14,2,f +9512,3008,4,2,f +9512,3008,1,2,f +9512,3009,1,2,f +9512,3009,4,2,f +9512,3010,4,10,f +9512,3010,15,4,f +9512,3010,1,10,f +9512,3010,0,4,f +9512,3010,14,4,f +9512,3010p01,14,1,f +9512,30161,47,1,f +9512,30183,1,1,f +9512,3020,4,2,f +9512,3021,4,2,f +9512,3022,1,2,f +9512,3032,4,2,f +9512,30341,4,1,f +9512,3039,1,2,f +9512,3062b,14,8,f +9512,3297,1,4,f +9512,3297px1,1,2,f +9512,3298,1,2,f +9512,3298p11,1,4,f +9512,3483,0,2,f +9512,3622,1,6,f +9512,3622,4,6,f +9512,3622,2,2,f +9512,3622,14,2,f +9512,3626bp04,14,1,f +9512,3626bpx19,14,1,f +9512,3633,15,2,f +9512,3659,14,2,f +9512,3660,1,2,f +9512,3666,1,2,f +9512,3730,4,1,f +9512,3731,4,1,f +9512,3741,2,2,f +9512,3742,15,1,t +9512,3742,15,3,f +9512,3742,14,1,t +9512,3742,14,3,f +9512,3747b,1,2,f +9512,3795,4,2,f +9512,3823,41,2,f +9512,3829c01,14,2,f +9512,3832,4,2,f +9512,3853,4,2,f +9512,3854,14,4,f +9512,3857,10,2,f +9512,3861b,4,1,f +9512,3957a,14,2,f +9512,3962b,0,1,f +9512,4070,4,2,f +9512,4079,14,2,f +9512,4175,14,2,f +9512,4286,1,4,f +9512,4287,1,4,f +9512,4485,4,1,f +9512,4485,15,1,f +9512,4495b,2,2,f +9512,4617b,14,1,f +9512,4625,1,1,f +9512,6064,2,1,f +9512,6215,2,2,f +9512,6248,14,6,f +9512,6249,8,1,f +9512,6564,1,1,f +9512,6565,1,1,f +9512,970c00,2,1,f +9512,970c00,4,1,f +9512,973p73c01,2,1,f +9512,973px33c01,15,1,f +9513,x469bb,0,1,f +9514,50934pat0001,320,1,f +9514,57528,4,2,f +9514,60894,72,1,f +9514,60896,320,2,f +9514,60900,320,2,f +9514,62386,191,2,f +9514,64251,191,2,f +9514,64262,57,1,f +9514,64320pat0001,320,1,f +9515,2780,0,14,f +9515,2780,0,1,t +9515,30626,0,1,f +9515,30632,0,1,f +9515,32015,14,2,f +9515,32039,71,1,f +9515,32054,14,2,f +9515,32054,0,2,f +9515,32056,14,4,f +9515,32062,0,4,f +9515,32073,71,4,f +9515,32123b,71,1,t +9515,32123b,71,4,f +9515,32138,0,2,f +9515,32140,0,2,f +9515,32140,14,2,f +9515,32140,71,17,f +9515,32140,72,8,f +9515,32184,0,6,f +9515,32184,72,2,f +9515,32192,71,6,f +9515,32316,0,3,f +9515,32316,72,4,f +9515,32449,0,4,f +9515,32523,72,2,f +9515,32524,0,1,f +9515,32525,0,2,f +9515,32526,72,4,f +9515,32526,0,1,f +9515,32527,14,1,f +9515,32528,14,1,f +9515,32557,0,2,f +9515,3705,0,1,f +9515,3713,71,2,f +9515,3713,0,2,f +9515,3713,0,1,t +9515,3713,71,1,t +9515,40490,14,1,f +9515,41239,0,1,f +9515,41669,143,2,f +9515,41677,0,4,f +9515,41678,0,2,f +9515,41678,72,4,f +9515,41896,71,4,f +9515,43093,1,18,f +9515,44294,71,2,f +9515,44350,14,1,f +9515,44351,14,1,f +9515,4519,71,16,f +9515,45982,0,4,f +9515,46452,135,1,f +9515,48989,71,1,f +9515,50451,15,2,f +9515,6536,0,4,f +9515,6536,14,2,f +9515,6538b,14,2,f +9515,6538b,36,2,f +9515,6558,0,43,f +9515,6587,72,4,f +9515,75c16,0,1,f +9515,78c03,179,1,f +9515,78c05,179,2,f +9515,motor6,72,2,f +9516,14210,15,1,f +9516,2340,0,2,f +9516,2412b,0,3,f +9516,2413,71,1,f +9516,2419,0,1,f +9516,2431,0,2,f +9516,2432,0,2,f +9516,2444,72,2,f +9516,2450,73,2,f +9516,2780,0,2,t +9516,2780,0,3,f +9516,2877,0,7,f +9516,3002,71,2,f +9516,3003,0,2,f +9516,30036,72,1,f +9516,3004,72,11,f +9516,3005,0,4,f +9516,3010,73,3,f +9516,30157,71,2,f +9516,3020,71,2,f +9516,3020,72,2,f +9516,3023,15,3,f +9516,3023,73,2,f +9516,30303,71,1,f +9516,3034,0,1,f +9516,30366,40,1,f +9516,30377,0,4,f +9516,30377,0,1,t +9516,3040b,0,6,f +9516,30526,72,2,f +9516,30552,71,4,f +9516,30553,72,4,f +9516,30554b,0,8,f +9516,3062b,41,22,f +9516,30648,0,4,f +9516,3065,36,1,f +9516,3069b,36,3,f +9516,32000,72,2,f +9516,32000,71,1,f +9516,32000,0,2,f +9516,32013,0,5,f +9516,32059,71,2,f +9516,32064b,15,2,f +9516,3245c,0,6,f +9516,3298,0,5,f +9516,3626bpr0966,4,1,f +9516,3626bpr0968,78,1,f +9516,3626cpr0967,78,1,f +9516,3660,0,1,f +9516,3700,72,4,f +9516,3701,0,2,f +9516,3706,0,1,f +9516,3710,0,4,f +9516,3710,73,1,f +9516,3747b,15,1,f +9516,3749,19,1,f +9516,3794b,0,2,f +9516,3795,71,2,f +9516,3830,0,4,f +9516,3831,0,4,f +9516,4032a,72,1,f +9516,4150,0,1,f +9516,41531,71,1,f +9516,4274,71,2,f +9516,4274,71,1,t +9516,43093,1,5,f +9516,43898,47,1,f +9516,4589,40,4,f +9516,46667,0,1,f +9516,47753,0,1,f +9516,4865a,41,1,f +9516,4865b,0,1,f +9516,48723,72,1,f +9516,48724,0,1,f +9516,48729b,72,4,f +9516,48729b,72,1,t +9516,50745,0,1,f +9516,54200,73,3,t +9516,54200,73,6,f +9516,55981,15,4,f +9516,57539,135,2,f +9516,57909a,72,1,f +9516,58176,35,3,f +9516,59349,71,1,f +9516,6013294,9999,1,f +9516,60474,0,1,f +9516,60474,72,1,f +9516,60477,0,2,f +9516,6091,71,4,f +9516,6106,71,2,f +9516,6111,0,1,f +9516,61184,71,2,f +9516,61409,0,4,f +9516,6141,41,4,f +9516,6141,41,1,t +9516,6141,27,1,t +9516,6141,27,8,f +9516,61485,0,2,f +9516,6183,0,2,f +9516,6215,0,2,f +9516,6259,73,2,f +9516,72454,0,1,f +9516,78c02,135,2,f +9516,78c02,135,1,t +9516,85984,72,4,f +9516,85984,71,2,f +9516,87087,15,4,f +9516,87544,71,4,f +9516,87552,40,2,f +9516,87620,0,6,f +9516,88283,0,1,f +9516,92950,72,5,f +9516,93571,0,1,f +9516,970c00,1,1,f +9516,970c00,2,1,f +9516,970x026,71,1,f +9516,973pr2047c01,1,1,f +9516,973pr2048c01,71,1,f +9516,973pr2049c01,2,1,f +9517,3001a,47,6,f +9517,3001a,0,12,f +9517,3002a,47,4,f +9517,3002a,0,6,f +9517,3003,0,8,f +9517,3003,47,4,f +9517,3004,0,4,f +9517,3004,47,4,f +9518,122c02,0,2,f +9518,2336p90,15,1,f +9518,2419,15,2,f +9518,298c02,0,1,f +9518,3001,15,1,f +9518,3021,0,1,f +9518,3022,15,1,f +9518,3039p32,15,1,f +9518,3039p34,15,1,f +9518,3068bp08,15,1,f +9518,3626apr0001,14,1,f +9518,3639,0,1,f +9518,3640,0,1,f +9518,3794a,0,2,f +9518,3829c01,15,1,f +9518,3838,14,1,f +9518,3842b,14,1,f +9518,3957a,36,2,f +9518,4070,0,2,f +9518,4084,0,4,f +9518,4589,36,1,f +9518,4590,0,1,f +9518,4596,15,2,f +9518,4598,15,1,f +9518,4740,34,2,f +9518,4740,15,2,f +9518,4746,15,1,f +9518,4865a,15,1,f +9518,6141,36,2,f +9518,6141,34,2,f +9518,73983,0,2,f +9518,970c00,14,1,f +9518,973p90c04,14,1,f +9519,2357,72,14,f +9519,2357,15,4,f +9519,2412b,0,30,f +9519,2420,15,18,f +9519,2420,0,2,f +9519,2420,1,4,f +9519,2432,71,5,f +9519,2436,15,3,f +9519,2441,0,1,f +9519,2446,15,2,f +9519,2447,82,2,f +9519,2447,82,1,t +9519,2449,15,2,f +9519,2456,71,2,f +9519,2540,15,2,f +9519,2540,72,2,f +9519,2569,0,1,f +9519,2577,484,24,f +9519,2654,72,1,f +9519,2730,15,2,f +9519,2780,0,1,t +9519,2780,0,11,f +9519,2921,14,2,f +9519,298c02,71,1,t +9519,298c02,71,1,f +9519,3001,71,10,f +9519,3002,0,2,f +9519,3003,71,2,f +9519,3003,70,2,f +9519,3003,15,6,f +9519,3004,0,2,f +9519,3004,15,4,f +9519,3004,71,8,f +9519,3005,0,5,f +9519,3005,15,3,f +9519,3010,15,1,f +9519,30145,0,3,f +9519,3020,0,8,f +9519,3020,15,9,f +9519,3021,0,6,f +9519,3021,272,2,f +9519,3021,15,15,f +9519,3022,15,14,f +9519,3022,0,4,f +9519,3023,14,2,f +9519,3023,15,18,f +9519,3023,0,27,f +9519,3024,15,16,f +9519,3024,70,16,f +9519,30256,15,4,f +9519,30292,41,2,f +9519,3031,72,3,f +9519,3032,0,1,f +9519,3032,15,1,f +9519,3036,71,1,f +9519,30361c,15,1,f +9519,30363,0,1,f +9519,30363,15,1,f +9519,30374,14,1,f +9519,3039,15,2,f +9519,3040b,0,6,f +9519,30504,0,4,f +9519,30504,15,2,f +9519,30562,484,12,f +9519,30565,72,12,f +9519,3062b,36,1,f +9519,3062b,70,6,f +9519,3068b,70,4,f +9519,3068b,0,5,f +9519,3068b,15,4,f +9519,3069b,40,1,f +9519,3069b,70,4,f +9519,3069b,0,4,f +9519,3069b,15,8,f +9519,3069bp02,71,1,f +9519,3069bpr0030,15,1,f +9519,3069bpr0086,71,2,f +9519,3069bpr0101,71,1,f +9519,3070b,0,1,f +9519,3070b,0,1,t +9519,3070b,15,1,t +9519,3070b,70,4,f +9519,3070b,70,1,t +9519,3070b,15,6,f +9519,32000,15,18,f +9519,32001,1,3,f +9519,32013,15,2,f +9519,32013,0,2,f +9519,32014,15,1,f +9519,32034,0,2,f +9519,32062,4,17,f +9519,32064b,0,5,f +9519,32073,71,2,f +9519,32123b,14,1,t +9519,32123b,14,4,f +9519,32124,0,1,f +9519,32140,1,2,f +9519,32526,72,2,f +9519,32556,19,6,f +9519,3298,71,2,f +9519,33243,72,8,f +9519,3460,15,4,f +9519,3460,71,2,f +9519,3622,15,2,f +9519,3623,15,1,f +9519,3623,0,2,f +9519,3623,71,4,f +9519,3626bpr0387,14,1,f +9519,3626bpr0389,14,1,f +9519,3626bpr0495,14,1,f +9519,3659,15,2,f +9519,3666,15,5,f +9519,3666,0,2,f +9519,3684,72,2,f +9519,3700,70,12,f +9519,3705,0,3,f +9519,3707,0,1,f +9519,3709,1,1,f +9519,3710,0,2,f +9519,3710,15,16,f +9519,3713,4,2,f +9519,3713,4,1,t +9519,3737,0,3,f +9519,3794b,15,9,f +9519,3794b,0,17,f +9519,3795,15,5,f +9519,3795,72,4,f +9519,3795,0,2,f +9519,3829c01,71,1,f +9519,3832,0,2,f +9519,3857,72,1,f +9519,3894,15,2,f +9519,3937,15,3,f +9519,3938,4,1,f +9519,3941,0,4,f +9519,3941,15,2,f +9519,3942c,0,2,f +9519,3942c,15,2,f +9519,3943b,15,2,f +9519,3956,0,2,f +9519,3957a,71,1,f +9519,3958,0,1,f +9519,3961,72,1,f +9519,4032a,4,2,f +9519,4032a,15,4,f +9519,4032a,72,3,f +9519,4070,70,18,f +9519,4070,0,16,f +9519,4081b,0,2,f +9519,4083,0,2,f +9519,4085c,1,2,f +9519,4150pr0022,71,1,f +9519,4162,71,2,f +9519,4162,15,6,f +9519,41677,1,8,f +9519,41747,484,2,f +9519,41748,484,2,f +9519,41769,0,1,f +9519,41769,15,1,f +9519,41770,15,1,f +9519,41770,0,1,f +9519,4274,1,15,f +9519,4274,1,1,t +9519,4282,0,2,f +9519,4286,0,2,f +9519,4286,15,4,f +9519,4287,0,4,f +9519,4287,15,1,f +9519,43093,1,3,f +9519,43337,15,2,f +9519,4360,0,1,f +9519,43722,15,1,f +9519,43723,15,1,f +9519,43898,72,1,f +9519,43898,15,1,f +9519,44568,71,2,f +9519,44728,4,6,f +9519,4477,0,2,f +9519,4477,15,8,f +9519,4519,71,1,f +9519,45705,484,2,f +9519,4589,15,2,f +9519,4599b,14,4,f +9519,4623,0,1,f +9519,4624,15,10,f +9519,47397,15,2,f +9519,47397,0,2,f +9519,47398,15,2,f +9519,47398,0,2,f +9519,4740,71,8,f +9519,4740,15,3,f +9519,4742,0,2,f +9519,47455,0,1,f +9519,48092,72,8,f +9519,48171,72,1,f +9519,4865a,0,4,f +9519,4870,71,2,f +9519,50303,0,2,f +9519,50450,0,2,f +9519,54200,36,1,t +9519,54200,4,2,f +9519,54200,4,1,t +9519,54200,70,16,f +9519,54200,36,2,f +9519,54200,0,1,t +9519,54200,0,20,f +9519,54200,40,6,f +9519,54200,15,10,f +9519,54200,70,1,t +9519,54200,40,1,t +9519,54200,15,1,t +9519,54383,0,1,f +9519,54384,0,1,f +9519,59426,72,1,f +9519,59443,0,11,f +9519,59443,4,4,f +9519,59895,0,6,f +9519,6005,15,50,f +9519,6019,15,11,f +9519,60212,272,2,f +9519,60470a,15,4,f +9519,60471,0,4,f +9519,60474,15,7,f +9519,60474,0,6,f +9519,60474,71,4,f +9519,60477,0,2,f +9519,60478,4,4,f +9519,60479,71,2,f +9519,60479,0,2,f +9519,60483,0,5,f +9519,6091,15,4,f +9519,6112,15,2,f +9519,61184,71,1,f +9519,6134,0,4,f +9519,6140,71,2,f +9519,6141,47,9,f +9519,6141,71,1,t +9519,6141,47,1,t +9519,6141,71,6,f +9519,6141,57,22,f +9519,6141,57,2,t +9519,61483,71,1,f +9519,61678,484,8,f +9519,6222,0,4,f +9519,6231,0,2,f +9519,6233,0,3,f +9519,62462,15,9,f +9519,6259,15,20,f +9519,6558,1,4,f +9519,6587,28,2,f +9519,6636,15,10,f +9519,6636,0,3,f +9519,76537,14,2,f +9519,85080,15,40,f +9519,85943,72,3,f +9519,86035,1,1,f +9519,87079,15,4,f +9519,87083,72,2,f +9519,87087,15,10,f +9519,87414,0,4,f +9519,87544,15,2,f +9519,89762,15,2,f +9519,970c00,15,2,f +9519,970c00,1,1,f +9519,973pr1240c01,1,1,f +9519,973pr1655c01,15,2,f +9521,2412b,0,3,f +9521,2432,15,1,f +9521,298c02,71,1,t +9521,298c02,71,1,f +9521,3020,71,1,f +9521,3022,25,1,f +9521,3023,25,2,f +9521,3040b,15,2,f +9521,3040b,25,4,f +9521,32064b,15,2,f +9521,3660,15,6,f +9521,3666,15,2,f +9521,3794b,71,1,f +9521,3941,0,1,f +9521,3942c,15,1,f +9521,3943b,0,1,f +9521,3957a,15,1,f +9521,4032a,15,1,f +9521,4032a,0,1,f +9521,4079,0,1,f +9521,4286,15,2,f +9521,44661,15,4,f +9521,44728,15,1,f +9521,4519,71,2,f +9521,4589,182,1,f +9521,4612803,9999,1,f +9521,48336,0,4,f +9521,54200,40,2,f +9521,54200,40,1,t +9521,60470a,0,4,f +9521,6141,25,1,f +9521,6141,25,1,t +9521,6222,15,1,f +9522,20841,15,1,f +9524,2376,15,1,f +9524,3004,15,1,f +9524,3004p0b,14,1,f +9524,3010,15,1,f +9524,3021,15,1,f +9524,3022,15,2,f +9524,3024,14,2,f +9524,3040b,15,2,f +9524,3298,15,2,f +9524,4032a,15,1,f +9524,4287,15,2,f +9524,56823,0,1,f +9526,2412b,72,2,f +9526,2450,15,2,f +9526,3004,14,2,f +9526,3021,72,1,f +9526,3022,0,1,f +9526,3023,40,1,f +9526,3023,14,6,f +9526,3024,1,2,f +9526,3024,1,1,t +9526,3034,0,1,f +9526,30602,40,1,f +9526,3069b,14,2,f +9526,3070b,46,1,t +9526,3070b,14,2,f +9526,3070b,14,1,t +9526,3070b,46,2,f +9526,32059,15,1,f +9526,3666,15,1,f +9526,3710,15,1,f +9526,3794b,0,2,f +9526,3942c,14,1,f +9526,4081b,0,2,f +9526,41769,15,2,f +9526,41770,15,2,f +9526,43722,0,1,f +9526,43723,0,1,f +9526,44728,0,1,f +9526,54200,0,2,f +9526,54200,40,1,t +9526,54200,14,2,f +9526,54200,14,1,t +9526,54200,40,2,f +9526,54200,0,1,t +9526,59900,182,2,f +9526,6141,71,1,t +9526,6141,0,4,f +9526,6141,71,2,f +9526,6141,0,1,t +9526,85984,14,2,f +9526,90194,0,1,f +9526,98138,33,2,f +9526,98138,33,1,t +9526,99780,72,3,f +9528,2470,6,6,f +9528,2488,0,1,f +9528,251,4,1,f +9528,2555,0,2,f +9528,2926,0,2,f +9528,3004,6,1,f +9528,3004,0,1,f +9528,30132,8,2,t +9528,30132,8,4,f +9528,30133,0,2,f +9528,30141,8,3,f +9528,3022,7,1,f +9528,3022,4,1,f +9528,3023,0,1,f +9528,3023,6,1,f +9528,3023,4,3,f +9528,3032,0,1,f +9528,3040b,0,2,f +9528,3068b,4,1,f +9528,3069bp03,7,1,f +9528,3069bpr0100,2,2,f +9528,3176,0,1,f +9528,3626bp35,14,1,f +9528,3626bp62,14,1,f +9528,3626bpx28,14,1,f +9528,3626bpx30,14,1,f +9528,3629,6,2,f +9528,3629,15,1,f +9528,3629pw2,7,1,f +9528,3666,4,2,f +9528,3679,7,1,f +9528,3710,4,1,f +9528,3795,0,1,f +9528,4085c,0,2,f +9528,4286,0,2,f +9528,4345b,0,1,f +9528,4346px5,2,1,f +9528,4493c01pb01,6,1,f +9528,4587,0,1,f +9528,4623,0,1,f +9528,4865a,0,1,f +9528,4865a,4,1,f +9528,60169,8,1,f +9528,6141,0,1,t +9528,6141,0,2,f +9528,6157,0,1,f +9528,970c00,0,2,f +9528,970c00,1,1,f +9528,970c00,7,1,f +9528,973px161c01,8,1,f +9528,973px53c01,6,1,f +9528,973px54c01,0,1,f +9528,973px56c01,4,1,f +9529,10201,15,1,f +9529,11477,323,4,f +9529,11816pr0017,78,1,f +9529,14769,85,1,f +9529,15068,15,1,f +9529,15070,297,2,f +9529,15254,84,1,f +9529,15395,4,1,f +9529,15397,70,1,f +9529,15573,28,2,f +9529,15712,70,2,f +9529,15875pr0102c01,158,1,f +9529,16577,70,1,f +9529,22888,15,1,f +9529,2357,70,2,f +9529,24080,484,1,f +9529,2417,15,1,f +9529,2420,19,2,f +9529,2423,15,2,f +9529,26603,15,2,f +9529,2877,14,2,f +9529,2921,84,2,f +9529,29463,3,1,f +9529,29730,15,1,f +9529,3004,70,2,f +9529,3004,323,1,f +9529,3010,19,2,f +9529,3010,70,1,f +9529,30136,84,10,f +9529,30137,84,1,f +9529,30153,41,2,f +9529,30165,85,1,f +9529,3020,2,2,f +9529,3020,15,1,f +9529,3022,19,1,f +9529,3022,15,2,f +9529,3023,70,1,f +9529,3024,297,2,f +9529,3030,15,1,f +9529,3034,2,3,f +9529,3036,2,2,f +9529,30374,41,6,f +9529,3039,323,1,f +9529,3040b,15,1,f +9529,3040b,323,2,f +9529,30414,15,1,f +9529,3045,323,2,f +9529,3062b,46,2,f +9529,3068bpr0139a,19,1,f +9529,3069b,41,3,f +9529,3069b,19,2,f +9529,3069bpr0168,70,1,f +9529,33291,212,6,f +9529,33291,5,3,f +9529,3460,15,1,f +9529,3623,2,2,f +9529,3660,70,2,f +9529,3666,70,3,f +9529,3710,19,1,f +9529,3795,19,1,f +9529,3795,30,1,f +9529,3899,47,1,f +9529,48336,71,2,f +9529,59900,297,2,f +9529,60897,15,2,f +9529,6141,41,7,f +9529,6141,27,4,f +9529,6141,70,4,f +9529,6141,57,5,f +9529,6141,0,2,f +9529,6636pr0013,15,2,f +9529,87079,26,1,f +9529,87580,10,2,f +9529,88072,15,2,f +9529,91501,19,2,f +9529,92456pr0207c01,78,1,f +9529,92950,70,1,f +9532,10113,272,1,f +9532,10190,0,2,f +9532,11458,72,4,f +9532,12825,0,2,f +9532,13349,0,1,f +9532,15573,71,2,f +9532,15573,15,1,f +9532,2397,0,1,f +9532,2458,72,1,f +9532,2458,14,1,f +9532,2540,0,5,f +9532,298c02,4,1,t +9532,298c02,4,3,f +9532,3003,14,1,f +9532,30031,0,1,f +9532,30088,0,1,f +9532,30091,72,1,f +9532,30153,41,1,f +9532,3020,71,1,f +9532,3020,14,3,f +9532,3020,25,4,f +9532,3022,25,3,f +9532,3022,72,1,f +9532,3023,14,7,f +9532,3024,0,1,t +9532,3024,0,2,f +9532,30374,70,1,f +9532,3040b,15,1,f +9532,3062b,14,2,f +9532,3068b,15,2,f +9532,3070b,15,2,f +9532,3070b,15,1,t +9532,32059,15,1,f +9532,3626cpr1180,78,1,f +9532,3626cpr1285,0,1,f +9532,3666,71,1,f +9532,3710,0,2,f +9532,3829c01,4,1,f +9532,3878,0,1,f +9532,4081b,72,2,f +9532,41879a,72,1,f +9532,43898,0,1,f +9532,44661,72,1,f +9532,44676,272,4,f +9532,4733,0,2,f +9532,4740,14,2,f +9532,47456,14,2,f +9532,47753pr0005b,0,1,f +9532,49668,0,2,f +9532,49668,191,2,f +9532,52501,14,2,f +9532,54200,46,2,f +9532,54200,46,1,t +9532,54200,0,2,f +9532,54200,0,1,t +9532,55981,14,1,f +9532,59900,25,2,f +9532,59900,33,2,f +9532,6041,0,1,f +9532,60470b,14,1,f +9532,60477,15,1,f +9532,60897,25,2,f +9532,61184,71,4,f +9532,6141,57,1,t +9532,6141,57,9,f +9532,64728,4,2,f +9532,6636,15,1,f +9532,85984,14,2,f +9532,87087,14,2,f +9532,92280,71,1,f +9532,92946,14,4,f +9532,970c00,272,1,f +9532,973pr2488c01,0,1,f +9532,973pr2493c01,272,1,f +9532,98138pr0008,15,2,f +9532,98138pr0008,15,1,t +9532,99207,71,4,f +9533,10884,27,3,f +9533,11055pr0011,15,1,f +9533,14518,72,1,f +9533,15068,19,1,f +9533,18927,4,1,f +9533,2489,70,1,f +9533,2530,72,1,f +9533,2566,0,1,f +9533,30153,46,1,f +9533,32016,70,2,f +9533,32062,4,1,f +9533,3626cpr1662,14,1,f +9533,3957b,70,1,f +9533,6003,19,1,f +9533,64951,70,1,f +9533,87587pr0001,72,1,f +9533,88072,71,1,f +9533,95228,47,1,f +9533,96904,334,1,f +9533,96905,334,1,f +9533,96906,334,1,f +9533,96907,334,1,f +9533,970c00,0,1,f +9533,973pb2036c01,73,1,f +9533,99563,334,1,f +9534,2495,4,1,f +9534,2496,0,1,f +9534,2496,0,1,t +9534,3941,15,1,f +9534,4032b,2,1,f +9534,4032b,15,1,f +9534,4032b,4,1,f +9538,132a,7,4,f +9538,3058a,7,1,f +9538,36,7,4,f +9538,393c48,15,1,f +9538,458,7,4,f +9538,7039b,4,4,f +9538,715a,4,4,f +9538,wheel1b,4,4,f +9538,x579c02,1,1,f +9541,4186p01,2,2,f +9543,10884,27,1,f +9543,3002,71,1,f +9543,3005,41,2,f +9543,30136,71,2,f +9543,30153,45,1,f +9543,3020,322,1,f +9543,3023,27,1,f +9543,3031,2,1,f +9543,30367c,322,1,f +9543,3040b,71,2,f +9543,30565,2,1,f +9543,3062b,70,3,f +9543,3069b,41,1,f +9543,33291,5,3,f +9543,33320,14,1,f +9543,3659,71,1,f +9543,54200,2,2,f +9543,54200,143,1,f +9543,64644,308,1,f +9543,64647,182,1,f +9544,194cx1,2,2,f +9544,2348b,33,1,f +9544,2349a,15,1,f +9544,2412b,4,2,f +9544,2412b,0,1,f +9544,2413,4,2,f +9544,2420,4,4,f +9544,2420,15,2,f +9544,2431,7,1,f +9544,2436,0,4,f +9544,2436,15,1,f +9544,2460,4,2,f +9544,2540,7,2,f +9544,2555,15,2,f +9544,298c02,4,1,f +9544,3003,15,1,f +9544,3004,15,7,f +9544,3004px1,15,2,f +9544,3005,15,2,f +9544,3006,15,1,f +9544,3008,4,1,f +9544,3010,15,8,f +9544,3010,4,3,f +9544,3020,2,1,f +9544,3020,4,1,f +9544,3021,15,7,f +9544,3021,2,2,f +9544,3021,4,2,f +9544,3021,7,5,f +9544,3021,0,1,f +9544,3022,1,1,f +9544,3022,0,1,f +9544,3022,7,2,f +9544,3023,7,3,f +9544,3023,15,1,f +9544,3024,36,2,f +9544,3028,7,1,f +9544,3031,4,1,f +9544,3068b,15,2,f +9544,3068b,4,3,f +9544,3068bpt0,15,1,f +9544,3069b,15,3,f +9544,3069b,4,1,f +9544,3069bp52,15,1,f +9544,3069bpr0100,2,2,f +9544,3070b,0,1,f +9544,3070b,46,4,f +9544,3070b,36,2,f +9544,3135c02,4,1,f +9544,3298,15,2,f +9544,3460,4,1,f +9544,3622,4,2,f +9544,3623,15,3,f +9544,3626bp04,14,1,f +9544,3626bp05,14,2,f +9544,3665,4,4,f +9544,3666,0,1,f +9544,3666,15,2,f +9544,3678a,15,1,f +9544,3710,0,1,f +9544,3710,7,1,f +9544,3710,4,1,f +9544,3710,15,2,f +9544,3795,0,1,f +9544,3795,4,1,f +9544,3821,15,1,f +9544,3822,15,1,f +9544,3823,41,2,f +9544,3829c01,1,2,f +9544,3832,4,1,f +9544,3832,0,1,f +9544,3836,6,1,f +9544,3852b,6,1,f +9544,3957a,15,2,f +9544,4070,15,2,f +9544,4083,1,1,f +9544,4083,14,1,f +9544,4085c,4,6,f +9544,4085c,15,2,f +9544,4150,15,2,f +9544,4211,2,1,f +9544,4214,15,1,f +9544,4274,7,2,f +9544,4274,7,1,t +9544,4345b,15,1,f +9544,4346,15,1,f +9544,4485,4,3,f +9544,4495b,14,2,f +9544,4600,7,3,f +9544,4629c01,1,1,f +9544,4871,4,2,f +9544,55295,8,1,f +9544,55296,8,1,f +9544,55297,8,1,f +9544,55298,8,1,f +9544,55299,8,1,f +9544,55300,8,1,f +9544,6003,7,2,f +9544,6014a,7,10,f +9544,6015,0,10,f +9544,6019,15,1,f +9544,6141,46,1,f +9544,6141,46,1,t +9544,6141,1,1,t +9544,6141,1,4,f +9544,6157,0,2,f +9544,6259,15,4,f +9544,6541,0,4,f +9544,73590c01a,0,1,f +9544,970c00,2,2,f +9544,970c00,1,1,f +9544,973pr1245c01,1,1,f +9544,973px19c01,2,2,f +9547,2357,14,2,f +9547,2412b,0,4,f +9547,2419,8,1,f +9547,2420,8,2,f +9547,2446,8,1,f +9547,2447,33,1,t +9547,2447,33,1,f +9547,2460,8,4,f +9547,2476a,14,2,f +9547,2547,0,1,f +9547,2780,0,2,f +9547,2873,14,1,f +9547,298c02,14,2,f +9547,298c02,14,1,t +9547,3001,0,1,f +9547,3003,8,2,f +9547,3004,8,4,f +9547,30085,0,1,f +9547,3009,8,1,f +9547,30091,8,1,f +9547,30093,2,1,f +9547,30162,8,1,f +9547,30191,14,2,f +9547,3020,14,4,f +9547,3020,8,4,f +9547,3021,0,2,f +9547,3022,8,3,f +9547,3023,7,4,f +9547,3023,14,8,f +9547,30236,7,3,f +9547,30237a,0,1,f +9547,3034,14,1,f +9547,3039,8,1,f +9547,30396,14,1,f +9547,30542,0,2,f +9547,30602pb005,14,1,f +9547,30608,6,1,f +9547,3062b,14,4,f +9547,32013,14,1,f +9547,32054,0,1,f +9547,32062,4,1,f +9547,32524,0,2,f +9547,3626bpx51,14,1,f +9547,3659,7,1,f +9547,3660,14,3,f +9547,3673,7,2,f +9547,3678a,0,2,f +9547,3701,7,2,f +9547,3794a,0,1,f +9547,3839b,0,1,f +9547,4032a,2,1,f +9547,4081b,8,2,f +9547,4085c,7,4,f +9547,40996,42,1,f +9547,4150pr0022,7,2,f +9547,41525pb01,14,2,f +9547,41530,42,2,f +9547,41531,14,2,f +9547,41532,0,1,f +9547,41533,0,2,f +9547,4175,0,2,f +9547,41752,8,1,t +9547,41862,14,2,f +9547,41883,40,1,f +9547,42022pb03,14,2,f +9547,4315,0,1,f +9547,4345b,14,2,f +9547,4346,40,2,f +9547,4519,0,1,f +9547,4623,14,3,f +9547,4735,0,2,f +9547,4856a,14,1,f +9547,4859,8,2,f +9547,59275,0,2,f +9547,6019,14,2,f +9547,6019,0,4,f +9547,6041,0,2,f +9547,6087,0,2,f +9547,6141,42,1,t +9547,6141,42,10,f +9547,6187,14,2,f +9547,970c00pb033,272,1,f +9547,973pb0071c02,272,1,f +9547,rb00167,14,1,f +9547,x514c01,14,4,f +9549,3626cpr0743,14,1,f +9549,4006,0,1,f +9549,4006,0,1,t +9549,4485,0,1,t +9549,86035,0,1,f +9549,970c00,1,1,f +9549,973pr1244c01,73,1,f +9551,2446,15,1,f +9551,2447,33,1,f +9551,2555,0,1,f +9551,2610,14,1,f +9551,2654,7,1,f +9551,3003,7,1,f +9551,30031,0,1,f +9551,3023,15,1,f +9551,3032,14,1,f +9551,3298pb024,14,1,f +9551,3626bp04,14,1,f +9551,3794a,14,1,f +9551,4286,0,2,f +9551,4859,14,1,f +9551,6153a,0,1,f +9551,970x026,15,1,f +9551,973p8bc01,15,1,f +9552,2446,0,1,f +9552,2447,47,1,f +9552,33061,34,1,f +9552,3626cpr0743,14,1,f +9552,3626cpr0893,14,1,f +9552,3626cpr0914,14,1,f +9552,3898,15,1,f +9552,4006,0,1,f +9552,4528,0,1,f +9552,4530,0,1,f +9552,93092,5,1,f +9552,970c00,15,1,f +9552,970c00,0,1,f +9552,970c00,19,1,f +9554,2335,1,2,f +9554,2412b,383,14,f +9554,2413,15,1,f +9554,2419,15,3,f +9554,2432,0,3,f +9554,2436,15,1,f +9554,2441,0,3,f +9554,2496,0,3,f +9554,2540,72,1,f +9554,2555,4,3,f +9554,2569,42,8,f +9554,2569,0,1,f +9554,2655,71,2,f +9554,298c02,15,15,f +9554,3001,15,24,f +9554,3001,4,8,f +9554,3001,0,8,f +9554,3001,1,12,f +9554,3002,15,9,f +9554,30027b,15,12,f +9554,30028,0,12,f +9554,3003,15,13,f +9554,3003,33,5,f +9554,30033,15,1,f +9554,3004,15,7,f +9554,3004pb010,15,5,f +9554,3006,15,1,f +9554,3007,15,1,f +9554,30076,0,2,f +9554,3009,15,1,f +9554,30104,72,1,f +9554,30145,15,3,f +9554,30151a,47,8,f +9554,30183,0,2,f +9554,3020,4,5,f +9554,30208,42,2,f +9554,3021,0,9,f +9554,3021,15,2,f +9554,30236,72,4,f +9554,30248,72,1,f +9554,30285,15,14,f +9554,30286,41,3,f +9554,30293,6,3,f +9554,30294,6,3,f +9554,30303,71,1,f +9554,3032,1,2,f +9554,30322,4,1,f +9554,3034,15,5,f +9554,30342,41,3,f +9554,30355,0,1,f +9554,30356,0,1,f +9554,30367b,15,7,f +9554,30385,383,2,f +9554,3039,33,4,f +9554,3039,0,1,f +9554,3039,42,2,f +9554,30391,0,14,f +9554,3039p05,15,2,f +9554,3039px8,72,5,f +9554,3040b,33,8,f +9554,3062b,33,8,f +9554,3068bp70,15,1,f +9554,32059,1,1,f +9554,3245b,15,1,f +9554,3297,15,3,f +9554,3297ps1,15,1,f +9554,3298,1,10,f +9554,3298p10,15,6,f +9554,3403c01,15,1,f +9554,3403c01,0,1,f +9554,3456,72,4,f +9554,3475b,0,4,f +9554,3622,15,2,f +9554,3660,15,5,f +9554,3794a,0,7,f +9554,3795,1,5,f +9554,3823,47,1,f +9554,3823,41,2,f +9554,3830,0,10,f +9554,3830,1,8,f +9554,3831,1,8,f +9554,3831,0,10,f +9554,3937,72,4,f +9554,3941,4,9,f +9554,3941,383,14,f +9554,3941,1,3,f +9554,3941,15,17,f +9554,3941,0,7,f +9554,3941,33,4,f +9554,3942c,383,7,f +9554,3942c,72,7,f +9554,3943b,0,3,f +9554,3956,71,7,f +9554,3957a,15,5,f +9554,3957a,383,3,f +9554,3960,57,5,f +9554,3960,42,4,f +9554,3963,15,1,f +9554,40379,0,2,f +9554,40379,72,2,f +9554,4070,15,5,f +9554,4083,383,2,f +9554,41751,36,1,f +9554,41854px1,135,1,f +9554,4202,71,1,f +9554,42022,15,2,f +9554,42445,47,1,f +9554,4285b,42,2,f +9554,4285b,15,2,f +9554,4460b,15,2,f +9554,4476b,15,2,f +9554,4589,57,13,f +9554,4589,33,16,f +9554,4589,135,8,f +9554,4589,42,4,f +9554,4595,71,4,f +9554,4597,15,1,f +9554,4740,383,2,f +9554,4740,42,4,f +9554,4871,15,2,f +9554,6007,72,2,f +9554,6019,1,2,f +9554,6083,15,2,f +9554,6083,71,4,f +9554,6106,72,8,f +9554,6111,15,1,f +9554,6134,4,4,f +9554,6141,33,8,f +9554,6141,34,3,f +9554,6141,57,9,f +9554,6182,15,2,f +9554,6212,1,4,f +9554,6219,15,1,f +9554,6222,71,1,f +9554,6239,15,4,f +9554,6249,72,3,f +9554,75347,15,1,f +9555,2412b,15,1,f +9555,2412b,15,1,t +9555,2412b,334,1,f +9555,2412b,14,1,t +9555,2412b,14,7,f +9555,2412b,1,2,f +9555,2420,1,2,f +9555,2432,0,2,f +9555,2432,15,2,f +9555,2434,1,1,f +9555,2446,15,1,f +9555,2456,1,2,f +9555,2458,4,2,f +9555,30000,1,2,f +9555,3004,7,3,f +9555,3005,15,2,f +9555,3020,7,1,f +9555,3020,15,1,f +9555,3020,0,1,f +9555,30211,0,2,f +9555,3022,7,1,f +9555,3023,1,2,f +9555,3023,14,2,f +9555,3023,7,2,f +9555,30286,8,1,f +9555,30292,33,2,f +9555,3033,19,2,f +9555,3034,7,2,f +9555,30342,8,1,f +9555,30351c01,15,1,f +9555,30354,36,1,f +9555,3038,0,2,f +9555,30385,62,1,f +9555,3039,1,6,f +9555,3068b,15,2,f +9555,3068b,14,4,f +9555,3069b,0,2,f +9555,3069bp13,15,1,f +9555,3626bp69,14,1,f +9555,3660,1,2,f +9555,3665,15,4,f +9555,3666,0,2,f +9555,3684,0,2,f +9555,3684,7,1,f +9555,3700,0,6,f +9555,3794a,15,2,f +9555,3942b,15,1,f +9555,3943b,15,1,f +9555,3956,0,2,f +9555,4070,14,4,f +9555,4162,1,1,f +9555,4287,1,2,f +9555,4349,7,2,f +9555,4589,0,1,f +9555,4625,1,2,f +9555,4740,33,2,f +9555,4854,15,1,f +9555,4857,15,2,f +9555,4864b,47,2,f +9555,4871,15,1,f +9555,6019,0,4,f +9555,6061,15,1,f +9555,6141,36,3,f +9555,6141,36,3,t +9555,6259,15,2,f +9555,6564,15,2,f +9555,6565,15,2,f +9555,769,334,1,f +9555,970x002,15,1,f +9555,973px176c01,15,1,f +9556,3020,71,3,f +9556,3022,71,1,f +9556,3023,71,3,f +9556,3040b,1,2,f +9556,30414,1,2,f +9556,3660,71,2,f +9556,3794a,1,2,f +9556,3937,1,2,f +9556,3938,71,2,f +9556,43722,1,1,f +9556,43723,1,1,f +9556,48336,71,1,f +9556,48933,1,2,f +9556,6019,71,2,f +9556,6126a,41,1,f +9556,6141,0,2,f +9556,6141,15,1,t +9556,6141,0,1,t +9556,6141,15,2,f +9557,44813,135,2,f +9557,57563,135,2,f +9557,60176,0,4,f +9557,60894,0,1,f +9557,60896,320,4,f +9557,60901,57,1,f +9557,60906pat0001,320,1,f +9557,60909,0,1,f +9558,2357,15,11,f +9558,2377,15,2,f +9558,2420,2,2,f +9558,2420,71,3,f +9558,2453a,70,1,f +9558,2456,15,4,f +9558,2877,71,1,f +9558,3001,15,22,f +9558,3001,2,4,f +9558,3003,15,2,f +9558,3003,2,1,f +9558,3004,27,8,f +9558,3004,15,24,f +9558,3005,70,3,f +9558,3005,15,16,f +9558,3006,15,2,f +9558,3008,15,30,f +9558,3009,15,28,f +9558,3010,15,18,f +9558,3020,71,3,f +9558,3020,2,1,f +9558,3020,70,4,f +9558,3021,70,4,f +9558,3022,70,1,f +9558,3022,2,3,f +9558,3022,0,2,f +9558,3023,2,10,f +9558,3023,71,5,f +9558,3023,72,4,f +9558,3024,2,4,f +9558,3034,71,6,f +9558,3037,4,90,f +9558,3038,4,20,f +9558,3039,4,22,f +9558,3040b,2,20,f +9558,3040b,4,4,f +9558,3041,4,8,f +9558,3043,0,2,f +9558,3043,4,2,f +9558,3044b,4,2,f +9558,3046a,4,12,f +9558,3048c,4,4,f +9558,3049b,4,2,f +9558,3062b,0,6,f +9558,3069b,72,45,f +9558,3070b,71,1,t +9558,3070b,71,43,f +9558,32018,71,2,f +9558,3297,0,2,f +9558,33303,15,10,f +9558,3455,15,2,f +9558,3460,71,5,f +9558,3622,15,37,f +9558,3623,71,3,f +9558,3660,2,6,f +9558,3665,15,4,f +9558,3666,71,2,f +9558,3675,0,4,f +9558,3710,71,2,f +9558,3710,72,4,f +9558,3747b,2,2,f +9558,3795,72,2,f +9558,3853,0,6,f +9558,3855,47,6,f +9558,3856,71,6,f +9558,3857,2,2,f +9558,3941,46,2,f +9558,3941,15,5,f +9558,4032a,71,1,f +9558,4070,15,10,f +9558,4162,71,2,f +9558,4282,71,2,f +9558,47899c01,4,1,f +9558,6111,15,2,f +9558,6112,15,5,f +9558,6141,14,1,t +9558,6141,4,1,t +9558,6141,4,3,f +9558,6141,14,3,f +9558,6182,15,1,f +9558,6636,71,11,f +9558,73312,0,1,f +9559,2412b,4,2,f +9559,2736,7,6,f +9559,2780,0,15,f +9559,2780,0,2,t +9559,2825,8,2,f +9559,2825,7,2,f +9559,2825,6,4,f +9559,2853,7,2,f +9559,2905,8,2,f +9559,32002,8,14,f +9559,32005b,8,4,f +9559,32009,8,6,f +9559,32013,6,3,f +9559,32013,8,4,f +9559,32014,8,2,f +9559,32015,8,2,f +9559,32016,8,4,f +9559,32016,6,13,f +9559,32034,0,2,f +9559,32034,6,2,f +9559,32039,0,1,f +9559,32039,6,5,f +9559,32039,8,4,f +9559,32039,6,1,t +9559,32054,8,2,f +9559,32054,0,2,f +9559,32056,8,20,f +9559,32062,0,37,f +9559,32063,0,2,f +9559,32063,8,9,f +9559,32073,0,7,f +9559,32123b,7,3,t +9559,32123b,7,42,f +9559,32140,8,9,f +9559,32140,6,4,f +9559,32140,0,1,f +9559,32177,8,2,f +9559,32184,0,8,f +9559,32249,6,4,f +9559,32249,8,4,f +9559,32250,8,2,f +9559,32250,6,8,f +9559,32271,6,2,f +9559,32271,8,3,f +9559,32291,8,13,f +9559,32291,6,2,f +9559,32310,8,3,f +9559,32316,6,2,f +9559,32316,8,4,f +9559,32348,8,4,f +9559,33299a,8,10,f +9559,3673,7,7,f +9559,3705,0,13,f +9559,3706,0,9,f +9559,3707,0,3,f +9559,3713,7,3,t +9559,3713,7,15,f +9559,3737,0,5,f +9559,3749,7,26,f +9559,4274,7,2,t +9559,4274,7,11,f +9559,4519,0,31,f +9559,4868a,8,4,f +9559,6141,36,3,f +9559,6141,36,1,t +9559,6536,8,25,f +9559,6536,6,1,f +9559,6536,4,2,f +9559,6538b,6,1,f +9559,6538b,4,1,f +9559,6538b,8,9,f +9559,6553,6,2,f +9559,6553,8,2,f +9559,6558,0,2,f +9559,6587,8,13,f +9559,6628,0,16,f +9559,6632,6,2,f +9559,6632,8,14,f +9559,6641,6,10,f +9559,6643,6,2,f +9559,6643,6,1,t +9559,6644,6,1,t +9559,6644,6,2,f +9559,71509,0,4,f +9559,71509,0,9,t +9559,75535,6,4,f +9559,75c04,8,2,f +9559,75c05,8,1,f +9559,75c05,8,1,t +9559,78c03,7,2,f +9559,85545,1,2,t +9559,85545,1,1,f +9559,bb145c09,6,2,f +9559,bb145c12,6,2,f +9559,flex08c157.5,6,2,f +9559,rb00167a,0,2,t +9559,rb00167a,0,1,f +9559,rb00168,0,8,t +9559,rb00168,0,4,f +9559,rb00170,0,6,t +9559,rb00170,0,4,f +9562,31bc01,4,12,f +9562,31bc01,15,12,f +9565,32000,0,4,f +9565,32001,0,2,f +9565,3700,0,4,f +9565,3701,0,4,f +9565,3709,0,2,f +9565,3738,0,2,f +9565,3894,0,4,f +9565,6541,0,4,f +9567,2780,0,2,f +9567,32013,73,2,f +9567,32015,73,2,f +9567,32039,0,2,f +9567,32138,0,1,f +9567,32140,0,2,f +9567,32553,1,3,f +9567,32554,54,1,f +9567,32574,73,1,f +9567,3705,0,2,f +9567,3749,7,1,f +9567,40339,1,1,f +9567,4519,0,4,f +9567,6553,73,2,f +9567,71509,0,1,t +9567,71509,0,1,f +9569,2412b,80,4,f +9569,2412b,72,4,f +9569,2431,14,1,f +9569,2555,71,2,f +9569,2780,0,2,f +9569,2780,0,1,t +9569,3022,0,2,f +9569,3023,42,2,f +9569,3023,14,3,f +9569,3023,0,2,f +9569,3031,72,1,f +9569,30374,71,2,f +9569,30414,14,1,f +9569,3062b,0,4,f +9569,3070b,72,2,f +9569,3070b,72,1,t +9569,32123b,71,4,f +9569,32123b,71,1,t +9569,3245b,72,1,f +9569,3623,14,2,f +9569,3665,0,4,f +9569,3709,72,1,f +9569,3709,14,2,f +9569,3710,14,2,f +9569,3713,71,1,t +9569,3713,71,4,f +9569,3737,0,2,f +9569,3894,0,2,f +9569,4070,0,4,f +9569,41769,14,1,f +9569,41770,14,1,f +9569,43093,1,2,f +9569,43337,14,2,f +9569,44728,0,1,f +9569,45677,14,1,f +9569,47715,72,1,f +9569,4854,0,1,f +9569,50745,72,4,f +9569,50950,0,2,f +9569,54200,72,2,f +9569,6019,72,2,f +9569,6091,0,2,f +9569,6141,36,1,t +9569,6141,36,12,f +9569,6231,14,2,f +9569,6579,0,4,f +9569,6580,71,4,f +9570,2412b,179,1,f +9570,3001,15,1,f +9570,3020,72,2,f +9570,3022,25,2,f +9570,3022,71,1,f +9570,3023,25,1,f +9570,3023,15,3,f +9570,3023,0,3,f +9570,3040b,25,1,f +9570,30602,40,1,f +9570,30663,0,1,f +9570,3666,0,4,f +9570,3679,71,1,f +9570,3680,0,1,f +9570,3747b,15,1,f +9570,3794b,15,2,f +9570,3795,25,2,f +9570,4081b,71,2,f +9570,4150,0,1,f +9570,43722,15,1,f +9570,4589,71,2,f +9570,4697b,71,1,f +9570,54200,25,7,f +9570,54200,25,1,t +9570,6019,15,2,f +9570,6141,71,5,f +9570,6141,71,1,t +9570,6636,15,2,f +9570,87087,15,2,f +9571,ftumb01,9999,1,f +9572,2780,0,1,t +9572,2780,0,2,f +9572,32062,4,2,f +9572,32073,71,1,f +9572,3713,71,2,t +9572,3713,71,1,f +9572,4519,71,1,t +9572,53585,4,1,f +9572,60484,0,1,f +9572,61800,179,4,f +9572,63153,179,1,f +9572,64727,4,5,f +9572,64727,4,1,t +9572,87083,72,1,f +9572,87806pat0003,179,2,f +9572,90609,0,3,f +9572,90612,4,2,f +9572,90622,4,1,f +9572,90625,0,1,f +9572,90638,57,1,f +9572,90639,179,2,f +9572,90641,179,2,f +9572,92221,179,2,f +9572,92222,179,1,f +9572,93571,57,1,f +9572,93571,4,2,f +9572,93571,0,2,f +9572,93575,0,2,f +9572,98570pat01,15,1,f +9572,98582,179,1,f +9573,3001,14,4,f +9573,3020,14,4,f +9573,3021,15,4,f +9573,3023,70,1,f +9573,44728,15,4,f +9573,49668,320,4,f +9573,6177,1,1,f +9573,6179,15,1,f +9573,93273,70,1,f +9575,122c01,7,2,f +9575,3001a,1,6,f +9575,3003,1,5,f +9575,3004,14,2,f +9575,3004,1,23,f +9575,3004p20,1,2,f +9575,3004p90,1,1,f +9575,3005,1,9,f +9575,3006,1,2,f +9575,3008,7,4,f +9575,3008,1,3,f +9575,3009,1,8,f +9575,3010,1,3,f +9575,3020,14,1,f +9575,3020,7,1,f +9575,3022,7,2,f +9575,3023,1,2,f +9575,3023,7,2,f +9575,3023,14,4,f +9575,3024,1,8,f +9575,3024,36,1,t +9575,3024,1,1,t +9575,3024,36,2,f +9575,3029,1,5,f +9575,3034,7,1,f +9575,3034,1,1,f +9575,3035,7,3,f +9575,3036,46,2,f +9575,3036,1,1,f +9575,3039,14,2,f +9575,3039,7,1,f +9575,3039p34,1,2,f +9575,3040b,1,2,f +9575,3062b,34,5,f +9575,3062b,36,4,f +9575,3066,46,1,f +9575,3068b,1,3,f +9575,3144,7,1,f +9575,3149c01,1,1,f +9575,3228b,7,3,f +9575,3297p90,7,1,f +9575,3460,7,2,f +9575,3596,15,1,f +9575,3622,1,5,f +9575,3626apr0001,14,4,f +9575,3641,0,4,f +9575,3660,1,1,f +9575,3665,1,2,f +9575,3673,7,1,t +9575,3673,7,2,f +9575,3679,7,3,f +9575,3680,7,1,f +9575,3680,14,2,f +9575,3747a,7,1,f +9575,3754pr0002,1,1,f +9575,3761,1,1,f +9575,3762,46,1,f +9575,3794a,7,3,f +9575,3795,7,1,f +9575,3795,14,2,f +9575,3829c01,7,2,f +9575,3838,4,2,f +9575,3838,7,1,f +9575,3838,15,2,f +9575,3839a,7,1,f +9575,3842a,4,2,f +9575,3842a,15,2,f +9575,3853,1,2,f +9575,3855a,46,2,f +9575,3895,1,6,f +9575,3899,47,1,f +9575,3933a,7,2,f +9575,3934a,7,2,f +9575,3935,7,1,f +9575,3936,7,1,f +9575,3937,7,1,f +9575,3938,7,1,f +9575,3940a,0,2,f +9575,3940a,7,10,f +9575,3941,0,2,f +9575,3941,15,4,f +9575,3942a,15,2,f +9575,3943b,15,2,f +9575,3947a,7,2,f +9575,3956,1,1,f +9575,3956,7,3,f +9575,3956,0,4,f +9575,3957a,7,6,f +9575,3957a,0,2,f +9575,3959,0,1,f +9575,3959,7,2,f +9575,3960,7,2,f +9575,3961,7,1,f +9575,3962a,0,2,f +9575,3963,0,2,f +9575,4006,0,1,f +9575,4079,7,2,f +9575,4079,14,2,f +9575,4083,7,2,f +9575,4085a,7,5,f +9575,6970stk01,9999,1,f +9575,970c00,4,2,f +9575,970c00,15,2,f +9575,973p90c02,4,2,f +9575,973p90c05,15,2,f +9576,11208,71,8,f +9576,11209,0,8,f +9576,11211,2,2,f +9576,11291,320,1,f +9576,11303,1,2,f +9576,11477,2,1,f +9576,11477,27,3,f +9576,11477,4,2,f +9576,11477,15,1,f +9576,14226c11,0,1,t +9576,14226c11,0,1,f +9576,14520,72,2,f +9576,14520,15,2,f +9576,14769pr0011,14,1,f +9576,15068,72,10,f +9576,15068,71,6,f +9576,15068,2,5,f +9576,15068,320,1,f +9576,15068,15,2,f +9576,15207,1,2,f +9576,15207,320,2,f +9576,15210pr01,0,1,f +9576,15573,19,2,f +9576,15573,320,1,f +9576,15672,71,2,f +9576,18649,71,2,f +9576,22885,71,2,f +9576,22886,15,4,f +9576,22961,71,2,f +9576,2357,15,2,f +9576,2412b,71,12,f +9576,2420,320,2,f +9576,2431,27,1,f +9576,2431,71,2,f +9576,2431,320,1,f +9576,2432,0,1,f +9576,2456,15,2,f +9576,2460,71,2,f +9576,2465,15,1,f +9576,2498,1,2,f +9576,2578a,14,1,f +9576,2654,71,1,f +9576,3001,15,5,f +9576,3001,2,3,f +9576,3001,4,2,f +9576,3003,4,2,f +9576,3003,15,7,f +9576,3003,2,2,f +9576,3003,71,1,f +9576,3004,1,2,f +9576,3004,15,3,f +9576,3004,71,3,f +9576,3005,15,6,f +9576,3005,71,2,f +9576,3007,15,2,f +9576,3009,15,2,f +9576,3009,71,6,f +9576,3010,1,1,f +9576,3010,2,1,f +9576,3010,4,1,f +9576,30165,14,2,f +9576,3020,320,1,f +9576,3020,72,2,f +9576,3020,1,2,f +9576,3020,15,6,f +9576,3020,14,2,f +9576,3021,0,3,f +9576,3022,71,4,f +9576,3022,14,3,f +9576,3022,4,2,f +9576,3023,46,3,f +9576,3023,1,4,f +9576,3023,71,2,f +9576,3023,36,2,f +9576,30237b,14,2,f +9576,3024,182,1,t +9576,3024,182,6,f +9576,3024,4,1,t +9576,3024,4,1,f +9576,3024,2,1,t +9576,3024,2,1,f +9576,3031,14,2,f +9576,3032,0,7,f +9576,3034,0,1,f +9576,30350a,4,2,f +9576,3037,15,1,f +9576,30386,0,1,f +9576,3039,72,1,f +9576,30395,72,1,f +9576,30396,0,1,f +9576,3040bpr0003,71,2,f +9576,30414,72,7,f +9576,3062b,33,4,f +9576,3065,40,1,f +9576,3068b,71,4,f +9576,3069b,182,3,f +9576,3069b,320,3,f +9576,3069b,36,1,f +9576,3069bpr0030,15,1,f +9576,3069bpr0149,1,1,f +9576,3070b,19,1,t +9576,3070b,19,1,f +9576,3184,0,1,f +9576,32028,71,1,f +9576,32064a,15,2,f +9576,3245b,15,2,f +9576,3460,15,2,f +9576,3622,19,1,f +9576,3622,15,5,f +9576,3623,320,2,f +9576,3623,72,2,f +9576,3626bpr0386,14,1,f +9576,3626bpr0389,14,1,f +9576,3626cpr0891,14,1,f +9576,3626cpr0893,14,1,f +9576,3639,72,1,f +9576,3640,72,1,f +9576,3665,71,2,f +9576,3666,4,1,f +9576,3666,71,1,f +9576,3666,2,1,f +9576,3678b,14,2,f +9576,3710,14,2,f +9576,3710,1,2,f +9576,3710,2,2,f +9576,3710,15,3,f +9576,3794b,71,1,f +9576,3795,15,5,f +9576,3821,1,1,f +9576,3822,1,1,f +9576,3829c01,71,3,f +9576,3832,15,1,f +9576,3836,70,1,f +9576,3837,72,1,f +9576,3839b,72,3,f +9576,3940b,72,1,f +9576,3941,14,2,f +9576,3956,71,1,f +9576,3958,2,1,f +9576,4006,0,1,f +9576,4079,14,2,f +9576,4151b,72,3,f +9576,4215b,15,1,f +9576,4274,1,1,t +9576,4274,1,2,f +9576,4282,72,1,f +9576,4282,15,1,f +9576,44301a,0,2,f +9576,4460b,15,4,f +9576,4522,0,1,f +9576,45677,14,1,f +9576,45677,1,1,f +9576,4599b,14,2,f +9576,4599b,14,1,t +9576,4719,4,1,f +9576,47905,19,1,f +9576,48336,0,3,f +9576,4865a,40,3,f +9576,50745,72,4,f +9576,50745,320,4,f +9576,52036,72,2,f +9576,52501,1,2,f +9576,52501,320,2,f +9576,54200,72,2,f +9576,54200,47,4,f +9576,54200,72,1,t +9576,54200,320,4,f +9576,54200,320,1,t +9576,54200,47,2,t +9576,54200,36,2,f +9576,54200,36,1,t +9576,56890,0,4,f +9576,57783,40,3,f +9576,57895,41,5,f +9576,6014b,71,4,f +9576,60475b,1,2,f +9576,60479,15,8,f +9576,60479,71,4,f +9576,60483,71,2,f +9576,60596,71,6,f +9576,60598,14,1,f +9576,60599,15,1,f +9576,60616a,41,1,f +9576,6112,15,1,f +9576,6141,47,1,t +9576,6141,47,1,f +9576,6157,71,6,f +9576,61780,70,2,f +9576,6187,0,1,f +9576,63868,4,2,f +9576,63868,71,2,f +9576,6587,28,2,f +9576,6636,15,7,f +9576,72475,41,1,f +9576,73590c02a,0,2,f +9576,85984,14,2,f +9576,87079,72,17,f +9576,87087,72,2,f +9576,87580,15,2,f +9576,87620,14,6,f +9576,87990,308,1,f +9576,88930,14,2,f +9576,88930,15,10,f +9576,88930,4,2,f +9576,88930,1,1,f +9576,91405,72,1,f +9576,92438,72,1,f +9576,92582,71,1,f +9576,92593,72,2,f +9576,92851,47,2,f +9576,93606,15,2,f +9576,93606,0,2,f +9576,96874,25,1,t +9576,970c00,272,1,f +9576,970c00,73,2,f +9576,970c00,25,1,f +9576,973pr2875c01,2,1,f +9576,973pr2913c01,25,1,f +9576,973pr3360c01,73,2,f +9576,98138,36,4,f +9576,98138,36,1,t +9576,98281,320,1,f +9576,98281,14,1,f +9576,98282,15,4,f +9576,99930,308,1,f +9577,2357,7,1,f +9577,2357,0,2,f +9577,2431,0,2,f +9577,2431,7,1,f +9577,2453a,6,4,f +9577,2493b,15,2,f +9577,2494,47,2,f +9577,2555,0,1,f +9577,3001,0,1,f +9577,3001,7,1,f +9577,3003,0,1,f +9577,3003,7,1,f +9577,3004,15,1,f +9577,3004,0,11,f +9577,3004,7,4,f +9577,30044,0,2,f +9577,30045,0,2,f +9577,3005,0,3,f +9577,3005,7,1,f +9577,3005,6,4,f +9577,30055,6,2,f +9577,3009,7,2,f +9577,3010,7,3,f +9577,3010,0,2,f +9577,30132,8,1,t +9577,30132,8,4,f +9577,30133,0,1,f +9577,30136,6,12,f +9577,30137,6,4,f +9577,30139,6,1,f +9577,30140,6,2,f +9577,30141,8,3,f +9577,3020,7,2,f +9577,3021,7,1,f +9577,3023,0,2,f +9577,3023,15,1,f +9577,3027,7,2,f +9577,3027,0,1,f +9577,3035,0,2,f +9577,3039,0,1,f +9577,3062b,0,1,f +9577,3069b,0,3,f +9577,3069b,7,2,f +9577,3069bp03,7,1,f +9577,3069bpw0,15,1,f +9577,3069bpw1,15,1,f +9577,3070b,7,2,f +9577,3070b,7,1,t +9577,3455,6,2,f +9577,3622,0,1,f +9577,3626bp62,14,1,f +9577,3626bpx29,14,1,f +9577,3626bpx30,14,1,f +9577,3629,15,1,f +9577,3629,6,1,f +9577,3629pw2,7,1,f +9577,3659,7,2,f +9577,3710,0,1,f +9577,3795,7,1,f +9577,3857,19,1,f +9577,3861b,15,1,f +9577,3878,0,1,f +9577,3899,15,2,f +9577,3958,7,1,f +9577,4070,0,2,f +9577,4071,7,1,f +9577,4079,14,1,f +9577,4213,0,4,f +9577,4275b,14,2,f +9577,4286,7,1,f +9577,4315,0,4,f +9577,4345b,7,1,f +9577,4346px5,2,1,f +9577,4460a,7,2,f +9577,4491b,6,1,f +9577,4531,14,2,f +9577,4611,0,1,f +9577,4865a,0,3,f +9577,57503,334,1,f +9577,57504,334,1,f +9577,57505,334,1,f +9577,57506,334,1,f +9577,6064,2,1,f +9577,6111,7,2,f +9577,6112,6,2,f +9577,6126a,57,1,f +9577,6141,7,2,f +9577,6141,4,1,t +9577,6141,7,1,t +9577,6141,4,1,f +9577,6232,7,1,f +9577,6636,7,1,f +9577,6764stk01,9999,1,t +9577,73129,7,1,f +9577,75998pr0007,15,1,f +9577,970c00,8,1,f +9577,970c00,1,1,f +9577,970c00,0,1,f +9577,970c00,7,1,f +9577,973px161c01,8,1,f +9577,973px53c01,6,1,f +9577,973px55c01,2,1,f +9577,973px56c01,4,1,f +9579,132a,0,6,f +9579,242c01,4,6,f +9579,3001a,4,3,f +9579,3002a,4,2,f +9579,3004,15,11,f +9579,3004,47,2,f +9579,3005,15,8,f +9579,3009,15,5,f +9579,3009p01,4,1,f +9579,3010,15,1,f +9579,3010,4,2,f +9579,3021,15,4,f +9579,3022,47,1,f +9579,3023,15,8,f +9579,3023,4,3,f +9579,3024,4,2,f +9579,3032,0,1,f +9579,3033,15,1,f +9579,3037,47,2,f +9579,3037,4,2,f +9579,3039,47,1,f +9579,3040a,0,2,f +9579,3183a,4,1,f +9579,3184,15,1,f +9579,3193,15,1,f +9579,3455,4,4,f +9579,3455,15,2,f +9579,453cc01,4,5,f +9579,7049b,0,3,f +9579,781,15,1,f +9579,bb50,4,1,f +9581,32062,0,1,f +9581,32062,0,1,t +9581,32073,71,1,f +9581,32174,86,4,f +9581,32174,0,2,f +9581,32523,86,1,f +9581,3706,0,1,f +9581,41668,86,2,f +9581,43093,1,1,t +9581,43093,1,1,f +9581,44807,86,1,f +9581,44816,135,1,f +9581,47300,72,4,f +9581,50899pr0002,86,1,f +9581,50900,72,1,f +9581,50901,72,1,f +9581,50903,14,1,f +9581,6536,0,1,f +9581,6632,25,4,f +9582,2362b,0,2,f +9582,2412b,0,1,f +9582,2432,2,2,f +9582,2456,2,1,f +9582,2540,0,2,f +9582,2921,2,12,f +9582,3004,0,4,f +9582,3004,2,21,f +9582,3009,2,1,f +9582,3020,2,1,f +9582,3023,2,2,f +9582,3037,2,6,f +9582,3040b,2,6,f +9582,3062b,8,2,f +9582,3068b,0,1,f +9582,32064b,15,1,f +9582,3297,0,4,f +9582,3623,2,2,f +9582,3660,2,4,f +9582,3794a,0,1,f +9582,3941,0,1,f +9582,3960,0,1,f +9582,4032a,0,1,f +9582,4175,0,2,f +9582,4215b,0,2,f +9582,4349,0,1,f +9582,4510,0,2,f +9582,6019,0,2,f +9582,6111,2,2,f +9582,6141,42,4,f +9582,6141,8,8,f +9582,6141,36,3,f +9582,6587,8,1,f +9584,11153,19,2,f +9584,11477,326,1,f +9584,15279,326,1,f +9584,2419,28,1,f +9584,2420,70,1,f +9584,3022,70,1,f +9584,3023,8,1,f +9584,3023,70,1,f +9584,3024,326,1,f +9584,3032,8,1,f +9584,3040b,326,3,f +9584,3040b,19,2,f +9584,3666,70,1,f +9584,3678b,28,1,f +9584,4490,19,1,f +9584,4589,70,1,f +9584,54200,326,1,f +9584,6005,288,3,f +9584,6141,0,1,f +9584,6141,19,1,f +9584,64647,57,1,f +9584,85861,182,1,f +9584,93273,326,1,f +9585,3626cps3,14,1,f +9585,3901,19,1,f +9585,970c02pb13,19,1,f +9585,973pb1687c01,15,1,f +9586,14226c11,0,2,f +9586,2335,4,1,f +9586,2335pr02,15,1,f +9586,2412b,71,2,f +9586,2420,72,2,f +9586,2431,4,2,f +9586,2432,4,4,f +9586,2444,0,1,f +9586,2446,4,7,f +9586,2447,40,1,t +9586,2447,40,1,f +9586,2465,4,1,f +9586,2495,4,1,f +9586,2496,0,1,f +9586,2653,71,3,f +9586,3002,71,1,f +9586,30029,0,1,f +9586,3004,15,5,f +9586,3009,4,4,f +9586,3009,71,1,f +9586,3020,0,2,f +9586,3020,4,7,f +9586,3021,72,1,f +9586,3022,4,1,f +9586,3023,0,2,f +9586,3023,4,2,f +9586,30237a,15,6,f +9586,3024,4,2,f +9586,30261,15,1,f +9586,30285,71,8,f +9586,3039px37,15,1,f +9586,3040b,4,1,f +9586,30602,4,4,f +9586,3062b,4,3,f +9586,30648,0,8,f +9586,3068b,15,2,f +9586,3068bp70,15,1,f +9586,3069bp80,15,1,f +9586,3069bpr0101,71,1,f +9586,32530,4,1,f +9586,3299,4,4,f +9586,3299,15,4,f +9586,3622,4,2,f +9586,3623,71,2,f +9586,3626bpr0369,15,1,f +9586,3626bpr0370,4,6,f +9586,3660,71,1,f +9586,3666,4,1,f +9586,3684,4,4,f +9586,3710,4,2,f +9586,3794a,4,2,f +9586,3795,4,1,f +9586,3795,0,2,f +9586,3795,15,1,f +9586,3829c01,15,1,f +9586,3957a,15,2,f +9586,4006,0,1,f +9586,4070,15,2,f +9586,4162,15,2,f +9586,42022,15,2,f +9586,42445,0,2,f +9586,42446,72,2,f +9586,4274,71,2,t +9586,4274,71,2,f +9586,4328,71,1,f +9586,43719,4,2,f +9586,43722,4,1,f +9586,43723,4,1,f +9586,44126,4,1,f +9586,44336pr02,72,1,f +9586,4460b,71,2,f +9586,44728,4,2,f +9586,4589,71,2,f +9586,4599a,71,3,f +9586,47720,0,2,f +9586,4864b,0,2,f +9586,4865a,4,4,f +9586,50373,4,1,f +9586,55295,0,1,f +9586,55296,0,1,f +9586,55297,0,1,f +9586,55298,0,1,f +9586,55299,0,1,f +9586,55300,0,1,f +9586,6111,15,1,f +9586,6111,4,6,f +9586,6112,71,2,f +9586,6141,71,1,t +9586,6141,4,1,f +9586,6141,36,2,t +9586,6141,15,4,f +9586,6141,34,1,t +9586,6141,36,4,f +9586,6141,71,3,f +9586,6141,15,1,t +9586,6141,34,1,f +9586,6141,4,1,t +9586,63965,15,1,f +9586,6541,4,2,f +9586,6636,15,1,f +9586,758c01,7,1,f +9586,970c00,4,7,f +9586,973c31,4,7,f +9588,3641,0,8,f +9588,4084,0,4,f +9588,4600,7,2,f +9588,4624,7,4,f +9588,4624,15,4,f +9588,4624,14,4,f +9588,6157,0,2,f +9590,12708pr02,47,2,f +9590,3003,15,19,f +9590,3005,41,14,f +9590,3065,47,27,f +9591,4288,0,4,f +9592,88283,308,1,f +9593,10884,27,2,f +9593,11097,179,2,f +9593,11103,179,1,f +9593,11107,179,1,f +9593,11127,41,2,f +9593,11129pr0001,70,1,f +9593,11153,191,2,f +9593,11153,326,2,f +9593,12551pr0002,326,1,f +9593,12825,72,1,f +9593,2421,0,1,f +9593,2423,2,2,f +9593,2432,72,2,f +9593,2454a,72,2,f +9593,2540,0,2,f +9593,2780,0,2,f +9593,2780,0,1,t +9593,30031,71,1,f +9593,30176,2,2,f +9593,3020,70,2,f +9593,3020,288,4,f +9593,3021,19,1,f +9593,3022,0,3,f +9593,3022,4,3,f +9593,3023,28,6,f +9593,3023,33,1,f +9593,3034,70,2,f +9593,30374,41,1,f +9593,30374,36,1,f +9593,3040b,70,4,f +9593,3048c,288,2,f +9593,3062b,70,2,f +9593,3069b,191,1,f +9593,32530,72,2,f +9593,3626cpr1119,19,1,f +9593,3626cpr1140,326,1,f +9593,3710,70,2,f +9593,3794a,72,2,f +9593,3795,72,2,f +9593,3829c01,71,1,f +9593,4081b,19,4,f +9593,41769,70,1,f +9593,41770,70,1,f +9593,4286,71,2,f +9593,4287,288,4,f +9593,4460b,191,2,f +9593,44676,0,2,f +9593,4488,71,1,f +9593,4497,179,1,f +9593,47457,71,1,f +9593,47720,0,2,f +9593,48336,19,2,f +9593,4871,72,2,f +9593,49668,191,2,f +9593,52501,72,2,f +9593,53451,15,1,t +9593,53451,15,8,f +9593,54200,326,1,t +9593,54200,326,4,f +9593,55236,288,2,f +9593,55981,71,4,f +9593,60470b,71,2,f +9593,60481,308,2,f +9593,60897,0,6,f +9593,6091,288,4,f +9593,61072,179,2,f +9593,61184,71,2,f +9593,61409,288,2,f +9593,6141,36,1,t +9593,6141,179,1,t +9593,6141,80,1,t +9593,6141,179,2,f +9593,6141,80,2,f +9593,6141,36,4,f +9593,64644,0,4,f +9593,64647,182,2,f +9593,6541,0,2,f +9593,73983,19,2,f +9593,85984,191,1,f +9593,85984,0,1,f +9593,87087,19,4,f +9593,88292,19,2,f +9593,89201,0,4,f +9593,92946,288,4,f +9593,92946,191,4,f +9593,93273,320,2,f +9593,970c02pr0430,19,1,f +9593,970c155pr0443,326,1,f +9593,973pr2226c01,19,1,f +9593,973pr2247c01,326,1,f +9593,98138,41,2,f +9593,98138,41,1,t +9593,99781,71,1,f +9595,3241b,1,8,f +9596,3062a,47,17,f +9596,3062a,14,17,f +9596,3062a,15,17,f +9596,3062a,0,17,f +9596,3062a,4,17,f +9596,3062a,1,17,f +9596,3063b,47,8,f +9596,3063b,1,8,f +9596,3063b,4,8,f +9596,3063b,14,8,f +9596,3063b,15,8,f +9596,3063b,0,8,f +9597,10830pat0001,0,1,f +9597,11458,72,1,f +9597,12825,15,1,f +9597,2412b,72,1,f +9597,2431,25,1,f +9597,2780,0,1,t +9597,2780,0,1,f +9597,3002,25,1,f +9597,3020,72,1,f +9597,30236,8,2,f +9597,30385,80,1,f +9597,3039pr0005,15,1,f +9597,32013,72,1,f +9597,3899,4,1,f +9597,4085c,15,3,f +9597,4533,41,1,f +9597,4714,15,1,f +9597,4740,15,1,f +9597,4865a,47,2,f +9597,63965,72,1,f +9597,64567,71,1,f +9597,64567,71,1,t +9597,92410,71,1,f +9598,2436,1,1,f +9598,2446,15,1,f +9598,2516,0,1,f +9598,2817,0,2,f +9598,3023,1,1,f +9598,3626bp62,14,1,f +9598,3673,7,4,f +9598,3794a,1,1,f +9598,3795,1,1,f +9598,3838,15,1,f +9598,4598,15,1,f +9598,6117,57,1,f +9598,6118,15,4,f +9598,6119,57,1,f +9598,6120,57,2,f +9598,970x023,0,1,f +9598,973p62c01,0,1,f +9600,2357,15,2,f +9600,3004,27,7,f +9600,3005,15,3,f +9600,3007,15,1,f +9600,30176,2,4,f +9600,3020,15,2,f +9600,3022,15,4,f +9600,3022,27,2,f +9600,3023,15,5,f +9600,3023,47,32,f +9600,3023,27,2,f +9600,3028,28,1,f +9600,3034,15,1,f +9600,3039,15,2,f +9600,3062b,70,2,f +9600,3065,47,10,f +9600,3068b,27,2,f +9600,3069b,27,3,f +9600,3069b,29,6,f +9600,3070b,15,1,f +9600,3623,15,4,f +9600,3700,0,1,f +9600,3794b,15,12,f +9600,3794b,27,17,f +9600,4274,1,1,f +9600,50950,15,2,f +9600,6005,15,1,f +9600,6091,27,2,f +9600,6141,27,2,f +9600,6141,29,2,f +9600,6141,71,2,f +9600,63965,70,2,f +9600,6541,15,2,f +9601,3001,0,50,f +9605,2357,72,7,f +9605,2419,0,1,f +9605,2444,0,1,f +9605,2445,70,1,f +9605,2450,0,4,f +9605,2453a,70,4,f +9605,2454a,72,20,f +9605,2465,72,2,f +9605,2566,0,6,f +9605,2577,72,4,f +9605,2654,19,1,f +9605,2723,0,4,f +9605,2780,0,3,t +9605,2780,0,12,f +9605,3001,0,2,f +9605,3001,72,4,f +9605,3002,70,10,f +9605,3003,72,7,f +9605,3004,0,1,f +9605,3005,72,64,f +9605,3006,70,1,f +9605,3009,72,8,f +9605,3009,70,4,f +9605,3010,72,6,f +9605,30136,70,62,f +9605,30137,70,50,f +9605,30140,70,19,f +9605,30145,72,6,f +9605,30153,34,4,f +9605,3020,0,2,f +9605,3020,72,5,f +9605,3021,0,3,f +9605,3021,72,10,f +9605,3022,70,2,f +9605,3022,72,1,f +9605,3022,0,4,f +9605,3023,0,2,f +9605,3023,70,6,f +9605,30237a,0,6,f +9605,3027,0,2,f +9605,3027,72,1,f +9605,30275,70,2,f +9605,3028,0,2,f +9605,3028,70,1,f +9605,3029,2,2,f +9605,30293,132,3,f +9605,30294,132,3,f +9605,3030,2,8,f +9605,3030,0,8,f +9605,3031,0,2,f +9605,3032,0,2,f +9605,3032,2,2,f +9605,3034,0,1,f +9605,3034,19,1,f +9605,3034,72,1,f +9605,3035,0,6,f +9605,3035,72,2,f +9605,30363,72,2,f +9605,30374,71,2,f +9605,30374,70,3,f +9605,30377,0,1,t +9605,30377,0,6,f +9605,3038,0,2,f +9605,30383,72,2,f +9605,3045,0,2,f +9605,30503,0,8,f +9605,30503,2,8,f +9605,30526,71,4,f +9605,30552,0,1,f +9605,3062b,0,18,f +9605,3068b,72,3,f +9605,3068b,320,1,f +9605,3068b,4,1,f +9605,3069b,72,3,f +9605,3176,4,8,f +9605,3176,288,2,f +9605,32000,72,8,f +9605,32002,72,4,f +9605,32039,0,4,f +9605,32062,0,4,f +9605,32062,4,5,f +9605,32064b,72,2,f +9605,32064b,0,3,f +9605,32073,71,3,f +9605,32123b,71,1,t +9605,32123b,0,2,f +9605,32123b,71,4,f +9605,32123b,0,1,t +9605,32140,71,1,f +9605,32140,72,4,f +9605,32174,288,5,f +9605,32250,0,2,f +9605,32291,72,1,f +9605,32316,0,2,f +9605,32324,0,1,f +9605,32506,28,4,f +9605,32530,0,4,f +9605,32556,71,3,f +9605,3308,72,2,f +9605,3403,0,2,f +9605,3404,0,2,f +9605,3460,0,4,f +9605,3622,70,2,f +9605,3623,288,2,f +9605,3626b,71,6,f +9605,3626bpr0251,14,1,f +9605,3626bpr0325,14,1,f +9605,3626bpr0433,14,1,f +9605,3626bpr0434,14,1,f +9605,3626bpr0435,14,1,f +9605,3626bpr0437,71,1,f +9605,3660,72,15,f +9605,3665,72,16,f +9605,3673,71,4,f +9605,3678b,72,25,f +9605,3679,71,1,f +9605,3680,1,1,f +9605,3684,72,2,f +9605,3700,0,1,f +9605,3701,72,6,f +9605,3701,288,2,f +9605,3705,0,2,f +9605,3706,0,1,f +9605,3710,70,1,f +9605,3713,71,3,f +9605,3713,71,1,t +9605,3738,0,1,f +9605,3747a,19,2,f +9605,3795,72,3,f +9605,3795,0,1,f +9605,3830,0,8,f +9605,3831,0,8,f +9605,3832,70,2,f +9605,3832,2,2,f +9605,3832,0,1,f +9605,3848,0,1,f +9605,3848,132,1,f +9605,3894,71,2,f +9605,3894,0,2,f +9605,3937,0,4,f +9605,3938,4,1,f +9605,3958,0,2,f +9605,3960pr0002,19,2,f +9605,3960pr0003,19,3,f +9605,3960pr0004,19,2,f +9605,3960pr0006,19,1,f +9605,4025,0,1,f +9605,40378,288,1,f +9605,40379,15,12,f +9605,40379,0,1,f +9605,40379,320,7,f +9605,40395,288,1,f +9605,40490,0,1,f +9605,4070,70,16,f +9605,4079,70,3,f +9605,4081b,0,2,f +9605,4085c,0,3,f +9605,4095,70,1,f +9605,41239,72,2,f +9605,41529,0,1,f +9605,41670,288,4,f +9605,41677,0,2,f +9605,41678,72,2,f +9605,41854,320,3,f +9605,42003,72,4,f +9605,42003,0,2,f +9605,42023,72,1,f +9605,4274,71,13,f +9605,4274,71,6,t +9605,4286,72,10,f +9605,4287,71,2,f +9605,4287,72,1,f +9605,43093,1,8,f +9605,43557,288,1,f +9605,43712,288,1,f +9605,44136,0,1,f +9605,44294,71,1,f +9605,44301a,0,2,f +9605,44302a,0,4,f +9605,4497,179,9,f +9605,4519,71,2,f +9605,45276,135,3,f +9605,45918,0,2,f +9605,4623,4,8,f +9605,4697b,71,1,t +9605,4697b,71,4,f +9605,47296,288,4,f +9605,47300,288,3,f +9605,47326pat01,288,1,f +9605,4738a,70,1,f +9605,4739a,70,1,f +9605,47456,72,3,f +9605,47753,288,1,f +9605,47905,0,1,f +9605,48092,72,4,f +9605,48336,0,1,f +9605,48495,179,3,f +9605,48495,82,1,f +9605,49668,72,12,f +9605,50231,4,1,f +9605,50898,72,2,f +9605,50923,72,2,f +9605,50926,179,1,f +9605,51342pat0003,288,2,f +9605,53450,82,1,f +9605,53450,132,5,f +9605,53451,15,37,f +9605,53451,15,2,t +9605,53456,288,1,f +9605,53705,132,5,f +9605,54200,72,4,f +9605,6019,0,6,f +9605,6046,0,3,f +9605,6091,72,2,f +9605,6112,72,2,f +9605,6126a,57,10,f +9605,6133,36,2,f +9605,6134,71,3,f +9605,6141,71,25,f +9605,6141,71,4,t +9605,6231,71,2,f +9605,6541,0,8,f +9605,6558,0,13,f +9605,6587,72,1,f +9605,6629,72,2,f +9605,6632,0,4,f +9605,6636,70,4,f +9605,7019stk01,9999,1,t +9605,970c00,288,1,f +9605,970c00,272,1,f +9605,970x026,1,1,f +9605,970x154,0,3,f +9605,973pb0377c01,72,1,f +9605,973pr1211c01,72,1,f +9605,973pr1212c01,72,1,f +9605,973pr1213c01,14,1,f +9605,973pr1214c01,72,1,f +9605,973pr1215c01,272,1,f +9606,2780,0,100,f +9607,2431,14,2,f +9607,2432,1,1,f +9607,2439,8,1,f +9607,2454a,2,8,f +9607,2495,4,1,f +9607,2496,0,3,f +9607,2569,4,1,f +9607,2655,7,2,f +9607,298c02,4,4,f +9607,3003,0,2,f +9607,3003,14,1,f +9607,3004,14,1,f +9607,3007,0,1,f +9607,3008,0,8,f +9607,3010,14,2,f +9607,3010,4,6,f +9607,3010,0,3,f +9607,30104,0,1,f +9607,3010p72,4,2,f +9607,3010pb003,4,1,f +9607,3010pb013,4,1,f +9607,3010px1,4,2,f +9607,30145,2,3,f +9607,30179,0,1,f +9607,30180,14,2,f +9607,30180,7,2,f +9607,30180pb01,7,2,f +9607,30182,0,2,f +9607,30194,8,1,f +9607,3020,0,1,f +9607,30236,4,3,f +9607,30237a,14,2,f +9607,3024,42,4,f +9607,30259p02,15,1,f +9607,30261p03,15,1,f +9607,30262,0,1,f +9607,30263,7,2,f +9607,30277,7,1,f +9607,30278c01,7,1,f +9607,3032,7,2,f +9607,30343c02,0,2,f +9607,30350p01,7,4,f +9607,3037pc0,14,1,f +9607,3039pb020,0,1,f +9607,3040b,46,4,f +9607,3062b,15,2,f +9607,3068b,14,1,f +9607,3069bpr0099,15,1,f +9607,3176,4,2,f +9607,3626bp02,14,1,f +9607,3626bp03,14,1,f +9607,3626bp04,14,1,f +9607,3626bpb0016,14,2,f +9607,3823,41,2,f +9607,3829c01,15,3,f +9607,3836,6,1,f +9607,3837,0,1,f +9607,3901,0,2,f +9607,3941,4,2,f +9607,3957a,15,1,f +9607,3962b,0,2,f +9607,4032a,7,1,f +9607,4083,0,1,f +9607,4211,1,1,f +9607,4345b,14,1,f +9607,4346,7,1,f +9607,4349,1,1,f +9607,4485,2,3,f +9607,4495b,4,1,f +9607,4532,4,3,f +9607,4533px1,7,3,f +9607,4599a,14,1,f +9607,4600,0,2,f +9607,4600,7,1,f +9607,4629c01,1,1,f +9607,4865a,4,2,f +9607,51595p01,2,2,f +9607,55298,8,1,f +9607,6014,15,14,f +9607,6014,14,4,f +9607,6015,0,18,f +9607,6019,15,4,f +9607,6140,4,2,f +9607,6141,36,4,f +9607,6160c01,0,1,f +9607,6187,7,2,f +9607,6564,1,1,f +9607,6565,1,1,f +9607,73037c01,4,1,f +9607,76041c01,14,1,f +9607,892pb08,15,1,f +9607,970c00,4,3,f +9607,970c00,7,1,f +9607,970c00,0,1,f +9607,973p70c01,6,1,f +9607,973pb0113c01,15,3,f +9607,973pb0114c01,4,1,f +9608,184,14,1,f +9608,2352,4,1,f +9608,2456,14,2,f +9608,2577,1,4,f +9608,3001,14,8,f +9608,3001,1,8,f +9608,3001,15,8,f +9608,3001,4,10,f +9608,3001,0,4,f +9608,3001p11,4,1,f +9608,3001pr1,14,1,f +9608,3002,1,4,f +9608,3002,4,4,f +9608,3002,15,4,f +9608,3002,0,2,f +9608,3002,14,4,f +9608,3003,4,12,f +9608,3003,14,9,f +9608,3003,1,8,f +9608,3003,0,6,f +9608,3003,15,9,f +9608,3003pe1,14,2,f +9608,3006,4,2,f +9608,3185,15,4,f +9608,3471,2,1,f +9608,3483,0,4,f +9608,4130,4,1,f +9608,4131,15,1,f +9608,4132,4,2,f +9608,4133,15,2,f +9608,4180c02,0,2,f +9608,4727,2,2,f +9608,4728,15,2,f +9608,4743,4,1,f +9608,4744,4,1,f +9608,6007,8,1,f +9608,6840c01,4,1,f +9608,bfp002,9999,1,f +9611,2412b,1,2,f +9611,2446,15,1,f +9611,298c02,15,1,t +9611,298c02,15,2,f +9611,3001,15,1,f +9611,3040b,15,4,f +9611,3298,15,1,f +9611,3626bp69,14,1,f +9611,3933,0,1,f +9611,3934,0,1,f +9611,4070,8,2,f +9611,6126a,57,2,f +9611,6141,36,1,f +9611,6141,34,1,f +9611,6141,36,1,t +9611,6141,34,1,t +9611,769,334,1,f +9611,970c00,15,1,f +9611,973px176c01,15,1,f +9612,2540,72,1,f +9612,2723,294,4,f +9612,2744,0,2,f +9612,2780,0,2,f +9612,2780,0,1,t +9612,2994,0,4,f +9612,3004,4,1,f +9612,3021,72,2,f +9612,3034,0,1,f +9612,3068b,0,1,f +9612,3069b,4,1,f +9612,32123b,71,1,t +9612,32123b,71,4,f +9612,3666,72,2,f +9612,3705,0,1,f +9612,3708,0,2,f +9612,3713,71,1,t +9612,3713,71,2,f +9612,3894,0,2,f +9612,4070,0,2,f +9612,4162,0,1,f +9612,41669,36,2,f +9612,41669,294,2,f +9612,41747,0,1,f +9612,41747,80,1,f +9612,41748,80,1,f +9612,41748,0,1,f +9612,41769,72,1,f +9612,41770,72,1,f +9612,4287,0,2,f +9612,43093,1,4,f +9612,43722,0,1,f +9612,43723,0,1,f +9612,44126,80,1,f +9612,47715,0,1,f +9612,4865a,0,2,f +9612,50303,0,1,f +9612,54200,72,2,f +9612,6104,72,1,f +9612,6141,80,1,t +9612,6141,80,8,f +9612,6578,0,4,f +9612,75535,0,2,f +9613,3002,15,1,f +9613,3003,15,1,f +9613,3004,15,2,f +9613,3021,0,1,f +9613,3040b,4,3,f +9613,3065,36,1,f +9613,3794a,4,1,f +9613,6124,34,1,f +9614,14181,15,1,f +9614,14210,0,1,f +9614,14226c41,0,1,f +9614,15118,15,1,f +9614,15456,0,1,f +9614,2413,15,1,f +9614,2419,2,2,f +9614,2434,0,1,f +9614,2445,1,1,f +9614,2446,1,1,f +9614,2453b,19,4,f +9614,2458,72,2,f +9614,2460,72,2,f +9614,2479,0,1,f +9614,2488,0,1,f +9614,2637,71,2,f +9614,3001,25,5,f +9614,3001,2,4,f +9614,3001,14,1,f +9614,3001,19,9,f +9614,3003,4,2,f +9614,3003,33,2,f +9614,3003,14,2,f +9614,3003,5,4,f +9614,3003,36,2,f +9614,3003pr0001,14,1,f +9614,3004,73,2,f +9614,3004,72,2,f +9614,3004,14,1,f +9614,3004,27,2,f +9614,3004pr0001,14,1,f +9614,3005pr0003,14,2,f +9614,3005pr0003,15,2,f +9614,3007,19,2,f +9614,3010,1,2,f +9614,3010,2,2,f +9614,3010,70,2,f +9614,3011,41,2,f +9614,3020,25,1,f +9614,3021,25,1,f +9614,3021,4,2,f +9614,30246,71,1,f +9614,30286,41,1,f +9614,3032,70,2,f +9614,30342,41,1,f +9614,3035,1,1,f +9614,3039,33,2,f +9614,3039,47,2,f +9614,3040b,25,2,f +9614,3062b,15,4,f +9614,3065,47,2,f +9614,3065,36,2,f +9614,32009,1,2,f +9614,32014,4,2,f +9614,32034,0,2,f +9614,32140,27,2,f +9614,32200,15,1,f +9614,3298,25,1,f +9614,3437,15,4,f +9614,3626cpr0891,14,2,f +9614,3626cpr0895,15,1,f +9614,3648b,72,1,f +9614,3649,71,1,f +9614,3659,4,2,f +9614,3679,71,2,f +9614,3680,0,2,f +9614,3700,0,2,f +9614,3708,0,2,f +9614,3738,0,2,f +9614,3747b,25,1,f +9614,3749,19,4,f +9614,3795,14,2,f +9614,3795,2,2,f +9614,3823,41,1,f +9614,3837,72,1,f +9614,3878,0,1,f +9614,3937,15,2,f +9614,3937,4,2,f +9614,3938,15,2,f +9614,3941,46,2,f +9614,3957a,42,1,f +9614,3957b,0,1,f +9614,41539,72,1,f +9614,4175,72,1,f +9614,4286,15,2,f +9614,4286,0,2,f +9614,4287,72,2,f +9614,4477,0,2,f +9614,4477,19,2,f +9614,4485,4,1,f +9614,4495b,2,1,f +9614,4530,28,1,f +9614,4727,10,2,f +9614,4728,45,2,f +9614,4740,1,1,f +9614,56902,71,4,f +9614,60219,72,1,f +9614,60598,4,1,f +9614,6060,0,4,f +9614,60608,15,2,f +9614,6064,2,1,f +9614,61254,0,4,f +9614,6134,4,2,f +9614,6177,0,1,f +9614,6215,2,2,f +9614,6215,71,4,f +9614,6232,19,4,f +9614,63082,0,1,f +9614,71015,334,1,f +9614,75347,15,1,f +9614,78c14,4,1,f +9614,96904,334,5,f +9614,96905,334,5,f +9614,96906,334,5,f +9614,96907,334,5,f +9614,970c00,15,2,f +9614,973c02,4,1,f +9614,973c07,1,1,f +9614,98302,0,2,f +9614,99563,334,5,f +9615,18738,71,2,f +9615,30374,0,2,f +9615,3626cpr0645,14,1,f +9615,3626cpr0914,14,1,f +9615,41879a,71,1,f +9615,46303,71,1,f +9615,46303,321,1,f +9615,87781,15,1,f +9615,90509,14,2,f +9615,970c00,28,1,f +9615,970x026,15,1,f +9615,973pr1575c01,0,1,f +9615,973pr1695c01,15,1,f +9615,973pr2037c01,272,1,f +9616,10164pr0001,15,1,f +9616,10169,4,1,f +9616,11090,15,2,f +9616,11211,4,5,f +9616,11477,288,6,f +9616,11609,484,3,f +9616,11609,484,1,t +9616,11618,26,1,t +9616,11618,26,1,f +9616,11640,323,1,f +9616,12825,15,10,f +9616,12939,4,2,f +9616,12939,84,1,f +9616,13459,0,1,f +9616,13548,71,2,f +9616,13787pr0002,14,4,f +9616,13965,19,4,f +9616,14210,0,1,f +9616,14682,71,2,f +9616,15068pr0004,19,4,f +9616,15070,15,3,f +9616,15332,297,2,f +9616,15533,84,4,f +9616,15571,288,1,f +9616,15573,15,1,f +9616,15706,0,1,f +9616,2357,71,3,f +9616,2412b,179,10,f +9616,2412b,297,1,f +9616,2419,15,2,f +9616,2420,70,1,f +9616,2431,72,2,f +9616,2431,70,4,f +9616,2431,288,2,f +9616,2431pr0028,72,1,f +9616,2445,0,1,f +9616,2453b,70,2,f +9616,2460,72,1,f +9616,2540,19,5,f +9616,2555,0,2,f +9616,2555,14,9,f +9616,2555,71,2,f +9616,2555,70,2,f +9616,2566,0,2,f +9616,2654,19,1,f +9616,2921,19,2,f +9616,298c02,4,1,t +9616,298c02,4,2,f +9616,3001,72,1,f +9616,3003,71,1,f +9616,3004,70,8,f +9616,3004,19,6,f +9616,3004,484,2,f +9616,3004,15,3,f +9616,3004,71,4,f +9616,30044,288,3,f +9616,30046,297,4,f +9616,3005,19,15,f +9616,3005,84,4,f +9616,3005,71,2,f +9616,3005,70,8,f +9616,3005pr0011,19,5,f +9616,3007,71,1,f +9616,3009,71,1,f +9616,3009,70,1,f +9616,3009,484,1,f +9616,3009,19,2,f +9616,3010,19,3,f +9616,30136,308,2,f +9616,3020,0,2,f +9616,3020,70,1,f +9616,3020,484,3,f +9616,3021,72,2,f +9616,3021,15,1,f +9616,3021,19,4,f +9616,3021,1,1,f +9616,3022,19,2,f +9616,3022,71,2,f +9616,3022,15,1,f +9616,3022,4,1,f +9616,3022,70,2,f +9616,3022,72,2,f +9616,3022,484,1,f +9616,3022,322,1,f +9616,3023,2,1,f +9616,3023,28,4,f +9616,3023,70,2,f +9616,3023,484,19,f +9616,3023,15,2,f +9616,3023,4,2,f +9616,3023,36,4,f +9616,3023,71,4,f +9616,3023,19,11,f +9616,3023,27,1,f +9616,3023,1,1,f +9616,3023,288,2,f +9616,30237a,70,2,f +9616,3024,19,2,t +9616,3024,15,2,f +9616,3024,2,1,t +9616,3024,14,2,f +9616,3024,71,1,f +9616,3024,70,10,f +9616,3024,70,2,t +9616,3024,2,2,f +9616,3024,25,1,f +9616,3024,15,1,t +9616,3024,25,1,t +9616,3024,19,5,f +9616,3024,0,6,f +9616,3024,71,1,t +9616,3024,14,1,t +9616,3024,0,1,t +9616,3029,15,1,f +9616,3031,0,2,f +9616,3032,15,2,f +9616,3033,70,1,f +9616,30340,2,1,f +9616,3035,288,1,f +9616,3035,15,1,f +9616,3036,92,3,f +9616,3036,15,2,f +9616,30374,297,4,f +9616,30375,19,5,f +9616,3040b,2,4,f +9616,3040b,15,1,f +9616,3040b,84,2,f +9616,3040b,19,2,f +9616,3040b,4,2,f +9616,30414,19,2,f +9616,30414,4,5,f +9616,3046a,72,2,f +9616,30503,70,1,f +9616,3062b,72,2,f +9616,3062b,308,6,f +9616,3062b,46,5,f +9616,3062b,15,4,f +9616,3062b,320,2,f +9616,3062b,4,4,f +9616,30663,0,1,f +9616,3068b,288,3,f +9616,3068b,0,1,f +9616,3068b,322,2,f +9616,3069b,4,6,f +9616,3069b,71,3,f +9616,3069b,15,2,f +9616,3069b,27,1,f +9616,3069bpr0055,15,3,f +9616,3070b,4,1,t +9616,3070b,4,2,f +9616,3176,320,1,f +9616,32000,72,1,f +9616,32028,72,6,f +9616,32474,4,1,f +9616,32474,71,2,f +9616,33291,10,1,t +9616,33291,10,2,f +9616,3460,70,2,f +9616,3622,70,1,f +9616,3622,19,3,f +9616,3623,15,2,f +9616,3623,70,2,f +9616,3626cpr0499,14,1,f +9616,3626cpr0579,14,1,f +9616,3626cpr0580,14,1,f +9616,3626cpr0677,14,1,f +9616,3626cpr0891,14,1,f +9616,3626cpr1162,14,1,f +9616,3633,297,3,f +9616,3659,19,8,f +9616,3659,71,1,f +9616,3660,71,1,f +9616,3665,70,5,f +9616,3665,0,4,f +9616,3665,72,1,f +9616,3666,288,1,f +9616,3666,70,2,f +9616,3678bpr0046,4,1,f +9616,3710,70,6,f +9616,3710,4,3,f +9616,3710,19,1,f +9616,3710,288,2,f +9616,3710,71,2,f +9616,3794a,28,5,f +9616,3794b,72,6,f +9616,3794b,1,1,f +9616,3794b,2,2,f +9616,3795,71,1,f +9616,3795,4,1,f +9616,3832,15,1,f +9616,3832,19,1,f +9616,3899,14,1,f +9616,3900,14,1,f +9616,3937,0,4,f +9616,3941,14,1,f +9616,3941,70,1,f +9616,3960pr0001,0,1,f +9616,4006,0,1,f +9616,4032a,19,1,f +9616,4032a,15,1,f +9616,4032a,2,1,f +9616,4032a,71,5,f +9616,4070,70,7,f +9616,4070,15,1,f +9616,4070,72,6,f +9616,4079,288,1,f +9616,4081b,1,1,f +9616,4081b,14,2,f +9616,4085c,0,2,f +9616,4085c,4,1,f +9616,4085c,72,3,f +9616,4150,72,2,f +9616,4162,70,1,f +9616,41769,288,4,f +9616,41879a,321,1,f +9616,41879a,2,1,f +9616,41879a,1,1,f +9616,41879a,4,1,f +9616,4286,19,4,f +9616,4287,15,4,f +9616,43722,15,1,f +9616,43888,484,3,f +9616,43892,297,6,f +9616,43898,15,1,f +9616,43898,70,1,f +9616,44728,0,1,f +9616,44728,19,1,f +9616,4490,19,2,f +9616,4510,0,2,f +9616,4522,0,1,f +9616,4733,0,5,f +9616,4740,0,3,f +9616,47457,15,2,f +9616,47457,4,2,f +9616,48336,15,1,f +9616,48336,297,5,f +9616,50231,4,1,f +9616,51739,15,2,f +9616,52107,0,1,f +9616,53989,70,8,f +9616,54200,40,1,f +9616,54200,40,1,t +9616,54200,15,2,t +9616,54200,46,1,f +9616,54200,2,1,t +9616,54200,70,2,t +9616,54200,71,7,f +9616,54200,15,17,f +9616,54200,2,4,f +9616,54200,71,1,t +9616,54200,70,13,f +9616,54200,46,1,t +9616,58176,36,1,f +9616,58176,35,1,f +9616,59900,70,17,f +9616,59900,0,4,f +9616,59900,2,1,f +9616,6003,15,2,f +9616,6019,0,1,f +9616,60470a,4,2,f +9616,60474,72,1,f +9616,60475b,0,1,f +9616,60475b,15,2,f +9616,60477,15,3,f +9616,60479,15,1,f +9616,60897,19,1,f +9616,60897,71,1,f +9616,60897,70,4,f +9616,60897,1,1,f +9616,6091,288,4,f +9616,6091,4,2,f +9616,6112,70,2,f +9616,6124,45,1,f +9616,6124,45,1,t +9616,61252,297,9,f +9616,61252,25,1,f +9616,6134,71,4,f +9616,6141,36,3,f +9616,6141,182,1,t +9616,6141,85,1,t +9616,6141,45,2,f +9616,6141,34,2,f +9616,6141,85,1,f +9616,6141,0,8,f +9616,6141,36,1,t +9616,6141,297,2,t +9616,6141,34,1,t +9616,6141,46,3,f +9616,6141,46,1,t +9616,6141,33,1,t +9616,6141,72,1,t +9616,6141,70,16,f +9616,6141,72,10,f +9616,6141,25,1,f +9616,6141,45,1,t +9616,6141,70,2,t +9616,6141,25,1,t +9616,6141,0,2,t +9616,6141,71,2,f +9616,6141,33,2,f +9616,6141,297,19,f +9616,6141,71,1,t +9616,6141,182,2,f +9616,6182,19,3,f +9616,6190,72,1,f +9616,62361,70,1,f +9616,62808,297,2,f +9616,63868,4,4,f +9616,63965,0,1,f +9616,64390,70,2,f +9616,64567,297,1,t +9616,64567,297,4,f +9616,64644,297,2,f +9616,64647,182,2,t +9616,64647,182,3,f +9616,64807,15,1,f +9616,75c18,0,2,f +9616,75c18,0,1,t +9616,85984,19,2,f +9616,85984,15,2,f +9616,87079,72,2,f +9616,87079,70,1,f +9616,87079,484,2,f +9616,87081,72,1,f +9616,87087,288,6,f +9616,87087,484,4,f +9616,87087,4,1,f +9616,87552,0,1,f +9616,87580,322,1,f +9616,87580,70,2,f +9616,87580,72,5,f +9616,87620,72,2,f +9616,88930,4,2,f +9616,91988,70,1,f +9616,92690,297,2,f +9616,92946,1,2,f +9616,93223,15,1,t +9616,93223,15,1,f +9616,93273,19,1,f +9616,93273,4,4,f +9616,94161,70,1,f +9616,96874,25,1,t +9616,970c00,4,1,f +9616,973pr1163c01,272,1,f +9616,973pr1244c01,73,1,f +9616,973pr1446c01,4,1,f +9616,973pr1627c01,15,1,f +9616,973pr1857c01,1,1,f +9616,973pr2300c01,4,1,f +9616,98138,15,4,f +9616,98138,71,2,f +9616,98138,179,1,t +9616,98138,71,1,t +9616,98138,179,6,f +9616,98138,15,1,t +9616,98138pr0013,15,1,t +9616,98138pr0013,15,2,f +9616,98138pr0018,84,1,t +9616,98138pr0018,84,2,f +9616,98283,84,4,f +9616,98283,72,5,f +9616,99206,71,1,f +9617,2412b,1,1,f +9617,298c02,15,1,t +9617,298c02,15,2,f +9617,3003,1,1,t +9617,3004,1,2,f +9617,3021,0,1,f +9617,30383,0,2,f +9617,30386,7,2,f +9617,30540,7,2,f +9617,3176,1,2,f +9617,4070,7,2,f +9617,41855,73,1,f +9617,4286,1,2,f +9617,6141,57,1,t +9617,6141,57,2,f +9617,73983,8,2,f +9621,2359p01,7,4,f +9621,2360p01,7,2,f +9621,2361p01,7,1,f +9621,2435,2,6,f +9621,3003,14,17,f +9621,3004,14,4,f +9621,3039p11,14,2,f +9621,3069bpr0099,15,6,f +9621,309p01,7,1,f +9621,3185,4,6,f +9621,3298,14,2,f +9621,3455,14,2,f +9621,3470,2,6,f +9621,3471,2,4,f +9621,3778,2,2,f +9621,3957a,4,2,f +9621,3960p06,15,2,f +9621,4079,15,6,f +9621,4345ap03,14,2,f +9621,4346p03,14,2,f +9621,4728,4,6,f +9622,3003,0,1,f +9622,3069bpr0099,15,2,f +9622,3626bpx27,14,1,f +9622,4345b,14,1,f +9622,4346pb01,14,1,f +9622,4485,4,1,f +9622,4523,0,1,f +9622,4719,14,1,f +9622,6141,47,1,f +9622,92851,47,2,f +9622,970c00,4,1,f +9622,973pb0235c01,4,1,f +9623,11153,27,1,f +9623,11153,70,2,f +9623,11211,19,4,f +9623,11476,71,1,f +9623,11477,308,4,f +9623,11477,25,4,f +9623,14769pr1003,15,2,f +9623,2357,70,6,f +9623,2420,70,4,f +9623,2540,0,2,f +9623,3003,14,2,f +9623,3003,19,1,f +9623,30031,0,2,f +9623,3004,70,2,f +9623,3004,4,1,f +9623,3005,70,2,f +9623,3010,70,1,f +9623,3020,70,4,f +9623,3020,19,1,f +9623,3021,70,3,f +9623,3021,14,2,f +9623,3022,70,3,f +9623,3022,4,1,f +9623,3022,19,3,f +9623,3022,0,1,f +9623,3023,19,3,f +9623,3023,25,2,f +9623,3023,14,4,f +9623,3023,70,9,f +9623,3024,70,2,f +9623,3039,19,1,f +9623,3039,0,1,f +9623,3039,70,2,f +9623,3040b,4,1,f +9623,3068b,70,1,f +9623,3069b,4,3,f +9623,3069b,19,4,f +9623,3069b,70,4,f +9623,3070b,19,4,f +9623,3070b,19,1,t +9623,3070b,4,1,f +9623,3176,0,1,f +9623,32192,0,2,f +9623,3622,25,1,f +9623,3660,70,2,f +9623,3665,70,2,f +9623,3666,70,2,f +9623,3678b,0,1,f +9623,3705,0,1,f +9623,3710,19,2,f +9623,3710,73,1,f +9623,3710,70,8,f +9623,3794b,19,5,f +9623,3794b,14,1,f +9623,3795,70,1,f +9623,3937,14,1,f +9623,3941,14,1,f +9623,3942c,14,2,f +9623,4032a,14,2,f +9623,4070,70,2,f +9623,4070,14,4,f +9623,41532,0,2,f +9623,43093,1,2,f +9623,43710,19,1,f +9623,43711,19,1,f +9623,43722,0,1,f +9623,43723,0,1,f +9623,4590,72,1,f +9623,47455,0,1,f +9623,47457,19,2,f +9623,48169,72,1,f +9623,48171,72,1,f +9623,48336,19,5,f +9623,4871,70,2,f +9623,4871,0,1,f +9623,48729b,0,4,f +9623,51739,0,1,f +9623,53585,0,2,f +9623,54200,19,3,f +9623,54200,19,1,t +9623,54200,70,2,f +9623,54200,70,1,t +9623,57908,308,1,f +9623,6005,19,2,f +9623,60470a,71,2,f +9623,60471,0,2,f +9623,60478,0,9,f +9623,60897,0,8,f +9623,6091,19,14,f +9623,6134,0,1,f +9623,6141,0,4,f +9623,6141,15,6,f +9623,62462,70,4,f +9623,63868,0,6,f +9623,64799,71,1,f +9623,85984,19,2,f +9623,85984,14,1,f +9623,87083,72,2,f +9623,87087,19,2,f +9623,87994,70,2,f +9623,88072,72,2,f +9623,92013,308,4,f +9623,98138pr0008,15,2,f +9623,98138pr0008,15,1,t +9623,98313,70,14,f +9623,99780,71,3,f +9623,99781,0,1,f +9625,3003,4,2,f +9625,3003,15,4,f +9625,3003,0,4,f +9625,3007,4,2,f +9625,4728,1,1,f +9625,4728,1,1,t +9625,4744pb08,2,1,f +9625,6215,4,2,f +9625,6249,4,1,f +9627,3001a,0,13,f +9627,3003,0,1,f +9627,3004,0,6,f +9627,3005,1,16,f +9627,3005,0,6,f +9627,3005,14,4,f +9627,3006,4,2,f +9627,3008,14,4,f +9627,3009,1,4,f +9627,3009,14,8,f +9627,3009,0,15,f +9627,3010,4,4,f +9627,3010,14,4,f +9627,3010,0,12,f +9627,3020,0,5,f +9627,3022,0,4,f +9627,3023,4,4,f +9627,3023,0,4,f +9627,3024,0,6,f +9627,3027,0,2,f +9627,3028,7,1,f +9627,3029,7,2,f +9627,3031,0,2,f +9627,3032,0,1,f +9627,3034,4,1,f +9627,3034,0,1,f +9627,3036,0,1,f +9627,3037,0,4,f +9627,3038,0,2,f +9627,3039,0,3,f +9627,3040b,0,4,f +9627,3062a,0,2,f +9627,3068b,7,6,f +9627,3229b,7,16,f +9627,3230b,7,16,f +9627,3297,7,16,f +9627,3460,0,2,f +9627,3622,14,4,f +9627,3622,0,4,f +9627,3623,0,4,f +9627,3624,4,3,f +9627,3625,0,1,f +9627,3626apr0001,14,5,f +9627,3660,0,10,f +9627,3665,0,18,f +9627,3666,4,1,f +9627,3666,0,4,f +9627,3700,0,1,f +9627,3710,7,4,f +9627,3710,0,7,f +9627,3794a,0,2,f +9627,3795,7,4,f +9627,3795,0,4,f +9627,3832,0,2,f +9627,3900,7,1,f +9627,3901,6,1,f +9627,3941,0,2,f +9627,3958,0,1,f +9627,4022,0,4,f +9627,4023,0,6,f +9627,4032a,4,1,f +9627,4032a,0,16,f +9627,4033,1,8,f +9627,4034,47,8,f +9627,4035,1,4,f +9627,4036,47,4,f +9627,4070,0,2,f +9627,4079,14,8,f +9627,4079,4,3,f +9627,4161,0,4,f +9627,4162,1,8,f +9627,4175,4,2,f +9627,4178,0,1,f +9627,4180c04,4,7,f +9627,4181p01,1,2,f +9627,4182p01,1,2,f +9627,4183,47,4,f +9627,6141,46,3,f +9627,73092,0,6,f +9627,767,8,32,f +9627,970c00,0,1,f +9627,970c00,1,3,f +9627,970c00,4,1,f +9627,973c01,15,1,f +9627,973c02,4,2,f +9627,973p18c01,1,1,f +9627,973p26c01,1,1,f +9629,11211,19,3,f +9629,15573,19,1,f +9629,2420,19,2,f +9629,3004,70,2,f +9629,3010,70,1,f +9629,3020,19,1,f +9629,3020,70,4,f +9629,3021,70,2,f +9629,3022,70,4,f +9629,3023,70,3,f +9629,3031,70,1,f +9629,30414,19,2,f +9629,3710,19,3,f +9629,49668,0,4,f +9629,59900,19,1,f +9629,6141,0,1,f +9629,6141,71,2,f +9629,98138pr0008,15,2,f +9630,3004,72,1,f +9630,3021,70,1,f +9630,3899,4,1,f +9630,4528,0,1,f +9631,10201,15,6,f +9631,10247,0,4,f +9631,10288,308,1,f +9631,10884,27,2,f +9631,10928,72,5,f +9631,11203,72,3,f +9631,11214,72,1,f +9631,11267,85,1,f +9631,11291,0,2,f +9631,11477,72,4,f +9631,11477,1,2,f +9631,11477,0,12,f +9631,11477,85,11,f +9631,11833,47,1,f +9631,11833,191,4,f +9631,13547,4,4,f +9631,13971,4,2,f +9631,14395,71,2,f +9631,14707,85,2,f +9631,14769,19,2,f +9631,14769,14,1,f +9631,14769,71,5,f +9631,14769pr1003,15,2,f +9631,15209,15,4,f +9631,15279,10,2,f +9631,15303,0,3,f +9631,15392,72,2,f +9631,15392,72,1,t +9631,15400,72,2,f +9631,15403,0,2,f +9631,15573,19,8,f +9631,15672,15,4,f +9631,15712,0,1,f +9631,18654,72,1,t +9631,18654,72,1,f +9631,18663,47,1,f +9631,18671,72,4,f +9631,18970,10,2,f +9631,18987,0,1,f +9631,19185,0,1,f +9631,19888,14,1,f +9631,21019pat03,0,1,f +9631,21019pat04,72,1,f +9631,2412b,71,4,f +9631,2419,15,2,f +9631,2420,2,4,f +9631,2420,15,2,f +9631,2431,15,2,f +9631,2431,14,6,f +9631,2431,0,5,f +9631,2437,40,1,f +9631,2453b,4,2,f +9631,2453b,15,2,f +9631,2453b,29,2,f +9631,2458,0,4,f +9631,2460,0,4,f +9631,2460,71,1,f +9631,2476a,28,2,f +9631,2488,2,1,f +9631,2540,71,2,f +9631,2540,2,3,f +9631,2540,72,2,f +9631,2654,71,6,f +9631,2654,0,1,f +9631,2780,0,4,t +9631,2780,0,15,f +9631,2817,0,3,f +9631,298c02,4,1,t +9631,298c02,4,1,f +9631,3001,15,2,f +9631,3002,19,1,f +9631,30029,0,1,f +9631,30031,0,3,f +9631,3004,85,2,f +9631,3004,14,6,f +9631,3004,72,2,f +9631,3004,4,1,f +9631,3004,71,1,f +9631,3004,0,2,f +9631,3005,4,2,f +9631,3005,15,2,f +9631,3005pe1,14,6,f +9631,3009,1,2,f +9631,3010,14,4,f +9631,3010,72,2,f +9631,30115,2,1,f +9631,30132,72,2,f +9631,30132,72,2,t +9631,30165,484,2,f +9631,3020,28,1,f +9631,3020,4,2,f +9631,3020,72,1,f +9631,3020,322,1,f +9631,3021,15,8,f +9631,3021,19,4,f +9631,3021,0,3,f +9631,3022,25,3,f +9631,3022,71,2,f +9631,3022,0,9,f +9631,3023,0,8,f +9631,3023,85,2,f +9631,3023,2,3,f +9631,3023,19,3,f +9631,3023,4,1,f +9631,3023,14,17,f +9631,3023,15,2,f +9631,3024,4,2,f +9631,3024,0,1,t +9631,3024,2,2,f +9631,3024,4,1,t +9631,3024,2,1,t +9631,3024,0,2,f +9631,3032,14,1,f +9631,3033,72,3,f +9631,3034,2,1,f +9631,3034,15,1,f +9631,3034,0,1,f +9631,3036,72,1,f +9631,3036,28,1,f +9631,3036,322,2,f +9631,30367c,4,1,f +9631,30374,70,1,f +9631,30374,0,2,f +9631,30374,14,2,f +9631,30377,0,1,t +9631,30377,0,3,f +9631,30383,72,2,f +9631,3039,14,3,f +9631,3039,0,2,f +9631,3039,15,1,f +9631,3040b,0,2,f +9631,3040b,71,2,f +9631,3040b,1,2,f +9631,30414,14,2,f +9631,30503,72,4,f +9631,30553,0,2,f +9631,30562,47,4,f +9631,30565,27,4,f +9631,30565,322,4,f +9631,30602,35,3,f +9631,3062b,19,10,f +9631,3062b,27,4,f +9631,3063b,4,10,f +9631,3068b,4,8,f +9631,3068b,28,1,f +9631,3068b,0,8,f +9631,3069b,47,4,f +9631,3069b,4,2,f +9631,3069b,27,4,f +9631,3069b,29,1,f +9631,3069b,15,4,f +9631,3069b,46,2,f +9631,3070b,2,1,f +9631,3070b,15,1,t +9631,3070b,15,1,f +9631,3070b,2,1,t +9631,3070b,1,2,f +9631,3070b,0,2,f +9631,3070b,1,1,t +9631,3070b,0,1,t +9631,3070bpr0147,71,3,t +9631,3070bpr0147,71,3,f +9631,3176,14,3,f +9631,3176,29,1,f +9631,32001,0,1,f +9631,32013,0,4,f +9631,32028,72,6,f +9631,32034,0,1,f +9631,32039,0,2,f +9631,32054,0,4,f +9631,32062,4,5,f +9631,32064a,2,2,f +9631,32123b,71,2,f +9631,32187,71,1,f +9631,32324,71,1,f +9631,32449,0,1,f +9631,3245b,15,1,f +9631,32474,27,2,f +9631,32474,0,3,f +9631,32474,4,1,f +9631,32524,10,1,f +9631,32524,0,1,f +9631,32529,0,1,f +9631,33243,15,6,f +9631,3460,15,1,f +9631,3460,0,1,f +9631,3622,15,2,f +9631,3623,71,4,f +9631,3623,19,4,f +9631,3626cpr0897,78,1,f +9631,3626cpr0898,15,1,f +9631,3626cpr0935,78,1,f +9631,3626cpr1180,78,1,f +9631,3626cpr1613,0,1,f +9631,3626cpr1720,2,1,f +9631,3626cpr1721,15,1,f +9631,3626cpr1722,92,1,f +9631,3659,0,1,f +9631,3660,15,2,f +9631,3665,4,2,f +9631,3666,2,3,f +9631,3666,71,2,f +9631,3666,28,4,f +9631,3673,71,10,f +9631,3673,71,3,t +9631,3700,15,1,f +9631,3700,72,1,f +9631,3701,4,4,f +9631,3701,14,1,f +9631,3703,71,2,f +9631,3705,0,5,f +9631,3706,0,3,f +9631,3710,71,8,f +9631,3713,4,1,t +9631,3713,4,1,f +9631,3738,72,1,f +9631,3749,19,4,f +9631,3795,14,1,f +9631,3832,72,2,f +9631,3878,0,1,f +9631,3894,72,2,f +9631,3937,14,4,f +9631,3938,71,4,f +9631,3941,70,2,f +9631,3941,2,6,f +9631,3956,71,4,f +9631,3956,2,3,f +9631,3957a,0,1,f +9631,3957a,0,1,t +9631,3957b,70,1,f +9631,3958,1,1,f +9631,4032a,0,2,f +9631,4032a,72,2,f +9631,4032a,2,3,f +9631,4070,0,4,f +9631,4070,15,2,f +9631,4081b,4,2,f +9631,41531,0,1,f +9631,41678,0,1,f +9631,41769,2,2,f +9631,41769,14,1,f +9631,41769,15,1,f +9631,41770,15,1,f +9631,41770,14,1,f +9631,41770,2,2,f +9631,41879a,30,1,f +9631,4274,1,1,t +9631,4274,1,2,f +9631,43093,1,5,f +9631,43720,0,2,f +9631,43721,0,2,f +9631,43857,71,1,f +9631,43898,0,1,f +9631,44375a,71,1,f +9631,4460b,71,2,f +9631,4460b,15,2,f +9631,44728,72,4,f +9631,44728,15,1,f +9631,4477,4,4,f +9631,4477,72,4,f +9631,4495b,4,2,f +9631,4495b,2,2,f +9631,4519,71,1,f +9631,45677,0,1,f +9631,4697b,71,1,t +9631,4697b,71,1,f +9631,4733,15,1,f +9631,4733,0,1,f +9631,4733,72,1,f +9631,4740,57,3,f +9631,4740,42,2,f +9631,4740,35,2,f +9631,47847,41,2,f +9631,4865a,29,2,f +9631,4871,14,3,f +9631,48729b,72,2,f +9631,48729b,72,1,t +9631,49668,191,1,f +9631,49668,0,1,f +9631,50859b,0,1,f +9631,50861,0,2,f +9631,50862,71,2,f +9631,50943,72,1,f +9631,51739,71,1,f +9631,51739,14,3,f +9631,54200,0,10,f +9631,54200,19,1,t +9631,54200,0,3,t +9631,54200,19,8,f +9631,54200,15,6,f +9631,54200,4,1,t +9631,54200,15,1,t +9631,54200,4,4,f +9631,54200,14,2,f +9631,54200,14,1,t +9631,55236,27,4,f +9631,55706,0,2,f +9631,55981,14,4,f +9631,57895,47,3,f +9631,58090,0,4,f +9631,59426,72,1,f +9631,59443,0,1,f +9631,6019,14,2,f +9631,60470a,4,2,f +9631,60474,4,1,f +9631,60477,14,2,f +9631,60478,72,2,f +9631,60479,0,3,f +9631,60481,85,2,f +9631,60596,14,3,f +9631,60596,29,1,f +9631,6064,2,2,f +9631,60849,71,2,f +9631,60849,71,1,t +9631,60897,25,1,f +9631,60897,1,2,f +9631,61252,71,3,f +9631,6126b,182,3,f +9631,61409,72,8,f +9631,6141,182,1,t +9631,6141,35,1,t +9631,6141,42,5,f +9631,6141,42,1,t +9631,6141,85,2,f +9631,6141,14,4,f +9631,6141,14,1,t +9631,6141,35,14,f +9631,6141,85,1,t +9631,6141,182,4,f +9631,61482,71,3,f +9631,61482,71,3,t +9631,61487,0,1,f +9631,6180,15,5,f +9631,6222,72,1,f +9631,62361,0,4,f +9631,62462,15,4,f +9631,62537pr0002,4,1,f +9631,6254,27,2,f +9631,63864,4,6,f +9631,63864,1,2,f +9631,63868,71,2,f +9631,63965,0,1,f +9631,64448,15,1,f +9631,64449,15,2,f +9631,64449,72,1,f +9631,64728,4,4,f +9631,64798,2,1,f +9631,6541,4,2,f +9631,6541,1,4,f +9631,6553,72,1,f +9631,6558,1,2,f +9631,6587,28,2,f +9631,6628,0,2,f +9631,6632,4,2,f +9631,6636,5,1,f +9631,6636,19,4,f +9631,73983,14,4,f +9631,85974pr0002b,4,1,f +9631,85983,15,1,f +9631,85984,72,2,f +9631,85984,14,3,f +9631,85984,0,10,f +9631,86500,191,1,f +9631,86500,71,1,f +9631,87079,4,1,f +9631,87079,0,1,f +9631,87081,70,1,f +9631,87081,4,1,f +9631,87083,72,1,f +9631,87087,85,4,f +9631,87618,0,4,f +9631,87747,179,1,t +9631,87747,179,2,f +9631,88072,4,1,f +9631,88393,85,10,f +9631,88646,0,2,f +9631,89523,2,1,f +9631,92280,378,4,f +9631,92593,27,2,f +9631,92926,72,3,f +9631,92946,4,2,f +9631,92946,0,2,f +9631,92947,0,1,f +9631,92950,85,4,f +9631,93230pr0003,288,1,f +9631,93273,2,2,f +9631,93273,0,4,f +9631,93568pat0001,84,1,f +9631,95225,26,1,f +9631,95347,27,2,f +9631,96874,25,1,t +9631,970c00,85,1,f +9631,970c00,2,1,f +9631,970c00pr0301,27,1,f +9631,970c00pr0906,85,1,f +9631,970c00pr0907,4,1,f +9631,973pr0297c01,85,1,f +9631,973pr2017c01,27,1,f +9631,973pr2308c01,0,1,f +9631,973pr2922c01,72,1,f +9631,973pr3091c01,85,1,f +9631,973pr3092c01,4,1,f +9631,973pr3093c01,4,1,f +9631,973pr3094c01,85,1,f +9631,98138,34,2,t +9631,98138,36,3,t +9631,98138,46,1,t +9631,98138,71,8,f +9631,98138,34,26,f +9631,98138,46,6,f +9631,98138,36,10,f +9631,98138,182,6,f +9631,98138,71,1,t +9631,98138,182,1,t +9631,98375,179,1,t +9631,98375,179,1,f +9631,98385,0,1,f +9631,98721,0,1,f +9631,98721,0,1,t +9631,99021,72,2,f +9631,99206,4,1,f +9631,99207,71,3,f +9631,99780,0,2,f +9631,99781,15,2,f +9633,2540,72,1,f +9633,2926,0,1,f +9633,30163,0,1,f +9633,3034,72,1,f +9633,3624,0,1,f +9633,3626cpr1013,71,1,f +9633,3829c01,0,1,f +9633,4349,72,2,f +9633,4600,0,1,f +9633,4624,15,4,f +9633,47458,0,1,f +9633,50946,0,1,f +9633,53989,72,2,f +9633,54200,0,2,f +9633,54200,0,1,t +9633,59895,0,4,f +9633,6126b,57,2,f +9633,6141,36,1,t +9633,6141,36,2,f +9633,87087,0,2,f +9633,970c00pr0364,272,1,f +9633,973pr2102c01,272,1,f +9635,2412b,15,1,f +9635,2412b,0,1,f +9635,3005,0,2,f +9635,3022,72,4,f +9635,3024,47,1,t +9635,3024,47,2,f +9635,30374,36,1,f +9635,30374,41,1,f +9635,3710,72,1,f +9635,4070,0,2,f +9635,4070,71,2,f +9635,54200,0,1,t +9635,54200,0,2,f +9635,60897,0,2,f +9635,6141,33,1,f +9635,6141,33,1,t +9635,64567,80,1,t +9635,64567,80,2,f +9635,64647,182,1,t +9635,64647,182,1,f +9635,92593,0,1,f +9636,2357,72,4,f +9636,2412b,71,16,f +9636,2458,72,4,f +9636,2780,0,4,f +9636,2780,0,1,t +9636,2877,0,12,f +9636,3002,71,4,f +9636,3003,0,2,f +9636,3009,0,1,f +9636,3020,71,9,f +9636,3021,72,4,f +9636,3022,0,6,f +9636,3023,71,9,f +9636,3028,0,2,f +9636,3031,72,1,f +9636,3032,0,8,f +9636,3035,72,2,f +9636,30357,72,2,f +9636,3036,0,2,f +9636,30364,72,8,f +9636,30365,71,8,f +9636,30366ps1,40,1,f +9636,30368,0,1,f +9636,30373,72,2,f +9636,30374,36,1,f +9636,3039,71,3,f +9636,3040b,72,4,f +9636,30503,0,8,f +9636,3062b,71,2,f +9636,3068b,71,10,f +9636,3069bpr0086,71,1,f +9636,3622,19,2,f +9636,3623,72,4,f +9636,3626bpr0402,71,1,f +9636,3660,0,2,f +9636,3665,72,3,f +9636,3700,71,4,f +9636,3701,71,3,f +9636,3705,0,2,f +9636,3710,72,14,f +9636,3747b,71,2,f +9636,3832,72,4,f +9636,3960ps2,72,1,f +9636,4162,71,6,f +9636,41677,72,2,f +9636,48336,0,1,f +9636,4855,72,2,f +9636,4864b,0,1,f +9636,4871,72,4,f +9636,48933,72,2,f +9636,50231,0,1,f +9636,58846,71,2,f +9636,60219,71,1,f +9636,61184,71,2,f +9636,6141,0,4,f +9636,6141,0,1,t +9636,6141,36,6,f +9636,6141,36,1,t +9636,6179,0,1,f +9636,6232,19,2,f +9636,63868,0,3,f +9636,64567,80,1,f +9636,6541,0,4,f +9636,6636,71,20,f +9636,8017stk01,9999,1,t +9636,970c00,0,1,f +9636,973pr1469c01,0,1,f +9638,2450,1,2,f +9638,2496,0,1,f +9638,2655,14,1,f +9638,3001,15,1,f +9638,3021,4,1,f +9638,3022,1,1,f +9638,3039,15,1,f +9638,3039,47,1,f +9639,15523pr0002,14,1,f +9639,16709pat01pr001,321,1,f +9639,2496,30,2,f +9639,42511pr0003,27,1,f +9639,88646,0,1,f +9639,973pr2606c01,4,1,f +9641,3024,72,1,f +9641,3048c,71,1,f +9641,3710,72,2,f +9641,3794b,71,2,f +9641,4589,71,4,f +9641,54200,40,1,f +9641,54200,71,1,t +9641,54200,40,1,t +9641,54200,71,2,f +9641,6019,72,2,f +9641,61678,71,1,f +9641,63965,71,2,f +9642,2362b,15,4,f +9642,2377,15,2,f +9642,2412b,71,1,t +9642,2412b,71,19,f +9642,2412b,15,3,f +9642,2419,72,2,f +9642,2419,15,1,f +9642,2431,15,2,f +9642,2431,72,5,f +9642,2431,0,3,f +9642,2432,1,1,f +9642,2437,40,1,f +9642,2444,0,8,f +9642,2445,72,2,f +9642,2453a,15,2,f +9642,2456,15,4,f +9642,2458,72,2,f +9642,2458,4,4,f +9642,2460,72,1,f +9642,2495,4,1,f +9642,2496,0,1,f +9642,2508,0,1,f +9642,2569,0,2,f +9642,2571,41,3,f +9642,2572,41,4,f +9642,2654,72,1,f +9642,2736,71,1,f +9642,2780,0,3,t +9642,2780,0,20,f +9642,2877,15,8,f +9642,2877,4,4,f +9642,2926,0,2,f +9642,2991,72,4,f +9642,3001,15,2,f +9642,3002,15,3,f +9642,3003,14,1,f +9642,3003,1,3,f +9642,3003,15,1,f +9642,3004,15,11,f +9642,3004,4,6,f +9642,3005,4,4,f +9642,3005,15,6,f +9642,3009,4,4,f +9642,3010,15,1,f +9642,30134,0,1,f +9642,30162,72,1,f +9642,3020,72,1,f +9642,3020,71,3,f +9642,3022,15,1,f +9642,3022,72,1,f +9642,3022,14,3,f +9642,3023,4,27,f +9642,3023,72,4,f +9642,30236,71,1,f +9642,30236,15,4,f +9642,3024,0,4,f +9642,3024,46,4,f +9642,3027,71,1,f +9642,30283,14,1,f +9642,30283,72,3,f +9642,3029,72,2,f +9642,3030,72,2,f +9642,3031,72,3,f +9642,3032,14,1,f +9642,3033,71,1,f +9642,3034,0,3,f +9642,3035,15,1,f +9642,30374,71,1,f +9642,30377,71,2,f +9642,30377,71,1,t +9642,3039,14,1,f +9642,3039pr0002,15,1,f +9642,3039pr0013,15,2,f +9642,3040bpr0003,71,1,f +9642,30503,72,2,f +9642,3062b,4,1,f +9642,3068b,15,8,f +9642,3068b,4,1,f +9642,3068bpr0137,15,2,f +9642,3069b,4,3,f +9642,3069b,14,2,f +9642,3069b,71,1,f +9642,3069bpr0030,15,2,f +9642,3139,0,18,f +9642,3176,1,1,f +9642,32013,14,1,f +9642,32028,14,1,f +9642,32064b,72,2,f +9642,32530,72,4,f +9642,32531,0,1,f +9642,3297,15,5,f +9642,3298,15,2,f +9642,3623,14,2,f +9642,3623,4,1,f +9642,3633,0,4,f +9642,3659,15,1,f +9642,3660,4,1,f +9642,3666,15,2,f +9642,3666,1,4,f +9642,3666,4,2,f +9642,3666,72,6,f +9642,3678b,15,4,f +9642,3679,71,5,f +9642,3680,0,5,f +9642,3703,72,1,f +9642,3708,0,2,f +9642,3710,4,1,f +9642,3710,15,11,f +9642,3710,72,6,f +9642,3730,0,1,f +9642,3738,72,1,f +9642,3741,2,2,f +9642,3741,2,1,t +9642,3742,4,2,t +9642,3742,4,6,f +9642,3747b,15,1,f +9642,3749,19,1,f +9642,3794a,4,3,f +9642,3794a,15,4,f +9642,3795,15,2,f +9642,3795,72,8,f +9642,3829c01,1,1,f +9642,3832,72,1,f +9642,3867,72,2,f +9642,3937,72,2,f +9642,3938,0,2,f +9642,3940b,72,1,f +9642,3941,15,2,f +9642,3962b,0,1,f +9642,4006,0,1,f +9642,4032a,15,2,f +9642,4032a,4,6,f +9642,4032a,71,2,f +9642,4079,4,7,f +9642,4079,1,10,f +9642,4083,14,2,f +9642,4085c,0,2,f +9642,4085c,4,1,f +9642,4150,15,1,f +9642,41531,15,2,f +9642,42022,15,10,f +9642,42604,41,1,f +9642,42608,71,2,f +9642,4285b,72,2,f +9642,4286,15,2,f +9642,4345b,71,1,f +9642,4346,47,1,f +9642,44126,15,4,f +9642,4445,15,4,f +9642,4449,71,2,f +9642,4449,70,2,f +9642,44728,0,2,f +9642,4476b,15,4,f +9642,4477,4,6,f +9642,4477,72,3,f +9642,4519,71,1,f +9642,4589,182,1,f +9642,4589,42,2,f +9642,4589,36,1,f +9642,4589,46,1,f +9642,4589,34,2,f +9642,4599a,4,1,f +9642,4623,71,3,f +9642,4624,71,18,f +9642,4742,72,2,f +9642,48092,15,3,f +9642,48183,14,1,f +9642,48336,15,2,f +9642,4854,72,1,f +9642,4854,15,4,f +9642,4862,40,24,f +9642,4863,15,11,f +9642,4864b,14,2,f +9642,4864b,41,2,f +9642,4865a,15,3,f +9642,4870,71,7,f +9642,4872,41,5,f +9642,48729a,72,2,f +9642,50304,15,2,f +9642,50305,15,2,f +9642,50745,14,2,f +9642,52038,14,1,f +9642,54090,71,1,f +9642,54091,71,3,f +9642,54092c01pr0002,15,1,f +9642,54093,71,1,f +9642,54094pr01,4,1,f +9642,54095,15,2,f +9642,54096,15,1,f +9642,54097,15,1,f +9642,54200,46,2,f +9642,54701c01,15,1,f +9642,57893,72,8,f +9642,6014b,71,4,f +9642,6015,0,4,f +9642,6019,71,8,f +9642,6112,15,4,f +9642,6134,0,2,f +9642,6140,4,2,f +9642,6140,0,1,f +9642,6141,1,2,f +9642,6141,4,2,f +9642,6141,36,1,t +9642,6141,4,1,t +9642,6141,36,4,f +9642,6141,34,1,t +9642,6141,34,4,f +9642,6141,47,1,f +9642,6141,1,1,t +9642,6141,47,1,t +9642,6157,72,2,f +9642,6160c01,15,4,f +9642,6177,0,1,f +9642,6222,15,2,f +9642,6232,15,2,f +9642,64567,71,3,f +9642,6538b,14,2,f +9642,6587,72,2,f +9642,6589,71,1,f +9642,6636,15,11,f +9642,6636,4,3,f +9642,69c03,15,1,f +9642,75535,71,3,f +9642,772,15,3,f +9644,3001a,0,1,f +9644,3001a,15,3,f +9644,3001a,4,3,f +9644,3002a,15,2,f +9644,3002a,4,1,f +9644,3003,0,1,f +9644,3003,14,4,f +9644,3003,15,5,f +9644,3003,4,3,f +9644,3004,1,5,f +9644,3004,15,3,f +9644,3004,0,3,f +9644,3008,1,4,f +9644,3010,15,1,f +9644,3010,1,1,f +9644,3020,15,1,f +9644,3021,15,1,f +9644,3021,0,2,f +9644,3023,15,1,f +9644,3023,1,4,f +9644,3035,15,1,f +9644,3039,4,3,f +9644,3039,1,2,f +9644,3137c01,0,2,f +9644,3139,0,4,f +9644,35,4,4,f +9644,36,0,4,f +9644,3612,4,2,f +9644,3613,4,4,f +9644,3613,15,2,f +9644,3614a,14,6,f +9644,685p01,14,2,f +9644,685px3,14,1,f +9644,7049b,0,2,f +9644,792c03,15,1,f +9644,792c03,4,2,f +9644,x196,0,2,f +9644,x407,4,1,f +9646,3443c12,4,1,f +9646,699,7,1,f +9647,96874,25,1,f +9648,3703,1,4,f +9648,3895,1,4,f +9649,11476,71,2,f +9649,11477,2,2,f +9649,14417,72,2,f +9649,14419,72,2,f +9649,14704,71,2,f +9649,15209,15,2,f +9649,3004,27,2,f +9649,3020,2,2,f +9649,3021,2,1,f +9649,3022,27,6,f +9649,3023,2,2,f +9649,3068bpr0251,15,1,f +9649,3665,2,2,f +9649,3710,2,2,f +9649,4032a,2,1,f +9649,4081b,72,2,f +9649,47457,27,1,f +9649,4871,27,1,f +9649,54200,27,2,f +9649,54200,27,1,t +9649,54200,42,6,f +9649,54200,42,1,t +9649,6019,0,2,f +9649,60478,0,4,f +9649,6141,42,1,t +9649,6141,42,8,f +9649,64225,27,2,f +9649,92280,0,2,f +9649,98138pr0008,15,1,t +9649,98138pr0008,15,2,f +9649,99207,27,1,f +9649,99780,2,2,f +9651,11610,0,4,f +9651,2412b,0,2,f +9651,2420,71,4,f +9651,2431,71,2,f +9651,2450,15,4,f +9651,2780,0,1,f +9651,3004,15,4,f +9651,3010,15,2,f +9651,30162,72,2,f +9651,3020,72,3,f +9651,3022,71,7,f +9651,3023,4,1,f +9651,3023,15,4,f +9651,3024,71,4,f +9651,3034,71,1,f +9651,30503,71,4,f +9651,30602,40,1,f +9651,3062b,0,2,f +9651,3065,40,1,f +9651,3069b,14,2,f +9651,3069b,0,2,f +9651,3070b,15,2,f +9651,3070b,71,4,f +9651,3070b,14,2,f +9651,3176,72,2,f +9651,3622,15,2,f +9651,3660,71,2,f +9651,3700,72,3,f +9651,3710,15,2,f +9651,3710,71,2,f +9651,3749,19,2,f +9651,3794b,4,1,f +9651,3794b,72,2,f +9651,3795,71,1,f +9651,3937,71,4,f +9651,4032a,484,2,f +9651,41769,15,1,f +9651,41770,15,1,f +9651,4274,71,1,f +9651,4286,15,2,f +9651,44728,15,1,f +9651,4595,0,2,f +9651,4871,71,1,f +9651,54200,15,4,f +9651,54200,0,4,f +9651,6134,0,4,f +9651,61409,72,4,f +9651,6141,71,1,f +9651,63864,15,1,f +9651,6541,71,1,f +9651,87087,15,6,f +9651,98100,71,2,f +9651,98100pr1000,71,1,f +9652,10p04,2,1,f +9652,27bc01,4,2,f +9652,29bc01,4,1,f +9652,3001a,0,1,f +9652,3001a,15,4,f +9652,3002a,15,1,f +9652,3004,15,13,f +9652,3004,0,3,f +9652,3005,0,1,f +9652,3005,15,8,f +9652,3008,0,4,f +9652,3008,15,1,f +9652,3009,15,3,f +9652,3009,0,4,f +9652,3010,0,2,f +9652,3010,15,5,f +9652,3010p20b,15,1,f +9652,3020,15,13,f +9652,3021,0,1,f +9652,3023,15,1,f +9652,3030,0,2,f +9652,3036,0,3,f +9652,3037,47,1,f +9652,3037,0,1,f +9652,3063b,4,4,f +9652,3068a,15,20,f +9652,3068a,0,6,f +9652,3081bc01,4,1,f +9652,3137c01,15,2,f +9652,3139,0,4,f +9652,3144,15,1,f +9652,3185,4,5,f +9652,3186,4,2,f +9652,3187,4,2,f +9652,31bc01,4,2,f +9652,32bc01,4,2,f +9652,604c01,4,1,f +9652,ftbushh,2,1,f +9652,ftoakh,2,1,f +9652,ftpineh,2,1,f +9653,2357,0,2,f +9653,2420,15,10,f +9653,2420,0,12,f +9653,2431,71,1,f +9653,2445,0,7,f +9653,2453a,15,4,f +9653,2454a,15,12,f +9653,2921,0,4,f +9653,3001,15,2,f +9653,3002,15,2,f +9653,3003,0,1,f +9653,3004,0,11,f +9653,3004,15,9,f +9653,3005,288,10,f +9653,3005,15,24,f +9653,3007,15,1,f +9653,3008,15,1,f +9653,3010,15,4,f +9653,3020,15,1,f +9653,3022,0,2,f +9653,3023,71,1,f +9653,3023,15,12,f +9653,3023,0,9,f +9653,3024,15,36,f +9653,3024,71,2,f +9653,3024,0,72,f +9653,3031,71,2,f +9653,3033,288,6,f +9653,30357,15,2,f +9653,3036,15,4,f +9653,30374,15,15,f +9653,30377,15,4,f +9653,30377,15,1,t +9653,30565,15,4,f +9653,3069b,15,2,f +9653,3069b,0,5,f +9653,3069b,71,1,f +9653,3070b,0,5,f +9653,3070b,0,1,t +9653,3070b,71,6,f +9653,3070b,15,6,f +9653,3070b,71,1,t +9653,3070b,15,1,t +9653,3297,0,6,f +9653,3460,15,12,f +9653,3626b,47,1,f +9653,3633,15,15,f +9653,3659,15,2,f +9653,3666,288,8,f +9653,3666,15,2,f +9653,3675,0,4,f +9653,3794b,15,64,f +9653,3794b,0,1,f +9653,3795,0,2,f +9653,4085c,15,2,f +9653,4162,0,9,f +9653,4162pr0004,0,1,f +9653,4282,0,4,f +9653,4286,15,2,f +9653,4286,0,6,f +9653,4490,15,1,f +9653,4589,0,1,f +9653,48092,15,2,f +9653,4865a,0,2,f +9653,54200,15,2,f +9653,54200,0,8,f +9653,54200,0,1,t +9653,54200,15,1,t +9653,6019,15,1,f +9653,60474,0,1,f +9653,60479,0,2,f +9653,6141,70,14,f +9653,6141,70,1,t +9653,6231,15,4,f +9653,6541,0,51,f +9653,6636,15,2,f +9653,85080,15,2,f +9653,87079,0,5,f +9653,87079,15,2,f +9653,87079,71,1,f +9653,87087,71,4,f +9655,11127,41,1,f +9655,11477,308,2,f +9655,13361pr0003,0,1,f +9655,2540,72,2,f +9655,298c02,0,2,f +9655,3020,70,1,f +9655,3023,321,3,f +9655,3626cpr1206,0,1,f +9655,4079,70,1,f +9655,57908,72,1,f +9655,59900,33,2,f +9655,60474,0,1,f +9655,6141,41,6,f +9655,85984,0,2,f +9655,86208,72,2,f +9655,92013,308,2,f +9655,970c00pr0446,0,1,f +9655,973pr1400c01,0,1,f +9655,98313,70,2,f +9658,3001a,47,1,f +9658,3001a,4,1,f +9658,3010pb035e,4,1,f +9658,3020,4,1,f +9658,3021,4,2,f +9658,3023,4,2,f +9658,3024,1,2,f +9658,3030,4,1,f +9658,3135c04,4,1,f +9658,3137c01,0,1,f +9658,3137c02,0,2,f +9658,3139,0,2,f +9658,7b,0,4,f +9660,10113,0,1,f +9660,10247,72,2,f +9660,11211,71,2,f +9660,15207,4,1,f +9660,15429pr0002,4,1,f +9660,15445,72,1,f +9660,2412b,72,2,f +9660,2412b,36,2,f +9660,2420,0,2,f +9660,2431,4,1,f +9660,2654,0,1,f +9660,2817,0,1,f +9660,30192,72,1,f +9660,3020,0,4,f +9660,3022,0,2,f +9660,3023,71,2,f +9660,3024,191,1,t +9660,3024,320,2,f +9660,3024,320,1,t +9660,3024,191,2,f +9660,3031,0,2,f +9660,3031,71,1,f +9660,30553,71,2,f +9660,30554b,71,2,f +9660,3062b,0,2,f +9660,3069b,0,2,f +9660,32000,0,4,f +9660,32062,4,2,f +9660,32072,0,2,f +9660,3622,72,2,f +9660,3622pr0008,4,1,f +9660,3623,191,1,f +9660,3623pr0008,4,1,f +9660,3626cpr1336,71,1,f +9660,3626cpr1648,78,1,f +9660,3673,71,1,t +9660,3673,71,2,f +9660,3937,72,2,f +9660,3938,0,2,f +9660,41532,0,2,f +9660,44728,72,2,f +9660,4490pr0002,4,1,f +9660,53451,179,8,f +9660,53451,179,1,t +9660,54200,4,2,f +9660,54200,4,1,t +9660,56630,0,1,f +9660,58176,36,1,f +9660,59230,71,1,t +9660,59230,71,2,f +9660,60115,71,1,f +9660,60897,0,1,f +9660,61184,71,2,f +9660,61409,72,1,f +9660,6141,4,1,t +9660,6141,36,1,t +9660,6141,4,1,f +9660,6141,36,3,f +9660,6266,71,2,f +9660,6266,71,1,t +9660,85861,320,1,f +9660,85861,320,1,t +9660,85861,0,1,t +9660,85861,0,2,f +9660,87079,72,1,f +9660,87083,72,2,f +9660,87087,71,2,f +9660,89522,4,1,t +9660,89522,4,1,f +9660,92593,0,1,f +9660,95199,0,1,f +9660,970c00,0,1,f +9660,973pr1961c01,0,1,f +9660,98138,40,1,t +9660,98138,40,1,f +9660,98721,0,1,t +9660,98721,0,1,f +9660,99207,0,6,f +9660,99781,71,2,f +9662,14226c21,0,2,f +9662,2335px13,15,2,f +9662,2356,4,1,f +9662,2431,15,1,f +9662,2454a,15,4,f +9662,2486,4,1,f +9662,2493b,0,1,f +9662,2494px8,41,1,f +9662,2513pb04,1,1,f +9662,298c02,15,1,f +9662,3001,0,1,f +9662,3003,4,2,f +9662,3003,0,4,f +9662,3004,0,1,f +9662,3005,15,2,f +9662,3006,4,1,f +9662,3008,15,1,f +9662,3009,0,2,f +9662,30104,8,1,f +9662,3010pb021,15,4,f +9662,30145,15,1,f +9662,30277,0,1,f +9662,30278c01,0,1,f +9662,3035,7,1,f +9662,3037pr0005,15,1,f +9662,3039p70,15,3,f +9662,3062b,14,1,f +9662,3135c02,4,1,f +9662,3626bp04,14,1,f +9662,3626bp05,14,1,f +9662,3626bpr0001,14,1,f +9662,3741,2,1,f +9662,3742,14,1,t +9662,3742,14,3,f +9662,3754,15,2,f +9662,3823,41,1,f +9662,3829c01,7,2,f +9662,3852b,6,1,f +9662,3865,2,1,f +9662,3867,2,1,f +9662,3901,0,1,f +9662,3957a,0,2,f +9662,4070,2,4,f +9662,4083,0,1,f +9662,4211,1,1,f +9662,4286,15,4,f +9662,4345b,15,1,f +9662,4346pb11,15,1,f +9662,4485,4,4,f +9662,4523,7,1,f +9662,4589,7,2,f +9662,4589,46,1,f +9662,4599a,14,1,f +9662,4599a,7,2,f +9662,4600,7,1,f +9662,4629c01,1,1,f +9662,47899c01,4,1,f +9662,4865a,4,1,f +9662,55298,8,1,f +9662,6014a,15,10,f +9662,6015,0,10,f +9662,6112,15,2,f +9662,6140,1,2,f +9662,6141,46,1,f +9662,6160c01,0,1,f +9662,6187,15,1,f +9662,6212,4,4,f +9662,970c00,2,1,f +9662,970c00,4,1,f +9662,970c00,0,1,f +9662,973c11,0,1,f +9662,973px130c01,15,1,f +9662,973px19c01,2,1,f +9664,3004pr20,15,3,f +9664,3022,0,6,f +9664,3023,0,1,f +9664,3023,4,2,f +9664,3024,2,2,f +9664,3024,46,1,f +9664,3024,70,2,f +9664,3024,15,3,f +9664,3024,36,1,f +9664,3024,34,1,f +9664,3024,4,4,f +9664,30374,71,2,f +9664,3040b,70,1,f +9664,3040b,4,3,f +9664,3623,2,1,f +9664,3660,70,1,f +9664,3660,4,3,f +9664,3665,4,1,f +9664,3666,70,2,f +9664,3794b,15,1,f +9664,4081b,14,2,f +9664,4286,4,2,f +9664,4287,4,1,f +9664,44375a,15,3,f +9664,54200,33,1,f +9664,54200,36,1,f +9664,54200,70,2,f +9664,54200,4,6,f +9664,6141,14,4,f +9664,6141,15,3,f +9670,3001,14,1,f +9670,3002,14,14,f +9670,3003,14,4,f +9670,3004,4,6,f +9670,3027,14,1,f +9670,3032,4,1,f +9670,3033,14,1,f +9670,3334,2,1,f +9670,3741,2,2,f +9670,3742,15,1,t +9670,3742,14,1,t +9670,3742,14,3,f +9670,3742,15,3,f +9670,3795,4,2,f +9670,3979c01,14,3,f +9670,4237,6,1,f +9670,4332,366,1,f +9670,4342,19,5,f +9670,556,7,1,f +9670,787c01,14,3,f +9670,787c02,14,2,f +9670,787c03,14,1,f +9670,790,1,1,f +9670,fab11e,9999,1,f +9670,fab5e,9999,1,f +9670,fabad3c01,4,1,f +9670,fabbc1b,14,1,f +9670,x837,1,1,f +9670,x838,1,1,f +9671,2419,4,2,f +9671,2420,7,4,f +9671,2420,4,2,f +9671,2431,7,1,f +9671,2695,15,4,f +9671,2696,0,4,f +9671,2823,4,2,f +9671,2825,7,1,f +9671,3003,7,2,f +9671,3004,4,2,f +9671,3010,7,1,f +9671,3010,4,1,f +9671,3021,4,2,f +9671,3021,7,1,f +9671,3023,4,5,f +9671,3023,7,5,f +9671,3024,7,4,f +9671,3024,4,4,f +9671,3031,4,1,f +9671,3032,15,1,f +9671,3034,7,2,f +9671,3037,4,1,f +9671,3460,4,1,f +9671,3623,4,4,f +9671,3623,7,2,f +9671,3647,7,2,f +9671,3648a,7,1,f +9671,3650a,7,1,f +9671,3665,7,2,f +9671,3665,4,2,f +9671,3666,4,2,f +9671,3666,7,1,f +9671,3673,7,7,f +9671,3700,7,3,f +9671,3700,4,3,f +9671,3701,15,2,f +9671,3701,4,2,f +9671,3701,7,1,f +9671,3702,4,3,f +9671,3702,15,2,f +9671,3702,7,3,f +9671,3703,7,2,f +9671,3705,0,1,f +9671,3706,0,2,f +9671,3707,0,2,f +9671,3708,0,1,f +9671,3709,4,1,f +9671,3709,15,2,f +9671,3710,15,2,f +9671,3710,7,4,f +9671,3711a,0,42,f +9671,3711a,0,1,t +9671,3713,7,1,t +9671,3713,7,11,f +9671,3736,7,1,f +9671,3737,0,4,f +9671,3738,4,1,f +9671,3743,7,1,f +9671,3749,7,7,f +9671,3873,0,1,f +9671,3894,7,1,f +9671,3894,4,6,f +9671,3895,7,2,f +9671,3941,46,1,f +9671,4019,7,4,f +9671,4143,7,2,f +9671,4150,15,1,f +9671,4162,7,4,f +9671,4185,7,1,f +9671,4261,7,2,f +9671,4262,0,1,f +9671,4265a,7,1,t +9671,4265a,7,13,f +9671,4274,7,1,t +9671,4274,7,1,f +9671,4275b,15,4,f +9671,4276b,15,4,f +9671,4442,7,3,f +9671,4459,0,8,f +9671,4716,0,1,f +9675,3032,15,15,f +9677,14520,72,2,f +9677,15207,14,2,f +9677,2412b,0,1,f +9677,2540,4,1,f +9677,3004,4,1,f +9677,3005,14,2,f +9677,3010,14,1,f +9677,30150,70,1,f +9677,3020,14,1,f +9677,3021,71,2,f +9677,30228,72,1,f +9677,3023,36,2,f +9677,30237a,14,2,f +9677,3024,182,2,f +9677,30259,71,1,f +9677,30293,72,1,f +9677,30294,72,1,f +9677,30385,297,2,f +9677,3062b,4,1,f +9677,3068b,71,1,f +9677,3069b,14,2,f +9677,3070b,36,2,f +9677,3070b,36,1,t +9677,3070bpr0007,71,1,t +9677,3070bpr0007,71,1,f +9677,3245c,71,2,f +9677,3626cpr0955,14,1,f +9677,3666,14,2,f +9677,3710,0,3,f +9677,3710,14,4,f +9677,3794b,71,2,f +9677,3821,14,1,f +9677,3822,14,1,f +9677,3829c01,1,1,f +9677,3841,72,1,f +9677,4070,14,2,f +9677,4079b,4,1,f +9677,4083,0,1,f +9677,4200stk01,9999,1,t +9677,45677,14,1,f +9677,4697b,71,1,t +9677,4697b,71,1,f +9677,4740,72,2,f +9677,48729b,0,1,f +9677,48729b,0,1,t +9677,52036,72,1,f +9677,52501,14,2,f +9677,54200,72,1,t +9677,54200,0,1,t +9677,54200,72,4,f +9677,54200,0,2,f +9677,54200,47,2,f +9677,54200,47,1,t +9677,57783,40,1,f +9677,6014b,15,4,f +9677,60700,0,4,f +9677,61252,0,1,f +9677,6141,71,6,f +9677,6141,71,1,t +9677,6141,182,1,t +9677,6141,182,2,f +9677,6157,0,2,f +9677,64728,4,1,f +9677,88930,14,1,f +9677,970c00,379,1,f +9677,973pr0250c01,320,1,f +9677,98138,47,1,t +9677,98138,47,1,f +9677,98282,72,4,f +9677,98289,179,1,f +9679,1,15,2,f +9679,2,15,1,f +9679,261.1stk01,9999,1,t +9679,3,1,2,f +9679,3001a,4,2,f +9679,3001a,15,5,f +9679,3002a,15,1,f +9679,3003,14,1,f +9679,3003,15,1,f +9679,3003,1,1,f +9679,3005,47,2,f +9679,3005,14,1,f +9679,3005,15,1,f +9679,3008,15,11,f +9679,3009,15,12,f +9679,3010,15,11,f +9679,3010,4,2,f +9679,3021,0,1,f +9679,3022,0,1,f +9679,3032,4,1,f +9679,3032,15,1,f +9679,3035,15,1,f +9679,3039,4,2,f +9679,3062a,14,2,f +9679,3062a,47,3,f +9679,3062a,15,1,f +9679,3068b,15,19,f +9679,3068b,1,4,f +9679,3069b,15,40,f +9679,3069b,1,2,f +9679,3070b,14,4,f +9679,3456,15,1,f +9679,3460,15,1,f +9679,3612,1,2,f +9679,3613,1,2,f +9679,3614b,14,2,f +9679,3622,15,4,f +9679,3625,4,1,f +9679,3626apr0001,14,1,f +9679,3633,4,2,f +9679,3660,15,1,f +9679,3665,1,1,f +9679,3666,15,1,f +9679,367,1,1,f +9679,3741,2,2,f +9679,3742,4,1,t +9679,3742,4,3,f +9679,3742,14,3,f +9679,3742,14,1,t +9679,3794a,15,1,f +9679,3852a,6,1,f +9679,3899,15,1,f +9679,3900,7,1,f +9679,685p01,14,1,f +9679,69c02,15,2,f +9679,792c03,1,1,f +9679,837,15,1,f +9679,838,1,1,f +9679,970c00,15,1,f +9679,973c01,15,1,f +9679,x197bun,7,1,f +9680,2412b,14,1,f +9680,2436,14,4,f +9680,2449,320,2,f +9680,2466,40,1,f +9680,2540,14,2,f +9680,2566,0,1,f +9680,2569,72,1,f +9680,2714a,0,6,f +9680,2723,0,1,f +9680,2780,0,1,t +9680,2780,0,4,f +9680,3001,71,1,f +9680,3002,15,1,f +9680,3004,71,2,f +9680,3004,15,1,f +9680,3020,72,2,f +9680,3022,71,2,f +9680,3023,0,2,f +9680,30236,15,1,f +9680,3037,320,4,f +9680,30383,71,2,f +9680,30602,15,2,f +9680,3062b,14,6,f +9680,3068b,320,2,f +9680,3068b,15,5,f +9680,32002,72,2,f +9680,32002,72,1,t +9680,32013,72,4,f +9680,32062,4,2,f +9680,32174,72,2,f +9680,32270,71,1,f +9680,32316,71,2,f +9680,32523,71,2,f +9680,32524,15,1,f +9680,3626bpr0446,14,1,f +9680,3660,15,2,f +9680,3673,71,1,t +9680,3673,71,6,f +9680,3700,72,2,f +9680,3701,15,1,f +9680,3706,0,1,f +9680,3710,15,2,f +9680,3749,19,1,f +9680,3795,72,4,f +9680,40902,71,2,f +9680,4185,14,3,f +9680,42022,15,4,f +9680,4274,71,1,t +9680,4274,71,2,f +9680,4285b,15,1,f +9680,43093,1,5,f +9680,43857,14,1,f +9680,44126,320,2,f +9680,44352,320,1,f +9680,44353,320,1,f +9680,44813pat0001,79,2,f +9680,4519,71,1,f +9680,4589,46,1,f +9680,4589,14,4,f +9680,4598,19,1,f +9680,4740,14,1,f +9680,47432,72,2,f +9680,47452,72,2,f +9680,47455,320,6,f +9680,48170,72,2,f +9680,48172,0,1,f +9680,48336,71,1,f +9680,53982,10,1,f +9680,57908,72,2,f +9680,58392,9999,1,t +9680,58816,14,1,f +9680,6019,15,2,f +9680,6141,36,1,t +9680,6141,36,1,f +9680,6153b,15,2,f +9680,6215,320,2,f +9680,62712,72,2,f +9680,6536,0,3,f +9680,6538b,0,2,f +9680,6558,0,2,f +9680,6636,15,1,f +9680,970c00,320,1,f +9680,973pr980c01,320,1,f +9681,12014,1,2,f +9681,12017,10,1,f +9681,12602,14,2,f +9681,13220,14,1,f +9681,2291,320,1,f +9681,2291,73,2,f +9681,2300,4,2,f +9681,3011,10,2,f +9681,31110,4,3,f +9681,31465,4,1,f +9681,3437,10,3,f +9681,3437,191,1,f +9681,3437,0,2,f +9681,3437,71,1,f +9681,3437,4,7,f +9681,3437,320,3,f +9681,3437,14,1,f +9681,3437pb014,484,1,f +9681,4066,41,2,f +9681,40666,72,1,f +9681,40666,1,2,f +9681,40666,10,2,f +9681,4066pb177,484,1,f +9681,41169c01,71,1,f +9681,4196,19,1,f +9681,41969,0,2,f +9681,42025pb06,4,1,f +9681,44524,10,2,f +9681,4672,72,2,f +9681,47202apr0007,25,1,f +9681,47424,72,1,f +9681,47509,179,1,f +9681,48125c03,73,1,f +9681,4894,179,1,f +9681,51546,10,1,f +9681,52381,4,2,f +9681,55436,191,1,f +9681,58080,1,1,f +9681,58498,0,1,f +9681,59559,4,2,f +9681,60777px1,15,1,f +9681,61320,14,2,f +9681,63017,14,1,f +9681,63024,4,1,f +9681,63026,14,2,f +9681,63710pr0002c02,10,1,f +9681,6376,72,1,f +9681,6377,72,9,f +9681,6378,72,20,f +9681,6391,72,1,f +9681,6405,0,2,f +9681,6406,4,2,f +9681,6474pb20,4,1,f +9681,73352,1,2,f +9681,91794,0,2,f +9681,98458,179,3,f +9681,99844,14,1,f +9682,22253,80,6,f +9682,2419,0,2,f +9682,2717,7,2,f +9682,2780,0,18,f +9682,2780,0,1,t +9682,2825,7,2,f +9682,2825,0,2,f +9682,2856c01,0,1,f +9682,2905,8,2,f +9682,2905,0,2,f +9682,2909c03,0,1,f +9682,3005,0,2,f +9682,3023,2,1,f +9682,3023,8,1,f +9682,3023,0,5,f +9682,3069b,7,4,f +9682,32000,2,2,f +9682,32000,7,2,f +9682,32001,0,1,f +9682,32002,8,1,t +9682,32002,8,4,f +9682,32009,0,6,f +9682,32013,0,2,f +9682,32013,2,2,f +9682,32014,2,2,f +9682,32015,2,2,f +9682,32016,2,2,f +9682,32018,0,4,f +9682,32018,8,2,f +9682,32034,0,6,f +9682,32039,14,1,f +9682,32039,7,3,f +9682,32039,0,12,f +9682,32039,2,8,f +9682,32054,0,10,f +9682,32054,14,1,f +9682,32056,0,4,f +9682,32056,7,4,f +9682,32062,0,29,f +9682,32063,7,2,f +9682,32068,0,4,f +9682,32069,0,4,f +9682,32073,0,7,f +9682,32123a,7,34,f +9682,32123a,7,1,t +9682,32138,0,2,f +9682,32140,2,6,f +9682,32140,0,8,f +9682,32140,7,1,f +9682,32165,8,2,f +9682,32166,2,2,f +9682,32175,2,2,f +9682,32175,7,2,f +9682,32177,8,2,f +9682,32180,0,6,f +9682,32184,0,2,f +9682,32184,8,2,f +9682,32184,2,2,f +9682,32190,2,2,f +9682,32191,2,2,f +9682,32192,2,8,f +9682,32198,7,3,f +9682,32200,2,1,f +9682,32201,0,2,f +9682,32209,0,3,f +9682,3647,7,1,t +9682,3647,7,4,f +9682,3648b,7,1,f +9682,3650c,7,1,f +9682,3665,0,2,f +9682,3666,0,12,f +9682,3700,0,3,f +9682,3701,0,2,f +9682,3701,8,1,f +9682,3703,2,2,f +9682,3703,8,1,f +9682,3705,0,15,f +9682,3706,0,10,f +9682,3707,0,7,f +9682,3708,0,4,f +9682,3709,0,2,f +9682,3713,7,1,t +9682,3713,7,12,f +9682,3737,0,3,f +9682,3749,7,37,f +9682,3794a,7,2,f +9682,3794a,8,1,f +9682,3894,0,1,f +9682,3894,8,2,f +9682,3895,2,2,f +9682,4019,7,7,f +9682,4274,7,1,t +9682,4274,7,2,f +9682,4286,0,2,f +9682,4287,0,2,f +9682,4288,0,4,f +9682,4477,0,2,f +9682,4519,0,27,f +9682,4716,0,1,f +9682,6141,7,1,t +9682,6141,47,4,f +9682,6141,46,2,f +9682,6141,46,1,t +9682,6141,7,12,f +9682,6141,47,1,t +9682,6536,0,17,f +9682,6536,2,4,f +9682,6538b,2,4,f +9682,6538b,7,4,f +9682,6538b,0,6,f +9682,6541,8,1,f +9682,6553,7,4,f +9682,6553,0,6,f +9682,6558,0,9,f +9682,6575,7,2,f +9682,6587,8,8,f +9682,6589,7,7,f +9682,6592,7,2,f +9682,6628,0,2,f +9682,6629,0,7,f +9682,6629,2,2,f +9682,6629,8,4,f +9682,6632,7,2,f +9682,6632,0,10,f +9682,75535,0,2,f +9682,75c30,0,1,f +9682,76320,0,1,f +9682,78c13,0,2,f +9682,78c18,0,2,f +9682,8446stk01,9999,1,t +9685,43093,1,1,f +9685,4740,47,1,f +9685,4740,47,1,t +9685,47430,2,2,f +9685,47431,2,2,f +9685,47432,2,2,f +9685,47452,72,2,f +9685,47454,72,2,f +9685,47455,320,10,f +9685,47456,2,2,f +9685,47457,2,4,f +9685,47457pb01,2,2,f +9685,47458,2,6,f +9685,47463,14,1,f +9685,47470,2,1,f +9685,47474,72,1,f +9685,47477c01pb03,2,1,f +9685,47501,2,4,f +9685,48079,89,1,f +9685,bb153pb03,72,1,f +9685,kkc28,89,1,f +9685,kkc30,89,1,f +9685,kkc31,89,1,f +9685,kkc33,89,1,f +9685,kkc34,89,1,f +9685,kkc36,89,1,f +9686,2489,6,1,f +9686,2586pw1,19,1,f +9686,2586px3,19,1,f +9686,30113,6,1,f +9686,30114,0,1,f +9686,30115,0,1,f +9686,30126p01,15,2,f +9686,30127p01,15,2,f +9686,30132,8,2,f +9686,30133,0,1,f +9686,30133,15,1,f +9686,30135,1,1,f +9686,30138pb01,15,1,f +9686,30141,8,1,f +9686,3069bp03,7,1,f +9686,3069bpr0100,2,1,f +9686,3069bpw0,15,1,f +9686,3069bpw1,15,1,f +9686,3629,1,1,f +9686,3629,15,1,f +9686,3629,7,1,f +9686,3629,6,1,f +9686,3629pw1,1,1,f +9686,3629pw2,7,1,f +9686,3835,0,1,f +9686,3878,0,1,f +9686,4497,0,1,f +9686,4498,0,1,f +9686,4499,0,1,f +9686,57503,334,1,f +9686,57504,334,1,f +9686,57505,334,1,f +9686,57506,334,1,f +9686,71342,334,1,f +9687,2335px1,0,1,f +9687,2470,6,2,f +9687,2540,7,1,f +9687,2555,4,2,f +9687,30136,19,2,f +9687,30173a,0,2,f +9687,30177,15,1,f +9687,3020,1,2,f +9687,3626bpr0137,14,1,f +9687,3839b,0,1,f +9687,3848,6,2,f +9687,4085c,7,2,f +9687,4488,0,2,f +9687,970x026,15,1,f +9687,973pb0240c02,15,1,f +9688,607p01,7,2,f +9689,2412b,0,1,f +9689,2446,0,1,f +9689,2446,85,1,f +9689,2490pb04,320,1,f +9689,2587pb01,85,1,f +9689,2587pb05,0,1,f +9689,30000,71,1,f +9689,3004,0,1,f +9689,3032,0,1,f +9689,3034,15,1,f +9689,3040b,71,4,f +9689,3044b,71,2,f +9689,3062b,72,3,f +9689,3069b,0,1,f +9689,3626bpb0218,14,1,f +9689,3626bpr0350,14,1,f +9689,3700,15,2,f +9689,3849,0,1,f +9689,4493c01pb02,0,1,f +9689,4623,0,2,f +9689,48485,85,1,f +9689,48489,0,1,f +9689,48492,320,1,f +9689,48494pb01,151,1,f +9689,48495,178,1,f +9689,48495,4,1,f +9689,4865a,0,2,f +9689,6231,0,2,f +9689,970x021,0,1,f +9689,970x194,85,1,f +9689,973c14,0,1,f +9689,973c36,85,1,f +9689,kkc08,9999,1,t +9689,kkc17,9999,1,t +9689,kkc44,9999,1,t +9690,2357,15,2,f +9690,2420,15,2,f +9690,2431,15,2,f +9690,2445,15,2,f +9690,2456,15,1,f +9690,3002,15,1,f +9690,3004,15,4,f +9690,3004,19,54,f +9690,3005,19,8,f +9690,3007,19,1,f +9690,3008,15,2,f +9690,3009,15,3,f +9690,3010,15,1,f +9690,3020,19,1,f +9690,3021,19,2,f +9690,3021,15,4,f +9690,3022,15,1,f +9690,3023,15,2,f +9690,3023,19,1,f +9690,3030,0,4,f +9690,3031,15,1,f +9690,3032,15,1,f +9690,3034,15,2,f +9690,3035,15,1,f +9690,30357,15,5,f +9690,3063b,15,5,f +9690,3068b,15,10,f +9690,3069b,19,10,f +9690,3069b,15,3,f +9690,3070b,15,3,f +9690,3070b,15,1,t +9690,3460,19,3,f +9690,3460,15,1,f +9690,3622,15,1,f +9690,3666,15,1,f +9690,3706,0,1,f +9690,3710,19,1,f +9690,3710,15,3,f +9690,3794b,15,9,f +9690,3795,15,1,f +9690,3832,0,1,f +9690,3941,15,2,f +9690,3960,15,1,f +9690,4032a,19,3,f +9690,4032a,15,4,f +9690,4150,15,1,f +9690,4162,0,2,f +9690,4162,15,2,f +9690,43898,15,1,f +9690,44375a,15,6,f +9690,4477,19,9,f +9690,48092,15,1,f +9690,60474,15,5,f +9690,6141,19,1,f +9690,6141,19,1,t +9690,6179,15,1,f +9690,6636,0,3,f +9690,6636,15,2,f +9690,6636p03,0,1,f +9690,6636p04,0,1,f +9690,6636p05,0,1,f +9692,3035,15,2,f +9692,3404bc01,15,3,f +9693,11215,0,1,f +9693,11458,72,4,f +9693,11477,72,2,f +9693,2419,71,1,f +9693,2540,0,1,f +9693,2817,71,2,f +9693,3022,15,1,f +9693,3022,0,2,f +9693,3023,36,2,f +9693,3024,272,1,t +9693,3024,272,2,f +9693,30357,72,2,f +9693,30375ps2,1,1,f +9693,30376,19,1,f +9693,30377,19,1,t +9693,30377,19,1,f +9693,30378,19,1,f +9693,3069b,272,6,f +9693,32001,0,2,f +9693,32138,0,2,f +9693,3666,0,4,f +9693,4032a,72,2,f +9693,41747,71,2,f +9693,41748,72,2,f +9693,43710,72,2,f +9693,43711,71,2,f +9693,43722,72,5,f +9693,43723,71,5,f +9693,43857,71,2,f +9693,47759,72,1,f +9693,51739,72,1,f +9693,59230,19,1,f +9693,59230,19,1,t +9693,59900,36,2,f +9693,60897,71,2,f +9693,61184,71,2,f +9693,6141,41,2,f +9693,6141,41,1,t +9693,64225pr0001,71,1,f +9693,6587,28,2,f +9693,92738,0,1,f +9693,99781,71,2,f +9694,3001,4,1,f +9694,3002,1,1,f +9694,3002,4,2,f +9694,3003,4,3,f +9694,3003,1,3,f +9694,3003pe2,4,1,f +9696,2420,0,2,f +9696,2780,0,1,f +9696,2780,0,1,t +9696,3004,70,1,f +9696,3004,4,2,f +9696,3005,15,1,f +9696,3021,15,1,f +9696,3021,4,1,f +9696,3022,70,2,f +9696,3022,4,1,f +9696,3023,15,3,f +9696,3023,4,2,f +9696,3024,14,2,f +9696,3024,4,3,f +9696,3024,15,3,f +9696,3039,70,1,f +9696,3040b,0,2,f +9696,3040b,19,1,f +9696,3622,15,1,f +9696,3623,15,1,f +9696,3623,4,1,f +9696,3660,70,1,f +9696,3665,4,3,f +9696,3700,70,1,f +9696,3710,15,1,f +9696,3794b,15,1,f +9696,60478,15,2,f +9696,6091,4,2,f +9696,6091,15,3,f +9696,6141,297,2,f +9696,6141,85,1,f +9696,6141,297,1,t +9696,6141,29,1,t +9696,6141,29,2,f +9696,6141,85,1,t +9696,6541,4,1,f +9696,87087,19,2,f +9696,93606,4,1,f +9696,98138,47,2,f +9696,98138,47,1,t +9698,3001,1,1,f +9698,3003,4,4,f +9698,3003pe2,4,1,f +9698,3021,4,1,f +9698,3022,0,1,f +9698,3298,1,2,f +9698,3741,2,1,t +9698,3741,2,1,f +9698,3742,15,1,t +9698,3742,15,3,f +9698,3795,4,2,f +9698,6215,14,2,f +9699,2357,19,2,f +9699,2412b,0,2,f +9699,2412b,70,6,f +9699,2431,70,8,f +9699,2453a,71,2,f +9699,2543,0,1,f +9699,2921,70,6,f +9699,3001,72,2,f +9699,3004,84,2,f +9699,3005,72,2,f +9699,3005,19,2,f +9699,3009,72,1,f +9699,3010,72,1,f +9699,30115,4,1,f +9699,30169,0,1,f +9699,30173b,135,2,f +9699,30176,2,2,f +9699,3020,19,1,f +9699,3021,19,1,f +9699,3023,19,2,f +9699,3024,19,5,f +9699,3031,19,1,f +9699,3032,19,1,f +9699,3034,19,1,f +9699,3035,19,1,f +9699,3036,28,2,f +9699,30374,70,12,f +9699,30377,28,6,f +9699,30377,28,1,t +9699,3039,19,2,f +9699,3040b,28,4,f +9699,3040b,72,1,f +9699,3068b,28,7,f +9699,3069b,28,1,f +9699,3070b,0,1,t +9699,3070b,0,2,f +9699,3623,19,2,f +9699,3626bpr0653,78,1,f +9699,3626bpr0654,78,1,f +9699,3626bpr0656,78,1,f +9699,3633,297,1,f +9699,3666,19,4,f +9699,3679,71,2,f +9699,3680,0,2,f +9699,3832,70,1,f +9699,3848,72,1,f +9699,40235,28,1,f +9699,4085c,71,4,f +9699,43888,70,2,f +9699,4495b,4,1,f +9699,4495b,297,2,f +9699,4497,135,2,f +9699,4589,70,28,f +9699,54200,72,1,f +9699,54200,72,1,t +9699,63965,70,3,f +9699,6636,70,1,f +9699,87580,28,4,f +9699,88283,308,1,f +9699,88290,308,1,f +9699,88618pr0001,0,2,f +9699,88704,70,1,f +9699,970c00,28,1,f +9699,970c00,70,1,f +9699,970c00pr0150,0,1,f +9699,973pr1462c01,78,1,f +9699,973pr1560c01,28,1,f +9699,973pr1562c01,28,1,f +9702,2335,15,2,f +9702,2335,14,2,f +9702,2335,0,2,f +9702,2357,0,5,f +9702,2357,2,4,f +9702,2419,15,2,f +9702,2420,4,2,f +9702,2431,14,1,f +9702,2431,70,2,f +9702,2439,72,1,f +9702,2453a,70,3,f +9702,2454a,72,1,f +9702,2456,70,2,f +9702,2460,71,1,f +9702,2476a,15,1,f +9702,2489,70,2,f +9702,2540,0,4,f +9702,2555,0,1,f +9702,2654,19,3,f +9702,3004,70,12,f +9702,3004,2,4,f +9702,3004,1,3,f +9702,3004,0,3,f +9702,3005,1,2,f +9702,3005,70,14,f +9702,3008,0,1,f +9702,3009,2,2,f +9702,3009,70,4,f +9702,30093,34,1,f +9702,3010,0,2,f +9702,3010,70,1,f +9702,3020,1,2,f +9702,3020,15,1,f +9702,3021,1,3,f +9702,3023,19,14,f +9702,3023,70,9,f +9702,3024,1,3,f +9702,3024,72,7,f +9702,3030,70,3,f +9702,3031,15,3,f +9702,3032,19,1,f +9702,3032,72,1,f +9702,3034,70,1,f +9702,3035,70,1,f +9702,30374,71,1,f +9702,30383,15,2,f +9702,30383,0,2,f +9702,3039,0,1,f +9702,3062b,15,1,f +9702,3062b,4,4,f +9702,3062bpb001,378,1,f +9702,3069b,19,1,f +9702,3069b,15,1,f +9702,3069b,73,3,f +9702,3069bpr0100,2,2,f +9702,3070bpr007,19,1,t +9702,3070bpr007,19,1,f +9702,32028,0,2,f +9702,32316,71,1,f +9702,3245b,72,1,f +9702,32556,71,1,f +9702,3622,72,2,f +9702,3622,70,4,f +9702,3622,1,1,f +9702,3623,1,3,f +9702,3623,72,3,f +9702,3626bpr0464,378,1,f +9702,3665,70,2,f +9702,3665,15,2,f +9702,3666,2,1,f +9702,3666,70,4,f +9702,3700,71,1,f +9702,3709,0,1,f +9702,3710,70,8,f +9702,3710,72,2,f +9702,3710,0,2,f +9702,3794a,1,1,f +9702,3795,19,1,f +9702,3825stk01,9999,1,t +9702,3830,1,1,f +9702,3831,70,1,f +9702,3832,70,1,f +9702,3836,70,1,f +9702,3849,0,1,f +9702,3857,19,1,f +9702,3899,4,1,f +9702,3937,71,1,f +9702,3938,71,1,f +9702,3941,71,2,f +9702,40244,19,1,f +9702,4032a,4,3,f +9702,4032a,19,3,f +9702,4070,1,2,f +9702,4070,70,1,f +9702,4079,4,1,f +9702,41879a,1,1,f +9702,41879a,70,1,f +9702,4274,71,1,f +9702,4274,71,1,t +9702,4286,2,2,f +9702,43722,15,2,f +9702,43723,15,2,f +9702,4424,70,1,f +9702,44302a,72,2,f +9702,44302a,15,2,f +9702,4477,70,2,f +9702,4589,2,1,f +9702,4599a,15,1,f +9702,4599a,4,1,f +9702,47899c01,71,1,f +9702,48183,4,1,f +9702,4855,15,1,f +9702,4865a,0,1,f +9702,54200,15,2,f +9702,54872pr01,14,1,f +9702,54874pr01,4,1,f +9702,57503,334,1,f +9702,57504,334,1,f +9702,57505,334,1,f +9702,57506,334,1,f +9702,6019,72,2,f +9702,6060,70,2,f +9702,6091,1,4,f +9702,6141,27,4,f +9702,6141,70,3,f +9702,6141,72,1,t +9702,6141,14,1,t +9702,6141,72,4,f +9702,6141,70,1,t +9702,6141,27,1,t +9702,6141,4,4,f +9702,6141,14,4,f +9702,6141,4,1,t +9702,6179,15,1,f +9702,6183,15,1,f +9702,6256,191,1,f +9702,6541,0,2,f +9702,6541,72,2,f +9702,6587,72,1,f +9702,6589,71,1,f +9702,73194c01,71,1,f +9702,970c00,378,1,f +9702,973c11,14,1,f +9702,973pr1257c01,73,1,f +9702,973pr1258c01,19,1,f +9703,1850pr0001,15,1,f +9703,1850pr0002,15,1,f +9703,1851pr0001,15,1,f +9703,1852pr0004,15,1,f +9703,1853pr0001,15,1,f +9703,250pb01,4,1,f +9703,253pb02,1,1,f +9703,255pb01,4,1,f +9703,256pb01,4,1,f +9703,257pb02,14,1,f +9703,260pb01,4,1,f +9703,260pb01,2,1,f +9703,260pb01,0,1,f +9703,270pb05,89,1,f +9703,270pb06,89,1,f +9703,270pb07,89,1,f +9703,270pb08,89,1,f +9703,27bc01,4,4,f +9703,29bc01,4,4,f +9703,3001a,4,29,f +9703,3001a,15,59,f +9703,3002a,15,12,f +9703,3003,15,23,f +9703,3003,47,33,f +9703,3003,4,17,f +9703,3005,4,3,f +9703,3005,47,6,f +9703,3005,15,118,f +9703,3006,4,9,f +9703,3006,15,18,f +9703,3007,4,12,f +9703,3007,15,11,f +9703,3008a,15,13,f +9703,3008a,47,2,f +9703,3008a,4,2,f +9703,3008pb011,15,1,f +9703,3009a,4,3,f +9703,3009a,15,4,f +9703,3009a,47,4,f +9703,3009apb23,15,1,f +9703,3034a,15,6,f +9703,3035a,15,9,f +9703,3036a,15,10,f +9703,3037,1,16,f +9703,3039,1,6,f +9703,3041,1,4,f +9703,3043,1,1,f +9703,3063b,47,14,f +9703,3063b,4,1,f +9703,3063b,15,18,f +9703,3065,15,111,f +9703,3065,4,17,f +9703,3065,47,69,f +9703,3081bc01,4,5,f +9703,3087bc01,4,4,f +9703,31bc01,15,2,f +9703,31bc01,4,4,f +9703,32bc01,4,4,f +9703,32bc01,15,1,f +9703,33bc01,4,5,f +9703,453bc01,15,2,f +9703,453bc01,4,4,f +9703,604c01,4,3,f +9703,645bc01,4,5,f +9703,646bc01,4,5,f +9703,700ex,7,1,f +9703,712a,15,4,f +9703,713a,15,6,f +9703,723,80,1,f +9703,747p01c01,15,1,f +9703,820,15,1,f +9703,821,15,1,f +9703,822ac01,15,1,f +9703,bb108pb01,15,1,f +9703,bb140pb01c01,15,1,f +9703,ftbirch,2,1,f +9703,ftbush,2,2,f +9703,ftcyp,2,2,f +9703,ftoak,2,1,f +9703,ftpine,2,2,f +9703,tplan06,89,1,f +9703,u9119c01,2,1,f +9703,x887px1,15,1,f +9704,2335,14,4,f +9704,2450,72,4,f +9704,2540,0,4,f +9704,30602,72,1,f +9704,30602,40,1,f +9704,3062b,72,2,f +9704,32000,72,3,f +9704,3794a,0,1,f +9704,3957a,71,2,f +9704,4081b,14,2,f +9704,41769,14,1,f +9704,41770,14,1,f +9704,4274,71,1,t +9704,4274,71,4,f +9704,44567a,0,2,f +9704,44570,72,2,f +9704,4740,40,1,f +9704,6141,15,1,f +9704,6141,15,1,t +9704,6636,14,2,f +9705,2340,15,2,f +9705,2412b,15,4,f +9705,2456,15,1,f +9705,2540,14,1,f +9705,2547,72,1,f +9705,2610,14,2,f +9705,2614,0,1,f +9705,298c02,71,1,f +9705,298c02,71,1,t +9705,3001,15,1,f +9705,3003,272,2,f +9705,3004,15,2,f +9705,3010,272,2,f +9705,30162,72,2,f +9705,3034,4,1,f +9705,30340,14,1,f +9705,3039pr0005,15,1,f +9705,3626bpr0677,14,1,f +9705,3626cpr0498,14,1,f +9705,3666,272,1,f +9705,3794b,15,3,f +9705,3899,4,1,f +9705,3958,4,1,f +9705,4079,4,2,f +9705,4081b,15,1,f +9705,41879a,1,1,f +9705,4289,15,1,f +9705,44126,15,3,f +9705,4460b,15,2,f +9705,4642stk01,9999,1,t +9705,56823c50,0,1,f +9705,58181,40,1,f +9705,59230,0,1,t +9705,59230,0,1,f +9705,60581,15,2,f +9705,6141,36,1,t +9705,6141,36,2,f +9705,6141,34,2,f +9705,6141,34,1,t +9705,6141,4,2,f +9705,6141,4,1,t +9705,62360,15,1,f +9705,62810,484,1,f +9705,64648,179,1,f +9705,86035,27,1,f +9705,87587,72,1,f +9705,92710c01,15,1,f +9705,970c00,1,1,f +9705,973pr1163c01,272,1,f +9705,973pr1573c01,15,1,f +9707,2780,0,1,t +9707,2780,0,6,f +9707,2905,72,4,f +9707,32002,72,1,t +9707,32002,72,1,f +9707,32054,0,3,f +9707,32056,0,2,f +9707,32062,4,5,f +9707,32138,0,1,f +9707,32177,320,2,f +9707,32184,0,3,f +9707,32278,72,1,f +9707,32524,0,1,f +9707,40490,320,2,f +9707,41239,0,1,f +9707,41669,42,2,f +9707,41669,135,2,f +9707,41677,72,4,f +9707,42003,4,3,f +9707,43093,1,15,f +9707,4519,71,10,f +9707,45749,320,3,f +9707,47298,320,2,f +9707,47300,72,5,f +9707,49423,320,1,f +9707,53543,320,1,f +9707,53568,135,2,f +9707,53585,0,3,f +9707,53586,135,2,f +9707,54273,320,1,f +9707,55013,72,2,f +9707,57563,135,3,f +9707,58230,320,2,f +9707,60176,72,4,f +9707,60176,320,9,f +9707,60894,72,1,f +9707,60895,0,1,f +9707,60896,0,4,f +9707,60896,72,2,f +9707,60902,320,2,f +9707,61053,320,3,f +9707,61053,72,2,f +9707,61806,320,1,f +9707,62386,0,2,f +9707,63153,320,1,f +9707,64253,0,1,f +9707,64262,57,1,f +9707,64263pat0001,0,1,f +9707,64275,135,2,f +9707,64277c01,297,1,f +9707,64889pr0001,135,1,f +9707,6536,71,3,f +9707,6553,0,1,f +9707,6558,1,6,f +9707,6587,72,2,f +9707,6632,0,2,f +9712,11403pr0003c01,84,1,f +9712,11816pr0009,84,1,f +9712,12825,15,1,f +9712,3001,19,1,f +9712,30136,70,1,f +9712,3020,70,1,f +9712,3032,322,1,f +9712,3039,19,1,f +9712,33291,5,1,t +9712,33291,5,1,f +9712,3623,14,2,f +9712,3710,15,1,f +9712,3794b,0,1,f +9712,3795,71,1,f +9712,3941,15,1,f +9712,43713,15,1,f +9712,43719,14,1,f +9712,4623,15,1,f +9712,4871,15,1,f +9712,50950,30,2,f +9712,59275,27,2,f +9712,6141,45,2,f +9712,6141,45,1,t +9712,92256,0,1,f +9712,92456pr0044c01,84,1,f +9712,98397,71,1,f +9714,2412b,25,4,f +9714,2412b,1,12,f +9714,2436,15,1,f +9714,2446,1,1,f +9714,2508,15,1,f +9714,2569,72,1,f +9714,2610,14,1,f +9714,3003,15,1,f +9714,30031,72,1,f +9714,3004,1,2,f +9714,30090,41,1,f +9714,30091,72,1,f +9714,3020,25,2,f +9714,3020,1,1,f +9714,3022,71,5,f +9714,3022,0,1,f +9714,3023,1,2,f +9714,30236,71,1,f +9714,3024,46,2,f +9714,3031,72,1,f +9714,3034,15,1,f +9714,30602,25,1,f +9714,3069b,15,3,f +9714,3070b,72,1,t +9714,3070b,72,2,f +9714,32028,71,4,f +9714,3626b,15,1,f +9714,3626bpr0270,14,1,f +9714,3660,72,1,f +9714,3710,25,2,f +9714,3710,1,3,f +9714,3710,72,1,f +9714,3794a,72,2,f +9714,3795,72,1,f +9714,3829c01,71,1,f +9714,3832,72,1,f +9714,3962b,0,1,f +9714,4083,15,1,f +9714,43337,25,2,f +9714,43713,15,1,f +9714,43722,25,1,f +9714,43723,25,1,f +9714,4485,1,1,f +9714,45677,15,1,f +9714,4589,72,1,f +9714,4623,15,3,f +9714,47755,25,1,f +9714,4871,15,1,f +9714,48729a,72,2,f +9714,48729a,72,1,t +9714,50745,72,4,f +9714,52036,72,1,f +9714,52038,72,2,f +9714,52501,25,2,f +9714,53989,15,1,f +9714,54200,36,4,f +9714,54200,46,2,f +9714,54200,46,1,t +9714,54200,36,1,t +9714,56890,0,6,f +9714,57783,41,1,f +9714,59275,25,2,f +9714,6014b,15,6,f +9714,6019,15,2,f +9714,60475a,15,2,f +9714,6141,182,1,t +9714,6141,182,4,f +9714,6157,0,3,f +9714,6187,0,1,f +9714,63082,71,1,f +9714,7737stk01,9999,1,t +9714,970c00,1,1,f +9714,973pr1363c01,14,1,f +9715,10048,84,1,f +9715,10053,179,1,t +9715,10053,179,1,f +9715,10928,72,2,f +9715,11010,334,2,t +9715,11010,334,1,f +9715,11090,0,6,f +9715,11127,41,1,f +9715,11211,71,7,f +9715,11610,0,7,f +9715,11891,15,1,f +9715,11908,0,1,f +9715,11908,84,1,f +9715,11911,308,1,f +9715,13548,378,7,f +9715,14716,71,2,f +9715,15207,0,4,f +9715,15207,71,4,f +9715,15332,70,1,f +9715,15535,72,2,f +9715,15571,297,20,f +9715,15573,72,1,f +9715,16577,72,2,f +9715,18153pr0001,320,1,f +9715,18154pr0001,320,1,f +9715,18159pr0001,320,1,f +9715,18160pr0001,320,1,f +9715,18161,320,1,f +9715,18234,320,1,f +9715,18449,320,1,f +9715,18453,320,1,f +9715,18769,320,1,f +9715,2343,297,1,f +9715,2357,72,7,f +9715,2412b,0,3,f +9715,2431,0,2,f +9715,2431,72,2,f +9715,2431,71,1,f +9715,2445,0,2,f +9715,2449,72,13,f +9715,2450,72,1,f +9715,2458,71,4,f +9715,2465,72,2,f +9715,2489,308,1,f +9715,2540,0,2,f +9715,2587,179,1,f +9715,2653,71,2,f +9715,2654,0,1,f +9715,2780,0,2,f +9715,2780,0,1,t +9715,2817,71,1,f +9715,30000,72,1,f +9715,3001,72,1,f +9715,3001,378,20,f +9715,3002,71,2,f +9715,3002,72,7,f +9715,3003,378,17,f +9715,3003,72,5,f +9715,3004,71,1,f +9715,3004,378,49,f +9715,3004,72,6,f +9715,3005,378,11,f +9715,3005,71,2,f +9715,3007,71,2,f +9715,3009,70,1,f +9715,3009,72,3,f +9715,3010,378,21,f +9715,3010,72,5,f +9715,30136,308,2,f +9715,30153,34,1,f +9715,30153,33,1,f +9715,30153,36,1,f +9715,3020,70,8,f +9715,3021,70,2,f +9715,3021,72,1,f +9715,3022,72,8,f +9715,3022,70,4,f +9715,3022,19,1,f +9715,3022,0,2,f +9715,3022,71,1,f +9715,3023,70,13,f +9715,3023,71,2,f +9715,3023,72,5,f +9715,30237a,72,8,f +9715,3024,41,1,t +9715,3024,41,2,f +9715,3024,72,1,t +9715,3024,72,6,f +9715,3028,72,2,f +9715,3028,70,2,f +9715,3029,72,2,f +9715,3031,70,1,f +9715,3032,71,1,f +9715,3032,70,3,f +9715,3032,72,1,f +9715,3034,0,1,f +9715,3034,72,1,f +9715,3036,72,1,f +9715,30363,72,1,f +9715,30367c,0,1,f +9715,30367c,297,4,f +9715,30374,70,2,f +9715,30374,0,1,f +9715,30385,297,7,f +9715,30395,72,1,f +9715,3040b,71,7,f +9715,3040b,72,17,f +9715,3046a,72,6,f +9715,30503,70,2,f +9715,30503,72,4,f +9715,30526,72,4,f +9715,30565,72,1,f +9715,3068b,71,1,f +9715,3068b,0,1,f +9715,3068b,72,1,f +9715,3068b,297,10,f +9715,3069b,72,4,f +9715,3069b,71,3,f +9715,3069b,378,10,f +9715,3070b,72,3,f +9715,3070b,72,1,t +9715,3176,72,1,f +9715,32000,72,5,f +9715,32001,71,1,f +9715,32123b,71,5,f +9715,32123b,71,1,t +9715,32333,0,2,f +9715,3245c,72,2,f +9715,32474,0,1,f +9715,33061,34,1,f +9715,3460,72,2,f +9715,3622,72,1,f +9715,3623,70,3,f +9715,3623,71,2,f +9715,3626cpr1081,78,1,f +9715,3626cpr1100,78,1,f +9715,3626cpr1103,78,1,f +9715,3626cpr1108,78,1,f +9715,3626cpr1112,78,1,f +9715,3660,72,3,f +9715,3665,72,3,f +9715,3665,70,3,f +9715,3666,0,2,f +9715,3666,71,5,f +9715,3678b,297,6,f +9715,3678b,71,1,f +9715,3700,70,1,f +9715,3702,0,2,f +9715,3705,0,1,f +9715,3709,72,1,f +9715,3710,0,2,f +9715,3710,72,4,f +9715,3710,70,6,f +9715,3713,71,1,f +9715,3713,71,1,t +9715,3747b,70,5,f +9715,3794b,71,3,f +9715,3795,71,1,f +9715,3795,70,2,f +9715,3830,71,2,f +9715,3831,71,2,f +9715,3837,72,1,f +9715,3841,72,1,f +9715,3844,80,1,f +9715,3894,0,1,f +9715,3941,70,3,f +9715,40378,320,1,f +9715,40395,320,1,f +9715,4162,71,2,f +9715,41879a,272,1,f +9715,41879a,288,1,f +9715,41879a,308,1,f +9715,41879a,320,1,f +9715,41879a,72,1,f +9715,4282,72,1,f +9715,4286,378,10,f +9715,4287,72,1,f +9715,4287,70,2,f +9715,43093,1,1,f +9715,44294,71,1,f +9715,4460b,71,3,f +9715,44728,71,7,f +9715,4510,72,6,f +9715,4522,0,1,f +9715,4733,0,1,f +9715,47759,72,4,f +9715,47847,72,1,f +9715,47905,0,2,f +9715,4865b,71,1,f +9715,48723,70,1,f +9715,49668,179,14,f +9715,53451,0,7,f +9715,53451,0,1,t +9715,53454,34,1,t +9715,53454,148,3,f +9715,53454,34,2,f +9715,54200,378,8,f +9715,54200,182,3,f +9715,54200,0,2,f +9715,54200,0,1,t +9715,54200,182,1,t +9715,54200,297,6,t +9715,54200,297,33,f +9715,54200,72,1,t +9715,54200,320,1,t +9715,54200,320,4,f +9715,54200,378,4,t +9715,54200,72,2,f +9715,54383,72,1,f +9715,54384,72,2,f +9715,55013,72,2,f +9715,59443,72,1,f +9715,59900,297,4,f +9715,59900,320,1,f +9715,60169,72,2,f +9715,6020,70,2,f +9715,60219,0,2,f +9715,60474,308,2,f +9715,60479,70,2,f +9715,6082,72,2,f +9715,6106,71,2,f +9715,6111,72,2,f +9715,6112,70,1,f +9715,6141,297,3,t +9715,6141,297,19,f +9715,6141,179,17,f +9715,6141,179,3,t +9715,6231,71,4,f +9715,62808,72,1,f +9715,62808,72,1,t +9715,63965,297,1,f +9715,64448,70,1,f +9715,64566,0,2,f +9715,64647,182,4,t +9715,64647,182,9,f +9715,64951,70,1,f +9715,6636,72,2,f +9715,6636,4,1,f +9715,73983,0,2,f +9715,74698,0,1,f +9715,85959pat0003,36,1,f +9715,85984,72,5,f +9715,87079,378,9,f +9715,87079,72,1,f +9715,87081,70,1,f +9715,87087,0,4,f +9715,87087,72,13,f +9715,87580,72,1,f +9715,87580,320,1,f +9715,87580,71,2,f +9715,87620,72,4,f +9715,87747,0,5,f +9715,87747,0,1,t +9715,89523,72,1,f +9715,90258,72,2,f +9715,92947,70,1,f +9715,95673,148,1,f +9715,95673,148,1,t +9715,95673,179,2,f +9715,96874,25,1,t +9715,973pr2800c01,272,1,f +9715,973pr2805c01,320,1,f +9715,973pr2806c01,288,1,f +9715,973pr2807c01,0,1,f +9715,973pr2808c01,272,1,f +9715,98138,320,1,t +9715,98138,320,4,f +9715,98138pr0024b,47,1,t +9715,98138pr0024b,47,1,f +9715,98370,148,1,f +9715,98560,72,5,f +9715,99207,0,16,f +9715,99780,71,3,f +9715,99781,0,4,f +9716,2446,15,1,f +9716,298c02,0,2,f +9716,3626cpr0001,14,1,f +9716,3794b,0,1,f +9716,3838,15,1,f +9716,3937,0,1,f +9716,3938,0,1,f +9716,4070,0,2,f +9716,4733,0,1,f +9716,4735,0,2,f +9716,6141,46,2,f +9716,87994,0,1,f +9716,970c00,15,1,f +9716,973p90c05,15,1,f +9718,11213,322,1,f +9718,11407pr0004c01,30,1,f +9718,11610,19,3,f +9718,11816pr0002,78,1,f +9718,11816pr0009,84,1,f +9718,11833,71,1,f +9718,14769,15,1,f +9718,14769,27,2,f +9718,15068,15,1,f +9718,15279,10,1,f +9718,15395,15,1,f +9718,15470,70,1,t +9718,15470,29,1,f +9718,15470,70,1,f +9718,15470,29,1,t +9718,15470,15,1,t +9718,15470,15,1,f +9718,15573,27,1,f +9718,17437,70,1,f +9718,18853,29,1,t +9718,18853,29,1,f +9718,18854,52,1,f +9718,18854,52,1,t +9718,2343,47,2,f +9718,2412b,297,1,f +9718,2412b,70,2,f +9718,2420,19,1,f +9718,2423,2,3,f +9718,2431,26,2,f +9718,2431,27,1,f +9718,2431,71,2,f +9718,2431,70,4,f +9718,2453b,15,2,f +9718,2551,29,1,f +9718,2877,71,1,f +9718,2921,15,2,f +9718,3001,19,3,f +9718,3002,15,3,f +9718,3003,19,1,f +9718,3004,73,14,f +9718,3004,29,4,f +9718,3004,71,1,f +9718,3004,26,2,f +9718,3004,15,6,f +9718,3005,29,1,f +9718,3005,71,1,f +9718,3005,73,17,f +9718,30056,26,4,f +9718,3006,15,2,f +9718,3007,19,1,f +9718,30089,0,1,f +9718,3009,15,1,f +9718,3010,73,6,f +9718,30136,70,3,f +9718,30162,72,1,f +9718,3020,322,1,f +9718,3020,71,5,f +9718,3020,15,2,f +9718,3021,272,1,f +9718,3022,15,3,f +9718,30222,42,1,f +9718,3023,14,4,f +9718,3023,15,14,f +9718,3023,70,2,f +9718,3024,15,1,f +9718,3024,73,3,f +9718,3024,15,1,t +9718,3024,73,1,t +9718,3028,71,1,f +9718,3031,71,1,f +9718,3032,322,3,f +9718,3032,19,3,f +9718,3033,15,2,f +9718,30357,15,4,f +9718,30357,29,2,f +9718,30367c,70,1,f +9718,30367c,15,1,f +9718,30367c,27,1,f +9718,30367c,29,1,f +9718,3037,71,1,f +9718,3037,272,6,f +9718,30374,15,1,f +9718,3038,272,2,f +9718,3039,272,4,f +9718,3039,71,2,f +9718,3039,19,2,f +9718,3040b,71,4,f +9718,3040b,272,2,f +9718,3040bpr0003,71,1,f +9718,3046a,272,6,f +9718,30565,15,4,f +9718,30565,322,2,f +9718,3062b,15,1,f +9718,3062b,46,3,f +9718,3062b,70,4,f +9718,3062b,41,1,f +9718,3068bpr0242,19,1,f +9718,3069b,26,2,f +9718,3069b,272,4,f +9718,3069b,27,1,f +9718,3070b,272,1,t +9718,3070b,272,1,f +9718,32073,71,1,f +9718,3245b,15,2,f +9718,3298,72,1,f +9718,33183,10,1,t +9718,33183,10,1,f +9718,33291,4,7,f +9718,33291,4,2,t +9718,33291,5,2,t +9718,33291,10,2,t +9718,33291,191,2,f +9718,33291,31,3,f +9718,33291,10,2,f +9718,33291,5,3,f +9718,33291,31,1,t +9718,33291,191,2,t +9718,3622,19,1,f +9718,3622,29,10,f +9718,3622,15,10,f +9718,3660,15,3,f +9718,3665,15,2,f +9718,3666,29,2,f +9718,3666,27,1,f +9718,3710,73,5,f +9718,3710,15,5,f +9718,3795,15,1,f +9718,3795,29,1,f +9718,3941,46,4,f +9718,3941,27,2,f +9718,3942c,297,1,f +9718,3958,27,1,f +9718,3958,19,3,f +9718,3961,26,1,f +9718,4032a,19,2,f +9718,43898,15,1,f +9718,44728,19,1,f +9718,4477,15,1,f +9718,4490,15,2,f +9718,4495b,4,1,f +9718,4599b,71,1,t +9718,4599b,71,1,f +9718,4697b,71,1,t +9718,4697b,71,1,f +9718,4865a,15,2,f +9718,54200,143,3,f +9718,54200,70,1,t +9718,54200,71,2,f +9718,54200,15,3,f +9718,54200,70,5,f +9718,54200,143,1,t +9718,54200,15,2,t +9718,54200,71,1,t +9718,57585,71,1,f +9718,59900,26,4,f +9718,6003,19,1,f +9718,60471,71,1,f +9718,60474,15,1,f +9718,60478,72,1,f +9718,60592,15,2,f +9718,60594,15,3,f +9718,60596,15,2,f +9718,60601,47,2,f +9718,60608,14,4,f +9718,60616a,15,1,f +9718,60616a,47,1,f +9718,6091,15,4,f +9718,6091,30,4,f +9718,6111,19,2,f +9718,6141,41,1,t +9718,6141,0,1,t +9718,6141,41,5,f +9718,6141,2,2,t +9718,6141,25,1,f +9718,6141,15,7,f +9718,6141,2,2,f +9718,6141,158,2,f +9718,6141,71,2,t +9718,6141,158,1,t +9718,6141,182,2,f +9718,6141,71,4,f +9718,6141,0,1,f +9718,6141,25,1,t +9718,6141,182,1,t +9718,6141,15,2,t +9718,6231,71,3,f +9718,6231,15,4,f +9718,6254,27,1,f +9718,6254,191,1,f +9718,63868,70,1,f +9718,85080,29,11,f +9718,85080,15,12,f +9718,87079,30,1,f +9718,87079,272,1,f +9718,87079,15,2,f +9718,87081,15,2,f +9718,87087,29,2,f +9718,87544,47,4,f +9718,87552,47,3,f +9718,87580,15,1,f +9718,87580,27,2,f +9718,87585,70,2,f +9718,87585,70,1,t +9718,88072,71,1,f +9718,92255,226,1,f +9718,92256,0,1,f +9718,92438,322,1,f +9718,92456pr0023c01,84,1,f +9718,92456pr0040c01,78,1,f +9718,92582,71,1,f +9718,92690,70,2,f +9718,92818pr0005c01,191,1,f +9718,92947,15,2,f +9718,92950,15,1,f +9718,93095,29,2,f +9718,98138,71,2,f +9718,98138,45,1,t +9718,98138,71,1,t +9718,98138,47,1,t +9718,98138,46,7,f +9718,98138,46,2,t +9718,98138,47,1,f +9718,98138,33,1,t +9718,98138,45,2,f +9718,98138,33,1,f +9718,98138,15,1,f +9718,98138,15,1,t +9718,98138pr0024a,179,1,f +9718,98138pr0024a,179,1,t +9718,99207,71,1,f +9720,11097,297,1,f +9720,11127,182,1,f +9720,11129pr0008,70,1,f +9720,14769pr1012,4,3,f +9720,15068,308,1,f +9720,15084pr0002,19,1,f +9720,15084pr0005,19,1,f +9720,15208,15,2,f +9720,15391,0,1,f +9720,15392,72,1,f +9720,15672,191,4,f +9720,16968,71,1,f +9720,20176,47,1,f +9720,2780,0,1,f +9720,3001,70,2,f +9720,3023,70,1,f +9720,3068b,191,1,f +9720,3460,308,1,f +9720,3626cpr1430,19,1,f +9720,3626cpr1601,19,1,f +9720,3626cpr1602,19,1,f +9720,3700,71,1,f +9720,3942c,297,1,f +9720,43722,191,1,f +9720,43723,191,1,f +9720,4460b,191,2,f +9720,4497,297,1,f +9720,53451,15,4,f +9720,54200,191,6,f +9720,59900,297,2,f +9720,60897,70,2,f +9720,6126b,182,2,f +9720,6141,4,3,f +9720,6141,297,1,f +9720,63965,70,1,f +9720,64567,297,2,f +9720,6587,28,1,f +9720,85984,0,1,f +9720,87081,70,1,f +9720,87747,15,3,f +9720,87994,297,2,f +9720,91884,179,1,f +9720,92690,70,1,f +9720,970c00pr0780,19,1,f +9720,970c00pr0803,19,2,f +9720,973pr2869c01,19,2,f +9720,973pr2905c01,19,1,f +9720,98138pr0023,182,1,f +9720,98285,0,1,f +9720,98286,71,1,f +9720,99780,0,1,f +9722,2335p04,15,1,f +9722,2526,14,1,f +9722,2526,14,1,t +9722,2527,6,1,f +9722,2528,0,1,f +9722,2530,8,1,f +9722,2542,6,2,f +9722,2551,4,1,f +9722,2562,6,1,f +9722,3020,7,1,f +9722,3022,7,1,f +9722,3023,7,2,f +9722,3062b,0,6,f +9722,3403,0,1,f +9722,3404,0,1,f +9722,3626apb05,14,1,f +9722,3957a,0,1,f +9722,84943,8,1,f +9722,970c00,15,1,f +9722,973pb0204c01,15,1,f +9723,2357,1,2,f +9723,2357,15,2,f +9723,2450,1,2,f +9723,2456,1,1,f +9723,2460,4,1,f +9723,3001,4,1,f +9723,3001,1,1,f +9723,3001,14,1,f +9723,3001,15,1,f +9723,3003,14,2,f +9723,3003,1,2,f +9723,3003,15,2,f +9723,3004,4,4,f +9723,3004,15,8,f +9723,3004,1,6,f +9723,3004,14,4,f +9723,3005,15,4,f +9723,3005,1,2,f +9723,3005,4,4,f +9723,3005,14,2,f +9723,3005pe1,14,2,f +9723,3009,15,2,f +9723,3009,1,2,f +9723,3009,4,2,f +9723,3010,15,4,f +9723,3010,4,2,f +9723,3010,14,2,f +9723,3010,1,4,f +9723,3010p01,14,1,f +9723,3032,1,1,f +9723,3039,14,2,f +9723,3040b,14,4,f +9723,3062b,15,4,f +9723,3297,14,2,f +9723,3298p19,14,4,f +9723,3299,14,1,f +9723,3300,14,2,f +9723,3307,15,2,f +9723,3626bp04,14,1,f +9723,3633,4,2,f +9723,3660,14,2,f +9723,3665,14,2,f +9723,3710,1,2,f +9723,3741,2,2,f +9723,3742,14,3,f +9723,3742,14,1,t +9723,3742,4,1,t +9723,3742,4,3,f +9723,3795,1,2,f +9723,3853,4,2,f +9723,3854,15,4,f +9723,3861b,4,1,f +9723,3865,2,1,f +9723,3901,6,1,f +9723,3957a,15,2,f +9723,3960p01,15,1,f +9723,4495b,2,1,f +9723,6041,14,1,f +9723,6215,4,2,f +9723,970c00,0,1,f +9723,973p73c01,2,1,f +9724,13722,484,1,f +9724,3011,484,1,f +9724,3437,4,1,f +9724,3437,484,1,f +9724,4066,70,4,f +9724,40666,4,2,f +9724,40666,70,1,f +9724,61649,14,1,f +9724,6394,4,1,f +9724,6478,212,1,f +9724,6510,10,1,f +9724,88007,84,1,f +9724,89617,15,1,f +9724,98459,70,1,f +9726,5306bc162,0,1,f +9727,11477,0,1,f +9727,15303,36,2,f +9727,15362,0,2,f +9727,15400,72,1,f +9727,18651,0,1,f +9727,18654,0,2,f +9727,21560,0,1,f +9727,21562,0,2,f +9727,26831,0,2,f +9727,26911,0,1,f +9727,27343,0,1,f +9727,27407,0,1,f +9727,2780,0,11,f +9727,28091,47,1,f +9727,3024,36,1,f +9727,30374,0,2,f +9727,3069b,0,1,f +9727,32013,0,1,f +9727,32014,0,1,f +9727,32062,4,5,f +9727,32123b,71,2,f +9727,32184,0,1,f +9727,32291,0,2,f +9727,32449,0,4,f +9727,32523,0,3,f +9727,3623,0,3,f +9727,41677,0,2,f +9727,4274,71,4,f +9727,43093,1,2,f +9727,59900,0,1,f +9727,60470a,0,1,f +9727,6141,179,6,f +9727,63864pr0010,0,3,f +9727,6553,0,1,f +9727,74261,0,4,f +9727,87082,0,1,f +9727,87083,72,1,f +9727,88811,179,1,f +9727,90605,0,2,f +9727,90608,72,2,f +9727,90615,72,2,f +9727,90616,0,2,f +9727,90623,0,1,f +9727,90639,0,4,f +9727,90641,0,2,f +9727,90652,0,1,f +9727,90661,0,2,f +9727,92907,0,1,f +9727,93575,0,2,f +9727,98577,72,1,f +9727,99021,72,1,f +9729,tplan01,9999,1,f +9731,2046,0,1,f +9731,2339,6,6,f +9731,2357,0,2,f +9731,2417,2,6,f +9731,2431,7,1,f +9731,2454a,0,1,f +9731,2456,7,1,f +9731,2458,7,1,f +9731,2462,0,1,f +9731,2540,7,1,f +9731,2546,8,1,f +9731,2554,6,2,f +9731,2570,8,1,f +9731,2586p4b,7,2,f +9731,3001,7,5,f +9731,3003,0,3,f +9731,3004,6,3,f +9731,3004,7,9,f +9731,3004,0,9,f +9731,3005,0,10,f +9731,3005,7,4,f +9731,3009,7,1,f +9731,3010,7,1,f +9731,3020,0,1,f +9731,3022,0,1,f +9731,3023,0,2,f +9731,3023,6,1,f +9731,3023,7,3,f +9731,3024,0,1,f +9731,3024,7,2,f +9731,3034,0,1,f +9731,3040b,7,1,f +9731,3045,4,4,f +9731,3068bp40,15,1,f +9731,3307,0,4,f +9731,3308,7,1,f +9731,3455,0,1,f +9731,3581,0,2,f +9731,3622,0,2,f +9731,3622,7,2,f +9731,3623,6,6,f +9731,3623,7,1,f +9731,3626bpr0001,14,1,f +9731,3626bpx122,14,1,f +9731,3626bpx96,14,1,f +9731,3626bpx97,14,1,f +9731,3660,7,1,f +9731,3665,7,2,f +9731,3666,0,3,f +9731,3676,7,1,f +9731,3688,4,1,f +9731,3700,7,1,f +9731,3710,0,1,f +9731,3710,7,1,f +9731,3794a,0,1,f +9731,3795,2,2,f +9731,3832,0,1,f +9731,3844,0,1,f +9731,3847,8,3,f +9731,3849,0,2,f +9731,3857,2,1,f +9731,4085c,7,4,f +9731,4085c,0,1,f +9731,4162,7,3,f +9731,4460a,0,1,f +9731,4490,7,2,f +9731,4491b,14,1,f +9731,4491b,4,1,f +9731,4493c01pb01,6,1,f +9731,4493c01pb02,0,1,f +9731,4495b,4,1,f +9731,4495b,14,1,f +9731,4497,6,2,f +9731,4524,0,1,f +9731,4589,4,1,f +9731,4735,0,1,f +9731,4738a,6,1,f +9731,4739a,6,1,f +9731,6019,7,2,f +9731,6019,0,1,f +9731,6020,6,2,f +9731,6027,2,1,f +9731,6028,2,1,f +9731,6046,6,2,f +9731,6064,2,2,f +9731,6066,0,1,f +9731,6072,0,1,f +9731,6082,8,2,f +9731,6083,8,4,f +9731,6108,0,2,f +9731,6112,0,1,f +9731,6122,0,2,f +9731,6123,8,3,f +9731,6124,21,1,f +9731,6125,4,2,f +9731,6126a,57,2,f +9731,6127,2,1,f +9731,6128,2,1,f +9731,6131,1,1,f +9731,6132,15,1,f +9731,6133,4,2,f +9731,6141,34,2,f +9731,6141,36,2,f +9731,75174,2,1,f +9731,87685,4,2,f +9731,87686,4,2,f +9731,87687,4,2,f +9731,970c00,1,1,f +9731,970d02,4,1,f +9731,970x021,0,1,f +9731,970x026,7,1,f +9731,973p46c02,1,1,f +9731,973p4bc02,4,1,f +9731,973pb0074c02,4,1,f +9731,973pb0105c02,4,1,f +9731,x375px1,14,1,f +9731,x376px1,14,2,f +9732,24087,15,1,f +9732,3626cpr1831,14,1,f +9732,88646,0,1,f +9732,93217pr0002,308,1,f +9732,970c00pr0992,15,1,f +9732,973pr3220c01,15,1,f +9733,12939,4,4,f +9733,2465,15,2,f +9733,3001,15,2,f +9733,3001,14,1,f +9733,3001,4,1,f +9733,3001,2,1,f +9733,3002,14,1,f +9733,3002,1,1,f +9733,3003,14,2,f +9733,3003,1,1,f +9733,3003,15,1,f +9733,3003,4,2,f +9733,3004,14,2,f +9733,3004,15,4,f +9733,3004,1,3,f +9733,3004,2,1,f +9733,3004,0,4,f +9733,3004,25,8,f +9733,3005,0,1,f +9733,3005,15,5,f +9733,3005,25,4,f +9733,3005,4,2,f +9733,30089,0,1,f +9733,3009,15,2,f +9733,3022,15,1,f +9733,3022,1,2,f +9733,3023,4,2,f +9733,3027,1,1,f +9733,3031,2,2,f +9733,3034,2,6,f +9733,3036,1,2,f +9733,3039,2,2,f +9733,3040b,0,1,f +9733,3040b,4,1,f +9733,3040b,15,1,f +9733,3062b,2,7,f +9733,3062b,15,8,f +9733,3062b,4,2,f +9733,3622,15,2,f +9733,3622,0,2,f +9733,3626cpr0499,14,1,f +9733,3648b,72,1,f +9733,3649,71,1,f +9733,3659,15,4,f +9733,3700,71,2,f +9733,3749,19,2,f +9733,3942c,1,1,f +9733,3942c,15,1,f +9733,3957a,1,2,f +9733,4286,14,1,f +9733,4460b,1,2,f +9733,4495b,2,1,f +9733,4495b,4,1,f +9733,86035,4,1,f +9733,970c00,1,1,f +9733,973pr1580c01,15,1,f +9734,2377,0,4,f +9734,2412b,0,2,f +9734,2413,15,4,f +9734,2419,15,1,f +9734,2420,0,1,f +9734,2432,0,1,f +9734,2445,7,1,f +9734,2445,19,1,f +9734,2526,15,1,f +9734,2536,6,5,f +9734,2555,7,3,f +9734,2563,6,1,f +9734,2566,2,1,f +9734,2873,19,2,f +9734,2952,6,1,f +9734,298c05,0,2,f +9734,3001,19,1,f +9734,3003,0,1,f +9734,3004,0,2,f +9734,30132,8,2,f +9734,30141,8,4,f +9734,30147,8,1,f +9734,30148,0,1,f +9734,30149,0,1,f +9734,30150,6,2,f +9734,30152pat0001,0,1,f +9734,30154,0,1,f +9734,30155,19,2,f +9734,30155,8,4,f +9734,30157,8,3,f +9734,30158,6,1,f +9734,30161pa1,47,1,f +9734,30162,0,2,f +9734,30163,19,1,f +9734,30164p01,19,1,f +9734,30169,0,2,f +9734,30170,0,1,f +9734,30171,6,1,f +9734,30172,15,2,f +9734,3020,15,1,f +9734,3021,6,2,f +9734,3021,15,3,f +9734,3022,8,2,f +9734,3022,0,2,f +9734,3023,7,1,f +9734,3023,0,7,f +9734,3023,15,2,f +9734,3032,19,1,f +9734,3034,19,1,f +9734,3040b,19,4,f +9734,3062b,2,1,f +9734,3068b,19,2,f +9734,3068bpx13,19,1,f +9734,3068bpx19,19,1,f +9734,3069b,19,1,f +9734,3069bp03,7,1,f +9734,3069bpa4,15,1,f +9734,3176,0,1,f +9734,3483,0,6,f +9734,3587,19,1,f +9734,3623,7,1,f +9734,3626bpa1,14,1,f +9734,3626bpa5,14,1,f +9734,3626bpa7,14,1,f +9734,3626bpa9,14,1,f +9734,3626bpr0895,15,1,f +9734,3659,19,1,f +9734,3700,0,1,f +9734,3710,15,1,f +9734,3749,7,2,f +9734,3794a,0,2,f +9734,3795,7,1,f +9734,3795,19,2,f +9734,3829c01,7,1,f +9734,3832,7,1,f +9734,3837,8,2,f +9734,3841,8,3,f +9734,3878,0,1,f +9734,3937,4,2,f +9734,3938,7,2,f +9734,4032a,2,1,f +9734,4070,0,5,f +9734,4081b,7,2,f +9734,4085c,0,2,f +9734,4150,2,2,f +9734,4315,7,2,f +9734,4528,0,1,f +9734,4599a,7,1,t +9734,4599a,7,4,f +9734,4623,0,1,f +9734,4625,7,1,f +9734,4854,19,1,f +9734,4855,19,1,f +9734,4871,0,1,f +9734,6019,0,2,f +9734,6069,19,1,f +9734,6126a,57,1,f +9734,6141,47,1,t +9734,6141,7,8,f +9734,6141,7,1,t +9734,6141,47,3,f +9734,6148,2,4,f +9734,6260,15,1,f +9734,6265,15,2,f +9734,6266,15,2,f +9734,970c00,2,1,f +9734,970c00,0,2,f +9734,970c00,7,1,f +9734,973p22c01,0,1,f +9734,973pa1c01,15,1,f +9734,973pa5c01,6,1,f +9734,973pa7c01,19,1,f +9734,mummyc02,82,1,f +9735,44524,28,3,f +9735,44524,70,2,f +9735,51708,70,1,f +9735,51725pr0004,0,1,f +9735,54037,135,1,f +9735,54060,0,1,f +9735,54530,14,1,f +9735,54860,70,1,f +9736,15391,0,2,f +9736,15392,72,2,f +9736,15392,72,1,t +9736,15571,0,1,f +9736,15573,297,1,f +9736,15619,4,1,t +9736,15619,4,1,f +9736,15705,308,1,f +9736,15712,320,2,f +9736,15712,297,3,f +9736,2412b,0,2,f +9736,2654,182,2,f +9736,30031,72,1,f +9736,3022,4,1,f +9736,3023,4,2,f +9736,30414,0,2,f +9736,30526,72,1,f +9736,3623,4,2,f +9736,3626cpr1365,14,1,f +9736,3795,0,2,f +9736,41769,4,1,f +9736,41770,4,1,f +9736,47753,4,1,f +9736,61409,0,2,f +9736,6141,57,4,f +9736,6141,57,1,t +9736,970c00pr0761,4,1,f +9736,973pr2846c01,4,1,f +9736,98139,297,1,t +9736,98139,297,2,f +9736,99780,0,1,f +9741,2458,1,1,f +9741,3005,70,4,f +9741,3005,70,1,t +9741,30055,71,1,f +9741,3010,1,1,f +9741,30136,70,2,f +9741,30137,70,2,f +9741,3038,15,2,f +9741,3666,15,1,f +9743,2357,15,2,f +9743,2412b,72,4,f +9743,2431,15,2,f +9743,2432,72,1,f +9743,2458,15,1,f +9743,2488,0,1,f +9743,2524,15,2,f +9743,2555,72,1,f +9743,2639,15,2,f +9743,298c02,0,3,f +9743,298c02,0,1,t +9743,30031,0,1,f +9743,3005,15,5,f +9743,3005,0,1,f +9743,3009,15,1,f +9743,30157,70,1,f +9743,30171,15,2,f +9743,3020,71,2,f +9743,3022,15,2,f +9743,3023,15,4,f +9743,3023,0,1,f +9743,30287pr01,272,1,f +9743,30304,72,1,f +9743,3031,72,1,f +9743,30374,71,1,f +9743,30377,15,1,t +9743,30377,15,2,f +9743,3039,15,4,f +9743,3039,19,1,f +9743,3040b,15,4,f +9743,30414,71,2,f +9743,30503,15,2,f +9743,3062b,72,1,f +9743,3068b,15,5,f +9743,32059,15,2,f +9743,32449,15,1,f +9743,3626b,0,2,f +9743,3626bpr0342,78,1,f +9743,3626bpr0449,78,2,f +9743,3678b,15,5,f +9743,3700,70,2,f +9743,3958,15,1,f +9743,3960,15,1,f +9743,4070,19,3,f +9743,4070,0,1,f +9743,44360,15,2,f +9743,4491b,70,1,f +9743,4589,15,2,f +9743,4595,0,1,f +9743,46304,15,1,t +9743,46304,15,2,f +9743,4697b,71,1,t +9743,4697b,71,1,f +9743,4733,72,1,f +9743,4740,47,1,f +9743,4740,0,1,f +9743,48729a,0,1,t +9743,48729a,0,1,f +9743,50950,15,4,f +9743,54200,15,4,f +9743,54200,70,2,f +9743,54200,70,1,t +9743,54200,15,1,t +9743,57539,0,1,f +9743,57899,0,1,f +9743,58176,143,2,f +9743,58247,0,3,f +9743,59443,0,1,f +9743,60474,71,1,f +9743,61184,71,2,f +9743,6141,72,1,t +9743,6141,72,2,f +9743,61485,0,1,f +9743,61780,72,1,f +9743,62462,71,2,f +9743,64567,71,1,f +9743,64800,71,1,f +9743,6541,71,4,f +9743,6587,72,2,f +9743,6636,15,4,f +9743,73983,15,1,f +9743,85941,15,2,f +9743,86055,71,1,f +9743,86056,71,1,f +9743,86057,19,1,f +9743,86058,19,1,f +9743,86059,72,1,f +9743,970c00pr0074,19,1,f +9743,970x194,15,4,f +9743,973pr0450c01,19,2,f +9743,973pr1142c01,272,1,f +9743,973pr1344c01,15,2,f +9744,10201,0,1,f +9744,11062,0,1,f +9744,11458,72,2,f +9744,11599,40,1,f +9744,11599,40,1,t +9744,11620pr0001,14,1,f +9744,14210,15,1,f +9744,14226c31,0,1,f +9744,15207,0,2,f +9744,2335,0,1,f +9744,2412b,0,2,f +9744,2419,72,2,f +9744,2420,0,2,f +9744,2431,0,1,f +9744,2432,0,1,f +9744,2454a,19,10,f +9744,2454a,0,2,f +9744,2456,72,2,f +9744,2458,72,2,f +9744,2540,0,3,f +9744,2569,0,1,t +9744,2569,0,1,f +9744,2653,0,2,f +9744,2654,0,1,f +9744,2654,15,2,f +9744,2780,0,1,t +9744,2780,0,6,f +9744,2817,71,7,f +9744,2877,72,2,f +9744,2921,71,2,f +9744,3001,70,1,f +9744,3003,19,3,f +9744,3004,19,4,f +9744,3005,72,2,f +9744,30055,0,2,f +9744,30089b,0,1,f +9744,3010,19,2,f +9744,3010,2,3,f +9744,30165,0,1,f +9744,30176,2,1,f +9744,3020,72,1,f +9744,3020,28,1,f +9744,3021,0,4,f +9744,3021,72,2,f +9744,3022,0,2,f +9744,3023,15,4,f +9744,3023,71,4,f +9744,3023,19,2,f +9744,30236,72,2,f +9744,3024,19,2,t +9744,3024,19,10,f +9744,3031,4,1,f +9744,3031,0,1,f +9744,3032,70,1,f +9744,3032,71,3,f +9744,3034,0,1,f +9744,30367b,0,1,f +9744,30372,40,1,f +9744,30381,288,1,f +9744,30383,71,2,f +9744,3039,2,1,f +9744,3040b,19,4,f +9744,30414,72,2,f +9744,30526,71,3,f +9744,3068b,0,16,f +9744,3068b,15,1,f +9744,3068bpr0137,15,1,f +9744,3068bpr0201,15,1,f +9744,3069b,28,14,f +9744,3069bpr0030,15,1,f +9744,32000,72,3,f +9744,32000,71,1,f +9744,32018,72,3,f +9744,32062,0,1,f +9744,32523,72,1,f +9744,3298,0,3,f +9744,3456,71,1,f +9744,3623,72,4,f +9744,3626bpr0966,4,1,f +9744,3626cpr1076,78,1,f +9744,3626cpr1077,78,1,f +9744,3626cpr1078,320,1,f +9744,3626cpr1079,71,1,f +9744,3666,19,10,f +9744,3673,71,1,t +9744,3673,71,2,f +9744,3679,71,2,f +9744,3680,0,2,f +9744,3700,0,8,f +9744,3701,70,1,f +9744,3705,0,1,t +9744,3705,0,1,f +9744,3710,19,5,f +9744,3710,2,2,f +9744,3710,71,9,f +9744,3747b,72,3,f +9744,3794b,2,3,f +9744,3794b,0,1,f +9744,3794b,72,3,f +9744,3794b,19,2,f +9744,3795,0,1,f +9744,3795,71,5,f +9744,3941,70,1,f +9744,3958,72,1,f +9744,3958,71,1,f +9744,4079b,288,2,f +9744,4085c,0,4,f +9744,41531,71,2,f +9744,4286,2,4,f +9744,43713,72,2,f +9744,43898,0,2,f +9744,4460b,19,3,f +9744,44676,0,2,f +9744,44728,4,1,f +9744,4533,72,1,f +9744,4599b,0,1,f +9744,4599b,0,1,t +9744,46667,0,2,f +9744,4740,2,1,f +9744,48336,0,2,f +9744,4865b,0,3,f +9744,48729b,71,1,f +9744,48729b,71,1,t +9744,50231,288,1,f +9744,52107,0,1,f +9744,54200,320,2,t +9744,54200,0,2,f +9744,54200,0,1,t +9744,54200,320,4,f +9744,54383,0,2,f +9744,54384,0,2,f +9744,57895,41,9,f +9744,59443,4,6,f +9744,59900,36,3,f +9744,59900,46,2,f +9744,6020,0,2,f +9744,6037288,9999,1,f +9744,60477,0,2,f +9744,60478,71,2,f +9744,60478,0,4,f +9744,60596,0,14,f +9744,60616a,41,2,f +9744,60623,2,3,f +9744,6091,320,2,f +9744,61184,71,2,f +9744,61409,0,4,f +9744,6141,36,17,f +9744,6141,71,18,f +9744,6141,71,1,t +9744,6141,36,2,t +9744,6179,15,1,f +9744,64798,72,1,f +9744,76005stk01,9999,1,t +9744,87083,72,3,f +9744,87087,15,6,f +9744,87087,71,10,f +9744,87552,0,6,f +9744,87580,72,1,f +9744,87620,0,2,f +9744,90202,0,1,f +9744,90981,15,1,f +9744,92099,72,1,f +9744,92107,72,1,f +9744,92280,0,2,f +9744,92410,71,1,f +9744,92438,71,1,f +9744,92593,72,6,f +9744,92593,320,2,f +9744,93274,0,1,f +9744,95199,72,1,f +9744,96874,25,1,t +9744,970c00,320,1,f +9744,970c00,379,1,f +9744,970c00,272,1,f +9744,970c00,1,1,f +9744,970c00pr0419,71,1,f +9744,973pr2047c01,1,1,f +9744,973pr2174c01,272,1,f +9744,973pr2175c01,379,1,f +9744,973pr2176c01,320,1,f +9744,973pr2177c01,2,1,f +9744,98283,28,13,f +9744,99780,72,8,f +9744,99781,71,2,f +9745,2456,14,2,f +9745,2456,4,2,f +9745,3001,15,6,f +9745,3001,4,6,f +9745,3001,8,4,f +9745,3001,2,4,f +9745,3001,1,6,f +9745,3001,0,4,f +9745,3001,14,6,f +9745,3001p08,2,1,f +9745,3001p08,14,1,f +9745,3002,4,4,f +9745,3002,1,4,f +9745,3002,2,2,f +9745,3002,0,2,f +9745,3002,8,2,f +9745,3002,15,4,f +9745,3002,14,4,f +9745,3003,2,6,f +9745,3003,15,8,f +9745,3003,0,6,f +9745,3003,14,8,f +9745,3003,1,8,f +9745,3003,41,2,f +9745,3003,34,2,f +9745,3003,8,4,f +9745,3003,4,8,f +9745,3003pe2,15,2,f +9745,3003pe2,4,2,f +9745,3004,14,6,f +9745,3004,15,6,f +9745,3004,4,6,f +9745,3004,8,2,f +9745,3004,0,2,f +9745,3004,2,4,f +9745,3004,1,4,f +9745,3004p0a,14,1,f +9745,3005pe1,2,2,f +9745,3005pe1,8,2,f +9745,3007,4,2,f +9745,3008,14,2,f +9745,3008,4,2,f +9745,3009,14,4,f +9745,3009,4,4,f +9745,3010,14,4,f +9745,3010,4,6,f +9745,3010,2,2,f +9745,3010,0,2,f +9745,3010,8,2,f +9745,3010,1,4,f +9745,3010,15,6,f +9745,3065,34,2,f +9745,3065,41,2,f +9745,73590c02a,0,2,f +9746,2460,71,1,f +9746,2508,15,1,f +9746,3021,15,1,f +9746,3023,33,1,t +9746,3023,33,1,f +9746,30602,40,1,f +9746,3839b,0,1,f +9746,4617b,0,1,f +9749,79790,89,1,f +9752,2496,0,2,f +9752,2496,0,1,t +9752,3002,71,1,f +9752,3298,71,2,f +9752,3795,2,1,f +9752,42511,1,1,f +9752,46303,71,1,f +9752,6187,0,1,f +9752,87079,71,1,f +9753,3626bpr0495,14,1,f +9753,3678bpr0002a,70,1,f +9753,40234,71,1,f +9753,4332,70,1,f +9753,59363,70,1,f +9753,973pr0410c01,19,1,f +9754,2412b,3,4,f +9754,2420,7,4,f +9754,2420,3,4,f +9754,2654,0,1,f +9754,2780,0,1,t +9754,2780,0,46,f +9754,2819,7,1,f +9754,2825,7,2,f +9754,2825,0,6,f +9754,2850a,47,6,f +9754,2851,14,6,f +9754,2852,7,6,f +9754,2853,7,2,f +9754,2854,8,2,f +9754,2905,0,3,f +9754,3021,7,1,f +9754,3022,7,4,f +9754,3022,0,2,f +9754,3024,7,2,f +9754,3031,0,1,f +9754,3068b,3,4,f +9754,32000,0,4,f +9754,32001,7,1,f +9754,32002,8,6,f +9754,32002,8,1,t +9754,32013,0,14,f +9754,32014,0,4,f +9754,32015,0,4,f +9754,32016,0,10,f +9754,32017,0,4,f +9754,32018,0,6,f +9754,32018,7,2,f +9754,32034,3,2,f +9754,32039,0,8,f +9754,32056,0,4,f +9754,32056,1,2,f +9754,32062,0,12,f +9754,32063,7,2,f +9754,32068,0,1,f +9754,32068,7,2,f +9754,32069,0,2,f +9754,32073,0,7,f +9754,32077,80,4,f +9754,32078,0,4,f +9754,32123b,7,30,f +9754,32123b,7,1,t +9754,32132,0,1,f +9754,3460,7,2,f +9754,3460,0,4,f +9754,3623,0,2,f +9754,3647,7,1,t +9754,3647,7,1,f +9754,3650c,7,1,f +9754,3666,0,2,f +9754,3666,7,4,f +9754,3700,7,7,f +9754,3701,7,1,f +9754,3701,0,2,f +9754,3702,7,2,f +9754,3705,0,7,f +9754,3706,0,9,f +9754,3707,0,5,f +9754,3708,0,3,f +9754,3709,0,4,f +9754,3710,0,4,f +9754,3710,7,2,f +9754,3713,7,1,t +9754,3713,7,12,f +9754,3737,0,4,f +9754,3738,0,2,f +9754,3749,7,12,f +9754,3832,0,1,f +9754,3894,7,3,f +9754,3894,0,3,f +9754,3895,7,2,f +9754,3941,0,1,f +9754,4032a,0,2,f +9754,4162,0,1,f +9754,4275b,3,4,f +9754,4519,0,11,f +9754,4531,3,4,f +9754,6536,0,15,f +9754,6538b,1,2,f +9754,6538b,7,3,f +9754,6541,7,4,f +9754,6542a,8,1,f +9754,6558,0,12,f +9754,6573,8,1,f +9754,6575,7,2,f +9754,6587,8,9,f +9754,6589,7,9,f +9754,6632,0,14,f +9754,6632,7,2,f +9754,73129,7,2,f +9754,75535,0,7,f +9754,75535,3,1,f +9754,75c07,8,2,f +9754,75c11,8,2,f +9754,75c12,8,2,f +9754,75c16,8,2,f +9754,75c17,8,1,f +9754,76138,8,1,f +9754,78c02,0,2,f +9754,78c04,0,2,f +9754,78c09,0,1,f +9754,78c14,0,2,f +9754,78c15,0,2,f +9754,8428cd,9999,1,f +9754,9244,7,1,f +9756,2420,14,2,f +9756,2436,0,1,f +9756,2444,0,4,f +9756,2453a,7,1,f +9756,2711,14,2,f +9756,2712,7,2,f +9756,2719,7,3,f +9756,2793c02,14,3,f +9756,2797c03,14,1,f +9756,2814,14,1,f +9756,2825,7,8,f +9756,2825,14,14,f +9756,3001,7,1,f +9756,3004,14,5,f +9756,3005,14,2,f +9756,3005,0,4,f +9756,3005,7,2,f +9756,3009,0,1,f +9756,3009,14,1,f +9756,3021,14,2,f +9756,3022,14,6,f +9756,3022,0,1,f +9756,3023,14,21,f +9756,3023,7,2,f +9756,3023,0,5,f +9756,3024,14,4,f +9756,3024,7,4,f +9756,3031,0,2,f +9756,3032,14,1,f +9756,3034,14,4,f +9756,3035,14,4,f +9756,3040b,14,4,f +9756,3040b,0,4,f +9756,3069b,0,9,f +9756,3070b,0,2,f +9756,3403,0,1,f +9756,3404,0,1,f +9756,3460,14,12,f +9756,3622,14,2,f +9756,3623,14,8,f +9756,3623,7,1,f +9756,3647,7,4,f +9756,3648a,7,2,f +9756,3650a,7,4,f +9756,3651,7,8,f +9756,3665,0,4,f +9756,3665,7,2,f +9756,3666,14,13,f +9756,3666,0,1,f +9756,3673,7,8,f +9756,3700,14,19,f +9756,3700,7,2,f +9756,3701,0,2,f +9756,3701,14,23,f +9756,3701,7,4,f +9756,3702,14,14,f +9756,3702,7,1,f +9756,3702,0,2,f +9756,3703,14,10,f +9756,3704,0,4,f +9756,3705,0,12,f +9756,3706,0,16,f +9756,3707,0,7,f +9756,3708,0,11,f +9756,3709,0,3,f +9756,3709,14,5,f +9756,3710,14,14,f +9756,3710,0,6,f +9756,3710,7,3,f +9756,3713,7,37,f +9756,3736,7,4,f +9756,3737,0,4,f +9756,3737b,0,1,f +9756,3738,14,3,f +9756,3739,14,2,f +9756,3740,0,2,f +9756,3743,7,1,f +9756,3749,7,24,f +9756,3794a,0,3,f +9756,3795,14,3,f +9756,3795,0,1,f +9756,3832,14,2,f +9756,3894,7,2,f +9756,3894,14,13,f +9756,3894,0,1,f +9756,3895,7,1,f +9756,3895,14,16,f +9756,3941,0,1,f +9756,3941,46,1,f +9756,3958,14,1,f +9756,4019,7,2,f +9756,4032a,14,1,f +9756,4143,7,15,f +9756,4150,14,1,f +9756,4261,7,2,f +9756,4263,14,2,f +9756,4265a,7,54,f +9756,4266,14,2,f +9756,4267,0,2,f +9756,4273b,7,4,f +9756,4274,7,2,f +9756,4275b,0,2,f +9756,4276b,0,2,f +9756,4459,0,70,f +9756,4460a,0,2,f +9756,4519,0,2,f +9756,4697a,7,3,f +9756,4698,7,2,f +9756,4700,14,1,f +9756,4716,0,4,f +9756,5102c03,7,3,f +9756,5102c05,7,1,f +9756,5102c15,0,2,f +9756,5102c20,0,2,f +9756,5102c23,0,1,f +9756,5102c25,0,1,f +9756,5102c25,7,1,f +9756,5102c40,0,1,f +9756,5102c42,0,1,f +9756,73090a,0,1,f +9756,75215,7,3,f +9756,9244,7,2,f +9757,3001,1,1,f +9757,3003,4,2,f +9757,3003,1,1,f +9757,3003pe2,4,1,f +9757,3004,4,2,f +9757,3020,4,2,f +9757,3021,1,3,f +9757,3040b,4,4,f +9757,3298,1,3,f +9757,3641,0,4,f +9757,3679,7,1,f +9757,3680,4,1,f +9757,3741,2,1,f +9757,3742,14,1,t +9757,3742,14,3,f +9757,3747b,1,1,f +9757,3795,4,2,f +9757,4600,0,2,f +9757,4624,15,4,f +9757,6141,15,5,f +9759,45474,35,4,f +9759,45481,46,1,f +9759,46281,46,9,f +9759,46281,45,2,f +9759,46281,57,9,f +9759,46296,45,4,f +9759,clikits004,57,6,f +9759,clikits004,46,7,f +9759,clikits005,57,7,f +9759,clikits005,45,2,f +9759,clikits005,46,8,f +9759,clikits011,35,1,f +9759,clikits011,57,1,f +9759,clikits012,47,2,f +9759,clikits018,57,2,f +9759,clikits021,57,1,f +9759,clikits025,57,2,f +9759,clikits028,45,4,f +9759,clikits033,35,5,f +9759,clikits034,100,3,f +9759,clikits034,46,2,f +9759,clikits035,46,2,f +9759,clikits036,100,5,f +9759,clikits038,45,5,f +9759,clikits040,57,2,f +9759,clikits065,47,2,f +9759,clikits067,47,1,f +9759,clikits070,47,1,f +9759,clikits071,47,1,f +9759,clikits072,35,2,f +9759,clikits073,57,2,f +9759,clikits074,47,1,f +9759,clikits075,46,5,f +9759,clikits076,25,2,f +9760,2431,4,3,f +9760,2456,0,2,f +9760,2488,0,1,f +9760,2570,8,2,f +9760,2586px5,7,1,f +9760,2921,4,1,f +9760,3004,0,1,f +9760,3020,8,1,f +9760,3022,1,1,f +9760,3023,0,3,f +9760,3031,0,1,f +9760,30359a,8,2,f +9760,3062b,6,2,f +9760,3622,8,2,f +9760,3626bpx72,14,1,f +9760,3626bpx84,14,1,f +9760,3660,8,4,f +9760,3710,6,1,f +9760,3847,8,1,f +9760,3849,8,1,f +9760,3896,0,1,f +9760,4070,4,1,f +9760,4488,7,2,f +9760,4489,6,2,f +9760,4493c01pb02,0,1,f +9760,4495b,4,1,f +9760,4498,6,1,f +9760,6122,0,1,f +9760,6125,4,1,f +9760,87695,15,2,f +9760,87696,15,1,t +9760,970c00,0,1,f +9760,970x021,0,1,f +9760,973px119c01,0,1,f +9760,973px137c01,6,1,f +9766,2339,0,12,f +9766,2345,0,4,f +9766,2357,0,1,f +9766,2417,2,14,f +9766,2431,7,2,f +9766,2436,0,3,f +9766,2436,7,2,f +9766,2453a,7,3,f +9766,2454a,7,1,f +9766,2456,0,1,f +9766,2462,7,4,f +9766,2488,2,1,f +9766,2543,2,1,f +9766,2549,6,1,f +9766,3003,7,2,f +9766,3004,15,1,t +9766,3004,7,8,f +9766,3004,0,7,f +9766,3005,7,15,f +9766,3005,0,4,f +9766,3009,7,4,f +9766,3010,0,2,f +9766,3010,7,6,f +9766,3023,15,1,t +9766,3023,7,3,f +9766,3023,0,4,f +9766,3024,7,2,f +9766,3033,7,1,f +9766,3039,0,2,f +9766,3040b,7,5,f +9766,3040b,0,9,f +9766,3069b,7,1,f +9766,3307,7,1,f +9766,3308,7,1,f +9766,3455,7,2,f +9766,3455,0,1,f +9766,3460,0,3,f +9766,3622,0,1,f +9766,3623,0,13,f +9766,3626apr0001,14,4,f +9766,3626apx2,14,1,f +9766,3633,0,1,f +9766,3659,7,1,f +9766,3666,7,1,f +9766,3710,7,4,f +9766,3710,0,1,f +9766,3830,7,4,f +9766,3831,7,4,f +9766,3846p48,6,1,f +9766,3847,8,1,f +9766,3857pb02,2,1,f +9766,3957a,0,1,f +9766,3958,7,1,f +9766,4070,7,1,f +9766,4207,6,1,f +9766,4444,7,1,f +9766,4444,0,2,f +9766,4491a,4,1,f +9766,4495b,4,1,f +9766,4497,6,1,f +9766,4498,6,3,f +9766,4499,6,3,f +9766,4506,2,2,f +9766,4506,6,2,f +9766,4738b,6,1,f +9766,4739b,6,1,f +9766,6141,14,2,f +9766,75998pr0007,15,1,f +9766,87692,4,1,f +9766,87692,14,1,f +9766,87693,4,1,f +9766,87693,14,1,t +9766,87694,14,1,f +9766,87694,4,1,t +9766,970c00,2,5,f +9766,973p46c01,2,1,f +9766,973p48c01,2,1,f +9766,973p49c01,2,1,f +9766,973p4qc01,15,1,f +9766,973p50c01,2,1,f +9767,11477,72,1,f +9767,13564,15,2,f +9767,13564,15,1,t +9767,14417,72,2,f +9767,14418,71,1,f +9767,14704,71,1,f +9767,15208,72,2,f +9767,15573,72,6,f +9767,18868a,41,1,f +9767,19981pr0035,41,1,f +9767,23192pb01,15,1,f +9767,3021,72,2,f +9767,3022,72,2,f +9767,3023,72,5,f +9767,3024,72,2,f +9767,3024,72,1,t +9767,3070b,72,1,t +9767,3070b,72,1,f +9767,3941,41,1,f +9767,4032a,72,1,f +9767,54200,72,5,f +9767,54200,72,1,t +9767,60897,72,2,f +9767,6141,15,1,t +9767,6141,36,1,t +9767,6141,15,4,f +9767,6141,72,10,f +9767,6141,36,2,f +9767,6141,72,1,t +9767,87087,72,2,f +9767,92946,72,6,f +9767,970c00,15,1,f +9767,973pr3077c01,15,1,f +9768,30103,0,1,f +9768,30153,36,1,f +9768,30238,1000,1,f +9768,30385,34,1,f +9768,3626cpr0895,15,1,f +9768,5000644stko1,9999,1,t +9768,6260,15,1,f +9768,6265,15,2,f +9768,6266,15,2,f +9768,90981,15,1,f +9770,3001a,1,4,f +9770,3001a,15,10,f +9770,3001a,47,8,f +9770,3001a,4,4,f +9770,3001a,14,2,f +9770,3003,15,2,f +9770,3003,1,9,f +9770,3003,0,3,f +9770,3003,4,3,f +9770,3003,14,8,f +9770,3004,15,3,f +9770,3004,1,2,f +9770,3004,4,7,f +9770,3004p60,15,2,f +9770,3009,4,4,f +9770,3009,47,1,f +9770,3009pt1,15,1,f +9770,3010,1,3,f +9770,3010,14,3,f +9770,3010,15,1,f +9770,3010,47,2,f +9770,3021,0,4,f +9770,3022,0,4,f +9770,3022,4,5,f +9770,3027,7,1,f +9770,3027,4,1,f +9770,3028,4,1,f +9770,3030,1,1,f +9770,3030,14,1,f +9770,3031,14,4,f +9770,3037,14,2,f +9770,3037,1,2,f +9770,3038,4,2,f +9770,3039,4,3,f +9770,3040a,1,4,f +9770,3040a,4,4,f +9770,3062a,1,2,f +9770,3062a,14,4,f +9770,3135c04,4,1,f +9770,3483,0,12,f +9770,3613,15,2,f +9770,3613,1,4,f +9770,3613,4,4,f +9770,3613,0,2,f +9770,3614a,14,12,f +9770,3660,1,2,f +9770,3660,4,8,f +9770,685p01,14,3,f +9770,685px4,14,3,f +9770,7039,4,12,f +9770,7049b,0,6,f +9770,792c03,0,1,f +9770,792c03,1,2,f +9770,792c03,15,1,f +9770,792c03,4,2,f +9770,x196,0,2,f +9770,x197,6,1,f +9770,x407,0,1,f +9770,x407,1,2,f +9771,2540,19,4,f +9771,2780,0,1,t +9771,2780,0,4,f +9771,3020,19,4,f +9771,3023,0,3,f +9771,3023,70,4,f +9771,3023,19,8,f +9771,3039,70,1,f +9771,3660,19,2,f +9771,3701,19,2,f +9771,3794a,72,3,f +9771,49668,19,2,f +9771,49668,15,8,f +9771,6019,19,4,f +9771,6141,15,1,t +9771,6141,25,2,f +9771,6141,25,1,t +9771,6141,15,2,f +9771,6541,19,4,f +9772,2337,46,1,f +9772,2357,0,2,f +9772,2420,0,4,f +9772,2446,0,1,f +9772,2447,0,1,f +9772,3001,0,1,f +9772,3003,0,1,f +9772,3004,0,8,f +9772,3004p05,0,2,f +9772,3005,0,2,f +9772,3010,0,2,f +9772,3020,0,6,f +9772,3021,0,4,f +9772,3022,0,4,f +9772,3023,0,25,f +9772,3024,36,4,f +9772,3024,0,16,f +9772,3031,0,1,f +9772,3034,0,1,f +9772,3036,0,1,f +9772,3039,0,4,f +9772,3045,0,2,f +9772,3062b,0,12,f +9772,3068b,0,4,f +9772,3069bp05,14,2,f +9772,3069bp12,14,2,f +9772,3069bp25,14,1,f +9772,3176,0,4,f +9772,3298,0,1,f +9772,3460,0,6,f +9772,3460,14,2,f +9772,3482,0,4,f +9772,3622,0,4,f +9772,3623,0,2,f +9772,3626apr0001,14,1,f +9772,3634,0,4,f +9772,3660,0,6,f +9772,3666,0,5,f +9772,3666,14,2,f +9772,3700,14,4,f +9772,3701,0,2,f +9772,3705,0,1,f +9772,3710,0,3,f +9772,3713,7,2,f +9772,3749,7,4,f +9772,3795,0,5,f +9772,3795,14,1,f +9772,3832,14,1,f +9772,3832,0,3,f +9772,3838,0,1,f +9772,3839b,0,1,f +9772,3853,0,2,f +9772,3856,0,4,f +9772,3894,0,1,f +9772,3900,0,1,f +9772,3933a,0,1,f +9772,3934a,0,1,f +9772,3935,0,1,f +9772,3936,0,1,f +9772,3937,0,4,f +9772,3938,0,4,f +9772,3941,14,2,f +9772,3957a,0,4,f +9772,3959,0,1,f +9772,4006,0,1,f +9772,4070,0,4,f +9772,4070,14,4,f +9772,4085b,14,4,f +9772,4286,0,8,f +9772,4287,0,4,f +9772,4315,0,1,f +9772,4474,46,1,f +9772,4476b,0,2,f +9772,4477,14,2,f +9772,4477,0,2,f +9772,4522,0,1,f +9772,4589,36,4,f +9772,4730,0,3,f +9772,4740,36,2,f +9772,4858p01,0,1,f +9772,4864a,0,4,f +9772,4865a,0,4,f +9772,6141,36,12,f +9772,73590c01b,14,4,f +9772,73983,0,4,f +9772,970c00,0,1,f +9772,973p52c01,0,1,f +9774,3001apb05,15,3,f +9774,3020,15,2,f +9774,3021,15,3,f +9774,3021,7,1,f +9774,3022,4,5,f +9774,3022,47,1,f +9774,3022,15,3,f +9774,3023,15,4,f +9774,3023,47,1,f +9774,3023,7,1,f +9774,3023,4,1,f +9774,3024,15,2,f +9774,3034,7,1,f +9774,3034,15,4,f +9774,3040b,15,2,f +9774,3139,0,3,f +9774,3464,4,3,f +9774,3475b,7,2,f +9774,3585,7,1,f +9774,3586,7,1,f +9774,3623,15,3,f +9774,3665,15,2,f +9774,3794a,15,3,f +9774,3794a,4,1,f +9774,3795,4,1,f +9774,3795,7,4,f +9774,3795,15,2,f +9774,8,7,3,f +9775,kraataund,0,3,f +9776,98721,0,1,f +9778,32034,0,1,f +9778,32062,0,1,f +9778,32073,0,1,f +9778,32123b,7,2,f +9778,32174,0,4,f +9778,32174,1,2,f +9778,32269,7,1,f +9778,32270,7,3,f +9778,32475,1,2,f +9778,32489,1,1,f +9778,32553,7,1,f +9778,32554,54,1,f +9778,3706,0,1,f +9778,3713,7,2,f +9778,3749,7,2,f +9778,43093,0,1,f +9778,43557,73,4,f +9778,43558,179,1,f +9778,43559,179,2,f +9778,43856,1,1,f +9778,44031,179,2,f +9778,4519,0,4,f +9778,6041,135,2,f +9778,6587,8,2,f +9779,184,4,1,f +9779,2352,4,1,f +9779,2456,14,2,f +9779,2577,1,4,f +9779,3001,15,8,f +9779,3001,4,10,f +9779,3001,0,4,f +9779,3001,1,8,f +9779,3001,14,8,f +9779,3001p11,4,1,f +9779,3001pr1,14,1,f +9779,3002,4,4,f +9779,3002,1,4,f +9779,3002,15,4,f +9779,3002,0,2,f +9779,3002,14,4,f +9779,3003,4,12,f +9779,3003,15,9,f +9779,3003,14,9,f +9779,3003,1,8,f +9779,3003,0,6,f +9779,3003pe1,14,2,f +9779,3006,4,2,f +9779,3185,15,4,f +9779,3471,2,1,f +9779,3483,0,4,f +9779,4130,4,1,f +9779,4131,15,1,f +9779,4132,4,2,f +9779,4133,15,2,f +9779,4180c02,0,2,f +9779,4727,2,2,f +9779,4728,15,2,f +9779,4743,4,1,f +9779,4744,4,1,f +9779,4744pb03,4,1,f +9779,4744pb04,1,1,f +9779,6007,8,1,f +9779,6840c01px1,9999,1,f +9784,2780,0,5,f +9784,32062,4,1,f +9784,32551,135,2,f +9784,3673,71,2,f +9784,43093,1,4,f +9784,4519,71,1,f +9784,47306,272,1,f +9784,47312,72,1,f +9784,47313,57,1,f +9784,50898,0,2,f +9784,50923,72,2,f +9784,53543,272,2,f +9784,53563,272,2,f +9784,55615,71,1,f +9784,57560,135,1,f +9784,57563,272,2,f +9784,60176,0,3,f +9784,60915pat0001,272,1,f +9784,60918,0,1,f +9784,60919pat01,148,2,f +9784,60919pat01,272,2,f +9784,60929,41,4,f +9784,60933,135,1,f +9784,60934,57,2,f +9784,61053,0,2,f +9787,3004,4,1,f +9787,3004,15,1,f +9787,3004,0,1,f +9787,3004pr20,15,1,f +9787,3010,4,1,f +9787,3021,0,2,f +9787,3021,7,1,f +9787,3022,15,1,f +9787,3034,15,1,f +9787,3039,15,1,f +9787,3039,4,2,f +9787,3039,0,1,f +9787,3660,0,2,f +9787,3665,4,1,f +9787,3849,15,2,f +9787,4081b,14,2,f +9789,2446,7,1,f +9789,3626bpr0001,14,1,f +9789,769,334,1,t +9789,769,334,1,f +9789,970c00pb027,7,1,f +9789,973px335c01,7,1,f +9790,3004,70,3,f +9790,3004,14,3,f +9790,3004,25,4,f +9790,3021,25,2,f +9790,3022,14,1,f +9790,3039,14,2,f +9790,3039,25,1,f +9790,3660,14,1,f +9790,3678b,70,1,f +9790,49668,191,4,f +9790,6141,0,4,f +9790,85984,14,2,f +9790,87087,14,4,f +9790,98138pr0008,15,4,f +9791,3058b,0,1,f +9791,3488,0,4,f +9792,2343,297,2,f +9792,2357,15,4,f +9792,30153,36,2,f +9792,30153,42,2,f +9792,30153,33,2,f +9792,30153,182,2,f +9792,3020,0,1,f +9792,3023,70,8,f +9792,3023,0,2,f +9792,3032,19,4,f +9792,3035,19,1,f +9792,30367b,297,1,f +9792,30385,182,2,f +9792,30385,33,2,f +9792,30385,42,2,f +9792,30385,36,2,f +9792,3039,15,4,f +9792,3040b,19,8,f +9792,3045,14,2,f +9792,3045,25,2,f +9792,3045,4,2,f +9792,3045,1,2,f +9792,3062b,15,12,f +9792,3069b,4,2,f +9792,3069b,1,2,f +9792,3069b,0,3,f +9792,3069b,14,2,f +9792,3069b,25,2,f +9792,3069b,27,2,f +9792,3307,19,4,f +9792,3308,15,2,f +9792,3460,19,2,f +9792,3794b,28,5,f +9792,3795,70,4,f +9792,4006,0,1,f +9792,4150,297,60,f +9792,41539,0,1,f +9792,4477,15,2,f +9792,59349,15,2,f +9792,59900,1,2,f +9792,59900,25,2,f +9792,59900,4,2,f +9792,59900,14,2,f +9792,64776pat0001,0,1,f +9792,6932,25,1,f +9792,6932,1,1,f +9792,6932,4,1,f +9792,6932,14,1,f +9792,85863pr0035,14,1,f +9792,85863pr0036,25,1,f +9792,85863pr0037,4,1,f +9792,85863pr0038,1,1,f +9792,85863pr0039,15,1,f +9792,87079pr0005,15,1,f +9792,87580,70,12,f +9792,87580,0,2,f +9792,88293,297,4,f +9793,11153,4,2,f +9793,11211,19,6,f +9793,11214,72,2,f +9793,11291,4,2,f +9793,11458,72,2,f +9793,11477,15,6,f +9793,11477,4,2,f +9793,2412b,0,4,f +9793,2420,19,4,f +9793,2431,15,4,f +9793,2431,4,4,f +9793,2450,4,2,f +9793,2450,0,2,f +9793,2540,72,1,f +9793,2654,0,4,f +9793,2780,0,4,f +9793,2780,0,1,t +9793,3002,19,1,f +9793,3004,4,4,f +9793,3010,4,2,f +9793,3020,4,5,f +9793,3020,19,2,f +9793,3020,0,3,f +9793,3021,0,7,f +9793,3022,19,5,f +9793,3023,19,8,f +9793,3023,47,2,f +9793,3023,4,6,f +9793,3024,182,4,f +9793,3024,182,1,t +9793,3034,72,1,f +9793,3036,4,1,f +9793,30383,15,4,f +9793,3040b,4,2,f +9793,30414,72,2,f +9793,3065,40,3,f +9793,30663,0,1,f +9793,3069b,4,6,f +9793,3069b,15,4,f +9793,3070b,4,1,t +9793,3070b,4,10,f +9793,32018,71,2,f +9793,32028,4,2,f +9793,32028,15,4,f +9793,32123b,71,4,f +9793,32123b,71,1,t +9793,32124,0,4,f +9793,3460,19,4,f +9793,3622,4,2,f +9793,3623,0,10,f +9793,3660,4,2,f +9793,3665,4,2,f +9793,3665,0,2,f +9793,3665,19,2,f +9793,3666,0,8,f +9793,3700,71,8,f +9793,3710,4,7,f +9793,3710,0,2,f +9793,3747b,4,2,f +9793,3794b,4,6,f +9793,3795,19,2,f +9793,3795,0,5,f +9793,3795,4,3,f +9793,4081b,0,2,f +9793,41669,36,2,f +9793,41669,42,2,f +9793,41769,4,4,f +9793,41770,4,4,f +9793,4282,0,2,f +9793,4286,4,4,f +9793,43093,1,2,f +9793,43710,4,1,f +9793,43711,4,1,f +9793,43857,4,2,f +9793,44301a,72,2,f +9793,44302a,15,6,f +9793,4477,0,1,f +9793,4477,4,4,f +9793,47455,0,3,f +9793,48169,72,3,f +9793,48171,72,3,f +9793,48336,0,2,f +9793,48729a,0,1,t +9793,48729a,0,1,f +9793,49668,15,8,f +9793,54200,182,1,t +9793,54200,4,1,t +9793,54200,4,12,f +9793,54200,42,1,t +9793,54200,182,2,f +9793,54200,42,2,f +9793,55982,0,4,f +9793,57783,40,2,f +9793,58090,0,4,f +9793,60478,71,2,f +9793,6091,4,8,f +9793,61409,0,2,f +9793,6141,0,8,f +9793,6141,15,6,f +9793,6141,15,1,t +9793,6141,41,2,f +9793,6141,41,1,t +9793,6141,0,1,t +9793,6191,4,2,f +9793,62701,135,4,f +9793,63868,71,4,f +9793,6541,0,4,f +9793,6636,15,2,f +9793,73983,4,4,f +9793,87083,72,4,f +9793,87087,4,12,f +9793,92946,4,4,f +9793,99780,0,2,f +9793,99781,71,2,f +9794,122c01,0,5,f +9794,3001,15,1,f +9794,3002,15,1,f +9794,3003,14,5,f +9794,3005,15,2,f +9794,3008,15,4,f +9794,3010,14,2,f +9794,3010,15,12,f +9794,3020,0,1,f +9794,3021,1,6,f +9794,3022,0,3,f +9794,3022,1,2,f +9794,3023,15,7,f +9794,3023,1,2,f +9794,3024,1,2,f +9794,3024,46,2,f +9794,3029,1,1,f +9794,3031,1,2,f +9794,3062b,14,2,f +9794,3068b,14,2,f +9794,3068b,0,2,f +9794,3069b,0,1,f +9794,3070b,15,2,f +9794,3176,0,1,f +9794,3460,1,4,f +9794,3622,15,4,f +9794,3626apr0001,14,1,f +9794,3666,1,2,f +9794,3709,1,2,f +9794,3710,1,10,f +9794,3710,0,1,f +9794,3749,7,1,f +9794,3795,0,1,f +9794,3821,15,1,f +9794,3822,15,1,f +9794,3829c01,1,1,f +9794,3832,0,3,f +9794,3901,0,1,f +9794,3937,1,1,f +9794,3938,1,1,f +9794,3957a,14,2,f +9794,4070,15,2,f +9794,4081a,0,2,f +9794,4084,0,10,f +9794,4085a,15,2,f +9794,4162,1,2,f +9794,4175,1,1,f +9794,4211,1,1,f +9794,4213,1,5,f +9794,4215a,15,8,f +9794,4275a,0,2,f +9794,4315,1,1,f +9794,4531,0,2,f +9794,4594,47,1,f +9794,4625,1,4,f +9794,6141,36,2,f +9794,970c00,4,1,f +9794,973c02,4,1,f +9795,3002,1,1,f +9795,3004,1,1,f +9795,3020,1,3,f +9795,3021,1,1,f +9795,3034,1,3,f +9795,3039,1,4,f +9795,3039,47,1,f +9795,3040b,1,1,f +9795,3139,0,2,f +9795,3464,4,2,f +9795,3480,0,1,f +9795,3481,1,1,f +9795,3624,4,1,f +9795,3626apr0001,14,1,f +9795,3660,1,1,f +9795,3794a,1,2,f +9795,3795,1,1,f +9795,8,1,2,f +9795,970c00,15,1,f +9795,973c01,15,1,f +9796,2717,1,1,f +9796,2730,0,4,f +9796,2744,14,2,f +9796,2780,0,20,f +9796,2823,14,2,f +9796,2825,14,2,f +9796,2825,0,6,f +9796,2853,7,4,f +9796,2905,14,2,f +9796,3021,7,4,f +9796,3023,0,5,f +9796,3023,14,6,f +9796,3069b,7,4,f +9796,32009,14,2,f +9796,32009,0,4,f +9796,32013,0,2,f +9796,32017,7,8,f +9796,32017,0,6,f +9796,32018,0,2,f +9796,32039,0,2,f +9796,32062,0,7,f +9796,32063,1,2,f +9796,32064b,14,2,f +9796,32065,14,4,f +9796,32068,0,2,f +9796,32068,7,2,f +9796,32069,0,2,f +9796,32073,0,1,f +9796,32123b,7,9,f +9796,32123b,7,1,t +9796,3647,7,1,f +9796,3647,7,1,t +9796,3666,14,3,f +9796,3673,7,9,f +9796,3700,0,5,f +9796,3702,14,2,f +9796,3703,0,2,f +9796,3706,0,3,f +9796,3707,0,4,f +9796,3708,0,2,f +9796,3710,0,2,f +9796,3710,7,1,f +9796,3713,7,1,t +9796,3713,7,9,f +9796,3749,7,14,f +9796,3832,7,1,f +9796,3941,46,1,f +9796,4032a,0,1,f +9796,4150,0,1,f +9796,4162,0,4,f +9796,4519,0,1,f +9796,6141,7,1,t +9796,6141,7,6,f +9796,6536,7,2,f +9796,6538b,7,1,f +9796,6558,0,4,f +9796,6579,0,4,f +9796,6580,14,4,f +9796,6587,8,4,f +9796,6589,7,2,f +9796,6629,14,2,f +9796,6630,7,1,f +9796,6632,0,4,f +9796,75535,14,3,f +9796,75535,0,2,f +9796,78c14,0,2,f +9796,tech012,9999,1,f +9797,2736,7,2,f +9797,2780,0,8,f +9797,30632,7,1,f +9797,32014,25,2,f +9797,32039,0,2,f +9797,32054,0,2,f +9797,32062,0,2,f +9797,32073,0,3,f +9797,32140,8,1,f +9797,32184,0,1,f +9797,32199,179,2,f +9797,32209,0,2,f +9797,32250,0,4,f +9797,32271,25,1,f +9797,32271,0,2,f +9797,32271,8,2,f +9797,32291,0,2,f +9797,32523,8,2,f +9797,32527,148,1,f +9797,32528,148,1,f +9797,32551,8,2,f +9797,32556,7,1,f +9797,32557,0,2,f +9797,3706,0,2,f +9797,3713,7,7,f +9797,3737,0,2,f +9797,4519,0,2,f +9797,6536,0,3,f +9797,6536,25,2,f +9797,6553,0,3,f +9797,6558,0,3,f +9797,6579,0,4,f +9797,6580,7,4,f +9797,6628,0,3,f +9797,rb00167,0,2,f +9797,rb00170,0,1,f +9798,2259stk01,9999,1,t +9798,2357,0,2,f +9798,2412b,15,1,f +9798,2431,36,1,f +9798,2431,15,1,f +9798,2476a,71,2,f +9798,2540,72,2,f +9798,2654,72,1,f +9798,2815,0,2,f +9798,30173b,0,1,f +9798,30177,1,1,f +9798,3020,4,1,f +9798,3031,0,3,f +9798,30367b,15,1,f +9798,3040b,72,2,f +9798,3048c,15,2,f +9798,32013,71,3,f +9798,32014,71,4,f +9798,32015,0,3,f +9798,32034,71,6,f +9798,32054,0,2,f +9798,32062,4,6,f +9798,32064b,72,2,f +9798,32123b,71,3,f +9798,32123b,71,1,t +9798,32184,0,1,f +9798,32316,0,2,f +9798,32556,19,1,f +9798,3622,0,2,f +9798,3626bpr0746,14,1,f +9798,3626bpr0749,15,1,f +9798,3665,0,2,f +9798,3701,4,1,f +9798,3705,0,4,f +9798,3707,0,2,f +9798,3713,4,1,t +9798,3713,4,1,f +9798,3749,19,1,f +9798,3795,72,1,f +9798,3941,0,2,f +9798,40379,15,2,f +9798,4150,0,2,f +9798,4185,72,2,f +9798,42610,71,2,f +9798,4274,1,1,t +9798,4274,1,2,f +9798,43093,1,3,f +9798,43722,15,2,f +9798,43723,15,2,f +9798,44294,71,1,f +9798,44309,0,1,f +9798,44728,0,2,f +9798,4519,71,6,f +9798,4589,15,3,f +9798,4589,71,4,f +9798,48336,15,4,f +9798,51739,15,1,f +9798,53451,15,1,t +9798,53451,15,4,f +9798,53705,134,1,f +9798,53989,15,2,f +9798,54200,85,2,f +9798,54200,85,1,t +9798,56145,0,1,f +9798,59426,72,2,f +9798,59443,0,2,f +9798,60169,72,1,f +9798,6019,15,2,f +9798,60483,72,1,f +9798,6091,0,2,f +9798,61409,72,1,f +9798,6141,85,1,f +9798,6141,85,1,t +9798,61678,0,2,f +9798,6536,15,1,f +9798,6541,0,2,f +9798,6553,72,1,f +9798,85959pat0001,36,2,f +9798,87998,0,1,f +9798,92338,297,1,f +9798,92690,297,2,f +9798,92691,15,1,f +9798,93061,15,1,t +9798,93061,15,2,f +9798,93062c01,15,2,f +9798,93763pr0003,15,1,f +9798,94352pr0004,0,1,f +9798,970c00pr0192,1,1,f +9798,973pr1717c01,1,1,f +9799,3004,4,6,f +9799,3004,14,17,f +9799,3005,14,9,f +9799,3008,14,4,f +9799,3009,14,2,f +9799,3009,4,3,f +9799,3010,14,7,f +9799,3020,4,2,f +9799,3023,14,2,f +9799,3023,4,1,f +9799,3024,46,1,f +9799,3024,7,3,f +9799,3024,36,1,f +9799,3033,0,2,f +9799,3034,0,1,f +9799,3039,4,1,f +9799,3039p34,15,1,f +9799,3040p03,15,1,f +9799,3062b,0,2,f +9799,3062b,47,6,f +9799,3069b,4,1,f +9799,3297,0,8,f +9799,3298,0,4,f +9799,3299,0,2,f +9799,3300,0,1,f +9799,3460,14,2,f +9799,3464,4,7,f +9799,3622,14,9,f +9799,3622,4,2,f +9799,3623,14,1,f +9799,3626apr0001,14,2,f +9799,3641,0,7,f +9799,3660,14,3,f +9799,3660,4,1,f +9799,3676,14,2,f +9799,3679,7,1,f +9799,3680,4,1,f +9799,3710,14,1,f +9799,3710,4,1,f +9799,3741,2,2,f +9799,3742,15,6,f +9799,3742,15,2,t +9799,3794a,7,3,f +9799,3795,4,1,f +9799,3832,14,1,f +9799,3832,0,2,f +9799,3842a,15,1,f +9799,3842a,4,1,f +9799,3842a,1,1,f +9799,3853,4,1,f +9799,3855a,47,1,f +9799,3857,7,1,f +9799,3901,6,1,f +9799,3957a,7,4,f +9799,4006,0,1,f +9799,4079,4,1,f +9799,4085a,14,2,f +9799,4215a,14,2,f +9799,4347,4,2,f +9799,4477,14,2,f +9799,4480c01,4,1,f +9799,4480c01,1,1,f +9799,4480c01,14,1,f +9799,4483,47,2,f +9799,4485,1,1,f +9799,4495b,14,2,f +9799,4495b,4,2,f +9799,4522,0,1,f +9799,47899c01,4,1,f +9799,6141,46,2,f +9799,6141,36,2,f +9799,6373stk01,9999,1,t +9799,6373stk02,9999,1,t +9799,73194c01,4,1,f +9799,8,4,1,f +9799,970c00,1,1,f +9799,970c00,0,1,f +9799,973p0ac02,0,1,f +9799,973pb0201c01,15,1,f +9800,11477,4,2,f +9800,15068pr0006,4,1,f +9800,19220,0,1,f +9800,2412b,72,1,f +9800,2431,15,1,f +9800,2441,0,1,f +9800,30028,0,4,f +9800,3021,4,1,f +9800,3022,71,2,f +9800,3023,14,1,f +9800,3023,71,1,f +9800,3024,36,1,t +9800,3024,36,2,f +9800,3062b,70,1,f +9800,3062b,14,1,f +9800,3070b,4,2,f +9800,3070b,4,1,t +9800,3622,4,2,f +9800,3623,4,2,f +9800,3626cpr1146,14,1,f +9800,3710,4,1,f +9800,3710,15,1,f +9800,3829c01,15,1,f +9800,3834,15,1,f +9800,3835,0,1,f +9800,4083,15,1,f +9800,4599b,14,1,t +9800,4599b,14,1,f +9800,60212,4,2,f +9800,60897,72,2,f +9800,6126b,182,1,f +9800,61409,4,2,f +9800,74967,71,4,f +9800,92926,2,1,f +9800,93274,15,1,f +9800,970c00pr0408,0,1,f +9800,973pr3205c01,0,1,f +9800,98138,33,1,t +9800,98138,33,2,f +9800,98138,46,2,f +9800,98138,46,1,t +9806,2357,19,8,f +9806,2362b,8,2,f +9806,2412b,378,2,f +9806,2431,378,6,f +9806,2453a,7,2,f +9806,2453a,19,5,f +9806,2454a,19,10,f +9806,2456,8,2,f +9806,2460,7,1,f +9806,2465,8,1,f +9806,2476a,8,1,f +9806,2555,7,1,f +9806,2555,7,1,t +9806,3002,8,1,f +9806,3003,7,2,f +9806,3003,19,11,f +9806,3004,7,13,f +9806,3004,19,18,f +9806,3004,378,2,f +9806,3004,6,1,f +9806,30044,7,1,f +9806,30045,0,1,f +9806,3005,34,3,f +9806,3005,36,2,f +9806,3005,7,8,f +9806,30056,19,4,f +9806,3008,19,2,f +9806,3009,19,1,f +9806,3010,19,3,f +9806,30169,8,1,f +9806,30181,7,1,f +9806,3020,7,2,f +9806,3021,7,3,f +9806,3022,7,4,f +9806,3022,0,1,f +9806,3023,7,11,f +9806,30236,0,1,f +9806,30237a,19,3,f +9806,3031,6,1,f +9806,3034,7,2,f +9806,3035,7,1,f +9806,30374,6,1,f +9806,3040b,19,6,f +9806,3044c,0,2,f +9806,30562,7,4,f +9806,30562px1,7,4,f +9806,30565,7,10,f +9806,3062b,378,17,f +9806,3062b,0,16,f +9806,3062b,19,4,f +9806,3065,52,4,f +9806,3068b,378,2,f +9806,3069b,6,1,f +9806,3069b,0,3,f +9806,3069bpr0055,15,3,f +9806,3069bpx39,33,1,f +9806,3069bpx41,15,1,f +9806,3070b,378,4,f +9806,3070b,378,1,t +9806,3070bph1,15,1,f +9806,3070bph1,15,1,t +9806,32000,7,1,f +9806,32123b,7,2,t +9806,32123b,7,2,f +9806,33009px2,4,1,f +9806,33215,378,1,f +9806,3622,0,2,f +9806,3622,7,6,f +9806,3622,8,2,f +9806,3623,0,5,f +9806,3626bpb0168,14,1,f +9806,3626bph1,14,1,f +9806,3626bpr0377,14,1,f +9806,3659,7,1,f +9806,3659,0,1,f +9806,3660,8,4,f +9806,3665,8,6,f +9806,3666,0,2,f +9806,3673,7,1,t +9806,3673,7,3,f +9806,3678apb04,2,1,f +9806,3679,7,5,f +9806,3680,0,5,f +9806,3684,19,2,f +9806,3700,8,4,f +9806,3707,0,1,f +9806,3709,0,1,f +9806,3710,0,1,f +9806,3710,7,5,f +9806,3794a,8,2,f +9806,3830,8,8,f +9806,3831,8,8,f +9806,3937,7,1,f +9806,3938,0,1,f +9806,3941,19,6,f +9806,3941,42,1,f +9806,3942c,378,2,f +9806,3959,6,2,f +9806,3960pb004,52,1,f +9806,40233,0,1,f +9806,40239,7,1,f +9806,40243,7,16,f +9806,40244,19,2,f +9806,4070,0,2,f +9806,4081b,7,4,f +9806,4085c,0,5,f +9806,4201,8,2,f +9806,4204,8,2,f +9806,4215bpx1,6,1,f +9806,4286,378,8,f +9806,4345b,0,1,f +9806,4346px7,378,1,f +9806,4460a,19,2,f +9806,4497,0,2,f +9806,4519,0,2,f +9806,4589,57,2,f +9806,4589,33,1,f +9806,4589,36,1,f +9806,4589,378,1,f +9806,4864b,19,6,f +9806,4865a,0,2,f +9806,4871,7,1,f +9806,50231,22,1,f +9806,50231,2,1,f +9806,50231px1,0,1,f +9806,6019,7,2,f +9806,6108,8,1,f +9806,6125,8,1,f +9806,6126a,57,8,f +9806,6131,2,1,f +9806,6131,0,1,f +9806,6132,7,1,f +9806,6133,8,2,f +9806,6141,0,1,t +9806,6141,0,18,f +9806,62808,60,2,f +9806,6541,19,6,f +9806,6587,8,2,f +9806,6589,7,4,f +9806,6636,0,2,f +9806,970c00,7,1,f +9806,970c00pb001,22,1,f +9806,973pb0129c01,2,1,f +9806,973px146c01,7,1,f +9806,973px149c01,22,1,f +9809,2357,8,2,f +9809,2399,7,3,f +9809,2412b,8,16,f +9809,2431ps1,8,3,f +9809,2445,7,1,f +9809,2446pb22a,7,1,f +9809,2447,46,1,t +9809,2447,46,1,f +9809,2454a,0,4,f +9809,2653,0,2,f +9809,2654,0,8,f +9809,2730,7,2,f +9809,298c02,15,1,f +9809,298c02,15,1,t +9809,3001,15,2,f +9809,3003,1,3,f +9809,3004,15,23,f +9809,3004,0,5,f +9809,3010,7,6,f +9809,3010,4,1,f +9809,30194,8,1,f +9809,3020,7,5,f +9809,3020,0,4,f +9809,3021,6,1,f +9809,3022,4,3,f +9809,3023,1,8,f +9809,3023,42,12,f +9809,3028,7,3,f +9809,30304,8,1,f +9809,3031,7,1,f +9809,3032,15,2,f +9809,3034,4,2,f +9809,3035,7,1,f +9809,30355,7,1,f +9809,30356,7,2,f +9809,30357,8,4,f +9809,30359a,0,3,f +9809,30361apr1,15,1,f +9809,30362,15,2,f +9809,30364,0,3,f +9809,30365,8,5,f +9809,30367bpr0007,15,1,f +9809,3037,7,3,f +9809,30383,19,2,f +9809,30384,40,1,f +9809,30388,1,1,f +9809,3039,7,5,f +9809,3040b,8,6,f +9809,3062b,8,12,f +9809,3068b,8,7,f +9809,3069bpr0086,7,5,f +9809,3070bpr0007,7,1,t +9809,3070bpr0007,7,1,f +9809,32028,0,2,f +9809,32059,8,2,f +9809,32064b,2,2,f +9809,32083,8,1,f +9809,3297,0,1,f +9809,3460,7,2,f +9809,3475b,8,2,f +9809,3622,0,3,f +9809,3626bp05,14,1,f +9809,3626bp35,14,1,f +9809,3660,8,7,f +9809,3665,7,16,f +9809,3666,6,2,f +9809,3679,7,1,f +9809,3680,1,1,f +9809,3705,0,1,f +9809,3710,0,8,f +9809,3730,0,2,f +9809,3731,7,1,f +9809,3747a,0,2,f +9809,3795,19,1,f +9809,3795,1,4,f +9809,3830,1,2,f +9809,3831,1,2,f +9809,3937,7,2,f +9809,3941,0,6,f +9809,3956,1,2,f +9809,3957a,0,3,f +9809,3962b,0,1,f +9809,4032a,14,1,f +9809,4070,1,7,f +9809,4079,15,1,f +9809,4083,7,2,f +9809,4085c,1,10,f +9809,4150,25,3,f +9809,4215bpx2,47,1,f +9809,4485,19,1,f +9809,4490,7,2,f +9809,4589,57,1,f +9809,4599a,7,2,f +9809,4740,57,4,f +9809,4740,8,1,f +9809,4854,8,1,f +9809,4855,7,1,f +9809,4859,0,1,f +9809,4865a,7,2,f +9809,55295,8,1,f +9809,55296,8,1,f +9809,55297,8,1,f +9809,55298,8,1,f +9809,55299,8,1,f +9809,55300,8,1,f +9809,6069,8,1,f +9809,6112,15,3,f +9809,6134,0,2,f +9809,6141,57,5,f +9809,6636,8,8,f +9809,73983,0,2,f +9809,970c00,19,1,f +9809,970c00,4,1,f +9809,973pr1243c01,4,1,f +9809,973psac01,19,1,f +9813,3626bpr0645,14,1,f +9813,3626cpr0386,14,1,f +9813,3626cpr0892,14,1,f +9813,3898,15,1,f +9813,3899,45,1,f +9813,4449,71,1,f +9813,4528,0,1,f +9813,59363,70,1,f +9813,92081,308,1,f +9813,970c00,25,1,f +9813,970c00,15,1,f +9813,970c00,0,1,f +9813,973pb1079c01,15,1,f +9813,973pb1080c01,0,1,f +9813,973pb1081c01,25,1,f +9814,14210,0,1,f +9814,2335,15,1,f +9814,2339,70,2,f +9814,2341,71,1,f +9814,2357,72,3,f +9814,2420,72,2,f +9814,2420,71,2,f +9814,2420,70,5,f +9814,2420,2,4,f +9814,2431,15,3,f +9814,2431,71,3,f +9814,2435,2,2,f +9814,2436,0,2,f +9814,2444,71,4,f +9814,2540,72,1,f +9814,2555,15,5,f +9814,2654,19,2,f +9814,2921,15,2,f +9814,298c02,15,2,f +9814,298c02,1,1,f +9814,298c02,15,1,t +9814,298c02,1,1,t +9814,3002,72,4,f +9814,3003,19,1,f +9814,3004,70,14,f +9814,3004,72,6,f +9814,3004,71,7,f +9814,3004,15,4,f +9814,3005,70,4,f +9814,3005,15,3,f +9814,3005,71,3,f +9814,3006,19,1,f +9814,3009,70,2,f +9814,3010,70,4,f +9814,30133,4,2,f +9814,30136,72,5,f +9814,30162,72,1,f +9814,3020,15,2,f +9814,3020,70,2,f +9814,3020,19,2,f +9814,3020,2,18,f +9814,3021,2,12,f +9814,3021,72,6,f +9814,3022,2,13,f +9814,3022,70,3,f +9814,3022,72,2,f +9814,3023,71,5,f +9814,3023,28,4,f +9814,3023,1,2,f +9814,3023,0,9,f +9814,3023,70,10,f +9814,3023,2,4,f +9814,3024,15,5,f +9814,3024,47,2,f +9814,3024,28,2,f +9814,3024,70,15,f +9814,3024,71,3,f +9814,3024,2,4,f +9814,3024,320,15,f +9814,3024,19,2,f +9814,3032,15,1,f +9814,3033,15,5,f +9814,3035,15,3,f +9814,30363,19,2,f +9814,30367b,15,1,f +9814,30374,14,2,f +9814,30374,52,2,f +9814,3039,19,2,f +9814,3039,72,2,f +9814,3040b,72,3,f +9814,3040b,19,6,f +9814,3040b,70,1,f +9814,3040bpr0003,71,1,f +9814,30414,19,3,f +9814,30586,71,2,f +9814,30613,15,1,f +9814,3062b,72,7,f +9814,3062b,46,7,f +9814,3062b,0,4,f +9814,3062b,71,5,f +9814,3065,34,2,f +9814,3065,47,4,f +9814,3068b,70,1,f +9814,3068b,71,5,f +9814,3069b,71,10,f +9814,3069b,72,2,f +9814,3069b,4,2,f +9814,3069b,1,4,f +9814,3069b,0,3,f +9814,3069b,19,3,f +9814,3069bpr0055,15,1,f +9814,3070b,70,1,t +9814,3070b,19,1,t +9814,3070b,71,1,t +9814,3070b,71,11,f +9814,3070b,1,2,f +9814,3070b,4,1,t +9814,3070b,1,1,t +9814,3070b,19,3,f +9814,3070b,70,2,f +9814,3070b,4,2,f +9814,32000,19,4,f +9814,32014,1,2,f +9814,32028,71,5,f +9814,32028,15,2,f +9814,32054,4,1,f +9814,32062,4,1,f +9814,32124,15,6,f +9814,32251,72,2,f +9814,32530,72,5,f +9814,33172,25,1,f +9814,33243,15,1,f +9814,33291,5,1,t +9814,33291,5,1,f +9814,33320,72,1,f +9814,3455,0,1,f +9814,3460,15,2,f +9814,3471,2,2,f +9814,3622,71,3,f +9814,3622,15,2,f +9814,3622,70,2,f +9814,3623,70,5,f +9814,3623,71,6,f +9814,3623,15,4,f +9814,3623,4,1,f +9814,3626b,15,1,f +9814,3626bpr0001,14,1,f +9814,3626bpr0126,14,1,f +9814,3626bpr0499,14,1,f +9814,3626bpr0500,14,1,f +9814,3626bpr0576,14,2,f +9814,3626bpr0892,14,2,f +9814,3659,72,1,f +9814,3665,71,4,f +9814,3665,70,2,f +9814,3666,70,3,f +9814,3666,15,3,f +9814,3666,2,4,f +9814,3678b,0,1,f +9814,3679,71,1,f +9814,3680,1,1,f +9814,3708,0,1,f +9814,3709,2,2,f +9814,3710,70,8,f +9814,3710,2,10,f +9814,3713,4,1,t +9814,3713,4,1,f +9814,3794b,72,10,f +9814,3794b,71,6,f +9814,3794b,15,2,f +9814,3795,15,4,f +9814,3795,2,8,f +9814,3832,15,4,f +9814,3840,25,1,f +9814,3878,0,2,f +9814,3901,71,1,f +9814,3937,72,1,f +9814,3942c,0,1,f +9814,3956,1,1,f +9814,3957a,71,1,f +9814,3958,28,1,f +9814,3958,15,1,f +9814,4032a,71,2,f +9814,4032a,2,5,f +9814,4032a,70,4,f +9814,4070,72,20,f +9814,4070,70,1,f +9814,4079,1,1,f +9814,4081b,19,4,f +9814,4081b,14,2,f +9814,4085c,0,2,f +9814,4085c,71,2,f +9814,41334,0,1,f +9814,4150pr0001,15,1,f +9814,4162,71,2,f +9814,41879a,19,1,f +9814,41879a,272,1,f +9814,41879a,85,1,f +9814,4207,70,1,f +9814,42409,46,1,f +9814,4274,71,6,f +9814,4274,71,1,t +9814,43093,1,4,f +9814,44567a,0,1,f +9814,44728,19,3,f +9814,44728,15,2,f +9814,4490,0,1,f +9814,4510,71,1,f +9814,4510,15,2,f +9814,4522,0,1,f +9814,4589,0,1,f +9814,4589,2,2,f +9814,4595,0,1,f +9814,4599b,0,4,f +9814,46303,71,1,f +9814,4733,15,4,f +9814,4733,0,2,f +9814,4740,0,2,f +9814,4740,15,2,f +9814,47905,19,1,f +9814,48336,0,2,f +9814,48336,15,1,f +9814,4865a,40,1,f +9814,4865a,0,2,f +9814,48729a,0,1,f +9814,48729a,0,1,t +9814,48729b,0,1,t +9814,50231,0,1,f +9814,50231,4,1,f +9814,54200,4,1,f +9814,54200,15,6,f +9814,54200,15,1,t +9814,54200,4,1,t +9814,57895,47,3,f +9814,6005,15,1,f +9814,6019,1,3,f +9814,6019,4,2,f +9814,6020,0,1,f +9814,60471,0,1,f +9814,60474,0,9,f +9814,60475a,71,2,f +9814,60478,0,3,f +9814,60592,0,3,f +9814,60593,0,2,f +9814,60596,15,1,f +9814,60596,0,3,f +9814,60601,47,3,f +9814,60602,47,2,f +9814,60623,0,1,f +9814,6091,320,8,f +9814,6091,15,8,f +9814,6093,0,1,f +9814,6093,19,1,f +9814,6111,19,1,f +9814,6120,15,2,f +9814,6120,72,2,f +9814,6126a,182,2,f +9814,61287,47,4,f +9814,6134,1,1,f +9814,6141,34,4,f +9814,6141,34,1,t +9814,6141,15,11,f +9814,6141,297,1,t +9814,6141,46,1,t +9814,6141,46,6,f +9814,6141,297,6,f +9814,6141,36,1,t +9814,6141,0,1,t +9814,6141,4,13,f +9814,6141,36,2,f +9814,6141,19,1,t +9814,6141,0,10,f +9814,6141,33,1,f +9814,6141,71,4,f +9814,6141,4,1,t +9814,6141,71,1,t +9814,6141,1,1,t +9814,6141,1,1,f +9814,6141,19,2,f +9814,6141,33,1,t +9814,6141,15,1,t +9814,61678,4,6,f +9814,6251pr0002,15,1,f +9814,62537pr0001,4,1,f +9814,6266,0,3,f +9814,62696,308,1,f +9814,62930,47,1,f +9814,63868,0,2,f +9814,63965,0,1,f +9814,64566,0,1,f +9814,64644,0,2,f +9814,6558,1,3,f +9814,6587,72,3,f +9814,6636,70,6,f +9814,6636,28,11,f +9814,75c03,71,1,t +9814,75c03,71,1,f +9814,970c00,72,1,f +9814,970c00,15,1,f +9814,970c00,2,1,f +9814,973c06,1,1,f +9814,973c31,4,1,f +9814,973c42,0,1,f +9814,973c47,71,1,f +9814,973pr1170c01,4,1,f +9814,973pr1238c01,0,1,f +9814,973pr1446c01,4,1,f +9815,3626bpr0521,14,1,f +9815,62537pr0001,4,1,f +9815,970d08,1,1,f +9815,973pr1379c01,4,1,f +9816,3625,0,2,f +9816,3626apr0001,14,4,f +9816,3833,4,1,f +9816,3836,6,1,f +9816,3837,8,1,f +9816,3842a,4,1,f +9816,3962a,0,1,f +9816,4006,7,1,f +9816,970c00,15,1,f +9816,970c00,0,1,f +9816,970c00,4,1,f +9816,970c00,1,1,f +9816,973p01c01,15,1,f +9816,973p17c01,0,1,f +9816,973p24c01,15,1,f +9816,973p26c01,1,1,f +9817,4093a,7,1,f +9818,3001p01,14,3,f +9818,3003pr0032,25,3,f +9818,3003pr0033,15,3,f +9818,3004,15,1,f +9818,3004,71,2,f +9818,3006,71,1,f +9818,3020,14,3,f +9818,3022,25,1,f +9818,3022,71,2,f +9818,3022,15,1,f +9818,3023,71,1,t +9818,3023,71,1,f +9818,3024,33,2,f +9818,3024,33,1,t +9818,3030,1,1,f +9818,30374,70,1,t +9818,30374,70,1,f +9818,3041,4,1,f +9818,3043,4,3,f +9818,3069b,15,2,f +9818,3069b,15,1,t +9818,32028,71,1,t +9818,32028,71,1,f +9818,32064b,71,2,f +9818,3710,15,1,f +9818,3794b,15,1,t +9818,3794b,15,1,f +9818,3832,70,1,f +9818,4477,71,3,f +9818,4589,70,1,t +9818,4589,70,1,f +9818,6141,19,12,f +9818,85984,15,1,t +9818,85984,15,1,f +9818,87087,15,2,f +9818,87087,15,1,t +9819,10197,0,2,f +9819,10928,72,2,f +9819,11478,0,1,f +9819,11610,0,1,f +9819,15303,33,2,f +9819,15400,72,1,f +9819,15712,72,2,f +9819,19086,72,1,f +9819,21562,0,2,f +9819,23443,71,1,f +9819,24010,0,1,f +9819,24122,0,1,f +9819,24123,148,1,f +9819,24124,308,1,f +9819,24316,70,7,f +9819,26831,0,2,f +9819,26904,78,1,f +9819,2714b,71,1,f +9819,2780,0,5,f +9819,28440,72,1,f +9819,3024,0,2,f +9819,3070b,72,1,f +9819,32034,0,2,f +9819,32039,0,1,f +9819,32062,4,4,f +9819,32072,0,4,f +9819,32073,71,2,f +9819,32123b,71,5,f +9819,32184,72,1,f +9819,3713,71,1,f +9819,4274,71,5,f +9819,43093,1,3,f +9819,53585,0,2,f +9819,58176,0,1,f +9819,59426,72,1,f +9819,59443,71,1,f +9819,59443,0,2,f +9819,60483,71,1,f +9819,60483,0,2,f +9819,6558,1,1,f +9819,6632,0,1,f +9819,74261,0,4,f +9819,87994,0,1,f +9819,90607,0,2,f +9819,90609,0,2,f +9819,90615,72,2,f +9819,90617,72,2,f +9819,90639,72,3,f +9819,90640,72,2,f +9819,90661,308,2,f +9819,93273,0,2,f +9819,93575,28,2,f +9819,98577,72,1,f +9820,2412b,320,2,f +9820,2413,15,2,f +9820,2431,15,5,f +9820,2540,71,2,f +9820,2555,72,5,f +9820,2555,71,2,f +9820,2654,72,2,f +9820,298c02,71,9,f +9820,298c02,71,1,t +9820,3001,72,1,f +9820,3002,15,1,f +9820,3020,71,2,f +9820,3021,15,1,f +9820,3021,71,3,f +9820,3023,72,5,f +9820,3023,71,7,f +9820,3023,272,1,f +9820,3024,272,3,f +9820,3024,47,4,f +9820,3031,72,2,f +9820,3032,71,1,f +9820,3034,15,1,f +9820,30363,15,3,f +9820,30375,72,6,f +9820,30377,72,4,f +9820,3039,15,1,f +9820,3040b,71,4,f +9820,3062b,71,2,f +9820,3062b,272,4,f +9820,3068b,72,1,f +9820,3069b,272,2,f +9820,3069b,320,1,f +9820,3070b,71,1,f +9820,3070b,71,1,t +9820,3070b,15,1,f +9820,3176,71,1,f +9820,3298,71,1,f +9820,3660,72,1,f +9820,3665,71,4,f +9820,3678b,15,4,f +9820,3700,15,2,f +9820,3710,71,1,f +9820,3710,272,1,f +9820,3710,15,1,f +9820,3747b,15,1,f +9820,3794b,15,4,f +9820,3794b,320,5,f +9820,3795,15,1,f +9820,3795,71,3,f +9820,3937,0,3,f +9820,3938,71,3,f +9820,4032a,72,1,f +9820,4070,320,2,f +9820,4070,15,4,f +9820,4070,71,4,f +9820,4081b,15,2,f +9820,4083,0,2,f +9820,4150,71,2,f +9820,41769,272,1,f +9820,41769,15,1,f +9820,41770,272,1,f +9820,41770,15,1,f +9820,4274,1,2,f +9820,4287,71,1,f +9820,43710,71,2,f +9820,43711,71,2,f +9820,43719,320,1,f +9820,43898,72,4,f +9820,44728,72,2,f +9820,4589,72,2,f +9820,4623,0,1,f +9820,4697b,71,2,f +9820,4697b,71,1,t +9820,4740,72,4,f +9820,47457,15,1,f +9820,47905,72,1,f +9820,48336,19,2,f +9820,48336,71,1,f +9820,54200,15,2,f +9820,54200,40,2,f +9820,54200,71,1,t +9820,54200,71,3,f +9820,59900,0,1,f +9820,60470a,71,3,f +9820,60478,15,1,f +9820,6141,72,8,f +9820,63868,71,5,f +9820,63965,0,1,f +9821,10201,71,1,f +9821,11289,41,1,f +9821,11476,71,2,f +9821,15397,15,1,f +9821,15624,72,1,f +9821,19000,4,1,f +9821,2412b,71,1,f +9821,2412b,15,1,f +9821,2421,0,1,f +9821,2431,14,2,f +9821,2432,72,1,f +9821,2446,15,2,f +9821,2447,47,2,f +9821,2456,15,1,f +9821,2479,0,1,f +9821,2654,182,2,f +9821,3001,4,1,f +9821,3003,4,1,f +9821,3004,4,6,f +9821,3004,15,1,f +9821,30165,4,2,f +9821,30236,71,1,f +9821,30248,72,1,f +9821,3031,14,1,f +9821,3034,0,1,f +9821,30367c,25,1,f +9821,3039,15,1,f +9821,3040b,14,1,f +9821,3062b,33,6,f +9821,3062b,47,1,f +9821,3062b,321,1,f +9821,3068b,4,1,f +9821,3068bpr0245,14,3,f +9821,3069b,33,2,f +9821,3069b,4,1,f +9821,3069b,15,1,f +9821,3069bpr0101,71,1,f +9821,3298,0,2,f +9821,3626bpr0645,14,1,f +9821,3626cpr0893,14,1,f +9821,3666,0,5,f +9821,3710,71,1,f +9821,3835,0,1,f +9821,3838,14,1,f +9821,3941,25,1,f +9821,4006,0,1,f +9821,4079b,1,1,f +9821,4083,14,1,f +9821,44567a,14,1,f +9821,4488,71,1,f +9821,4528,0,1,f +9821,4599b,71,2,f +9821,50859b,0,1,f +9821,50861,0,2,f +9821,50862,71,2,f +9821,59900,182,4,f +9821,59900,36,2,f +9821,60032,0,1,f +9821,60470a,15,1,f +9821,60471,0,1,f +9821,60474,71,1,f +9821,60594,0,1,f +9821,60603pr0003,41,1,f +9821,6126a,41,1,f +9821,6126b,182,3,f +9821,63868,4,1,f +9821,64567,15,1,f +9821,73590c03b,14,1,f +9821,89536,4,1,f +9821,93273,4,1,f +9821,93273,14,3,f +9821,93273,0,3,f +9821,970c00,72,2,f +9821,973pr2189c01,0,2,f +9822,3062b,0,1,f +9822,3062b,0,1,t +9822,3069bp08,15,1,t +9822,3069bp08,15,1,f +9822,3941,0,1,f +9822,4070,0,3,f +9822,4095,0,1,f +9822,49668,72,2,f +9822,49668,72,1,t +9822,6141,34,2,t +9822,6141,34,1,f +9822,6141,36,1,f +9822,6141,36,2,t +9823,30173b,179,1,f +9823,41535,297,1,f +9823,59900,46,2,f +9823,59900,36,2,f +9823,59900,182,2,f +9823,64647,182,2,f +9823,98139,179,1,f +9823,98139,297,1,f +9823,98141,297,1,f +9824,210,2,1,f +9824,3003,14,2,f +9824,3003,15,6,f +9824,3003,1,1,f +9824,3004,14,15,f +9824,3004,1,2,f +9824,3004,0,1,f +9824,3005,14,11,f +9824,3008,14,4,f +9824,3009,14,2,f +9824,3009,0,1,f +9824,3010,0,1,f +9824,3010,4,1,f +9824,3010,14,7,f +9824,3020,4,2,f +9824,3022,0,1,f +9824,3024,4,1,f +9824,3024,14,1,f +9824,3034,0,1,f +9824,3037,4,8,f +9824,3038,4,8,f +9824,3039,4,8,f +9824,3039,1,1,f +9824,3042,4,1,f +9824,3043,4,3,f +9824,3062a,0,1,f +9824,3068b,15,1,f +9824,3068b,4,1,f +9824,3456,4,1,f +9824,3460,14,3,f +9824,3471,2,1,f +9824,3622,14,2,f +9824,3623,14,1,f +9824,3625,0,1,f +9824,3626a,47,1,f +9824,3626apr0001,14,1,f +9824,3666,14,4,f +9824,3679,7,1,f +9824,3680,15,1,f +9824,3710,14,1,f +9824,3710,4,1,f +9824,3741,2,4,f +9824,3742,4,6,f +9824,3742,14,6,f +9824,3742,14,2,t +9824,3742,4,2,t +9824,3795,4,1,f +9824,3853,0,3,f +9824,3854,15,6,f +9824,3856,2,6,f +9824,3861b,0,1,f +9824,3899,14,2,f +9824,3957a,7,1,f +9824,3960p06,15,1,f +9824,4079,15,1,f +9824,6365stk01,9999,1,t +9824,970c00,4,1,f +9824,973p17c01,0,1,f +9825,2357,0,2,f +9825,2357,7,1,f +9825,2431,7,1,f +9825,2431,0,2,f +9825,2453a,6,4,f +9825,2493b,15,2,f +9825,2494,47,2,f +9825,2555,0,1,f +9825,3001,0,1,f +9825,3001,7,1,f +9825,3003,0,1,f +9825,3003,7,1,f +9825,3004,0,11,f +9825,3004,15,1,f +9825,3004,7,4,f +9825,30044,0,2,f +9825,30045,0,2,f +9825,3005,0,3,f +9825,3005,7,1,f +9825,3005,6,4,f +9825,30055,6,2,f +9825,3009,7,2,f +9825,3010,7,3,f +9825,3010,0,2,f +9825,30132,8,4,f +9825,30133,0,1,f +9825,30136,6,12,f +9825,30137,6,4,f +9825,30139,6,1,f +9825,30140,6,2,f +9825,30141,8,3,f +9825,3020,7,2,f +9825,3021,7,1,f +9825,3023,15,1,f +9825,3023,0,2,f +9825,3027,7,2,f +9825,3027,0,1,f +9825,3035,0,2,f +9825,3039,0,1,f +9825,3062b,0,1,f +9825,3069b,0,3,f +9825,3069b,7,2,f +9825,3069bp03,7,1,f +9825,3069bpw0,15,1,f +9825,3069bpw1,15,1,f +9825,3070b,7,1,t +9825,3070b,7,2,f +9825,3455,6,2,f +9825,3622,0,1,f +9825,3626bp35,14,1,f +9825,3626bp62,14,1,f +9825,3626bpx29,14,1,f +9825,3626bpx30,14,1,f +9825,3629,15,1,f +9825,3629,6,1,f +9825,3629pw2,7,1,f +9825,3659,7,2,f +9825,3710,0,1,f +9825,3795,7,1,f +9825,3857,19,1,f +9825,3861b,15,1,f +9825,3878,0,1,f +9825,3899,15,2,f +9825,3958,7,1,f +9825,4070,0,2,f +9825,4071,7,1,f +9825,4079,14,1,f +9825,4213,0,4,f +9825,4275b,14,2,f +9825,4286,7,1,f +9825,4315,0,4,f +9825,4345b,7,1,f +9825,4346px5,2,1,f +9825,4460a,7,2,f +9825,4491b,6,1,f +9825,4531,14,2,f +9825,4611,0,1,f +9825,4865a,0,3,f +9825,57503,334,1,f +9825,57504,334,1,f +9825,57505,334,1,f +9825,57506,334,1,f +9825,6064,2,1,f +9825,6111,7,2,f +9825,6112,6,2,f +9825,6126a,57,1,f +9825,6141,4,1,t +9825,6141,7,1,t +9825,6141,4,1,f +9825,6141,7,2,f +9825,6232,7,1,f +9825,6636,7,1,f +9825,73129,7,1,f +9825,75998pr0007,15,1,f +9825,970c00,1,1,f +9825,970c00,0,1,f +9825,970c00,7,1,f +9825,970c00,8,1,f +9825,973px161c01,8,1,f +9825,973px53c01,6,1,f +9825,973px55c01,2,1,f +9825,973px56c01,4,1,f +9826,2715,3,1,f +9826,2716,0,1,f +9826,2723,15,2,f +9826,2780,0,40,f +9826,2817,0,2,f +9826,2817,3,1,f +9826,2909c03,8,2,f +9826,3021,0,2,f +9826,3068b,0,5,f +9826,32000,0,2,f +9826,32001,0,3,f +9826,32002,8,32,f +9826,32002,8,2,t +9826,32007,14,6,f +9826,32009,22,2,f +9826,32009,3,2,f +9826,32009,0,6,f +9826,32013,0,2,f +9826,32014,0,1,f +9826,32015,0,2,f +9826,32017,22,2,f +9826,32017,3,2,f +9826,32018,0,4,f +9826,32039,0,6,f +9826,32062,0,6,f +9826,32063,7,8,f +9826,32064b,0,2,f +9826,32065,0,10,f +9826,32065,3,12,f +9826,32065,22,12,f +9826,32123b,7,2,t +9826,32123b,7,20,f +9826,3673,7,9,f +9826,3702,0,4,f +9826,3705,0,15,f +9826,3706,0,11,f +9826,3707,0,1,f +9826,3708,0,3,f +9826,3713,7,21,f +9826,3713,7,1,t +9826,3737,0,1,f +9826,3738,14,2,f +9826,3749,7,7,f +9826,3894,0,2,f +9826,3895,0,2,f +9826,4274,7,1,t +9826,4274,7,2,f +9826,4287,0,2,f +9826,4519,0,6,f +9826,6192,0,4,f +9826,6536,7,8,f +9826,6536,0,7,f +9826,6538b,7,1,f +9826,6553,0,4,f +9826,6558,0,6,f +9826,6572,14,2,f +9826,6579,0,3,f +9826,6580,14,3,f +9826,6589,7,1,f +9826,6628,0,4,f +9826,6629,3,1,f +9826,6629,0,8,f +9826,6629,22,1,f +9826,6632,0,8,f +9826,680c01,0,2,f +9826,75535,22,4,f +9826,75535,3,2,f +9826,76110c01,14,2,f +9826,78c08,22,2,f +9826,78c14,3,2,f +9826,rb00168,0,4,f +9826,rb00168,0,6,t +9826,tech007,9999,1,f +9826,tech013,9999,1,f +9827,3062b,46,1,f +9827,3062b,36,1,f +9827,33051,10,1,f +9827,33085,14,1,f +9827,3899,45,1,f +9827,4589,46,1,f +9827,4589,36,1,f +9827,6141,14,1,t +9827,6141,4,1,f +9827,6141,14,1,f +9827,6141,4,1,t +9828,64251,15,1,f +9828,64262,143,1,f +9828,87794,0,1,f +9828,87796,1,3,f +9828,87797,15,2,f +9828,87798,15,2,f +9828,87799,143,1,f +9828,87800pat0001,15,1,f +9828,87801,15,1,f +9828,87802,15,1,f +9828,93571,0,3,f +9832,2780,0,4,f +9832,32054,71,1,f +9832,32062,0,3,f +9832,32174,0,5,f +9832,32209,15,1,f +9832,32270,0,3,f +9832,3705,0,1,f +9832,3708,0,2,f +9832,3713,71,1,t +9832,3713,71,1,f +9832,4519,71,3,f +9832,45274,178,1,f +9832,45749,288,2,f +9832,47296,288,4,f +9832,47297,288,2,f +9832,47298,178,2,f +9832,47299,178,2,f +9832,47305,288,1,f +9832,47306,288,1,f +9832,47310,178,2,f +9832,47312,72,1,f +9832,47313,57,1,f +9832,48253,178,1,f +9832,49423,0,1,f +9832,50899,288,1,f +9832,50899pr0002,178,1,f +9832,50900,0,1,f +9832,50901,72,1,f +9832,50903,14,1,f +9832,53379,178,1,f +9832,53384,178,1,f +9832,6538b,0,1,f +9835,2413,4,2,f +9835,2419,4,1,f +9835,2432,14,1,f +9835,2433,0,1,f +9835,2437,41,1,f +9835,2446,8,1,f +9835,2447,41,1,f +9835,2447,41,1,t +9835,2489,6,1,f +9835,2610,14,2,f +9835,2654,0,4,f +9835,2780,0,2,f +9835,298c02,4,1,t +9835,298c02,4,1,f +9835,3002,14,3,f +9835,3005,4,1,f +9835,30167,6,2,f +9835,30167,0,1,f +9835,3020,0,3,f +9835,3020,4,1,f +9835,3022,4,1,f +9835,3023,14,2,f +9835,3023,7,1,f +9835,3031,7,2,f +9835,3034,14,2,f +9835,3038,0,2,f +9835,3039,4,1,f +9835,3040b,4,1,f +9835,3062b,6,4,f +9835,3070b,34,1,f +9835,3070b,36,1,f +9835,3070b,36,1,t +9835,3070b,34,1,t +9835,32123b,7,1,t +9835,32123b,7,2,f +9835,3587,4,1,f +9835,3623,4,1,f +9835,3626bp04,14,1,f +9835,3626bpx78,14,1,f +9835,3660,14,2,f +9835,3700,0,2,f +9835,3705,0,1,f +9835,3710,0,3,f +9835,3747b,14,2,f +9835,3794a,4,1,f +9835,3829c01,14,1,f +9835,3837,8,1,f +9835,3841,8,1,f +9835,3941,15,1,f +9835,3962b,0,1,f +9835,4032a,7,4,f +9835,4032a,4,1,f +9835,4032a,2,1,f +9835,4070,0,2,f +9835,4085c,7,1,f +9835,4185,7,1,f +9835,4266,0,1,f +9835,4599a,7,1,f +9835,4617b,14,1,f +9835,4854,14,1,f +9835,4855,14,1,f +9835,4859,0,1,f +9835,6026,2,1,f +9835,6027,2,1,f +9835,6028,2,1,f +9835,6058,0,1,f +9835,6064,2,1,f +9835,6141,4,1,t +9835,6141,4,6,f +9835,970c00,8,1,f +9835,970c00,0,1,f +9835,973p28c01,0,1,f +9835,973p70c01,6,1,f +9836,2346,0,2,f +9836,2348b,47,1,f +9836,2349a,4,1,f +9836,2431pr0077,15,1,f +9836,2436,4,1,f +9836,2540,0,1,f +9836,2555,15,1,f +9836,2817,0,1,f +9836,3010,47,1,f +9836,3020,4,3,f +9836,3022,4,1,f +9836,3023,4,7,f +9836,3024,36,2,f +9836,3024,46,2,f +9836,3062b,0,4,f +9836,3070b,4,2,f +9836,3314,0,1,f +9836,3317,14,1,f +9836,3433,14,1,f +9836,3482,15,2,f +9836,3626apr0001,14,2,f +9836,3665,4,2,f +9836,3666,4,2,f +9836,3706,0,1,f +9836,3710,4,1,f +9836,3823,47,1,f +9836,3829c01,14,1,f +9836,3832,4,1,f +9836,3833,15,2,f +9836,3837,8,1,f +9836,4070,4,2,f +9836,4084,0,2,f +9836,4265a,7,2,f +9836,4315,4,1,f +9836,4589,0,1,f +9836,4594,47,1,f +9836,4600,0,1,f +9836,4624,15,2,f +9836,4865a,0,1,f +9836,6141,46,4,f +9836,6141,0,2,f +9836,970c00,1,1,f +9836,970c00,0,1,f +9836,973p26c01,1,1,f +9836,973pb0202c01,15,1,f +9837,2540,72,2,f +9837,30031,72,1,f +9837,30377,0,1,f +9837,30377,0,1,t +9837,3623,71,1,f +9837,3626bpr0644,14,1,f +9837,4081b,0,1,f +9837,44676,0,2,f +9837,52107,0,1,f +9837,59275,27,2,f +9837,6019,71,1,f +9837,60478,72,1,f +9837,6141,71,3,f +9837,6141,71,1,t +9837,6141,27,1,f +9837,6141,47,1,t +9837,6141,27,1,t +9837,6141,47,1,f +9837,61678,4,1,f +9837,87754,72,1,f +9837,89159,35,1,f +9837,970c00pr0145,72,1,f +9837,973pr1557c01,72,1,f +9838,2456,14,4,f +9838,2456,4,4,f +9838,2456,15,4,f +9838,2456,1,4,f +9838,2877,71,2,f +9838,3001,2,7,f +9838,3001,15,18,f +9838,3001,14,26,f +9838,3001,27,12,f +9838,3001,1,20,f +9838,3001,25,12,f +9838,3001,0,7,f +9838,3001,4,26,f +9838,3002,2,8,f +9838,3002,0,8,f +9838,3002,4,16,f +9838,3002,1,16,f +9838,3002,14,16,f +9838,3002,15,16,f +9838,3003,25,32,f +9838,3003,27,32,f +9838,3003,0,20,f +9838,3003,15,60,f +9838,3003,4,76,f +9838,3003,14,76,f +9838,3003,2,20,f +9838,3003,1,60,f +9838,3004,27,20,f +9838,3004,15,62,f +9838,3004,2,26,f +9838,3004,14,72,f +9838,3004,4,72,f +9838,3004,0,26,f +9838,3004,25,20,f +9838,3004,1,62,f +9838,3004p0b,14,2,f +9838,3005,15,33,f +9838,3005,14,28,f +9838,3005,27,12,f +9838,3005,1,33,f +9838,3005,2,16,f +9838,3005,0,16,f +9838,3005,25,20,f +9838,3005,4,38,f +9838,3005pe1,14,4,f +9838,3005pe1,2,2,f +9838,3005pe1,15,2,f +9838,3005px2,14,2,f +9838,3007,14,2,f +9838,3007,1,2,f +9838,3007,4,2,f +9838,3007,15,2,f +9838,3008,15,4,f +9838,3008,14,4,f +9838,3008,4,4,f +9838,3008,1,4,f +9838,3009,1,8,f +9838,3009,15,8,f +9838,3009,4,8,f +9838,3009,14,8,f +9838,3010,27,8,f +9838,3010,4,13,f +9838,3010,25,6,f +9838,3010,1,13,f +9838,3010,2,6,f +9838,3010,0,6,f +9838,3010,15,7,f +9838,3010,14,13,f +9838,3020,0,4,f +9838,3020,4,4,f +9838,3021,0,4,f +9838,3021,4,4,f +9838,3021,1,4,f +9838,3022,1,4,f +9838,3022,4,4,f +9838,3022,0,4,f +9838,3023,14,2,f +9838,3023,4,2,f +9838,3023,1,2,f +9838,3035,2,2,f +9838,3037,1,8,f +9838,3037,4,10,f +9838,3039,15,4,f +9838,3039,47,2,f +9838,3039,1,8,f +9838,3039,4,12,f +9838,3039,14,4,f +9838,3040b,4,8,f +9838,3040b,15,4,f +9838,3040b,1,8,f +9838,3040b,0,4,f +9838,3040b,14,8,f +9838,3062b,36,2,f +9838,3062b,14,2,f +9838,3062b,15,6,f +9838,3062b,0,4,f +9838,3062b,4,4,f +9838,3297,0,6,f +9838,3298,0,10,f +9838,3299,4,4,f +9838,3300,4,4,f +9838,3622,2,8,f +9838,3622,4,8,f +9838,3622,1,8,f +9838,3622,15,8,f +9838,3622,0,8,f +9838,3622,14,8,f +9838,3660,4,4,f +9838,3660,14,4,f +9838,3665,4,8,f +9838,3665,14,8,f +9838,3665,15,4,f +9838,3700,14,2,f +9838,3710,15,4,f +9838,3710,0,4,f +9838,3794b,15,2,f +9838,3794b,4,2,f +9838,4070,4,4,f +9838,4070,14,4,f +9838,4081b,0,2,f +9838,4286,0,8,f +9838,4740,15,2,f +9838,54200,0,2,f +9838,54200,4,2,f +9838,6141,25,4,f +9838,6141,4,4,f +9838,6141,36,4,f +9838,6141,34,4,f +9838,6141,27,6,f +9838,6141,14,4,f +9839,2431pw0,0,1,f +9839,2436,7,1,f +9839,2470,0,2,f +9839,2489,6,1,f +9839,2555,0,2,f +9839,30132,8,1,t +9839,30132,8,1,f +9839,30133,15,1,f +9839,30141,8,2,f +9839,3020,0,1,f +9839,3021,7,1,f +9839,3069bp03,7,1,f +9839,3626bpx78,14,1,f +9839,3629,6,1,f +9839,3839b,0,1,f +9839,6157,0,1,f +9839,970c00,8,1,f +9839,973px54c01,0,1,f +9840,3004,4,4,f +9840,3009,4,5,f +9840,3010,4,4,f +9840,3022,4,1,f +9840,3023,4,1,f +9840,3039,4,6,f +9840,3040b,4,6,f +9840,3068b,4,2,f +9840,3069b,4,2,f +9840,3176,4,2,f +9840,3660,4,8,f +9840,3665,4,8,f +9840,3700,4,1,f +9840,3794b,4,1,f +9840,4070,15,2,f +9840,6232,4,1,f +9841,5306bc036,0,1,f +9841,5306bc069,0,1,f +9841,5306bc162,0,1,f +9842,3001,2,14,f +9842,3002,2,8,f +9842,3003,2,12,f +9842,3004,2,8,f +9842,3005,2,4,f +9842,3006,2,2,f +9842,3009,2,4,f +9842,3010,2,6,f +9842,3622,2,4,f +9843,11262pr0001,15,1,f +9843,11938,15,1,f +9843,3626bpr1052,14,1,f +9843,88646,0,1,f +9843,970c00pr0423,191,1,f +9844,15573,70,2,f +9844,15712,70,1,f +9844,18787,322,1,f +9844,18789,179,1,f +9844,19723,322,1,f +9844,19727pr0005,272,1,f +9844,19729pr0001,308,1,f +9844,19729pr0004,0,2,f +9844,19730,322,1,f +9844,19732,0,2,f +9844,2420,72,4,f +9844,2431,84,2,f +9844,2456,72,12,f +9844,2456,0,2,f +9844,2465,72,2,f +9844,2921,84,1,f +9844,3001,84,2,f +9844,3001,71,6,f +9844,3001,72,32,f +9844,3002,72,4,f +9844,3003,71,10,f +9844,3003,0,2,f +9844,3003,84,3,f +9844,3003,25,5,f +9844,3003,72,26,f +9844,3003,19,12,f +9844,3004,84,4,f +9844,3004,71,4,f +9844,3004,72,8,f +9844,3004,19,1,f +9844,3005,47,8,f +9844,3005,84,4,f +9844,3005,27,4,f +9844,3005,1,4,f +9844,3006,71,3,f +9844,3009,72,10,f +9844,3010,72,4,f +9844,3020,288,4,f +9844,3020,1,1,f +9844,3020,272,1,f +9844,3021,1,2,f +9844,3022,84,5,f +9844,3022,71,6,f +9844,3023,288,8,f +9844,3023,19,4,f +9844,3023,272,3,f +9844,3023,70,2,f +9844,3023,72,4,f +9844,30237b,72,2,f +9844,3024,182,6,f +9844,3024,0,8,f +9844,3024,15,4,f +9844,3024,72,2,f +9844,3024,46,6,f +9844,3024,2,8,f +9844,3024,4,8,f +9844,3024,28,2,f +9844,3024,71,4,f +9844,3029,71,2,f +9844,3031,70,1,f +9844,3032,71,1,f +9844,3032,19,1,f +9844,3039,33,3,f +9844,3065,33,1,f +9844,3068b,72,9,f +9844,3068b,272,1,f +9844,3070b,288,8,f +9844,3070b,0,4,f +9844,3070bpr0161,272,12,f +9844,33291,70,8,f +9844,3622,72,8,f +9844,3623,1,2,f +9844,3710,70,2,f +9844,3710,72,4,f +9844,3795,0,3,f +9844,3795,71,1,f +9844,3795,1,1,f +9844,3795,15,1,f +9844,3795,72,1,f +9844,3830,72,4,f +9844,3831,72,3,f +9844,3831,84,1,f +9844,3832,72,4,f +9844,3832,1,1,f +9844,3958,25,1,f +9844,4070,71,8,f +9844,40902,71,1,f +9844,41539,15,1,f +9844,41539,71,1,f +9844,41539,84,2,f +9844,4282,71,2,f +9844,44567a,71,1,f +9844,4510,15,4,f +9844,4599b,71,36,f +9844,4738a,84,1,f +9844,4739a,84,1,f +9844,47457,1,2,f +9844,48336,0,2,f +9844,60475b,84,2,f +9844,6141,36,2,f +9844,6141,71,13,f +9844,6141,10,4,f +9844,6141,322,2,f +9844,63868,0,4,f +9844,64644,308,6,f +9844,6636,0,4,f +9844,73983,0,4,f +9844,73983,288,4,f +9844,75937,15,1,f +9844,87079,1,1,f +9844,87079,72,2,f +9844,87580,71,6,f +9844,87580,19,12,f +9844,87580,15,19,f +9844,87580,84,7,f +9844,87580,72,28,f +9844,96874,25,1,t +9844,970c00,322,1,f +9844,973pr2819c01,321,1,f +9844,98283,72,2,f +9844,99563,71,1,f +9846,10202,71,1,f +9846,10247,0,2,f +9846,10928,72,2,f +9846,11090,14,2,f +9846,11303,272,2,f +9846,11399,72,1,f +9846,11458,72,1,f +9846,11477,72,4,f +9846,11477,15,4,f +9846,11477,71,2,f +9846,12825,71,1,f +9846,14045,0,1,f +9846,14045,0,1,t +9846,14769,71,1,f +9846,14812,9999,1,t +9846,15207,15,4,f +9846,2340,1,2,f +9846,2412b,0,3,f +9846,2412b,71,13,f +9846,2412b,72,5,f +9846,2412b,71,2,t +9846,2431,70,2,f +9846,2431,1,1,f +9846,2431,72,1,f +9846,2432,14,2,f +9846,2460,71,1,f +9846,2465,71,2,f +9846,2508,0,1,f +9846,2540,72,4,f +9846,2569,0,2,t +9846,2569,0,3,f +9846,2584,0,1,f +9846,2585,71,1,f +9846,2653,0,4,f +9846,2654,71,1,f +9846,2654,47,1,f +9846,2654,0,4,f +9846,2780,0,1,f +9846,2780,0,1,t +9846,298c02,4,1,t +9846,298c02,4,1,f +9846,3001,71,3,f +9846,3002,14,1,f +9846,3002,72,1,f +9846,3003,0,2,f +9846,30031,72,1,f +9846,30086,326,1,f +9846,3009,15,3,f +9846,30136,71,1,f +9846,30153,33,1,f +9846,30153,36,1,f +9846,30157,72,1,f +9846,30162,71,1,f +9846,3020,15,6,f +9846,3020,72,2,f +9846,3021,4,2,f +9846,3022,25,1,f +9846,3022,72,1,f +9846,3022,15,4,f +9846,3022,14,1,f +9846,3023,15,7,f +9846,3023,1,5,f +9846,3024,1,4,f +9846,3024,1,1,t +9846,3024,182,2,t +9846,3024,182,6,f +9846,3030,1,1,f +9846,3031,0,1,f +9846,3032,1,1,f +9846,3034,15,1,f +9846,3036,72,1,f +9846,30374,71,1,f +9846,30377,71,2,f +9846,30377,71,1,t +9846,3039,71,1,f +9846,30395,72,1,f +9846,3039pr0005,15,1,f +9846,3040b,72,2,f +9846,3040b,1,2,f +9846,3040b,15,2,f +9846,30414,1,1,f +9846,30414,15,1,f +9846,30526,71,2,f +9846,3062b,14,2,f +9846,3062b,4,2,f +9846,3062b,15,2,f +9846,3062b,46,1,f +9846,3069b,15,2,f +9846,3069b,33,4,f +9846,3069b,36,2,f +9846,3069b,72,1,f +9846,3069bpr0100,2,1,f +9846,3070b,36,2,f +9846,3070b,36,1,t +9846,32013,72,1,f +9846,32013,14,1,f +9846,32018,72,2,f +9846,32028,71,4,f +9846,32028,72,6,f +9846,32059,1,2,f +9846,32556,19,2,f +9846,3298,72,1,f +9846,3456,0,1,f +9846,3460,72,4,f +9846,3622,70,1,f +9846,3622,15,2,f +9846,3623,71,1,f +9846,3623,14,4,f +9846,3626cpr0889,14,1,f +9846,3626cpr1145,14,1,f +9846,3626cpr1147,14,1,f +9846,3660,15,6,f +9846,3660,0,2,f +9846,3666,71,3,f +9846,3666,1,2,f +9846,3679,71,1,f +9846,3680,0,1,f +9846,3700,0,4,f +9846,3705,0,1,f +9846,3710,4,5,f +9846,3710,15,1,f +9846,3749,19,2,f +9846,3795,1,2,f +9846,3795,14,1,f +9846,3823,41,1,f +9846,3829c01,14,2,f +9846,3832,0,1,f +9846,3899,4,1,f +9846,3942c,0,1,f +9846,3962b,0,1,f +9846,4006,0,1,f +9846,4032a,15,1,f +9846,4070,15,2,f +9846,4079,72,2,f +9846,4079,14,2,f +9846,41334,0,1,f +9846,4162,1,4,f +9846,4162,71,2,f +9846,4274,1,2,f +9846,4274,1,1,t +9846,43093,1,1,f +9846,4349,0,1,f +9846,43898,15,1,f +9846,44675,0,2,f +9846,44728,71,1,f +9846,4477,1,4,f +9846,4488,71,4,f +9846,4510,72,2,f +9846,4533,15,1,f +9846,4740,71,1,f +9846,47456,0,2,f +9846,48336,0,2,f +9846,4865b,41,2,f +9846,4871,71,3,f +9846,50745,72,4,f +9846,52031,15,2,f +9846,54200,1,2,f +9846,54200,36,1,f +9846,54200,1,1,t +9846,54200,34,1,f +9846,54200,36,1,t +9846,54200,34,1,t +9846,54200,47,1,t +9846,54200,47,2,f +9846,55981,71,4,f +9846,56823c50,0,1,f +9846,6014b,71,4,f +9846,60470a,4,2,f +9846,60475a,15,2,f +9846,60478,0,6,f +9846,60478,14,2,f +9846,60478,15,2,f +9846,60479,15,2,f +9846,60897,15,5,f +9846,6106,71,1,f +9846,61252,14,2,f +9846,61252,72,2,f +9846,61252,71,2,f +9846,6141,46,1,f +9846,6141,71,1,t +9846,6141,46,1,t +9846,6141,71,2,f +9846,61482,71,1,t +9846,61482,71,1,f +9846,62462,14,1,f +9846,62812,15,1,f +9846,63868,14,2,f +9846,63965,71,1,f +9846,64567,71,1,t +9846,64567,71,1,f +9846,6636,1,1,f +9846,6636,72,2,f +9846,85984,71,2,f +9846,85984,14,1,f +9846,85984,72,2,f +9846,87079,72,1,f +9846,87079,14,1,f +9846,87087,71,4,f +9846,87609,15,1,f +9846,87697,0,4,f +9846,88072,71,2,f +9846,88930,1,1,f +9846,92402,0,4,f +9846,92410,71,1,f +9846,92583,41,1,f +9846,92585,4,1,f +9846,92590,28,1,f +9846,92946,1,4,f +9846,92947,71,1,f +9846,970c00,72,1,f +9846,970c00,272,2,f +9846,973pr2501c01,1,2,f +9846,973pr2503c01,0,1,f +9846,97895,14,2,f +9846,98100,71,1,f +9846,98138,36,2,f +9846,98138,36,1,t +9846,98263,71,1,f +9846,98282,15,4,f +9846,99206,71,2,f +9847,298c02,0,2,f +9847,3003,7,2,f +9847,3004,7,4,f +9847,3004,15,2,f +9847,3004p06,7,2,f +9847,3006,0,1,f +9847,3009,7,1,f +9847,3010,7,5,f +9847,3010ap04,7,2,f +9847,3020,7,3,f +9847,3022,7,7,f +9847,3023,7,2,f +9847,3023,1,1,f +9847,3023,0,2,f +9847,3024,7,2,f +9847,3024,36,2,f +9847,3031,7,1,f +9847,3033,7,1,f +9847,3037,7,1,f +9847,3039p23,15,1,f +9847,3039p34,15,1,f +9847,3040b,7,10,f +9847,3062b,36,2,f +9847,3068bp08,7,2,f +9847,3069bp25,7,1,f +9847,3460,7,2,f +9847,3475b,0,2,f +9847,3626apr0001,14,1,f +9847,3641,0,4,f +9847,3700,0,1,f +9847,3710,0,2,f +9847,3710,7,9,f +9847,3747a,7,2,f +9847,3747a,0,1,f +9847,3794a,1,1,f +9847,3795,7,2,f +9847,3832,7,1,f +9847,3838,4,1,f +9847,3842b,4,1,f +9847,3933a,7,2,f +9847,3934a,7,2,f +9847,3935,7,2,f +9847,3936,7,2,f +9847,3937,1,1,f +9847,3938,1,1,f +9847,3940b,0,3,f +9847,3941,0,2,f +9847,3941,15,1,f +9847,3956,0,1,f +9847,3957a,36,4,f +9847,4032a,0,3,f +9847,4070,1,2,f +9847,4070,7,6,f +9847,4213,46,2,f +9847,4229,0,9,f +9847,4286,7,6,f +9847,4287,7,2,f +9847,4315,0,3,f +9847,4349,0,4,f +9847,4474,34,1,f +9847,4589,36,2,f +9847,4590,0,1,f +9847,4598,15,1,f +9847,4600,7,2,f +9847,4624,7,4,f +9847,4730,15,1,f +9847,4732,0,1,f +9847,4735,1,2,f +9847,4735,0,2,f +9847,4737,0,2,f +9847,4740,34,2,f +9847,4740,36,2,f +9847,4740,33,1,f +9847,6141,33,1,f +9847,6141,36,2,f +9847,73590c01a,46,6,f +9847,970c00,4,1,f +9847,973p90c02,4,1,f +9849,30141,70,1,f +9849,3626bpr0835,14,1,f +9849,88646,0,1,f +9849,95324,0,1,f +9849,970c00,0,1,f +9849,973pr1832c01,4,1,f +9850,13285pr01,25,1,f +9850,23306,383,1,f +9850,23306,71,3,f +9850,2357,335,2,f +9850,2412b,72,2,f +9850,2412b,320,1,f +9850,2420,70,2,f +9850,2431,320,4,f +9850,2432,320,1,f +9850,2456,0,1,f +9850,2476a,72,2,f +9850,2524,70,2,f +9850,2540,71,1,f +9850,2555,71,2,f +9850,2555,0,1,f +9850,2569,0,2,f +9850,2654,71,3,f +9850,3001,71,2,f +9850,3004,70,4,f +9850,3008,0,2,f +9850,30136,19,7,f +9850,30191,71,1,f +9850,3020,72,3,f +9850,3020,19,2,f +9850,3022,320,2,f +9850,3023,19,5,f +9850,3023,379,5,f +9850,3023,320,5,f +9850,3029,320,2,f +9850,30304,72,1,f +9850,3031,335,3,f +9850,3032,72,1,f +9850,3033,72,1,f +9850,30358,71,1,f +9850,30358,72,2,f +9850,3037,72,1,f +9850,30374,41,1,f +9850,30408px2,15,1,f +9850,30562,19,2,f +9850,30565,320,2,f +9850,30565,335,2,f +9850,3062b,46,1,f +9850,3063b,0,2,f +9850,3068b,320,1,f +9850,3068b,71,1,f +9850,3069b,0,1,f +9850,3069bpr0070,0,1,f +9850,3245b,19,3,f +9850,32474,19,2,f +9850,3298,320,1,f +9850,3307,19,1,f +9850,3623,379,2,f +9850,3623,320,2,f +9850,3626b,14,1,f +9850,3626bpr0342,14,1,f +9850,3626bps3,14,1,f +9850,3626bps4,14,1,f +9850,3666,320,2,f +9850,3666,72,3,f +9850,3700,15,2,f +9850,3710,320,1,f +9850,3794a,379,6,f +9850,3795,72,1,f +9850,3795,335,2,f +9850,3829c01,0,1,f +9850,3830,70,3,f +9850,3831,70,3,f +9850,3899,47,1,f +9850,3901,70,1,f +9850,3901,19,1,f +9850,3901,71,1,f +9850,3937,72,3,f +9850,3939,47,1,f +9850,3941,47,1,f +9850,40374,378,2,f +9850,40375,378,2,f +9850,40379,378,1,f +9850,40380c01,378,2,f +9850,40395,378,1,f +9850,4079,0,2,f +9850,4079,70,2,f +9850,42446,71,1,f +9850,4274,71,1,t +9850,4274,71,1,f +9850,43337,72,3,f +9850,4349,0,1,f +9850,4599a,0,1,f +9850,47396,378,1,f +9850,47545pr01,3,1,f +9850,4865a,71,3,f +9850,4865a,320,2,f +9850,6134,0,1,f +9850,6134,19,2,f +9850,6141,36,2,f +9850,6141,36,1,t +9850,6183,19,1,f +9850,6231,320,2,f +9850,6564,320,1,f +9850,6565,320,1,f +9850,6636,335,2,f +9850,75c22,72,2,f +9850,970c00pr0033,272,1,f +9850,970c02pb03,19,1,f +9850,970x026,15,1,f +9850,970x192,19,1,f +9850,970x192,232,1,f +9850,973pr0520c01,15,1,f +9850,973ps3c01,15,1,f +9850,973ps5c01,0,1,f +9850,973ps6c01,19,1,f +9850,973px323c01,19,1,f +9851,3003,15,1,f +9851,3003,4,1,f +9851,3004,0,4,f +9851,3022,0,4,f +9851,3023,0,2,f +9851,3039,1,4,f +9851,3612,4,2,f +9851,3612,15,2,f +9851,3613,4,2,f +9851,3613,15,2,f +9851,3614a,14,4,f +9851,3660a,1,4,f +9851,685px3,14,1,f +9851,685px4,14,1,f +9851,792c03,4,1,f +9851,792c03,15,1,f +9851,bb15b,7,1,f +9851,bb15b,0,1,f +9851,rb00166,15,1,f +9852,15573,71,1,f +9852,15573,15,1,f +9852,2362b,47,2,f +9852,2415,71,3,f +9852,2420,4,4,f +9852,2431,15,2,f +9852,2432,71,1,f +9852,2432,72,1,f +9852,2437,47,1,f +9852,2445,15,1,f +9852,2445,0,1,f +9852,2462,71,2,f +9852,2496,0,2,f +9852,2655,71,2,f +9852,2780,0,4,f +9852,298c02,0,1,f +9852,3001,14,1,f +9852,3003,320,2,f +9852,3003,1,1,f +9852,3004,15,4,f +9852,3004,320,1,f +9852,3004,1,1,f +9852,3005,28,24,f +9852,3005,15,4,f +9852,3005,0,4,f +9852,3008,71,2,f +9852,3008,15,2,f +9852,3009,71,3,f +9852,3009,15,4,f +9852,3010,15,4,f +9852,3010,4,4,f +9852,3010,1,2,f +9852,3010,71,2,f +9852,3020,4,8,f +9852,3021,15,8,f +9852,3021,0,3,f +9852,3022,70,3,f +9852,3022,4,4,f +9852,3023,28,2,f +9852,3023,4,9,f +9852,3023,15,8,f +9852,3023,0,9,f +9852,3024,4,4,f +9852,3024,15,8,f +9852,3024,0,12,f +9852,3028,28,1,f +9852,3029,72,4,f +9852,3030,15,3,f +9852,3031,2,1,f +9852,3032,15,3,f +9852,3033,0,2,f +9852,3034,0,1,f +9852,3034,72,3,f +9852,3034,71,1,f +9852,3035,0,2,f +9852,30357,15,4,f +9852,30367c,15,2,f +9852,30374,0,2,f +9852,3038,0,4,f +9852,3039pr0001,15,3,f +9852,3039pr0014,0,2,f +9852,3045,0,4,f +9852,30503,15,2,f +9852,3068b,15,3,f +9852,3068bpr0201,15,1,f +9852,3069b,15,7,f +9852,3070b,15,2,f +9852,3070b,0,3,f +9852,32123b,71,2,f +9852,32124,0,2,f +9852,33291,10,3,f +9852,3460,15,8,f +9852,3460,0,4,f +9852,3464,15,3,f +9852,3622,71,2,f +9852,3624,0,1,f +9852,3626bpr0314,14,1,f +9852,3626bpr0325,14,1,f +9852,3626bpr0386,14,1,f +9852,3626bpr0388,14,1,f +9852,3626c,47,1,f +9852,3626cpr0893,14,1,f +9852,3666,15,8,f +9852,3678b,72,1,f +9852,3679,71,2,f +9852,3680,4,1,f +9852,3680,0,1,f +9852,3700,4,4,f +9852,3702,14,2,f +9852,3710,0,7,f +9852,3710,28,8,f +9852,3710,15,10,f +9852,3741,2,1,f +9852,3742,4,1,f +9852,3747b,4,1,f +9852,3794b,72,1,f +9852,3795,71,4,f +9852,3852,191,1,f +9852,3895,0,2,f +9852,3899,4,2,f +9852,3900,15,2,f +9852,3901,71,1,f +9852,3901,0,1,f +9852,3941,27,6,f +9852,3942b,25,1,f +9852,3942c,15,1,f +9852,3957a,71,1,f +9852,4079,70,2,f +9852,4079,0,2,f +9852,4162,0,5,f +9852,4162pr0021,0,1,f +9852,41769,0,1,f +9852,41770,0,1,f +9852,43712,4,2,f +9852,43719,4,3,f +9852,43722,15,2,f +9852,43723,15,2,f +9852,44126,15,1,f +9852,4445,0,2,f +9852,4449,70,1,f +9852,44728,0,1,f +9852,4477,0,4,f +9852,4536,15,2,f +9852,45677,15,2,f +9852,4733,71,1,f +9852,4740,15,2,f +9852,4740,4,1,f +9852,4855,4,1,f +9852,4856a,4,1,f +9852,4865a,47,5,f +9852,4871,4,3,f +9852,54383,15,1,f +9852,54384,15,1,f +9852,55295,0,1,f +9852,55296,0,1,f +9852,55297,0,1,f +9852,55298,0,1,f +9852,55299,0,1,f +9852,55300,0,1,f +9852,57895,47,1,f +9852,59363,70,1,f +9852,59895,0,3,f +9852,59900,25,1,f +9852,59900,15,2,f +9852,60477,15,2,f +9852,60596,0,2,f +9852,60616a,47,1,f +9852,60849,71,5,f +9852,60897,15,2,f +9852,6106,71,2,f +9852,6111,4,2,f +9852,6111,0,4,f +9852,6141,0,4,f +9852,6141,25,3,f +9852,6141,27,3,f +9852,6141,36,1,f +9852,6141,15,12,f +9852,6141,34,1,f +9852,6239,15,1,f +9852,62810,484,1,f +9852,63864,4,2,f +9852,63864,71,4,f +9852,63864,15,2,f +9852,64225,4,2,f +9852,6636,15,7,f +9852,72454,4,3,f +9852,72475,40,4,f +9852,73983,15,4,f +9852,85080,320,2,f +9852,85984,4,10,f +9852,87079,0,3,f +9852,87079,15,2,f +9852,87083,72,2,f +9852,87087,71,4,f +9852,87087,4,6,f +9852,87580,4,1,f +9852,87580,2,12,f +9852,92410,71,1,f +9852,93606,4,1,f +9852,95343,70,1,f +9852,95344,28,1,f +9852,970c00,1,1,f +9852,970c00,272,1,f +9852,970c00,25,1,f +9852,970c00,15,1,f +9852,970c00,0,1,f +9852,973pr1160c01,1,1,f +9852,973pr1166c01,272,1,f +9852,973pr1238c01,0,1,f +9852,973pr1240c01,1,1,f +9852,973pr1918c01,73,1,f +9852,98138,47,7,f +9852,98138,33,4,f +9852,98138,36,4,f +9852,98283,28,74,f +9852,99207,71,1,f +9852,99784,71,1,f +9854,2412b,72,1,f +9854,2432,72,2,f +9854,3003,4,1,f +9854,3022,4,10,f +9854,3031,0,6,f +9854,30377,0,4,f +9854,3062b,72,1,f +9854,30663,71,1,f +9854,4032a,72,2,f +9854,44728,72,2,f +9854,4522,0,1,f +9854,4740,36,4,f +9854,6117,72,1,f +9854,6141,71,1,f +9854,6141,36,2,f +9854,75937,179,1,f +9854,86208,72,4,f +9854,98313,148,4,f +9854,99207,71,2,f +9855,3003,15,1,f +9855,3020,4,1,f +9855,3021,4,1,f +9855,3024,33,1,f +9855,3024,33,2,t +9855,3039,47,1,f +9855,3641,0,4,f +9855,4600,0,2,f +9855,4624,14,4,f +9857,11816pr0005,78,1,f +9857,2412b,71,1,f +9857,2437,47,1,f +9857,2441,0,1,f +9857,3022,14,1,f +9857,3022,71,1,f +9857,3023,30,3,f +9857,3069b,29,3,f +9857,3622,15,2,f +9857,4081b,322,2,f +9857,44674,15,1,f +9857,44728,15,1,f +9857,4865b,322,1,f +9857,50951,0,4,f +9857,60212,15,1,f +9857,92258,0,1,f +9857,92456pr0011c01,78,1,f +9857,92818pr0001c01,272,1,f +9857,93095,29,1,f +9857,93594,179,4,f +9858,10928,72,2,f +9858,11946,0,1,f +9858,11947,0,1,f +9858,15362,0,2,f +9858,19086,72,1,f +9858,21560,0,2,f +9858,21561pr0007,0,1,f +9858,21562,0,2,f +9858,21755,148,1,f +9858,21987,36,1,f +9858,24010,0,1,f +9858,24122,148,1,f +9858,24124,0,1,f +9858,24890,0,1,f +9858,24900,0,1,f +9858,25343,0,1,f +9858,2780,0,10,f +9858,32062,4,1,f +9858,32072,0,3,f +9858,32123b,71,5,f +9858,32138,0,1,f +9858,32449,0,4,f +9858,32523,0,2,f +9858,33299a,0,1,f +9858,43093,1,6,f +9858,4519,71,1,f +9858,53585,0,4,f +9858,59426,72,1,f +9858,6632,0,1,f +9858,74261,0,4,f +9858,87083,72,2,f +9858,87994,36,2,f +9858,90605,0,2,f +9858,90608,72,2,f +9858,90609,0,2,f +9858,90615,72,2,f +9858,90638,0,2,f +9858,90639,0,2,f +9858,90640,0,2,f +9858,90661,0,2,f +9858,93575,0,2,f +9862,15573,71,2,f +9862,2419,72,1,f +9862,2420,71,2,f +9862,2420,1,4,f +9862,2432,1,2,f +9862,2450,71,2,f +9862,2450,72,2,f +9862,298c02,71,1,t +9862,298c02,71,2,f +9862,3005,1,2,f +9862,3020,1,4,f +9862,3020,72,1,f +9862,3021,15,1,f +9862,3021,14,1,f +9862,3022,1,3,f +9862,3023,46,8,f +9862,3023,0,1,f +9862,3024,1,1,t +9862,3024,72,1,t +9862,3024,1,2,f +9862,3024,72,4,f +9862,3068b,71,1,f +9862,3069b,1,3,f +9862,3070b,14,2,f +9862,3070b,36,1,f +9862,3070b,36,1,t +9862,3070b,34,1,t +9862,3070b,71,1,f +9862,3070b,71,1,t +9862,3070b,14,1,t +9862,3070b,34,1,f +9862,3460,71,1,f +9862,3623,1,2,f +9862,3623,72,2,f +9862,3700,1,2,f +9862,3710,1,1,f +9862,3839b,71,1,f +9862,4070,71,2,f +9862,4081b,71,2,f +9862,41769,71,2,f +9862,41770,71,2,f +9862,4740,71,5,f +9862,48336,4,1,f +9862,54200,71,1,f +9862,54200,71,1,t +9862,54200,46,1,t +9862,54200,46,6,f +9862,59900,71,2,f +9862,60470a,71,2,f +9862,6141,36,4,f +9862,6141,36,1,t +9862,63868,72,2,f +9862,73983,1,2,f +9862,85984,1,1,f +9862,85984,71,2,f +9862,98100,71,4,f +9864,10314,26,1,f +9864,11203pr0012,191,1,f +9864,11203pr0013,29,1,f +9864,11211,19,1,f +9864,11213,322,1,f +9864,11403pr0005c01,379,1,f +9864,11477,26,2,f +9864,11609,191,1,f +9864,11618,191,1,f +9864,11816pr0002,78,1,f +9864,11816pr0006,78,1,f +9864,15395,4,2,f +9864,15395,322,2,f +9864,15470,70,1,f +9864,18646,29,1,f +9864,18649,71,1,f +9864,18854,45,1,f +9864,20482,47,6,f +9864,22888,15,2,f +9864,23969,26,2,f +9864,23969,322,2,f +9864,2412b,71,3,f +9864,24131,322,1,f +9864,24131,191,1,f +9864,24131,26,1,f +9864,2431,26,4,f +9864,2453b,15,2,f +9864,2454a,15,2,f +9864,3001,85,2,f +9864,3001,15,5,f +9864,3003,27,1,f +9864,3003,15,1,f +9864,3004,26,6,f +9864,3004,15,2,f +9864,3008,15,2,f +9864,3010,26,2,f +9864,3010,322,1,f +9864,30151b,47,1,f +9864,3022,322,1,f +9864,3022,191,2,f +9864,3023,29,2,f +9864,30261,15,1,f +9864,30367c,322,1,f +9864,30367c,4,1,f +9864,30374,15,3,f +9864,3039pr0020,15,1,f +9864,30414,71,1,f +9864,3062b,70,1,f +9864,3069bpr0100,2,1,f +9864,3069bpr0158,323,1,f +9864,3069bpr0168,70,1,f +9864,3245b,15,1,f +9864,32474,4,1,f +9864,33243,29,4,f +9864,33291,26,6,f +9864,33291,191,2,f +9864,33291,10,2,f +9864,33322,297,1,f +9864,3626b,14,1,f +9864,3626c,212,1,f +9864,3626c,27,1,f +9864,3710,27,2,f +9864,3795,15,1,f +9864,3937,4,2,f +9864,3941,15,1,f +9864,3942c,14,1,f +9864,4032a,71,1,f +9864,4495b,191,2,f +9864,4599b,71,1,f +9864,4740,70,2,f +9864,48729b,72,2,f +9864,59349,47,2,f +9864,59349,15,2,f +9864,60474,14,1,f +9864,60596,15,1,f +9864,60616a,47,1,f +9864,6124,42,1,f +9864,6134,71,2,f +9864,6141,4,1,f +9864,6141,41,1,f +9864,6141,1,1,f +9864,6141,46,1,f +9864,6141,45,3,f +9864,6141,70,1,f +9864,61485,71,1,f +9864,6254,70,1,f +9864,63965,15,2,f +9864,85080,15,4,f +9864,87079,15,1,f +9864,87580,85,2,f +9864,87580,26,3,f +9864,87580,322,7,f +9864,87580,4,1,f +9864,88293,26,4,f +9864,91405,19,1,f +9864,92255,226,1,f +9864,92438,19,1,f +9864,92456pr0082c01,78,1,f +9864,92456pr0099c01,78,1,f +9864,92818pr0012c01,322,1,f +9864,92950,15,1,f +9864,93092,30,1,f +9864,93352,308,1,f +9864,98138pr0024a,179,1,f +9866,2302,4,1,f +9866,2312c01,4,1,f +9866,3437,27,1,f +9866,3437,4,1,f +9866,3664pb20,484,1,f +9866,3664pb21,484,1,f +9866,40666,4,1,f +9866,62670,14,1,f +9866,62679,2,1,f +9866,6474,2,1,f +9866,98224,27,1,f +9866,98233,10,1,f +9866,b12dup01,9999,1,f +9867,11618,26,1,t +9867,11618,26,1,f +9867,11816pr0015,78,1,f +9867,15068,15,1,f +9867,15571,297,1,f +9867,15573,297,2,f +9867,15745,45,2,f +9867,15875pr0005c01,5,1,f +9867,18842,226,1,f +9867,2423,2,2,f +9867,2449,85,2,f +9867,2458,72,1,f +9867,2817,4,1,f +9867,3001,15,1,f +9867,3005,15,2,f +9867,30136,70,4,f +9867,30137,29,2,f +9867,30137,70,2,f +9867,30153,47,1,f +9867,3020,19,2,f +9867,3023,29,3,f +9867,3023,5,4,f +9867,3024,4,2,f +9867,3024,4,1,t +9867,3062b,15,1,f +9867,3068bpr0244,5,2,f +9867,32028,15,2,f +9867,3245b,15,1,f +9867,33172,25,1,f +9867,33183,10,1,t +9867,33183,10,1,f +9867,33291,4,1,t +9867,33291,4,3,f +9867,33322,297,1,f +9867,33322,297,1,t +9867,3666,29,1,f +9867,3710,19,1,f +9867,3795,29,1,f +9867,3941,70,1,f +9867,3958,19,1,f +9867,41769,70,1,f +9867,4488,71,1,f +9867,4489,297,1,f +9867,54200,297,6,f +9867,54200,297,1,t +9867,59900,129,1,f +9867,59900,297,1,f +9867,59900,129,1,t +9867,60481,85,2,f +9867,60594,70,1,f +9867,60607,297,2,f +9867,6124,45,1,f +9867,6124,45,1,t +9867,6141,297,1,t +9867,6141,297,4,f +9867,6256,29,1,f +9867,63864,15,2,f +9867,85984,5,4,f +9867,85984,15,1,f +9867,87079,15,1,f +9867,88072,71,1,f +9867,89522,297,1,f +9867,89522,297,1,t +9867,92456pr0063c01,78,1,f +9867,92593,15,2,f +9867,98138pr0017,29,2,f +9867,98138pr0017,29,1,t +9867,98387pr0001,15,1,f +9867,99781,15,1,f +9868,10164pr0001,15,1,f +9868,10169,84,1,f +9868,11609,191,1,f +9868,11609,191,1,t +9868,13786pr0002,484,1,f +9868,18674,15,2,f +9868,2420,4,1,f +9868,2420,2,1,f +9868,2431,71,1,f +9868,2431,70,3,f +9868,3004,28,12,f +9868,3005,70,2,f +9868,3020,288,1,f +9868,3020,72,3,f +9868,3020,71,2,f +9868,3020,320,2,f +9868,3021,72,2,f +9868,3022,70,1,f +9868,3023,288,4,f +9868,3023,19,1,f +9868,3023,72,2,f +9868,3023,71,2,f +9868,3023,15,2,f +9868,3023,2,4,f +9868,3024,72,2,f +9868,3024,70,1,t +9868,3024,2,1,t +9868,3024,2,4,f +9868,3024,72,1,t +9868,3024,70,2,f +9868,3035,19,2,f +9868,3069b,272,2,f +9868,3069b,320,1,f +9868,3069b,378,2,f +9868,3070b,71,2,f +9868,3070b,15,1,t +9868,3070b,320,2,f +9868,3070b,70,4,f +9868,3070b,71,1,t +9868,3070b,70,1,t +9868,3070b,15,2,f +9868,3070b,320,1,t +9868,32028,70,3,f +9868,3460,72,1,f +9868,3622,15,2,f +9868,3623,2,4,f +9868,3626cpr1162,14,1,f +9868,3633,0,1,f +9868,3666,72,2,f +9868,3679,71,1,f +9868,3680,0,1,f +9868,3700,71,1,f +9868,3710,320,2,f +9868,3710,19,1,f +9868,3795,71,1,f +9868,3835,0,1,f +9868,3899,14,1,f +9868,4032a,2,1,f +9868,4032a,15,1,f +9868,4070,2,1,f +9868,4162,71,1,f +9868,4274,71,1,f +9868,4274,71,1,t +9868,4733,71,2,f +9868,54200,182,1,f +9868,54200,182,1,t +9868,59900,46,1,f +9868,60474,4,1,f +9868,60475b,72,2,f +9868,6091,320,4,f +9868,6141,1,2,f +9868,6141,0,3,f +9868,6141,4,1,t +9868,6141,4,4,f +9868,6141,14,1,t +9868,6141,0,1,t +9868,6141,19,1,f +9868,6141,14,3,f +9868,6141,1,1,t +9868,6141,19,1,t +9868,63864,70,4,f +9868,64644,0,2,f +9868,87087,0,2,f +9868,87580,272,1,f +9868,87580,0,1,f +9868,93223,15,1,t +9868,93223,15,1,f +9868,970c00,4,1,f +9868,973pr2300c01,4,1,f +9868,98138pr0018,84,2,f +9868,98283,72,23,f +9869,2555,0,1,t +9869,2555,0,1,f +9869,3020,2,1,f +9869,3023,0,1,f +9869,30236,71,1,f +9869,3062b,4,3,f +9869,3062b,15,3,f +9869,3062b,4,1,t +9869,4081b,0,1,f +9869,4081b,0,1,t +9869,6141,36,2,f +9869,6141,36,1,t +9870,2340,15,2,f +9870,2412b,4,2,f +9870,2432,1,1,f +9870,2436,1,2,f +9870,2446,0,1,f +9870,2447,41,1,f +9870,2496,0,1,f +9870,2540,0,1,f +9870,2655,7,1,f +9870,3002,15,1,f +9870,3021,15,1,f +9870,3039,15,1,f +9870,3479,15,1,f +9870,3626bpr0001,14,1,f +9870,3795,0,1,f +9870,970c00,4,1,f +9870,973c02,4,1,f +9871,2357,14,9,f +9871,2412b,0,1,f +9871,2431,0,1,f +9871,2431,14,6,f +9871,2431,71,1,f +9871,2453a,14,4,f +9871,2454a,14,3,f +9871,2454a,0,1,f +9871,2496,0,2,f +9871,2555,0,5,f +9871,2655,71,2,f +9871,2877,72,6,f +9871,2921,71,3,f +9871,3001,2,1,f +9871,3001,14,2,f +9871,3001,72,3,f +9871,3002,72,5,f +9871,3004,14,24,f +9871,3004,0,5,f +9871,3004,2,2,f +9871,3004,72,9,f +9871,3005,14,26,f +9871,3005,72,2,f +9871,30055,0,3,f +9871,3008,14,2,f +9871,3009,14,8,f +9871,3010,14,8,f +9871,3010,72,2,f +9871,3020,72,1,f +9871,3021,70,1,f +9871,3022,2,1,f +9871,3022,4,1,f +9871,3023,72,4,f +9871,3023,15,1,f +9871,3023,70,2,f +9871,3023,4,1,f +9871,3024,14,3,f +9871,3024,0,2,f +9871,3028,71,2,f +9871,3031,2,1,f +9871,3037,0,6,f +9871,3037,72,1,f +9871,3039,0,22,f +9871,3039,14,4,f +9871,3040b,0,5,f +9871,3040b,72,2,f +9871,3040b,2,4,f +9871,3041,0,3,f +9871,3048c,0,2,f +9871,30505,0,1,f +9871,3062b,72,15,f +9871,3062b,46,3,f +9871,3062b,15,2,f +9871,3062b,70,4,f +9871,3069b,15,2,f +9871,3069b,4,1,f +9871,3069bpr0099,15,1,f +9871,3070b,72,2,t +9871,3070b,71,2,t +9871,3070b,71,36,f +9871,3070b,72,36,f +9871,3185,0,3,f +9871,32028,71,6,f +9871,33057,484,1,f +9871,3460,14,2,f +9871,3460,71,2,f +9871,3460,70,1,f +9871,3622,72,4,f +9871,3622,14,20,f +9871,3659,72,1,f +9871,3660,14,6,f +9871,3660,2,2,f +9871,3665,14,2,f +9871,3666,0,2,f +9871,3666,70,1,f +9871,3666,14,1,f +9871,3710,72,6,f +9871,3794a,0,1,f +9871,3795,14,3,f +9871,3795,71,2,f +9871,3832,0,1,f +9871,3857,2,1,f +9871,3899,14,1,f +9871,3899,4,1,f +9871,3941,15,2,f +9871,4006,0,1,f +9871,4032a,15,1,f +9871,4070,71,2,f +9871,4085c,71,2,f +9871,4150,15,1,f +9871,4162,14,3,f +9871,4282,14,2,f +9871,43898,72,1,f +9871,44375a,15,1,f +9871,4445,0,8,f +9871,4447,15,1,f +9871,4448,47,1,f +9871,4477,0,4,f +9871,4510,71,2,f +9871,4599a,0,2,f +9871,48336,0,3,f +9871,4864b,47,6,f +9871,54200,72,2,t +9871,54200,70,2,t +9871,54200,72,4,f +9871,54200,70,4,f +9871,57894,15,5,f +9871,57895,47,5,f +9871,6019,0,2,f +9871,60474,15,1,f +9871,60478,71,1,f +9871,60592,15,9,f +9871,60594,15,1,f +9871,60596,15,2,f +9871,60601,47,9,f +9871,60603,47,1,f +9871,60616a,47,1,f +9871,60623,0,1,f +9871,6091,4,2,f +9871,6112,14,1,f +9871,6141,0,6,f +9871,6141,34,12,f +9871,6141,4,3,t +9871,6141,14,5,f +9871,6141,4,7,f +9871,6141,25,2,t +9871,6141,25,4,f +9871,6141,14,3,t +9871,6141,34,2,t +9871,6141,0,2,t +9871,6231,4,2,f +9871,63965,15,1,f +9871,6636,14,5,f +9871,6636,0,2,f +9872,22921,7,1,f +9872,264,0,1,f +9872,3003,7,1,f +9872,3003,4,3,f +9872,3003,15,1,f +9872,3009,0,2,f +9872,3009,4,2,f +9872,3010,4,4,f +9872,33254c,9999,1,f +9872,3403c01,15,1,f +9872,3888c01,0,1,f +9872,3941,33,1,f +9872,4000,14,1,f +9872,4088px6,4,1,f +9872,4208,0,1,f +9872,4209,4,1,f +9872,4438,0,1,f +9872,4461,4,1,f +9872,5,4,1,f +9872,6187,7,1,f +9873,1177stk01,9999,1,t +9873,2435,2,1,f +9873,2437,41,1,f +9873,2543,4,1,f +9873,3004,4,1,f +9873,3004,1,1,f +9873,30235,0,1,f +9873,30236,8,1,f +9873,3626bpr0001,14,1,f +9873,3829c01,7,1,f +9873,4083,7,1,f +9873,6014a,15,4,f +9873,6015,0,4,f +9873,60169,7,1,f +9873,6111,4,2,f +9873,6132,15,1,f +9873,970x001,4,1,f +9873,973c02,4,1,f +9873,paper02,9999,1,f +9873,x206c01,15,1,f +9875,11090,0,4,f +9875,11213,71,1,f +9875,12607ass03pr03,2,1,f +9875,12609pr0001,28,1,f +9875,14769,71,3,f +9875,15064,0,4,f +9875,15535,72,2,f +9875,17264,0,2,f +9875,17265,0,1,f +9875,2357,72,2,f +9875,2419,71,2,f +9875,2420,14,2,f +9875,2431,42,4,f +9875,2431pr0017,14,2,f +9875,2453a,72,4,f +9875,2540,14,2,f +9875,2654,15,2,f +9875,30036,72,2,f +9875,3004,71,3,f +9875,3005,72,3,f +9875,3010,71,2,f +9875,3020,27,5,f +9875,3021,272,1,f +9875,3023,272,1,f +9875,3023,27,3,f +9875,30236,72,2,f +9875,30238,0,1,f +9875,3034,71,2,f +9875,30350b,41,2,f +9875,30363,71,4,f +9875,30367c,179,2,f +9875,3040b,72,4,f +9875,3040b,26,2,f +9875,30503,71,2,f +9875,30562,42,2,f +9875,30565,72,4,f +9875,3062b,42,2,f +9875,3068b,1,1,f +9875,3069b,26,7,f +9875,3069bpr0137,71,1,f +9875,32001,71,3,f +9875,32073,71,1,f +9875,3622,72,4,f +9875,3626cpr1415,78,1,f +9875,3679,71,2,f +9875,3680,0,2,f +9875,3710,27,2,f +9875,3710,272,8,f +9875,3738,72,2,f +9875,3941,42,1,f +9875,4032a,14,2,f +9875,4162,71,2,f +9875,46212,42,4,f +9875,4740,41,2,f +9875,4740,45,2,f +9875,48092,71,2,f +9875,51739,71,1,f +9875,54200,14,3,f +9875,59233pat0001,41,2,f +9875,59349,71,1,f +9875,6020,0,1,f +9875,60897,0,2,f +9875,6141,27,9,f +9875,6141,45,4,f +9875,6141,41,4,f +9875,61485,15,1,f +9875,63864,1,8,f +9875,87079,26,1,f +9875,87421,71,2,f +9875,88292,0,2,f +9875,92438,72,1,f +9875,92946,0,2,f +9875,92947,71,3,f +9875,92950,72,1,f +9875,95347,0,2,f +9875,970c00,272,1,f +9875,970c00pr0655,72,1,f +9875,973pr2655c01,15,1,f +9875,973pr2656c01,72,1,f +9875,98138,179,2,f +9875,98139,179,2,f +9876,2419,15,1,f +9876,3004,4,1,f +9876,3010,15,1,f +9876,3020,19,1,f +9876,3022,72,1,f +9876,3023,14,1,f +9876,3034,19,1,f +9876,3040b,1,2,f +9876,3069b,1,1,f +9876,3660,15,1,f +9876,3937,15,1,f +9876,3957b,15,1,f +9876,41767,15,1,f +9876,41768,15,1,f +9876,43710,1,2,f +9876,43711,1,2,f +9876,43719,72,1,f +9876,43898,41,1,f +9876,48183,71,1,f +9876,50373,15,1,f +9876,51739,71,1,f +9876,6134,71,1,f +9876,6141,0,2,f +9876,6254,15,1,f +9876,85984,15,1,f +9876,87580,1,1,f +9876,99781,71,1,f +9877,10048,484,1,f +9877,10048,308,1,f +9877,10053,179,1,t +9877,10053,179,1,f +9877,10509pr0002,0,2,f +9877,10904,0,2,f +9877,11010,334,2,t +9877,11010,334,1,f +9877,2339,71,8,f +9877,2357,71,3,f +9877,2420,28,8,f +9877,2431,288,4,f +9877,2460,0,1,f +9877,2462,72,1,f +9877,2476a,28,1,f +9877,3001,72,8,f +9877,3003,28,2,f +9877,3003,72,7,f +9877,3004,72,16,f +9877,3004,0,3,f +9877,3004,71,23,f +9877,3005,288,17,f +9877,3008,0,1,f +9877,3010,71,2,f +9877,3010,0,2,f +9877,3020,28,5,f +9877,3021,288,8,f +9877,3022,72,4,f +9877,3023,19,14,f +9877,3023,0,2,f +9877,30237a,70,2,f +9877,3024,28,6,f +9877,3032,72,3,f +9877,3033,288,1,f +9877,3036,72,2,f +9877,30381,0,2,f +9877,3039,72,11,f +9877,3040b,71,4,f +9877,3040b,28,6,f +9877,3040b,72,9,f +9877,30503,72,5,f +9877,3062b,71,3,f +9877,3069b,28,6,f +9877,3070b,72,2,f +9877,3070b,72,1,t +9877,32000,0,1,f +9877,3245c,71,4,f +9877,33051,10,1,f +9877,33057,484,1,f +9877,3307,71,1,f +9877,33172,25,1,f +9877,33183,10,1,f +9877,33183,10,1,t +9877,3622,71,8,f +9877,3626b,0,2,f +9877,3626cpr0974,78,1,f +9877,3626cpr0988,78,1,f +9877,3626cpr0989,78,1,f +9877,3659,72,3,f +9877,3659,71,2,f +9877,3660,71,9,f +9877,3666,0,1,f +9877,3673,71,1,t +9877,3673,71,1,f +9877,3701,71,1,f +9877,3710,71,8,f +9877,3741,2,5,f +9877,3741,2,2,t +9877,3795,72,5,f +9877,3830,72,2,f +9877,3831,72,2,f +9877,40234,71,1,f +9877,40243,72,8,f +9877,40244,19,1,f +9877,41879a,308,2,f +9877,4287,0,2,f +9877,4460b,72,12,f +9877,44728,0,1,f +9877,4491b,72,2,f +9877,4497,148,1,t +9877,4497,148,1,f +9877,4529,0,1,f +9877,4623,0,1,f +9877,47905,72,7,f +9877,48729b,0,2,t +9877,48729b,0,6,f +9877,54200,288,3,t +9877,54200,288,11,f +9877,59900,70,1,f +9877,60481,71,8,f +9877,60481,288,10,f +9877,6064,28,1,f +9877,6106,288,3,f +9877,6112,72,1,f +9877,61184,71,2,f +9877,6141,70,5,f +9877,6141,70,2,t +9877,63868,70,2,f +9877,64644,308,3,f +9877,64647,57,5,f +9877,64647,57,2,t +9877,6541,0,3,f +9877,73983,0,8,f +9877,73983,19,8,f +9877,75937,0,1,f +9877,85863,71,4,f +9877,87083,72,1,f +9877,87580,28,3,f +9877,88283,308,1,f +9877,88292,0,3,f +9877,92099,72,1,f +9877,92107,72,1,f +9877,92590,28,1,f +9877,92593,72,1,f +9877,95673,148,1,f +9877,95673,179,1,f +9877,96874,25,1,t +9877,970c00,0,2,f +9877,970c00pr0350,28,1,f +9877,973pr2055c01,70,1,f +9877,973pr2076c01,288,1,f +9877,973pr2077c01,0,2,f +9877,973pr2109c01,308,1,f +9877,98283,28,9,f +9877,98370,148,2,f +9877,98370,179,1,f +9877,99464,326,1,f +9877,99464,288,1,f +9882,3626bpr0649,14,1,f +9882,4449,0,1,f +9882,62810,308,1,t +9882,62810,308,1,f +9882,970c00,71,1,f +9882,973pr1617c01,2,1,f +9883,10159stk01,9999,1,t +9883,194cx1,2,1,f +9883,2340,14,2,f +9883,2340,15,2,f +9883,2343,47,2,f +9883,2357,15,8,f +9883,2357,1,1,f +9883,2357,14,4,f +9883,2362a,41,2,f +9883,2362b,14,2,f +9883,2362b,71,2,f +9883,2412b,4,5,f +9883,2412b,14,2,f +9883,2420,14,4,f +9883,2420,71,2,f +9883,2421,71,1,f +9883,2431,71,1,f +9883,2431,15,1,f +9883,2431,14,1,f +9883,2432,15,2,f +9883,2432,71,1,f +9883,2432,14,2,f +9883,2432,0,2,f +9883,2440p69,0,1,f +9883,2441,2,1,f +9883,2445,2,4,f +9883,2446,15,1,f +9883,2447,41,1,t +9883,2447,41,1,f +9883,2453a,15,4,f +9883,2454a,15,5,f +9883,2460,4,1,f +9883,2460,0,2,f +9883,2466,41,7,f +9883,2468,41,2,f +9883,2479,71,3,f +9883,2483,41,1,f +9883,2486,4,2,f +9883,2495,4,1,f +9883,2496,0,3,f +9883,2508,15,1,f +9883,2536,70,5,f +9883,2540,4,2,f +9883,2540,71,2,f +9883,2540,0,3,f +9883,2555,0,1,f +9883,2563,70,1,f +9883,2566,2,1,f +9883,2569,0,2,f +9883,2582,14,4,f +9883,2620,41,1,f +9883,2635a,15,2,f +9883,2655,71,2,f +9883,2877,15,3,f +9883,298c02,4,1,t +9883,298c02,71,1,t +9883,298c02,4,2,f +9883,298c02,71,1,f +9883,3001,15,1,f +9883,3001,71,1,f +9883,3002,0,1,f +9883,3003,0,1,f +9883,3003,15,1,f +9883,3003,14,8,f +9883,3004,14,2,f +9883,3004,71,3,f +9883,3004,0,2,f +9883,3004,4,2,f +9883,3004,15,6,f +9883,3004,1,6,f +9883,3005,15,18,f +9883,3005,14,2,f +9883,3005,1,3,f +9883,3005,71,3,f +9883,3008,15,8,f +9883,3009,1,1,f +9883,3009,15,4,f +9883,3010,14,1,f +9883,3010,15,5,f +9883,3020,14,3,f +9883,3020,71,1,f +9883,3020,15,3,f +9883,3020,0,3,f +9883,3020,4,5,f +9883,3021,15,1,f +9883,3021,14,1,f +9883,3021,71,1,f +9883,3021,0,1,f +9883,3022,15,1,f +9883,3022,4,7,f +9883,3022,0,4,f +9883,3022,2,8,f +9883,30225bp1,2,1,f +9883,3023,71,1,f +9883,3023,4,7,f +9883,3023,14,5,f +9883,3023,0,5,f +9883,3023,15,6,f +9883,3024,36,3,f +9883,3024,46,4,f +9883,3024,15,6,f +9883,3024,34,1,f +9883,3024,71,4,f +9883,3029,14,1,f +9883,3030,71,3,f +9883,3031,15,2,f +9883,3031,4,1,f +9883,3033,71,3,f +9883,3034,0,1,f +9883,3034,71,1,f +9883,3035,71,1,f +9883,3035,1,1,f +9883,3037,71,2,f +9883,3038,15,2,f +9883,3039,0,2,f +9883,3039pc5,71,1,f +9883,3039pr0005,15,1,f +9883,3040b,15,15,f +9883,3040b,14,3,f +9883,3040p32,71,2,f +9883,3062b,71,1,f +9883,3068b,4,1,f +9883,3068b,71,2,f +9883,3068b,14,4,f +9883,3069b,15,1,f +9883,3069b,4,3,f +9883,3069b,14,4,f +9883,3069bp68,15,1,f +9883,3070b,46,1,t +9883,3070b,4,1,t +9883,3070b,36,2,f +9883,3070b,36,1,t +9883,3070b,15,1,t +9883,3070b,4,2,f +9883,3070b,34,1,t +9883,3070b,15,3,f +9883,3070b,34,2,f +9883,3070b,46,2,f +9883,3139,0,14,f +9883,3188,14,1,f +9883,3189,14,1,f +9883,3298,4,2,f +9883,3430c01,71,1,f +9883,3456,15,1,f +9883,3460,1,1,f +9883,3460,71,8,f +9883,3460,0,3,f +9883,3460,15,1,f +9883,3460,14,1,f +9883,3474,15,1,f +9883,3475b,0,2,f +9883,3585,15,1,f +9883,3586,15,1,f +9883,3622,1,5,f +9883,3622,15,12,f +9883,3623,15,4,f +9883,3623,71,3,f +9883,3623,0,2,f +9883,3623,4,4,f +9883,3623,14,2,f +9883,3624,15,1,f +9883,3624,0,1,f +9883,3626bp02,14,1,f +9883,3626bp03,14,2,f +9883,3626bp07,14,3,f +9883,3626bp09,14,1,f +9883,3626bp7e,14,2,f +9883,3626bpr0001,14,2,f +9883,3626bpx11,14,1,f +9883,3633,0,2,f +9883,3641,0,12,f +9883,3660,14,1,f +9883,3665,15,6,f +9883,3666,15,2,f +9883,3666,71,1,f +9883,3666,0,6,f +9883,3676,4,2,f +9883,3676,14,2,f +9883,3679,71,5,f +9883,3680,4,1,f +9883,3680,0,3,f +9883,3680,71,1,f +9883,3710,4,2,f +9883,3710,1,2,f +9883,3710,71,4,f +9883,3710,15,4,f +9883,3710,0,2,f +9883,3730,0,1,f +9883,3741,2,2,f +9883,3742,14,2,t +9883,3742,14,6,f +9883,3747a,0,1,f +9883,3755,15,2,f +9883,3787,15,1,f +9883,3788,4,1,f +9883,3794a,14,3,f +9883,3794a,0,2,f +9883,3794a,15,5,f +9883,3795,4,1,f +9883,3795,0,1,f +9883,3829c01,4,2,f +9883,3829c01,15,1,f +9883,3832,15,3,f +9883,3833,4,1,f +9883,3839b,0,1,f +9883,3857,2,1,f +9883,3867,2,1,f +9883,3899,47,2,f +9883,3900,15,2,f +9883,3901,0,2,f +9883,3938,0,1,f +9883,3941,4,2,f +9883,3941,0,1,f +9883,3942c,4,1,f +9883,3942c,15,1,f +9883,3962b,0,2,f +9883,4032a,2,1,f +9883,4070,15,7,f +9883,4070,14,4,f +9883,4079,4,6,f +9883,4079,71,4,f +9883,4081b,4,2,f +9883,4081b,0,1,f +9883,4085c,15,4,f +9883,4162,71,1,f +9883,4162,15,1,f +9883,4175,71,2,f +9883,4215b,15,1,f +9883,4216,1,2,f +9883,4216,15,10,f +9883,4217,15,5,f +9883,4218,1,6,f +9883,4218,41,2,f +9883,4219,1,1,f +9883,4275b,0,1,f +9883,4276b,0,1,f +9883,4282,14,1,f +9883,4286,4,2,f +9883,4286,14,2,f +9883,4315,14,1,f +9883,4315,4,5,f +9883,4345b,71,2,f +9883,4345b,14,2,f +9883,4346,14,2,f +9883,4346,71,2,f +9883,4360,0,1,f +9883,44336pr03,2,2,f +9883,44343pr02,2,1,f +9883,4445,14,2,f +9883,4447,71,4,f +9883,4448,41,4,f +9883,4449,71,4,f +9883,4449,0,2,f +9883,4449,70,2,f +9883,4477,1,2,f +9883,4477,14,2,f +9883,4477,15,5,f +9883,4485,4,4,f +9883,4485,1,1,f +9883,4488,0,1,f +9883,4530,0,1,f +9883,4533,71,3,f +9883,4589,0,4,f +9883,4589,36,1,f +9883,4589,4,1,f +9883,4600,0,3,f +9883,4623,0,2,f +9883,4624,71,14,f +9883,4624,15,12,f +9883,4625,15,4,f +9883,476,15,1,f +9883,47899c01,71,1,f +9883,48183,4,1,f +9883,48183,1,1,f +9883,48183,0,1,f +9883,48183,15,1,f +9883,4854,14,1,f +9883,4854,4,4,f +9883,4855,14,1,f +9883,4855,4,2,f +9883,4856a,1,1,f +9883,4856a,15,1,f +9883,4857,15,4,f +9883,4861,14,1,f +9883,4862,41,12,f +9883,4863,15,6,f +9883,4864b,71,2,f +9883,4864b,41,1,f +9883,4864b,1,2,f +9883,4864b,15,2,f +9883,4865a,4,5,f +9883,4865a,14,12,f +9883,4865a,71,4,f +9883,4865a,15,4,f +9883,4867pb05,15,1,f +9883,4868b,15,2,f +9883,4869,71,2,f +9883,4870,71,7,f +9883,48933,15,1,f +9883,50373,14,2,f +9883,50373,15,1,f +9883,6081,15,2,f +9883,6087,71,2,f +9883,6111,15,6,f +9883,6141,33,1,t +9883,6141,46,1,t +9883,6141,33,9,f +9883,6141,36,9,f +9883,6141,15,30,f +9883,6141,36,1,t +9883,6141,15,1,t +9883,6141,46,10,f +9883,6141,47,8,f +9883,6141,47,1,t +9883,6148,2,4,f +9883,6152,41,1,f +9883,6153a,15,1,f +9883,6157,0,1,f +9883,6160c01,71,6,f +9883,73194c01,71,1,f +9883,92410,15,2,f +9883,92410,1,1,f +9883,970c00,0,2,f +9883,970c00,2,2,f +9883,970c00,15,2,f +9883,970c00,71,1,f +9883,970c00,4,1,f +9883,970c00,1,4,f +9883,973p70c01,6,1,f +9883,973p73c01,2,1,f +9883,973pb0031c01,1,1,f +9883,973pb0097c01,1,3,f +9883,973pb0128c01,15,1,f +9883,973pr1204c01,15,1,f +9883,973px130c01,15,1,f +9883,973px189c01,0,1,f +9883,973px20c01,0,1,f +9883,973px2c01,1,1,f +9885,2357,2,2,f +9885,2412b,0,1,f +9885,2419,4,1,f +9885,2420,0,2,f +9885,2420,25,2,f +9885,2540,0,3,f +9885,2555,14,2,f +9885,298c02,4,1,t +9885,298c02,0,1,t +9885,298c02,4,2,f +9885,298c02,0,2,f +9885,3001,4,1,f +9885,3001,0,2,f +9885,3002,2,2,f +9885,3002,4,1,f +9885,3003,2,3,f +9885,3004,2,3,f +9885,3004,6,4,f +9885,3004,25,1,f +9885,3004,14,1,f +9885,3004,27,1,f +9885,3004,1,1,f +9885,3005,0,1,f +9885,3009,0,2,f +9885,3009,25,2,f +9885,3010,4,1,f +9885,3010,6,4,f +9885,3010,2,5,f +9885,3020,1,2,f +9885,3020,0,4,f +9885,3020,2,6,f +9885,3020,8,2,f +9885,3021,25,1,f +9885,3021,1,1,f +9885,3021,2,4,f +9885,3021,4,2,f +9885,3022,8,1,f +9885,3022,7,1,f +9885,3022,1,2,f +9885,3022,2,3,f +9885,3022,0,5,f +9885,3022,14,1,f +9885,3023,6,2,f +9885,3023,14,1,f +9885,3023,15,2,f +9885,3023,8,1,f +9885,3024,4,2,f +9885,3034,6,2,f +9885,3034,2,1,f +9885,30365,0,15,f +9885,30365,2,4,f +9885,30383,2,4,f +9885,30383,0,10,f +9885,30386,4,10,f +9885,30386,2,8,f +9885,30387,4,8,f +9885,30389c,1,1,f +9885,3039,4,1,f +9885,3039,0,1,f +9885,3039,25,3,f +9885,3039,2,6,f +9885,30407,47,4,f +9885,3040b,73,2,f +9885,3040b,0,2,f +9885,3040b,4,2,f +9885,3040b,1,2,f +9885,3045,25,2,f +9885,3048c,27,6,f +9885,3048c,2,4,f +9885,3048c,0,2,f +9885,30540,6,4,f +9885,30541,4,2,f +9885,30552,8,12,f +9885,30553,0,18,f +9885,30554a,0,8,f +9885,30565,4,4,f +9885,30602,25,2,f +9885,32062,0,6,f +9885,3298,0,1,f +9885,3298,25,8,f +9885,3298,4,2,f +9885,3298,2,4,f +9885,3300,2,1,f +9885,3460,14,2,f +9885,3460,0,1,f +9885,3622,4,2,f +9885,3622,5,1,f +9885,3622,1,1,f +9885,3623,2,4,f +9885,3623,0,1,f +9885,3623,320,1,f +9885,3623,4,2,f +9885,3626b,15,2,f +9885,3660,2,4,f +9885,3660,1,1,f +9885,3660,4,2,f +9885,3665,4,2,f +9885,3666,1,1,f +9885,3666,4,1,f +9885,3700,2,1,f +9885,3705,0,6,f +9885,3706,0,6,f +9885,3710,0,2,f +9885,3710,2,1,f +9885,3710,25,6,f +9885,3710,4,1,f +9885,3710,14,2,f +9885,3710,27,4,f +9885,3730,0,1,f +9885,3747a,4,4,f +9885,3747a,2,2,f +9885,3794a,0,1,f +9885,3794a,4,1,f +9885,3794a,2,1,f +9885,3795,2,2,f +9885,3795,0,1,f +9885,3839b,4,1,f +9885,3839b,27,1,f +9885,3958,4,1,f +9885,4032a,2,12,f +9885,4070,15,2,f +9885,4070,2,4,f +9885,4081b,0,2,f +9885,4085c,0,2,f +9885,4085c,4,1,f +9885,41747,4,2,f +9885,41747,2,1,f +9885,41747,6,2,f +9885,41748,6,2,f +9885,41748,4,2,f +9885,41748,2,1,f +9885,42023,73,1,f +9885,4286,2,2,f +9885,4286,1,2,f +9885,4319,8,2,f +9885,43710,25,1,f +9885,43711,25,1,f +9885,43713,2,3,f +9885,43713,6,1,f +9885,43719,0,1,f +9885,43719,4,2,f +9885,43719,6,2,f +9885,43720,2,1,f +9885,43721,2,1,f +9885,43722,73,1,f +9885,43722,27,1,f +9885,43723,27,1,f +9885,43723,73,1,f +9885,44301a,25,2,f +9885,44301a,8,2,f +9885,44301a,1,8,f +9885,44302a,25,2,f +9885,44302a,0,2,f +9885,4589,2,1,f +9885,4623,4,1,f +9885,4740,42,2,f +9885,4740,15,2,f +9885,4740,47,2,f +9885,4855,6,3,f +9885,4858,6,1,f +9885,4871,6,1,f +9885,6007,8,1,f +9885,6069,6,1,f +9885,6091,4,3,f +9885,6091,379,1,f +9885,6141,14,2,f +9885,6141,8,1,t +9885,6141,15,4,f +9885,6141,4,1,t +9885,6141,27,12,f +9885,6141,27,1,t +9885,6141,0,6,f +9885,6141,8,2,f +9885,6141,0,1,t +9885,6141,4,5,f +9885,6141,14,1,t +9885,6141,15,1,t +9885,73983,0,8,f +9885,73983,1,4,f +9885,73983,2,8,f +9885,73983,6,4,f +9886,3004,4,4,f +9886,3004,2,2,f +9886,3021,2,1,f +9886,3660,2,1,f +9888,11090,70,6,f +9888,11153pr0002,70,2,f +9888,11213,322,2,f +9888,11215,71,1,f +9888,11458,72,3,f +9888,11477,72,1,f +9888,11477,70,4,f +9888,12825,71,1,f +9888,12825,0,1,f +9888,14417,72,4,f +9888,14418,71,2,f +9888,14419,72,2,f +9888,14704,71,2,f +9888,14769,0,1,f +9888,14769,71,1,f +9888,15068,72,1,f +9888,15071,0,1,f +9888,15207,72,4,f +9888,15303,36,2,f +9888,15400,72,1,f +9888,15535,72,2,f +9888,17011,148,1,f +9888,17013pr0001,72,1,f +9888,17292pr0001,70,1,f +9888,18277,72,1,f +9888,18759,322,2,f +9888,2357,0,2,f +9888,2412b,320,7,f +9888,2412b,179,9,f +9888,2420,272,2,f +9888,2458,71,4,f +9888,2540,72,1,f +9888,2540,71,1,f +9888,2569,71,1,f +9888,2569,71,1,t +9888,2654,182,1,f +9888,2780,0,6,f +9888,2780,0,3,t +9888,3003,2,1,f +9888,30031,0,1,f +9888,3004,321,4,f +9888,3004,0,2,f +9888,30136,308,4,f +9888,30173a,0,2,f +9888,30173b,0,1,t +9888,3020,19,1,f +9888,3020,70,3,f +9888,3020,320,1,f +9888,3020,71,1,f +9888,3021,71,2,f +9888,3022,14,2,f +9888,3022,84,1,f +9888,3023,288,5,f +9888,3023,72,1,f +9888,3023,41,4,f +9888,3023,182,6,f +9888,3023,321,7,f +9888,3024,182,1,f +9888,3024,182,1,t +9888,3031,72,1,f +9888,3034,72,2,f +9888,30363,320,1,f +9888,30375,72,2,f +9888,30375,308,2,f +9888,30381,0,1,f +9888,3039,14,1,f +9888,30503,72,4,f +9888,3062b,46,7,f +9888,3062b,72,4,f +9888,3062b,57,4,f +9888,3065,46,4,f +9888,3069b,14,1,f +9888,3069b,46,6,f +9888,3069b,0,1,f +9888,3070b,320,1,t +9888,3070b,320,4,f +9888,32000,72,2,f +9888,32064b,71,15,f +9888,32187,71,2,f +9888,32474,80,1,f +9888,32529,0,1,f +9888,32532,71,1,f +9888,3623,320,3,f +9888,3626cpr1510,0,1,f +9888,3626cpr1513,1,1,f +9888,3666,71,2,f +9888,3666,272,2,f +9888,3673,71,1,f +9888,3673,71,1,t +9888,3700,71,1,f +9888,3701,72,2,f +9888,3707,0,2,f +9888,3710,14,3,f +9888,3710,72,2,f +9888,3713,71,1,t +9888,3713,71,2,f +9888,3747b,70,2,f +9888,3794b,72,7,f +9888,3794b,320,2,f +9888,3794b,70,4,f +9888,3795,71,1,f +9888,3941,57,1,f +9888,3957a,47,2,f +9888,3960,41,2,f +9888,4032a,70,3,f +9888,4032a,72,2,f +9888,4079,1,1,f +9888,4162,320,4,f +9888,41879a,25,1,f +9888,4285b,72,1,f +9888,4285b,71,2,f +9888,43093,1,4,f +9888,4445,320,2,f +9888,44728,72,2,f +9888,44728,4,1,f +9888,4477,72,2,f +9888,4740,57,1,f +9888,48092,71,4,f +9888,48336,0,1,f +9888,4871,70,1,f +9888,49668,0,2,f +9888,50950,321,4,f +9888,50950,0,5,f +9888,51739,320,4,f +9888,53451,28,1,t +9888,53451,28,8,f +9888,54200,70,2,f +9888,54200,40,1,t +9888,54200,70,1,t +9888,54200,40,1,f +9888,59443,4,1,f +9888,6020,71,1,f +9888,60470a,0,1,f +9888,60477,308,2,f +9888,60478,0,1,f +9888,6063,72,1,f +9888,60897,71,1,f +9888,6091,14,2,f +9888,61409,0,4,f +9888,6141,57,12,f +9888,6141,70,1,t +9888,6141,46,1,t +9888,6141,57,2,t +9888,6141,70,4,f +9888,6141,41,7,f +9888,6141,46,4,f +9888,6141,41,2,t +9888,62462,179,5,f +9888,63864,72,2,f +9888,63868,70,2,f +9888,63868,71,2,f +9888,64448,72,2,f +9888,64644,71,1,f +9888,6553,72,4,f +9888,6587,28,4,f +9888,73983,288,2,f +9888,78c02,179,4,f +9888,78c02,179,1,t +9888,85080,71,4,f +9888,85984,72,5,f +9888,87083,72,1,f +9888,87544,0,2,f +9888,87580,71,4,f +9888,87752,40,1,f +9888,88072,72,1,f +9888,88289,179,1,f +9888,88930,321,1,f +9888,89523,72,1,f +9888,92099,72,1,f +9888,92107,72,1,f +9888,92280,15,2,f +9888,92474,47,1,f +9888,92593,71,2,f +9888,93273,0,2,f +9888,93274,71,3,f +9888,970c00,85,1,f +9888,970x026,72,1,f +9888,973pr2783c01,0,1,f +9888,973pr2785c01,85,1,f +9888,973pr2787c01,25,1,f +9888,98286,71,1,f +9888,98313,0,7,f +9888,98313,70,1,f +9888,99207,71,7,f +9888,99780,0,2,f +9888,99780,72,6,f +9889,777p06,15,1,f +9889,777p07,15,1,f +9889,777p11,15,1,f +9889,777p12,15,1,f +9889,777px8,15,1,f +9892,2413,15,2,f +9892,2420,72,2,f +9892,2431,72,1,f +9892,2431,15,1,f +9892,2437,40,1,f +9892,3003,0,1,f +9892,3005,72,1,f +9892,3010,15,2,f +9892,3020,15,3,f +9892,3020,4,1,f +9892,3021,72,4,f +9892,3022,71,1,f +9892,3023,0,5,f +9892,3024,15,1,f +9892,3024,72,2,f +9892,3031,71,1,f +9892,3039pc5,71,1,f +9892,3040b,15,2,f +9892,3068b,4,1,f +9892,3070b,14,1,f +9892,3070b,14,1,t +9892,3070b,15,1,t +9892,3070b,4,1,t +9892,3070b,4,1,f +9892,3070b,15,3,f +9892,3460,71,1,f +9892,3623,72,3,f +9892,3666,72,1,f +9892,3679,7,3,f +9892,3680,15,3,f +9892,3710,15,3,f +9892,3710,72,1,f +9892,3794a,15,1,f +9892,3795,71,2,f +9892,3937,71,1,f +9892,4079,6,3,f +9892,4162,72,1,f +9892,41769,15,4,f +9892,41770,15,4,f +9892,4282,71,1,f +9892,44301a,15,2,f +9892,44302a,15,2,f +9892,4449,73,1,f +9892,4449,0,1,f +9892,44571,15,4,f +9892,4477,15,1,f +9892,4477,72,1,f +9892,44822,15,4,f +9892,4854,71,2,f +9892,4855,71,2,f +9892,4856a,72,2,f +9892,4858,15,1,f +9892,4859,15,1,f +9892,4859,72,1,f +9892,4861,15,1,f +9892,4862,40,12,f +9892,4863,15,6,f +9892,4865a,4,2,f +9892,4865a,15,2,f +9892,4867,15,1,f +9892,4868b,15,2,f +9892,4869,71,2,f +9892,4870c02,71,3,f +9892,4871,71,1,f +9892,6134,0,1,f +9892,6141,47,1,f +9892,6141,36,1,f +9892,6141,15,1,t +9892,6141,36,1,t +9892,6141,34,1,t +9892,6141,34,1,f +9892,6141,47,1,t +9892,6141,15,2,f +9892,6636,15,2,f +9892,73983,72,4,f +9894,10197,72,4,f +9894,11211,71,2,f +9894,11477,4,8,f +9894,11641,148,1,f +9894,12825,72,2,f +9894,12825,0,1,f +9894,13547,4,2,f +9894,13731,4,2,f +9894,15303,36,3,f +9894,15400,72,2,f +9894,15406,0,1,f +9894,15619,4,1,f +9894,15621,36,1,f +9894,15705,308,1,f +9894,15827,0,2,f +9894,2412b,297,1,f +9894,2431,0,2,f +9894,2458,14,2,f +9894,2476,71,1,f +9894,2654,0,2,f +9894,2654,46,1,f +9894,2730,71,4,f +9894,2780,0,24,f +9894,298c02,71,2,f +9894,3001,72,2,f +9894,30031,0,1,f +9894,3004,4,2,f +9894,30157,72,1,f +9894,30162,297,4,f +9894,30162,72,1,f +9894,30173a,179,2,f +9894,3020,72,1,f +9894,3020,0,1,f +9894,3021,4,4,f +9894,3022,14,8,f +9894,3022,4,2,f +9894,3023,36,9,f +9894,3023,72,13,f +9894,3031,4,1,f +9894,3034,0,2,f +9894,30374,0,1,f +9894,30526,71,1,f +9894,3070b,4,4,f +9894,3070b,0,2,f +9894,32000,0,1,f +9894,32013,4,2,f +9894,32039,0,2,f +9894,32056,14,2,f +9894,32064b,4,2,f +9894,32064b,0,4,f +9894,32271,0,2,f +9894,32291,4,2,f +9894,32449,72,4,f +9894,32449,0,4,f +9894,32523,4,4,f +9894,32531,71,1,f +9894,3623,0,2,f +9894,3623,4,6,f +9894,3626cpr1282,0,2,f +9894,3626cpr1365,14,1,f +9894,3665,4,4,f +9894,3666,72,4,f +9894,3700,71,1,f +9894,3705,0,1,f +9894,3706,0,2,f +9894,3707,0,1,f +9894,3710,72,1,f +9894,3713,4,7,f +9894,3749,19,2,f +9894,3794b,4,1,f +9894,3794b,72,1,f +9894,3795,72,3,f +9894,3839b,71,2,f +9894,3894,4,5,f +9894,3941,36,3,f +9894,4032a,85,3,f +9894,4070,4,2,f +9894,4081b,71,2,f +9894,4081b,4,2,f +9894,4150pr0012,72,1,f +9894,4162,4,2,f +9894,41769,0,1,f +9894,41770,0,1,f +9894,41862,71,2,f +9894,42003,0,2,f +9894,4274,1,6,f +9894,4287,0,2,f +9894,43093,1,2,f +9894,43722,72,1,f +9894,43722,4,2,f +9894,43723,4,2,f +9894,43723,72,1,f +9894,43857,4,1,f +9894,44675,0,2,f +9894,44728,0,1,f +9894,44728,71,2,f +9894,4477,0,2,f +9894,4519,71,4,f +9894,4590,72,2,f +9894,4598,0,1,f +9894,4740,0,2,f +9894,47753,4,2,f +9894,47905,72,1,f +9894,4865b,72,2,f +9894,49668,4,2,f +9894,50946,71,1,f +9894,50950,4,4,f +9894,50967,4,2,f +9894,52501,72,2,f +9894,53454,36,1,f +9894,54200,297,2,f +9894,55978,0,4,f +9894,55981,0,2,f +9894,56145,297,4,f +9894,59443,4,2,f +9894,59443,14,1,f +9894,59900,36,7,f +9894,59900,297,4,f +9894,60474,72,1,f +9894,60478,72,2,f +9894,6091,4,6,f +9894,61070,4,1,f +9894,61071,4,1,f +9894,61072,179,3,f +9894,61184,71,2,f +9894,61252,297,2,f +9894,61403,179,1,f +9894,61409,4,4,f +9894,61409,72,2,f +9894,6141,47,2,f +9894,6141,297,18,f +9894,6141,36,14,f +9894,61485,0,1,f +9894,62360,0,1,f +9894,62361,4,2,f +9894,63868,0,2,f +9894,64644,297,1,f +9894,6536,4,2,f +9894,6541,0,4,f +9894,6541,4,4,f +9894,6558,1,2,f +9894,6587,28,2,f +9894,85984,4,3,f +9894,87083,72,4,f +9894,87087,0,4,f +9894,89201,0,2,f +9894,92690,71,2,f +9894,93606,4,1,f +9894,970c00,0,1,f +9894,970c00,4,1,f +9894,970c00pr0603,0,1,f +9894,973pr2476c01,4,1,f +9894,973pr2578c01,0,1,f +9894,973pr2579c01,0,1,f +9894,98137,297,2,f +9894,98139,179,2,f +9894,98141,297,2,f +9894,98141,179,5,f +9894,99207,0,1,f +9894,99780,0,4,f +9896,3003,71,5,f +9896,3003,15,16,f +9896,3003,6,6,f +9896,3004,36,8,f +9896,3004,15,6,f +9896,3023,15,3,f +9896,3062b,47,8,f +9896,3062b,36,12,f +9896,3062b,15,23,f +9896,3460,15,2,f +9896,3622,15,4,f +9896,3623,15,2,f +9896,3666,15,1,f +9896,3679,71,4,f +9896,3680,15,4,f +9896,4070,15,3,f +9896,4477,15,1,f +9896,60478,15,1,f +9896,6141,0,2,f +9896,6141,143,12,f +9896,6141,41,2,f +9896,6141,36,17,f +9896,6141,46,16,f +9896,6141,6,9,f +9896,6141,47,8,f +9896,6141,15,14,f +9896,6141,34,6,f +9896,63868,15,1,f +9897,10113,0,1,f +9897,3626cpb1302,15,1,f +9897,86038,0,1,f +9897,970x026,30,1,f +9897,973pb1923c01,30,1,f +9898,3001,4,2,f +9898,3002,14,12,f +9898,3003,14,2,f +9898,3003,4,2,f +9898,3004,14,2,f +9898,3009,1,3,f +9898,3027,4,2,f +9898,3031,14,1,f +9898,3665stk01,9999,1,t +9898,3899,1,2,f +9898,3979c02,4,3,f +9898,4071,4,1,f +9898,4072,14,1,f +9898,4094a,4,1,f +9898,4095,4,1,f +9898,fab4a,1,1,f +9898,u9206c01,14,1,f +9898,x592c04,0,1,f +9899,13247,484,1,f +9899,3011,2,1,f +9899,3011,10,1,f +9899,3437,484,3,f +9899,3437,2,1,f +9899,3437,10,1,f +9899,3437pb038,46,1,f +9899,6510,5,1,f +9899,6510,10,1,f +9899,92015,191,1,f +9899,92018,85,1,f +9900,2780,0,11,f +9900,2780,0,1,t +9900,2825,71,4,f +9900,2825,0,2,f +9900,2950,0,1,f +9900,32002,72,1,t +9900,32002,72,10,f +9900,32007,14,4,f +9900,32009,14,3,f +9900,32017,14,2,f +9900,32017,0,2,f +9900,32034,0,2,f +9900,32054,71,4,f +9900,32054,0,4,f +9900,32056,14,4,f +9900,32062,0,7,f +9900,32063,71,2,f +9900,32065,0,3,f +9900,32073,71,12,f +9900,32123b,71,7,f +9900,32123b,71,1,t +9900,32140,14,6,f +9900,32140,0,8,f +9900,32140,71,1,f +9900,32184,0,6,f +9900,32198,71,2,f +9900,32209,0,4,f +9900,32250,14,2,f +9900,32250,0,4,f +9900,32269,71,3,f +9900,32271,71,1,f +9900,32316,14,1,f +9900,32316,0,1,f +9900,32449,71,2,f +9900,32449,14,6,f +9900,32523,14,1,f +9900,32524,0,1,f +9900,32524,71,1,f +9900,32524,14,2,f +9900,32525,14,2,f +9900,32525,0,3,f +9900,32556,71,1,f +9900,33299a,71,2,f +9900,3647,71,1,t +9900,3647,71,1,f +9900,3648b,71,1,f +9900,3673,71,2,f +9900,3673,71,1,t +9900,3705,0,9,f +9900,3706,0,1,f +9900,3707,0,1,f +9900,3713,71,1,t +9900,3713,0,4,f +9900,3713,0,1,t +9900,3713,71,10,f +9900,3737,0,1,f +9900,3749,19,4,f +9900,4019,71,1,f +9900,40490,71,3,f +9900,41239,0,2,f +9900,41677,0,4,f +9900,41677,71,4,f +9900,43093,1,15,f +9900,44294,71,2,f +9900,4519,71,21,f +9900,4716,0,2,f +9900,50163,72,1,f +9900,6536,14,3,f +9900,6536,0,9,f +9900,6538b,71,9,f +9900,6538b,0,5,f +9900,6558,0,13,f +9900,6575,0,2,f +9900,6629,14,1,f +9900,6632,0,8,f +9900,680c01,0,2,f +9900,9244,71,1,f +9901,2412b,72,2,f +9901,2431,72,2,f +9901,2437,40,2,f +9901,298c02,15,2,f +9901,298c02,15,1,t +9901,3004,0,2,f +9901,3020,15,3,f +9901,3023,15,1,f +9901,3068b,15,1,f +9901,3069b,15,1,f +9901,3069bpr0101,71,1,f +9901,3624,15,1,f +9901,3626bpr0387,14,1,f +9901,3710,15,2,f +9901,3829c01,1,1,f +9901,3957a,15,1,f +9901,3962b,72,1,f +9901,4032a,0,1,f +9901,4085c,0,1,f +9901,43337,15,2,f +9901,4349,0,1,f +9901,45677,15,1,f +9901,4735,0,1,f +9901,50745,15,4,f +9901,51739,15,1,f +9901,52036,72,1,f +9901,52038,15,2,f +9901,52501,15,2,f +9901,54200,36,2,f +9901,54200,46,2,f +9901,54200,33,2,f +9901,6014b,15,4,f +9901,6015,0,4,f +9901,6157,0,2,f +9901,970c00,0,1,f +9901,973pr1188c01,0,1,f +9902,270c02,0,4,f +9902,27c01,14,2,f +9902,27c01,4,2,f +9902,29,14,2,f +9902,3001a,0,3,f +9902,3002a,1,2,f +9902,3002a,0,1,f +9902,3003,0,2,f +9902,3004,4,8,f +9902,3004,0,7,f +9902,3005,4,4,f +9902,3005,0,7,f +9902,3005,1,6,f +9902,3008,0,4,f +9902,3009,4,2,f +9902,3009,0,3,f +9902,3010,4,2,f +9902,3010,1,3,f +9902,3010,0,8,f +9902,3020,14,1,f +9902,3020,0,1,f +9902,3021,0,2,f +9902,3021,4,1,f +9902,3022,0,1,f +9902,3023,4,11,f +9902,3023,0,5,f +9902,3024,4,1,f +9902,3031,14,3,f +9902,3032,0,2,f +9902,3034,4,1,f +9902,3034,14,1,f +9902,3034,15,20,f +9902,3035,14,2,f +9902,3035,4,2,f +9902,3037,0,2,f +9902,3038,0,2,f +9902,3039,0,2,f +9902,3040a,4,2,f +9902,3040a,0,4,f +9902,3062a,0,1,f +9902,3069a,0,1,f +9902,3081cc01,14,1,f +9902,3087c,14,4,f +9902,3145,14,4,f +9902,3145,4,2,f +9902,3186,0,1,f +9902,3187,0,1,f +9902,3188,4,2,f +9902,3189,4,2,f +9902,3218,4,1,f +9902,3228a,1,8,f +9902,3229a,1,16,f +9902,3230a,1,16,f +9902,3297,4,1,f +9902,32bc01,14,2,f +9902,3359,4,4,f +9902,3443c02,4,1,f +9902,4178a,4,1,f +9902,458,0,4,f +9902,564c01,0,1,f +9902,699,1,1,f +9902,trainsig2,4,1,f +9902,wheel2a,4,4,f +9902,x466c11,15,1,f +9902,x489,4,1,f +9903,2780,0,1,f +9903,2780,0,2,t +9903,32174,272,2,f +9903,3705,0,1,f +9903,41668,135,3,f +9903,41669,33,2,f +9903,41670,1,4,f +9903,43093,1,1,t +9903,43093,1,2,f +9903,44813,135,2,f +9903,4519,71,1,f +9903,47296,72,2,f +9903,47303,143,1,f +9903,47312,72,1,f +9903,6536,0,3,f +9904,2339,308,2,f +9904,2417,288,2,f +9904,2423,2,2,f +9904,2449,72,1,f +9904,2555,70,2,f +9904,3005,72,4,f +9904,3008,71,2,f +9904,3010,72,2,f +9904,30153,47,1,f +9904,3023,72,4,f +9904,3034,71,4,f +9904,32056,72,4,f +9904,32062,4,4,f +9904,32064b,72,5,f +9904,32249,72,2,f +9904,32250,72,2,f +9904,3456,71,2,f +9904,3460,71,1,f +9904,3622,72,3,f +9904,3626bpr0546,484,2,f +9904,3894,72,1,f +9904,3937,378,4,f +9904,3938,0,4,f +9904,40239,0,1,f +9904,4070,70,1,f +9904,41677,72,2,f +9904,4286,70,1,f +9904,4477,71,1,f +9904,4477,72,4,f +9904,4497,0,2,f +9904,4515,71,2,f +9904,4589,70,9,f +9904,47847,72,1,f +9904,47990,72,1,f +9904,54200,72,2,f +9904,55236,288,3,f +9904,6005,72,6,f +9904,6091,72,2,f +9904,6091,71,5,f +9904,6141,72,6,f +9904,6587,72,1,f +9904,970x192,484,2,f +9904,973pr1397c01,484,2,f +9906,608p01,7,2,f +9907,x482,0,1,f +9909,2420,4,4,f +9909,2456,70,1,f +9909,2456,72,2,f +9909,2476a,19,4,f +9909,3001,320,2,f +9909,3001,72,3,f +9909,3002,4,2,f +9909,3003,72,2,f +9909,3004,4,3,f +9909,3004,72,8,f +9909,3005,320,2,f +9909,3005,4,4,f +9909,3009,4,2,f +9909,3009,19,2,f +9909,3020,4,7,f +9909,3020,484,2,f +9909,3020,72,4,f +9909,3021,484,5,f +9909,3021,320,12,f +9909,3021,19,9,f +9909,3022,320,17,f +9909,3022,484,1,f +9909,3023,70,8,f +9909,3023,484,1,f +9909,3023,19,5,f +9909,3023,4,5,f +9909,3023,72,8,f +9909,3023,320,36,f +9909,3024,19,2,f +9909,3024,70,4,f +9909,3024,72,2,f +9909,3024,320,10,f +9909,3031,70,3,f +9909,3034,0,4,f +9909,30363,72,8,f +9909,30363,70,2,f +9909,30364,71,1,f +9909,30365,71,2,f +9909,30365,4,2,f +9909,30383,72,8,f +9909,30389b,4,1,f +9909,3039,4,1,f +9909,3039,320,6,f +9909,3039,484,1,f +9909,3040b,320,6,f +9909,3040b,484,1,f +9909,30414,72,4,f +9909,3044b,19,8,f +9909,3045,320,2,f +9909,3048c,320,4,f +9909,30503,70,2,f +9909,3062b,19,2,f +9909,3069b,72,5,f +9909,3069b,320,4,f +9909,3070b,4,4,f +9909,3070b,320,2,f +9909,3460,0,1,f +9909,3460,320,5,f +9909,3460,72,2,f +9909,3622,4,6,f +9909,3623,70,4,f +9909,3623,0,1,f +9909,3623,72,1,f +9909,3623,19,3,f +9909,3623,320,13,f +9909,3660,19,5,f +9909,3660,4,2,f +9909,3660,72,1,f +9909,3660,70,1,f +9909,3660,320,2,f +9909,3665,4,4,f +9909,3665,320,2,f +9909,3665,19,2,f +9909,3666,320,16,f +9909,3666,72,2,f +9909,3666,19,2,f +9909,3666,70,2,f +9909,3700,72,4,f +9909,3710,19,1,f +9909,3710,320,22,f +9909,3710,70,3,f +9909,3710,4,2,f +9909,3710,484,5,f +9909,3710,72,2,f +9909,3747a,19,1,f +9909,3747a,72,2,f +9909,3747a,4,3,f +9909,3794a,70,4,f +9909,3794a,320,2,f +9909,3795,72,4,f +9909,3933,484,2,f +9909,3934,484,2,f +9909,3937,4,2,f +9909,3938,4,2,f +9909,4070,320,6,f +9909,41532,0,2,f +9909,41669,42,2,f +9909,41747,320,2,f +9909,41748,320,2,f +9909,41764,19,2,f +9909,41765,19,2,f +9909,41767,19,2,f +9909,41767,4,5,f +9909,41768,19,2,f +9909,41768,4,5,f +9909,41769,4,2,f +9909,41769,320,10,f +9909,41769,70,1,f +9909,41770,320,10,f +9909,41770,4,2,f +9909,41770,70,1,f +9909,42022,484,2,f +9909,42022,4,12,f +9909,42022,320,8,f +9909,42022,19,1,f +9909,42023,19,5,f +9909,42023,4,5,f +9909,42023,70,2,f +9909,42446,320,2,f +9909,4274,1,15,f +9909,4282,72,1,f +9909,4286,4,2,f +9909,4286,320,3,f +9909,4287,4,2,f +9909,43093,0,2,f +9909,43710,320,2,f +9909,43710,4,1,f +9909,43710,72,1,f +9909,43711,4,1,f +9909,43711,72,1,f +9909,43711,320,2,f +9909,43712,4,2,f +9909,43722,320,9,f +9909,43723,320,9,f +9909,44294,71,1,f +9909,44301a,4,4,f +9909,44301a,72,1,f +9909,44301a,71,5,f +9909,44302a,72,14,f +9909,44302a,4,6,f +9909,44302a,70,5,f +9909,44302a,19,4,f +9909,44567a,70,5,f +9909,44567a,72,2,f +9909,44728,72,2,f +9909,4589,19,3,f +9909,4733,320,1,f +9909,47455,19,10,f +9909,47905,19,1,f +9909,47905,72,4,f +9909,48169,72,10,f +9909,48170,71,4,f +9909,48171,72,6,f +9909,4854,19,1,f +9909,4871,4,1,f +9909,48933,72,1,f +9909,49668,15,22,f +9909,49668,19,23,f +9909,50303,4,2,f +9909,6091,4,4,f +9909,6141,36,3,f +9909,6141,34,3,f +9909,6141,0,5,f +9909,6191,4,1,f +9909,6541,4,4,f +9909,6564,4,8,f +9909,6565,4,8,f +9909,73983,19,2,f +9910,132a,0,2,f +9910,3001a,1,1,f +9910,3003,14,1,f +9910,3004,14,8,f +9910,3004,1,1,f +9910,3004,47,2,f +9910,3004p50,14,1,f +9910,3010,0,1,f +9910,3010,1,2,f +9910,3020,14,2,f +9910,3020,1,2,f +9910,3021,4,2,f +9910,3022,1,1,f +9910,3031,14,1,f +9910,3032,1,1,f +9910,3034,14,1,f +9910,3035,14,2,f +9910,3037,47,1,f +9910,3039,47,1,f +9910,3062a,0,2,f +9910,3137c01,0,7,f +9910,3139,0,14,f +9910,3149c01,7,2,f +9910,3183b,14,3,f +9910,3184,14,2,f +9910,3315,7,1,f +9910,7039,4,2,f +9910,7049b,0,1,f +9910,784,1,1,f +9910,818,1,2,f +9912,2412b,4,4,f +9912,2412b,15,1,f +9912,2420,4,2,f +9912,2431,15,2,f +9912,2433,4,2,f +9912,2436,0,1,f +9912,2446,1,1,f +9912,2447,41,1,f +9912,2508,7,1,f +9912,2540,0,3,f +9912,2610,14,1,f +9912,2625,0,1,f +9912,2625,4,1,f +9912,2626,0,1,f +9912,2654,0,3,f +9912,2926,7,2,f +9912,298c05,0,1,f +9912,3004,14,3,f +9912,3008,0,2,f +9912,3010,0,1,f +9912,3020,7,2,f +9912,3020,4,1,f +9912,3020,0,3,f +9912,3021,0,3,f +9912,3021,15,1,f +9912,3021,4,1,f +9912,3022,0,2,f +9912,3023,4,1,f +9912,3023,15,2,f +9912,3023,7,2,f +9912,3024,0,2,f +9912,3024,36,6,f +9912,3031,0,1,f +9912,3032,0,1,f +9912,3036,4,1,f +9912,3039,0,2,f +9912,3069b,7,2,f +9912,3069bp52,15,1,f +9912,3070b,46,2,f +9912,3139,0,4,f +9912,3479,0,1,f +9912,3623,0,2,f +9912,3626bp05,14,1,f +9912,3666,7,2,f +9912,3666,0,1,f +9912,3710,7,1,f +9912,3710,0,2,f +9912,3710,4,2,f +9912,3710,15,1,f +9912,3730,7,1,f +9912,3747b,0,1,f +9912,3788,0,2,f +9912,3795,0,1,f +9912,3795,7,1,f +9912,3821,0,1,f +9912,3822,0,1,f +9912,3823,41,2,f +9912,3829c01,15,2,f +9912,4081b,15,2,f +9912,4213,0,1,f +9912,4214,0,1,f +9912,4276b,7,2,f +9912,4477,7,2,f +9912,4485,4,1,f +9912,4624,15,4,f +9912,4715,15,1,f +9912,4865a,0,3,f +9912,6014a,15,4,f +9912,6015,0,4,f +9912,6019,4,2,f +9912,6141,46,2,f +9912,6141,46,1,t +9912,6152,41,1,f +9912,6157,0,2,f +9912,6596stk01,9999,1,t +9912,970c00,1,1,f +9912,973pr1156c01,1,1,f +9913,4331,14,1,f +9913,fab6b,9999,1,f +9913,fabed4,7,1,f +9914,30027b,0,2,f +9914,30028,0,2,f +9914,30602pb016,0,1,f +9914,32028,0,1,f +9914,3710,14,2,f +9914,3795,0,1,f +9914,3937,72,2,f +9914,3938,0,2,f +9914,41854,0,1,f +9914,41855,14,1,f +9914,43719,0,1,f +9914,4600,71,1,f +9914,6014b,0,2,f +9914,6015,0,2,f +9914,6141,14,6,f +9914,6141,14,1,t +9914,6157,72,1,f +9915,122c01,7,4,f +9915,3002a,1,8,f +9915,3003,1,3,f +9915,3004,1,20,f +9915,3004p20,1,1,f +9915,3004p90,1,2,f +9915,3008,1,5,f +9915,3009,1,4,f +9915,3010,1,1,f +9915,3020,7,4,f +9915,3021,1,1,f +9915,3021,7,2,f +9915,3023,1,1,f +9915,3023,7,1,f +9915,3027,1,1,f +9915,3036,46,2,f +9915,3039,7,5,f +9915,3039p23,1,3,f +9915,3039p34,1,1,f +9915,3040b,1,6,f +9915,3040b,7,4,f +9915,3062a,34,1,f +9915,3062a,36,2,f +9915,3063b,7,8,f +9915,3066,46,3,f +9915,3067,46,3,f +9915,3144,7,2,f +9915,3456,1,1,f +9915,3460,1,2,f +9915,3479,1,5,f +9915,3481,1,1,f +9915,3626apr0001,14,4,f +9915,3641,0,8,f +9915,3660,1,4,f +9915,3660p01,1,3,f +9915,3665,1,4,f +9915,3666,1,2,f +9915,3678a,47,2,f +9915,3679,7,4,f +9915,3680,7,3,f +9915,3680,1,1,f +9915,3703,1,1,f +9915,3754pr0001,1,1,f +9915,3787,7,2,f +9915,3794a,7,5,f +9915,3795,7,2,f +9915,3811,7,1,f +9915,3829c01,7,2,f +9915,3838,4,2,f +9915,3838,7,2,f +9915,3838,15,2,f +9915,3839a,7,3,f +9915,3842a,15,2,f +9915,3842a,4,2,f +9915,3937,7,2,f +9915,3938,7,2,f +9915,3940a,7,1,f +9915,3941,1,1,f +9915,3941,7,2,f +9915,3956,7,1,f +9915,3957a,7,2,f +9915,3959,7,1,f +9915,3960,7,1,f +9915,3961,7,1,f +9915,3962a,0,2,f +9915,970c00,15,2,f +9915,970c00,4,2,f +9915,973p90c02,4,2,f +9915,973p90c05,15,2,f +9916,10201,71,1,f +9916,11090,0,2,f +9916,11477,4,2,f +9916,11477,25,6,f +9916,12825,0,2,f +9916,14769pr1003,15,1,f +9916,3021,25,1,f +9916,3023,0,5,f +9916,3024,25,6,f +9916,3024,25,1,t +9916,3710,25,1,f +9916,4032a,4,3,f +9916,4081b,0,2,f +9916,43719,25,1,f +9916,43892,0,2,f +9916,44301a,0,6,f +9916,44302a,72,4,f +9916,44728,25,1,f +9916,47753,25,1,f +9916,51739,25,2,f +9916,53451,0,1,t +9916,53451,0,4,f +9916,60471,71,2,f +9916,60474,0,2,f +9916,60478,71,4,f +9916,6141,15,8,f +9916,6141,15,1,t +9916,93273,25,1,f +9917,2780,0,1,t +9917,2780,0,3,f +9917,32002,72,2,f +9917,32002,72,1,t +9917,32062,4,1,f +9917,32184,71,1,f +9917,32523,72,1,f +9917,41678,71,1,f +9917,43093,1,4,f +9917,47328,0,2,f +9917,50923,72,2,f +9917,53543,179,1,f +9917,53544,179,1,f +9917,54821,42,1,f +9917,60176,72,2,f +9917,61054,0,2,f +9917,64262,57,1,f +9917,64275,0,2,f +9917,64276,0,1,f +9917,64299,179,1,f +9917,6536,0,3,f +9917,6587,28,1,f +9917,87083,72,1,f +9917,87791,179,2,f +9917,87794,0,1,f +9917,87820,71,3,f +9917,87824,179,1,f +9917,87828,179,3,f +9917,87839,0,2,f +9919,3176,4,10,f +9920,2335p30,15,1,f +9920,2524,6,1,f +9920,2526,14,1,f +9920,2526,6,1,f +9920,2526,1,1,f +9920,2528pb01,0,1,f +9920,2530,8,2,f +9920,2543,1,1,f +9920,2544,0,1,f +9920,2545,0,1,f +9920,2546p01,4,1,f +9920,2550c01,6,1,f +9920,2561,6,1,f +9920,2562,6,1,f +9920,3062b,0,1,f +9920,3626bp44,14,1,f +9920,3626bp47,14,1,f +9920,3626bp48,14,1,f +9920,3626bpr0001,14,1,f +9920,3957a,0,1,f +9920,4738a,6,1,f +9920,4739a,6,1,f +9920,57503,334,2,f +9920,57504,334,1,f +9920,57505,334,1,f +9920,57506,334,1,f +9920,970c00,0,1,f +9920,970c00,15,2,f +9920,970d01,0,1,f +9920,973p33c01,14,1,f +9920,973p36c01,0,1,f +9920,973pb0206c01,15,2,f +9921,2352,14,2,f +9921,2356,4,1,f +9921,3001,4,14,f +9921,3001,1,16,f +9921,3001,15,16,f +9921,3001,14,14,f +9921,3001,0,8,f +9921,3001pr1,14,1,f +9921,3002,0,4,f +9921,3002,4,4,f +9921,3002,1,6,f +9921,3002,14,4,f +9921,3002,15,6,f +9921,3003,0,4,f +9921,3003,4,6,f +9921,3003,14,6,f +9921,3003,1,8,f +9921,3003,15,8,f +9921,3003pe1,14,2,f +9921,3006,4,2,f +9921,3185,15,4,f +9921,3483,0,4,f +9921,4130,14,1,f +9921,4131,4,1,f +9921,4132,14,1,f +9921,4133,4,1,f +9921,4180c02,0,2,f +9921,4202,1,1,f +9921,4204,2,1,f +9921,4727,2,2,f +9921,4728,4,1,f +9921,4728,1,1,f +9921,4743,4,1,f +9921,4744,14,1,f +9921,bfp002,9999,1,f +9922,4092,0,2,f +9924,3004,15,24,f +9924,3004,4,16,f +9924,3005,15,8,f +9924,3008,15,2,f +9924,3008p03,15,1,f +9924,3034,15,1,f +9924,3036,15,2,f +9924,645bc01,4,2,f +9924,820,7,1,f +9924,821,7,1,f +9924,822bc01,4,1,f +9928,11090,72,2,f +9928,11211,71,2,f +9928,11215,0,1,f +9928,11458,72,4,f +9928,11477,70,2,f +9928,15303,36,5,f +9928,15400,72,4,f +9928,15456,0,1,f +9928,15462,28,2,f +9928,18651,0,4,f +9928,2412b,70,3,f +9928,2431,70,4,f +9928,2445,70,4,f +9928,2450,484,8,f +9928,2877,71,2,f +9928,2921,70,2,f +9928,3020,70,4,f +9928,3021,70,1,f +9928,3023,70,2,f +9928,30259,70,2,f +9928,30386,71,2,f +9928,30414,0,2,f +9928,30552,72,2,f +9928,30553,72,2,f +9928,3176,71,4,f +9928,32001,71,1,f +9928,32015,0,2,f +9928,32064a,72,6,f +9928,32123b,71,6,f +9928,3623,72,2,f +9928,3626cpr1149,78,1,f +9928,3673,71,2,f +9928,3700,70,2,f +9928,3705,0,1,f +9928,3709,72,2,f +9928,3747a,72,1,f +9928,4032a,71,5,f +9928,41677,71,3,f +9928,41678,71,2,f +9928,41889,148,2,f +9928,41890,148,4,f +9928,42003,72,2,f +9928,42687,148,2,f +9928,4274,1,1,f +9928,43093,1,4,f +9928,43719,484,2,f +9928,44728,72,8,f +9928,4519,71,3,f +9928,47457,70,4,f +9928,47753,484,2,f +9928,50990pr0001,47,2,f +9928,51739,72,2,f +9928,54200,36,2,f +9928,58176,36,5,f +9928,58247,0,1,f +9928,61189pr1000,15,1,f +9928,6141,72,4,f +9928,87994,71,2,f +9928,970c00pr0631,15,1,f +9928,973pr2934c01,15,1,f +9928,99021,72,1,f +9929,3004,1,1,f +9929,3005pe1,15,1,t +9929,3005pe1,15,2,f +9929,3021,1,1,f +9929,3022,1,1,f +9929,3024,14,1,f +9929,3024,14,2,t +9929,3039,73,2,f +9929,3298,73,1,f +9929,3660,1,1,f +9929,3794a,1,1,f +9929,3794a,1,1,t +9929,48183,0,1,f +9929,6091,14,1,f +9930,60176,288,2,f +9930,60894,288,1,f +9930,60896,288,2,f +9930,60899,288,2,f +9930,64251,288,2,f +9930,64258,27,1,f +9930,64262,42,1,f +9930,64264,135,2,f +9930,87789,27,3,f +9930,87790,297,1,f +9930,87791,27,2,f +9932,11153,320,4,f +9932,11208,71,10,f +9932,11209,0,8,f +9932,11212,15,2,f +9932,11215,15,2,f +9932,11458,15,1,f +9932,11477,1,2,f +9932,13731,15,2,f +9932,14210,15,4,f +9932,15068,320,2,f +9932,15068,15,2,f +9932,15068pr0015,15,1,f +9932,15207,320,2,f +9932,15207,14,2,f +9932,15254,1,4,f +9932,15397,0,1,f +9932,15462,70,1,f +9932,15530,272,1,f +9932,15790,0,1,f +9932,18892,0,4,f +9932,18980,15,1,f +9932,18980,320,1,f +9932,19220,0,1,f +9932,22889,15,2,f +9932,22889,320,2,f +9932,2412b,0,1,f +9932,2412b,1,1,f +9932,2415,71,2,f +9932,2420,71,4,f +9932,2431,33,1,f +9932,2432,71,8,f +9932,2445,1,1,f +9932,2446,15,1,f +9932,2447,40,1,f +9932,2479,0,1,f +9932,2584,0,1,f +9932,2585,71,1,f +9932,2654,71,1,f +9932,28324,0,2,f +9932,298c02,14,2,f +9932,3002,2,1,f +9932,3002,4,1,f +9932,3003,1,1,f +9932,3003,71,1,f +9932,3004,72,1,f +9932,3010,15,2,f +9932,30192,72,1,f +9932,3020,0,1,f +9932,3020,14,3,f +9932,3021,19,1,f +9932,3021,72,2,f +9932,3022,2,3,f +9932,3023,15,2,f +9932,3023,1,3,f +9932,3023,47,2,f +9932,3023,4,2,f +9932,3024,0,6,f +9932,3024,182,2,f +9932,3030,72,1,f +9932,3034,0,2,f +9932,30363,0,1,f +9932,3039pr0013,15,1,f +9932,30414,14,2,f +9932,30414,71,3,f +9932,30592,72,1,f +9932,3069b,33,2,f +9932,3069b,297,2,f +9932,3069b,36,3,f +9932,3069bpr0100,2,2,f +9932,32270,0,1,f +9932,32530,72,2,f +9932,3464,15,2,f +9932,3626cpr1091,14,1,f +9932,3626cpr1144,14,1,f +9932,3626cpr1663,14,1,f +9932,3626cpr2141,14,1,f +9932,3660,15,2,f +9932,3666,0,2,f +9932,3673,71,1,f +9932,3710,0,2,f +9932,3710,71,3,f +9932,3710,320,2,f +9932,3710,14,1,f +9932,3795,320,1,f +9932,3795,72,2,f +9932,3795,15,3,f +9932,3829c01,14,1,f +9932,3829c01,71,1,f +9932,3832,15,2,f +9932,3832,71,4,f +9932,41334,0,1,f +9932,43722,0,1,f +9932,43723,0,1,f +9932,44126,72,1,f +9932,4477,0,2,f +9932,4488,71,2,f +9932,45677,15,1,f +9932,4624,15,2,f +9932,47457,72,3,f +9932,4865b,72,1,f +9932,50745,15,4,f +9932,50745,320,4,f +9932,50943,71,1,f +9932,50949,0,1,f +9932,54200,15,4,f +9932,54200,320,2,f +9932,54200,36,4,f +9932,54200,46,2,f +9932,56823c50,0,1,f +9932,57783,41,2,f +9932,59895,0,4,f +9932,60477,15,2,f +9932,60477,0,2,f +9932,6079,15,1,f +9932,61252,14,2,f +9932,61409,0,2,f +9932,61409,15,2,f +9932,6141,1,2,f +9932,61482,71,1,f +9932,61483,71,1,f +9932,6239,15,1,f +9932,62743,0,4,f +9932,62810,28,1,f +9932,6636,1,3,f +9932,85861,71,4,f +9932,85984,72,1,f +9932,85984,320,4,f +9932,85984,0,1,f +9932,85984pr0143,72,2,f +9932,87079,72,2,f +9932,87609,15,2,f +9932,87609,320,1,f +9932,87611,72,1,f +9932,87612,41,1,f +9932,87613,15,1,f +9932,87615,15,1,f +9932,87616,72,1,f +9932,92593,15,2,f +9932,93273,1,2,f +9932,93589,320,1,f +9932,970c00,72,1,f +9932,970c00,272,3,f +9932,973pr3627,212,1,f +9932,973pr3693,25,1,f +9932,973pr3694,272,1,f +9932,973pr3727,272,1,f +9932,98138,34,1,f +9932,98138,33,4,f +9932,98138,36,1,f +9932,99207,71,6,f +9934,4143,7,4,f +9934,73071,7,1,f +9934,9244,7,1,f +9935,2420,15,2,f +9935,2431,320,2,f +9935,2444,0,2,f +9935,2540,72,2,f +9935,2654,15,6,f +9935,2780,0,1,t +9935,2780,0,2,f +9935,30031,0,1,f +9935,30193,72,2,f +9935,30193,72,1,t +9935,3020,15,2,f +9935,3021,72,4,f +9935,3021,15,7,f +9935,3022,71,4,f +9935,3022,15,1,f +9935,3023,15,4,f +9935,3023,320,8,f +9935,3023,71,2,f +9935,3024,320,2,f +9935,30287pr02,272,1,f +9935,30304,72,1,f +9935,30360,15,2,f +9935,3037,15,2,f +9935,30374,41,1,f +9935,3039,15,2,f +9935,30503,15,4,f +9935,3068b,15,2,f +9935,3069b,70,1,f +9935,3298,70,1,f +9935,3626bpr0634,78,1,f +9935,3660,15,2,f +9935,3665,72,2,f +9935,3666,71,2,f +9935,3700,71,3,f +9935,3710,71,3,f +9935,3747b,15,1,f +9935,3794b,72,2,f +9935,3941,4,2,f +9935,4032a,71,3,f +9935,4032a,72,3,f +9935,4081b,71,4,f +9935,41769,15,1,f +9935,41770,15,1,f +9935,4282,72,2,f +9935,4286,15,2,f +9935,4287,15,2,f +9935,43722,15,1,f +9935,43723,15,1,f +9935,43898,72,4,f +9935,44728,71,4,f +9935,4497,135,1,f +9935,4522,0,2,f +9935,4590,72,1,f +9935,4740,0,2,f +9935,4740,33,2,f +9935,47457,72,1,f +9935,48183,15,1,f +9935,4854,15,1,f +9935,4855,15,1,f +9935,4856a,15,1,f +9935,4871,15,1,f +9935,48933,15,1,f +9935,51739,15,2,f +9935,54200,72,2,f +9935,54200,15,1,f +9935,54200,15,1,t +9935,54200,70,2,f +9935,54200,70,1,t +9935,54200,72,1,t +9935,6019,71,3,f +9935,60478,15,4,f +9935,6120,72,3,f +9935,6141,47,2,f +9935,6141,71,1,t +9935,6141,47,1,t +9935,6141,71,6,f +9935,61780,72,1,f +9935,63864,15,2,f +9935,64567,80,1,f +9935,85984,15,4,f +9935,87079,15,1,f +9935,87087,15,2,f +9935,87560pr0001,72,1,f +9935,88930,15,2,f +9935,89762,15,1,f +9935,89762,40,1,f +9935,970c00,71,1,f +9935,970x140,71,1,f +9935,973c47,71,1,f +9935,973pr1567c01,272,1,f +9936,132a,0,10,f +9936,242c01,4,4,f +9936,3001a,47,10,f +9936,3001a,15,5,f +9936,3001a,1,2,f +9936,3001a,0,1,t +9936,3001a,4,1,t +9936,3001a,4,16,f +9936,3001a,47,1,t +9936,3001a,14,3,t +9936,3001a,0,16,f +9936,3001a,14,55,f +9936,3002a,15,2,f +9936,3002a,1,3,f +9936,3002a,4,28,f +9936,3002a,0,5,f +9936,3002a,4,1,t +9936,3002a,47,2,f +9936,3002a,14,8,f +9936,3003,4,1,t +9936,3003,4,21,f +9936,3003,14,2,t +9936,3003,0,7,f +9936,3003,1,1,f +9936,3003,14,21,f +9936,3003,47,4,f +9936,3003,15,4,f +9936,3004,47,1,t +9936,3004,4,24,f +9936,3004,14,7,f +9936,3004,4,1,t +9936,3004,47,10,f +9936,3004,15,13,f +9936,3004,1,1,f +9936,3004,0,8,f +9936,3004,15,1,t +9936,3005,15,4,f +9936,3005,4,6,f +9936,3005,0,2,f +9936,3005,47,4,f +9936,3005,14,10,f +9936,3007,4,5,f +9936,3007,14,1,f +9936,3008,1,2,f +9936,3008,15,12,f +9936,3009,14,1,f +9936,3010,4,2,f +9936,3010,0,1,f +9936,3010,14,2,f +9936,3010pb035e,4,1,f +9936,3027,4,1,f +9936,3031,0,1,f +9936,3032,4,1,f +9936,3032,1,1,f +9936,3033,4,2,f +9936,3034,1,1,f +9936,3034,4,1,f +9936,3037,1,12,f +9936,3037,1,1,t +9936,3039,1,10,f +9936,3063b,4,4,f +9936,3081cc01,15,4,f +9936,3081cc01,4,3,f +9936,3183a,4,2,f +9936,3184,4,1,f +9936,3184,1,1,f +9936,3185,4,12,f +9936,3186,4,1,f +9936,3187,4,1,f +9936,3190,1,1,f +9936,3191,1,1,f +9936,3297,4,2,t +9936,3297,47,4,f +9936,3297,1,6,f +9936,3297,4,18,f +9936,3298,1,4,f +9936,3298,4,5,f +9936,3299,1,3,f +9936,3299,4,4,f +9936,3358,4,2,f +9936,3359,4,2,f +9936,3460,4,1,f +9936,3471,2,2,f +9936,3579,15,1,f +9936,3579,4,3,f +9936,3581,14,4,f +9936,3582,1,4,f +9936,36,0,2,f +9936,3612,0,2,f +9936,3612,15,2,f +9936,3612,1,2,f +9936,3613,15,2,f +9936,3613,0,2,f +9936,3613,14,2,f +9936,3613,1,2,f +9936,3614a,14,8,f +9936,453cc01,4,4,f +9936,685p01,14,1,f +9936,685px2,14,1,f +9936,685px3,14,1,f +9936,685px4,14,1,f +9936,700ed,2,2,f +9936,7039,4,6,f +9936,7049b,0,6,f +9936,715,4,2,f +9936,792c03,15,1,f +9936,792c03,0,1,f +9936,792c03,1,1,f +9936,792c03,4,1,f +9936,7930,4,2,f +9936,7930,1,1,f +9936,7930,15,1,f +9936,x196,0,1,f +9936,x197,6,2,f +9936,x197bun,7,1,f +9936,x407,0,1,f +9936,x407,1,1,f +9937,32073,0,1,f +9937,32174,0,6,f +9937,32556,7,1,f +9937,3706,0,2,f +9937,41662,6,2,f +9937,41665,6,2,f +9937,41666,7,2,f +9937,41667,7,1,f +9937,41668,6,2,f +9937,41669,34,2,f +9937,41670,19,4,f +9937,41671pat0002,6,1,f +9937,41672,0,2,f +9937,41752,8,1,f +9937,42042,7,1,f +9937,42042und,2,1,f +9937,42074,15,2,f +9937,4519,0,5,f +9937,6628,0,2,f +9937,85544,10,1,f +9938,16178pr01,4,1,f +9938,30228,72,1,f +9938,3626cpr1304,14,1,f +9938,88646,0,1,f +9938,970c00pr0597,1,1,f +9938,973pr2521c01,25,1,f +9939,2339,71,2,f +9939,2357,71,4,f +9939,2431,71,1,f +9939,2653,0,2,f +9939,2877,71,4,f +9939,3001,19,1,f +9939,3004,72,2,f +9939,3005,71,4,f +9939,3008,72,2,f +9939,3010,71,2,f +9939,30136,70,2,f +9939,30137,19,2,f +9939,30145,70,2,f +9939,30176,2,1,f +9939,3020,72,3,f +9939,3022,72,1,f +9939,30238,25,1,f +9939,3032,19,1,f +9939,3034,72,2,f +9939,30374,0,1,f +9939,30374,72,1,f +9939,3039,19,2,f +9939,3048c,378,1,f +9939,3062b,19,4,f +9939,3068b,19,1,f +9939,3068bpb0014,378,1,f +9939,3068bpr0179,19,1,f +9939,3069b,0,2,f +9939,3070b,0,2,f +9939,3070b,0,1,t +9939,32000,19,2,f +9939,32028,71,4,f +9939,3297,378,2,f +9939,3455,70,2,f +9939,3622,19,2,f +9939,3626b,72,1,f +9939,3626bph1,78,1,f +9939,3626bphb,21,1,f +9939,3660,70,2,f +9939,3665,72,4,f +9939,3666,0,2,f +9939,3678bpr0004,72,1,f +9939,3710,72,1,f +9939,3749,19,1,t +9939,3749,19,1,f +9939,3941,70,6,f +9939,40233,0,1,f +9939,4070,19,1,f +9939,41677,272,1,f +9939,4201,72,1,f +9939,4460b,71,2,f +9939,4490,71,2,f +9939,4530,0,1,f +9939,4589,42,1,f +9939,50231,0,1,f +9939,50231,110,1,f +9939,6126a,57,2,f +9939,6541,0,3,f +9939,970c00,72,1,f +9939,970c00pb012,0,1,f +9939,973pb0309c01,72,1,f +9939,973pr0907c01,72,1,f +9940,11213,322,1,f +9940,13971,71,4,f +9940,15573,0,2,f +9940,15573,15,2,f +9940,15573,25,2,f +9940,18759,71,1,f +9940,2454b,26,2,f +9940,2456,320,2,f +9940,2460,72,1,f +9940,2479,0,1,f +9940,2921,71,2,f +9940,3001,14,4,f +9940,3001,85,4,f +9940,3001,19,2,f +9940,3001,0,2,f +9940,3001,1,4,f +9940,3001,70,4,f +9940,3001,27,4,f +9940,3001,15,4,f +9940,3001,30,4,f +9940,3001,191,4,f +9940,3001,4,4,f +9940,3002,25,4,f +9940,3002,1,4,f +9940,3002,0,4,f +9940,3002,29,4,f +9940,3002,70,4,f +9940,3003,4,4,f +9940,3003,29,4,f +9940,3003,71,4,f +9940,3003,272,4,f +9940,3003,19,2,f +9940,3003,27,4,f +9940,3003,1,4,f +9940,3003,14,4,f +9940,3003,70,4,f +9940,3003,15,4,f +9940,3003,85,4,f +9940,3004,191,4,f +9940,3004,0,4,f +9940,3004,27,4,f +9940,3004,158,4,f +9940,3004,321,4,f +9940,3004,85,10,f +9940,3004,14,4,f +9940,3004,322,4,f +9940,3004,15,8,f +9940,3004,10,4,f +9940,3004,71,4,f +9940,3004,5,4,f +9940,3004,70,4,f +9940,3004,25,8,f +9940,3004,4,4,f +9940,3004,226,4,f +9940,3004,484,8,f +9940,3004,323,4,f +9940,3005,30,12,f +9940,3005,71,4,f +9940,3005,85,4,f +9940,3009,26,4,f +9940,3010,5,4,f +9940,3010,272,5,f +9940,3010,26,4,f +9940,3010,15,4,f +9940,30136,70,4,f +9940,3020,72,3,f +9940,3020,14,2,f +9940,3020,25,2,f +9940,3020,320,4,f +9940,3021,14,2,f +9940,3021,322,2,f +9940,3022,0,2,f +9940,3022,191,4,f +9940,3022,2,4,f +9940,3023,0,2,f +9940,3023,85,2,f +9940,30236,15,2,f +9940,30236,71,2,f +9940,3028,10,1,f +9940,3029,4,1,f +9940,3029,1,1,f +9940,3031,72,1,f +9940,3031,10,1,f +9940,30350b,0,2,f +9940,3037,4,4,f +9940,3039,14,2,f +9940,3039,1,4,f +9940,3039,25,4,f +9940,3039,70,2,f +9940,3039,4,4,f +9940,3039,47,5,f +9940,3040b,288,8,f +9940,30414,4,2,f +9940,3045,0,2,f +9940,3062b,322,2,f +9940,3065,47,4,f +9940,3065,45,4,f +9940,3065,46,4,f +9940,3065,35,4,f +9940,3069b,85,3,f +9940,3069b,70,4,f +9940,3069b,71,4,f +9940,3069b,19,4,f +9940,3245b,15,3,f +9940,3245c,0,2,f +9940,3298,0,2,f +9940,33291,10,1,t +9940,33291,10,3,f +9940,33291,5,3,f +9940,33291,191,1,t +9940,33291,191,3,f +9940,33291,5,1,t +9940,3622,4,4,f +9940,3622,71,4,f +9940,3622,5,4,f +9940,3660,15,2,f +9940,3660,70,2,f +9940,3660,1,4,f +9940,3660,25,4,f +9940,3660,322,4,f +9940,3660,0,2,f +9940,3660,272,4,f +9940,3665,15,4,f +9940,3666,322,2,f +9940,3666,72,2,f +9940,3710,30,4,f +9940,3710,320,2,f +9940,3710,1,3,f +9940,3795,30,4,f +9940,3795,27,2,f +9940,4081b,4,2,f +9940,4286,1,4,f +9940,43722,25,1,f +9940,43723,25,1,f +9940,4460b,15,2,f +9940,4728,45,3,f +9940,47905,72,4,f +9940,48336,0,2,f +9940,49668,191,2,f +9940,50950,25,4,f +9940,50950,4,4,f +9940,54200,288,4,f +9940,54200,288,1,t +9940,54200,47,1,t +9940,54200,47,3,f +9940,54200,15,2,f +9940,54200,308,4,f +9940,54200,15,1,t +9940,54200,320,1,t +9940,54200,191,1,t +9940,54200,191,3,f +9940,54200,308,1,t +9940,54200,320,6,f +9940,59900,70,2,f +9940,59900,182,2,f +9940,60477,4,4,f +9940,60481,71,4,f +9940,60598,4,1,f +9940,60599,4,1,f +9940,60608,14,2,f +9940,60623,2,1,f +9940,61254,0,4,f +9940,6141,47,1,t +9940,6141,179,3,f +9940,6141,36,3,f +9940,6141,29,1,t +9940,6141,179,1,t +9940,6141,29,3,f +9940,6141,14,3,f +9940,6141,47,6,f +9940,6141,34,3,f +9940,6141,36,1,t +9940,6141,34,1,t +9940,6141,14,1,t +9940,6215,14,2,f +9940,6215,2,3,f +9940,6249,72,2,f +9940,6636,85,2,f +9940,85984,0,2,f +9940,85984,30,4,f +9940,87087,14,4,f +9940,87087,0,4,f +9940,87580,71,3,f +9940,87580,85,2,f +9940,93273,320,2,f +9940,93273,30,2,f +9940,96874,25,1,t +9940,98138pr0008,15,1,t +9940,98138pr0008,15,4,f +9940,98138pr0026,15,2,f +9940,98138pr0026,15,1,t +9940,98138pr0027,15,1,t +9940,98138pr0027,15,2,f +9940,98283,72,2,f +9940,98560,0,2,f +9940,98560,15,2,f +9941,2420,4,4,f +9941,2431,0,1,f +9941,2431,4,1,f +9941,2436,4,2,f +9941,2436,0,1,f +9941,3010,4,2,f +9941,3020,15,1,f +9941,3020,4,2,f +9941,3022,15,1,f +9941,3023,4,2,f +9941,3023,0,1,f +9941,3031,15,1,f +9941,3068b,4,1,f +9941,3069b,0,1,f +9941,3710,0,1,f +9941,3710,4,1,f +9941,3788,4,2,f +9941,3795,0,1,f +9941,50944pr0001,0,4,f +9941,50951,0,4,f +9941,54200,40,2,f +9941,6141,46,1,t +9941,6141,46,2,f +9941,6157,0,2,f +9941,88930,0,1,f +9942,2435,2,1,f +9942,3004,8,6,f +9942,3008,8,2,f +9942,3020,8,2,f +9942,3023,6,1,f +9942,30407,8,2,f +9942,3062b,4,2,f +9942,3062b,15,4,f +9942,3626bpb0112,14,1,f +9942,3659,7,2,f +9942,3795,6,2,f +9942,3865,19,2,f +9942,3937,7,2,f +9942,3957a,4,2,f +9942,4162,7,14,f +9942,42445,47,1,f +9942,42446,7,1,f +9942,44301a,7,2,f +9942,4490,7,4,f +9942,4495b,14,2,f +9942,45917,4,1,f +9942,45918,15,2,f +9942,46303,0,1,f +9942,6134,0,2,f +9942,6636,6,4,f +9942,970c00,272,1,f +9942,973pb0274c01,4,1,f +9942,bb125pb01,15,1,f +9945,11477,4,1,f +9945,11477,1,1,f +9945,15573,72,2,f +9945,15706,72,2,f +9945,22380,191,1,f +9945,22385pr0006,47,1,f +9945,22385pr0051,35,1,f +9945,22385pr0068,46,1,f +9945,22391,179,1,f +9945,22395,46,1,f +9945,22407,46,5,f +9945,22408,179,1,f +9945,24101,191,1,f +9945,24104,191,1,f +9945,24128,191,1,f +9945,2780,0,1,f +9945,2780,0,1,t +9945,3004,191,1,f +9945,3021,72,2,f +9945,3022,191,2,f +9945,3023,15,1,f +9945,32039,71,1,f +9945,32073,71,1,f +9945,32192,72,2,f +9945,32270,0,1,f +9945,32474,71,2,f +9945,32530,72,2,f +9945,3623,272,2,f +9945,3626cpr1784,14,1,f +9945,3713,71,1,t +9945,3713,71,1,f +9945,3937,1,2,f +9945,41769,272,1,f +9945,41770,272,1,f +9945,4519,14,3,f +9945,4733,72,1,f +9945,60897,1,2,f +9945,61184,71,1,f +9945,6134,71,2,f +9945,85861,71,1,t +9945,85861,71,4,f +9945,85984,1,2,f +9945,87580,272,2,f +9945,87994,71,2,f +9945,87994,71,1,t +9945,92690,71,2,f +9945,93575,179,2,f +9945,970c00pr0977,191,1,f +9946,132a,7,8,f +9946,3004,14,24,f +9946,3004p50,4,1,f +9946,3005,4,2,f +9946,3005,14,4,f +9946,3007,14,2,f +9946,3008,14,6,f +9946,3009,47,1,f +9946,3009,14,6,f +9946,3010,47,1,f +9946,3010,14,2,f +9946,3010pt6,4,2,f +9946,3020,14,4,f +9946,3022,0,2,f +9946,3022,47,2,f +9946,3022,14,3,f +9946,3023a,14,2,f +9946,3026,7,2,f +9946,3176,4,1,f +9946,3192,14,1,f +9946,3193,14,1,f +9946,3194,14,2,f +9946,3195,14,2,f +9946,3404bc01,15,1,f +9946,7039,4,8,f +9946,7049b,15,3,f +9946,709,14,1,f +9946,711,14,1,f +9946,799c800,15,1,f +9946,801,14,1,f +9946,802,14,1,f +9946,803,7,1,f +9947,2412b,71,2,f +9947,2412b,1,2,f +9947,2420,1,2,f +9947,2436,4,1,f +9947,3022,4,1,f +9947,3023,40,3,f +9947,3023,4,7,f +9947,3023,1,2,f +9947,3024,1,2,f +9947,3024,0,2,f +9947,3024,0,1,t +9947,3024,1,1,t +9947,3069b,1,2,f +9947,32028,0,2,f +9947,3710,1,2,f +9947,3710,4,1,f +9947,3710,0,1,f +9947,3795,71,1,f +9947,4070,0,4,f +9947,50950,4,2,f +9947,50951,0,4,f +9947,51739,4,1,f +9947,54200,40,2,f +9947,54200,4,2,f +9947,54200,4,1,t +9947,54200,40,1,t +9947,60212,4,1,f +9947,6141,47,2,f +9947,6141,71,1,t +9947,6141,36,1,t +9947,6141,36,2,f +9947,6141,47,1,t +9947,6141,71,2,f +9947,6157,0,2,f +9947,93273,1,2,f +9947,93595,15,4,f +9947,99781,71,2,f +9948,2399,8,1,f +9948,2419,1,1,f +9948,2625,0,1,f +9948,30014,8,2,f +9948,3004,0,1,f +9948,3004,1,2,f +9948,30213,42,1,f +9948,30214,42,1,f +9948,30231pb01,33,1,f +9948,30231pb02,33,1,f +9948,3039,8,1,f +9948,3062b,33,1,f +9948,3069bp53,0,1,f +9948,3475b,0,2,f +9948,3626bpb0097,1,1,f +9948,3710,0,2,f +9948,3747a,8,1,f +9948,3794a,1,1,f +9948,3838,1,1,f +9948,3957a,42,1,f +9948,412,8,2,f +9948,4349,0,1,f +9948,4589,42,2,f +9948,4740,33,1,f +9948,6817stk01,9999,1,t +9948,970x023,8,1,f +9948,973pb0199c01,0,1,f +9950,2413,15,2,f +9950,2420,72,2,f +9950,2431,15,1,f +9950,2431,72,1,f +9950,2437,40,1,f +9950,3003,0,1,f +9950,3005,72,1,f +9950,3010,15,2,f +9950,3020,4,1,f +9950,3020,15,3,f +9950,3021,72,4,f +9950,3021,71,1,f +9950,3022,71,1,f +9950,3023,0,5,f +9950,3024,72,2,f +9950,3024,15,1,f +9950,3039pc5,71,1,f +9950,3040b,15,2,f +9950,3068b,4,1,f +9950,3070b,14,1,t +9950,3070b,14,1,f +9950,3070b,4,1,t +9950,3070b,15,1,t +9950,3070b,4,1,f +9950,3070b,15,3,f +9950,3460,71,1,f +9950,3623,72,3,f +9950,3666,72,1,f +9950,3679,7,2,f +9950,3680,15,2,f +9950,3710,15,3,f +9950,3710,72,1,f +9950,3794a,15,1,f +9950,3795,71,2,f +9950,3937,71,1,f +9950,4079,6,3,f +9950,4162,72,1,f +9950,41769,15,4,f +9950,41770,15,4,f +9950,4266360,9999,1,f +9950,4282,71,1,f +9950,44301a,15,2,f +9950,44302a,15,2,f +9950,4449,0,1,f +9950,4449,73,1,f +9950,44571,15,4,f +9950,4477,72,1,f +9950,4477,15,1,f +9950,44822,15,4,f +9950,4854,71,2,f +9950,4855,71,2,f +9950,4856a,72,2,f +9950,4858,15,1,f +9950,4859,15,1,f +9950,4859,72,1,f +9950,4861,15,1,f +9950,4862,40,12,f +9950,4863,15,6,f +9950,4865a,4,2,f +9950,4865a,15,2,f +9950,4867,15,1,f +9950,4868b,15,2,f +9950,4869,71,2,f +9950,4870c02,71,3,f +9950,4871,71,1,f +9950,6134,0,1,f +9950,6141,34,1,f +9950,6141,15,1,t +9950,6141,15,2,f +9950,6141,34,1,t +9950,6141,47,1,f +9950,6141,36,1,f +9950,6141,47,1,t +9950,6141,36,1,t +9950,6636,15,2,f +9950,73983,72,4,f +9952,12825,72,2,f +9952,2420,0,8,f +9952,2449,4,2,f +9952,2453a,4,2,f +9952,2454a,4,2,f +9952,2540,4,4,f +9952,2540,0,4,f +9952,2654,4,1,f +9952,2730,0,2,f +9952,2780,0,2,f +9952,3004,4,3,f +9952,3008,4,1,f +9952,30176,2,2,f +9952,3030,0,1,f +9952,3034,70,1,f +9952,3040b,0,2,f +9952,3040b,4,1,f +9952,3048c,4,1,f +9952,3245b,4,2,f +9952,3298,0,2,f +9952,3666,0,2,f +9952,3700,14,1,f +9952,3747b,0,2,f +9952,41239,0,2,f +9952,4286,0,2,f +9952,4286,4,2,f +9952,43898,15,1,f +9952,4510,4,1,f +9952,4589,70,2,f +9952,4599b,0,2,f +9952,4631444,9999,1,f +9952,4740,0,2,f +9952,54200,0,6,f +9952,6111,0,1,f +9952,6141,15,8,f +9952,6141,0,13,f +9952,6232,4,2,f +9952,63868,0,2,f +9952,63965,70,1,f +9953,12825,15,2,f +9953,2412b,42,8,f +9953,2540,72,6,f +9953,2654,0,1,f +9953,2654,27,1,f +9953,2780,0,14,f +9953,2780,0,2,t +9953,3001,25,1,f +9953,3001,4,3,f +9953,3001,72,3,f +9953,3001,27,3,f +9953,3004,25,2,f +9953,3004,1,2,f +9953,3007,4,1,f +9953,3008,72,2,f +9953,30173b,297,1,f +9953,3020,288,2,f +9953,3022,4,6,f +9953,3022,1,1,f +9953,3022,25,1,f +9953,3023,25,8,f +9953,3023,2,8,f +9953,30237a,72,1,f +9953,3029,71,2,f +9953,3031,27,2,f +9953,3031,71,1,f +9953,30363,4,1,f +9953,3069b,182,5,f +9953,3069b,27,2,f +9953,3070b,71,3,t +9953,3070b,71,18,f +9953,32000,72,4,f +9953,32039,0,2,f +9953,32054,0,4,f +9953,32062,4,2,f +9953,32064b,72,8,f +9953,32073,71,4,f +9953,32123b,71,2,t +9953,32123b,71,8,f +9953,32192,2,8,f +9953,32271,0,2,f +9953,32316,27,8,f +9953,32316,4,8,f +9953,32474,4,2,f +9953,32474,27,2,f +9953,32523,27,4,f +9953,32523,4,4,f +9953,32556,19,2,f +9953,3460,71,1,f +9953,3666,4,4,f +9953,3666,27,6,f +9953,3673,71,12,f +9953,3673,71,2,t +9953,3700,70,4,f +9953,3706,0,2,f +9953,3708,0,9,f +9953,3749,19,4,f +9953,3794b,0,3,f +9953,3832,72,2,f +9953,3894,72,4,f +9953,4032a,2,3,f +9953,4081b,27,2,f +9953,4085c,4,2,f +9953,4085c,0,6,f +9953,41535,288,1,f +9953,42610,71,2,f +9953,4274,1,4,f +9953,4274,1,3,t +9953,4286,0,2,f +9953,43093,1,4,f +9953,43719,4,1,f +9953,43722,25,1,f +9953,43723,25,1,f +9953,4445,72,4,f +9953,44728,27,4,f +9953,44728,25,4,f +9953,4495b,4,1,f +9953,4496,70,1,f +9953,4497,308,1,f +9953,4589,42,2,f +9953,4589,297,1,f +9953,4589,182,2,f +9953,4643617,9999,1,f +9953,4643622,9999,1,f +9953,4643637,9999,1,f +9953,4643638,9999,1,f +9953,4643641,9999,1,f +9953,4643643,9999,1,f +9953,4643644,9999,1,f +9953,4643646,9999,1,f +9953,4643657,9999,1,f +9953,4643658,9999,1,f +9953,47457,4,2,f +9953,4871,72,1,f +9953,48729b,0,3,t +9953,48729b,0,5,f +9953,49668,15,6,f +9953,49668,27,2,f +9953,54200,297,2,f +9953,54200,297,1,t +9953,59233pat0001,41,1,f +9953,59443,2,3,f +9953,6091,27,2,f +9953,6126b,182,1,f +9953,61406pat0007,2,1,f +9953,6141,42,4,f +9953,6141,25,1,t +9953,6141,42,1,t +9953,6141,85,4,f +9953,6141,85,1,t +9953,6141,25,2,f +9953,61678,4,2,f +9953,61678,27,14,f +9953,6182,19,1,f +9953,62361,27,4,f +9953,62361,4,4,f +9953,62462,0,1,f +9953,63965,0,1,f +9953,6636,4,4,f +9953,73983,0,6,f +9953,85544,4,2,f +9953,86208,72,1,f +9953,87747,0,1,f +9953,87747,15,4,f +9953,92946,27,2,f +9953,92946,4,10,f +9953,93055,297,1,f +9953,93058,297,1,t +9953,93058,297,1,f +9953,93247,297,1,f +9953,93273,27,2,f +9953,98134,297,1,f +9953,98136,27,1,f +9953,98138,297,1,f +9953,98138,297,1,t +9953,98138pr0002,33,1,f +9953,98138pr0002,33,1,t +9953,98139,297,1,f +9953,98283,28,10,f +9953,98313,0,1,f +9953,98341pr0005,179,1,f +9953,98342pr0005,85,1,f +9953,98354pr0007,14,1,f +9953,98354pr0008,25,1,f +9954,3001,4,2,f +9954,3003,4,1,f +9954,3003,14,2,f +9954,3003,15,1,f +9954,4744pr0001,0,1,f +9956,2357,14,2,f +9956,2412b,15,8,f +9956,2412b,71,5,f +9956,2431,14,2,f +9956,2432,70,1,f +9956,2444,72,5,f +9956,2555,71,4,f +9956,2780,0,4,f +9956,2780,0,2,t +9956,3001,14,6,f +9956,3002,14,4,f +9956,3003,15,1,f +9956,3007,14,6,f +9956,3009,15,3,f +9956,3010,14,3,f +9956,3020,15,3,f +9956,3020,14,7,f +9956,3022,14,5,f +9956,3023,15,11,f +9956,3023,47,4,f +9956,3023,14,6,f +9956,3024,15,12,f +9956,3031,15,1,f +9956,3032,72,3,f +9956,3034,15,4,f +9956,30361pr0004,15,1,f +9956,30362,15,2,f +9956,30367b,14,2,f +9956,30367cpr0011,135,1,f +9956,3037,14,2,f +9956,30372pr0002,40,1,f +9956,30374,41,1,f +9956,30374,42,1,f +9956,30374,71,1,f +9956,30383,71,2,f +9956,3039,15,2,f +9956,3039,70,1,f +9956,3045,14,4,f +9956,3068b,14,6,f +9956,3069b,14,12,f +9956,3069b,15,17,f +9956,3069bpr0070,0,2,f +9956,32000,71,2,f +9956,32028,0,1,f +9956,32054,71,2,f +9956,32062,4,2,f +9956,32449,0,1,f +9956,3245b,14,2,f +9956,32526,71,1,f +9956,32531,71,2,f +9956,3622,15,2,f +9956,3623,15,8,f +9956,3626bpr0514,78,1,f +9956,3626bpr0555,25,1,f +9956,3666,72,4,f +9956,3684,14,4,f +9956,3700,14,6,f +9956,3705,0,1,f +9956,3708,0,2,f +9956,3710,72,5,f +9956,3747b,15,2,f +9956,3749,19,2,f +9956,3795,14,3,f +9956,3795,15,3,f +9956,3894,14,2,f +9956,3937,72,2,f +9956,3938,71,1,f +9956,3941,19,6,f +9956,4032a,0,4,f +9956,4070,15,2,f +9956,41531,14,6,f +9956,41677,71,2,f +9956,41769,14,2,f +9956,41770,14,2,f +9956,42023,15,4,f +9956,4274,1,42,f +9956,4274,1,2,t +9956,43093,1,4,f +9956,43337,14,2,f +9956,44126,14,4,f +9956,44728,19,17,f +9956,4477,15,19,f +9956,4519,71,1,f +9956,47397,15,1,f +9956,47398,15,1,f +9956,4740,45,4,f +9956,48336,71,1,f +9956,4864b,15,1,f +9956,4865a,40,2,f +9956,48729a,0,1,t +9956,48729a,0,2,f +9956,50950,15,16,f +9956,51739,14,2,f +9956,52031,15,1,f +9956,54200,14,14,f +9956,54200,14,2,t +9956,54200,15,14,f +9956,54200,15,2,t +9956,54383,14,1,f +9956,54383,15,2,f +9956,54384,14,1,f +9956,54384,15,2,f +9956,56145,71,2,f +9956,57028c01,71,1,f +9956,57783,40,1,f +9956,57796,72,1,f +9956,60208,14,2,f +9956,60474,14,8,f +9956,60478,0,2,f +9956,60478,71,2,f +9956,6111,71,4,f +9956,61183,70,1,f +9956,61195pr01,15,1,f +9956,6134,0,1,f +9956,61409,14,4,f +9956,61409,72,6,f +9956,6141,71,29,f +9956,6141,71,3,t +9956,61678,14,4,f +9956,6222,71,8,f +9956,6231,14,4,f +9956,6232,14,2,f +9956,62462,15,2,f +9956,6259,14,8,f +9956,63868,14,2,f +9956,63965,0,2,f +9956,64567,80,2,f +9956,64644,0,2,f +9956,64799,14,1,f +9956,6558,1,6,f +9956,6636,15,20,f +9956,6636,14,6,f +9956,8037stk01,9999,1,t +9956,85080,14,16,f +9956,86500,47,1,f +9956,86500,15,2,f +9956,970c00,0,1,f +9956,970x192,71,1,f +9956,973pr1358ac01,0,1,f +9956,973pr1388c01,25,1,f +9957,2412b,0,1,f +9957,2447,42,1,t +9957,2447,42,1,f +9957,2555,0,1,f +9957,2607,15,1,f +9957,30000,15,1,f +9957,30035,15,1,f +9957,30038,8,1,f +9957,3005,15,1,f +9957,3020,0,1,f +9957,3023,15,1,f +9957,3023,0,2,f +9957,3039,15,2,f +9957,3039p15,15,1,f +9957,3040b,15,2,f +9957,3068b,15,1,f +9957,3068b,0,1,f +9957,3069b,15,1,f +9957,3298p10,15,1,f +9957,3626bp69,14,1,f +9957,3679,7,1,f +9957,3680,0,1,f +9957,3832,0,1,f +9957,3838,0,1,f +9957,3839b,0,1,f +9957,3960,36,1,f +9957,3960,33,1,f +9957,4150,0,1,f +9957,4229,15,1,f +9957,4275b,15,3,f +9957,4276b,0,2,f +9957,4276b,15,1,f +9957,4590,0,2,f +9957,4732,15,1,f +9957,4740,42,1,f +9957,4865a,15,1,f +9957,6118,0,4,f +9957,6249,15,1,f +9957,6854stk02,9999,1,t +9957,73092,0,1,f +9957,73590c02a,15,1,f +9957,970x026,7,1,f +9957,973px133c01,15,1,f +9957,expstk01,9999,1,t +9958,2039,110,2,f +9958,2412b,0,2,f +9958,2417,10,3,f +9958,2540,462,2,f +9958,2546,13,1,f +9958,2546,73,1,f +9958,2550c01,6,1,f +9958,30016,462,1,f +9958,30153,52,4,f +9958,30153,45,3,f +9958,3020,0,1,f +9958,3020,462,1,f +9958,30236,4,1,f +9958,3031,462,1,f +9958,3062b,34,1,f +9958,3065,34,4,f +9958,3065,45,3,f +9958,3068b,13,2,f +9958,3069b,22,1,f +9958,33006,383,1,f +9958,33008,110,1,f +9958,33051,10,2,f +9958,33051,4,1,f +9958,33057,366,2,f +9958,33061,34,2,f +9958,3308,5,1,f +9958,33085,14,2,f +9958,33125,366,2,f +9958,33183,10,1,t +9958,33183,10,1,f +9958,33213,462,1,f +9958,33230,26,1,f +9958,33286,25,4,f +9958,3741,10,1,t +9958,3741,10,1,f +9958,3742,13,1,t +9958,3742,13,3,f +9958,3794a,0,2,f +9958,3795,22,1,f +9958,3940b,110,1,f +9958,3941,57,2,f +9958,4342,18,1,f +9958,44511,26,1,f +9958,4528,5,1,f +9958,4529,5,1,f +9958,4589,46,1,f +9958,4589,36,1,f +9958,4589,34,1,f +9958,4738a,45,1,f +9958,4739a,45,1,f +9958,57503,334,1,f +9958,57504,334,1,f +9958,57505,334,1,f +9958,57506,334,1,f +9958,6141,57,2,f +9958,6180,22,1,f +9958,6182,5,2,f +9958,6182,462,2,f +9958,6182,22,2,f +9958,6255,10,1,f +9958,6256,334,2,f +9958,6932,4,1,f +9958,6942,25,2,f +9958,carpet01,4,1,f +9958,pillow01,89,1,f +9959,3001,14,17,f +9959,3001,1,3,f +9959,3002,14,13,f +9959,3003,14,15,f +9959,3003,1,6,f +9959,3004,14,9,f +9959,3009,4,3,f +9959,3010,1,2,f +9959,3030,1,1,f +9959,3031,14,1,f +9959,3032,1,1,f +9959,3034,14,3,f +9959,3836,6,1,f +9959,3888ac01,1,1,f +9959,3997,4,1,f +9959,4006,0,1,f +9959,691,4,1,f +9959,692,4,1,f +9959,fab5h,9999,1,f +9959,fab8g,9999,1,f +9959,x655c02,4,1,f +9959,x661c03,1,1,f +9961,2456,1,2,f +9961,2456,4,2,f +9961,2456,15,2,f +9961,2456,14,2,f +9961,3001,0,3,f +9961,3001,4,6,f +9961,3001,1,6,f +9961,3001,15,6,f +9961,3001,14,6,f +9961,3001,2,3,f +9961,3002,14,8,f +9961,3002,1,8,f +9961,3002,4,8,f +9961,3002,0,4,f +9961,3002,2,4,f +9961,3002,15,8,f +9961,3003,0,8,f +9961,3003,15,16,f +9961,3003,14,16,f +9961,3003,2,8,f +9961,3003,1,16,f +9961,3003,4,16,f +9961,3004,2,10,f +9961,3004,0,10,f +9961,3004,4,20,f +9961,3004,15,20,f +9961,3004,14,20,f +9961,3004,1,20,f +9961,3005,15,10,f +9961,3005,4,10,f +9961,3005,1,10,f +9961,3005,0,6,f +9961,3005,14,10,f +9961,3005,2,6,f +9961,3007,1,1,f +9961,3007,15,1,f +9961,3007,4,1,f +9961,3007,14,1,f +9961,3008,4,2,f +9961,3008,1,2,f +9961,3008,15,2,f +9961,3008,14,2,f +9961,3009,15,4,f +9961,3009,14,4,f +9961,3009,1,4,f +9961,3009,4,4,f +9961,3010,2,2,f +9961,3010,14,3,f +9961,3010,1,3,f +9961,3010,4,3,f +9961,3010,0,2,f +9961,3010,15,3,f +9961,3622,14,4,f +9961,3622,15,4,f +9961,3622,0,4,f +9961,3622,1,4,f +9961,3622,2,4,f +9961,3622,4,4,f +9963,3002,25,1,f +9963,30027b,71,2,f +9963,30028,0,2,f +9963,3020,0,1,f +9963,3021,25,1,f +9963,3022,0,2,f +9963,3023,25,4,f +9963,3024,0,1,f +9963,3069b,25,3,f +9963,3139,0,2,f +9963,3623,0,1,f +9963,3623,25,2,f +9963,3794a,25,6,f +9963,3795,25,1,f +9963,4070,25,2,f +9963,4081b,0,2,f +9963,4624,71,2,f +9963,50943,80,1,f +9963,50946p01,0,1,f +9963,54200,25,2,f +9963,6091,25,6,f +9963,6126a,57,2,f +9963,6141,71,1,t +9963,6141,71,4,f +9963,6157,0,2,f +9964,3011,4,2,f +9964,3011,191,2,f +9964,3011,10,2,f +9964,31021,70,1,f +9964,31032,72,1,f +9964,31035,14,1,f +9964,31110,4,4,f +9964,3437,191,1,f +9964,3437,4,6,f +9964,3437,19,1,f +9964,3437,484,1,f +9964,3437,10,1,f +9964,41169c01,71,1,f +9964,4199,4,1,f +9964,42026,0,1,f +9964,44524,10,1,f +9964,47444c01,1,1,f +9964,47511pr0001,15,1,f +9964,4828,4,1,f +9964,48835,71,1,f +9964,51260,4,2,f +9964,51261,4,2,f +9964,51262,14,1,f +9964,51262,10,1,f +9964,51269,71,1,f +9964,51288,70,2,f +9964,51383,4,4,f +9964,51385,191,2,f +9964,61310,10,1,f +9964,61896,1,2,f +9964,63716,26,1,f +9964,6462,4,2,f +9964,6490,14,1,f +9964,6510,2,1,f +9964,6510,5,1,f +9964,75020,15,1,f +9964,75720,15,1,f +9964,75720,484,1,f +9964,75721,484,1,f +9964,75722,92,1,f +9964,75723,0,1,f +9964,75724,15,1,f +9964,75726,92,1,f +9964,90265,15,2,f +9964,98460,15,4,f +9965,2420,4,8,f +9965,2436,4,2,f +9965,2437,40,1,f +9965,3002,4,1,f +9965,30028,0,4,f +9965,3003,4,1,f +9965,3004,4,2,f +9965,3020,4,1,f +9965,3020,0,1,f +9965,3022,4,3,f +9965,3023,4,1,f +9965,3024,47,2,f +9965,3024,47,1,t +9965,3069b,0,1,f +9965,3069b,4,3,f +9965,3070b,0,2,f +9965,3070b,36,2,f +9965,3070b,36,1,t +9965,3460,4,2,f +9965,3659,4,4,f +9965,3710,4,1,f +9965,3829c01,4,1,f +9965,4624,4,1,t +9965,4624,4,4,f +9965,6091,0,2,f +9965,6091,4,4,f +9965,6157,0,2,f +9965,71076,383,2,f +9967,11248c01,4,1,f +9967,15320,322,1,f +9967,18823,1,1,f +9967,18825pr0007,9999,1,f +9967,19415,14,1,f +9967,19416,85,1,f +9967,19417,25,1,f +9967,19418,27,1,f +9967,19419,4,1,f +9967,19420,1,1,f +9967,19430,1,1,f +9967,6446,484,1,f +9969,2412b,72,2,f +9969,2420,14,2,f +9969,3021,14,1,f +9969,3022,14,2,f +9969,3069b,72,1,f +9969,3069bpr0101,71,1,f +9969,3660,14,2,f +9969,3794b,14,1,f +9969,3795,71,1,f +9969,3937,71,1,f +9969,4081b,14,2,f +9969,4081b,71,4,f +9969,41854,0,2,f +9969,42446,72,2,f +9969,44728,71,2,f +9969,4589,72,6,f +9969,4589,71,2,f +9969,4590,72,1,f +9969,54200,0,4,f +9969,54200,0,1,t +9969,54200,72,1,t +9969,54200,72,2,f +9969,56890,0,4,f +9969,6014b,71,4,f +9969,60849,71,2,f +9969,60849,71,1,t +9969,6134,0,1,f +9969,61409,14,2,f +9969,6141,72,6,f +9969,6141,36,1,t +9969,6141,41,1,t +9969,6141,72,1,t +9969,6141,36,2,f +9969,6141,41,2,f +9969,6141,80,1,t +9969,6141,80,2,f +9969,6157,71,3,f +9970,3001,1,1,f +9970,3003,1,1,f +9970,3004,4,6,f +9970,3004,47,2,f +9970,3004,1,2,f +9970,3004,14,4,f +9970,3005,14,2,f +9970,3010,4,2,f +9970,3021,1,2,f +9970,3034,1,2,f +9970,3039,4,2,f +9970,3137c01,0,2,f +9970,3624,4,1,f +9970,3626apr0001,14,1,f +9970,3641,0,4,f +9970,3660,4,2,f +9970,970c00,0,1,f +9970,973c01,15,1,f +9971,10170,84,1,f +9971,10247,0,2,f +9971,10247,15,12,f +9971,10288,308,19,f +9971,10928,72,3,f +9971,11212,72,9,f +9971,11303,4,1,f +9971,11477,2,16,f +9971,11610,19,3,f +9971,14137,46,12,f +9971,14769,15,12,f +9971,15068,15,1,f +9971,15395,4,1,f +9971,15461,0,7,f +9971,15470,29,1,t +9971,15470,29,7,f +9971,15573,15,2,f +9971,15573,4,2,f +9971,15712,15,4,f +9971,18587,71,2,f +9971,18588,72,2,f +9971,18653,15,2,f +9971,18654,72,1,t +9971,18654,72,6,f +9971,18677,71,4,f +9971,18948,15,1,f +9971,19119,2,10,f +9971,2420,71,8,f +9971,2431,15,24,f +9971,2431,73,4,f +9971,2432,71,1,f +9971,2453b,0,3,f +9971,2453b,15,4,f +9971,2456,15,4,f +9971,2460,4,1,f +9971,2476a,28,1,f +9971,2639,72,1,f +9971,2723,0,2,f +9971,2736,71,3,f +9971,2780,0,9,t +9971,2780,0,89,f +9971,3001,71,2,f +9971,3002,70,12,f +9971,3003,71,6,f +9971,3004,73,4,f +9971,3004,71,4,f +9971,3005,14,2,f +9971,3005,2,2,f +9971,3005,85,2,f +9971,3005,73,8,f +9971,3005,15,22,f +9971,3008,15,2,f +9971,3008,70,6,f +9971,3009,70,4,f +9971,3010,73,4,f +9971,3020,72,16,f +9971,3020,71,6,f +9971,3020,2,4,f +9971,3021,2,15,f +9971,3021,72,7,f +9971,3022,15,24,f +9971,3022,72,5,f +9971,3022,71,2,f +9971,3022,0,12,f +9971,3023,72,28,f +9971,3023,70,1,f +9971,3023,15,5,f +9971,3023,143,24,f +9971,3023,71,9,f +9971,30236,0,1,f +9971,3024,15,1,t +9971,3024,2,3,f +9971,3024,71,4,f +9971,3024,71,1,t +9971,3024,2,1,t +9971,3024,15,4,f +9971,3031,10,4,f +9971,3031,71,1,f +9971,3032,2,4,f +9971,3034,72,6,f +9971,3035,2,9,f +9971,3035,71,1,f +9971,30367c,4,1,f +9971,3037,70,4,f +9971,3037,2,14,f +9971,3039pr0001,15,1,f +9971,3040b,70,5,f +9971,3040b,15,2,f +9971,30552,0,48,f +9971,30602,10,32,f +9971,30602,85,32,f +9971,30602,14,32,f +9971,3062b,70,7,f +9971,3068bpr0262,15,1,f +9971,3069b,71,5,f +9971,3069b,1,1,f +9971,3069bpr0100,2,1,f +9971,3070b,71,1,t +9971,3070b,15,1,t +9971,3070b,71,5,f +9971,3070b,15,13,f +9971,32000,71,16,f +9971,32002,19,1,t +9971,32002,19,3,f +9971,32013,15,28,f +9971,32018,72,10,f +9971,32028,72,8,f +9971,32034,0,12,f +9971,32034,71,12,f +9971,32039,0,36,f +9971,32039,14,1,f +9971,32054,0,5,f +9971,32062,4,27,f +9971,32064a,71,12,f +9971,32073,71,12,f +9971,32123b,14,25,f +9971,32123b,14,3,t +9971,32124,15,48,f +9971,32124,0,2,f +9971,32184,0,2,f +9971,32270,0,4,f +9971,32278,0,2,f +9971,32316,1,1,f +9971,32348,15,2,f +9971,3245c,71,7,f +9971,32474,191,1,f +9971,32494,71,2,f +9971,32523,0,4,f +9971,32524,15,12,f +9971,32526,14,2,f +9971,32530,0,2,f +9971,32530,72,12,f +9971,32532,0,2,f +9971,32556,19,5,f +9971,3297,2,8,f +9971,33291,5,31,f +9971,33291,191,1,t +9971,33291,5,2,t +9971,33291,10,2,t +9971,33291,4,22,f +9971,33291,4,1,t +9971,33291,191,11,f +9971,33291,10,31,f +9971,33299b,71,12,f +9971,3460,71,11,f +9971,3623,71,4,f +9971,3623,72,6,f +9971,3626cpr0498,14,1,f +9971,3626cpr0677,14,2,f +9971,3626cpr0752,14,1,f +9971,3626cpr1162,14,1,f +9971,3626cpr1580,14,1,f +9971,3626cpr1664,14,1,f +9971,3626cpr1666,14,1,f +9971,3626cpr1738,14,1,f +9971,3626cpr1761,14,1,f +9971,3633,72,7,f +9971,3648b,72,1,f +9971,3665,72,4,f +9971,3666,15,24,f +9971,3666,191,1,f +9971,3666,14,12,f +9971,3673,71,7,f +9971,3673,71,1,t +9971,3676,72,14,f +9971,3701,15,2,f +9971,3701,71,16,f +9971,3702,14,4,f +9971,3703,71,2,f +9971,3706,0,6,f +9971,3707,0,20,f +9971,3708,0,2,f +9971,3710,2,11,f +9971,3710,15,2,f +9971,3710,71,24,f +9971,3741,2,1,t +9971,3741,2,11,f +9971,3749,19,30,f +9971,3795,72,6,f +9971,3795,71,4,f +9971,3832,19,2,f +9971,3894,71,12,f +9971,3960pr0015,15,1,f +9971,4079b,1,1,f +9971,4081b,71,1,f +9971,4151b,71,5,f +9971,4162,15,2,f +9971,4162,2,1,f +9971,4162,14,1,f +9971,4162,73,36,f +9971,41879a,30,1,f +9971,41879a,1,1,f +9971,41879a,4,1,f +9971,41879a,71,1,f +9971,42446,71,2,t +9971,42446,71,4,f +9971,4274,1,2,t +9971,4274,1,18,f +9971,4286,2,4,f +9971,43093,1,6,f +9971,44294,71,6,f +9971,44302a,0,48,f +9971,44375b,14,4,f +9971,44375b,85,4,f +9971,44375b,10,4,f +9971,4460b,15,4,f +9971,4477,0,24,f +9971,4477,15,36,f +9971,4519,71,12,f +9971,4533,41,1,f +9971,4733,0,2,f +9971,48336,15,48,f +9971,48729b,71,4,f +9971,48729b,71,1,t +9971,56903,15,2,f +9971,57585,71,6,f +9971,57906,182,12,f +9971,59426,72,4,f +9971,59443,71,18,f +9971,59443,70,6,f +9971,59443,14,1,f +9971,59900,70,4,f +9971,6020,0,1,f +9971,60470b,15,1,f +9971,60470b,0,2,f +9971,60475b,71,2,f +9971,60476,15,4,f +9971,60478,15,58,f +9971,60479,71,26,f +9971,60483,0,4,f +9971,60484,72,1,f +9971,60485,71,27,f +9971,60593,15,2,f +9971,6112,73,20,f +9971,61183,19,1,f +9971,61254,0,2,f +9971,6141,85,2,f +9971,6141,15,13,f +9971,6141,85,1,t +9971,6141,15,1,t +9971,6179,15,1,f +9971,6187,71,11,f +9971,61903,71,2,f +9971,62113,0,2,f +9971,62462,15,2,f +9971,62462,0,3,f +9971,62696,484,1,f +9971,62810,71,1,f +9971,62810,84,1,f +9971,63864,0,2,f +9971,63864,71,2,f +9971,63864,70,2,f +9971,63868,15,144,f +9971,63868,72,10,f +9971,63965,15,3,f +9971,64566,0,2,f +9971,64799,71,12,f +9971,6558,1,29,f +9971,6587,28,9,f +9971,6589,19,3,f +9971,6628,0,4,f +9971,6636,191,3,f +9971,6636,15,50,f +9971,73983,71,16,f +9971,85543,15,2,f +9971,85984,71,12,f +9971,87083,72,5,f +9971,87408,0,3,f +9971,87544,71,6,f +9971,87580,70,2,f +9971,87618,71,1,f +9971,87761,0,2,f +9971,87990,70,1,f +9971,87991,0,1,f +9971,87991,484,1,f +9971,88072,15,1,f +9971,88283,226,1,f +9971,88286,308,1,f +9971,91405,10,5,f +9971,92099,72,4,f +9971,92410,15,1,f +9971,92438,10,2,f +9971,92690,297,1,f +9971,92906,72,2,f +9971,92950,71,8,f +9971,96874,25,1,t +9971,970c00,322,1,f +9971,970c00,15,1,f +9971,970c00,73,1,f +9971,970c00,19,1,f +9971,970c00,308,1,f +9971,970c00,72,1,f +9971,973pr1517c01,73,1,f +9971,973pr1576c01,72,1,f +9971,973pr1585c01,25,1,f +9971,973pr1617c01,2,1,f +9971,973pr1801c01,25,1,f +9971,973pr2084c01,71,1,f +9971,973pr2500c01,1,1,f +9971,973pr2923c01,29,1,f +9971,973pr2924c01,15,1,f +9971,973pr2925c01,27,1,f +9971,98138,36,1,f +9971,98138,36,1,t +9971,98138,34,1,t +9971,98138,34,1,f +9971,98283,72,17,f +9971,98286,71,8,f +9971,98585,71,1,f +9971,98989,71,16,f +9971,99008,19,2,f +9971,99207,71,60,f +9971,99784,46,12,f +9973,10928,72,4,f +9973,11214,72,4,f +9973,11305,179,2,f +9973,15362,179,3,f +9973,18654,72,1,t +9973,18654,72,2,f +9973,19049,179,1,f +9973,19050,42,1,f +9973,19061,297,1,f +9973,19061,10,1,f +9973,19086,72,1,f +9973,19087,179,2,f +9973,19089,148,2,f +9973,20251,272,1,f +9973,20252,148,4,f +9973,2780,0,1,t +9973,2780,0,1,f +9973,32016,0,2,f +9973,32054,0,1,f +9973,32062,4,1,f +9973,32072,0,3,f +9973,32072,14,1,f +9973,32123b,14,6,f +9973,32123b,14,1,t +9973,32523,0,1,f +9973,43093,1,2,f +9973,4519,71,2,f +9973,48989,71,2,f +9973,53585,0,2,f +9973,59443,14,2,f +9973,6536,0,2,f +9973,74261,72,2,f +9973,87083,72,3,f +9973,90607,0,4,f +9973,90617,72,4,f +9973,90626,0,1,f +9973,90640,191,4,f +9973,90640,10,4,f +9973,90652,10,1,f +9973,90661,179,2,f +9973,93575,179,2,f +9973,98603s02pr0004,179,1,f +9974,359cdb01,89,1,f +9975,2780,0,7,f +9975,2780,0,1,t +9975,32002,72,1,t +9975,32002,72,2,f +9975,32013,0,3,f +9975,32016,0,2,f +9975,32039,4,2,f +9975,32054,0,5,f +9975,32062,4,5,f +9975,32063,71,1,f +9975,32073,71,2,f +9975,32174,27,5,f +9975,32174,4,1,f +9975,32271,0,3,f +9975,32278,0,1,f +9975,32291,71,1,f +9975,32580,135,3,f +9975,3673,71,6,f +9975,3673,71,1,t +9975,3705,0,3,f +9975,3713,71,2,f +9975,3713,71,1,t +9975,3749,19,3,f +9975,40490,0,2,f +9975,41669,135,2,f +9975,41677,71,6,f +9975,41678,0,2,f +9975,42003,71,2,f +9975,43093,1,10,f +9975,44813,135,3,f +9975,4519,71,6,f +9975,46667,0,2,f +9975,47297,288,4,f +9975,47306,288,1,f +9975,47312,72,1,f +9975,50898,27,4,f +9975,53500,57,1,f +9975,53543,288,4,f +9975,53549pat0002,288,2,f +9975,53564,27,1,f +9975,55981,71,1,t +9975,55981,71,2,f +9975,56160,135,1,f +9975,57523c01,135,1,f +9975,57525,4,9,f +9975,57525,4,1,t +9975,57528,135,2,f +9975,57530,27,1,f +9975,57539,0,1,f +9975,57544,135,3,f +9975,57567,135,1,f +9975,57572,135,2,f +9975,57702,41,1,f +9975,59490pat0001,0,1,f +9975,6536,0,3,f +9975,6558,0,8,f +9975,6587,72,1,f +9975,6632,71,2,f +9978,3020,15,6,f +9978,3020,1,7,f +9978,3020,4,7,f +9978,3020,7,6,f +9978,3020,0,7,f +9978,3020,14,6,f +9978,3021,4,5,f +9978,3021,15,5,f +9978,3021,7,5,f +9978,3021,1,5,f +9978,3021,14,5,f +9978,3021,0,5,f +9978,3022,0,5,f +9978,3022,4,5,f +9978,3022,14,5,f +9978,3022,1,5,f +9978,3022,15,5,f +9978,3022,7,5,f +9978,3023,0,4,f +9978,3023,14,4,f +9978,3023,4,4,f +9978,3023,15,4,f +9978,3023,1,4,f +9978,3023,7,4,f +9978,3024,1,3,f +9978,3024,4,3,f +9978,3024,14,3,f +9978,3024,0,3,f +9978,3024,15,3,f +9978,3024,7,3,f +9981,2343,7,2,f +9981,2348b,33,1,f +9981,2349a,15,1,f +9981,2362b,15,4,f +9981,2377,15,2,f +9981,2399,313,1,f +9981,2412b,15,4,f +9981,2420,15,8,f +9981,2431,7,2,f +9981,2431,0,1,f +9981,2436,15,3,f +9981,2445,0,2,f +9981,2452,7,1,f +9981,2460,7,2,f +9981,2496,0,1,f +9981,2654,7,1,f +9981,2736,7,1,f +9981,2877,0,1,f +9981,298c02,15,1,t +9981,298c02,15,2,f +9981,3004,7,1,f +9981,3004,313,5,f +9981,3004,15,1,f +9981,3005,15,1,f +9981,3010,15,6,f +9981,3021,0,1,f +9981,3021,15,2,f +9981,3021,313,1,f +9981,3022,0,1,f +9981,3023,15,1,f +9981,3023,7,8,f +9981,3023,0,2,f +9981,3024,0,1,f +9981,3024,46,2,f +9981,3029,0,1,f +9981,3029,15,2,f +9981,3031,7,1,f +9981,3031,15,7,f +9981,3034,0,1,f +9981,3062b,7,8,f +9981,3062b,14,2,f +9981,3068b,0,1,f +9981,3069b,15,3,f +9981,3070b,36,5,f +9981,3491,0,1,f +9981,3622,15,3,f +9981,3623,15,1,f +9981,3626bpr0001,14,1,f +9981,3665,15,2,f +9981,3709,0,1,f +9981,3710,7,4,f +9981,3710,15,6,f +9981,3738,7,2,f +9981,3787,15,1,f +9981,3794a,15,6,f +9981,3821,313,1,f +9981,3822,313,1,f +9981,3823,41,1,f +9981,3829c01,7,1,f +9981,3832,7,2,f +9981,3832,0,1,f +9981,3836,6,1,f +9981,3837,8,1,f +9981,4162,7,6,f +9981,4214,15,1,f +9981,4215b,15,8,f +9981,4276b,7,1,f +9981,4287,7,2,f +9981,4485,313,1,f +9981,4600,0,5,f +9981,4862,41,2,f +9981,6014a,15,10,f +9981,6015,0,10,f +9981,6019,0,3,f +9981,6081,15,1,f +9981,6091,15,1,f +9981,6141,46,6,f +9981,6546,15,4,f +9981,6556,15,2,f +9981,970c00,7,1,f +9981,973c01,15,1,f +9982,23306,383,2,f +9982,2342,8,1,f +9982,2555,19,1,f +9982,2569,8,4,f +9982,3003,8,1,f +9982,3003,19,3,f +9982,30031,8,1,f +9982,3021,8,1,f +9982,3021,6,1,f +9982,30374,42,1,f +9982,30374,36,1,f +9982,30381,0,1,f +9982,30410,6,1,f +9982,3626bpr0815,0,1,f +9982,3626bps9,14,1,f +9982,3747a,8,1,f +9982,3794a,8,2,f +9982,3941,19,1,f +9982,3958,19,1,f +9982,4070,19,4,f +9982,4598,19,1,f +9982,4599a,7,3,f +9982,50231,0,1,f +9982,50231,6,1,f +9982,6016,8,2,f +9982,6016,6,2,f +9982,6019,7,8,f +9982,970c00,6,1,f +9982,970c00,0,1,f +9982,973pr1340c01,0,1,f +9982,973px58c01,19,1,f +9984,14769,71,1,f +9984,2540,19,1,f +9984,3022,320,1,f +9984,3022,19,1,f +9984,3176,19,1,f +9984,3176,320,1,f +9984,4081b,72,2,f +9984,54200,47,1,t +9984,54200,47,2,f +9984,59900,19,3,f +9984,61252,71,1,f +9984,6141,72,1,f +9984,6141,72,1,t +9985,2357,15,2,f +9985,3002,0,1,f +9985,3002,15,1,f +9985,3005,15,4,f +9985,3020,0,1,f +9985,3021,0,2,f +9985,3021,15,3,f +9985,3045,15,4,f +9985,3062b,14,5,f +9985,3622,15,1,f +9985,3623,14,1,f +9985,3676,15,4,f +9985,3700,15,1,f +9985,3794a,15,2,f +9985,4070,15,3,f +9985,4589,4,1,f +9985,6141,0,4,f +9986,2335p40,0,1,f +9986,2338,4,1,f +9986,2339,0,4,f +9986,2343,1,1,f +9986,2343,15,1,f +9986,2345p01,4,2,f +9986,3001,7,1,f +9986,3003,7,7,f +9986,3003,14,3,f +9986,3004,15,1,f +9986,3004,0,6,f +9986,3004,7,20,f +9986,3004,4,7,f +9986,3005,4,2,f +9986,3005,7,19,f +9986,3005,0,11,f +9986,3008,0,1,f +9986,3009,7,4,f +9986,3010,7,5,f +9986,3010,0,1,f +9986,3020,2,1,f +9986,3022,2,2,f +9986,3023,15,1,f +9986,3023,0,1,f +9986,3023,7,4,f +9986,3027,0,1,f +9986,3031,14,1,f +9986,3031,0,1,f +9986,3034,2,1,f +9986,3036,7,1,f +9986,3038,0,2,f +9986,3039,0,11,f +9986,3043,0,1,f +9986,3044b,0,2,f +9986,3049b,0,1,f +9986,3062b,0,4,f +9986,3460,2,2,f +9986,3581,0,3,f +9986,3582,14,2,f +9986,3622,4,1,f +9986,3622,7,2,f +9986,3623,7,8,f +9986,3626bpr0001,14,4,f +9986,3644,1,1,f +9986,3660,0,4,f +9986,3665,0,8,f +9986,3666,7,1,f +9986,3666,0,1,f +9986,3673,7,1,f +9986,3700,7,2,f +9986,3710,7,3,f +9986,3741,2,3,f +9986,3742,1,1,t +9986,3742,4,1,t +9986,3742,1,3,f +9986,3742,4,3,f +9986,3742,14,3,f +9986,3742,14,1,t +9986,3830,7,2,f +9986,3831,7,2,f +9986,3832,7,2,f +9986,3844,8,1,f +9986,3846p46,7,1,f +9986,3846p4g,7,1,f +9986,3847,8,3,f +9986,3848,6,1,f +9986,3849,6,1,f +9986,3896,8,1,f +9986,3957a,0,1,f +9986,3957a,7,1,f +9986,3958,7,1,f +9986,4070,14,2,f +9986,4070,7,1,f +9986,4070,0,1,f +9986,4085c,7,4,f +9986,4161,0,2,f +9986,4282,0,1,f +9986,4444,7,4,f +9986,4444p01,7,1,f +9986,4444p03,4,1,f +9986,4445,0,7,f +9986,4460a,7,2,f +9986,4490,7,1,f +9986,4490,0,2,f +9986,4491b,14,1,f +9986,4495b,14,1,f +9986,4495b,2,1,f +9986,4495b,4,1,f +9986,4497,6,1,f +9986,4498,6,1,f +9986,4499,6,1,f +9986,4503,0,1,f +9986,4524,1,1,f +9986,4524,0,1,f +9986,4528,0,1,f +9986,75998pr0007,15,1,f +9986,87692,14,1,t +9986,87693,14,1,f +9986,87694,14,1,t +9986,970c00,1,1,f +9986,970x021,0,2,f +9986,970x026,1,1,f +9986,973p40c01,1,1,f +9986,973p42c01,4,2,f +9986,973p71c01,15,1,f +9987,3068a,0,14,f +9987,3068a,4,14,f +9987,3068a,15,14,f +9987,3068a,1,14,f +9987,3068a,7,14,f +9987,3068a,14,14,f +9987,3069a,1,6,f +9987,3069a,15,6,f +9987,3069a,7,6,f +9987,3069a,14,6,f +9987,3069a,0,6,f +9987,3069a,4,6,f +9987,3070a,0,6,f +9987,3070a,14,6,f +9987,3070a,15,6,f +9987,3070a,4,6,f +9987,3070a,1,6,f +9987,3070a,7,6,f +9988,20904pr0001,15,1,f +9988,3070bpr0152,15,1,f +9988,3626cpr1149,78,1,f +9988,42446,0,1,f +9988,58247,0,1,f +9988,970c00pr0954,15,1,f +9988,973pr3332c01,15,1,f +9989,4033,1,10,f +9989,4034,47,10,f +9990,2357,313,20,f +9990,2357,15,6,f +9990,2357,70,8,f +9990,2357,320,4,f +9990,2377,15,17,f +9990,2412b,15,18,f +9990,2412b,71,4,f +9990,2412b,0,3,f +9990,2420,70,4,f +9990,2420,0,2,f +9990,2431,70,2,f +9990,2431,313,3,f +9990,2432,70,24,f +9990,2445,70,10,f +9990,2456,0,1,f +9990,2508,15,2,f +9990,2540,15,2,f +9990,2555,71,2,f +9990,2566,0,2,f +9990,2584,70,1,f +9990,2585,71,1,f +9990,2634c02,15,2,f +9990,2654,0,25,f +9990,2877,15,8,f +9990,298c04,15,1,t +9990,298c04,15,2,f +9990,3001,70,4,f +9990,3001,15,1,f +9990,3001,320,2,f +9990,3001,313,4,f +9990,3003,313,2,f +9990,3004,0,3,f +9990,3004,15,6,f +9990,3004,313,2,f +9990,3004,70,4,f +9990,3005,70,8,f +9990,3005,320,2,f +9990,3005,313,4,f +9990,3005,15,8,f +9990,3007,15,14,f +9990,3007,313,1,f +9990,3007,71,30,f +9990,3008,15,1,f +9990,3009,313,2,f +9990,3009,70,2,f +9990,3010,15,5,f +9990,3010,313,9,f +9990,30192,72,1,f +9990,3020,25,2,f +9990,3020,15,1,f +9990,3020,70,2,f +9990,3020,313,2,f +9990,3020,320,1,f +9990,3022,320,1,f +9990,3022,15,3,f +9990,3022,313,4,f +9990,3023,71,62,f +9990,3023,15,35,f +9990,3023,25,4,f +9990,30256,15,1,f +9990,3028,320,9,f +9990,3029,320,1,f +9990,3034,71,30,f +9990,3034,15,14,f +9990,3034,70,5,f +9990,3035,70,2,f +9990,3035,15,6,f +9990,3037,320,2,f +9990,30374,15,2,f +9990,30374,0,4,f +9990,30383,72,4,f +9990,3040b,15,2,f +9990,30602,25,2,f +9990,30602,320,1,f +9990,3062b,0,3,f +9990,3063b,313,2,f +9990,3063b,0,2,f +9990,3069b,313,11,f +9990,3069b,40,2,f +9990,3069b,70,6,f +9990,3070b,36,1,t +9990,3070b,313,1,t +9990,3070b,34,1,t +9990,3070b,70,1,t +9990,3070b,36,1,f +9990,3070b,70,4,f +9990,3070b,313,2,f +9990,3070b,34,1,f +9990,32002,72,1,t +9990,32002,72,2,f +9990,32028,15,2,f +9990,3245b,15,8,f +9990,32474,15,1,f +9990,3460,15,1,f +9990,3622,70,2,f +9990,3660,313,2,f +9990,3665,313,16,f +9990,3666,15,2,f +9990,3666,70,5,f +9990,3684,0,2,f +9990,3710,0,2,f +9990,3710,15,17,f +9990,3743,15,6,f +9990,3747b,313,2,f +9990,3747b,320,1,f +9990,3749,19,1,f +9990,3794a,15,7,f +9990,3794a,70,7,f +9990,3832,70,12,f +9990,3937,15,2,f +9990,3938,70,22,f +9990,3941,0,1,f +9990,4070,15,14,f +9990,4081b,15,2,f +9990,4085c,0,1,f +9990,4162,313,4,f +9990,42023,320,10,f +9990,42023,313,14,f +9990,4286,313,2,f +9990,4287,320,10,f +9990,4287,313,16,f +9990,43337,70,2,f +9990,43337,313,24,f +9990,43720,320,2,f +9990,43721,320,2,f +9990,43722,70,2,f +9990,43722,15,1,f +9990,43723,15,1,f +9990,43723,70,2,f +9990,44301a,15,2,f +9990,44302a,15,3,f +9990,44302a,70,3,f +9990,4445,320,6,f +9990,44728,72,8,f +9990,4477,70,12,f +9990,4510,15,2,f +9990,4588,70,2,f +9990,4589,70,10,f +9990,4589,15,6,f +9990,4599a,15,10,f +9990,4623,15,2,f +9990,47405,320,2,f +9990,4862,40,17,f +9990,4865a,15,4,f +9990,4865a,313,2,f +9990,56823c28,0,1,f +9990,6091,25,4,f +9990,6111,313,12,f +9990,6111,320,4,f +9990,6141,47,2,f +9990,6141,0,1,t +9990,6141,47,1,t +9990,6141,0,11,f +9990,6141,46,1,t +9990,6141,46,6,f +9990,6180,70,1,f +9990,6632,15,2,f +9990,6636,313,3,f +9990,6636,71,60,f +9990,6636,15,28,f +9990,75535,0,1,f +9992,15319,4,1,f +9992,15582,15,1,f +9992,15613,71,1,f +9992,15979,15,1,f +9992,15981,4,1,f +9992,20302,25,1,f +9992,2301,4,2,f +9992,3011,14,1,f +9992,3437,14,1,f +9992,61649,73,1,f +9992,75115bpr0015,15,1,f +9992,90265,15,1,f +9992,95440,15,1,f +9993,85947pr0003,27,1,f +9993,87993,297,1,f +9993,87994,52,1,f +9993,88646,0,1,f +9993,970x199,85,1,f +9993,973pr1706c01,85,1,f +9995,2335,0,2,f +9995,2412b,7,2,f +9995,2412b,8,14,f +9995,2412b,1,9,f +9995,2412b,0,1,f +9995,2413,8,4,f +9995,2420,4,2,f +9995,2420,8,8,f +9995,2431,8,4,f +9995,2431,0,8,f +9995,2431,1,12,f +9995,2444,0,2,f +9995,2445,8,2,f +9995,2452,0,1,f +9995,2456,0,2,f +9995,2465,0,2,f +9995,2540,7,2,f +9995,2540,1,2,f +9995,2555,0,20,f +9995,2598ps1,40,1,f +9995,2618,8,1,f +9995,2654,8,2,f +9995,2780,0,10,f +9995,2921,1,2,f +9995,3001,0,1,f +9995,3002,7,2,f +9995,3003,8,2,f +9995,3004,7,2,f +9995,3004,0,3,f +9995,3006,0,1,f +9995,30088,8,4,f +9995,3010,8,5,f +9995,3010,7,2,f +9995,30154,8,2,f +9995,3020,8,10,f +9995,3020,7,3,f +9995,3020,0,10,f +9995,3021,1,2,f +9995,3021,0,13,f +9995,3022,8,2,f +9995,3022,7,2,f +9995,3022,0,6,f +9995,3022,1,4,f +9995,3023,7,2,f +9995,3023,0,4,f +9995,3023,8,6,f +9995,3023,14,1,f +9995,30236,7,4,f +9995,3024,0,8,f +9995,3024,1,2,f +9995,3029,0,2,f +9995,3030,0,4,f +9995,3034,0,5,f +9995,3034,8,2,f +9995,3035,8,2,f +9995,3036,0,2,f +9995,30364,8,16,f +9995,30365,8,16,f +9995,3037,8,2,f +9995,30374,8,6,f +9995,3038,1,2,f +9995,3039pc3,7,1,f +9995,3039pc5,7,1,f +9995,3039pr0008,0,1,f +9995,3040b,8,4,f +9995,3040b,1,2,f +9995,3040p01,0,1,f +9995,3040p58,8,1,f +9995,30414,1,7,f +9995,3062b,8,10,f +9995,3068b,0,1,f +9995,3069b,1,4,f +9995,32000,0,4,f +9995,32059,8,8,f +9995,32140,0,2,f +9995,32184,4,4,f +9995,32324,7,1,f +9995,3298,8,6,f +9995,3298,0,8,f +9995,3460,1,20,f +9995,3460,0,36,f +9995,3460,8,6,f +9995,3475b,8,4,f +9995,3623,0,10,f +9995,3623,1,4,f +9995,3660,1,8,f +9995,3660,8,6,f +9995,3665,8,4,f +9995,3666,0,2,f +9995,3700,0,2,f +9995,3701,0,4,f +9995,3702,0,2,f +9995,3705,0,7,f +9995,3710,0,2,f +9995,3710,1,8,f +9995,3710,8,13,f +9995,3747a,8,12,f +9995,3794a,1,2,f +9995,3795,1,1,f +9995,3795,0,10,f +9995,3832,8,2,f +9995,3832,0,4,f +9995,3837,8,4,f +9995,3895,0,2,f +9995,3933,0,14,f +9995,3934,0,14,f +9995,3937,0,2,f +9995,3958,0,4,f +9995,3960ps2,8,1,f +9995,4070,0,4,f +9995,4081b,1,4,f +9995,4081b,0,2,f +9995,4085c,0,4,f +9995,4085c,7,2,f +9995,4095,1,4,f +9995,4151a,0,10,f +9995,4162,0,12,f +9995,4162,1,16,f +9995,4274,7,2,t +9995,4274,7,2,f +9995,4275b,1,2,f +9995,4276b,7,2,f +9995,4282,0,8,f +9995,4285b,1,2,f +9995,4286,8,8,f +9995,4531,0,1,f +9995,4589,8,6,f +9995,4859,1,1,f +9995,4859,0,2,f +9995,4859,8,4,f +9995,4865a,8,12,f +9995,6019,8,16,f +9995,6141,36,4,f +9995,6141,1,1,t +9995,6141,1,4,f +9995,6141,36,1,t +9995,6190,8,4,f +9995,6541,0,2,f +9995,6558,0,4,f +9995,6629,0,2,f +9995,6636,8,1,f +9995,7181stk01,9999,1,t +9995,75c20,1,4,f +9996,2569,42,3,f +9996,2569,7,2,f +9996,2569,4,2,f +9996,2569,57,3,f +9996,2569,1,2,f +9996,298c02,15,2,f +9996,298c02,4,2,f +9996,298c05,0,2,f +9996,298c05,1,2,f +9996,3957a,7,2,f +9996,3957a,0,2,f +9996,3957a,57,3,f +9996,3957a,15,2,f +9996,3957a,4,2,f +9996,4735,7,3,f +9996,4735,0,3,f +9999,2340,15,2,f +9999,2412b,0,1,f +9999,2415,7,3,f +9999,2431,7,1,f +9999,2436,4,2,f +9999,2446,15,1,f +9999,2877,4,1,f +9999,298c02,15,1,t +9999,298c02,15,3,f +9999,30029,7,1,f +9999,3020,1,2,f +9999,3022,0,1,f +9999,3023,1,2,f +9999,3023,14,3,f +9999,3023,7,3,f +9999,3024,46,2,f +9999,3068bp51,0,1,f +9999,3070b,36,1,t +9999,3070b,34,1,t +9999,3070b,34,1,f +9999,3070b,36,1,f +9999,3139,0,3,f +9999,3464,47,3,f +9999,3622,15,2,f +9999,3626bp69,14,1,f +9999,3666,1,2,f +9999,3710,15,2,f +9999,3794a,14,1,f +9999,3795,0,1,f +9999,4070,0,2,f +9999,4286,15,2,f +9999,4287,15,2,f +9999,4625,7,1,f +9999,4857,15,1,f +9999,4859,1,1,f +9999,4865a,15,2,f +9999,6126a,57,2,f +9999,6152,33,1,f +9999,6152,15,1,f +9999,6239,15,1,f +9999,769,334,1,f +9999,970x002,15,1,f +9999,973px176c01,15,1,f +10000,10113,0,1,f +10000,11090,72,2,f +10000,13608,179,2,f +10000,14418,71,6,f +10000,14419,72,2,f +10000,14716,71,1,f +10000,14719,73,4,f +10000,14769,0,1,f +10000,15071,0,1,f +10000,15392,72,1,f +10000,15460,72,1,f +10000,15573,71,2,f +10000,15672,71,3,f +10000,15712,72,2,f +10000,16091,71,1,f +10000,18649,71,1,f +10000,2357,71,1,f +10000,2412b,0,2,f +10000,2412b,72,1,f +10000,2412b,71,1,f +10000,2412b,19,1,f +10000,24144,0,1,f +10000,2420,15,2,f +10000,2447,40,1,f +10000,25214,4,3,f +10000,27145,14,1,f +10000,27329,73,2,f +10000,2780,0,1,f +10000,3004,378,4,f +10000,3004,72,1,f +10000,3004,71,1,f +10000,3005,71,2,f +10000,3010,378,3,f +10000,30151b,47,1,f +10000,30162,72,2,f +10000,3020,71,2,f +10000,3021,14,1,f +10000,3023,41,3,f +10000,3023,72,1,f +10000,3023,71,1,f +10000,30236,72,1,f +10000,30237b,71,1,f +10000,3024,15,4,f +10000,3024,73,2,f +10000,3032,72,1,f +10000,3040b,71,2,f +10000,30426,0,1,f +10000,3062b,4,1,f +10000,3062b,41,5,f +10000,3068b,19,1,f +10000,3069bp02,71,1,f +10000,30816,73,1,f +10000,32062,0,1,f +10000,3623,73,4,f +10000,3623,14,1,f +10000,3623,15,2,f +10000,3626cpr2091,73,1,f +10000,3626cpr2092,78,1,f +10000,3626cpr2106,78,1,f +10000,3832,72,1,f +10000,3834,15,1,f +10000,3838,14,1,f +10000,3899,15,1,f +10000,3960,15,1,f +10000,4081b,72,4,f +10000,4274,1,1,f +10000,43093,1,1,f +10000,4510,72,1,f +10000,4740,41,4,f +10000,47847,41,2,f +10000,47905,71,2,f +10000,48729b,0,1,f +10000,52107,71,2,f +10000,54200,73,2,f +10000,60478,0,2,f +10000,6126b,182,1,f +10000,61409,71,2,f +10000,6141,34,1,f +10000,6141,182,1,f +10000,6141,4,1,f +10000,6141,41,3,f +10000,6141,36,3,f +10000,6141,72,2,f +10000,6158,72,1,f +10000,64644,0,1,f +10000,6541,71,2,f +10000,6628,0,2,f +10000,73983,71,3,f +10000,85080,15,4,f +10000,85861,71,3,f +10000,85984,0,1,f +10000,86208,72,1,f +10000,87087,378,8,f +10000,87580,72,2,f +10000,87994,71,2,f +10000,88072,0,2,f +10000,95199,72,1,f +10000,970c00,0,2,f +10000,970c00pr1173,272,1,f +10000,973pr3635,15,1,f +10000,973pr3637,272,1,f +10000,973pr3650,0,1,f +10000,98138,71,1,f +10000,98138,41,5,f +10000,98138,73,4,f +10000,98397,71,1,f +10000,98721,0,1,f +10000,99780,71,1,f +10001,19946,320,1,f +10001,19948,320,1,f +10001,3626cpr1539,14,1,f +10001,3678bpr0048,320,1,f +10001,6126b,57,1,f +10001,64644,0,1,f +10001,87994,0,1,f +10001,88646,0,1,f +10001,93069,0,1,f +10001,973pr2832c01,320,1,f +10002,2470,0,2,f +10002,2540,0,1,f +10002,30153,36,1,f +10002,30168px1,14,1,f +10002,3020,19,1,f +10002,3020,7,1,f +10002,3068bpx19,19,1,f +10002,3626bpa2,7,1,f +10002,3688,19,1,f +10002,3957a,4,1,f +10002,4600,0,1,f +10002,6141,14,1,f +10002,6141,34,2,f +10002,970c11pb01,0,1,f +10002,973pa2c01,0,1,f +10003,64783,72,2,f +10003,64784pat01,42,1,f +10003,64785,72,1,f +10004,3001a,1,14,f +10004,3002a,14,2,f +10004,3002a,4,2,f +10004,3003,4,8,f +10004,3003,14,4,f +10004,3004,4,4,f +10004,3004,14,4,f +10004,3005,1,4,f +10004,3007,1,2,f +10004,3009,4,2,f +10004,3009,14,2,f +10004,3010,1,2,f +10004,3020,14,2,f +10004,3020,4,10,f +10004,3023,4,8,f +10004,3030,4,2,f +10004,3034,4,20,f +10004,3035,4,3,f +10004,3037,1,2,f +10004,3634b,0,4,f +10004,3705,79,8,f +10004,3706,79,4,f +10004,3707,79,4,f +10004,3708,79,2,f +10004,3709a,7,12,f +10004,569,4,9,f +10004,570,1,3,f +10004,572,14,3,f +10004,584,4,14,f +10004,9244a,4,2,f +10004,rb00164,0,1,f +10005,12708pr02,47,2,f +10005,3002,4,4,f +10005,3003,36,14,f +10005,3003,4,12,f +10006,11334,0,2,f +10006,15365pat0002,14,1,f +10006,15366,148,1,f +10006,15367,0,2,f +10006,15368,179,2,f +10006,15369,297,1,f +10006,15372pr01,0,1,f +10006,16737pr0001,0,1,f +10006,16770,297,6,f +10006,2780,0,2,f +10006,53585,0,1,f +10006,59443,0,1,f +10006,87747,297,3,f +10006,87846,0,1,f +10006,90608,72,2,f +10006,90609,0,1,f +10006,90609,57,1,f +10006,90611,72,2,f +10006,90612,0,2,f +10006,90612,57,1,f +10006,90616,0,2,f +10006,90617,72,1,f +10006,90622,0,1,f +10006,90623,0,1,f +10006,90640,297,4,f +10006,90640,0,2,f +10006,90650,0,2,f +10006,90652,0,1,f +10006,92218,297,3,f +10006,92233,297,1,f +10006,93575,0,1,f +10006,98313,297,4,f +10006,98565,72,1,f +10006,98577,72,1,f +10008,10258,0,1,f +10008,11203,72,4,f +10008,11215,0,2,f +10008,11458,15,2,f +10008,11477,72,3,f +10008,11477,4,3,f +10008,11477,191,2,f +10008,14719,191,2,f +10008,14769,191,2,f +10008,14769,71,4,f +10008,15068,72,1,f +10008,15068,191,2,f +10008,15207,4,2,f +10008,15535,4,1,f +10008,15573,4,2,f +10008,15573,15,1,f +10008,17485,25,1,f +10008,18663,47,1,f +10008,18677,71,4,f +10008,21841,14,1,f +10008,2357,191,2,f +10008,2412b,179,1,f +10008,24201,0,2,f +10008,2431,191,3,f +10008,25893,47,1,f +10008,25895,15,1,f +10008,2780,0,1,f +10008,3008,484,2,f +10008,3010,71,1,f +10008,3020,191,1,f +10008,3020,0,4,f +10008,3021,72,2,f +10008,3022,70,3,f +10008,3023,36,1,f +10008,3023,191,5,f +10008,3023,47,6,f +10008,3024,72,2,f +10008,3024,191,1,f +10008,3031,72,1,f +10008,3032,70,2,f +10008,3032,0,1,f +10008,3034,71,2,f +10008,3035,72,2,f +10008,3062b,4,1,f +10008,3069b,182,4,f +10008,3070b,4,2,f +10008,3070b,15,3,f +10008,32000,19,4,f +10008,32039,14,1,f +10008,32062,4,1,f +10008,32184,71,2,f +10008,3622,25,2,f +10008,3623,72,2,f +10008,3626cpr1651,272,1,f +10008,3626cpr1905,78,1,f +10008,3626cpr1990,26,1,f +10008,3626cpr2000,4,1,f +10008,3665,191,2,f +10008,3666,191,1,f +10008,3666,70,2,f +10008,3673,71,2,f +10008,3705,0,1,f +10008,3709,71,1,f +10008,3710,191,4,f +10008,3747a,71,2,f +10008,3749,19,2,f +10008,3795,191,8,f +10008,3795,72,1,f +10008,3941,72,2,f +10008,3941,71,2,f +10008,3942c,25,1,f +10008,4032a,0,3,f +10008,4176,47,1,f +10008,42003,4,2,f +10008,4274,1,5,f +10008,4286,191,4,f +10008,43093,1,2,f +10008,43722,191,2,f +10008,43722,72,1,f +10008,43723,72,1,f +10008,44294,71,1,f +10008,44375a,71,1,f +10008,4477,72,4,f +10008,4488,71,2,f +10008,4488,0,4,f +10008,4599b,4,1,f +10008,4740,182,2,f +10008,50745,72,6,f +10008,50859b,179,1,f +10008,50860,85,1,f +10008,50861,0,2,f +10008,50862,71,2,f +10008,50950,72,2,f +10008,52031,72,1,f +10008,54200,182,6,f +10008,54200,72,2,f +10008,6014b,71,6,f +10008,60479,70,2,f +10008,60483,71,1,f +10008,6126b,182,2,f +10008,6141,36,10,f +10008,6141,179,4,f +10008,6141,47,4,f +10008,63082,71,1,f +10008,6636,191,4,f +10008,6636,72,1,f +10008,72454,72,1,f +10008,75902pr0004,4,1,f +10008,76766,71,1,f +10008,85861,15,1,f +10008,85959pat0003,36,3,f +10008,85984,72,6,f +10008,87079,70,1,f +10008,87697,0,6,f +10008,88930,72,7,f +10008,88930,191,8,f +10008,91988,71,1,f +10008,92593,72,5,f +10008,92947,71,1,f +10008,970c00,272,1,f +10008,970c00pr0854,378,1,f +10008,970c00pr1102,0,1,f +10008,970c00pr1104,272,1,f +10008,973pr2985c01,272,1,f +10008,973pr3014c01,378,1,f +10008,973pr3510c01,0,1,f +10008,973pr3512c01,4,1,f +10008,98138,182,6,f +10008,98285,71,1,f +10008,98286,71,1,f +10008,98385,70,1,f +10008,99207,71,30,f +10008,99784,71,1,f +10009,3020,70,1,f +10009,3666,70,2,f +10009,3710,70,2,f +10009,4495b,4,1,f +10009,4589,70,1,f +10009,63965,70,1,f +10010,2412b,0,2,f +10010,2432,15,1,f +10010,2555,15,2,f +10010,2569,0,1,f +10010,298c02,15,1,t +10010,298c02,15,2,f +10010,30208,334,1,f +10010,30209,8,1,f +10010,3034,7,1,f +10010,3069bpr0101,7,1,f +10010,3626bp69,14,1,f +10010,3679,7,1,f +10010,3680,15,1,f +10010,3710,15,1,f +10010,3839b,0,1,f +10010,3937,15,1,f +10010,3938,7,1,f +10010,4740,42,2,f +10010,6014a,15,4,f +10010,6015,0,4,f +10010,6157,0,2,f +10010,6463stk01,9999,1,t +10010,71966,15,1,f +10010,769,334,1,f +10010,890,0,1,f +10010,970x002,15,1,f +10010,973px176c01,15,1,f +10011,2446,0,1,f +10011,2447,42,1,f +10011,2540,7,2,f +10011,2569,42,1,f +10011,3004,4,1,f +10011,3039,4,1,f +10011,3069bp68,15,1,f +10011,3623,0,1,f +10011,3626apr0001,14,1,f +10011,3639,0,1,f +10011,3640,0,1,f +10011,3666,4,1,f +10011,3838,0,1,f +10011,3839b,0,1,f +10011,4288,0,4,f +10011,4600,0,2,f +10011,4624,7,4,f +10011,4740,42,2,f +10011,6019,0,2,f +10011,970x026,15,1,f +10011,973p68c01,4,1,f +10014,2780,0,3,f +10014,32013,19,2,f +10014,32016,19,2,f +10014,32034,7,1,f +10014,32054,0,2,f +10014,32062,0,6,f +10014,32065,19,2,f +10014,32073,0,1,f +10014,32123b,7,8,f +10014,32165,19,1,f +10014,32166,8,2,f +10014,32184,0,1,f +10014,32305,0,1,f +10014,32306,0,1,f +10014,32307,8,2,f +10014,32307,19,2,f +10014,32310pb01,15,1,f +10014,32311,15,2,f +10014,32348,19,1,f +10014,32439a,8,3,f +10014,3647,15,1,f +10014,3648b,15,1,f +10014,3705,0,2,f +10014,3706,0,5,f +10014,3707,0,1,f +10014,3749,7,2,f +10014,4497,41,2,f +10014,4519,0,1,f +10014,4716,15,1,f +10014,6536,15,2,f +10014,6536,0,2,f +10014,6536,19,2,f +10014,6538b,0,2,f +10014,78c07,15,2,f +10014,rb00182,19,1,f +10014,rb00182,15,1,f +10014,x209pw1,0,1,f +10015,3062c,47,40,f +10015,3062c,15,40,f +10015,3062c,14,40,f +10015,3062c,1,40,f +10015,3062c,4,40,f +10016,1,15,3,f +10016,10b,1,1,f +10016,2,15,1,f +10016,3,4,2,f +10016,3003,14,2,f +10016,3005,47,2,f +10016,3005,4,48,f +10016,3005,15,18,f +10016,3008,15,4,f +10016,3009,15,6,f +10016,3010,4,5,f +10016,3010,15,8,f +10016,3023,14,1,f +10016,3023,1,1,f +10016,3023,0,1,f +10016,3024,14,2,f +10016,3028,15,2,f +10016,3030,15,2,f +10016,3031,4,3,f +10016,3036,4,1,f +10016,3062a,47,2,f +10016,3062a,14,2,f +10016,3068a,15,6,f +10016,3068a,4,34,f +10016,3068a,14,11,f +10016,3069a,1,2,f +10016,3069a,14,8,f +10016,3069a,15,32,f +10016,3069a,4,36,f +10016,3069a,0,1,f +10016,3070a,14,1,f +10016,3070a,15,1,f +10016,3070a,0,2,f +10016,3070a,4,4,f +10016,837,15,2,f +10016,838,4,2,f +10018,4771,15,1,f +10018,4773,36,2,f +10018,4773,33,2,f +10021,2362a,0,2,f +10021,2412a,0,2,f +10021,2412a,15,7,f +10021,2418a,42,4,f +10021,2420,0,6,f +10021,2420,15,2,f +10021,2431,15,1,f +10021,2434,0,1,f +10021,2436,0,1,f +10021,2440p69,0,1,f +10021,2443,0,2,f +10021,2445,0,1,f +10021,2446,0,2,f +10021,2447,42,2,f +10021,2452,0,1,f +10021,2456,0,1,f +10021,2458,15,1,f +10021,2458,0,1,f +10021,2466,42,1,f +10021,2515,0,6,f +10021,2516,15,2,f +10021,2540,0,1,f +10021,2569,42,2,f +10021,2605c01,0,4,f +10021,3002,0,1,f +10021,3003,0,1,f +10021,3004,15,5,f +10021,3004,0,7,f +10021,3005,15,2,f +10021,3005,0,4,f +10021,3006,0,1,f +10021,3020,0,4,f +10021,3021,0,4,f +10021,3022,0,3,f +10021,3023,0,12,f +10021,3023,15,4,f +10021,3024,15,2,f +10021,3024,7,2,f +10021,3031,0,1,f +10021,3034,0,2,f +10021,3039,15,1,f +10021,3039,0,1,f +10021,3040b,0,4,f +10021,3069bp13,15,2,f +10021,3069bp68,15,1,f +10021,3298,0,4,f +10021,3479,0,1,f +10021,3626apr0001,14,2,f +10021,3639,0,2,f +10021,3640,0,2,f +10021,3647,7,2,f +10021,3660,15,1,f +10021,3673,7,4,f +10021,3679,7,4,f +10021,3680,15,4,f +10021,3700,0,5,f +10021,3707,0,1,f +10021,3710,0,2,f +10021,3743,7,1,f +10021,3747a,15,1,f +10021,3795,0,3,f +10021,3795,15,1,f +10021,3832,0,2,f +10021,3838,0,2,f +10021,3937,0,2,f +10021,3938,15,1,f +10021,3962a,0,2,f +10021,4032a,0,1,f +10021,4032a,15,5,f +10021,4085c,0,2,f +10021,4085c,15,2,f +10021,4151a,0,1,f +10021,4162,15,2,f +10021,4213,0,2,f +10021,4275b,0,2,f +10021,4276b,15,2,f +10021,4286,15,2,f +10021,4345b,15,1,f +10021,4346p60,0,1,f +10021,4531,15,1,f +10021,4590,0,1,f +10021,4591,0,3,f +10021,4595,15,2,f +10021,4597,15,1,f +10021,4623,0,1,f +10021,4625,0,1,f +10021,4625,15,1,f +10021,4730,7,2,f +10021,4730,0,1,f +10021,4859,0,1,f +10021,4865a,15,1,f +10021,6141,15,2,f +10021,970x026,15,2,f +10021,973p51c01,15,2,f +10022,2340,14,2,f +10022,2412b,0,2,f +10022,2420,14,4,f +10022,2450,14,2,f +10022,2715,0,1,f +10022,2716,47,1,f +10022,2717,4,1,f +10022,2780,0,1,f +10022,2790,7,1,f +10022,2791,7,1,f +10022,2792,0,1,f +10022,2819,7,1,f +10022,2850a,7,1,f +10022,2851,8,1,f +10022,2852,7,1,f +10022,2853,7,1,f +10022,2994,15,4,f +10022,3021,14,2,f +10022,3023,0,1,f +10022,3023,14,2,f +10022,3068b,0,1,f +10022,3475b,0,1,f +10022,3647,7,1,f +10022,3700,14,1,f +10022,3701,7,2,f +10022,3702,14,6,f +10022,3705,0,2,f +10022,3706,0,2,f +10022,3707,0,1,f +10022,3708,0,1,f +10022,3709,0,2,f +10022,3710,14,1,f +10022,3713,7,3,f +10022,3737,0,1,f +10022,3738,14,2,f +10022,3749,7,6,f +10022,3832,14,1,f +10022,3894,14,1,f +10022,3937,0,1,f +10022,3938,0,1,f +10022,4019,7,2,f +10022,4032a,7,1,f +10022,4261,7,2,f +10022,4265b,7,2,f +10022,4274,7,1,f +10022,4442,0,1,f +10022,6536,7,4,f +10022,6538a,7,2,f +10022,6553,7,2,f +10022,6558,0,6,f +10022,6578,0,4,f +10022,8225stk01,9999,1,f +10022,tech012,9999,1,f +10025,12894pr0001,15,1,f +10025,3626bpb0915,15,1,f +10025,88646,0,1,f +10025,970c00pb241,15,1,f +10025,973pr2316c01,15,1,f +10025,99251,0,1,f +10026,2343,5,2,f +10026,2357,15,2,f +10026,2456,15,1,f +10026,2577,15,4,f +10026,3001,15,5,f +10026,3001,1,3,f +10026,3001,14,3,f +10026,3002,14,2,f +10026,3002,1,2,f +10026,3002,15,2,f +10026,3003,14,4,f +10026,3003,1,4,f +10026,3003,15,6,f +10026,3004,1,10,f +10026,3004,15,20,f +10026,3004,14,14,f +10026,3005,14,10,f +10026,3005,15,16,f +10026,3005,1,8,f +10026,3005pe1,14,2,f +10026,3008,15,2,f +10026,3009,1,2,f +10026,3009,15,2,f +10026,3009,14,2,f +10026,3010,1,6,f +10026,3010,14,6,f +10026,3010,15,10,f +10026,3010p01,14,1,f +10026,3020,15,2,f +10026,3022,15,2,f +10026,3030,15,1,f +10026,3031,14,1,f +10026,3032,14,1,f +10026,3034,15,2,f +10026,3039,14,4,f +10026,3068b,14,4,f +10026,3069b,14,2,f +10026,3297,14,4,f +10026,3297px10,15,2,f +10026,3298,14,4,f +10026,3299,14,2,f +10026,3300,14,2,f +10026,3403c01,15,1,f +10026,3470,2,1,f +10026,3483,0,4,f +10026,3622,14,4,f +10026,3622,15,6,f +10026,3622,1,4,f +10026,3626bp02,14,1,f +10026,3626bp03,14,1,f +10026,3633,13,4,f +10026,3660,14,2,f +10026,3741,2,3,f +10026,3742,13,1,t +10026,3742,5,6,f +10026,3742,5,2,t +10026,3742,13,3,f +10026,3747b,14,2,f +10026,3795,15,2,f +10026,3823,47,1,f +10026,3852b,74,1,f +10026,3853,5,3,f +10026,3854,13,6,f +10026,3856,13,6,f +10026,3861b,5,1,f +10026,3867,74,1,f +10026,3901,0,1,f +10026,3957a,13,2,f +10026,3958,14,1,f +10026,4094b,5,1,f +10026,4495b,5,1,f +10026,6093,0,1,f +10026,6183,13,2,f +10026,6215,14,8,f +10026,6248,15,4,f +10026,6249,8,2,f +10026,970c00,7,1,f +10026,970c00,1,1,f +10026,973c03,13,1,f +10026,973pr1204c01,15,1,f +10027,2413,15,2,f +10027,2420,72,2,f +10027,2431,15,1,f +10027,2431,72,1,f +10027,2437,40,1,f +10027,3003,0,1,f +10027,3005,72,1,f +10027,3010,15,2,f +10027,3020,15,3,f +10027,3020,4,1,f +10027,3021,72,4,f +10027,3021,71,1,f +10027,3022,71,1,f +10027,3023,0,5,f +10027,3024,72,2,f +10027,3024,15,1,f +10027,3039pc5,71,1,f +10027,3040b,15,2,f +10027,3068b,4,1,f +10027,3070b,4,1,f +10027,3070b,15,1,t +10027,3070b,15,3,f +10027,3070b,4,1,t +10027,3070b,14,1,f +10027,3070b,14,1,t +10027,3460,71,1,f +10027,3623,72,3,f +10027,3666,72,1,f +10027,3679,7,2,f +10027,3680,15,2,f +10027,3710,15,3,f +10027,3710,72,1,f +10027,3794a,15,1,f +10027,3795,71,2,f +10027,3937,71,1,f +10027,4079,6,3,f +10027,4162,72,1,f +10027,41769,15,4,f +10027,41770,15,4,f +10027,4282,71,1,f +10027,44301a,15,2,f +10027,44302a,15,2,f +10027,4449,0,1,f +10027,4449,73,1,f +10027,44571,15,4,f +10027,4477,15,1,f +10027,4477,72,1,f +10027,44822,15,4,f +10027,4854,71,2,f +10027,4855,71,2,f +10027,4856a,72,2,f +10027,4858,15,1,f +10027,4859,72,1,f +10027,4859,15,1,f +10027,4861,15,1,f +10027,4862,40,12,f +10027,4863,15,6,f +10027,4865a,4,2,f +10027,4865a,15,2,f +10027,4867,15,1,f +10027,4868b,15,2,f +10027,4869,71,2,f +10027,4870c02,71,3,f +10027,4871,71,1,f +10027,6134,0,1,f +10027,6141,47,1,t +10027,6141,34,1,t +10027,6141,36,1,t +10027,6141,15,1,t +10027,6141,34,1,f +10027,6141,36,1,f +10027,6141,47,1,f +10027,6141,15,2,f +10027,6636,15,2,f +10027,73983,72,4,f +10029,3041,0,25,f +10031,2420,72,2,f +10031,2654,19,1,f +10031,2780,0,1,t +10031,2780,0,1,f +10031,3004,19,2,f +10031,3021,70,1,f +10031,3022,70,3,f +10031,3022,19,1,f +10031,3023,70,4,f +10031,3023,19,3,f +10031,30236,19,2,f +10031,30374,0,1,f +10031,3039,70,2,f +10031,3040b,70,2,f +10031,3298,70,1,f +10031,3623,70,2,f +10031,3700,70,2,f +10031,3710,70,1,f +10031,3794a,70,4,f +10031,4032a,15,1,f +10031,4032b,19,1,f +10031,4070,70,2,f +10031,4081b,72,2,f +10031,41532,0,2,f +10031,44301a,72,1,f +10031,44302a,72,4,f +10031,44567a,72,1,f +10031,44728,19,4,f +10031,48336,19,1,f +10031,49668,19,6,f +10031,6019,4,2,f +10031,6019,72,2,f +10031,6141,0,1,t +10031,6141,15,2,f +10031,6141,0,2,f +10031,6141,19,5,f +10031,6141,15,1,t +10031,6141,19,1,t +10031,6148,2,2,f +10031,6541,72,2,f +10032,30410,0,1,f +10032,3626cpr1313,78,1,f +10032,41879a,308,1,f +10032,87991,484,1,f +10032,93231,70,1,f +10032,970c00pr0747,70,1,f +10032,973pr2812c01b,272,1,f +10034,2460,4,1,f +10034,2479,0,1,f +10034,3139,0,5,f +10034,3464,7,1,f +10034,4488,4,2,f +10034,4617b,0,2,f +10034,4624,7,4,f +10034,4868a,15,2,f +10034,4869,7,2,f +10034,4870,7,2,f +10034,8,7,1,f +10036,5102,7,1,f +10036,5102,0,1,f +10037,2412b,80,1,f +10037,2431,27,3,f +10037,2436,15,2,f +10037,30027b,71,4,f +10037,30028,0,4,f +10037,3020,0,1,f +10037,3024,71,2,f +10037,3024,47,2,f +10037,3031,72,1,f +10037,30602,40,1,f +10037,3710,72,2,f +10037,3795,0,1,f +10037,50947,27,2,f +10037,50950,15,2,f +10037,54200,15,1,t +10037,54200,15,2,f +10037,6141,36,1,t +10037,6141,36,2,f +10037,6157,72,2,f +10038,10124,326,1,f +10038,10126,326,1,f +10038,10127,326,1,f +10038,10154,326,1,f +10038,10247,4,6,f +10038,10247,14,2,f +10038,11212,72,2,f +10038,11215,71,4,f +10038,11458,72,2,f +10038,11477,0,6,f +10038,11477,326,6,f +10038,11478,71,2,f +10038,13547,4,2,f +10038,14769,0,4,f +10038,15068,0,4,f +10038,15379,0,124,f +10038,15462,28,2,f +10038,18587,14,1,f +10038,18588,0,1,f +10038,18651,0,3,f +10038,18654,72,6,f +10038,18675,0,1,f +10038,18895,4,1,f +10038,18896,0,1,f +10038,18906,288,1,f +10038,18946,4,3,f +10038,18975,72,1,f +10038,18987,0,1,f +10038,22410,148,1,f +10038,23948,14,1,f +10038,2412b,1,2,f +10038,2412b,0,7,f +10038,2420,0,2,f +10038,24299,72,2,f +10038,24307,72,2,f +10038,2432,1,1,f +10038,2436,14,2,f +10038,2450,0,2,f +10038,2456,71,5,f +10038,2476a,71,6,f +10038,2496,0,1,f +10038,25892,1,2,f +10038,2654,71,3,f +10038,2655,71,1,f +10038,27017,326,1,f +10038,27058,0,1,f +10038,2723,0,16,f +10038,2730,0,1,f +10038,2780,0,31,f +10038,2815,0,1,f +10038,2877,71,1,f +10038,3003,4,1,f +10038,30031,0,1,f +10038,3004,14,2,f +10038,3005,71,1,f +10038,30173b,179,1,f +10038,30180,0,2,f +10038,3020,15,1,f +10038,3020,14,1,f +10038,3020,0,1,f +10038,3020,288,3,f +10038,3020,72,4,f +10038,3020,326,2,f +10038,3021,19,4,f +10038,3021,0,2,f +10038,3022,14,5,f +10038,3023,0,3,f +10038,3023,71,8,f +10038,3023,4,2,f +10038,3023,182,7,f +10038,3023,36,6,f +10038,3030,72,1,f +10038,3031,71,1,f +10038,3032,72,2,f +10038,3034,72,1,f +10038,3035,14,3,f +10038,3036,72,1,f +10038,3037,71,3,f +10038,3037,0,1,f +10038,3039,14,4,f +10038,30426,0,1,f +10038,30526,72,1,f +10038,30602,0,4,f +10038,3062b,0,4,f +10038,3068b,0,1,f +10038,3069b,0,1,f +10038,3176,288,6,f +10038,32000,72,1,f +10038,32062,4,1,f +10038,32064a,71,4,f +10038,32064a,2,1,f +10038,32123b,14,14,f +10038,32138,71,1,f +10038,32140,0,2,f +10038,32184,71,2,f +10038,32271,72,2,f +10038,32291,4,2,f +10038,32324,71,1,f +10038,32449,14,4,f +10038,32449,72,2,f +10038,32474,0,2,f +10038,32524,14,4,f +10038,32525,0,2,f +10038,32526,71,1,f +10038,32526,72,1,f +10038,32529,0,2,f +10038,32530,4,2,f +10038,32531,0,2,f +10038,3297,0,1,f +10038,3298,0,2,f +10038,3460,14,1,f +10038,3460,71,1,f +10038,3622,1,1,f +10038,3623,72,4,f +10038,3626cpr1613,0,1,f +10038,3626cpr1801,78,1,f +10038,3626cpr1969,4,1,f +10038,3626cpr1986,71,1,f +10038,3648b,72,2,f +10038,3666,0,5,f +10038,3700,71,1,f +10038,3701,72,3,f +10038,3702,71,2,f +10038,3705,4,2,f +10038,3706,0,1,f +10038,3707,4,1,f +10038,3710,288,2,f +10038,3710,14,2,f +10038,3710,0,4,f +10038,3710,71,4,f +10038,3713,4,5,f +10038,3749,19,6,f +10038,3795,72,2,f +10038,3795,71,2,f +10038,3895,71,4,f +10038,4032a,19,6,f +10038,4081b,1,2,f +10038,41532,0,2,f +10038,41677,4,3,f +10038,41767,0,2,f +10038,41768,0,2,f +10038,41769,0,1,f +10038,41770,0,1,f +10038,4185,47,1,f +10038,4274,1,8,f +10038,4286,0,2,f +10038,43093,1,8,f +10038,43712,0,1,f +10038,43722,71,1,f +10038,43723,71,1,f +10038,4477,72,2,f +10038,4519,71,7,f +10038,50304,14,1,f +10038,50305,14,1,f +10038,50861,0,2,f +10038,50862,4,2,f +10038,50943,72,1,f +10038,50950,71,2,f +10038,50955,0,1,f +10038,50956,0,1,f +10038,51739,288,6,f +10038,51739,72,1,f +10038,53451,226,7,f +10038,54200,46,4,f +10038,54200,0,2,f +10038,54200,326,6,f +10038,54200,47,2,f +10038,54383,288,1,f +10038,54383,0,3,f +10038,54384,0,3,f +10038,54384,288,1,f +10038,57906,0,2,f +10038,59426,72,4,f +10038,59443,4,2,f +10038,59900,71,3,f +10038,59900,182,4,f +10038,6005,0,8,f +10038,60470b,14,1,f +10038,60476,71,1,f +10038,60897,14,1,f +10038,6091,0,2,f +10038,6112,0,1,f +10038,61409,72,2,f +10038,6141,179,16,f +10038,6141,36,9,f +10038,6141,46,14,f +10038,61678,0,2,f +10038,62360,40,1,f +10038,62885,0,2,f +10038,63864,0,4,f +10038,63869,71,1,f +10038,64712,179,2,f +10038,6541,1,2,f +10038,6558,1,7,f +10038,6585,0,1,f +10038,6587,28,9,f +10038,6589,19,2,f +10038,6629,0,4,f +10038,6632,1,1,f +10038,6632,71,3,f +10038,6636,0,4,f +10038,85984,14,2,f +10038,85984,71,2,f +10038,85984,0,2,f +10038,87079,0,2,f +10038,87083,72,4,f +10038,87580,0,2,f +10038,87747,226,9,f +10038,90541pr0002,1,1,f +10038,92593,4,2,f +10038,92946,72,2,f +10038,92946,0,6,f +10038,93606,0,6,f +10038,94925,71,3,f +10038,96874,25,1,t +10038,970c00,0,1,f +10038,970c00,72,1,f +10038,970c00pr0002,72,1,f +10038,970c00pr1091,0,1,f +10038,973pr2922c01,72,1,f +10038,973pr3450c01,28,1,f +10038,973pr3478c01,72,1,f +10038,973pr3479c01,0,1,f +10038,98567,179,2,f +10038,98721,179,1,f +10038,99780,14,2,f +10039,11477,70,1,f +10039,11816pr0020,84,1,f +10039,13965,70,1,f +10039,15712,297,1,f +10039,19204pr0001,320,1,f +10039,20381pr0001,26,1,f +10039,2423,31,1,f +10039,2431,26,2,f +10039,3004,320,2,f +10039,30153,45,1,f +10039,30357,191,2,f +10039,3069b,182,2,f +10039,33051,4,1,f +10039,33291,5,3,f +10039,33291,5,1,t +10039,3666,191,1,f +10039,3795,70,1,f +10039,3899,4,1,f +10039,59900,36,1,f +10039,6141,182,1,f +10039,6141,182,1,t +10039,63965,70,1,f +10039,92456pr0074c01,84,1,f +10041,242c01,4,4,f +10041,3058b,0,1,f +10041,3482,4,4,f +10041,3483,0,8,f +10041,3706,79,2,f +10041,3709a,7,1,f +10041,468c03,0,1,f +10041,498,0,2,f +10041,7039,4,4,f +10041,bb141c01,1,2,f +10041,x466,15,1,f +10041,x469b,0,1,f +10042,3020,7,4,f +10042,3034,7,6,f +10042,3036,7,3,f +10042,3068b,1,2,f +10042,3068b,15,2,f +10042,3068b,4,2,f +10042,3068bp18,1,3,f +10042,3068bp18,4,3,f +10042,3068bp18,15,7,f +10042,4350c01,7,1,f +10042,4707c03,7,3,f +10042,765c28,7,2,f +10042,765c96,7,1,f +10047,11203,0,1,f +10047,15573,28,3,f +10047,15672,326,2,f +10047,15712,71,2,f +10047,2343,179,1,t +10047,2343,179,2,f +10047,24151,326,1,f +10047,2432,70,1,f +10047,24326,71,2,f +10047,2540,72,1,f +10047,298c02,71,1,f +10047,298c02,71,1,t +10047,30028,0,8,f +10047,3005,47,1,f +10047,3021,71,1,f +10047,3022,72,1,f +10047,3022,84,1,f +10047,3023,484,3,f +10047,3039,14,1,f +10047,30663,71,1,f +10047,3626cpr1895,4,1,f +10047,3626cpr1900,1,1,f +10047,3829c01,71,1,f +10047,41531,272,1,f +10047,41879a,0,1,f +10047,41879a,1,1,f +10047,4274,1,1,t +10047,4274,1,2,f +10047,4349,72,2,f +10047,44674,272,2,f +10047,4588,72,2,f +10047,4590,72,1,f +10047,54200,272,1,t +10047,54200,272,4,f +10047,54200,40,1,t +10047,54200,40,2,f +10047,59900,33,2,f +10047,6019,0,1,f +10047,60478,0,2,f +10047,60897,72,2,f +10047,61409,326,2,f +10047,6141,179,2,f +10047,6141,179,1,t +10047,63868,14,2,f +10047,6636,326,2,f +10047,74967,0,4,f +10047,74967,71,4,f +10047,75902pr0004,4,1,f +10047,76065stk01,9999,1,f +10047,85984,0,2,f +10047,85984,14,1,f +10047,87580,14,1,f +10047,88072,0,1,f +10047,93274,72,2,f +10047,95343,272,1,f +10047,973pr3335c01,1,1,f +10047,973pr3339c01,0,1,f +10047,98138,47,5,f +10047,98138,47,1,t +10047,99780,72,1,f +10048,2412b,19,32,f +10048,2431,71,3,f +10048,3004,19,4,f +10048,3005,19,27,f +10048,3021,19,18,f +10048,3021,288,2,f +10048,3022,19,5,f +10048,3023,19,38,f +10048,3024,0,1,t +10048,3024,0,1,f +10048,3024,72,6,f +10048,3024,72,1,t +10048,3033,0,2,f +10048,3044c,72,4,f +10048,3062b,19,57,f +10048,3069b,72,1,f +10048,3069b,0,4,f +10048,3069b,19,2,f +10048,3070b,72,1,t +10048,3070b,72,8,f +10048,3070b,19,34,f +10048,3070b,19,1,t +10048,3622,19,4,f +10048,3623,72,1,f +10048,3623,19,14,f +10048,3688,72,1,f +10048,3794b,71,16,f +10048,4150pr0001,15,4,f +10048,4162,0,3,f +10048,4162,71,3,f +10048,4162pr0017,0,1,f +10048,4589,72,1,f +10048,4589,19,5,f +10048,4733,0,9,f +10048,47905,71,3,f +10048,6141,19,24,f +10048,6141,72,4,f +10048,6141,72,1,t +10048,6141,19,1,t +10048,87087,15,5,f +10050,32013,8,1,f +10050,32015,8,2,f +10050,32062,0,3,f +10050,32140,0,2,f +10050,32174,0,1,f +10050,32474,0,1,f +10050,32506,0,2,f +10050,32523,0,1,f +10050,32576,0,2,f +10050,41663,0,1,f +10050,41669,42,2,f +10050,42042,8,1,f +10050,42042und,0,1,f +10050,43093,0,2,f +10050,4519,0,1,f +10050,6536,0,1,f +10050,6558,0,2,f +10054,23306,383,1,f +10054,3022,8,3,f +10054,30374,42,1,f +10054,30381,0,1,f +10054,30566,8,3,f +10054,3626b,0,1,f +10054,3626bpr0342,14,1,f +10054,3626bpr0635,14,1,f +10054,3901,6,1,f +10054,4142687pb1,9999,1,f +10054,4142687pb2,9999,1,f +10054,4142687pb3,9999,1,f +10054,4349,0,1,f +10054,50231,0,1,f +10054,970c00,0,1,f +10054,970c00pr0033,6,1,f +10054,970x025,7,1,f +10054,973pb0282c01,7,1,f +10054,973ps2c01,0,1,f +10054,973ps5c01,0,1,f +10054,x50px1,2,1,f +10055,2780,0,10,f +10055,32013,72,2,f +10055,32062,4,2,f +10055,3737,0,2,f +10055,43093,1,6,f +10055,47306,72,1,f +10055,47312,72,1,f +10055,47328,72,2,f +10055,48989,71,1,f +10055,50921,72,2,f +10055,50923,72,3,f +10055,53542,25,2,f +10055,53566,25,4,f +10055,54821,135,4,f +10055,57536,42,1,f +10055,57547,72,1,f +10055,57702,143,1,f +10055,58177,0,1,f +10055,59443,0,2,f +10055,60176,72,4,f +10055,60913,25,1,f +10055,60917,72,2,f +10055,60925,179,4,f +10055,61053,72,4,f +10055,62233,135,1,f +10055,6558,1,2,f +10055,6587,72,1,f +10056,2436,0,1,f +10056,2555,0,2,f +10056,2654,1,3,f +10056,3004,0,2,f +10056,3022,0,1,f +10056,3023,1,4,f +10056,30383,0,2,f +10056,3045,0,2,f +10056,3048b,0,1,f +10056,3062b,0,2,f +10056,3069b,1,4,f +10056,3176,0,6,f +10056,3679,71,1,f +10056,3680,0,1,f +10056,3710,1,1,f +10056,3794a,0,1,f +10056,3941,0,1,f +10056,4032a,71,3,f +10056,41747,0,1,f +10056,41748,0,1,f +10056,41769,72,1,f +10056,41770,72,1,f +10056,44302a,72,4,f +10056,44302a,1,4,f +10056,44567a,72,7,f +10056,44728,0,3,f +10056,47758,0,1,f +10056,47905,0,1,f +10056,48336,0,5,f +10056,49668,135,6,f +10056,54200,0,8,f +10056,6019,0,6,f +10056,6091,0,4,f +10056,6141,1,8,f +10056,6141,36,2,f +10056,6141,1,1,t +10056,6141,36,1,t +10056,970x026,1,2,f +10059,12607ass02pr02,10,1,f +10059,12609pr0001,28,1,f +10059,2654,71,1,f +10059,30028,0,2,f +10059,3003,14,2,f +10059,3020,14,1,f +10059,3022,70,1,f +10059,3024,46,2,f +10059,3069b,5,2,f +10059,3794b,14,2,f +10059,3794b,4,1,f +10059,3795,19,1,f +10059,4081b,72,2,f +10059,4599b,4,1,f +10059,4600,71,2,f +10059,4624,15,2,f +10059,48336,71,2,f +10059,54200,326,6,f +10059,59895,0,2,f +10059,60470b,14,2,f +10059,6141,4,3,f +10059,6141,72,3,f +10059,74967,71,2,f +10059,970c00pr0472,10,1,f +10059,973pr2262c01,10,1,f +10060,14210,2,1,f +10060,2335px2,1,2,f +10060,2357,8,2,f +10060,2397,4,1,f +10060,2420,7,4,f +10060,2444,4,8,f +10060,2454a,0,2,f +10060,2458,8,6,f +10060,2540,7,18,f +10060,2555,0,2,f +10060,2877,0,4,f +10060,3003,7,4,f +10060,3004,0,1,f +10060,3004,4,4,f +10060,30041,0,1,f +10060,30042,0,1,f +10060,30055,6,2,f +10060,3006,2,2,f +10060,3009,0,2,f +10060,3010,0,2,f +10060,3010,7,8,f +10060,30101,0,2,f +10060,30102,6,1,f +10060,30102p01,6,1,f +10060,30136,15,33,f +10060,30137,15,2,f +10060,30156,8,1,f +10060,30156px1,8,1,f +10060,30157,4,1,f +10060,30173a,0,4,f +10060,30173a,7,3,f +10060,30174,8,1,f +10060,30175,0,1,f +10060,30175,7,1,f +10060,30175,8,1,f +10060,30176,2,4,f +10060,30177,8,1,f +10060,30177,0,1,f +10060,3020,14,2,f +10060,3022,0,1,f +10060,30224,7,2,f +10060,3023,0,3,f +10060,3031,14,1,f +10060,3033,0,1,f +10060,3034,0,2,f +10060,3035,0,7,f +10060,3039,0,16,f +10060,3040b,7,4,f +10060,3043,0,4,f +10060,3062b,4,25,f +10060,3069b,14,2,f +10060,3298,0,12,f +10060,3300,0,10,f +10060,3460,4,2,f +10060,3460,0,6,f +10060,3622,7,2,f +10060,3622,0,4,f +10060,3626bpn1,14,1,f +10060,3626bpx5,14,1,f +10060,3626bpx6,14,1,f +10060,3626bpx7,14,1,f +10060,3626bpx8,14,1,f +10060,3660,7,5,f +10060,3666,7,2,f +10060,3666,0,8,f +10060,3673,7,4,f +10060,3684,7,6,f +10060,3700,8,11,f +10060,3713,7,2,f +10060,3795,0,2,f +10060,3795,4,3,f +10060,3832,7,2,f +10060,3849,6,4,f +10060,3942c,8,2,f +10060,4070,4,16,f +10060,4201,7,1,f +10060,4202,2,1,f +10060,4204,2,2,f +10060,4213,0,4,f +10060,4275b,7,2,f +10060,4286,0,4,f +10060,4315,4,4,f +10060,4460a,7,4,f +10060,4489,6,2,f +10060,4493c01pb02,0,1,f +10060,4531,0,2,f +10060,4623,4,1,f +10060,4733,8,2,f +10060,4738a,6,1,f +10060,4739a,6,1,f +10060,4740,8,4,f +10060,4864b,15,8,f +10060,4865a,0,6,f +10060,529,334,1,f +10060,57503,334,1,f +10060,57504,334,1,f +10060,57505,334,1,f +10060,57506,334,1,f +10060,6044,0,2,f +10060,6083,8,2,f +10060,6108,4,2,f +10060,6108,0,2,f +10060,6111,4,2,f +10060,6112,0,5,f +10060,6123,8,2,f +10060,6141,4,9,f +10060,6157,0,1,f +10060,6587,8,2,f +10060,970c00,0,1,f +10060,970c00,8,1,f +10060,970c11pb02b,0,1,f +10060,970x021,0,1,f +10060,970x023,0,1,f +10060,973pb0240c03,8,1,f +10060,973pn1c01,1,1,f +10060,973px11c01,0,1,f +10060,973px12c01,1,1,f +10060,973px14c01,4,1,f +10060,x55,47,1,f +10060,x65,47,1,f +10062,2335,0,2,f +10062,2412b,72,2,f +10062,2412b,0,4,f +10062,2431,85,7,f +10062,2432,70,1,f +10062,2444,0,1,f +10062,2540,0,2,f +10062,2654,19,2,f +10062,298c02,1,1,f +10062,3001,71,1,f +10062,3004,85,26,f +10062,3005,85,16,f +10062,3010,85,18,f +10062,30157,71,2,f +10062,3020,72,1,f +10062,3021,85,11,f +10062,3022,0,1,f +10062,3023,19,2,f +10062,3023,0,1,f +10062,3031,0,1,f +10062,3032,15,1,f +10062,3032,0,7,f +10062,3034,71,2,f +10062,3035,71,1,f +10062,30374,70,1,f +10062,3062bpr36,378,1,f +10062,3069b,0,2,f +10062,3069bpr0113,19,2,f +10062,3070b,0,8,f +10062,32013,72,1,f +10062,32073,71,1,f +10062,3460,0,4,f +10062,3624,85,1,f +10062,3626bpr0703,78,1,f +10062,3626bpr0856,78,1,f +10062,3626bpr0862,78,1,f +10062,3666,0,11,f +10062,3673,71,1,f +10062,3710,70,2,f +10062,3829c01,1,1,f +10062,3940b,72,1,f +10062,3957b,71,1,f +10062,3958,0,3,f +10062,40233,0,1,f +10062,4032a,70,1,f +10062,4034,47,18,f +10062,4079,70,2,f +10062,4085c,1,2,f +10062,4162,0,4,f +10062,4176,47,2,f +10062,44567a,71,1,f +10062,44728,72,1,f +10062,4589,46,4,f +10062,4594,47,1,f +10062,4738a,70,1,f +10062,4739a,70,1,f +10062,47457,15,1,f +10062,50745,0,2,f +10062,52031,85,2,f +10062,56902,71,4,f +10062,6019,0,3,f +10062,60470a,71,3,f +10062,60475a,71,1,f +10062,60593,85,6,f +10062,60602,47,6,f +10062,61254,0,4,f +10062,6141,36,1,f +10062,6141,47,2,f +10062,6187,71,3,f +10062,63864,0,2,f +10062,64798,71,1,f +10062,6556,85,18,f +10062,6636,0,5,f +10062,75c06,0,2,f +10062,92084pr0003,15,1,f +10062,92593,0,9,f +10062,92950,85,3,f +10062,970c00,85,1,f +10062,970c00,28,1,f +10062,970c00,0,1,f +10062,973pr1674c01,272,1,f +10062,973pr1860c01,85,1,f +10062,973pr1873c01,72,1,f +10063,2456,4,13,f +10063,2456,1,6,f +10063,2456,15,12,f +10063,3001,15,12,f +10063,3001,1,12,f +10063,3007,4,7,f +10064,30602,112,2,f +10064,43093,1,1,f +10064,4740,0,1,t +10064,4740,0,1,f +10064,47430,112,2,f +10064,47431,72,2,f +10064,47432,72,2,f +10064,47452,71,2,f +10064,47454,71,2,f +10064,47455,73,10,f +10064,47456,112,4,f +10064,47457,112,2,f +10064,47458,112,4,f +10064,47460,134,1,f +10064,47474,72,1,f +10064,47477c01pb06,112,1,f +10064,50616,134,1,f +10064,8809cape,7,1,f +10064,bb153pb06,112,1,f +10064,rb00190,89,1,f +10066,2423,2,1,f +10066,2654,0,1,f +10066,30151a,47,1,f +10066,3022,15,1,f +10066,30367b,0,1,f +10066,3062b,0,1,f +10066,4589,0,1,f +10066,4589,182,1,f +10066,6019,0,1,f +10066,6141,15,2,f +10066,6141,15,1,t +10066,63965,72,1,f +10067,4025,0,2,f +10069,11215,71,1,f +10069,11458,15,2,f +10069,11476,71,2,f +10069,14769pr1005,15,2,f +10069,15573,15,4,f +10069,18677,71,2,f +10069,2412b,0,2,f +10069,2420,320,3,f +10069,2540,71,2,f +10069,2654,71,2,f +10069,298c02,71,1,t +10069,298c02,71,1,f +10069,3020,320,1,f +10069,3021,72,1,f +10069,3022,320,3,f +10069,3022,15,2,f +10069,3023,72,1,f +10069,3031,71,1,f +10069,3031,15,1,f +10069,30602,320,1,f +10069,3176,320,2,f +10069,3623,15,2,f +10069,3626cpr1553,78,1,f +10069,3665,15,2,f +10069,4032a,72,2,f +10069,4032a,15,2,f +10069,43093,1,2,f +10069,43722,15,1,f +10069,43723,15,1,f +10069,44676,15,4,f +10069,44728,72,1,f +10069,51739,15,1,f +10069,54200,15,1,t +10069,54200,40,3,f +10069,54200,40,1,t +10069,54200,15,6,f +10069,58176,35,2,f +10069,59900,0,2,f +10069,60470b,0,2,f +10069,60897,72,1,f +10069,61184,71,4,f +10069,6141,35,2,f +10069,6141,35,1,t +10069,6141,72,1,t +10069,6141,45,1,t +10069,6141,72,4,f +10069,6141,45,2,f +10069,63965,0,2,f +10069,64799,71,1,f +10069,87557pr0005,15,1,f +10069,92738,0,1,f +10069,93273,15,2,f +10069,970c00,71,1,f +10069,973pr2596c01,15,1,f +10069,99780,72,1,f +10069,99781,15,2,f +10071,2780,0,2,f +10071,32062,0,2,f +10071,32174,72,5,f +10071,32209,15,1,f +10071,32270,71,4,f +10071,3705,0,2,f +10071,3713,71,2,f +10071,43093,1,2,f +10071,4519,71,2,f +10071,47296,72,4,f +10071,47297,272,2,f +10071,47298,272,2,f +10071,47299,272,2,f +10071,47303,33,1,f +10071,47305,272,1,f +10071,47306,272,1,f +10071,47310,272,2,f +10071,47311,272,2,f +10071,47312,72,1,f +10071,47313,57,1,f +10071,47316,179,2,f +10071,49423,272,1,f +10071,6558,0,2,f +10072,10193,212,1,f +10072,16375,85,1,f +10072,31169,212,1,f +10072,3437,5,2,f +10072,4066,15,1,f +10072,40666,31,1,f +10072,62664,5,1,f +10072,72211,29,1,f +10072,72217,15,1,f +10072,74623,15,1,f +10072,98218,31,2,f +10072,98225,29,2,f +10072,99055,212,2,f +10072,99056,212,1,f +10072,99430,15,1,f +10072,99771,212,1,f +10073,2357,72,2,f +10073,2357,15,4,f +10073,2376,0,1,f +10073,2412b,72,2,f +10073,2412b,15,4,f +10073,2412b,0,5,f +10073,2420,320,2,f +10073,2431,27,2,f +10073,2431,71,2,f +10073,2431,72,2,f +10073,2431,15,3,f +10073,2431,25,3,f +10073,2432,72,2,f +10073,2432,0,1,f +10073,2436,15,1,f +10073,2436,0,6,f +10073,2439,2,1,f +10073,2444,72,2,f +10073,2445,1,1,f +10073,2445,72,1,f +10073,2445,15,1,f +10073,2465,15,2,f +10073,2476a,15,6,f +10073,2476a,28,2,f +10073,2555,15,4,f +10073,2584,0,1,f +10073,2585,71,1,f +10073,2654,15,1,f +10073,2780,0,4,f +10073,2780,0,2,t +10073,2877,71,1,f +10073,2877,72,2,f +10073,2921,72,2,f +10073,3001,0,3,f +10073,3002,1,1,f +10073,3002,0,1,f +10073,3002,71,2,f +10073,3003,15,5,f +10073,3004,15,2,f +10073,3004,4,1,f +10073,3005,72,2,f +10073,30055,72,4,f +10073,3008,15,1,f +10073,30089,0,1,f +10073,3009,15,4,f +10073,3010,27,2,f +10073,30136,19,2,f +10073,30145,15,2,f +10073,3020,72,2,f +10073,3020,71,8,f +10073,3020,15,1,f +10073,3020,1,1,f +10073,3020,0,4,f +10073,3020,25,2,f +10073,3020,19,2,f +10073,3021,0,2,f +10073,3021,72,6,f +10073,3021,15,1,f +10073,3022,27,1,f +10073,3022,0,1,f +10073,3022,71,14,f +10073,3023,0,1,f +10073,3023,28,2,f +10073,3023,320,2,f +10073,3023,14,2,f +10073,3023,15,5,f +10073,30236,0,3,f +10073,30237a,15,6,f +10073,3024,182,6,f +10073,3024,36,9,f +10073,3024,15,2,f +10073,3024,33,3,f +10073,30258,0,2,f +10073,30274,71,2,f +10073,3031,72,3,f +10073,3031,15,2,f +10073,3033,72,2,f +10073,3033,71,1,f +10073,3034,15,2,f +10073,3034,72,1,f +10073,3034,1,2,f +10073,3035,15,1,f +10073,30356,15,1,f +10073,30363,72,2,f +10073,30374,0,2,f +10073,3038,19,2,f +10073,30389c,14,1,f +10073,30395,72,1,f +10073,3040b,19,2,f +10073,3040b,25,2,f +10073,30414,15,1,f +10073,30414,0,2,f +10073,30553,72,2,f +10073,3062b,1,4,f +10073,3062b,71,4,f +10073,3068b,0,1,f +10073,3068b,15,2,f +10073,3068b,72,3,f +10073,3069b,72,2,f +10073,3069b,33,1,f +10073,3069b,25,2,f +10073,3069b,27,1,f +10073,3069b,36,1,f +10073,3069b,15,2,f +10073,3069bpr0100,2,3,f +10073,3070b,36,2,f +10073,3070b,36,1,t +10073,3070bpr0007,71,1,f +10073,3070bpr0007,71,1,t +10073,32009,15,2,f +10073,32013,0,1,f +10073,32028,15,2,f +10073,32028,71,2,f +10073,32034,71,2,f +10073,32056,71,2,f +10073,32062,4,3,f +10073,32073,71,1,f +10073,32123b,71,2,t +10073,32123b,71,4,f +10073,32250,72,2,f +10073,32449,71,2,f +10073,3245c,19,4,f +10073,3245c,71,2,f +10073,3298,1,2,f +10073,3460,1,1,f +10073,3460,0,1,f +10073,3622,72,8,f +10073,3622,0,2,f +10073,3623,0,1,f +10073,3623,71,2,f +10073,3623,320,6,f +10073,3623,15,3,f +10073,3623,72,1,f +10073,3623,27,4,f +10073,3660,71,4,f +10073,3666,27,2,f +10073,3705,0,1,f +10073,3710,27,4,f +10073,3710,71,2,f +10073,3710,15,1,f +10073,3747b,72,2,f +10073,3747b,0,2,f +10073,3749,19,2,f +10073,3788,0,6,f +10073,3788,25,1,f +10073,3794b,72,4,f +10073,3794b,4,2,f +10073,3794b,1,2,f +10073,3794b,71,7,f +10073,3795,0,6,f +10073,3795,28,6,f +10073,3832,71,1,f +10073,3957a,0,3,f +10073,4032a,1,3,f +10073,40490,1,2,f +10073,4070,71,1,f +10073,4085c,72,6,f +10073,4150,15,1,f +10073,4150,0,1,f +10073,41532,0,2,f +10073,4162,320,2,f +10073,4162,1,3,f +10073,41862,0,1,f +10073,41862,71,1,f +10073,42022,72,2,f +10073,4274,71,1,t +10073,4274,71,2,f +10073,43093,1,2,f +10073,43898,0,1,f +10073,44568,71,1,f +10073,44569,72,1,f +10073,44674,25,1,f +10073,44674,15,1,f +10073,44728,15,1,f +10073,4477,15,2,f +10073,4519,71,5,f +10073,4600,0,2,f +10073,4740,71,1,f +10073,50943,0,1,f +10073,50944pr0001,0,20,f +10073,50949,0,2,f +10073,50950,0,3,f +10073,50951,0,16,f +10073,51011,0,4,f +10073,54200,15,2,f +10073,54200,47,2,f +10073,54200,15,1,t +10073,54200,40,2,f +10073,54200,36,1,f +10073,54200,0,2,f +10073,54200,47,1,t +10073,54200,0,1,t +10073,54200,33,1,t +10073,54200,33,1,f +10073,54200,40,1,t +10073,54200,36,1,t +10073,56823c50,0,1,f +10073,57894,72,2,f +10073,57895,40,2,f +10073,58176,36,1,f +10073,58827,72,1,f +10073,59443,71,2,f +10073,6014b,0,4,f +10073,60212,27,2,f +10073,60212,15,1,f +10073,60471,0,2,f +10073,60475a,71,2,f +10073,60621,71,2,f +10073,60657,72,1,f +10073,60700,0,4,f +10073,6111,15,2,f +10073,61409,0,2,f +10073,6141,71,1,t +10073,6141,71,10,f +10073,6141,36,3,f +10073,6141,36,1,t +10073,6157,0,10,f +10073,62113,72,1,f +10073,6231,0,2,f +10073,62462,4,2,f +10073,62462,15,2,f +10073,62700,135,2,f +10073,6558,1,1,f +10073,6636,1,1,f +10073,85543,15,1,f +10073,85984,15,1,f +10073,85984,0,2,f +10073,86501,72,1,f +10073,87580,72,1,f +10073,88930,0,2,f +10074,58120,71,1,f +10075,3022,8,3,f +10075,3023,19,2,f +10075,30375,19,2,f +10075,30375ps1,19,1,f +10075,30376,19,3,f +10075,30377,19,1,t +10075,30377,19,6,f +10075,30378,19,2,f +10075,30378pr0001,19,1,f +10075,30566,8,3,f +10075,3070b,19,1,f +10075,3070b,19,1,t +10075,4142689pb1,9999,1,f +10075,4142689pb2,9999,1,f +10075,4142689pb3,9999,1,f +10075,4349,0,3,f +10075,6141,57,3,f +10075,6141,57,1,t +10077,2362a,40,2,f +10077,2412b,71,2,f +10077,2412b,71,1,t +10077,3002,15,1,f +10077,3004,15,2,f +10077,3020,15,2,f +10077,3022,15,1,f +10077,3068b,71,1,f +10077,3069bpr0030,15,1,f +10077,3069bpr0030,15,1,t +10077,4449,70,1,f +10077,54200,33,1,t +10077,54200,36,1,f +10077,54200,33,1,f +10077,54200,36,1,t +10078,2446p01,15,1,f +10078,2447,41,1,f +10078,2513,4,1,f +10078,30000,8,2,f +10078,3001,1,2,f +10078,3001,4,1,f +10078,3001,14,2,f +10078,3001,0,1,f +10078,3001,15,2,f +10078,3002,1,2,f +10078,3002,14,2,f +10078,3002,15,2,f +10078,3003,15,2,f +10078,3003,0,2,f +10078,3003,4,2,f +10078,3003,1,2,f +10078,3003,14,2,f +10078,3004,0,4,f +10078,3004,14,6,f +10078,3004,1,12,f +10078,3004,15,14,f +10078,3004,4,6,f +10078,3005,4,4,f +10078,3005,1,10,f +10078,3005,15,12,f +10078,3005,0,2,f +10078,3005,14,4,f +10078,3008,15,2,f +10078,3008,1,2,f +10078,3008,14,2,f +10078,3009,15,2,f +10078,3009,4,2,f +10078,3009,0,2,f +10078,3009,1,2,f +10078,3010,15,12,f +10078,3010,0,4,f +10078,3010,1,12,f +10078,3010,14,6,f +10078,3010,4,8,f +10078,3010apr0001,4,2,f +10078,3010p08,4,2,f +10078,3010p15,14,2,f +10078,3020,1,2,f +10078,3020,4,2,f +10078,3021,1,2,f +10078,3022,4,2,f +10078,3022,1,2,f +10078,3024,36,2,f +10078,3024,46,2,f +10078,3029,4,1,f +10078,3030,1,1,f +10078,3031,1,1,f +10078,3031,4,1,f +10078,3032,1,1,f +10078,3033,1,1,f +10078,3034,4,2,f +10078,3035,4,1,f +10078,3039,1,4,f +10078,3039,47,2,f +10078,3039,14,4,f +10078,3040b,1,4,f +10078,3040b,14,4,f +10078,3062b,7,8,f +10078,3081cc01,4,2,f +10078,3135c02,4,1,f +10078,3149c01,4,2,f +10078,3297,1,4,f +10078,3298,1,2,f +10078,3299,1,2,f +10078,3300,1,2,f +10078,3483,0,4,f +10078,3622,1,4,f +10078,3622,14,4,f +10078,3622,4,2,f +10078,3622,15,4,f +10078,3626bp04,14,1,f +10078,3626bpr0001,14,1,f +10078,3633,14,4,f +10078,3634,0,4,f +10078,3641,0,4,f +10078,3660,14,4,f +10078,3660,1,4,f +10078,3665,14,4,f +10078,3665,1,4,f +10078,3679,7,2,f +10078,3680,0,2,f +10078,3700,0,2,f +10078,3710,4,2,f +10078,3710,1,2,f +10078,3730,4,1,f +10078,3731,4,1,f +10078,3747b,1,2,f +10078,3787,4,1,f +10078,3788,4,1,f +10078,3795,1,2,f +10078,3821,4,1,f +10078,3822,4,1,f +10078,3823,47,2,f +10078,3829c01,14,2,f +10078,3832,1,2,f +10078,3837,8,1,f +10078,3841,8,1,f +10078,3853,4,2,f +10078,3854,15,4,f +10078,3856,1,4,f +10078,3861b,4,1,f +10078,3865,2,1,f +10078,3901,6,1,f +10078,3937,7,2,f +10078,3938,4,2,f +10078,3957a,14,2,f +10078,4006,0,1,f +10078,4070,7,4,f +10078,4079,14,2,f +10078,4083,0,2,f +10078,4175,7,2,f +10078,4286,1,4,f +10078,4287,1,2,f +10078,4522,0,1,f +10078,4600,0,2,f +10078,4624,14,4,f +10078,6232,8,2,f +10078,6248,14,8,f +10078,6249,8,1,f +10078,970c00,1,1,f +10078,970c00,2,1,f +10078,973pb0201c01,15,1,f +10078,973px36c01,4,1,f +10079,12825,72,2,f +10079,2714a,0,2,f +10079,3004pr0001,14,1,f +10079,3005,70,3,f +10079,3020,4,1,f +10079,3022,0,1,f +10079,3023,19,2,f +10079,3023,1,2,f +10079,3023,15,1,f +10079,3023,4,1,f +10079,3024,15,6,f +10079,3024,0,2,f +10079,3024,2,2,f +10079,3024,72,2,f +10079,3032,4,1,f +10079,30374,0,1,f +10079,30375,72,1,f +10079,3040b,4,1,f +10079,30414,4,1,f +10079,32028,15,1,f +10079,3460,72,2,f +10079,3623,2,1,f +10079,3623,14,2,f +10079,3623,72,2,f +10079,3659,4,2,f +10079,3660,4,1,f +10079,3665,4,3,f +10079,3710,70,2,f +10079,41769,70,1,f +10079,41770,70,1,f +10079,4286,4,3,f +10079,4733,72,2,f +10079,4865a,4,1,f +10079,48729b,0,2,f +10079,48729b,0,1,t +10079,54200,33,2,f +10079,54200,15,1,t +10079,54200,4,1,t +10079,54200,4,2,f +10079,54200,15,1,f +10079,54200,33,1,t +10079,6019,19,3,f +10079,6141,15,1,f +10079,6141,0,1,f +10079,6141,0,1,t +10079,6141,15,1,t +10079,6141,14,1,t +10079,6141,14,2,f +10080,4215b,47,25,f +10081,3003,0,1,f +10081,3004,14,4,f +10081,3004,4,1,f +10081,3005,72,4,f +10081,3005,14,6,f +10081,3020,2,1,f +10081,3021,19,3,f +10081,3021,71,4,f +10081,3023,15,4,f +10081,3034,2,2,f +10081,3037,0,4,f +10081,3040b,0,2,f +10081,3041,0,1,f +10081,3062b,71,4,f +10081,3065,47,4,f +10081,3622,14,4,f +10081,6141,71,4,f +10081,6141,71,1,t +10082,45573,72,9,f +10082,45574,71,5,f +10082,45575,71,36,f +10082,45783,1,1,f +10082,45784,1,2,f +10082,45784,135,1,f +10082,45785,1,1,f +10082,45786,1,2,f +10082,45786,135,1,f +10082,45799,71,4,f +10082,45803,0,2,f +10082,45805c01,0,1,f +10082,47324,14,4,f +10082,47349c03,1,4,f +10082,47371,135,1,f +10082,47385c01,0,1,f +10082,47871c01,0,1,f +10082,48912c01,72,2,f +10082,5282,0,1,f +10082,85544,10,2,f +10082,bat9volt,89,1,f +10082,bb236,0,1,f +10082,bb90,89,1,f +10082,rb00178,0,2,f +10082,x1220,89,1,f +10083,2357,0,2,f +10083,2412b,25,9,f +10083,2412b,80,3,f +10083,2431,0,4,f +10083,2432,0,2,f +10083,2446,135,1,f +10083,2449,71,2,f +10083,2449,0,6,f +10083,2450,0,2,f +10083,2450,71,2,f +10083,2453a,0,2,f +10083,2462,71,6,f +10083,2540,25,1,f +10083,2540,72,6,f +10083,2555,72,7,f +10083,2569,72,1,t +10083,2569,72,1,f +10083,2653,0,4,f +10083,2654,46,1,f +10083,2654,47,14,f +10083,2780,0,2,t +10083,2780,0,12,f +10083,3001,72,2,f +10083,3001,1,1,f +10083,3003,19,1,f +10083,3003,14,2,f +10083,3004,0,2,f +10083,3004,272,16,f +10083,3004,71,2,f +10083,3006,0,2,f +10083,3007,4,1,f +10083,3008,71,2,f +10083,30088,72,3,f +10083,30090,41,1,f +10083,30091,72,2,f +10083,3010,272,9,f +10083,30136,72,4,f +10083,30153,45,2,f +10083,30153,42,2,f +10083,30162,72,1,f +10083,3021,14,2,f +10083,3021,0,2,f +10083,30214,47,1,f +10083,3022,4,3,f +10083,3023,320,1,f +10083,3023,1,7,f +10083,3024,36,7,f +10083,3024,34,3,f +10083,30251,40,1,f +10083,3028,72,2,f +10083,3029,0,2,f +10083,3031,72,3,f +10083,3035,0,2,f +10083,3035,71,1,f +10083,30367b,0,1,f +10083,3037,15,1,f +10083,30374,0,1,f +10083,30377,0,1,t +10083,30377,0,2,f +10083,3039,272,6,f +10083,3039,72,1,f +10083,30407,72,1,f +10083,3040b,0,2,f +10083,30503,0,2,f +10083,30552,0,2,f +10083,30553,72,2,f +10083,30608,70,1,f +10083,3062b,27,4,f +10083,3062b,72,6,f +10083,3062b,272,2,f +10083,30663,71,1,f +10083,3068b,0,3,f +10083,3068b,272,5,f +10083,3069b,272,3,f +10083,32018,71,2,f +10083,32028,14,2,f +10083,32039,71,1,f +10083,32054,0,2,f +10083,32054,71,1,f +10083,32062,4,1,f +10083,32064a,0,2,f +10083,32064b,320,4,f +10083,32123b,14,4,f +10083,32123b,14,1,t +10083,32126,71,1,f +10083,32140,0,4,f +10083,32250,72,2,f +10083,3245b,71,1,f +10083,3460,15,2,f +10083,3475b,72,2,f +10083,3622,14,2,f +10083,3626bpr0537,14,1,f +10083,3626bpr0541,14,1,f +10083,3626bpr0551,14,1,f +10083,3626bpr0553,14,1,f +10083,3659,71,2,f +10083,3660,71,14,f +10083,3665,72,2,f +10083,3666,0,3,f +10083,3666,72,2,f +10083,3673,71,1,t +10083,3673,71,2,f +10083,3679,71,1,f +10083,3680,0,1,f +10083,3700,71,2,f +10083,3701,0,1,f +10083,3705,0,1,f +10083,3706,0,1,f +10083,3709,72,13,f +10083,3710,320,2,f +10083,3710,272,13,f +10083,3749,19,2,f +10083,3794a,0,1,f +10083,3795,1,1,f +10083,3795,72,2,f +10083,3829c01,71,1,f +10083,3894,71,3,f +10083,3895,0,1,f +10083,3895,72,1,f +10083,3937,71,2,f +10083,3938,0,1,f +10083,3941,1,1,f +10083,3941,72,1,f +10083,4032a,0,5,f +10083,4085c,71,2,f +10083,4095,71,1,f +10083,41531,272,1,f +10083,4162,1,2,f +10083,41747,0,2,f +10083,41748,0,2,f +10083,41751,272,4,f +10083,43093,1,4,f +10083,43337,0,4,f +10083,44036,135,1,f +10083,44126,272,4,f +10083,44567a,14,1,f +10083,44568,71,1,f +10083,44572,272,2,f +10083,4460b,272,2,f +10083,44661,272,2,f +10083,44675,0,1,f +10083,44728,71,14,f +10083,4477,0,4,f +10083,44822,72,3,f +10083,4519,71,5,f +10083,45301,272,2,f +10083,4588,72,2,f +10083,4623,71,4,f +10083,46667,72,2,f +10083,4738a,70,1,f +10083,4739a,70,1,f +10083,47404,0,3,f +10083,47405,71,1,f +10083,4742,72,1,f +10083,47755,25,1,f +10083,48336,71,1,f +10083,4865a,0,1,f +10083,48729a,72,2,f +10083,48729a,72,1,t +10083,50923,72,1,f +10083,54200,272,6,f +10083,54200,272,2,t +10083,54383,0,1,f +10083,54384,0,1,f +10083,57028c01,71,1,f +10083,57796,72,1,f +10083,58176,36,4,f +10083,59275,0,2,f +10083,59900,71,5,f +10083,59900,4,2,f +10083,60176,72,1,f +10083,60208,71,2,f +10083,6041,0,3,f +10083,60470a,71,1,f +10083,60471,0,4,f +10083,60478,71,2,f +10083,6070,0,1,f +10083,6086pat0001,41,1,f +10083,6087,71,1,f +10083,61069,72,2,f +10083,61070,272,1,f +10083,61071,272,1,f +10083,6111,72,2,f +10083,6112,0,2,f +10083,61184,71,8,f +10083,6134,0,1,f +10083,6134,71,1,f +10083,6141,25,8,f +10083,6141,46,2,f +10083,6141,36,1,t +10083,6141,46,1,t +10083,6141,34,1,t +10083,6141,36,2,f +10083,6141,25,1,t +10083,6141,34,2,f +10083,62576,40,1,f +10083,6266,0,4,f +10083,62700,135,2,f +10083,63359,80,1,f +10083,6541,0,2,f +10083,75c11,0,2,f +10083,75c11,0,1,t +10083,8636stk01,9999,1,t +10083,970c00,0,1,f +10083,970c00pr0117,25,1,f +10083,970c00pr0118,272,2,f +10083,973pr1384c01,25,1,f +10083,973pr1386c01,272,2,f +10083,973pr1425c01,0,1,f +10084,2412b,7,1,f +10084,2446,15,1,f +10084,2447,41,1,f +10084,2513,15,1,f +10084,298c02,4,1,f +10084,3021,0,2,f +10084,3023,15,2,f +10084,3024,15,3,f +10084,3024,46,2,f +10084,3024,36,4,f +10084,3069bpr0016,15,2,f +10084,3070b,36,2,f +10084,3070b,33,1,f +10084,3464,47,2,f +10084,3626bp04,14,2,f +10084,3641,0,6,f +10084,3710,0,2,f +10084,3710,15,1,f +10084,3788,15,1,f +10084,3823,41,1,f +10084,3829c01,4,1,f +10084,3901,6,1,f +10084,4085c,15,1,f +10084,4212b,15,1,f +10084,4315,15,1,f +10084,4349,0,1,f +10084,4474,41,1,f +10084,4480c01,15,1,f +10084,4589,0,1,f +10084,4624,15,4,f +10084,4740,7,1,f +10084,4865a,15,4,f +10084,4865a,4,1,f +10084,6141,46,1,f +10084,6141,33,1,f +10084,6157,0,2,f +10084,6625stk01,9999,1,t +10084,970c00,0,2,f +10084,973px9c01,0,2,f +10085,14728,0,1,f +10085,2335,1,6,f +10085,2335p31,15,1,f +10085,2339,0,2,f +10085,2357,0,10,f +10085,2420,0,6,f +10085,2452,0,3,f +10085,2462,0,2,f +10085,2524,6,1,f +10085,2525px1,15,1,f +10085,2526,14,2,f +10085,2526,1,1,f +10085,2527,4,2,f +10085,2528pb02,15,1,f +10085,2529,14,2,f +10085,2530,8,2,f +10085,2537a,0,1,f +10085,2538b,0,2,f +10085,2539,8,1,f +10085,2540,0,9,f +10085,2543,1,1,f +10085,2544,0,1,f +10085,2545,0,1,f +10085,2555,0,1,f +10085,2561,6,2,f +10085,2562,6,1,f +10085,2566,1,2,f +10085,3001,0,5,f +10085,3002,0,1,f +10085,3003,0,1,f +10085,3004,0,3,f +10085,3004,15,4,f +10085,3005,0,4,f +10085,3005,15,2,f +10085,3010,15,4,f +10085,3020,0,4,f +10085,3021,0,4,f +10085,3022,0,5,f +10085,3022,15,1,f +10085,3023,15,11,f +10085,3023,0,12,f +10085,3024,0,6,f +10085,3034,7,2,f +10085,3039,15,1,f +10085,3040b,0,3,f +10085,3062b,7,12,f +10085,3184,0,8,f +10085,3298,0,1,f +10085,3308,0,1,f +10085,3460,0,5,f +10085,3623,0,4,f +10085,3623,7,2,f +10085,3626bp35,14,1,f +10085,3626bp44,14,1,f +10085,3626bpb0096,14,1,f +10085,3626bpr0001,14,1,f +10085,3659,0,1,f +10085,3659,15,2,f +10085,3665,15,2,f +10085,3666,0,6,f +10085,3666,15,1,f +10085,3700,0,1,f +10085,3710,0,14,f +10085,3710,15,2,f +10085,3747b,0,3,f +10085,3794a,0,5,f +10085,3795,7,1,f +10085,3795,15,1,f +10085,3832,7,1,f +10085,3839b,15,1,f +10085,3849,0,2,f +10085,3853,15,1,f +10085,4032a,1,2,f +10085,4070,0,2,f +10085,4085c,0,6,f +10085,4085c,7,2,f +10085,4088,15,1,f +10085,4162,0,4,f +10085,4175,0,2,f +10085,4286,0,8,f +10085,4477,0,6,f +10085,4504,0,3,f +10085,4589,0,4,f +10085,4589,46,2,f +10085,4590,0,1,f +10085,4600,0,4,f +10085,4623,0,4,f +10085,4624,6,8,f +10085,4738a,6,1,f +10085,4739a,6,1,f +10085,4790,6,1,f +10085,57503,334,2,f +10085,57504,334,2,f +10085,57505,334,2,f +10085,57506,334,2,f +10085,6019,0,4,f +10085,6051c05,6,1,f +10085,6053c05,6,1,f +10085,6054,6,1,f +10085,6057,6,2,f +10085,6067,0,1,f +10085,6104,15,1,f +10085,6141,46,4,f +10085,70001pb02,0,1,f +10085,73590c01a,0,1,f +10085,84943,8,2,f +10085,87692,15,1,f +10085,87693,15,1,t +10085,87694,15,1,t +10085,970c00,15,4,f +10085,973p31c01,14,1,f +10085,973p3sc01,15,1,f +10085,973pb0206c01,15,2,f +10085,sailbb08,19,1,f +10085,sailbb09,19,1,f +10085,sailbb17,19,1,f +10088,2452,2,1,f +10088,3001,2,1,f +10088,3002,2,1,f +10088,3009,15,3,f +10088,3020,2,3,f +10088,3021,2,1,f +10088,3022,2,2,f +10088,3023,4,2,f +10088,3023,14,1,f +10088,3023,2,7,f +10088,3024,4,3,f +10088,3024,2,1,f +10088,3069b,4,1,f +10088,32000,2,1,f +10088,3623,4,1,f +10088,3700,2,3,f +10088,3710,2,2,f +10088,3794a,2,6,f +10088,4274,7,3,f +10088,4276b,2,1,f +10088,6141,41,2,f +10088,6141,15,2,f +10090,2343,47,1,t +10090,2343,47,1,f +10090,2496,0,1,f +10090,2496,0,1,t +10090,2655,71,1,f +10090,3004,1,1,f +10090,3020,15,1,f +10090,3023,4,1,f +10090,3062b,71,1,f +10090,3068b,4,1,f +10090,3069b,4,1,f +10090,3069b,4,1,t +10090,48336,4,1,f +10090,6254,15,1,f +10092,30150,6,1,f +10092,30165,8,1,f +10092,30172,15,1,f +10092,3021,0,1,f +10092,3034,4,1,f +10092,3626bpa1,14,1,f +10092,3641,0,4,f +10092,3829c01,7,1,f +10092,3837,8,1,f +10092,3841,8,1,f +10092,4133395,9999,1,t +10092,4600,0,2,f +10092,4624,7,4,f +10092,970c00,2,1,f +10092,973pa1c01,15,1,f +10094,12825,14,1,f +10094,2412b,320,4,f +10094,2453a,14,2,f +10094,2540,0,4,f +10094,2877,72,8,f +10094,2921,14,4,f +10094,3001,72,1,f +10094,3003,14,1,f +10094,30031,71,1,f +10094,3009,320,1,f +10094,30137,71,1,f +10094,30170,72,1,t +10094,30170,72,1,f +10094,30171,70,1,f +10094,3023,19,3,f +10094,30236,72,4,f +10094,3035,72,2,f +10094,3035,1,2,f +10094,3036,28,1,f +10094,30367b,14,1,f +10094,30374,70,1,f +10094,3039,72,2,f +10094,3040b,14,2,f +10094,30414,72,3,f +10094,3068bpr0208,15,1,f +10094,32064b,4,1,f +10094,3623,320,2,f +10094,3626cpr0920,14,1,f +10094,3665,70,2,f +10094,3700,14,1,f +10094,3701,71,2,f +10094,3937,14,1,f +10094,3941,70,5,f +10094,3941,42,1,f +10094,3958,71,2,f +10094,3960,320,1,f +10094,3962b,0,1,f +10094,4150,71,1,f +10094,4175,71,1,f +10094,4274,1,4,f +10094,4274,1,1,t +10094,43713,71,1,f +10094,44675,14,1,f +10094,47847,70,1,f +10094,48729b,72,1,t +10094,48729b,72,1,f +10094,49668,320,4,f +10094,53989,320,2,f +10094,59426,72,1,f +10094,6020,71,1,f +10094,60474,320,1,f +10094,60475a,84,2,f +10094,60581,47,1,f +10094,6134,4,1,f +10094,6141,46,6,f +10094,6141,46,1,t +10094,6148,2,2,f +10094,61485,0,1,f +10094,6232,71,2,f +10094,63864,4,2,f +10094,64448,14,3,f +10094,64644,0,1,f +10094,64648,179,1,f +10094,64727,71,2,f +10094,6583,0,1,f +10094,71155,0,1,f +10094,72454,72,1,f +10094,85940,0,2,f +10094,85984,72,2,f +10094,87989,27,1,f +10094,87989,27,1,t +10094,93273,14,5,f +10094,970x308,326,1,f +10094,973pr1999c01,326,1,f +10094,98086pr0001,84,1,f +10094,98087,70,1,f +10094,98088pat0001,70,1,f +10094,98089pat0001,70,1,f +10094,98653c01,84,1,f +10094,99809,148,1,f +10096,2342,0,1,f +10096,2412b,0,1,f +10096,2419,15,2,f +10096,2420,15,2,f +10096,2446,14,1,f +10096,2447,33,1,f +10096,2466,33,1,f +10096,3020,15,2,f +10096,3022,0,1,f +10096,3023,15,3,f +10096,3024,36,2,f +10096,3039,15,1,f +10096,3062b,15,2,f +10096,3069b,15,1,f +10096,3070b,15,2,f +10096,3070bp06,15,1,f +10096,3626apr0001,14,1,f +10096,3838,14,1,f +10096,3937,15,1,f +10096,3938,15,1,f +10096,3957a,15,2,f +10096,4032a,15,1,f +10096,4590,15,3,f +10096,4595,15,2,f +10096,4732,15,1,f +10096,4735,0,4,f +10096,4740,15,2,f +10096,6141,36,2,f +10096,6141,15,2,f +10096,73983,0,2,f +10096,970c00,14,1,f +10096,973p6ec01,15,1,f +10097,2909c03,8,2,f +10098,2340,1,2,f +10098,2342,1,1,f +10098,298c03,1,2,f +10098,3021,1,1,f +10098,3022,1,1,f +10098,3022,15,1,f +10098,3023,15,4,f +10098,3069bp06,1,2,f +10098,3623,1,2,f +10098,3626apr0001,14,1,f +10098,3666,15,2,f +10098,3795,15,2,f +10098,3838,15,1,f +10098,3842b,15,1,f +10098,3937,1,3,f +10098,3938,1,3,f +10098,3957a,36,2,f +10098,3963,0,2,f +10098,4447,15,1,f +10098,4475,1,1,f +10098,4588,0,2,f +10098,4589,36,3,f +10098,4590,1,1,f +10098,4595,0,2,f +10098,4596,1,1,f +10098,4598,1,1,f +10098,4854,15,1,f +10098,4855,15,1,f +10098,6141,36,2,f +10098,970c00,15,1,f +10098,973p90c05,15,1,f +10100,2412b,7,2,f +10100,2432,15,1,f +10100,2441,4,1,f +10100,2446,4,1,f +10100,2447,41,1,f +10100,3020,1,2,f +10100,3022,1,1,f +10100,3068b,15,1,f +10100,3298p54,15,1,f +10100,3623,1,2,f +10100,3626bpr0001,14,1,f +10100,3641,0,4,f +10100,3710,4,1,f +10100,3829c01,15,1,f +10100,3937,7,2,f +10100,3938,0,2,f +10100,4286,15,2,f +10100,4624,15,4,f +10100,4865a,15,2,f +10100,4871,4,1,f +10100,970c00,4,1,f +10100,973px130c01,15,1,f +10101,12825,72,2,f +10101,2343,0,2,f +10101,2431,70,11,f +10101,2431,10,3,f +10101,2449,2,2,f +10101,2527,70,1,f +10101,2528pr0003,0,1,f +10101,2530,72,2,f +10101,2530,72,1,t +10101,2566,0,1,f +10101,2654,72,4,f +10101,2817,0,2,f +10101,3001,2,1,f +10101,3001,71,1,f +10101,30044,70,4,f +10101,30045,0,4,f +10101,30099,2,2,f +10101,30136,308,9,f +10101,30136,72,3,f +10101,3020,71,3,f +10101,3021,4,1,f +10101,3021,14,1,f +10101,3021,72,1,f +10101,3022,2,1,f +10101,3023,72,10,f +10101,30237a,0,5,f +10101,3034,70,1,f +10101,30340,2,4,f +10101,3035,0,1,f +10101,3035,19,1,f +10101,30374,70,1,f +10101,3040b,71,10,f +10101,30414,0,2,f +10101,3046a,71,2,f +10101,30504,19,1,f +10101,30562pr0001,15,1,f +10101,3062b,41,3,f +10101,3062b,72,6,f +10101,3062b,42,3,f +10101,3068bpr0167,19,1,f +10101,3069b,71,1,f +10101,32059,72,1,f +10101,3460,70,1,f +10101,3626cpr0921,288,1,f +10101,3659,71,4,f +10101,3660,308,6,f +10101,3666,70,2,f +10101,3708,0,1,f +10101,3710,70,2,f +10101,3794b,2,2,f +10101,3795,72,5,f +10101,3829c01,0,1,f +10101,3837,0,1,f +10101,3839b,72,1,f +10101,3894,0,1,f +10101,3937,0,5,f +10101,3938,71,4,f +10101,3941,70,1,f +10101,4032a,19,1,f +10101,41677,72,2,f +10101,41879a,1,1,f +10101,4274,71,4,f +10101,4274,71,1,t +10101,44676,0,1,f +10101,4495b,2,1,f +10101,4519,71,1,f +10101,4738a,70,1,f +10101,4739a,70,1,f +10101,4740,0,1,f +10101,476,0,1,f +10101,48336,71,1,f +10101,4865a,19,1,f +10101,48729b,71,1,t +10101,48729b,71,1,f +10101,54200,71,5,f +10101,54200,10,1,t +10101,54200,10,7,f +10101,54200,71,1,t +10101,54872pr0011,14,1,f +10101,54873pr0006,78,1,f +10101,59443,70,1,f +10101,59900,2,4,f +10101,59900,70,9,f +10101,60897,15,2,f +10101,6091,0,1,f +10101,6134,71,1,f +10101,6141,297,1,t +10101,6141,297,3,f +10101,6141,70,13,f +10101,6141,70,2,t +10101,6148,2,4,f +10101,61976,378,1,f +10101,6232,72,1,f +10101,63868,72,2,f +10101,63965,0,1,f +10101,64951,70,1,f +10101,75c12,0,1,f +10101,84943,148,1,f +10101,87580,28,2,f +10101,87616,308,1,f +10101,95222pr0003,2,1,f +10101,970c00pr0299,78,2,f +10101,973c01,14,1,f +10101,973pr1981c01,2,1,f +10101,973pr1982c01,15,1,f +10101,98376,2,1,f +10104,2421,0,1,f +10104,2446,15,1,f +10104,2447,40,1,f +10104,2447,40,1,t +10104,2460,0,1,f +10104,2479,0,1,f +10104,298c02,14,1,t +10104,298c02,14,2,f +10104,3001,4,1,f +10104,3003,15,1,f +10104,3004,4,1,f +10104,3020,4,1,f +10104,3021,14,1,f +10104,3022,15,2,f +10104,3023,14,1,f +10104,3298,4,1,f +10104,3460,14,3,f +10104,3626cpr0914,14,1,f +10104,3666,72,4,f +10104,3839b,72,2,f +10104,4286,4,2,f +10104,43713,72,1,f +10104,44661,72,1,f +10104,4488,71,1,f +10104,59900,14,2,f +10104,60470a,71,1,f +10104,87752,40,1,f +10104,970c00,272,1,f +10104,973pr1976c01,4,1,f +10107,3034,0,25,f +10109,2420,70,8,f +10109,2431,19,4,f +10109,2436,484,4,f +10109,2436,0,2,f +10109,2445,0,1,f +10109,2456,71,1,f +10109,2456,70,1,f +10109,2780,0,1,t +10109,2780,0,4,f +10109,3001,2,5,f +10109,3001,19,9,f +10109,3002,19,6,f +10109,3002,0,3,f +10109,3002,70,3,f +10109,3002,71,2,f +10109,3002,2,3,f +10109,3003,2,2,f +10109,3003,71,2,f +10109,3003,70,6,f +10109,3003,19,6,f +10109,3004,0,4,f +10109,3004,70,2,f +10109,3004,484,2,f +10109,3004,19,3,f +10109,3005,15,2,f +10109,3005,2,2,f +10109,3007,19,1,f +10109,3008,19,2,f +10109,3009,2,2,f +10109,3009,19,1,f +10109,3010,2,5,f +10109,3010,71,3,f +10109,3010,19,2,f +10109,3020,72,5,f +10109,3020,19,9,f +10109,3020,70,7,f +10109,3020,71,6,f +10109,3020,0,4,f +10109,3021,0,7,f +10109,3021,320,1,f +10109,3021,70,5,f +10109,3022,70,5,f +10109,3022,71,3,f +10109,3022,0,3,f +10109,3022,19,13,f +10109,3022,2,3,f +10109,3023,72,11,f +10109,3023,70,9,f +10109,3023,484,2,f +10109,3023,0,3,f +10109,3023,320,2,f +10109,3023,71,6,f +10109,3023,15,1,f +10109,3023,2,2,f +10109,3023,19,17,f +10109,3024,19,2,f +10109,3024,14,1,f +10109,3024,320,2,f +10109,3031,19,1,f +10109,3032,19,1,f +10109,3034,71,1,f +10109,30383,0,4,f +10109,30386,71,8,f +10109,30389b,72,1,f +10109,3039,484,2,f +10109,3039,71,4,f +10109,3039,19,6,f +10109,3039,70,3,f +10109,3039,15,2,f +10109,3040b,2,2,f +10109,3040b,70,4,f +10109,3040b,14,1,f +10109,3040b,15,2,f +10109,3040b,19,4,f +10109,30414,0,2,f +10109,3045,15,2,f +10109,3048c,0,5,f +10109,30552,0,4,f +10109,30553,72,4,f +10109,3068b,71,1,f +10109,32062,0,4,f +10109,32064b,71,2,f +10109,3298,484,7,f +10109,3298,72,1,f +10109,3298,70,5,f +10109,3298,71,3,f +10109,3298,19,5,f +10109,3622,2,2,f +10109,3622,70,2,f +10109,3622,19,2,f +10109,3623,0,6,f +10109,3623,71,4,f +10109,3660,19,4,f +10109,3660,70,6,f +10109,3660,0,3,f +10109,3660,72,2,f +10109,3660,71,4,f +10109,3665,320,2,f +10109,3665,15,6,f +10109,3665,19,6,f +10109,3666,0,2,f +10109,3666,19,1,f +10109,3666,70,1,f +10109,3673,71,1,t +10109,3700,0,2,f +10109,3701,484,4,f +10109,3710,2,4,f +10109,3710,0,2,f +10109,3710,72,1,f +10109,3710,19,2,f +10109,3747a,71,1,f +10109,3795,2,1,f +10109,3795,19,4,f +10109,3795,71,2,f +10109,3958,19,1,f +10109,41669,15,2,f +10109,41747,19,3,f +10109,41748,19,3,f +10109,41764,19,2,f +10109,41765,19,2,f +10109,41767,19,5,f +10109,41768,19,5,f +10109,41769,72,1,f +10109,41769,0,2,f +10109,41769,19,1,f +10109,41770,0,2,f +10109,41770,19,1,f +10109,41770,72,1,f +10109,42022,2,2,f +10109,42022,19,8,f +10109,42023,19,6,f +10109,4282,71,1,f +10109,4286,2,4,f +10109,4286,72,2,f +10109,4286,0,4,f +10109,4286,19,10,f +10109,4286,484,6,f +10109,4287,15,2,f +10109,43093,1,4,f +10109,43710,72,3,f +10109,43710,19,9,f +10109,43710,71,1,f +10109,43711,72,3,f +10109,43711,71,1,f +10109,43711,19,9,f +10109,43722,0,1,f +10109,43722,71,1,f +10109,43723,0,1,f +10109,43723,71,1,f +10109,44300,320,2,f +10109,44301a,19,8,f +10109,44301a,320,1,f +10109,44301a,71,2,f +10109,44302a,72,9,f +10109,44302a,19,6,f +10109,44302a,320,2,f +10109,44302a,70,2,f +10109,44567a,71,1,f +10109,44728,484,6,f +10109,44728,72,2,f +10109,45677,19,1,f +10109,47452,70,4,f +10109,47455,19,11,f +10109,48169,70,7,f +10109,48170,71,1,f +10109,48171,70,6,f +10109,49668,15,22,f +10109,50304,0,2,f +10109,50305,0,2,f +10109,54200,72,8,f +10109,6141,42,4,f +10109,6141,42,1,t +10109,6141,33,1,t +10109,6141,33,2,f +10109,6541,0,2,f +10109,6564,19,2,f +10109,6565,19,2,f +10109,73983,71,4,f +10110,2352,14,1,f +10110,2456,14,2,f +10110,3001,14,4,f +10110,3001,15,5,f +10110,3001,4,4,f +10110,3001,1,6,f +10110,3001,0,2,f +10110,3001pr1,14,1,f +10110,3002,15,4,f +10110,3002,1,4,f +10110,3002,14,2,f +10110,3002,0,2,f +10110,3002,4,2,f +10110,3003,15,8,f +10110,3003,4,6,f +10110,3003,14,6,f +10110,3003,0,2,f +10110,3003,1,8,f +10110,3003pe2,14,2,f +10110,3007,1,2,f +10110,30076,4,1,f +10110,3483,0,4,f +10110,4132,4,2,f +10110,4133,14,2,f +10110,4202,2,1,f +10110,4727,2,2,f +10110,4728,14,1,f +10110,4728,1,1,f +10110,4744pr0002,4,1,f +10110,4744pr0004,2,1,f +10110,600,14,1,f +10110,6235,4,1,f +10110,6248,14,4,f +10114,2456,1,6,f +10114,2456,14,4,f +10114,2456,4,4,f +10114,2456,15,6,f +10114,3001,1,30,f +10114,3001,25,2,f +10114,3001,4,28,f +10114,3001,15,30,f +10114,3001,2,16,f +10114,3001,0,14,f +10114,3001,14,28,f +10114,3002,2,10,f +10114,3002,0,10,f +10114,3002,25,2,f +10114,3002,1,16,f +10114,3002,14,14,f +10114,3002,15,16,f +10114,3002,4,14,f +10114,3003,2,30,f +10114,3003,0,26,f +10114,3003,15,56,f +10114,3003,1,56,f +10114,3003,25,6,f +10114,3003,14,50,f +10114,3003,4,50,f +10114,3004,15,28,f +10114,3004,4,22,f +10114,3004,0,16,f +10114,3004,1,26,f +10114,3004,14,22,f +10114,3004,25,6,f +10114,3004,2,16,f +10114,3005,4,48,f +10114,3005,0,26,f +10114,3005,25,6,f +10114,3005,15,50,f +10114,3005,1,50,f +10114,3005,14,48,f +10114,3005,2,20,f +10114,3007,15,2,f +10114,3007,1,2,f +10114,3008,15,6,f +10114,3008,4,4,f +10114,3008,1,6,f +10114,3008,14,4,f +10114,3009,4,10,f +10114,3009,15,10,f +10114,3009,14,10,f +10114,3009,1,10,f +10114,3010,2,44,f +10114,3010,15,92,f +10114,3010,4,90,f +10114,3010,14,90,f +10114,3010,0,46,f +10114,3010,1,92,f +10114,3010,25,2,f +10114,3622,25,2,f +10114,3622,4,14,f +10114,3622,1,14,f +10114,3622,0,8,f +10114,3622,2,6,f +10114,3622,15,14,f +10114,3622,14,14,f +10115,2412b,334,1,f +10115,298c02,15,2,f +10115,3021,1,1,f +10115,3023,14,1,f +10115,3068bp80,15,1,f +10115,3626bp69,14,1,f +10115,4081b,1,2,f +10115,4589,15,2,f +10115,4590,15,1,f +10115,6141,36,1,f +10115,6141,42,1,f +10115,71966,15,1,f +10115,769,334,1,f +10115,970x002,15,1,f +10115,973px176c01,15,1,f +10116,2348b,33,1,f +10116,2349a,14,1,f +10116,2357,8,2,f +10116,2357,15,2,f +10116,2412b,14,6,f +10116,2431,14,1,f +10116,2437,41,2,f +10116,2453a,15,2,f +10116,2454a,15,2,f +10116,2458,4,2,f +10116,2474,7,3,f +10116,2475,0,3,f +10116,2476a,1,2,f +10116,2493b,0,4,f +10116,2494,41,4,f +10116,2498,73,9,f +10116,2513,14,1,f +10116,2877,7,1,f +10116,30027a,15,4,f +10116,30028,0,4,f +10116,3003,1,1,f +10116,3004,14,4,f +10116,3004,15,5,f +10116,3004,1,2,f +10116,3006,15,3,f +10116,3007,15,1,f +10116,3008,0,2,f +10116,3008,8,2,f +10116,3009,14,2,f +10116,3010,0,1,f +10116,3020,15,2,f +10116,3020,8,1,f +10116,3021,0,2,f +10116,30237a,15,1,f +10116,3024,46,2,f +10116,3040p04,7,1,f +10116,3070b,34,1,f +10116,3070b,36,3,f +10116,3070b,36,1,t +10116,3070b,34,1,t +10116,3245b,15,3,f +10116,3623,0,2,f +10116,3626bp02,14,1,f +10116,3626bp05,14,1,f +10116,3710,0,2,f +10116,3788,14,1,f +10116,3821,14,1,f +10116,3822,14,1,f +10116,3829c01,15,1,f +10116,3852b,6,1,f +10116,3867,2,1,f +10116,4070,14,2,f +10116,4070,15,3,f +10116,4083,7,1,f +10116,4162,7,4,f +10116,4212b,14,1,f +10116,4315,14,1,f +10116,4485,4,1,f +10116,4523,7,1,f +10116,4530,6,1,f +10116,4600,7,2,f +10116,4729,14,2,f +10116,4864b,15,2,f +10116,6111,14,1,f +10116,73590c02a,0,3,f +10116,970c00,0,1,f +10116,970c00,1,1,f +10116,973pb0242c01,15,1,f +10116,973px18c01,15,1,f +10117,2352,13,1,f +10117,2456,14,2,f +10117,2456,15,2,f +10117,2456,7,2,f +10117,2577,15,4,f +10117,3001,7,16,f +10117,3001,14,14,f +10117,3001,15,30,f +10117,3002,14,4,f +10117,3002,15,8,f +10117,3002,7,4,f +10117,3003,14,14,f +10117,3003,7,16,f +10117,3003,15,30,f +10117,3003pe2,15,2,f +10117,3006,14,2,f +10117,3007,15,2,f +10117,3185,13,10,f +10117,3334,17,1,f +10117,3470,2,1,f +10117,3483,0,4,f +10117,4130,13,3,f +10117,4131,351,3,f +10117,4132,13,6,f +10117,4133,351,6,f +10117,4180c03,0,2,f +10117,4202,15,1,f +10117,4727,2,8,f +10117,4728,351,3,f +10117,4728,14,2,f +10117,4728,15,3,f +10117,4744,13,1,f +10117,4744,17,1,f +10117,4744p03,0,1,f +10117,4744p04,0,1,f +10117,4744pr0001,0,1,f +10117,4744px16,13,1,f +10117,4744px17,15,1,f +10117,4744px18,13,1,f +10117,4744px19,17,1,f +10117,6007,8,1,f +10119,3034a,15,1,f +10119,3035a,15,4,f +10121,2350b,8,1,f +10121,2351,0,1,f +10121,2399,8,1,f +10121,2412b,14,11,f +10121,2431pr0017,14,10,f +10121,2432,7,2,f +10121,2432,0,6,f +10121,2447,42,1,f +10121,2456,7,4,f +10121,2460,8,1,f +10121,2465,8,2,f +10121,2512,7,2,f +10121,2516,0,1,f +10121,2540,3,3,f +10121,2653,7,10,f +10121,2680,0,8,f +10121,2854,7,2,f +10121,298c02,14,5,f +10121,298c02,14,1,t +10121,3001,8,14,f +10121,3003,8,8,f +10121,30038,8,1,f +10121,3004,7,5,f +10121,3007,0,1,f +10121,30072,8,1,f +10121,3008,7,1,f +10121,3009,7,5,f +10121,3009,8,2,f +10121,3010,14,2,f +10121,30104,6,1,f +10121,30133,0,1,f +10121,30135,8,1,f +10121,30170,0,1,t +10121,30170,0,1,f +10121,30194,8,1,f +10121,3020,3,2,f +10121,3021,7,9,f +10121,3022,14,4,f +10121,30228,8,1,f +10121,3023,3,4,f +10121,30236,8,4,f +10121,30237a,14,2,f +10121,30258p01,14,5,f +10121,30271px3,7,1,f +10121,30293,6,2,f +10121,30294,6,2,f +10121,30303,8,2,f +10121,30304,8,1,f +10121,30305c01,6,1,f +10121,3031,7,1,f +10121,30325,8,1,f +10121,3034,14,2,f +10121,30346c01,8,1,f +10121,3035,0,1,f +10121,3037,3,3,f +10121,30385,42,2,f +10121,3039,7,5,f +10121,3039px15,3,1,f +10121,3039px16,8,1,f +10121,3040b,14,6,f +10121,3068b,3,3,f +10121,3068bp00,0,1,f +10121,3068bpx1,0,2,f +10121,3069b,0,4,f +10121,3069bp12,14,4,f +10121,3069bpr0090,8,2,f +10121,32028,0,4,f +10121,3245b,7,4,f +10121,3298px1,3,1,f +10121,3403,0,3,f +10121,3404,0,3,f +10121,3460,14,9,f +10121,3622,0,2,f +10121,3623,8,6,f +10121,3626bpb0106,14,1,f +10121,3626bpx15,14,1,f +10121,3626bpx32,14,1,f +10121,3626bpx33,14,1,f +10121,3666,14,2,f +10121,3666,7,3,f +10121,3678a,0,10,f +10121,3684,3,12,f +10121,3701,7,2,f +10121,3710,7,2,f +10121,3795,0,4,f +10121,3829c01,14,1,f +10121,3832,0,1,f +10121,3833,0,1,f +10121,3837,8,1,f +10121,3841,8,1,f +10121,3894,7,4,f +10121,3937,0,1,f +10121,3940b,0,4,f +10121,3941,42,8,f +10121,3957a,42,1,f +10121,4079,0,4,f +10121,4083,7,3,f +10121,4162,0,6,f +10121,4175,14,2,f +10121,4201,8,4,f +10121,4345b,42,2,f +10121,4346,42,2,f +10121,4460a,0,4,f +10121,4476b,7,4,f +10121,4488,7,4,f +10121,4519,0,3,f +10121,4589,57,1,f +10121,4589,42,14,f +10121,4590,0,1,f +10121,4735,7,2,f +10121,4859,14,1,f +10121,4865a,3,5,f +10121,55295,8,1,f +10121,55296,8,1,f +10121,55297,8,1,f +10121,55298,8,1,f +10121,55299,8,1,f +10121,55300,8,1,f +10121,6014,14,4,f +10121,6015,0,4,f +10121,6104,0,1,f +10121,6112,14,2,f +10121,6134,3,1,f +10121,6140,14,2,f +10121,6141,42,1,t +10121,6141,57,1,t +10121,6141,57,10,f +10121,6141,42,6,f +10121,6232,7,4,f +10121,6249,8,1,f +10121,6541,0,1,f +10121,6583,8,4,f +10121,6636,0,2,f +10121,73590c02b,14,4,f +10121,75347,0,2,f +10121,970c00,25,1,f +10121,970c00,8,1,f +10121,970c00,1,2,f +10121,973pb0044c01,1,1,f +10121,973pb0070c01,8,1,f +10121,973pb0090c01,25,1,f +10121,973px25c01,4,1,f +10122,2452,6,2,f +10122,3003,70,8,f +10122,3004,70,8,f +10122,3005,70,2,f +10122,3010,70,11,f +10122,3022,14,1,f +10122,3022,4,3,f +10122,3023,4,2,f +10122,3023,6,8,f +10122,3039,4,1,f +10122,3039,70,1,f +10122,3039,14,1,f +10122,3062b,71,16,f +10122,3063b,14,4,f +10122,3069b,72,2,f +10122,3069b,70,2,f +10122,3070b,15,15,f +10122,3298,6,1,f +10122,3660,70,1,f +10122,3710,72,4,f +10122,3710,4,2,f +10122,3794a,4,2,f +10122,3794a,14,2,f +10122,3794a,70,4,f +10122,3795,70,2,f +10122,4276b,15,2,f +10122,4287,72,2,f +10122,4733,15,3,f +10123,2412b,4,2,f +10123,2431,0,3,f +10123,2432,72,2,f +10123,2447,0,1,f +10123,2447,0,1,t +10123,2540,72,4,f +10123,2555,72,20,f +10123,2569,0,2,f +10123,2654,72,7,f +10123,2723,0,1,f +10123,2730,15,2,f +10123,2780,0,2,t +10123,2780,0,9,f +10123,2877,14,1,f +10123,3001,4,1,f +10123,3001,1,1,f +10123,3003,72,2,f +10123,30031,72,1,f +10123,30033,15,2,f +10123,3004,15,2,f +10123,3008,4,2,f +10123,3009,72,3,f +10123,3010,0,4,f +10123,30171,0,1,f +10123,3020,14,2,f +10123,3021,4,2,f +10123,3021,15,1,f +10123,3023,4,4,f +10123,3023,0,2,f +10123,30236,72,2,f +10123,3024,33,2,f +10123,3024,36,2,f +10123,3033,0,1,f +10123,3034,15,3,f +10123,3035,0,1,f +10123,30350b,0,1,f +10123,30355,15,1,f +10123,30356,15,1,f +10123,3036,0,1,f +10123,30360,15,2,f +10123,30360,0,2,f +10123,30367b,72,2,f +10123,30383,0,2,f +10123,3039,15,4,f +10123,3040b,15,2,f +10123,3040b,0,2,f +10123,30414,4,1,f +10123,30414,15,1,f +10123,3045,15,2,f +10123,30553,0,2,f +10123,3069b,14,1,f +10123,3069b,15,1,f +10123,3069b,36,2,f +10123,3069b,33,2,f +10123,3069b,82,3,f +10123,3070b,34,2,f +10123,3070b,34,1,t +10123,32002,72,4,f +10123,32002,72,1,t +10123,32028,0,4,f +10123,32028,15,2,f +10123,32034,0,1,f +10123,32039,0,2,f +10123,32062,4,8,f +10123,32064b,4,2,f +10123,32064b,1,2,f +10123,32138,0,2,f +10123,3460,15,2,f +10123,3623,1,2,f +10123,3626b,15,1,f +10123,3626bpr0500,14,1,f +10123,3626bpr0601,15,2,f +10123,3660,0,7,f +10123,3666,0,8,f +10123,3676,0,2,f +10123,3678b,15,1,f +10123,3700,71,1,f +10123,3701,72,2,f +10123,3710,72,1,f +10123,3710,0,2,f +10123,3794b,15,1,f +10123,3795,72,4,f +10123,3821,14,1,f +10123,3822,14,1,f +10123,3829c01,71,1,f +10123,3838,0,1,f +10123,3937,72,1,f +10123,3937,0,2,f +10123,3938,71,1,f +10123,3941,57,2,f +10123,3943b,0,2,f +10123,4032a,0,6,f +10123,4032a,72,7,f +10123,4032a,4,5,f +10123,40490,0,1,f +10123,4150,14,2,f +10123,4150,0,2,f +10123,41747,0,1,f +10123,41747,15,2,f +10123,41748,15,2,f +10123,41748,0,1,f +10123,41764,0,1,f +10123,41765,0,1,f +10123,42022,4,1,f +10123,42022,0,1,f +10123,4229,0,2,f +10123,4274,71,12,f +10123,4274,71,2,t +10123,4286,0,2,f +10123,44126,0,2,f +10123,44676,0,2,f +10123,44676,72,4,f +10123,44728,72,9,f +10123,45705,33,1,f +10123,4589,0,16,f +10123,4589,34,6,f +10123,4589,72,8,f +10123,4589,42,4,f +10123,4740,57,2,f +10123,47755,0,2,f +10123,48336,4,1,f +10123,4865a,72,2,f +10123,50745,72,2,f +10123,50943,71,1,f +10123,50950,0,4,f +10123,50950,15,4,f +10123,52031,0,1,f +10123,53451,0,1,t +10123,53451,4,1,f +10123,53451,0,3,f +10123,53451,4,1,t +10123,54200,0,10,f +10123,54200,15,4,f +10123,54200,15,1,t +10123,54200,47,4,f +10123,54200,4,1,t +10123,54200,4,2,f +10123,54200,36,1,t +10123,54200,0,2,t +10123,54200,36,4,f +10123,54200,47,1,t +10123,57028c01,71,2,f +10123,57539,0,2,f +10123,57796,0,2,f +10123,58176,33,1,f +10123,58176,36,1,f +10123,58181,47,1,f +10123,6019,15,2,f +10123,60219,0,1,f +10123,6140,0,1,f +10123,61409,0,2,f +10123,61409,72,6,f +10123,6141,57,22,f +10123,6141,36,2,f +10123,6141,72,10,f +10123,6141,36,1,t +10123,6141,57,2,t +10123,6141,72,3,t +10123,61800,0,4,f +10123,6222,15,1,f +10123,62462,0,4,f +10123,6266,15,1,f +10123,63965,0,2,f +10123,64392,15,1,f +10123,64682,15,1,f +10123,6536,72,8,f +10123,6553,71,1,f +10123,6558,1,1,f +10123,6583,0,2,f +10123,6587,72,5,f +10123,85941,33,2,f +10123,85943,72,1,f +10123,85945,71,2,f +10123,85959pat0001,36,2,f +10123,970c00pr0127,72,1,f +10123,970c00pr0131,0,2,f +10123,973pr1490c01,72,1,f +10123,973pr1513c01,0,2,f +10125,3666,15,50,f +10127,11055,4,1,f +10127,11211,4,1,f +10127,11477,15,2,f +10127,11609,191,2,f +10127,11609,191,1,t +10127,11833,84,2,f +10127,13965,15,4,f +10127,15068,25,1,f +10127,15573,0,1,f +10127,2357,71,2,f +10127,2357,14,4,f +10127,2412b,0,2,f +10127,2420,14,2,f +10127,2445,15,1,f +10127,2450,19,3,f +10127,2456,14,1,f +10127,2921,70,1,f +10127,298c02,4,1,t +10127,298c02,4,1,f +10127,3001,14,1,f +10127,3004,71,5,f +10127,3004,14,18,f +10127,3005,14,14,f +10127,3009,71,2,f +10127,3009,14,3,f +10127,3010,14,2,f +10127,3010,71,3,f +10127,30176,2,2,f +10127,3020,15,5,f +10127,3021,19,6,f +10127,3022,25,2,f +10127,3022,15,2,f +10127,3023,14,5,f +10127,3023,15,2,f +10127,3023,1,2,f +10127,3023,70,2,f +10127,3024,15,2,f +10127,3024,15,1,t +10127,3029,1,1,f +10127,3029,15,2,f +10127,3032,70,1,f +10127,3034,19,1,f +10127,3037,272,10,f +10127,30374,15,2,f +10127,3038,272,20,f +10127,3039,272,9,f +10127,3040b,320,3,f +10127,3040b,4,3,f +10127,3040bpr0003,71,1,f +10127,30503,1,2,f +10127,3062b,71,3,f +10127,3062b,47,2,f +10127,3062b,70,2,f +10127,3069b,70,7,f +10127,3069bpr0100,2,1,f +10127,32028,72,2,f +10127,3460,14,2,f +10127,3622,71,3,f +10127,3622,14,6,f +10127,3623,15,4,f +10127,3626bpr0677,14,1,f +10127,3626cpr0499,14,1,f +10127,3660,71,1,f +10127,3666,19,2,f +10127,3710,14,2,f +10127,3830,72,1,f +10127,3831,72,1,f +10127,3899,4,1,f +10127,4032a,71,2,f +10127,41879a,0,1,f +10127,4740,47,1,f +10127,4740,0,1,f +10127,47905,0,1,f +10127,54200,47,5,f +10127,54200,47,1,t +10127,57894,15,1,f +10127,57895,47,1,f +10127,59900,33,1,f +10127,60470a,71,1,f +10127,60475b,71,1,f +10127,60478,72,2,f +10127,60593,15,3,f +10127,60594,15,1,f +10127,60596,15,2,f +10127,60602,47,3,f +10127,60603,47,1,f +10127,60616a,47,1,f +10127,60623,15,1,f +10127,61252,14,1,f +10127,6141,0,2,f +10127,6141,70,10,f +10127,6141,4,1,t +10127,6141,14,1,t +10127,6141,70,1,t +10127,6141,182,2,f +10127,6141,182,1,t +10127,6141,4,3,f +10127,6141,14,3,f +10127,6141,0,1,t +10127,6636,70,7,f +10127,73983,14,1,f +10127,86035,4,1,f +10127,87087,15,2,f +10127,87552,47,2,f +10127,87585,70,1,f +10127,87990,84,1,f +10127,90397,15,1,f +10127,90397,27,1,f +10127,92438,10,2,f +10127,95343,71,1,f +10127,95344,297,1,f +10127,95344,297,1,t +10127,970c00,0,1,f +10127,973pr1573c01,15,1,f +10127,973pr2335c01,0,1,f +10127,98138,179,1,t +10127,98138,179,3,f +10127,99206,71,2,f +10128,14417,72,2,f +10128,14418,71,4,f +10128,14769,297,1,f +10128,15068,71,1,f +10128,15460,72,1,f +10128,18868a,41,1,f +10128,19981pr0034,41,1,f +10128,2420,4,2,f +10128,2540,0,2,f +10128,30173b,0,2,f +10128,30173b,179,2,f +10128,3023,4,2,f +10128,3023,0,3,f +10128,3623,4,2,f +10128,3626cpr1571,14,1,f +10128,3941,4,1,f +10128,3941,41,1,f +10128,43093,1,1,f +10128,44728,4,2,f +10128,59900,33,2,f +10128,6019,0,2,f +10128,61252,297,3,f +10128,61409,4,2,f +10128,6141,297,2,f +10128,6141,33,2,f +10128,6141,33,1,t +10128,6141,297,1,t +10128,63965,0,1,f +10128,92690,297,2,f +10128,95344,297,1,t +10128,95344,297,2,f +10128,970c00pr0772,0,1,f +10128,973pr2859c01,0,1,f +10128,98100,0,1,f +10128,98128,0,1,f +10128,98129,4,1,f +10128,98132,148,1,f +10128,98138,320,1,f +10128,98138,320,1,t +10128,99780,0,2,f +10129,2736,7,4,f +10129,2780,0,22,f +10129,32002,8,4,f +10129,32013,0,4,f +10129,32015,0,2,f +10129,32016,0,3,f +10129,32039,8,3,f +10129,32039,0,4,f +10129,32056,8,4,f +10129,32056,0,4,f +10129,32062,0,27,f +10129,32068,0,2,f +10129,32073,0,7,f +10129,32074c01,0,1,f +10129,32123b,7,5,f +10129,32138,0,1,f +10129,32140,8,7,f +10129,32140,0,6,f +10129,32140,25,2,f +10129,32173,0,1,f +10129,32174,0,3,f +10129,32174,25,2,f +10129,32174,8,1,f +10129,32177,8,2,f +10129,32184,0,2,f +10129,32209,15,2,f +10129,32250,8,2,f +10129,32250,0,2,f +10129,32269,7,2,f +10129,32271,8,6,f +10129,32291,0,11,f +10129,32307,8,7,f +10129,32310,8,2,f +10129,32310,135,6,f +10129,32316,0,2,f +10129,32316,8,4,f +10129,32348,0,1,f +10129,32348,25,2,f +10129,32348,8,2,f +10129,32449,0,6,f +10129,32474,0,1,f +10129,32482,0,1,f +10129,32523,8,4,f +10129,32527,135,4,f +10129,32528,135,4,f +10129,32551,8,2,f +10129,32556,7,7,f +10129,32557,0,2,f +10129,3705,0,12,f +10129,3706,0,3,f +10129,3707,0,1,f +10129,3713,7,17,f +10129,3737,0,1,f +10129,40490,8,2,f +10129,41662,135,1,f +10129,41669,57,2,f +10129,41671,0,1,f +10129,41672,0,2,f +10129,41677,0,2,f +10129,41678,25,2,f +10129,41678,0,1,f +10129,41679,8,4,f +10129,41680,7,2,f +10129,41681,8,2,f +10129,41752,8,2,f +10129,42003,0,2,f +10129,4274,7,3,f +10129,43093,0,25,f +10129,4519,0,24,f +10129,6536,0,8,f +10129,6536,8,8,f +10129,6536,25,2,f +10129,6538b,8,4,f +10129,6558,0,8,f +10129,6587,8,8,f +10129,6628,0,12,f +10129,758c01,7,2,f +10129,76110c01,7,1,f +10129,78c03,179,2,f +10129,85543,15,6,f +10129,85544,4,1,f +10131,30027,7,4,f +10131,30028,0,4,f +10131,30148,0,1,f +10131,30165,8,1,f +10131,3048c,7,1,f +10131,3626bpx32,14,1,f +10131,3795,14,1,f +10131,4485,1,1,f +10131,4735,7,1,f +10131,6157,7,2,f +10131,6187,7,1,f +10131,970c00,1,1,f +10131,973px64c01,15,1,f +10132,74746,8,8,f +10133,2357,15,4,f +10133,2456,7,4,f +10133,3001,15,4,f +10133,3004,15,10,f +10133,3020,15,8,f +10133,3021,0,10,f +10133,3022,4,23,f +10133,3022,15,4,f +10133,3023,7,10,f +10133,3039,15,10,f +10133,30488,7,2,f +10133,30488c01,15,2,f +10133,30488c01,0,2,f +10133,30489,2,2,f +10133,30492,2,2,f +10133,30493,0,2,f +10133,3068b,2,23,f +10133,3403c01,0,2,f +10133,3623,15,4,f +10133,3626bp03,14,1,f +10133,3626bpa3,14,1,f +10133,3626bpb0103,14,1,f +10133,3626bpx16,14,1,f +10133,3626bpx33,14,2,f +10133,3710,4,4,f +10133,3901,6,2,f +10133,3901,0,2,f +10133,3957a,15,2,f +10133,41732,4,2,f +10133,41733,4,2,f +10133,4176,15,12,f +10133,41819c01,2,2,f +10133,4204,2,2,f +10133,4476b,15,4,f +10133,4477,15,8,f +10133,4485,0,1,f +10133,4485,15,1,f +10133,4495a,4,1,f +10133,4495a,1,1,f +10133,4589,7,4,f +10133,4623,4,8,f +10133,4871,7,10,f +10133,6112,15,2,f +10133,6636,15,2,f +10133,71509,0,2,t +10133,71509,0,2,f +10133,72824p01,15,1,f +10133,72824pr02,15,1,f +10133,970c00,15,2,f +10133,970c00,1,2,f +10133,970c00,8,1,f +10133,970c00,7,1,f +10133,973pb0165c01,0,1,f +10133,973pb0166c01,0,1,f +10133,973pb0170c01,15,1,f +10133,973pb0171c01,4,1,f +10133,973pb0175c01,4,1,f +10133,973pb0217c01,15,1,f +10133,x442,15,2,f +10136,11089,15,1,f +10136,11096,179,1,f +10136,11097,297,1,f +10136,11097,179,1,f +10136,11100,15,2,f +10136,11100,25,2,f +10136,11233pr0002,71,1,f +10136,12825,297,2,f +10136,15071,0,1,f +10136,15083pr0004,71,1,f +10136,16656pr0004,25,1,f +10136,16659pr0001,31,1,f +10136,16768pat0001,4,1,f +10136,2555,71,4,f +10136,30153,41,2,f +10136,30162,72,1,f +10136,30374,0,1,f +10136,3626cpr1134,71,1,f +10136,3626cpr1421,25,1,f +10136,3626cpr1435,31,1,f +10136,3626cpr1437,71,1,f +10136,53451,15,2,f +10136,53451,179,4,f +10136,64567,71,1,f +10136,64644,0,1,f +10136,87747,297,1,f +10136,970c00pr0660,25,1,f +10136,970c00pr0663,4,1,f +10136,970c00pr0674,72,1,f +10136,970c00pr0675,71,1,f +10136,973pr2666c01,4,1,f +10136,973pr2685c01,4,1,f +10136,973pr2687c01,72,1,f +10136,973pr2688c01,71,1,f +10136,98138,41,2,f +10136,98138pr0023,182,1,f +10137,ftbirch,2,1,f +10137,ftbush,2,1,f +10137,ftcyp,2,1,f +10137,ftoak,2,1,f +10137,ftpine,2,1,f +10137,u9119c01,2,1,f +10138,2436,15,1,f +10138,30256,15,1,f +10138,30261p02,15,1,f +10138,3069bpr0016,15,1,f +10138,3794a,15,2,f +10138,4083,15,1,f +10138,6141,33,1,t +10138,6141,33,2,f +10139,24782,5,1,f +10139,28432pr0001,320,1,f +10139,29028,5,1,f +10139,3626cpr2114,84,1,f +10139,88646,0,1,f +10139,970c00pr1204,84,1,f +10139,973pr3679c01,5,1,f +10139,98721,5,1,f +10141,11214,72,1,f +10141,15369,297,2,f +10141,15462,28,2,f +10141,15744,297,1,f +10141,18654,72,3,f +10141,19049,179,1,f +10141,19050,42,1,f +10141,19086,72,1,f +10141,19087,297,3,f +10141,20477,41,1,f +10141,24164,0,1,f +10141,24189,148,1,f +10141,24190,0,1,f +10141,24193pr0008,41,1,f +10141,25534,41,1,f +10141,2780,0,4,f +10141,32054,0,1,f +10141,32062,4,5,f +10141,32072,0,4,f +10141,32270,0,1,f +10141,33299a,71,1,f +10141,3713,71,3,f +10141,3737,0,1,f +10141,41677,72,1,f +10141,4274,71,2,f +10141,43093,1,2,f +10141,48729b,0,2,f +10141,50923,72,2,f +10141,53585,0,3,f +10141,55615,71,1,f +10141,60483,0,1,f +10141,61403,41,1,f +10141,6553,0,1,f +10141,6558,1,2,f +10141,74261,0,2,f +10141,87083,72,2,f +10141,90609,41,5,f +10141,90616,0,2,f +10141,90617,72,1,f +10141,90640,41,9,f +10141,90640,297,2,f +10141,90661,297,2,f +10141,92907,0,1,f +10141,93571,72,1,f +10141,93575,41,2,f +10141,98577,72,2,f +10141,98592,148,1,f +10141,99021,72,1,f +10141,99773,71,2,f +10143,14696,0,1,t +10143,14696,0,26,f +10143,2780,0,1,t +10143,2780,0,3,f +10143,2850a,71,1,f +10143,2851,14,1,f +10143,2852,71,1,f +10143,2853,14,2,f +10143,2905,71,2,f +10143,32002,72,1,t +10143,32002,72,4,f +10143,32005a,0,2,f +10143,32013,0,2,f +10143,32015,0,2,f +10143,32016,0,2,f +10143,32039,0,1,f +10143,32039,4,1,f +10143,32054,0,2,f +10143,32062,4,2,f +10143,32073,71,4,f +10143,32123b,71,1,t +10143,32123b,71,13,f +10143,32140,0,2,f +10143,32271,0,5,f +10143,32271,25,2,f +10143,32291,0,1,f +10143,32316,0,4,f +10143,32348,0,4,f +10143,32523,71,1,f +10143,32556,19,1,f +10143,33299a,0,2,f +10143,3705,0,1,f +10143,3713,71,1,t +10143,3713,71,5,f +10143,3737,0,2,f +10143,3749,19,3,f +10143,40490,0,1,f +10143,41677,72,2,f +10143,43093,1,3,f +10143,43857,71,2,f +10143,44294,71,2,f +10143,4519,71,19,f +10143,55976,0,4,f +10143,56145,0,4,f +10143,59426,72,2,f +10143,59443,0,2,f +10143,60483,0,2,f +10143,60484,71,3,f +10143,6141,47,2,f +10143,6141,47,1,t +10143,62462,25,2,f +10143,63869,71,1,f +10143,64391,25,1,f +10143,64683,25,1,f +10143,6536,0,3,f +10143,6553,0,2,f +10143,6558,1,10,f +10143,6571,0,2,f +10143,6572,71,4,f +10143,6587,28,2,f +10143,6628,0,2,f +10143,6629,71,1,f +10143,76138,71,3,f +10143,87080,25,1,f +10143,87082,71,2,f +10143,87083,72,2,f +10143,87086,25,1,f +10143,92907,0,2,f +10143,94925,71,4,f +10145,2456,1,1,f +10145,2456,15,1,f +10145,2456,14,1,f +10145,2456,4,1,f +10145,3001,14,7,f +10145,3001,0,4,f +10145,3001,4,7,f +10145,3001,1,8,f +10145,3001,15,8,f +10145,3002,15,4,f +10145,3002,1,4,f +10145,3002,14,4,f +10145,3002,0,2,f +10145,3002,4,4,f +10145,3003,1,10,f +10145,3003,14,8,f +10145,3003,0,4,f +10145,3003,4,8,f +10145,3003,15,10,f +10145,3004,14,16,f +10145,3004,15,20,f +10145,3004,0,10,f +10145,3004,1,20,f +10145,3004,4,16,f +10145,3005,0,12,f +10145,3005,1,20,f +10145,3005,4,17,f +10145,3005,14,17,f +10145,3005,15,20,f +10145,3008,15,2,f +10145,3008,4,4,f +10145,3008,0,2,f +10145,3008,14,4,f +10145,3008,1,2,f +10145,3009,14,6,f +10145,3009,1,8,f +10145,3009,4,6,f +10145,3009,15,8,f +10145,3009,0,2,f +10145,3010,0,8,f +10145,3010,1,14,f +10145,3010,4,12,f +10145,3010,15,14,f +10145,3010,14,12,f +10145,3622,15,8,f +10145,3622,1,8,f +10145,3622,0,4,f +10145,3622,14,6,f +10145,3622,4,6,f +10146,11090,72,1,f +10146,11213,322,1,f +10146,11816pr0006,78,1,f +10146,14769,71,5,f +10146,14769pr0001,15,1,f +10146,15210,0,2,f +10146,15397,30,1,f +10146,15573,15,3,f +10146,15573,26,6,f +10146,19881,9999,1,t +10146,2412b,71,3,f +10146,2420,26,1,f +10146,2431,322,2,f +10146,2432,71,3,f +10146,2456,15,3,f +10146,2460,71,1,f +10146,2496,0,2,f +10146,2655,71,2,f +10146,3001,15,4,f +10146,3002,15,2,f +10146,3003,19,16,f +10146,3003,15,1,f +10146,3004,19,3,f +10146,3004,15,2,f +10146,3008,15,2,f +10146,3009,15,1,f +10146,3020,2,1,f +10146,3020,30,4,f +10146,3021,322,4,f +10146,3022,19,1,f +10146,3023,27,2,f +10146,3023,30,5,f +10146,3023,46,5,f +10146,30236,71,1,f +10146,30350b,15,1,f +10146,3036,2,1,f +10146,30562,47,1,f +10146,30565,322,2,f +10146,3062b,322,1,f +10146,3065,40,2,f +10146,3068b,191,2,f +10146,3068b,15,2,f +10146,3245b,15,1,f +10146,32474,27,1,f +10146,3297,322,2,f +10146,33291,4,7,f +10146,33291,4,1,t +10146,3666,322,1,f +10146,3666,26,3,f +10146,3795,30,2,f +10146,3852b,191,1,f +10146,3957b,15,1,f +10146,4286,322,4,f +10146,43898,179,1,f +10146,44728,15,4,f +10146,4740,57,1,f +10146,48092,15,1,f +10146,48336,71,2,f +10146,4865b,41,1,f +10146,4865b,322,4,f +10146,57895,47,1,f +10146,6005,323,2,f +10146,60475b,15,4,f +10146,60596,15,2,f +10146,60616a,47,1,f +10146,60849,71,1,t +10146,60849,71,1,f +10146,60897,15,6,f +10146,6091,15,2,f +10146,6141,27,1,t +10146,6141,2,1,t +10146,6141,2,3,f +10146,6141,27,3,f +10146,6190,4,1,f +10146,6636,30,2,f +10146,85984,30,1,f +10146,85984,27,1,f +10146,87544,47,2,f +10146,87580,26,3,f +10146,88930,322,1,f +10146,91405,226,1,f +10146,92257,320,1,f +10146,92456pr0034c01,78,1,f +10146,92593,15,2,f +10146,92818pr0002c01,26,1,f +10146,93089pr0001b,484,1,f +10146,95188,322,1,f +10146,98138,29,1,t +10146,98138,29,2,f +10146,98386pr0002,71,1,f +10146,98393a,323,1,f +10146,98393b,323,1,f +10146,98393c,323,1,f +10146,98393d,323,1,f +10146,98393e,323,1,f +10146,98393f,323,1,f +10146,98393g,323,1,f +10146,98393h,323,1,f +10146,98393i,323,1,f +10146,98393j,323,1,f +10146,99207,71,2,f +10147,4143,7,30,f +10147,73071,7,2,f +10148,3022,70,1,f +10148,3040b,2,4,f +10148,3941,70,1,f +10148,4032a,2,2,f +10148,4286,2,4,f +10148,4589,2,1,f +10148,6141,46,1,t +10148,6141,36,1,t +10148,6141,36,2,f +10148,6141,46,3,f +10149,2780,0,2,f +10149,32054,0,2,f +10149,32062,0,2,f +10149,32174,72,5,f +10149,32209,15,1,f +10149,32270,7,3,f +10149,32533pb001,36,1,f +10149,3705,0,2,f +10149,3713,7,2,f +10149,43093,1,4,f +10149,4519,7,2,f +10149,47296,72,4,f +10149,47297,320,2,f +10149,47298,320,2,f +10149,47299,320,2,f +10149,47305,320,1,f +10149,47306,320,1,f +10149,47308,320,1,f +10149,47310,320,2,f +10149,47311,320,2,f +10149,47312,72,1,f +10149,47313,42,1,f +10149,47318,179,1,f +10149,49423,320,1,f +10149,6538b,72,1,f +10150,10201,70,1,f +10150,11477,308,8,f +10150,14417,72,2,f +10150,14418,71,2,f +10150,15208,15,3,f +10150,3020,484,1,f +10150,3022,484,1,f +10150,3023,70,4,f +10150,32123b,71,1,t +10150,32123b,71,1,f +10150,32124,70,1,f +10150,3937,0,1,f +10150,4032a,4,2,f +10150,43093,1,1,f +10150,48336,0,2,f +10150,48933,484,1,f +10150,54200,70,10,f +10150,54200,70,1,t +10150,61252,0,4,f +10150,6134,4,1,f +10150,6141,0,2,f +10150,6141,0,1,t +10150,87081,70,1,f +10150,93273,70,2,f +10150,98138pr0008,15,1,t +10150,98138pr0008,15,2,f +10150,99206,0,3,f +10150,99780,0,1,f +10151,2357,0,2,f +10151,3001,0,12,f +10151,3002,0,6,f +10151,3003,0,10,f +10151,3004,0,8,f +10151,3005,0,6,f +10151,3006,0,1,f +10151,3007,0,1,f +10151,3008,0,2,f +10151,3009,0,4,f +10151,3010,0,6,f +10151,3622,0,4,f +10152,11476,0,2,f +10152,11477,70,4,f +10152,14417,72,4,f +10152,14418,71,4,f +10152,15068,72,1,f +10152,15070,15,2,f +10152,2458,72,2,f +10152,2817,4,1,f +10152,3020,70,3,f +10152,30273,179,1,f +10152,30294,72,1,f +10152,3034,70,1,f +10152,30374,0,1,f +10152,3626cpr1001,15,1,f +10152,3710,70,1,f +10152,4032a,70,1,f +10152,4495b,4,1,f +10152,54200,70,1,t +10152,54200,72,2,f +10152,54200,70,4,f +10152,54200,72,1,t +10152,60478,72,2,f +10152,60897,70,4,f +10152,6141,15,2,f +10152,6141,70,1,t +10152,6141,297,6,f +10152,6141,297,1,t +10152,6141,15,1,t +10152,6141,70,3,f +10152,87580,70,1,f +10152,92947,70,1,f +10152,98138,71,1,f +10152,98138,71,1,t +10152,98283,71,6,f +10153,13731,4,2,f +10153,13756,41,1,f +10153,13760,272,1,f +10153,15379,71,1,t +10153,15379,71,12,f +10153,2412b,4,5,f +10153,2412b,72,3,f +10153,2412b,4,1,t +10153,2431,72,2,f +10153,2432,0,1,f +10153,2432,14,2,f +10153,2436,1,1,f +10153,2446,0,1,f +10153,2447,40,1,f +10153,2447,40,1,t +10153,2877,72,2,f +10153,298c02,14,1,t +10153,298c02,71,1,t +10153,298c02,14,1,f +10153,298c02,71,1,f +10153,3001,72,2,f +10153,3001,14,2,f +10153,3004,14,1,f +10153,3005,272,4,f +10153,3010,272,4,f +10153,3010,15,2,f +10153,3020,0,1,f +10153,3020,72,7,f +10153,3020,4,3,f +10153,3021,0,4,f +10153,3021,15,1,f +10153,3022,1,3,f +10153,3023,0,3,f +10153,3023,36,2,f +10153,3023,4,4,f +10153,3024,182,4,f +10153,30350b,15,2,f +10153,3040b,0,4,f +10153,30414,71,1,f +10153,3069b,36,2,f +10153,3069b,33,3,f +10153,3069b,82,1,f +10153,3069b,272,2,f +10153,3069b,0,2,f +10153,3069bpb263,15,1,f +10153,3069bpr0100,2,3,f +10153,3070b,0,2,f +10153,3070b,0,1,t +10153,32028,4,4,f +10153,32028,71,2,f +10153,3626cpr1144,14,1,f +10153,3626cpr1145,14,1,f +10153,3626cpr1147,14,1,f +10153,3660,72,4,f +10153,3665,15,6,f +10153,3665,72,4,f +10153,3666,272,3,f +10153,3666,15,2,f +10153,3666,72,2,f +10153,3666,0,1,f +10153,3710,0,2,f +10153,3710,2,4,f +10153,3710,15,2,f +10153,3710,4,2,f +10153,3710,272,5,f +10153,3710,72,2,f +10153,3794b,72,2,f +10153,3795,15,1,f +10153,3795,0,2,f +10153,3795,4,1,f +10153,3829c01,14,2,f +10153,3899,4,1,f +10153,3942c,14,1,f +10153,3958,72,1,f +10153,3962b,0,2,f +10153,4079,14,1,f +10153,41334,72,1,f +10153,4282,71,2,f +10153,4286,4,2,f +10153,4488,71,4,f +10153,4697b,71,2,f +10153,4697b,71,1,t +10153,47457,4,1,f +10153,48336,15,2,f +10153,48336,0,1,f +10153,4865b,0,1,f +10153,50745,4,4,f +10153,50859b,0,1,f +10153,50861,0,2,f +10153,50862,71,2,f +10153,52031,272,1,f +10153,52031,15,1,f +10153,52036,72,1,f +10153,52501,4,2,f +10153,54200,4,4,f +10153,54200,36,1,f +10153,54200,36,1,t +10153,54200,33,2,f +10153,54200,33,1,t +10153,54200,46,3,f +10153,54200,46,2,t +10153,54200,4,1,t +10153,55981,71,4,f +10153,57783,40,1,f +10153,58090,0,4,f +10153,60007stk01,9999,1,t +10153,6014b,15,4,f +10153,60477,15,2,f +10153,6079,15,1,f +10153,61409,0,2,f +10153,6141,72,1,t +10153,6141,33,3,f +10153,6141,46,4,f +10153,6141,72,2,f +10153,6141,33,1,t +10153,61482,71,2,t +10153,61482,71,2,f +10153,6179,72,1,f +10153,6231,4,2,f +10153,6249,71,2,f +10153,62810,28,1,f +10153,63864,4,2,f +10153,63868,0,2,f +10153,63868,71,2,f +10153,6583,0,1,f +10153,6636,0,1,f +10153,6636,4,1,f +10153,6636,15,1,f +10153,85984,4,2,f +10153,85984,0,1,f +10153,87087,71,4,f +10153,87552,41,2,f +10153,87609,4,2,f +10153,87697,0,4,f +10153,88930,4,1,f +10153,89536,15,1,f +10153,92593,71,1,f +10153,970c00,0,1,f +10153,970c00pr0406,272,2,f +10153,973pr2190c01,73,2,f +10153,973pr2196c01,72,1,f +10153,98282,15,4,f +10153,99780,72,2,f +10154,12825,0,1,f +10154,30027b,0,2,f +10154,30031,0,1,f +10154,3626cpr0745,14,1,f +10154,3794b,71,1,f +10154,3795,72,1,f +10154,4032a,71,1,f +10154,44674,0,1,f +10154,4600,0,2,f +10154,4623,0,2,f +10154,51739,72,1,f +10154,54200,297,1,t +10154,54200,297,2,f +10154,6014b,0,2,f +10154,61409,72,2,f +10154,87747,297,2,f +10154,970c00pr0276,0,1,f +10154,973pr1898c01,0,1,f +10154,98133pr0004,0,1,f +10154,98313,0,2,f +10155,11939,4,1,f +10155,11940,27,1,f +10155,11941,73,1,f +10155,11942,484,1,f +10155,13164,25,1,f +10155,13165,14,1,f +10155,13168,10,1,f +10155,13170,2,1,f +10155,13171,1,1,f +10155,13172,85,1,f +10155,2312c02,10,2,f +10155,2312c02,1,1,f +10155,2312c02,4,1,f +10155,3437,4,2,f +10155,3437,10,2,f +10155,3437,73,1,f +10155,3437,27,2,f +10155,4543,14,1,f +10155,4550,4,1,f +10155,47511pr0004,71,1,f +10155,58057pr03,15,1,f +10155,73355,10,1,f +10155,92453,4,1,f +10155,98223,25,1,f +10155,98223,27,1,f +10155,98223,73,1,f +10155,98233,10,1,f +10157,2377,0,4,f +10157,2412b,0,1,f +10157,2432,0,2,f +10157,2456,0,5,f +10157,2540,0,4,f +10157,2878c01,0,4,f +10157,2920,0,4,f +10157,2921,0,12,f +10157,3001,0,2,f +10157,3004,0,26,f +10157,3009,0,2,f +10157,3010,0,6,f +10157,3020,0,3,f +10157,3021,0,2,f +10157,3021,7,4,f +10157,3023,0,6,f +10157,3028,0,1,f +10157,3031,7,1,f +10157,3034,0,2,f +10157,30367b,0,2,f +10157,3037,0,6,f +10157,3040b,0,8,f +10157,3062b,8,2,f +10157,3068b,0,1,f +10157,32028,0,8,f +10157,32064a,15,1,f +10157,3297,0,4,f +10157,3455,0,4,f +10157,3623,0,2,f +10157,3660,0,4,f +10157,3678a,0,6,f +10157,3795,7,4,f +10157,3832,7,1,f +10157,3960,0,1,f +10157,4022,0,4,f +10157,4025,0,1,f +10157,4032a,0,1,f +10157,4070,0,3,f +10157,4095,0,1,f +10157,4150pr0022,7,1,f +10157,4175,0,6,f +10157,4215b,0,5,f +10157,4286,0,2,f +10157,4349,0,1,f +10157,4460a,0,2,f +10157,4510,0,2,f +10157,4589,14,1,f +10157,4623,0,1,f +10157,4865a,0,2,f +10157,6019,0,6,f +10157,6111,0,2,f +10157,6141,36,1,t +10157,6141,36,2,f +10157,6141,42,2,f +10157,6141,8,1,t +10157,6141,8,7,f +10157,6141,42,1,t +10157,6584,0,1,f +10157,6587,8,1,f +10157,73092,0,4,f +10157,trainktstk01,9999,1,t +10160,11090,0,2,f +10160,11477,4,6,f +10160,14417,72,1,f +10160,14418,71,1,f +10160,14419,72,1,f +10160,14769pr1002,15,1,f +10160,14769pr1003,15,1,f +10160,15209,15,1,f +10160,15672,4,1,f +10160,15712,320,1,f +10160,18649,0,3,f +10160,2653,0,2,f +10160,3020,320,2,f +10160,3022,0,2,f +10160,3023,320,3,f +10160,3039,320,1,f +10160,3937,0,1,f +10160,4070,0,2,f +10160,44728,0,1,f +10160,4735,0,2,f +10160,47457,4,3,f +10160,4871,4,1,f +10160,49668,0,2,f +10160,53451,4,1,t +10160,53451,4,2,f +10160,54200,182,4,f +10160,54200,320,1,t +10160,54200,0,1,t +10160,54200,320,2,f +10160,54200,182,1,t +10160,54200,0,2,f +10160,61252,4,4,f +10160,6134,4,1,f +10160,85959pat0003,36,1,f +10160,99207,4,3,f +10161,10058,26,2,f +10161,11153,0,2,f +10161,12607ass03pr01,2,1,f +10161,12609pr0001,28,1,f +10161,12615pr0001,26,1,f +10161,13037,71,2,f +10161,2397,0,1,f +10161,2412b,0,2,f +10161,2419,72,2,f +10161,2450,72,4,f +10161,2540,15,2,f +10161,2654,0,3,f +10161,2817,71,2,f +10161,298c02,14,1,t +10161,298c02,14,2,f +10161,3001,4,1,f +10161,30029,0,1,f +10161,3020,15,2,f +10161,3020,326,3,f +10161,3021,0,2,f +10161,3023,0,2,f +10161,3023,326,3,f +10161,30350b,72,1,f +10161,30350b,40,1,f +10161,30363,15,1,f +10161,3048c,0,1,f +10161,30526,72,4,f +10161,3062b,42,2,f +10161,32013,14,2,f +10161,32013,0,2,f +10161,32013,4,2,f +10161,32054,4,2,f +10161,32062,0,2,f +10161,32064b,72,2,f +10161,32526,72,2,f +10161,32556,19,2,f +10161,3626cpr1150,0,1,f +10161,3673,71,2,f +10161,3673,71,1,t +10161,3706,0,1,f +10161,3710,70,1,f +10161,3832,0,1,f +10161,3937,71,1,f +10161,3941,42,2,f +10161,4032a,71,2,f +10161,4150,71,2,f +10161,42610,71,2,f +10161,43093,1,2,f +10161,43722,72,1,f +10161,43723,72,1,f +10161,44225,326,2,f +10161,44728,15,1,f +10161,44728,14,1,f +10161,47759,72,1,f +10161,48336,0,2,f +10161,4865b,72,2,f +10161,50950,320,2,f +10161,54200,15,1,t +10161,54200,15,2,f +10161,55981,326,3,f +10161,58090,0,3,f +10161,59900,14,2,f +10161,60219,72,1,f +10161,60478,72,2,f +10161,61184,71,6,f +10161,6126b,182,2,f +10161,6134,4,1,f +10161,61409,0,4,f +10161,6141,36,1,t +10161,6141,42,1,t +10161,6141,47,1,t +10161,6141,42,6,f +10161,6141,36,2,f +10161,6141,47,2,f +10161,6232,15,1,f +10161,62462,320,1,f +10161,63868,4,2,f +10161,63868,0,4,f +10161,6636,14,2,f +10161,79102stk01,9999,1,t +10161,85984,72,3,f +10161,86208,71,2,f +10161,87611,72,1,f +10161,87615,0,1,f +10161,93058,297,2,f +10161,93058,297,1,t +10161,970c00,0,1,f +10161,970c00pr0473,2,1,f +10161,973pr2263c01,2,1,f +10161,973pr2264c01,0,1,f +10161,98138pr0012,179,2,f +10161,98138pr0012,179,1,t +10161,98139,179,1,t +10161,98139,179,2,f +10162,2412b,0,1,f +10162,2432,2,1,f +10162,2446pb08,27,1,f +10162,2447,40,1,f +10162,2447,40,1,t +10162,2540,4,1,f +10162,30027b,27,2,f +10162,30028,0,2,f +10162,3023,4,1,f +10162,30602pb007,2,1,f +10162,3062b,2,2,f +10162,3139,0,2,f +10162,3626bpb0123,14,1,f +10162,3839b,27,1,f +10162,4081b,27,2,f +10162,4081b,4,2,f +10162,41861c01,7,1,f +10162,4599a,0,2,f +10162,4599a,0,1,t +10162,4624,27,2,f +10162,6157,0,1,f +10162,x351,4,1,f +10163,2780,0,6,f +10163,32013,71,1,f +10163,32054,0,1,f +10163,32062,0,1,f +10163,32174,72,5,f +10163,32199,72,1,f +10163,3705,0,1,f +10163,43093,1,1,f +10163,47296,72,2,f +10163,47306,72,1,f +10163,47311,0,1,f +10163,50898,72,2,f +10163,53500,57,1,f +10163,53562pat0001,0,2,f +10163,53563,0,1,f +10163,53564,297,1,f +10163,53566,0,2,f +10163,53569,297,1,f +10163,53574,0,2,f +10163,54270,0,1,f +10163,54271,297,1,f +10163,54821,42,4,f +10163,55095pr0001,15,1,f +10163,55307,0,1,t +10163,59426,72,1,f +10165,2415,7,3,f +10165,2431,1,12,f +10165,2445,7,2,f +10165,2454a,8,2,f +10165,2456,0,3,f +10165,2569,8,1,f +10165,2654,7,1,f +10165,2780,0,2,f +10165,2780,0,1,t +10165,2989,0,6,f +10165,298c02,15,1,t +10165,298c02,15,2,f +10165,2991,0,4,f +10165,3001,7,2,f +10165,3001,1,2,f +10165,3001,0,1,f +10165,3002,0,7,f +10165,3004,1,1,f +10165,3004,0,5,f +10165,3004,8,4,f +10165,3009,1,2,f +10165,3009,8,2,f +10165,3010,0,2,f +10165,3010,1,1,f +10165,30153,36,1,f +10165,30153,33,1,f +10165,30153,46,1,f +10165,30162,8,1,f +10165,3020,7,3,f +10165,3021,8,2,f +10165,3022,1,3,f +10165,3023,0,7,f +10165,3023,46,2,f +10165,30236,7,2,f +10165,3024,1,4,f +10165,3029,8,3,f +10165,3031,8,1,f +10165,3032,7,2,f +10165,3034,6,1,f +10165,3036,7,1,f +10165,30360,7,2,f +10165,30361c,0,1,f +10165,3037,1,1,f +10165,3038,0,2,f +10165,3039,7,3,f +10165,3039,0,2,f +10165,3040b,0,2,f +10165,3062b,0,4,f +10165,3069bpr0100,2,2,f +10165,3069bpr0101,7,1,f +10165,3070b,34,2,f +10165,3070b,36,2,f +10165,3139,0,3,f +10165,32000,7,2,f +10165,32013,1,2,f +10165,32028,1,4,f +10165,32062,4,2,f +10165,32064b,1,2,f +10165,32069,0,2,f +10165,32073,7,2,f +10165,32184,19,1,f +10165,32293,0,1,f +10165,32556,7,2,f +10165,3298,1,1,f +10165,3300,0,1,f +10165,3460,7,4,f +10165,3464,47,3,f +10165,3622,0,2,f +10165,3623,0,6,f +10165,3624,0,1,f +10165,3626bpb0185,14,1,f +10165,3626bpb0186,14,1,f +10165,3660,1,2,f +10165,3665,1,2,f +10165,3666,0,2,f +10165,3679,7,1,f +10165,3680,1,1,f +10165,3710,7,4,f +10165,3710,0,4,f +10165,3747a,0,2,f +10165,3755,8,2,f +10165,3794a,1,1,f +10165,3795,6,1,f +10165,3829c01,7,1,f +10165,3832,7,1,f +10165,3853,0,1,f +10165,3854,7,2,f +10165,3941,0,4,f +10165,3941,15,1,f +10165,3942c,1,2,f +10165,40234,8,1,f +10165,4032a,2,1,f +10165,4032a,15,3,f +10165,4032a,4,1,f +10165,41334,8,1,f +10165,41531,8,2,f +10165,4162,6,2,f +10165,41752,8,1,t +10165,42060px5,0,1,f +10165,42061px5,0,1,f +10165,4345b,0,2,f +10165,4346,7,2,f +10165,43712,0,1,f +10165,43713,7,1,f +10165,43719,1,1,f +10165,44301a,7,2,f +10165,44302a,8,2,f +10165,44567a,8,1,f +10165,4460a,0,2,f +10165,4510,0,2,f +10165,4511,0,1,f +10165,4515,7,2,f +10165,4519,7,1,f +10165,45406,0,1,f +10165,4599a,7,1,f +10165,46103,40,1,f +10165,4623,1,6,f +10165,4854,7,1,f +10165,6019,15,2,f +10165,6019,0,4,f +10165,6041,0,2,f +10165,6112,0,1,f +10165,6141,46,2,f +10165,6141,46,1,t +10165,6628,0,2,f +10165,6636,8,1,f +10165,7045stk01,9999,1,t +10165,75535,7,2,f +10165,85546,14,2,f +10165,970c00,6,1,f +10165,970c00,0,1,f +10165,973c10,0,1,f +10165,973pb0294c01,1,1,f +10165,x656,0,2,f +10165,x657,0,3,f +10166,2449,70,1,f +10166,2540,0,1,f +10166,3003,19,1,f +10166,3004,19,1,f +10166,3004,73,1,f +10166,3005,15,1,f +10166,3005,4,1,f +10166,3005,0,6,f +10166,3021,73,1,f +10166,3021,0,1,f +10166,3023,73,1,f +10166,3024,4,2,f +10166,3031,2,1,f +10166,3031,0,1,f +10166,3040b,19,1,f +10166,3040b,0,4,f +10166,3070b,4,2,f +10166,32028,0,1,f +10166,3623,15,1,f +10166,3665,0,1,f +10166,3710,15,1,f +10166,51739,0,1,f +10166,60475a,0,1,f +10166,60477,0,1,f +10166,6141,0,1,f +10166,6141,297,2,f +10166,6141,19,1,f +10166,63864,4,1,f +10166,64647,4,1,f +10166,87087,0,2,f +10166,92280,4,1,f +10166,99207,71,1,f +10168,608p02,0,1,f +10168,6099p02,0,1,f +10170,11153,4,2,f +10170,11293,15,1,f +10170,11295,25,1,f +10170,11297,41,1,f +10170,11303,1,1,f +10170,11455,0,1,f +10170,11458,72,2,f +10170,14045,0,1,t +10170,14045,0,1,f +10170,14137,4,2,f +10170,14518,15,1,f +10170,2412b,72,2,f +10170,2415,71,2,f +10170,2431,4,1,f +10170,2432,1,2,f +10170,2444,71,3,f +10170,2445,1,1,f +10170,2445,25,2,f +10170,2446,15,2,f +10170,2447,40,1,f +10170,2447,40,1,t +10170,2780,0,3,f +10170,2780,0,1,t +10170,298c02,4,1,t +10170,298c02,4,2,f +10170,3001,0,1,f +10170,3004,1,2,f +10170,30043,71,1,f +10170,30090,41,1,t +10170,30090,41,1,f +10170,30091,72,1,f +10170,30165,15,1,f +10170,3020,1,2,f +10170,3020,72,2,f +10170,3022,1,1,f +10170,3022,0,2,f +10170,3023,71,3,f +10170,3023,1,5,f +10170,3023,15,3,f +10170,3029,1,1,f +10170,3031,15,3,f +10170,30332,0,1,f +10170,3035,15,1,f +10170,3037,15,2,f +10170,30383,71,2,f +10170,30395,72,1,f +10170,3039pr0013,15,1,f +10170,3040b,72,2,f +10170,30592,72,1,f +10170,30602,72,1,f +10170,3070b,4,1,t +10170,3070b,34,1,t +10170,3070b,36,2,f +10170,3070b,34,1,f +10170,3070b,4,2,f +10170,3070b,36,2,t +10170,32034,0,1,f +10170,32124,0,12,f +10170,3464,15,2,f +10170,3622,25,2,f +10170,3626cpr0325,14,1,f +10170,3626cpr0891,14,1,f +10170,3626cpr0892,14,1,f +10170,3626cpr1147,14,1,f +10170,3666,15,8,f +10170,3666,1,2,f +10170,3666,4,2,f +10170,3673,71,1,t +10170,3673,71,1,f +10170,3700,71,1,f +10170,3701,72,1,f +10170,3710,15,4,f +10170,3710,25,2,f +10170,3747b,25,4,f +10170,3794b,4,3,f +10170,3962b,0,1,f +10170,4085c,72,1,f +10170,41770,15,1,f +10170,42023,15,2,f +10170,43093,1,1,f +10170,44126,72,1,f +10170,44126,15,2,f +10170,44676,0,1,f +10170,4477,15,2,f +10170,4623,72,1,f +10170,4624,15,2,f +10170,47456,70,1,f +10170,47457,71,4,f +10170,476,0,1,f +10170,4868b,15,2,f +10170,4869,71,2,f +10170,50943,72,1,f +10170,51739,72,1,f +10170,54200,15,1,t +10170,54200,15,2,f +10170,56823,0,1,f +10170,59275,25,2,f +10170,59895,0,4,f +10170,59895,0,1,t +10170,60470a,71,1,f +10170,60601,41,4,f +10170,6091,15,4,f +10170,61072,0,2,f +10170,61100c01,71,1,f +10170,61345,15,2,f +10170,6141,71,1,f +10170,6141,71,1,t +10170,6141,47,1,t +10170,6141,47,1,f +10170,61483,71,1,f +10170,61510,71,1,f +10170,6179,72,1,f +10170,6215,15,2,f +10170,62361,15,2,f +10170,6239,15,1,f +10170,62462,0,1,f +10170,62743,0,6,f +10170,62810,308,1,f +10170,63864,72,4,f +10170,63965,0,2,f +10170,63965,0,1,t +10170,64566,0,1,f +10170,6587,28,1,f +10170,85984,72,3,f +10170,85984,15,2,f +10170,87552,15,3,f +10170,87587,15,1,f +10170,87615,15,1,f +10170,87616,25,1,f +10170,91988,72,2,f +10170,93383,47,1,f +10170,93606,72,1,f +10170,970c00,25,2,f +10170,970c00,0,1,f +10170,970c00,1,1,f +10170,970x199,25,2,f +10170,973pr2334c01,71,1,f +10170,973pr2335c01,0,1,f +10170,973pr2351c01,25,2,f +10170,97895,14,2,f +10172,10113,0,1,f +10172,11153,2,8,f +10172,11153,15,6,f +10172,11211,4,1,f +10172,11291,2,1,f +10172,11399,72,1,f +10172,11477,288,2,f +10172,15068,19,3,f +10172,15068,288,1,f +10172,15086,0,1,f +10172,15303,35,3,f +10172,15400,72,2,f +10172,15535,72,1,f +10172,15712,15,2,f +10172,18649,71,1,f +10172,18671,72,2,f +10172,18973,40,1,f +10172,18986,47,1,f +10172,2412b,19,1,f +10172,2420,4,2,f +10172,2420,2,2,f +10172,2420,15,2,f +10172,24201,288,4,f +10172,2447,36,1,t +10172,2447,36,1,f +10172,2654,72,2,f +10172,27058,15,1,f +10172,27145,14,1,f +10172,27145,14,1,t +10172,27146,10,1,f +10172,29338pr0001,15,1,f +10172,29346pr0001,15,1,f +10172,3001,0,1,f +10172,3003,1,1,f +10172,3020,4,1,f +10172,3021,70,4,f +10172,3022,0,1,f +10172,3022,14,1,f +10172,30229,72,2,f +10172,3023,288,2,f +10172,3023,2,2,f +10172,3023,15,10,f +10172,3023,36,2,f +10172,3023,19,4,f +10172,3024,182,2,f +10172,3027,0,1,f +10172,3035,15,1,f +10172,30350a,288,1,f +10172,30374,297,1,f +10172,3039,0,1,f +10172,30426,0,1,f +10172,3069b,72,4,f +10172,30700,288,1,f +10172,32000,71,3,f +10172,3460,71,6,f +10172,3460,15,2,f +10172,3623,2,4,f +10172,3623,0,2,f +10172,3626cpr2119,78,1,f +10172,3626cpr2120,78,1,f +10172,3626cpr2122,4,1,f +10172,3626cpr2155,78,1,f +10172,3626cpr9998,78,1,f +10172,3660,288,6,f +10172,3666,15,2,f +10172,3676,288,2,f +10172,3678bpr0057,0,1,f +10172,3701,0,4,f +10172,3710,72,6,f +10172,3710,15,3,f +10172,3749,19,4,f +10172,3829c01,71,1,f +10172,3937,2,2,f +10172,3938,2,2,f +10172,41769,4,1,f +10172,41770,4,1,f +10172,43722,71,1,f +10172,43723,71,1,f +10172,50950,15,2,f +10172,54200,15,2,f +10172,54200,2,2,f +10172,54200,15,1,t +10172,54200,182,2,f +10172,54200,2,1,t +10172,55982,71,4,f +10172,57783,40,1,f +10172,6019,71,2,f +10172,60470b,4,1,f +10172,60470b,71,2,f +10172,60478,288,2,f +10172,60478,4,2,f +10172,60592,2,2,f +10172,60601,46,2,f +10172,6081,72,2,f +10172,61072,179,1,f +10172,61409,72,2,f +10172,6141,46,1,t +10172,6141,46,4,f +10172,62361,2,4,f +10172,62462,71,2,f +10172,63864,288,2,f +10172,63868,72,2,f +10172,64567,71,1,t +10172,64567,71,2,f +10172,64728,4,2,f +10172,6558,1,2,f +10172,85984,4,1,f +10172,86059,72,1,f +10172,87079,19,2,f +10172,87994,71,1,t +10172,87994,71,2,f +10172,89201,0,4,f +10172,93560pr0001,14,1,f +10172,970c00,0,1,f +10172,970c00,288,1,f +10172,970c00pr1192,2,1,f +10172,970c00pr1201,4,1,f +10172,973pr3650,0,1,f +10172,973pr3664c01,2,1,f +10172,973pr3665c01,27,1,f +10172,973pr3667c01,4,1,f +10172,973pr3718c01,0,1,f +10172,98138,47,1,t +10172,98138,36,1,f +10172,98138,71,1,t +10172,98138,71,4,f +10172,98138,36,1,t +10172,98138,47,4,f +10172,98721,0,1,t +10172,98721,0,2,f +10172,99206,71,2,f +10172,99241pr0002,4,1,f +10172,99563,0,1,f +10172,99780,2,2,f +10172,99780,72,5,f +10173,2780,0,4,f +10173,32054,25,2,f +10173,32062,0,5,f +10173,32073,0,1,f +10173,32123b,7,2,f +10173,32165,25,1,f +10173,32166,0,2,f +10173,32168,0,1,f +10173,32171pb055,21,1,f +10173,32171pb058,21,1,f +10173,32173,0,2,f +10173,32174,0,2,f +10173,32174,25,3,f +10173,32176,25,1,f +10173,32177,0,2,f +10173,32190,25,1,f +10173,32191,25,1,f +10173,32194,0,1,f +10173,3648b,0,1,f +10173,3705,0,1,f +10173,3737,0,1,f +10173,4716,14,1,f +10173,6536,0,4,f +10173,78c02,179,2,f +10173,x209pb02,0,1,f +10174,2397,72,1,f +10174,2431,72,1,f +10174,2526,1,1,t +10174,2526,1,1,f +10174,2527,4,1,f +10174,2530,72,1,t +10174,2530,72,1,f +10174,2543,288,1,f +10174,2545pr0001,0,1,f +10174,2561,70,1,f +10174,3005,71,1,f +10174,3010,71,2,f +10174,30176,2,2,f +10174,3020,70,1,f +10174,3022,4,1,f +10174,3023,0,1,f +10174,30374,70,1,f +10174,3040b,72,2,f +10174,3048c,297,1,f +10174,3062b,0,2,f +10174,3062b,72,2,f +10174,3068bpr0139a,19,1,f +10174,3069b,72,1,f +10174,3070b,72,1,t +10174,3070b,72,1,f +10174,3623,71,2,f +10174,3626bpr0348,14,1,f +10174,3626bpr0389,14,1,f +10174,3795,19,1,f +10174,4489b,70,2,f +10174,4623,4,1,f +10174,6141,71,2,f +10174,6141,71,1,t +10174,6157,0,1,f +10174,64644,297,1,f +10174,64647,57,1,f +10174,84943,148,1,f +10174,970c00,70,1,f +10174,970c00,15,1,f +10174,973pr1438c01,15,1,f +10174,973pr1441c01,4,1,f +10175,2412b,0,1,f +10175,2432,0,1,f +10175,2446,0,1,f +10175,2447,0,1,f +10175,30187c01,0,1,f +10175,3023,7,1,f +10175,3070b,46,1,f +10175,3070b,36,1,t +10175,3070b,46,1,t +10175,3070b,36,1,f +10175,3626bpb0098,14,1,f +10175,3901,0,1,t +10175,4081b,7,2,f +10175,6126a,57,2,f +10175,970c00,0,1,f +10175,973pb0236c01,0,1,f +10176,16709pat02,5,1,f +10176,25817,26,1,f +10176,26452pr0001,26,1,f +10176,88646,0,1,f +10176,973pr3326c01,118,1,f +10177,2536,71,1,f +10177,2780,0,7,f +10177,32002,72,10,f +10177,32002,72,2,t +10177,32039,191,1,f +10177,32039,0,2,f +10177,32056,72,2,f +10177,32062,0,10,f +10177,32072,191,2,f +10177,32072,0,1,f +10177,32123b,71,2,t +10177,32123b,71,3,f +10177,32138,0,1,f +10177,32140,191,1,f +10177,32140,72,2,f +10177,32174,72,1,f +10177,32174,0,2,f +10177,32175,191,15,f +10177,32184,0,2,f +10177,32192,0,2,f +10177,32199,179,1,f +10177,32310,191,2,f +10177,32316,191,3,f +10177,32316,72,2,f +10177,32316,0,3,f +10177,32348,191,4,f +10177,32348,72,2,f +10177,32523,191,3,f +10177,32524,72,4,f +10177,32526,72,1,f +10177,32556,71,2,f +10177,33299a,135,2,f +10177,3673,71,2,f +10177,3705,0,6,f +10177,3706,0,1,f +10177,3708,0,1,f +10177,3713,71,5,f +10177,3713,71,2,t +10177,41671,191,1,f +10177,41677,4,2,f +10177,41677,0,4,f +10177,41678,0,2,f +10177,42003,191,3,f +10177,42003,0,2,f +10177,42003,72,4,f +10177,43093,1,10,f +10177,44294,71,2,f +10177,44813,179,1,f +10177,4519,71,8,f +10177,45275,179,2,f +10177,45749,72,2,f +10177,47296,191,2,f +10177,47298,191,2,f +10177,47326pat01,72,6,f +10177,47328,72,2,f +10177,47330,0,1,f +10177,4773,36,1,t +10177,4773,36,1,f +10177,50899pr0002,4,1,f +10177,50900,72,1,f +10177,50901,0,1,f +10177,50903,14,1,f +10177,50919,191,1,f +10177,50923,72,1,f +10177,6536,72,1,f +10177,6536,0,4,f +10177,6538b,0,4,f +10177,6553,0,1,f +10177,6558,0,14,f +10177,6587,72,2,f +10177,6632,72,4,f +10177,78c04,179,1,f +10178,2419,0,1,f +10178,2456,0,2,f +10178,2488,0,1,f +10178,2508,0,1,f +10178,2555,0,2,f +10178,2566,0,2,f +10178,2586px14,71,1,f +10178,2587pr19,135,1,f +10178,3002,72,2,f +10178,3004,70,1,f +10178,3004,0,2,f +10178,30055,0,6,f +10178,3009,0,4,f +10178,3010,0,3,f +10178,30104,72,2,f +10178,3020,71,2,f +10178,3023,70,1,f +10178,3023,320,4,f +10178,30237a,72,6,f +10178,3028,0,1,f +10178,3036,0,2,f +10178,3037,72,1,f +10178,3048c,320,5,f +10178,3062b,15,16,f +10178,33211,135,4,f +10178,3626bpr0325,14,1,f +10178,3626bpr0494,15,2,f +10178,3626bpr0496,0,1,f +10178,3626bpr0500,14,1,f +10178,3660,320,3,f +10178,3665,72,2,f +10178,3666,320,1,f +10178,3678b,72,1,f +10178,3730,0,1,f +10178,3795,0,2,f +10178,3844,80,1,f +10178,3847,135,1,f +10178,3958,72,2,f +10178,40379,15,8,f +10178,4070,0,2,f +10178,4085c,71,2,f +10178,42445,71,4,f +10178,4286,0,4,f +10178,4287,0,2,f +10178,43899,72,3,f +10178,4477,0,3,f +10178,4491b,72,1,f +10178,4503,80,1,f +10178,4589,15,8,f +10178,48336,71,2,f +10178,48492,272,1,f +10178,48493,132,2,f +10178,53451,15,10,f +10178,53451,15,2,t +10178,57562,135,1,f +10178,59228,15,3,f +10178,59229,72,2,f +10178,59230,15,1,t +10178,59230,15,4,f +10178,59230,0,2,f +10178,59230,0,1,t +10178,59231pr0001,72,1,f +10178,59232,135,1,f +10178,60115,15,2,f +10178,60115,0,1,f +10178,6020,0,1,f +10178,6066,0,2,f +10178,6091,320,4,f +10178,6123,72,1,f +10178,6126a,57,2,f +10178,6232,15,6,f +10178,6266,0,2,f +10178,6266,15,4,f +10178,6636,0,2,f +10178,6636,72,2,f +10178,75998pr0005,70,1,f +10178,970x026,71,1,f +10178,970x026,72,1,f +10178,973c45,0,1,f +10178,973pr1318c01,272,1,f +10179,10201,0,1,f +10179,10201,4,2,f +10179,11055,15,2,f +10179,11090,0,2,f +10179,11305,297,2,f +10179,11476,71,4,f +10179,11477,0,6,f +10179,13252,40,1,f +10179,14769,297,2,f +10179,15303,36,3,f +10179,15362,297,2,f +10179,15392,72,2,f +10179,15400,72,2,f +10179,15403,0,2,f +10179,15571,0,4,f +10179,15573,72,1,f +10179,15573,19,1,f +10179,15712,1,2,f +10179,15712,71,4,f +10179,15712,297,4,f +10179,18957pat0002,19,1,f +10179,18961pr01,320,1,f +10179,18962,19,1,f +10179,19136pr0001,85,1,f +10179,2357,4,2,f +10179,2412b,297,29,f +10179,2419,0,2,f +10179,2420,4,2,f +10179,2420,71,6,f +10179,2420,0,6,f +10179,2431,14,1,f +10179,2432,4,1,f +10179,2445,0,5,f +10179,2450,4,4,f +10179,2453b,0,2,f +10179,2525,0,4,f +10179,2540,4,14,f +10179,2639,72,2,f +10179,2780,0,12,f +10179,2817,0,1,f +10179,2817,71,1,f +10179,2877,71,4,f +10179,2921,70,2,f +10179,2921,15,2,f +10179,298c02,4,4,f +10179,3001,4,2,f +10179,3003,4,16,f +10179,30031,72,1,f +10179,3004,15,3,f +10179,3004,4,8,f +10179,3004,0,3,f +10179,3005,0,4,f +10179,3008,0,2,f +10179,3008,4,1,f +10179,3009,14,1,f +10179,3010,4,2,f +10179,30136,19,6,f +10179,30162,297,1,f +10179,30173b,0,2,f +10179,30173b,179,1,f +10179,30173b,297,7,f +10179,30176,2,2,f +10179,3020,4,1,f +10179,3022,4,14,f +10179,3022,0,11,f +10179,3023,14,1,f +10179,3023,85,4,f +10179,3023,4,8,f +10179,30236,72,2,f +10179,3024,0,4,f +10179,30259,70,2,f +10179,3030,71,1,f +10179,3031,72,2,f +10179,3033,71,5,f +10179,3034,0,2,f +10179,30350b,72,2,f +10179,3039,4,2,f +10179,3040b,308,4,f +10179,30414,0,2,f +10179,30414,4,7,f +10179,30526,72,5,f +10179,30526,71,2,f +10179,30552,0,2,f +10179,30553,0,2,f +10179,30602,70,2,f +10179,3062b,72,2,f +10179,3062b,19,2,f +10179,3068b,0,1,f +10179,3068b,72,2,f +10179,3068b,4,1,f +10179,3069b,4,2,f +10179,3069b,0,4,f +10179,32000,19,1,f +10179,32140,72,2,f +10179,3245b,4,2,f +10179,32523,4,12,f +10179,32523,0,2,f +10179,32530,0,2,f +10179,3460,0,5,f +10179,3622,4,1,f +10179,3623,0,4,f +10179,3623,4,4,f +10179,3626cpr1278,14,1,f +10179,3626cpr1365,14,1,f +10179,3626cpr1571,14,1,f +10179,3626cpr1574,14,1,f +10179,3665,14,4,f +10179,3665,0,4,f +10179,3666,0,7,f +10179,3666,4,2,f +10179,3673,71,1,f +10179,3700,14,4,f +10179,3700,72,2,f +10179,3701,0,2,f +10179,3701,14,2,f +10179,3703,72,4,f +10179,3710,0,4,f +10179,3710,71,6,f +10179,3710,4,1,f +10179,3713,4,4,f +10179,3747b,4,6,f +10179,3747b,0,2,f +10179,3749,19,4,f +10179,3795,0,1,f +10179,3830,0,2,f +10179,3831,0,2,f +10179,3832,0,2,f +10179,3832,2,1,f +10179,3832,71,6,f +10179,3937,4,1,f +10179,3960,0,6,f +10179,3960pr0017b,28,1,f +10179,4006,0,1,f +10179,4032a,4,12,f +10179,41532,0,2,f +10179,4162,4,5,f +10179,4274,1,2,f +10179,4287,4,2,f +10179,4345b,71,2,f +10179,4346,4,2,f +10179,43710,4,4,f +10179,43711,4,4,f +10179,44302a,0,2,f +10179,44568,71,1,f +10179,44676,0,2,f +10179,44728,0,4,f +10179,4477,72,2,f +10179,4477,0,1,f +10179,4522,0,1,f +10179,4595,0,1,f +10179,4697b,71,1,f +10179,49668,179,2,f +10179,50859b,0,1,f +10179,50860,4,1,f +10179,50861,0,2,f +10179,50862,297,2,f +10179,54200,308,2,f +10179,54200,0,4,f +10179,54200,85,2,f +10179,59349,0,3,f +10179,59426,72,6,f +10179,60474,71,6,f +10179,60475b,71,2,f +10179,60476,0,2,f +10179,60477,308,12,f +10179,60477,72,2,f +10179,60477,0,4,f +10179,60478,0,2,f +10179,60479,0,3,f +10179,60581,0,2,f +10179,60752,28,3,f +10179,60849,71,2,f +10179,60897,71,4,f +10179,6091,0,2,f +10179,61183,72,1,f +10179,61252,297,2,f +10179,6134,4,1,f +10179,61409,1,1,f +10179,61409,72,4,f +10179,6141,72,1,f +10179,6141,85,1,f +10179,6141,1,2,f +10179,6141,47,10,f +10179,6141,182,2,f +10179,6141,297,28,f +10179,62113,72,2,f +10179,62462,0,2,f +10179,6266,0,2,f +10179,63864,0,6,f +10179,63965,15,1,f +10179,63965,70,3,f +10179,64451,72,2,f +10179,64712,0,6,f +10179,6541,4,5,f +10179,6541,72,8,f +10179,6558,1,12,f +10179,6636,0,2,f +10179,73983,4,2,f +10179,76766,0,1,f +10179,85984,0,3,f +10179,85984,4,8,f +10179,85984pr0002,72,2,f +10179,87087,71,4,f +10179,87087,4,4,f +10179,87747,15,1,f +10179,88290,308,1,f +10179,92690,70,1,f +10179,92947,70,2,f +10179,93059,297,6,f +10179,93273,72,2,f +10179,93274,72,2,f +10179,95344,297,1,f +10179,95347,0,1,f +10179,96874,25,1,t +10179,970c00pr0771,0,1,f +10179,970c00pr0772,0,1,f +10179,970c00pr0776,4,1,f +10179,970c00pr0802,85,1,f +10179,973pr2853c01,4,1,f +10179,973pr2859c01,0,1,f +10179,973pr2860c01,0,1,f +10179,973pr2862c01,15,1,f +10179,973pr2863c01,85,1,f +10179,973pr2902c01,14,1,f +10179,98128,0,1,f +10179,98129,4,1,f +10179,98132,148,1,f +10179,98133pr0014,4,1,f +10179,98137,297,2,f +10179,98138,179,1,f +10179,98139,297,6,f +10179,98313,297,2,f +10179,98341,297,6,f +10179,98560,72,2,f +10179,99021,72,2,f +10179,99778pr0006b,15,1,f +10179,99778pr0007,85,1,f +10179,99780,0,5,f +10179,99781,71,1,f +10179,99781,0,1,f +10179,99818pr0002,15,1,f +10182,15208,15,2,f +10182,15395,27,1,f +10182,15395,15,1,f +10182,15573,70,2,f +10182,15573,19,4,f +10182,15573,320,2,f +10182,2343,47,2,f +10182,2423,320,3,f +10182,2496,0,2,f +10182,2655,71,2,f +10182,3003,15,1,f +10182,3004,320,2,f +10182,3004,15,3,f +10182,3005,320,5,f +10182,3005,182,1,f +10182,3009,15,7,f +10182,3010,320,4,f +10182,30136,308,4,f +10182,3020,28,3,f +10182,3020,70,2,f +10182,3021,70,4,f +10182,3023,0,1,f +10182,3023,15,1,f +10182,3024,70,1,t +10182,3024,70,2,f +10182,3024,28,2,f +10182,3024,28,1,t +10182,3034,15,1,f +10182,3035,71,2,f +10182,30414,19,2,f +10182,3062b,0,4,f +10182,3062b,2,1,f +10182,3062b,47,2,f +10182,3062b,70,1,f +10182,3069b,71,1,f +10182,3069b,320,1,f +10182,32028,28,2,f +10182,32028,71,2,f +10182,33048,484,1,f +10182,33051,4,1,f +10182,33057,484,2,f +10182,33183,10,1,f +10182,33183,10,1,t +10182,33291,10,1,t +10182,33291,10,2,f +10182,3460,72,2,f +10182,3622,15,2,f +10182,3623,15,2,f +10182,3626b,25,1,f +10182,3626cpr1087,14,1,f +10182,3626cpr1666,14,1,f +10182,3666,72,2,f +10182,3710,0,1,f +10182,3710,15,2,f +10182,3710,320,4,f +10182,3794b,71,1,f +10182,3837,0,1,f +10182,48336,0,1,f +10182,59900,33,1,f +10182,60594,19,1,f +10182,60607,297,2,f +10182,60897,71,4,f +10182,6141,25,2,f +10182,6141,33,1,f +10182,6141,4,2,f +10182,6141,14,2,f +10182,6141,33,1,t +10182,6141,25,1,t +10182,6141,4,1,t +10182,6141,14,1,t +10182,62810,71,1,f +10182,63864,15,2,f +10182,64644,308,4,f +10182,87079,15,2,f +10182,87087,15,3,f +10182,87580,71,2,f +10182,93217,72,1,f +10182,93568pat0001,84,1,f +10182,95228,34,1,f +10182,95345,70,1,f +10182,970c00,4,1,f +10182,970c00,72,1,f +10182,973pr1617c01,2,1,f +10182,973pr1633c01,4,1,f +10182,98138,179,1,t +10182,98138,179,5,f +10182,98283,84,4,f +10182,99781,15,2,f +10183,2711,0,1,f +10183,2712,7,1,f +10183,2713,4,2,f +10183,2714a,14,2,f +10183,2714a,7,2,f +10183,2717,7,1,f +10183,3002,4,1,f +10183,3003,15,2,f +10183,3020,14,1,f +10183,3020,15,3,f +10183,3021,14,2,f +10183,3022,15,2,f +10183,3022,14,1,f +10183,3023,15,6,f +10183,3024,7,1,f +10183,3034,14,2,f +10183,3039,15,2,f +10183,3040b,15,2,f +10183,3040b,4,2,f +10183,3062b,36,1,f +10183,3069b,14,3,f +10183,3070b,14,2,f +10183,3460,0,3,f +10183,3622,15,1,f +10183,3623,0,5,f +10183,3623,15,4,f +10183,3650a,7,1,f +10183,3651,7,9,f +10183,3660,4,1,f +10183,3660,15,2,f +10183,3665,15,6,f +10183,3665,4,2,f +10183,3666,0,3,f +10183,3666,15,4,f +10183,3673,7,7,f +10183,3700,15,9,f +10183,3702,1,4,f +10183,3703,15,1,f +10183,3704,0,10,f +10183,3705,0,9,f +10183,3706,0,2,f +10183,3707,0,2,f +10183,3709,15,3,f +10183,3710,15,4,f +10183,3710,0,3,f +10183,3713,7,15,f +10183,3736,7,1,f +10183,3737,0,3,f +10183,3747b,14,2,f +10183,3894,15,4,f +10183,3895,14,4,f +10183,3958,15,1,f +10183,3960,15,1,f +10183,4019,7,2,f +10183,4085b,7,2,f +10183,4143,7,2,f +10183,4265a,7,9,f +10183,4273b,7,24,f +10183,4274,7,6,f +10183,4275b,14,2,f +10183,4276b,14,2,f +10183,4286,15,4,f +10183,4287,15,2,f +10183,4459,0,10,f +10183,4477,0,3,f +10183,9244,7,1,f +10183,tech011,9999,1,f +10184,2432,14,2,f +10184,2540,4,1,f +10184,30031,72,1,f +10184,30228,72,1,f +10184,3023,0,1,f +10184,3024,36,2,f +10184,3626cpr0920,14,1,f +10184,3710,14,1,f +10184,3794b,72,2,f +10184,3795,72,1,f +10184,3795,14,1,f +10184,4085c,4,2,f +10184,44674,14,1,f +10184,4589,15,2,f +10184,4600,0,2,f +10184,6014b,14,4,f +10184,60212,14,1,f +10184,6141,182,3,f +10184,6141,182,1,t +10184,6187,0,1,f +10184,64728,4,1,f +10184,87697,0,4,f +10184,92280,0,1,f +10184,970c00,28,1,f +10184,973pr2037c01,272,1,f +10184,98138,47,1,f +10184,98138,47,1,t +10184,98289,179,1,f +10187,11211,71,1,f +10187,11437,70,1,f +10187,11833,191,1,f +10187,11833,47,1,f +10187,13965,70,1,f +10187,14769,323,1,f +10187,15712,14,1,f +10187,19641,15,1,f +10187,2343,47,1,f +10187,2412b,0,1,f +10187,2450,19,1,f +10187,298c02,71,1,f +10187,298c02,71,1,t +10187,3005,70,1,f +10187,3020,15,1,f +10187,3023,2,2,f +10187,3031,19,1,f +10187,3036,322,1,f +10187,30367c,15,1,f +10187,3040b,70,1,f +10187,3068b,29,1,f +10187,3068b,322,3,f +10187,3069b,191,2,f +10187,33121,191,1,f +10187,33183,70,1,t +10187,33183,70,2,f +10187,33291,5,1,t +10187,33291,5,2,f +10187,3623,70,1,f +10187,3957b,15,1,f +10187,3960,191,1,f +10187,4460b,70,1,f +10187,4733,15,1,f +10187,59900,25,1,f +10187,60474,14,1,f +10187,60481,308,1,f +10187,6141,0,1,t +10187,6141,41,1,t +10187,6141,0,2,f +10187,6141,41,3,f +10187,6148,2,2,f +10187,89522,25,1,t +10187,89522,25,1,f +10187,92946,14,1,f +10188,3020,6,1,f +10188,3022,0,1,f +10188,3022,2,2,f +10188,3023,0,1,t +10188,3023,0,2,f +10188,3039,2,2,f +10188,3298,2,2,f +10188,3660,6,2,f +10188,4589,46,1,t +10188,4589,46,1,f +10190,30043,71,2,f +10190,3626bpr0452,14,1,f +10190,3665,15,2,f +10190,41747,1,1,f +10190,41748,1,1,f +10190,4286,15,2,f +10190,4519,71,2,f +10190,4589,34,2,f +10190,4589,34,1,t +10190,4623,4,2,f +10190,4868b,15,2,f +10190,52107,0,1,f +10190,53982,4,1,f +10190,970x026,15,1,f +10190,973pr1311c01,15,1,f +10191,2339,0,8,f +10191,2343,14,2,f +10191,2345,0,4,f +10191,2357,7,2,f +10191,2357,0,2,f +10191,2417,2,8,f +10191,2420,7,3,f +10191,2423,2,3,f +10191,2431,7,1,f +10191,2435,2,2,f +10191,3001,7,2,f +10191,3002,0,2,f +10191,3002,7,4,f +10191,3003,7,2,f +10191,3004,7,4,f +10191,3004,0,10,f +10191,3004,6,1,f +10191,3005,7,16,f +10191,3005,0,3,f +10191,3008,7,4,f +10191,3009,0,2,f +10191,3009,7,1,f +10191,3010,0,2,f +10191,3010,7,6,f +10191,3021,7,1,f +10191,3022,7,1,f +10191,3023,7,2,f +10191,3023,6,1,f +10191,3024,7,2,f +10191,3034,7,2,f +10191,3035,7,2,f +10191,3036,7,1,f +10191,3039,0,2,f +10191,3040b,0,5,f +10191,3040b,7,1,f +10191,3062b,7,2,f +10191,3622,7,6,f +10191,3622,0,4,f +10191,3623,0,4,f +10191,3623,7,2,f +10191,3626apr0001,14,6,f +10191,3659,0,4,f +10191,3660,0,1,f +10191,3665,0,2,f +10191,3665,7,1,f +10191,3666,0,1,f +10191,3700,7,1,f +10191,3710,0,5,f +10191,3795,7,2,f +10191,3830,7,2,f +10191,3831,7,2,f +10191,3832,7,1,f +10191,3847a,8,1,f +10191,3848,6,1,f +10191,3865,2,1,f +10191,3867,2,1,f +10191,3957a,0,1,f +10191,4070,7,2,f +10191,4085b,7,1,f +10191,4085b,0,1,f +10191,4162,7,2,f +10191,4213,7,2,f +10191,4286,0,3,f +10191,4315,7,2,f +10191,4444p02,7,2,f +10191,4460a,7,2,f +10191,4490,7,3,f +10191,4491a,4,1,f +10191,4493c01pb03,6,1,f +10191,4495a,4,1,f +10191,4497,6,1,f +10191,4498,6,5,f +10191,4499,6,5,f +10191,4506,6,3,f +10191,4506,2,3,f +10191,4523,6,1,f +10191,4623,0,1,f +10191,4730,0,1,f +10191,4738b,6,1,f +10191,4739b,6,1,f +10191,87692,4,2,t +10191,87692,0,1,t +10191,87692,14,1,t +10191,87692,1,2,t +10191,87693,0,1,f +10191,87693,1,2,f +10191,87693,14,1,f +10191,87693,4,2,f +10191,87694,0,1,t +10191,87694,1,2,t +10191,87694,14,1,t +10191,87694,4,2,t +10191,970c00,2,6,f +10191,973p46c01,2,1,f +10191,973p48c01,2,2,f +10191,973p49c01,2,2,f +10191,973p50c01,2,1,f +10192,11211,19,1,f +10192,11253,25,2,f +10192,11253,25,1,t +10192,11816pr0005,78,1,f +10192,13548,73,2,f +10192,14769pr0001,15,1,f +10192,15533,84,1,f +10192,18853,29,1,t +10192,18853,191,1,t +10192,18853,29,1,f +10192,18853,191,1,f +10192,18854,52,1,f +10192,18854,45,1,f +10192,18854,52,1,t +10192,18854,45,1,t +10192,20310,19,2,f +10192,20482,47,4,f +10192,20482,47,1,t +10192,2431,484,3,f +10192,2460,15,1,f +10192,3001,15,1,f +10192,3003,19,1,f +10192,3004,19,1,f +10192,30165,4,1,f +10192,3021,15,2,f +10192,3023,71,1,f +10192,30237b,19,2,f +10192,3032,27,1,f +10192,3039,73,4,f +10192,3062b,19,6,f +10192,3068bpr0255,15,1,f +10192,3069bpr0055,15,1,f +10192,3069bpr0100,2,1,f +10192,3069bpr0144,15,1,f +10192,33291,4,1,f +10192,33291,10,1,t +10192,33291,4,1,t +10192,33291,26,1,t +10192,33291,10,2,f +10192,33291,26,4,f +10192,3460,15,1,f +10192,3623,19,2,f +10192,3660,19,4,f +10192,3666,191,1,f +10192,3666,71,1,f +10192,3673,71,1,t +10192,3673,71,1,f +10192,3676,19,2,f +10192,3710,26,1,f +10192,3795,71,1,f +10192,3795,27,1,f +10192,3795,191,1,f +10192,3900,15,1,f +10192,4032a,19,1,f +10192,4345b,4,1,f +10192,4346,4,1,f +10192,4733,15,1,f +10192,48336,71,3,f +10192,54200,73,4,f +10192,54200,73,1,t +10192,59900,33,1,f +10192,59900,25,1,f +10192,59900,34,1,f +10192,60470b,15,1,f +10192,6141,15,2,f +10192,6141,179,1,t +10192,6141,179,2,f +10192,6141,15,1,t +10192,62462,15,1,f +10192,87552,47,2,f +10192,92258,0,1,f +10192,92456pr0036c01,78,1,f +10192,92820pr0006c01a,85,1,f +10192,98138pr0013,15,1,f +10192,98138pr0013,15,1,t +10192,98283,84,2,f +10195,3004,7,2,f +10195,3004,14,2,f +10195,3004,4,15,f +10195,3005,4,8,f +10195,3008,4,1,f +10195,3010,4,2,f +10195,3010p03,15,1,f +10195,3020,14,1,f +10195,3021,15,2,f +10195,3023,7,1,f +10195,3024,4,6,f +10195,3024,36,2,f +10195,3024,7,2,f +10195,3028,0,3,f +10195,3031,0,2,f +10195,3034,7,1,f +10195,3040b,4,2,f +10195,3040p02,0,1,f +10195,3062b,7,1,f +10195,3069b,0,1,f +10195,3460,4,1,f +10195,3623,4,2,f +10195,3626apr0001,14,1,f +10195,3641,0,4,f +10195,3665,4,2,f +10195,3666,4,2,f +10195,3666,15,2,f +10195,3679,7,1,f +10195,3680,14,1,f +10195,3710,4,1,f +10195,3788,15,1,f +10195,3795,0,1,f +10195,3823,41,1,f +10195,3829c01,0,1,f +10195,3832,4,4,f +10195,3867,7,1,f +10195,3901,6,1,f +10195,3939,47,2,f +10195,3941,15,1,f +10195,3941,14,1,f +10195,4006,0,1,f +10195,4032a,4,1,f +10195,4079,14,1,f +10195,4083,0,1,f +10195,4085b,7,2,f +10195,4085b,4,1,f +10195,4211,15,1,f +10195,4216,4,12,f +10195,4217,4,2,f +10195,4218,47,4,f +10195,4218,14,4,f +10195,4219,14,1,f +10195,4347,15,2,f +10195,4522,0,1,f +10195,4599a,7,2,f +10195,4600,7,2,f +10195,4624,7,4,f +10195,4629c01,1,1,f +10195,4873,7,1,f +10195,6369stk01,9999,1,t +10195,73194c01,15,1,f +10195,970c00,1,1,f +10195,973pb0201c01,15,1,f +10199,11090,15,1,f +10199,13564,15,3,f +10199,14704,71,5,f +10199,15208,15,2,f +10199,15456,0,2,f +10199,15535,25,2,f +10199,15573,25,2,f +10199,15573,0,3,f +10199,22890,72,2,f +10199,2412b,0,2,f +10199,2420,72,2,f +10199,2540,72,1,f +10199,3022,0,2,f +10199,3022,25,3,f +10199,3023,25,4,f +10199,3070b,72,1,f +10199,3660,0,2,f +10199,3679,71,1,f +10199,3680,0,1,f +10199,3710,0,4,f +10199,4081b,0,2,f +10199,44375b,0,1,f +10199,47457,72,2,f +10199,48336,4,1,f +10199,4871,0,1,f +10199,63868,0,2,f +10199,63965,0,1,f +10199,6628,0,1,f +10199,87087,0,2,f +10199,92280,15,2,f +10199,98138pr0008,15,2,f +10199,99780,0,1,f +10199,99781,71,1,f +10200,10314,15,1,f +10200,10928,72,1,f +10200,11090,72,2,f +10200,11477pr0001,15,2,f +10200,15068pr0005,15,2,f +10200,15068pr0010,15,14,f +10200,15573,70,19,f +10200,15573,15,1,f +10200,15712,71,2,f +10200,15712,0,9,f +10200,15712,72,16,f +10200,23186,19,1,f +10200,2357,15,2,f +10200,2412b,15,1,f +10200,2412b,80,2,f +10200,2412b,71,5,f +10200,2412b,0,3,f +10200,2420,1,4,f +10200,24201,0,4,f +10200,24299,15,4,f +10200,24307,15,4,f +10200,2431,15,3,f +10200,25893,47,2,f +10200,26048,226,1,f +10200,2639,15,2,f +10200,2654,71,2,f +10200,2654,0,3,f +10200,2654pr0011,72,4,f +10200,27066,0,1,f +10200,27186,308,1,f +10200,2780,0,2,f +10200,27957,40,1,f +10200,27958,4,1,f +10200,28803,148,1,f +10200,298c02,0,1,f +10200,298c02,71,3,f +10200,3001,0,1,f +10200,3003,70,2,f +10200,3004,15,3,f +10200,3005,4,2,f +10200,3020,0,1,f +10200,3021,71,4,f +10200,3022,15,6,f +10200,3022,4,2,f +10200,3023,4,19,f +10200,3023,15,7,f +10200,3023,71,9,f +10200,3023,72,1,f +10200,30237b,4,2,f +10200,3024,0,1,f +10200,3024,36,2,f +10200,3024,15,6,f +10200,3031,72,2,f +10200,3032,4,1,f +10200,3035,0,1,f +10200,30350a,4,1,f +10200,3036,71,1,f +10200,30374,14,1,f +10200,30414,14,1,f +10200,3062b,41,1,f +10200,3062b,71,3,f +10200,3065,40,1,f +10200,3069b,36,4,f +10200,3069b,182,2,f +10200,3069b,47,2,f +10200,3069b,0,1,f +10200,3069bpr0138,191,2,f +10200,3070b,72,2,f +10200,3070b,47,1,f +10200,3070b,71,6,f +10200,3070b,14,1,f +10200,3176,71,1,f +10200,32123b,14,4,f +10200,32124,0,2,f +10200,32324,71,1,f +10200,3245b,4,4,f +10200,32531,0,1,f +10200,3460,15,4,f +10200,3460,0,4,f +10200,3623,70,4,f +10200,3626cpr2013,70,1,f +10200,3626cpr2014,78,1,f +10200,3626cpr2015,78,1,f +10200,3626cpr2021,78,1,f +10200,3626cpr2022,40,1,f +10200,3659,308,1,f +10200,3665,71,2,f +10200,3666,70,2,f +10200,3666,71,3,f +10200,3666,4,2,f +10200,3700,4,1,f +10200,3701,4,1,f +10200,3710,71,1,f +10200,3710,15,4,f +10200,3710,4,1,f +10200,3710,0,7,f +10200,3795,4,3,f +10200,3795,72,1,f +10200,3829c01,0,1,f +10200,3937,15,2,f +10200,3937,4,6,f +10200,3938,15,2,f +10200,3941,15,1,f +10200,3941,46,1,f +10200,4032a,71,2,f +10200,4032a,0,2,f +10200,4032a,15,1,f +10200,4070,47,4,f +10200,4070,15,4,f +10200,4070,70,2,f +10200,4081b,0,5,f +10200,4081b,4,1,f +10200,41769,15,1,f +10200,41770,15,1,f +10200,42446,0,4,f +10200,4274,1,2,f +10200,44567a,71,2,f +10200,4477,71,4,f +10200,4595,71,1,f +10200,4599b,0,1,f +10200,4740,15,1,f +10200,47457,72,2,f +10200,48336,0,4,f +10200,48729b,57,1,f +10200,50859b,0,1,f +10200,50861,0,2,f +10200,50862,71,2,f +10200,50950,71,2,f +10200,52031,4,1,f +10200,52107,0,1,f +10200,55982,15,4,f +10200,58176,179,1,f +10200,59443,72,2,f +10200,6019,1,1,f +10200,60470a,0,3,f +10200,60475b,15,2,f +10200,60475b,71,2,f +10200,60478,15,2,f +10200,60481,4,2,f +10200,60621,71,1,f +10200,60849,0,1,f +10200,60849,71,2,f +10200,6091,71,2,f +10200,61252,72,2,f +10200,61252,15,2,f +10200,6134,71,6,f +10200,61409,80,4,f +10200,6141,14,4,f +10200,6141,47,1,f +10200,6141,71,2,f +10200,6141,41,1,f +10200,6182,71,1,f +10200,62113,72,1,f +10200,6266,4,2,f +10200,63864,4,2,f +10200,63864,15,2,f +10200,63868,72,4,f +10200,63965,0,2,f +10200,64567,0,6,f +10200,6589,4,4,f +10200,6636,15,2,f +10200,6636,14,1,f +10200,73983,4,1,f +10200,76766,71,2,f +10200,85861,71,4,f +10200,85861,0,9,f +10200,85975,15,1,f +10200,85983,15,1,f +10200,85984,15,10,f +10200,85984,70,6,f +10200,85984,4,2,f +10200,85984,71,2,f +10200,87079,15,1,f +10200,87079,4,2,f +10200,87083,72,4,f +10200,87580,0,1,f +10200,87990,70,1,f +10200,87994,0,1,f +10200,88704,0,5,f +10200,89201,0,4,f +10200,92280,0,6,f +10200,92583,47,1,f +10200,92589,71,1,f +10200,92593,0,2,f +10200,93060,40,1,f +10200,93061,4,2,f +10200,93274,0,1,f +10200,96874,25,1,t +10200,970c00,28,1,f +10200,970c00pr1105,28,1,f +10200,970c00pr1106,28,1,f +10200,970c00pr1120,28,1,f +10200,970c00pr1121,28,1,f +10200,973pr3514c01,28,1,f +10200,973pr3515c01,28,1,f +10200,973pr3516c01,28,1,f +10200,973pr3532c01,28,1,f +10200,98100,71,1,f +10200,98138,36,2,f +10200,98138,71,4,f +10200,98138,0,2,f +10200,98368,272,1,f +10200,99206,71,2,f +10200,99206,0,2,f +10200,99207,0,1,f +10200,99207,71,8,f +10200,99563,0,8,f +10200,99780,71,6,f +10200,99781,15,6,f +10201,2343,297,1,f +10201,2450,4,2,f +10201,2555,288,1,f +10201,2555,4,1,f +10201,30031,0,1,f +10201,30088,179,1,f +10201,30115,4,1,f +10201,30153,47,1,f +10201,30153,36,1,f +10201,3020,28,1,f +10201,3023,4,1,f +10201,30377,0,1,t +10201,30377,0,2,f +10201,3040b,71,2,f +10201,3070b,4,1,f +10201,3070b,4,1,t +10201,32013,4,2,f +10201,3623,14,2,f +10201,3626bpr0643,14,1,f +10201,3665,4,1,f +10201,3749,19,2,f +10201,3794b,72,1,f +10201,3937,14,2,f +10201,3938,0,2,f +10201,43093,1,2,f +10201,47905,71,2,f +10201,54200,4,1,f +10201,54200,4,1,t +10201,55236,288,1,f +10201,59275,14,2,t +10201,59275,14,2,f +10201,6041,179,2,f +10201,60478,4,2,f +10201,6091,4,1,f +10201,6141,36,1,f +10201,6141,34,1,t +10201,6141,34,1,f +10201,6141,36,1,t +10201,61678,4,2,f +10201,6541,72,2,f +10201,7976stk01,9999,1,t +10201,87754,71,1,f +10201,89159,46,1,f +10201,970c00pr0198,72,1,f +10201,973pr1734c01,72,1,f +10202,10247,72,5,f +10202,10928,72,1,f +10202,11211,71,9,f +10202,11289,41,1,f +10202,11477,15,4,f +10202,11477,272,2,f +10202,11477,14,4,f +10202,11477,72,4,f +10202,14137,0,2,f +10202,14716,71,2,f +10202,15068,72,1,f +10202,15501,484,1,f +10202,15573,0,2,f +10202,15712,0,3,f +10202,18904,288,1,f +10202,18905pr0001,288,1,f +10202,18906,288,1,f +10202,19220,0,1,f +10202,2412b,71,2,f +10202,2412b,0,1,f +10202,2417,288,4,f +10202,2423,2,3,f +10202,2423,326,6,f +10202,2431,272,2,f +10202,2431,70,6,f +10202,2431,33,1,f +10202,2432,70,1,f +10202,2436,14,2,f +10202,2445,15,1,f +10202,2445,0,1,f +10202,2446,15,1,f +10202,2447,40,1,f +10202,2453b,71,2,f +10202,2456,70,5,f +10202,2460,72,1,f +10202,2465,71,1,f +10202,2479,0,1,f +10202,2495,4,1,f +10202,2496,0,1,f +10202,2569,0,1,f +10202,298c02,71,2,f +10202,298c02,14,2,f +10202,30000,72,1,f +10202,3002,4,1,f +10202,3003,272,2,f +10202,3004,19,2,f +10202,3005,4,2,f +10202,3008,70,7,f +10202,30086,14,1,f +10202,3009,15,1,f +10202,30093,288,4,f +10202,30115,4,1,f +10202,30137,70,5,f +10202,30153,36,1,f +10202,30157,72,4,f +10202,3020,28,1,f +10202,3020,272,6,f +10202,3020,70,1,f +10202,3020,0,1,f +10202,3021,71,8,f +10202,3021,72,3,f +10202,3022,0,1,f +10202,3022,72,2,f +10202,3023,33,6,f +10202,3023,272,2,f +10202,3023,36,2,f +10202,3023,2,3,f +10202,3023,72,1,f +10202,3023,14,4,f +10202,30236,0,1,f +10202,3024,36,1,f +10202,3024,34,1,f +10202,3024,0,2,f +10202,3031,72,1,f +10202,3032,2,1,f +10202,3032,15,1,f +10202,30332,0,2,f +10202,3037,72,2,f +10202,30383,72,4,f +10202,3040b,288,4,f +10202,3040b,72,2,f +10202,30414,71,10,f +10202,3045,272,2,f +10202,30553,72,4,f +10202,3062b,71,4,f +10202,3062b,15,4,f +10202,3068b,14,2,f +10202,3068bpr0219b,19,1,f +10202,3069b,320,3,f +10202,3069b,272,2,f +10202,3069b,28,4,f +10202,3069b,15,2,f +10202,3069b,72,1,f +10202,32028,71,4,f +10202,32524,72,1,f +10202,33057,484,1,f +10202,3460,15,2,f +10202,3626cpr0914,14,1,f +10202,3626cpr1091,14,1,f +10202,3626cpr1623,14,1,f +10202,3626cpr1628,14,1,f +10202,3626cpr1663,14,1,f +10202,3660,15,6,f +10202,3666,15,1,f +10202,3666,28,6,f +10202,3666,72,1,f +10202,3666,272,2,f +10202,3673,71,3,f +10202,3700,70,2,f +10202,3702,0,1,f +10202,3710,0,1,f +10202,3737,0,1,f +10202,3747b,72,2,f +10202,3747b,15,1,f +10202,3795,72,3,f +10202,3795,0,1,f +10202,3795,14,2,f +10202,3821,15,1,f +10202,3822,15,1,f +10202,3829c01,14,1,f +10202,3899,14,2,f +10202,3900,71,1,f +10202,3941,70,23,f +10202,4032a,0,1,f +10202,4079,4,2,f +10202,4079,70,2,f +10202,4081b,72,1,f +10202,41334,72,1,f +10202,41334,0,1,f +10202,4162,14,2,f +10202,4162,70,2,f +10202,4175,72,1,f +10202,41764,14,2,f +10202,41765,14,2,f +10202,41770,15,1,f +10202,4274,1,2,f +10202,4282,72,1,f +10202,4345b,71,1,f +10202,4346,71,1,f +10202,43722,14,2,f +10202,43723,14,2,f +10202,44301a,0,2,f +10202,44728,15,2,f +10202,4515,72,2,f +10202,4533,15,2,f +10202,4740,0,1,f +10202,47457,1,1,f +10202,48336,0,1,f +10202,48729b,71,1,f +10202,50943,72,1,f +10202,52031,15,1,f +10202,52107,0,1,f +10202,54200,47,2,f +10202,54200,33,4,f +10202,55981,71,4,f +10202,56891,0,4,f +10202,59900,72,2,f +10202,60219,72,1,f +10202,60478,71,1,f +10202,60481,272,2,f +10202,60594,0,3,f +10202,60596,0,1,f +10202,60601,41,4,f +10202,60608,14,6,f +10202,60623,15,1,f +10202,60897,72,1,f +10202,61072,179,2,f +10202,6111,0,2,f +10202,61345,272,2,f +10202,6141,46,1,f +10202,6141,15,1,f +10202,6141,0,1,f +10202,61482,71,1,f +10202,6232,14,2,f +10202,6232,71,2,f +10202,6239,15,1,f +10202,62812,4,1,f +10202,63864,28,2,f +10202,63864,288,2,f +10202,63864,320,2,f +10202,63868,71,2,f +10202,64449,72,1,f +10202,72454,72,2,f +10202,75c18,0,2,f +10202,85984,15,1,f +10202,85984,14,6,f +10202,87580,15,2,f +10202,87580,0,1,f +10202,87580,28,1,f +10202,87991,484,1,f +10202,88072,0,3,f +10202,88930,272,1,f +10202,92410,15,2,f +10202,92438,28,2,f +10202,92583,41,1,f +10202,92590,28,1,f +10202,92593,72,3,f +10202,92842,0,1,f +10202,96874,25,1,t +10202,970c00,272,1,f +10202,970c00,379,2,f +10202,970c00,28,1,f +10202,970c00pr0293,272,1,f +10202,973pr1947bc01,272,1,f +10202,973pr2880c01,15,1,f +10202,973pr2931c01,19,1,f +10202,973pr2935c01,15,1,f +10202,973pr2942c01,15,1,f +10202,98138,47,1,f +10202,98138,33,1,f +10202,98138,46,4,f +10202,98138,36,2,f +10202,98138,182,2,f +10202,98279,28,1,f +10202,98282,15,4,f +10202,98283,71,1,f +10202,98284,70,3,f +10202,99780,15,2,f +10202,99781,71,1,f +10203,3034,15,25,f +10206,2431px23,15,2,f +10206,3001,25,2,f +10206,3002,7,1,f +10206,3002,15,1,f +10206,3003,15,1,f +10206,30150,25,1,f +10206,3039,7,1,f +10206,3039pr0005,15,1,f +10206,3039px37,15,1,f +10206,3040b,42,2,f +10206,3040p04,7,1,f +10206,3040p58,8,1,f +10206,30640,7,1,f +10206,30647,15,2,f +10206,30663,0,1,f +10206,3068b,15,3,f +10206,3068bp80,15,1,f +10206,3068bpb0023,15,2,f +10206,3957a,15,1,f +10206,3961,15,1,f +10206,42600,15,1,f +10206,42601,15,1,f +10206,42602pb05,15,1,f +10206,42602px02,15,1,f +10206,42603pb02,15,1,f +10206,42604pr02,15,1,f +10206,42604pr03,15,1,f +10206,42605pb03,15,2,f +10206,42608,7,3,f +10206,42609,15,2,f +10206,42610,7,6,f +10206,43121,25,3,f +10206,4349,7,1,f +10206,4495b,15,1,f +10206,4619base01,89,1,f +10206,46667,383,3,f +10206,51011,0,6,f +10206,6239,25,1,f +10206,js019,-1,1,f +10206,js025,-1,1,f +10207,2446,15,1,f +10207,2447,0,1,f +10207,2540,15,1,f +10207,30027a,14,4,f +10207,30028,0,4,f +10207,3022,7,1,f +10207,3062b,7,2,f +10207,3069bpx36,15,1,f +10207,3626bp04,14,1,f +10207,3795,15,1,f +10207,3829c01,15,1,f +10207,6157,0,2,f +10207,6187,14,1,f +10207,970c00,4,1,f +10207,973px36c01,4,1,f +10208,2714a,71,2,f +10208,2736,71,3,f +10208,2780,0,49,f +10208,2780,0,5,t +10208,2905,0,4,f +10208,3062b,36,2,f +10208,32013,72,3,f +10208,32014,72,2,f +10208,32016,71,2,f +10208,32016,0,2,f +10208,32034,71,7,f +10208,32039,0,2,f +10208,32054,0,21,f +10208,32056,0,2,f +10208,32062,4,1,t +10208,32062,4,16,f +10208,32072,0,6,f +10208,32073,71,8,f +10208,32138,0,2,f +10208,32140,27,2,f +10208,32184,4,2,f +10208,32271,0,7,f +10208,32278,27,2,f +10208,32291,72,4,f +10208,32316,72,8,f +10208,32449,27,2,f +10208,32524,27,3,f +10208,32525,0,7,f +10208,32526,0,2,f +10208,32557,4,1,f +10208,3673,71,1,f +10208,3673,71,1,t +10208,3705,0,3,f +10208,3713,71,3,t +10208,3713,71,5,f +10208,3737,0,2,f +10208,3749,19,1,f +10208,40490,72,9,f +10208,41239,72,3,f +10208,41663,135,2,f +10208,41678,71,1,f +10208,41752,72,1,f +10208,41896,71,1,f +10208,42003,0,13,f +10208,43093,1,1,t +10208,43093,1,20,f +10208,44294,71,2,f +10208,44809,71,1,f +10208,4519,71,14,f +10208,45274,135,2,f +10208,45749,72,2,f +10208,4589,36,2,f +10208,47306,72,1,f +10208,47312,72,1,f +10208,47314,135,2,f +10208,47328,72,2,f +10208,53542,25,2,f +10208,53544,27,3,f +10208,53545,135,1,f +10208,53547,25,1,f +10208,53550,0,2,f +10208,53566,25,4,f +10208,54271,135,1,f +10208,54821,135,6,f +10208,55013,72,1,f +10208,55982,71,4,f +10208,57527,135,2,f +10208,57536,42,1,f +10208,57544,135,2,f +10208,57563,135,5,f +10208,57585,71,6,f +10208,57587,0,1,f +10208,59426,72,3,f +10208,59443,0,6,f +10208,59577,135,1,f +10208,60176,0,5,f +10208,60483,72,9,f +10208,60913,25,1,f +10208,60924,135,2,f +10208,60930,135,2,f +10208,60935,135,6,f +10208,61054,72,4,f +10208,61800,135,1,f +10208,61813,143,1,f +10208,62531,288,4,f +10208,6536,27,2,f +10208,6558,1,31,f +10208,6628,0,1,f +10208,85543,15,3,t +10208,85543,15,3,f +10209,2300,10,1,f +10209,3011,4,3,f +10209,3011,0,2,f +10209,3011,27,2,f +10209,3011,25,2,f +10209,3011,10,3,f +10209,3011,15,2,f +10209,3011,1,3,f +10209,3011,14,3,f +10209,3437,14,9,f +10209,3437,1,9,f +10209,3437,15,3,f +10209,3437,41,2,f +10209,3437,27,6,f +10209,3437,10,9,f +10209,3437,4,9,f +10209,3437,25,6,f +10209,3437,0,3,f +10209,40666,4,2,f +10209,4199,14,1,f +10210,2543,4,1,f +10210,3626bpr0001,14,1,f +10210,6132,15,1,f +10210,970x026,4,1,f +10210,973c02,4,1,f +10213,15573,15,1,f +10213,15573,28,2,f +10213,15712,72,4,f +10213,2423,326,3,f +10213,3001,28,10,f +10213,3004,28,5,f +10213,3004,19,1,f +10213,3005,15,2,f +10213,3005,70,7,f +10213,3010,19,1,f +10213,30136,70,8,f +10213,30137,70,4,f +10213,3020,70,1,f +10213,3021,70,1,f +10213,3022,70,1,f +10213,3023,41,17,f +10213,3023,70,3,f +10213,3024,326,1,f +10213,3024,19,6,f +10213,3024,28,1,f +10213,3024,70,2,f +10213,3024,25,3,f +10213,30361pr1001,15,1,f +10213,30362,15,2,f +10213,30367cpr1001,179,1,f +10213,3062b,70,6,f +10213,3069b,70,1,f +10213,3070b,70,2,f +10213,3070b,19,1,f +10213,3070b,4,2,f +10213,33291,191,5,f +10213,33291,10,9,f +10213,33320,72,1,f +10213,3623,70,1,f +10213,3665,70,3,f +10213,3710,28,2,f +10213,3710,70,2,f +10213,3839b,15,4,f +10213,3941,19,3,f +10213,3960,28,1,f +10213,4070,71,1,f +10213,4490,19,1,f +10213,4733,15,1,f +10213,4740,19,1,f +10213,52107,4,1,f +10213,54200,72,2,f +10213,54200,70,21,f +10213,54200,19,2,f +10213,54200,47,1,f +10213,54200,71,1,f +10213,59900,19,1,f +10213,6141,19,1,f +10213,6141,1,1,f +10213,6255,2,2,f +10213,64567,71,4,f +10213,85080,19,4,f +10213,92438,28,1,f +10214,429c02,0,2,f +10215,18822,288,1,f +10215,3626cpr2017,14,1,f +10215,43887,0,1,f +10215,88646,0,1,f +10215,970c00pr1109,15,1,f +10215,973pr3527c01,14,1,f +10216,11371pb01,484,1,f +10216,2302,14,4,f +10216,3011,0,1,f +10216,3437,191,1,f +10216,3437,14,1,f +10216,3437,0,1,f +10216,3437,4,4,f +10216,3437,25,2,f +10216,3437,484,1,f +10216,3437,1,2,f +10216,3437,27,2,f +10216,40666,10,1,f +10216,58086,70,1,f +10216,61649,4,1,f +10216,6497,15,1,f +10216,6510,14,1,f +10216,6510,2,1,f +10216,6510,10,1,f +10216,6510,73,1,f +10216,90265,15,1,f +10216,93281,4,1,f +10216,93607,10,1,f +10216,98218,484,1,f +10216,98223,70,1,f +10216,98223pr0002,27,1,f +10216,98224,27,1,f +10216,98233,4,1,f +10216,horse03pb02,15,1,f +10218,2431,4,1,f +10218,3020,0,1,f +10218,30236,71,1,f +10218,30256,15,1,f +10218,3039,71,1,f +10218,3070b,15,1,t +10218,3070b,4,3,f +10218,3070b,15,4,f +10218,3070b,4,1,t +10218,3666,15,2,f +10218,4070,0,2,f +10218,4085c,4,1,f +10218,4735,71,1,f +10218,49668,0,2,f +10218,6141,36,1,t +10218,6141,36,1,f +10218,6141,34,1,f +10218,6141,34,1,t +10219,3001,2,50,f +10220,2431,15,2,f +10220,2540,72,2,f +10220,3665,15,1,f +10220,3710,272,1,f +10220,4286,15,1,f +10220,52107,0,1,f +10220,54200,40,1,t +10220,54200,40,1,f +10220,63868,15,2,f +10221,2431,15,6,f +10221,2431,19,2,f +10221,2445,15,4,f +10221,3004,19,1,f +10221,3005,15,46,f +10221,3009,19,1,f +10221,3020,0,2,f +10221,3021,15,6,f +10221,3022,15,3,f +10221,3023,15,6,f +10221,3023,47,2,f +10221,3023,71,1,f +10221,3023,19,3,f +10221,3024,47,6,f +10221,3024,15,12,f +10221,3033,288,12,f +10221,3034,0,12,f +10221,3034,15,3,f +10221,3035,15,8,f +10221,3036,15,5,f +10221,3068b,15,52,f +10221,3069b,19,8,f +10221,3069b,70,3,f +10221,3070b,70,1,t +10221,3070b,70,1,f +10221,3070b,15,238,f +10221,3070b,15,4,t +10221,3070b,19,1,t +10221,3070b,19,7,f +10221,3460,15,4,f +10221,3622,19,5,f +10221,3623,15,2,f +10221,3623,19,6,f +10221,3666,15,4,f +10221,3666,19,3,f +10221,3710,19,2,f +10221,3794b,15,5,f +10221,3795,0,4,f +10221,3795,19,1,f +10221,4070,15,2,f +10221,4162,0,10,f +10221,4162p02,15,1,f +10221,4282,0,5,f +10221,4477,15,5,f +10221,4865a,71,1,f +10221,60581,47,12,f +10221,6141,47,1,t +10221,6141,47,5,f +10221,6231,19,5,f +10221,6636,0,6,f +10221,6636,19,1,f +10221,6636,71,1,f +10221,87087,72,4,f +10221,87580,15,2,f +10222,4266,7,2,f +10222,4267,0,2,f +10226,bslot03,15,1,f +10226,bslot03,2,1,f +10226,bslot03,14,1,f +10226,bslot03,1,1,f +10226,bslot03,4,1,f +10228,12825,15,2,f +10228,2419,2,2,f +10228,30173b,0,4,f +10228,30177,1,1,f +10228,3023,15,1,f +10228,3023,72,1,f +10228,32064b,71,3,f +10228,3626bpr0746,14,1,f +10228,3705,0,1,f +10228,3710,15,1,f +10228,3956,0,1,f +10228,4032a,15,1,f +10228,48183,15,1,f +10228,53451,15,1,t +10228,53451,15,2,f +10228,60470a,0,1,f +10228,60478,72,2,f +10228,6141,36,2,f +10228,6141,36,1,t +10228,63965,70,1,f +10228,64225,15,1,f +10228,90202,0,1,f +10228,970c00pr0192,1,1,f +10228,973pr1717c01,1,1,f +10230,122c01,7,5,f +10230,3020,7,3,f +10230,3022,7,1,f +10230,3023,7,3,f +10230,3024,7,2,f +10230,3024,36,1,f +10230,3034,7,1,f +10230,3039p23,7,1,f +10230,3062a,34,1,f +10230,3324c01,7,1,f +10230,3479,7,2,f +10230,3626apr0001,14,2,f +10230,3641,0,10,f +10230,3679,7,1,f +10230,3680,7,1,f +10230,3730,7,1,f +10230,3731,7,1,f +10230,3787,7,5,f +10230,3794a,7,2,f +10230,3794a,4,2,f +10230,3795,7,3,f +10230,3829c01,7,1,f +10230,3838,15,1,f +10230,3838,7,1,f +10230,3838,4,1,f +10230,3842a,4,1,f +10230,3842a,15,1,f +10230,3937,7,1,f +10230,3938,7,1,f +10230,3941,0,2,f +10230,3941,15,6,f +10230,3942a,0,1,f +10230,3942a,15,1,f +10230,3956,7,2,f +10230,3957a,7,1,f +10230,3960,7,1,f +10230,3962a,0,1,f +10230,3963,7,1,f +10230,970c00,15,1,f +10230,970c00,4,1,f +10230,973p90c02,4,1,f +10230,973p90c05,15,1,f +10231,265ac01,4,2,f +10231,3065,34,2,f +10231,3065,36,2,f +10231,3065,46,2,f +10231,3066p01,47,1,f +10231,3067p14,47,1,f +10231,3067pt1,47,1,f +10231,3134,15,2,f +10231,996ac01,1,8,f +10231,x466,15,2,f +10232,3626bpr0511,378,1,f +10232,60751,132,1,f +10232,60752,134,1,f +10232,970x199,70,1,f +10232,973pr1349c01,70,1,f +10234,3004,1,1,f +10234,3006,1,1,f +10234,3010,14,2,f +10234,3034,4,1,f +10234,3039,1,2,f +10234,3039,47,1,f +10234,3298,4,2,f +10234,3747b,1,1,f +10234,3795,4,2,f +10234,4730,1,1,f +10234,4745,14,1,f +10235,clikits134,89,1,f +10236,2412b,3,4,f +10236,2420,3,4,f +10236,2420,7,4,f +10236,2654,0,1,f +10236,2780,0,46,f +10236,2819,7,1,f +10236,2825,7,2,f +10236,2825,0,6,f +10236,2850a,47,6,f +10236,2851,14,6,f +10236,2852,7,6,f +10236,2853,7,2,f +10236,2854,8,2,f +10236,2905,0,3,f +10236,3021,7,1,f +10236,3022,0,2,f +10236,3022,7,4,f +10236,3024,7,2,f +10236,3031,0,1,f +10236,3068b,3,4,f +10236,32000,0,4,f +10236,32001,7,1,f +10236,32002,8,6,f +10236,32013,0,14,f +10236,32014,0,4,f +10236,32015,0,4,f +10236,32016,0,10,f +10236,32017,0,4,f +10236,32018,7,2,f +10236,32018,0,6,f +10236,32034,3,2,f +10236,32039,0,8,f +10236,32056,1,2,f +10236,32056,0,4,f +10236,32062,0,12,f +10236,32063,7,2,f +10236,32068,0,1,f +10236,32068,7,2,f +10236,32069,0,2,f +10236,32073,0,6,f +10236,32077,80,4,f +10236,32078,0,4,f +10236,32123b,7,30,f +10236,32132,0,1,f +10236,3460,0,4,f +10236,3460,7,2,f +10236,3623,0,2,f +10236,3647,7,1,f +10236,3650,7,1,f +10236,3666,7,4,f +10236,3666,0,2,f +10236,3700,7,7,f +10236,3701,7,1,f +10236,3701,0,2,f +10236,3702,7,2,f +10236,3705,0,7,f +10236,3706,0,10,f +10236,3707,0,5,f +10236,3708,0,3,f +10236,3709,0,4,f +10236,3710,7,2,f +10236,3710,0,4,f +10236,3713,7,12,f +10236,3737,0,4,f +10236,3738,0,2,f +10236,3749,7,12,f +10236,3832,0,1,f +10236,3894,7,3,f +10236,3894,0,3,f +10236,3895,7,2,f +10236,3941,0,1,f +10236,4032a,0,2,f +10236,4162,0,1,f +10236,4275b,3,4,f +10236,4519,0,11,f +10236,4531,3,4,f +10236,6536,0,15,f +10236,6538b,1,2,f +10236,6538b,7,3,f +10236,6541,7,4,f +10236,6542a,8,1,f +10236,6558,0,12,f +10236,6573,8,1,f +10236,6575,7,2,f +10236,6587,8,9,f +10236,6589,7,9,f +10236,6632,0,14,f +10236,6632,7,2,f +10236,73129,7,2,f +10236,75535,0,7,f +10236,75535,3,1,f +10236,75c07,8,2,f +10236,75c11,8,2,f +10236,75c12,8,2,f +10236,75c16,8,2,f +10236,75c17,8,1,f +10236,76138,8,1,f +10236,78c02,0,2,f +10236,78c04,0,2,f +10236,78c09,0,1,f +10236,78c14,0,2,f +10236,78c15,0,2,f +10236,9244,7,1,f +10237,122c01,0,3,f +10237,3002,15,1,f +10237,3004,15,2,f +10237,3005,15,2,f +10237,3020,1,1,f +10237,3020,0,1,f +10237,3021,4,1,f +10237,3022,1,2,f +10237,3023,15,2,f +10237,3023,1,2,f +10237,3024,46,2,f +10237,3024,36,2,f +10237,3040b,15,2,f +10237,3135c01,4,1,f +10237,3622,15,2,f +10237,3626apr0001,14,1,f +10237,3710,4,1,f +10237,3710,15,3,f +10237,3710,1,3,f +10237,3787,1,1,f +10237,3795,0,2,f +10237,3821,15,1,f +10237,3822,15,1,f +10237,3829c01,1,1,f +10237,3832,0,1,f +10237,4070,0,4,f +10237,4079,1,1,f +10237,4081a,1,2,f +10237,4084,0,6,f +10237,4175,15,1,f +10237,4213,15,1,f +10237,4214,15,1,f +10237,4275b,1,2,f +10237,4286,15,2,f +10237,4477,4,2,f +10237,4485,4,1,f +10237,4531,1,2,f +10237,4589,0,2,f +10237,4594,47,1,f +10237,6141,47,2,f +10237,6141,0,4,f +10237,6141,46,2,f +10237,970c00,1,1,f +10237,973pb0201c01,15,1,f +10240,104,383,2,f +10240,2412b,383,4,f +10240,2419,2,2,f +10240,2431,0,1,f +10240,2436,4,2,f +10240,2446,0,1,f +10240,2447,0,1,f +10240,2450,2,2,f +10240,2507p01,33,1,f +10240,2653,0,6,f +10240,3001,0,3,f +10240,3001,2,2,f +10240,3001p05,14,2,f +10240,3002,0,4,f +10240,3002,14,2,f +10240,3003,4,1,f +10240,3003,2,2,f +10240,3003,0,2,f +10240,3004,0,2,f +10240,3004,4,3,f +10240,3004,2,1,f +10240,3004,14,2,f +10240,3005,14,2,f +10240,3008,0,2,f +10240,3009,14,2,f +10240,3009,2,4,f +10240,3010,2,2,f +10240,3010,14,4,f +10240,3010,4,2,f +10240,3010,0,1,f +10240,3020,2,1,f +10240,3020,0,2,f +10240,3021,7,2,f +10240,3022,0,1,f +10240,3022,4,2,f +10240,3022,2,1,f +10240,3023,0,4,f +10240,3023,2,4,f +10240,3023,14,2,f +10240,3034,2,2,f +10240,3035,0,2,f +10240,3038,14,2,f +10240,3039,0,4,f +10240,3039,4,3,f +10240,3040b,7,2,f +10240,3040b,14,4,f +10240,3062b,0,2,f +10240,3069bp21,0,1,f +10240,3149c01,0,2,f +10240,32013,0,2,f +10240,3297px5,14,1,f +10240,3298,4,3,f +10240,3298,14,4,f +10240,3460,4,2,f +10240,3475b,0,2,f +10240,3585,2,1,f +10240,3586,2,1,f +10240,3623,4,2,f +10240,3623,2,2,f +10240,3623,0,2,f +10240,3626bp05,14,1,f +10240,3660,14,4,f +10240,3666,0,2,f +10240,3666,2,4,f +10240,3673,7,2,f +10240,3710,0,2,f +10240,3710,2,5,f +10240,3747b,2,1,f +10240,3747b,0,1,f +10240,3747b,14,2,f +10240,3794a,7,2,f +10240,3795,2,3,f +10240,3823,41,2,f +10240,3829c01,4,2,f +10240,3933,0,1,f +10240,3934,0,1,f +10240,3937,4,3,f +10240,3938,7,3,f +10240,4032a,0,2,f +10240,4070,0,2,f +10240,4070,7,2,f +10240,4079,2,1,f +10240,4081b,4,2,f +10240,4081b,0,2,f +10240,4085c,0,4,f +10240,4161,14,2,f +10240,4175,7,2,f +10240,4213,0,2,f +10240,4286,4,4,f +10240,4286,0,6,f +10240,4286,2,6,f +10240,4286,14,2,f +10240,4287,0,2,f +10240,4287,14,2,f +10240,4315,0,3,f +10240,4510,0,2,f +10240,4589,4,2,f +10240,4859,2,1,f +10240,5600cdb01,89,2,f +10240,5600cdb02,89,1,f +10240,6019,0,8,f +10240,6106,0,2,f +10240,6141,14,5,f +10240,6141,4,7,f +10240,6141,0,7,f +10240,6153a,0,1,f +10240,6205,0,1,f +10240,6213pb07,0,3,f +10240,6213pb08,0,2,f +10240,6213pb09,0,1,f +10240,6541,14,2,f +10240,6564,0,1,f +10240,6564,14,3,f +10240,6564,2,1,f +10240,6564,4,1,f +10240,6565,14,3,f +10240,6565,2,1,f +10240,6565,4,1,f +10240,6565,0,1,f +10240,71182,383,2,f +10240,71183,383,4,f +10240,71184,383,4,f +10240,73590c02b,14,2,f +10240,75,14,2,f +10240,970c00,0,1,f +10240,973p28c01,0,1,f +10240,bb18,14,1,f +10240,x490c01,0,1,f +10240,x491c01,0,1,f +10243,3001,14,3,f +10243,3003,14,3,f +10243,3003pr0001,14,3,f +10243,3004,14,3,f +10243,3021,4,3,f +10244,132a,0,4,f +10244,3001a,15,2,f +10244,3001a,1,2,f +10244,3001a,4,11,f +10244,3001a,0,2,f +10244,3003,14,4,f +10244,3003,4,6,f +10244,3003,0,6,f +10244,3003,1,2,f +10244,3003,15,2,f +10244,3004,0,6,f +10244,3004,4,6,f +10244,3007,14,2,f +10244,3009,4,4,f +10244,3010,4,4,f +10244,3010,47,2,f +10244,3010,1,2,f +10244,3010,14,2,f +10244,3030,1,1,f +10244,3032,1,2,f +10244,3035,1,1,f +10244,3062a,14,2,f +10244,3613,15,2,f +10244,3614a,14,2,f +10244,685p01,14,1,f +10244,7039,4,4,f +10244,7049b,0,2,f +10244,792c03,15,1,f +10244,x196,0,1,f +10244,x407,1,1,f +10246,2919,46,1,f +10246,2928,0,1,f +10246,4757,15,1,f +10246,6035,15,1,f +10248,11153,70,4,f +10248,11153,484,8,f +10248,2419,72,2,f +10248,2714a,71,1,f +10248,2817,0,1,f +10248,30000,72,4,f +10248,3001,70,1,f +10248,3020,71,4,f +10248,3021,72,6,f +10248,3022,70,6,f +10248,3023,70,4,f +10248,3034,70,1,f +10248,30374,41,1,f +10248,3039,70,4,f +10248,3040b,72,2,f +10248,3046a,72,4,f +10248,3048c,70,2,f +10248,30552,71,1,f +10248,30553,72,1,f +10248,3069b,484,1,f +10248,3069bpr0086,71,1,f +10248,32001,0,2,f +10248,32062,4,1,f +10248,3623,15,4,f +10248,3626bpr0525,78,1,f +10248,3626bpr0809,78,1,f +10248,3666,19,4,f +10248,3676,72,4,f +10248,3709,72,3,f +10248,3710,72,8,f +10248,3747b,70,2,f +10248,3795,70,1,f +10248,3832,72,2,f +10248,3960,72,2,f +10248,4032a,0,1,f +10248,41747,484,4,f +10248,41748,484,4,f +10248,4274,71,1,t +10248,4274,71,1,f +10248,4286,70,2,f +10248,44358,70,1,f +10248,44359,71,2,f +10248,44728,0,4,f +10248,45301,70,2,f +10248,4589,182,1,f +10248,47397,72,2,f +10248,47398,72,2,f +10248,4740,72,1,f +10248,48183,72,4,f +10248,48336,71,1,f +10248,61189pr0004,15,1,f +10248,61190a,72,1,f +10248,61190b,72,1,f +10248,61190c,72,1,f +10248,61190f,72,2,f +10248,62462,0,1,f +10248,63585,72,2,f +10248,63586,72,2,f +10248,63864,71,2,f +10248,64567,80,1,f +10248,6587,28,1,f +10248,85984,71,3,f +10248,87079,70,3,f +10248,87611,70,2,f +10248,87752,40,1,f +10248,92099,72,1,f +10248,92280,71,4,f +10248,92751pr0001,28,1,f +10248,92753pr0001,78,1,f +10248,970c00,308,1,f +10248,970c69pr0237,28,1,f +10248,970x026,15,1,f +10248,973pr1401c01,15,1,f +10248,973pr1797c01,308,1,f +10248,973pr1798c01,28,1,f +10250,2343,0,1,f +10250,2357,272,4,f +10250,2357,71,2,f +10250,2376,0,1,f +10250,2412b,25,2,f +10250,2412b,4,2,f +10250,2412b,42,5,f +10250,2412b,80,7,f +10250,2412b,72,2,f +10250,2420,272,8,f +10250,2420,71,4,f +10250,2431,71,5,f +10250,2432,71,1,f +10250,2436,71,2,f +10250,2436,0,2,f +10250,2444,4,2,f +10250,2445,71,6,f +10250,2446,135,1,f +10250,2446,0,1,f +10250,2447,82,1,f +10250,2447,46,1,t +10250,2447,82,1,t +10250,2447,46,1,f +10250,2450,71,6,f +10250,2450,272,2,f +10250,2456,71,1,f +10250,2462,71,2,f +10250,2476a,1,4,f +10250,2540,25,1,f +10250,2555,72,2,f +10250,2653,71,4,f +10250,2654,71,2,f +10250,2654,72,7,f +10250,2730,71,4,f +10250,2780,0,3,t +10250,2780,0,29,f +10250,2817,71,2,f +10250,2825,71,1,f +10250,3001,272,3,f +10250,3001,71,3,f +10250,3001,0,1,f +10250,3003,71,2,f +10250,3003,272,17,f +10250,30031,71,2,f +10250,30033,0,1,f +10250,3004,272,13,f +10250,3004,71,16,f +10250,3005,272,8,f +10250,3005,71,4,f +10250,3007,71,2,f +10250,3008,71,9,f +10250,30086,272,1,f +10250,3009,71,5,f +10250,3010,71,4,f +10250,3010,272,4,f +10250,30132,72,1,t +10250,30132,72,1,f +10250,30157,71,1,f +10250,30179,72,1,f +10250,30194,72,1,f +10250,3020,25,3,f +10250,3020,272,19,f +10250,3020,71,5,f +10250,3021,14,2,f +10250,3021,71,6,f +10250,3021,272,2,f +10250,3022,272,3,f +10250,3022,4,1,f +10250,3022,71,2,f +10250,3022,72,2,f +10250,3023,272,3,f +10250,3023,72,8,f +10250,3023,71,28,f +10250,3023,4,1,f +10250,30236,72,1,f +10250,3024,0,8,f +10250,3024,272,6,f +10250,3024,71,2,f +10250,3028,71,7,f +10250,3031,71,2,f +10250,3032,0,3,f +10250,3032,71,1,f +10250,3034,0,2,f +10250,3034,272,17,f +10250,3034,71,4,f +10250,3035,0,2,f +10250,30355,272,1,f +10250,30356,272,1,f +10250,3036,0,1,f +10250,3038,71,4,f +10250,30384,40,1,f +10250,30387,14,1,f +10250,3039,71,4,f +10250,30391,0,4,f +10250,30395,72,1,f +10250,30396,14,1,f +10250,3040b,14,1,f +10250,3040b,71,2,f +10250,30526,272,2,f +10250,30526,71,4,f +10250,30553,72,2,f +10250,30565,272,6,f +10250,30602,80,1,f +10250,30608,0,1,f +10250,30608,70,1,f +10250,3062b,14,6,f +10250,3068b,0,5,f +10250,3068b,272,9,f +10250,3068bpr0140,72,2,f +10250,3069b,71,3,f +10250,3069b,25,1,f +10250,3069bpr0090,72,1,f +10250,3070b,71,1,t +10250,3070b,71,4,f +10250,3070b,34,1,f +10250,3070b,34,1,t +10250,32013,72,4,f +10250,32018,72,6,f +10250,32018,0,2,f +10250,32028,71,6,f +10250,32054,0,8,f +10250,32056,71,4,f +10250,32062,4,3,f +10250,32064b,72,5,f +10250,32073,71,1,f +10250,32123b,14,2,t +10250,32123b,14,10,f +10250,32123b,71,1,f +10250,32123b,71,1,t +10250,3228c,71,1,f +10250,32523,14,2,f +10250,32524,71,8,f +10250,32526,71,6,f +10250,3460,71,15,f +10250,3460,0,2,f +10250,3475b,72,2,f +10250,3623,71,11,f +10250,3623,4,1,f +10250,3626bpr0535,14,1,f +10250,3626bpr0536,14,1,f +10250,3626bpr0538,14,1,f +10250,3626bpr0540,14,1,f +10250,3626bpr0541,14,1,f +10250,3626bpr0542,14,1,f +10250,3626bpr0551,14,1,f +10250,3660,72,4,f +10250,3665,72,2,f +10250,3666,71,1,f +10250,3666,272,4,f +10250,3673,71,5,f +10250,3673,71,2,t +10250,3678b,272,2,f +10250,3679,71,2,f +10250,3680,0,2,f +10250,3700,272,13,f +10250,3700,72,1,f +10250,3701,72,4,f +10250,3702,0,2,f +10250,3702,71,2,f +10250,3705,0,2,f +10250,3708,0,2,f +10250,3710,4,1,f +10250,3710,71,8,f +10250,3737,0,3,f +10250,3738,72,1,f +10250,3747b,71,8,f +10250,3747b,25,1,f +10250,3749,19,1,f +10250,3794a,272,6,f +10250,3794a,0,2,f +10250,3795,71,4,f +10250,3795,0,1,f +10250,3829c01,71,3,f +10250,3832,71,5,f +10250,3835,0,1,f +10250,3838,14,1,f +10250,3839b,72,2,f +10250,3894,14,4,f +10250,3895,0,4,f +10250,3899,4,1,f +10250,3937,72,5,f +10250,3956,71,2,f +10250,3957a,0,2,f +10250,3959,72,2,f +10250,3962b,0,2,f +10250,4006,0,1,f +10250,40244,0,4,f +10250,4032a,14,4,f +10250,4032a,72,1,f +10250,4070,0,8,f +10250,4070,14,1,f +10250,4079,0,4,f +10250,4081b,71,2,f +10250,4081b,72,2,f +10250,4085c,71,2,f +10250,4085c,14,8,f +10250,40902,0,1,f +10250,41532,0,2,f +10250,4162,14,2,f +10250,42023,71,2,f +10250,4215b,41,1,f +10250,4274,71,6,f +10250,4274,1,4,f +10250,4274,1,1,t +10250,4274,71,1,t +10250,4282,0,1,f +10250,4285b,71,2,f +10250,43337,71,2,f +10250,4349,72,6,f +10250,43713,72,1,f +10250,43713,0,1,f +10250,43719,72,1,f +10250,43722,25,1,f +10250,43722,71,1,f +10250,43723,71,1,f +10250,43723,25,1,f +10250,44300,72,2,f +10250,44567a,0,1,f +10250,44661,272,1,f +10250,44674,272,2,f +10250,44675,71,2,f +10250,44728,0,2,f +10250,44728,71,2,f +10250,44728,72,2,f +10250,4477,72,3,f +10250,4477,71,5,f +10250,4510,71,1,f +10250,4515,272,12,f +10250,4515,71,5,f +10250,4519,71,6,f +10250,4532,15,1,f +10250,4532,71,2,f +10250,4533,41,2,f +10250,4536,15,2,f +10250,4588,15,4,f +10250,4589,72,2,f +10250,4589,15,4,f +10250,4589,4,4,f +10250,4589,80,2,f +10250,4589,0,1,f +10250,4589,36,2,f +10250,4599a,71,2,f +10250,4599a,0,1,f +10250,4600,0,2,f +10250,4623,71,2,f +10250,4623,14,3,f +10250,46667,72,2,f +10250,4740,42,4,f +10250,47720,0,2,f +10250,47755,272,1,f +10250,47844,182,1,f +10250,48288,72,1,f +10250,48336,71,9,f +10250,4864b,41,1,f +10250,4864bpr0001,47,1,f +10250,4864bpr0002,47,1,f +10250,4865a,71,12,f +10250,48729a,135,1,t +10250,48729a,0,1,f +10250,48729a,0,1,t +10250,48729a,135,1,f +10250,49668,0,2,f +10250,50373,71,1,f +10250,50943,71,2,f +10250,50950,80,6,f +10250,50950,25,2,f +10250,50950,72,2,f +10250,50967,0,4,f +10250,50967,72,4,f +10250,52031,272,1,f +10250,53451,135,6,f +10250,53451,135,1,t +10250,53989,0,6,f +10250,53989,135,4,f +10250,54200,182,4,f +10250,54200,47,2,t +10250,54200,40,1,t +10250,54200,47,6,f +10250,54200,46,3,t +10250,54200,40,2,f +10250,54200,25,1,t +10250,54200,25,2,f +10250,54200,36,3,f +10250,54200,182,3,t +10250,54200,272,22,f +10250,54200,34,2,t +10250,54200,272,6,t +10250,54200,36,2,t +10250,54200,80,4,f +10250,54200,34,2,f +10250,54200,46,6,f +10250,54383,272,1,f +10250,54384,272,1,f +10250,55978,0,10,f +10250,55981,71,4,f +10250,56145,71,10,f +10250,58176,36,4,f +10250,59275,4,2,f +10250,59349,47,1,f +10250,59349,272,10,f +10250,59443,0,3,f +10250,6005,272,2,f +10250,6014b,71,4,f +10250,6015,0,4,f +10250,6020,71,1,f +10250,6041,0,1,f +10250,60470a,71,12,f +10250,60474,71,3,f +10250,60478,71,10,f +10250,60479,71,2,f +10250,60479,0,2,f +10250,60481,71,2,f +10250,60483,71,1,f +10250,60621,71,1,f +10250,60849,71,1,f +10250,60849,0,2,f +10250,61069,72,2,f +10250,6111,72,2,f +10250,6112,71,1,f +10250,6117,72,1,f +10250,6134,4,1,f +10250,6134,71,4,f +10250,61409,72,14,f +10250,6141,25,1,t +10250,6141,71,1,t +10250,6141,25,2,f +10250,6141,42,5,t +10250,6141,42,22,f +10250,6141,36,2,t +10250,6141,71,2,f +10250,6141,36,6,f +10250,61485,0,1,f +10250,6239,72,1,f +10250,62462,14,1,f +10250,62462,0,4,f +10250,62576,40,1,f +10250,62696,308,1,f +10250,62698,0,2,f +10250,62699pr0001,0,1,f +10250,62810,484,1,f +10250,62810,0,1,f +10250,62930,47,1,f +10250,6541,72,3,f +10250,6553,0,1,f +10250,6558,1,10,f +10250,6628,0,1,f +10250,6636,71,12,f +10250,73983,72,4,f +10250,970c00pr0116,15,1,f +10250,970c00pr0117,25,1,f +10250,970c00pr0118,272,4,f +10250,973pr1383c01,15,1,f +10250,973pr1384c01,25,2,f +10250,973pr1386c01,272,3,f +10250,973pr1387c01,272,1,f +10251,3001a,4,2,f +10251,3001a,1,3,f +10251,3001a,15,2,f +10251,3001a,14,1,f +10251,3001pr1,14,1,f +10251,3002a,4,2,f +10251,3002a,14,2,f +10251,3002a,1,2,f +10251,3003,14,3,f +10251,3003,4,5,f +10251,3003,15,2,f +10251,3003,1,5,f +10251,3003pe1,14,2,f +10251,3007,1,1,f +10251,4202,2,1,f +10254,3626bpr0677,14,1,f +10254,3847,179,2,t +10254,3847,179,1,f +10254,41879a,1,1,f +10254,86035,4,1,f +10254,86035,4,1,t +10254,973pr1573c01,15,1,f +10255,2412b,4,1,f +10255,2415,7,1,f +10255,2432,7,1,f +10255,2444,0,2,f +10255,2654,0,2,f +10255,2815,0,2,f +10255,298c02,4,2,f +10255,3021,14,1,f +10255,3022,7,2,f +10255,3022,0,1,f +10255,3023,7,1,f +10255,3139,0,1,f +10255,32001,7,1,f +10255,3464,47,1,f +10255,3475b,14,2,f +10255,3626bpx19,14,1,f +10255,3660,7,1,f +10255,3666,7,2,f +10255,3705,0,2,f +10255,3709,7,2,f +10255,3710,7,2,f +10255,3749,7,2,f +10255,3839b,0,1,f +10255,3941,57,1,f +10255,4032a,4,2,f +10255,4070,0,2,f +10255,4185,7,2,f +10255,4265b,7,1,t +10255,4265b,7,2,f +10255,4485,1,1,f +10255,4732,0,1,f +10255,6041,14,2,f +10255,6069,7,1,f +10255,6126a,57,2,f +10255,6141,57,1,t +10255,6141,57,6,f +10255,970c00,1,1,f +10255,973px39c01,2,1,f +10256,2362b,15,2,f +10256,2456,15,1,f +10256,2540,3,1,f +10256,30153,45,1,f +10256,30153,41,1,f +10256,30153,57,1,f +10256,30238,25,1,f +10256,30240,15,1,f +10256,3069bpx41,15,1,f +10256,33009px1,11,1,f +10256,33201,0,1,f +10256,33203,25,1,f +10256,33217,52,1,f +10256,33320,2,1,f +10256,3455,15,2,f +10256,40232,7,1,f +10256,40234,8,1,f +10256,41539,41,1,f +10256,4337,14,1,f +10256,4341,0,1,f +10256,4429,34,1,f +10256,4490,15,2,f +10256,4532,3,1,f +10256,4536px1,462,1,f +10256,4589,42,1,f +10256,4589,57,1,f +10256,6141,57,4,f +10256,6141,57,1,t +10256,6175px2,0,1,f +10256,belvfem2,-1,1,f +10256,belvskirt03,89,1,f +10257,26562,15,1,f +10257,3626cpr1921,78,1,f +10257,88646pr0002,15,1,f +10257,970c00pr1051,0,1,f +10257,973pr3381c01,15,1,f +10257,98385,28,1,f +10261,3626bpr1094,14,1,f +10261,62810,19,1,f +10261,87994,15,1,f +10261,88646pr0001,15,1,f +10261,91049,1,2,f +10261,970c00pr0413,4,1,f +10261,973pr2201c01,4,1,f +10261,99250pr0001,4,1,f +10262,2412b,8,8,f +10262,2431,2,2,f +10262,2436,0,4,f +10262,2654,7,3,f +10262,298c02,4,1,t +10262,298c02,4,1,f +10262,3001,6,3,f +10262,3010,8,1,f +10262,3020,2,3,f +10262,3023,7,6,f +10262,3023,4,6,f +10262,30304,8,1,f +10262,3031,2,2,f +10262,3033,0,1,f +10262,3037,6,2,f +10262,3039pc5,7,1,f +10262,3062b,8,2,f +10262,3068b,15,1,f +10262,3070bps2,2,1,t +10262,3070bps2,2,2,f +10262,32059,0,1,f +10262,32084,2,1,f +10262,3622,7,2,f +10262,3624,6,1,f +10262,3626bpr0001,14,1,f +10262,3660,8,10,f +10262,3679,7,1,f +10262,3680,0,1,f +10262,3747a,2,2,f +10262,3794a,2,2,f +10262,3939,47,1,f +10262,3957a,7,1,f +10262,4079,6,2,f +10262,4213,8,1,f +10262,4282,2,1,f +10262,4286,2,2,f +10262,4287,8,2,f +10262,4315,2,1,f +10262,4589,0,1,f +10262,4595,7,1,f +10262,4865a,0,3,f +10262,6091,2,12,f +10262,6141,36,2,f +10262,6141,36,1,t +10262,6191,2,2,f +10262,6564,2,1,f +10262,6565,2,1,f +10262,970c00,6,1,f +10262,973px89c01,6,1,f +10263,3003,4,2,f +10263,3004,0,1,f +10263,3004,14,6,f +10263,3004,4,6,f +10263,3005,4,2,f +10263,3010,4,10,f +10263,3020,4,10,f +10263,3020,7,5,f +10263,3021,4,12,f +10263,3021,0,1,f +10263,3021,7,1,f +10263,3022,4,4,f +10263,3022,14,6,f +10263,3022,0,2,f +10263,3023,4,17,f +10263,3023,7,15,f +10263,3023,0,4,f +10263,3024,4,4,f +10263,3024,7,6,f +10263,3024,47,5,f +10263,3029,4,1,f +10263,3030,4,1,f +10263,3034,4,2,f +10263,3034,7,2,f +10263,3035,4,1,f +10263,3037,4,1,f +10263,3040b,4,6,f +10263,3040b,0,2,f +10263,3062a,7,3,f +10263,3062a,4,1,f +10263,3069b,4,2,f +10263,3139,0,2,f +10263,3149c01,4,1,f +10263,3298,4,2,f +10263,3460,7,5,f +10263,3460,4,11,f +10263,3464,4,2,f +10263,3482,7,2,f +10263,3634,0,2,f +10263,3647,7,4,f +10263,3648a,7,1,f +10263,3649,7,4,f +10263,3650a,7,2,f +10263,3651,7,2,f +10263,3665,4,8,f +10263,3666,4,6,f +10263,3673,7,10,f +10263,3679,7,6,f +10263,3680,4,6,f +10263,3700,4,15,f +10263,3701,4,9,f +10263,3702,4,8,f +10263,3704,0,1,f +10263,3705,0,2,f +10263,3706,0,9,f +10263,3707,0,3,f +10263,3709,4,3,f +10263,3710,7,3,f +10263,3710,0,3,f +10263,3710,4,20,f +10263,3713,7,15,f +10263,3738,4,5,f +10263,3739,7,2,f +10263,3740,0,2,f +10263,3743,7,2,f +10263,8,4,2,f +10263,9244,7,1,f +10264,3023a,1,50,f +10264,3024,1,30,f +10264,728,7,1,f +10264,729,47,1,f +10265,30374,36,2,f +10265,32016,0,2,f +10265,32039,0,1,f +10265,32062,0,7,f +10265,32068,0,1,f +10265,32138,0,2,f +10265,32165,0,2,f +10265,32172,0,2,f +10265,32173,14,2,f +10265,32174,0,2,f +10265,32305,14,1,f +10265,32306,8,1,f +10265,32307,0,4,f +10265,32310pb03,14,1,f +10265,32311,0,2,f +10265,32439a,14,1,f +10265,3705,0,1,f +10265,3713,7,1,f +10265,3737,0,1,f +10265,3749,7,1,f +10265,4274,7,4,f +10265,4519,0,2,f +10265,4589,57,2,f +10265,4716,0,1,f +10265,rb00182,0,1,f +10266,bb293,1,1,f +10267,9615-1,89,1,f +10267,9630-1,89,1,f +10269,2352,4,1,f +10269,2456,4,2,f +10269,3001,15,4,f +10269,3001,14,6,f +10269,3001,0,2,f +10269,3001,1,4,f +10269,3001,4,4,f +10269,3002,14,2,f +10269,3002,1,4,f +10269,3002,15,2,f +10269,3002,4,4,f +10269,3003,14,8,f +10269,3003,4,6,f +10269,3003,1,8,f +10269,3003,0,2,f +10269,3003,15,4,f +10269,3003pe2,4,2,f +10269,3006,1,2,f +10269,3185,4,4,f +10269,3483,0,4,f +10269,4204,2,1,f +10269,4727,2,2,f +10269,4728,4,1,f +10269,4728,1,1,f +10269,4743,15,1,f +10269,4744,14,1,f +10269,4744pr0001,0,1,f +10269,4744px11,14,1,f +10269,4744px4,1,1,f +10269,4745,4,1,f +10269,600,14,1,f +10269,601,14,1,f +10269,6212,14,1,f +10269,6213pb06,4,1,f +10269,6214px2,2,1,f +10269,6215,14,4,f +10269,6216,14,2,f +10269,6216,2,1,f +10269,6232,14,1,f +10269,6235,4,1,f +10269,6236,4,1,f +10269,6244px1,15,1,f +10269,6248,4,4,f +10269,6249,4,2,f +10269,82249,15,1,f +10271,32002,72,2,f +10271,32002,72,1,t +10271,32063,0,1,f +10271,32173,0,4,f +10271,32175,0,2,f +10271,32533pb338,21,1,f +10271,32556,71,1,f +10271,40507,0,1,f +10271,43093,1,4,f +10271,44807,0,1,f +10271,47295,179,1,f +10271,47296,72,2,f +10273,880002.1stk01,9999,1,t +10277,2335,0,1,f +10277,2412b,71,2,f +10277,2540,0,1,f +10277,30162,71,2,f +10277,3020,72,4,f +10277,3023,71,2,f +10277,3062b,71,2,f +10277,3069b,71,2,f +10277,3069b,40,1,f +10277,3070b,36,1,t +10277,3070b,36,2,f +10277,32001,0,2,f +10277,32064a,72,2,f +10277,3666,72,2,f +10277,3678b,72,1,f +10277,3705,4,1,f +10277,4032a,72,2,f +10277,41769,72,3,f +10277,41770,72,3,f +10277,51739,72,2,f +10277,6141,36,1,t +10277,6141,36,2,f +10277,6636,72,2,f +10277,85984,71,2,f +10279,45568,0,6,f +10279,45573,72,6,f +10279,45574,71,8,f +10279,45575,71,16,f +10279,45783,1,1,f +10279,45784,1,2,f +10279,45785,1,1,f +10279,45786,1,2,f +10279,45803,1,2,f +10279,49823,148,1,f +10279,49828,148,1,f +10279,49829,148,1,f +10281,24636,0,1,f +10281,26112,85,1,f +10281,30153,46,1,f +10281,30374,297,1,f +10281,3626cpr1879,0,1,f +10281,3678bpr0054,0,1,f +10281,50231,85,1,f +10281,64644,297,1,f +10281,88646,0,1,f +10281,973pr3317c01,0,1,f +10282,10226,15,1,f +10282,10830pat0001,0,4,f +10282,11249,297,2,f +10282,11923,15,1,f +10282,11929,27,2,f +10282,12011,25,1,f +10282,12041,15,1,f +10282,12044,191,1,f +10282,12053,15,1,f +10282,12058,86,1,f +10282,12117,25,2,f +10282,12602,14,8,f +10282,12938,25,1,f +10282,14226c31,0,15,f +10282,14518,72,4,f +10282,15456,0,4,f +10282,15564,80,2,f +10282,2302,4,6,f +10282,2423,2,15,f +10282,2437,41,8,f +10282,2446,15,4,f +10282,2460,0,8,f +10282,2465,19,8,f +10282,2488,0,10,f +10282,2524,15,4,f +10282,2548,72,4,f +10282,2569,42,15,f +10282,2569,0,15,f +10282,2571,322,4,f +10282,2819,71,4,f +10282,30000,72,24,f +10282,3001,0,20,f +10282,3001,4,50,f +10282,3001,19,20,f +10282,3001,73,40,f +10282,3001,14,20,f +10282,3001,25,30,f +10282,3001,27,40,f +10282,3002,25,20,f +10282,3002,19,20,f +10282,3003,15,15,f +10282,3003,73,20,f +10282,3003,27,30,f +10282,3003,320,20,f +10282,3003,70,15,f +10282,3003,33,20,f +10282,3003,2,10,f +10282,3003,36,20,f +10282,3003,5,30,f +10282,30056,70,12,f +10282,3006,4,6,f +10282,3007,0,8,f +10282,3007,15,8,f +10282,3007,14,6,f +10282,30076,4,3,f +10282,3009,14,10,f +10282,3009,0,10,f +10282,3010,272,20,f +10282,3010,27,20,f +10282,30103,0,2,f +10282,3011,0,4,f +10282,3011,73,12,f +10282,3011,4,4,f +10282,3011,27,6,f +10282,30115,4,2,f +10282,30145,15,8,f +10282,30150,70,4,f +10282,30153,52,80,f +10282,30157,72,8,f +10282,3020,1,4,f +10282,3020,25,4,f +10282,3020,14,8,f +10282,30238,0,2,f +10282,3028,15,6,f +10282,3028,71,6,f +10282,30286,41,6,f +10282,3031,4,8,f +10282,3032,2,6,f +10282,3033,14,4,f +10282,30332,0,2,f +10282,30373,72,2,f +10282,30389b,0,6,f +10282,30414,71,6,f +10282,3045,4,8,f +10282,30562,41,2,f +10282,3062b,36,30,f +10282,3062b,34,20,f +10282,3062b,33,30,f +10282,3066,40,10,f +10282,3069bpr0100,2,50,f +10282,31062,70,1,f +10282,32013,1,25,f +10282,32014,0,15,f +10282,32034,0,35,f +10282,32235,4,40,f +10282,3297,71,8,f +10282,33215,0,2,f +10282,3437,25,6,f +10282,3437,14,6,f +10282,3437,10,6,f +10282,3437,1,6,f +10282,3626c,47,25,f +10282,3626cpr0891,14,40,f +10282,3626cpr0892,14,30,f +10282,3626cpr0895,15,25,f +10282,3626cpr0970,78,20,f +10282,3649,71,8,f +10282,3673,71,30,f +10282,3679,71,8,f +10282,3680,0,8,f +10282,3703,4,8,f +10282,3708,0,12,f +10282,3749,19,12,f +10282,3754,47,2,f +10282,3811,2,4,f +10282,3832,4,2,f +10282,3832,70,4,f +10282,3832,2,4,f +10282,3833,4,4,f +10282,3834,80,2,f +10282,3837,72,4,f +10282,3838,14,4,f +10282,3841,72,4,f +10282,3844,80,4,f +10282,3857,1,6,f +10282,3865,72,8,f +10282,3867,72,6,f +10282,3878,0,4,f +10282,3897,72,4,f +10282,3898,15,2,f +10282,3901,0,5,f +10282,3901,71,5,f +10282,3937,0,8,f +10282,3941,41,20,f +10282,3943b,0,4,f +10282,3957a,0,30,f +10282,3957a,15,30,f +10282,3957b,42,30,f +10282,3960,15,6,f +10282,3962b,0,6,f +10282,4006,0,6,f +10282,40666,72,4,f +10282,40666,0,4,f +10282,40902,0,6,f +10282,41531,71,2,f +10282,41539,71,8,f +10282,41539,0,6,f +10282,41748,14,10,f +10282,4186,71,1,f +10282,4282,0,5,f +10282,4285,72,2,f +10282,4332,0,4,f +10282,4349,72,4,f +10282,4360,0,4,f +10282,43888,72,8,f +10282,44126,15,10,f +10282,44294,71,12,f +10282,44300,71,8,f +10282,44302a,71,8,f +10282,4449,70,4,f +10282,4476b,15,2,f +10282,4495b,2,30,f +10282,4495b,4,30,f +10282,4495b,5,30,f +10282,4495b,272,30,f +10282,4499,70,4,f +10282,4515,0,2,f +10282,4522,0,4,f +10282,4530,70,5,f +10282,4530,19,8,f +10282,46667,72,2,f +10282,4728,4,10,f +10282,4738a,70,4,f +10282,4739a,70,4,f +10282,4740,36,16,f +10282,47517,0,3,f +10282,4911,15,1,f +10282,50747,40,2,f +10282,50986pr0004,40,2,f +10282,51000,71,30,f +10282,51265,2,1,f +10282,52381,4,1,f +10282,54095,15,2,f +10282,54651,0,1,f +10282,55981,14,24,f +10282,57539pat0001,47,12,f +10282,58090,0,26,f +10282,60219,14,4,f +10282,60364pr0001,0,2,f +10282,6064,2,12,f +10282,6082,72,2,f +10282,6083,72,2,f +10282,6108,71,10,f +10282,6131,0,4,f +10282,6134,4,8,f +10282,61649,4,2,f +10282,61896,484,2,f +10282,6190,72,4,f +10282,6251,15,2,f +10282,6260,15,25,f +10282,6265,15,50,f +10282,6266,15,50,f +10282,62808,72,2,f +10282,62812,1,1,f +10282,63082,0,4,f +10282,63710pr0002c02,10,1,f +10282,64951,70,12,f +10282,6510,14,4,f +10282,71015,82,4,f +10282,71155,0,4,f +10282,72475,40,2,f +10282,75113pr0004c01,19,2,f +10282,75347,15,8,f +10282,76317,15,2,f +10282,76768,71,4,f +10282,78c09,0,15,f +10282,86035,27,4,f +10282,86035,1,4,f +10282,87552,47,8,f +10282,89873,71,3,f +10282,90265,15,2,f +10282,90981,72,4,f +10282,92084pr0001,70,2,f +10282,92259,0,5,f +10282,92586pr0001,84,2,f +10282,92586pr0002,484,1,f +10282,92589,71,4,f +10282,93140,15,2,f +10282,95347,0,2,f +10282,96904,334,60,f +10282,96905,334,60,f +10282,96906,334,60,f +10282,96907,334,60,f +10282,970c00,0,20,f +10282,970c00,15,20,f +10282,970c00,1,20,f +10282,970c00,4,30,f +10282,973c01,15,30,f +10282,973c02,4,20,f +10282,973c07,1,20,f +10282,973c47,71,20,f +10282,98302,0,6,f +10282,98560,2,8,f +10282,99563,334,60,f +10283,2456,14,4,f +10283,2456,1,4,f +10283,2456,4,4,f +10283,2456,15,4,f +10283,3001,2,12,f +10283,3001,4,24,f +10283,3001,14,24,f +10283,3001,0,12,f +10283,3001,1,24,f +10283,3001,383,1,f +10283,3001,15,24,f +10283,3002,15,12,f +10283,3002,0,8,f +10283,3002,4,12,f +10283,3002,1,12,f +10283,3002,14,12,f +10283,3002,2,8,f +10283,3003,1,40,f +10283,3003,15,40,f +10283,3003,14,40,f +10283,3003,4,40,f +10283,3003,2,20,f +10283,3003,0,20,f +10283,3004,15,60,f +10283,3004,14,60,f +10283,3004,4,60,f +10283,3004,0,28,f +10283,3004,2,28,f +10283,3004,1,60,f +10283,3005,15,40,f +10283,3005,14,40,f +10283,3005,1,40,f +10283,3005,4,40,f +10283,3005,2,12,f +10283,3005,0,20,f +10283,3008,1,4,f +10283,3008,14,4,f +10283,3008,4,4,f +10283,3008,15,4,f +10283,3009,1,8,f +10283,3009,14,8,f +10283,3009,4,8,f +10283,3009,15,8,f +10283,3010,15,40,f +10283,3010,1,40,f +10283,3010,2,20,f +10283,3010,4,40,f +10283,3010,14,40,f +10283,3010,0,24,f +10283,3622,4,12,f +10283,3622,2,4,f +10283,3622,1,12,f +10283,3622,14,12,f +10283,3622,0,8,f +10283,3622,15,12,f +10284,47575pr0005,15,1,f +10284,6510,4,1,f +10284,87084,73,1,f +10284,89406,70,1,f +10286,299,9999,1,t +10286,3001a,4,1,f +10286,3002a,0,4,f +10286,3002a,4,4,f +10286,3003,4,1,f +10286,3004,47,4,f +10286,3004,0,4,f +10286,3005,47,8,f +10286,3005,4,12,f +10286,3008p05,4,2,f +10286,3009,4,2,f +10286,3010,4,4,f +10286,3020,4,2,f +10286,3022,4,1,f +10286,3023,4,10,f +10286,3023,14,16,f +10286,3034,0,5,f +10286,3039,4,1,f +10286,3058b,0,1,f +10286,433c01,0,2,f +10286,458,0,4,f +10286,737ac01,4,1,f +10286,737ac02,4,1,f +10286,wheel2a,4,4,f +10286,x550a,0,1,f +10288,11089,0,1,f +10288,11091,0,2,f +10288,11302pat0003,15,1,f +10288,11334,15,3,f +10288,15365pat0001,1,1,f +10288,15366,148,1,f +10288,15370pat0001,41,2,f +10288,15374pat01,28,1,f +10288,2780,0,2,f +10288,32039,0,2,f +10288,32062,4,3,f +10288,32184,0,1,f +10288,32192,0,6,f +10288,3673,71,1,f +10288,3705,0,2,f +10288,3713,71,1,f +10288,3737,0,1,f +10288,43093,1,2,f +10288,4519,71,3,f +10288,53562,0,2,f +10288,59426,72,1,f +10288,59443,72,1,f +10288,61403,41,1,f +10288,87747,15,2,f +10288,90609,41,4,f +10288,90609,0,1,f +10288,90611,41,1,f +10288,90616,0,2,f +10288,90617,72,2,f +10288,90625,0,1,f +10288,90630,0,1,f +10288,90639,28,2,f +10288,90639pr0034,148,1,f +10288,90640,148,1,f +10288,90640,41,1,f +10288,90641,15,1,f +10288,93571,0,4,f +10288,93575,41,2,f +10288,98577,72,1,f +10289,3403,4,2,f +10289,3404,4,2,f +10289,3679,7,2,f +10289,3680,1,2,f +10291,2352,14,2,f +10291,2456,14,4,f +10291,3001,1,10,f +10291,3001,4,14,f +10291,3001,14,10,f +10291,3001,15,14,f +10291,3001,0,4,f +10291,3001pr1,14,2,f +10291,3002,0,2,f +10291,3002,15,4,f +10291,3002,1,4,f +10291,3002,4,4,f +10291,3002,14,4,f +10291,3003,4,14,f +10291,3003,1,10,f +10291,3003,15,14,f +10291,3003,0,4,f +10291,3003,14,10,f +10291,3003pe1,4,2,f +10291,3003pe1,14,4,f +10291,3003pe4,15,2,f +10291,3003pe5,15,2,f +10291,3006,4,4,f +10291,3185,14,6,f +10291,3483,0,8,f +10291,4130,4,2,f +10291,4131,15,2,f +10291,4132,4,2,f +10291,4133,15,2,f +10291,4180c02,0,4,f +10291,4204,2,2,f +10291,4730,4,2,f +10291,4744,4,2,f +10291,4744,1,2,f +10291,4744p04,0,1,f +10291,4744pr0001,0,1,f +10291,4744pr0002,4,1,f +10291,4744px15,4,1,f +10291,4745,14,2,f +10291,6007,8,1,f +10293,2357,15,12,f +10293,2362a,47,4,f +10293,2420,1,12,f +10293,2431,4,6,f +10293,2447,41,8,f +10293,2447,41,1,t +10293,2639,0,4,f +10293,3009,15,4,f +10293,3010,15,4,f +10293,30171,15,4,f +10293,30171,0,4,f +10293,3020,0,18,f +10293,3021,0,4,f +10293,3022,0,4,f +10293,3023,1,12,f +10293,3023,4,20,f +10293,30284,0,2,f +10293,3032,0,6,f +10293,3033,1,4,f +10293,30374,0,8,f +10293,30592,1,2,f +10293,3062b,1,4,f +10293,3069b,4,16,f +10293,3176,1,6,f +10293,32034,15,2,f +10293,32062,0,2,f +10293,32123b,71,6,f +10293,32123b,71,1,t +10293,32126,0,2,f +10293,3460,1,8,f +10293,3460,4,4,f +10293,3578stk01,9999,1,t +10293,3622,15,8,f +10293,3623,4,4,f +10293,3626bpb0103,14,1,f +10293,3626bpb0161,14,1,f +10293,3626bpb0173,14,1,f +10293,3626bpb0181,14,1,f +10293,3626bpr0250,14,1,f +10293,3626bpr0251,14,1,f +10293,3626bpr0325,14,1,f +10293,3626bpx100,14,1,f +10293,3666,15,4,f +10293,3679,71,12,f +10293,3680,4,12,f +10293,3700,15,12,f +10293,3706,0,2,f +10293,3795,1,6,f +10293,3795,0,2,f +10293,4215b,47,8,f +10293,4282,0,6,f +10293,43372,0,2,f +10293,4477,1,8,f +10293,4477,4,8,f +10293,47576,0,3,f +10293,47577pb01,0,1,f +10293,47577pb02,15,1,f +10293,47577pb03,0,1,f +10293,47577pb04,15,1,f +10293,47577pb05,0,1,f +10293,47577pb06,15,1,f +10293,47577pb07,0,1,f +10293,47577pb08,15,1,f +10293,4773,36,2,f +10293,4773,36,1,t +10293,48092,15,4,f +10293,48288pb01,15,4,f +10293,48288pb02,15,4,f +10293,48288pb03,15,2,f +10293,48288pb04,15,2,f +10293,48289,0,6,f +10293,48290,0,6,f +10293,48291,0,6,f +10293,48294,4,2,f +10293,48298,4,4,f +10293,50450,15,2,f +10293,50451,15,4,f +10293,6141,15,1,t +10293,6141,15,2,f +10293,6538b,0,10,f +10293,6589,14,6,f +10293,6636,4,2,f +10293,78c04,15,4,f +10293,78c06,1,2,f +10293,970x106,0,4,f +10293,970x106,15,4,f +10293,973c05,15,4,f +10293,973c05,0,4,f +10294,3020,7,8,f +10294,3021,7,8,f +10294,3022,7,8,f +10294,3023,7,8,f +10294,3029,7,4,f +10294,3031,7,4,f +10294,3032,7,4,f +10294,3034,7,4,f +10294,3035,7,4,f +10294,3036,7,4,f +10294,3460,7,4,f +10294,3623,7,4,f +10294,3666,7,4,f +10294,3710,7,4,f +10294,3795,7,4,f +10294,3832,7,4,f +10294,4477,7,4,f +10298,10192stk01,9999,1,t +10298,2357,15,10,f +10298,2412b,0,6,f +10298,2412b,4,10,f +10298,2420,0,6,f +10298,2431,15,9,f +10298,2444,15,2,f +10298,2446,0,4,f +10298,2447,40,4,f +10298,2447,40,1,t +10298,2456,15,4,f +10298,2476a,71,1,f +10298,2540,0,4,f +10298,2540,4,4,f +10298,2540,72,4,f +10298,2555,15,2,f +10298,2566,0,7,f +10298,2780,0,4,f +10298,2780,0,1,t +10298,2877,0,2,f +10298,298c02,0,8,f +10298,298c02,0,1,t +10298,3001,15,2,f +10298,3001,0,1,f +10298,3002,15,3,f +10298,3003,15,1,f +10298,3004,0,16,f +10298,3004,15,12,f +10298,3005,15,4,f +10298,3005,0,3,f +10298,3007,15,1,f +10298,3009,15,3,f +10298,3010,15,8,f +10298,3020,72,1,f +10298,3020,0,5,f +10298,3020,15,11,f +10298,3021,15,7,f +10298,3022,0,1,f +10298,3022,15,7,f +10298,3023,36,66,f +10298,3023,0,14,f +10298,3023,15,9,f +10298,3024,36,9,f +10298,3024,0,2,f +10298,3031,0,1,f +10298,3031,15,2,f +10298,3032,15,4,f +10298,3034,0,2,f +10298,30367b,0,3,f +10298,30377,0,1,t +10298,30377,0,4,f +10298,3039,15,15,f +10298,3039pr0002,15,2,f +10298,3040b,4,3,f +10298,3040b,15,8,f +10298,30414,72,4,f +10298,30552,0,16,f +10298,30553,72,18,f +10298,30554b,0,94,f +10298,3062b,0,14,f +10298,3068b,15,8,f +10298,3069b,15,7,f +10298,32000,15,7,f +10298,32000,0,9,f +10298,32062,4,2,f +10298,32064b,71,1,f +10298,3626b,0,4,f +10298,3626bpr0190,15,4,f +10298,3660,0,3,f +10298,3665,0,3,f +10298,3665,15,12,f +10298,3666,15,2,f +10298,3666,0,3,f +10298,3679,71,1,f +10298,3680,0,1,f +10298,3700,0,5,f +10298,3705,0,3,f +10298,3710,0,2,f +10298,3710,15,19,f +10298,3713,71,1,f +10298,3713,71,1,t +10298,3794a,0,12,f +10298,3794a,15,3,f +10298,3795,0,1,f +10298,3795,15,9,f +10298,3894,72,3,f +10298,3937,0,11,f +10298,3941,42,4,f +10298,3941,15,3,f +10298,3941,0,3,f +10298,3941,71,2,f +10298,3957a,71,2,f +10298,3960,15,4,f +10298,4032a,4,5,f +10298,4032a,0,6,f +10298,40379,0,10,f +10298,4070,0,2,f +10298,4070,15,8,f +10298,4095,0,2,f +10298,4150pr0022,71,7,f +10298,41747,15,1,f +10298,41748,15,1,f +10298,41769,15,6,f +10298,41770,15,6,f +10298,41862,71,3,f +10298,42022,15,2,f +10298,42610,71,5,f +10298,4274,71,1,t +10298,4274,1,20,f +10298,4274,71,2,f +10298,4274,1,1,t +10298,4286,4,3,f +10298,4287,15,8,f +10298,43093,1,18,f +10298,4360,0,2,f +10298,43898,15,2,f +10298,44567a,0,2,f +10298,4460a,4,3,f +10298,4460a,0,2,f +10298,44676,0,4,f +10298,44728,0,17,f +10298,4519,71,3,f +10298,45677,15,7,f +10298,4588,72,2,f +10298,4697b,71,2,f +10298,4697b,71,1,t +10298,4733,72,2,f +10298,4740,15,2,f +10298,4740,0,4,f +10298,47458,0,8,f +10298,49668,15,28,f +10298,50950,15,44,f +10298,50950,4,3,f +10298,52107,0,1,f +10298,54200,15,3,f +10298,55982,71,5,f +10298,56145,0,2,f +10298,59443,71,2,f +10298,59900,0,8,f +10298,6019,0,4,f +10298,6091,0,2,f +10298,6134,71,11,f +10298,6141,15,1,t +10298,6141,42,1,t +10298,6141,0,1,t +10298,6141,15,8,f +10298,6141,42,15,f +10298,6141,0,4,f +10298,6541,0,6,f +10298,6564,0,1,f +10298,6565,0,1,f +10298,6587,72,1,f +10298,6636,15,1,f +10298,970c00,0,4,f +10298,973c45,0,4,f +10299,2412b,25,2,f +10299,2431,15,1,f +10299,2446,15,1,f +10299,2447,82,1,f +10299,2540,25,1,f +10299,3003,15,1,f +10299,3005,33,1,f +10299,30153,42,1,f +10299,3020,71,1,f +10299,3021,15,2,f +10299,3023,1,2,f +10299,3626b,0,2,f +10299,3626bpr0250,14,1,f +10299,3709,0,6,f +10299,3710,25,2,f +10299,3832,15,1,f +10299,4081b,71,1,f +10299,4085c,0,2,f +10299,43719,0,2,f +10299,43720,15,1,f +10299,43721,15,1,f +10299,44301a,72,4,f +10299,44302a,15,4,f +10299,44567a,71,1,f +10299,44661,15,1,f +10299,4589,33,1,f +10299,47844,182,1,f +10299,54200,15,1,t +10299,54200,15,2,f +10299,54383,15,2,f +10299,54384,15,2,f +10299,58844pat0001,34,1,f +10299,58845,34,1,f +10299,6141,72,1,t +10299,6141,72,1,f +10299,970x194,15,1,f +10299,973pr1317c01,15,1,f +10301,10201,0,1,f +10301,2412b,72,1,f +10301,2420,0,4,f +10301,2431,14,2,f +10301,2458,72,4,f +10301,2817,71,2,f +10301,3005,71,3,f +10301,3010,71,1,f +10301,3021,14,6,f +10301,3022,14,4,f +10301,3023,72,4,f +10301,3036,71,1,f +10301,3040b,28,4,f +10301,3068b,72,1,f +10301,32028,0,2,f +10301,3626cpr1215,78,1,f +10301,3626cpr1767,78,1,f +10301,3710,71,4,f +10301,3795,71,1,f +10301,3829c01,71,1,f +10301,3839b,72,1,f +10301,3957a,0,1,f +10301,4032a,15,1,f +10301,4081b,0,4,f +10301,43898,72,1,f +10301,44728,72,1,f +10301,4488,0,4,f +10301,48336,0,2,f +10301,50231,4,1,f +10301,50950,0,2,f +10301,52036,72,1,f +10301,54200,72,2,f +10301,54200,19,4,f +10301,54200,19,1,t +10301,54200,72,1,t +10301,59900,0,1,f +10301,6014b,71,4,f +10301,6019,71,1,f +10301,6141,47,1,t +10301,6141,36,3,f +10301,6141,47,2,f +10301,6141,72,1,t +10301,6141,72,4,f +10301,6141,36,1,t +10301,62360,47,1,f +10301,6636,72,2,f +10301,87580,19,1,f +10301,87697,0,4,f +10301,88930,14,2,f +10301,92081,0,1,f +10301,92593,0,1,f +10301,93273,0,4,f +10301,95347,0,1,f +10301,970c00pr0539,0,1,f +10301,970c00pr0539,272,1,f +10301,973pr2374c01,272,1,f +10301,973pr2375c01,0,1,f +10301,98138,179,1,f +10301,98138,179,1,t +10301,98282,0,4,f +10301,98726,0,1,f +10301,99781,71,4,f +10302,2436,19,1,f +10302,2540,71,2,f +10302,2555,0,2,f +10302,3023,2,4,f +10302,3023,71,2,f +10302,3024,2,1,f +10302,30383,19,2,f +10302,3039,2,2,f +10302,3040b,2,2,f +10302,3710,2,2,f +10302,3794a,0,1,f +10302,3839b,2,2,f +10302,3937,2,2,f +10302,3938,71,2,f +10302,3957a,71,1,f +10302,4085c,0,1,f +10302,44302a,2,4,f +10302,44302a,19,2,f +10302,44567a,19,4,f +10302,47905,0,2,f +10302,6141,4,2,f +10302,6141,4,1,t +10302,6141,36,2,f +10302,6141,36,1,t +10302,73983,2,2,f +10304,2855,47,1,f +10304,2856,0,1,f +10304,32072,8,2,f +10304,32198,7,2,f +10304,32269,7,2,f +10304,32270,7,2,f +10304,32498,7,2,f +10304,3647,7,2,f +10304,3647,7,1,t +10304,3648b,7,2,f +10304,3649,7,2,f +10304,3650c,7,2,f +10304,3736,7,2,f +10304,4019,7,2,f +10304,41666,7,1,f +10304,41666,7,1,t +10304,41667,7,1,f +10304,41667,7,1,t +10304,4185,7,2,f +10304,4716,0,2,f +10304,6542a,8,2,f +10304,6573,8,1,f +10304,6589,7,5,f +10305,3001a,4,4,f +10305,3002a,4,1,f +10305,3003,0,1,f +10305,3004,4,7,f +10305,3004,47,5,f +10305,3005,4,2,f +10305,3006,4,1,f +10305,3008,4,2,f +10305,3010,4,4,f +10305,3020,7,1,f +10305,3020,4,1,f +10305,3020,0,1,f +10305,3029,4,2,f +10305,3031,4,1,f +10305,3037,4,1,f +10305,3039,0,1,f +10305,3139,0,3,f +10305,3190,4,1,f +10305,3191,4,1,f +10305,3298,4,3,f +10305,3460,7,8,f +10305,3461,7,2,f +10305,3462,0,1,f +10305,3464,4,3,f +10305,3481,4,1,f +10305,8,7,3,f +10305,x453,47,1,f +10306,2335,0,6,f +10306,2339,70,17,f +10306,2343,47,1,f +10306,2343,297,3,f +10306,2343,71,1,f +10306,2357,0,2,f +10306,2397,72,1,f +10306,2417,288,14,f +10306,2420,72,2,f +10306,2420,15,2,f +10306,2420,0,6,f +10306,2431,308,10,f +10306,2432,71,2,f +10306,2450,0,4,f +10306,2453a,70,7,f +10306,2489,308,3,f +10306,2540,0,2,f +10306,2555,4,1,f +10306,2555,0,1,f +10306,2654,72,1,f +10306,2654,19,1,f +10306,2877,72,19,f +10306,2926,0,1,f +10306,3001,71,1,f +10306,3002,19,2,f +10306,3003,70,4,f +10306,3003,71,3,f +10306,3004,70,2,f +10306,3004,73,59,f +10306,3004,71,40,f +10306,3004,15,1,f +10306,3004,19,36,f +10306,3004,0,2,f +10306,30044,70,17,f +10306,30046,0,18,f +10306,3005,70,16,f +10306,3005,71,31,f +10306,3005,19,44,f +10306,3005,0,1,f +10306,3005,72,35,f +10306,3005,73,37,f +10306,3009,72,1,f +10306,3009,71,4,f +10306,3009,19,5,f +10306,3010,73,19,f +10306,3010,71,17,f +10306,3010,19,8,f +10306,30134,70,1,f +10306,30136,70,17,f +10306,30137,70,17,f +10306,30154,72,2,f +10306,3020,72,1,f +10306,3020,70,2,f +10306,3020,0,1,f +10306,3021,19,1,f +10306,3021,70,1,f +10306,3021,0,1,f +10306,3022,72,1,f +10306,3022,70,1,f +10306,3023,28,40,f +10306,3023,19,8,f +10306,3023,320,1,f +10306,3023,15,1,f +10306,3023,0,16,f +10306,3023,70,18,f +10306,3024,71,6,f +10306,3024,0,5,f +10306,3024,70,14,f +10306,3024,272,1,f +10306,30258,72,1,f +10306,3028,72,2,f +10306,3028,0,2,f +10306,3030,72,1,f +10306,3031,70,1,f +10306,3032,70,2,f +10306,3032,1,1,f +10306,3034,0,1,f +10306,3034,72,1,f +10306,3035,72,1,f +10306,30350b,70,2,f +10306,3036,72,2,f +10306,3036,0,2,f +10306,3037,0,37,f +10306,30374,70,10,f +10306,3038,0,12,f +10306,30385,80,1,f +10306,3039,0,19,f +10306,3039,71,1,f +10306,3040b,0,14,f +10306,3040b,70,12,f +10306,3040b,72,2,f +10306,3045,0,4,f +10306,3048c,0,1,f +10306,3062b,0,10,f +10306,3062b,70,92,f +10306,3062b,71,2,f +10306,3063b,0,2,f +10306,3068b,19,3,f +10306,3068b,70,2,f +10306,3069b,15,1,f +10306,3070b,15,1,t +10306,3070b,19,7,f +10306,3070b,70,5,f +10306,3070b,0,1,t +10306,3070b,70,1,t +10306,3070b,0,2,f +10306,3070b,15,1,f +10306,3070b,19,1,t +10306,3176,72,1,f +10306,3185,0,2,f +10306,32034,71,1,f +10306,32123b,71,2,f +10306,32123b,71,1,t +10306,32530,0,1,f +10306,3298,0,14,f +10306,3299,0,4,f +10306,33048c01,484,1,f +10306,33051,10,4,f +10306,3307,71,7,f +10306,33172,25,1,f +10306,33172,308,2,f +10306,33183,10,1,f +10306,33183,10,1,t +10306,33320,2,1,f +10306,3456,0,1,f +10306,3456,72,1,f +10306,3460,15,2,f +10306,3460,70,2,f +10306,3581,71,1,f +10306,3623,0,5,f +10306,3626bpr0325,14,1,f +10306,3626bpr0387,14,1,f +10306,3626bpr0495,14,2,f +10306,3626bpr0499,14,1,f +10306,3626bpr0500,14,1,f +10306,3626bpr0565,14,1,f +10306,3626bpr0567,14,1,f +10306,3633,72,1,f +10306,3659,71,2,f +10306,3659,0,1,f +10306,3659,73,2,f +10306,3660,71,1,f +10306,3660,72,2,f +10306,3660,70,2,f +10306,3665,71,1,f +10306,3665,70,68,f +10306,3666,72,1,f +10306,3666,0,14,f +10306,3666,70,4,f +10306,3673,71,1,t +10306,3673,71,3,f +10306,3678bpr0002a,70,1,f +10306,3678bpr0004a,0,1,f +10306,3680,0,4,f +10306,3684,71,5,f +10306,37,72,2,f +10306,3700,0,1,f +10306,3710,71,4,f +10306,3710,0,9,f +10306,3710,70,5,f +10306,3710,72,6,f +10306,3713,71,1,t +10306,3713,71,3,f +10306,3741,2,1,t +10306,3741,2,2,f +10306,3742,5,3,f +10306,3742,5,1,t +10306,3742,4,1,t +10306,3742,15,12,f +10306,3742,4,3,f +10306,3794b,297,4,f +10306,3794b,70,7,f +10306,3795,308,4,f +10306,3830,72,2,f +10306,3831,72,2,f +10306,3832,70,2,f +10306,3844,80,2,f +10306,3847,179,1,f +10306,3848,72,1,f +10306,3849,179,1,f +10306,3852b,191,1,f +10306,3941,70,1,f +10306,3957a,0,1,f +10306,40233,28,1,f +10306,40234,71,1,f +10306,40241,70,1,f +10306,4032a,19,1,f +10306,4032a,70,4,f +10306,4070,72,8,f +10306,4070,70,12,f +10306,4070,71,4,f +10306,4081b,0,4,f +10306,4081b,19,5,f +10306,4085c,0,5,f +10306,4085c,4,1,f +10306,4161,0,12,f +10306,41879a,70,1,f +10306,4286,70,4,f +10306,43888,70,2,f +10306,44294,71,1,f +10306,4445,0,3,f +10306,4460b,71,2,f +10306,4460b,70,4,f +10306,4477,70,3,f +10306,4489b,70,2,f +10306,4495b,272,1,f +10306,4495b,297,1,f +10306,4497,179,3,f +10306,4505,308,2,f +10306,4510,0,1,f +10306,4522,0,1,f +10306,4523,70,2,f +10306,4530,19,1,f +10306,4589,182,2,f +10306,4599a,71,2,f +10306,4623,0,1,f +10306,4733,0,1,f +10306,4733,72,1,f +10306,4733,15,1,f +10306,4738a,70,1,f +10306,4739a,70,1,f +10306,47905,0,3,f +10306,47905,19,8,f +10306,49668,191,2,f +10306,49668,19,1,f +10306,49668,15,2,f +10306,49668,0,2,f +10306,49668,288,2,f +10306,50745,0,2,f +10306,50950,272,4,f +10306,50950,320,4,f +10306,54200,0,5,f +10306,54200,70,1,f +10306,54200,70,1,t +10306,54200,15,2,t +10306,54200,14,1,f +10306,54200,15,1,f +10306,54200,0,1,t +10306,54200,14,1,t +10306,54200,72,3,f +10306,54200,72,1,t +10306,57503,334,1,f +10306,57504,334,1,f +10306,57505,334,1,f +10306,57506,334,1,f +10306,59275,25,2,f +10306,59275,25,2,t +10306,59363,70,1,f +10306,59900,19,5,f +10306,59900,0,1,f +10306,59900,2,2,f +10306,59900,70,9,f +10306,59900,15,1,f +10306,59900,71,1,f +10306,6019,297,2,f +10306,6041,0,1,f +10306,60474,72,1,f +10306,60475a,71,4,f +10306,60475a,0,1,f +10306,60479,308,2,f +10306,60479,0,6,f +10306,60594,0,4,f +10306,60607,15,8,f +10306,6091,320,10,f +10306,6091,0,2,f +10306,6141,70,1,t +10306,6141,14,1,t +10306,6141,46,1,t +10306,6141,29,1,f +10306,6141,72,4,f +10306,6141,57,5,f +10306,6141,14,2,f +10306,6141,19,2,t +10306,6141,19,24,f +10306,6141,4,1,f +10306,6141,70,45,f +10306,6141,71,2,t +10306,6141,57,1,t +10306,6141,46,4,f +10306,6141,29,1,t +10306,6141,15,1,f +10306,6141,71,4,f +10306,6141,297,3,t +10306,6141,4,1,t +10306,6141,297,44,f +10306,6141,15,1,t +10306,6141,72,1,t +10306,6179,72,1,f +10306,6182,71,6,f +10306,6182,19,3,f +10306,62113,0,2,f +10306,6231,0,4,f +10306,62361,71,3,f +10306,6256,82,1,f +10306,62696,308,1,f +10306,63965,71,1,f +10306,64452pr0001,70,2,f +10306,64566,0,2,f +10306,64644,308,20,f +10306,64647,4,1,t +10306,64647,57,4,f +10306,64647,4,1,f +10306,64648,179,5,f +10306,64847,15,4,f +10306,64951,70,3,f +10306,6541,71,2,f +10306,6541,0,2,f +10306,6636,70,8,f +10306,73983,0,2,f +10306,75998pr0007,15,1,f +10306,85217,9999,1,t +10306,970c00,72,1,f +10306,970c00,0,1,f +10306,970x026,71,2,f +10306,970x199,70,1,f +10306,973pr0400c01,28,2,f +10306,973pr0410c01,19,1,f +10306,973pr0420c01,70,1,f +10306,973pr0430c01,272,2,f +10306,973pr1449c01,0,1,f +10306,973pr1452c01,28,1,f +10309,3001a,1,38,f +10309,3001a,15,56,f +10309,3001a,47,5,f +10309,3001a,0,18,f +10309,3001a,14,64,f +10309,3001a,4,74,f +10309,3002a,15,20,f +10309,3002a,0,18,f +10309,3002a,4,22,f +10309,3002a,1,20,f +10309,3002a,47,6,f +10309,3002a,14,20,f +10309,3003,14,18,f +10309,3003,0,6,f +10309,3003,1,12,f +10309,3003,4,28,f +10309,3003,15,30,f +10309,3003,47,6,f +10309,3004,0,6,f +10309,3004,14,8,f +10309,3004,4,12,f +10309,3004,15,18,f +10309,3004,1,6,f +10309,3006,4,2,f +10309,3006,15,2,f +10309,3006,1,2,f +10309,3006,14,2,f +10309,3007,1,2,f +10309,3007,15,2,f +10309,3007,4,2,f +10309,3007,14,2,f +10309,3009,14,2,f +10309,3009,4,4,f +10309,3009,1,2,f +10309,3009,15,2,f +10309,3010,0,4,f +10309,3010,4,6,f +10309,3010,47,6,f +10309,3028,15,3,f +10309,3030,15,4,f +10309,3030,1,1,f +10309,3033,4,4,f +10309,3039,4,3,f +10309,3039,1,3,f +10309,3081cc01,4,10,f +10309,3483,0,20,f +10309,3579,1,6,f +10309,3579,4,1,f +10309,3612,1,2,f +10309,3612,4,2,f +10309,3613,1,2,f +10309,3613,4,2,f +10309,3614a,14,4,f +10309,3660,1,3,f +10309,3660,4,3,f +10309,453cc01,15,4,f +10309,453cc01,4,4,f +10309,604c01,4,6,f +10309,685p01,14,1,f +10309,685px4,14,1,f +10309,7039,4,20,f +10309,7049b,0,10,f +10309,792c03,4,1,f +10309,792c03,1,1,f +10309,7930,4,6,f +10309,7930,15,1,f +10309,x196,0,1,f +10309,x197,6,1,f +10315,2412b,7,1,f +10315,2431pa0,19,1,f +10315,2436,1,1,f +10315,2441,0,1,f +10315,2454a,19,2,f +10315,2454a,7,2,f +10315,2454pa0,19,1,f +10315,2454px3,19,1,f +10315,2554,0,2,f +10315,3002,7,2,f +10315,3004,15,1,f +10315,3004,8,1,f +10315,30115,4,1,f +10315,30132,8,1,f +10315,30141,8,1,f +10315,30147,7,1,f +10315,30150,6,1,f +10315,30153,36,1,f +10315,30163,1,1,f +10315,30164,0,1,f +10315,30168px1,14,1,f +10315,30169,0,1,f +10315,3021,7,2,f +10315,3021,6,2,f +10315,3023,1,2,f +10315,3023,15,1,f +10315,3023,0,1,f +10315,3029,19,1,f +10315,3039,8,1,f +10315,3043,0,2,f +10315,3048c,0,1,f +10315,3062b,1,6,f +10315,3455,7,1,f +10315,3581,7,2,f +10315,3622,1,2,f +10315,3626bpa2,7,1,f +10315,3626bpa9,14,1,f +10315,3641,0,4,f +10315,3710,7,1,f +10315,3710,8,1,f +10315,3829c01,15,1,f +10315,3832,7,1,f +10315,3837,8,1,f +10315,3841,8,1,f +10315,3878,0,1,f +10315,3899,15,1,f +10315,4070,7,2,f +10315,4624,7,4,f +10315,4865a,8,2,f +10315,4865a,47,1,f +10315,6091,8,2,f +10315,6141,46,2,f +10315,970c00,0,1,f +10315,970c11pb01,0,1,f +10315,973p22c01,0,1,f +10315,973pa2c01,0,1,f +10316,2335,15,2,f +10316,2412b,0,4,f +10316,2412b,25,4,f +10316,2431,15,4,f +10316,2432,72,2,f +10316,2454a,15,8,f +10316,2456,19,1,f +10316,2458,15,1,f +10316,2540,72,3,f +10316,2584,0,1,f +10316,2585,71,1,f +10316,2654,72,1,f +10316,2817,71,1,f +10316,3005,15,2,f +10316,3010,15,1,f +10316,30192,72,1,f +10316,3020,15,6,f +10316,3020,72,7,f +10316,3021,15,1,f +10316,3022,71,5,f +10316,3023,71,7,f +10316,3023,15,5,f +10316,3029,15,1,f +10316,3030,71,2,f +10316,3031,72,5,f +10316,3033,15,1,f +10316,3035,71,1,f +10316,30359b,71,2,f +10316,3036,71,1,f +10316,30363,71,4,f +10316,30370pr03,15,1,f +10316,30372pr0001,40,1,f +10316,30374,41,1,f +10316,3039,15,9,f +10316,3039,72,1,f +10316,3040b,25,4,f +10316,3040b,15,11,f +10316,30414,72,2,f +10316,3068b,15,8,f +10316,3068b,72,2,f +10316,3068b,14,2,f +10316,3069b,72,2,f +10316,3069b,15,6,f +10316,32064b,71,1,f +10316,32073,71,1,f +10316,32270,0,1,f +10316,3298,15,4,f +10316,33057,484,1,f +10316,3456,72,1,f +10316,3622,71,1,f +10316,3626bpr0631,78,1,f +10316,3626cpr0635,78,1,f +10316,3626cpr0895,15,1,f +10316,3665,15,2,f +10316,3666,19,2,f +10316,3684,15,5,f +10316,3700,15,2,f +10316,3710,72,4,f +10316,3743,0,1,f +10316,3795,19,2,f +10316,3832,15,2,f +10316,3937,71,2,f +10316,3938,15,2,f +10316,4032a,72,4,f +10316,4081b,19,4,f +10316,4150,15,2,f +10316,41769,15,2,f +10316,41770,15,2,f +10316,42446,71,1,f +10316,42610,71,2,f +10316,4286,15,2,f +10316,4287,71,2,f +10316,43093,1,3,f +10316,43337,15,4,f +10316,4349,0,1,f +10316,43719,15,1,f +10316,43722,71,1,f +10316,43723,71,1,f +10316,44294,71,2,f +10316,44301a,72,6,f +10316,44302a,14,4,f +10316,44728,71,3,f +10316,4477,15,2,f +10316,4510,71,2,f +10316,4588,72,2,f +10316,4589,72,2,f +10316,4623,71,1,f +10316,46304,15,1,f +10316,46304,15,1,t +10316,47397,15,1,f +10316,47398,15,1,f +10316,47847,72,1,f +10316,4855,15,1,f +10316,4858,15,1,f +10316,49668,15,4,f +10316,53451,15,1,t +10316,53451,15,8,f +10316,54200,15,1,t +10316,54200,15,11,f +10316,56823c50,0,1,f +10316,59230,15,1,t +10316,59230,15,2,f +10316,59443,72,2,f +10316,60115,15,1,f +10316,6019,71,1,f +10316,60479,15,1,f +10316,6141,15,8,f +10316,6141,0,4,f +10316,6141,15,1,t +10316,6141,0,2,t +10316,6238,40,1,f +10316,6266,15,2,f +10316,64567,80,1,f +10316,6541,19,4,f +10316,8089stk01,9999,1,t +10316,86057,72,1,f +10316,86058,72,1,f +10316,87079,15,1,f +10316,87555,19,1,f +10316,89752,15,1,f +10316,90254,15,1,f +10316,90255,15,1,f +10316,970c00,71,1,f +10316,970x199,25,1,f +10316,973pr1578c01,25,1,f +10316,973pr1614c01,28,1,f +10319,3069bpb125,15,1,f +10319,3626bpb0433,14,1,f +10319,4006,0,1,f +10319,88646,0,1,f +10319,970c00pr0138,14,1,f +10319,973pr1536c01,14,1,f +10321,122c01,7,2,f +10321,3005,15,2,f +10321,3021,15,2,f +10321,3024,4,4,f +10321,3031,15,1,f +10321,3062a,33,1,f +10321,3625,0,1,f +10321,3626apr0001,14,1,f +10321,3641,0,4,f +10321,3710,4,4,f +10321,3710,15,1,f +10321,3788,4,2,f +10321,3794a,15,1,f +10321,3821,4,1,f +10321,3822,4,1,f +10321,3823,47,1,f +10321,3829c01,4,1,f +10321,4212a,4,1,f +10321,623.1stk01,9999,1,t +10321,970c00,4,1,f +10321,973c01,15,1,f +10326,2357,4,4,f +10326,2412b,0,6,f +10326,2412b,4,2,f +10326,2412b,7,2,f +10326,2420,0,4,f +10326,2431,0,2,f +10326,2434,7,1,f +10326,2446,0,3,f +10326,2447,34,2,f +10326,2447,42,1,f +10326,2450,0,4,f +10326,2463,34,2,f +10326,2466,34,2,f +10326,2483p50,34,1,f +10326,2507,34,2,f +10326,2569,4,2,f +10326,2593,0,12,f +10326,3004,0,2,f +10326,3004,7,5,f +10326,3005,7,6,f +10326,3006,7,2,f +10326,3008,4,2,f +10326,3008,0,1,f +10326,3009,4,5,f +10326,3010,4,2,f +10326,3021,7,4,f +10326,3022,0,3,f +10326,3023,0,8,f +10326,3023,7,6,f +10326,3024,0,2,f +10326,3032,0,1,f +10326,3034,7,1,f +10326,3034,0,1,f +10326,3035,0,1,f +10326,3039pc3,7,1,f +10326,3068bp69,0,1,f +10326,3069bp15,0,4,f +10326,3069bp25,7,3,f +10326,3298pb010,0,4,f +10326,3455,7,1,f +10326,3460,7,1,f +10326,3475b,0,4,f +10326,3626bp69,14,2,f +10326,3626bpr0001,14,1,f +10326,3659,7,2,f +10326,3665,0,4,f +10326,3710,7,1,f +10326,3710,0,7,f +10326,3730,0,1,f +10326,3731,0,1,f +10326,3830,0,6,f +10326,3831,0,6,f +10326,3832,0,10,f +10326,3838,0,3,f +10326,3839b,0,3,f +10326,3900,0,2,f +10326,3933,0,1,f +10326,3934,0,1,f +10326,3937,7,2,f +10326,3938,0,2,f +10326,3956,0,1,f +10326,3957a,4,2,f +10326,3958,0,2,f +10326,4032a,0,10,f +10326,4070,7,4,f +10326,4081b,0,2,f +10326,4151a,0,1,f +10326,4215a,34,1,f +10326,4229,0,2,f +10326,4275b,0,4,f +10326,4286,7,4,f +10326,4315,0,2,f +10326,4349,15,1,f +10326,4477,0,2,f +10326,4531,0,4,f +10326,4591,0,1,f +10326,4595,0,2,f +10326,4625,0,1,f +10326,4730,7,12,f +10326,4859,0,2,f +10326,4864a,0,1,f +10326,6019,0,2,f +10326,6058,7,1,f +10326,6061,7,3,f +10326,6087,7,2,f +10326,970x001,2,2,f +10326,970x026,15,1,f +10326,973p51c01,15,1,f +10326,973p69c01,15,2,f +10327,11090,70,1,f +10327,11097,41,1,f +10327,11097,297,1,f +10327,11100,25,2,f +10327,11100,71,2,f +10327,11127,182,1,f +10327,11127,41,1,f +10327,11153,4,1,f +10327,11215,0,1,f +10327,11458,72,2,f +10327,11476,71,1,f +10327,11477,4,2,f +10327,14417,72,1,f +10327,14704,71,1,f +10327,15573,297,1,f +10327,15706,70,4,f +10327,15712,71,2,f +10327,15712,297,2,f +10327,15976,4,2,f +10327,16656pr0002,4,1,f +10327,16659pr0002,15,1,f +10327,16770,182,1,f +10327,17114,0,1,f +10327,18395,191,3,f +10327,18396pat0001,4,8,f +10327,18649,0,1,f +10327,18671,72,1,f +10327,2540,4,6,f +10327,2654,182,4,f +10327,3001,72,1,f +10327,3020,71,1,f +10327,3020,14,1,f +10327,3022,4,1,f +10327,3022,71,1,f +10327,3023,320,2,f +10327,3023,72,3,f +10327,3024,4,2,f +10327,30374,70,1,f +10327,30374,297,1,f +10327,3062b,41,4,f +10327,32039,4,2,f +10327,32064a,4,1,f +10327,32192,4,2,f +10327,3626cpr1419,15,1,f +10327,3626cpr1432,4,1,f +10327,3666,4,2,f +10327,3710,70,4,f +10327,3795,4,1,f +10327,3941,71,2,f +10327,41769,4,1,f +10327,41769,320,1,f +10327,41770,4,1,f +10327,41770,320,1,f +10327,41879a,4,1,f +10327,43093,1,2,f +10327,43713,4,1,f +10327,44567a,14,1,f +10327,4740,41,2,f +10327,47753,4,2,f +10327,48336,0,2,f +10327,50950,320,2,f +10327,52107,71,1,f +10327,57585,71,1,f +10327,59900,182,8,f +10327,60471,71,1,f +10327,60478,0,4,f +10327,60752,179,1,f +10327,61184,71,2,f +10327,63868,4,8,f +10327,64567,297,1,f +10327,6541,70,2,f +10327,6636,4,2,f +10327,73983,0,2,f +10327,87083,72,2,f +10327,87747,297,6,f +10327,90609,0,2,f +10327,90640,57,2,f +10327,92280,4,2,f +10327,92946,4,3,f +10327,93273,320,2,f +10327,93273pr0008,4,2,f +10327,970d00pr0661,15,1,f +10327,973pr2663c01,15,1,f +10327,973pr2676c01,4,1,f +10327,98100,71,2,f +10327,98138,41,1,f +10327,98138pr0023,182,1,f +10327,98313,297,4,f +10328,30556,2,1,f +10328,30598,25,1,f +10328,30600pb04,2,1,f +10328,30603pb16,2,1,f +10328,racerbase,10,1,f +10328,rb00168,0,2,f +10331,10288,308,1,f +10331,11477,15,3,f +10331,12825,72,8,f +10331,2412b,179,5,f +10331,2420,14,4,f +10331,2431,15,4,f +10331,2431,0,8,f +10331,2432,70,2,f +10331,2444,0,3,f +10331,2540,72,1,f +10331,2653,0,4,f +10331,2654,0,7,f +10331,2780,0,10,f +10331,2780,0,1,t +10331,3001,0,2,f +10331,3001,14,1,f +10331,3002,1,2,f +10331,3004,15,3,f +10331,3005,15,2,f +10331,3005,14,2,f +10331,3009,14,4,f +10331,3009,15,2,f +10331,3009,1,2,f +10331,30099,15,1,f +10331,3010,14,4,f +10331,3010,71,2,f +10331,3020,1,5,f +10331,3020,15,7,f +10331,3020,0,5,f +10331,3021,1,4,f +10331,3021,15,3,f +10331,3022,14,2,f +10331,3023,15,2,f +10331,3023,0,8,f +10331,3023,46,2,f +10331,3023,14,6,f +10331,3024,36,1,t +10331,3024,15,1,t +10331,3024,15,4,f +10331,3024,14,2,f +10331,3024,0,2,f +10331,3024,14,1,t +10331,3024,0,1,t +10331,3024,36,2,f +10331,3024,34,1,t +10331,3024,34,2,f +10331,3031,15,1,f +10331,3032,1,9,f +10331,3034,15,2,f +10331,3035,1,4,f +10331,30374,42,2,f +10331,3039pr0013,15,1,f +10331,3040b,15,2,f +10331,30503,1,4,f +10331,30565,272,4,f +10331,3062b,71,6,f +10331,3068b,15,3,f +10331,3069b,14,8,f +10331,3069b,1,2,f +10331,3069b,0,2,f +10331,3069bpr0101,71,1,f +10331,32000,14,8,f +10331,32001,14,4,f +10331,32002,19,3,f +10331,32002,19,1,t +10331,32013,72,4,f +10331,32028,71,6,f +10331,32054,0,1,f +10331,32059,1,2,f +10331,32062,4,5,f +10331,32064b,4,1,f +10331,32123b,14,1,t +10331,32123b,14,4,f +10331,32124,0,1,f +10331,32140,71,3,f +10331,32198,19,1,f +10331,32270,0,1,f +10331,32316,0,4,f +10331,32449,4,2,f +10331,32523,71,2,f +10331,32525,71,1,f +10331,33243,15,2,f +10331,3460,71,2,f +10331,3622,15,3,f +10331,3623,0,2,f +10331,3623,1,4,f +10331,3660,1,10,f +10331,3665,1,6,f +10331,3666,14,5,f +10331,3666,1,10,f +10331,3666,15,5,f +10331,3673,71,1,t +10331,3673,71,2,f +10331,3700,15,9,f +10331,3701,14,2,f +10331,3701,71,2,f +10331,3706,0,1,f +10331,3710,1,5,f +10331,3710,15,10,f +10331,3710,272,2,f +10331,3710,14,8,f +10331,3713,4,1,t +10331,3713,4,2,f +10331,3747b,1,4,f +10331,3749,19,1,f +10331,3794b,15,12,f +10331,3795,1,7,f +10331,3832,14,2,f +10331,3832,0,11,f +10331,3894,15,2,f +10331,3941,0,1,f +10331,40620,71,2,f +10331,41677,4,2,f +10331,41678,71,1,f +10331,41767,14,2,f +10331,41768,14,2,f +10331,41769,1,2,f +10331,41769,0,4,f +10331,41770,1,2,f +10331,41770,0,1,f +10331,42610,71,1,f +10331,4274,1,1,t +10331,4274,1,2,f +10331,4282,15,2,f +10331,4287,1,2,f +10331,4287,0,4,f +10331,43093,1,3,f +10331,43722,14,2,f +10331,43723,14,2,f +10331,44570,15,1,f +10331,4477,15,5,f +10331,4477,1,9,f +10331,4477,0,2,f +10331,4510,1,2,f +10331,4519,71,3,f +10331,45590,0,1,f +10331,4624,71,2,f +10331,47397,15,1,f +10331,47398,15,1,f +10331,48336,1,4,f +10331,4865b,15,4,f +10331,4871,1,2,f +10331,48729a,0,1,t +10331,48729a,0,1,f +10331,52501,1,3,f +10331,54200,36,3,f +10331,54200,36,1,t +10331,54200,71,1,t +10331,54200,71,2,f +10331,54200,15,1,t +10331,54200,15,3,f +10331,54383,1,1,f +10331,54384,1,1,f +10331,55817,179,1,f +10331,56902,71,2,f +10331,59426,72,1,f +10331,59895,0,1,t +10331,59895,0,2,f +10331,60219,1,2,f +10331,60478,4,2,f +10331,6081,15,3,f +10331,60897,71,4,f +10331,6091,71,2,f +10331,6091,15,4,f +10331,61252,1,2,f +10331,61254,0,2,f +10331,61409,72,2,f +10331,6141,80,25,f +10331,6141,80,1,t +10331,61483,71,1,f +10331,6191,15,2,f +10331,6231,0,2,f +10331,63864,15,4,f +10331,63868,1,2,f +10331,6558,1,8,f +10331,6628,0,2,f +10331,6630,0,1,f +10331,6636,14,10,f +10331,6636,0,4,f +10331,75937,179,1,f +10331,85984,14,10,f +10331,85984,1,3,f +10331,85984,0,4,f +10331,87079,72,5,f +10331,87082,0,2,f +10331,88292,0,2,f +10331,88930,1,4,f +10331,91988,71,1,f +10331,92279,40,2,f +10331,92280,15,4,f +10331,92582,15,2,f +10331,92593,71,7,f +10331,92907,71,1,f +10331,93273,15,6,f +10331,94925,71,2,f +10331,96874,25,1,t +10331,98284,0,1,f +10331,99206,71,4,f +10331,99781,71,2,f +10332,2456,4,1,f +10332,2456,14,1,f +10332,3001,4,4,f +10332,3001,1,4,f +10332,3001,2,2,f +10332,3001,15,4,f +10332,3001,14,4,f +10332,3002,15,6,f +10332,3002,1,6,f +10332,3002,14,6,f +10332,3002,2,4,f +10332,3002,4,6,f +10332,3003,1,14,f +10332,3003,4,14,f +10332,3003,15,14,f +10332,3003,2,6,f +10332,3003,14,14,f +10332,3004,14,14,f +10332,3004,4,14,f +10332,3004,15,14,f +10332,3004,1,14,f +10332,3004,2,10,f +10332,3005,2,8,f +10332,3005,15,12,f +10332,3005,1,12,f +10332,3005,4,12,f +10332,3005,14,12,f +10332,3007,1,1,f +10332,3007,15,1,f +10332,3008,4,2,f +10332,3008,15,2,f +10332,3008,1,2,f +10332,3008,14,2,f +10332,3009,4,2,f +10332,3009,14,2,f +10332,3009,1,2,f +10332,3009,15,2,f +10332,3010,2,2,f +10332,3010,15,2,f +10332,3010,1,2,f +10332,3010,14,2,f +10332,3010,4,2,f +10332,3622,2,4,f +10332,3622,15,4,f +10332,3622,4,4,f +10332,3622,14,4,f +10332,3622,1,4,f +10333,132a,7,4,f +10333,3001a,0,6,f +10333,3005,0,6,f +10333,3005,47,2,f +10333,3005pt3,15,1,f +10333,3005pty,15,1,f +10333,3035,15,1,f +10333,3065,47,9,f +10333,3065,0,10,f +10333,3087bc01,15,2,f +10333,7039,4,4,f +10333,7049a,15,2,f +10334,45463,41,1,f +10334,46281,57,1,f +10334,46286,41,1,f +10334,clikits037,9,1,f +10334,clikits084,57,1,f +10335,3004,4,15,f +10335,3005,4,14,f +10335,3008,4,6,f +10335,3008p06,4,1,f +10335,3009,4,6,f +10335,3010,4,3,f +10335,3030,0,1,f +10335,3033,0,2,f +10335,3185,0,1,f +10335,3460,4,2,f +10335,3581,4,2,f +10335,3626apr0001,14,1,f +10335,3644,15,2,f +10335,3666,4,3,f +10335,3836,6,1,f +10335,3837,8,1,f +10335,3853,1,4,f +10335,3854,15,8,f +10335,3861b,15,1,f +10335,3865,2,2,f +10335,3901,6,1,f +10335,970c00,1,1,f +10335,973p26c01,1,1,f +10336,fab9f,15,1,f +10336,fabei6,4,1,f +10336,fabei7,366,1,f +10339,10113,0,1,f +10339,14210,15,1,f +10339,2357,2,2,f +10339,2420,0,2,f +10339,2444,72,5,f +10339,2450,71,2,f +10339,2654,71,4,f +10339,2654,4,3,f +10339,2780,0,4,f +10339,2780,0,1,t +10339,2817,71,2,f +10339,298c02,14,2,f +10339,298c02,71,2,f +10339,298c02,71,1,t +10339,298c02,14,1,t +10339,3004,72,2,f +10339,3005,0,2,f +10339,3005,2,2,f +10339,3010,2,1,f +10339,3020,72,6,f +10339,3020,14,3,f +10339,3022,71,2,f +10339,3023,14,10,f +10339,3023,0,2,f +10339,30248,72,1,f +10339,3030,72,1,f +10339,3032,72,1,f +10339,30361c,4,1,f +10339,30363,14,1,f +10339,30367cpr0020,15,1,f +10339,30374,71,1,f +10339,30377,15,4,f +10339,30377,15,1,t +10339,30383,72,4,f +10339,30414,0,1,f +10339,30503,0,4,f +10339,30552,72,3,f +10339,30592,72,1,f +10339,30602,85,1,f +10339,3068b,14,1,f +10339,3068b,0,2,f +10339,3069bpr0101,71,1,f +10339,32001,0,2,f +10339,32034,4,1,f +10339,32064b,2,2,f +10339,32525,72,1,f +10339,3623,72,2,f +10339,3626bpr0896,78,1,f +10339,3626cpr0898,15,1,f +10339,3626cpr0911,78,1,f +10339,3660,0,2,f +10339,3665,0,2,f +10339,3673,71,4,f +10339,3673,71,1,t +10339,3700,0,4,f +10339,3701,0,3,f +10339,3710,2,1,f +10339,3710,72,2,f +10339,3747b,0,1,f +10339,3749,19,2,f +10339,3795,2,2,f +10339,3795,72,3,f +10339,3832,0,2,f +10339,3894,0,1,f +10339,41334,0,1,f +10339,4162,0,4,f +10339,41747,0,1,f +10339,41748,0,1,f +10339,41764,0,1,f +10339,41765,0,1,f +10339,41769,72,1,f +10339,41770,72,1,f +10339,4274,71,1,t +10339,4274,71,1,f +10339,4286,2,4,f +10339,43719,0,1,f +10339,43722,2,1,f +10339,43722,0,4,f +10339,43723,0,4,f +10339,43723,2,1,f +10339,44302a,0,4,f +10339,44728,0,1,f +10339,4495b,4,1,f +10339,4617b,0,1,f +10339,4733,0,1,f +10339,47397,0,1,f +10339,47398,0,1,f +10339,47753,0,2,f +10339,48336,0,1,f +10339,4865a,288,2,f +10339,50304,0,4,f +10339,50305,0,4,f +10339,53585,0,1,f +10339,53705,0,2,f +10339,54200,46,1,t +10339,54200,46,2,f +10339,56630,0,1,f +10339,57585,71,1,f +10339,57906,0,3,f +10339,58176,182,4,f +10339,58176,33,2,f +10339,58827,0,1,f +10339,59426,72,1,f +10339,59900,36,1,f +10339,60470a,2,1,f +10339,60477,0,2,f +10339,6070,85,2,f +10339,61072,0,2,f +10339,61184,71,6,f +10339,61406pat0006,0,1,f +10339,61409,72,8,f +10339,6141,25,1,t +10339,6141,25,1,f +10339,6141,14,2,t +10339,6141,85,4,f +10339,6141,14,6,f +10339,6141,85,1,t +10339,61678,0,2,f +10339,6179,0,1,f +10339,6180,0,2,f +10339,6232,72,1,f +10339,6239,15,1,f +10339,62462,71,1,f +10339,64798,2,1,f +10339,6587,28,2,f +10339,6863stk01,9999,1,t +10339,85959pat0001,36,1,f +10339,85970,0,4,f +10339,85973,0,1,f +10339,85984,0,2,f +10339,85984,72,1,f +10339,85984,85,2,f +10339,87087,4,6,f +10339,90194,72,1,f +10339,92279,40,1,f +10339,92280,0,4,f +10339,92579,47,1,f +10339,92946,72,2,f +10339,93273,0,1,f +10339,93273,72,1,f +10339,970c00,85,2,f +10339,970c00,0,1,f +10339,973pr1961c01,0,1,f +10339,973pr1963c01,27,1,f +10339,973pr2150c01,85,1,f +10339,98721,0,1,f +10341,2921,4,2,f +10341,3023,4,8,f +10341,3024,47,6,f +10341,3024,4,8,f +10341,3029,4,1,f +10341,3029,0,1,f +10341,3068b,0,6,f +10341,3070b,4,4,f +10341,3666,15,2,f +10341,3666,2,2,f +10341,3794b,4,4,f +10341,3832,0,1,f +10341,4070,4,4,f +10341,4081b,0,4,f +10341,44567a,0,2,f +10341,4600,0,4,f +10341,4624,71,8,f +10341,60032,4,8,f +10341,6141,47,4,f +10341,6141,0,4,f +10341,85984,0,12,f +10343,2919,46,1,f +10343,2928,0,1,f +10343,6035,15,1,f +10344,14210,2,10,f +10344,14226c41,0,6,f +10344,2419,378,10,f +10344,2423,2,10,f +10344,2446,4,4,f +10344,2446,15,4,f +10344,2447,42,10,f +10344,2454a,15,10,f +10344,2486,14,8,f +10344,2569,42,10,f +10344,298c02,4,10,f +10344,298c02,4,1,t +10344,3001,3,20,f +10344,3003,34,20,f +10344,3003,22,20,f +10344,3007,25,10,f +10344,30104,8,10,f +10344,30145,1,16,f +10344,30208,334,4,f +10344,3030,0,4,f +10344,30338,6,2,f +10344,30339,2,2,f +10344,30365,4,4,f +10344,30386,4,2,f +10344,30387,4,2,f +10344,30389b,4,6,f +10344,3039,33,10,f +10344,30540,4,2,f +10344,3065,45,20,f +10344,3065,47,20,f +10344,3065,33,20,f +10344,3185,4,12,f +10344,32201,14,10,f +10344,33303,15,20,f +10344,3403c01,0,4,f +10344,3471,2,4,f +10344,3626bp04,14,4,f +10344,3626bp07,14,4,f +10344,3626bpr0001,14,8,f +10344,3648b,4,6,f +10344,3649,2,6,f +10344,3708,0,10,f +10344,3741,2,20,f +10344,3741,2,1,t +10344,3742,4,30,f +10344,3742,4,10,t +10344,3742,15,30,f +10344,3742,15,10,t +10344,3754,15,10,f +10344,3853,4,6,f +10344,3854,14,6,f +10344,3856,2,6,f +10344,3861b,2,4,f +10344,3865,2,6,f +10344,3901,0,4,f +10344,3941,42,20,f +10344,3960p01,15,6,f +10344,3962b,8,4,f +10344,4032a,2,2,f +10344,4032a,1,12,f +10344,4151a,8,6,f +10344,4186302,8,1,f +10344,4188023,8,1,f +10344,4476b,15,10,f +10344,4485,1,4,f +10344,4530,0,4,f +10344,4530,6,4,f +10344,4729,14,12,f +10344,4740,383,10,f +10344,6007,8,1,f +10344,6060,15,6,f +10344,6064,2,4,f +10344,6108,0,6,f +10344,6141,46,1,t +10344,6141,46,20,f +10344,6184,45,6,f +10344,6192,5,10,f +10344,6232,4,12,f +10344,71155,0,4,f +10344,73194c01,4,4,f +10344,75347,1,6,f +10344,75347,5,6,f +10344,78c12,22,6,f +10344,78c13,135,6,f +10344,970c00,0,4,f +10344,970c00,15,4,f +10344,970c00,1,4,f +10344,973c02,4,4,f +10344,973pb0017c01,15,4,f +10344,973pr1245c01,1,4,f +10344,973px130c01,15,4,f +10345,3002,15,2,f +10345,3002,4,1,f +10345,3003,15,2,f +10345,3009,4,2,f +10345,3020,4,3,f +10345,3020,1,1,f +10345,3022,4,1,f +10345,3023,4,4,f +10345,3023,15,2,f +10345,3023,0,3,f +10345,3034,1,1,f +10345,3039,0,2,f +10345,3070b,0,1,f +10345,3298,0,1,f +10345,3660,15,1,f +10345,3794b,15,1,f +10345,42023,4,4,f +10345,4477,4,4,f +10345,6005,0,1,f +10345,6108,15,2,f +10345,6141,297,4,f +10345,6141,4,4,f +10345,85984,0,2,f +10346,2780,0,5,f +10346,2780,0,1,t +10346,30663,71,1,f +10346,32002,72,5,f +10346,32002,72,1,t +10346,32009,0,2,f +10346,32034,0,1,f +10346,32054,4,2,f +10346,32056,0,6,f +10346,32062,4,3,f +10346,32073,71,6,f +10346,32123b,71,1,t +10346,32123b,71,4,f +10346,32140,72,4,f +10346,32184,0,6,f +10346,32270,0,3,f +10346,32291,4,2,f +10346,32316,4,1,f +10346,32449,0,4,f +10346,32523,4,2,f +10346,32526,4,2,f +10346,32556,19,3,f +10346,33299a,71,2,f +10346,3705,0,3,f +10346,3706,0,1,f +10346,3707,0,1,f +10346,3713,71,8,f +10346,3713,71,1,t +10346,3749,19,6,f +10346,41669,47,2,f +10346,41677,71,6,f +10346,41677,0,2,f +10346,42003,71,1,f +10346,42610,71,1,f +10346,4274,1,1,t +10346,4274,1,3,f +10346,43093,1,8,f +10346,44294,71,2,f +10346,4519,71,4,f +10346,55981,71,4,f +10346,56891,0,4,f +10346,60483,72,1,f +10346,6141,36,2,f +10346,6141,36,1,t +10346,61903,71,1,f +10346,6536,71,3,f +10346,6536,4,2,f +10346,6536,0,2,f +10346,6558,1,3,f +10346,6629,0,2,f +10346,76537,14,1,f +10346,87080,0,1,f +10346,87083,72,2,f +10346,87086,0,1,f +10347,6256,191,1,f +10347,92586pr0001,84,1,f +10347,93160,15,1,t +10347,93160,15,1,f +10348,3626bpr0001,14,1,f +10348,3901,6,1,f +10348,970c00,1,1,f +10348,973c01,15,1,f +10350,6216b,7,1,f +10351,10113,0,1,f +10351,11156,297,1,f +10351,11211,71,2,f +10351,11477,0,1,f +10351,14716,19,3,f +10351,14769,19,1,f +10351,15068,0,1,f +10351,15392,72,2,f +10351,15403,0,2,f +10351,15462,28,1,f +10351,15571,0,1,f +10351,15573,0,2,f +10351,15573,70,1,f +10351,15706,0,2,f +10351,15712,0,3,f +10351,20551,288,1,f +10351,2357,0,2,f +10351,2450,0,1,f +10351,2454a,19,1,f +10351,2460,0,1,f +10351,2476a,28,1,f +10351,27037,14,1,f +10351,2736,71,2,f +10351,2817,71,1,f +10351,3002,19,2,f +10351,3003,0,1,f +10351,3004,19,1,f +10351,3005,19,3,f +10351,30153,36,1,f +10351,30169,0,1,f +10351,30173b,179,1,f +10351,30173b,297,1,f +10351,3020,72,1,f +10351,3021,28,2,f +10351,3023,19,8,f +10351,30236,71,1,f +10351,30246,0,1,f +10351,3027,28,1,f +10351,3031,0,2,f +10351,3034,28,1,f +10351,3035,28,1,f +10351,30374,0,1,f +10351,30381,0,1,f +10351,3040b,71,2,f +10351,30426,0,1,f +10351,30565,28,1,f +10351,3069b,0,1,f +10351,3069b,35,8,f +10351,32034,0,1,f +10351,32059,71,2,f +10351,3245b,19,1,f +10351,32556,19,4,f +10351,3623,70,4,f +10351,3623,71,2,f +10351,3626cpr0902,78,1,f +10351,3626cpr1289,78,1,f +10351,3626cpr1613,0,1,f +10351,3626cpr1979,78,1,f +10351,3665,0,2,f +10351,3665,70,1,f +10351,3673,71,3,f +10351,3700,70,2,f +10351,3700,0,2,f +10351,3710,0,2,f +10351,3795,28,1,f +10351,3795,0,2,f +10351,3829c01,71,1,f +10351,3848,148,1,f +10351,3895,71,2,f +10351,3957a,0,2,f +10351,40243,28,8,f +10351,40244,0,1,f +10351,4032a,0,4,f +10351,41539,28,1,f +10351,4161,0,2,f +10351,41879a,0,1,f +10351,4274,1,1,f +10351,4286,0,6,f +10351,4287,71,2,f +10351,43722,28,1,f +10351,43722,0,1,f +10351,43723,28,1,f +10351,44728,0,1,f +10351,4865a,0,4,f +10351,50231,288,1,f +10351,50950,0,2,f +10351,54200,0,3,f +10351,54200,19,9,f +10351,54383,28,1,f +10351,54384,28,1,f +10351,55981,297,4,f +10351,56891,0,4,f +10351,59443,70,1,f +10351,59900,71,2,f +10351,6019,0,2,f +10351,60219,0,1,f +10351,60475b,0,4,f +10351,60583b,19,2,f +10351,60596,19,1,f +10351,60621,148,1,f +10351,6141,19,2,f +10351,6141,46,8,f +10351,6141,182,4,f +10351,6141,297,7,f +10351,63864,28,4,f +10351,63965,70,1,f +10351,64647,182,2,f +10351,64798pr0120,0,1,f +10351,6541,0,5,f +10351,85861,0,3,f +10351,85974,0,1,f +10351,85984,0,7,f +10351,87079,0,1,f +10351,87421,19,1,f +10351,87601,70,2,f +10351,87620,28,4,f +10351,92946,0,2,f +10351,970c00,288,1,f +10351,970c00,320,1,f +10351,970c00,28,1,f +10351,973pr0295c01,4,1,f +10351,973pr3462c01,288,1,f +10351,973pr3463c01,28,1,f +10351,973pr3464c01,320,1,f +10351,98313,148,2,f +10351,98721,179,1,f +10352,2360p01,7,2,f +10353,3032,15,1,f +10353,3068bpb0215,15,1,f +10353,3068bpb0216,15,1,f +10353,3068bpb0217,15,1,f +10353,3068bpb0218,15,1,f +10353,3068bpb0219,15,1,f +10353,3068bpr0163,15,1,f +10355,2346,0,4,f +10355,2347,14,1,f +10355,3004,14,1,f +10355,3021,14,1,f +10355,3022,14,2,f +10355,3022,0,1,f +10355,3023,14,3,f +10355,3024,46,2,f +10355,3039,14,2,f +10355,3062b,0,5,f +10355,3298,14,1,f +10355,3314,0,1,f +10355,3317,14,1,f +10355,3482,14,4,f +10355,3626apr0001,14,1,f +10355,3639,0,1,f +10355,3640,0,1,f +10355,3665,14,2,f +10355,3700,14,4,f +10355,3706,0,2,f +10355,3710,14,4,f +10355,3823,47,1,f +10355,3829c01,14,1,f +10355,3833,4,1,f +10355,3839b,0,1,f +10355,4081b,0,2,f +10355,4175,14,1,f +10355,4213,14,1,f +10355,4214,14,1,f +10355,4265b,7,4,f +10355,4287,14,2,f +10355,4871,14,2,f +10355,6141,36,2,f +10355,970c00,1,1,f +10355,973c07,1,1,f +10356,30167,4,1,f +10356,3626bpx134,14,1,f +10356,970c00,7,1,f +10356,973px190ac01,6,1,f +10357,3022,14,1,f +10357,3022,15,1,f +10357,3023,73,2,f +10357,3023,15,1,f +10357,3031,10,2,f +10357,33291,191,1,f +10357,33291,5,1,f +10357,3626bpr0828,15,1,f +10357,3794b,15,1,f +10357,4032a,15,2,f +10357,54200,25,1,f +10357,6141,70,4,f +10357,87580,14,1,f +10357,973pr2386c01,85,1,f +10359,3651,7,10,f +10359,3713,7,1,t +10359,3713,7,20,f +10359,3749,7,6,f +10359,3749,7,1,t +10359,4265a,7,4,f +10359,4265a,7,1,t +10359,4273b,7,4,f +10359,4274,7,2,f +10359,4274,7,1,t +10359,4459,0,20,f +10360,2335p30,15,1,f +10360,2423,2,1,f +10360,2530,8,1,f +10360,2543,4,1,f +10360,2550c01,6,1,f +10360,2562,6,1,f +10360,3010,7,1,f +10360,3023,14,2,f +10360,3032,14,1,f +10360,3623,14,1,f +10360,3626apb04,14,1,f +10360,3837,8,1,f +10360,3957a,0,1,f +10360,4070,7,1,f +10360,4738b,6,1,f +10360,4739b,6,1,f +10360,57503,334,2,f +10360,57504,334,2,f +10360,57505,334,2,f +10360,57506,334,2,f +10360,970c00,15,1,f +10360,973p32c01,14,1,f +10361,2412b,72,6,f +10361,2431,14,3,f +10361,2432,14,2,f +10361,2436,0,1,f +10361,2445,0,2,f +10361,2456,14,2,f +10361,2555,71,2,f +10361,2730,14,2,f +10361,2780,0,32,f +10361,2780,0,2,t +10361,298c02,14,3,f +10361,298c02,14,2,t +10361,3003,14,2,f +10361,3004,14,12,f +10361,3008,14,2,f +10361,3009,14,3,f +10361,3009,0,2,f +10361,3010,14,4,f +10361,30162,72,1,f +10361,3021,0,2,f +10361,3022,0,2,f +10361,3023,46,8,f +10361,30296,14,2,f +10361,3031,14,1,f +10361,3032,71,3,f +10361,3034,0,7,f +10361,3035,14,1,f +10361,3035,72,1,f +10361,30350b,72,1,f +10361,30374,71,2,f +10361,30377,0,2,f +10361,30377,0,1,t +10361,30391,0,6,f +10361,30414,14,2,f +10361,30516,71,1,f +10361,3062b,4,1,f +10361,30648,0,6,f +10361,30658,0,1,f +10361,3068b,15,2,f +10361,3068b,1,1,f +10361,3069b,14,3,f +10361,3069b,0,2,f +10361,3069b,182,4,f +10361,3069bpr0101,71,1,f +10361,32018,72,2,f +10361,32054,0,8,f +10361,32062,0,4,f +10361,32271,14,4,f +10361,32324,71,1,f +10361,32348,72,4,f +10361,32525,0,4,f +10361,32532,14,1,f +10361,3460,14,1,f +10361,3460,0,1,f +10361,3460,72,2,f +10361,3460,15,1,f +10361,3622,14,2,f +10361,3626bpr0282,14,1,f +10361,3660,14,4,f +10361,3665,14,2,f +10361,3666,14,1,f +10361,3666,71,1,f +10361,3673,71,2,t +10361,3673,71,6,f +10361,3700,71,4,f +10361,3700,0,1,f +10361,3701,71,4,f +10361,3710,0,1,f +10361,3710,71,1,f +10361,3710,14,1,f +10361,3738,14,2,f +10361,3794a,71,1,f +10361,3794a,1,4,f +10361,3823,40,2,f +10361,3829c01,1,1,f +10361,3833,4,1,f +10361,3839b,0,1,f +10361,3894,14,4,f +10361,40244,72,2,f +10361,4079,1,2,f +10361,4085c,14,2,f +10361,4151b,72,2,f +10361,4162,14,2,f +10361,4215b,0,1,f +10361,4274,1,2,t +10361,4274,1,10,f +10361,4282,72,2,f +10361,43093,1,12,f +10361,4345b,0,2,f +10361,4346,71,2,f +10361,4445,14,1,f +10361,44728,72,2,f +10361,4519,71,1,f +10361,45677,14,2,f +10361,4599a,4,1,f +10361,4623,71,2,f +10361,48288,72,4,f +10361,48336,0,7,f +10361,4854,14,2,f +10361,4864b,40,2,f +10361,54200,14,4,f +10361,54200,182,12,f +10361,54200,46,2,f +10361,55767,71,4,f +10361,55981,71,12,f +10361,6019,71,2,f +10361,6091,0,2,f +10361,6141,182,2,t +10361,6141,46,4,f +10361,6141,46,1,t +10361,6141,47,2,t +10361,6141,36,2,t +10361,6141,182,6,f +10361,6141,47,4,f +10361,6141,36,4,f +10361,6232,72,1,f +10361,6249,71,3,f +10361,6636,0,1,f +10361,6636,14,1,f +10361,970c00,1,1,f +10361,973pr1244c01,73,1,f +10364,15500,0,1,f +10364,3068bpr0298,15,1,f +10364,3626cpr1931,78,1,f +10364,88646pr0002,15,1,f +10364,970c00,272,1,f +10364,973pr3387c01,272,1,f +10366,132a,7,8,f +10366,3004,1,8,f +10366,3004p50,1,4,f +10366,3004p50,4,1,f +10366,3005,4,2,f +10366,3007,1,2,f +10366,3009,47,1,f +10366,3009,1,6,f +10366,3009p02,1,2,f +10366,3010,47,1,f +10366,3010,1,4,f +10366,3020,1,4,f +10366,3022,47,2,f +10366,3022,0,2,f +10366,3022,1,3,f +10366,3023a,1,2,f +10366,3026,7,1,f +10366,3176,4,1,f +10366,3404bc01,15,1,f +10366,7039,4,8,f +10366,7049b,15,3,f +10366,709,1,1,f +10366,711,1,1,f +10366,799c800,15,1,f +10366,801,1,1,f +10366,802,1,1,f +10366,803,7,1,f +10367,11575pr0002,15,1,f +10367,11605,0,1,f +10367,11816pr0005,78,1,f +10367,11816pr0009,84,1,f +10367,13459,15,1,f +10367,2357,15,1,f +10367,2412b,15,3,f +10367,2412b,71,4,f +10367,2454b,323,4,f +10367,2456,15,1,f +10367,3001,70,1,f +10367,3001,15,4,f +10367,3002,14,1,f +10367,3003,15,7,f +10367,3004,71,4,f +10367,3004,15,4,f +10367,3008,71,2,f +10367,3010,15,1,f +10367,3010,29,2,f +10367,30126,72,1,t +10367,30126,72,1,f +10367,3020,272,9,f +10367,3020,15,1,f +10367,3020,27,1,f +10367,3021,15,2,f +10367,3022,27,2,f +10367,3023,15,2,f +10367,3023,29,2,f +10367,3023,71,4,f +10367,3023,272,4,f +10367,3024,29,1,t +10367,3024,29,2,f +10367,3032,1,1,f +10367,3032,71,3,f +10367,30357,29,2,f +10367,3039pr62,71,1,f +10367,30414,15,1,f +10367,3049b,4,2,f +10367,30562,47,2,f +10367,30565,272,2,f +10367,3062b,15,2,f +10367,3062b,27,1,f +10367,3062b,14,2,f +10367,3062bpr0003,322,1,f +10367,3068b,15,2,f +10367,3069b,14,1,f +10367,3069bpr0100,2,1,f +10367,3176,71,1,f +10367,3176,14,2,f +10367,3245c,14,1,f +10367,3245c,15,4,f +10367,3245c,30,1,f +10367,33183,10,1,t +10367,33183,10,1,f +10367,33243,29,2,f +10367,33291,191,1,t +10367,33291,191,2,f +10367,3622,71,4,f +10367,3666,15,2,f +10367,3679,71,1,f +10367,3680,15,1,f +10367,3700,19,2,f +10367,3710,71,1,f +10367,3741,2,2,f +10367,3741,2,1,t +10367,3742,5,4,f +10367,3754,47,2,f +10367,3794a,15,5,f +10367,3794b,73,2,f +10367,3795,15,4,f +10367,3832,15,2,f +10367,3941,70,1,f +10367,4523,27,1,f +10367,4536,29,1,f +10367,4599b,71,1,t +10367,4599b,71,1,f +10367,48092,71,2,f +10367,4865b,14,3,f +10367,4865b,15,2,f +10367,50950,272,2,f +10367,54200,36,1,t +10367,54200,36,1,f +10367,57895,47,2,f +10367,6005,26,4,f +10367,60475b,15,1,f +10367,60596,15,3,f +10367,60616a,47,1,f +10367,6112,15,3,f +10367,6141,4,1,f +10367,6141,1,1,f +10367,6141,41,1,t +10367,6141,1,1,t +10367,6141,29,1,t +10367,6141,4,1,t +10367,6141,72,2,f +10367,6141,72,1,t +10367,6141,41,2,f +10367,6141,29,2,f +10367,6141,85,2,f +10367,6141,14,1,t +10367,6141,14,2,f +10367,6141,85,1,t +10367,6191,26,6,f +10367,6231,14,8,f +10367,6256,29,1,f +10367,6636,71,7,f +10367,6936,297,1,f +10367,85080,15,8,f +10367,85984,30,1,f +10367,85984,323,3,f +10367,85984,15,1,f +10367,85984,29,1,f +10367,87079,15,2,f +10367,87087,15,4,f +10367,87580,14,4,f +10367,88293,26,2,f +10367,91405,212,1,f +10367,92258,0,1,f +10367,92410,15,1,f +10367,92438,212,1,f +10367,92456pr0027c01,78,1,f +10367,92456pr0028c01,84,1,f +10367,92593,15,1,f +10367,92818pr0003c01,29,1,f +10367,92819pr0003,26,1,f +10367,93160,15,2,f +10367,93160,15,1,t +10367,96479,85,3,f +10367,96480,85,1,f +10367,96481,85,2,f +10367,96482,85,1,f +10367,96483,85,2,f +10367,96484,85,1,f +10367,96485,85,2,f +10367,96486,85,1,f +10367,96487,85,2,f +10367,96488,85,1,f +10367,96489,85,2,f +10367,96490,85,1,f +10367,96491,85,1,f +10368,27,4,2,f +10368,29,4,2,f +10368,3081cc01,4,2,f +10368,3087c,4,2,f +10368,31cc01,4,2,f +10368,3579,4,2,f +10368,3853,4,4,f +10368,3854,15,8,f +10368,3856,2,8,f +10368,3861b,4,1,f +10368,453cc01,4,2,f +10368,7930,15,2,f +10369,11211,15,3,f +10369,11477,4,4,f +10369,15068,4,12,f +10369,3003,70,1,f +10369,3020,4,5,f +10369,3020,71,1,f +10369,3020,15,1,f +10369,3023,4,2,f +10369,3023,27,1,f +10369,30414,4,2,f +10369,30414,19,2,f +10369,3062b,70,1,f +10369,3069b,27,1,f +10369,3623,27,1,f +10369,3710,15,2,f +10369,3710,14,3,f +10369,3794b,15,1,f +10369,43722,2,1,f +10369,6141,70,1,f +10369,6141,27,1,f +10369,6141,27,1,t +10369,6141,70,1,t +10369,85984,4,6,f +10369,87087,27,1,f +10369,87580,4,1,f +10369,98138pr0008,15,2,f +10369,98138pr0008,15,1,t +10369,99206,71,2,f +10370,10201,71,1,f +10370,13971,71,2,f +10370,15207,4,2,f +10370,2412b,0,2,f +10370,2877,0,2,f +10370,2926,0,1,f +10370,3001,73,1,f +10370,3001,4,3,f +10370,3002,15,2,f +10370,3002,25,2,f +10370,3002,2,1,f +10370,3002,4,2,f +10370,3003,1,4,f +10370,3003,73,2,f +10370,3003,27,6,f +10370,3003,0,3,f +10370,3003,2,4,f +10370,3003,15,2,f +10370,3003,25,5,f +10370,3003,4,9,f +10370,3003,70,3,f +10370,3003,14,4,f +10370,3003pr0002,15,1,f +10370,3004,73,4,f +10370,3004,4,8,f +10370,3004,0,2,f +10370,3004,1,4,f +10370,3004,14,4,f +10370,3004,15,5,f +10370,3004,27,4,f +10370,3005,14,4,f +10370,3005,4,4,f +10370,3005,27,4,f +10370,3005,1,4,f +10370,3005pr0003,15,2,f +10370,3006,4,1,f +10370,3010,73,2,f +10370,3010,1,4,f +10370,3010,25,2,f +10370,3020,1,2,f +10370,3020,4,2,f +10370,3020,2,2,f +10370,3020,0,2,f +10370,3020,70,2,f +10370,3022,1,2,f +10370,3023,73,4,f +10370,3023,0,2,f +10370,3032,1,1,f +10370,3034,1,1,f +10370,3035,2,1,f +10370,3037,1,6,f +10370,3039,15,2,f +10370,3039,1,4,f +10370,3062b,71,4,f +10370,3176,4,1,f +10370,3622,27,2,f +10370,3626cpr0498,14,1,f +10370,3660,0,1,f +10370,3660,27,2,f +10370,3665,1,2,f +10370,3666,4,2,f +10370,3710,73,3,f +10370,3710,14,2,f +10370,3795,1,2,f +10370,3823,47,1,f +10370,3829c01,4,1,f +10370,4006,0,1,f +10370,4070,1,2,f +10370,4600,0,2,f +10370,47720,0,1,f +10370,4865b,4,2,f +10370,4871,1,2,f +10370,54200,0,2,f +10370,54200,0,1,t +10370,56897,0,2,f +10370,6014b,71,4,f +10370,60598,4,2,f +10370,60599,4,1,f +10370,60608,14,4,f +10370,60623,14,1,f +10370,6079,15,1,f +10370,61409,0,2,f +10370,6141,179,4,f +10370,6141,46,2,f +10370,6141,36,1,t +10370,6141,46,1,t +10370,6141,36,2,f +10370,6141,179,1,t +10370,6215,1,6,f +10370,86035,27,1,f +10370,87697,0,4,f +10370,88072,0,2,f +10370,96874,25,1,t +10370,970c00,2,1,f +10370,973pr1446c01,4,1,f +10371,10247,71,1,f +10371,11439pat0002,47,1,f +10371,12825,1,2,f +10371,14417,72,1,f +10371,14704,71,3,f +10371,15209,15,2,f +10371,2736,71,2,f +10371,3022,322,2,f +10371,3040b,322,2,f +10371,32064b,0,2,f +10371,32474pr1001,15,2,f +10371,4274,1,1,t +10371,4274,1,1,f +10371,43722,1,1,f +10371,43723,1,1,f +10371,44301a,0,1,f +10371,44302a,72,2,f +10371,44567a,0,1,f +10371,4871,272,1,f +10371,50950,322,1,f +10371,51739,272,1,f +10371,54200,322,9,f +10371,54200,322,1,t +10371,6133,0,2,f +10371,6141,41,2,f +10371,6141,41,1,t +10371,92593,272,1,f +10371,99780,0,2,f +10372,2444,4,1,f +10372,2983,7,1,f +10372,2984,4,1,f +10372,2985,4,1,f +10372,3004,15,1,f +10372,3005,36,1,f +10372,3005,15,1,f +10372,3023,4,1,f +10372,3024,47,1,f +10372,3068b,4,1,f +10372,3068b,1,1,f +10372,3068b,15,1,f +10372,3068b,0,1,f +10372,3068b,7,1,f +10372,32062,0,1,f +10372,3623,0,1,f +10372,3647,7,1,f +10372,3673,7,6,f +10372,3700,0,1,f +10372,3700,15,1,f +10372,3705,0,1,f +10372,3709,0,1,f +10372,3710,0,1,f +10372,3713,7,3,f +10372,3941,0,1,f +10372,4032a,0,1,f +10372,4275b,0,1,f +10372,4531,0,1,f +10372,6553,14,1,f +10372,6587,8,1,f +10372,85545,1,4,f +10373,2607,0,1,f +10373,2607,15,1,f +10373,2607,4,1,f +10373,2609,0,3,f +10373,73092,0,6,f +10374,14226c11,0,1,f +10374,2335pr02,15,2,f +10374,2412b,72,3,f +10374,2412b,4,2,f +10374,2412b,80,1,f +10374,2412b,14,1,f +10374,2412b,0,9,f +10374,2412b,15,1,f +10374,2420,15,2,f +10374,2420,0,2,f +10374,2431,15,4,f +10374,2431,0,3,f +10374,2431,4,3,f +10374,2432,1,2,f +10374,2436,0,10,f +10374,2436,15,1,f +10374,2445,72,3,f +10374,2450,72,6,f +10374,2454a,15,12,f +10374,2465,15,6,f +10374,2540,15,2,f +10374,2540,72,1,f +10374,2555,4,2,f +10374,2555,71,4,f +10374,2555,72,2,f +10374,2555,0,4,f +10374,2654,0,2,f +10374,2877,71,2,f +10374,298c02,15,2,f +10374,298c02,15,1,t +10374,3001,15,2,f +10374,3002,15,4,f +10374,3002,14,1,f +10374,30027b,71,2,f +10374,30027b,0,4,f +10374,30027b,15,4,f +10374,30028,0,8,f +10374,3004,27,4,f +10374,3004,71,1,f +10374,3005,15,2,f +10374,3008,71,2,f +10374,3010,15,6,f +10374,30145,15,4,f +10374,3020,0,7,f +10374,3020,4,1,f +10374,3020,15,6,f +10374,3021,0,5,f +10374,3021,71,8,f +10374,3021,15,2,f +10374,3021,1,4,f +10374,3022,15,2,f +10374,3022,0,1,f +10374,3022,72,4,f +10374,3022,4,2,f +10374,3023,15,1,f +10374,3023,71,4,f +10374,3023,72,1,f +10374,3023,0,4,f +10374,3023,14,4,f +10374,30237a,15,2,f +10374,3024,36,4,f +10374,3024,1,2,f +10374,3024,4,8,f +10374,30258,72,1,f +10374,3031,72,1,f +10374,3031,4,1,f +10374,3031,0,3,f +10374,3034,14,1,f +10374,30350b,72,2,f +10374,3037,15,1,f +10374,30374,15,1,f +10374,3039,15,2,f +10374,3040b,15,2,f +10374,30414,15,5,f +10374,3046a,15,2,f +10374,3062b,15,4,f +10374,3062b,14,2,f +10374,3062b,1,4,f +10374,3062b,71,5,f +10374,3068b,4,1,f +10374,3068b,15,17,f +10374,3068b,0,16,f +10374,3069b,14,3,f +10374,3069b,15,2,f +10374,3069bpr0030,15,1,f +10374,3069bpr0101,71,1,f +10374,3070b,36,1,f +10374,3070b,36,1,t +10374,3139,0,4,f +10374,3176,72,2,f +10374,32013,0,2,f +10374,32018,15,1,f +10374,32028,0,1,f +10374,32123b,71,1,t +10374,32123b,71,12,f +10374,32250,0,4,f +10374,3622,15,2,f +10374,3623,1,4,f +10374,3623,0,2,f +10374,3623,14,3,f +10374,3623,72,2,f +10374,3623,71,2,f +10374,3665,15,4,f +10374,3673,71,1,t +10374,3673,71,2,f +10374,3679,71,6,f +10374,3680,15,6,f +10374,3684,15,4,f +10374,3701,71,4,f +10374,3705,0,2,f +10374,3706,0,2,f +10374,3710,27,1,f +10374,3710,4,3,f +10374,3710,0,7,f +10374,3710,1,4,f +10374,3710,71,7,f +10374,3738,1,6,f +10374,3749,19,4,f +10374,3788,0,2,f +10374,3788,27,1,f +10374,3788,15,1,f +10374,3788,4,1,f +10374,3794a,14,4,f +10374,3794a,4,4,f +10374,3795,72,2,f +10374,3795,0,5,f +10374,3795,1,2,f +10374,3832,0,2,f +10374,3865,72,1,f +10374,3937,72,2,f +10374,3941,4,2,f +10374,3957a,71,2,f +10374,3957a,15,1,f +10374,4032a,71,3,f +10374,4070,14,2,f +10374,4070,0,10,f +10374,4150,71,1,f +10374,41539,0,2,f +10374,4162,72,4,f +10374,4162,15,3,f +10374,41752,8,1,f +10374,4215b,41,1,f +10374,4282,72,1,f +10374,4286,15,2,f +10374,4445,15,2,f +10374,44674,0,3,f +10374,44674,25,1,f +10374,44728,15,1,f +10374,4477,72,3,f +10374,4477,0,4,f +10374,4488,0,2,f +10374,4515,71,2,f +10374,4519,71,4,f +10374,4589,0,2,f +10374,4589,15,2,f +10374,4599a,71,11,f +10374,4624,71,4,f +10374,47905,19,2,f +10374,48336,15,2,f +10374,48336,0,12,f +10374,50943,80,2,f +10374,50944pr0001,0,16,f +10374,50946p01,0,2,f +10374,50947,14,2,f +10374,50950,0,12,f +10374,50951,0,12,f +10374,51011,0,6,f +10374,51595,72,2,f +10374,54200,46,2,f +10374,54200,4,6,f +10374,54200,72,7,f +10374,54200,182,2,f +10374,54200,40,2,f +10374,54200,27,8,f +10374,54200,14,2,f +10374,6019,0,1,f +10374,6019,14,2,f +10374,6081,0,1,f +10374,6091,14,5,f +10374,6126a,41,2,f +10374,6134,1,2,f +10374,6141,42,1,t +10374,6141,33,1,t +10374,6141,72,2,f +10374,6141,36,1,t +10374,6141,72,1,t +10374,6141,80,2,t +10374,6141,33,2,f +10374,6141,36,2,f +10374,6141,42,12,f +10374,6157,0,8,f +10374,6157,15,2,f +10374,6179,15,1,f +10374,6215,0,2,f +10374,6231,0,2,f +10374,6238,40,1,f +10374,63965,15,2,f +10374,6538b,0,4,f +10374,6632,4,4,f +10374,85543,15,2,f +10377,200,0,2,f +10377,202,15,1,f +10377,202,0,1,f +10377,2337,33,1,f +10377,2342,15,3,f +10377,2357,15,4,f +10377,2357,0,1,f +10377,2401,15,2,f +10377,2408,33,1,f +10377,2409,33,2,f +10377,2420,15,4,f +10377,2422,0,1,f +10377,2428,15,2,f +10377,2431,15,1,f +10377,2431,0,2,f +10377,2436,15,2,f +10377,2436,0,4,f +10377,2446,14,3,f +10377,2446,1,2,f +10377,2447,33,5,f +10377,2448,33,2,f +10377,2448,15,2,f +10377,2449,15,4,f +10377,2450,15,2,f +10377,2671,7,2,f +10377,2672,7,4,f +10377,2677,7,2,f +10377,2678,7,2,f +10377,2680,0,2,f +10377,2681,0,8,f +10377,2684c01a,15,1,f +10377,2686c01,0,2,f +10377,2687,0,2,f +10377,2774,7,2,f +10377,298c02,0,4,f +10377,3001,0,1,f +10377,3002,0,2,f +10377,3003,15,4,f +10377,3003,0,8,f +10377,3004,0,8,f +10377,3004,15,21,f +10377,3004p06,15,2,f +10377,3005,0,4,f +10377,3005,15,4,f +10377,3008,15,4,f +10377,3009,0,3,f +10377,3009,15,4,f +10377,3010,0,5,f +10377,3010,15,5,f +10377,3020,0,1,f +10377,3020,15,1,f +10377,3021,15,1,f +10377,3021,0,2,f +10377,3022,15,7,f +10377,3022,0,15,f +10377,3023,0,5,f +10377,3023,15,45,f +10377,3024,15,2,f +10377,3024,36,8,f +10377,3034,15,7,f +10377,3035,0,3,f +10377,3037,15,2,f +10377,3039,0,1,f +10377,3039,15,4,f +10377,3039p32,15,2,f +10377,3040b,0,4,f +10377,3040p32,15,2,f +10377,3062b,36,4,f +10377,3062b,0,2,f +10377,3068b,0,1,f +10377,3068b,15,6,f +10377,3068bp07,15,2,f +10377,3068bp08,15,2,f +10377,3069b,15,14,f +10377,3069b,0,12,f +10377,3069bp06,15,6,f +10377,3070b,15,3,f +10377,3070bp06,15,1,f +10377,3070bpc2,15,1,f +10377,3298,0,1,f +10377,3460,15,10,f +10377,3623,15,2,f +10377,3623,0,4,f +10377,3626apr0001,14,5,f +10377,3660,15,2,f +10377,3665,15,4,f +10377,3666,0,2,f +10377,3679,7,2,f +10377,3680,15,1,f +10377,3680,0,1,f +10377,3684,15,2,f +10377,3710,0,3,f +10377,3710,7,24,f +10377,3710,15,25,f +10377,3738,15,1,f +10377,3794a,0,6,f +10377,3794a,15,2,f +10377,3795,15,9,f +10377,3811,7,1,f +10377,3832,15,8,f +10377,3838,1,2,f +10377,3838,14,3,f +10377,3857,7,1,f +10377,3937,15,12,f +10377,3938,15,12,f +10377,3940b,0,1,f +10377,3940b,15,8,f +10377,3941,0,12,f +10377,3941,7,2,f +10377,3941,15,3,f +10377,3956,15,6,f +10377,3957a,36,2,f +10377,3957a,0,4,f +10377,3957a,33,2,f +10377,3957a,15,2,f +10377,3959,0,1,f +10377,3960,15,4,f +10377,3962a,0,1,f +10377,4006,0,1,f +10377,4032a,15,2,f +10377,4032a,0,8,f +10377,4035,15,2,f +10377,4070,0,4,f +10377,4070,15,2,f +10377,4081b,15,8,f +10377,4081b,0,8,f +10377,4150p04,7,2,f +10377,4162,15,9,f +10377,4162,0,2,f +10377,4175,0,1,f +10377,4229,0,4,f +10377,4275b,15,4,f +10377,4276b,15,4,f +10377,4282,0,1,f +10377,4285a,15,3,f +10377,4315,15,2,f +10377,4360,0,1,f +10377,4460b,15,4,f +10377,4474,33,2,f +10377,4476b,15,6,f +10377,4476b,0,2,f +10377,4477,15,2,f +10377,4477,0,1,f +10377,4589,36,8,f +10377,4589,33,8,f +10377,4589,0,2,f +10377,4589,15,4,f +10377,4590,0,2,f +10377,4595,0,4,f +10377,4596,15,6,f +10377,4598,15,1,f +10377,4598,0,1,f +10377,4623,0,2,f +10377,4735,0,4,f +10377,4740,33,1,f +10377,4740,36,5,f +10377,4740,15,16,f +10377,4760p01c01,15,1,f +10377,4767,15,1,f +10377,4773,36,1,f +10377,4864a,33,4,f +10377,4865a,15,20,f +10377,4871,15,2,f +10377,5306ac015,0,1,f +10377,6141,36,10,f +10377,6141,33,6,f +10377,73590c01a,15,4,f +10377,73590c01a,0,2,f +10377,73983,15,1,f +10377,970c00,14,3,f +10377,970c00,1,2,f +10377,973p6cc01,15,2,f +10377,973p6ec01,15,3,f +10378,2516,14,1,f +10378,3020,0,1,f +10378,3062b,33,1,f +10378,3941,15,1,f +10378,4032a,2,1,f +10378,4032a,4,1,f +10378,4032a,15,1,f +10378,4085c,0,1,f +10378,6126a,41,1,f +10378,6126a,57,2,f +10380,15745,45,1,f +10380,19532pr0001,320,1,f +10380,3021,19,2,f +10380,3040b,191,1,f +10380,3069b,26,1,f +10380,33291,5,1,f +10380,3852b,191,1,f +10380,4286,71,1,f +10380,59900,33,1,f +10380,6141,182,1,f +10380,87580,26,1,f +10382,11477,27,2,f +10382,14704,71,2,f +10382,14769pr1011,71,1,f +10382,15209,15,1,f +10382,2736,71,2,f +10382,298c02,15,1,t +10382,298c02,15,1,f +10382,3003,15,2,f +10382,3003,27,1,f +10382,3023,27,2,f +10382,3040b,15,2,f +10382,3045,15,2,f +10382,32064a,15,2,f +10382,3679,71,1,f +10382,3680,0,1,f +10382,4081b,27,2,f +10382,4871,0,1,f +10382,54200,0,2,f +10382,54200,0,1,t +10382,54200,27,1,t +10382,54200,27,2,f +10382,59900,182,2,f +10382,60474,71,2,f +10382,60478,0,2,f +10382,61252,297,4,f +10382,6141,36,1,t +10382,6141,36,2,f +10382,86500,40,2,f +10382,87580,27,1,f +10382,98138pr0008,15,1,t +10382,98138pr0008,15,2,f +10382,99207,0,6,f +10383,3002,1,2,f +10383,3010,1,1,f +10383,3020,7,2,f +10383,3022,7,6,f +10383,3023,7,1,f +10383,3023,0,2,f +10383,3031,1,2,f +10383,3032,1,2,f +10383,3069b,1,2,f +10383,3460,7,1,f +10383,3460,1,1,f +10383,3482,7,4,f +10383,3622,1,2,f +10383,3623,4,2,f +10383,3623,15,2,f +10383,3623,0,2,f +10383,3634,0,4,f +10383,3647,7,2,f +10383,3648a,7,1,f +10383,3651,7,10,f +10383,3652,7,1,f +10383,3660,4,1,f +10383,3666,7,2,f +10383,3700,1,5,f +10383,3701,4,3,f +10383,3702,4,2,f +10383,3703,1,2,f +10383,3704,0,1,f +10383,3705,0,5,f +10383,3706,0,4,f +10383,3707,0,5,f +10383,3710,0,6,f +10383,3710,15,4,f +10383,3710,4,8,f +10383,3710,7,6,f +10383,3713,7,14,f +10383,3737,0,2,f +10383,3743,7,1,f +10383,3749,7,5,f +10383,3895,4,2,f +10383,3959,14,2,f +10383,3959,0,2,f +10383,4185,7,1,f +10383,4261,7,2,f +10383,4262,7,8,f +10383,4263,7,2,f +10383,4265a,7,4,f +10383,4273b,7,12,f +10383,4274,7,4,f +10383,4286,4,2,f +10383,4459,0,8,f +10383,9244,7,1,f +10383,x467c12,0,2,f +10385,2431,322,3,f +10385,3022,15,2,f +10385,48336,0,1,f +10385,60470a,71,1,f +10385,6141,70,4,f +10385,6141,70,1,t +10387,12825,320,1,f +10387,2489,70,1,f +10387,2526,297,1,f +10387,2528pr0001,0,1,f +10387,2543,320,2,f +10387,2546pat0001,4,1,f +10387,2562,70,1,f +10387,30136,70,3,f +10387,30357,19,1,f +10387,3062b,70,1,f +10387,3068bpr0167,19,1,f +10387,33121,191,1,f +10387,33183,10,1,f +10387,3626cpr0411,14,1,f +10387,3626cpr0745,14,1,f +10387,3626cpr0998,14,1,f +10387,3626cpr1033,14,1,f +10387,4738a,70,1,f +10387,4739a,70,1,f +10387,59363,484,1,f +10387,60752,179,1,f +10387,6148,2,2,f +10387,64644,308,1,f +10387,87087,0,1,f +10387,88432,484,1,f +10387,95228pr0001,47,1,f +10387,96904,334,1,f +10387,96905,334,1,f +10387,96906,334,1,f +10387,96907,334,1,f +10387,970c00,4,2,f +10387,970c00,288,1,f +10387,970d09,0,1,f +10387,973pr1440c01,1,2,f +10387,973pr1442c01,0,1,f +10387,973pr1449c01,0,1,f +10387,99563,334,1,f +10388,2780,0,3,f +10388,32062,4,3,f +10388,32174,0,1,f +10388,32174,191,3,f +10388,3705,0,1,f +10388,3708,0,1,f +10388,41678,0,2,f +10388,4274,71,1,t +10388,4274,71,4,f +10388,43093,1,4,f +10388,44809,0,1,f +10388,4519,71,1,f +10388,47296,191,2,f +10388,47297,0,2,f +10388,47306,0,1,f +10388,47312,72,1,f +10388,47313,57,1,f +10388,50898,191,2,f +10388,53451,4,1,f +10388,53451,4,1,t +10388,53542,0,2,f +10388,53548,0,1,f +10388,53563,191,1,f +10388,53564,191,1,f +10388,54177,135,2,f +10388,57523c01,135,1,f +10388,57525,4,10,f +10388,57527,135,1,f +10388,57532pat0001,191,1,f +10388,57539,135,1,f +10388,57543,135,2,f +10388,60169,72,2,f +10388,6538b,0,1,f +10388,6553,0,1,f +10389,32062,0,6,f +10389,32173,8,2,f +10389,32174,4,10,f +10389,32174,57,1,f +10389,32270,7,1,f +10389,3737,0,1,f +10389,3749,19,4,f +10389,44135,8,1,f +10389,44136,8,1,f +10389,44138,4,2,f +10389,44139,8,1,f +10389,44140,4,1,f +10389,44143,179,1,f +10389,44148,8,2,f +10389,44247,8,1,f +10389,44807,4,1,f +10389,44808,179,2,f +10389,4519,7,3,f +10389,45749,8,2,f +10389,6538b,8,1,f +10389,kraataund,134,1,f +10392,2815,0,8,f +10392,3736,7,2,f +10392,4185,7,12,f +10394,11458,72,2,f +10394,11610,0,1,f +10394,15068,71,1,f +10394,15470,29,1,f +10394,15470,29,1,t +10394,15712,72,2,f +10394,18649,71,1,f +10394,18674,72,1,f +10394,2420,70,4,f +10394,2445,71,1,f +10394,24946,15,3,f +10394,24946,71,1,f +10394,26371pr0034,27,1,f +10394,26460pr0036,14,1,f +10394,3022,72,2,f +10394,3023,70,1,f +10394,3023,72,2,f +10394,30236,71,1,f +10394,3024,70,2,f +10394,3024,70,1,t +10394,3034,0,1,f +10394,3062b,0,1,f +10394,30663,71,1,f +10394,3069b,70,1,f +10394,3070b,72,1,f +10394,3070b,72,1,t +10394,32064a,0,1,f +10394,3705,0,1,f +10394,3795,72,1,f +10394,4070,70,2,f +10394,43121,71,1,f +10394,4495b,5,1,f +10394,4735,71,1,f +10394,47720,0,1,f +10394,47759,70,2,f +10394,48729b,71,1,t +10394,48729b,71,1,f +10394,55981,71,2,f +10394,59900,4,1,f +10394,60897,71,2,f +10394,61184,71,1,f +10394,6126b,182,1,f +10394,6141,19,2,f +10394,6141,19,1,t +10394,6157,71,1,f +10394,73590c02a,0,1,f +10394,85861,0,1,t +10394,85861,0,1,f +10394,87087,72,1,f +10394,87618,0,1,f +10394,92280,71,1,f +10394,92402,0,2,f +10394,92409,0,2,f +10394,93593,71,2,f +10394,98138,71,3,f +10394,98138,71,1,t +10394,98138pr0012,179,1,f +10394,98138pr0012,179,1,t +10394,98284,70,1,f +10394,99206,71,1,f +10394,99207,0,2,f +10396,2456,1,2,f +10396,2456,15,2,f +10396,3001,2,2,f +10396,3001,1,4,f +10396,3001,4,4,f +10396,3001,14,4,f +10396,3001,15,4,f +10396,3001,0,2,f +10396,3002,0,2,f +10396,3002,1,2,f +10396,3002,15,2,f +10396,3002,14,2,f +10396,3002,2,2,f +10396,3002,4,2,f +10396,3003,15,8,f +10396,3003,2,6,f +10396,3003,1,8,f +10396,3003,33,2,f +10396,3003,14,8,f +10396,3003,36,2,f +10396,3003,4,8,f +10396,3003,0,6,f +10396,3004,14,6,f +10396,3004,1,7,f +10396,3004,15,7,f +10396,3004,4,6,f +10396,3004,2,4,f +10396,3004,0,4,f +10396,3005,2,4,f +10396,3005,4,4,f +10396,3005,0,4,f +10396,3005,1,4,f +10396,3005,15,4,f +10396,3005pe1,14,4,f +10396,3006,4,2,f +10396,3006,1,2,f +10396,3006,15,2,f +10396,3006,14,2,f +10396,3007,15,2,f +10396,3007,1,2,f +10396,3007,4,2,f +10396,3008,0,2,f +10396,3008,14,2,f +10396,3008,1,2,f +10396,3008,15,2,f +10396,3009,15,2,f +10396,3009,4,2,f +10396,3009,14,2,f +10396,3009,1,2,f +10396,3010,1,2,f +10396,3010,15,2,f +10396,3010,4,2,f +10396,3010,14,2,f +10396,3020,1,2,f +10396,3062b,14,4,f +10396,3307,14,2,f +10396,3308,15,2,f +10396,3622,4,2,f +10396,3622,15,2,f +10396,3622,1,2,f +10396,3622,14,2,f +10396,3795,1,2,f +10396,3832,1,2,f +10396,3832,2,2,f +10396,3941,4,4,f +10396,4032a,0,4,f +10396,42022,1,2,f +10396,42022,4,2,f +10396,42023,4,2,f +10396,42023,1,2,f +10396,44126,15,2,f +10396,44126,0,2,f +10396,4744,2,2,f +10396,4744pr0001,0,1,f +10396,4744pr0002,4,1,f +10396,6108,0,2,f +10396,6112,14,2,f +10396,6112,15,2,f +10396,6183,15,2,f +10396,6215,0,4,f +10397,10201,0,1,f +10397,10830pat0001,0,1,f +10397,11399,72,2,f +10397,11458,72,2,f +10397,11477,72,2,f +10397,11477,0,4,f +10397,13547,0,8,f +10397,14769,71,5,f +10397,15068,0,5,f +10397,15207,15,3,f +10397,15535,72,1,f +10397,15738pat01pr001,28,1,f +10397,15738pat01pr002,84,1,f +10397,16640pr0001,326,1,f +10397,16640pr0004,288,1,f +10397,17577,0,1,f +10397,19141,308,1,f +10397,2357,72,4,f +10397,2412b,179,6,f +10397,2420,4,2,f +10397,2431,41,4,f +10397,2431,0,1,f +10397,2432,1,1,f +10397,2456,72,4,f +10397,2456,71,3,f +10397,2458,4,1,f +10397,2540,0,1,f +10397,2654,57,3,f +10397,2780,0,8,f +10397,2926,0,4,f +10397,3001,72,3,f +10397,3002,0,2,f +10397,3002,72,1,f +10397,3002,71,3,f +10397,3003,14,2,f +10397,3003,71,1,f +10397,3004,27,1,f +10397,3004,0,2,f +10397,3004,72,10,f +10397,30043,71,1,f +10397,3005,4,4,f +10397,3005,71,2,f +10397,3005,72,8,f +10397,3008,71,2,f +10397,3009,71,1,f +10397,3009,72,14,f +10397,3009,4,2,f +10397,3010,71,5,f +10397,3010,72,12,f +10397,3010,14,3,f +10397,30153,42,1,f +10397,30157,72,2,f +10397,30162,72,1,f +10397,30173a,0,2,f +10397,30173a,179,2,f +10397,3020,71,1,f +10397,3020,4,6,f +10397,3021,72,9,f +10397,3021,15,1,f +10397,3021,4,2,f +10397,3022,0,4,f +10397,3022,4,1,f +10397,3022,15,2,f +10397,3023,1,6,f +10397,3023,0,4,f +10397,3023,15,13,f +10397,3023,71,11,f +10397,3023,14,2,f +10397,3023,72,7,f +10397,3023,4,7,f +10397,30236,72,2,f +10397,30237a,72,5,f +10397,3024,47,2,f +10397,3024,15,2,f +10397,3024,0,10,f +10397,3024,182,4,f +10397,3024,72,2,f +10397,3024,36,14,f +10397,3030,72,1,f +10397,30304,72,1,f +10397,3031,72,1,f +10397,3032,4,1,f +10397,3032,72,5,f +10397,3034,4,2,f +10397,30357,15,2,f +10397,3036,72,1,f +10397,30374,0,2,f +10397,3040b,71,2,f +10397,30414,71,1,f +10397,30414,72,1,f +10397,30540,71,4,f +10397,30541,0,4,f +10397,3062b,34,1,f +10397,3062b,42,1,f +10397,3062b,41,6,f +10397,3066,40,1,f +10397,3068b,1,2,f +10397,3069b,4,6,f +10397,3069b,15,1,f +10397,3069b,71,7,f +10397,3069b,41,6,f +10397,3069bpr0030,15,1,f +10397,3069bpr0137,71,1,f +10397,3176,71,2,f +10397,32000,72,1,f +10397,32013,1,4,f +10397,32028,0,4,f +10397,32028,71,2,f +10397,32054,4,1,f +10397,32062,4,2,f +10397,32140,0,2,f +10397,32270,0,1,f +10397,32316,72,2,f +10397,3460,71,2,f +10397,3460,72,4,f +10397,3460,4,4,f +10397,3622,0,2,f +10397,3626cpr1413,78,1,f +10397,3626cpr1414,78,1,f +10397,3626cpr1451,0,2,f +10397,3659,72,1,f +10397,3660,72,5,f +10397,3665,72,10,f +10397,3665,0,2,f +10397,3666,71,4,f +10397,3666,0,4,f +10397,3666,72,5,f +10397,3666,4,9,f +10397,3700,4,2,f +10397,3709,0,1,f +10397,3710,15,1,f +10397,3710,4,4,f +10397,3710,71,7,f +10397,3795,0,1,f +10397,3795,15,1,f +10397,3795,72,6,f +10397,3821,0,1,f +10397,3821,71,1,f +10397,3822,71,1,f +10397,3822,0,1,f +10397,3829c01,4,2,f +10397,3832,4,1,f +10397,3832,71,2,f +10397,3832,72,1,f +10397,3937,71,2,f +10397,3941,42,5,f +10397,4032a,0,2,f +10397,4162,0,4,f +10397,4162,72,2,f +10397,4176,41,1,f +10397,41769,0,2,f +10397,41770,0,2,f +10397,4282,71,5,f +10397,43093,1,2,f +10397,4360,0,1,f +10397,43857,0,1,f +10397,44126,72,3,f +10397,44301a,0,2,f +10397,44728,4,4,f +10397,44728,72,13,f +10397,4477,72,3,f +10397,4477,0,2,f +10397,4477,71,6,f +10397,4488,71,2,f +10397,4519,71,1,f +10397,4533,41,2,f +10397,47457,71,1,f +10397,48336,71,4,f +10397,48729b,72,1,f +10397,50745,72,2,f +10397,50950,0,2,f +10397,52031,0,1,f +10397,53989,179,3,f +10397,54200,47,2,f +10397,54200,4,2,f +10397,54200,0,4,f +10397,54200,182,2,f +10397,55981,71,4,f +10397,59900,4,2,f +10397,59900,71,1,f +10397,6014b,71,10,f +10397,6020,0,1,f +10397,60470a,71,4,f +10397,60471,4,2,f +10397,60475a,72,2,f +10397,60475a,71,2,f +10397,60478,72,4,f +10397,60581,0,1,f +10397,60581,72,2,f +10397,6081,72,1,f +10397,6091,72,2,f +10397,6111,72,4,f +10397,61184,71,4,f +10397,6134,0,2,f +10397,61409,72,4,f +10397,6141,47,4,f +10397,6141,34,1,f +10397,6141,4,2,f +10397,6141,46,4,f +10397,6141,36,9,f +10397,6141,57,2,f +10397,6183,0,4,f +10397,6192,71,2,f +10397,6222,15,1,f +10397,6231,71,4,f +10397,63864,0,2,f +10397,6541,0,4,f +10397,6583,0,1,f +10397,6587,28,1,f +10397,6636,0,1,f +10397,6636,72,8,f +10397,75937,179,1,f +10397,85984,4,4,f +10397,85984,71,2,f +10397,85984,0,2,f +10397,86208,71,1,f +10397,87079,0,5,f +10397,87079,15,1,f +10397,87087,72,6,f +10397,87087,15,2,f +10397,87552,41,2,f +10397,87580,4,5,f +10397,87609,0,1,f +10397,87697,0,10,f +10397,87989,71,2,f +10397,88072,0,1,f +10397,88930,0,8,f +10397,92339,72,1,f +10397,92402,0,4,f +10397,92410,15,2,f +10397,92583,40,1,f +10397,92593,72,2,f +10397,93274,72,2,f +10397,93549pat01,47,1,f +10397,93606,72,3,f +10397,95199,72,1,f +10397,95225,320,1,f +10397,96874,25,1,t +10397,970c00,272,1,f +10397,970c00,0,1,f +10397,970c00pr0682,326,2,f +10397,970c00pr0684,326,1,f +10397,970c00pr0686,288,1,f +10397,973pr2653c01,0,1,f +10397,973pr2654c01,191,1,f +10397,973pr2708c01,0,2,f +10397,973pr2710c01,326,1,f +10397,973pr2712c01,288,1,f +10397,98138,179,2,f +10397,98138,47,2,f +10397,98139,179,2,f +10397,99207,71,2,f +10401,2609,0,72,f +10401,30000,15,2,f +10401,3001,1,3,f +10401,3001,2,3,f +10401,3001,0,2,f +10401,3003,1,18,f +10401,3003,14,18,f +10401,30157,72,48,f +10401,3022,2,18,f +10401,3022,0,6,f +10401,3022,4,12,f +10401,3069b,4,24,f +10401,3069b,2,36,f +10401,3069b,1,36,f +10401,3069b,0,12,f +10401,3069b,14,36,f +10401,3673,71,3,f +10401,6249,4,24,f +10401,73092,0,72,f +10401,75535,71,76,f +10402,2335,4,5,f +10402,2335,1,5,f +10402,2412b,0,2,f +10402,2431,15,4,f +10402,2458,15,4,f +10402,2460,15,4,f +10402,2465,15,2,f +10402,2540,0,10,f +10402,3001,15,4,f +10402,3003,15,8,f +10402,3004,15,20,f +10402,30043,4,4,f +10402,3006,7,4,f +10402,3010,15,4,f +10402,3020,4,4,f +10402,3021,0,16,f +10402,3022,4,73,f +10402,3023,7,20,f +10402,3037,15,4,f +10402,3039,15,20,f +10402,30488,7,2,f +10402,30488c01,0,10,f +10402,30488c01,15,10,f +10402,30489,2,14,f +10402,30492,2,4,f +10402,30493,0,2,f +10402,3068b,2,75,f +10402,32064b,7,16,f +10402,3403c01,0,2,f +10402,3460,15,20,f +10402,3623,0,12,f +10402,3626bp03,14,2,f +10402,3626bp05,14,6,f +10402,3626bpa3,14,2,f +10402,3626bpb0046,14,2,f +10402,3626bpb0103,14,2,f +10402,3626bpr0001,14,2,f +10402,3626bpx134,14,2,f +10402,3626bpx16,14,2,f +10402,3626bpx33,14,2,f +10402,3700,15,8,f +10402,3710,4,4,f +10402,3900,7,8,f +10402,3901,0,10,f +10402,3901,6,6,f +10402,3901,19,4,f +10402,3957a,15,4,f +10402,41732,4,2,f +10402,41733,4,2,f +10402,4176,15,18,f +10402,41819c01,2,4,f +10402,4204,2,2,f +10402,4476b,15,4,f +10402,4477,15,2,f +10402,4477,4,4,f +10402,4485,15,1,f +10402,4485,0,1,f +10402,4495b,4,4,f +10402,4871,7,16,f +10402,71509,0,4,f +10402,72824p01,15,3,f +10402,72824pr02,15,1,f +10402,78c11,15,4,f +10402,970c00,1,10,f +10402,970c00,7,1,f +10402,970c00,8,1,f +10402,970c00,15,10,f +10402,973pb0165c01,0,1,f +10402,973pb0166c01,0,1,f +10402,973pb0167c01,4,1,f +10402,973pb0168c01,15,1,f +10402,973pb0169c01,4,1,f +10402,973pb0170c01,15,1,f +10402,973pb0171c01,4,1,f +10402,973pb0172c01,15,1,f +10402,973pb0173c01,4,1,f +10402,973pb0174c01,15,1,f +10402,973pb0175c01,4,1,f +10402,973pb0176c01,15,1,f +10402,973pb0207c01,4,1,f +10402,973pb0208c01,4,1,f +10402,973pb0209c01,4,1,f +10402,973pb0210c01,4,1,f +10402,973pb0211c01,4,1,f +10402,973pb0213c01,15,1,f +10402,973pb0214c01,15,1,f +10402,973pb0215c01,15,1,f +10402,973pb0216c01,15,1,f +10402,973pb0217c01,15,1,f +10402,x386,15,2,f +10404,3069b,25,2,f +10404,3069b,27,2,f +10404,3626cpr0666,78,1,f +10404,87610pr0002a,179,1,f +10404,92590,28,1,f +10404,970c00,4,1,f +10404,973pr2338c01,320,1,f +10407,10197,72,2,f +10407,11478,0,4,f +10407,11946,25,1,f +10407,11947,25,1,f +10407,2780,0,1,t +10407,2780,0,6,f +10407,32009,72,1,f +10407,32039,0,2,f +10407,32062,4,5,f +10407,32073,71,5,f +10407,32123b,71,1,t +10407,32123b,71,2,f +10407,32140,72,6,f +10407,32184,0,3,f +10407,32192,0,2,f +10407,32316,72,2,f +10407,32449,0,2,f +10407,3705,0,1,f +10407,3713,71,1,t +10407,3713,71,4,f +10407,41669,25,2,f +10407,41677,72,2,f +10407,42003,72,2,f +10407,4274,71,1,t +10407,4274,71,2,f +10407,44294,71,1,f +10407,4519,71,1,f +10407,55981,71,4,f +10407,56891,0,4,f +10407,60483,71,6,f +10407,6141,47,1,t +10407,6141,47,2,f +10407,6141,36,1,t +10407,6141,36,2,f +10407,6536,72,2,f +10407,6558,1,4,f +10407,6628,0,4,f +10407,6632,25,2,f +10407,6632,72,1,f +10407,85543,15,2,f +10407,87082,0,2,f +10407,87083,72,6,f +10408,15,0,3,f +10408,17,0,3,f +10408,3001a,4,1,f +10408,3004,4,4,f +10408,3004,47,1,f +10408,3006,4,1,f +10408,3008,4,2,f +10408,3010,4,3,f +10408,3010pb035e,4,1,f +10408,3020,4,2,f +10408,3023,4,4,f +10408,3023,0,4,f +10408,3029,4,1,f +10408,3031,4,2,f +10408,3037,4,2,f +10408,3040a,4,2,f +10408,3040a,47,2,f +10408,3046a,4,2,f +10408,3137c01,0,2,f +10408,3137c02,0,2,f +10408,3139,0,4,f +10408,3149c01,4,1,f +10408,3183a,4,1,f +10408,3184,4,1,f +10408,3581,4,4,f +10408,3582,4,4,f +10408,3624,0,3,f +10408,3626a,14,3,f +10408,7b,0,4,f +10408,850,14,1,f +10408,851a,14,1,f +10408,852,14,1,f +10409,128stk01,9999,1,t +10409,128stk02,9999,1,t +10409,281,14,1,f +10409,3001,14,6,f +10409,3002,14,2,f +10409,3003,14,12,f +10409,3004,14,2,f +10409,3031,14,1,f +10409,3035,4,1,f +10409,3888ac01,4,1,f +10409,691,14,1,f +10409,692,14,1,f +10409,fab11c,9999,1,f +10409,u9213,2,1,f +10409,x610c03,14,2,f +10409,x655c02,1,1,f +10410,bslot01,4,1,f +10413,16542,14,1,f +10413,2412b,4,14,f +10413,2412b,15,6,f +10413,2431,15,22,f +10413,2431,4,3,f +10413,2431,72,2,f +10413,2432,14,2,f +10413,2437,41,1,f +10413,2447,40,2,t +10413,2447,40,1,f +10413,2453a,4,4,f +10413,2454a,4,5,f +10413,2456,4,1,f +10413,2465,4,1,f +10413,2486,14,2,f +10413,2569,72,1,f +10413,298c02,15,2,f +10413,298c02,15,1,t +10413,30000,71,2,f +10413,3001,1,5,f +10413,3001,4,1,f +10413,3001,15,1,f +10413,3002,71,2,f +10413,3003,4,6,f +10413,3004,1,1,f +10413,3005,4,2,f +10413,3005,0,1,f +10413,3009,4,15,f +10413,3009,15,7,f +10413,3010,4,12,f +10413,3010,15,3,f +10413,3020,1,2,f +10413,3022,72,2,f +10413,3023,0,1,f +10413,3023,15,15,f +10413,3023,72,3,f +10413,30236,72,2,f +10413,30237a,4,11,f +10413,3024,4,2,f +10413,3024,47,1,f +10413,3028,72,1,f +10413,3030,72,6,f +10413,3034,1,2,f +10413,3035,4,2,f +10413,3035,72,2,f +10413,30350b,72,1,f +10413,3036,72,1,f +10413,3039,4,1,f +10413,3040bpr0003,71,1,f +10413,30414,71,4,f +10413,3062b,14,3,f +10413,3068b,2,1,f +10413,3068bpr0136,72,1,f +10413,3069b,46,3,f +10413,3069b,71,3,f +10413,3069b,33,6,f +10413,3069b,0,1,f +10413,3069bpr0030,72,1,f +10413,3070b,36,2,f +10413,3070b,36,1,t +10413,3176,14,1,f +10413,32028,72,13,f +10413,32028,15,6,f +10413,32064b,71,2,f +10413,3245b,4,5,f +10413,3471,2,1,f +10413,3626b,47,1,f +10413,3660,14,5,f +10413,3665,4,8,f +10413,3666,4,3,f +10413,3666,71,2,f +10413,3673,71,9,f +10413,3673,71,2,t +10413,3679,71,2,f +10413,3680,1,2,f +10413,3710,4,5,f +10413,3710,15,5,f +10413,3741,2,1,f +10413,3741,2,1,t +10413,3742,4,1,t +10413,3742,4,3,f +10413,3794b,15,4,f +10413,3795,72,5,f +10413,3829c01,14,2,f +10413,3832,0,6,f +10413,3835,0,3,f +10413,3836,70,1,f +10413,3837,72,1,f +10413,3838,14,1,f +10413,3865,72,2,f +10413,3894,4,4,f +10413,3894,15,2,f +10413,3899,47,2,f +10413,3900,71,1,f +10413,3937,72,1,f +10413,3957a,71,1,f +10413,3958,72,1,f +10413,3962b,0,2,f +10413,3963,71,1,f +10413,4079,14,4,f +10413,4081b,15,4,f +10413,4175,72,2,f +10413,4207,15,3,f +10413,4208,0,1,f +10413,4209,4,1,f +10413,4215b,41,2,f +10413,4216,15,6,f +10413,4216,4,15,f +10413,4217,4,4,f +10413,4218,41,18,f +10413,4219,15,2,f +10413,4274,1,1,t +10413,4274,1,1,f +10413,4282,72,2,f +10413,43337,4,2,f +10413,43898,15,1,f +10413,44728,15,1,f +10413,4488,71,4,f +10413,4510,15,2,f +10413,4532,4,3,f +10413,4533,15,3,f +10413,45677,4,1,f +10413,4599b,14,2,f +10413,46212,41,4,f +10413,4740,15,1,f +10413,48294,14,1,f +10413,48336,71,5,f +10413,4865a,15,3,f +10413,48729a,0,1,t +10413,48729a,0,2,f +10413,50745,72,8,f +10413,50950,4,4,f +10413,51595,72,2,f +10413,52031,4,1,f +10413,52036,72,1,f +10413,52038,4,2,f +10413,52501,4,2,f +10413,54200,36,2,f +10413,54200,36,1,t +10413,54200,15,14,f +10413,54200,33,12,f +10413,54200,33,4,t +10413,54200,4,2,f +10413,54200,4,1,t +10413,54200,15,4,t +10413,54200,182,2,f +10413,54200,182,1,t +10413,54200,47,2,t +10413,54200,47,4,f +10413,57895,41,2,f +10413,59349,4,4,f +10413,59349,41,4,f +10413,6014b,15,8,f +10413,60470a,15,2,f +10413,60476,71,2,f +10413,60479,15,1,f +10413,60592,4,2,f +10413,60593,15,14,f +10413,60596,15,5,f +10413,60598,4,1,f +10413,60601,41,2,f +10413,60614,72,2,f +10413,60616a,41,3,f +10413,60700,0,8,f +10413,6111,4,4,f +10413,6111,15,4,f +10413,6134,0,1,f +10413,6141,33,8,f +10413,6141,33,2,t +10413,6141,4,3,t +10413,6141,46,1,t +10413,6141,46,2,f +10413,6141,4,5,f +10413,61485,0,1,f +10413,6157,0,2,f +10413,6158,72,1,f +10413,61780,2,1,f +10413,6179,15,1,f +10413,6251,15,1,f +10413,64451,4,2,f +10413,64453,41,5,f +10413,6541,15,6,f +10413,6636,15,19,f +10413,6636,71,5,f +10413,75c19,14,1,f +10413,87079,4,3,f +10413,87079,71,6,f +10413,87081,72,1,f +10413,87087,4,10,f +10413,87609,4,2,f +10413,87609,15,1,f +10413,87617,4,2,f +10413,87618,71,2,f +10413,87913,71,1,f +10413,88393,4,10,f +10414,2335pr0002,15,1,f +10414,2357,71,2,f +10414,2420,70,2,f +10414,2530,72,1,f +10414,2555,0,2,f +10414,2561,70,2,f +10414,2562,70,1,f +10414,2736,71,1,f +10414,298c02,0,1,f +10414,3004,15,15,f +10414,30043,0,1,f +10414,3005,71,2,f +10414,30055,70,2,f +10414,3009,15,1,f +10414,3010,71,1,f +10414,30137,70,2,f +10414,30153,42,1,f +10414,30153,41,1,f +10414,30153,45,1,f +10414,3020,70,1,f +10414,3021,70,1,f +10414,3023,71,1,f +10414,3031,70,1,f +10414,3032,19,3,f +10414,30374,70,2,f +10414,3039,72,2,f +10414,3040b,71,10,f +10414,3040b,15,2,f +10414,30414,0,2,f +10414,3048c,297,1,f +10414,3062b,0,3,f +10414,3062b,320,1,f +10414,3062b,46,2,f +10414,3062b,70,10,f +10414,3062b,272,1,f +10414,3068bpr0139a,19,1,f +10414,3176,4,1,f +10414,32034,0,1,f +10414,32530,0,1,f +10414,3455,15,1,f +10414,3622,15,2,f +10414,3623,19,2,f +10414,3660,15,4,f +10414,3660,71,2,f +10414,3665,72,2,f +10414,3666,320,2,f +10414,3666,70,1,f +10414,3673,71,1,f +10414,3684,71,4,f +10414,3710,70,1,f +10414,3747b,72,2,f +10414,3794b,72,1,f +10414,3795,71,1,f +10414,3795,70,2,f +10414,3837,72,1,f +10414,4070,19,3,f +10414,4081b,19,2,f +10414,4085c,0,4,f +10414,4274,1,1,f +10414,43093,1,1,f +10414,4460b,15,2,f +10414,4460b,72,2,f +10414,4489b,70,2,f +10414,4495b,4,2,f +10414,4529,0,1,f +10414,4589,4,2,f +10414,4599b,0,2,f +10414,4600,71,1,f +10414,4738a,297,1,f +10414,4739a,297,1,f +10414,48729a,72,3,f +10414,52107,0,1,f +10414,6148,2,2,f +10414,63965,71,1,f +10414,64647,57,3,f +10415,31110,4,4,f +10415,3437,72,8,f +10415,3437,19,4,f +10415,4199,4,2,f +10415,51559,4,2,f +10415,6392,72,2,f +10415,6393,72,2,f +10415,6394,4,2,f +10416,3020,71,3,f +10416,3022,15,2,f +10416,3022,71,3,f +10416,3023,71,1,f +10416,30363,71,1,f +10416,3040b,71,2,f +10416,3623,71,1,f +10416,3665,71,1,f +10416,3710,15,1,f +10416,3710,71,2,f +10416,3794b,71,4,f +10416,3795,15,3,f +10416,43722,71,1,f +10416,43723,71,1,f +10416,54200,71,1,f +10418,11100,15,4,f +10418,11100,297,2,f +10418,11477,15,2,f +10418,11477,70,1,f +10418,11816pr0018,78,1,f +10418,11816pr0020,84,1,f +10418,12939,71,1,f +10418,13731,15,2,f +10418,13965,70,1,f +10418,14769pr1014,19,1,f +10418,14769pr1015,323,1,f +10418,14769pr1016,27,1,f +10418,14769pr1017,30,2,f +10418,15535,72,4,f +10418,15573,14,1,f +10418,15573,2,1,f +10418,15573,72,1,f +10418,15712,297,1,f +10418,18646,27,2,f +10418,18651,0,4,f +10418,19118,31,1,f +10418,19204pr0001,320,1,f +10418,19206pr0001,31,1,f +10418,20312,179,2,f +10418,20313,179,2,f +10418,20379pr0001,15,1,f +10418,20381pr0001,26,1,f +10418,21490,191,1,f +10418,21490,85,1,f +10418,21492,9999,1,f +10418,2357,71,2,f +10418,2412b,14,3,f +10418,2420,0,2,f +10418,2420,30,4,f +10418,2423,5,1,f +10418,2423,320,1,f +10418,2431,85,2,f +10418,2458,15,1,f +10418,26090pr0001,322,1,f +10418,2654,47,3,f +10418,2780,0,1,t +10418,2780,0,2,f +10418,2817,0,3,f +10418,3001,72,2,f +10418,3004,71,4,f +10418,3005,71,6,f +10418,3005,52,2,f +10418,3005,322,2,f +10418,3005,31,2,f +10418,3009,72,1,f +10418,30153,47,2,f +10418,3020,30,6,f +10418,3021,71,1,f +10418,3022,0,4,f +10418,3023,322,1,f +10418,3023,30,7,f +10418,3024,15,1,t +10418,3024,15,2,f +10418,3029,28,1,f +10418,3031,27,1,f +10418,3032,15,1,f +10418,30385,45,1,f +10418,3039,14,1,f +10418,3040b,71,6,f +10418,3040b,70,2,f +10418,3045,72,2,f +10418,3062b,46,3,f +10418,3065,45,3,f +10418,3068bpr0247,19,1,f +10418,3069b,71,1,f +10418,32000,14,2,f +10418,32002,19,1,t +10418,32002,19,2,f +10418,32013,297,4,f +10418,32017,14,2,f +10418,32062,4,2,f +10418,32140,14,1,f +10418,32291,0,1,f +10418,32449,0,2,f +10418,32524,15,2,f +10418,33183,70,2,f +10418,33183,70,1,t +10418,33291,31,3,f +10418,33291,31,2,t +10418,3460,30,2,f +10418,3623,15,2,f +10418,3659,15,2,f +10418,3660,71,1,f +10418,3665,71,1,f +10418,3665,14,2,f +10418,3666,27,1,f +10418,3673,71,1,t +10418,3673,71,4,f +10418,3710,30,5,f +10418,3738,15,1,f +10418,3747b,14,1,f +10418,3795,27,2,f +10418,3795,72,3,f +10418,3830,72,2,f +10418,3831,72,2,f +10418,3942c,297,1,f +10418,40378,297,2,f +10418,41769,15,1,f +10418,41770,15,1,f +10418,42022,31,2,f +10418,4274,71,2,f +10418,4274,71,1,t +10418,43892,297,2,f +10418,4460b,72,1,f +10418,4490,71,3,f +10418,4738a,30,1,f +10418,4739a,30,1,f +10418,47458,297,4,f +10418,49668,19,4,f +10418,50303,0,1,f +10418,50950,71,2,f +10418,50950,30,2,f +10418,59230,15,1,t +10418,59230,15,1,f +10418,60470a,15,4,f +10418,60470a,0,6,f +10418,60474,322,1,f +10418,60474,72,1,f +10418,60478,0,2,f +10418,60481,71,2,f +10418,60897,15,2,f +10418,6091,322,2,f +10418,6091,15,2,f +10418,6091,71,1,f +10418,6091,30,4,f +10418,6141,297,2,t +10418,6141,15,1,t +10418,6141,15,3,f +10418,6141,297,6,f +10418,62462,297,6,f +10418,63868,70,3,f +10418,63965,70,1,f +10418,64648,179,1,f +10418,6558,1,4,f +10418,75c18,0,2,f +10418,85984,14,4,f +10418,87079,15,1,f +10418,87079,14,2,f +10418,87087,19,1,f +10418,87087,72,4,f +10418,87580,85,1,f +10418,87994,71,1,t +10418,87994,71,1,f +10418,88072,0,1,f +10418,90202,0,1,f +10418,92280,15,2,f +10418,92456pr0072c01,78,1,f +10418,92456pr0074c01,84,1,f +10418,93085pr0002,15,1,f +10418,93085pr0003,15,1,f +10418,93095,14,4,f +10418,93604,85,2,f +10418,98138,52,2,t +10418,98138,36,1,t +10418,98138,36,1,f +10418,98138,52,5,f +10418,98138pr0018,84,1,t +10418,98138pr0018,84,2,f +10418,98138pr0034,52,1,t +10418,98138pr0034,52,2,f +10418,98283,84,2,f +10418,98560,30,2,f +10418,99207,0,2,f +10418,99780,72,1,f +10419,13349,15,1,f +10419,2412b,15,1,f +10419,2540,71,3,f +10419,3002,19,1,f +10419,3020,4,1,f +10419,3022,4,1,f +10419,43712,72,1,f +10419,43713,15,1,f +10419,43719,0,1,f +10419,44661,72,1,f +10419,44676,72,2,f +10419,48336,0,1,f +10419,48933,72,1,f +10419,50950,72,1,f +10419,54200,72,5,f +10419,54200,72,1,t +10419,60470a,0,1,f +10419,60478,72,2,f +10419,61252,71,3,f +10419,6141,36,1,t +10419,6141,36,2,f +10419,90194,15,1,f +10420,10111,70,1,f +10420,13355,0,1,f +10420,13358,0,1,f +10420,14013,71,1,f +10420,14094,4,1,f +10420,17562,46,2,f +10420,3437,72,3,f +10420,3437,19,3,f +10420,44970,0,8,f +10420,45146,179,3,f +10420,45202,72,4,f +10420,47202bpr0007,25,2,f +10420,51262,72,1,f +10420,51269,71,1,f +10420,6294,25,1,f +10420,6310,25,1,f +10420,71981,0,4,f +10420,74844,72,2,f +10420,74847,72,5,f +10420,74864,4,4,f +10420,75115pr0006,73,1,f +10420,75115pr0012,15,1,f +10420,75121pr0008,10,1,f +10420,86594,0,2,f +10420,86595,4,1,f +10420,86595,72,5,f +10420,86595,14,1,f +10420,86598,14,1,f +10420,86598,25,2,f +10420,86598,4,1,f +10420,86598,1,1,f +10420,86599,0,7,f +10420,86601,71,1,f +10420,92938,1,1,f +10420,95219,14,1,f +10420,99565,71,16,f +10424,10190,25,2,f +10424,29742,0,1,f +10424,29752,14,1,f +10424,3626cpr2116,78,1,f +10424,88646,0,1,f +10424,970c00pr1190,0,1,f +10424,973pr3662c01,0,1,f +10425,3647,7,4,f +10425,3648a,7,3,f +10425,3649,7,2,f +10425,3650a,7,2,f +10425,3736,7,1,f +10425,4019,7,2,f +10425,4185,7,1,f +10426,3005,15,4,f +10426,3008a,15,1,f +10426,3062c,1,4,f +10426,3063b,15,3,f +10426,3065,15,5,f +10426,31bc01,4,1,f +10426,33bc01,4,1,f +10426,712a,15,2,f +10427,3001,0,1,f +10427,sw117,9999,1,f +10428,11153,4,2,f +10428,11303,4,1,f +10428,12825,71,1,f +10428,14045,0,1,t +10428,14045,0,1,f +10428,15207,4,2,f +10428,2412b,14,3,f +10428,2420,14,2,f +10428,2432,15,1,f +10428,2441,0,1,f +10428,2444,71,2,f +10428,2445,0,3,f +10428,2446,4,1,f +10428,2447,40,1,t +10428,2447,40,1,f +10428,2540,72,2,f +10428,2655,71,1,f +10428,30028,0,4,f +10428,3003,71,2,f +10428,3004,71,1,f +10428,3010,4,1,f +10428,3020,71,1,f +10428,3022,71,1,f +10428,3022,15,1,f +10428,3023,36,2,f +10428,3023,15,2,f +10428,3023,14,1,f +10428,3024,46,4,f +10428,3024,46,1,t +10428,3024,0,1,t +10428,3024,0,2,f +10428,3031,0,1,f +10428,30332,0,1,f +10428,3040b,4,2,f +10428,3062b,4,1,f +10428,3068b,15,1,f +10428,3068b,72,1,f +10428,3464,72,1,f +10428,3626cpr0389,14,1,f +10428,3626cpr1664,14,1,f +10428,3673,71,1,t +10428,3673,71,2,f +10428,3794b,71,2,f +10428,3829c01,14,1,f +10428,3829c01,71,1,f +10428,3962b,0,1,f +10428,4006,0,1,f +10428,4070,0,2,f +10428,4083,0,1,f +10428,4085c,71,4,f +10428,42023,4,2,f +10428,42610,71,2,f +10428,43722,4,1,f +10428,43723,4,1,f +10428,4522,0,1,f +10428,4589,182,1,f +10428,4599b,4,1,f +10428,4599b,4,1,t +10428,47397,0,1,f +10428,47398,0,1,f +10428,47457,71,2,f +10428,4855,15,1,f +10428,4871,0,1,f +10428,50943,72,1,f +10428,51011,0,2,f +10428,54200,36,1,t +10428,54200,0,1,t +10428,54200,36,1,f +10428,54200,34,1,t +10428,54200,34,1,f +10428,54200,0,2,f +10428,54383,0,1,f +10428,54383,15,1,f +10428,54384,0,1,f +10428,54384,15,1,f +10428,60212,14,1,f +10428,60475b,14,2,f +10428,6081,4,2,f +10428,61409,4,2,f +10428,6141,72,1,t +10428,6141,72,4,f +10428,6141,42,2,f +10428,6141,42,1,t +10428,6232,71,1,f +10428,6239,15,1,f +10428,64799,14,1,f +10428,6564,4,1,f +10428,6565,4,1,f +10428,72454,15,3,f +10428,74967,15,4,f +10428,85984,14,1,f +10428,85984,15,1,f +10428,87580,0,1,f +10428,87752,40,1,f +10428,90194,0,1,f +10428,92280,15,2,f +10428,92690,71,2,f +10428,93273,0,2,f +10428,93274,14,1,f +10428,93606,15,1,f +10428,970c00,1,1,f +10428,970c00,0,1,f +10428,973pr1244c01,73,1,f +10428,973pr2368c01,191,1,f +10429,3021,4,30,f +10429,728,7,1,f +10429,729,47,1,f +10430,45481,46,4,f +10430,46281,46,8,f +10430,46281,45,8,f +10430,46281,57,4,f +10430,46296,57,4,f +10430,clikits004,57,12,f +10430,clikits004,45,6,f +10430,clikits021,57,1,f +10430,clikits026,45,1,f +10430,clikits028pb01,14,4,f +10430,clikits028pb02,25,4,f +10430,clikits030,57,1,f +10430,clikits035,46,3,f +10430,clikits068,47,2,f +10430,clikits069,57,1,f +10430,clikits081,462,1,f +10430,clikits081,5,1,f +10430,clikits088,45,1,f +10430,clikits088,57,1,f +10430,clikits130,9999,1,f +10430,clikits164,45,1,f +10430,clikits165,45,2,f +10430,clikits166,9999,1,f +10430,clikits167,57,1,f +10430,clikits168,9999,2,f +10431,29bc01,15,10,f +10431,3001a,4,7,f +10431,3001a,15,4,f +10431,3002a,4,4,f +10431,3005,4,2,f +10431,3005,15,30,f +10431,3007,15,2,f +10431,3007,4,2,f +10431,3008a,15,3,f +10431,3009a,15,9,f +10431,3009apb08,15,1,f +10431,3034a,15,2,f +10431,3035a,15,1,f +10431,3036a,15,1,f +10431,3065,4,3,f +10431,3065,15,58,f +10431,3087bc01,15,10,f +10431,ftpine1,2,1,f +10432,10201,1,1,f +10432,3176,1,1,f +10432,32123b,14,1,f +10432,32123b,14,1,t +10432,3794b,1,1,f +10432,3794b,72,1,f +10432,3957b,1,1,f +10432,4081b,71,1,f +10432,41854,72,1,f +10432,54200,1,2,f +10432,54200,1,1,t +10432,6141,47,1,t +10432,6141,47,3,f +10433,2343,0,1,f +10433,2512,7,1,f +10433,2877,7,1,f +10433,30258p02,14,1,f +10433,30259p05,14,1,f +10433,30277,14,1,f +10433,3062b,0,1,f +10433,3626bp03,14,1,f +10433,3829c01,4,1,f +10433,3833,4,1,f +10433,3836,6,1,f +10433,3837,0,1,f +10433,4083,4,2,f +10433,4095,15,1,f +10433,4589,42,2,f +10433,4740,15,2,f +10433,4871,14,1,f +10433,6014a,14,4,f +10433,6015,0,4,f +10433,970c00,1,1,f +10433,973px122c01,1,1,f +10436,3001a,47,6,f +10436,3001a,0,6,f +10436,3001a,4,8,f +10436,3002a,4,2,f +10436,3003,0,6,f +10436,3004,4,2,f +10436,3005,14,3,f +10436,3007,4,1,f +10436,3009,4,4,f +10436,3010,4,2,f +10436,3020,4,2,f +10436,3021,4,2,f +10436,3023,0,2,f +10436,3024,14,2,f +10436,3027,4,2,f +10436,3029,14,1,f +10436,3032,4,2,f +10436,3034,4,6,f +10436,3149c01,4,3,f +10436,3183b,4,1,f +10436,3184,4,1,f +10436,3185,4,2,f +10436,3404ac01,0,1,f +10436,3482,4,4,f +10436,3483,0,4,f +10436,3634b,0,4,f +10436,3705,79,2,f +10436,3706,79,2,f +10436,3707,79,1,f +10436,3708,79,2,f +10436,3709a,7,7,f +10436,56823c25,0,1,f +10436,569,4,6,f +10436,570,1,3,f +10436,572,14,1,f +10436,x148,4,6,f +10437,22969,80,4,f +10437,2412b,7,12,f +10437,2412b,0,2,f +10437,2420,7,4,f +10437,2420,0,6,f +10437,2431,0,3,f +10437,2431,1,2,f +10437,2431,15,4,f +10437,2444,0,4,f +10437,2445,7,1,f +10437,2445,15,1,f +10437,2476a,1,2,f +10437,2536,7,2,f +10437,2730,0,5,f +10437,2730,7,2,f +10437,2736,7,6,f +10437,2744,0,2,f +10437,2744,15,2,f +10437,2780,0,183,f +10437,2780,0,1,t +10437,2825,1,2,f +10437,2825,0,16,f +10437,2825,15,4,f +10437,2850a,47,10,f +10437,2851,1,10,f +10437,2852,7,10,f +10437,2853,7,4,f +10437,2854,8,4,f +10437,2905,0,12,f +10437,3009,0,2,f +10437,3010,0,2,f +10437,3020,1,1,f +10437,3021,7,4,f +10437,3021,0,1,f +10437,3022,0,1,f +10437,3023,1,2,f +10437,3023,0,11,f +10437,3023,7,8,f +10437,3030,1,2,f +10437,3031,0,2,f +10437,3034,15,1,f +10437,3040b,0,4,f +10437,3068b,0,1,f +10437,3068b,15,1,f +10437,3069b,1,2,f +10437,3176,7,9,f +10437,32000,0,11,f +10437,32001,7,1,f +10437,32001,0,5,f +10437,32002,8,1,t +10437,32002,8,18,f +10437,32009,1,2,f +10437,32009,15,4,f +10437,32009,0,3,f +10437,32013,7,16,f +10437,32013,0,18,f +10437,32014,0,2,f +10437,32014,15,2,f +10437,32015,15,2,f +10437,32016,15,2,f +10437,32016,7,2,f +10437,32017,7,1,f +10437,32017,1,2,f +10437,32017,0,8,f +10437,32034,1,4,f +10437,32034,7,4,f +10437,32034,0,23,f +10437,32039,0,8,f +10437,32039,15,8,f +10437,32054,0,26,f +10437,32056,0,8,f +10437,32062,0,56,f +10437,32063,0,9,f +10437,32065,1,2,f +10437,32068,0,8,f +10437,32069,0,4,f +10437,32073,0,20,f +10437,32123b,7,1,t +10437,32123b,7,40,f +10437,32126,7,2,f +10437,32138,0,3,f +10437,32138,15,3,f +10437,32140,0,20,f +10437,32184,0,18,f +10437,32188,80,2,f +10437,32189,80,2,f +10437,32199,15,2,f +10437,32201,15,4,f +10437,32209,0,4,f +10437,32235,15,4,f +10437,32249,1,4,f +10437,32250,15,4,f +10437,32250,1,4,f +10437,32250,0,4,f +10437,32271,0,4,f +10437,32278,0,6,f +10437,32291,1,2,f +10437,32291,0,11,f +10437,32291,15,2,f +10437,32291,7,10,f +10437,32293,0,6,f +10437,32294,0,16,f +10437,32296pr02,0,4,f +10437,32316,0,14,f +10437,32316,15,2,f +10437,32333,47,2,f +10437,32348,0,2,f +10437,32348,1,2,f +10437,3460,7,2,f +10437,3460,0,1,f +10437,3623,7,2,f +10437,3623,0,6,f +10437,3647,7,2,f +10437,3648b,7,1,f +10437,3650,7,1,f +10437,3666,7,2,f +10437,3666,0,4,f +10437,3700,7,3,f +10437,3700,0,3,f +10437,3701,0,2,f +10437,3702,0,3,f +10437,3703,0,8,f +10437,3705,0,38,f +10437,3706,0,10,f +10437,3707,0,14,f +10437,3708,0,5,f +10437,3709,0,2,f +10437,3709,7,1,f +10437,3710,7,1,f +10437,3710,0,1,f +10437,3713,7,24,f +10437,3713,7,2,t +10437,3738,7,1,f +10437,3738,0,1,f +10437,3743,7,8,f +10437,3749,7,50,f +10437,3894,0,8,f +10437,3895,0,7,f +10437,3941,7,1,f +10437,4019,7,4,f +10437,4162,1,8,f +10437,4162,15,2,f +10437,41677,0,4,f +10437,4185,7,1,f +10437,4274,7,1,t +10437,4274,7,38,f +10437,44350,1,4,f +10437,44350,15,2,f +10437,44351,15,2,f +10437,44351,1,4,f +10437,44352,15,1,f +10437,44352,1,3,f +10437,44353,15,1,f +10437,44353,1,3,f +10437,4519,0,49,f +10437,6141,36,1,t +10437,6141,36,2,f +10437,6141,0,2,f +10437,6141,0,1,t +10437,6179,15,2,f +10437,6536,0,51,f +10437,6536,15,6,f +10437,6538b,0,14,f +10437,6538b,1,2,f +10437,6538b,15,4,f +10437,6538b,7,2,f +10437,6541,0,8,f +10437,6558,0,63,f +10437,6572,15,1,f +10437,6573,8,1,f +10437,6587,8,16,f +10437,6589,7,3,f +10437,6628,0,8,f +10437,6629,1,2,f +10437,6630,0,3,f +10437,6632,15,4,f +10437,6632,1,2,f +10437,6632,0,40,f +10437,6636,1,8,f +10437,75535,0,13,f +10437,76320,41,2,f +10437,76537,15,4,f +10437,78c05,1,2,f +10437,78c07,1,2,f +10437,78c09,179,8,f +10437,78c10,1,2,f +10437,78c11,1,2,f +10437,78c18,1,4,f +10437,78c18,179,2,f +10437,9244,7,5,f +10439,11153,15,2,f +10439,11203,72,1,f +10439,11437,0,1,f +10439,11438,4,1,f +10439,11439pat0002,47,1,f +10439,11691pr0003,4,1,f +10439,11895pr0001c01,4,1,f +10439,12825,15,1,f +10439,15207,15,1,f +10439,2357,4,2,f +10439,2412b,4,4,f +10439,2412b,4,1,t +10439,2419,71,2,f +10439,2420,71,4,f +10439,2540,1,2,f +10439,2654,33,2,f +10439,2780,0,2,t +10439,2780,0,18,f +10439,3001,0,2,f +10439,3003,71,2,f +10439,30031,0,1,f +10439,3004,4,2,f +10439,3004,72,2,f +10439,30099,0,2,f +10439,30173b,0,1,f +10439,30173b,0,1,t +10439,3020,27,9,f +10439,3021,71,1,f +10439,3021,1,1,f +10439,3022,0,2,f +10439,3023,72,1,f +10439,3030,72,1,f +10439,3034,0,3,f +10439,30357,0,4,f +10439,30367b,0,1,f +10439,3038,72,2,f +10439,3049d,0,1,f +10439,30553,72,2,f +10439,3062b,72,4,f +10439,3068b,0,3,f +10439,32000,71,2,f +10439,32015,15,2,f +10439,32039,71,2,f +10439,32039,4,1,f +10439,32062,4,3,f +10439,32064b,15,2,f +10439,32123b,71,2,t +10439,32123b,71,10,f +10439,32138,71,2,f +10439,3245c,72,4,f +10439,32474,27,1,f +10439,32523,4,4,f +10439,32525,0,1,f +10439,32532,0,1,f +10439,3298,72,1,f +10439,3626cpr0747,14,1,f +10439,3626cpr1083,0,1,f +10439,3626cpr1148,15,1,f +10439,3666,27,2,f +10439,3666,71,1,f +10439,3703,0,2,f +10439,3706,0,2,f +10439,3710,72,3,f +10439,3794b,15,1,f +10439,3795,72,3,f +10439,3958,0,1,f +10439,4032a,71,15,f +10439,40379,4,2,f +10439,4079,15,2,f +10439,4081b,72,2,f +10439,4081b,27,2,f +10439,4085c,4,2,f +10439,41769,1,1,f +10439,41769,72,1,f +10439,41770,72,1,f +10439,41770,1,1,f +10439,41854,0,1,f +10439,42003,71,2,f +10439,42610,71,2,f +10439,4274,1,3,t +10439,4274,1,7,f +10439,43093,1,6,f +10439,43722,0,1,f +10439,43723,0,1,f +10439,43887,0,2,f +10439,44294,71,2,f +10439,44301a,15,2,f +10439,4477,72,3,f +10439,4519,71,2,f +10439,4589,33,1,f +10439,48729b,0,1,f +10439,48729b,0,1,t +10439,48989,71,2,f +10439,53992,4,4,f +10439,56145,0,10,f +10439,57028c01,71,1,f +10439,57585,71,2,f +10439,57796,72,1,f +10439,59426,72,6,f +10439,59443,4,2,f +10439,59443,0,4,f +10439,59443,14,1,f +10439,6005,0,4,f +10439,60478,72,2,f +10439,60581,0,4,f +10439,60596,0,1,f +10439,60621,71,1,f +10439,6063,72,1,f +10439,6111,71,2,f +10439,6111,4,2,f +10439,6117,297,2,f +10439,6141,42,9,f +10439,6141,42,2,t +10439,62360,0,2,f +10439,62462,71,2,f +10439,63868,4,2,f +10439,64644,297,1,f +10439,64727,4,2,f +10439,6541,15,4,f +10439,6629,72,4,f +10439,70504stk01,9999,1,t +10439,73983,15,2,f +10439,85984,0,4,f +10439,87083,72,4,f +10439,87559,72,2,f +10439,87620,72,2,f +10439,88293,72,2,f +10439,92217,297,2,f +10439,92280,71,2,f +10439,93059,4,1,f +10439,95188,72,4,f +10439,970c00pr0422,0,1,f +10439,970c00pr0426,0,1,f +10439,970c00pr0454,4,1,f +10439,973pr2187c01,72,1,f +10439,973pr2197c01,0,1,f +10439,973pr2251c01,4,1,f +10439,98128,4,1,f +10439,98133pr0003,15,1,f +10439,98137,4,2,f +10439,98141,179,2,f +10439,98313,297,2,f +10439,99207,71,1,f +10439,99780,0,2,f +10441,14417,72,1,f +10441,14418,71,1,f +10441,15712,72,4,f +10441,18649,71,4,f +10441,2412b,71,2,f +10441,2420,72,4,f +10441,3022,71,2,f +10441,3023,71,2,f +10441,3023,0,3,f +10441,3710,72,1,f +10441,3839b,71,1,f +10441,4740,71,4,f +10441,51739,71,2,f +10441,52107,71,3,f +10441,54200,72,1,f +10441,60897,72,4,f +10441,64644,71,2,f +10441,85984,71,2,f +10441,92593,71,2,f +10441,92946,72,1,f +10441,99206,71,1,f +10441,99781,71,1,f +10442,2825,7,6,f +10442,2905,7,2,f +10442,6536,7,2,f +10443,2780,0,3,f +10443,2905,8,2,f +10443,32013,7,3,f +10443,32016,7,1,f +10443,32039,7,1,f +10443,32039,14,5,f +10443,32039,27,5,f +10443,32054,1,2,f +10443,32056,7,1,f +10443,32062,15,8,f +10443,32062,7,1,f +10443,32062,0,3,f +10443,32072,72,6,f +10443,32073,15,3,f +10443,32073,0,4,f +10443,32123b,7,5,f +10443,32140,7,2,f +10443,32173,8,16,f +10443,32173,7,4,f +10443,32174,8,2,f +10443,32184,7,4,f +10443,32192,7,3,f +10443,32269,15,2,f +10443,32270,7,2,f +10443,32271,272,3,f +10443,32291,6,2,f +10443,32307,0,7,f +10443,32316,272,1,f +10443,32348,272,1,f +10443,32474,0,1,f +10443,32475,8,2,f +10443,32476,272,1,f +10443,32476,320,3,f +10443,32476,86,10,f +10443,32482,0,1,f +10443,32523,272,1,f +10443,32523,86,2,f +10443,32523,6,1,f +10443,32527,4,1,f +10443,32533pb116,21,3,f +10443,32553,15,1,f +10443,32554,57,2,f +10443,32556,7,25,f +10443,32557,4,1,f +10443,32577,15,3,f +10443,32579,7,7,f +10443,33299a,7,1,f +10443,3706,19,11,f +10443,3706,4,8,f +10443,3749,19,2,f +10443,3749,7,10,f +10443,40490,8,1,f +10443,41668,1,4,f +10443,41669,484,1,f +10443,41669,41,3,f +10443,41670,4,1,f +10443,41670,19,2,f +10443,41677,73,3,f +10443,41677,484,4,f +10443,41677,7,12,f +10443,41678,15,4,f +10443,41678,1,2,f +10443,41678,7,1,f +10443,42003,7,1,f +10443,42074,15,20,f +10443,43093,0,20,f +10443,43093,15,5,f +10443,43557,15,1,f +10443,43558,178,4,f +10443,43559,272,3,f +10443,43559,148,1,f +10443,44135,72,12,f +10443,44136,272,1,f +10443,44136,8,2,f +10443,44138,2,1,f +10443,44138,1,1,f +10443,44139,8,1,f +10443,44140,1,1,f +10443,44140,4,1,f +10443,44140,179,3,f +10443,44140,6,1,f +10443,44140,0,1,f +10443,44144,135,4,f +10443,44145,135,1,f +10443,44146,135,4,f +10443,44148,8,1,f +10443,44247,8,10,f +10443,44294,7,1,f +10443,44807,0,2,f +10443,44807,6,6,f +10443,44808,135,1,f +10443,44809,15,4,f +10443,44810,320,1,f +10443,44819,135,3,f +10443,44936,179,2,f +10443,44938,179,1,f +10443,4519,7,3,f +10443,45425,135,1,f +10443,45749,8,1,f +10443,47296,72,2,f +10443,47298,288,2,f +10443,47312,72,2,f +10443,47328,320,2,f +10443,47328,86,1,f +10443,47330,320,5,f +10443,47331,320,1,f +10443,47332,0,4,f +10443,47332,320,1,f +10443,47334,179,1,f +10443,47335,135,1,f +10443,47336,135,3,f +10443,47338,135,2,f +10443,50899,135,8,f +10443,50899,288,1,f +10443,50899pat01,6,1,f +10443,50899pr0002,15,1,f +10443,50899pr0002,135,13,f +10443,50899pr0002,86,1,f +10443,50899pr0002,320,2,f +10443,50900,72,9,f +10443,50901,72,10,f +10443,50903,14,10,f +10443,50931,320,2,f +10443,58177,15,12,f +10443,6536,484,2,f +10443,6538b,15,2,f +10443,6538b,1,2,f +10443,6538b,8,15,f +10443,6538b,7,1,f +10443,6553,6,11,f +10443,6632,25,1,f +10443,kraata1,4,2,f +10443,kraata1,22,1,f +10443,kraata3,4,1,f +10443,kraata4,4,1,f +10443,kraata4,22,2,f +10443,kraata5,4,1,f +10443,kraata5,22,1,f +10443,kraata6,22,3,f +10443,x1190,34,1,f +10446,11211,71,5,f +10446,11303,272,1,f +10446,11458,72,4,f +10446,12825,72,2,f +10446,14682,71,2,f +10446,2412b,0,11,f +10446,2431,2,1,f +10446,2431,72,5,f +10446,2654,182,6,f +10446,2780,0,4,f +10446,3003,0,1,f +10446,3004,2,10,f +10446,3008,2,2,f +10446,3009,71,2,f +10446,3010,2,8,f +10446,3020,25,4,f +10446,3020,71,3,f +10446,3021,0,5,f +10446,3023,71,3,f +10446,3023,2,11,f +10446,3031,0,3,f +10446,3032,2,3,f +10446,3033,25,1,f +10446,30357,2,4,f +10446,30363,72,2,f +10446,30374,0,4,f +10446,30414,71,6,f +10446,30552,0,2,f +10446,30553,72,2,f +10446,3062b,0,1,f +10446,3068b,2,4,f +10446,3068b,0,4,f +10446,3069b,15,1,f +10446,3069b,36,2,f +10446,3070bpr0007,71,2,f +10446,32000,0,8,f +10446,32013,0,3,f +10446,32013,14,2,f +10446,32054,4,3,f +10446,32062,4,1,f +10446,32064b,72,8,f +10446,32270,0,1,f +10446,32529,0,2,f +10446,33183,10,1,f +10446,3460,2,4,f +10446,3622,2,2,f +10446,3626cpr1147,14,1,f +10446,3626cpr1331,14,1,f +10446,3626cpr1332,14,1,f +10446,3665,2,2,f +10446,3701,72,2,f +10446,3707,0,2,f +10446,3710,0,9,f +10446,3713,4,4,f +10446,3794b,72,7,f +10446,3795,25,2,f +10446,3795,2,4,f +10446,3829c01,1,1,f +10446,3836,70,1,f +10446,3837,72,1,f +10446,3898,15,1,f +10446,3899,4,1,f +10446,3940b,0,1,f +10446,4032a,72,2,f +10446,4079,70,1,f +10446,41334,72,1,f +10446,4274,71,4,f +10446,43093,1,4,f +10446,44294,71,1,f +10446,44728,72,2,f +10446,4477,72,2,f +10446,4488,71,4,f +10446,4519,71,1,f +10446,4528,179,1,f +10446,4740,36,3,f +10446,4740,72,2,f +10446,4865b,47,2,f +10446,48729b,0,6,f +10446,49668,179,10,f +10446,50304,71,1,f +10446,50305,71,1,f +10446,50745,72,4,f +10446,50950,71,16,f +10446,52031,2,1,f +10446,54200,288,8,f +10446,54200,182,4,f +10446,54200,0,2,f +10446,57585,71,1,f +10446,59900,182,4,f +10446,6014b,71,4,f +10446,60475b,71,6,f +10446,60478,72,4,f +10446,61184,71,4,f +10446,6141,36,13,f +10446,6141,71,4,f +10446,61487,2,4,f +10446,62462,320,2,f +10446,63868,71,2,f +10446,64453,47,1,f +10446,6541,2,6,f +10446,6553,72,2,f +10446,6558,1,2,f +10446,85984,71,3,f +10446,85984,2,4,f +10446,87544,2,2,f +10446,87609,2,3,f +10446,87617,0,2,f +10446,87697,0,4,f +10446,91988,72,1,f +10446,92593,72,1,f +10446,92926,72,2,f +10446,92946,72,2,f +10446,92947,71,4,f +10446,93160,15,1,f +10446,94925,71,2,f +10446,970c00,71,1,f +10446,970c00pr0618,272,2,f +10446,973pr0030c01,27,2,f +10446,973pr1196c01,15,1,f +10446,99207,71,2,f +10447,32171pb001,0,1,f +10447,32568,484,1,f +10447,32576,484,2,f +10447,32577,19,1,f +10447,32578,19,1,f +10447,32579,8,1,f +10447,40507,19,1,f +10448,2780,0,2,t +10448,2780,0,31,f +10448,2905,0,12,f +10448,3023,42,2,f +10448,30498,8,2,f +10448,32002,8,2,f +10448,32002,8,1,t +10448,32013,4,2,f +10448,32013,1,2,f +10448,32015,1,2,f +10448,32016,7,6,f +10448,32034,0,1,f +10448,32039,0,1,f +10448,32039,4,2,f +10448,32039,1,2,f +10448,32054,0,6,f +10448,32054,1,2,f +10448,32056,0,8,f +10448,32062,0,15,f +10448,32073,7,12,f +10448,32123b,7,2,t +10448,32123b,7,12,f +10448,32140,0,6,f +10448,32140,4,2,f +10448,32140,1,2,f +10448,32184,4,1,f +10448,32291,0,6,f +10448,32310,148,4,f +10448,32316,0,2,f +10448,32524,4,3,f +10448,32524,7,2,f +10448,32524,0,1,f +10448,32527,1,2,f +10448,32527,80,1,f +10448,32527,4,1,f +10448,32528,4,1,f +10448,32528,1,2,f +10448,32528,80,1,f +10448,32534,4,1,f +10448,32535,4,1,f +10448,32556,7,2,f +10448,32580,179,4,f +10448,3705,0,4,f +10448,3707,0,5,f +10448,3708,0,4,f +10448,3713,7,27,f +10448,3713,7,1,t +10448,40490,0,4,f +10448,41669,42,4,f +10448,41669,36,4,f +10448,42003,0,8,f +10448,43093,1,10,f +10448,43857,4,2,f +10448,44292,7,8,f +10448,44308,0,8,f +10448,4519,7,12,f +10448,6141,42,1,t +10448,6141,42,4,f +10448,6536,7,4,f +10448,6536,0,8,f +10448,6538b,0,2,f +10448,6558,0,16,f +10448,6587,8,4,f +10448,6629,0,2,f +10448,6632,1,2,f +10448,75c16,8,2,f +10448,78c02,179,6,f +10448,78c06,179,2,f +10448,motor6,8,2,f +10449,2420,0,2,f +10449,2431,0,1,f +10449,2536,0,2,f +10449,2715,3,1,f +10449,2716,0,1,f +10449,2723,15,2,f +10449,2780,0,12,f +10449,2905,0,2,f +10449,2907,7,1,f +10449,2994,14,3,f +10449,3048c,7,1,f +10449,32013,0,5,f +10449,32015,0,8,f +10449,32039,0,4,f +10449,32054,0,2,f +10449,32062,0,9,f +10449,32068,7,2,f +10449,32073,0,1,f +10449,32074c01,3,1,f +10449,32074c01,22,1,f +10449,32123b,7,1,t +10449,32123b,7,3,f +10449,3298,0,1,f +10449,3648a,7,1,f +10449,3702,0,2,f +10449,3705,0,6,f +10449,3706,0,4,f +10449,3709,0,2,f +10449,3713,7,3,f +10449,3749,7,3,f +10449,4285b,0,1,f +10449,4519,0,9,f +10449,4716,0,1,f +10449,6536,7,1,f +10449,6541,0,2,f +10449,6558,0,3,f +10449,6578,0,3,f +10449,6629,3,4,f +10449,6632,0,2,f +10449,75535,3,1,f +10449,75535,0,2,f +10449,76110c01,14,2,f +10449,78c09,3,1,f +10449,78c12,22,1,f +10449,case1,0,1,f +10449,tech001,9999,1,f +10451,3020,2,1,f +10451,3022,2,1,f +10451,3023,27,1,f +10451,3023,27,1,t +10451,3024,2,2,f +10451,3024,2,2,t +10451,3039,40,1,f +10451,3062b,15,1,t +10451,3062b,15,2,f +10451,3622,2,2,f +10451,3623,2,1,f +10451,3660,2,1,f +10451,3710,27,1,f +10451,4286,2,2,f +10451,6141,36,3,t +10451,6141,36,1,f +10452,30246,29,1,f +10452,30385,143,1,f +10452,3942c,15,1,f +10452,3943b,15,1,f +10454,3001a,0,1,f +10454,3002a,47,2,f +10454,3002a,1,2,f +10454,3005,1,44,f +10454,3005,47,4,f +10454,3008a,1,16,f +10454,3009,1,8,f +10454,3009pb019,1,2,f +10454,3009pb021,1,2,f +10454,3009ptb,1,2,f +10454,3009pte,15,4,f +10454,3020,7,44,f +10454,3022,4,1,f +10454,3022,7,2,f +10454,3022,1,2,f +10454,3023,7,2,f +10454,3023,1,1,f +10454,3024,1,4,f +10454,3024,7,2,f +10454,3026,7,4,f +10454,3034,15,20,f +10454,3037,1,4,f +10454,3040a,1,2,f +10454,3045,1,2,f +10454,3058a,7,1,f +10454,3065,47,32,f +10454,3065,1,52,f +10454,3087bc01,4,2,f +10454,3176,4,3,f +10454,3176c01,4,3,f +10454,3228a,1,8,f +10454,3229a,1,16,f +10454,3230a,1,16,f +10454,3404bc01,15,4,f +10454,458,7,4,f +10454,468c01,1,1,f +10454,824,15,4,f +10454,wheel1a,4,16,f +10454,wheel1b,4,4,f +10454,x579c02,1,1,f +10455,16338pr0001,19,1,f +10455,30374,70,1,f +10455,4733,0,1,f +10455,59900,0,1,f +10455,970c00pr0629,19,1,f +10455,973pr2592c01,19,1,f +10456,2412b,14,1,f +10456,2436,71,1,f +10456,2780,0,1,t +10456,2780,0,2,f +10456,2817,71,1,f +10456,3021,14,1,f +10456,3024,47,2,f +10456,3070b,14,1,t +10456,3070b,14,1,f +10456,32523,72,2,f +10456,3623,14,1,f +10456,3794b,0,3,f +10456,4865a,14,2,f +10459,2654,0,2,f +10459,2780,0,12,f +10459,2815,0,2,f +10459,2902,0,2,f +10459,2903,15,2,f +10459,2982c01,1,1,f +10459,3001,4,6,f +10459,3003,14,6,f +10459,30208,42,2,f +10459,3023,1,8,f +10459,3028,4,2,f +10459,32001,1,4,f +10459,32002,8,8,f +10459,32039,7,2,f +10459,32062,0,4,f +10459,32064b,2,4,f +10459,32073,7,2,f +10459,32123b,7,8,f +10459,32250,1,2,f +10459,3460,1,2,f +10459,3482,14,4,f +10459,3483,0,2,f +10459,3626bpr0001,14,1,f +10459,3634,0,2,f +10459,3647,7,3,f +10459,3648b,4,2,f +10459,3649,2,2,f +10459,3673,7,12,f +10459,3700,1,4,f +10459,3701,1,4,f +10459,3703,0,2,f +10459,3703,1,2,f +10459,3705,0,2,f +10459,3706,0,2,f +10459,3707,0,2,f +10459,3708,0,2,f +10459,3709,14,4,f +10459,3713,7,20,f +10459,3737,0,2,f +10459,3738,14,4,f +10459,3749,19,8,f +10459,3832,7,2,f +10459,3894,1,4,f +10459,3895,1,2,f +10459,3901,6,1,f +10459,3956,1,2,f +10459,4185,14,2,f +10459,4274,7,4,f +10459,4519,7,2,f +10459,5306bc020,0,3,f +10459,5306bc036,0,3,f +10459,6035,15,1,f +10459,6093,0,1,f +10459,6536,7,2,f +10459,6538b,7,2,f +10459,6553,7,4,f +10459,6587,8,2,f +10459,71082,47,1,f +10459,71427c01,7,2,f +10459,71793,7,1,f +10459,78c12,22,2,f +10459,85544,1,4,f +10459,879,7,2,f +10459,884,14,1,f +10459,970c00,1,1,f +10459,973c01,15,1,f +10459,bin03,10,1,f +10459,x87,8,1,f +10460,2625,15,1,f +10460,30145,7,1,f +10460,3022,25,1,f +10460,30248,15,1,f +10460,30332,0,1,f +10460,30640,25,1,f +10460,30663,7,1,f +10460,3475b,25,2,f +10460,4729,15,1,f +10460,6239,15,2,f +10460,js027,-1,1,f +10463,12825,15,2,f +10463,2339,0,2,f +10463,2357,71,8,f +10463,2423,2,2,f +10463,2454a,70,2,f +10463,2454a,0,1,f +10463,2540,15,1,f +10463,2780,0,1,f +10463,2780,0,1,t +10463,3004,71,3,f +10463,3004,70,5,f +10463,3004,0,4,f +10463,3004,25,3,f +10463,3005,70,5,f +10463,3005,71,2,f +10463,30103,0,1,f +10463,30136,72,6,f +10463,3022,70,2,f +10463,3023,72,8,f +10463,3024,15,2,f +10463,3031,0,1,f +10463,3032,0,1,f +10463,3035,71,2,f +10463,3036,1,1,f +10463,30374,70,1,f +10463,3039,72,4,f +10463,3062b,0,2,f +10463,3062b,72,12,f +10463,3069b,71,4,f +10463,3069b,1,2,f +10463,32028,71,2,f +10463,32054,0,2,f +10463,32123b,14,1,f +10463,32123b,14,1,t +10463,3308,72,1,f +10463,33320,2,1,f +10463,3622,71,7,f +10463,3622,0,3,f +10463,3622,70,2,f +10463,3623,0,2,f +10463,3633,0,2,f +10463,3660,25,1,f +10463,3660,72,4,f +10463,3665,0,1,f +10463,3665,72,4,f +10463,3665,70,5,f +10463,3666,71,4,f +10463,3701,71,2,f +10463,3702,71,3,f +10463,3710,70,4,f +10463,3794b,25,2,f +10463,3942c,0,1,f +10463,3943b,0,1,f +10463,40490,0,1,f +10463,42446,72,1,f +10463,4274,71,1,f +10463,4274,71,1,t +10463,4286,72,4,f +10463,4287,70,2,f +10463,4460b,0,1,f +10463,44728,72,2,f +10463,4510,72,2,f +10463,4599b,0,2,f +10463,4733,15,1,f +10463,4740,71,1,f +10463,54200,72,8,f +10463,54200,72,1,t +10463,59426,72,1,f +10463,59443,0,1,f +10463,59900,25,2,f +10463,59900,0,1,f +10463,59900,15,4,f +10463,6020,0,1,f +10463,60474,0,1,f +10463,6141,25,4,f +10463,6141,47,1,t +10463,6141,0,10,f +10463,6141,70,3,f +10463,6141,47,3,f +10463,6141,70,1,t +10463,6141,25,1,t +10463,6141,0,1,t +10463,61485,0,1,f +10463,6541,0,4,f +10463,85941,15,1,f +10463,85984,72,3,f +10463,87087,71,2,f +10463,87580,72,3,f +10463,92099,72,1,f +10463,92107,72,1,f +10463,92842,0,1,f +10463,98139,297,1,f +10465,2420,0,2,f +10465,2431,0,1,f +10465,2536,0,2,f +10465,2715,3,1,f +10465,2716,0,1,f +10465,2723,15,2,f +10465,2780,0,1,t +10465,2780,0,11,f +10465,2905,0,2,f +10465,2907,7,1,f +10465,2994,14,3,f +10465,3048c,7,1,f +10465,32013,0,5,f +10465,32015,0,8,f +10465,32039,0,4,f +10465,32054,0,2,f +10465,32062,0,9,f +10465,32068,7,2,f +10465,32073,0,1,f +10465,32074c01,22,1,f +10465,32074c01,3,1,f +10465,32123b,7,1,t +10465,32123b,7,3,f +10465,3298,0,1,f +10465,3648a,7,1,f +10465,3702,0,2,f +10465,3705,0,6,f +10465,3706,0,4,f +10465,3709,0,2,f +10465,3713,7,2,f +10465,3713,7,1,t +10465,3749,7,3,f +10465,4285b,0,1,f +10465,4519,0,9,f +10465,4716,0,1,f +10465,6536,7,1,f +10465,6541,0,2,f +10465,6558,0,3,f +10465,6578,0,3,f +10465,6629,3,4,f +10465,6632,0,2,f +10465,75535,3,1,f +10465,75535,0,2,f +10465,76110c01,14,2,f +10465,78c09,3,1,f +10465,78c12,22,1,f +10465,tech001,9999,1,f +10466,3001,1,3,f +10466,3001,14,17,f +10466,3002,14,13,f +10466,3003,14,15,f +10466,3003,1,6,f +10466,3004,14,9,f +10466,3009,4,3,f +10466,3010,1,2,f +10466,3030,1,1,f +10466,3031,14,1,f +10466,3032,1,1,f +10466,3034,14,3,f +10466,3836,6,1,f +10466,3888ac01,1,1,f +10466,3997,4,1,f +10466,4006,0,1,f +10466,691,4,1,f +10466,692,4,1,f +10466,fab5h,9999,1,f +10466,fab8g,9999,1,f +10466,x655c02,4,1,f +10466,x661c03,1,1,f +10467,27bc01,4,4,f +10467,3001a,0,6,f +10467,3001a,47,2,f +10467,3001a,15,1,f +10467,3001a,4,1,f +10467,3002a,15,2,f +10467,3003,0,1,f +10467,3004,14,33,f +10467,3004,47,4,f +10467,3004,15,1,f +10467,3004,4,2,f +10467,3004,0,4,f +10467,3004prc,15,2,f +10467,3005,4,4,f +10467,3005,14,14,f +10467,3008,14,16,f +10467,3009,14,5,f +10467,3010,14,13,f +10467,3010,4,7,f +10467,3010,47,1,f +10467,3010pb035e,4,2,f +10467,3010pb036e,15,1,f +10467,3020,4,1,f +10467,3021,4,2,f +10467,3023,4,6,f +10467,3024,1,6,f +10467,3028,4,4,f +10467,3029,4,1,f +10467,3030,4,2,f +10467,3030,15,1,f +10467,3032,15,1,f +10467,3032,4,1,f +10467,3036,4,1,f +10467,3037,47,1,f +10467,3037,4,1,f +10467,3068a,7,6,f +10467,3081bc01,4,11,f +10467,3135c04,4,1,f +10467,3137c01,0,4,f +10467,3137c02,0,4,f +10467,3139,0,8,f +10467,3149c01,4,1,f +10467,3188,4,1,f +10467,3189,4,1,f +10467,32bc01,4,1,f +10467,420,14,1,f +10467,421,14,1,f +10467,777px7,15,1,f +10467,7b,0,8,f +10467,915p02,2,1,f +10467,ftpine,2,1,f +10468,2476a,1,2,f +10468,2850a,7,2,f +10468,3022,1,2,f +10468,3069bpt1,15,1,f +10468,32203,4,4,f +10468,32203,2,4,f +10468,32203,0,8,f +10468,32203,14,4,f +10468,32204,2,4,f +10468,32205,2,2,f +10468,32205,14,6,f +10468,32206,0,1,f +10468,32206,2,3,f +10468,32207,8,6,f +10468,32209,15,13,f +10468,32213,2,2,f +10468,32219,14,2,f +10468,32221,8,5,f +10468,32229,0,6,f +10468,32229,2,4,f +10468,32230,0,2,f +10468,32242,4,4,f +10468,32242,14,4,f +10468,32242,0,6,f +10468,32242,2,12,f +10468,32246,4,2,f +10468,32247,0,2,f +10468,33298,7,58,f +10468,3475b,0,2,f +10468,3673,7,4,f +10468,3749,7,2,f +10468,3795,4,1,f +10468,zbb014,7,34,f +10468,zbb015,2,16,f +10468,zbb015,0,9,f +10468,zbb015,4,6,f +10468,zbb015,14,8,f +10468,zbb018,14,4,f +10468,zbb022,0,5,f +10469,15064,0,4,f +10469,15100,0,2,f +10469,15462,28,3,f +10469,18587,71,2,f +10469,18588,41,2,f +10469,18651,0,2,f +10469,24162pat0005,179,1,f +10469,24188,148,2,f +10469,24191,179,1,f +10469,2780,0,3,f +10469,30552,71,3,f +10469,30553,72,3,f +10469,32013,1,2,f +10469,32054,0,1,f +10469,32062,4,2,f +10469,32073,71,1,f +10469,32123b,71,1,f +10469,32184,71,2,f +10469,32249,0,2,f +10469,32291,0,2,f +10469,32316,1,1,f +10469,32449,41,2,f +10469,3673,71,1,f +10469,3705,0,1,f +10469,3706,0,2,f +10469,3707,0,1,f +10469,3713,71,6,f +10469,3941,71,1,f +10469,41669,25,2,f +10469,41677,72,2,f +10469,4274,71,1,f +10469,44375a,71,1,f +10469,4519,71,1,f +10469,48729b,0,2,f +10469,53585,0,1,f +10469,58176,36,1,f +10469,59426,72,1,f +10469,59900,25,3,f +10469,59900,0,2,f +10469,6041,0,3,f +10469,60483,0,1,f +10469,6141,33,24,f +10469,6536,71,1,f +10469,6553,0,1,f +10469,90605,0,1,f +10469,90611,41,2,f +10469,98313,1,4,f +10469,98585,41,2,f +10471,2412b,0,2,f +10471,2439,27,1,f +10471,2439,191,1,f +10471,2439,320,1,f +10471,3005,52,2,f +10471,3010,118,3,f +10471,30103,0,1,f +10471,30104,72,1,f +10471,30153,47,4,f +10471,3020,118,1,f +10471,3022,191,1,f +10471,30238,0,1,f +10471,30240,71,1,f +10471,3031,23,1,f +10471,3031,379,1,f +10471,3035,379,1,f +10471,3036,379,1,f +10471,30385,383,1,f +10471,3068bpb0076,15,1,f +10471,3068bpb0077,15,1,f +10471,3068bpb0078,15,1,f +10471,3068bpb0079,212,1,f +10471,33009,26,1,f +10471,33051,10,1,f +10471,33061,34,1,f +10471,33201,0,1,f +10471,33203,70,1,f +10471,33217,52,1,f +10471,33320,2,1,f +10471,3626b,47,1,f +10471,3626bpb0225,34,1,f +10471,3710,379,1,f +10471,3710,23,1,f +10471,3959,0,1,f +10471,4237,52,1,f +10471,4238,52,1,f +10471,4341,0,1,f +10471,4429,45,1,f +10471,4589,34,1,f +10471,4735,71,1,f +10471,4740,117,3,f +10471,51163cx1,484,1,f +10471,57503,334,2,f +10471,57504,334,2,f +10471,57505,334,2,f +10471,57506,334,2,f +10471,5962stk01,9999,1,t +10471,6126a,57,1,f +10471,6141,36,4,f +10471,6141,57,1,t +10471,6141,36,1,t +10471,6141,42,1,t +10471,6141,42,4,f +10471,6141,34,4,f +10471,6141,57,5,f +10471,6141,34,1,t +10471,6182,118,3,f +10471,62808,60,2,f +10471,belvfem54,9999,1,f +10471,x234,70,1,f +10472,2456,1,1,f +10472,2456,15,1,f +10472,3001,4,4,f +10472,3001,14,4,f +10472,3001,0,2,f +10472,3001,2,2,f +10472,3001,15,6,f +10472,3001,1,6,f +10472,3002,2,4,f +10472,3002,0,2,f +10472,3002,15,4,f +10472,3002,4,2,f +10472,3002,1,4,f +10472,3002,14,2,f +10472,3003,2,4,f +10472,3003,0,4,f +10472,3003,15,12,f +10472,3003,14,6,f +10472,3003,1,12,f +10472,3003,4,6,f +10472,3004,15,12,f +10472,3004,1,12,f +10472,3004,0,4,f +10472,3004,2,4,f +10472,3004,14,8,f +10472,3004,4,8,f +10472,3005,2,4,f +10472,3005,1,8,f +10472,3005,0,4,f +10472,3005,15,8,f +10472,3005,4,6,f +10472,3005,14,6,f +10472,3007,15,1,f +10472,3007,1,1,f +10472,3008,15,2,f +10472,3008,1,2,f +10472,3009,4,2,f +10472,3009,1,2,f +10472,3010,4,2,f +10472,3010,15,4,f +10472,3010,1,2,f +10472,3010,14,2,f +10472,3622,1,2,f +10472,3622,4,2,f +10472,3622,14,2,f +10472,3622,15,2,f +10473,12825,72,1,f +10473,2341,71,2,f +10473,2357,320,8,f +10473,2412b,70,7,f +10473,2419,71,6,f +10473,2420,72,4,f +10473,2431,71,2,f +10473,2431,36,1,f +10473,2431,72,2,f +10473,2444,72,8,f +10473,2445,72,3,f +10473,2450,71,2,f +10473,2462,71,8,f +10473,2476a,71,4,f +10473,2654,72,8,f +10473,2780,0,12,f +10473,2780,0,2,t +10473,298c02,0,2,t +10473,298c02,0,4,f +10473,3001,72,6,f +10473,3003,72,3,f +10473,30031,72,1,f +10473,3004,320,5,f +10473,3009,320,4,f +10473,3020,72,4,f +10473,3021,71,2,f +10473,3022,71,1,f +10473,3023,28,15,f +10473,3029,72,1,f +10473,3030,71,1,f +10473,3031,72,7,f +10473,3032,72,2,f +10473,3034,71,2,f +10473,3035,71,2,f +10473,3036,71,2,f +10473,30363,72,4,f +10473,30374,35,1,f +10473,30374,36,2,f +10473,30381,0,1,f +10473,3039pr0015,0,1,f +10473,3040b,70,2,f +10473,3040b,72,2,f +10473,30410,70,1,f +10473,30414,71,2,f +10473,3043,0,1,f +10473,30475,70,1,f +10473,30565,72,2,f +10473,3062b,19,2,f +10473,3068b,71,2,f +10473,3069b,71,1,f +10473,3069b,320,6,f +10473,32013,71,2,f +10473,32018,71,6,f +10473,32054,0,6,f +10473,32271,71,2,f +10473,32316,71,2,f +10473,32530,72,2,f +10473,3298,72,2,f +10473,33299a,71,2,f +10473,3460,0,1,f +10473,3460,72,2,f +10473,3623,72,8,f +10473,3626b,0,2,f +10473,3626bpr0724,78,1,f +10473,3626bpr0813,78,1,f +10473,3626bpr0814,84,1,f +10473,3626bpr0815,0,1,f +10473,3660,71,4,f +10473,3665,71,4,f +10473,3666,71,4,f +10473,3684,71,1,f +10473,3700,71,2,f +10473,3710,71,5,f +10473,3747b,72,2,f +10473,3747b,320,1,f +10473,3795,71,2,f +10473,3795,72,2,f +10473,3832,71,7,f +10473,3894,71,2,f +10473,4070,70,6,f +10473,4085c,4,1,f +10473,4150,0,1,f +10473,4162,71,2,f +10473,4162,72,6,f +10473,41678,71,2,f +10473,42023,72,6,f +10473,4286,70,2,f +10473,4287,72,2,f +10473,43093,1,4,f +10473,43337,70,1,f +10473,44375apr0008,71,1,f +10473,44567a,0,6,f +10473,44568,71,4,f +10473,44570,71,4,f +10473,44728,71,1,f +10473,44728,0,4,f +10473,4510,72,1,f +10473,4519,71,4,f +10473,4589,36,4,f +10473,4733,0,2,f +10473,47397,71,2,f +10473,47397,72,3,f +10473,47398,71,2,f +10473,47398,72,3,f +10473,48336,0,5,f +10473,4865a,72,3,f +10473,50231,70,1,f +10473,50231,0,1,f +10473,50304,72,2,f +10473,50305,72,2,f +10473,50950,320,2,f +10473,50950,71,2,f +10473,54200,70,6,f +10473,54200,70,1,t +10473,54383,71,4,f +10473,54383,72,4,f +10473,54384,71,4,f +10473,54384,72,4,f +10473,58247,0,1,f +10473,6003,72,2,f +10473,6005,71,4,f +10473,6005,72,4,f +10473,6019,19,2,f +10473,60471,71,6,f +10473,60477,72,2,f +10473,60478,72,2,f +10473,6081,72,2,f +10473,6091,72,6,f +10473,6091,320,6,f +10473,61184,71,2,f +10473,61409,72,4,f +10473,6141,36,6,f +10473,6141,36,1,t +10473,6141,19,1,t +10473,6141,19,2,f +10473,61678,72,4,f +10473,6179,71,1,f +10473,6180,71,5,f +10473,6183,0,1,f +10473,6215,71,1,f +10473,62462,71,1,f +10473,63864,320,2,f +10473,63868,71,2,f +10473,64567,80,2,f +10473,6553,71,2,f +10473,6558,1,6,f +10473,6628,0,2,f +10473,6636,72,8,f +10473,6636,71,2,f +10473,85984,71,1,f +10473,87079,71,1,f +10473,87079,72,2,f +10473,88293,71,8,f +10473,92280,71,2,f +10473,92593,72,1,f +10473,92738,0,1,f +10473,92761pr0002,0,1,t +10473,92761pr0002,0,1,f +10473,92762pr01,70,1,f +10473,970c00,70,1,f +10473,970c00,0,2,f +10473,970c00,379,1,f +10473,973pr1802c01,19,1,f +10473,973pr1803c01,71,1,f +10473,973pr1804c01,484,1,f +10473,973pr1805c01,0,1,f +10474,2357,4,4,f +10474,2431,4,1,f +10474,3009,4,2,f +10474,3010,4,3,f +10474,3020,15,1,f +10474,3023,15,2,f +10474,3023,4,9,f +10474,3068b,15,4,f +10474,3176,4,4,f +10474,3665,4,2,f +10474,3794b,15,2,f +10474,3958,4,2,f +10474,44728,15,8,f +10474,54200,4,1,t +10474,54200,4,4,f +10474,6636,4,2,f +10474,92593,4,1,f +10476,3626bpb0152,6,1,f +10476,3626bpb0153,6,1,f +10476,3626bpb0154,6,1,f +10476,45522,19,3,f +10476,973bpb152c01,14,1,f +10476,973bpb153c01,0,1,f +10476,973bpb154c01,2,1,f +10476,bbcard04,9999,1,f +10476,bbcard05gl,9999,1,f +10476,bbcard06,9999,1,f +10476,x494cx1,0,1,f +10476,x494cx1,14,1,f +10476,x494cx1,2,1,f +10478,11252,179,1,f +10478,3626bpr1060,14,1,f +10478,88646,0,1,f +10478,95228pr0002,34,1,f +10478,970c00,0,1,f +10478,973pr2158c01,0,1,f +10478,99930,0,1,f +10480,2342,0,1,f +10480,2342,1,1,f +10480,2342,15,1,f +10480,2408,33,1,f +10480,2446,1,1,f +10480,2447,33,1,f +10480,298c04,15,1,t +10480,298c04,15,2,f +10480,3005,0,2,f +10480,3010,15,1,f +10480,3020,15,1,f +10480,3023,0,2,f +10480,3023,15,2,f +10480,3024,0,4,f +10480,3024,15,4,f +10480,3032,15,1,f +10480,3034,0,1,f +10480,3036,15,1,f +10480,3040b,15,2,f +10480,3062b,1,1,f +10480,3068b,15,2,f +10480,3069b,15,2,f +10480,3069bp25,15,2,f +10480,3070b,15,1,t +10480,3070b,15,2,f +10480,3460,15,4,f +10480,3623,15,6,f +10480,3623,0,2,f +10480,3626apr0001,14,1,f +10480,3641,0,4,f +10480,3666,0,1,f +10480,3710,15,2,f +10480,3710,0,1,f +10480,3794a,15,2,f +10480,3838,1,1,f +10480,3933a,15,1,f +10480,3934a,15,1,f +10480,3937,0,1,f +10480,3937,15,2,f +10480,3937,1,1,f +10480,3938,0,1,f +10480,3938,1,1,f +10480,3938,15,2,f +10480,3957a,15,2,f +10480,4070,0,2,f +10480,4081b,15,4,f +10480,4229,0,3,f +10480,4589,15,1,f +10480,4589,36,4,f +10480,4589,0,2,f +10480,4597,0,1,f +10480,4600,0,2,f +10480,4624,15,4,f +10480,4735,1,2,f +10480,4740,36,2,f +10480,73983,0,2,f +10480,73983,15,2,f +10480,970c00,1,1,f +10480,973p6cc01,15,1,f +10482,2447,41,1,f +10482,2447,0,1,f +10482,2447,41,1,t +10482,2447,0,1,t +10482,30038,8,1,f +10482,30133,0,1,f +10482,30135,8,1,f +10482,3022,6,3,f +10482,30228,8,1,f +10482,30325,6,1,f +10482,30568,6,3,f +10482,3626bpb0106,14,1,f +10482,3626bpx32,14,1,f +10482,3626bpx90,14,1,f +10482,3962b,0,1,f +10482,4142695pb1,9999,1,f +10482,4142695pb2,9999,1,f +10482,4142695pb3,9999,1,f +10482,4349,7,1,f +10482,4740,8,1,f +10482,6126a,57,1,f +10482,970x023,8,1,f +10482,970x026,8,2,f +10482,973pb0044c01,1,1,f +10482,973pb0070c01,8,1,f +10482,973px143c01,0,1,f +10484,2412b,15,1,f +10484,2432,15,1,f +10484,2434,0,1,f +10484,2446,0,1,f +10484,2447,42,1,f +10484,2452,0,2,f +10484,2466,42,2,f +10484,2539,0,1,f +10484,2569,42,2,f +10484,3005,15,2,f +10484,3010,0,2,f +10484,3039,0,2,f +10484,3040b,0,4,f +10484,3069bp68,15,1,f +10484,3626apr0001,14,1,f +10484,3660,0,2,f +10484,3666,0,2,f +10484,3679,7,6,f +10484,3680,15,6,f +10484,3710,0,1,f +10484,3795,0,4,f +10484,3933,0,1,f +10484,3934,0,1,f +10484,3937,0,1,f +10484,3938,15,1,f +10484,3957a,0,2,f +10484,3960,42,2,f +10484,4213,0,1,f +10484,4276b,15,2,f +10484,4286,0,2,f +10484,4315,0,1,f +10484,4345b,15,1,f +10484,4346p60,0,1,f +10484,4476b,0,1,f +10484,4590,0,1,f +10484,4740,42,2,f +10484,4864a,0,1,f +10484,6023,15,1,f +10484,6141,15,2,f +10484,6141,42,4,f +10484,970x026,15,1,f +10484,973p51c01,15,1,f +10485,53793,89,1,f +10486,10884,2,2,f +10486,11090,0,2,f +10486,11211,19,2,f +10486,11211,71,2,f +10486,11213,27,1,f +10486,11215,71,1,f +10486,11477,72,2,f +10486,14395,70,4,f +10486,15068,27,2,f +10486,15279,10,1,f +10486,15573,27,3,f +10486,15712,0,1,f +10486,15712,14,2,f +10486,16577,19,1,f +10486,18980,71,1,f +10486,2357,70,2,f +10486,2417,26,4,f +10486,2431,322,2,f +10486,2431,308,1,f +10486,2431,19,2,f +10486,2431,26,4,f +10486,2449,19,4,f +10486,2456,70,1,f +10486,2458,72,2,f +10486,2460,0,1,f +10486,24946,15,4,f +10486,24947,85,1,f +10486,24947,14,1,f +10486,2540,72,2,f +10486,26371pr02,27,1,f +10486,26393pr02,4,1,f +10486,26541pr01,15,1,f +10486,2654pr0008,71,1,f +10486,2780,0,1,t +10486,2780,0,1,f +10486,2817,71,2,f +10486,3002,19,1,f +10486,3002,70,1,f +10486,3003,19,2,f +10486,3005,19,5,f +10486,30093,5,2,f +10486,30126,2,1,t +10486,30126,2,3,f +10486,30150,70,1,f +10486,3020,70,2,f +10486,3020,2,1,f +10486,3020,27,2,f +10486,3021,28,7,f +10486,3022,27,2,f +10486,3022,19,4,f +10486,3023,19,2,f +10486,3023,72,4,f +10486,3023,0,6,f +10486,3024,19,2,f +10486,3024,19,1,t +10486,3029,322,1,f +10486,3034,70,1,f +10486,30367c,14,1,f +10486,30367c,85,1,f +10486,30367c,0,1,f +10486,30377,308,1,t +10486,30377,308,3,f +10486,3039,19,2,f +10486,3039,70,2,f +10486,30565,2,2,f +10486,3062b,70,1,f +10486,3068b,70,3,f +10486,3068b,28,1,f +10486,3068b,71,3,f +10486,3069b,308,2,f +10486,3069b,71,2,f +10486,3069b,191,1,f +10486,3069b,85,2,f +10486,3069b,19,2,f +10486,3176,71,4,f +10486,32000,72,1,f +10486,32013,72,2,f +10486,32016,71,2,f +10486,32449,72,2,f +10486,3245b,19,4,f +10486,33243,19,2,f +10486,33291,10,2,f +10486,33291,26,2,f +10486,33291,191,1,t +10486,33291,191,3,f +10486,33291,10,2,t +10486,33291,26,2,t +10486,3623,2,1,f +10486,3660,19,8,f +10486,3665,19,4,f +10486,3666,27,2,f +10486,3666,71,2,f +10486,3705,0,3,f +10486,3710,28,4,f +10486,3713,71,1,t +10486,3713,71,4,f +10486,3741,2,2,f +10486,3741,2,1,t +10486,3742,5,4,f +10486,3742,14,4,f +10486,3795,28,3,f +10486,3937,0,1,f +10486,3958,19,1,f +10486,4032a,19,1,f +10486,4081b,19,1,f +10486,4274,71,1,t +10486,4274,71,2,f +10486,43093,1,4,f +10486,43892,308,1,f +10486,44728,71,2,f +10486,4488,71,2,f +10486,4865b,28,1,f +10486,49668,191,1,f +10486,54200,72,1,t +10486,54200,72,1,f +10486,56898,0,1,f +10486,56904,71,1,f +10486,6003,28,2,f +10486,6003,27,1,f +10486,6003,322,1,f +10486,6014b,71,2,f +10486,60474,14,1,f +10486,60474,308,1,f +10486,60478,72,1,f +10486,60481,19,4,f +10486,61072,179,2,f +10486,61252,72,1,f +10486,6134,71,1,f +10486,6141,19,2,f +10486,6141,70,1,t +10486,6141,70,4,f +10486,6141,19,1,t +10486,63864,28,1,f +10486,63965,0,2,f +10486,73983,72,4,f +10486,85984,71,4,f +10486,87079,19,1,f +10486,87559,19,2,f +10486,87697,0,2,f +10486,88072,0,4,f +10486,91988,72,1,f +10486,92950,70,1,f +10486,93551pr0001,84,1,f +10486,93552pr0001,70,1,t +10486,93552pr0001,70,1,f +10486,98138pr0008,15,2,f +10486,98138pr0008,15,1,t +10486,98284,70,3,f +10486,98397,71,1,f +10486,99780,2,1,f +10487,2352,14,2,f +10487,3001,1,4,f +10487,3001,15,4,f +10487,3001,14,4,f +10487,3001,4,6,f +10487,3001pr1,14,1,f +10487,3002,1,2,f +10487,3002,15,2,f +10487,3002a,14,2,f +10487,3002a,4,2,f +10487,3002a,0,2,f +10487,3003,15,4,f +10487,3003,0,2,f +10487,3003,1,4,f +10487,3003,14,4,f +10487,3003,4,6,f +10487,3003pe1,14,2,f +10487,3006,1,2,f +10487,3185,15,4,f +10487,3483,0,4,f +10487,4130,14,1,f +10487,4131,4,1,f +10487,4132,14,1,f +10487,4133,4,1,f +10487,4180c02,0,2,f +10487,4204,2,1,f +10487,bfp001,9999,1,f +10489,2419,1,1,f +10489,2420,1,4,f +10489,2436,0,3,f +10489,298c02,1,2,f +10489,3020,1,3,f +10489,3021,1,1,f +10489,3022,1,1,f +10489,3023,1,11,f +10489,3710,1,7,f +10489,41769,1,1,f +10489,41770,1,1,f +10489,42022,1,2,f +10489,44301a,0,10,f +10489,44302a,1,10,f +10489,49668,0,6,f +10489,54200,0,4,f +10489,6141,0,2,f +10492,10199,10,1,f +10492,11198,27,1,f +10492,13355,0,1,f +10492,13533,71,1,f +10492,13535,4,1,f +10492,14721,10,2,f +10492,15211,14,1,f +10492,16196,321,1,f +10492,16598,71,1,f +10492,16686,70,1,f +10492,18921,10,1,f +10492,19084,179,1,f +10492,22881,27,2,f +10492,2302,27,2,f +10492,23927,70,1,f +10492,24806,14,1,f +10492,25422,25,1,f +10492,3011,191,1,f +10492,3011,2,2,f +10492,31042,179,1,f +10492,31059,10,2,f +10492,31070,70,1,f +10492,3437,10,1,f +10492,3437,191,1,f +10492,3437,484,5,f +10492,3437,19,4,f +10492,4066,19,12,f +10492,4066,484,2,f +10492,40666,27,2,f +10492,47510pr0014,191,1,f +10492,51703,182,1,f +10492,60364pr0003,484,1,f +10492,61649,14,1,f +10492,64152,25,1,f +10492,6474,484,1,f +10492,6510,4,2,f +10492,6510,25,1,f +10492,6510,5,2,f +10492,6510,2,4,f +10492,75115pr0031,4,1,f +10492,76371pr0029,25,1,f +10492,76371pr0030,15,1,f +10492,76371pr0031,10,1,f +10492,76371pr0032,5,1,f +10492,87084,14,1,f +10492,87084,10,2,f +10492,88694,2,1,f +10492,89873,71,1,f +10492,89879,72,1,f +10492,98223,27,2,f +10492,98225,484,4,f +10493,15503pr0001,0,1,f +10493,23715,47,1,f +10493,30238,4,1,f +10493,3626cpr1729,15,1,f +10493,3678bpr0050,0,1,f +10493,88646,0,1,f +10493,973pr3113c01,0,1,f +10494,2412b,71,2,f +10494,2412b,71,1,t +10494,2431,1,1,f +10494,2431,0,2,f +10494,2432,1,2,f +10494,2654,0,2,f +10494,2780,0,4,f +10494,2780,0,1,t +10494,2994,15,4,f +10494,3004,72,2,f +10494,3004,0,2,f +10494,3010,0,1,f +10494,3022,1,2,f +10494,3022,0,1,f +10494,3023,72,3,f +10494,3023,0,1,f +10494,3031,1,1,f +10494,30414,1,3,f +10494,30602,1,2,f +10494,3069b,1,4,f +10494,32013,0,2,f +10494,3666,71,2,f +10494,3702,0,2,f +10494,3707,0,2,f +10494,3709,1,4,f +10494,3710,1,1,f +10494,3710,72,2,f +10494,3713,71,4,f +10494,3713,71,1,t +10494,3795,72,2,f +10494,41769,1,1,f +10494,41770,1,1,f +10494,42022,72,2,f +10494,43093,1,4,f +10494,44301a,0,4,f +10494,44302a,72,4,f +10494,44728,0,4,f +10494,45677,1,2,f +10494,47456,1,2,f +10494,54200,36,4,f +10494,54200,72,4,f +10494,54802,0,1,f +10494,6091,0,2,f +10494,6141,46,1,t +10494,6141,15,1,t +10494,6141,46,2,f +10494,6141,15,2,f +10494,6541,1,4,f +10494,6578,0,4,f +10494,78c04,179,2,f +10495,2343,47,1,t +10495,2343,47,1,f +10495,3004,15,2,f +10495,3795,15,1,f +10495,43337,40,1,f +10495,4528,0,1,f +10498,2343,47,2,f +10498,2357,7,13,f +10498,2417,2,2,f +10498,2420,0,9,f +10498,2489,6,2,f +10498,2554,6,2,f +10498,3002,7,4,f +10498,3003,7,8,f +10498,3004,0,7,f +10498,3004,7,16,f +10498,3004,6,2,f +10498,3004,15,9,f +10498,30044,4,2,f +10498,30045,0,2,f +10498,3005,15,5,f +10498,3005,0,43,f +10498,3005,7,18,f +10498,30055,0,1,f +10498,3008,7,4,f +10498,3009,7,11,f +10498,3010,7,9,f +10498,3010,15,12,f +10498,30103,0,1,f +10498,30134,0,1,f +10498,3020,0,2,f +10498,3021,6,2,f +10498,3021,0,2,f +10498,3022,6,2,f +10498,3022,7,2,f +10498,3023,7,10,f +10498,3023,6,1,f +10498,3023,15,6,f +10498,3023,0,14,f +10498,30237a,7,1,f +10498,30238,0,1,f +10498,3024,7,12,f +10498,3024,0,9,f +10498,3024,15,4,f +10498,3028,0,1,f +10498,3029,0,1,f +10498,3032,6,1,f +10498,3033,0,1,f +10498,3034,0,2,f +10498,30363,1,10,f +10498,3037,1,14,f +10498,30374,8,1,f +10498,3038,1,20,f +10498,3039,1,17,f +10498,3040b,7,1,f +10498,3040b,6,2,f +10498,30414,7,2,f +10498,3043,1,8,f +10498,3048c,1,2,f +10498,3062b,4,4,f +10498,3062b,6,4,f +10498,3062b,0,23,f +10498,3062b,36,2,f +10498,3062b,1,4,f +10498,3068b,15,2,f +10498,3068b,0,4,f +10498,3069b,0,4,f +10498,3069b,8,1,f +10498,3081cc01,4,3,f +10498,3297,1,3,f +10498,3298,1,3,f +10498,3307,7,1,f +10498,3455,7,4,f +10498,3456,0,1,f +10498,3460,0,2,f +10498,3460,15,2,f +10498,3581,7,2,f +10498,3622,7,23,f +10498,3622,0,2,f +10498,3622,1,2,f +10498,3622,15,15,f +10498,3623,6,1,f +10498,3623,0,10,f +10498,3626bpx67,14,1,f +10498,3626bpx70,14,1,f +10498,3659,7,2,f +10498,3665,8,1,f +10498,3665,0,14,f +10498,3665,7,4,f +10498,3666,0,15,f +10498,3678ap4h,4,1,f +10498,3684,8,2,f +10498,3710,0,12,f +10498,3710,15,2,f +10498,3741,2,1,f +10498,3741,2,1,t +10498,3742,14,1,t +10498,3742,14,3,f +10498,3747a,7,2,f +10498,3794a,8,3,f +10498,3795,4,2,f +10498,3795,0,12,f +10498,3830,7,4,f +10498,3831,7,4,f +10498,3835,7,1,f +10498,3836,6,1,f +10498,3847,8,1,f +10498,3853,4,2,f +10498,3854,14,4,f +10498,3856,2,4,f +10498,3865,2,2,f +10498,3901,0,1,f +10498,3941,7,6,f +10498,3959,0,2,f +10498,4032a,6,3,f +10498,4070,7,2,f +10498,4070,8,1,f +10498,4070,0,2,f +10498,4085c,0,3,f +10498,4213,2,2,f +10498,4286,1,4,f +10498,4315,0,2,f +10498,4460a,7,2,f +10498,4497,0,1,f +10498,4522,0,2,f +10498,4528,0,1,f +10498,4589,8,1,f +10498,4589,57,2,f +10498,4599a,14,1,f +10498,4735,8,2,f +10498,4738a,6,1,f +10498,4739a,6,1,f +10498,4865a,6,2,f +10498,57503,334,1,f +10498,57504,334,1,f +10498,57505,334,1,f +10498,57506,334,1,f +10498,6093,6,1,f +10498,6126a,57,2,f +10498,6141,8,1,t +10498,6141,8,12,f +10498,6141,57,1,t +10498,6141,57,2,f +10498,71342,334,1,f +10498,73983,7,1,f +10498,970c00,0,1,f +10498,973px114c01,4,1,f +10498,973px117c01,8,1,f +10500,2357,72,2,f +10500,2412b,72,7,f +10500,2412b,14,2,f +10500,2412b,36,2,f +10500,2412b,4,1,f +10500,2419,0,4,f +10500,2431,14,1,f +10500,2432,72,3,f +10500,2444,0,2,f +10500,2446pr23,0,1,f +10500,2450,0,4,f +10500,2456,14,2,f +10500,2458,4,1,f +10500,2489,70,1,f +10500,2540,14,2,f +10500,2540,71,2,f +10500,2555,72,1,f +10500,2555,71,1,f +10500,2561,70,1,f +10500,2569,0,1,f +10500,2654,47,2,f +10500,2654,0,6,f +10500,2736,71,1,f +10500,2780,0,1,t +10500,2780,0,6,f +10500,2921,0,2,f +10500,2921,14,2,f +10500,3002,14,2,f +10500,3003,72,1,f +10500,3003,71,1,f +10500,30031,0,1,f +10500,3004,72,3,f +10500,3004,14,2,f +10500,3005,1,4,f +10500,3005,14,4,f +10500,30088,72,3,f +10500,3009,71,1,f +10500,30090,41,1,t +10500,30090,41,1,f +10500,30091,72,1,f +10500,30093,34,1,f +10500,3010,72,1,f +10500,3010,71,1,f +10500,3010,14,4,f +10500,3010,0,3,f +10500,30153,41,1,f +10500,30153,42,1,f +10500,30162,72,1,f +10500,3020,4,1,f +10500,3020,14,2,f +10500,3020,0,5,f +10500,3021,0,2,f +10500,3021,72,1,f +10500,3021,14,3,f +10500,3022,0,1,f +10500,3022,4,3,f +10500,30228,72,1,f +10500,3023,14,3,f +10500,3023,72,4,f +10500,3023,0,8,f +10500,3023,36,5,f +10500,30237a,14,6,f +10500,30283,14,3,f +10500,3030,72,1,f +10500,3031,72,1,f +10500,3031,14,1,f +10500,3032,0,1,f +10500,3034,0,1,f +10500,3034,4,2,f +10500,30367b,14,5,f +10500,30367b,0,2,f +10500,30374,0,1,f +10500,30377,71,2,f +10500,30377,71,1,t +10500,3039,72,1,f +10500,3040b,72,3,f +10500,3040b,14,10,f +10500,30414,14,2,f +10500,30505,0,2,f +10500,30526,72,2,f +10500,30540,0,2,f +10500,30552,72,2,f +10500,30553,0,8,f +10500,30554a,0,18,f +10500,30602,72,2,f +10500,3062b,71,2,f +10500,3063b,14,6,f +10500,3069bpr0101,71,1,f +10500,3070bpr0007,71,1,t +10500,3070bpr0007,71,1,f +10500,32000,0,6,f +10500,32013,72,2,f +10500,32062,4,4,f +10500,32064b,15,2,f +10500,32138,0,2,f +10500,32291,0,2,f +10500,3460,72,4,f +10500,3460,14,1,f +10500,3622,14,2,f +10500,3623,0,4,f +10500,3660,14,16,f +10500,3666,0,2,f +10500,3666,72,2,f +10500,3673,71,2,f +10500,3673,71,1,t +10500,3700,4,1,f +10500,3700,71,2,f +10500,3701,14,3,f +10500,3702,0,2,f +10500,3705,0,1,f +10500,3710,4,2,f +10500,3710,0,7,f +10500,3710,14,3,f +10500,3713,71,1,t +10500,3713,71,2,f +10500,3749,19,2,f +10500,3794a,71,1,f +10500,3794a,14,1,f +10500,3795,4,3,f +10500,3832,0,1,f +10500,3899,4,1,f +10500,3937,0,2,f +10500,3938,4,2,f +10500,3941,14,3,f +10500,3941,72,1,f +10500,4006,0,1,f +10500,4070,4,2,f +10500,4070,71,8,f +10500,4079,1,1,f +10500,4081b,14,2,f +10500,4081b,72,2,f +10500,4085c,71,4,f +10500,4085c,0,2,f +10500,41530,71,2,f +10500,41531,14,2,f +10500,41532,0,10,f +10500,41747,0,1,f +10500,41748,0,1,f +10500,41749,14,1,f +10500,41750,14,1,f +10500,41764,14,1,f +10500,41765,14,1,f +10500,41767,14,4,f +10500,41768,14,4,f +10500,41769,72,1,f +10500,41769,0,4,f +10500,41770,0,4,f +10500,41770,72,1,f +10500,41862,71,1,f +10500,42022,0,2,f +10500,42022,14,4,f +10500,42023,14,10,f +10500,4215b,41,1,f +10500,4274,1,1,t +10500,4274,1,4,f +10500,4286,14,2,f +10500,43093,1,6,f +10500,43722,0,1,f +10500,43722,14,2,f +10500,43723,0,1,f +10500,43723,14,2,f +10500,43857,14,2,f +10500,43857,0,2,f +10500,44572,14,4,f +10500,44675,14,3,f +10500,44728,0,1,f +10500,44728,72,2,f +10500,4477,0,2,f +10500,44822,0,4,f +10500,4497,135,4,f +10500,4522,0,1,f +10500,45705,14,1,f +10500,4589,34,1,f +10500,4589,72,2,f +10500,4589,0,2,f +10500,4589,33,4,f +10500,4599a,0,3,f +10500,4623,71,3,f +10500,46413,14,1,f +10500,4735,0,2,f +10500,47457,72,2,f +10500,47458,0,6,f +10500,47757pr0001,288,2,f +10500,48336,71,1,f +10500,48336,0,2,f +10500,4855,72,2,f +10500,4868b,14,2,f +10500,4871,72,1,f +10500,48729a,72,10,f +10500,49668,288,10,f +10500,50950,0,2,f +10500,51000,14,1,f +10500,51739,14,1,f +10500,53451,135,1,t +10500,53451,15,4,f +10500,53451,135,2,f +10500,53451,15,1,t +10500,53989,288,2,f +10500,55236,288,2,f +10500,57028c01,71,1,f +10500,57467,179,4,f +10500,57467,383,4,f +10500,57503,334,1,f +10500,57504,334,1,f +10500,57505,334,1,f +10500,57506,334,1,f +10500,57796,0,1,f +10500,59275,0,2,f +10500,6019,0,7,f +10500,6041,0,2,f +10500,6081,14,2,f +10500,6091,72,2,f +10500,6141,0,1,t +10500,6141,4,2,f +10500,6141,34,3,t +10500,6141,72,4,f +10500,6141,4,1,t +10500,6141,36,4,t +10500,6141,47,1,f +10500,6141,72,1,t +10500,6141,34,5,f +10500,6141,47,1,t +10500,6141,36,14,f +10500,6232,72,1,f +10500,6265,15,1,t +10500,6538b,71,1,f +10500,6564,0,2,f +10500,6565,0,2,f +10500,6587,72,3,f +10500,6632,0,1,f +10500,6636,14,2,f +10500,73590c02b,14,2,f +10500,73983,0,4,f +10500,75535,4,2,f +10500,7774stk01,9999,1,t +10501,2555,1,1,f +10501,30031,72,1,f +10501,3023,1,2,f +10501,3794a,15,2,f +10501,3795,72,1,f +10501,41854,0,2,f +10501,4600,0,2,f +10501,48336,15,3,f +10501,54200,46,1,f +10501,54200,46,1,t +10501,6014b,15,4,f +10501,6015,0,4,f +10501,6019,15,2,f +10501,6141,33,2,f +10501,6141,33,1,t +10501,6187,71,1,f +10502,11610,19,5,f +10502,14769pr0011,14,5,f +10502,15573,0,5,f +10502,20434,9999,1,t +10502,30031,0,5,f +10502,30089,0,5,f +10502,30176,2,5,f +10502,30228,72,5,f +10502,3068bpr0137,15,5,f +10502,3069bpr0100,2,5,f +10502,3069bpr0137,71,5,f +10502,33121,191,5,f +10502,33125,484,5,f +10502,33172,25,5,f +10502,33183,10,5,f +10502,3626bpr0386,14,5,f +10502,3626cpr1760,14,5,f +10502,3626cpr1761,14,5,f +10502,3834,320,5,f +10502,3836,70,5,f +10502,3898,15,5,f +10502,3900,15,5,f +10502,3901,71,5,f +10502,3960,191,5,f +10502,40234,71,5,f +10502,4083,14,5,f +10502,41879a,1,5,f +10502,4349,4,5,f +10502,4599b,4,5,f +10502,4740,0,5,f +10502,6020,71,5,f +10502,60594,15,10,f +10502,6251pr0003,84,5,f +10502,62696,0,5,f +10502,92926,2,5,f +10502,970c00,25,5,f +10502,970c00,72,5,f +10502,973pr1183c01,25,5,f +10502,973pr1239c01,15,5,f +10502,973pr1697c01,73,5,f +10503,2431,0,12,f +10503,2446,135,5,f +10503,2587pr0014,0,5,f +10503,2587pr19,135,5,f +10503,2594,80,5,f +10503,3626bpr0348,14,5,f +10503,3626bpr0494,15,5,f +10503,4162,0,8,f +10503,48493,0,5,f +10503,59,383,5,f +10503,59229,72,5,f +10503,852132board,72,1,f +10503,970x026,71,5,f +10503,970x154,0,5,f +10503,973c42,0,5,f +10503,973c47,71,5,f +10505,11092,179,2,f +10505,11203,72,2,f +10505,14417,72,4,f +10505,14418,71,2,f +10505,14704,71,2,f +10505,15573,272,2,f +10505,22388,57,2,f +10505,2540,1,1,f +10505,3023,1,3,f +10505,4590,72,2,f +10505,4697b,71,1,f +10505,54200,1,2,f +10505,6091,1,2,f +10505,6141,57,2,f +10505,93606,72,1,f +10505,98313,1,1,f +10505,99207,71,1,f +10505,99781,71,2,f +10507,11214,72,10,f +10507,11478,0,4,f +10507,11949,71,2,f +10507,11950,71,2,f +10507,14720,71,2,f +10507,15100,0,2,f +10507,18352,72,1,f +10507,18575,19,1,f +10507,2654,47,2,f +10507,2780,0,79,f +10507,2780,0,2,t +10507,2825,0,2,f +10507,2850b,71,4,f +10507,2851,14,4,f +10507,2852,71,4,f +10507,2853,71,2,f +10507,2854,19,3,f +10507,32002,19,1,t +10507,32002,19,4,f +10507,32005a,72,2,f +10507,32009,1,2,f +10507,32009,0,2,f +10507,32013,0,10,f +10507,32015,71,4,f +10507,32034,0,3,f +10507,32034,71,7,f +10507,32039,71,4,f +10507,32054,4,2,f +10507,32054,0,16,f +10507,32062,4,11,f +10507,32063,71,16,f +10507,32073,71,15,f +10507,32123b,14,1,t +10507,32123b,14,5,f +10507,32140,27,8,f +10507,32184,71,4,f +10507,32192,73,2,f +10507,32192,0,2,f +10507,32270,0,3,f +10507,32271,0,2,f +10507,32449,72,4,f +10507,32494,71,4,f +10507,32523,0,5,f +10507,32524,0,3,f +10507,32524,27,1,f +10507,32524,71,2,f +10507,32525,71,4,f +10507,32526,0,8,f +10507,32556,19,6,f +10507,3705,0,7,f +10507,3706,0,1,f +10507,3713,71,9,f +10507,3713,71,1,t +10507,3737,0,1,f +10507,3749,19,1,f +10507,4032a,0,4,f +10507,40490,71,4,f +10507,41677,0,4,f +10507,43093,1,29,f +10507,44294,71,3,f +10507,4519,71,28,f +10507,45982,0,4,f +10507,55013,72,1,f +10507,56908,27,4,f +10507,57515,72,4,f +10507,59443,0,14,f +10507,60483,71,1,f +10507,60484,0,4,f +10507,61070,27,1,f +10507,61071,27,1,f +10507,62462,71,6,f +10507,62821,72,1,f +10507,63869,71,6,f +10507,64178,71,2,f +10507,64179,71,1,f +10507,64391,27,2,f +10507,64393,73,2,f +10507,64681,73,2,f +10507,64683,27,2,f +10507,6536,0,10,f +10507,6542b,72,1,f +10507,6553,0,2,f +10507,6558,1,9,f +10507,6587,28,4,f +10507,6589,19,4,f +10507,6589,19,1,t +10507,6628,0,10,f +10507,6628,0,1,t +10507,6629,1,2,f +10507,6632,71,2,f +10507,76537,14,4,f +10507,87082,71,1,f +10507,87408,0,1,f +10507,87761,0,1,f +10507,92906,72,2,f +10507,92909,72,4,f +10507,94925,71,2,f +10508,3001,6,14,f +10508,3002,6,8,f +10508,3003,6,12,f +10508,3004,6,8,f +10508,3005,6,4,f +10508,3006,6,1,f +10508,3007,6,1,f +10508,3008,6,2,f +10508,3009,6,4,f +10508,3010,6,4,f +10508,3622,6,4,f +10509,11145,0,4,f +10509,55805,0,2,f +10509,55806,0,1,f +10514,2419,2,2,f +10514,3020,72,1,f +10514,3024,2,2,f +10514,30414,72,2,f +10514,3048c,288,2,f +10514,3710,2,2,f +10514,4032a,2,2,f +10514,43722,27,1,f +10514,43723,27,1,f +10514,50950,27,4,f +10514,54200,2,2,f +10514,60478,0,4,f +10514,6141,0,2,f +10514,6141,27,2,f +10514,63868,72,4,f +10516,15392,70,1,f +10516,20105,0,1,f +10516,3626cpr1818,4,1,f +10516,4498,70,1,f +10516,53454,148,1,f +10516,6141,182,2,f +10516,87994,70,1,f +10516,92690,297,1,f +10516,93563,0,1,f +10516,970c00pr0947,0,1,f +10516,973pr3162c01,0,1,f +10517,2412b,72,16,f +10517,2420,19,10,f +10517,2431,71,26,f +10517,2432,72,1,f +10517,2436,71,2,f +10517,2462,71,16,f +10517,2488,0,1,f +10517,2524,15,1,f +10517,2540,71,2,f +10517,2555,71,4,f +10517,2555,72,1,f +10517,2654,19,14,f +10517,2780,0,1,t +10517,2780,0,64,f +10517,3001,19,1,f +10517,3003,19,4,f +10517,30031,72,2,f +10517,3004,71,11,f +10517,3006,71,1,f +10517,3008,0,4,f +10517,3009,71,2,f +10517,30132,72,2,f +10517,30132,72,1,t +10517,3020,72,21,f +10517,3021,71,6,f +10517,3021,72,2,f +10517,3022,72,6,f +10517,3023,19,16,f +10517,3024,72,20,f +10517,3028,71,3,f +10517,3029,71,2,f +10517,3032,71,3,f +10517,3034,72,19,f +10517,3035,71,3,f +10517,3035,72,6,f +10517,3036,71,2,f +10517,30370pr04,15,1,f +10517,30374,41,1,f +10517,30377,0,1,t +10517,30377,0,2,f +10517,3038,71,2,f +10517,3039,71,1,f +10517,3039,0,1,f +10517,3039,15,1,f +10517,3040b,72,2,f +10517,3041,71,1,f +10517,30414,71,8,f +10517,3045,0,2,f +10517,30480,297,1,f +10517,3048c,0,2,f +10517,30503,71,2,f +10517,3068b,71,7,f +10517,3069b,71,1,f +10517,3176,72,3,f +10517,32000,19,1,f +10517,32005b,72,4,f +10517,32013,0,5,f +10517,32054,4,3,f +10517,32062,4,1,f +10517,32064b,0,3,f +10517,32523,14,4,f +10517,32523,72,3,f +10517,32524,72,1,f +10517,32530,4,2,f +10517,32532,71,2,f +10517,3298,71,1,f +10517,3460,71,2,f +10517,3623,0,10,f +10517,3626b,0,3,f +10517,3626bpr0472,78,1,f +10517,3626bpr0632,78,1,f +10517,3626bpr0648,78,1,f +10517,3626cpr0635,78,1,f +10517,3660,1,2,f +10517,3666,72,8,f +10517,3684,15,4,f +10517,3701,71,6,f +10517,3702,71,4,f +10517,3705,0,4,f +10517,3708,0,1,f +10517,3709,71,6,f +10517,3710,72,15,f +10517,3738,71,1,f +10517,3794b,72,1,f +10517,3795,71,6,f +10517,3837,72,2,f +10517,3895,71,10,f +10517,3901,70,1,f +10517,3937,72,1,f +10517,3938,71,1,f +10517,3938,0,2,f +10517,3941,19,5,f +10517,3957a,71,4,f +10517,3958,15,1,f +10517,3960,71,8,f +10517,4032a,0,18,f +10517,4032a,71,1,f +10517,4070,71,2,f +10517,4085c,72,4,f +10517,41239,72,2,f +10517,41769,71,6,f +10517,41770,71,6,f +10517,4274,71,1,t +10517,4274,1,9,f +10517,4274,71,5,f +10517,4274,1,1,t +10517,4285b,71,1,f +10517,43093,1,4,f +10517,43720,72,1,f +10517,43721,72,1,f +10517,43722,71,2,f +10517,43723,71,2,f +10517,43898,71,2,f +10517,43898,72,5,f +10517,44224,72,8,f +10517,44225,71,8,f +10517,44294,71,1,f +10517,44300,72,4,f +10517,44302a,71,4,f +10517,44360,15,1,f +10517,44375a,71,4,f +10517,44728,0,4,f +10517,4522,0,2,f +10517,45677,72,1,f +10517,46304,15,1,t +10517,46304,15,1,f +10517,4740,72,1,f +10517,48183,71,12,f +10517,48336,19,10,f +10517,4865a,19,2,f +10517,48729b,72,1,t +10517,48729b,72,1,f +10517,50304,71,2,f +10517,50305,71,2,f +10517,51739,71,12,f +10517,54200,71,10,f +10517,54200,71,1,t +10517,54200,46,4,f +10517,54200,46,1,t +10517,54383,71,4,f +10517,54384,71,4,f +10517,57900,71,1,f +10517,58247,0,4,f +10517,6019,15,4,f +10517,60208,71,3,f +10517,60470a,71,15,f +10517,60474,72,6,f +10517,60478,0,18,f +10517,60479,71,4,f +10517,6141,0,29,f +10517,6141,0,1,t +10517,61485,0,1,f +10517,6178,71,2,f +10517,6179,71,9,f +10517,6182,71,2,f +10517,6183,71,4,f +10517,6222,71,4,f +10517,63864,71,2,f +10517,63965,71,1,f +10517,64567,80,1,f +10517,6541,71,10,f +10517,6558,1,8,f +10517,6628,0,8,f +10517,6636,71,10,f +10517,85080,71,2,f +10517,87555,19,1,f +10517,87556pr0002,15,1,f +10517,970c00,72,1,f +10517,970c00,297,1,f +10517,970c00,28,1,f +10517,970c00pr0033,70,1,f +10517,970x194,72,1,f +10517,970x194,15,1,f +10517,970x199,25,1,f +10517,973pr0460c01,19,1,f +10517,973pr1339c01,297,1,f +10517,973pr1344c01,15,1,f +10517,973pr1346c01,15,1,f +10517,973pr1566c01,72,1,f +10517,973pr1578c01,25,1,f +10517,973pr1662c01,272,1,f +10519,3003,4,2,f +10519,3003,14,12,f +10519,3003,0,8,f +10519,3004,14,8,f +10519,3004,4,2,f +10519,3030,14,2,f +10519,3033,14,1,f +10519,3185,4,6,f +10519,3700,4,1,f +10519,3899,14,1,f +10519,3980c01,14,4,f +10519,4094a,4,1,f +10519,4222a,450,2,f +10519,4328,7,1,f +10519,4332,366,1,f +10519,4429,4,1,f +10519,4440,1,1,f +10519,4787,1,1,f +10519,4788c01,14,2,f +10519,4790,4,1,f +10519,63965,4,1,f +10519,fab12e,9999,1,f +10519,fab8h,9999,2,f +10519,fabbc1b,14,1,f +10519,fabca2,450,1,f +10522,2431,4,6,f +10522,3009,19,2,f +10522,3020,4,2,f +10522,3020,0,4,f +10522,3022,4,1,f +10522,3024,19,4,f +10522,3031,4,2,f +10522,3036,0,2,f +10522,30374,72,2,f +10522,30553,0,1,f +10522,30554a,0,1,f +10522,3069b,4,4,f +10522,3176,4,2,f +10522,32123b,71,2,f +10522,32123b,71,1,t +10522,3245b,71,4,f +10522,3579stk01,9999,1,t +10522,3626bpb0161,14,1,f +10522,3626bpr0279,14,1,f +10522,3679,71,4,f +10522,3680,0,4,f +10522,3700,71,4,f +10522,3710,70,4,f +10522,3737,0,1,f +10522,3795,71,2,f +10522,3941,71,1,f +10522,4150,0,2,f +10522,4215b,1,2,f +10522,4282,0,4,f +10522,43898,71,1,f +10522,4477,70,6,f +10522,4485,1,1,f +10522,46303,4,1,f +10522,47576,25,3,f +10522,48092,19,4,f +10522,48288,0,4,f +10522,48289,72,2,f +10522,48290,72,2,f +10522,48291,72,2,f +10522,50450,0,2,f +10522,6019,0,1,f +10522,6060,4,4,f +10522,6111,19,4,f +10522,6141,46,1,f +10522,6141,46,1,t +10522,6538b,1,2,f +10522,6589,14,2,f +10522,78c04,15,2,f +10522,78c06,1,2,f +10522,970c00,4,1,f +10522,970c00,19,1,f +10522,973pb0275c01,272,1,f +10522,973pr1173c01,4,1,f +10525,11091,85,2,f +10525,11477,85,4,f +10525,12825,0,1,f +10525,14704,71,2,f +10525,14769,0,1,f +10525,15209,15,2,f +10525,2736,71,2,f +10525,3021,85,1,f +10525,3022,0,1,f +10525,3023,85,10,f +10525,30236,0,1,f +10525,32064a,0,2,f +10525,3626cpr1001,15,2,f +10525,3710,0,1,f +10525,3794b,85,1,f +10525,48336,0,2,f +10525,4871,0,1,f +10525,53451,0,1,f +10525,53451,0,1,t +10525,54200,33,4,f +10525,54200,33,1,t +10525,54200,85,1,t +10525,54200,85,2,f +10525,60470b,71,2,f +10525,60474,0,1,f +10525,60478,0,2,f +10525,6131,0,2,f +10525,6141,15,1,t +10525,6141,85,2,f +10525,6141,15,4,f +10525,6141,85,1,t +10525,63868,71,1,f +10525,92280,0,4,f +10525,98138,15,1,t +10525,98138,15,2,f +10525,99781,0,1,f +10526,164c01,1,1,f +10526,3001,15,1,f +10526,3001,14,2,f +10526,3004,15,6,f +10526,3004,4,1,f +10526,3010,15,2,f +10526,3022,15,1,f +10526,3022,0,1,f +10526,3023,7,2,f +10526,3023,4,1,f +10526,3023,15,2,f +10526,3024,36,1,f +10526,3024,15,4,f +10526,3024,34,1,f +10526,3032,15,1,f +10526,3040b,15,2,f +10526,3070b,7,4,f +10526,3624,0,2,f +10526,3626apr0001,14,2,f +10526,3666,4,2,f +10526,3666,15,2,f +10526,3679,7,1,f +10526,3680,15,1,f +10526,3684,4,1,f +10526,3700,15,2,f +10526,3710,15,4,f +10526,3829c01,15,1,f +10526,3836,6,1,f +10526,3962a,0,1,f +10526,4081a,7,1,f +10526,4085a,15,2,f +10526,4213,15,1,f +10526,4213,4,2,f +10526,4284,47,1,f +10526,4286,15,2,f +10526,4289,15,1,f +10526,4315,4,2,f +10526,4315,15,1,f +10526,4318,15,1,f +10526,4319,15,1,f +10526,56823,0,1,f +10526,6141,46,2,f +10526,73037,7,1,f +10526,970c00,0,1,f +10526,970c00,1,1,f +10526,973p26c01,1,1,f +10526,973p26c02,0,1,f +10526,997c01,1,1,f +10526,x149,0,2,f +10526,x759c01,1,1,f +10527,3626bpr0743,14,1,f +10527,6124,42,1,f +10527,6124,42,2,t +10527,87754,15,1,f +10527,89159,82,1,t +10527,89159,82,1,f +10527,970c00,15,1,f +10527,973pr1695c01,15,1,f +10528,2536,71,1,f +10528,2736,71,2,f +10528,2780,0,8,f +10528,32013,135,2,f +10528,32056,15,2,f +10528,32056,272,2,f +10528,32062,0,8,f +10528,32073,71,2,f +10528,32123b,71,14,f +10528,32138,0,1,f +10528,32140,0,6,f +10528,32174,272,2,f +10528,32174,15,3,f +10528,32175,15,8,f +10528,32184,0,2,f +10528,32184,15,3,f +10528,32270,71,3,f +10528,32271,272,5,f +10528,32291,0,1,f +10528,32316,272,2,f +10528,32348,272,4,f +10528,32449,0,1,f +10528,32482,272,1,f +10528,32523,135,2,f +10528,32533pb338,21,1,f +10528,33299a,71,1,f +10528,3673,71,3,f +10528,3705,0,3,f +10528,3706,0,1,f +10528,3713,71,9,f +10528,3737,0,2,f +10528,3749,19,1,f +10528,41667,71,1,f +10528,41677,0,10,f +10528,41678,15,1,f +10528,41678,272,1,f +10528,41752,72,1,f +10528,42003,71,2,f +10528,42003,0,2,f +10528,42074,15,1,f +10528,4274,71,3,f +10528,43093,1,11,f +10528,43559,272,2,f +10528,44136,272,1,f +10528,44138,272,1,f +10528,44294,71,1,f +10528,44809,15,2,f +10528,4519,71,13,f +10528,45425,135,1,f +10528,47297,272,3,f +10528,47298,135,5,f +10528,47299,135,2,f +10528,47304,135,1,f +10528,47306,272,1,f +10528,47326pat02,272,6,f +10528,47332,15,1,f +10528,47336,135,1,f +10528,6019,0,1,f +10528,6141,36,3,f +10528,6536,71,2,f +10528,6536,15,1,f +10528,6536,272,2,f +10528,6538b,135,5,f +10528,6558,0,12,f +10528,6587,72,3,f +10528,6632,272,2,f +10528,73590c02a,15,1,f +10528,85543,15,2,f +10530,2437,33,1,f +10530,3004,15,1,f +10530,30285,71,4,f +10530,30363,15,1,f +10530,3037,15,1,f +10530,30622,15,2,f +10530,30640,72,1,f +10530,30643,72,1,f +10530,30647pb06,15,1,f +10530,30647pb07,15,1,f +10530,30648,0,4,f +10530,30663,71,1,t +10530,30663,71,1,f +10530,40996,33,1,f +10530,42022pb08,15,1,f +10530,42022pb09,15,1,f +10530,43337,15,2,f +10530,4j008,9999,1,f +10531,2456,1,2,f +10531,2456,15,2,f +10531,3001,0,2,f +10531,3001,4,4,f +10531,3001,1,6,f +10531,3001,25,2,f +10531,3001,15,6,f +10531,3001,2,4,f +10531,3001,14,4,f +10531,3002,25,2,f +10531,3002,0,2,f +10531,3002,14,2,f +10531,3002,1,4,f +10531,3002,4,2,f +10531,3002,2,2,f +10531,3002,15,4,f +10531,3003,0,6,f +10531,3003,1,16,f +10531,3003,25,6,f +10531,3003,4,10,f +10531,3003,2,10,f +10531,3003,15,16,f +10531,3003,14,10,f +10531,3004,4,10,f +10531,3004,25,6,f +10531,3004,2,10,f +10531,3004,0,10,f +10531,3004,15,16,f +10531,3004,14,10,f +10531,3004,1,14,f +10531,3005,14,8,f +10531,3005,15,10,f +10531,3005,0,6,f +10531,3005,25,6,f +10531,3005,4,8,f +10531,3005,2,8,f +10531,3005,1,10,f +10531,3007,15,2,f +10531,3007,1,2,f +10531,3008,15,2,f +10531,3008,1,2,f +10531,3009,1,2,f +10531,3009,4,2,f +10531,3009,14,2,f +10531,3009,15,2,f +10531,3010,4,2,f +10531,3010,25,2,f +10531,3010,14,2,f +10531,3010,1,4,f +10531,3010,2,2,f +10531,3010,15,4,f +10531,3622,25,2,f +10531,3622,1,2,f +10531,3622,14,2,f +10531,3622,15,2,f +10531,3622,4,2,f +10531,3622,2,2,f +10532,2420,14,2,f +10532,3001,6,2,f +10532,3003,1,1,f +10532,3004,4,1,f +10532,3005px7,379,1,f +10532,3022,0,1,f +10532,3023,4,1,f +10532,3023,6,1,f +10532,3023,0,2,f +10532,3023,379,2,f +10532,30236,6,2,f +10532,3024,0,1,t +10532,3024,0,4,f +10532,3038,6,2,f +10532,3040b,15,4,f +10532,3040b,14,1,f +10532,3040b,4,1,f +10532,3045,6,2,f +10532,3062b,379,1,f +10532,3062b,14,2,f +10532,3660,6,5,f +10532,3665,4,1,f +10532,3665,6,2,f +10532,3666,6,1,f +10532,3710,0,1,f +10532,3710,6,1,f +10532,3747a,6,2,f +10532,3794a,6,2,f +10532,4287,6,2,f +10532,43722,6,1,f +10532,43723,6,1,f +10532,6019,0,2,f +10533,3001a,14,1,f +10533,3001a,47,2,f +10533,3001a,4,2,f +10533,3005,15,4,f +10533,3009,14,2,f +10533,3010,4,3,f +10533,3010,15,2,f +10533,3010,14,2,f +10533,3010pb035u,4,1,f +10533,3010pb036u,4,1,f +10533,3010pb036u,14,1,f +10533,3020,14,2,f +10533,3020,4,4,f +10533,3021,14,1,f +10533,3021,4,2,f +10533,3023,4,2,f +10533,3030,4,2,f +10533,3035a,15,1,f +10533,3037,0,1,f +10533,3037,47,1,f +10533,3062a,0,1,f +10533,3068a,0,2,f +10533,3137c01,0,8,f +10533,3139,0,16,f +10533,3149c01,4,1,f +10535,2376,4,1,f +10535,2584,4,1,f +10535,2585,0,1,f +10535,2648,14,2,f +10535,2649,0,1,t +10535,2649,0,2,f +10535,3127,7,2,f +10535,3176,4,1,f +10535,3464,4,2,f +10535,3464,4,1,t +10535,73037,4,1,f +10535,rb00164,0,2,f +10538,2335,4,5,f +10538,2335,1,5,f +10538,2412b,0,2,f +10538,2431,15,4,f +10538,2458,15,4,f +10538,2460,15,4,f +10538,2465,15,2,f +10538,2540,0,10,f +10538,3001,15,4,f +10538,3003,15,8,f +10538,3004,15,20,f +10538,30043,4,4,f +10538,3006,7,4,f +10538,3010,15,4,f +10538,3020,4,4,f +10538,3021,0,16,f +10538,3022,4,73,f +10538,3023,7,20,f +10538,3037,15,4,f +10538,3039,15,20,f +10538,30488,7,2,f +10538,30488c01,15,10,f +10538,30488c01,0,10,f +10538,30489,2,14,f +10538,30492,2,4,f +10538,30493,0,2,f +10538,3068b,2,75,f +10538,32064b,7,16,f +10538,3403c01,0,2,f +10538,3460,15,20,f +10538,3623,0,12,f +10538,3626bp03,14,2,f +10538,3626bp05,14,6,f +10538,3626bpa3,14,2,f +10538,3626bpb0046,14,2,f +10538,3626bpb0103,14,2,f +10538,3626bpr0001,14,2,f +10538,3626bpx134,14,2,f +10538,3626bpx16,14,2,f +10538,3626bpx33,14,2,f +10538,3700,15,8,f +10538,3710,4,4,f +10538,3900,7,8,f +10538,3901,0,10,f +10538,3901,6,6,f +10538,3901,19,4,f +10538,3957a,15,4,f +10538,41732,4,2,f +10538,41733,4,2,f +10538,4176,15,18,f +10538,41819c01,2,4,f +10538,4204,2,2,f +10538,4476b,15,4,f +10538,4477,4,4,f +10538,4477,15,2,f +10538,4485,0,1,f +10538,4485,15,1,f +10538,4495b,4,4,f +10538,4871,7,16,f +10538,71509,0,4,f +10538,72824p01,15,3,f +10538,72824pr02,15,1,f +10538,78c11,15,4,f +10538,970c00,7,1,f +10538,970c00,8,1,f +10538,970c00,15,10,f +10538,970c00,1,10,f +10538,973c01,15,10,f +10538,973pb0165c01,0,1,f +10538,973pb0166c01,0,1,f +10538,973pb0167c01,4,1,f +10538,973pb0169c01,4,1,f +10538,973pb0171c01,4,1,f +10538,973pb0173c01,4,1,f +10538,973pb0175c01,4,1,f +10538,973pb0207c01,4,1,f +10538,973pb0208c01,4,1,f +10538,973pb0209c01,4,1,f +10538,973pb0210c01,4,1,f +10538,973pb0211c01,4,1,f +10538,x386,15,2,f +10540,22667,4,1,f +10540,22667,4,1,t +10540,30078,5,1,f +10540,3031,10,1,f +10540,3040b,27,2,f +10540,33320,34,1,f +10540,3659,13,1,f +10540,3837,115,1,f +10540,3853,5,1,f +10540,3854,73,2,f +10540,4032a,10,1,f +10540,4150px26,14,1,f +10540,4523,1,1,f +10540,4727,115,2,f +10540,4728,5,1,f +10540,6186,13,1,f +10540,75c09,2,1,f +10541,14036,84,1,f +10541,14226c11,0,1,f +10541,14226c11,0,1,t +10541,2343,297,2,f +10541,2357,19,32,f +10541,2412b,0,1,f +10541,2412b,320,3,f +10541,2445,70,1,f +10541,2453a,19,3,f +10541,2454a,19,5,f +10541,2456,19,1,f +10541,2465,71,3,f +10541,2653,0,8,f +10541,2654,0,1,f +10541,2654,71,1,f +10541,298c02,0,1,t +10541,298c02,0,1,f +10541,3001,19,4,f +10541,3002,19,6,f +10541,3002,71,6,f +10541,3003,28,7,f +10541,3004,28,40,f +10541,3006,71,1,f +10541,3007,19,1,f +10541,3008,19,4,f +10541,3008,15,4,f +10541,3009,19,13,f +10541,3010,71,4,f +10541,30106,47,1,f +10541,30136,70,16,f +10541,30151a,47,1,f +10541,30162,72,1,f +10541,30173b,0,4,f +10541,3020,71,5,f +10541,3020,72,1,f +10541,3021,72,10,f +10541,3021,70,1,f +10541,3022,71,4,f +10541,3022,70,5,f +10541,3023,19,8,f +10541,3023,71,6,f +10541,30237b,71,1,f +10541,3024,0,1,f +10541,3028,72,4,f +10541,3028,71,2,f +10541,3029,72,4,f +10541,30304,72,1,f +10541,3031,72,5,f +10541,3032,70,1,f +10541,3032,72,2,f +10541,3033,72,2,f +10541,3034,71,4,f +10541,3035,19,2,f +10541,3035,72,2,f +10541,3035,4,1,f +10541,3035,70,2,f +10541,30367c,28,6,f +10541,30367c,15,1,f +10541,30374,70,1,f +10541,30374,0,2,f +10541,3039,19,4,f +10541,3040b,28,2,f +10541,30483pr01,70,1,f +10541,30565,28,4,f +10541,30565,72,6,f +10541,30586,71,4,f +10541,3062b,70,23,f +10541,3068b,28,7,f +10541,3069b,308,13,f +10541,3069b,28,16,f +10541,3069bpr0090,72,1,f +10541,32039,0,1,f +10541,32039,14,1,f +10541,32054,0,3,f +10541,32123b,71,2,f +10541,32123b,71,1,t +10541,32123b,14,1,f +10541,32123b,14,1,t +10541,3245c,19,5,f +10541,32530,72,2,f +10541,3307,19,1,f +10541,3308,19,2,f +10541,33320,2,2,f +10541,3460,70,2,f +10541,3460,72,3,f +10541,3622,19,15,f +10541,3623,72,16,f +10541,3626bpr0655,78,1,f +10541,3626cpr1008,78,1,f +10541,3626cpr1030,27,1,f +10541,3626cpr1032,78,1,f +10541,3647,72,2,f +10541,3647,72,1,t +10541,3665,19,2,f +10541,3666,71,1,f +10541,3676,72,4,f +10541,3679,71,1,f +10541,3680,0,1,f +10541,3684,28,21,f +10541,3700,72,7,f +10541,3700,0,2,f +10541,3701,15,1,f +10541,3706,0,1,f +10541,3710,0,1,f +10541,3710,70,4,f +10541,3737,0,1,f +10541,3738,0,2,f +10541,3794a,72,3,f +10541,3794a,19,2,f +10541,3795,70,1,f +10541,3832,72,1,f +10541,3901,70,1,f +10541,3961,28,1,f +10541,4032a,0,3,f +10541,4032a,484,6,f +10541,4151b,72,2,f +10541,4162,72,2,f +10541,4216,71,1,f +10541,42446,72,1,f +10541,4282,72,1,f +10541,4286,72,2,f +10541,4287,70,4,f +10541,43093,1,2,f +10541,44363,78,1,f +10541,4460b,19,14,f +10541,4528,0,1,f +10541,4623,0,2,f +10541,4735,0,5,f +10541,48092,71,4,f +10541,48092,19,4,f +10541,4865b,0,1,f +10541,48729b,0,1,t +10541,48729b,0,2,f +10541,50231,0,1,f +10541,53705,148,1,f +10541,57899,0,1,f +10541,58176,182,1,f +10541,58247,0,1,f +10541,58846,28,4,f +10541,59443,4,1,f +10541,59900,182,1,f +10541,6003,72,7,f +10541,60475b,84,2,f +10541,60479,71,1,f +10541,60808,19,2,f +10541,6091,19,6,f +10541,6111,72,1,f +10541,61184,71,1,f +10541,6141,72,3,t +10541,6141,182,10,f +10541,6141,72,8,f +10541,6141,182,3,t +10541,61482,71,1,f +10541,61482,71,1,t +10541,6157,71,1,f +10541,61780,70,2,f +10541,6191,19,4,f +10541,6254,191,1,f +10541,63864,71,4,f +10541,64644,0,3,f +10541,64647,57,1,t +10541,64647,57,1,f +10541,6587,28,1,f +10541,6636,71,2,f +10541,6636,28,21,f +10541,6881b,71,1,f +10541,73983,0,3,f +10541,76768,70,2,f +10541,76768,19,10,f +10541,85984,19,4,f +10541,87079,72,2,f +10541,87087,19,22,f +10541,87561pr01,148,1,f +10541,87571pr0002,27,1,f +10541,87926,19,1,f +10541,87990,308,1,f +10541,88292,19,10,f +10541,88393,71,4,f +10541,90258,72,3,f +10541,92280,0,1,f +10541,92593,71,3,f +10541,92593,72,2,f +10541,92690,297,2,f +10541,92738,0,1,f +10541,92947,19,5,f +10541,95188,28,6,f +10541,95228,40,1,f +10541,96874,25,1,t +10541,970c00,70,2,f +10541,970c00,272,1,f +10541,970c00pr0366,19,1,f +10541,970c155pr0361,326,1,f +10541,970c34pr0366,27,1,f +10541,973c32,70,1,f +10541,973c58,70,1,f +10541,973pr1620c01,15,1,f +10541,973pr2106c01,19,1,f +10541,973pr2107c01,27,1,f +10541,973pr2108c01,272,1,f +10541,98109pr01c01,326,1,f +10541,98112pr01,326,1,f +10541,98118pr0001,84,1,f +10541,98120pr0001,70,1,f +10541,98138,297,1,t +10541,98138,297,2,f +10541,98138pr0009,297,1,t +10541,98138pr0009,297,1,f +10541,98138pr0010,179,1,f +10541,98138pr0010,179,1,t +10543,2489,6,1,f +10543,2540,0,4,f +10543,2542,6,2,f +10543,2586p4c,7,1,f +10543,3004,0,1,f +10543,3005,0,1,f +10543,3021,0,1,f +10543,3023,0,1,f +10543,3024,0,2,f +10543,3034,0,1,f +10543,3039,1,1,f +10543,3040b,1,2,f +10543,3040b,0,1,f +10543,3460,1,2,f +10543,3623,0,2,f +10543,3626bp42,14,1,f +10543,3626bpx120,14,1,f +10543,3660,1,1,f +10543,3710,0,1,f +10543,3794a,0,3,f +10543,3847,8,1,f +10543,3896,8,1,f +10543,3937,0,1,f +10543,3938,0,1,f +10543,4032a,6,1,f +10543,4081b,0,1,f +10543,4085c,0,2,f +10543,4497,6,1,f +10543,4503,8,1,f +10543,4524,4,1,f +10543,4854,4,1,f +10543,4855,4,2,f +10543,4859,1,2,f +10543,4871,4,1,f +10543,6019,4,1,f +10543,6141,15,1,f +10543,6141,14,4,f +10543,87685,4,1,t +10543,87686,4,1,t +10543,87687,4,1,f +10543,970x026,7,2,f +10543,973p40c01,0,1,f +10543,973p41c01,4,1,f +10545,11816pr0003,78,1,f +10545,2431,322,1,f +10545,298c02,15,1,t +10545,298c02,15,3,f +10545,3001,322,4,f +10545,3003,322,5,f +10545,30153,36,1,f +10545,30162,72,2,f +10545,3023,0,1,f +10545,30414,15,1,f +10545,3062b,36,2,f +10545,3062b,34,2,f +10545,3062b,41,2,f +10545,32028,71,2,f +10545,3245c,15,2,f +10545,3623,71,2,f +10545,3666,322,1,f +10545,3794b,1,1,f +10545,3794b,72,3,f +10545,3795,323,5,f +10545,4085c,71,2,f +10545,44728,1,1,f +10545,4536,29,2,f +10545,4733,15,1,f +10545,48336,15,1,f +10545,4865b,29,3,f +10545,49668,15,2,f +10545,54200,29,1,t +10545,54200,29,2,f +10545,55295,85,1,f +10545,55296,85,1,f +10545,55297,85,1,f +10545,55298,85,1,f +10545,55299,85,1,f +10545,55300,85,1,f +10545,60475a,0,4,f +10545,6091,15,1,f +10545,6141,71,6,f +10545,6141,36,1,f +10545,6141,72,1,t +10545,6141,36,1,t +10545,6141,72,2,f +10545,6141,25,1,t +10545,6141,25,1,f +10545,6141,71,1,t +10545,6180pr0003,0,1,f +10545,87087,29,1,f +10545,92256,70,1,f +10545,92410,15,1,f +10545,92456pr0015c01,78,1,f +10545,92819pr0002a,27,1,f +10545,93549pat01,47,1,f +10545,98138,34,1,t +10545,98138,34,1,f +10545,98560,15,2,f +10546,2346,0,8,f +10546,2352,14,2,f +10546,2456,14,2,f +10546,3001,14,36,f +10546,3001,1,34,f +10546,3001,15,34,f +10546,3001,0,14,f +10546,3001,4,32,f +10546,3001pr1,14,1,f +10546,3002,1,10,f +10546,3002,4,10,f +10546,3002,0,4,f +10546,3002,14,10,f +10546,3002,15,10,f +10546,3003,0,20,f +10546,3003,14,54,f +10546,3003,47,2,f +10546,3003,1,54,f +10546,3003,15,54,f +10546,3003,4,50,f +10546,3003pe1,14,2,f +10546,3006,4,2,f +10546,3007,1,2,f +10546,3185,4,6,f +10546,3471,2,2,f +10546,4130,4,3,f +10546,4131,15,3,f +10546,4132,4,4,f +10546,4133,15,4,f +10546,4180c02,0,4,f +10546,4202,4,1,f +10546,4204,2,1,f +10546,4727,2,4,f +10546,4728,4,2,f +10546,4728,14,2,f +10546,4730,1,1,f +10546,4743,4,1,f +10546,4743,1,1,f +10546,4744,14,1,f +10546,4744,4,1,f +10546,4745,14,1,f +10546,4747,4,1,f +10546,4748,4,1,f +10546,bfp001,9999,1,f +10546,bfp002,9999,1,f +10547,2357,0,6,f +10547,2412b,1,10,f +10547,2420,15,2,f +10547,2420,0,14,f +10547,2420,1,6,f +10547,2431,0,8,f +10547,2431,1,7,f +10547,2431,15,3,f +10547,2436,0,1,f +10547,2444,72,1,f +10547,2445,0,2,f +10547,2445,15,2,f +10547,2449,1,4,f +10547,2456,71,1,f +10547,2465,72,2,f +10547,2555,0,2,f +10547,2639,15,2,f +10547,2730,0,2,f +10547,2780,0,2,t +10547,2780,0,21,f +10547,2819,0,1,f +10547,2877,0,2,f +10547,2921,1,2,f +10547,298c02,0,3,t +10547,298c02,0,3,f +10547,3002,0,6,f +10547,3004,14,1,f +10547,3004,0,5,f +10547,3004,1,10,f +10547,30043,0,2,f +10547,3005,15,4,f +10547,3005,1,2,f +10547,3007,0,1,f +10547,3009,0,9,f +10547,3009,1,5,f +10547,3010,0,2,f +10547,3010,1,2,f +10547,3020,0,6,f +10547,3020,1,2,f +10547,3020,72,5,f +10547,3021,0,6,f +10547,3021,15,6,f +10547,3022,72,4,f +10547,3022,0,6,f +10547,3022,1,3,f +10547,3022,15,1,f +10547,3023,0,21,f +10547,3023,36,3,f +10547,3023,72,3,f +10547,3023,71,6,f +10547,3023,272,2,f +10547,3023,1,12,f +10547,3023,15,11,f +10547,30237a,0,1,f +10547,3024,272,4,f +10547,3024,71,3,f +10547,3024,1,18,f +10547,3024,33,6,f +10547,3024,0,2,f +10547,3024,72,6,f +10547,3024,15,4,f +10547,3028,0,2,f +10547,3032,15,1,f +10547,3032,0,2,f +10547,3034,15,3,f +10547,3036,1,1,f +10547,3036,0,1,f +10547,30374,15,1,f +10547,30377,0,1,f +10547,30377,0,1,t +10547,3040b,71,2,f +10547,3040b,33,2,f +10547,30414,71,2,f +10547,3062b,4,1,f +10547,3062b,15,1,f +10547,3068b,1,11,f +10547,3068b,0,3,f +10547,3068b,15,1,f +10547,3069b,0,6,f +10547,3069b,1,6,f +10547,3069b,272,12,f +10547,3069b,14,1,f +10547,3069b,15,3,f +10547,3070b,0,1,t +10547,3070b,0,2,f +10547,32523,72,4,f +10547,32526,0,2,f +10547,32530,0,8,f +10547,3308,1,2,f +10547,3460,71,4,f +10547,3460,0,8,f +10547,3622,0,4,f +10547,3622,1,10,f +10547,3623,0,10,f +10547,3623,1,10,f +10547,3623,272,6,f +10547,3623,15,2,f +10547,3623,71,2,f +10547,3660,0,7,f +10547,3666,0,5,f +10547,3666,1,5,f +10547,3666,15,3,f +10547,3701,0,2,f +10547,3702,71,2,f +10547,3710,0,10,f +10547,3710,15,2,f +10547,3710,71,3,f +10547,3710,1,3,f +10547,3794a,71,12,f +10547,3794a,0,9,f +10547,3794a,272,6,f +10547,3794a,1,2,f +10547,3795,1,5,f +10547,3795,15,2,f +10547,3832,0,1,f +10547,3900,15,1,f +10547,3937,71,4,f +10547,3937,0,2,f +10547,3938,71,4,f +10547,3958,0,1,f +10547,3962b,0,1,f +10547,41539,72,1,f +10547,4162,15,2,f +10547,4162,272,1,f +10547,4162,1,4,f +10547,4162,0,2,f +10547,41769,1,2,f +10547,41770,1,2,f +10547,4287,0,4,f +10547,43093,1,3,f +10547,43722,1,2,f +10547,43722,0,1,f +10547,43723,1,2,f +10547,43723,0,1,f +10547,44309,0,4,f +10547,4460b,1,2,f +10547,4477,0,1,f +10547,4477,15,2,f +10547,4599b,4,1,f +10547,4623,0,3,f +10547,48336,0,6,f +10547,4865a,1,2,f +10547,4865a,0,2,f +10547,4865a,272,2,f +10547,4871,71,2,f +10547,50950,72,1,f +10547,50950,0,2,f +10547,50950,1,4,f +10547,50967,15,2,f +10547,52107,0,2,f +10547,54200,71,4,f +10547,54200,71,2,t +10547,54200,1,6,f +10547,54200,272,2,t +10547,54200,0,3,f +10547,54200,1,2,t +10547,54200,0,2,t +10547,54200,272,18,f +10547,56145,0,4,f +10547,6005,72,2,f +10547,6019,1,2,f +10547,60476,71,1,f +10547,60478,0,2,f +10547,60479,0,1,f +10547,6081,0,2,f +10547,60897,71,4,f +10547,6091,0,2,f +10547,6111,0,2,f +10547,6134,0,2,f +10547,61409,0,2,f +10547,6141,33,1,t +10547,6141,36,2,t +10547,6141,0,2,t +10547,6141,36,4,f +10547,6141,0,13,f +10547,6141,47,2,t +10547,6141,47,6,f +10547,6141,33,4,f +10547,61678,272,4,f +10547,61678,15,4,f +10547,61678,0,2,f +10547,61678,1,10,f +10547,62462,80,4,f +10547,63864,1,6,f +10547,63864,0,7,f +10547,63868,0,8,f +10547,63868,15,2,f +10547,64644,25,1,f +10547,6536,0,2,f +10547,6541,0,13,f +10547,6636,1,19,f +10547,6636,0,5,f +10547,6636,15,1,f +10547,6881b,1,1,f +10547,73983,0,2,f +10547,73983,1,6,f +10547,8214stk01,9999,1,t +10547,85080,0,4,f +10547,85969,135,4,f +10547,85970,15,2,f +10547,87079,0,5,f +10547,87079,1,3,f +10547,87083,72,4,f +10547,87087,72,6,f +10547,87580,1,2,f +10547,87580,272,1,f +10548,122c01,7,2,f +10548,3001a,1,8,f +10548,3002,1,4,f +10548,3003,1,5,f +10548,3004,1,6,f +10548,3004p06,7,2,f +10548,3004p20,1,2,f +10548,3004p90,1,2,f +10548,3005,1,10,f +10548,3009,1,4,f +10548,3010,1,2,f +10548,3020,7,2,f +10548,3021,7,1,f +10548,3022,1,3,f +10548,3023,7,3,f +10548,3023,1,10,f +10548,3024,1,2,f +10548,3024,34,2,f +10548,3039,7,1,f +10548,3039,1,2,f +10548,3039p05,1,3,f +10548,3039p23,1,2,f +10548,3039p34,1,2,f +10548,3040b,1,2,f +10548,3062b,36,3,f +10548,3062b,46,2,f +10548,3068b,1,2,f +10548,3612,1,10,f +10548,3626apr0001,14,3,f +10548,3641,0,4,f +10548,3660p01,1,2,f +10548,3666,1,4,f +10548,3673,7,1,f +10548,3679,7,1,f +10548,3680,1,1,f +10548,3700,7,1,f +10548,3700,15,2,f +10548,3701,7,1,f +10548,3702,1,3,f +10548,3710,1,2,f +10548,3710,7,1,f +10548,3747a,1,4,f +10548,3749,7,3,f +10548,3794a,7,4,f +10548,3795,1,1,f +10548,3795,7,5,f +10548,3829c01,7,2,f +10548,3829c01,1,2,f +10548,3830,1,4,f +10548,3831,1,4,f +10548,3832,1,1,f +10548,3838,0,1,f +10548,3838,4,1,f +10548,3838,14,1,f +10548,3842a,4,1,f +10548,3842a,14,1,f +10548,3842a,0,1,f +10548,3876,36,2,f +10548,3935,7,1,f +10548,3936,7,1,f +10548,3937,7,5,f +10548,3938,7,5,f +10548,3941,15,3,f +10548,3941,7,2,f +10548,3942a,0,1,f +10548,3956,15,1,f +10548,3956,1,3,f +10548,3957a,36,2,f +10548,3959,15,1,f +10548,3959,0,2,f +10548,3960,7,2,f +10548,3962a,0,1,f +10548,4033,1,4,f +10548,4081a,1,4,f +10548,4081a,7,2,f +10548,4085a,1,4,f +10548,4175,7,2,f +10548,4213,46,2,f +10548,4213,1,1,f +10548,4220,7,2,f +10548,4221,7,4,f +10548,4229,7,4,f +10548,4285a,7,1,f +10548,4315,1,5,f +10548,4345a,1,4,f +10548,4346,1,4,f +10548,4349,7,6,f +10548,4349,0,2,f +10548,4447,1,2,f +10548,4448,46,2,f +10548,4474,1,4,f +10548,4477,1,1,f +10548,4590,1,2,f +10548,4590,7,2,f +10548,4591,0,1,f +10548,4591,1,2,f +10548,4596,7,1,f +10548,4596,1,4,f +10548,4596,15,2,f +10548,4597,1,2,f +10548,4625,1,2,f +10548,6141,46,6,f +10548,6141,36,8,f +10548,6141,34,2,f +10548,792c02,1,2,f +10548,970c00,4,1,f +10548,970c00,0,1,f +10548,970c00,14,1,f +10548,973p90c02,4,1,f +10548,973p90c03,0,1,f +10548,973p90c04,14,1,f +10551,45462,118,1,f +10551,45462,15,1,f +10551,45462,5,1,f +10551,45462,232,1,f +10551,45463,232,1,f +10551,45463,15,1,f +10551,45463,5,2,f +10551,45463,118,1,f +10551,clikits088,45,1,f +10554,2335p31,15,1,f +10554,2345,15,1,f +10554,2345p04,15,1,f +10554,2357,15,4,f +10554,2420,15,3,f +10554,2453a,15,1,f +10554,2454a,15,1,f +10554,2524,6,1,f +10554,2526,14,1,f +10554,2526,1,1,f +10554,2527,6,1,f +10554,2530,8,3,f +10554,2540,0,1,f +10554,2542,6,2,f +10554,2543,4,1,f +10554,2544,0,1,f +10554,2545,0,1,f +10554,2551,4,1,f +10554,2561,6,1,f +10554,2562,6,2,f +10554,2714a,0,1,f +10554,3004,15,6,f +10554,3005,15,1,f +10554,3010,15,3,f +10554,3020,7,2,f +10554,3023,7,4,f +10554,3023,15,2,f +10554,3024,15,2,f +10554,3024,0,1,f +10554,3029,0,1,f +10554,3034,0,1,f +10554,3062b,0,7,f +10554,3062b,14,4,f +10554,3455,14,1,f +10554,3497,2,1,f +10554,3622,15,1,f +10554,3623,0,1,f +10554,3626bp44,14,1,f +10554,3626bp48,14,1,f +10554,3626bpr0001,14,1,f +10554,3659,15,2,f +10554,3666,0,1,f +10554,3957a,0,3,f +10554,4035,14,1,f +10554,4081b,0,1,f +10554,4085c,0,2,f +10554,4085c,15,3,f +10554,4286,14,2,f +10554,4460b,15,2,f +10554,4600,0,2,f +10554,4624,7,4,f +10554,56823,0,1,f +10554,6020,6,1,f +10554,6064,2,1,f +10554,6066,15,1,f +10554,6083,8,1,f +10554,84943,8,1,f +10554,970c00,0,1,f +10554,970c00,15,2,f +10554,973p33c01,14,1,f +10554,973pb0206c01,15,2,f +10557,10039,0,1,f +10557,11002,0,1,f +10557,12825,0,2,f +10557,2420,0,4,f +10557,2436,0,1,f +10557,30195stk01,9999,1,t +10557,3020,0,1,f +10557,3021,71,1,f +10557,3022,1,1,f +10557,3069b,0,1,f +10557,3070b,0,1,t +10557,3070b,0,2,f +10557,3710,0,3,f +10557,50944pr0001,0,4,f +10557,50947,0,2,f +10557,50950,0,2,f +10557,50951,0,4,f +10557,51739,0,2,f +10557,54200,0,1,t +10557,54200,0,6,f +10557,60212,0,1,f +10557,6141,4,6,f +10557,6141,4,1,t +10557,6231,0,4,f +10557,64225,0,1,f +10557,93274,0,1,f +10557,93589,0,1,f +10558,2357,71,2,f +10558,2412b,36,1,f +10558,2412b,72,4,f +10558,2420,72,4,f +10558,2431,71,2,f +10558,2432,0,1,f +10558,2445,0,4,f +10558,2540,71,1,f +10558,2654,0,1,f +10558,2817,71,2,f +10558,3004,71,5,f +10558,3005,72,4,f +10558,30135,72,1,f +10558,30162,71,4,f +10558,3020,72,5,f +10558,3021,71,8,f +10558,3022,15,6,f +10558,3022,0,12,f +10558,3022,71,2,f +10558,3023,72,6,f +10558,3023,14,2,f +10558,3024,72,6,f +10558,3032,72,1,f +10558,3034,0,8,f +10558,30361dps5,0,1,f +10558,30362,0,2,f +10558,30373,72,2,f +10558,3039,19,1,f +10558,3040b,71,6,f +10558,3048b,72,4,f +10558,3049b,71,2,f +10558,3069b,71,12,f +10558,32000,4,4,f +10558,32028,71,6,f +10558,3300,72,2,f +10558,33299a,0,2,f +10558,3460,0,4,f +10558,3623,71,4,f +10558,3626bpr0472,78,1,f +10558,3626bpr0922,0,1,f +10558,3626bpr0924,78,1,f +10558,3665,71,6,f +10558,3700,0,1,f +10558,3710,0,4,f +10558,3710,72,10,f +10558,3710,71,8,f +10558,3747b,72,3,f +10558,3747b,71,8,f +10558,3794a,0,4,f +10558,3794a,72,4,f +10558,3794a,71,4,f +10558,3960,71,1,f +10558,3960ps2,72,1,f +10558,4032a,2,4,f +10558,4032a,15,1,f +10558,4079b,72,1,f +10558,4150pr086,71,2,f +10558,4162,71,8,f +10558,42445,71,12,f +10558,43093,1,1,f +10558,44375b,71,1,f +10558,44568,71,1,f +10558,44570,72,1,f +10558,44728,0,6,f +10558,4477,71,12,f +10558,4740,0,1,f +10558,50747pr0004,40,1,f +10558,51739,0,4,f +10558,51739,71,4,f +10558,54200,71,1,t +10558,54200,71,8,f +10558,54383,0,12,f +10558,54384,0,12,f +10558,58176,36,2,f +10558,58247,0,1,f +10558,59426,72,2,f +10558,60470b,0,1,f +10558,60477,72,2,f +10558,60478,71,12,f +10558,60478,0,8,f +10558,60479,0,4,f +10558,61184,71,2,f +10558,6141,36,1,t +10558,6141,0,2,t +10558,6141,0,8,f +10558,6141,36,2,f +10558,6178,0,8,f +10558,63868,71,12,f +10558,6541,14,6,f +10558,6558,1,4,f +10558,6636,71,8,f +10558,73983,72,8,f +10558,85984,71,4,f +10558,87556pr0001,0,1,f +10558,87609,0,8,f +10558,92582,71,2,f +10558,92593,72,4,f +10558,92950,72,1,f +10558,93273,71,2,f +10558,970c00,72,1,f +10558,970c00,0,2,f +10558,973pr1148c01,0,1,f +10558,973pr1420c01,0,1,f +10558,973pr1993c01,72,1,f +10558,98100pr0002,0,1,f +10558,98108,0,1,f +10559,32062,4,2,f +10559,3749,19,1,f +10559,42074,0,2,f +10559,57539,4,1,f +10559,59426,72,1,f +10559,59443,0,1,f +10559,64262,57,1,f +10559,64275,148,2,f +10559,64713,179,1,f +10559,64727,4,8,f +10559,87791,0,2,f +10559,90607,0,4,f +10559,90608,4,2,f +10559,90609,0,1,f +10559,90612,0,3,f +10559,90617,4,5,f +10559,90622,0,1,f +10559,90625,0,1,f +10559,90630,0,2,f +10559,90636,179,1,f +10559,90640,0,1,f +10559,90640,179,3,f +10559,90640pr0007,0,1,f +10559,90649,0,1,f +10559,90650,0,2,f +10559,92212pat0001,4,1,f +10559,92214,179,1,f +10559,92215,148,1,f +10559,92216,4,1,f +10559,92216,179,1,f +10559,92217,148,1,f +10559,93571,0,4,f +10559,95753pat0001,4,1,f +10560,10197,0,7,f +10560,10247,0,3,f +10560,10928,72,7,f +10560,11055,15,2,f +10560,11090,0,1,f +10560,11214,72,31,f +10560,11478,0,6,f +10560,11946,0,1,f +10560,11946,15,1,f +10560,11947,0,1,f +10560,11947,15,1,f +10560,11954,4,2,f +10560,14720,71,10,f +10560,14769,0,1,f +10560,15038,4,4,f +10560,15068,27,2,f +10560,15100,0,49,f +10560,15458,72,4,f +10560,15462,28,7,f +10560,15535,72,4,f +10560,15573,0,2,f +10560,16511,71,1,f +10560,18575,0,1,f +10560,18575,19,5,f +10560,18651,0,20,f +10560,18654,72,2,t +10560,18654,72,54,f +10560,18677,71,2,f +10560,18938,0,2,f +10560,18939,71,2,f +10560,18946,4,7,f +10560,18947,72,3,f +10560,18948,15,10,f +10560,22961,71,14,f +10560,23798,0,4,f +10560,23801,0,4,f +10560,23948,14,1,f +10560,24116,0,1,f +10560,2431,15,1,f +10560,2431,0,2,f +10560,24316,70,9,f +10560,2780,0,5,t +10560,2780,0,253,f +10560,2819,72,1,f +10560,2853,71,4,f +10560,3023,0,2,f +10560,3023,27,2,f +10560,3068b,0,1,f +10560,32000,0,1,f +10560,32002,19,12,f +10560,32002,19,2,t +10560,32009,72,4,f +10560,32009,71,2,f +10560,32009,0,2,f +10560,32013,71,3,f +10560,32013,72,7,f +10560,32014,72,6,f +10560,32016,71,3,f +10560,32017,71,4,f +10560,32034,0,14,f +10560,32034,71,1,f +10560,32039,0,24,f +10560,32054,71,29,f +10560,32054,4,4,f +10560,32056,0,2,f +10560,32056,72,6,f +10560,32062,4,61,f +10560,32072,14,4,f +10560,32073,14,11,f +10560,32073,71,5,f +10560,32123b,14,6,f +10560,32123b,14,2,t +10560,32126,1,1,f +10560,32138,71,1,f +10560,32140,72,19,f +10560,32140,27,13,f +10560,32140,4,4,f +10560,32184,71,5,f +10560,32184,4,10,f +10560,32192,72,2,f +10560,32202,27,2,f +10560,32250,72,2,f +10560,32270,0,14,f +10560,32271,27,6,f +10560,32271,0,2,f +10560,32278,72,10,f +10560,32278,4,1,f +10560,32291,72,3,f +10560,32291,71,2,f +10560,32316,27,12,f +10560,32316,4,4,f +10560,32316,0,6,f +10560,32316,72,11,f +10560,32348,72,2,f +10560,32348,4,3,f +10560,32449,4,4,f +10560,32449,15,4,f +10560,32494,71,2,f +10560,32523,4,3,f +10560,32523,0,20,f +10560,32524,4,22,f +10560,32524,27,6,f +10560,32524,72,19,f +10560,32525,72,9,f +10560,32525,15,2,f +10560,32526,4,6,f +10560,32526,0,4,f +10560,32526,72,11,f +10560,32556,19,9,f +10560,32557,0,2,f +10560,3648b,72,5,f +10560,3673,71,2,t +10560,3673,71,18,f +10560,3705,4,9,f +10560,3705,0,4,f +10560,3706,0,10,f +10560,3707,4,2,f +10560,3707,0,2,f +10560,3708,0,1,f +10560,3713,4,10,f +10560,3713,4,1,t +10560,3713,71,1,t +10560,3713,71,20,f +10560,3749,19,16,f +10560,4032a,72,4,f +10560,40490,0,17,f +10560,40490,72,5,f +10560,41239,72,3,f +10560,41239,15,1,f +10560,41239,27,4,f +10560,41239,71,2,f +10560,4162,0,2,f +10560,4162,15,2,f +10560,41669,71,3,f +10560,41677,4,11,f +10560,41678,0,7,f +10560,41678,71,11,f +10560,42003,0,7,f +10560,42003,72,10,f +10560,42610,71,1,f +10560,4274,71,4,t +10560,4274,71,48,f +10560,43093,1,76,f +10560,43093,1,1,t +10560,43857,0,18,f +10560,44294,71,15,f +10560,44294,14,6,f +10560,44375b,4,4,f +10560,4477,0,2,f +10560,44809,0,1,f +10560,4519,71,52,f +10560,4716,71,1,f +10560,48496,0,3,f +10560,48989,71,4,f +10560,50950,27,2,f +10560,55013,72,8,f +10560,55615,71,2,f +10560,58120,71,1,f +10560,58176,182,2,f +10560,59426,72,6,f +10560,59443,72,18,f +10560,59443,4,6,f +10560,60483,71,8,f +10560,60483,72,31,f +10560,60484,72,8,f +10560,60484,71,2,f +10560,60485,71,2,f +10560,6141,72,4,f +10560,6141,72,1,t +10560,61903,71,2,f +10560,62462,179,1,f +10560,62462,4,3,f +10560,63869,71,7,f +10560,64178,71,1,f +10560,64179,71,2,f +10560,64391,4,1,f +10560,64391,27,1,f +10560,64393,27,1,f +10560,64681,27,1,f +10560,64683,27,1,f +10560,64683,4,1,f +10560,64781,0,1,f +10560,64782,15,2,f +10560,6536,4,18,f +10560,6536,0,32,f +10560,6536,27,22,f +10560,6553,0,6,f +10560,6553,72,4,f +10560,6558,1,132,f +10560,6587,28,6,f +10560,6589,19,10,f +10560,6628,0,3,f +10560,6629,71,1,f +10560,6629,0,8,f +10560,6632,0,7,f +10560,6632,72,18,f +10560,6636,0,2,f +10560,6641,4,3,f +10560,76244,15,2,f +10560,87080,0,1,f +10560,87080,27,1,f +10560,87082,71,4,f +10560,87083,72,21,f +10560,87086,27,1,f +10560,87086,0,1,f +10560,88930,0,2,f +10560,92693,71,3,f +10560,92906,72,2,f +10560,92907,0,15,f +10560,92909,72,4,f +10560,92947,70,10,f +10560,94925,71,8,f +10560,98138,182,2,f +10560,98138,47,1,t +10560,98138,182,1,t +10560,98138,36,3,f +10560,98138,1,1,f +10560,98138,1,1,t +10560,98138,36,1,t +10560,98138,34,1,f +10560,98138,34,1,t +10560,98138,47,18,f +10560,98138,71,1,t +10560,98138,71,1,f +10560,99008,19,12,f +10560,99009,71,1,f +10560,99010,0,1,f +10560,99021,72,3,f +10560,99773,71,14,f +10560,99773,0,6,f +10560,99780,0,2,f +10563,30034,0,2,f +10563,30035,0,1,f +10563,30120p01,0,1,f +10563,30120p02,7,1,f +10563,30121,0,1,f +10563,30121,8,1,f +10563,3068bp54,7,1,f +10563,3069bp51,0,1,f +10563,3069bp54,7,1,f +10563,3298p6u,7,1,f +10563,4150,0,1,f +10563,4349,0,2,f +10563,4595,0,2,f +10563,4740,42,2,f +10563,73590c02a,0,1,f +10564,2431,0,2,f +10564,2723,0,2,f +10564,2780,0,24,f +10564,2825,27,2,f +10564,2825,25,2,f +10564,2905,0,4,f +10564,2907,7,2,f +10564,2994,25,2,f +10564,3069b,0,2,f +10564,3139,0,2,f +10564,32002,8,3,f +10564,32013,0,8,f +10564,32014,0,5,f +10564,32015,0,2,f +10564,32016,27,4,f +10564,32016,0,4,f +10564,32016,25,4,f +10564,32039,0,4,f +10564,32054,3,3,f +10564,32054,22,5,f +10564,32056,22,2,f +10564,32056,3,4,f +10564,32062,0,15,f +10564,32064b,0,4,f +10564,32065,0,4,f +10564,32073,0,5,f +10564,32074c02,0,1,f +10564,32123b,7,13,f +10564,32138,0,4,f +10564,32140,25,4,f +10564,32143,25,2,f +10564,32143,27,2,f +10564,32144,0,4,f +10564,32146,0,2,f +10564,32146,22,1,f +10564,32146,3,1,f +10564,32184,0,6,f +10564,32193,0,4,f +10564,32249,0,2,f +10564,32250,27,4,f +10564,32250,25,2,f +10564,32250,0,4,f +10564,32271,25,3,f +10564,32271,27,3,f +10564,32271,0,1,f +10564,32278,0,1,f +10564,32278,27,3,f +10564,32278,25,3,f +10564,32279,3,1,f +10564,32280,3,1,f +10564,32288c02,0,1,f +10564,32291,3,4,f +10564,32291,0,2,f +10564,32291,22,4,f +10564,32310pb06,27,3,f +10564,32316,25,3,f +10564,32316,27,1,f +10564,32348,25,2,f +10564,32348,27,2,f +10564,3673,7,6,f +10564,3705,0,21,f +10564,3706,0,10,f +10564,3707,0,1,f +10564,3708,0,4,f +10564,3713,7,21,f +10564,3737,0,2,f +10564,3749,7,12,f +10564,4150,0,4,f +10564,4274,7,5,f +10564,4519,0,8,f +10564,4868a,0,2,f +10564,6536,0,8,f +10564,6536,22,6,f +10564,6536,7,2,f +10564,6536,3,10,f +10564,6538b,0,2,f +10564,6553,0,2,f +10564,6558,0,14,f +10564,6578,0,2,f +10564,6628,0,8,f +10564,6632,0,8,f +10564,75535,0,2,f +10564,76110c02,0,1,f +10564,78c03,179,4,f +10564,78c07,179,2,f +10564,rb00167a,0,10,f +10564,tech027,9999,1,f +10565,2412b,0,1,f +10565,30027b,4,2,f +10565,30028,0,2,f +10565,3020,4,1,f +10565,3022,25,1,f +10565,30602,0,1,f +10565,30603,0,1,f +10565,3795,72,1,f +10565,4081b,4,2,f +10565,41854pb06,25,1,f +10565,44674,25,1,f +10565,4600,71,1,f +10565,6014b,4,2,f +10565,6015,0,2,f +10565,6141,4,1,t +10565,6141,4,4,f +10565,6157,72,1,f +10568,3626bpr0677,14,1,f +10568,41879a,85,1,f +10568,59363,70,1,f +10568,93555,179,2,f +10568,973pr1772c01,10,1,f +10569,2357,0,8,f +10569,2362a,4,1,f +10569,2412b,4,4,f +10569,2412b,0,8,f +10569,2419,0,2,f +10569,2419,8,6,f +10569,2420,4,2,f +10569,2420,0,2,f +10569,2431,4,6,f +10569,2444,0,4,f +10569,2446,4,1,f +10569,2446,47,1,f +10569,2446p50,4,1,f +10569,2447,42,2,f +10569,2456,4,1,f +10569,2458,0,4,f +10569,2462,0,2,f +10569,2462,4,2,f +10569,2464,0,4,f +10569,2540,0,1,f +10569,2569,42,2,f +10569,2607,4,1,f +10569,2609,0,1,f +10569,2744,0,2,f +10569,2780,0,1,f +10569,2877,4,5,f +10569,3002,0,2,f +10569,3003,0,3,f +10569,3004,4,7,f +10569,3004,0,4,f +10569,3008,0,1,f +10569,3009,0,4,f +10569,3010,0,5,f +10569,3020,0,8,f +10569,3020,4,2,f +10569,3021,0,2,f +10569,3022,4,2,f +10569,3022,0,2,f +10569,3023,4,7,f +10569,3023,0,7,f +10569,3024,0,4,f +10569,3024,4,2,f +10569,3031,0,1,f +10569,3032,0,1,f +10569,3035,0,1,f +10569,3037,0,5,f +10569,3039,0,5,f +10569,3039pc1,0,1,f +10569,3039pc7,0,1,f +10569,3040b,0,6,f +10569,3062b,4,16,f +10569,3068b,4,1,f +10569,3068bp51,0,3,f +10569,3069bp21,0,2,f +10569,3069bp28,0,3,f +10569,3297,0,1,f +10569,3403c01,0,1,f +10569,3455,4,1,f +10569,3455,0,1,f +10569,3475b,0,2,f +10569,3622,0,4,f +10569,3623,4,2,f +10569,3626bp63,0,1,f +10569,3626bp66,14,1,f +10569,3626bp67,14,1,f +10569,3651,7,2,f +10569,3660,0,10,f +10569,3665,4,2,f +10569,3665,0,10,f +10569,3666,0,2,f +10569,3673,7,4,f +10569,3700,0,2,f +10569,3707,0,2,f +10569,3710,4,5,f +10569,3710,0,4,f +10569,3713,7,2,f +10569,3794a,4,8,f +10569,3795,4,2,f +10569,3795,8,4,f +10569,3838,0,2,f +10569,3839b,4,2,f +10569,3839b,0,2,f +10569,3956,4,1,f +10569,3957a,4,2,f +10569,4019,7,2,f +10569,4032a,0,2,f +10569,4081b,0,2,f +10569,4085c,4,2,f +10569,4215a,0,3,f +10569,4220,0,1,f +10569,4221,0,2,f +10569,4286,0,2,f +10569,4315,0,1,f +10569,4345b,4,1,f +10569,4346px15,0,1,f +10569,4360,0,1,f +10569,4474,36,1,f +10569,4589,42,6,f +10569,4591,0,1,f +10569,4595,0,4,f +10569,4598,0,1,f +10569,4730,0,4,f +10569,4730,4,2,f +10569,4735,0,2,f +10569,4740,36,3,f +10569,4859,8,5,f +10569,6019,0,2,f +10569,6020,8,1,f +10569,6048a,0,1,f +10569,6118,0,10,f +10569,6141,42,12,f +10569,6141,0,2,f +10569,6141,4,4,f +10569,6541,0,6,f +10569,6949stk01,9999,1,t +10569,73092,0,2,f +10569,73983,4,6,f +10569,970c00pb019,4,1,f +10569,970x021,0,2,f +10569,973p63c01,4,1,f +10569,973p66c01,1,2,f +10570,2039,72,2,f +10570,2357,72,21,f +10570,2357,4,2,f +10570,2377,4,2,f +10570,2412b,72,11,f +10570,2420,0,6,f +10570,2420,72,5,f +10570,2431,4,2,f +10570,2431,378,1,f +10570,2431,0,5,f +10570,2431,320,1,f +10570,2431pb022,19,1,f +10570,2453a,72,3,f +10570,2454a,320,2,f +10570,2454a,72,1,f +10570,2456,72,1,f +10570,2456,4,1,f +10570,2495,4,1,f +10570,2496,0,1,f +10570,2653,71,1,f +10570,2817,71,1,f +10570,2868b,0,1,f +10570,2871a,0,2,f +10570,2877,0,6,f +10570,2878c01,0,9,f +10570,2920,0,6,f +10570,2921,4,2,f +10570,298c02,0,3,f +10570,298c02,0,1,t +10570,3001,4,3,f +10570,3001,72,2,f +10570,3001,70,3,f +10570,3003,72,4,f +10570,3003,4,1,f +10570,3004,4,21,f +10570,3004,0,4,f +10570,3004,71,26,f +10570,3005,71,23,f +10570,3005,4,10,f +10570,3008,4,6,f +10570,3008,72,4,f +10570,3009,0,2,f +10570,3009,4,14,f +10570,3010,4,6,f +10570,3010,72,9,f +10570,3010,71,2,f +10570,30152pat0001,52,1,f +10570,3020,70,5,f +10570,3020,72,3,f +10570,3020,0,2,f +10570,3021,70,5,f +10570,3021,1,4,f +10570,3022,70,1,f +10570,3022,4,1,f +10570,3022,0,2,f +10570,3023,0,6,f +10570,3023,19,5,f +10570,3023,72,2,f +10570,30238,25,1,f +10570,3024,0,2,f +10570,3024,72,5,f +10570,3029,71,2,f +10570,3031,0,1,f +10570,30363,72,1,f +10570,3037,0,2,f +10570,3037,4,4,f +10570,30374,19,1,f +10570,30374,0,1,f +10570,30374,71,1,f +10570,30374,484,1,f +10570,30381,72,1,f +10570,3039,378,11,f +10570,3039,0,2,f +10570,3039ph1,19,1,f +10570,3040b,378,4,f +10570,3040b,0,2,f +10570,3040b,4,2,f +10570,3040b,72,7,f +10570,3045,378,4,f +10570,3048c,0,4,f +10570,30504,0,2,f +10570,3062b,0,11,f +10570,3062b,320,10,f +10570,3062b,46,1,f +10570,3068b,71,1,f +10570,3068b,72,2,f +10570,3068b,320,2,f +10570,3069b,0,1,f +10570,3069b,320,8,f +10570,3069b,71,1,f +10570,3069b,72,1,f +10570,3069bpb002,19,3,f +10570,3069bpb006,71,1,f +10570,3069bph0,72,1,f +10570,3069bph1,19,1,f +10570,3069bpx41,15,1,f +10570,3070b,320,2,f +10570,3070b,320,1,t +10570,3070bp01,14,2,f +10570,3070bp01,14,1,t +10570,3070bp02,14,1,t +10570,3070bp02,14,2,f +10570,32028,14,1,f +10570,32064b,71,1,f +10570,32083,0,7,f +10570,33009pb002,19,1,f +10570,33320,2,1,f +10570,3455,320,2,f +10570,3455,4,2,f +10570,3460,0,4,f +10570,3460,19,4,f +10570,3622,0,2,f +10570,3623,0,2,f +10570,3623,4,2,f +10570,3623,71,2,f +10570,3659,72,1,f +10570,3659,71,1,f +10570,3660,72,7,f +10570,3660,0,2,f +10570,3665,0,2,f +10570,3666,72,1,f +10570,3666,0,7,f +10570,3666,71,1,f +10570,3666,4,1,f +10570,3673,71,4,f +10570,3678b,72,1,f +10570,3700,0,4,f +10570,3710,0,5,f +10570,3710,72,3,f +10570,3710,4,1,f +10570,3794a,4,4,f +10570,3795,72,4,f +10570,3795,0,2,f +10570,3832,4,1,f +10570,3837,72,1,f +10570,3853,320,5,f +10570,3854,15,10,f +10570,3899,14,1,f +10570,3937,15,1,f +10570,3938,71,1,f +10570,3941,0,1,f +10570,3941,4,1,f +10570,3958,0,2,f +10570,3960px6,0,1,f +10570,4022,0,6,f +10570,40232,70,1,f +10570,40232,15,1,f +10570,40234,71,1,f +10570,4025,0,3,f +10570,4032a,14,1,f +10570,4032a,71,1,f +10570,4032a,0,1,f +10570,4033,4,10,f +10570,4034,47,10,f +10570,4070,72,8,f +10570,4070,15,1,f +10570,4081b,71,1,f +10570,4150,0,1,f +10570,41539,71,2,f +10570,4162,4,4,f +10570,4162,0,4,f +10570,4175,0,2,f +10570,4286,4,4,f +10570,43337,4,3,f +10570,43337,0,1,f +10570,4345b,71,1,f +10570,4346pb02,15,1,f +10570,4449,73,1,f +10570,4449,70,1,f +10570,4449,15,1,f +10570,44570,71,1,f +10570,4460b,72,1,f +10570,4477,4,2,f +10570,4477,0,2,f +10570,44822,0,1,f +10570,4589,4,2,f +10570,4623,4,1,f +10570,4738a,70,1,f +10570,4739a,70,1,f +10570,4740,320,1,f +10570,4854,4,2,f +10570,4865a,0,2,f +10570,4865a,15,2,f +10570,5306c01,72,1,f +10570,57503,334,1,f +10570,57504,334,1,f +10570,57505,334,1,f +10570,57506,334,1,f +10570,6019,0,4,f +10570,6081,4,2,f +10570,6111,4,2,f +10570,6126a,57,2,f +10570,6141,47,2,f +10570,6141,320,9,f +10570,6141,320,1,t +10570,6141,71,1,t +10570,6141,0,1,t +10570,6141,47,1,t +10570,6141,0,31,f +10570,6141,57,2,f +10570,6141,71,6,f +10570,6141,57,1,t +10570,6231,0,2,f +10570,6231,15,2,f +10570,6265,378,1,t +10570,6541,71,2,f +10570,6541,0,1,f +10570,6584,0,2,f +10570,6587,72,1,f +10570,6636,4,2,f +10570,6636,0,1,f +10570,70358,0,1,f +10570,70931,0,1,f +10570,73092,0,6,f +10570,74746,72,2,f +10570,74747,72,16,f +10570,75c16,0,2,f +10573,30150,70,1,f +10573,3021,15,1,f +10573,3023,2,2,f +10573,3023,15,1,f +10573,3069b,2,2,f +10573,3069bpr0055,15,1,f +10573,3794b,15,1,f +10574,2423,2,1,f +10574,2524,70,1,f +10574,2530,72,2,f +10574,2530,72,1,t +10574,3008,0,2,f +10574,30150,70,1,f +10574,30153,34,1,f +10574,30153,36,1,f +10574,30173a,297,1,f +10574,30176,2,1,f +10574,3021,0,4,f +10574,3022,72,1,f +10574,3023,0,4,f +10574,3031,70,1,f +10574,30374,14,1,f +10574,3040b,19,1,f +10574,3062b,72,6,f +10574,30663,71,2,f +10574,3068bpr0139a,19,1,f +10574,32028,15,1,f +10574,33057,484,1,f +10574,33085,14,1,f +10574,3626bpr0515b,78,1,f +10574,3626bpr0516a,78,1,f +10574,3626bpr0545,78,1,f +10574,3659,72,2,f +10574,3665,72,4,f +10574,3679,71,1,f +10574,3680,0,1,f +10574,37,72,2,f +10574,3795,0,1,f +10574,3832,0,2,f +10574,3847,135,1,f +10574,3899,4,1,f +10574,4032a,19,1,f +10574,4528,135,1,f +10574,4589,46,1,f +10574,4589,70,4,f +10574,4623,71,4,f +10574,4740,72,1,f +10574,4865a,71,1,f +10574,48723,70,1,f +10574,48729a,72,1,f +10574,48729a,72,1,t +10574,49668,191,2,f +10574,6126a,182,1,f +10574,6141,71,5,f +10574,6141,71,1,t +10574,61506,70,1,f +10574,61880,28,1,f +10574,61975,70,1,f +10574,61976,70,1,f +10574,62363,28,1,f +10574,62575pat0001,320,3,f +10574,62711,0,1,f +10574,62810,308,1,f +10574,970c00,272,1,f +10574,970c00,71,1,f +10574,973pr1370c01,308,1,f +10574,973pr1392c01,0,1,f +10574,973pr1396c01,71,1,f +10576,14226c11,0,1,f +10576,14226c21,0,4,f +10576,2431,6,6,f +10576,2444,6,8,f +10576,2445,6,2,f +10576,2450,19,4,f +10576,2454a,8,1,f +10576,2454a,6,4,f +10576,2476b,7,2,f +10576,2540,0,1,f +10576,2555,7,2,f +10576,2621,19,4,f +10576,2625,19,4,f +10576,2714a,0,2,f +10576,2780,0,1,t +10576,2780,0,8,f +10576,3004,6,12,f +10576,3004,8,1,f +10576,3005,6,8,f +10576,3005,8,1,f +10576,3020,6,4,f +10576,3020,19,8,f +10576,3021,19,12,f +10576,3022,6,4,f +10576,3022,19,7,f +10576,3023,6,12,f +10576,3023,8,3,f +10576,3024,6,6,f +10576,3029,19,10,f +10576,3032,0,1,f +10576,3034,19,2,f +10576,30374,8,2,f +10576,30377,7,6,f +10576,30377,7,1,t +10576,30407,6,4,f +10576,3040b,6,6,f +10576,30552,0,4,f +10576,30565,19,4,f +10576,3062b,6,8,f +10576,3068b,6,2,f +10576,3068b,19,5,f +10576,3069b,6,2,f +10576,3069b,0,1,f +10576,3070b,6,2,f +10576,3070b,6,1,t +10576,3176,6,4,f +10576,3184,6,2,f +10576,32000,0,3,f +10576,32002,8,2,f +10576,32002,8,1,t +10576,32063,6,1,f +10576,32123b,7,1,t +10576,32123b,7,7,f +10576,32293,6,14,f +10576,32294,0,8,f +10576,32529,6,14,f +10576,32530,6,12,f +10576,3308,6,1,f +10576,3460,6,16,f +10576,3614b,7,2,f +10576,3623,6,5,f +10576,3623,19,22,f +10576,3648b,7,2,f +10576,3665,6,2,f +10576,3665,0,1,f +10576,3666,6,4,f +10576,3666,0,1,f +10576,3700,6,4,f +10576,3710,19,10,f +10576,3710,6,6,f +10576,3711a,0,2,t +10576,3711a,0,91,f +10576,3713,7,4,f +10576,3713,7,1,t +10576,3737,0,3,f +10576,3749,19,1,f +10576,3794a,8,1,f +10576,3794a,19,5,f +10576,3795,0,1,f +10576,3795,8,2,f +10576,3832,6,3,f +10576,4019,7,2,f +10576,4070,6,2,f +10576,4070,8,4,f +10576,4095,0,1,f +10576,4162,6,8,f +10576,41752,8,1,t +10576,41769,19,4,f +10576,41770,19,4,f +10576,4185,7,1,f +10576,42445,6,10,f +10576,4274,7,1,t +10576,4274,7,6,f +10576,4282,6,6,f +10576,4286,6,4,f +10576,4286,8,1,f +10576,4349,7,4,f +10576,44301a,6,6,f +10576,44302a,6,6,f +10576,4477,19,18,f +10576,4477,6,26,f +10576,4599a,7,1,f +10576,6019,8,2,f +10576,6060,6,2,f +10576,6081,0,1,f +10576,6091,0,4,f +10576,6141,6,4,f +10576,6141,6,1,t +10576,6178,19,2,f +10576,6179,19,4,f +10576,6180,19,4,f +10576,6205,19,14,f +10576,6538b,0,2,f +10576,6541,6,10,f +10576,6553,0,2,f +10576,6558,0,4,f +10576,6628,0,24,f +10576,6636,0,2,f +10576,6636,6,5,f +10576,6636,19,2,f +10576,71509,0,1,f +10576,71509,0,3,t +10576,73983,6,10,f +10576,75535,6,3,f +10576,75535,0,3,f +10577,10247,72,2,f +10577,11090,0,1,f +10577,11090,72,7,f +10577,11211,71,2,f +10577,11215,0,1,f +10577,11439pat0003,33,1,f +10577,11439pat0003,33,1,t +10577,11476,71,3,f +10577,11477,25,2,f +10577,11477,70,4,f +10577,13564,15,2,f +10577,13564,15,1,t +10577,15068,484,2,f +10577,15068,15,3,f +10577,15070,15,2,f +10577,15100,0,2,f +10577,15391,15,2,f +10577,15392,72,2,f +10577,15392,70,2,f +10577,15392,70,1,t +10577,15392,72,1,t +10577,15403,0,2,f +10577,15535pr0002,72,2,f +10577,15712,0,2,f +10577,15712,15,2,f +10577,18649,0,1,f +10577,18674,15,2,f +10577,18969,484,7,f +10577,19136pr0002,27,1,f +10577,19857pat0005,0,1,f +10577,2357,0,2,f +10577,23983,297,1,f +10577,23984,15,2,f +10577,23984,148,2,f +10577,23984,15,1,t +10577,23985,15,1,f +10577,2412b,70,2,f +10577,2420,28,2,f +10577,2431,25,2,f +10577,24724,9999,1,f +10577,2489,70,1,f +10577,2526,288,2,f +10577,2526,288,2,t +10577,2527,70,1,f +10577,2540,72,1,f +10577,2540,0,7,f +10577,2654,15,2,f +10577,2780,0,6,f +10577,2780,0,2,t +10577,3003,19,1,f +10577,30031,72,1,f +10577,3005,0,2,f +10577,30173b,297,2,f +10577,30173b,297,1,t +10577,3022,70,1,f +10577,3023,15,3,f +10577,3023,25,2,f +10577,3023,36,1,f +10577,3023,70,5,f +10577,3024,25,1,t +10577,3024,25,2,f +10577,3031,70,1,f +10577,3034,15,1,f +10577,3034,71,1,f +10577,30350b,72,1,f +10577,3039pr0014,0,1,f +10577,3039pr0018,0,1,f +10577,3040b,70,2,f +10577,3040b,0,2,f +10577,30414,0,3,f +10577,3049c,15,1,f +10577,3062b,72,2,f +10577,3069b,70,1,f +10577,3070b,25,2,f +10577,3070b,25,1,t +10577,3176,71,2,f +10577,3176,0,2,f +10577,32014,0,3,f +10577,32039,71,1,f +10577,32054,0,3,f +10577,32059,0,1,f +10577,32062,4,2,f +10577,32123b,71,1,t +10577,32123b,71,3,f +10577,32187,179,2,f +10577,32530,0,1,f +10577,32531,0,2,f +10577,3623,70,2,f +10577,3626cpr1570,179,1,f +10577,3626cpr9993,15,1,f +10577,3659,0,2,f +10577,3705,0,4,f +10577,3795,70,1,f +10577,3958,70,1,f +10577,4032a,0,3,f +10577,4032a,25,1,f +10577,4032a,15,1,f +10577,41769,0,1,f +10577,41770,0,1,f +10577,42023,72,4,f +10577,42610,71,1,f +10577,4332,70,1,f +10577,44728,0,1,f +10577,44728,15,1,f +10577,4497,0,1,f +10577,4697b,71,1,t +10577,4697b,71,1,f +10577,47406,0,1,f +10577,4742,72,2,f +10577,4790,70,1,f +10577,48336,0,2,f +10577,48336,71,2,f +10577,50304,0,1,f +10577,50305,0,1,f +10577,51739,15,1,f +10577,53451,15,1,f +10577,53451,15,1,t +10577,53454,148,2,f +10577,54200,25,2,f +10577,54200,25,1,t +10577,54383,0,3,f +10577,54384,0,3,f +10577,59443,72,1,f +10577,59900,72,2,f +10577,59900,70,1,f +10577,60474,72,1,f +10577,60477,0,2,f +10577,60478,72,2,f +10577,60485,71,1,f +10577,6091,70,2,f +10577,61252,25,4,f +10577,61252,15,2,f +10577,6141,41,4,f +10577,6141,15,1,t +10577,6141,72,1,t +10577,6141,25,1,t +10577,6141,72,4,f +10577,6141,41,1,t +10577,6141,15,2,f +10577,6141,25,2,f +10577,6222,72,1,f +10577,64728,4,1,f +10577,6587,28,1,f +10577,75937,179,3,f +10577,84943,148,1,f +10577,85959pat0003,36,1,f +10577,85984,0,1,f +10577,87079,0,1,f +10577,87079,70,3,f +10577,87552,0,1,f +10577,87747,0,1,t +10577,87747,0,7,f +10577,87747,15,4,f +10577,87747,15,1,t +10577,90258,72,1,f +10577,92280,0,4,f +10577,93058b,297,1,t +10577,93058b,297,2,f +10577,95343,70,1,f +10577,95344,28,2,t +10577,95344,28,2,f +10577,95354,0,2,f +10577,970d00pr9999,70,1,f +10577,970d33,288,1,f +10577,973pr9986c01,0,1,f +10577,973pr9992,70,1,f +10577,973pr9996,27,1,f +10577,98128,288,1,f +10577,98137,25,2,f +10577,98138pr0040,33,1,f +10577,98138pr0040,33,1,t +10577,98141,179,2,f +10577,98313,15,4,f +10577,98341,179,2,f +10577,99780,15,2,f +10580,2780,0,5,f +10580,2780,0,1,t +10580,32054,0,2,f +10580,32062,4,2,f +10580,40379,135,4,f +10580,43093,1,4,f +10580,4519,71,2,f +10580,47297,272,4,f +10580,47306,272,1,f +10580,49423,135,1,f +10580,53543,297,2,f +10580,53544,297,3,f +10580,53545,272,1,f +10580,53549,1,2,f +10580,57539,135,1,f +10580,59426,72,2,f +10580,59443,72,2,f +10580,60176,272,3,f +10580,61054,272,4,f +10580,64251,1,2,f +10580,64257,272,1,f +10580,64262,42,1,f +10580,64269pat0001,297,2,f +10580,64275,135,2,f +10580,64276,0,2,f +10580,64277c01,297,1,f +10580,64889pr0001,135,1,f +10581,3626cpb1173,78,1,f +10581,88811,179,2,f +10581,970c00,0,1,f +10581,973pb1759c01,0,1,f +10581,99930,0,1,f +10582,11640pr0003,4,1,f +10582,3626cpr1728,326,1,f +10582,88646,0,1,f +10582,93556pr0004,326,1,f +10582,970c00pr0913,379,1,f +10582,973pr3112c01,379,1,f +10583,2413,4,2,f +10583,2419,1,2,f +10583,2432,14,2,f +10583,2458,4,1,f +10583,2460,4,1,f +10583,2479,0,1,f +10583,30000,72,1,f +10583,3001,0,4,f +10583,3001,4,6,f +10583,3001,14,6,f +10583,3001,15,4,f +10583,3001,1,6,f +10583,3001pr1,14,1,f +10583,3002,14,6,f +10583,3002,0,4,f +10583,3002,15,6,f +10583,3002,1,6,f +10583,3002,4,6,f +10583,3003,1,4,f +10583,3003,15,4,f +10583,3003,0,4,f +10583,3003,2,4,f +10583,3003,4,6,f +10583,3003,14,6,f +10583,3004,4,20,f +10583,3004,0,10,f +10583,3004,15,16,f +10583,3004,14,20,f +10583,3004,2,4,f +10583,3004,1,16,f +10583,3005,0,6,f +10583,3005,2,6,f +10583,3005,4,10,f +10583,3005,14,10,f +10583,3005,1,8,f +10583,3005,15,8,f +10583,3008,4,2,f +10583,3008,14,2,f +10583,3009,1,4,f +10583,3009,15,4,f +10583,3009,4,4,f +10583,3009,14,4,f +10583,3010,0,4,f +10583,3010,1,12,f +10583,3010,14,14,f +10583,3010,15,12,f +10583,3010,4,14,f +10583,3020,1,2,f +10583,3021,1,2,f +10583,3022,4,2,f +10583,3022,1,2,f +10583,3034,1,2,f +10583,3035,1,1,f +10583,3040b,4,2,f +10583,3041,4,2,f +10583,3043,4,2,f +10583,3062b,15,4,f +10583,3069b,14,2,f +10583,3297,4,2,f +10583,3297,1,2,f +10583,3298,1,4,f +10583,3298,4,4,f +10583,3307,15,2,f +10583,33303,15,2,f +10583,3470,2,1,f +10583,3483,0,6,f +10583,3622,1,6,f +10583,3622,4,6,f +10583,3622,14,6,f +10583,3622,15,6,f +10583,3660,4,2,f +10583,3665,4,2,f +10583,3666,4,2,f +10583,3666,1,2,f +10583,3710,1,2,f +10583,3730,0,1,f +10583,3731,0,1,f +10583,3741,2,2,f +10583,3742,4,3,f +10583,3742,14,1,t +10583,3742,4,1,t +10583,3742,14,3,f +10583,3747b,1,4,f +10583,3795,1,2,f +10583,3823,47,1,f +10583,3829c01,14,2,f +10583,3853,4,4,f +10583,3854,15,8,f +10583,3856,2,8,f +10583,3861b,4,2,f +10583,3867,2,1,f +10583,3957a,15,2,f +10583,3960p01,15,1,f +10583,4070,14,2,f +10583,4070,4,2,f +10583,4079,14,2,f +10583,4175,14,2,f +10583,4286,1,2,f +10583,4287,1,4,f +10583,4495b,2,1,f +10583,4589,15,4,f +10583,6041,0,1,f +10583,6215,4,4,f +10583,6248,4,6,f +10583,6249,72,2,f +10584,200,0,1,f +10584,202,0,1,f +10584,2362ap53,0,1,f +10584,2362ap54,0,1,f +10584,2412b,0,6,f +10584,2419,1,5,f +10584,2428,0,1,f +10584,2431,1,2,f +10584,2431,0,3,f +10584,2432,0,5,f +10584,2433,0,2,f +10584,2444,1,2,f +10584,2445,0,5,f +10584,2445,1,1,f +10584,2446,0,1,f +10584,2446,15,2,f +10584,2447,36,2,f +10584,2447,0,1,f +10584,2450,1,2,f +10584,2453a,0,2,f +10584,2458,0,2,f +10584,2466,36,4,f +10584,2466,0,3,f +10584,3001,0,1,f +10584,3003,0,3,f +10584,3004,1,2,f +10584,3004,0,2,f +10584,3008,0,2,f +10584,3020,1,2,f +10584,3020,0,3,f +10584,3021,0,3,f +10584,3022,1,5,f +10584,3022,0,4,f +10584,3023,0,3,f +10584,3023,1,6,f +10584,3024,0,3,f +10584,3027,0,1,f +10584,3030,0,2,f +10584,3034,0,4,f +10584,3034,1,1,f +10584,3035,0,1,f +10584,3039,0,2,f +10584,3039p34,1,1,f +10584,3068b,0,3,f +10584,3069b,1,2,f +10584,3069bp07,0,1,f +10584,3069bp25,1,2,f +10584,3070b,36,2,f +10584,3185,0,4,f +10584,3298p53,0,1,f +10584,3315,0,2,f +10584,3460,0,4,f +10584,3597,0,2,f +10584,3622,0,1,f +10584,3623,0,2,f +10584,3626apr0001,14,3,f +10584,3660,0,4,f +10584,3665,0,2,f +10584,3666,1,4,f +10584,3710,0,4,f +10584,3710,1,2,f +10584,3794a,0,3,f +10584,3794a,1,4,f +10584,3795,0,2,f +10584,3832,0,2,f +10584,3838,0,3,f +10584,3839b,0,1,f +10584,3855,36,1,f +10584,3857,7,1,f +10584,3900,0,1,f +10584,3956,0,1,f +10584,3957a,0,5,f +10584,3957a,36,10,f +10584,3962a,0,1,f +10584,4032a,0,4,f +10584,4033,1,1,f +10584,4070,0,2,f +10584,4081b,0,1,f +10584,4085b,0,2,f +10584,4162,1,12,f +10584,4275b,1,1,f +10584,4276b,0,2,f +10584,4282,1,3,f +10584,4285a,0,1,f +10584,4288,0,1,f +10584,4476b,0,8,f +10584,4531,0,1,f +10584,4589,0,2,f +10584,4589,36,5,f +10584,4590,0,3,f +10584,4623,0,2,f +10584,4625,1,1,f +10584,4740,1,1,f +10584,4740,36,1,f +10584,4854,1,1,f +10584,4857,1,1,f +10584,4873,0,3,f +10584,6141,36,2,f +10584,970c00,0,1,f +10584,970x026,15,2,f +10584,973p52c01,0,1,f +10584,973p6bc01,15,2,f +10585,2441,0,1,f +10585,2446,4,1,f +10585,2447,47,1,f +10585,2877,71,2,f +10585,30028,0,4,f +10585,3022,71,1,f +10585,3022,25,1,f +10585,3062b,4,2,f +10585,3626bpr0754a,14,1,f +10585,3710,4,1,f +10585,3829c01,0,1,f +10585,3942c,25,1,f +10585,4079,72,1,f +10585,47457,15,1,f +10585,48336,71,2,f +10585,50947,4,2,f +10585,61068pr0002,4,1,f +10585,74967,0,4,f +10585,970c00,4,1,f +10585,973pr2274c01,27,1,f +10586,2420,2,4,f +10586,3004,2,3,f +10586,3020,19,3,f +10586,3020,2,6,f +10586,3022,2,2,f +10586,3023,19,2,f +10586,3023,2,6,f +10586,3024,15,4,f +10586,3039,2,3,f +10586,3068b,4,1,f +10586,3070b,4,1,t +10586,3070b,4,3,f +10586,3623,2,5,f +10586,3666,2,2,f +10586,3666,19,2,f +10586,3795,2,1,f +10586,4032a,14,2,f +10586,4085c,72,4,f +10586,41769,70,2,f +10586,41770,70,2,f +10586,48183,288,1,f +10586,48336,2,3,f +10586,54200,27,16,f +10586,54200,27,1,t +10586,54200,15,5,f +10586,54200,15,1,t +10586,60470a,2,3,f +10586,60478,19,1,f +10586,6141,0,1,t +10586,6141,0,2,f +10586,63868,71,1,f +10587,3004,0,3,f +10587,3020,0,4,f +10587,3021,7,1,f +10587,3022,0,2,f +10587,3023,7,3,f +10587,3023,0,2,f +10587,3027,0,1,f +10587,3031,0,1,f +10587,3035,14,1,f +10587,3403c01,0,1,f +10587,3626apr0001,14,2,f +10587,3633,14,5,f +10587,3651,7,1,f +10587,3660,0,4,f +10587,3665,0,8,f +10587,3666,0,3,f +10587,3705,0,1,f +10587,3710,0,3,f +10587,3710,14,1,f +10587,3713,7,2,f +10587,3795,8,1,f +10587,3795,0,3,f +10587,3832,0,1,f +10587,3833,4,2,f +10587,3837,8,1,f +10587,3841,8,1,f +10587,3959,7,2,f +10587,3960,7,1,f +10587,4006,0,1,f +10587,4022,0,2,f +10587,4023,0,2,f +10587,4083,14,2,f +10587,4085a,0,2,f +10587,4168,7,1,f +10587,4169,7,1,f +10587,4175,7,2,f +10587,4175,0,4,f +10587,4180c01,0,2,f +10587,4476a,0,4,f +10587,73092,0,2,f +10587,970c00,1,2,f +10587,973p26c01,1,2,f +10588,2723,294,2,f +10588,2780,0,1,t +10588,2780,0,4,f +10588,2905,0,2,f +10588,2905,1,4,f +10588,32017,1,4,f +10588,32056,71,2,f +10588,32062,0,3,f +10588,32073,71,4,f +10588,32123b,71,1,t +10588,32123b,71,8,f +10588,32138,0,1,f +10588,32140,0,2,f +10588,32184,0,1,f +10588,32250,71,2,f +10588,32271,0,3,f +10588,32278,0,2,f +10588,32310,1,1,f +10588,32316,0,2,f +10588,32523,1,1,f +10588,32523,0,2,f +10588,32525,0,2,f +10588,32526,1,1,f +10588,32556,71,7,f +10588,32558,4,2,f +10588,3705,0,4,f +10588,3706,0,3,f +10588,3713,71,1,t +10588,3713,71,11,f +10588,40490,0,1,f +10588,41669,1,2,f +10588,41669,294,2,f +10588,41677,71,2,f +10588,41677,1,2,f +10588,41753,72,1,f +10588,4274,71,1,f +10588,4274,71,1,t +10588,43857,0,2,f +10588,43857,71,1,f +10588,44292,71,1,f +10588,44293c01,7,1,f +10588,44294,71,1,f +10588,44309,0,1,f +10588,44352,1,1,f +10588,44353,1,1,f +10588,4519,71,4,f +10588,47712,1,1,f +10588,47713,1,1,f +10588,6536,0,4,f +10588,6558,0,9,f +10588,6628,0,2,f +10588,6629,1,1,f +10588,6632,0,2,f +10588,85545,1,2,f +10590,3002,15,5,f +10590,3003,15,3,f +10590,3004,0,2,f +10590,3004,15,8,f +10591,2335,15,4,f +10591,2357,19,2,f +10591,2412b,0,1,f +10591,2420,4,1,f +10591,2431,4,1,f +10591,2431,70,15,f +10591,2444,71,5,f +10591,2445,1,1,f +10591,2453a,19,2,f +10591,2454a,15,2,f +10591,2540,4,3,f +10591,2555,71,3,f +10591,2564,0,1,f +10591,2654,46,2,f +10591,2877,71,2,f +10591,298c02,14,1,f +10591,298c02,14,1,t +10591,3001,70,3,f +10591,30027b,71,2,f +10591,30028,0,2,f +10591,3003,70,1,f +10591,3004,19,2,f +10591,3004,70,2,f +10591,3007,71,1,f +10591,3008,19,1,f +10591,3009,4,3,f +10591,3010,19,6,f +10591,3010,4,4,f +10591,3010,71,1,f +10591,30136,72,2,f +10591,30137,70,4,f +10591,3020,15,2,f +10591,3020,70,2,f +10591,3020,0,2,f +10591,3020,72,1,f +10591,3021,15,1,f +10591,3021,4,1,f +10591,30218,15,2,f +10591,3022,25,2,f +10591,3022,71,1,f +10591,30228,72,1,f +10591,3023,70,7,f +10591,3023,15,6,f +10591,30236,71,1,f +10591,3027,72,2,f +10591,3030,70,2,f +10591,3031,4,1,f +10591,3032,72,1,f +10591,3032,70,2,f +10591,30338,70,4,f +10591,30340,15,2,f +10591,3035,71,1,f +10591,30367b,14,1,f +10591,30367b,4,2,f +10591,3037b,0,1,f +10591,3039,72,1,f +10591,3039,272,20,f +10591,3040b,72,10,f +10591,30414,72,2,f +10591,3045,272,10,f +10591,30562,4,2,f +10591,30562,41,2,f +10591,30562,15,2,f +10591,30565,72,8,f +10591,30602,71,1,f +10591,3062b,71,1,f +10591,3068b,70,1,f +10591,3068b,4,1,f +10591,3069b,4,2,f +10591,3139,0,2,f +10591,32039,71,4,f +10591,32064a,4,2,f +10591,3245b,4,1,f +10591,3623,15,2,f +10591,3666,0,2,f +10591,3673,71,5,f +10591,3673,71,3,t +10591,3679,71,1,f +10591,3680,0,1,f +10591,3684,4,2,f +10591,3701,19,12,f +10591,3709,14,1,f +10591,3710,4,2,f +10591,3710,72,4,f +10591,3710,73,2,f +10591,3747b,4,1,f +10591,3749,19,1,f +10591,3794a,1,2,f +10591,3853,0,2,f +10591,3854,73,4,f +10591,3856,2,4,f +10591,3861b,272,1,f +10591,3941,15,3,f +10591,3941,70,3,f +10591,3941,4,7,f +10591,3942c,25,2,f +10591,3943b,14,1,f +10591,3957a,71,1,f +10591,3961,14,1,f +10591,3962b,0,1,f +10591,4006,0,1,f +10591,4032a,4,2,f +10591,4032a,0,1,f +10591,4070,70,2,f +10591,4150pr0003,0,1,f +10591,41767,4,1,f +10591,41768,4,1,f +10591,41769,15,1,f +10591,41770,15,1,f +10591,41879a,70,1,f +10591,42289,0,1,f +10591,4274,1,1,t +10591,4274,1,1,f +10591,4282,72,1,f +10591,43898,80,2,f +10591,44294,71,1,f +10591,4460b,4,2,f +10591,4477,72,1,f +10591,4515,19,2,f +10591,4519,71,1,f +10591,4522,0,1,f +10591,4589,4,1,f +10591,4589,15,2,f +10591,4589,25,5,f +10591,4600,0,1,f +10591,4623,71,1,f +10591,4624,71,2,f +10591,4697b,71,1,t +10591,4697b,71,1,f +10591,48092,4,2,f +10591,48183,0,1,f +10591,48336,0,2,f +10591,4865a,33,2,f +10591,48729a,72,5,f +10591,4982stk01,9999,1,t +10591,50967,4,4,f +10591,54200,4,2,f +10591,54872pr03,14,1,f +10591,54873pr0001,78,1,f +10591,59349,19,2,f +10591,59443,4,3,f +10591,6003,72,2,f +10591,6019,4,17,f +10591,6019,19,2,f +10591,6020,71,1,f +10591,60339pr0001,19,1,f +10591,60340,4,1,f +10591,6041,0,1,f +10591,6111,4,1,f +10591,6112,70,1,f +10591,6126a,57,3,f +10591,6140,0,1,f +10591,6141,0,2,f +10591,6141,4,2,f +10591,6141,4,1,t +10591,6141,0,1,t +10591,6141,1,1,t +10591,6141,1,1,f +10591,6180,27,1,f +10591,6558,1,6,f +10591,6636,4,3,f +10591,6636,15,4,f +10591,6636,72,2,f +10591,75c17,1,3,f +10591,75c36,4,1,f +10591,75c63,1,2,f +10591,78c17,4,2,f +10591,970c00pr0108,78,1,f +10591,973c11,14,1,f +10591,973pr1259c01,78,1,f +10592,2431,15,1,f +10592,3005,70,1,t +10592,3005,70,6,f +10592,3010,1,1,f +10592,30136,70,2,f +10592,3038,15,2,f +10592,3069bpr0115,15,1,t +10592,3069bpr0115,15,1,f +10592,3700,1,2,f +10592,3795,15,1,f +10592,52107,0,1,f +10592,60594,15,1,f +10593,3003,73,1,f +10593,3004,4,7,f +10593,3021,14,1,f +10593,3021,15,1,f +10593,3022,70,1,f +10593,3023,14,2,f +10593,3023,15,8,f +10593,3023,2,4,f +10593,3023,4,5,f +10593,3024,4,3,f +10593,3024,2,4,f +10593,3024,15,5,f +10593,3031,71,1,f +10593,3040b,182,1,f +10593,3040b,2,4,f +10593,3069bpr0055,15,2,f +10593,3070b,72,6,f +10593,3070b,72,1,t +10593,33291,5,1,t +10593,33291,5,1,f +10593,3623,2,4,f +10593,3659,4,1,f +10593,3794b,14,1,f +10593,3794b,72,1,f +10593,3794b,15,3,f +10593,3941,70,1,f +10593,4589,72,1,f +10593,4589,2,1,f +10593,4589,70,1,f +10593,4733,72,2,f +10593,54200,182,1,t +10593,54200,2,10,f +10593,54200,2,1,t +10593,54200,182,1,f +10593,6141,46,1,f +10593,6141,46,1,t +10599,10884,27,3,f +10599,11211,71,2,f +10599,11254pr0002,0,1,f +10599,11458,72,2,f +10599,14719,71,16,f +10599,15068,19,2,f +10599,15573,15,2,f +10599,15712,71,3,f +10599,18927,15,3,f +10599,18927,4,4,f +10599,2412b,15,2,f +10599,2419,28,1,f +10599,2419,1,1,f +10599,2431,15,64,f +10599,2431,0,64,f +10599,2431,71,32,f +10599,2456,19,1,f +10599,2456,1,1,f +10599,2489,70,3,f +10599,2528,0,1,f +10599,2530,72,2,t +10599,2530,72,9,f +10599,2545pr0001,0,1,f +10599,2546pat0001,4,2,f +10599,2561,70,8,f +10599,2566,0,2,f +10599,3003,15,2,f +10599,3003,19,1,f +10599,3003,72,2,f +10599,3004,71,2,f +10599,3004,1,6,f +10599,3004,19,8,f +10599,3005,19,1,f +10599,3005,15,2,f +10599,3007,19,3,f +10599,3007,1,3,f +10599,3008,19,18,f +10599,3008,1,19,f +10599,3010,19,2,f +10599,3010,15,5,f +10599,30136,70,1,f +10599,30137,70,2,f +10599,30145,15,2,f +10599,30154,72,1,f +10599,30176,2,1,f +10599,3020,71,2,f +10599,3020,28,1,f +10599,3020,72,2,f +10599,3021,0,2,f +10599,3021,19,2,f +10599,3022,71,2,f +10599,3022,19,2,f +10599,3022,0,6,f +10599,3022,15,2,f +10599,3022,72,8,f +10599,3023,28,1,f +10599,3023,320,3,f +10599,3023,70,1,f +10599,3023,19,4,f +10599,3023,0,4,f +10599,3023,14,1,f +10599,3023,1,2,f +10599,3032,70,2,f +10599,3034,1,1,f +10599,3039,19,6,f +10599,3039,272,5,f +10599,3040b,15,6,f +10599,3062b,46,1,f +10599,3068bpr0240,19,3,f +10599,3069b,0,64,f +10599,3069b,15,65,f +10599,32016,70,3,f +10599,32062,4,2,f +10599,33061,34,1,f +10599,33085,14,1,f +10599,33320,2,1,f +10599,3622,19,4,f +10599,3622,1,4,f +10599,3626bpr0754a,14,4,f +10599,3626cpr0895,15,1,f +10599,3626cpr0920,14,4,f +10599,3626cpr0929,14,1,f +10599,3626cpr1091,14,3,f +10599,3626cpr1144,14,3,f +10599,3626cpr1557,14,1,f +10599,3626cpr1560,14,1,f +10599,3626cpr1580,14,1,f +10599,3626cpr1760,14,1,f +10599,3626cpr1762,14,1,f +10599,3660,71,2,f +10599,3660,70,2,f +10599,3665,15,2,f +10599,3665,71,4,f +10599,3665,70,4,f +10599,3673,71,14,f +10599,3673,71,1,t +10599,3679,71,2,f +10599,3680,0,2,f +10599,3700,71,32,f +10599,3710,15,1,f +10599,3710,28,3,f +10599,3710,14,1,f +10599,3795,70,1,f +10599,3937,71,2,f +10599,40234,71,1,f +10599,4032a,1,4,f +10599,4274,1,1,t +10599,4274,1,1,f +10599,4286,70,2,f +10599,4342,19,1,f +10599,4495b,4,2,f +10599,4590,72,4,f +10599,4740,0,1,f +10599,54200,19,5,f +10599,54200,15,1,t +10599,54200,19,2,t +10599,54200,15,4,f +10599,54383,1,1,f +10599,54384,1,1,f +10599,59363,226,1,f +10599,59900,0,1,f +10599,6003,28,2,f +10599,60897,0,4,f +10599,6091,70,2,f +10599,6091,71,1,t +10599,6091,71,2,f +10599,61252,1,1,f +10599,6134,0,2,f +10599,6141,14,3,f +10599,6141,14,1,t +10599,6141,4,1,t +10599,6141,4,8,f +10599,62810,70,4,f +10599,62810,0,3,f +10599,63965,70,2,f +10599,64644,297,1,f +10599,64644,71,2,f +10599,85984,71,2,f +10599,87580,15,32,f +10599,87580,0,32,f +10599,87580,320,2,f +10599,87991,19,1,f +10599,87991,0,1,f +10599,88072,19,1,f +10599,88289,308,2,f +10599,91405,1,2,f +10599,91405,19,2,f +10599,91405,15,4,f +10599,92438,19,2,f +10599,92438,1,2,f +10599,92582,71,2,f +10599,92593,72,16,f +10599,92947,70,2,f +10599,92950,72,2,f +10599,93273,71,4,f +10599,95228,40,1,f +10599,96874,25,1,t +10599,970c00,1,3,f +10599,970c00,0,5,f +10599,970c00,15,10,f +10599,970c00,4,2,f +10599,973pr1442c01,0,1,f +10599,973pr1449c01,0,1,f +10599,973pr1627c01,15,1,f +10599,973pr2822c01,15,3,f +10599,973pr2824c01,272,1,f +10599,973pr2825c01,1,8,f +10599,973pr2829c01,4,5,f +10599,98138,320,1,t +10599,98138,297,1,t +10599,98138,320,4,f +10599,98138,297,4,f +10599,98283,28,4,f +10599,98283,71,4,f +10599,98283,320,4,f +10601,2780,0,1,t +10601,2780,0,2,f +10601,32062,0,1,t +10601,32062,0,2,f +10601,32174,379,2,f +10601,32174,15,2,f +10601,32270,7,1,f +10601,32569,379,1,f +10601,32576,379,2,f +10601,32579,7,1,f +10601,3713,7,1,t +10601,3713,7,1,f +10601,3749,19,1,f +10601,3749,19,1,t +10601,41670,15,2,f +10601,43093,1,1,f +10601,43093,1,1,t +10601,44137,15,1,f +10601,44809,379,2,f +10601,44810,15,1,f +10601,44811,179,1,f +10601,44812,179,1,f +10601,4519,7,1,f +10602,14728c75,0,1,f +10602,2335p30,15,1,f +10602,2339,0,2,f +10602,2357,0,4,f +10602,2420,0,6,f +10602,2420,4,2,f +10602,2422,0,1,f +10602,2452,0,2,f +10602,251,0,1,f +10602,2525p31,15,1,f +10602,2527,4,1,f +10602,2528pb01,0,1,f +10602,2530,8,1,t +10602,2530,8,4,f +10602,2538,0,2,f +10602,2540,0,1,f +10602,2540,7,1,f +10602,2543,4,1,f +10602,2543,1,1,f +10602,2544,6,1,f +10602,2555,0,2,f +10602,2561,6,3,f +10602,2562,6,2,f +10602,3001,0,1,f +10602,3001,7,2,f +10602,3002,0,1,f +10602,3003,1,1,f +10602,3004,1,2,f +10602,3010,0,4,f +10602,3020,0,2,f +10602,3020,4,1,f +10602,3021,0,1,f +10602,3021,1,1,f +10602,3022,4,1,f +10602,3023,0,2,f +10602,3023,4,3,f +10602,3023,1,1,f +10602,3024,0,2,f +10602,3024,1,2,f +10602,3024,4,2,f +10602,3034,7,1,f +10602,3039,0,1,f +10602,3040b,0,4,f +10602,3040b,1,1,f +10602,3062b,0,1,f +10602,3062b,7,6,f +10602,3068bp30,15,1,f +10602,3184,0,4,f +10602,3403,0,1,f +10602,3404,0,1,f +10602,3623,0,6,f +10602,3626bp35,14,2,f +10602,3626bp46,14,1,f +10602,3626bp49,14,1,f +10602,3666,0,1,f +10602,3666,4,1,f +10602,3679,7,1,f +10602,3710,4,1,f +10602,3710,0,7,f +10602,3747a,1,3,f +10602,3747a,4,2,f +10602,3794a,4,1,f +10602,3795,7,1,f +10602,3795,0,1,f +10602,3849,0,2,f +10602,3957a,7,2,f +10602,4070,0,1,f +10602,4081b,0,2,f +10602,4085c,7,2,f +10602,4085c,0,3,f +10602,4088,4,1,f +10602,4276b,0,1,f +10602,4286,0,4,f +10602,4287,4,2,f +10602,4477,0,2,f +10602,4504,0,2,f +10602,4589,0,9,f +10602,4589,4,1,f +10602,4623,0,3,f +10602,4623,7,1,f +10602,4738a,6,1,f +10602,4739a,6,1,f +10602,57503,334,2,f +10602,57504,334,2,f +10602,57505,334,2,f +10602,57506,334,2,f +10602,6020,6,1,f +10602,6051c05,6,1,f +10602,6053c05,6,1,f +10602,6067,0,1,f +10602,6104,7,1,f +10602,70001pb02,0,1,f +10602,73590c01a,0,1,f +10602,84943,8,1,f +10602,87685,4,1,t +10602,87686,4,1,t +10602,87687,4,1,f +10602,970c00,1,1,f +10602,970c00,4,1,f +10602,970c00,7,1,f +10602,970c00,0,1,f +10602,973p31c01,14,1,f +10602,973p32c01,14,1,f +10602,973p34c01,1,1,f +10602,973p3ac01,14,1,f +10602,sailbb15,15,1,f +10602,sailbb16,15,1,f +10604,3001,1,1,f +10604,3001,4,3,f +10604,3003,15,2,f +10604,3003,14,2,f +10604,3003,0,2,f +10604,3003,4,3,f +10604,3003,1,2,f +10604,3004,47,1,f +10604,3004,14,3,f +10604,3004,1,2,f +10604,3004,15,1,f +10604,3004,4,4,f +10604,3004,0,3,f +10604,3005,14,2,f +10604,3007,4,1,f +10604,3020,4,1,f +10604,3021,4,2,f +10604,3137c01,0,2,f +10604,3641,0,4,f +10607,2291,2,1,f +10607,2300,4,1,f +10607,2302,15,1,f +10607,2302,4,1,f +10607,2302,14,1,f +10607,2312c02,2,1,f +10607,3011,14,5,f +10607,3011,1,5,f +10607,3011,2,4,f +10607,3011,0,1,f +10607,3011,4,5,f +10607,31110,1,1,f +10607,31110,2,1,f +10607,31110,4,1,f +10607,31110,14,1,f +10607,31111,1,1,f +10607,31111,14,1,f +10607,31111,4,1,f +10607,31111,2,1,f +10607,3437,0,1,f +10607,3437,2,7,f +10607,3437,4,7,f +10607,3437,1,7,f +10607,3437,15,1,f +10607,3437,14,8,f +10607,40666,2,1,f +10607,4066pb012,14,1,f +10607,4198,15,1,f +10607,4198,14,1,f +10608,3001a,47,13,f +10608,3001a,1,13,f +10608,3001a,4,13,f +10608,3001a,15,13,f +10608,3001a,14,13,f +10608,3001a,0,13,f +10610,2420,0,4,f +10610,2431,4,4,f +10610,2436,7,1,f +10610,2444,7,2,f +10610,2450,7,2,f +10610,2555,7,8,f +10610,298c02,7,1,t +10610,298c02,7,2,f +10610,3020,8,2,f +10610,3023,0,2,f +10610,30363,7,1,f +10610,30367b,15,1,f +10610,30367b,7,1,f +10610,30565,7,10,f +10610,3069b,33,2,f +10610,3070b,7,3,f +10610,3070b,7,1,t +10610,32001,4,2,f +10610,3666,7,2,f +10610,3705,0,1,f +10610,3710,8,2,f +10610,3933,7,1,f +10610,3934,7,1,f +10610,3941,7,2,f +10610,3941,1,1,f +10610,3961,7,1,f +10610,3961px1,7,1,f +10610,4032a,14,1,f +10610,4032a,1,2,f +10610,4150,7,1,f +10610,4150ps0,7,2,f +10610,4274,7,2,f +10610,4274,7,1,t +10610,43093,0,2,f +10610,4589,7,1,f +10610,4599a,7,1,f +10610,4733,8,3,f +10610,4740,15,1,f +10610,4740,8,1,f +10610,6141,1,1,t +10610,6141,1,2,f +10610,6141,0,1,t +10610,6141,0,4,f +10610,63965,15,4,f +10610,6541,7,1,f +10611,2413,15,2,f +10611,2420,72,2,f +10611,2431,15,1,f +10611,2431,72,1,f +10611,2437,40,1,f +10611,3003,0,1,f +10611,3005,72,1,f +10611,3010,15,2,f +10611,3020,15,3,f +10611,3020,4,1,f +10611,3021,71,1,f +10611,3021,72,4,f +10611,3022,71,1,f +10611,3023,0,5,f +10611,3024,72,2,f +10611,3024,15,1,f +10611,3039pc5,71,1,f +10611,3040b,15,2,f +10611,3068b,4,1,f +10611,3070b,14,1,f +10611,3070b,15,3,f +10611,3070b,15,1,t +10611,3070b,14,1,t +10611,3070b,4,1,f +10611,3070b,4,1,t +10611,3460,71,1,f +10611,3623,72,3,f +10611,3666,72,1,f +10611,3679,7,2,f +10611,3680,15,2,f +10611,3710,72,1,f +10611,3710,15,3,f +10611,3794a,15,1,f +10611,3795,71,2,f +10611,3937,71,1,f +10611,4079,6,3,f +10611,4162,72,1,f +10611,41769,15,4,f +10611,41770,15,4,f +10611,4282,71,1,f +10611,44301a,15,2,f +10611,44302a,15,2,f +10611,4449,0,1,f +10611,4449,73,1,f +10611,44571,15,4,f +10611,4477,72,1,f +10611,4477,15,1,f +10611,44822,15,4,f +10611,4854,71,2,f +10611,4855,71,2,f +10611,4856a,72,2,f +10611,4858,15,1,f +10611,4859,72,1,f +10611,4859,15,1,f +10611,4861,15,1,f +10611,4862,40,12,f +10611,4863,15,6,f +10611,4865a,15,2,f +10611,4865a,4,2,f +10611,4867,15,1,f +10611,4868b,15,2,f +10611,4869,71,2,f +10611,4870c02,71,3,f +10611,4871,71,1,f +10611,6134,0,1,f +10611,6141,47,1,t +10611,6141,15,1,t +10611,6141,36,1,t +10611,6141,34,1,f +10611,6141,47,1,f +10611,6141,15,2,f +10611,6141,34,1,t +10611,6141,36,1,f +10611,6636,15,2,f +10611,73983,72,4,f +10614,2412b,80,1,f +10614,2420,272,4,f +10614,2420,72,2,f +10614,2431,0,1,f +10614,2436,0,1,f +10614,30027b,15,4,f +10614,30028,0,4,f +10614,3010,272,2,f +10614,3020,14,1,f +10614,3020,72,2,f +10614,3021,272,1,f +10614,3022,272,2,f +10614,3023,36,2,f +10614,3031,72,1,f +10614,3068b,272,1,f +10614,3069b,272,4,f +10614,3710,272,3,f +10614,3788,272,1,f +10614,3795,0,1,f +10614,3839b,0,1,f +10614,44674,272,1,f +10614,54200,272,1,t +10614,54200,272,2,f +10614,6157,0,2,f +10614,8194stk01,9999,1,f +10614,88930,0,2,f +10616,3003,15,3,f +10616,3003,0,5,f +10616,3003,1,2,f +10616,3004,15,1,f +10616,3004,4,6,f +10616,3004,0,12,f +10616,3004,14,6,f +10616,3005,0,8,f +10616,3005,14,8,f +10616,3005,4,2,f +10616,3008,4,4,f +10616,3009,0,4,f +10616,3020,0,7,f +10616,3024,4,2,f +10616,3024,14,2,f +10616,3029,0,1,f +10616,3032,7,1,f +10616,3069b,15,2,f +10616,3069bpr0099,15,5,f +10616,3298,7,4,f +10616,3460,4,2,f +10616,3460,14,2,f +10616,3622,4,2,f +10616,3622,14,10,f +10616,3623,14,2,f +10616,3623,0,4,f +10616,3623,4,2,f +10616,3624,0,1,f +10616,3626bpr0001,14,1,f +10616,3633,0,2,f +10616,3660,0,8,f +10616,3666,0,2,f +10616,3710,7,2,f +10616,3795,0,5,f +10616,4022,0,2,f +10616,4023,0,2,f +10616,4032a,7,4,f +10616,4033,14,2,f +10616,4034,47,2,f +10616,4070,14,2,f +10616,4079,1,1,f +10616,4092,0,2,f +10616,4093b,0,1,f +10616,4162,0,4,f +10616,4180c01,0,4,f +10616,4181p02,14,1,f +10616,4182p02,14,1,f +10616,4183,47,2,f +10616,4509,7,4,f +10616,4510,0,8,f +10616,4511,4,4,f +10616,6141,36,2,f +10616,73092,0,2,f +10616,970c00,0,1,f +10616,973pb0035c01,4,1,f +10618,2878c01,0,2,f +10619,122c01,0,2,f +10619,195385,9999,1,t +10619,3004,0,2,f +10619,3004,15,37,f +10619,3005,4,2,f +10619,3005,0,1,f +10619,3005,15,16,f +10619,3008,15,5,f +10619,3009,15,10,f +10619,3009,0,6,f +10619,3009p18,15,1,f +10619,3010,0,1,f +10619,3010,15,10,f +10619,3020,15,3,f +10619,3020,4,1,f +10619,3021,0,5,f +10619,3021,15,2,f +10619,3022,15,1,f +10619,3022,0,3,f +10619,3023,4,4,f +10619,3023,0,9,f +10619,3023,15,12,f +10619,3024,36,3,f +10619,3024,7,6,f +10619,3024,0,9,f +10619,3024,33,3,f +10619,3024,15,4,f +10619,3024,46,6,f +10619,3030,0,1,f +10619,3033,0,3,f +10619,3034,0,1,f +10619,3035,0,4,f +10619,3039p34,15,2,f +10619,3040b,15,4,f +10619,3040b,0,2,f +10619,3040p02,4,1,f +10619,3062b,0,2,f +10619,3069b,15,2,f +10619,3144,7,1,f +10619,3185,1,8,f +10619,3298,0,1,f +10619,3456,0,1,f +10619,3460,7,6,f +10619,3460,15,5,f +10619,3461,7,1,f +10619,3462,0,1,f +10619,3464,4,2,f +10619,3480,7,1,f +10619,3481,7,1,f +10619,3622,15,11,f +10619,3624,15,1,f +10619,3626apr0001,14,4,f +10619,3641,0,6,f +10619,3660,0,2,f +10619,3660,15,5,f +10619,3660p01,15,1,f +10619,3665,15,5,f +10619,3665,0,2,f +10619,3666,1,2,f +10619,3666,0,5,f +10619,3666,7,2,f +10619,3679,7,1,f +10619,3680,0,1,f +10619,3710,15,11,f +10619,3710,0,2,f +10619,3710,4,1,f +10619,3741,2,2,f +10619,3742,4,1,t +10619,3742,14,3,f +10619,3742,4,3,f +10619,3742,14,1,t +10619,3788,15,2,f +10619,3794a,0,3,f +10619,3794a,15,3,f +10619,3821p02,15,1,f +10619,3822p02,15,1,f +10619,3823,47,3,f +10619,3829c01,0,1,f +10619,3832,15,4,f +10619,3832,0,1,f +10619,3842a,15,2,f +10619,3853,1,3,f +10619,3855a,47,3,f +10619,3861b,0,1,f +10619,3861b,1,1,f +10619,3900,15,2,f +10619,3901,0,1,f +10619,3937,0,1,f +10619,3938,0,1,f +10619,3939,33,4,f +10619,3942a,0,1,f +10619,3957a,0,1,f +10619,3957a,7,2,f +10619,3959,7,2,f +10619,3959,0,1,f +10619,3962a,0,1,f +10619,3963,7,1,f +10619,4070,15,6,f +10619,4070,7,2,f +10619,4079,4,1,f +10619,4079,0,2,f +10619,4081a,0,2,f +10619,4085a,15,4,f +10619,4175,0,2,f +10619,4212b,0,1,f +10619,4213,0,2,f +10619,4216,15,12,f +10619,4216,0,2,f +10619,4217,15,2,f +10619,4218,1,4,f +10619,4218,47,5,f +10619,4219,1,1,f +10619,4284,47,1,f +10619,4315,0,2,f +10619,4349,0,1,f +10619,4480c01,7,1,f +10619,4483p01,47,1,f +10619,6100p02,7,1,f +10619,6141,36,2,f +10619,6141,46,1,f +10619,6141,34,1,f +10619,970c00,1,1,f +10619,970c00,0,3,f +10619,973c02,4,1,f +10619,973pb0079c01,0,2,f +10619,973pb0091c01,0,1,f +10621,2489,72,1,f +10621,2570,135,1,f +10621,3021,72,1,f +10621,4006,0,1,f +10621,4522,0,1,f +10621,6019,71,1,f +10621,6091,72,1,f +10621,6141,0,1,t +10621,6141,0,2,f +10622,2412b,72,2,f +10622,2432,14,1,f +10622,2460,72,2,f +10622,2780,0,1,t +10622,2780,0,12,f +10622,3002,0,1,f +10622,3022,72,1,f +10622,3031,14,1,f +10622,3034,14,1,f +10622,32034,1,1,f +10622,32054,0,2,f +10622,32123b,14,1,t +10622,32123b,14,12,f +10622,32140,14,2,f +10622,32184,0,2,f +10622,32523,14,2,f +10622,32524,71,2,f +10622,3702,0,2,f +10622,3706,0,2,f +10622,3707,0,2,f +10622,3795,72,1,f +10622,3894,71,2,f +10622,3900,15,2,f +10622,3942c,15,2,f +10622,40490,0,2,f +10622,4162,71,1,f +10622,43093,1,6,f +10622,45677,14,1,f +10622,47715,72,1,f +10622,47755,72,1,f +10622,50950,72,2,f +10622,54200,47,2,f +10622,55978,0,2,f +10622,55982,0,2,f +10622,56145,0,2,f +10622,58090,0,2,f +10622,61069,14,2,f +10622,61073,0,1,f +10622,6141,36,2,f +10622,6141,36,1,t +10622,61768,89,1,f +10622,6558,1,2,f +10622,6587,72,2,f +10623,2420,4,2,f +10623,2431,4,2,f +10623,2436,4,2,f +10623,2456,4,2,f +10623,2525,4,1,f +10623,2730,71,2,f +10623,2780,0,2,f +10623,2780,0,1,t +10623,3001,14,2,f +10623,3003,14,1,f +10623,3004,19,2,f +10623,3004pr0007,73,1,f +10623,3008,0,1,f +10623,3009,4,2,f +10623,3009,71,1,f +10623,3010,71,1,f +10623,3020,1,2,f +10623,3020,71,1,f +10623,3021,72,1,f +10623,3022,4,1,f +10623,3022,0,5,f +10623,3023,25,2,f +10623,3023,73,4,f +10623,3023,4,4,f +10623,3023,0,9,f +10623,3024,4,2,f +10623,3024,25,2,f +10623,3024,73,1,f +10623,3032,4,2,f +10623,3033,4,1,f +10623,3034,0,1,f +10623,3034,4,6,f +10623,3035,0,2,f +10623,30383,0,2,f +10623,30414,15,2,f +10623,3068b,1,1,f +10623,3068b,4,2,f +10623,3070b,4,1,t +10623,3070b,4,2,f +10623,32064b,0,4,f +10623,32123b,14,2,f +10623,32123b,14,1,t +10623,32140,14,2,f +10623,3623,4,2,f +10623,3660,25,4,f +10623,3660,4,2,f +10623,3665,72,2,f +10623,3666,14,2,f +10623,3678bpr0014a,73,1,f +10623,3705,0,2,f +10623,3706,0,1,f +10623,3710,0,4,f +10623,3710,25,12,f +10623,3713,71,2,f +10623,3713,71,1,t +10623,3737,0,1,f +10623,3794b,73,1,f +10623,3795,71,1,f +10623,3795,4,1,f +10623,3849,0,1,f +10623,3895,0,4,f +10623,4085c,0,1,f +10623,4162,4,1,f +10623,41769,4,2,f +10623,41770,4,2,f +10623,4287,4,2,f +10623,4287,0,6,f +10623,44674,323,1,f +10623,4477,4,5,f +10623,4510,4,1,f +10623,4600,71,1,f +10623,48336,19,1,f +10623,50951,0,2,f +10623,52031,4,1,f +10623,54200,323,2,f +10623,55978,0,4,f +10623,56145,15,4,f +10623,60470a,14,1,f +10623,60471,71,2,f +10623,60485,71,1,f +10623,6081,4,1,f +10623,6091,73,2,f +10623,6091,4,6,f +10623,6111,72,2,f +10623,61409,27,2,f +10623,6141,0,4,f +10623,6141,15,8,f +10623,6141,0,1,t +10623,6141,15,2,t +10623,61678,4,2,f +10623,61678,25,2,f +10623,6179,4,2,f +10623,6179pr0006a,4,1,f +10623,6179pr0007a,4,1,f +10623,6180,4,1,f +10623,62361,25,2,f +10623,62361,4,2,f +10623,62701,297,4,f +10623,63864,4,2,f +10623,63864,25,2,f +10623,6564,4,2,f +10623,6565,4,2,f +10623,6636,4,2,f +10623,85970,0,4,f +10623,85970,4,4,f +10623,87079,4,2,f +10623,87087,71,2,f +10623,93274,4,1,f +10623,93594,179,2,f +10623,93606,4,2,f +10623,93606pr0001,4,1,f +10623,93606pr0002,4,1,f +10627,2348b,41,1,f +10627,2349a,15,1,f +10627,2357,14,6,f +10627,2412b,4,1,f +10627,2412b,7,2,f +10627,2412b,0,1,f +10627,2420,7,1,f +10627,2431,14,1,f +10627,2435,2,1,f +10627,2436,7,1,f +10627,2437,41,2,f +10627,2445,0,1,f +10627,2513,14,1,f +10627,2540,7,1,f +10627,298c02,15,3,f +10627,3004,14,3,f +10627,3004,1,2,f +10627,3005,1,2,f +10627,3005,14,2,f +10627,3009,14,5,f +10627,3020,14,2,f +10627,3020,0,2,f +10627,3022,7,3,f +10627,3023,15,1,f +10627,3023,1,4,f +10627,3023,7,4,f +10627,3024,47,4,f +10627,3024,36,8,f +10627,3024,14,2,f +10627,3029,1,1,f +10627,3029,2,2,f +10627,3032,14,1,f +10627,3039p23,15,1,f +10627,3040b,14,2,f +10627,3062b,4,1,f +10627,3068b,1,1,f +10627,3068bp06,15,1,f +10627,3069b,7,2,f +10627,3069b,14,2,f +10627,3069bp09,15,1,f +10627,3070b,46,4,f +10627,3622,14,2,f +10627,3623,14,2,f +10627,3626bp04,14,3,f +10627,3641,0,10,f +10627,3665,14,2,f +10627,3710,14,6,f +10627,3710,1,2,f +10627,3710,0,2,f +10627,3741,2,1,f +10627,3742,4,1,t +10627,3742,4,3,f +10627,3788,14,1,f +10627,3788,1,2,f +10627,3795,0,1,f +10627,3821,1,1,f +10627,3821,14,2,f +10627,3822,1,1,f +10627,3822,14,2,f +10627,3823,41,3,f +10627,3829c01,15,1,f +10627,3829c01,1,2,f +10627,3836,6,1,f +10627,3901,0,1,f +10627,3937,7,1,f +10627,3938,0,1,f +10627,3941,15,1,f +10627,3958,14,1,f +10627,3962a,0,1,f +10627,4032a,15,1,f +10627,4032a,2,1,f +10627,4032a,4,1,f +10627,4070,1,6,f +10627,4070,14,6,f +10627,4081b,14,2,f +10627,4085c,7,6,f +10627,4085c,14,4,f +10627,4162,7,2,f +10627,4211,14,1,f +10627,4212b,0,1,f +10627,4212b,14,1,f +10627,4213,14,2,f +10627,4275b,14,2,f +10627,4282,0,1,f +10627,4315,15,1,f +10627,4315,14,1,f +10627,4449,7,1,f +10627,4485,4,2,f +10627,4504,14,2,f +10627,4522,0,1,f +10627,4531,14,2,f +10627,4589,15,2,f +10627,4599a,4,2,f +10627,4600,7,2,f +10627,4624,15,10,f +10627,4625,14,1,f +10627,4629c01,1,1,f +10627,4864a,47,4,f +10627,4865a,1,2,f +10627,4865a,14,6,f +10627,55298,8,1,f +10627,56823,0,1,f +10627,6014a,7,4,f +10627,6015,0,4,f +10627,6141,36,2,f +10627,6141,7,4,f +10627,6141,57,6,f +10627,6157,0,5,f +10627,6636,14,2,f +10627,6636,7,2,f +10627,73037,14,1,f +10627,970c00,7,1,f +10627,970c00,1,2,f +10627,973c11,0,1,f +10627,973pr1245c01,1,2,f +10628,2514c01,0,1,f +10628,4514c01,0,1,f +10628,45573,72,6,f +10628,45574,71,8,f +10628,45575,71,4,t +10628,45575,71,20,f +10628,45793c01,0,4,f +10628,45799,71,1,t +10628,45799,71,4,f +10628,45803,4,1,f +10628,49815,4,1,f +10628,49816,4,1,f +10628,49817,4,1,f +10628,49818,4,1,f +10628,49821,4,1,f +10628,49822,4,1,f +10628,49823,135,1,f +10628,49828,135,2,f +10628,49829,135,1,f +10628,49830,71,2,f +10628,78c11,179,2,f +10628,78c18,179,2,f +10628,rb00178,0,2,f +10628,x1220,89,1,f +10629,2335px1,0,1,f +10629,3001,4,1,f +10629,3004,7,1,f +10629,30136,19,3,f +10629,30173a,0,1,f +10629,30174,8,1,f +10629,30175,0,1,f +10629,30237a,8,1,f +10629,3032,8,1,f +10629,3039,1,1,f +10629,3062b,1,2,f +10629,3626bpx6,14,1,f +10629,3957a,7,1,f +10629,529,334,1,t +10629,529,334,1,f +10629,6126a,57,2,f +10629,970c11pb02a,0,1,f +10629,973pn0c01,15,1,f +10631,3004,4,1,f +10631,3005pe1,15,2,f +10631,3021,0,2,f +10631,3039,15,1,f +10631,3039,4,1,f +10631,3040b,4,2,f +10631,3660,15,1,f +10632,12592,0,2,f +10632,12758,14,1,f +10632,14721,4,1,f +10632,16265,179,1,f +10632,18720,15,1,f +10632,19010,4,1,f +10632,19285,4,1,f +10632,20302,25,2,f +10632,3011,1,2,f +10632,3437,1,2,f +10632,3437,322,2,f +10632,40666,14,2,f +10632,47202bpr0007,25,1,f +10632,58498,14,1,f +10632,63017,14,1,f +10632,6446,484,1,f +10632,6474,14,1,f +10632,75121,73,1,f +10632,76371,322,2,f +10632,76371,1,2,f +10632,98465,1,1,f +10633,10201,0,2,f +10633,11477,272,4,f +10633,14417,72,1,f +10633,14418,71,2,f +10633,14704,71,1,f +10633,15064,0,2,f +10633,15070,15,2,f +10633,15209,15,2,f +10633,15456,0,2,f +10633,3020,0,3,f +10633,3021,71,2,f +10633,3039,272,4,f +10633,3626cpr1001,1000,1,f +10633,3660,0,1,f +10633,4032a,0,1,f +10633,4081b,72,2,f +10633,41334,0,1,f +10633,43713,0,1,f +10633,51739,272,2,f +10633,54200,272,1,t +10633,54200,323,1,t +10633,54200,323,6,f +10633,54200,272,2,f +10633,60478,0,2,f +10633,60897,0,2,f +10633,87580,272,1,f +10633,93606,272,1,f +10633,99780,0,2,f +10634,2431pa0,19,1,f +10634,30115,0,1,f +10634,30115,4,1,f +10634,30148,0,1,f +10634,30150,6,1,f +10634,30151a,47,2,f +10634,30152pat0001,0,1,f +10634,30153,36,2,f +10634,30154,0,1,f +10634,30158,6,1,f +10634,30161pa1,47,1,f +10634,30162,0,1,f +10634,30167,6,1,f +10634,30168px1,14,1,f +10634,30169,0,2,f +10634,30170,0,1,f +10634,30171,6,1,f +10634,30172,15,1,f +10634,3069bpa0,19,1,f +10634,3069bpa1,0,1,f +10634,3069bpa4,15,1,f +10634,4032a,2,1,f +10634,4032a,14,1,f +10634,4625,7,1,f +10635,2356,0,1,f +10635,2357,378,3,f +10635,2357,2,2,f +10635,2420,15,3,f +10635,2420,484,1,f +10635,2420,2,1,f +10635,2420,378,1,f +10635,2431,27,2,f +10635,2431,2,1,f +10635,2431,484,1,f +10635,2453a,18,2,f +10635,2453a,8,5,f +10635,2454a,18,1,f +10635,2454a,1,2,f +10635,2456,7,2,f +10635,2456,18,1,f +10635,2456,19,1,f +10635,2456,14,1,f +10635,2456,6,1,f +10635,2465,2,1,f +10635,2465,0,1,f +10635,3001,379,1,f +10635,3001,7,2,f +10635,3001,2,4,f +10635,3001,14,4,f +10635,3001,0,4,f +10635,3001,4,2,f +10635,3001,25,4,f +10635,3001,3,1,f +10635,3001,15,4,f +10635,3001,18,2,f +10635,3001,1,4,f +10635,3002,0,4,f +10635,3002,14,6,f +10635,3002,2,2,f +10635,3002,1,4,f +10635,3002,19,3,f +10635,3002,7,2,f +10635,3002,320,3,f +10635,3002,25,2,f +10635,3002,15,6,f +10635,3002,379,2,f +10635,3002,4,4,f +10635,3002,378,4,f +10635,3002,6,1,f +10635,3003,36,8,f +10635,3003,25,6,f +10635,3003,5,1,f +10635,3003,484,1,f +10635,3003,378,1,f +10635,3003,4,10,f +10635,3003,2,10,f +10635,3003,7,56,f +10635,3003,15,12,f +10635,3003,14,10,f +10635,3003,3,4,f +10635,3003,1,10,f +10635,3003,33,8,f +10635,3003,0,10,f +10635,3004,15,16,f +10635,3004,7,8,f +10635,3004,1,14,f +10635,3004,3,2,f +10635,3004,0,16,f +10635,3004,2,12,f +10635,3004,14,16,f +10635,3004,4,12,f +10635,3004,25,8,f +10635,3005,484,2,f +10635,3005,36,2,f +10635,3005,2,6,f +10635,3005,15,14,f +10635,3005,1,16,f +10635,3005,118,1,f +10635,3005,6,9,f +10635,3005,0,16,f +10635,3005,4,16,f +10635,3005,25,2,f +10635,3005pe1,14,2,f +10635,3005pe2,8,1,f +10635,3005pe3,8,1,f +10635,3005px2,14,2,f +10635,3006,19,1,f +10635,3006,0,2,f +10635,3007,2,1,f +10635,3007,19,1,f +10635,3008,19,3,f +10635,3008,484,2,f +10635,3008,7,2,f +10635,3008,27,1,f +10635,3009,2,15,f +10635,3009,1,2,f +10635,3009,484,1,f +10635,3010,379,2,f +10635,3010,25,2,f +10635,3010,22,5,f +10635,3010,378,1,f +10635,3010,74,2,f +10635,3010,2,2,f +10635,3010,0,2,f +10635,3010,14,4,f +10635,3010,15,2,f +10635,3010p01,14,1,f +10635,30144,4,2,f +10635,30145,9,1,f +10635,3020,484,1,f +10635,3020,15,2,f +10635,3020,7,2,f +10635,3020,0,2,f +10635,3020,13,2,f +10635,3020,25,4,f +10635,3021,484,1,f +10635,3021,15,2,f +10635,3021,25,2,f +10635,3021,1,2,f +10635,3022,378,2,f +10635,3022,1,2,f +10635,3022,0,2,f +10635,3022,15,2,f +10635,3022,26,1,f +10635,3031,1,3,f +10635,3031,6,1,f +10635,3032,0,5,f +10635,3034,378,1,f +10635,3034,27,1,f +10635,3034,1,1,f +10635,3034,25,3,f +10635,30363,7,1,f +10635,30363,14,2,f +10635,3037,1,1,f +10635,3037,6,1,f +10635,3038,8,5,f +10635,3039,73,4,f +10635,3039,272,1,f +10635,3039,33,2,f +10635,3039,36,2,f +10635,3039,320,2,f +10635,3040b,42,1,f +10635,3040b,7,2,f +10635,3040b,25,4,f +10635,3040b,2,2,f +10635,3040b,14,3,f +10635,3041,4,1,f +10635,3043,4,2,f +10635,3044c,0,3,f +10635,3046a,4,2,f +10635,3062b,47,2,f +10635,3062b,73,3,f +10635,3065,36,6,f +10635,3065,33,6,f +10635,3298,3,1,f +10635,3298,272,2,f +10635,3298,7,8,f +10635,3300,1,2,f +10635,3300,4,2,f +10635,3455,1,2,f +10635,3622,462,1,f +10635,3622,25,1,f +10635,3622,45,1,f +10635,3622,484,3,f +10635,3622,27,1,f +10635,3623,378,1,f +10635,3665,14,2,f +10635,3665,2,2,f +10635,3665,7,2,f +10635,3665,25,4,f +10635,3666,378,1,f +10635,3666,4,5,f +10635,3666,25,2,f +10635,3666,2,1,f +10635,3666,14,5,f +10635,3675,1,1,f +10635,3710,378,1,f +10635,3710,484,2,f +10635,3747b,3,1,f +10635,3747b,0,2,f +10635,3795,25,1,f +10635,3795,22,1,f +10635,3795,14,2,f +10635,3832,25,1,f +10635,3832,14,3,f +10635,3941,1,2,f +10635,3942c,15,3,f +10635,3957a,1,1,f +10635,4032a,14,1,f +10635,4161,0,1,f +10635,4286,25,3,f +10635,4286,335,3,f +10635,4495b,14,1,f +10635,4589,1,2,f +10635,4727,2,2,f +10635,4728,1,2,f +10635,4728,4,2,f +10635,6111,6,1,f +10635,6112,4,1,f +10635,6215,14,2,f +10635,6215,2,1,f +10635,6215,8,1,f +10635,6216,4,1,f +10635,6636,27,2,f +10637,606p01,7,2,f +10638,2780,0,1,t +10638,2780,0,6,f +10638,2994,15,3,f +10638,32015,7,2,f +10638,32039,7,2,f +10638,32039,0,4,f +10638,32062,0,1,f +10638,32068,0,1,f +10638,32073,0,1,f +10638,32126,7,2,f +10638,32138,0,1,f +10638,32138,15,1,f +10638,32140,2,2,f +10638,32175,0,2,f +10638,32249,7,2,f +10638,32250,2,2,f +10638,32291,2,2,f +10638,32348,2,2,f +10638,3705,0,3,f +10638,3706,0,2,f +10638,3707,0,1,f +10638,3713,7,2,f +10638,3713,7,1,t +10638,3749,7,2,f +10638,4519,0,3,f +10638,6536,7,2,f +10638,6558,0,1,f +10638,6578,0,3,f +10638,6632,2,2,f +10638,78c03,2,2,f +10639,3068bpr0002,272,1,f +10639,3626bpr0697,14,1,f +10639,87995,0,1,f +10639,88646,0,1,f +10639,970c00,15,1,f +10639,973pr1659c01,15,1,f +10640,11214,72,1,f +10640,19049,179,1,f +10640,24187,41,1,f +10640,24189,148,1,f +10640,24190,0,1,f +10640,24191,179,1,f +10640,24193pr0004,179,1,f +10640,2780,0,7,f +10640,32034,0,2,f +10640,32062,4,3,f +10640,32072,0,1,f +10640,32270,0,1,f +10640,42003,10,2,f +10640,43093,1,4,f +10640,44294,14,1,f +10640,4519,14,3,f +10640,50923,72,2,f +10640,64272,179,4,f +10640,64276,0,4,f +10640,6558,1,1,f +10640,74261,0,4,f +10640,87083,72,1,f +10640,90609,0,2,f +10640,90617,72,2,f +10640,90640,10,4,f +10640,90661,179,2,f +10640,93571,72,4,f +10640,93575,179,2,f +10640,98137,179,2,f +10641,2446,15,1,f +10641,2447,41,1,f +10641,298c02,15,1,f +10641,3024,36,1,f +10641,3024,46,1,f +10641,3464,47,2,f +10641,3626apr0001,14,6,f +10641,3641,0,2,f +10641,3834,15,1,f +10641,3835,7,1,f +10641,3900,15,2,f +10641,3901,0,1,f +10641,4006,0,1,f +10641,4449,0,1,f +10641,4480c01,15,1,f +10641,4483p01,47,1,f +10641,4485,1,1,f +10641,4530,0,1,f +10641,4530,6,1,f +10641,6141,47,2,f +10641,970c00,15,1,f +10641,970c00,1,1,f +10641,970c00,4,2,f +10641,970c00,0,2,f +10641,973p16c01,15,1,f +10641,973p21c01,0,1,f +10641,973p25c01,15,1,f +10641,973pb0079c01,0,1,f +10641,973pb0203c01,15,1,f +10641,973px62c02,15,1,f +10642,10197,72,2,f +10642,11089,15,2,f +10642,11090,297,2,f +10642,11100,15,2,f +10642,11100,297,2,f +10642,11203,15,4,f +10642,11214,72,4,f +10642,11215,0,1,f +10642,11408pr0014c01,84,1,f +10642,11437,297,1,f +10642,11458,70,4,f +10642,11477,322,1,f +10642,11477,27,1,f +10642,11477,30,7,f +10642,11477,191,2,f +10642,11816pr0027,78,1,f +10642,11818pr0010,84,1,f +10642,11833,191,1,f +10642,11833,272,1,f +10642,11833,47,1,f +10642,11833,30,1,f +10642,11833,27,1,f +10642,13547,323,4,f +10642,13547,71,2,f +10642,13965,19,6,f +10642,13965,70,1,f +10642,14417,72,5,f +10642,14419,72,3,f +10642,14704,71,10,f +10642,14707,71,2,f +10642,14769,297,1,f +10642,15068,30,14,f +10642,15068,322,1,f +10642,15070,297,3,f +10642,15070,15,4,f +10642,15070,27,4,f +10642,15208,30,4,f +10642,15208,15,4,f +10642,15571,297,1,f +10642,15573,297,4,f +10642,15573,27,3,f +10642,15712,70,2,f +10642,15712,297,3,f +10642,16577,19,1,f +10642,18646,27,2,f +10642,18649,71,1,f +10642,18653,272,2,f +10642,18671,72,1,f +10642,18674,15,5,f +10642,19119,2,1,f +10642,19203pr0003,321,1,f +10642,19206pr0001,31,1,f +10642,20379pr0003,85,1,f +10642,20482,47,3,f +10642,20482,47,1,t +10642,22667,26,2,f +10642,22667,26,1,t +10642,22890,72,4,f +10642,22961,308,2,f +10642,2343,47,1,f +10642,2357,72,2,f +10642,23969,41,1,f +10642,23989,323,2,f +10642,24130,33,1,f +10642,24132,33,1,f +10642,2417,26,1,f +10642,24196pr0004,30,1,f +10642,24199,323,1,f +10642,2420,70,4,f +10642,2420,30,2,f +10642,24201,323,4,f +10642,24201,71,2,f +10642,2423,5,1,f +10642,2431,27,2,f +10642,2431,70,3,f +10642,2431,30,1,f +10642,2432,70,2,f +10642,2453b,72,2,f +10642,2453b,19,2,f +10642,2456,272,1,f +10642,26090pr0005,321,1,f +10642,2654,30,2,f +10642,2736,71,1,f +10642,2780,0,5,f +10642,2780,0,2,t +10642,3002,15,1,f +10642,3003,72,1,f +10642,3004,30,2,f +10642,3005,30,2,f +10642,3005,272,2,f +10642,3005,47,2,f +10642,3005,41,4,f +10642,3009,72,1,f +10642,3010,272,3,f +10642,30136,31,3,f +10642,30137,70,2,f +10642,30153,52,7,f +10642,30154,72,1,f +10642,3020,322,3,f +10642,3020,272,2,f +10642,3020,30,3,f +10642,3020,323,3,f +10642,3020,27,1,f +10642,3021,72,4,f +10642,3022,14,4,f +10642,3022,72,4,f +10642,3023,30,10,f +10642,3023,27,2,f +10642,3023,72,2,f +10642,3023,15,12,f +10642,3023,323,9,f +10642,3023,14,2,f +10642,3023,70,6,f +10642,3024,30,6,f +10642,3024,297,2,f +10642,3024,297,1,t +10642,3024,30,2,t +10642,3031,70,1,f +10642,3034,70,1,f +10642,30357,19,1,f +10642,30357,71,1,f +10642,30357,191,1,f +10642,30374,0,2,f +10642,30383,71,2,f +10642,3040b,272,6,f +10642,3040b,72,6,f +10642,30414,15,4,f +10642,30414,19,1,f +10642,30553,71,2,f +10642,3062b,70,2,f +10642,3062b,19,2,f +10642,3065,41,4,f +10642,3065,47,1,f +10642,3068b,15,1,f +10642,3068b,70,2,f +10642,3068b,27,1,f +10642,3069b,191,2,f +10642,3069b,30,3,f +10642,32013,297,4,f +10642,32015,70,1,f +10642,32062,4,1,f +10642,32291,71,2,f +10642,3245b,72,1,f +10642,33183,70,1,t +10642,33183,70,2,f +10642,33291,26,5,f +10642,33291,26,2,t +10642,33291,5,5,f +10642,33291,5,1,t +10642,3623,72,3,f +10642,3623,15,4,f +10642,3665,70,1,f +10642,3666,27,2,f +10642,3666,323,2,f +10642,3700,72,1,f +10642,3710,71,4,f +10642,3710,70,6,f +10642,3710,30,5,f +10642,3742,29,4,f +10642,3747b,72,2,f +10642,3795,27,2,f +10642,3795,322,3,f +10642,3795,15,1,f +10642,3795,70,1,f +10642,3832,19,1,f +10642,3937,72,1,f +10642,3937,15,1,f +10642,3942c,15,1,f +10642,4032a,15,1,f +10642,4081b,19,2,f +10642,41532,0,2,f +10642,4162,26,2,f +10642,42022,31,1,f +10642,4274,71,1,t +10642,4274,71,1,f +10642,4286,31,4,f +10642,43713,323,1,f +10642,43722,72,1,f +10642,43723,72,1,f +10642,43892,297,1,f +10642,44302a,71,2,f +10642,44728,19,2,f +10642,4490,72,1,f +10642,4523,27,1,f +10642,46212,41,2,f +10642,4733,15,1,f +10642,4740,129,2,f +10642,47456,30,1,f +10642,4865b,41,6,f +10642,50950,272,2,f +10642,50950,31,2,f +10642,51342pat0004,30,2,f +10642,53451,297,1,t +10642,53451,297,2,f +10642,54200,297,1,t +10642,54200,47,9,f +10642,54200,272,2,f +10642,54200,47,2,t +10642,54200,297,2,f +10642,54200,272,1,t +10642,59443,70,1,f +10642,59900,46,1,f +10642,6003,27,2,f +10642,60474,322,1,f +10642,60478,71,2,f +10642,60478,70,1,f +10642,60897,19,2,f +10642,6091,70,4,f +10642,6091,30,4,f +10642,61252,297,3,f +10642,6134,0,2,f +10642,6141,297,2,f +10642,6141,52,3,f +10642,6141,52,1,t +10642,6141,27,1,t +10642,6141,35,4,f +10642,6141,27,2,f +10642,6141,35,2,t +10642,64225,30,2,f +10642,64644,297,3,f +10642,64647,15,1,f +10642,64647,182,3,f +10642,64647,182,1,t +10642,64647,15,1,t +10642,64648,25,2,f +10642,6636,70,2,f +10642,85080,15,4,f +10642,85080,19,2,f +10642,85984,30,1,f +10642,87079,26,2,f +10642,87079,322,2,f +10642,87087,0,4,f +10642,87087,19,2,f +10642,87580,85,1,f +10642,88072,0,1,f +10642,88704,0,1,f +10642,89522,297,1,t +10642,89522,297,1,f +10642,92280,71,2,f +10642,92338,297,1,t +10642,92338,297,1,f +10642,92438,322,1,f +10642,92456pr0091c01,78,1,f +10642,92819pr0008c01,148,1,f +10642,92946,72,2,f +10642,93095,70,2,f +10642,93273,30,4,f +10642,96874,25,1,t +10642,98138,52,1,t +10642,98138,71,3,f +10642,98138,15,3,f +10642,98138,29,1,t +10642,98138,71,1,t +10642,98138,29,2,f +10642,98138,52,4,f +10642,98138,15,1,t +10642,98138,33,1,t +10642,98138,33,1,f +10642,98138pr0031,36,1,t +10642,98138pr0031,36,1,f +10642,98138pr0032,33,1,t +10642,98138pr0032,33,2,f +10642,98138pr0033,34,1,f +10642,98138pr0033,34,1,t +10642,98138pr0034,52,2,f +10642,98138pr0034,52,1,t +10642,98138pr0048,70,1,t +10642,98138pr0048,70,4,f +10642,98138pr0050,19,1,f +10642,98138pr0050,19,1,t +10642,98138pr0051,297,1,f +10642,98138pr0051,297,1,t +10642,99206,15,1,f +10642,99207,71,2,f +10642,99781,71,4,f +10643,2357,70,8,f +10643,2357,72,4,f +10643,2555,4,2,f +10643,3001,70,6,f +10643,3001,72,8,f +10643,3003,72,6,f +10643,3003,70,4,f +10643,3005,72,4,f +10643,3031,72,1,f +10643,3031,70,2,f +10643,3069b,25,2,f +10643,3069b,70,1,f +10643,3070b,14,9,f +10643,3070b,1,9,f +10643,3070b,14,1,t +10643,3070b,15,9,f +10643,3070b,4,9,f +10643,3070b,4,1,t +10643,3070b,15,1,t +10643,3070b,1,1,t +10643,32054,4,1,f +10643,3460,72,2,f +10643,3666,72,2,f +10643,3666,70,2,f +10643,3700,70,4,f +10643,3701,70,4,f +10643,3737,0,1,f +10643,3795,70,2,f +10643,3849,0,1,f +10643,3941,57,1,f +10643,4006,0,2,f +10643,40379,0,1,f +10643,4589,182,12,f +10643,4589,0,1,f +10643,4733,0,2,f +10643,48729b,0,1,t +10643,48729b,0,1,f +10643,49668,0,2,f +10643,53451,4,3,f +10643,53451,4,1,t +10643,6133,0,2,f +10643,6141,4,1,f +10643,6141,4,1,t +10643,64776pat0001,0,1,f +10643,85863pr0001,15,1,f +10643,85863pr0002,1,1,f +10643,85863pr0003,14,1,f +10643,85863pr0004,4,1,f +10646,11153,0,2,f +10646,15573,0,1,f +10646,18649,0,1,f +10646,2877,0,4,f +10646,3004,15,2,f +10646,3022,0,1,f +10646,3023,0,1,f +10646,44728,0,2,f +10646,4733,0,1,f +10646,49668,191,5,f +10646,54200,0,8,f +10646,6091,15,2,f +10646,6141,0,4,f +10646,63868,0,2,f +10646,98138,71,1,f +10646,98138pr0026,15,2,f +10648,3001a,1,4,f +10648,3001a,14,2,f +10648,3003,1,1,f +10648,3004,14,2,f +10648,3005,14,4,f +10648,3005,1,2,f +10648,3007,1,2,f +10648,3008,14,2,f +10648,3009,1,2,f +10648,3010,1,4,f +10648,3010,14,1,f +10648,3020,1,9,f +10648,3021,1,6,f +10648,3021,14,4,f +10648,3022,1,3,f +10648,3023,14,11,f +10648,3023,47,2,f +10648,3023,1,25,f +10648,3024,1,15,f +10648,3024,47,2,f +10648,3024,14,2,f +10648,3029,1,2,f +10648,3030,1,2,f +10648,3031,1,3,f +10648,3032,14,1,f +10648,3032,1,1,f +10648,3034,1,11,f +10648,3036,1,1,f +10648,3037,14,2,f +10648,3037,1,2,f +10648,3039,14,1,f +10648,3062a,14,12,f +10648,3062a,1,3,f +10648,3063b,14,4,f +10648,3068b,1,4,f +10648,3297,1,2,f +10648,3297,47,1,f +10648,3298,1,1,f +10648,3460,1,2,f +10648,3475a,14,2,f +10648,3634b,0,10,f +10648,3707,79,4,f +10648,3709a,7,4,f +10648,569,4,10,f +10648,x148,4,6,f +10649,2357,71,2,f +10649,2431,72,4,f +10649,2446,28,1,f +10649,2446,288,1,f +10649,2449,71,6,f +10649,2540,72,2,f +10649,2555,71,4,f +10649,2566,0,2,f +10649,2587pb06,4,1,f +10649,2587pb07,2,1,f +10649,2736,71,1,f +10649,3001,71,1,f +10649,3004,73,4,f +10649,3004,71,2,f +10649,3008,0,2,f +10649,3009,71,2,f +10649,3010,71,3,f +10649,3020,72,1,f +10649,3022,71,1,f +10649,3023,19,1,f +10649,3035,0,1,f +10649,3035,71,1,f +10649,30367b,19,3,f +10649,30383,71,2,f +10649,3048c,112,3,f +10649,30553,0,3,f +10649,3062b,19,2,f +10649,3062b,57,2,f +10649,32013,0,1,f +10649,32034,0,1,f +10649,32062,4,1,f +10649,32123b,71,1,t +10649,32123b,71,2,f +10649,32530,72,2,f +10649,3298,71,2,f +10649,3455,71,2,f +10649,3622,0,2,f +10649,3622,71,4,f +10649,3623,71,4,f +10649,3626bpb0220,14,1,f +10649,3626bpr0348,14,1,f +10649,3660,0,4,f +10649,3666,73,2,f +10649,3705,0,1,f +10649,3710,73,4,f +10649,3795,72,2,f +10649,3846pb15,151,1,f +10649,3846pb16,151,1,f +10649,3941,0,1,f +10649,3957a,0,2,f +10649,3958,71,1,f +10649,4095,0,1,f +10649,41539,0,2,f +10649,41753,8,1,t +10649,4286,71,8,f +10649,43093,1,1,f +10649,43899,72,2,f +10649,44294,71,1,f +10649,44302a,0,2,f +10649,44567a,72,3,f +10649,4460a,71,4,f +10649,4495a,112,3,f +10649,4497,0,4,f +10649,4623,0,3,f +10649,4740,0,2,f +10649,47576,70,1,f +10649,47846,0,2,f +10649,47905,72,1,f +10649,48487,4,1,f +10649,48488,2,1,f +10649,48495,137,1,f +10649,48495,178,1,f +10649,49668,72,6,f +10649,6066,71,2,f +10649,6112,71,2,f +10649,6182,72,2,f +10649,6538b,72,1,f +10649,6587,72,1,f +10649,85545,1,1,f +10649,970x138,4,1,f +10649,970x141,2,1,f +10649,973c12,2,1,f +10649,973c39,4,1,f +10649,rb00189,1,1,f +10650,2412b,2,2,f +10650,2420,2,2,f +10650,2431,2,1,f +10650,2460,2,1,f +10650,2524,2,1,f +10650,30141,2,2,f +10650,30162,2,2,f +10650,3020,2,1,f +10650,3021,2,2,f +10650,3022,2,2,f +10650,3022,71,3,f +10650,3023,0,2,f +10650,3034,2,1,f +10650,3068b,2,2,f +10650,32028,2,2,f +10650,3626bpr0636,2,4,f +10650,3660,2,2,f +10650,3665,2,2,f +10650,3710,2,2,f +10650,3829c01,0,1,f +10650,3962b,2,2,f +10650,42610,2,5,f +10650,4449,2,1,f +10650,44728,2,4,f +10650,4479,2,1,f +10650,4714,2,1,f +10650,47720,0,2,f +10650,48336,2,2,f +10650,4865a,2,4,f +10650,51011,0,5,f +10650,6091,2,4,f +10650,6141,34,1,t +10650,6141,34,6,f +10650,87998,2,3,f +10650,87998p01,2,1,f +10650,88000,2,4,f +10650,970c00,2,4,f +10650,973pr1571c01,2,4,f +10651,20476,297,1,f +10651,2723,0,1,f +10651,32039,0,1,f +10651,32062,4,2,f +10651,32125,71,1,f +10651,3705,0,1,f +10651,60483,72,1,f +10651,6632,0,2,f +10652,2431,15,1,f +10652,3010,1,1,f +10652,30136,70,6,f +10652,30137,70,2,f +10652,3038,15,2,f +10652,3666,15,1,f +10652,3700,1,1,f +10652,60592,15,1,f +10653,4093b,0,1,f +10654,11129pr0001,70,1,f +10654,12825,71,2,f +10654,15071,0,1,f +10654,3626cpr1119,19,1,f +10654,53451,15,2,f +10654,970c02pr0430,19,1,f +10654,973pr2226c01,19,1,f +10654,98138,41,1,f +10655,11476,71,4,f +10655,11816pr0006,78,1,f +10655,17870pr0001,15,1,f +10655,2921,0,1,f +10655,30176,2,2,f +10655,3030,19,2,f +10655,3034,28,2,f +10655,30357,19,1,f +10655,3062b,46,1,f +10655,3062b,2,1,f +10655,33057,484,1,f +10655,33291,191,1,f +10655,33291,5,1,f +10655,3626c,1,1,f +10655,4342,19,1,f +10655,4528,0,1,f +10655,4740,0,2,f +10655,60478,71,4,f +10655,6141,57,1,f +10655,6636,28,2,f +10655,92256,226,1,f +10655,92456pr0042c01,78,1,f +10655,92820pr0006c01b,378,1,f +10655,93088pr0001a,84,1,f +10655,93273,19,4,f +10657,b09stk01,9999,1,f +10660,3626bpr0387,14,1,f +10660,3833,4,1,f +10660,3841,72,1,f +10660,970c00,25,1,f +10660,973pr1182c01,25,1,f +10663,10201,71,1,f +10663,12825,71,1,f +10663,3020,72,1,f +10663,3710,72,1,f +10663,3794b,72,3,f +10663,41769,71,1,f +10663,41770,71,1,f +10663,6141,41,1,t +10663,6141,41,3,f +10663,6141,72,1,t +10663,6141,72,1,f +10663,90194,71,1,f +10665,4767,15,1,f +10665,4773,46,1,f +10665,4773,36,1,f +10665,4773,33,1,f +10665,4773,34,1,f +10668,10247,72,2,f +10668,11215,0,1,f +10668,11477,272,8,f +10668,12618,0,1,f +10668,13547,0,2,f +10668,13548,1,2,f +10668,14181,71,1,f +10668,14418,71,4,f +10668,14704,71,2,f +10668,15092,72,4,f +10668,15303,57,3,f +10668,15400,72,2,f +10668,15571,71,4,f +10668,15573,272,4,f +10668,15672,1,2,f +10668,15712,0,6,f +10668,17979,272,2,f +10668,18649,0,1,f +10668,18654,72,8,f +10668,18654,72,1,t +10668,18671,272,6,f +10668,22380,272,1,f +10668,22385,1,2,f +10668,22385pr0014,46,1,f +10668,22385pr0015,57,1,f +10668,22385pr0038,35,1,f +10668,22388,179,3,t +10668,22388,179,9,f +10668,22391,179,2,f +10668,22392,1,4,f +10668,22393,179,1,f +10668,22408,179,1,f +10668,22410,148,4,f +10668,22425,0,1,f +10668,22483,57,1,f +10668,24078,71,2,f +10668,24097,179,1,f +10668,24108,57,1,f +10668,2412b,182,2,f +10668,24133pr0001,4,1,f +10668,2420,272,4,f +10668,2431,1,2,f +10668,2436,71,1,f +10668,2446,1,2,f +10668,2450,71,2,f +10668,2515,148,2,f +10668,2540,1,1,f +10668,2594,179,2,f +10668,2654,57,2,f +10668,2730,71,2,f +10668,2736,71,2,f +10668,2780,0,6,f +10668,2780,0,1,t +10668,2877,71,11,f +10668,3020,72,6,f +10668,3022,71,2,f +10668,3022,0,3,f +10668,3023,321,12,f +10668,3031,1,1,f +10668,3034,272,3,f +10668,30374,57,2,f +10668,3062b,57,2,f +10668,3069b,272,6,f +10668,3069bpr0070,0,1,f +10668,3070bpr0155,1,1,t +10668,3070bpr0155,1,2,f +10668,3070bpr0160,71,1,t +10668,3070bpr0160,71,4,f +10668,32064a,1,9,f +10668,32526,1,2,f +10668,3460,71,4,f +10668,3626cpr1782,14,1,f +10668,3626cpr1785,179,2,f +10668,3626cpr1798,4,1,f +10668,3666,1,12,f +10668,3701,1,3,f +10668,3705,0,1,f +10668,3706,0,4,f +10668,3707,4,1,f +10668,3710,272,11,f +10668,3794b,71,1,f +10668,3795,1,4,f +10668,3941,0,2,f +10668,3958,1,1,f +10668,4185,57,8,f +10668,4282,71,1,f +10668,4286,272,2,f +10668,43710,1,1,f +10668,43711,1,1,f +10668,43719,57,1,f +10668,43722,1,2,f +10668,43723,1,2,f +10668,44302a,0,2,f +10668,4477,1,8,f +10668,4865b,57,4,f +10668,48729b,71,1,t +10668,48729b,71,4,f +10668,49668,179,2,f +10668,50304,71,1,f +10668,50305,71,1,f +10668,51739,272,1,f +10668,53451,4,3,f +10668,53451,25,2,f +10668,53451,4,1,t +10668,53451,25,1,t +10668,55982,179,3,f +10668,56904,71,1,f +10668,59426,72,2,f +10668,59900,57,1,t +10668,59900,57,3,f +10668,6019,1,4,f +10668,60219,72,1,f +10668,60470a,71,2,f +10668,60474,1,2,f +10668,60479,71,2,f +10668,60752,179,1,f +10668,6112,71,2,f +10668,6117,72,1,f +10668,6141,57,18,f +10668,6141,57,3,t +10668,6239,272,2,f +10668,62462,71,2,f +10668,62743,71,1,f +10668,63868,1,2,f +10668,64567,0,1,t +10668,64567,0,1,f +10668,6628,0,4,f +10668,76764,179,2,f +10668,76764,179,1,t +10668,87079,272,3,f +10668,87580,1,1,f +10668,92593,71,1,f +10668,93062c02,179,4,f +10668,93274,71,2,f +10668,970c00pr0938,71,1,f +10668,970c00pr0947,0,1,f +10668,973pr3151c01,71,1,f +10668,973pr3162c01,0,1,f +10668,98397,71,4,f +10668,99780,71,2,f +10669,3020,0,10,f +10669,3020,47,10,f +10669,3020,4,10,f +10669,3020,1,10,f +10669,3020,15,10,f +10669,3020,14,10,f +10669,3021,47,10,f +10669,3021,4,10,f +10669,3021,14,10,f +10669,3021,1,10,f +10669,3021,0,10,f +10669,3021,15,10,f +10669,3022,14,8,f +10669,3022,0,8,f +10669,3022,4,8,f +10669,3022,1,8,f +10669,3022,47,8,f +10669,3022,15,8,f +10669,3023,47,6,f +10669,3023,4,6,f +10669,3023,14,6,f +10669,3023,0,6,f +10669,3023,1,6,f +10669,3023,15,6,f +10669,3024,1,4,f +10669,3024,15,4,f +10669,3024,47,4,f +10669,3024,14,4,f +10669,3024,0,4,f +10669,3024,4,4,f +10670,2357,1,2,f +10670,2357,15,2,f +10670,2357,72,2,f +10670,2357,71,4,f +10670,2412b,71,3,f +10670,2420,1,1,f +10670,2420,0,1,f +10670,2420,15,2,f +10670,2432,72,1,f +10670,2432,1,1,f +10670,2432,15,25,f +10670,2432,4,1,f +10670,2436,71,23,f +10670,2450,0,2,f +10670,2456,15,1,f +10670,2555,72,2,f +10670,298c02,15,1,t +10670,298c02,15,2,f +10670,3001,15,8,f +10670,3001,25,2,f +10670,3001,71,14,f +10670,3001,72,2,f +10670,3002,70,1,f +10670,3002,1,4,f +10670,3002,15,6,f +10670,3003,15,2,f +10670,3004,25,1,f +10670,3004,15,11,f +10670,3004,72,2,f +10670,3004,1,1,f +10670,3004,70,2,f +10670,3004,71,12,f +10670,3005,71,1,f +10670,3005,72,2,f +10670,3005,14,2,f +10670,3008,15,13,f +10670,3008,1,2,f +10670,3009,1,2,f +10670,3009,15,2,f +10670,3010,15,3,f +10670,3010,70,1,f +10670,3010,72,1,f +10670,3010,1,4,f +10670,30165,0,2,f +10670,3020,0,2,f +10670,3020,1,8,f +10670,3020,71,3,f +10670,3020,70,5,f +10670,3020,72,4,f +10670,3020,25,1,f +10670,3020,15,11,f +10670,3021,71,6,f +10670,3021,72,1,f +10670,3021,1,1,f +10670,3021,70,10,f +10670,3021,0,6,f +10670,3021,15,6,f +10670,3021,25,2,f +10670,3022,0,1,f +10670,3022,4,1,f +10670,3022,2,1,f +10670,3022,71,1,f +10670,3022,25,7,f +10670,3022,15,2,f +10670,3022,1,5,f +10670,3023,72,5,f +10670,3023,25,14,f +10670,3023,4,6,f +10670,3023,0,3,t +10670,3023,0,21,f +10670,3023,71,7,f +10670,3023,15,1,t +10670,3023,73,3,f +10670,3023,14,7,f +10670,3023,15,7,f +10670,3023,1,7,f +10670,3023,70,7,f +10670,3023,19,4,f +10670,3024,2,5,f +10670,3024,14,13,f +10670,3024,0,23,f +10670,3024,73,2,f +10670,3024,1,2,f +10670,3024,72,1,f +10670,3024,15,13,f +10670,3024,4,1,f +10670,3024,70,2,f +10670,3031,1,5,f +10670,3031,71,6,f +10670,30383,15,2,f +10670,30383,0,4,f +10670,3039,15,11,f +10670,3040b,2,4,f +10670,3040b,15,10,f +10670,3045,15,2,f +10670,3045,71,2,f +10670,3048c,71,4,f +10670,30602,25,4,f +10670,30602,40,3,f +10670,30602,1,2,f +10670,30602,0,4,f +10670,3062b,15,8,f +10670,3062b,1,4,f +10670,3062b,0,16,f +10670,3062b,72,2,f +10670,3068b,15,12,f +10670,3068b,0,7,f +10670,3068b,1,8,f +10670,3068b,72,47,f +10670,3069b,4,16,f +10670,3069b,72,13,f +10670,3069b,14,1,f +10670,3069b,2,1,f +10670,3069b,1,11,f +10670,3069b,25,6,f +10670,3069b,0,8,f +10670,3069b,71,2,f +10670,3069b,15,24,f +10670,3070b,46,3,f +10670,3070b,33,26,f +10670,3070b,46,1,t +10670,3070b,1,3,f +10670,3070b,4,1,t +10670,3070b,1,1,t +10670,3070b,33,2,t +10670,3070b,4,3,f +10670,3298,71,2,f +10670,3298,1,1,f +10670,3298,15,7,f +10670,3460,0,1,f +10670,3460,1,2,f +10670,3622,70,1,f +10670,3622,71,4,f +10670,3622,15,4,f +10670,3623,71,4,f +10670,3623,15,4,f +10670,3623,72,2,f +10670,3623,4,1,f +10670,3623,0,17,f +10670,3623,70,11,f +10670,3623,14,1,f +10670,3623,2,2,f +10670,3660,71,12,f +10670,3665,0,2,f +10670,3666,0,4,f +10670,3666,71,2,f +10670,3666,1,3,f +10670,3666,15,1,f +10670,3666,4,1,f +10670,3700,72,4,f +10670,3710,14,1,f +10670,3710,25,1,f +10670,3710,71,6,f +10670,3710,4,12,f +10670,3710,0,11,f +10670,3710,15,8,f +10670,3710,70,6,f +10670,3710,73,1,f +10670,3710,1,4,f +10670,3710,72,3,f +10670,3747b,71,10,f +10670,3747b,15,1,f +10670,3794a,0,8,f +10670,3794a,70,1,f +10670,3794a,15,5,f +10670,3794a,2,1,f +10670,3794a,14,1,f +10670,3794a,4,3,f +10670,3794a,72,7,f +10670,3794a,1,3,f +10670,3795,1,1,f +10670,3795,15,7,f +10670,3795,0,4,f +10670,3795,72,1,f +10670,3839b,72,8,f +10670,3941,1,2,f +10670,3957a,71,4,f +10670,3957a,15,2,f +10670,3957a,0,3,f +10670,4032a,0,6,f +10670,4032a,72,2,f +10670,4070,0,9,f +10670,4070,14,3,f +10670,4070,72,2,f +10670,4070,1,2,f +10670,4081b,71,4,f +10670,4081b,0,1,f +10670,4085c,0,1,f +10670,41539,72,16,f +10670,41769,71,7,f +10670,41769,15,4,f +10670,41770,71,7,f +10670,41770,15,4,f +10670,41855,0,2,f +10670,4274,71,1,t +10670,4274,71,2,f +10670,4286,15,2,f +10670,4286,1,4,f +10670,4287,15,1,f +10670,44301a,15,1,f +10670,44301a,0,37,f +10670,44302a,0,41,f +10670,44302a,15,2,f +10670,4589,70,9,f +10670,4589,2,26,f +10670,4589,71,2,f +10670,4589,14,4,f +10670,4589,72,9,f +10670,4589,0,5,f +10670,4589,4,10,f +10670,4733,72,1,f +10670,4865a,4,2,f +10670,4871,15,4,f +10670,50950,72,10,f +10670,54200,72,4,f +10670,54200,4,8,f +10670,54200,33,20,f +10670,54200,25,12,f +10670,54200,15,10,f +10670,54200,47,3,f +10670,6019,15,1,f +10670,6091,1,2,f +10670,6091,15,2,f +10670,6126a,57,2,f +10670,6141,0,50,f +10670,6141,72,2,t +10670,6141,25,1,t +10670,6141,19,6,t +10670,6141,70,3,t +10670,6141,19,3,f +10670,6141,72,14,f +10670,6141,4,1,t +10670,6141,14,4,t +10670,6141,0,2,t +10670,6141,25,3,f +10670,6141,15,1,f +10670,6141,4,3,f +10670,6141,14,16,f +10670,6141,15,1,t +10670,6141,70,29,f +10671,10201,0,1,f +10671,11303,28,1,f +10671,11833,71,1,f +10671,15068pr0009,27,1,f +10671,15573,72,1,f +10671,15712,72,1,f +10671,19220,0,1,f +10671,23447,182,2,f +10671,2412b,0,1,f +10671,2447,40,2,f +10671,2447,40,1,t +10671,2456,72,1,f +10671,30031,72,1,f +10671,3005,19,2,f +10671,3005,70,1,f +10671,30089,0,1,f +10671,30176,2,1,f +10671,3023,0,3,f +10671,3024,14,1,f +10671,3024,14,1,t +10671,3032,70,1,f +10671,30385,33,2,f +10671,3062b,57,2,f +10671,32123b,14,1,t +10671,32123b,14,2,f +10671,3626bpr0754a,14,1,f +10671,3626cpr0920,14,1,f +10671,3626cpr1580,14,1,f +10671,3626cpr1666,14,1,f +10671,3705,0,1,f +10671,3833,15,2,f +10671,3838,14,2,f +10671,3841,72,1,f +10671,3957b,0,1,f +10671,44674,27,2,f +10671,4600,0,2,f +10671,4742,72,1,f +10671,48336,71,1,f +10671,54200,47,2,f +10671,54200,72,2,f +10671,54200,72,1,t +10671,54200,47,1,t +10671,6014b,71,4,f +10671,60483,0,1,f +10671,60483,25,1,f +10671,60897,14,1,f +10671,6141,36,2,f +10671,6141,36,1,t +10671,6158,72,2,f +10671,6541,72,1,f +10671,85984,72,1,f +10671,87620,72,2,f +10671,87697,0,4,f +10671,87990,70,1,f +10671,92338,72,1,f +10671,93106,0,1,f +10671,970c00,379,2,f +10671,970c00pr1057,326,2,f +10671,973pr3388c01,326,2,f +10671,973pr3389c01,326,1,f +10671,973pr3403c01,15,1,f +10671,98138,47,1,f +10671,98138,47,1,t +10671,99780,71,1,f +10674,14226c11,0,1,f +10674,15207,72,1,f +10674,2412b,72,1,f +10674,2446,4,1,f +10674,2447,40,1,t +10674,2447,40,1,f +10674,2495,4,1,f +10674,2496,0,3,f +10674,2655,71,2,f +10674,3010,15,1,f +10674,30196stk01,9999,1,t +10674,3020,0,1,f +10674,3020,72,2,f +10674,3062b,0,1,f +10674,3062b,46,3,f +10674,3068b,15,1,f +10674,3069b,15,1,f +10674,3069b,71,1,f +10674,3069bpr0101,71,1,f +10674,3626cpr0498,14,1,f +10674,3626cpr0499,14,1,f +10674,3626cpr0893,14,1,f +10674,3794b,72,2,f +10674,4589,40,1,f +10674,4599b,0,1,f +10674,4599b,0,1,t +10674,60475b,15,1,f +10674,60581,72,1,f +10674,6141,47,1,f +10674,6141,47,1,t +10674,62810,308,1,f +10674,87087,15,3,f +10674,87990,70,1,f +10674,93549pat01,47,1,f +10674,970c00,4,2,f +10674,970c00,0,1,f +10674,973c01,15,1,f +10674,973c01,4,2,f +10674,98138,47,1,t +10674,98138,47,2,f +10675,122c01,0,2,f +10675,2340,0,2,f +10675,2342,15,1,f +10675,2342,0,3,f +10675,2345,15,8,f +10675,298c02,0,6,f +10675,3002,0,2,f +10675,3002,15,3,f +10675,3003,15,8,f +10675,3004,15,10,f +10675,3004,1,1,f +10675,3005,15,12,f +10675,3009,15,3,f +10675,3010,15,3,f +10675,3010ap04,15,2,f +10675,3020,0,3,f +10675,3020,15,5,f +10675,3021,15,17,f +10675,3022,15,15,f +10675,3023,0,8,f +10675,3023,15,14,f +10675,3024,46,2,f +10675,3024,34,4,f +10675,3024,36,5,f +10675,3024,15,8,f +10675,3031,0,1,f +10675,3034,15,1,f +10675,3036,0,2,f +10675,3039p05,15,1,f +10675,3039p23,15,2,f +10675,3039p32,15,1,f +10675,3040b,15,3,f +10675,3040p05,15,2,f +10675,3068b,15,2,f +10675,3068bp07,15,2,f +10675,3068bp08,15,2,f +10675,3069b,15,1,f +10675,3069bp05,15,4,f +10675,3069bp06,15,6,f +10675,3149c01,15,1,f +10675,3460,15,3,f +10675,3622,15,2,f +10675,3623,15,2,f +10675,3626apr0001,14,2,f +10675,3633,15,2,f +10675,3660,15,2,f +10675,3666,15,4,f +10675,3666,0,2,f +10675,3700,15,7,f +10675,3710,15,4,f +10675,3747a,0,2,f +10675,3794a,15,3,f +10675,3795,15,8,f +10675,3832,15,1,f +10675,3838,14,1,f +10675,3838,4,1,f +10675,3839b,0,1,f +10675,3842b,4,1,f +10675,3842b,14,1,f +10675,3935,15,1,f +10675,3936,15,1,f +10675,3937,15,1,f +10675,3938,15,1,f +10675,3941,0,2,f +10675,3941,1,1,f +10675,3943b,0,1,f +10675,3956,15,1,f +10675,3957a,36,2,f +10675,3959,0,1,f +10675,3962a,0,1,f +10675,3963,0,1,f +10675,4006,0,1,f +10675,4032a,0,4,f +10675,4070,1,2,f +10675,4070,15,4,f +10675,4085b,15,10,f +10675,4213,33,2,f +10675,4285a,0,2,f +10675,4288,0,4,f +10675,4315,15,1,f +10675,4315,0,4,f +10675,4474,0,2,f +10675,4474,33,3,f +10675,4476b,15,2,f +10675,4588,36,2,f +10675,4589,36,3,f +10675,4589,0,4,f +10675,4590,0,8,f +10675,4595,0,4,f +10675,4625,15,2,f +10675,4730,15,7,f +10675,4732,0,2,f +10675,4735,0,1,f +10675,4735,1,2,f +10675,4740,36,1,f +10675,4757,15,2,f +10675,4758,15,3,f +10675,4760c01,15,1,f +10675,4767,15,2,f +10675,4771,15,1,f +10675,4773,34,2,f +10675,4773,36,2,f +10675,4774c02,15,1,f +10675,4856a,15,1,f +10675,4858p90,15,1,f +10675,4859,0,1,f +10675,4859,15,1,f +10675,4868a,15,2,f +10675,73590c01a,0,6,f +10675,970c00,4,1,f +10675,970c00,14,1,f +10675,973p90c02,4,1,f +10675,973p90c04,14,1,f +10677,2432,4,1,f +10677,2524,6,1,f +10677,2540,0,1,f +10677,2546,8,1,f +10677,3022,4,1,f +10677,3023,4,2,f +10677,3023,0,1,f +10677,3024,46,2,f +10677,3626bp04,14,1,f +10677,3787,4,1,f +10677,3788,4,1,f +10677,3795,4,1,f +10677,3829c01,4,1,f +10677,3835,7,1,f +10677,3841,8,1,f +10677,3962b,0,1,f +10677,4085c,4,2,f +10677,4485,1,1,f +10677,4600,0,2,f +10677,6014a,15,4,f +10677,6015,0,4,f +10677,6064,2,1,f +10677,6141,7,2,f +10677,970c00,15,1,f +10677,973c18,0,1,f +10681,2339,6,13,f +10681,2343,14,3,f +10681,2345,6,12,f +10681,2357,0,2,f +10681,2357,7,2,f +10681,2362a,4,4,f +10681,2417,2,15,f +10681,2419,0,1,f +10681,2420,1,2,f +10681,2420,0,3,f +10681,2423,2,5,f +10681,2431,0,2,f +10681,2431,7,1,f +10681,2431,1,2,f +10681,2444,7,2,f +10681,2449,0,7,f +10681,2452,0,1,f +10681,2453a,0,6,f +10681,2456,0,1,f +10681,2458,7,4,f +10681,2462,7,4,f +10681,2470,6,2,f +10681,2488,2,3,f +10681,2488,0,1,f +10681,2489,6,1,f +10681,251,0,1,f +10681,2540,0,2,f +10681,2555,0,3,f +10681,2584,7,1,f +10681,2585,0,1,f +10681,2586p4b,7,1,f +10681,2817,0,1,f +10681,2875,0,2,f +10681,3003,0,2,f +10681,3004,15,1,f +10681,3004,7,12,f +10681,3004,1,2,f +10681,3004,0,18,f +10681,3004,6,5,f +10681,3005,0,29,f +10681,3005,6,5,f +10681,3005,7,12,f +10681,3008,7,1,f +10681,3009,1,2,f +10681,3009,0,3,f +10681,3009,7,1,f +10681,3010,7,1,f +10681,3020,1,2,f +10681,3020,0,5,f +10681,3021,7,2,f +10681,3021,0,4,f +10681,3022,0,3,f +10681,3022,1,1,f +10681,3023,6,3,f +10681,3023,0,4,f +10681,3023,15,1,f +10681,3023,7,5,f +10681,3023,1,1,f +10681,3024,7,3,f +10681,3024,0,2,f +10681,3027,0,1,f +10681,3029,0,1,f +10681,3030,1,1,f +10681,3030,0,1,f +10681,3031,1,1,f +10681,3034,0,2,f +10681,3039,0,1,f +10681,3040b,7,4,f +10681,3040b,0,1,f +10681,3062b,0,7,f +10681,3068b,0,1,f +10681,3068bp40,15,1,f +10681,3069b,1,2,f +10681,3070b,1,2,f +10681,3307,0,2,f +10681,3307,7,1,f +10681,3403,0,1,f +10681,3404,0,1,f +10681,3455,0,4,f +10681,3455,7,3,f +10681,3460,0,2,f +10681,3581,0,1,f +10681,3582,1,1,f +10681,3622,7,1,f +10681,3622,0,2,f +10681,3623,0,1,f +10681,3623,6,13,f +10681,3626bp35,14,1,f +10681,3626bpr0895,15,1,f +10681,3626bpx12,14,1,f +10681,3626bpx23,14,1,f +10681,3626bpx96,14,1,f +10681,3626bpx97,14,2,f +10681,3633,0,1,f +10681,3659,7,1,f +10681,3659,0,3,f +10681,3660,0,2,f +10681,3665,1,2,f +10681,3665,0,1,f +10681,3666,0,2,f +10681,3679,7,1,f +10681,3700,0,3,f +10681,3707,0,1,f +10681,3710,0,5,f +10681,3710,7,2,f +10681,3710,1,2,f +10681,3713,7,2,f +10681,3794a,0,1,f +10681,3795,0,1,f +10681,3844,8,1,f +10681,3846p48,6,2,f +10681,3846p4c,7,1,f +10681,3847,8,3,f +10681,3848,6,2,f +10681,3849,6,2,f +10681,3896,0,1,f +10681,3957a,0,4,f +10681,3958,1,1,f +10681,3959,0,3,f +10681,4032a,6,1,f +10681,4070,7,1,f +10681,4070,0,4,f +10681,4085c,0,11,f +10681,4085c,7,1,f +10681,4213,1,2,f +10681,4215b,0,2,f +10681,4276b,0,1,f +10681,4315,0,1,f +10681,4444,7,1,f +10681,4477,0,1,f +10681,4488,0,4,f +10681,4489a,6,2,f +10681,4490,0,5,f +10681,4491b,4,1,f +10681,4493c01pb01,6,1,f +10681,4495a,15,1,f +10681,4495a,4,2,f +10681,4495a,2,1,f +10681,4497,6,4,f +10681,4498,6,2,f +10681,4499,6,2,f +10681,4505,6,1,f +10681,4505,0,1,f +10681,4506,6,1,f +10681,4506,2,1,f +10681,4523,6,1,f +10681,4587,1,1,f +10681,4589,46,3,f +10681,4623,0,2,f +10681,4623,7,1,f +10681,4625,1,1,f +10681,4732,0,1,f +10681,4738a,6,1,f +10681,4739a,6,1,f +10681,56823c75,0,1,f +10681,6020,6,3,f +10681,6024px4,2,1,f +10681,6044,0,2,f +10681,6066,7,1,f +10681,6106,7,2,f +10681,6107,7,2,f +10681,6108,0,2,f +10681,6112,0,1,f +10681,6141,36,1,t +10681,6141,34,1,t +10681,6141,36,2,f +10681,6141,7,1,t +10681,6141,34,2,f +10681,6141,7,1,f +10681,6260,15,1,f +10681,6265,15,2,f +10681,6266,15,2,f +10681,6541,0,2,f +10681,6541,7,1,f +10681,73983,7,1,f +10681,73983,0,1,f +10681,75998pr0007,15,1,f +10681,87692,4,1,t +10681,87692,1,1,t +10681,87693,4,1,f +10681,87693,1,1,f +10681,87694,1,1,t +10681,87694,4,1,t +10681,970c00,6,1,f +10681,970c00,7,2,f +10681,970c00,2,1,f +10681,970x021,0,1,f +10681,970x026,7,1,f +10681,973p46c01,2,1,f +10681,973p4bc02,4,1,f +10681,973pb0092c01,6,1,f +10681,973pb0093c01,6,1,f +10681,973pb0105c02,4,1,f +10681,973px21c01,2,1,f +10682,4081b,71,2,f +10682,47905,0,1,f +10682,54200,0,2,f +10682,54200,0,1,t +10682,6141,0,1,t +10682,6141,0,4,f +10683,2335,15,8,f +10683,2357,71,6,f +10683,2420,71,2,f +10683,2420,4,2,f +10683,2420,19,6,f +10683,2431,4,4,f +10683,2431,2,2,f +10683,2431,15,5,f +10683,2431pr0036,70,1,f +10683,2431pr0040,70,1,f +10683,2431pr0042,4,1,f +10683,2431pr0043,4,1,f +10683,2436,4,3,f +10683,2436,0,2,f +10683,2436,15,4,f +10683,2445,72,3,f +10683,2449,4,2,f +10683,2449,15,2,f +10683,2449,2,2,f +10683,2453a,72,4,f +10683,2454a,72,28,f +10683,2540,15,2,f +10683,2639,72,4,f +10683,2654,15,3,f +10683,2780,0,2,f +10683,2780,0,1,t +10683,298c02,4,2,f +10683,3001,71,7,f +10683,3001pr0002,70,2,f +10683,3002,72,8,f +10683,30027b,4,4,f +10683,30027b,70,2,f +10683,30028,0,6,f +10683,3004,15,4,f +10683,3004,72,3,f +10683,3004,0,2,f +10683,3004,2,4,f +10683,3004,71,12,f +10683,3004,4,4,f +10683,3004,14,2,f +10683,3004pr0007,73,1,f +10683,3005,71,3,f +10683,3005,0,8,f +10683,3009,2,1,f +10683,3009,15,1,f +10683,3009,4,3,f +10683,3010,4,3,f +10683,3020,2,2,f +10683,3020,4,2,f +10683,3020,14,1,f +10683,3020,71,1,f +10683,3020,15,4,f +10683,3021,72,14,f +10683,3021,15,2,f +10683,3021,4,2,f +10683,3022,0,2,f +10683,3022,15,2,f +10683,3022,71,3,f +10683,3023,0,4,f +10683,3023,73,4,f +10683,3023,4,12,f +10683,3023,14,3,f +10683,3023,2,12,f +10683,3023,1,3,f +10683,3023,15,13,f +10683,30236,71,2,f +10683,30237a,72,6,f +10683,3024,72,6,f +10683,3024,70,1,f +10683,3024,73,1,f +10683,3024,14,2,f +10683,3024,0,1,f +10683,3024,15,2,f +10683,3024,4,1,f +10683,30261,15,1,f +10683,30292,0,1,f +10683,30292,2,1,f +10683,30292,4,1,f +10683,3031,0,2,f +10683,3032,0,2,f +10683,3033,71,1,f +10683,3034,4,2,f +10683,3034,72,1,f +10683,3034,2,1,f +10683,3034,71,10,f +10683,3035,71,2,f +10683,30367b,15,6,f +10683,30367cpr0017,4,1,f +10683,30377,0,1,t +10683,30377,0,1,f +10683,3038,71,12,f +10683,30383,0,2,f +10683,30387,71,2,f +10683,30389c,0,2,f +10683,3039,0,2,f +10683,30395,72,1,f +10683,30407,0,6,f +10683,3040b,72,8,f +10683,30414,15,3,f +10683,30602pr0002,15,1,f +10683,3068b,1,1,f +10683,3068b,15,1,f +10683,3069b,4,8,f +10683,3069b,70,2,f +10683,3069b,14,3,f +10683,3069b,15,13,f +10683,3069b,71,4,f +10683,3069bpr0117,14,1,f +10683,3069bpr0119,15,1,f +10683,3070b,14,4,f +10683,3070b,14,1,t +10683,3070b,4,4,f +10683,3070b,15,1,t +10683,3070b,0,4,f +10683,3139,0,10,f +10683,32028,15,1,f +10683,32530,0,1,f +10683,3622,71,3,f +10683,3622,14,1,f +10683,3623,14,1,f +10683,3623,70,1,f +10683,3623,72,6,f +10683,3633,72,2,f +10683,3665,4,2,f +10683,3665,2,2,f +10683,3665,15,2,f +10683,3666,71,8,f +10683,3666,70,2,f +10683,3666,0,3,f +10683,3675,0,4,f +10683,3678b,0,12,f +10683,3678bpr0014a,73,1,f +10683,3678bpr0021,4,2,f +10683,3679,71,1,f +10683,3680,15,1,f +10683,3710,15,3,f +10683,3710,71,3,f +10683,3710,72,1,f +10683,3710,0,6,f +10683,3747b,71,4,f +10683,3794b,4,4,f +10683,3794b,73,1,f +10683,3794b,14,2,f +10683,3794b,0,4,f +10683,3794b,72,6,f +10683,3795,72,1,f +10683,3795,1,1,f +10683,3795,4,1,f +10683,3795,0,2,f +10683,3795,15,3,f +10683,3937,0,6,f +10683,3938,71,6,f +10683,3941,15,3,f +10683,3963,15,2,f +10683,4032a,2,4,f +10683,4032a,0,1,f +10683,4032a,1,3,f +10683,4032a,4,1,f +10683,4032a,15,9,f +10683,4070,71,2,f +10683,4083,0,1,f +10683,4085c,0,15,f +10683,4150,72,1,f +10683,4161,0,7,f +10683,4162,0,1,f +10683,4282,0,2,f +10683,4286,0,3,f +10683,4349,72,1,f +10683,4360,0,1,f +10683,43719,15,1,f +10683,44302a,15,4,f +10683,44302a,0,2,f +10683,44567a,0,6,f +10683,44568,15,1,f +10683,44674,323,1,f +10683,4477,0,4,f +10683,4515,0,4,f +10683,4528,0,6,f +10683,4529,0,2,f +10683,4589,71,6,f +10683,4599b,71,3,f +10683,4600,71,6,f +10683,4623,15,1,f +10683,4623,0,2,f +10683,4623,4,1,f +10683,4624,71,4,f +10683,4624,70,2,f +10683,4624,15,4,f +10683,4733,15,1,f +10683,4740,4,1,f +10683,4740,2,1,f +10683,4740,0,1,f +10683,47458,4,1,f +10683,47759pr0001,15,1,f +10683,48183,2,1,f +10683,4865a,70,2,f +10683,4865a,4,1,f +10683,4865a,2,1,f +10683,4872,40,6,f +10683,49668,0,2,f +10683,50947,15,3,f +10683,50947,4,1,f +10683,50948,0,1,f +10683,50951,0,14,f +10683,53989,0,1,f +10683,54200,15,1,f +10683,54200,15,1,t +10683,54200,323,2,f +10683,54200,2,1,t +10683,54200,2,2,f +10683,54200,323,1,t +10683,54200,4,2,f +10683,55295,0,1,f +10683,55296,0,1,f +10683,55297,0,1,f +10683,55298,0,1,f +10683,55299,0,1,f +10683,55300,0,1,f +10683,57515,72,1,f +10683,6019,71,3,f +10683,60212,73,1,f +10683,60212,14,2,f +10683,60471,71,2,f +10683,60476,71,6,f +10683,60581,47,3,f +10683,6091,73,2,f +10683,6111,71,3,f +10683,6141,182,2,f +10683,6141,72,1,t +10683,6141,36,6,t +10683,6141,34,12,f +10683,6141,15,1,t +10683,6141,4,1,t +10683,6141,47,1,t +10683,6141,72,6,f +10683,6141,15,4,f +10683,6141,4,4,f +10683,6141,36,17,f +10683,6141,47,3,f +10683,6157,0,9,f +10683,61678,15,1,f +10683,6215,15,1,f +10683,6215,2,1,f +10683,63868,71,2,f +10683,63965,71,7,f +10683,64225,15,1,f +10683,64644,0,1,f +10683,6541,70,2,f +10683,6628,0,1,f +10683,6636,4,1,f +10683,6636,0,2,f +10683,85984,15,3,f +10683,8679stk01,9999,1,t +10683,87079,15,2,f +10683,87079,4,1,f +10683,87079,0,4,f +10683,87079pr0019,4,1,f +10683,87079pr0020,4,1,f +10683,87580,71,1,f +10683,87618,0,1,f +10683,92593,15,1,f +10683,92950,72,6,f +10683,93273,14,1,f +10683,93273pr0003,14,1,f +10683,93274,14,2,f +10683,93274,4,2,f +10683,93587pr0006,4,1,f +10683,93589pr0001,15,1,f +10683,93590,70,1,f +10683,93590,4,1,f +10683,93591pr0010,4,1,f +10683,93594,179,6,f +10683,93595,0,4,f +10683,93595pr0002,15,4,f +10683,93598pr0001,70,1,f +10683,93598pr0002,14,1,f +10683,93598pr0003,14,1,f +10683,95120,0,1,f +10683,95120,15,1,f +10684,30374,42,2,f +10684,30374,36,3,f +10684,30374,41,2,f +10684,30376,15,1,f +10684,30377,15,4,f +10684,3626bpr0549,15,1,f +10684,3626bpr0569,78,1,f +10684,42114,383,1,f +10684,50231,70,1,f +10684,50994,15,1,f +10684,61198,0,1,f +10684,61199,71,2,f +10684,64567,71,4,f +10684,64798,71,1,f +10684,970c00,0,1,f +10684,970c00,272,1,f +10684,973pr1404c01,272,1,f +10684,973pr1461c01,0,1,f +10684,x1463,15,1,f +10685,2412b,15,1,f +10685,2412b,320,2,f +10685,30162,72,1,f +10685,3022,72,1,f +10685,3023,71,1,f +10685,3023,15,2,f +10685,3024,15,2,f +10685,3062b,15,4,f +10685,3176,71,1,f +10685,3623,19,2,f +10685,3623,320,1,f +10685,3794b,15,1,f +10685,3957a,71,4,f +10685,4032a,19,1,f +10685,42446,71,1,f +10685,4274,71,4,f +10685,4274,71,1,t +10685,43722,15,2,f +10685,43723,15,2,f +10685,54200,71,1,f +10685,54200,40,1,f +10685,54200,40,1,t +10685,54200,71,1,t +10685,6019,72,4,f +10685,60470a,71,4,f +10685,61184,71,4,f +10685,6141,80,1,f +10685,6141,72,1,t +10685,6141,182,4,f +10685,6141,72,4,f +10685,6141,182,1,t +10685,6141,80,1,t +10685,63864,15,1,f +10685,63868,71,4,f +10686,10169,84,1,f +10686,10928,72,3,f +10686,11090,72,14,f +10686,11090,70,1,f +10686,11091,320,2,f +10686,11091,272,2,f +10686,11439pat0003,42,2,f +10686,11476,71,4,f +10686,11477,158,4,f +10686,11477,179,4,f +10686,11477,0,5,f +10686,13349,0,1,f +10686,14418,71,2,f +10686,14704,71,1,f +10686,14707,70,1,f +10686,14716,0,2,f +10686,14769,71,1,f +10686,15064,158,11,f +10686,15068,308,1,f +10686,15068,0,5,f +10686,15392,72,6,f +10686,15403,0,6,f +10686,15439,0,1,f +10686,15462,28,1,f +10686,15535,72,1,f +10686,15573,70,2,f +10686,15573,272,1,f +10686,15619,272,2,f +10686,15712,70,2,f +10686,15712,297,1,f +10686,15712,72,2,f +10686,17979,272,3,f +10686,18654,72,1,f +10686,18674,70,2,f +10686,19857pat0002,0,1,f +10686,19857pat0003,0,1,f +10686,19858pat0002,42,2,f +10686,19859pat0002,42,2,f +10686,19861pr0001,42,1,f +10686,20565,0,1,f +10686,20566pat01,0,1,f +10686,20566pat02,148,1,f +10686,20568pat01,272,1,f +10686,20612,40,1,f +10686,20643,272,1,f +10686,21626,272,1,f +10686,2343,71,1,f +10686,2357,72,5,f +10686,2357,70,6,f +10686,2412b,179,1,f +10686,2419,0,1,f +10686,2420,72,2,f +10686,2420,0,4,f +10686,2420,27,1,f +10686,2420,70,2,f +10686,2445,0,1,f +10686,2445,72,1,f +10686,2454a,72,1,f +10686,2456,72,1,f +10686,2456,0,2,f +10686,2489,308,1,f +10686,2489,70,1,f +10686,2527,70,1,f +10686,2540,72,9,f +10686,2570,70,2,f +10686,2570,148,1,f +10686,2570,179,1,f +10686,2654,41,3,f +10686,2654,47,7,f +10686,2654,1,1,f +10686,2780,0,2,f +10686,3001,1,1,f +10686,3001,70,2,f +10686,3002,72,1,f +10686,3002,0,1,f +10686,3003,70,1,f +10686,3004,0,1,f +10686,3004,272,2,f +10686,3005,70,2,f +10686,3005,27,2,f +10686,3008,70,1,f +10686,3009,70,3,f +10686,3009,0,1,f +10686,30094,70,2,f +10686,30099,0,4,f +10686,3010,0,1,f +10686,30136,484,1,f +10686,30136,70,15,f +10686,30137,70,3,f +10686,30145,0,1,f +10686,30150,70,1,f +10686,30153,46,1,f +10686,30153,47,1,f +10686,30153,33,1,f +10686,30153,34,1,f +10686,30153,41,1,f +10686,30153,42,1,f +10686,30153,36,1,f +10686,30173b,158,1,f +10686,30173b,297,5,f +10686,30173b,0,2,f +10686,3020,72,2,f +10686,3020,0,5,f +10686,3020,1,1,f +10686,3020,272,3,f +10686,3020,70,4,f +10686,3021,0,4,f +10686,3021,71,1,f +10686,3021,70,2,f +10686,3022,70,4,f +10686,3022,0,2,f +10686,3022,1,1,f +10686,3022,72,3,f +10686,3023,27,2,f +10686,3023,272,2,f +10686,3023,0,1,f +10686,3023,42,4,f +10686,3023,4,2,f +10686,3023,308,13,f +10686,3023,71,2,f +10686,3023,70,18,f +10686,30237a,70,2,f +10686,30238,42,4,f +10686,3024,158,3,f +10686,3024,72,1,f +10686,3028,0,1,f +10686,30292,272,1,f +10686,3032,0,4,f +10686,3033,0,2,f +10686,3034,0,4,f +10686,3034,272,2,f +10686,3034,70,1,f +10686,3035,0,5,f +10686,3035,1,2,f +10686,3036,1,1,f +10686,30374,0,6,f +10686,30374,297,1,f +10686,30377,308,6,f +10686,3039,72,1,f +10686,3039,272,6,f +10686,30395,72,1,f +10686,30414,0,1,f +10686,30414,4,2,f +10686,3046a,72,5,f +10686,30503,1,2,f +10686,3062b,42,5,f +10686,3062b,272,2,f +10686,3062b,70,6,f +10686,3065,42,2,f +10686,3068b,28,1,f +10686,3069b,15,1,f +10686,3070bpr0001,34,1,f +10686,32001,0,2,f +10686,32013,72,1,f +10686,32018,0,1,f +10686,32034,0,3,f +10686,32054,0,1,f +10686,32062,4,7,f +10686,32064a,0,1,f +10686,32073,71,3,f +10686,32123b,71,6,f +10686,32125,71,1,f +10686,32270,0,4,f +10686,32271,72,2,f +10686,32278,0,1,f +10686,3245c,0,4,f +10686,32530,0,1,f +10686,33009,297,1,f +10686,3460,308,3,f +10686,3623,70,4,f +10686,3623,0,3,f +10686,3623,272,46,f +10686,3623,27,2,f +10686,3626b,47,1,f +10686,3626cpr0895,15,1,f +10686,3626cpr1365,14,1,f +10686,3626cpr1367,14,1,f +10686,3626cpr1571,14,1,f +10686,3626cpr1681,0,1,f +10686,3626cpr1688,42,2,f +10686,3626cpr1690,158,1,f +10686,3626cpr1691,42,1,f +10686,3659,0,3,f +10686,3659,308,1,f +10686,3660,272,1,f +10686,3660,308,10,f +10686,3665,70,4,f +10686,3666,272,5,f +10686,3666,27,1,f +10686,3666,70,2,f +10686,3700,71,1,f +10686,3700,0,2,f +10686,3700,70,2,f +10686,3702,0,1,f +10686,3705,0,3,f +10686,3707,0,2,f +10686,3708,0,1,f +10686,3710,0,2,f +10686,3710,1,2,f +10686,3710,27,3,f +10686,3710,272,2,f +10686,3710,70,3,f +10686,3710,4,4,f +10686,3710,72,1,f +10686,3713,4,4,f +10686,3743,0,2,f +10686,3747b,0,9,f +10686,3747b,70,2,f +10686,3749,19,1,f +10686,3795,0,5,f +10686,3795,70,8,f +10686,3832,70,3,f +10686,3832,0,2,f +10686,3848,72,4,f +10686,3878,0,1,f +10686,3895,0,2,f +10686,3937,0,4,f +10686,3941,70,15,f +10686,3941,0,10,f +10686,3958,1,2,f +10686,3958,0,1,f +10686,3958,72,1,f +10686,4079,70,1,f +10686,4081b,27,2,f +10686,4081b,0,23,f +10686,4081b,4,2,f +10686,41239,72,1,f +10686,41535,297,1,f +10686,4162,70,1,f +10686,41769,0,2,f +10686,41769,70,2,f +10686,41769,272,1,f +10686,41770,70,2,f +10686,41770,0,1,f +10686,41770,272,2,f +10686,4274,1,5,f +10686,4282,72,1,f +10686,4286,272,1,f +10686,43888,158,4,f +10686,43888,72,2,f +10686,43892,308,2,f +10686,43899,72,1,f +10686,4424,70,1,f +10686,4460b,72,4,f +10686,44676,320,2,f +10686,44728,72,1,f +10686,4477,0,1,f +10686,4495b,272,4,f +10686,4497,179,2,f +10686,4497,0,1,f +10686,4519,71,3,f +10686,45301,320,1,f +10686,46212,42,4,f +10686,4697b,0,1,f +10686,4738a,70,1,f +10686,4739a,70,1,f +10686,4740,41,1,f +10686,47404,308,5,f +10686,47847,72,4,f +10686,4790,70,1,f +10686,48336,297,2,f +10686,48336,0,1,f +10686,48336,71,2,f +10686,48496,0,1,f +10686,4865a,47,2,f +10686,4865b,41,1,f +10686,4871,0,1,f +10686,48729b,0,1,f +10686,50305,72,1,f +10686,50950,0,2,f +10686,51739,0,1,f +10686,53451,4,3,f +10686,53451,158,14,f +10686,53451,0,1,f +10686,54200,272,4,f +10686,54200,42,4,f +10686,54200,297,2,f +10686,54200,70,1,f +10686,54383,1,1,f +10686,54821,35,2,f +10686,55236,27,7,f +10686,59443,4,2,f +10686,59443,0,1,f +10686,59900,42,5,f +10686,59900,72,1,f +10686,60169,42,1,f +10686,6020,70,3,f +10686,60470a,71,1,f +10686,60474,308,1,f +10686,60477,72,4,f +10686,60478,72,4,f +10686,60481,0,2,f +10686,60581,0,1,f +10686,60592,70,4,f +10686,60596,0,5,f +10686,60621,148,1,f +10686,60806,0,1,f +10686,60808,158,1,f +10686,60897,71,2,f +10686,6091,70,1,f +10686,6111,0,1,f +10686,6112,72,1,f +10686,61252,72,3,f +10686,6126a,41,2,f +10686,6134,71,3,f +10686,6134,0,1,f +10686,61409,0,2,f +10686,6141,1,4,f +10686,6141,42,10,f +10686,6141,41,8,f +10686,6141,85,6,f +10686,6141,27,5,f +10686,6141,70,6,f +10686,61482,71,1,f +10686,61485,71,1,f +10686,62113,72,1,f +10686,62462,70,1,f +10686,6266,0,8,f +10686,6266,15,2,f +10686,62808,72,2,f +10686,63868,70,8,f +10686,63965,70,4,f +10686,63965,0,1,f +10686,64276,0,2,f +10686,64448,70,5,f +10686,64567,0,2,f +10686,64567,297,1,f +10686,64644,308,1,f +10686,64644,297,3,f +10686,6558,1,2,f +10686,6628,0,3,f +10686,6636,70,1,f +10686,6636,0,4,f +10686,72454,0,1,f +10686,73983,72,1,f +10686,74698,0,1,f +10686,76764,179,1,f +10686,84943,148,1,f +10686,85959pat0003,36,1,f +10686,85975,297,2,f +10686,85984,72,2,f +10686,85984,0,1,f +10686,85984,71,5,f +10686,85984pr0002,72,1,f +10686,87079,71,1,f +10686,87079,484,1,f +10686,87079,70,1,f +10686,87421,0,2,f +10686,87580,272,9,f +10686,87580,320,2,f +10686,87747,0,4,f +10686,88072,0,5,f +10686,90611,42,1,f +10686,91988,71,1,f +10686,92013,308,1,f +10686,92099,0,1,f +10686,92107,0,1,f +10686,92280,0,2,f +10686,92290,297,1,f +10686,92338,0,2,f +10686,92438,1,1,f +10686,92585,297,1,f +10686,92589,71,3,f +10686,92593,272,19,f +10686,92690,297,1,f +10686,92947,70,1,f +10686,92950,71,2,f +10686,92950,70,1,f +10686,93059,85,3,f +10686,93060,15,1,f +10686,93061,15,2,f +10686,93273,272,2,f +10686,93274,71,1,f +10686,93571,0,1,f +10686,95228,34,1,f +10686,95344,297,1,f +10686,96874,25,1,t +10686,970c00pr0772,0,1,f +10686,970c00pr0871,288,1,f +10686,970c00pr0877,0,1,f +10686,970c00pr0889,0,1,f +10686,970x268pr001,42,2,f +10686,973pr2859c01,0,1,f +10686,973pr3018c01,272,1,f +10686,973pr3033c01,0,1,f +10686,973pr3034c01,0,1,f +10686,973pr3039c01,272,1,f +10686,973pr3040c01,288,1,f +10686,973pr3041c01,85,1,f +10686,973pr3043c01,85,1,f +10686,98128,0,1,f +10686,98129,4,1,f +10686,98132,0,3,f +10686,98137,158,3,f +10686,98137,297,2,f +10686,98138,36,1,f +10686,98138,41,1,f +10686,98138,71,2,f +10686,98138pr0014,297,1,f +10686,98141,158,2,f +10686,98283,72,6,f +10686,98313,148,4,f +10686,98560,72,5,f +10686,98564,148,2,f +10686,99780,72,1,f +10686,99784,47,2,f +10687,2412b,272,4,f +10687,2555,0,3,f +10687,3004,72,1,f +10687,3005,72,2,f +10687,30088,72,2,f +10687,3065,57,2,f +10687,3623,379,2,f +10687,3623,0,2,f +10687,3666,0,1,f +10687,3794a,0,4,f +10687,3960,379,2,f +10687,4085c,72,2,f +10687,4286,0,2,f +10687,4460a,0,1,f +10687,4477,0,1,f +10687,4623,72,2,f +10687,4740,379,2,f +10687,47905,72,4,f +10687,6141,57,2,f +10687,6141,72,6,f +10687,6190,72,1,f +10689,266bc01,15,4,f +10689,3021,7,4,f +10689,3023,7,8,f +10689,3651,7,4,f +10689,3705,0,4,f +10689,3713,7,8,f +10689,3795,8,4,f +10689,3960,7,4,f +10689,4168,7,4,f +10689,4169,7,4,f +10689,765c96,7,4,f +10690,2780,0,8,f +10690,32062,0,16,f +10690,32174,2,7,f +10690,32174,72,8,f +10690,32174,6,14,f +10690,32174,57,3,f +10690,32270,71,8,f +10690,32310,135,1,f +10690,32475,72,8,f +10690,32476,8,1,f +10690,32476,288,8,f +10690,32533pb555,21,4,f +10690,32553,72,5,f +10690,32567pb01,320,1,f +10690,32570pb01,288,1,f +10690,32572pb01,272,1,f +10690,32574pb01,86,1,f +10690,32575pb01,15,1,f +10690,32576,14,1,f +10690,3749,19,8,f +10690,44135,8,7,f +10690,44135,72,4,f +10690,44138,2,1,f +10690,44139,8,2,f +10690,44140,183,1,f +10690,44140,6,1,f +10690,44140,0,1,f +10690,44142,179,1,f +10690,44143,179,1,f +10690,44807,1,1,f +10690,44807,0,6,f +10690,44807,6,1,f +10690,44807,4,5,f +10690,44807,183,1,f +10690,44810,288,4,f +10690,44845,179,1,f +10690,44849,2,1,f +10690,4519,7,2,f +10690,4519,71,8,f +10690,47295,86,1,f +10690,47295,15,1,f +10690,47295,288,1,f +10690,47296,72,8,f +10690,47297,86,4,f +10690,47298,15,9,f +10690,47298,272,4,f +10690,47298,86,4,f +10690,47302,0,1,f +10690,47303,33,2,f +10690,47305,272,1,f +10690,47305,86,2,f +10690,47307,288,4,f +10690,47308,320,3,f +10690,47309,86,2,f +10690,47310,86,4,f +10690,47310,288,8,f +10690,47310,272,4,f +10690,47310,320,6,f +10690,47314,179,4,f +10690,47315,179,1,t +10690,47315,179,2,f +10690,47316,179,3,f +10690,47316,179,1,t +10690,47317,179,9,f +10690,47317,179,1,t +10690,47318,179,2,f +10690,47319,179,4,f +10690,47319,179,1,t +10690,47328,288,8,f +10690,47330,288,4,f +10690,47331,288,4,f +10690,47332,288,4,f +10690,47334,179,4,f +10690,47336,179,8,f +10690,49423,86,2,f +10690,8580-1,9999,2,f +10690,x1190,36,4,f +10692,12825,15,1,f +10692,15210pr01,0,1,f +10692,2412b,72,4,f +10692,2412b,14,7,f +10692,2432,15,1,f +10692,2445,71,3,f +10692,2540,14,3,f +10692,2653,0,2,f +10692,298c02,15,1,f +10692,298c02,15,1,t +10692,3004,72,2,f +10692,3004,14,1,f +10692,3009,4,3,f +10692,3020,2,1,f +10692,3021,14,1,f +10692,3022,15,4,f +10692,3023,182,6,f +10692,3023,15,5,f +10692,3032,72,1,f +10692,30361c,15,2,f +10692,30363,71,3,f +10692,30367b,0,2,f +10692,3037,15,1,f +10692,30374,15,1,f +10692,3040b,4,2,f +10692,3069bpr0030,15,1,f +10692,32028,15,4,f +10692,32073,71,1,f +10692,3366stk01,9999,1,t +10692,3626bpr0646,14,1,f +10692,3665,72,6,f +10692,3666,15,10,f +10692,3666,72,1,f +10692,3795,72,1,f +10692,3821,4,1,f +10692,3822,4,1,f +10692,3829c01,14,1,f +10692,3839b,0,1,f +10692,3899,4,1,f +10692,3937,14,1,f +10692,3938,0,1,f +10692,3941,15,4,f +10692,3942c,0,1,f +10692,3958,15,1,f +10692,4032a,4,3,f +10692,4079b,14,1,f +10692,4274,71,4,f +10692,4274,71,1,t +10692,43888,14,2,f +10692,43898,72,1,f +10692,44728,14,1,f +10692,4488,0,4,f +10692,4591,15,1,f +10692,4740,72,1,f +10692,50745,72,4,f +10692,50950,72,2,f +10692,53989,15,1,f +10692,54200,47,2,f +10692,54200,47,1,t +10692,58181,15,1,f +10692,6014b,15,4,f +10692,60700,0,4,f +10692,6141,182,2,f +10692,6141,36,2,t +10692,6141,36,6,f +10692,6141,182,1,t +10692,63868,14,2,f +10692,63965,71,1,f +10692,86035,1,1,f +10692,87079,72,1,f +10692,87087,4,6,f +10692,87552,40,8,f +10692,89523,72,1,f +10692,92099,15,1,f +10692,92583,40,1,f +10692,970c00,1,1,f +10692,973pr1470c01,1,1,f +10693,14210,15,1,f +10693,2412b,71,2,f +10693,2431,2,2,f +10693,2444,71,2,f +10693,2454a,19,2,f +10693,2496,0,2,f +10693,2540,72,3,f +10693,3004,72,2,f +10693,3009,19,1,f +10693,30151a,47,1,f +10693,30153,36,1,f +10693,30153,34,1,f +10693,30153,33,1,f +10693,30158,1,1,f +10693,30187b,1,1,f +10693,30187c05,1,1,t +10693,30189,1,1,f +10693,30190,71,1,f +10693,3020,72,1,f +10693,30238,33,1,f +10693,3024,4,1,f +10693,3024,36,1,f +10693,3024,46,1,f +10693,3024,72,1,f +10693,30240,15,1,f +10693,30256,72,1,f +10693,3029,71,1,f +10693,3031,71,1,f +10693,3032,71,1,f +10693,30374,72,1,f +10693,30553,72,1,f +10693,3062b,4,1,f +10693,3626bpr0347,78,1,f +10693,3626bpx125,4,1,f +10693,3626bpx303,78,1,f +10693,3673,71,2,f +10693,3673,71,1,t +10693,3700,0,2,f +10693,3794a,71,2,f +10693,3795,19,1,f +10693,3832,72,1,f +10693,3940b,15,1,f +10693,40234,70,1,f +10693,4070,4,1,f +10693,4070,4,1,t +10693,41334,72,2,f +10693,4162,72,4,f +10693,4162,14,2,f +10693,42511,14,1,f +10693,4282,71,1,f +10693,44301a,72,1,f +10693,4733,72,1,f +10693,4740,72,1,f +10693,4853stk01,9999,1,t +10693,6014b,71,2,f +10693,6015,0,3,f +10693,6020,0,1,f +10693,6141,46,1,f +10693,6141,46,1,t +10693,6141,71,1,f +10693,6141,4,1,t +10693,6141,4,1,f +10693,6141,71,1,t +10693,970c00,0,2,f +10693,970c63pb01,272,1,f +10693,973pb0298c02,4,1,f +10693,973pb0325c01,4,1,f +10693,973pb0330c01,0,1,f +10696,2412b,71,8,f +10696,2431,71,5,f +10696,2436,0,2,f +10696,2445,71,1,f +10696,2450,71,2,f +10696,2456,72,1,f +10696,2543,320,1,f +10696,2877,71,6,f +10696,3002,71,2,f +10696,3003,272,5,f +10696,3004,272,2,f +10696,3005,71,1,f +10696,3007,71,1,f +10696,3010,272,1,f +10696,3020,71,2,f +10696,3021,72,4,f +10696,3022,71,5,f +10696,3023,46,4,f +10696,3023,71,5,f +10696,3032,71,2,f +10696,3035,72,1,f +10696,30357,72,2,f +10696,30375,0,1,f +10696,30376,0,1,f +10696,30377,0,1,f +10696,30377,0,1,t +10696,3040b,71,1,f +10696,30414,0,2,f +10696,3068b,71,1,f +10696,3069b,272,4,f +10696,3069b,72,6,f +10696,3069bpr0090,72,1,f +10696,3070b,71,2,f +10696,3070b,71,1,t +10696,3176,72,2,f +10696,32000,14,2,f +10696,32001,0,7,f +10696,32013,0,2,f +10696,32062,4,3,f +10696,32064a,71,3,f +10696,32123b,71,2,f +10696,32123b,71,1,t +10696,3245c,71,1,f +10696,33299a,71,1,f +10696,3460,72,1,f +10696,3623,0,2,f +10696,3626bpr0525,78,2,f +10696,3626bpr0681,1,1,f +10696,3626bpr0683,72,1,f +10696,3660,71,9,f +10696,3660,272,1,f +10696,3666,71,3,f +10696,3700,72,3,f +10696,3701,71,2,f +10696,3706,0,1,f +10696,3710,72,1,f +10696,3713,71,1,t +10696,3713,71,2,f +10696,3738,71,2,f +10696,3747b,71,8,f +10696,3794a,72,9,f +10696,3829c01,71,1,f +10696,3832,72,1,f +10696,3937,72,2,f +10696,3941,46,2,f +10696,3958,72,1,f +10696,4032a,72,6,f +10696,4079b,15,2,f +10696,4079b,72,4,f +10696,4085c,71,2,f +10696,4162,71,4,f +10696,41764,71,2,f +10696,41765,71,2,f +10696,42023,272,2,f +10696,4274,1,5,f +10696,4274,1,1,t +10696,4286,72,2,f +10696,43712,71,1,f +10696,44728,0,4,f +10696,4519,71,3,f +10696,47397,72,1,f +10696,47398,72,1,f +10696,4740,41,3,f +10696,48496,0,2,f +10696,4865a,71,3,f +10696,4868b,71,2,f +10696,4869,71,2,f +10696,4871,272,1,f +10696,4871,71,1,f +10696,48729a,0,1,f +10696,48729b,0,1,t +10696,50303,0,1,f +10696,50950,272,2,f +10696,50955,71,2,f +10696,50956,71,2,f +10696,51739,72,1,f +10696,54200,272,1,t +10696,54200,272,6,f +10696,55013,72,2,f +10696,57899,0,3,f +10696,58247,0,3,f +10696,59230,0,1,f +10696,59230,0,1,t +10696,59443,71,2,f +10696,59900,0,1,f +10696,60478,71,2,f +10696,60481,71,1,f +10696,60483,0,1,f +10696,6091,71,6,f +10696,61184,71,2,f +10696,6134,0,2,f +10696,6141,0,1,f +10696,6141,15,14,f +10696,6141,0,1,t +10696,6141,41,1,t +10696,6141,41,10,f +10696,6141,15,1,t +10696,6141,182,1,f +10696,6141,182,1,t +10696,61678,72,4,f +10696,6192,72,4,f +10696,62409,148,1,f +10696,62462,0,1,t +10696,62462,0,2,f +10696,64799,14,1,f +10696,6636,272,3,f +10696,85943,72,2,f +10696,86408pr0001a,1,1,f +10696,86408pr0002,1,1,f +10696,87079,71,4,f +10696,90258,72,2,f +10696,90538,308,1,f +10696,970c00,272,1,f +10696,970c00,72,1,f +10696,970x026,1,2,f +10696,973pr0706c01,71,1,f +10696,973pr1476c01,1,1,f +10696,973pr1639c01,308,1,f +10696,973pr1660c01,1,1,f +10697,132a,0,4,f +10697,36,0,4,f +10697,7039,4,4,f +10697,7049b,0,4,f +10697,715,4,4,f +10698,3005pe1,14,2,f +10698,3021,14,1,f +10698,3022,4,1,f +10698,3039,14,1,f +10698,3040b,14,2,f +10698,3660,14,1,f +10698,3710,14,1,f +10698,4589,4,1,f +10698,6141,15,1,f +10702,11211,4,1,f +10702,11477,4,2,f +10702,12825,4,1,f +10702,14417,72,2,f +10702,14419,72,2,f +10702,14704,71,2,f +10702,15208,15,1,f +10702,30031,0,1,f +10702,3020,320,1,f +10702,3022,4,1,f +10702,3023,4,3,f +10702,3069b,4,2,f +10702,32474pr1001,15,2,f +10702,3665,4,2,f +10702,3710,4,1,f +10702,3794b,320,3,f +10702,44728,0,1,f +10702,51739,320,2,f +10702,54200,320,4,f +10702,54200,320,1,t +10702,60481,4,2,f +10702,61252,4,2,f +10702,73983,4,2,f +10702,85959pat0003,36,2,f +10702,85984,4,1,f +10702,93273,320,1,f +10702,99207,4,1,f +10703,3001,14,1,f +10703,3004,14,3,f +10703,3005pe1,14,2,f +10703,3020,14,1,f +10703,3039,14,1,f +10703,3040b,4,1,f +10703,3040b,14,2,f +10703,6141,15,1,f +10704,32062,0,6,f +10704,32173,8,2,f +10704,32174,1,10,f +10704,32174,57,1,f +10704,32270,7,1,f +10704,3737,0,1,f +10704,3749,19,4,f +10704,44135,8,1,f +10704,44136,8,1,f +10704,44138,1,2,f +10704,44139,8,1,f +10704,44140,1,1,f +10704,44147,179,1,f +10704,44148,8,2,f +10704,44247,8,1,f +10704,44807,1,1,f +10704,44817,179,2,f +10704,4519,7,3,f +10704,45749,8,2,f +10704,6538b,8,1,f +10704,kraataund,137,1,f +10705,3001a,47,1,f +10705,3010,15,10,f +10705,3010p30,15,2,f +10705,3010pb036e,15,1,f +10705,3020,15,1,f +10705,3020,4,1,f +10705,3021,15,2,f +10705,3023,15,1,f +10705,3030,15,1,f +10705,3035,15,3,f +10705,3062a,1,17,f +10705,3137c01,0,1,f +10705,3137c02,0,4,f +10705,3139,0,2,f +10705,3183b,15,1,f +10705,3184,15,1,f +10705,7b,0,8,f +10706,10201,0,2,f +10706,11090,72,1,f +10706,11291,0,1,f +10706,11477,85,2,f +10706,15571pr0001,0,1,f +10706,18987,0,1,f +10706,19185,0,1,f +10706,2412b,179,1,f +10706,24151,85,1,f +10706,24151,0,1,f +10706,2432,70,2,f +10706,24326,71,2,f +10706,30028,0,4,f +10706,3005pr0006,73,1,f +10706,30153,47,1,f +10706,3023,14,3,f +10706,3626cpr0002,0,1,f +10706,3626cpr0003,0,1,f +10706,3829c01,14,2,f +10706,41879a,0,2,f +10706,43892,0,1,f +10706,4624,71,1,t +10706,4624,71,2,f +10706,4624,14,1,t +10706,4624,14,2,f +10706,4740,71,1,f +10706,54200,0,4,f +10706,54200,15,1,f +10706,54200,46,1,t +10706,54200,40,1,t +10706,54200,15,1,t +10706,54200,0,1,t +10706,54200,40,2,f +10706,54200,46,4,f +10706,59895,0,4,f +10706,59900,179,1,f +10706,59900,182,2,f +10706,60470a,71,1,f +10706,6126b,182,1,f +10706,61409,0,2,f +10706,6141,36,4,f +10706,6141,36,1,t +10706,74967,14,2,f +10706,74967,71,2,f +10706,85984pr0005,0,1,f +10706,87580,14,1,f +10706,92946,0,2,f +10706,93274,0,2,f +10706,973pr0001c01,72,1,f +10706,973pr0002c01,0,1,f +10706,98721,0,1,t +10706,98721,0,1,f +10706,98729,0,1,f +10706,98834,85,1,f +10706,99780,72,1,f +10707,2555,4,2,f +10707,2555,0,2,f +10707,2555,15,2,f +10707,3024,34,2,f +10707,3024,33,2,f +10707,3024,46,2,f +10707,3024,36,2,f +10707,3062b,46,2,f +10707,3062b,34,2,f +10707,3062b,33,2,f +10707,3062b,36,2,f +10707,3960,57,2,f +10707,4081b,0,2,f +10707,4081b,4,2,f +10707,4081b,15,2,f +10707,4085c,4,2,f +10707,4085c,15,2,f +10707,4085c,0,2,f +10707,4589,57,5,f +10707,4589,36,3,f +10707,4740,57,3,f +10707,4740,36,3,f +10707,6019,15,2,f +10707,6019,0,2,f +10707,6019,4,2,f +10707,6141,57,4,f +10707,6141,46,4,f +10707,6141,36,4,f +10707,6141,34,4,f +10707,6141,47,4,f +10708,11213,322,1,f +10708,11476,71,2,f +10708,11816pr0005,78,1,f +10708,15745,45,1,f +10708,16577,19,2,f +10708,16925pr0005c01,19,1,f +10708,18646,19,1,f +10708,26466,0,1,f +10708,2877,14,1,f +10708,3005,19,2,f +10708,3021,70,1,f +10708,3021,19,1,f +10708,3022,2,1,f +10708,3023,30,4,f +10708,3023,19,1,f +10708,3031,2,1,f +10708,3036,2,1,f +10708,3062b,41,2,f +10708,3062b,27,1,f +10708,3068bpr0297,15,1,f +10708,3069b,5,2,f +10708,3245b,19,2,f +10708,3297,320,2,f +10708,33051,4,1,f +10708,33172,25,1,f +10708,33183,10,1,t +10708,33183,10,1,f +10708,33291,4,5,f +10708,33291,10,5,f +10708,33291,4,1,t +10708,33291,10,1,t +10708,33303,15,1,f +10708,3710,15,1,f +10708,4349,72,1,f +10708,4599b,15,1,t +10708,4599b,15,1,f +10708,4738a,70,1,f +10708,57539pat0004,47,1,f +10708,58176,179,1,f +10708,59900,26,1,f +10708,60897,19,4,f +10708,6141,41,2,f +10708,6141,41,1,t +10708,61485,71,1,f +10708,6636,30,1,f +10708,87087,71,2,f +10708,92258,0,1,f +10708,92456pr0100c01,78,1,f +10708,94717,30,3,t +10708,94717,30,1,f +10708,94718,30,1,f +10708,94719,30,1,f +10708,94720,30,1,t +10708,94720,30,1,f +10708,94721,30,1,f +10708,94722,30,1,f +10708,94723,30,1,f +10708,94724,30,1,f +10708,94725,30,1,f +10708,94725,30,3,t +10708,95343,4,1,f +10708,95344,297,1,t +10708,95344,297,1,f +10708,98138,71,2,f +10708,98138,71,1,t +10708,98283,84,4,f +10708,99207,15,2,f +10709,2412b,0,2,f +10709,2412b,71,4,f +10709,2419,71,1,f +10709,2431,14,1,f +10709,2431,320,1,f +10709,2445,15,2,f +10709,2450,320,2,f +10709,2508,0,1,f +10709,2654,71,1,f +10709,2877,71,4,f +10709,3002,15,1,f +10709,3004,1,1,f +10709,3004,15,6,f +10709,3020,1,4,f +10709,3020,320,2,f +10709,3021,14,2,f +10709,3021,71,1,f +10709,3023,320,5,f +10709,3023,36,1,f +10709,3023,0,1,f +10709,3023,71,3,f +10709,3023,15,2,f +10709,3023,14,2,f +10709,3024,36,2,f +10709,3024,182,8,f +10709,3029,15,1,f +10709,3032,72,2,f +10709,3038,15,2,f +10709,3068b,320,3,f +10709,3307,15,1,f +10709,33078,4,2,f +10709,3622,15,3,f +10709,3626bpr0389,14,1,f +10709,3626cpr0892,14,1,f +10709,3660,15,6,f +10709,3666,320,7,f +10709,3666,71,3,f +10709,3710,72,4,f +10709,3710,15,1,f +10709,3829c01,1,1,f +10709,3899,4,2,f +10709,4032a,70,1,f +10709,4070,15,5,f +10709,4079,14,2,f +10709,4085c,71,1,f +10709,4162,320,1,f +10709,4176,41,1,f +10709,4282,71,1,f +10709,43337,14,2,f +10709,44301a,14,2,f +10709,4477,71,3,f +10709,4488,0,4,f +10709,4528,179,1,f +10709,4623,71,1,f +10709,4719,4,1,f +10709,4740,72,1,f +10709,47457,4,3,f +10709,4865b,14,1,f +10709,50745,72,4,f +10709,50745,14,4,f +10709,50950,15,6,f +10709,52036,72,1,f +10709,52038,14,2,f +10709,52501,14,2,f +10709,54200,47,2,f +10709,54200,47,1,t +10709,54200,72,1,t +10709,54200,36,2,f +10709,54200,14,2,f +10709,54200,14,1,t +10709,54200,72,2,f +10709,54200,36,1,t +10709,57783,41,2,f +10709,6014b,71,8,f +10709,60475a,15,2,f +10709,60581,15,2,f +10709,60581,41,2,f +10709,60583b,15,2,f +10709,6126b,182,1,f +10709,6141,71,1,t +10709,6141,71,1,f +10709,6141,47,2,f +10709,6141,47,2,t +10709,6157,71,2,f +10709,6180,320,1,f +10709,62810,308,1,f +10709,63082,71,1,f +10709,64567,0,1,f +10709,6636,15,4,f +10709,73983,71,2,f +10709,85984,14,2,f +10709,87544,15,2,f +10709,87552,41,2,f +10709,87580,0,1,f +10709,87697,0,8,f +10709,88283,28,1,f +10709,88930,14,1,f +10709,92851,47,2,f +10709,93273,72,1,f +10709,970c00,272,1,f +10709,970c00,19,1,f +10709,973pr1617c01,2,1,f +10709,973pr1918c01,73,1,f +10709,98281,14,1,f +10710,15427pr0001,0,1,f +10710,3626cpr1297,14,1,f +10710,3678bpr0023b,0,1,f +10710,88646,0,1,f +10710,93553,0,1,f +10710,973pr0512c01,0,1,f +10711,11478,0,6,f +10711,11946,4,2,f +10711,11947,4,2,f +10711,11949,71,2,f +10711,11950,71,2,f +10711,13731,15,2,f +10711,2654,0,1,f +10711,2736,71,4,f +10711,2780,0,190,f +10711,2780,0,3,t +10711,2825,71,4,f +10711,2850a,71,8,f +10711,2851,14,8,f +10711,2852,71,8,f +10711,2853,14,2,f +10711,2854,19,3,f +10711,3021,71,4,f +10711,3024,15,2,f +10711,3024,15,1,t +10711,3069b,15,2,f +10711,32000,71,4,f +10711,32009,4,2,f +10711,32009,0,4,f +10711,32013,4,13,f +10711,32013,0,4,f +10711,32013,71,2,f +10711,32014,71,1,f +10711,32016,71,4,f +10711,32018,15,2,f +10711,32034,4,8,f +10711,32039,14,4,f +10711,32054,0,1,f +10711,32054,4,20,f +10711,32056,0,4,f +10711,32062,4,34,f +10711,32065,14,2,f +10711,32073,71,22,f +10711,32123b,14,1,t +10711,32123b,14,14,f +10711,32138,0,3,f +10711,32140,4,6,f +10711,32140,0,10,f +10711,32184,71,10,f +10711,32198,19,1,f +10711,32250,4,2,f +10711,32269,0,4,f +10711,32270,0,8,f +10711,32278,4,13,f +10711,32278,15,4,f +10711,32278,0,1,f +10711,32291,71,8,f +10711,32293,0,7,f +10711,32294,0,16,f +10711,32316,4,8,f +10711,32316,15,2,f +10711,32333,71,2,f +10711,32449,4,6,f +10711,32494,71,4,f +10711,32523,15,8,f +10711,32523,71,7,f +10711,32524,4,4,f +10711,32524,15,4,f +10711,32524,0,9,f +10711,32525,15,4,f +10711,32525,4,3,f +10711,32526,14,1,f +10711,32526,15,4,f +10711,32526,4,4,f +10711,32530,4,2,f +10711,32556,19,8,f +10711,32557,4,2,f +10711,33299a,0,6,f +10711,3666,15,2,f +10711,3673,71,8,f +10711,3673,71,1,t +10711,3705,0,15,f +10711,3706,0,6,f +10711,3707,0,2,f +10711,3708,0,1,f +10711,3713,71,21,f +10711,3713,71,1,t +10711,3737,0,1,f +10711,3743,71,6,f +10711,3941,4,1,f +10711,40490,15,2,f +10711,40490,4,5,f +10711,40490,0,5,f +10711,41239,15,2,f +10711,41239,4,5,f +10711,4150,0,1,f +10711,41677,4,2,f +10711,41678,4,7,f +10711,42003,4,6,f +10711,42003,0,12,f +10711,4274,1,17,f +10711,4274,1,1,t +10711,43093,1,23,f +10711,43857,0,11,f +10711,44294,71,9,f +10711,44772,0,4,f +10711,4519,71,21,f +10711,48989,71,1,f +10711,50950,15,2,f +10711,56907,0,4,f +10711,59426,72,2,f +10711,59443,14,13,f +10711,60483,71,20,f +10711,60484,0,8,f +10711,60485,71,1,f +10711,6141,47,6,f +10711,6141,47,1,t +10711,61903,71,2,f +10711,62462,0,15,f +10711,62462,71,9,f +10711,62531,15,1,f +10711,62821,72,1,f +10711,63864,15,2,f +10711,63869,71,12,f +10711,64178,71,1,f +10711,64179,71,2,f +10711,64391,15,3,f +10711,64392,15,3,f +10711,64392,4,2,f +10711,64393,15,1,f +10711,64393,0,1,f +10711,64394,15,1,f +10711,64680,15,1,f +10711,64681,0,1,f +10711,64681,15,1,f +10711,64682,4,2,f +10711,64682,15,3,f +10711,64683,15,3,f +10711,64782,0,4,f +10711,6536,4,5,f +10711,6538b,19,1,f +10711,6539,4,1,f +10711,6542b,72,3,f +10711,6553,0,3,f +10711,6558,1,130,f +10711,6587,28,3,f +10711,6589,19,1,t +10711,6589,19,9,f +10711,6628,0,9,f +10711,6632,15,16,f +10711,6632,0,4,f +10711,6641,4,1,f +10711,76537,14,4,f +10711,78c11,179,6,f +10711,87080,15,1,f +10711,87082,0,7,f +10711,87083,72,15,f +10711,87086,15,1,f +10711,87408,0,3,f +10711,87761,0,1,f +10711,92693,71,3,f +10711,92906,72,2,f +10711,92909,72,4,f +10711,94925,71,2,f +10711,98989,71,4,f +10712,12825,71,12,f +10712,2412b,0,9,f +10712,2419,72,1,f +10712,2420,71,4,f +10712,2420,28,4,f +10712,2431,320,14,f +10712,2432,71,4,f +10712,2436,0,4,f +10712,2444,14,10,f +10712,2445,71,1,f +10712,2540,0,2,f +10712,2653,0,2,f +10712,2654,19,16,f +10712,2730,14,4,f +10712,2780,0,7,t +10712,2780,0,78,f +10712,2877,14,8,f +10712,2903,72,20,f +10712,298c02,71,10,f +10712,298c02,71,3,t +10712,3001,71,4,f +10712,30031,0,1,f +10712,3004,71,8,f +10712,30042,72,7,f +10712,3009,71,4,f +10712,3010,71,6,f +10712,3020,4,2,f +10712,3020,72,18,f +10712,3021,71,12,f +10712,3022,72,4,f +10712,3023,19,37,f +10712,3027,71,2,f +10712,3030,0,2,f +10712,3032,71,4,f +10712,3033,71,1,f +10712,3034,72,3,f +10712,3035,71,3,f +10712,30350b,72,2,f +10712,30374,41,2,f +10712,30374,71,7,f +10712,30374,42,1,f +10712,30377,0,2,f +10712,30377,0,1,t +10712,3039,71,6,f +10712,3039pr0014,0,1,f +10712,3040b,72,2,f +10712,30553,71,4,f +10712,30565,72,2,f +10712,3068b,71,16,f +10712,3069b,72,2,f +10712,3069b,320,6,f +10712,3069b,40,16,f +10712,3069b,71,11,f +10712,3069bpr0070,0,4,f +10712,3176,71,1,f +10712,32000,4,2,f +10712,32002,72,2,f +10712,32002,72,2,t +10712,32013,72,1,f +10712,32018,72,7,f +10712,32028,2,13,f +10712,32028,71,9,f +10712,32028,14,4,f +10712,32054,4,10,f +10712,32062,4,6,f +10712,32123b,14,1,t +10712,32123b,14,4,f +10712,32123b,71,2,f +10712,32123b,71,2,t +10712,32140,72,4,f +10712,32184,0,2,f +10712,32192,72,8,f +10712,32278,72,4,f +10712,32324,71,3,f +10712,3245c,71,8,f +10712,32523,72,6,f +10712,32524,71,4,f +10712,32526,0,4,f +10712,32556,19,9,f +10712,3626bpr0514,78,1,f +10712,3626bpr0525,78,2,f +10712,3626bpr0555,25,1,f +10712,3626bpr0667,73,1,f +10712,3626bpr0681,1,1,f +10712,3660,72,6,f +10712,3665,71,8,f +10712,3666,72,4,f +10712,3673,71,3,t +10712,3673,71,12,f +10712,3676,72,2,f +10712,3679,71,2,f +10712,3680,0,2,f +10712,3685,71,2,f +10712,3701,72,7,f +10712,3702,71,5,f +10712,3703,0,4,f +10712,3705,0,4,f +10712,3710,19,29,f +10712,3794b,71,8,f +10712,3795,72,17,f +10712,3894,72,8,f +10712,3895,71,6,f +10712,3938,71,4,f +10712,3957a,71,7,f +10712,3960,71,1,f +10712,4032a,0,21,f +10712,4032a,71,8,f +10712,4079b,0,4,f +10712,4081b,0,2,f +10712,4085c,0,4,f +10712,41239,0,2,f +10712,4162,71,4,f +10712,41677,4,2,f +10712,41769,71,1,f +10712,41770,71,1,f +10712,42003,71,24,f +10712,42446,72,10,f +10712,4274,71,2,t +10712,4274,71,26,f +10712,4286,71,6,f +10712,4286,0,4,f +10712,4287,72,2,f +10712,43093,1,36,f +10712,4345b,71,2,f +10712,4346,71,2,f +10712,43722,72,1,f +10712,43723,72,1,f +10712,43857,0,2,f +10712,43898,72,2,f +10712,44300,71,4,f +10712,44301a,72,4,f +10712,44302a,71,4,f +10712,44375a,71,10,f +10712,4460b,71,4,f +10712,44728,14,4,f +10712,44728,72,1,f +10712,4519,71,1,f +10712,4589,72,1,f +10712,4697b,71,3,f +10712,4697b,71,3,t +10712,4740,2,2,f +10712,4740,71,2,f +10712,47458,72,2,f +10712,47905,71,2,f +10712,48183,2,1,f +10712,48336,71,13,f +10712,48723,72,2,f +10712,50304,71,3,f +10712,50305,71,3,f +10712,50745,72,2,f +10712,51739,71,9,f +10712,52107,0,2,f +10712,53989,148,4,f +10712,54200,71,5,t +10712,54200,71,14,f +10712,54383,71,4,f +10712,54384,71,4,f +10712,57899,0,2,f +10712,58247,0,2,t +10712,58247,0,2,f +10712,59426,72,10,f +10712,6019,72,23,f +10712,60208,71,1,f +10712,60474,71,2,f +10712,60478,0,2,f +10712,6106,0,2,f +10712,61183,70,1,f +10712,61184,71,2,f +10712,61189pr0003,15,2,f +10712,61190a,0,1,t +10712,61190b,0,1,f +10712,61190c,0,1,f +10712,61195pr01,15,1,f +10712,6141,0,38,f +10712,6141,46,4,t +10712,6141,0,5,t +10712,6141,71,2,f +10712,6141,46,12,f +10712,6141,71,1,t +10712,6178,71,2,f +10712,6179,71,2,f +10712,6180,71,11,f +10712,62409,148,1,f +10712,62462,0,6,f +10712,62462,71,4,f +10712,63585,0,2,t +10712,63586,0,1,f +10712,63586,0,1,t +10712,63864,71,10,f +10712,63868,71,16,f +10712,63965,71,2,f +10712,64567,80,3,f +10712,6536,4,2,f +10712,6541,0,6,f +10712,6558,1,2,f +10712,6587,28,2,f +10712,6636,71,12,f +10712,6942,71,2,f +10712,76138,71,2,f +10712,87079,71,4,f +10712,87571pr0001,73,1,f +10712,90538,308,1,f +10712,970c00,308,1,f +10712,970c00,0,1,f +10712,970c00,72,1,f +10712,970x026,15,2,f +10712,970x192,71,1,f +10712,973pr0470c01,15,2,f +10712,973pr1358ac01,0,1,f +10712,973pr1388c01,25,1,f +10712,973pr1637c01,73,1,f +10712,973pr1639c01,308,1,f +10713,2412b,72,1,f +10713,2412b,72,1,t +10713,2436,15,1,f +10713,2456,72,1,f +10713,3020,4,1,f +10713,3024,46,2,f +10713,3024,46,1,t +10713,3626bpr0389,14,1,f +10713,3788,4,1,f +10713,3829c01,15,1,f +10713,3834,15,1,f +10713,4083,15,1,f +10713,4211,4,1,f +10713,4865a,40,2,f +10713,6014b,15,4,f +10713,6015,0,4,f +10713,6141,33,2,f +10713,6141,33,1,t +10713,6157,0,2,f +10713,970c00,0,1,f +10713,973pr1187c01,0,1,f +10716,2412b,2,2,f +10716,2412b,42,3,f +10716,2412b,1,2,f +10716,2431,7,1,f +10716,2456,8,3,f +10716,2508,0,1,f +10716,2543,0,1,f +10716,2877,4,2,f +10716,2926,7,2,f +10716,298c02,15,5,f +10716,3001,8,2,f +10716,3002,0,1,f +10716,30027a,15,4,f +10716,30028,0,4,f +10716,3003,8,2,f +10716,3004,0,2,f +10716,3004pc0,15,1,f +10716,3008,0,2,f +10716,3010,0,2,f +10716,30150,0,2,f +10716,30151a,42,1,f +10716,30157,7,4,f +10716,30162,8,1,f +10716,30165,8,1,f +10716,3020,0,1,f +10716,3020,14,1,f +10716,3022,14,2,f +10716,3023,14,1,f +10716,3023,0,1,f +10716,3024,15,1,f +10716,30285,15,8,f +10716,3030,0,2,f +10716,3032,8,1,f +10716,3034,0,1,f +10716,3036,0,1,f +10716,30365,8,4,f +10716,30387,14,4,f +10716,30389a,7,1,f +10716,3039,0,2,f +10716,30391,0,8,f +10716,30396,0,1,f +10716,3040b,42,4,f +10716,30542,0,2,f +10716,30554a,7,2,f +10716,3062b,2,2,f +10716,3068b,0,2,f +10716,3069bp03,7,1,f +10716,3183c,7,1,f +10716,32014,14,1,f +10716,32059,14,1,f +10716,32062,4,1,f +10716,32064a,14,1,f +10716,32074c01,0,2,f +10716,32084,0,1,f +10716,32123b,7,4,f +10716,32123b,7,1,t +10716,3403,0,2,f +10716,3404,0,1,f +10716,3460,0,1,f +10716,3626bpb0058,14,1,f +10716,3626bpb0114,14,1,f +10716,3626bpr0895,15,1,f +10716,3648b,7,1,f +10716,3673,7,1,f +10716,3706,0,2,f +10716,3708,0,1,f +10716,3710,14,1,f +10716,3710,0,3,f +10716,3747a,0,2,f +10716,3794a,7,1,f +10716,3794a,4,1,f +10716,3795,14,4,f +10716,3829c01,7,1,f +10716,3832,8,1,f +10716,3901,0,1,f +10716,4032a,4,1,f +10716,4079,7,1,f +10716,4081b,7,2,f +10716,4081b,15,1,f +10716,4286,0,2,f +10716,43337,14,2,f +10716,4477,14,2,f +10716,4477,7,2,f +10716,4589,42,5,f +10716,4697b,7,1,f +10716,4716,14,1,f +10716,4859,0,2,f +10716,4865a,7,2,f +10716,6140,0,1,f +10716,6141,42,3,f +10716,6141,33,1,f +10716,6141,57,1,t +10716,6141,42,1,t +10716,6141,33,1,t +10716,6141,57,1,f +10716,6177px2,7,1,f +10716,6232,8,2,f +10716,6232,8,1,t +10716,6238,33,1,f +10716,6588,0,1,f +10716,6775stk01,9999,1,t +10716,73129,4,1,f +10716,76110c01,14,2,f +10716,890,0,4,f +10716,970c00pb004,0,1,f +10716,970c00pb016,0,1,f +10716,970x026,15,1,f +10716,973pb0219c01,0,1,f +10716,973pb0220c01,0,1,f +10716,rb00167,14,1,f +10716,rb00167,14,6,t +10717,2524,6,1,f +10717,30135,8,1,f +10717,30170,0,1,f +10717,30170,0,1,t +10717,30194,8,1,f +10717,3022,6,3,f +10717,30325,8,1,f +10717,30568,6,3,f +10717,3626bpx15,14,1,f +10717,3626bpx32,14,1,f +10717,3626bpx33,14,1,f +10717,3833,0,1,f +10717,3841,8,1,f +10717,4142694pb1,9999,1,t +10717,4142694pb2,9999,1,t +10717,4142694pb3,9999,1,t +10717,556,7,1,f +10717,970c00,25,1,f +10717,970c00,1,1,f +10717,970c00,8,1,f +10717,973pb0070c01,8,1,f +10717,973pb0090c01,25,1,f +10717,973px25c01,4,1,f +10718,2456,14,1,f +10718,2456,4,1,f +10718,2456,15,2,f +10718,2456,1,2,f +10718,3001,14,18,f +10718,3001,4,18,f +10718,3001,0,10,f +10718,3001,15,18,f +10718,3001,1,18,f +10718,3001,2,6,f +10718,3002,15,10,f +10718,3002,0,2,f +10718,3002,4,10,f +10718,3002,1,10,f +10718,3002,2,2,f +10718,3002,14,10,f +10718,3003,4,16,f +10718,3003,14,16,f +10718,3003,15,20,f +10718,3003,0,8,f +10718,3003,2,8,f +10718,3003,1,20,f +10718,3004,2,20,f +10718,3004,15,50,f +10718,3004,4,44,f +10718,3004,0,22,f +10718,3004,1,50,f +10718,3004,14,44,f +10718,3005,1,42,f +10718,3005,0,12,f +10718,3005,15,42,f +10718,3005,14,36,f +10718,3005,4,36,f +10718,3005,2,10,f +10718,3008,15,2,f +10718,3008,0,2,f +10718,3008,4,2,f +10718,3008,1,2,f +10718,3008,14,2,f +10718,3009,0,2,f +10718,3009,15,6,f +10718,3009,1,6,f +10718,3009,4,4,f +10718,3009,14,4,f +10718,3010,0,10,f +10718,3010,1,28,f +10718,3010,2,6,f +10718,3010,4,24,f +10718,3010,15,28,f +10718,3010,14,24,f +10718,3622,0,2,f +10718,3622,15,6,f +10718,3622,4,6,f +10718,3622,14,4,f +10718,3622,1,6,f +10718,3622,2,2,f +10719,2357,8,1,f +10719,2412b,15,3,f +10719,2431,7,4,f +10719,2432,15,1,f +10719,2436,14,1,f +10719,2437,41,1,f +10719,2439,8,1,f +10719,2453a,15,2,f +10719,2454a,15,5,f +10719,2456,8,1,f +10719,298c02,15,1,t +10719,298c02,15,1,f +10719,3004,1,1,f +10719,3004,15,2,f +10719,3004,14,1,f +10719,3004,4,2,f +10719,3004,8,1,f +10719,3005,8,2,f +10719,3005,4,2,f +10719,3008,4,2,f +10719,3009,15,1,f +10719,3010,8,2,f +10719,3010,4,2,f +10719,30179,15,1,f +10719,3020,7,1,f +10719,3022,0,1,f +10719,30222,4,1,f +10719,30222,6,1,f +10719,3023,0,3,f +10719,3039p70,15,1,f +10719,3062b,33,4,f +10719,3062b,1,2,f +10719,3062b,36,2,f +10719,3062b,14,2,f +10719,3062b,4,2,f +10719,3062b,7,2,f +10719,3062b,46,2,f +10719,3068b,14,1,f +10719,3069bpr0100,2,2,f +10719,3070b,46,1,t +10719,3070b,46,2,f +10719,3297,4,1,f +10719,3298,7,4,f +10719,33051,10,1,f +10719,33085,14,2,f +10719,3622,15,1,f +10719,3622px1,15,1,f +10719,3626bp02,14,2,f +10719,3626bp05,14,1,f +10719,3633,4,2,f +10719,3660,7,2,f +10719,3666,7,1,f +10719,3741,2,2,f +10719,3742,14,1,t +10719,3742,4,1,t +10719,3742,4,3,f +10719,3742,14,3,f +10719,3755,15,1,f +10719,3795,7,6,f +10719,3821,4,1,f +10719,3822,4,1,f +10719,3829c01,7,1,f +10719,3901,6,1,f +10719,3937,14,1,f +10719,3938,15,1,f +10719,3939,41,4,f +10719,3941,7,1,f +10719,4187,2,1,f +10719,4212b,0,1,f +10719,4215b,15,1,f +10719,4286,7,4,f +10719,4477,14,2,f +10719,4485,4,1,f +10719,4523,7,1,f +10719,4533,41,2,f +10719,4536,15,1,f +10719,4589,34,1,f +10719,4589,57,1,f +10719,4589,36,1,f +10719,4719,4,1,f +10719,4740,8,1,f +10719,4865a,7,1,f +10719,6014a,7,4,f +10719,6015,0,4,f +10719,6093,4,1,f +10719,6112,15,1,f +10719,6141,46,1,t +10719,6141,46,1,f +10719,6157,0,2,f +10719,6160c01,0,2,f +10719,6231,7,2,f +10719,6565,15,2,f +10719,76041c01,0,1,f +10719,92410,15,3,f +10719,92851,47,2,f +10719,970c00,0,1,f +10719,970c00,15,1,f +10719,970c00,7,1,f +10719,973p28c01,0,1,f +10719,973pb0242c01,15,1,f +10719,973px2c01,1,1,f +10720,2412b,72,3,f +10720,2431,15,5,f +10720,2432,1,1,f +10720,2540,72,1,f +10720,3004,4,1,f +10720,3005,15,6,f +10720,3009,15,3,f +10720,3010,72,1,f +10720,30150,14,1,f +10720,30162,72,2,f +10720,3020,4,4,f +10720,3021,1,2,f +10720,3022,1,1,f +10720,3023,15,2,f +10720,3023,14,3,f +10720,3023,46,1,f +10720,3023,36,2,f +10720,3024,46,1,f +10720,3033,15,1,f +10720,3037,15,1,f +10720,3040b,15,2,f +10720,30414,14,1,f +10720,3069b,72,1,f +10720,3069b,36,2,f +10720,3069b,33,4,f +10720,3069bpr0100,2,1,f +10720,3070b,15,2,f +10720,3070b,15,1,t +10720,32028,0,3,f +10720,3623,15,4,f +10720,3624,15,1,f +10720,3626bpr0387,14,1,f +10720,3626bpr0410,14,1,f +10720,3665,15,4,f +10720,3666,15,1,f +10720,3666,1,3,f +10720,3666,72,1,f +10720,3679,71,1,f +10720,3680,1,1,f +10720,3710,15,1,f +10720,3710,1,7,f +10720,3794b,15,4,f +10720,3795,72,1,f +10720,3821,15,1,f +10720,3822,15,1,f +10720,3829c01,14,1,f +10720,3899,4,1,f +10720,3900,15,1,f +10720,3962b,0,1,f +10720,4070,15,2,f +10720,4079b,14,2,f +10720,41334,72,1,f +10720,4349,72,1,f +10720,4488,71,4,f +10720,4697b,71,2,f +10720,4697b,71,1,t +10720,50745,15,4,f +10720,50859b,0,1,f +10720,50860,25,1,f +10720,50861,0,2,f +10720,50862,71,2,f +10720,52031,15,1,f +10720,52037,72,1,f +10720,52501,15,1,f +10720,54200,1,2,f +10720,54200,72,2,f +10720,54200,72,1,t +10720,54200,1,1,t +10720,54200,33,2,f +10720,54200,33,1,t +10720,54200,47,1,t +10720,54200,47,2,f +10720,58380,15,1,f +10720,58381,15,1,f +10720,6014b,71,4,f +10720,60470a,15,1,f +10720,60581,0,1,f +10720,60594,15,2,f +10720,60700,0,4,f +10720,6079,15,1,f +10720,61252,15,1,f +10720,6141,46,1,f +10720,6141,33,5,f +10720,6141,46,1,t +10720,6141,33,1,t +10720,61482,71,1,f +10720,61482,71,1,t +10720,6154,15,2,f +10720,6155,15,2,f +10720,62113,72,2,f +10720,64567,0,1,f +10720,6636,15,1,f +10720,7286stk01,9999,1,f +10720,87079,71,2,f +10720,87609,15,1,f +10720,92583,41,1,f +10720,92590,28,1,f +10720,92593,15,4,f +10720,970c00,72,1,f +10720,970c00,0,1,f +10720,973pr1188c01,0,1,f +10720,973pr1197c01,15,1,f +10721,2357,15,17,f +10721,2412b,72,5,f +10721,2420,71,6,f +10721,2423,2,4,f +10721,2431,0,2,f +10721,2431,71,8,f +10721,2432,0,2,f +10721,2445,71,2,f +10721,2454a,15,2,f +10721,2456,15,8,f +10721,2465,15,2,f +10721,2780,0,2,t +10721,2780,0,2,f +10721,3001,2,1,f +10721,3001,15,3,f +10721,3002,15,6,f +10721,3003,15,11,f +10721,3004,15,20,f +10721,3004,27,2,f +10721,3005,15,22,f +10721,3007,4,1,f +10721,3007,15,8,f +10721,3008,15,37,f +10721,3009,15,15,f +10721,3010,15,20,f +10721,3010,0,3,f +10721,30165,14,1,f +10721,3020,19,1,f +10721,3020,71,2,f +10721,3021,70,1,f +10721,3022,72,1,f +10721,3022,2,1,f +10721,3023,15,19,f +10721,3023,72,2,f +10721,3023,71,10,f +10721,3024,71,6,f +10721,3031,71,1,f +10721,3032,71,2,f +10721,3032,4,5,f +10721,3034,71,1,f +10721,3035,71,2,f +10721,3035,4,3,f +10721,3036,0,1,f +10721,3037,4,77,f +10721,3038,4,16,f +10721,3039,4,20,f +10721,3040b,2,4,f +10721,3040b,4,5,f +10721,3041,4,8,f +10721,3043,4,1,f +10721,3045,4,2,f +10721,3046a,4,16,f +10721,3048c,4,4,f +10721,3048c,4,1,t +10721,3049b,4,2,f +10721,3062b,46,2,f +10721,3062b,72,4,f +10721,3062b,70,3,f +10721,3062b,71,12,f +10721,3068b,0,1,f +10721,3069b,71,9,f +10721,3069b,4,1,f +10721,3070b,72,2,t +10721,3070b,72,28,f +10721,3070b,71,3,t +10721,3070b,71,37,f +10721,3185,0,6,f +10721,32000,71,4,f +10721,32028,71,4,f +10721,3455,15,5,f +10721,3460,15,9,f +10721,3460,0,1,f +10721,3622,15,22,f +10721,3660,2,2,f +10721,3665,71,4,f +10721,3666,15,4,f +10721,3710,15,4,f +10721,3710,71,11,f +10721,3794a,0,4,f +10721,3795,70,2,f +10721,3795,71,1,f +10721,3811,2,1,f +10721,3854,15,8,f +10721,4070,15,7,f +10721,4085c,15,3,f +10721,4162,71,18,f +10721,42446,72,2,f +10721,4282,71,2,f +10721,44728,15,2,f +10721,4477,71,6,f +10721,4510,71,4,f +10721,4599a,0,2,f +10721,47899c01,71,1,f +10721,54200,14,1,f +10721,60594,0,4,f +10721,6112,15,4,f +10721,6141,14,5,f +10721,6141,4,2,t +10721,6141,4,6,f +10721,6141,70,1,t +10721,6141,14,3,t +10721,6141,0,3,t +10721,6141,70,12,f +10721,6141,34,12,f +10721,6141,0,19,f +10721,6141,34,2,t +10721,6231,15,4,f +10721,6636,0,4,f +10721,73194c01,71,1,f +10722,264,1,1,f +10722,3010,1,3,f +10722,3741,2,4,f +10722,3742,14,1,t +10722,3742,4,3,f +10722,3742,15,2,t +10722,3742,15,6,f +10722,3742,4,1,t +10722,3742,14,3,f +10722,4325,4,1,f +10722,4362acx1,4,1,f +10722,4452,14,1,f +10722,4461,1,1,f +10723,85544,4,25,f +10724,2352,4,1,f +10724,2356,4,1,f +10724,3001,4,5,f +10724,3001p06,4,1,f +10724,3185,4,2,f +10724,3483,0,6,f +10724,3941,14,4,f +10724,4000,14,1,f +10724,4180c02,0,3,f +10724,4202,4,1,f +10724,4744pb21,4,1,f +10724,4747,4,1,f +10724,4748,4,1,f +10724,5,4,1,f +10724,fab13c,9999,1,f +10727,2352,14,1,f +10727,2456,4,2,f +10727,3001,1,5,f +10727,3001,15,4,f +10727,3001,14,5,f +10727,3001,4,6,f +10727,3001,0,2,f +10727,3002,14,2,f +10727,3002,1,2,f +10727,3002,4,4,f +10727,3002,15,2,f +10727,3003,15,6,f +10727,3003,1,8,f +10727,3003,4,12,f +10727,3003,14,10,f +10727,3003,0,4,f +10727,3003pe2,14,2,f +10727,3007,1,2,f +10727,3185,14,2,f +10727,3483,0,4,f +10727,4202,2,1,f +10727,4727,2,2,f +10727,4728,15,1,f +10727,4728,14,1,f +10727,4744,1,1,f +10727,4744,4,1,f +10727,4744pr0001,0,1,f +10727,4744pr0002,4,1,f +10727,4745,14,1,f +10727,600,15,1,f +10727,601,15,2,f +10727,6213pb05,4,1,f +10727,6214px1,2,1,f +10727,6215,4,8,f +10727,6215,14,2,f +10727,6216,2,1,f +10727,6216,4,2,f +10727,6232,4,1,f +10727,6235,1,1,f +10727,6236,1,1,f +10727,6248,4,4,f +10727,6249,4,2,f +10728,11198,5,2,f +10728,11249,297,1,f +10728,12651,212,2,f +10728,16375,85,3,f +10728,16499,297,2,f +10728,18762,31,1,f +10728,18763,226,1,f +10728,18921,15,2,f +10728,19365,15,1,f +10728,19942,15,3,f +10728,20230,71,1,f +10728,20678,41,1,f +10728,20820,15,1,f +10728,3011,5,2,f +10728,3011,72,2,f +10728,31110,85,2,f +10728,3437,72,2,f +10728,3437,85,12,f +10728,3437,31,10,f +10728,4066,31,6,f +10728,4066,5,4,f +10728,40666,4,2,f +10728,44524,15,1,f +10728,4886,5,2,f +10728,6474,85,3,f +10728,72226,15,1,f +10728,75689,30,2,f +10728,87084,71,2,f +10728,92005,4,1,f +10728,98222,31,1,f +10728,98223,85,1,f +10728,98225,15,6,f +10728,98236,29,1,f +10728,98238,85,1,f +10728,99771,30,1,f +10728,99771,14,1,f +10729,3008pb027,15,1,f +10729,3008pb056,15,1,f +10729,3008pb060,15,1,f +10729,3008px4,15,1,f +10729,3009pb026,15,1,f +10729,3009pb058,15,1,f +10729,3009px15,15,1,f +10731,11272,148,1,f +10731,11305,33,2,f +10731,11334,320,2,f +10731,15377pr01,320,1,f +10731,2780,0,2,f +10731,2780,0,1,t +10731,4519,71,1,f +10731,4740,33,1,f +10731,61184,71,1,f +10731,74261,72,2,f +10731,87747,15,8,f +10731,87747,15,1,t +10731,90607,0,2,f +10731,90609,0,2,f +10731,90612,0,1,f +10731,90617,72,4,f +10731,90625,0,1,f +10731,90639,33,2,f +10731,90639,297,2,f +10731,90650,148,2,f +10731,90652,297,1,f +10731,90652,148,1,f +10731,90661,297,2,f +10731,92233,297,2,f +10731,93571,0,1,f +10731,98313,297,8,f +10731,98577,72,1,f +10731,98603s01pr0005,148,1,f +10731,98606,297,1,f +10732,3022,72,2,f +10732,3626bpr0190,15,1,f +10732,3659,72,2,f +10732,3794a,71,1,f +10732,4460b,72,2,f +10732,59900,70,2,f +10732,6126a,57,2,f +10734,122c01,0,2,f +10734,3004,0,1,f +10734,3005,0,2,f +10734,3020,0,1,f +10734,3024,36,2,f +10734,3024,46,2,f +10734,3024,0,2,f +10734,3068b,0,1,f +10734,3626apr0001,14,1,f +10734,3629,7,1,f +10734,3641,0,4,f +10734,3710,0,1,f +10734,3788,0,2,f +10734,3821,0,1,f +10734,3822,0,1,f +10734,3823,47,1,f +10734,3829c01,4,1,f +10734,3937,0,1,f +10734,3938,7,1,f +10734,3957a,7,1,f +10734,4070,0,4,f +10734,4079,14,1,f +10734,4212a,4,1,f +10734,970c00,1,1,f +10734,973c01,15,1,f +10735,264,14,2,f +10735,3001,4,10,f +10735,3001,14,2,f +10735,3002,4,4,f +10735,3003,15,2,f +10735,3004,4,12,f +10735,3030,14,2,f +10735,3033,4,2,f +10735,3068pb20,15,2,f +10735,3455,4,2,f +10735,3622pf1,4,1,f +10735,3633,4,2,f +10735,3741,2,2,f +10735,3742,14,3,f +10735,3742,15,1,t +10735,3742,14,1,t +10735,3742,15,3,f +10735,3857,2,1,f +10735,3979c01,14,1,f +10735,3979c02,4,4,f +10735,4332,366,1,f +10735,4461,14,1,f +10735,4730,4,1,f +10735,4776,14,1,f +10735,4781,7,1,f +10735,4796c01,4,1,f +10735,4823c01,14,1,f +10735,4876,14,1,f +10735,556,7,1,f +10735,787c02,4,7,f +10735,fab6c,-1,1,f +10735,fab9g,-1,1,f +10735,fabaj1,14,2,f +10735,fabaj3,4,1,f +10735,fabbc1,4,1,f +10735,fabbc1b,14,1,f +10737,2412b,14,3,f +10737,2420,14,2,f +10737,2420,72,2,f +10737,2431,0,1,f +10737,2525,14,1,f +10737,2817,0,2,f +10737,3004,0,1,f +10737,3008,0,2,f +10737,3010,71,3,f +10737,3020,14,2,f +10737,3020,72,5,f +10737,3021,71,4,f +10737,3022,0,2,f +10737,3023,71,2,f +10737,30237a,14,1,f +10737,3031,72,1,f +10737,3034,14,1,f +10737,30355,72,1,f +10737,30356,72,1,f +10737,30361dps1,15,1,f +10737,30362,15,2,f +10737,30363,72,1,f +10737,30367apr01,15,1,f +10737,3037,71,2,f +10737,30374,0,1,f +10737,30374,41,1,f +10737,30386,0,3,f +10737,3039pr0014,0,1,f +10737,30553,0,2,f +10737,3069b,14,4,f +10737,32002,72,1,f +10737,32002,72,1,t +10737,32028,25,2,f +10737,32123b,71,1,t +10737,32123b,71,1,f +10737,32126,71,1,f +10737,32140,71,2,f +10737,3626bpr0514,78,1,f +10737,3666,72,2,f +10737,3701,72,1,f +10737,3705,0,2,f +10737,3710,71,6,f +10737,3749,19,1,f +10737,3894,0,2,f +10737,4150pr0005,15,1,f +10737,41747,71,2,f +10737,41748,71,2,f +10737,41767,14,1,f +10737,41768,14,1,f +10737,41769,14,3,f +10737,41770,14,3,f +10737,41883,40,1,f +10737,4287,72,2,f +10737,43719,14,1,f +10737,43722,72,1,f +10737,43723,72,1,f +10737,44300,72,5,f +10737,44302a,0,2,f +10737,44568,71,2,f +10737,44570,14,2,f +10737,4477,71,2,f +10737,4589,33,3,f +10737,48183,71,1,f +10737,4855,72,1,f +10737,4868b,71,2,f +10737,54200,72,2,f +10737,54200,72,1,t +10737,54383,72,3,f +10737,54384,72,3,f +10737,60471,4,1,f +10737,60474,14,1,f +10737,60479,14,2,f +10737,60483,0,1,f +10737,61183,70,1,f +10737,61184,71,2,f +10737,6141,0,1,t +10737,6141,0,6,f +10737,6191,71,2,f +10737,6232,14,2,f +10737,64567,71,1,f +10737,6541,72,2,f +10737,6636,14,4,f +10737,7669stk01,9999,1,t +10737,970c00,0,1,f +10737,973pr1358ac01,0,1,f +10738,11477,15,4,f +10738,11618,26,1,f +10738,11618,26,1,t +10738,11816pr0005,78,1,f +10738,14520,15,1,f +10738,15573,19,2,f +10738,18759,15,2,f +10738,18855,323,1,f +10738,2412b,179,2,f +10738,2423,2,2,f +10738,3004pr0015,15,1,f +10738,30136,70,1,f +10738,3020,0,1,f +10738,3020,27,1,f +10738,3020,26,1,f +10738,3021,71,1,f +10738,3023,14,2,f +10738,3023,15,1,f +10738,3023,1,5,f +10738,30237b,15,1,f +10738,3034,15,1,f +10738,30565,27,1,f +10738,3068b,29,1,f +10738,3298,70,1,f +10738,33291,5,1,f +10738,33291,5,1,t +10738,3623,15,4,f +10738,3666,26,2,f +10738,3710,322,2,f +10738,3823,41,1,f +10738,3829c01,14,1,f +10738,3839b,71,2,f +10738,4081b,15,2,f +10738,47457,15,1,f +10738,50745,322,4,f +10738,54200,33,1,t +10738,54200,33,2,f +10738,6014b,15,4,f +10738,6157,0,2,f +10738,87580,14,2,f +10738,87580,2,1,f +10738,87697,0,4,f +10738,88072,19,2,f +10738,92258,0,1,f +10738,92820pr0006c01b,378,1,f +10738,93095,29,1,f +10738,93273,322,1,f +10738,93274,71,1,f +10738,98138,33,2,f +10738,98138,179,2,f +10738,98138,179,1,t +10738,98138,45,1,t +10738,98138,33,1,t +10738,98138,46,1,t +10738,98138,45,4,f +10738,98138,46,2,f +10738,98389pr0002,19,1,f +10739,2399,0,1,f +10739,2412b,0,2,f +10739,2446,8,1,f +10739,2458,14,1,f +10739,2555,1,2,f +10739,3002,0,1,f +10739,3020,7,1,f +10739,3023,1,2,f +10739,3039,0,1,f +10739,3069bps9,14,1,f +10739,3626bpx141,14,1,f +10739,3838,14,1,f +10739,4623,14,1,f +10739,57467,383,2,f +10739,59275,0,2,f +10739,6041,0,1,f +10739,6090,33,1,f +10739,970x026,1,1,f +10739,973pb0075c02,0,1,f +10740,32017,7,100,f +10742,2339,0,10,f +10742,2357,71,2,f +10742,2357,0,2,f +10742,2412b,71,5,f +10742,2412b,80,6,f +10742,2412b,72,3,f +10742,2420,0,10,f +10742,2420,4,8,f +10742,2420,72,10,f +10742,2431,15,2,f +10742,2431,4,4,f +10742,2431,0,11,f +10742,2436,71,1,f +10742,2444,4,4,f +10742,2445,72,5,f +10742,2450,0,4,f +10742,2540,72,4,f +10742,2540,4,2,f +10742,2654,71,2,f +10742,2736,71,1,f +10742,2780,0,26,f +10742,2780,0,1,t +10742,2815,0,2,f +10742,2819,71,1,f +10742,3001,0,2,f +10742,3001,71,3,f +10742,3002,72,2,f +10742,3004,72,3,f +10742,3004,0,10,f +10742,3004,71,2,f +10742,3005,0,21,f +10742,3008,71,4,f +10742,3009,0,5,f +10742,3009,71,2,f +10742,3010,0,4,f +10742,3010,72,7,f +10742,3010,71,3,f +10742,3020,0,10,f +10742,3020,72,3,f +10742,3021,72,10,f +10742,3021,0,8,f +10742,3022,0,6,f +10742,3023,4,15,f +10742,3023,0,21,f +10742,3023,72,22,f +10742,3023,71,6,f +10742,3023,47,2,f +10742,3024,72,15,f +10742,3024,0,14,f +10742,3024,36,4,f +10742,3029,71,2,f +10742,3031,0,2,f +10742,3031,71,1,f +10742,3032,72,2,f +10742,3034,0,5,f +10742,3035,0,2,f +10742,3036,0,1,f +10742,3036,71,2,f +10742,3037,72,4,f +10742,3038,72,4,f +10742,30383,71,1,f +10742,3039,72,3,f +10742,3040b,0,4,f +10742,30414,0,4,f +10742,30553,0,3,f +10742,30602,0,4,f +10742,30602,72,1,f +10742,30602,40,4,f +10742,3068b,4,6,f +10742,3068b,15,2,f +10742,3069b,4,10,f +10742,3069b,0,3,f +10742,3069bpr0070,0,1,f +10742,3069bpr0086,71,1,f +10742,3069bpr0101,71,1,f +10742,3070b,0,1,t +10742,3070b,4,1,t +10742,3070b,0,6,f +10742,3070b,4,2,f +10742,32000,72,2,f +10742,32013,0,6,f +10742,32017,71,2,f +10742,32018,71,4,f +10742,32028,0,2,f +10742,32062,4,3,f +10742,32063,4,1,f +10742,32064b,72,2,f +10742,32069,0,2,f +10742,32123b,14,7,f +10742,32123b,14,1,t +10742,32184,15,2,f +10742,32270,71,5,f +10742,32316,71,2,f +10742,32523,4,6,f +10742,32526,71,6,f +10742,32532,71,1,f +10742,3460,72,3,f +10742,3460,0,9,f +10742,3622,71,6,f +10742,3622,0,4,f +10742,3622,72,4,f +10742,3623,4,2,f +10742,3623,72,10,f +10742,3623,0,18,f +10742,3647,71,1,f +10742,3660,72,23,f +10742,3665,0,4,f +10742,3666,71,2,f +10742,3666,72,5,f +10742,3666,0,3,f +10742,3700,4,5,f +10742,3701,4,2,f +10742,3702,71,4,f +10742,3706,0,3,f +10742,3707,0,4,f +10742,3708,0,1,f +10742,3709,4,1,f +10742,3710,0,11,f +10742,3710,72,12,f +10742,3713,71,4,f +10742,3713,71,1,t +10742,3738,71,2,f +10742,3743,71,1,f +10742,3747a,71,1,f +10742,3749,19,7,f +10742,3794a,72,6,f +10742,3794a,0,4,f +10742,3795,0,2,f +10742,3832,71,1,f +10742,3894,72,3,f +10742,3937,72,6,f +10742,3941,72,1,f +10742,4032a,71,1,f +10742,4070,0,10,f +10742,4085c,0,2,f +10742,4095,71,1,f +10742,4162,72,4,f +10742,4162,0,3,f +10742,41677,15,4,f +10742,41747,72,1,f +10742,41747,0,1,f +10742,41748,72,1,f +10742,41748,0,1,f +10742,41764,72,1,f +10742,41765,72,1,f +10742,41767,0,1,f +10742,41768,0,1,f +10742,41769,0,2,f +10742,41769,72,1,f +10742,41770,72,1,f +10742,41770,0,2,f +10742,4185,71,4,f +10742,41896,71,4,f +10742,41897,0,4,f +10742,42022,0,8,f +10742,4274,1,1,t +10742,4274,1,12,f +10742,4286,71,6,f +10742,4287,72,6,f +10742,43720,0,1,f +10742,43721,0,1,f +10742,43722,0,6,f +10742,43723,0,6,f +10742,44126,0,4,f +10742,44301a,0,5,f +10742,44302a,72,5,f +10742,44567a,72,2,f +10742,4460a,0,4,f +10742,4460a,72,2,f +10742,44728,4,2,f +10742,4477,72,6,f +10742,46413,0,2,f +10742,4740,36,2,f +10742,48336,0,2,f +10742,48336,71,3,f +10742,4865a,71,10,f +10742,50943,80,2,f +10742,50950,0,12,f +10742,54200,0,10,f +10742,54200,4,4,f +10742,6019,4,4,f +10742,6019,71,7,f +10742,6060,0,6,f +10742,6091,4,4,f +10742,6134,0,6,f +10742,6141,1,1,t +10742,6141,14,3,f +10742,6141,4,1,t +10742,6141,71,1,t +10742,6141,4,3,f +10742,6141,47,1,t +10742,6141,14,1,t +10742,6141,80,12,f +10742,6141,71,6,f +10742,6141,57,1,t +10742,6141,57,10,f +10742,6141,47,12,f +10742,6141,1,1,f +10742,6231,71,4,f +10742,6538b,14,3,f +10742,6541,0,5,f +10742,6558,0,14,f +10742,6587,72,4,f +10742,6636,0,3,f +10742,71076,383,4,f +10742,73983,0,4,f +10742,75535,71,4,f +10742,75535,71,1,t +10744,2412b,4,5,f +10744,2415,7,1,f +10744,2432,15,1,f +10744,2446px5,1,1,f +10744,2447,0,1,f +10744,2507,41,1,f +10744,2723,15,2,f +10744,2744,4,2,f +10744,2780,0,4,f +10744,2815,0,2,f +10744,3001,0,1,f +10744,30029,0,1,f +10744,3005,4,2,f +10744,3010,0,1,f +10744,30119,0,2,f +10744,3020,4,1,f +10744,3039,15,1,f +10744,3040b,0,4,f +10744,3068b,4,1,f +10744,3068b,15,1,f +10744,3139,0,1,f +10744,3464,47,1,f +10744,3626bp05,14,1,f +10744,3626bpx27,14,1,f +10744,3666,4,2,f +10744,3666,0,4,f +10744,3702,4,1,f +10744,3710,4,3,f +10744,3710,1,2,f +10744,3710,0,3,f +10744,3749,7,2,f +10744,3829c01,15,1,f +10744,3832,0,1,f +10744,3937,0,3,f +10744,3938,15,1,f +10744,4185,7,2,f +10744,4266,0,2,f +10744,4274,7,8,f +10744,4274,7,1,t +10744,4315,0,1,f +10744,4477,0,4,f +10744,4485,15,1,f +10744,4495b,14,2,f +10744,4859,0,1,f +10744,55296,8,1,f +10744,55297,8,2,f +10744,55298,8,1,f +10744,55299,8,2,f +10744,55300,8,1,f +10744,6112,4,2,f +10744,6126a,57,8,f +10744,6134,4,2,f +10744,6140,1,2,f +10744,6153a,4,1,f +10744,6153a,0,1,f +10744,6239,0,2,f +10744,63965,15,2,f +10744,970c00,2,1,f +10744,970x024,0,1,f +10744,973p8ac04,0,1,f +10744,973px19c01,2,1,f +10747,2343,71,5,f +10747,2357,14,4,f +10747,2412b,42,24,f +10747,2431,41,24,f +10747,2431,27,2,f +10747,2444,4,1,f +10747,2445,71,4,f +10747,2450,15,4,f +10747,2456,4,2,f +10747,2526,297,1,f +10747,2540,71,12,f +10747,2555,0,3,f +10747,2569,42,1,t +10747,2569,42,2,f +10747,2780,0,20,f +10747,2780,0,2,t +10747,2855,71,1,f +10747,2856,0,1,f +10747,3003,15,2,f +10747,30033,0,1,f +10747,3020,0,6,f +10747,3021,71,12,f +10747,3023,27,29,f +10747,3035,0,1,f +10747,3039,72,1,f +10747,30552,0,2,f +10747,30663,71,4,f +10747,3068b,0,3,f +10747,3068bpr0193,15,1,f +10747,32013,0,5,f +10747,32062,4,2,f +10747,32184,15,2,f +10747,32316,0,1,f +10747,32524,27,2,f +10747,32532,71,1,f +10747,3298,71,3,f +10747,3626c,35,1,f +10747,3626cpr0794,14,1,f +10747,3702,0,2,f +10747,3710,4,4,f +10747,3794a,27,8,f +10747,3795,71,16,f +10747,3894,72,2,f +10747,4032a,0,24,f +10747,4032a,27,2,f +10747,41854,85,8,f +10747,41862,71,4,f +10747,4282,15,2,f +10747,4282,72,8,f +10747,43093,1,8,f +10747,43857,4,2,f +10747,44728,72,2,f +10747,4519,71,4,f +10747,4697b,71,1,t +10747,4697b,71,4,f +10747,4716,71,2,f +10747,4740,71,5,f +10747,47456,72,4,f +10747,48092,71,12,f +10747,48729b,0,1,t +10747,48729b,0,1,f +10747,50231,4,1,f +10747,53585,0,1,f +10747,53989,148,3,f +10747,55206c05,72,1,f +10747,58177,0,1,f +10747,58846,72,4,f +10747,60470b,0,4,f +10747,60471,0,2,f +10747,6063,72,2,f +10747,6141,85,4,f +10747,6141,42,6,f +10747,6141,42,2,t +10747,6141,85,1,t +10747,6239,72,4,f +10747,62462,0,2,f +10747,62711,0,1,f +10747,6536,71,1,f +10747,6587,28,4,f +10747,6629,71,4,f +10747,7065stk01,9999,1,t +10747,85976,0,8,f +10747,87083,72,2,f +10747,87747,0,3,f +10747,87749,27,1,f +10747,87993,179,1,f +10747,88930,71,24,f +10747,90370pr0001,0,1,t +10747,90370pr0001,0,1,f +10747,93606,71,4,f +10747,95120,27,1,f +10747,95188,71,4,f +10747,95198,47,1,f +10747,95200,35,1,f +10747,95201pr0001,27,1,f +10747,95204pr0001,27,1,f +10747,970c00,0,1,f +10747,973pr1782c01,0,1,f +10747,973pr1783c01,4,1,f +10748,3004,14,1,f +10748,3004,4,2,f +10748,3005,1,1,f +10748,3031,0,1,f +10748,3062a,14,1,f +10748,3062a,7,1,f +10748,3137c01,0,1,f +10748,3626apr0001,14,6,f +10748,3633,0,2,f +10748,3641,0,2,f +10748,3795,0,1,f +10748,3839a,0,1,f +10748,3844,7,4,f +10748,3846p47,7,4,f +10748,3847a,7,4,f +10748,3848,7,2,f +10748,3896,8,2,f +10748,970x021,0,4,f +10748,970x021,7,2,f +10748,973p47c01,4,6,f +10750,3004,15,2,f +10750,3004,0,2,f +10750,3004,25,2,f +10750,3005,15,4,f +10750,3005,0,2,f +10750,3008,15,1,f +10750,3009,15,3,f +10750,3009,0,2,f +10750,3009,25,2,f +10750,3010,0,1,f +10750,3010,25,3,f +10750,3021,0,5,f +10750,3040b,2,1,f +10750,3040b,25,6,f +10750,3040b,15,2,f +10750,3069b,0,2,f +10750,3622,25,2,f +10750,3622,15,3,f +10750,3665,15,1,f +10750,3665,0,2,f +10750,3666,25,1,f +10750,4287,0,2,f +10750,54200,25,6,f +10750,54200,0,2,f +10750,54200,25,1,t +10750,54200,15,1,t +10750,54200,0,1,t +10750,54200,15,6,f +10750,60477,0,4,f +10750,6111,15,1,f +10750,63864,15,1,f +10751,11153,320,2,f +10751,11477,15,2,f +10751,15573,320,6,f +10751,15573,15,3,f +10751,15712,0,4,f +10751,2412b,71,2,f +10751,2420,15,4,f +10751,2654,47,1,f +10751,3020,320,4,f +10751,3022,320,4,f +10751,3022,15,3,f +10751,3023,320,1,f +10751,3023,15,2,f +10751,3023,40,1,f +10751,3024,320,1,t +10751,3024,320,1,f +10751,3069b,40,1,f +10751,3710,71,1,f +10751,3795,15,1,f +10751,3941,15,2,f +10751,3957b,0,2,f +10751,4032a,15,1,f +10751,4740,41,2,f +10751,54200,40,1,f +10751,54200,40,1,t +10751,54383,15,1,f +10751,54384,15,1,f +10751,6141,47,2,f +10751,6141,47,1,t +10751,93274,72,1,f +10751,99207,71,2,f +10752,3023,15,1,f +10752,32028,15,1,f +10752,43719,15,1,f +10752,6141,41,6,f +10752,6141,45,6,f +10752,6180pb051,15,1,f +10752,87552,15,1,f +10753,3626apr0001,14,4,f +10753,3834,0,3,f +10753,3834,15,1,f +10753,3835,7,2,f +10753,3838,7,2,f +10753,3959,7,1,f +10753,3962a,0,1,f +10753,970c00,0,4,f +10753,973p21c01,0,4,f +10754,2458,15,1,f +10754,2479,7,1,f +10754,3002,15,1,f +10754,3004,4,1,f +10754,3010,15,2,f +10754,3020,1,1,f +10754,3021,1,2,f +10754,3022,1,1,f +10754,3034,4,3,f +10754,3039,4,2,f +10754,3039,47,1,f +10754,3137c01,0,1,f +10754,3298,1,1,f +10754,3641,0,2,f +10754,3747b,15,1,f +10754,3795,1,2,f +10755,2357,19,12,f +10755,2357,0,15,f +10755,2412b,0,11,f +10755,2412b,71,5,f +10755,2420,71,2,f +10755,2420,2,37,f +10755,2420,15,4,f +10755,2431,0,8,f +10755,2432,72,2,f +10755,2432,15,3,f +10755,2436,71,5,f +10755,2450,15,4,f +10755,2450,72,2,f +10755,2456,71,2,f +10755,2540,15,4,f +10755,2555,72,1,f +10755,2817,0,4,f +10755,2877,71,7,f +10755,298c02,15,2,f +10755,298c02,71,2,f +10755,3001,0,9,f +10755,3001,2,41,f +10755,3001,19,62,f +10755,3001,72,3,f +10755,3001,71,9,f +10755,3002,15,1,f +10755,3002,0,15,f +10755,3002,19,4,f +10755,3003,0,20,f +10755,3003,19,12,f +10755,3003,71,9,f +10755,3003,2,29,f +10755,3004,2,44,f +10755,3004,19,30,f +10755,3004,15,4,f +10755,3004,0,73,f +10755,3004,72,23,f +10755,3004,1,2,f +10755,3004,4,1,f +10755,3004,71,7,f +10755,3005,19,32,f +10755,3005,1,2,f +10755,3005,2,33,f +10755,3005,0,4,f +10755,3005,15,5,f +10755,3005,71,1,f +10755,3006,0,1,f +10755,3006,71,2,f +10755,3008,72,40,f +10755,3008,71,10,f +10755,3008,0,3,f +10755,3009,1,3,f +10755,3009,0,5,f +10755,3009,71,4,f +10755,3009,72,9,f +10755,3010,2,14,f +10755,3010,19,18,f +10755,3010,71,3,f +10755,3010,1,3,f +10755,3010,72,20,f +10755,30162,72,2,f +10755,3020,72,5,f +10755,3020,14,1,f +10755,3020,15,1,f +10755,3020,2,10,f +10755,3020,19,50,f +10755,3020,71,3,f +10755,3020,0,10,f +10755,3020,1,2,f +10755,3021,15,7,f +10755,3021,72,6,f +10755,3021,2,22,f +10755,3021,71,1,f +10755,3021,0,7,f +10755,3022,19,8,f +10755,3022,1,2,f +10755,3022,15,5,f +10755,3022,2,20,f +10755,3023,0,4,f +10755,3023,1,2,f +10755,3023,4,2,f +10755,3023,15,27,f +10755,3023,19,6,f +10755,3023,2,58,f +10755,3023,71,2,f +10755,3023,47,2,f +10755,3023,14,1,f +10755,3024,4,4,f +10755,3024,71,4,f +10755,3024,19,12,f +10755,3024,2,51,f +10755,3024,15,31,f +10755,3031,2,4,f +10755,3031,1,2,f +10755,3031,72,8,f +10755,3031,0,26,f +10755,3034,0,11,f +10755,30367b,0,1,f +10755,30414,15,18,f +10755,3045,0,4,f +10755,3048c,71,1,f +10755,3048c,0,2,f +10755,3048c,4,1,f +10755,30565,72,1,f +10755,30602,40,3,f +10755,30603,0,2,f +10755,3062b,71,4,f +10755,3062b,0,6,f +10755,3065,47,145,f +10755,3065,33,242,f +10755,3065,40,1,f +10755,3068b,19,18,f +10755,3068b,71,21,f +10755,3068b,72,2,f +10755,3068b,0,32,f +10755,3069b,4,2,f +10755,3069b,19,61,f +10755,3069b,14,7,f +10755,3069b,1,2,f +10755,3069b,15,7,f +10755,3069b,71,40,f +10755,3069b,0,10,f +10755,3069b,72,14,f +10755,3070b,46,2,f +10755,3070b,36,1,f +10755,3070b,33,119,f +10755,3176,72,1,f +10755,3298,0,8,f +10755,3460,71,12,f +10755,3460,72,2,f +10755,3622,15,1,f +10755,3622,71,2,f +10755,3622,2,11,f +10755,3622,72,2,f +10755,3622,0,9,f +10755,3623,15,6,f +10755,3623,2,32,f +10755,3623,0,2,f +10755,3623,72,8,f +10755,3623,71,2,f +10755,3660,15,1,f +10755,3660,71,3,f +10755,3665,15,1,f +10755,3665,71,1,f +10755,3666,71,4,f +10755,3666,72,4,f +10755,3666,15,4,f +10755,3666,0,1,f +10755,3700,72,1,f +10755,3710,19,22,f +10755,3710,2,13,f +10755,3710,0,1,f +10755,3710,71,9,f +10755,3710,15,1,f +10755,3794a,15,2,f +10755,3794a,4,2,f +10755,3794a,14,1,f +10755,3794a,19,104,f +10755,3794a,72,2,f +10755,3795,0,2,f +10755,3795,71,2,f +10755,3795,19,32,f +10755,3832,0,2,f +10755,3957a,0,1,f +10755,3957a,71,4,f +10755,4032a,71,2,f +10755,4032a,72,1,f +10755,4070,15,61,f +10755,4070,72,4,f +10755,4070,19,104,f +10755,4070,4,6,f +10755,4081b,0,2,f +10755,4081b,15,2,f +10755,4081b,4,4,f +10755,4085c,0,1,f +10755,4085c,15,2,f +10755,41539,72,16,f +10755,4162,0,8,f +10755,41769,15,4,f +10755,41769,72,2,f +10755,41770,15,4,f +10755,41770,72,2,f +10755,41855,71,1,f +10755,41855,15,5,f +10755,41855,0,5,f +10755,41855,4,1,f +10755,4274,71,13,f +10755,4286,71,3,f +10755,4589,14,1,f +10755,4589,2,1,f +10755,4589,71,2,f +10755,4733,71,2,f +10755,4740,15,1,f +10755,47905,71,4,f +10755,47905,0,1,f +10755,4865a,71,11,f +10755,4865a,19,24,f +10755,50950,0,2,f +10755,54200,33,64,f +10755,54200,15,7,f +10755,54200,47,24,f +10755,54200,72,4,f +10755,6019,0,1,f +10755,6070,40,4,f +10755,6091,71,1,f +10755,6091,0,1,f +10755,6141,19,52,f +10755,6141,4,2,f +10755,6141,14,8,f +10755,6141,15,5,f +10755,6141,72,22,f +10755,6141,47,15,f +10755,6141,0,7,f +10755,6141,46,6,f +10755,6231,19,4,f +10755,6231,71,9,f +10755,6541,15,4,f +10755,6564,15,1,f +10755,6565,15,1,f +10757,2458,7,1,f +10757,2540,4,2,f +10757,30195pb01,8,1,f +10757,30202,8,1,f +10757,3021,0,1,f +10757,3022,0,1,f +10757,30385,383,1,f +10757,3039,7,1,f +10757,3069bpa2,8,1,f +10757,3626bpb0108,14,1,f +10757,37,383,2,f +10757,59275,7,2,f +10757,6019,7,2,f +10757,6041,42,1,f +10757,970x026,4,1,f +10757,973pb0046c01,8,1,f +10761,tplan03,9999,1,f +10762,2456,4,1,f +10762,3001,14,2,f +10762,3001,4,4,f +10762,3001,1,2,f +10762,3001,15,2,f +10762,3001pr1,14,1,f +10762,3002,14,2,f +10762,3002,1,2,f +10762,3003,1,4,f +10762,3003,14,4,f +10762,3003,4,4,f +10762,3003,15,2,f +10762,3003pe2,14,2,f +10762,4727,2,1,f +10762,4728,4,1,f +10762,4744px11,14,1,f +10762,4744px4,1,1,f +10762,6215,4,2,f +10762,6216,4,1,f +10764,10p03,4,1,f +10764,272,15,1,f +10764,3001a,1,4,f +10764,3002a,1,6,f +10764,3003,1,17,f +10764,3003,47,1,f +10764,3004,47,2,f +10764,3004,1,4,f +10764,3004,15,5,f +10764,3005,1,14,f +10764,3005,15,3,f +10764,3008,1,3,f +10764,3009,1,6,f +10764,3010,47,1,f +10764,3010,1,40,f +10764,3010p30,15,2,f +10764,3010pb036e,15,1,f +10764,3020,47,3,f +10764,3020,14,1,f +10764,3022,15,2,f +10764,3022,47,1,f +10764,3023,47,6,f +10764,3024,14,2,f +10764,3024,1,1,f +10764,3024,4,1,f +10764,3027,1,2,f +10764,3031,0,2,f +10764,3032,1,1,f +10764,3033,4,1,f +10764,3033,1,1,f +10764,3035,1,2,f +10764,3035,15,2,f +10764,3039,0,8,f +10764,3062a,14,19,f +10764,3062a,47,1,f +10764,3062a,4,4,f +10764,3062a,15,7,f +10764,3062a,0,20,f +10764,3063b,0,4,f +10764,3063b,14,4,f +10764,3063b,15,44,f +10764,3068a,1,3,f +10764,3081cc01,4,3,f +10764,3137c02,0,4,f +10764,3144,79,2,f +10764,3228a,1,2,f +10764,33bc01,4,1,f +10764,3404ac01,0,1,f +10764,3460,14,2,f +10764,7b,0,8,f +10766,12825,72,1,f +10766,2412b,15,1,f +10766,2412b,71,3,f +10766,2431,320,2,f +10766,2432,1,1,f +10766,2446,15,1,f +10766,2447,40,1,t +10766,2447,40,1,f +10766,30031,72,1,f +10766,3004,0,1,f +10766,3010,0,1,f +10766,30157,71,2,f +10766,3020,1,1,f +10766,3020,71,3,f +10766,3021,1,2,f +10766,3022,15,2,f +10766,3022,71,2,f +10766,3023,36,1,f +10766,3023,0,2,f +10766,3023,71,1,f +10766,3024,36,2,f +10766,3024,47,2,f +10766,3029,72,1,f +10766,30391,0,4,f +10766,3069b,82,1,f +10766,3069bpr0100,2,1,f +10766,3069bpr0115,15,1,f +10766,3622,71,2,f +10766,3623,320,2,f +10766,3626cpr1581,14,1,f +10766,3626cpr1663,14,1,f +10766,3665,71,6,f +10766,3666,320,5,f +10766,3710,320,2,f +10766,3710,15,3,f +10766,3710,14,2,f +10766,3710,71,1,f +10766,3794b,1,1,f +10766,3795,320,2,f +10766,3829c01,71,1,f +10766,4079,0,1,f +10766,4081b,71,2,f +10766,41334,72,1,f +10766,4176,47,1,f +10766,43337,71,1,f +10766,44568,71,1,f +10766,44570,72,1,f +10766,44674,15,2,f +10766,4600,0,2,f +10766,48336,1,2,f +10766,52031,320,2,f +10766,54200,33,2,f +10766,54200,33,1,t +10766,55981,71,4,f +10766,6014b,71,4,f +10766,60470a,15,1,f +10766,60479,15,2,f +10766,60481,320,2,f +10766,6140,71,1,f +10766,6141,46,6,f +10766,6141,46,2,t +10766,6636,71,1,f +10766,87087,0,2,f +10766,87697,0,4,f +10766,92582,15,2,f +10766,92585,4,1,f +10766,92946,72,2,f +10766,93274,14,1,f +10766,970c00,272,1,f +10766,970c00,308,1,f +10766,973pr1943c01,28,1,f +10766,973pr1944c01,15,1,f +10766,98282,320,4,f +10769,3185,4,6,f +10769,3186,4,2,f +10769,3187,4,2,f +10773,14769,14,2,f +10773,14769,25,2,f +10773,14769,323,1,f +10773,14769,30,1,f +10773,14769,27,2,f +10773,14769,29,3,f +10773,15208,15,8,f +10773,15470,70,1,t +10773,15470,29,4,f +10773,15470,70,6,f +10773,15470,29,1,t +10773,15533,84,8,f +10773,15573,4,6,f +10773,15573,27,1,f +10773,18674,15,1,f +10773,2445,15,1,f +10773,3005,84,16,f +10773,30136,0,2,f +10773,3020,15,1,f +10773,3022,0,1,f +10773,3024,36,6,f +10773,3024,27,1,t +10773,3024,34,6,f +10773,3024,0,3,f +10773,3024,27,1,f +10773,3024,33,6,f +10773,3024,191,1,f +10773,3024,29,1,f +10773,3024,36,1,t +10773,3024,0,1,t +10773,3024,33,1,t +10773,3024,34,1,t +10773,3024,46,6,f +10773,3024,46,1,t +10773,3024,191,1,t +10773,3024,29,1,t +10773,3034,15,3,f +10773,3036,15,2,f +10773,3040b,84,12,f +10773,3069b,70,3,f +10773,3070b,4,1,f +10773,3070b,191,1,t +10773,3070b,29,1,f +10773,3070b,4,1,t +10773,3070b,191,1,f +10773,3070b,29,1,t +10773,3070b,27,1,t +10773,3070b,27,1,f +10773,32028,15,8,f +10773,33291,31,1,f +10773,33291,10,1,t +10773,33291,26,2,f +10773,33291,26,1,t +10773,33291,10,3,f +10773,33291,31,1,t +10773,3460,15,2,f +10773,3460,70,2,f +10773,3710,19,1,f +10773,3710,15,5,f +10773,3795,70,2,f +10773,3900,15,1,f +10773,3937,0,5,f +10773,4032a,2,1,f +10773,48336,19,2,f +10773,59900,15,16,f +10773,6003,15,4,f +10773,60583b,19,1,f +10773,6091,4,1,f +10773,6134,71,5,f +10773,6141,85,4,f +10773,6141,2,1,t +10773,6141,322,2,f +10773,6141,2,10,f +10773,6141,15,10,f +10773,6141,322,1,t +10773,6141,85,1,t +10773,6141,4,1,t +10773,6141,4,11,f +10773,6141,15,1,t +10773,6254,15,1,f +10773,6254,27,4,f +10773,85984,0,1,f +10773,87079,70,1,f +10773,87087,484,8,f +10773,87580,70,1,f +10773,87580,15,4,f +10773,93273,15,1,f +10773,93568pat0001,84,1,f +10773,98138,45,4,f +10773,98138,182,1,t +10773,98138,34,1,t +10773,98138,182,4,f +10773,98138,45,1,t +10773,98138,34,4,f +10773,98138pr0013,15,7,f +10773,98138pr0013,15,1,t +10773,98138pr0017,29,1,t +10773,98138pr0017,29,1,f +10773,98283,84,15,f +10773,99781,71,1,f +10775,3004,15,3,f +10775,3021,7,1,f +10775,3039,15,1,f +10775,3040b,7,2,f +10775,3298px11,15,1,f +10775,3660,15,1,f +10776,x555c01,0,1,f +10778,11291,320,1,f +10778,2412b,80,3,f +10778,2456,4,1,f +10778,2654,47,6,f +10778,3003,19,2,f +10778,3005,19,3,f +10778,3020,4,1,f +10778,3023,19,5,f +10778,30304,72,1,f +10778,3032,72,1,f +10778,3032,19,2,f +10778,30357,320,2,f +10778,30357,19,4,f +10778,3040b,19,1,f +10778,30414,71,1,f +10778,3063b,71,2,f +10778,3070b,320,2,f +10778,3626cpr0635,78,1,f +10778,3673,71,3,f +10778,3700,71,4,f +10778,3794b,19,3,f +10778,3829c01,4,1,f +10778,3941,19,3,f +10778,4032a,19,2,f +10778,4079,70,1,f +10778,4150pr0022,71,3,f +10778,41769,320,1,f +10778,41770,320,1,f +10778,43093,1,3,f +10778,44728,19,7,f +10778,54200,320,2,f +10778,56902,71,3,f +10778,6091,320,2,f +10778,6141,80,2,f +10778,62360,47,1,f +10778,6541,14,2,f +10778,6636,19,2,f +10778,85984,19,14,f +10778,92746,19,1,f +10778,970c00pr0113,19,1,f +10778,973pr0510c01,15,1,f +10778,98283,71,7,f +10778,99207,71,1,f +10780,27,4,1,f +10780,29,4,1,f +10780,3081cc01,4,1,f +10780,3087c,4,1,f +10780,31cc01,4,1,f +10780,33bc01,4,1,f +10780,453cc01,4,1,f +10780,604c01,4,1,f +10780,645,4,1,f +10780,646,4,1,f +10782,10169,84,1,f +10782,30368,0,1,f +10782,3626cpr0639,71,1,f +10782,50231,4,1,f +10782,970c00pr0649,0,1,f +10782,973pr2643c01,4,1,f +10783,11816pr0003,78,1,f +10783,92256,70,1,f +10783,92456pr0003c01,78,1,f +10783,92818pr0007c01,272,1,f +10784,2335,71,1,f +10784,2540,72,1,f +10784,3004,25,1,f +10784,3010,25,1,f +10784,3020,72,2,f +10784,3024,2,1,t +10784,3024,2,1,f +10784,3024,0,1,t +10784,3024,0,1,f +10784,3040b,25,2,f +10784,3622,25,2,f +10784,4865a,71,1,f +10787,2346,0,4,f +10787,2420,4,2,f +10787,2712,7,1,f +10787,2790,7,1,f +10787,2791,7,1,f +10787,2792,0,1,f +10787,3021,1,2,f +10787,3023,4,7,f +10787,3040b,4,2,f +10787,3482,14,4,f +10787,3623,1,3,f +10787,3647,7,3,f +10787,3648a,7,1,f +10787,3650a,7,1,f +10787,3651,7,4,f +10787,3666,4,4,f +10787,3673,7,18,f +10787,3700,4,8,f +10787,3701,4,2,f +10787,3702,4,4,f +10787,3705,0,2,f +10787,3706,0,2,f +10787,3709,4,2,f +10787,3710,4,4,f +10787,3713,7,4,f +10787,3737,0,1,f +10787,3738,4,2,f +10787,3749,7,6,f +10787,3794a,4,2,f +10787,3795,4,2,f +10787,3894,4,6,f +10787,3895,4,2,f +10787,4185,7,1,f +10787,4261,7,2,f +10787,4275b,1,1,f +10787,4276b,1,1,f +10787,4442,0,1,f +10788,11458,72,2,f +10788,11477,15,2,f +10788,11477,25,2,f +10788,11477,0,2,f +10788,13971,71,4,f +10788,2420,71,2,f +10788,2420,0,2,f +10788,2431,15,2,f +10788,2431,0,2,f +10788,2458,15,2,f +10788,2540,19,1,f +10788,3001,71,1,f +10788,30136,19,2,f +10788,3020,0,1,f +10788,3020,71,3,f +10788,3020,25,4,f +10788,3021,19,3,f +10788,3021,25,2,f +10788,3022,0,2,f +10788,3023,15,4,f +10788,3034,0,2,f +10788,3039,0,1,f +10788,30663,0,1,f +10788,3069b,14,4,f +10788,3298,25,2,f +10788,3460,0,1,f +10788,3622,25,2,f +10788,3622,15,2,f +10788,3665,25,4,f +10788,3666,72,2,f +10788,3673,71,1,t +10788,3673,71,4,f +10788,3710,25,2,f +10788,3710,72,3,f +10788,3795,25,1,f +10788,3795,19,1,f +10788,3795,72,2,f +10788,3895,71,2,f +10788,41669,40,2,f +10788,43093,1,2,f +10788,48729b,71,1,f +10788,48729b,71,1,t +10788,50950,25,4,f +10788,54200,25,1,t +10788,54200,0,2,f +10788,54200,25,2,f +10788,54200,0,1,t +10788,58181,40,1,f +10788,61254,0,4,f +10788,61409,25,2,f +10788,6141,72,1,t +10788,6141,57,1,t +10788,6141,14,6,f +10788,6141,36,2,f +10788,6141,36,1,t +10788,6141,57,2,f +10788,6141,14,1,t +10788,6141,72,6,f +10788,93274,0,2,f +10789,2433,0,2,f +10789,2434,0,1,f +10789,2446,0,2,f +10789,2447,42,1,t +10789,2447,42,2,f +10789,2539,0,1,f +10789,2540,0,2,f +10789,2569,42,2,f +10789,3023,15,1,f +10789,3034,15,1,f +10789,3479,0,1,f +10789,3626apr0001,14,2,f +10789,3838,0,2,f +10789,4229,15,3,f +10789,4476b,0,2,f +10789,4531,0,2,f +10789,4740,42,2,f +10789,6019,15,2,f +10789,970x026,15,2,f +10789,973p51c01,15,2,f +10791,2126stk01,9999,1,t +10791,2412b,14,3,f +10791,2412b,15,2,f +10791,2420,0,2,f +10791,2431,15,1,f +10791,2431pr0077,15,2,f +10791,2432,0,2,f +10791,2432,4,1,f +10791,2435,2,2,f +10791,2436,0,5,f +10791,2437,41,2,f +10791,2441,0,2,f +10791,2445,0,1,f +10791,2456,14,1,f +10791,2456,1,1,f +10791,2513,4,1,f +10791,2513,15,1,f +10791,2653,0,2,f +10791,2873,4,8,f +10791,2877,0,5,f +10791,2878c01,0,12,f +10791,2920,0,8,f +10791,2926,0,2,f +10791,2927,0,4,f +10791,3001,0,2,f +10791,30022,14,4,f +10791,3003,14,1,f +10791,3004,14,2,f +10791,3010,4,4,f +10791,30139,6,3,f +10791,3020,7,7,f +10791,3020,0,4,f +10791,3021,14,1,f +10791,3022,0,2,f +10791,3022,14,12,f +10791,3023,14,2,f +10791,3023,0,5,f +10791,3023,15,5,f +10791,3024,46,8,f +10791,3027,0,2,f +10791,3031,0,4,f +10791,3034,7,2,f +10791,3035,14,1,f +10791,3039pc1,0,1,f +10791,3040b,1,10,f +10791,3040b,7,8,f +10791,3040b,0,4,f +10791,3040p04,7,2,f +10791,3062b,7,10,f +10791,3068b,15,3,f +10791,3069b,7,2,f +10791,3069bp017,0,4,f +10791,3069bp68,15,1,f +10791,3070b,36,4,f +10791,3070b,36,1,t +10791,3298,0,1,f +10791,3324c01,0,1,f +10791,3471,2,1,f +10791,3623,0,4,f +10791,3624,4,1,f +10791,3626bp02,14,1,f +10791,3626bp03,14,2,f +10791,3626bp04,14,2,f +10791,3641,0,8,f +10791,3684,14,2,f +10791,3700,14,12,f +10791,3710,14,1,f +10791,3710,15,1,f +10791,3710,0,5,f +10791,3788,4,1,f +10791,3788,15,1,f +10791,3795,0,1,f +10791,3795,15,4,f +10791,3795,14,1,f +10791,3821,0,1,f +10791,3821,4,1,f +10791,3821,15,1,f +10791,3822,0,1,f +10791,3822,15,1,f +10791,3822,4,1,f +10791,3823,41,1,f +10791,3829c01,7,3,f +10791,3833,15,2,f +10791,3836,6,1,f +10791,3837,8,1,f +10791,3841,8,1,f +10791,3941,15,1,f +10791,3960,0,3,f +10791,3962b,0,2,f +10791,4022,0,8,f +10791,4025,0,4,f +10791,4032a,4,1,f +10791,4032a,2,1,f +10791,4070,1,2,f +10791,4070,7,2,f +10791,4080,14,1,f +10791,4084,0,6,f +10791,4085c,14,4,f +10791,4175,0,4,f +10791,4175,14,2,f +10791,4211,14,1,f +10791,4213,7,1,f +10791,4214,7,1,f +10791,4315,0,8,f +10791,4349,7,2,f +10791,4460a,14,4,f +10791,4485,1,1,f +10791,4599a,0,1,f +10791,4624,15,4,f +10791,4624,14,10,f +10791,4865a,7,4,f +10791,55295,8,1,f +10791,55296,8,1,f +10791,55297,8,1,f +10791,55298,8,1,f +10791,55299,8,1,f +10791,55300,8,1,f +10791,6093,0,1,f +10791,6112,1,1,f +10791,6141,42,2,f +10791,6141,42,1,t +10791,6157,7,3,f +10791,6558,0,4,f +10791,6583,0,6,f +10791,6583,7,2,f +10791,6583,14,2,f +10791,6584,0,1,f +10791,6584,4,1,f +10791,73092,0,8,f +10791,73590c02a,7,2,f +10791,970c00,8,1,f +10791,970c00,0,3,f +10791,970x026,14,1,f +10791,973p70c01,6,1,f +10791,973p83c01,14,1,f +10791,973px2c01,1,1,f +10791,973px8c01,1,2,f +10792,2419,0,1,f +10792,2470,6,4,f +10792,2586p4c,7,1,f +10792,3021,4,1,f +10792,3022,0,1,f +10792,3023,4,1,f +10792,3024,0,1,f +10792,3034,0,1,f +10792,3040b,4,1,f +10792,3460,4,1,f +10792,3623,0,1,f +10792,3626bp42,14,1,f +10792,3665,4,1,f +10792,3794a,4,3,f +10792,3839b,0,1,f +10792,3847,8,1,f +10792,3849,8,1,f +10792,3896,0,1,f +10792,4085c,0,3,f +10792,4275b,0,1,f +10792,4495b,14,1,f +10792,4495b,4,1,f +10792,4497,6,1,f +10792,4531,0,1,f +10792,4600,0,2,f +10792,6019,0,1,f +10792,970c00,1,1,f +10792,973p41c01,4,1,f +10793,2496,0,1,f +10793,2496,0,1,t +10793,2655,14,1,t +10793,2655,14,1,f +10793,3004,14,1,f +10793,3020,1,1,f +10793,3021,1,1,f +10793,3021,4,2,f +10793,3022,1,1,f +10793,3039,47,1,f +10793,3039,14,1,f +10794,11211,71,1,f +10794,11477,72,4,f +10794,15068,15,1,f +10794,15573,72,2,f +10794,18649,71,1,f +10794,22885,71,1,f +10794,3003,71,1,f +10794,3004,72,1,f +10794,3022,72,2,f +10794,3022,15,1,f +10794,3023,15,3,f +10794,3023,72,1,f +10794,3031,27,1,f +10794,3069b,15,1,f +10794,3070b,72,2,f +10794,3623,29,2,f +10794,3679,71,1,f +10794,3680,15,1,f +10794,4286,72,2,f +10794,44728,72,1,f +10794,4871,71,1,f +10794,54200,72,4,f +10794,54200,15,2,f +10794,6091,72,2,f +10794,6141,15,1,f +10794,6141,0,1,f +10794,6141,29,2,f +10794,63868,15,2,f +10794,87087,72,2,f +10794,98138pr0008,15,2,f +10796,299,9999,1,t +10796,3001a,0,2,f +10796,3003,0,1,f +10796,3004,0,9,f +10796,3005,0,6,f +10796,3005,47,2,f +10796,3008,0,2,f +10796,3008pb001,0,2,f +10796,3009,0,3,f +10796,3010,0,8,f +10796,3020,0,8,f +10796,3020,4,3,f +10796,3021,4,6,f +10796,3021,0,5,f +10796,3022,0,4,f +10796,3022,4,1,f +10796,3022,14,1,f +10796,3023,4,12,f +10796,3023,0,3,f +10796,303,7,1,f +10796,3037,0,8,f +10796,3039,0,1,f +10796,3040a,0,2,f +10796,3062a,0,5,f +10796,3087bc01,4,2,f +10796,433c01,0,2,f +10796,458,7,4,f +10796,wheel2a,4,8,f +10796,x550a,0,1,f +10796,x946,0,2,f +10797,2412b,383,2,f +10797,2450,4,2,f +10797,2456,4,2,f +10797,2456,14,2,f +10797,3001,4,10,f +10797,3001,1,6,f +10797,3001,15,8,f +10797,3001,22,4,f +10797,3001,14,6,f +10797,3001,0,8,f +10797,3001,25,4,f +10797,3002,4,6,f +10797,3002,0,4,f +10797,3002,25,2,f +10797,3002,1,4,f +10797,3002,15,6,f +10797,3002,14,4,f +10797,3003,22,6,f +10797,3003,1,12,f +10797,3003,25,6,f +10797,3003,4,16,f +10797,3003,14,12,f +10797,3003,0,12,f +10797,3003,15,12,f +10797,3003,8,4,f +10797,3004,4,16,f +10797,3004,22,6,f +10797,3004,25,6,f +10797,3004,15,12,f +10797,3004,8,6,f +10797,3004,1,12,f +10797,3004,14,12,f +10797,3004,0,12,f +10797,3004p0b,14,1,f +10797,3005,1,22,f +10797,3005,15,18,f +10797,3005,0,18,f +10797,3005,14,22,f +10797,3005,4,22,f +10797,3005pe1,8,2,f +10797,3007,15,2,f +10797,3008,4,2,f +10797,3008,14,2,f +10797,3008,1,2,f +10797,3009,1,2,f +10797,3009,15,2,f +10797,3009,22,2,f +10797,3009,4,2,f +10797,3009,0,2,f +10797,3010,14,4,f +10797,3010,0,6,f +10797,3010,4,6,f +10797,3010,15,4,f +10797,3010,25,4,f +10797,3010,22,4,f +10797,3010,1,4,f +10797,3020,1,2,f +10797,3020,0,2,f +10797,3020,22,2,f +10797,3020,4,2,f +10797,3020,25,2,f +10797,3020,15,2,f +10797,3020,14,2,f +10797,3021,15,4,f +10797,3021,0,2,f +10797,3021,4,4,f +10797,3021,14,4,f +10797,3021,1,4,f +10797,3022,25,4,f +10797,3022,1,4,f +10797,3022,0,4,f +10797,3022,15,4,f +10797,3022,14,4,f +10797,3022,22,4,f +10797,3022,8,4,f +10797,3022,4,4,f +10797,3039,22,2,f +10797,3040b,25,4,f +10797,3040b,0,4,f +10797,3040b,4,4,f +10797,3665,22,4,f +10797,3665,0,4,f +10797,3665,4,4,f +10797,3665,25,4,f +10797,3839b,0,1,f +10797,4286,8,2,f +10797,4287,8,2,f +10797,4740,42,2,f +10797,73590c02b,14,2,f +10798,3482,7,12,f +10798,3483,0,8,f +10798,3634,0,4,f +10801,2780,0,2,f +10801,30374,36,1,f +10801,32013,0,1,f +10801,32062,4,6,f +10801,3713,71,1,t +10801,3713,71,2,f +10801,42003,71,1,f +10801,43093,1,2,f +10801,4519,71,7,f +10801,47298,135,2,f +10801,47306,272,1,f +10801,47312,72,1,f +10801,48989,71,1,f +10801,53543,135,2,f +10801,53544,135,1,f +10801,53548,135,4,f +10801,53564,135,1,f +10801,57536,42,1,f +10801,60176,272,5,f +10801,61054,272,4,f +10801,61787,272,1,f +10801,61794,135,1,f +10801,61800,135,2,f +10801,61801,135,2,f +10801,61803,135,2,f +10801,61808,135,1,f +10801,61810,40,1,f +10801,61811,148,2,f +10801,6558,1,2,f +10801,6587,72,1,f +10802,2339,0,2,f +10802,2357,72,4,f +10802,2412b,71,2,f +10802,2420,72,6,f +10802,2444,0,2,f +10802,2445,72,2,f +10802,2449,0,2,f +10802,2454a,272,12,f +10802,2456,71,2,f +10802,2476a,71,8,f +10802,2488,179,1,f +10802,2540,72,1,f +10802,2566,0,1,f +10802,2780,0,9,f +10802,2780,0,3,t +10802,2877,0,2,f +10802,3002,72,2,f +10802,3003,272,2,f +10802,3004,0,16,f +10802,3004,72,6,f +10802,3005,0,10,f +10802,30055,72,6,f +10802,3009,71,1,f +10802,30104,70,1,f +10802,30152pat0001,0,1,f +10802,3020,72,4,f +10802,3021,72,2,f +10802,3022,71,5,f +10802,30223,0,2,f +10802,3023,0,5,f +10802,30237a,0,4,f +10802,3028,0,3,f +10802,3030,0,3,f +10802,3031,0,1,f +10802,3033,0,2,f +10802,3034,72,5,f +10802,30374,71,1,f +10802,3039,72,4,f +10802,3040b,0,2,f +10802,3040b,320,4,f +10802,30414,72,2,f +10802,30526,72,4,f +10802,30540,71,3,f +10802,30552,71,6,f +10802,30553,72,3,f +10802,30602,0,1,f +10802,32013,71,7,f +10802,32016,71,4,f +10802,32034,71,6,f +10802,32039,0,2,f +10802,32039,71,7,f +10802,32054,0,3,f +10802,32062,4,17,f +10802,32064b,72,14,f +10802,32072,14,1,f +10802,32123b,71,1,t +10802,32123b,71,2,f +10802,32174,72,2,f +10802,32174,0,1,f +10802,32184,71,1,f +10802,32199,72,3,f +10802,32270,71,1,f +10802,32316,0,1,f +10802,3245b,272,6,f +10802,32523,0,1,f +10802,32526,0,2,f +10802,33211,135,2,f +10802,3460,72,2,f +10802,3460,0,2,f +10802,3475b,0,2,f +10802,3581,71,2,f +10802,3622,0,3,f +10802,3660,72,2,f +10802,3666,0,3,f +10802,3673,71,1,t +10802,3673,71,3,f +10802,3678b,71,2,f +10802,3679,71,1,f +10802,3680,0,1,f +10802,3684,72,2,f +10802,3700,71,2,f +10802,3705,0,3,f +10802,3706,0,2,f +10802,3707,0,1,f +10802,3708,0,2,f +10802,3710,0,4,f +10802,3713,71,1,f +10802,3713,71,1,t +10802,3737,0,1,f +10802,3754,72,2,f +10802,3794a,71,1,f +10802,3830,0,8,f +10802,3831,0,8,f +10802,3832,0,1,f +10802,3894,71,1,f +10802,3941,72,1,f +10802,3957a,71,2,f +10802,4032a,72,12,f +10802,40378,179,6,f +10802,40379,21,6,f +10802,40379,320,2,f +10802,40379,179,6,f +10802,40490,71,1,f +10802,4070,0,8,f +10802,4085c,72,2,f +10802,4162,72,2,f +10802,42448,0,2,f +10802,4274,71,1,t +10802,4274,71,4,f +10802,43093,1,15,f +10802,4349,0,2,f +10802,43888,272,6,f +10802,44033,179,4,f +10802,44728,0,2,f +10802,44817,135,4,f +10802,4519,71,3,f +10802,45301,0,2,f +10802,45677,72,2,f +10802,4589,71,11,f +10802,47296,72,2,f +10802,4740,42,2,f +10802,48729a,72,24,f +10802,50908,135,4,f +10802,50915,179,4,f +10802,50923,72,7,f +10802,50950,0,2,f +10802,51643,179,2,f +10802,51663,179,2,f +10802,53451,4,3,t +10802,53451,4,7,f +10802,53451,135,36,f +10802,53451,135,4,t +10802,53550,179,1,f +10802,53568,135,1,f +10802,53582,179,2,f +10802,53583,297,1,f +10802,53588pat01,8,2,f +10802,53590pr01,320,1,f +10802,53596pr01,148,1,f +10802,53989,272,4,f +10802,53989,70,2,f +10802,53989,151,2,f +10802,53989,0,4,f +10802,53989,191,2,f +10802,53989,320,4,f +10802,53989,288,4,f +10802,53989,15,2,f +10802,54200,4,2,f +10802,54271,179,3,f +10802,54274pr01,15,1,f +10802,54275,297,3,f +10802,54275,0,1,f +10802,54275,179,4,f +10802,54275,148,4,f +10802,54276,0,2,f +10802,54276,320,2,f +10802,54276,272,2,f +10802,54276,70,1,f +10802,54276,15,1,f +10802,54276,191,1,f +10802,54276,288,2,f +10802,54276,151,1,f +10802,54821,143,2,f +10802,54821,2,1,f +10802,54821,42,5,f +10802,54869,36,1,f +10802,55236,151,1,f +10802,55236,272,1,f +10802,55236,70,1,f +10802,55236,0,1,f +10802,55236,320,1,f +10802,55236,288,1,f +10802,55237a,179,1,f +10802,55237b,179,1,f +10802,55237c,179,1,f +10802,55237d,179,1,f +10802,55237e,179,1,f +10802,55237f,179,1,f +10802,55237g,179,1,f +10802,55237h,179,1,f +10802,55237i,179,1,f +10802,55237j,179,1,f +10802,55237k,179,1,f +10802,55237l,179,1,f +10802,55238,272,1,f +10802,55240pr0001,151,1,f +10802,56653,320,1,f +10802,56654,272,1,f +10802,56655,272,1,f +10802,56656,0,1,f +10802,56657,288,1,f +10802,56659,70,1,f +10802,56661,0,1,f +10802,59426,72,3,f +10802,6019,0,4,f +10802,6126a,57,2,f +10802,6141,71,2,t +10802,6141,71,14,f +10802,6536,0,6,f +10802,6558,0,2,f +10802,6587,72,1,f +10802,6636,71,4,f +10802,75347,272,2,f +10802,78c24,179,2,f +10802,x1823px1,288,1,f +10803,2339,7,24,f +10803,3710,7,12,f +10804,820,7,1,f +10804,821,7,1,f +10804,822b,4,1,f +10804,bb300,47,2,f +10808,11212,71,1,f +10808,12825,0,3,f +10808,2357,19,21,f +10808,2431,19,4,f +10808,3003,28,4,f +10808,3003,19,4,f +10808,3004,19,11,f +10808,3004,28,14,f +10808,3005,19,1,f +10808,3005,72,2,f +10808,3005,0,27,f +10808,3005,28,3,f +10808,3010,19,5,f +10808,3021,19,2,f +10808,3023,71,6,f +10808,3023,19,6,f +10808,3024,28,1,t +10808,3024,19,62,f +10808,3024,71,1,t +10808,3024,0,1,t +10808,3024,28,25,f +10808,3024,71,2,f +10808,3024,0,4,f +10808,3024,19,2,t +10808,3024pr0009,0,1,t +10808,3024pr0009,0,5,f +10808,3062b,47,2,f +10808,3068b,19,4,f +10808,3069b,0,8,f +10808,3070b,0,12,f +10808,3070b,28,23,f +10808,3070b,72,12,f +10808,3070b,0,1,t +10808,3070b,72,1,t +10808,3070b,19,101,f +10808,3070b,28,1,t +10808,3070b,19,3,t +10808,32062,0,4,f +10808,32064b,72,8,f +10808,3622,19,13,f +10808,3623,19,4,f +10808,3957a,47,1,f +10808,3958,19,8,f +10808,4595,0,1,f +10808,47905,0,4,f +10808,48729a,0,1,t +10808,48729a,0,1,f +10808,54200,0,1,t +10808,54200,0,3,f +10808,59900,0,3,f +10808,60478,0,1,f +10808,6133,0,2,f +10808,6141,0,1,t +10808,6141,0,1,f +10808,63965,0,1,f +10808,92593,72,4,f +10808,96874,25,1,t +10808,98138,52,1,t +10808,98138,52,6,f +10809,2526,297,1,f +10809,2526,297,1,t +10809,2528pr0001,0,1,f +10809,2530,72,1,f +10809,2530,72,1,t +10809,3626bpr0564,14,1,f +10809,970d09,0,1,f +10809,973pr1442c01,0,1,f +10810,11090,15,2,f +10810,15209,15,2,f +10810,15571,15,4,f +10810,15573,19,8,f +10810,15712,0,4,f +10810,18654,0,2,f +10810,2431,71,4,f +10810,2431,19,8,f +10810,2431,288,1,f +10810,2431,0,6,f +10810,25269,19,4,f +10810,3003,272,2,f +10810,3004,272,2,f +10810,3020,272,14,f +10810,3020,15,2,f +10810,3021,272,4,f +10810,3021,15,1,f +10810,3022,19,3,f +10810,3022,0,4,f +10810,3022,15,6,f +10810,3023,19,3,f +10810,3023,33,4,f +10810,3023,272,9,f +10810,3023,15,7,f +10810,3024,33,4,f +10810,3024,0,6,f +10810,3024,19,18,f +10810,3032,19,2,f +10810,30374,14,2,f +10810,30374,15,8,f +10810,30374,0,4,f +10810,3049d,15,10,f +10810,3069b,28,3,f +10810,3069b,41,31,f +10810,3069b,19,5,f +10810,3070b,19,4,f +10810,3070b,288,6,f +10810,32062,4,1,f +10810,33688,82,3,f +10810,33690,82,1,f +10810,3622,19,2,f +10810,3623,272,4,f +10810,3665,0,2,f +10810,3666,0,6,f +10810,3710,0,8,f +10810,3794b,71,21,f +10810,3795,0,7,f +10810,3937,19,6,f +10810,3942c,0,2,f +10810,3958,0,2,f +10810,4162,0,2,f +10810,4162pr0001,0,1,f +10810,43093,1,2,f +10810,43898,0,3,f +10810,4477,0,3,f +10810,4740,82,2,f +10810,47905,19,8,f +10810,59443,0,2,f +10810,60478,15,2,f +10810,60478,0,7,f +10810,60897,15,22,f +10810,6134,15,6,f +10810,6233,0,1,f +10810,63868,0,3,f +10810,63965,15,5,f +10810,85984,19,4,f +10810,87079,19,2,f +10810,87609,0,4,f +10810,87994,0,2,f +10810,87994,15,2,f +10810,99206,0,4,f +10811,2412b,0,1,f +10811,2432,71,1,f +10811,2436,71,1,f +10811,2540,72,2,f +10811,2555,71,2,f +10811,3003,1,2,f +10811,3004,1,1,f +10811,3021,1,1,f +10811,3023,72,1,f +10811,30602,1,1,f +10811,3065,47,1,f +10811,3641,0,6,f +10811,3795,72,2,f +10811,4032a,0,1,f +10811,41854,0,1,f +10811,4600,71,3,f +10811,4624,15,6,f +10811,6141,46,4,f +10811,6141,46,1,t +10812,10170,84,1,f +10812,10314,29,2,f +10812,10314,26,2,f +10812,11208,71,4,f +10812,11209,0,4,f +10812,11211,19,2,f +10812,11256,70,1,f +10812,11403pr0004c01,19,1,f +10812,11407pr0001c01,26,1,f +10812,11408pr0012c01,78,1,f +10812,11458,0,6,f +10812,11476,71,1,f +10812,11477,0,4,f +10812,11477,27,2,f +10812,11575pr0002,15,1,f +10812,11610,19,1,f +10812,11816pr0001,84,1,f +10812,11816pr0002,78,1,f +10812,11816pr0003,78,1,f +10812,11816pr0009,84,1,f +10812,12939,15,6,f +10812,13808,297,1,f +10812,14014pr0005,78,1,f +10812,14716,15,3,f +10812,14719,15,4,f +10812,14769,30,4,f +10812,14769,0,1,f +10812,14769,297,4,f +10812,14769pr1020,297,1,f +10812,15207,14,2,f +10812,15207,0,2,f +10812,15210,0,1,f +10812,15254,85,6,f +10812,15332,297,12,f +10812,15395,15,2,f +10812,15470,29,2,t +10812,15470,29,2,f +10812,15573,28,1,f +10812,15573,297,5,f +10812,15573,85,6,f +10812,15573,70,8,f +10812,15745,45,2,f +10812,16577,15,3,f +10812,16985pr0001a,320,1,f +10812,18677,71,1,f +10812,18853,29,1,f +10812,18853,29,1,t +10812,18892,0,2,f +10812,18970,297,1,f +10812,19119,2,2,f +10812,20309,19,4,f +10812,20310,297,10,f +10812,2343,297,1,f +10812,2343,47,6,f +10812,2357,0,4,f +10812,2357,30,1,f +10812,2357,15,21,f +10812,2412b,15,6,f +10812,2412b,71,3,f +10812,2420,30,3,f +10812,2420,0,3,f +10812,2420,14,4,f +10812,2420,15,12,f +10812,2431,322,2,f +10812,2431,85,3,f +10812,2431,0,2,f +10812,2431,15,13,f +10812,2431,71,2,f +10812,2431,29,4,f +10812,2432,71,1,f +10812,2453b,15,3,f +10812,2454a,15,8,f +10812,2456,30,2,f +10812,2456,15,1,f +10812,2496,0,4,f +10812,2540,15,1,f +10812,2654,0,1,f +10812,2655,71,4,f +10812,2736,71,1,f +10812,2817,71,1,f +10812,2877,0,1,f +10812,2877,15,10,f +10812,298c02,15,4,f +10812,298c02,0,1,t +10812,298c02,15,2,t +10812,298c02,0,1,f +10812,3001,15,3,f +10812,3001,30,1,f +10812,3001,29,2,f +10812,3002,27,2,f +10812,3002,15,2,f +10812,3003,0,2,f +10812,3003,27,1,f +10812,3003,15,11,f +10812,3003,70,2,f +10812,3004,14,4,f +10812,3004,0,1,f +10812,3004,15,41,f +10812,3004,30,12,f +10812,3004,322,1,f +10812,3004,85,14,f +10812,3005,14,4,f +10812,3005,0,1,f +10812,3005,15,23,f +10812,3005,85,2,f +10812,3005,30,4,f +10812,3008,30,5,f +10812,3008,15,17,f +10812,3009,15,4,f +10812,3010,30,3,f +10812,3010,15,18,f +10812,3010,26,2,f +10812,3010,14,1,f +10812,30137,29,1,f +10812,30151a,47,2,f +10812,30153,46,1,f +10812,30176,2,6,f +10812,3020,30,2,f +10812,3020,4,1,f +10812,3020,14,1,f +10812,3020,71,3,f +10812,3020,19,2,f +10812,3020,0,2,f +10812,3020,15,8,f +10812,3021,19,6,f +10812,3021,15,2,f +10812,3021,14,1,f +10812,3021,72,2,f +10812,3021,4,1,f +10812,3022,15,11,f +10812,3022,71,1,f +10812,3022,27,1,f +10812,3023,36,2,f +10812,3023,46,11,f +10812,3023,4,2,f +10812,3023,85,5,f +10812,3023,15,19,f +10812,3023,41,3,f +10812,3023,36,1,t +10812,3023,30,8,f +10812,3023,19,2,f +10812,3023,0,2,f +10812,30237b,15,2,f +10812,30237b,71,1,f +10812,3024,297,4,f +10812,3024,46,1,t +10812,3024,297,1,t +10812,3024,46,1,f +10812,3024,30,5,f +10812,3024,19,2,f +10812,3024,15,6,f +10812,3024,15,3,t +10812,3024,19,1,t +10812,3031,19,2,f +10812,3032,72,1,f +10812,3032,15,1,f +10812,3032,19,2,f +10812,3034,15,6,f +10812,3034,85,4,f +10812,3034,0,1,f +10812,30357,4,2,f +10812,30357,19,4,f +10812,30357,0,2,f +10812,30357,15,6,f +10812,30357,29,3,f +10812,3036,19,1,f +10812,3036,4,1,f +10812,30367c,15,1,f +10812,30377,0,1,f +10812,30377,0,1,t +10812,3040b,15,2,f +10812,3040b,85,2,f +10812,30414,71,1,f +10812,30414,19,1,f +10812,30414,72,2,f +10812,3045,85,2,f +10812,30552,71,1,f +10812,30565,19,2,f +10812,30565,85,2,f +10812,3062b,34,1,f +10812,3062b,33,1,f +10812,3062b,4,1,f +10812,3062b,46,1,f +10812,3062b,15,4,f +10812,3062b,41,1,f +10812,3062b,47,1,f +10812,3063b,0,2,f +10812,3063b,15,10,f +10812,3065,47,5,f +10812,3065,40,3,f +10812,3068b,15,5,f +10812,3068b,322,6,f +10812,3068b,29,6,f +10812,3068b,73,2,f +10812,3068b,0,1,f +10812,3068b,4,16,f +10812,3068b,297,15,f +10812,3068bpr0255,15,1,f +10812,3069b,29,2,f +10812,3069b,15,11,f +10812,3069b,322,2,f +10812,3069b,0,2,f +10812,3069b,4,7,f +10812,3069b,26,1,f +10812,3069b,46,8,f +10812,3069b,27,2,f +10812,3069bpr0099,15,1,f +10812,3069bpr0144,15,1,f +10812,3070b,0,2,f +10812,3070b,34,1,f +10812,3070b,322,1,t +10812,3070b,34,1,t +10812,3070b,322,2,f +10812,3070b,0,1,t +10812,32000,19,2,f +10812,32013,71,1,f +10812,32054,0,2,f +10812,3245b,15,16,f +10812,32526,71,2,f +10812,3298,85,4,f +10812,33125,484,2,f +10812,33291,4,8,t +10812,33291,10,19,f +10812,33291,4,21,f +10812,33291,10,5,t +10812,33291,26,2,t +10812,33291,26,5,f +10812,33291,191,2,t +10812,33291,191,6,f +10812,33320,297,4,f +10812,3460,15,7,f +10812,3622,15,23,f +10812,3622,30,17,f +10812,3623,15,2,f +10812,3623,0,2,f +10812,3624,320,1,f +10812,3660,0,1,f +10812,3660,19,2,f +10812,3660,15,6,f +10812,3665,0,8,f +10812,3665,15,4,f +10812,3666,0,5,f +10812,3666,19,4,f +10812,3666,85,4,f +10812,3666,30,4,f +10812,3666,15,6,f +10812,3673,71,8,f +10812,3673,71,1,t +10812,3675,85,2,f +10812,3679,71,2,f +10812,3680,15,1,f +10812,3680,0,1,f +10812,3685,85,2,f +10812,3700,71,6,f +10812,3700,0,2,f +10812,3710,322,1,f +10812,3710,0,1,f +10812,3710,71,4,f +10812,3710,72,1,f +10812,3710,30,15,f +10812,3710,15,15,f +10812,3747a,15,1,f +10812,3794b,15,6,f +10812,3795,19,4,f +10812,3795,15,5,f +10812,3795,0,1,f +10812,3795,4,2,f +10812,3795,14,1,f +10812,3795,30,2,f +10812,3832,4,1,f +10812,3832,70,1,f +10812,3852b,322,1,f +10812,3899,45,1,f +10812,3937,0,1,f +10812,3941,46,1,f +10812,3941,15,4,f +10812,3941,47,1,f +10812,3942c,297,1,f +10812,3957a,0,1,f +10812,3958,15,1,f +10812,4032a,19,1,f +10812,4070,4,1,f +10812,4081b,15,8,f +10812,4083,14,2,f +10812,4094b,45,1,f +10812,41101stk01,9999,1,f +10812,41539,15,1,f +10812,41539,19,1,f +10812,4162,15,4,f +10812,4176,47,2,f +10812,4215b,15,2,f +10812,4274,71,1,t +10812,4274,71,2,f +10812,43888,297,4,f +10812,44294,71,2,f +10812,44301a,0,2,f +10812,4449,5,2,f +10812,4449,70,1,f +10812,4460b,85,2,f +10812,44728,15,1,f +10812,44728,71,1,f +10812,4477,19,2,f +10812,4477,15,4,f +10812,4495b,4,1,f +10812,4519,71,1,f +10812,4528,179,1,f +10812,4536,15,1,f +10812,4599b,71,2,t +10812,4599b,71,2,f +10812,4599b,4,1,f +10812,4599b,4,1,t +10812,4599b,14,1,t +10812,4599b,14,1,f +10812,46212,47,4,f +10812,46212,41,2,f +10812,4740,71,1,f +10812,4740,42,1,f +10812,4740,36,1,f +10812,48092,15,2,f +10812,48092,30,2,f +10812,48336,15,8,f +10812,48336,14,4,f +10812,48336,71,2,f +10812,4865a,0,3,f +10812,4865a,14,2,f +10812,4865b,41,8,f +10812,51739,0,2,f +10812,52031,0,2,f +10812,54200,85,4,t +10812,54200,14,1,f +10812,54200,85,9,f +10812,54200,14,1,t +10812,57895,47,6,f +10812,58176,15,1,f +10812,58176,36,1,f +10812,59349,47,3,f +10812,59349,15,1,f +10812,59900,297,19,f +10812,59900,1002,1,f +10812,59900,15,2,f +10812,59900,2,2,f +10812,59900,36,1,f +10812,6003,85,4,f +10812,60470b,0,1,f +10812,60470b,15,1,f +10812,60471,15,1,f +10812,60474,15,2,f +10812,60475b,0,1,f +10812,60483,0,2,f +10812,60581,47,2,f +10812,60592,15,2,f +10812,60593,15,12,f +10812,60593,19,10,f +10812,60596,15,5,f +10812,60596,19,10,f +10812,60601,47,2,f +10812,60602,47,22,f +10812,60616a,47,4,f +10812,60897,71,2,f +10812,6091,15,6,f +10812,6091,322,4,f +10812,6091,0,2,f +10812,6091,27,2,f +10812,6111,15,2,f +10812,6112,15,4,f +10812,61252,15,8,f +10812,6134,71,1,f +10812,6141,25,2,f +10812,6141,14,4,t +10812,6141,297,4,t +10812,6141,46,10,f +10812,6141,85,5,f +10812,6141,25,1,t +10812,6141,27,1,t +10812,6141,0,2,t +10812,6141,85,1,t +10812,6141,27,6,f +10812,6141,14,9,f +10812,6141,46,2,t +10812,6141,0,8,f +10812,6141,297,9,f +10812,61485,15,1,f +10812,6177,297,2,f +10812,6215,15,4,f +10812,6254,27,1,f +10812,6254,191,2,f +10812,62808,297,2,f +10812,62810,0,1,f +10812,63864,15,3,f +10812,63868,4,8,f +10812,63869,0,1,f +10812,63965,297,1,f +10812,64644,297,1,f +10812,64644,0,4,f +10812,6541,72,2,f +10812,6541,0,1,f +10812,6558,1,2,f +10812,6587,28,1,f +10812,6628,0,2,f +10812,6636,30,1,f +10812,6636,71,2,f +10812,6636,15,1,f +10812,6636,0,1,f +10812,75937,15,1,f +10812,85080,297,4,f +10812,85984,29,2,f +10812,85984,19,2,f +10812,85984,15,1,f +10812,87079,0,2,f +10812,87079,26,1,f +10812,87079,30,2,f +10812,87079,1,1,f +10812,87079,4,6,f +10812,87079,15,10,f +10812,87552,41,3,f +10812,87580,15,2,f +10812,87580,0,2,f +10812,87580,71,2,f +10812,87994,297,1,f +10812,87994,297,1,t +10812,88292,15,2,f +10812,88393,15,11,f +10812,90370pr0005,0,1,t +10812,90370pr0005,0,1,f +10812,91405,19,2,f +10812,91988,71,2,f +10812,92255,226,1,f +10812,92256,70,1,f +10812,92338,297,2,f +10812,92410,30,1,f +10812,92438,19,6,f +10812,92456pr0029c01,78,1,f +10812,92456pr0035c01,84,1,f +10812,92456pr0085c01,78,1,f +10812,92593,71,7,f +10812,92690,297,2,f +10812,92816pr0004c01,84,1,f +10812,92817pr0004c01,4,1,f +10812,92820pr0006c01a,85,1,f +10812,92947,297,12,f +10812,92950,15,4,f +10812,93089pr0001a,71,1,f +10812,93094,5,1,f +10812,93094,5,1,t +10812,93095,29,4,f +10812,93273,0,1,f +10812,93273,30,1,f +10812,93352,308,1,f +10812,95228,40,1,f +10812,95827,191,4,f +10812,95828,191,4,f +10812,95829,191,4,f +10812,95831,191,4,f +10812,95832,191,4,f +10812,96874,25,1,t +10812,98138,71,1,t +10812,98138,45,3,t +10812,98138,36,2,f +10812,98138,71,2,f +10812,98138,47,4,t +10812,98138,33,1,f +10812,98138,47,12,f +10812,98138,297,7,t +10812,98138,46,4,f +10812,98138,33,1,t +10812,98138,297,17,f +10812,98138,36,2,t +10812,98138,46,1,t +10812,98138,45,3,f +10812,98138pr0013,15,1,t +10812,98138pr0013,15,1,f +10812,98138pr0017,29,2,f +10812,98138pr0017,29,1,t +10812,98138pr0018,84,1,t +10812,98138pr0018,84,1,f +10812,98282,0,4,f +10812,98549,15,1,f +10812,98560,85,2,f +10812,99781,71,2,f +10813,14226c11,15,1,f +10813,2335,8,2,f +10813,2412b,7,1,f +10813,2412b,0,6,f +10813,2432,0,15,f +10813,2444,7,2,f +10813,2458,19,2,f +10813,2516,7,1,f +10813,2540,7,2,f +10813,2555,7,2,f +10813,2569,8,1,f +10813,2654,0,1,f +10813,2780,0,2,f +10813,298c02,0,1,f +10813,298c02,14,1,t +10813,298c02,14,1,f +10813,298c02,0,1,t +10813,3002,7,1,f +10813,3003,19,1,f +10813,3004,7,4,f +10813,3004,19,1,f +10813,3005,0,2,f +10813,3010,7,1,f +10813,3010,19,1,f +10813,3020,272,1,f +10813,3021,7,1,f +10813,3022,15,1,f +10813,3023,19,2,f +10813,3023,15,2,f +10813,3023,7,2,f +10813,3023,0,2,f +10813,30236,19,2,f +10813,30237a,7,2,f +10813,3024,272,2,f +10813,3032,0,1,f +10813,3032,19,1,f +10813,3035,272,1,f +10813,3035,19,1,f +10813,30361c,378,1,f +10813,30374,7,1,f +10813,30374,8,1,f +10813,30377,8,2,f +10813,3039,8,4,f +10813,3045,8,4,f +10813,30503,272,2,f +10813,30553,0,1,f +10813,30554a,0,1,f +10813,3062b,15,40,f +10813,3068b,8,1,f +10813,3069b,7,4,f +10813,3069b,15,1,f +10813,3069b,272,1,f +10813,32000,7,3,f +10813,32000,19,2,f +10813,32013,7,11,f +10813,32013,15,1,f +10813,32034,7,8,f +10813,32039,14,1,f +10813,32039,15,1,f +10813,32054,0,2,f +10813,32073,7,10,f +10813,32123b,15,1,t +10813,32123b,15,1,f +10813,32193,0,6,f +10813,32269,15,2,f +10813,3245b,7,14,f +10813,3622,7,4,f +10813,3623,7,1,f +10813,3647,7,1,f +10813,3660,7,3,f +10813,3666,19,4,f +10813,3666,7,2,f +10813,3700,19,1,f +10813,3705,0,3,f +10813,3706,0,1,f +10813,3707,0,1,f +10813,3708,0,1,f +10813,3709,15,4,f +10813,3710,19,3,f +10813,3710,272,1,f +10813,3713,15,1,f +10813,3713,7,3,f +10813,3747a,7,1,f +10813,3749,19,6,f +10813,3755,7,5,f +10813,3794a,15,1,f +10813,3865,8,1,f +10813,3933,272,1,f +10813,3934,272,1,f +10813,3937,15,1,f +10813,3938,15,1,f +10813,3941,19,1,f +10813,3941,378,8,f +10813,3941,47,1,f +10813,3941,15,9,f +10813,3942c,15,1,f +10813,3957a,47,1,f +10813,3957a,0,1,f +10813,3958,19,1,f +10813,4032a,15,7,f +10813,4081b,19,6,f +10813,4095,7,1,f +10813,41532,0,1,f +10813,41678,0,1,f +10813,41752,8,1,t +10813,42003,7,2,f +10813,4274,15,1,t +10813,4274,15,6,f +10813,43093,1,25,f +10813,4349,4,1,f +10813,43898,19,1,f +10813,44809,7,1,f +10813,4519,7,4,f +10813,4589,15,16,f +10813,4589,0,1,f +10813,4623,7,1,f +10813,4740,334,3,f +10813,4740,57,1,f +10813,6141,19,1,t +10813,6141,15,1,t +10813,6141,15,10,f +10813,6141,8,1,t +10813,6141,8,2,f +10813,6141,57,1,t +10813,6141,57,8,f +10813,6141,19,2,f +10813,6177,0,1,f +10813,6232,19,2,f +10813,6536,0,2,f +10813,6536,7,2,f +10813,6538b,7,10,f +10813,6541,15,1,f +10813,6541,7,12,f +10813,6558,0,1,f +10813,6587,8,1,f +10813,6589,7,2,f +10813,71509,0,4,f +10813,7469bk01,9999,1,t +10813,7469stk01,9999,1,t +10813,75535,15,1,f +10813,75c05,14,1,f +10813,75c06,8,3,f +10817,11214,72,2,f +10817,11476,71,1,f +10817,15082,0,2,f +10817,15303,57,3,f +10817,15392,72,1,t +10817,15392,72,2,f +10817,15400,72,2,f +10817,15573,1,4,f +10817,15672,1,2,f +10817,15706,0,2,f +10817,15712,72,10,f +10817,18654,72,1,t +10817,18654,72,2,f +10817,18674,72,2,f +10817,18986,47,1,f +10817,20105,0,1,f +10817,22380,2,1,f +10817,22385,1,1,f +10817,22385pr0011,46,1,f +10817,22385pr0022,57,1,f +10817,22388,179,1,t +10817,22388,179,4,f +10817,22390,272,2,f +10817,22391,179,1,f +10817,22392,2,2,f +10817,22394,179,1,f +10817,22408,179,1,f +10817,22425,0,1,f +10817,22483,57,1,f +10817,22484,57,2,f +10817,22487,179,1,f +10817,24078,71,1,f +10817,24097,179,1,f +10817,2412b,179,6,f +10817,2431,1,2,f +10817,2432,1,2,f +10817,2450,272,2,f +10817,2453b,71,2,f +10817,2540,72,3,f +10817,2653,71,4,f +10817,2730,71,2,f +10817,2744,1,2,f +10817,2780,0,12,f +10817,2780,0,1,t +10817,2817,0,2,f +10817,2877,72,2,f +10817,3005,272,4,f +10817,3020,272,9,f +10817,3022,71,4,f +10817,3022,1,1,f +10817,30229,72,2,f +10817,3023,27,5,f +10817,3024,71,6,f +10817,3024,71,1,t +10817,30273,179,1,f +10817,3031,72,4,f +10817,3033,72,1,f +10817,3034,1,3,f +10817,30363,1,1,f +10817,30374,57,4,f +10817,30377,72,1,t +10817,30377,72,2,f +10817,3039,1,1,f +10817,3068b,71,1,f +10817,3070bpr0158,2,2,f +10817,32009,71,2,f +10817,32054,0,1,f +10817,32059,1,2,f +10817,32064a,2,4,f +10817,32140,27,5,f +10817,32184,0,2,f +10817,32293,0,1,f +10817,3623,2,2,f +10817,3626cpr1781,14,1,f +10817,3626cpr1785,179,1,f +10817,3626cpr1798,4,1,f +10817,3666,1,8,f +10817,3700,15,2,f +10817,3701,0,2,f +10817,3706,0,1,f +10817,3707,4,1,f +10817,3710,272,2,f +10817,3713,4,1,f +10817,3713,4,1,t +10817,3749,19,1,f +10817,3894,71,4,f +10817,3895,1,2,f +10817,3937,1,2,f +10817,4162,0,2,f +10817,41769,272,1,f +10817,41770,272,1,f +10817,43093,1,2,f +10817,43722,1,1,f +10817,43723,1,1,f +10817,44676,272,2,f +10817,4510,71,2,f +10817,45590,0,1,f +10817,4595,71,2,f +10817,4697b,71,1,t +10817,4697b,71,1,f +10817,4740,57,4,f +10817,4865b,57,1,f +10817,48729b,71,1,t +10817,48729b,71,2,f +10817,48933,1,2,f +10817,51739,272,2,f +10817,53451,25,1,t +10817,53451,25,2,f +10817,59900,179,2,f +10817,60169,57,2,f +10817,60470b,2,2,f +10817,60471,4,1,f +10817,60477,272,2,f +10817,60483,72,1,f +10817,6134,71,2,f +10817,6141,27,4,f +10817,6141,57,1,t +10817,6141,27,1,t +10817,6141,47,1,f +10817,6141,47,1,t +10817,6141,57,3,f +10817,62462,179,3,f +10817,6541,2,4,f +10817,6558,1,6,f +10817,6587,28,1,f +10817,6628,0,2,f +10817,6636,272,4,f +10817,76764,179,1,t +10817,76764,179,1,f +10817,85984,1,1,f +10817,87079,272,3,f +10817,87083,72,2,f +10817,87421,71,4,f +10817,90258,72,2,f +10817,91501,71,4,f +10817,91988,72,1,f +10817,93062c02,179,2,f +10817,970c00pr0937,72,1,f +10817,970c00pr0947,0,1,f +10817,973pr3150c01,72,1,f +10817,973pr3162c01,0,1,f +10817,98138,182,2,f +10817,98138,182,1,t +10817,99021,72,1,f +10817,99206,0,4,f +10817,99206,71,1,f +10817,99780,71,2,f +10819,3003,72,1,f +10819,3020,72,1,f +10819,30228,72,1,f +10819,30394,14,1,f +10819,3626bpr0325,14,1,f +10819,3829c01,14,1,f +10819,3833,4,1,f +10819,3841,72,1,f +10819,4079,14,1,f +10819,44567a,14,1,f +10819,47457,14,1,f +10819,6014b,14,4,f +10819,6015,0,4,f +10819,6157,0,2,f +10819,970c00,25,1,f +10819,973pr1182c01,25,1,f +10821,219,72,8,t +10821,53400,72,8,f +10821,53401,72,8,f +10822,22670,63,1,f +10822,2486,15,1,f +10822,30077,9,1,f +10822,3008,9,2,f +10822,30153,45,4,f +10822,30248,3,1,f +10822,3035,73,1,f +10822,3069b,3,2,f +10822,33210,73,1,f +10822,33243,9,2,f +10822,3794a,15,1,f +10822,3795,118,2,f +10822,3852b,4,1,f +10822,42013,135,2,f +10822,42332,5,1,f +10822,42498,13,1,f +10822,4738a,45,1,f +10822,4739a,45,1,f +10822,6019,1,2,f +10822,6171pr01,15,1,f +10822,6183,15,1,f +10822,6185,5,1,f +10822,6204,15,1,f +10822,6250pr01,15,1,f +10823,cwindow03,4,1,f +10823,cwindow03,14,1,f +10823,cwindow03,1,1,f +10823,cwindow03,15,1,f +10824,3004,19,3,f +10824,3021,19,1,f +10824,3023,70,3,f +10824,6124,42,1,f +10827,32013,7,1,f +10827,32062,0,2,f +10827,32073,0,1,f +10827,32174,0,4,f +10827,32269,7,1,f +10827,32270,7,3,f +10827,32475,0,2,f +10827,32476,8,2,f +10827,32482,8,2,f +10827,32489,0,1,f +10827,32506,0,2,f +10827,32553,7,1,f +10827,32554,34,1,f +10827,32566,0,1,f +10827,3706,0,1,f +10827,3713,7,2,f +10827,4519,0,2,f +10827,6553,7,1,f +10828,2342,0,1,f +10828,3003,15,1,f +10828,3004,1,5,f +10828,3006,1,1,f +10828,3008,1,1,f +10828,3009,1,4,f +10828,3010,1,2,f +10828,3020,1,4,f +10828,3020,0,1,f +10828,3021,15,1,f +10828,3021,1,2,f +10828,3022,1,5,f +10828,3023,1,6,f +10828,3024,36,2,f +10828,3034,1,1,f +10828,3035,15,1,f +10828,3037,1,1,f +10828,3040b,1,16,f +10828,3068bp08,15,1,f +10828,3069b,15,4,f +10828,3069bp06,15,2,f +10828,3069bp25,1,1,f +10828,3137c01,0,3,f +10828,3626apr0001,14,2,f +10828,3633,1,2,f +10828,3641,0,6,f +10828,3660,1,4,f +10828,3665,1,6,f +10828,3666,1,2,f +10828,3673,7,1,f +10828,3700,1,1,f +10828,3701,1,1,f +10828,3703,1,2,f +10828,3710,15,6,f +10828,3747a,1,2,f +10828,3794a,1,2,f +10828,3795,1,2,f +10828,3832,1,2,f +10828,3838,14,2,f +10828,3842b,14,2,f +10828,3933a,15,1,f +10828,3934a,15,1,f +10828,3935,15,1,f +10828,3936,15,1,f +10828,3937,1,1,f +10828,3938,1,1,f +10828,3956,15,1,f +10828,3957a,36,4,f +10828,4032a,0,1,f +10828,4070,0,2,f +10828,4162,15,2,f +10828,4286,15,2,f +10828,4286,1,4,f +10828,4287,1,2,f +10828,4315,1,1,f +10828,4474,46,1,f +10828,4589,36,2,f +10828,4590,1,1,f +10828,4732,1,1,f +10828,4740,36,2,f +10828,4741,1,2,f +10828,4873,15,1,f +10828,970c00,14,2,f +10828,973p90c04,14,2,f +10831,2780,0,2,f +10831,2994,15,2,f +10831,32013,2,1,f +10831,32017,0,4,f +10831,32039,0,6,f +10831,32062,0,3,f +10831,32063,2,2,f +10831,32073,0,1,f +10831,32126,7,2,f +10831,3705,0,6,f +10831,3706,0,2,f +10831,3713,7,4,f +10831,4519,0,3,f +10831,6536,7,2,f +10831,6558,0,1,f +10831,6575,7,4,f +10831,6578,0,2,f +10831,6632,2,6,f +10832,2412b,0,2,f +10832,2418bpb01,34,1,f +10832,2419,7,2,f +10832,2436,14,2,f +10832,2458,14,1,f +10832,2540,0,1,f +10832,2555,7,3,f +10832,2620,34,1,f +10832,3001,0,1,f +10832,30014,0,2,f +10832,3004,0,1,f +10832,3006,7,1,f +10832,30062,14,1,f +10832,3010,7,1,f +10832,3020,14,1,f +10832,30200,0,1,f +10832,3022,0,1,f +10832,3023,14,2,f +10832,3023,7,2,f +10832,3029,7,2,f +10832,30385,383,1,f +10832,3039,14,4,f +10832,3068b,1,1,f +10832,3068bpx14,0,1,f +10832,3298pb001,14,2,f +10832,3403,0,1,f +10832,3404,0,1,f +10832,3612,0,4,f +10832,3626bpb0093,14,1,f +10832,3660,0,7,f +10832,3710,7,1,f +10832,3749,7,2,f +10832,3795,7,2,f +10832,412,34,6,f +10832,4220,14,1,f +10832,4221,0,2,f +10832,4345b,34,1,f +10832,4346,34,1,f +10832,4590,0,1,f +10832,4623,14,1,f +10832,4625,0,1,f +10832,5102c19,7,1,f +10832,57467,383,2,f +10832,59275,0,2,f +10832,6039,14,2,f +10832,6040,0,2,f +10832,6041,34,3,f +10832,6042,14,2,f +10832,6061,0,2,f +10832,6090,42,1,f +10832,6118,0,4,f +10832,6141,57,2,f +10832,6141,57,1,t +10832,6217,0,1,f +10832,6249,8,2,f +10832,6541,14,1,f +10832,70001pb01,0,1,f +10832,71128,383,2,f +10832,71594,34,1,f +10832,71966,61,1,f +10832,970x026,1,1,f +10832,973pb0116c01,1,1,f +10833,3020,19,4,f +10833,3023,2,2,f +10833,3024,14,2,f +10833,3040b,2,1,f +10833,3062b,19,12,f +10833,3626b,2,1,f +10833,3665,2,2,f +10833,3794b,2,1,f +10833,3958,19,1,f +10833,4032a,2,1,f +10833,43723,2,4,f +10833,4733,72,2,f +10833,4740,2,1,f +10833,54200,2,2,f +10833,54200,2,1,t +10833,64647,57,1,t +10833,64647,57,1,f +10833,87580,2,1,f +10835,11816pr0002,78,1,f +10835,92255,226,1,f +10835,92456pr0032c01,78,1,f +10835,92818pr0008c01,212,1,f +10836,11127,41,2,f +10836,2450,308,2,f +10836,30357,72,1,f +10836,3710,27,1,f +10836,4460b,72,1,f +10836,4740pr0003,35,3,f +10836,53451,27,3,f +10836,54200,71,2,f +10836,55236,27,3,f +10836,59900,71,3,f +10836,92280,0,1,f +10836,92280,71,2,f +10836,93606,72,1,f +10838,23306,383,1,f +10838,2342,8,1,f +10838,2412b,1,4,f +10838,2431,1,12,f +10838,2431,4,2,f +10838,2445,7,1,f +10838,2450,8,6,f +10838,2456,7,3,f +10838,2540,1,1,f +10838,2555,1,2,f +10838,2555,19,1,f +10838,298c03,0,3,f +10838,298c03,0,1,t +10838,3001,7,4,f +10838,3001,4,2,f +10838,3003,1,4,f +10838,30031,8,1,f +10838,3004,0,2,f +10838,3007,0,2,f +10838,3009,8,2,f +10838,3010,7,2,f +10838,3021,8,1,f +10838,3021,6,1,f +10838,3022,7,11,f +10838,3023,1,4,f +10838,30303,8,1,f +10838,3032,7,9,f +10838,30359a,0,2,f +10838,3036,7,3,f +10838,30363,7,3,f +10838,30364,8,8,f +10838,30365,7,8,f +10838,30366px3,8,1,f +10838,3037,8,5,f +10838,30373,7,2,f +10838,30374,36,2,f +10838,3037px2,7,1,f +10838,30381,0,1,f +10838,3039,7,4,f +10838,3045,8,2,f +10838,3048c,7,2,f +10838,3062b,1,6,f +10838,3298,8,2,f +10838,3622,8,8,f +10838,3626b,0,3,f +10838,3626bpr0815,0,1,f +10838,3660,8,12,f +10838,3666,7,3,f +10838,3700,1,8,f +10838,3710,7,1,f +10838,3747a,8,1,f +10838,3795,8,3,f +10838,3839b,0,1,f +10838,3935,7,1,f +10838,3936,7,1,f +10838,3937,0,2,f +10838,3940b,0,7,f +10838,3941,4,2,f +10838,3957a,0,2,f +10838,3958,7,2,f +10838,4070,4,6,f +10838,4150ps2,7,1,f +10838,4213,8,1,f +10838,4315,4,1,f +10838,4349,0,2,f +10838,4477,1,2,f +10838,4595,0,4,f +10838,4598,19,1,f +10838,50231,0,1,f +10838,6019,1,1,f +10838,6091,0,4,f +10838,6106,7,6,f +10838,6134,4,2,f +10838,6232,1,3,f +10838,6249,7,4,f +10838,6564,8,5,f +10838,6565,8,5,f +10838,970c00,0,1,f +10838,973pr1340c01,0,1,f +10840,2555,71,2,f +10840,298c02,71,1,t +10840,298c02,71,2,f +10840,3020,71,2,f +10840,30602,72,1,f +10840,3069b,19,1,f +10840,3626bpr0525,78,1,f +10840,3710,71,1,f +10840,3900,71,1,f +10840,3937,72,1,f +10840,48336,19,1,f +10840,54200,71,1,t +10840,54200,71,4,f +10840,60470a,71,1,f +10840,60478,72,6,f +10840,61189pr0003,15,1,f +10840,6134,0,1,f +10840,63868,71,2,f +10840,64567,71,1,f +10840,970x026,15,1,f +10840,973pr0470c01,15,1,f +10841,14226c11,15,1,f +10841,2432,4,1,f +10841,2584,4,1,f +10841,2585,7,1,f +10841,2598,19,1,f +10841,2618,19,1,f +10841,30056,19,4,f +10841,30141,8,1,f +10841,30150,6,1,f +10841,30154,0,1,f +10841,30162,8,1,f +10841,30167,6,1,f +10841,30172,15,1,f +10841,30192,8,1,f +10841,3020,14,1,f +10841,3021,8,2,f +10841,3021,6,1,f +10841,3022,7,1,f +10841,30229,8,1,f +10841,3023,4,4,f +10841,3023,8,5,f +10841,30284,6,2,f +10841,30332,6,1,f +10841,3034,8,1,f +10841,30367a,4,1,f +10841,30552,8,1,f +10841,30565,6,4,f +10841,30663,0,1,f +10841,3070bpr0007,7,1,f +10841,3070bpr0007,7,1,t +10841,3626b,14,3,f +10841,3626bpa1,14,1,f +10841,3626bpr0247,14,1,f +10841,3710,8,6,f +10841,3737,0,1,f +10841,3749,7,1,t +10841,3749,19,1,f +10841,3832,7,1,f +10841,3841,8,1,f +10841,3937,7,2,f +10841,3941,4,3,f +10841,4081b,4,1,f +10841,4085c,14,3,f +10841,41529,8,1,f +10841,41752,8,1,f +10841,4185,14,1,f +10841,4189431pb01,9999,1,t +10841,4189431pb02,9999,1,t +10841,4189431pb03,9999,1,t +10841,4189431pb04,9999,1,t +10841,4189431pb05,9999,1,t +10841,4274,7,2,f +10841,4274,7,1,t +10841,4477,7,2,f +10841,4519,7,1,f +10841,4589,14,1,f +10841,56823,0,1,f +10841,6019,0,18,f +10841,6020,0,4,f +10841,6057,0,4,f +10841,6126a,57,2,f +10841,6141,7,1,t +10841,6141,7,5,f +10841,71155,0,1,f +10841,970c00,0,1,f +10841,970c00pb018,19,1,f +10841,973px183c01,6,1,f +10841,973px184c01,8,1,f +10841,rb00170,14,4,f +10843,2412b,71,2,f +10843,2431,15,1,f +10843,2431,33,1,f +10843,2436,71,1,f +10843,298c02,1,1,t +10843,298c02,1,1,f +10843,3004,15,8,f +10843,3010,15,2,f +10843,3020,1,2,f +10843,3021,71,1,f +10843,3022,14,2,f +10843,3023,15,3,f +10843,30350b,15,2,f +10843,3037,15,2,f +10843,3069b,15,1,f +10843,3622,15,6,f +10843,3623,15,2,f +10843,3626bpr0389,14,1,f +10843,3665,15,2,f +10843,3666,1,2,f +10843,3710,1,3,f +10843,3794b,72,6,f +10843,3829c01,14,1,f +10843,3962b,0,1,f +10843,4079,14,1,f +10843,43337,15,2,f +10843,45677,15,1,f +10843,48336,15,2,f +10843,50745,15,2,f +10843,52036,72,1,f +10843,52038,15,1,f +10843,54200,47,1,t +10843,54200,47,2,f +10843,57783,41,1,f +10843,6014b,71,4,f +10843,60475a,15,2,f +10843,60601,41,4,f +10843,61345,15,2,f +10843,6141,33,1,t +10843,6141,36,1,t +10843,6141,33,2,f +10843,6141,36,2,f +10843,61482,71,1,t +10843,61482,71,1,f +10843,6157,0,2,f +10843,6180,1,1,f +10843,86035,15,1,f +10843,87697,0,4,f +10843,92586pr0001,84,1,f +10843,92593,72,1,f +10843,970c00,0,1,f +10843,973pr1188c01,0,1,f +10844,2780,0,5,f +10844,2780,0,1,t +10844,32062,4,5,f +10844,42003,0,3,f +10844,43093,1,4,f +10844,45749,288,4,f +10844,47306,0,1,f +10844,49423,0,1,f +10844,53542,27,2,f +10844,53545,0,1,f +10844,53547,288,1,f +10844,53566,27,2,f +10844,60176,288,3,f +10844,61054,0,4,f +10844,61806,27,4,f +10844,64251,288,2,f +10844,64258pat0001,288,1,f +10844,64262,57,1,f +10844,64264pat0001,288,2,f +10844,64275,135,2,f +10844,64276,0,1,f +10844,64277c01,297,1,f +10844,64889pr0001,135,1,f +10844,6558,1,4,f +10846,2338,4,1,f +10846,2339,14,2,f +10846,2343,4,1,f +10846,2343,15,1,f +10846,2343,7,1,f +10846,2345,4,2,f +10846,2418a,15,2,f +10846,2489,6,1,f +10846,2490px2,1,1,f +10846,2490px3,4,1,f +10846,3004,6,1,f +10846,3004,0,3,f +10846,3004,14,4,f +10846,3004,4,3,f +10846,3005,1,2,f +10846,3005,14,8,f +10846,3008,14,1,f +10846,3009,1,2,f +10846,3020,2,1,f +10846,3020,14,1,f +10846,3021,14,2,f +10846,3022,14,4,f +10846,3023,7,2,f +10846,3023,6,1,f +10846,3023,14,1,f +10846,3023,0,1,f +10846,3036,2,1,f +10846,3062b,1,4,f +10846,3069b,14,1,f +10846,3460,14,1,f +10846,3470,2,1,f +10846,3497,2,1,f +10846,3622,0,4,f +10846,3623,14,2,f +10846,3626apr0001,14,8,f +10846,3633,1,1,f +10846,3660,4,2,f +10846,3665,4,2,f +10846,3710,1,1,f +10846,3710,14,1,f +10846,3794a,4,4,f +10846,3832,0,2,f +10846,3844,0,2,f +10846,3846p4c,7,3,f +10846,3846p4g,7,2,f +10846,3846p4h,7,1,f +10846,3847,8,4,f +10846,3848,6,1,f +10846,3848,0,1,f +10846,3849,8,1,f +10846,3849,0,1,f +10846,3896,0,1,f +10846,3896,8,1,f +10846,3899,1,1,f +10846,3899,15,1,f +10846,3899,4,1,f +10846,3937,15,2,f +10846,3942b,14,2,f +10846,3957a,0,1,f +10846,4032a,6,1,f +10846,4070,7,2,f +10846,4081b,4,2,f +10846,4085b,4,4,f +10846,4085b,14,2,f +10846,4282,2,1,f +10846,4460a,4,2,f +10846,4460a,1,2,f +10846,4477,4,1,f +10846,4477,0,1,f +10846,4493c01pb02,0,1,f +10846,4493c01pb03,6,1,f +10846,4495a,4,3,f +10846,4495a,1,3,f +10846,4497,6,2,f +10846,4498,6,1,f +10846,4499,6,1,f +10846,4503,8,1,f +10846,4503,0,1,f +10846,4524,4,1,f +10846,4524,1,1,f +10846,4530,6,1,f +10846,4599a,7,1,f +10846,4623,14,2,f +10846,87692,14,1,f +10846,87692,4,1,f +10846,87693,14,1,t +10846,87693,4,1,t +10846,87694,14,1,t +10846,87694,4,1,t +10846,970c00,15,1,f +10846,970c00,0,1,f +10846,970x021,0,1,f +10846,970x026,1,2,f +10846,970x026,4,3,f +10846,973p40c01,1,1,f +10846,973p40c01,0,1,f +10846,973p40c03,4,1,f +10846,973p41c01,1,1,f +10846,973p42c01,4,1,f +10846,973p46c02,7,1,f +10846,973p71c01,15,1,f +10846,973px138c01,4,1,f +10847,2357,6,1,f +10847,2412b,7,1,t +10847,2412b,7,1,f +10847,2454ps5,0,1,f +10847,2540,8,1,f +10847,30000,8,1,f +10847,3005,6,1,f +10847,3040b,6,2,f +10847,3068b,8,1,f +10847,3070b,7,1,f +10847,3070b,7,1,t +10847,3070bp06,7,1,t +10847,3070bp06,7,1,f +10847,3245b,19,2,f +10847,32530,8,2,f +10847,3308,19,1,f +10847,3622,19,2,f +10847,3626b,0,1,f +10847,3700,6,1,f +10847,3937,0,1,f +10847,41539,19,1,f +10847,4349,0,1,f +10847,4438,0,1,f +10847,4460a,6,2,f +10847,44757,378,1,f +10847,4589,8,2,f +10847,6126a,57,2,f +10847,6134,0,1,f +10847,6141,7,1,t +10847,6141,7,2,f +10847,6636,6,1,f +10847,970x025,7,1,f +10847,970x025,378,1,f +10847,973c15,6,1,f +10847,973pb0282c01,7,1,f +10847,x50px1,2,1,f +10848,3001a,15,1,f +10848,3002a,15,2,f +10848,3004,47,2,f +10848,3004prc,15,3,f +10848,3010,47,1,f +10848,3010pb036e,15,1,f +10848,3024,1,2,f +10848,3030,15,1,f +10848,3032,15,1,f +10848,3037,47,1,f +10848,3137c01,0,2,f +10848,3139,0,4,f +10851,15573,2,16,f +10851,15573,71,1,f +10851,2431,72,3,f +10851,2431,71,7,f +10851,2445,0,2,f +10851,3001,71,2,f +10851,3002,71,4,f +10851,3010,71,3,f +10851,3020,71,3,f +10851,3021,71,4,f +10851,3021,2,7,f +10851,3021,15,8,f +10851,3023,71,10,f +10851,3023,0,2,f +10851,3023,47,20,f +10851,3023,2,3,f +10851,3023,4,4,f +10851,3024,4,11,f +10851,3024,71,12,f +10851,3024,15,8,f +10851,3024,47,17,f +10851,3024,2,8,f +10851,3024,14,2,f +10851,3028,0,4,f +10851,3029,0,1,f +10851,3069b,0,9,f +10851,3069b,72,7,f +10851,3069b,71,8,f +10851,3069b,14,1,f +10851,3070b,19,10,f +10851,3070b,72,7,f +10851,3070b,0,2,f +10851,3070b,4,2,f +10851,3070b,71,8,f +10851,3070b,41,3,f +10851,33291,10,6,f +10851,3622,71,3,f +10851,3623,0,4,f +10851,3623,71,3,f +10851,3623,2,2,f +10851,3623,15,3,f +10851,3623,4,4,f +10851,3666,2,3,f +10851,3710,15,4,f +10851,3710,70,3,f +10851,3710,2,4,f +10851,3710,4,4,f +10851,3795,15,4,f +10851,4162,0,6,f +10851,4162pr0034,0,1,f +10851,4162pr0035b,0,1,f +10851,54200,14,1,f +10851,59900,2,19,f +10851,60897,71,1,f +10851,6141,70,14,f +10851,63864,71,4,f +10851,6636,72,4,f +10851,87079,71,1,f +10851,87087,71,5,f +10851,87580,71,3,f +10851,87994,0,1,f +10852,11269,35,1,f +10852,11270,35,1,f +10852,11271,148,1,f +10852,11276,297,1,f +10852,11305,35,1,f +10852,32184,0,1,f +10852,3713,71,1,t +10852,3713,71,1,f +10852,43093,1,1,f +10852,43093,1,1,t +10852,53451,179,2,t +10852,53451,179,4,f +10852,59443,4,1,f +10852,87083,72,1,f +10852,87747,297,1,t +10852,87747,297,1,f +10852,90608,0,2,f +10852,90611,0,2,f +10852,90617,72,4,f +10852,90626,0,1,f +10852,90640,148,2,f +10852,90640,297,3,f +10852,90640,35,1,f +10852,90661,179,2,f +10852,92217,148,2,f +10852,93575,179,2,f +10852,98313,297,4,f +10852,98570pat01,15,1,f +10852,98592,148,1,f +10852,98606,297,1,f +10854,2780,0,2,f +10854,32013,25,2,f +10854,32015,25,2,f +10854,32039,25,1,f +10854,32062,0,2,f +10854,32138,0,1,f +10854,32140,0,2,f +10854,32553,4,3,f +10854,32554,45,1,f +10854,32573,25,1,f +10854,3749,7,1,f +10854,40342,4,1,f +10854,4519,0,5,f +10854,6553,0,3,f +10854,71509,0,1,f +10854,71509,0,1,t +10855,30027b,15,4,f +10855,30028,0,4,f +10855,3068b,4,1,f +10855,3788,14,1,f +10855,3795,4,1,f +10855,3829c01,4,1,f +10855,44674,14,1,f +10855,4600,0,2,f +10855,54200,4,1,t +10855,54200,4,2,f +10856,3004,8,5,f +10856,3004,7,2,f +10856,3020,0,1,f +10856,3045,7,2,f +10856,3065,36,1,f +10857,2444,0,1,f +10857,2460,0,2,f +10857,2780,0,2,f +10857,3049b,0,2,f +10857,43093,1,2,f +10857,47430,320,2,f +10857,47431,320,2,f +10857,47432,320,2,f +10857,47452,72,2,f +10857,47454,72,2,f +10857,47455,0,10,f +10857,47457,0,6,f +10857,50602,0,2,f +10857,50627,0,1,f +10857,50629,0,2,f +10857,50657pb01,0,1,f +10857,50659c01pb01,0,1,f +10857,53613pat0002,320,1,f +10857,bb153pr0011,320,1,f +10858,2339,0,12,f +10858,2357,0,6,f +10858,2412b,72,6,f +10858,2420,72,2,f +10858,2444,72,2,f +10858,2445,0,3,f +10858,2454a,0,2,f +10858,2456,71,3,f +10858,2555,71,8,f +10858,2621,0,1,f +10858,2730,0,1,f +10858,2780,0,1,t +10858,2780,0,28,f +10858,2819,71,1,f +10858,2853,71,2,f +10858,3001,0,11,f +10858,3002,71,2,f +10858,3002,0,2,f +10858,3003,71,7,f +10858,3004,0,23,f +10858,3004,71,26,f +10858,3006,0,2,f +10858,3008,71,5,f +10858,3008,0,2,f +10858,3009,71,7,f +10858,3009,0,6,f +10858,3010,0,21,f +10858,3010,71,7,f +10858,3020,72,3,f +10858,3021,72,11,f +10858,3021,0,2,f +10858,3022,72,4,f +10858,3023,72,62,f +10858,3024,0,2,f +10858,3028,0,3,f +10858,3031,0,3,f +10858,3032,0,11,f +10858,3033,71,4,f +10858,3034,72,2,f +10858,3035,0,4,f +10858,30363,0,21,f +10858,3037,0,6,f +10858,30374,71,6,f +10858,3038,0,10,f +10858,30383,0,2,f +10858,3039,0,12,f +10858,3040b,0,14,f +10858,30414,72,4,f +10858,3045,0,6,f +10858,30505,0,8,f +10858,3063b,0,8,f +10858,30663,0,2,f +10858,3069b,0,2,f +10858,3070b,72,1,t +10858,3070b,72,9,f +10858,32013,1,2,f +10858,32014,1,2,f +10858,32018,71,10,f +10858,32034,71,2,f +10858,32062,4,9,f +10858,32064b,72,6,f +10858,32123b,14,19,f +10858,32123b,14,1,t +10858,32184,71,1,f +10858,32198,71,4,f +10858,32269,71,5,f +10858,32270,0,10,f +10858,32498,0,1,f +10858,32530,72,1,f +10858,3298,0,14,f +10858,3460,72,3,f +10858,3622,0,18,f +10858,3623,0,10,f +10858,3648b,71,6,f +10858,3660,0,14,f +10858,3660,71,6,f +10858,3665,71,4,f +10858,3666,72,9,f +10858,3673,71,1,t +10858,3673,71,4,f +10858,3700,71,12,f +10858,3700,0,6,f +10858,3701,72,8,f +10858,3702,0,4,f +10858,3705,0,5,f +10858,3706,0,6,f +10858,3707,0,1,f +10858,3708,0,1,f +10858,3710,72,6,f +10858,3713,4,1,t +10858,3713,4,6,f +10858,3795,0,9,f +10858,3832,0,4,f +10858,3894,71,6,f +10858,3894,0,1,f +10858,3937,1,4,f +10858,3940b,0,2,f +10858,3941,71,2,f +10858,3960pr0017a,0,4,f +10858,4019,71,4,f +10858,4161,0,4,f +10858,41677,15,12,f +10858,41747,0,5,f +10858,41748,0,5,f +10858,41749,0,1,f +10858,41750,0,1,f +10858,41766,0,2,f +10858,41767,0,9,f +10858,41768,0,9,f +10858,41896,297,4,f +10858,41897,0,4,f +10858,42022,0,14,f +10858,4274,71,12,f +10858,4274,71,1,t +10858,4286,0,16,f +10858,4287,71,4,f +10858,43093,1,25,f +10858,43121,71,4,f +10858,43710,0,1,f +10858,43711,0,1,f +10858,43720,0,5,f +10858,43721,0,5,f +10858,43722,0,1,f +10858,43723,0,1,f +10858,44126,0,2,f +10858,44294,71,9,f +10858,44302a,0,3,f +10858,44567a,0,1,f +10858,44728,72,2,f +10858,4519,71,4,f +10858,45301,0,1,f +10858,46667,0,2,f +10858,4716,71,2,f +10858,47326pat03,0,2,f +10858,47397,71,1,f +10858,47398,71,1,f +10858,4740,36,2,f +10858,47456,0,2,f +10858,47458,72,13,f +10858,47753,0,1,f +10858,48336,0,4,f +10858,50304,0,3,f +10858,50305,0,3,f +10858,50923,72,2,f +10858,50950,320,18,f +10858,50950,0,28,f +10858,51342,0,2,f +10858,54200,0,10,f +10858,54200,182,8,f +10858,54200,15,4,f +10858,54383,0,1,f +10858,54384,0,1,f +10858,56145,0,8,f +10858,59426,72,2,f +10858,6019,0,6,f +10858,6091,320,9,f +10858,6091,0,4,f +10858,6108,0,1,f +10858,6126a,57,8,f +10858,6134,71,4,f +10858,6141,36,1,t +10858,6141,36,2,f +10858,6180,0,1,f +10858,6183,0,2,f +10858,6190,72,2,f +10858,6538b,36,10,f +10858,6541,0,18,f +10858,6558,0,2,f +10858,6564,0,2,f +10858,6565,0,2,f +10858,6589,71,4,f +10858,6632,71,10,f +10858,9244,71,1,f +10860,11153,72,1,f +10860,11219pr0001,15,2,f +10860,11458,72,2,f +10860,13357,9999,1,t +10860,2654,0,3,f +10860,3002,0,1,f +10860,30031,71,1,f +10860,30162,72,1,f +10860,3021,72,1,f +10860,3022,71,1,f +10860,3023,72,1,f +10860,3040b,71,1,f +10860,3062b,71,2,f +10860,3626cpr0472,78,1,f +10860,3626cpr0854,78,1,f +10860,3626cpr0903,78,1,f +10860,3626cpr0937,78,1,f +10860,3794b,4,2,f +10860,3832,72,1,f +10860,43722,4,1,f +10860,43723,4,1,f +10860,44302a,71,1,f +10860,4595,0,1,f +10860,50950,4,2,f +10860,54200,4,1,t +10860,54200,4,2,f +10860,57899,0,1,f +10860,58176,36,2,f +10860,58247,0,1,f +10860,6019,72,2,f +10860,60849,0,1,t +10860,60849,0,2,f +10860,61184,71,2,f +10860,6141,42,1,t +10860,6141,42,2,f +10860,6541,71,2,f +10860,85984,71,1,f +10860,92582,4,1,f +10860,92738,0,1,f +10860,95188,72,2,f +10860,970c00pr0360,0,1,f +10860,970c00pr0470,320,1,f +10860,970c00pr0471,15,2,f +10860,973pr2094c01,0,1,f +10860,973pr2253c01,320,1,f +10860,973pr2265c01,15,2,f +10860,98138,182,1,t +10860,98138,182,1,f +10860,98177pr0001,0,1,f +10860,98177pr0002,0,1,f +10861,4032a,0,2,f +10861,4733,71,1,f +10861,51739,0,4,f +10861,6141,71,1,f +10861,6141,71,1,t +10861,88072,72,2,f +10861,98138,47,1,t +10861,98138,47,1,f +10864,2736,7,2,f +10864,2825,14,2,f +10864,2850a,47,1,f +10864,2851,3,1,f +10864,2852,7,1,f +10864,2853,3,1,f +10864,2905,14,3,f +10864,32002,8,3,f +10864,32014,14,2,f +10864,32016,14,4,f +10864,32016,0,2,f +10864,32034,0,1,f +10864,32039,14,4,f +10864,32056,14,2,f +10864,32062,0,12,f +10864,32073,0,4,f +10864,32123b,7,5,f +10864,32126,7,2,f +10864,32146,0,4,f +10864,32184,14,2,f +10864,32193,0,4,f +10864,32249,0,2,f +10864,32250,0,2,f +10864,32250,14,2,f +10864,32310pb07,14,1,f +10864,3713,7,5,f +10864,3737,0,2,f +10864,3749,7,5,f +10864,4519,0,6,f +10864,6536,14,1,f +10864,6538b,14,1,f +10864,6553,14,4,f +10864,6558,0,1,f +10864,6587,8,2,f +10864,6632,14,3,f +10864,71509,0,4,f +10864,78c03,14,2,f +10864,b3057,9999,1,f +10867,2431,71,1,f +10867,2432,71,12,f +10867,2436,71,2,f +10867,2445,0,3,f +10867,2495,4,1,f +10867,2496,0,1,f +10867,2926,0,4,f +10867,3001,14,2,f +10867,3003,1,6,f +10867,3004,1,2,f +10867,30043,71,1,f +10867,3005,14,2,f +10867,3009,14,6,f +10867,3010,14,2,f +10867,3020,14,1,f +10867,3020,15,2,f +10867,3021,4,1,f +10867,3021,1,1,f +10867,3022,1,10,f +10867,3023,14,14,f +10867,3024,71,4,f +10867,3024,182,2,f +10867,3027,72,2,f +10867,3031,72,1,f +10867,3033,72,1,f +10867,3033,14,3,f +10867,30414,4,1,f +10867,30592,71,1,f +10867,3062b,71,2,f +10867,3065,40,2,f +10867,3068b,0,2,f +10867,3068b,1,9,f +10867,3068bpr0136,72,1,f +10867,3069b,14,2,f +10867,3069b,71,4,f +10867,32000,71,2,f +10867,32001,0,3,f +10867,32028,0,3,f +10867,3460,4,2,f +10867,3623,0,2,f +10867,3626bpr0645,14,1,f +10867,3626bpr0646,14,1,f +10867,3666,71,3,f +10867,3666,0,1,f +10867,3710,14,2,f +10867,3795,14,2,f +10867,3795,72,4,f +10867,3821,14,1,f +10867,3822,14,1,f +10867,3829c01,1,1,f +10867,3832,71,1,f +10867,3839b,72,1,f +10867,3899,4,1,f +10867,3937,71,1,f +10867,4032a,71,1,f +10867,40620,71,2,f +10867,4079b,1,1,f +10867,4162,72,6,f +10867,4162,71,2,f +10867,4162,14,2,f +10867,4176,40,1,f +10867,42022,14,2,f +10867,44728,0,1,f +10867,44728,14,6,f +10867,4488,71,2,f +10867,4510,71,2,f +10867,46413,14,1,f +10867,48336,0,2,f +10867,4864b,14,6,f +10867,50745,14,2,f +10867,51739,71,1,f +10867,54200,47,1,t +10867,54200,71,1,t +10867,54200,71,4,f +10867,54200,47,2,f +10867,58380,14,3,f +10867,58381,14,3,f +10867,59349,14,9,f +10867,60032,14,2,f +10867,6014b,71,10,f +10867,60601,40,2,f +10867,6081,14,2,f +10867,60897,0,2,f +10867,6091,14,6,f +10867,6112,71,2,f +10867,6134,0,1,f +10867,61409,72,4,f +10867,6141,0,2,f +10867,6141,182,1,t +10867,6141,36,8,f +10867,6141,47,2,f +10867,6141,36,3,t +10867,6141,182,2,f +10867,6141,47,1,t +10867,6141,0,1,t +10867,61678,14,8,f +10867,62810,308,1,f +10867,64644,0,2,f +10867,86035,4,1,f +10867,87697,0,10,f +10867,95120,0,1,f +10867,970c00,1,2,f +10867,973pr1163c01,272,1,f +10867,973pr1580c01,15,1,f +10868,122c01,0,6,f +10868,3137c01,0,4,f +10868,3483,0,4,f +10868,3641,0,20,f +10868,7039,4,4,f +10868,7049,0,2,f +10869,2340,1,2,f +10869,2412b,1,3,f +10869,2412b,14,3,f +10869,2431,1,2,f +10869,2450,1,2,f +10869,2460,1,1,f +10869,2540,14,2,f +10869,2654,72,4,f +10869,3007,1,1,f +10869,3020,1,3,f +10869,3020,14,1,f +10869,3021,1,1,f +10869,3023,14,2,f +10869,3023,47,2,f +10869,3032,1,1,f +10869,3032,14,1,f +10869,3032,0,1,f +10869,3034,0,1,f +10869,30361,72,4,f +10869,30367b,72,2,f +10869,3039,1,1,f +10869,3040b,1,2,f +10869,3040b,14,2,f +10869,30414,1,2,f +10869,3048c,1,1,f +10869,30553,72,4,f +10869,30602,40,2,f +10869,3068b,1,1,f +10869,3068b,72,2,f +10869,32002,72,2,f +10869,32034,0,2,f +10869,32062,0,2,f +10869,32064b,1,4,f +10869,32187,71,2,f +10869,3475b,72,2,f +10869,3660,1,1,f +10869,3705,0,2,f +10869,3706,0,2,f +10869,3707,0,1,f +10869,3710,1,3,f +10869,3749,19,4,f +10869,3794a,0,2,f +10869,3795,14,3,f +10869,3795,0,1,f +10869,3941,72,2,f +10869,4032a,0,9,f +10869,4070,1,2,f +10869,41747,0,1,f +10869,41748,0,1,f +10869,41764,73,2,f +10869,41765,73,2,f +10869,42022,1,4,f +10869,42023,1,6,f +10869,4286,14,2,f +10869,43093,1,4,f +10869,43710,1,1,f +10869,43711,1,1,f +10869,43722,14,1,f +10869,43723,14,1,f +10869,44302a,14,2,f +10869,44567a,72,4,f +10869,44567a,14,3,f +10869,44661,1,2,f +10869,44676,0,2,f +10869,44728,14,1,f +10869,4519,71,2,f +10869,4589,0,4,f +10869,4589,57,2,f +10869,47458,1,1,f +10869,50304,1,1,f +10869,50304,14,1,f +10869,50305,14,1,f +10869,50305,1,1,f +10869,6141,71,2,f +10869,6141,57,2,f +10869,6141,71,1,t +10869,6141,57,1,t +10869,6541,14,2,f +10869,6632,0,1,f +10870,x482,0,1,f +10871,3004,14,4,f +10871,3004p0a,14,1,f +10871,3020,14,1,f +10871,3021,14,1,f +10871,3021,0,1,f +10871,3039,4,1,f +10871,3660,14,1,f +10873,122c01,0,2,f +10873,3020,1,1,f +10873,3034,1,1,f +10873,3039,1,1,f +10873,3039pb007,1,1,f +10873,3626apr0001,14,1,f +10873,3641,0,4,f +10873,3710,1,2,f +10873,3787,1,1,f +10873,3829c01,1,1,f +10873,3842a,4,1,f +10873,4349,4,2,f +10873,970c00,15,1,f +10873,973p02c01,15,1,f +10874,46286,182,3,f +10874,46296,43,1,f +10874,51675,46,1,f +10874,51675,43,2,f +10874,clikits013pb03,182,2,f +10874,clikits013pb03,25,1,f +10874,clikits040,182,1,f +10874,clikits122pb01,43,2,f +10874,clikits122pb02,18,1,f +10875,26058pr0015,320,1,f +10875,3626cpr1883,78,1,f +10875,88646,0,1,f +10875,93550,297,1,f +10875,970c00pr1039,4,1,f +10875,973pr3322c01,4,1,f +10876,3001a,4,3,f +10876,3001a,0,1,f +10876,3001a,15,3,f +10876,3002a,15,2,f +10876,3002a,4,1,f +10876,3003,15,5,f +10876,3003,14,4,f +10876,3003,4,3,f +10876,3003,0,1,f +10876,3004,0,3,f +10876,3004,1,5,f +10876,3004,15,3,f +10876,3008,1,4,f +10876,3010,1,1,f +10876,3010,15,1,f +10876,3020,15,1,f +10876,3021,15,1,f +10876,3021,0,2,f +10876,3023,15,1,f +10876,3023,1,4,f +10876,3035,15,1,f +10876,3039,4,3,f +10876,3039,1,2,f +10876,3137c01,0,2,f +10876,3139,0,4,f +10876,35,4,4,f +10876,36,0,4,f +10876,3612,4,2,f +10876,3613,4,4,f +10876,3613,15,2,f +10876,3614a,14,6,f +10876,685p01,14,2,f +10876,685px3,14,1,f +10876,7049b,0,2,f +10876,792c03,15,1,f +10876,792c03,4,2,f +10876,x196,0,2,f +10876,x407,4,1,f +10877,14226c21,0,1,f +10877,2335,0,4,f +10877,2343,0,1,f +10877,2357,14,2,f +10877,2412b,0,5,f +10877,2431,15,4,f +10877,2431,14,7,f +10877,2431pr0017,14,3,f +10877,2432,15,7,f +10877,2446,0,1,f +10877,2447,41,1,t +10877,2447,41,1,f +10877,2540,0,4,f +10877,2577,0,2,f +10877,2877,4,1,f +10877,298c02,14,1,t +10877,298c02,14,1,f +10877,3001,0,2,f +10877,3003,15,4,f +10877,3004,15,6,f +10877,3005,15,2,f +10877,3005,0,2,f +10877,3009,1,6,f +10877,3010,7,2,f +10877,3010,0,2,f +10877,30132,8,1,f +10877,30132,8,1,t +10877,30148,0,2,f +10877,30179,8,1,f +10877,30187c01,4,1,f +10877,3020,0,2,f +10877,3023,1,3,f +10877,30256,7,2,f +10877,3027,0,1,f +10877,3027,15,1,f +10877,30285,7,1,f +10877,3031,0,2,f +10877,3039p70,15,1,f +10877,3039px7,15,1,f +10877,3062b,36,2,f +10877,3068b,14,4,f +10877,3069b,15,4,f +10877,3069b,4,1,f +10877,3069bp02,7,2,f +10877,3069bp03,7,2,f +10877,3069bp12,14,1,f +10877,3069bpr0100,2,4,f +10877,3139,0,4,f +10877,3298,7,6,f +10877,3307,0,4,f +10877,3622,7,2,f +10877,3623,14,1,f +10877,3626bp04,14,1,f +10877,3626bpr0126,14,1,f +10877,3626bpx32,14,1,f +10877,3626bpx33,14,1,f +10877,3673,7,1,f +10877,3679,7,1,f +10877,3680,1,1,f +10877,3710,1,4,f +10877,3794a,4,1,f +10877,3857,7,1,f +10877,3894,0,1,f +10877,3941,15,8,f +10877,3941,0,2,f +10877,3962b,0,1,f +10877,4032a,7,10,f +10877,4070,14,2,f +10877,4079,15,2,f +10877,4150,0,2,f +10877,4150pr0001,15,1,f +10877,4345b,7,1,f +10877,4346px3,7,1,f +10877,4349,7,1,f +10877,4449,7,1,f +10877,4485,1,1,f +10877,4485,0,2,f +10877,4589,7,2,f +10877,4600,7,2,f +10877,4624,15,4,f +10877,4697b,7,1,f +10877,4697b,7,1,t +10877,4740,383,2,f +10877,4865a,7,2,f +10877,57503,334,1,f +10877,57504,334,1,f +10877,57505,334,1,f +10877,57506,334,1,f +10877,6019,1,2,f +10877,6141,42,1,t +10877,6141,36,1,t +10877,6141,42,3,f +10877,6141,36,4,f +10877,6141,15,6,f +10877,6141,15,1,t +10877,6160c04,7,4,f +10877,6191,15,1,f +10877,6232,14,4,f +10877,6576,14,1,f +10877,6636,14,9,f +10877,73129,4,2,f +10877,76041c02,7,1,f +10877,970c00,0,3,f +10877,970c00,1,1,f +10877,973px64c01,15,1,f +10877,973px65c01,15,1,f +10877,973px66c01,0,1,f +10877,973px67c01,0,1,f +10878,2335,15,2,f +10878,2412b,15,1,f +10878,2432,1,2,f +10878,2441,0,1,f +10878,2454a,15,4,f +10878,2465,15,1,f +10878,30027,15,4,f +10878,30028,0,4,f +10878,3004,1,2,f +10878,3005,1,4,f +10878,3010,1,2,f +10878,3021,1,1,f +10878,3022,15,1,f +10878,3023,1,2,f +10878,3034,1,1,f +10878,3068bp80,15,1,f +10878,3069bp81,14,1,f +10878,3312stk01,9999,1,t +10878,3460,7,2,f +10878,3626bp02,14,1,f +10878,3626bp04,14,1,f +10878,3684,15,4,f +10878,3710,1,1,f +10878,3710,7,3,f +10878,3829c01,1,1,f +10878,3867,2,1,f +10878,3937,7,2,f +10878,3938,0,2,f +10878,3957a,15,1,f +10878,3962b,0,1,f +10878,4085c,15,4,f +10878,4095,15,2,f +10878,4449,0,1,f +10878,4460a,15,2,f +10878,4485,1,1,f +10878,4515,15,2,f +10878,4530,0,1,f +10878,4714,15,1,f +10878,4715,15,2,f +10878,4864b,41,1,f +10878,6141,33,1,f +10878,6156,1,2,f +10878,970c00,15,2,f +10878,973px168c01,15,1,f +10878,973px18c01,15,1,f +10880,2717,1,1,f +10880,2730,0,4,f +10880,2744,14,2,f +10880,2780,0,21,f +10880,2823,14,2,f +10880,2825,14,2,f +10880,2825,0,6,f +10880,2853,7,4,f +10880,2905,14,2,f +10880,3021,7,4,f +10880,3023,0,5,f +10880,3023,14,6,f +10880,3069b,7,4,f +10880,32009,0,4,f +10880,32009,14,2,f +10880,32013,0,2,f +10880,32017,7,8,f +10880,32017,0,6,f +10880,32018,0,2,f +10880,32039,0,2,f +10880,32062,0,7,f +10880,32063,1,2,f +10880,32064b,14,2,f +10880,32065,14,4,f +10880,32068,7,2,f +10880,32068,0,2,f +10880,32069,0,2,f +10880,32073,0,1,f +10880,32123b,7,10,f +10880,3647,7,2,f +10880,3666,14,3,f +10880,3673,7,9,f +10880,3700,0,5,f +10880,3702,14,2,f +10880,3703,0,2,f +10880,3706,0,3,f +10880,3707,0,4,f +10880,3708,0,2,f +10880,3710,7,1,f +10880,3710,0,2,f +10880,3713,7,10,f +10880,3749,7,14,f +10880,3832,7,1,f +10880,3941,46,1,f +10880,4032a,0,1,f +10880,4150,0,1,f +10880,4162,0,4,f +10880,4519,0,1,f +10880,6141,7,7,f +10880,6536,7,2,f +10880,6538b,7,1,f +10880,6558,0,4,f +10880,6579,0,4,f +10880,6580,14,4,f +10880,6587,8,4,f +10880,6589,7,2,f +10880,6629,14,2,f +10880,6630,7,1,f +10880,6632,0,4,f +10880,75535,14,3,f +10880,75535,0,2,f +10880,78c14,0,2,f +10880,tech012,9999,1,f +10883,6536,7,50,f +10885,2780,0,4,t +10885,2780,0,4,f +10885,32002,72,4,f +10885,32002,72,2,t +10885,32034,0,2,f +10885,32039,0,2,f +10885,32056,0,4,f +10885,32062,0,24,f +10885,32123b,71,1,t +10885,32123b,71,4,f +10885,32138,0,3,f +10885,32174,0,7,f +10885,32175,0,2,f +10885,32184,71,3,f +10885,32524,72,1,f +10885,32524,0,2,f +10885,3705,0,4,f +10885,3706,0,1,f +10885,41239,0,1,f +10885,41669,297,14,f +10885,41677,71,2,f +10885,42003,0,3,f +10885,4274,71,1,t +10885,4274,71,2,f +10885,43093,1,6,f +10885,44294,71,2,f +10885,44809,0,2,f +10885,44847,297,3,f +10885,4519,71,4,f +10885,45749,272,2,f +10885,47298,272,2,f +10885,47299,297,2,f +10885,47312,72,1,f +10885,47313,57,1,f +10885,47326pat02,272,4,f +10885,47330,272,2,f +10885,48253,297,2,f +10885,50858,272,1,f +10885,50898,0,4,f +10885,50919,297,1,f +10885,50923,72,2,f +10885,53562pat0001,0,2,f +10885,53564,272,1,f +10885,53566,297,4,f +10885,53568,297,2,f +10885,53574,272,2,f +10885,53583,297,1,f +10885,53585,0,2,f +10885,53586,135,2,f +10885,54272,135,2,f +10885,55013,0,2,f +10885,6536,0,6,f +10885,6538b,71,1,f +10885,6558,0,11,f +10885,6575,0,6,f +10885,6587,72,7,f +10885,6632,0,4,f +10885,6632,72,2,f +10885,78c02,297,2,f +10885,78c11,297,2,f +10887,2343,1,1,f +10887,2343,47,1,f +10887,2412b,0,9,f +10887,2431,14,1,f +10887,2432,0,3,f +10887,2436,7,1,f +10887,2441,0,1,f +10887,2449,14,4,f +10887,2453a,14,4,f +10887,2454a,14,6,f +10887,2493b,7,6,f +10887,2494,40,6,f +10887,2495,4,1,f +10887,2496,0,3,f +10887,2508,7,1,f +10887,2577,14,6,f +10887,2617,8,1,f +10887,2642,8,2,f +10887,3001,4,1,f +10887,3002,8,2,f +10887,3002,0,3,f +10887,30027b,7,8,f +10887,30028,0,8,f +10887,3003,8,4,f +10887,3003,4,2,f +10887,3004,8,2,f +10887,3004,14,5,f +10887,3004,1,1,f +10887,3004,15,1,f +10887,3005,14,8,f +10887,3005,8,2,f +10887,3007,8,1,f +10887,3009,14,7,f +10887,3009,8,2,f +10887,3010,7,4,f +10887,3020,8,3,f +10887,3021,0,1,f +10887,3022,8,9,f +10887,3022,4,3,f +10887,3022,0,3,f +10887,3023,7,2,f +10887,3023,46,2,f +10887,3023,14,4,f +10887,3024,46,4,f +10887,30256,7,1,f +10887,3027,7,4,f +10887,3028,7,1,f +10887,3032,2,1,f +10887,30323,2,1,f +10887,3034,7,2,f +10887,3039pb024,15,1,f +10887,30552,7,2,f +10887,30553,8,2,f +10887,30562,40,4,f +10887,3068b,1,1,f +10887,3068bp18,14,2,f +10887,3068bpr0095,8,1,f +10887,3069b,0,1,f +10887,3069b,14,2,f +10887,3069bp08,15,2,f +10887,3069bpb029,15,1,f +10887,3069bpr0030,8,2,f +10887,3069bpr0099,15,1,f +10887,3070b,0,1,t +10887,3070b,0,2,f +10887,3070bp01,14,1,f +10887,3070bp01,14,1,t +10887,32209,0,1,f +10887,3297p15,7,1,f +10887,3460,0,2,f +10887,3482,7,1,f +10887,3483,0,1,f +10887,3622,14,10,f +10887,3623,2,2,f +10887,3624,320,1,f +10887,3626bpb0172,14,1,f +10887,3626bpb0174,14,1,f +10887,3626bpb0195,14,1,f +10887,3626bpr0126,14,1,f +10887,3626bpr0314,14,1,f +10887,3665,0,2,f +10887,3679,7,2,f +10887,3680,0,2,f +10887,3700,7,2,f +10887,3710,0,1,f +10887,3710,14,2,f +10887,3713,7,1,f +10887,3713,7,1,t +10887,3730,7,1,f +10887,3794a,7,4,f +10887,3829c01,7,1,f +10887,3833,4,1,f +10887,3898,15,1,f +10887,3899,47,2,f +10887,3900,15,2,f +10887,3901,0,1,f +10887,3937,7,2,f +10887,3940b,0,2,f +10887,3963,0,1,f +10887,4070,0,2,f +10887,4079,4,4,f +10887,4081b,7,2,f +10887,4083,7,2,f +10887,40902,8,2,f +10887,4150p02,19,1,f +10887,41749,40,1,f +10887,41750,40,1,f +10887,41862,0,1,f +10887,42022,14,2,f +10887,42023,14,2,f +10887,4215b,40,6,f +10887,42511,1,1,f +10887,4286,0,2,f +10887,43337,40,4,f +10887,4349,4,1,f +10887,4349,1,1,f +10887,44126,0,8,f +10887,44294,7,4,f +10887,4449,0,1,f +10887,4449,15,1,f +10887,4449,6,1,f +10887,4449,7,1,f +10887,44567a,8,2,f +10887,4485,0,1,f +10887,4513stk01,9999,1,t +10887,4519,7,2,f +10887,45301,0,2,f +10887,4533,8,1,f +10887,4600,7,2,f +10887,46212,40,2,f +10887,4864b,40,5,f +10887,4865a,0,7,f +10887,4865a,40,2,f +10887,6091,0,2,f +10887,6134,0,2,f +10887,6141,46,1,t +10887,6141,36,1,t +10887,6141,46,2,f +10887,6141,36,4,f +10887,6141,34,4,f +10887,6141,34,1,t +10887,6177,7,1,f +10887,6254,15,2,f +10887,6538b,7,5,f +10887,6636,14,2,f +10887,92410,4,1,f +10887,970c00,272,1,f +10887,970c00,0,2,f +10887,970c00,1,1,f +10887,970c00,7,1,f +10887,973pb0008c01,272,1,f +10887,973pr1166c01,272,1,f +10887,973pr1170c01,4,1,f +10887,973pr1183c01,25,1,f +10887,973pr1196c01,15,1,f +10889,3001,1,12,f +10889,3002,1,6,f +10889,3003,1,10,f +10889,3004,1,6,f +10889,3005,1,2,f +10889,3006,1,1,f +10889,3007,1,1,f +10889,3008,1,2,f +10889,3009,1,2,f +10889,3010,1,2,f +10889,3622,1,2,f +10890,11267,14,1,f +10890,11476,71,1,f +10890,14210,15,1,f +10890,14769pr0004,71,1,f +10890,14769pr1019,25,2,f +10890,15068,72,1,f +10890,15332,0,1,f +10890,15397,15,1,f +10890,15625pr0005,72,1,f +10890,15626pr0004,4,1,f +10890,16968,71,1,f +10890,18922,72,1,f +10890,18984,85,1,f +10890,19000,4,1,f +10890,19220,0,1,f +10890,2412b,15,1,f +10890,2412b,1,1,f +10890,2421,0,1,f +10890,2431,71,1,f +10890,2432,1,1,f +10890,2432,15,2,f +10890,2446,15,1,f +10890,2447,47,1,f +10890,2456,1,1,f +10890,2479,0,1,f +10890,2486,14,2,f +10890,2540,71,2,f +10890,3001,0,1,f +10890,3001,19,4,f +10890,3001,28,1,f +10890,3002,1,4,f +10890,3003,2,1,f +10890,3003,15,3,f +10890,3003,1,1,f +10890,3004,0,1,f +10890,3004,1,1,f +10890,30165,15,1,f +10890,3020,0,1,f +10890,3023,46,1,f +10890,30237a,4,1,f +10890,30238,4,1,f +10890,30248,72,1,f +10890,3031,0,1,f +10890,3035,71,1,f +10890,30414,1,2,f +10890,30602pr0006,15,1,f +10890,3062b,33,2,f +10890,3068bpr0201,15,3,f +10890,3069b,36,1,f +10890,3069b,33,1,f +10890,3069bpr0099,15,1,f +10890,3069bpr0101,71,1,f +10890,3069bpr0143,14,1,f +10890,3626b,25,1,f +10890,3626cpr0499,14,1,f +10890,3626cpr0966,4,1,f +10890,3626cpr1668,10,1,f +10890,3666,1,4,f +10890,3829c01,71,1,f +10890,41854,15,2,f +10890,4345b,15,1,f +10890,4346,47,1,f +10890,44676,15,1,f +10890,44728,71,1,f +10890,4488,71,1,f +10890,4595,0,1,f +10890,47456,85,2,f +10890,48336,1,2,f +10890,50950,1,3,f +10890,52501,27,2,f +10890,59900,182,2,f +10890,6014b,15,4,f +10890,6020,0,1,f +10890,60470a,15,2,f +10890,60596,0,1,f +10890,6126b,182,1,f +10890,61409,4,2,f +10890,6157,0,2,f +10890,6179pr0013,1,1,f +10890,6215,1,2,f +10890,63868,71,1,f +10890,87079,71,1,f +10890,87079pr0072,1,2,f +10890,87580,1,1,f +10890,87697,0,4,f +10890,87752,41,1,f +10890,90981,15,2,f +10890,93273,72,1,f +10890,93273,4,2,f +10890,970c00pr0406,272,1,f +10890,970c00pr0852,10,1,f +10890,970d04,1,1,f +10890,973pr2047c01,1,1,f +10890,973pr2190c01,73,1,f +10890,973pr3011c01,85,1,f +10890,98302,0,2,f +10890,98549,71,1,f +10891,11257pr0002,379,1,f +10891,3626cpr1543,379,1,f +10891,88001,71,1,f +10891,88646,0,1,f +10891,970c00pr0754,379,1,f +10891,973pr2836c01,326,1,f +10893,3004,2,2,f +10893,3020,14,1,f +10893,3021,14,1,f +10893,3022,2,1,f +10893,3298,2,2,f +10893,3660,2,1,f +10893,4070,4,1,t +10893,4070,4,2,f +10894,2431,378,1,f +10894,298c02,378,1,t +10894,298c02,378,2,f +10894,3021,19,1,f +10894,3023,19,2,f +10894,3024,71,1,f +10894,3024,378,1,f +10894,3040b,70,2,f +10894,3666,71,1,f +10894,3794a,378,3,f +10894,3795,72,1,f +10894,4070,72,2,f +10894,4081b,71,1,f +10894,4287,378,1,f +10894,4589,19,2,f +10894,4599a,19,2,f +10894,48933pb01,70,1,f +10894,6005,0,1,f +10896,2420,0,2,f +10896,2540,7,1,f +10896,30132,8,1,f +10896,30132,8,1,t +10896,30165,8,1,f +10896,30172,15,1,f +10896,3039,7,1,f +10896,3626bpa7,14,1,f +10896,3641,0,4,f +10896,3795,0,1,f +10896,4600,7,2,f +10896,4624,7,4,f +10896,4871,7,1,f +10896,6141,7,1,t +10896,6141,7,2,f +10896,970c00,7,1,f +10896,973pa7c01,19,1,f +10897,2352,1,1,f +10897,2412b,4,1,f +10897,2439,8,2,f +10897,3010,1,2,f +10897,30278c01,0,1,f +10897,3037pr0005,1,1,f +10897,3062b,0,2,f +10897,3062b,46,1,f +10897,3626bp04,14,1,f +10897,3823,41,1,f +10897,3829c01,15,1,f +10897,4083,15,1,f +10897,4132,1,1,f +10897,4132pb01,1,1,f +10897,4485,2,1,f +10897,4600,7,1,f +10897,4740,8,2,f +10897,6014a,14,6,f +10897,6015,0,6,f +10897,970c00,2,1,f +10897,973p73c01,2,1,f +10898,3002,0,1,f +10898,3003pe2,4,1,f +10898,3004,0,2,f +10898,3021,0,1,f +10898,3022,0,1,f +10898,3023,0,1,f +10898,3039,0,2,f +10898,3839b,15,1,f +10899,3626bpr0740,14,1,f +10899,88646,0,1,f +10899,90391pr01,70,1,f +10899,93227pr0001,15,1,f +10899,970c00pr0189,19,1,f +10899,973pr1711c01,19,1,f +10901,10201,71,1,f +10901,10201,14,4,f +10901,10928,72,1,f +10901,11213,71,1,f +10901,11253,0,9,f +10901,11253,0,1,t +10901,11256,70,1,f +10901,11303,1,1,f +10901,11477,288,4,f +10901,11477,2,2,f +10901,11610,19,1,f +10901,15068,2,10,f +10901,15456,0,1,f +10901,15462,28,1,f +10901,15573,19,3,f +10901,15573,73,2,f +10901,15573,15,3,f +10901,15712,71,2,f +10901,15712,297,2,f +10901,18651,0,3,f +10901,18674,15,1,f +10901,19220,0,1,f +10901,20482,297,1,f +10901,20482,297,1,t +10901,2343,297,2,f +10901,2357,71,2,f +10901,2412b,0,8,f +10901,2420,2,4,f +10901,2420,4,2,f +10901,2420,0,4,f +10901,2423,15,8,f +10901,24299,0,1,f +10901,24307,0,1,f +10901,2431,0,7,f +10901,2431pr0028,72,1,f +10901,2460,15,2,f +10901,2654,19,2,f +10901,2654,47,2,f +10901,2654,0,1,f +10901,2730,0,2,f +10901,2871b,0,2,f +10901,2878,0,4,f +10901,298c02,71,2,f +10901,298c02,71,1,t +10901,30000,1,1,f +10901,3002,19,1,f +10901,3003,70,3,f +10901,3004,0,6,f +10901,3005,47,2,f +10901,3005,4,4,f +10901,3009,320,2,f +10901,3010,0,5,f +10901,30133,4,1,f +10901,30151b,47,1,f +10901,30153,46,1,f +10901,3020,4,3,f +10901,3020,72,2,f +10901,3021,15,2,f +10901,3021,2,4,f +10901,3022,1,1,f +10901,3022,0,1,f +10901,3022,19,2,f +10901,3023,4,5,f +10901,3023,73,1,f +10901,3023,47,3,f +10901,3023,0,9,f +10901,3023,14,1,f +10901,3024,297,2,f +10901,3024,47,2,t +10901,3024,4,1,f +10901,3024,297,1,t +10901,3024,47,3,f +10901,3024,4,1,t +10901,30340,2,3,f +10901,3035,72,2,f +10901,3035,28,1,f +10901,3036,4,2,f +10901,30361,0,2,f +10901,30367c,0,3,f +10901,30374,70,1,f +10901,3040b,15,2,f +10901,30565,15,1,f +10901,3062b,47,2,f +10901,3062b,272,8,f +10901,3065,47,4,f +10901,3068b,2,2,f +10901,3069b,70,3,f +10901,3069b,1,1,f +10901,3070b,0,1,f +10901,3070b,0,1,t +10901,3070bpr0166,71,1,t +10901,3070bpr0166,71,1,f +10901,3176,71,1,f +10901,32001,4,2,f +10901,32002,19,2,f +10901,32002,19,1,t +10901,32039,14,2,f +10901,32062,4,1,f +10901,32064a,14,1,f +10901,32523,0,1,f +10901,3298,15,1,f +10901,33291,191,4,f +10901,33291,191,1,t +10901,33291,4,2,t +10901,33291,31,1,f +10901,33291,31,1,t +10901,33291,4,4,f +10901,3460,72,2,f +10901,3623,4,1,f +10901,3623,1,2,f +10901,3624,320,1,f +10901,3626bpr0677,14,1,f +10901,3626cpr1146,14,1,f +10901,3626cpr1559,14,1,f +10901,3626cpr1635,14,1,f +10901,3626cpr1675,14,1,f +10901,3633,297,4,f +10901,3659,15,2,f +10901,3660,15,3,f +10901,3665,0,2,f +10901,3666,70,1,f +10901,3666,71,2,f +10901,3666,4,6,f +10901,3666,0,7,f +10901,3666,15,1,f +10901,3673,71,1,f +10901,3673,71,1,t +10901,3700,1,1,f +10901,3701,0,2,f +10901,3702,0,2,f +10901,3705,4,3,f +10901,3706,0,1,f +10901,3710,28,1,f +10901,3710,71,2,f +10901,3710,4,6,f +10901,3710,15,3,f +10901,3710,0,13,f +10901,3713,71,1,f +10901,3713,71,1,t +10901,3738,0,2,f +10901,3749,19,6,f +10901,3795,15,2,f +10901,3795,0,2,f +10901,3832,15,1,f +10901,3835,0,2,f +10901,3837,72,1,f +10901,3899,14,1,f +10901,3937,72,2,f +10901,3941,15,2,f +10901,3941,85,1,f +10901,3958,4,2,f +10901,3958,0,3,f +10901,3960,0,1,f +10901,4025,4,1,f +10901,4032a,4,2,f +10901,4032a,70,8,f +10901,4032a,15,4,f +10901,4032a,0,4,f +10901,4070,1,1,f +10901,4079,70,2,f +10901,40902,0,1,f +10901,4162,4,2,f +10901,41677,0,2,f +10901,41678,4,1,f +10901,4175,0,6,f +10901,41769,2,4,f +10901,41879a,1,1,f +10901,41879a,28,1,f +10901,4274,71,1,t +10901,4274,71,1,f +10901,43093,1,4,f +10901,44676,15,1,f +10901,44728,72,6,f +10901,4595,71,2,f +10901,4599b,0,1,t +10901,4599b,0,2,f +10901,4697b,71,1,t +10901,4697b,71,1,f +10901,4716,71,1,f +10901,4733,70,2,f +10901,4733,0,1,f +10901,4740,2,1,f +10901,4740,0,2,f +10901,4742,0,1,f +10901,48336,297,14,f +10901,48729b,0,3,f +10901,48729b,71,1,t +10901,48729b,0,1,t +10901,48729b,71,1,f +10901,50950,0,4,f +10901,53400,72,16,f +10901,54200,2,4,f +10901,54200,46,1,f +10901,54200,2,1,t +10901,54200,46,1,t +10901,57051,383,4,f +10901,57878,0,8,f +10901,57999,4,4,f +10901,57999,0,4,f +10901,58176,36,4,f +10901,58176,182,4,f +10901,58176,35,4,f +10901,58176,33,4,f +10901,59900,46,1,f +10901,59900,2,1,f +10901,59900,0,2,f +10901,59900,297,3,f +10901,60475b,0,8,f +10901,60476,15,4,f +10901,60478,0,2,f +10901,60478,15,1,f +10901,60479,71,2,f +10901,60583b,0,2,f +10901,60583b,4,4,f +10901,60592,4,4,f +10901,60593,28,6,f +10901,60601,47,4,f +10901,60602,47,6,f +10901,60800a,2,4,f +10901,6081,2,2,f +10901,60897,1,1,f +10901,60897,0,2,f +10901,60897,4,8,f +10901,6091,15,2,f +10901,6091,0,2,f +10901,61252,297,1,f +10901,6134,15,2,f +10901,61409,14,3,f +10901,6141,297,35,f +10901,6141,33,5,f +10901,6141,47,1,t +10901,6141,297,3,t +10901,6141,36,1,t +10901,6141,34,2,f +10901,6141,33,2,t +10901,6141,46,1,t +10901,6141,47,4,f +10901,6141,36,2,f +10901,6141,46,5,f +10901,61485,15,1,f +10901,6180,0,1,f +10901,61976,19,1,f +10901,62462,14,1,f +10901,63864,15,2,f +10901,63868,0,2,f +10901,63965,297,8,f +10901,63965,0,1,f +10901,64644,297,2,f +10901,64799,71,2,f +10901,6536,71,1,f +10901,6587,28,1,f +10901,6632,1,1,f +10901,6632,4,1,f +10901,6632,15,2,f +10901,6636,70,3,f +10901,85557,4,2,f +10901,85558,4,1,t +10901,85975,297,1,f +10901,85984,0,3,f +10901,87079,272,2,f +10901,87079,2,1,f +10901,87079,4,1,f +10901,87079,71,1,f +10901,87081,0,1,f +10901,87087,0,8,f +10901,87544,2,6,f +10901,87580,15,6,f +10901,87580,0,1,f +10901,87580,14,2,f +10901,87990,308,1,f +10901,87994,297,1,t +10901,87994,297,4,f +10901,88072,15,1,f +10901,88930,272,6,f +10901,90201,0,1,f +10901,91994,0,5,f +10901,92280,4,1,f +10901,92280,0,2,f +10901,92593,71,2,f +10901,92593,4,2,f +10901,92593,272,6,f +10901,92746,84,1,f +10901,92907,71,1,f +10901,92950,70,2,f +10901,96874,25,1,t +10901,970c00,72,1,f +10901,970c00,320,1,f +10901,970c00,1,1,f +10901,973pr1244c01,73,1,f +10901,973pr1772c01,10,1,f +10901,973pr2084c01,71,1,f +10901,973pr2488c01,0,1,f +10901,973pr3010c01,4,1,f +10901,98138,0,1,t +10901,98138,0,3,f +10901,98375,179,1,t +10901,98375,179,1,f +10901,99207,71,4,f +10901,99781,0,6,f +10902,11214,72,1,f +10902,18651,0,2,f +10902,19049,179,1,f +10902,24165,27,1,f +10902,24187,41,1,f +10902,24189,148,1,f +10902,24190,0,1,f +10902,24191,179,1,f +10902,24193pr0007,28,1,f +10902,2780,0,5,f +10902,30293,72,1,f +10902,30294,72,1,f +10902,32002,19,1,f +10902,32062,4,7,f +10902,32072,0,1,f +10902,32270,0,1,f +10902,3706,0,1,f +10902,41669,42,2,f +10902,41677,0,4,f +10902,42003,72,2,f +10902,4274,71,2,f +10902,43093,1,1,f +10902,4519,71,1,f +10902,50923,72,2,f +10902,53551,179,5,f +10902,59443,70,2,f +10902,61184,71,1,f +10902,6141,42,2,f +10902,62462,70,2,f +10902,64272,179,2,f +10902,64276,484,2,f +10902,6536,72,1,f +10902,6558,1,1,f +10902,6587,28,2,f +10902,74261,0,4,f +10902,87083,72,1,f +10902,90609,42,4,f +10902,90617,72,2,f +10902,90640,28,2,f +10902,90640,179,2,f +10902,90641,42,2,f +10902,90661,179,2,f +10902,93571,0,2,f +10902,93575,179,2,f +10903,10884,27,4,f +10903,11097,179,1,f +10903,11110pr0002,14,1,f +10903,11126,14,1,f +10903,11127,41,6,f +10903,11129pr0001,70,1,f +10903,11767,72,1,f +10903,2780,0,1,t +10903,2780,0,2,f +10903,30136,70,4,f +10903,30176,2,4,f +10903,3023,70,6,f +10903,30274,71,4,f +10903,30293,72,4,f +10903,3062b,2,4,f +10903,3626cpr1119,19,1,f +10903,42610,71,2,f +10903,4497,179,1,f +10903,4740,72,2,f +10903,47720,71,1,f +10903,50950,288,4,f +10903,50951,0,2,f +10903,53451,297,1,t +10903,53451,297,1,f +10903,6021390,9999,1,f +10903,6021391,9999,1,f +10903,6021392,9999,1,f +10903,6021393,9999,1,f +10903,6021394,9999,1,f +10903,6108,70,2,f +10903,6117,297,1,f +10903,6126b,182,6,f +10903,6141,72,4,f +10903,6141,72,1,t +10903,87747,15,1,f +10903,92690,297,1,f +10903,970c02pr0430,19,1,f +10903,973pr2226c01,19,1,f +10903,98138,41,2,f +10903,98138,41,1,t +10904,2352,13,1,f +10904,2456,15,2,f +10904,2456,7,2,f +10904,2577,15,4,f +10904,3001,15,16,f +10904,3001,14,6,f +10904,3001,7,12,f +10904,3002,7,2,f +10904,3002,14,2,f +10904,3002,15,4,f +10904,3003,7,12,f +10904,3003,15,16,f +10904,3003,14,8,f +10904,3003pe2,15,2,f +10904,3007,14,2,f +10904,3185,13,6,f +10904,3471,2,1,f +10904,3483,0,4,f +10904,3867,17,1,f +10904,4130,13,2,f +10904,4131,351,2,f +10904,4132,13,2,f +10904,4133,351,2,f +10904,4180c03,0,2,f +10904,4202,14,1,f +10904,4727,2,6,f +10904,4728,351,4,f +10904,4728,15,2,f +10904,4744,13,1,f +10904,4744p03,0,1,f +10904,4744p04,0,1,f +10904,4744pb03,17,1,f +10904,4744pb04,17,1,f +10904,4744px16,13,1,f +10904,4744px18,13,1,f +10904,4744px19,17,1,f +10904,6007,8,1,f +10905,30374,33,2,f +10905,64727,2,1,f +10905,90609,0,4,f +10905,90617,0,4,f +10905,90626,0,1,f +10905,90639pr0005,15,1,f +10905,90641,25,5,f +10905,90652,15,1,f +10905,90661,25,2,f +10905,92199,2,1,f +10905,92201,25,1,f +10905,92202,25,1,f +10905,92204,148,1,f +10905,92205,148,2,f +10905,92208,25,1,f +10905,93277,2,1,f +10905,93571,0,1,f +10905,93575,25,1,f +10906,43718,89,1,f +10909,2335,1,5,f +10909,2335,4,5,f +10909,2412b,0,6,f +10909,2458,15,4,f +10909,2460,15,4,f +10909,2465,15,2,f +10909,2540,0,10,f +10909,3003,15,8,f +10909,3004,15,8,f +10909,30043,4,4,f +10909,3006,7,4,f +10909,3010,15,4,f +10909,3020,4,8,f +10909,3021,0,16,f +10909,3022,4,46,f +10909,3023,7,12,f +10909,3037,15,4,f +10909,3039,15,8,f +10909,30488,7,2,f +10909,30488c01,0,5,f +10909,30488c01,15,5,f +10909,30489,2,10,f +10909,30492,2,2,f +10909,30493,0,2,f +10909,3068b,2,46,f +10909,32064b,7,16,f +10909,3403c01,0,2,f +10909,3626bp03,14,2,f +10909,3626bp05,14,2,f +10909,3626bpa3,14,2,f +10909,3626bpb0103,14,2,f +10909,3626bpx134,14,2,f +10909,3626bpx33,14,2,f +10909,3700,15,8,f +10909,3710,15,4,f +10909,3900,7,8,f +10909,3901,19,2,f +10909,3901,0,4,f +10909,3901,6,4,f +10909,3957a,15,4,f +10909,41732,4,2,f +10909,41733,4,2,f +10909,4176,15,14,f +10909,41819c01,2,2,f +10909,4204,2,2,f +10909,4476b,15,4,f +10909,4477,15,10,f +10909,4485,15,1,f +10909,4485,0,1,f +10909,4495b,4,4,f +10909,4871,7,12,f +10909,6636,15,2,f +10909,71509,0,4,f +10909,72824p01,15,2,f +10909,72824pr02,15,1,f +10909,78c11,15,4,f +10909,970c00,7,1,f +10909,970c00,1,5,f +10909,970c00,8,1,f +10909,970c00,15,5,f +10909,973pb0165c01,0,1,f +10909,973pb0166c01,0,1,f +10909,973pb0167c01,4,1,f +10909,973pb0168c01,15,1,f +10909,973pb0169c01,4,1,f +10909,973pb0170c01,15,1,f +10909,973pb0171c01,4,1,f +10909,973pb0172c01,15,1,f +10909,973pb0173c01,4,1,f +10909,973pb0174c01,15,1,f +10909,973pb0175c01,4,1,f +10909,973pb0176c01,15,1,f +10909,x386,15,2,f +10911,15339,179,1,f +10911,15341,27,2,f +10911,15343,27,2,f +10911,15344,27,1,f +10911,15357pr0002,0,1,f +10911,15359,14,1,f +10911,15362,0,4,f +10911,15367,0,2,f +10911,2780,0,4,f +10911,3069b,14,1,f +10911,32013,0,2,f +10911,32062,4,6,f +10911,3626c,4,1,f +10911,41677,0,2,f +10911,59443,14,1,f +10911,59900,182,3,f +10911,60115,0,1,f +10911,60169,182,1,f +10911,60485,71,1,f +10911,60897,0,2,f +10911,64567,0,2,f +10911,6536,0,2,f +10911,87747,0,9,f +10911,87846,0,4,f +10911,90609,322,6,f +10911,90612,0,1,f +10911,90617,72,6,f +10911,90626,0,1,f +10911,90630,0,1,f +10911,90640,0,1,f +10911,90640pr0023,0,1,f +10911,90641,14,4,f +10911,90641,0,1,f +10911,90652,0,1,f +10911,92013,0,1,f +10911,93571,0,5,f +10911,93571,322,2,f +10911,93575,0,1,f +10911,95347,0,1,f +10911,98138pr0019,15,1,f +10911,98577,72,1,f +10913,3626bpr0314,14,1,f +10913,4006,0,1,f +10913,4485,4,1,f +10913,970c00,72,1,f +10913,973pr1156c01,1,1,f +10914,18142,308,1,f +10914,18202,70,1,f +10914,3626cpr1477,14,1,f +10914,64847,15,2,f +10914,88646,0,1,f +10914,91884pr0006,148,1,f +10914,970c00pr0712,84,1,f +10914,973pr2746c01,320,1,f +10914,98370,72,1,f +10915,2335pr02,15,1,f +10915,2343,7,2,f +10915,2412b,0,3,f +10915,2419,15,1,f +10915,2419,14,1,f +10915,2431,15,2,f +10915,2440,14,1,f +10915,2446,15,1,f +10915,2446,0,1,f +10915,2447,41,2,f +10915,2452,0,1,f +10915,3020,0,1,f +10915,3020,14,1,f +10915,3020,4,2,f +10915,3021,15,2,f +10915,3021,14,1,f +10915,3022,14,1,f +10915,3023,0,1,f +10915,3023,4,1,f +10915,3023,7,1,f +10915,3040b,15,2,f +10915,3040b,0,2,f +10915,3298p56,4,1,f +10915,3298p57,0,1,f +10915,3460,0,2,f +10915,3460,4,2,f +10915,3626apr0001,14,3,f +10915,3641,0,4,f +10915,3660,15,1,f +10915,3665,15,2,f +10915,3665,14,2,f +10915,3710,15,1,f +10915,3795,4,1,f +10915,3829c01,14,1,f +10915,3829c01,15,1,f +10915,3937,0,2,f +10915,3938,0,3,f +10915,3957a,15,1,f +10915,4081b,7,4,f +10915,4084,0,4,f +10915,4276b,14,1,f +10915,4287,15,2,f +10915,4287,14,2,f +10915,4485,1,1,f +10915,4488,0,8,f +10915,4590,15,1,f +10915,4624,15,4,f +10915,4624,14,4,f +10915,4732,15,1,f +10915,4732,0,1,f +10915,4865a,15,2,f +10915,6141,7,8,f +10915,970c00,1,1,f +10915,970c00,0,1,f +10915,970c00,15,1,f +10915,973c01,1,1,f +10915,973p0ac02,0,1,f +10915,973p0bc01,15,1,f +10916,3003,14,2,f +10916,3009,14,2,f +10916,3010,14,2,f +10916,3836,6,1,f +10916,3837,8,1,f +10916,3888ac01,0,1,f +10916,4082,14,1,f +10916,4086,4,1,f +10916,4088px4,14,1,f +10916,691,14,1,f +10916,692,14,1,f +10916,fab4e,9999,1,f +10916,fabai1,14,1,f +10916,fabef5,2,1,f +10916,fabef6,2,1,f +10917,2357,71,2,f +10917,2431,14,1,f +10917,2431,26,2,f +10917,2431pr0036,70,1,f +10917,2431pr0040,70,1,f +10917,2436,0,2,f +10917,2540,70,2,f +10917,2780,0,1,t +10917,2780,0,2,f +10917,3001pr0002,70,2,f +10917,30027b,70,2,f +10917,30027b,70,1,t +10917,30028,0,2,f +10917,30035,0,1,f +10917,3008,71,1,f +10917,3020,15,2,f +10917,3021,72,2,f +10917,3022,71,3,f +10917,3023,72,1,f +10917,3023,1,2,f +10917,30237a,14,2,f +10917,3030,72,1,f +10917,3031,26,1,f +10917,3034,72,2,f +10917,30377,0,1,t +10917,30377,0,2,f +10917,30395,72,1,f +10917,30414,26,2,f +10917,30414,72,1,f +10917,3069b,70,2,f +10917,3139,0,1,t +10917,3139,0,2,f +10917,32530,0,1,f +10917,3475b,72,2,f +10917,3623,70,1,f +10917,3666,70,2,f +10917,3710,72,1,f +10917,3849,0,1,f +10917,4083,0,1,f +10917,4085c,0,2,f +10917,4150,72,1,f +10917,4150,71,1,f +10917,4285b,71,1,f +10917,4286,14,1,f +10917,4589,4,2,f +10917,4589,71,1,f +10917,4600,71,1,f +10917,4624,70,1,t +10917,4624,70,2,f +10917,4740,4,1,f +10917,4865a,70,2,f +10917,4865a,33,1,f +10917,50951,0,4,f +10917,50951,0,1,t +10917,57515,72,1,f +10917,60212,73,1,f +10917,61184,71,2,f +10917,6140,0,1,f +10917,6141,47,1,t +10917,6141,182,1,f +10917,6141,182,1,t +10917,6141,36,5,f +10917,6141,47,1,f +10917,6141,36,1,t +10917,6157,0,3,f +10917,6179,15,1,f +10917,63868,14,2,f +10917,6541,70,2,f +10917,6636,14,1,f +10917,85940,0,1,f +10917,85973,0,2,f +10917,85984,71,2,f +10917,87079,71,2,f +10917,93587pr0005,26,1,f +10917,93590,70,1,f +10917,93591pr0007,26,1,f +10917,93593,71,4,f +10917,93597pr0001,26,1,f +10917,93598pr0006,70,1,f +10918,2412b,15,4,f +10918,2420,72,2,f +10918,2431,71,1,f +10918,2780,0,1,t +10918,2780,0,2,f +10918,3004,73,6,f +10918,3005,47,4,f +10918,3020,71,4,f +10918,3023,47,3,f +10918,3023,28,13,f +10918,3023,71,3,f +10918,3023,0,1,f +10918,3023,1,2,f +10918,3023,2,2,f +10918,3024,28,1,t +10918,3024,15,2,f +10918,3024,47,1,t +10918,3024,47,13,f +10918,3024,28,4,f +10918,3024,15,1,t +10918,3036,0,1,f +10918,3065,47,6,f +10918,3068b,272,1,f +10918,3069b,72,1,f +10918,3069b,4,2,f +10918,3070b,71,10,f +10918,3070b,71,1,t +10918,3070b,72,1,t +10918,3070b,72,1,f +10918,3070b,15,1,t +10918,3070b,15,3,f +10918,32000,72,2,f +10918,33291,10,2,f +10918,33291,10,1,t +10918,3622,72,2,f +10918,3666,71,1,f +10918,3666,272,1,f +10918,3710,15,3,f +10918,3710,272,2,f +10918,3710,72,3,f +10918,3710,71,3,f +10918,3794b,0,1,f +10918,3794b,73,2,f +10918,4070,19,4,f +10918,4081b,0,2,f +10918,4081b,71,2,f +10918,4599b,0,1,t +10918,4599b,0,2,f +10918,54200,47,1,t +10918,54200,47,2,f +10918,59900,2,1,f +10918,6091,15,1,f +10918,61252,0,1,f +10918,6141,0,9,f +10918,6141,85,2,f +10918,6141,46,4,f +10918,6141,46,1,t +10918,6141,0,1,t +10918,6141,47,3,f +10918,6141,47,1,t +10918,6141,85,1,t +10918,6141,70,1,f +10918,6141,70,1,t +10918,64644,0,1,f +10918,87079,272,3,f +10918,87087,15,2,f +10918,98283,28,11,f +10919,10247,14,4,f +10919,11212,72,4,f +10919,11477,14,2,f +10919,15207,14,4,f +10919,15379,0,2,t +10919,15379,0,84,f +10919,15625,72,1,f +10919,16178pr01,4,1,f +10919,18899pat0001,4,1,f +10919,2357,320,1,f +10919,2412b,72,3,f +10919,2412b,0,6,f +10919,2431,0,1,f +10919,2431,14,2,f +10919,2432,14,5,f +10919,2460,0,2,f +10919,2540,71,2,f +10919,2654,0,2,f +10919,2780,0,2,t +10919,2780,0,6,f +10919,2815,0,2,f +10919,2877,14,2,f +10919,298c02,4,1,t +10919,298c02,4,2,f +10919,3001,14,3,f +10919,3001,1,4,f +10919,3004,320,8,f +10919,3004,15,1,f +10919,3008,14,1,f +10919,3009,14,1,f +10919,3009,0,2,f +10919,3010,320,1,f +10919,3010,72,2,f +10919,3020,14,2,f +10919,3020,71,1,f +10919,3021,14,2,f +10919,3021,71,1,f +10919,30228,72,1,f +10919,3023,72,8,f +10919,3023,320,1,f +10919,3023,4,2,f +10919,3023,71,1,f +10919,3023,0,2,f +10919,30236,72,4,f +10919,30259,71,1,f +10919,3032,14,1,f +10919,3034,14,2,f +10919,3035,0,2,f +10919,3036,72,1,f +10919,3039,14,1,f +10919,3040b,14,2,f +10919,3045,14,2,f +10919,3062b,0,1,f +10919,3068b,14,4,f +10919,3069b,72,1,f +10919,3070b,71,1,f +10919,3070b,71,1,t +10919,3070b,14,1,t +10919,3070b,14,4,f +10919,3070bpr0007,71,2,f +10919,3070bpr0007,71,1,t +10919,3176,14,4,f +10919,32000,14,2,f +10919,32013,71,4,f +10919,32018,72,2,f +10919,32064a,14,8,f +10919,32449,14,2,f +10919,32525,14,2,f +10919,3456,71,1,f +10919,3460,71,2,f +10919,3464,15,1,f +10919,3623,320,1,f +10919,3626cpr0893,14,1,f +10919,3626cpr0920,14,1,f +10919,3648b,72,6,f +10919,3666,71,1,f +10919,3666,320,1,f +10919,3666,72,2,f +10919,3710,1,3,f +10919,3710,71,1,f +10919,3710,14,2,f +10919,3713,4,2,f +10919,3713,4,1,t +10919,3749,19,4,f +10919,3795,0,3,f +10919,3795,15,1,f +10919,3823,40,1,f +10919,3832,72,2,f +10919,3957b,71,1,t +10919,3957b,71,1,f +10919,4070,72,4,f +10919,4079,4,1,f +10919,4175,0,2,f +10919,4185,72,2,f +10919,4274,1,1,t +10919,4274,1,4,f +10919,43857,71,1,f +10919,44728,71,4,f +10919,4519,71,6,f +10919,45677,14,2,f +10919,4599b,71,1,f +10919,4599b,71,1,t +10919,4740,71,1,f +10919,4865a,14,2,f +10919,4865b,40,2,f +10919,52501,14,2,f +10919,54200,14,1,t +10919,54200,14,2,f +10919,58176,182,2,f +10919,59895,0,1,t +10919,59895,0,1,f +10919,60169,72,1,f +10919,60477,14,2,f +10919,60478,14,2,f +10919,60479,14,2,f +10919,60481,14,2,f +10919,60596,71,1,f +10919,60623,2,1,f +10919,60897,71,2,f +10919,61252,0,5,f +10919,61409,14,2,f +10919,6141,46,1,t +10919,6141,71,1,f +10919,6141,0,4,f +10919,6141,0,2,t +10919,6141,71,1,t +10919,6141,46,1,f +10919,6178,71,1,f +10919,6215,14,1,f +10919,63965,70,1,f +10919,64644,0,1,f +10919,64727,71,2,f +10919,64728,4,2,f +10919,6541,14,2,f +10919,84954,40,1,f +10919,87079,14,4,f +10919,87083,72,2,f +10919,87087,71,2,f +10919,87580,71,1,f +10919,87617,14,2,f +10919,87618,71,2,f +10919,87620,14,4,f +10919,88072,71,2,f +10919,90195,71,1,f +10919,92593,72,2,f +10919,970c00,25,1,f +10919,970c00,379,1,f +10919,973pr2037c01,272,1,f +10919,973pr2913c01,25,1,f +10919,98138,47,3,f +10919,98138,179,1,t +10919,98138,47,1,t +10919,98138,179,1,f +10919,98283,71,5,f +10919,98288,4,1,f +10923,11477,70,2,f +10923,11609,484,1,f +10923,11609,484,1,t +10923,11610,19,2,f +10923,11618,31,1,t +10923,11618,31,1,f +10923,11816pr0002,78,1,f +10923,11816pr0017,78,1,f +10923,13965,70,2,f +10923,14769,30,2,f +10923,15209,15,2,f +10923,15470,70,1,t +10923,15470,70,1,f +10923,15573,15,1,f +10923,15573,26,1,f +10923,15573,14,1,f +10923,15875pr0006c01,322,1,f +10923,15875pr0007c01,1,1,f +10923,16577,15,2,f +10923,18844,226,1,f +10923,19195pr0001,484,1,f +10923,19641,15,1,f +10923,20374,26,1,f +10923,20375pr01,323,1,f +10923,2412b,15,3,f +10923,2420,15,2,f +10923,2423,27,1,f +10923,2423,2,1,f +10923,2431,41,9,f +10923,2431,323,3,f +10923,2432,70,1,f +10923,2453b,15,2,f +10923,2456,71,1,f +10923,2460,72,1,f +10923,2462,71,2,f +10923,2476a,71,1,f +10923,2780,0,2,f +10923,2780,0,1,t +10923,2817,71,1,f +10923,298c02,15,1,f +10923,298c02,15,1,t +10923,3001,71,1,f +10923,3002,71,1,f +10923,3003,71,1,f +10923,3004,71,5,f +10923,3004,70,3,f +10923,3004,26,3,f +10923,3005,15,2,f +10923,3005,71,3,f +10923,3008,15,1,f +10923,3009,71,1,f +10923,30153,45,5,f +10923,3020,322,5,f +10923,3022,322,1,f +10923,30222,42,1,f +10923,3023,29,3,f +10923,3023,19,1,f +10923,30237b,15,4,f +10923,3024,4,4,f +10923,3024,4,1,t +10923,3029,322,1,f +10923,3030,15,1,f +10923,3031,4,1,f +10923,3032,15,1,f +10923,3034,15,1,f +10923,30367c,15,2,f +10923,3037,15,2,f +10923,30374,41,7,f +10923,30385,1003,1,f +10923,3040b,15,2,f +10923,3040b,70,4,f +10923,3040b,30,7,f +10923,3045,15,4,f +10923,30504,15,1,f +10923,30565,322,2,f +10923,3068b,4,1,f +10923,3068b,15,1,f +10923,3069b,19,1,f +10923,3069b,15,6,f +10923,3069bpr0055,15,1,f +10923,33009,70,1,f +10923,33183,70,2,f +10923,33183,70,1,t +10923,33291,5,9,f +10923,33291,191,11,f +10923,33291,191,1,t +10923,33291,31,1,t +10923,33291,31,2,f +10923,33291,5,2,t +10923,33322,297,1,f +10923,33322,297,1,t +10923,3633,31,1,f +10923,3665,71,4,f +10923,3666,26,2,f +10923,3710,15,6,f +10923,3710,29,2,f +10923,3710,30,2,f +10923,3741,2,2,f +10923,3741,2,1,t +10923,3795,70,1,f +10923,3795,15,1,f +10923,40243,323,8,f +10923,40244,0,1,f +10923,4032a,71,3,f +10923,4217,15,1,f +10923,42409,52,1,f +10923,4286,15,4,f +10923,4460b,323,2,f +10923,4523,27,1,f +10923,4599b,15,1,f +10923,4599b,15,1,t +10923,46212,41,5,f +10923,4733,15,1,f +10923,47457,15,1,f +10923,47847,1003,4,f +10923,4865b,41,1,f +10923,54200,41,10,f +10923,54200,41,2,t +10923,59900,52,1,f +10923,6091,70,2,f +10923,6126a,41,1,f +10923,6141,27,1,t +10923,6141,0,1,t +10923,6141,2,2,f +10923,6141,2,1,t +10923,6141,0,1,f +10923,6141,15,5,f +10923,6141,15,2,t +10923,6141,27,3,f +10923,61975,70,2,f +10923,64644,297,2,f +10923,64647,182,3,f +10923,64647,182,2,t +10923,6541,2,2,f +10923,85080,15,4,f +10923,85984,70,1,f +10923,87079,26,1,f +10923,87421,15,2,f +10923,87580,26,2,f +10923,87580,27,1,f +10923,89522,25,1,t +10923,89522,25,1,f +10923,90509,85,2,f +10923,92438,15,1,f +10923,92456pr0065c01,78,1,f +10923,92456pr0066c01,78,1,f +10923,93095,15,1,f +10923,93555,179,2,f +10923,93555,179,1,t +10923,98138pr0018,84,2,f +10923,98138pr0018,84,1,t +10923,99774,72,4,f +10927,2335p30,15,1,f +10927,2339,0,5,f +10927,2343,14,1,f +10927,2345,7,1,f +10927,2345,0,2,f +10927,2345pb01,7,3,f +10927,2357,7,3,f +10927,2357,0,1,f +10927,2359p02,2,1,f +10927,2375,0,1,f +10927,2417,2,3,f +10927,2419,7,1,f +10927,2420,0,3,f +10927,2423,2,1,f +10927,2431,7,1,f +10927,2449,0,1,f +10927,2449,7,1,f +10927,2453a,4,4,f +10927,2453a,7,1,f +10927,2453a,0,2,f +10927,2454a,4,1,f +10927,2454a,0,2,f +10927,2456,7,1,f +10927,2462,7,4,f +10927,2488,2,2,f +10927,2518,2,10,f +10927,2528pb01,0,1,f +10927,2530,8,1,t +10927,2530,8,2,f +10927,2536,6,10,f +10927,2540,0,4,f +10927,2542,4,2,f +10927,2542,6,1,f +10927,2543,1,1,f +10927,2546p01,4,1,f +10927,2549,6,1,f +10927,2550c01,6,1,f +10927,2551,6,1,f +10927,2555,0,1,f +10927,2555,7,1,f +10927,2555,15,1,f +10927,2562,6,1,f +10927,2563,6,2,f +10927,2566,2,2,f +10927,2586p30,15,4,f +10927,3001,7,5,f +10927,3002,0,1,f +10927,3002,7,4,f +10927,3003,0,2,f +10927,3003,7,5,f +10927,3004,4,1,f +10927,3004,7,9,f +10927,3004,0,11,f +10927,3005,7,6,f +10927,3005,0,3,f +10927,3008,7,1,f +10927,3009,7,6,f +10927,3009,4,1,f +10927,3009,0,1,f +10927,3010,7,4,f +10927,3020,7,2,f +10927,3020,0,3,f +10927,3020,4,2,f +10927,3021,7,1,f +10927,3021,2,2,f +10927,3022,7,2,f +10927,3022,1,1,f +10927,3022,4,2,f +10927,3023,2,3,f +10927,3023,1,1,f +10927,3023,7,4,f +10927,3023,4,7,f +10927,3023,0,5,f +10927,3024,46,2,f +10927,3024,7,7,f +10927,3032,7,1,f +10927,3032,0,2,f +10927,3034,2,1,f +10927,3035,7,1,f +10927,3036,7,1,f +10927,3036,0,1,f +10927,3039,7,1,f +10927,3040b,7,4,f +10927,3040b,0,1,f +10927,3062b,4,4,f +10927,3062b,0,6,f +10927,3062b,2,2,f +10927,3068bp30,15,1,f +10927,3069b,1,1,f +10927,3069b,7,1,f +10927,3307,7,1,f +10927,3455,0,1,f +10927,3460,2,1,f +10927,3460,0,2,f +10927,3460,7,1,f +10927,3622,0,2,f +10927,3622,4,2,f +10927,3623,0,7,f +10927,3623,7,2,f +10927,3626bp35,14,1,f +10927,3626bp3j,14,3,f +10927,3626bp3k,14,1,f +10927,3626bp40,14,1,f +10927,3626bp46,14,1,f +10927,3659,7,1,f +10927,3660,7,4,f +10927,3665,4,2,f +10927,3666,0,5,f +10927,3666,4,2,f +10927,3673,7,2,f +10927,3679,7,3,f +10927,3680,0,3,f +10927,3701,0,4,f +10927,3710,0,5,f +10927,3710,7,2,f +10927,3713,7,1,t +10927,3713,7,1,f +10927,3794a,7,3,f +10927,3794a,0,1,f +10927,3795,4,1,f +10927,3795,2,2,f +10927,3795,0,1,f +10927,3830,7,1,f +10927,3831,7,1,f +10927,3839b,4,2,f +10927,3849,0,2,f +10927,3849,6,1,f +10927,3941,4,1,f +10927,3957a,0,1,f +10927,3958,0,1,f +10927,4032a,0,1,f +10927,4032a,2,5,f +10927,4032a,1,1,f +10927,4070,7,2,f +10927,4081b,4,1,f +10927,4085c,4,3,f +10927,4085c,7,2,f +10927,4085c,0,4,f +10927,4150p30,15,1,f +10927,4275b,0,6,f +10927,4276b,7,2,f +10927,4286,0,1,f +10927,4287,7,2,f +10927,4318,0,2,f +10927,4319,0,2,f +10927,4444,0,1,f +10927,4460a,0,1,f +10927,4490,0,1,f +10927,4490,7,1,f +10927,4495a,15,1,f +10927,4497,6,6,f +10927,4498,6,1,f +10927,4499,6,1,f +10927,4519,0,1,f +10927,4529,0,1,f +10927,4531,0,4,f +10927,4589,15,3,f +10927,4738a,6,1,f +10927,4739a,6,1,f +10927,57503,334,2,f +10927,57504,334,2,f +10927,57505,334,2,f +10927,57506,334,2,f +10927,6019,7,2,f +10927,6019,0,4,f +10927,6020,6,4,f +10927,6021,4,1,f +10927,6024px2,7,1,f +10927,6025,0,4,f +10927,6026,2,1,f +10927,6027,2,1,f +10927,6028,2,1,f +10927,6030,4,1,f +10927,6064,2,3,f +10927,6091,7,3,f +10927,6126a,57,4,f +10927,6141,14,1,t +10927,6141,14,1,f +10927,6148,2,7,f +10927,6278stk01,9999,1,t +10927,73983,0,1,f +10927,87695,15,8,f +10927,87696,15,4,f +10927,970c00,7,1,f +10927,970c03pb01,14,5,f +10927,970d01,0,1,f +10927,973p31c01,14,1,f +10927,973p3ac01,14,1,f +10927,973pb0062c01,14,3,f +10927,973pb0063c01,14,1,f +10927,973pb0064c01,14,1,f +10927,sailbb01,15,1,f +10927,sailbb10,15,1,f +10927,sailbb14,15,1,f +10929,2780,0,64,f +10929,2819,7,1,f +10929,30374,42,4,f +10929,3139,0,2,f +10929,32002,8,7,f +10929,32005b,8,2,f +10929,32009,0,4,f +10929,32014,7,2,f +10929,32015,7,4,f +10929,32054,7,28,f +10929,32056,0,4,f +10929,32062,0,10,f +10929,32073,7,9,f +10929,32123b,7,9,f +10929,32138,0,1,f +10929,32140,7,2,f +10929,32140,0,4,f +10929,32184,0,2,f +10929,32188,148,1,f +10929,32189,148,1,f +10929,32190,148,1,f +10929,32191,148,1,f +10929,32192,7,8,f +10929,32199,179,2,f +10929,32201,179,2,f +10929,32235,179,4,f +10929,32249,0,4,f +10929,32278,7,1,f +10929,32291,7,6,f +10929,32316,7,2,f +10929,32316,0,2,f +10929,32348,7,1,f +10929,32496,0,2,f +10929,32523,7,2,f +10929,32524,0,2,f +10929,32524,7,1,f +10929,32525,0,4,f +10929,32526,0,6,f +10929,32527,148,1,f +10929,32527,7,1,f +10929,32528,7,1,f +10929,32528,148,1,f +10929,32534,7,1,f +10929,32534,148,2,f +10929,32535,148,2,f +10929,32535,7,1,f +10929,32557,0,4,f +10929,3705,0,4,f +10929,3706,0,2,f +10929,3707,0,3,f +10929,3713,7,10,f +10929,3749,19,2,f +10929,40490,7,1,f +10929,40490,0,3,f +10929,41663,135,2,f +10929,41669,36,4,f +10929,41669,42,2,f +10929,41669,135,2,f +10929,41677,7,4,f +10929,41677,0,4,f +10929,41678,0,10,f +10929,4185,7,2,f +10929,41894,0,2,f +10929,42003,0,8,f +10929,4274,7,3,f +10929,42908,0,2,f +10929,43093,1,23,f +10929,43857,7,6,f +10929,44294,7,3,f +10929,44350,148,1,f +10929,44351,148,1,f +10929,44771,0,4,f +10929,44772,7,4,f +10929,44777,0,2,f +10929,4519,7,6,f +10929,5282,0,1,f +10929,5306bc015,0,2,f +10929,6141,7,3,f +10929,6272c01,0,1,f +10929,6282,0,1,f +10929,6536,0,7,f +10929,6538b,0,2,f +10929,6538b,7,5,f +10929,6553,7,2,f +10929,6558,0,29,f +10929,6587,8,14,f +10929,6632,0,8,f +10929,78c07,179,2,f +10929,78c15,179,1,f +10929,rb00178,0,2,f +10929,rb00180,0,2,f +10932,2341,4,1,f +10932,2423,2,2,f +10932,3003,4,2,f +10932,3004,0,4,f +10932,3004,7,2,f +10932,3004p51,14,1,f +10932,3005,7,2,f +10932,3005,4,1,f +10932,3005,0,2,f +10932,3010,4,2,f +10932,3010,0,2,f +10932,3020,7,2,f +10932,3020,15,1,f +10932,3022,0,3,f +10932,3022,15,1,f +10932,3023,7,2,f +10932,3024,15,1,f +10932,3031,15,2,f +10932,3039,15,5,f +10932,3039,1,1,f +10932,3045,15,2,f +10932,3068b,0,1,f +10932,3298,4,1,f +10932,3660,0,1,f +10932,3660,1,1,f +10932,3665,15,2,f +10932,3665,1,1,f +10932,3666,4,2,f +10932,3710,7,2,f +10932,3710,15,1,f +10932,3795,0,2,f +10932,4286,4,2,f +10932,6141,4,2,f +10932,6141,14,2,f +10932,6141,15,1,f +10934,2456,15,2,f +10934,2456,4,2,f +10934,3001,15,4,f +10934,3001,1,4,f +10934,3001,4,4,f +10934,3001,14,2,f +10934,3002,4,4,f +10934,3002,1,4,f +10934,3002,14,2,f +10934,3002,15,4,f +10934,3002,0,2,f +10934,3003,4,16,f +10934,3003,14,11,f +10934,3003,36,4,f +10934,3003,15,16,f +10934,3003,33,4,f +10934,3003,1,16,f +10934,3003,2,4,f +10934,3003,0,8,f +10934,3004,72,10,f +10934,3004,14,12,f +10934,3004,2,10,f +10934,3004,0,12,f +10934,3004,4,22,f +10934,3004,15,24,f +10934,3004,1,22,f +10934,3005,15,14,f +10934,3005,4,14,f +10934,3005,33,4,f +10934,3005,0,10,f +10934,3005,2,8,f +10934,3005,1,14,f +10934,3005pe1,14,2,f +10934,3005pe2,72,1,f +10934,3005pe3,72,1,f +10934,3009,15,4,f +10934,3009,14,2,f +10934,3009,1,2,f +10934,3009,4,4,f +10934,3010,2,2,f +10934,3010,72,2,f +10934,3010,1,4,f +10934,3010,14,2,f +10934,3010,4,4,f +10934,3010,0,2,f +10934,3010,15,4,f +10934,3010p01,14,1,f +10934,3020,2,2,f +10934,3020,4,2,f +10934,3020,14,2,f +10934,3020,15,2,f +10934,3020,1,2,f +10934,3021,72,2,f +10934,3021,15,2,f +10934,3021,14,2,f +10934,3021,1,2,f +10934,3021,2,2,f +10934,3021,4,2,f +10934,3022,15,4,f +10934,3022,14,4,f +10934,3022,4,4,f +10934,3022,1,4,f +10934,3022,2,2,f +10934,3022,72,2,f +10934,3039,72,2,f +10934,3039,1,4,f +10934,3039,47,2,f +10934,3039,33,2,f +10934,3039,4,2,f +10934,3039,15,4,f +10934,3040b,72,2,f +10934,3040b,15,4,f +10934,3040b,1,4,f +10934,3040b,4,4,f +10934,3065,36,8,f +10934,3065,33,8,f +10934,3065,47,8,f +10934,3066,36,2,f +10934,3298,1,2,f +10934,3298,4,4,f +10934,3298,15,4,f +10934,3622,72,2,f +10934,3622,2,2,f +10934,3660,4,2,f +10934,3660,15,2,f +10934,3660,1,2,f +10934,3665,72,2,f +10934,3665,15,4,f +10934,3665,1,4,f +10934,3665,4,4,f +10934,3710,4,2,f +10934,3710,1,2,f +10934,3710,15,2,f +10934,3747b,1,2,f +10934,3795,1,2,f +10934,3795,4,2,f +10934,3795,15,2,f +10934,4286,4,4,f +10934,4286,72,2,f +10934,4286,1,4,f +10934,4286,15,4,f +10934,4287,4,4,f +10934,4287,72,2,f +10934,4287,1,4,f +10934,4287,15,4,f +10935,11476,71,1,f +10935,11477,72,2,f +10935,13971,71,4,f +10935,15207,72,2,f +10935,2357,4,2,f +10935,2420,4,4,f +10935,2420,0,2,f +10935,2435,2,1,f +10935,2436,15,1,f +10935,2495,4,1,f +10935,2496,0,1,f +10935,3001,4,1,f +10935,3003,70,1,f +10935,3004,19,1,f +10935,3005,4,2,f +10935,3010,4,4,f +10935,3020,72,2,f +10935,3022,0,4,f +10935,3023,71,4,f +10935,3023,14,1,f +10935,3023,4,3,f +10935,3024,0,2,f +10935,3024,320,4,f +10935,3024,320,1,t +10935,3024,0,1,t +10935,3024,36,2,f +10935,3024,36,1,t +10935,3031,4,1,f +10935,30414,1,1,f +10935,3069b,15,1,f +10935,3069b,320,2,f +10935,3069b,72,4,f +10935,33291,10,1,t +10935,33291,10,2,f +10935,3626cpr0679,14,1,f +10935,3666,72,1,f +10935,3666,320,1,f +10935,3710,0,2,f +10935,3710,4,4,f +10935,3795,71,1,f +10935,3795,4,2,f +10935,3821,4,1,f +10935,3822,4,1,f +10935,3823,47,1,f +10935,3829c01,14,1,f +10935,3901,71,1,f +10935,3958,72,1,f +10935,4070,4,2,f +10935,41769,4,1,f +10935,41770,4,1,f +10935,44567a,72,2,f +10935,45677,0,1,f +10935,47720,71,2,f +10935,4865a,47,1,f +10935,4865a,72,2,f +10935,6005,320,6,f +10935,61254,0,4,f +10935,61409,72,4,f +10935,6141,46,2,f +10935,6141,46,1,t +10935,6141,47,2,f +10935,6141,47,1,t +10935,63864,320,2,f +10935,91988,72,1,f +10935,92092,72,1,f +10935,970c00,379,1,f +10935,973pr1859c01,15,1,f +10935,99206,71,1,f +10937,122c01,7,3,f +10937,3004,47,1,f +10937,3005,15,2,f +10937,3010,15,3,f +10937,3010pb036u,15,1,f +10937,3020,7,4,f +10937,3020,15,2,f +10937,3021,15,4,f +10937,3022,7,1,f +10937,3023,7,1,f +10937,3024,7,2,f +10937,3029,15,1,f +10937,3034,7,1,f +10937,3037,4,2,f +10937,3038,15,2,f +10937,3038,4,2,f +10937,3039,4,2,f +10937,3087c,15,1,f +10937,3581,15,2,f +10937,3582,7,2,f +10937,3624,4,1,f +10937,3626apr0001,14,1,f +10937,3641,0,6,f +10937,3660,15,8,f +10937,3666,15,2,f +10937,3679,7,1,f +10937,3680,15,1,f +10937,3710,15,4,f +10937,3710,7,1,f +10937,3787,7,2,f +10937,3788,15,1,f +10937,3794a,15,2,f +10937,3795,7,2,f +10937,3823,47,1,f +10937,554stk01,9999,1,t +10937,970c00,1,1,f +10937,973c02,4,1,f +10937,rb00166,0,1,f +10938,2362b,7,1,f +10938,2419,14,1,f +10938,2436,320,2,f +10938,2450,19,3,f +10938,2453a,0,1,f +10938,2454a,6,1,f +10938,3001,14,8,f +10938,3001,4,6,f +10938,3001,1,10,f +10938,3001p08,2,1,f +10938,3002,14,2,f +10938,3002,379,4,f +10938,3003,1,5,f +10938,3003,4,5,f +10938,3003,14,5,f +10938,3003,462,1,f +10938,3003,2,3,f +10938,3004,4,6,f +10938,3004,1,4,f +10938,3004,14,8,f +10938,3004,2,4,f +10938,3005,4,6,f +10938,3005,2,4,f +10938,3005,1,6,f +10938,3005pe1,14,2,f +10938,3008,484,1,f +10938,30145,19,1,f +10938,3020,0,2,f +10938,3021,4,2,f +10938,3022,27,4,f +10938,3022,7,2,f +10938,3022,15,4,f +10938,3023,1,1,f +10938,30363,1,2,f +10938,3039,14,2,f +10938,3039,272,2,f +10938,3040b,14,2,f +10938,3043,15,1,f +10938,3043,7,1,f +10938,3062b,2,4,f +10938,3298,19,1,f +10938,3308,7,1,f +10938,3460,6,1,f +10938,3623,378,1,f +10938,3665,14,2,f +10938,3688,1,1,f +10938,3688,0,2,f +10938,3710,378,3,f +10938,3942c,272,1,f +10938,4032a,15,3,f +10938,4150,462,6,f +10938,4162,19,1,f +10938,4175,14,1,f +10938,41767,27,2,f +10938,41769,462,1,f +10938,41770,27,1,f +10938,41854,7,3,f +10938,41862,7,2,f +10938,41862,320,1,f +10938,42023,14,1,f +10938,4477,6,3,f +10938,4728,52,4,f +10938,4728,5,2,f +10938,4728,73,9,f +10938,4744,4,1,f +10938,4856a,8,1,f +10938,4861,15,1,f +10938,4865a,19,5,f +10938,4865a,14,4,f +10938,6069,15,1,f +10938,6069,0,1,f +10938,6069,8,1,f +10938,6141,19,2,f +10939,45462,118,1,f +10939,47912,41,1,f +10940,22119,1,1,f +10940,22253,15,2,f +10940,2346,0,4,f +10940,2357,15,2,f +10940,2357,0,4,f +10940,2419,2,2,f +10940,2454a,15,3,f +10940,2456,0,6,f +10940,2458,8,2,f +10940,2465,15,2,f +10940,2555,0,2,f +10940,2569,42,2,f +10940,2654,7,1,f +10940,2654,0,6,f +10940,2730,4,3,f +10940,2730,0,10,f +10940,2780,0,78,f +10940,2815,0,10,f +10940,2817,7,2,f +10940,2825,7,8,f +10940,2854,7,4,f +10940,2902,0,4,f +10940,2903,15,4,f +10940,2982c01,1,3,f +10940,2983,7,10,f +10940,2984,4,1,f +10940,2985,4,1,f +10940,2986,4,1,f +10940,2994,15,4,f +10940,3001,2,2,f +10940,3001,15,1,f +10940,3001,0,28,f +10940,3002,15,1,f +10940,3003,0,20,f +10940,3004,14,4,f +10940,3004,15,11,f +10940,3004,2,4,f +10940,3004,0,20,f +10940,3007,0,8,f +10940,3009,15,1,f +10940,3010,0,6,f +10940,3010,25,2,f +10940,3020,14,6,f +10940,3020,15,2,f +10940,30208,42,2,f +10940,30209,8,2,f +10940,3021,7,1,f +10940,3021,15,2,f +10940,30211,0,4,f +10940,3022,15,1,f +10940,3022,1,4,f +10940,3022,7,8,f +10940,3022,4,1,f +10940,3022,2,2,f +10940,3023,7,20,f +10940,3023,2,2,f +10940,3023,4,6,f +10940,30230px1,33,1,f +10940,30230px2,33,1,f +10940,3024,7,8,f +10940,3033,7,1,f +10940,3034,2,4,f +10940,3039,2,3,f +10940,3040b,14,4,f +10940,3040b,0,12,f +10940,3062b,47,1,f +10940,3065,34,1,f +10940,3065,33,1,f +10940,3065,36,1,f +10940,3065,47,1,f +10940,3068b,4,2,f +10940,32000,7,3,f +10940,32001,7,8,f +10940,32002,8,54,f +10940,32007,15,4,f +10940,32009,14,4,f +10940,32009,0,4,f +10940,32009,3,4,f +10940,32009,2,2,f +10940,32013,14,4,f +10940,32013,1,6,f +10940,32013,7,4,f +10940,32015,7,4,f +10940,32017,2,12,f +10940,32017,7,4,f +10940,32028,7,8,f +10940,32039,7,4,f +10940,32062,0,24,f +10940,32063,3,4,f +10940,32064a,1,4,f +10940,32064b,7,2,f +10940,32064b,2,10,f +10940,32065,14,2,f +10940,32068,7,2,f +10940,32073,0,22,f +10940,32123b,7,54,f +10940,3298,25,8,f +10940,3460,7,10,f +10940,3482,14,10,f +10940,3483,0,2,f +10940,3622,15,4,f +10940,3623,14,2,f +10940,3626bp04,14,1,f +10940,3634,0,2,f +10940,3647,7,15,f +10940,3648a,7,10,f +10940,3649,7,4,f +10940,3650c,7,10,f +10940,3665,0,4,f +10940,3665,4,2,f +10940,3665,14,4,f +10940,3666,2,2,f +10940,3666,7,10,f +10940,3673,7,68,f +10940,3679,7,2,f +10940,3680,1,2,f +10940,3700,14,4,f +10940,3700,0,12,f +10940,3700,4,7,f +10940,3700,15,1,f +10940,3701,0,10,f +10940,3701,2,2,f +10940,3702,0,12,f +10940,3702,4,3,f +10940,3703,4,2,f +10940,3703,0,6,f +10940,3705,0,20,f +10940,3706,0,14,f +10940,3707,0,12,f +10940,3708,0,8,f +10940,3709,7,8,f +10940,3710,7,10,f +10940,3710,25,4,f +10940,3713,7,125,f +10940,3736,7,2,f +10940,3737,0,10,f +10940,3738,7,12,f +10940,3743,7,10,f +10940,3747b,25,5,f +10940,3747b,0,4,f +10940,3749,7,53,f +10940,3755,15,5,f +10940,3795,25,2,f +10940,3832,7,8,f +10940,3832,4,2,f +10940,3857,7,1,f +10940,3894,4,3,f +10940,3894,0,12,f +10940,3895,0,10,f +10940,3895,4,2,f +10940,3901,0,1,f +10940,3937,0,2,f +10940,3938,0,2,f +10940,3941,0,8,f +10940,3941,15,2,f +10940,3956,7,4,f +10940,3960,15,2,f +10940,4019,7,10,f +10940,4032a,1,2,f +10940,4032a,15,2,f +10940,4085c,0,2,f +10940,4150,0,1,f +10940,4150,4,1,f +10940,4185,7,10,f +10940,4220,14,2,f +10940,4221,0,4,f +10940,4274,7,49,f +10940,4275b,0,2,f +10940,43362c01,7,3,f +10940,4477,7,8,f +10940,4477,4,1,f +10940,4519,0,30,f +10940,4531,0,2,f +10940,4589,14,2,f +10940,4589,15,2,f +10940,4716,0,10,f +10940,5306bc020,0,11,f +10940,5306bc036,0,1,f +10940,5306bc162,0,2,f +10940,6007,8,1,f +10940,6019,0,2,f +10940,6035,15,4,f +10940,6048a,0,4,f +10940,6133,57,2,f +10940,6141,1,3,f +10940,6141,15,3,f +10940,6141,0,6,f +10940,6215,2,4,f +10940,6536,7,6,f +10940,6538b,7,28,f +10940,6553,7,10,f +10940,6558,0,18,f +10940,6573,8,1,f +10940,6575,7,4,f +10940,6578,0,2,f +10940,6587,8,12,f +10940,6589,7,20,f +10940,6594,0,2,f +10940,6629,3,5,f +10940,6629,0,4,f +10940,6632,7,4,f +10940,680c01,0,2,f +10940,71082,47,2,f +10940,71509,0,27,f +10940,75535,15,1,f +10940,75c19,14,2,f +10940,75c36,3,2,f +10940,78c09,0,4,f +10940,78c09,3,4,f +10940,78c12,22,4,f +10940,85543,15,2,f +10940,85544,1,3,f +10940,85544,10,2,f +10940,85545,14,4,f +10940,879,7,4,f +10940,970c00,15,1,f +10940,973pr1245c01,1,1,f +10940,bin03,10,2,f +10940,rb00168,0,70,f +10940,rb00169,0,32,f +10941,3704,0,6,f +10941,3705,0,30,f +10941,3705b,0,4,f +10941,3706,0,24,f +10941,3707,0,14,f +10941,3708,0,14,f +10941,3737,0,14,f +10941,4265a,7,12,f +10941,4519,0,6,f +10942,wood03,9999,1,f +10945,15068,72,1,f +10945,15208,15,1,f +10945,15573,27,1,f +10945,15712,0,1,f +10945,3001,27,1,f +10945,3003,27,1,f +10945,3020,0,1,f +10945,3021,27,2,f +10945,30237b,0,1,f +10945,3039,4,1,f +10945,3747a,0,1,f +10945,3795,27,1,f +10945,54200,27,2,f +10945,55236,27,1,f +10945,60897,14,2,f +10945,6133,0,2,f +10945,6141,42,1,f +10945,85861,15,1,f +10945,87087,0,2,f +10945,87618,0,1,f +10945,93606,0,1,f +10945,98138pr0008,15,2,f +10945,99206,4,1,f +10946,2412b,71,1,f +10946,2555,72,3,f +10946,298c02,1,2,f +10946,298c02,1,1,t +10946,3001,27,1,f +10946,3004,27,1,f +10946,30157,72,2,f +10946,3023,27,1,f +10946,30325,80,1,f +10946,30385,42,1,f +10946,30391,0,4,f +10946,30414,72,2,f +10946,32015,71,1,f +10946,32064b,71,2,f +10946,32073,71,1,f +10946,3623,72,2,f +10946,3626bpr0560,14,1,f +10946,3700,1,1,f +10946,3713,71,1,t +10946,3713,71,1,f +10946,3832,71,1,f +10946,4274,71,1,t +10946,4274,71,1,f +10946,4349,72,1,f +10946,4589,33,1,f +10946,54200,182,2,f +10946,54200,182,1,t +10946,55981,71,4,f +10946,57539,135,1,f +10946,60470a,71,1,f +10946,6091,27,2,f +10946,61072,135,1,f +10946,61184,71,1,f +10946,6126b,41,1,f +10946,61409,27,4,f +10946,6141,72,1,t +10946,6141,47,1,t +10946,6141,72,2,f +10946,6141,47,4,f +10946,64450,0,1,f +10946,64728,4,1,f +10946,64783,0,2,f +10946,64784pat02,46,1,f +10946,6536,27,1,f +10946,85940,0,2,f +10946,86500,33,1,f +10946,87081,1,1,f +10946,87777,80,1,f +10946,87780,46,1,f +10946,970c00pr0149a,71,1,f +10946,973pr1581c01,71,1,f +10948,2441,0,1,f +10948,2580c01,7,4,f +10948,2654,7,6,f +10948,2681,0,2,f +10948,30027,15,4,f +10948,30028,0,4,f +10948,3023,0,8,f +10948,3023,15,1,f +10948,3039,7,2,f +10948,3626bpr0001,14,1,f +10948,3707,0,2,f +10948,3794a,15,2,f +10948,3829c01,15,1,f +10948,3832,15,6,f +10948,3833,4,1,f +10948,4083,0,2,f +10948,4085c,7,2,f +10948,4286,15,2,f +10948,4865a,15,2,f +10948,55295,8,1,f +10948,55296,8,1,f +10948,55297,8,1,f +10948,55298,8,1,f +10948,55299,8,1,f +10948,55300,8,1,f +10948,6019,0,16,f +10948,6057,0,2,f +10948,6063,7,2,f +10948,6141,36,1,t +10948,6141,36,2,f +10948,6192,46,12,f +10948,6231,15,2,f +10948,6232,7,4,f +10948,970c00,1,1,f +10948,973pb0201c01,15,1,f +10949,3482,7,6,f +10949,3483,0,4,f +10949,3634,0,2,f +10950,2335pr02,15,1,f +10950,2343,47,1,f +10950,2343,7,2,f +10950,2348b,41,1,f +10950,2349a,14,1,f +10950,2377,0,2,f +10950,2399,14,1,f +10950,2412b,15,6,f +10950,2412b,0,2,f +10950,2412b,14,2,f +10950,2420,4,16,f +10950,2420,0,2,f +10950,2431,0,1,f +10950,2431,4,4,f +10950,2432,15,2,f +10950,2432,1,1,f +10950,2432,4,1,f +10950,2436,4,3,f +10950,2441,14,1,f +10950,2441,2,1,f +10950,2441,4,1,f +10950,2441,1,1,f +10950,2446,0,1,f +10950,2446,15,1,f +10950,2446px3,4,1,f +10950,2446px6,1,1,f +10950,2447,41,2,f +10950,2447,0,2,f +10950,2452,0,1,f +10950,2453a,15,2,f +10950,2454a,15,2,f +10950,2460,0,2,f +10950,2495,4,1,f +10950,2496,0,4,f +10950,2540,7,1,f +10950,2555,0,2,f +10950,2655,7,2,f +10950,2736,7,1,f +10950,2877,4,2,f +10950,2921,14,1,f +10950,298c02,14,1,f +10950,298c04,15,2,f +10950,3001,15,3,f +10950,3002,0,1,f +10950,3004,0,1,f +10950,3004,14,1,f +10950,3004,4,3,f +10950,3005,15,2,f +10950,3008,15,5,f +10950,3010,4,1,f +10950,3020,14,1,f +10950,3020,0,5,f +10950,3020,7,1,f +10950,3020,4,1,f +10950,3021,14,1,f +10950,3021,0,3,f +10950,3022,4,1,f +10950,3022,15,2,f +10950,3022,14,1,f +10950,3022,0,6,f +10950,3023,1,1,f +10950,3023,4,7,f +10950,3023,0,11,f +10950,3023,14,2,f +10950,3023,7,5,f +10950,3024,14,1,f +10950,3024,0,3,f +10950,3024,46,6,f +10950,3024,7,2,f +10950,3024,4,1,f +10950,3034,0,1,f +10950,3034,4,1,f +10950,3035,0,1,f +10950,3039,4,1,f +10950,3039,1,1,f +10950,3039,15,1,f +10950,3039,14,1,f +10950,3062b,14,2,f +10950,3062b,4,1,f +10950,3062b,7,12,f +10950,3068b,0,1,f +10950,3068b,14,1,f +10950,3069b,15,2,f +10950,3069b,0,1,f +10950,3070b,36,4,f +10950,3070bp01,14,1,f +10950,3070bp02,14,1,f +10950,3070bp03,14,1,f +10950,3070bp04,14,1,f +10950,3460,0,16,f +10950,3491,0,1,f +10950,3622,0,2,f +10950,3622,4,1,f +10950,3623,4,2,f +10950,3623,15,4,f +10950,3623,0,2,f +10950,3626bp7e,14,1,f +10950,3626bpr0001,14,3,f +10950,3641,0,18,f +10950,3666,0,1,f +10950,3666,15,2,f +10950,3666,14,1,f +10950,3709,4,1,f +10950,3710,0,1,f +10950,3710,4,2,f +10950,3710,14,2,f +10950,3738,4,2,f +10950,3747b,4,1,f +10950,3794a,0,6,f +10950,3795,4,3,f +10950,3821,4,1,f +10950,3822,4,1,f +10950,3823,41,1,f +10950,3823,47,1,f +10950,3829c01,15,3,f +10950,3829c01,4,3,f +10950,3836,6,1,f +10950,3837,8,1,f +10950,3900,15,1,f +10950,3901,0,1,f +10950,3941,15,1,f +10950,3957a,7,2,f +10950,3963,0,1,f +10950,4006,0,1,f +10950,4032a,2,1,f +10950,4032a,4,1,f +10950,4032a,15,1,f +10950,4070,14,4,f +10950,4070,15,2,f +10950,4081b,14,2,f +10950,4081b,0,2,f +10950,4081b,7,4,f +10950,4085c,0,2,f +10950,4085c,7,2,f +10950,4085c,14,2,f +10950,4085c,15,2,f +10950,4162,4,4,f +10950,4175,0,1,f +10950,4187,2,1,f +10950,4211,0,1,f +10950,4213,0,1,f +10950,4214,14,1,f +10950,4214,0,1,f +10950,4215a,0,8,f +10950,4276b,0,3,f +10950,4282,0,2,f +10950,4286,4,2,f +10950,4286,15,2,f +10950,4286,1,2,f +10950,4286,14,2,f +10950,4476b,15,2,f +10950,4477,15,1,f +10950,4485,15,1,f +10950,4485,4,2,f +10950,4495b,2,1,f +10950,4495b,4,1,f +10950,4515,0,1,f +10950,4518ac01,0,1,f +10950,4522,0,1,f +10950,4589,0,1,f +10950,4589,46,1,f +10950,4599a,7,1,f +10950,4599a,0,3,f +10950,4599a,15,2,f +10950,4599a,4,1,f +10950,4600,0,7,f +10950,4623,15,4,f +10950,4624,15,18,f +10950,4629c01,1,1,f +10950,4862,47,2,f +10950,4865a,7,3,f +10950,6014a,14,4,f +10950,6014a,15,10,f +10950,6015,0,14,f +10950,6016,15,1,f +10950,6019,4,1,f +10950,6019,0,2,f +10950,6081,0,1,f +10950,6091,0,1,f +10950,6141,7,2,f +10950,6141,34,1,f +10950,6141,47,4,f +10950,6141,46,3,f +10950,6141,0,2,f +10950,6141,36,3,f +10950,63965,15,2,f +10950,970c00,2,1,f +10950,970c00,4,1,f +10950,970c00,15,1,f +10950,970c00,1,1,f +10950,973p13c02,4,1,f +10950,973p14c01,15,1,f +10950,973p73c01,2,1,f +10950,973px130c01,15,1,f +10951,10201,4,2,f +10951,11211,4,1,f +10951,14704,71,2,f +10951,15209,15,2,f +10951,2540,0,2,f +10951,2736,71,2,f +10951,3004,320,1,f +10951,3021,4,1,f +10951,3022,4,3,f +10951,3023,320,8,f +10951,3039,4,1,f +10951,3048c,4,2,f +10951,3049d,4,1,f +10951,32064b,4,2,f +10951,32474pr1001,15,2,f +10951,3794b,4,5,f +10951,3937,4,1,f +10951,44728,0,1,f +10951,47457,4,1,f +10951,51739,320,1,f +10951,54200,320,2,f +10951,54200,320,1,t +10951,61252,4,4,f +10951,6126b,57,2,f +10951,6134,0,1,f +10951,63868,4,2,f +10951,85959pat0003,36,2,f +10951,93273,320,3,f +10951,99207,4,1,f +10953,194cx1,2,1,f +10953,2339,4,4,f +10953,2357,4,11,f +10953,2357,8,5,f +10953,2400,0,4,f +10953,2431,8,5,f +10953,2431,7,4,f +10953,2432,7,2,f +10953,2439,8,2,f +10953,2445,8,4,f +10953,2446,8,1,f +10953,2447,0,1,f +10953,2447,0,1,t +10953,2458,8,1,f +10953,2493b,7,6,f +10953,2494,40,6,f +10953,2495,14,1,f +10953,2496,0,1,f +10953,2555,7,7,f +10953,2584,14,1,f +10953,2585,0,1,f +10953,2874,0,2,f +10953,2877,4,29,f +10953,2877,8,12,f +10953,298c02,7,1,f +10953,298c02,7,1,t +10953,3001,8,2,f +10953,3002,8,1,f +10953,3003,8,4,f +10953,3004,8,15,f +10953,3004,4,42,f +10953,3005,0,1,f +10953,3005,8,9,f +10953,3005,4,17,f +10953,3008,8,4,f +10953,3009,4,16,f +10953,3010,8,11,f +10953,3010,4,9,f +10953,30133,4,1,f +10953,3020,0,12,f +10953,3021,7,1,f +10953,3022,7,4,f +10953,3023,0,1,f +10953,3023,8,22,f +10953,3023,7,3,f +10953,3023,46,6,f +10953,3023,2,1,f +10953,30236,4,2,f +10953,30237a,4,6,f +10953,3024,47,1,f +10953,3024,8,7,f +10953,3029,7,1,f +10953,3031,0,4,f +10953,3034,4,1,f +10953,3035,7,1,f +10953,30374,15,5,f +10953,30377,7,2,f +10953,30377,7,1,t +10953,3039,8,2,f +10953,30395,8,1,f +10953,30396,14,1,f +10953,30517,0,4,f +10953,30540,8,1,f +10953,30552,8,2,f +10953,3062b,4,1,f +10953,3062b,2,2,f +10953,30663,0,2,f +10953,3068b,4,3,f +10953,3069b,0,1,f +10953,3069b,8,4,f +10953,3069b,2,1,f +10953,3070b,8,1,t +10953,3070b,8,8,f +10953,3176,2,1,f +10953,3185,7,4,f +10953,32018,8,2,f +10953,32018,4,4,f +10953,32064a,8,4,f +10953,32123b,7,1,f +10953,32123b,7,1,t +10953,32530,4,1,f +10953,3298,0,8,f +10953,3307,4,4,f +10953,3460,7,8,f +10953,3460,8,3,f +10953,3460,15,1,f +10953,3581,4,4,f +10953,3622,8,2,f +10953,3622,4,23,f +10953,3624,1,1,f +10953,3626bpb0172,14,1,f +10953,3626bpr0270,14,1,f +10953,3633,7,4,f +10953,3659,4,6,f +10953,3660,4,4,f +10953,3660,8,10,f +10953,3665,4,5,f +10953,3666,8,15,f +10953,3684,8,11,f +10953,3700,4,2,f +10953,3700,8,1,f +10953,3703,8,2,f +10953,3707,0,1,f +10953,3710,7,1,f +10953,3710,1,1,f +10953,3710,8,18,f +10953,3794a,2,1,f +10953,3794a,1,2,f +10953,3794a,7,3,f +10953,3830,8,1,f +10953,3831,8,1,f +10953,3832,7,1,f +10953,3833,4,1,f +10953,3836,6,1,f +10953,3837,8,1,f +10953,3857,7,2,f +10953,3899,14,2,f +10953,3899,47,1,f +10953,3940b,8,4,f +10953,3941,15,1,f +10953,3941,14,1,f +10953,3959,8,1,f +10953,4006,0,1,f +10953,4032a,15,1,f +10953,4032a,7,1,f +10953,4032a,2,1,f +10953,4032a,4,1,f +10953,4070,4,1,f +10953,4070,2,2,f +10953,4070,1,2,f +10953,4085c,8,1,f +10953,4162,8,14,f +10953,4175,7,2,f +10953,4274,7,1,f +10953,4274,7,1,t +10953,4286,0,16,f +10953,43857,0,1,f +10953,44728,7,1,f +10953,4477,8,3,f +10953,4510,8,4,f +10953,4515,0,16,f +10953,4522,0,1,f +10953,4589,2,1,f +10953,4589,4,1,f +10953,4599a,7,1,f +10953,4623,0,1,f +10953,4697b,7,1,f +10953,4697b,7,1,t +10953,4740,15,4,f +10953,55295,0,1,f +10953,55296,0,1,f +10953,55297,0,1,f +10953,55298,0,1,f +10953,55299,0,1,f +10953,55300,0,1,f +10953,56823,0,1,f +10953,58181,40,16,f +10953,6019,7,4,f +10953,6141,46,4,f +10953,6141,46,1,t +10953,63965,15,1,f +10953,6587,8,2,f +10953,6636,8,10,f +10953,71076,383,1,f +10953,73194c03,7,2,f +10953,73983,8,1,f +10953,74746,8,4,f +10953,970c00,1,2,f +10953,973pb0009c01,15,1,f +10953,973pr1183c01,25,1,f +10955,2431,4,2,f +10955,2431,73,2,f +10955,2431,14,3,f +10955,2435,2,1,f +10955,2446pb03,4,1,f +10955,2446pb10,1,1,f +10955,2460,7,2,f +10955,2465,7,4,f +10955,2681,0,2,f +10955,2730,1,2,f +10955,2780,0,1,t +10955,2780,0,4,f +10955,3003,1,2,f +10955,3004,1,4,f +10955,3008,7,2,f +10955,3009,7,2,f +10955,30145,0,2,f +10955,30170,0,1,t +10955,30170,33,1,f +10955,30170,0,1,f +10955,30170,33,1,t +10955,3020,15,4,f +10955,3022,0,2,f +10955,3022,1,8,f +10955,3033,15,2,f +10955,3035,15,2,f +10955,30363,15,2,f +10955,3039,1,2,f +10955,3068b,4,3,f +10955,3069b,4,2,f +10955,3176,1,1,f +10955,32064b,7,2,f +10955,32064b,15,2,f +10955,32523,0,4,f +10955,3460,1,13,f +10955,3460,4,2,f +10955,3626bpb0022,14,1,f +10955,3626bpb0161,14,1,f +10955,3666,73,2,f +10955,3700,0,4,f +10955,3703,7,2,f +10955,3705,0,2,f +10955,3710,1,7,f +10955,3713,7,1,t +10955,3713,7,2,f +10955,3730,1,4,f +10955,3731,1,4,f +10955,3737,0,2,f +10955,3795,4,1,f +10955,3840,15,2,f +10955,3857,15,2,f +10955,3867,15,1,f +10955,3941,1,4,f +10955,3957a,4,4,f +10955,4162,8,2,f +10955,41747,73,2,f +10955,41747,15,4,f +10955,41748,15,4,f +10955,41748,73,2,f +10955,42022,15,2,f +10955,42060,15,1,f +10955,42061,15,1,f +10955,4215b,14,3,f +10955,4282,0,2,f +10955,4282,7,1,f +10955,44126,15,1,f +10955,4495b,14,3,f +10955,4495b,2,1,f +10955,46203pb04c01,1,1,f +10955,46203pb05c01,4,1,f +10955,4864b,14,4,f +10955,4865a,7,2,f +10955,6112,7,4,f +10955,6141,4,4,f +10955,6141,34,4,f +10955,6141,34,1,t +10955,6141,4,1,t +10955,6232,1,8,f +10955,78c31,143,1,f +10955,970c00,8,1,f +10955,970c00,19,1,f +10955,973c23,4,1,f +10955,973c24,1,1,f +10956,2432,71,2,f +10956,2489,308,1,f +10956,30136,70,2,f +10956,3021,70,1,f +10956,3899,14,1,f +10956,4032a,70,1,f +10956,4599b,71,1,f +10957,30385,383,2,f +10957,3039pb019,14,1,f +10957,3039pb019,1,1,f +10957,3069bps9,14,2,f +10957,37,383,2,f +10957,4150pa0,14,1,f +10957,57467,383,2,f +10957,59275,0,2,f +10957,59275,1,2,f +10957,6041,57,1,f +10957,6088,15,1,f +10957,6089,8,1,f +10957,6090,0,1,f +10957,6090,4,1,f +10957,6090,33,1,f +10958,2346,0,2,f +10958,2412b,14,4,f +10958,2413,4,2,f +10958,2419,14,2,f +10958,2432,14,2,f +10958,2458,1,2,f +10958,2460,1,1,f +10958,2479,1,1,f +10958,2625,4,2,f +10958,30000,8,1,f +10958,3001,15,2,f +10958,3001,14,2,f +10958,3001,0,2,f +10958,3001,1,4,f +10958,3001,4,4,f +10958,3001,2,2,f +10958,3002,14,2,f +10958,3002,1,2,f +10958,3002,15,2,f +10958,3002,4,2,f +10958,3003,1,4,f +10958,3003,4,4,f +10958,3003,0,2,f +10958,3003,15,4,f +10958,3003,14,4,f +10958,3004,4,20,f +10958,3004,0,6,f +10958,3004,1,16,f +10958,3004,15,16,f +10958,3004,14,12,f +10958,3005,2,6,f +10958,3005,1,8,f +10958,3005,4,8,f +10958,3005,14,8,f +10958,3005,15,10,f +10958,3005,0,6,f +10958,3005pe1,14,2,f +10958,3005pe1,4,2,f +10958,3008,4,2,f +10958,3009,1,2,f +10958,3009,15,2,f +10958,3009,14,2,f +10958,3009,4,2,f +10958,3010,15,6,f +10958,3010,14,6,f +10958,3010,1,6,f +10958,3010,4,6,f +10958,3010,2,4,f +10958,3010p01,14,1,f +10958,3010pb005,15,2,f +10958,3020,14,2,f +10958,3020,1,2,f +10958,3021,1,2,f +10958,3021,4,2,f +10958,3022,1,2,f +10958,3030,1,1,f +10958,3031,1,1,f +10958,3032,1,1,f +10958,30341,4,1,f +10958,3035,14,1,f +10958,3039,14,4,f +10958,3040b,14,4,f +10958,3062b,15,10,f +10958,3149c01,1,1,f +10958,3297,1,4,f +10958,3297px1,1,4,f +10958,3298,1,4,f +10958,3298p11,1,4,f +10958,3299,1,2,f +10958,3300,1,2,f +10958,3307,15,2,f +10958,3483,0,4,f +10958,3622,14,4,f +10958,3622,1,4,f +10958,3622,15,4,f +10958,3622,4,4,f +10958,3626bpx19,14,2,f +10958,3633,15,4,f +10958,3660,14,4,f +10958,3665,14,2,f +10958,3666,14,2,f +10958,3666,4,2,f +10958,3679,7,1,f +10958,3680,1,1,f +10958,3710,1,2,f +10958,3730,4,1,f +10958,3731,4,1,f +10958,3741,2,2,f +10958,3742,1,3,f +10958,3742,1,1,t +10958,3742,14,3,f +10958,3742,14,1,t +10958,3747b,1,4,f +10958,3795,14,2,f +10958,3795,1,2,f +10958,3823,41,2,f +10958,3829c01,4,2,f +10958,3853,1,3,f +10958,3854,14,6,f +10958,3856,2,6,f +10958,3857,2,2,f +10958,3861b,14,2,f +10958,3899,15,2,f +10958,3937,14,2,f +10958,3957a,15,2,f +10958,3960p03,15,1,f +10958,3962b,0,1,f +10958,4070,4,2,f +10958,4079,4,2,f +10958,4175,14,2,f +10958,4286,1,4,f +10958,4287,1,4,f +10958,4485,0,1,f +10958,4495b,4,2,f +10958,4589,1,4,f +10958,6041,0,2,f +10958,6064,2,1,f +10958,6131,2,1,f +10958,6134,4,2,f +10958,6248,4,6,f +10958,6249,8,2,f +10958,6255,2,2,f +10958,970c00,2,1,f +10958,970c00,15,1,f +10958,973px33c01,15,1,f +10958,973px39c01,2,1,f +10961,3652,7,4,f +10961,3679,7,20,f +10961,3680,1,20,f +10961,3830,1,2,f +10961,3831,1,2,f +10961,3937,1,12,f +10961,3938,1,12,f +10961,3956,1,8,f +10961,4032a,4,8,f +10961,9244,7,8,f +10964,32054,4,100,f +10965,2357,15,2,f +10965,2357,0,2,f +10965,2412b,72,1,f +10965,2412b,15,2,f +10965,2431,72,7,f +10965,2456,0,1,f +10965,2460,72,1,f +10965,2465,4,2,f +10965,2540,2,1,f +10965,2555,0,11,f +10965,2741,0,1,f +10965,2780,0,1,t +10965,2780,0,2,f +10965,3002,1,1,f +10965,3002,0,1,f +10965,3009,15,1,f +10965,3020,0,1,f +10965,3020,15,1,f +10965,3021,15,2,f +10965,3023,15,2,f +10965,3023,36,3,f +10965,3023,2,4,f +10965,30236,0,6,f +10965,3032,2,1,f +10965,3032,0,1,f +10965,3034,15,4,f +10965,3035,15,2,f +10965,30357,2,2,f +10965,30383,15,2,f +10965,30391,0,4,f +10965,30414,4,2,f +10965,3068b,0,7,f +10965,3069b,0,2,f +10965,3069b,2,4,f +10965,32001,71,2,f +10965,32062,0,1,f +10965,32123b,71,1,t +10965,32123b,71,2,f +10965,3460,4,2,f +10965,3460,2,2,f +10965,3460,15,3,f +10965,3622,15,2,f +10965,3623,15,8,f +10965,3666,0,4,f +10965,3666,15,6,f +10965,3701,15,1,f +10965,3709,4,1,f +10965,3710,2,2,f +10965,3710,4,1,f +10965,3710,0,4,f +10965,3710,15,1,f +10965,3737,0,1,f +10965,3738,4,1,f +10965,3749,19,1,f +10965,3795,15,6,f +10965,3795,2,2,f +10965,3839b,72,1,f +10965,3839b,0,2,f +10965,4070,4,2,f +10965,42022,15,2,f +10965,44126,0,2,f +10965,44301a,15,2,f +10965,44302a,0,2,f +10965,44302a,15,2,f +10965,44728,0,1,f +10965,4477,4,2,f +10965,4477,0,2,f +10965,48336,15,7,f +10965,50950,15,4,f +10965,52031,2,1,f +10965,54200,36,2,f +10965,54200,36,1,t +10965,55982,15,4,f +10965,55982,0,4,f +10965,56891,0,4,f +10965,58122,71,1,f +10965,6081,15,2,f +10965,6091,15,2,f +10965,6091,4,2,f +10965,61073,15,1,f +10965,6112,15,2,f +10965,6141,47,2,t +10965,6141,36,4,f +10965,6141,36,1,t +10965,6141,47,9,f +10965,61678,2,4,f +10965,61678,4,2,f +10965,6180,4,1,f +10965,62360,0,1,f +10965,62361,15,8,f +10965,62701,4,4,f +10965,64766,71,1,f +10965,6553,0,2,f +10965,6632,0,1,f +10965,6636,4,1,f +10965,6636,15,2,f +10965,6636,2,3,f +10966,32062,0,1,f +10966,32062,0,1,t +10966,32073,71,1,f +10966,32174,0,6,f +10966,32523,0,1,f +10966,3706,0,1,f +10966,41668,0,2,f +10966,43093,1,1,t +10966,43093,1,1,f +10966,44807,0,1,f +10966,45425,135,1,f +10966,47300,72,4,f +10966,50899pr0002,135,1,f +10966,50900,72,1,f +10966,50901,72,1,f +10966,50903,14,1,f +10966,6536,0,1,f +10966,6632,25,4,f +10967,3176,4,2,f +10967,3492c01,14,1,f +10967,73037,1,1,f +10969,2446,8,1,f +10969,298c02,0,2,f +10969,298c02,0,1,t +10969,30035,0,1,f +10969,30090,33,1,f +10969,30093,2,1,f +10969,30151a,42,1,f +10969,3023,8,1,f +10969,30554a,8,4,f +10969,3626bpb0114,14,1,f +10969,3626bpr0190,15,1,f +10969,3839b,0,1,f +10969,3901,0,1,t +10969,4032a,2,1,f +10969,4032a,4,1,f +10969,4081b,0,2,f +10969,41525pb01,14,1,f +10969,41529,14,2,f +10969,41532,0,2,f +10969,4589,42,3,f +10969,6126a,57,1,f +10969,6141,42,2,f +10969,6141,42,1,t +10969,970c00pb028,272,1,f +10969,973pb0121c01,272,1,f +10970,2420,14,2,f +10970,2456,8,2,f +10970,2542,6,2,f +10970,2550c01,6,1,f +10970,3001,8,4,f +10970,3001,15,1,f +10970,3001,2,3,f +10970,3001,4,2,f +10970,3001p08,2,1,f +10970,3002,15,2,f +10970,3002,14,2,f +10970,3003,15,1,f +10970,3003,4,1,f +10970,3003,14,4,f +10970,3003,2,1,f +10970,3003,8,1,f +10970,3004,0,4,f +10970,3004,2,4,f +10970,3004,15,4,f +10970,3004,8,4,f +10970,3004,4,4,f +10970,3004,14,10,f +10970,3004p0a,2,1,f +10970,3005pe1,14,2,f +10970,3005pe1,8,2,f +10970,30076,0,1,f +10970,30076,4,1,f +10970,3008,14,2,f +10970,3009,14,3,f +10970,3009,0,2,f +10970,3010,2,2,f +10970,3010,15,2,f +10970,3010,0,1,f +10970,3010,14,2,f +10970,30176,2,2,f +10970,3020,4,3,f +10970,3020,2,2,f +10970,3020,7,3,f +10970,3020,14,4,f +10970,3021,14,2,f +10970,3021,15,2,f +10970,3021,0,2,f +10970,30285,14,4,f +10970,30285,15,4,f +10970,3030,1,2,f +10970,3034,2,1,f +10970,3034,4,1,f +10970,3039,8,4,f +10970,3039,4,2,f +10970,3039,2,5,f +10970,3039,14,6,f +10970,30391,0,8,f +10970,3245bpx3,4,1,f +10970,3297px5,14,1,f +10970,3297px9,15,1,f +10970,3298,2,2,f +10970,3307,14,2,f +10970,33303,15,2,f +10970,3622,0,2,f +10970,3622,2,2,f +10970,3622,14,4,f +10970,3660,4,2,f +10970,3660,8,4,f +10970,3660,14,7,f +10970,3666,8,2,f +10970,3747b,2,2,f +10970,3747b,14,3,f +10970,3747b,15,2,f +10970,3795,4,2,f +10970,3795,2,2,f +10970,3823,34,1,f +10970,3823,33,1,f +10970,3829c01,7,1,f +10970,3829c01,1,1,f +10970,3832,8,1,f +10970,3865,2,1,f +10970,3941,14,1,f +10970,3957a,383,2,f +10970,3957a,15,1,f +10970,3957a,0,1,f +10970,4083,1,2,f +10970,4083,383,1,f +10970,4286,8,2,f +10970,4286,7,2,f +10970,4286,14,2,f +10970,4287,8,2,f +10970,4495b,4,1,f +10970,4495b,14,1,f +10970,4617b,0,1,f +10970,4727,2,2,f +10970,4728,15,2,f +10970,4729,4,1,f +10970,6215,8,4,f +10970,6232,8,1,f +10970,82249,15,1,f +10970,cre004,9999,1,f +10970,cre005,9999,1,f +10974,2780,0,12,f +10974,2825,71,1,f +10974,2905,0,3,f +10974,30552,0,8,f +10974,30553,0,2,f +10974,30554a,0,6,f +10974,32002,72,3,f +10974,32039,0,12,f +10974,32062,4,24,f +10974,32073,71,4,f +10974,32123b,71,10,f +10974,32138,0,2,f +10974,32140,14,2,f +10974,32177,72,6,f +10974,32184,0,8,f +10974,32250,14,6,f +10974,32316,0,1,f +10974,32449,14,8,f +10974,32524,14,4,f +10974,32557,14,4,f +10974,3705,0,12,f +10974,3713,71,2,f +10974,41239,0,6,f +10974,41669,135,4,f +10974,41677,0,4,f +10974,41678,14,4,f +10974,42003,14,6,f +10974,42003,71,2,f +10974,43093,1,13,f +10974,44294,71,4,f +10974,44809,0,4,f +10974,4519,71,23,f +10974,45274,135,1,f +10974,47298,191,6,f +10974,47312,72,1,f +10974,47330,0,1,f +10974,49423,0,2,f +10974,50921,72,2,f +10974,50923,72,2,f +10974,53542,191,3,f +10974,53543,297,3,f +10974,53548,191,2,f +10974,53585,0,10,f +10974,53586,135,6,f +10974,55013,72,6,f +10974,57536,42,1,f +10974,57544,191,2,f +10974,57565,14,2,f +10974,57572,135,1,f +10974,58177,0,1,f +10974,59443,14,3,f +10974,60176,191,21,f +10974,60176,0,2,f +10974,60483,72,4,f +10974,60896,0,2,f +10974,60936,297,1,f +10974,61799,135,2,f +10974,61805,14,4,f +10974,61805,135,1,f +10974,62462,14,4,f +10974,63869,71,3,f +10974,64275,135,2,f +10974,64276,0,2,f +10974,64277c01,297,1,f +10974,64299,191,3,f +10974,64889pr0001,135,2,f +10974,6536,0,2,f +10974,6536,71,1,f +10974,6553,71,1,f +10974,6558,1,29,f +10974,6575,0,2,f +10974,6587,72,2,f +10974,6632,14,2,f +10974,6632,0,8,f +10980,3020,15,1,f +10980,3020,1,1,f +10980,3023,1,1,f +10980,3034,1,1,f +10980,3062b,1,4,f +10980,3070b,36,2,f +10980,3626apr0001,14,1,f +10980,3666,1,2,f +10980,3710,15,2,f +10980,3710,1,2,f +10980,3794a,1,1,f +10980,3795,1,1,f +10980,3829c01,1,1,f +10980,3838,4,1,f +10980,3839b,15,2,f +10980,3839b,1,1,f +10980,3842a,4,1,f +10980,3937,15,2,f +10980,3938,15,2,f +10980,3957a,36,2,f +10980,3957a,1,2,f +10980,3959,1,2,f +10980,4032a,15,2,f +10980,4070,1,2,f +10980,4081a,1,2,f +10980,4081a,15,2,f +10980,4085a,15,2,f +10980,4085a,1,2,f +10980,4162,1,2,f +10980,4286,15,2,f +10980,4349,15,2,f +10980,4475,1,1,f +10980,4588,15,3,f +10980,4590,1,1,f +10980,4596,1,5,f +10980,4596,15,2,f +10980,6141,36,2,f +10980,970c00,4,1,f +10980,973p90c02,4,1,f +10981,2412b,71,9,f +10981,2412b,36,1,f +10981,2431,72,1,f +10981,2431,27,4,f +10981,3004,15,6,f +10981,3005,15,2,f +10981,3008,15,2,f +10981,3010,15,4,f +10981,3020,15,1,f +10981,3022,1,1,f +10981,3023,47,1,f +10981,3023,15,2,f +10981,3023,27,7,f +10981,3024,182,4,f +10981,3024,36,6,f +10981,3024,15,2,f +10981,3034,15,2,f +10981,3038,15,2,f +10981,30414,1,1,f +10981,30602,15,1,f +10981,3068b,71,1,f +10981,3069b,27,3,f +10981,3622,15,6,f +10981,3626bpr0499,14,1,f +10981,3626bpr0892,14,1,f +10981,3665,15,6,f +10981,3666,27,5,f +10981,3666,15,2,f +10981,3710,15,1,f +10981,3710,27,3,f +10981,3795,72,1,f +10981,3821,15,1,f +10981,3822,15,1,f +10981,3829c01,1,1,f +10981,3830,15,2,f +10981,3831,15,2,f +10981,3899,4,2,f +10981,3958,27,1,f +10981,4079,14,3,f +10981,4176,40,1,f +10981,4286,15,2,f +10981,44728,15,1,f +10981,4488,71,4,f +10981,4528,0,1,f +10981,4719,4,1,f +10981,48336,71,2,f +10981,4864b,40,4,f +10981,50745,72,4,f +10981,52037,72,1,f +10981,54200,46,2,f +10981,54200,46,1,t +10981,6014b,15,4,f +10981,60470a,15,2,f +10981,60475a,15,2,f +10981,60476,71,2,f +10981,60594,15,1,f +10981,60700,0,4,f +10981,6075,14,1,f +10981,6081,15,4,f +10981,6091,15,4,f +10981,6091,72,2,f +10981,61484,15,1,f +10981,62113,72,1,f +10981,6231,15,2,f +10981,62810,0,1,f +10981,64648,135,1,f +10981,7639stk01,9999,1,t +10981,85974,70,1,f +10981,92851,47,2,f +10981,970c00,1,1,f +10981,970c00,272,1,f +10981,973pr1204c01,15,1,f +10981,973pr1485c01,4,1,f +10982,2412b,135,2,f +10982,2412b,72,6,f +10982,2420,0,2,f +10982,2431,0,4,f +10982,2431,4,3,f +10982,2432,4,2,f +10982,2445,0,3,f +10982,2450,0,2,f +10982,2458,4,4,f +10982,2654,0,2,f +10982,3001,71,1,f +10982,3001,73,2,f +10982,3003,72,1,f +10982,3004,4,6,f +10982,3004,73,4,f +10982,3004,15,1,f +10982,3005,15,6,f +10982,3009,15,1,f +10982,3020,71,1,f +10982,3020,4,5,f +10982,3020,0,1,f +10982,3021,4,2,f +10982,3021,0,2,f +10982,3022,4,2,f +10982,3022,0,5,f +10982,3023,0,6,f +10982,3023,15,4,f +10982,3023,4,2,f +10982,3024,36,2,f +10982,3024,19,4,f +10982,3024,47,4,f +10982,3024,182,4,f +10982,3031,0,1,f +10982,3032,0,3,f +10982,3033,4,1,f +10982,3034,4,2,f +10982,3034,0,2,f +10982,3040b,4,2,f +10982,30414,4,5,f +10982,3062b,15,4,f +10982,30663,0,1,f +10982,3068b,73,3,f +10982,3070b,0,2,f +10982,3070b,4,2,f +10982,3070b,0,1,t +10982,3070b,4,1,t +10982,3460,0,2,f +10982,3622,0,2,f +10982,3622,4,2,f +10982,3623,0,4,f +10982,3660,4,8,f +10982,3666,19,8,f +10982,3666,15,1,f +10982,3710,71,4,f +10982,3710,4,3,f +10982,3710,0,4,f +10982,3794b,19,1,f +10982,3832,4,2,f +10982,3937,4,2,f +10982,3937,71,4,f +10982,3938,0,2,f +10982,4085c,15,2,f +10982,4085c,4,4,f +10982,4162,4,1,f +10982,41769,4,3,f +10982,41770,4,3,f +10982,4215b,47,1,f +10982,44728,0,2,f +10982,4477,4,1,f +10982,48336,4,2,f +10982,48336,0,2,f +10982,4865a,0,3,f +10982,50950,4,2,f +10982,50950,15,2,f +10982,54200,4,1,t +10982,54200,47,6,f +10982,54200,4,10,f +10982,54200,15,2,f +10982,54200,0,2,f +10982,54200,47,1,t +10982,54200,15,1,t +10982,54200,0,1,t +10982,55981,71,4,f +10982,58090,0,4,f +10982,58181,47,1,f +10982,6019,0,2,f +10982,60478,4,2,f +10982,6091,4,2,f +10982,6134,0,4,f +10982,61409,72,2,f +10982,6141,71,16,f +10982,6141,71,1,t +10982,61678,15,2,f +10982,61678,4,4,f +10982,6215,4,1,f +10982,6232,71,2,f +10982,6541,15,2,f +10982,6636,71,1,f +10982,6636,0,1,f +10982,87079,4,2,f +10982,87087,4,4,f +10982,88930,4,1,f +10983,2412b,0,1,f +10983,2446,15,1,f +10983,3039,1,1,f +10983,3069bp61,15,1,f +10983,3475b,0,2,f +10983,3626bp62,14,1,f +10983,3795,1,1,f +10983,3838,15,1,f +10983,3937,1,1,f +10983,3938,15,1,f +10983,4085c,15,2,f +10983,4349,0,1,f +10983,4859,15,1,f +10983,6117,57,1,f +10983,6119,57,1,f +10983,970x023,0,1,f +10983,973p62c01,0,1,f +10985,2570,8,1,f +10985,2586p4c,7,1,f +10985,2586p4d,15,2,f +10985,3068bp40,15,1,f +10985,3844,8,1,f +10985,3846p4d,15,2,f +10985,3847a,8,1,f +10985,3849,8,1,f +10985,3896,8,1,f +10985,3957a,0,2,f +10985,4495a,4,1,f +10985,4495a,15,1,f +10985,4497,6,1,f +10985,4498,6,1,f +10985,4499,6,1,f +10985,4503,0,1,f +10985,59,383,1,f +10985,6122,0,1,f +10985,6123,8,1,f +10985,6124,21,1,f +10985,6126a,57,2,f +10985,6131,1,1,f +10985,6132,15,1,f +10985,71015,334,1,f +10985,87685,4,1,f +10985,87686,4,1,f +10985,87687,4,1,f +10985,87692,15,1,f +10985,87693,15,1,f +10985,87694,15,1,f +10987,3038,4,8,f +10987,3040a,4,9,f +10987,3042,4,2,f +10987,3044a,4,2,f +10988,10247,14,4,f +10988,10288,308,1,f +10988,10314,14,2,f +10988,11153,14,2,f +10988,11215,71,1,f +10988,11477,14,2,f +10988,13731,71,2,f +10988,14301,71,1,f +10988,15207,14,2,f +10988,15303,35,6,f +10988,15400,72,2,f +10988,15462,28,1,f +10988,15573,4,2,f +10988,2357,14,2,f +10988,2412b,0,3,f +10988,2412b,72,8,f +10988,2420,14,2,f +10988,2431,71,1,f +10988,2496,0,2,f +10988,2516,14,1,f +10988,2655,71,2,f +10988,2780,0,1,t +10988,2780,0,4,f +10988,298c02,71,1,t +10988,298c02,71,4,f +10988,3001,19,1,f +10988,3005,1,2,f +10988,3009,28,2,f +10988,3009,14,2,f +10988,30134,0,1,f +10988,30150,14,1,f +10988,30162,72,4,f +10988,30170,72,2,t +10988,30170,72,2,f +10988,30171,70,2,f +10988,3020,14,6,f +10988,3020,72,5,f +10988,3020,71,3,f +10988,3021,71,2,f +10988,3021,14,1,f +10988,3022,71,4,f +10988,3023,72,13,f +10988,3023,14,9,f +10988,3023,71,2,f +10988,3024,46,2,f +10988,3024,46,1,t +10988,3024,14,2,f +10988,3024,14,1,t +10988,30259,70,4,f +10988,3034,71,1,f +10988,30355,71,1,f +10988,30356,71,1,f +10988,30361pr1001,15,1,f +10988,30362,15,2,f +10988,30367c,72,2,f +10988,30367cpr1001,179,1,f +10988,30374,41,1,f +10988,30375,19,2,f +10988,30375pr0001,19,1,f +10988,30376,19,3,f +10988,30377,19,1,t +10988,30377,71,1,t +10988,30377,71,4,f +10988,30377,19,3,f +10988,30378,19,2,f +10988,30378pr0001,19,1,f +10988,30552,72,1,f +10988,3062b,14,1,f +10988,3065,34,1,f +10988,3068b,70,1,f +10988,3069b,71,1,f +10988,3069b,70,2,f +10988,3069bpr0101,71,1,f +10988,3176,72,1,f +10988,32001,71,1,f +10988,32059,71,2,f +10988,32062,0,1,f +10988,32064a,4,4,f +10988,32073,71,1,f +10988,32123b,14,1,t +10988,32123b,14,1,f +10988,3298,72,1,f +10988,3460,71,5,f +10988,3622,14,2,f +10988,3623,14,2,f +10988,3623,72,2,f +10988,3626cpr1517,78,1,f +10988,3626cpr1709,78,1,f +10988,3626cpr1710,78,1,f +10988,3648b,72,2,f +10988,3660,71,7,f +10988,3665,71,2,f +10988,3666,0,2,f +10988,3666,14,2,f +10988,3700,14,1,f +10988,3700,72,3,f +10988,3701,71,2,f +10988,3706,0,2,f +10988,3708,0,2,f +10988,3709,72,1,f +10988,3710,14,1,f +10988,3710,72,1,f +10988,3713,4,1,f +10988,3713,4,1,t +10988,3738,72,1,f +10988,3747b,71,2,f +10988,3749,19,1,f +10988,3795,0,5,f +10988,3832,14,2,f +10988,3901,484,1,f +10988,3941,14,2,f +10988,3942c,14,3,f +10988,3942c,71,2,f +10988,3958,71,1,f +10988,40233,28,1,f +10988,4032a,14,1,f +10988,4032a,70,3,f +10988,4070,14,4,f +10988,4070,72,2,f +10988,41531,71,4,f +10988,41539,72,1,f +10988,41747,14,1,f +10988,41748,14,1,f +10988,41764,71,4,f +10988,41765,71,4,f +10988,41769,14,1,f +10988,41770,14,1,f +10988,4185,14,2,f +10988,4185,41,2,f +10988,41879a,19,1,f +10988,42023,72,4,f +10988,4286,14,2,f +10988,43093,1,4,f +10988,43712,14,1,f +10988,43713,71,1,f +10988,43719,14,2,f +10988,44302a,14,1,f +10988,4477,19,2,f +10988,4595,71,2,f +10988,4697b,71,1,t +10988,4697b,71,2,f +10988,47397,71,1,f +10988,47398,71,1,f +10988,4865b,72,2,f +10988,50231,70,1,f +10988,50304,14,1,f +10988,50305,14,1,f +10988,50373,14,1,f +10988,50955,71,1,f +10988,50956,71,1,f +10988,51739,72,3,f +10988,51739,71,1,f +10988,53451,179,1,t +10988,53451,179,6,f +10988,54383,71,2,f +10988,54384,71,2,f +10988,58176,36,2,f +10988,58247,0,3,f +10988,59230,19,1,t +10988,59230,19,3,f +10988,59443,4,4,f +10988,59900,14,3,f +10988,60208,14,4,f +10988,60208,71,2,f +10988,60470b,0,4,f +10988,60474,72,2,f +10988,60478,72,4,f +10988,60897,72,1,f +10988,60897,71,4,f +10988,6091,14,4,f +10988,6141,34,6,f +10988,6141,70,4,f +10988,6141,70,1,t +10988,6141,71,6,f +10988,6141,71,1,t +10988,6141,34,1,t +10988,61482,71,1,f +10988,61482,71,1,t +10988,61485,0,1,f +10988,61903,71,1,f +10988,6233,14,2,f +10988,6233,71,2,f +10988,63864,1,2,f +10988,63965,14,4,f +10988,64567,80,1,f +10988,64567,80,1,t +10988,6541,2,6,f +10988,6558,1,4,f +10988,6587,28,2,f +10988,6636,72,2,f +10988,75937,179,2,f +10988,87079,71,4,f +10988,87081,72,1,f +10988,87580,71,1,f +10988,87994,71,1,t +10988,87994,71,1,f +10988,88646,0,1,f +10988,90258,72,1,f +10988,92279,40,1,f +10988,92280,71,2,f +10988,92738,0,3,f +10988,93273,70,2,f +10988,93273,14,2,f +10988,95199,72,4,f +10988,96874,25,1,t +10988,970c00,320,1,f +10988,970c00pr0510,19,1,f +10988,973pr2095c01,19,1,f +10988,973pr3066c01,19,1,f +10988,973pr3067c01,84,1,f +10988,98138,179,1,f +10988,98138,179,1,t +10988,98313,148,6,f +10988,99780,71,5,f +10990,2340,0,2,f +10990,2419,0,2,f +10990,2433,0,2,f +10990,2446,0,1,f +10990,2447,0,1,f +10990,3023,15,2,f +10990,3626apr0001,14,1,f +10990,3710,15,1,f +10990,3838,0,1,f +10990,3937,0,4,f +10990,3938,15,4,f +10990,4276b,15,2,f +10990,4595,15,2,f +10990,4598,0,1,f +10990,4740,36,2,f +10990,6141,36,2,f +10990,970c00,0,1,f +10990,973p52c01,0,1,f +10992,2,15,3,f +10992,3,4,6,f +10992,3001a,15,5,f +10992,3002a,15,3,f +10992,3003,0,3,f +10992,3003,14,1,f +10992,3003,4,4,f +10992,3003,1,2,f +10992,3003,15,2,f +10992,3004,1,2,f +10992,3005,4,6,f +10992,3005,47,1,f +10992,3005,15,10,f +10992,3005,14,3,f +10992,3005,1,2,f +10992,3008,4,4,f +10992,3008,14,5,f +10992,3009,4,2,f +10992,3009,14,10,f +10992,3009,15,4,f +10992,3010,14,6,f +10992,3010,15,8,f +10992,3010,1,13,f +10992,3010,4,2,f +10992,3010p41,15,1,f +10992,3021,1,2,f +10992,3022,15,1,f +10992,3022,0,1,f +10992,3022,1,2,f +10992,3022,4,1,f +10992,3024,15,2,f +10992,3031,15,2,f +10992,3031,1,2,f +10992,3032,1,1,f +10992,3033,4,2,f +10992,3035,15,1,f +10992,3036,4,1,f +10992,3040b,1,2,f +10992,3040b,15,2,f +10992,3062a,47,2,f +10992,3062a,1,8,f +10992,3062a,4,4,f +10992,3062a,15,2,f +10992,3068b,15,24,f +10992,3068b,4,38,f +10992,3068b,1,6,f +10992,3068bp17,15,4,f +10992,3069b,1,15,f +10992,3069b,15,18,f +10992,3069b,4,5,f +10992,3070b,4,2,f +10992,3307,4,2,f +10992,3460,0,5,f +10992,3471,2,1,f +10992,3612,15,2,f +10992,3612,4,2,f +10992,3613,15,2,f +10992,3613,4,2,f +10992,3614b,14,4,f +10992,3622,14,11,f +10992,3623,0,4,f +10992,3626a,47,2,f +10992,3659,1,4,f +10992,3660,15,1,f +10992,3666,0,11,f +10992,3684,1,2,f +10992,3710,0,5,f +10992,3741,2,12,f +10992,3742,15,14,f +10992,3742,14,8,f +10992,3742,4,2,t +10992,3742,4,14,f +10992,3742,15,2,t +10992,3754,14,28,f +10992,3755,14,18,f +10992,3761,6,4,f +10992,3762,47,4,f +10992,3794a,15,4,f +10992,3794a,4,5,f +10992,3811,6,2,f +10992,3830,14,2,f +10992,3831,14,2,f +10992,670,6,2,f +10992,671,4,2,f +10992,678,4,4,f +10992,679,6,4,f +10992,685p01,14,1,f +10992,685px5,14,1,f +10992,69c02,1,1,f +10992,791,2,8,f +10992,792c03,15,1,f +10992,792c03,4,1,f +10992,837,15,2,f +10992,838,4,3,f +10992,839,15,1,f +10992,840c01,15,1,f +10992,841,15,1,f +10992,842,15,1,f +10992,843,4,1,f +10992,x196,0,1,f +10992,x197,6,1,f +10994,99498,71,1,f +10996,3470,2,2,f +10996,3471,2,2,f +10996,3741,2,4,f +10996,3742,4,8,f +10996,3742,15,4,f +10996,3742,14,4,f +10998,2335,15,3,f +10998,2335p04,15,1,f +10998,2335p30,15,1,f +10998,2339,0,2,f +10998,2345,0,2,f +10998,2345p03,0,3,f +10998,2357,0,1,f +10998,2419,7,1,f +10998,2420,0,2,f +10998,2420,7,3,f +10998,2432,7,1,f +10998,2449,0,1,f +10998,2454a,7,2,f +10998,2454a,0,3,f +10998,2460,0,1,f +10998,2462,0,7,f +10998,2462,7,2,f +10998,2465,0,4,f +10998,2489,6,1,f +10998,2518,2,10,f +10998,2524,6,1,f +10998,2525p31,15,1,f +10998,2526,4,1,f +10998,2526,14,1,f +10998,2526,6,1,f +10998,2527,6,1,f +10998,2528pb01,0,1,f +10998,2530,8,5,f +10998,2536,6,7,f +10998,2541,6,2,f +10998,2542,6,3,f +10998,2543,4,2,f +10998,2543,1,1,f +10998,2544,6,1,f +10998,2544,0,1,f +10998,2545,0,1,f +10998,2546p01,4,1,f +10998,2547,8,1,f +10998,2548,8,1,f +10998,2549,6,2,f +10998,2550c01,6,1,f +10998,2551,4,1,f +10998,2552px4,7,1,f +10998,2555,0,6,f +10998,2561,6,2,f +10998,2562,6,5,f +10998,2563,6,1,f +10998,2566,2,1,f +10998,2639,7,1,f +10998,2719,7,1,f +10998,3001,0,2,f +10998,3002,7,1,f +10998,3002,0,4,f +10998,3003,0,7,f +10998,3004,7,10,f +10998,3004,0,17,f +10998,3005,7,3,f +10998,3005,0,12,f +10998,3006,0,1,f +10998,3008,0,2,f +10998,3009,0,6,f +10998,3010,0,3,f +10998,3020,7,2,f +10998,3020,0,1,f +10998,3022,7,2,f +10998,3022,0,6,f +10998,3023,7,7,f +10998,3023,0,1,f +10998,3024,36,1,f +10998,3024,0,2,f +10998,3029,2,1,f +10998,3035,0,2,f +10998,3036,0,1,f +10998,3036,7,3,f +10998,3040b,0,7,f +10998,3062b,2,1,f +10998,3062b,0,7,f +10998,3068bp30,15,1,f +10998,3185,0,1,f +10998,3308,7,1,f +10998,3308,0,1,f +10998,3455,7,1,f +10998,3455,0,2,f +10998,3460,0,4,f +10998,3460,7,1,f +10998,3622,0,11,f +10998,3622,7,3,f +10998,3626apb03,14,1,f +10998,3626apb04,14,2,f +10998,3626apb05,14,1,f +10998,3626apb06,14,1,f +10998,3626apr0001,14,1,f +10998,3626apx2,14,1,f +10998,3633,0,1,f +10998,3659,0,1,f +10998,3660,0,6,f +10998,3666,7,1,f +10998,3666,0,1,f +10998,3679,7,1,f +10998,3680,0,1,f +10998,3685,7,1,f +10998,3700,0,1,f +10998,3710,7,2,f +10998,3710,0,3,f +10998,3737,0,2,f +10998,3794a,7,2,f +10998,3832,0,1,f +10998,3849,8,1,f +10998,3849,6,2,f +10998,3857,1,1,f +10998,3894,0,2,f +10998,3937,0,1,f +10998,3938,0,1,f +10998,3941,6,10,f +10998,3957a,7,4,f +10998,3957a,0,1,f +10998,3959,7,4,f +10998,4032a,2,1,f +10998,4032a,6,9,f +10998,4070,0,4,f +10998,4071,0,1,f +10998,4081b,0,2,f +10998,4085c,7,2,f +10998,4085c,0,1,f +10998,4151a,0,1,f +10998,4162,0,1,f +10998,4275b,7,1,f +10998,4276b,7,1,f +10998,4318,0,1,f +10998,4319,0,1,f +10998,4444,0,3,f +10998,4460a,0,2,f +10998,4477,7,1,f +10998,4477,0,2,f +10998,4495a,15,1,f +10998,4504,7,2,f +10998,4528,0,1,f +10998,4589,0,1,f +10998,4589,7,1,f +10998,4589,46,4,f +10998,4600,0,2,f +10998,4611,8,1,f +10998,4624,7,4,f +10998,4738a,6,1,f +10998,4739a,6,1,f +10998,4784,8,1,f +10998,4873,0,2,f +10998,56823c50,0,1,f +10998,57503,334,1,f +10998,57504,334,1,f +10998,57505,334,1,f +10998,57506,334,1,f +10998,6019,7,4,f +10998,6019,0,1,f +10998,6141,14,2,f +10998,6141,0,2,f +10998,84943,8,1,f +10998,970c00,7,1,f +10998,970c00,15,5,f +10998,970d01,0,1,f +10998,973p31c01,14,1,f +10998,973p32c01,14,1,f +10998,973p34c01,1,1,f +10998,973p36c01,0,1,f +10998,973p38c01,15,1,f +10998,973pb0204c01,15,2,f +10998,sailbb27,15,1,f +10999,2357,0,3,f +10999,2357,7,4,f +10999,2412b,2,2,f +10999,2431,4,1,f +10999,2453a,19,2,f +10999,2454a,0,1,f +10999,2458,2,1,f +10999,2460,7,1,f +10999,2465,8,1,f +10999,2476a,8,1,f +10999,2540,0,5,f +10999,2921,2,2,f +10999,3003,0,23,f +10999,3004,0,8,f +10999,3004,8,15,f +10999,30041,8,1,f +10999,30042,8,1,f +10999,3005,7,2,f +10999,3005,0,4,f +10999,3005,8,4,f +10999,3008,8,1,f +10999,3009,2,1,f +10999,30103,0,2,f +10999,30157,8,1,f +10999,30176,2,3,f +10999,3021,0,1,f +10999,3023,7,8,f +10999,30238,0,2,f +10999,30239,2,2,f +10999,3024,19,4,f +10999,30240,7,2,f +10999,3036,8,2,f +10999,30374,6,1,f +10999,30374,19,1,f +10999,30374,7,1,f +10999,30374px1,484,1,f +10999,30374px1,484,1,t +10999,3039,8,7,f +10999,3040b,2,6,f +10999,3040b,19,10,f +10999,30614,378,1,f +10999,3062b,0,2,f +10999,3068b,7,5,f +10999,3307,0,6,f +10999,3308,19,2,f +10999,3622,0,5,f +10999,3623,0,2,f +10999,3626bpb0006,14,1,f +10999,3626bpb0009,14,1,f +10999,3626bph1,14,1,f +10999,3660,8,2,f +10999,3665,8,14,f +10999,3666,0,1,f +10999,3673,7,1,f +10999,3700,7,3,f +10999,3710,2,1,f +10999,3794a,8,2,f +10999,3830,7,2,f +10999,3831,7,2,f +10999,40233,0,1,f +10999,40240,366,1,f +10999,40241,6,1,f +10999,40242,19,1,f +10999,40243,7,16,f +10999,40244,0,2,f +10999,40245c00,6,1,f +10999,40251,6,1,f +10999,4201,8,2,f +10999,4204,8,1,f +10999,4738a,6,1,f +10999,4739a,6,1,f +10999,50231,110,1,f +10999,50231px1,0,2,f +10999,6108,0,2,f +10999,6126a,57,4,f +10999,6126a,41,1,f +10999,62808,7,2,f +10999,970c00,7,3,f +10999,973px146c01,7,3,f +11000,2432,0,1,f +11000,2446px2,15,1,f +11000,2447,34,1,t +11000,2447,34,1,f +11000,30187a,15,1,f +11000,30189,15,1,f +11000,30190,15,1,f +11000,3023,0,1,f +11000,3062b,33,1,f +11000,3070b,36,1,t +11000,3070b,46,1,f +11000,3070b,36,1,f +11000,3626bp04,14,1,f +11000,3957a,7,1,f +11000,3962b,0,1,f +11000,4085c,7,1,f +11000,4599a,0,1,f +11000,6014a,15,2,f +11000,6015,0,3,f +11000,6019,7,1,f +11000,6141,46,1,t +11000,6141,46,1,f +11000,970c00,0,1,f +11000,973px9c01,0,1,f +11001,3706,0,50,f +11002,10201,70,4,f +11002,11062,15,1,f +11002,11100,71,2,f +11002,11211,272,3,f +11002,11211,71,1,f +11002,11213,71,2,f +11002,11476,0,2,f +11002,11477,70,2,f +11002,11477,28,1,f +11002,11477,72,2,f +11002,12939,15,6,f +11002,13965,70,4,f +11002,13965,15,2,f +11002,14226c41,0,1,f +11002,14395,72,2,f +11002,14707,15,2,f +11002,14719,272,2,f +11002,14719,71,19,f +11002,14719,15,5,f +11002,14769pr0001,15,4,f +11002,15068,0,2,f +11002,15254,71,4,f +11002,15332,0,3,f +11002,15462,28,1,f +11002,15470,179,1,t +11002,15470,179,16,f +11002,15500,19,1,f +11002,15535,72,2,f +11002,15573,28,2,f +11002,15573,71,1,f +11002,15573,15,2,f +11002,15573,70,3,f +11002,15573,0,8,f +11002,15573,72,6,f +11002,15619,0,1,t +11002,15619,0,1,f +11002,15712,70,1,f +11002,15712,72,20,f +11002,15712,0,3,f +11002,18649,0,1,f +11002,19118,71,2,f +11002,19119,2,1,f +11002,19121,0,2,f +11002,20309,378,4,f +11002,20310,297,4,f +11002,20482,297,1,t +11002,20482,297,1,f +11002,20877,484,1,f +11002,22385,379,4,f +11002,22385,71,4,f +11002,22885,71,24,f +11002,2357,72,23,f +11002,2357,15,12,f +11002,2357,71,1,f +11002,2412b,80,4,f +11002,2412b,0,16,f +11002,2412b,71,19,f +11002,2420,15,12,f +11002,2420,28,2,f +11002,2420,72,23,f +11002,2420,70,1,f +11002,2423,2,3,f +11002,2431,71,29,f +11002,2431,72,1,f +11002,2431,272,2,f +11002,2431,0,1,f +11002,2445,72,2,f +11002,2445,15,2,f +11002,2453b,70,3,f +11002,2453b,15,2,f +11002,2454a,15,4,f +11002,2540,0,4,f +11002,2546,72,1,f +11002,2566,0,1,f +11002,2736,71,1,f +11002,2780,0,1,t +11002,2780,0,4,f +11002,2877,19,3,f +11002,2877,15,18,f +11002,2921,25,1,f +11002,3003,15,3,f +11002,3004,72,19,f +11002,3004,2,5,f +11002,3004,71,8,f +11002,3004,288,6,f +11002,3004,70,3,f +11002,3004,15,16,f +11002,3005,70,5,f +11002,3005,379,15,f +11002,3005,47,2,f +11002,3005,72,28,f +11002,3005,15,10,f +11002,3005,71,6,f +11002,3008,72,18,f +11002,3008,71,4,f +11002,3008,15,20,f +11002,30089b,0,1,f +11002,3009,15,20,f +11002,3009,379,8,f +11002,3009,72,24,f +11002,3009,71,3,f +11002,3010,0,2,f +11002,3010,72,17,f +11002,3010,288,7,f +11002,3010,15,7,f +11002,3010,379,26,f +11002,30134,0,2,f +11002,30153,47,13,f +11002,30153,52,2,f +11002,3020,0,2,f +11002,3020,15,2,f +11002,3020,71,1,f +11002,3020,72,3,f +11002,3021,72,4,f +11002,3022,0,2,f +11002,3022,15,5,f +11002,3022,72,2,f +11002,3022,71,12,f +11002,30229,72,17,f +11002,3023,41,1,f +11002,3023,47,12,f +11002,3023,46,3,f +11002,3023,71,51,f +11002,3023,308,9,f +11002,3023,15,9,f +11002,3023,70,9,f +11002,3023,72,35,f +11002,3023,0,9,f +11002,3023,378,4,f +11002,3024,36,1,t +11002,3024,34,40,f +11002,3024,33,4,f +11002,3024,47,16,f +11002,3024,0,2,t +11002,3024,34,1,t +11002,3024,71,17,f +11002,3024,15,10,f +11002,3024,70,2,t +11002,3024,70,6,f +11002,3024,33,1,t +11002,3024,15,2,t +11002,3024,71,3,t +11002,3024,47,1,t +11002,3024,0,9,f +11002,3024,36,1,f +11002,3024,72,23,f +11002,3024,72,4,t +11002,3029,72,1,f +11002,3032,72,2,f +11002,3032,71,3,f +11002,3033,71,8,f +11002,3034,72,2,f +11002,3034,15,4,f +11002,30340,0,5,f +11002,3035,71,1,f +11002,3035,72,2,f +11002,3036,71,1,f +11002,3036,72,2,f +11002,3037,15,4,f +11002,3037,0,2,f +11002,30377,0,4,f +11002,30377,0,1,t +11002,3038,0,2,f +11002,30383,0,1,f +11002,3040b,71,6,f +11002,3040b,72,2,f +11002,3040b,28,3,f +11002,3040bpr0003,71,1,f +11002,30414,0,1,f +11002,30414,15,1,f +11002,3044c,72,1,f +11002,3046a,0,2,f +11002,3062b,297,2,f +11002,3062b,71,3,f +11002,3062b,72,6,f +11002,3068b,72,52,f +11002,3068b,28,1,f +11002,3068b,272,1,f +11002,3068b,19,4,f +11002,3068b,71,11,f +11002,3068b,15,10,f +11002,3068bpr0269,15,1,f +11002,3068bpr0273,70,1,f +11002,3068bpr0292,70,1,f +11002,3069b,0,3,f +11002,3069b,72,57,f +11002,3069b,15,20,f +11002,3069b,378,12,f +11002,3069b,71,17,f +11002,3069bpr0030,72,1,f +11002,3069bpr0055,15,1,f +11002,3069bpr0099,15,2,f +11002,3069bpr0100,2,7,f +11002,3070b,19,7,f +11002,3070b,19,1,t +11002,3070b,72,3,t +11002,3070b,71,1,t +11002,3070b,70,1,f +11002,3070b,28,22,f +11002,3070b,70,1,t +11002,3070b,72,19,f +11002,3070b,15,2,f +11002,3070b,71,1,f +11002,3070b,28,2,t +11002,3070b,15,1,t +11002,3176,72,2,f +11002,3185,0,1,f +11002,32013,0,1,f +11002,32013,72,1,f +11002,32028,72,2,f +11002,32028,28,4,f +11002,32028,15,1,f +11002,32028,71,7,f +11002,32039,71,1,f +11002,32123b,71,3,f +11002,32123b,71,1,t +11002,32124,0,1,f +11002,3245b,71,1,f +11002,32556,19,2,f +11002,3298,72,2,f +11002,33291,26,8,f +11002,33291,191,3,f +11002,33291,2,23,f +11002,33291,2,3,t +11002,33291,31,8,f +11002,33291,26,1,t +11002,33291,4,2,f +11002,33291,4,1,t +11002,33291,31,1,t +11002,33320,72,1,f +11002,3460,15,6,f +11002,3460,72,8,f +11002,3460,71,13,f +11002,3622,15,14,f +11002,3622,72,15,f +11002,3622,0,2,f +11002,3622,71,1,f +11002,3623,0,4,f +11002,3623,70,3,f +11002,3623,71,19,f +11002,3623,15,5,f +11002,3623,72,13,f +11002,3626c,143,1,f +11002,3626c,47,1,f +11002,3626cpr0001,14,5,f +11002,3633,0,2,f +11002,3659,71,1,f +11002,3660,0,5,f +11002,3660,15,9,f +11002,3665,15,5,f +11002,3665,72,8,f +11002,3666,15,5,f +11002,3666,72,8,f +11002,3666,70,3,f +11002,3666,71,21,f +11002,3666,28,1,f +11002,3676,15,4,f +11002,3678b,0,2,f +11002,3679,71,3,f +11002,3680,0,3,f +11002,3700,72,3,f +11002,3700,19,4,f +11002,3705,0,1,f +11002,3710,72,13,f +11002,3710,71,28,f +11002,3710,0,9,f +11002,3710,379,4,f +11002,3710,70,6,f +11002,3710,288,2,f +11002,3710,15,4,f +11002,3795,0,1,f +11002,3795,70,1,f +11002,3795,71,1,f +11002,3795,72,1,f +11002,3811,19,1,f +11002,3822,0,2,f +11002,3832,71,1,f +11002,3836,70,1,f +11002,3899,47,1,f +11002,3900,71,1,f +11002,3957b,0,1,f +11002,4032a,70,1,f +11002,4032a,71,3,f +11002,4070,15,10,f +11002,4070,0,1,f +11002,4070,71,14,f +11002,4070,19,4,f +11002,4070,72,7,f +11002,4070,70,9,f +11002,4079,288,2,f +11002,4079,14,1,f +11002,4081b,71,2,f +11002,4081b,0,2,f +11002,41334,0,1,f +11002,4161,0,1,f +11002,4162,72,11,f +11002,4162,0,2,f +11002,41879a,30,1,f +11002,4216,379,21,f +11002,42446,0,1,t +11002,42446,0,2,f +11002,4274,71,1,f +11002,4274,71,1,t +11002,4282,71,1,f +11002,4282,72,2,f +11002,43888,484,4,f +11002,43888,15,2,f +11002,43892,0,2,f +11002,44375b,71,1,f +11002,44728,70,1,f +11002,44728,71,2,f +11002,4477,0,1,f +11002,4477,71,2,f +11002,4490,15,5,f +11002,4510,15,1,f +11002,4510,71,8,f +11002,4536,84,2,f +11002,4590,72,1,f +11002,4600,0,1,f +11002,4733,0,1,f +11002,4740,0,3,f +11002,4740,15,1,f +11002,47905,19,1,f +11002,47905,71,4,f +11002,48336,71,1,f +11002,4865b,28,2,f +11002,4865b,40,1,f +11002,4865b,71,3,f +11002,48723,297,1,f +11002,50950,72,2,f +11002,52107,0,1,f +11002,54200,0,2,f +11002,54200,70,1,t +11002,54200,71,6,f +11002,54200,71,2,t +11002,54200,0,1,t +11002,54200,70,2,f +11002,54200,15,6,f +11002,54200,379,1,t +11002,54200,379,8,f +11002,54200,15,2,t +11002,57894,0,2,f +11002,57895,47,2,f +11002,57895pr0011,47,1,f +11002,57895pr0012,47,4,f +11002,59426,72,1,f +11002,59900,297,1,f +11002,59900,70,2,f +11002,59900,0,2,f +11002,6005,72,1,f +11002,6020,70,2,f +11002,60475b,0,1,f +11002,60478,0,2,f +11002,60479,72,2,f +11002,60479,15,3,f +11002,60481,0,9,f +11002,60581,72,3,f +11002,60592,19,2,f +11002,60592,0,1,f +11002,60592,70,3,f +11002,60593,378,34,f +11002,60593,70,1,f +11002,60594,70,1,f +11002,60596,379,3,f +11002,60596,0,8,f +11002,60601,47,3,f +11002,60602,47,35,f +11002,60603,47,1,f +11002,60616a,47,6,f +11002,60621,71,2,f +11002,60623,70,1,f +11002,60797c02,0,1,f +11002,60897,0,4,f +11002,60897,71,2,f +11002,60897,72,2,f +11002,6091,72,1,f +11002,6091,191,2,f +11002,6091,226,2,f +11002,6091,70,1,f +11002,6141,179,16,f +11002,6141,41,1,f +11002,6141,47,1,f +11002,6141,41,1,t +11002,6141,297,18,f +11002,6141,4,1,f +11002,6141,179,1,t +11002,6141,297,2,t +11002,6141,47,1,t +11002,6141,15,1,t +11002,6141,4,1,t +11002,6141,15,11,f +11002,6231,70,1,f +11002,62810,84,1,f +11002,63864,0,4,f +11002,63864,28,6,f +11002,63864,71,6,f +11002,63868,0,3,f +11002,63965,70,1,f +11002,64567,0,1,t +11002,64567,0,8,f +11002,64644,297,4,f +11002,64647,182,1,t +11002,64647,182,1,f +11002,6541,72,10,f +11002,6636,71,25,f +11002,6636,72,4,f +11002,6636,28,7,f +11002,6636,70,1,f +11002,73983,71,6,f +11002,85861,0,3,t +11002,85861,320,5,f +11002,85861,320,1,t +11002,85861,0,15,f +11002,85863,71,1,f +11002,85975,320,1,f +11002,85984,28,2,f +11002,85984,2,1,f +11002,85984,72,1,f +11002,85984,0,6,f +11002,87079,72,4,f +11002,87079,15,2,f +11002,87079,71,4,f +11002,87079,0,1,f +11002,87079pr0088,15,1,f +11002,87087,15,8,f +11002,87087,0,6,f +11002,87087,71,1,f +11002,87580,72,2,f +11002,87580,0,1,f +11002,87580,379,3,f +11002,87693,15,1,t +11002,87693,15,1,f +11002,87990,308,1,f +11002,87994,0,2,f +11002,87994,297,2,f +11002,87994,70,1,f +11002,87994,70,1,t +11002,87994,0,1,t +11002,87994,297,1,t +11002,88646,71,2,f +11002,88811,179,1,t +11002,88811,179,2,f +11002,91501,71,1,f +11002,91884,179,1,f +11002,92262,0,1,f +11002,92280,0,2,f +11002,92410,70,1,f +11002,92593,72,8,f +11002,92593,71,3,f +11002,92690,71,1,f +11002,92946,72,20,f +11002,92947,15,18,f +11002,93273,72,4,f +11002,93273,71,2,f +11002,95343,4,1,f +11002,95344,28,1,t +11002,95344,28,1,f +11002,96874,25,1,t +11002,96904,334,1,f +11002,96905,334,1,f +11002,96906,334,1,f +11002,96907,334,1,f +11002,970c00,322,1,f +11002,970c00,4,1,f +11002,970c00,71,1,f +11002,970c00,72,1,f +11002,970c00,27,1,f +11002,973pr1184c01,0,1,f +11002,973pr2084c01,71,1,f +11002,973pr2581c01,4,1,f +11002,973pr2875c01,2,1,f +11002,973pr3017c01,29,1,f +11002,98138,1,1,t +11002,98138,36,2,t +11002,98138,1,1,f +11002,98138,36,3,f +11002,98138pr0012,179,1,f +11002,98138pr0012,179,1,t +11002,98138pr0013,15,1,f +11002,98138pr0013,15,1,t +11002,98138pr0014,297,1,t +11002,98138pr0014,297,1,f +11002,98138pr0024a,179,1,t +11002,98138pr0024a,179,2,f +11002,98283,72,14,f +11002,98284,0,1,f +11002,98313,0,2,f +11002,99021,72,1,f +11002,99207,71,4,f +11002,99207,0,1,f +11002,99563,334,1,f +11002,99563,71,42,f +11002,99780,72,4,f +11002,99780,0,2,f +11002,99930,0,1,f +11003,11153,31,2,f +11003,11215,71,2,f +11003,11245pr0001,322,1,f +11003,11602pr0001b,15,1,f +11003,11618,26,1,f +11003,11618,26,1,t +11003,11816pr0005,78,1,f +11003,14248,9999,1,f +11003,2412b,15,2,f +11003,3004,15,3,f +11003,3005,272,4,f +11003,30089b,0,1,f +11003,30136,70,2,f +11003,3020,15,3,f +11003,3020,27,2,f +11003,3022,4,2,f +11003,3022,0,4,f +11003,3023,14,2,f +11003,3023,19,1,f +11003,3024,15,1,t +11003,3024,15,2,f +11003,3031,70,1,f +11003,3032,2,1,f +11003,3032,272,1,f +11003,3039,26,1,f +11003,3039,2,2,f +11003,3040b,322,2,f +11003,3062b,70,4,f +11003,3062b,33,1,f +11003,3062b,0,1,f +11003,3069b,26,1,f +11003,3069b,19,1,f +11003,3069bpr0130,322,1,f +11003,3245c,15,1,f +11003,33009,26,1,f +11003,33291,5,2,f +11003,33291,5,1,t +11003,3623,2,4,f +11003,3665,15,4,f +11003,3665,19,4,f +11003,3710,15,1,f +11003,3710,26,4,f +11003,3710,191,2,f +11003,3741,2,1,t +11003,3741,2,2,f +11003,3742,15,1,t +11003,3742,15,3,f +11003,3742,14,1,t +11003,3742,14,3,f +11003,3794b,15,2,f +11003,3795,27,1,f +11003,3795,31,4,f +11003,3829c01,15,1,f +11003,3832,0,1,f +11003,4081b,26,2,f +11003,42022,31,2,f +11003,4488,71,4,f +11003,50745,26,4,f +11003,50950,26,6,f +11003,54200,36,2,f +11003,54200,47,6,f +11003,54200,47,1,t +11003,54200,36,1,t +11003,59900,33,1,f +11003,60032,15,2,f +11003,6014b,15,4,f +11003,60481,19,2,f +11003,6141,47,1,t +11003,6141,2,1,t +11003,6141,47,4,f +11003,6141,4,1,t +11003,6141,2,3,f +11003,6141,4,1,f +11003,62360,47,1,f +11003,63864,72,2,f +11003,63868,15,2,f +11003,85984,191,3,f +11003,87079,26,2,f +11003,87079,191,1,f +11003,87697,0,4,f +11003,88930,31,1,f +11003,92258,0,1,f +11003,92456pr0036c01,78,1,f +11003,92818pr0002c01,26,1,f +11003,93095,15,2,f +11003,93273,272,2,f +11003,93274,72,2,f +11003,98549,71,1,f +11006,x946,0,2,f +11007,3003,0,2,f +11007,3004,0,2,f +11007,3021,14,4,f +11007,3022,14,4,f +11007,3023,14,16,f +11007,3031,14,2,f +11007,3032,14,2,f +11007,3033,14,2,f +11007,3065,34,2,f +11007,3065,46,2,f +11007,3065,36,2,f +11007,3069b,15,2,f +11007,3069b,4,2,f +11007,32001,14,2,f +11007,32009,14,2,f +11007,32013,1,2,f +11007,32015,7,2,f +11007,32017,7,2,f +11007,32034,7,1,f +11007,32064b,2,2,f +11007,3460,14,4,f +11007,3623,14,8,f +11007,3666,14,4,f +11007,3709,14,8,f +11007,3710,14,8,f +11007,3738,14,4,f +11007,3941,0,8,f +11007,3956,0,2,f +11007,4477,14,4,f +11007,6536,7,2,f +11007,6581,0,2,f +11007,6582,14,2,f +11007,6632,7,2,f +11007,75,1,2,f +11007,75535,14,2,f +11008,43093,1,1,f +11008,4740,47,1,t +11008,4740,47,1,f +11008,47430,2,2,f +11008,47431,2,2,f +11008,47432,2,2,f +11008,47452,72,2,f +11008,47454,72,2,f +11008,47455,320,10,f +11008,47456,2,2,f +11008,47457,2,4,f +11008,47457pb01,2,2,f +11008,47458,2,6,f +11008,47463,14,1,f +11008,47470,2,1,f +11008,47474,72,1,f +11008,47477c01pb03,2,1,f +11008,47501,2,4,f +11008,48079,89,1,f +11008,bb153pb03,72,1,f +11008,kkc28,89,1,f +11008,kkc31,89,1,f +11008,kkc33,89,1,f +11010,2339,308,6,f +11010,2343,297,1,f +11010,2417,288,6,f +11010,2431,70,3,f +11010,2445,0,1,f +11010,2456,0,1,f +11010,2508,0,1,f +11010,2654,72,2,f +11010,3003,70,1,f +11010,3004,15,8,f +11010,3004,4,2,f +11010,30044,70,1,f +11010,30046,0,1,f +11010,3007,19,1,f +11010,3009,4,6,f +11010,30136,308,2,f +11010,30153,36,1,f +11010,30153,34,1,f +11010,30176,2,1,f +11010,3020,4,1,f +11010,3021,70,4,f +11010,3023,70,3,f +11010,3023,15,6,f +11010,3023,28,6,f +11010,30237a,0,2,f +11010,30238,0,1,f +11010,30273,148,1,f +11010,30273,80,1,f +11010,3035,15,1,f +11010,3036,2,2,f +11010,30374,70,1,f +11010,3040b,308,6,f +11010,3040b,70,2,f +11010,30565,28,2,f +11010,3062b,70,11,f +11010,3062b,0,2,f +11010,3069b,70,2,f +11010,32013,72,2,f +11010,32073,71,1,f +11010,32316,0,2,f +11010,3245b,4,2,f +11010,32523,0,1,f +11010,32530,72,1,f +11010,33211,297,2,f +11010,33212,297,2,f +11010,3622,70,6,f +11010,3623,70,10,f +11010,3626bpr0410,14,1,f +11010,3626bpr0541,14,1,f +11010,3626bpr0642,14,1,f +11010,3626bpr0679,14,1,f +11010,3659,70,1,f +11010,3660,70,7,f +11010,3665,15,8,f +11010,3666,70,2,f +11010,3666,4,2,f +11010,3673,71,2,f +11010,3678b,70,5,f +11010,3747b,0,2,f +11010,3795,0,2,f +11010,3795,15,2,f +11010,3844,148,1,f +11010,3846pr0001a,71,2,f +11010,3848,72,2,f +11010,3941,15,2,f +11010,3941,70,2,f +11010,3957a,0,2,f +11010,4032a,72,3,f +11010,4032a,70,7,f +11010,4079,70,1,f +11010,4460b,70,4,f +11010,4495b,297,2,f +11010,4495b,4,2,f +11010,4497,148,1,f +11010,4738a,70,1,f +11010,4739a,70,1,f +11010,48336,0,1,f +11010,50231,320,1,f +11010,50950,15,4,f +11010,50950,297,4,f +11010,53705,148,1,f +11010,54200,70,1,t +11010,54200,70,6,f +11010,59,383,1,f +11010,59426,72,1,f +11010,59900,297,2,f +11010,59900,0,1,f +11010,6019,297,2,f +11010,60470a,0,2,f +11010,61184,71,1,f +11010,6141,297,2,f +11010,6141,70,1,t +11010,6141,71,1,t +11010,6141,71,8,f +11010,6141,70,8,f +11010,6141,297,1,t +11010,6183,15,2,f +11010,6232,70,8,f +11010,63082,0,1,f +11010,64648,179,1,f +11010,6628,0,2,f +11010,71015,334,1,f +11010,75998pr0006,15,2,f +11010,87079,15,2,f +11010,87087,15,2,f +11010,87620,4,2,f +11010,88704,70,1,f +11010,89522,135,2,f +11010,89524,82,2,f +11010,90981,72,1,f +11010,92593,15,1,f +11010,92950,0,1,f +11010,92950,15,2,f +11010,95228,40,1,f +11010,970c00,0,2,f +11010,970c00pr0195b,4,1,f +11010,970x026,71,1,f +11010,973pr1622c01,4,1,f +11010,973pr1624c01,72,1,f +11010,973pr1625c01,288,1,f +11010,973pr1722ac01,15,1,f +11011,32203,2,3,f +11011,32205,0,2,f +11011,32206,2,1,f +11011,32214,0,2,f +11011,32214,2,1,f +11011,zbb013,22,5,f +11011,zbb014,7,6,f +11011,zbb015,2,2,f +11011,zbb015,0,1,f +11011,zbb018,14,1,f +11012,2335,0,2,f +11012,2412b,383,2,f +11012,2412b,4,2,f +11012,2431,4,1,f +11012,2446,0,1,f +11012,2447,41,1,f +11012,2458,8,4,f +11012,2540,0,2,f +11012,2817,7,1,f +11012,298c02,14,1,f +11012,298c02,14,1,t +11012,3001,4,2,f +11012,30029,4,1,f +11012,3003,7,12,f +11012,3003,1,2,f +11012,3004,14,1,f +11012,30043,0,1,f +11012,3005,0,1,f +11012,3005,14,2,f +11012,3006,7,2,f +11012,3009,0,2,f +11012,3010,0,2,f +11012,30148,0,1,f +11012,3020,1,1,f +11012,3022,0,3,f +11012,3023,0,6,f +11012,3023,4,2,f +11012,3023,15,1,f +11012,3024,36,2,f +11012,30256,7,1,f +11012,30258p01,14,2,f +11012,30285,15,4,f +11012,3029,7,1,f +11012,3031,0,1,f +11012,3034,7,2,f +11012,30389a,14,1,f +11012,30391,0,4,f +11012,3039px7,15,1,f +11012,30552,8,1,f +11012,30553,8,2,f +11012,3069bp02,7,1,f +11012,3070b,46,2,f +11012,3070b,46,1,t +11012,32064b,4,3,f +11012,32448,7,1,f +11012,3626bpx32,14,1,f +11012,3626bpx33,14,1,f +11012,3660,0,2,f +11012,3665,4,2,f +11012,3679,7,2,f +11012,3680,0,2,f +11012,3706,0,1,f +11012,3710,4,2,f +11012,3737,0,2,f +11012,3747b,0,2,f +11012,3795,0,2,f +11012,3829c01,15,1,f +11012,3832,1,1,f +11012,3832,0,2,f +11012,3941,0,1,f +11012,3941,57,1,f +11012,3942c,14,3,f +11012,4032a,15,1,f +11012,4083,15,2,f +11012,4282,7,2,f +11012,4286,4,2,f +11012,4485,1,1,f +11012,4589,57,6,f +11012,4865a,4,2,f +11012,6019,1,1,f +11012,6091,4,2,f +11012,6126a,57,2,f +11012,6141,46,1,f +11012,6141,36,1,t +11012,6141,36,1,f +11012,6141,46,1,t +11012,6141,15,1,t +11012,6141,0,1,t +11012,6141,0,4,f +11012,6141,34,1,f +11012,6141,15,3,f +11012,6141,33,1,t +11012,6141,33,1,f +11012,6141,34,1,t +11012,6153a,4,1,f +11012,6238,33,1,f +11012,6249,8,1,f +11012,63965,15,2,f +11012,6538b,7,1,f +11012,6576,7,3,f +11012,6583,8,2,f +11012,6636,14,4,f +11012,890p01,15,1,f +11012,970c00,1,1,f +11012,970c00,0,1,f +11012,973px64c01,15,1,f +11012,973px66c01,0,1,f +11013,11091,272,2,f +11013,11091,321,4,f +11013,11097,179,1,f +11013,11097,297,1,f +11013,11100,15,6,f +11013,11103,297,1,f +11013,11127,41,2,f +11013,11153,1,2,f +11013,11211,71,2,f +11013,11233pr0001,0,1,f +11013,12549pr0002,272,1,f +11013,12549pr0004,15,1,f +11013,12825,15,4,f +11013,13731,1,2,f +11013,15207,15,2,f +11013,2357,71,2,f +11013,2412b,1,6,f +11013,2431,15,2,f +11013,2431,1,2,f +11013,2444,71,4,f +11013,2654,71,1,f +11013,2780,0,2,f +11013,2780,0,1,t +11013,2817,0,2,f +11013,3001,1,4,f +11013,3002,71,2,f +11013,3002,4,1,f +11013,3003,15,2,f +11013,3005,15,2,f +11013,3020,1,2,f +11013,3020,15,12,f +11013,3021,14,1,f +11013,3021,71,2,f +11013,3022,1,5,f +11013,3023,14,1,f +11013,3023,1,4,f +11013,3023,15,5,f +11013,3024,182,6,f +11013,3034,1,1,f +11013,30363,15,2,f +11013,30365,71,2,f +11013,30374,41,1,f +11013,3039,14,2,f +11013,3039,1,4,f +11013,3040b,1,2,f +11013,3048c,14,1,f +11013,3049d,14,1,f +11013,30503,1,2,f +11013,30526,72,1,f +11013,30552,72,2,f +11013,30565,272,2,f +11013,3068b,1,3,f +11013,32000,14,1,f +11013,32013,14,4,f +11013,32015,14,2,f +11013,32039,14,2,f +11013,32059,1,1,f +11013,32062,4,10,f +11013,32064b,14,2,f +11013,32123b,14,6,f +11013,32123b,14,1,t +11013,32474,4,3,f +11013,32523,71,2,f +11013,3622,1,2,f +11013,3626cpr1125,212,1,f +11013,3626cpr1126,212,1,f +11013,3626cpr1136,0,1,f +11013,3660,4,2,f +11013,3666,14,2,f +11013,3666,1,4,f +11013,3700,4,2,f +11013,3700,15,2,f +11013,3702,71,2,f +11013,3703,0,4,f +11013,3705,0,1,f +11013,3710,272,2,f +11013,3713,4,1,t +11013,3713,4,3,f +11013,3795,1,3,f +11013,41769,272,2,f +11013,41770,272,2,f +11013,4274,1,14,f +11013,4274,1,2,t +11013,4282,0,1,f +11013,43713,15,1,f +11013,43722,15,1,f +11013,43723,15,1,f +11013,44300,71,2,f +11013,44301a,15,2,f +11013,44302a,72,4,f +11013,44728,14,1,f +11013,44728,1,2,f +11013,4497,179,1,f +11013,4497,179,1,t +11013,4519,71,2,f +11013,4623,71,2,f +11013,47397,272,2,f +11013,47398,272,2,f +11013,4871,1,1,f +11013,50304,15,1,f +11013,50305,15,1,f +11013,50373,14,1,f +11013,53705,0,2,f +11013,53989,15,2,f +11013,53992,0,2,f +11013,55976,0,1,f +11013,56145,0,5,f +11013,57028c01,71,2,f +11013,57539pat0004,47,2,f +11013,57796,72,2,f +11013,59426,72,1,f +11013,59443,0,4,f +11013,60479,71,2,f +11013,60481,15,4,f +11013,6112,15,2,f +11013,6182,15,2,f +11013,6191,15,2,f +11013,6232,72,1,f +11013,63868,71,4,f +11013,63965,0,1,f +11013,6536,71,4,f +11013,6558,1,6,f +11013,72454,15,1,f +11013,85984,1,8,f +11013,87079,1,4,f +11013,87083,72,4,f +11013,87087,71,2,f +11013,87747,297,6,f +11013,87747,297,1,t +11013,90194,14,2,f +11013,92099,72,2,f +11013,92280,15,4,f +11013,92579,40,1,f +11013,92946,1,6,f +11013,970c00pr0434,0,1,f +11013,970c00pr0441,272,1,f +11013,970c01pr0435,15,1,f +11013,973pr2230c01,272,1,f +11013,973pr2231c01,212,1,f +11013,973pr2236c01,0,1,f +11013,98138,41,1,t +11013,98138,41,2,f +11013,99207,71,2,f +11014,2540,72,2,f +11014,3002,1,1,f +11014,3022,1,1,f +11014,3022,71,3,f +11014,30602,1,2,f +11014,3069b,1,3,f +11014,3710,71,2,f +11014,3747b,71,2,f +11014,41769,1,1,f +11014,41770,1,1,f +11014,44301a,71,2,f +11014,44302a,1,2,f +11014,44661,15,1,f +11014,44676,272,2,f +11014,6141,0,2,f +11015,10247,71,4,f +11015,10928,72,5,f +11015,11214,72,50,f +11015,11458,72,2,f +11015,11477,0,2,f +11015,11478,0,6,f +11015,11478,71,16,f +11015,11946,0,5,f +11015,11946,25,5,f +11015,11947,0,5,f +11015,11947,25,5,f +11015,11950,71,2,f +11015,11954,0,4,f +11015,14720,71,2,f +11015,14769,0,3,f +11015,14769,25,1,f +11015,15068,0,2,f +11015,15100,0,31,f +11015,15458,25,3,f +11015,15458,0,5,f +11015,15462,28,17,f +11015,15573,0,1,f +11015,18575,0,4,f +11015,18651,0,26,f +11015,18654,72,12,f +11015,18654,72,2,t +11015,18944,25,10,f +11015,18946,4,8,f +11015,18947,72,3,f +11015,18948,15,1,f +11015,23799,0,4,f +11015,23800,0,4,f +11015,23801,0,2,f +11015,23948,14,1,f +11015,24118,25,4,f +11015,24118pr0001,25,1,f +11015,24118pr0002,25,1,f +11015,24119,25,8,f +11015,24119,0,6,f +11015,2412b,0,2,f +11015,2431,71,3,f +11015,2431,14,4,f +11015,24316,70,18,f +11015,2431pr0080,15,1,f +11015,26287,4,11,f +11015,27056,9999,1,f +11015,2736,71,4,f +11015,2741,0,1,f +11015,2780,0,516,f +11015,2780,0,10,t +11015,2825,71,4,f +11015,2825,4,4,f +11015,2850b,71,6,f +11015,2851,14,6,f +11015,2852,71,6,f +11015,2853,14,2,f +11015,2854,19,2,f +11015,3010,71,2,f +11015,3020,71,4,f +11015,3020,0,2,f +11015,3021,0,6,f +11015,3023,36,8,f +11015,3023,47,10,f +11015,3023,0,2,f +11015,3024,47,12,f +11015,3024,47,1,t +11015,3034,0,2,f +11015,30367c,71,1,f +11015,3069b,47,4,f +11015,3069b,0,1,f +11015,3069b,36,4,f +11015,3070b,0,1,t +11015,3070b,0,2,f +11015,32002,19,2,f +11015,32002,19,1,t +11015,32005a,0,2,f +11015,32009,0,12,f +11015,32009,25,4,f +11015,32013,25,21,f +11015,32013,0,10,f +11015,32014,0,4,f +11015,32015,0,2,f +11015,32016,0,12,f +11015,32034,0,5,f +11015,32039,14,2,f +11015,32039,0,6,f +11015,32054,0,20,f +11015,32054,4,40,f +11015,32062,0,2,f +11015,32062,4,24,f +11015,32063,0,16,f +11015,32064a,71,2,f +11015,32072,14,7,f +11015,32073,71,6,f +11015,32073,14,16,f +11015,32123b,14,1,t +11015,32123b,71,26,f +11015,32123b,71,3,t +11015,32123b,14,8,f +11015,32126,0,4,f +11015,32138,0,4,f +11015,32140,25,4,f +11015,32140,71,8,f +11015,32140,0,12,f +11015,32184,71,19,f +11015,32192,25,2,f +11015,32198,19,2,f +11015,32200,25,5,f +11015,32235,25,7,f +11015,32250,0,4,f +11015,32270,0,8,f +11015,32271,25,2,f +11015,32278,25,10,f +11015,32278,0,21,f +11015,32291,0,8,f +11015,32293,0,2,f +11015,32316,71,2,f +11015,32316,0,14,f +11015,32348,0,8,f +11015,32348,25,2,f +11015,32449,0,16,f +11015,32449,14,4,f +11015,32494,71,7,f +11015,32523,25,22,f +11015,32523,0,15,f +11015,32523,71,12,f +11015,32524,0,31,f +11015,32524,25,14,f +11015,32524,71,8,f +11015,32525,0,13,f +11015,32525,71,8,f +11015,32525,25,10,f +11015,32526,25,14,f +11015,32526,71,8,f +11015,32526,0,28,f +11015,32556,19,2,f +11015,33299b,0,2,f +11015,3460,0,1,f +11015,3622,4,2,f +11015,3648b,72,2,f +11015,3701,14,2,f +11015,3702,0,1,f +11015,3705,0,15,f +11015,3706,0,9,f +11015,3707,0,2,f +11015,3708,0,3,f +11015,3710,14,4,f +11015,3713,71,3,t +11015,3713,71,29,f +11015,3737,0,2,f +11015,3743,0,10,f +11015,3749,19,1,f +11015,3795,25,1,f +11015,3894,71,2,f +11015,3960,47,2,f +11015,4032a,0,3,f +11015,40490,71,4,f +11015,40490,0,39,f +11015,41239,25,10,f +11015,41239,71,16,f +11015,41239,0,3,f +11015,41669,0,4,f +11015,41669,25,2,f +11015,41669,36,2,f +11015,41677,0,10,f +11015,41678,71,4,f +11015,42003,0,62,f +11015,4274,1,4,t +11015,4274,1,58,f +11015,43093,1,103,f +11015,44294,71,12,f +11015,44728,0,6,f +11015,4519,71,61,f +11015,45590,0,2,f +11015,48989,71,6,f +11015,54200,36,12,f +11015,54200,47,1,t +11015,54200,36,1,t +11015,54200,47,2,f +11015,57515,72,4,f +11015,59426,72,1,f +11015,59443,14,8,f +11015,59443,25,15,f +11015,60483,0,18,f +11015,60483,25,51,f +11015,60484,0,6,f +11015,6081,71,6,f +11015,6141,47,1,t +11015,6141,47,2,f +11015,62462,0,2,f +11015,62462,25,4,f +11015,62462,71,5,f +11015,62531,25,4,f +11015,62821,72,1,f +11015,63869,0,9,f +11015,64178,71,1,f +11015,64179,71,17,f +11015,64391,25,2,f +11015,64392,25,1,f +11015,64394,25,2,f +11015,64680,25,2,f +11015,64682,25,1,f +11015,64683,25,2,f +11015,64781,0,1,f +11015,64782,0,6,f +11015,64782,71,2,f +11015,6536,0,22,f +11015,6536,25,8,f +11015,6536,71,22,f +11015,6558,1,285,f +11015,6587,28,1,f +11015,6589,19,6,f +11015,6628,0,16,f +11015,6629,0,4,f +11015,6629,25,4,f +11015,6632,0,12,f +11015,6632,72,6,f +11015,6636,25,2,f +11015,6636,71,2,f +11015,6641,4,5,f +11015,76244,15,1,f +11015,76537,4,6,f +11015,78c07,179,4,f +11015,85543,15,4,f +11015,87079,71,2,f +11015,87079,0,1,f +11015,87080,25,4,f +11015,87082,0,2,f +11015,87082,71,11,f +11015,87083,72,16,f +11015,87086,25,4,f +11015,87407,71,3,f +11015,87408,0,2,f +11015,92906,72,5,f +11015,92907,0,4,f +11015,92909,72,4,f +11015,94925,71,13,f +11015,98138,0,1,t +11015,98138,0,1,f +11015,98138pr0055,0,1,t +11015,98138pr0055,0,4,f +11015,99008,19,1,f +11015,99773,71,2,f +11018,11477,2,14,f +11018,14417,72,1,f +11018,14704,71,1,f +11018,3020,27,3,f +11018,3022,27,1,f +11018,3023,29,1,f +11018,3623,19,4,f +11018,3741,2,8,f +11018,3795,2,2,f +11018,6141,27,6,f +11018,73983,2,4,f +11018,87580,19,2,f +11018,98138pr0008,15,2,f +11018,99780,2,1,f +11020,2436,5,1,f +11020,3003,114,8,f +11020,3005,114,4,f +11020,3008,85,1,f +11020,30153,52,1,f +11020,3068b,26,1,f +11020,33011a,14,1,f +11020,33011b,14,1,f +11020,33011c,14,2,f +11020,33025,118,1,f +11020,33175,14,1,f +11020,3626b,47,1,f +11020,3852b,29,1,f +11020,41539,118,1,f +11020,4461,5,1,f +11020,6175px1,15,1,f +11020,6203,5,1,f +11020,6251pr0002,15,1,f +11020,6251pr0002,151,1,f +11020,6256,29,1,f +11020,x248,14,1,f +11021,3001,4,4,f +11021,3003,7,4,f +11021,3004,4,12,f +11021,3005,7,4,f +11021,3007,4,4,f +11021,3008,7,4,f +11021,3010,0,4,f +11021,3010,7,2,f +11021,3020,7,2,f +11021,3020,0,3,f +11021,3021,0,4,f +11021,3022,7,4,f +11021,3022,0,2,f +11021,3023,4,5,f +11021,3023,7,4,f +11021,3023,0,2,f +11021,3029,0,1,f +11021,3031,0,1,f +11021,3039,7,1,f +11021,3039p34,7,1,f +11021,3068b,0,2,f +11021,3069b,0,4,f +11021,3581,4,8,f +11021,3582,4,8,f +11021,3624,4,1,f +11021,3626apr0001,14,1,f +11021,3660,0,2,f +11021,3666,4,2,f +11021,3666,0,2,f +11021,3710,0,2,f +11021,3710,4,4,f +11021,3794a,4,2,f +11021,3795,0,5,f +11021,4006,0,1,f +11021,4022,0,2,f +11021,4023,0,2,f +11021,4032a,0,4,f +11021,4070,4,2,f +11021,4081a,7,2,f +11021,4083,7,2,f +11021,4092,0,1,f +11021,4093b,0,1,f +11021,4175,7,2,f +11021,4175,4,4,f +11021,4176,47,2,f +11021,4180c01,0,3,f +11021,4181,4,1,f +11021,4182,4,1,f +11021,4183,47,2,f +11021,4509,7,1,f +11021,458,7,6,f +11021,501b,0,1,f +11021,6141,47,2,f +11021,6141,36,2,f +11021,73090a,4,2,f +11021,73092,0,2,f +11021,867,0,2,f +11021,970c00,1,1,f +11021,973p26c01,1,1,f +11022,2420,0,2,f +11022,2654,4,1,f +11022,2736,71,1,f +11022,2780,0,7,f +11022,2825,4,2,f +11022,3010,19,1,f +11022,30137,19,2,f +11022,30169,0,1,f +11022,3020,28,1,f +11022,3021,19,1,f +11022,3022,0,2,f +11022,3023,19,2,f +11022,3023,28,2,f +11022,3034,19,1,f +11022,3035,19,1,f +11022,3040b,19,2,f +11022,3045,272,6,f +11022,3048b,297,3,f +11022,3068b,4,1,f +11022,32000,19,1,f +11022,32002,72,4,f +11022,32009,19,4,f +11022,32017,14,1,f +11022,32138,0,1,f +11022,32278,71,1,f +11022,32348,4,1,f +11022,3713,71,2,f +11022,3749,19,1,f +11022,3795,28,1,f +11022,3795,19,2,f +11022,3894,71,2,f +11022,4032a,72,2,f +11022,4085c,4,2,f +11022,41530,71,1,f +11022,41678,14,2,f +11022,43093,1,8,f +11022,43722,72,1,f +11022,43723,72,1,f +11022,44567a,71,1,f +11022,4519,71,3,f +11022,4740,72,1,f +11022,47753pr0002,28,1,f +11022,51739,272,1,f +11022,53451,15,2,f +11022,59426,72,2,f +11022,60471,0,1,f +11022,6091,297,4,f +11022,6141,297,3,f +11022,6182,19,1,f +11022,6222,70,2,f +11022,64178,71,1,f +11022,64179,71,1,f +11022,6558,1,2,f +11022,6628,0,8,f +11022,6632,71,2,f +11022,853175coinbox,9999,1,f +11022,87580,28,2,f +11022,93668,9999,1,f +11025,3062a,15,6,f +11025,3062a,14,6,f +11025,3062a,47,6,f +11025,3062a,1,6,f +11025,3062a,0,6,f +11025,3062a,4,6,f +11025,3063b,0,8,f +11025,3063b,1,8,f +11025,3063b,47,8,f +11025,3063b,4,8,f +11025,3063b,14,8,f +11025,3063b,15,8,f +11026,3001,4,1,f +11026,3002,14,2,f +11026,3002,1,2,f +11026,3003,4,2,f +11026,3003,15,1,f +11026,4727,2,1,f +11026,4728,4,1,f +11026,4744pb07,1,1,f +11026,6215,4,2,f +11027,32558,73,1,f +11027,48253,297,2,f +11027,57539,135,1,f +11027,60894,1,1,f +11027,60896,73,2,f +11027,60900,73,2,f +11027,62386,272,2,f +11027,64251,1,2,f +11027,64262,42,1,f +11027,64322pat0001,73,1,f +11028,2339,0,4,f +11028,2345,7,3,f +11028,2345p02,7,1,f +11028,2357,0,1,f +11028,2357,7,3,f +11028,2431,0,2,f +11028,3001,0,1,f +11028,3004,0,4,f +11028,3004,7,11,f +11028,3005,7,24,f +11028,3005,0,4,f +11028,3009,7,2,f +11028,3010,7,4,f +11028,3010,0,2,f +11028,3020,0,1,f +11028,3021,7,3,f +11028,3021,0,1,f +11028,3021,2,4,f +11028,3022,2,1,f +11028,3022,0,4,f +11028,3022,7,2,f +11028,3023,7,5,f +11028,3023,0,2,f +11028,3023,2,1,f +11028,3024,0,4,f +11028,3024,7,6,f +11028,3031,0,2,f +11028,3035,0,1,f +11028,3039,7,1,f +11028,3040b,7,2,f +11028,3040b,0,1,f +11028,3069b,0,3,f +11028,3460,0,2,f +11028,3581,7,1,f +11028,3622,0,2,f +11028,3622,7,1,f +11028,3623,7,5,f +11028,3626apr0001,14,6,f +11028,3633,0,2,f +11028,3644,0,1,f +11028,3659,0,1,f +11028,3660,0,6,f +11028,3665,0,4,f +11028,3665,7,2,f +11028,3673,7,1,f +11028,3700,7,2,f +11028,3710,0,6,f +11028,3710,7,2,f +11028,3794a,0,3,f +11028,3795,7,1,f +11028,3830,0,2,f +11028,3830,7,2,f +11028,3831,0,2,f +11028,3831,7,2,f +11028,3832,2,1,f +11028,3832,7,1,f +11028,3844,0,1,f +11028,3844,8,2,f +11028,3846p45,7,1,f +11028,3846p46,7,1,f +11028,3846p4g,7,2,f +11028,3846p4h,7,2,f +11028,3848,6,4,f +11028,3896,8,1,f +11028,3896,0,2,f +11028,3935,7,1,f +11028,3936,7,1,f +11028,3957a,0,2,f +11028,3958,2,1,f +11028,4070,0,2,f +11028,4070,7,1,f +11028,4085b,7,2,f +11028,4085b,0,2,f +11028,4444,7,2,f +11028,4444p01,7,1,f +11028,4444p02,7,1,f +11028,4477,7,1,f +11028,4477,0,3,f +11028,4488,0,4,f +11028,4489a,6,4,f +11028,4490,0,4,f +11028,4495a,4,1,f +11028,4495a,15,1,f +11028,4495a,14,1,f +11028,4495a,1,1,f +11028,4497,6,4,f +11028,4498,6,2,f +11028,4499,6,2,f +11028,970x021,0,3,f +11028,970x026,1,1,f +11028,970x026,4,2,f +11028,973p42c01,4,2,f +11028,973p43c01,1,3,f +11028,973px138c01,4,1,f +11029,2412b,1,2,f +11029,2489,73,2,f +11029,2654,7,4,f +11029,30000,1,5,f +11029,3004,7,2,f +11029,30145,15,4,f +11029,30151a,41,4,f +11029,30153,57,1,f +11029,30153,41,1,f +11029,30153,33,1,f +11029,30153,42,1,f +11029,3020,15,2,f +11029,3033,15,2,f +11029,30385,383,1,f +11029,30385,41,2,f +11029,3039,25,6,f +11029,3040b,73,6,f +11029,30556,135,2,f +11029,30596,73,1,f +11029,30598,73,1,f +11029,30599,15,1,f +11029,30600pb06,73,1,f +11029,30601pb01,15,1,f +11029,30602pb004,73,1,f +11029,30603pb08,15,1,f +11029,32013,0,2,f +11029,32014,15,2,f +11029,32015,1,2,f +11029,32018,1,2,f +11029,32062,0,2,f +11029,32448,73,1,f +11029,3456,73,3,f +11029,3700,15,4,f +11029,3705,15,2,f +11029,3737,0,2,f +11029,3749,7,2,f +11029,4032a,15,4,f +11029,40607,8,2,f +11029,4081b,25,8,f +11029,4623,7,4,f +11029,6083,15,2,f +11029,6108,73,2,f +11029,6112,73,2,f +11029,6112,15,2,f +11029,bb68,0,1,f +11029,racerbase,15,1,f +11029,racerbase,1,1,f +11029,rb00168,0,4,f +11030,18827pr0003,0,1,f +11030,27962,321,1,f +11030,3626cpr2026,14,1,f +11030,85861,182,1,f +11030,88646,0,1,f +11030,95199,0,1,f +11030,970c00pr1115,0,1,f +11030,973pr3535c01,0,1,f +11031,3004,15,5,f +11031,3004p60,15,2,f +11031,3020,4,2,f +11031,3020,15,5,f +11031,3021,4,2,f +11031,3022,15,1,f +11031,3039,47,1,f +11031,3040b,15,4,f +11031,3062b,14,2,f +11031,3137c01,0,2,f +11031,3298,15,2,f +11031,3624,4,1,f +11031,3626apr0001,14,1,f +11031,3633,14,1,f +11031,3641,0,4,f +11031,3665,14,4,f +11031,3710,4,4,f +11031,4732,15,1,f +11031,970c00,4,1,f +11031,973c02,4,1,f +11033,3003,0,4,f +11033,3004,7,4,f +11033,3004,4,8,f +11033,3004,0,21,f +11033,3004,14,10,f +11033,3005,14,16,f +11033,3008,4,6,f +11033,3009,0,4,f +11033,3010,4,2,f +11033,3020,0,5,f +11033,3023,7,6,f +11033,3029,0,1,f +11033,3069b,15,4,f +11033,3069b,7,2,f +11033,3069bp00,15,4,f +11033,3069bpt0,15,4,f +11033,3298,7,4,f +11033,3460,14,4,f +11033,3622,14,4,f +11033,3623,0,4,f +11033,3625,0,1,f +11033,3626apr0001,14,2,f +11033,3660,0,8,f +11033,3660,15,1,f +11033,3666,14,4,f +11033,3666,0,2,f +11033,3710,0,2,f +11033,3794a,7,4,f +11033,3795,7,4,f +11033,3795,0,4,f +11033,3901,6,1,f +11033,4022,0,2,f +11033,4023,0,2,f +11033,4032a,7,4,f +11033,4033,14,4,f +11033,4034,47,4,f +11033,4035,14,6,f +11033,4036,47,6,f +11033,4070,4,16,f +11033,4092,0,2,f +11033,4093b,0,1,f +11033,4180c01,0,4,f +11033,4181p02,14,2,f +11033,4182p02,14,2,f +11033,4183,47,4,f +11033,4275a,7,4,f +11033,4276a,7,4,f +11033,4509,7,4,f +11033,69c01,15,1,f +11033,73092,0,2,f +11033,970c00,4,1,f +11033,970c00,1,1,f +11033,973c01,15,1,f +11033,973c18,0,1,f +11034,2357,272,2,f +11034,2362b,71,2,f +11034,2412b,14,20,f +11034,2412b,0,12,f +11034,2412b,0,1,t +11034,2420,0,2,f +11034,2431,14,2,f +11034,2431,71,4,f +11034,2431pr0017,14,3,f +11034,2432,14,19,f +11034,2436,71,1,f +11034,2444,14,1,f +11034,2444,4,1,f +11034,2446pr23,0,5,f +11034,2453a,14,2,f +11034,2454a,72,4,f +11034,2456,0,1,f +11034,2458,72,14,f +11034,2540,71,5,f +11034,2555,72,1,f +11034,2654,46,2,f +11034,2780,0,3,t +11034,2780,0,8,f +11034,2825,0,2,f +11034,2921,14,6,f +11034,2921,0,2,f +11034,298c02,4,4,f +11034,298c02,4,3,t +11034,3001,0,2,f +11034,3002,14,6,f +11034,3002,71,7,f +11034,3003,4,1,f +11034,3003,72,2,f +11034,3003,0,2,f +11034,30031,0,1,f +11034,3004,72,2,f +11034,3004,14,12,f +11034,3005,72,2,f +11034,3006,0,4,f +11034,3007,14,5,f +11034,3008,14,1,f +11034,30088,72,2,f +11034,30090,41,5,f +11034,30091,72,4,f +11034,30093,34,4,f +11034,3010,14,1,f +11034,30150,70,1,f +11034,30151a,47,4,f +11034,30153,41,2,f +11034,30180,14,1,f +11034,3020,0,5,f +11034,3020,14,3,f +11034,3021,71,3,f +11034,3021,4,2,f +11034,3022,4,1,f +11034,3022,14,1,f +11034,3023,14,1,f +11034,3023,0,11,f +11034,3023,4,1,f +11034,3023,36,3,f +11034,30236,0,2,f +11034,30237a,14,2,f +11034,30283,14,1,f +11034,3029,0,1,f +11034,3031,0,1,f +11034,3032,71,1,f +11034,3034,71,1,f +11034,3036,0,1,f +11034,30361c,4,1,f +11034,30367b,0,6,f +11034,30367b,4,4,f +11034,30367b,14,1,f +11034,3037,14,1,f +11034,30374,0,2,f +11034,30386,0,3,f +11034,3039,72,2,f +11034,3039,71,6,f +11034,3039,14,4,f +11034,30395,72,1,f +11034,30396,14,1,f +11034,3039pr0002,15,1,f +11034,3040b,71,10,f +11034,3040b,72,3,f +11034,30414,72,2,f +11034,30504,0,2,f +11034,30541,0,2,f +11034,30552,0,8,f +11034,30552,71,1,f +11034,3062b,71,7,f +11034,30663,0,4,f +11034,3068bpr01381,14,1,f +11034,3070bpr0007,71,2,f +11034,3070bpr0007,71,1,t +11034,3176,72,2,f +11034,32002,72,28,f +11034,32002,72,1,t +11034,32013,14,1,f +11034,32018,0,2,f +11034,32062,4,8,f +11034,32064b,14,1,f +11034,32064b,320,4,f +11034,32064b,72,1,f +11034,32138,0,1,f +11034,32174,0,2,f +11034,32324,0,1,f +11034,3245b,14,5,f +11034,3245b,71,3,f +11034,32530,0,2,f +11034,3307,14,1,f +11034,33121,191,1,f +11034,3460,71,2,f +11034,3460,0,3,f +11034,3475b,0,2,f +11034,3623,71,2,f +11034,3626bpr0190,15,1,f +11034,3626bpr0325,14,1,f +11034,3626bpr0389,14,1,f +11034,3626bpr0433,14,1,f +11034,3626bpr0458,14,1,f +11034,3660,14,4,f +11034,3665,14,2,f +11034,3666,72,3,f +11034,3673,71,1,f +11034,3673,71,1,t +11034,3678b,71,4,f +11034,3679,71,2,f +11034,3680,4,2,f +11034,3684,14,4,f +11034,3701,71,2,f +11034,3702,14,2,f +11034,3705,0,3,f +11034,3707,0,2,f +11034,3710,0,1,f +11034,3710,272,9,f +11034,3794a,14,8,f +11034,3795,0,3,f +11034,3795,72,4,f +11034,3795,14,2,f +11034,3832,1,1,f +11034,3857,72,1,f +11034,3867,72,1,f +11034,3899,4,1,f +11034,3937,0,2,f +11034,3938,4,2,f +11034,3941,4,2,f +11034,3941,0,6,f +11034,3956,71,1,f +11034,4032a,14,5,f +11034,4032b,0,2,f +11034,40378,272,8,f +11034,40379,21,8,f +11034,4079,1,1,f +11034,4081b,72,2,f +11034,4081b,1,1,f +11034,4085c,0,1,f +11034,4085c,4,2,f +11034,4085c,71,3,f +11034,41334,72,2,f +11034,41531,14,1,f +11034,41532,0,12,f +11034,41539,0,2,f +11034,41749,41,1,f +11034,41750,41,1,f +11034,41769,19,4,f +11034,41769,272,4,f +11034,4185,14,4,f +11034,41881,41,2,f +11034,42003,14,2,f +11034,42022,14,2,f +11034,42023,0,2,f +11034,4215b,41,2,f +11034,42604,41,1,f +11034,43093,1,4,f +11034,43337,14,6,f +11034,43857,0,1,f +11034,44302a,0,20,f +11034,44358,272,2,f +11034,44359pat0001,47,2,f +11034,44359pat0002,15,2,f +11034,44375a,71,1,f +11034,44568,71,3,f +11034,44572,14,3,f +11034,4460a,0,2,f +11034,44728,0,5,f +11034,4476b,14,5,f +11034,44822,0,1,f +11034,4497,135,16,f +11034,4519,71,1,f +11034,45590,0,1,f +11034,45705pr0001,40,1,f +11034,4589,2,3,f +11034,4589,33,8,f +11034,4589,0,2,f +11034,4599a,0,1,f +11034,4599a,71,1,f +11034,4623,14,1,f +11034,4735,0,1,f +11034,47406,0,1,f +11034,47457,72,7,f +11034,47757,272,1,f +11034,47844,272,2,f +11034,48336,0,3,f +11034,4855,72,1,f +11034,4865a,14,4,f +11034,4871,14,2,f +11034,48729a,72,2,f +11034,48729a,72,1,t +11034,50747,40,1,f +11034,50943,72,1,f +11034,52501,72,1,f +11034,53451,15,8,f +11034,53451,15,1,t +11034,54200,14,6,f +11034,54200,0,4,f +11034,54200,272,16,f +11034,55236,21,2,f +11034,55295,0,1,f +11034,55296,0,1,f +11034,55297,0,1,f +11034,55298,0,1,f +11034,55299,0,1,f +11034,55300,0,1,f +11034,57028c01,71,1,f +11034,57503,334,1,f +11034,57504,334,1,f +11034,57505,334,1,f +11034,57506,334,1,f +11034,57796,0,1,f +11034,57909a,72,2,f +11034,58827,14,6,f +11034,59275,0,10,f +11034,59426,72,2,f +11034,6005,72,2,f +11034,6019,72,3,f +11034,6041,0,1,f +11034,6082,72,1,f +11034,6083,72,1,f +11034,6091,14,10,f +11034,6106,0,4,f +11034,6111,71,3,f +11034,6140,71,1,f +11034,6141,36,3,t +11034,6141,34,3,t +11034,6141,19,1,t +11034,6141,33,21,f +11034,6141,46,2,f +11034,6141,0,1,t +11034,6141,46,1,t +11034,6141,33,3,t +11034,6141,36,6,f +11034,6141,0,2,f +11034,6141,34,4,f +11034,6141,19,16,f +11034,6179,0,1,f +11034,6180,0,1,f +11034,6215,14,2,f +11034,6222,0,1,f +11034,6232,14,2,f +11034,6260,15,1,f +11034,6265,15,2,f +11034,6265,15,1,t +11034,6266,15,2,f +11034,6541,4,5,f +11034,6553,71,4,f +11034,6587,72,2,f +11034,6589,71,1,f +11034,6636,72,2,f +11034,75535,0,8,f +11034,7775stk01,9999,1,t +11034,78c14,0,2,f +11034,78c14,14,6,f +11034,970c00,0,1,f +11034,973pr1300c01,0,4,f +11035,11618,31,1,f +11035,11618,191,1,f +11035,11618,31,1,t +11035,11618,191,1,t +11035,11816pr0002,78,1,f +11035,15254,19,2,f +11035,15332,15,1,f +11035,16925pr0007c01,378,1,f +11035,2397,72,1,f +11035,24055,29,1,f +11035,2454a,19,2,f +11035,2877,14,3,f +11035,3001,70,1,f +11035,3005,29,2,f +11035,3010,322,1,f +11035,30136,84,2,f +11035,30137,84,1,f +11035,30165,84,1,f +11035,30176,2,1,f +11035,3021,322,1,f +11035,3023,72,1,f +11035,3036,27,1,f +11035,3039,26,2,f +11035,3040b,29,2,f +11035,30414,14,1,f +11035,3068b,15,1,f +11035,33051,10,1,f +11035,33172,25,1,f +11035,33183,10,1,t +11035,33183,10,1,f +11035,33291,191,1,t +11035,33291,191,3,f +11035,3710,26,1,f +11035,3795,30,1,f +11035,3852b,322,1,f +11035,4489,70,2,f +11035,4523,5,1,f +11035,4865a,15,1,f +11035,50950,26,2,f +11035,6079,15,1,f +11035,61780,70,1,f +11035,87079pr0089,15,1,f +11035,87580,19,1,f +11035,92254pr0001,226,1,f +11035,92456pr0062c01,78,1,f +11035,93085pr05,84,1,f +11035,93086,30,1,f +11035,93092,30,1,f +11035,93273,30,1,f +11035,95345,70,1,f +11037,2343,47,3,f +11037,298c04,15,1,f +11037,3004,15,1,f +11037,3009,15,2,f +11037,3010,15,6,f +11037,3038pb01,14,1,f +11037,3622p01,14,1,f +11037,4536,14,2,f +11037,4599a,13,1,f +11037,57503,334,1,f +11037,57504,334,1,f +11037,57505,334,1,f +11037,57506,334,1,f +11037,6162,74,2,f +11037,6178,20,1,f +11037,6203,5,1,f +11037,6252,5,1,f +11037,6253,14,1,f +11037,6254,15,3,f +11037,92410,14,1,f +11038,45449,29,4,f +11038,45449,45,4,f +11038,45452,45,4,f +11038,45452,230,2,f +11038,45474,47,4,f +11038,45474,45,2,f +11038,45481,230,2,f +11038,46277,45,8,f +11038,46277,5,6,f +11038,46296,47,2,f +11038,46296,45,4,f +11038,clikits011,45,1,f +11038,clikits011,230,1,f +11038,clikits012,47,2,f +11038,clikits025,230,4,f +11038,clikits040,230,2,f +11038,clikits046,13,3,f +11038,clikits163,13,2,f +11038,clikits206,13,1,f +11038,clikits207,89,2,f +11038,clikits208,89,2,f +11038,clikits209,89,2,f +11038,clikits221,63,1,f +11038,clikits222,63,3,f +11038,clikits223,63,2,f +11041,15573,70,2,f +11041,3002,1,1,f +11041,3002,70,3,f +11041,3004,1,4,f +11041,3004,0,1,f +11041,3004,27,2,f +11041,3005,27,2,f +11041,3005,70,2,f +11041,3021,70,1,f +11041,3022,0,1,f +11041,3022,70,1,f +11041,3024,70,1,t +11041,3024,70,1,f +11041,3031,72,1,f +11041,3070b,70,2,f +11041,3070b,70,1,t +11041,3622,0,2,f +11041,3622,70,1,f +11041,3623,70,3,f +11041,3710,70,2,f +11041,6141,80,2,f +11041,6141,80,1,t +11041,87087,27,2,f +11042,2431,6,9,f +11042,2540,6,3,f +11042,2653,15,4,f +11042,30041,8,1,f +11042,30042,7,1,f +11042,30115,4,1,f +11042,30152pat0001,0,1,f +11042,30153,46,1,f +11042,30172,15,1,f +11042,3020,7,3,f +11042,3021,15,1,f +11042,3022,366,1,f +11042,30239,2,2,f +11042,30374,6,2,f +11042,3068b,7,2,f +11042,3069b,15,2,f +11042,3176,14,2,f +11042,3308,15,1,f +11042,3460,272,6,f +11042,3626bpa1,14,1,f +11042,3626bpr0190,15,1,f +11042,3660,15,2,f +11042,3666,8,1,f +11042,3684,15,6,f +11042,3700,366,3,f +11042,3794a,272,5,f +11042,3865,10,1,f +11042,4085c,0,4,f +11042,4088px1,15,1,f +11042,4162,6,2,f +11042,4189423pb01,9999,1,t +11042,4189423pb02,9999,1,t +11042,4189423pb03,9999,1,t +11042,43887,14,2,f +11042,43888,484,4,f +11042,43892,366,1,f +11042,43896,366,2,f +11042,43897,366,1,f +11042,44924px1,366,1,f +11042,4510,0,2,f +11042,4589,7,3,f +11042,6020,6,1,f +11042,6126a,57,2,f +11042,6215,15,2,f +11042,970c00,15,1,f +11042,973px180c01,15,1,f +11044,3001,15,4,f +11044,3005pr0006,73,1,f +11044,3010,29,4,f +11044,3020,27,6,f +11044,3022,27,2,f +11044,3035,2,2,f +11044,30565,27,2,f +11044,33291,191,5,f +11044,33303,15,4,f +11044,3678b,15,2,f +11044,3741,2,3,f +11044,3742,4,1,t +11044,3742,4,3,f +11044,54200,15,1,f +11044,6255,2,3,f +11044,6256,29,1,f +11044,87079,26,2,f +11044,87580,2,3,f +11044,87580,73,1,f +11044,92438,10,1,f +11044,93089pr0001a,71,1,f +11046,2352,14,2,f +11046,3001,0,24,f +11046,3001,15,38,f +11046,3001,1,40,f +11046,3001,14,36,f +11046,3001,4,32,f +11046,3001pr1,14,1,f +11046,3002,14,14,f +11046,3002,0,4,f +11046,3002,4,14,f +11046,3002,1,14,f +11046,3002,15,14,f +11046,3003,4,33,f +11046,3003,47,2,f +11046,3003,1,35,f +11046,3003,15,35,f +11046,3003,14,33,f +11046,3003,0,20,f +11046,3003pe1,14,2,f +11046,3007,14,2,f +11046,3008,4,2,f +11046,3185,4,6,f +11046,3471,2,2,f +11046,3483,0,8,f +11046,4130,14,3,f +11046,4131,4,3,f +11046,4132,14,4,f +11046,4133,4,4,f +11046,4180c02,0,4,f +11046,4202,4,1,f +11046,4204,2,1,f +11046,4727,2,4,f +11046,4728,14,2,f +11046,4728,4,2,f +11046,4730,1,1,f +11046,4743,4,1,f +11046,4743,1,1,f +11046,4744,4,1,f +11046,4744,14,1,f +11046,4745,14,1,f +11046,4747,4,1,f +11046,4748,4,1,f +11046,bfp001,9999,1,f +11046,bfp002,9999,1,f +11049,3004,2,1,f +11049,3004p0a,14,1,f +11049,3021,4,1,f +11049,3039,2,3,f +11049,3659,4,2,f +11049,3660,2,1,f +11051,2543,4,1,f +11051,3626bpr1168,14,1,f +11051,4006,0,1,f +11051,88646,0,1,f +11051,970c00pr0489,0,1,f +11051,973pr2319c01,379,1,f +11056,10247,4,11,f +11056,11214,72,3,f +11056,11215,15,1,f +11056,11215,0,2,f +11056,11291,72,2,f +11056,11458,0,2,f +11056,11477,19,2,f +11056,11477,28,1,f +11056,11477,71,4,f +11056,14719,0,6,f +11056,15068,0,1,f +11056,15303,36,3,f +11056,15400,72,2,f +11056,15535,72,2,f +11056,15540,72,4,f +11056,15571,15,2,f +11056,15573,0,6,f +11056,15712,70,1,f +11056,15712,0,2,f +11056,17630,0,1,f +11056,18651,0,1,f +11056,18653,71,2,f +11056,18654,72,4,t +11056,18654,72,5,f +11056,18677,71,2,f +11056,19888,15,1,f +11056,2412b,179,7,f +11056,2412b,0,30,f +11056,2420,71,6,f +11056,2420,14,2,f +11056,24201,71,8,f +11056,24299,0,4,f +11056,24307,0,4,f +11056,2431,0,4,f +11056,2431,41,4,f +11056,24316,70,12,f +11056,2432,19,2,f +11056,2445,71,1,f +11056,2450,72,2,f +11056,2456,0,1,f +11056,2639,72,4,f +11056,2654,72,1,f +11056,2736,71,2,f +11056,2780,0,48,f +11056,2780,0,7,t +11056,28168pr0001,0,2,f +11056,2817,71,6,f +11056,28186,0,1,f +11056,28228,19,1,f +11056,2825,0,4,f +11056,2877,0,2,f +11056,298c02,71,1,f +11056,298c02,71,1,t +11056,3004,73,1,f +11056,30043,71,1,f +11056,30157,72,1,f +11056,3020,72,4,f +11056,3020,71,4,f +11056,3020,0,10,f +11056,3021,0,4,f +11056,3021,28,2,f +11056,3021,19,7,f +11056,3021,72,6,f +11056,3021,71,3,f +11056,3022,72,6,f +11056,3023,46,2,f +11056,3023,28,1,f +11056,3023,36,21,f +11056,3023,72,12,f +11056,3024,72,1,t +11056,3024,72,5,f +11056,3024,0,1,t +11056,3024,36,3,f +11056,3024,36,1,t +11056,3024,0,21,f +11056,3030,0,2,f +11056,3030,72,2,f +11056,3031,19,2,f +11056,3032,72,6,f +11056,3032,71,1,f +11056,3034,72,2,f +11056,3034,71,1,f +11056,3035,72,4,f +11056,30350a,0,1,f +11056,30374,0,2,f +11056,30377,0,1,t +11056,30377,0,1,f +11056,30503,0,8,f +11056,3068b,0,3,f +11056,3069b,19,2,f +11056,3069b,0,6,f +11056,3069b,15,1,f +11056,3176,72,8,f +11056,32028,0,2,f +11056,32039,71,2,f +11056,32054,71,2,f +11056,32054,4,4,f +11056,32054,0,4,f +11056,32062,4,4,f +11056,32063,71,12,f +11056,32064a,72,1,f +11056,32123b,14,2,t +11056,32123b,14,4,f +11056,32140,0,4,f +11056,32184,4,2,f +11056,32184,71,1,f +11056,3228c,0,1,f +11056,32291,0,2,f +11056,32316,71,1,f +11056,32449,0,6,f +11056,32523,4,1,f +11056,32524,0,3,f +11056,32525,0,4,f +11056,32530,72,2,f +11056,3460,19,2,f +11056,3623,0,2,f +11056,3626cpr1149,78,2,f +11056,3626cpr2035,78,1,f +11056,3626cpr2038,71,1,f +11056,3626cpr2039,92,1,f +11056,3666,0,2,f +11056,3666,320,2,f +11056,3700,71,6,f +11056,3701,72,4,f +11056,3701,14,4,f +11056,3702,0,5,f +11056,3703,71,2,f +11056,3705,0,4,f +11056,3708,0,1,f +11056,3710,71,2,f +11056,3710,72,5,f +11056,3710,0,4,f +11056,3713,4,1,f +11056,3713,4,1,t +11056,3743,0,1,f +11056,3749,19,2,f +11056,3795,15,1,f +11056,3795,28,2,f +11056,3795,0,4,f +11056,3832,72,2,f +11056,3894,72,4,f +11056,4081b,72,1,f +11056,41677,72,4,f +11056,41678,72,2,f +11056,42446,70,1,t +11056,42446,70,2,f +11056,42610,71,2,f +11056,42687,0,1,f +11056,4274,1,5,f +11056,4274,1,2,t +11056,4282,0,14,f +11056,43093,1,21,f +11056,43722,0,2,f +11056,43723,0,2,f +11056,44301a,0,1,f +11056,4460b,0,4,f +11056,44728,0,2,f +11056,4477,0,2,f +11056,4519,14,2,f +11056,47397,0,6,f +11056,47398,0,6,f +11056,47407,0,2,f +11056,47905,19,2,f +11056,47973,72,3,f +11056,50923,72,4,f +11056,50950,19,2,f +11056,51739,0,6,f +11056,54200,0,2,f +11056,54200,0,1,t +11056,54200,19,2,f +11056,54200,19,1,t +11056,54383,0,3,f +11056,54384,0,3,f +11056,55013,72,1,f +11056,57899,0,1,f +11056,58247,0,2,f +11056,58247,179,1,f +11056,59230,0,1,t +11056,59230,0,1,f +11056,59443,71,1,f +11056,59900,0,2,f +11056,60470a,71,4,f +11056,60471,71,3,f +11056,60483,0,4,f +11056,60484,71,1,f +11056,60849,71,1,t +11056,60849,71,1,f +11056,60897,4,4,f +11056,61184,4,2,f +11056,61409,71,4,f +11056,61409,15,1,f +11056,6141,179,20,f +11056,6141,179,3,t +11056,6179,0,12,f +11056,6180,0,10,f +11056,63965,72,2,f +11056,6536,71,4,f +11056,6541,0,21,f +11056,6541,72,4,f +11056,6558,1,16,f +11056,6575,0,4,f +11056,6587,28,5,f +11056,6632,71,1,f +11056,6636,0,18,f +11056,74261,0,4,f +11056,76766,0,4,f +11056,85861,71,1,f +11056,85861,71,1,t +11056,85943,72,4,f +11056,85984,71,2,f +11056,85984pr0006,72,1,f +11056,87079,0,7,f +11056,87083,72,4,f +11056,87087,72,3,f +11056,87606pr0001b,40,1,f +11056,89140pr0001,72,2,f +11056,91988,72,4,f +11056,92280,4,2,f +11056,92584,0,2,f +11056,92593,72,6,f +11056,92738,0,1,f +11056,93095,0,2,f +11056,93571,0,4,f +11056,96874,25,1,t +11056,970c00,0,1,f +11056,970c00,72,1,f +11056,970c00pr1119,0,2,f +11056,970c00pr1122,28,1,f +11056,973pr3547c01,0,2,f +11056,973pr3548c01,15,1,f +11056,973pr3550c01,19,1,f +11056,973pr3551c01,72,1,f +11056,98138,36,1,t +11056,98138,36,10,f +11056,99021,72,1,f +11056,99207,71,2,f +11056,99781,0,2,f +11056,99930,28,1,f +11057,2418bpx1,42,1,f +11057,2419,8,2,f +11057,2420,4,2,f +11057,30014,0,4,f +11057,3004,6,3,f +11057,30198,8,1,f +11057,3020,4,1,f +11057,30200,0,1,f +11057,30202,8,1,f +11057,3022,0,2,f +11057,3022,4,1,f +11057,3023,6,4,f +11057,3035,8,2,f +11057,30385,383,1,f +11057,3040b,8,6,f +11057,3063b,8,2,f +11057,3068b,7,1,f +11057,3068bpx14,0,1,f +11057,3612,6,2,f +11057,3626bpx113,14,1,f +11057,3660,8,2,f +11057,3795,0,1,f +11057,3795,8,1,f +11057,4112734,0,1,f +11057,412,42,6,f +11057,4220,0,1,f +11057,4221,0,4,f +11057,4345b,42,1,f +11057,4346px6,42,1,f +11057,4590,0,4,f +11057,4623,4,1,f +11057,4735,0,2,f +11057,59275,7,2,f +11057,6041,0,3,f +11057,6064,4,1,f +11057,6141,42,4,f +11057,6141,42,1,t +11057,6217,4,3,f +11057,970x026,6,1,f +11057,973px169c01,8,1,f +11058,2339,0,2,f +11058,2343,297,1,f +11058,2357,72,10,f +11058,2362b,47,2,f +11058,2420,0,4,f +11058,2420,4,2,f +11058,2431,71,2,f +11058,2431,72,1,f +11058,2431,41,16,f +11058,2444,0,2,f +11058,2446pr23,0,1,f +11058,2453a,71,4,f +11058,2454a,0,4,f +11058,2456,72,1,f +11058,2458,19,2,f +11058,2458,72,6,f +11058,2462,72,4,f +11058,2465,0,2,f +11058,2488,0,1,t +11058,2488,0,1,f +11058,2540,71,7,f +11058,2540,19,6,f +11058,2780,0,1,t +11058,2780,0,2,f +11058,3001,320,5,f +11058,3002,19,1,f +11058,3003,72,1,f +11058,3004,0,4,f +11058,30043,0,2,f +11058,3005,0,16,f +11058,3005,71,6,f +11058,30055,0,6,f +11058,3007,0,2,f +11058,30088,0,2,f +11058,30089,0,1,f +11058,3009,0,8,f +11058,3009,320,4,f +11058,30090,41,1,f +11058,30090,41,1,t +11058,30134,320,6,f +11058,30136,308,8,f +11058,30136,72,42,f +11058,30137,72,8,f +11058,30151a,47,1,f +11058,30153,36,2,f +11058,30153,33,2,f +11058,30153,46,1,f +11058,30153,34,1,f +11058,30153,47,1,f +11058,3020,28,5,f +11058,3020,320,13,f +11058,3020,72,2,f +11058,3020,70,2,f +11058,3022,19,6,f +11058,3022,72,2,f +11058,3022,71,1,f +11058,3022,4,2,f +11058,3023,4,6,f +11058,3023,28,30,f +11058,3024,36,4,f +11058,3028,28,3,f +11058,3031,71,1,f +11058,3032,14,1,f +11058,3032,71,1,f +11058,3036,28,10,f +11058,30363,72,1,f +11058,3040b,72,22,f +11058,3040b,0,14,f +11058,30414,19,4,f +11058,3048c,72,4,f +11058,30503,320,2,f +11058,30565,28,10,f +11058,30613,0,4,f +11058,3062b,36,1,f +11058,3068b,28,2,f +11058,3068bpr0167,19,1,f +11058,3069b,0,2,f +11058,3176,71,4,f +11058,32000,19,3,f +11058,32034,1,1,f +11058,32054,71,2,f +11058,32062,4,6,f +11058,32064b,71,4,f +11058,32064b,4,1,f +11058,32073,71,7,f +11058,32192,4,1,f +11058,32192,72,7,f +11058,32293,0,2,f +11058,32556,19,3,f +11058,3297,0,4,f +11058,3298,72,2,f +11058,3307,19,1,f +11058,33320,2,1,f +11058,3455,0,8,f +11058,3623,71,10,f +11058,3626bpr0580,14,1,f +11058,3626bpr0629,320,1,f +11058,3626bpr0640,14,1,f +11058,3626bpr0642,14,1,f +11058,3626bpr0678,378,1,f +11058,3626bpr0895,15,1,f +11058,3647,72,4,f +11058,3665,0,6,f +11058,3666,72,6,f +11058,3666,0,2,f +11058,3678b,0,4,f +11058,3700,72,6,f +11058,3700,71,1,f +11058,3702,71,1,f +11058,3705,0,2,f +11058,3709,0,4,f +11058,3710,72,2,f +11058,3710,0,3,f +11058,3710,320,11,f +11058,3749,19,3,f +11058,3794b,297,14,f +11058,3795,28,1,f +11058,3830,320,8,f +11058,3831,320,8,f +11058,3894,71,4,f +11058,3937,4,2,f +11058,3941,0,26,f +11058,4085c,72,24,f +11058,4085c,71,2,f +11058,4161,0,4,f +11058,4162,72,10,f +11058,41669,36,2,f +11058,41747,72,1,f +11058,41748,72,1,f +11058,41749,72,1,f +11058,41750,72,1,f +11058,41769,72,1,f +11058,41769,28,3,f +11058,41770,28,3,f +11058,41770,72,1,f +11058,42023,33,8,f +11058,42448,297,4,f +11058,4274,1,2,t +11058,4274,1,5,f +11058,4286,72,2,f +11058,4286,70,2,f +11058,4287,0,4,f +11058,43093,1,4,f +11058,43712,72,2,f +11058,43713,71,2,f +11058,43719,72,2,f +11058,43722,0,1,f +11058,43723,0,1,f +11058,43888,72,4,f +11058,44126,72,1,f +11058,44294,71,2,f +11058,44300,72,4,f +11058,44302a,71,4,f +11058,4460b,71,2,f +11058,44661,72,2,f +11058,44675,0,2,f +11058,44676,72,4,f +11058,4477,72,2,f +11058,4589,297,13,f +11058,4589,33,1,f +11058,4738a,297,1,f +11058,4739a,297,1,f +11058,47404,72,1,f +11058,47457,297,8,f +11058,47457,15,10,f +11058,48183,71,2,f +11058,48336,0,2,f +11058,4855,72,2,f +11058,49668,288,4,f +11058,50950,72,4,f +11058,50950,297,2,f +11058,50950,71,4,f +11058,54200,72,8,f +11058,54200,0,1,t +11058,54200,0,2,f +11058,54200,72,2,t +11058,54383,71,1,f +11058,54383,320,2,f +11058,54384,71,1,f +11058,54384,320,2,f +11058,55236,288,10,f +11058,59229,72,1,f +11058,59275,27,2,t +11058,59275,27,6,f +11058,59426,72,1,f +11058,6041,135,1,f +11058,60470a,71,2,f +11058,60475a,71,4,f +11058,60477,72,2,f +11058,60478,72,4,f +11058,60478,0,2,f +11058,60479,0,2,f +11058,60481,0,30,f +11058,60484,71,2,f +11058,60583a,0,4,f +11058,60808,0,4,f +11058,6111,0,6,f +11058,6134,4,2,f +11058,6141,46,2,f +11058,6141,47,1,t +11058,6141,47,1,f +11058,6141,46,1,t +11058,6141,0,4,f +11058,6141,297,7,t +11058,6141,297,26,f +11058,6141,0,2,t +11058,61482,71,1,t +11058,61482,71,1,f +11058,61485,0,1,f +11058,61678,0,4,f +11058,6232,72,4,f +11058,6260,15,1,f +11058,6265,15,2,f +11058,6265,15,1,t +11058,6266,15,2,f +11058,63864,14,2,f +11058,63868,72,9,f +11058,6536,72,2,f +11058,6585,0,1,f +11058,6589,19,3,f +11058,6628,0,4,f +11058,73983,0,1,f +11058,85970,297,2,f +11058,87087,72,18,f +11058,87580,28,2,f +11058,87747,15,24,f +11058,87748pr0001,36,1,f +11058,87748pr0002,35,1,f +11058,87748pr0003,182,1,f +11058,87748pr0004,33,1,f +11058,87748pr0005,46,1,f +11058,87749,320,1,f +11058,87750,72,5,f +11058,87754,72,3,f +11058,87756pr01,71,1,f +11058,87757pr01,320,1,f +11058,88292,0,22,f +11058,89159,35,3,f +11058,89523,28,1,f +11058,89917,133,1,f +11058,89918,133,1,f +11058,92290,297,6,f +11058,970c00pr0144,71,1,f +11058,970c00pr0145,72,3,f +11058,970c00pr0158,378,1,f +11058,973pr1553c01,320,1,f +11058,973pr1556c01,71,1,f +11058,973pr1557c01,72,3,f +11058,973pr1635c01,378,1,f +11059,2456,14,2,f +11059,2456,1,2,f +11059,2456,4,2,f +11059,3001,1,4,f +11059,3001,2,2,f +11059,3001,14,4,f +11059,3001,27,2,f +11059,3001,4,8,f +11059,3001,25,4,f +11059,3002,4,10,f +11059,3002,1,6,f +11059,3002,14,8,f +11059,3002,27,4,f +11059,3002,25,6,f +11059,3002,2,4,f +11059,3003,4,18,f +11059,3003,25,14,f +11059,3003,27,6,f +11059,3003,1,14,f +11059,3003,2,6,f +11059,3003,14,22,f +11059,3004,14,20,f +11059,3004,2,4,f +11059,3004,4,16,f +11059,3004,27,4,f +11059,3004,25,12,f +11059,3004,1,12,f +11059,3005,4,12,f +11059,3005,27,4,f +11059,3005,1,8,f +11059,3005,25,8,f +11059,3005,14,12,f +11059,3005,2,4,f +11059,3007,14,1,f +11059,3007,1,2,f +11059,3007,4,1,f +11059,3008,1,2,f +11059,3008,4,2,f +11059,3008,14,2,f +11059,3009,1,3,f +11059,3009,14,2,f +11059,3009,4,5,f +11059,3010,14,4,f +11059,3010,27,4,f +11059,3010,25,2,f +11059,3010,4,4,f +11059,3010,1,2,f +11059,3010,2,4,f +11059,3622,14,6,f +11059,3622,2,2,f +11059,3622,1,4,f +11059,3622,4,6,f +11059,3622,25,4,f +11060,3947a,7,2,f +11062,x1446,14,4,f +11062,x1446,1,4,f +11062,x1446,4,4,f +11062,x1446,15,4,f +11063,3021,70,1,f +11063,3048c,297,1,f +11063,3048c,297,1,t +11063,3794a,297,2,f +11063,3794b,297,1,t +11063,4460b,4,2,f +11063,60212,4,1,f +11064,28798,4,1,f +11064,29906,15,1,f +11064,3068bor0323,379,1,f +11064,3626cpr2129,15,1,f +11064,88646,0,1,f +11064,970c00pr1197,15,1,f +11064,973pr3679c01,15,1,f +11065,2421,0,1,f +11065,2654,0,2,f +11065,3002,71,1,f +11065,3021,72,2,f +11065,3023,47,3,f +11065,3023,15,2,f +11065,3023,71,1,f +11065,3023,72,2,f +11065,3024,1,2,f +11065,3034,72,4,f +11065,3034,71,1,f +11065,30363,71,1,f +11065,3069b,378,4,f +11065,3460,72,4,f +11065,3623,1,1,f +11065,3794b,72,2,f +11065,3795,72,2,f +11065,4488,0,1,f +11065,4600,0,1,f +11065,4624,15,2,f +11065,4740,15,2,f +11065,54200,15,1,f +11065,54200,15,1,t +11065,54200,72,1,t +11065,54200,72,2,f +11065,54200,4,1,t +11065,54200,4,2,f +11065,59895,0,2,f +11065,6141,4,2,f +11065,6141,4,1,t +11065,63864,378,8,f +11065,64644,0,4,f +11065,87079,378,1,f +11065,87580,1,2,f +11067,29bc01,4,19,f +11067,29bc01,15,19,f +11068,298c02,0,2,f +11068,3020,7,1,f +11068,3626apr0001,14,1,f +11068,3838,1,1,f +11068,3842b,1,1,f +11068,3941,0,1,f +11068,4032a,0,2,f +11068,4081a,7,2,f +11068,4360,0,1,f +11068,4589,36,3,f +11068,4590,7,1,f +11068,4596,7,5,f +11068,4598,7,1,f +11068,4623,7,1,f +11068,4735,0,1,f +11068,4740,36,1,f +11068,6141,34,2,f +11068,970c00,1,1,f +11068,973pr1594c01,1,1,f +11069,2456,15,2,f +11069,2456,1,2,f +11069,2456,4,2,f +11069,2456,14,2,f +11069,2456,7,2,f +11069,3001,2,4,f +11069,3001,15,14,f +11069,3001,14,14,f +11069,3001,7,4,f +11069,3001,0,8,f +11069,3001,4,14,f +11069,3001,25,4,f +11069,3001,1,14,f +11069,3002,0,6,f +11069,3002,4,8,f +11069,3002,1,8,f +11069,3002,2,2,f +11069,3002,7,2,f +11069,3002,15,10,f +11069,3002,25,2,f +11069,3002,14,8,f +11069,3003,1,30,f +11069,3003,33,12,f +11069,3003,2,18,f +11069,3003,0,18,f +11069,3003,36,12,f +11069,3003,15,30,f +11069,3003,4,30,f +11069,3003,14,27,f +11069,3003,25,6,f +11069,3003,7,6,f +11069,3004,7,8,f +11069,3004,2,22,f +11069,3004,15,40,f +11069,3004,0,28,f +11069,3004,1,36,f +11069,3004,4,34,f +11069,3004,14,28,f +11069,3004,8,10,f +11069,3004,25,8,f +11069,3005,15,28,f +11069,3005,33,4,f +11069,3005,1,30,f +11069,3005,2,14,f +11069,3005,4,30,f +11069,3005,0,26,f +11069,3005pe1,14,4,f +11069,3005pe2,8,2,f +11069,3005pe3,8,2,f +11069,3005px2,14,2,f +11069,3007,1,2,f +11069,3007,4,2,f +11069,3007,14,2,f +11069,3007,15,2,f +11069,3008,7,2,f +11069,3009,15,4,f +11069,3009,1,4,f +11069,3009,4,4,f +11069,3009,14,2,f +11069,3010,1,6,f +11069,3010,15,6,f +11069,3010,8,2,f +11069,3010,0,4,f +11069,3010,4,6,f +11069,3010,14,6,f +11069,3010,2,4,f +11069,3010,25,2,f +11069,3010p01,14,2,f +11069,3020,25,2,f +11069,3020,4,2,f +11069,3020,14,2,f +11069,3020,15,4,f +11069,3020,2,2,f +11069,3020,0,2,f +11069,3020,1,2,f +11069,3020,7,2,f +11069,3021,15,4,f +11069,3021,4,2,f +11069,3021,25,2,f +11069,3021,2,2,f +11069,3021,14,2,f +11069,3021,8,2,f +11069,3021,1,4,f +11069,3022,2,2,f +11069,3022,14,4,f +11069,3022,0,2,f +11069,3022,1,6,f +11069,3022,15,6,f +11069,3022,8,2,f +11069,3022,4,4,f +11069,3034,1,2,f +11069,3034,15,2,f +11069,3034,4,2,f +11069,3034,14,2,f +11069,3037,4,8,f +11069,3039,8,2,f +11069,3039,47,2,f +11069,3039,33,4,f +11069,3039,4,6,f +11069,3039,36,2,f +11069,3039,15,4,f +11069,3039,1,4,f +11069,3040b,8,2,f +11069,3040b,14,2,f +11069,3040b,25,4,f +11069,3040b,2,2,f +11069,3040b,15,4,f +11069,3040b,1,4,f +11069,3040b,4,4,f +11069,3040b,7,2,f +11069,3041,4,2,f +11069,3043,4,2,f +11069,3065,36,14,f +11069,3065,47,8,f +11069,3065,33,14,f +11069,3066,36,2,f +11069,3298,4,4,f +11069,3298,1,4,f +11069,3298,15,4,f +11069,3622,8,2,f +11069,3622,2,2,f +11069,3660,4,2,f +11069,3660,1,2,f +11069,3660,15,2,f +11069,3665,4,4,f +11069,3665,25,4,f +11069,3665,15,4,f +11069,3665,1,4,f +11069,3665,8,2,f +11069,3665,7,2,f +11069,3665,14,2,f +11069,3665,2,2,f +11069,3710,4,2,f +11069,3710,1,2,f +11069,3710,15,2,f +11069,3747b,1,2,f +11069,3795,4,2,f +11069,3795,14,2,f +11069,3795,15,2,f +11069,3795,1,2,f +11069,3957a,1,2,f +11069,4286,15,4,f +11069,4286,4,4,f +11069,4286,8,2,f +11069,4286,1,4,f +11069,4287,15,4,f +11069,4287,1,4,f +11069,4287,8,2,f +11069,4287,4,4,f +11069,4495b,14,1,f +11070,11816pr0001,84,1,f +11070,11816pr0006,78,1,f +11070,2423,2,2,f +11070,2431,14,2,f +11070,2431,322,2,f +11070,2453a,19,2,f +11070,3001,27,2,f +11070,3003,322,2,f +11070,3004,15,2,f +11070,30055,15,1,f +11070,30153,45,1,f +11070,30222,42,1,f +11070,3023,30,2,f +11070,30237a,14,1,f +11070,3031,27,2,f +11070,3034,70,2,f +11070,3034,19,2,f +11070,30374,19,1,f +11070,3062b,15,4,f +11070,3062b,70,4,f +11070,3068bpr0167,19,1,f +11070,33009,26,1,f +11070,33291,5,1,t +11070,33291,191,3,f +11070,33291,5,6,f +11070,33291,191,1,t +11070,33322,297,1,f +11070,33322,297,2,t +11070,3666,322,2,f +11070,3710,30,3,f +11070,3710,19,2,f +11070,3741,2,1,t +11070,3741,2,2,f +11070,3794b,19,1,f +11070,3899,5,2,f +11070,3941,27,1,f +11070,4032a,70,2,f +11070,4085c,15,1,f +11070,44676,272,1,f +11070,4495b,5,1,f +11070,4589,182,2,f +11070,50950,19,2,f +11070,50950,30,2,f +11070,50950,14,2,f +11070,54200,29,2,f +11070,54200,29,1,t +11070,6141,4,1,t +11070,6141,182,2,f +11070,6141,4,2,f +11070,6141,182,1,t +11070,6191,322,2,f +11070,6255,10,1,f +11070,63965,15,1,f +11070,64647,57,2,f +11070,64647,57,1,t +11070,64648,179,1,f +11070,6636,85,4,f +11070,76768,19,2,f +11070,87087,19,2,f +11070,87580,70,1,f +11070,92257,320,1,f +11070,92258,0,1,f +11070,92456pr0001c01,78,1,f +11070,92456pr0010c01,84,1,f +11070,92818pr0006c01,323,1,f +11070,92819pr0002a,27,1,f +11072,2420,27,1,f +11072,3004,4,1,f +11072,3024,4,2,f +11072,3024,0,1,f +11072,3665,4,2,f +11072,3794a,4,1,f +11072,6091,4,2,f +11072,6091,0,1,f +11073,2412b,4,4,f +11073,2417,2,1,f +11073,2420,19,2,f +11073,2489,6,1,f +11073,2540,7,1,f +11073,298c02,14,1,f +11073,3001,7,4,f +11073,3002,0,1,f +11073,3003,4,5,f +11073,3009,15,2,f +11073,30137,6,3,f +11073,30141,8,1,f +11073,30147,8,1,f +11073,30149,7,1,f +11073,30150,6,1,f +11073,30161pa1,47,1,f +11073,30162,8,1,f +11073,30165,8,2,f +11073,30167,6,1,f +11073,30172,15,1,f +11073,3020,0,2,f +11073,3023,19,2,f +11073,30236,7,1,f +11073,30285,15,6,f +11073,3040b,0,1,f +11073,30478,4,1,f +11073,3069bpa0,19,1,f +11073,3456,0,1,f +11073,3626bpa1,14,1,f +11073,3626bpa3,14,1,f +11073,3660,7,3,f +11073,3795,7,4,f +11073,3829c01,4,1,f +11073,3837,8,1,f +11073,3899,1,1,f +11073,3958,2,1,f +11073,4006,0,1,f +11073,4032a,0,1,f +11073,4032a,6,1,f +11073,4070,7,4,f +11073,4460a,7,1,f +11073,4522,0,1,f +11073,4529,0,1,f +11073,4599a,7,1,f +11073,4625,4,1,f +11073,6126a,57,1,f +11073,6141,47,1,t +11073,6141,47,2,f +11073,6232,7,6,f +11073,71965,0,2,f +11073,970c00,2,1,f +11073,970c00,0,1,f +11073,973pa1c01,15,1,f +11073,973pb0391c01,19,1,f +11077,12825,15,1,f +11077,3020,30,1,f +11077,3023,46,1,f +11077,3023,15,1,f +11077,30602,15,1,f +11077,3794b,71,1,f +11077,3839b,15,2,f +11077,41854,323,1,f +11077,88072,14,1,f +11077,98397,71,1,f +11078,2340,15,2,f +11078,2432,4,2,f +11078,2516,15,2,f +11078,3475b,0,2,f +11078,3933,0,1,f +11078,3934,0,1,f +11078,3935,7,1,f +11078,3936,7,1,f +11078,3963,0,2,f +11078,4229,0,2,f +11078,4598,7,2,f +11078,4746,15,1,f +11079,2412b,7,1,f +11079,30027,15,4,f +11079,30028,0,4,f +11079,3004,1,2,f +11079,30170,0,1,t +11079,30170,0,1,f +11079,30171,1,1,f +11079,3034,15,1,f +11079,3626bpb0031,14,1,f +11079,3829c01,7,1,f +11079,3839b,7,1,f +11079,4286,1,2,f +11079,6157,0,2,f +11079,970c00,1,1,f +11079,973pb0022c01,15,1,f +11080,613p01,2,2,f +11082,2397,1,1,f +11082,2452,0,2,f +11082,2462,0,2,f +11082,2470,6,2,f +11082,2488,0,1,f +11082,3004,6,1,f +11082,3004,0,1,f +11082,3020,4,2,f +11082,3021,0,2,f +11082,3023,6,1,f +11082,3626bpx122,14,1,f +11082,3747a,0,1,f +11082,3847,8,1,f +11082,4276b,0,2,f +11082,4488,0,2,f +11082,4493c01pb01,6,1,f +11082,6019,0,4,f +11082,6122,0,1,f +11082,6123,8,2,f +11082,6125,4,1,f +11082,87685,4,1,f +11082,87686,4,1,f +11082,87687,4,1,f +11082,970d02,4,1,f +11082,973pb0074c02,4,1,f +11084,2432,72,1,f +11084,2540,72,2,f +11084,2780,0,2,f +11084,2780,0,1,t +11084,2817,71,1,f +11084,3023,14,1,f +11084,32523,72,2,f +11084,3710,14,1,f +11084,52107,14,1,f +11084,54200,40,1,f +11084,54200,40,1,t +11084,60478,14,1,f +11084,6141,0,1,f +11084,6141,0,1,t +11084,63868,14,1,f +11085,2346,0,4,f +11085,2347,14,1,f +11085,2413,1,2,f +11085,2435,2,1,f +11085,2458,4,4,f +11085,2460,4,1,f +11085,2479,7,1,f +11085,2847c02,0,1,f +11085,3001,1,4,f +11085,3001,15,4,f +11085,3001,4,4,f +11085,3001,0,2,f +11085,3001,14,4,f +11085,3002,4,2,f +11085,3002,0,2,f +11085,3002,1,2,f +11085,3002,14,2,f +11085,3002,15,2,f +11085,3003,1,6,f +11085,3003,14,6,f +11085,3003,4,4,f +11085,3003,0,4,f +11085,3003,15,4,f +11085,3004,0,8,f +11085,3004,15,14,f +11085,3004,14,16,f +11085,3004,4,14,f +11085,3004,1,16,f +11085,3005,1,8,f +11085,3005,4,6,f +11085,3005,15,6,f +11085,3005,14,8,f +11085,3005,0,4,f +11085,3005pe1,14,2,f +11085,3008,1,4,f +11085,3008,14,4,f +11085,3009,15,2,f +11085,3009,14,4,f +11085,3009,1,4,f +11085,3010,0,8,f +11085,3010,1,14,f +11085,3010,14,14,f +11085,3010,4,12,f +11085,3010,15,12,f +11085,3010p01,14,1,f +11085,3010p08,4,1,f +11085,3010pb003,4,1,f +11085,3010pb003,0,1,f +11085,3010px1,0,1,f +11085,30182,14,2,f +11085,3020,14,4,f +11085,3020,4,2,f +11085,3020,1,4,f +11085,3022,1,4,f +11085,3022,14,2,f +11085,3029,4,1,f +11085,3029,1,1,f +11085,3030,1,2,f +11085,3031,1,1,f +11085,3031,4,1,f +11085,3034,14,2,f +11085,3036,1,1,f +11085,3039,47,2,f +11085,3039,14,4,f +11085,3039,4,2,f +11085,3040b,14,4,f +11085,3040b,4,4,f +11085,3062b,0,6,f +11085,3065,47,4,f +11085,3149c01,0,2,f +11085,3176,4,1,f +11085,3297,1,10,f +11085,3298,4,4,f +11085,3298,1,4,f +11085,3298,14,4,f +11085,3299,1,4,f +11085,3300,1,4,f +11085,3307,14,4,f +11085,3315,0,1,f +11085,3403c01,4,1,f +11085,3482,15,6,f +11085,3483,0,4,f +11085,3622,4,4,f +11085,3622,1,4,f +11085,3622,15,4,f +11085,3622,14,4,f +11085,3626bp05,14,1,f +11085,3626bpr0001,14,1,f +11085,3633,15,4,f +11085,3634,0,4,f +11085,3660,1,4,f +11085,3665,4,4,f +11085,3665,14,4,f +11085,3679,7,2,f +11085,3680,4,2,f +11085,3700,4,6,f +11085,3706,0,4,f +11085,3707,0,2,f +11085,3710,4,2,f +11085,3710,1,6,f +11085,3730,1,1,f +11085,3731,1,1,f +11085,3737,0,2,f +11085,3747b,14,2,f +11085,3747b,1,2,f +11085,3747b,4,4,f +11085,3795,14,2,f +11085,3795,1,2,f +11085,3795,4,2,f +11085,3823,47,1,f +11085,3829c01,0,2,f +11085,3832,1,2,f +11085,3832,4,2,f +11085,3853,4,4,f +11085,3854,15,8,f +11085,3856,1,8,f +11085,3857,2,1,f +11085,3861b,4,1,f +11085,3937,14,4,f +11085,3938,7,4,f +11085,3941,4,4,f +11085,3956,4,1,f +11085,3958,1,2,f +11085,4032a,1,8,f +11085,4070,14,4,f +11085,4079,0,2,f +11085,4175,0,2,f +11085,4286,4,4,f +11085,4286,1,2,f +11085,4286,14,2,f +11085,4287,14,4,f +11085,4287,1,4,f +11085,4477,14,2,f +11085,4485,4,1,f +11085,4485,15,1,f +11085,4589,15,6,f +11085,4592,0,2,f +11085,4594,47,1,f +11085,5011,0,1,f +11085,5306bc162,0,1,f +11085,55298,8,1,f +11085,56823,0,1,f +11085,6041,0,1,f +11085,6232,4,6,f +11085,6248,15,6,f +11085,70278,0,1,f +11085,73037,4,1,f +11085,85546,14,2,f +11085,970c00,0,1,f +11085,970c00,15,1,f +11085,973p01c02,15,1,f +11085,973pr1156c01,1,1,f +11086,2412b,8,2,f +11086,2413,8,1,f +11086,2446,7,1,f +11086,2540,7,1,f +11086,3002,0,1,f +11086,3020,73,1,f +11086,3022,15,2,f +11086,3023,1,1,f +11086,30324,7,1,f +11086,30360,15,1,f +11086,30363,15,1,f +11086,3040b,15,1,f +11086,3069b,15,1,f +11086,3069bpa2,8,2,f +11086,3069bpr0090,8,1,f +11086,32064b,15,3,f +11086,3298,73,1,f +11086,3626bpx24,14,1,f +11086,3706,0,1,f +11086,3941,0,2,f +11086,3942c,0,1,f +11086,3957a,0,1,f +11086,4032a,0,1,f +11086,4070,15,1,f +11086,4740,36,1,f +11086,769,61,1,f +11086,970x026,1,1,f +11086,973px57c01,7,1,f +11087,3005,46,2,f +11087,3024,36,2,f +11087,3024,34,2,f +11087,3062b,36,2,f +11087,3065,33,2,f +11087,3066,33,2,f +11087,3067,46,2,f +11087,3939,46,1,f +11087,4213,33,1,f +11087,4315,15,1,f +11087,4474,33,1,f +11087,4625,15,1,f +11088,3003,3,1,f +11088,3010,25,1,f +11088,3020,25,1,f +11088,3031,25,1,f +11088,3034,462,2,f +11088,30374,41,1,f +11088,3062b,6,2,f +11088,3069bpx39,33,1,f +11088,3069bpx41,15,1,f +11088,33009px1,11,1,f +11088,33009px2,4,1,f +11088,33286,25,7,f +11088,33286,14,1,f +11088,33291,5,1,t +11088,33291,5,6,f +11088,3460,25,3,f +11088,3626bpb0009,14,1,f +11088,3659,25,2,f +11088,3665,3,2,f +11088,3794a,4,2,f +11088,3899,45,1,f +11088,40232,8,1,f +11088,40234,7,1,f +11088,40240,366,1,f +11088,40249px2,20,1,f +11088,40253,462,1,f +11088,41539,20,1,f +11088,41539,22,1,f +11088,4286,25,2,f +11088,4449,4,1,f +11088,4532,3,1,f +11088,4533,15,1,f +11088,4589,5,4,f +11088,4599a,5,1,f +11088,4722cdb01,89,1,f +11088,4740,45,1,f +11088,50231px1,0,1,f +11088,6126a,57,2,f +11088,6131,22,1,f +11088,6182,462,4,f +11088,6191,25,1,f +11088,970c00,7,1,f +11088,973px151c01,1,1,f +11088,x247px1,320,1,f +11088,x248,462,1,f +11090,2039,15,2,f +11090,2342,0,1,f +11090,2357,14,1,f +11090,2362b,15,1,f +11090,2412b,7,2,f +11090,2412b,0,5,f +11090,2420,7,4,f +11090,2420,4,2,f +11090,2431,15,4,f +11090,2431,0,8,f +11090,2445,4,1,f +11090,2456,0,4,f +11090,2486,0,2,f +11090,2495,4,1,f +11090,2496,0,1,f +11090,2524,6,1,f +11090,2871a,0,2,f +11090,2875,0,20,f +11090,2876,0,2,f +11090,2877,0,32,f +11090,2877,7,12,f +11090,2878c01,0,10,f +11090,2880,0,4,f +11090,2881,0,2,f +11090,2916,7,2,f +11090,2917,0,2,f +11090,2918,47,2,f +11090,2919,46,2,f +11090,2920,0,6,f +11090,298c02,7,2,t +11090,298c02,7,2,f +11090,3001,14,1,f +11090,3001,0,2,f +11090,3002,0,4,f +11090,3003,0,5,f +11090,3003,14,3,f +11090,3004,14,7,f +11090,3004,0,7,f +11090,3004,15,1,f +11090,3004,7,14,f +11090,3004,4,2,f +11090,3005,7,28,f +11090,3008,7,2,f +11090,3009,7,25,f +11090,3010,14,2,f +11090,3010,7,5,f +11090,3020,4,2,f +11090,3020,7,6,f +11090,3020,0,17,f +11090,3021,0,4,f +11090,3022,14,3,f +11090,3022,4,1,f +11090,3022,0,3,f +11090,3022,7,9,f +11090,3023,4,6,f +11090,3023,7,10,f +11090,3023,14,4,f +11090,3023,1,2,f +11090,3023,0,16,f +11090,3024,7,8,f +11090,3030,7,2,f +11090,3030,0,1,f +11090,3032,0,2,f +11090,3032,7,2,f +11090,3033,7,2,f +11090,3034,0,4,f +11090,3035,0,2,f +11090,3035,7,3,f +11090,3036,7,3,f +11090,3039,0,8,f +11090,3039pc4,0,1,f +11090,3040b,0,2,f +11090,3068b,0,4,f +11090,3068bp17,15,1,f +11090,3069b,14,3,f +11090,3069b,0,15,f +11090,3069bp25,7,1,f +11090,3069bp52,15,2,f +11090,3069bp68,15,2,f +11090,3070b,4,1,t +11090,3070b,15,1,t +11090,3070b,14,1,t +11090,3070b,15,2,f +11090,3070b,4,2,f +11090,3070b,14,3,f +11090,3134,4,2,f +11090,3186,15,1,f +11090,3187,15,1,f +11090,3194,7,2,f +11090,3195,7,2,f +11090,3298,0,6,f +11090,3455,7,2,f +11090,3460,1,2,f +11090,3460,4,2,f +11090,3460,15,2,f +11090,3622,4,2,f +11090,3623,1,4,f +11090,3623,15,4,f +11090,3623,7,4,f +11090,3623,4,2,f +11090,3624,4,2,f +11090,3626b,0,2,f +11090,3626bpr0001,14,11,f +11090,3629,7,1,f +11090,3660,7,2,f +11090,3660,4,4,f +11090,3660,0,26,f +11090,3666,0,12,f +11090,3666,15,4,f +11090,3666,7,1,f +11090,3710,4,6,f +11090,3710,1,4,f +11090,3710,0,13,f +11090,3710,15,4,f +11090,3710,7,10,f +11090,3794a,7,6,f +11090,3794a,15,4,f +11090,3795,0,12,f +11090,3795,14,2,f +11090,3832,0,3,f +11090,3855,47,1,f +11090,3899,1,4,f +11090,3901,6,1,f +11090,3901,0,2,f +11090,3937,14,3,f +11090,3938,14,3,f +11090,3941,46,2,f +11090,3956,0,1,f +11090,3960,15,2,f +11090,4022,0,6,f +11090,4025,0,5,f +11090,4033,0,1,f +11090,4033,7,14,f +11090,4034,47,14,f +11090,4035,7,4,f +11090,4036,41,4,f +11090,4070,7,2,f +11090,4079,14,6,f +11090,4079,4,4,f +11090,4093a,7,3,f +11090,4162,0,12,f +11090,4162,15,4,f +11090,4181p04,7,4,f +11090,4182p04,7,4,f +11090,4183,47,8,f +11090,4275b,0,1,f +11090,4276b,0,1,f +11090,4449,15,2,f +11090,4449,6,3,f +11090,4449,0,2,f +11090,4477,4,6,f +11090,4477,15,4,f +11090,4477,1,6,f +11090,4485,4,1,f +11090,4504,0,2,f +11090,4530,0,1,f +11090,4530,6,2,f +11090,4531,7,2,f +11090,4588,0,1,f +11090,4719,4,1,f +11090,4719,0,1,f +11090,4746,0,1,f +11090,4865a,14,2,f +11090,5306bc036,0,1,f +11090,6035,15,1,f +11090,6093,0,1,f +11090,6141,0,2,f +11090,6141,0,1,t +11090,69c01,15,1,f +11090,70358,0,1,f +11090,73092,0,6,f +11090,74746,8,4,f +11090,74747,8,16,f +11090,92851,47,4,f +11090,970c00,1,5,f +11090,970c00,15,1,f +11090,970c00,0,3,f +11090,970c00,4,2,f +11090,973p01c01,15,1,f +11090,973p18c01,1,1,f +11090,973p19c01,1,1,f +11090,973p22c01,0,1,f +11090,973p71c01,15,1,f +11090,973p72c01,15,1,f +11090,973px1c01,1,1,f +11090,973px61c01,15,2,f +11090,973px62c01,15,1,f +11090,973px63c01,1,1,f +11093,5306bc378,0,2,f +11093,9912,2,1,f +11094,2039,15,2,f +11094,2357,14,9,f +11094,2357,0,4,f +11094,2412b,4,1,f +11094,2431,14,2,f +11094,2436,4,1,f +11094,2441,4,1,f +11094,2453a,14,1,f +11094,2454a,14,3,f +11094,2456,0,2,f +11094,2456,14,4,f +11094,2465,0,5,f +11094,2465,14,2,f +11094,2495,4,1,f +11094,2496,0,1,f +11094,2524,6,1,f +11094,2583,14,2,f +11094,2617,7,2,f +11094,2642,7,2,f +11094,3001,14,2,f +11094,3002,14,3,f +11094,3003,15,2,f +11094,3003,14,4,f +11094,3004,14,26,f +11094,3004,0,4,f +11094,3004,7,16,f +11094,3004,4,5,f +11094,3005,0,4,f +11094,3005,47,1,f +11094,3005,14,8,f +11094,3006,0,1,f +11094,3006,14,2,f +11094,3007,0,1,f +11094,3007,14,3,f +11094,3007,4,1,f +11094,3008,15,1,f +11094,3008,14,4,f +11094,3008,0,5,f +11094,3009,14,6,f +11094,3010,4,2,f +11094,3010,0,3,f +11094,3010,14,4,f +11094,3020,7,6,f +11094,3020,4,1,f +11094,3022,7,4,f +11094,3022,4,4,f +11094,3022,14,4,f +11094,3023,15,2,f +11094,3023,14,18,f +11094,3023,4,8,f +11094,3024,15,1,f +11094,3024,14,6,f +11094,3028,7,1,f +11094,3031,4,1,f +11094,3032,4,2,f +11094,3033,7,2,f +11094,3033,0,2,f +11094,3034,15,1,f +11094,3034,4,2,f +11094,3034,7,2,f +11094,3036,7,4,f +11094,3039,14,2,f +11094,3039p12,0,1,f +11094,3039p23,7,1,f +11094,3039p34,7,1,f +11094,3040b,4,2,f +11094,3062b,14,26,f +11094,3068b,4,5,f +11094,3069b,14,5,f +11094,3069b,4,1,f +11094,3069bpr0099,15,4,f +11094,3070b,15,4,f +11094,3070b,4,3,f +11094,3070b,14,4,f +11094,3070bpc2,15,2,f +11094,3081cc01,15,12,f +11094,3185,4,4,f +11094,3297,0,14,f +11094,3298,14,4,f +11094,3298,0,4,f +11094,3299,0,1,f +11094,3300,0,1,f +11094,3455,14,2,f +11094,3460,14,3,f +11094,3460,7,1,f +11094,3622,0,2,f +11094,3622,14,11,f +11094,3623,14,4,f +11094,3623,4,2,f +11094,3624,4,3,f +11094,3625,0,1,f +11094,3626bpr0001,14,7,f +11094,3633,4,4,f +11094,3641,0,12,f +11094,3660,14,2,f +11094,3665,14,2,f +11094,3666,0,2,f +11094,3666,14,2,f +11094,3675,0,6,f +11094,3679,7,4,f +11094,3680,14,1,f +11094,3680,0,1,f +11094,3680,4,2,f +11094,3710,7,1,f +11094,3710,4,3,f +11094,3710,0,1,f +11094,3710,14,3,f +11094,3730,4,3,f +11094,3731,4,2,f +11094,3741,2,2,f +11094,3742,4,6,f +11094,3742,4,2,t +11094,3754,14,4,f +11094,3755,14,1,f +11094,3788,4,1,f +11094,3794a,14,1,f +11094,3821,4,1,f +11094,3822,4,1,f +11094,3829c01,4,1,f +11094,3853,15,4,f +11094,3854,15,8,f +11094,3855,47,1,f +11094,3898,15,1,f +11094,3899,1,3,f +11094,3900,15,1,f +11094,3901,6,1,f +11094,3937,14,1,f +11094,3938,14,1,f +11094,3941,14,12,f +11094,3941,46,2,f +11094,3960,15,2,f +11094,4033,15,2,f +11094,4033,0,1,f +11094,4070,4,2,f +11094,4079,4,7,f +11094,4079,14,1,f +11094,4150pr0001,15,1,f +11094,4161,0,10,f +11094,4162,14,7,f +11094,4175,14,4,f +11094,4282,14,1,f +11094,4282,7,3,f +11094,4287,14,2,f +11094,4345ap03,14,1,f +11094,4346p03,14,1,f +11094,4449,15,3,f +11094,4449,6,4,f +11094,4449,0,1,f +11094,4477,7,6,f +11094,4509,0,1,f +11094,4530,0,1,f +11094,4533,15,1,f +11094,4589,14,5,f +11094,4600,0,4,f +11094,4624,15,12,f +11094,47899c01,15,1,f +11094,4865a,4,4,f +11094,57503,334,1,f +11094,57504,334,1,f +11094,57505,334,1,f +11094,57506,334,1,f +11094,6141,47,2,f +11094,6141,34,1,f +11094,6141,36,3,f +11094,6141,14,23,f +11094,73194c01,15,1,f +11094,92410,4,1,f +11094,970c00,1,2,f +11094,970c00,0,3,f +11094,970c00,4,1,f +11094,970c00,7,1,f +11094,973p18c01,1,1,f +11094,973p19c01,1,2,f +11094,973px1c01,1,1,f +11094,973px3c01,15,1,f +11094,973px62c01,15,1,f +11094,973px63c01,1,1,f +11094,x53,15,2,f +11095,30361pr0011a,15,1,f +11095,30362,15,2,f +11095,30367cpr0022,15,1,f +11095,3878,0,1,f +11095,60474,15,1,f +11095,6141,0,1,t +11095,6141,0,1,f +11095,87580,15,1,f +11096,3001,1,2,f +11096,3001,14,3,f +11096,3001,4,3,f +11096,3002,4,2,f +11096,3002,1,2,f +11096,3002,14,2,f +11096,3003,4,19,f +11096,3003,1,18,f +11096,3003,15,15,f +11096,3003,14,19,f +11096,3004,47,2,f +11096,3004,14,10,f +11096,3004,4,10,f +11096,3004,1,4,f +11096,3005,1,2,f +11096,3005,4,6,f +11096,3005,14,6,f +11096,3008,14,1,f +11096,3009,1,2,f +11096,3009,14,4,f +11096,3009,4,2,f +11096,3010,14,5,f +11096,3010,1,3,f +11096,3010,4,4,f +11096,3020,4,3,f +11096,3021,4,2,f +11096,3022,4,2,f +11096,3031,4,1,f +11096,3035,4,1,f +11096,3039,4,2,f +11096,3081cc01,4,2,f +11096,3137c01,0,2,f +11096,3297,4,4,f +11096,3298,4,4,f +11096,3299,4,2,f +11096,3300,4,2,f +11096,3460,4,4,f +11096,3461,14,1,f +11096,3462,14,1,f +11096,3480,7,1,f +11096,3481,4,1,f +11096,3622,14,4,f +11096,3622,4,2,f +11096,3622,1,2,f +11096,3626apr0001,14,1,f +11096,3633,4,4,f +11096,3641,0,4,f +11096,3660,4,4,f +11096,3710,4,3,f +11096,3741,2,2,f +11096,3742,14,1,t +11096,3742,15,1,t +11096,3742,14,3,f +11096,3742,15,3,f +11096,3823,47,1,f +11096,3832,4,2,f +11096,3853,4,4,f +11096,3854,15,8,f +11096,3856,2,4,f +11096,3861b,4,1,f +11096,3867,2,1,f +11096,3901,6,1,f +11096,73312,4,1,f +11096,970c00,0,1,f +11096,973c01,15,1,f +11096,bb32,7,1,f +11096,x268pb01,7,1,f +11098,2016b,0,1,f +11098,219,72,14,t +11098,2357,2,2,f +11098,2376,0,3,f +11098,2412b,14,1,f +11098,2412b,71,18,f +11098,2412b,72,1,f +11098,2412b,0,4,f +11098,2412b,4,5,f +11098,2419,0,1,f +11098,2419,4,1,f +11098,2431,0,2,f +11098,2431,1,1,f +11098,2431,2,2,f +11098,2431,4,2,f +11098,2431pr0028,72,3,f +11098,2432,71,3,f +11098,2432,14,10,f +11098,2436,71,8,f +11098,2444,71,4,f +11098,2445,0,2,f +11098,2449,14,2,f +11098,2456,2,1,f +11098,2540,72,1,f +11098,2555,72,5,f +11098,2584,0,1,f +11098,2585,0,1,f +11098,2780,0,4,f +11098,2780,0,1,t +11098,2853,14,2,f +11098,2866,14,2,f +11098,2871b,0,2,f +11098,2876,72,2,f +11098,2877,2,24,f +11098,2877,72,12,f +11098,2877,4,4,f +11098,2878,0,12,f +11098,2905,14,2,f +11098,2919,46,1,f +11098,2919,36,1,f +11098,2922,0,2,f +11098,2924b,2,2,f +11098,2928,2,2,f +11098,298c02,1,1,t +11098,298c02,4,2,f +11098,298c02,1,1,f +11098,298c02,4,1,t +11098,3001,0,2,f +11098,3002,4,1,f +11098,3004,0,4,f +11098,3004,4,1,f +11098,30042,72,1,f +11098,3008,2,4,f +11098,3009,14,2,f +11098,3009,72,2,f +11098,3009,2,6,f +11098,3010,4,2,f +11098,3010,2,2,f +11098,30133,4,1,f +11098,30151a,4,4,f +11098,3020,72,16,f +11098,3021,4,2,f +11098,3021,0,4,f +11098,3021,71,5,f +11098,3022,14,2,f +11098,3022,4,1,f +11098,3023,14,26,f +11098,3023,2,2,f +11098,3023,36,2,f +11098,3023,72,2,f +11098,30236,72,2,f +11098,30237a,71,2,f +11098,3027,0,2,f +11098,3028,72,1,f +11098,3029,0,1,f +11098,3031,4,2,f +11098,3031,72,4,f +11098,3032,19,3,f +11098,3034,4,1,f +11098,3034,0,1,f +11098,3035,0,2,f +11098,30361c,72,1,f +11098,30367b,72,1,f +11098,3037,4,1,f +11098,30374,14,2,f +11098,30383,71,2,f +11098,3039,72,2,f +11098,3039,4,2,f +11098,30395,72,1,f +11098,3041,4,2,f +11098,3043,4,1,f +11098,30552,72,2,f +11098,30552,0,2,f +11098,30553,72,2,f +11098,3062b,4,2,f +11098,3062b,71,10,f +11098,30648,0,2,f +11098,3070bpr0007,71,1,f +11098,3070bpr0007,71,1,t +11098,32002,72,2,t +11098,32002,72,4,f +11098,32013,71,4,f +11098,32014,0,1,f +11098,32028,2,2,f +11098,32039,0,4,f +11098,32062,4,6,f +11098,32064b,14,3,f +11098,32123b,71,2,f +11098,32123b,71,2,t +11098,32124,0,2,f +11098,3297,2,2,f +11098,3403,71,1,f +11098,3404,71,1,f +11098,3622,4,16,f +11098,3623,0,2,f +11098,3624,1,1,f +11098,3626b,0,2,f +11098,3626bpr0216,14,1,f +11098,3626bpr0245,14,1,f +11098,3626bpr0252,14,1,f +11098,3626bpr0270,14,1,f +11098,3626bpr0389,14,1,f +11098,3660,4,2,f +11098,3660,2,3,f +11098,3665,72,2,f +11098,3666,0,4,f +11098,3666,72,2,f +11098,3666,2,1,f +11098,3666,71,1,f +11098,3666,1,1,f +11098,3678b,72,1,f +11098,3678b,4,4,f +11098,3700,72,1,f +11098,3705,0,4,f +11098,3710,72,12,f +11098,3710,19,6,f +11098,3710,2,9,f +11098,3743,0,2,f +11098,3788,14,1,f +11098,3794a,0,7,f +11098,3794a,71,2,f +11098,3794a,2,2,f +11098,3795,1,1,f +11098,3795,71,5,f +11098,3795,0,2,f +11098,3823,40,1,f +11098,3829c01,14,2,f +11098,3829c01,4,1,f +11098,3832,72,1,f +11098,3833,4,4,f +11098,3836,70,1,f +11098,3837,0,1,f +11098,3894,14,1,f +11098,3937,71,2,f +11098,3937,0,4,f +11098,3938,71,4,f +11098,3941,15,4,f +11098,3941,71,1,f +11098,3958,72,1,f +11098,4025,0,3,f +11098,4032a,15,4,f +11098,4032a,4,4,f +11098,4032a,2,4,f +11098,4070,0,10,f +11098,4079,14,4,f +11098,4081b,4,1,f +11098,4081b,72,3,f +11098,4085c,71,5,f +11098,4095,0,2,f +11098,4150,0,2,f +11098,4162,71,4,f +11098,4162,2,4,f +11098,4162,14,2,f +11098,4162,0,4,f +11098,4176,40,1,f +11098,4181,2,3,f +11098,4182,2,3,f +11098,4183,47,6,f +11098,41862,71,2,f +11098,4215b,4,2,f +11098,4287,4,2,f +11098,43337,4,2,f +11098,43719,4,1,f +11098,44294,71,2,f +11098,44300,0,2,f +11098,44301a,0,2,f +11098,44302a,0,2,f +11098,44302a,14,2,f +11098,4445,72,2,f +11098,4460a,1,2,f +11098,4460a,14,2,f +11098,44728,0,1,f +11098,4477,72,1,f +11098,4488,0,4,f +11098,4509,72,3,f +11098,4510,72,8,f +11098,4511,71,4,f +11098,4515,71,2,f +11098,4518bc02,0,1,f +11098,45677,4,1,f +11098,4589,182,1,f +11098,4599a,71,4,f +11098,4733,1,2,f +11098,47457,4,1,f +11098,47458,4,1,f +11098,47720,0,1,f +11098,48336,0,1,f +11098,4854,0,1,f +11098,4864b,40,1,f +11098,4865a,1,8,f +11098,4872,40,1,f +11098,50745,72,2,f +11098,50745,4,4,f +11098,50950,72,2,f +11098,52031,1,1,f +11098,52036,72,1,f +11098,52038,4,3,f +11098,52501,4,2,f +11098,52501,1,2,f +11098,5306bc015,0,2,f +11098,53400,72,20,f +11098,53401,72,8,f +11098,53403,72,1,f +11098,53406,72,1,f +11098,54200,46,4,f +11098,54200,182,4,f +11098,54200,4,2,f +11098,54200,1,2,f +11098,54200,72,4,f +11098,54200,36,4,f +11098,54754c01,0,1,f +11098,55455c01,0,1,f +11098,55981,71,2,f +11098,56823c50,0,1,f +11098,57051,383,12,f +11098,57878,0,24,f +11098,6014b,15,4,f +11098,6014b,71,6,f +11098,6015,0,10,f +11098,6019,71,2,f +11098,6019,14,2,f +11098,6035,15,1,f +11098,6134,4,2,f +11098,6140,14,2,f +11098,6141,47,3,f +11098,6141,72,8,f +11098,6141,36,4,f +11098,6141,0,1,t +11098,6141,72,1,t +11098,6141,46,2,t +11098,6141,36,2,t +11098,6141,47,1,t +11098,6141,0,4,f +11098,6141,46,4,f +11098,6157,71,3,f +11098,6180,4,4,f +11098,6238,40,1,f +11098,6536,0,1,f +11098,6541,4,4,f +11098,6567c02,2,1,f +11098,6583,14,2,f +11098,6584,0,1,f +11098,6587,72,1,f +11098,6632,14,2,f +11098,6636,4,2,f +11098,6636,72,2,f +11098,6636,71,5,f +11098,7898stk01,9999,1,t +11098,78c02,0,4,f +11098,91992,0,2,f +11098,91994,0,8,f +11098,970c00,25,4,f +11098,970c00,1,1,f +11098,973pr1160c01,1,1,f +11098,973pr1182c01,25,1,f +11098,973pr1183c01,25,2,f +11098,973pr1201c01,15,1,f +11099,3626apr0001,14,6,f +11099,3844,0,1,f +11099,3846p45,7,1,f +11099,3846p48,6,1,f +11099,3846p4g,7,1,f +11099,3847a,8,2,f +11099,3848,6,1,f +11099,3896,8,1,f +11099,3896,0,1,f +11099,4496,6,1,f +11099,4498,6,2,f +11099,4499,6,2,f +11099,4505,0,1,f +11099,4506,2,1,f +11099,4506,6,1,f +11099,4523,6,1,f +11099,87692,14,1,t +11099,87692,4,1,t +11099,87693,4,1,f +11099,87693,14,1,f +11099,87694,14,1,t +11099,87694,4,1,t +11099,970c00,2,2,f +11099,970c00,1,1,f +11099,970x021,0,2,f +11099,970x026,4,1,f +11099,973p43c01,1,2,f +11099,973p46c01,2,1,f +11099,973p46c02,7,1,f +11099,973p48c01,2,1,f +11099,973px138c01,4,1,f +11100,2577,1,2,f +11100,3001,1,1,f +11100,3003pe2,14,1,f +11100,3010,4,2,f +11100,3020,4,1,f +11100,3020,0,1,f +11100,3039,14,2,f +11100,3298,4,2,f +11100,3741,2,1,f +11100,3742,15,3,f +11100,3742,15,1,t +11100,3747b,4,2,f +11100,3795,4,1,f +11100,4745,14,1,f +11100,6232,1,1,f +11101,45462,212,4,f +11101,45462,41,2,f +11101,45462,118,3,f +11101,45462,42,4,f +11101,45462,52,4,f +11101,45462,45,6,f +11101,45463,45,4,f +11101,45463,118,3,f +11101,45463,232,4,f +11101,46286,41,4,f +11101,46286,52,2,f +11101,46286,42,2,f +11101,46286,45,7,f +11101,48683,41,1,f +11101,clikits021,43,1,f +11101,clikits025,43,10,f +11101,clikits064,383,3,f +11101,clikits110,383,3,f +11101,clikits156,9999,1,f +11101,clikits157,89,1,f +11101,clikits158,89,1,f +11101,clikits159,89,1,f +11102,2343,47,1,f +11102,2528,0,1,f +11102,2555,7,1,f +11102,3005,0,1,f +11102,30148,0,1,f +11102,3062b,7,1,f +11102,3626bp47,14,1,f +11102,3626bpr0126,14,1,f +11102,3626bpr0895,15,1,f +11102,3626bpx32,14,1,f +11102,3837,8,1,f +11102,3841,8,1,f +11102,4095,0,1,f +11102,4349,7,1,f +11102,4485,0,1,f +11102,4485,1,1,f +11102,4738a,6,1,f +11102,4739a,6,1,f +11102,57503,334,1,f +11102,57504,334,1,f +11102,57505,334,1,f +11102,57506,334,1,f +11102,6141,15,2,f +11102,6141,15,1,t +11102,6260,15,1,f +11102,6265,15,2,f +11102,6265,15,1,t +11102,6266,15,2,f +11102,970c00,0,1,f +11102,970c00,1,1,f +11102,970d01,0,1,f +11102,973p36c01,0,1,f +11102,973px64c01,15,1,f +11102,973px65c01,15,1,f +11103,30148,0,1,f +11103,3626bpx32,14,1,f +11103,4485,1,1,f +11103,970c00,1,1,f +11103,973px64c01,15,1,f +11104,2780,0,1,f +11104,2780,0,1,t +11104,3001,4,3,f +11104,30165,4,4,f +11104,3020,72,3,f +11104,3021,4,3,f +11104,3022,4,2,f +11104,3023,71,1,f +11104,3034,4,1,f +11104,30414,72,4,f +11104,30602,35,2,f +11104,30602,4,2,f +11104,30663,71,2,f +11104,32000,0,1,f +11104,3666,4,1,f +11104,3700,71,1,f +11104,3795,4,1,f +11104,4150,4,2,f +11104,41531,71,1,f +11104,42446,72,2,f +11104,4289,72,1,f +11104,43722,4,1,f +11104,43722,72,1,f +11104,43723,72,1,f +11104,43723,4,1,f +11104,44126,4,1,f +11104,44728,4,2,f +11104,4589,0,2,f +11104,46667,72,1,f +11104,4865a,4,1,f +11104,6141,72,2,f +11104,6141,34,1,f +11104,6141,34,1,t +11104,6141,36,1,t +11104,6141,72,1,t +11104,6141,47,2,f +11104,6141,27,2,f +11104,6141,27,1,t +11104,6141,36,3,f +11104,6141,47,1,t +11104,63864,4,2,f +11104,87087,4,2,f +11105,64727,4,2,f +11105,90609,0,4,f +11105,90617,0,4,f +11105,90625,0,1,f +11105,90639pr0003,148,1,f +11105,90641,27,4,f +11105,90650,27,1,f +11105,90652,148,1,f +11105,90661,27,2,f +11105,92199,4,1,f +11105,92201,27,1,f +11105,92205,148,1,f +11105,92207,148,1,f +11105,92208,27,1,f +11105,92219,148,1,f +11105,93277,4,1,f +11105,93575,27,2,f +11107,2431,15,1,f +11107,2432,0,1,f +11107,2441,0,1,f +11107,2446,4,1,f +11107,2447,41,1,f +11107,3298p54,15,1,f +11107,3626apr0001,14,1,f +11107,3641,0,4,f +11107,3710,15,1,f +11107,3829c01,4,1,f +11107,3839b,7,1,f +11107,3937,4,1,f +11107,3938,7,1,f +11107,4286,15,2,f +11107,4624,7,4,f +11107,970c00,4,1,f +11107,973p0ac04,4,1,f +11108,3020,0,4,f +11108,3021,0,4,f +11108,3022,0,4,f +11108,3023,0,4,f +11108,3029,0,2,f +11108,3031,0,2,f +11108,3032,0,2,f +11108,3034,0,2,f +11108,3035,0,2,f +11108,3036,0,2,f +11108,3460,0,2,f +11108,3623,0,2,f +11108,3666,0,2,f +11108,3710,0,2,f +11108,3795,0,2,f +11108,3832,0,2,f +11108,4477,0,2,f +11112,606p02,7,2,f +11113,2419,2,2,f +11113,3003,14,1,f +11113,3010,4,1,f +11113,3020,2,1,f +11113,3020,4,1,f +11113,3022,4,1,f +11113,3022,14,1,f +11113,3034,4,1,f +11113,3062b,1,4,f +11113,3298p19,14,2,f +11113,3626bp04,14,1,f +11113,3633,14,1,f +11113,3747a,4,1,f +11113,3795,2,1,f +11113,3829c01,1,1,f +11113,3901,0,1,f +11113,3957a,15,1,f +11113,4286,4,2,f +11113,4495b,2,1,f +11113,970c00,0,1,f +11113,973p73c01,2,1,f +11118,2780,0,1,t +11118,2780,0,2,f +11118,32013,0,2,f +11118,32039,0,3,f +11118,32062,4,3,f +11118,43093,1,2,f +11118,4519,71,2,f +11118,54821,14,1,f +11118,57539,4,2,f +11118,57539pat0004,47,2,f +11118,57564,14,1,f +11118,59443,0,3,f +11118,64262,42,1,f +11118,6536,0,1,f +11118,6553,0,2,f +11118,90607,0,2,f +11118,90611,0,3,f +11118,90617,4,4,f +11118,90626,0,1,f +11118,90639,148,2,f +11118,90639,4,2,f +11118,90641,0,2,f +11118,90661,0,3,f +11118,93571,4,2,f +11118,98564,148,2,f +11118,98569,85,1,f +11118,98570pat01,15,1,f +11118,98575,148,1,f +11118,98588pat0002,148,4,f +11118,98592,148,2,f +11118,98592,85,2,f +11119,29bc01,4,16,f +11119,3001a,0,7,f +11119,3002a,0,1,f +11119,3003,0,2,f +11119,3004,14,24,f +11119,3004,0,9,f +11119,3004,1,4,f +11119,3005,0,3,f +11119,3005,14,16,f +11119,3005,4,5,f +11119,3005,47,2,f +11119,3006,14,4,f +11119,3008a,4,2,f +11119,3008a,0,4,f +11119,3009a,0,1,f +11119,3009a,4,2,f +11119,3010,0,1,f +11119,3020,4,10,f +11119,3020,14,16,f +11119,3020,0,3,f +11119,3020,7,12,f +11119,3021,7,16,f +11119,3021,14,1,f +11119,3021,0,4,f +11119,3022,0,1,f +11119,3022,7,8,f +11119,3022,14,8,f +11119,3022,4,11,f +11119,3023a,0,11,f +11119,3023a,14,1,f +11119,3023a,47,8,f +11119,3024,0,4,f +11119,3024,14,1,f +11119,3027,7,2,f +11119,3034a,15,25,f +11119,3036,7,4,f +11119,3037,0,2,f +11119,3037,4,2,f +11119,3038,4,4,f +11119,3038,0,2,f +11119,3039,0,5,f +11119,3040a,0,2,f +11119,3045,0,2,f +11119,3058b,7,1,f +11119,3062a,14,1,f +11119,3062a,4,16,f +11119,3069a,0,1,f +11119,3081bc01,4,3,f +11119,3185,4,4,f +11119,3218,15,3,f +11119,3228a,1,14,f +11119,3229a,1,16,f +11119,3230a,1,16,f +11119,32bc01,4,2,f +11119,3358,4,8,f +11119,3359,4,8,f +11119,33bc01,4,2,f +11119,458,7,4,f +11119,468c01,0,1,f +11119,7049b,15,8,f +11119,737,4,4,f +11119,737c01,4,4,f +11119,813a,7,1,f +11119,815c01,15,1,f +11119,815c02,15,1,f +11119,996bc01,1,4,f +11119,trainsig2,1,2,f +11119,wheel1a,4,16,f +11119,wheel1b,4,4,f +11119,x466,15,1,f +11119,x489,1,2,f +11119,x579c02,0,1,f +11119,x878cx1,1,2,f +11120,11126,25,1,f +11120,11127,41,6,f +11120,11153,326,2,f +11120,11477,326,4,f +11120,12551pr0001,288,1,f +11120,15095pr0001,326,1,f +11120,15100,0,2,f +11120,15101,182,2,f +11120,15104,182,1,f +11120,15108,4,2,f +11120,15336c02,182,1,f +11120,15395,4,1,f +11120,2419,72,1,f +11120,2780,0,2,f +11120,3022,320,2,f +11120,32062,4,2,f +11120,3626cpr1141,288,1,f +11120,3849,179,1,f +11120,4274,71,1,f +11120,43898,179,1,f +11120,51739,72,2,f +11120,53451,15,2,f +11120,53451,0,6,f +11120,59900,182,1,f +11120,60897,4,4,f +11120,6126b,57,2,f +11120,63965,297,1,f +11120,6587,28,2,f +11120,85543,15,1,f +11120,87747,15,2,f +11120,92692,0,2,f +11120,95753pat0005,25,1,f +11120,970c00pr0664,4,1,f +11120,973pr2668c01,4,1,f +11120,98313,148,6,f +11121,122c01,7,2,f +11121,193au,15,1,f +11121,3001a,4,1,f +11121,3002a,4,2,f +11121,3005,14,1,f +11121,3010pb035e,4,1,f +11121,3020,7,2,f +11121,3020,0,1,f +11121,3021,0,2,f +11121,3022,4,3,f +11121,3024,14,2,f +11121,3024,7,2,f +11121,3030,0,1,f +11121,3037,47,1,f +11121,3039,47,1,f +11121,3040b,0,2,f +11121,3062a,15,1,f +11121,3062a,1,1,f +11121,3062a,33,1,f +11121,3464,4,2,f +11121,3622,47,2,f +11121,3623,7,1,f +11121,3624,4,1,f +11121,3626apr0001,14,2,f +11121,3633,7,3,f +11121,3641,0,7,f +11121,3660,15,1,f +11121,3704,0,1,f +11121,3713,7,1,f +11121,3788,4,2,f +11121,3794a,15,1,f +11121,3795,15,1,f +11121,675pr02,15,1,f +11121,8,15,2,f +11121,970c00,0,1,f +11121,970c00,1,1,f +11121,973c07,1,1,f +11121,973c18,0,1,f +11122,2780,0,4,f +11122,32034,0,1,f +11122,32062,0,2,f +11122,32073,0,1,f +11122,32174,1,1,f +11122,32174,0,4,f +11122,32269,7,1,f +11122,32270,7,3,f +11122,32475,1,2,f +11122,32476,73,2,f +11122,32482,73,2,f +11122,32489,1,1,f +11122,32551,1,2,f +11122,32553,7,1,f +11122,32554,54,1,f +11122,32571,33,1,f +11122,3706,0,1,f +11122,3713,7,2,f +11122,4519,0,3,f +11122,gbiocd2001,89,1,f +11123,11089,0,7,f +11123,11089,15,2,f +11123,11090,0,1,t +11123,11090,0,6,f +11123,11097,297,4,f +11123,11100,0,2,f +11123,11107,179,2,f +11123,11107,297,2,f +11123,11127,41,3,f +11123,11129pr0001,70,1,f +11123,11129pr0005,25,1,f +11123,11203,72,3,f +11123,12550pr0001,0,1,f +11123,12551pr0001,288,1,f +11123,12551pr0003,288,1,f +11123,12551pr0004,297,1,f +11123,12825,4,2,f +11123,12825,72,9,f +11123,13731,326,2,f +11123,15207,4,6,f +11123,2357,4,4,f +11123,2412b,4,4,t +11123,2412b,4,12,f +11123,2412b,71,4,f +11123,2444,71,2,f +11123,2445,4,1,f +11123,2445,72,1,f +11123,2465,0,2,f +11123,2654,72,4,f +11123,298c02,4,2,f +11123,298c02,4,1,t +11123,3001,326,6,f +11123,3002,4,2,f +11123,3003,70,4,f +11123,30031,0,5,f +11123,30035,0,1,f +11123,30086,326,2,f +11123,3009,326,4,f +11123,30153,36,1,f +11123,3020,4,8,f +11123,3020,326,2,f +11123,3021,72,6,f +11123,3022,4,1,f +11123,3022,70,3,f +11123,3022,27,1,f +11123,3023,326,14,f +11123,30332,0,2,f +11123,3034,71,2,f +11123,3035,72,2,f +11123,30374,36,4,f +11123,30374,297,1,f +11123,3039,326,10,f +11123,3040b,4,2,f +11123,3040b,288,2,f +11123,3048c,288,24,f +11123,3062b,41,4,f +11123,3062b,4,6,f +11123,3062b,36,2,f +11123,3069bpr0070,0,1,f +11123,3460,72,2,f +11123,3626cpr1119,19,1,f +11123,3626cpr1129,0,1,f +11123,3626cpr1139,288,1,f +11123,3626cpr1141,288,1,f +11123,3626cpr1142,288,1,f +11123,3639,72,2,f +11123,3640,72,2,f +11123,3673,71,2,t +11123,3673,71,4,f +11123,3678b,4,2,f +11123,3700,72,2,f +11123,3710,27,2,f +11123,3794b,27,1,f +11123,3794b,28,2,f +11123,3794b,71,1,f +11123,3794b,72,2,f +11123,3795,4,3,f +11123,3795,72,2,f +11123,3829c01,4,1,f +11123,3832,71,1,f +11123,3848,148,1,f +11123,3937,72,1,f +11123,3937,4,4,f +11123,3938,71,1,f +11123,3958,4,1,f +11123,3958,71,2,f +11123,4006,0,1,f +11123,4032a,4,7,f +11123,4032a,0,2,f +11123,4085c,4,22,f +11123,4150,4,5,f +11123,42060,326,1,f +11123,42061,326,1,f +11123,4282,4,1,f +11123,4349,0,4,f +11123,43713,72,2,f +11123,43719,4,1,f +11123,43898,0,2,f +11123,44301a,72,2,f +11123,44302a,71,2,f +11123,44567a,71,2,f +11123,4477,71,2,f +11123,4497,0,1,f +11123,4589,4,2,f +11123,4599b,71,1,t +11123,4599b,71,2,f +11123,4740,36,4,f +11123,4740,0,2,f +11123,4740,33,1,f +11123,47455,72,2,f +11123,47759,326,5,f +11123,48169,288,2,f +11123,48171,72,2,f +11123,4865a,36,1,f +11123,4873,71,4,f +11123,50304,71,1,f +11123,50305,71,1,f +11123,50373,4,3,f +11123,50943,326,8,f +11123,50950,191,4,f +11123,50950,0,2,f +11123,53451,0,16,f +11123,53451,15,2,t +11123,53451,15,8,f +11123,53451,0,2,t +11123,53705,36,1,t +11123,53705,36,1,f +11123,53989,179,4,f +11123,54101,72,1,f +11123,54200,70,1,t +11123,54200,288,4,f +11123,54200,326,10,f +11123,54200,70,8,f +11123,54200,288,1,t +11123,54200,326,2,t +11123,54200,27,1,t +11123,54200,27,4,f +11123,58176,36,2,f +11123,60470a,0,1,f +11123,60470a,4,5,f +11123,60471,4,4,f +11123,60474,71,1,f +11123,60479,71,2,f +11123,60481,288,14,f +11123,6087,71,2,f +11123,61072,179,6,f +11123,61184,71,2,f +11123,6134,0,4,f +11123,61406pat0007,288,1,f +11123,61409,288,6,f +11123,6141,41,3,t +11123,6141,41,18,f +11123,61485,0,1,f +11123,62113,0,1,f +11123,62462,0,1,f +11123,62791,326,1,f +11123,63965,0,2,f +11123,63965,297,1,f +11123,64567,0,1,t +11123,64567,0,2,f +11123,64867,326,2,f +11123,6636,326,5,f +11123,6636,4,2,f +11123,85080,326,10,f +11123,85080,4,6,f +11123,85984,0,1,f +11123,86038,320,2,f +11123,87079,326,11,f +11123,87081,72,1,f +11123,87747,15,2,t +11123,87747,15,12,f +11123,87752,36,2,f +11123,89523,72,1,f +11123,90194,71,2,f +11123,92280,71,4,f +11123,92690,297,1,f +11123,92692,0,2,f +11123,92842,0,2,f +11123,92947,4,6,f +11123,93273,326,5,f +11123,93591,326,2,f +11123,95188,326,8,f +11123,96874,25,1,t +11123,970c00pr0432,326,1,f +11123,970c00pr0439,0,1,f +11123,970c00pr0442,326,1,f +11123,970c02pr0430,19,2,f +11123,970c155pr0443,326,1,f +11123,973pr2225c01,19,1,f +11123,973pr2226c01,19,1,f +11123,973pr2239c01,0,1,f +11123,973pr2244c01,326,1,f +11123,973pr2245c01,326,1,f +11123,973pr2246c01,326,1,f +11123,98138,179,2,f +11123,98138,41,1,t +11123,98138,36,2,t +11123,98138,179,1,t +11123,98138,36,3,f +11123,98138,41,4,f +11123,99207,71,8,f +11124,2352,14,4,f +11124,2352,4,4,f +11124,2456,1,8,f +11124,2456,4,8,f +11124,2456,0,2,f +11124,2456,15,6,f +11124,2456,14,8,f +11124,2577,4,4,f +11124,2577,1,4,f +11124,2577,14,4,f +11124,3001,15,88,f +11124,3001,14,102,f +11124,3001,0,38,f +11124,3001,4,102,f +11124,3001,1,98,f +11124,3001pr1,14,4,f +11124,3002,14,40,f +11124,3002,0,18,f +11124,3002,15,30,f +11124,3002,4,40,f +11124,3002,1,38,f +11124,3003,14,102,f +11124,3003,1,86,f +11124,3003,15,86,f +11124,3003,0,42,f +11124,3003,4,102,f +11124,3003pe2,14,8,f +11124,3006,4,6,f +11124,3006,15,2,f +11124,3006,1,6,f +11124,3006,14,6,f +11124,3007,0,2,f +11124,3007,15,2,f +11124,3007,1,6,f +11124,3007,14,6,f +11124,3007,4,6,f +11124,3185,14,6,f +11124,3185,4,6,f +11124,3483,0,24,f +11124,3857,2,3,f +11124,4204,2,3,f +11124,4727,2,12,f +11124,4728,15,3,f +11124,4728,14,3,f +11124,4728,1,3,f +11124,4728,4,3,f +11124,4729,14,2,f +11124,4730,4,2,f +11124,4730,14,2,f +11124,4743,15,2,f +11124,4743,14,2,f +11124,4743,1,4,f +11124,4744,14,2,f +11124,4744,7,2,f +11124,4744p04,0,2,f +11124,4744pb20,7,2,f +11124,4744pr0001,0,2,f +11124,4744pr0002,4,2,f +11124,4744px10,4,2,f +11124,4744px11,14,1,f +11124,4744px15,0,2,f +11124,4744px4,1,2,f +11124,4744px4,4,2,f +11124,4744px5,4,2,f +11124,4744px6,6,1,f +11124,4744px8,1,2,f +11124,4745,4,2,f +11124,4745,14,2,f +11124,4747,4,2,f +11124,4748,4,2,f +11124,4751c,4,2,f +11124,600,14,3,f +11124,600,15,3,f +11124,6007,2,1,f +11124,601,15,12,f +11124,6212,14,2,f +11124,6212,1,2,f +11124,6212,4,2,f +11124,6213p02,4,1,f +11124,6213pb01,2,1,f +11124,6213pb04,14,1,f +11124,6213pb05,4,1,f +11124,6213px1,1,1,f +11124,6213px2,14,1,f +11124,6213px3,14,1,f +11124,6213px4,4,1,f +11124,6214pb01,4,2,f +11124,6214px1,2,2,f +11124,6214px2,2,2,f +11124,6215,1,12,f +11124,6215,15,12,f +11124,6215,4,16,f +11124,6215,14,16,f +11124,6216,2,4,f +11124,6216,14,4,f +11124,6216,4,4,f +11124,6216,15,4,f +11124,6216,1,4,f +11124,6235,4,3,f +11124,6235,1,3,f +11124,6236,1,3,f +11124,6236,4,3,f +11124,6244px1,14,2,f +11124,6244px1,15,2,f +11124,6247,14,2,f +11124,6247,1,2,f +11124,6248,4,24,f +11124,6249,4,16,f +11124,82248,1,4,f +11124,82249,15,4,f +11126,2530,72,1,t +11126,2530,72,1,f +11126,2562,70,1,f +11126,3062b,70,2,f +11126,3069b,70,1,f +11126,4032a,70,1,f +11126,4085c,72,2,f +11126,61482,71,1,f +11126,61482,71,1,t +11127,2432,4,1,f +11127,30157,4,3,f +11127,3022,71,1,f +11127,3023,4,1,f +11127,3034,71,1,f +11127,30375,72,1,f +11127,3626bpr0325,14,1,f +11127,3829c01,15,1,f +11127,42610,71,6,f +11127,43898,15,1,f +11127,4623,71,1,f +11127,4740,33,1,f +11127,4854,15,1,f +11127,51011,0,6,f +11127,53989,72,2,f +11127,6117,72,1,f +11127,61409,72,2,f +11127,86035,1,1,f +11127,87618,71,1,f +11127,87754,15,1,f +11127,89159,82,1,f +11127,970c00,15,1,f +11127,973pr1695c01,15,1,f +11130,11458,72,2,f +11130,12939,72,2,f +11130,13269,326,1,f +11130,2412b,71,2,f +11130,2540,14,3,f +11130,2569,0,1,f +11130,2877,0,2,f +11130,298c02,14,2,f +11130,298c02,14,1,t +11130,3001,72,1,f +11130,3005,47,1,f +11130,30136,71,5,f +11130,3022,14,3,f +11130,3023,72,7,f +11130,3037,72,1,f +11130,30390b,72,2,f +11130,3039pr0014,0,1,f +11130,3040b,326,4,f +11130,3062b,71,2,f +11130,32002,72,1,t +11130,32002,72,4,f +11130,32316,0,4,f +11130,3298,326,1,f +11130,3626cpr1386,4,1,f +11130,3626cpr1387,2,1,f +11130,3626cpr1392,1,1,f +11130,3660,72,2,f +11130,3666,72,2,f +11130,3709,71,4,f +11130,3710,0,4,f +11130,3747b,72,2,f +11130,3749,19,16,f +11130,3795,0,1,f +11130,3829c01,14,1,f +11130,3941,14,2,f +11130,3958,0,2,f +11130,4032a,14,2,f +11130,43093,1,2,f +11130,43337,40,4,f +11130,43710,326,1,f +11130,43711,326,1,f +11130,4445,326,2,f +11130,44728,72,2,f +11130,4519,71,2,f +11130,47759,326,1,f +11130,50859b,0,1,f +11130,50861,0,2,f +11130,50862,71,2,f +11130,54200,36,1,t +11130,54200,36,2,f +11130,54200,182,2,f +11130,54200,182,1,t +11130,55982,0,8,f +11130,58181,40,1,f +11130,59900,33,2,f +11130,60219,72,1,f +11130,60470a,0,1,f +11130,60477,14,2,f +11130,60478,0,2,f +11130,60849,71,2,f +11130,60849,71,1,t +11130,61184,71,2,f +11130,6141,47,9,f +11130,6141,47,2,t +11130,61485,0,1,f +11130,62462,71,2,f +11130,63868,14,2,f +11130,6536,0,2,f +11130,6636,14,1,f +11130,75902pr0004,4,1,f +11130,85983,320,1,f +11130,85984,326,1,f +11130,87081,0,1,f +11130,87087,0,2,f +11130,92280,71,1,f +11130,92402,0,8,f +11130,970c00,0,1,f +11130,970c00,1,1,f +11130,970x028,288,1,f +11130,973pr2628c01,0,1,f +11130,973pr2629c01,2,1,f +11130,973pr2635c01,1,1,f +11130,99780,0,4,f +11131,10314,70,2,f +11131,12888pr0001,84,1,f +11131,15500,308,1,f +11131,15533,84,6,f +11131,15573,28,3,f +11131,15573,73,3,f +11131,15573,70,2,f +11131,15573,0,1,f +11131,15573,25,1,f +11131,15712,71,1,f +11131,15712,0,2,f +11131,18041,179,1,f +11131,18041,179,1,t +11131,21019pat06,379,1,f +11131,2357,19,6,f +11131,23931,9999,1,t +11131,2412b,0,2,f +11131,2431,70,1,f +11131,2431,19,2,f +11131,2453b,84,1,f +11131,3004,484,7,f +11131,3004,19,12,f +11131,3004,70,1,f +11131,3005,84,10,f +11131,3005,70,9,f +11131,3005,19,7,f +11131,3005pr0013,15,2,f +11131,3008,19,16,f +11131,3010,70,4,f +11131,30106,47,1,f +11131,30106,322,1,f +11131,30132,72,1,t +11131,30132,72,1,f +11131,30154,72,1,f +11131,3020,70,1,f +11131,3020,19,16,f +11131,3022,70,1,f +11131,3022,0,1,f +11131,3023,15,1,f +11131,3023,288,2,f +11131,3023,19,11,f +11131,3023,0,1,f +11131,3023,484,10,f +11131,3024,272,1,f +11131,3024,4,2,t +11131,3024,70,2,t +11131,3024,272,1,t +11131,3024,19,13,f +11131,3024,19,2,t +11131,3024,4,3,f +11131,3024,0,2,f +11131,3024,70,20,f +11131,3024,0,1,t +11131,3024,288,3,f +11131,3024,288,1,t +11131,3027,28,2,f +11131,30565,19,1,f +11131,3062b,15,1,f +11131,3062b,0,2,f +11131,3068b,4,2,f +11131,3068bpr0201,15,1,f +11131,3068bpr0273,70,1,f +11131,3069b,4,2,f +11131,3069b,70,2,f +11131,3069b,71,1,f +11131,3069b,1,3,f +11131,3069b,2,1,f +11131,3069b,320,4,f +11131,3069b,484,2,f +11131,3069b,19,12,f +11131,3069b,0,1,f +11131,3069bpr0030,15,1,f +11131,3069bpr0090,72,1,f +11131,3069bpr0150,484,1,f +11131,3069bpr0151,72,1,f +11131,3070b,1,4,f +11131,3070b,1,2,t +11131,3070b,15,2,f +11131,3070b,72,2,t +11131,3070b,320,8,f +11131,3070b,19,4,f +11131,3070b,272,2,t +11131,3070b,272,3,f +11131,3070b,72,4,f +11131,3070b,15,1,t +11131,3070b,320,1,t +11131,3070b,19,1,t +11131,32028,19,1,f +11131,32474,71,1,f +11131,3460,19,4,f +11131,3622,19,13,f +11131,3623,19,1,f +11131,3623,70,3,f +11131,3626cpr1753,78,1,f +11131,3626cpr1754,78,1,f +11131,3626cpr1755,78,1,f +11131,3626cpr1756,78,1,f +11131,3626cpr1757,78,1,f +11131,3626cpr1758,78,1,f +11131,3626cpr1759,84,1,f +11131,3710,19,4,f +11131,3710,70,5,f +11131,3710,0,2,f +11131,3832,484,3,f +11131,3832,70,2,f +11131,3899,4,1,f +11131,3901,308,1,f +11131,3937,71,1,f +11131,3940b,0,1,f +11131,3941,70,2,f +11131,4032a,4,1,f +11131,4032a,1,1,f +11131,4032a,0,1,f +11131,4070,70,6,f +11131,4070,72,2,f +11131,4070,2,1,f +11131,4083,15,1,f +11131,4162,1,2,f +11131,4162,19,4,f +11131,42446,0,4,f +11131,42446,0,1,t +11131,4274,71,4,f +11131,4274,71,2,t +11131,4477,70,3,f +11131,4588,72,1,f +11131,4599b,1,1,t +11131,4599b,2,1,f +11131,4599b,4,1,t +11131,4599b,0,1,t +11131,4599b,1,4,f +11131,4599b,0,2,f +11131,4599b,2,1,t +11131,4599b,4,4,f +11131,4740,0,1,f +11131,4740,71,1,f +11131,48336,0,1,f +11131,4865b,71,2,f +11131,57894,15,1,f +11131,57895,47,1,f +11131,59363,226,1,f +11131,59900,36,1,f +11131,59900,46,2,f +11131,59900,179,2,t +11131,59900,0,4,f +11131,59900,179,2,f +11131,60474,71,1,f +11131,60474,308,1,f +11131,60596,15,1,f +11131,60616b,92,1,f +11131,6091,70,2,f +11131,6091,19,4,f +11131,61183,0,1,f +11131,61252,19,2,f +11131,6134,0,1,f +11131,6141,71,1,t +11131,6141,71,2,f +11131,6141,2,1,f +11131,6141,0,2,t +11131,6141,46,1,t +11131,6141,0,5,f +11131,6141,34,1,f +11131,6141,34,1,t +11131,6141,46,1,f +11131,6141,2,1,t +11131,6179pr0015,15,1,f +11131,6231,71,2,f +11131,63868,0,2,f +11131,63965,15,1,f +11131,64567,15,1,t +11131,64567,15,1,f +11131,64644,0,1,f +11131,6541,1,1,f +11131,6541,70,3,f +11131,6636,272,2,f +11131,75c08,71,1,f +11131,87079,1,2,f +11131,87079pr0080,15,1,f +11131,87087,484,4,f +11131,87087,19,11,f +11131,87552,70,1,f +11131,87580,320,2,f +11131,87580,0,1,f +11131,87580,272,3,f +11131,87580,2,1,f +11131,87580,25,1,f +11131,87580,28,1,f +11131,87994,71,1,f +11131,87994,71,1,t +11131,90398,1,1,t +11131,90398,320,1,t +11131,90398,1,1,f +11131,90398,320,1,f +11131,91405,28,1,f +11131,92083,308,1,f +11131,92690,71,1,f +11131,92692,0,1,f +11131,93094,4,1,f +11131,93094,30,1,f +11131,93094,5,1,f +11131,93094,26,1,f +11131,95225,226,1,f +11131,96874,25,1,t +11131,970c00,272,2,f +11131,970c00,28,2,f +11131,970c00pr0967,72,1,f +11131,970c00pr0971,15,1,f +11131,973pr3133c01,5,1,f +11131,973pr3134c01,326,1,f +11131,973pr3135c01,26,1,f +11131,973pr3136c01,19,1,f +11131,973pr3138c01,4,1,f +11131,973pr3139c01,85,1,f +11131,973pr3188c01,4,1,f +11131,97781,191,3,f +11131,97782,191,3,f +11131,97783,191,3,f +11131,97784,191,3,f +11131,97785,191,1,f +11131,97787,191,1,f +11131,97790,191,1,f +11131,97791,191,1,f +11131,97793,191,1,f +11131,98100,15,1,f +11131,98138,47,1,f +11131,98138,15,1,t +11131,98138,47,1,t +11131,98138,15,1,f +11131,98283,84,11,f +11131,99781,0,1,f +11131,99930,308,1,f +11132,2377,15,2,f +11132,2412b,15,6,f +11132,2431,15,7,f +11132,2431px14,15,1,f +11132,2436,1,1,f +11132,2445,0,1,f +11132,2446,15,1,f +11132,2447,0,1,f +11132,2555,7,4,f +11132,2569,8,1,f +11132,2780,0,4,f +11132,2877,8,13,f +11132,2921,0,8,f +11132,2926,7,2,f +11132,298c02,7,2,f +11132,3004,15,3,f +11132,3009,15,3,f +11132,3010,8,1,f +11132,3010,15,6,f +11132,30162,8,1,f +11132,30184,8,1,f +11132,30187c01,15,1,f +11132,3020,15,1,f +11132,3021,1,1,f +11132,3022,15,1,f +11132,3022,0,1,f +11132,3023,7,1,f +11132,30236,8,2,f +11132,3024,46,7,f +11132,3024,36,3,f +11132,3029,0,1,f +11132,30304,8,1,f +11132,3031,0,1,f +11132,3032,15,1,f +11132,3032,0,2,f +11132,3036,0,2,f +11132,30365,0,2,f +11132,30365,15,2,f +11132,3037px7,7,1,f +11132,30552,7,4,f +11132,30602,0,1,f +11132,30608,0,1,f +11132,3062b,1,4,f +11132,3069b,46,2,f +11132,3069b,33,2,f +11132,3069b,36,4,f +11132,3188,0,1,f +11132,3189,0,1,f +11132,3190,15,1,f +11132,3191,15,1,f +11132,32000,7,2,f +11132,32013,8,2,f +11132,32018,8,2,f +11132,32028,0,2,f +11132,32059,0,2,f +11132,3297px6,7,1,f +11132,3622,15,4,f +11132,3626bpb0191,14,1,f +11132,3626bpr0411,14,1,f +11132,3660,7,1,f +11132,3665,15,2,f +11132,3666,15,5,f +11132,3666,8,1,f +11132,3709,7,2,f +11132,3710,15,1,f +11132,3794a,15,2,f +11132,3829c01,1,1,f +11132,3957a,7,2,f +11132,3958,0,1,f +11132,3958,8,1,f +11132,3962b,8,1,f +11132,4070,15,4,f +11132,4079,1,3,f +11132,4083,15,2,f +11132,4095,0,2,f +11132,4150,0,1,f +11132,41747pb010,15,1,f +11132,41748pb010,15,1,f +11132,4176,40,1,f +11132,42022,8,2,f +11132,4215b,15,7,f +11132,4345b,0,1,f +11132,4346,7,1,f +11132,4349,8,1,f +11132,43898,7,1,f +11132,44294,7,2,f +11132,44568,7,1,f +11132,44570,7,1,f +11132,4485,0,1,f +11132,4740,0,1,f +11132,4862,40,2,f +11132,4864b,40,6,f +11132,6014b,7,10,f +11132,6015,0,10,f +11132,6019,15,1,f +11132,6081,15,2,f +11132,6091,15,4,f +11132,6111,8,2,f +11132,6112,15,4,f +11132,6112,0,2,f +11132,6157,0,3,f +11132,6180,0,1,f +11132,6541,8,4,f +11132,6546,0,4,f +11132,6556,15,2,f +11132,6636,15,4,f +11132,78c03,179,2,f +11132,970c00,0,2,f +11132,973pb0354c01,272,1,f +11132,973pr1184c01,0,1,f +11134,11055,4,1,f +11134,11476,71,1,f +11134,11477,15,2,f +11134,11477,2,4,f +11134,11477,27,8,f +11134,11609,191,1,t +11134,11609,191,1,f +11134,13965,70,6,f +11134,14716,70,2,f +11134,15068,15,2,f +11134,15068,4,1,f +11134,15573,4,1,f +11134,15712,0,2,f +11134,18674,72,2,f +11134,21445,0,1,f +11134,2412b,72,1,f +11134,2421,0,1,f +11134,2431,15,3,f +11134,2540,0,1,f +11134,28959,308,1,f +11134,28981,15,1,f +11134,29161,27,4,f +11134,2921,70,2,f +11134,30031,71,1,f +11134,3004,212,33,f +11134,3005,70,10,f +11134,3005,72,2,f +11134,3005,73,12,f +11134,3010,0,1,f +11134,3010,73,6,f +11134,3021,15,1,f +11134,3022,15,1,f +11134,3023,73,2,f +11134,3023,71,2,f +11134,3023,15,2,f +11134,3030,1,1,f +11134,3030,72,1,f +11134,3033,70,2,f +11134,3037,272,16,f +11134,3039,272,8,f +11134,3040b,19,4,f +11134,30565,1,1,f +11134,3062b,71,1,f +11134,3062b,70,7,f +11134,3062b,47,2,f +11134,3176,14,1,f +11134,32028,15,3,f +11134,3622,72,2,f +11134,3622,73,9,f +11134,3626cpr1614,14,1,f +11134,3626cpr1769,14,1,f +11134,3659,70,3,f +11134,3710,15,1,f +11134,3710,28,3,f +11134,3795,15,3,f +11134,3830,71,2,f +11134,3831,71,2,f +11134,3832,72,1,f +11134,3849,0,1,f +11134,4070a,73,3,f +11134,4079,4,1,f +11134,4081b,27,1,f +11134,42023,72,2,f +11134,4286,28,2,f +11134,4477,72,2,f +11134,4510,15,1,f +11134,4599b,0,2,f +11134,4599b,0,1,t +11134,4733,27,1,f +11134,47759,70,2,f +11134,47905,15,1,f +11134,48336,15,2,f +11134,49668,191,1,f +11134,54200,19,4,f +11134,54200,47,1,t +11134,54200,19,1,t +11134,54200,15,1,f +11134,54200,47,2,f +11134,54200,15,1,t +11134,6020,0,1,f +11134,60470a,15,1,f +11134,60581,41,1,f +11134,60592,15,1,f +11134,60593,15,1,f +11134,60594,15,1,f +11134,60596,15,2,f +11134,60601,47,1,f +11134,60602,47,1,f +11134,60603,47,1,f +11134,60623,14,2,f +11134,60897,15,2,f +11134,60897,14,1,f +11134,6091,27,4,f +11134,6141,0,1,t +11134,6141,14,1,t +11134,6141,0,6,f +11134,6141,4,1,f +11134,6141,2,1,t +11134,6141,4,1,t +11134,6141,14,1,f +11134,6141,2,1,f +11134,63965,71,1,f +11134,64648,25,1,f +11134,85861,71,2,f +11134,85861,71,1,t +11134,85974,84,1,f +11134,87618,71,1,f +11134,87991,19,1,f +11134,90194,4,2,f +11134,90397,25,1,f +11134,92438,19,1,f +11134,92950,70,2,f +11134,970c00,15,1,f +11134,970c00,272,1,f +11134,973pr1204c01,15,1,f +11134,973pr2923c01,29,1,f +11134,98138,15,1,t +11134,98138,15,1,f +11134,98138pr0027,15,2,f +11134,98138pr0027,15,1,t +11134,99780,71,1,f +11136,2445,7,4,f +11136,2456,1,2,f +11136,3001,15,2,f +11136,3001,0,1,f +11136,3003,47,1,f +11136,3003,4,4,f +11136,3004,4,16,f +11136,3004,7,2,f +11136,3004,15,37,f +11136,3005,14,1,f +11136,3005,1,58,f +11136,3005,4,23,f +11136,3005,0,2,f +11136,3005,15,12,f +11136,3007,4,2,f +11136,3008,15,2,f +11136,3008,4,10,f +11136,3009,4,6,f +11136,3009,1,30,f +11136,3010,4,4,f +11136,3010,14,1,f +11136,3020,7,2,f +11136,3020,0,3,f +11136,3020,1,1,f +11136,3020,4,3,f +11136,3022,7,9,f +11136,3022,0,1,f +11136,3022,4,1,f +11136,3023,14,3,f +11136,3023,4,6,f +11136,3023,7,5,f +11136,3023,0,1,f +11136,3024,46,5,f +11136,3024,36,4,f +11136,3024,14,4,f +11136,3024,15,8,f +11136,30256,15,4,f +11136,30259p05,15,2,f +11136,30261p05,15,1,f +11136,3027,0,2,f +11136,3027,4,1,f +11136,3031,0,1,f +11136,3031,4,1,f +11136,3032,14,1,f +11136,3034,15,5,f +11136,3035,4,1,f +11136,3037,15,2,f +11136,3039p23,1,1,f +11136,3040b,4,2,f +11136,3040b,15,4,f +11136,3062b,0,4,f +11136,3068b,14,4,f +11136,3069b,15,5,f +11136,3069b,0,4,f +11136,3069b,14,1,f +11136,3127,7,1,f +11136,3176,7,2,f +11136,3298,14,1,f +11136,3307,4,2,f +11136,3403c01,0,1,f +11136,3456,0,2,f +11136,3460,4,2,f +11136,3460,15,2,f +11136,3470,2,1,f +11136,3471,2,1,f +11136,3596,15,1,f +11136,3622,1,4,f +11136,3622,4,20,f +11136,3623,4,2,f +11136,3623,15,2,f +11136,3624,0,1,f +11136,3626bpr0001,14,8,f +11136,3629,0,1,f +11136,3633,14,2,f +11136,3641,0,8,f +11136,3660,4,4,f +11136,3660,15,1,f +11136,3665,15,10,f +11136,3666,15,3,f +11136,3666,1,3,f +11136,3678a,47,1,f +11136,3679,7,2,f +11136,3680,0,2,f +11136,3710,4,9,f +11136,3710,15,5,f +11136,3710,14,5,f +11136,3741,2,7,f +11136,3741,2,2,t +11136,3742,4,6,f +11136,3742,4,2,t +11136,3742,14,18,f +11136,3742,14,6,t +11136,3787,4,1,f +11136,3788,4,1,f +11136,3788,14,2,f +11136,3794a,0,1,f +11136,3795,7,2,f +11136,3795,15,6,f +11136,3795,4,1,f +11136,3795,0,2,f +11136,3821,4,1,f +11136,3821,14,1,f +11136,3822,14,1,f +11136,3822,4,1,f +11136,3823,47,3,f +11136,3829c01,4,1,f +11136,3829c01,14,1,f +11136,3832,4,1,f +11136,3832,0,2,f +11136,3832,7,7,f +11136,3832,15,2,f +11136,3833,4,4,f +11136,3837,8,1,f +11136,3853,15,13,f +11136,3854,4,8,f +11136,3854,1,4,f +11136,3855,47,7,f +11136,3861b,1,1,f +11136,3861b,15,1,f +11136,3898,15,1,f +11136,3937,0,1,f +11136,3937,14,1,f +11136,3938,0,1,f +11136,3938,7,1,f +11136,3939,47,2,f +11136,3940b,7,2,f +11136,3941,0,6,f +11136,3956,7,4,f +11136,3957a,7,1,f +11136,3960p06,15,1,f +11136,3962b,0,1,f +11136,4006,0,1,f +11136,4032a,0,2,f +11136,4070,4,3,f +11136,4070,14,5,f +11136,4079,14,6,f +11136,4079,4,1,f +11136,4081b,7,2,f +11136,4083,0,1,f +11136,4083,4,3,f +11136,4085c,0,3,f +11136,4162,7,8,f +11136,4187,7,2,f +11136,4212b,0,1,f +11136,4530,0,1,f +11136,4600,0,4,f +11136,4624,4,8,f +11136,610px1,7,1,f +11136,612p01,7,1,f +11136,6636,7,8,f +11136,73037,4,1,f +11136,890p01,15,1,f +11136,970c00,1,3,f +11136,970c00,0,4,f +11136,970c00,4,1,f +11136,973p13c01,4,2,f +11136,973p18c01,1,1,f +11136,973p26c01,1,2,f +11136,973p72c01,15,1,f +11136,973pb0091c01,0,1,f +11136,973px3c01,15,1,f +11138,3626bpb0432,14,1,f +11138,3878,0,1,f +11138,62810,0,1,f +11138,87994pr0001a,0,1,f +11138,88646,0,1,f +11138,970c00,0,1,f +11138,973pr0813c01,0,1,f +11139,4162pb039,15,1,f +11139,6180pb029l,15,1,f +11139,6180pb029r,15,1,f +11140,2456,15,1,f +11140,2456,1,1,f +11140,3001,2,2,f +11140,3001,15,6,f +11140,3001,14,4,f +11140,3001,4,4,f +11140,3001,1,6,f +11140,3001,0,2,f +11140,3002,1,4,f +11140,3002,0,2,f +11140,3002,15,4,f +11140,3002,4,2,f +11140,3002,14,2,f +11140,3003,0,4,f +11140,3003,14,6,f +11140,3003,4,6,f +11140,3003,1,12,f +11140,3003,2,4,f +11140,3003,15,12,f +11140,3004,4,8,f +11140,3004,2,4,f +11140,3004,15,12,f +11140,3004,1,12,f +11140,3004,14,8,f +11140,3004,0,4,f +11140,3005,2,4,f +11140,3005,0,4,f +11140,3005,4,6,f +11140,3005,15,8,f +11140,3005,1,8,f +11140,3005,14,6,f +11140,3007,15,1,f +11140,3007,1,1,f +11140,3008,15,2,f +11140,3008,1,2,f +11140,3009,15,2,f +11140,3009,14,2,f +11140,3009,4,2,f +11140,3009,1,2,f +11140,3010,1,2,f +11140,3010,14,2,f +11140,3010,4,2,f +11140,3010,15,4,f +11140,3622,14,2,f +11140,3622,1,2,f +11140,3622,4,2,f +11140,3622,15,2,f +11141,2452,4,2,f +11141,2508,7,1,f +11141,2880,0,2,f +11141,2880,4,2,f +11141,3149c01,0,1,f +11141,3149c01,4,1,f +11141,3403,4,1,f +11141,3404,4,1,f +11141,3679,7,2,f +11141,3680,15,1,f +11141,3680,0,1,f +11141,3730,0,1,f +11141,3730,7,1,f +11141,3731,0,1,f +11141,4275b,0,2,f +11141,4275b,4,2,f +11141,4276b,4,2,f +11141,4276b,0,2,f +11141,4531,4,2,f +11141,4531,0,2,f +11144,10314,322,1,f +11144,11203,19,1,f +11144,11211,71,2,f +11144,11215,0,3,f +11144,11458,72,2,f +11144,11476,71,2,f +11144,11477,15,2,f +11144,11477,26,20,f +11144,11609,297,6,f +11144,11609,191,6,f +11144,11618,26,1,f +11144,11816pr0002,78,1,f +11144,11816pr0006,78,1,f +11144,11816pr0022,78,1,f +11144,13770,297,1,f +11144,14769,297,1,f +11144,14769pr1020,297,2,f +11144,15068,0,2,f +11144,15395,15,1,f +11144,15573,19,4,f +11144,15573,0,2,f +11144,15677,26,1,f +11144,18674,15,1,f +11144,18853,191,2,f +11144,18854,52,1,f +11144,20482,47,2,f +11144,22667,4,1,f +11144,2343,47,3,f +11144,2412b,0,2,f +11144,2412b,297,2,f +11144,2419,15,2,f +11144,2420,15,1,f +11144,2431,85,3,f +11144,2431,322,1,f +11144,2431,26,3,f +11144,2432,15,3,f +11144,2432,71,2,f +11144,2436,71,1,f +11144,2449,15,2,f +11144,2450,15,1,f +11144,2453b,15,2,f +11144,2454a,15,1,f +11144,2454a,0,2,f +11144,2571,41,1,f +11144,2653,0,4,f +11144,2654,72,3,f +11144,2654,46,1,f +11144,2730,71,6,f +11144,2780,0,22,f +11144,2921,15,2,f +11144,298c02,0,2,f +11144,3004,15,7,f +11144,3004,26,2,f +11144,3004,0,3,f +11144,30043,0,2,f +11144,3005,15,5,f +11144,3005,0,4,f +11144,3008,0,1,f +11144,3008,15,2,f +11144,3009,0,1,f +11144,3020,15,4,f +11144,3020,0,1,f +11144,3020,5,1,f +11144,3021,71,2,f +11144,3021,322,2,f +11144,3021,0,6,f +11144,3022,0,3,f +11144,3022,71,2,f +11144,3022,15,2,f +11144,3023,322,13,f +11144,3023,26,4,f +11144,3023,0,12,f +11144,3023,15,17,f +11144,3024,72,2,f +11144,3024,71,2,f +11144,3024,26,4,f +11144,3024,0,6,f +11144,3027,19,1,f +11144,3031,15,2,f +11144,3031,19,1,f +11144,3032,71,1,f +11144,3032,0,3,f +11144,3032,19,2,f +11144,3034,0,2,f +11144,30414,15,1,f +11144,30414,72,5,f +11144,30526,71,6,f +11144,3063b,15,2,f +11144,3068b,15,3,f +11144,3068b,191,2,f +11144,3068b,322,4,f +11144,3068b,0,1,f +11144,3069b,191,3,f +11144,3069b,26,2,f +11144,3069b,0,2,f +11144,3069b,322,1,f +11144,3069bpr0055,15,1,f +11144,3069bpr0070,0,1,f +11144,3070b,41,2,f +11144,32028,71,1,f +11144,32062,4,1,f +11144,32140,72,3,f +11144,32278,72,2,f +11144,32316,14,1,f +11144,32524,72,1,f +11144,33051,10,1,f +11144,33291,5,4,f +11144,33291,191,3,f +11144,3460,0,2,f +11144,3460,322,2,f +11144,3623,15,1,f +11144,3623,0,8,f +11144,3623,26,2,f +11144,3660,0,2,f +11144,3666,72,6,f +11144,3666,26,3,f +11144,3666,0,4,f +11144,3666,15,9,f +11144,3673,71,6,f +11144,3700,0,4,f +11144,3710,15,8,f +11144,3710,14,2,f +11144,3710,0,7,f +11144,3710,72,3,f +11144,3795,0,2,f +11144,3795,15,6,f +11144,3829c01,15,1,f +11144,3832,0,2,f +11144,3894,71,2,f +11144,3941,0,3,f +11144,3958,0,1,f +11144,4032a,71,3,f +11144,4070,14,4,f +11144,4094b,45,1,f +11144,41539,0,1,f +11144,4162,14,4,f +11144,4162,72,1,f +11144,4162,0,5,f +11144,41854,0,1,f +11144,42022,0,2,f +11144,4274,1,7,f +11144,4282,15,4,f +11144,43093,1,2,f +11144,43723,15,1,f +11144,43857,14,1,f +11144,44728,19,8,f +11144,44728,0,2,f +11144,4477,71,2,f +11144,4477,15,2,f +11144,4510,15,2,f +11144,4510,71,1,f +11144,4599b,71,3,f +11144,4740,42,2,f +11144,4740,71,2,f +11144,47457,15,2,f +11144,48336,0,6,f +11144,50950,26,2,f +11144,52031,26,1,f +11144,54200,41,2,f +11144,55981,297,6,f +11144,58090,0,6,f +11144,59349,47,9,f +11144,59349,15,2,f +11144,59900,129,1,f +11144,6005,0,2,f +11144,6005,15,2,f +11144,6005,26,8,f +11144,60470a,0,6,f +11144,60474,191,1,f +11144,60474,71,2,f +11144,60478,15,3,f +11144,60479,15,2,f +11144,60479,0,6,f +11144,60483,71,1,f +11144,60596,15,1,f +11144,60616a,15,1,f +11144,60897,72,2,f +11144,6091,0,2,f +11144,6091,15,6,f +11144,6091,26,2,f +11144,6091,5,2,f +11144,6112,0,1,f +11144,61252,15,2,f +11144,6141,41,3,f +11144,6141,297,3,f +11144,6141,42,2,f +11144,6141,71,18,f +11144,6141,45,16,f +11144,6179,0,1,f +11144,6180,26,5,f +11144,6231,15,1,f +11144,6256,191,1,f +11144,63864,71,2,f +11144,63965,15,1,f +11144,6541,0,2,f +11144,6541,15,2,f +11144,6636,71,5,f +11144,6636,26,1,f +11144,73983,15,2,f +11144,85984,71,3,f +11144,85984,0,2,f +11144,87079,0,2,f +11144,87087,72,4,f +11144,87552,47,2,f +11144,87580,26,3,f +11144,87609,0,2,f +11144,88930,26,4,f +11144,90370pr0005,0,1,f +11144,92255,226,1,f +11144,92257,320,1,f +11144,92456pr0078c01,78,1,f +11144,92456pr0082c01,78,1,f +11144,92456pr0083c01,78,1,f +11144,92818pr0002c01,26,1,f +11144,92818pr0010c01,179,1,f +11144,92820pr0012c01,212,1,f +11144,92950,15,4,f +11144,92950,0,7,f +11144,93092,191,1,f +11144,93095,15,2,f +11144,93273,15,1,f +11144,93606,0,1,f +11144,95228,47,1,f +11144,95347,0,2,f +11144,96874,25,1,t +11144,98138,46,1,f +11144,98138,41,2,f +11144,98138,52,7,f +11144,98138,182,1,f +11144,99207,71,1,f +11147,2335,14,1,f +11147,2439,72,1,f +11147,2444,14,1,f +11147,2498,1,1,f +11147,2540,72,1,f +11147,32449,14,1,f +11147,3626bpr0386,14,1,f +11147,3794a,14,1,f +11147,3833,4,1,f +11147,3836,70,1,f +11147,3837,72,1,f +11147,3839b,72,1,f +11147,43093,1,1,f +11147,54200,182,1,t +11147,54200,182,1,f +11147,6141,0,1,t +11147,6141,0,5,f +11147,6587,72,1,f +11147,970c00,25,1,f +11147,973pr1160c01,1,1,f +11148,11153,0,2,f +11148,11153,71,2,f +11148,11303,4,1,f +11148,11476,71,1,f +11148,11477,15,2,f +11148,11477,71,2,f +11148,14045,0,1,f +11148,14045,0,1,t +11148,14226c11,0,2,f +11148,14226c11,0,1,t +11148,14301,71,1,f +11148,15068,71,1,f +11148,15210,0,3,f +11148,15573,4,1,f +11148,15573,15,2,f +11148,15573,0,3,f +11148,15573,71,3,f +11148,18649,0,2,f +11148,18654,72,2,f +11148,18654,72,1,t +11148,18674,15,1,f +11148,18976,0,6,f +11148,18977,0,6,f +11148,2343,297,1,f +11148,2412b,4,1,t +11148,2412b,4,2,f +11148,2432,1,1,f +11148,2432,0,3,f +11148,2445,15,3,f +11148,2446,1,1,f +11148,2447,40,1,t +11148,2447,40,1,f +11148,2540,72,1,f +11148,2639,72,1,f +11148,2654,71,1,f +11148,2714a,0,2,f +11148,3001,15,1,f +11148,30029,0,1,f +11148,3004,15,2,f +11148,30043,0,1,f +11148,3020,1,1,f +11148,3020,72,1,f +11148,3020,71,5,f +11148,3021,0,2,f +11148,3021,71,3,f +11148,3022,15,2,f +11148,3023,71,13,f +11148,3023,4,10,f +11148,3023,0,6,f +11148,3023,46,1,f +11148,30237b,71,2,f +11148,30237b,14,1,f +11148,3024,71,2,f +11148,3024,71,1,t +11148,30261,15,1,f +11148,3031,72,1,f +11148,3034,15,1,f +11148,3035,72,2,f +11148,30357,0,4,f +11148,30363,15,1,f +11148,3039,15,6,f +11148,3040b,15,2,f +11148,30526,71,2,f +11148,30553,72,2,f +11148,3068b,71,8,f +11148,3068b,0,1,f +11148,3069b,71,1,f +11148,3069b,15,2,f +11148,3069bpr0030,15,1,f +11148,3069bpr0101,71,1,f +11148,32039,14,1,f +11148,32062,4,1,f +11148,32064a,71,7,f +11148,32073,71,2,f +11148,32123b,71,1,t +11148,32123b,71,4,f +11148,32316,1,2,f +11148,32526,15,2,f +11148,32556,19,2,f +11148,3456,72,1,f +11148,3623,0,2,f +11148,3626cpr0891,14,1,f +11148,3626cpr1147,14,1,f +11148,3626cpr1666,14,1,f +11148,3666,4,2,f +11148,3673,71,1,t +11148,3673,71,3,f +11148,3700,72,1,f +11148,3705,0,1,f +11148,3710,15,1,f +11148,3710,71,1,f +11148,3713,71,4,f +11148,3713,71,1,t +11148,3795,0,2,f +11148,3829c01,1,1,f +11148,3940b,0,1,f +11148,4070,72,2,f +11148,41532,0,2,f +11148,4162,4,1,f +11148,4274,1,2,t +11148,4274,1,5,f +11148,4349,4,2,f +11148,4349,0,1,f +11148,43722,0,1,f +11148,43723,0,1,f +11148,44294,71,2,f +11148,44302a,0,2,f +11148,44567a,14,2,f +11148,4519,71,2,f +11148,4533,72,2,f +11148,48336,15,1,f +11148,4865a,0,4,f +11148,4865a,71,2,f +11148,54200,0,7,f +11148,54200,71,1,t +11148,54200,0,1,t +11148,54200,71,4,f +11148,604547,0,1,f +11148,604548,0,1,f +11148,604549,0,1,f +11148,604550,0,1,f +11148,604551,0,1,f +11148,604552,0,1,f +11148,604553,0,1,f +11148,604614,0,1,f +11148,604615,0,1,f +11148,60475b,15,6,f +11148,60477,0,2,f +11148,60477,71,1,f +11148,60478,15,2,f +11148,60479,4,1,f +11148,60483,0,1,f +11148,6091,15,6,f +11148,6134,0,2,f +11148,61409,0,2,f +11148,6141,71,6,f +11148,6141,1,1,t +11148,6141,1,2,f +11148,6141,71,1,t +11148,6180,0,1,f +11148,62462,4,2,f +11148,63864,71,4,f +11148,63868,72,2,f +11148,63965,0,1,f +11148,6541,71,8,f +11148,6564,71,1,f +11148,6565,71,1,f +11148,6629,0,2,f +11148,6636,0,2,f +11148,73983,71,2,f +11148,75911stk01,9999,1,f +11148,85984,4,1,f +11148,86035,15,1,f +11148,87079,71,2,f +11148,87079,0,1,f +11148,87079,15,1,f +11148,87552,71,2,f +11148,90194,71,2,f +11148,92410,15,2,f +11148,92946,0,6,f +11148,93606,71,2,f +11148,95347,0,5,f +11148,970c00,15,3,f +11148,973pr2965c01,15,1,f +11148,973pr3009c01,15,2,f +11148,98138,71,4,f +11148,98138,71,1,t +11150,3081c,4,1,f +11150,31c,4,1,f +11150,32c,4,1,f +11150,453c,4,1,f +11150,604c,4,1,f +11150,645c,4,1,f +11150,646c,4,1,f +11151,2780,0,3,f +11151,32002,72,3,f +11151,32013,71,1,f +11151,32062,0,1,f +11151,32174,143,5,f +11151,32199,72,1,f +11151,3705,0,1,f +11151,43093,1,1,f +11151,4519,71,2,f +11151,47306,15,1,f +11151,47328,15,2,f +11151,50898,143,4,f +11151,53542,15,2,f +11151,53543,15,2,f +11151,53544,15,2,f +11151,53545,135,1,f +11151,53546,179,1,f +11151,53548,15,2,f +11151,53550,15,1,f +11151,53558pat01,27,1,f +11151,53585,0,1,f +11151,54271,179,1,f +11151,54821,143,4,f +11151,56154,15,1,f +11151,59426,72,1,f +11151,6558,0,1,f +11151,bion013c01,135,1,f +11152,4774c02,15,1,f +11153,2412b,272,11,f +11153,2420,71,2,f +11153,2431,72,2,f +11153,2476a,71,12,f +11153,2654,15,1,f +11153,2780,0,1,t +11153,2780,0,18,f +11153,298c02,4,1,f +11153,298c02,4,1,t +11153,3001,0,4,f +11153,3003,71,1,f +11153,3008,15,4,f +11153,3020,71,8,f +11153,3021,72,1,f +11153,3023,72,8,f +11153,3031,0,2,f +11153,30367bpr0004,134,1,f +11153,3037,15,8,f +11153,30374,42,1,f +11153,30374,0,6,f +11153,30383,0,2,f +11153,30387,71,2,f +11153,3044b,72,1,f +11153,30503,71,6,f +11153,3062b,0,4,f +11153,3068b,71,3,f +11153,3069b,15,2,f +11153,32000,71,1,f +11153,32016,71,32,f +11153,32034,15,8,f +11153,32062,0,23,f +11153,32064a,72,13,f +11153,32065,71,16,f +11153,32073,71,30,f +11153,32271,15,4,f +11153,32291,71,2,f +11153,32348,72,2,f +11153,32529,0,4,f +11153,3460,71,1,f +11153,3623,71,4,f +11153,3626bpr0444,78,1,f +11153,3700,15,2,f +11153,3705,0,3,f +11153,3710,0,5,f +11153,3710,15,4,f +11153,3713,4,1,t +11153,3713,4,4,f +11153,3747b,71,1,f +11153,3795,15,21,f +11153,3832,71,1,f +11153,3901,484,1,f +11153,3960pr13,40,1,f +11153,4079b,70,1,f +11153,4081b,71,6,f +11153,4085c,72,8,f +11153,4095,0,2,f +11153,41239,72,1,f +11153,4150pr0002,19,2,f +11153,4150pr0005,15,1,f +11153,4162,272,10,f +11153,41677,15,4,f +11153,41678,72,3,f +11153,42003,71,2,f +11153,42610,71,4,f +11153,4274,1,1,t +11153,4274,1,42,f +11153,43093,1,4,f +11153,43710,272,1,f +11153,43711,272,1,f +11153,43722,71,1,f +11153,43723,71,1,f +11153,43898,41,6,f +11153,44300,72,1,f +11153,44302a,71,4,f +11153,44567b,71,1,f +11153,44568,71,2,f +11153,44570,71,2,f +11153,4477,15,2,f +11153,45411,15,4,f +11153,4589,33,4,f +11153,47407,0,1,f +11153,4871,71,1,f +11153,48723,72,6,f +11153,50304,272,2,f +11153,50305,272,2,f +11153,50986pr0001,40,1,f +11153,51000,272,4,f +11153,57901pr0001,378,1,f +11153,6019,0,2,f +11153,60208,15,10,f +11153,60208,272,10,f +11153,6091,0,6,f +11153,6141,15,1,t +11153,6141,41,2,f +11153,6141,182,1,t +11153,6141,34,1,t +11153,6141,182,2,f +11153,6141,34,2,f +11153,6141,41,1,t +11153,6141,15,6,f +11153,6180,272,10,f +11153,64567,71,1,f +11153,6536,72,51,f +11153,6553,72,2,f +11153,6558,0,26,f +11153,6558,0,1,t +11153,6587,72,7,f +11153,7661stk01,9999,1,t +11153,970c00,70,1,f +11153,970c00,19,1,f +11153,973pr1316c01,70,1,f +11153,973pr1324c01,19,1,f +11157,2343,7,2,f +11157,2348b,33,1,f +11157,2349a,15,1,f +11157,2362b,15,4,f +11157,2377,15,2,f +11157,2399,313,1,f +11157,2412b,15,4,f +11157,2420,15,8,f +11157,2431,0,1,f +11157,2431,7,2,f +11157,2436,15,3,f +11157,2445,0,2,f +11157,2452,7,1,f +11157,2460,7,2,f +11157,2496,0,1,f +11157,2654,7,1,f +11157,2736,7,1,f +11157,2877,0,1,f +11157,298c02,15,2,f +11157,298c02,15,1,t +11157,3004,7,1,f +11157,3004,15,1,f +11157,3004,313,5,f +11157,3005,15,1,f +11157,3010,15,6,f +11157,3021,313,1,f +11157,3021,15,2,f +11157,3021,0,1,f +11157,3022,0,1,f +11157,3023,7,8,f +11157,3023,0,2,f +11157,3023,15,1,f +11157,3024,0,1,f +11157,3024,46,2,f +11157,3029,0,1,f +11157,3029,15,2,f +11157,3031,15,7,f +11157,3031,7,1,f +11157,3034,0,1,f +11157,3062b,14,2,f +11157,3062b,7,8,f +11157,3068b,0,1,f +11157,3069b,15,3,f +11157,3070b,36,5,f +11157,3491,0,1,f +11157,3622,15,3,f +11157,3623,15,1,f +11157,3626bpr0001,14,1,f +11157,3665,15,2,f +11157,3709,0,1,f +11157,3710,7,4,f +11157,3710,15,6,f +11157,3738,7,2,f +11157,3787,15,1,f +11157,3794a,15,6,f +11157,3821,313,1,f +11157,3822,313,1,f +11157,3823,41,1,f +11157,3829c01,7,1,f +11157,3832,7,2,f +11157,3832,0,1,f +11157,3836,6,1,f +11157,3837,8,1,f +11157,4162,7,6,f +11157,4214,15,1,f +11157,4215b,15,8,f +11157,4276b,7,1,f +11157,4287,7,2,f +11157,4485,313,1,f +11157,4600,0,5,f +11157,4862,41,2,f +11157,6014a,15,10,f +11157,6015,0,10,f +11157,6019,0,3,f +11157,6081,15,1,f +11157,6091,15,1,f +11157,6141,46,6,f +11157,6546,15,4,f +11157,6556,15,2,f +11157,970c00,7,1,f +11157,973c01,15,1,f +11158,2780,0,4,f +11158,32039,0,2,f +11158,32054,4,1,f +11158,32056,4,4,f +11158,32062,0,4,f +11158,32073,0,1,f +11158,32306,0,1,f +11158,32307,4,2,f +11158,32308,4,1,f +11158,32308,0,1,f +11158,32310pb05,4,1,f +11158,32316,0,2,f +11158,32439a,25,3,f +11158,3673,7,2,f +11158,3705,0,1,f +11158,3749,7,2,f +11158,6123,0,2,f +11158,6536,0,1,f +11158,rb00182,4,1,t +11159,3002,2,1,f +11159,3004,2,4,f +11159,3004p0a,2,1,f +11159,3022,2,1,f +11159,3039,2,1,f +11161,3001a,14,1,f +11161,3001a,0,4,f +11161,3004,47,2,f +11161,3005,14,2,f +11161,3008,0,2,f +11161,3010,14,1,f +11161,3020,4,1,f +11161,3022,4,2,f +11161,3023,4,4,f +11161,3027,0,1,f +11161,3032,4,2,f +11161,3034,4,1,f +11161,3127b,4,1,f +11161,3176,4,1,f +11161,3324c01,4,2,f +11161,3404ac01,4,1,f +11161,586c01,14,1,f +11161,7049b,0,2,f +11161,737ac01,4,1,f +11161,737ac02,4,1,f +11161,rb00164,0,1,f +11161,wheel2b,4,4,f +11163,2983,7,2,f +11163,4185,7,2,f +11163,4265b,7,4,f +11163,85543,15,1,f +11163,85544,4,1,f +11163,85545,1,1,f +11163,85546,14,1,f +11164,2456,14,1,f +11164,3001,2,2,f +11164,3001,15,2,f +11164,3001,1,2,f +11164,3001,7,2,f +11164,3001,14,2,f +11164,3001,0,2,f +11164,3001,25,4,f +11164,3002,25,2,f +11164,3002,1,2,f +11164,3002,4,2,f +11164,3002,15,2,f +11164,3002,0,2,f +11164,3002,7,2,f +11164,3002,14,2,f +11164,3003,1,4,f +11164,3003,25,6,f +11164,3003,0,4,f +11164,3003,2,4,f +11164,3003,14,4,f +11164,3003,7,6,f +11164,3003,15,4,f +11164,3003,4,4,f +11164,3004,14,8,f +11164,3004,7,8,f +11164,3004,25,8,f +11164,3004,4,6,f +11164,3004,2,4,f +11164,3004,0,6,f +11164,3004,1,8,f +11164,3004,15,6,f +11164,3005,4,8,f +11164,3005,0,8,f +11164,3005,2,6,f +11164,3005,1,8,f +11164,3005,15,6,f +11164,3005pe2,8,1,f +11164,3005pe3,8,1,f +11164,3005px2,14,2,f +11164,3008,7,2,f +11164,3009,1,2,f +11164,3010,0,2,f +11164,3010,25,2,f +11164,3010,14,2,f +11164,3010p01,14,1,f +11164,3020,25,2,f +11164,3020,7,2,f +11164,3021,1,2,f +11164,3021,25,2,f +11164,3022,1,2,f +11164,3040b,25,4,f +11164,3040b,2,2,f +11164,3040b,7,2,f +11164,3665,7,2,f +11164,3665,25,4,f +11164,3665,2,2,f +11164,3957a,1,1,f +11164,4495b,14,1,f +11165,3003,4,1,f +11165,3004,14,2,f +11165,3004,4,2,f +11165,3010,4,3,f +11165,3020,4,3,f +11165,3034,4,1,f +11165,3039,47,2,f +11165,3137c01,0,2,f +11165,3641,0,4,f +11166,48989,71,1,f +11166,74261,72,2,f +11166,87846,1,4,f +11166,90605,0,2,f +11166,90608,0,2,f +11166,90611,0,2,f +11166,90617,0,4,f +11166,90625,0,1,f +11166,90626,0,1,f +11166,90638,148,3,f +11166,90641,148,1,f +11166,90650,1,2,f +11166,90652,1,2,f +11166,90652,148,1,f +11166,90661,1,2,f +11166,93571,0,4,f +11166,93575,1,2,f +11166,98568p02,0,2,f +11166,98603s01pr0001,1,1,f +11166,bb542,78,1,f +11167,30369,15,1,f +11167,3626b,0,1,f +11167,3626bpr0342,78,1,f +11167,3901,70,1,f +11167,4070,72,2,f +11167,41879a,70,1,f +11167,4497,0,1,f +11167,58247,0,2,f +11167,64805pr0003,70,1,f +11167,74188,72,3,f +11167,970c00pr0033,70,1,f +11167,970x026,15,1,f +11167,973c32,70,1,f +11167,973pr1331c01,0,1,f +11167,973pr1501c01,15,1,f +11168,30517,0,6,f +11168,30518,0,4,f +11168,3832,8,3,f +11169,10928,72,2,f +11169,11211,71,6,f +11169,11212,72,8,f +11169,11213,1,3,f +11169,14716,15,4,f +11169,14719,15,4,f +11169,14769pr0001,15,1,f +11169,15070,19,78,f +11169,15208,19,12,f +11169,15332,297,4,f +11169,15397,19,18,f +11169,15462,28,1,f +11169,15535,19,5,f +11169,15573,19,18,f +11169,15573,72,65,f +11169,15573,28,4,f +11169,15573,71,15,f +11169,15712,72,52,f +11169,15712,0,1,f +11169,15712,297,12,f +11169,18651,0,1,f +11169,18674,72,1,f +11169,19119,2,5,f +11169,20482,297,1,t +11169,20482,297,3,f +11169,2357,70,8,f +11169,2357,71,7,f +11169,2357,19,6,f +11169,2412b,19,28,f +11169,2420,28,23,f +11169,2420,19,15,f +11169,2420,71,2,f +11169,2431,19,21,f +11169,2445,1,5,f +11169,2456,72,1,f +11169,2456,70,2,f +11169,2465,71,4,f +11169,2566,19,10,f +11169,2639,28,28,f +11169,3001,70,2,f +11169,3001,72,2,f +11169,3002,72,5,f +11169,3003,19,13,f +11169,3004,72,4,f +11169,3004,19,28,f +11169,3004,28,4,f +11169,3004,71,2,f +11169,3005,40,380,f +11169,3005,28,4,f +11169,3005,19,205,f +11169,3005,272,22,f +11169,3005,72,24,f +11169,3005,71,9,f +11169,3008,72,3,f +11169,3008,19,13,f +11169,3008,28,26,f +11169,3009,28,10,f +11169,3009,71,6,f +11169,3009,19,4,f +11169,3010,28,9,f +11169,3010,272,4,f +11169,3010,19,7,f +11169,3010,72,3,f +11169,3010,71,2,f +11169,30165,0,3,f +11169,3020,19,3,f +11169,3020,28,4,f +11169,3023,1,2,f +11169,3023,40,102,f +11169,3023,71,4,f +11169,3023,272,12,f +11169,3023,47,4,f +11169,3023,28,17,f +11169,3023,15,12,f +11169,3023,19,84,f +11169,30237b,1,2,f +11169,3024,72,12,f +11169,3024,40,5,t +11169,3024,0,1,f +11169,3024,71,6,f +11169,3024,28,6,t +11169,3024,28,79,f +11169,3024,40,77,f +11169,3024,70,13,f +11169,3024,70,2,t +11169,3024,71,1,t +11169,3024,0,1,t +11169,3024,19,9,t +11169,3024,19,374,f +11169,3034,19,1,f +11169,3034,28,4,f +11169,3034,72,1,f +11169,3035,71,2,f +11169,30357,19,4,f +11169,3036,28,4,f +11169,30367c,47,1,f +11169,3037,72,29,f +11169,30374,0,1,f +11169,3039,72,7,f +11169,3040b,72,11,f +11169,30414,71,6,f +11169,3044c,72,2,f +11169,3046a,72,5,f +11169,30565,19,4,f +11169,3068b,71,3,f +11169,3069b,272,3,f +11169,3069b,2,8,f +11169,3069b,71,2,f +11169,3069b,19,16,f +11169,3069b,72,70,f +11169,3070b,19,4,t +11169,3070b,19,22,f +11169,3070b,0,1,f +11169,3070b,28,2,t +11169,3070b,71,5,f +11169,3070b,28,17,f +11169,3070b,0,1,t +11169,3070b,71,1,t +11169,3070b,72,7,f +11169,3070b,72,1,t +11169,32001,71,3,f +11169,32028,179,8,f +11169,32028,19,276,f +11169,32034,0,1,f +11169,32064a,71,2,f +11169,32123b,71,1,t +11169,32123b,71,4,f +11169,32270,0,4,f +11169,32498,0,1,f +11169,32530,0,2,f +11169,33291,10,15,f +11169,33291,2,15,f +11169,33291,10,1,t +11169,33291,297,85,f +11169,33291,2,1,t +11169,33291,297,2,t +11169,3460,19,34,f +11169,3460,71,1,f +11169,3622,71,10,f +11169,3622,19,41,f +11169,3623,19,32,f +11169,3623,28,20,f +11169,3633,72,5,f +11169,3659,19,3,f +11169,3659,71,4,f +11169,3666,28,78,f +11169,3666,0,10,f +11169,3666,19,67,f +11169,3685,72,8,f +11169,3688,72,1,f +11169,3700,0,1,f +11169,3700,19,2,f +11169,3701,15,2,f +11169,3708,0,1,f +11169,3710,71,2,f +11169,3710,0,8,f +11169,3710,28,51,f +11169,3710,19,30,f +11169,3713,4,4,t +11169,3713,4,5,f +11169,3795,72,9,f +11169,3795,19,9,f +11169,3941,47,1,f +11169,3958,72,2,f +11169,4032a,72,1,f +11169,4032a,15,2,f +11169,4032a,19,2,f +11169,4070,71,5,f +11169,4070,19,16,f +11169,4070,1,36,f +11169,4162,72,3,f +11169,4162,19,38,f +11169,42446,0,1,t +11169,42446,0,1,f +11169,4282,72,6,f +11169,43093,1,2,f +11169,43898,72,1,f +11169,44294,14,1,f +11169,44375pr0002,47,4,f +11169,4460b,72,4,f +11169,4490,71,1,f +11169,4490,19,2,f +11169,4510,19,4,f +11169,4594,47,6,f +11169,4599b,19,24,f +11169,4599b,19,1,t +11169,4733,72,53,f +11169,4740,72,1,f +11169,4865a,28,1,f +11169,49668,19,33,f +11169,49668,179,7,f +11169,50450,0,1,f +11169,54200,19,1,t +11169,54200,71,2,t +11169,54200,72,21,f +11169,54200,71,5,f +11169,54200,19,11,f +11169,54200,72,3,t +11169,59443,70,2,f +11169,59900,19,32,f +11169,59900,297,4,f +11169,59900,2,3,f +11169,59900,0,16,f +11169,604547,0,4,t +11169,604548,0,4,t +11169,604549,0,4,t +11169,604550,0,4,t +11169,604551,0,4,t +11169,604552,0,4,f +11169,604553,0,4,t +11169,604614,0,4,t +11169,604615,0,4,f +11169,60474,15,4,f +11169,60478,0,1,f +11169,60593,28,18,f +11169,60897,19,2,f +11169,61184,71,1,f +11169,6141,0,1,t +11169,6141,70,1,t +11169,6141,19,88,f +11169,6141,70,4,f +11169,6141,0,3,f +11169,6141,47,1,t +11169,6141,47,6,f +11169,6141,19,6,t +11169,6231,19,61,f +11169,6266,0,1,t +11169,6266,0,7,f +11169,63864,72,8,f +11169,63864,71,10,f +11169,63864,19,6,f +11169,64644,0,3,f +11169,64644,15,5,f +11169,64644,19,24,f +11169,64799,71,9,f +11169,6541,19,2,f +11169,6587,28,6,f +11169,6589,19,2,f +11169,6636,71,4,f +11169,6636,19,82,f +11169,85863,19,47,f +11169,85975,70,2,f +11169,85984,72,20,f +11169,87087,70,82,f +11169,87580,72,8,f +11169,87609,0,2,f +11169,87994,0,6,f +11169,87994,0,2,t +11169,88072,19,2,f +11169,90540,297,30,f +11169,90540,297,1,t +11169,91405,10,3,f +11169,92438,10,1,f +11169,92438,1,1,f +11169,92946,0,4,f +11169,92950,19,6,f +11169,93095,19,14,f +11169,96874,25,1,t +11169,98560,72,10,f +11169,99206,71,3,f +11169,99206,15,2,f +11169,99780,0,18,f +11169,99781,0,18,f +11171,3001,1,4,f +11171,3001,0,2,f +11171,3001,19,2,f +11171,3001,8,2,f +11171,3001,7,2,f +11171,3001,14,4,f +11171,3001,6,2,f +11171,3001,2,2,f +11171,3001,4,4,f +11171,3001,15,4,f +11171,3001p0a,14,1,f +11171,3002,14,4,f +11171,3002,4,4,f +11171,3002,1,4,f +11171,3002,15,2,f +11171,3002,7,2,f +11171,3002,2,2,f +11171,3002,0,2,f +11171,3003,2,16,f +11171,3003,4,20,f +11171,3003,6,8,f +11171,3003,19,12,f +11171,3003,0,12,f +11171,3003,15,16,f +11171,3003,7,12,f +11171,3003,8,10,f +11171,3003,1,16,f +11171,3003,14,20,f +11171,3004,4,50,f +11171,3004,6,28,f +11171,3004,2,40,f +11171,3004,1,36,f +11171,3004,14,52,f +11171,3004,19,30,f +11171,3004,15,36,f +11171,3004,0,38,f +11171,3004,7,30,f +11171,3004,8,28,f +11171,3005,4,43,f +11171,3005,7,46,f +11171,3005,1,50,f +11171,3005,0,48,f +11171,3005,15,50,f +11171,3005,19,28,f +11171,3005,2,36,f +11171,3005pe1,14,2,f +11171,3005pe2,8,1,f +11171,3005pe3,8,1,f +11171,3005px2,14,2,f +11171,3009,1,2,f +11171,3009,15,2,f +11171,3009,4,2,f +11171,3009,14,2,f +11171,3010,15,2,f +11171,3010,7,2,f +11171,3010,8,2,f +11171,3010,2,2,f +11171,3010,14,4,f +11171,3010,0,2,f +11171,3010,19,2,f +11171,3010,4,4,f +11171,3010,1,2,f +11171,3020,1,2,f +11171,3020,4,2,f +11171,3020,0,2,f +11171,3021,1,2,f +11171,3021,2,2,f +11171,3021,0,2,f +11171,3021,14,2,f +11171,3021,8,2,f +11171,3021,7,2,f +11171,3021,4,2,f +11171,3021,19,4,f +11171,3022,8,2,f +11171,3022,7,2,f +11171,3022,0,2,f +11171,3022,1,2,f +11171,3022,4,2,f +11171,3022,2,2,f +11171,3022,19,4,f +11171,3022,14,2,f +11171,3039,4,2,f +11171,3039,7,2,f +11171,3039,0,2,f +11171,3039,34,2,f +11171,3039,47,2,f +11171,3040b,7,2,f +11171,3040b,0,2,f +11171,3040b,4,2,f +11171,3062b,34,2,f +11171,3062b,36,2,f +11171,3065,143,8,f +11171,3298,14,2,f +11171,3622,7,2,f +11171,3622,8,2,f +11171,3622,4,4,f +11171,3622,2,2,f +11171,3622,15,4,f +11171,3622,14,4,f +11171,3660,4,2,f +11171,3660,0,2,f +11171,3665,0,2,f +11171,3665,4,2,f +11171,3665,7,2,f +11171,4286,14,2,f +11171,4287,14,2,f +11173,45449,13,1,f +11173,clikits080,5,1,f +11173,clikits088,230,1,f +11176,2335p40,0,1,f +11176,2338,4,1,f +11176,2339,0,4,f +11176,2343,15,1,f +11176,2343,1,1,f +11176,2345p01,4,2,f +11176,3001,7,1,f +11176,3003,7,7,f +11176,3003,14,3,f +11176,3004,0,6,f +11176,3004,4,7,f +11176,3004,15,1,f +11176,3004,7,20,f +11176,3005,4,2,f +11176,3005,7,19,f +11176,3005,0,11,f +11176,3008,0,1,f +11176,3009,7,4,f +11176,3010,0,1,f +11176,3010,7,5,f +11176,3020,2,1,f +11176,3022,2,2,f +11176,3023,15,1,f +11176,3023,0,1,f +11176,3023,7,4,f +11176,3027,0,1,f +11176,3031,14,1,f +11176,3031,0,1,f +11176,3034,2,1,f +11176,3036,7,1,f +11176,3038,0,2,f +11176,3039,0,11,f +11176,3043,0,1,f +11176,3044a,0,2,f +11176,3049c,0,1,f +11176,3062b,0,4,f +11176,3460,2,2,f +11176,3581,0,3,f +11176,3582,14,2,f +11176,3622,7,2,f +11176,3622,4,1,f +11176,3623,7,8,f +11176,3626apr0001,14,4,f +11176,3644,1,1,f +11176,3660,0,4,f +11176,3665,0,8,f +11176,3666,0,1,f +11176,3666,7,1,f +11176,3673,7,1,f +11176,3700,7,2,f +11176,3710,7,3,f +11176,3741,2,3,f +11176,3742,1,3,f +11176,3742,14,1,t +11176,3742,1,1,t +11176,3742,4,3,f +11176,3742,4,1,t +11176,3742,14,3,f +11176,3830,7,2,f +11176,3831,7,2,f +11176,3832,7,2,f +11176,3844,8,1,f +11176,3846p46,7,1,f +11176,3846p4g,7,1,f +11176,3847a,8,3,f +11176,3848,6,1,f +11176,3849,6,1,f +11176,3896,0,1,f +11176,3957a,7,1,f +11176,3957a,0,1,f +11176,3958,7,1,f +11176,4070,0,1,f +11176,4070,14,2,f +11176,4070,7,1,f +11176,4085b,7,4,f +11176,4161,0,2,f +11176,4282,0,1,f +11176,4444,7,4,f +11176,4444p01,7,1,f +11176,4444p03,4,1,f +11176,4445,0,7,f +11176,4460a,7,2,f +11176,4490,0,2,f +11176,4490,7,1,f +11176,4491a,14,1,f +11176,4495a,14,1,f +11176,4495a,2,1,f +11176,4495a,4,1,f +11176,4497,6,1,f +11176,4498,6,1,f +11176,4499,6,1,f +11176,4503,0,1,f +11176,4524,1,1,f +11176,4524,0,1,f +11176,4528,0,1,f +11176,75998pr0007,15,1,f +11176,87692,14,1,t +11176,87693,14,1,f +11176,87694,14,1,t +11176,970c00,1,1,f +11176,970x021,0,2,f +11176,970x026,1,1,f +11176,973p40c01,1,1,f +11176,973p42c01,4,2,f +11176,973p71c01,15,1,f +11177,2456,14,9,f +11177,2780,0,212,f +11177,3001,14,9,f +11177,3002,14,9,f +11177,3004,14,3,f +11177,3007,14,12,f +11177,3008,4,30,f +11177,3009,4,20,f +11177,3010,4,20,f +11177,3010,0,10,f +11177,3020,14,12,f +11177,3022,14,3,f +11177,3032,0,1,f +11177,3034,14,45,f +11177,30367c,0,1,f +11177,32013,0,17,f +11177,32013,14,20,f +11177,32034,0,2,f +11177,32054,0,8,f +11177,32062,4,18,f +11177,32073,71,9,f +11177,32123b,71,8,f +11177,32140,71,4,f +11177,32140,0,11,f +11177,32140,14,2,f +11177,32184,72,1,f +11177,32278,0,20,f +11177,32316,0,30,f +11177,32316,14,1,f +11177,32316,4,3,f +11177,32449,4,1,f +11177,32474,0,4,f +11177,32523,27,4,f +11177,32523,0,4,f +11177,32523,14,2,f +11177,32524,0,34,f +11177,32525,0,18,f +11177,32526,0,6,f +11177,3626bpr0043,14,2,f +11177,3626bpr0387,14,1,f +11177,3705,0,3,f +11177,3706,0,12,f +11177,3707,0,3,f +11177,3708,0,22,f +11177,3709,14,18,f +11177,3737,0,6,f +11177,3795,0,2,f +11177,3795,14,3,f +11177,3894,0,6,f +11177,3901,71,1,f +11177,3941,1,3,f +11177,3941,25,3,f +11177,3941,71,9,f +11177,3941,70,3,f +11177,3941,2,3,f +11177,3941,14,33,f +11177,3941,4,9,f +11177,3941,0,56,f +11177,3943b,0,11,f +11177,4032a,4,8,f +11177,4032a,14,10,f +11177,4032a,2,8,f +11177,40490,0,4,f +11177,41239,0,15,f +11177,41677,0,20,f +11177,4185,27,4,f +11177,42003,71,4,f +11177,43093,1,70,f +11177,43857,0,9,f +11177,44294,71,4,f +11177,44309,0,4,f +11177,44809,0,2,f +11177,4516302,9999,1,f +11177,4519,71,20,f +11177,4562027,9999,1,f +11177,48989,71,1,f +11177,50451,15,4,f +11177,55615,71,4,f +11177,56145,71,4,f +11177,57585,71,4,f +11177,59443,71,28,f +11177,59443,0,27,f +11177,60485,71,7,f +11177,6093,70,1,f +11177,61073,0,1,f +11177,61903,71,5,f +11177,62711,0,1,f +11177,62810,308,1,f +11177,64178,71,1,f +11177,64391,4,1,f +11177,64393,4,1,f +11177,64394,4,1,f +11177,64680,4,1,f +11177,64681,4,1,f +11177,64683,4,1,f +11177,64782,14,22,f +11177,64782,4,2,f +11177,6536,71,6,f +11177,6553,0,12,f +11177,6558,1,106,f +11177,6629,0,2,f +11177,6632,14,4,f +11177,75347,0,3,f +11177,78c09,0,34,f +11177,970c00,72,1,f +11177,970c00,25,1,f +11177,970c00,15,1,f +11177,970c00,1,1,f +11177,973c02,4,1,f +11177,973pr0805c01,15,1,f +11177,973pr1190c01,0,1,f +11177,973pr1204c01,15,1,f +11178,2569,42,1,f +11178,30088,0,1,f +11178,32062,4,2,f +11178,4349,0,1,f +11178,48729b,72,1,f +11178,48729b,72,1,t +11178,53551,148,3,f +11178,54821,10,1,f +11178,57539pat0002,47,1,f +11178,64262,35,1,f +11178,90609,0,2,f +11178,90611,0,2,f +11178,90617,71,4,f +11178,90626,0,1,f +11178,90641,25,4,f +11178,90641,15,2,f +11178,90661,25,2,f +11178,92215,148,1,f +11178,93575,0,1,f +11178,98562,148,2,f +11178,98563,148,1,f +11178,98564,25,1,f +11178,98569pr0011,15,1,f +11178,98570pat01,15,1,f +11178,98592,148,1,f +11178,98594,25,1,f +11184,2343,7,4,f +11184,2348b,41,1,f +11184,2349a,15,1,f +11184,2377,15,2,f +11184,2412b,15,1,f +11184,2419,15,1,f +11184,2420,0,2,f +11184,2431,15,1,f +11184,2431pr0077,15,1,f +11184,2433,14,2,f +11184,2436,7,2,f +11184,2436,0,1,f +11184,2446px2,15,1,f +11184,2447,41,1,f +11184,2452,0,1,f +11184,2460,7,1,f +11184,2569,4,1,f +11184,2736,7,1,f +11184,2780,0,2,f +11184,2817,4,1,f +11184,2877,15,2,f +11184,2880,0,1,f +11184,298c02,4,1,f +11184,298c03,0,2,f +11184,3001,7,1,f +11184,3002,15,3,f +11184,3004,15,8,f +11184,3004pc0,15,1,f +11184,3005,15,2,f +11184,3005,7,2,f +11184,3008,15,2,f +11184,3009,15,2,f +11184,3010,0,2,f +11184,3010,15,4,f +11184,3020,15,2,f +11184,3020,0,2,f +11184,3021,0,2,f +11184,3021,7,1,f +11184,3021,15,1,f +11184,3022,0,1,f +11184,3022,15,2,f +11184,3022,7,3,f +11184,3023,0,5,f +11184,3023,15,4,f +11184,3023,7,3,f +11184,3024,15,4,f +11184,3024,36,3,f +11184,3024,33,5,f +11184,3032,15,1,f +11184,3033,15,2,f +11184,3034,0,4,f +11184,3034,7,1,f +11184,3038,15,1,f +11184,3039,15,1,f +11184,3039pr0005,15,1,f +11184,3040b,15,2,f +11184,3062b,7,4,f +11184,3068b,0,1,f +11184,3068b,15,3,f +11184,3068bpb0002,7,1,f +11184,3069b,15,1,f +11184,3069b,0,3,f +11184,3069bp02,7,1,f +11184,3069bp80,15,1,f +11184,3069bpr0016,15,4,f +11184,3070b,36,6,f +11184,3070b,46,4,f +11184,3070b,33,1,t +11184,3070b,7,6,f +11184,3070b,33,1,f +11184,3460,15,2,f +11184,3464,47,2,f +11184,3491,0,1,f +11184,3623,0,2,f +11184,3626bp04,14,1,f +11184,3626bp7e,14,1,f +11184,3626bpx11,14,1,f +11184,3641,0,2,f +11184,3660,0,1,f +11184,3660p01,15,1,f +11184,3666,15,4,f +11184,3679,7,4,f +11184,3680,4,1,f +11184,3680,0,1,f +11184,3680,1,2,f +11184,3700,0,2,f +11184,3709,7,1,f +11184,3710,0,4,f +11184,3710,15,2,f +11184,3738,7,2,f +11184,3794a,0,2,f +11184,3794a,15,6,f +11184,3795,7,1,f +11184,3795,0,1,f +11184,3795,15,1,f +11184,3821,15,1,f +11184,3822,15,1,f +11184,3823,41,1,f +11184,3829c01,4,1,f +11184,3900,15,1,f +11184,3901,0,1,f +11184,3937,7,1,f +11184,3938,0,1,f +11184,3942c,4,2,f +11184,3960,7,1,f +11184,3962a,0,1,f +11184,4070,15,2,f +11184,4070,4,1,f +11184,4079,1,2,f +11184,4081b,7,2,f +11184,4085c,15,6,f +11184,4150,7,1,f +11184,4162,0,1,f +11184,4211,15,1,f +11184,4213,15,3,f +11184,4214,15,1,f +11184,4215a,15,3,f +11184,4215a,0,2,f +11184,4276b,0,2,f +11184,4282,15,1,f +11184,4286,15,2,f +11184,4315,15,3,f +11184,4460a,15,2,f +11184,4477,0,1,f +11184,4480c01,15,1,f +11184,4485pb01,0,1,f +11184,4531,7,1,f +11184,4598,0,1,f +11184,4600,7,1,f +11184,4623,15,2,f +11184,4623,0,2,f +11184,4740,0,1,f +11184,4862,41,2,f +11184,4865a,0,1,f +11184,6014a,15,10,f +11184,6015,0,10,f +11184,6016,7,2,f +11184,6019,0,2,f +11184,6141,33,1,t +11184,6141,36,1,f +11184,6141,46,15,f +11184,6141,46,1,t +11184,6141,33,2,f +11184,6141,36,1,t +11184,6141,15,2,f +11184,6156,15,4,f +11184,6157,0,4,f +11184,6348stk01,9999,1,t +11184,73983,7,3,f +11184,970c00,0,3,f +11184,973px20c01,0,1,f +11184,973px67c01,0,1,f +11184,973px9c01,0,1,f +11185,11127,41,1,f +11185,11476,71,2,f +11185,15464pr0001,70,1,f +11185,298c02,71,2,f +11185,3020,0,1,f +11185,3022,27,1,f +11185,3626cpr1356,70,1,f +11185,4871,70,1,f +11185,53451,27,8,f +11185,59900,35,2,f +11185,6141,35,2,f +11185,85984,71,1,f +11185,88072,72,2,f +11185,92692,0,2,f +11185,95199,72,2,f +11185,970c00pr0589,70,1,f +11185,973pr2537c01,70,1,f +11185,98313,72,8,f +11185,99781,0,1,f +11188,2335p30,15,1,f +11188,2362a,7,4,f +11188,2518,2,4,f +11188,2530,8,1,f +11188,2536,6,5,f +11188,2550c01,6,1,f +11188,2563,6,1,f +11188,2566,6,1,f +11188,3004,7,2,f +11188,3005,7,1,f +11188,3021,7,1,f +11188,3062b,2,1,f +11188,3626bp49,14,1,f +11188,3794a,7,2,f +11188,3957a,0,1,f +11188,3958,14,1,f +11188,4032a,2,1,f +11188,4738a,6,1,f +11188,4739a,6,1,f +11188,57503,334,1,f +11188,57504,334,1,f +11188,57505,334,1,f +11188,57506,334,1,f +11188,970c00,0,1,f +11188,973p34c01,1,1,f +11189,3004,8,100,f +11191,4180c05,4,2,f +11192,697,9999,1,f +11192,697.2stk01,9999,1,f +11195,777p03,15,5,f +11196,2343,14,1,f +11196,2357,0,3,f +11196,2375,0,1,f +11196,2453a,0,2,f +11196,2489,6,1,f +11196,2518,2,1,f +11196,2527,4,1,f +11196,2530,8,3,f +11196,2540,4,1,f +11196,2542,6,2,f +11196,2543,4,1,f +11196,2544,6,1,f +11196,2551,4,1,f +11196,2561,6,1,f +11196,2562,6,1,f +11196,3002,4,1,f +11196,3004,0,3,f +11196,3004,7,1,f +11196,30048,0,1,f +11196,3005,0,10,f +11196,30055,0,2,f +11196,3009,0,2,f +11196,3010,0,1,f +11196,30136,6,18,f +11196,30137,6,2,f +11196,30140,6,4,f +11196,3020,14,2,f +11196,3023,14,4,f +11196,3031,4,1,f +11196,3062b,0,5,f +11196,3062b,7,7,f +11196,3334,1,1,f +11196,3455,0,4,f +11196,3460,0,1,f +11196,3622,0,2,f +11196,3623,0,2,f +11196,3626bpb0018,14,1,f +11196,3626bpb0020,14,1,f +11196,3626bpx108,14,1,f +11196,3666,0,1,f +11196,3679,7,1,f +11196,3680,4,1,f +11196,3710,7,3,f +11196,3795,0,1,f +11196,3849,8,3,f +11196,3937,14,1,f +11196,3938,4,1,f +11196,3957a,0,3,f +11196,3958,0,1,f +11196,4070,4,2,f +11196,4085c,0,10,f +11196,4276b,0,1,f +11196,4477,0,2,f +11196,4497,6,4,f +11196,6019,7,6,f +11196,6026,2,1,f +11196,6027,2,1,f +11196,6028,2,1,f +11196,6064,2,1,f +11196,6141,7,3,f +11196,6141,7,1,t +11196,6148,2,1,f +11196,6255,2,1,f +11196,6541,7,2,f +11196,71155,0,1,f +11196,84943,8,1,f +11196,970c00,7,1,f +11196,970c00,0,1,f +11196,970c00,1,1,f +11196,973p30c01,14,1,f +11196,973p3cc01,15,1,f +11196,973pb0019c01,4,1,f +11196,x376px4,0,1,f +11197,10199,10,1,f +11197,11197,85,1,f +11197,17304,4,1,f +11197,18762,31,1,f +11197,18783,70,2,f +11197,19133,31,1,f +11197,19365,15,1,f +11197,20820,15,1,f +11197,3437,31,4,f +11197,3437,85,4,f +11197,3437,191,2,f +11197,4066,31,4,f +11197,44524,10,2,f +11197,58086,70,1,f +11197,61896,484,1,f +11197,6474,85,2,f +11197,6497,15,3,f +11197,6510,5,2,f +11197,92094,73,1,f +11197,98225,15,2,f +11197,98459,70,1,f +11198,3041,4,25,f +11199,2224,72,1,f +11199,3437,73,1,f +11199,3437,484,1,f +11199,40666,1,1,f +11199,40666,10,1,f +11199,4066pb426,15,1,f +11199,51703,182,1,f +11199,58498c01,0,1,f +11199,6510,14,1,f +11199,6510,4,1,f +11199,88760,0,1,f +11199,88762c01pb13,0,2,f +11199,98218,10,1,f +11199,98247pb01,4,1,f +11201,x507,9999,4,f +11202,10197,72,1,f +11202,11203,72,1,f +11202,11211,4,1,f +11202,11211,19,1,f +11202,11458,72,2,f +11202,11476,71,2,f +11202,11477,179,7,f +11202,11478,71,1,f +11202,12825,71,2,f +11202,13269,0,1,f +11202,13731,0,4,f +11202,14301,71,1,f +11202,14704,71,22,f +11202,15068,0,23,f +11202,15068,72,2,f +11202,15071,0,1,f +11202,15303,182,3,f +11202,15303,182,1,t +11202,15391,15,2,f +11202,15392,72,2,f +11202,15392,72,2,t +11202,15400,72,2,f +11202,15406,0,1,f +11202,15446,72,1,f +11202,15462,28,1,f +11202,15535,72,2,f +11202,17114,72,1,f +11202,18336,35,1,f +11202,2412b,179,27,f +11202,2420,72,5,f +11202,2431,0,1,f +11202,2431,41,12,f +11202,2431,71,2,f +11202,2431,72,3,f +11202,2431pr0017,14,3,f +11202,2432,0,5,f +11202,2450,72,2,f +11202,2456,15,1,f +11202,2458,72,1,f +11202,2458,71,2,f +11202,2460,0,1,f +11202,2476,71,12,f +11202,2540,72,3,f +11202,2540,71,2,f +11202,2654,72,1,f +11202,2654,46,21,f +11202,2780,0,52,f +11202,2780,0,5,t +11202,298c02,0,1,f +11202,298c02,0,1,t +11202,30000,72,2,f +11202,3003,0,3,f +11202,3004,0,15,f +11202,3007,0,1,f +11202,3009,72,3,f +11202,30136,72,2,f +11202,30137,71,1,f +11202,30162,72,3,f +11202,30165,72,1,f +11202,30171,0,1,f +11202,3020,71,5,f +11202,3021,72,4,f +11202,3021,0,1,f +11202,3021,14,1,f +11202,3022,71,6,f +11202,3023,41,22,f +11202,3023,15,4,f +11202,3023,72,4,f +11202,3023,71,4,f +11202,3029,0,10,f +11202,30304,72,1,f +11202,3031,72,2,f +11202,3032,72,1,f +11202,3036,71,1,f +11202,30373,72,1,f +11202,30374,0,1,f +11202,30374,41,1,f +11202,30383,72,2,f +11202,30386,14,1,f +11202,30387,14,1,f +11202,3039pr0002,15,1,f +11202,3040b,15,1,f +11202,3045,0,4,f +11202,30552,0,1,f +11202,30553,0,2,f +11202,30553,72,1,f +11202,30554a,0,1,f +11202,30592,72,1,f +11202,30602,35,5,f +11202,30602,0,1,f +11202,30602,41,4,f +11202,3069b,47,1,f +11202,3069bpr0030,72,1,f +11202,3069bpr0030,15,2,f +11202,3069bpr0086,71,2,f +11202,32000,71,2,f +11202,32001,71,1,f +11202,32002,19,1,t +11202,32002,19,4,f +11202,32013,72,1,f +11202,32018,0,4,f +11202,32039,0,2,f +11202,32054,71,10,f +11202,32062,4,13,f +11202,32073,71,2,f +11202,32123b,14,1,t +11202,32123b,71,1,t +11202,32123b,14,1,f +11202,32123b,71,3,f +11202,32126,0,4,f +11202,32140,0,12,f +11202,32324,71,1,f +11202,3245c,0,2,f +11202,32523,72,2,f +11202,32523,14,2,f +11202,32525,0,4,f +11202,32525,179,6,f +11202,32530,0,1,f +11202,3307,72,3,f +11202,33299a,71,1,f +11202,3460,19,3,f +11202,3623,71,4,f +11202,3623,0,2,f +11202,3626cpr1502,14,1,f +11202,3626cpr1503,14,1,f +11202,3626cpr1504,14,1,f +11202,3626cpr1505,14,1,f +11202,3626cpr1508,14,1,f +11202,3633,72,2,f +11202,3660,0,8,f +11202,3666,71,2,f +11202,3666,72,3,f +11202,3666,288,2,f +11202,3673,71,2,f +11202,3673,71,1,t +11202,3678b,0,2,f +11202,3679,71,2,f +11202,3680,15,2,f +11202,3701,0,1,f +11202,3703,72,4,f +11202,3706,0,1,f +11202,3710,288,4,f +11202,3710,0,2,f +11202,3710,71,2,f +11202,3710,72,2,f +11202,3713,4,9,f +11202,3713,4,2,t +11202,3738,72,3,f +11202,3749,19,7,f +11202,3794b,19,1,f +11202,3794b,0,2,f +11202,3795,0,7,f +11202,3795,71,1,f +11202,3829c01,71,2,f +11202,3832,0,4,f +11202,3839b,0,1,f +11202,3894,71,2,f +11202,3937,15,2,f +11202,3938,71,1,f +11202,3941,41,3,f +11202,3941,72,1,f +11202,3956,71,1,f +11202,3958,72,1,f +11202,3960,41,8,f +11202,4032a,0,1,f +11202,4079,0,3,f +11202,4081b,72,1,f +11202,41239,0,4,f +11202,4151b,72,1,f +11202,41539,71,5,f +11202,4162,4,2,f +11202,4162,72,3,f +11202,41769,0,2,f +11202,41770,0,2,f +11202,42003,71,1,f +11202,4215b,41,3,f +11202,42610,71,8,f +11202,4274,71,2,t +11202,4274,1,4,t +11202,4274,1,14,f +11202,4274,71,8,f +11202,4285,72,1,f +11202,43093,1,3,f +11202,43713,72,1,f +11202,44309,0,8,f +11202,44675,0,1,f +11202,44676,0,2,f +11202,44728,72,1,f +11202,44728,71,1,f +11202,4519,71,1,f +11202,4590,72,1,f +11202,4595,71,1,f +11202,46212,41,2,f +11202,4733,71,1,f +11202,4740,35,2,f +11202,47457,72,4,f +11202,47457,71,2,f +11202,47458,0,1,f +11202,4864b,41,4,f +11202,4865b,35,1,f +11202,48729a,71,1,f +11202,48729a,71,1,t +11202,48989,71,1,f +11202,49668,15,2,f +11202,50943,179,2,f +11202,50950,0,2,f +11202,51739,0,2,f +11202,54200,72,2,f +11202,54200,72,1,t +11202,54821,35,1,f +11202,54821,35,1,t +11202,56145,71,8,f +11202,57895,41,1,f +11202,57909b,72,4,f +11202,58176,41,8,f +11202,59349,41,1,f +11202,59426,72,1,f +11202,59900,35,2,f +11202,59900,182,12,f +11202,59900,71,8,f +11202,59900,72,2,f +11202,6014b,71,4,f +11202,6020,71,1,f +11202,60471,71,2,f +11202,60474,0,2,f +11202,60477,0,6,f +11202,60479,71,8,f +11202,60481,0,6,f +11202,60596,0,1,f +11202,60849,71,1,f +11202,60849,71,1,t +11202,60897,71,4,f +11202,6111,0,2,f +11202,61184,71,2,f +11202,61252,71,4,f +11202,6134,0,2,f +11202,61409,72,2,f +11202,61409,0,2,f +11202,6141,57,4,f +11202,6141,34,6,f +11202,6141,179,4,t +11202,6141,41,2,t +11202,6141,47,10,f +11202,6141,34,2,t +11202,6141,179,13,f +11202,6141,41,8,f +11202,6141,47,2,t +11202,6141,36,2,t +11202,6141,36,2,f +11202,6141,57,3,t +11202,61485,0,1,f +11202,6157,71,2,f +11202,6182,19,1,f +11202,6187,0,2,f +11202,6222,71,2,f +11202,6232,72,2,f +11202,62360,35,1,f +11202,62361,0,2,f +11202,62462,71,4,f +11202,62462,0,4,f +11202,6249,71,1,f +11202,6249,72,2,f +11202,62576,41,1,f +11202,62698,0,1,f +11202,62810,71,1,f +11202,63864,72,2,f +11202,63864,4,2,f +11202,63869,71,4,f +11202,64179,71,2,f +11202,64782,0,12,f +11202,64799,71,1,f +11202,6553,71,2,f +11202,6558,1,44,f +11202,6587,28,7,f +11202,6628,0,2,t +11202,6628,0,22,f +11202,6636,0,2,f +11202,6636,72,2,f +11202,6641,4,3,f +11202,72454,72,1,f +11202,73590c03a,0,2,f +11202,73983,72,1,f +11202,73983,71,2,f +11202,75937,0,1,f +11202,78c09,179,2,f +11202,85940,0,2,f +11202,85941,41,1,f +11202,85943,72,1,f +11202,85984,0,1,f +11202,87079,0,7,f +11202,87082,0,2,f +11202,87083,72,9,f +11202,87087,4,2,f +11202,87087,15,1,f +11202,87580,0,2,f +11202,87609,15,1,f +11202,87697,0,4,f +11202,87990,26,1,f +11202,88072,14,1,f +11202,90611,0,2,f +11202,92013,72,4,f +11202,92083,484,1,f +11202,92220,179,4,f +11202,92280,0,4,f +11202,92474,41,1,f +11202,92747,41,1,f +11202,92907,71,4,f +11202,92946,15,1,f +11202,92946,0,4,f +11202,93273,72,3,f +11202,93571,0,2,f +11202,95120,0,2,f +11202,95199,15,2,f +11202,95347,0,1,f +11202,96874,25,1,t +11202,970c00,272,1,f +11202,970c00pr0724,0,1,f +11202,970c00pr0734,0,1,f +11202,970c00pr0739,0,1,f +11202,970c00pr0740,0,1,f +11202,973pr2775c01,0,1,f +11202,973pr2776c01,0,1,f +11202,973pr2777c01,15,1,f +11202,973pr2778c01,0,1,f +11202,973pr2781c01,0,1,f +11202,98564,35,2,f +11202,99207,71,1,f +11202,99780,72,7,f +11202,99781,0,6,f +11205,11153,272,4,f +11205,11213,71,2,f +11205,14137,0,2,f +11205,15207,0,2,f +11205,17010,148,2,f +11205,17011,148,1,f +11205,17014pr0001,179,1,f +11205,17468pr0001,148,1,f +11205,2431,14,4,f +11205,2456,71,1,f +11205,2654,71,2,f +11205,2654,182,1,f +11205,2817,0,2,f +11205,30000,71,2,f +11205,3003,320,1,f +11205,3003,72,1,f +11205,3020,0,1,f +11205,3021,72,1,f +11205,3021,0,3,f +11205,3023,272,10,f +11205,3023,0,3,f +11205,3024,272,4,f +11205,3024,272,1,t +11205,3034,72,1,f +11205,3037,272,1,f +11205,30381,0,1,f +11205,3040b,320,2,f +11205,3062b,46,3,f +11205,3069b,72,2,f +11205,3176,0,1,f +11205,32064b,15,1,f +11205,32474,80,1,f +11205,3298,272,2,f +11205,3626cpr1467,78,1,f +11205,3626cpr1509,78,1,f +11205,3626cpr1510,0,1,f +11205,3660,272,2,f +11205,3665,320,2,f +11205,3700,72,1,f +11205,3700,0,1,f +11205,3701,71,1,f +11205,3710,272,4,f +11205,3747b,72,1,f +11205,3941,272,4,f +11205,3956,71,2,f +11205,4032a,72,1,f +11205,4032a,0,1,f +11205,4081b,0,2,f +11205,41532,0,2,f +11205,41747,14,1,f +11205,41748,14,1,f +11205,41769,272,1,f +11205,41769,320,1,f +11205,41770,320,1,f +11205,41770,272,1,f +11205,42021,272,1,f +11205,42023,14,2,f +11205,44567a,14,4,f +11205,4740,41,1,f +11205,51739,272,1,f +11205,54200,272,12,f +11205,54200,272,1,t +11205,57906,272,4,f +11205,58176,36,2,f +11205,58176,33,2,f +11205,59426,72,1,f +11205,60478,14,4,f +11205,61184,71,2,f +11205,61252,14,4,f +11205,6141,182,1,t +11205,6141,0,1,t +11205,6141,182,8,f +11205,6141,41,2,f +11205,6141,72,16,f +11205,6141,0,5,f +11205,6141,4,1,t +11205,6141,4,2,f +11205,6141,41,1,t +11205,6141,72,1,t +11205,61482,71,1,t +11205,61482,71,1,f +11205,62810,84,1,f +11205,64867,72,1,f +11205,6541,0,2,f +11205,72454,72,1,f +11205,85984,71,1,f +11205,92279,40,1,f +11205,92280,0,4,f +11205,92579,40,1,f +11205,92593,4,2,f +11205,93273,14,2,f +11205,970c00,272,1,f +11205,970c00pr0726,0,1,f +11205,970x026,72,1,f +11205,973pr2782c01,1,1,f +11205,973pr2783c01,0,1,f +11205,973pr2784c01,320,1,f +11206,18041,179,1,t +11206,18041,179,1,f +11206,2412b,179,1,f +11206,24151,4,1,f +11206,2431,4,2,f +11206,2432,70,1,f +11206,24326,71,2,f +11206,2540,25,1,f +11206,30028,0,6,f +11206,30165,27,1,f +11206,30192,72,1,f +11206,3021,72,1,f +11206,3022,28,1,f +11206,3022,27,1,f +11206,3022,4,1,f +11206,3023,25,1,f +11206,3023,14,2,f +11206,3626cpr1893,0,1,f +11206,3626cpr1902,78,1,f +11206,3679,71,1,f +11206,3680,0,1,f +11206,3829c01,0,2,f +11206,3942c,179,1,f +11206,41879a,2,1,f +11206,41879a,0,1,f +11206,4349,4,1,f +11206,44674,27,2,f +11206,4624,14,2,f +11206,4624,14,1,t +11206,54200,46,2,f +11206,54200,40,1,t +11206,54200,40,2,f +11206,54200,36,2,f +11206,54200,46,1,t +11206,54200,36,1,t +11206,59895,0,2,f +11206,59900,179,1,t +11206,59900,179,3,f +11206,6019,0,1,f +11206,6126b,182,2,f +11206,63868,4,2,f +11206,64728,4,1,f +11206,74967,14,2,f +11206,74967,71,4,f +11206,86208,72,2,f +11206,92280,71,2,f +11206,93273,2,2,f +11206,93274,4,2,f +11206,973pr3338c01,0,1,f +11206,973pr3343,4,1,f +11206,98138,47,1,f +11206,98138,47,1,t +11206,98834pr0004,14,1,f +11206,99207,27,2,f +11206,99464,14,1,f +11206,99930,0,1,f +11207,11211,19,12,f +11207,11212,71,1,f +11207,14719,71,2,f +11207,15573,19,3,f +11207,15573,15,12,f +11207,15672,379,32,f +11207,18674,72,2,f +11207,2412b,19,74,f +11207,2420,0,2,f +11207,2420,15,4,f +11207,2431,0,2,f +11207,2431,71,8,f +11207,3005,19,5,f +11207,3005,379,16,f +11207,3020,0,1,f +11207,3020,19,4,f +11207,3021,15,1,f +11207,3021,19,5,f +11207,3022,19,3,f +11207,3022,0,3,f +11207,3022,15,12,f +11207,3023,14,4,f +11207,3023,19,4,f +11207,3023,0,7,f +11207,3023,47,42,f +11207,3024,19,1,t +11207,3024,19,22,f +11207,3024,0,1,t +11207,3024,0,2,f +11207,3034,0,3,f +11207,30374,71,2,f +11207,3062b,71,4,f +11207,3069b,19,6,f +11207,3069b,47,6,f +11207,3069b,71,5,f +11207,3070b,379,4,f +11207,3070b,71,14,f +11207,3070b,15,1,t +11207,3070b,47,1,t +11207,3070b,19,1,t +11207,3070b,47,6,f +11207,3070b,15,4,f +11207,3070b,379,1,t +11207,3070b,71,1,t +11207,3070b,19,8,f +11207,3460,71,4,f +11207,3460,0,4,f +11207,3460,19,2,f +11207,3623,379,19,f +11207,3623,71,6,f +11207,3623,0,2,f +11207,3623,19,11,f +11207,3710,71,2,f +11207,3710,15,2,f +11207,3710,0,2,f +11207,3794b,71,10,f +11207,3795,71,1,f +11207,3957a,15,1,f +11207,4032a,72,2,f +11207,4162,0,2,f +11207,4162,71,4,f +11207,4162pr0045,0,1,f +11207,41769,72,2,f +11207,4274,1,16,f +11207,4274,1,1,t +11207,43722,19,9,f +11207,43722,71,3,f +11207,4477,19,4,f +11207,4588,72,1,f +11207,4733,71,5,f +11207,4740,71,2,f +11207,47905,19,16,f +11207,48336,0,2,f +11207,4865b,19,2,f +11207,49668,179,4,f +11207,52107,71,4,f +11207,59900,72,1,f +11207,59900,179,5,f +11207,60897,71,4,f +11207,6141,19,1,t +11207,6141,71,2,f +11207,6141,71,1,t +11207,6141,19,14,f +11207,63864,326,4,f +11207,63965,71,2,f +11207,6541,14,16,f +11207,85861,14,1,t +11207,85861,14,1,f +11207,87079,71,16,f +11207,87079,379,4,f +11207,87087,15,6,f +11207,87087,72,12,f +11207,87580,71,1,f +11207,87580,19,2,f +11207,87609,0,4,f +11207,87617,0,1,f +11207,90398,378,1,t +11207,90398,378,1,f +11207,91988,0,2,f +11207,96874,25,1,t +11207,99206,0,1,f +11207,99780,72,6,f +11208,2339,6,2,f +11208,3002,6,1,f +11208,3004,6,1,f +11208,30239,2,2,f +11210,92751pr0001,28,1,f +11210,970c69pr0237,28,1,f +11210,973pr1798c01,28,1,f +11212,2431,71,2,f +11212,2431,19,10,f +11212,2431,0,1,f +11212,3002,19,4,f +11212,3003,19,3,f +11212,3004,19,10,f +11212,3005,19,2,f +11212,3010,19,1,f +11212,3020,71,4,f +11212,3021,19,9,f +11212,3021,71,2,f +11212,3022,19,1,f +11212,3023,19,9,f +11212,3023,71,1,f +11212,3024,19,5,f +11212,3024,71,1,f +11212,3028,0,2,f +11212,3031,71,1,f +11212,3035,71,1,f +11212,3068b,19,1,f +11212,3069b,71,1,f +11212,3069b,19,21,f +11212,3070b,71,1,t +11212,3070b,71,2,f +11212,3070b,19,1,t +11212,3070b,19,19,f +11212,3460,71,2,f +11212,3622,71,1,f +11212,3622,19,6,f +11212,3623,71,4,f +11212,3623,19,11,f +11212,3710,19,14,f +11212,3710,71,3,f +11212,3794b,71,3,f +11212,3794b,19,21,f +11212,3832,71,1,f +11212,4162,19,5,f +11212,4477,71,1,f +11212,47905,19,23,f +11212,4865a,71,2,f +11212,60479,0,1,f +11212,6141,297,1,t +11212,6141,297,1,f +11212,63864,71,5,f +11212,6636,19,6,f +11212,6636,0,5,f +11212,6636,71,2,f +11212,6636pr0009,0,1,f +11212,6636pr0010,0,1,f +11212,87087,19,8,f +11213,21778,0,1,f +11213,26562,15,1,f +11213,3626cpr1917,70,1,f +11213,88646pr0002,15,1,f +11213,970c00pr1052,0,1,f +11213,973pr3373c01,15,1,f +11214,11399,72,1,f +11214,12825,71,1,f +11214,14682,71,2,f +11214,15068pr0003,25,1,f +11214,15207,71,2,f +11214,15540,72,4,f +11214,15541pat0001,1,2,f +11214,18738,71,1,t +11214,18738,71,1,f +11214,2412b,71,11,f +11214,2412b,25,1,f +11214,2431,25,3,f +11214,2432,72,3,f +11214,2432,70,1,f +11214,2460,72,2,f +11214,2508,0,1,f +11214,2540,0,2,f +11214,2569,0,1,f +11214,2569,0,1,t +11214,2780,0,1,t +11214,2780,0,8,f +11214,3001,4,1,f +11214,3001,72,3,f +11214,3002,0,4,f +11214,3003,71,2,f +11214,3004,25,2,f +11214,3005,4,1,f +11214,3005,25,11,f +11214,3007,71,1,f +11214,3009,25,5,f +11214,3009,72,2,f +11214,3010,72,3,f +11214,30150,70,1,f +11214,30162,71,1,f +11214,30194,72,1,f +11214,3020,0,2,f +11214,3020,70,1,f +11214,3021,0,3,f +11214,3022,14,2,f +11214,3022,71,4,f +11214,3023,70,2,f +11214,3023,25,2,f +11214,30236,71,2,f +11214,30237b,0,2,f +11214,3024,182,4,f +11214,3024,36,1,t +11214,3024,36,2,f +11214,3024,182,1,t +11214,3029,72,1,f +11214,30293,41,1,f +11214,30294,41,1,f +11214,3032,0,1,f +11214,3032,15,1,f +11214,3035,0,1,f +11214,30357,72,2,f +11214,30374,0,1,f +11214,30377,71,2,f +11214,30377,71,1,t +11214,30385,80,1,f +11214,30386,14,2,f +11214,30387,14,1,f +11214,3039,25,2,f +11214,30395,72,1,f +11214,30396,0,1,f +11214,3062b,70,2,f +11214,3062b,72,2,f +11214,3068b,71,2,f +11214,3068b,25,1,f +11214,3068b,0,1,f +11214,3069b,25,2,f +11214,3070bpr0007,71,1,f +11214,3070bpr0007,71,1,t +11214,32000,72,2,f +11214,32028,15,4,f +11214,32316,14,1,f +11214,3245c,25,3,f +11214,3456,0,1,f +11214,3626cpr0914,14,1,f +11214,3626cpr1395a,14,1,f +11214,3626cpr1410,14,1,f +11214,3660,72,1,f +11214,3666,25,2,f +11214,3666,15,3,f +11214,3666,0,1,f +11214,3701,71,5,f +11214,3710,1,2,f +11214,3710,15,2,f +11214,3710,71,8,f +11214,3710,25,2,f +11214,3794b,25,4,f +11214,3794b,4,2,f +11214,3795,15,5,f +11214,3795,72,2,f +11214,3795,25,2,f +11214,3821,25,1,f +11214,3822,25,1,f +11214,3829c01,71,2,f +11214,3830,72,1,f +11214,3831,72,1,f +11214,3839b,0,1,f +11214,3841,72,1,f +11214,3899,4,1,f +11214,4006,0,1,f +11214,4032a,71,1,f +11214,4032a,0,1,f +11214,4070,70,1,f +11214,41334,272,1,f +11214,41532,0,1,f +11214,4162,72,2,f +11214,4176,41,1,f +11214,41854,25,2,f +11214,42023,72,2,f +11214,42608,71,4,f +11214,4282,72,1,f +11214,43898,15,1,f +11214,4460b,25,2,f +11214,44728,14,4,f +11214,4477,72,1,f +11214,4477,15,3,f +11214,4733,0,1,f +11214,4740,15,1,f +11214,47457,15,1,f +11214,48336,71,5,f +11214,52031,25,3,f +11214,55981,71,4,f +11214,56891,0,4,f +11214,59900,182,4,f +11214,60032,25,2,f +11214,60032,0,1,f +11214,6014b,71,4,f +11214,60470b,14,1,f +11214,60479,0,1,f +11214,60581,72,3,f +11214,60601,41,12,f +11214,60657,71,1,f +11214,60658,71,1,f +11214,60849,71,1,t +11214,60849,71,2,f +11214,60897,72,2,f +11214,6091,4,1,f +11214,6111,72,1,f +11214,6112,0,2,f +11214,6117,72,1,f +11214,61345,25,5,f +11214,6141,47,6,f +11214,6141,25,1,f +11214,6141,25,1,t +11214,6141,47,2,t +11214,6154,25,2,f +11214,6155,71,2,f +11214,6157,71,2,f +11214,62113,0,1,f +11214,6232,71,1,f +11214,62462,0,2,f +11214,6249,72,2,f +11214,72454,0,2,f +11214,73983,15,1,f +11214,74698,0,1,f +11214,85984,0,1,f +11214,85984,25,2,f +11214,86208,72,1,f +11214,87079,25,1,f +11214,87079,15,1,f +11214,87552,71,2,f +11214,87580,72,10,f +11214,87609,25,1,f +11214,87609,15,1,f +11214,87697,0,4,f +11214,88072,0,1,f +11214,92280,71,2,f +11214,92338,72,1,f +11214,92593,0,1,f +11214,970c00,272,1,f +11214,970c00pr0645,1,2,f +11214,973pr1709c01,1,1,f +11214,973pr2641c01,25,2,f +11214,98138,46,8,f +11214,98138,46,2,t +11214,98263,71,1,f +11214,98282,72,2,f +11214,99207,71,2,f +11214,99780,0,5,f +11215,3626bpr0567,14,1,f +11215,59232,179,1,t +11215,59232,179,1,f +11215,59232,135,1,t +11215,89520,148,1,f +11215,970c00pr0154,0,1,f +11215,973pr1626c01,0,1,f +11216,3001a,0,4,f +11216,3002a,0,4,f +11216,3003,0,4,f +11216,3004,14,14,f +11216,3005,4,8,f +11216,3005,14,6,f +11216,3007,0,2,f +11216,3008,14,8,f +11216,3008,4,1,f +11216,3008,0,4,f +11216,3009,4,3,f +11216,3009,14,4,f +11216,3010,4,1,f +11216,3010,47,4,f +11216,3020,14,7,f +11216,3020,4,3,f +11216,3021,14,8,f +11216,3021,0,8,f +11216,3022,14,6,f +11216,3022,4,8,f +11216,3022,1,3,f +11216,3023,4,2,f +11216,3023,14,19,f +11216,3024,0,1,t +11216,3024,0,4,f +11216,3028,4,1,f +11216,3029,14,3,f +11216,3029,4,1,f +11216,3030,14,3,f +11216,3031,4,1,f +11216,3032,14,2,f +11216,3033,14,2,f +11216,3034,4,2,f +11216,3035,14,1,f +11216,3035,4,5,f +11216,3062a,4,4,f +11216,3062a,15,8,f +11216,3062a,15,1,t +11216,3068b,14,1,t +11216,3068b,14,29,f +11216,3069b,0,1,t +11216,3069b,14,4,f +11216,3069b,4,16,f +11216,3069b,14,1,t +11216,3069b,4,1,t +11216,3069b,0,16,f +11216,3070b,0,4,f +11216,3070b,0,1,t +11216,3403c01,0,1,f +11216,3460,14,6,f +11216,3460,4,4,f +11216,3482,7,6,f +11216,3581,14,4,f +11216,3582,0,4,f +11216,3582,0,1,t +11216,3622,14,8,f +11216,3623,7,2,f +11216,3623,14,6,f +11216,3634,0,4,f +11216,3647,7,9,f +11216,3648a,7,2,f +11216,3650a,7,2,f +11216,3651,7,13,f +11216,3660,4,2,f +11216,3665,14,8,f +11216,3666,4,4,f +11216,3666,0,4,f +11216,3666,14,22,f +11216,3673,7,28,f +11216,3700,4,4,f +11216,3700,14,12,f +11216,3700,0,4,f +11216,3701,4,4,f +11216,3701,14,3,f +11216,3701,1,2,f +11216,3702,4,10,f +11216,3702,14,2,f +11216,3703,1,4,f +11216,3703,4,3,f +11216,3703,0,2,f +11216,3703,14,4,f +11216,3704,0,4,f +11216,3705,0,2,f +11216,3706,0,2,f +11216,3707,0,10,f +11216,3708,0,3,f +11216,3710,4,1,f +11216,3710,14,12,f +11216,3713,7,17,f +11216,3736,7,3,f +11216,3738,14,2,f +11216,3738,4,2,f +11216,3743,7,12,f +11216,3749,7,5,f +11216,3795,4,3,f +11216,56823,0,1,f +11216,71509,0,1,f +11216,9244,7,2,f +11217,30173a,297,1,f +11217,30173a,297,1,t +11217,30177,0,1,f +11217,3626bpb0429,14,1,f +11217,88646,0,1,f +11217,970c00,0,1,f +11217,973pr1543c01,0,1,f +11220,10247,72,1,f +11220,10907,320,1,f +11220,10908pr0001,320,1,f +11220,11211,71,5,f +11220,11213,71,1,f +11220,13731,0,2,f +11220,14181,0,1,f +11220,15207,15,3,f +11220,2340,0,1,f +11220,2341,71,2,f +11220,2357,72,2,f +11220,2357,71,3,f +11220,2412b,71,4,f +11220,2412b,0,1,f +11220,2419,72,1,f +11220,2431,288,1,f +11220,2432,14,1,f +11220,2449,71,11,f +11220,2454a,15,1,f +11220,2458,19,8,f +11220,2460,71,1,f +11220,2479,0,1,f +11220,2653,71,3,f +11220,2654,0,1,f +11220,2877,19,3,f +11220,3001,4,1,f +11220,3002,1,1,f +11220,3003,19,3,f +11220,3005,15,5,f +11220,3005,71,3,f +11220,3005,19,3,f +11220,3009,0,1,f +11220,3009,15,3,f +11220,3010,15,11,f +11220,3010,19,2,f +11220,30151a,47,1,f +11220,3020,72,2,f +11220,3020,288,1,f +11220,3020,71,3,f +11220,3021,14,5,f +11220,3022,72,1,f +11220,3023,14,6,f +11220,3023,15,7,f +11220,30236,72,1,f +11220,30248,72,1,f +11220,3029,71,1,f +11220,3030,0,1,f +11220,3032,71,4,f +11220,3034,71,1,f +11220,3035,72,2,f +11220,30350b,41,2,f +11220,30357,72,2,f +11220,30374,0,2,f +11220,3039,4,2,f +11220,3040b,72,4,f +11220,30414,14,2,f +11220,3046a,72,2,f +11220,30526,72,2,f +11220,30552,71,1,f +11220,30602,15,2,f +11220,3062b,41,2,f +11220,3062b,4,1,f +11220,3062b,41,1,t +11220,3069b,41,5,f +11220,3070b,15,1,t +11220,3070b,15,2,f +11220,32062,4,1,f +11220,32291,72,1,f +11220,32316,72,1,f +11220,32316,0,2,f +11220,32449,0,6,f +11220,3297,15,1,f +11220,3460,71,2,f +11220,3622,72,1,f +11220,3623,72,1,f +11220,3626c,15,1,f +11220,3626cpr1218,78,1,f +11220,3626cpr1219,78,1,f +11220,3626cpr1220,1000,1,f +11220,3626cpr1260,78,1,f +11220,3660,0,1,f +11220,3660,72,1,f +11220,3666,0,3,f +11220,3666,15,2,f +11220,3666,14,2,f +11220,3673,71,1,t +11220,3673,71,1,f +11220,3700,4,2,f +11220,3701,71,2,f +11220,3705,0,1,f +11220,3710,19,1,f +11220,3710,72,1,f +11220,3713,4,1,t +11220,3713,4,1,f +11220,3747a,72,3,f +11220,3794b,0,4,f +11220,3795,71,1,f +11220,3830,72,2,f +11220,3831,72,2,f +11220,3899,47,1,f +11220,4006,0,1,f +11220,42003,4,1,f +11220,42022,0,2,f +11220,4282,71,3,f +11220,4287,72,3,f +11220,43898,0,1,f +11220,44301a,0,1,f +11220,44302a,71,2,f +11220,4449,71,1,f +11220,4522,0,1,f +11220,4533,15,2,f +11220,45677,0,1,f +11220,4599b,4,1,f +11220,4599b,4,1,t +11220,47397,71,2,f +11220,47398,71,2,f +11220,4740,72,1,f +11220,48336,15,1,f +11220,4865a,71,2,f +11220,50231,288,1,f +11220,50950,288,6,f +11220,54200,288,1,t +11220,54200,288,1,f +11220,57783,40,1,f +11220,57895,41,2,f +11220,58176,35,4,f +11220,58846,15,2,f +11220,59230,0,1,f +11220,59230,0,1,t +11220,59349,47,3,f +11220,6019,72,1,f +11220,60478,72,1,f +11220,60481,71,2,f +11220,60594,72,2,f +11220,60596,0,2,f +11220,60596,15,1,f +11220,60897,15,4,f +11220,6091,288,4,f +11220,61068,15,1,f +11220,6112,0,2,f +11220,61184,71,4,f +11220,6132,0,1,f +11220,61409,27,1,f +11220,6141,41,3,f +11220,6141,36,8,f +11220,6141,46,4,f +11220,6141,179,5,f +11220,6141,36,1,t +11220,6141,46,1,t +11220,6141,25,2,f +11220,6141,25,1,t +11220,6141,179,2,t +11220,6141,41,1,t +11220,61485,0,1,f +11220,6231,71,2,f +11220,62696,484,1,f +11220,62810,308,2,f +11220,63864,15,4,f +11220,63868,0,2,f +11220,64567,0,1,t +11220,64567,0,2,f +11220,6541,72,2,f +11220,6558,1,2,f +11220,6636,15,5,f +11220,73983,19,1,f +11220,76766,0,1,f +11220,87079,0,1,f +11220,87087,72,4,f +11220,87552,27,1,f +11220,87580,15,3,f +11220,92081,0,1,f +11220,92280,71,2,f +11220,92410,27,2,f +11220,92593,15,1,f +11220,92842,0,1,f +11220,93273,0,1,f +11220,95199,72,1,f +11220,970c00,15,1,f +11220,970c00,0,2,f +11220,970c00pr0543,326,1,f +11220,970c00pr0544,320,1,f +11220,973pr2381c01,0,1,f +11220,973pr2382c01,320,1,f +11220,973pr2433c01,15,1,f +11220,973pr2434c01,288,1,f +11220,973pr2435c01,72,1,f +11221,3004,14,3,f +11221,3020,14,1,f +11221,3021,0,1,f +11221,3023,14,2,f +11221,3034,14,1,f +11221,3062a,7,1,f +11221,3137c01,0,1,f +11221,3314,0,1,f +11221,3317,14,1,f +11221,3482,4,2,f +11221,3483,0,2,f +11221,3626apr0001,14,1,f +11221,3641,0,2,f +11221,3665,14,2,f +11221,3700,0,2,f +11221,3705,0,1,f +11221,3823,47,1,f +11221,3829c01,14,1,f +11221,3833,4,1,f +11221,3837,8,1,f +11221,784,14,1,f +11221,970c00,1,1,f +11221,973c02,4,1,f +11223,2412b,0,4,f +11223,2431,0,1,f +11223,2566,0,2,f +11223,3022,7,2,f +11223,30364,0,1,f +11223,30365,0,1,f +11223,30386,0,1,f +11223,3062b,42,2,f +11223,3062b,19,2,f +11223,3069bp0a,0,1,f +11223,3298,0,1,f +11223,3626b,57,3,f +11223,3626bpx102,10,1,f +11223,3626bpx116,14,1,f +11223,3666,0,1,f +11223,3710,8,1,f +11223,3794a,0,2,f +11223,3795,7,1,f +11223,4032a,0,2,f +11223,4032a,19,2,f +11223,4081b,0,2,f +11223,41747px1,135,1,f +11223,41748px1,135,1,f +11223,41854pb14,135,1,f +11223,42445,47,1,f +11223,42446,10,2,f +11223,4589,19,2,f +11223,4589,7,1,f +11223,4589,0,2,f +11223,4595,7,1,f +11223,4740,19,2,f +11223,57467,383,2,f +11223,6093,25,1,f +11223,6126a,57,2,f +11223,6141,33,1,t +11223,6141,33,1,f +11223,970c00,320,1,f +11223,970c36pb01,10,1,f +11223,973px154c01,320,1,f +11223,973px155c01,10,1,f +11223,x225,10,1,f +11224,3005,182,1,f +11224,30153,47,1,f +11224,30153,45,1,f +11224,3062b,47,1,f +11224,33291,191,1,t +11224,33291,191,1,f +11224,59900,52,1,f +11224,6141,29,1,f +11224,6141,29,1,t +11224,98138,297,1,f +11224,98138,297,1,t +11225,2420,14,4,f +11225,2436,14,1,f +11225,2444,14,2,f +11225,2444,0,6,f +11225,2452,14,2,f +11225,2717,1,1,f +11225,2730,0,2,f +11225,2730,14,2,f +11225,2744,14,2,f +11225,2780,0,49,f +11225,2797c02,14,1,f +11225,2819,71,1,f +11225,2825,14,4,f +11225,2825,71,7,f +11225,2825,0,4,f +11225,2850a,71,6,f +11225,2851,72,6,f +11225,2852,71,6,f +11225,2853,71,8,f +11225,2854,72,2,f +11225,2905,71,1,f +11225,2905,14,2,f +11225,2995,0,4,f +11225,2996,14,4,f +11225,3004,71,1,f +11225,3005,14,2,f +11225,3021,14,10,f +11225,3021,0,2,f +11225,3022,71,4,f +11225,3022,0,1,f +11225,3023,71,9,f +11225,3023,0,4,f +11225,3023,14,10,f +11225,3069b,14,2,f +11225,3069b,71,2,f +11225,32000,71,10,f +11225,32000,14,2,f +11225,32000,0,4,f +11225,32001,14,3,f +11225,32001,71,1,f +11225,32002,72,9,f +11225,32009,14,4,f +11225,32013,14,2,f +11225,32013,0,2,f +11225,32015,0,2,f +11225,32017,71,2,f +11225,32017,14,3,f +11225,32030,0,1,f +11225,32034,71,3,f +11225,32039,0,2,f +11225,32054,0,2,f +11225,32062,0,9,f +11225,32123b,71,47,f +11225,3245b,71,2,f +11225,3623,14,6,f +11225,3647,71,4,f +11225,3649,71,1,f +11225,3650c,71,2,f +11225,3665,14,4,f +11225,3666,14,1,f +11225,3666,0,1,f +11225,3666,71,1,f +11225,3673,71,2,f +11225,3700,0,2,f +11225,3700,14,8,f +11225,3701,71,3,f +11225,3702,14,4,f +11225,3702,0,2,f +11225,3703,0,2,f +11225,3703,14,4,f +11225,3705,0,11,f +11225,3706,0,15,f +11225,3707,0,12,f +11225,3709,14,2,f +11225,3709,71,1,f +11225,3709,0,4,f +11225,3710,14,7,f +11225,3710,71,1,f +11225,3713,71,13,f +11225,3737,0,3,f +11225,3747b,14,2,f +11225,3749,71,12,f +11225,3794a,71,2,f +11225,3894,0,4,f +11225,3894,14,2,f +11225,3895,0,2,f +11225,3935,14,1,f +11225,3936,14,1,f +11225,3941,46,1,f +11225,4019,71,5,f +11225,4032a,14,1,f +11225,4081b,14,2,f +11225,4150,14,1,f +11225,4263,0,2,f +11225,4274,71,3,f +11225,4519,0,13,f +11225,4697b,71,4,f +11225,47225,14,3,f +11225,48183,14,4,f +11225,5102c122,0,1,f +11225,5102c128,1,1,f +11225,6091,14,2,f +11225,6141,14,13,f +11225,6141,71,3,f +11225,6180,14,1,f +11225,6536,0,12,f +11225,6536,71,16,f +11225,6536,14,2,f +11225,6538b,71,3,f +11225,6553,71,2,f +11225,6558,0,17,f +11225,6573,72,2,f +11225,6583,14,2,f +11225,6587,72,2,f +11225,6589,71,7,f +11225,6632,71,9,f +11225,6632,14,6,f +11225,6632,0,10,f +11225,6636,0,1,f +11225,6641,71,2,f +11225,75215,71,2,f +11225,75535,14,2,f +11225,75535,0,4,f +11225,75974,1,1,f +11225,75c05,72,2,f +11225,9244,71,1,f +11226,2431,14,4,f +11226,2736,71,12,f +11226,2780,0,4,t +11226,2780,0,227,f +11226,2825,0,2,f +11226,2905,0,2,f +11226,3004,4,1,f +11226,3023,182,2,f +11226,3023,47,2,f +11226,30663,0,1,f +11226,3069b,182,2,f +11226,32002,72,1,t +11226,32002,72,2,f +11226,32005b,0,4,f +11226,32009,14,8,f +11226,32012,72,1,f +11226,32013,0,10,f +11226,32014,4,2,f +11226,32015,0,2,f +11226,32017,14,2,f +11226,32034,0,8,f +11226,32039,14,6,f +11226,32054,0,33,f +11226,32054,4,8,f +11226,32056,14,4,f +11226,32062,4,34,f +11226,32072,14,4,f +11226,32073,71,25,f +11226,32123b,71,42,f +11226,32123b,71,3,t +11226,32138,0,1,f +11226,32140,14,7,f +11226,32140,71,7,f +11226,32184,71,8,f +11226,32269,19,1,f +11226,32269,0,3,f +11226,32270,0,7,f +11226,32271,71,2,f +11226,32271,14,2,f +11226,32278,0,4,f +11226,32278,14,6,f +11226,32278,71,8,f +11226,32291,0,4,f +11226,32316,14,21,f +11226,32449,0,12,f +11226,32449,14,16,f +11226,32523,0,13,f +11226,32523,14,6,f +11226,32524,71,4,f +11226,32524,14,9,f +11226,32525,71,12,f +11226,32525,14,2,f +11226,32525,72,1,f +11226,32526,72,10,f +11226,32526,14,16,f +11226,32526,1,6,f +11226,32530,72,4,f +11226,32556,19,2,f +11226,33299a,0,8,f +11226,3460,14,6,f +11226,3623,0,2,f +11226,3647,72,5,f +11226,3648b,72,1,f +11226,3666,0,2,f +11226,3703,14,8,f +11226,3705,0,20,f +11226,3706,0,9,f +11226,3707,0,7,f +11226,3708,0,6,f +11226,3710,14,4,f +11226,3713,71,2,t +11226,3713,71,35,f +11226,3737,0,2,f +11226,3743,71,7,f +11226,3749,19,2,f +11226,3895,0,3,f +11226,4019,71,3,f +11226,40490,14,7,f +11226,40490,72,8,f +11226,41239,14,8,f +11226,41239,72,10,f +11226,4162,14,8,f +11226,4162,0,1,f +11226,41669,0,4,f +11226,41677,71,8,f +11226,41677,4,8,f +11226,41678,71,4,f +11226,42003,0,26,f +11226,42610,71,1,f +11226,4274,71,2,t +11226,4274,71,13,f +11226,43093,1,57,f +11226,43857,4,1,f +11226,44294,71,7,f +11226,4477,0,1,f +11226,44809,71,5,f +11226,4519,71,25,f +11226,4716,71,6,f +11226,48989,71,20,f +11226,50163,72,1,f +11226,54200,182,1,t +11226,54200,182,2,f +11226,55013,72,1,f +11226,55976,0,8,f +11226,56145,0,8,f +11226,56823c200,0,1,f +11226,56902,71,3,f +11226,59426,72,6,f +11226,59443,0,15,f +11226,59443,71,15,f +11226,59443,4,2,f +11226,60483,71,10,f +11226,60484,0,2,f +11226,60484,71,3,f +11226,60485,71,1,f +11226,6141,182,2,t +11226,6141,182,4,f +11226,6141,36,1,t +11226,6141,47,4,f +11226,6141,47,2,t +11226,6141,36,2,f +11226,61904,72,1,f +11226,61927a,71,1,f +11226,62462,14,4,f +11226,62531,14,2,f +11226,63869,71,1,f +11226,64179,71,6,f +11226,64393,14,1,f +11226,64681,14,1,f +11226,6536,0,39,f +11226,6538b,19,2,f +11226,6539,4,2,f +11226,6542a,72,6,f +11226,6553,71,4,f +11226,6558,1,76,f +11226,6587,28,10,f +11226,6589,19,4,f +11226,6629,14,2,f +11226,6632,1,2,f +11226,6632,72,7,f +11226,6632,4,2,f +11226,6641,4,2,f +11226,8053stk01,9999,1,t +11226,87080,14,2,f +11226,87082,71,3,f +11226,87083,72,10,f +11226,87086,14,2,f +11226,87407,71,1,f +11226,87408,0,1,f +11226,87761,0,4,f +11227,10124,326,1,f +11227,10126,326,1,f +11227,10127,326,1,f +11227,10154,326,1,f +11227,10201,0,3,f +11227,10247,71,2,f +11227,10928,72,1,f +11227,11213,71,1,f +11227,11458,15,2,f +11227,13269,72,1,f +11227,14395,0,2,f +11227,14769,15,5,f +11227,15365pat0001,1,2,f +11227,15392,72,1,t +11227,15392,72,2,f +11227,15403,0,2,f +11227,15573,15,4,f +11227,18663,47,1,f +11227,19988,326,1,f +11227,2357,0,2,f +11227,2357,71,4,f +11227,2417,320,2,f +11227,2431,71,2,f +11227,2431,41,2,f +11227,2450,0,1,f +11227,2453b,71,1,f +11227,2453b,0,1,f +11227,2460,72,1,f +11227,2654,19,1,f +11227,2780,0,4,f +11227,2780,0,2,t +11227,2817,4,2,f +11227,3005,0,1,f +11227,3005,72,5,f +11227,3008,71,1,f +11227,3010,4,1,f +11227,30136,71,2,f +11227,30136,0,2,f +11227,30136,72,10,f +11227,30153,33,1,f +11227,30157,72,1,f +11227,3020,19,1,f +11227,3020,71,1,f +11227,3022,72,4,f +11227,3023,15,6,f +11227,3023,28,4,f +11227,3023,41,15,f +11227,3023,0,6,f +11227,30237b,0,2,f +11227,30237b,71,4,f +11227,3024,71,2,t +11227,3024,71,6,f +11227,30261,15,1,f +11227,3029,72,1,f +11227,3034,19,1,f +11227,3034,71,1,f +11227,3037,15,2,f +11227,3039,71,1,f +11227,3039,19,2,f +11227,3040b,0,4,f +11227,3046a,72,1,f +11227,30503,72,3,f +11227,30592,72,1,f +11227,3068b,0,1,f +11227,3069b,40,2,f +11227,3069b,41,5,f +11227,3069b,72,2,f +11227,3070b,40,2,f +11227,3070b,40,1,t +11227,32000,72,2,f +11227,32062,0,1,f +11227,3245b,71,4,f +11227,32474,71,2,f +11227,3298,15,1,f +11227,3622,71,4,f +11227,3622,0,4,f +11227,3623,0,2,f +11227,3626cpr1651,272,1,f +11227,3626cpr1652,78,1,f +11227,3626cpr1653,78,1,f +11227,3626cpr1654,78,1,f +11227,3660,72,4,f +11227,3665,15,4,f +11227,3665,71,2,f +11227,3673,71,1,t +11227,3673,71,6,f +11227,3678b,0,1,f +11227,3701,0,2,f +11227,3702,0,2,f +11227,3705,0,1,f +11227,3709,0,2,f +11227,3710,71,5,f +11227,3747a,72,2,f +11227,3795,28,1,f +11227,3795,0,1,f +11227,3895,72,2,f +11227,3937,15,2,f +11227,3958,28,1,f +11227,4032a,72,1,f +11227,4070,0,4,f +11227,41677,71,2,f +11227,4175,71,2,f +11227,4274,1,1,t +11227,4274,1,4,f +11227,4282,72,1,f +11227,43093,1,3,f +11227,43710,15,2,f +11227,43711,15,2,f +11227,4460b,0,1,f +11227,4490,0,1,f +11227,4490,71,1,f +11227,45677,15,1,f +11227,4740,41,4,f +11227,47456,0,2,f +11227,47720,0,2,f +11227,47847,72,2,f +11227,48336,71,2,f +11227,48336,0,2,f +11227,48729b,71,1,t +11227,48729b,71,1,f +11227,51739,0,2,f +11227,54200,0,6,f +11227,54200,15,4,t +11227,54200,0,2,t +11227,54200,36,2,f +11227,54200,15,22,f +11227,54200,36,1,t +11227,55981,0,4,f +11227,56891,0,4,f +11227,59233pat0001,41,1,f +11227,60478,0,4,f +11227,60621,148,2,f +11227,6064,28,1,f +11227,60808,71,4,f +11227,6091,72,2,f +11227,61252,0,4,f +11227,6134,71,2,f +11227,61409,72,4,f +11227,6141,47,2,f +11227,6141,41,1,t +11227,6141,47,1,t +11227,6141,41,6,f +11227,61485,0,1,f +11227,62462,71,2,f +11227,62462,0,1,f +11227,6249,72,1,f +11227,6249,71,2,f +11227,63864,72,1,f +11227,6536,72,1,f +11227,6536,0,1,f +11227,6587,28,1,f +11227,6636,15,1,f +11227,75902pr0004,4,1,f +11227,76766,71,2,f +11227,85941,41,2,f +11227,85943,72,1,f +11227,85984,19,2,f +11227,85984,0,3,f +11227,87079,15,2,f +11227,87580,71,2,f +11227,87991,15,1,f +11227,89523,72,1,f +11227,90195,71,2,f +11227,92081,308,1,f +11227,92107,72,1,f +11227,92593,15,2,f +11227,92946,0,2,f +11227,92946,72,2,f +11227,92950,71,1,f +11227,93252,297,1,t +11227,93252,297,1,f +11227,93274,0,2,f +11227,95199,72,1,f +11227,970c00,379,1,f +11227,970c00,0,1,f +11227,970c00,272,1,f +11227,970x194,15,1,f +11227,973pr2985c01,272,1,f +11227,973pr2986c01,379,1,f +11227,973pr2987c01,71,1,f +11227,973pr2988c01,321,1,f +11227,98283,71,13,f +11227,98560,71,2,f +11227,98564,148,2,f +11227,99021,72,1,f +11227,99781,0,1,f +11228,3065,46,1,f +11228,3065,34,1,f +11228,3065,36,1,f +11228,6035,15,3,f +11228,71128,383,3,f +11229,3040b,2,1,f +11229,3623,2,1,f +11229,3665,14,2,f +11229,3710,14,1,f +11229,3794a,14,1,f +11229,4460a,14,2,f +11229,6141,0,2,f +11230,12651,212,2,f +11230,14294,14,1,f +11230,15580,73,4,f +11230,18921,27,1,f +11230,19820,15,1,f +11230,20736,15,1,f +11230,20915,15,1,f +11230,21188,212,1,f +11230,21310,15,1,f +11230,21990,27,1,f +11230,2302,191,2,f +11230,24315,321,1,f +11230,3011,73,1,f +11230,31023,5,1,f +11230,31110,14,2,f +11230,3437,226,3,f +11230,3437,5,1,f +11230,3437,73,4,f +11230,40666,73,1,f +11230,40666,27,1,f +11230,40666,15,1,f +11230,4890,5,1,f +11230,4891,25,1,f +11230,61649,14,1,f +11230,85964,29,1,f +11230,90265,5,1,f +11230,92094,14,1,f +11230,98233,15,1,f +11231,6714c01,0,1,f +11235,3002,4,2,f +11235,3003pe2,4,1,f +11235,3004,1,2,f +11235,3020,4,1,f +11235,3023,4,2,f +11235,3039,4,1,f +11235,3062b,15,1,f +11236,2780,0,7,f +11236,2825,15,2,f +11236,32002,8,2,f +11236,32013,15,2,f +11236,32016,15,2,f +11236,32056,15,2,f +11236,32062,0,4,f +11236,32073,0,2,f +11236,32140,15,7,f +11236,32249,15,2,f +11236,32249,0,2,f +11236,32291,15,2,f +11236,32308,0,1,f +11236,32523,15,4,f +11236,3705,0,2,f +11236,3749,7,4,f +11236,4519,0,3,f +11236,6558,15,1,f +11236,6575,15,2,f +11236,6632,15,2,f +11238,32123b,7,100,f +11241,23306,383,2,f +11241,2357,1,2,f +11241,2412b,0,8,f +11241,2419,7,2,f +11241,2420,1,4,f +11241,2431,1,8,f +11241,2431,7,2,f +11241,2431ps1,8,3,f +11241,2432,0,3,f +11241,2432,1,2,f +11241,2450,1,2,f +11241,2450,7,2,f +11241,2456,1,7,f +11241,2555,1,4,f +11241,2564,1,1,f +11241,2582px1,7,4,f +11241,2653,0,4,f +11241,2780,0,4,f +11241,2877,7,2,f +11241,3001,1,3,f +11241,3001,7,10,f +11241,3002,15,4,f +11241,3002,1,2,f +11241,3003,1,2,f +11241,3003,8,7,f +11241,3004,1,4,f +11241,3006,0,1,f +11241,3007,1,1,f +11241,3008,7,2,f +11241,30084,0,1,f +11241,3009,7,5,f +11241,30093,2,4,f +11241,3010,4,2,f +11241,3010,1,6,f +11241,3020,7,2,f +11241,3020,0,4,f +11241,3020,1,1,f +11241,30208,57,1,f +11241,30218,462,1,f +11241,3022,0,1,f +11241,3023,1,3,f +11241,3023,7,2,f +11241,30237a,8,2,f +11241,3029,7,6,f +11241,3034,1,2,f +11241,3035,1,2,f +11241,30355,7,1,f +11241,30356,7,1,f +11241,30358,0,2,f +11241,3036,7,1,f +11241,30363,1,2,f +11241,30366ps2,47,3,f +11241,3037,0,3,f +11241,3037,1,2,f +11241,30371,19,1,f +11241,30374,41,1,f +11241,30374,42,1,f +11241,30381,6,1,f +11241,3039,1,2,f +11241,3040b,1,4,f +11241,30410,6,1,f +11241,3043,7,1,f +11241,3062b,1,3,f +11241,3062b,42,4,f +11241,3065,57,6,f +11241,3068b,8,2,f +11241,3069b,6,4,f +11241,3069bpr0086,7,2,f +11241,3069bps9,1,2,f +11241,32013,7,4,f +11241,32028,0,8,f +11241,32123b,7,1,t +11241,32123b,7,3,f +11241,3297,7,7,f +11241,3298,7,10,f +11241,33122,462,1,f +11241,3456,0,1,f +11241,3460,8,3,f +11241,3622,7,4,f +11241,3623,0,4,f +11241,3623,7,2,f +11241,3626bpr0635,14,1,f +11241,3626bps9,14,1,f +11241,3633,0,1,f +11241,3660,0,5,f +11241,3666,1,2,f +11241,3700,8,9,f +11241,3703,1,2,f +11241,3705,0,1,f +11241,3710,1,8,f +11241,3795,8,1,f +11241,3933,7,1,f +11241,3934,7,1,f +11241,3937,7,4,f +11241,3938,1,2,f +11241,3942c,8,4,f +11241,4070,15,2,f +11241,4213,1,4,f +11241,4274,7,1,t +11241,4274,7,2,f +11241,4286,7,6,f +11241,4286,1,18,f +11241,4477,7,2,f +11241,4599a,14,2,f +11241,4623,1,1,f +11241,4625,7,8,f +11241,4733,0,1,f +11241,4865a,15,4,f +11241,50231,6,2,f +11241,6041,57,2,f +11241,6106,8,2,f +11241,6106,7,2,f +11241,6134,4,2,f +11241,6141,42,2,f +11241,6141,42,1,t +11241,6180,0,2,f +11241,6222,1,1,f +11241,6231,15,4,f +11241,6232,7,4,f +11241,6564,1,3,f +11241,6565,1,3,f +11241,6636,7,1,f +11241,73590c02a,7,2,f +11241,75c30,1,4,f +11241,970c00,8,1,f +11241,970c00,6,2,f +11241,973px58c01,19,2,f +11241,973px59c01,19,1,f +11242,11403pr0008c01,85,1,f +11242,11816pr0006,78,1,f +11242,11833,30,1,f +11242,14769,19,1,f +11242,14769pr1040,15,1,f +11242,15392,72,1,t +11242,15392,72,1,f +11242,15573,15,1,f +11242,20105,0,1,f +11242,22667,26,1,f +11242,22667,26,1,t +11242,2343,297,1,f +11242,2412b,70,3,f +11242,2489,70,1,f +11242,3005,0,1,f +11242,3005,70,2,f +11242,3009,19,1,f +11242,30136,484,10,f +11242,30136,70,10,f +11242,3020,19,1,f +11242,3020,484,1,f +11242,3021,85,1,f +11242,3022,70,2,f +11242,3023,71,2,f +11242,3023,30,2,f +11242,3023,19,1,f +11242,3024,297,1,t +11242,3024,297,1,f +11242,3031,2,2,f +11242,3035,2,2,f +11242,3039,191,5,f +11242,3039,19,1,f +11242,3062b,15,1,f +11242,3062b,33,1,f +11242,3068b,322,1,f +11242,3069b,19,1,f +11242,3069b,26,1,f +11242,33051,4,1,f +11242,33291,4,1,t +11242,33291,26,3,f +11242,33291,10,1,t +11242,33291,10,6,f +11242,33291,4,3,f +11242,33291,26,1,t +11242,3795,19,2,f +11242,3795,30,1,f +11242,3957a,15,1,f +11242,4032a,484,3,f +11242,4032a,72,1,f +11242,4495b,26,1,f +11242,4865b,322,2,f +11242,54200,70,3,f +11242,54200,70,1,t +11242,59900,33,1,f +11242,60470a,71,1,f +11242,60478,71,2,f +11242,6141,14,1,t +11242,6141,27,1,t +11242,6141,14,4,f +11242,6141,27,4,f +11242,6141,4,1,f +11242,6141,4,1,t +11242,87580,4,1,f +11242,87580,27,1,f +11242,92257,320,1,f +11242,92456pr0100c01,78,1,f +11242,92947,70,1,f +11242,92950,70,1,f +11242,98138,15,1,t +11242,98138,15,1,f +11242,98389pr0002,19,1,f +11242,99207,71,2,f +11244,10928,72,1,f +11244,11214,72,8,f +11244,11478,71,6,f +11244,12825,15,5,f +11244,14720,71,1,f +11244,14769,0,8,f +11244,14769pr0011,14,1,f +11244,15458,4,2,f +11244,15458,0,2,f +11244,15535,72,1,f +11244,15573,15,6,f +11244,15672,4,1,f +11244,22119,1,1,f +11244,2420,15,4,f +11244,2431,4,2,f +11244,2431,14,2,f +11244,2431,1,3,f +11244,2431,15,5,f +11244,2445,0,2,f +11244,2458,15,16,f +11244,2460,0,4,f +11244,2460,15,11,f +11244,2654,0,5,f +11244,2730,0,2,f +11244,2780,0,2,t +11244,2780,0,322,f +11244,298c02,14,1,f +11244,3001,2,4,f +11244,3001,4,16,f +11244,3001,1,4,f +11244,3001,14,4,f +11244,3001,15,11,f +11244,3004,71,4,f +11244,3004,73,1,f +11244,3004,2,4,f +11244,3005,2,1,f +11244,3005,14,2,f +11244,3005,73,22,f +11244,3005pr0006,73,1,f +11244,3005pr17,27,1,f +11244,3008,15,4,f +11244,30089b,0,1,f +11244,3010,73,1,f +11244,3010,15,6,f +11244,3010,71,6,f +11244,3020,15,5,f +11244,3020,0,2,f +11244,3021,2,2,f +11244,3022,4,2,f +11244,3023,0,3,f +11244,3023,73,2,f +11244,3023,70,1,f +11244,3023,15,7,f +11244,3023,14,6,f +11244,3023,4,3,f +11244,3023,1,2,f +11244,3024,0,15,f +11244,3024,70,4,f +11244,3024,4,1,f +11244,3024,73,5,f +11244,3024,15,4,f +11244,3024,14,4,f +11244,3030,15,1,f +11244,3035,0,1,f +11244,3035,15,8,f +11244,3036,0,1,f +11244,30367c,27,12,f +11244,3037,4,4,f +11244,3040b,71,2,f +11244,3040b,73,14,f +11244,30414,1,4,f +11244,3045,4,6,f +11244,30552,0,1,f +11244,3062b,0,2,f +11244,3068b,14,4,f +11244,3068b,15,7,f +11244,3068b,4,6,f +11244,3068b,2,2,f +11244,3068b,1,3,f +11244,3068bpr0200b,72,1,f +11244,3068bpr0219b,19,1,f +11244,3069b,70,2,f +11244,3069b,4,2,f +11244,3069b,73,24,f +11244,3069b,14,7,f +11244,3069b,71,1,f +11244,3069b,15,12,f +11244,3069b,1,3,f +11244,3069b,0,3,f +11244,3069bpr0130,322,1,f +11244,3070b,71,4,f +11244,3070b,15,8,f +11244,32000,71,16,f +11244,32000,15,10,f +11244,32001,0,4,f +11244,32002,19,4,f +11244,32009,15,4,f +11244,32013,71,10,f +11244,32013,0,4,f +11244,32013,15,7,f +11244,32014,71,4,f +11244,32014,0,6,f +11244,32014,15,2,f +11244,32015,0,2,f +11244,32016,0,2,f +11244,32034,15,13,f +11244,32034,71,8,f +11244,32039,71,8,f +11244,32039,0,3,f +11244,32054,0,16,f +11244,32056,0,2,f +11244,32062,4,43,f +11244,32063,71,5,f +11244,32064a,15,8,f +11244,32064a,14,12,f +11244,32072,0,3,f +11244,32073,71,13,f +11244,32123b,71,12,f +11244,32124,0,2,f +11244,32138,71,2,f +11244,32140,71,5,f +11244,32140,1,4,f +11244,32140,4,7,f +11244,32140,72,3,f +11244,32140,0,16,f +11244,32184,71,8,f +11244,32192,0,4,f +11244,32271,0,1,f +11244,32278,0,3,f +11244,32278,71,4,f +11244,32278,4,4,f +11244,32278,1,2,f +11244,32291,0,8,f +11244,32316,71,12,f +11244,32316,1,6,f +11244,32316,0,16,f +11244,32316,4,6,f +11244,32316,14,3,f +11244,32348,72,6,f +11244,32348,4,6,f +11244,32348,0,3,f +11244,32449,0,2,f +11244,3245c,71,6,f +11244,32523,4,2,f +11244,32523,0,25,f +11244,32523,71,6,f +11244,32523,2,2,f +11244,32524,0,6,f +11244,32524,15,4,f +11244,32524,71,15,f +11244,32524,1,6,f +11244,32524,14,4,f +11244,32525,14,3,f +11244,32525,0,8,f +11244,32525,71,11,f +11244,32525,4,7,f +11244,32526,4,4,f +11244,32526,2,6,f +11244,32526,71,9,f +11244,32526,0,3,f +11244,32556,19,8,f +11244,3460,2,2,f +11244,3622,73,2,f +11244,3622,15,2,f +11244,3622,1,2,f +11244,3623,14,6,f +11244,3623,4,4,f +11244,3623,70,2,f +11244,3623,0,2,f +11244,3624,1,1,f +11244,3626bpr0646,14,1,f +11244,3626cpr1579,14,1,f +11244,3648b,72,1,f +11244,3649,71,1,f +11244,3660,2,4,f +11244,3660,1,4,f +11244,3660,14,4,f +11244,3660,4,4,f +11244,3665,73,14,f +11244,3665,71,2,f +11244,3666,1,9,f +11244,3666,71,1,f +11244,3666,15,10,f +11244,3673,71,24,f +11244,3701,0,3,f +11244,3705,0,22,f +11244,3706,0,2,f +11244,3707,0,4,f +11244,3708,0,3,f +11244,3709,4,2,f +11244,3710,0,4,f +11244,3710,15,12,f +11244,3710,4,2,f +11244,3710,1,5,f +11244,3713,71,21,f +11244,3737,0,1,f +11244,3743,15,1,f +11244,3747b,0,4,f +11244,3749,19,27,f +11244,3795,1,12,f +11244,3795,15,1,f +11244,3795,2,2,f +11244,3829c01,4,1,f +11244,3832,15,8,f +11244,3832,2,3,f +11244,3833,14,1,f +11244,3834,320,1,f +11244,3836,70,1,f +11244,3899,14,2,f +11244,3937,72,3,f +11244,3938,71,3,f +11244,3941,4,8,f +11244,3943b,0,8,f +11244,3958,15,4,f +11244,3960,0,2,f +11244,3960,47,1,f +11244,4006,0,1,f +11244,4032a,0,7,f +11244,40490,14,1,f +11244,40490,15,2,f +11244,40490,71,6,f +11244,40490,0,1,f +11244,40490,4,4,f +11244,4070,0,5,f +11244,4081b,0,2,f +11244,41239,4,1,f +11244,41239,14,2,f +11244,41239,0,6,f +11244,41539,71,1,f +11244,4162,1,7,f +11244,4162,15,5,f +11244,41669,15,1,f +11244,41678,0,4,f +11244,4185,27,2,f +11244,4185,72,2,f +11244,42003,0,11,f +11244,42003,71,3,f +11244,42511,1,1,f +11244,4274,1,4,f +11244,4282,0,5,f +11244,43093,1,42,f +11244,44294,71,5,f +11244,4519,71,26,f +11244,45590,0,4,f +11244,4599b,15,1,f +11244,4716,71,1,f +11244,47994,0,1,f +11244,48336,2,1,f +11244,48336,0,2,f +11244,48989,71,3,f +11244,54200,1,1,f +11244,54200,27,1,f +11244,54200,73,1,f +11244,55615,71,4,f +11244,55982,71,5,f +11244,56823c100,0,1,f +11244,57585,71,1,f +11244,58090,0,3,f +11244,58176,33,2,f +11244,58176,36,3,f +11244,58176,182,2,f +11244,58176,35,2,f +11244,59443,71,27,f +11244,6005,0,4,f +11244,60470b,0,1,f +11244,60471,4,1,f +11244,60483,0,4,f +11244,60483,71,14,f +11244,60484,0,4,f +11244,60485,71,1,f +11244,6091,15,10,f +11244,6091,0,4,f +11244,6111,15,11,f +11244,6141,72,10,f +11244,6190,4,1,f +11244,62462,15,3,f +11244,62462,0,4,f +11244,63864,0,3,f +11244,63864,4,2,f +11244,63868,15,1,f +11244,63869,71,2,f +11244,64178,71,1,f +11244,64179,71,11,f +11244,64567,297,1,f +11244,64782,0,3,f +11244,64782,2,2,f +11244,64782,71,2,f +11244,6536,71,5,f +11244,6536,0,4,f +11244,6541,0,10,f +11244,6541,15,8,f +11244,6558,1,101,f +11244,6564,0,1,f +11244,6565,0,1,f +11244,6587,28,18,f +11244,6628,0,6,f +11244,6629,4,4,f +11244,6632,71,2,f +11244,6636,15,7,f +11244,75c22,0,2,f +11244,78c09,179,2,f +11244,78c18,179,17,f +11244,85984,1,1,f +11244,85984,15,2,f +11244,85984,71,5,f +11244,85984,14,1,f +11244,85984,4,1,f +11244,86035,4,1,f +11244,87079,0,1,f +11244,87080,0,2,f +11244,87082,71,3,f +11244,87083,72,5,f +11244,87086,0,2,f +11244,87087,15,4,f +11244,87087,1,8,f +11244,87989,71,1,f +11244,87989,71,1,t +11244,87990,70,1,f +11244,88930,15,8,f +11244,89201,0,2,f +11244,93549pat01,47,1,f +11244,970c00,73,1,f +11244,970c00,0,1,f +11244,973pr1173c01,4,1,f +11244,973pr1573c01,15,1,f +11244,98138,15,4,f +11244,98138,47,1,f +11244,98138pr0012,179,1,t +11244,98138pr0012,179,1,f +11244,98567,0,1,f +11244,98585,71,2,f +11244,98989,71,1,f +11244,99008,19,2,f +11244,99773,0,4,f +11244,99780,71,21,f +11244,99930,0,1,f +11245,120070,9999,1,t +11245,3001a,0,6,f +11245,3001a,15,1,f +11245,3002a,0,11,f +11245,3003,15,16,f +11245,3003,0,2,f +11245,3004,4,6,f +11245,3004,15,16,f +11245,3004,0,40,f +11245,3005,15,6,f +11245,3005,0,36,f +11245,3005,4,2,f +11245,3006,0,5,f +11245,3007,0,16,f +11245,3007,4,2,f +11245,3007,15,1,f +11245,3008,0,6,f +11245,3008,4,3,f +11245,3009,4,3,f +11245,3009,0,3,f +11245,3010,4,1,f +11245,3010,0,11,f +11245,3020,15,4,f +11245,3020,14,2,f +11245,3020,4,2,f +11245,3020,7,3,f +11245,3020,0,12,f +11245,3021,14,3,f +11245,3021,0,21,f +11245,3022,4,2,f +11245,3022,0,18,f +11245,3022,14,6,f +11245,3023,4,3,f +11245,3023,14,11,f +11245,3023,0,68,f +11245,3023,15,22,f +11245,3024,14,6,f +11245,3024,0,26,f +11245,3024,7,26,f +11245,3024,4,2,f +11245,3024,15,10,f +11245,3030,0,3,f +11245,3032,0,3,f +11245,3032,4,1,f +11245,3033,0,1,f +11245,3034,0,42,f +11245,3034,4,4,f +11245,3035,0,1,f +11245,3035,4,1,f +11245,3036,4,2,f +11245,3039,4,12,f +11245,3039,0,1,f +11245,3040a,4,8,f +11245,3040a,0,10,f +11245,3043,4,1,f +11245,3044a,4,1,f +11245,3044a,0,3,f +11245,3062a,7,52,f +11245,3063b,0,8,f +11245,3070b,0,38,f +11245,3070b,0,1,t +11245,3087c,14,16,f +11245,3149c01,0,1,f +11245,3176,0,6,f +11245,3324c01,0,2,f +11245,3460,0,45,f +11245,3460,15,18,f +11245,3482,7,1,f +11245,3622,0,6,f +11245,3623,0,20,f +11245,3623,15,6,f +11245,3623,14,8,f +11245,3626a,14,1,f +11245,3633,0,26,f +11245,3651,7,2,f +11245,3659,0,1,f +11245,3660,0,6,f +11245,3660,4,4,f +11245,3660,15,8,f +11245,3666,15,20,f +11245,3666,0,18,f +11245,3666,4,2,f +11245,3679,7,1,f +11245,3680,4,1,f +11245,3700,0,6,f +11245,3704,0,1,f +11245,3705,0,1,f +11245,3709,4,4,f +11245,3710,14,5,f +11245,3710,15,18,f +11245,3710,0,24,f +11245,3710,4,3,f +11245,3713,7,1,t +11245,3713,7,15,f +11245,3737,0,3,f +11245,3738,4,2,f +11245,3749,7,1,f +11245,3794a,7,12,f +11245,3795,15,1,f +11245,3795,7,4,f +11245,3795,0,21,f +11245,398stk01,9999,1,t +11245,rb00164,0,1,f +11246,15535,28,1,f +11246,18674,72,1,f +11246,18868a,41,1,f +11246,19981pr0024,41,1,f +11246,24311,179,1,f +11246,298c02,0,1,t +11246,298c02,0,1,f +11246,3021,28,2,f +11246,3023,0,2,f +11246,3023,19,1,f +11246,3623,28,2,f +11246,3937,0,1,f +11246,3938,0,1,f +11246,3941,41,1,f +11246,4032a,0,1,f +11246,43722,28,1,f +11246,43723,28,1,f +11246,4740pr0007,28,1,f +11246,6141,33,1,t +11246,6141,33,7,f +11246,64644,0,1,f +11246,75937,0,1,f +11246,87087,0,4,f +11246,87087,71,2,f +11246,92690,71,1,f +11246,970c00pr0976,179,1,f +11246,973pr3196c01,179,1,f +11246,99206,19,2,f +11247,2431,8,1,f +11247,2452,19,1,f +11247,30041,8,1,f +11247,30042,8,1,f +11247,30168px2,19,2,f +11247,30169,0,1,f +11247,3022,19,1,f +11247,30238,42,1,f +11247,30274,19,1,f +11247,3039,8,2,f +11247,3040b,19,2,f +11247,3040b,8,4,f +11247,30414,8,1,f +11247,3062b,0,2,f +11247,3062b,379,2,f +11247,3626bpr0190,21,1,f +11247,3626bpr0895,15,1,f +11247,3626bpx112,7,1,f +11247,3659,8,4,f +11247,3665,19,1,f +11247,3710,19,2,f +11247,3794a,19,1,f +11247,4081b,19,2,f +11247,4151a,0,1,f +11247,42446,7,1,f +11247,4276b,19,1,f +11247,4864b,19,2,f +11247,6126a,57,2,f +11247,6141,0,2,f +11247,6141,0,1,t +11247,6260,15,1,f +11247,6265,15,1,t +11247,6265,15,2,f +11247,6266,15,1,t +11247,6266,15,2,f +11247,970c09pb03,7,1,f +11247,973px167c01,7,1,f +11248,10201,15,1,f +11248,10247,15,4,f +11248,10247,71,4,f +11248,11055,0,1,f +11248,11090,0,3,f +11248,11100,297,2,f +11248,11203,19,1,f +11248,11211,71,3,f +11248,11407pr0005,1,1,f +11248,11458,70,2,f +11248,11476,15,1,f +11248,11477,70,4,f +11248,11477,85,12,f +11248,11477,72,2,f +11248,11602pr0002,0,1,f +11248,11610,0,1,f +11248,11816pr0019,78,1,f +11248,11816pr0027,78,1,f +11248,11816pr0030,78,1,f +11248,11833,30,1,f +11248,13965,0,12,f +11248,13965,70,7,f +11248,14395,72,2,f +11248,14716,0,4,f +11248,14769,85,7,f +11248,14769,323,3,f +11248,14769pr1042,27,1,f +11248,15068,27,2,f +11248,15068,322,1,f +11248,15068,72,1,f +11248,15068,0,2,f +11248,15068,308,1,f +11248,15070,27,8,f +11248,15208,0,1,f +11248,15254,85,2,f +11248,15395,179,1,f +11248,15470,29,1,f +11248,15470,29,1,t +11248,15535,19,4,f +11248,15571,72,1,f +11248,15573,70,5,f +11248,15573,297,1,f +11248,15573,72,3,f +11248,15672,70,8,f +11248,15672,72,6,f +11248,15712,0,5,f +11248,15712,70,4,f +11248,15875pr0013c01,0,1,f +11248,18395,0,10,f +11248,18396pat0003,148,2,f +11248,18646,27,2,f +11248,18649,71,2,f +11248,18853,30,1,t +11248,18853,30,1,f +11248,18980,0,3,f +11248,19121,0,6,f +11248,19201pr0001,323,1,f +11248,19206pr0001,31,1,f +11248,20379pr0003,85,1,f +11248,20482,47,1,t +11248,20482,47,2,f +11248,22388,35,2,f +11248,22388,35,2,t +11248,22667,26,1,f +11248,22667,27,2,f +11248,22667,27,1,t +11248,22667,26,1,t +11248,2343,179,1,f +11248,2357,72,2,f +11248,2357,70,4,f +11248,23945pat0001,47,1,f +11248,24093pr0002b,297,1,f +11248,24130,1003,1,f +11248,24132,1003,1,f +11248,2417,26,1,f +11248,2420,27,6,f +11248,2420,28,2,f +11248,2420,72,2,f +11248,2423,5,5,f +11248,2431,85,6,f +11248,2431,26,1,f +11248,24324,297,1,f +11248,2449,72,5,f +11248,2454a,0,2,f +11248,2456,72,1,f +11248,2456,70,1,f +11248,2458,15,2,f +11248,2465,72,1,f +11248,2540,71,1,f +11248,2540,72,2,f +11248,2566,0,2,f +11248,26090pr0004,15,1,f +11248,26486,322,1,f +11248,26486,30,1,f +11248,2653,0,2,f +11248,2654,0,2,f +11248,26542,26,1,f +11248,26543,322,1,f +11248,26544,30,1,f +11248,26750pr01,9999,4,f +11248,2780,0,1,t +11248,2780,0,4,f +11248,3003,72,7,f +11248,3003,31,6,f +11248,3004,72,22,f +11248,3004,28,1,f +11248,3004,0,6,f +11248,3004,26,8,f +11248,3004,70,3,f +11248,30044,72,2,f +11248,3005,85,4,f +11248,3005,26,8,f +11248,3005,72,12,f +11248,3005,0,4,f +11248,3005,182,1,f +11248,3008,72,1,f +11248,3009,0,1,f +11248,3009,72,1,f +11248,30099,308,2,f +11248,3010,0,1,f +11248,3010,26,2,f +11248,30106,47,1,f +11248,30136,70,2,f +11248,30153,35,13,f +11248,3020,28,1,f +11248,3020,27,1,f +11248,3020,72,4,f +11248,3020,0,3,f +11248,3020,322,1,f +11248,3021,72,4,f +11248,3022,85,1,f +11248,3022,27,6,f +11248,3022,72,9,f +11248,3023,0,3,f +11248,3023,85,3,f +11248,3023,27,4,f +11248,3023,28,13,f +11248,3023,1,1,f +11248,3023,72,17,f +11248,30237b,0,2,f +11248,3024,26,3,t +11248,3024,26,6,f +11248,3024,0,8,f +11248,3024,0,1,t +11248,3030,28,2,f +11248,3031,30,1,f +11248,3032,0,1,f +11248,3034,0,2,f +11248,3036,28,1,f +11248,30374,0,1,f +11248,30385,35,2,f +11248,3039,0,2,f +11248,3040b,70,2,f +11248,3040b,72,4,f +11248,30414,71,1,f +11248,3045,31,2,f +11248,30553,0,1,f +11248,3062b,41,4,f +11248,3062b,15,1,f +11248,3062b,85,10,f +11248,3062b,34,1,f +11248,3062b,0,6,f +11248,3063b,0,10,f +11248,3065,42,4,f +11248,3065,35,10,f +11248,3068bpr0291,19,1,f +11248,3069b,26,2,f +11248,3069b,31,15,f +11248,3069b,85,8,f +11248,3069b,27,3,f +11248,3069b,0,4,f +11248,3069b,41,1,f +11248,3069bpr0055,15,1,f +11248,3069bpr0168,70,1,f +11248,3069bpr0173,15,1,f +11248,3070b,0,1,t +11248,3070b,0,2,f +11248,32000,0,2,f +11248,32028,19,2,f +11248,32034,15,1,f +11248,32054,0,1,f +11248,32062,4,1,f +11248,32064a,0,1,f +11248,32123b,14,3,f +11248,32123b,14,2,t +11248,3245c,0,4,f +11248,32474,27,1,f +11248,32474,15,1,f +11248,32530,0,1,f +11248,33183,191,1,t +11248,33183,10,1,t +11248,33183,191,2,f +11248,33183,10,1,f +11248,33291,30,1,t +11248,33291,10,1,t +11248,33291,30,3,f +11248,33291,10,1,f +11248,3456,28,1,f +11248,3460,0,3,f +11248,3460,72,2,f +11248,3622,0,4,f +11248,3623,26,2,f +11248,3659,0,4,f +11248,3659,85,1,f +11248,3660,85,6,f +11248,3660,72,4,f +11248,3660,70,1,f +11248,3665,85,4,f +11248,3665,72,8,f +11248,3666,85,7,f +11248,3666,28,4,f +11248,3666,27,3,f +11248,3678b,72,2,f +11248,3679,71,1,f +11248,3680,0,1,f +11248,3701,72,2,f +11248,3705,0,2,f +11248,3710,0,1,f +11248,3710,28,2,f +11248,3710,26,2,f +11248,3710,72,2,f +11248,3747b,72,3,f +11248,3749,19,4,f +11248,3795,28,2,f +11248,3830,0,2,f +11248,3831,0,2,f +11248,3832,72,1,f +11248,3846,71,1,f +11248,3852b,322,1,f +11248,3941,85,2,f +11248,3942c,72,1,f +11248,3957b,0,5,f +11248,3958,28,1,f +11248,3958,27,1,f +11248,4032a,85,1,f +11248,4032a,70,5,f +11248,4070,70,4,f +11248,4070,19,6,f +11248,4081b,72,4,f +11248,4081b,0,4,f +11248,4085c,0,18,f +11248,4162,72,2,f +11248,4162,0,2,f +11248,4274,1,1,f +11248,4274,1,1,t +11248,4286,31,4,f +11248,4341,0,1,f +11248,43888,85,10,f +11248,44300,72,3,f +11248,44302a,71,3,f +11248,44567a,72,1,f +11248,44728,72,2,f +11248,44728,71,2,f +11248,44728,1,1,f +11248,4477,72,1,f +11248,4519,14,1,f +11248,4528,179,1,f +11248,4529,15,1,f +11248,4599b,71,1,t +11248,4599b,71,1,f +11248,46212,182,1,f +11248,46212,42,1,f +11248,4733,0,1,f +11248,47847,31,3,f +11248,48336,0,2,f +11248,49668,0,1,f +11248,50950,85,4,f +11248,50950,15,2,f +11248,50950,26,2,f +11248,51739,72,1,f +11248,53451,158,11,f +11248,53451,158,4,t +11248,53451,0,24,f +11248,53451,0,3,t +11248,54200,0,2,f +11248,54200,15,1,t +11248,54200,0,1,t +11248,54200,41,4,t +11248,54200,72,1,t +11248,54200,41,22,f +11248,54200,15,2,f +11248,54200,72,2,f +11248,55236,27,6,f +11248,59349,31,1,f +11248,59426,72,1,f +11248,59900,42,1,f +11248,59900,72,5,f +11248,59900,45,1,f +11248,59900,52,1,f +11248,60470b,71,2,f +11248,60474,308,1,f +11248,60476,0,2,f +11248,60478,72,2,f +11248,60481,70,2,f +11248,60481,31,8,f +11248,60483,72,2,f +11248,60897,71,1,f +11248,6091,27,2,f +11248,6091,322,2,f +11248,6112,72,1,f +11248,6141,179,10,f +11248,6141,27,3,f +11248,6141,47,1,f +11248,6141,27,1,t +11248,6141,15,1,t +11248,6141,15,2,f +11248,6141,47,1,t +11248,6179,72,1,f +11248,6266,0,2,f +11248,6266,0,1,t +11248,63868,70,2,f +11248,64644,71,2,f +11248,64647,182,2,t +11248,64647,182,4,f +11248,6536,0,2,f +11248,6541,71,2,f +11248,6636,85,2,f +11248,72454,72,1,f +11248,73983,0,2,f +11248,85861,0,3,t +11248,85861,297,1,t +11248,85861,0,16,f +11248,85861,297,1,f +11248,85984,323,1,f +11248,85984,70,2,f +11248,85984,0,3,f +11248,87079,72,5,f +11248,87079,26,3,f +11248,87087,72,6,f +11248,87552,70,2,f +11248,87580,85,3,f +11248,87580,70,4,f +11248,87620,72,2,f +11248,87994,0,2,t +11248,87994,0,3,f +11248,88072,0,3,f +11248,88072,71,2,f +11248,88930,26,2,f +11248,89522,179,1,t +11248,89522,179,3,f +11248,90202,0,1,f +11248,92099,28,1,f +11248,92107,28,1,f +11248,92280,0,2,f +11248,92438,28,2,f +11248,92456pr0089c01,78,1,f +11248,92456pr0091c01,78,1,f +11248,92456pr0113c01,78,1,f +11248,92593,27,1,f +11248,92747,41,1,f +11248,92950,70,1,f +11248,93061,72,2,f +11248,93061,72,1,t +11248,93549pat01,47,1,f +11248,95228,34,2,f +11248,96874,25,1,t +11248,98138,35,2,f +11248,98138,27,2,f +11248,98138,29,1,t +11248,98138,27,1,t +11248,98138,35,1,t +11248,98138,47,1,t +11248,98138,29,1,f +11248,98138,41,1,t +11248,98138,41,2,f +11248,98138,33,1,t +11248,98138,47,1,f +11248,98138,52,1,t +11248,98138,33,1,f +11248,98138,52,3,f +11248,98138,84,1,t +11248,98138,84,3,f +11248,98138pr0034,52,1,f +11248,98138pr0049,0,1,t +11248,98138pr0049,0,2,f +11248,98138pr0050,19,1,f +11248,98138pr0050,19,1,t +11248,99206,0,2,f +11248,99207,0,3,f +11248,99780,72,4,f +11249,2412b,15,1,f +11249,2420,15,2,f +11249,2431,15,1,f +11249,2540,25,3,f +11249,2555,15,2,f +11249,3022,71,1,f +11249,3022,15,2,f +11249,3022,73,1,f +11249,3023,72,2,f +11249,3023,73,1,f +11249,30602,73,2,f +11249,3795,15,1,f +11249,3795,25,1,f +11249,3795,73,1,f +11249,43719,73,1,f +11249,44728,71,2,f +11249,48336,15,1,f +11249,50948,71,1,f +11249,50950,15,2,f +11249,6014b,73,4,f +11249,6015,0,4,f +11249,6157,15,2,f +11250,2346,0,4,f +11250,2419,2,2,f +11250,2420,7,8,f +11250,2654,0,2,f +11250,2730,0,8,f +11250,2780,0,24,f +11250,2780,0,1,t +11250,2815,0,2,f +11250,2817,7,4,f +11250,2825,7,2,f +11250,2854,7,2,f +11250,2902,0,4,f +11250,2903,15,4,f +11250,2982c01,1,1,f +11250,2983,7,2,f +11250,2994,15,2,f +11250,3001,0,5,f +11250,3003,0,20,f +11250,3004,0,20,f +11250,3004,14,4,f +11250,3020,14,6,f +11250,3022,2,2,f +11250,3022,7,8,f +11250,3022,1,4,f +11250,3023,7,20,f +11250,3024,7,8,f +11250,3033,7,1,f +11250,3034,2,4,f +11250,3040b,14,4,f +11250,3040b,0,12,f +11250,32001,7,4,f +11250,32002,8,1,t +11250,32002,8,16,f +11250,32007,15,4,f +11250,32009,14,4,f +11250,32013,1,4,f +11250,32015,7,4,f +11250,32017,7,4,f +11250,32028,7,8,f +11250,32034,1,2,f +11250,32039,7,2,f +11250,32054,1,4,f +11250,32056,7,4,f +11250,32062,0,10,f +11250,32064b,2,4,f +11250,32065,0,4,f +11250,32068,7,2,f +11250,32073,0,2,f +11250,32123b,7,1,t +11250,32123b,7,18,f +11250,32137,33,4,f +11250,32138,14,2,f +11250,32140,0,2,f +11250,3460,7,8,f +11250,3482,14,6,f +11250,3483,0,2,f +11250,3623,14,2,f +11250,3634,0,2,f +11250,3647,7,1,t +11250,3647,7,6,f +11250,3648a,7,4,f +11250,3649,7,4,f +11250,3650c,7,4,f +11250,3665,14,4,f +11250,3665,0,4,f +11250,3666,7,10,f +11250,3673,7,24,f +11250,3679,7,2,f +11250,3680,1,2,f +11250,3700,0,12,f +11250,3700,14,4,f +11250,3701,2,2,f +11250,3701,0,10,f +11250,3702,0,8,f +11250,3703,0,6,f +11250,3705,0,7,f +11250,3706,0,8,f +11250,3707,0,7,f +11250,3708,0,2,f +11250,3709,7,4,f +11250,3710,7,10,f +11250,3713,7,40,f +11250,3713,7,1,t +11250,3736,7,2,f +11250,3737,0,4,f +11250,3738,7,8,f +11250,3743,7,4,f +11250,3747b,0,4,f +11250,3749,7,16,f +11250,3832,7,6,f +11250,3894,0,8,f +11250,3895,0,6,f +11250,3941,0,8,f +11250,3956,7,2,f +11250,3960,15,2,f +11250,4019,7,4,f +11250,4032a,1,2,f +11250,4032a,15,2,f +11250,4085c,0,2,f +11250,4142876,9999,1,f +11250,4153678,9999,1,f +11250,4185,7,4,f +11250,4220,14,2,f +11250,4221,0,4,f +11250,4274,7,1,t +11250,4274,7,8,f +11250,4275b,0,2,f +11250,4477,7,6,f +11250,4519,0,3,f +11250,4531,0,2,f +11250,4589,14,2,f +11250,4589,15,2,f +11250,4716,0,2,f +11250,5306bc017,0,4,f +11250,5306bc162,0,2,f +11250,6007,8,1,f +11250,6019,0,2,f +11250,6048a,0,2,f +11250,6133,57,2,f +11250,6141,0,1,t +11250,6141,15,1,t +11250,6141,1,2,f +11250,6141,1,1,t +11250,6141,15,2,f +11250,6141,0,2,f +11250,6536,7,6,f +11250,6538b,7,4,f +11250,6553,7,2,f +11250,6558,0,8,f +11250,6573,8,1,f +11250,6575,7,2,f +11250,6578,0,2,f +11250,6587,8,2,f +11250,6589,7,5,f +11250,6594,0,2,f +11250,6595,15,2,f +11250,6629,0,4,f +11250,6632,7,4,f +11250,680c01,0,2,f +11250,71427c01,7,2,f +11250,71509,0,1,t +11250,71509,0,4,f +11250,75c19,14,2,f +11250,76019,15,1,f +11250,78c09,0,4,f +11250,78c09,3,4,f +11250,78c12,22,4,f +11250,85543,15,3,f +11250,85543,15,1,t +11250,85545,1,3,f +11250,85546,14,3,f +11250,879,7,2,f +11250,884,14,1,f +11250,x400c25,47,1,f +11250,x431c01,8,1,f +11251,11127,41,25,f +11251,11833,47,2,f +11251,12825,72,1,f +11251,2357,71,4,f +11251,3003,0,1,f +11251,3004,71,5,f +11251,30136,71,3,f +11251,3023,71,3,f +11251,3023,47,1,f +11251,3023,1,2,f +11251,3024,1,1,t +11251,3024,71,1,t +11251,3024,1,2,f +11251,3024,71,4,f +11251,30274,71,1,f +11251,3039,71,4,f +11251,3040b,71,4,f +11251,30503,1,2,f +11251,3068b,1,3,f +11251,3068bpr0142,15,1,f +11251,3068bpr0143,15,1,f +11251,3068bpr0181,15,1,f +11251,3068bpr0217,15,1,f +11251,3068bpr0218,15,1,f +11251,3068bpr0219a,15,1,f +11251,3069b,1,5,f +11251,3298,1,3,f +11251,33291,191,5,f +11251,33291,10,1,t +11251,33291,191,1,t +11251,33291,10,25,f +11251,3665,71,2,f +11251,3678b,71,1,f +11251,3710,1,2,f +11251,3794b,71,1,f +11251,3960,28,1,f +11251,3960,15,1,f +11251,3960,27,1,f +11251,4286,71,2,f +11251,4287,71,2,f +11251,43898,1,1,f +11251,4727,10,3,f +11251,47457,71,1,f +11251,48092,71,2,f +11251,59900,70,17,f +11251,60481,71,2,f +11251,6091,1,4,f +11251,6141,70,12,f +11251,6141,70,1,t +11251,6231,71,2,f +11251,63864,1,2,f +11251,64776pat0001,0,1,f +11251,64799,71,2,f +11251,85080,71,2,f +11251,85863pr0098,27,4,f +11251,85863pr0104,15,4,f +11251,85863pr0105,28,4,f +11251,87087,71,8,f +11251,87544,47,4,f +11251,87580,10,3,f +11251,87580,71,1,f +11251,87580,28,2,f +11251,89523,2,2,f +11251,89523,19,1,f +11251,89523,72,1,f +11251,92585,4,1,f +11251,93160,15,1,f +11251,93160,15,1,t +11252,10201,71,1,f +11252,10288,308,2,f +11252,11203,72,2,f +11252,11305,35,2,f +11252,11593pr0001,321,1,f +11252,11594pr0001,320,1,f +11252,11598,52,2,f +11252,15207,321,2,f +11252,2412b,297,3,f +11252,2412b,272,2,f +11252,2436,378,1,f +11252,2447,47,1,t +11252,2447,47,1,f +11252,2654,47,1,f +11252,2654,182,2,f +11252,2780,0,2,t +11252,2780,0,12,f +11252,298c02,15,1,t +11252,298c02,15,4,f +11252,30000,72,1,f +11252,3002,27,1,f +11252,3003,1,2,f +11252,30137,71,2,f +11252,30151a,42,1,f +11252,30162,72,2,f +11252,30169,0,1,f +11252,3020,28,3,f +11252,3021,19,1,f +11252,3021,71,1,f +11252,3022,0,4,f +11252,3022,27,1,f +11252,3023,0,1,f +11252,3023,28,4,f +11252,30237b,71,1,f +11252,3031,19,1,f +11252,3034,72,2,f +11252,3034,15,1,f +11252,30363,320,2,f +11252,30367b,27,2,f +11252,3039,15,3,f +11252,3039,320,1,f +11252,30565,27,2,f +11252,30602,72,1,f +11252,3062b,46,2,f +11252,3062b,57,1,f +11252,3068bpr0200b,72,1,f +11252,3176,320,2,f +11252,32009,0,2,f +11252,32013,72,1,f +11252,32015,0,4,f +11252,32016,70,2,f +11252,32018,71,2,f +11252,32034,0,2,f +11252,32054,0,4,f +11252,32062,4,10,f +11252,32140,27,2,f +11252,32192,72,4,f +11252,32271,72,4,f +11252,3626cpr1157,14,1,f +11252,3665,15,2,f +11252,3666,320,1,f +11252,3700,15,4,f +11252,3701,71,4,f +11252,3706,0,4,f +11252,3707,0,4,f +11252,3709,72,1,f +11252,3710,320,1,f +11252,3795,71,1,f +11252,3832,72,1,f +11252,3960,320,2,f +11252,4032a,0,4,f +11252,4085c,0,2,f +11252,4150,27,1,f +11252,41769,320,1,f +11252,41770,320,1,f +11252,42022,27,2,f +11252,4274,1,1,t +11252,4274,71,6,f +11252,4274,71,2,t +11252,4274,1,4,f +11252,43093,1,3,f +11252,4360,0,1,f +11252,43857,0,1,f +11252,44126,320,4,f +11252,44567a,0,1,f +11252,44728,19,4,f +11252,4519,71,3,f +11252,4528,0,1,f +11252,4598,15,1,f +11252,4623,72,1,f +11252,4740,45,1,f +11252,47720,0,2,f +11252,48336,297,1,f +11252,4865b,72,1,f +11252,4871,15,2,f +11252,49668,19,2,f +11252,50950,27,4,f +11252,50955,27,3,f +11252,50956,27,3,f +11252,53451,27,1,t +11252,53451,27,4,f +11252,54200,27,1,t +11252,54200,27,2,f +11252,54200,15,1,t +11252,54200,15,2,f +11252,54821,52,2,f +11252,55981,15,4,f +11252,59443,71,1,f +11252,60471,0,1,f +11252,60475b,72,2,f +11252,60483,72,8,f +11252,6141,45,1,t +11252,6141,45,2,f +11252,6141,36,2,f +11252,6141,36,1,t +11252,6215,0,3,f +11252,62462,320,1,f +11252,63864,0,2,f +11252,63868,72,2,f +11252,6558,1,2,f +11252,6587,28,2,f +11252,70703stk01,9999,1,f +11252,72454,15,1,f +11252,87083,72,2,f +11252,87752,36,2,f +11252,87781,321,1,f +11252,89201,0,4,f +11252,91988,72,1,f +11252,92221,0,4,f +11252,92280,15,2,f +11252,92474,47,1,f +11252,92946,72,2,f +11252,92946,0,2,f +11252,92947,19,1,f +11252,92947,71,6,f +11252,93273,27,3,f +11252,93274,27,2,f +11252,93274,72,4,f +11252,95199,72,2,f +11252,970c00pr0457,320,1,f +11252,970c00pr0461,321,1,f +11252,970c00pr0464,321,1,f +11252,973pr2254c01,320,1,f +11252,973pr2258c01,71,1,f +11252,973pr2296c01,71,1,f +11252,98138,182,1,t +11252,98138,182,1,f +11252,98564,148,2,f +11252,98835,321,2,f +11252,99781,15,4,f +11252,99781,0,4,f +11259,2362a,0,1,f +11259,2412b,72,16,f +11259,2412b,25,1,f +11259,2419,272,1,f +11259,2432,71,1,f +11259,2432,72,7,f +11259,2444,14,8,f +11259,2444,0,1,f +11259,2444,71,2,f +11259,2453a,70,2,f +11259,2454a,0,2,f +11259,2456,72,2,f +11259,2458,71,1,f +11259,2476a,71,6,f +11259,2540,72,2,f +11259,2540,0,12,f +11259,2555,0,2,f +11259,2555,4,1,f +11259,2730,0,6,f +11259,2780,0,24,f +11259,2780,0,4,t +11259,2877,71,18,f +11259,2921,71,1,f +11259,298c02,4,2,f +11259,298c02,15,1,t +11259,298c02,4,2,t +11259,298c02,0,1,t +11259,298c02,15,1,f +11259,3003,272,3,f +11259,30031,71,1,f +11259,3004,70,5,f +11259,3005,72,4,f +11259,3008,0,1,f +11259,3009,72,1,f +11259,3010,72,6,f +11259,30162,72,1,f +11259,30176,2,1,f +11259,3020,71,4,f +11259,3021,14,7,f +11259,3022,72,5,f +11259,3023,71,8,f +11259,3024,34,3,f +11259,3024,36,3,f +11259,30304,72,1,f +11259,3032,72,1,f +11259,3032,0,5,f +11259,30332,0,1,f +11259,3034,0,8,f +11259,3034,72,6,f +11259,3036,72,1,f +11259,30367b,4,1,f +11259,30389c,14,1,f +11259,3039,272,1,f +11259,3040b,308,12,f +11259,3040b,72,6,f +11259,3062b,70,2,f +11259,3068b,0,3,f +11259,3068b,272,14,f +11259,3069bpr0101,71,1,f +11259,3070bpr0007,71,1,t +11259,3070bpr0007,71,1,f +11259,3139,0,2,f +11259,32000,71,2,f +11259,32012,14,2,f +11259,32013,0,2,f +11259,32015,0,1,f +11259,32018,71,2,f +11259,32054,71,8,f +11259,32056,71,2,f +11259,32062,4,4,f +11259,32064a,72,14,f +11259,32125,71,4,f +11259,32140,72,4,f +11259,32269,19,1,f +11259,32269,0,2,f +11259,32270,0,5,f +11259,32523,27,1,f +11259,32524,71,8,f +11259,32529,0,2,f +11259,3298,4,1,f +11259,3622,70,3,f +11259,3666,71,5,f +11259,3666,0,9,f +11259,3673,71,1,t +11259,3673,71,1,f +11259,3700,14,2,f +11259,3700,0,2,f +11259,3701,72,5,f +11259,3703,0,2,f +11259,3705,0,2,f +11259,3706,0,2,f +11259,3709,72,1,f +11259,3710,272,10,f +11259,3710,70,2,f +11259,3743,71,2,f +11259,3747b,0,1,f +11259,3749,19,19,f +11259,3794a,4,1,f +11259,3795,14,5,f +11259,3830,0,2,f +11259,3831,0,2,f +11259,3894,0,1,f +11259,3894,4,2,f +11259,3937,0,1,f +11259,3940b,72,2,f +11259,3941,57,1,f +11259,3941,0,1,f +11259,3957a,0,1,f +11259,3959,71,2,f +11259,3962b,0,1,f +11259,4032a,72,2,f +11259,40490,72,4,f +11259,4070,71,4,f +11259,4079,4,3,f +11259,4081b,71,2,f +11259,4085c,15,4,f +11259,4150,71,2,f +11259,4162,272,15,f +11259,4162,72,2,f +11259,41677,4,4,f +11259,41751,272,2,f +11259,41764,72,1,f +11259,41765,72,1,f +11259,41767,72,1,f +11259,41768,72,1,f +11259,41769,0,1,f +11259,42003,14,10,f +11259,42022,0,2,f +11259,42023,0,2,f +11259,42610,71,2,f +11259,4274,1,16,f +11259,4274,1,2,t +11259,4282,0,3,f +11259,4285b,0,1,f +11259,4287,72,2,f +11259,43093,1,10,f +11259,4360,0,1,f +11259,43713,72,1,f +11259,43722,71,2,f +11259,43723,71,2,f +11259,43888,72,2,f +11259,43936,0,2,f +11259,44568,71,1,f +11259,4460b,308,12,f +11259,44675,272,5,f +11259,44728,272,4,f +11259,4589,182,2,f +11259,4623,14,2,f +11259,4623,71,1,f +11259,4623,0,1,f +11259,4624,71,2,f +11259,47457,72,1,f +11259,47847,70,2,f +11259,4865a,4,1,f +11259,4870,71,1,f +11259,48729a,0,1,t +11259,49668,135,8,f +11259,50950,72,2,f +11259,50990a,71,1,f +11259,51011,0,2,f +11259,53989,135,2,f +11259,54095,272,4,f +11259,54200,272,6,f +11259,54200,272,2,t +11259,54383,272,2,f +11259,54384,272,2,f +11259,55982,71,2,f +11259,56823c100,0,2,f +11259,59426,72,2,f +11259,59900,25,1,f +11259,59900,14,10,f +11259,6019,4,4,f +11259,60470a,0,1,f +11259,60470a,15,2,f +11259,60471,4,1,f +11259,60849,0,1,t +11259,60849,0,4,f +11259,6091,72,2,f +11259,6134,4,1,f +11259,61409,14,6,f +11259,6141,46,3,f +11259,6141,36,2,f +11259,6141,36,2,t +11259,6141,71,1,t +11259,6141,71,8,f +11259,6141,57,1,f +11259,6141,46,2,t +11259,6141,14,16,f +11259,6141,14,2,t +11259,6141,57,1,t +11259,61678,0,6,f +11259,6179,0,1,f +11259,6180,0,2,f +11259,61903,71,2,f +11259,6232,72,1,f +11259,6239,0,1,f +11259,62694,40,1,f +11259,62743,0,6,f +11259,64567,71,1,f +11259,64644,0,4,f +11259,64644,25,1,f +11259,6536,71,2,f +11259,6536,72,2,f +11259,6553,72,1,f +11259,6558,1,4,f +11259,6583,0,1,f +11259,6585,0,1,f +11259,6587,72,19,f +11259,6589,19,2,f +11259,6632,14,4,f +11259,78c11,135,1,f +11259,85544,4,1,f +11259,8971stk01,9999,1,t +11260,2377,25,6,f +11260,2412b,0,20,f +11260,2420,14,2,f +11260,2431,288,2,f +11260,2431pr0028,72,1,f +11260,2434,0,1,f +11260,2436,71,2,f +11260,2540,0,12,f +11260,2555,0,2,f +11260,2723,0,3,f +11260,2871a,71,2,f +11260,2877,288,11,f +11260,2878c01,71,4,f +11260,2920,0,2,f +11260,3001,288,1,f +11260,3001,0,4,f +11260,3004,288,12,f +11260,3004,25,10,f +11260,3004,0,1,f +11260,3009,288,6,f +11260,3009,25,5,f +11260,3010,288,4,f +11260,3010,25,2,f +11260,3010,0,1,f +11260,30165,288,2,f +11260,3020,0,3,f +11260,3020,14,2,f +11260,3020,288,5,f +11260,3021,71,4,f +11260,3021,0,5,f +11260,3022,14,3,f +11260,3022,0,2,f +11260,3023,0,10,f +11260,3023,288,11,f +11260,3023,25,7,f +11260,3023,14,12,f +11260,3023,71,4,f +11260,3032,0,1,f +11260,3032,288,3,f +11260,3037,288,2,f +11260,3037,25,2,f +11260,30374,0,2,f +11260,30377,0,15,f +11260,3038,288,2,f +11260,30414,288,3,f +11260,30414,0,2,f +11260,3068b,288,1,f +11260,3069b,0,6,f +11260,3069b,71,4,f +11260,32028,25,4,f +11260,32028,0,8,f +11260,32062,0,3,f +11260,3460,288,2,f +11260,3460,14,1,f +11260,3460,0,2,f +11260,3622,288,3,f +11260,3623,288,2,f +11260,3623,25,2,f +11260,3626b,71,4,f +11260,3666,25,6,f +11260,3666,71,4,f +11260,3666,0,6,f +11260,3666,14,5,f +11260,3700,25,1,f +11260,3710,288,6,f +11260,3710,25,8,f +11260,3710,0,12,f +11260,3794a,0,7,f +11260,3795,71,1,f +11260,3795,14,2,f +11260,3821,288,3,f +11260,3822,288,2,f +11260,3832,14,2,f +11260,3941,72,3,f +11260,3962b,72,2,f +11260,4025,0,2,f +11260,4070,25,2,f +11260,4070,0,8,f +11260,4079,1,1,f +11260,4093a,14,1,f +11260,4477,14,2,f +11260,4477,288,4,f +11260,45677,0,1,f +11260,45677,14,1,f +11260,45708,0,2,f +11260,4862,47,6,f +11260,54200,288,4,f +11260,54200,25,6,f +11260,6091,71,12,f +11260,6141,47,1,f +11260,6141,36,2,f +11260,6141,47,1,t +11260,6179,0,1,f +11260,6564,288,2,f +11260,6565,288,2,f +11260,6583,0,2,f +11260,6636,14,2,f +11260,71182,383,2,f +11260,73092,0,2,f +11260,75c19,0,2,f +11262,3001,4,8,f +11262,3002,4,2,f +11262,3003,4,2,f +11262,3004,4,8,f +11262,3010,4,11,f +11262,3020,4,6,f +11262,3021,4,4,f +11262,3022,4,10,f +11262,3023,4,17,f +11262,3622,4,8,f +11262,3710,4,8,f +11262,3794b,4,8,f +11263,2412b,4,1,f +11263,2412b,8,2,f +11263,2420,1,2,f +11263,2540,6,1,f +11263,2540,15,1,f +11263,2555,7,2,f +11263,2555,15,2,f +11263,2780,0,2,f +11263,298c03,0,2,f +11263,298c05,0,1,t +11263,3001,19,3,f +11263,3002,0,1,f +11263,3003,19,1,f +11263,3004,14,2,f +11263,30151a,14,2,f +11263,30170,8,1,f +11263,30170,8,1,t +11263,30171,7,1,f +11263,3020,0,2,f +11263,3021,4,3,f +11263,3022,19,2,f +11263,3022,7,3,f +11263,3023,4,4,f +11263,3023,6,2,f +11263,30237a,19,1,f +11263,3034,19,2,f +11263,30357,7,2,f +11263,30359a,57,4,f +11263,30360,8,2,f +11263,30383,8,6,f +11263,30407,14,6,f +11263,30475,6,1,f +11263,3048c,1,2,f +11263,3049b,7,2,f +11263,3298ps0,1,1,f +11263,3623,1,2,f +11263,3626bps0,14,1,f +11263,3626bpsd,14,1,f +11263,3660,1,1,f +11263,3710,7,2,f +11263,3794a,7,2,f +11263,3794a,1,2,f +11263,3821ps1,1,1,f +11263,3822ps1,1,1,f +11263,3849,8,1,f +11263,3941,1,6,f +11263,3942c,7,2,f +11263,4070,0,8,f +11263,4282,19,2,f +11263,4286,1,1,f +11263,4495a,1,1,f +11263,4495a,14,1,f +11263,4599a,0,1,f +11263,4735,6,2,f +11263,4740,15,1,f +11263,4855,7,2,f +11263,4859,1,1,f +11263,4865a,1,3,f +11263,4871,1,1,f +11263,6019,1,4,f +11263,6019,15,1,f +11263,6141,46,1,f +11263,6141,46,1,t +11263,6141,7,1,f +11263,6141,7,1,t +11263,6231,7,2,f +11263,6248,7,4,f +11263,75c19,0,2,f +11263,970c00,0,1,f +11263,970c00,19,1,f +11263,973px82ac01,19,1,f +11263,973px83c01,1,1,f +11265,bslot01,14,9,f +11265,bslot01,15,9,f +11265,bslot01,4,9,f +11265,bslot01,2,9,f +11265,bslot03,2,3,f +11265,bslot03,14,3,f +11265,bslot03,15,3,f +11265,bslot03,4,3,f +11267,2343,71,1,f +11267,2357,4,1,f +11267,2357,2,1,f +11267,2412b,72,2,f +11267,2412b,70,2,f +11267,2420,28,8,f +11267,2420,15,2,f +11267,2420,72,6,f +11267,2420,2,3,f +11267,2420,19,3,f +11267,2555,72,1,f +11267,2780,0,1,f +11267,2921,0,1,f +11267,3003,28,1,f +11267,3005,70,5,f +11267,3005,15,1,f +11267,3005,72,1,f +11267,3005,0,1,f +11267,30136,72,2,f +11267,30162,72,1,f +11267,3021,72,7,f +11267,3021,70,3,f +11267,3021,71,1,f +11267,3021,15,3,f +11267,3021,2,3,f +11267,3022,72,3,f +11267,3022,15,2,f +11267,3022,0,1,f +11267,3022,19,2,f +11267,3022,2,1,f +11267,3023,70,4,f +11267,3023,28,15,f +11267,3023,71,7,f +11267,3023,25,1,f +11267,3023,72,36,f +11267,3023,4,4,f +11267,3023,15,6,f +11267,3023,14,6,f +11267,3024,71,7,f +11267,3024,70,7,f +11267,3024,15,7,f +11267,3024,2,12,f +11267,3024,28,13,f +11267,3024,25,6,f +11267,3024,4,3,f +11267,3024,19,2,f +11267,3024,72,19,f +11267,3024,14,2,f +11267,3024,0,5,f +11267,30374,0,1,f +11267,30526,72,1,f +11267,3062b,72,9,f +11267,3062b,19,1,f +11267,3062b,70,2,f +11267,3068b,15,1,f +11267,3069b,72,11,f +11267,3069b,70,1,f +11267,3069b,2,6,f +11267,3069b,4,2,f +11267,3069b,28,2,f +11267,3069b,15,2,f +11267,3070b,71,2,f +11267,3070b,2,4,f +11267,3070b,70,2,f +11267,3070b,15,1,f +11267,3070b,72,6,f +11267,32013,72,2,f +11267,3622,15,1,f +11267,3623,72,8,f +11267,3623,71,1,f +11267,3623,2,1,f +11267,3623,15,5,f +11267,3665,70,1,f +11267,3679,71,1,f +11267,3680,15,1,f +11267,3700,72,4,f +11267,3710,0,1,f +11267,3794b,71,1,f +11267,3794b,15,1,f +11267,3794b,2,1,f +11267,3794b,72,4,f +11267,3794b,4,2,f +11267,4032a,71,1,f +11267,4070,15,4,f +11267,4070,72,11,f +11267,4070,0,1,f +11267,4070,71,9,f +11267,4070,4,1,f +11267,4070,2,2,f +11267,4081b,71,1,f +11267,4081b,72,6,f +11267,4081b,15,2,f +11267,4085c,72,1,f +11267,4085c,71,1,f +11267,4085c,0,2,f +11267,4286,70,2,f +11267,43898,72,1,f +11267,44728,72,2,f +11267,4589,71,3,f +11267,4589,72,4,f +11267,4599b,71,1,f +11267,4733,72,3,f +11267,4740,72,1,f +11267,47905,72,2,f +11267,54200,14,4,f +11267,54200,15,6,f +11267,54200,0,1,f +11267,54200,2,2,f +11267,54200,72,6,f +11267,57899,0,2,f +11267,58247,0,3,f +11267,6019,72,2,f +11267,6091,15,1,f +11267,6141,27,8,f +11267,6141,70,3,f +11267,6141,2,3,f +11267,6141,25,2,f +11267,6141,0,4,f +11267,6141,71,13,f +11267,6141,19,4,f +11267,6141,15,13,f +11267,6141,72,28,f +11267,64644,0,2,f +11267,6541,72,1,f +11267,6541,71,1,f +11267,6553,72,2,f +11267,87087,72,1,f +11267,87087,15,1,f +11267,87580,72,2,f +11268,2340,15,2,f +11268,2362a,40,2,f +11268,2412b,0,10,f +11268,2420,1,2,f +11268,2431,10,3,f +11268,2431,15,3,f +11268,2432,14,2,f +11268,2456,72,2,f +11268,2780,0,1,f +11268,2780,0,1,t +11268,3001,71,3,f +11268,3003,15,2,f +11268,3004,10,4,f +11268,3004,15,2,f +11268,3005,15,4,f +11268,3010,15,2,f +11268,3020,4,2,f +11268,3022,15,1,f +11268,3023,14,5,f +11268,30237a,15,2,f +11268,3024,71,2,f +11268,3028,10,2,f +11268,3035,0,2,f +11268,30374,71,2,f +11268,3039,72,1,f +11268,30414,71,1,f +11268,3062b,14,2,f +11268,3065,40,2,f +11268,30663,0,1,f +11268,3069b,182,6,f +11268,3176,71,1,f +11268,32000,19,2,f +11268,32028,15,4,f +11268,32059,72,1,f +11268,32064a,4,2,f +11268,33085,14,1,f +11268,3626cpr0386,14,1,f +11268,3626cpr0892,14,1,f +11268,3666,71,1,f +11268,3666,15,2,f +11268,3700,72,3,f +11268,3795,1,1,f +11268,3829c01,14,1,f +11268,3832,2,1,f +11268,3836,70,1,f +11268,3837,72,1,f +11268,40620,71,1,f +11268,4070,15,2,f +11268,4079b,14,1,f +11268,4162,15,2,f +11268,4282,71,2,f +11268,44301a,15,2,f +11268,44302a,15,2,f +11268,4432stk01,9999,1,t +11268,4460b,10,2,f +11268,4488,0,4,f +11268,4510,15,2,f +11268,4740,72,1,f +11268,4740,2,1,f +11268,48336,71,2,f +11268,4871,72,1,f +11268,50745,72,4,f +11268,50950,15,2,f +11268,52031,10,1,f +11268,52107,0,2,f +11268,54200,182,1,t +11268,54200,47,2,f +11268,54200,47,1,t +11268,54200,10,1,t +11268,54200,10,2,f +11268,54200,182,4,f +11268,6014b,71,4,f +11268,60481,0,2,f +11268,60583a,15,2,f +11268,60596,0,1,f +11268,6087,0,1,f +11268,6141,70,1,t +11268,6141,19,1,t +11268,6141,19,2,f +11268,6141,36,1,t +11268,6141,36,2,f +11268,6141,70,2,f +11268,6154,4,1,f +11268,6180,71,1,f +11268,64453,40,1,f +11268,64648,179,2,f +11268,6587,28,1,f +11268,6636,15,3,f +11268,85984,72,2,f +11268,86035,1,2,f +11268,87079,71,3,f +11268,87544,10,4,f +11268,87580,71,1,f +11268,87609,15,2,f +11268,87697,0,4,f +11268,88930,15,8,f +11268,92280,15,2,f +11268,92593,15,2,f +11268,92926,72,1,f +11268,92926,2,1,f +11268,92950,15,1,f +11268,93274,71,2,f +11268,970c00,1,2,f +11268,973pr1580c01,15,2,f +11268,98285,71,1,f +11268,98286,71,1,f +11269,2780,0,2,f +11269,30374,36,2,f +11269,32013,0,2,f +11269,32016,0,2,f +11269,32017,0,1,f +11269,32039,0,1,f +11269,32054,0,1,f +11269,32056,8,2,f +11269,32062,0,10,f +11269,32073,0,2,f +11269,32123b,7,3,f +11269,32138,0,2,f +11269,32165,0,1,f +11269,32166,8,2,f +11269,32172,0,2,f +11269,32173,14,2,f +11269,32174,0,2,f +11269,32305,8,1,f +11269,32306,0,1,f +11269,32306,8,1,f +11269,32307,8,2,f +11269,32307,0,4,f +11269,32310pb03,14,1,f +11269,32311,15,1,f +11269,32311,0,2,f +11269,32439a,14,2,f +11269,32439a,41,2,f +11269,3647,0,1,f +11269,3647,15,1,f +11269,3648b,15,1,f +11269,3705,0,5,f +11269,3706,0,2,f +11269,3707,0,1,f +11269,3713,7,2,f +11269,3737,0,1,f +11269,3749,7,4,f +11269,4519,0,1,f +11269,4589,57,1,f +11269,4716,15,1,f +11269,4716,0,2,f +11269,6536,15,2,f +11269,6536,0,2,f +11269,6538b,14,1,f +11269,78c07,15,2,f +11269,rb00168,0,1,f +11269,rb00182,15,1,f +11269,rb00182,0,1,f +11269,rb00182,14,1,f +11272,3003,1,1,f +11272,3062b,4,1,f +11272,3900,4,1,f +11272,4335,1,1,f +11272,fab3b,9999,1,f +11276,255pb01,4,1,f +11276,27bc01,4,4,f +11276,3001a,4,2,f +11276,3001a,15,4,f +11276,3002a,4,2,f +11276,3005,15,6,f +11276,3008a,15,4,f +11276,3008a,4,2,f +11276,3008pb025,15,1,f +11276,3009a,4,5,f +11276,3009a,15,3,f +11276,3035a,15,2,f +11276,3036a,15,2,f +11276,3065,47,13,f +11276,3065,15,53,f +11276,3065,4,4,f +11276,32bc01,4,1,f +11277,2454a,19,1,f +11277,2524,70,1,f +11277,2817,0,2,f +11277,3005,72,3,f +11277,3010,19,2,f +11277,30132,72,2,f +11277,30132,72,1,t +11277,30136,19,4,f +11277,30165,72,1,f +11277,30170,72,1,f +11277,30170,72,1,t +11277,30171,0,1,f +11277,30172,72,1,f +11277,3020,0,1,f +11277,3021,0,1,f +11277,3023,0,1,f +11277,30236,71,1,f +11277,3024,71,2,f +11277,3032,0,2,f +11277,3068b,0,2,f +11277,3068bpr0139a,19,1,f +11277,3069b,4,2,f +11277,3069b,15,3,f +11277,3176,72,1,f +11277,33299a,71,1,f +11277,3460,72,1,f +11277,3626bpr0472,78,1,f +11277,3626bpr0516a,78,1,f +11277,3626bpr0518,78,1,f +11277,3673,71,1,f +11277,3673,71,1,t +11277,3675,0,2,f +11277,3705,0,1,f +11277,3794a,72,1,f +11277,4085c,4,1,f +11277,4085c,71,1,f +11277,42610,71,1,f +11277,44728,72,1,f +11277,4495b,4,1,f +11277,4740,72,1,f +11277,50859a,0,2,f +11277,50860,72,2,f +11277,50861,0,4,f +11277,50862,71,4,f +11277,50947,72,1,f +11277,51011,0,1,f +11277,60594,0,1,f +11277,61506,70,1,f +11277,61780,70,2,f +11277,61975,70,1,f +11277,61976,70,1,f +11277,62363,28,1,f +11277,63965,15,1,f +11277,970c00,19,1,f +11277,970c00,28,1,f +11277,973pr1369ac01,28,1,f +11277,973pr1370c01,308,1,f +11277,973pr1374c01,19,1,f +11279,2412b,80,2,f +11279,2412b,14,1,f +11279,2420,72,2,f +11279,2420,0,4,f +11279,2431,14,3,f +11279,2431,72,13,f +11279,2432,0,2,f +11279,2436,14,3,f +11279,2436,0,1,f +11279,2540,0,2,f +11279,3002,72,5,f +11279,3002,0,1,f +11279,3003,72,1,f +11279,3003,14,1,f +11279,3008,0,2,f +11279,3009,72,2,f +11279,3009,14,1,f +11279,3010,0,1,f +11279,3010,72,3,f +11279,3020,72,5,f +11279,3020,14,2,f +11279,3020,0,3,f +11279,3021,0,1,f +11279,3021,72,1,f +11279,3022,0,1,f +11279,3022,72,1,f +11279,3023,72,5,f +11279,3023,4,2,f +11279,3031,14,2,f +11279,3031,0,2,f +11279,3032,72,2,f +11279,3034,0,4,f +11279,3035,0,1,f +11279,3035,14,2,f +11279,30350b,72,4,f +11279,3037,0,1,f +11279,3039,72,1,f +11279,30414,14,4,f +11279,30648,0,4,f +11279,3068b,14,1,f +11279,3069b,14,3,f +11279,3070b,36,1,t +11279,3070b,36,2,f +11279,32028,0,2,f +11279,32028,15,2,f +11279,32556,71,2,f +11279,3403c01,0,1,f +11279,3623,72,2,f +11279,3623,0,1,f +11279,3660,0,2,f +11279,3666,72,5,f +11279,3679,71,1,f +11279,3680,0,1,f +11279,3702,14,1,f +11279,3710,72,2,f +11279,3710,14,1,f +11279,3710,0,1,f +11279,3788,14,3,f +11279,3794a,72,7,f +11279,3794a,14,12,f +11279,3795,0,1,f +11279,3795,72,4,f +11279,3832,14,1,f +11279,3957a,80,2,f +11279,4085c,0,3,f +11279,4095,0,3,f +11279,4162,72,2,f +11279,41862,0,2,f +11279,44126,72,2,f +11279,44674,14,1,f +11279,44728,72,1,f +11279,4477,14,2,f +11279,4495b,14,2,f +11279,45677,72,1,f +11279,4599a,14,2,f +11279,4600,71,3,f +11279,47720,0,2,f +11279,47758,0,1,f +11279,48336,0,2,f +11279,50944pr0001,0,16,f +11279,50947,14,2,f +11279,50950,72,3,f +11279,50950,0,8,f +11279,50951,0,16,f +11279,50951,0,3,t +11279,54200,40,2,f +11279,55981,71,4,f +11279,6019,72,2,f +11279,6141,1,16,f +11279,6141,1,1,t +11279,6157,0,5,f +11279,6636,14,2,f +11280,26079,288,1,f +11280,3626cpr2025,14,1,f +11280,4498,70,1,f +11280,4499,70,1,f +11280,88646,0,1,f +11280,970c00pr1114,288,1,f +11280,973pr3534c01,70,1,f +11281,11107,179,1,f +11281,11127,41,1,f +11281,11477,326,4,f +11281,15070,15,4,f +11281,3020,288,1,f +11281,3023,33,1,f +11281,3023,326,4,f +11281,30237a,70,3,f +11281,30374,41,1,f +11281,32059,72,1,f +11281,3848,72,1,f +11281,48336,0,1,f +11281,54200,326,2,f +11281,55236,288,1,f +11281,87079pr0058,326,1,f +11281,92280,71,2,f +11283,55969,89,1,f +11285,10201,4,3,f +11285,11153,320,3,f +11285,2419,4,2,f +11285,2420,320,6,f +11285,3003,0,2,f +11285,3003,4,2,f +11285,3004,0,2,f +11285,3004,320,3,f +11285,3005,4,2,f +11285,30099,4,2,f +11285,3010,4,1,f +11285,3020,320,2,f +11285,3020,4,5,f +11285,3021,19,7,f +11285,3021,4,2,f +11285,3022,4,4,f +11285,3022,0,1,f +11285,3022,71,1,f +11285,3022,19,4,f +11285,3023,4,10,f +11285,3023,320,8,f +11285,3023,19,4,f +11285,3023,1,1,f +11285,3024,19,1,t +11285,3024,4,9,f +11285,3024,19,4,f +11285,3024,4,1,t +11285,3028,72,1,f +11285,3034,4,1,f +11285,30363,4,2,f +11285,30383,71,4,f +11285,3039,320,6,f +11285,3040b,4,6,f +11285,3045,320,2,f +11285,3062b,0,10,f +11285,3068b,320,3,f +11285,3069b,4,1,f +11285,3069b,320,4,f +11285,3298,4,2,f +11285,3623,320,3,f +11285,3660,19,1,f +11285,3665,4,2,f +11285,3666,0,1,f +11285,3666,320,2,f +11285,3684,72,1,f +11285,3794b,0,4,f +11285,3795,19,3,f +11285,41769,4,2,f +11285,41770,4,2,f +11285,4286,4,2,f +11285,44301a,4,7,f +11285,44302a,0,10,f +11285,44728,4,2,f +11285,44728,71,1,f +11285,47455,0,3,f +11285,47759,320,1,f +11285,48169,72,1,f +11285,48170,4,2,f +11285,48171,72,1,f +11285,48172,0,1,f +11285,4871,4,1,f +11285,4871,19,2,f +11285,49668,15,18,f +11285,51739,320,1,f +11285,54200,0,1,t +11285,54200,0,2,f +11285,59900,297,2,f +11285,60470b,4,2,f +11285,60471,4,1,f +11285,60477,4,2,f +11285,60478,71,4,f +11285,61252,297,4,f +11285,6141,15,2,f +11285,6141,297,2,f +11285,6141,0,4,f +11285,6141,0,1,t +11285,6141,42,1,t +11285,6141,15,1,t +11285,6141,42,4,f +11285,6141,297,1,t +11285,6177pr0004,71,1,f +11285,63868,72,2,f +11285,76768,4,2,f +11285,85984,15,1,f +11285,87087,0,2,f +11285,973pr3434c01,212,1,f +11287,13608,179,2,f +11287,14273pr0002,47,1,f +11287,14273pr0003,47,1,f +11287,2419,72,1,f +11287,2445,0,2,f +11287,2540,72,4,f +11287,2654,72,2,f +11287,2780,0,1,t +11287,2780,0,6,f +11287,298c02,0,2,f +11287,298c02,0,1,t +11287,30033,0,1,f +11287,30165,70,1,f +11287,3020,70,1,f +11287,3021,0,4,f +11287,3022,484,8,f +11287,3023,70,1,f +11287,3032,70,1,f +11287,3034,70,1,f +11287,3037,70,2,f +11287,30374,41,1,f +11287,30377,71,4,f +11287,30377,71,1,t +11287,30381,272,1,f +11287,3039,70,2,f +11287,30565,70,2,f +11287,32064b,71,1,f +11287,32187,71,1,f +11287,3626bpr0525,78,1,f +11287,3626bpr0934,19,1,f +11287,3666,72,1,f +11287,3678b,70,2,f +11287,3700,70,5,f +11287,3701,71,2,f +11287,3795,72,1,f +11287,3894,72,2,f +11287,3941,70,2,f +11287,3961,70,2,f +11287,4032a,484,3,f +11287,4032a,71,2,f +11287,41747,484,2,f +11287,41748,484,2,f +11287,42610,71,3,f +11287,43093,1,1,f +11287,44294,71,1,f +11287,44375b,484,2,f +11287,44728,72,1,f +11287,4510,72,1,f +11287,4589,42,2,f +11287,4740,71,2,f +11287,4740,70,2,f +11287,47753,70,1,f +11287,47759,70,2,f +11287,58247,0,1,f +11287,59443,0,2,f +11287,60474,72,1,f +11287,60484,72,2,f +11287,61184,71,4,f +11287,61189pr0011,15,1,f +11287,6141,42,5,f +11287,6141,42,2,t +11287,61678,484,4,f +11287,64567,80,1,f +11287,87083,72,2,f +11287,92751pr0001,28,1,f +11287,92751pr0002,72,1,f +11287,970c00,0,1,f +11287,970c00pr0308,72,1,f +11287,970c00pr0309,15,1,f +11287,970c69pr0237,28,1,f +11287,973pr1798c01,28,1,f +11287,973pr2007c01,72,1,f +11287,973pr2008c01,15,1,f +11287,973pr2016c01,0,1,f +11287,99464,272,1,f +11289,3001,4,1,f +11289,3001,14,3,f +11289,3002,1,2,f +11289,3027,4,1,f +11289,3033,1,1,f +11289,3334,2,1,f +11289,3900,7,1,f +11289,3980c02,1,2,f +11289,4334,7,1,f +11289,749,366,1,f +11289,787c01,1,2,f +11289,787c02,4,2,f +11289,787c03,1,1,f +11289,fab12c,-1,1,f +11289,fab2g,-1,1,f +11289,fabac1,4,1,f +11289,fabal6,14,1,f +11289,fabbc1,4,1,f +11289,fabbd5,14,1,f +11289,u9154,0,1,f +11289,u9204c01,1,1,f +11289,x581c05,1,1,f +11289,x610c01,14,1,f +11289,x636c02,4,3,f +11290,2301,1,2,f +11290,2302,4,2,f +11290,3011,14,2,f +11290,3011,4,2,f +11290,3011,1,2,f +11290,3011,10,2,f +11290,3011,15,1,f +11290,3011,27,1,f +11290,3437,27,3,f +11290,3437,15,5,f +11290,3437,0,5,f +11290,3437,484,3,f +11290,3437,1,6,f +11290,3437,14,9,f +11290,3437,25,2,f +11290,3437,4,9,f +11290,3437,10,6,f +11290,4066,14,2,f +11290,4066,1,2,f +11290,40666,484,2,f +11290,40666,25,2,f +11290,40666,0,1,f +11290,40666,15,1,f +11290,44524,10,1,f +11290,61649,4,1,f +11290,6474,0,2,f +11290,6474,4,2,f +11290,6474,484,2,f +11290,6510,25,1,f +11290,6510,10,1,f +11290,87084,4,2,f +11290,90265,10,1,f +11291,3623,4,12,f +11291,3623,0,12,f +11291,3710,4,12,f +11291,3710,0,12,f +11292,54190,47,1,f +11294,2357,72,7,f +11294,2357,71,22,f +11294,2431,71,3,f +11294,3003,72,3,f +11294,3003,71,4,f +11294,3004,72,10,f +11294,3004,71,3,f +11294,3005,1,1,f +11294,3005,4,4,f +11294,3005,72,2,f +11294,3005,2,1,f +11294,3005,70,16,f +11294,3005,71,2,f +11294,3005,0,1,f +11294,3005pr0008,2,1,f +11294,3009,71,5,f +11294,3010,71,8,f +11294,3021,70,1,f +11294,3023,70,10,f +11294,3023,47,2,f +11294,3023,0,2,f +11294,3023,71,9,f +11294,3023,1,1,f +11294,3024,0,3,f +11294,3024,1,1,f +11294,3024,72,1,t +11294,3024,70,1,t +11294,3024,19,1,t +11294,3024,19,1,f +11294,3024,72,27,f +11294,3024,71,32,f +11294,3024,1,1,t +11294,3024,70,37,f +11294,3024,71,2,t +11294,3024,47,8,f +11294,3024,2,1,t +11294,3024,4,1,t +11294,3024,4,2,f +11294,3024,0,1,t +11294,3024,2,12,f +11294,3024pr0003,19,1,f +11294,3024pr0003,19,1,t +11294,3024pr0004,19,1,f +11294,3024pr0004,19,1,t +11294,3069b,71,2,f +11294,3069b,82,2,f +11294,3070b,70,1,t +11294,3070b,36,1,t +11294,3070b,36,9,f +11294,3070b,27,10,f +11294,3070b,71,7,t +11294,3070b,19,30,f +11294,3070b,1,1,t +11294,3070b,1,12,f +11294,3070b,2,1,t +11294,3070b,2,62,f +11294,3070b,70,10,f +11294,3070b,72,13,t +11294,3070b,71,3,f +11294,3070b,27,1,t +11294,3070b,19,1,t +11294,32062,0,2,t +11294,32062,0,4,f +11294,32064b,72,18,f +11294,3622,72,4,f +11294,3622,71,17,f +11294,3623,2,2,f +11294,3623,70,1,f +11294,3623,27,2,f +11294,3710,71,2,f +11294,3794b,2,1,f +11294,3958,70,4,f +11294,3958,72,4,f +11294,54200,33,4,f +11294,54200,33,1,t +11294,63864,71,4,f +11294,6636,71,4,f +11294,92593,71,4,f +11294,96874,25,1,t +11295,2412b,71,1,f +11295,2420,0,4,f +11295,2431,27,3,f +11295,2555,0,3,f +11295,2654,72,1,f +11295,2780,0,8,f +11295,2780,0,2,t +11295,2877,72,4,f +11295,3001,27,9,f +11295,3004,27,2,f +11295,3005,4,1,f +11295,3007,71,1,f +11295,3008,72,1,f +11295,3010,27,3,f +11295,30153,42,2,f +11295,30170,72,1,f +11295,30170,72,1,t +11295,3020,27,3,f +11295,3021,71,4,f +11295,3023,4,4,f +11295,3023,47,3,f +11295,3024,47,3,f +11295,3031,27,1,f +11295,30325,1,1,f +11295,3034,0,2,f +11295,3036,72,1,f +11295,30360,71,1,f +11295,30385,42,3,f +11295,3039,72,4,f +11295,30391,0,2,f +11295,3069b,4,1,f +11295,3069b,27,2,f +11295,32013,72,1,f +11295,32015,15,2,f +11295,32039,4,2,f +11295,32062,4,4,f +11295,32187,71,2,f +11295,32192,72,2,f +11295,32271,72,2,f +11295,32523,71,1,f +11295,32524,72,1,f +11295,32526,27,6,f +11295,32532,71,1,f +11295,32556,19,10,f +11295,3456,72,1,f +11295,3626bpr0560,14,1,f +11295,3660,27,4,f +11295,3707,0,1,f +11295,3749,19,2,f +11295,3829c01,15,1,f +11295,3837,72,1,f +11295,3841,72,1,f +11295,3899,47,1,f +11295,3941,72,1,f +11295,3956,71,5,f +11295,4032a,71,2,f +11295,41530,25,4,f +11295,42003,72,2,f +11295,43093,1,5,f +11295,43121,71,1,f +11295,4345b,71,1,f +11295,4346,71,1,f +11295,44728,0,4,f +11295,4599b,71,4,f +11295,4740,71,2,f +11295,48989,71,1,f +11295,50950,27,4,f +11295,52031,27,1,f +11295,54200,47,2,f +11295,54200,182,1,t +11295,54200,27,2,f +11295,54200,27,1,t +11295,54200,182,2,f +11295,54200,47,1,t +11295,55981,71,4,f +11295,59426,72,1,f +11295,59443,72,2,f +11295,60476,0,2,f +11295,60478,0,2,f +11295,60484,0,2,f +11295,60485,71,1,f +11295,61184,71,1,f +11295,61403,71,4,f +11295,61409,27,10,f +11295,6141,27,1,t +11295,6141,27,2,f +11295,62576,40,1,f +11295,64712,0,2,f +11295,64728,4,1,f +11295,6541,71,2,f +11295,6558,1,3,f +11295,6587,72,5,f +11295,6628,0,1,f +11295,71155,0,1,f +11295,85049pat01,42,1,f +11295,85204,72,1,f +11295,85205,72,1,f +11295,88930,27,2,f +11295,970c00pr0122,1,1,f +11295,973pr1433c01,71,1,f +11296,2346,0,4,f +11296,2460,14,1,f +11296,2479,0,1,f +11296,3001,15,2,f +11296,3001,14,2,f +11296,3001,1,2,f +11296,3001,4,2,f +11296,3002,4,2,f +11296,3002,15,2,f +11296,3003,15,2,f +11296,3003,14,2,f +11296,3003,1,2,f +11296,3003,4,2,f +11296,3004,1,14,f +11296,3004,4,14,f +11296,3004,15,14,f +11296,3004,0,8,f +11296,3004,14,14,f +11296,3005,4,10,f +11296,3005,14,10,f +11296,3005,0,8,f +11296,3005,1,10,f +11296,3005,15,10,f +11296,3008,4,1,f +11296,3009,1,2,f +11296,3009,4,2,f +11296,3009,15,2,f +11296,3010,14,4,f +11296,3010,4,12,f +11296,3010,1,6,f +11296,3010,0,4,f +11296,3010,15,8,f +11296,3010px2,14,1,f +11296,3020,1,2,f +11296,3022,1,2,f +11296,3030,1,1,f +11296,3039,47,1,f +11296,3062b,7,4,f +11296,3065,47,2,f +11296,3297,4,4,f +11296,3298,4,4,f +11296,3298p21,1,2,f +11296,3299,4,1,f +11296,3300,4,1,f +11296,3622,14,2,f +11296,3622,15,2,f +11296,3622,4,6,f +11296,3626bp04,14,1,f +11296,3666,1,2,f +11296,3710,1,2,f +11296,3747b,4,2,f +11296,3823,41,1,f +11296,3829c01,14,1,f +11296,3832,1,2,f +11296,3853,1,1,f +11296,3854,15,2,f +11296,3856,2,2,f +11296,3861b,1,1,f +11296,3865,10,1,f +11296,3901,0,1,f +11296,3957a,0,2,f +11296,4070,4,2,f +11296,4070,1,2,f +11296,4079,14,1,f +11296,4083,0,2,f +11296,4286,4,4,f +11296,4287,4,2,f +11296,6248,15,4,f +11296,6249,8,2,f +11296,970c00,15,1,f +11296,973p73c01,2,1,f +11297,3001,7,28,f +11297,3002,7,16,f +11297,3003,7,24,f +11297,3004,7,16,f +11297,3005,7,8,f +11297,3005,7,1,t +11297,3006,7,2,f +11297,3007,7,2,f +11297,3008,7,4,f +11297,3009,7,8,f +11297,3010,7,8,f +11297,3622,7,8,f +11301,3830,7,4,f +11301,3831,7,4,f +11301,3937,7,4,f +11301,3938,7,4,f +11302,14728c30,0,1,f +11302,2362b,15,2,f +11302,2412b,4,2,f +11302,2412b,71,13,f +11302,2412b,15,3,f +11302,2431,14,3,f +11302,2431,15,1,f +11302,2436,15,1,f +11302,2437,41,1,f +11302,2445,4,1,f +11302,2447,40,1,t +11302,2454a,15,5,f +11302,2474,72,2,f +11302,2475,4,2,f +11302,2476a,15,2,f +11302,2498,1,6,f +11302,2555,15,2,f +11302,2819,71,1,f +11302,3001,0,2,f +11302,3003,15,4,f +11302,3004,0,2,f +11302,3004,15,13,f +11302,3007,0,1,f +11302,3008,15,6,f +11302,3009,15,6,f +11302,3009,0,4,f +11302,30145,15,1,f +11302,30179,4,1,f +11302,3020,14,1,f +11302,3022,2,1,f +11302,3022,0,2,f +11302,30225,72,1,f +11302,3023,2,2,f +11302,3023,46,2,f +11302,3023,4,2,f +11302,3024,34,2,f +11302,30292,41,7,f +11302,3031,15,2,f +11302,3034,2,5,f +11302,3039pr0001,15,1,f +11302,3040bpr0003,71,1,f +11302,3062b,15,2,f +11302,3062b,14,5,f +11302,30663,0,2,f +11302,3068b,15,9,f +11302,3068b,71,1,f +11302,3069b,15,6,f +11302,3069bp08,15,2,f +11302,3069bpr0101,71,1,f +11302,32000,71,4,f +11302,32028,15,2,f +11302,32054,0,1,f +11302,32062,4,1,f +11302,3456,0,1,f +11302,3460,2,6,f +11302,3460,4,6,f +11302,3623,0,1,f +11302,3623,15,2,f +11302,3660,15,2,f +11302,3666,4,10,f +11302,3673,71,3,f +11302,3673,71,1,t +11302,3679,71,1,f +11302,3680,4,1,f +11302,3710,14,3,f +11302,3710,71,2,f +11302,3710,15,3,f +11302,3710,4,3,f +11302,3741,2,2,f +11302,3741,2,1,t +11302,3742,4,2,t +11302,3742,4,6,f +11302,3794a,0,2,f +11302,3829c01,1,1,f +11302,3832,15,2,f +11302,3836,70,1,f +11302,3837,0,1,f +11302,3839b,71,1,f +11302,3849,0,2,f +11302,3852b,191,1,f +11302,3865,72,1,f +11302,3941,15,1,f +11302,3941,0,2,f +11302,3959,71,1,f +11302,4032a,4,1,f +11302,4032a,2,1,f +11302,4032a,15,1,f +11302,4070,15,8,f +11302,4083,14,2,f +11302,4085c,0,3,f +11302,41531,15,2,f +11302,41532,0,2,f +11302,4162,15,12,f +11302,4162,71,3,f +11302,41752,72,1,f +11302,4215b,15,2,f +11302,43093,1,2,f +11302,43337,14,2,f +11302,44302a,15,4,f +11302,44567a,71,2,f +11302,44728,15,2,f +11302,4477,2,3,f +11302,4495b,2,1,f +11302,4495b,4,1,f +11302,4523,1,1,f +11302,4532,4,2,f +11302,4533,41,2,f +11302,45677,14,1,f +11302,4589,34,4,f +11302,4589,40,5,f +11302,4599a,14,1,f +11302,4599a,1,8,f +11302,4697b,71,2,t +11302,4697b,71,3,f +11302,4729,0,2,f +11302,4735,0,1,f +11302,47457,15,2,f +11302,48183,71,2,f +11302,4865a,40,1,f +11302,50745,14,4,f +11302,50859a,0,1,f +11302,50861,0,2,f +11302,50862,71,2,f +11302,51739,14,1,f +11302,52036,72,1,f +11302,52038,14,2,f +11302,52501,14,2,f +11302,54200,36,4,f +11302,54200,34,1,f +11302,54200,46,7,f +11302,57783,41,1,f +11302,57894,4,2,f +11302,57895,41,2,f +11302,59349,41,2,f +11302,59349,15,2,f +11302,6014b,14,4,f +11302,6015,0,4,f +11302,6019,15,12,f +11302,6041,0,2,f +11302,60849,14,1,t +11302,60849,14,2,f +11302,6140,71,2,f +11302,6141,182,1,t +11302,6141,1,11,f +11302,6141,182,2,f +11302,6141,1,3,t +11302,6157,71,2,f +11302,6538b,71,1,f +11302,6576,71,1,f +11302,76041c01,4,1,f +11302,7993stk01,9999,1,t +11302,85546,14,1,f +11302,89536,0,1,f +11303,2399,0,1,f +11303,2412b,3,7,f +11303,2412b,1,2,f +11303,2431,1,2,f +11303,2780,0,17,f +11303,2825,0,4,f +11303,2850a,47,2,f +11303,2851,14,2,f +11303,2852,7,2,f +11303,2853,7,4,f +11303,2904,0,1,f +11303,2905,1,1,f +11303,30028,0,3,f +11303,3021,0,1,f +11303,3021,1,1,f +11303,3022,1,1,f +11303,3023,1,1,f +11303,3023,0,7,f +11303,3032,0,1,f +11303,3069b,1,2,f +11303,32000,0,2,f +11303,32000,1,1,f +11303,32002,8,2,f +11303,32002,8,1,t +11303,32009,0,2,f +11303,32013,0,5,f +11303,32014,0,2,f +11303,32015,0,2,f +11303,32016,0,2,f +11303,32017,0,4,f +11303,32017,7,2,f +11303,32034,0,4,f +11303,32039,0,1,f +11303,32054,1,2,f +11303,32056,15,2,f +11303,32057,80,1,f +11303,32062,0,11,f +11303,32063,1,6,f +11303,32065,0,2,f +11303,32068,15,1,f +11303,32068,0,3,f +11303,32073,0,4,f +11303,32076,0,1,f +11303,32077,80,1,f +11303,32078,0,1,f +11303,32079,0,1,f +11303,32123b,7,1,t +11303,32123b,7,15,f +11303,3623,1,2,f +11303,3647,7,2,f +11303,3648b,7,1,f +11303,3650c,7,2,f +11303,3666,1,2,f +11303,3705,0,12,f +11303,3706,0,8,f +11303,3709,0,1,f +11303,3710,0,2,f +11303,3710,1,1,f +11303,3711a,0,1,t +11303,3711a,0,25,f +11303,3713,7,9,f +11303,3749,7,9,f +11303,3895,0,2,f +11303,4019,7,2,f +11303,4081b,0,2,f +11303,4185,7,2,f +11303,4274,7,1,t +11303,4274,7,6,f +11303,4275b,0,2,f +11303,4276b,0,2,f +11303,4519,0,10,f +11303,4859,1,1,f +11303,6141,46,1,t +11303,6141,46,2,f +11303,6141,36,1,t +11303,6141,36,2,f +11303,6536,15,1,f +11303,6536,0,21,f +11303,6536,1,3,f +11303,6538b,7,1,f +11303,6542a,8,2,f +11303,6553,0,2,f +11303,6558,0,2,f +11303,6628,0,2,f +11303,6632,7,2,f +11303,6632,15,2,f +11303,6632,0,17,f +11303,75535,0,3,f +11303,75c17,1,1,f +11303,75c30,1,1,f +11303,76138,8,1,f +11303,78c06,0,2,f +11303,78c13,0,2,f +11303,78c15,0,1,f +11306,43093,1,4,t +11306,43093,1,1,f +11306,74261,72,2,f +11306,76676,1,1,f +11306,90608,0,6,f +11306,90609,72,6,f +11306,90617,0,4,f +11306,90622,0,2,f +11306,90625,0,1,f +11306,90630,0,1,f +11306,90634,0,1,f +11306,90639,4,4,f +11306,90639,1,2,f +11306,90639,148,2,f +11306,90652,15,1,f +11306,90661,4,2,f +11306,92223,179,2,f +11306,93575,4,2,f +11306,98592,4,2,f +11306,98603s01pr0004,1,1,f +11306,98606pr0001,15,1,f +11307,2300,4,1,f +11307,2300,1,1,f +11307,2300,14,1,f +11307,2300,2,1,f +11307,2302,4,3,f +11307,2302,2,3,f +11307,2302,14,3,f +11307,2302,1,3,f +11307,3011,4,10,f +11307,3011,14,10,f +11307,3011,1,10,f +11307,3011,2,10,f +11307,3437,2,16,f +11307,3437,4,16,f +11307,3437,1,16,f +11307,3437,14,16,f +11307,3437pe1,4,1,f +11307,3437pe1,2,1,f +11307,3437pe1,14,2,f +11307,4066,1,1,f +11307,4066,2,1,f +11307,4066,14,1,f +11307,4066,4,1,f +11307,40666,2,3,f +11307,40666,14,3,f +11307,40666,4,3,f +11307,40666,1,3,f +11307,4199,1,1,f +11307,4199,4,1,f +11307,4672,14,1,f +11307,4672,2,1,f +11310,3039,8,2,f +11310,3040b,7,2,f +11310,3298,379,2,f +11310,3665,8,2,f +11310,3700,8,4,f +11310,3795,7,1,f +11310,40379,379,1,f +11310,40385,8,1,f +11310,40396,379,1,f +11310,4274,7,1,f +11310,6127,379,1,f +11310,6128,379,1,f +11310,x158,379,1,f +11311,10247,72,2,f +11311,11477,15,2,f +11311,14417,72,2,f +11311,14704,71,3,f +11311,14769,15,4,f +11311,15068,72,1,f +11311,15068,15,6,f +11311,15456,0,1,f +11311,2412b,25,8,f +11311,2540,15,4,f +11311,2639,72,2,f +11311,2780,0,2,f +11311,3001,0,1,f +11311,3020,71,4,f +11311,3021,25,2,f +11311,3021,15,4,f +11311,3022,71,5,f +11311,3023,71,8,f +11311,3023,15,9,f +11311,30383,72,4,f +11311,3040b,15,2,f +11311,30602,41,2,f +11311,3062b,71,2,f +11311,3068b,72,1,f +11311,32001,71,1,f +11311,32028,4,2,f +11311,32062,4,2,f +11311,32064a,71,1,f +11311,3623,71,6,f +11311,3659,15,4,f +11311,3673,71,4,f +11311,3673,71,1,t +11311,3700,15,3,f +11311,3710,15,3,f +11311,3795,25,2,f +11311,3832,71,2,f +11311,3942c,15,2,f +11311,4032a,72,10,f +11311,43093,1,2,f +11311,43720,15,1,f +11311,43721,15,1,f +11311,43722,0,2,f +11311,43723,0,2,f +11311,44302a,72,4,f +11311,44728,15,1,f +11311,4477,0,2,f +11311,47397,0,1,f +11311,47398,0,1,f +11311,4740,41,5,f +11311,47407,15,1,f +11311,47455,72,2,f +11311,47457,72,2,f +11311,48171,72,2,f +11311,48172,0,1,f +11311,48336,0,2,f +11311,48933,15,2,f +11311,53585,0,2,f +11311,54200,41,4,f +11311,54200,41,1,t +11311,55981,71,4,f +11311,57909b,72,2,f +11311,60470a,71,2,f +11311,60475b,71,2,f +11311,60478,0,4,f +11311,60897,0,4,f +11311,6141,25,19,f +11311,6141,25,1,t +11311,64225,15,1,f +11311,6541,72,4,f +11311,72454,15,2,f +11311,85943,72,2,f +11311,85984,72,1,f +11311,87079,15,1,f +11311,87083,72,1,f +11311,89201,0,4,f +11311,92013,72,4,f +11311,98138,15,2,f +11311,98138,15,1,t +11311,98313,148,8,f +11311,99207,0,1,f +11311,99780,0,3,f +11311,99781,71,3,f +11313,15,4,2,f +11313,17,4,2,f +11313,3001a,1,4,f +11313,3003,4,1,f +11313,3003,1,1,f +11313,3004,0,2,f +11313,3004,47,2,f +11313,3004,4,1,f +11313,3004,1,1,f +11313,3005,1,6,f +11313,3007,15,2,f +11313,3009,15,2,f +11313,3009,1,2,f +11313,3010,15,1,f +11313,3010,1,4,f +11313,3020,1,1,f +11313,3020,15,6,f +11313,3022,1,2,f +11313,3024,1,2,f +11313,3027,1,2,f +11313,3029,1,2,f +11313,3031,1,2,f +11313,3035,1,1,f +11313,3037,1,4,f +11313,3037,47,1,f +11313,3038,1,2,f +11313,3039,1,3,f +11313,3039,0,1,f +11313,3040a,47,2,f +11313,3040a,1,4,f +11313,3046a,1,4,f +11313,3062a,14,2,f +11313,3298,1,1,f +11313,3460,1,4,f +11313,3461,7,1,f +11313,3481,1,1,f +11313,3624,15,2,f +11313,3626a,14,2,f +11313,3660,15,6,f +11313,3660,1,20,f +11313,3665,1,2,f +11313,801,1,1,f +11313,802,1,1,f +11314,2412b,71,2,f +11314,2420,14,2,f +11314,2431,4,2,f +11314,2444,72,1,f +11314,2460,0,1,f +11314,2479,0,2,f +11314,2555,71,1,f +11314,2780,0,1,t +11314,2780,0,2,f +11314,2877,14,2,f +11314,3004,0,1,f +11314,3005,14,2,f +11314,30165,4,1,f +11314,3020,4,3,f +11314,3020,14,2,f +11314,3020,72,2,f +11314,3021,14,2,f +11314,3022,4,5,f +11314,3022,71,2,f +11314,30229,72,1,f +11314,3023,0,3,f +11314,3024,72,2,f +11314,3024,14,2,f +11314,3024,4,2,f +11314,3031,14,2,f +11314,30361c,72,2,f +11314,3040b,4,1,f +11314,3065,40,4,f +11314,3068b,72,2,f +11314,3069b,15,4,f +11314,3070b,15,4,f +11314,3070b,15,1,t +11314,3298,0,1,f +11314,3622,14,4,f +11314,3623,72,1,f +11314,3665,4,1,f +11314,3666,14,2,f +11314,3673,71,1,f +11314,3673,71,1,t +11314,3710,14,3,f +11314,3794b,72,4,f +11314,3795,71,1,f +11314,3832,14,1,f +11314,3832,4,5,f +11314,3942c,72,2,f +11314,41769,4,1,f +11314,41770,4,1,f +11314,4287,14,6,f +11314,4349,0,1,f +11314,43710,4,1,f +11314,43711,4,1,f +11314,44728,72,1,f +11314,48336,71,2,f +11314,4871,71,3,f +11314,50950,14,3,f +11314,51739,72,1,f +11314,54200,36,1,t +11314,54200,72,1,t +11314,54200,14,1,t +11314,54200,14,2,f +11314,54200,36,1,f +11314,54200,72,4,f +11314,57783,40,1,f +11314,59900,71,2,f +11314,6019,71,2,f +11314,60479,0,4,f +11314,61409,72,2,f +11314,6141,47,1,f +11314,6141,71,1,t +11314,6141,47,1,t +11314,6141,71,7,f +11314,61678,4,4,f +11314,6541,0,2,f +11314,87087,71,6,f +11318,22239,89,1,f +11318,2921,0,1,f +11318,3004,5,4,f +11318,3009,13,1,f +11318,30112,20,1,f +11318,30151a,47,1,f +11318,30153,41,1,f +11318,30153,34,2,f +11318,30236,1,1,f +11318,33051,2,1,f +11318,33172,25,2,f +11318,33183,10,2,f +11318,33207p01,15,1,f +11318,33213,18,2,f +11318,33215,114,1,f +11318,33216,45,2,f +11318,33227,5,1,f +11318,3622,13,2,f +11318,3626b,47,1,f +11318,3794a,15,1,f +11318,3942c,18,2,f +11318,3957a,13,1,f +11318,4032a,2,1,f +11318,4085c,15,1,f +11318,4237,2,1,f +11318,4238,2,1,f +11318,4424,1,1,f +11318,4495b,5,1,f +11318,4740,0,1,f +11318,59,383,1,f +11318,6066,5,1,f +11318,60791,6,1,f +11318,6124,41,1,f +11318,6141,57,1,f +11318,6141,1,2,f +11318,6161,74,1,f +11318,6171pr02,15,1,f +11318,6176,5,1,f +11318,6185,2,1,f +11318,6204,0,1,f +11318,70973c01,5,1,f +11318,75347,5,1,f +11318,belblank,1,1,f +11320,3020,462,1,f +11320,3023,462,1,f +11320,3023,0,1,f +11320,3031,462,1,f +11320,32014,7,1,f +11320,3626bpb0165,14,1,f +11320,3707,0,1,f +11320,3710,462,1,f +11320,3794a,0,2,f +11320,3941,0,1,f +11320,4215b,40,1,f +11320,43373,25,1,f +11320,43374,15,1,f +11320,43702pr0001,25,1,f +11320,973bpb177c01,19,1,f +11320,x494cx1,0,1,f +11322,10247,72,4,f +11322,11090,72,1,f +11322,11211,71,2,f +11322,11458,15,4,f +11322,11458,72,1,f +11322,13565,70,1,f +11322,14418,71,1,f +11322,15068,1,1,f +11322,15068,72,6,f +11322,15210,0,1,f +11322,15400,72,1,f +11322,15423pr0002,379,1,f +11322,15445,72,1,f +11322,15456,0,4,f +11322,15535,72,2,f +11322,15573,71,6,f +11322,15712,71,1,f +11322,19020,35,1,f +11322,21370,9999,1,t +11322,2412b,71,4,f +11322,2412b,72,7,f +11322,2431,14,2,f +11322,2432,72,8,f +11322,2445,72,6,f +11322,2447,40,1,f +11322,2447,40,1,t +11322,2654,46,2,f +11322,2730,71,4,f +11322,2780,0,3,t +11322,2780,0,20,f +11322,3001,1,3,f +11322,3003,71,3,f +11322,30031,71,1,f +11322,3004,1,6,f +11322,3006,1,2,f +11322,3007,1,3,f +11322,3008,1,3,f +11322,3009,15,2,f +11322,3010,15,4,f +11322,3010,71,1,f +11322,30171,0,1,f +11322,3020,71,1,f +11322,3020,1,6,f +11322,3021,70,11,f +11322,3021,1,1,f +11322,3021,15,2,f +11322,3022,72,4,f +11322,3022,71,1,f +11322,3023,14,2,f +11322,3028,72,2,f +11322,3029,72,1,f +11322,3029,1,1,f +11322,3031,72,4,f +11322,3031,1,6,f +11322,3032,71,1,f +11322,3034,15,7,f +11322,30350b,1,12,f +11322,30363,15,4,f +11322,30363,71,1,f +11322,30363,1,2,f +11322,30374,0,1,f +11322,3039,72,12,f +11322,30414,4,3,f +11322,3068b,1,3,f +11322,3069b,46,2,f +11322,3069b,182,1,f +11322,3069b,36,2,f +11322,3069bpr0030,72,1,f +11322,3176,72,2,f +11322,32013,14,2,f +11322,32039,71,4,f +11322,32054,0,4,f +11322,32054,4,4,f +11322,32062,4,4,f +11322,32064a,72,2,f +11322,32184,71,8,f +11322,32474,0,2,f +11322,32523,15,1,f +11322,32532,0,2,f +11322,3300,15,2,f +11322,3460,71,4,f +11322,3626cpr0937,78,1,f +11322,3626cpr1617,78,1,f +11322,3626cpr1719,78,1,f +11322,3660,15,2,f +11322,3665,71,4,f +11322,3666,15,2,f +11322,3701,72,6,f +11322,3703,71,4,f +11322,3705,0,12,f +11322,3707,0,8,f +11322,3710,72,6,f +11322,3710,15,2,f +11322,3713,71,7,f +11322,3713,71,3,t +11322,3713,4,1,t +11322,3713,4,4,f +11322,3747b,71,2,f +11322,3795,71,1,f +11322,3823,40,2,f +11322,3829c01,14,1,f +11322,3832,1,6,f +11322,3941,14,4,f +11322,4032a,71,5,f +11322,40490,72,4,f +11322,4162,14,3,f +11322,4282,71,3,f +11322,43093,1,8,f +11322,4345b,71,1,f +11322,4346,71,1,f +11322,4449,0,1,f +11322,44567a,0,4,f +11322,4510,72,1,f +11322,45677,1,2,f +11322,4740,72,1,f +11322,48336,1,12,f +11322,50859b,179,1,f +11322,50860,1,1,f +11322,50861,0,2,f +11322,50862,71,2,f +11322,50943,72,1,f +11322,50950,1,2,f +11322,53586,179,2,f +11322,54200,72,2,f +11322,54200,72,1,t +11322,55976,0,4,f +11322,56145,71,4,f +11322,56823c50,0,1,f +11322,59443,71,14,f +11322,59443,14,2,f +11322,59900,33,1,f +11322,60478,1,1,f +11322,60483,0,3,f +11322,6091,15,4,f +11322,6141,72,6,f +11322,6141,182,8,f +11322,6141,182,1,t +11322,6141,72,2,t +11322,6141,71,1,t +11322,6141,71,4,f +11322,62462,71,4,f +11322,64451,72,4,f +11322,64567,0,1,f +11322,64567,0,1,t +11322,64644,308,1,f +11322,64644,71,1,f +11322,64647,57,1,t +11322,64647,57,1,f +11322,6553,0,4,f +11322,6558,1,9,f +11322,6628,0,1,f +11322,6636,15,4,f +11322,76766,71,4,f +11322,85984,71,2,f +11322,85984,1,2,f +11322,87079,1,4,f +11322,87079,14,1,f +11322,87083,72,9,f +11322,87989,27,2,t +11322,87989,27,2,f +11322,88072,0,2,f +11322,92081,72,1,f +11322,96874,25,1,t +11322,970c00,0,1,f +11322,970c00,272,1,f +11322,970c00pr0886,72,1,f +11322,973pr3052c01,19,1,f +11322,973pr3060c01,272,1,f +11322,973pr3064c01,19,1,f +11322,98057pr0003,84,1,f +11322,98058pr0003,484,1,f +11322,98059pr0003,484,1,f +11322,98138,46,2,f +11322,98138,71,2,f +11322,98138,46,1,t +11322,98159pr0003,84,1,f +11322,98160pr0003,84,1,f +11322,98161pr0003,84,1,f +11322,98162pr03,84,1,f +11322,98163pr03,84,1,f +11323,10178pr0001a,42,1,f +11323,10227,2,1,f +11323,2412b,179,5,f +11323,2654,33,4,f +11323,298c02,15,2,f +11323,298c02,15,1,t +11323,30093,288,1,f +11323,30132,72,1,t +11323,30132,72,2,f +11323,3020,19,1,f +11323,3031,70,2,f +11323,3040b,72,2,f +11323,3062b,34,1,f +11323,3070b,34,3,f +11323,3070b,34,1,t +11323,33320,2,1,f +11323,3626bpr0991,27,1,f +11323,3626bpr0996,14,1,f +11323,3660,0,2,f +11323,3673,71,1,t +11323,3673,71,1,f +11323,3700,71,2,f +11323,4070,19,2,f +11323,4079b,70,1,f +11323,4085c,71,2,f +11323,42023,0,2,f +11323,4274,1,1,t +11323,4274,1,2,f +11323,4497,308,1,f +11323,47457,72,1,f +11323,59900,320,2,f +11323,60475b,0,1,f +11323,6091,19,4,f +11323,61184,71,2,f +11323,6141,46,1,t +11323,6141,46,2,f +11323,6141,179,2,f +11323,6141,179,1,t +11323,64648,179,1,f +11323,85940,0,2,f +11323,87580,72,1,f +11323,92280,378,1,f +11323,92593,71,1,f +11323,92842,0,1,f +11323,92947,71,1,f +11323,970c00pr0351,2,1,f +11323,970c00pr0352,326,1,f +11323,973pr2071c01,308,1,f +11323,973pr2072c01,2,1,f +11323,98371,0,1,f +11324,2412b,4,1,t +11324,2412b,80,1,f +11324,2412b,4,1,f +11324,2420,4,2,f +11324,2555,0,2,f +11324,3001,4,2,f +11324,3020,0,3,f +11324,3021,4,2,f +11324,3021,0,2,f +11324,3022,4,2,f +11324,3034,0,1,f +11324,30374,15,1,f +11324,30552,71,1,f +11324,32014,71,1,f +11324,32062,4,1,f +11324,3710,4,1,f +11324,3788,4,1,f +11324,42074,135,1,f +11324,44674,4,1,f +11324,44728,4,1,f +11324,50944pr0001,0,4,f +11324,51011,0,4,f +11324,60471,71,1,f +11324,6141,46,1,t +11324,6141,46,2,f +11324,6157,0,2,f +11324,63864,4,2,f +11327,2412b,71,6,f +11327,2412b,1,5,f +11327,2431,15,4,f +11327,2431,0,1,f +11327,2432,1,3,f +11327,2436,0,2,f +11327,2465,71,2,f +11327,2555,71,2,f +11327,2780,0,1,t +11327,2780,0,9,f +11327,298c02,14,2,f +11327,298c02,14,2,t +11327,3001,1,1,f +11327,3004,15,2,f +11327,3004,1,2,f +11327,3005,1,2,f +11327,3009,1,1,f +11327,3021,15,1,f +11327,3022,14,2,f +11327,3023,71,7,f +11327,3024,1,2,f +11327,3029,72,1,f +11327,3031,72,4,f +11327,3034,15,1,f +11327,3039,14,1,f +11327,3069b,15,2,f +11327,3070bpr0007,71,1,t +11327,3070bpr0007,71,1,f +11327,32013,72,2,f +11327,32014,0,1,f +11327,32028,0,5,f +11327,32064b,71,2,f +11327,32529,71,2,f +11327,3626bpr0325,14,1,f +11327,3660,0,2,f +11327,3666,15,3,f +11327,3700,4,2,f +11327,3705,0,1,f +11327,3706,0,1,f +11327,3709,1,1,f +11327,3710,1,6,f +11327,3795,1,3,f +11327,3829c01,14,1,f +11327,3833,4,1,f +11327,3837,72,1,f +11327,3941,71,3,f +11327,3958,72,1,f +11327,4085c,0,2,f +11327,4150,71,3,f +11327,4162,1,2,f +11327,4176,40,1,f +11327,4274,1,2,f +11327,4274,1,1,t +11327,43093,1,2,f +11327,43337,15,1,f +11327,44728,0,2,f +11327,4488,0,8,f +11327,4519,71,1,f +11327,4589,14,1,f +11327,4589,182,2,f +11327,4599a,0,2,f +11327,4733,15,3,f +11327,4865a,15,2,f +11327,50745,15,2,f +11327,50745,0,6,f +11327,51739,15,1,f +11327,52031,15,1,f +11327,52107,0,1,f +11327,52501,1,1,f +11327,54200,1,1,t +11327,54200,1,2,f +11327,54200,15,1,t +11327,54200,15,2,f +11327,54200,47,2,f +11327,57539,0,1,f +11327,57792,1,2,f +11327,6014b,71,8,f +11327,6015,0,8,f +11327,60849,14,1,f +11327,60849,14,1,t +11327,6091,0,2,f +11327,6141,36,1,t +11327,6141,72,12,f +11327,6141,72,1,t +11327,6141,182,2,f +11327,6141,182,1,t +11327,6141,36,2,f +11327,6222,72,1,f +11327,6541,4,1,f +11327,6585,0,1,f +11327,6589,71,2,f +11327,6636,71,6,f +11327,75535,71,4,f +11327,7990stk01,9999,1,t +11327,970c00,1,1,f +11327,973pr1201c01,15,1,f +11328,132a,0,8,f +11328,236ac01,1,2,f +11328,242c01,4,4,f +11328,3058b,7,1,f +11328,468c02,0,1,f +11328,498,0,2,f +11328,564c01,0,1,f +11328,7039,4,4,f +11328,x466,15,1,f +11329,3002,4,1,f +11329,3003pe2,4,1,f +11329,3004,0,2,f +11329,3004,4,1,f +11329,3020,4,1,f +11329,3021,4,1,f +11329,3022,4,1,f +11329,3040b,4,2,f +11331,3001,1,2,f +11331,3001,4,2,f +11331,3003,4,1,f +11331,4744px11,14,1,f +11331,4744px8,1,1,f +11331,6215,14,2,f +11332,14210,15,1,f +11332,2412b,0,10,f +11332,2420,7,2,f +11332,2431,14,1,f +11332,2436,14,1,f +11332,2437,40,2,f +11332,2445,0,2,f +11332,2456,4,1,f +11332,2458,4,1,f +11332,2540,4,2,f +11332,2555,7,8,f +11332,2637,7,2,f +11332,2780,0,1,t +11332,2780,0,6,f +11332,2817,7,1,f +11332,2921,4,4,f +11332,3001,19,10,f +11332,30027b,15,4,f +11332,30028,0,4,f +11332,30029,0,1,f +11332,3003,8,2,f +11332,3004,19,24,f +11332,3006,19,2,f +11332,3008,4,2,f +11332,3010,14,2,f +11332,3010,19,10,f +11332,30144,19,12,f +11332,30155,8,2,f +11332,3020,14,1,f +11332,3020,7,2,f +11332,3022,4,1,f +11332,3022,8,2,f +11332,3022,7,8,f +11332,3023,0,2,f +11332,3023,8,4,f +11332,30236,8,8,f +11332,3024,46,14,f +11332,30259,7,2,f +11332,3031,14,1,f +11332,3032,8,2,f +11332,3033,15,1,f +11332,3034,7,2,f +11332,3034,8,2,f +11332,3037,4,2,f +11332,3040b,19,4,f +11332,30414,14,1,f +11332,30517,8,2,f +11332,30520,8,2,f +11332,30602,22,1,f +11332,3068b,7,1,f +11332,3068b,14,1,f +11332,3070b,36,2,f +11332,32039,0,3,f +11332,32062,0,2,f +11332,32064a,8,8,f +11332,3228c,7,4,f +11332,3308,19,4,f +11332,33299a,0,2,f +11332,3623,0,2,f +11332,3626bpx102,10,1,f +11332,3626bpx116,14,1,f +11332,3626bpx125,4,1,f +11332,3626bpx33,14,1,f +11332,3660,4,4,f +11332,3660,19,12,f +11332,3666,14,4,f +11332,3700,4,1,f +11332,3700,7,4,f +11332,3705,0,2,f +11332,3706,0,1,f +11332,3709,0,1,f +11332,3710,14,2,f +11332,3710,7,2,f +11332,3737,0,4,f +11332,3749,19,2,f +11332,3788,14,2,f +11332,3794a,7,2,f +11332,3795,8,4,f +11332,3829c01,7,1,f +11332,3839b,7,2,f +11332,3957a,0,2,f +11332,40251,25,1,f +11332,4070,4,4,f +11332,4150pr0022,7,2,f +11332,4185,7,2,f +11332,41854,7,1,f +11332,4282,7,3,f +11332,42936,8,2,f +11332,42942,8,2,f +11332,43337,14,2,f +11332,43337,15,2,f +11332,43722,22,1,f +11332,43723,22,1,f +11332,44302a,7,2,f +11332,44567a,8,4,f +11332,4485,0,1,f +11332,4515,8,2,f +11332,4519,7,1,f +11332,45406,4,2,f +11332,45677,14,2,f +11332,4589,36,3,f +11332,4589,34,1,f +11332,46103,40,2,f +11332,4623,0,2,f +11332,4852stk01,9999,1,t +11332,4864b,40,8,f +11332,4865a,15,1,f +11332,57467,383,2,f +11332,6019,7,10,f +11332,6141,46,4,f +11332,6141,46,1,t +11332,6157,0,2,f +11332,6232,7,5,f +11332,75535,7,2,f +11332,75c19,0,2,f +11332,970c00,15,1,f +11332,970c00,0,1,f +11332,970c07pb02,1,1,f +11332,970c36pb01,10,1,f +11332,973pb0190c01,4,1,f +11332,973pb0284c01,15,1,f +11332,973pr1163c01,272,1,f +11332,973px155c01,10,1,f +11332,bb298,15,1,f +11332,x225pb01,10,1,f +11333,2399,4,1,f +11333,2437,33,1,f +11333,2440,4,1,f +11333,2444,7,4,f +11333,2446px5,15,1,f +11333,2447,0,1,f +11333,2452,15,1,f +11333,2555,4,1,f +11333,2569,42,1,f +11333,2994,15,4,f +11333,3003,4,1,f +11333,3004,0,1,f +11333,3020,15,1,f +11333,3022,7,2,f +11333,3023,0,1,f +11333,3024,36,2,f +11333,3039,4,1,f +11333,3062b,7,4,f +11333,3070b,46,2,f +11333,3626bp7b,14,1,f +11333,3666,15,2,f +11333,3749,7,4,f +11333,3794a,4,1,f +11333,3821,4,1,f +11333,3822,4,1,f +11333,3829c01,7,1,f +11333,3938,15,1,f +11333,4070,4,2,f +11333,4079,15,1,f +11333,4081b,15,2,f +11333,4081b,4,2,f +11333,4083,0,1,f +11333,4085c,4,2,f +11333,4116414,484,1,f +11333,4212b,0,1,f +11333,4276b,15,1,f +11333,4287,4,2,f +11333,4871,0,2,f +11333,6016,0,1,f +11333,6019,15,1,f +11333,6141,42,2,f +11333,6141,7,6,f +11333,6564,4,1,f +11333,6565,4,1,f +11333,6578,0,4,f +11333,6589stk01,9999,1,t +11333,71137,383,2,f +11333,87695,15,2,f +11333,87696,15,1,f +11333,970x024,0,1,f +11333,973p8ac03,0,1,f +11334,132a,0,2,f +11334,3003pt1,1,1,f +11334,3004,47,2,f +11334,3004,1,1,f +11334,3010,47,1,f +11334,3020,1,1,f +11334,3021,1,4,f +11334,3021,4,2,f +11334,3024,1,2,f +11334,3034,1,1,f +11334,3062a,0,1,f +11334,3137c01,0,1,f +11334,3139,0,2,f +11334,3183b,4,1,f +11334,3314,4,1,f +11334,3317,1,1,f +11334,7039,4,2,f +11334,7049b,0,1,f +11334,784,4,1,f +11338,2540,72,1,f +11338,30031,72,1,f +11338,30106,47,1,f +11338,30153,46,1,f +11338,3022,4,2,f +11338,3023,72,1,f +11338,30377,0,1,t +11338,30377,0,3,f +11338,3062b,4,4,f +11338,3062b,0,1,f +11338,3626bpr0643,14,1,f +11338,4083,0,2,f +11338,4085c,72,2,f +11338,4274,71,1,t +11338,4274,71,1,f +11338,4349,0,1,f +11338,59275,27,2,f +11338,6019,0,2,f +11338,6041,0,1,f +11338,6141,27,4,f +11338,6141,15,1,f +11338,6141,27,1,t +11338,6141,47,1,t +11338,6141,15,1,t +11338,6141,47,1,f +11338,87754,72,1,f +11338,89159,35,1,f +11338,970c00pr0145,72,1,f +11338,973pr1557c01,72,1,f +11340,2780,0,2,f +11340,32062,4,4,f +11340,41669,57,2,f +11340,43093,1,1,f +11340,4519,71,6,f +11340,47306,0,1,f +11340,47311,0,1,f +11340,47330,0,1,f +11340,48989,71,1,f +11340,50923,72,2,f +11340,53545,72,1,f +11340,60176,0,6,f +11340,60896,27,6,f +11340,61053,0,2,f +11340,61792pat0001,0,1,f +11340,61798,47,2,f +11340,61804pat0001,0,4,f +11340,61806,135,2,f +11340,61808,135,1,f +11340,61810,4,1,f +11340,61811,27,2,f +11340,6558,1,2,f +11341,2357,14,4,f +11341,2419,14,2,f +11341,2420,0,8,f +11341,2444,14,4,f +11341,2444,0,2,f +11341,2445,0,1,f +11341,2639,7,1,f +11341,2711,0,2,f +11341,2711,14,8,f +11341,2717,1,3,f +11341,2719,7,3,f +11341,2730,14,1,f +11341,2730,0,4,f +11341,2744,0,4,f +11341,2744,14,2,f +11341,2780,0,62,f +11341,2793c01,14,2,f +11341,2797c02,14,1,f +11341,2817,0,2,f +11341,2819,7,1,f +11341,2825,14,2,f +11341,2825,0,2,f +11341,2825,7,18,f +11341,2853,7,2,f +11341,2856c01,7,1,f +11341,2905,0,4,f +11341,3004,14,4,f +11341,3005,14,6,f +11341,3020,14,4,f +11341,3020,0,1,f +11341,3020,7,5,f +11341,3021,0,4,f +11341,3021,14,2,f +11341,3022,0,3,f +11341,3022,14,6,f +11341,3023,7,7,f +11341,3023,14,12,f +11341,3023,0,14,f +11341,3024,7,2,f +11341,3024,0,6,f +11341,3024,14,3,f +11341,3029,0,1,f +11341,3032,14,1,f +11341,3034,7,1,f +11341,3034,0,3,f +11341,3038,14,2,f +11341,3040b,14,4,f +11341,3040b,0,2,f +11341,3045,0,2,f +11341,3069b,15,8,f +11341,3070b,14,2,f +11341,3070b,36,1,t +11341,3070b,36,2,f +11341,3070b,14,1,t +11341,32002,8,6,f +11341,32014,7,1,f +11341,32062,0,14,f +11341,32123b,7,1,t +11341,32123b,7,36,f +11341,3460,14,4,f +11341,3460,0,21,f +11341,3482,7,1,f +11341,3622,0,2,f +11341,3623,0,8,f +11341,3623,14,7,f +11341,3647,7,11,f +11341,3648b,7,3,f +11341,3665,15,2,f +11341,3666,7,2,f +11341,3666,0,15,f +11341,3666,14,4,f +11341,3673,7,6,f +11341,3676,14,2,f +11341,3684,14,2,f +11341,3700,0,10,f +11341,3700,7,4,f +11341,3700,14,10,f +11341,3701,15,2,f +11341,3701,14,3,f +11341,3701,7,3,f +11341,3701,0,9,f +11341,3702,7,2,f +11341,3702,0,4,f +11341,3702,14,7,f +11341,3703,14,4,f +11341,3703,0,10,f +11341,3705,0,13,f +11341,3706,0,19,f +11341,3707,0,5,f +11341,3708,0,8,f +11341,3709,14,2,f +11341,3710,14,2,f +11341,3710,7,4,f +11341,3710,0,15,f +11341,3713,7,36,f +11341,3737,0,4,f +11341,3738,0,2,f +11341,3743,7,7,f +11341,3749,7,10,f +11341,3794a,14,5,f +11341,3794a,1,6,f +11341,3795,14,2,f +11341,3832,14,3,f +11341,3832,0,3,f +11341,3894,15,1,f +11341,3894,7,4,f +11341,3894,0,13,f +11341,3894,14,9,f +11341,3895,0,5,f +11341,3895,14,2,f +11341,3895,15,1,f +11341,3935,14,2,f +11341,3936,14,2,f +11341,3941,46,2,f +11341,4019,7,3,f +11341,4032a,15,2,f +11341,4070,0,8,f +11341,4070,14,2,f +11341,4081b,0,2,f +11341,4150,15,2,f +11341,4185,7,8,f +11341,4261,7,4,f +11341,4262,0,2,f +11341,4263,7,2,f +11341,4263,0,2,f +11341,4274,7,8,f +11341,4275b,14,2,f +11341,4287,14,2,f +11341,4287,0,2,f +11341,4460a,14,8,f +11341,4477,14,2,f +11341,4477,0,6,f +11341,4504,14,2,f +11341,4519,0,10,f +11341,4531,14,2,f +11341,4697b,7,3,f +11341,4716,0,3,f +11341,5102c207,0,1,f +11341,56823,0,1,f +11341,6536,7,8,f +11341,6538b,7,9,f +11341,6541,14,3,f +11341,6541,0,8,f +11341,6553,7,8,f +11341,6558,0,15,f +11341,6564,14,2,f +11341,6565,14,2,f +11341,6575,7,6,f +11341,6581,0,6,f +11341,6582,14,6,f +11341,6587,8,4,f +11341,6589,7,13,f +11341,6592,7,2,f +11341,6632,7,2,f +11341,70496,0,1,f +11341,75215,7,2,f +11341,75535,14,4,f +11341,8438stk01,9999,1,t +11342,10314,26,2,f +11342,11153,191,2,f +11342,11211,4,4,f +11342,11211,15,4,f +11342,11477,30,4,f +11342,11477,226,4,f +11342,13564,15,2,f +11342,14716,15,2,f +11342,14769,288,4,f +11342,14769,70,2,f +11342,14769,85,2,f +11342,15068,14,2,f +11342,15068,4,4,f +11342,15068,19,2,f +11342,15207,70,2,f +11342,15207,27,4,f +11342,15571,15,2,f +11342,15573,85,4,f +11342,15573,19,4,f +11342,15573,26,4,f +11342,15573,191,4,f +11342,15672,28,2,f +11342,15672,27,2,f +11342,15712,4,2,f +11342,18653,191,4,f +11342,18653,272,4,f +11342,22885,5,4,f +11342,2412b,179,2,f +11342,2431,71,4,f +11342,2432,72,4,f +11342,2445,320,1,f +11342,2449,70,4,f +11342,2449,15,4,f +11342,2456,320,2,f +11342,2456,14,2,f +11342,2456,10,2,f +11342,2877,70,4,f +11342,2926,0,2,f +11342,298c02,71,2,f +11342,3001,85,4,f +11342,3001,1,4,f +11342,3001,322,4,f +11342,3001,27,4,f +11342,3001,30,4,f +11342,3001,320,4,f +11342,3001,70,4,f +11342,3001,2,4,f +11342,3001,71,4,f +11342,3001,19,4,f +11342,3001,4,8,f +11342,3001,25,4,f +11342,3001,0,4,f +11342,3002,14,4,f +11342,3002,1,4,f +11342,3002,2,4,f +11342,3003,27,4,f +11342,3003,19,4,f +11342,3003,4,4,f +11342,3003,14,4,f +11342,3003,25,4,f +11342,3003,29,4,f +11342,3003,1,4,f +11342,3003,15,4,f +11342,3003,71,4,f +11342,3004,30,4,f +11342,3004,72,4,f +11342,3004,226,4,f +11342,3004,14,8,f +11342,3004,27,4,f +11342,3004,84,4,f +11342,3004,322,4,f +11342,3004,29,4,f +11342,3004,288,4,f +11342,3004,19,4,f +11342,3004,272,4,f +11342,3004,0,4,f +11342,30044,70,1,f +11342,3005,5,4,f +11342,3005,4,4,f +11342,3005,0,4,f +11342,3005,158,4,f +11342,3005,85,4,f +11342,3005,2,4,f +11342,3005,1,4,f +11342,3005,15,4,f +11342,3005,73,4,f +11342,3005,52,4,f +11342,3009,322,2,f +11342,3009,25,2,f +11342,3010,27,4,f +11342,3010,2,4,f +11342,3010,30,4,f +11342,3010,5,4,f +11342,30136,84,4,f +11342,30136,31,4,f +11342,30137,29,4,f +11342,30137,84,4,f +11342,30165,85,4,f +11342,3020,272,2,f +11342,3020,26,4,f +11342,3020,191,4,f +11342,3020,0,4,f +11342,3020,73,4,f +11342,3020,19,4,f +11342,3020,30,4,f +11342,3021,25,4,f +11342,3021,15,4,f +11342,3022,4,6,f +11342,3022,2,4,f +11342,3022,72,4,f +11342,3022,322,4,f +11342,3023,272,4,f +11342,3023,25,4,f +11342,3023,71,4,f +11342,3023,27,4,f +11342,3023,47,4,f +11342,3029,15,1,f +11342,3030,72,1,f +11342,3032,19,1,f +11342,3034,1,1,f +11342,3034,14,2,f +11342,3034,19,2,f +11342,3034,70,1,f +11342,3035,2,1,f +11342,3037,30,4,f +11342,3037,2,2,f +11342,3039,15,10,f +11342,3039,4,4,f +11342,3039,28,4,f +11342,3039,14,4,f +11342,3039,72,4,f +11342,3039,26,4,f +11342,3039,47,4,f +11342,3039,322,4,f +11342,3040b,73,4,f +11342,3040b,15,4,f +11342,3040b,2,4,f +11342,3040b,14,4,f +11342,3040b,72,4,f +11342,3040b,29,4,f +11342,3045,15,2,f +11342,3062b,322,4,f +11342,3062b,308,8,f +11342,3062b,34,4,f +11342,3062b,26,4,f +11342,3062b,71,8,f +11342,3062b,36,4,f +11342,3065,46,4,f +11342,3065,41,4,f +11342,3065,36,4,f +11342,3069b,29,4,f +11342,3245b,72,4,f +11342,3245b,71,2,f +11342,3245c,25,4,f +11342,3298,1,4,f +11342,33243,31,2,f +11342,33291,26,3,f +11342,33291,10,3,f +11342,3622,71,4,f +11342,3622,158,4,f +11342,3622,73,4,f +11342,3622,4,4,f +11342,3623,1,4,f +11342,3623,85,4,f +11342,3623,19,4,f +11342,3659,29,4,f +11342,3660,288,4,f +11342,3660,191,4,f +11342,3660,320,8,f +11342,3660,19,2,f +11342,3665,27,4,f +11342,3666,30,2,f +11342,3666,4,4,f +11342,3666,1,2,f +11342,3666,288,2,f +11342,3710,73,2,f +11342,3710,288,4,f +11342,3710,320,4,f +11342,3710,29,4,f +11342,3710,26,2,f +11342,3747a,1,4,f +11342,3795,73,2,f +11342,3795,320,2,f +11342,3832,72,1,f +11342,3941,27,4,f +11342,3941,4,4,f +11342,3941,19,4,f +11342,3957a,0,2,f +11342,4081b,4,4,f +11342,42023,14,2,f +11342,4286,0,4,f +11342,4286,28,4,f +11342,4286,2,4,f +11342,4460b,323,2,f +11342,4460b,72,2,f +11342,4495b,4,1,f +11342,4600,71,2,f +11342,4600,0,2,f +11342,4624,71,4,f +11342,47905,71,2,f +11342,48092,191,2,f +11342,48336,4,2,f +11342,4865b,322,4,f +11342,4871,19,2,f +11342,4871,4,2,f +11342,50950,272,2,f +11342,50950,25,4,f +11342,51739,320,4,f +11342,53451,297,2,f +11342,54200,0,2,f +11342,59900,15,4,f +11342,59900,72,2,f +11342,59900,1,4,f +11342,6005,2,4,f +11342,6014b,71,4,f +11342,60470a,4,2,f +11342,60481,71,4,f +11342,60481,0,4,f +11342,60481,323,4,f +11342,60592,70,2,f +11342,60594,0,1,f +11342,60594,15,2,f +11342,60596,14,1,f +11342,60601,47,2,f +11342,60603,52,1,f +11342,60608,2,4,f +11342,60623,2,1,f +11342,6091,226,4,f +11342,6091,320,4,f +11342,6091,322,4,f +11342,6111,72,2,f +11342,6141,1,3,f +11342,6141,14,3,f +11342,6141,179,3,f +11342,6141,19,3,f +11342,6141,15,6,f +11342,6182,84,4,f +11342,6182,71,2,f +11342,6183,70,2,f +11342,6215,14,4,f +11342,6215,322,3,f +11342,85984,191,4,f +11342,85984,0,2,f +11342,87079,2,3,f +11342,87087,19,2,f +11342,87087,14,4,f +11342,87087,70,4,f +11342,87414,0,4,f +11342,87580,25,4,f +11342,87697,0,4,f +11342,88930,31,2,f +11342,90194,4,2,f +11342,92099,72,1,f +11342,92409,0,4,f +11342,93273,72,4,f +11342,93273,1,4,f +11342,93273,5,4,f +11342,93274,72,1,f +11342,93595,0,4,f +11342,94161,70,1,f +11342,96874,25,1,f +11342,98138,46,2,f +11342,98138pr0008,15,4,f +11342,98138pr0026,15,3,f +11342,98138pr0027,15,3,f +11345,2412b,0,8,f +11345,2445,0,3,f +11345,2450,272,2,f +11345,2456,19,1,f +11345,2540,0,3,f +11345,2654,71,8,f +11345,2780,0,4,f +11345,2780,0,1,t +11345,2854,72,2,f +11345,2921,71,2,f +11345,3001,0,1,f +11345,3002,15,3,f +11345,30162,72,3,f +11345,3020,71,9,f +11345,3020,72,6,f +11345,3022,72,2,f +11345,3023,71,7,f +11345,30236,19,1,f +11345,3034,0,2,f +11345,30365,0,4,f +11345,30375,484,3,f +11345,30376,72,3,f +11345,30377,72,7,f +11345,30377,72,1,t +11345,30378,484,3,f +11345,30382,272,4,f +11345,30565,72,2,f +11345,3062b,71,8,f +11345,3068b,272,5,f +11345,3069b,272,6,f +11345,32000,0,4,f +11345,32062,4,2,f +11345,32523,71,4,f +11345,3460,72,1,f +11345,3622,19,2,f +11345,3665,72,2,f +11345,3666,71,1,f +11345,3710,72,3,f +11345,3747b,71,4,f +11345,3795,0,3,f +11345,3957a,0,4,f +11345,41532,0,4,f +11345,41677,15,2,f +11345,41678,0,2,f +11345,41769,272,2,f +11345,41770,272,1,f +11345,42003,72,2,f +11345,42023,72,4,f +11345,4274,71,1,t +11345,4274,71,8,f +11345,43712,72,2,f +11345,43723,72,1,f +11345,43857,0,2,f +11345,4589,36,8,f +11345,47753,272,4,f +11345,48336,19,4,f +11345,50304,72,3,f +11345,50305,72,3,f +11345,58247,0,3,f +11345,58846,72,2,f +11345,59230,72,3,f +11345,59230,72,1,t +11345,59426,72,4,f +11345,60470a,71,8,f +11345,6141,72,1,t +11345,6141,36,4,f +11345,6141,36,1,t +11345,6141,72,3,f +11345,6179,72,3,f +11345,63965,71,4,f +11345,6632,71,2,f +11345,85544,1,1,f +11346,2431,4,1,f +11346,3010,4,1,f +11346,3623,0,2,f +11346,3666,0,1,f +11346,3666,4,1,f +11346,3795,4,1,f +11346,50950,4,2,f +11347,11477,2,3,f +11347,14137,34,2,f +11347,14417,72,2,f +11347,14418,71,1,f +11347,14704,71,3,f +11347,14769pr1002,15,1,f +11347,15208,0,1,f +11347,15209,15,1,f +11347,2736,71,2,f +11347,2921,0,2,f +11347,3022,0,2,f +11347,3022,27,1,f +11347,3040b,27,2,f +11347,32064a,2,2,f +11347,32474pr1001,15,2,f +11347,44567a,0,2,f +11347,4735,0,2,f +11347,4871,27,3,f +11347,54200,42,6,f +11347,54200,42,1,t +11347,59900,42,2,f +11347,60478,0,1,f +11347,6141,42,1,t +11347,6141,42,7,f +11347,63868,72,1,f +11347,87580,2,2,f +11348,x469bc,7,1,f +11349,820,15,1,f +11349,821,15,1,f +11349,822ac02,4,1,f +11350,16542,7,1,f +11350,2343,8,1,f +11350,2350b,4,1,f +11350,2351,0,1,f +11350,2412b,0,8,f +11350,2412b,15,2,f +11350,2424,15,1,f +11350,2431pr0017,14,4,f +11350,2432,15,1,f +11350,2432,0,2,f +11350,2437,34,1,f +11350,2447,42,1,f +11350,2458,7,2,f +11350,2513p02,15,1,f +11350,2877,7,3,f +11350,2877,0,3,f +11350,30000,1,3,f +11350,3001,7,1,f +11350,3002,15,1,f +11350,3003,7,2,f +11350,3003,14,1,f +11350,30038,0,1,f +11350,3006,0,1,f +11350,3009,15,2,f +11350,3009,4,1,f +11350,3010,15,4,f +11350,3010,14,4,f +11350,3010,4,4,f +11350,3010p70,4,2,f +11350,3010pr0016,0,2,f +11350,3010px1,4,1,f +11350,30157,8,1,f +11350,30182,4,2,f +11350,30182,0,3,f +11350,30184,4,1,f +11350,30194,8,1,f +11350,3020,14,1,f +11350,3021,1,3,f +11350,3023,4,3,f +11350,30235,2,1,f +11350,30237a,4,4,f +11350,30237a,0,2,f +11350,30237a,15,2,f +11350,30261,14,4,f +11350,30261p01,15,2,f +11350,30278c01,0,1,f +11350,30278c01,15,1,f +11350,30285,14,10,f +11350,30285,15,4,f +11350,30300,14,1,f +11350,3032,0,2,f +11350,3032,15,1,f +11350,3034,14,1,f +11350,3035,0,1,f +11350,30365,8,4,f +11350,30386,14,2,f +11350,30386,4,2,f +11350,30387,14,1,f +11350,30387p01,14,1,f +11350,30387pr0002,15,4,f +11350,30388,7,1,f +11350,30389a,7,2,f +11350,30389a,14,2,f +11350,30390b,7,2,f +11350,30391,0,14,f +11350,30394,14,1,f +11350,30395,8,2,f +11350,30396,4,2,f +11350,30397,0,4,f +11350,3039pc2,15,1,f +11350,3040b,42,6,f +11350,3040b,33,10,f +11350,3040b,15,1,f +11350,3062b,42,4,f +11350,3062b,8,10,f +11350,3062b,0,1,f +11350,3068b,4,4,f +11350,3068bp05,15,1,f +11350,3068bp06,15,1,f +11350,3068bp70,15,1,f +11350,3069b,1,1,f +11350,3176,0,1,f +11350,32059,0,1,f +11350,32084,14,1,f +11350,3403c01,15,1,f +11350,3403c01,0,1,f +11350,3455,14,4,f +11350,3626bp04,14,2,f +11350,3626bp05,14,1,f +11350,3626bp69,14,1,f +11350,3626bpb0103,14,2,f +11350,3626bpb0118,14,1,f +11350,3626bpx121,14,1,f +11350,3666,0,2,f +11350,3666,14,2,f +11350,3666,15,2,f +11350,3710,14,2,f +11350,3788,15,1,f +11350,3823,33,1,f +11350,3823,34,1,f +11350,3823,41,3,f +11350,3829c01,4,1,f +11350,3829c01,15,1,f +11350,3829c01,1,4,f +11350,3833,15,2,f +11350,3834,0,1,f +11350,3834,15,1,f +11350,3835,7,2,f +11350,3836,6,1,f +11350,3837,8,1,f +11350,3838,1,1,f +11350,3901,0,1,f +11350,3957a,15,2,f +11350,3958,0,1,f +11350,3962b,8,2,f +11350,4006,0,1,f +11350,4070,15,1,f +11350,4083,7,1,f +11350,4083,0,2,f +11350,4208,0,1,f +11350,4209,4,1,f +11350,4282,0,2,f +11350,43337,7,2,f +11350,4349,1,1,f +11350,4485,15,1,f +11350,4485,0,2,f +11350,4522,0,1,f +11350,4600,7,4,f +11350,4854,15,1,f +11350,4854,4,1,f +11350,4865a,15,5,f +11350,6014a,15,20,f +11350,6015,0,20,f +11350,60169,8,1,f +11350,6020,0,2,f +11350,6141,42,5,f +11350,6141,36,4,f +11350,6141,33,4,f +11350,6212,4,1,f +11350,6583,7,1,f +11350,970c00,0,3,f +11350,970c00,2,1,f +11350,970c00,1,2,f +11350,970x026,7,2,f +11350,973pb0014c01,25,1,f +11350,973pb0338c01,7,1,f +11350,973pb0339c01,7,1,f +11350,973pb0340c01,7,1,f +11350,973px177c01,25,1,f +11350,973px19c01,2,1,f +11350,973px67c01,0,1,f +11350,973px9c01,0,1,f +11351,7049b,15,2,f +11351,737,4,3,f +11351,737c01,4,3,f +11351,wheel1a,4,4,f +11353,3063a,4,2,f +11353,3063a,47,2,f +11353,716,47,1,f +11353,716,15,6,f +11353,716,4,3,f +11354,11477,308,6,f +11354,15573,2,1,f +11354,15573,15,4,f +11354,15712,4,3,f +11354,18649,0,2,f +11354,2420,70,2,f +11354,2540,15,1,f +11354,3004,1,2,f +11354,3004,4,2,f +11354,3023,19,3,f +11354,3023,0,4,f +11354,3070b,70,8,f +11354,3070b,70,1,t +11354,3710,15,2,f +11354,44728,0,1,f +11354,48336,2,1,f +11354,48336,19,2,f +11354,54200,0,1,t +11354,54200,4,1,t +11354,54200,0,8,f +11354,54200,4,2,f +11354,60470a,0,1,f +11354,63868,70,4,f +11354,85975,297,2,f +11354,85984,70,2,f +11354,87087,19,2,f +11354,92280,0,2,f +11354,98138pr0008,15,1,t +11354,98138pr0008,15,2,f +11354,98313,15,2,f +11354,99206,15,2,f +11354,99780,15,4,f +11356,3005,114,1,f +11356,3852b,29,1,f +11356,4532,15,1,f +11356,4533,15,1,f +11356,4589,46,1,f +11356,4589,182,1,f +11356,4740,45,1,f +11356,6141,36,1,t +11356,6141,36,1,f +11357,2343,7,4,f +11357,2348b,41,1,f +11357,2348b,47,1,f +11357,2349a,4,1,f +11357,2349a,15,1,f +11357,2412b,7,2,f +11357,2412b,15,1,f +11357,2412b,0,1,f +11357,2420,15,2,f +11357,2431,15,1,f +11357,2432,7,2,f +11357,2432,0,1,f +11357,2435,2,1,f +11357,2436,15,2,f +11357,2441,0,1,f +11357,2452,15,2,f +11357,2453a,15,4,f +11357,2454a,15,16,f +11357,2456,15,2,f +11357,2465,4,1,f +11357,2493b,1,10,f +11357,2494,41,10,f +11357,298c02,15,2,f +11357,3001,7,4,f +11357,3001,15,2,f +11357,3003,15,2,f +11357,3004,47,1,f +11357,3004,15,2,f +11357,3004,1,2,f +11357,3004,14,1,f +11357,3005,15,4,f +11357,3005,47,5,f +11357,3008,7,1,f +11357,3008,4,26,f +11357,3009,4,20,f +11357,3010,1,2,f +11357,3010,4,2,f +11357,3020,15,2,f +11357,3021,0,1,f +11357,3022,14,1,f +11357,3022,15,1,f +11357,3023,15,8,f +11357,3024,33,6,f +11357,3024,46,6,f +11357,3024,15,2,f +11357,3024,36,4,f +11357,3031,1,1,f +11357,3032,15,5,f +11357,3034,0,1,f +11357,3034,1,1,f +11357,3039,15,4,f +11357,3039p05,7,1,f +11357,3039p11,14,2,f +11357,3039p23,7,1,f +11357,3039p34,7,2,f +11357,3039pc4,0,1,f +11357,3040p32,15,2,f +11357,3062b,0,5,f +11357,3062b,7,30,f +11357,3062b,46,2,f +11357,3062b,36,5,f +11357,3068b,14,1,f +11357,3068bp07,15,1,f +11357,3069b,15,2,f +11357,3069bp02,7,2,f +11357,3069bp08,15,3,f +11357,3070b,15,2,f +11357,3460,7,9,f +11357,3471,2,1,f +11357,3622,4,8,f +11357,3623,4,2,f +11357,3623,15,2,f +11357,3624,15,1,f +11357,3626bpr0001,14,19,f +11357,3641,0,8,f +11357,3666,15,2,f +11357,3710,4,1,f +11357,3710,15,4,f +11357,3741,2,4,f +11357,3742,1,3,f +11357,3742,14,1,t +11357,3742,4,1,t +11357,3742,14,3,f +11357,3742,4,3,f +11357,3742,1,1,t +11357,3755,15,36,f +11357,3788,15,3,f +11357,3821,4,1,f +11357,3821,15,1,f +11357,3822,15,1,f +11357,3822,4,1,f +11357,3823,47,1,f +11357,3823,41,1,f +11357,3829c01,4,1,f +11357,3829c01,15,1,f +11357,3857,2,4,f +11357,3899,47,6,f +11357,3901,0,4,f +11357,3901,6,6,f +11357,3941,0,1,f +11357,3957a,7,9,f +11357,4070,7,6,f +11357,4070,15,2,f +11357,4070,14,2,f +11357,4070,4,4,f +11357,4079,14,8,f +11357,4083,7,14,f +11357,4085c,7,11,f +11357,4211,15,1,f +11357,4213,15,1,f +11357,4213,4,1,f +11357,4215ap01,47,4,f +11357,4276b,15,2,f +11357,4315,15,2,f +11357,4315,4,2,f +11357,4345b,15,1,f +11357,4346,15,1,f +11357,4449,0,1,f +11357,4449,6,1,f +11357,4530,6,3,f +11357,4530,4,2,f +11357,4530,0,3,f +11357,4532,1,18,f +11357,4533,15,18,f +11357,4599a,7,2,f +11357,4600,0,2,f +11357,4624,15,8,f +11357,4714,15,3,f +11357,4715,15,2,f +11357,4719,4,2,f +11357,4740,15,6,f +11357,47899c01,4,1,f +11357,4864a,15,2,f +11357,4864a,4,2,f +11357,6007,8,2,f +11357,6141,33,2,f +11357,69c01,15,3,f +11357,73194c01,4,1,f +11357,92851,47,4,f +11357,970c00,1,4,f +11357,970c00,4,2,f +11357,970c00,2,2,f +11357,970c00,15,11,f +11357,973c01,15,5,f +11357,973c02,4,3,f +11357,973c07,1,1,f +11357,973p0bc01,15,8,f +11357,973p71c01,15,1,f +11357,973px62c01,15,1,f +11357,bin07,4,1,f +11358,2339,70,2,f +11358,2357,70,1,f +11358,2417,288,1,f +11358,2489,308,1,f +11358,30153,34,1,f +11358,3023,484,1,f +11358,3031,72,1,f +11358,30381,288,1,f +11358,3040b,70,1,f +11358,3040b,288,1,f +11358,3062b,70,1,f +11358,33061,34,1,f +11358,3626cpr1003,78,1,f +11358,4032a,484,1,f +11358,4070,70,1,f +11358,4081b,72,1,f +11358,4286,70,1,f +11358,4498,70,1,f +11358,4740pr0001a,4,1,f +11358,59900,70,1,f +11358,59900,19,1,f +11358,6126b,182,1,f +11358,6141,34,1,t +11358,6141,34,1,f +11358,93231,70,1,f +11358,970c00,308,1,f +11358,973pr2217c01,326,1,f +11359,10201,4,1,f +11359,10247,72,4,f +11359,10247,0,4,f +11359,11213,71,1,f +11359,11290,71,1,f +11359,11301,71,1,f +11359,11476,71,2,f +11359,11477,326,4,f +11359,11477,308,2,f +11359,11833,71,2,f +11359,12607ass01pr04,2,1,f +11359,12607ass04pr04,10,1,f +11359,12610pr0001,28,2,f +11359,12825,71,3,f +11359,17272,288,2,f +11359,17274,288,1,f +11359,2357,71,4,f +11359,2412b,179,11,f +11359,2412b,19,4,f +11359,2420,71,8,f +11359,2431,70,4,f +11359,2431,71,1,f +11359,2431,72,2,f +11359,2432,71,1,f +11359,2456,71,1,f +11359,2456,70,1,f +11359,2458,4,6,f +11359,2489,70,1,f +11359,2540,72,4,f +11359,2654,71,10,f +11359,2744,15,2,f +11359,2780,0,7,f +11359,2815,0,2,f +11359,2817,71,2,f +11359,2877,72,4,f +11359,298c02,0,1,f +11359,3003,71,4,f +11359,3003,4,1,f +11359,3003,72,2,f +11359,30031,71,2,f +11359,3004,4,4,f +11359,3004,71,15,f +11359,3007,0,2,f +11359,3008,15,2,f +11359,3008,28,2,f +11359,30088,0,2,f +11359,3009,4,1,f +11359,3009,71,5,f +11359,30136,84,6,f +11359,30151a,47,1,f +11359,30157,71,2,f +11359,30173a,179,2,f +11359,3020,1,1,f +11359,3020,71,14,f +11359,3021,71,5,f +11359,3021,0,6,f +11359,3022,84,2,f +11359,3022,72,3,f +11359,3022,2,1,f +11359,3023,1,3,f +11359,3023,70,18,f +11359,3023,72,17,f +11359,3023,71,2,f +11359,3023,4,11,f +11359,3023,28,4,f +11359,3023,14,5,f +11359,3024,72,2,f +11359,3030,70,1,f +11359,3034,71,4,f +11359,3034,72,2,f +11359,3034,326,1,f +11359,3035,0,2,f +11359,3036,0,2,f +11359,30365,71,2,f +11359,30374,71,1,f +11359,30374,52,1,f +11359,3039,326,4,f +11359,3039,72,2,f +11359,3040b,326,4,f +11359,3040b,72,2,f +11359,30414,19,2,f +11359,30503,71,2,f +11359,30663,71,1,f +11359,3068b,15,1,f +11359,3068b,14,1,f +11359,3069b,84,2,f +11359,3069b,71,1,f +11359,3069b,36,2,f +11359,3069b,2,3,f +11359,3070b,72,2,f +11359,3070b,36,2,f +11359,3176,71,1,f +11359,32054,4,2,f +11359,32062,4,1,f +11359,32064b,14,2,f +11359,32123b,14,2,f +11359,32316,72,2,f +11359,3245c,4,2,f +11359,32523,71,2,f +11359,32529,0,2,f +11359,32530,72,1,f +11359,32555,0,2,f +11359,32556,19,2,f +11359,3460,70,3,f +11359,3460,71,2,f +11359,3460,308,2,f +11359,3626cpr1417,71,2,f +11359,3659,0,2,f +11359,3659,4,2,f +11359,3666,28,2,f +11359,3673,71,2,f +11359,3675,70,2,f +11359,3700,72,2,f +11359,3701,71,2,f +11359,3701,0,7,f +11359,3705,0,1,f +11359,3710,72,8,f +11359,3710,70,10,f +11359,3713,71,4,f +11359,3747b,71,1,f +11359,3749,19,5,f +11359,3794b,0,1,f +11359,3794b,4,1,f +11359,3795,71,1,f +11359,3795,14,2,f +11359,3894,71,4,f +11359,3942c,72,1,f +11359,3960,35,2,f +11359,4032a,72,1,f +11359,4032a,14,2,f +11359,41539,72,2,f +11359,4162,72,1,f +11359,4162,71,4,f +11359,41769,0,2,f +11359,41770,0,2,f +11359,4185,71,2,f +11359,41854,326,1,f +11359,42446,72,2,f +11359,42610,71,4,f +11359,4286,71,2,f +11359,43093,1,1,f +11359,43710,326,2,f +11359,43711,326,2,f +11359,43713,72,1,f +11359,44375a,71,1,f +11359,44567a,72,2,f +11359,44728,19,3,f +11359,4519,71,4,f +11359,45677,326,8,f +11359,4589,52,4,f +11359,4624,71,2,f +11359,4740,45,1,f +11359,47457,70,3,f +11359,47457,326,4,f +11359,47457,72,2,f +11359,48336,71,6,f +11359,4865b,2,4,f +11359,4868b,72,2,f +11359,4869,71,2,f +11359,50304,0,2,f +11359,50305,0,2,f +11359,53451,179,2,f +11359,54200,72,2,f +11359,54200,85,2,f +11359,57028c01,71,1,f +11359,57796,72,1,f +11359,59443,4,3,f +11359,59443,70,1,f +11359,59443,72,1,f +11359,59900,72,1,f +11359,6005,71,8,f +11359,6041,0,1,f +11359,60470a,0,2,f +11359,60475a,72,4,f +11359,60479,70,4,f +11359,60483,71,2,f +11359,60581,47,2,f +11359,60897,0,8,f +11359,6091,71,4,f +11359,6106,71,2,f +11359,6108,71,2,f +11359,61184,71,2,f +11359,6141,1,2,f +11359,6141,70,20,f +11359,6141,179,10,f +11359,6141,1000,1,f +11359,6141,42,2,f +11359,6141,46,6,f +11359,61483,71,1,f +11359,6232,19,1,f +11359,62462,179,1,f +11359,63868,0,2,f +11359,63965,70,1,f +11359,6541,70,2,f +11359,6558,1,6,f +11359,85080,28,8,f +11359,85984,71,8,f +11359,87079,71,4,f +11359,87079,70,4,f +11359,87079,14,1,f +11359,87087,71,6,f +11359,87087,4,4,f +11359,87087,0,4,f +11359,87580,85,1,f +11359,87620,28,4,f +11359,92099,72,1,f +11359,92107,72,1,f +11359,92280,4,4,f +11359,92593,326,5,f +11359,92593,71,2,f +11359,92950,71,2,f +11359,93095,14,1,f +11359,93273,71,1,f +11359,93273,326,9,f +11359,93273,70,1,f +11359,93273,0,6,f +11359,95188,72,2,f +11359,96874,25,1,t +11359,970c00pr0472,10,1,f +11359,970c00pr0657,72,2,f +11359,970c00pr0677,288,1,f +11359,970c00pr0678,2,1,f +11359,973pr2658c01,71,2,f +11359,973pr2695c01,10,1,f +11359,973pr2696c01,2,1,f +11359,98138,45,2,f +11359,99207,71,1,f +11359,99780,0,2,f +11359,99781,71,2,f +11360,64251,1,2,f +11360,64262,42,1,f +11360,87794,0,1,f +11360,87796,135,4,f +11360,87797,1,2,f +11360,87798,1,2,f +11360,87799,46,1,f +11360,87807,1,1,f +11360,87812pat0002,179,2,f +11360,87814,1,1,f +11360,93571,0,2,f +11361,3003,4,2,f +11361,3004,0,1,f +11361,3004,4,2,f +11361,3005,4,2,f +11361,3005,1,2,f +11361,3008,1,6,f +11361,3009,0,3,f +11361,3009,1,1,f +11361,3010,4,2,f +11361,3010,0,1,f +11361,3010,1,8,f +11361,3020,7,9,f +11361,3020,0,2,f +11361,3021,4,2,f +11361,3021,1,3,f +11361,3021,7,2,f +11361,3022,7,15,f +11361,3022,4,3,f +11361,3022,0,1,f +11361,3023,7,8,f +11361,3023,0,3,f +11361,3023,1,6,f +11361,3024,4,4,f +11361,3024,36,2,f +11361,3031,7,1,f +11361,3031,4,1,f +11361,3032,7,1,f +11361,3032,0,1,f +11361,3032,4,1,f +11361,3035,4,1,f +11361,3035,0,1,f +11361,3036,1,3,f +11361,3037,1,4,f +11361,3039,7,1,f +11361,3040b,0,2,f +11361,3040b,1,4,f +11361,3040b,4,6,f +11361,3065,46,2,f +11361,3065,36,1,f +11361,3149c01,7,1,f +11361,3297,1,3,f +11361,3298,1,2,f +11361,3460,4,3,f +11361,3460,1,2,f +11361,3622,1,4,f +11361,3623,1,1,f +11361,3623,0,2,f +11361,3623,4,4,f +11361,3633,1,1,f +11361,3647,7,1,f +11361,3648a,7,4,f +11361,3649,7,1,f +11361,3651,7,16,f +11361,3652,7,1,f +11361,3660,0,2,f +11361,3660,1,8,f +11361,3660,7,3,f +11361,3665,4,8,f +11361,3666,1,4,f +11361,3666,0,1,f +11361,3666,4,6,f +11361,3666,7,11,f +11361,3673,7,20,f +11361,3700,1,8,f +11361,3701,1,3,f +11361,3702,1,4,f +11361,3703,1,4,f +11361,3704,0,4,f +11361,3705,0,5,f +11361,3706,0,4,f +11361,3707,0,6,f +11361,3709,1,5,f +11361,3710,1,2,f +11361,3710,0,29,f +11361,3710,7,9,f +11361,3711a,0,32,f +11361,3713,7,20,f +11361,3738,1,2,f +11361,3739,7,3,f +11361,3740,0,3,f +11361,3749,7,2,f +11361,3795,1,2,f +11361,3795,7,8,f +11361,3795,0,3,f +11361,3795,4,1,f +11361,3832,1,4,f +11361,3894,1,2,f +11361,3895,1,4,f +11361,3900,7,2,f +11361,3937,7,2,f +11361,3938,7,2,f +11361,4019,7,4,f +11361,71509,0,1,f +11363,2780,0,1,t +11363,2780,0,1,f +11363,32013,71,1,f +11363,32174,0,5,f +11363,32199,72,1,f +11363,32449,0,2,f +11363,32476,288,2,f +11363,32523,0,1,f +11363,41670,288,2,f +11363,42003,71,1,f +11363,42074,135,2,f +11363,43093,1,3,f +11363,4519,71,1,f +11363,47298,135,2,f +11363,47312,72,1,f +11363,50898,288,1,f +11363,50926,135,1,f +11363,53384,288,1,f +11363,54271,148,1,f +11363,54821,182,2,f +11363,57563,135,2,f +11363,59426,72,1,f +11363,6558,0,2,f +11363,6587,72,1,f +11364,3001,4,5,f +11364,3001,1,1,f +11364,3001,15,2,f +11364,3002,4,2,f +11364,3002,15,2,f +11364,3003,4,2,f +11364,3003,1,2,f +11364,3003,15,5,f +11364,3004,1,6,f +11364,3004,4,5,f +11364,3004,15,10,f +11364,3004p06,4,1,f +11364,3005,4,4,f +11364,3005,15,14,f +11364,3005,47,4,f +11364,3005,1,6,f +11364,3006,15,1,f +11364,3008,1,2,f +11364,3008,15,2,f +11364,3009,4,2,f +11364,3009,1,6,f +11364,3009,15,4,f +11364,3010,1,4,f +11364,3010,15,6,f +11364,3010,4,2,f +11364,3020,1,4,f +11364,3020,4,2,f +11364,3022,1,2,f +11364,3022,4,2,f +11364,3023,15,4,f +11364,3023,1,2,f +11364,3023,4,4,f +11364,3024,36,2,f +11364,3024,4,2,f +11364,3024,34,1,f +11364,3031,15,1,f +11364,3032,4,1,f +11364,3033,4,2,f +11364,3034,4,2,f +11364,3035,1,1,f +11364,3037,4,4,f +11364,3038,4,4,f +11364,3039,4,4,f +11364,3040b,15,4,f +11364,3040b,4,4,f +11364,3041,4,1,f +11364,3043,4,2,f +11364,3062b,7,6,f +11364,3127,4,1,f +11364,3149c01,1,1,f +11364,3176,0,2,f +11364,3188,4,1,f +11364,3189,4,1,f +11364,3460,7,8,f +11364,3471,2,1,f +11364,3482,7,4,f +11364,3483,0,4,f +11364,3622,15,8,f +11364,3622,1,6,f +11364,3622,4,4,f +11364,3623,15,2,f +11364,3623,7,2,f +11364,3623,4,2,f +11364,3624,0,1,f +11364,3626apr0001,14,1,f +11364,3641,0,4,f +11364,3660,15,4,f +11364,3660,1,4,f +11364,3665,1,4,f +11364,3665,15,2,f +11364,3666,1,2,f +11364,3666,15,2,f +11364,3679,7,1,f +11364,3680,0,1,f +11364,3701,1,4,f +11364,3706,0,2,f +11364,3707,0,2,f +11364,3710,15,4,f +11364,3710,4,2,f +11364,3741,2,2,f +11364,3742,14,3,f +11364,3742,4,3,f +11364,3742,14,1,t +11364,3742,4,1,t +11364,3749,7,2,f +11364,3787,4,1,f +11364,3788,4,1,f +11364,3794a,7,1,f +11364,3795,1,2,f +11364,3795,4,2,f +11364,3821,4,1,f +11364,3822,4,1,f +11364,3823,47,1,f +11364,3829c01,14,1,f +11364,3832,1,1,f +11364,3853,1,4,f +11364,3854,4,4,f +11364,3855,47,2,f +11364,3856,1,4,f +11364,3857,7,1,f +11364,3861b,4,1,f +11364,3937,4,1,f +11364,3938,7,1,f +11364,3941,14,4,f +11364,3958,1,1,f +11364,4070,15,2,f +11364,4070,4,4,f +11364,4079,7,1,f +11364,4081a,7,1,f +11364,4083,7,1,f +11364,4175,0,1,f +11364,4176,47,1,f +11364,4211,4,1,f +11364,4213,0,1,f +11364,4214,0,1,f +11364,4275a,7,2,f +11364,4318,15,1,f +11364,4445,4,6,f +11364,4495b,4,1,f +11364,4510,4,4,f +11364,4511,15,2,f +11364,4531,7,2,f +11364,4600,7,2,f +11364,4624,7,4,f +11364,4626,14,1,f +11364,6141,46,4,f +11364,970c00,1,1,f +11364,973c18,0,1,f +11364,rb00164,0,1,f +11365,32062,0,1,f +11365,32174,72,1,f +11365,32476,0,2,f +11365,32506,0,2,f +11365,32551,135,1,f +11365,43093,1,2,f +11365,4519,71,1,f +11365,47296,72,3,f +11365,47313,57,1,f +11365,47330,0,1,f +11365,55095pr0001,15,1,f +11367,11153,322,6,f +11367,11211,14,4,f +11367,11477,322,1,f +11367,11477,15,1,f +11367,14417,72,2,f +11367,14704,71,4,f +11367,14769,15,4,f +11367,15068,70,4,f +11367,15068,322,2,f +11367,22890,72,2,f +11367,2357,70,2,f +11367,24947,14,1,f +11367,3001,70,1,f +11367,3005,322,1,f +11367,3005,15,3,f +11367,3020,70,1,f +11367,3022,322,4,f +11367,3022,15,6,f +11367,3022,70,1,f +11367,3023,15,7,f +11367,3023,322,6,f +11367,3023,0,4,f +11367,3023,70,8,f +11367,3024,322,1,f +11367,3024,15,1,f +11367,3031,19,1,f +11367,30367b,14,1,f +11367,30414,71,3,f +11367,3062b,15,2,f +11367,33291,191,1,f +11367,3710,322,3,f +11367,3710,15,4,f +11367,3710,70,4,f +11367,3795,72,1,f +11367,3795,70,3,f +11367,4589,46,1,f +11367,50950,322,1,f +11367,50950,15,1,f +11367,54200,70,4,f +11367,54200,4,2,f +11367,61678,15,6,f +11367,6177,0,1,f +11367,63868,15,4,f +11367,63965,15,2,f +11367,87079,15,1,f +11367,87087,70,8,f +11367,98138,29,2,f +11368,13845pb01,0,1,f +11368,3626bpb0910,14,1,f +11368,88646,0,1,f +11368,970c00pb239,1,1,f +11368,973pb1397c01,4,1,f +11369,2356,1,4,f +11369,2456,15,17,f +11369,2456,14,9,f +11369,2730,14,2,f +11369,2817,0,9,f +11369,2825,4,6,f +11369,2983,7,5,f +11369,3001,14,15,f +11369,3001,15,49,f +11369,3001,0,5,f +11369,3006,14,33,f +11369,3006,15,26,f +11369,3007,15,10,f +11369,3007,14,32,f +11369,3022,15,15,f +11369,3023,14,4,f +11369,3023,15,2,f +11369,3023,4,6,f +11369,3027,15,14,f +11369,3027,0,6,f +11369,30287p01,1,5,f +11369,3031,0,1,f +11369,3031,4,6,f +11369,3036,4,3,f +11369,3036,0,1,f +11369,32001,4,12,f +11369,32001,1,1,f +11369,32013,0,14,f +11369,32015,0,1,f +11369,32016,0,2,f +11369,32017,7,8,f +11369,32034,0,6,f +11369,32039,0,21,f +11369,32056,4,6,f +11369,32062,0,13,f +11369,32064b,0,6,f +11369,32123b,7,45,f +11369,32184,4,3,f +11369,3297,15,6,f +11369,3298,15,5,f +11369,3460,4,6,f +11369,3626bpx88,14,5,f +11369,3666,0,1,f +11369,3673,7,7,f +11369,3701,0,4,f +11369,3701,14,4,f +11369,3702,4,12,f +11369,3702,0,3,f +11369,3703,14,4,f +11369,3705,0,28,f +11369,3706,0,30,f +11369,3707,0,8,f +11369,3708,0,10,f +11369,3709,14,3,f +11369,3709,15,2,f +11369,3710,14,2,f +11369,3710,0,1,f +11369,3713,7,14,f +11369,3713,1,300,f +11369,3737,0,4,f +11369,3738,15,8,f +11369,3738,14,10,f +11369,3738,0,4,f +11369,3749,7,15,f +11369,3894,0,1,f +11369,3941,0,9,f +11369,3941,15,252,f +11369,3941,47,5,f +11369,3960,15,2,f +11369,4032a,1,3,f +11369,4162,14,2,f +11369,4185,6,134,f +11369,4185,14,6,f +11369,4459,0,9,f +11369,4519,0,5,f +11369,6538a,0,7,f +11369,6575,7,2,f +11369,6632,7,6,f +11369,78c09,0,2,f +11369,85543,15,12,f +11369,970c00,15,5,f +11369,973px140c01,1,5,f +11369,x206c01,15,2,f +11370,2793c01,14,1,f +11370,2797c02,14,1,f +11370,4697a,7,4,f +11370,5102,7,1,f +11370,5102,0,2,f +11370,75215,7,1,f +11371,11476,71,2,f +11371,15068,71,2,f +11371,19220,0,1,f +11371,2412b,71,2,f +11371,2421,0,2,f +11371,2446,15,1,f +11371,2447,40,1,f +11371,2447,40,1,t +11371,3010,15,1,f +11371,3022,71,1,f +11371,3023,14,2,f +11371,3032,71,1,f +11371,3034,0,1,f +11371,30377,0,2,f +11371,30377,0,1,t +11371,30602,15,1,f +11371,3626cpr1663,14,1,f +11371,3660,0,2,f +11371,3666,15,1,f +11371,3829c01,15,1,f +11371,44661,15,1,f +11371,4488,71,2,f +11371,50304,15,1,f +11371,50305,15,1,f +11371,52501,14,2,f +11371,54200,33,2,f +11371,54200,33,1,t +11371,60477,0,2,f +11371,60478,0,2,f +11371,61252,15,1,f +11371,61482,71,1,t +11371,61482,71,1,f +11371,6636,14,2,f +11371,92474,41,1,f +11371,970c00pr0293,272,1,f +11371,973pr1947bc01,272,1,f +11371,98138,46,1,f +11371,98138,46,1,t +11374,2357,14,4,f +11374,2423,2,2,f +11374,2458,14,1,f +11374,2458,71,2,f +11374,2817,0,1,f +11374,3001,14,2,f +11374,3001,15,2,f +11374,3001,70,2,f +11374,3002,14,5,f +11374,3003,14,1,f +11374,3004,0,1,f +11374,3004,27,1,f +11374,3004,70,2,f +11374,3004,14,11,f +11374,3005,14,6,f +11374,3005pe1,15,2,f +11374,3006,15,2,f +11374,3008,14,1,f +11374,3010,14,3,f +11374,3010,72,4,f +11374,3020,1,1,f +11374,3022,0,2,f +11374,3022,2,1,f +11374,3023,0,1,f +11374,3034,72,1,f +11374,3035,71,2,f +11374,3039,0,2,f +11374,3039,2,4,f +11374,3062b,4,8,f +11374,3062b,1,4,f +11374,3298,0,1,f +11374,3455,15,2,f +11374,3622,14,2,f +11374,3626bpr0270,14,1,f +11374,3660,72,4,f +11374,3660,70,4,f +11374,3660,2,2,f +11374,3676,72,2,f +11374,3795,70,2,f +11374,3844,80,1,f +11374,3847,135,1,f +11374,3957a,71,2,f +11374,3958,70,1,f +11374,4495b,4,2,f +11374,47905,72,2,f +11374,4865a,4,1,f +11374,48723,70,1,f +11374,54200,70,2,f +11374,54200,70,1,t +11374,60169,72,1,f +11374,60478,72,2,f +11374,6141,27,1,t +11374,6141,27,8,f +11374,6182,15,4,f +11374,6231,4,2,f +11374,63868,0,2,f +11374,6636,4,2,f +11374,970c00,72,1,f +11374,973pr1457c01,72,1,f +11376,2530,72,1,f +11376,27991,14,1,f +11376,3068bpr0302,19,1,f +11376,3626cpr2029,14,1,f +11376,88646,0,1,f +11376,970c00pr1116,288,1,f +11376,973pr3540c01,272,1,f +11379,3008p03,15,1,f +11379,3009p04,15,1,f +11379,3009pb002,15,1,f +11379,3009pt1,15,1,f +11379,3144,15,1,f +11379,777p03,15,1,f +11379,gtbush3,2,2,f +11379,gtfruit,2,2,f +11379,gtpine,2,2,f +11381,3004,0,1,f +11381,30173a,7,1,f +11381,30174,8,1,f +11381,30175,8,1,f +11381,3023,0,1,f +11381,3626bpn1,14,1,f +11381,3849,6,1,f +11381,4491b,1,1,f +11381,4493c01pb02,0,1,f +11381,529,334,1,t +11381,529,334,1,f +11381,970c11pb02b,0,1,f +11381,973pn1c01,1,1,f +11381,x55,47,1,f +11385,2847c01,7,1,f +11385,3482,4,8,f +11385,3483,0,4,f +11385,3634,0,4,f +11385,3701,0,4,f +11385,3706,0,4,f +11385,5011,0,1,f +11385,5306bc162,0,1,f +11386,3001,4,4,f +11386,3002,4,2,f +11386,3002,15,1,f +11386,3003,4,5,f +11386,3003,14,4,f +11386,3003pe2,4,2,f +11386,3007,4,1,f +11386,4744pr0001,0,1,f +11386,4744px4,1,1,f +11386,6215,1,2,f +11386,6215,14,2,f +11386,6215,2,2,f +11387,22392,321,2,f +11387,22402,179,1,f +11387,22402,321,2,f +11387,22408,179,1,f +11387,23306,272,2,f +11387,23860,179,1,f +11387,24078,71,1,f +11387,30273,1,2,f +11387,3070bpr0159,1,1,f +11387,3626cpr1785,179,1,f +11387,3626cpr1817,179,1,f +11387,48729b,71,2,f +11387,53454,148,1,f +11387,63965,71,1,f +11387,89520,1,2,f +11387,93062c02,179,2,f +11387,95199,72,1,f +11387,970c00pr0968,71,1,f +11387,98370,179,1,f +11391,2456,1,2,f +11391,2456,4,2,f +11391,2456,7,2,f +11391,2456,14,2,f +11391,2456,15,2,f +11391,3001,14,14,f +11391,3001,1,14,f +11391,3001,2,4,f +11391,3001,25,4,f +11391,3001,7,4,f +11391,3001,15,14,f +11391,3001,4,14,f +11391,3001,0,8,f +11391,3002,7,2,f +11391,3002,1,8,f +11391,3002,4,8,f +11391,3002,0,6,f +11391,3002,15,10,f +11391,3002,2,2,f +11391,3002,14,8,f +11391,3002,25,2,f +11391,3003,33,12,f +11391,3003,0,18,f +11391,3003,1,30,f +11391,3003,4,30,f +11391,3003,25,6,f +11391,3003,2,18,f +11391,3003,15,30,f +11391,3003,7,6,f +11391,3003,14,27,f +11391,3003,36,12,f +11391,3004,4,34,f +11391,3004,0,28,f +11391,3004,25,8,f +11391,3004,2,22,f +11391,3004,15,40,f +11391,3004,1,36,f +11391,3004,8,10,f +11391,3004,14,28,f +11391,3004,7,8,f +11391,3005,0,26,f +11391,3005,15,28,f +11391,3005,1,30,f +11391,3005,4,30,f +11391,3005,33,4,f +11391,3005,2,14,f +11391,3005pe1,14,4,f +11391,3005pe2,8,2,f +11391,3005pe3,8,2,f +11391,3005px2,14,2,f +11391,3007,1,2,f +11391,3007,4,2,f +11391,3007,14,2,f +11391,3007,15,2,f +11391,3008,7,2,f +11391,3009,14,2,f +11391,3009,1,4,f +11391,3009,4,4,f +11391,3009,15,4,f +11391,3010,15,6,f +11391,3010,4,6,f +11391,3010,14,6,f +11391,3010,0,4,f +11391,3010,1,6,f +11391,3010,25,2,f +11391,3010,2,4,f +11391,3010,8,2,f +11391,3010p01,14,2,f +11391,3020,1,2,f +11391,3020,15,4,f +11391,3020,25,2,f +11391,3020,4,2,f +11391,3020,7,2,f +11391,3020,0,2,f +11391,3020,2,2,f +11391,3020,14,2,f +11391,3021,15,4,f +11391,3021,25,2,f +11391,3021,2,2,f +11391,3021,8,2,f +11391,3021,4,2,f +11391,3021,14,2,f +11391,3021,1,4,f +11391,3022,15,6,f +11391,3022,0,2,f +11391,3022,14,4,f +11391,3022,8,2,f +11391,3022,1,6,f +11391,3022,4,4,f +11391,3022,2,2,f +11391,3034,4,2,f +11391,3034,14,2,f +11391,3034,1,2,f +11391,3034,15,2,f +11391,3037,4,8,f +11391,3039,33,4,f +11391,3039,1,4,f +11391,3039,4,6,f +11391,3039,36,2,f +11391,3039,15,4,f +11391,3039,8,2,f +11391,3039,47,2,f +11391,3040b,8,2,f +11391,3040b,4,4,f +11391,3040b,2,2,f +11391,3040b,15,4,f +11391,3040b,14,2,f +11391,3040b,1,4,f +11391,3040b,25,4,f +11391,3040b,7,2,f +11391,3041,4,2,f +11391,3043,4,2,f +11391,3065,36,14,f +11391,3065,47,8,f +11391,3065,33,14,f +11391,3066,36,2,f +11391,3298,1,4,f +11391,3298,15,4,f +11391,3298,4,4,f +11391,3622,8,2,f +11391,3622,2,2,f +11391,3660,4,2,f +11391,3660,15,2,f +11391,3660,1,2,f +11391,3665,4,4,f +11391,3665,8,2,f +11391,3665,14,2,f +11391,3665,2,2,f +11391,3665,25,4,f +11391,3665,1,4,f +11391,3665,7,2,f +11391,3665,15,4,f +11391,3710,4,2,f +11391,3710,15,2,f +11391,3710,1,2,f +11391,3747b,1,2,f +11391,3795,14,2,f +11391,3795,15,2,f +11391,3795,4,2,f +11391,3795,1,2,f +11391,3957a,1,2,f +11391,4286,15,4,f +11391,4286,1,4,f +11391,4286,4,4,f +11391,4286,8,2,f +11391,4287,4,4,f +11391,4287,15,4,f +11391,4287,1,4,f +11391,4287,8,2,f +11391,4495b,14,1,f +11392,2797c02,41,1,f +11392,4697b,71,3,t +11392,4697b,71,5,f +11392,47223a,72,3,f +11392,47225,41,2,f +11392,5102c06,1,4,f +11392,5102c12,1,3,f +11392,5102c12,0,2,f +11392,5102c12,71,2,f +11392,5102c24,71,1,f +11392,5102c24,0,1,f +11392,5102c24,1,1,f +11392,5102c24,0,1,t +11392,5102c24,71,1,t +11392,5102c24,1,1,t +11392,5102c40,0,1,f +11392,5102c40,71,1,f +11392,64065,47,1,f +11392,74981,41,1,f +11392,74982,41,1,f +11392,75974,15,1,f +11393,2716,8,1,f +11393,2780,0,4,f +11393,2780,0,1,t +11393,32039,0,2,f +11393,32123b,7,1,t +11393,32123b,7,2,f +11393,32165,19,1,f +11393,32167,8,2,f +11393,32168,8,1,f +11393,32170,19,1,f +11393,32171pb038,2,1,f +11393,32171pb043,19,1,f +11393,32172,19,1,f +11393,32173,8,4,f +11393,32174,19,4,f +11393,32176,19,1,f +11393,32194,8,1,f +11393,3647,19,1,t +11393,3647,19,1,f +11393,3705,0,1,f +11393,3706,0,1,f +11393,3841,8,2,f +11393,6553,19,2,f +11394,10314,0,1,f +11394,11055,0,4,f +11394,11090,0,2,f +11394,11214,72,3,f +11394,11477,4,8,f +11394,11477,70,2,f +11394,12887pr0002,15,1,f +11394,14395,70,4,f +11394,14518,72,1,f +11394,14716,71,3,f +11394,14716,4,2,f +11394,14769,70,1,f +11394,15068,0,2,f +11394,15332,0,2,f +11394,15391,71,1,f +11394,15392,72,1,f +11394,15392,72,1,t +11394,15534,72,1,f +11394,15535,72,1,f +11394,15573,0,6,f +11394,15672,70,4,f +11394,18646,28,4,f +11394,18927,15,1,f +11394,18927,4,1,f +11394,19159,0,8,f +11394,19551pr0001,72,1,f +11394,19934,15,1,f +11394,19939,15,2,f +11394,19941,15,2,f +11394,2357,70,4,f +11394,2357,4,2,f +11394,2412b,71,3,f +11394,2412b,70,4,f +11394,2419,28,1,f +11394,2431,0,6,f +11394,2431,71,2,f +11394,2431,4,5,f +11394,2432,71,1,f +11394,2449,4,10,f +11394,2450,28,4,f +11394,2456,70,2,f +11394,2524,70,1,f +11394,2525pr0001,15,1,f +11394,2526,297,2,t +11394,2526,15,2,f +11394,2526,15,1,t +11394,2526,297,2,f +11394,2527,4,3,f +11394,2528,0,1,f +11394,2528pr0007,0,1,f +11394,2530,72,3,f +11394,2530,72,3,t +11394,2540,0,4,f +11394,2544,70,1,f +11394,2545pr0001,0,1,f +11394,2551,272,1,f +11394,2561,70,1,f +11394,2562,70,2,t +11394,2562,70,2,f +11394,2566,0,3,f +11394,2654,0,9,f +11394,2780,0,1,t +11394,2780,0,6,f +11394,3001,0,2,f +11394,3001,4,4,f +11394,3003,70,8,f +11394,3003,14,3,f +11394,3004,1,6,f +11394,3004,72,5,f +11394,30046,297,1,f +11394,3005,70,4,f +11394,3005,0,4,f +11394,30056,0,4,f +11394,3009,0,3,f +11394,30099,4,2,f +11394,30136,70,2,f +11394,30136,28,5,f +11394,30137,70,3,f +11394,30150,70,1,f +11394,30153,33,1,f +11394,30153,36,1,f +11394,30153,34,1,f +11394,30154,72,1,f +11394,3020,71,1,f +11394,3020,0,3,f +11394,3020,28,7,f +11394,3021,28,5,f +11394,3022,70,4,f +11394,3023,4,2,f +11394,3023,28,6,f +11394,3023,71,5,f +11394,30237a,70,2,f +11394,3024,70,1,f +11394,3024,70,1,t +11394,3031,70,2,f +11394,3033,28,3,f +11394,3035,28,3,f +11394,3037,72,1,f +11394,30374,70,1,f +11394,3038,4,2,f +11394,3039,0,5,f +11394,3039,70,2,f +11394,3040b,4,2,f +11394,3040b,70,4,f +11394,30505,70,2,f +11394,30553,72,1,f +11394,3062b,297,11,f +11394,3062b,0,6,f +11394,3062b,46,5,f +11394,3068b,72,4,f +11394,3068bpr0240,19,1,f +11394,3069b,72,6,f +11394,3069b,28,4,f +11394,32013,72,14,f +11394,32014,71,4,f +11394,32016,71,1,f +11394,32028,4,4,f +11394,32034,0,10,f +11394,32054,4,1,f +11394,32062,4,6,f +11394,32064a,72,1,f +11394,3245b,4,3,f +11394,32530,72,1,f +11394,32531,0,2,f +11394,3298,70,1,f +11394,3460,0,4,f +11394,3622,70,20,f +11394,3622,4,2,f +11394,3626bpr0677,14,1,f +11394,3626cpr0895,15,1,f +11394,3626cpr0920,14,1,f +11394,3626cpr0933,14,1,f +11394,3626cpr1557,14,1,f +11394,3626cpr1558,14,1,f +11394,3626cpr1561,14,1,f +11394,3626cpr1760,14,1,f +11394,3659,4,2,f +11394,3660,70,5,f +11394,3660,71,2,f +11394,3665,0,2,f +11394,3665,4,10,f +11394,3666,28,8,f +11394,3678b,72,8,f +11394,3701,70,4,f +11394,3705,0,8,f +11394,3709,71,1,f +11394,3710,15,1,f +11394,3710,70,9,f +11394,3710,28,2,f +11394,3737,0,4,f +11394,3795,28,3,f +11394,3832,70,1,f +11394,3937,72,2,f +11394,3938,0,2,f +11394,3957b,71,2,f +11394,40234,71,1,f +11394,4032a,70,1,f +11394,4070,0,4,f +11394,41532,0,1,f +11394,41767,4,1,f +11394,41768,4,1,f +11394,41879a,4,1,f +11394,42610,71,2,f +11394,4274,71,2,f +11394,4274,71,1,t +11394,4286,0,8,f +11394,43093,1,9,f +11394,43857,4,2,f +11394,44302a,72,1,f +11394,44567a,0,1,f +11394,4495b,4,1,f +11394,4528,0,1,f +11394,4590,72,1,f +11394,4738a,70,1,f +11394,4739a,70,1,f +11394,4740,0,3,f +11394,47457,297,1,f +11394,4790,70,1,f +11394,47996,0,4,f +11394,48002,70,3,f +11394,48005,70,2,f +11394,4865a,71,1,f +11394,48729b,72,2,f +11394,48729b,72,1,t +11394,50304,28,1,f +11394,50305,28,1,f +11394,50950,4,2,f +11394,54200,70,4,f +11394,54200,4,1,t +11394,54200,4,2,f +11394,54200,297,2,t +11394,54200,297,6,f +11394,54200,70,1,t +11394,54383,28,1,f +11394,54384,28,1,f +11394,59900,297,1,f +11394,59900,70,10,f +11394,60115,15,1,f +11394,60169,72,2,f +11394,60470a,71,1,f +11394,60475b,71,2,f +11394,60478,0,2,f +11394,60479,70,2,f +11394,60581,4,1,f +11394,60583b,4,1,f +11394,60593,0,2,f +11394,60594,0,4,f +11394,60602,47,2,f +11394,60607,297,8,f +11394,60897,0,2,f +11394,6091,0,6,f +11394,6106,28,2,f +11394,6141,297,33,f +11394,6141,297,5,t +11394,6141,0,1,t +11394,6141,0,4,f +11394,61485,0,1,f +11394,62113,0,1,f +11394,6266,15,2,f +11394,6266,15,1,t +11394,62810,70,1,f +11394,63868,72,2,f +11394,63965,0,1,f +11394,64390,70,1,f +11394,64644,297,1,f +11394,64645,70,1,f +11394,64647,4,1,t +11394,64647,4,1,f +11394,64651,70,1,f +11394,64951,70,1,f +11394,6558,1,1,f +11394,6628,0,1,t +11394,6628,0,16,f +11394,6636,0,2,f +11394,84943,148,3,f +11394,85984,28,12,f +11394,85984,0,1,f +11394,87079,0,3,f +11394,87079,71,1,f +11394,87079,70,2,f +11394,87081,70,1,f +11394,87580,71,5,f +11394,87585,70,2,f +11394,87585,70,1,t +11394,92338,72,2,f +11394,92947,70,1,f +11394,92950,70,2,f +11394,92950,4,6,f +11394,93061,15,2,f +11394,93061,15,1,t +11394,93273,70,1,f +11394,93273,4,4,f +11394,95227,70,3,f +11394,95228,34,1,f +11394,95343,70,1,f +11394,95344,28,1,t +11394,95344,28,1,f +11394,95354,0,1,f +11394,96874,25,1,t +11394,970c00,0,1,f +11394,970c00,15,3,f +11394,970c00pr0616,308,1,f +11394,970d09,0,1,f +11394,973pr2821c01,0,1,f +11394,973pr2822c01,15,1,f +11394,973pr2823c01,14,1,f +11394,973pr2824c01,272,1,f +11394,973pr2825c01,1,2,f +11394,973pr2826c01,70,1,f +11394,98138,71,2,t +11394,98138,71,4,f +11394,99780,0,1,f +11395,15573,71,2,f +11395,2420,72,1,f +11395,2431,71,6,f +11395,2431,72,3,f +11395,2877,72,2,f +11395,2877,71,2,f +11395,3002,0,5,f +11395,3003,15,3,f +11395,3005,19,8,f +11395,3005,71,2,f +11395,3020,2,3,f +11395,3020,15,6,f +11395,3020,71,8,f +11395,3021,70,2,f +11395,3021,71,3,f +11395,3022,14,5,f +11395,3023,47,15,f +11395,3023,70,4,f +11395,3023,2,4,f +11395,3023,1,4,f +11395,3024,14,4,f +11395,3024,1,4,f +11395,3024,70,2,f +11395,3024,71,4,f +11395,3024,2,5,f +11395,3024,19,8,f +11395,3024,47,30,f +11395,3024,4,2,f +11395,3024,72,3,f +11395,3024,15,6,f +11395,3028,0,4,f +11395,3068b,72,3,f +11395,3069b,14,1,f +11395,3069b,15,1,f +11395,3069b,72,7,f +11395,3069b,71,5,f +11395,3069b,70,1,f +11395,3070b,72,7,f +11395,3070b,71,2,f +11395,3070b,0,4,f +11395,3070b,19,8,f +11395,33291,10,10,f +11395,3622,27,2,f +11395,3623,0,1,f +11395,3623,2,6,f +11395,3623,70,4,f +11395,3623,19,7,f +11395,3710,71,4,f +11395,3710,19,3,f +11395,3710,4,4,f +11395,4070,72,1,f +11395,4162,0,7,f +11395,4162pr0033,0,1,f +11395,54200,14,1,f +11395,59900,2,18,f +11395,6141,70,14,f +11395,87079,72,2,f +11395,87079,71,1,f +11396,30561,4,1,f +11396,3626b,0,2,f +11396,3626bpr0378,78,1,f +11396,4497,0,1,f +11396,50231,4,1,f +11396,58247,0,1,f +11396,6093,70,1,f +11396,74188,72,3,f +11396,970c00,4,1,f +11396,970c00pr0107,78,1,f +11396,970x192,71,1,f +11396,973pr1136c01,78,1,f +11396,973pr1246c01,71,1,f +11396,973pr1264c01,4,1,f +11396,x50px3,2,1,f +11398,23186,84,1,f +11398,26562,15,1,f +11398,3626cpr1927,78,1,f +11398,88646pr0002,15,1,f +11398,970c00pr1051,0,1,f +11398,973pr3379c01,15,1,f +11399,2412b,4,1,f +11399,2780,0,2,t +11399,2780,0,41,f +11399,2825,4,2,f +11399,2850a,71,4,f +11399,2851,14,4,f +11399,2852,71,4,f +11399,2853,71,2,f +11399,2854,72,1,f +11399,2905,71,4,f +11399,3022,4,1,f +11399,30552,4,1,f +11399,32002,72,2,t +11399,32002,72,10,f +11399,32009,71,4,f +11399,32013,71,1,f +11399,32015,14,2,f +11399,32017,4,4,f +11399,32039,0,5,f +11399,32054,71,3,f +11399,32056,0,3,f +11399,32062,0,20,f +11399,32063,0,2,f +11399,32073,71,14,f +11399,32123b,71,13,f +11399,32123b,71,2,t +11399,32126,4,2,f +11399,32140,0,2,f +11399,32184,0,6,f +11399,32192,0,3,f +11399,32209,72,1,f +11399,32249,4,4,f +11399,32249,71,2,f +11399,32250,71,2,f +11399,32269,71,1,f +11399,32270,71,1,f +11399,32271,4,5,f +11399,32271,0,1,f +11399,32291,4,6,f +11399,32316,4,1,f +11399,32316,0,5,f +11399,32316,71,2,f +11399,32348,4,4,f +11399,32439b,71,2,f +11399,32449,0,10,f +11399,32523,4,3,f +11399,32524,4,4,f +11399,32524,0,1,f +11399,3648b,71,1,f +11399,3705,0,14,f +11399,3706,0,4,f +11399,3707,0,1,f +11399,3711a,0,30,f +11399,3711a,0,1,t +11399,3713,0,2,t +11399,3713,14,2,f +11399,3713,71,1,t +11399,3713,0,9,f +11399,3713,71,4,f +11399,3713,14,1,t +11399,3749,19,5,f +11399,3894,0,2,f +11399,3900,71,2,f +11399,4019,71,1,f +11399,40490,4,2,f +11399,40490,0,2,f +11399,41669,40,5,f +11399,41669,36,2,f +11399,41669,4,2,f +11399,41677,0,24,f +11399,41751pr005,40,1,f +11399,42003,71,17,f +11399,43093,1,19,f +11399,44135,71,1,f +11399,44294,71,7,f +11399,44350,4,1,f +11399,44351,4,1,f +11399,44352,4,1,f +11399,44353,4,1,f +11399,44809,71,1,f +11399,4519,71,23,f +11399,47712,4,2,f +11399,47713,4,2,f +11399,47844,4,1,f +11399,48496,71,1,f +11399,4868b,71,2,f +11399,48912c01,14,1,f +11399,51378,71,2,f +11399,51379,0,1,f +11399,51380,0,1,f +11399,6536,0,13,f +11399,6536,4,2,f +11399,6538b,0,3,f +11399,6538b,71,5,f +11399,6553,0,3,f +11399,6558,0,22,f +11399,6587,72,2,f +11399,6589,71,4,f +11399,6628,0,6,f +11399,6629,71,2,f +11399,6632,71,13,f +11399,6632,14,1,f +11399,6632,4,15,f +11399,75535,4,2,f +11399,9244,71,1,f +11400,3037,0,20,f +11400,3038,0,12,f +11400,3039,0,32,f +11400,3040b,0,12,f +11401,11090,0,4,f +11401,11458,72,6,f +11401,13547,0,6,f +11401,15100,0,2,f +11401,15391,0,1,f +11401,15392,72,3,f +11401,15395,0,3,f +11401,15403,0,2,f +11401,15461,0,2,f +11401,15462,28,2,f +11401,15712,0,2,f +11401,18987,0,1,f +11401,19185,0,1,f +11401,21019pat04,72,1,f +11401,22385,0,1,f +11401,2412b,179,2,f +11401,2419,72,1,f +11401,2420,71,2,f +11401,24226c01,0,1,f +11401,24235c01,0,1,f +11401,2431,71,2,f +11401,2436,71,2,f +11401,2780,0,6,f +11401,2817,71,1,f +11401,2825,0,2,f +11401,2877,71,2,f +11401,30000,72,1,f +11401,3001,15,1,f +11401,30151b,47,3,f +11401,30165,0,1,f +11401,3020,2,2,f +11401,3021,72,3,f +11401,3022,15,2,f +11401,3023,71,3,f +11401,3023,72,2,f +11401,3023,47,4,f +11401,3023,1,6,f +11401,3024,71,4,f +11401,3032,70,1,f +11401,3034,72,1,f +11401,30374,0,2,f +11401,30383,72,2,f +11401,30385,35,3,f +11401,3039,0,2,f +11401,3069b,0,1,f +11401,3070b,36,2,f +11401,3176,0,1,f +11401,32018,72,2,f +11401,32059,0,1,f +11401,32123b,71,6,f +11401,32316,72,2,f +11401,32556,19,2,f +11401,3623,71,2,f +11401,3623,2,2,f +11401,3626cpr1613,0,1,f +11401,3626cpr1719,78,1,f +11401,3626cpr1766,78,1,f +11401,3666,1,2,f +11401,3673,71,2,f +11401,3702,0,2,f +11401,3710,0,3,f +11401,3710,70,2,f +11401,3795,0,3,f +11401,3829c01,0,1,f +11401,3894,71,2,f +11401,3937,0,4,f +11401,41769,0,1,f +11401,41770,0,1,f +11401,42610,71,4,f +11401,4274,1,4,f +11401,4286,72,4,f +11401,43093,1,2,f +11401,43719,72,2,f +11401,44676,0,4,f +11401,44728,71,3,f +11401,4518c,0,1,f +11401,45707b,72,1,f +11401,47457,72,2,f +11401,47507,72,1,f +11401,48729b,71,2,f +11401,48933,0,2,f +11401,50949,0,1,f +11401,50950,72,2,f +11401,51739,71,1,f +11401,51739,0,3,f +11401,54383,0,1,f +11401,54384,0,1,f +11401,55981,0,2,f +11401,55982,71,2,f +11401,56891,0,2,f +11401,59426,72,2,f +11401,60477,0,4,f +11401,60897,71,2,f +11401,6091,72,2,f +11401,61184,71,2,f +11401,6134,71,4,f +11401,61409,0,8,f +11401,61409,72,2,f +11401,6141,179,1,t +11401,6141,47,2,f +11401,6141,36,2,f +11401,6141,179,18,f +11401,6187,0,2,f +11401,63864,0,2,f +11401,64450,0,1,f +11401,64644,0,1,f +11401,64798,0,1,f +11401,6558,1,4,f +11401,6632,71,2,f +11401,6636,0,2,f +11401,73983,72,2,f +11401,85543,15,1,f +11401,87079,0,1,f +11401,92081,308,1,f +11401,92280,0,2,f +11401,92280,71,2,f +11401,92402,0,2,f +11401,92409,0,4,f +11401,92593,0,10,f +11401,92946,72,2,f +11401,92946,0,2,f +11401,93273,72,1,f +11401,93273,2,3,f +11401,93274,0,4,f +11401,970c00,308,1,f +11401,970c00,0,1,f +11401,973pr3272,72,1,f +11401,973pr3273,288,2,f +11401,98721,179,1,f +11401,98721,179,1,t +11401,98834,0,2,f +11401,99021,72,2,f +11401,99781,0,2,f +11402,3626bpr0600,14,1,f +11402,3626cpr0580,14,1,f +11402,3626cpr0645,14,1,f +11402,3678bpr0030,378,1,f +11402,3741,2,1,f +11402,3742,5,3,f +11402,3742,5,1,t +11402,3844,80,1,f +11402,41879a,70,1,f +11402,4505,308,1,f +11402,59363,70,1,f +11402,970x026,71,1,f +11402,973pr1452c01,28,1,f +11402,973pr1622c01,4,1,f +11402,973pr1994c01,378,1,f +11403,3001,0,2,f +11403,3001,4,3,f +11403,3001,15,2,f +11403,3001,14,3,f +11403,3001,1,3,f +11403,3001pr1,14,1,f +11403,3002,14,2,f +11403,3002,1,2,f +11403,3002,4,2,f +11403,3002,15,2,f +11403,3003,14,3,f +11403,3003,4,4,f +11403,3003,0,2,f +11403,3003,1,4,f +11403,3003,15,2,f +11403,3003pe1,14,2,f +11403,4130,14,1,f +11403,4131,4,1,f +11403,4132,14,1,f +11403,4133,4,1,f +11403,4202,2,1,f +11403,4743,4,1,f +11403,4744,14,1,f +11404,30213,42,1,f +11404,30214,34,1,f +11404,3023,42,1,f +11404,3298pb005,8,1,f +11404,3626bpb0036,8,1,f +11404,3795,8,1,f +11404,3838,0,1,f +11404,3839b,0,1,f +11404,4349,0,2,f +11404,4588,0,1,f +11404,4589,57,2,f +11404,4589,42,2,f +11404,4596,0,2,f +11404,4598,8,1,f +11404,4859,1,1,f +11404,970c11pb03,0,1,f +11404,973pb0200c01,8,1,f +11405,2341,15,6,f +11405,2419,15,2,f +11405,2419,0,1,f +11405,2420,0,2,f +11405,2420,4,2,f +11405,2465,15,8,f +11405,2540,15,1,f +11405,2625,15,1,f +11405,2625,4,2,f +11405,2626,15,2,f +11405,2654,0,6,f +11405,298c02,15,2,f +11405,3003,15,2,f +11405,3003,1,1,f +11405,3004,0,3,f +11405,3004,15,2,f +11405,3004p06,15,4,f +11405,3005,0,2,f +11405,3005,15,4,f +11405,3007,15,2,f +11405,3008p22,15,20,f +11405,3009,15,2,f +11405,3010,15,1,f +11405,3020,1,1,f +11405,3020,0,1,f +11405,3021,2,1,f +11405,3021,15,1,f +11405,3023,0,1,f +11405,3024,15,2,f +11405,3024,34,1,f +11405,3024,4,2,f +11405,3024,36,1,f +11405,3026,4,1,f +11405,3028,15,2,f +11405,3034,2,1,f +11405,3036,15,1,f +11405,3036,4,1,f +11405,3039,47,1,f +11405,3069b,4,6,f +11405,3070b,4,6,f +11405,3297,15,1,f +11405,3460,15,2,f +11405,3479,0,2,f +11405,3623,4,8,f +11405,3641,0,4,f +11405,3660,15,8,f +11405,3665,15,2,f +11405,3666,15,1,f +11405,3684,15,2,f +11405,3684p22,15,3,f +11405,3710,4,2,f +11405,3710,0,1,f +11405,3830,15,2,f +11405,3831,15,2,f +11405,3832,2,1,f +11405,4032a,0,1,f +11405,4286,15,2,f +11405,4289,15,1,f +11405,4460b,15,2,f +11405,4477,4,6,f +11405,4600,0,2,f +11405,4623,15,2,f +11405,4624,15,4,f +11405,6141,46,2,f +11405,73983,15,2,f +11406,194cx1,2,3,f +11406,2357,15,2,f +11406,2412b,2,1,f +11406,2412b,1,4,f +11406,2412b,0,1,f +11406,2413,15,2,f +11406,2420,0,1,f +11406,2420,4,1,f +11406,2431,0,2,f +11406,2431,15,2,f +11406,2432,7,2,f +11406,2433,0,1,f +11406,2436,2,1,f +11406,2436,4,4,f +11406,2445,4,1,f +11406,2453a,15,1,f +11406,2454a,15,2,f +11406,2454a,0,3,f +11406,2458,15,2,f +11406,2460,15,2,f +11406,2465,0,2,f +11406,2465,15,2,f +11406,2474,7,3,f +11406,2475,0,3,f +11406,2476a,15,2,f +11406,2493b,7,2,f +11406,2494,47,2,f +11406,2496,0,2,f +11406,2498,73,9,f +11406,2540,0,1,f +11406,2555,0,1,f +11406,2584,4,1,f +11406,2585,7,1,f +11406,2655,7,2,f +11406,2877,15,2,f +11406,298c02,7,1,f +11406,3002,15,3,f +11406,3003,15,1,f +11406,3004,15,2,f +11406,3004,4,1,f +11406,3004,0,19,f +11406,3005,0,10,f +11406,3005,15,8,f +11406,3008,15,5,f +11406,3009,15,6,f +11406,3010,15,2,f +11406,3020,4,6,f +11406,3020,2,1,f +11406,3020,15,1,f +11406,3020,7,2,f +11406,3021,2,4,f +11406,3021,4,7,f +11406,3022,2,1,f +11406,3022,15,3,f +11406,3022,7,1,f +11406,3023,0,9,f +11406,3023,15,9,f +11406,3023,4,4,f +11406,3023,2,1,f +11406,3023,7,1,f +11406,3024,47,6,f +11406,3024,15,8,f +11406,3024,2,3,f +11406,3024,36,4,f +11406,3024,46,2,f +11406,3024,4,4,f +11406,3027,15,1,f +11406,3031,4,1,f +11406,3034,0,1,f +11406,3035,4,4,f +11406,3039p34,15,1,f +11406,3040p32,15,4,f +11406,3062b,4,2,f +11406,3062b,14,1,f +11406,3062b,7,2,f +11406,3068b,15,3,f +11406,3068bp06,15,1,f +11406,3068bp18,15,1,f +11406,3069b,0,4,f +11406,3069bp52,15,1,f +11406,3070b,34,1,f +11406,3070b,4,1,f +11406,3070b,36,1,f +11406,3070b,0,3,f +11406,309p03,2,1,f +11406,3127,7,1,f +11406,3139,0,1,f +11406,3460,4,3,f +11406,3460,2,2,f +11406,3460,15,3,f +11406,3622,15,5,f +11406,3622,0,2,f +11406,3623,4,4,f +11406,3623,15,10,f +11406,3623,0,6,f +11406,3626bpr0001,14,3,f +11406,3641,0,6,f +11406,3665,15,1,f +11406,3665,0,2,f +11406,3666,4,2,f +11406,3666,15,1,f +11406,3666,0,4,f +11406,3666,2,3,f +11406,3700,15,1,f +11406,3705,0,1,f +11406,3710,2,4,f +11406,3710,15,2,f +11406,3710,4,5,f +11406,3741,2,2,f +11406,3742,14,2,t +11406,3742,14,6,f +11406,3788,4,3,f +11406,3794a,15,4,f +11406,3821,4,1,f +11406,3821,15,1,f +11406,3822,15,1,f +11406,3822,4,1,f +11406,3823,41,3,f +11406,3829c01,15,1,f +11406,3829c01,7,1,f +11406,3832,0,1,f +11406,3832,15,1,f +11406,3852a,6,1,f +11406,3901,0,1,f +11406,3941,15,1,f +11406,4006,0,2,f +11406,4070,15,5,f +11406,4079,4,1,f +11406,4081b,15,2,f +11406,4081b,7,2,f +11406,4083,1,1,f +11406,4085c,15,4,f +11406,4085c,0,2,f +11406,4162,15,2,f +11406,4162,7,8,f +11406,4162,0,2,f +11406,4187,2,1,f +11406,4211,4,1,f +11406,4212b,4,1,f +11406,4213,15,1,f +11406,4213,0,1,f +11406,4265a,7,1,f +11406,4276b,7,1,f +11406,4282,15,2,f +11406,4286,15,2,f +11406,4315,0,1,f +11406,4319,0,1,f +11406,4447,15,8,f +11406,4448,47,8,f +11406,4477,4,5,f +11406,4477,2,4,f +11406,4477,15,1,f +11406,4485,4,1,f +11406,4522,0,1,f +11406,4530,0,1,f +11406,4531,0,1,f +11406,4599a,14,1,f +11406,4600,0,5,f +11406,4624,15,6,f +11406,4625,15,1,f +11406,4626,7,1,f +11406,4629c01,1,1,f +11406,4733,7,1,f +11406,4864a,15,4,f +11406,4865a,7,2,f +11406,4865a,15,1,f +11406,6014a,15,4,f +11406,6015,0,4,f +11406,6091,0,4,f +11406,6141,36,2,f +11406,6141,46,6,f +11406,6141,7,2,f +11406,6141,1,1,f +11406,73194c01,7,1,f +11406,73590c01a,7,2,f +11406,970c00,2,2,f +11406,970c00,0,1,f +11406,973p22c01,0,1,f +11406,973px130c01,15,2,f +11406,rb00164,0,1,f +11407,2462,0,2,f +11407,2555,7,2,f +11407,2618,0,1,f +11407,30000,8,1,f +11407,3004,7,4,f +11407,3010,4,2,f +11407,30106,47,1,f +11407,3022,7,2,f +11407,3023,4,1,f +11407,3626bpx20,14,1,f +11407,3678ap01,0,1,f +11407,3700,0,2,f +11407,3794a,7,2,f +11407,3795,4,1,f +11407,3830,4,2,f +11407,3831,4,2,f +11407,3941,14,4,f +11407,4332,6,1,f +11407,4589,36,2,f +11407,6019,4,10,f +11407,6027,2,1,f +11407,6028,2,1,f +11407,6057,6,2,f +11407,6123,8,2,f +11407,6124,36,1,f +11407,6126a,57,1,f +11407,6127,2,1,f +11407,6128,2,1,f +11407,6131,0,1,f +11407,6133,0,2,f +11407,75174,2,1,f +11407,973px35c01,0,1,f +11407,bb190pb02,4,1,f +11408,11477,2,7,f +11408,11477,288,1,f +11408,14769pr1045,15,1,f +11408,15208,15,2,f +11408,15208,0,1,f +11408,2415,71,2,f +11408,2496,0,2,f +11408,2921,0,2,f +11408,3021,72,2,f +11408,3022,0,1,f +11408,30236,2,2,f +11408,3024,288,1,t +11408,3024,288,6,f +11408,30350a,0,2,f +11408,30414,0,2,f +11408,3070b,2,4,f +11408,3070b,2,1,t +11408,32474pr1001,15,2,f +11408,3666,2,2,f +11408,3710,2,1,f +11408,3795,2,1,f +11408,4070,0,2,f +11408,4735,0,2,f +11408,48336,0,2,f +11408,61252,14,2,f +11408,6141,46,1,t +11408,6141,46,2,f +11408,6141,15,3,f +11408,6141,15,1,t +11408,63868,72,2,f +11408,64648,25,1,f +11408,64648,179,1,f +11408,99207,0,2,f +11409,766c28,7,4,f +11409,766c96,7,4,f +11411,14226c21,0,2,f +11411,2357,14,2,f +11411,2357,0,2,f +11411,2362b,0,4,f +11411,2376,0,1,f +11411,2399,0,1,f +11411,2399,14,1,f +11411,2412b,7,5,f +11411,2432,15,1,f +11411,2433,0,1,f +11411,2444,14,5,f +11411,2446,1,1,f +11411,2446,15,2,f +11411,2447,41,2,f +11411,2460,7,1,f +11411,2479,0,1,f +11411,2507,33,1,f +11411,2540,7,2,f +11411,2654,7,2,f +11411,2744,0,4,f +11411,2780,0,4,f +11411,2823,14,4,f +11411,298c02,15,1,f +11411,3001,0,1,f +11411,3004,0,2,f +11411,3005,0,2,f +11411,30086,14,1,f +11411,30088,4,1,f +11411,3009,0,1,f +11411,30090,33,1,f +11411,30091,7,1,f +11411,3010,14,1,f +11411,3010,0,2,f +11411,30162,8,1,f +11411,30187c01,0,1,f +11411,30191,7,1,f +11411,30192,8,1,f +11411,30193,8,1,f +11411,3020,0,7,f +11411,3021,0,3,f +11411,3021,7,2,f +11411,3022,14,2,f +11411,30229,8,1,f +11411,3023,0,3,f +11411,3023,7,3,f +11411,3023,14,1,f +11411,3024,36,1,t +11411,3024,36,3,f +11411,3024,34,2,f +11411,3032,14,1,f +11411,3035,14,1,f +11411,3039,0,1,f +11411,3039pr0005,15,1,f +11411,3068b,7,1,f +11411,3069bp68,15,1,f +11411,3127,7,1,f +11411,3176,7,1,f +11411,3460,7,1,f +11411,3622,0,1,f +11411,3623,7,1,f +11411,3623,14,3,f +11411,3626bp04,14,1,f +11411,3626bp06,14,1,f +11411,3626bpx27,14,1,f +11411,3660,14,1,f +11411,3660,0,1,f +11411,3666,0,2,f +11411,3673,7,1,f +11411,3710,0,5,f +11411,3710,14,4,f +11411,3747b,0,4,f +11411,3794a,0,2,f +11411,3795,0,1,f +11411,4032a,7,2,f +11411,4070,0,4,f +11411,4081b,7,1,f +11411,4085c,7,1,f +11411,4282,0,3,f +11411,4286,0,2,f +11411,4315,0,2,f +11411,4474,33,1,f +11411,4477,0,2,f +11411,4477,14,2,f +11411,4532,0,2,f +11411,4533,14,2,f +11411,4589,42,1,t +11411,4589,42,1,f +11411,4617b,0,1,f +11411,4714,15,1,f +11411,4715,15,2,f +11411,4735,7,2,f +11411,4740,42,2,f +11411,4854,0,1,f +11411,4855,0,1,f +11411,4856a,0,1,f +11411,4859,14,2,f +11411,4859,0,1,f +11411,4868a,0,2,f +11411,4869,7,2,f +11411,4871,0,1,f +11411,56823,0,1,f +11411,59275,1,2,f +11411,6019,15,2,f +11411,6069,0,1,f +11411,6141,42,1,t +11411,6141,42,1,f +11411,6239,0,1,f +11411,6636,0,2,f +11411,71155,0,1,f +11411,73037,0,1,f +11411,73983,0,2,f +11411,970x024,0,1,f +11411,970x026,15,2,f +11411,973p8ac04,0,1,f +11411,973p8bc01,15,1,f +11411,973px79c01,15,1,f +11415,2300,1,1,f +11415,2302,73,2,f +11415,2302,4,4,f +11415,2302,25,2,f +11415,2312c02,1,1,f +11415,3011,4,2,f +11415,3011,1,2,f +11415,3011,14,2,f +11415,3011,73,4,f +11415,3011,10,2,f +11415,3437,25,4,f +11415,3437,0,2,f +11415,3437,15,2,f +11415,3437,4,6,f +11415,3437,1,6,f +11415,3437,41,2,f +11415,3437,14,6,f +11415,3437,10,6,f +11415,3437,27,5,f +11415,3437pe1,4,1,f +11415,3437pe1,10,1,f +11415,4066,73,4,f +11415,40666,4,2,f +11415,40666,27,4,f +11415,40666,73,2,f +11415,61310,10,1,f +11415,61649,1,2,f +11415,63871,4,2,f +11415,6497,15,2,f +11415,6510,10,2,f +11415,6510,14,2,f +11415,6510,25,2,f +11415,75113pr0008,212,1,f +11415,75126,4,1,f +11415,76371,1,4,f +11415,87084,14,2,f +11415,87084,4,4,f +11415,90265,15,2,f +11416,2431,15,1,f +11416,32016,15,2,f +11416,32034,15,2,f +11416,32039,0,2,f +11416,32062,0,8,f +11416,32073,7,1,f +11416,32579,7,1,f +11416,3707,0,1,f +11416,41677,135,2,f +11416,4274,7,2,f +11416,4274,7,1,t +11416,43093,1,2,f +11416,43559,25,2,f +11416,44790,15,1,f +11416,44791,15,1,f +11416,44844,135,1,f +11416,44847,0,2,f +11416,44848,0,2,f +11416,44849,0,1,f +11416,44850,15,1,f +11416,44851,15,1,f +11416,44852,25,1,f +11416,44855,7,1,f +11416,4519,7,2,f +11416,45590,0,1,f +11416,47073,89,1,f +11416,47074,25,1,f +11416,6558,0,2,f +11416,6587,8,1,f +11417,11110pr0001,25,1,f +11417,11126,14,1,f +11417,11127,41,6,f +11417,11129pr0005,25,1,f +11417,11767,72,1,f +11417,2454a,72,2,f +11417,2654,0,1,f +11417,2780,0,1,t +11417,2780,0,2,f +11417,3003,72,2,f +11417,3004,72,1,f +11417,30173a,0,1,t +11417,30173a,0,1,f +11417,30176,2,1,f +11417,3020,0,1,f +11417,3020,71,1,f +11417,3021,70,1,f +11417,3022,71,2,f +11417,3022,2,2,f +11417,3023,70,2,f +11417,3023,0,1,f +11417,3024,15,2,f +11417,3024,15,1,t +11417,3032,2,1,f +11417,3040b,71,2,f +11417,3040b,70,2,f +11417,3062b,41,1,f +11417,3062b,2,1,f +11417,3069b,41,1,f +11417,3069b,0,1,f +11417,32054,71,1,f +11417,32064b,71,2,f +11417,3298,70,1,f +11417,3660,72,1,f +11417,3684,72,2,f +11417,3705,0,1,f +11417,3706,0,2,f +11417,3710,1,2,f +11417,3941,4,2,f +11417,4070,70,2,f +11417,4085c,15,2,f +11417,4085c,0,2,f +11417,44728,71,2,f +11417,4519,71,1,f +11417,4588,72,2,f +11417,4599b,71,2,f +11417,4599b,71,1,t +11417,46212,41,1,f +11417,49668,191,2,f +11417,49668,15,2,f +11417,50950,191,2,f +11417,53451,15,2,f +11417,53451,15,1,t +11417,54200,70,1,t +11417,54200,33,1,t +11417,54200,70,2,f +11417,54200,33,2,f +11417,54821pat0003,41,1,f +11417,59443,0,2,f +11417,6021379,9999,1,f +11417,6021380,9999,1,f +11417,6021381,9999,1,f +11417,6021382,9999,1,f +11417,6021383,9999,1,f +11417,6141,57,1,t +11417,6141,57,2,f +11417,6256,1,1,f +11417,63965,297,1,f +11417,64567,297,1,f +11417,64727,71,1,f +11417,6541,71,3,f +11417,6553,0,1,f +11417,85984,191,1,f +11417,87087,72,1,f +11417,90194,70,2,f +11417,970c02pr0430,19,1,f +11417,973pr2225c01,19,1,f +11417,99781,71,1,f +11418,43853posa,4,1,f +11418,biocom13uk,89,1,f +11419,3022,71,1,f +11419,33078,4,1,f +11419,33078,4,1,t +11419,48812,70,1,f +11419,6231,15,4,f +11421,3626bpr0001,14,1,f +11421,3901,6,1,f +11421,970c00,0,1,f +11421,973c01,15,1,f +11423,3626bp05,14,1,f +11423,3901,6,1,f +11423,970c00,0,1,f +11423,973pb0005c01,15,1,f +11424,2780,0,1,f +11424,32013,0,1,f +11424,32062,4,2,f +11424,32174,320,4,f +11424,41670,288,4,f +11424,43857,0,1,f +11424,44033,135,1,f +11424,47296,320,2,f +11424,53542,320,2,f +11424,53582,135,1,f +11424,6558,0,1,f +11426,3002,47,1,f +11426,3005,15,5,f +11426,3010,14,3,f +11426,3020,4,1,f +11426,3021,4,2,f +11426,3034,14,1,f +11426,3038,47,1,f +11426,3460,14,7,f +11426,3461,14,1,f +11426,3462,14,1,f +11426,3622,14,2,f +11426,3660,14,2,f +11426,3665,15,2,f +11426,3665,14,2,f +11426,3666,14,1,f +11426,3710,14,1,f +11426,3795,14,1,f +11426,4477,4,5,f +11427,2343,297,1,f +11427,2653,71,5,f +11427,3005,71,9,f +11427,3005,70,2,f +11427,30136,71,4,f +11427,3021,70,6,f +11427,3022,70,2,f +11427,3022,72,5,f +11427,3022,2,2,f +11427,3023,1,1,f +11427,30238,0,4,f +11427,3034,70,1,f +11427,30367b,71,1,f +11427,3048c,297,1,f +11427,3062b,71,4,f +11427,3062b,47,1,f +11427,3062b,70,4,f +11427,3062b,46,1,f +11427,3062b,41,4,f +11427,3068bprg0001,19,1,f +11427,3068bprg0002,19,2,f +11427,3068bprg0003,19,2,f +11427,3068bprg0004,0,1,f +11427,3070b,70,2,f +11427,3070b,1,1,t +11427,3070b,70,1,t +11427,3070b,1,1,f +11427,3659,71,2,f +11427,3688,2,2,f +11427,3700,71,1,f +11427,3710,28,1,f +11427,3710,1,1,f +11427,3710,14,1,f +11427,3794b,1,1,f +11427,3794b,71,1,f +11427,3795,2,2,f +11427,3958,2,6,f +11427,3958,72,1,f +11427,4032a,2,4,f +11427,41539,72,1,f +11427,4589,34,2,f +11427,4740,33,4,f +11427,4740,2,4,f +11427,49668,288,4,f +11427,53705,41,4,f +11427,54200,71,3,f +11427,54200,71,1,t +11427,59900,297,10,f +11427,59900,36,1,f +11427,59900,4,12,f +11427,6091,1,1,f +11427,6141,70,1,t +11427,6141,4,1,t +11427,6141,70,12,f +11427,6141,14,1,t +11427,6141,27,1,t +11427,6141,41,1,t +11427,6141,4,1,f +11427,6141,71,1,t +11427,6141,71,5,f +11427,6141,14,1,f +11427,6141,41,2,f +11427,6141,27,2,f +11427,64776pat0001,0,1,f +11427,85080,71,2,f +11427,85863,71,1,f +11427,85863pr0053,14,1,f +11427,85863pr0054,1,1,f +11427,85863pr0060,28,1,f +11427,85863pr0061,19,1,f +11427,85863pr0062,70,3,f +11427,86208,71,2,f +11427,87580,10,18,f +11427,87580,2,13,f +11427,87580,72,10,f +11427,87580,71,9,f +11427,87580,1,1,f +11427,92585,4,1,f +11427,95049,72,1,f +11427,95050,72,1,f +11427,95051,72,1,f +11427,95052,72,1,f +11427,95053,72,1,f +11427,95054,72,2,f +11428,45462,118,2,f +11428,45463,15,2,f +11428,48794,9,1,f +11429,2357,4,8,f +11429,2412b,72,11,f +11429,2412b,80,11,f +11429,2420,4,2,f +11429,2421,0,1,f +11429,2431,15,1,f +11429,2431,71,1,f +11429,2431,4,3,f +11429,2449,0,2,f +11429,2555,0,2,f +11429,2654,71,2,f +11429,2736,71,1,f +11429,2780,0,1,t +11429,2780,0,12,f +11429,2819,71,1,f +11429,2921,4,2,f +11429,3001,71,1,f +11429,3002,72,1,f +11429,3003,71,2,f +11429,3004,0,4,f +11429,3004,4,6,f +11429,3005,4,4,f +11429,3005,0,2,f +11429,3005,71,6,f +11429,3007,0,2,f +11429,3008,0,2,f +11429,3008,4,2,f +11429,3009,0,3,f +11429,3009,4,2,f +11429,3010,4,2,f +11429,30162,72,2,f +11429,3020,71,7,f +11429,3021,19,4,f +11429,3021,72,11,f +11429,3021,71,3,f +11429,3022,72,7,f +11429,3022,19,2,f +11429,3022,4,2,f +11429,3023,0,7,f +11429,3023,19,2,f +11429,3023,4,14,f +11429,30236,72,2,f +11429,3024,19,6,f +11429,3024,4,12,f +11429,3024,0,6,f +11429,3030,72,2,f +11429,3031,0,1,f +11429,3032,4,3,f +11429,3034,4,1,f +11429,3034,72,6,f +11429,30360,71,2,f +11429,30374,0,2,f +11429,3038,72,2,f +11429,3038,4,2,f +11429,3039,4,2,f +11429,3039,72,1,f +11429,3040b,15,2,f +11429,30414,0,3,f +11429,30553,0,1,f +11429,3062b,71,10,f +11429,3062b,14,1,f +11429,3062b,0,2,f +11429,3068b,0,2,f +11429,3069b,15,2,f +11429,3069bpr0101,71,1,f +11429,32000,0,6,f +11429,32014,72,2,f +11429,32018,0,4,f +11429,32028,71,4,f +11429,32062,4,2,f +11429,32123b,14,6,f +11429,32123b,14,1,t +11429,3460,72,2,f +11429,3623,19,6,f +11429,3623,4,2,f +11429,3660,4,1,f +11429,3660,72,4,f +11429,3660,0,7,f +11429,3665,71,6,f +11429,3665,0,2,f +11429,3666,72,2,f +11429,3666,4,6,f +11429,3666,71,7,f +11429,3700,72,1,f +11429,3708,0,1,f +11429,3710,0,9,f +11429,3710,71,6,f +11429,3710,4,3,f +11429,3713,71,4,f +11429,3713,71,1,t +11429,3794a,72,3,f +11429,3795,4,2,f +11429,3795,0,2,f +11429,3795,71,1,f +11429,3894,71,2,f +11429,3937,72,4,f +11429,3938,71,4,f +11429,3941,71,4,f +11429,3957a,80,2,f +11429,4032a,71,2,f +11429,40620,71,2,f +11429,4070,0,8,f +11429,4070,4,6,f +11429,4081b,4,2,f +11429,4081b,72,4,f +11429,4085c,4,6,f +11429,4085c,0,4,f +11429,4150,71,2,f +11429,41747,72,1,f +11429,41748,72,1,f +11429,4176,47,2,f +11429,41767,4,1,f +11429,41768,4,1,f +11429,41769,71,1,f +11429,41770,71,1,f +11429,4274,1,1,t +11429,4274,1,4,f +11429,4287,72,2,f +11429,4349,0,3,f +11429,43722,4,2,f +11429,43723,4,2,f +11429,44294,71,4,f +11429,44309,0,6,f +11429,44567a,72,1,f +11429,44728,71,2,f +11429,44728,4,2,f +11429,4477,72,4,f +11429,4477,4,1,f +11429,4488,71,1,f +11429,4519,71,2,f +11429,4623,0,2,f +11429,4735,0,6,f +11429,4740,72,2,f +11429,48336,0,7,f +11429,48336,19,2,f +11429,50950,0,2,f +11429,50950,4,12,f +11429,50967,0,4,f +11429,54200,4,16,f +11429,54200,0,4,f +11429,55981,80,2,f +11429,56145,71,6,f +11429,6019,71,2,f +11429,6019,19,4,f +11429,6091,4,2,f +11429,6091,71,4,f +11429,6141,0,1,t +11429,6141,47,1,t +11429,6141,36,1,t +11429,6141,46,4,f +11429,6141,1,1,t +11429,6141,0,9,f +11429,6141,14,1,t +11429,6141,36,4,f +11429,6141,1,2,f +11429,6141,14,2,f +11429,6141,47,4,f +11429,6141,46,1,t +11429,6538b,14,2,f +11429,6564,4,5,f +11429,6565,4,5,f +11429,6636,4,2,f +11429,6636,0,3,f +11431,2399,0,1,f +11431,2412b,0,2,f +11431,2446,8,1,f +11431,2458,14,1,f +11431,2555,1,2,f +11431,3002,0,1,f +11431,3020,7,1,f +11431,3023,1,2,f +11431,3039,0,1,f +11431,3069bps9,14,1,f +11431,3626bpx141,14,1,f +11431,3838,14,1,f +11431,4623,14,1,f +11431,57467,383,2,f +11431,59275,0,2,f +11431,6041,0,1,f +11431,6090,33,1,f +11431,970x026,1,1,f +11431,973pb0075c02,0,1,f +11434,3003,0,1,f +11434,3003,14,1,f +11434,3003pe2,14,1,f +11434,3004,14,3,f +11434,3020,14,1,f +11434,3023,14,2,f +11434,3039,0,1,f +11437,46296,47,2,f +11437,46296,182,2,f +11437,clikits004,182,1,f +11437,clikits004,462,6,f +11437,clikits004,35,1,f +11437,clikits004,46,4,f +11437,clikits004,45,1,f +11437,clikits005,57,3,f +11437,clikits005,46,6,f +11437,clikits005,45,5,f +11437,clikits005,35,3,f +11437,clikits005,182,8,f +11437,clikits026,45,4,f +11437,clikits026,462,2,f +11437,clikits026,46,2,f +11437,clikits028,143,3,f +11437,clikits030,35,2,f +11437,clikits030,182,2,f +11437,clikits032,35,1,f +11437,clikits033,35,1,f +11437,clikits034,57,2,f +11437,clikits035,57,2,f +11437,clikits035,46,3,f +11437,clikits036,46,1,f +11437,clikits037,25,2,f +11437,clikits037,27,1,f +11437,clikits037,14,2,f +11437,clikits038,143,3,f +11437,clikits040,57,1,f +11437,clikits040,47,1,f +11437,clikits041,57,1,f +11437,clikits044,47,1,f +11437,clikits045,47,1,f +11438,2343,7,2,f +11438,2412b,15,1,f +11438,2420,4,2,f +11438,2432,7,1,f +11438,2436,0,1,f +11438,2445,0,2,f +11438,2452,7,1,f +11438,2555,0,2,f +11438,2877,4,2,f +11438,298c02,15,1,f +11438,3005,15,4,f +11438,3010,4,1,f +11438,3010apr0001,4,2,f +11438,3022,0,1,f +11438,3022,7,2,f +11438,3023,15,3,f +11438,3024,46,6,f +11438,3034,4,2,f +11438,3040b,36,2,f +11438,3062b,7,6,f +11438,3068b,7,1,f +11438,3068bp05,15,1,f +11438,3068bp06,15,1,f +11438,3069bp09,15,2,f +11438,3176,7,1,f +11438,3460,0,1,f +11438,3622,4,2,f +11438,3623,15,1,f +11438,3623,0,1,f +11438,3626bp7e,14,1,f +11438,3794a,4,8,f +11438,3821,4,1,f +11438,3822,4,1,f +11438,3823,41,1,f +11438,3829c01,15,1,f +11438,4006,0,1,f +11438,4070,15,4,f +11438,4081b,15,2,f +11438,4085c,4,4,f +11438,4211,4,1,f +11438,4213,4,1,f +11438,4214,4,1,f +11438,4286,4,4,f +11438,4485,1,1,f +11438,4522,0,1,f +11438,4531,7,1,f +11438,4599a,15,2,f +11438,4600,7,3,f +11438,4865a,15,2,f +11438,6014a,15,6,f +11438,6015,0,6,f +11438,6016,15,1,f +11438,6141,46,2,f +11438,970c00,1,1,f +11438,973p73c01,2,1,f +11438,fabhook,4,1,f +11440,11055pr0009,15,1,f +11440,11090,0,1,f +11440,11153,70,2,f +11440,11477,308,2,f +11440,13965,70,1,f +11440,15712,0,1,f +11440,18927,15,1,f +11440,2432,70,1,f +11440,2489,308,1,f +11440,2524,70,1,f +11440,2526,15,1,t +11440,2526,15,1,f +11440,2527,4,1,f +11440,2530,72,2,f +11440,2530,72,1,t +11440,2545pr0001,0,1,f +11440,2561,70,2,f +11440,2562,70,1,t +11440,2562,70,2,f +11440,30153,36,1,f +11440,30153,46,1,f +11440,30157,70,1,f +11440,30176,2,1,f +11440,3020,0,1,f +11440,3021,70,1,f +11440,30237a,70,1,f +11440,3035,1,1,f +11440,30374,0,1,f +11440,3039,71,1,f +11440,3040b,72,3,f +11440,30565,19,1,f +11440,3062b,0,4,f +11440,3245b,72,1,f +11440,3626bpr0754a,14,1,f +11440,3626cpr0499,14,1,f +11440,3665,70,1,f +11440,3700,70,3,f +11440,3710,70,1,f +11440,4032a,0,2,f +11440,4070,70,1,f +11440,4600,0,2,f +11440,4624,71,4,f +11440,50950,308,2,f +11440,54200,71,1,t +11440,54200,71,3,f +11440,60475b,71,1,f +11440,60481,71,2,f +11440,60897,0,1,f +11440,63965,70,1,f +11440,64644,297,1,f +11440,64647,182,2,f +11440,64647,182,1,t +11440,64648,179,1,f +11440,64951,70,1,f +11440,84943,148,1,f +11440,85984,70,2,f +11440,87580,70,1,f +11440,87585,70,1,f +11440,95228,34,1,f +11440,970c00,28,1,f +11440,970c00,15,1,f +11440,973pr2825c01,1,1,f +11440,973pr2826c01,70,1,f +11440,98284,70,1,f +11440,99207,0,2,f +11441,2342,0,1,f +11441,2412a,0,2,f +11441,2432,15,1,f +11441,2433,0,2,f +11441,2444,15,2,f +11441,2446,14,1,f +11441,2447,33,1,f +11441,2458,15,2,f +11441,2466,33,2,f +11441,298c02,15,4,f +11441,3020,15,3,f +11441,3021,15,3,f +11441,3022,15,3,f +11441,3022,0,4,f +11441,3023,15,2,f +11441,3024,15,2,f +11441,3037,15,1,f +11441,3068bp08,15,1,f +11441,3069b,15,2,f +11441,3626apr0001,14,1,f +11441,3666,0,2,f +11441,3676,15,2,f +11441,3701,15,2,f +11441,3795,15,1,f +11441,3838,14,1,f +11441,3839b,15,1,f +11441,3956,15,1,f +11441,3957a,15,2,f +11441,4032a,15,2,f +11441,4229,15,4,f +11441,4275b,15,2,f +11441,4282,0,1,f +11441,4286,15,4,f +11441,4531,15,4,f +11441,4589,33,2,f +11441,4590,15,1,f +11441,4590,0,1,f +11441,4596,15,4,f +11441,4597,15,1,f +11441,4740,0,2,f +11441,4859,15,1,f +11441,4859,0,2,f +11441,6141,36,4,f +11441,6141,33,2,f +11441,6141,0,2,f +11441,970c00,14,1,f +11441,973p6ec01,15,1,f +11442,2440pb005,15,1,f +11442,3004pc0,15,1,f +11442,3039pc3,7,2,f +11442,3039pc5,7,1,f +11442,3039pc8,15,2,f +11442,3039px14,15,1,f +11442,3068bp61,1,1,f +11442,3068bp69,0,1,f +11442,3069bp02,7,1,f +11442,3069bp06,15,2,f +11442,3069bp08,15,1,f +11442,3069bp09,15,1,f +11442,3069bp15,0,2,f +11442,3069bp25,7,2,f +11442,3069bp52,15,1,f +11442,3069bp61,15,2,f +11442,3069bp80,15,1,f +11442,3069bpr0016,15,2,f +11442,3298p61,1,1,f +11442,3298pb010,0,1,f +11442,3938,15,1,f +11443,11090,72,1,f +11443,11153,320,4,f +11443,11217pr0009,15,2,f +11443,14769,71,4,f +11443,15303,35,2,f +11443,15400,72,1,f +11443,17554,484,1,f +11443,2412b,71,4,f +11443,2420,0,8,f +11443,2420,71,2,f +11443,2458,4,4,f +11443,2462,71,4,f +11443,2476,71,8,f +11443,2540,71,2,f +11443,2653,71,6,f +11443,2780,0,20,f +11443,2877,0,2,f +11443,2877,72,8,f +11443,298c02,71,2,f +11443,3004,320,3,f +11443,3004,14,1,f +11443,3010,14,2,f +11443,30162,72,2,f +11443,3020,71,8,f +11443,3021,71,1,f +11443,3022,71,4,f +11443,3023,72,1,f +11443,3023,0,3,f +11443,3023,71,10,f +11443,3023,4,8,f +11443,30236,71,1,f +11443,3034,0,2,f +11443,3034,71,1,f +11443,30363,72,1,f +11443,30367b,72,1,f +11443,30374,41,1,f +11443,30377,71,3,f +11443,30565,72,4,f +11443,30602,72,1,f +11443,3062b,0,4,f +11443,3068b,320,1,f +11443,3068b,0,4,f +11443,3068b,72,1,f +11443,3069bpr0070,0,1,f +11443,32013,320,2,f +11443,32054,4,1,f +11443,32062,4,2,f +11443,32062,0,2,f +11443,32064b,71,10,f +11443,32073,71,1,f +11443,32123b,14,1,f +11443,32187,71,2,f +11443,32270,0,1,f +11443,32348,72,2,f +11443,32524,72,2,f +11443,32556,19,2,f +11443,33243,0,4,f +11443,3626cpr0525,78,2,f +11443,3648b,72,1,f +11443,3666,71,2,f +11443,3673,71,4,f +11443,3700,0,1,f +11443,3700,72,4,f +11443,3701,72,4,f +11443,3702,0,6,f +11443,3705,0,2,f +11443,3706,0,1,f +11443,3707,0,2,f +11443,3710,71,5,f +11443,3713,4,3,f +11443,3795,72,8,f +11443,3795,71,2,f +11443,3832,72,1,f +11443,3894,71,4,f +11443,3941,14,1,f +11443,3941,72,4,f +11443,4032a,0,3,f +11443,4032a,70,1,f +11443,4079,72,1,f +11443,4081b,72,2,f +11443,41678,71,2,f +11443,4185,72,3,f +11443,42003,72,2,f +11443,4274,1,10,f +11443,43093,1,4,f +11443,44224,72,4,f +11443,44225,71,4,f +11443,44294,71,2,f +11443,44728,0,2,f +11443,4477,72,2,f +11443,4519,71,1,f +11443,4595,71,1,f +11443,4697b,71,1,f +11443,4716,71,1,f +11443,50950,71,8,f +11443,53451,179,3,f +11443,55013,72,1,f +11443,55981,71,2,f +11443,55982,0,2,f +11443,57539,4,2,f +11443,57585,71,1,f +11443,58176,36,1,f +11443,58247,0,2,f +11443,59230,0,8,f +11443,59426,72,1,f +11443,59443,0,1,f +11443,59443,72,2,f +11443,59443,4,1,f +11443,59900,71,6,f +11443,6005,0,4,f +11443,60478,72,2,f +11443,60849,71,2,f +11443,60897,71,2,f +11443,61184,71,5,f +11443,6141,72,8,f +11443,6141,14,7,f +11443,6141,70,2,f +11443,6192,72,2,f +11443,62462,71,1,f +11443,64567,80,1,f +11443,6588,47,1,f +11443,6636,71,4,f +11443,73983,72,8,f +11443,75937,0,1,f +11443,75937,179,1,f +11443,87079,71,4,f +11443,87079,0,2,f +11443,87087,71,12,f +11443,87087,4,8,f +11443,90194,71,8,f +11443,93273,70,1,f +11443,970c00,308,1,f +11443,970c00pr0643,15,2,f +11443,973pr2142c01,15,2,f +11443,973pr2143c01,308,1,f +11443,98313,179,3,f +11443,98585,71,7,f +11443,99207,71,2,f +11444,3002,4,1,f +11444,3004,15,1,f +11444,3010,15,1,f +11444,3020,1,1,f +11444,3022,1,1,f +11444,3039,14,1,f +11444,3062b,14,1,f +11444,3622,15,1,f +11444,3747b,4,1,f +11444,6141,46,1,f +11444,6141,46,1,t +11445,2362a,41,6,f +11445,2456,15,5,f +11445,2465,15,1,f +11445,2540,15,1,f +11445,2555,15,1,f +11445,2641,7,2,f +11445,3001,15,7,f +11445,3003,15,6,f +11445,3003,1,1,f +11445,3004,1,2,f +11445,3009,1,2,f +11445,3023,7,2,f +11445,3039,1,5,f +11445,3309stk01,9999,1,t +11445,3626bp02,14,1,f +11445,3626bp04,14,1,f +11445,3626bp05,14,1,f +11445,3629,7,1,f +11445,3795,7,2,f +11445,3867,2,1,f +11445,3957a,15,4,f +11445,3963,7,2,f +11445,4079,4,6,f +11445,4079,14,6,f +11445,4176,15,2,f +11445,4282,7,4,f +11445,4485,4,1,f +11445,4495a,4,1,f +11445,4495a,2,1,f +11445,4495a,14,1,f +11445,4495a,1,1,f +11445,4515,15,2,f +11445,4740,15,1,f +11445,4740,42,1,f +11445,6093,0,1,f +11445,6187,1,5,f +11445,6636,1,2,f +11445,970c00,2,1,f +11445,970c00,7,1,f +11445,970c00,0,1,f +11445,973p28c01,0,1,f +11445,973pr1245c01,1,1,f +11445,973px2c01,1,1,f +11446,11833,71,1,f +11446,14769pr0004,71,1,f +11446,16091,71,1,f +11446,18868a,41,1,f +11446,19981pr0039,41,1,f +11446,21968pr0003,34,1,f +11446,2412b,71,1,f +11446,2489,72,1,f +11446,298c02,71,1,f +11446,3065,47,1,f +11446,3070bpr0007,71,1,f +11446,32064a,71,1,f +11446,33078,4,1,f +11446,3937,71,1,f +11446,3941,41,1,f +11446,4070,71,2,f +11446,4599b,14,1,f +11446,4740,34,1,f +11446,59900,34,2,f +11446,60474,71,1,f +11446,6134,71,1,f +11446,6141,34,8,f +11446,6587,28,1,f +11446,99207,71,1,f +11447,4081b,15,4,f +11447,4081b,4,4,f +11447,4081b,0,4,f +11447,4085b,0,4,f +11447,4085b,1,4,f +11447,4085b,4,4,f +11453,3702,0,20,f +11454,2420,1,4,f +11454,2421,0,1,f +11454,2446,15,1,f +11454,2447,41,1,f +11454,2452,15,1,f +11454,2460,1,1,f +11454,2476a,1,2,f +11454,2479,0,1,f +11454,2483,41,1,f +11454,298c02,15,2,f +11454,3004,7,1,f +11454,3005,15,4,f +11454,3020,7,1,f +11454,3022,15,2,f +11454,3023,15,1,f +11454,3023,4,2,f +11454,3024,15,2,f +11454,3024,36,1,f +11454,3031,15,1,f +11454,3176,4,1,f +11454,3460,1,2,f +11454,3626apr0001,14,1,f +11454,3665,4,2,f +11454,3700,15,2,f +11454,3710,15,1,f +11454,3710,1,1,f +11454,3794a,15,1,f +11454,3941,4,2,f +11454,3941,0,2,f +11454,4006,0,1,f +11454,4085b,7,1,f +11454,4150,4,2,f +11454,4162,7,4,f +11454,4276b,1,1,f +11454,4286,4,2,f +11454,4315,15,1,f +11454,4477,1,1,f +11454,4488,15,1,f +11454,4504,1,1,f +11454,4590,15,1,f +11454,4599a,4,3,f +11454,4873,15,2,f +11454,6141,4,2,f +11454,6141,36,2,f +11454,6141,46,2,f +11454,970c00,0,1,f +11454,973p0ac01,1,1,f +11455,10b,2,1,f +11455,15,0,2,f +11455,15,1,1,f +11455,17,0,2,f +11455,17,1,1,f +11455,21,47,2,f +11455,242c01,4,4,f +11455,29c,14,2,f +11455,3001a,4,2,f +11455,3001a,1,2,f +11455,3002a,4,2,f +11455,3003,0,2,f +11455,3003,4,4,f +11455,3003,1,2,f +11455,3004,47,2,f +11455,3004,4,21,f +11455,3004,1,4,f +11455,3005,4,18,f +11455,3005,1,4,f +11455,3006,4,2,f +11455,3007,4,2,f +11455,3008,4,12,f +11455,3008,1,4,f +11455,3009,4,12,f +11455,3009,1,4,f +11455,3010,1,4,f +11455,3010,47,2,f +11455,3010,4,10,f +11455,3010pb035e,1,1,f +11455,3010pb035e,4,1,f +11455,3020,1,2,f +11455,3020,4,2,f +11455,3021,4,2,f +11455,3021,1,2,f +11455,3022,4,2,f +11455,3022,1,2,f +11455,3023,4,2,f +11455,3023,1,2,f +11455,3024,4,5,f +11455,3029,1,2,f +11455,3030,1,1,f +11455,3030,4,1,f +11455,3032,1,1,f +11455,3034,1,4,f +11455,3035,1,2,f +11455,3036,1,1,f +11455,3037,1,4,f +11455,3039,47,2,f +11455,3039,4,4,f +11455,3039,1,2,f +11455,3040a,4,2,f +11455,3062a,14,4,f +11455,3063b,4,4,f +11455,3081cc01,14,6,f +11455,3087cc01,14,2,f +11455,3127b,4,1,f +11455,3137c01,0,4,f +11455,3139,0,4,f +11455,3144,79,1,f +11455,3149c01,4,1,f +11455,3183a,1,1,f +11455,3183a,4,1,f +11455,3184,1,1,f +11455,3184,4,1,f +11455,3228a,1,2,f +11455,3297,1,16,f +11455,3297,47,1,f +11455,3298,1,8,f +11455,3299,1,4,f +11455,3300,1,2,f +11455,3308,4,2,f +11455,33bc01,14,2,f +11455,3430c02,0,1,f +11455,3464,4,4,f +11455,3471,2,1,f +11455,3480,7,2,f +11455,3481,4,2,f +11455,3483,0,4,f +11455,3579,4,2,f +11455,3581,4,4,f +11455,3582,1,4,f +11455,3587,1,1,f +11455,3624,0,2,f +11455,3624,1,1,f +11455,3626a,14,4,f +11455,3633,1,4,f +11455,3641,0,8,f +11455,3659,4,4,f +11455,3660,4,8,f +11455,3660,1,2,f +11455,420,14,1,f +11455,421,14,1,f +11455,56823,0,1,f +11455,586c01,4,1,f +11455,604c01,14,1,f +11455,7049b,0,2,f +11455,7930,14,2,f +11455,8,1,4,f +11456,2412b,0,4,f +11456,2431,0,4,f +11456,2444,14,1,f +11456,2445,19,3,f +11456,2555,0,3,f +11456,2654,0,1,f +11456,2736,71,2,f +11456,2780,0,2,t +11456,2780,0,118,f +11456,2819,71,1,f +11456,2905,72,10,f +11456,3008,19,2,f +11456,3040b,0,1,f +11456,3068b,0,1,f +11456,32000,0,8,f +11456,32009,14,7,f +11456,32013,4,2,f +11456,32013,0,10,f +11456,32014,0,1,f +11456,32015,0,2,f +11456,32016,0,1,f +11456,32034,0,12,f +11456,32039,0,19,f +11456,32054,4,35,f +11456,32056,14,34,f +11456,32056,0,4,f +11456,32062,4,27,f +11456,32072,14,6,f +11456,32073,71,29,f +11456,32123b,71,1,t +11456,32123b,71,28,f +11456,32140,0,1,f +11456,32140,14,16,f +11456,32184,71,23,f +11456,32192,72,2,f +11456,32200,0,2,f +11456,32269,19,3,f +11456,32270,0,12,f +11456,32271,72,2,f +11456,32278,0,6,f +11456,32278,14,8,f +11456,32278,71,14,f +11456,32291,0,11,f +11456,32293,0,2,f +11456,32316,14,7,f +11456,32316,72,6,f +11456,32316,71,3,f +11456,32316,0,2,f +11456,32348,4,1,f +11456,32449,0,14,f +11456,32523,14,4,f +11456,32523,0,6,f +11456,32524,0,2,f +11456,32524,71,5,f +11456,32524,14,2,f +11456,32525,0,2,f +11456,32525,14,2,f +11456,32525,71,8,f +11456,32525,72,2,f +11456,32526,0,7,f +11456,32526,1,2,f +11456,32526,14,9,f +11456,32556,19,7,f +11456,33299a,0,11,f +11456,3460,71,3,f +11456,3647,72,4,f +11456,3647,72,1,t +11456,3648b,72,1,f +11456,3673,71,8,f +11456,3673,71,1,t +11456,3703,0,1,f +11456,3705,0,24,f +11456,3706,0,12,f +11456,3707,0,5,f +11456,3708,0,3,f +11456,3713,71,1,t +11456,3713,71,50,f +11456,3737,0,1,f +11456,3743,71,8,f +11456,3749,19,11,f +11456,3894,0,1,f +11456,3895,0,1,f +11456,3941,0,3,f +11456,3941,46,1,f +11456,4019,71,7,f +11456,40490,14,6,f +11456,40490,72,2,f +11456,40490,71,7,f +11456,40490,0,6,f +11456,41239,14,4,f +11456,41239,71,3,f +11456,41677,4,10,f +11456,41896,71,4,f +11456,42003,14,23,f +11456,4274,71,12,f +11456,4274,71,1,t +11456,43093,1,78,f +11456,43857,14,2,f +11456,44294,71,8,f +11456,44350,14,1,f +11456,44351,14,1,f +11456,4477,71,1,f +11456,44809,71,1,f +11456,4519,71,59,f +11456,45982,0,4,f +11456,4716,71,1,f +11456,48989,71,5,f +11456,55013,72,4,f +11456,59426,72,7,f +11456,59443,71,37,f +11456,60483,71,12,f +11456,6141,36,1,t +11456,6141,36,4,f +11456,6141,41,4,f +11456,6141,41,1,t +11456,61904,72,1,f +11456,61905,72,1,t +11456,61927a,71,1,f +11456,63213,9999,1,t +11456,6536,72,53,f +11456,6538b,19,1,f +11456,6539,4,1,f +11456,6542a,72,2,f +11456,6558,1,49,f +11456,6587,72,12,f +11456,6589,19,1,f +11456,6628,0,2,f +11456,6629,0,7,f +11456,6632,14,6,f +11456,6632,0,8,f +11456,6641,4,1,f +11456,75c10,0,3,f +11456,75c11,0,2,f +11459,58121,71,1,f +11460,2340,8,3,f +11460,2413,6,4,f +11460,2432,0,1,f +11460,2445,0,1,f +11460,2555,8,2,f +11460,2655,7,1,f +11460,2780,0,2,f +11460,2780,0,1,t +11460,3004,0,1,f +11460,30141,8,2,f +11460,30157,7,1,f +11460,30167,6,1,f +11460,3021,6,2,f +11460,3022,4,1,f +11460,3023,4,3,f +11460,3032,4,1,f +11460,30332,0,1,f +11460,3034,6,1,f +11460,3039,7,2,f +11460,3062b,0,2,f +11460,32123b,7,1,t +11460,32123b,7,1,f +11460,3464,4,1,f +11460,3622,7,2,f +11460,3626bpr0247,14,1,f +11460,3701,7,1,f +11460,3710,7,2,f +11460,3747a,7,1,f +11460,3794a,7,4,f +11460,3829c01,7,1,f +11460,3832,8,2,f +11460,4150,4,2,f +11460,41767,7,1,f +11460,41768,7,1,f +11460,41769,4,1,f +11460,41770,4,1,f +11460,4185,7,1,f +11460,42610,7,2,f +11460,4266,4,1,f +11460,4287,6,2,f +11460,43337,7,2,f +11460,4865a,47,1,f +11460,4871,7,1,f +11460,51011,0,2,f +11460,6587,8,1,f +11460,970c00,0,1,f +11460,973pb0391c01,19,1,f +11461,298c02,0,1,f +11461,3004,19,1,f +11461,30141,8,1,f +11461,30147,7,1,f +11461,30149,19,1,f +11461,30150,6,1,f +11461,30155,19,4,f +11461,30157,8,2,f +11461,30161,47,1,f +11461,30162,0,1,f +11461,30167,6,1,f +11461,30169,0,2,f +11461,3022,0,1,f +11461,3035,7,1,f +11461,3044c,19,1,f +11461,3068bpx19,19,1,f +11461,3069b,0,1,f +11461,3069bpa0,19,1,f +11461,3483,0,4,f +11461,3626bpa3,14,1,f +11461,3829c01,7,1,f +11461,3832,7,1,f +11461,3837,8,1,f +11461,3841,8,1,f +11461,4625,7,1,f +11461,970c00,0,1,f +11461,973pb0391c01,19,1,f +11462,15522pr0002,1,1,f +11462,16816,27,1,f +11462,3068bpr0014,15,1,f +11462,88646,0,1,f +11462,93090,29,1,f +11462,970x119,14,1,f +11462,973pr2605c01,27,1,f +11463,2654,0,1,f +11463,2695,7,6,f +11463,2696,0,6,f +11463,2780,0,73,f +11463,2825,8,2,f +11463,2905,0,4,f +11463,2994,7,2,f +11463,30285,7,4,f +11463,30391,0,4,f +11463,3069b,7,2,f +11463,32000,0,4,f +11463,32002,8,11,f +11463,32009,25,2,f +11463,32015,7,12,f +11463,32017,8,6,f +11463,32034,0,2,f +11463,32034,25,1,f +11463,32039,0,4,f +11463,32039,25,1,f +11463,32054,0,16,f +11463,32056,0,6,f +11463,32062,0,12,f +11463,32068,0,5,f +11463,32069,0,2,f +11463,32073,0,1,f +11463,32123b,7,10,f +11463,32138,0,4,f +11463,32140,8,4,f +11463,32140,0,8,f +11463,32140,25,4,f +11463,32140,7,2,f +11463,32199,179,2,f +11463,32202,179,1,f +11463,32250,25,2,f +11463,32270,7,2,f +11463,32271,7,4,f +11463,32271,0,4,f +11463,32278,7,2,f +11463,32291,0,2,f +11463,32310,148,2,f +11463,32310,25,1,f +11463,32316,0,6,f +11463,32348,0,2,f +11463,32449,25,2,f +11463,32523,0,3,f +11463,32523,7,2,f +11463,32525,0,2,f +11463,32525,25,2,f +11463,32526,0,8,f +11463,32527,25,2,f +11463,32527,148,5,f +11463,32528,148,5,f +11463,32528,25,2,f +11463,32534,148,3,f +11463,32535,148,3,f +11463,32556,7,13,f +11463,32557,8,4,f +11463,32557,7,4,f +11463,32557,0,5,f +11463,32558,4,2,f +11463,32577,0,1,f +11463,3647,7,3,f +11463,3705,0,13,f +11463,3706,0,11,f +11463,3707,0,2,f +11463,3708,0,4,f +11463,3713,7,12,f +11463,3737,0,3,f +11463,3749,7,2,f +11463,4032a,0,2,f +11463,40490,25,1,f +11463,40490,0,2,f +11463,41669,41,4,f +11463,41669,36,4,f +11463,41677,0,6,f +11463,41678,0,4,f +11463,41752,8,1,f +11463,4185,7,4,f +11463,4274,7,23,f +11463,43093,0,22,f +11463,43474,9999,1,t +11463,4519,0,11,f +11463,6536,0,3,f +11463,6536,25,1,f +11463,6538b,8,2,f +11463,6538b,36,1,f +11463,6538b,0,2,f +11463,6558,0,23,f +11463,6578,0,2,f +11463,6592,0,1,f +11463,6594,0,2,f +11463,6595,7,2,f +11463,6628,0,2,f +11463,6629,8,2,f +11463,71509,0,4,f +11463,75535,25,1,f +11463,78c02,179,6,f +11463,78c06,179,1,f +11463,78c19,179,1,f +11463,motor6,8,1,f +11464,3034,15,4,f +11464,992,1,1,f +11465,3062b,70,3,f +11465,3062b,72,1,f +11465,3623,19,4,f +11465,4589,25,1,f +11465,4733,71,1,f +11465,60849,71,1,f +11465,6117,72,1,f +11465,6141,25,2,f +11466,2412b,72,2,f +11466,2436,0,2,f +11466,2540,72,3,f +11466,3003,15,1,f +11466,30031,0,1,f +11466,30088,179,2,f +11466,30153,41,1,f +11466,30153,182,1,f +11466,3020,72,2,f +11466,3020,28,1,f +11466,3021,4,3,f +11466,3022,72,2,f +11466,30414,4,2,f +11466,3626bpr0642,14,1,f +11466,3626bpr0761,36,1,f +11466,3673,71,2,f +11466,3673,71,1,t +11466,3700,0,2,f +11466,3710,4,2,f +11466,3794b,72,3,f +11466,41769,4,1,f +11466,41770,4,1,f +11466,44301a,14,4,f +11466,44302a,0,4,f +11466,44676,72,2,f +11466,44728,0,1,f +11466,47456,4,2,f +11466,48729b,71,2,f +11466,48729b,71,1,t +11466,50950,4,8,f +11466,53989,0,2,f +11466,54200,72,5,f +11466,54200,72,1,t +11466,54200,46,1,t +11466,54200,46,2,f +11466,59231pr0003,378,1,f +11466,59275,14,2,f +11466,59275,14,2,t +11466,6019,0,2,f +11466,6041,179,2,f +11466,60478,71,4,f +11466,61409,4,2,f +11466,6141,14,8,f +11466,6141,14,1,t +11466,63868,4,2,f +11466,87754,71,1,f +11466,89159,46,1,f +11466,92280,0,3,f +11466,92290,297,1,f +11466,92943pr0001,72,1,f +11466,92947,15,2,f +11466,970c00pr0198,72,1,f +11466,970c00pr0199,72,1,f +11466,973pr1734c01,72,1,f +11466,973pr1735c01,72,1,f +11468,2357,4,5,f +11468,2420,4,8,f +11468,2420,71,8,f +11468,2431,0,2,f +11468,2431,71,5,f +11468,2431,15,8,f +11468,2445,71,5,f +11468,2450,4,4,f +11468,2450,71,8,f +11468,2450,0,4,f +11468,2456,4,2,f +11468,2465,0,4,f +11468,3003,4,8,f +11468,3004,4,34,f +11468,3004,0,16,f +11468,3004,71,16,f +11468,3005,4,17,f +11468,3005,70,6,f +11468,3007,15,3,f +11468,3007,4,3,f +11468,3008,4,4,f +11468,3008,0,2,f +11468,3009,0,1,f +11468,3009,4,3,f +11468,3010,4,10,f +11468,3010,0,6,f +11468,30137,70,2,f +11468,3020,71,2,f +11468,3020,0,2,f +11468,3020,4,13,f +11468,3021,0,3,f +11468,3021,71,11,f +11468,3021,4,5,f +11468,3022,4,16,f +11468,3022,0,2,f +11468,3022,71,1,f +11468,3023,47,3,f +11468,3023,0,7,f +11468,3024,0,14,f +11468,3024,71,2,f +11468,3024,47,6,f +11468,3024,4,26,f +11468,3024,70,2,f +11468,3031,0,4,f +11468,3034,71,1,f +11468,3034,0,1,f +11468,3037,4,67,f +11468,3038,4,10,f +11468,3039,4,17,f +11468,3040b,4,13,f +11468,3041,4,5,f +11468,3044c,4,1,f +11468,3045,4,12,f +11468,3048c,4,2,f +11468,3068b,0,2,f +11468,3069b,40,14,f +11468,3069b,15,5,f +11468,3069b,71,11,f +11468,3069b,4,4,f +11468,3069b,0,2,f +11468,3069b,72,11,f +11468,3070b,4,10,f +11468,3070b,70,4,f +11468,3070b,72,11,f +11468,3070b,71,10,f +11468,32028,71,15,f +11468,32028,0,6,f +11468,3460,72,2,f +11468,3460,4,2,f +11468,3622,4,3,f +11468,3622,70,6,f +11468,3623,4,2,f +11468,3623,71,2,f +11468,3623,0,4,f +11468,3666,0,3,f +11468,3666,4,4,f +11468,3710,0,8,f +11468,3710,4,18,f +11468,3710,70,4,f +11468,3710,71,1,f +11468,3794b,4,5,f +11468,3794b,72,38,f +11468,3794b,71,19,f +11468,3795,4,4,f +11468,3795,71,1,f +11468,3832,4,2,f +11468,3832,71,1,f +11468,3857,72,1,f +11468,3865,72,2,f +11468,4070,15,50,f +11468,4070,4,8,f +11468,4162,71,6,f +11468,4274,71,26,f +11468,4282,71,2,f +11468,4477,71,2,f +11468,48336,71,7,f +11468,54200,71,2,f +11468,54200,4,10,f +11468,6019,4,14,f +11468,60592,15,26,f +11468,60593,15,2,f +11468,60594,15,1,f +11468,60601,47,26,f +11468,60602,47,2,f +11468,60603,47,1,f +11468,6111,4,3,f +11468,6112,0,4,f +11468,6141,71,2,f +11468,6541,4,26,f +11468,6636,71,9,f +11468,6636,4,1,f +11470,2420,15,2,f +11470,3001,15,1,f +11470,3004,15,1,f +11470,3005pb013,15,1,f +11470,3005pr0003,15,2,f +11470,3021,15,1,f +11470,3022,15,3,f +11470,3023,15,1,f +11470,3023,0,1,f +11470,3024,15,2,f +11470,3035,4,1,f +11470,3039,15,2,f +11470,3040b,15,2,f +11470,3298,15,1,f +11470,3660,15,3,f +11470,3678b,15,1,f +11470,3794b,15,1,f +11470,3836,6,1,f +11470,3941,0,1,f +11470,4032a,4,1,f +11470,4070,15,4,f +11470,48729a,0,3,f +11470,49668,15,2,f +11470,50950,15,2,f +11470,54200,15,6,f +11470,59900,25,1,f +11470,60474,0,1,f +11470,6141,0,3,f +11471,2526,1,1,t +11471,2526,1,1,f +11471,2545,0,1,f +11471,2561,70,1,f +11471,3626bpr0411,14,1,f +11471,970c00,15,1,f +11471,973pr1441c01,4,1,f +11472,3023,2,1,f +11472,3024,70,1,f +11472,3062b,14,1,f +11472,3665,14,1,f +11472,4286,14,2,f +11472,4287,14,2,f +11474,2420,27,1,f +11474,3004,4,1,f +11474,3024,4,2,f +11474,3024,0,1,f +11474,3665,4,2,f +11474,3794a,4,1,f +11474,6091,4,2,f +11474,6091,0,1,f +11479,10830pat0001,0,1,f +11479,2528pr0001,0,1,f +11479,30154,72,1,f +11479,3626bpr0314,14,1,f +11479,3626bpr0892,14,1,f +11479,3626cpb0323,14,1,f +11479,3899,45,1,f +11479,59363,70,1,f +11479,62810,484,1,f +11479,970c00,19,1,f +11479,970c00,25,1,f +11479,970d09,0,1,f +11479,973pb1377c01,0,1,f +11479,973pb1378c01,272,1,f +11479,973pb1379c01,25,1,f +11480,2780,0,5,f +11480,2907,71,1,f +11480,32062,0,1,f +11480,32174,72,7,f +11480,32270,71,1,f +11480,32482,86,1,f +11480,3706,0,1,f +11480,41669,33,2,f +11480,43093,1,3,f +11480,4519,71,4,f +11480,47296,72,2,f +11480,47299,179,2,f +11480,47306,86,1,f +11480,50899,179,1,f +11480,50899pr0002,179,1,f +11480,50900,72,1,f +11480,50901,72,1,f +11480,50903,14,1,f +11480,50919,179,2,f +11480,50920,86,2,f +11480,50921,86,1,f +11480,50922,86,1,f +11480,50923,72,1,f +11480,50925,86,1,f +11480,50926,179,1,f +11480,50929,86,1,f +11480,50930pat01,86,2,f +11481,10509pr0003,15,1,f +11481,11203,72,1,f +11481,11211,4,3,f +11481,12939,71,2,f +11481,13548,1,4,f +11481,13744pr0002,1,1,f +11481,13745,297,1,f +11481,14226c31,0,1,t +11481,14226c31,0,2,f +11481,14274,9999,1,t +11481,14413,71,12,f +11481,15207,70,1,f +11481,2343,297,1,f +11481,2357,71,2,f +11481,2431,70,3,f +11481,2431,71,1,f +11481,2444,72,2,f +11481,2445,72,1,f +11481,2446,179,1,f +11481,2453b,71,8,f +11481,2454a,71,2,f +11481,2456,70,2,f +11481,2458,19,2,f +11481,2465,71,1,f +11481,2489,70,1,f +11481,2540,72,1,f +11481,2566,0,1,f +11481,2570,70,2,f +11481,2586pr0009,71,1,f +11481,2587pr0031,0,1,f +11481,2587pr0032,179,1,f +11481,2594,71,1,f +11481,2639,72,2,f +11481,2653,0,2,f +11481,2654,72,3,f +11481,2780,0,13,f +11481,2780,0,5,t +11481,2817,0,1,f +11481,3001,72,2,f +11481,3002,71,4,f +11481,3003,4,1,f +11481,3003,19,2,f +11481,3004,71,68,f +11481,3004,15,1,f +11481,30044,71,5,f +11481,30046,0,6,f +11481,3005,71,34,f +11481,3005,28,16,f +11481,3005,72,30,f +11481,30076,0,1,f +11481,3009,71,6,f +11481,3009,72,4,f +11481,3010,71,33,f +11481,3010,0,2,f +11481,30134,70,1,f +11481,30136,70,2,f +11481,30137,70,8,f +11481,30153,36,2,f +11481,3020,72,4,f +11481,3020,70,1,f +11481,3021,2,4,f +11481,3021,0,1,f +11481,3022,4,1,f +11481,3023,15,1,f +11481,3023,1,2,f +11481,3023,70,7,f +11481,3023,0,2,f +11481,3023,72,2,f +11481,30237a,0,1,f +11481,30237a,72,8,f +11481,30273,80,1,f +11481,3028,72,1,f +11481,3029,72,2,f +11481,3029,2,2,f +11481,3031,1,1,f +11481,3031,72,4,f +11481,3031,2,6,f +11481,3032,2,2,f +11481,3032,72,2,f +11481,3034,4,1,f +11481,3035,70,1,f +11481,3036,70,2,f +11481,30374,0,1,f +11481,3040b,0,4,f +11481,3040b,71,12,f +11481,30414,72,2,f +11481,3048c,297,3,f +11481,30552,72,5,f +11481,3068b,70,4,f +11481,3068b,1,4,f +11481,32013,1,1,f +11481,32014,4,2,f +11481,32028,71,4,f +11481,32034,15,3,f +11481,32039,71,1,f +11481,32064a,72,2,f +11481,32064a,0,3,f +11481,32199,0,1,f +11481,3460,70,3,f +11481,3622,19,2,f +11481,3622,72,10,f +11481,3623,70,2,f +11481,3626cpr0389,14,1,f +11481,3626cpr0743,14,1,f +11481,3626cpr1223,14,1,f +11481,3626cpr1224,14,1,f +11481,3626cpr1225,14,1,f +11481,3626cpr1229,14,1,f +11481,3626cpr1581,14,1,f +11481,3660,71,4,f +11481,3660,70,36,f +11481,3665,72,8,f +11481,3665,70,4,f +11481,3666,70,4,f +11481,3673,71,1,t +11481,3673,71,1,f +11481,3676,72,2,f +11481,3685,72,2,f +11481,3700,72,22,f +11481,3700,71,1,f +11481,3700,70,10,f +11481,3705,0,3,f +11481,3710,72,7,f +11481,3710,2,4,f +11481,3713,71,1,t +11481,3713,71,2,f +11481,3749,19,1,f +11481,3794b,72,1,f +11481,3794b,71,2,f +11481,3795,70,1,f +11481,3832,71,1,f +11481,3844,0,1,f +11481,3844,80,1,f +11481,3846pr0004b,71,2,f +11481,3846pr0005,71,2,f +11481,3848,72,1,f +11481,3849,0,1,f +11481,3937,1,2,f +11481,3941,70,8,f +11481,3958,72,2,f +11481,4032a,4,4,f +11481,4162,70,2,f +11481,4162,1,1,f +11481,41677,4,1,f +11481,4207,70,1,f +11481,4286,1,2,f +11481,43093,1,2,f +11481,43888,70,2,f +11481,43888,72,4,f +11481,43898,0,1,f +11481,44294,71,2,f +11481,44302a,0,2,f +11481,44358,70,1,f +11481,4460b,72,14,f +11481,4460b,1,2,f +11481,4495b,1,1,f +11481,4495b,0,1,f +11481,4495b,297,1,f +11481,4495b,4,1,f +11481,4497,308,1,f +11481,4498,70,1,f +11481,4499,70,1,f +11481,4519,71,2,f +11481,4623,72,1,f +11481,4738a,70,1,f +11481,4739a,70,1,f +11481,47457,1,2,f +11481,48493,0,1,f +11481,48723,70,4,f +11481,50231,272,1,f +11481,50950,1,2,f +11481,53705,148,1,f +11481,53705,148,1,t +11481,54200,297,2,t +11481,54200,4,8,f +11481,54200,1,2,t +11481,54200,297,4,f +11481,54200,1,4,f +11481,54200,4,1,t +11481,56823c50,0,1,f +11481,59232,179,1,f +11481,59426,72,2,f +11481,59443,14,2,f +11481,59900,297,8,f +11481,6040217,47,1,f +11481,60471,71,2,f +11481,60471,0,1,f +11481,60474,308,1,f +11481,60476,0,4,f +11481,60581,72,2,f +11481,60583b,71,4,f +11481,60621,148,2,f +11481,60808,71,21,f +11481,60897,0,2,f +11481,6091,1,2,f +11481,6112,71,5,f +11481,6126b,182,9,f +11481,6134,4,2,f +11481,6141,70,4,f +11481,6141,297,1,t +11481,6141,70,2,t +11481,6141,34,1,t +11481,6141,15,4,f +11481,6141,15,1,t +11481,6141,34,2,f +11481,6141,297,4,f +11481,6182,71,5,f +11481,62808,72,2,f +11481,63965,70,4,f +11481,63965,70,3,t +11481,64390,70,2,f +11481,64644,308,8,f +11481,64647,4,1,f +11481,64647,1,1,f +11481,64647,4,1,t +11481,64647,1,1,t +11481,6541,1,2,f +11481,6636,4,2,f +11481,71015,82,1,f +11481,76764,179,1,t +11481,76764,179,1,f +11481,76768,72,2,f +11481,85984,1,47,f +11481,87081,72,4,f +11481,87421,71,18,f +11481,87544,71,22,f +11481,87620,72,4,f +11481,87620,71,2,f +11481,87620,28,12,f +11481,88393,71,8,f +11481,89519,148,1,f +11481,89520,0,1,f +11481,89523,2,3,f +11481,89523,72,7,f +11481,90195,71,16,f +11481,90258,72,4,f +11481,92338,72,1,f +11481,92438,72,1,f +11481,92946,4,2,f +11481,93606,4,1,f +11481,94161,70,1,f +11481,95228,40,1,f +11481,96874,25,1,t +11481,96904,334,1,f +11481,96905,334,1,f +11481,96906,334,1,f +11481,96907,334,1,f +11481,970c00,0,1,f +11481,970c00pr0516,272,1,f +11481,970c00pr0518,0,2,f +11481,970c10pr0520,72,1,f +11481,970x026,72,2,f +11481,973pr0090c01,72,1,f +11481,973pr0100c01,72,1,f +11481,973pr2392c01,72,1,f +11481,973pr2394c01,0,2,f +11481,973pr2395c01,0,1,f +11481,973pr2401c01,272,1,f +11481,98283,28,22,f +11481,98283,72,16,f +11481,98370,148,1,f +11481,98370,297,1,f +11481,98560,72,4,f +11481,99563,334,1,f +11483,3002,0,3,f +11483,3002,1,2,f +11483,3002,7,2,f +11483,3002,19,2,f +11483,3004,0,4,f +11483,3004,7,3,f +11483,3004,1,3,f +11483,3004,19,4,f +11483,3032,0,1,f +11483,3032,1,1,f +11483,3040b,7,2,f +11483,3040b,19,2,f +11483,3043,0,1,f +11483,3043,1,1,f +11483,3045,19,2,f +11483,3045,7,2,f +11483,32059,8,1,f +11483,4079,7,1,f +11484,2555,0,2,f +11484,3002,25,5,f +11484,3003,25,4,f +11484,3004,25,2,f +11484,30093,2,2,f +11484,3010,25,1,f +11484,3023,14,6,f +11484,3023,73,12,f +11484,3023,0,1,f +11484,3023,15,4,f +11484,3024,0,4,f +11484,3024,14,3,f +11484,3024,15,3,f +11484,3024,73,12,f +11484,3028,28,1,f +11484,3062b,47,1,f +11484,3062b,2,2,f +11484,3622,25,1,f +11484,3623,15,4,f +11484,3623,14,2,f +11484,3623,0,4,f +11484,3710,14,3,f +11484,47905,0,2,f +11484,48336,0,2,f +11484,6141,0,2,f +11485,10p01,2,1,f +11485,15,0,1,f +11485,15,15,4,f +11485,15,14,1,f +11485,15,1,1,f +11485,17,4,1,f +11485,17,1,2,f +11485,17,15,4,f +11485,21,47,1,f +11485,3001a,15,1,f +11485,3003,4,1,f +11485,3004,15,1,f +11485,3004,4,17,f +11485,3005,4,16,f +11485,3008,4,6,f +11485,3009,4,26,f +11485,3009,15,4,f +11485,3010,4,19,f +11485,3010,15,6,f +11485,3010pb036e,15,1,f +11485,3020,15,2,f +11485,3021,15,1,f +11485,3022,15,6,f +11485,3023,4,1,f +11485,3023,15,6,f +11485,3024,15,4,f +11485,3024,4,3,f +11485,3030,15,1,f +11485,3030,0,3,f +11485,3035,0,4,f +11485,3035,15,1,f +11485,3036,0,1,f +11485,3063b,4,2,f +11485,3068b,7,24,f +11485,3070a,15,1,f +11485,3081cc01,15,11,f +11485,3137c01,0,2,f +11485,3137c01,15,1,f +11485,3139,0,6,f +11485,3307,4,1,f +11485,3308,4,3,f +11485,3460,4,2,f +11485,3471,2,1,f +11485,3579,4,4,f +11485,3581,15,2,f +11485,3582,15,2,f +11485,3596,15,1,f +11485,3624,4,1,f +11485,3624,0,1,f +11485,3624,15,3,f +11485,3625,0,1,f +11485,3625,4,1,f +11485,3626a,14,7,f +11485,7284,15,1,f +11485,7930,15,4,f +11487,2814,14,1,f +11487,4700,14,1,f +11487,70496,0,1,f +11488,3185,4,18,f +11488,3186,4,4,f +11488,3187,4,4,f +11488,3190,4,1,f +11488,3190,1,1,f +11488,3191,4,1,f +11488,3191,1,1,f +11488,3192,1,1,f +11488,3193,1,1,f +11488,3194,14,1,f +11488,3195,14,1,f +11489,2342,0,1,f +11489,2357,0,2,f +11489,2412b,42,18,f +11489,2419,8,4,f +11489,2420,4,4,f +11489,2431,8,11,f +11489,2432,0,1,f +11489,2450,8,2,f +11489,2458,4,3,f +11489,2460,6,2,f +11489,2540,0,2,f +11489,2547,8,1,f +11489,2548,8,1,f +11489,2555,0,6,f +11489,2607,0,1,f +11489,2609,0,1,f +11489,2639,0,2,f +11489,2654,7,15,f +11489,3001,0,2,f +11489,3002,0,1,f +11489,3003,8,4,f +11489,3003,0,4,f +11489,3003,4,2,f +11489,3004,0,5,f +11489,3004,4,9,f +11489,3006,4,1,f +11489,3007,0,2,f +11489,30084,0,1,f +11489,3010,4,1,f +11489,30117pb04l,42,1,f +11489,30117pb04r,42,1,f +11489,30195pb01,8,4,f +11489,30198,8,3,f +11489,3020,6,8,f +11489,30201,0,4,f +11489,30202,8,4,f +11489,3021,4,1,f +11489,3022,6,15,f +11489,3023,4,6,f +11489,3023,42,5,f +11489,3030,6,2,f +11489,3031,4,3,f +11489,3034,4,3,f +11489,3034,0,4,f +11489,3037,0,2,f +11489,30385,383,2,f +11489,3039,8,7,f +11489,3039pc0,8,2,f +11489,3040b,8,4,f +11489,3048c,0,2,f +11489,3062b,4,10,f +11489,3068b,8,2,f +11489,3068bp00,0,3,f +11489,3068bpx14,0,5,f +11489,3069b,8,2,f +11489,3069bpa2,8,4,f +11489,32062,0,2,f +11489,3297,0,2,f +11489,3298,0,13,f +11489,3298pb020,0,6,f +11489,3456,0,2,f +11489,3585,0,1,f +11489,3586,0,1,f +11489,3622,0,2,f +11489,3623,6,2,f +11489,3626bpb0092,14,2,f +11489,3626bpb0108,14,1,f +11489,3626bpx113,14,1,f +11489,3639,0,2,f +11489,3640,0,2,f +11489,3660,0,2,f +11489,3679,7,4,f +11489,3680,4,4,f +11489,3700,1,2,f +11489,3710,4,2,f +11489,3749,7,6,f +11489,3794a,1,1,f +11489,3795,4,1,f +11489,3832,0,1,f +11489,3933,8,2,f +11489,3934,8,2,f +11489,3941,42,13,f +11489,3956,6,1,f +11489,3959,0,2,f +11489,4032a,0,2,f +11489,4151a,8,1,f +11489,4213,42,1,f +11489,4221,0,6,f +11489,4275b,8,2,f +11489,4276b,0,2,f +11489,4315,0,1,f +11489,4345b,42,1,f +11489,4346px6,42,1,f +11489,4590,0,2,f +11489,4623,0,4,f +11489,4625,8,1,f +11489,4857,0,1,f +11489,4859,0,2,f +11489,4865a,0,4,f +11489,5102c20,7,2,f +11489,57467,383,4,f +11489,59275,7,8,f +11489,6032,8,2,f +11489,6040,0,4,f +11489,6041,42,8,f +11489,6043,8,2,f +11489,6064,4,1,f +11489,6069,0,1,f +11489,6069px10,0,2,f +11489,6086,0,1,f +11489,6106,0,6,f +11489,6141,42,18,f +11489,6219,8,4,f +11489,6564,4,2,f +11489,6565,4,2,f +11489,6636,0,4,f +11489,70001pb01,0,1,f +11489,73092,0,2,f +11489,970x026,6,3,f +11489,970x026,4,1,f +11489,973pb0046c01,8,1,f +11489,973pb0048c01,8,2,f +11489,973px169c01,8,1,f +11490,3648a,7,4,f +11490,3691,7,1,f +11490,3700,4,2,f +11490,3706,0,2,f +11490,3711a,0,62,f +11490,3713,7,2,f +11490,3738,4,2,f +11490,768,7,1,f +11490,x186,7,1,f +11492,2412b,320,9,f +11492,2419,14,1,f +11492,2444,71,2,f +11492,2450,72,2,f +11492,2540,72,1,f +11492,2654,72,1,f +11492,2780,0,4,f +11492,2780,0,1,t +11492,2877,71,2,f +11492,30000,14,4,f +11492,3001,1,2,f +11492,30031,72,1,f +11492,3009,72,2,f +11492,30137,71,4,f +11492,30157,70,2,f +11492,30165,14,2,f +11492,30170,72,1,f +11492,30170,72,1,t +11492,30171,70,1,f +11492,3020,320,7,f +11492,3021,14,4,f +11492,3021,71,7,f +11492,3022,1,2,f +11492,3023,182,6,f +11492,3032,72,1,f +11492,30332,0,2,f +11492,30355,72,1,f +11492,30356,72,1,f +11492,30377,0,1,t +11492,30377,0,1,f +11492,3039,14,1,f +11492,30602pr0003,14,1,f +11492,3068b,15,2,f +11492,3068bpr0208,15,1,f +11492,3069bpr0086,71,1,f +11492,32001,4,1,f +11492,32028,2,3,f +11492,32059,72,1,f +11492,32530,4,1,f +11492,32532,71,1,f +11492,3622,14,2,f +11492,3626cpr0914,14,1,f +11492,3626cpr0920,14,1,f +11492,3666,14,5,f +11492,3673,71,2,f +11492,3673,71,1,t +11492,3700,4,2,f +11492,3710,4,2,f +11492,3747b,1,4,f +11492,3795,71,4,f +11492,3894,71,2,f +11492,3940b,72,4,f +11492,3941,42,1,f +11492,4070,71,2,f +11492,4081b,4,2,f +11492,4175,72,2,f +11492,42021,71,1,f +11492,42023,72,10,f +11492,4286,14,2,f +11492,4287,72,2,f +11492,4287,14,2,f +11492,43713,72,1,f +11492,43719,320,1,f +11492,43722,14,1,f +11492,43723,14,1,f +11492,44728,14,2,f +11492,44728,4,1,f +11492,45301,14,3,f +11492,4589,42,1,f +11492,47457,4,1,f +11492,47457,71,7,f +11492,48336,14,1,f +11492,4871,72,1,f +11492,50950,72,4,f +11492,52031,14,2,f +11492,60470a,4,2,f +11492,61072,0,6,f +11492,61184,71,3,f +11492,61409,14,4,f +11492,6141,42,10,f +11492,6141,42,2,t +11492,61678,14,2,f +11492,6239,72,1,f +11492,71155,0,1,f +11492,85984,72,5,f +11492,87079,14,1,f +11492,87989,27,1,t +11492,87989,27,1,f +11492,87991,19,1,f +11492,92280,0,2,f +11492,92579,47,1,f +11492,92593,72,2,f +11492,93273,14,3,f +11492,970c00,320,1,f +11492,970x308,326,1,f +11492,973pr1999c01,326,1,f +11492,973pr2012c01,19,1,f +11492,98086pr0002,326,1,f +11492,98087,288,1,f +11492,98088pat0002,288,1,f +11492,98089pat0002,288,1,f +11492,98653c02,326,1,f +11492,99809,148,1,f +11493,46281,46,1,f +11493,46281,182,1,t +11493,46281,45,3,f +11493,46281,46,1,t +11493,46281,182,3,f +11493,clikits004,182,1,f +11493,clikits004,46,1,f +11493,clikits021,462,1,f +11493,clikits032,35,1,f +11493,clikits033,35,1,f +11493,clikits034,46,1,f +11493,clikits089,45,1,f +11493,clikits089,182,1,f +11493,clikits090,45,1,f +11493,clikits090,182,1,f +11493,clikits091,45,1,f +11493,clikits091,182,1,f +11493,clikits125,462,1,f +11493,clikits198,89,1,f +11493,clikits199,89,1,f +11494,3021,14,1,f +11494,3021,72,1,f +11494,3068bpb0169,14,1,f +11494,3069bpb082,14,1,f +11496,10052,71,1,f +11496,10113,0,1,f +11496,11477,272,14,f +11496,11477,0,2,f +11496,11477,71,2,f +11496,15068,272,1,f +11496,15341,179,3,f +11496,15427pr0001,0,1,f +11496,15428pr0001,0,1,f +11496,15535,72,1,f +11496,15573,0,2,f +11496,15573,272,4,f +11496,15706,322,8,f +11496,15712,71,5,f +11496,16770,41,8,f +11496,18601,72,1,f +11496,18649,0,6,f +11496,18651,0,2,f +11496,18868a,41,1,f +11496,19981pr0001,41,1,f +11496,19981pr0002,41,1,f +11496,19981pr0003,41,1,f +11496,21445,0,2,f +11496,21845,0,1,f +11496,2412b,272,4,f +11496,2412b,179,9,f +11496,2419,71,2,f +11496,2540,0,3,f +11496,2540,71,5,f +11496,298c02,71,1,t +11496,298c02,71,1,f +11496,30028,0,4,f +11496,3003,71,2,f +11496,3005,272,2,f +11496,3020,272,2,f +11496,3020,0,2,f +11496,3020,14,1,f +11496,3020,322,1,f +11496,3021,322,6,f +11496,3021,71,6,f +11496,3022,72,3,f +11496,3023,19,1,f +11496,3023,0,4,f +11496,3045,71,2,f +11496,3069b,322,10,f +11496,3069bpr0153,0,1,f +11496,3070b,182,1,t +11496,3070b,182,1,f +11496,32064a,71,2,f +11496,3626cpr0896,78,1,f +11496,3626cpr1644,14,1,f +11496,3626cpr1765,78,1,f +11496,3675,272,2,f +11496,3701,71,1,f +11496,3710,272,1,f +11496,3710,322,1,f +11496,3937,14,1,f +11496,3938,0,1,f +11496,3941,41,1,f +11496,4286,322,2,f +11496,4287,71,2,f +11496,44567a,71,1,f +11496,44676,272,2,f +11496,4477,72,1,f +11496,4595,71,1,f +11496,4600,0,1,f +11496,4740,182,2,f +11496,4865b,41,4,f +11496,48729b,72,1,t +11496,48729b,72,1,f +11496,49668,0,2,f +11496,50231,72,1,f +11496,54200,272,1,t +11496,54200,41,2,f +11496,54200,41,1,t +11496,54200,71,14,f +11496,54200,182,1,f +11496,54200,71,1,t +11496,54200,272,2,f +11496,54200,182,1,t +11496,6019,0,2,f +11496,60476,71,2,f +11496,60477,72,2,f +11496,6091,272,2,f +11496,6131,72,1,f +11496,61409,71,5,f +11496,6141,72,2,t +11496,6141,72,3,f +11496,62360,41,2,f +11496,63868,0,5,f +11496,63965,70,1,f +11496,6553,0,2,f +11496,6632,71,2,f +11496,74967,0,4,f +11496,85984,0,2,f +11496,87580,272,1,f +11496,88072,71,1,f +11496,92747pr0002,52,1,f +11496,92747pr0003,52,1,f +11496,92747pr0004,52,1,f +11496,92747pr0005,52,1,f +11496,92747pr0006,52,1,f +11496,96874,25,1,t +11496,970c00,72,2,f +11496,970c00pr0628,0,1,f +11496,973pr2053c01,72,1,f +11496,973pr2590c01,0,1,f +11496,973pr2922c01,72,1,f +11496,98138,52,1,t +11496,98138,41,14,f +11496,98138,41,1,t +11496,98138,52,1,f +11496,98397,71,2,f +11496,98721,0,2,t +11496,98721,0,3,f +11496,99207,0,1,f +11496,99780,72,1,f +11496,99781,0,1,f +11500,2470,6,2,f +11500,2555,0,2,f +11500,2926,4,1,f +11500,30000,8,1,f +11500,30173a,7,1,f +11500,30175,0,1,f +11500,3020,0,2,f +11500,3022,7,1,f +11500,3062b,7,2,f +11500,3626bpx8,14,1,f +11500,3700,7,2,f +11500,3839b,4,1,f +11500,4286,6,2,f +11500,4529,0,2,f +11500,6134,4,1,f +11500,970x021,0,1,f +11500,973px14c01,4,1,f +11501,3010,15,2,f +11501,30115,4,2,f +11501,30173a,71,1,f +11501,30176,2,1,f +11501,3020,70,1,f +11501,3020,19,1,f +11501,3022,0,1,f +11501,3031,19,1,f +11501,3032,19,2,f +11501,3040b,15,4,f +11501,3069b,28,3,f +11501,32000,72,4,f +11501,3622,15,2,f +11501,3626bpr0654,78,1,f +11501,3673,71,2,f +11501,3673,71,1,t +11501,3794b,0,2,f +11501,3941,15,2,f +11501,4032a,0,1,f +11501,4085c,0,2,f +11501,4497,0,2,f +11501,59900,297,3,f +11501,6141,297,2,f +11501,6141,297,1,t +11501,6182,84,3,f +11501,6587,28,1,f +11501,87580,28,2,f +11501,88283,308,1,f +11501,88288pat0001,297,1,t +11501,88288pat0001,297,1,f +11501,970c00pr0150,0,1,f +11501,973pr1558c01,308,1,f +11502,2357,72,2,f +11502,2412b,71,1,f +11502,2417,10,3,f +11502,2417,288,3,f +11502,2419,72,7,f +11502,2423,2,6,f +11502,2431,0,4,f +11502,2432,72,3,f +11502,2445,0,1,f +11502,2449,320,15,f +11502,2450,28,2,f +11502,2454a,19,14,f +11502,2456,71,1,f +11502,2460,0,1,f +11502,2476a,71,1,f +11502,2530,72,1,t +11502,2530,72,1,f +11502,2571,41,1,f +11502,2587,135,1,f +11502,2780,0,3,t +11502,2780,0,12,f +11502,298c02,71,2,f +11502,298c02,71,1,t +11502,3002,71,6,f +11502,3003,320,2,f +11502,3003,28,16,f +11502,3003,72,17,f +11502,3004,320,3,f +11502,30043,0,2,f +11502,30048,0,1,f +11502,3008,72,12,f +11502,3009,72,1,f +11502,3009,19,15,f +11502,3010,0,2,f +11502,30135,378,1,f +11502,30136,19,24,f +11502,30136,72,29,f +11502,30136,308,3,f +11502,30137,72,19,f +11502,30141,72,1,f +11502,30153,47,1,f +11502,30157,70,3,f +11502,30176,2,10,f +11502,3020,72,3,f +11502,3021,72,9,f +11502,3022,72,1,f +11502,3022,0,3,f +11502,3023,320,40,f +11502,3023,71,2,f +11502,30237a,0,2,f +11502,3024,72,2,f +11502,3029,72,4,f +11502,3032,72,1,f +11502,3034,72,3,f +11502,3035,72,1,f +11502,3036,28,3,f +11502,30361b,288,1,f +11502,30363,19,2,f +11502,30367b,71,1,f +11502,3037,72,2,f +11502,30374,70,1,f +11502,3039,19,4,f +11502,3039,72,1,f +11502,3040b,28,32,f +11502,30414,71,5,f +11502,30464,72,8,f +11502,3048c,297,18,f +11502,3062b,320,54,f +11502,3062b,70,2,f +11502,3068b,320,2,f +11502,3068b,28,11,f +11502,3069b,70,1,f +11502,3069b,71,7,f +11502,3070b,19,8,f +11502,3070b,19,1,t +11502,32000,72,6,f +11502,32001,71,1,f +11502,32014,72,2,f +11502,32016,0,1,f +11502,32039,71,10,f +11502,32059,28,4,f +11502,32062,4,10,f +11502,32064a,71,4,f +11502,32073,71,1,f +11502,32184,0,1,f +11502,32199,0,1,f +11502,32270,0,1,f +11502,32271,72,3,f +11502,32291,72,1,f +11502,32316,72,2,f +11502,32523,72,2,f +11502,32530,72,2,f +11502,32556,19,1,f +11502,32557,71,2,f +11502,3308,72,6,f +11502,3455,72,1,f +11502,3460,72,1,f +11502,3626bpr0190,15,7,f +11502,3626bpr0501,78,1,f +11502,3626bpr0515b,78,1,f +11502,3626bpr0516a,78,1,f +11502,3626bpr0545,78,1,f +11502,3626bpr0546,484,2,f +11502,3660,288,2,f +11502,3660,72,15,f +11502,3666,72,4,f +11502,3666,288,2,f +11502,3673,71,1,t +11502,3673,71,2,f +11502,3679,71,1,f +11502,3680,0,1,f +11502,3684b,28,12,f +11502,37,383,2,f +11502,3700,0,7,f +11502,3701,19,3,f +11502,3705,0,4,f +11502,3708,0,1,f +11502,3710,320,29,f +11502,3713,4,3,t +11502,3713,4,4,f +11502,3738,0,1,f +11502,3747b,0,2,f +11502,3749,19,1,f +11502,3794a,297,7,f +11502,3794a,70,4,f +11502,3795,72,5,f +11502,3832,71,3,f +11502,3848,0,2,f +11502,3895,72,2,f +11502,3941,19,1,f +11502,3958,28,3,f +11502,40239,0,1,f +11502,40243,72,8,f +11502,40244,19,1,f +11502,4032a,70,3,f +11502,4070,0,12,f +11502,4079b,70,1,f +11502,4081b,72,2,f +11502,4150,71,1,f +11502,41678,71,1,f +11502,42610,71,1,f +11502,4274,1,2,t +11502,4274,1,6,f +11502,4287,72,4,f +11502,43337,71,8,f +11502,43857,71,2,f +11502,43903,0,2,f +11502,4445,72,2,f +11502,4460b,19,4,f +11502,4497,0,4,f +11502,4519,71,3,f +11502,45590,0,2,f +11502,4623,72,3,f +11502,4864b,71,3,f +11502,4865a,40,2,f +11502,50943,71,1,f +11502,50951,0,1,f +11502,51011,0,1,t +11502,51542,28,1,f +11502,52040,28,2,f +11502,53451,15,1,t +11502,53451,135,10,f +11502,53451,135,1,t +11502,53457,320,4,f +11502,53989,297,6,f +11502,54200,72,2,f +11502,54200,72,1,t +11502,54275,297,3,f +11502,55013,72,1,f +11502,55981,71,6,f +11502,59229,72,2,f +11502,59230,15,1,t +11502,59230,15,8,f +11502,59349,19,6,f +11502,59443,0,4,f +11502,59900,72,2,f +11502,59900,19,6,f +11502,60115,15,4,f +11502,60208,28,2,f +11502,6112,0,1,f +11502,61184,71,7,f +11502,6141,36,1,t +11502,6141,36,2,f +11502,6141,47,2,f +11502,6141,19,2,t +11502,6141,19,25,f +11502,6141,47,1,t +11502,61506,70,1,f +11502,6182,19,2,f +11502,61975,70,1,f +11502,61976,70,1,f +11502,6232,71,2,f +11502,62363,28,1,f +11502,6266,15,8,f +11502,62711,0,1,f +11502,62810,308,1,f +11502,63672,-1,1,t +11502,63859,47,3,f +11502,6541,71,7,f +11502,6558,1,4,f +11502,6587,72,7,f +11502,6636,28,14,f +11502,73983,72,2,f +11502,970c00,272,1,f +11502,970c00,378,1,f +11502,970c00,71,1,f +11502,970x192,484,2,f +11502,973pr1370c01,308,1,f +11502,973pr1392c01,0,1,f +11502,973pr1393c01,378,1,f +11502,973pr1396c01,71,1,f +11502,973pr1397c01,484,2,f +11503,18575,19,2,f +11503,2412b,71,32,f +11503,2460,71,2,f +11503,2780,0,127,f +11503,2780,0,2,t +11503,2817,4,2,f +11503,2819,71,1,f +11503,2825,71,8,f +11503,2850b,71,8,f +11503,2851,14,8,f +11503,2852,71,8,f +11503,2853,14,2,f +11503,2854,19,3,f +11503,298c02,0,2,f +11503,298c02,0,1,t +11503,3035,0,1,f +11503,30367c,71,2,f +11503,32009,0,3,f +11503,32013,0,9,f +11503,32014,71,1,f +11503,32016,0,4,f +11503,32034,4,2,f +11503,32034,0,2,f +11503,32039,71,2,f +11503,32054,4,12,f +11503,32054,0,4,f +11503,32062,4,23,f +11503,32072,14,2,f +11503,32073,71,8,f +11503,32123b,71,1,t +11503,32123b,71,8,f +11503,32140,0,2,f +11503,32140,4,4,f +11503,32184,4,11,f +11503,32270,0,1,t +11503,32270,0,5,f +11503,32278,4,1,f +11503,32278,0,10,f +11503,32291,71,4,f +11503,32316,0,4,f +11503,32333,0,2,f +11503,32348,4,6,f +11503,32449,0,4,f +11503,32523,0,6,f +11503,32523,4,2,f +11503,32524,0,3,f +11503,32525,0,5,f +11503,32526,4,2,f +11503,32526,0,10,f +11503,3705,0,6,f +11503,3706,0,2,f +11503,3713,71,6,f +11503,3713,71,1,t +11503,3737,0,3,f +11503,3832,71,1,f +11503,3941,71,7,f +11503,3958,0,1,f +11503,40490,0,1,f +11503,40490,4,4,f +11503,41239,4,1,f +11503,41239,0,2,f +11503,4162,0,2,f +11503,41897,0,4,f +11503,42003,0,15,f +11503,4274,1,1,t +11503,4274,1,2,f +11503,43093,1,31,f +11503,43857,0,2,f +11503,44294,71,4,f +11503,4519,71,15,f +11503,48989,71,3,f +11503,56908,71,4,f +11503,59426,72,2,f +11503,59443,71,10,f +11503,60483,72,4,f +11503,60485,71,2,f +11503,61070,1,1,f +11503,6141,36,2,f +11503,6141,47,3,t +11503,6141,47,4,f +11503,6141,36,1,t +11503,62462,4,4,f +11503,62462,0,10,f +11503,62531,0,3,f +11503,62821,72,1,f +11503,63869,71,5,f +11503,64178,71,1,f +11503,64394,4,1,f +11503,64680,4,1,f +11503,64782,0,5,f +11503,6536,4,4,f +11503,6536,0,12,f +11503,6558,1,39,f +11503,6587,28,2,f +11503,6589,19,3,f +11503,6589,19,1,t +11503,78c18,179,1,f +11503,87080,0,1,f +11503,87082,71,1,f +11503,87083,72,2,f +11503,87086,0,1,f +11503,87761,0,1,f +11505,3700,14,4,f +11505,3701,14,4,f +11505,3702,14,4,f +11505,3709,14,2,f +11505,3738,14,2,f +11505,3894,14,4,f +11506,11127,41,1,f +11506,11458,72,2,f +11506,13608,179,1,f +11506,15391,15,1,f +11506,15392,72,1,t +11506,15392,72,1,f +11506,15573,72,2,f +11506,15706,72,2,f +11506,18651,0,4,f +11506,22385pr0001,33,1,f +11506,22385pr0039,36,1,f +11506,22385pr0069,47,1,f +11506,22391,179,1,f +11506,22401,47,1,f +11506,22402,47,1,f +11506,22408,179,1,f +11506,2446,15,1,f +11506,2540,1,1,f +11506,3004,15,1,f +11506,30153,47,2,f +11506,3021,72,2,f +11506,3022,15,2,f +11506,3023,182,3,f +11506,32184,71,2,f +11506,3626cpr1783,14,1,f +11506,3713,71,1,t +11506,3713,71,2,f +11506,3849,179,1,f +11506,3937,1,2,f +11506,41769,272,1,f +11506,41770,272,1,f +11506,4349,72,2,f +11506,4740,47,1,f +11506,48729b,57,1,t +11506,48729b,57,1,f +11506,59900,179,3,f +11506,60897,1,2,f +11506,6134,71,2,f +11506,6141,179,2,f +11506,6141,41,1,t +11506,6141,57,1,t +11506,6141,179,1,t +11506,6141,57,2,f +11506,6141,41,4,f +11506,61780,72,1,f +11506,61800,15,2,f +11506,85984,1,2,f +11506,85984,15,1,f +11506,87580,272,3,f +11506,92690,71,1,f +11506,970c00pr0981,15,1,f +11506,973pr3200c01,15,1,f +11506,98313,179,1,f +11507,11211,15,3,f +11507,14719,71,4,f +11507,14769pr0004,71,1,f +11507,15712,15,1,f +11507,2412b,15,8,f +11507,2431,41,7,f +11507,2431,71,4,f +11507,2431,0,2,f +11507,2877,70,14,f +11507,3001,70,5,f +11507,3002,70,2,f +11507,3003pr0038,70,1,f +11507,3004,70,3,f +11507,30136,15,2,f +11507,3021,70,2,f +11507,3022,0,2,f +11507,3022,70,4,f +11507,3022,71,4,f +11507,3022,15,6,f +11507,3023,15,4,f +11507,3023,378,2,f +11507,3023,0,4,f +11507,3034,0,6,f +11507,30367c,15,3,f +11507,3068b,71,1,f +11507,3069b,71,4,f +11507,3070b,15,1,t +11507,3070b,71,1,t +11507,3070b,15,6,f +11507,3070b,71,6,f +11507,32000,15,2,f +11507,3460,0,4,f +11507,3659,15,3,f +11507,3688,378,1,f +11507,3700,15,2,f +11507,3710,0,4,f +11507,3794b,71,2,f +11507,3832,71,2,f +11507,3941,15,1,f +11507,4032a,15,2,f +11507,4070,15,2,f +11507,4162,0,2,f +11507,4162pr0043,0,1,f +11507,4490,15,2,f +11507,4865a,15,1,f +11507,49668,15,6,f +11507,54200,71,16,f +11507,54200,378,12,f +11507,54200,378,1,t +11507,54200,71,1,t +11507,59900,15,14,f +11507,62361,15,2,f +11507,85861,15,1,t +11507,85861,15,6,f +11507,87087,15,2,f +11507,87609,0,5,f +11507,87994,15,1,t +11507,87994,15,2,f +11507,90398,15,1,f +11507,90398,15,1,t +11507,92593,71,2,f +11507,93273,15,2,f +11508,11090,0,2,f +11508,11211,0,2,f +11508,11301,72,2,f +11508,11303,28,1,f +11508,11458,72,4,f +11508,11477,27,2,f +11508,14181,0,1,f +11508,14682,71,2,f +11508,15068,72,1,f +11508,15379,0,2,t +11508,15379,0,84,f +11508,15573,14,1,f +11508,15573,72,2,f +11508,15712,72,5,f +11508,16178pr01,4,1,f +11508,16577,19,2,f +11508,18041,179,1,t +11508,18041,179,1,f +11508,18738,71,1,f +11508,18738,71,1,t +11508,19220,0,1,f +11508,21709,0,1,f +11508,23443,0,2,f +11508,23444,0,3,f +11508,23447,182,8,f +11508,23996,72,8,f +11508,2412b,4,1,f +11508,2412b,14,2,f +11508,2412b,72,16,f +11508,2420,0,2,f +11508,2431,27,3,f +11508,2431,1,2,f +11508,2431,71,2,f +11508,2432,0,1,f +11508,2447,40,2,t +11508,2447,40,2,f +11508,2453b,15,2,f +11508,2458,72,2,f +11508,2460,0,2,f +11508,2508,0,1,f +11508,2512,71,1,f +11508,2569,0,1,f +11508,2569,0,1,t +11508,2780,0,8,f +11508,2780,0,3,t +11508,2815,0,2,f +11508,2877,0,10,f +11508,2921,0,2,f +11508,298c02,14,1,f +11508,298c02,1,1,t +11508,298c02,1,4,f +11508,298c02,14,1,t +11508,3001,4,1,f +11508,3001,27,3,f +11508,3001,0,4,f +11508,3002,70,2,f +11508,3002,2,4,f +11508,3004,27,4,f +11508,3004,2,4,f +11508,3004,1,3,f +11508,3004,4,5,f +11508,3004,70,4,f +11508,3007,71,4,f +11508,3008,70,6,f +11508,30089,0,1,f +11508,3009,72,2,f +11508,3009,0,4,f +11508,3010,70,2,f +11508,3010,27,2,f +11508,30157,70,4,f +11508,3020,27,3,f +11508,3020,15,4,f +11508,3020,0,5,f +11508,3021,71,3,f +11508,3021,0,1,f +11508,3021,27,1,f +11508,3022,27,3,f +11508,30228,72,1,f +11508,3023,182,1,f +11508,3023,36,5,f +11508,30236,71,1,f +11508,30237b,27,3,f +11508,30237b,72,2,f +11508,3031,72,3,f +11508,3032,0,1,f +11508,3032,72,2,f +11508,3034,72,2,f +11508,3034,0,5,f +11508,3035,72,2,f +11508,3036,72,4,f +11508,30367c,14,2,f +11508,3037,72,2,f +11508,30385,33,5,f +11508,30386,14,2,f +11508,30387,14,1,f +11508,30388,14,4,f +11508,30389c,0,1,f +11508,3039,27,1,f +11508,3039,1,4,f +11508,30395,72,1,f +11508,30396,0,1,f +11508,3040b,71,2,f +11508,3040b,182,36,f +11508,30414,72,5,f +11508,3046a,72,4,f +11508,30503,72,3,f +11508,30553,72,3,f +11508,3062b,14,1,f +11508,3062b,0,1,f +11508,3068b,27,1,f +11508,3068b,14,3,f +11508,3068b,28,2,f +11508,3069b,0,4,f +11508,3069bp02,71,1,f +11508,3176,0,4,f +11508,32002,19,1,t +11508,32002,19,2,f +11508,32009,71,2,f +11508,32018,0,2,f +11508,32028,0,8,f +11508,32054,0,4,f +11508,32062,4,2,f +11508,32064a,71,8,f +11508,32065,0,2,f +11508,32184,14,2,f +11508,32316,14,1,f +11508,32333,0,2,f +11508,3245b,27,4,f +11508,3298,71,1,f +11508,3460,27,2,f +11508,3623,0,2,f +11508,3626bpr0754a,14,1,f +11508,3626cpr0920,14,1,f +11508,3626cpr1580,14,1,f +11508,3626cpr1662,14,1,f +11508,3626cpr1666,14,1,f +11508,3626cpr1826,14,1,f +11508,3633,0,2,f +11508,3648b,72,6,f +11508,3660,72,15,f +11508,3660,70,4,f +11508,3665,27,2,f +11508,3666,0,2,f +11508,3666,27,6,f +11508,3679,71,1,f +11508,3680,0,1,f +11508,3700,14,4,f +11508,3700,27,3,f +11508,3701,14,1,f +11508,3710,0,6,f +11508,3749,19,7,f +11508,3795,0,6,f +11508,3795,71,1,f +11508,3795,27,1,f +11508,3823,40,1,f +11508,3829c01,1,2,f +11508,3832,71,2,f +11508,3833,15,2,f +11508,3838,14,2,f +11508,3899,4,1,f +11508,3941,14,4,f +11508,3941,72,1,f +11508,3958,0,2,f +11508,3958,27,2,f +11508,3960,71,1,f +11508,40490,71,1,f +11508,4079b,1,1,f +11508,4083,14,4,f +11508,4150,72,1,f +11508,41532,0,6,f +11508,41539,71,5,f +11508,41539,72,1,f +11508,4162,14,2,f +11508,4176,41,1,f +11508,4185,71,2,f +11508,41854,27,1,f +11508,4274,1,2,f +11508,4274,1,2,t +11508,4282,0,3,f +11508,4286,72,4,f +11508,43722,27,1,f +11508,43723,27,1,f +11508,44302a,4,2,f +11508,4460b,27,4,f +11508,44728,1,4,f +11508,4479,0,1,f +11508,4510,72,2,f +11508,4519,14,4,f +11508,45677,27,2,f +11508,4595,0,1,f +11508,46212,182,7,f +11508,47457,72,1,f +11508,47847,72,4,f +11508,4865b,27,2,f +11508,48729b,71,1,t +11508,48729b,71,1,f +11508,51739,72,3,f +11508,52031,0,1,f +11508,52031,27,1,f +11508,54200,47,2,f +11508,54200,47,1,t +11508,54200,4,2,f +11508,54200,4,2,t +11508,55981,71,8,f +11508,56891,0,4,f +11508,58176,182,2,f +11508,59349,4,3,f +11508,59900,0,1,f +11508,6014b,71,4,f +11508,60470b,0,3,f +11508,60479,0,6,f +11508,60581,72,1,f +11508,60601,41,10,f +11508,6111,27,4,f +11508,6112,0,4,f +11508,61252,0,1,f +11508,61345,27,5,f +11508,6140,0,1,f +11508,6141,0,1,t +11508,6141,46,2,t +11508,6141,0,1,f +11508,6141,46,2,f +11508,61485,0,1,f +11508,61506,28,1,f +11508,6157,71,2,f +11508,6158,72,2,f +11508,6190,0,2,f +11508,6192,72,2,f +11508,6222,27,1,f +11508,6232,4,4,f +11508,6232,72,3,f +11508,62462,0,1,f +11508,62462,14,2,f +11508,63864,72,12,f +11508,6541,27,4,f +11508,6558,1,1,f +11508,6583,0,2,f +11508,6628,0,1,f +11508,6636,0,2,f +11508,6636,72,4,f +11508,74698,0,1,f +11508,76766,0,1,f +11508,84954,40,1,f +11508,85544,4,1,f +11508,87079,0,1,f +11508,87079,72,4,f +11508,87079,14,2,f +11508,87079,15,1,f +11508,87081,72,1,f +11508,87083,72,4,f +11508,87580,71,1,f +11508,87609,15,1,f +11508,87620,0,2,f +11508,87697,0,4,f +11508,87994,0,1,t +11508,87994,0,3,f +11508,92099,72,1,f +11508,92107,72,2,f +11508,92262,27,1,f +11508,92263,27,1,f +11508,92402,0,4,f +11508,92585,4,1,f +11508,92842,0,3,f +11508,92907,71,1,f +11508,93224pr0004,179,1,f +11508,93273,72,1,f +11508,93606,27,2,f +11508,96874,25,1,t +11508,970c00,379,3,f +11508,970c00pr1057,326,2,f +11508,970c00pr1068,179,1,f +11508,973pr3388c01,326,2,f +11508,973pr3389c01,326,2,f +11508,973pr3402c01,179,1,f +11508,973pr3403c01,15,1,f +11508,98138,182,1,t +11508,98138,182,3,f +11508,98138,47,3,t +11508,98138,46,4,f +11508,98138,47,7,f +11508,98138,36,2,f +11508,98138,36,2,t +11508,98138,46,1,t +11508,98263,71,1,f +11508,98282,72,2,f +11508,98285,0,1,f +11508,98286,0,1,f +11508,98560,27,6,f +11508,99207,4,2,f +11508,99780,0,2,f +11509,2352,14,1,f +11509,2352,4,1,f +11509,3001,4,1,f +11509,3001,14,3,f +11509,3001p10,14,1,f +11509,3001p11,4,1,f +11509,3006,4,2,f +11509,3007,1,2,f +11509,3010,4,1,f +11509,3483,0,8,f +11509,3633,14,2,f +11509,3997,4,1,f +11509,4180c02,0,4,f +11509,fab13d,9999,1,f +11510,3001,1,14,f +11510,3002,1,8,f +11510,3003,1,12,f +11510,3004,1,8,f +11510,3005,1,4,f +11510,3006,1,1,f +11510,3007,1,1,f +11510,3008,1,2,f +11510,3009,1,4,f +11510,3010,1,4,f +11510,3622,1,4,f +11511,13358,0,1,f +11511,14721,4,1,f +11511,14786,71,1,f +11511,15575,14,1,f +11511,15576,4,1,f +11511,15613a,71,1,f +11511,17494,4,1,f +11511,20678,41,1,f +11511,3011,25,1,f +11511,3437,25,1,f +11511,3437,15,1,f +11511,3437,4,2,f +11511,40666,10,1,f +11511,47517,0,1,f +11511,51703,182,1,f +11511,58057pr03,15,1,f +11511,61649,4,1,f +11511,90265,15,1,f +11512,3626bp05,14,1,f +11512,3901,6,1,f +11512,970c00,0,1,f +11512,973pb0007c01,135,1,f +11514,12825,0,2,f +11514,2412b,71,2,f +11514,2431,27,2,f +11514,2446,148,1,f +11514,3004,71,1,f +11514,3020,2,4,f +11514,3021,85,4,f +11514,3022,27,1,f +11514,3022,0,3,f +11514,3023,0,5,f +11514,3023,27,6,f +11514,30236,15,2,f +11514,30359a,0,4,f +11514,30407,0,2,f +11514,3040b,0,2,f +11514,3062b,0,6,f +11514,3062b,15,4,f +11514,3062b,2,4,f +11514,3068b,27,5,f +11514,3069bpr0070,0,1,f +11514,3070b,36,2,f +11514,3070b,36,1,t +11514,3626bpr0001,14,1,f +11514,3660,0,2,f +11514,3666,27,2,f +11514,3710,27,3,f +11514,3957a,42,1,f +11514,4032a,71,2,f +11514,4032a,15,1,f +11514,41747,0,1,f +11514,41748,0,1,f +11514,44567a,71,2,f +11514,44728,0,5,f +11514,4599b,0,2,f +11514,4733,0,1,f +11514,54200,0,1,t +11514,54200,0,2,f +11514,57908,72,1,f +11514,57909a,72,4,f +11514,59900,15,1,f +11514,59900,80,4,f +11514,6005,0,2,f +11514,60470a,71,1,f +11514,60478,71,2,f +11514,60481,0,2,f +11514,6087,71,2,f +11514,6091,27,4,f +11514,61409,27,2,f +11514,6141,85,10,f +11514,6141,85,1,t +11514,6141,80,6,f +11514,6141,41,2,f +11514,6141,80,1,t +11514,6141,41,1,t +11514,6141,27,4,f +11514,6141,27,1,t +11514,61678,27,4,f +11514,6564,0,1,f +11514,6565,0,1,f +11514,73983,0,4,f +11514,87752,41,1,f +11514,87777,80,1,f +11514,92013,0,6,f +11514,92280,71,2,f +11514,970x001,27,1,f +11514,973pr1815c01,27,1,f +11515,2412b,80,1,f +11515,2420,14,4,f +11515,2431,14,3,f +11515,2436,14,4,f +11515,3001,14,2,f +11515,3020,0,1,f +11515,3021,0,1,f +11515,3023,4,1,f +11515,3023,0,1,f +11515,3024,0,4,f +11515,3024,36,2,f +11515,3031,72,1,f +11515,3788,14,1,f +11515,3795,0,1,f +11515,4070,14,2,f +11515,44674,14,1,f +11515,44675,0,1,f +11515,50944pr0001,0,4,f +11515,50949,14,1,f +11515,50950,0,8,f +11515,50951,0,4,f +11515,54200,14,6,f +11515,6141,72,2,f +11515,6141,72,1,t +11515,6157,0,2,f +11515,6231,0,2,f +11516,2336p68,4,1,f +11516,2340,0,2,f +11516,2340,4,2,f +11516,2412b,0,2,f +11516,2412b,4,1,f +11516,2419,4,4,f +11516,2432,0,2,f +11516,2433,0,1,f +11516,2434,4,1,f +11516,2446,0,3,f +11516,2447,42,3,f +11516,2450,4,2,f +11516,2452,4,1,f +11516,2458,0,1,f +11516,2458,4,1,f +11516,2465,0,2,f +11516,2476a,0,1,f +11516,2507,42,1,f +11516,2516,0,1,f +11516,2540,7,2,f +11516,2569,42,2,f +11516,2582p68,7,2,f +11516,2593,0,4,f +11516,2607,4,3,f +11516,2609,0,3,f +11516,298c05,0,2,f +11516,3002,4,1,f +11516,3004,0,3,f +11516,3004,4,2,f +11516,3020,4,1,f +11516,3020,0,3,f +11516,3021,4,1,f +11516,3022,7,1,f +11516,3022,0,6,f +11516,3022,4,1,f +11516,3023,0,5,f +11516,3023,4,9,f +11516,3024,4,2,f +11516,3024,0,2,f +11516,3031,4,1,f +11516,3034,0,8,f +11516,3035,4,1,f +11516,3039,4,4,f +11516,3039p05,4,1,f +11516,3039p68,4,2,f +11516,3045,4,2,f +11516,3068b,4,1,f +11516,3068bp68,4,2,f +11516,3069b,4,2,f +11516,3069b,0,1,f +11516,3069bp68,15,2,f +11516,3070bp06,15,1,f +11516,3070bpc2,15,1,f +11516,3298p68,4,1,f +11516,3315,0,1,f +11516,3479,0,1,f +11516,3597,0,1,f +11516,3626apr0001,14,3,f +11516,3665,4,4,f +11516,3666,4,6,f +11516,3700,4,1,f +11516,3747b,4,2,f +11516,3794a,4,3,f +11516,3795,4,1,f +11516,3832,4,1,f +11516,3838,0,3,f +11516,3839b,0,1,f +11516,3933,0,2,f +11516,3934,0,2,f +11516,3937,0,5,f +11516,3937,4,1,f +11516,3938,4,5,f +11516,3938,0,1,f +11516,3962b,0,2,f +11516,4032a,0,4,f +11516,4070,0,4,f +11516,4081b,4,2,f +11516,4085c,0,4,f +11516,4229,0,2,f +11516,4275b,4,1,f +11516,4276b,4,1,f +11516,4315,4,3,f +11516,4345b,4,2,f +11516,4346p68,7,2,f +11516,4475,4,1,f +11516,4475,0,1,f +11516,4531,0,1,f +11516,4588,42,1,f +11516,4589,42,8,f +11516,4589,0,3,f +11516,4590,0,1,f +11516,4595,7,4,f +11516,4595,0,2,f +11516,4623,0,4,f +11516,4730,4,5,f +11516,4735,0,2,f +11516,4740,42,7,f +11516,4854,4,1,f +11516,4855,4,1,f +11516,4859,7,1,f +11516,4859,4,1,f +11516,4859,0,1,f +11516,4871,4,1,f +11516,6141,42,4,f +11516,6141,4,2,f +11516,73092,0,6,f +11516,73590c01a,0,2,f +11516,970x026,15,3,f +11516,973p68c01,4,3,f +11517,108681,9999,1,f +11517,3001,0,2,f +11517,3008,0,2,f +11517,3020,7,2,f +11517,3032,0,1,f +11517,3038,0,4,f +11517,3648a,7,1,f +11517,3650,7,1,f +11517,3666,0,1,f +11517,3701,0,2,f +11517,3704,0,1,f +11517,3706,0,1,f +11517,3707,0,1,f +11517,3713,7,2,f +11517,3738,0,1,f +11517,3941,0,4,f +11517,765c01,7,4,f +11517,7864,7,1,f +11517,x466,7,1,f +11517,x471,0,1,f +11519,3241,7,8,f +11520,12825,15,20,f +11520,18759,71,4,f +11520,2339,19,8,f +11520,2357,19,4,f +11520,2419,71,4,f +11520,2420,72,8,f +11520,2420,15,8,f +11520,2431,71,16,f +11520,2431,72,4,f +11520,2431,19,20,f +11520,2431,15,2,f +11520,2454a,19,4,f +11520,2540,15,32,f +11520,2730,15,4,f +11520,2780,0,4,t +11520,2780,0,36,f +11520,2817,71,4,f +11520,2817,0,2,f +11520,2817,4,2,f +11520,2877,15,26,f +11520,2921,15,16,f +11520,2921,19,48,f +11520,3001,70,26,f +11520,3001,71,8,f +11520,3002,19,8,f +11520,3003,71,14,f +11520,3003,1,8,f +11520,3004,73,20,f +11520,3004,19,64,f +11520,30044,15,8,f +11520,3005,19,184,f +11520,3005,73,40,f +11520,3005,15,32,f +11520,3006,1,2,f +11520,3006,71,2,f +11520,3008,71,16,f +11520,3009,71,14,f +11520,3009,72,6,f +11520,3009,19,28,f +11520,3010,19,54,f +11520,3010,15,16,f +11520,3010,72,4,f +11520,3010,71,24,f +11520,30136,72,18,f +11520,30136,19,16,f +11520,30136,71,12,f +11520,3020,72,3,f +11520,3020,15,10,f +11520,3021,2,1,f +11520,3021,19,88,f +11520,3021,72,4,f +11520,3021,4,5,f +11520,3022,71,24,f +11520,3022,0,1,f +11520,3023,15,68,f +11520,3023,73,28,f +11520,3023,36,2,f +11520,3023,19,94,f +11520,3023,47,30,f +11520,3024,19,98,f +11520,3024,73,8,f +11520,3024,15,68,f +11520,3031,72,4,f +11520,3032,72,8,f +11520,3034,4,2,f +11520,3034,0,8,f +11520,3034,71,2,f +11520,3035,73,18,f +11520,3036,0,2,f +11520,3037,15,16,f +11520,3039,1,2,f +11520,3039,19,48,f +11520,3040b,19,8,f +11520,3068b,19,4,f +11520,3069b,2,1,f +11520,3069b,19,32,f +11520,3069b,4,2,f +11520,3069b,72,8,f +11520,3069b,15,27,f +11520,3069b,1,2,f +11520,3069b,71,14,f +11520,3070b,320,1,t +11520,3070b,320,4,f +11520,3070b,15,4,t +11520,3070b,14,3,f +11520,3070b,19,22,f +11520,3070b,14,1,t +11520,3070b,19,2,t +11520,3070b,15,44,f +11520,3185,15,34,f +11520,32028,71,10,f +11520,32028,72,140,f +11520,32449,15,4,f +11520,3245b,19,12,f +11520,32530,72,8,f +11520,3460,70,24,f +11520,3622,19,28,f +11520,3622,15,4,f +11520,3623,15,4,f +11520,3623,71,4,f +11520,3623,19,52,f +11520,3633,15,36,f +11520,3665,15,26,f +11520,3666,71,20,f +11520,3666,15,8,f +11520,3666,19,96,f +11520,3666,73,70,f +11520,3685,71,24,f +11520,3700,72,4,f +11520,3710,72,4,f +11520,3710,73,32,f +11520,3710,19,76,f +11520,3794b,0,1,f +11520,3794b,71,18,f +11520,3794b,19,110,f +11520,3794b,15,24,f +11520,3794b,297,12,f +11520,3794b,72,8,f +11520,3795,72,4,f +11520,3832,15,4,f +11520,3846p01,71,2,f +11520,3857,1,5,f +11520,3894,72,2,f +11520,3942c,71,8,f +11520,3956,71,8,f +11520,4032a,15,20,f +11520,4070,15,22,f +11520,41769,71,8,f +11520,41770,71,8,f +11520,4185,72,32,f +11520,4185,19,32,f +11520,4274,1,40,f +11520,4274,1,4,t +11520,4282,0,8,f +11520,4287,15,4,f +11520,43720,72,4,f +11520,43721,72,4,f +11520,4445,71,2,f +11520,4460b,71,8,f +11520,44728,15,4,f +11520,4477,19,10,f +11520,4477,71,8,f +11520,4510,72,10,f +11520,4510,71,4,f +11520,4589,297,4,f +11520,4589,15,28,f +11520,4589,71,8,f +11520,4623,15,8,f +11520,47457,14,1,f +11520,47905,19,56,f +11520,48092,71,24,f +11520,48092,72,8,f +11520,48336,71,16,f +11520,4865a,14,2,f +11520,48723,297,2,f +11520,49668,19,16,f +11520,54200,0,1,t +11520,54200,19,12,t +11520,54200,47,1,t +11520,54200,15,14,f +11520,54200,19,556,f +11520,54200,0,8,f +11520,54200,15,1,t +11520,54200,47,3,f +11520,54200,73,4,f +11520,54200,73,1,t +11520,6003,72,8,f +11520,60470b,71,16,f +11520,60474,71,16,f +11520,60474,72,16,f +11520,60478,15,48,f +11520,60592,15,48,f +11520,60593,15,28,f +11520,60598,15,8,f +11520,60601,47,48,f +11520,60602,47,28,f +11520,6091,0,2,f +11520,6091,4,2,f +11520,6141,297,4,f +11520,6141,4,1,t +11520,6141,15,4,t +11520,6141,4,4,f +11520,6141,15,40,f +11520,6141,0,2,t +11520,6141,0,20,f +11520,6141,297,1,t +11520,6182,19,4,f +11520,6231,4,2,f +11520,6231,14,2,f +11520,6232,72,8,f +11520,6233,71,8,f +11520,63868,15,56,f +11520,64644,297,6,f +11520,6558,1,4,f +11520,6636,19,34,f +11520,6636,4,2,f +11520,72454,15,8,f +11520,87079,1,2,f +11520,87079,15,12,f +11520,87087,71,104,f +11520,87544,15,8,f +11520,87552,15,40,f +11520,87580,73,6,f +11520,87580,28,4,f +11520,90498,72,8,f +11520,92950,19,4,f +11520,98560,71,16,f +11523,11211,71,1,f +11523,2419,72,1,f +11523,2450,15,2,f +11523,3021,15,1,f +11523,3021,0,1,f +11523,3022,14,1,f +11523,3022,15,2,f +11523,3023,0,1,f +11523,3034,4,1,f +11523,3069b,15,1,f +11523,3795,72,1,f +11523,3795,15,1,f +11523,41769,15,2,f +11523,41770,15,2,f +11523,44661,15,1,f +11523,54200,15,2,f +11523,54200,40,2,f +11523,6091,15,4,f +11523,6141,182,2,f +11523,6141,179,4,f +11523,85984,15,5,f +11523,85984,0,1,f +11524,2412b,72,4,f +11524,2419,14,1,f +11524,2431,272,2,f +11524,2476a,71,2,f +11524,2780,0,3,f +11524,2780,0,1,t +11524,3003,14,2,f +11524,3005,14,1,f +11524,3010,14,1,f +11524,3020,0,1,f +11524,3020,14,2,f +11524,3020,71,3,f +11524,3021,72,3,f +11524,3022,0,2,f +11524,3023,46,2,f +11524,3023,71,3,f +11524,3023,14,4,f +11524,3024,14,1,f +11524,3034,71,2,f +11524,3034,0,1,f +11524,3040b,14,2,f +11524,30414,0,2,f +11524,30602,40,2,f +11524,3068b,15,1,f +11524,3069b,72,2,f +11524,32000,72,2,f +11524,33299a,0,3,f +11524,3622,14,2,f +11524,3623,14,4,f +11524,3660,71,2,f +11524,3665,14,1,f +11524,3679,71,1,f +11524,3680,0,1,f +11524,3700,71,3,f +11524,3710,72,2,f +11524,3710,15,1,f +11524,3794b,15,3,f +11524,3795,15,1,f +11524,3832,14,3,f +11524,3941,72,2,f +11524,3942c,0,1,f +11524,4162,272,2,f +11524,4162,15,2,f +11524,41767,14,1,f +11524,41768,14,1,f +11524,41769,14,1,f +11524,41769,272,2,f +11524,41770,14,1,f +11524,41770,272,2,f +11524,42610,71,3,f +11524,43093,1,3,f +11524,43722,15,2,f +11524,43723,15,2,f +11524,44728,15,1,f +11524,44728,71,2,f +11524,4477,71,2,f +11524,4589,182,2,f +11524,50304,14,1,f +11524,50305,14,1,f +11524,50950,14,2,f +11524,50951,0,3,f +11524,54200,36,2,f +11524,54200,36,1,t +11524,61409,0,4,f +11524,6231,71,4,f +11524,85984,71,2,f +11524,93274,0,1,f +11526,3001,14,14,f +11526,3002,14,8,f +11526,3003,14,12,f +11526,3004,14,8,f +11526,3005,14,5,f +11526,3006,14,1,f +11526,3007,14,1,f +11526,3008,14,2,f +11526,3009,14,4,f +11526,3010,14,4,f +11526,3622,14,4,f +11528,11055,14,2,f +11528,11211,71,8,f +11528,11477,2,4,f +11528,11477,1,4,f +11528,11477,14,2,f +11528,12885,0,1,f +11528,14226c11,0,1,f +11528,14395,70,8,f +11528,14418,71,4,f +11528,15332,70,2,f +11528,15712,0,4,f +11528,18654,72,1,f +11528,18654,72,1,t +11528,18677,71,2,f +11528,22890,72,4,f +11528,22961,308,1,f +11528,2357,70,4,f +11528,2431,19,4,f +11528,2432,0,1,f +11528,2496,0,1,f +11528,2540,71,2,f +11528,2655,71,1,f +11528,3004,4,4,f +11528,3005,4,4,f +11528,3010,70,3,f +11528,30136,19,8,f +11528,3020,0,4,f +11528,3021,2,4,f +11528,3021,72,6,f +11528,3022,0,4,f +11528,3023,72,8,f +11528,3023,47,3,f +11528,30236,71,3,f +11528,3024,0,1,t +11528,3024,0,2,f +11528,3034,70,4,f +11528,3035,1,3,f +11528,3035,28,1,f +11528,3035,4,1,f +11528,30350a,70,2,f +11528,30357,288,11,f +11528,30357,2,1,f +11528,3036,28,2,f +11528,3040b,2,10,f +11528,30565,1,1,f +11528,3062b,0,7,f +11528,3062b,320,4,f +11528,3062b,71,4,f +11528,3062b,41,1,f +11528,3062b,46,2,f +11528,3068b,288,4,f +11528,3068bpr0139a,19,1,f +11528,3069b,19,3,f +11528,3070b,15,1,t +11528,3070b,15,1,f +11528,32000,72,2,f +11528,32015,71,1,f +11528,32054,4,1,f +11528,32062,4,1,f +11528,32556,19,1,f +11528,33291,10,4,f +11528,33291,10,1,t +11528,33320,2,1,f +11528,3460,70,2,f +11528,3622,70,4,f +11528,3623,19,4,f +11528,3623,2,4,f +11528,3626bpr0677,14,1,f +11528,3626cpr1635,14,1,f +11528,3660,70,3,f +11528,3666,19,4,f +11528,3666,0,3,f +11528,3673,71,1,t +11528,3673,71,3,f +11528,3710,72,3,f +11528,3713,4,1,t +11528,3713,4,1,f +11528,3839b,71,1,f +11528,3957a,71,1,f +11528,4032a,2,9,f +11528,4032a,72,11,f +11528,4032a,70,4,f +11528,41539,2,2,f +11528,4162,19,1,f +11528,4162,320,4,f +11528,41879a,272,1,f +11528,41879a,85,1,f +11528,42003,14,2,f +11528,43722,2,4,f +11528,4519,71,1,f +11528,4522,0,1,f +11528,4599b,71,1,t +11528,4599b,71,3,f +11528,4733,0,2,f +11528,47905,19,1,f +11528,48336,19,2,f +11528,4865a,15,2,f +11528,49668,0,1,f +11528,54200,2,4,f +11528,54200,70,1,t +11528,54200,1,4,f +11528,54200,70,4,f +11528,54200,1,1,t +11528,54200,2,1,t +11528,59900,70,2,f +11528,59900,4,1,f +11528,60481,4,4,f +11528,60481,70,8,f +11528,60592,15,2,f +11528,60601,47,2,f +11528,60897,4,1,f +11528,6141,4,1,t +11528,6141,4,4,f +11528,6141,14,1,t +11528,6141,47,4,f +11528,6141,27,11,f +11528,6141,70,1,t +11528,6141,70,4,f +11528,6141,47,1,t +11528,6141,14,4,f +11528,6141,27,1,t +11528,6180,70,1,f +11528,6231,15,2,f +11528,62810,308,1,f +11528,64644,0,1,f +11528,73983,71,2,f +11528,85984,10,6,f +11528,85984,72,4,f +11528,86035,25,1,f +11528,87552,0,2,f +11528,88292,0,4,f +11528,92083,308,1,f +11528,92593,0,6,f +11528,92593,4,9,f +11528,95343,4,1,f +11528,95344,28,1,f +11528,95344,28,1,t +11528,973pr1573c01,15,1,f +11528,973pr1801c01,25,1,f +11528,98138,71,4,f +11528,98138,71,1,t +11528,98138pr0018,84,1,f +11528,98138pr0018,84,1,t +11528,98560,308,4,f +11529,2341,14,2,f +11529,2357,14,3,f +11529,2449,14,10,f +11529,3002,14,1,f +11529,3004,14,21,f +11529,3005,14,4,f +11529,3009,14,1,f +11529,3010,14,6,f +11529,3010,1,1,f +11529,3020,14,1,f +11529,3021,1,5,f +11529,3021,14,6,f +11529,3022,14,1,f +11529,3022,1,1,f +11529,3023,4,6,f +11529,3023,1,9,f +11529,3023,14,4,f +11529,3024,14,1,f +11529,3024,34,2,f +11529,3024,4,6,f +11529,3039,14,6,f +11529,3039,1,1,f +11529,3040b,14,13,f +11529,3045,1,2,f +11529,3045,14,2,f +11529,3062b,1,1,f +11529,3622,14,7,f +11529,3623,14,7,f +11529,3623,1,6,f +11529,3660,14,2,f +11529,3665,14,2,f +11529,3666,14,6,f +11529,3666,1,4,f +11529,3710,1,1,f +11529,3710,14,4,f +11529,3710,4,3,f +11529,3794a,14,1,f +11529,3794a,1,3,f +11529,3795,14,2,f +11529,4070,14,1,f +11529,4085c,14,4,f +11529,4286,14,2,f +11529,4287,14,2,f +11529,54200,14,3,f +11529,6019,14,1,f +11529,73983,1,1,f +11529,73983,14,3,f +11530,10124,0,1,f +11530,10154,0,1,f +11530,10197,0,2,f +11530,11090,0,1,f +11530,11438,288,1,f +11530,11439pat0001,46,1,f +11530,11477,308,2,f +11530,11477,0,4,f +11530,11477,25,2,f +11530,11477,288,2,f +11530,11477,2,11,f +11530,12885,0,1,f +11530,13349,0,1,f +11530,13564,15,1,f +11530,13564,2,2,f +11530,13695,15,1,f +11530,14418,71,2,f +11530,14419,72,6,f +11530,14704,71,2,f +11530,15068,288,4,f +11530,15090,0,1,f +11530,15367,0,2,f +11530,15392,72,2,f +11530,15403,0,2,f +11530,15573,2,9,f +11530,15619,0,1,f +11530,15619,2,1,f +11530,15672,15,1,f +11530,15706,0,4,f +11530,15712,15,1,f +11530,16770,15,6,f +11530,18651,0,2,f +11530,18927,288,1,f +11530,18950,34,2,f +11530,20877,0,1,f +11530,22410,148,3,f +11530,22890,72,3,f +11530,23984,148,1,f +11530,23985,15,1,f +11530,2417,484,1,f +11530,2420,0,2,f +11530,2420,320,6,f +11530,24201,0,1,f +11530,2431,308,2,f +11530,24316,70,2,f +11530,2530,72,1,f +11530,25375,0,1,f +11530,2540,71,4,f +11530,26651,378,1,f +11530,26653,378,1,f +11530,2730,0,2,f +11530,2780,0,13,f +11530,3001,72,6,f +11530,3004,72,2,f +11530,3004,320,1,f +11530,3009,72,2,f +11530,30153,34,1,f +11530,30173b,297,1,f +11530,3020,0,5,f +11530,3020,2,3,f +11530,3020,288,3,f +11530,3021,288,1,f +11530,3021,0,1,f +11530,3021,191,2,f +11530,3022,0,3,f +11530,3022,2,1,f +11530,3022,71,3,f +11530,3023,71,1,f +11530,3023,0,12,f +11530,30275,484,1,f +11530,3032,19,1,f +11530,3034,70,1,f +11530,30374,297,1,f +11530,30377,71,1,f +11530,3038,0,2,f +11530,3040b,71,5,f +11530,3045,72,1,f +11530,3046a,0,4,f +11530,3062b,72,3,f +11530,3062b,4,1,f +11530,3065,35,5,f +11530,3069b,72,2,f +11530,32013,0,6,f +11530,32016,0,16,f +11530,32018,0,2,f +11530,32054,71,4,f +11530,32062,4,8,f +11530,32064a,0,2,f +11530,32123b,71,4,f +11530,32124,0,1,f +11530,32524,25,2,f +11530,33183,70,1,f +11530,3460,70,1,f +11530,3623,2,1,f +11530,3623,0,4,f +11530,3626b,47,1,f +11530,3626cpr1366,14,1,f +11530,3626cpr1557,14,1,f +11530,3626cpr1560,14,1,f +11530,3626cpr9993,15,1,f +11530,3659,72,1,f +11530,3660,2,2,f +11530,3660,70,1,f +11530,3665,2,2,f +11530,3666,70,5,f +11530,3705,0,4,f +11530,3705,4,2,f +11530,3707,0,4,f +11530,3710,320,1,f +11530,3710,2,8,f +11530,3710,70,4,f +11530,3710,288,2,f +11530,3710,27,1,f +11530,3710,71,2,f +11530,3749,19,2,f +11530,3795,0,1,f +11530,3795,2,2,f +11530,3849,0,1,f +11530,3941,0,4,f +11530,3958,19,2,f +11530,4032a,70,1,f +11530,40379,15,2,f +11530,4070,15,1,f +11530,4081b,27,4,f +11530,4081b,15,2,f +11530,41532,0,1,f +11530,41669,15,2,f +11530,41854,320,2,f +11530,4274,71,24,f +11530,43093,1,2,f +11530,43712,2,1,f +11530,43722,70,2,f +11530,43722,27,1,f +11530,43723,70,2,f +11530,43723,27,1,f +11530,44301a,71,2,f +11530,44301a,72,2,f +11530,44302a,72,1,f +11530,44302a,0,4,f +11530,4460b,71,2,f +11530,44676,0,1,f +11530,44728,2,3,f +11530,4497,0,1,f +11530,4519,14,2,f +11530,4588,15,2,f +11530,4740,0,1,f +11530,47455,0,2,f +11530,47457,297,3,f +11530,47847,72,1,f +11530,47905,0,1,f +11530,48169,35,2,f +11530,48171,72,2,f +11530,4871,0,1,f +11530,48723,70,2,f +11530,49668,182,2,f +11530,49668,179,2,f +11530,50950,288,3,f +11530,51739,288,2,f +11530,52107,0,1,f +11530,53451,15,6,f +11530,53451,297,16,f +11530,53454,148,2,f +11530,54200,297,4,f +11530,54200,288,1,f +11530,54200,15,1,f +11530,57909b,72,3,f +11530,59443,70,2,f +11530,60474,0,2,f +11530,60475b,71,1,f +11530,60478,0,1,f +11530,60483,72,2,f +11530,60897,15,1,f +11530,61183,19,1,f +11530,61252,297,2,f +11530,61409,484,2,f +11530,6141,35,23,f +11530,62462,179,2,f +11530,63868,70,2,f +11530,63868,0,1,f +11530,63869,0,2,f +11530,63965,0,1,f +11530,64276,0,2,f +11530,64644,297,1,f +11530,64647,182,1,f +11530,64727,2,6,f +11530,6536,10,2,f +11530,6541,2,1,f +11530,6558,1,2,f +11530,6564,71,2,f +11530,6565,71,2,f +11530,6628,0,1,f +11530,74261,0,4,f +11530,85861,0,3,f +11530,85861,15,1,f +11530,85984,25,1,f +11530,85984,320,1,f +11530,87087,72,1,f +11530,87580,28,1,f +11530,87580,2,3,f +11530,87991,0,1,f +11530,92013,0,3,f +11530,92338,297,4,f +11530,92590,28,1,f +11530,92593,0,2,f +11530,93273,70,3,f +11530,93274,0,2,f +11530,93606,288,1,f +11530,95344,28,1,f +11530,96874,25,1,t +11530,970c00pr0879,0,1,f +11530,970c00pr0881,0,1,f +11530,970d00pr9999,70,2,f +11530,970x192pr0001,70,1,f +11530,973pr6134234c01,0,1,f +11530,973pr9992,70,1,f +11530,98128,288,1,f +11530,98138,297,2,f +11530,98138pr0035,179,1,f +11530,98138pr9999,36,1,f +11530,98141,297,2,f +11530,98397,71,1,f +11530,99207,0,6,f +11530,99780,0,2,f +11531,10884,27,2,f +11531,11403pr0001c01,5,1,f +11531,11816pr0005,78,1,f +11531,13965,70,1,f +11531,14736pr0001,484,1,f +11531,15207,71,1,f +11531,15397,484,1,f +11531,2357,71,2,f +11531,2423,2,1,f +11531,2431,72,3,f +11531,2447,47,1,f +11531,2447,47,1,t +11531,2454a,70,1,f +11531,2817,0,2,f +11531,3002,70,2,f +11531,3005,71,8,f +11531,3005,70,4,f +11531,3010,72,2,f +11531,30136,72,3,f +11531,30136,70,3,f +11531,30137,71,2,f +11531,30157,72,1,f +11531,30171,26,1,f +11531,30176,2,1,f +11531,3020,30,1,f +11531,3020,19,2,f +11531,3021,15,2,f +11531,3023,27,3,f +11531,3031,71,2,f +11531,3036,2,1,f +11531,30363,71,2,f +11531,30374,70,1,f +11531,3040b,70,1,f +11531,3040b,72,4,f +11531,3040b,28,3,f +11531,30565,2,2,f +11531,32123b,14,1,f +11531,32123b,14,1,t +11531,3245c,71,2,f +11531,32474,27,1,f +11531,33085,14,1,f +11531,33291,10,1,t +11531,33291,5,1,t +11531,33291,10,3,f +11531,33291,5,3,f +11531,33299a,0,1,f +11531,3622,71,1,f +11531,3623,2,2,f +11531,3665,71,2,f +11531,3673,71,1,t +11531,3673,71,1,f +11531,3710,71,2,f +11531,3710,70,3,f +11531,3794b,19,1,f +11531,3837,72,1,f +11531,3962b,191,1,f +11531,4162,71,1,f +11531,42610,71,1,f +11531,4286,71,3,f +11531,4740pr0001a,4,1,f +11531,47905,0,1,f +11531,4865b,47,1,f +11531,50859b,0,1,f +11531,50861,0,2,f +11531,50862,71,2,f +11531,50947,322,1,f +11531,54200,70,2,f +11531,54200,70,1,t +11531,59900,15,1,f +11531,6003,2,1,f +11531,60481,71,4,f +11531,60481,70,4,f +11531,60897,15,2,f +11531,6141,46,1,t +11531,6141,70,1,t +11531,6141,70,2,f +11531,6141,27,1,t +11531,6141,27,8,f +11531,6141,46,1,f +11531,6231,19,4,f +11531,6541,72,3,f +11531,6587,28,1,f +11531,6632,2,1,f +11531,85983,322,1,f +11531,85984,15,1,f +11531,87083,72,1,f +11531,87087,484,1,f +11531,87580,10,1,f +11531,87989,212,1,f +11531,87989,212,1,t +11531,92258,0,1,f +11531,92409,0,1,f +11531,92456pr0053c01,78,1,f +11531,92946,19,1,f +11531,92950,72,2,f +11531,93091pr0004,323,1,f +11532,2412b,4,2,f +11532,2717,4,1,f +11532,2744,0,2,f +11532,2780,0,32,f +11532,2994,15,4,f +11532,3023,0,4,f +11532,32009,4,2,f +11532,32009,0,2,f +11532,32013,0,6,f +11532,32014,0,2,f +11532,32015,7,2,f +11532,32016,0,3,f +11532,32017,0,2,f +11532,32039,4,2,f +11532,32039,0,3,f +11532,32039,7,4,f +11532,32062,0,9,f +11532,32068,0,2,f +11532,32073,0,6,f +11532,32123b,7,9,f +11532,32138,0,1,f +11532,32138,4,1,f +11532,32140,0,6,f +11532,32184,4,1,f +11532,32249,4,2,f +11532,32250,4,4,f +11532,32278,0,1,f +11532,32291,0,2,f +11532,32310,0,1,f +11532,32310,4,1,f +11532,32316,4,4,f +11532,32449,0,4,f +11532,32449,4,4,f +11532,32527,4,2,f +11532,32528,4,2,f +11532,32557,0,2,f +11532,32580,4,2,f +11532,3623,0,2,f +11532,3647,7,2,f +11532,3703,0,2,f +11532,3705,4,1,f +11532,3705,0,2,f +11532,3706,0,1,f +11532,3707,0,7,f +11532,3713,7,12,f +11532,3737,0,3,f +11532,3749,7,12,f +11532,40001,8,1,f +11532,4274,7,4,f +11532,4519,0,8,f +11532,4519,4,2,f +11532,6536,7,2,f +11532,6536,0,10,f +11532,6538b,7,4,f +11532,6553,0,3,f +11532,6558,0,11,f +11532,6578,0,4,f +11532,6632,4,4,f +11532,6632,0,8,f +11532,78c06,179,2,f +11532,78c07,179,1,f +11532,rb00169,0,4,f +11532,rb00169,0,1,t +11533,10197,72,1,f +11533,11302pat0004,42,2,f +11533,11478,0,2,f +11533,15462,28,1,f +11533,15976,179,2,f +11533,18587,14,1,f +11533,18588,72,1,f +11533,19049,179,1,f +11533,19050,41,1,f +11533,19087,179,2,f +11533,19149pat0005,484,1,f +11533,20251,272,1,f +11533,20252,148,5,f +11533,2780,0,3,f +11533,2780,0,1,t +11533,32062,4,3,f +11533,32123b,14,2,f +11533,32123b,14,1,t +11533,32270,0,1,f +11533,3705,0,1,f +11533,3749,19,1,f +11533,42003,0,1,f +11533,43093,1,1,f +11533,53451,15,5,f +11533,53451,15,1,t +11533,59443,0,2,f +11533,6141,42,12,f +11533,6141,42,1,t +11533,62462,70,1,f +11533,6558,1,1,f +11533,87747,15,1,t +11533,87747,15,1,f +11533,90609,42,4,f +11533,90611,72,4,f +11533,90640,484,4,f +11533,90640,179,1,f +11533,93575,179,2,f +11533,98577,72,1,f +11533,98590,0,1,f +11536,3002,4,1,f +11536,3003,15,1,f +11536,3020,14,2,f +11536,3021,15,1,f +11536,3022,14,1,f +11536,3024,14,1,t +11536,3024,14,2,f +11536,3039,2,1,f +11536,3040b,2,2,f +11536,3040b,14,1,f +11536,3040b,4,2,f +11536,3298px11,14,1,f +11536,3623,14,2,f +11536,3660,4,1,f +11536,3665,14,2,f +11536,3665,4,2,f +11536,3741,10,1,f +11536,3741,10,1,t +11536,3742,1,3,f +11536,3742,1,1,t +11536,4286,14,1,f +11536,6141,15,2,f +11536,6141,15,1,t +11538,11211,71,1,f +11538,11213,71,2,f +11538,11217pr0008a,326,1,f +11538,11458,72,8,f +11538,13195pr0001,326,1,f +11538,14301,71,2,f +11538,14418,71,1,f +11538,15392,72,1,f +11538,15403,0,1,f +11538,15573,0,1,f +11538,18587,71,1,f +11538,18588,72,1,f +11538,2419,72,4,f +11538,2723,0,2,f +11538,2736,71,4,f +11538,2780,0,18,f +11538,3003,4,1,f +11538,3004,1,7,f +11538,3020,72,1,f +11538,3021,0,3,f +11538,3023,4,2,f +11538,3023,0,1,f +11538,30374,35,1,f +11538,30374,71,2,f +11538,30375,72,4,f +11538,30375,19,2,f +11538,30376,19,2,f +11538,30377,72,1,f +11538,30377,19,2,f +11538,30378,19,2,f +11538,3068b,72,1,f +11538,32002,19,2,f +11538,32013,72,1,f +11538,32013,0,4,f +11538,32039,71,2,f +11538,32062,4,8,f +11538,32123b,71,7,f +11538,32184,0,2,f +11538,32270,0,1,f +11538,32556,19,2,f +11538,3626cpr1149,78,1,f +11538,3673,71,8,f +11538,3707,0,4,f +11538,3709,15,2,f +11538,3731,71,1,f +11538,3737,0,1,f +11538,3738,0,1,f +11538,3937,72,1,f +11538,3941,47,1,f +11538,4032a,4,1,f +11538,4032a,72,3,f +11538,40490,72,8,f +11538,41677,72,2,f +11538,41678,72,8,f +11538,41879a,19,1,f +11538,42610,71,4,f +11538,4274,1,1,f +11538,43093,1,1,f +11538,44358,71,1,f +11538,44359,72,2,f +11538,44375b,71,2,f +11538,44567a,72,8,f +11538,44809,71,4,f +11538,4519,71,2,f +11538,4716,0,4,f +11538,4740,72,1,f +11538,47457,72,1,f +11538,54200,72,1,f +11538,55013,72,1,f +11538,58247,0,3,f +11538,59230,19,2,f +11538,59443,72,9,f +11538,59443,70,5,f +11538,59900,72,2,f +11538,6005,71,12,f +11538,60474,71,4,f +11538,60485,71,4,f +11538,6134,71,1,f +11538,6141,36,19,f +11538,6190,72,1,f +11538,62462,71,5,f +11538,63868,72,8,f +11538,63869,71,1,f +11538,64567,80,1,f +11538,6632,71,2,f +11538,75937,0,1,f +11538,78c02,179,12,f +11538,85984,71,8,f +11538,87083,72,6,f +11538,88293,72,8,f +11538,88517,72,1,f +11538,92280,71,4,f +11538,93550,179,1,f +11538,970c00pr0639,28,1,f +11538,973pr1590c01,326,1,f +11538,99021,72,1,f +11539,2357,14,2,f +11539,2412b,0,7,f +11539,2436,0,1,f +11539,2446,8,1,f +11539,2540,0,1,f +11539,2543,0,1,f +11539,2780,0,6,f +11539,298c02,14,2,f +11539,298c02,0,4,f +11539,3001,7,1,f +11539,3003,14,2,f +11539,3004,8,4,f +11539,30088,8,2,f +11539,30090,33,1,f +11539,30091,8,1,f +11539,30092,0,1,f +11539,3010,8,1,f +11539,30183,14,1,f +11539,3020,0,1,f +11539,3023,14,2,f +11539,3023,8,3,f +11539,3034,0,2,f +11539,3037px7,8,2,f +11539,3039,14,2,f +11539,30396,14,1,f +11539,30542,0,2,f +11539,30554a,8,8,f +11539,30622,14,4,f +11539,30625,40,1,f +11539,3062b,36,2,f +11539,3062b,34,2,f +11539,30632,0,1,f +11539,30639,8,1,f +11539,32064a,7,2,f +11539,32531,0,2,f +11539,3626bpb0007,14,1,f +11539,3626bpb0058,14,1,f +11539,3673,7,6,f +11539,3700,14,10,f +11539,3703,0,2,f +11539,3710,0,1,f +11539,3749,7,1,f +11539,3795,14,2,f +11539,4079,14,2,f +11539,4081b,0,4,f +11539,41525pb01,14,2,f +11539,41529,14,4,f +11539,41530,42,2,f +11539,41531,14,6,f +11539,41532,0,5,f +11539,41533,0,2,f +11539,41747,14,2,f +11539,41748,14,2,f +11539,41751,40,2,f +11539,41751pr2,40,1,f +11539,42021,14,1,f +11539,42022,14,2,f +11539,42022pb03,14,2,f +11539,42023,8,4,f +11539,4282,0,2,f +11539,4286,0,2,f +11539,4460a,0,4,f +11539,4485,15,1,f +11539,4865pb06,33,1,f +11539,59275,0,2,f +11539,6019,0,2,f +11539,6041,0,6,f +11539,6117,8,2,f +11539,6141,42,1,t +11539,6141,42,4,f +11539,6222,8,1,f +11539,6232,8,3,f +11539,6249,8,1,f +11539,6538b,0,1,f +11539,6587,8,3,f +11539,970c00pb029,272,1,f +11539,970c00pb031,272,1,f +11539,973pb0219c02,272,1,f +11539,973px139c02,272,1,f +11539,rb00167,14,1,f +11539,rb00167,14,3,t +11539,x514c01,14,4,f +11540,76019,15,10,f +11541,30031,72,1,f +11541,3794b,15,2,f +11541,41854,15,2,f +11541,44567b,71,1,f +11541,4600,0,2,f +11541,48336,0,2,f +11541,54200,47,1,f +11541,60471,71,1,f +11541,85984,15,1,f +11541,92280,0,1,f +11542,2550c01,70,1,f +11542,30153,57,1,t +11542,30153,57,1,f +11542,30176,2,1,f +11542,3031,71,1,f +11542,3849,0,1,f +11542,3941,70,1,f +11542,43887,15,1,f +11542,43887,0,1,f +11542,4495b,4,1,f +11542,4j010,9999,1,f +11543,15524pr0003,14,1,f +11543,16709pat01,29,1,f +11543,16820,29,1,f +11543,19680pr0001,72,1,f +11543,88646,0,1,f +11543,973pr2971c01,29,1,f +11544,3003,72,1,f +11544,3005,72,4,f +11544,3020,72,1,f +11544,3022,72,1,f +11544,3023,72,1,f +11544,3024,36,1,f +11544,3024,72,1,f +11544,3039,72,2,f +11544,3040b,72,4,f +11544,3623,72,2,f +11544,3710,72,2,f +11544,44301a,72,2,f +11544,44302a,72,4,f +11544,44567a,72,2,f +11544,49668,19,4,f +11544,6141,71,1,t +11544,6141,71,1,f +11545,11618,26,1,f +11545,3010,29,1,f +11545,30136,31,1,f +11545,30357,29,1,f +11545,30565,322,1,f +11545,3062bpr0003,322,1,f +11545,3852b,191,1,f +11545,60475a,15,1,f +11545,6256,191,1,f +11545,87580,322,1,f +11545,93088pr0002,15,1,f +11545,93160,15,1,f +11545,98138,179,1,f +11546,10928,72,1,f +11546,11477,2,2,f +11546,11477,4,4,f +11546,15573,15,4,f +11546,15712,72,4,f +11546,18671,72,2,f +11546,2412b,72,5,f +11546,2420,71,6,f +11546,2431,0,5,f +11546,2431,2,2,f +11546,2432,1,1,f +11546,2584,0,1,f +11546,2585,71,1,f +11546,2654,15,2,f +11546,2921,15,2,f +11546,3004,15,4,f +11546,3010,15,3,f +11546,3020,4,4,f +11546,3022,15,2,f +11546,3023,1,3,f +11546,3023,72,8,f +11546,3023,15,3,f +11546,3023,47,2,f +11546,3023,2,4,f +11546,3024,4,1,t +11546,3024,4,4,f +11546,3032,15,1,f +11546,30395,72,1,f +11546,3062b,4,3,f +11546,3062b,0,11,f +11546,30663,0,1,f +11546,3068b,15,2,f +11546,3069b,0,2,f +11546,3069b,2,2,f +11546,3069b,14,1,f +11546,3070b,2,1,t +11546,3070b,2,2,f +11546,3176,0,2,f +11546,32123b,14,2,f +11546,32123b,14,1,t +11546,32124,15,2,f +11546,32523,4,4,f +11546,32529,0,4,f +11546,3460,72,3,f +11546,3623,72,2,f +11546,3623,15,3,f +11546,3660,0,2,f +11546,3665,72,4,f +11546,3666,0,5,f +11546,3666,2,2,f +11546,3673,71,1,t +11546,3673,71,4,f +11546,3700,0,2,f +11546,3702,71,2,f +11546,3710,4,4,f +11546,3713,71,4,f +11546,3713,71,1,t +11546,3737,0,2,f +11546,3747a,72,4,f +11546,3749,19,2,f +11546,3795,2,1,f +11546,3894,72,2,f +11546,3958,72,1,f +11546,4032a,0,2,f +11546,4176,40,1,f +11546,4599b,4,1,t +11546,4599b,4,1,f +11546,4740,47,2,f +11546,47457,72,2,f +11546,48336,4,2,f +11546,50950,2,2,f +11546,54200,15,6,f +11546,54200,15,1,t +11546,55982,71,4,f +11546,56823c50,0,1,f +11546,56891,0,4,f +11546,59426,72,1,f +11546,6005,2,6,f +11546,6019,0,4,f +11546,60470a,15,2,f +11546,60478,0,4,f +11546,61409,72,2,f +11546,6141,71,1,t +11546,6141,33,1,t +11546,6141,71,8,f +11546,6141,0,9,f +11546,6141,182,8,f +11546,6141,33,2,f +11546,6141,0,1,t +11546,6141,182,1,t +11546,62462,4,2,f +11546,63965,72,2,f +11546,6587,28,1,f +11546,85984,72,7,f +11546,85984,15,4,f +11546,87079,15,2,f +11546,87087,15,4,f +11546,87609,0,3,f +11546,88072,72,2,f +11546,92280,71,8,f +11546,98138,36,1,t +11546,98138,36,2,f +11546,99206,71,2,f +11546,99780,71,2,f +11547,132a,0,12,f +11547,3001a,14,36,f +11547,3001a,4,88,f +11547,3001a,15,58,f +11547,3001a,0,18,f +11547,3001a,1,24,f +11547,3002a,0,8,f +11547,3002a,15,18,f +11547,3002a,4,20,f +11547,3002a,14,4,f +11547,3003,0,16,f +11547,3003,1,4,f +11547,3003,15,30,f +11547,3003,4,18,f +11547,3003,14,10,f +11547,3004,0,20,f +11547,3004,1,4,f +11547,3004,15,14,f +11547,3004,47,8,f +11547,3004,4,20,f +11547,3005,4,4,f +11547,3005,0,6,f +11547,3005,14,10,f +11547,3005,1,16,f +11547,3005,15,4,f +11547,3006,4,2,f +11547,3007,4,2,f +11547,3007,15,2,f +11547,3008,1,4,f +11547,3009,1,4,f +11547,3010,4,6,f +11547,3010,0,4,f +11547,3010,1,4,f +11547,3010,15,4,f +11547,3032,0,3,f +11547,3035,0,1,f +11547,3081cc01,15,8,f +11547,3081cc01,4,16,f +11547,3183a,1,1,f +11547,3184,1,1,f +11547,3297,4,42,f +11547,3298,4,8,f +11547,3299,4,10,f +11547,3300,4,2,f +11547,3471,2,2,f +11547,3579,15,2,f +11547,3579,4,4,f +11547,3581,15,8,f +11547,3581,4,6,f +11547,3582,1,8,f +11547,3582,14,6,f +11547,453cc01,4,4,f +11547,604c01,4,2,f +11547,700ed,2,3,f +11547,7039,4,12,f +11547,7049b,0,6,f +11547,7930,1,4,f +11547,7930,4,2,f +11547,bin02,1,2,f +11549,2335,0,1,f +11549,2421,7,1,f +11549,30170,0,1,t +11549,30170,0,1,f +11549,30171,6,1,f +11549,3020,7,1,f +11549,3021,0,1,f +11549,3022,19,1,f +11549,3034,19,2,f +11549,3139,0,2,f +11549,3626bpa5,14,1,f +11549,4081b,7,2,f +11549,4488,0,1,f +11549,4600,0,1,f +11549,4623,0,1,f +11549,4624,7,2,f +11549,4859,8,1,f +11549,4865a,47,1,f +11549,970c00,0,1,f +11549,973pa5c01,6,1,f +11552,3023,4,4,f +11552,3023,15,3,f +11552,3623,4,7,f +11552,3623,15,6,f +11552,3666,4,3,f +11552,3666,15,3,f +11552,3701,1,2,f +11552,3710,1,1,f +11552,4274,15,6,f +11552,4274,15,2,t +11553,11249,297,1,f +11553,12651,14,1,f +11553,13535,4,1,f +11553,13722,484,1,f +11553,13799,484,1,f +11553,14222pr0002,297,1,f +11553,16598,71,1,f +11553,16857,27,1,f +11553,17269,212,1,f +11553,17375,19,1,f +11553,20678,41,1,f +11553,3011,27,1,f +11553,3011,484,1,f +11553,31062,70,1,f +11553,3437,484,1,f +11553,3437,72,1,f +11553,3437,320,4,f +11553,3966,10,2,f +11553,4066,41,1,f +11553,61649,1,1,f +11553,6510,4,1,f +11553,76371,4,2,f +11553,85964,27,1,f +11553,87084,10,1,f +11553,87084,14,1,f +11553,87084,4,2,f +11553,87084,71,1,f +11553,87969,10,1,f +11553,89158,2,1,f +11553,98218,322,2,f +11553,98233,70,2,f +11554,rotbcd,9999,1,f +11554,u-2694,9999,1,f +11555,3626bpr0647,14,1,f +11555,3678bpr0004a,0,1,f +11555,62696,308,1,f +11555,973pr1449c01,0,1,f +11557,30179,15,2,f +11557,30179,0,2,f +11557,57895,47,2,f +11557,60583a,4,6,f +11557,60583a,14,6,f +11557,60592,0,4,f +11557,60592,15,4,f +11557,60594,0,4,f +11557,60594,15,4,f +11557,60598,4,4,f +11557,60598,14,4,f +11557,60599,15,2,f +11557,60599,4,2,f +11557,60601,41,8,f +11557,60603,47,8,f +11557,60608,14,8,f +11557,60608,15,10,f +11557,60616a,47,2,f +11557,60623,0,2,f +11557,60623,14,2,f +11557,60797c02,0,2,f +11557,60800b,2,12,f +11558,3001,15,3,f +11558,3001,4,1,f +11558,3003,15,2,f +11558,3003,4,2,f +11558,3004,15,19,f +11558,3004,4,2,f +11558,3005,15,4,f +11558,3007,15,4,f +11558,3008,4,8,f +11558,3008p22,15,14,f +11558,3009,4,13,f +11558,3009,15,1,f +11558,3009p26,15,6,f +11558,3010,4,1,f +11558,3010,15,1,f +11558,3020,1,1,f +11558,3020,15,2,f +11558,3021,15,3,f +11558,3022,15,3,f +11558,3022,1,1,f +11558,3023,15,4,f +11558,3023,4,12,f +11558,3024,34,1,f +11558,3024,15,6,f +11558,3024,36,1,f +11558,3027,1,2,f +11558,3027,15,2,f +11558,3029,15,1,f +11558,3032,15,3,f +11558,3037,15,2,f +11558,3040b,15,2,f +11558,3298,15,1,f +11558,3460,15,2,f +11558,3622,4,4,f +11558,3623,0,2,f +11558,3623,15,2,f +11558,3660,4,2,f +11558,3660p02,15,2,f +11558,3665,4,8,f +11558,3665p01,15,2,f +11558,3666,15,2,f +11558,3684,15,4,f +11558,3684p22,15,2,f +11558,3710,15,6,f +11558,3794a,15,1,f +11558,3795,15,1,f +11558,3832,15,1,f +11558,3957a,15,1,f +11558,3958,1,1,f +11558,4289,15,1,f +11558,4460b,15,2,f +11558,6141,46,1,f +11559,14417,72,2,f +11559,14418,71,2,f +11559,14419,72,2,f +11559,14769pr1001,15,1,f +11559,15209,15,2,f +11559,18575,0,1,f +11559,2412b,297,2,f +11559,2540,0,6,f +11559,2921,0,2,f +11559,3022,70,2,f +11559,3022,0,2,f +11559,3023,0,2,f +11559,3023,70,1,f +11559,32062,4,1,f +11559,32474pr1001,15,1,f +11559,3679,71,1,f +11559,3680,0,1,f +11559,3700,0,1,f +11559,4519,71,1,f +11559,4735,0,2,f +11559,47458,72,1,f +11559,48336,71,1,f +11559,4871,72,1,f +11559,49668,0,2,f +11559,54200,179,1,t +11559,54200,179,2,f +11559,59443,72,1,f +11559,6141,15,1,t +11559,6141,15,2,f +11559,63868,72,2,f +11559,87620,0,2,f +11559,87747,297,1,t +11559,87747,297,2,f +11559,92220,179,4,f +11559,98313,148,4,f +11559,98313,297,2,f +11559,99206,71,1,f +11560,12825,72,2,f +11560,2335,71,1,f +11560,2357,14,2,f +11560,2357,72,2,f +11560,2431,71,2,f +11560,2453b,0,4,f +11560,2540,71,3,f +11560,2780,0,1,t +11560,2780,0,8,f +11560,3001,70,1,f +11560,3003,0,1,f +11560,3005,0,8,f +11560,3005,14,2,f +11560,3009,14,2,f +11560,3010,14,4,f +11560,3020,72,5,f +11560,3023,0,4,f +11560,3023,14,4,f +11560,3024,0,12,f +11560,3028,71,3,f +11560,3032,14,5,f +11560,30374,14,3,f +11560,30383,71,3,f +11560,3039,72,8,f +11560,3040b,72,7,f +11560,30414,4,2,f +11560,30414,1,2,f +11560,30553,71,3,f +11560,3068b,71,7,f +11560,3068b,0,1,f +11560,3069b,0,4,f +11560,3069b,14,10,f +11560,3069b,71,3,f +11560,3070b,14,1,f +11560,3070b,71,3,f +11560,3070b,14,1,t +11560,3070b,71,1,t +11560,32001,71,2,f +11560,32013,0,4,f +11560,32034,0,4,f +11560,32039,0,4,f +11560,32062,4,4,f +11560,32064b,14,4,f +11560,32073,71,1,f +11560,32123b,14,1,t +11560,32123b,14,8,f +11560,32125,71,1,f +11560,3298,72,4,f +11560,3460,14,2,f +11560,3460,0,4,f +11560,3622,70,5,f +11560,3623,72,4,f +11560,3623,14,2,f +11560,3666,14,8,f +11560,3666,0,8,f +11560,3700,15,2,f +11560,3706,0,2,f +11560,3707,0,4,f +11560,3708,0,1,f +11560,3709,72,5,f +11560,3710,14,5,f +11560,3710,0,4,f +11560,3713,71,1,t +11560,3713,71,1,f +11560,3795,14,1,f +11560,3832,0,8,f +11560,3941,0,4,f +11560,3941,71,2,f +11560,3958,71,1,f +11560,4032a,72,1,f +11560,4032a,15,4,f +11560,4162,0,8,f +11560,4285b,71,1,f +11560,43898,82,1,f +11560,44728,71,8,f +11560,4477,0,4,f +11560,4519,71,5,f +11560,4589,80,2,f +11560,4589,15,1,f +11560,4589,72,8,f +11560,4589,0,3,f +11560,4599b,0,8,f +11560,50990b,71,1,f +11560,54200,72,5,f +11560,54200,72,1,t +11560,57520,0,1,f +11560,59349,0,6,f +11560,59443,71,5,f +11560,6111,14,4,f +11560,6141,15,1,t +11560,6141,1,2,f +11560,6141,1,1,t +11560,6141,15,2,f +11560,6232,72,3,f +11560,62462,0,12,f +11560,63965,71,1,f +11560,6541,71,8,f +11560,6636,0,4,f +11560,85080,71,4,f +11560,85984,72,1,f +11560,87079,14,4,f +11560,87580,14,1,f +11560,98138,33,1,t +11560,98138,179,2,f +11560,98138,179,1,t +11560,98138,33,3,f +11562,2343,47,2,f +11562,2348b,47,1,f +11562,2349a,0,1,f +11562,2357,15,6,f +11562,2412b,15,1,f +11562,2420,0,2,f +11562,2435,2,1,f +11562,2436,0,1,f +11562,2439,8,1,f +11562,2441,0,1,f +11562,2454a,15,3,f +11562,2486,15,2,f +11562,2493b,1,2,f +11562,2494,47,2,f +11562,3003,14,3,f +11562,3004,4,5,f +11562,3004,15,7,f +11562,3005,4,1,f +11562,3005,15,7,f +11562,3008,4,1,f +11562,3008,15,3,f +11562,3009,15,6,f +11562,3009,4,2,f +11562,3010,4,3,f +11562,3010,15,7,f +11562,3020,14,1,f +11562,3022,0,1,f +11562,3023,0,2,f +11562,3024,36,2,f +11562,3024,47,2,f +11562,3024,15,7,f +11562,3032,14,1,f +11562,3033,15,1,f +11562,3039,0,1,f +11562,3039,4,4,f +11562,3040b,4,14,f +11562,3040b,0,1,f +11562,3040p33,0,1,f +11562,3041,4,4,f +11562,3043,4,1,f +11562,3068bp17,15,1,f +11562,3069bpr0099,15,3,f +11562,3622,15,8,f +11562,3622,4,1,f +11562,3623,15,4,f +11562,3626apr0001,14,2,f +11562,3641,0,4,f +11562,3710,15,2,f +11562,3710,0,1,f +11562,3741,2,4,f +11562,3742,4,12,f +11562,3788,0,2,f +11562,3821,0,1,f +11562,3822,0,1,f +11562,3823,47,2,f +11562,3829c01,15,1,f +11562,3837,8,1,f +11562,3855,47,1,f +11562,3861b,1,1,f +11562,3957a,7,1,f +11562,3960p04,15,1,f +11562,4033,1,1,f +11562,4079,14,3,f +11562,4085b,15,1,f +11562,4315,0,1,f +11562,4345a,14,1,f +11562,4346p03,14,1,f +11562,4445,4,4,f +11562,4447,15,2,f +11562,4448,47,2,f +11562,4477,4,7,f +11562,4477,15,1,f +11562,4478p03,2,1,f +11562,4485,15,1,f +11562,4528,0,1,f +11562,4530,6,1,f +11562,4533,15,1,f +11562,4589,0,1,f +11562,4624,15,4,f +11562,4740,8,1,f +11562,4865a,14,2,f +11562,6141,14,4,f +11562,6349stk01,9999,1,t +11562,73312,1,1,f +11562,92410,15,1,f +11562,970c00,4,1,f +11562,970c00,1,1,f +11562,973p71c01,15,1,f +11562,973pb0203c01,15,1,f +11563,bslot02,1,1,f +11563,bslot02,17,1,f +11563,bslot02,14,1,f +11563,bslot02,15,1,f +11563,bslot02,73,1,f +11563,bslot02,2,1,f +11563,bslot02,4,1,f +11563,bslot02,462,1,f +11563,bslot02,47,1,f +11566,2357,72,4,f +11566,2412b,1,4,f +11566,2412b,71,8,f +11566,2431,1,12,f +11566,2436,71,2,f +11566,2555,0,2,f +11566,2817,0,4,f +11566,3002,71,2,f +11566,3003,1,2,f +11566,30033,72,2,f +11566,3004,19,3,f +11566,3020,1,5,f +11566,3020,71,12,f +11566,3020,0,1,f +11566,3021,72,2,f +11566,3022,71,4,f +11566,3023,1,3,f +11566,30283,71,1,f +11566,3031,0,1,f +11566,3033,0,2,f +11566,30355,0,2,f +11566,30356,0,2,f +11566,30363,1,2,f +11566,30364,72,8,f +11566,30365,71,8,f +11566,30366ps1,40,1,f +11566,30373,72,2,f +11566,30374,0,4,f +11566,30408pr0001,0,1,f +11566,3040b,1,2,f +11566,3046b,72,2,f +11566,3069bpr0086,71,1,f +11566,3070b,71,1,t +11566,3070b,71,4,f +11566,32054,0,4,f +11566,3623,0,2,f +11566,3626b,0,1,f +11566,3660,0,2,f +11566,3701,0,3,f +11566,3710,72,6,f +11566,3747b,1,6,f +11566,3832,72,8,f +11566,3937,72,1,f +11566,3938,0,1,f +11566,3960,71,1,f +11566,3960ps2,72,1,f +11566,4150ps5,71,2,f +11566,4162,1,16,f +11566,4274,71,1,t +11566,4274,71,1,f +11566,43719,72,2,f +11566,43722,72,2,f +11566,43723,72,2,f +11566,4740,33,1,f +11566,48336,19,1,f +11566,4864b,0,1,f +11566,4871,1,4,f +11566,54200,72,4,f +11566,54383,0,2,f +11566,54384,0,2,f +11566,6106,0,4,f +11566,6141,36,6,f +11566,6141,36,1,t +11566,6179,0,1,f +11566,6249,72,4,f +11566,6636,1,4,f +11566,970c00,0,1,f +11566,973pr1148c01,0,1,f +11567,11575pr0002,15,1,f +11567,11816pr0006,78,1,f +11567,14716,15,2,f +11567,14769,15,5,f +11567,14769pr1063,15,1,f +11567,15068,15,1,f +11567,15254,85,1,f +11567,15573,0,2,f +11567,15573,85,2,f +11567,15712,0,1,f +11567,18674,322,1,f +11567,20482,47,4,f +11567,20482,47,2,t +11567,22885,5,3,f +11567,23969,15,2,f +11567,2412b,71,2,f +11567,2445,15,1,f +11567,2458,15,2,f +11567,2465,0,1,f +11567,2817,71,1,f +11567,28387,14,1,f +11567,28466,322,1,f +11567,3001,15,1,f +11567,3001,0,2,f +11567,3004,0,8,f +11567,3005,0,4,f +11567,3010,0,4,f +11567,3020,27,3,f +11567,3020,19,3,f +11567,3020,5,2,f +11567,3022,15,1,f +11567,3022,0,1,f +11567,3023,15,7,f +11567,3024,322,1,t +11567,3024,322,4,f +11567,3062b,322,2,f +11567,3062b,14,1,f +11567,3069b,5,2,f +11567,3070b,14,1,t +11567,3070b,14,4,f +11567,31551,9999,1,f +11567,31552,70,1,f +11567,3245b,15,2,f +11567,33291,31,1,t +11567,33291,5,1,t +11567,33291,31,2,f +11567,33291,5,3,f +11567,3460,15,1,f +11567,3710,5,2,f +11567,3710,15,1,f +11567,3710,322,1,f +11567,3710,14,1,f +11567,3795,0,3,f +11567,3795,5,5,f +11567,3830,15,2,f +11567,3831,15,2,f +11567,3900,15,1,f +11567,3938,0,2,f +11567,3958,27,1,f +11567,4162,85,2,f +11567,44728,0,1,f +11567,4495b,5,2,f +11567,48336,71,1,f +11567,4865b,15,2,f +11567,50950,15,2,f +11567,50950,85,2,f +11567,54200,85,6,f +11567,54200,85,2,t +11567,6003,27,2,f +11567,60474,322,1,f +11567,60581,15,2,f +11567,60897,0,4,f +11567,6141,15,4,f +11567,6141,2,4,f +11567,6141,15,1,t +11567,6141,46,1,t +11567,6141,41,2,f +11567,6141,46,2,f +11567,6141,2,1,t +11567,6141,41,1,t +11567,61485,15,1,f +11567,6179,15,1,f +11567,6180,5,2,f +11567,6256,14,1,f +11567,64644,0,1,f +11567,6636,5,2,f +11567,6636,0,4,f +11567,85984,85,2,f +11567,87079,15,3,f +11567,87087,15,2,f +11567,87580,14,1,f +11567,90370pr0005,0,1,f +11567,90370pr0005,0,1,t +11567,92257,320,1,f +11567,92355,31,1,f +11567,92438,27,1,f +11567,92456pr0082c01,78,1,f +11567,92593,71,1,f +11567,92820pr0013c01,85,1,f +11567,93160,15,1,f +11567,93160,15,1,t +11567,93273,85,1,f +11567,98138pr0056,84,1,t +11567,98138pr0056,84,1,f +11569,3660,4,10,f +11569,3665,4,6,f +11570,3004,14,1,f +11570,3010,14,1,f +11570,3021,0,1,f +11570,3039,4,2,f +11570,3040b,4,1,f +11570,3298px11,14,1,f +11571,10884,27,1,f +11571,13965,70,1,f +11571,2921,70,1,f +11571,3020,322,1,f +11571,30565,19,1,f +11571,30565,322,1,f +11571,3062b,4,1,f +11571,33121,191,1,f +11571,33291,5,1,f +11571,4490,19,1,f +11571,59900,19,1,f +11571,60481,70,1,f +11571,6141,19,3,f +11571,6141,41,1,f +11571,90397pr0001b,15,1,f +11572,2420,14,2,f +11572,2456,70,1,f +11572,3001,70,1,f +11572,3002,70,5,f +11572,3003,70,1,f +11572,3005,70,5,f +11572,3005,1,1,f +11572,3005,71,1,f +11572,3005,4,1,f +11572,3009,70,1,f +11572,3010,70,1,f +11572,3024,1,1,f +11572,3040b,71,4,f +11572,3040b,70,1,f +11572,3040b,14,1,f +11572,3062b,14,4,f +11572,3070b,15,1,f +11572,3298,70,1,f +11572,3298,71,1,f +11572,3622,71,1,f +11572,3622,70,3,f +11572,3660,70,1,f +11572,3665,4,1,f +11572,3665,70,7,f +11572,3747b,70,4,f +11572,4286,71,1,f +11572,4286,70,10,f +11572,4287,70,6,f +11572,54200,15,2,f +11572,6141,0,2,f +11572,6541,0,1,f +11573,64251,4,2,f +11573,64262,42,1,f +11573,87794,0,1,f +11573,87796,191,4,f +11573,87797,4,2,f +11573,87798,4,2,f +11573,87799,42,1,f +11573,87806pat0002,135,2,f +11573,87807,4,1,f +11573,87808,4,1,f +11573,93571,0,2,f +11574,10884,28,1,f +11574,11217pr0006,15,1,f +11574,11477,326,2,f +11574,11477,15,2,f +11574,12825,71,5,f +11574,15279,326,3,f +11574,15303,36,4,f +11574,15400,72,1,f +11574,15573,15,5,f +11574,15573,71,1,f +11574,16341,9999,1,t +11574,2423,326,2,f +11574,2432,72,1,f +11574,2445,71,1,f +11574,2540,0,2,f +11574,2654,47,1,f +11574,3004,71,2,f +11574,30088,0,2,f +11574,3020,72,1,f +11574,3020,15,2,f +11574,3022,15,1,f +11574,3022,72,4,f +11574,3023,15,1,f +11574,3023,28,5,f +11574,3023,72,3,f +11574,3023,1,1,f +11574,3024,15,3,f +11574,3024,15,1,t +11574,3032,72,2,f +11574,3034,72,1,f +11574,30375,19,2,f +11574,30376,19,2,f +11574,30377,0,2,f +11574,30377,19,1,t +11574,30377,0,1,t +11574,30377,19,3,f +11574,30378,19,2,f +11574,3039,71,1,f +11574,30602,1,1,f +11574,3062b,47,1,f +11574,3062b,72,1,f +11574,3068b,28,3,f +11574,3069b,1,1,f +11574,3069b,71,2,f +11574,3069b,28,4,f +11574,3176,71,1,f +11574,32064b,15,4,f +11574,32073,71,1,f +11574,3626cpr1149,78,1,f +11574,3665,15,2,f +11574,3666,72,2,f +11574,3710,272,1,f +11574,3794b,320,6,f +11574,3839b,72,1,f +11574,3956,71,1,f +11574,3957a,47,1,f +11574,41677,72,2,f +11574,41889,148,2,f +11574,41890,148,4,f +11574,42687,148,2,f +11574,4286,71,7,f +11574,4286,0,1,f +11574,4349,0,2,f +11574,44676,272,2,f +11574,4599b,0,1,t +11574,4599b,0,2,f +11574,4600,0,1,f +11574,4697b,71,2,f +11574,4697b,71,1,t +11574,4733,72,2,f +11574,48336,15,2,f +11574,4865b,15,2,f +11574,50745,72,1,f +11574,50950,15,1,f +11574,50950,1,1,f +11574,54200,71,2,f +11574,54200,1,1,t +11574,54200,1,1,f +11574,54200,71,1,t +11574,58247,0,4,f +11574,59230,19,1,t +11574,59230,19,1,f +11574,60897,71,2,f +11574,61409,72,2,f +11574,6141,71,2,f +11574,6141,71,1,t +11574,63864,15,1,f +11574,63868,0,1,f +11574,64567,71,2,f +11574,64567,71,1,t +11574,6541,15,2,f +11574,73983,71,2,f +11574,85984,15,1,f +11574,85984,0,5,f +11574,88072,71,2,f +11574,88930,71,1,f +11574,970c00pr0573,15,1,f +11574,973pr0809c01,15,1,f +11574,99774,15,4,f +11576,2341,4,2,f +11576,2540,0,2,f +11576,2546,8,1,f +11576,2555,0,2,f +11576,3004,19,2,f +11576,30114,0,1,f +11576,30126p01,15,2,f +11576,30136,6,7,f +11576,30137,6,22,f +11576,30138pb01,15,1,f +11576,3020,6,2,f +11576,3021,0,1,f +11576,3022,6,1,f +11576,3022,0,1,f +11576,3023,0,1,f +11576,3028,19,1,f +11576,3034,6,1,f +11576,3039,6,1,f +11576,3062b,1,2,f +11576,3062b,2,3,f +11576,3062b,6,9,f +11576,3062b,14,2,f +11576,3062b,4,4,f +11576,32000,19,4,f +11576,32054,0,4,f +11576,3623,6,2,f +11576,3626bpx57,14,1,f +11576,3626bpx59,14,1,f +11576,3665,4,2,f +11576,3685,6,1,f +11576,3832,6,2,f +11576,3941,6,6,f +11576,3958,19,1,f +11576,4032a,6,6,f +11576,4070,4,2,f +11576,4282,19,2,f +11576,4286,6,2,f +11576,4460a,6,9,f +11576,4491b,14,1,f +11576,4493cx6,15,1,f +11576,4589,15,1,f +11576,4589,14,5,f +11576,4589,1,1,f +11576,6020,6,2,f +11576,6141,0,9,f +11576,6558,0,4,f +11576,970c00pb026,19,1,f +11576,970c02pb02,19,1,f +11576,973px103c01,19,1,f +11576,973px105c01,19,1,f +11579,2412b,71,1,f +11579,2498,1,2,f +11579,2578a,14,1,f +11579,2780,0,1,t +11579,2780,0,1,f +11579,2877,14,2,f +11579,3001,14,1,f +11579,30027b,71,4,f +11579,30028,0,4,f +11579,3004,0,1,f +11579,3020,72,1,f +11579,3020,14,2,f +11579,3022,0,1,f +11579,30237a,14,2,f +11579,3024,36,2,f +11579,3034,0,1,f +11579,30361c,4,1,f +11579,30367b,4,1,f +11579,3037,14,1,f +11579,3070bpr0007,71,1,t +11579,3070bpr0007,71,1,f +11579,3626bpb0172,14,1,f +11579,3700,71,1,f +11579,3706,0,1,f +11579,3710,14,1,f +11579,3731,71,1,f +11579,3788,14,2,f +11579,3795,14,1,f +11579,3829c01,71,1,f +11579,3833,4,1,f +11579,3836,70,1,f +11579,3837,0,1,f +11579,4081b,72,1,f +11579,4286,14,2,f +11579,4349,0,1,f +11579,43898,14,1,f +11579,44570,14,1,f +11579,44822,0,1,f +11579,4735,71,1,f +11579,48336,0,3,f +11579,4861,14,1,f +11579,4872,40,1,f +11579,54200,182,1,t +11579,54200,182,3,f +11579,6019,71,1,f +11579,6157,0,2,f +11579,73590c02a,0,1,f +11579,970c00,1,1,f +11579,973pr1182c01,25,1,f +11581,11153,27,2,f +11581,11211,71,1,f +11581,11213,71,1,f +11581,11458,72,4,f +11581,11594pr0001,326,1,f +11581,13608,179,2,f +11581,2447,47,1,t +11581,2447,47,1,f +11581,2639,72,2,f +11581,2654,33,4,f +11581,2780,0,2,f +11581,2817,0,1,f +11581,3002,0,1,f +11581,30136,28,4,f +11581,3020,320,4,f +11581,3020,288,1,f +11581,3021,19,2,f +11581,3022,27,3,f +11581,3023,326,4,f +11581,30237b,71,1,f +11581,30592,72,2,f +11581,30602,15,1,f +11581,30602,320,2,f +11581,3062b,320,2,f +11581,32002,19,2,f +11581,32013,72,2,f +11581,32014,0,2,f +11581,32016,0,2,f +11581,32062,4,8,f +11581,32192,72,4,f +11581,33299a,0,2,f +11581,3623,72,2,f +11581,3626cpr1155,14,1,f +11581,3701,72,2,f +11581,3706,0,2,f +11581,3747b,19,3,f +11581,3794b,72,1,f +11581,3795,0,2,f +11581,3832,19,1,f +11581,3895,0,2,f +11581,4150pr9009,27,1,f +11581,41669,36,2,f +11581,41677,0,4,f +11581,41747,27,2,f +11581,41748,27,2,f +11581,41751,36,1,f +11581,41854,15,1,f +11581,4274,1,2,f +11581,44728,0,5,f +11581,4519,71,2,f +11581,4598,15,1,f +11581,4740,15,2,f +11581,47457,27,7,f +11581,50943,320,2,f +11581,50950,288,2,f +11581,58176,35,2,f +11581,59443,72,2,f +11581,59900,52,2,f +11581,6019,15,2,f +11581,60483,72,2,f +11581,61184,71,4,f +11581,6141,41,2,f +11581,6141,45,6,f +11581,6141,297,2,f +11581,6628,0,2,f +11581,85544,4,1,f +11581,85943,72,2,f +11581,85984,15,1,f +11581,85984,27,1,f +11581,87781,10,1,f +11581,92221,0,8,f +11581,93273,320,2,f +11581,93274,72,2,f +11581,95199,72,2,f +11581,970c00pr0458,326,1,f +11581,970c00pr0464,10,1,f +11581,973pr2255c01,326,1,f +11581,973pr2298c01,71,1,f +11582,3028,28,2,f +11582,3028,288,2,f +11582,3028,72,2,f +11582,3028,70,2,f +11582,91405,1,2,f +11582,91405,10,2,f +11582,91405,28,2,f +11582,92438,15,2,f +11582,92438,1,2,f +11582,92438,19,2,f +11582,92438,10,2,f +11583,3034a,15,8,f +11584,3022,2,2,f +11584,3023,14,2,f +11584,3023,1,1,f +11584,3024,27,2,f +11584,3024,15,1,f +11584,3040b,2,4,f +11584,3069b,15,1,f +11584,3069bpr0055,15,1,f +11584,32013,14,1,f +11584,32062,4,1,f +11584,3941,70,1,f +11584,3941,2,1,f +11584,4286,2,4,f +11584,60474,72,1,f +11584,6141,15,2,f +11584,6141,4,3,f +11584,6141,14,3,f +11585,45463,52,4,f +11585,51027,236,1,f +11585,51034,236,1,f +11585,clikits006pb04,45,2,f +11585,clikits015,5,4,f +11585,clikits016pb05,52,2,f +11585,clikits061,114,2,f +11587,11215,71,2,f +11587,11476,71,1,f +11587,15535,72,1,f +11587,18787,179,1,f +11587,18789,179,1,f +11587,18792,70,2,f +11587,19723,179,1,f +11587,19729pr0001,308,1,f +11587,19729pr0002,15,2,f +11587,19729pr0012,25,1,f +11587,19730,179,2,f +11587,21098,71,1,f +11587,2431,84,1,f +11587,2456,19,5,f +11587,2456,71,15,f +11587,2456,72,4,f +11587,2654,33,4,f +11587,2921,84,1,f +11587,3001,19,22,f +11587,3001,71,4,f +11587,3001,72,5,f +11587,3001,70,14,f +11587,3003,33,2,f +11587,3003,2,3,f +11587,3003,71,37,f +11587,3003,19,21,f +11587,3003,84,1,f +11587,3003pr0035,72,1,f +11587,3004,19,2,f +11587,3004,71,9,f +11587,3004,84,4,f +11587,3004pr0014,84,2,f +11587,3004pr0036,15,2,f +11587,3005,70,4,f +11587,3005,84,11,f +11587,3007,71,3,f +11587,30145,71,4,f +11587,30157,71,1,f +11587,3020,19,5,f +11587,3020,4,2,f +11587,3020,28,1,f +11587,3020,72,1,f +11587,3022,15,1,f +11587,3022,4,1,f +11587,3022,71,7,f +11587,3022,70,1,f +11587,3023,71,4,f +11587,3023,70,4,f +11587,3023,4,1,f +11587,30236,72,1,f +11587,3024,182,6,f +11587,3024,46,6,f +11587,3031,70,1,f +11587,3034,19,1,f +11587,3035,19,3,f +11587,3035,1,1,f +11587,3035,70,3,f +11587,3036,1,1,f +11587,30363,1,2,f +11587,3039,33,1,f +11587,3062b,27,6,f +11587,3068b,71,4,f +11587,3068b,84,1,f +11587,3068b,15,1,f +11587,3068bpr0236,84,1,f +11587,3069b,72,9,f +11587,3069b,84,1,f +11587,3069b,71,5,f +11587,3070b,28,1,f +11587,3176,72,2,f +11587,33183,191,2,f +11587,33291,70,14,f +11587,33291,10,4,f +11587,3666,28,2,f +11587,3701,19,2,f +11587,3710,19,2,f +11587,3710,70,2,f +11587,3794b,70,2,f +11587,3794b,71,40,f +11587,3795,19,3,f +11587,3795,70,1,f +11587,3830,71,4,f +11587,3831,84,1,f +11587,3831,71,3,f +11587,3956,71,1,f +11587,3958,19,1,f +11587,3958,1,1,f +11587,4032a,0,6,f +11587,4070,71,18,f +11587,41539,19,3,f +11587,41539,72,1,f +11587,4216,71,2,f +11587,44728,2,8,f +11587,60115,15,2,f +11587,6020,70,1,f +11587,60475b,84,1,f +11587,60478,70,1,f +11587,60478,71,1,f +11587,6141,36,2,f +11587,6179,19,1,f +11587,6266,15,4,f +11587,64644,308,5,f +11587,6587,28,1,f +11587,85984,70,4,f +11587,87580,71,19,f +11587,87580,4,1,f +11587,87580,28,13,f +11587,87580,72,1,f +11587,87580,19,14,f +11587,87580,84,2,f +11587,91405,19,1,f +11587,93061,15,4,f +11587,96874,25,1,t +11587,970c00,85,1,f +11587,970c00,70,1,f +11587,973pr2819c01,321,1,f +11587,973pr3096c01,378,1,f +11587,98138pr0018,84,1,f +11587,98283,72,25,f +11587,99207,71,2,f +11587,99780,71,2,f +11588,10916,0,1,f +11588,10928,72,4,f +11588,11145,0,4,f +11588,2780,0,1,t +11588,2780,0,60,f +11588,2815,0,4,f +11588,32009,15,4,f +11588,32013,0,4,f +11588,32014,0,2,f +11588,32034,0,4,f +11588,32054,4,22,f +11588,32062,4,10,f +11588,32072,0,4,f +11588,32073,71,6,f +11588,32123b,14,10,f +11588,32123b,14,1,t +11588,32140,4,6,f +11588,32184,0,8,f +11588,32269,0,2,f +11588,32270,0,2,f +11588,32271,71,4,f +11588,32278,15,6,f +11588,32291,0,4,f +11588,32316,71,4,f +11588,32348,15,6,f +11588,32449,0,2,f +11588,32498,0,2,f +11588,32523,14,4,f +11588,32523,0,2,f +11588,32523,2,4,f +11588,32523,1,4,f +11588,32523,4,4,f +11588,32524,71,4,f +11588,32525,71,4,f +11588,32526,15,4,f +11588,32526,71,2,f +11588,32556,19,6,f +11588,33299a,0,2,f +11588,3648b,72,4,f +11588,3649,71,2,f +11588,3673,71,10,f +11588,3705,0,4,f +11588,3706,0,4,f +11588,3707,0,2,f +11588,3708,0,2,f +11588,3713,71,1,t +11588,3713,71,10,f +11588,3737,0,2,f +11588,3749,19,8,f +11588,4019,71,4,f +11588,40490,71,6,f +11588,41239,71,6,f +11588,41669,15,4,f +11588,41678,0,4,f +11588,4185,72,4,f +11588,41897,0,2,f +11588,42003,72,8,f +11588,43093,1,20,f +11588,44294,71,5,f +11588,44809,4,2,f +11588,4519,71,14,f +11588,45544bc,9999,1,f +11588,45590,0,4,f +11588,4716,71,2,f +11588,48989,71,6,f +11588,54187,0,1,f +11588,54190,47,1,f +11588,54572,4,1,f +11588,55013,72,2,f +11588,55615,71,4,f +11588,55805,0,2,f +11588,55806,0,1,f +11588,56908,71,2,f +11588,57519,0,4,f +11588,57585,71,2,f +11588,59443,4,6,f +11588,60483,0,4,f +11588,60484,0,4,f +11588,60485,71,2,f +11588,62462,71,4,f +11588,63869,71,6,f +11588,64178,71,1,f +11588,64179,71,3,f +11588,64392,0,1,f +11588,64682,0,1,f +11588,6536,71,8,f +11588,6558,1,30,f +11588,6587,28,2,f +11588,6589,19,1,t +11588,6589,19,2,f +11588,6629,0,4,f +11588,87080,0,1,f +11588,87082,71,4,f +11588,87083,72,2,f +11588,87086,0,1,f +11588,88323,0,54,f +11588,8887-1,9999,1,f +11588,92911,72,1,f +11588,95646c01,15,1,f +11588,95648,15,2,f +11588,95650,15,1,f +11588,95652,15,1,f +11588,95656,72,1,f +11588,95658,15,2,f +11588,99009,71,2,f +11588,99010,0,2,f +11588,99380,15,1,f +11588,99455,15,1,f +11588,99773,71,4,f +11588,99948,9999,1,f +11589,2431,14,2,f +11589,2730,71,1,f +11589,2780,0,89,f +11589,2780,0,2,t +11589,2817,0,5,f +11589,2819,71,1,f +11589,2905,14,5,f +11589,3005,182,2,f +11589,3020,14,2,f +11589,3023,36,2,f +11589,32000,0,4,f +11589,32002,72,2,t +11589,32002,72,8,f +11589,32009,0,6,f +11589,32014,0,10,f +11589,32034,71,7,f +11589,32039,14,7,f +11589,32054,71,21,f +11589,32054,0,10,f +11589,32056,0,2,f +11589,32062,4,11,f +11589,32063,0,6,f +11589,32065,14,3,f +11589,32072,14,2,f +11589,32073,71,13,f +11589,32123b,14,4,f +11589,32123b,14,2,t +11589,32138,0,6,f +11589,32140,14,6,f +11589,32140,72,13,f +11589,32184,0,13,f +11589,32249,14,4,f +11589,32250,71,2,f +11589,32270,0,1,f +11589,32271,71,3,f +11589,32278,72,5,f +11589,32291,0,6,f +11589,32316,14,5,f +11589,32348,0,4,f +11589,32498,0,1,f +11589,32523,0,8,f +11589,32524,71,19,f +11589,32524,14,2,f +11589,32525,71,9,f +11589,32525,14,3,f +11589,32526,71,8,f +11589,32526,0,12,f +11589,32556,19,3,f +11589,32557,14,4,f +11589,33299a,0,4,f +11589,3460,71,1,f +11589,3623,0,4,f +11589,3647,72,4,f +11589,3647,72,1,t +11589,3648b,72,3,f +11589,3650c,71,1,f +11589,3673,71,2,f +11589,3673,71,2,t +11589,3705,0,11,f +11589,3706,0,10,f +11589,3707,0,2,f +11589,3710,14,4,f +11589,3713,4,20,f +11589,3713,4,1,t +11589,3737,0,1,f +11589,3743,71,1,f +11589,3749,19,6,f +11589,3794a,4,2,f +11589,4019,71,2,f +11589,40490,14,6,f +11589,40490,0,2,f +11589,4070,71,2,f +11589,41239,0,7,f +11589,4162,14,2,f +11589,4162,71,2,f +11589,41677,72,2,f +11589,41678,72,7,f +11589,4185,71,2,f +11589,42003,14,7,f +11589,4274,1,1,t +11589,4274,1,16,f +11589,43093,1,1,t +11589,43093,1,39,f +11589,43857,14,4,f +11589,44294,71,7,f +11589,44309,0,6,f +11589,44352,14,1,f +11589,44353,14,1,f +11589,4477,71,1,f +11589,4519,71,22,f +11589,4716,71,2,f +11589,48288,72,1,t +11589,48989,71,9,f +11589,50163,72,1,f +11589,54200,182,2,f +11589,56145,71,6,f +11589,57779,14,1,f +11589,58119,71,1,f +11589,58120,71,1,f +11589,59426,72,8,f +11589,59443,71,12,f +11589,60483,72,2,f +11589,6081,14,2,f +11589,6091,71,2,f +11589,6141,182,4,f +11589,6141,47,1,t +11589,6141,182,1,t +11589,6141,47,8,f +11589,6180,71,1,f +11589,6536,71,17,f +11589,6538b,19,1,f +11589,6539,4,1,f +11589,6542a,72,2,f +11589,6558,1,48,f +11589,6587,72,10,f +11589,6589,19,1,f +11589,6629,14,4,f +11589,6632,4,2,f +11589,6641,4,1,f +11589,76244,15,1,f +11589,8292stk01,9999,1,t +11590,10164pr0001,15,1,f +11590,10169,84,1,f +11590,3626cpr0498,14,1,f +11590,93223,15,1,f +11590,970c00,4,1,f +11590,973pr2300c01,4,1,f +11590,98138pr0018,84,1,f +11591,11437,19,1,f +11591,11477,19,1,f +11591,13564,15,1,f +11591,13564,15,1,t +11591,15535,72,1,f +11591,15573,15,2,f +11591,15712,15,5,f +11591,18868a,41,1,f +11591,19981pr0023,41,1,f +11591,2420,15,2,f +11591,3023,70,1,f +11591,3023,41,2,f +11591,3023,15,1,f +11591,3024,297,1,t +11591,3024,297,4,f +11591,3062b,47,1,f +11591,33125,15,1,f +11591,3623,15,2,f +11591,3626cpr1642,14,1,f +11591,3941,41,1,f +11591,4081b,15,2,f +11591,4733,71,2,f +11591,54200,70,1,t +11591,54200,15,1,t +11591,54200,15,3,f +11591,54200,70,1,f +11591,60478,15,1,f +11591,61252,15,4,f +11591,6141,322,1,f +11591,6141,297,2,f +11591,6141,41,2,f +11591,6141,297,1,t +11591,6141,41,1,t +11591,6141,322,1,t +11591,63965,297,1,f +11591,73983,15,2,f +11591,93059,297,1,f +11591,93069,15,1,f +11591,970c00pr0880,15,1,f +11591,973pr3031c01,15,1,f +11591,98141,297,4,f +11592,11090,0,2,f +11592,11153,25,2,f +11592,11477,25,2,f +11592,13547,0,2,f +11592,18649,0,1,f +11592,3004,15,2,f +11592,3020,25,1,f +11592,3022,25,1,f +11592,3023,0,2,f +11592,3023,25,2,f +11592,3070b,0,1,t +11592,3070b,0,2,f +11592,3666,0,3,f +11592,3710,0,2,f +11592,3747a,15,1,f +11592,3795,15,2,f +11592,3795,25,1,f +11592,43722,15,1,f +11592,43723,15,1,f +11592,44661,15,1,f +11592,54200,40,2,f +11592,54200,40,1,t +11592,54383,71,1,f +11592,54384,71,1,f +11592,6141,36,1,t +11592,6141,179,4,f +11592,6141,36,1,f +11592,6141,179,1,t +11592,6141,34,1,t +11592,6141,182,2,f +11592,6141,34,1,f +11592,6141,182,1,t +11592,6232,72,1,f +11592,63864,25,2,f +11592,87087,71,2,f +11592,88072,0,2,f +11592,92842,0,1,f +11592,99780,72,2,f +11597,2436,15,2,f +11597,2465,15,1,f +11597,30016,15,2,f +11597,3004,15,4,f +11597,30072,20,1,f +11597,3010,1,1,f +11597,30107,17,1,f +11597,30109,13,1,f +11597,30111,15,1,f +11597,3039,14,1,f +11597,3062b,34,1,f +11597,3062b,36,1,f +11597,3068b,1,4,f +11597,33051,2,1,f +11597,3308,18,4,f +11597,45,383,1,f +11597,45896px1,15,2,f +11597,4599a,1,1,f +11597,5874foam,14,1,f +11597,6162,20,1,f +11597,6179,1,1,f +11597,6180,18,4,f +11597,6180,5,1,f +11597,6182,1,2,f +11597,6183,18,4,f +11597,6184,5,1,f +11597,6186,6,1,f +11597,6186,14,1,f +11597,6187,18,3,f +11597,6191,1,1,f +11597,6195,5,1,f +11597,6196,1,2,f +11597,6197b,5,2,f +11597,6206,15,1,f +11597,6256,1,1,f +11597,71861,383,1,f +11597,75347,5,1,f +11597,towel,15,1,f +11598,3626bpr0680,14,1,f +11598,3847,135,1,f +11598,3847,135,2,t +11598,4530,0,1,f +11598,4530,0,1,t +11598,970c00pr0153,320,1,f +11598,973pr1621c01,320,1,f +11599,3001a,1,1,f +11599,3001a,15,1,f +11599,3001a,4,1,f +11599,3001a,0,1,f +11599,3003,0,3,f +11599,3003,4,2,f +11599,3003,15,2,f +11599,3003,14,3,f +11599,3003,1,2,f +11599,3004,0,2,f +11599,3004,4,2,f +11599,3004,15,2,f +11599,3004,1,2,f +11599,3005,15,4,f +11599,3010,15,2,f +11599,3020,15,2,f +11599,3020,4,1,f +11599,3021,0,1,f +11599,3021,15,1,f +11599,3021,1,1,f +11599,3021,14,1,f +11599,3021,4,1,f +11599,3022,1,1,f +11599,3022,0,1,f +11599,3022,4,1,f +11599,3022,15,1,f +11599,3023,0,2,f +11599,3039,15,4,f +11599,3039,0,2,f +11599,3039,4,2,f +11599,3039,1,4,f +11599,3040b,4,2,f +11599,3040b,0,2,f +11599,3062a,0,2,f +11599,3460,0,1,f +11599,3612,15,2,f +11599,3612,1,2,f +11599,3612,0,2,f +11599,3612,4,2,f +11599,3613,4,2,f +11599,3613,0,2,f +11599,3613,15,2,f +11599,3613,1,2,f +11599,3614a,14,8,f +11599,3660,1,2,f +11599,3660,4,2,f +11599,3665,0,2,f +11599,3684,4,2,f +11599,3710,0,1,f +11599,3741,2,2,f +11599,3742,4,1,t +11599,3742,14,3,f +11599,3742,4,3,f +11599,3742,14,1,t +11599,685p01,14,1,f +11599,685px2,14,1,f +11599,685px3,14,1,f +11599,685px5,14,1,f +11599,792c03,1,1,f +11599,792c03,15,1,f +11599,792c03,0,1,f +11599,792c03,4,1,f +11599,bb15e,0,1,f +11599,x196,4,1,f +11599,x196,0,1,f +11599,x197,6,1,f +11599,x197bun,7,1,f +11599,x407,4,1,f +11600,2412b,15,1,f +11600,2420,15,2,f +11600,2436,0,1,f +11600,298c02,15,2,f +11600,3004,15,4,f +11600,3009,15,8,f +11600,3010,15,3,f +11600,3020,15,2,f +11600,3021,0,1,f +11600,3021,2,1,f +11600,3022,15,1,f +11600,3023,2,4,f +11600,3023,15,5,f +11600,3024,36,2,f +11600,3024,46,2,f +11600,3024,15,4,f +11600,3034,2,2,f +11600,3037,15,8,f +11600,3068b,0,1,f +11600,3069bp25,15,1,f +11600,3622,15,4,f +11600,3623,15,2,f +11600,3626apr0001,14,1,f +11600,3665,15,2,f +11600,3709,0,1,f +11600,3709,15,1,f +11600,3710,15,3,f +11600,3738,15,1,f +11600,3738,0,1,f +11600,3749,7,1,f +11600,3787,15,2,f +11600,3795,0,1,f +11600,3821,15,1,f +11600,3822,15,1,f +11600,3823,41,1,f +11600,3829c01,15,1,f +11600,3853,15,1,f +11600,3856,2,2,f +11600,3937,0,2,f +11600,3938,0,3,f +11600,4032a,2,2,f +11600,4070,15,2,f +11600,4081b,7,2,f +11600,4084,0,8,f +11600,4175,7,1,f +11600,4211,15,1,f +11600,4213,15,1,f +11600,4214,15,1,f +11600,4485,15,1,f +11600,4600,0,4,f +11600,4624,15,8,f +11600,4854,15,2,f +11600,4871,15,1,f +11600,6141,7,4,f +11600,73590c01a,15,1,f +11600,970c00,2,1,f +11600,973c01,15,1,f +11601,3004,8,1,f +11601,3004,4,2,f +11601,3004,2,4,f +11601,3004pr20,15,1,f +11601,3020,6,1,f +11601,3021,0,1,f +11601,3021,4,1,f +11601,3022,2,2,f +11601,3022,0,1,f +11601,3023,4,3,f +11601,3023,0,2,f +11601,3039,2,2,f +11601,3039,4,1,f +11601,3040b,4,1,f +11601,3298,15,1,f +11601,3298,2,2,f +11601,3660,8,1,f +11601,3660,6,2,f +11601,3710,4,2,f +11601,4589,46,1,f +11601,6141,46,1,t +11601,6141,15,1,t +11601,6141,46,1,f +11601,6141,15,1,f +11602,2412b,0,5,f +11602,2419,71,2,f +11602,2420,72,6,f +11602,2431,72,14,f +11602,2432,0,2,f +11602,2434,0,2,f +11602,2436,1,2,f +11602,2444,1,2,f +11602,2450,71,6,f +11602,2460,71,2,f +11602,2476a,71,2,f +11602,2584,0,1,f +11602,2585,71,1,f +11602,2730,0,4,f +11602,2780,0,1,t +11602,2780,0,23,f +11602,2817,71,5,f +11602,2825,0,2,f +11602,3003,72,3,f +11602,3004,71,11,f +11602,3010,71,5,f +11602,30157,72,1,f +11602,30165,72,4,f +11602,30192,72,1,f +11602,3020,484,6,f +11602,3020,72,14,f +11602,3021,71,22,f +11602,3022,72,21,f +11602,3023,71,25,f +11602,30256,15,1,f +11602,3028,71,1,f +11602,3029,71,4,f +11602,3030,72,4,f +11602,3030,71,1,f +11602,3031,71,2,f +11602,3032,72,1,f +11602,3033,72,4,f +11602,3033,71,4,f +11602,3034,71,2,f +11602,3034,72,5,f +11602,3035,71,3,f +11602,3035,72,2,f +11602,3035,484,1,f +11602,3036,72,2,f +11602,30361dps1,15,1,f +11602,30362,15,2,f +11602,30363,71,3,f +11602,30365,72,2,f +11602,30367apr01,15,1,f +11602,30374,41,1,f +11602,30374,42,1,f +11602,3039,72,6,f +11602,30414,72,6,f +11602,3044b,72,2,f +11602,30540,0,2,f +11602,30562,72,2,f +11602,30562,71,2,f +11602,30565,72,12,f +11602,3063b,0,2,f +11602,3069b,72,7,f +11602,3069bpr0070,0,1,f +11602,3069bpr0086,71,1,f +11602,3176,71,1,f +11602,32000,72,15,f +11602,32016,71,1,f +11602,32018,0,6,f +11602,32054,4,8,f +11602,32054,71,10,f +11602,32056,72,4,f +11602,32062,0,10,f +11602,32064b,71,7,f +11602,32073,71,2,f +11602,32123b,14,1,t +11602,32123b,14,4,f +11602,32184,0,1,f +11602,32187,71,2,f +11602,32291,72,4,f +11602,32316,71,1,f +11602,32523,72,2,f +11602,32524,72,2,f +11602,32525,71,5,f +11602,32526,71,4,f +11602,32526,1,6,f +11602,32529,71,3,f +11602,32530,72,2,f +11602,32532,71,1,f +11602,32557,0,2,f +11602,33299a,71,2,f +11602,3460,71,6,f +11602,3623,72,8,f +11602,3626bpr0514,78,1,f +11602,3626bpr0555,25,1,f +11602,3660,72,8,f +11602,3665,72,8,f +11602,3666,72,9,f +11602,3673,71,1,t +11602,3673,71,4,f +11602,3678b,71,2,f +11602,3679,71,1,f +11602,3680,71,1,f +11602,3684b,72,10,f +11602,3700,0,11,f +11602,3701,71,6,f +11602,3702,71,3,f +11602,3705,0,10,f +11602,3706,0,9,f +11602,3710,71,9,f +11602,3713,71,1,f +11602,3713,71,1,t +11602,3737,0,1,f +11602,3747b,71,4,f +11602,3749,19,4,f +11602,3794a,70,7,f +11602,3795,71,9,f +11602,3832,72,5,f +11602,3832,71,1,f +11602,3894,0,4,f +11602,3895,71,1,f +11602,3937,71,1,f +11602,3960,72,1,f +11602,4019,71,1,f +11602,40490,0,1,f +11602,4070,1,5,f +11602,4079,70,2,f +11602,4095,71,2,f +11602,41539,71,2,f +11602,4162,71,2,f +11602,41677,1,4,f +11602,41678,71,12,f +11602,41769,72,1,f +11602,41770,71,1,f +11602,42023,72,2,f +11602,4274,1,1,t +11602,4274,1,6,f +11602,4285b,72,1,f +11602,4286,72,4,f +11602,4287,72,7,f +11602,43093,1,23,f +11602,43337,71,2,f +11602,43710,72,1,f +11602,43711,72,1,f +11602,43722,72,3,f +11602,43723,72,3,f +11602,44301a,71,2,f +11602,44302a,72,1,f +11602,44375a,71,1,f +11602,44375a,42,1,f +11602,44567a,72,3,f +11602,44568,71,2,f +11602,44570,71,2,f +11602,4460b,71,2,f +11602,44728,0,7,f +11602,4477,71,7,f +11602,4477,72,4,f +11602,4510,71,5,f +11602,4519,71,5,f +11602,45301,72,2,f +11602,4532,25,1,f +11602,4533,15,1,f +11602,4589,71,2,f +11602,4623,71,1,f +11602,47398,71,3,f +11602,47398,72,1,f +11602,4740,42,4,f +11602,47973,72,1,f +11602,48092,72,4,f +11602,48092,71,4,f +11602,4865a,0,4,f +11602,50304,72,3,f +11602,50304,71,3,f +11602,50305,72,2,f +11602,50955,71,1,f +11602,50956,71,1,f +11602,52107,0,4,f +11602,53585,0,2,f +11602,53586,135,1,f +11602,54200,72,16,f +11602,54200,72,1,t +11602,55013,72,1,f +11602,55295,0,1,f +11602,55296,0,1,f +11602,55297,0,1,f +11602,55298,0,1,f +11602,55299,0,1,f +11602,55300,0,1,f +11602,56823c50,0,1,f +11602,58177,0,4,f +11602,59426,72,2,f +11602,59443,0,9,f +11602,59443,71,12,f +11602,60477,72,2,f +11602,6106,71,3,f +11602,6106,72,3,f +11602,6108,71,2,f +11602,61183,70,1,f +11602,61184,71,2,f +11602,61195pr01,15,1,f +11602,6134,0,1,f +11602,6140,15,1,f +11602,6141,36,7,f +11602,6141,71,33,f +11602,6141,36,1,t +11602,6141,71,1,t +11602,6179,72,3,f +11602,6222,0,2,f +11602,6231,0,8,f +11602,6233,0,1,f +11602,62462,71,1,f +11602,6259,72,2,f +11602,63284,378,1,f +11602,63776,378,1,f +11602,63777,378,1,f +11602,64567,71,2,f +11602,6536,71,2,f +11602,6541,71,11,f +11602,6553,72,3,f +11602,6558,1,19,f +11602,6587,72,3,f +11602,6628,0,1,f +11602,6629,71,2,f +11602,6632,0,4,f +11602,970c00,0,1,f +11602,970x192,71,1,f +11602,973pr1358ac01,0,1,f +11602,973pr1388c01,25,1,f +11603,468c03,0,1,f +11606,50163,72,2,f +11607,13341,14,1,f +11607,13607,321,1,f +11607,14210,15,4,f +11607,15449,0,1,f +11607,16195,25,2,f +11607,17494,4,1,f +11607,3011,25,2,f +11607,3011,0,1,f +11607,3437,4,1,f +11607,4066,41,4,f +11607,40666,25,4,f +11607,40666,72,4,f +11607,47202bpr0007,25,1,f +11607,51269,71,1,f +11607,6474,25,1,f +11607,74965,10,1,f +11607,76371,4,4,f +11607,76371,322,4,f +11607,76371,14,8,f +11607,92938,1,1,f +11607,98223,0,1,f +11610,22253,80,4,f +11610,2994,14,2,f +11610,32007,15,6,f +11610,32057,80,2,f +11610,32076,0,2,f +11610,32077,80,2,f +11610,32078,0,2,f +11610,32180,0,4,f +11610,6578,0,2,f +11610,680c01,0,2,f +11612,3001,7,50,f +11613,2432,2,2,f +11613,2450,71,2,f +11613,3022,71,1,f +11613,3034,71,1,f +11613,30386,71,2,f +11613,30387,71,2,f +11613,3039,72,1,f +11613,30414,0,2,f +11613,3069b,320,2,f +11613,3176,72,2,f +11613,32530,72,2,f +11613,3626bpr0525,78,4,f +11613,3700,71,1,f +11613,3795,0,2,f +11613,3795,2,1,f +11613,3941,0,1,f +11613,3957a,71,1,f +11613,4150,71,2,f +11613,4274,1,3,f +11613,4274,1,1,t +11613,44302a,71,2,f +11613,44567a,72,2,f +11613,54200,71,1,t +11613,54200,71,2,f +11613,54200,182,1,t +11613,54200,182,2,f +11613,54383,71,1,f +11613,54384,71,1,f +11613,58247,0,3,f +11613,59900,72,3,f +11613,61184,71,2,f +11613,61189pr0003,15,3,f +11613,61189pr0006,15,1,f +11613,61190a,0,1,f +11613,61190b,0,1,f +11613,61190c,0,1,f +11613,61190f,0,2,f +11613,61678,71,2,f +11613,63585,0,2,f +11613,63586,0,2,f +11613,6541,0,2,f +11613,6636,72,2,f +11613,8014stk01,9999,1,t +11613,970x026,15,4,f +11613,973pr0470c01,15,3,f +11613,973pr1451c01,15,1,f +11614,2412b,15,4,f +11614,2412b,1,2,f +11614,2420,0,4,f +11614,2431,272,1,f +11614,2431,15,2,f +11614,2432,320,1,f +11614,2456,71,1,f +11614,2476a,71,4,f +11614,2555,15,4,f +11614,2569,182,1,t +11614,2569,182,2,f +11614,2654,71,3,f +11614,2654,72,3,f +11614,2654,143,1,f +11614,2730,0,2,f +11614,2736,71,1,f +11614,2744,0,2,f +11614,3002,0,2,f +11614,3004,71,1,f +11614,3004,0,2,f +11614,3008,320,2,f +11614,3010,0,1,f +11614,30106,47,1,f +11614,3020,0,1,f +11614,3020,272,2,f +11614,3020,379,1,f +11614,3021,0,1,f +11614,30211,0,6,f +11614,30214,143,1,f +11614,3022,71,1,f +11614,3023,72,5,f +11614,3023,272,4,f +11614,30236,71,1,f +11614,3024,320,2,f +11614,3024,320,1,t +11614,3031,320,1,f +11614,3031,0,2,f +11614,30355,272,1,f +11614,30356,272,1,f +11614,30364,71,4,f +11614,30374,0,1,f +11614,30388,0,2,f +11614,3039,320,1,f +11614,3040b,0,2,f +11614,30503,272,2,f +11614,30553,0,1,f +11614,30608,70,1,f +11614,3068b,0,2,f +11614,3068bpb0069,379,1,f +11614,3068bpb0070,72,1,f +11614,3068bpr0108,72,1,f +11614,3069b,71,1,f +11614,3069bpb040,72,1,f +11614,3176,72,2,f +11614,32013,15,1,f +11614,32015,0,1,f +11614,32039,71,1,f +11614,32039,0,2,f +11614,32062,0,3,f +11614,32073,71,1,f +11614,32123b,71,4,f +11614,32123b,71,2,t +11614,32324,0,1,f +11614,32449,15,2,f +11614,32506,0,1,f +11614,3622,0,2,f +11614,3623,0,5,f +11614,3626bpb0091,15,1,f +11614,3626bpr0190,15,1,f +11614,3626bpr0335,14,1,f +11614,3666,272,2,f +11614,3675,379,2,f +11614,3701,0,2,f +11614,3705,0,2,f +11614,3710,379,1,f +11614,3710,272,8,f +11614,3737,0,1,f +11614,3747b,0,2,f +11614,3795,0,1,f +11614,3937,72,1,f +11614,3938,19,1,f +11614,3940b,0,2,f +11614,3957a,182,2,f +11614,40902,0,5,f +11614,41532,0,4,f +11614,41669,143,6,f +11614,41747,0,1,f +11614,41747,320,1,f +11614,41748,320,1,f +11614,41748,0,1,f +11614,41751pr006,0,1,f +11614,41752,8,1,f +11614,42022,15,2,f +11614,42060pb05,379,1,f +11614,42061pb05,379,1,f +11614,4274,71,2,f +11614,4274,15,2,f +11614,4274,15,1,t +11614,4274,71,1,t +11614,4286,0,2,f +11614,4287,0,2,f +11614,43093,1,6,f +11614,43710,0,1,f +11614,43711,0,1,f +11614,44032,379,2,f +11614,44036,0,1,f +11614,44294,71,1,f +11614,44301a,320,2,f +11614,44302a,72,4,f +11614,44567a,72,1,f +11614,4740,143,2,f +11614,47753,0,1,f +11614,47843,379,1,f +11614,47844,320,2,f +11614,47844pb02,47,1,f +11614,47846,0,1,f +11614,47973,0,1,f +11614,4856a,0,3,f +11614,4865a,71,2,f +11614,4868b,0,2,f +11614,4869,71,2,f +11614,6091,0,4,f +11614,6141,71,2,t +11614,6141,71,12,f +11614,6141,33,1,f +11614,6141,33,1,t +11614,6536,15,1,f +11614,6541,0,6,f +11614,6553,71,1,f +11614,73983,0,2,f +11614,73983,320,2,f +11614,85543,15,1,f +11614,970c00pb017,0,1,f +11614,970d04,320,1,f +11614,973pb0397c01,0,1,f +11614,973pb0425c01,0,1,f +11615,2780,0,9,f +11615,30151a,42,1,f +11615,30361c,288,1,f +11615,32062,4,4,f +11615,32174,72,5,f +11615,43093,1,2,f +11615,44138,288,2,f +11615,47296,72,4,f +11615,47297,72,2,f +11615,47299,288,2,f +11615,47306,72,1,f +11615,47312,72,1,f +11615,47328,72,2,f +11615,49423,179,1,f +11615,50921,288,2,f +11615,53543,288,2,f +11615,57523c01,135,2,f +11615,57525,4,16,f +11615,57534,288,1,f +11615,57536,42,1,f +11615,57539,135,1,f +11615,57547,288,1,f +11616,2420,0,4,f +11616,30137,6,3,f +11616,30173a,0,1,f +11616,30177,8,1,f +11616,3023,7,2,f +11616,3626bpx7,14,1,f +11616,3839b,1,1,f +11616,4085c,1,4,f +11616,4497,0,2,f +11616,6133,0,2,f +11616,970c00,8,1,f +11616,973pb0240c03,8,1,f +11619,3001apb04,15,5,f +11619,3020,15,1,f +11619,3020,7,1,f +11619,3021,7,5,f +11619,3021,15,4,f +11619,3022,7,1,f +11619,3022,4,1,f +11619,3022,15,2,f +11619,3023,4,1,f +11619,3023,47,1,f +11619,3034,15,2,f +11619,3034,7,6,f +11619,3139,0,3,f +11619,3464,4,3,f +11619,3474,7,1,f +11619,3475a,15,2,f +11619,3585,7,1,f +11619,3586,7,1,f +11619,8,7,3,f +11619,bb96pb03,15,1,f +11621,11438,0,1,f +11621,11477,308,4,f +11621,15068,308,1,f +11621,15092,72,1,f +11621,15208,15,1,f +11621,15209,15,2,f +11621,15392,72,1,t +11621,15392,72,1,f +11621,15573,0,1,f +11621,18031,179,1,f +11621,20105,0,1,f +11621,22388,297,2,f +11621,22388,297,1,t +11621,22402,321,1,f +11621,2723,0,4,f +11621,2730,0,2,f +11621,30137,70,1,f +11621,3023,72,2,f +11621,30273,1,1,f +11621,30294,57,1,f +11621,30414,0,1,f +11621,3623,70,2,f +11621,3626cpr1817,179,1,f +11621,3626cpr1818,4,1,f +11621,3666,0,4,f +11621,3700,0,2,f +11621,3706,0,2,f +11621,3710,70,1,f +11621,3713,71,1,f +11621,3713,71,1,t +11621,3749,19,6,f +11621,3795,0,1,f +11621,3941,182,2,f +11621,4032a,308,4,f +11621,44728,0,2,f +11621,45590,0,4,f +11621,47457,308,2,f +11621,47720,0,1,f +11621,48336,0,1,f +11621,48493,0,1,f +11621,49668,15,2,f +11621,53451,15,2,f +11621,53451,4,1,t +11621,53451,15,1,t +11621,53451,4,2,f +11621,60470a,0,1,f +11621,60481,308,4,f +11621,6141,25,2,f +11621,6141,25,1,t +11621,64867,182,2,f +11621,6632,0,2,f +11621,970c00pr0968,71,1,f +11621,970c00pr0969,4,1,f +11621,973pr3190c01,71,1,f +11621,973pr3191c01,4,1,f +11621,98138,182,1,t +11621,98138,182,2,f +11621,98989,71,1,f +11621,99207,71,2,f +11622,32002,8,10,f +11622,32015,8,8,f +11622,32039,8,4,f +11622,32062,0,10,f +11622,32073,0,4,f +11622,32138,0,4,f +11622,32140,8,2,f +11622,32174,22,6,f +11622,32174,73,6,f +11622,32175,73,1,f +11622,32175,22,1,f +11622,32177,0,4,f +11622,32271,0,6,f +11622,32271,8,4,f +11622,32291,8,8,f +11622,32310,73,1,f +11622,32310,22,1,f +11622,32348,8,2,f +11622,32449,8,4,f +11622,32482,0,12,f +11622,32506,15,2,f +11622,32526,0,4,f +11622,32553,7,4,f +11622,32554,54,4,f +11622,32556,7,6,f +11622,32566,22,2,f +11622,32566,73,2,f +11622,3706,0,4,f +11622,3713,7,8,f +11622,40490,0,8,f +11622,41752,8,2,f +11622,4274,7,6,f +11622,4519,0,16,f +11622,6141,46,3,f +11622,6141,36,3,f +11622,6558,0,18,f +11622,6587,8,8,f +11622,6628,0,8,f +11622,6630,0,4,f +11622,71509,0,8,f +11622,78c02,22,4,f +11622,78c02,73,4,f +11623,3626bpr0947,14,1,f +11623,3742,14,1,t +11623,3742,14,3,f +11623,88646,0,1,f +11623,970c00,85,1,f +11623,973pr2026c01,19,1,f +11623,99248pr0001,70,1,f +11623,99249,2,1,f +11626,2357,19,4,f +11626,2412b,42,4,f +11626,2412b,14,1,f +11626,2431,27,2,f +11626,2431,1,2,f +11626,2447,47,1,t +11626,2447,47,1,f +11626,2450,72,2,f +11626,2462,71,2,f +11626,2569,42,1,t +11626,2569,42,2,f +11626,2654,33,8,f +11626,2780,0,1,t +11626,2780,0,2,f +11626,3002,71,8,f +11626,3002,27,1,f +11626,3004,27,5,f +11626,3020,72,1,f +11626,3021,19,1,f +11626,3022,72,4,f +11626,3023,0,4,f +11626,3023,1,3,f +11626,3031,0,8,f +11626,3040b,72,4,f +11626,30552,0,2,f +11626,30565,27,4,f +11626,30565,71,2,f +11626,3069b,72,3,f +11626,3069bpr0070,0,1,f +11626,32014,0,1,f +11626,32062,4,1,f +11626,32123b,71,5,f +11626,32123b,71,1,t +11626,32449,0,1,f +11626,32474,27,1,f +11626,3298,71,4,f +11626,3298,72,3,f +11626,3623,71,2,f +11626,3626bpr0791,14,1,f +11626,3626cpr0793,14,1,f +11626,3659,27,4,f +11626,3700,1,1,f +11626,3701,71,2,f +11626,3705,0,1,f +11626,3794a,27,7,f +11626,3901,70,1,f +11626,3937,72,1,f +11626,3956,71,1,f +11626,4032a,27,4,f +11626,4070,72,4,f +11626,40902,71,2,f +11626,41854,85,4,f +11626,4496,70,1,f +11626,4716,71,2,f +11626,48092,71,2,f +11626,50946,71,1,f +11626,51739,72,1,f +11626,54869,36,1,f +11626,58846,71,4,f +11626,59900,57,1,f +11626,6003,72,4,f +11626,61184,71,1,f +11626,61252,71,1,f +11626,6134,1,1,f +11626,61406pat0004,72,4,f +11626,6141,85,1,t +11626,6141,85,14,f +11626,6141,42,9,f +11626,6141,42,2,t +11626,62462,71,1,f +11626,6587,28,4,f +11626,7052stk01,9999,1,t +11626,87087,27,4,f +11626,87747,0,4,f +11626,87781,321,1,f +11626,87993,179,1,f +11626,89523,72,1,f +11626,95120,27,1,f +11626,95188,72,4,f +11626,95198,47,1,f +11626,95199,72,1,f +11626,95202pr0001,27,1,f +11626,970c00pr0223,0,1,f +11626,970c00pr0225,379,1,f +11626,970c00pr0232,321,1,f +11626,973pr1774c01,0,1,f +11626,973pr1785c01,321,1,f +11626,973pr1859c01,15,1,f +11627,3003,7,1,f +11627,3004,7,2,f +11627,3005,7,2,f +11627,3010,8,2,f +11627,30153,34,1,f +11627,30153,42,1,f +11627,30153,33,1,f +11627,30153,36,1,f +11627,30236,0,1,f +11627,30237a,7,2,f +11627,30246,8,1,f +11627,30273,8,1,f +11627,3626bpr0895,15,1,f +11627,3626bpx70,14,1,f +11627,3688,1,1,f +11627,3844,0,1,f +11627,3846p4e,7,1,f +11627,3957a,0,1,f +11627,4202,2,1,f +11627,4495a,1,1,f +11627,4738a,6,1,f +11627,4739a,6,1,f +11627,4865a,0,1,f +11627,6020,0,1,f +11627,6123,8,1,f +11627,6126a,57,2,f +11627,6260,15,1,f +11627,6265,15,1,t +11627,6265,15,2,f +11627,6266,15,2,f +11627,6266,15,1,t +11627,970c00pb013,0,1,f +11627,973px117c01,8,1,f +11627,x190,383,1,f +11629,12708pr01,47,2,f +11629,3004,70,1,f +11629,3022,4,1,f +11629,3023,15,1,f +11629,3023,14,1,f +11629,3023,70,1,f +11629,3040b,2,2,f +11629,3710,15,1,f +11629,3794b,4,2,f +11629,3794b,14,1,f +11629,3794b,15,1,f +11629,4286,2,2,f +11629,44375a,15,1,f +11629,54200,15,2,f +11629,59900,2,1,f +11629,6141,15,1,f +11629,6141,1,2,f +11629,6141,297,1,f +11629,6141,4,2,f +11631,2780,0,25,f +11631,2780,0,3,t +11631,2825,0,2,f +11631,32002,72,3,f +11631,32002,72,1,t +11631,32015,4,2,f +11631,32034,71,1,f +11631,32039,4,1,f +11631,32054,0,1,f +11631,32054,71,1,f +11631,32062,4,23,f +11631,32123b,71,3,f +11631,32123b,71,2,t +11631,32174,0,16,f +11631,32177,320,4,f +11631,32249,72,4,f +11631,32250,72,6,f +11631,32476,0,2,f +11631,32476,320,2,f +11631,32523,0,8,f +11631,32524,0,4,f +11631,3705,0,9,f +11631,3708,0,2,f +11631,41239,0,4,f +11631,41669,57,2,f +11631,41669,135,2,f +11631,41669,15,11,f +11631,41677,0,10,f +11631,42003,0,3,f +11631,4274,71,1,t +11631,4274,71,1,f +11631,43093,1,9,f +11631,44813,135,3,f +11631,4519,71,14,f +11631,45749,320,2,f +11631,45749,0,2,f +11631,47299,135,2,f +11631,47306,0,1,f +11631,47326pat03,0,1,f +11631,47337,135,2,f +11631,49423,135,2,f +11631,50858,135,1,f +11631,50898,0,4,f +11631,50898,72,4,f +11631,50919,135,1,f +11631,50923,72,1,f +11631,53451,15,2,f +11631,53451,15,1,t +11631,53500,57,1,f +11631,53543,70,1,f +11631,53543,135,2,f +11631,53544,135,1,f +11631,53546,320,1,f +11631,53551,135,8,f +11631,53562pat0005,0,2,f +11631,53564,320,2,f +11631,53564,0,1,f +11631,53564,148,2,f +11631,53574,0,2,f +11631,53584,135,1,f +11631,53585,0,3,f +11631,53586,135,2,f +11631,54273,135,1,f +11631,55013,0,2,f +11631,55095pr0001,15,1,f +11631,56245,0,1,f +11631,6536,0,4,f +11631,6538b,72,1,f +11631,6538b,0,1,f +11631,6558,0,21,f +11631,6575,0,4,f +11631,6632,320,13,f +11632,11089,71,1,f +11632,11091,0,4,f +11632,11091,85,1,f +11632,11097,179,1,f +11632,11100,0,2,f +11632,12550pr0003,0,1,f +11632,12825,0,3,f +11632,2420,71,2,f +11632,2488,2,1,t +11632,2817,0,1,f +11632,3003,71,1,f +11632,30043,0,2,f +11632,3020,320,2,f +11632,3020,0,2,f +11632,3022,70,2,f +11632,3023,72,2,f +11632,30375,0,1,f +11632,30377,0,2,f +11632,30377,0,1,t +11632,30526,72,2,f +11632,3069bpr0128,0,2,f +11632,3070b,0,1,f +11632,3070b,0,1,t +11632,32062,4,2,f +11632,3623,320,4,f +11632,3626cpr1131,0,1,f +11632,3700,0,3,f +11632,3710,71,1,f +11632,3747b,0,1,f +11632,3794b,0,6,f +11632,4081b,0,1,f +11632,41678,0,2,f +11632,41769,320,1,f +11632,41770,320,1,f +11632,4274,71,1,f +11632,4274,71,1,t +11632,44675,0,1,f +11632,4589,36,1,f +11632,4623,71,1,f +11632,4855,0,1,f +11632,4871,0,1,f +11632,50950,85,1,f +11632,50950,0,2,f +11632,53451,15,1,t +11632,53451,15,4,f +11632,53989,320,4,f +11632,53989,72,5,f +11632,54200,85,2,f +11632,54200,85,1,t +11632,60169,72,1,f +11632,60470a,71,1,f +11632,61184,71,1,f +11632,61409,0,2,f +11632,6141,36,1,t +11632,6141,36,9,f +11632,87083,72,1,f +11632,92692,0,1,f +11632,93160,15,1,f +11632,93160,15,1,t +11632,970c00pr0439,0,1,f +11632,973pr2241c01,0,1,f +11632,98138,41,1,t +11632,98138,41,1,f +11632,98141,85,2,f +11632,99021,1,2,f +11632,99780,72,2,f +11633,2432,1,2,f +11633,3004pr0001,14,3,f +11633,3022,0,3,f +11633,3023,0,1,f +11633,3023,15,3,f +11633,3024,15,4,f +11633,3024,1,4,f +11633,30374,0,2,f +11633,3040b,4,6,f +11633,32028,15,3,f +11633,3298,1,1,f +11633,3460,72,2,f +11633,3660,4,3,f +11633,3666,1,2,f +11633,3710,1,2,f +11633,3794b,0,2,f +11633,3795,1,2,f +11633,3839b,72,1,f +11633,4032a,1,2,f +11633,4216,4,2,f +11633,4286,4,3,f +11633,54200,1,1,t +11633,54200,4,6,f +11633,54200,4,1,t +11633,54200,1,4,f +11633,6019,14,2,f +11633,6141,15,3,f +11633,6141,14,4,f +11633,6141,14,1,t +11633,6141,15,1,t +11634,122c01,0,2,f +11634,3005,0,2,f +11634,3021,14,1,f +11634,3022,0,1,f +11634,3062b,0,3,f +11634,3314,0,1,f +11634,3317,14,1,f +11634,3626apr0001,14,1,f +11634,3641,0,2,f +11634,3795,14,1,f +11634,3829c01,14,1,f +11634,3833,4,1,f +11634,4070,14,2,f +11634,4079,14,1,f +11634,4084,0,2,f +11634,6141,47,2,f +11634,784,14,1,f +11634,970c00,1,1,f +11634,973p27c01,1,1,f +11635,2446pr0002,15,1,f +11635,2447,33,1,f +11635,3626bpr0944,14,1,f +11635,50231,15,1,f +11635,88646,0,1,f +11635,970c00pr0316,15,1,f +11635,973pr0803c01,15,1,f +11635,98371,84,1,f +11636,2586pr0005,71,1,f +11636,3626bpr0734,14,1,f +11636,50231,288,1,f +11636,88646,0,1,f +11636,93230pr0001,19,1,f +11636,93231,70,1,f +11636,970c00pr0186,70,1,f +11636,973pr1704c01,288,1,f +11639,2456,4,6,f +11639,3001,4,3,f +11639,3002,4,8,f +11639,3003,4,8,f +11639,3004,4,19,f +11639,3004,0,2,f +11639,3005,4,4,f +11639,3005,0,6,f +11639,3006,4,1,f +11639,3007,4,4,f +11639,3009,4,3,f +11639,3010,0,1,f +11639,3010,4,4,f +11639,3020,4,4,f +11639,3021,4,6,f +11639,3022,4,14,f +11639,3023,0,7,f +11639,3023,4,27,f +11639,3024,0,12,f +11639,3024,4,18,f +11639,3622,0,2,f +11639,3623,0,4,f +11639,3666,0,2,f +11639,3666,4,1,f +11639,3710,4,1,f +11639,3795,4,1,f +11640,11609,191,4,f +11640,3021,71,1,f +11640,3021,15,1,f +11640,3022,4,2,f +11640,3022,15,2,f +11640,3023,4,1,f +11640,30414,71,2,f +11640,3068bpr0899,15,1,f +11640,4032a,0,4,f +11640,44728,4,1,f +11640,59900,0,1,f +11640,6254,15,1,f +11640,74698,0,1,f +11640,87580,4,1,f +11640,92946,4,2,f +11641,bin06,1,1,f +11643,3001,1,4,f +11643,3003,1,18,f +11643,3004,4,5,f +11643,3004,1,6,f +11643,3010,4,6,f +11643,3030,1,2,f +11643,3032,14,1,f +11643,3068bpf4,15,1,f +11643,3068pb21,15,1,f +11643,3334,2,1,f +11643,3795,1,1,f +11643,3900,4,1,f +11643,3962a,0,1,f +11643,3980c02,1,2,f +11643,4071,1,2,f +11643,4222a,450,1,f +11643,4610,4,1,f +11643,4611,14,2,f +11643,749,15,1,f +11643,787c01,1,1,f +11643,u9154,0,2,f +11643,u9204c01,1,1,f +11643,x581c05,1,1,f +11643,x659,4,1,f +11644,2432,0,1,f +11644,2446,0,1,f +11644,2447,42,1,f +11644,2466,42,1,f +11644,2555,15,2,f +11644,2569,42,2,f +11644,2593,0,3,f +11644,3004,15,2,f +11644,3004,0,1,f +11644,3007,0,1,f +11644,3009,0,2,f +11644,3021,0,2,f +11644,3022,15,1,f +11644,3023,0,1,f +11644,3069bp68,15,1,f +11644,3298,0,1,f +11644,3626apr0001,14,1,f +11644,3660,0,1,f +11644,3710,15,1,f +11644,3795,15,2,f +11644,3795,0,1,f +11644,3838,0,1,f +11644,3937,0,1,f +11644,3938,15,1,f +11644,4590,0,1,f +11644,4730,0,3,f +11644,970x026,15,1,f +11644,973p51c01,15,1,f +11645,11241pr0002,19,1,f +11645,11399,15,2,f +11645,11816pr0002,78,1,f +11645,11816pr0006,78,1,f +11645,12825,70,3,f +11645,12825,71,1,f +11645,13965,70,3,f +11645,14719,15,4,f +11645,14769,71,2,f +11645,15207,71,1,f +11645,15332,70,2,f +11645,15395,15,1,f +11645,15397,484,1,f +11645,16925pr0003c01,15,1,f +11645,22667,26,5,f +11645,2357,15,2,f +11645,2412b,71,14,f +11645,2412b,19,2,f +11645,2417,288,2,f +11645,2417,2,2,f +11645,2423,2,5,f +11645,2431,27,4,f +11645,2431,72,2,f +11645,2431,71,1,f +11645,2453a,15,4,f +11645,2454a,15,3,f +11645,2454b,26,4,f +11645,2456,70,1,f +11645,2877,14,5,f +11645,2921,70,4,f +11645,3001,30,1,f +11645,3001,70,1,f +11645,3001,15,3,f +11645,3002,15,16,f +11645,3003,72,2,f +11645,3003,14,2,f +11645,3004,70,3,f +11645,3004,15,8,f +11645,3004,26,20,f +11645,3005,15,12,f +11645,3005,26,40,f +11645,3008,70,2,f +11645,3008,15,4,f +11645,3009,71,1,f +11645,3009,15,2,f +11645,3009,26,12,f +11645,3010,15,6,f +11645,3010,26,8,f +11645,30136,31,3,f +11645,30136,71,3,f +11645,30165,15,1,f +11645,30165,84,1,f +11645,3020,15,6,f +11645,3020,14,2,f +11645,3020,0,1,f +11645,3020,2,2,f +11645,3020,19,3,f +11645,3020,28,4,f +11645,3021,15,1,f +11645,3021,2,4,f +11645,3022,4,2,f +11645,3022,71,3,f +11645,3022,84,1,f +11645,3022,15,1,f +11645,3023,70,5,f +11645,3023,30,3,f +11645,3023,14,2,f +11645,3023,29,1,f +11645,3023,19,2,f +11645,3023,0,1,f +11645,3031,70,1,f +11645,3032,2,1,f +11645,3032,15,2,f +11645,3032,70,1,f +11645,3034,29,2,f +11645,3035,29,2,f +11645,3037,15,1,f +11645,3038,30,2,f +11645,3039,71,1,f +11645,3040b,26,6,f +11645,3040b,15,4,f +11645,30414,19,2,f +11645,3062b,46,2,f +11645,3062b,70,20,f +11645,3062b,27,12,f +11645,3068b,15,2,f +11645,3068b,73,1,f +11645,3069b,73,1,f +11645,3069b,19,5,f +11645,3069b,15,8,f +11645,3069bpr0055,15,1,f +11645,3070b,72,6,f +11645,3070b,27,2,f +11645,3070b,14,4,f +11645,3297,15,4,f +11645,3298,15,4,f +11645,33009,70,1,f +11645,33051,4,1,f +11645,3308,15,2,f +11645,33172,25,2,f +11645,33183,10,2,f +11645,33291,5,23,f +11645,33291,10,8,f +11645,33291,191,7,f +11645,3460,2,2,f +11645,3460,19,1,f +11645,3460,15,2,f +11645,3460,70,2,f +11645,3464,15,1,f +11645,3622,70,2,f +11645,3626c,47,1,f +11645,3633,15,4,f +11645,3659,15,1,f +11645,3660,15,4,f +11645,3665,15,4,f +11645,3666,71,2,f +11645,3666,30,2,f +11645,3710,19,8,f +11645,3710,15,2,f +11645,3741,2,4,f +11645,3742,14,1,f +11645,3794b,2,4,f +11645,3794b,15,2,f +11645,3795,70,1,f +11645,3894,14,2,f +11645,3958,15,2,f +11645,3958,27,2,f +11645,4032a,19,4,f +11645,4032a,70,2,f +11645,4150,0,2,f +11645,4150,14,1,f +11645,4274,71,4,f +11645,4460b,70,2,f +11645,44728,14,1,f +11645,4477,15,2,f +11645,4477,70,1,f +11645,4523,5,1,f +11645,4533,15,1,f +11645,4599b,0,2,f +11645,46212,41,1,f +11645,4740,71,1,f +11645,4740,14,1,f +11645,48336,15,5,f +11645,48336,19,1,f +11645,4865b,29,2,f +11645,4865b,19,2,f +11645,54200,15,4,f +11645,59895,0,1,f +11645,59900,70,8,f +11645,59900,182,2,f +11645,60470a,15,1,f +11645,60477,15,2,f +11645,60478,15,2,f +11645,60583a,15,4,f +11645,60594,15,4,f +11645,60596,15,4,f +11645,60608,14,8,f +11645,60616a,15,2,f +11645,6079,15,2,f +11645,6091,30,4,f +11645,6108,15,2,f +11645,6141,1,1,f +11645,6141,41,1,f +11645,6141,29,6,f +11645,6141,70,2,f +11645,6141,36,1,f +11645,6141,4,2,f +11645,6141,46,1,f +11645,6141,25,8,f +11645,6141,27,10,f +11645,6191,30,2,f +11645,6231,29,8,f +11645,6231,71,4,f +11645,6256,29,1,f +11645,63864,14,5,f +11645,64644,297,1,f +11645,64799,14,1,f +11645,6636,15,10,f +11645,85984,14,3,f +11645,87079,15,2,f +11645,87079,71,11,f +11645,87087,14,2,f +11645,87087,288,1,f +11645,87087,19,4,f +11645,87552,15,3,f +11645,87580,14,4,f +11645,88072,19,4,f +11645,91405,19,2,f +11645,92254pr0001,226,1,f +11645,92254pr0002,320,1,f +11645,92257,320,1,f +11645,92258,226,1,f +11645,92410,15,1,f +11645,92438,29,2,f +11645,92456pr0013c01,78,1,f +11645,92456pr0037c01,78,1,f +11645,92593,15,2,f +11645,92819pr0002a,27,1,f +11645,93085pr02,15,1,f +11645,93085pr05,84,1,f +11645,93086,73,1,f +11645,93086,30,1,f +11645,93087,0,2,f +11645,93089pr0001a,71,1,f +11645,93092,191,1,f +11645,93096,29,4,f +11645,94717,30,4,f +11645,94718,30,1,f +11645,94719,30,1,f +11645,94720,30,2,f +11645,94721,30,1,f +11645,94722,30,1,f +11645,94723,30,1,f +11645,94724,30,1,f +11645,94725,30,4,f +11645,95342pr0001,15,1,f +11645,95827,4,4,f +11645,95828,4,4,f +11645,95829,4,4,f +11645,95831,4,4,f +11645,95832,4,4,f +11645,96874,25,1,t +11645,98138,78,4,f +11645,98138,179,2,f +11645,98138,297,1,f +11645,98138,71,6,f +11645,98138pr0018,84,2,f +11645,98288,4,1,f +11645,98387pr0001,15,1,f +11645,98387pr0002,71,1,f +11645,98560,15,6,f +11645,99780,0,4,f +11646,2432,0,1,f +11646,298c02,71,1,f +11646,30027b,71,4,f +11646,30028,0,4,f +11646,3020,27,1,f +11646,3022,27,1,f +11646,3023,27,1,f +11646,32000,72,1,f +11646,3626bpr0498,14,1,f +11646,3673,71,2,f +11646,3673,71,1,t +11646,3749,19,2,f +11646,3795,72,1,f +11646,3829c01,71,1,f +11646,4081b,0,2,f +11646,42003,72,2,f +11646,4600,0,1,f +11646,47755,72,1,f +11646,4865a,40,1,f +11646,50950,27,1,f +11646,6141,0,4,f +11646,6141,46,2,f +11646,6141,46,1,t +11646,6141,0,1,t +11646,6157,71,1,f +11646,86035,27,1,f +11646,87407,71,2,f +11646,970c00,1,1,f +11646,973pr1470c01,1,1,f +11647,2431,7,4,f +11647,2431,4,8,f +11647,2695,15,4,f +11647,2696,0,4,f +11647,2730,4,8,f +11647,2780,0,100,f +11647,2793c01,14,2,f +11647,2797c02,14,2,f +11647,2815,0,8,f +11647,2825,7,8,f +11647,2838c01,7,1,f +11647,2847c01,7,1,f +11647,2902,0,4,f +11647,2903,15,4,f +11647,2983,7,10,f +11647,3001,4,8,f +11647,3003,4,8,f +11647,3004,4,8,f +11647,3022,7,8,f +11647,3023,0,12,f +11647,3023,7,30,f +11647,3032,4,6,f +11647,3033,7,6,f +11647,3043,4,6,f +11647,3069b,4,4,f +11647,3460,7,8,f +11647,3460,4,8,f +11647,3483,0,8,f +11647,3623,7,8,f +11647,3623,4,12,f +11647,3647,7,30,f +11647,3648a,7,16,f +11647,3649,7,8,f +11647,3650c,7,10,f +11647,3651,7,40,f +11647,3652,7,2,f +11647,3666,4,4,f +11647,3666,7,8,f +11647,3673,7,75,f +11647,3679,7,10,f +11647,3680,1,10,f +11647,3700,4,24,f +11647,3700,1,24,f +11647,3701,4,24,f +11647,3701,1,24,f +11647,3702,1,8,f +11647,3702,4,8,f +11647,3703,1,8,f +11647,3703,4,8,f +11647,3704,0,6,f +11647,3705,0,16,f +11647,3706,0,24,f +11647,3707,0,16,f +11647,3708,0,8,f +11647,3709,7,8,f +11647,3709,4,8,f +11647,3710,7,12,f +11647,3710,4,8,f +11647,3711a,0,350,f +11647,3713,7,200,f +11647,3736,7,2,f +11647,3737,0,8,f +11647,3738,7,4,f +11647,3738,4,8,f +11647,3743,7,20,f +11647,3749,7,16,f +11647,3795,7,8,f +11647,3795,4,8,f +11647,3894,1,8,f +11647,3894,4,8,f +11647,3895,1,8,f +11647,3895,4,8,f +11647,3937,1,6,f +11647,3938,1,6,f +11647,3941,4,4,f +11647,3956,1,8,f +11647,4019,7,10,f +11647,4143,7,16,f +11647,4162,4,8,f +11647,4162,7,4,f +11647,4185,7,16,f +11647,4204,2,2,f +11647,4265b,7,40,f +11647,4274,7,10,f +11647,4519,0,6,f +11647,4697a,7,24,f +11647,4716,0,10,f +11647,5102,7,2,f +11647,5102,0,2,f +11647,5306bc162,0,2,f +11647,6007,8,2,f +11647,6536,7,8,f +11647,6538a,7,10,f +11647,6541,7,8,f +11647,6553,7,8,f +11647,6573,8,2,f +11647,6575,7,8,f +11647,70496,0,1,f +11647,71509,0,10,f +11647,73090b,4,2,f +11647,73129,7,4,f +11647,75215,7,2,f +11647,85544,7,4,f +11647,85545,1,4,f +11647,85546,14,4,f +11647,9244,7,4,f +11647,bb298,15,1,f +11647,rb00164,0,1,f +11647,rb00168,0,20,f +11647,rb00169,0,20,f +11647,rb00170,0,20,f +11648,2420,71,2,f +11648,3001,6,2,f +11648,3004,6,3,f +11648,3005,6,10,f +11648,3010,6,2,f +11648,3021,6,4,f +11648,3022,6,1,f +11648,3023,71,6,f +11648,3023,6,6,f +11648,3024,6,1,f +11648,3034,6,1,f +11648,3039,6,3,f +11648,3040b,6,6,f +11648,3070b,6,2,f +11648,3070b,71,1,f +11648,3460,6,1,f +11648,3660,6,2,f +11648,3665,6,6,f +11648,3700,6,1,f +11648,3794a,6,2,f +11648,4070,6,2,f +11648,4081b,14,2,f +11648,4275b,6,1,f +11648,4276b,71,1,f +11648,6141,36,2,f +11648,6141,0,2,f +11649,45452,230,1,f +11649,45463,236,2,f +11649,46277,13,1,f +11649,46286,236,2,f +11649,clikits037,9,1,f +11650,2336p35,1,1,f +11650,2340,15,4,f +11650,2342,15,1,f +11650,2342,7,1,f +11650,3001,1,1,f +11650,3002,1,2,f +11650,3004,1,20,f +11650,3004p01,1,2,f +11650,3004p90,1,2,f +11650,3008,1,2,f +11650,3009,1,2,f +11650,3010,1,5,f +11650,3010ap04,1,2,f +11650,3020,15,2,f +11650,3020,1,2,f +11650,3021,7,3,f +11650,3021,1,2,f +11650,3022,15,1,f +11650,3022,1,3,f +11650,3022,7,2,f +11650,3023,1,16,f +11650,3023,15,6,f +11650,3024,36,4,f +11650,3024,1,2,f +11650,3024,7,2,f +11650,3028,15,1,f +11650,3029,15,2,f +11650,3030,46,2,f +11650,3030,15,1,f +11650,3032,1,2,f +11650,3034,1,1,f +11650,3034,15,1,f +11650,3034,7,1,f +11650,3036,15,1,f +11650,3036,1,1,f +11650,3039,1,4,f +11650,3039p23,1,1,f +11650,3039p32,1,1,f +11650,3039p34,1,1,f +11650,3040b,1,16,f +11650,3062b,36,4,f +11650,3066,46,2,f +11650,3068b,1,2,f +11650,3069b,7,2,f +11650,3069b,1,8,f +11650,3069bp06,1,2,f +11650,3069bp25,1,2,f +11650,3070b,36,2,f +11650,3298,1,3,f +11650,3460,1,4,f +11650,3475b,0,4,f +11650,3622,1,14,f +11650,3623,1,14,f +11650,3626apr0001,14,4,f +11650,3641,0,4,f +11650,3660,1,4,f +11650,3665,1,20,f +11650,3666,1,4,f +11650,3676,1,4,f +11650,3684,1,2,f +11650,3700,7,2,f +11650,3700,1,5,f +11650,3703,1,2,f +11650,3705,0,2,f +11650,3710,1,3,f +11650,3747a,1,1,f +11650,3795,1,1,f +11650,3795,15,2,f +11650,3832,1,3,f +11650,3832,15,2,f +11650,3837,0,1,f +11650,3838,14,1,f +11650,3838,0,1,f +11650,3838,4,1,f +11650,3838,15,1,f +11650,3841,0,1,f +11650,3842b,14,1,f +11650,3842b,0,1,f +11650,3842b,4,1,f +11650,3842b,15,1,f +11650,3895,1,2,f +11650,3900,0,1,f +11650,3933a,15,1,f +11650,3934a,15,1,f +11650,3935,15,3,f +11650,3936,15,3,f +11650,3937,1,2,f +11650,3938,1,2,f +11650,3939,46,1,f +11650,3940b,0,6,f +11650,3941,46,6,f +11650,3943b,15,2,f +11650,3956,15,1,f +11650,3957a,36,2,f +11650,3958,15,1,f +11650,3962a,0,1,f +11650,4070,1,14,f +11650,4085b,7,6,f +11650,4213,1,5,f +11650,4215a,46,6,f +11650,4285a,1,1,f +11650,4286,1,2,f +11650,4287,1,2,f +11650,4315,1,6,f +11650,4349,0,1,f +11650,4360,15,1,f +11650,4448,46,6,f +11650,4448,1,6,f +11650,4460a,1,2,f +11650,4474,1,1,f +11650,4474,46,1,f +11650,4479,0,1,f +11650,4588,15,2,f +11650,4589,15,2,f +11650,4589,36,4,f +11650,4595,1,4,f +11650,4600,7,2,f +11650,4624,7,4,f +11650,4625,1,1,f +11650,4730,1,3,f +11650,4730,7,2,f +11650,4732,15,2,f +11650,4737,1,6,f +11650,4740,36,3,f +11650,4741,1,6,f +11650,4746,1,2,f +11650,73590c01a,15,2,f +11650,970c00,15,1,f +11650,970c00,14,1,f +11650,970c00,0,1,f +11650,970c00,4,1,f +11650,973p90c02,4,1,f +11650,973p90c03,0,1,f +11650,973p90c04,14,1,f +11650,973p90c05,15,1,f +11653,2540,0,1,f +11653,3020,2,1,f +11653,6020,0,1,f +11654,14728c100,0,1,f +11654,2412b,3,8,f +11654,2419,0,8,f +11654,2420,1,4,f +11654,2420,0,4,f +11654,2420,7,2,f +11654,2431,14,1,f +11654,2444,0,2,f +11654,2450,1,4,f +11654,2639,0,1,f +11654,2717,3,2,f +11654,2730,0,6,f +11654,2730,7,2,f +11654,2730,1,8,f +11654,2743,0,2,f +11654,2744,3,4,f +11654,2744,1,2,f +11654,2744,7,4,f +11654,2744,0,4,f +11654,2780,0,104,f +11654,2780,0,1,t +11654,2793c01,14,3,f +11654,2797c02,14,1,f +11654,2817,0,4,f +11654,2819,7,1,f +11654,2825,0,8,f +11654,2853,7,2,f +11654,2856c01,7,1,f +11654,2904,0,1,f +11654,2905,0,2,f +11654,3001,7,1,f +11654,3010,1,2,f +11654,30155,8,1,f +11654,3021,0,4,f +11654,3022,0,3,f +11654,3023,7,8,f +11654,3023,0,8,f +11654,3024,1,2,f +11654,3037,1,1,f +11654,3039,0,4,f +11654,3040b,0,2,f +11654,3069b,7,6,f +11654,32000,7,8,f +11654,32001,0,3,f +11654,32002,8,12,f +11654,32002,8,1,t +11654,32009,1,2,f +11654,32009,0,4,f +11654,32012,1,1,f +11654,32013,1,2,f +11654,32014,7,1,f +11654,32015,1,8,f +11654,32017,0,6,f +11654,32018,0,4,f +11654,32028,0,2,f +11654,32034,7,2,f +11654,32034,1,2,f +11654,32034,0,5,f +11654,32039,1,2,f +11654,32054,0,16,f +11654,32056,7,2,f +11654,32056,0,10,f +11654,32062,0,27,f +11654,32063,1,2,f +11654,32063,7,6,f +11654,32064a,1,4,f +11654,32065,0,8,f +11654,32068,7,2,f +11654,32069,0,2,f +11654,32073,0,8,f +11654,32077,80,6,f +11654,32078,0,6,f +11654,32079,0,4,f +11654,32123b,7,30,f +11654,32123b,7,1,t +11654,3307,0,1,f +11654,3460,0,1,f +11654,3622,7,2,f +11654,3647,7,1,t +11654,3647,7,2,f +11654,3660,0,1,f +11654,3665,1,2,f +11654,3666,0,4,f +11654,3666,7,4,f +11654,3676,0,1,f +11654,3700,0,11,f +11654,3701,7,6,f +11654,3702,1,4,f +11654,3702,0,6,f +11654,3703,1,4,f +11654,3703,0,6,f +11654,3703,7,2,f +11654,3705,0,17,f +11654,3706,0,9,f +11654,3707,0,7,f +11654,3708,0,5,f +11654,3709,15,2,f +11654,3709,1,1,f +11654,3709,0,2,f +11654,3710,7,2,f +11654,3710,0,2,f +11654,3713,7,20,f +11654,3713,7,1,t +11654,3737,0,4,f +11654,3738,7,2,f +11654,3738,0,2,f +11654,3749,7,14,f +11654,3832,0,2,f +11654,3894,0,16,f +11654,3894,1,4,f +11654,3895,0,4,f +11654,4019,7,1,f +11654,4185,7,3,f +11654,4274,7,1,t +11654,4274,7,4,f +11654,4286,0,2,f +11654,4288,0,2,f +11654,4519,0,9,f +11654,4697b,7,2,f +11654,4697b,7,1,t +11654,5102c02,7,1,t +11654,5102c07,7,5,f +11654,5102c15,0,1,f +11654,5102c18,0,1,f +11654,5102c18,1,2,f +11654,5102c18,7,2,f +11654,5102c24,0,1,f +11654,5102c28,1,1,f +11654,6141,7,14,f +11654,6141,7,1,t +11654,6192,46,2,f +11654,6247,1,2,f +11654,6536,0,11,f +11654,6536,1,8,f +11654,6536,7,2,f +11654,6538b,0,4,f +11654,6538b,7,1,f +11654,6558,0,40,f +11654,6564,1,1,f +11654,6565,1,1,f +11654,6575,7,2,f +11654,6587,8,4,f +11654,6589,7,4,f +11654,6629,0,2,f +11654,6629,1,2,f +11654,6630,7,1,f +11654,6632,1,6,f +11654,6632,7,6,f +11654,6632,0,4,f +11654,6641,7,3,f +11654,70496,0,1,f +11654,75215,7,3,f +11654,75535,0,7,f +11654,75974,1,2,f +11654,75c18,1,4,f +11654,78c06,1,2,f +11654,78c12,1,2,f +11655,22119,1,1,f +11655,2357,15,5,f +11655,2357,72,4,f +11655,2412b,15,18,f +11655,2420,71,8,f +11655,2431,72,8,f +11655,2431,1,5,f +11655,2456,71,3,f +11655,2458,15,2,f +11655,2460,4,2,f +11655,2654,15,9,f +11655,2730,71,4,f +11655,2736,71,12,f +11655,2780,0,158,f +11655,2815,0,1,f +11655,30000,71,2,f +11655,3001,72,8,f +11655,3002,15,4,f +11655,3003,15,8,f +11655,3003,73,6,f +11655,3003,5,3,f +11655,3004,4,8,f +11655,3004,15,33,f +11655,3004,71,3,f +11655,3004,0,20,f +11655,3005,72,9,f +11655,3005,15,1,f +11655,3006,71,2,f +11655,3008,15,1,f +11655,3009,15,12,f +11655,3009,1,7,f +11655,3009,0,10,f +11655,3010,15,9,f +11655,3010,1,11,f +11655,3010,71,2,f +11655,3020,15,3,f +11655,3021,15,3,f +11655,3021,71,3,f +11655,3022,15,8,f +11655,3022,71,5,f +11655,3022,2,2,f +11655,3023,15,7,f +11655,3023,71,4,f +11655,3023,47,8,f +11655,3027,72,2,f +11655,3029,0,2,f +11655,30303,71,1,f +11655,3033,72,1,f +11655,3033,1,1,f +11655,3034,15,12,f +11655,3034,2,8,f +11655,3035,15,5,f +11655,3035,1,1,f +11655,3036,1,3,f +11655,3037,15,2,f +11655,30374,14,2,f +11655,3038,15,2,f +11655,3039,15,12,f +11655,30391,0,5,f +11655,3040b,15,2,f +11655,30526,1,5,f +11655,3065,47,16,f +11655,3068b,15,7,f +11655,3068b,71,6,f +11655,3068b,0,2,f +11655,3069b,15,3,f +11655,3069bpr0099,15,1,f +11655,32000,15,5,f +11655,32001,0,4,f +11655,32009,71,1,f +11655,32009,4,12,f +11655,32014,4,2,f +11655,32018,15,2,f +11655,32034,4,12,f +11655,32034,71,6,f +11655,32039,71,6,f +11655,32054,4,17,f +11655,32054,71,15,f +11655,32062,4,11,f +11655,32064b,0,16,f +11655,32064b,15,12,f +11655,32072,0,5,f +11655,32073,71,16,f +11655,32123b,14,4,f +11655,32138,71,12,f +11655,32140,4,5,f +11655,32140,1,2,f +11655,32140,15,1,f +11655,32140,71,6,f +11655,32184,4,2,f +11655,32192,72,4,f +11655,32201,4,4,f +11655,32271,71,3,f +11655,32271,4,2,f +11655,32278,71,16,f +11655,32278,4,5,f +11655,32316,4,6,f +11655,32316,71,10,f +11655,32348,0,4,f +11655,32449,71,14,f +11655,32523,71,8,f +11655,32523,1,3,f +11655,32523,4,8,f +11655,32524,15,4,f +11655,32524,1,4,f +11655,32524,4,12,f +11655,32524,71,6,f +11655,32525,71,8,f +11655,32525,4,18,f +11655,32526,1,2,f +11655,32526,71,16,f +11655,32556,19,8,f +11655,32557,71,1,f +11655,3298,15,2,f +11655,3460,15,5,f +11655,3622,15,7,f +11655,3623,15,8,f +11655,3626bpr0387,14,1,f +11655,3626bpr0500,14,1,f +11655,3626bpr0580,14,1,f +11655,3660,15,12,f +11655,3665,1,4,f +11655,3665,15,2,f +11655,3666,0,10,f +11655,3666,1,6,f +11655,3666,15,11,f +11655,3666,71,8,f +11655,3700,72,12,f +11655,3700,1,4,f +11655,3701,15,1,f +11655,3705,0,5,f +11655,3706,0,7,f +11655,3707,0,4,f +11655,3708,0,4,f +11655,3710,71,4,f +11655,3710,15,5,f +11655,3713,71,10,f +11655,3737,0,6,f +11655,3747b,15,1,f +11655,3749,19,18,f +11655,3794b,71,4,f +11655,3795,15,3,f +11655,3832,71,4,f +11655,3832,15,3,f +11655,3894,15,5,f +11655,3901,70,1,f +11655,3941,15,5,f +11655,3941,47,2,f +11655,3942c,71,3,f +11655,3957a,80,1,f +11655,3958,4,1,f +11655,3960,15,3,f +11655,4032a,70,1,f +11655,4032a,71,3,f +11655,4032a,1,1,f +11655,4032a,0,2,f +11655,40378,0,1,f +11655,40490,4,11,f +11655,40490,1,1,f +11655,40490,71,12,f +11655,41239,1,1,f +11655,41239,71,5,f +11655,4150,0,1,f +11655,4162,15,7,f +11655,4162,72,4,f +11655,41677,71,10,f +11655,42003,4,6,f +11655,4274,71,9,f +11655,4282,4,1,f +11655,43093,1,34,f +11655,43898,15,5,f +11655,44375a,71,2,f +11655,4445,15,4,f +11655,4449,71,1,f +11655,4477,15,1,f +11655,4519,71,43,f +11655,4714,15,1,f +11655,4854,15,9,f +11655,48989,71,1,f +11655,50451,15,2,f +11655,54200,47,4,f +11655,55981,71,5,f +11655,59443,4,20,f +11655,59443,71,8,f +11655,59443,0,6,f +11655,60474,71,1,f +11655,60483,71,6,f +11655,60485,71,2,f +11655,6066,71,2,f +11655,6091,15,7,f +11655,6093,70,1,f +11655,6111,72,2,f +11655,6111,15,1,f +11655,6112,71,2,f +11655,6141,0,8,f +11655,61485,0,1,f +11655,6191,15,14,f +11655,6215,1,10,f +11655,62531,4,2,f +11655,62698,0,1,f +11655,62810,0,1,f +11655,64179,71,4,f +11655,64391,15,1,f +11655,64683,15,1,f +11655,64782,4,1,f +11655,6536,71,12,f +11655,6536,4,4,f +11655,6541,1,2,f +11655,6558,1,71,f +11655,6564,71,4,f +11655,6564,15,2,f +11655,6565,15,2,f +11655,6565,71,4,f +11655,6587,28,2,f +11655,6628,0,4,f +11655,6632,4,4,f +11655,6636,15,6,f +11655,6636,0,9,f +11655,85543,15,6,f +11655,85544,4,1,f +11655,85546,14,2,f +11655,85984,15,4,f +11655,87081,0,1,f +11655,87081,15,2,f +11655,970c00,15,1,f +11655,970c00,19,1,f +11655,970c00,71,1,f +11655,973c01,1,1,f +11655,973pr1184c01,0,1,f +11655,973pr1241c01,15,1,f +11656,2346,0,4,f +11656,2431,1,2,f +11656,2780,0,24,f +11656,2815,0,2,f +11656,2825,7,2,f +11656,2847c01,7,1,f +11656,2983,7,2,f +11656,3001,1,8,f +11656,3022,7,2,f +11656,3023,7,4,f +11656,3023,14,7,f +11656,3036,7,1,f +11656,3069b,14,2,f +11656,32002,8,8,f +11656,32017,7,2,f +11656,32028,7,4,f +11656,32062,0,4,f +11656,32073,0,2,f +11656,32123b,7,12,f +11656,32185,7,2,f +11656,32269,2,2,f +11656,32270,2,2,f +11656,3460,7,4,f +11656,3482,14,10,f +11656,3483,0,2,f +11656,3634,0,2,f +11656,3647,7,3,f +11656,3648a,7,2,f +11656,3649,4,2,f +11656,3650c,7,2,f +11656,3673,7,18,f +11656,3700,1,8,f +11656,3701,1,4,f +11656,3702,1,4,f +11656,3703,1,6,f +11656,3705,0,4,f +11656,3706,0,2,f +11656,3707,0,2,f +11656,3708,0,2,f +11656,3709,7,8,f +11656,3710,7,4,f +11656,3713,7,24,f +11656,3736,7,1,f +11656,3737,0,2,f +11656,3738,7,4,f +11656,3743,7,2,f +11656,3749,7,12,f +11656,3795,7,2,f +11656,3894,1,4,f +11656,3895,1,4,f +11656,3941,14,2,f +11656,4019,7,2,f +11656,4132168,47,1,f +11656,4162,1,2,f +11656,4185,7,2,f +11656,4274,7,4,f +11656,4477,7,4,f +11656,4519,0,2,f +11656,4716,0,2,f +11656,6247,1,4,f +11656,6538a,7,4,f +11656,6551c01,7,1,f +11656,6573,8,1,f +11656,6575,7,2,f +11656,6587,8,2,f +11656,6588,47,1,f +11656,6589,7,4,f +11656,71082,47,1,f +11656,71427c01,7,1,f +11656,74981,14,1,f +11656,74982,14,2,f +11656,75215,7,1,f +11656,76019,15,1,f +11656,85544,4,5,f +11656,85545,1,5,f +11656,85546,14,5,f +11656,bin01,4,1,f +11656,rb00168,0,9,f +11657,1381cdb01,89,1,f +11657,2420,7,2,f +11657,2431,0,3,f +11657,2445,0,1,f +11657,2454a,8,3,f +11657,2465,8,1,f +11657,2555,7,1,f +11657,2736,7,1,f +11657,2877,8,1,f +11657,2921,15,2,f +11657,2926,0,1,f +11657,3001,8,2,f +11657,3002,379,2,f +11657,3003,8,5,f +11657,3004,8,5,f +11657,30041,8,1,f +11657,30042,8,1,f +11657,3005,8,2,f +11657,3008,8,3,f +11657,30103,0,3,f +11657,30134,0,1,f +11657,30151a,47,1,f +11657,30153,36,1,f +11657,30163,6,1,f +11657,3020,379,1,f +11657,3020,0,2,f +11657,3022,379,5,f +11657,3022,8,2,f +11657,3023,0,1,f +11657,3023,8,1,f +11657,30238,0,1,f +11657,3032,0,1,f +11657,3034,0,2,f +11657,30374,6,1,f +11657,3039,7,6,f +11657,3040b,379,8,f +11657,3045,8,2,f +11657,3048c,7,2,f +11657,30517,8,1,f +11657,3062b,7,9,f +11657,30646a,8,4,f +11657,3068b,1,1,f +11657,3068bpb0041,15,1,f +11657,3069b,1,1,f +11657,3070b,7,2,f +11657,32000,379,1,f +11657,32039,0,1,f +11657,32209,0,1,f +11657,32449,0,2,f +11657,3626bpr0190,15,1,f +11657,3626bpx109,14,1,f +11657,3626bpx110,15,1,f +11657,3626bpx117,14,1,f +11657,3626bpx24,14,1,f +11657,3665,8,4,f +11657,3730,7,1,f +11657,3794a,0,5,f +11657,3795,8,2,f +11657,3830,0,1,f +11657,3831,8,1,f +11657,3839b,0,1,f +11657,3901,6,1,f +11657,3937,7,1,f +11657,3938,0,1,f +11657,4032a,7,1,f +11657,4070,8,2,f +11657,4085c,1,2,f +11657,4095,0,1,f +11657,41539,0,2,f +11657,41752,8,1,f +11657,4211,8,2,f +11657,42444,0,1,f +11657,42447,6,1,f +11657,42450pb01,4,1,f +11657,43337,6,1,f +11657,4485,1,1,f +11657,4489b,6,2,f +11657,4497,0,2,f +11657,4505,6,1,f +11657,4523,6,1,f +11657,4865a,0,2,f +11657,6126a,57,4,f +11657,6538b,7,1,f +11657,6541,379,1,f +11657,6587,8,1,f +11657,6636,0,4,f +11657,71509,0,1,f +11657,71509,0,4,t +11657,970c00,1,1,f +11657,970c00,0,2,f +11657,970c00,19,1,f +11657,973pb0197c01,15,1,f +11657,973pb0299c01,8,1,f +11657,973px165c01,0,1,f +11657,973px172c01,19,1,f +11658,13285pr0005,15,1,f +11658,30408pr0008,15,1,f +11658,3626cpr1149,78,1,f +11658,58247,0,1,f +11658,970c00pr0735,15,1,f +11658,973pr2795c01,15,1,f +11659,11609,297,1,f +11659,11609,297,1,t +11659,11618,26,1,t +11659,11618,26,1,f +11659,11816pr0001,84,1,f +11659,3021,85,2,f +11659,3022,15,1,f +11659,30357,0,2,f +11659,30414,72,1,f +11659,3065,47,2,f +11659,3069b,26,4,f +11659,3070b,40,1,t +11659,3070b,40,1,f +11659,33291,5,1,t +11659,33291,5,1,f +11659,3795,191,1,f +11659,3832,0,1,f +11659,4360,0,1,f +11659,4740,71,1,f +11659,6141,45,1,t +11659,6141,42,2,f +11659,6141,42,1,t +11659,6141,45,3,f +11659,6266,0,1,f +11659,6266,0,1,t +11659,64644,297,1,f +11659,64644,71,1,f +11659,90370pr0005,0,1,f +11659,90370pr0005,0,1,t +11659,92456pr0035c01,84,1,f +11659,92818pr0005c01,191,1,f +11659,93352,308,1,f +11662,2412b,0,1,f +11662,2417,2,2,f +11662,2419,6,1,f +11662,2423,2,2,f +11662,2456,8,2,f +11662,2458,8,1,f +11662,3001,7,5,f +11662,3002,0,1,f +11662,3002,2,2,f +11662,3003,6,3,f +11662,3003,7,1,f +11662,3004,6,2,f +11662,30135,6,1,f +11662,3021,0,1,f +11662,30237a,4,2,f +11662,3034,8,1,f +11662,3039,0,1,f +11662,3040b,7,2,f +11662,30478,19,1,f +11662,3062b,4,2,f +11662,32064b,7,1,f +11662,3626bpx134,14,1,f +11662,3684,6,1,f +11662,3829c01,7,1,f +11662,3849,15,1,f +11662,3937,7,1,f +11662,3938,0,1,f +11662,3958,2,1,f +11662,4095,0,1,f +11662,4150,19,1,f +11662,4599a,0,2,f +11662,4617b,6,1,f +11662,4865a,47,1,f +11662,60169,7,1,f +11662,6091,4,2,f +11662,6141,15,1,t +11662,6141,15,2,f +11662,970c00,7,1,f +11662,973px190c01,6,1,f +11662,x66px1,47,2,f +11663,11211,71,2,f +11663,11477,27,3,f +11663,11477,2,4,f +11663,14417,72,6,f +11663,14418,71,1,f +11663,14419,72,15,f +11663,14704,71,8,f +11663,15068,14,3,f +11663,15068,322,2,f +11663,15456,71,1,f +11663,15573,2,3,f +11663,15573,27,2,f +11663,15712,14,4,f +11663,19119,2,1,f +11663,22885,71,4,f +11663,22890,72,2,f +11663,3004,25,2,f +11663,3020,14,2,f +11663,3021,322,2,f +11663,3021,2,1,f +11663,3021,4,1,f +11663,3021,14,1,f +11663,3022,14,4,f +11663,3022,2,3,f +11663,3022,322,4,f +11663,3023,14,8,f +11663,3023,25,4,f +11663,3023,322,7,f +11663,3023,4,1,f +11663,3023,2,8,f +11663,3024,2,2,f +11663,3024,27,2,f +11663,3069b,25,2,f +11663,3069b,1,2,f +11663,3069b,2,5,f +11663,3069b,322,1,f +11663,3069b,14,5,f +11663,3070b,322,6,f +11663,3070b,25,2,f +11663,3070b,2,1,f +11663,3070b,191,4,f +11663,3070b,14,4,f +11663,33291,2,6,f +11663,3623,2,1,f +11663,44728,14,1,f +11663,44728,71,1,f +11663,44728,2,2,f +11663,54200,25,2,f +11663,54200,14,8,f +11663,60470b,14,2,f +11663,6091,27,5,f +11663,6091,2,9,f +11663,61252,25,4,f +11663,6141,14,3,f +11663,6141,25,3,f +11663,85861,0,1,f +11663,87079,14,1,f +11663,98138,27,2,f +11668,3040b,30,2,f +11668,3068b,29,2,f +11668,3623,70,2,f +11668,3666,30,1,f +11668,3710,14,1,f +11668,3795,30,1,f +11668,6191,30,1,f +11669,3700,1,2,f +11669,3701,1,4,f +11669,3702,1,4,f +11669,3709,1,2,f +11669,3738,1,2,f +11669,3894,1,4,f +11670,298c05,0,1,t +11670,298c05,0,6,f +11670,3004,0,1,f +11670,3021,71,3,f +11670,3035,0,1,f +11670,3035,72,1,f +11670,30363,72,1,f +11670,30365,71,4,f +11670,30383,72,6,f +11670,3048c,71,1,f +11670,30526,72,1,f +11670,30554a,71,6,f +11670,3069b,320,1,f +11670,3070b,42,2,f +11670,3070b,42,1,t +11670,3070b,71,1,t +11670,3070b,71,1,f +11670,32000,0,1,f +11670,3298,72,1,f +11670,3623,320,1,f +11670,3665,71,4,f +11670,3710,72,2,f +11670,3747b,71,1,f +11670,3794a,72,4,f +11670,3937,71,1,f +11670,3938,0,1,f +11670,4070,42,1,f +11670,4070,71,1,f +11670,40902,72,2,f +11670,4095,0,1,f +11670,41747pb011,71,2,f +11670,41748pb011,71,2,f +11670,4589,320,1,f +11670,4733,320,1,f +11670,4733,72,1,f +11671,2348b,41,1,f +11671,2349a,15,1,f +11671,2420,15,2,f +11671,2484c01,4,2,f +11671,298c02,15,2,f +11671,3010,15,1,f +11671,3021,4,2,f +11671,3023,15,1,f +11671,3023,4,2,f +11671,3024,36,2,f +11671,3024,46,2,f +11671,3068b,4,1,f +11671,3135c02,4,1,f +11671,3623,15,2,f +11671,3626apr0001,14,1,f +11671,3710,15,1,f +11671,3788,15,2,f +11671,3821,15,1,f +11671,3822,15,1,f +11671,3823,41,1,f +11671,3829c01,0,1,f +11671,3937,0,1,f +11671,3938,0,1,f +11671,4070,15,2,f +11671,4083,4,1,f +11671,4084,0,4,f +11671,4212b,4,1,f +11671,4214,15,1,f +11671,4485,1,1,f +11671,4624,15,4,f +11671,6141,46,2,f +11671,6141,7,2,f +11671,970c00,1,1,f +11671,973pb0006c01,15,1,f +11672,2343,297,4,f +11672,2456,71,2,f +11672,3001,71,2,f +11672,3004,71,2,f +11672,3005,4,6,f +11672,3005,1,6,f +11672,3005,2,6,f +11672,3008,71,2,f +11672,3009,71,2,f +11672,3010,71,2,f +11672,30103,0,1,f +11672,3062b,33,4,f +11672,3068b,14,1,f +11672,3068b,2,1,f +11672,3068b,4,1,f +11672,3068b,15,1,f +11672,3068b,1,1,f +11672,3068b,0,1,f +11672,3626bpr0895,15,4,f +11672,3710,70,4,f +11672,3794b,1,4,f +11672,3794b,0,1,f +11672,3794b,70,8,f +11672,3794b,2,4,f +11672,3794b,14,4,f +11672,3794b,4,4,f +11672,3832,70,5,f +11672,4006,0,1,f +11672,40232,15,1,f +11672,4341,0,1,f +11672,4589,320,4,f +11672,53451,4,1,t +11672,53451,4,4,f +11672,6124,42,4,f +11672,6141,34,1,t +11672,6141,34,4,f +11672,64776pat0001,0,1,f +11672,6541,14,6,f +11673,2456,19,1,f +11673,2540,15,2,f +11673,2540,19,2,f +11673,3001,19,1,f +11673,3002,15,1,f +11673,3003,19,1,f +11673,3004,0,2,f +11673,3004,19,1,f +11673,3005,19,6,f +11673,3007,19,1,f +11673,3010,19,1,f +11673,3021,19,4,f +11673,3023,19,2,f +11673,3024,19,5,f +11673,3024,15,4,f +11673,3036,2,1,f +11673,3039,19,7,f +11673,3040b,19,2,f +11673,3069b,19,2,f +11673,3070b,19,2,f +11673,3622,19,2,f +11673,3623,19,2,f +11673,3660,19,9,f +11673,3665,19,7,f +11673,3700,19,2,f +11673,3747b,19,1,f +11673,3941,0,2,f +11673,3941,19,1,f +11673,4070,19,3,f +11673,4150,71,1,f +11673,4274,71,3,f +11673,4286,19,3,f +11673,50304,15,1,f +11673,50305,15,1,f +11673,6019,15,2,f +11673,6019,19,2,f +11673,6141,19,2,f +11673,6541,19,1,f +11675,5102c20,1,1,f +11675,5102c27,7,1,f +11675,5102c27,8,1,f +11675,74981,14,1,f +11675,74982,14,1,f +11676,122c01,0,2,f +11676,3004,4,1,f +11676,3010,4,1,f +11676,3020,15,1,f +11676,3021,15,2,f +11676,3021,0,1,f +11676,3022,15,1,f +11676,3022,47,1,f +11676,3023,15,3,f +11676,3024,33,4,f +11676,3024,46,2,f +11676,3031,15,1,f +11676,3035,15,1,f +11676,3068b,15,3,f +11676,3623,15,2,f +11676,3624,4,1,f +11676,3625,0,1,f +11676,3626apr0001,14,2,f +11676,3641,0,4,f +11676,3666,15,2,f +11676,3710,15,2,f +11676,3788,15,1,f +11676,3795,7,1,f +11676,3821,4,1,f +11676,3822,4,1,f +11676,3823,47,1,f +11676,3829c01,4,1,f +11676,3832,0,1,f +11676,3839a,7,2,f +11676,3853,4,1,f +11676,3856,15,2,f +11676,4070,4,2,f +11676,4211,15,1,f +11676,4213,15,1,f +11676,4214,15,1,f +11676,4215ap01,47,2,f +11676,4215ap02,15,2,f +11676,970c00,15,2,f +11676,973p24c01,15,2,f +11679,2543,288,1,f +11679,2562,70,1,f +11679,30115,4,1,f +11679,30153,36,1,f +11679,30153,34,1,f +11679,3022,19,1,f +11679,30374,70,1,f +11679,3068b,0,1,f +11679,3626bpr0566,14,1,f +11679,3794b,70,1,f +11679,3841,72,1,f +11679,6126a,182,1,f +11679,61780,70,1,f +11679,64648,135,1,f +11679,970c00,288,1,f +11679,973pr1439c01,70,1,f +11680,10201,15,6,f +11680,12825,0,2,f +11680,12825,72,2,f +11680,15207,72,1,f +11680,2357,0,6,f +11680,2419,15,2,f +11680,2420,27,2,f +11680,2431,288,5,f +11680,2432,70,2,f +11680,2444,0,2,f +11680,2445,15,1,f +11680,2445,72,1,f +11680,2450,72,2,f +11680,2454a,71,2,f +11680,2456,19,1,f +11680,2476a,15,4,f +11680,2561,70,2,f +11680,2569,42,2,f +11680,2569,42,1,t +11680,2639,72,4,f +11680,2654,72,4,f +11680,2730,0,2,f +11680,2736,71,4,f +11680,2780,0,2,t +11680,2780,0,20,f +11680,2876,72,1,f +11680,3001,0,2,f +11680,3001,72,3,f +11680,3002,19,1,f +11680,3005,27,2,f +11680,3009,71,1,f +11680,3010,70,2,f +11680,3010,0,1,f +11680,30136,0,7,f +11680,30145,28,2,f +11680,30173b,297,1,f +11680,3020,70,6,f +11680,3020,71,3,f +11680,3020,27,11,f +11680,3020,28,5,f +11680,3021,0,2,f +11680,3021,70,9,f +11680,3022,19,1,f +11680,3022,1,5,f +11680,3022,27,8,f +11680,3022,0,3,f +11680,3023,4,3,f +11680,3023,71,5,f +11680,3023,15,2,f +11680,3023,72,2,f +11680,30237b,71,2,f +11680,30238,4,1,f +11680,3029,0,1,f +11680,3031,0,9,f +11680,3032,72,1,f +11680,3034,0,1,f +11680,3034,28,1,f +11680,3035,72,1,f +11680,30357,0,2,f +11680,30367b,72,1,f +11680,30374,297,1,f +11680,30377,308,4,f +11680,30377,308,1,t +11680,30383,0,4,f +11680,3039,70,1,f +11680,30407,34,4,f +11680,30407,15,8,f +11680,3040b,15,2,f +11680,3040b,320,15,f +11680,3040b,27,2,f +11680,30414,15,2,f +11680,30503,0,2,f +11680,30565,28,3,f +11680,30602,0,6,f +11680,3062b,71,15,f +11680,3062b,15,2,f +11680,3068b,71,2,f +11680,3068b,0,2,f +11680,3069b,40,10,f +11680,3069b,308,4,f +11680,32005a,0,2,f +11680,32009,15,2,f +11680,32015,0,10,f +11680,32028,0,3,f +11680,32028,71,1,f +11680,32039,0,2,f +11680,32062,4,2,f +11680,32064b,0,2,f +11680,32064b,2,4,f +11680,32073,71,2,f +11680,32125,71,2,f +11680,32184,0,2,f +11680,32271,71,2,f +11680,32348,72,2,f +11680,32526,71,2,f +11680,32530,72,4,f +11680,32555,0,2,f +11680,3622,72,8,f +11680,3623,0,4,f +11680,3626cpr0748,14,1,f +11680,3626cpr0866,14,1,f +11680,3639,72,4,f +11680,3640,72,4,f +11680,3659,308,3,f +11680,3660,308,2,f +11680,3665,72,6,f +11680,3666,0,2,f +11680,3666,72,1,f +11680,3678b,28,2,f +11680,3678b,0,1,f +11680,3700,0,4,f +11680,3700,71,1,f +11680,3701,72,14,f +11680,3705,0,1,f +11680,3706,0,1,f +11680,3710,72,3,f +11680,3713,4,1,t +11680,3713,4,4,f +11680,3747b,72,2,f +11680,3749,19,2,f +11680,3794b,0,4,f +11680,3794b,15,2,f +11680,3794b,71,4,f +11680,3794b,297,3,f +11680,3795,308,10,f +11680,3795,71,2,f +11680,3830,71,2,f +11680,3830,320,2,f +11680,3831,320,2,f +11680,3831,71,2,f +11680,3832,70,3,f +11680,3894,0,2,f +11680,3957a,42,3,f +11680,3958,28,1,f +11680,3960,72,4,f +11680,4032a,14,7,f +11680,4032a,15,2,f +11680,40378,27,1,f +11680,40379,27,1,f +11680,4070,2,4,f +11680,4081b,71,4,f +11680,4081b,27,2,f +11680,4085c,72,2,f +11680,4150,72,1,f +11680,4162,15,1,f +11680,41747,0,2,f +11680,41748,0,2,f +11680,41769,288,2,f +11680,41769,15,1,f +11680,41770,288,2,f +11680,41770,15,1,f +11680,41879a,25,1,f +11680,4274,1,1,t +11680,4274,1,2,f +11680,4287,0,1,f +11680,43093,1,22,f +11680,43712,72,2,f +11680,43712,288,7,f +11680,43713,0,1,f +11680,43719,34,9,f +11680,43722,27,3,f +11680,43723,27,3,f +11680,43887,0,2,f +11680,43888,72,2,f +11680,44300,72,1,f +11680,44301a,0,4,f +11680,44728,15,4,f +11680,44728,0,2,f +11680,4497,308,1,f +11680,4519,71,8,f +11680,4589,36,2,f +11680,4590,72,4,f +11680,4623,71,2,f +11680,47456,70,4,f +11680,47456,0,2,f +11680,47457,14,4,f +11680,47753,27,1,f +11680,47753pr0003,28,2,f +11680,47759,70,2,f +11680,47759,15,2,f +11680,47847,72,1,f +11680,48729b,0,2,f +11680,48729b,0,1,t +11680,48933,72,1,f +11680,49668,0,14,f +11680,50304,0,1,f +11680,50305,0,1,f +11680,50950,27,4,f +11680,50950,288,14,f +11680,51739,15,1,f +11680,53451,179,1,t +11680,53451,297,1,t +11680,53451,297,6,f +11680,53451,179,2,f +11680,53562,0,4,f +11680,53705,0,2,f +11680,54200,34,1,t +11680,54200,27,1,t +11680,54200,71,1,t +11680,54200,34,6,f +11680,54200,71,8,f +11680,54200,27,2,f +11680,54383,0,1,f +11680,54384,0,1,f +11680,54821,35,1,f +11680,57906,27,1,f +11680,57906,0,1,f +11680,57908,72,4,f +11680,57909a,72,5,f +11680,59232,297,1,f +11680,59426,72,2,f +11680,6019,0,2,f +11680,60470a,71,5,f +11680,60478,72,10,f +11680,60808,0,2,f +11680,61053,72,2,f +11680,6108,71,2,f +11680,6141,42,1,t +11680,6141,34,2,f +11680,6141,71,2,f +11680,6141,34,1,t +11680,6141,71,1,t +11680,6141,72,22,f +11680,6141,42,4,f +11680,6141,72,3,t +11680,61678,27,2,f +11680,6232,70,2,f +11680,62361,27,2,f +11680,62743,15,6,f +11680,63965,70,1,f +11680,64275,179,4,f +11680,64567,71,1,f +11680,6558,1,3,f +11680,6942,71,1,f +11680,73983,15,4,f +11680,73983,72,3,f +11680,85984,0,2,f +11680,87082,71,5,f +11680,87087,4,4,f +11680,87580,0,2,f +11680,87747,179,1,f +11680,87747,297,1,f +11680,92013,0,5,f +11680,92280,378,1,f +11680,92338,297,1,f +11680,92582,0,5,f +11680,92589,71,2,f +11680,92593,0,2,f +11680,92690,297,3,f +11680,92692,0,2,f +11680,92926,72,1,f +11680,92946,288,2,f +11680,92946,27,12,f +11680,92946,0,6,f +11680,92947,15,2,f +11680,93055,297,1,t +11680,93055,297,1,f +11680,93058,297,1,t +11680,93058,297,1,f +11680,93059,297,5,f +11680,93069,15,1,f +11680,93070pr0005,15,1,f +11680,93070pr0006,15,1,f +11680,93070pr0007,15,1,f +11680,93071pr0002,15,1,f +11680,93072pr0004,72,4,f +11680,93273,27,5,f +11680,93274,27,12,f +11680,93571,0,4,f +11680,93606,0,1,f +11680,9450stk01,9999,1,t +11680,95188,72,2,f +11680,96874,25,1,t +11680,970c00pr0277,2,1,f +11680,970c00pr0279,15,1,f +11680,973pr0808c01,15,1,f +11680,973pr1887c01,0,1,f +11680,973pr1889c01,25,1,f +11680,973pr1891c01,288,1,f +11680,973pr1899c01,2,1,f +11680,98132,148,1,f +11680,98133pr0005,2,1,f +11680,98136,297,2,f +11680,98138pr0002,33,1,t +11680,98138pr0002,33,1,f +11680,98139,148,1,f +11680,98141,179,2,f +11680,98145pr0001,0,1,f +11680,98146pr0001,288,1,f +11680,98148pr0001,72,1,f +11680,98283,28,16,f +11680,98313,70,6,f +11680,98560,320,3,f +11680,99301,320,4,f +11680,99778pr03,288,1,f +11680,99778pr04,0,1,f +11680,99780,72,4,f +11680,99781,71,6,f +11683,3626bpr0729,14,1,f +11683,88646,0,1,f +11683,90398,134,1,f +11683,93217,0,1,f +11683,970x026,14,1,f +11683,973pr1699c01,14,1,f +11684,2949stk01,9999,1,t +11684,31184c01,7,1,f +11684,31196c01,0,1,f +11684,31238,4,1,f +11684,31239c01,0,1,f +11684,31350c01,4,2,f +11684,31351,0,4,f +11684,31382c01,4,1,f +11684,4555pb091,9999,1,f +11684,45751c01,7,1,f +11684,6284c01,0,1,f +11684,6294,383,1,f +11684,78c24,179,2,f +11684,dt001,36,1,f +11684,dupcontrol,4,1,f +11684,duprcbase,0,1,f +11684,x1228,0,2,f +11685,3626cpr1732,0,1,f +11685,88646,0,1,f +11685,95344,0,1,f +11685,970c00pr0914,0,1,f +11685,973pr3116c01,0,1,f +11685,98374pr0002,25,1,f +11687,3001a,4,1,f +11687,3003,15,9,f +11687,3004,47,1,f +11687,3004,15,33,f +11687,3004,4,4,f +11687,3004p50,4,5,f +11687,3005,15,8,f +11687,3005,47,2,f +11687,3005,4,8,f +11687,3008,15,3,f +11687,3009,15,9,f +11687,3010,47,1,f +11687,3010,15,22,f +11687,3010,4,11,f +11687,3010p30,15,1,f +11687,3010pb035e,4,3,f +11687,3020,4,3,f +11687,3021,0,2,f +11687,3022,4,1,f +11687,3023,4,10,f +11687,3024,14,3,f +11687,3024,1,3,f +11687,3029,4,1,f +11687,3029,0,6,f +11687,3030,4,1,f +11687,3031,4,5,f +11687,3032,4,1,f +11687,3032,0,1,f +11687,3032,15,1,f +11687,3035,0,2,f +11687,3035,4,2,f +11687,3037,47,2,f +11687,3040a,4,4,f +11687,3062a,14,2,f +11687,3068a,7,5,f +11687,3069a,7,1,f +11687,3081cc01,4,10,f +11687,3137c01,0,6,f +11687,3137c02,0,3,f +11687,3139,0,12,f +11687,3149c01,4,1,f +11687,3183a,4,3,f +11687,3184,4,3,f +11687,3188,4,1,f +11687,3189,4,1,f +11687,32bc01,4,1,f +11687,3308,15,6,f +11687,3404ac01,4,1,f +11687,3455,15,1,f +11687,420,14,1,f +11687,421,14,1,f +11687,777px7ridged,15,1,f +11687,7b,0,6,f +11687,915p01,2,1,f +11688,23306,71,2,f +11688,2343,47,2,f +11688,2377,15,2,f +11688,2412b,15,6,f +11688,2419,72,1,f +11688,2444,0,2,f +11688,2460,72,1,f +11688,2566,0,4,f +11688,2654,71,4,f +11688,2780,0,2,t +11688,2780,0,20,f +11688,2926,0,2,f +11688,3001,14,2,f +11688,3003,4,2,f +11688,3004,4,3,f +11688,3009,1,1,f +11688,30134,0,1,f +11688,3020,71,3,f +11688,3021,14,2,f +11688,3022,14,3,f +11688,3023,1,15,f +11688,3023,72,4,f +11688,30236,71,1,f +11688,3024,1,1,t +11688,3024,1,1,f +11688,3031,0,1,f +11688,3032,14,1,f +11688,3033,71,4,f +11688,3034,1,4,f +11688,30355,15,1,f +11688,30356,15,1,f +11688,30374,71,2,f +11688,30377,71,4,f +11688,30377,71,1,t +11688,3039pr0002,15,1,f +11688,3039pr0013,15,2,f +11688,30504,15,2,f +11688,30553,72,1,f +11688,3068b,15,2,f +11688,3068bpr0137,15,1,f +11688,3069b,15,1,f +11688,3069b,14,8,f +11688,3139,0,14,f +11688,3245b,15,7,f +11688,32530,72,4,f +11688,3460,72,2,f +11688,3623,1,1,f +11688,3624,0,1,f +11688,3626bpr0126,14,1,f +11688,3626bpr0252,14,1,f +11688,3626bpr0387,14,1,f +11688,3626bpr0389,14,1,f +11688,3659,15,1,f +11688,3660,1,1,f +11688,3666,1,8,f +11688,3679,71,3,f +11688,3680,0,3,f +11688,3710,15,2,f +11688,3710,1,2,f +11688,3710,72,5,f +11688,3713,71,16,f +11688,3713,71,1,t +11688,3747a,15,5,f +11688,3749,19,1,f +11688,3749,19,1,t +11688,3794a,0,1,f +11688,3794a,15,1,f +11688,3795,71,1,f +11688,3795,14,1,f +11688,3840,25,1,f +11688,3901,71,1,f +11688,3938,0,2,f +11688,3942c,15,4,f +11688,3957a,71,1,f +11688,4032a,4,7,f +11688,4079,4,14,f +11688,4085c,1,2,f +11688,4162,1,5,f +11688,42608,71,2,f +11688,4286,72,2,f +11688,43121,71,4,f +11688,43337,14,2,f +11688,4345b,71,1,f +11688,4346,47,1,f +11688,44126,15,4,f +11688,4449,0,1,f +11688,4449,70,1,f +11688,44567a,14,1,f +11688,44568,15,2,f +11688,44570,15,2,f +11688,4460a,71,4,f +11688,4485,4,1,f +11688,4485,0,1,f +11688,4589,42,3,f +11688,4589,34,1,f +11688,4624,71,14,f +11688,46667,0,4,f +11688,48336,15,1,f +11688,4862,40,38,f +11688,4863,15,18,f +11688,4865a,14,4,f +11688,4870,71,5,f +11688,48729a,72,1,t +11688,48729a,72,2,f +11688,52107,0,2,f +11688,54090,71,1,f +11688,54091,71,5,f +11688,54092c01pr0001,15,1,f +11688,54093,15,1,f +11688,54094pr01,1,1,f +11688,54095,15,3,f +11688,54096,15,2,f +11688,54097,15,2,f +11688,54701c01pb01,15,1,f +11688,6141,1,4,f +11688,6141,36,1,f +11688,6141,34,1,f +11688,6141,34,1,t +11688,6141,36,1,t +11688,6141,1,1,t +11688,6141,47,1,f +11688,6141,47,1,t +11688,6636,1,5,f +11688,69c03,15,1,f +11688,75535,71,3,f +11688,7893.1stk01,9999,1,t +11688,970c00,72,1,f +11688,970c00,0,1,f +11688,970c00,1,2,f +11688,973pr1170c01,4,1,f +11688,973pr1192c01,0,1,f +11688,973pr1238c01,0,1,f +11688,973pr1240c01,1,1,f +11690,2570,73,1,f +11690,30273,73,1,f +11690,3626bpx304,14,1,f +11690,48494pb03,151,1,f +11690,970x194,73,1,f +11690,973pb0355c01,73,1,f +11691,3001a,0,21,f +11692,3004,27,1,f +11692,3022,73,1,f +11692,3023,73,1,f +11692,3023,15,1,f +11692,3035,19,1,f +11692,3942c,85,1,f +11692,3960pr20,15,1,f +11692,4032a,14,2,f +11692,4150,30,2,f +11692,48336,19,1,f +11692,59275,27,2,f +11692,59900,33,1,f +11692,59900,25,1,f +11692,6141,33,4,f +11692,6141,14,1,f +11692,6141,15,1,f +11692,63868,14,2,f +11692,63965,15,1,f +11692,95343,4,1,f +11692,95344,297,1,f +11693,11211,19,2,f +11693,11477,15,3,f +11693,11477,0,6,f +11693,11477,71,4,f +11693,12825,71,2,f +11693,13548,15,2,f +11693,14769pr1003,15,2,f +11693,15068,0,5,f +11693,2420,71,2,f +11693,2420,0,4,f +11693,2420,15,4,f +11693,2654,0,2,f +11693,2654,19,4,f +11693,298c04,15,4,f +11693,298c04,15,1,t +11693,3001,0,1,f +11693,3003,15,1,f +11693,30031,72,2,f +11693,3004,26,2,f +11693,3005,26,2,f +11693,3005,15,6,f +11693,3010,15,2,f +11693,3020,71,2,f +11693,3020,19,3,f +11693,3020,0,2,f +11693,3021,0,2,f +11693,3021,15,3,f +11693,3022,0,2,f +11693,3023,0,11,f +11693,3023,71,7,f +11693,3023,15,22,f +11693,3024,0,4,f +11693,3024,19,4,f +11693,3024,15,1,t +11693,3024,15,9,f +11693,3024,19,1,t +11693,3024,0,1,t +11693,3034,15,1,f +11693,30357,191,2,f +11693,30414,71,1,f +11693,3068b,72,1,f +11693,3069b,0,2,f +11693,3069b,0,1,t +11693,3069b,26,1,f +11693,32474,0,1,t +11693,32474,0,1,f +11693,3460,0,1,f +11693,3623,15,4,f +11693,3660,15,2,f +11693,3665,0,2,f +11693,3665,71,2,f +11693,3665,15,2,f +11693,3700,14,2,f +11693,3700,71,1,f +11693,3710,0,4,f +11693,3710,15,4,f +11693,3794b,72,2,f +11693,3795,0,1,f +11693,3942c,71,1,f +11693,40379,0,1,f +11693,4274,1,1,f +11693,4274,1,1,t +11693,4286,15,6,f +11693,4286,0,2,f +11693,44302a,72,1,f +11693,44567a,72,1,f +11693,4740,71,2,f +11693,47455,0,1,f +11693,47753,0,2,f +11693,48169,72,1,f +11693,48171,72,1,f +11693,48336,19,5,f +11693,48729b,0,1,t +11693,48729b,0,2,f +11693,52501,0,2,f +11693,54200,15,2,f +11693,54200,15,1,t +11693,54200,0,1,t +11693,54200,0,2,f +11693,57908,0,2,f +11693,60470a,71,2,f +11693,60478,71,2,f +11693,60897,71,10,f +11693,6091,0,4,f +11693,6091,15,12,f +11693,6091,71,2,f +11693,63868,0,2,f +11693,6541,14,1,f +11693,6636,15,1,f +11693,73983,19,2,f +11693,85080,14,1,f +11693,85984,29,1,f +11693,85984,0,6,f +11693,87087,0,4,f +11693,88072,71,2,f +11693,92013,0,4,f +11693,93273,0,7,f +11693,93273,15,2,f +11693,93274,71,2,f +11693,98138pr0008,15,2,f +11693,98138pr0008,15,1,t +11693,99206,0,2,f +11693,99206,15,2,f +11693,99207,71,2,f +11693,99780,72,5,f +11693,99781,71,1,f +11694,2542,70,1,f +11694,3626bpr0387,14,1,f +11694,3898,15,1,f +11694,970c00,15,1,f +11694,973pr1196c01,15,1,f +11695,2335,7,1,f +11695,2412b,42,3,f +11695,2412b,14,1,f +11695,2412b,25,2,f +11695,2412b,4,1,f +11695,2413,0,1,f +11695,2420,14,2,f +11695,2431,14,1,f +11695,2431pc1,0,1,f +11695,2432,14,2,f +11695,2445,0,1,f +11695,2456,0,1,f +11695,2508,7,1,f +11695,2540,14,1,f +11695,2921,7,2,f +11695,2926,7,1,f +11695,30083,33,1,f +11695,3010,14,1,f +11695,30157,7,3,f +11695,30171,0,1,f +11695,3020,0,1,f +11695,3021,14,1,f +11695,3022,14,2,f +11695,30229,8,1,f +11695,3023,14,1,f +11695,30236,8,3,f +11695,30237a,0,2,f +11695,30283,0,1,f +11695,30285,15,6,f +11695,3029,0,1,f +11695,30372,33,1,f +11695,3039,0,2,f +11695,30395,8,1,f +11695,3040b,0,7,f +11695,30414,8,1,f +11695,30540,0,1,f +11695,30552,7,1,f +11695,3069bp61,15,1,f +11695,3069bps9,1,1,f +11695,32059,14,1,f +11695,32084,0,1,f +11695,3298,8,2,f +11695,3403,0,1,f +11695,3404,0,1,f +11695,3475b,14,2,f +11695,3622,0,2,f +11695,3623,7,2,f +11695,3626bpaz,14,1,f +11695,3626bpb0047,14,1,f +11695,3660,8,1,f +11695,3666,14,1,f +11695,3666,0,1,f +11695,3710,0,1,f +11695,3730,7,1,f +11695,3749,7,1,f +11695,3795,7,1,f +11695,3829c01,7,1,f +11695,3832,14,2,f +11695,3937,7,1,f +11695,3938,0,1,f +11695,3957a,42,1,f +11695,3962b,8,1,f +11695,4032a,14,2,f +11695,4315,14,1,f +11695,4530,4,1,f +11695,4589,42,2,f +11695,4735,7,2,f +11695,4740,15,2,f +11695,56823,0,1,f +11695,6014,15,2,f +11695,6015,0,2,f +11695,6019,7,5,f +11695,6020,8,1,f +11695,6040,0,1,f +11695,6041,42,1,f +11695,6112,0,2,f +11695,6141,42,7,f +11695,6141,42,1,t +11695,6183,0,2,f +11695,6774stk01,9999,1,t +11695,71965,0,2,f +11695,73037,0,1,f +11695,76385,8,2,f +11695,970c00pb006,0,1,f +11695,970c00pb007,0,1,f +11695,973pb0052c01,0,1,f +11695,973pb0053c01,0,1,f +11697,30374,33,2,f +11697,90609,0,4,f +11697,90617,0,4,f +11697,90625,0,1,f +11697,90639,4,2,f +11697,90639pr0001,179,1,f +11697,90641,4,3,f +11697,90652,179,1,f +11697,90661,4,2,f +11697,92199,14,1,f +11697,92201,4,1,f +11697,92202,4,1,f +11697,92207,179,2,f +11697,92208,4,1,f +11697,92209,179,1,f +11697,93277,14,1,f +11697,93571,0,1,f +11697,93575,4,1,f +11698,2412b,7,1,f +11698,2431,0,2,f +11698,2452,0,2,f +11698,2508,1,1,f +11698,298c02,15,1,f +11698,30094,0,1,f +11698,30162,8,1,f +11698,30169,57,1,f +11698,30193,8,1,f +11698,30194,8,1,f +11698,3022,0,1,f +11698,3023,7,1,f +11698,30248,0,1,f +11698,30263,0,1,f +11698,30283,25,1,f +11698,30284,14,2,f +11698,30286,41,1,f +11698,30287p01,0,1,f +11698,3031,1,1,f +11698,30322,1,1,f +11698,30323,7,1,f +11698,30342,41,1,f +11698,3070b,0,2,f +11698,3183c,1,1,f +11698,32083,25,1,f +11698,32084,25,1,f +11698,3626bp7c,14,1,f +11698,3710,0,1,f +11698,3795,7,1,f +11698,3829c01,7,1,f +11698,3957a,15,1,f +11698,3962b,8,1,f +11698,4081b,15,2,f +11698,4083,1,1,f +11698,4085c,0,2,f +11698,4479,7,1,f +11698,4589,57,1,f +11698,4865a,0,2,f +11698,6120,7,2,f +11698,6140,0,1,f +11698,6141,42,1,t +11698,6141,36,1,f +11698,6141,42,2,f +11698,6141,36,1,t +11698,6238,33,1,f +11698,970x026,1,1,f +11698,973p7ac01,0,1,f +11698,x206c01,15,1,f +11700,57528,135,2,f +11700,60176,0,2,f +11700,60895,0,1,f +11700,60899,72,2,f +11700,60899,0,2,f +11700,60901,57,1,f +11700,60902,72,2,f +11700,60908pat0001,135,1,f +11700,60909,0,1,f +11702,10247,0,1,f +11702,11211,71,2,f +11702,11212,71,2,f +11702,11215,71,2,f +11702,11458,72,2,f +11702,11477,72,4,f +11702,14395,71,6,f +11702,15068,72,1,f +11702,15068,0,1,f +11702,15535,72,3,f +11702,16577,71,2,f +11702,18654,72,1,f +11702,18675pr0003,40,3,f +11702,18677,71,4,f +11702,19916,0,1,f +11702,19917,0,1,f +11702,2343,297,2,f +11702,2357,320,2,f +11702,2412b,71,3,f +11702,2412b,72,4,f +11702,2419,72,1,f +11702,2420,71,6,f +11702,2431,320,4,f +11702,2431,71,4,f +11702,2436,71,3,f +11702,2445,71,1,f +11702,2450,72,4,f +11702,2454a,71,5,f +11702,2456,0,2,f +11702,2458,15,2,f +11702,2653,71,5,f +11702,2654,15,1,f +11702,2654,72,1,f +11702,2730,0,2,f +11702,2736,71,1,f +11702,2817,4,1,f +11702,2877,71,17,f +11702,2921,0,2,f +11702,3001,0,1,f +11702,3002,0,10,f +11702,3003,71,2,f +11702,3004,320,2,f +11702,3004,0,12,f +11702,3007,4,1,f +11702,3009,0,1,f +11702,3009,320,1,f +11702,30099,72,4,f +11702,3010,72,4,f +11702,3010,0,3,f +11702,3010,71,3,f +11702,3010,320,6,f +11702,30134,0,1,f +11702,3020,72,9,f +11702,3020,0,1,f +11702,3021,72,3,f +11702,3021,71,2,f +11702,3022,72,1,f +11702,3023,72,17,f +11702,3023,36,9,f +11702,3024,28,6,f +11702,3024,71,6,f +11702,3029,71,1,f +11702,3029,72,4,f +11702,3030,71,1,f +11702,3031,72,1,f +11702,3034,72,4,f +11702,3034,0,2,f +11702,3035,72,2,f +11702,3036,72,2,f +11702,30365,71,2,f +11702,30374,36,2,f +11702,30374,35,1,f +11702,30374,71,6,f +11702,30377,72,10,f +11702,30381,0,1,f +11702,3040b,71,5,f +11702,30503,72,10,f +11702,30561,4,2,f +11702,30562,71,4,f +11702,3062b,71,3,f +11702,3062b,72,4,f +11702,3062b,36,16,f +11702,3068b,71,2,f +11702,3069b,71,1,f +11702,3069bpr0070,0,2,f +11702,3176,72,1,f +11702,32000,0,2,f +11702,32001,71,2,f +11702,32001,0,2,f +11702,32013,72,1,f +11702,32028,28,3,f +11702,32039,0,1,f +11702,32059,71,1,f +11702,32062,4,2,f +11702,32073,71,1,f +11702,32140,71,1,f +11702,3245b,72,4,f +11702,3245b,71,2,f +11702,32556,19,4,f +11702,3460,71,8,f +11702,3460,72,1,f +11702,3622,0,2,f +11702,3622,71,4,f +11702,3623,72,6,f +11702,3623,0,1,f +11702,3626b,0,2,f +11702,3626cpr1669,15,1,f +11702,3626cpr1670,78,1,f +11702,3626cpr1671,19,1,f +11702,3665,0,4,f +11702,3666,320,4,f +11702,3666,72,2,f +11702,3701,0,2,f +11702,3709,72,2,f +11702,3710,71,1,f +11702,3710,28,1,f +11702,3737,0,2,f +11702,3795,72,1,f +11702,3795,71,2,f +11702,3795,28,1,f +11702,3830,71,2,f +11702,3831,71,2,f +11702,3832,19,2,f +11702,3832,72,7,f +11702,3901,28,1,f +11702,3941,0,13,f +11702,3941,41,2,f +11702,4032a,71,6,f +11702,4032a,0,4,f +11702,4070,4,2,f +11702,4162,72,2,f +11702,4162,71,5,f +11702,44567a,71,2,f +11702,4460b,0,2,f +11702,4460b,72,2,f +11702,4477,72,4,f +11702,4510,0,4,f +11702,4510,72,2,f +11702,48092,71,12,f +11702,48336,71,1,f +11702,50231,320,2,f +11702,50231,0,2,f +11702,54200,72,26,f +11702,54200,41,24,f +11702,58176,36,1,f +11702,59233pat0001,41,2,f +11702,59443,72,1,f +11702,59900,297,2,f +11702,6019,0,24,f +11702,60474,0,6,f +11702,60475b,0,2,f +11702,60478,71,10,f +11702,60479,71,1,f +11702,6063,72,5,f +11702,6141,36,12,f +11702,6141,41,4,f +11702,6141,179,18,f +11702,61482,71,1,f +11702,61485,0,1,f +11702,6232,71,2,f +11702,63864,71,4,f +11702,64448,72,3,f +11702,64567,80,3,f +11702,64644,0,2,f +11702,6558,1,2,f +11702,6587,28,1,f +11702,6628,0,1,f +11702,6636,72,4,f +11702,6636,71,4,f +11702,72454,0,1,f +11702,75937,0,4,f +11702,75c08,71,1,f +11702,85984,0,2,f +11702,85984,28,20,f +11702,87079,71,4,f +11702,87087,71,2,f +11702,87620,0,2,f +11702,92280,0,6,f +11702,92593,71,14,f +11702,92946,0,6,f +11702,93273,71,6,f +11702,96874,25,1,t +11702,970c00,0,1,f +11702,970c00,4,2,f +11702,970c00pr0717,0,1,f +11702,970c00pr0718,0,1,f +11702,973pr0810c01,4,2,f +11702,973pr2697c01,0,1,f +11702,973pr2766c01,0,1,f +11702,973pr3012c01,0,1,f +11702,98138,41,1,f +11702,98138,36,3,f +11702,98560,71,2,f +11702,99008,19,1,f +11702,99206,71,2,f +11702,99207,71,7,f +11702,99780,72,3,f +11703,3873,0,52,f +11704,2780,0,10,f +11704,3022,14,5,f +11704,3023,14,2,f +11704,3031,14,1,f +11704,3068b,14,4,f +11704,3623,14,2,f +11704,3666,14,2,f +11704,3673,7,6,f +11704,3700,4,6,f +11704,3701,4,2,f +11704,3703,4,2,f +11704,3705,0,2,f +11704,3706,0,1,f +11704,3713,7,8,f +11704,3795,14,2,f +11704,3894,4,2,f +11704,3956,4,1,f +11704,71509,0,1,f +11704,73090a,0,1,f +11704,9612b01,9999,1,f +11704,9612b02,9999,1,f +11704,9622,9999,1,f +11705,30136,19,2,f +11705,3710,19,4,f +11705,3795,70,1,f +11705,6636,70,2,f +11706,14226c21,0,1,f +11706,2452,0,1,f +11706,2489,6,1,f +11706,2530,8,1,f +11706,2540,0,1,f +11706,2542,6,2,f +11706,2551,4,1,f +11706,2554,2,2,f +11706,2561,6,1,f +11706,3004,15,3,f +11706,3004,7,2,f +11706,30048,0,1,f +11706,3005,0,2,f +11706,3005,7,4,f +11706,30055,15,1,f +11706,3009,15,1,f +11706,3009,0,2,f +11706,3020,2,2,f +11706,3023,2,4,f +11706,3024,15,6,f +11706,3029,0,1,f +11706,3031,0,1,f +11706,3062b,0,2,f +11706,3062b,2,4,f +11706,3307,7,1,f +11706,3455,7,1,f +11706,3581,15,2,f +11706,3626bpb0020,14,1,f +11706,3795,0,1,f +11706,3849,0,1,f +11706,3865,1,1,f +11706,3959,0,1,f +11706,4032a,6,1,f +11706,4070,15,2,f +11706,4085c,15,2,f +11706,4444,15,2,f +11706,4495b,4,1,f +11706,4495b,14,1,f +11706,4504,0,1,f +11706,4589,46,1,f +11706,57503,334,1,f +11706,57504,334,1,f +11706,57505,334,1,f +11706,57506,334,1,f +11706,6020,6,1,f +11706,970c00,7,1,f +11706,973pb0019c01,4,1,f +11707,3626cpb0780,78,1,f +11707,62810,308,1,f +11707,970c00,288,1,f +11707,973pb1221c01,10,1,f +11709,12708pr01,47,2,f +11709,12825,72,1,f +11709,3004,70,2,f +11709,3005,70,2,f +11709,3021,70,1,f +11709,3023,19,2,f +11709,3024,70,1,f +11709,30375,72,1,f +11709,3794b,70,2,f +11709,44375a,15,1,f +11709,49668,15,1,f +11709,60474,15,1,f +11709,6091,70,1,f +11709,61252,19,2,f +11709,6141,0,1,f +11716,194c01,7,2,f +11716,2357,15,6,f +11716,2357,4,4,f +11716,2357,0,2,f +11716,2357,1,8,f +11716,2360p01,7,1,f +11716,2412b,0,2,f +11716,2412b,7,1,f +11716,2420,4,8,f +11716,2420,14,2,f +11716,2431,15,1,f +11716,2431,0,4,f +11716,2431,4,2,f +11716,2431,1,2,f +11716,2432,14,1,f +11716,2436,0,2,f +11716,2439,8,1,f +11716,2493b,15,3,f +11716,2494,47,3,f +11716,298c02,0,6,f +11716,3002,4,1,f +11716,3004,1,11,f +11716,3004,4,8,f +11716,3004,0,1,f +11716,3005,1,34,f +11716,3005,0,1,f +11716,3005,4,8,f +11716,3006,0,1,f +11716,3008,4,3,f +11716,3008,1,1,f +11716,3008,14,8,f +11716,3009,1,6,f +11716,3009,4,9,f +11716,3010,15,3,f +11716,3010,4,1,f +11716,3010,1,4,f +11716,3010,47,2,f +11716,3020,0,3,f +11716,3020,4,1,f +11716,3020,1,2,f +11716,3020,15,2,f +11716,3020,14,1,f +11716,3021,0,2,f +11716,3022,14,2,f +11716,3022,0,6,f +11716,3022,1,5,f +11716,3023,0,9,f +11716,3023,4,6,f +11716,3023,15,4,f +11716,3023,14,2,f +11716,3023,1,5,f +11716,3024,1,2,f +11716,3024,46,4,f +11716,3024,47,2,f +11716,3024,15,4,f +11716,3024,0,1,f +11716,3028,1,1,f +11716,3029,0,1,f +11716,3031,0,1,f +11716,3032,4,1,f +11716,3034,1,1,f +11716,3034,0,1,f +11716,3036,1,1,f +11716,3037,4,2,f +11716,3040b,1,6,f +11716,3040p33,0,1,f +11716,3062b,4,2,f +11716,3062b,0,2,f +11716,3062b,14,6,f +11716,3062b,15,8,f +11716,3068b,0,4,f +11716,3068b,14,2,f +11716,3068b,4,1,f +11716,3068bpb0054,0,1,f +11716,3068bpb0054,1,1,f +11716,3069b,15,1,f +11716,3069b,4,1,f +11716,3069b,14,2,f +11716,3069b,0,1,f +11716,3070b,15,4,f +11716,3070b,36,4,f +11716,3127,4,2,f +11716,3176,4,1,f +11716,3185,4,1,f +11716,3622,1,7,f +11716,3622,4,5,f +11716,3622p02,15,4,f +11716,3623,4,1,f +11716,3623,7,4,f +11716,3623,1,3,f +11716,3623,15,7,f +11716,3626apr0001,14,5,f +11716,3660,1,2,f +11716,3660,4,3,f +11716,3666,14,2,f +11716,3666,4,1,f +11716,3666,15,2,f +11716,3673,7,1,f +11716,3709,0,1,f +11716,3710,0,3,f +11716,3710,15,6,f +11716,3710,14,1,f +11716,3710,4,4,f +11716,3738,0,2,f +11716,3738,1,1,f +11716,3741,2,4,f +11716,3742,4,12,f +11716,3755,4,1,f +11716,3755pb01,4,1,f +11716,3755pb02,4,1,f +11716,3787,4,1,f +11716,3794a,4,3,f +11716,3794a,0,2,f +11716,3794a,7,8,f +11716,3794a,1,4,f +11716,3795,1,2,f +11716,3795,0,1,f +11716,3821,0,1,f +11716,3821,1,1,f +11716,3821,4,1,f +11716,3822,4,1,f +11716,3822,1,1,f +11716,3822,0,1,f +11716,3823,47,2,f +11716,3829c01,15,2,f +11716,3829c01,14,1,f +11716,3830,1,2,f +11716,3831,1,2,f +11716,3832,0,1,f +11716,3832,1,1,f +11716,3853,15,1,f +11716,3855,47,1,f +11716,3856,15,2,f +11716,3861b,15,1,f +11716,3899,4,2,f +11716,3937,15,1,f +11716,3937,0,2,f +11716,3937,1,1,f +11716,3938,15,1,f +11716,3938,1,1,f +11716,3938,0,2,f +11716,3941,1,1,f +11716,3957a,0,4,f +11716,3957a,7,2,f +11716,3957a,4,3,f +11716,3962a,0,1,f +11716,4006,0,1,f +11716,4070,1,8,f +11716,4070,4,2,f +11716,4070,0,12,f +11716,4070,15,2,f +11716,4079,14,2,f +11716,4081b,15,4,f +11716,4081b,1,2,f +11716,4081b,14,6,f +11716,4081b,4,2,f +11716,4084,0,23,f +11716,4085b,4,4,f +11716,4085b,15,5,f +11716,4085b,14,2,f +11716,4208,0,2,f +11716,4209,4,1,f +11716,4209p05,4,1,f +11716,4211,15,2,f +11716,4213,14,1,f +11716,4213,15,2,f +11716,4275b,14,4,f +11716,4276b,14,2,f +11716,4282,4,2,f +11716,4282,0,2,f +11716,4286,1,2,f +11716,4287,1,2,f +11716,4315,15,2,f +11716,4349,7,2,f +11716,4349,0,2,f +11716,4445,4,5,f +11716,4477,15,2,f +11716,4485,1,1,f +11716,4485,15,3,f +11716,4485,7,1,f +11716,4495a,15,3,f +11716,4504,14,2,f +11716,4522,0,1,f +11716,4531,14,4,f +11716,4589,0,2,f +11716,4594,47,1,f +11716,4599a,1,1,f +11716,4600,0,11,f +11716,4624,14,6,f +11716,4624,15,17,f +11716,4625,4,1,f +11716,4629c01,1,1,f +11716,4740,8,1,f +11716,4865a,0,2,f +11716,56823,0,2,f +11716,6140,14,3,f +11716,6141,1,2,f +11716,6141,46,6,f +11716,6141,0,4,f +11716,6393stk01,9999,1,t +11716,73194c01,15,1,f +11716,73983,14,2,f +11716,80547pb01,7,1,f +11716,970c00,0,1,f +11716,970c00,1,4,f +11716,973p13c01,4,2,f +11716,973p27c01,1,1,f +11716,973pb0201c01,15,1,f +11716,973pb0202c01,15,1,f +11717,2397,19,1,f +11717,2412b,19,3,f +11717,2412b,57,2,f +11717,2431,272,2,f +11717,2432,0,1,f +11717,2432,71,3,f +11717,2436,70,1,f +11717,2460,72,1,f +11717,2516,71,1,f +11717,2569,71,8,f +11717,2569,72,4,f +11717,2780,0,2,f +11717,2877,71,2,f +11717,2921,70,2,f +11717,3003,72,4,f +11717,3003,70,1,f +11717,3005,57,1,f +11717,30165,0,1,f +11717,3020,72,1,f +11717,30208,379,1,f +11717,30209,72,1,f +11717,3021,19,2,f +11717,3022,72,1,f +11717,3023,70,2,f +11717,3023,19,4,f +11717,3023,72,1,f +11717,30237a,71,2,f +11717,3031,72,3,f +11717,3034,0,2,f +11717,30375,19,2,f +11717,30376,19,2,f +11717,30377,72,1,f +11717,30377,19,4,f +11717,30378,19,2,f +11717,3038,72,4,f +11717,30386,272,4,f +11717,3039,71,1,f +11717,3039,72,2,f +11717,30503,70,2,f +11717,30552,0,1,f +11717,30553,0,1,f +11717,3065,57,1,f +11717,3069b,272,2,f +11717,3069b,0,2,f +11717,32013,72,3,f +11717,32015,71,6,f +11717,32039,0,4,f +11717,32054,72,2,f +11717,32062,0,5,f +11717,32064b,71,8,f +11717,32250,0,2,f +11717,32449,0,4,f +11717,32529,71,1,f +11717,3460,71,1,f +11717,3648b,71,2,f +11717,3660,72,2,f +11717,3700,0,1,f +11717,3705,0,6,f +11717,3706,0,1,f +11717,3709,71,1,f +11717,3713,71,2,f +11717,3737,0,1,f +11717,3747b,70,1,f +11717,3794a,72,9,f +11717,3832,0,2,f +11717,3839b,72,1,f +11717,3873,0,1,t +11717,3873,0,69,f +11717,3937,72,1,f +11717,3941,70,1,f +11717,3957a,0,2,f +11717,3959,72,1,f +11717,3960,379,2,f +11717,4032a,72,4,f +11717,4032a,0,2,f +11717,4085c,71,6,f +11717,40902,0,4,f +11717,4095,0,5,f +11717,4150,71,1,f +11717,41677,19,4,f +11717,41677,0,2,f +11717,41747,70,2,f +11717,41748,70,2,f +11717,42003,72,2,f +11717,4274,1,5,f +11717,4274,1,1,t +11717,4286,72,4,f +11717,4349,0,2,f +11717,43710,70,1,f +11717,43710,72,1,f +11717,43711,70,1,f +11717,43711,72,1,f +11717,44300,72,4,f +11717,44301a,70,3,f +11717,44302a,0,4,f +11717,44567b,71,1,f +11717,44728,71,1,f +11717,4477,72,2,f +11717,4519,71,8,f +11717,4589,72,3,f +11717,4589,36,5,f +11717,4589,135,3,f +11717,4598,19,1,f +11717,4623,72,2,f +11717,4716,0,2,f +11717,4740,72,2,f +11717,4740,0,2,f +11717,47456,379,2,f +11717,47905,71,2,f +11717,4865a,19,1,f +11717,50990pb01,57,2,f +11717,51217pb01,70,2,f +11717,52107,379,2,f +11717,6019,72,7,f +11717,6134,71,1,f +11717,6141,57,4,f +11717,6141,41,1,t +11717,6141,57,1,t +11717,6141,41,1,f +11717,6190,72,2,f +11717,6538b,72,2,f +11717,6541,72,2,f +11717,6587,72,2,f +11717,6636,272,4,f +11717,6636,379,2,f +11717,73983,70,2,f +11717,970c00,70,2,f +11717,973c32,70,2,f +11718,4204,2,1,f +11718,4204,4,1,f +11718,4204,14,1,f +11719,608p01,7,2,f +11720,3001,6,50,f +11721,2723,0,2,f +11721,2780,0,8,f +11721,32014,0,2,f +11721,32034,0,2,f +11721,32034,4,1,f +11721,32034,2,1,f +11721,32056,0,4,f +11721,32062,0,12,f +11721,32073,0,4,f +11721,32123b,7,6,f +11721,32123b,7,2,t +11721,32140,2,2,f +11721,32140,4,2,f +11721,32146,0,8,f +11721,32193,0,4,f +11721,32270,7,4,f +11721,32271,2,1,f +11721,32271,4,1,f +11721,32291,0,2,f +11721,32348,0,4,f +11721,32526,2,2,f +11721,32526,4,2,f +11721,32527,2,1,f +11721,32527,4,1,f +11721,32528,4,1,f +11721,32528,2,1,f +11721,3705,0,4,f +11721,3707,0,2,f +11721,3708,0,2,f +11721,3749,7,6,f +11721,4274,7,2,t +11721,4274,7,2,f +11721,4519,0,6,f +11721,6536,0,4,f +11721,6538b,0,2,f +11721,6553,2,2,f +11721,6553,4,2,f +11722,2412b,72,7,f +11722,2436,71,1,f +11722,2555,71,1,f +11722,2877,71,1,f +11722,3010,71,1,f +11722,30162,71,1,f +11722,3020,1,1,f +11722,3020,71,1,f +11722,3021,0,1,f +11722,3021,72,1,f +11722,3021,1,1,f +11722,3022,72,1,f +11722,3022,71,1,f +11722,3023,71,1,f +11722,3024,71,2,f +11722,3034,72,2,f +11722,3039,72,1,f +11722,30503,72,2,f +11722,30503,71,2,f +11722,3062b,71,3,f +11722,3069b,72,2,f +11722,3300,72,1,f +11722,3623,71,2,f +11722,3666,71,1,f +11722,3701,0,1,f +11722,3710,71,1,f +11722,3710,72,2,f +11722,3794a,72,2,f +11722,3795,71,1,f +11722,3933,72,1,f +11722,3933,71,2,f +11722,3934,71,2,f +11722,3934,72,1,f +11722,3937,71,2,f +11722,4032a,72,1,f +11722,41769,72,2,f +11722,41769,71,2,f +11722,41770,71,2,f +11722,41770,72,2,f +11722,43722,71,1,f +11722,43723,71,1,f +11722,47397,71,1,f +11722,47398,71,1,f +11722,4859,72,1,f +11722,6134,0,2,f +11722,6141,33,5,f +11722,6141,33,1,t +11722,6141,72,10,f +11722,6141,71,3,f +11722,6141,71,1,t +11722,6141,72,1,t +11723,12825,71,1,f +11723,2412b,15,1,f +11723,2447,0,1,t +11723,2447,0,1,f +11723,298c02,71,1,t +11723,298c02,71,1,f +11723,30137,15,2,f +11723,3021,15,3,f +11723,3022,0,2,f +11723,3023,71,4,f +11723,3024,15,1,t +11723,3024,15,2,f +11723,30374,71,1,f +11723,30414,15,1,f +11723,3070b,72,1,t +11723,3070b,72,4,f +11723,32000,15,1,f +11723,3460,15,1,f +11723,3623,15,2,f +11723,3623,320,2,f +11723,3626cpr0932,78,1,f +11723,3710,15,1,f +11723,3710,71,4,f +11723,3710,320,2,f +11723,3795,0,2,f +11723,3941,0,1,f +11723,4070,320,1,f +11723,44302a,15,1,f +11723,4599b,71,1,f +11723,4599b,71,1,t +11723,4733,15,2,f +11723,52107,0,1,f +11723,54200,320,1,t +11723,54200,320,2,f +11723,54200,71,1,t +11723,54200,15,7,f +11723,54200,71,4,f +11723,54200,15,1,t +11723,58247,0,1,f +11723,61182,15,1,f +11723,6141,71,1,t +11723,6141,46,12,f +11723,6141,46,1,t +11723,6141,71,9,f +11723,6179pr0009,0,1,f +11723,6541,15,1,f +11723,74698,0,1,f +11723,75937,0,1,f +11723,85975,15,2,f +11723,85984,15,2,f +11723,87580,0,1,f +11723,92582,15,1,f +11723,92593,15,2,f +11723,970c00,71,1,f +11723,973pr1355c01,0,1,f +11723,98107pr0012,321,2,f +11723,98138,320,1,t +11723,98138,320,4,f +11725,12959,14,1,f +11725,2302,4,4,f +11725,3011,4,4,f +11725,3011,2,3,f +11725,3011,14,5,f +11725,31622,1,2,f +11725,31623,1,2,f +11725,31625,1,1,f +11725,3437,14,3,f +11725,3437,2,3,f +11725,3437,4,2,f +11725,40666,14,2,f +11725,4196,2,1,f +11725,4199,4,2,f +11725,47510pr0002,212,1,f +11725,47511pr0006,1,1,f +11725,61898,27,1,f +11725,6292,0,4,f +11725,6394,14,2,f +11725,6521,2,5,f +11725,6522,71,7,f +11725,6523,1,4,f +11725,6524,14,2,f +11725,6525,14,4,f +11725,6526,14,6,f +11725,6527,14,15,f +11725,6529,4,2,f +11725,6530,14,2,f +11725,75536,14,2,f +11725,95490,4,4,f +11725,96828,4,2,f +11726,3705,79,1,f +11726,3706,79,2,f +11726,3707,79,2,f +11726,3708,79,1,f +11726,3709c,7,5,f +11726,569,4,4,f +11726,570,1,3,f +11726,572,14,2,f +11726,584,4,8,f +11726,bb301,80,2,f +11728,2447,40,1,f +11728,2460,4,1,f +11728,2516,14,1,f +11728,2540,0,1,f +11728,3022,4,1,f +11728,30236,0,1,f +11728,3024,4,2,f +11728,30332,0,1,f +11728,3040b,4,2,f +11728,30602,4,1,f +11728,32013,4,1,f +11728,32064b,15,1,f +11728,3673,71,1,t +11728,3673,71,1,f +11728,3795,4,1,f +11728,3829c01,14,1,f +11728,4085c,4,2,f +11728,43713,15,1,f +11728,4589,14,1,f +11728,4599a,15,1,f +11728,4617b,0,1,f +11728,52501,15,2,f +11728,59426,72,1,f +11728,59426,72,1,t +11728,6070,40,1,f +11728,6141,46,1,t +11728,6141,46,1,f +11728,6141,33,1,t +11728,6141,33,2,f +11728,92842,0,1,t +11729,122c01,7,2,f +11729,3020,7,1,f +11729,3039,7,1,f +11729,3062a,34,1,f +11729,3626apr0001,14,1,f +11729,3641,0,4,f +11729,3794a,7,1,f +11729,3795,7,1,f +11729,3829c01,7,1,f +11729,3838,7,1,f +11729,3838,15,1,f +11729,3842a,15,1,f +11729,3957a,7,1,f +11729,3959,7,1,f +11729,970c00,15,1,f +11729,973p90c05,15,1,f +11730,2493b,4,2,f +11730,2494,47,2,f +11730,3081cc01,4,4,f +11730,3853,4,6,f +11730,3854,15,1,t +11730,3854,15,8,f +11730,3855,47,2,f +11730,3856,2,8,f +11730,3861b,4,2,f +11730,47899c01,4,1,f +11730,73194c01,4,1,f +11730,73312,4,2,f +11731,2780,0,6,f +11731,32062,4,4,f +11731,32072,0,2,f +11731,32073,71,2,f +11731,3749,19,2,f +11731,40244,0,2,f +11731,4274,71,1,t +11731,4274,71,4,f +11731,43093,1,4,f +11731,4519,71,1,f +11731,48989,71,1,f +11731,50923,72,2,f +11731,54821,10,1,f +11731,57539pat0002,47,2,f +11731,58176,35,2,f +11731,59443,0,1,f +11731,60483,0,2,f +11731,60484,0,2,f +11731,64262,35,1,f +11731,64276,0,8,f +11731,6558,1,2,f +11731,6587,28,2,f +11731,6629,0,2,f +11731,74261,72,2,f +11731,90608,0,2,f +11731,90611,0,5,f +11731,90612,0,2,f +11731,90613,320,6,f +11731,90616,0,2,f +11731,90616,320,2,f +11731,90617,0,2,f +11731,90622,0,2,f +11731,90623,0,1,f +11731,90638,0,4,f +11731,90639,148,2,f +11731,90640,0,4,f +11731,90641,42,2,f +11731,90650,0,2,f +11731,90652,0,1,f +11731,92217,148,2,f +11731,92220,179,4,f +11731,92222,0,2,f +11731,92235pat0002,0,2,f +11731,93571,0,5,f +11731,93575,0,2,f +11731,98564,179,2,f +11731,98568p01,0,1,f +11731,98570pat01,15,1,f +11731,98571,0,2,f +11731,98575,0,1,f +11731,98578,0,2,f +11731,98581,179,1,f +11731,98603,0,1,f +11733,11211,15,2,f +11733,18759,322,2,f +11733,2456,322,1,f +11733,2877,19,6,f +11733,3001,29,12,f +11733,3001,4,2,f +11733,3001,15,2,f +11733,3001,191,2,f +11733,3001,27,2,f +11733,3001,30,4,f +11733,3001,2,3,f +11733,3001,322,4,f +11733,3002,25,2,f +11733,3002,71,2,f +11733,3002,4,2,f +11733,3003,27,4,f +11733,3003,25,4,f +11733,3003,85,4,f +11733,3003,29,6,f +11733,3003,14,4,f +11733,3003,5,6,f +11733,3003,322,5,f +11733,3003,4,4,f +11733,3004,5,8,f +11733,3004,226,6,f +11733,3004,85,4,f +11733,3004,321,8,f +11733,3004,10,4,f +11733,3004,4,4,f +11733,3004,71,4,f +11733,3004,322,4,f +11733,3004,26,4,f +11733,3004,29,4,f +11733,3005,30,8,f +11733,3005,15,4,f +11733,3005,322,4,f +11733,3010,29,3,f +11733,3010,226,2,f +11733,3010,191,6,f +11733,3010,5,6,f +11733,30363,15,2,f +11733,3037,26,4,f +11733,3039,15,2,f +11733,3040b,322,8,f +11733,3040b,15,8,f +11733,3040b,29,4,f +11733,3040b,30,6,f +11733,3040b,321,2,f +11733,3062b,2,4,f +11733,3062b,15,4,f +11733,3062b,14,4,f +11733,3065,45,6,f +11733,3065,35,4,f +11733,3659,5,2,f +11733,3660,322,6,f +11733,3660,27,2,f +11733,3665,71,2,f +11733,3665,322,2,f +11733,3665,30,8,f +11733,3747b,15,2,f +11733,3941,27,6,f +11733,4286,71,2,f +11733,47905,19,2,f +11733,54200,5,3,f +11733,54200,85,4,f +11733,54200,5,1,t +11733,54200,85,1,t +11733,54200,14,3,f +11733,54200,14,1,t +11733,59900,25,4,f +11733,59900,26,2,f +11733,60481,5,2,f +11733,6215,15,3,f +11733,85984,29,3,f +11733,87087,85,2,f +11733,87087,29,6,f +11733,92950,29,2,f +11733,96874,25,1,t +11733,98138pr0008,15,1,t +11733,98138pr0008,15,4,f +11733,98138pr0026,15,1,t +11733,98138pr0026,15,2,f +11733,98138pr0027,15,2,f +11733,98138pr0027,15,1,t +11734,97781,191,3,f +11734,97782,191,3,f +11734,97783,191,3,f +11734,97784,191,3,f +11734,97785,191,1,f +11734,97787,191,1,f +11734,97790,191,1,f +11734,97791,191,1,f +11734,97793,191,1,f +11735,2431,2,2,f +11735,2432,4,2,f +11735,30115,4,1,f +11735,30141,8,1,f +11735,30153,42,1,f +11735,30158,6,1,f +11735,30172,15,1,f +11735,30176,2,2,f +11735,30238,0,1,f +11735,30239,2,1,f +11735,3031,0,1,f +11735,3032,2,1,f +11735,3068bpx24,19,1,f +11735,3626bpr0098,14,1,f +11735,3659,8,2,f +11735,3710,7,2,f +11735,3794a,14,1,f +11735,3937,1,1,f +11735,3938,7,1,f +11735,4070,7,1,f +11735,4865a,7,3,f +11735,6231,0,2,f +11735,970c00,4,1,f +11735,973pa8c01,2,1,f +11735,x276,334,1,f +11737,23306,383,1,f +11737,2342,14,1,f +11737,2362b,7,1,f +11737,2412b,4,4,f +11737,2420,7,2,f +11737,2420,8,4,f +11737,2431,14,5,f +11737,2431,4,2,f +11737,2431,7,1,f +11737,2431pr0027,7,2,f +11737,2445,7,1,f +11737,2456,4,1,f +11737,2555,0,1,f +11737,2654,0,12,f +11737,2877,7,6,f +11737,298c01,0,4,f +11737,3001,0,4,f +11737,3003,0,4,f +11737,3004,1,2,f +11737,3004,4,2,f +11737,3005,7,4,f +11737,3009,7,3,f +11737,3009,8,2,f +11737,3010,7,2,f +11737,30180,7,1,f +11737,3020,4,2,f +11737,3020,0,1,f +11737,3021,19,1,f +11737,3022,0,1,f +11737,3022,8,1,f +11737,3022,4,1,f +11737,3023,1,1,f +11737,3023,8,2,f +11737,3029,7,1,f +11737,3031,7,2,f +11737,3032,7,1,f +11737,3034,19,1,f +11737,3035,4,3,f +11737,30355,7,2,f +11737,30356,7,2,f +11737,30359a,8,4,f +11737,30360,7,4,f +11737,30361aps1,15,1,f +11737,30362,15,2,f +11737,30364,8,8,f +11737,30365,7,8,f +11737,30367apr01,15,1,f +11737,3037,8,2,f +11737,3037,7,2,f +11737,30370ps2,15,1,f +11737,30370ps4,15,1,f +11737,30372pr0001,40,1,f +11737,30374,41,1,f +11737,3039,7,4,f +11737,3039pr0008,0,1,f +11737,3040b,7,6,f +11737,3046a,7,2,f +11737,3062b,7,2,f +11737,3068b,14,2,f +11737,3068b,4,4,f +11737,3068bpr0071,19,2,f +11737,3069b,7,1,f +11737,3069b,14,1,f +11737,3069b,19,1,f +11737,3069bpr0086,7,3,f +11737,3298,8,2,f +11737,3622,8,2,f +11737,3623,7,2,f +11737,3626bp03,14,1,f +11737,3626bp35,14,1,f +11737,3626bps3,14,1,f +11737,3660,8,6,f +11737,3665,7,3,f +11737,3666,4,2,f +11737,3710,19,5,f +11737,3710,8,1,f +11737,3730,0,2,f +11737,3731,0,2,f +11737,3747a,7,2,f +11737,3747a,8,2,f +11737,3794a,4,2,f +11737,3941,57,4,f +11737,3941,7,8,f +11737,4032a,0,4,f +11737,4070,0,2,f +11737,4085c,14,6,f +11737,4213,8,1,f +11737,4286,7,4,f +11737,4287,7,4,f +11737,4485,19,1,f +11737,4589,7,4,f +11737,4589,46,2,f +11737,4625,7,2,f +11737,4740,8,4,f +11737,4854,7,2,f +11737,4854,8,3,f +11737,4855,7,2,f +11737,4857,7,1,f +11737,4859,8,1,f +11737,4871,7,1,f +11737,55295,0,1,f +11737,55296,0,1,f +11737,55297,0,1,f +11737,55298,0,1,f +11737,55299,0,1,f +11737,55300,0,1,f +11737,6069ps1,7,1,f +11737,6120,7,1,f +11737,6141,7,1,t +11737,6141,7,1,f +11737,6564,7,2,f +11737,6565,7,2,f +11737,73590c02a,7,1,f +11737,76385,8,2,f +11737,970c00,19,1,f +11737,970x027,25,2,f +11737,973pr1301c01,25,2,f +11737,973psac01,19,1,f +11738,3002a,47,1,f +11738,3002a,15,2,f +11738,3005,0,2,f +11738,3020,7,2,f +11738,3021,7,1,f +11738,3021,0,2,f +11738,3023,0,2,f +11738,3024,4,1,f +11738,3024,0,3,f +11738,3038,47,1,f +11738,3040a,0,3,f +11738,3460,0,4,f +11738,3460,7,6,f +11738,3461,7,1,f +11738,3462,0,1,f +11738,3660,15,2,f +11738,3665,15,2,f +11738,3665,0,1,f +11738,3710,7,1,f +11741,3004,15,3,f +11741,3022,2,1,f +11741,3031,2,2,f +11741,30488,0,1,f +11741,30488c01,15,1,f +11741,30492,2,1,f +11741,30493,0,1,f +11741,30501,2,1,f +11741,30502,47,1,f +11741,3626bpr0325,14,1,f +11741,3626bpr0348,14,1,f +11741,4033,4,3,f +11741,4530,0,1,f +11741,55000,9999,1,t +11741,72824p01,15,1,f +11741,72824pr03,15,1,f +11741,970c00,15,1,f +11741,970c00,1,1,f +11741,973c01,15,1,f +11741,973c02,4,1,f +11743,2723pr01,15,1,f +11743,x1161cx1,0,1,f +11745,2412b,0,3,f +11745,2420,14,2,f +11745,2431,14,1,f +11745,2432,14,2,f +11745,2452,0,1,f +11745,2484c01,4,2,f +11745,2880,0,4,f +11745,2920,0,1,f +11745,2926,7,2,f +11745,2927,0,4,f +11745,298c02,14,1,t +11745,298c02,14,3,f +11745,3004,14,1,f +11745,3020,14,1,f +11745,3022,4,1,f +11745,3032,14,1,f +11745,3034,4,1,f +11745,3038,14,2,f +11745,3068b,4,4,f +11745,3070b,14,2,f +11745,3070b,14,1,t +11745,3176,4,2,f +11745,3623,14,2,f +11745,3626bpr0001,14,1,f +11745,3679,7,1,f +11745,3680,4,1,f +11745,3710,14,2,f +11745,3833,15,1,f +11745,3937,4,2,f +11745,4081b,14,2,f +11745,4083,14,1,f +11745,4274,7,2,f +11745,4274,7,1,t +11745,4275b,14,1,f +11745,4276b,4,4,f +11745,4286,14,2,f +11745,4504,14,1,f +11745,4531,14,1,f +11745,4626,0,1,f +11745,6014a,7,4,f +11745,6015,0,4,f +11745,6134,4,2,f +11745,6141,47,1,t +11745,6141,46,1,t +11745,6141,47,2,f +11745,6141,46,2,f +11745,6541,14,2,f +11745,73092,0,1,f +11745,970c00,1,1,f +11745,973p19c01,1,1,f +11746,2780,0,7,t +11746,2780,0,98,f +11746,32002,72,2,t +11746,32002,72,4,f +11746,32013,72,18,f +11746,32014,72,2,f +11746,32039,0,2,f +11746,32054,4,26,f +11746,32062,4,15,f +11746,32073,71,12,f +11746,32138,0,2,f +11746,32140,0,8,f +11746,32173,14,2,f +11746,32184,4,14,f +11746,32250,0,12,f +11746,32251,0,2,f +11746,32271,4,18,f +11746,32278,0,12,f +11746,32316,4,6,f +11746,32524,72,4,f +11746,32525,0,4,f +11746,32525,4,8,f +11746,32525,72,2,f +11746,32526,4,8,f +11746,32556,19,2,f +11746,3705,0,4,f +11746,3706,0,8,f +11746,3713,71,56,f +11746,3713,71,6,t +11746,3749,19,8,f +11746,40490,0,6,f +11746,42003,0,4,f +11746,43093,1,25,f +11746,43093,1,2,t +11746,43857,4,2,f +11746,44224,72,16,f +11746,44225,71,16,f +11746,44294,71,8,f +11746,44809,71,16,f +11746,4519,71,20,f +11746,47297,191,2,f +11746,47299,135,2,f +11746,48989,71,4,f +11746,49423,320,2,f +11746,50923,72,1,f +11746,53451,135,2,f +11746,53451,135,1,t +11746,53585,0,12,f +11746,53586,135,16,f +11746,54821,135,8,f +11746,55013,72,20,f +11746,57518,72,96,f +11746,57519,25,4,f +11746,57520,0,4,f +11746,57539,135,2,f +11746,57543,135,8,f +11746,57546,320,1,f +11746,58177,0,8,f +11746,59443,0,1,f +11746,59577,191,2,f +11746,60176,320,12,f +11746,60483,72,20,f +11746,60485,71,8,f +11746,60894,72,1,f +11746,60926,135,2,f +11746,61053,72,4,f +11746,62233,135,2,f +11746,62386,191,2,f +11746,62462,71,16,f +11746,62531,4,8,f +11746,63869,71,4,f +11746,64178,71,2,f +11746,64179,71,1,f +11746,64251,72,1,f +11746,64251,191,2,f +11746,64262,57,1,f +11746,64275,135,2,f +11746,64277c01,297,1,f +11746,64327,191,1,f +11746,64391,4,1,f +11746,64392,4,1,f +11746,64682,4,1,f +11746,64683,4,1,f +11746,64889pr0001,135,2,f +11746,6536,71,8,f +11746,6558,1,56,f +11746,6587,72,2,f +11746,6628,0,20,f +11746,85544,4,1,f +11746,85544,4,1,t +11747,ms1035,151,1,f +11748,21019pat02,1,1,f +11748,3626cpb1387,15,1,f +11748,75902pr0004,4,1,f +11748,92081,0,1,f +11748,973pb2056c01,15,1,f +11749,2357,4,4,f +11749,2357,15,4,f +11749,2434,7,1,f +11749,2435,2,1,f +11749,2456,15,1,f +11749,2460,7,2,f +11749,2479,1,2,f +11749,30000,8,2,f +11749,3001,1,4,f +11749,3001,14,4,f +11749,3001,0,2,f +11749,3001,15,4,f +11749,3001,4,2,f +11749,3002,1,2,f +11749,3002,14,2,f +11749,3002,4,2,f +11749,3002,15,4,f +11749,3003,0,4,f +11749,3003,4,4,f +11749,3003,14,4,f +11749,3003,1,4,f +11749,3003,15,6,f +11749,3004,4,22,f +11749,3004,0,12,f +11749,3004,1,18,f +11749,3004,14,16,f +11749,3004,15,34,f +11749,3005,1,18,f +11749,3005,15,24,f +11749,3005,0,14,f +11749,3005,14,14,f +11749,3005,4,20,f +11749,3007,15,1,f +11749,3008,15,2,f +11749,3008,4,2,f +11749,3008,1,2,f +11749,3008,14,2,f +11749,3009,14,2,f +11749,3009,15,2,f +11749,3009,0,2,f +11749,3009,1,4,f +11749,3009,4,4,f +11749,3010,1,16,f +11749,3010,0,8,f +11749,3010,15,26,f +11749,3010,14,10,f +11749,3010,4,16,f +11749,3010p01,14,1,f +11749,3020,1,2,f +11749,3020,4,2,f +11749,3021,1,2,f +11749,3022,4,2,f +11749,3022,1,2,f +11749,3023,1,4,f +11749,3029,1,1,f +11749,3031,4,1,f +11749,3031,1,1,f +11749,3032,1,1,f +11749,3033,1,1,f +11749,3034,1,2,f +11749,3035,4,1,f +11749,3039,47,2,f +11749,3039,4,4,f +11749,3040b,4,4,f +11749,3065,47,4,f +11749,3068b,1,4,f +11749,3069b,1,2,f +11749,3081cc01,1,2,f +11749,3149c01,1,1,f +11749,3297,4,6,f +11749,3297p03,4,2,f +11749,3298,4,2,f +11749,3298p20,4,2,f +11749,3299,4,3,f +11749,3300,4,2,f +11749,3307,4,2,f +11749,3460,1,1,f +11749,3471,2,1,f +11749,3483,0,4,f +11749,3622,15,18,f +11749,3622,4,10,f +11749,3622,14,6,f +11749,3622,1,10,f +11749,3622,0,4,f +11749,3626bpr0001,14,2,f +11749,3633,14,6,f +11749,3660,4,4,f +11749,3665,4,2,f +11749,3675,4,4,f +11749,3679,7,2,f +11749,3680,4,2,f +11749,3710,1,4,f +11749,3741,2,3,f +11749,3742,14,3,f +11749,3742,15,1,t +11749,3742,4,3,f +11749,3742,4,1,t +11749,3742,15,3,f +11749,3742,14,1,t +11749,3747b,4,4,f +11749,3794a,4,2,f +11749,3794a,14,2,f +11749,3795,4,2,f +11749,3795,1,2,f +11749,3823,41,1,f +11749,3829c01,4,1,f +11749,3853,1,4,f +11749,3854,14,8,f +11749,3856,4,4,f +11749,3857,2,1,f +11749,3901,0,1,f +11749,3957a,14,2,f +11749,3960p01,15,1,f +11749,4070,4,4,f +11749,4079,4,2,f +11749,4286,4,4,f +11749,4287,4,2,f +11749,4485,4,1,f +11749,4495b,2,1,f +11749,4589,15,8,f +11749,6003,4,2,f +11749,6007,8,1,f +11749,6060,15,4,f +11749,6093,6,1,f +11749,6111,15,2,f +11749,6141,34,2,f +11749,6215,2,6,f +11749,6248,4,4,f +11749,6249,8,2,f +11749,73312,1,2,f +11749,970c00,1,1,f +11749,970c00,4,1,f +11749,973c01,2,1,f +11749,973p02c01,15,1,f +11752,264,4,1,f +11752,3001,4,4,f +11752,3403,4,1,f +11752,3404,4,1,f +11752,4000,14,1,f +11752,4362acx1,0,1,f +11752,4438,0,2,f +11752,4461,4,1,f +11752,5,4,1,f +11752,fabaj1,4,1,f +11752,fabed10,0,1,f +11752,u9143,4,1,f +11752,x581c08,4,1,f +11753,11153,27,4,f +11753,2357,15,2,f +11753,2412b,71,2,f +11753,2412b,15,1,f +11753,2431,27,6,f +11753,2436,71,2,f +11753,2780,0,2,f +11753,2780,0,1,t +11753,3001,71,1,f +11753,3003,0,1,f +11753,3004,2,1,f +11753,3010,15,3,f +11753,30170,72,1,f +11753,30170,72,1,t +11753,30171,0,1,f +11753,3020,15,4,f +11753,3021,85,3,f +11753,3022,15,4,f +11753,3023,72,1,f +11753,3023,2,4,f +11753,3023,15,3,f +11753,3023,27,6,f +11753,3023,0,2,f +11753,30414,0,4,f +11753,3062b,27,2,f +11753,3069bpr0070,0,1,f +11753,3070b,27,2,f +11753,3070b,27,1,t +11753,3460,27,2,f +11753,3623,2,2,f +11753,3623,27,2,f +11753,3623,15,2,f +11753,3626bpr0001,14,1,f +11753,3660,71,2,f +11753,3666,27,2,f +11753,3666,2,2,f +11753,3700,15,2,f +11753,3710,27,2,f +11753,3794a,2,2,f +11753,3794b,72,1,f +11753,3795,71,2,f +11753,3957b,80,2,f +11753,3958,15,1,f +11753,4032a,71,2,f +11753,4070,15,4,f +11753,41747,15,1,f +11753,41748,15,1,f +11753,41767,15,1,f +11753,41768,15,1,f +11753,42446,72,1,f +11753,43713,15,2,f +11753,44728,2,2,f +11753,4589,80,6,f +11753,4733,15,1,f +11753,47397,15,1,f +11753,47398,15,1,f +11753,48336,2,1,f +11753,4871,15,3,f +11753,50950,27,8,f +11753,54200,0,2,f +11753,54200,85,1,t +11753,54200,27,1,t +11753,54200,27,3,f +11753,54200,85,4,f +11753,54200,0,1,t +11753,55981,71,2,f +11753,60470a,2,1,f +11753,6060,15,4,f +11753,60897,15,2,f +11753,6091,27,4,f +11753,61409,27,4,f +11753,6141,80,4,f +11753,6141,80,1,t +11753,6141,85,1,t +11753,6141,85,8,f +11753,73983,0,6,f +11753,85984,15,4,f +11753,92579,40,1,f +11753,96874,2,1,t +11753,970x001,27,1,f +11753,973pr1815c01,27,1,f +11755,30381,320,1,f +11755,3626cpr1603,14,1,f +11755,4740pr0004b,52,2,f +11755,64647,182,1,f +11755,970c00pr0804,320,1,f +11755,973pr2906c01,320,1,f +11755,98383,297,1,f +11757,3004,2,1,f +11757,3004p0a,14,1,f +11757,3021,4,1,f +11757,3039,2,3,f +11757,3659,4,2,f +11757,3660,2,1,f +11760,2456,4,2,f +11760,2456,15,2,f +11760,3001,0,2,f +11760,3001,15,4,f +11760,3001,14,4,f +11760,3001,4,4,f +11760,3001,1,4,f +11760,3001,2,2,f +11760,3002,15,4,f +11760,3002,0,2,f +11760,3002,4,4,f +11760,3002,1,4,f +11760,3002,14,2,f +11760,3003,4,14,f +11760,3003,14,14,f +11760,3003,1,14,f +11760,3003,33,4,f +11760,3003,36,4,f +11760,3003,15,14,f +11760,3003,0,6,f +11760,3003,2,6,f +11760,3004,4,20,f +11760,3004,0,10,f +11760,3004,14,20,f +11760,3004,1,20,f +11760,3004,2,10,f +11760,3004,72,10,f +11760,3004,15,20,f +11760,3005,15,10,f +11760,3005,4,10,f +11760,3005,2,6,f +11760,3005,33,4,f +11760,3005,14,10,f +11760,3005,1,10,f +11760,3005,0,6,f +11760,3005pe1,14,4,f +11760,3009,4,4,f +11760,3009,15,4,f +11760,3009,1,2,f +11760,3009,14,2,f +11760,3010,1,2,f +11760,3010,4,2,f +11760,3010,72,2,f +11760,3010,14,2,f +11760,3010,2,2,f +11760,3010,15,2,f +11760,3010,0,2,f +11760,3010p01,14,1,f +11760,3020,1,2,f +11760,3020,15,2,f +11760,3020,14,2,f +11760,3020,4,2,f +11760,3020,2,2,f +11760,3021,4,2,f +11760,3021,14,2,f +11760,3021,15,2,f +11760,3021,1,2,f +11760,3021,2,2,f +11760,3021,72,2,f +11760,3022,2,2,f +11760,3022,72,2,f +11760,3022,14,4,f +11760,3022,4,4,f +11760,3022,1,4,f +11760,3022,15,4,f +11760,3039,15,4,f +11760,3039,1,4,f +11760,3039,4,2,f +11760,3039,47,2,f +11760,3039,72,2,f +11760,3039,33,2,f +11760,3040b,72,2,f +11760,3040b,1,4,f +11760,3040b,15,4,f +11760,3040b,4,4,f +11760,3065,47,8,f +11760,3065,36,6,f +11760,3065,33,6,f +11760,3066,36,2,f +11760,3298,1,2,f +11760,3298,15,4,f +11760,3298,4,4,f +11760,3622,2,2,f +11760,3622,72,2,f +11760,3660,4,2,f +11760,3660,15,2,f +11760,3660,1,2,f +11760,3665,15,4,f +11760,3665,72,2,f +11760,3665,4,4,f +11760,3665,1,4,f +11760,3710,4,2,f +11760,3710,1,2,f +11760,3710,15,2,f +11760,3747b,1,2,f +11760,3795,4,2,f +11760,3795,1,2,f +11760,3795,15,2,f +11760,4286,4,4,f +11760,4286,15,4,f +11760,4286,1,4,f +11760,4286,72,2,f +11760,4287,72,2,f +11760,4287,4,4,f +11760,4287,15,4,f +11760,4287,1,4,f +11761,2343,14,1,f +11761,2357,14,2,f +11761,2357,7,1,f +11761,2453a,15,2,f +11761,2458,15,1,f +11761,2489,6,1,f +11761,2518,2,4,f +11761,2524,6,2,f +11761,2525px1,15,1,f +11761,2526,14,1,f +11761,2526,1,2,f +11761,2527,4,1,f +11761,2528pb02,15,1,f +11761,2530,8,2,f +11761,2530,8,1,t +11761,2536,6,5,f +11761,2540,7,2,f +11761,2542,6,2,f +11761,2544,6,1,f +11761,2545,0,2,f +11761,2551,4,1,f +11761,2554,6,2,f +11761,2555,15,1,f +11761,2555,0,1,f +11761,2561,6,2,f +11761,2563,6,1,f +11761,2566,2,1,f +11761,2577,14,2,f +11761,3001,15,1,f +11761,3002,14,1,f +11761,3002,7,1,f +11761,3003,14,1,f +11761,3004,7,1,f +11761,3004,14,4,f +11761,3005,0,2,f +11761,3005,15,6,f +11761,3005,14,7,f +11761,3008,15,2,f +11761,3008,7,3,f +11761,3009,7,1,f +11761,3009,15,2,f +11761,3010,7,3,f +11761,3010,14,1,f +11761,3020,0,3,f +11761,3022,0,2,f +11761,3023,15,3,f +11761,3023,7,1,f +11761,3023,0,5,f +11761,3024,15,3,f +11761,3034,4,1,f +11761,3036,7,2,f +11761,3037,7,1,f +11761,3040b,7,2,f +11761,3062b,0,16,f +11761,3062b,15,6,f +11761,3062b,14,4,f +11761,3068bp30,15,1,f +11761,3069b,14,1,f +11761,3069b,0,1,f +11761,3070b,15,1,t +11761,3070b,15,1,f +11761,3307,14,2,f +11761,3308,14,4,f +11761,3403c01,0,1,f +11761,3460,0,1,f +11761,3581,14,2,f +11761,3622,14,2,f +11761,3622,15,2,f +11761,3622,7,1,f +11761,3623,7,1,f +11761,3626bp49,14,1,f +11761,3626bpb0096,14,1,f +11761,3626bpr0001,14,2,f +11761,3659,0,1,f +11761,3666,7,1,f +11761,3666,4,1,f +11761,3666,0,4,f +11761,3700,15,1,f +11761,3710,7,1,f +11761,3710,0,1,f +11761,3794a,15,1,f +11761,3795,7,1,f +11761,3849,0,1,f +11761,3857,1,1,f +11761,3899,1,2,f +11761,3957a,0,2,f +11761,3958,7,3,f +11761,4032a,2,1,f +11761,4070,14,1,f +11761,4070,0,2,f +11761,4085c,0,2,f +11761,4213,7,1,f +11761,4275b,4,2,f +11761,4276b,4,2,f +11761,4315,7,1,f +11761,4444,15,4,f +11761,4460b,15,3,f +11761,4490,15,1,f +11761,4497,0,1,f +11761,4589,15,2,f +11761,4733,0,1,f +11761,57503,334,1,f +11761,57504,334,1,f +11761,57505,334,1,f +11761,57506,334,1,f +11761,6020,6,2,f +11761,6083,8,1,f +11761,6141,46,4,f +11761,6141,46,1,t +11761,84943,8,1,f +11761,970c00,15,3,f +11761,970c00,0,1,f +11761,973p34c01,1,1,f +11761,973p3sc01,15,1,f +11761,973pb0206c01,15,2,f +11762,15207,15,3,f +11762,15573,72,1,f +11762,15573,71,18,f +11762,2357,71,1,f +11762,2412b,15,4,f +11762,2420,15,2,f +11762,2431,15,2,f +11762,2431,288,9,f +11762,2431,71,7,f +11762,2431,72,3,f +11762,2445,0,6,f +11762,2456,71,2,f +11762,2877,15,6,f +11762,298c04,15,19,f +11762,298c04,15,1,t +11762,3001,72,2,f +11762,3002,15,1,f +11762,3004,72,2,f +11762,3004,15,2,f +11762,3005,0,2,f +11762,3005,15,2,f +11762,3009,72,1,f +11762,3010,72,1,f +11762,3020,15,6,f +11762,3020,73,27,f +11762,3021,15,7,f +11762,3022,15,13,f +11762,3023,0,6,f +11762,3023,41,155,f +11762,3023,15,15,f +11762,3024,0,4,f +11762,3024,15,18,f +11762,3024,41,13,f +11762,3024,0,1,t +11762,3024,15,1,t +11762,3024,41,1,t +11762,3068b,71,2,f +11762,3068b,72,1,f +11762,3068b,15,5,f +11762,3069b,71,5,f +11762,3069b,15,22,f +11762,3069b,0,6,f +11762,3069b,41,13,f +11762,3069b,73,2,f +11762,3070b,71,1,t +11762,3070b,41,1,t +11762,3070b,15,3,f +11762,3070b,41,2,f +11762,3070b,15,1,t +11762,3070b,71,1,f +11762,3070b,72,1,t +11762,3070b,72,1,f +11762,3622,0,1,f +11762,3623,15,3,f +11762,3666,15,2,f +11762,3666,73,2,f +11762,3666,71,1,f +11762,3710,15,1,f +11762,3794b,15,5,f +11762,3795,0,3,f +11762,3795,71,6,f +11762,3795,15,1,f +11762,4070,15,15,f +11762,4162,0,7,f +11762,4162pr0028,0,1,f +11762,4162pr0029,0,1,f +11762,4282,0,2,f +11762,43898,15,1,f +11762,44728,71,6,f +11762,4865a,15,9,f +11762,61485,71,1,f +11762,6231,15,4,f +11762,63864,15,19,f +11762,63864,71,6,f +11762,63864,288,5,f +11762,6636,15,6,f +11762,6636,72,3,f +11762,6636,71,12,f +11762,87079,15,11,f +11762,87087,71,22,f +11762,87580,0,1,f +11762,92438,72,3,f +11762,96874,25,1,t +11762,98138,71,1,t +11762,98138,71,2,f +11762,99206,15,3,f +11762,99207,71,8,f +11764,10169,84,1,f +11764,11408pr0009c01,78,1,f +11764,11477,70,1,f +11764,11568pr0002,191,1,f +11764,11818pr0007,78,1,f +11764,13965,320,4,f +11764,14395,70,1,f +11764,14716,308,1,f +11764,14769,19,1,f +11764,15068,308,1,f +11764,15470,297,4,f +11764,15470,297,1,t +11764,15571,288,1,f +11764,15573,27,2,f +11764,15712,297,1,f +11764,18677,71,2,f +11764,19118,27,1,f +11764,19119,2,1,f +11764,19203pr0001,308,1,f +11764,2357,320,1,f +11764,2417,85,1,f +11764,2423,31,4,f +11764,2431,27,1,f +11764,3004,320,3,f +11764,3004,71,3,f +11764,3005,320,2,f +11764,3005,41,2,f +11764,30153,45,5,f +11764,3020,2,1,f +11764,3021,70,3,f +11764,3023,71,3,f +11764,3023,320,2,f +11764,3029,2,1,f +11764,30385,143,1,f +11764,30385,45,1,f +11764,3039,320,7,f +11764,3039,72,2,f +11764,3040b,320,3,f +11764,3040b,71,7,f +11764,3062b,46,1,f +11764,3065,34,4,f +11764,3065,35,7,f +11764,3068b,2,2,f +11764,3068bpr0247,19,1,f +11764,3069b,33,3,f +11764,3176,0,1,f +11764,32000,72,4,f +11764,32530,0,1,f +11764,32556,19,2,f +11764,3298,71,2,f +11764,33183,70,1,t +11764,33183,70,3,f +11764,33291,26,1,t +11764,33291,31,2,f +11764,33291,31,1,t +11764,33291,26,7,f +11764,3460,19,1,f +11764,3659,308,2,f +11764,3666,70,1,f +11764,3673,71,1,t +11764,3673,71,1,f +11764,3710,70,2,f +11764,3742,5,4,f +11764,3795,71,1,f +11764,43888,70,1,f +11764,44300,71,2,f +11764,44302a,71,2,f +11764,47847,41,1,f +11764,50950,320,1,f +11764,54200,143,1,t +11764,54200,143,12,f +11764,6003,2,3,f +11764,61252,19,1,f +11764,6141,297,1,t +11764,6141,297,2,f +11764,6231,19,4,f +11764,87079,26,1,f +11764,87087,71,1,f +11764,87087,70,1,f +11764,87580,27,2,f +11764,88072,0,3,f +11764,88289,308,1,f +11764,92819pr0006c01,288,1,f +11764,95228,34,1,f +11764,98138,47,1,t +11764,98138,34,1,t +11764,98138,34,1,f +11764,98138,47,4,f +11764,98138pr0033,34,2,f +11764,98138pr0033,34,1,t +11765,2695,15,2,f +11765,2696,0,2,f +11768,2412b,25,2,f +11768,2419,378,1,f +11768,2540,8,1,f +11768,2654,0,1,f +11768,2877,8,1,f +11768,30375,1,1,f +11768,30377,3,2,f +11768,30377,3,1,t +11768,30383,0,2,f +11768,30407,7,2,f +11768,30529p01,3,1,f +11768,30530,25,1,f +11768,3069bp55,8,1,f +11768,3795,2,1,f +11768,3795,8,1,f +11768,3937,7,1,f +11768,3938,0,1,f +11768,3960px3,7,1,f +11769,11127,41,1,f +11769,11129pr0005,25,1,f +11769,12825,72,1,f +11769,2540,15,1,f +11769,30031,0,1,f +11769,3022,191,1,f +11769,3069b,0,1,f +11769,3626cpr1123,19,1,f +11769,3795,19,1,f +11769,4624,71,2,f +11769,54200,70,2,f +11769,6014b,71,2,f +11769,6157,0,2,f +11769,85984,191,2,f +11769,87414,0,2,f +11769,87580,72,1,f +11769,87697,0,2,f +11769,970c02pr0430,19,1,f +11769,973pr2225c01,19,1,f +11769,98138,41,2,f +11769,99780,72,2,f +11772,777p04,15,1,f +11772,777p05,15,1,f +11772,777p07,15,1,f +11772,777p11,15,1,f +11772,777p15,15,1,f +11772,777px8,15,1,f +11773,2540,19,2,f +11773,2654,71,2,f +11773,3022,15,2,f +11773,3069b,30,2,f +11773,33291,4,1,f +11773,3958,2,1,f +11773,6141,2,1,f +11773,6179,191,2,f +11773,87079,30,2,f +11773,92280,71,2,f +11773,98387pr0002,71,1,f +11774,11090,15,6,f +11774,11477,0,1,f +11774,11477,15,1,f +11774,11477,272,2,f +11774,13547,71,1,f +11774,15307pr0002,15,1,f +11774,15391,0,1,f +11774,15392,72,2,t +11774,15392,72,4,f +11774,15395,15,1,f +11774,15535,72,2,f +11774,15571,15,1,f +11774,15573,15,1,f +11774,15712,72,2,f +11774,16497,1,1,f +11774,16501pr0001,15,1,f +11774,20105,0,1,f +11774,2412b,15,2,f +11774,2420,70,1,f +11774,2431,320,1,f +11774,2540,71,3,f +11774,2540,15,2,f +11774,2540,0,1,f +11774,26343,179,1,f +11774,2654,47,1,f +11774,2877,70,2,f +11774,298c02,71,2,f +11774,298c02,71,1,t +11774,30031,72,1,f +11774,3005,378,1,f +11774,30162,72,1,f +11774,3020,71,1,f +11774,3021,70,2,f +11774,3021,15,3,f +11774,3022,84,2,f +11774,3023,47,1,f +11774,3023,272,1,f +11774,3023,15,1,f +11774,3023,28,3,f +11774,3023,72,3,f +11774,3023,70,1,f +11774,3024,36,1,t +11774,3024,28,6,f +11774,3024,288,1,t +11774,3024,36,1,f +11774,3024,28,2,t +11774,3024,288,1,f +11774,30367c,15,1,f +11774,30374,19,1,f +11774,30374,35,1,f +11774,30375,19,1,f +11774,30376,19,1,f +11774,30377,19,1,t +11774,30377,19,1,f +11774,30378,19,1,f +11774,30408pr0007,15,1,f +11774,3040b,71,3,f +11774,30414,15,2,f +11774,30503,19,1,f +11774,30553,72,2,f +11774,3062b,322,1,f +11774,3062b,15,1,f +11774,3062b,308,2,f +11774,3062b,72,2,f +11774,3069b,41,1,f +11774,3070b,71,4,f +11774,3070b,15,1,f +11774,3070b,70,1,t +11774,3070b,70,1,f +11774,3070b,71,1,t +11774,3070b,15,1,t +11774,3070b,72,1,t +11774,3070b,72,1,f +11774,3070bpr0149,15,1,f +11774,3070bpr0149,15,1,t +11774,3176,72,1,f +11774,32028,15,1,f +11774,33291,2,1,f +11774,33291,2,1,t +11774,3623,72,2,f +11774,3623,71,1,f +11774,3626cpr1149,78,2,f +11774,3626cpr1363,78,1,f +11774,3626cpr1659,78,1,f +11774,3626cpr1670,78,1,f +11774,3626cpr1709,78,1,f +11774,3710,15,2,f +11774,3710,28,1,f +11774,3710,320,1,f +11774,3710,72,1,f +11774,3901,28,1,f +11774,3941,72,1,f +11774,4032a,71,2,f +11774,4032a,288,2,f +11774,4070,15,2,f +11774,4070,72,1,f +11774,4081b,15,1,f +11774,4081b,4,1,f +11774,4081b,72,2,f +11774,41770,15,1,f +11774,42446,71,2,f +11774,42446,71,2,t +11774,43722,0,2,f +11774,43723,0,2,f +11774,43898,15,1,f +11774,44301a,72,2,f +11774,44302a,15,1,f +11774,44567a,71,1,f +11774,44661,15,1,f +11774,44676,15,2,f +11774,44728,72,1,f +11774,4595,71,1,f +11774,4599b,71,2,t +11774,4599b,71,4,f +11774,46304,15,1,t +11774,46304,15,1,f +11774,4733,70,1,f +11774,4740,28,1,f +11774,4740,15,2,f +11774,4740pr0001b,47,1,f +11774,47905,72,2,f +11774,48336,72,2,f +11774,48729b,0,2,f +11774,48729b,0,1,t +11774,48729b,72,2,f +11774,48729b,72,1,t +11774,50950,19,2,f +11774,50950,320,2,f +11774,52107,0,2,f +11774,52107,15,2,f +11774,53451,4,1,t +11774,53451,4,1,f +11774,54200,0,1,f +11774,54200,28,2,f +11774,54200,15,9,f +11774,54200,15,3,t +11774,54200,40,2,t +11774,54200,40,2,f +11774,54200,70,1,t +11774,54200,70,1,f +11774,54200,0,1,t +11774,54200,28,1,t +11774,54200,19,2,t +11774,54200,19,4,f +11774,57900,15,1,f +11774,58247,0,3,f +11774,59230,19,1,t +11774,59230,19,1,f +11774,59900,72,1,f +11774,59900,2,1,f +11774,59900,15,2,f +11774,60470a,0,2,f +11774,60470a,71,2,f +11774,60474,71,1,f +11774,60477,320,2,f +11774,60477,71,2,f +11774,60849,71,3,f +11774,60849,71,2,t +11774,60897,72,2,f +11774,60897,19,1,f +11774,6091,320,2,f +11774,61252,0,2,f +11774,61252,72,1,f +11774,61252,71,3,f +11774,61409,70,1,f +11774,6141,179,4,f +11774,6141,179,2,t +11774,6141,0,1,t +11774,6141,0,1,f +11774,6141,15,2,t +11774,6141,4,1,t +11774,6141,4,1,f +11774,6141,72,1,t +11774,6141,72,1,f +11774,6141,15,6,f +11774,64567,71,1,t +11774,64567,71,1,f +11774,64567,80,1,t +11774,64567,80,1,f +11774,75937,179,1,f +11774,85861,0,3,f +11774,85861,71,1,t +11774,85861,71,4,f +11774,85861,0,1,t +11774,87087,71,1,f +11774,87087,484,1,f +11774,87555,15,1,f +11774,92590,28,1,f +11774,92690,71,1,f +11774,92738,0,2,f +11774,93555,179,2,f +11774,93555,179,1,t +11774,93559,15,2,f +11774,970c00,1,1,f +11774,970c00,15,1,f +11774,970c00,0,1,f +11774,970c00pr0583,0,1,f +11774,970c00pr0719,15,1,f +11774,970c00pr0858,71,1,f +11774,970c00pr1047,179,1,f +11774,970x194,15,1,f +11774,973c09,15,1,f +11774,973pr2311c01,15,1,f +11774,973pr2767c01,15,1,f +11774,973pr2768c01,0,1,f +11774,973pr2810c01,1,1,f +11774,973pr3012c01,0,1,f +11774,973pr3025c01,15,1,f +11774,973pr3361c01,179,1,f +11774,98108,0,1,f +11774,98138,0,1,f +11774,98138,0,1,t +11774,99781,15,1,f +11776,11439pat0002,47,2,f +11776,11477,1,2,f +11776,14417,72,1,f +11776,14418,71,1,f +11776,14704,71,2,f +11776,2736,71,2,f +11776,3004,1,1,f +11776,3022,322,1,f +11776,3023,322,6,f +11776,3040b,322,2,f +11776,30602,41,2,f +11776,32064b,0,2,f +11776,32474pr1001,15,2,f +11776,4032a,1,1,f +11776,44301a,0,1,f +11776,44302a,72,2,f +11776,44567a,0,1,f +11776,44728,1,1,f +11776,47457,1,1,f +11776,54200,322,1,t +11776,54200,143,2,f +11776,54200,322,4,f +11776,54200,143,1,t +11776,60478,0,2,f +11776,60897,1,4,f +11776,6141,15,1,t +11776,6141,15,2,f +11776,87087,1,4,f +11777,11153,27,2,f +11777,30162,72,1,f +11777,3023,25,2,f +11777,3024,2,2,f +11777,3024,2,1,t +11777,30374,2,2,f +11777,4595,0,1,f +11777,54200,2,1,t +11777,54200,40,1,t +11777,54200,2,2,f +11777,54200,40,2,f +11778,14226c11,0,1,f +11778,2412b,71,1,f +11778,2436,4,1,f +11778,2437,47,1,f +11778,2439,72,1,f +11778,2456,1,1,f +11778,2877,72,1,f +11778,3001,1,2,f +11778,30027b,71,4,f +11778,30028,0,4,f +11778,3003,27,4,f +11778,3003,2,4,f +11778,3003,4,3,f +11778,3003,15,4,f +11778,3004,4,2,f +11778,3004,15,4,f +11778,3004,1,2,f +11778,3005,1,2,f +11778,3005,15,1,f +11778,3005,4,1,f +11778,3010,1,2,f +11778,3020,71,2,f +11778,3020,25,2,f +11778,3020,1,2,f +11778,3022,25,3,f +11778,3023,15,4,f +11778,3034,4,2,f +11778,3039,15,1,f +11778,3039pr0001,15,1,f +11778,3040b,4,2,f +11778,3062b,46,2,f +11778,3062b,36,2,f +11778,3065,47,1,f +11778,3069b,4,4,f +11778,3176,14,1,f +11778,3298,4,2,f +11778,3622,1,2,f +11778,3659,4,4,f +11778,3660,1,2,f +11778,3660,15,2,f +11778,3666,4,2,f +11778,3710,25,2,f +11778,3710,1,2,f +11778,3710,71,2,f +11778,3823,47,1,f +11778,3829c01,15,2,f +11778,3832,71,2,f +11778,3836,70,1,f +11778,4070,1,2,f +11778,4070,4,2,f +11778,4070,15,3,f +11778,4599b,14,1,f +11778,4600,0,2,f +11778,4623,14,1,f +11778,54200,46,1,t +11778,54200,46,2,f +11778,6014b,14,4,f +11778,60219,71,1,f +11778,60700,0,4,f +11778,6141,36,1,t +11778,6141,71,4,f +11778,6141,34,1,t +11778,6141,71,1,t +11778,6141,34,2,f +11778,6141,36,4,f +11778,6157,71,2,f +11779,3004,15,1,f +11779,3004,0,1,f +11779,3004p0b,14,1,f +11779,3010,14,1,f +11779,3021,4,1,f +11779,3022,0,1,f +11779,3039,15,2,f +11780,263,0,2,f +11780,270c02,0,1,f +11780,272,15,2,f +11780,3001a,4,1,f +11780,3002a,4,2,f +11780,3003,0,3,f +11780,3004,47,1,f +11780,3004,0,22,f +11780,3004,4,4,f +11780,3005,47,2,f +11780,3005,4,6,f +11780,3005,0,14,f +11780,3008,0,4,f +11780,3009,0,14,f +11780,3009,4,6,f +11780,3010,4,6,f +11780,3010,0,16,f +11780,3020,14,1,f +11780,3020,7,1,f +11780,3021,0,10,f +11780,3021,7,4,f +11780,3022,0,2,f +11780,3022,4,1,f +11780,3022,14,1,f +11780,3023,0,3,f +11780,3023,4,2,f +11780,3023,7,2,f +11780,3024,0,4,f +11780,3027,7,1,f +11780,3029,14,2,f +11780,3032,0,2,f +11780,3034,7,1,f +11780,3034,15,20,f +11780,3034,14,1,f +11780,3036,0,1,f +11780,3038,0,6,f +11780,3040a,0,7,f +11780,3062a,15,2,f +11780,3062a,0,1,f +11780,3063b,15,16,f +11780,3087c,14,2,f +11780,3145,14,4,f +11780,3194,4,2,f +11780,3195,4,2,f +11780,3228a,1,8,f +11780,3229a,1,16,f +11780,3230a,1,16,f +11780,3241b,1,16,f +11780,3242c,1,4,f +11780,3460,15,1,f +11780,3488,0,20,f +11780,4178a,0,1,f +11780,433c01,0,2,f +11780,458,0,5,f +11780,7049b,0,1,f +11780,736c02,0,3,f +11780,wheel2a,0,1,f +11780,wheel2a,4,4,f +11780,x515,14,2,f +11780,x550a,0,1,f +11780,x564,4,2,f +11785,3007mia,15,1,f +11785,3298mia,2,8,f +11785,3299mia,2,2,f +11785,3853mi,15,2,f +11785,3861mi,15,1,f +11785,604mi,15,3,f +11785,m3001,4,25,f +11785,m3001,15,9,f +11785,m3003,4,15,f +11785,x1561,2,1,f +11787,2356,0,2,f +11787,2356,8,1,f +11787,2412b,7,2,f +11787,2432,0,1,f +11787,2437,34,1,f +11787,2446px2,15,2,f +11787,2447,34,2,t +11787,2447,34,2,f +11787,2453a,7,2,f +11787,2453a,15,4,f +11787,2454a,15,4,f +11787,2456,8,1,f +11787,2456,7,3,f +11787,2456,0,2,f +11787,2460,15,1,f +11787,2479,7,1,f +11787,2486,0,4,f +11787,2513p04,0,1,f +11787,2540,0,1,f +11787,2555,0,2,f +11787,2569,4,1,f +11787,2569,4,1,t +11787,2620,34,1,f +11787,2873,15,1,f +11787,298c02,15,1,t +11787,298c02,4,1,f +11787,298c02,15,1,f +11787,3001,4,5,f +11787,3004,4,1,f +11787,3004,15,2,f +11787,3004pb008,7,2,f +11787,3004pc0,15,1,f +11787,3005,7,4,f +11787,30055,0,4,f +11787,3006,15,1,f +11787,3009,8,4,f +11787,3009,7,8,f +11787,3010,0,1,f +11787,3010,7,1,f +11787,3010pr0016,0,2,f +11787,30137,7,1,f +11787,30179,0,4,f +11787,30180,15,2,f +11787,30180,7,1,f +11787,30180p01,7,1,f +11787,30181,0,3,f +11787,30181p01,0,2,f +11787,30183p01,15,1,f +11787,30185c05pb01,0,3,f +11787,30187a,15,1,f +11787,30187c01,15,1,t +11787,30189,15,1,f +11787,30190,15,1,f +11787,3020,14,1,f +11787,3022,0,1,f +11787,30225pb01,2,1,f +11787,30235,7,1,f +11787,3032,7,1,f +11787,3039,15,2,f +11787,3039,33,2,f +11787,3039p08,0,2,f +11787,3039px14,15,1,f +11787,3040b,33,4,f +11787,3040p04,7,1,f +11787,3065,46,1,f +11787,3068b,14,1,f +11787,3068bp80,15,1,f +11787,3069b,33,2,f +11787,3069bp02,7,2,f +11787,3069bp0b,15,1,f +11787,3069bp52,15,1,f +11787,3069bp80,15,1,f +11787,3069bpx35,15,1,f +11787,3070b,46,1,t +11787,3070b,46,1,f +11787,3070b,36,1,f +11787,3070b,36,1,t +11787,3460,0,4,f +11787,3475b,8,2,f +11787,3626bp02,14,1,f +11787,3626bp03,14,1,f +11787,3626bp04,14,3,f +11787,3626bpx11,14,2,f +11787,3660,0,2,f +11787,3660,15,2,f +11787,3710,0,2,f +11787,3741,2,3,f +11787,3741,2,1,t +11787,3742,14,9,f +11787,3742,14,3,t +11787,3754,7,3,f +11787,3754,15,8,f +11787,3829c01,15,1,f +11787,3865,2,1,f +11787,3867,2,1,f +11787,3899,47,2,f +11787,3900p01,15,1,f +11787,3901,0,2,f +11787,3957a,7,1,f +11787,3958,0,1,f +11787,3962b,0,3,f +11787,3963,15,2,f +11787,4033,7,1,f +11787,4079,15,1,f +11787,4079,7,5,f +11787,4083,0,3,f +11787,4085c,7,1,f +11787,4151a,8,1,f +11787,4162,4,1,f +11787,4209,0,1,f +11787,4285b,7,1,f +11787,4315,15,1,f +11787,4315,7,1,f +11787,4318,14,1,f +11787,4349,4,2,f +11787,4360,15,1,f +11787,4485,15,1,f +11787,4485pb01,0,2,f +11787,4589,15,2,f +11787,4595,0,1,f +11787,4623,7,2,f +11787,4740,34,1,f +11787,4871,15,1,f +11787,55295,8,1,f +11787,55296,8,1,f +11787,55297,8,1,f +11787,55298,8,1,f +11787,55299,8,1,f +11787,55300,8,1,f +11787,6014a,15,6,f +11787,6015,0,7,f +11787,6016,0,1,f +11787,6019,15,2,f +11787,6019,7,1,f +11787,6093,0,1,f +11787,6140,7,2,f +11787,6141,34,1,f +11787,6141,36,5,t +11787,6141,33,2,f +11787,6141,36,9,f +11787,6141,0,1,t +11787,6141,0,1,f +11787,6141,34,1,t +11787,6160c02,0,1,f +11787,6187,7,1,f +11787,6212,0,5,f +11787,6583,8,6,f +11787,6636,14,4,f +11787,76041c03,0,4,f +11787,970c00,7,2,f +11787,970c00,0,5,f +11787,973pr0145c01,15,1,f +11787,973px20c01,0,2,f +11787,973px67c01,0,2,f +11787,973px9c01,0,2,f +11788,12898,0,1,f +11788,12899pr0001,0,1,f +11788,3626bpb0921,14,1,f +11788,46304,15,1,f +11788,88646,0,1,f +11788,970c00pb244,72,1,f +11788,973pr2328c01,72,1,f +11789,10197,72,1,f +11789,10928,72,7,f +11789,15367,0,2,f +11789,15369,297,2,f +11789,15462,28,3,f +11789,15744,297,1,f +11789,15976,179,2,f +11789,18395,0,2,f +11789,18587,71,1,f +11789,18588,41,1,f +11789,18651,0,2,f +11789,19049,179,2,f +11789,19050,57,1,f +11789,19050,42,1,f +11789,19086,72,2,f +11789,19087,297,1,f +11789,19149pat0007,297,1,f +11789,20473,57,1,f +11789,20474,179,4,f +11789,20475,148,4,f +11789,20476,179,1,f +11789,20477,297,1,f +11789,20479,179,3,f +11789,20480,179,1,f +11789,2780,0,8,f +11789,32034,0,1,f +11789,32039,0,6,f +11789,32054,71,1,f +11789,32062,4,5,f +11789,32072,0,5,f +11789,32072,14,2,f +11789,32123b,71,4,f +11789,32270,0,1,f +11789,33299a,71,1,f +11789,3705,0,3,f +11789,3713,71,3,f +11789,3737,0,1,f +11789,3957a,47,1,f +11789,3960,41,1,f +11789,41669,57,3,f +11789,43093,1,2,f +11789,53585,0,4,f +11789,57585,71,1,f +11789,59443,71,1,f +11789,60208,72,2,f +11789,60483,0,1,f +11789,61403,179,1,f +11789,6141,41,12,f +11789,63869,0,1,f +11789,64727,4,1,f +11789,6553,0,1,f +11789,6558,1,2,f +11789,6587,28,1,f +11789,6632,0,2,f +11789,74261,72,4,f +11789,87083,72,5,f +11789,90607,0,2,f +11789,90609,41,4,f +11789,90612,41,4,f +11789,90612,57,1,f +11789,90617,72,2,f +11789,90626,179,1,f +11789,90640,297,2,f +11789,90641,41,2,f +11789,90641,297,2,f +11789,92907,0,1,f +11789,93575,57,2,f +11789,93575,179,2,f +11789,98577,72,2,f +11789,98585,41,2,f +11789,98590,0,1,f +11789,98603s02pr0016,148,1,f +11791,11212,71,1,f +11791,12825,0,2,f +11791,2420,15,2,f +11791,2654,15,2,f +11791,3021,15,1,f +11791,3023,0,2,f +11791,3023,15,2,f +11791,3024,320,2,f +11791,3024,15,1,t +11791,3024,320,1,t +11791,3024,15,1,f +11791,3062b,320,2,f +11791,3069b,40,1,f +11791,3069b,15,1,f +11791,3623,15,1,f +11791,3666,15,2,f +11791,3710,15,3,f +11791,3710,0,1,f +11791,4081b,15,2,f +11791,42446,72,2,f +11791,4477,15,1,f +11791,4589,320,2,f +11791,49668,0,3,f +11791,54200,40,1,t +11791,54200,320,1,t +11791,54200,40,1,f +11791,54200,320,1,f +11791,54383,15,1,f +11791,54384,15,1,f +11791,60478,15,2,f +11791,6141,0,1,t +11791,6141,41,2,f +11791,6141,0,3,f +11791,6141,41,1,t +11791,63864,320,3,f +11791,63864,15,2,f +11791,98138,179,1,t +11791,98138,179,2,f +11795,2352,14,2,f +11795,2412b,72,4,f +11795,2431,71,2,f +11795,2456,71,3,f +11795,2456,2,3,f +11795,2456,14,2,f +11795,2458,72,4,f +11795,2817,71,2,f +11795,30000,72,1,f +11795,3001,1,3,f +11795,3001,25,3,f +11795,3001,71,2,f +11795,3001,14,2,f +11795,3001,2,3,f +11795,3002,14,2,f +11795,3002,1,4,f +11795,3002,2,4,f +11795,3002,25,4,f +11795,3003,25,4,f +11795,3003,1,4,f +11795,3003,2,4,f +11795,3004,72,4,f +11795,3004,71,4,f +11795,3004,25,4,f +11795,3004,2,4,f +11795,3004,1,4,f +11795,3004,4,4,f +11795,3004,14,4,f +11795,3005,4,4,f +11795,3005,0,4,f +11795,3005,14,4,f +11795,3005,1,4,f +11795,3005,2,3,f +11795,3005,25,4,f +11795,3007,4,4,f +11795,30076,0,1,f +11795,3008,0,2,f +11795,3008,1,2,f +11795,3008,72,2,f +11795,3009,2,2,f +11795,3009,14,4,f +11795,3009,4,2,f +11795,3010,1,4,f +11795,3010,25,4,f +11795,3010,2,4,f +11795,3010,4,2,f +11795,30157,71,4,f +11795,3020,71,2,f +11795,3020,0,2,f +11795,3020,4,2,f +11795,3022,4,2,f +11795,30300,4,1,f +11795,3032,4,1,f +11795,30350b,0,1,f +11795,30363,14,2,f +11795,30388,0,1,f +11795,30389c,14,1,f +11795,3039,14,2,f +11795,3039,0,2,f +11795,3039,4,4,f +11795,3039,2,2,f +11795,3040b,14,2,f +11795,3040b,0,2,f +11795,3040b,4,2,f +11795,30414,72,1,f +11795,30414,14,3,f +11795,3062b,71,9,f +11795,3062b,57,4,f +11795,3062b,42,4,f +11795,30648,0,10,f +11795,30663,0,1,f +11795,32059,0,1,f +11795,3298,14,2,f +11795,3298,0,2,f +11795,3298,4,2,f +11795,3622,2,2,f +11795,3622,25,2,f +11795,3622,14,2,f +11795,3622,1,2,f +11795,3665,71,4,f +11795,3665,4,2,f +11795,3666,0,2,f +11795,3673,71,4,f +11795,3673,71,1,t +11795,3710,2,2,f +11795,3710,4,5,f +11795,3794a,71,2,f +11795,3795,4,4,f +11795,3795,0,2,f +11795,3821,4,1,f +11795,3822,4,1,f +11795,3823,47,1,f +11795,3829c01,14,2,f +11795,40902,71,1,f +11795,4175,0,4,f +11795,4176,47,1,f +11795,4282,0,1,f +11795,43903,0,2,f +11795,47508,14,1,f +11795,48336,0,1,f +11795,55981,71,14,f +11795,6141,42,1,t +11795,6141,42,4,f +11795,6141,36,1,t +11795,6141,36,4,f +11795,6215,2,3,f +11797,11092,70,2,f +11797,11477,308,4,f +11797,11477,2,1,f +11797,15068,308,1,f +11797,15208,15,1,f +11797,15392,72,1,t +11797,15392,72,1,f +11797,15462,28,2,f +11797,15490pr0002,70,1,f +11797,15672,4,2,f +11797,18654,72,2,f +11797,18654,72,1,t +11797,18674,70,2,f +11797,18980,0,1,f +11797,22380,2,1,f +11797,22385,0,1,f +11797,22385pr0007,57,1,f +11797,22388,182,1,t +11797,22388,297,1,t +11797,22388,297,4,f +11797,22388,182,2,f +11797,22391,308,2,f +11797,22394,179,1,f +11797,22408,179,1,f +11797,22484,57,2,f +11797,22487,179,1,f +11797,24093pr0004,40,1,f +11797,24097,179,1,f +11797,24324,297,1,f +11797,24446,9999,1,f +11797,2450,308,2,f +11797,2460,4,1,f +11797,2780,0,1,t +11797,2780,0,2,f +11797,3001,4,1,f +11797,30136,72,3,f +11797,3021,72,2,f +11797,3022,4,5,f +11797,3023,308,8,f +11797,30293,182,2,f +11797,3031,72,1,f +11797,3034,72,1,f +11797,3049d,308,3,f +11797,3062b,308,3,f +11797,3069bpr0090,72,1,f +11797,3069bpr0162,19,1,f +11797,32013,4,2,f +11797,32016,0,2,f +11797,32062,0,2,f +11797,32064a,72,2,f +11797,32073,71,2,f +11797,32187,71,1,f +11797,32523,4,2,f +11797,32530,4,2,f +11797,32556,19,2,f +11797,33299b,0,2,f +11797,3460,308,1,f +11797,3626cpb1523,0,1,f +11797,3626cpr1781,14,1,f +11797,3660,308,1,f +11797,3660,4,1,f +11797,3673,71,4,f +11797,3673,71,1,t +11797,3700,14,2,f +11797,3701,72,2,f +11797,3705,0,1,f +11797,3747b,0,1,f +11797,3895,0,2,f +11797,3937,4,1,f +11797,3941,182,2,f +11797,4081b,0,2,f +11797,41530,182,2,f +11797,4274,71,1,t +11797,4274,71,2,f +11797,44728,0,2,f +11797,47457,308,4,f +11797,47759,308,1,f +11797,48729b,57,2,f +11797,48729b,57,1,t +11797,49668,15,2,f +11797,54200,308,1,t +11797,54200,308,2,f +11797,55013,72,4,f +11797,59443,4,4,f +11797,60477,308,2,f +11797,60483,71,2,f +11797,6126b,182,2,f +11797,6134,0,1,f +11797,61409,72,2,f +11797,6141,182,1,t +11797,6141,182,4,f +11797,64647,182,1,t +11797,64647,182,2,f +11797,64712,0,2,f +11797,64867pr0001,182,2,f +11797,6558,1,4,f +11797,76766,0,1,f +11797,85984,4,1,f +11797,87081,0,2,f +11797,88289,308,2,f +11797,90194,4,1,f +11797,92280,71,1,f +11797,93274,4,1,f +11797,95199,72,2,f +11797,970c00pr0937,72,1,f +11797,970c00pr0948,0,1,f +11797,973pb2258c01,0,1,f +11797,973pr3150c01,72,1,f +11797,98100,0,2,f +11797,99207,4,5,f +11798,11477,5,2,f +11798,11816pr0002,78,1,f +11798,15068,322,1,f +11798,15535,4,1,f +11798,25386,19,1,f +11798,30043,0,2,f +11798,3031,27,1,f +11798,3034,27,1,f +11798,33078,4,1,t +11798,33078,4,1,f +11798,3660,15,2,f +11798,4162,19,2,f +11798,59900,15,6,f +11798,60581,0,1,f +11798,6141,4,6,f +11798,6141,45,4,f +11798,6141,42,1,t +11798,6141,42,4,f +11798,6141,15,6,f +11798,6141,4,1,t +11798,6141,15,1,t +11798,6141,45,1,t +11798,6215,15,1,f +11798,63864,19,2,f +11798,63868,0,2,f +11798,92255,226,1,f +11798,92456pr0062c01,78,1,f +11798,92818pr0012c01,322,1,f +11798,95753pat0005,25,1,f +11802,2431,0,2,f +11802,2715px4,4,1,f +11802,2716,0,1,f +11802,2717,14,1,f +11802,2780,0,33,f +11802,2817,0,1,f +11802,2952,0,1,f +11802,3022,0,1,f +11802,3068b,0,1,f +11802,3069b,0,2,f +11802,3127,4,1,f +11802,32002,8,4,f +11802,32012,14,1,f +11802,32013,14,3,f +11802,32015,0,4,f +11802,32016,14,1,f +11802,32016,0,4,f +11802,32039,14,2,f +11802,32039,0,13,f +11802,32056,14,2,f +11802,32062,0,10,f +11802,32073,0,2,f +11802,32123b,7,15,f +11802,32137,46,8,f +11802,32138,0,4,f +11802,32138,14,2,f +11802,32140,0,4,f +11802,3647,7,1,f +11802,3705,0,10,f +11802,3706,0,9,f +11802,3707,0,1,f +11802,3708,0,3,f +11802,3713,7,2,f +11802,3737,0,2,f +11802,3749,7,5,f +11802,4185,14,2,f +11802,4274,7,4,f +11802,4519,0,4,f +11802,4868a,4,2,f +11802,6536,14,4,f +11802,6536,7,4,f +11802,6538b,7,1,f +11802,6558,0,1,f +11802,6575,7,2,f +11802,6589,7,2,f +11802,6629,0,12,f +11802,6632,14,2,f +11802,6632,0,2,f +11802,75c23,14,4,f +11802,78c05,14,2,f +11802,78c10,14,2,f +11802,85543,15,1,f +11802,rb00164,0,1,f +11802,tech023,9999,1,f +11803,3626bpr0525,78,1,f +11803,58247,0,1,f +11803,92742pb02,0,1,f +11803,970c00,0,1,f +11803,973pb0908c01,0,1,f +11806,3003,15,15,f +11806,3004,15,3,f +11806,3005,15,8,f +11806,3023,14,1,f +11806,3023,2,1,f +11806,3023,15,2,f +11806,3062b,47,2,f +11806,3062b,36,1,f +11806,3666,15,3,f +11806,60478,14,1,f +11806,60478,4,1,f +11806,60478,15,1,f +11806,6141,15,4,f +11806,6141,182,2,f +11806,6141,46,1,f +11806,6141,33,4,f +11806,6141,36,2,f +11806,6141,34,7,f +11806,6141,41,1,f +11806,63868,15,1,f +11806,63868,4,1,f +11806,63868,14,1,f +11806,73983,4,1,f +11807,2339,0,4,f +11807,2375,0,1,f +11807,2419,0,2,f +11807,2540,4,1,f +11807,2542,4,1,f +11807,2546p01,4,2,f +11807,2555,4,1,f +11807,2586p30,15,1,f +11807,3023,4,2,f +11807,3024,33,1,f +11807,3032,0,1,f +11807,3062b,14,2,f +11807,3460,14,2,f +11807,3626bp3k,14,1,f +11807,3626bp40,14,1,f +11807,3679,7,1,f +11807,3680,14,1,f +11807,3941,4,1,f +11807,3957a,4,1,f +11807,4085c,4,1,f +11807,4150p30,15,1,f +11807,4318,0,1,f +11807,4319,0,1,f +11807,4497,6,3,f +11807,4623,14,3,f +11807,6019,4,3,f +11807,6019,0,2,f +11807,6021,4,2,f +11807,6025,0,1,f +11807,6026,2,1,f +11807,6027,2,1,f +11807,6028,2,1,f +11807,6030,4,1,f +11807,6108,0,2,f +11807,6141,4,2,f +11807,6256stk01,9999,1,t +11807,87695,15,4,f +11807,87696,15,2,f +11807,970c03pb01,14,2,f +11807,973pb0063c01,14,1,f +11807,973pb0064c01,14,1,f +11807,sailbb10,15,1,f +11808,160ac01,4,3,f +11808,160ac02,4,3,f +11809,30088,0,1,f +11809,3023,1,3,f +11809,3626bpr0630,71,1,f +11809,3626bpr0643,14,1,f +11809,74188,1,3,f +11809,87754,72,1,f +11809,87756pr01,71,1,f +11809,87758pr01,272,1,f +11809,89159,35,1,f +11809,92290,297,2,f +11809,970c00,272,1,f +11809,970c00pr0144,71,1,f +11809,970c00pr0145,72,1,f +11809,973pr1555c01,272,1,f +11809,973pr1556c01,71,1,f +11809,973pr1557c01,72,1,f +11812,2518,10,4,f +11812,2536,6,7,f +11812,2563,6,1,f +11812,2566,6,1,f +11812,3010,14,1,f +11812,30109c01,5,1,f +11812,3030,10,1,f +11812,3062b,36,1,f +11812,3062b,34,1,f +11812,33051,10,1,f +11812,33051,2,1,f +11812,3710,5,1,f +11812,3741,10,3,f +11812,3742,14,3,f +11812,3742,5,3,f +11812,3742,14,1,t +11812,3742,5,1,t +11812,4032a,10,1,f +11812,45,383,1,f +11812,4589,34,1,f +11812,4589,36,1,f +11812,6141,36,1,t +11812,6141,46,1,t +11812,6141,46,1,f +11812,6141,36,1,f +11812,6162,18,2,f +11812,6175,8,1,f +11812,6182,14,1,f +11812,6187,14,1,f +11812,6199,13,1,f +11812,6200,5,2,f +11812,6228b,15,1,f +11812,6251,15,1,f +11812,6251,0,1,f +11812,6255,10,2,f +11812,6256,1,1,f +11812,belvfem11,-1,1,f +11812,belvfem3,-1,1,f +11812,towel,14,1,f +11815,2456,15,4,f +11815,2456,2,4,f +11815,2456,14,4,f +11815,2456,1,4,f +11815,2456,4,4,f +11815,2456,0,4,f +11815,3001,14,12,f +11815,3001,0,4,f +11815,3001,25,12,f +11815,3001,15,4,f +11815,3001,2,12,f +11815,3001,1,12,f +11815,3001,73,12,f +11815,3001,4,12,f +11815,3001,27,12,f +11815,3001,85,12,f +11815,3002,14,8,f +11815,3002,0,4,f +11815,3002,4,8,f +11815,3002,2,8,f +11815,3002,15,4,f +11815,3002,1,8,f +11815,3003,1,36,f +11815,3003,15,8,f +11815,3003,4,36,f +11815,3003,0,8,f +11815,3003,14,36,f +11815,3003,2,36,f +11815,3003,73,16,f +11815,3003,85,16,f +11815,3003,25,16,f +11815,3003,27,16,f +11815,3004,14,32,f +11815,3004,2,32,f +11815,3004,0,16,f +11815,3004,4,32,f +11815,3004,27,20,f +11815,3004,73,20,f +11815,3004,1,32,f +11815,3004,85,20,f +11815,3004,25,20,f +11815,3004,15,16,f +11815,3005,14,12,f +11815,3005,85,12,f +11815,3005,27,12,f +11815,3005,4,12,f +11815,3005,2,12,f +11815,3005,0,8,f +11815,3005,25,12,f +11815,3005,15,8,f +11815,3005,73,12,f +11815,3005,1,12,f +11815,3008,1,4,f +11815,3008,0,3,f +11815,3008,2,4,f +11815,3008,15,3,f +11815,3008,4,4,f +11815,3008,14,4,f +11815,3009,15,4,f +11815,3009,1,8,f +11815,3009,0,4,f +11815,3009,2,8,f +11815,3009,14,8,f +11815,3009,4,8,f +11815,3010,15,4,f +11815,3010,4,8,f +11815,3010,14,8,f +11815,3010,2,8,f +11815,3010,0,4,f +11815,3010,1,8,f +11815,3020,4,8,f +11815,3020,1,8,f +11815,3020,2,8,f +11815,3020,14,8,f +11815,3022,4,4,f +11815,3022,1,4,f +11815,3022,2,4,f +11815,3022,14,4,f +11815,3034,0,4,f +11815,3034,15,4,f +11815,3040b,1,12,f +11815,3040b,4,12,f +11815,3040b,0,12,f +11815,3040b,2,12,f +11815,3040b,15,12,f +11815,3040b,14,12,f +11815,3622,4,4,f +11815,3622,2,4,f +11815,3622,0,4,f +11815,3622,14,4,f +11815,3622,1,4,f +11815,3622,15,4,f +11815,96874,25,2,t +11820,2420,2,4,f +11820,2431,0,4,f +11820,2436,4,7,f +11820,2450,0,2,f +11820,2654,72,4,f +11820,2730,0,4,f +11820,2743,72,8,f +11820,2780,0,1,t +11820,2780,0,32,f +11820,2815,0,2,f +11820,3004,0,11,f +11820,3005,72,8,f +11820,3020,4,5,f +11820,3021,0,5,f +11820,3022,72,4,f +11820,3023,72,24,f +11820,30383,2,6,f +11820,3040b,0,6,f +11820,30414,71,4,f +11820,30553,0,9,f +11820,3069b,0,9,f +11820,32000,72,2,f +11820,32001,0,1,f +11820,32002,72,10,f +11820,32002,72,1,t +11820,32013,71,8,f +11820,32054,4,4,f +11820,32062,4,1,t +11820,32062,4,14,f +11820,32063,0,6,f +11820,32065,4,2,f +11820,32073,71,1,f +11820,32123b,14,2,f +11820,32123b,14,1,t +11820,32140,4,1,f +11820,32146,0,2,f +11820,32184,4,4,f +11820,32249,4,4,f +11820,32250,0,6,f +11820,32251,0,2,f +11820,32269,71,2,f +11820,32270,71,4,f +11820,32271,0,2,f +11820,32316,72,6,f +11820,32348,27,2,f +11820,32449,71,4,f +11820,32498,0,2,f +11820,32523,15,11,f +11820,32524,0,11,f +11820,32525,71,9,f +11820,32526,27,4,f +11820,32530,72,4,f +11820,32556,71,8,f +11820,32557,0,2,f +11820,33299a,71,2,f +11820,3460,0,10,f +11820,3623,0,13,f +11820,3639,72,2,f +11820,3640,72,2,f +11820,3647,71,1,f +11820,3648b,71,4,f +11820,3660,4,3,f +11820,3666,71,10,f +11820,3673,71,1,t +11820,3673,71,15,f +11820,3700,71,4,f +11820,3701,72,10,f +11820,3702,71,8,f +11820,3705,0,9,f +11820,3706,0,2,f +11820,3707,0,2,f +11820,3710,72,14,f +11820,3713,4,5,f +11820,3713,4,1,t +11820,3737,0,1,f +11820,3749,19,1,t +11820,3749,19,14,f +11820,3894,0,8,f +11820,3895,72,2,f +11820,4032a,4,3,f +11820,40379,21,9,f +11820,40490,4,2,f +11820,40490,72,3,f +11820,41239,0,2,f +11820,41532,0,1,f +11820,41669,15,6,f +11820,41669,42,2,f +11820,41677,4,12,f +11820,41678,14,2,f +11820,41747,0,4,f +11820,41748,0,4,f +11820,41764,71,5,f +11820,41765,71,5,f +11820,41767,0,1,f +11820,41768,0,1,f +11820,41769,72,2,f +11820,41770,72,2,f +11820,4185,71,2,f +11820,42003,14,1,f +11820,42022,0,2,f +11820,42023,71,2,f +11820,4286,0,12,f +11820,4287,71,10,f +11820,43093,1,23,f +11820,43093,1,1,t +11820,43722,0,4,f +11820,43723,0,4,f +11820,43857,27,4,f +11820,44126,0,2,f +11820,44294,71,2,f +11820,44567a,14,2,f +11820,44728,72,4,f +11820,4477,71,4,f +11820,4519,71,9,f +11820,45590,0,4,f +11820,4716,71,1,f +11820,48336,0,2,f +11820,48989,71,1,f +11820,49668,15,26,f +11820,50923,72,2,f +11820,50950,0,10,f +11820,54200,27,19,f +11820,54200,15,6,f +11820,54200,0,18,f +11820,55013,72,2,f +11820,57910,72,2,f +11820,58119,71,1,f +11820,58120,71,1,f +11820,58121,71,1,f +11820,58122,71,1,f +11820,58123a,71,1,f +11820,60125,71,1,f +11820,6019,4,4,f +11820,6141,27,1,t +11820,6141,27,24,f +11820,6222,0,1,f +11820,6538b,14,1,f +11820,6541,15,4,f +11820,6558,0,46,f +11820,6575,72,4,f +11820,6587,72,2,f +11820,6629,71,2,f +11820,6632,27,10,f +11820,73983,72,2,f +11820,75535,15,1,f +11822,2040,14,1,f +11822,2041,15,1,f +11822,2042c03,4,1,f +11822,2046,14,1,f +11822,2048,4,1,f +11822,264,4,4,f +11822,3001,4,13,f +11822,3001,14,1,f +11822,3002,4,6,f +11822,3003,4,12,f +11822,3004,4,20,f +11822,3009,4,4,f +11822,3010,14,1,f +11822,3010,4,2,f +11822,3027,4,1,f +11822,3031,14,1,f +11822,3032,4,1,f +11822,3033,4,2,f +11822,3068pb01,15,1,f +11822,3068pb02,15,1,f +11822,3308,4,4,f +11822,3403c01,4,1,f +11822,3622,4,4,f +11822,3633,14,7,f +11822,3795,4,4,f +11822,3811,2,1,f +11822,3899,1,3,f +11822,3957a,0,2,f +11822,3979c02,4,8,f +11822,4000,14,1,f +11822,4222a,450,3,f +11822,4362acx1,0,1,f +11822,4429,4,1,f +11822,4438,0,2,f +11822,4461,4,2,f +11822,4495a,1,2,f +11822,4610,4,2,f +11822,4727,2,2,f +11822,4728,14,1,f +11822,4728,15,1,f +11822,4781,7,1,f +11822,4796c01,0,1,f +11822,4876,4,1,f +11822,5,4,1,f +11822,787c02,4,2,f +11822,fab2f,9999,1,f +11822,fab2i,9999,2,f +11822,fabaj1,4,3,f +11822,fabaj1,0,2,f +11822,fabaj3,0,2,f +11822,fabbc1,4,1,f +11822,fabca2,450,1,f +11822,fabca3,450,1,f +11822,fabed10,0,1,f +11822,u9213p01,2,1,f +11822,x222,15,1,f +11822,x638,14,2,f +11822,x659,4,2,f +11825,11153,1,4,f +11825,11208,71,4,f +11825,11209,0,4,f +11825,11211,71,1,f +11825,11211,15,2,f +11825,11213,71,1,f +11825,11215,71,4,f +11825,11289,41,1,f +11825,11458,72,2,f +11825,11476,15,1,f +11825,11477,1,2,f +11825,14413,15,3,f +11825,14520,72,1,f +11825,14769,71,1,f +11825,14769,15,1,f +11825,15068,71,7,f +11825,15207,71,2,f +11825,15207,72,2,f +11825,15210pr01,0,4,f +11825,15530,272,1,f +11825,15535,72,2,f +11825,15573,14,3,f +11825,15712,72,1,f +11825,18653,15,2,f +11825,18654,72,4,f +11825,18892,0,2,f +11825,18895pr03,15,1,f +11825,18896,0,1,f +11825,18948,15,2,f +11825,18975,72,1,f +11825,18980,15,1,f +11825,19220,0,2,f +11825,20877,484,1,f +11825,22888,0,2,f +11825,22889,15,2,f +11825,23443,0,1,f +11825,2357,72,2,f +11825,2357,15,10,f +11825,23969,71,1,f +11825,2412b,71,2,f +11825,2412b,15,3,f +11825,2412b,0,2,f +11825,2412b,72,8,f +11825,2420,1,2,f +11825,2420,2,1,f +11825,2420,15,1,f +11825,2420,14,1,f +11825,24309,0,1,f +11825,2431,71,5,f +11825,2431,1,3,f +11825,2431,33,1,f +11825,2432,14,2,f +11825,2432,71,6,f +11825,2437,40,1,f +11825,2445,0,1,f +11825,2446,15,2,f +11825,2447,40,2,f +11825,2449,15,2,f +11825,2453b,15,9,f +11825,2454a,15,31,f +11825,2456,15,3,f +11825,2456,19,1,f +11825,2460,72,1,f +11825,2465,15,3,f +11825,2465,71,1,f +11825,2479,0,1,f +11825,2486,14,1,f +11825,2654,71,1,f +11825,26597,71,2,f +11825,26603,19,1,f +11825,2780,0,16,f +11825,28324,0,1,f +11825,28327,1,3,f +11825,2877,71,7,f +11825,298c02,14,1,f +11825,30000,1,2,f +11825,3001,15,2,f +11825,3001,4,1,f +11825,3001,0,1,f +11825,3001,72,1,f +11825,3001,1,3,f +11825,3002,72,1,f +11825,3002,1,1,f +11825,3003,14,1,f +11825,3003,0,1,f +11825,3003,15,10,f +11825,3003,71,8,f +11825,30031,72,1,f +11825,3004,1,2,f +11825,3004,0,2,f +11825,3004,71,8,f +11825,3004,15,3,f +11825,3005,71,6,f +11825,3005,15,19,f +11825,3007,71,1,f +11825,3008,71,4,f +11825,30089,0,1,f +11825,3009,15,6,f +11825,3009,71,4,f +11825,3010,71,2,f +11825,3010,15,16,f +11825,30134,0,1,f +11825,3020,4,3,f +11825,3020,1,2,f +11825,3020,0,4,f +11825,3020,71,1,f +11825,3021,1,2,f +11825,3022,19,1,f +11825,3022,0,1,f +11825,3022,4,1,f +11825,3022,71,2,f +11825,3022,1,1,f +11825,3023,1,7,f +11825,3023,46,2,f +11825,3023,15,4,f +11825,30237b,0,1,f +11825,30237b,15,3,f +11825,3024,36,2,f +11825,3024,33,2,f +11825,3024,34,1,f +11825,30248,72,1,f +11825,3028,0,3,f +11825,3029,71,1,f +11825,3030,0,3,f +11825,3032,15,1,f +11825,3032,0,2,f +11825,3033,0,3,f +11825,3034,0,1,f +11825,3035,0,4,f +11825,30374,0,1,f +11825,30414,71,1,f +11825,3062b,72,1,f +11825,3062b,14,2,f +11825,3065,40,1,f +11825,3068b,72,2,f +11825,3068b,1,2,f +11825,3068b,0,1,f +11825,3069b,71,1,f +11825,3069b,14,2,f +11825,3069b,15,1,f +11825,3069b,1,3,f +11825,3069b,46,5,f +11825,3069b,182,1,f +11825,3069bpr0030,15,4,f +11825,3070b,15,2,f +11825,3070b,4,2,f +11825,3070b,1,1,f +11825,30725,70,1,f +11825,3176,71,2,f +11825,32009,71,2,f +11825,32013,15,1,f +11825,32028,71,4,f +11825,32059,15,1,f +11825,32062,4,1,f +11825,32064a,15,3,f +11825,32124,0,1,f +11825,32140,71,1,f +11825,3245b,15,3,f +11825,3245b,71,1,f +11825,32526,72,2,f +11825,32556,19,1,f +11825,3460,15,4,f +11825,3622,15,5,f +11825,3623,72,3,f +11825,3626cpr0920,14,1,f +11825,3626cpr1580,14,1,f +11825,3626cpr1581,14,1,f +11825,3626cpr1662,14,1,f +11825,3626cpr2088a,14,1,f +11825,3626cpr2134,14,1,f +11825,3626cpr2141,14,1,f +11825,3633,0,1,f +11825,3660,4,1,f +11825,3665,4,2,f +11825,3666,14,2,f +11825,3666,15,1,f +11825,3666,71,7,f +11825,3666,1,1,f +11825,3673,71,2,f +11825,3700,15,8,f +11825,3701,1,4,f +11825,3701,15,3,f +11825,3703,15,3,f +11825,3710,0,4,f +11825,3710,71,1,f +11825,3710,4,2,f +11825,3749,19,2,f +11825,3794b,71,11,f +11825,3794b,15,2,f +11825,3795,19,1,f +11825,3795,71,1,f +11825,3821,4,1,f +11825,3822,4,1,f +11825,3829c01,1,1,f +11825,3829c01,14,1,f +11825,3899,4,4,f +11825,3900,15,1,f +11825,3941,41,1,f +11825,3957a,71,1,f +11825,3958,0,3,f +11825,3960,71,1,f +11825,4006,0,1,f +11825,4032a,71,2,f +11825,4070,15,2,f +11825,4079,14,4,f +11825,4081b,71,2,f +11825,41239,14,1,f +11825,41334,0,2,f +11825,41532,0,1,f +11825,4161,0,5,f +11825,4162,14,1,f +11825,4162,71,2,f +11825,4162,1,2,f +11825,41769,1,1,f +11825,41770,1,1,f +11825,41854,15,1,f +11825,42003,71,1,f +11825,4216,71,3,f +11825,4217,1,2,f +11825,4218,41,7,f +11825,4219,15,1,f +11825,4274,1,6,f +11825,4286,0,3,f +11825,4286,15,2,f +11825,43093,1,2,f +11825,4349,4,1,f +11825,44294,14,1,f +11825,44301a,0,2,f +11825,4477,0,4,f +11825,4477,15,1,f +11825,4490,72,1,f +11825,4515,0,1,f +11825,4519,14,2,f +11825,45677,4,1,f +11825,47457,15,1,f +11825,47457,71,1,f +11825,48336,71,2,f +11825,4865b,40,1,f +11825,4865b,15,7,f +11825,4865b,41,5,f +11825,50745,15,4,f +11825,50861,0,2,f +11825,50862,71,2,f +11825,50949,0,1,f +11825,51858,71,1,f +11825,52036,72,1,f +11825,52501,4,2,f +11825,54200,15,2,f +11825,54200,46,6,f +11825,57783,41,1,f +11825,57895,15,2,f +11825,57895,41,11,f +11825,59349,15,1,f +11825,6014b,71,4,f +11825,60470a,15,4,f +11825,60474,72,1,f +11825,60475b,4,2,f +11825,60478,71,4,f +11825,60479,0,1,f +11825,60483,71,2,f +11825,60592,15,1,f +11825,60596,1,11,f +11825,60596,71,18,f +11825,60599,15,1,f +11825,60616a,41,3,f +11825,60621,148,1,f +11825,60897,71,2,f +11825,6106,0,4,f +11825,6111,1,1,f +11825,6112,15,2,f +11825,61252,1,3,f +11825,6141,182,2,f +11825,6141,71,11,f +11825,6141,36,2,f +11825,6141,34,1,f +11825,61482,71,3,f +11825,61485,15,1,f +11825,61485,0,1,f +11825,6157,71,2,f +11825,6180,71,2,f +11825,61800,15,1,f +11825,63864,71,5,f +11825,63864,15,2,f +11825,63868,72,2,f +11825,64448,15,3,f +11825,64728,4,2,f +11825,6541,72,4,f +11825,6558,1,1,f +11825,6628,0,2,f +11825,6636,15,2,f +11825,6636,72,2,f +11825,6636,1,3,f +11825,76138,71,1,f +11825,76766,71,1,f +11825,85861,71,2,f +11825,85984,0,1,f +11825,85984,15,7,f +11825,87079,15,1,f +11825,87079,71,8,f +11825,87079,0,2,f +11825,87079,484,1,f +11825,87079,14,1,f +11825,87087,15,2,f +11825,87552,71,2,f +11825,87609,15,1,f +11825,87697,0,4,f +11825,88072,71,1,f +11825,88393,1,2,f +11825,88930,4,1,f +11825,91405,72,2,f +11825,92099,0,1,f +11825,92107,0,2,f +11825,92280,71,2,f +11825,92438,72,1,f +11825,92585,4,1,f +11825,92586pr0001,84,1,f +11825,92589,148,9,f +11825,92593,0,2,f +11825,92593,72,1,f +11825,92593,15,8,f +11825,92842,0,1,f +11825,92946,14,1,f +11825,93606,15,1,f +11825,95188,0,1,f +11825,96874,25,1,f +11825,970c00,0,1,f +11825,970c00,272,4,f +11825,970c00,484,1,f +11825,970c00pr0985,15,1,f +11825,973cpr3628,15,1,f +11825,973pr2502c01,15,1,f +11825,973pr3627,212,2,f +11825,973pr3694,272,1,f +11825,973pr3699,212,1,f +11825,973pr3753,72,1,f +11825,98138,33,10,f +11825,98138,36,4,f +11825,98138,14,2,f +11825,98138,0,1,f +11825,98281,15,1,f +11825,98282,72,4,f +11825,99206,4,1,f +11825,99207,71,3,f +11825,99780,72,1,f +11825,99781,0,3,f +11826,2736,7,4,f +11826,2780,0,52,f +11826,2905,8,12,f +11826,3069bp12,14,4,f +11826,32015,0,2,f +11826,32015,8,6,f +11826,32016,8,12,f +11826,32039,0,10,f +11826,32039,4,2,f +11826,32039,8,4,f +11826,32039,14,2,f +11826,32054,0,4,f +11826,32062,0,14,f +11826,32063,0,4,f +11826,32073,0,21,f +11826,32089,4,3,f +11826,32089,14,3,f +11826,32123b,7,24,f +11826,32123b,7,2,t +11826,32140,8,10,f +11826,32165,0,1,f +11826,32175,14,2,f +11826,32177,0,4,f +11826,32184,0,2,f +11826,32190,4,1,f +11826,32190,14,1,f +11826,32191,4,1,f +11826,32191,14,1,f +11826,32250,8,4,f +11826,32270,7,2,f +11826,32271,0,4,f +11826,32271,8,8,f +11826,32278,8,2,f +11826,32278,0,4,f +11826,32291,0,12,f +11826,32308,8,8,f +11826,32310,0,5,f +11826,32316,8,4,f +11826,32316,0,12,f +11826,32348,0,10,f +11826,32449,0,8,f +11826,32449,8,8,f +11826,32505pr01,0,2,f +11826,32523,8,8,f +11826,32524,8,6,f +11826,32524,0,8,f +11826,32526,0,4,f +11826,32526,8,2,f +11826,32527,0,2,f +11826,32527,80,2,f +11826,32528,0,2,f +11826,32528,80,2,f +11826,32551,4,2,f +11826,32551,14,4,f +11826,32553,8,4,f +11826,32556,7,20,f +11826,32573,0,2,f +11826,3673,7,4,f +11826,3705,0,10,f +11826,3706,0,2,f +11826,3708,0,4,f +11826,3713,7,4,f +11826,3749,7,40,f +11826,4274,7,16,f +11826,4274,7,2,t +11826,4519,0,36,f +11826,6536,0,4,f +11826,6536,8,4,f +11826,6538b,8,4,f +11826,6553,8,8,f +11826,6558,0,36,f +11826,6587,8,8,f +11826,6628,0,20,f +11826,6632,8,12,f +11826,6632,4,4,f +11826,6632,14,4,f +11826,6632,0,4,f +11826,6641,7,2,f +11826,71509,0,8,t +11826,71509,0,8,f +11826,71965,0,2,f +11826,78c02,179,12,f +11826,78c03,4,2,f +11826,78c03,14,2,f +11826,78c09,4,4,f +11826,78c09,14,4,f +11826,rb00167,0,6,t +11826,rb00167,0,6,f +11827,3003,14,3,f +11827,3004,14,4,f +11827,3008,14,4,f +11827,3009,14,4,f +11827,3010,14,6,f +11827,3020,14,4,f +11827,3021,14,1,f +11827,3022,14,3,f +11827,3023,0,7,f +11827,3023,14,2,f +11827,3023,47,2,f +11827,3023,7,2,f +11827,3024,36,2,f +11827,3029,14,2,f +11827,3030,14,2,f +11827,3032,14,2,f +11827,3033,14,2,f +11827,3034,14,1,f +11827,3062a,36,1,f +11827,3062a,0,3,f +11827,3068b,14,8,f +11827,3069b,14,11,f +11827,3145,14,2,f +11827,3460,14,5,f +11827,3647,7,7,f +11827,3648a,7,3,f +11827,3649,7,4,f +11827,3650a,7,2,f +11827,3651,7,22,f +11827,3660,14,3,f +11827,3673,7,40,f +11827,3700,14,10,f +11827,3701,14,4,f +11827,3702,14,10,f +11827,3703,14,6,f +11827,3705,0,10,f +11827,3706,0,5,f +11827,3707,0,4,f +11827,3708,0,2,f +11827,3710,7,4,f +11827,3710,14,7,f +11827,3713,7,11,f +11827,3736,7,2,f +11827,3737,0,1,f +11827,3743,7,6,f +11827,3749,7,4,f +11827,3795,14,4,f +11827,3873,0,106,f +11827,3894,14,8,f +11827,3895,14,2,f +11827,71509,0,2,f +11829,10247,15,1,f +11829,11203,15,1,f +11829,11214,72,1,f +11829,11293,4,1,f +11829,11295,72,1,f +11829,11297,41,2,f +11829,11455,0,1,f +11829,11458,0,6,f +11829,13793,72,1,f +11829,14718,4,4,f +11829,14769,0,1,f +11829,15068,14,2,f +11829,15100,0,1,f +11829,15397,0,1,f +11829,15461,0,2,f +11829,15573,4,2,f +11829,15790,0,1,f +11829,18895pr01,4,1,f +11829,18896,0,1,f +11829,18899pat0001,4,1,f +11829,23405,326,5,f +11829,2357,72,4,f +11829,2412b,72,2,f +11829,2412b,0,1,f +11829,2412b,70,2,f +11829,2419,0,1,f +11829,2431,70,1,f +11829,2432,14,1,f +11829,2445,15,1,f +11829,2446,15,2,f +11829,2447,40,2,f +11829,2447,40,2,t +11829,2454a,326,3,f +11829,2456,4,1,f +11829,2458,72,2,f +11829,2479,0,1,f +11829,2495,4,1,f +11829,2496,0,1,f +11829,2540,72,1,f +11829,2780,0,1,t +11829,2780,0,1,f +11829,3001,72,1,f +11829,3003,0,1,f +11829,30031,72,1,f +11829,3004,2,1,f +11829,3006,14,1,f +11829,3009,71,4,f +11829,3010,72,4,f +11829,30137,70,1,f +11829,30165,14,4,f +11829,30194,72,1,f +11829,3020,0,1,f +11829,3020,15,2,f +11829,3021,14,4,f +11829,3022,72,3,f +11829,3023,1,2,f +11829,30237b,70,2,f +11829,3030,0,1,f +11829,30367c,14,3,f +11829,3039,4,2,f +11829,30592,72,1,f +11829,3062b,14,1,f +11829,3062b,321,1,f +11829,3069b,46,1,f +11829,32013,0,1,f +11829,32028,72,2,f +11829,32028,0,3,f +11829,32083,4,1,f +11829,32324,71,1,f +11829,3623,71,2,f +11829,3626cpr0893,14,1,f +11829,3626cpr0933,14,1,f +11829,3626cpr1147,14,1,f +11829,3660,72,4,f +11829,3673,71,1,t +11829,3673,71,1,f +11829,3678b,71,1,f +11829,3710,15,2,f +11829,3710,0,4,f +11829,3795,15,2,f +11829,3832,4,5,f +11829,3941,41,5,f +11829,3941,14,3,f +11829,4006,0,1,f +11829,4079,14,1,f +11829,41770,15,1,f +11829,4274,1,2,f +11829,4274,1,1,t +11829,44126,72,1,f +11829,44728,14,4,f +11829,4510,0,2,f +11829,4599b,14,1,f +11829,4599b,0,3,f +11829,4599b,0,1,t +11829,4599b,14,1,t +11829,4624,71,6,f +11829,47457,4,2,f +11829,47457,1,4,f +11829,48336,71,3,f +11829,4868b,72,2,f +11829,4869,71,2,f +11829,4870,71,2,f +11829,50861,0,2,f +11829,50862,71,2,f +11829,51739,15,1,f +11829,54200,33,1,t +11829,54200,33,4,f +11829,58176,33,1,f +11829,59895,0,6,f +11829,59895,0,1,t +11829,6020,0,1,f +11829,60470a,71,3,f +11829,60479,71,2,f +11829,60596,72,1,f +11829,60897,72,1,f +11829,61072,0,2,f +11829,61252,72,1,f +11829,6126b,182,6,f +11829,61409,15,2,f +11829,61483,71,1,f +11829,6239,15,1,f +11829,62462,0,1,f +11829,62743,0,4,f +11829,64644,0,1,f +11829,6558,1,2,f +11829,85861,182,1,t +11829,85861,182,6,f +11829,85984,0,1,f +11829,85984pr0143,72,1,f +11829,87079,72,1,f +11829,87615,4,1,f +11829,87616,72,1,f +11829,92438,72,1,f +11829,93273,15,2,f +11829,93273,72,1,f +11829,970c00,272,1,f +11829,970c00pr0408,0,1,f +11829,973pr2885c01,25,1,f +11829,973pr3205c01,0,2,f +11829,98138,34,1,t +11829,98138,46,3,f +11829,98138,34,1,f +11829,98138,36,1,f +11829,98138,36,1,t +11829,98138,46,1,t +11829,98286,71,1,f +11830,2486,15,1,f +11830,2516,7,1,f +11830,3010,4,1,f +11830,3010pb045,4,1,f +11830,30180,0,1,f +11830,30181,0,1,f +11830,30285,15,4,f +11830,3037,15,1,f +11830,30622,4,3,f +11830,30632,0,1,f +11830,30640,0,1,f +11830,30643,4,1,f +11830,30646a,4,2,f +11830,30648,0,4,f +11830,30663,7,1,f +11830,3297px19,4,1,f +11830,3835,0,1,t +11830,3835,0,1,f +11830,41751,36,1,f +11830,6126a,41,1,f +11830,6126a,41,1,t +11830,6212,8,1,f +11830,bb42,4,1,f +11830,js001,9999,1,f +11830,js013,9999,1,f +11831,bslot04,462,1,f +11831,bslot04,1,1,f +11831,bslot04,4,1,f +11831,bslot04,2,1,f +11831,bslot04,14,1,f +11831,bslot04,10,1,f +11831,bslot04,73,1,f +11831,bslot04,15,1,f +11831,bslot04,47,1,f +11831,bslot04,17,1,f +11832,3022,14,1,f +11832,3710,4,2,f +11832,3839b,72,2,f +11832,85984,14,2,f +11833,10908pr0004,272,1,f +11833,2412b,0,1,f +11833,3020,14,1,f +11833,3626cpr1216,70,1,f +11833,4081b,0,1,f +11833,42446,0,1,f +11833,48729b,0,1,f +11833,59230,0,1,f +11833,60478,14,2,f +11833,64567,0,1,f +11833,92280,0,1,f +11833,970c00pr0563,272,1,f +11833,973pr0170c01,272,1,f +11833,98138,36,2,f +11835,53792,151,1,f +11836,609p01,7,2,f +11837,2412b,0,1,t +11837,2412b,0,1,f +11837,2450,0,2,f +11837,2496,0,1,f +11837,2496,0,1,t +11837,2655,7,1,t +11837,2655,7,1,f +11837,3004,15,1,f +11837,3004pb010,15,2,f +11837,3020,0,1,f +11837,3039,15,1,f +11837,3039,33,1,f +11839,2412b,14,2,f +11839,2446pr23,0,1,f +11839,2540,14,1,f +11839,3004,72,1,f +11839,30088,72,2,f +11839,30090,41,1,f +11839,30091,72,1,f +11839,30093,34,1,f +11839,30115,4,2,f +11839,30153,34,1,f +11839,30153,33,1,f +11839,3020,14,1,f +11839,3023,14,1,f +11839,30303,71,1,f +11839,3031,72,1,f +11839,3040b,71,1,f +11839,3040b,72,1,f +11839,3062b,14,2,f +11839,3069b,0,1,f +11839,3069bpr0070,0,1,f +11839,32039,14,2,f +11839,32064b,0,2,f +11839,32073,71,1,f +11839,32123b,14,1,t +11839,32123b,14,6,f +11839,3626bpr0190,15,1,f +11839,3626bpr0250,14,1,f +11839,3747a,14,2,f +11839,3749,19,2,f +11839,3937,0,1,f +11839,3938,14,1,f +11839,43722,0,1,f +11839,43723,0,1,f +11839,4460a,72,1,f +11839,44661pr0001,14,1,f +11839,44676,0,1,f +11839,4589,33,2,f +11839,4589,34,1,f +11839,4623,71,3,f +11839,4738a,70,1,f +11839,4739a,70,1,f +11839,48183,0,1,f +11839,48729a,72,2,f +11839,50950,14,2,f +11839,53989,0,2,f +11839,57503,334,1,f +11839,57504,334,1,f +11839,57505,334,1,f +11839,57506,334,1,f +11839,59275,0,2,f +11839,6019,0,2,f +11839,6041,0,2,f +11839,6538b,72,2,f +11839,6587,72,2,f +11839,970c00,0,1,f +11839,973pr1300c01,0,1,f +11840,30285,14,4,f +11840,30387,14,1,f +11840,3039,1,1,f +11840,30391,0,4,f +11840,30395,8,1,f +11840,30396,0,1,f +11840,30624,7,1,f +11840,30625,14,1,f +11840,30626,0,1,f +11840,30632,14,1,f +11840,30637,0,1,f +11840,30640,7,1,f +11840,30643,8,1,f +11840,30647px1,14,1,f +11840,30647px2,14,1,f +11840,30649px1,40,1,f +11840,30663,0,1,f +11840,3962b,8,1,f +11840,40996,42,1,f +11840,4740,42,3,f +11840,60169,7,1,f +11840,js003,9999,1,f +11842,2040,4,4,f +11842,2041,15,1,f +11842,2046,14,1,f +11842,2047c01,4,2,f +11842,3001a,4,1,f +11842,3001a,0,1,f +11842,3004,0,2,f +11842,3004,4,1,f +11842,3010,4,1,f +11842,3020,4,1,f +11842,3031,4,1,f +11842,3185,4,1,f +11842,3455,4,1,f +11842,3456,4,1,f +11842,3888ac01,0,1,f +11842,3957a,0,2,f +11842,4222a,4,2,f +11842,4495b,14,2,f +11842,4608,0,1,f +11842,4781,7,1,f +11842,fab6f,9999,1,f +11842,fab8b,-1,1,f +11842,fabaj1,4,1,f +11842,fabaj3,4,1,f +11842,x222,15,1,f +11843,15,15,3,f +11843,17,15,3,f +11843,21,47,1,f +11843,3001a,15,1,f +11843,3002a,15,4,f +11843,3002a,4,2,f +11843,3003,15,3,f +11843,3004,4,1,f +11843,3004,15,4,f +11843,3005,47,4,f +11843,3005,15,4,f +11843,3007,15,2,f +11843,3008,15,2,f +11843,3009,47,2,f +11843,3010,15,4,f +11843,3010ap04,15,2,f +11843,3010pb036u,15,1,f +11843,3020,15,1,f +11843,3020,4,4,f +11843,3021,4,2,f +11843,3022,4,2,f +11843,3024,1,2,f +11843,3030,15,2,f +11843,3032,15,1,f +11843,3033,4,2,f +11843,3034,15,1,f +11843,3037,15,2,f +11843,3038,47,4,f +11843,3038,4,2,f +11843,3039,4,3,f +11843,3040a,15,2,f +11843,3045,4,4,f +11843,3046a,15,2,f +11843,3068b,4,1,f +11843,3137c01,0,2,f +11843,3139,0,7,f +11843,3192,15,2,f +11843,3193,15,2,f +11843,3298,15,5,f +11843,3460,7,8,f +11843,3461,7,2,f +11843,3462,4,1,f +11843,3464,4,3,f +11843,3475a,4,2,f +11843,3481,4,1,f +11843,3581,15,2,f +11843,3582,15,2,f +11843,3624,15,2,f +11843,3625,0,1,f +11843,3626a,14,3,f +11843,3660,4,4,f +11843,3660,15,10,f +11843,8,4,3,f +11844,2412b,4,1,f +11844,2446pr30,0,1,f +11844,2447,0,1,t +11844,2447,0,1,f +11844,2555,71,1,f +11844,3003,19,1,f +11844,3003,71,3,f +11844,30115,4,1,f +11844,3062b,72,2,f +11844,32039,0,1,f +11844,32062,4,2,f +11844,32073,71,1,f +11844,33299a,0,1,f +11844,3626bpr0662,14,1,f +11844,3626bpr0663,14,1,f +11844,3647,72,1,f +11844,3795,19,1,f +11844,4032a,72,2,f +11844,4150,27,1,f +11844,42610,71,1,f +11844,4274,71,1,t +11844,4274,71,1,f +11844,4529,0,1,f +11844,45590,0,1,f +11844,4588,72,2,f +11844,46304,15,1,t +11844,46304,15,1,f +11844,50859b,0,2,f +11844,50860,27,1,f +11844,50861,0,4,f +11844,50862,71,4,f +11844,51011,0,1,f +11844,53533,0,1,f +11844,59900,36,2,f +11844,6141,182,3,f +11844,6141,182,1,t +11844,64728,4,1,f +11844,87781pr0001,72,1,f +11844,8896stk01,9999,1,t +11844,89536,0,1,f +11844,89801,80,1,f +11844,970c00pr0151,15,1,f +11844,970x026,72,1,f +11844,973pr1586c01,27,1,f +11844,973pr1587c01,0,1,f +11845,58118,72,1,f +11846,14226c41,0,1,f +11846,23306,383,2,f +11846,2356,7,7,f +11846,2357,15,2,f +11846,2357,7,2,f +11846,2412b,36,9,f +11846,2412b,57,10,f +11846,2431,8,8,f +11846,2431,7,1,f +11846,2431,0,7,f +11846,2431,15,2,f +11846,2432,7,1,f +11846,2445,0,1,f +11846,2449,0,1,f +11846,2453a,7,2,f +11846,2454a,8,17,f +11846,2454ps5,0,1,f +11846,2456,0,2,f +11846,2458,8,8,f +11846,2540,7,2,f +11846,2540,19,1,f +11846,2555,7,8,f +11846,2555,0,8,f +11846,2577,7,2,f +11846,2653,0,6,f +11846,2654,15,1,f +11846,2819,7,1,f +11846,298c02,0,1,f +11846,298c02,0,1,t +11846,30000,8,1,f +11846,3001,0,7,f +11846,3001,15,2,f +11846,3001,7,5,f +11846,3002,0,1,f +11846,3003,15,5,f +11846,3003,0,9,f +11846,3003,8,6,f +11846,3004,15,3,f +11846,3004,7,4,f +11846,3004,8,1,f +11846,3004,0,10,f +11846,3005,8,12,f +11846,3007,8,2,f +11846,3007,0,14,f +11846,3009,8,1,f +11846,3009,15,4,f +11846,3010,8,6,f +11846,3010,0,2,f +11846,30104,72,1,f +11846,30136,19,21,f +11846,30137,19,2,f +11846,30157,8,1,f +11846,3020,8,4,f +11846,3020,7,4,f +11846,3020,0,3,f +11846,3021,15,1,f +11846,3021,7,2,f +11846,3021,0,2,f +11846,3022,8,36,f +11846,3023,7,2,f +11846,3023,8,3,f +11846,30236,7,4,f +11846,30256,7,1,f +11846,3028,19,1,f +11846,3030,0,2,f +11846,3031,8,5,f +11846,3032,0,2,f +11846,30359b,8,1,f +11846,30359b,0,2,f +11846,30363,8,7,f +11846,30366ps1,40,1,f +11846,30368,0,1,f +11846,30374,36,1,f +11846,30374,41,1,f +11846,3039,7,1,f +11846,3039,8,1,f +11846,3039pc0,8,1,f +11846,30408px2,15,1,f +11846,3040b,8,4,f +11846,30414,15,3,f +11846,30414,8,2,f +11846,30475,6,1,f +11846,3048c,0,4,f +11846,30516,15,1,f +11846,3062b,36,2,f +11846,3062b,42,8,f +11846,3062b,19,11,f +11846,3062b,47,2,f +11846,3065,47,2,f +11846,30658,15,1,f +11846,3066,57,4,f +11846,3068b,19,2,f +11846,3068b,8,10,f +11846,3069b,0,1,f +11846,3069bpr0086,7,1,f +11846,3176,8,1,f +11846,32000,7,2,f +11846,32028,14,4,f +11846,32028,7,2,f +11846,32269,7,1,f +11846,32324,7,1,f +11846,3245b,7,2,f +11846,32531,0,1,f +11846,3307,19,1,f +11846,3307,8,1,f +11846,3308,0,2,f +11846,33230,7,4,f +11846,3460,0,2,f +11846,3622,7,4,f +11846,3622,0,2,f +11846,3623,19,1,f +11846,3626b,14,1,f +11846,3626b,0,1,f +11846,3626bpr0342,14,1,f +11846,3626bpr0378,14,1,f +11846,3626bpr0454,6,1,f +11846,3626bps3,14,1,f +11846,3626bps7,7,1,f +11846,3659,8,6,f +11846,3660,15,2,f +11846,3665,7,8,f +11846,3673,7,1,t +11846,3673,7,1,f +11846,3679,7,1,f +11846,3680,0,1,f +11846,3684,0,6,f +11846,3684,15,3,f +11846,3684,7,6,f +11846,3700,8,10,f +11846,3701,7,6,f +11846,3708,0,1,f +11846,3710,0,3,f +11846,3710,8,8,f +11846,3713,7,1,t +11846,3713,7,2,f +11846,3741,6,2,f +11846,3741,6,1,t +11846,3747a,8,2,f +11846,3749,19,2,f +11846,3754,0,1,f +11846,3794a,7,1,f +11846,3795,15,1,f +11846,3901,19,1,f +11846,3901,6,1,f +11846,3901,0,1,f +11846,3937,7,1,f +11846,3940b,8,1,f +11846,3941,7,1,f +11846,3941,15,1,f +11846,3957a,7,2,f +11846,3957a,57,8,f +11846,3958,8,1,f +11846,3958,0,1,f +11846,4032a,8,1,f +11846,4032a,19,5,f +11846,4032a,7,3,f +11846,4079,15,4,f +11846,4150,15,6,f +11846,4150pr0022,7,2,f +11846,4150ps8,0,2,f +11846,4162,8,8,f +11846,4162,15,2,f +11846,4162,19,4,f +11846,41767,7,1,f +11846,41768,7,1,f +11846,4201,8,1,f +11846,4204,8,5,f +11846,4274,1,1,t +11846,4274,1,3,f +11846,4286,8,4,f +11846,4286,15,2,f +11846,43093,1,1,f +11846,43337,7,1,f +11846,4349,0,4,f +11846,4460a,15,1,f +11846,4460a,7,4,f +11846,44728,7,4,f +11846,4519,7,2,f +11846,45695,7,1,f +11846,4589,7,1,f +11846,4716,15,4,f +11846,4865a,7,1,f +11846,50231,0,1,f +11846,50231pb01,14,1,f +11846,6111,8,4,f +11846,6111,7,2,f +11846,6112,0,2,f +11846,6134,0,1,f +11846,6141,36,4,f +11846,6141,42,22,f +11846,6141,36,1,t +11846,6141,42,2,t +11846,6141,7,3,t +11846,6141,41,2,f +11846,6141,7,11,f +11846,6141,57,2,t +11846,6141,57,12,f +11846,6141,41,1,t +11846,6222,15,1,f +11846,6232,8,6,f +11846,6541,19,3,f +11846,6553,7,2,f +11846,6628,0,4,f +11846,6636,0,1,f +11846,6636,8,6,f +11846,6636,15,1,f +11846,6636,19,12,f +11846,75c09,7,2,f +11846,75c09,7,1,t +11846,75c20,7,1,f +11846,970c00,6,1,f +11846,970c00,0,2,f +11846,970c00pr0033,6,1,f +11846,970c02pb05,19,1,f +11846,970c09pb04,7,1,f +11846,970x026,15,1,f +11846,973pb0282c02,7,1,f +11846,973pb0306c01,73,1,f +11846,973pr0520c01,15,1,f +11846,973pr1155c01,19,1,f +11846,973ps5c01,0,1,f +11846,973ps7c01,0,1,f +11846,973px303c01,15,1,f +11846,x50px1,2,1,f +11847,2412b,0,1,t +11847,2412b,0,1,f +11847,2540,0,1,f +11847,3003,0,1,f +11847,3020,14,1,f +11847,3022,14,1,f +11847,3023,0,2,f +11847,3023,0,1,t +11847,30602,40,1,f +11847,3298,0,1,f +11847,3747b,0,1,f +11847,3794a,14,1,t +11847,3794a,14,1,f +11847,6019,0,1,f +11847,6019,0,1,t +11847,6141,57,1,f +11847,6141,57,4,t +11848,2412b,4,1,f +11848,2420,4,2,f +11848,2420,0,2,f +11848,2654,0,1,f +11848,2712,7,1,f +11848,2717,4,1,f +11848,2743,0,2,f +11848,2780,0,7,f +11848,2952,0,1,f +11848,3022,4,1,f +11848,3069b,14,3,f +11848,32002,8,1,f +11848,32013,7,6,f +11848,32014,7,6,f +11848,32015,8,2,f +11848,32016,7,4,f +11848,32062,0,7,f +11848,3482,14,3,f +11848,3483,0,3,f +11848,3623,4,2,f +11848,3647,7,2,f +11848,3650c,7,1,f +11848,3700,0,3,f +11848,3702,0,2,f +11848,3705,0,2,f +11848,3706,0,3,f +11848,3707,0,1,t +11848,3709,0,1,f +11848,3713,7,5,f +11848,3738,0,1,f +11848,3894,0,2,f +11848,4019,7,1,f +11848,4185,7,1,f +11848,4265b,7,5,f +11848,4477,0,3,f +11848,4519,0,4,f +11848,6536,0,2,f +11848,6558,0,4,f +11848,6587,8,2,f +11848,6632,7,2,f +11848,75c08,14,2,f +11848,75c16,14,2,f +11849,3705,0,6,f +11849,3706,0,6,f +11849,3707,0,6,f +11849,3708,0,6,f +11849,3737,0,6,f +11849,4519,0,6,f +11850,2654,0,1,f +11850,3004,73,2,f +11850,30173b,135,1,f +11850,30174,72,1,f +11850,3022,73,1,f +11850,30374,297,1,f +11850,3626cpr0747,14,1,f +11850,3848,148,4,f +11850,4643626,9999,1,f +11850,4643627,9999,1,f +11850,4643628,9999,1,f +11850,4643629,9999,1,f +11850,4643630,9999,1,f +11850,64567,0,11,f +11850,93058,297,2,f +11850,93058,297,1,t +11850,970c00pr0190,15,1,f +11850,973pr1715c01,15,1,f +11850,98130pr0001,72,1,f +11850,98341pr0002,179,1,f +11850,98354pr0009,15,1,f +11851,3009,0,1,f +11851,30237a,0,2,f +11851,3044b,72,1,f +11851,32064b,320,1,f +11851,3848,72,1,f +11851,59229,72,1,f +11851,59231pr0001,72,1,f +11853,33051,10,1,f +11853,37,72,1,f +11853,37,72,1,t +11853,4341,0,1,f +11854,11203pr0012,191,1,f +11854,15395,4,1,f +11854,15395,322,1,f +11854,15573,15,1,f +11854,18674,15,2,f +11854,22667,27,1,t +11854,22667,27,2,f +11854,23969,26,2,f +11854,24111pr0001,19,1,f +11854,2412b,15,1,f +11854,24131,322,1,t +11854,24131,322,1,f +11854,3004,15,2,f +11854,3005pr0006,73,1,f +11854,3020,26,1,f +11854,3022,322,1,f +11854,3023,26,1,f +11854,3024,70,2,f +11854,3024,70,1,t +11854,30367c,322,1,f +11854,3062b,36,1,f +11854,3069bpr0158,323,1,f +11854,33291,26,1,t +11854,33291,26,3,f +11854,3795,191,1,f +11854,3795,30,1,f +11854,3941,15,1,f +11854,4032a,70,1,f +11854,4345b,15,1,f +11854,4346,47,1,f +11854,4533,41,1,f +11854,54200,15,1,t +11854,54200,15,1,f +11854,59900,52,1,f +11854,6003,27,1,f +11854,6141,4,4,f +11854,6141,4,1,t +11854,6256,191,1,f +11854,63965,15,1,f +11854,87580,26,1,f +11854,92410,30,1,f +11854,93160,15,1,t +11854,93160,15,1,f +11854,98138pr0013,15,1,t +11854,98138pr0013,15,1,f +11854,98138pr0017,29,1,t +11854,98138pr0017,29,1,f +11854,98138pr0018,84,2,f +11854,98138pr0018,84,1,t +11856,2460,71,1,f +11856,2479,0,1,f +11856,2486,14,2,f +11856,2577,0,2,f +11856,3001,1,2,f +11856,3001,14,2,f +11856,3001,4,2,f +11856,3002,4,2,f +11856,3002,15,2,f +11856,3002,14,2,f +11856,3003,1,4,f +11856,3003,15,4,f +11856,3003,14,4,f +11856,3003,4,4,f +11856,3004,15,6,f +11856,3004,4,6,f +11856,3004,1,6,f +11856,3004,14,6,f +11856,3005,4,4,f +11856,3007,4,2,f +11856,3008,4,2,f +11856,3009,15,2,f +11856,3009,4,2,f +11856,3009,14,2,f +11856,3009,1,2,f +11856,3010,15,2,f +11856,3010,4,2,f +11856,3010,14,2,f +11856,3010,1,2,f +11856,3020,14,2,f +11856,3020,1,2,f +11856,3021,14,2,f +11856,3022,14,4,f +11856,3022,1,2,f +11856,30285,15,4,f +11856,3035,4,1,f +11856,3037,4,4,f +11856,3039,4,8,f +11856,3039,47,2,f +11856,30391,0,4,f +11856,3040b,4,2,f +11856,3041,4,2,f +11856,3043,4,4,f +11856,3062b,15,4,f +11856,3298,4,4,f +11856,3403c01,71,1,f +11856,3475b,0,2,f +11856,3622,4,2,f +11856,3660,4,4,f +11856,3665,4,4,f +11856,3679,71,1,f +11856,3680,14,1,f +11856,3710,1,2,f +11856,3795,14,1,f +11856,3823,47,1,f +11856,3942c,15,2,f +11856,3957a,71,2,f +11856,4070,1,2,f +11856,4081b,14,2,f +11856,4130,15,1,f +11856,4130,14,1,f +11856,4131,0,2,f +11856,4132,15,4,f +11856,4132,14,4,f +11856,4133,72,8,f +11856,42022,14,2,f +11856,42023,14,2,f +11856,4589,0,2,f +11856,4865a,14,4,f +11856,4865a,47,2,f +11856,4865a,71,2,f +11856,6215,4,4,f +11856,6238,47,1,f +11856,6249,71,2,f +11857,2341,15,2,f +11857,2412a,7,1,f +11857,2420,15,4,f +11857,2420,0,2,f +11857,2436,15,1,f +11857,2446,15,1,f +11857,2447,41,1,f +11857,2569,0,1,f +11857,3003,0,1,f +11857,3003,15,1,f +11857,3004,0,1,f +11857,3005,15,2,f +11857,3020,0,3,f +11857,3022,7,1,f +11857,3022,0,2,f +11857,3023,7,2,f +11857,3023,0,4,f +11857,3023,15,3,f +11857,3024,36,2,f +11857,3024,15,2,f +11857,3024,46,4,f +11857,3034,15,1,f +11857,3034,0,1,f +11857,3068bp05,15,1,f +11857,3069b,15,2,f +11857,3069bp09,15,1,f +11857,3069bp52,15,1,f +11857,3069bpb001,15,1,f +11857,3070b,0,2,f +11857,3070b,36,2,f +11857,3460,0,2,f +11857,3460,15,2,f +11857,3622,15,4,f +11857,3626apr0001,14,1,f +11857,3665,15,6,f +11857,3710,0,8,f +11857,3710,15,5,f +11857,3795,15,1,f +11857,3795,0,1,f +11857,3829c01,7,1,f +11857,3832,0,1,f +11857,3937,7,1,f +11857,3938,7,1,f +11857,3962b,0,1,f +11857,4070,15,4,f +11857,4079,7,1,f +11857,4085c,7,2,f +11857,4085c,0,2,f +11857,4213,0,1,f +11857,4315,15,1,f +11857,4349,0,1,f +11857,4474,41,1,f +11857,4589,15,2,f +11857,4599a,4,1,f +11857,4599a,0,1,f +11857,4600,0,3,f +11857,4625,0,1,f +11857,4740,8,1,f +11857,4760pb01,15,1,f +11857,4771,15,1,f +11857,4773,36,2,t +11857,4773,33,2,f +11857,4773,46,2,t +11857,4774c01,0,1,f +11857,4861,0,1,f +11857,4864a,41,1,f +11857,4865a,15,5,f +11857,6014a,15,6,f +11857,6015,0,6,f +11857,6141,46,2,f +11857,6141,33,2,f +11857,970c00,0,1,f +11857,973pb0079c01,0,1,f +11858,2456,1,3,f +11858,2456,15,3,f +11858,3001,25,2,f +11858,3001,2,8,f +11858,3001,15,18,f +11858,3001,14,12,f +11858,3001,4,12,f +11858,3001,0,6,f +11858,3001,1,18,f +11858,3002,4,6,f +11858,3002,0,6,f +11858,3002,15,12,f +11858,3002,1,12,f +11858,3002,25,2,f +11858,3002,2,2,f +11858,3002,14,6,f +11858,3003,2,18,f +11858,3003,4,22,f +11858,3003,15,40,f +11858,3003,1,40,f +11858,3003,0,14,f +11858,3003,25,6,f +11858,3003,14,22,f +11858,3004,2,18,f +11858,3004,1,40,f +11858,3004,4,26,f +11858,3004,14,26,f +11858,3004,25,6,f +11858,3004,15,40,f +11858,3004,0,18,f +11858,3005,14,20,f +11858,3005,2,16,f +11858,3005,15,26,f +11858,3005,0,16,f +11858,3005,1,26,f +11858,3005,25,6,f +11858,3005,4,20,f +11858,3007,15,3,f +11858,3007,1,3,f +11858,3008,1,6,f +11858,3008,15,6,f +11858,3009,14,6,f +11858,3009,4,6,f +11858,3009,15,6,f +11858,3009,1,6,f +11858,3010,1,8,f +11858,3010,4,6,f +11858,3010,15,12,f +11858,3010,14,6,f +11858,3010,25,2,f +11858,3010,2,2,f +11858,3622,14,6,f +11858,3622,15,6,f +11858,3622,25,2,f +11858,3622,1,6,f +11858,3622,2,2,f +11858,3622,4,6,f +11859,10247,71,1,f +11859,11203,15,1,f +11859,11211,71,9,f +11859,11212,72,2,f +11859,11214,72,4,f +11859,11458,72,4,f +11859,11476,15,1,f +11859,11476,71,2,f +11859,11477,0,4,f +11859,11477,179,2,f +11859,11477,15,2,f +11859,13547,0,4,f +11859,13731,0,6,f +11859,14704,71,9,f +11859,14707,15,3,f +11859,14719,15,4,f +11859,14769,15,2,f +11859,14769,14,3,f +11859,15068,0,11,f +11859,15207,72,4,f +11859,15391,15,2,f +11859,15392,72,2,f +11859,15400,72,1,f +11859,15406,0,1,f +11859,15411,0,4,f +11859,15462,28,4,f +11859,15535,72,2,f +11859,15571,72,1,f +11859,15571,0,2,f +11859,15573,0,4,f +11859,15712,0,8,f +11859,15712,15,1,f +11859,18575,0,2,f +11859,18587,71,2,f +11859,18588,15,2,f +11859,18649,0,2,f +11859,18651,0,1,f +11859,18654,72,2,f +11859,18674,15,1,f +11859,18677,71,6,f +11859,18729,41,2,f +11859,18827pr0002,41,1,f +11859,18948,15,2,f +11859,19020,182,1,f +11859,19023c01,15,2,f +11859,19220,0,1,f +11859,21307,46,1,f +11859,2412b,72,20,f +11859,2431,41,12,f +11859,2431,0,4,f +11859,2431,72,6,f +11859,2432,15,10,f +11859,2437,41,2,f +11859,2444,15,1,f +11859,2445,72,3,f +11859,2450,0,2,f +11859,2460,0,1,f +11859,2540,72,14,f +11859,2569,0,2,f +11859,2654,182,2,f +11859,2730,0,4,f +11859,2780,0,41,f +11859,2877,0,4,f +11859,3001,15,4,f +11859,3002,71,6,f +11859,3003,72,4,f +11859,30031,72,2,f +11859,3004,15,10,f +11859,3004,72,6,f +11859,3007,0,1,f +11859,3008,0,4,f +11859,3009,71,14,f +11859,3010,0,3,f +11859,3020,71,19,f +11859,3020,0,1,f +11859,3021,72,10,f +11859,3022,15,8,f +11859,3022,1,2,f +11859,3023,15,26,f +11859,3023,41,6,f +11859,30236,15,1,f +11859,30261,15,2,f +11859,3028,72,4,f +11859,3030,0,1,f +11859,30304,72,1,f +11859,3031,72,2,f +11859,3031,0,6,f +11859,3033,0,1,f +11859,3034,72,10,f +11859,30340,15,4,f +11859,3035,0,5,f +11859,30350a,0,4,f +11859,3036,72,2,f +11859,30363,0,4,f +11859,30374,14,1,f +11859,30374,71,5,f +11859,30375,15,4,f +11859,30377,0,2,f +11859,30377,72,4,f +11859,30389c,0,1,f +11859,3039,15,2,f +11859,3039pr0005,15,1,f +11859,3039pr0013,15,1,f +11859,3040b,72,5,f +11859,30414,0,4,f +11859,30503,0,2,f +11859,30553,71,2,f +11859,30602,41,1,f +11859,30608,19,1,f +11859,3062b,15,14,f +11859,3068b,71,1,f +11859,3069b,41,1,f +11859,3176,0,4,f +11859,32013,1,2,f +11859,32013,72,2,f +11859,32018,71,2,f +11859,32034,0,5,f +11859,32059,0,2,f +11859,32062,4,2,f +11859,32064a,71,6,f +11859,32123b,14,2,f +11859,32124,0,1,f +11859,32140,0,2,f +11859,32184,4,1,f +11859,32270,0,1,f +11859,32278,15,2,f +11859,32324,71,2,f +11859,32523,15,3,f +11859,32524,15,1,f +11859,32530,0,8,f +11859,32532,71,2,f +11859,32555,0,2,f +11859,3298,71,1,f +11859,3298,0,2,f +11859,3460,0,1,f +11859,3460,72,8,f +11859,3622,0,14,f +11859,3623,71,4,f +11859,3626cpr1505,14,1,f +11859,3626cpr1605,14,1,f +11859,3626cpr1606,14,1,f +11859,3626cpr1630,14,1,f +11859,3626cpr1638,14,1,f +11859,3626cpr1686,1000,1,f +11859,3660,71,2,f +11859,3660,0,5,f +11859,3666,71,4,f +11859,3673,71,2,f +11859,3700,14,6,f +11859,3700,15,2,f +11859,3701,72,2,f +11859,3703,0,10,f +11859,3710,0,10,f +11859,3747a,72,4,f +11859,3747a,15,1,f +11859,3795,71,3,f +11859,3830,71,10,f +11859,3831,71,10,f +11859,3832,0,3,f +11859,3849,179,8,f +11859,3895,0,2,f +11859,3937,4,1,f +11859,40490,15,4,f +11859,4070,14,4,f +11859,4070,72,3,f +11859,4079,15,2,f +11859,4151b,72,1,f +11859,4162,0,12,f +11859,41769,72,2,f +11859,41769,0,1,f +11859,41770,72,2,f +11859,41770,0,1,f +11859,4215b,15,1,f +11859,4217,71,2,f +11859,4218,41,9,f +11859,4219,15,1,f +11859,42446,72,1,f +11859,4274,1,11,f +11859,4282,0,4,f +11859,4286,0,4,f +11859,4287,72,2,f +11859,4287,0,2,f +11859,43093,1,4,f +11859,43713,0,1,f +11859,43898,15,2,f +11859,4445,0,1,f +11859,44567a,14,2,f +11859,44728,72,12,f +11859,4477,0,1,f +11859,4510,72,6,f +11859,4519,71,2,f +11859,4598,15,2,f +11859,4733,0,2,f +11859,4740,41,3,f +11859,47456,72,2,f +11859,47457,71,5,f +11859,47457,72,2,f +11859,47755,0,1,f +11859,47905,72,2,f +11859,4865a,72,2,f +11859,48729b,0,8,f +11859,48989,71,2,f +11859,49668,179,2,f +11859,50745,0,2,f +11859,50955,0,1,f +11859,50956,0,1,f +11859,52031,0,1,f +11859,54200,15,1,f +11859,54200,0,2,f +11859,54383,0,1,f +11859,54384,0,1,f +11859,55981,14,1,f +11859,56823c50,0,1,f +11859,58176,182,2,f +11859,59233pat0001,41,2,f +11859,59900,46,4,f +11859,59900,182,2,f +11859,59900,33,4,f +11859,6020,0,2,f +11859,60471,0,1,f +11859,60474,15,1,f +11859,60474,0,2,f +11859,60477,0,30,f +11859,60478,14,2,f +11859,60479,71,1,f +11859,6060,0,2,f +11859,60897,15,6,f +11859,6091,0,4,f +11859,6106,0,2,f +11859,61184,71,2,f +11859,61252,72,2,f +11859,6134,71,1,f +11859,61409,72,8,f +11859,6141,46,4,f +11859,6141,47,7,f +11859,6141,182,65,f +11859,6141,179,18,f +11859,61482,71,1,f +11859,61485,15,1,f +11859,61678,0,2,f +11859,6205,0,4,f +11859,6222,71,1,f +11859,6232,72,3,f +11859,62462,71,6,f +11859,62462,179,1,f +11859,6249,72,1,f +11859,6266,71,16,f +11859,63864,15,1,f +11859,63864,72,3,f +11859,63965,72,2,f +11859,64453,41,1,f +11859,64567,0,1,f +11859,64567,15,2,f +11859,64799,71,2,f +11859,6536,72,2,f +11859,6541,4,2,f +11859,6558,1,14,f +11859,6587,28,1,f +11859,6628,0,9,f +11859,6632,71,4,f +11859,6636,72,4,f +11859,72454,0,1,f +11859,73590c03a,0,1,f +11859,73983,72,4,f +11859,75937,0,1,f +11859,85861,14,4,f +11859,85941,41,1,f +11859,85984,0,2,f +11859,87079,0,4,f +11859,87580,0,6,f +11859,87751,179,2,f +11859,88072,71,6,f +11859,88283,484,1,f +11859,88292,15,6,f +11859,88930,0,4,f +11859,89523,71,1,f +11859,90194,0,1,f +11859,92099,15,2,f +11859,92280,15,12,f +11859,92747,41,2,f +11859,92947,15,1,f +11859,93273,0,1,f +11859,93274,71,2,f +11859,95199,15,2,f +11859,96874,25,1,t +11859,970c00pr0724,0,1,f +11859,970c00pr0805,272,2,f +11859,970c00pr0821,0,2,f +11859,970c00pr0866,1,1,f +11859,973pr2758c01,15,1,f +11859,973pr2778c01,0,1,f +11859,973pr2909c01,272,2,f +11859,973pr2943c01,15,1,f +11859,973pr3029c01,1,1,f +11859,98138,36,1,f +11859,98138,34,2,f +11859,98138,41,8,f +11859,98385,0,1,f +11859,98834,0,4,f +11859,99206,0,12,f +11859,99207,71,13,f +11859,99780,72,13,f +11859,99781,71,1,f +11860,2450,4,2,f +11860,2496,0,1,t +11860,2496,0,1,f +11860,2655,14,1,t +11860,2655,14,1,f +11860,3001,1,1,f +11860,3021,1,1,f +11860,3022,4,1,f +11860,3039,47,1,f +11860,3039,1,1,f +11862,10201,71,1,f +11862,10247,71,2,f +11862,11090,0,2,f +11862,11211,4,4,f +11862,11213,71,3,f +11862,11299,15,1,f +11862,11477,72,8,f +11862,11477,0,2,f +11862,12825,0,20,f +11862,14301,71,4,f +11862,14682,71,2,f +11862,14716,4,2,f +11862,14716,71,4,f +11862,15423pr0001,0,1,f +11862,15445,72,1,f +11862,15534,72,1,f +11862,15535,72,1,f +11862,16451,9999,1,t +11862,16542,0,1,f +11862,16542,0,1,t +11862,2357,70,4,f +11862,2362b,40,2,f +11862,2412b,0,20,f +11862,2412b,15,2,f +11862,2419,28,4,f +11862,2420,15,4,f +11862,2420,70,2,f +11862,2431,0,1,f +11862,2431pr0199,4,1,f +11862,2432,0,1,f +11862,2450,19,4,f +11862,2456,71,1,f +11862,2456,70,1,f +11862,2479,0,2,f +11862,2540,15,4,f +11862,2653,0,2,f +11862,2654,72,1,f +11862,2654,4,2,f +11862,2780,0,2,t +11862,2780,0,8,f +11862,2817,0,5,f +11862,30000,72,1,f +11862,3001,19,3,f +11862,3001,72,2,f +11862,3003,72,1,f +11862,3004,19,2,f +11862,3004,71,1,f +11862,3004,0,1,f +11862,3004,70,1,f +11862,30044,70,1,f +11862,3005,72,4,f +11862,30056,70,2,f +11862,3010,19,2,f +11862,30136,70,2,f +11862,3020,72,2,f +11862,3020,4,5,f +11862,3020,71,2,f +11862,3020,0,2,f +11862,3021,72,1,f +11862,3021,4,4,f +11862,3021,70,4,f +11862,3022,14,6,f +11862,3022,19,2,f +11862,3022,15,1,f +11862,3022,71,3,f +11862,3023,4,9,f +11862,3023,28,5,f +11862,3023,71,2,f +11862,3023,0,7,f +11862,3023,70,2,f +11862,30237b,71,1,f +11862,3024,0,4,f +11862,3024,33,1,t +11862,3024,33,2,f +11862,3024,0,1,t +11862,30259,71,2,f +11862,3030,19,2,f +11862,3031,4,1,f +11862,3032,4,2,f +11862,3032,0,2,f +11862,30350b,70,4,f +11862,30367b,4,6,f +11862,30367b,0,1,f +11862,30374,70,1,f +11862,30387,71,4,f +11862,30414,0,4,f +11862,30526,72,4,f +11862,30552,72,1,f +11862,30553,71,2,f +11862,30554a,71,5,f +11862,30565,72,2,f +11862,30602,72,2,f +11862,3062b,0,1,f +11862,3062b,72,4,f +11862,30663,0,4,f +11862,3068b,4,1,f +11862,3068b,28,1,f +11862,3068b,0,1,f +11862,3069b,4,4,f +11862,3069b,72,4,f +11862,3069b,33,4,f +11862,3069bpr0101,71,2,f +11862,32000,72,5,f +11862,32028,71,2,f +11862,32028,15,2,f +11862,32062,0,2,f +11862,32072,0,2,f +11862,32073,71,2,f +11862,32123b,14,1,f +11862,3245c,4,1,f +11862,32523,72,4,f +11862,3298,4,4,f +11862,3298,70,4,f +11862,33051,4,1,f +11862,33051,10,1,f +11862,33172,25,4,f +11862,33183,10,4,f +11862,33183,10,1,t +11862,3460,15,2,f +11862,3460,70,3,f +11862,3622,4,2,f +11862,3623,72,1,f +11862,3623,4,3,f +11862,3626cpr0920,14,1,f +11862,3626cpr1333,14,1,f +11862,3626cpr1340,179,1,f +11862,3626cpr1355,14,1,f +11862,3626cpr1396,14,1,f +11862,3659,19,1,f +11862,3660,0,2,f +11862,3660,4,4,f +11862,3665,4,4,f +11862,3666,70,6,f +11862,3666,0,4,f +11862,3666,4,1,f +11862,3666,15,2,f +11862,3666,72,10,f +11862,3701,4,2,f +11862,3705,0,1,f +11862,3706,0,1,f +11862,3709,0,1,f +11862,3709,72,6,f +11862,3710,14,3,f +11862,3710,70,5,f +11862,3710,15,2,f +11862,3710,71,2,f +11862,3738,71,1,f +11862,3747b,70,2,f +11862,3747b,72,1,f +11862,3794b,70,11,f +11862,3795,4,3,f +11862,3795,72,2,f +11862,3829c01,1,1,f +11862,3832,72,2,f +11862,3834,15,3,f +11862,3835,0,1,f +11862,3836,70,1,f +11862,3837,0,1,f +11862,3838,14,2,f +11862,3839b,0,2,f +11862,3941,14,4,f +11862,3958,0,3,f +11862,3958,15,1,f +11862,3962b,0,2,f +11862,4032a,4,1,f +11862,4032a,15,2,f +11862,4032a,70,1,f +11862,4032a,14,1,f +11862,4079,1,1,f +11862,4081b,4,4,f +11862,40902,0,2,f +11862,41334,0,1,f +11862,41532,0,2,f +11862,41539,72,2,f +11862,41769,4,2,f +11862,41770,4,2,f +11862,4208,0,1,f +11862,4209,4,1,f +11862,4274,1,1,t +11862,4274,1,2,f +11862,4286,4,4,f +11862,4287,70,2,f +11862,4349,72,1,f +11862,43723,70,8,f +11862,43857,0,4,f +11862,43888,70,4,f +11862,43898,72,2,f +11862,44567a,72,2,f +11862,44661,72,1,f +11862,44728,15,10,f +11862,4488,0,4,f +11862,4510,72,2,f +11862,4522,0,1,f +11862,4533,15,1,f +11862,4697b,71,1,t +11862,4697b,71,2,f +11862,47455,72,4,f +11862,48169,72,4,f +11862,48171,72,4,f +11862,48336,0,5,f +11862,4871,15,4,f +11862,4871,70,1,f +11862,48723,70,1,f +11862,48729b,72,2,t +11862,48729b,72,2,f +11862,50304,28,1,f +11862,50305,28,1,f +11862,50745,15,4,f +11862,50950,4,2,f +11862,52031,4,2,f +11862,53451,179,1,t +11862,53451,179,8,f +11862,54200,36,2,f +11862,54200,33,6,f +11862,54200,36,1,t +11862,54200,14,4,f +11862,54200,46,2,t +11862,54200,33,2,t +11862,54200,14,1,t +11862,54200,0,8,f +11862,54200,46,2,f +11862,54200,0,2,t +11862,57909b,72,4,f +11862,58176,182,2,f +11862,59900,4,4,f +11862,59900,36,1,f +11862,59900,70,1,f +11862,6014b,71,4,f +11862,60169,72,1,f +11862,60470a,71,6,f +11862,60471,0,1,f +11862,60474,14,1,f +11862,60475a,15,2,f +11862,60476,15,2,f +11862,60476,4,2,f +11862,60477,308,4,f +11862,60478,0,4,f +11862,60583a,71,2,f +11862,60594,70,1,f +11862,60608,15,2,f +11862,60800b,2,2,f +11862,60897,14,1,f +11862,6091,4,4,f +11862,61184,71,6,f +11862,6126b,41,4,f +11862,61409,0,9,f +11862,6141,36,3,t +11862,6141,36,6,f +11862,6141,46,1,t +11862,6141,72,8,f +11862,6141,46,2,f +11862,6141,70,1,t +11862,6141,34,2,f +11862,6141,14,15,f +11862,6141,179,8,f +11862,6141,34,1,t +11862,6141,179,4,t +11862,6141,4,6,f +11862,6141,14,3,t +11862,6141,70,5,f +11862,6141,4,1,t +11862,61485,0,1,f +11862,61506,70,1,f +11862,6154,4,1,f +11862,6155,15,1,f +11862,62696,0,1,f +11862,63868,72,4,f +11862,63868,4,4,f +11862,64453,40,1,f +11862,64644,71,1,f +11862,64644,0,2,f +11862,64799,71,1,f +11862,64951,70,1,f +11862,6541,72,2,f +11862,6541,4,6,f +11862,6558,1,4,f +11862,6636,28,1,f +11862,6636,70,8,f +11862,6636,15,3,f +11862,73983,0,4,f +11862,85984,19,4,f +11862,85984,4,8,f +11862,87079,0,3,f +11862,87083,72,1,f +11862,87087,71,8,f +11862,87087,4,4,f +11862,87609,15,1,f +11862,87617,14,4,f +11862,87621pr03,92,1,f +11862,87697,0,4,f +11862,87991,0,1,f +11862,92013,72,4,f +11862,92280,0,1,f +11862,92280,15,2,f +11862,92338,72,4,f +11862,92410,4,1,f +11862,92692,0,1,f +11862,92947,71,3,f +11862,92950,70,1,f +11862,93273,4,2,f +11862,94925,71,2,f +11862,95199,0,1,f +11862,95229,0,4,f +11862,95342pr0001,15,1,f +11862,96874,25,1,t +11862,970c00,379,2,f +11862,970c00,272,1,f +11862,970c00pr0408,0,1,f +11862,970c63pr0609,272,1,f +11862,973pr0140c01,320,1,f +11862,973pr0150c01,320,1,f +11862,973pr2188c01,0,1,f +11862,973pr2554c01,272,1,f +11862,973pr2642c01,212,1,f +11862,98138,36,4,f +11862,98281,4,2,f +11862,98283,28,7,f +11862,99207,4,1,f +11862,99780,72,4,f +11862,99781,71,12,f +11863,2723,73,4,f +11863,2780,0,8,f +11863,32002,8,6,f +11863,32002,8,2,t +11863,32009,137,3,f +11863,32013,0,3,f +11863,32013,137,3,f +11863,32013,73,4,f +11863,32016,73,4,f +11863,32039,137,2,f +11863,32039,0,1,t +11863,32039,73,9,f +11863,32039,0,2,f +11863,32054,0,1,f +11863,32056,73,4,f +11863,32056,137,6,f +11863,32062,15,8,f +11863,32062,0,38,f +11863,32073,0,3,f +11863,32123b,7,33,f +11863,32123b,7,3,t +11863,32140,137,1,f +11863,32175,73,1,f +11863,32184,0,2,f +11863,32249,137,2,f +11863,32249,0,2,f +11863,32250,0,2,f +11863,32250,137,16,f +11863,32269,7,1,f +11863,32291,137,7,f +11863,32291,73,5,f +11863,32310,137,2,f +11863,32316,137,2,f +11863,32348,137,2,f +11863,32449,0,2,f +11863,32449,73,6,f +11863,32475,137,2,f +11863,32523,137,1,f +11863,32526,137,2,f +11863,32551,73,1,f +11863,32556,7,1,f +11863,32578,0,2,f +11863,33299a,73,1,f +11863,3705,0,9,f +11863,3706,0,3,f +11863,3707,0,3,f +11863,3713,7,24,f +11863,3713,7,3,t +11863,3737,0,1,f +11863,3749,7,12,f +11863,4019,7,1,f +11863,41663,73,4,f +11863,41677,73,3,f +11863,41677,137,2,f +11863,41679,137,16,f +11863,41680,0,8,f +11863,41681,137,8,f +11863,41752,8,1,f +11863,4274,7,6,f +11863,4274,7,1,t +11863,4519,0,24,f +11863,6536,73,12,f +11863,6538b,36,8,f +11863,6538b,137,2,f +11863,6558,0,5,f +11863,6575,73,2,f +11863,6628,0,1,f +11863,6632,73,4,f +11863,6632,137,2,f +11863,71509,0,1,f +11863,71509,0,3,t +11863,75c04,0,2,f +11863,75c04,0,1,t +11863,75c11,179,4,f +11863,75c12,179,2,f +11863,75c13,179,2,f +11863,75c19,179,2,f +11863,78c05,0,1,f +11864,2458,4,1,f +11864,2479,1,1,f +11864,3003,4,1,f +11864,3004,4,2,f +11864,3005pe1,14,2,f +11864,3009,14,2,f +11864,3020,1,2,f +11864,3031,1,1,f +11864,3298p17,14,2,f +11864,3741,2,2,f +11864,3742,15,6,f +11864,3742,15,2,t +11864,3747b,4,2,f +11864,3795,4,1,f +11864,3795,1,1,f +11864,3957a,15,1,f +11864,4495a,2,1,f +11865,3001,14,2,f +11865,3002,14,8,f +11865,3003,14,1,f +11865,3033,1,1,f +11865,3334,2,1,f +11865,3666stk01,9999,1,t +11865,3980c02,1,2,f +11865,3997,14,1,f +11865,4006,7,1,f +11865,4328,7,1,f +11865,4332,366,1,f +11865,787c01,1,3,f +11865,787c03,1,1,f +11865,790,1,1,f +11865,fab1b,-1,1,f +11865,fab9c,-1,1,f +11865,fabac1,4,1,f +11865,fabbc1,1,1,f +11865,fabhook,14,1,f +11866,2780,0,2,t +11866,2780,0,1,f +11866,32062,0,1,t +11866,32062,0,2,f +11866,32174,288,4,f +11866,32506,15,2,f +11866,3705,0,2,f +11866,41668,288,3,f +11866,41669,42,4,f +11866,41678,0,1,f +11866,47296,288,1,f +11866,47300,72,4,f +11866,47307,288,1,f +11866,47312,72,1,f +11866,6536,0,1,f +11867,14273pr0001,47,1,f +11867,2335px16,8,4,f +11867,2476a,0,4,f +11867,2540,19,6,f +11867,298c02,7,2,f +11867,3001,19,1,f +11867,3003,6,1,f +11867,3020,8,2,f +11867,3020,15,2,f +11867,3020,19,5,f +11867,3022,0,6,f +11867,3023,335,2,f +11867,3023,7,3,f +11867,3034,8,3,f +11867,3034,15,1,f +11867,30374,7,1,f +11867,30375,335,2,f +11867,30376,335,2,f +11867,30377,7,2,f +11867,30377,335,4,f +11867,30378,335,2,f +11867,30389b,7,1,f +11867,3039,19,8,f +11867,3048c,6,4,f +11867,30554a,7,1,f +11867,3062b,57,1,f +11867,32000,15,6,f +11867,3679,7,1,f +11867,3680,0,1,f +11867,3700,8,4,f +11867,3707,0,1,f +11867,3710,6,4,f +11867,3795,7,2,f +11867,3941,7,2,f +11867,3942c,7,2,f +11867,3960,47,1,f +11867,3960,7,1,f +11867,4032a,6,3,f +11867,4081b,6,1,f +11867,40902,8,1,f +11867,4095,0,1,f +11867,41769,484,6,f +11867,41770,484,6,f +11867,4274,1,14,f +11867,4274,1,1,t +11867,4349,0,3,f +11867,43710,8,2,f +11867,43711,8,2,f +11867,43712,6,4,f +11867,43898,19,1,f +11867,44358,8,2,f +11867,44359,484,4,f +11867,44375a,8,2,f +11867,44375px1,7,1,f +11867,45301px1,6,2,f +11867,4589,19,1,f +11867,4740,57,1,f +11867,6104,484,4,f +11867,6141,57,6,f +11867,6636,8,2,f +11867,970c00pb022,8,2,f +11867,973px191c01,8,2,f +11867,x270,8,2,f +11868,3700,1,24,f +11868,3700,4,24,f +11868,3701,4,16,f +11868,3701,1,24,f +11869,11269,41,1,f +11869,11270,42,1,f +11869,11271,148,1,f +11869,11272,148,1,f +11869,11275,14,1,f +11869,30552,72,2,f +11869,30553,72,2,f +11869,32034,0,1,f +11869,32062,4,2,f +11869,3737,0,1,f +11869,3749,19,1,f +11869,43093,1,1,f +11869,53451,179,4,f +11869,53451,179,1,t +11869,62462,0,1,f +11869,64727,25,1,f +11869,64727,14,2,f +11869,87082,0,1,f +11869,90608,0,2,f +11869,90611,0,2,f +11869,90617,72,4,f +11869,90626,0,1,f +11869,90640,143,1,f +11869,90640,148,2,f +11869,90641,14,3,f +11869,90661,148,2,f +11869,92217,148,2,f +11869,93575,14,2,f +11869,98313,14,4,f +11869,98570pat01,15,1,f +11869,98571,148,1,f +11870,4341,0,1,f +11870,fab11f,9999,1,f +11870,x234,14,1,f +11871,2780,0,6,f +11871,32062,4,3,f +11871,3673,71,2,f +11871,4519,71,1,f +11871,47306,0,1,f +11871,47312,72,1,f +11871,47313,57,1,f +11871,50898,0,4,f +11871,50923,72,2,f +11871,53562pat0002,320,2,f +11871,53566,320,4,f +11871,53574,0,4,f +11871,55615,71,1,f +11871,60176,320,7,f +11871,60914pat0001,320,1,f +11871,60918,0,1,f +11871,60920pat0001,0,2,f +11871,60926,135,2,f +11871,60929,41,4,f +11871,60933,135,1,f +11871,60934,57,2,f +11872,10201,0,4,f +11872,11055,15,1,f +11872,11211,15,5,f +11872,11403pr0008c01,85,1,f +11872,11408pr0007c01,78,1,f +11872,11816pr0003,78,1,f +11872,14014pr0002,78,1,f +11872,14769,4,6,f +11872,15068,322,2,f +11872,15535,19,1,f +11872,15573,14,6,f +11872,15573,0,1,f +11872,18980,0,6,f +11872,18980,30,1,f +11872,23969,322,1,f +11872,2420,0,1,f +11872,2431,42,4,f +11872,2456,71,4,f +11872,2458,15,1,f +11872,2654,47,8,f +11872,2780,0,8,f +11872,3001,29,1,f +11872,3001,71,1,f +11872,3001,0,1,f +11872,3003,14,1,f +11872,3004,14,2,f +11872,3004,71,2,f +11872,3004,29,2,f +11872,3004,15,2,f +11872,3006,15,3,f +11872,3008,71,4,f +11872,3010,15,5,f +11872,3010,71,1,f +11872,3020,27,1,f +11872,3022,19,2,f +11872,3022,15,2,f +11872,3023,4,2,f +11872,3023,322,6,f +11872,3024,0,4,f +11872,3032,71,2,f +11872,3034,5,3,f +11872,3037,15,1,f +11872,30377,71,2,f +11872,3039,15,1,f +11872,3040b,0,2,f +11872,3040b,15,4,f +11872,30565,322,4,f +11872,3062b,15,1,f +11872,3062b,29,2,f +11872,3063b,0,2,f +11872,3068b,15,1,f +11872,3068b,322,3,f +11872,3069b,5,2,f +11872,3069b,322,3,f +11872,3069b,41,3,f +11872,3069bpr0100,2,1,f +11872,3069bpr0175,29,1,f +11872,3070b0167,15,1,f +11872,32062,4,1,f +11872,32064a,15,4,f +11872,32073,14,2,f +11872,32123b,71,2,f +11872,32525,14,2,f +11872,33291,31,1,f +11872,33291,10,10,f +11872,33291,4,9,f +11872,3460,0,2,f +11872,3623,71,2,f +11872,3623,14,4,f +11872,3623,15,2,f +11872,3633,15,4,f +11872,3648b,72,5,f +11872,3666,15,1,f +11872,3679,71,2,f +11872,3680,15,2,f +11872,3700,4,2,f +11872,3700,0,4,f +11872,3701,15,2,f +11872,3710,0,1,f +11872,3710,322,3,f +11872,3710,70,2,f +11872,3713,4,2,f +11872,3749,19,1,f +11872,3821,15,1,f +11872,3941,0,2,f +11872,4032a,322,5,f +11872,4032a,14,1,f +11872,4032a,70,2,f +11872,4085c,0,3,f +11872,41239,322,1,f +11872,43093,1,2,f +11872,4349,72,1,f +11872,43857,4,1,f +11872,43898,80,1,f +11872,4477,0,1,f +11872,4495b,4,2,f +11872,4600,71,2,f +11872,4740,71,2,f +11872,48336,0,1,f +11872,54200,42,4,f +11872,59443,71,2,f +11872,59900,15,15,f +11872,60474,14,1,f +11872,60474,322,1,f +11872,60478,71,2,f +11872,60479,0,3,f +11872,60483,71,1,f +11872,60594,15,1,f +11872,60603,47,1,f +11872,60897,15,2,f +11872,6091,322,3,f +11872,6091,14,3,f +11872,6141,45,14,f +11872,6141,71,2,f +11872,6141,14,2,f +11872,6141,29,4,f +11872,6141,0,10,f +11872,6141,42,24,f +11872,6141,322,4,f +11872,6182,15,2,f +11872,6205,30,2,f +11872,63965,15,3,f +11872,64449,15,2,f +11872,6558,1,1,f +11872,6587,28,2,f +11872,6632,15,4,f +11872,6636,30,2,f +11872,72454,15,2,f +11872,75c08,71,1,f +11872,85080,14,4,f +11872,85080,29,4,f +11872,85984,29,1,f +11872,85984,0,2,f +11872,85984,14,3,f +11872,87079,30,4,f +11872,87079,0,1,f +11872,87083,72,3,f +11872,87991,226,1,f +11872,87994,15,3,f +11872,91405,27,2,f +11872,92256,70,1,f +11872,92456pr0108c01,78,1,f +11872,92819pr0004,272,1,f +11872,92947,15,1,f +11872,92950,15,2,f +11872,93095,322,3,f +11872,93273,14,1,f +11872,93273,322,1,f +11872,93594,179,4,f +11872,98138,45,14,f +11872,98138pr0024a,179,1,f +11873,11214,72,2,f +11873,11477,25,4,f +11873,15339,148,1,f +11873,15379,0,3,t +11873,15379,0,82,f +11873,15391,15,1,f +11873,15392,72,3,f +11873,15392,72,2,t +11873,15403,0,2,f +11873,15406,0,1,f +11873,15406,0,1,t +11873,15407,148,2,f +11873,15407,191,1,f +11873,15411,0,3,f +11873,15462,28,2,f +11873,18575,0,2,f +11873,2412b,72,1,f +11873,2780,0,2,f +11873,2780,0,1,t +11873,2815,0,1,f +11873,3003,71,1,f +11873,30153,52,1,f +11873,30171,148,1,f +11873,3020,25,1,f +11873,3022,191,4,f +11873,3023,36,9,f +11873,3032,0,1,f +11873,3034,72,6,f +11873,30374,36,2,f +11873,3039,72,1,f +11873,30602,36,1,f +11873,32009,0,2,f +11873,32028,71,3,f +11873,32034,4,2,f +11873,32054,4,1,f +11873,32062,4,2,f +11873,32064a,320,2,f +11873,32184,0,2,f +11873,32192,0,2,f +11873,3245b,72,2,f +11873,32524,72,5,f +11873,3298,25,4,f +11873,3623,191,2,f +11873,3626cpr1503,14,1,f +11873,3626cpr1621,14,1,f +11873,3648b,72,8,f +11873,3666,191,7,f +11873,3700,72,3,f +11873,3701,72,3,f +11873,3703,71,2,f +11873,3705,0,3,f +11873,3708,0,2,f +11873,3710,25,2,f +11873,3713,4,1,t +11873,3713,4,4,f +11873,3749,19,1,f +11873,3795,71,2,f +11873,3839b,72,1,f +11873,3894,72,2,f +11873,3937,72,2,f +11873,4032a,19,1,f +11873,4185,72,1,f +11873,4287,72,2,f +11873,44294,71,1,f +11873,44676,41,2,f +11873,4477,0,4,f +11873,4519,71,2,f +11873,4733,72,1,f +11873,4740,36,2,f +11873,47457,297,1,f +11873,47755,191,2,f +11873,48336,71,2,f +11873,48729b,72,1,t +11873,48729b,72,2,f +11873,48933,191,4,f +11873,52501,72,2,f +11873,55981,71,1,f +11873,60208,191,1,f +11873,60219,0,2,f +11873,60478,72,2,f +11873,6134,4,2,f +11873,61409,72,2,f +11873,6141,36,1,t +11873,6141,182,2,t +11873,6141,297,1,t +11873,6141,182,2,f +11873,6141,297,6,f +11873,6141,36,2,f +11873,62462,179,2,f +11873,64713,179,2,f +11873,6558,1,7,f +11873,6585,0,1,f +11873,6587,28,2,f +11873,6589,19,3,f +11873,6589,19,1,t +11873,87082,0,3,f +11873,87083,72,2,f +11873,87580,72,4,f +11873,87606,36,1,f +11873,89522,179,3,f +11873,89522,179,1,t +11873,90258,72,2,f +11873,92280,0,2,f +11873,92947,19,1,f +11873,93606,72,1,f +11873,94925,71,5,f +11873,970c00pr0805,272,1,f +11873,970c00pr0818,148,1,f +11873,973pr2909c01,272,1,f +11873,973pr2932c01,28,1,f +11873,98138,46,1,f +11873,98138,46,1,t +11873,98313,148,2,f +11873,99009,71,1,f +11873,99010,0,1,f +11873,99930,308,1,f +11875,45481,46,2,f +11875,46281,25,4,f +11875,46296,57,2,f +11875,clikits004,14,4,f +11875,clikits005,46,4,f +11875,clikits010,45,1,f +11875,clikits011,57,1,f +11875,clikits012,47,2,f +11875,clikits021,57,1,f +11875,clikits028,45,4,f +11875,clikits034,46,1,f +11875,clikits034,100,1,f +11875,clikits035,100,1,f +11875,clikits035,46,1,f +11875,clikits172,89,1,f +11877,2335,14,4,f +11877,2450,72,4,f +11877,2540,0,4,f +11877,30602,72,1,f +11877,30602,40,1,f +11877,3062b,72,2,f +11877,32000,72,3,f +11877,3794a,0,1,f +11877,3957a,71,2,f +11877,4081b,14,2,f +11877,41769,14,1,f +11877,41770,14,1,f +11877,4274,71,4,f +11877,4274,71,1,t +11877,44567a,0,2,f +11877,44570,72,2,f +11877,4740,40,1,f +11877,6141,15,1,t +11877,6141,15,1,f +11877,6636,14,2,f +11878,12825,0,2,f +11878,2339,70,3,f +11878,2357,70,2,f +11878,2417,10,2,f +11878,2417,288,2,f +11878,2423,2,2,f +11878,2431,70,5,f +11878,2432,70,1,f +11878,2449,70,1,f +11878,2524,70,1,f +11878,2540,2,1,f +11878,2780,0,1,t +11878,2780,0,2,f +11878,2817,0,1,f +11878,3002,70,1,f +11878,30099,308,2,f +11878,30136,308,2,f +11878,30176,2,1,f +11878,30187e,70,1,f +11878,3021,70,3,f +11878,3021,72,1,f +11878,3023,28,4,f +11878,3023,70,9,f +11878,3024,28,3,f +11878,30259,70,2,f +11878,3031,70,1,f +11878,3032,70,1,f +11878,3033,288,1,f +11878,30369,15,1,f +11878,30377,0,2,f +11878,30377,0,1,t +11878,3040b,308,6,f +11878,3062b,72,5,f +11878,3069b,70,3,f +11878,32062,4,4,f +11878,32530,72,1,f +11878,3622,2,4,f +11878,3623,70,4,f +11878,3626b,0,1,f +11878,3660,70,4,f +11878,3665,70,2,f +11878,3666,288,1,f +11878,3673,71,1,t +11878,3673,71,2,f +11878,3678b,70,2,f +11878,3679,71,1,f +11878,3680,0,1,f +11878,3700,70,3,f +11878,3794b,71,1,f +11878,3795,70,1,f +11878,3839b,72,1,f +11878,3849,0,2,f +11878,3958,28,1,f +11878,4032a,72,1,f +11878,4070,70,6,f +11878,41677,0,1,f +11878,41770,28,1,f +11878,41879a,0,1,f +11878,41879a,19,1,f +11878,42022,70,2,f +11878,4286,70,3,f +11878,4349,0,1,f +11878,4460b,308,2,f +11878,4497,308,1,f +11878,4499,70,1,f +11878,4599b,0,2,f +11878,4600,0,1,f +11878,4623,72,1,f +11878,47456,70,1,f +11878,47847,70,1,f +11878,58247,0,1,f +11878,59443,70,6,f +11878,59900,70,1,f +11878,6020,0,1,f +11878,60479,308,1,f +11878,60481,70,1,f +11878,61184,71,1,f +11878,6141,71,1,t +11878,6141,27,2,f +11878,6141,71,3,f +11878,6141,27,1,t +11878,64805pr0004,0,1,f +11878,6636,28,1,f +11878,73983,2,2,f +11878,88289,308,1,f +11878,92750pr0001,19,1,f +11878,970x026,15,1,f +11878,973c45,0,1,f +11878,973c55,19,1,f +11878,973pr1501c01,15,1,f +11878,99774,72,2,f +11882,30374,0,1,f +11882,3794b,70,1,f +11882,4032a,70,1,f +11882,48336,0,1,f +11882,53451,0,1,t +11882,53451,0,4,f +11882,53989,70,4,f +11882,60470a,71,1,f +11883,3651,7,50,f +11884,15,1,3,f +11884,15,4,1,f +11884,15,0,3,f +11884,17,1,2,f +11884,17,4,2,f +11884,17,0,2,f +11884,17,15,1,f +11884,21,47,2,f +11884,27c01,15,2,f +11884,3001a,14,2,f +11884,3001a,4,8,f +11884,3002a,4,2,f +11884,3002a,14,3,f +11884,3002a,0,1,f +11884,3002a,15,2,f +11884,3003,0,6,f +11884,3003,4,1,f +11884,3003,14,7,f +11884,3004,15,17,f +11884,3004,0,1,f +11884,3004,1,24,f +11884,3004,4,18,f +11884,3004,14,4,f +11884,3005,4,13,f +11884,3005,0,1,f +11884,3005,14,24,f +11884,3005,15,17,f +11884,3006,14,2,f +11884,3008,15,4,f +11884,3008,0,5,f +11884,3008,14,10,f +11884,3008,4,6,f +11884,3009,14,2,f +11884,3009,0,5,f +11884,3009,1,2,f +11884,3009,4,2,f +11884,3009,15,16,f +11884,3010,47,5,f +11884,3010,0,5,f +11884,3010,1,9,f +11884,3010,14,3,f +11884,3010,15,7,f +11884,3010,4,25,f +11884,3010pb035e,4,2,f +11884,3020,4,7,f +11884,3020,15,1,f +11884,3021,4,1,f +11884,3021,0,3,f +11884,3021,15,4,f +11884,3022,4,1,f +11884,3022,47,1,f +11884,3022,15,2,f +11884,3022,0,4,f +11884,3023,0,4,f +11884,3023,1,4,f +11884,3023,15,9,f +11884,3023,4,11,f +11884,3023,47,1,f +11884,3024,4,3,f +11884,3024,0,2,f +11884,3024,1,1,f +11884,3024,15,2,f +11884,3027,7,1,f +11884,3030,4,3,f +11884,3031,4,1,f +11884,3031,1,1,f +11884,3032,0,1,f +11884,3032,4,1,f +11884,3032,1,1,f +11884,3032,15,1,f +11884,3033,4,1,f +11884,3034,7,1,f +11884,3034,4,1,f +11884,3035,15,2,f +11884,3035,1,2,f +11884,3035,4,1,f +11884,3036,1,1,f +11884,3037,47,2,f +11884,3040a,4,2,f +11884,3058b,4,1,f +11884,3062a,47,1,f +11884,3062a,14,10,f +11884,3062a,1,6,f +11884,3062a,0,1,f +11884,3063b,15,2,f +11884,3063b,4,6,f +11884,3081cc01,4,3,f +11884,3081cc01,15,4,f +11884,3137c01,15,2,f +11884,3137c01,0,4,f +11884,3137c02,0,3,f +11884,3139,0,12,f +11884,3149c01,4,1,f +11884,3176,4,1,f +11884,3190,1,1,f +11884,3191,1,1,f +11884,31cc01,4,5,f +11884,3297,4,9,f +11884,3297,1,7,f +11884,3298,4,1,f +11884,3298,1,7,f +11884,3299,1,3,f +11884,3299,4,4,f +11884,3300,1,2,f +11884,3300,4,8,f +11884,3324c01,4,1,f +11884,3404ac01,4,1,f +11884,3464,4,1,f +11884,3471,2,1,f +11884,3491,4,1,f +11884,3492c01,14,1,f +11884,3497,2,1,f +11884,3579,15,2,f +11884,3579,14,1,f +11884,3579,4,1,f +11884,3624,0,2,f +11884,3624,15,2,f +11884,3624,1,2,f +11884,3625,0,1,f +11884,3626a,14,7,f +11884,364cdb01,89,1,f +11884,453cc01,4,2,f +11884,56823,0,2,f +11884,586c01,4,1,f +11884,649pb08a,15,1,f +11884,649pb10,15,1,f +11884,649pb11,15,1,f +11884,7930,4,3,f +11884,7930,15,1,f +11884,7b,0,6,f +11884,8,7,1,f +11884,bb31,2,2,f +11885,2347,14,1,f +11885,3314,0,1,f +11885,3317,14,1,f +11885,784,14,1,f +11887,2412b,3,5,f +11887,2432,0,4,f +11887,2444,7,2,f +11887,2447,42,1,t +11887,2447,42,1,f +11887,2456,14,1,f +11887,2458,7,2,f +11887,2540,14,2,f +11887,2780,0,2,f +11887,2951,0,1,f +11887,3001,14,1,f +11887,3002,0,2,f +11887,3003,14,2,f +11887,3007,7,1,f +11887,3008,7,2,f +11887,3009,14,2,f +11887,30104,6,1,f +11887,3020,14,1,f +11887,3023,7,4,f +11887,3023,4,1,f +11887,30293,6,1,f +11887,30294,6,1,f +11887,30295,8,1,f +11887,30298,6,1,f +11887,30299,8,1,f +11887,30305c01,6,1,f +11887,30324,0,4,f +11887,30325,6,1,f +11887,30385,42,1,f +11887,3039,8,1,f +11887,3039px15,3,1,f +11887,3040b,0,4,f +11887,3069bp03,7,1,f +11887,3298,7,2,f +11887,3626bpx90,14,1,f +11887,3678a,0,2,f +11887,3684,3,1,f +11887,3700,7,2,f +11887,3937,0,2,f +11887,3938,7,2,f +11887,4006,0,1,f +11887,4085c,7,2,f +11887,4095,3,1,f +11887,4124820,9999,1,t +11887,4328,7,1,f +11887,4460a,7,2,f +11887,4589,42,2,f +11887,4623,4,1,f +11887,4735,7,2,f +11887,4740,8,2,f +11887,6140,14,1,f +11887,6141,42,2,f +11887,6141,57,1,t +11887,6141,42,1,t +11887,6141,57,1,f +11887,76385,8,2,f +11887,970x026,8,1,f +11887,973px143c01,0,1,f +11890,3002a,47,25,f +11890,3002a,15,25,f +11890,3002a,0,25,f +11890,3002a,4,25,f +11890,3002a,1,25,f +11890,3002a,14,25,f +11892,15207,15,2,f +11892,15573,71,2,f +11892,2431,0,8,f +11892,2445,0,4,f +11892,3010,15,6,f +11892,3020,15,2,f +11892,3021,15,1,f +11892,3023,47,6,f +11892,3023,15,6,f +11892,3034,15,4,f +11892,3036,15,2,f +11892,30414,15,2,f +11892,3069b,0,2,f +11892,3069b,28,4,f +11892,3069b,15,10,f +11892,3070b,15,3,f +11892,3070b,15,1,t +11892,3460,15,4,f +11892,3623,15,13,f +11892,3710,15,14,f +11892,3832,0,4,f +11892,4162,0,1,f +11892,4162,72,2,f +11892,4162pr0036b,0,1,f +11892,54200,47,12,f +11892,54200,47,1,t +11892,6111,15,2,f +11892,6231,15,2,f +11892,6636,72,2,f +11892,6636,15,6,f +11892,6636,326,3,f +11892,85861,15,85,f +11892,85861,15,2,t +11892,85863,15,1,f +11892,85984,15,3,f +11892,87079,326,4,f +11892,87994,15,46,f +11892,87994,15,1,t +11892,91501,15,4,f +11892,96874,25,1,t +11893,30374,33,1,f +11893,3749,19,1,f +11893,64727,27,1,f +11893,90609,0,2,f +11893,90611,0,2,f +11893,90617,0,4,f +11893,90625,0,1,f +11893,90639,1,2,f +11893,90639pr0002,15,1,f +11893,90641,1,2,f +11893,90650,1,1,f +11893,90652,15,1,f +11893,90661,1,2,f +11893,92199,27,1,f +11893,92201,1,1,f +11893,92206,148,1,f +11893,92207,179,1,f +11893,92208,1,1,f +11893,92211,179,1,f +11893,93277,27,1,f +11893,93575,1,2,f +11894,2780,0,1,f +11894,32002,72,1,t +11894,32002,72,2,f +11894,32062,0,4,f +11894,32173,4,2,f +11894,32174,4,4,f +11894,3673,71,2,f +11894,41669,33,2,f +11894,41678,0,1,f +11894,41752,72,1,f +11894,43093,1,4,f +11894,44809,71,1,f +11894,4519,71,2,f +11894,47296,86,1,f +11894,47299,86,2,f +11894,47328,86,2,f +11894,47330,86,1,f +11894,50858,86,4,f +11894,50898,4,2,f +11894,50899,179,1,f +11894,50899pr0002,179,1,f +11894,50900,0,1,f +11894,50901,72,1,f +11894,50903,14,1,f +11894,50904,71,1,f +11894,50909,86,1,f +11894,50910,179,2,f +11894,rb00167,14,1,f +11894,rb00167,14,1,t +11895,2412a,4,5,f +11895,2431p12,15,1,f +11895,2432,4,1,f +11895,2432,14,1,f +11895,2432,0,1,f +11895,2433,0,1,f +11895,2436,15,1,f +11895,2437,41,1,f +11895,2449,0,2,f +11895,2452,15,2,f +11895,2452,0,1,f +11895,2540,15,2,f +11895,2540,7,3,f +11895,2555,4,7,f +11895,2555,0,2,f +11895,2569,4,1,f +11895,2584,4,1,f +11895,2585,7,1,f +11895,2610,14,3,f +11895,2625,15,1,f +11895,2625,0,1,f +11895,2626,0,2,f +11895,2654,7,5,f +11895,2983,7,1,f +11895,2986,4,1,f +11895,298c02,4,3,f +11895,298c02,4,1,t +11895,298c03,0,1,f +11895,298c03,0,1,t +11895,3002,15,1,f +11895,3003,0,1,f +11895,3004,0,3,f +11895,3004pc0,15,1,f +11895,3005,15,5,f +11895,3008,15,3,f +11895,3008,0,8,f +11895,3009,15,1,f +11895,3010,15,6,f +11895,3010,7,1,f +11895,3020,1,1,f +11895,3021,0,1,f +11895,3022,0,1,f +11895,3022,1,1,f +11895,3023,0,3,f +11895,3023,7,3,f +11895,3024,15,4,f +11895,3024,0,1,f +11895,3024,46,3,f +11895,3028,0,1,f +11895,3031,15,1,f +11895,3035,0,1,f +11895,3038,0,2,f +11895,3039,1,1,f +11895,3039pr0005,15,1,f +11895,3040b,1,2,f +11895,3040b,15,3,f +11895,3040p32,15,1,f +11895,3066,41,4,f +11895,3069bp68,15,1,f +11895,3069bp80,15,1,f +11895,3069bpr0016,15,1,f +11895,3070b,34,1,f +11895,3070b,36,1,t +11895,3070b,33,2,f +11895,3070b,33,1,t +11895,3070b,34,1,t +11895,3070b,36,2,f +11895,3456,0,1,f +11895,3460,0,1,f +11895,3622,15,5,f +11895,3622,0,3,f +11895,3623,1,2,f +11895,3623,0,2,f +11895,3623,15,2,f +11895,3624,15,1,f +11895,3626bp7e,14,2,f +11895,3626bpx11,14,1,f +11895,3647,7,1,t +11895,3647,7,1,f +11895,3665,15,2,f +11895,3666,0,2,f +11895,3666,15,8,f +11895,3678a,15,1,f +11895,3684,15,2,f +11895,3700,15,1,f +11895,3710,1,2,f +11895,3710,0,2,f +11895,3710,15,4,f +11895,3713,7,1,f +11895,3713,7,1,t +11895,3738,0,1,f +11895,3743,7,2,f +11895,3794a,15,1,f +11895,3795,15,1,f +11895,3829c01,1,1,f +11895,3829c01,7,1,f +11895,3901,0,1,f +11895,3939,41,1,f +11895,3939,15,1,f +11895,4070,0,8,f +11895,4079,14,2,f +11895,4081b,4,1,f +11895,4162,7,4,f +11895,4175,0,2,f +11895,4213,15,1,f +11895,4276b,0,1,f +11895,4276b,4,1,f +11895,4286,15,2,f +11895,4349,0,1,f +11895,4449,0,2,f +11895,4460a,15,2,f +11895,4460a,0,2,f +11895,4485,15,1,f +11895,4519,0,2,f +11895,4589,0,1,f +11895,4625,15,1,f +11895,4755,15,3,f +11895,4757,15,1,f +11895,4758,15,1,f +11895,4760c01,15,1,f +11895,4771,15,1,f +11895,4773,34,3,t +11895,4773,46,3,t +11895,4773,36,3,t +11895,4773,33,2,f +11895,4773,33,1,t +11895,4774cu,15,1,f +11895,4854,0,2,f +11895,4855,0,1,f +11895,4859,1,1,f +11895,4859,0,1,f +11895,4865a,41,3,f +11895,56823c30,0,1,f +11895,57503,334,1,f +11895,57504,334,1,f +11895,57505,334,1,f +11895,57506,334,1,f +11895,6141,46,1,f +11895,6141,46,1,t +11895,6483stk01,9999,1,t +11895,970c00,7,1,f +11895,970c00,0,2,f +11895,973p70c01,6,1,f +11895,973px20c01,0,1,f +11895,973px67c01,0,1,f +11896,48379c01,15,1,f +11896,x1894px2,89,1,f +11899,2335pb008,15,1,f +11899,2489,71,1,f +11899,2546,4,1,f +11899,2551,70,1,f +11899,2561,70,1,f +11899,3001,4,1,f +11899,3003,70,1,f +11899,30104,0,1,f +11899,30153,41,1,f +11899,30153,57,2,f +11899,30153,42,1,f +11899,30218,4,1,f +11899,30238,57,1,f +11899,30338,70,1,f +11899,30339,2,1,f +11899,3957a,0,1,f +11899,4032a,15,1,f +11899,4032a,2,1,f +11899,4738a,70,1,f +11899,4739a,70,1,f +11899,4794b,0,2,f +11899,47976,19,1,f +11899,4j010,9999,1,f +11899,4j016,9999,1,f +11899,57503,334,1,f +11899,57504,334,1,f +11899,57505,334,1,f +11899,57506,334,1,f +11901,2780,0,2,f +11901,32062,0,4,f +11901,32174,72,2,f +11901,32270,71,2,f +11901,32475,72,2,f +11901,32476,0,2,f +11901,32533pb199,25,1,f +11901,3749,19,2,f +11901,41413,178,1,f +11901,44135,72,1,f +11901,44810,0,1,f +11901,4519,71,2,f +11901,47296,72,2,f +11901,47328,0,2,f +11901,47330,0,1,f +11901,47331,0,1,f +11901,47332,0,1,f +11901,47334,179,1,f +11901,47339,179,2,f +11901,x1190,42,1,f +11902,11476,71,1,f +11902,11477,15,3,f +11902,12825,0,4,f +11902,15573,15,3,f +11902,2357,70,5,f +11902,2357,71,3,f +11902,2357,72,2,f +11902,2412b,72,4,f +11902,2420,70,2,f +11902,2420,72,2,f +11902,2432,0,1,f +11902,2921,19,2,f +11902,3001,71,1,f +11902,3002,72,2,f +11902,3002,70,4,f +11902,3003,71,3,f +11902,3003,72,1,f +11902,3003,70,2,f +11902,30031,71,2,f +11902,3004,70,32,f +11902,3004,71,14,f +11902,30043,71,2,f +11902,3005,72,6,f +11902,3005,41,6,f +11902,3005,70,7,f +11902,3005,71,6,f +11902,3007,0,2,f +11902,3008,72,3,f +11902,3009,70,2,f +11902,3009,71,5,f +11902,30145,71,2,f +11902,3020,1,5,f +11902,3020,71,2,f +11902,3020,70,2,f +11902,3020,19,2,f +11902,3021,72,1,f +11902,3022,70,3,f +11902,3022,71,7,f +11902,3022,1,2,f +11902,3023,71,11,f +11902,3023,70,15,f +11902,3023,1,6,f +11902,3023,47,6,f +11902,3023,19,11,f +11902,3023,27,6,f +11902,3023,2,4,f +11902,3024,15,1,t +11902,3024,2,1,t +11902,3024,15,4,f +11902,3024,2,4,f +11902,3032,70,2,f +11902,3037,320,4,f +11902,30374,70,1,f +11902,30385,36,1,f +11902,3039,72,3,f +11902,3039,320,3,f +11902,3040b,15,5,f +11902,3040b,72,10,f +11902,3040b,2,5,f +11902,3040b,4,2,f +11902,3062b,308,8,f +11902,3062b,46,2,f +11902,3062b,19,2,f +11902,3068bpr0197,28,1,f +11902,3070b,4,1,t +11902,3070b,4,3,f +11902,3297,320,9,f +11902,3298,4,6,f +11902,3460,71,2,f +11902,3622,70,12,f +11902,3622,71,7,f +11902,3623,70,4,f +11902,3626cpr1086,14,1,f +11902,3659,72,1,f +11902,3660,71,3,f +11902,3665,71,2,f +11902,3666,19,4,f +11902,3710,2,4,f +11902,3710,70,9,f +11902,3710,19,2,f +11902,3794b,25,3,f +11902,3795,19,6,f +11902,3795,2,1,f +11902,3795,71,1,f +11902,3830,0,2,f +11902,3831,0,2,f +11902,3841,72,1,f +11902,3899,14,1,f +11902,3941,72,1,f +11902,4032a,15,4,f +11902,4032a,0,2,f +11902,4070,19,10,f +11902,4081b,19,1,f +11902,4161,320,3,f +11902,4286,4,5,f +11902,44674,1,1,f +11902,44728,19,2,f +11902,4477,70,2,f +11902,4529,0,1,f +11902,4600,0,2,f +11902,46303,71,1,f +11902,4733,0,2,f +11902,4740,0,1,f +11902,47905,70,1,f +11902,48336,1,2,f +11902,49668,191,1,f +11902,51011,0,4,f +11902,53451,15,1,t +11902,53451,15,2,f +11902,54200,25,1,t +11902,54200,182,2,f +11902,54200,182,1,t +11902,54200,143,1,t +11902,54200,15,3,f +11902,54200,143,2,f +11902,54200,15,1,t +11902,54200,25,1,f +11902,59900,72,2,f +11902,59900,2,1,f +11902,60475b,0,3,f +11902,60592,19,3,f +11902,60594,19,2,f +11902,60596,19,1,f +11902,60601,47,3,f +11902,60608,73,4,f +11902,60623,73,1,f +11902,6083,71,2,f +11902,60849,0,1,f +11902,60849,0,1,t +11902,61252,14,1,f +11902,6141,0,22,f +11902,6141,41,1,t +11902,6141,57,6,f +11902,6141,19,1,t +11902,6141,0,1,t +11902,6141,27,10,f +11902,6141,2,1,t +11902,6141,70,22,f +11902,6141,14,1,t +11902,6141,41,7,f +11902,6141,19,6,f +11902,6141,2,5,f +11902,6141,70,1,t +11902,6141,14,8,f +11902,6141,27,1,t +11902,6141,57,1,t +11902,6636,70,2,f +11902,87552,19,2,f +11902,91405,10,1,f +11902,92438,10,2,f +11902,93594,179,4,f +11902,970c00,272,1,f +11902,973c02,4,1,f +11902,98283,72,9,f +11902,99781,0,2,f +11903,2335p01,15,1,f +11903,2433,0,1,f +11903,2446,0,1,f +11903,2547,7,1,f +11903,298c03,1,1,f +11903,3004,7,1,f +11903,30085,7,1,f +11903,30086,14,1,f +11903,30088,14,1,f +11903,30090,47,1,f +11903,30091,7,1,f +11903,30093,2,1,f +11903,3021,7,1,f +11903,3031,7,1,f +11903,3040b,7,2,f +11903,3626bpx27,14,1,f +11903,3794a,7,1,f +11903,3957a,15,1,f +11903,4032a,4,1,f +11903,4032a,7,1,f +11903,4085c,1,1,f +11903,4738a,6,1,f +11903,4739a,6,1,f +11903,59275,4,2,f +11903,6141,36,1,f +11903,6141,42,1,f +11903,6141,7,1,f +11903,6141,34,1,f +11903,970x021,0,1,f +11903,973px51c01,4,1,f +11905,11212,71,1,f +11905,11458,72,1,f +11905,14210,0,1,t +11905,14210,0,1,f +11905,14520,72,2,f +11905,15207,25,2,f +11905,2340,15,2,f +11905,2412b,71,1,f +11905,2412b,0,4,f +11905,2412b,70,2,f +11905,2431,72,2,f +11905,2432,14,2,f +11905,2445,15,1,f +11905,2446,15,1,f +11905,2447,40,1,t +11905,2447,40,3,f +11905,2453b,72,5,f +11905,2456,4,1,f +11905,2465,0,3,f +11905,2479,0,1,f +11905,2569,71,1,t +11905,2569,71,1,f +11905,2654,72,3,f +11905,2654,0,1,f +11905,2780,0,1,f +11905,2780,0,1,t +11905,298c02,14,2,f +11905,298c02,14,1,t +11905,3003,71,1,f +11905,3004,71,4,f +11905,3005,72,6,f +11905,3005,25,4,f +11905,3009,72,2,f +11905,3010,0,1,f +11905,30134,70,1,f +11905,30136,70,2,f +11905,30153,34,1,f +11905,30153,36,1,f +11905,30171,0,2,f +11905,3020,0,4,f +11905,3020,70,1,f +11905,3021,272,2,f +11905,3021,14,1,f +11905,3023,33,7,f +11905,3023,71,2,f +11905,3023,46,1,f +11905,3023,25,2,f +11905,3024,25,2,f +11905,3024,25,1,t +11905,3034,72,1,f +11905,30350a,4,2,f +11905,3036,72,1,f +11905,30374,14,2,f +11905,30385,36,1,f +11905,30385,297,1,f +11905,3039pr0013,15,1,f +11905,3040b,25,2,f +11905,30586,71,2,f +11905,30592,72,1,f +11905,3062b,15,2,f +11905,3062b,4,2,f +11905,3062b,46,1,f +11905,3068bpr0201,15,1,f +11905,3069b,82,1,f +11905,3069b,46,1,f +11905,3069b,72,1,f +11905,32059,72,1,f +11905,32123b,14,2,f +11905,32123b,14,1,t +11905,32187,71,2,f +11905,32529,0,1,f +11905,3622,19,3,f +11905,3622,4,2,f +11905,3623,71,3,f +11905,3626cpr0411,14,1,f +11905,3626cpr0499,14,1,f +11905,3626cpr1091,14,1,f +11905,3626cpr1145,14,1,f +11905,3626cpr1147,14,1,f +11905,3673,71,3,f +11905,3673,71,1,t +11905,3700,4,1,f +11905,3710,25,1,f +11905,3710,15,1,f +11905,3713,4,1,t +11905,3713,4,1,f +11905,3795,70,1,f +11905,3795,71,1,f +11905,3821,25,1,f +11905,3822,25,1,f +11905,3829c01,14,2,f +11905,3832,0,2,f +11905,3839b,71,2,f +11905,3899,4,1,f +11905,3941,70,2,f +11905,3942c,15,1,f +11905,3960,0,1,f +11905,4079,4,3,f +11905,41334,72,2,f +11905,4162,71,1,f +11905,42022,0,4,f +11905,42023,4,2,f +11905,4217,71,2,f +11905,4218,47,1,f +11905,4218,0,5,f +11905,4219,0,1,f +11905,4286,4,2,f +11905,43722,15,1,f +11905,43723,15,1,f +11905,44301a,15,1,f +11905,44301a,0,2,f +11905,44302a,15,1,f +11905,44728,72,1,f +11905,4477,71,1,f +11905,4477,72,2,f +11905,4515,0,2,f +11905,45677,25,1,f +11905,4738a,19,1,f +11905,4739a,70,1,f +11905,4740,15,1,f +11905,47406,0,1,f +11905,47457,14,2,f +11905,48336,4,2,f +11905,4865a,71,1,f +11905,50745,72,4,f +11905,50943,80,1,f +11905,50950,15,1,f +11905,51739,72,1,f +11905,52036,72,1,f +11905,52501,25,2,f +11905,52501,15,1,f +11905,57783,40,1,f +11905,58181,40,2,f +11905,59426,72,1,f +11905,6014b,15,4,f +11905,60219,0,2,f +11905,60475b,84,1,f +11905,60583b,272,2,f +11905,60594,15,2,f +11905,60594,0,4,f +11905,60596,0,1,f +11905,60608,15,8,f +11905,60623,15,1,f +11905,60897,0,2,f +11905,6091,72,2,f +11905,61072,179,2,f +11905,6111,72,1,f +11905,61252,71,1,f +11905,61409,4,2,f +11905,61409,72,2,f +11905,6141,71,1,f +11905,6141,36,2,f +11905,6141,71,1,t +11905,6141,34,2,f +11905,6141,36,1,t +11905,6141,34,1,t +11905,61482,71,1,f +11905,61482,71,1,t +11905,6157,71,2,f +11905,62360,41,1,f +11905,62743,0,2,f +11905,63864,15,1,f +11905,63965,0,4,f +11905,64448,70,1,f +11905,6587,28,2,f +11905,6636,28,2,f +11905,6636,15,1,f +11905,75c18,0,1,f +11905,75c18,0,1,t +11905,87079,72,1,f +11905,87079,71,1,f +11905,87087,0,2,f +11905,87611,15,1,f +11905,87612,41,1,f +11905,87613,272,1,f +11905,87615,272,1,f +11905,87616,15,1,f +11905,87697,0,4,f +11905,88072,72,2,f +11905,88393,71,5,f +11905,88930,25,1,f +11905,90194,72,1,f +11905,91405,72,1,f +11905,91988,72,2,f +11905,92099,72,1,f +11905,92107,72,1,f +11905,92586pr0001,84,1,f +11905,92590,28,1,f +11905,92842,0,1,f +11905,92926,2,1,f +11905,92946,72,2,f +11905,93160,15,1,t +11905,93160,15,1,f +11905,93273,72,1,f +11905,93274,14,1,f +11905,970c00,0,2,f +11905,970c00pr0293,272,1,f +11905,970c00pr0406,272,2,f +11905,973pr1947bc01,272,1,f +11905,973pr2190c01,73,2,f +11905,973pr2196c01,72,2,f +11905,97895,14,1,f +11905,98138,47,1,t +11905,98138,36,1,t +11905,98138,36,2,f +11905,98138,47,2,f +11905,98283,84,18,f +11905,98302,0,2,f +11905,98313,0,4,f +11906,11215,15,1,f +11906,11303,272,1,f +11906,11477,72,2,f +11906,14718,15,2,f +11906,2412b,0,2,f +11906,2431,33,2,f +11906,2432,72,1,f +11906,2495,4,1,f +11906,2496,0,1,f +11906,2877,72,4,f +11906,30153,42,2,f +11906,30153,36,2,f +11906,3020,71,1,f +11906,3023,33,2,f +11906,3023,14,4,f +11906,3023,72,2,f +11906,3023,15,1,f +11906,3024,182,1,t +11906,3024,182,2,f +11906,3032,15,1,f +11906,30374,0,3,f +11906,30414,71,1,f +11906,3069b,297,2,f +11906,3069b,0,3,f +11906,3069b,72,1,f +11906,3069bpr0100,2,2,f +11906,32028,71,1,f +11906,3626cpr0893,14,1,f +11906,3626cpr2140,14,1,f +11906,3660,15,6,f +11906,3666,15,1,f +11906,3710,72,2,f +11906,3795,15,2,f +11906,3829c01,14,1,f +11906,3832,14,1,f +11906,4079,14,1,f +11906,4176,41,1,f +11906,4345b,71,2,f +11906,4346,71,2,f +11906,4477,71,2,f +11906,4488,0,4,f +11906,4533,71,2,f +11906,47457,71,1,f +11906,50745,72,4,f +11906,52031,15,1,f +11906,54200,46,2,f +11906,54200,33,1,t +11906,54200,33,2,f +11906,54200,46,1,t +11906,6014b,71,4,f +11906,6019,0,2,f +11906,60475b,15,4,f +11906,60478,0,2,f +11906,6112,1,2,f +11906,61482,71,1,t +11906,61482,71,1,f +11906,6154,15,1,f +11906,6155,71,1,f +11906,6215,1,2,f +11906,63864,14,2,f +11906,63868,71,4,f +11906,85984,15,1,f +11906,87087,15,2,f +11906,87552,15,2,f +11906,87697,0,4,f +11906,88283,0,1,f +11906,91988,71,1,f +11906,92099,15,1,f +11906,92107,15,1,f +11906,92410,15,2,f +11906,92585,4,1,t +11906,92585,4,1,f +11906,92590,28,1,f +11906,93273,14,1,f +11906,970c00,2,1,f +11906,970c00,272,1,f +11906,973pr3627,212,1,f +11906,973pr3732,15,1,f +11906,98138,33,1,t +11906,98138,36,2,f +11906,98138,36,1,t +11906,98138,33,2,f +11907,3001a,14,2,f +11907,3001a,47,1,f +11907,3002a,14,2,f +11907,3003,47,1,f +11907,3004,14,3,f +11907,3005,14,6,f +11907,3010,1,2,f +11907,3010,47,1,f +11907,3010p30,14,2,f +11907,3010pb035e,1,1,f +11907,3020,14,2,f +11907,3021,4,1,f +11907,3021,14,1,f +11907,3032,4,1,f +11907,3034,4,1,f +11907,3037,47,1,f +11907,3062a,0,1,f +11907,3127,4,1,f +11907,3137c01,0,1,f +11907,3137c02,0,7,f +11907,3139,0,2,f +11907,3149c01,4,1,f +11907,3176,4,1,f +11907,3324c01,4,1,f +11907,586c01,14,1,f +11907,7b,0,14,f +11907,966,1,1,f +11907,966a,1,1,f +11907,967,1,1,f +11907,rb00164,0,1,f +11909,2431,15,1,f +11909,2432,4,1,f +11909,2441,4,1,f +11909,2446,15,1,f +11909,2447,33,1,f +11909,30027a,15,4,f +11909,30028,0,4,f +11909,3003,0,1,f +11909,3039p71,0,1,f +11909,3626bpb0110,14,1,f +11909,3829c01,14,1,f +11909,3839b,7,1,f +11909,4286,0,2,f +11909,970c00,15,1,f +11909,973pb0024c01,15,1,f +11910,3068bpr0142,15,1,f +11910,3068bpr0143,15,1,f +11910,3068bpr0144,15,1,f +11910,3068bpr0145,15,1,f +11910,3068bpr0148,15,1,f +11910,3068bpr0163,15,1,f +11910,3068bpr0181,15,1,f +11910,64776pat0001,297,1,f +11913,11090,0,2,f +11913,11216,308,1,f +11913,11327,70,2,f +11913,11329,70,4,f +11913,11340,70,1,f +11913,11342,70,1,f +11913,11343,70,1,f +11913,11464,70,1,f +11913,15207,71,2,f +11913,2357,72,27,f +11913,2431,72,3,f +11913,2454a,72,3,f +11913,2465,71,3,f +11913,2465,72,1,f +11913,3001,0,4,f +11913,3001,28,9,f +11913,3002,71,10,f +11913,3003,70,4,f +11913,3005,71,15,f +11913,3010,70,2,f +11913,3010,72,10,f +11913,30136,28,27,f +11913,3020,28,5,f +11913,3020,72,1,f +11913,3021,70,2,f +11913,3022,19,2,f +11913,3022,72,7,f +11913,3023,71,13,f +11913,30237b,0,5,f +11913,3028,72,5,f +11913,3030,72,1,f +11913,3031,72,1,f +11913,3032,72,2,f +11913,3035,72,1,f +11913,30363,71,2,f +11913,30374,0,1,f +11913,30381,70,1,f +11913,3039,71,1,f +11913,3040b,71,9,f +11913,3048c,71,8,f +11913,30565,72,2,f +11913,3068b,72,2,f +11913,3069b,72,6,f +11913,32014,72,2,f +11913,32034,4,1,f +11913,32062,4,2,f +11913,3298,72,8,f +11913,33057,484,1,f +11913,3460,71,9,f +11913,3622,71,11,f +11913,3623,72,4,f +11913,3626cpr0895,15,2,f +11913,3626cpr1183,78,1,f +11913,3626cpr1184,78,1,f +11913,3660,71,2,f +11913,3666,72,3,f +11913,3700,71,2,f +11913,3795,72,4,f +11913,3830,70,2,f +11913,3831,70,2,f +11913,3901,19,1,f +11913,3941,70,1,f +11913,4216,71,2,f +11913,4286,72,2,f +11913,4287,72,2,f +11913,4460b,28,4,f +11913,4477,72,3,f +11913,4496,70,1,f +11913,4623,0,1,f +11913,47847,72,5,f +11913,48092,71,3,f +11913,53451,28,8,f +11913,53451,0,1,f +11913,53451,0,1,t +11913,53451,28,1,t +11913,6003,72,4,f +11913,60115,15,1,f +11913,60596,72,2,f +11913,60621,308,1,f +11913,6111,71,3,f +11913,61780,70,1,f +11913,6266,15,2,f +11913,6266,15,1,t +11913,62808,72,2,f +11913,63864,71,2,f +11913,64644,308,2,f +11913,64647,182,2,f +11913,64647,182,1,t +11913,6587,28,2,f +11913,6636,28,7,f +11913,73983,0,2,f +11913,76768,72,10,f +11913,87079,71,2,f +11913,87087,0,2,f +11913,88393,71,4,f +11913,90258,72,6,f +11913,91988,71,1,f +11913,92338,72,1,f +11913,92691,15,1,f +11913,93061,15,1,t +11913,93061,15,2,f +11913,93160,15,1,t +11913,93160,15,1,f +11913,95343,70,1,f +11913,95344,28,1,t +11913,95344,28,1,f +11913,96874,25,1,t +11913,970c00,0,1,f +11913,970c155pr0361,326,1,f +11913,970x308,326,1,f +11913,973c58,70,1,f +11913,973pr2073c01,72,1,f +11913,973pr2310c01,78,1,f +11913,98120pr0001,70,1,f +11913,98138,36,2,f +11913,98138,36,2,t +11913,98560,28,5,f +11915,3035,15,8,f +11916,10113,0,1,f +11916,11090,15,5,f +11916,12885,0,2,f +11916,13608,179,2,f +11916,14226c11,0,1,f +11916,14226c11,0,1,t +11916,14769pr0001,15,1,f +11916,15535,27,1,f +11916,15573,14,2,f +11916,16091,71,1,f +11916,18986,47,1,f +11916,2412b,71,1,f +11916,2412b,19,2,f +11916,24144,0,1,f +11916,2431,14,2,f +11916,2458,72,2,f +11916,24947,1,1,f +11916,24947,4,2,f +11916,24947,14,2,f +11916,25214,4,2,f +11916,26599,71,1,f +11916,27145,14,1,f +11916,27145,14,1,t +11916,28551,2,1,f +11916,29249,85,1,f +11916,3001,378,1,f +11916,3004,71,1,f +11916,3005,378,2,f +11916,30192,72,1,f +11916,3021,72,1,f +11916,3022,14,1,f +11916,3022,71,1,f +11916,3023,47,1,f +11916,3023,0,1,f +11916,30237b,71,1,f +11916,3034,72,1,f +11916,3035,71,1,f +11916,30367c,1,1,f +11916,30367c,14,2,f +11916,30367c,4,2,f +11916,30374,15,3,f +11916,30426,0,1,f +11916,3062b,42,4,f +11916,3068b,19,1,f +11916,3069b,15,2,f +11916,32034,4,1,f +11916,32062,0,3,f +11916,3626cpr9996,71,1,f +11916,3626cpr9997,15,1,f +11916,3709,72,1,f +11916,3710,72,2,f +11916,4032a,15,1,f +11916,4032a,72,1,f +11916,4081b,72,2,f +11916,4274,1,1,t +11916,4274,1,1,f +11916,4595,0,1,f +11916,4733,72,1,f +11916,4740,71,2,f +11916,47905,19,2,f +11916,60897,71,6,f +11916,61252,0,1,f +11916,6126b,182,2,f +11916,6141,0,1,t +11916,6141,179,1,t +11916,6141,36,1,t +11916,6141,34,1,t +11916,6141,36,1,f +11916,6141,34,1,f +11916,6141,179,2,f +11916,6141,0,2,f +11916,6187,14,1,f +11916,6259,15,2,f +11916,63965,15,2,f +11916,64728,4,2,f +11916,85984,19,1,f +11916,87079,14,1,f +11916,87580,27,1,f +11916,92692,0,2,f +11916,970c00,0,1,f +11916,970c00pr1171,85,1,f +11916,973pr3634,85,1,f +11916,973pr3650,0,1,f +11916,98138,27,1,t +11916,98138,27,2,f +11916,98138,1,1,t +11916,98138,1,2,f +11916,99563,71,1,f +11916,99780,72,1,f +11916,99781,0,1,f +11917,2432,0,1,f +11917,2516,7,1,f +11917,2540,7,1,f +11917,30236,1,1,f +11917,3034,8,1,f +11917,30359a,379,2,f +11917,30375,25,1,f +11917,30377,3,2,f +11917,30377,3,1,t +11917,30414,7,2,f +11917,30530,0,1,f +11917,3062b,33,2,f +11917,3070bp60,0,1,f +11917,3070bp60,0,1,t +11917,4150px7,8,1,f +11917,4589,57,2,f +11917,4859,1,1,f +11917,6019,8,3,f +11917,x117px4,3,1,f +11918,3626cpr0893,14,1,f +11918,3962b,0,1,f +11918,3962b,0,1,t +11918,85974,70,1,f +11918,970c00pr0282,191,1,f +11918,973pr1919c01,191,1,f +11920,3004p20,1,1,f +11920,3004p90,1,1,f +11920,3039p23,1,1,f +11920,3039p34,1,1,f +11920,3754pr0001,1,1,f +11920,3829c01,1,1,f +11920,3937,1,1,f +11920,3938,1,1,f +11921,2431,15,1,f +11921,2456,0,1,f +11921,2540,15,4,f +11921,298c02,15,1,f +11921,298c02,15,1,t +11921,3001,4,1,f +11921,3021,15,2,f +11921,3022,0,1,f +11921,3023,4,1,f +11921,30236,72,1,f +11921,3031,4,1,f +11921,3037,0,1,f +11921,30602,4,2,f +11921,3069b,4,1,f +11921,3660,0,1,f +11921,3710,4,1,f +11921,4081b,0,2,f +11921,44674,4,1,f +11921,44728,72,2,f +11921,47457,4,1,f +11921,48336,0,2,f +11921,50950,4,3,f +11921,6014b,15,4,f +11921,6015,0,4,f +11921,6019,15,2,f +11921,6157,0,2,f +11922,3001,15,3,f +11922,3001,4,2,f +11922,3003,4,2,f +11922,3004,14,6,f +11922,3004,15,11,f +11922,3004,4,10,f +11922,3005,14,4,f +11922,3005,4,6,f +11922,3005,15,8,f +11922,3005,47,2,f +11922,3009,4,4,f +11922,3010,4,11,f +11922,3010,15,5,f +11922,3020,1,3,f +11922,3021,1,2,f +11922,3031,1,1,f +11922,3039,47,2,f +11922,3081cc01,14,2,f +11922,3137c01,0,2,f +11922,3297,1,2,f +11922,3298,1,4,f +11922,3299,1,1,f +11922,3300,1,2,f +11922,3622,4,4,f +11922,3622,15,4,f +11922,3641,0,4,f +11922,3741,2,2,f +11922,3742,14,1,t +11922,3742,14,3,f +11922,3742,15,3,f +11922,3742,15,1,t +11922,3853,14,2,f +11922,3854,4,4,f +11922,3861b,14,1,f +11922,3865,2,1,f +11924,3004,4,2,f +11924,3007,4,1,f +11924,3020,4,1,f +11924,3021,4,1,f +11924,3022,4,3,f +11924,3023,320,8,f +11924,3023,4,1,f +11924,3024,4,2,f +11924,3024,320,1,t +11924,3024,320,2,f +11924,3039,4,2,f +11924,3048c,4,1,f +11924,3139,0,4,f +11924,3298,4,1,f +11924,3660,4,1,f +11924,3747b,4,1,f +11924,3794a,4,3,f +11924,4070,4,2,f +11924,4600,0,2,f +11924,4624,71,4,f +11924,54200,4,2,f +11925,3001,4,8,f +11925,3001,1,8,f +11925,3001,14,8,f +11925,3001,15,8,f +11925,3001,0,2,f +11925,3002,15,6,f +11925,3002,0,2,f +11925,3002,14,4,f +11925,3002,4,6,f +11925,3002,1,2,f +11925,3003,4,6,f +11925,3003,0,2,f +11925,3003,1,6,f +11925,3003,14,4,f +11925,3003,15,6,f +11925,3004,14,32,f +11925,3004,4,34,f +11925,3004,0,22,f +11925,3004,15,34,f +11925,3004,47,8,f +11925,3004,1,30,f +11925,3005,4,22,f +11925,3005,0,16,f +11925,3005,15,22,f +11925,3005,1,20,f +11925,3005,47,2,f +11925,3005,14,20,f +11925,3008,1,2,f +11925,3008,4,2,f +11925,3008,15,2,f +11925,3009,15,6,f +11925,3009,14,4,f +11925,3009,1,4,f +11925,3009,4,6,f +11925,3010,47,3,f +11925,3010,1,8,f +11925,3010,4,16,f +11925,3010,14,9,f +11925,3010,15,14,f +11925,3010,0,2,f +11925,3020,1,2,f +11925,3020,4,2,f +11925,3021,4,2,f +11925,3021,1,2,f +11925,3022,4,2,f +11925,3030,1,1,f +11925,3031,4,1,f +11925,3032,1,1,f +11925,3034,4,2,f +11925,3034,1,4,f +11925,3035,4,1,f +11925,3039,14,4,f +11925,3039,47,2,f +11925,3039,4,6,f +11925,3081cc01,14,4,f +11925,3137c01,0,2,f +11925,3149c01,4,1,f +11925,3183c,4,1,f +11925,3184,4,1,f +11925,3297,4,6,f +11925,3298,4,6,f +11925,3299,4,3,f +11925,3300,4,2,f +11925,3307,4,2,f +11925,3403c01,4,1,f +11925,3460,4,2,f +11925,3471,2,1,f +11925,3483,0,4,f +11925,3581,4,6,f +11925,3582,14,4,f +11925,3622,14,10,f +11925,3622,0,5,f +11925,3622,1,11,f +11925,3622,4,12,f +11925,3622,15,12,f +11925,3633,14,4,f +11925,3641,0,4,f +11925,3644,14,2,f +11925,3659,4,2,f +11925,3660,14,4,f +11925,3660,4,6,f +11925,3710,4,4,f +11925,3710,1,4,f +11925,3741,2,4,f +11925,3742,4,1,t +11925,3742,14,1,t +11925,3742,15,3,f +11925,3742,15,1,t +11925,3742,4,3,f +11925,3742,14,3,f +11925,3747b,4,2,f +11925,3823,47,1,f +11925,3832,1,2,f +11925,3853,14,4,f +11925,3854,4,8,f +11925,3856,2,8,f +11925,3857,2,1,f +11925,3861b,14,2,f +11925,4207,14,1,f +11925,7039,4,4,f +11925,7049b,0,2,f +11926,45568,0,6,f +11926,45573,72,6,f +11926,45574,71,8,f +11926,45575,71,16,f +11926,45783,4,1,f +11926,45784,4,2,f +11926,45785,4,1,f +11926,45786,4,2,f +11926,45803,4,2,f +11926,49823,148,1,f +11926,49828,148,1,f +11926,49829,148,1,f +11927,4204,2,1,f +11927,4204,4,1,f +11927,4204,14,1,f +11929,2420,1,2,f +11929,2432,15,1,f +11929,2446pr0010,1,1,f +11929,2540,4,1,f +11929,2780,0,1,t +11929,2780,0,6,f +11929,3003,1,1,f +11929,3020,1,2,f +11929,3020,0,1,f +11929,3023,14,2,f +11929,3023,72,3,f +11929,3031,0,1,f +11929,3039,1,1,f +11929,3068b,1,1,f +11929,32034,1,1,f +11929,32062,4,1,f +11929,32291,4,1,f +11929,32526,4,2,f +11929,3626bpr0675,14,1,f +11929,3702,1,2,f +11929,3705,0,1,f +11929,3708,0,2,f +11929,3710,1,3,f +11929,3710,15,2,f +11929,3710,0,2,f +11929,3713,71,4,f +11929,3713,71,1,t +11929,3749,19,3,f +11929,4150,4,1,f +11929,4274,1,1,f +11929,4274,1,1,t +11929,43337,1,2,f +11929,43337,40,1,f +11929,44674,15,1,f +11929,56145,15,4,f +11929,60212,15,1,f +11929,6141,4,6,f +11929,6141,4,1,t +11929,61481,0,4,f +11929,62462,15,4,f +11929,64451,4,2,f +11929,6558,1,2,f +11929,85984,15,2,f +11929,87083,72,1,f +11929,90258,72,2,f +11929,9094stk01,9999,1,f +11929,9094stk01,9999,1,t +11929,92907,71,1,f +11929,93273,1,2,f +11929,970c00,1,1,f +11929,973pr1941c01,15,1,f +11931,x551,0,1,f +11934,12708pr02,47,2,f +11934,3002,2,5,f +11934,3003,2,15,f +11934,3065,34,16,f +11936,193au,1,1,f +11936,3004,0,1,f +11936,3020,1,2,f +11936,3022,0,1,f +11936,3022,1,1,f +11936,3024,7,2,f +11936,3464,4,3,f +11936,3623,7,1,f +11936,3626apr0001,14,1,f +11936,3633,14,2,f +11936,3641,0,3,f +11936,3660,1,1,f +11936,3794a,14,1,f +11936,3795,14,1,f +11936,8,1,3,f +11936,970c00,0,1,f +11936,973c02,4,1,f +11937,10201,71,1,f +11937,11211,4,1,f +11937,11211,71,3,f +11937,14718,71,1,f +11937,14769,15,1,f +11937,14769,71,2,f +11937,15068,72,2,f +11937,15535,72,1,f +11937,18899pat0001,4,1,f +11937,2412b,71,3,f +11937,2431,4,1,f +11937,2508,0,1,f +11937,298c02,1,1,f +11937,3003,71,3,f +11937,3004,15,1,f +11937,3004,14,3,f +11937,3004,1,1,f +11937,3010,0,1,f +11937,3020,0,3,f +11937,3020,1,2,f +11937,3021,70,2,f +11937,3022,4,1,f +11937,30228,72,1,f +11937,3023,14,2,f +11937,3023,0,8,f +11937,3024,182,2,f +11937,3031,15,1,f +11937,3031,72,1,f +11937,30340,15,1,f +11937,3035,1,3,f +11937,3037,14,1,f +11937,30386,71,2,f +11937,30387,71,1,f +11937,3039,14,1,f +11937,30395,72,1,f +11937,30396,0,1,f +11937,30414,1,3,f +11937,3062b,15,1,f +11937,3062b,4,1,f +11937,3066,40,1,f +11937,3068b,15,3,f +11937,3069b,182,2,f +11937,3069b,1,1,f +11937,3069b,15,7,f +11937,3176,71,2,f +11937,32028,71,4,f +11937,3245b,14,2,f +11937,3626cpr0929,14,1,f +11937,3626cpr0933,14,1,f +11937,3666,14,1,f +11937,3666,15,1,f +11937,3666,72,6,f +11937,3710,71,2,f +11937,3710,0,3,f +11937,3795,72,4,f +11937,3795,14,1,f +11937,3821,14,1,f +11937,3822,14,1,f +11937,3829c01,1,1,f +11937,3833,4,1,f +11937,3836,70,1,f +11937,3837,72,1,f +11937,3899,4,1,f +11937,3958,72,2,f +11937,4032a,1,2,f +11937,4083,14,2,f +11937,41532,0,1,f +11937,4287,71,2,f +11937,44568,71,4,f +11937,44728,71,2,f +11937,4488,71,4,f +11937,4488,0,2,f +11937,4599b,4,1,f +11937,4871,14,2,f +11937,50951,0,2,f +11937,52031,14,1,f +11937,54200,47,2,f +11937,59900,182,2,f +11937,6014b,71,4,f +11937,60474,71,1,f +11937,60475b,14,2,f +11937,60478,72,2,f +11937,60596,71,1,f +11937,60616b,71,1,f +11937,6091,14,2,f +11937,61252,0,2,f +11937,61409,72,4,f +11937,6141,4,4,f +11937,63082,0,1,f +11937,63864,1,2,f +11937,6636,71,2,f +11937,74698,0,1,f +11937,85984,15,2,f +11937,85984,71,2,f +11937,85984,72,2,f +11937,87087,1,2,f +11937,87580,19,2,f +11937,87580,71,5,f +11937,87697,0,4,f +11937,91988,72,2,f +11937,92092,72,4,f +11937,92583,41,1,f +11937,92593,71,1,f +11937,92926,2,1,f +11937,93273,15,2,f +11937,93273,71,1,f +11937,93593,71,2,f +11937,970c00,25,1,f +11937,970c00,308,1,f +11937,973pr2083c01,15,1,f +11937,973pr2913c01,25,1,f +11937,98138,36,5,f +11937,98138,182,4,f +11937,98282,72,4,f +11937,99206,15,6,f +11938,3004,0,1,f +11938,5306bc036,0,1,f +11938,6035,15,1,f +11938,71128,383,1,f +11939,10p06,2,1,f +11939,15,0,3,f +11939,17,1,3,f +11939,21,47,1,f +11939,3001a,0,3,f +11939,3002a,47,2,f +11939,3003,15,1,f +11939,3003,4,46,f +11939,3003,0,1,f +11939,3004,15,19,f +11939,3004,14,4,f +11939,3004,4,10,f +11939,3004p60,15,6,f +11939,3005,15,24,f +11939,3005,0,2,f +11939,3006,4,5,f +11939,3007,14,1,f +11939,3008,14,4,f +11939,3008,15,3,f +11939,3009,15,1,f +11939,3009pt1,15,4,f +11939,3010,14,4,f +11939,3010,4,2,f +11939,3010,15,13,f +11939,3010,0,7,f +11939,3010p20c,4,1,f +11939,3020,4,5,f +11939,3020,7,2,f +11939,3021,4,4,f +11939,3021,0,11,f +11939,3022,0,1,f +11939,3023,4,5,f +11939,3023,7,4,f +11939,3028,4,1,f +11939,3029,4,3,f +11939,3029,0,3,f +11939,3031,15,1,f +11939,3032,0,1,f +11939,3034,15,2,f +11939,3034,1,1,f +11939,3035,15,1,f +11939,3035,14,2,f +11939,3037,14,8,f +11939,3039,4,6,f +11939,3039,0,1,f +11939,3062a,7,16,f +11939,3068b,7,32,f +11939,3068b,15,2,f +11939,3069a,15,2,f +11939,3081cc01,14,4,f +11939,3137c01,0,3,f +11939,3139,0,6,f +11939,3144,79,1,f +11939,3185,14,6,f +11939,3228a,1,4,f +11939,3479,1,2,f +11939,3488,0,2,f +11939,3579,14,1,f +11939,3624,4,3,f +11939,3626a,14,3,f +11939,3660a,14,8,f +11939,3660a,4,8,f +11939,69c01,15,2,f +11939,739p01,15,1,f +11939,7930,15,1,f +11940,122c01,0,2,f +11940,21,47,1,f +11940,3004,15,1,f +11940,3005,15,2,f +11940,3010,15,5,f +11940,3010pb035e,1,1,f +11940,3010px58,15,2,f +11940,3020,1,2,f +11940,3020,15,3,f +11940,3022,15,1,f +11940,3023,1,5,f +11940,3032,1,1,f +11940,3034,0,1,f +11940,3034,1,1,f +11940,3581,15,2,f +11940,3582,15,2,f +11940,3641,0,4,f +11940,3710,15,2,f +11940,3788,1,2,f +11941,2780,0,2,f +11941,32062,0,4,f +11941,32174,72,2,f +11941,32270,71,2,f +11941,32475,72,2,f +11941,32476,288,2,f +11941,32533pb555,21,1,f +11941,3749,19,2,f +11941,44135,72,1,f +11941,44810,288,1,f +11941,4519,71,2,f +11941,47296,72,2,f +11941,47328,288,2,f +11941,47330,288,1,f +11941,47331,288,1,f +11941,47332,288,1,f +11941,47334,179,1,f +11941,47336,179,2,f +11941,x1190,36,1,f +11943,11344,4,1,f +11943,11970,1,1,f +11943,11970,10,1,f +11943,11970,4,1,f +11943,12659,4,1,f +11943,13258,10,1,f +11943,15449,0,1,f +11943,15450,71,1,f +11943,15613,71,1,f +11943,18012,71,1,f +11943,2222,179,1,f +11943,2302,15,2,f +11943,2302,73,2,f +11943,2302,25,2,f +11943,2302pb04,1,1,f +11943,3011,27,1,f +11943,3011,4,1,f +11943,3011,73,1,f +11943,3437,27,1,f +11943,3437,10,1,f +11943,3437,14,2,f +11943,3437,4,1,f +11943,3437,25,1,f +11943,40666,10,1,f +11943,40666,14,1,f +11943,40666,25,1,f +11943,4198pb17,14,1,f +11943,44524,10,1,f +11943,4662,0,1,f +11943,58498,0,1,f +11943,59559,4,1,f +11943,76371,14,1,f +11943,89398,73,1,f +11943,93535,14,1,f +11943,98223,27,2,f +11943,98223pr0001,4,1,f +11943,98233,73,1,f +11944,2540,0,2,f +11944,30132,8,1,f +11944,30132,8,1,t +11944,30136,8,1,f +11944,3039,0,1,f +11944,3139,0,4,f +11944,3626bpa9,14,1,f +11944,3795,7,2,f +11944,3829c01,7,1,f +11944,3878,0,1,f +11944,4600,0,2,f +11944,4624,7,4,f +11944,4865a,47,1,f +11944,970c00,0,1,f +11944,973p22c01,0,1,f +11946,12592,0,1,f +11946,12602,14,1,f +11946,13533,71,1,f +11946,13703,4,1,f +11946,13777,25,1,f +11946,13781,10,1,f +11946,13795pr0002,10,1,f +11946,3437,10,2,f +11946,3437,4,2,f +11946,4066,41,1,f +11946,40666,25,1,f +11946,47509,179,1,f +11946,58498,14,1,f +11946,62670,0,1,f +11947,2458,1,1,f +11947,3003,14,1,f +11947,3020,4,1,f +11947,3039,47,1,f +11947,3298,14,1,f +11947,3710,4,2,f +11947,6041,14,1,f +11948,14728c200,0,1,f +11948,2412b,72,6,f +11948,2431,15,1,f +11948,2444,71,8,f +11948,2780,0,99,f +11948,2780,0,4,t +11948,2819,71,1,f +11948,2825,4,2,f +11948,2905,72,4,f +11948,3024,47,2,f +11948,30395,72,1,f +11948,32009,72,6,f +11948,32012,72,1,f +11948,32013,0,4,f +11948,32017,0,2,f +11948,32034,71,3,f +11948,32054,0,17,f +11948,32054,4,5,f +11948,32056,0,16,f +11948,32056,71,8,f +11948,32062,4,14,f +11948,32072,14,2,f +11948,32073,71,21,f +11948,32123b,71,3,t +11948,32123b,71,22,f +11948,32138,0,1,f +11948,32140,0,2,f +11948,32140,72,9,f +11948,32140,1,4,f +11948,32184,0,14,f +11948,32184,71,2,f +11948,32192,0,4,f +11948,32269,71,1,f +11948,32270,71,9,f +11948,32278,72,2,f +11948,32291,0,4,f +11948,32316,4,2,f +11948,32316,72,5,f +11948,32316,71,3,f +11948,32316,0,2,f +11948,32348,0,2,f +11948,32449,0,4,f +11948,32523,72,7,f +11948,32523,71,3,f +11948,32524,0,5,f +11948,32524,72,13,f +11948,32525,4,2,f +11948,32525,1,5,f +11948,32525,72,8,f +11948,32526,71,6,f +11948,32527,1,1,f +11948,32528,1,1,f +11948,32556,71,3,f +11948,33299a,0,2,f +11948,3647,71,6,f +11948,3647,71,3,t +11948,3650c,71,1,f +11948,3673,71,2,f +11948,3673,71,1,t +11948,3701,19,2,f +11948,3702,1,1,f +11948,3705,0,12,f +11948,3706,0,11,f +11948,3707,0,2,f +11948,3713,71,33,f +11948,3713,71,4,t +11948,3737,0,1,f +11948,3743,71,1,f +11948,3749,19,6,f +11948,3794a,0,2,f +11948,3795,0,1,f +11948,3795,19,2,f +11948,3832,72,1,f +11948,40490,1,6,f +11948,40490,72,9,f +11948,41239,72,6,f +11948,41239,1,2,f +11948,41677,1,18,f +11948,41677,71,8,f +11948,42003,71,16,f +11948,4274,71,4,t +11948,4274,71,20,f +11948,43093,1,38,f +11948,43857,71,4,f +11948,44294,71,8,f +11948,4519,71,29,f +11948,4716,0,2,f +11948,48989,71,5,f +11948,50163,72,1,f +11948,54200,72,4,f +11948,54200,47,2,f +11948,55615,71,4,f +11948,55976,0,6,f +11948,56145,71,6,f +11948,59426,72,6,f +11948,6141,47,12,f +11948,6141,36,1,t +11948,6141,182,8,f +11948,6141,0,2,f +11948,6141,182,2,t +11948,6141,0,1,t +11948,6141,47,1,t +11948,6141,36,2,f +11948,6180,71,4,f +11948,6536,72,11,f +11948,6536,71,2,f +11948,6538b,72,26,f +11948,6538b,71,6,f +11948,6553,0,4,f +11948,6558,0,46,f +11948,6587,72,2,f +11948,6629,72,1,f +11948,6629,0,6,f +11948,6629,4,2,f +11948,6632,72,5,f +11948,75535,0,7,f +11948,75c07,1,1,t +11948,75c07,1,2,f +11949,11211,19,2,f +11949,11618,322,2,t +11949,11618,322,1,f +11949,12939,19,1,f +11949,2420,14,2,f +11949,3022,27,1,f +11949,3023,30,1,f +11949,3032,2,1,f +11949,30350b,84,2,f +11949,33172,25,1,f +11949,33183,10,1,t +11949,33183,10,1,f +11949,3633,15,1,f +11949,3710,30,2,f +11949,3794b,2,2,f +11949,4032a,70,1,f +11949,48336,15,1,f +11949,50950,30,2,f +11949,54200,29,2,f +11949,54200,29,1,t +11949,60478,14,2,f +11949,6141,29,2,f +11949,6141,29,1,t +11949,63868,15,2,f +11949,98283,84,6,f +11949,98387pr0002,71,1,f +11950,2345,0,2,f +11950,2433,0,2,f +11950,2446,0,1,f +11950,2447,0,1,f +11950,2466,46,1,f +11950,298c01,0,2,f +11950,3003,0,1,f +11950,3004,0,1,f +11950,3020,0,1,f +11950,3021,0,1,f +11950,3023,0,1,f +11950,3023,14,2,f +11950,3024,0,2,f +11950,3034,0,3,f +11950,3035,0,1,f +11950,3039,0,2,f +11950,3040b,0,2,f +11950,3062b,0,2,f +11950,3069b,0,3,f +11950,3626apr0001,14,1,f +11950,3660,0,1,f +11950,3679,7,6,f +11950,3680,14,6,f +11950,3701,0,1,f +11950,3795,0,1,f +11950,3832,0,1,f +11950,3838,0,1,f +11950,3839b,0,1,f +11950,3933a,0,1,f +11950,3934a,0,1,f +11950,3937,0,1,f +11950,3938,0,1,f +11950,3940b,0,4,f +11950,3941,0,2,f +11950,3957a,14,2,f +11950,3959,14,1,f +11950,4032a,0,1,f +11950,4085b,0,4,f +11950,4275b,0,2,f +11950,4276b,0,2,f +11950,4531,0,2,f +11950,4588,0,2,f +11950,4590,0,2,f +11950,4595,0,2,f +11950,4730,0,2,f +11950,4735,14,1,f +11950,4740,36,2,f +11950,4871,0,1,f +11950,6141,14,2,f +11950,6141,36,2,f +11950,970c00,0,1,f +11950,973p52c01,0,1,f +11951,3020,15,2,f +11951,3795,15,1,f +11951,3957a,15,1,f +11951,4476b,15,2,f +11951,4495b,4,1,f +11954,3037,6,50,f +11956,3001,4,2,f +11956,3001,14,2,f +11956,3002,1,2,f +11956,3003,4,2,f +11956,4744px13,2,1,f +11956,6215,2,2,f +11957,2570,8,2,f +11957,30273,8,1,f +11957,3031,2,2,f +11957,3039,8,1,f +11957,32064b,7,1,f +11957,3403c01,0,1,f +11957,3626bpx68,14,1,f +11957,3846p4e,7,1,f +11957,4070,0,2,f +11957,4498,6,1,f +11957,970c00pb014,0,1,f +11957,973px115c01,8,1,f +11959,2412b,4,2,f +11959,2420,0,4,f +11959,2723,148,4,f +11959,2780,0,1,t +11959,2780,0,4,f +11959,3020,4,2,f +11959,3020,72,1,f +11959,3022,71,2,f +11959,3023,72,2,f +11959,3034,0,1,f +11959,3040b,0,2,f +11959,30602pb002,4,2,f +11959,32000,4,1,f +11959,32056,0,2,f +11959,3705,0,3,f +11959,3708,0,2,f +11959,3710,0,1,f +11959,3713,71,8,f +11959,3713,71,1,t +11959,3894,0,2,f +11959,4085c,0,4,f +11959,41855pb07,72,1,f +11959,4274,71,2,f +11959,4274,71,1,t +11959,43719,72,1,f +11959,4466,80,1,f +11959,4467,80,1,f +11959,44728,72,3,f +11959,47715,72,1,f +11959,47757pb01,0,1,f +11959,47759px1,0,1,f +11959,48183,72,1,f +11959,6141,4,1,t +11959,6141,41,6,f +11959,6141,41,1,t +11959,6141,4,4,f +11959,6579,0,4,f +11959,6580,4,4,f +11959,75535,71,1,f +11960,2421,0,1,f +11960,3001,4,1,f +11960,3003,4,1,f +11960,3004,15,2,f +11960,3004,4,4,f +11960,3004,14,2,f +11960,3004,47,2,f +11960,3004p51,14,1,f +11960,3005,14,2,f +11960,3005,4,2,f +11960,3010,4,2,f +11960,3020,1,1,f +11960,3020,15,2,f +11960,3021,15,2,f +11960,3022,1,1,f +11960,3039,47,2,f +11960,3039,4,2,f +11960,3062b,41,2,f +11960,3137c01,0,2,f +11960,3641,0,4,f +11960,3660,4,2,f +11960,3795,15,2,f +11960,4488,15,1,f +11961,2346,0,2,f +11961,2412b,14,4,f +11961,2413,4,2,f +11961,2419,14,2,f +11961,2432,14,2,f +11961,2458,1,2,f +11961,2460,1,1,f +11961,2479,1,1,f +11961,2625,4,2,f +11961,30000,8,1,f +11961,3001,1,4,f +11961,3001,4,4,f +11961,3001,15,4,f +11961,3001,0,2,f +11961,3001,2,2,f +11961,3001,14,4,f +11961,3002,15,2,f +11961,3002,1,2,f +11961,3002,4,2,f +11961,3002,14,2,f +11961,3003,15,6,f +11961,3003,1,6,f +11961,3003,4,6,f +11961,3003,14,6,f +11961,3003,0,2,f +11961,3004,15,24,f +11961,3004,1,20,f +11961,3004,0,6,f +11961,3004,14,20,f +11961,3004,4,24,f +11961,3005,1,14,f +11961,3005,4,14,f +11961,3005,0,8,f +11961,3005,2,10,f +11961,3005,14,14,f +11961,3005,15,14,f +11961,3005pe1,14,2,f +11961,3005pe1,4,2,f +11961,3008,4,2,f +11961,3008,15,2,f +11961,3009,14,2,f +11961,3009,4,2,f +11961,3009,15,2,f +11961,3009,1,2,f +11961,3010,4,14,f +11961,3010,2,4,f +11961,3010,14,10,f +11961,3010,15,14,f +11961,3010,1,10,f +11961,3010p01,14,1,f +11961,3010p01,4,1,f +11961,3010pb005,15,2,f +11961,3020,14,2,f +11961,3020,1,2,f +11961,3021,1,2,f +11961,3022,1,2,f +11961,3030,1,1,f +11961,3031,1,1,f +11961,3032,1,1,f +11961,30341,1,1,f +11961,3035,14,1,f +11961,3039,14,4,f +11961,3040b,14,4,f +11961,3062b,15,12,f +11961,3149c01,1,1,f +11961,3297,1,4,f +11961,3297px1,1,4,f +11961,3298,1,4,f +11961,3298p11,1,4,f +11961,3299,1,4,f +11961,3300,1,4,f +11961,3307,15,2,f +11961,3483,0,4,f +11961,3622,15,4,f +11961,3622,1,4,f +11961,3622,4,4,f +11961,3622,14,4,f +11961,3626bpx19,14,2,f +11961,3633,15,4,f +11961,3660,14,4,f +11961,3665,14,2,f +11961,3666,4,2,f +11961,3666,14,2,f +11961,3679,7,1,f +11961,3680,1,1,f +11961,3710,1,2,f +11961,3730,4,1,f +11961,3731,4,1,f +11961,3741,2,2,f +11961,3742,1,3,f +11961,3742,1,1,t +11961,3742,14,1,t +11961,3742,14,3,f +11961,3747b,1,4,f +11961,3795,14,2,f +11961,3795,1,2,f +11961,3823,33,2,f +11961,3829c01,4,2,f +11961,3853,1,3,f +11961,3854,14,6,f +11961,3856,2,6,f +11961,3857,2,2,f +11961,3861b,14,2,f +11961,3899,47,2,f +11961,3937,14,2,f +11961,3957a,15,3,f +11961,3960p03,15,1,f +11961,3962b,0,1,f +11961,4070,4,4,f +11961,4079,4,2,f +11961,4175,14,2,f +11961,4286,1,4,f +11961,4287,1,4,f +11961,4485,0,1,f +11961,4495b,4,2,f +11961,4589,1,4,f +11961,6041,0,2,f +11961,6064,2,1,f +11961,6131,2,1,f +11961,6134,4,2,f +11961,6215,4,2,f +11961,6248,4,6,f +11961,6249,8,2,f +11961,6255,2,2,f +11961,970c00,0,1,f +11961,970c00,15,1,f +11961,973px33c01,15,1,f +11961,973px39c01,2,1,f +11962,122c02assy2,0,14,f +11962,122c02assy3,0,9,f +11962,2346,0,4,f +11962,2347,14,1,f +11962,2348b,47,1,f +11962,2349a,14,4,f +11962,2359p01,7,1,f +11962,2360p01,7,1,f +11962,2361p01,7,1,f +11962,2431,15,1,f +11962,2431,14,1,f +11962,2431pr0077,15,1,f +11962,2432,15,1,f +11962,2435,2,3,f +11962,2436,1,1,f +11962,2439,8,1,f +11962,2446,15,1,f +11962,2447,41,1,f +11962,3001,15,2,f +11962,3001,4,4,f +11962,3001,14,1,f +11962,3002,14,1,f +11962,3002,15,2,f +11962,3002,4,2,f +11962,3003,15,3,f +11962,3003,14,2,f +11962,3004,4,5,f +11962,3004,0,2,f +11962,3004,14,5,f +11962,3004,15,9,f +11962,3004,7,1,f +11962,3004,1,4,f +11962,3004p06,14,2,f +11962,3005,15,4,f +11962,3005,7,2,f +11962,3005,14,2,f +11962,3005,47,2,f +11962,3005,4,2,f +11962,3005,0,2,f +11962,3005p03,15,2,f +11962,3008,0,2,f +11962,3009,15,2,f +11962,3009,1,2,f +11962,3009p18,15,2,f +11962,3010,47,1,f +11962,3010,7,1,f +11962,3010,0,1,f +11962,3010,14,2,f +11962,3010,1,1,f +11962,3010,4,4,f +11962,3010,15,3,f +11962,3010p08,1,1,f +11962,3010p08,15,3,f +11962,3010p08,14,3,f +11962,3010p08,4,4,f +11962,3010p09,1,2,f +11962,3010p09,15,3,f +11962,3010p09,14,1,f +11962,3010p09,4,4,f +11962,3020,14,2,f +11962,3020,15,3,f +11962,3021,14,7,f +11962,3021,0,2,f +11962,3021,15,5,f +11962,3021,1,1,f +11962,3022,15,4,f +11962,3022,4,6,f +11962,3022,1,1,f +11962,3022,0,2,f +11962,3023,14,3,f +11962,3023,0,1,f +11962,3023,7,3,f +11962,3023,1,3,f +11962,3029,0,1,f +11962,3029,4,2,f +11962,3031,15,3,f +11962,3031,14,1,f +11962,3032,15,2,f +11962,3034,1,2,f +11962,3035,4,2,f +11962,3035,0,1,f +11962,3035,14,1,f +11962,3037,0,2,f +11962,3037,15,2,f +11962,3039,4,2,f +11962,3039,14,2,f +11962,3040b,14,2,f +11962,3040b,15,2,f +11962,3062b,14,2,f +11962,3062b,46,4,f +11962,3062b,7,6,f +11962,3062b,36,2,f +11962,3062b,33,14,f +11962,3068b,15,1,f +11962,3068b,0,1,f +11962,3068b,1,1,f +11962,3068bp07,15,2,f +11962,3069b,14,4,f +11962,3069bpr0099,15,2,f +11962,3081cc01,4,4,f +11962,3081cc01,14,4,f +11962,3081cc01,15,4,f +11962,3149c01,4,1,f +11962,3149c01,1,1,f +11962,3149c01,0,1,f +11962,3245b,15,2,f +11962,3245bpx4,14,2,f +11962,3297,15,1,f +11962,3298,4,1,f +11962,3314,0,1,f +11962,3317,14,1,f +11962,3403c01,4,1,f +11962,3460,14,2,f +11962,3460,7,2,f +11962,3464,47,2,f +11962,3470,2,3,f +11962,3622,14,2,f +11962,3622,15,2,f +11962,3623,15,4,f +11962,3623,14,2,f +11962,3624,1,1,f +11962,3624,15,1,f +11962,3624,0,2,f +11962,3624,4,1,f +11962,3639,0,1,f +11962,3640,0,1,f +11962,3641,0,2,f +11962,3660,4,2,f +11962,3665,15,2,f +11962,3665,14,2,f +11962,3666,14,1,f +11962,3666,15,1,f +11962,3710,15,10,f +11962,3710,14,3,f +11962,3710,1,1,f +11962,3788,4,8,f +11962,3788,15,7,f +11962,3788,1,2,f +11962,3795,14,2,f +11962,3795,1,2,f +11962,3821,14,2,f +11962,3821,1,1,f +11962,3821,15,1,f +11962,3821p02,15,1,f +11962,3821p09,4,1,f +11962,3822,14,2,f +11962,3822,1,1,f +11962,3822,15,1,f +11962,3822p02,15,1,f +11962,3822p09,4,1,f +11962,3823,47,2,f +11962,3823,41,7,f +11962,3829c01,14,3,f +11962,3829c01,4,3,f +11962,3829c01,15,3,f +11962,3833,4,3,f +11962,3834,15,1,f +11962,3837,8,1,f +11962,3853,0,1,f +11962,3853,15,1,f +11962,3856,15,4,f +11962,3901,0,1,f +11962,3957a,7,1,f +11962,3957a,15,2,f +11962,4079,4,3,f +11962,4162,14,1,f +11962,4207,7,1,f +11962,4211,15,1,f +11962,4211,14,1,f +11962,4213,14,4,f +11962,4213,1,1,f +11962,4213,15,1,f +11962,4214,1,1,f +11962,4214,14,1,f +11962,4215a,46,6,f +11962,4215a,15,2,f +11962,4215ap08,14,2,f +11962,4284,47,1,f +11962,4286,7,2,f +11962,4315,15,1,f +11962,4345b,14,2,f +11962,4346p03,14,2,f +11962,4477,0,2,f +11962,4480c01,15,1,f +11962,4483p01,47,1,f +11962,4530,6,1,f +11962,4594,47,1,f +11962,4625,14,4,f +11962,4740,8,1,f +11962,4854,7,2,f +11962,4865a,7,6,f +11962,6007,8,2,f +11962,7039,4,4,f +11962,7049b,0,2,f +11962,80547pb01,7,1,f +11962,9354pap01,9999,1,f +11962,9354pap02,9999,1,f +11962,9354pap03,89,1,f +11962,9354pap04,89,1,f +11962,970c00,7,1,f +11962,970c00,0,4,f +11962,970c00,1,4,f +11962,970c00,4,2,f +11962,970c00,14,1,f +11962,973c01,15,1,f +11962,973c02,4,1,f +11962,973p21c01,0,1,f +11962,973p26c01,1,1,f +11962,973p27c01,1,2,f +11962,973pb0035c01,4,1,f +11962,973pb0079c01,0,1,f +11962,973pb0091c01,0,1,f +11962,973pb0201c01,15,2,f +11962,973px61c02,15,1,f +11963,11055,15,1,f +11963,11211,4,1,f +11963,13251,308,1,f +11963,14769,15,1,f +11963,15456,71,3,f +11963,15573,4,9,f +11963,15573,1,8,f +11963,2431,4,1,f +11963,2431,1,3,f +11963,2445,0,1,f +11963,25806,9999,1,t +11963,298c02,0,4,f +11963,298c02,0,1,t +11963,3001,2,1,f +11963,3004,2,2,f +11963,3005,1,22,f +11963,30089b,0,1,f +11963,3010,4,6,f +11963,3010,2,6,f +11963,30165,4,2,f +11963,3020,0,3,f +11963,3020,14,1,f +11963,3020,4,1,f +11963,3022,72,2,f +11963,3022,71,2,f +11963,3023,4,4,f +11963,3023,2,4,f +11963,3024,4,4,f +11963,3024,4,1,t +11963,3031,14,1,f +11963,3032,14,3,f +11963,3034,71,2,f +11963,3037,4,6,f +11963,3044b,4,1,f +11963,3070b,2,1,t +11963,3070b,2,4,f +11963,3297,4,2,f +11963,3626bpr0388,14,1,f +11963,3626cpr1146,14,1,f +11963,3626cpr1666,14,1,f +11963,3626cpr1738,14,1,f +11963,3666,2,2,f +11963,3710,1,3,f +11963,3710,4,5,f +11963,3795,2,1,f +11963,3832,14,2,f +11963,3836,70,1,f +11963,3837,72,1,f +11963,3942c,1,1,f +11963,4079,4,1,f +11963,4081b,1,2,f +11963,4175,191,2,f +11963,41879a,321,1,f +11963,4477,4,2,f +11963,4599b,1,4,f +11963,4599b,1,1,t +11963,4600,0,7,f +11963,4865b,1,2,f +11963,50944,0,14,f +11963,59900,4,4,f +11963,59900,0,1,f +11963,59900,14,1,f +11963,60479,14,1,f +11963,60581,47,1,f +11963,60897,4,4,f +11963,6091,4,4,f +11963,6141,1,1,f +11963,6141,1,1,t +11963,62810,71,1,f +11963,62810,28,1,f +11963,63082,71,2,f +11963,63965,0,1,f +11963,85984,71,1,f +11963,85984,14,2,f +11963,87079,2,2,f +11963,87552,47,4,f +11963,87580,2,2,f +11963,87991,14,1,f +11963,92950,1,1,f +11963,970c00,85,1,f +11963,970c00,0,1,f +11963,970c00,320,1,f +11963,973pr1163c01,272,1,f +11963,973pr1573c01,15,1,f +11963,973pr2001c01,85,1,f +11963,973pr2084c01,71,1,f +11965,11408pr0007c01,78,1,f +11965,11477,14,6,f +11965,11641,15,1,f +11965,11816pr0001,84,1,f +11965,11816pr0005,78,1,f +11965,14014pr0005,78,1,f +11965,14719,15,7,f +11965,14769,15,2,f +11965,14769,29,1,f +11965,14769,30,1,f +11965,15207,14,1,f +11965,15210,15,1,f +11965,15210,72,1,f +11965,15254,19,4,f +11965,15397,15,1,f +11965,15705,308,1,f +11965,17485,71,1,f +11965,20309,19,2,f +11965,20310,19,12,f +11965,22885,5,2,f +11965,22888,2,1,f +11965,22888,19,1,f +11965,2357,70,2,f +11965,2357,19,5,f +11965,23969,41,1,f +11965,24080,0,1,f +11965,2412b,15,2,f +11965,2412b,71,10,f +11965,2420,19,3,f +11965,2420,15,7,f +11965,2420,70,2,f +11965,2431,15,11,f +11965,2431,19,2,f +11965,2431,29,1,f +11965,2431,30,1,f +11965,2431,14,1,f +11965,2432,71,1,f +11965,2445,71,1,f +11965,2453b,19,6,f +11965,2454a,19,14,f +11965,2456,15,1,f +11965,2456,71,2,f +11965,2460,0,1,f +11965,25269pr02,2,1,f +11965,25386,19,1,f +11965,2566,0,1,f +11965,26490,320,1,f +11965,2654,71,2,f +11965,3001,15,5,f +11965,3003,14,2,f +11965,3003,322,1,f +11965,3004,14,1,f +11965,3004,26,3,f +11965,3004,70,2,f +11965,3004,19,4,f +11965,3004,72,2,f +11965,3004,15,3,f +11965,3005,19,6,f +11965,3005,71,1,f +11965,3005pr0006,73,1,f +11965,3009,15,1,f +11965,3009,71,5,f +11965,3009,19,2,f +11965,3009,26,9,f +11965,3010,19,2,f +11965,3010,70,1,f +11965,3010,14,5,f +11965,3010,26,6,f +11965,30136,19,1,f +11965,3020,19,1,f +11965,3020,191,6,f +11965,3020,71,1,f +11965,3020,30,4,f +11965,3020,70,2,f +11965,3021,30,1,f +11965,3021,71,1,f +11965,3021,14,1,f +11965,3021,191,2,f +11965,3021,15,1,f +11965,3021,19,2,f +11965,3022,71,4,f +11965,3022,15,2,f +11965,3022,70,4,f +11965,3022,19,1,f +11965,3023,15,4,f +11965,3023,26,7,f +11965,3023,14,9,f +11965,3023,19,12,f +11965,3023,46,2,f +11965,30237b,19,1,f +11965,30237b,71,1,f +11965,3024,19,4,f +11965,3024,70,4,f +11965,3024,29,4,f +11965,3024,15,14,f +11965,3024,26,4,f +11965,3031,19,1,f +11965,3032,2,1,f +11965,3034,19,1,f +11965,30357,71,2,f +11965,30357,29,2,f +11965,3037,26,6,f +11965,30375,15,1,f +11965,30377,0,1,f +11965,3039,15,1,f +11965,3040b,26,2,f +11965,30414,0,1,f +11965,30565,71,2,f +11965,3065,40,2,f +11965,3068b,14,2,f +11965,3068b,29,2,f +11965,3068b,322,1,f +11965,3068bpr0138,15,1,f +11965,3069b,14,4,f +11965,3069b,15,7,f +11965,3069b,29,2,f +11965,3069bpr0101,71,1,f +11965,3070b,70,2,f +11965,3070b,15,5,f +11965,3070b,30,8,f +11965,32039,0,1,f +11965,32064a,71,1,f +11965,3245b,19,3,f +11965,3245b,15,1,f +11965,3245b,14,2,f +11965,3245b,72,2,f +11965,33009,26,1,f +11965,33078,4,1,f +11965,33291,4,4,f +11965,33291,191,4,f +11965,3460,15,3,f +11965,3460,19,2,f +11965,3460,30,2,f +11965,3622,19,6,f +11965,3622,14,1,f +11965,3623,14,4,f +11965,3623,19,4,f +11965,3633,15,2,f +11965,3659,19,2,f +11965,3660,15,1,f +11965,3660,71,1,f +11965,3660,70,2,f +11965,3660,19,2,f +11965,3665,19,6,f +11965,3665,14,8,f +11965,3666,19,3,f +11965,3666,14,6,f +11965,3666,30,1,f +11965,3666,26,3,f +11965,3666,191,2,f +11965,3666,15,3,f +11965,3700,0,1,f +11965,3710,70,1,f +11965,3710,15,5,f +11965,3710,19,3,f +11965,3710,14,8,f +11965,3713,4,1,f +11965,3794b,71,2,f +11965,3795,72,1,f +11965,3795,14,4,f +11965,3829c01,4,1,f +11965,3832,19,2,f +11965,3940b,0,2,f +11965,3941,70,1,f +11965,3941,71,1,f +11965,3957a,0,2,f +11965,3958,14,2,f +11965,4032a,0,1,f +11965,4081b,0,1,f +11965,4081b,19,2,f +11965,4162,30,3,f +11965,4162,15,1,f +11965,4176,41,1,f +11965,4215b,15,1,f +11965,4282,72,2,f +11965,4349,72,1,f +11965,4477,14,3,f +11965,4488,0,4,f +11965,4595,0,1,f +11965,4599b,71,1,f +11965,46212,40,2,f +11965,4733,72,1,f +11965,4740,71,3,f +11965,4865a,29,2,f +11965,50745,14,4,f +11965,50950,19,2,f +11965,50950,30,2,f +11965,52031,14,1,f +11965,54200,47,2,f +11965,54200,15,1,f +11965,54200,297,2,f +11965,59349,19,4,f +11965,60032,14,10,f +11965,6014b,15,4,f +11965,60474,15,2,f +11965,60476,15,2,f +11965,60485,71,1,f +11965,60581,72,1,f +11965,60592,15,26,f +11965,60593,15,18,f +11965,60594,72,1,f +11965,60596,15,4,f +11965,60601,47,26,f +11965,60602,47,18,f +11965,60614,72,2,f +11965,60616a,15,1,f +11965,60797c02,0,1,f +11965,6091,19,10,f +11965,6091,71,4,f +11965,6111,19,1,f +11965,6112,14,1,f +11965,6141,71,10,f +11965,6141,47,2,f +11965,6141,45,2,f +11965,6141,19,2,f +11965,6180,15,1,f +11965,63864,15,1,f +11965,63965,15,1,f +11965,64644,0,1,f +11965,6636,191,4,f +11965,6636,15,1,f +11965,6636,30,4,f +11965,72824,25,1,f +11965,73983,71,2,f +11965,87079,30,1,f +11965,87079,14,1,f +11965,87079,15,6,f +11965,87079,322,2,f +11965,87552,47,2,f +11965,87552,15,2,f +11965,87580,71,6,f +11965,87697,0,4,f +11965,87994,297,2,f +11965,88930,14,6,f +11965,90370pr0005,0,1,f +11965,92438,212,6,f +11965,92456pr0078c01,78,1,f +11965,92456pr0096c01,84,1,f +11965,92593,71,6,f +11965,92818pr0005c01,191,1,f +11965,92818pr0012c01,322,1,f +11965,93095,322,5,f +11965,93273,70,1,f +11965,93273,19,1,f +11965,93352,308,1,f +11965,96874,25,1,t +11965,98138,297,15,f +11965,98138,36,4,f +11965,98138,47,2,f +11965,98138,46,5,f +11965,99206,0,2,f +11965,99207,71,1,f +11965,99780,0,1,f +11966,gtpine,2,3,f +11967,3626bpr0776,14,1,f +11967,88646,0,1,f +11967,90386,0,1,f +11967,93551pr0001,84,1,f +11967,93552pr0001,70,1,f +11967,970c00pr0215,28,1,f +11967,973pr1763c01,15,1,f +11968,2447,40,1,t +11968,2447,40,1,f +11968,3004,4,2,f +11968,3022,71,2,f +11968,3024,14,1,f +11968,3710,14,1,f +11968,3838,14,1,f +11968,4623,14,1,f +11968,6019,14,1,f +11968,6158,72,1,f +11968,92593,4,1,f +11968,98283,84,4,f +11969,2420,0,2,f +11969,2441,0,1,f +11969,3005,0,2,f +11969,3022,14,1,f +11969,3298p57,0,1,f +11969,3623,14,2,f +11969,3641,0,4,f +11969,3710,14,1,f +11969,3788,0,1,f +11969,3829c01,14,1,f +11969,3937,7,2,f +11969,3938,7,2,f +11969,4624,7,4,f +11969,4865a,0,2,f +11970,2357,7,2,f +11970,2377,0,1,f +11970,2412b,14,1,f +11970,2412b,7,2,f +11970,2431,8,2,f +11970,2431,7,3,f +11970,2431pc1,0,1,f +11970,2431pr0017,14,1,f +11970,2434,7,1,f +11970,2555,4,2,f +11970,2723,0,4,f +11970,2871a,7,2,f +11970,2877,8,22,f +11970,2877,7,8,f +11970,2877,4,8,f +11970,2878c01,7,4,f +11970,2920,0,2,f +11970,3001,7,1,f +11970,3003,0,2,f +11970,3003,14,1,f +11970,3004,0,2,f +11970,3004,7,2,f +11970,3005,4,16,f +11970,3005,7,14,f +11970,3005,14,4,f +11970,3007,0,1,f +11970,3010,4,2,f +11970,30136,8,8,f +11970,3020,7,7,f +11970,3020,4,2,f +11970,3020,8,2,f +11970,3021,4,3,f +11970,3022,7,1,f +11970,3022,4,2,f +11970,3023,14,6,f +11970,3023,8,2,f +11970,3023,7,9,f +11970,3023,4,13,f +11970,3024,14,8,f +11970,3024,4,10,f +11970,3024,7,4,f +11970,3030,7,1,f +11970,3032,4,1,f +11970,3034,7,2,f +11970,3035,7,1,f +11970,30357,7,2,f +11970,30374,7,4,f +11970,3039p05,15,2,f +11970,3040p04,7,1,f +11970,30414,7,2,f +11970,3063b,7,2,f +11970,3068b,14,4,f +11970,3068b,7,2,f +11970,3068bp70,15,1,f +11970,3069b,14,2,f +11970,3069b,8,1,f +11970,3069b,4,4,f +11970,3069bpx42,4,1,f +11970,3069bpx43,4,1,f +11970,3070b,4,7,f +11970,3176,7,1,f +11970,3188,7,1,f +11970,3189,7,1,f +11970,32028,14,1,f +11970,32064b,0,2,f +11970,3460,4,2,f +11970,3460,7,4,f +11970,3622,7,3,f +11970,3623,4,6,f +11970,3623,14,2,f +11970,3623,7,4,f +11970,3660,7,2,f +11970,3666,7,9,f +11970,3666,14,2,f +11970,3666,4,1,f +11970,3700,14,1,f +11970,3710,4,5,f +11970,3710,14,3,f +11970,3710,7,8,f +11970,3794a,14,1,f +11970,3795,7,4,f +11970,3795,4,1,f +11970,3832,0,1,f +11970,3941,7,4,f +11970,4006,0,1,f +11970,4022,7,1,f +11970,4025,0,2,f +11970,4070,4,6,f +11970,4079,1,1,f +11970,4085c,7,10,f +11970,4085c,4,8,f +11970,4093a,4,1,f +11970,4162,7,4,f +11970,4162,8,4,f +11970,4179472,89,1,f +11970,4328,7,1,f +11970,43822,9999,1,f +11970,4477,7,2,f +11970,4477,4,2,f +11970,4477,14,2,f +11970,4519,0,1,f +11970,4623,0,4,f +11970,4862,47,1,f +11970,4864bpx2,47,2,f +11970,4864bpx3,47,2,f +11970,4865a,47,2,f +11970,4865a,14,2,f +11970,4865a,7,4,f +11970,6005,4,8,f +11970,6081,7,2,f +11970,6091,4,8,f +11970,6091,8,2,f +11970,6112,7,2,f +11970,6141,47,3,f +11970,6215,14,2,f +11970,6215,7,18,f +11970,6215,4,8,f +11970,63965,4,4,f +11970,6567c01,4,1,f +11970,6636,4,2,f +11970,6636,7,6,f +11970,71182,383,2,f +11970,73092,0,2,f +11971,15496pr0002,27,1,f +11971,15655pr0001,84,1,f +11971,88646,0,1,f +11971,970c00,19,1,f +11971,973pr2614c01,2,1,f +11974,2446,15,1,f +11974,2447,33,1,f +11974,2555,0,1,f +11974,2610,14,1,f +11974,2654,7,1,f +11974,3003,7,1,f +11974,30031,0,1,f +11974,3023,15,1,f +11974,3032,14,1,f +11974,3298pb024,14,1,f +11974,3626bp04,14,1,f +11974,3794a,14,1,f +11974,4286,0,2,f +11974,4859,14,1,f +11974,6153a,0,1,f +11974,970x026,15,1,f +11974,973p8bc01,15,1,f +11976,47202apr0003,1,1,f +11976,47202bpr0002,25,1,f +11976,47517,0,2,f +11976,47557,71,1,f +11976,47562,0,1,f +11976,47575,212,1,f +11976,47575,15,1,f +11976,48842,15,1,f +11976,48842,10,1,f +11976,63716,26,1,f +11976,63717,15,1,f +11976,63717,1,1,f +11976,63758,25,1,f +11976,75115bpr0001,1,1,f +11976,75115bpr0004,15,1,f +11976,75121,378,1,f +11976,75121,4,1,f +11976,75126,19,1,f +11976,98465,15,1,f +11977,2780,0,1,t +11977,2780,0,21,f +11977,32054,71,3,f +11977,32062,4,5,f +11977,32138,0,1,f +11977,32184,71,4,f +11977,32249,0,4,f +11977,32348,0,2,f +11977,32523,71,2,f +11977,32534,0,1,f +11977,32535,0,1,f +11977,32557,0,2,f +11977,3705,0,2,f +11977,3713,71,1,t +11977,3713,71,2,f +11977,3749,19,2,f +11977,41239,0,4,f +11977,42003,0,1,f +11977,43093,1,4,f +11977,44350,0,2,f +11977,44351,0,2,f +11977,4519,71,7,f +11977,45749,0,4,f +11977,47298,191,2,f +11977,47306,0,1,f +11977,47312,72,1,f +11977,48989,71,2,f +11977,50898,191,2,f +11977,53543,135,2,f +11977,53544,135,1,f +11977,53564,191,1,f +11977,54272,135,2,f +11977,54821,135,4,f +11977,57526,135,1,f +11977,57527,135,1,f +11977,57528,135,2,f +11977,57536,42,1,f +11977,57541,135,1,f +11977,57544,135,3,f +11977,57563,135,2,f +11977,57572,135,1,f +11977,57587,0,1,f +11977,58177,0,1,f +11977,59443,0,4,f +11977,60176,191,5,f +11977,60483,71,4,f +11977,60935,135,2,f +11977,60936,135,1,f +11977,61053,191,2,f +11977,62233,135,1,f +11977,6558,1,11,f +11977,6587,72,2,f +11980,32039,7,50,f +11981,6553,7,50,f +11983,11213,322,1,f +11983,15535,72,2,f +11983,2449,15,2,f +11983,3001,0,3,f +11983,3002,71,4,f +11983,3003,71,2,f +11983,3005,15,4,f +11983,3008,15,1,f +11983,3010,26,6,f +11983,3022,322,3,f +11983,3023,72,2,f +11983,3023,27,2,f +11983,3028,71,1,f +11983,3032,322,1,f +11983,3032,0,1,f +11983,30350b,15,5,f +11983,30357,0,2,f +11983,3038,71,2,f +11983,3039,71,2,f +11983,3040b,27,2,f +11983,30414,15,1,f +11983,3062b,0,2,f +11983,3069b,27,3,f +11983,3069b,26,2,f +11983,3069b,322,2,f +11983,32028,15,5,f +11983,3245c,30,4,f +11983,3245c,15,4,f +11983,3456,0,2,f +11983,3623,27,4,f +11983,3665,15,2,f +11983,3666,26,2,f +11983,3679,71,1,f +11983,3680,15,1,f +11983,3700,71,2,f +11983,3795,0,1,f +11983,3832,0,1,f +11983,3957a,0,1,f +11983,44728,71,2,f +11983,4740,0,4,f +11983,4740,45,2,f +11983,48336,15,5,f +11983,59230,0,1,t +11983,59230,0,1,f +11983,60474,212,1,f +11983,60478,15,6,f +11983,60481,15,2,f +11983,6108,30,1,f +11983,61252,15,4,f +11983,6141,46,1,t +11983,6141,46,10,f +11983,6141,27,3,f +11983,6141,29,1,t +11983,6141,85,2,f +11983,6141,85,1,t +11983,6141,27,1,t +11983,6141,29,3,f +11983,6266,0,2,f +11983,6266,0,1,t +11983,85984,72,2,f +11983,87079pr133,15,1,f +11983,87580,0,3,f +11983,90370pr0001,0,1,t +11983,90370pr0001,0,1,f +11984,2399,1,2,f +11984,2421,0,1,f +11984,2433,0,1,f +11984,2479,0,1,f +11984,2555,0,1,f +11984,2555,4,2,f +11984,2877,15,1,f +11984,30027,15,4,f +11984,30028,0,4,f +11984,30043,0,2,f +11984,3010,1,1,f +11984,3020,1,1,f +11984,3020,15,4,f +11984,3021,7,1,f +11984,3022,7,3,f +11984,3023,1,5,f +11984,3023,4,1,f +11984,3024,36,2,f +11984,3024,46,5,f +11984,3037,1,1,f +11984,3039pc5,7,1,f +11984,3040b,4,1,f +11984,3062b,0,2,f +11984,3069bp02,7,3,f +11984,3070bpb002,15,1,f +11984,3176,0,1,f +11984,3298,15,1,f +11984,3460,7,2,f +11984,3623,0,1,f +11984,3626bp02,14,1,f +11984,3626bp04,14,2,f +11984,3665,15,1,f +11984,3710,15,3,f +11984,3794a,15,1,f +11984,3795,4,1,f +11984,3795,0,1,f +11984,3821,1,2,f +11984,3822,1,2,f +11984,3823,41,2,f +11984,3829c01,4,1,f +11984,3832,0,1,f +11984,3957a,0,1,f +11984,3960,15,1,f +11984,4070,0,2,f +11984,4211,15,2,f +11984,4213,15,3,f +11984,4214,1,1,f +11984,4215b,1,2,f +11984,4315,15,1,f +11984,4349,15,1,f +11984,4360,0,1,f +11984,4477,15,1,f +11984,4477,0,2,f +11984,4485,1,2,f +11984,4488,4,1,f +11984,4530,0,1,f +11984,4531,7,1,f +11984,4595,0,1,f +11984,4600,7,2,f +11984,4623,0,1,f +11984,4625,15,1,f +11984,4729,15,1,f +11984,4735,0,2,f +11984,4740,0,2,f +11984,4740,33,1,f +11984,4854,15,1,f +11984,4855,15,2,f +11984,4856a,0,1,f +11984,4858p1k,1,1,f +11984,4859,15,1,f +11984,4859,0,1,f +11984,4864a,1,2,f +11984,4864a,41,2,f +11984,6140,7,3,f +11984,6141,34,1,t +11984,6141,36,1,t +11984,6141,36,4,f +11984,6141,34,1,f +11984,6141,47,1,t +11984,6141,47,2,f +11984,6553stk01,9999,1,t +11984,970c00,15,3,f +11984,973pb0025c01,15,2,f +11984,973px37c01,1,1,f +11985,12825,0,2,f +11985,2335,1,2,f +11985,2341,71,2,f +11985,2412b,71,5,f +11985,2412b,0,3,f +11985,2432,1,2,f +11985,2445,72,1,f +11985,2446,0,2,f +11985,2508,0,1,f +11985,3001,19,1,f +11985,3003,1,1,f +11985,3004,71,2,f +11985,3005,71,6,f +11985,3010,71,1,f +11985,3020,19,1,f +11985,3021,14,1,f +11985,3023,4,2,f +11985,30237a,14,2,f +11985,3024,2,2,f +11985,3024,36,4,f +11985,3028,4,1,f +11985,3032,4,2,f +11985,3032,0,1,f +11985,3032,19,1,f +11985,30350b,72,2,f +11985,30374,4,2,f +11985,30374,0,2,f +11985,30414,0,1,f +11985,3062b,1,2,f +11985,3062b,14,2,f +11985,3068b,71,1,f +11985,32028,71,2,f +11985,3460,4,2,f +11985,3626cpr0279,14,1,f +11985,3626cpr0743,14,1,f +11985,3665,71,4,f +11985,3666,0,1,f +11985,3666,71,1,f +11985,3710,4,1,f +11985,3710,71,2,f +11985,3795,0,4,f +11985,3829c01,1,1,f +11985,3942c,15,2,f +11985,4079,1,1,f +11985,43722,71,1,f +11985,43723,71,1,f +11985,44570,71,1,f +11985,4477,0,2,f +11985,4488,71,8,f +11985,4536,15,4,f +11985,4599b,14,2,f +11985,4623,4,2,f +11985,4624,71,4,f +11985,46304,15,2,f +11985,46304,15,1,t +11985,4697b,71,4,f +11985,4697b,71,1,t +11985,48336,71,4,f +11985,4865a,71,2,f +11985,50859b,0,2,f +11985,50860,25,1,f +11985,50860,27,1,f +11985,50861,0,5,f +11985,50862,71,5,f +11985,52031,71,1,f +11985,54200,47,1,t +11985,54200,0,1,t +11985,54200,0,2,f +11985,54200,47,2,f +11985,55295,0,1,f +11985,55296,0,1,f +11985,55297,0,1,f +11985,55298,0,1,f +11985,55299,0,1,f +11985,55300,0,1,f +11985,56890,0,4,f +11985,6014b,15,4,f +11985,60219,0,1,f +11985,6141,182,2,f +11985,6141,182,1,t +11985,63082,0,1,f +11985,64799,4,1,f +11985,85984,15,2,f +11985,86035,4,2,f +11985,87079,71,4,f +11985,87414,0,4,f +11985,87552,40,6,f +11985,87580,71,3,f +11985,92280,0,4,f +11985,92410,4,2,f +11985,92583,40,1,f +11985,92593,0,1,f +11985,92950,71,1,f +11985,93274,4,1,f +11985,95120,0,1,f +11985,970c00,1,2,f +11985,973pr1156c01,1,2,f +11985,98138,46,6,f +11985,98138,46,1,t +11985,98282,0,4,f +11985,98284,0,1,f +11987,3068bpb0051,15,6,f +11987,3068bpb0052,15,6,f +11987,3068bpb0053,15,6,f +11987,3068bpf1,15,6,f +11987,312c,15,14,f +11989,3626bpb0136,78,1,f +11989,973bpb136c01,0,1,f +11989,bb84pb01,25,1,f +11989,x494cx1,0,1,f +11990,3626bpx42,14,1,f +11990,4485,4,1,f +11990,4485,4,1,t +11990,970c00,15,1,f +11990,973px77c01,1,1,f +11992,10201,0,2,f +11992,11090,0,1,f +11992,11477,0,3,f +11992,14417,72,2,f +11992,14418,71,3,f +11992,14704,71,1,f +11992,14769pr1047,0,1,f +11992,15068,0,3,f +11992,15070,15,2,f +11992,15208,0,1,f +11992,15209,15,1,f +11992,15456,0,2,f +11992,2921,0,2,f +11992,30115,4,1,f +11992,3020,72,1,f +11992,3021,0,2,f +11992,3022,0,3,f +11992,3022,25,1,f +11992,3023,0,4,f +11992,30237b,0,1,f +11992,32064a,0,1,f +11992,32474pr1001,15,1,f +11992,3679,71,1,f +11992,3680,0,1,f +11992,41854,25,2,f +11992,44728,0,1,f +11992,4735,0,2,f +11992,60478,72,1,f +11992,60897,25,2,f +11992,6141,25,3,f +11992,85984,25,2,f +11992,87087,25,2,f +11992,87747,25,2,f +11992,98139,179,2,f +11992,99207,71,2,f +11992,99563,25,2,f +11993,23306,7,2,f +11993,2337,7,1,f +11993,2357,8,2,f +11993,2412b,6,4,f +11993,2412b,8,1,f +11993,2432,4,1,f +11993,2460,6,4,f +11993,2476a,7,2,f +11993,2540,8,2,f +11993,2555,8,1,f +11993,2873,8,1,f +11993,2877,0,1,f +11993,3002,14,1,f +11993,3004,19,2,f +11993,3009,8,2,f +11993,3010,19,1,f +11993,3020,8,7,f +11993,3021,19,2,f +11993,3022,6,2,f +11993,3022,7,2,f +11993,3023,0,2,f +11993,30236,7,2,f +11993,30258,8,2,f +11993,30303,6,2,f +11993,3031,7,1,f +11993,3035,7,1,f +11993,30365,8,4,f +11993,30383,8,4,f +11993,30388,7,2,f +11993,30414,7,1,f +11993,30483pr01,6,1,f +11993,3049b,19,2,f +11993,30554a,7,4,f +11993,32000,0,1,f +11993,32524,7,2,f +11993,3298,8,2,f +11993,3623,6,2,f +11993,3660pb06,15,1,f +11993,3665,8,2,f +11993,3684,8,1,f +11993,3937,8,1,f +11993,3938,7,1,f +11993,3959,7,2,f +11993,3960,7,2,f +11993,4150pr0021,7,2,f +11993,4150ps7,7,1,f +11993,4274,1,2,f +11993,43337,8,2,f +11993,4349,7,1,f +11993,4460a,7,2,f +11993,4625,7,1,f +11993,4733,8,1,f +11993,4854,0,1,f +11993,6141,7,4,f +11993,6541,4,2,f +11993,970c00,6,1,f +11993,973c13,6,1,f +11995,11477,85,2,f +11995,14704,71,2,f +11995,14769pr1002,15,1,f +11995,14769pr1003,15,1,f +11995,15209,15,1,f +11995,15456,0,2,f +11995,3003,0,1,f +11995,3023,0,1,f +11995,3023,85,4,f +11995,30350b,40,1,f +11995,30374,52,2,f +11995,30602,85,1,f +11995,3065,33,2,f +11995,3069b,85,1,f +11995,3665,85,4,f +11995,3937,72,1,f +11995,3941,85,1,f +11995,3942c,85,1,f +11995,4032a,72,1,f +11995,41854,85,1,f +11995,43722,0,1,f +11995,43723,0,1,f +11995,44728,0,2,f +11995,48336,0,1,f +11995,4871,0,1,f +11995,48729b,0,1,t +11995,48729b,0,2,f +11995,49668,0,2,f +11995,54200,85,2,f +11995,54200,85,1,t +11995,54200,0,1,t +11995,54200,33,6,f +11995,54200,0,2,f +11995,54200,33,1,t +11995,60478,0,2,f +11995,60897,72,2,f +11995,61252,15,2,f +11995,6134,0,1,f +11995,87087,0,2,f +11995,99207,71,1,f +11999,10232stk01,9999,1,t +11999,11055,4,7,f +11999,11062,15,1,f +11999,11211,71,10,f +11999,12825,0,10,f +11999,12825,71,2,f +11999,15207,72,1,f +11999,15207,70,2,f +11999,2357,71,5,f +11999,2412b,297,5,f +11999,2412b,80,4,f +11999,2412b,0,2,f +11999,2419,71,1,f +11999,2420,70,4,f +11999,2420,19,2,f +11999,2431,71,9,f +11999,2431,19,10,f +11999,2431,4,2,f +11999,2431,70,17,f +11999,2431,72,4,f +11999,2431,0,15,f +11999,2431,320,4,f +11999,2431,73,3,f +11999,2436,4,1,f +11999,2445,72,7,f +11999,2445,320,2,f +11999,2450,19,9,f +11999,2450,72,2,f +11999,2453b,71,3,f +11999,2454a,71,1,f +11999,2462,71,8,f +11999,2540,4,7,f +11999,2654,0,2,f +11999,2780,0,2,t +11999,2780,0,14,f +11999,2877,19,32,f +11999,2921,71,4,f +11999,3002,71,2,f +11999,3003,71,3,f +11999,3003,28,17,f +11999,3004,19,4,f +11999,3004,28,69,f +11999,3004,72,7,f +11999,3004,71,19,f +11999,30044,70,6,f +11999,3005,15,2,f +11999,3005,70,8,f +11999,3005,73,2,f +11999,3005,28,49,f +11999,3005,19,6,f +11999,3005,71,29,f +11999,3005,0,9,f +11999,3008,28,69,f +11999,30088,0,4,f +11999,30089b,0,1,f +11999,3009,71,15,f +11999,3009,72,4,f +11999,3009,28,23,f +11999,3010,19,4,f +11999,3010,71,11,f +11999,30134,0,1,f +11999,30134,70,1,f +11999,30136,72,2,f +11999,30151a,47,1,f +11999,30176,2,2,f +11999,3020,70,3,f +11999,3020,19,10,f +11999,3021,71,5,f +11999,3021,19,5,f +11999,3022,19,6,f +11999,3022,73,8,f +11999,3022,15,8,f +11999,3022,71,3,f +11999,3023,73,5,f +11999,3023,72,16,f +11999,3023,0,6,f +11999,3023,71,20,f +11999,3023,19,29,f +11999,3023,28,37,f +11999,3024,15,16,f +11999,3024,71,4,f +11999,3024,72,1,t +11999,3024,28,3,t +11999,3024,47,4,f +11999,3024,72,4,f +11999,3024,28,16,f +11999,3024,71,1,t +11999,3024,47,1,t +11999,3024,73,2,t +11999,3024,73,19,f +11999,3024,15,1,t +11999,3024,19,2,t +11999,3024,70,7,f +11999,3024,70,2,t +11999,3024,0,1,t +11999,3024,19,10,f +11999,3024,0,3,f +11999,3031,0,3,f +11999,3032,71,1,f +11999,3032,19,2,f +11999,3032,4,1,f +11999,3033,73,1,f +11999,3034,19,11,f +11999,3035,71,2,f +11999,3037,72,2,f +11999,30374,297,2,f +11999,30374,0,4,f +11999,3039,72,1,f +11999,3039pr62,71,2,f +11999,3040b,4,8,f +11999,3040b,19,2,f +11999,3040b,72,2,f +11999,30414,71,4,f +11999,30414,0,2,f +11999,30504,19,3,f +11999,3062b,47,3,f +11999,3062b,320,64,f +11999,3062b,71,18,f +11999,3062b,70,13,f +11999,3062b,4,16,f +11999,30663,71,2,f +11999,3068b,72,57,f +11999,3068b,28,2,f +11999,3068b,71,12,f +11999,3068b,320,11,f +11999,3068bpr0215,28,8,f +11999,3069b,70,1,t +11999,3069b,4,7,f +11999,3069b,73,3,f +11999,3069b,72,20,f +11999,3069b,0,2,f +11999,3069b,71,19,f +11999,3069b,70,4,f +11999,3069b,28,2,f +11999,3069b,19,30,f +11999,3069bpr0100,2,2,f +11999,3070b,71,9,f +11999,3070b,19,11,f +11999,3070b,70,3,f +11999,3070b,71,1,t +11999,3070b,72,3,f +11999,3070b,0,1,t +11999,3070b,70,1,t +11999,3070b,72,1,t +11999,3070b,19,2,t +11999,3070b,0,4,f +11999,3176,0,2,f +11999,32028,71,2,f +11999,32123b,71,2,f +11999,32123b,71,1,t +11999,32124,0,3,f +11999,3308,71,2,f +11999,33291,70,1,t +11999,33291,70,1,f +11999,3460,72,1,f +11999,3460,70,1,f +11999,3460,19,2,f +11999,3622,71,6,f +11999,3622,72,5,f +11999,3623,72,1,f +11999,3623,70,6,f +11999,3623,19,14,f +11999,3623,71,2,f +11999,3624,0,1,f +11999,3624,1,1,f +11999,3626c,47,2,f +11999,3626cpr0001,14,6,f +11999,3660,70,4,f +11999,3660,0,4,f +11999,3660,71,2,f +11999,3660,72,6,f +11999,3666,28,6,f +11999,3666,19,10,f +11999,3666,71,5,f +11999,3666,72,18,f +11999,3666,0,8,f +11999,3666,73,8,f +11999,3666,4,1,f +11999,3679,71,2,f +11999,3680,0,2,f +11999,3700,70,4,f +11999,3700,15,6,f +11999,3710,28,12,f +11999,3710,19,4,f +11999,3710,70,22,f +11999,3710,73,3,f +11999,3710,0,6,f +11999,3710,72,6,f +11999,3794a,297,24,f +11999,3794b,0,1,f +11999,3794b,19,14,f +11999,3795,0,3,f +11999,3795,28,3,f +11999,3795,72,6,f +11999,3811,4,1,f +11999,3821,0,1,f +11999,3822,0,1,f +11999,3829c01,15,1,f +11999,3832,4,2,f +11999,3832,0,1,f +11999,3941,71,5,f +11999,3958,72,1,f +11999,4032a,70,7,f +11999,4032a,0,1,f +11999,4070,19,6,f +11999,4081b,71,4,f +11999,41539,19,1,f +11999,4162,320,5,f +11999,4162,19,9,f +11999,41769,4,3,f +11999,41769,320,3,f +11999,41770,4,3,f +11999,41770,320,3,f +11999,41879a,85,1,f +11999,42610,71,4,f +11999,4282,73,2,f +11999,4282,71,1,f +11999,4345b,4,1,f +11999,4346,47,1,f +11999,43898,47,2,f +11999,43898,80,4,f +11999,44728,71,9,f +11999,4477,19,13,f +11999,4477,70,10,f +11999,4477,72,3,f +11999,4590,72,1,f +11999,4595,0,1,f +11999,4599b,4,1,t +11999,4599b,4,1,f +11999,4599b,15,1,f +11999,4599b,15,1,t +11999,46212,47,2,f +11999,4735,71,6,f +11999,47397,320,1,f +11999,47398,320,1,f +11999,4740,0,4,f +11999,4740,15,1,f +11999,47720,71,2,f +11999,47905,0,1,f +11999,48336,297,2,f +11999,4865a,47,4,f +11999,4865a,14,2,f +11999,4865b,28,3,f +11999,48729b,0,1,t +11999,48729b,0,2,f +11999,54200,19,2,t +11999,54200,297,3,t +11999,54200,0,2,t +11999,54200,0,4,f +11999,54200,19,4,f +11999,54200,297,31,f +11999,57895,47,3,f +11999,59349,47,2,f +11999,59900,40,3,f +11999,59900,70,16,f +11999,59900,0,2,f +11999,59900,72,1,f +11999,60208,71,2,f +11999,60477,0,2,f +11999,60478,72,2,f +11999,60478,71,12,f +11999,60592,70,20,f +11999,60596,70,3,f +11999,60596,0,1,f +11999,60601,47,20,f +11999,60623,0,1,f +11999,60849,0,3,f +11999,60849,0,1,t +11999,60897,71,12,f +11999,6106,71,2,f +11999,6108,19,1,f +11999,6111,71,19,f +11999,6111,72,2,f +11999,61409,72,2,f +11999,6141,70,1,t +11999,6141,0,6,f +11999,6141,27,1,t +11999,6141,46,48,f +11999,6141,4,14,f +11999,6141,15,1,t +11999,6141,36,4,f +11999,6141,46,2,t +11999,6141,27,3,f +11999,6141,47,1,t +11999,6141,70,22,f +11999,6141,71,7,f +11999,6141,29,4,f +11999,6141,0,1,t +11999,6141,29,1,t +11999,6141,15,8,f +11999,6141,36,1,t +11999,6141,47,1,f +11999,6141,71,2,t +11999,6141,4,1,t +11999,61485,0,1,f +11999,61506,19,1,f +11999,6178,15,1,f +11999,6182,19,6,f +11999,62462,0,4,f +11999,6266,0,18,f +11999,6266,0,2,t +11999,63864,72,7,f +11999,63864,320,3,f +11999,63965,71,2,f +11999,63965,0,2,f +11999,64644,0,2,f +11999,6541,72,4,f +11999,6541,4,8,f +11999,6636,70,2,f +11999,6636,71,17,f +11999,6636,19,6,f +11999,6636,72,25,f +11999,75c09,0,2,f +11999,76768,28,4,f +11999,85974,70,1,f +11999,85984,71,14,f +11999,85984,19,16,f +11999,87079,0,9,f +11999,87079,15,4,f +11999,87081,0,1,f +11999,87087,0,16,f +11999,87087,73,6,f +11999,87087,15,4,f +11999,87087,19,4,f +11999,87580,28,2,f +11999,87620,72,2,f +11999,87990,308,1,f +11999,87994,0,6,f +11999,88292,19,2,f +11999,88930,0,1,f +11999,91405,19,2,f +11999,92081,84,1,f +11999,92280,0,10,f +11999,92409,0,4,f +11999,92438,19,2,f +11999,92593,72,3,f +11999,92950,0,4,f +11999,93059,297,1,f +11999,93273,0,2,f +11999,96874,2,1,t +11999,970c00,4,1,f +11999,970c00,15,1,f +11999,970c00,0,2,f +11999,970c00,308,1,f +11999,973pr1184c01,0,1,f +11999,973pr1192c01,0,1,f +11999,973pr1633c01,4,1,f +11999,973pr1857c01,1,1,f +11999,973pr2001c01,85,1,f +11999,973pr2100c01,0,1,f +11999,98138,179,5,f +11999,98138,179,1,t +11999,98138,47,3,f +11999,98138,297,7,f +11999,98138,47,1,t +11999,98138,297,3,t +11999,98139,148,4,f +11999,98139,148,1,t +11999,98283,71,33,f +11999,98560,28,2,f +11999,99206,71,2,f +11999,99207,71,4,f +11999,99780,72,2,f +11999,99781,71,1,f +12001,2905,7,2,f +12001,2977c01,1,1,f +12001,3062b,34,2,f +12001,3062b,33,2,f +12001,3062b,46,2,f +12001,3062b,36,2,f +12001,3065,46,2,f +12001,3065,36,2,f +12001,3065,34,2,f +12001,3065,33,2,f +12001,32173,14,2,f +12001,32174,14,4,f +12001,32177,0,2,f +12001,32184,0,2,f +12001,32250,0,2,f +12001,32271,0,2,f +12001,32278,0,2,f +12001,32291,7,2,f +12001,32316,0,2,f +12001,5306bc020,0,2,f +12001,6035,15,1,f +12001,71128,383,1,f +12001,879,7,1,f +12001,x124,0,1,f +12002,2412b,72,2,f +12002,2654,0,1,f +12002,3002,15,1,f +12002,3023,71,1,f +12002,3024,36,1,f +12002,3024,34,1,f +12002,3069bpr0115,15,1,f +12002,3626cpr0889,14,1,f +12002,3665,0,1,f +12002,3666,1,2,f +12002,3666,15,2,f +12002,3794b,72,2,f +12002,3795,1,1,f +12002,3829c01,14,1,f +12002,43719,15,1,f +12002,4855,72,1,f +12002,4871,72,3,f +12002,52107,0,1,f +12002,54200,33,1,t +12002,54200,33,2,f +12002,57783,41,1,f +12002,60478,15,1,f +12002,61409,0,1,f +12002,63868,1,1,f +12002,90194,1,1,f +12002,970c00,272,1,f +12002,973pr1943c01,28,1,f +12002,97895,14,1,f +12002,98279,19,1,f +12004,2555,0,2,f +12004,2555,4,2,f +12004,2555,15,2,f +12004,3024,46,2,f +12004,3024,33,2,f +12004,3024,34,2,f +12004,3024,36,2,f +12004,3062b,33,2,f +12004,3062b,46,2,f +12004,3062b,34,2,f +12004,3062b,36,2,f +12004,3960,42,2,f +12004,4081b,15,2,f +12004,4081b,0,2,f +12004,4081b,4,2,f +12004,4085c,15,2,f +12004,4085c,4,2,f +12004,4085c,0,2,f +12004,4589,57,2,f +12004,4589,33,2,f +12004,4589,36,2,f +12004,4589,42,2,f +12004,4740,42,3,f +12004,4740,36,3,f +12004,6019,4,2,f +12004,6019,0,2,f +12004,6019,15,2,f +12004,6141,46,4,f +12004,6141,57,4,f +12004,6141,36,4,f +12004,6141,42,4,f +12004,6141,47,4,f +12004,6141,34,4,f +12005,2412b,71,1,f +12005,2412b,0,1,f +12005,3003,320,1,f +12005,3003,15,1,f +12005,3003,272,1,f +12005,3003,28,1,f +12005,30602,40,1,f +12005,30602,41,1,f +12005,3795,15,1,f +12005,3795,72,1,f +12005,4600,0,2,f +12005,4600,71,2,f +12005,4624,71,4,f +12005,4624,15,4,f +12005,59895,0,8,f +12005,6141,14,2,f +12005,6141,1,1,f +12005,6141,4,1,f +12005,85984,72,1,f +12005,85984,15,1,f +12007,15502pr0001,14,1,f +12007,3068bpr0016,15,1,f +12007,41879a,484,1,f +12007,88646,0,1,f +12007,973pr2618c01,322,1,f +12008,2780,0,1,t +12008,2780,0,1,f +12008,32002,72,1,t +12008,32002,72,4,f +12008,32039,0,4,f +12008,32062,4,7,f +12008,3749,19,1,f +12008,42003,0,1,f +12008,43093,1,7,f +12008,4519,71,3,f +12008,45274,135,1,f +12008,47299,135,4,f +12008,47306,320,1,f +12008,47312,72,1,f +12008,48989,71,1,f +12008,53544,135,1,f +12008,53549,320,2,f +12008,53564,135,1,f +12008,53574,135,4,f +12008,57536,42,1,f +12008,57585,71,1,f +12008,60176,0,5,f +12008,61054,320,4,f +12008,61788,320,1,f +12008,61795,135,3,f +12008,61800,320,2,f +12008,61801,135,4,f +12008,61806,135,2,f +12008,61808,135,1,f +12008,61810,40,1,f +12008,61811,148,2,f +12008,6558,1,1,f +12008,6587,72,1,f +12009,3007,15,25,f +12010,777p02,15,1,f +12010,777p05,15,1,f +12010,777p06,15,1,f +12010,777p08,15,1,f +12010,777p09,15,1,f +12010,777p11,15,1,f +12011,11203,72,1,f +12011,11399,72,2,f +12011,11477,70,2,f +12011,15392,72,1,t +12011,15392,72,2,f +12011,15403,320,2,f +12011,15712,71,3,f +12011,18975,72,1,f +12011,21777,308,1,f +12011,23711,19,1,f +12011,2412b,179,5,f +12011,2412b,320,3,f +12011,2420,72,1,f +12011,2431,484,2,f +12011,2431,25,2,f +12011,2654,47,2,f +12011,2654,72,6,f +12011,298c02,71,2,f +12011,298c02,71,1,t +12011,3003,320,2,f +12011,3004,320,1,f +12011,30194,72,1,f +12011,3020,70,3,f +12011,3021,0,2,f +12011,3021,72,1,f +12011,3022,320,3,f +12011,3022,0,1,f +12011,3022,71,1,f +12011,3023,33,1,f +12011,3023,70,4,f +12011,3024,320,1,t +12011,3024,320,2,f +12011,30304,72,1,f +12011,3034,72,1,f +12011,30374,71,2,f +12011,30381,72,1,f +12011,3062b,71,2,f +12011,3068b,28,1,f +12011,3069b,71,4,f +12011,3070b,320,1,t +12011,3070b,70,1,t +12011,3070b,320,1,f +12011,3070b,70,2,f +12011,3176,71,1,f +12011,32062,4,1,f +12011,32123b,71,1,t +12011,32123b,71,2,f +12011,32187,71,2,f +12011,3245b,72,1,f +12011,3623,320,5,f +12011,3626cpr1778,78,1,f +12011,3626cpr1779,148,1,f +12011,3700,0,1,f +12011,3710,320,4,f +12011,3795,320,2,f +12011,3795,71,2,f +12011,3941,71,1,f +12011,4032a,72,2,f +12011,4081b,71,2,f +12011,44728,72,2,f +12011,45677,320,2,f +12011,50950,320,2,f +12011,54200,47,2,f +12011,54200,47,1,t +12011,55013,72,1,f +12011,6005,320,4,f +12011,6081,320,3,f +12011,60849,0,1,f +12011,60849,0,1,t +12011,60897,72,4,f +12011,6091,320,7,f +12011,6141,72,1,t +12011,6141,36,10,f +12011,6141,72,2,f +12011,6141,36,1,t +12011,61780,72,1,f +12011,61976,70,1,f +12011,63868,72,1,f +12011,64567,0,2,f +12011,64567,71,1,t +12011,64567,0,1,t +12011,64567,71,1,f +12011,6575,0,1,f +12011,76766,71,1,f +12011,85984,320,4,f +12011,85984,72,1,f +12011,87087,0,4,f +12011,87994,0,1,t +12011,87994,0,1,f +12011,92280,71,4,f +12011,92585,297,1,f +12011,970c00pr0931,72,1,f +12011,970c00pr0932,28,1,f +12011,973pr3144c01,72,1,f +12011,973pr3145c01,71,1,f +12011,98100,71,2,f +12011,98138,33,1,t +12011,98138,33,2,f +12011,98834,72,2,f +12011,99206,0,7,f +12011,99780,71,7,f +12011,99781,0,2,f +12015,13731,14,4,f +12015,2376,0,2,f +12015,2412b,320,28,f +12015,2419,72,2,f +12015,2431,320,8,f +12015,2431,14,3,f +12015,2432,71,5,f +12015,2434,0,1,f +12015,2444,0,1,f +12015,2445,71,2,f +12015,2450,0,2,f +12015,2458,14,2,f +12015,2462,14,2,f +12015,2476a,71,4,f +12015,2508,0,1,f +12015,2780,0,2,f +12015,2780,0,1,t +12015,298c02,4,1,f +12015,298c02,4,1,t +12015,30000,72,2,f +12015,3001,14,1,f +12015,3003,14,2,f +12015,3003,71,1,f +12015,3004,4,2,f +12015,3007,14,3,f +12015,30089,0,1,f +12015,3010,1,2,f +12015,30136,72,2,f +12015,30150,70,1,f +12015,30162,72,1,f +12015,30170,72,1,f +12015,30171,70,1,f +12015,3020,72,5,f +12015,3021,0,2,f +12015,3021,70,5,f +12015,3021,71,4,f +12015,3022,14,2,f +12015,3022,4,4,f +12015,3023,0,3,f +12015,3023,4,4,f +12015,3023,71,2,f +12015,30332,0,1,f +12015,3034,2,5,f +12015,3034,14,1,f +12015,30360,71,2,f +12015,30367b,72,2,f +12015,30395,72,1,f +12015,3039pr0002,15,1,f +12015,30414,4,10,f +12015,30592,71,1,f +12015,30602pr0003,14,1,f +12015,3062b,0,1,f +12015,3068b,19,1,f +12015,32000,71,4,f +12015,32013,71,3,f +12015,32028,71,2,f +12015,32054,0,2,f +12015,32064a,72,8,f +12015,32124,0,12,f +12015,32192,0,8,f +12015,32525,14,2,f +12015,32556,19,3,f +12015,3308,14,1,f +12015,3623,14,2,f +12015,3626cpr0920,14,1,f +12015,3626cpr0930,14,1,f +12015,3660,14,9,f +12015,3665,14,2,f +12015,3666,15,2,f +12015,3666,72,2,f +12015,3673,71,1,f +12015,3673,71,1,t +12015,3700,15,4,f +12015,3701,14,4,f +12015,3705,0,2,f +12015,3710,71,6,f +12015,3710,0,11,f +12015,3713,71,1,f +12015,3794a,15,1,f +12015,3794a,72,4,f +12015,3795,72,1,f +12015,3795,1,2,f +12015,3829c01,71,1,f +12015,3832,0,3,f +12015,3839b,71,1,f +12015,3941,4,1,f +12015,4032a,1,3,f +12015,4079b,70,2,f +12015,4162,14,4,f +12015,41770,0,6,f +12015,42023,14,2,f +12015,42610,71,2,f +12015,4274,1,2,f +12015,4274,1,2,t +12015,4282,72,1,f +12015,43093,1,9,f +12015,43712,72,1,f +12015,44675,14,2,f +12015,4477,71,2,f +12015,4477,0,6,f +12015,4519,71,6,f +12015,45301,72,1,f +12015,4590,72,2,f +12015,47397,72,2,f +12015,47398,72,2,f +12015,4740,0,2,f +12015,48336,0,1,f +12015,4864b,47,2,f +12015,4871,14,2,f +12015,48729b,0,1,t +12015,48729b,0,1,f +12015,50951,0,2,f +12015,52031,14,1,f +12015,54200,14,1,t +12015,54200,14,4,f +12015,56902,71,4,f +12015,5886stk01,9999,1,t +12015,59900,42,4,f +12015,59900,71,2,f +12015,6014b,71,6,f +12015,60169,72,2,f +12015,60219,14,1,f +12015,60471,71,1,f +12015,60477,14,2,f +12015,60478,14,4,f +12015,6060,0,4,f +12015,6081,72,6,f +12015,6087,71,2,f +12015,60897,71,2,f +12015,6091,14,4,f +12015,6091,15,2,f +12015,61184,71,2,f +12015,61252,71,2,f +12015,61254,0,4,f +12015,61409,72,2,f +12015,61409,14,6,f +12015,6141,71,10,f +12015,6141,36,1,f +12015,6141,36,1,t +12015,6141,34,1,t +12015,6141,47,1,t +12015,6141,47,1,f +12015,6141,34,1,f +12015,6141,71,2,t +12015,6157,71,3,f +12015,6215,14,4,f +12015,6239,72,1,f +12015,62462,14,4,f +12015,62576,47,1,f +12015,62743,0,6,f +12015,62810,0,1,f +12015,63082,71,1,f +12015,63868,71,4,f +12015,64394,14,1,f +12015,64566,14,1,f +12015,64680,14,1,f +12015,6558,1,2,f +12015,6587,28,2,f +12015,87079,14,8,f +12015,87087,14,4,f +12015,87580,320,1,f +12015,87697,0,6,f +12015,87989,27,2,f +12015,90194,72,2,f +12015,92582,15,1,f +12015,92947,71,2,f +12015,93273,14,1,f +12015,93274,14,1,f +12015,970c00pr0310,19,1,f +12015,970x308,326,1,f +12015,973pr1999c01,326,1,f +12015,973pr2010c01,19,1,f +12015,98057pr0001,484,1,f +12015,98058pr0001,484,1,f +12015,98059pr0001,484,1,f +12015,98159pr0001,484,1,f +12015,98160pr0001,320,1,f +12015,98161pr0001,484,1,f +12015,98162pr01,484,1,f +12015,98163pr01,484,1,f +12015,99809,148,2,f +12016,10111apr0006,0,1,f +12016,12061,484,1,f +12016,12099,15,1,f +12016,12113,179,1,f +12016,12602,1,2,f +12016,12602,4,2,f +12016,12651,4,1,f +12016,12651,1,1,f +12016,13358,0,1,f +12016,14786,71,1,f +12016,15613a,71,4,f +12016,18018,179,1,f +12016,18454,41,2,f +12016,2223,0,1,f +12016,2224,72,1,f +12016,3011,4,1,f +12016,3011,10,1,f +12016,3011,15,3,f +12016,3011,2,2,f +12016,31023,15,1,f +12016,31110,4,6,f +12016,31171,179,1,f +12016,3437,14,2,f +12016,3437,25,2,f +12016,3437,15,1,f +12016,3437,72,1,f +12016,3437,4,2,f +12016,3437,10,1,f +12016,3437,484,3,f +12016,40666,1,1,f +12016,40666,4,1,f +12016,40666,72,1,f +12016,40666,484,1,f +12016,44524,72,6,f +12016,4672,72,2,f +12016,47414,0,1,f +12016,47437,15,1,f +12016,47440,4,1,f +12016,47510pr0006,15,1,f +12016,47511pr0007,15,1,f +12016,47517,0,2,f +12016,48842,15,1,f +12016,51260,15,2,f +12016,51261,15,1,f +12016,51262,72,4,f +12016,51703,41,1,f +12016,51703,182,1,f +12016,51704,1,1,f +12016,51704,4,1,f +12016,53916,15,1,f +12016,58233,15,1,f +12016,60770,4,1,f +12016,61310,72,1,f +12016,63871,4,2,f +12016,6394,4,2,f +12016,6427,4,1,f +12016,6461,15,1,f +12016,6510,2,1,f +12016,75113pr0005,4,1,f +12016,75115bpr0004,15,1,f +12016,75121,15,1,f +12016,76338,212,1,f +12016,76371,4,8,f +12016,76371,15,16,f +12016,90265,1,3,f +12016,92094,4,1,f +12016,93242,272,1,f +12016,94901,71,1,f +12016,94902,15,1,f +12016,95440,15,1,f +12016,98457,15,2,f +12016,98465,0,1,f +12016,98465,212,1,f +12017,281,14,1,f +12017,3001,14,2,f +12017,3001,1,4,f +12017,3003,14,2,f +12017,3003,1,3,f +12017,3004,14,3,f +12017,3004,1,3,f +12017,3032,14,1,f +12017,3888ac01,4,1,f +12017,691,1,1,f +12017,692,1,1,f +12017,fab9d,9999,1,f +12020,3001,15,2,f +12020,3001,14,2,f +12020,3001,4,2,f +12020,3001,1,2,f +12020,3001,2,2,f +12020,3001,0,2,f +12020,3002,0,2,f +12020,3002,1,2,f +12020,3002,14,4,f +12020,3002,15,4,f +12020,3002,4,2,f +12020,3002,2,2,f +12020,3003,2,6,f +12020,3003,33,8,f +12020,3003,14,6,f +12020,3003,15,8,f +12020,3003,36,8,f +12020,3003,4,6,f +12020,3003,0,6,f +12020,3003,1,6,f +12020,3004,1,6,f +12020,3004,4,6,f +12020,3004,15,10,f +12020,3004,14,8,f +12020,3004,2,8,f +12020,3004,0,10,f +12020,3005,15,8,f +12020,3005,0,8,f +12020,3005,1,8,f +12020,3005,4,8,f +12020,3005pe1,14,2,f +12020,3010,14,2,f +12020,3010,15,2,f +12020,3010,2,2,f +12020,3020,15,2,f +12020,3020,0,2,f +12020,3021,15,2,f +12020,3022,0,2,f +12020,3022,15,2,f +12020,3039,33,2,f +12020,3039,36,2,f +12020,3040b,14,2,f +12020,3065,33,6,f +12020,3065,36,6,f +12020,3665,14,2,f +12022,32439a,9999,4,f +12023,54190,47,1,f +12024,11211,19,2,f +12024,14417,72,2,f +12024,14419,72,4,f +12024,14704,71,2,f +12024,14769,4,1,f +12024,2450,0,2,f +12024,3020,0,2,f +12024,3021,28,1,f +12024,3022,19,2,f +12024,3023,19,4,f +12024,3023,28,4,f +12024,3665,19,2,f +12024,3937,0,1,f +12024,4032a,0,2,f +12024,4081b,19,2,f +12024,54200,28,6,f +12024,54200,40,1,t +12024,54200,28,1,t +12024,54200,40,6,f +12024,60478,0,2,f +12024,61252,0,4,f +12024,6134,4,1,f +12024,6141,15,6,f +12024,6141,15,1,t +12024,87087,19,2,f +12024,87580,28,2,f +12024,87747,179,1,t +12024,87747,179,8,f +12024,98138pr0008,15,1,t +12024,98138pr0008,15,2,f +12025,3001,4,12,f +12025,3002,4,6,f +12025,3003,4,10,f +12025,3004,4,6,f +12025,3005,4,2,f +12025,3006,4,1,f +12025,3007,4,1,f +12025,3008,4,2,f +12025,3009,4,2,f +12025,3010,4,2,f +12025,3622,4,2,f +12029,3711a,0,35,f +12031,2780,0,20,f +12031,2850a,47,8,f +12031,2851,1,8,f +12031,2852,7,8,f +12031,2853,7,2,f +12031,2854,0,3,f +12031,32062,0,1,t +12031,32062,0,3,f +12031,32333,0,2,f +12031,4519,7,1,f +12032,2458,15,1,f +12032,3020,0,1,f +12032,3021,0,1,f +12032,3039,47,1,f +12032,3069bpr0016,15,1,f +12032,3069bpr0016,15,1,t +12032,3660,15,1,f +12032,6141,46,1,f +12032,6141,46,2,t +12032,6564,15,1,f +12032,6565,15,1,f +12036,2654,72,1,f +12036,3004,27,2,f +12036,3022,27,1,f +12036,3626bpr0749,15,1,f +12036,4621834,9999,1,f +12036,4621835,9999,1,f +12036,4621836,9999,1,f +12036,4621837,9999,1,f +12036,4621838,9999,1,f +12036,60752,297,1,f +12036,63965,70,1,f +12036,92547pr0006,0,1,f +12036,92691,15,1,f +12036,93062c01,15,2,f +12036,93609,15,2,f +12036,93763pr0003,15,1,f +12036,94352pr0004,0,1,f +12038,3001,15,8,f +12038,3001,1,4,f +12038,3002,15,4,f +12038,3002,1,2,f +12038,3002,4,2,f +12038,3003,1,6,f +12038,3003,4,6,f +12038,3003,15,20,f +12038,3004,4,6,f +12038,3004,1,6,f +12038,3004,15,16,f +12038,3005,4,4,f +12038,3005,1,4,f +12038,3005,15,6,f +12038,3007,15,4,f +12038,3007,1,2,f +12038,3008,15,2,f +12038,3009,1,2,f +12038,3009,15,4,f +12038,3010,4,2,f +12038,3010,15,4,f +12038,3010,1,2,f +12038,3297,4,20,f +12038,3298,4,12,f +12038,3299,4,6,f +12038,3300,4,6,f +12038,33303,15,8,f +12038,3471,2,2,f +12038,3622,15,2,f +12038,4201,2,3,f +12038,4202,2,2,f +12038,4286,4,8,f +12038,4727,10,4,f +12038,4728,15,2,f +12038,4728,14,2,f +12038,600,15,4,f +12038,601,15,20,f +12038,6064,2,2,f +12038,6235,4,4,f +12038,6236,4,10,f +12039,3001,4,2,f +12039,3001,1,2,f +12039,3001,15,2,f +12041,30103,0,1,f +12041,3020,0,3,f +12041,3062b,34,1,f +12041,4589,42,1,t +12041,4589,42,1,f +12041,4864b,0,4,f +12041,6141,36,1,t +12041,6141,33,1,t +12041,6141,36,1,f +12041,6141,33,1,f +12043,15362,72,5,f +12043,24014,71,3,f +12043,2412b,179,4,f +12043,24162pat0006,179,1,f +12043,24188,148,2,f +12043,24191,179,1,f +12043,2431,72,4,f +12043,2780,0,1,t +12043,2780,0,2,f +12043,2825,0,1,f +12043,30552,71,1,f +12043,30552,72,4,f +12043,30553,72,1,f +12043,32002,19,1,t +12043,32002,19,1,f +12043,32073,14,1,f +12043,32192,72,2,f +12043,42003,10,1,f +12043,4274,71,1,t +12043,4274,71,3,f +12043,43093,1,5,f +12043,53451,14,5,f +12043,53451,14,1,t +12043,53551,179,6,f +12043,55236,27,4,f +12043,57906,35,4,f +12043,58176,36,1,f +12043,59443,14,1,f +12043,63869,71,2,f +12043,64272,179,1,f +12043,6553,72,4,f +12043,6558,1,1,f +12043,87082,0,2,f +12043,90611,35,3,f +12043,93571,0,4,f +12043,98313,179,6,f +12043,98590,0,1,f +12045,10907,320,1,f +12045,10908pr0006,320,1,f +12045,11153,15,2,f +12045,11301,71,3,f +12045,11477,72,4,f +12045,11833,272,2,f +12045,14226c31,0,1,f +12045,14704,71,2,f +12045,14769,0,3,f +12045,15068,272,5,f +12045,15392,72,4,f +12045,15403,0,4,f +12045,15456,0,1,f +12045,15461,0,1,f +12045,15573,15,2,f +12045,15712,0,4,f +12045,17979,272,4,f +12045,18663,47,1,f +12045,18677,71,4,f +12045,18895,0,1,f +12045,18896,0,1,f +12045,19303pr0002,179,1,f +12045,19305pr0002,179,1,f +12045,20877,484,1,f +12045,21841,14,1,f +12045,2357,0,2,f +12045,2412b,71,1,f +12045,2412b,179,2,f +12045,2412b,36,2,f +12045,2415,71,1,f +12045,2420,0,4,f +12045,2445,0,2,f +12045,2449,72,2,f +12045,2450,15,2,f +12045,2450,71,2,f +12045,2540,0,2,f +12045,2540,15,4,f +12045,2540,72,4,f +12045,2654,72,1,f +12045,2654,0,3,f +12045,2730,71,2,f +12045,2780,0,12,f +12045,2817,0,1,f +12045,2877,0,1,f +12045,2921,0,6,f +12045,298c02,71,2,f +12045,30031,71,1,f +12045,3004,71,2,f +12045,3004,73,2,f +12045,3005,71,2,f +12045,30157,71,1,f +12045,3020,14,1,f +12045,3020,72,5,f +12045,3020,15,1,f +12045,3020,71,1,f +12045,3021,15,2,f +12045,3021,0,3,f +12045,3022,0,2,f +12045,3022,71,4,f +12045,3022,72,2,f +12045,3023,0,5,f +12045,3023,46,3,f +12045,3023,72,3,f +12045,3023,33,27,f +12045,3023,71,2,f +12045,3024,182,2,f +12045,3024,15,8,f +12045,3024,33,2,f +12045,3032,71,1,f +12045,3034,71,1,f +12045,30350b,72,1,f +12045,3040b,0,2,f +12045,3040b,15,2,f +12045,30504,15,2,f +12045,30504,71,2,f +12045,30526,71,1,f +12045,30565,272,4,f +12045,3062b,4,1,f +12045,3062b,57,3,f +12045,3062b,72,2,f +12045,3062b,41,3,f +12045,3068b,0,1,f +12045,3068b,72,3,f +12045,3069b,0,4,f +12045,3069b,15,4,f +12045,3069b,272,2,f +12045,3070b,15,2,f +12045,3070b,0,4,f +12045,32000,15,1,f +12045,32001,71,1,f +12045,32013,71,1,f +12045,32018,0,4,f +12045,32028,15,2,f +12045,32056,0,2,f +12045,32059,72,1,f +12045,32062,4,2,f +12045,32123b,14,1,f +12045,32532,0,2,f +12045,32555,0,2,f +12045,3460,71,4,f +12045,3464,72,1,f +12045,3622,71,2,f +12045,3623,72,6,f +12045,3623,0,2,f +12045,3626cpr0961,78,1,f +12045,3626cpr1651,272,1,f +12045,3626cpr1667,57,1,f +12045,3626cpr1672,26,1,f +12045,3626cpr1673,78,1,f +12045,3660,71,4,f +12045,3660,73,2,f +12045,3660,0,2,f +12045,3665,71,4,f +12045,3666,72,7,f +12045,3666,71,1,f +12045,3673,71,16,f +12045,3700,71,2,f +12045,3701,71,5,f +12045,3705,0,1,f +12045,3710,14,3,f +12045,3710,15,4,f +12045,3710,0,1,f +12045,3710,1,1,f +12045,3710,71,6,f +12045,3713,71,1,f +12045,3749,19,3,f +12045,3795,71,2,f +12045,3795,0,3,f +12045,3795,15,3,f +12045,3821,0,1,f +12045,3822,0,1,f +12045,3829c01,0,1,f +12045,3839b,71,4,f +12045,3958,71,2,f +12045,4006,0,1,f +12045,4032a,1,4,f +12045,4070,71,4,f +12045,41532,0,4,f +12045,41669,47,4,f +12045,41747,15,1,f +12045,41748,15,1,f +12045,4176,40,1,f +12045,41764,71,1,f +12045,41765,71,1,f +12045,41769,72,1,f +12045,41770,72,1,f +12045,42610,71,2,f +12045,4274,1,17,f +12045,4286,71,4,f +12045,43093,1,4,f +12045,43722,0,2,f +12045,43722,71,1,f +12045,43723,71,1,f +12045,43723,0,2,f +12045,44676,272,4,f +12045,4488,71,4,f +12045,45705,33,1,f +12045,4595,0,4,f +12045,4599b,4,1,f +12045,47406,0,1,f +12045,47455,0,2,f +12045,47457,4,1,f +12045,48171,72,2,f +12045,48336,0,1,f +12045,4865a,72,3,f +12045,48933,71,1,f +12045,48989,71,2,f +12045,50304,71,1,f +12045,50305,71,1,f +12045,50861,0,2,f +12045,50862,71,2,f +12045,50950,0,2,f +12045,50950,71,4,f +12045,50955,15,1,f +12045,50956,15,1,f +12045,51739,272,3,f +12045,51739,71,8,f +12045,51739,0,3,f +12045,52031,0,1,f +12045,52107,4,2,f +12045,52501,0,3,f +12045,52501,72,1,f +12045,54200,71,2,f +12045,54200,36,2,f +12045,54200,272,4,f +12045,54383,15,2,f +12045,54383,0,1,f +12045,54384,0,1,f +12045,54384,15,2,f +12045,55013,72,1,f +12045,58176,33,4,f +12045,59895,0,1,f +12045,6014b,71,4,f +12045,60219,0,1,f +12045,60470a,71,3,f +12045,60471,0,4,f +12045,60476,0,2,f +12045,60476,15,2,f +12045,60477,15,4,f +12045,60478,0,4,f +12045,60478,15,2,f +12045,60581,71,3,f +12045,60657,71,1,f +12045,60658,71,1,f +12045,6081,15,1,f +12045,60897,0,4,f +12045,6091,71,2,f +12045,6112,0,2,f +12045,61252,71,2,f +12045,61409,0,6,f +12045,61409,72,12,f +12045,6141,41,3,f +12045,6141,33,12,f +12045,6141,57,3,f +12045,6141,179,4,f +12045,6180,15,2,f +12045,6249,71,1,f +12045,62531,0,2,f +12045,63864,71,2,f +12045,6541,0,2,f +12045,6558,1,4,f +12045,6583,0,1,f +12045,6628,0,1,f +12045,6636,71,12,f +12045,6636,0,2,f +12045,75902pr0004,4,1,f +12045,85984,71,2,f +12045,85984,0,1,f +12045,87079,71,4,f +12045,87079,72,1,f +12045,87580,0,2,f +12045,87615,272,1,f +12045,87620,1,6,f +12045,87697,0,4,f +12045,87994,15,4,f +12045,88930,71,6,f +12045,88930,272,1,f +12045,90194,72,1,f +12045,90258,72,2,f +12045,91988,71,2,f +12045,92099,72,2,f +12045,92280,0,6,f +12045,92280,71,1,f +12045,92409,0,2,f +12045,92474,47,1,f +12045,92593,0,4,f +12045,92950,71,2,f +12045,93095,0,1,f +12045,93273,272,3,f +12045,93273,71,4,f +12045,93274,71,6,f +12045,93606,272,2,f +12045,93606,15,4,f +12045,95199,72,2,f +12045,96874,25,1,t +12045,970c00,272,1,f +12045,970c00pr0843,320,1,f +12045,970c00pr0849,179,1,f +12045,970c00pr0853,0,1,f +12045,970c00pr0854,378,1,f +12045,973pr2985c01,272,1,f +12045,973pr2995c01,320,1,f +12045,973pr3006c01,179,1,f +12045,973pr3013c01,0,1,f +12045,973pr3014c01,378,1,f +12045,98138,71,2,f +12045,98138,47,2,f +12045,98282,0,4,f +12045,98286,71,2,f +12045,99207,71,4,f +12045,99780,0,5,f +12045,99780,72,5,f +12047,2452,0,1,f +12047,2508,7,1,f +12047,2880,0,2,f +12047,2880,4,2,f +12047,3149c01,4,1,f +12047,3149c01,0,1,f +12047,3403,4,1,f +12047,3404,4,1,f +12047,3679,7,2,f +12047,3680,15,1,f +12047,3680,0,1,f +12047,3730,4,1,f +12047,3730,7,1,f +12047,3731,4,1,f +12047,4275b,0,2,f +12047,4275b,4,2,f +12047,4276b,4,2,f +12047,4276b,0,2,f +12047,4531,7,2,f +12047,4531,0,2,f +12048,3626bpb0112,14,1,f +12048,3626bpb0117,14,1,f +12048,3626bpb0161,14,1,f +12048,3626bpb0162,14,1,f +12048,3626bpb0164,14,1,f +12048,43702pr0001,25,1,f +12048,973bc01,15,5,f +12048,x494cx1,15,5,f +12049,4204,2,3,f +12049,4204,72,3,f +12049,4204,4,3,f +12051,2436,0,1,f +12051,2540,72,3,f +12051,30027b,71,4,f +12051,30028,0,4,f +12051,3004,0,4,f +12051,3021,0,2,f +12051,3022,0,1,f +12051,3023,72,1,f +12051,3024,36,4,f +12051,3031,0,1,f +12051,3065,47,4,f +12051,3069b,0,4,f +12051,3623,0,2,f +12051,3788,0,2,f +12051,3795,72,2,f +12051,4600,71,2,f +12051,4865a,47,1,f +12051,6141,47,1,t +12051,6141,47,4,f +12052,10928,72,2,f +12052,11214,72,4,f +12052,11478,0,6,f +12052,11946,0,1,f +12052,11947,0,1,f +12052,13971,71,6,f +12052,18575,19,1,f +12052,2780,0,90,f +12052,2780,0,2,t +12052,2850b,71,4,f +12052,2851,14,4,f +12052,2852,71,4,f +12052,2853,71,2,f +12052,2854,19,1,f +12052,32002,19,1,t +12052,32002,19,4,f +12052,32009,0,2,f +12052,32013,14,4,f +12052,32034,71,2,f +12052,32054,4,8,f +12052,32054,0,16,f +12052,32062,4,22,f +12052,32063,14,4,f +12052,32065,0,2,f +12052,32073,71,3,f +12052,32123b,14,7,f +12052,32123b,14,1,t +12052,32140,0,2,f +12052,32140,14,10,f +12052,32140,1,1,f +12052,32184,71,4,f +12052,32270,0,2,f +12052,32271,14,6,f +12052,32271,71,3,f +12052,32278,14,6,f +12052,32278,71,1,f +12052,32291,0,2,f +12052,32316,14,8,f +12052,32316,0,1,f +12052,32333,71,2,f +12052,32449,72,8,f +12052,32523,14,12,f +12052,32524,14,7,f +12052,32525,14,7,f +12052,32556,19,6,f +12052,32557,71,2,f +12052,33299a,0,6,f +12052,3673,71,1,t +12052,3673,71,4,f +12052,3705,0,3,f +12052,3706,0,2,f +12052,3713,71,13,f +12052,3713,71,1,t +12052,3749,19,1,f +12052,3749,19,1,t +12052,3941,0,1,f +12052,40490,14,13,f +12052,41677,1,4,f +12052,4185,14,2,f +12052,42003,14,18,f +12052,4274,1,1,t +12052,4274,1,8,f +12052,43093,1,29,f +12052,43857,14,5,f +12052,44294,71,11,f +12052,4519,71,6,f +12052,4716,71,2,f +12052,4740,0,1,f +12052,55013,72,4,f +12052,57520,0,6,f +12052,59426,72,1,t +12052,59426,72,4,f +12052,59443,0,2,f +12052,59443,14,4,f +12052,60483,0,11,f +12052,60485,71,1,f +12052,6141,47,6,f +12052,6141,47,1,t +12052,62462,0,4,f +12052,62821,72,1,f +12052,63869,71,5,f +12052,64179,71,1,f +12052,64391,14,1,f +12052,64683,14,1,f +12052,64782,14,1,f +12052,6536,71,16,f +12052,6553,0,1,f +12052,6558,1,32,f +12052,6587,28,5,f +12052,6589,19,1,t +12052,6589,19,3,f +12052,6632,14,4,f +12052,87080,14,1,f +12052,87082,0,5,f +12052,87083,72,2,f +12052,87086,14,1,f +12052,87761,0,4,f +12052,88323,72,62,f +12052,92907,0,3,f +12052,94925,71,2,f +12052,99008,19,2,f +12053,30598,4,1,f +12053,30600pb06,73,1,f +12053,30602pb004,73,1,f +12053,racerbase,15,1,f +12054,2432,7,1,f +12054,2433,0,1,f +12054,2524,6,1,f +12054,2540,0,2,f +12054,2542,4,3,f +12054,2555,14,4,f +12054,2569,7,1,f +12054,2610,14,3,f +12054,2654,0,4,f +12054,298c02,4,1,f +12054,3004,7,1,f +12054,3023,7,2,f +12054,3023,15,1,f +12054,3023,4,1,f +12054,3070b,15,1,f +12054,3460,14,2,f +12054,3623,1,1,f +12054,3626bp02,14,1,f +12054,3626bp7e,14,2,f +12054,3629,7,1,f +12054,3700,14,4,f +12054,3749,7,4,f +12054,3794a,15,1,f +12054,3794a,7,2,f +12054,3835,7,1,f +12054,3837,8,1,f +12054,3841,8,1,f +12054,3901,0,1,f +12054,3937,7,1,f +12054,3938,7,1,f +12054,3942c,14,4,f +12054,4032a,0,4,f +12054,4081b,4,1,f +12054,4151a,0,1,f +12054,4477,14,2,f +12054,4485,1,1,f +12054,4599a,7,1,f +12054,6019,7,1,f +12054,6081,14,4,f +12054,6141,46,1,f +12054,970c00,1,1,f +12054,970c00,15,1,f +12054,970c00,2,1,f +12054,973p70c01,6,1,f +12054,973p73c01,2,1,f +12054,973px2c01,1,1,f +12055,2420,70,2,f +12055,2446,15,1,f +12055,2490pr0002,272,1,f +12055,2586p4h,71,1,f +12055,2586px14,71,1,f +12055,2587pr0014,0,1,f +12055,2587pr19,135,1,f +12055,2594,80,1,f +12055,3004,15,1,f +12055,3009,72,1,f +12055,30136,70,5,f +12055,3021,70,2,f +12055,3023,15,1,f +12055,3023,70,3,f +12055,30237a,70,3,f +12055,3048c,297,6,f +12055,3062b,71,2,f +12055,3626bpr0348,14,1,f +12055,3626bpr0494,15,1,f +12055,3659,71,4,f +12055,3666,272,1,f +12055,3794a,272,4,f +12055,3847,135,1,f +12055,3848,72,1,f +12055,3849,135,1,f +12055,3849,0,1,f +12055,3957a,0,2,f +12055,4495b,272,1,f +12055,4495b,82,1,f +12055,48492,297,1,f +12055,48493,0,1,f +12055,59228,0,1,f +12055,59229,72,1,f +12055,59232,135,1,f +12055,75998pr0007,15,1,f +12055,970c00,72,1,f +12055,970x154,0,1,f +12055,973c42,0,1,f +12055,973c47,71,1,f +12056,14418,71,2,f +12056,14769,19,4,f +12056,15068,19,4,f +12056,15672,19,2,f +12056,2431,70,4,f +12056,2456,70,4,f +12056,3001,70,2,f +12056,3004,19,1,f +12056,3004,322,1,f +12056,3005,19,2,f +12056,3008,19,1,f +12056,3008,70,1,f +12056,3009,322,4,f +12056,3010,70,2,f +12056,3020,322,1,f +12056,3021,19,3,f +12056,3022,19,7,f +12056,3022,72,1,f +12056,3023,19,11,f +12056,3023,70,8,f +12056,3024,70,1,t +12056,3024,70,2,f +12056,3024,19,3,t +12056,3024,19,8,f +12056,3030,71,2,f +12056,3031,70,1,f +12056,3035,70,2,f +12056,30367c,0,1,f +12056,30367c,70,36,f +12056,3039,70,1,f +12056,3068b,5,1,f +12056,3069b,70,2,f +12056,3660,19,2,f +12056,3665,19,2,f +12056,3665,70,4,f +12056,3666,19,2,f +12056,3666,70,4,f +12056,3700,70,26,f +12056,3710,70,8,f +12056,3749,19,22,f +12056,3795,30,4,f +12056,3795,70,2,f +12056,3937,71,3,f +12056,4477,70,3,f +12056,54200,70,1,t +12056,54200,70,2,f +12056,6091,19,8,f +12056,6134,15,3,f +12056,6141,70,2,t +12056,6141,70,8,f +12056,6636,70,5,f +12056,85984,19,3,f +12057,11477,85,2,f +12057,11602pr0002,0,1,f +12057,15070,297,2,f +12057,2449,85,2,f +12057,30153,47,1,f +12057,3021,27,1,f +12057,3022,85,1,f +12057,3023,27,1,f +12057,33322,297,1,f +12057,53451,0,2,f +12057,59900,26,8,f +12057,59900,35,1,f +12057,60897,0,2,f +12057,87580,26,1,f +12060,2335px21,15,1,f +12060,2343,14,1,f +12060,2488,2,1,f +12060,2561,70,1,f +12060,3001,0,2,f +12060,3003,15,2,f +12060,3004,15,2,f +12060,30055,1,1,f +12060,30056,1,2,f +12060,3010,15,2,f +12060,30103,0,1,f +12060,30104,71,1,f +12060,30115,4,1,f +12060,30137,15,1,f +12060,30145,1,2,f +12060,30165,0,6,f +12060,30169,4,1,f +12060,30176,2,1,f +12060,30236,72,4,f +12060,30238,57,1,f +12060,30239,2,2,f +12060,30240,0,2,f +12060,3036,71,1,f +12060,3062b,0,3,f +12060,32074c01,72,1,f +12060,3957a,1,1,f +12060,4202,0,1,f +12060,43887,383,1,f +12060,43887,15,1,f +12060,45695,72,2,f +12060,47855,1,1,f +12060,4794b,70,2,f +12060,47973,71,1,f +12060,47974c01,72,1,f +12060,47976,71,2,f +12060,47976,0,1,f +12060,47978,0,1,f +12060,47991,71,1,f +12060,48002b,0,1,f +12060,48003,70,1,f +12060,4j011,9999,1,f +12060,4j015,9999,1,f +12060,4j016,9999,1,f +12060,6026,2,1,f +12060,6027,2,1,f +12060,6028,2,1,f +12060,6083,72,2,f +12060,6112,15,2,f +12060,6126a,57,3,f +12060,6179px4,15,1,f +12060,6192,0,2,f +12060,6255,2,1,f +12060,7074cdb01,89,1,f +12060,76110c01,71,1,f +12060,sailbb32,15,1,f +12061,10201,71,2,f +12061,10247,71,2,f +12061,11211,4,2,f +12061,11213,71,1,f +12061,11295,72,1,f +12061,11476,71,2,f +12061,11477,71,2,f +12061,15068,72,2,f +12061,15303,36,3,f +12061,15400,72,2,f +12061,15573,0,4,f +12061,15573,72,2,f +12061,15672,379,4,f +12061,18651,0,2,f +12061,18654,72,2,f +12061,18675pr0009,40,1,f +12061,18675pr0010,71,1,f +12061,19220,0,1,f +12061,2357,0,2,f +12061,23948,14,2,f +12061,2412b,0,2,f +12061,2420,72,12,f +12061,24309,71,14,f +12061,2431,0,4,f +12061,2431,72,4,f +12061,2432,19,1,f +12061,2445,71,2,f +12061,2450,379,4,f +12061,2654,72,1,f +12061,27090pr0002,19,1,f +12061,27130,0,1,f +12061,2736,71,2,f +12061,2780,0,14,f +12061,2877,71,2,f +12061,3001,4,3,f +12061,3005,379,8,f +12061,3009,72,1,f +12061,30162,71,2,f +12061,30162,72,1,f +12061,3020,72,4,f +12061,3020,25,3,f +12061,3021,71,8,f +12061,3021,19,1,f +12061,3022,72,2,f +12061,3022,4,2,f +12061,3023,28,8,f +12061,3023,14,6,f +12061,3024,72,4,f +12061,30304,72,1,f +12061,3031,19,2,f +12061,3032,0,2,f +12061,3034,1,6,f +12061,3034,71,2,f +12061,30355,0,2,f +12061,30356,0,2,f +12061,30375,72,1,f +12061,30414,19,6,f +12061,30503,71,6,f +12061,3068b,0,8,f +12061,3069b,379,9,f +12061,3070b,71,4,f +12061,3070b,0,2,f +12061,32000,4,1,f +12061,32000,72,6,f +12061,32013,14,2,f +12061,32028,71,2,f +12061,32054,4,2,f +12061,32062,4,1,f +12061,32063,71,2,f +12061,32140,0,2,f +12061,32316,1,1,f +12061,32449,14,2,f +12061,32531,0,1,f +12061,32557,71,4,f +12061,3460,0,3,f +12061,3623,71,6,f +12061,3623,0,4,f +12061,3626cpr1149,78,2,f +12061,3626cpr1363,78,1,f +12061,3626cpr1905,78,1,f +12061,3665,72,10,f +12061,3666,71,13,f +12061,3701,1,2,f +12061,3709,71,5,f +12061,3710,379,6,f +12061,3710,72,13,f +12061,3749,19,2,f +12061,3795,2,2,f +12061,3795,28,7,f +12061,3795,71,1,f +12061,3832,0,2,f +12061,3832,72,2,f +12061,4032a,0,2,f +12061,40490,71,2,f +12061,4070,71,8,f +12061,4162,71,2,f +12061,41678,71,1,f +12061,4274,71,1,f +12061,4282,71,6,f +12061,4282,0,6,f +12061,43722,0,1,f +12061,43722,71,3,f +12061,43723,0,1,f +12061,43723,71,3,f +12061,44375a,71,1,f +12061,4477,0,2,f +12061,48336,72,1,f +12061,50950,19,2,f +12061,50950,72,8,f +12061,52501,72,1,f +12061,54200,71,5,f +12061,54383,0,5,f +12061,54383,71,5,f +12061,54384,0,5,f +12061,54384,71,5,f +12061,58176,182,2,f +12061,58247,0,2,f +12061,60219,71,2,f +12061,60478,72,2,f +12061,60479,71,4,f +12061,60483,71,2,f +12061,6081,71,1,f +12061,6091,72,4,f +12061,6091,71,2,f +12061,61409,71,4,f +12061,6141,1,2,f +12061,6141,179,10,f +12061,6179,0,6,f +12061,6180,71,1,f +12061,6190,72,2,f +12061,62462,179,1,f +12061,63864,71,2,f +12061,64644,0,2,f +12061,64803pr0003,28,1,f +12061,6536,72,1,f +12061,6541,14,4,f +12061,6558,1,11,f +12061,6632,71,4,f +12061,6636,71,2,f +12061,6942,72,1,f +12061,73983,0,2,f +12061,85984,0,2,f +12061,87079,0,14,f +12061,87552,71,2,f +12061,87556pr0006,0,1,f +12061,87620,71,4,f +12061,87994,0,1,f +12061,92280,0,6,f +12061,92584,0,4,f +12061,92593,71,2,f +12061,92946,72,4,f +12061,93095,0,1,f +12061,93273,71,2,f +12061,93604,71,1,f +12061,95199,72,1,f +12061,96874,25,1,t +12061,970c00pr0583,0,1,f +12061,970c00pr1131,28,1,f +12061,970c00pr1134,19,1,f +12061,970c00pr1135,0,1,f +12061,973pr3573c01,0,1,f +12061,973pr3574c01,19,1,f +12061,973pr3575c01,0,1,f +12061,973pr3579c01,72,1,f +12061,98285,0,4,f +12061,98286,71,4,f +12061,99563,71,3,f +12061,99780,14,1,f +12061,99781,0,5,f +12062,6587,8,100,f +12063,11640pr0001,323,1,f +12063,2419,0,1,f +12063,3004,26,1,f +12063,3009,26,1,f +12063,3021,0,1,f +12063,3023,0,1,f +12063,3023,71,2,f +12063,3040b,30,2,f +12063,3069b,26,2,f +12063,3666,191,1,f +12063,59900,0,1,f +12063,6141,42,2,f +12063,6141,45,2,f +12063,6266,0,1,f +12063,64644,0,1,f +12063,90370pr0005,0,1,f +12064,3081cc01,15,25,f +12065,11213,71,2,f +12065,11458,72,2,f +12065,11477,15,4,f +12065,13731,15,1,f +12065,14682,71,2,f +12065,15068,0,1,f +12065,15392,72,1,f +12065,22885,71,1,f +12065,23922,14,1,f +12065,23924,0,1,f +12065,2412b,71,3,f +12065,2412b,72,4,f +12065,2431,71,1,f +12065,2431,4,6,f +12065,2445,71,1,f +12065,2445,72,1,f +12065,2447,40,2,f +12065,2476a,71,4,f +12065,2508,0,2,f +12065,2877,71,3,f +12065,2926,0,2,f +12065,298c02,14,2,f +12065,30000,1,1,f +12065,3001,15,3,f +12065,3001,71,2,f +12065,3002,0,2,f +12065,3003,71,2,f +12065,3003,14,2,f +12065,3004,4,1,f +12065,3004,71,1,f +12065,3005,4,2,f +12065,3009,4,3,f +12065,3010,71,3,f +12065,30150,84,1,f +12065,30157,70,2,f +12065,30194,72,1,f +12065,3020,15,2,f +12065,3020,71,1,f +12065,3021,4,3,f +12065,3022,15,1,f +12065,3023,15,2,f +12065,3023,182,3,f +12065,3023,4,5,f +12065,30237b,4,2,f +12065,30237b,71,2,f +12065,3024,33,8,f +12065,3024,4,2,f +12065,3032,4,2,f +12065,3032,15,3,f +12065,3034,15,2,f +12065,3037,4,1,f +12065,30374,14,4,f +12065,3039pr0001,15,1,f +12065,3040b,4,2,f +12065,30414,15,1,f +12065,30553,71,6,f +12065,3062b,14,1,f +12065,3068b,15,4,f +12065,3068b,19,2,f +12065,3069b,72,1,f +12065,3069b,46,2,f +12065,3069b,0,2,f +12065,3069bpr0101,71,1,f +12065,3070b,36,2,f +12065,32000,15,3,f +12065,32013,71,2,f +12065,32028,71,2,f +12065,32062,4,2,f +12065,32123b,14,2,f +12065,3245b,72,1,f +12065,3460,15,2,f +12065,3460,71,1,f +12065,3626bpr0754a,14,1,f +12065,3626cpr0893,14,1,f +12065,3626cpr1665,14,1,f +12065,3660,71,2,f +12065,3666,15,1,f +12065,3666,72,1,f +12065,3710,15,4,f +12065,3710,4,4,f +12065,3795,15,1,f +12065,3821,4,1,f +12065,3822,4,1,f +12065,3829c01,14,1,f +12065,3833,4,1,f +12065,3834,15,2,f +12065,3835,0,1,f +12065,3838,14,2,f +12065,3895,72,2,f +12065,3899,14,1,f +12065,3958,72,1,f +12065,3961,15,1,f +12065,4006,0,1,f +12065,4070,4,2,f +12065,4081b,71,2,f +12065,41539,2,1,f +12065,4162,15,2,f +12065,4162,71,2,f +12065,41677,15,2,f +12065,41678,71,1,f +12065,4176,41,1,f +12065,4208,0,1,f +12065,4209,4,1,f +12065,4215b,15,2,f +12065,4274,71,2,f +12065,4285b,72,1,f +12065,43093,1,4,f +12065,4345b,4,1,f +12065,4346,71,1,f +12065,44301a,71,7,f +12065,44728,71,2,f +12065,4476b,15,1,f +12065,4519,71,2,f +12065,4522,0,1,f +12065,4599b,14,1,f +12065,47457,4,2,f +12065,48336,71,2,f +12065,4871,71,1,f +12065,51858,71,1,f +12065,52031,4,1,f +12065,55981,71,4,f +12065,6005,15,2,f +12065,6014b,71,4,f +12065,6019,0,2,f +12065,60470a,0,1,f +12065,60478,0,4,f +12065,60478,4,1,f +12065,60479,15,1,f +12065,60479,4,2,f +12065,60481,71,2,f +12065,60583b,4,4,f +12065,60897,4,1,f +12065,6091,4,6,f +12065,6091,71,2,f +12065,6126b,182,6,f +12065,6141,33,4,f +12065,6141,41,4,f +12065,6141,72,4,f +12065,6141,182,9,f +12065,61485,71,1,f +12065,61485,0,1,f +12065,6154,4,2,f +12065,6155,71,2,f +12065,6158,72,2,f +12065,64449,72,2,f +12065,6636,4,3,f +12065,85861,182,6,f +12065,87079,4,3,f +12065,87079,71,1,f +12065,87079,14,2,f +12065,87081,72,1,f +12065,87087,71,2,f +12065,87609,15,1,f +12065,87697,0,4,f +12065,88930,71,2,f +12065,92402,0,4,f +12065,92593,71,7,f +12065,970c00,1,1,f +12065,970c00pr0408,0,2,f +12065,973pr2188c01,0,2,f +12065,973pr2998c01,25,1,f +12065,98138,47,4,f +12065,98138,36,2,f +12065,98263,71,1,f +12065,98280,71,3,f +12065,98282,15,4,f +12065,98313,72,1,f +12065,99207,0,1,f +12065,99780,0,2,f +12066,15,1,1,f +12066,15,4,1,f +12066,17,1,1,f +12066,17,4,1,f +12066,21,47,1,f +12066,29c,15,5,f +12066,3001a,1,4,f +12066,3002a,4,2,f +12066,3003,1,1,f +12066,3003,14,1,f +12066,3004,0,2,f +12066,3004,47,1,f +12066,3004,1,18,f +12066,3005,0,2,f +12066,3005,14,2,f +12066,3005,1,14,f +12066,3008,1,3,f +12066,3009,1,11,f +12066,3010,14,1,f +12066,3010,4,1,f +12066,3010,1,15,f +12066,3010pb035u,4,1,f +12066,3020,14,2,f +12066,3021,1,2,f +12066,3021,7,1,f +12066,3022,4,2,f +12066,3022,0,1,f +12066,3023,0,2,f +12066,3024,0,2,f +12066,3031,0,1,f +12066,3032,1,1,f +12066,3034,14,4,f +12066,3035,4,1,f +12066,3037,4,3,f +12066,3037,0,6,f +12066,3038,4,4,f +12066,3039,4,3,f +12066,3039,0,8,f +12066,3040a,0,2,f +12066,3042,4,1,f +12066,3045,4,6,f +12066,3045,0,12,f +12066,3048a,4,1,f +12066,3062a,1,4,f +12066,3068b,15,4,f +12066,3081cc01,15,1,f +12066,3137c01,0,2,f +12066,3139,0,5,f +12066,3185,14,8,f +12066,3185,4,1,f +12066,3297,4,4,f +12066,3298,4,2,f +12066,3299,4,2,f +12066,33bc01,15,2,f +12066,3404ac01,0,1,f +12066,3460,0,2,f +12066,3464,4,1,f +12066,3581,1,5,f +12066,3582,14,5,f +12066,3624,0,1,f +12066,3624,4,1,f +12066,3626a,14,2,f +12066,455p02,2,1,f +12066,7039,4,1,f +12066,7049b,0,1,f +12066,8,7,1,f +12068,2780,0,2,f +12068,32013,19,2,f +12068,32016,19,2,f +12068,32034,7,1,f +12068,32039,0,2,f +12068,32054,4,1,f +12068,32056,27,4,f +12068,32056,4,4,f +12068,32062,0,11,f +12068,32065,19,2,f +12068,32073,0,2,f +12068,32123b,7,4,f +12068,32271,27,2,f +12068,32291,27,2,f +12068,32305,0,1,f +12068,32306,0,1,f +12068,32307,4,2,f +12068,32307,0,2,f +12068,32307,19,2,f +12068,32308,0,2,f +12068,32308,4,1,f +12068,32310pb05,4,1,f +12068,32348,19,1,f +12068,32439a,25,3,f +12068,32439a,8,2,f +12068,3673,7,4,f +12068,3705,0,4,f +12068,3706,0,3,f +12068,3707,0,1,f +12068,3713,7,2,f +12068,3749,7,8,f +12068,4519,0,3,f +12068,57467,383,2,f +12068,6123,0,2,f +12068,6536,19,2,f +12068,6538b,0,2,f +12068,71509,0,1,f +12068,rb00182,27,1,f +12068,rb00182,4,1,f +12068,rb00182,19,1,f +12070,3022,0,1,f +12070,3062b,70,4,f +12070,3835,0,1,f +12070,4032a,70,2,f +12070,4697b,71,1,t +12070,4697b,71,1,f +12070,48336,71,2,f +12070,4865a,4,2,f +12070,59230,0,1,f +12070,59230,0,1,t +12073,3003,0,1,f +12073,3020,15,1,f +12073,33320,2,1,f +12073,4345b,4,1,f +12073,4346,4,1,f +12073,54200,15,1,f +12073,54200,15,1,t +12073,6141,297,1,t +12073,6141,297,1,f +12073,87580,4,1,f +12074,10247,72,2,f +12074,11211,71,7,f +12074,11214,72,2,f +12074,11478,0,2,f +12074,13547,0,2,f +12074,14769,71,2,f +12074,15303,35,3,f +12074,15392,72,2,f +12074,15400,72,2,f +12074,15403,0,2,f +12074,15625,71,4,f +12074,15712,0,4,f +12074,18677,4,2,f +12074,18986,47,2,f +12074,20904pr0001,15,2,f +12074,20904pr0002,179,1,f +12074,2357,71,4,f +12074,23915,15,2,f +12074,2412b,72,16,f +12074,2420,71,2,f +12074,2431,71,3,f +12074,2431,41,4,f +12074,2432,72,1,f +12074,2445,71,4,f +12074,2450,71,1,f +12074,2456,72,1,f +12074,2540,72,8,f +12074,2653,71,2,f +12074,2654,0,4,f +12074,2780,0,11,f +12074,2817,4,1,f +12074,2877,71,4,f +12074,3003,71,4,f +12074,3004,0,7,f +12074,3007,19,1,f +12074,3008,72,2,f +12074,3009,0,2,f +12074,3009,71,4,f +12074,3010,72,8,f +12074,3020,72,2,f +12074,3020,4,1,f +12074,3020,71,3,f +12074,3021,71,4,f +12074,3022,71,1,f +12074,3023,47,2,f +12074,3023,71,9,f +12074,3030,71,2,f +12074,3031,72,6,f +12074,3032,71,1,f +12074,3033,0,2,f +12074,3034,72,2,f +12074,3034,71,2,f +12074,3035,72,1,f +12074,3035,15,2,f +12074,30350b,72,4,f +12074,3036,71,1,f +12074,30374,71,2,f +12074,30383,72,6,f +12074,3039,15,1,f +12074,3040b,72,6,f +12074,30414,0,4,f +12074,3045,71,1,f +12074,30540,71,2,f +12074,30553,72,2,f +12074,3062b,72,9,f +12074,3062b,15,10,f +12074,3069b,71,1,f +12074,3070b,36,8,f +12074,32000,4,2,f +12074,32002,19,4,f +12074,32013,72,2,f +12074,32017,71,2,f +12074,32028,72,4,f +12074,32028,0,4,f +12074,32054,0,4,f +12074,32062,4,2,f +12074,32073,71,2,f +12074,32123b,14,2,f +12074,32348,71,2,f +12074,32523,0,2,f +12074,32532,71,2,f +12074,3460,19,5,f +12074,3460,71,9,f +12074,3622,71,14,f +12074,3623,72,10,f +12074,3623,0,4,f +12074,3623,1,4,f +12074,3626b,0,1,f +12074,3626cpr1149,78,4,f +12074,3626cpr1709,78,1,f +12074,3626cpr1806,78,1,f +12074,3665,71,4,f +12074,3665,72,6,f +12074,3666,72,10,f +12074,3666,71,2,f +12074,3673,71,1,f +12074,3679,71,1,f +12074,3680,0,1,f +12074,3700,72,1,f +12074,3701,71,2,f +12074,3702,71,5,f +12074,3708,0,2,f +12074,3710,71,19,f +12074,3710,72,16,f +12074,3710,0,2,f +12074,3713,71,1,f +12074,3749,19,7,f +12074,3794b,71,8,f +12074,3795,0,5,f +12074,3795,71,3,f +12074,3832,72,1,f +12074,3832,71,4,f +12074,3895,72,1,f +12074,3958,72,1,f +12074,3960,71,1,f +12074,4081b,0,2,f +12074,41539,71,2,f +12074,4162,72,6,f +12074,41677,72,4,f +12074,41769,71,2,f +12074,41770,71,2,f +12074,4185,47,4,f +12074,4274,1,4,f +12074,4286,71,1,f +12074,4287,71,8,f +12074,43093,1,8,f +12074,43710,71,1,f +12074,43711,71,2,f +12074,43722,71,1,f +12074,43723,71,1,f +12074,44301a,71,2,f +12074,44568,71,1,f +12074,44570,71,1,f +12074,44676,72,6,f +12074,44728,19,10,f +12074,4477,71,1,f +12074,4477,72,5,f +12074,4488,71,4,f +12074,4697b,71,2,f +12074,47397,71,1,f +12074,47398,71,1,f +12074,47457,72,4,f +12074,47759,72,2,f +12074,48336,71,2,f +12074,4871,0,1,f +12074,49668,0,6,f +12074,52107,0,8,f +12074,54200,71,8,f +12074,54383,71,1,f +12074,54383,72,2,f +12074,54384,72,2,f +12074,54384,71,1,f +12074,55013,72,1,f +12074,57899,0,2,f +12074,58247,148,2,f +12074,58247,0,2,f +12074,58247,179,1,f +12074,59443,4,3,f +12074,6014b,71,4,f +12074,60476,71,4,f +12074,60581,71,2,f +12074,60897,72,2,f +12074,6111,72,2,f +12074,6111,71,5,f +12074,61409,72,2,f +12074,6141,35,10,f +12074,6141,4,12,f +12074,6141,0,27,f +12074,6179,72,8,f +12074,6192,72,4,f +12074,63864,72,2,f +12074,6541,71,8,f +12074,6558,1,2,f +12074,6629,72,2,f +12074,6632,71,2,f +12074,6636,71,4,f +12074,85984,0,9,f +12074,85984,71,26,f +12074,87079,71,11,f +12074,87083,72,2,f +12074,87087,71,1,f +12074,87087,15,8,f +12074,87990,70,1,f +12074,87994,0,4,f +12074,90194,72,2,f +12074,92081,308,1,f +12074,92099,72,1,f +12074,92107,72,1,f +12074,92582,71,2,f +12074,92947,71,1,f +12074,96874,25,1,t +12074,970c00,326,1,f +12074,970c00,308,1,f +12074,970c00pr0954,15,2,f +12074,970c00pr0955,15,2,f +12074,970c00pr0956,179,1,f +12074,973pr3165c01,15,2,f +12074,973pr3166c01,15,2,f +12074,973pr3167c01,179,1,f +12074,973pr3168c01,28,1,f +12074,973pr3169c01,19,1,f +12074,98138,47,11,f +12074,98138,182,6,f +12074,98281,71,1,f +12074,98286,71,4,f +12074,99207,0,8,f +12074,99781,71,12,f +12076,2343,297,8,f +12076,2357,4,2,f +12076,2412b,297,9,f +12076,2420,0,2,f +12076,2431,14,1,f +12076,2431,0,2,f +12076,2444,71,4,f +12076,2447,36,1,t +12076,2458,71,4,f +12076,2540,71,2,f +12076,2569,0,1,t +12076,2569,0,1,f +12076,2654,4,4,f +12076,2780,0,8,f +12076,2780,0,2,t +12076,298c02,71,1,t +12076,298c02,71,2,f +12076,3001,4,2,f +12076,30031,72,1,f +12076,3004,72,2,f +12076,3008,0,4,f +12076,3010,71,1,f +12076,30162,72,4,f +12076,3020,15,1,f +12076,3020,71,1,f +12076,3020,0,10,f +12076,3020,14,1,f +12076,3021,85,3,f +12076,3022,0,3,f +12076,3022,71,2,f +12076,3022,15,1,f +12076,3023,71,1,f +12076,3023,15,6,f +12076,3023,0,8,f +12076,3033,0,2,f +12076,3036,0,1,f +12076,30360,0,2,f +12076,30382,0,2,f +12076,3040b,0,6,f +12076,3040b,4,4,f +12076,30414,4,4,f +12076,3048c,0,2,f +12076,3048c,4,1,f +12076,3068b,0,2,f +12076,32002,72,1,t +12076,32002,72,4,f +12076,32018,71,2,f +12076,32064b,14,2,f +12076,32123b,14,1,t +12076,32123b,14,4,f +12076,3460,0,2,f +12076,3622,0,2,f +12076,3660,71,4,f +12076,3666,0,3,f +12076,3678b,4,1,f +12076,3700,4,3,f +12076,3701,0,2,f +12076,3702,71,2,f +12076,3707,0,2,f +12076,3710,0,4,f +12076,3710,15,1,f +12076,3710,71,3,f +12076,3710,4,4,f +12076,3794b,297,2,f +12076,3794b,0,1,f +12076,3795,71,4,f +12076,3832,71,2,f +12076,3937,0,1,f +12076,3937,71,6,f +12076,3938,0,1,f +12076,3938,71,2,f +12076,3941,0,8,f +12076,3942c,85,2,f +12076,4032a,72,2,f +12076,4032a,0,1,f +12076,4081b,0,2,f +12076,4150,71,2,f +12076,4162,0,2,f +12076,41769,0,1,f +12076,41770,0,1,f +12076,41854,0,1,f +12076,42023,0,2,f +12076,42445,71,2,f +12076,4274,1,1,t +12076,4274,1,1,f +12076,43093,1,2,f +12076,43337,46,4,f +12076,43719,72,2,f +12076,43722,0,1,f +12076,43723,0,1,f +12076,44126,0,2,f +12076,44728,71,2,f +12076,44728,0,2,f +12076,4477,0,8,f +12076,4477,85,8,f +12076,45677,0,1,f +12076,4589,36,4,f +12076,4589,46,2,f +12076,4589,297,3,f +12076,4623,0,1,f +12076,4733,0,2,f +12076,47457,297,1,f +12076,48336,0,2,f +12076,4865a,0,2,f +12076,50943,297,1,f +12076,52031,0,2,f +12076,52107,0,1,f +12076,54200,0,1,t +12076,54200,85,2,t +12076,54200,85,6,f +12076,54200,0,4,f +12076,55981,71,2,f +12076,57028c01,71,1,f +12076,57796,0,1,f +12076,6019,297,1,f +12076,60470a,0,4,f +12076,60478,71,2,f +12076,6091,0,2,f +12076,6091,4,2,f +12076,6111,72,2,f +12076,6112,0,2,f +12076,6134,0,4,f +12076,61409,0,2,f +12076,6141,47,1,t +12076,6141,34,1,t +12076,6141,297,4,t +12076,6141,297,27,f +12076,6141,47,4,f +12076,6141,34,1,f +12076,61678,0,8,f +12076,6180,0,1,f +12076,62360,46,1,f +12076,62361,0,6,f +12076,6239,0,6,f +12076,64727,71,2,f +12076,6636,0,3,f +12076,85970,0,4,f +12076,86208,72,1,f +12076,87079,0,2,f +12076,87087,0,4,f +12076,90322,297,1,f +12076,90322pr0001,294,1,f +12077,3001,14,14,f +12077,3002,14,8,f +12077,3003,14,12,f +12077,3004,14,8,f +12077,3005,14,4,f +12077,3006,14,1,f +12077,3007,14,1,f +12077,3008,14,2,f +12077,3009,14,4,f +12077,3010,14,4,f +12077,3622,14,4,f +12078,9631b1,9999,1,f +12078,9631b10,9999,1,f +12078,9631b11,9999,1,f +12078,9631b12,9999,1,f +12078,9631b13,9999,1,f +12078,9631b14,9999,1,f +12078,9631b15,9999,1,f +12078,9631b16,9999,1,f +12078,9631b17,9999,1,f +12078,9631b18,9999,1,f +12078,9631b19,9999,1,f +12078,9631b2,9999,1,f +12078,9631b20,9999,1,f +12078,9631b21,9999,1,f +12078,9631b22,9999,1,f +12078,9631b24,9999,1,f +12078,9631b25,9999,1,f +12078,9631b3,9999,1,f +12078,9631b4,9999,1,f +12078,9631b5,9999,1,f +12078,9631b6,9999,1,f +12078,9631b7,9999,1,f +12078,9631b8,9999,1,f +12078,9631b9,9999,1,f +12080,3021,2,2,f +12080,3023,27,2,f +12080,3023,2,2,f +12080,3024,2,5,f +12080,30374,0,1,f +12080,30383,2,2,f +12080,30553,0,1,f +12080,3070b,0,1,f +12080,3070b,0,1,t +12080,32064b,2,2,f +12080,3710,27,3,f +12080,3794a,0,1,f +12080,3839b,0,2,f +12080,40379,0,1,f +12080,4070,2,2,f +12080,4081b,0,2,f +12080,44301a,27,3,f +12080,44302a,0,1,f +12080,44302a,2,5,f +12080,44567a,0,2,f +12080,44675,0,1,f +12080,47674,47,1,f +12080,47675,27,1,f +12080,47676,27,1,f +12080,49668,0,2,f +12080,50950,0,1,f +12080,54200,0,3,f +12080,6019,0,2,f +12080,6141,57,1,f +12080,6141,42,1,t +12080,6141,42,2,f +12080,6141,57,1,t +12082,43093,1,1,f +12082,4740,47,1,t +12082,4740,47,1,f +12082,47430,85,2,f +12082,47431,85,2,f +12082,47432,85,2,f +12082,47452,71,2,f +12082,47454,71,2,f +12082,47455,14,10,f +12082,47456,85,4,f +12082,47457,85,4,f +12082,47457pb02,85,2,f +12082,47459,178,1,f +12082,47469,85,1,f +12082,47474,71,1,f +12082,47477c01pb02,85,1,f +12082,47501,85,4,f +12082,bb153pb01,71,1,f +12082,kkc10,89,1,f +12082,kkc13,89,1,f +12082,kkc15,89,1,f +12082,rb00188,9999,1,f +12083,29bc01,4,2,f +12083,3001a,0,2,f +12083,3002a,0,3,f +12083,3003,0,2,f +12083,3004,0,6,f +12083,3005,0,4,f +12083,3009,0,2,f +12083,3009px52,0,2,f +12083,3010,4,8,f +12083,3010,0,1,f +12083,3020,0,3,f +12083,3021,0,2,f +12083,3022,4,1,f +12083,3029,7,2,f +12083,3034,15,16,f +12083,3034,0,2,f +12083,3035,0,4,f +12083,3048a,4,1,f +12083,3087bc01,4,2,f +12083,3145,0,4,f +12083,3229a,1,16,f +12083,3230a,1,16,f +12083,3241b,1,16,f +12083,433c01,0,2,f +12083,458,0,4,f +12083,7049b,15,4,f +12083,711,0,1,f +12083,753,4,4,f +12083,wheel2a,4,4,f +12083,wheel2b,4,8,f +12083,x547b,1,2,f +12083,x547b,4,2,f +12083,x550a,0,1,f +12083,x799,4,1,f +12083,x799,1,1,f +12084,2530,72,1,f +12084,2530,72,1,t +12084,2540,19,5,f +12084,2542,70,1,f +12084,2543,1,1,f +12084,2544,0,1,f +12084,2546pat0001,4,1,f +12084,2561,70,1,f +12084,30153,33,1,f +12084,30153,36,1,f +12084,3022,0,1,f +12084,3023,70,4,f +12084,3034,19,5,f +12084,30414,4,2,f +12084,3062b,0,7,f +12084,3626bpr0389,14,1,f +12084,3626bpr0410,14,1,f +12084,3666,70,2,f +12084,3705,0,2,f +12084,3707,0,1,f +12084,3794b,297,1,f +12084,3941,70,23,f +12084,4477,19,2,f +12084,48729a,72,1,t +12084,48729a,72,2,f +12084,6020,0,1,f +12084,60470a,71,1,f +12084,6086,320,1,f +12084,61780,70,1,f +12084,6222,70,1,f +12084,64644,297,1,f +12084,64951,70,1,f +12084,970c00,2,1,f +12084,970c00,0,1,f +12084,973pr1438c01,15,1,f +12084,973pr1439c01,70,1,f +12085,132a,7,4,f +12085,3002a,47,4,f +12085,3002a,4,4,f +12085,3003,47,1,f +12085,3004,0,1,f +12085,3004,4,6,f +12085,3005,4,2,f +12085,3006,4,2,f +12085,3008,4,9,f +12085,3009,47,2,f +12085,3009,4,3,f +12085,3020,4,5,f +12085,3020,0,6,f +12085,3020,15,1,f +12085,3020,7,1,f +12085,3021,15,2,f +12085,3021,0,4,f +12085,3021,4,12,f +12085,3022,0,2,f +12085,3022,4,2,f +12085,3023,4,13,f +12085,3023,7,3,f +12085,3023,0,10,f +12085,3024,4,6,f +12085,3024,0,4,f +12085,3024,7,2,f +12085,3035,15,2,f +12085,3036,15,2,f +12085,3063b,4,4,f +12085,7039,4,4,f +12085,7049a,15,2,f +12086,3004,0,1,f +12086,3005,1,2,f +12086,3020,1,2,f +12086,3024,1,2,f +12086,3024,36,2,f +12086,3024,46,2,f +12086,3062b,46,1,f +12086,3135c02,4,1,f +12086,3626apr0001,14,1,f +12086,3641,0,4,f +12086,3666,1,2,f +12086,3710,1,3,f +12086,3788,1,1,f +12086,3821,1,1,f +12086,3822,1,1,f +12086,3823,47,1,f +12086,3829c01,1,1,f +12086,3832,7,1,f +12086,3901,0,1,f +12086,4006,0,1,f +12086,4070,1,2,f +12086,4079,7,1,f +12086,4083,7,1,f +12086,4211,1,1,f +12086,4213,1,1,f +12086,4214,1,1,f +12086,4275b,1,2,f +12086,4522,0,1,f +12086,4531,1,2,f +12086,4600,7,2,f +12086,4624,7,4,f +12086,4873,7,2,f +12086,970c00,1,1,f +12086,973pb0201c01,15,1,f +12087,2335,4,1,f +12087,2362b,15,8,f +12087,2412b,72,22,f +12087,2420,0,4,f +12087,2420,14,4,f +12087,2420,4,2,f +12087,2431,72,4,f +12087,2431,14,8,f +12087,2432,15,4,f +12087,2437,40,2,f +12087,2444,72,6,f +12087,2445,71,6,f +12087,2449,1,32,f +12087,2462,71,20,f +12087,2465,15,2,f +12087,2540,72,8,f +12087,2555,72,5,f +12087,2569,71,1,f +12087,2654,0,2,f +12087,2780,0,1,t +12087,2780,0,2,f +12087,2817,0,2,f +12087,298c02,1,1,t +12087,298c02,1,1,f +12087,298c02,4,1,t +12087,298c02,4,1,f +12087,3002,1,8,f +12087,3003,1,18,f +12087,3003,14,12,f +12087,3003,15,2,f +12087,3004,4,2,f +12087,3004,15,64,f +12087,3004,14,10,f +12087,3005,15,12,f +12087,3005,14,6,f +12087,3005,1,14,f +12087,3005,72,4,f +12087,3006,0,2,f +12087,3008,71,6,f +12087,3008,15,9,f +12087,3009,1,30,f +12087,3009,14,6,f +12087,3009,72,4,f +12087,3010,15,10,f +12087,30162,72,2,f +12087,3020,71,8,f +12087,3020,25,2,f +12087,3020,15,4,f +12087,3021,72,4,f +12087,3021,14,2,f +12087,3022,4,3,f +12087,3022,15,3,f +12087,3022,1,6,f +12087,3023,1,22,f +12087,3023,4,4,f +12087,3023,15,20,f +12087,30236,71,4,f +12087,3024,15,12,f +12087,3024,0,2,f +12087,3024,14,4,f +12087,3024,71,10,f +12087,3024,46,2,f +12087,3028,71,2,f +12087,3029,1,4,f +12087,3029,71,2,f +12087,3030,15,2,f +12087,3031,72,3,f +12087,3031,4,1,f +12087,3032,4,2,f +12087,3032,15,2,f +12087,3034,72,12,f +12087,30340,15,8,f +12087,3037,1,6,f +12087,30374,0,2,f +12087,3039,1,10,f +12087,3040b,1,18,f +12087,3040b,15,8,f +12087,3040b,71,4,f +12087,30414,71,6,f +12087,30503,72,2,f +12087,30602,72,2,f +12087,3062b,72,13,f +12087,3063b,15,4,f +12087,3068b,71,4,f +12087,3069b,25,2,f +12087,3070b,36,1,t +12087,3070b,34,2,f +12087,3070b,34,1,t +12087,3070b,36,6,f +12087,3139,0,12,f +12087,32000,72,4,f +12087,32001,71,4,f +12087,32028,25,2,f +12087,32028,0,1,f +12087,32039,0,2,f +12087,32062,4,5,f +12087,32123b,14,6,f +12087,32123b,14,2,t +12087,32140,71,2,f +12087,32270,0,4,f +12087,3298,1,2,f +12087,33299a,0,2,f +12087,3460,4,2,f +12087,3460,15,14,f +12087,3460,14,2,f +12087,3622,1,14,f +12087,3622,14,6,f +12087,3622,15,4,f +12087,3623,14,12,f +12087,3623,15,12,f +12087,3623,72,6,f +12087,3647,72,2,f +12087,3648b,72,2,f +12087,3660,72,38,f +12087,3660,25,2,f +12087,3665,72,22,f +12087,3665,4,4,f +12087,3666,0,6,f +12087,3666,14,6,f +12087,3666,71,6,f +12087,3673,71,1,t +12087,3673,71,2,f +12087,3679,71,4,f +12087,3680,0,4,f +12087,3684b,15,4,f +12087,3700,1,20,f +12087,3705,0,4,f +12087,3706,0,3,f +12087,3707,0,1,f +12087,3709,72,8,f +12087,3710,0,18,f +12087,3710,15,8,f +12087,3710,71,12,f +12087,3710,25,2,f +12087,3710,4,2,f +12087,3713,71,2,t +12087,3713,71,8,f +12087,3731,71,1,f +12087,3747b,15,4,f +12087,3749,19,5,f +12087,3794a,71,7,f +12087,3795,0,2,f +12087,3829c01,15,1,f +12087,3832,0,4,f +12087,3849,72,1,f +12087,3894,71,2,f +12087,3941,71,4,f +12087,3957a,71,3,f +12087,4032a,72,7,f +12087,4070,4,2,f +12087,4070,0,6,f +12087,4081b,72,9,f +12087,4150,14,1,f +12087,4151b,72,2,f +12087,4162,72,5,f +12087,41677,71,8,f +12087,4175,72,10,f +12087,4274,71,10,f +12087,4274,71,2,t +12087,4282,72,4,f +12087,4282,15,6,f +12087,4284,47,7,f +12087,4287,72,4,f +12087,43093,1,2,f +12087,4349,72,2,f +12087,43719,0,4,f +12087,43722,25,2,f +12087,43723,25,2,f +12087,43898,72,1,f +12087,4460b,15,4,f +12087,4477,72,2,f +12087,4488,0,4,f +12087,4510,0,1,f +12087,4588,72,2,f +12087,4589,0,8,f +12087,4599a,15,2,f +12087,4600,71,4,f +12087,4623,71,6,f +12087,4624,71,12,f +12087,4735,0,4,f +12087,4740,71,2,f +12087,47755,25,1,f +12087,48336,71,5,f +12087,4864b,47,7,f +12087,4865a,14,2,f +12087,50950,25,6,f +12087,50950,15,12,f +12087,54200,0,8,f +12087,54200,0,2,t +12087,54200,15,6,f +12087,54200,182,4,f +12087,54200,1,1,t +12087,54200,1,4,f +12087,54200,15,1,t +12087,54200,182,1,t +12087,59443,71,4,f +12087,60032,15,4,f +12087,6014b,71,4,f +12087,6015,0,4,f +12087,60169,72,4,f +12087,6019,1,9,f +12087,60479,71,7,f +12087,60601,47,12,f +12087,6091,15,4,f +12087,6106,0,2,f +12087,6106,71,2,f +12087,6112,71,5,f +12087,61345,15,4,f +12087,6141,34,1,t +12087,6141,42,9,f +12087,6141,42,1,t +12087,6141,47,1,t +12087,6141,47,2,f +12087,6141,36,1,t +12087,6141,36,4,f +12087,6141,71,8,f +12087,6141,71,1,t +12087,6141,34,2,f +12087,61483,71,4,f +12087,63082,0,3,f +12087,6536,71,4,f +12087,6541,71,11,f +12087,6587,72,2,f +12087,6628,0,2,f +12087,6632,72,2,f +12087,6636,15,8,f +12087,6636,14,2,f +12087,73983,1,2,f +12087,73983,14,2,f +12089,2343,47,2,f +12089,2357,4,2,f +12089,2357,1,2,f +12089,2419,4,2,f +12089,2423,2,3,f +12089,2432,14,2,f +12089,2456,4,2,f +12089,2456,1,2,f +12089,2458,1,2,f +12089,2460,1,1,f +12089,2479,7,1,f +12089,2488,2,1,f +12089,2577,15,2,f +12089,2625,4,2,f +12089,3001,383,1,f +12089,3001,2,4,f +12089,3001,1,6,f +12089,3001,0,4,f +12089,3001,15,6,f +12089,3001,14,6,f +12089,3001,4,6,f +12089,3002,15,2,f +12089,3002,0,2,f +12089,3002,14,4,f +12089,3002,1,4,f +12089,3002,4,4,f +12089,3003,1,8,f +12089,3003,4,8,f +12089,3003,2,6,f +12089,3003,0,6,f +12089,3003,14,8,f +12089,3003,15,8,f +12089,3004,0,20,f +12089,3004,4,36,f +12089,3004,15,36,f +12089,3004,14,36,f +12089,3004,1,36,f +12089,3004,2,20,f +12089,3005,1,30,f +12089,3005,15,30,f +12089,3005,14,30,f +12089,3005,4,30,f +12089,3005,2,20,f +12089,3005,0,20,f +12089,3005pe1,2,2,f +12089,3005pe1,14,2,f +12089,3007,4,2,f +12089,3007,1,2,f +12089,3008,1,2,f +12089,3008,4,2,f +12089,3008,14,2,f +12089,3009,4,6,f +12089,3009,1,6,f +12089,3009,14,6,f +12089,3009,0,4,f +12089,3009,15,6,f +12089,3010,4,20,f +12089,3010,1,20,f +12089,3010,0,10,f +12089,3010,15,20,f +12089,3010,14,20,f +12089,3010p01,14,2,f +12089,3010p02,15,2,f +12089,30161,47,1,f +12089,30183,1,1,f +12089,3020,4,2,f +12089,3021,4,2,f +12089,3022,4,2,f +12089,3029,4,1,f +12089,3035,4,2,f +12089,3039,1,6,f +12089,3040b,1,6,f +12089,3062b,15,8,f +12089,3081cc01,4,2,f +12089,3149c01,4,1,f +12089,3297,1,6,f +12089,3297px1,1,2,f +12089,3298,1,8,f +12089,3298p11,1,4,f +12089,3299,1,6,f +12089,3300,1,4,f +12089,3307,14,2,f +12089,3334,15,1,f +12089,3460,4,2,f +12089,3483,0,6,f +12089,3622,15,10,f +12089,3622,1,10,f +12089,3622,14,10,f +12089,3622,0,4,f +12089,3622,2,6,f +12089,3622,4,10,f +12089,3626bp02,14,1,f +12089,3626bpx19,14,1,f +12089,3633,14,4,f +12089,3660,14,4,f +12089,3665,14,8,f +12089,3666,4,2,f +12089,3679,7,1,f +12089,3680,1,1,f +12089,3730,4,1,f +12089,3731,4,1,f +12089,3741,2,2,f +12089,3742,15,1,t +12089,3742,4,3,f +12089,3742,15,3,f +12089,3742,4,1,t +12089,3747b,14,4,f +12089,3823,41,2,f +12089,3829c01,14,2,f +12089,3832,4,2,f +12089,3836,6,1,f +12089,3853,1,3,f +12089,3854,14,6,f +12089,3856,2,6,f +12089,3861b,1,1,f +12089,3937,1,4,f +12089,3938,14,4,f +12089,3957a,14,2,f +12089,3960p03,15,2,f +12089,4070,1,4,f +12089,4079,14,2,f +12089,4286,1,4,f +12089,4287,14,8,f +12089,4485,2,1,f +12089,4495b,2,2,f +12089,4625,1,1,f +12089,6041,0,2,f +12089,6064,2,2,f +12089,6093,0,1,f +12089,6215,1,4,f +12089,6248,15,6,f +12089,6249,8,3,f +12089,6564,1,2,f +12089,6565,1,2,f +12089,970c00,1,1,f +12089,970c00,2,1,f +12089,973px33c01,15,1,f +12089,973px34c01,15,1,f +12090,2039,13,1,f +12090,2145,15,2,f +12090,22239,89,1,f +12090,22670,383,2,f +12090,30044,15,1,f +12090,30077,15,2,f +12090,3009,13,1,f +12090,30151a,47,1,f +12090,30153,36,2,f +12090,30153,33,4,f +12090,30218,17,1,f +12090,3068b,15,1,f +12090,3307,15,2,f +12090,33213,18,1,f +12090,33215,114,1,f +12090,3626b,47,1,f +12090,3741,2,2,f +12090,3742,5,3,f +12090,3742,1,1,t +12090,3742,1,3,f +12090,3742,5,1,t +12090,3794a,15,1,f +12090,3942c,18,2,f +12090,3957a,13,1,f +12090,4032a,1,1,f +12090,4088,15,1,f +12090,4286,13,2,f +12090,4495b,5,1,f +12090,4589,15,3,f +12090,4589,46,1,f +12090,6124,45,1,f +12090,6141,5,1,f +12090,6141,36,1,f +12090,6141,15,1,f +12090,6161,20,1,f +12090,6175px1,15,1,f +12090,6176,5,1,f +12090,6179px3,13,1,f +12090,6180,1001,1,f +12090,6182,15,3,f +12090,6183,15,1,f +12090,6203,5,1,f +12090,6205,13,1,f +12090,6255,2,2,f +12090,75347,5,2,f +12090,cloth4,15,1,f +12090,pouch02,18,1,f +12090,x222,15,1,f +12094,11153,1,2,f +12094,11303,272,1,f +12094,11476,71,1,f +12094,2540,0,1,f +12094,2654,0,1,f +12094,30031,72,1,f +12094,30150,70,1,f +12094,30162,71,1,f +12094,3022,0,2,f +12094,3023,1,3,f +12094,3024,33,4,f +12094,3069bpr0100,2,2,f +12094,3626cpr0754,14,1,f +12094,3626cpr1144,14,1,f +12094,3710,15,1,f +12094,3795,71,1,f +12094,41334,72,1,f +12094,43713,15,1,f +12094,4871,15,1,f +12094,87585,70,1,f +12094,90194,1,1,f +12094,92590,28,1,f +12094,93606,15,1,f +12094,970c00,72,1,f +12094,970c00,272,1,f +12094,973pr2502c01,15,1,f +12094,973pr2504c01,272,1,f +12094,97895,14,1,f +12096,2431,15,2,f +12096,2431p06,1,1,f +12096,2432,4,2,f +12096,2456,15,2,f +12096,2458,7,1,f +12096,2610,14,1,f +12096,2654,7,2,f +12096,3021,1,1,f +12096,3023,4,2,f +12096,3070b,15,2,f +12096,3070b,15,1,t +12096,3479,15,2,f +12096,3626bp7e,14,1,f +12096,3666,4,3,f +12096,3747a,15,2,f +12096,3795,4,1,f +12096,3829c01,15,1,f +12096,4079,1,1,f +12096,4485,15,1,f +12096,4617b,0,1,f +12096,970c00,15,1,f +12096,973p73c01,2,1,f +12097,2431,4,1,f +12097,3005p02,0,2,f +12097,3020,0,1,f +12097,3022,4,1,f +12097,3022,0,2,f +12097,3023,4,1,f +12097,3024,36,2,f +12097,3024,0,2,f +12097,3068bp83,4,1,f +12097,3626apr0001,14,1,f +12097,3641,0,4,f +12097,3710,0,5,f +12097,3788,0,2,f +12097,3821,0,1,f +12097,3822,0,1,f +12097,3823,47,2,f +12097,3829c01,4,1,f +12097,3842a,0,1,f +12097,3937,0,1,f +12097,3938,0,1,f +12097,4070,4,2,f +12097,4070,0,2,f +12097,4212b,4,1,f +12097,4213,0,1,f +12097,4315,0,1,f +12097,4600,0,2,f +12097,4624,15,4,f +12097,6141,46,2,f +12097,6141,47,2,f +12097,970c00,4,1,f +12097,973p0ac04,4,1,f +12099,12825,72,1,f +12099,15207,15,2,f +12099,15207,71,4,f +12099,15210,0,1,f +12099,15210pr01,0,1,f +12099,2412b,1,7,f +12099,2412b,72,4,f +12099,2431,72,1,f +12099,2431,33,2,f +12099,2431,71,8,f +12099,2432,15,1,f +12099,2436,15,2,f +12099,2437,41,1,f +12099,2453a,72,1,f +12099,2453a,15,12,f +12099,2454a,72,11,f +12099,2458,15,4,f +12099,2465,15,3,f +12099,2486,4,2,f +12099,2569,71,1,t +12099,2569,71,1,f +12099,2654,46,3,f +12099,2730,15,3,f +12099,2780,0,4,f +12099,2780,0,1,t +12099,2921,19,1,f +12099,298c02,4,1,t +12099,298c02,4,1,f +12099,3001,15,1,f +12099,3001,0,1,f +12099,3002,19,1,f +12099,3004,19,11,f +12099,3004,72,17,f +12099,3004,0,1,f +12099,3004,1,3,f +12099,3005,72,4,f +12099,3005,15,19,f +12099,30089,0,1,f +12099,3009,72,2,f +12099,3009,15,8,f +12099,3010,15,12,f +12099,3010,72,4,f +12099,30134,0,1,f +12099,30153,41,1,f +12099,3020,15,3,f +12099,3020,70,3,f +12099,3020,14,1,f +12099,3021,1,1,f +12099,3022,1,1,f +12099,3022,71,3,f +12099,3022,15,1,f +12099,30225,72,1,f +12099,3023,15,13,f +12099,3023,1,8,f +12099,3023,46,4,f +12099,30237a,15,3,f +12099,30237a,71,6,f +12099,3024,33,6,f +12099,3024,15,4,f +12099,30256,15,1,f +12099,3027,0,2,f +12099,3030,0,4,f +12099,3031,15,1,f +12099,3032,0,18,f +12099,3035,0,1,f +12099,30350b,72,2,f +12099,30350b,0,1,f +12099,30367b,15,3,f +12099,30383,71,1,f +12099,3040b,72,4,f +12099,3040b,15,16,f +12099,3040bpr0003,71,1,f +12099,30414,71,1,f +12099,30552,71,5,f +12099,30553,71,1,f +12099,30562,41,3,f +12099,30565,0,3,f +12099,3062b,15,2,f +12099,3062b,4,2,f +12099,3065,47,1,f +12099,3068b,15,2,f +12099,3068b,0,1,f +12099,3069b,15,11,f +12099,3069b,72,2,f +12099,3069b,15,1,t +12099,3069bpr0030,15,1,f +12099,3069bpr0100,2,1,f +12099,3176,71,2,f +12099,3185,0,3,f +12099,32000,15,1,f +12099,32001,71,2,f +12099,32028,0,1,f +12099,32028,15,3,f +12099,32054,71,1,f +12099,3245c,15,2,f +12099,3460,0,1,f +12099,3460,14,2,f +12099,3622,19,3,f +12099,3623,0,2,f +12099,3624,15,1,f +12099,3626bpr0389,14,1,f +12099,3626bpr0411,14,1,f +12099,3626bpr0645,14,1,f +12099,3626bpr0647,14,1,f +12099,3626bpr0649,14,1,f +12099,3626bpr0725,14,1,f +12099,3665,15,2,f +12099,3666,71,7,f +12099,3666,72,1,f +12099,3679,71,1,f +12099,3680,4,1,f +12099,3701,72,4,f +12099,3703,15,3,f +12099,3709,72,2,f +12099,3710,0,2,f +12099,3710,1,8,f +12099,3710,15,8,f +12099,3710,72,1,f +12099,3710,71,4,f +12099,3741,2,1,t +12099,3741,2,1,f +12099,3742,4,3,f +12099,3742,4,1,t +12099,3794b,15,1,f +12099,3794b,0,1,f +12099,3795,19,2,f +12099,3795,70,1,f +12099,3795,71,2,f +12099,3795,0,3,f +12099,3821,15,1,f +12099,3822,15,1,f +12099,3829c01,14,2,f +12099,3857,72,1,f +12099,3899,4,3,f +12099,3899,47,1,f +12099,3900,15,1,f +12099,3941,41,1,f +12099,3942c,1,1,f +12099,3957a,15,1,f +12099,3957a,71,1,f +12099,3958,0,1,f +12099,3962b,0,1,f +12099,3963,71,1,f +12099,4032a,0,1,f +12099,4079b,14,2,f +12099,4079b,1,4,f +12099,41334,0,2,f +12099,4150,15,1,f +12099,4150,0,2,f +12099,41539,0,2,f +12099,4162,72,7,f +12099,4216,15,25,f +12099,4217,15,4,f +12099,4218,41,8,f +12099,4218,0,6,f +12099,4219,15,2,f +12099,42445,71,1,f +12099,4274,1,12,f +12099,4274,1,3,t +12099,4285b,71,1,f +12099,4349,4,1,f +12099,4360,0,1,f +12099,44302a,71,2,f +12099,44570,15,2,f +12099,45677,15,2,f +12099,4599b,4,1,f +12099,4623,71,4,f +12099,4719,15,1,f +12099,4740,15,2,f +12099,48092,15,7,f +12099,48336,0,2,f +12099,4864b,41,12,f +12099,4871,71,1,f +12099,50745,15,8,f +12099,52036,72,2,f +12099,52038,15,3,f +12099,52501,15,4,f +12099,53989,179,2,f +12099,54200,33,2,t +12099,54200,46,4,f +12099,54200,36,4,f +12099,54200,36,2,t +12099,54200,72,4,f +12099,54200,72,1,t +12099,54200,46,2,t +12099,54200,33,3,f +12099,57783,41,2,f +12099,57895,41,10,f +12099,59349,15,8,f +12099,59900,1,1,f +12099,6014b,71,8,f +12099,60471,15,3,f +12099,60476,71,3,f +12099,60477,15,4,f +12099,60478,71,3,f +12099,60479,0,1,f +12099,60481,15,2,f +12099,60592,15,1,f +12099,60596,0,18,f +12099,60616a,41,1,f +12099,60621,71,1,f +12099,6064,2,1,f +12099,60700,0,8,f +12099,6111,72,3,f +12099,6111,15,3,f +12099,6141,36,5,f +12099,6141,15,1,t +12099,6141,33,3,t +12099,6141,15,5,f +12099,6141,46,2,f +12099,6141,4,4,t +12099,6141,36,2,t +12099,6141,42,1,t +12099,6141,47,1,t +12099,6141,34,1,t +12099,6141,47,1,f +12099,6141,42,1,f +12099,6141,33,4,f +12099,6141,4,9,f +12099,6141,34,1,f +12099,6141,46,2,t +12099,61482,71,1,f +12099,61482,71,1,t +12099,6157,0,4,f +12099,6180,0,1,f +12099,62113,72,1,f +12099,6231,71,4,f +12099,6256,191,1,f +12099,62711,0,1,f +12099,62808,72,2,f +12099,62810,484,1,f +12099,63864,72,2,f +12099,63864,1,2,f +12099,63965,72,2,f +12099,64567,0,1,f +12099,6636,0,1,f +12099,6636,1,13,f +12099,7498stk01,9999,1,t +12099,75c18,0,2,f +12099,85984,15,1,f +12099,86035,15,1,f +12099,86208,72,1,f +12099,87079,71,4,f +12099,87079,14,1,f +12099,87079,1,2,f +12099,87087,71,4,f +12099,88393,15,18,f +12099,88930,15,3,f +12099,89523,72,1,f +12099,92280,71,2,f +12099,92585,4,2,f +12099,92586pr0001,84,1,f +12099,92589,71,5,f +12099,92851,47,2,f +12099,93160,15,1,t +12099,93160,15,1,f +12099,95120,15,2,f +12099,970c00,72,2,f +12099,970c00,0,4,f +12099,973pr1188c01,0,3,f +12099,973pr1197c01,15,1,f +12099,973pr1694c01,71,1,f +12099,973pr1697c01,73,1,f +12101,2412b,71,1,f +12101,2540,72,1,f +12101,3020,4,2,f +12101,3023,4,1,f +12101,30602,0,1,f +12101,3176,4,1,f +12101,3795,72,1,f +12101,47456,0,1,f +12101,48183,4,1,f +12101,50944pr0001,0,4,f +12101,50947,4,2,f +12101,50951,0,4,f +12101,6157,72,2,f +12102,11097,297,1,f +12102,11100,25,2,f +12102,11127,182,1,f +12102,11477,25,2,f +12102,12825,297,2,f +12102,16656pr0004,25,1,f +12102,2412b,25,2,f +12102,2412b,25,1,t +12102,298c02,4,1,t +12102,298c02,4,2,f +12102,3020,71,1,f +12102,3626cpr1421,25,1,f +12102,3795,19,2,f +12102,41769,4,1,f +12102,41770,4,1,f +12102,59900,182,2,f +12102,61252,0,2,f +12102,6141,0,2,f +12102,6141,0,1,t +12102,86208,72,2,f +12102,93273,320,1,f +12102,93606,25,1,f +12102,970c00pr0660,25,1,f +12102,973pr2685c01,4,1,f +12102,98138pr0023,182,1,t +12102,98138pr0023,182,1,f +12103,11211,71,2,f +12103,11291,0,1,f +12103,14520,72,2,f +12103,15207,27,2,f +12103,2412b,72,1,f +12103,2431,27,1,f +12103,2432,1,1,f +12103,2437,40,1,f +12103,2446,0,1,f +12103,2447,40,1,f +12103,2447,40,1,t +12103,3004,27,1,f +12103,30157,71,2,f +12103,3020,27,2,f +12103,3020,0,4,f +12103,3021,71,2,f +12103,3022,27,2,f +12103,3023,15,2,f +12103,3040b,0,2,f +12103,3070b,0,1,t +12103,3070b,0,2,f +12103,3626cpr0743,14,1,f +12103,3710,0,2,f +12103,3829c01,71,1,f +12103,3832,0,1,f +12103,4006,0,1,f +12103,44301a,0,2,f +12103,45677,0,1,f +12103,48336,71,1,f +12103,50950,27,2,f +12103,52036,72,1,f +12103,52501,27,2,f +12103,54200,47,2,f +12103,54200,47,1,t +12103,54200,36,2,f +12103,54200,36,1,t +12103,55981,71,4,f +12103,60470a,0,1,f +12103,6141,14,8,f +12103,6141,14,1,t +12103,92280,71,1,f +12103,92402,0,4,f +12103,93273,27,2,f +12103,970c00,0,1,f +12103,973pr0190c01,27,1,f +12103,98282,72,4,f +12104,2431,27,1,f +12104,2654,47,1,f +12104,3004,27,1,f +12104,3010,27,2,f +12104,3023,27,5,f +12104,3032,72,3,f +12104,30325,1,1,f +12104,30367b,0,1,f +12104,30367b,15,2,f +12104,30383,15,2,f +12104,30385,33,1,f +12104,30663,0,2,f +12104,32000,71,2,f +12104,32062,4,2,f +12104,32072,0,2,f +12104,32474,0,1,f +12104,3626bpr0558,14,1,f +12104,3700,0,1,f +12104,3701,0,1,f +12104,3702,0,2,f +12104,3710,72,2,f +12104,3713,71,2,f +12104,3713,71,1,t +12104,3737,0,1,f +12104,3835,0,1,f +12104,3941,15,2,f +12104,4032a,0,1,f +12104,4070,0,2,f +12104,4080,25,1,f +12104,42610,71,2,f +12104,4274,1,1,t +12104,4274,1,2,f +12104,43903,0,2,f +12104,44294,71,1,f +12104,44818,25,1,f +12104,4623,0,3,f +12104,50943,71,1,f +12104,50950,27,2,f +12104,55982,71,4,f +12104,59443,72,2,f +12104,60169,72,1,f +12104,6019,72,2,f +12104,60470a,71,1,f +12104,60481,27,2,f +12104,61409,27,4,f +12104,6141,47,2,f +12104,6141,0,2,f +12104,6141,0,1,t +12104,6141,47,1,t +12104,6141,27,2,f +12104,6141,27,1,t +12104,64450,0,1,f +12104,64728,4,1,f +12104,64783,72,2,f +12104,64784pat01,33,1,f +12104,64785,72,1,f +12104,6587,72,4,f +12104,6628,0,1,f +12104,85543,15,1,f +12104,8958stk01,9999,1,t +12104,970c00pr0122,1,1,f +12104,973pr1432c01,71,1,f +12106,2357,15,2,f +12106,2445,15,1,f +12106,2465,2,2,f +12106,2476a,15,1,f +12106,3002,15,2,f +12106,3008,15,2,f +12106,3022,4,6,f +12106,3022,15,1,f +12106,30488c01,15,1,f +12106,30492,2,1,f +12106,3068b,2,4,f +12106,33287,15,4,f +12106,3622,2,2,f +12106,3626bp03,14,1,f +12106,3626bpx33,14,1,f +12106,3700,15,1,f +12106,3832,4,2,f +12106,3901,6,1,f +12106,3901,6,1,t +12106,3957a,15,1,f +12106,4176,15,2,f +12106,4201,2,1,f +12106,42039,9999,1,t +12106,42380a,0,1,f +12106,42380b,0,1,f +12106,4476b,15,2,f +12106,4485,15,1,f +12106,4495a,1,1,t +12106,4495a,1,1,f +12106,6112,2,1,f +12106,72824p01,15,2,f +12106,970c00,1,1,f +12106,970c00,7,1,f +12106,973pb0166c01,0,1,f +12106,973pb0176c01,15,1,f +12107,10201,15,1,f +12107,11303,1,1,f +12107,15672,15,2,f +12107,2412b,71,1,f +12107,2441,0,1,f +12107,3004,27,1,f +12107,3021,2,2,f +12107,3023,15,1,f +12107,30237b,15,2,f +12107,30374,71,1,f +12107,30377,0,2,f +12107,30377,0,1,t +12107,3626cpr1146,14,1,f +12107,3829c01,71,1,f +12107,3836,70,1,f +12107,3837,72,1,f +12107,4079b,72,1,f +12107,4083,0,1,f +12107,4624,71,4,f +12107,4740,2,2,f +12107,4865a,15,1,f +12107,59900,182,1,f +12107,60470a,71,1,f +12107,6141,70,2,f +12107,6141,70,1,t +12107,6141,27,1,t +12107,6141,27,2,f +12107,6231,15,2,f +12107,87414,0,4,f +12107,91501,15,2,f +12107,92926,2,2,f +12107,970c00,1,1,f +12107,973pr1470c01,1,1,f +12107,98138,46,2,f +12107,98138,46,1,t +12108,10164pr0001,15,1,f +12108,10169,84,1,f +12108,3626bpr1162,14,1,f +12108,88646,0,1,f +12108,93223,15,1,f +12108,970c00,4,1,f +12108,973pr2112c01,4,1,f +12109,2780,0,4,f +12109,32174,0,5,f +12109,43093,1,5,f +12109,4519,71,5,f +12109,45749,320,4,f +12109,47306,0,1,f +12109,48729a,0,2,f +12109,50898,0,4,f +12109,50923,72,1,f +12109,53451,15,2,f +12109,53451,15,1,t +12109,53564,320,1,f +12109,57549pat0001,320,1,f +12109,57554,135,2,f +12109,57555,182,1,f +12109,57555,46,1,f +12109,57556,135,1,f +12109,57564,25,2,f +12109,58176,33,3,f +12109,58230,320,2,f +12109,59577pat0001,320,6,f +12111,2431,15,1,f +12111,2432,0,1,f +12111,2540,0,1,f +12111,3005,41,2,f +12111,3010,7,2,f +12111,30136,8,4,f +12111,30157,8,2,f +12111,3020,15,1,f +12111,3020,0,1,f +12111,3021,0,2,f +12111,3022,0,2,f +12111,3023,0,1,f +12111,3023,15,4,f +12111,30236,0,1,f +12111,3024,46,4,f +12111,3024,36,4,f +12111,3032,15,4,f +12111,3035,7,2,f +12111,30365,8,2,f +12111,30383,8,2,f +12111,3069b,15,3,f +12111,3069b,0,2,f +12111,3297,0,1,f +12111,3404stk01,9999,1,t +12111,3404stk02,9999,1,t +12111,3460,0,2,f +12111,3483,0,4,f +12111,3622,15,2,f +12111,3626bp03,14,1,f +12111,3626bp05,14,1,f +12111,3626bpa3,14,1,f +12111,3626bpr0001,14,2,f +12111,3626bpx19,14,1,f +12111,3665,7,2,f +12111,3666,15,2,f +12111,3710,0,2,f +12111,3710,15,4,f +12111,3795,0,2,f +12111,3795,15,2,f +12111,3829c01,0,1,f +12111,3855,41,7,f +12111,3901,19,1,f +12111,3901,0,2,f +12111,3901,6,2,f +12111,4033,0,7,f +12111,4085c,7,2,f +12111,4162,7,4,f +12111,4176,41,2,f +12111,4282,7,1,f +12111,4287,7,2,f +12111,4349,0,2,f +12111,4485,0,1,f +12111,6112,15,2,f +12111,6248,7,4,f +12111,72824p01,15,1,f +12111,970c00,0,6,f +12111,973c01,15,5,f +12111,973c12,2,1,f +12112,2431,15,1,f +12112,2436,0,1,f +12112,30027b,15,4,f +12112,30028,0,4,f +12112,3020,15,3,f +12112,3069b,36,1,t +12112,3069b,33,1,f +12112,3069b,294,1,t +12112,3069b,36,2,f +12112,3069b,294,2,f +12112,3069b,33,1,t +12112,32028,0,4,f +12112,3710,0,2,f +12112,3795,0,2,f +12112,45677,0,1,f +12112,4600,71,2,f +12112,50947,0,2,f +12112,54200,0,4,f +12115,2412b,19,1,f +12115,2817,71,1,f +12115,30136,70,6,f +12115,30173b,135,1,f +12115,30176,2,4,f +12115,30177,4,1,f +12115,3023,70,2,f +12115,3031,70,1,f +12115,3034,70,1,f +12115,3036,70,1,f +12115,30374,297,1,f +12115,3040b,71,4,f +12115,3062b,70,9,f +12115,3068b,19,3,f +12115,3176,4,1,f +12115,32000,72,2,f +12115,32557,0,2,f +12115,3626bpr0744,14,1,f +12115,3626bpr0752a,15,1,f +12115,3673,71,4,f +12115,3673,71,1,t +12115,4274,1,1,t +12115,4274,1,4,f +12115,4865a,288,3,f +12115,53705,132,1,f +12115,6141,72,1,t +12115,6141,72,2,f +12115,6141,70,1,t +12115,6141,70,1,f +12115,6541,72,2,f +12115,87580,70,1,f +12115,87747,297,1,f +12115,92690,297,1,f +12115,92691,15,1,f +12115,93061,15,2,f +12115,93061,15,1,t +12115,93062c01,15,2,f +12115,93764pr0004,15,1,f +12115,970c00pr0193,4,1,f +12115,973pr1716c01,4,1,f +12118,15712,72,4,f +12118,3022,0,1,f +12118,30377,0,4,f +12118,3957a,47,1,f +12118,3960,47,1,f +12118,4032a,72,1,f +12118,43898,0,1,f +12118,60849,0,4,f +12118,6141,36,1,f +12118,75937,0,2,f +12120,298c02,0,2,f +12120,3020,1,1,f +12120,3022,1,4,f +12120,3024,1,2,f +12120,3034,7,3,f +12120,3034,1,5,f +12120,3040b,1,2,f +12120,3062b,1,4,f +12120,3069b,1,5,f +12120,3460,1,1,f +12120,3612,7,7,f +12120,3622,1,2,f +12120,3626apr0001,14,1,f +12120,3679,7,10,f +12120,3680,1,10,f +12120,3710,1,1,f +12120,3829c01,1,1,f +12120,3838,0,1,f +12120,3842b,0,1,f +12120,3894,1,2,f +12120,4162,7,2,f +12120,4220,0,1,f +12120,4221,0,2,f +12120,4274,7,2,f +12120,4345a,1,2,f +12120,4346,1,2,f +12120,4474,46,1,f +12120,4474,1,1,f +12120,4476b,7,4,f +12120,4589,36,4,f +12120,4590,1,2,f +12120,4598,1,1,f +12120,4625,1,2,f +12120,4732,1,2,f +12120,4735,7,2,f +12120,4740,7,2,f +12120,73590c01a,46,2,f +12120,792c01,7,1,f +12120,970c00,0,1,f +12120,973p90c03,0,1,f +12123,2412b,297,2,f +12123,2412b,72,7,f +12123,2412b,0,6,f +12123,2431,0,19,f +12123,2432,2,1,f +12123,2449,0,2,f +12123,2453a,72,4,f +12123,2454a,71,4,f +12123,2458,14,2,f +12123,2540,0,2,f +12123,2555,0,1,f +12123,2723,0,28,f +12123,2780,0,1,f +12123,2780,0,1,t +12123,2817,0,1,f +12123,2825,0,1,f +12123,2877,0,5,f +12123,298c02,71,2,t +12123,298c02,71,3,f +12123,3002,72,2,f +12123,3003,0,2,f +12123,3004,72,8,f +12123,3004,70,1,f +12123,3005,72,2,f +12123,3008,0,2,f +12123,3009,72,2,f +12123,30162,72,4,f +12123,3020,71,1,f +12123,3021,0,1,f +12123,3022,0,2,f +12123,3022,14,2,f +12123,3023,72,3,f +12123,30236,0,6,f +12123,3024,46,4,f +12123,30258,72,2,f +12123,3031,72,2,f +12123,3032,72,1,f +12123,3033,72,1,f +12123,30355,0,2,f +12123,30356,0,2,f +12123,30357,72,2,f +12123,30364,0,2,f +12123,30365,0,2,f +12123,30367b,14,1,f +12123,3039,14,2,f +12123,3040b,0,4,f +12123,3062b,4,2,f +12123,3062b,36,2,f +12123,3068b,0,1,f +12123,3069b,2,3,f +12123,3069b,0,9,f +12123,3069bpr0070,0,1,f +12123,3069bpr0100,2,2,f +12123,3070b,36,2,f +12123,3070b,36,1,t +12123,32000,72,1,f +12123,32002,72,1,t +12123,32002,72,2,f +12123,32013,0,4,f +12123,32017,72,8,f +12123,32062,4,3,f +12123,32064b,72,2,f +12123,32140,14,4,f +12123,32278,72,2,f +12123,32291,0,1,f +12123,32316,0,2,f +12123,32316,14,6,f +12123,32449,0,4,f +12123,32523,14,4,f +12123,32524,0,2,f +12123,32526,72,4,f +12123,32532,0,1,f +12123,3622,0,4,f +12123,3626bpr0476,78,1,f +12123,3626bpr0485,78,1,f +12123,3626bpr0508,0,1,f +12123,3666,0,1,f +12123,3673,71,1,f +12123,3673,71,1,t +12123,3679,71,2,f +12123,3680,0,2,f +12123,3700,0,2,f +12123,3701,0,2,f +12123,3701,14,1,f +12123,3710,0,2,f +12123,3794a,72,2,f +12123,3794a,0,1,f +12123,3795,0,2,f +12123,3873,0,158,f +12123,3894,14,2,f +12123,3901,0,1,f +12123,3937,0,2,f +12123,3938,71,2,f +12123,3941,0,1,f +12123,3941,14,2,f +12123,3958,0,4,f +12123,3960,0,1,f +12123,40244,0,1,f +12123,4032a,72,1,f +12123,40490,71,2,f +12123,4070,14,2,f +12123,4085c,71,6,f +12123,41239,0,2,f +12123,4162,0,4,f +12123,41769,0,2,f +12123,41770,0,2,f +12123,42610,71,1,f +12123,4274,1,20,f +12123,4274,1,4,t +12123,4286,72,4,f +12123,43093,1,5,f +12123,4519,71,18,f +12123,45301,0,2,f +12123,45590,0,1,f +12123,45705,40,1,f +12123,4589,42,5,f +12123,4589,14,2,f +12123,4589,46,2,f +12123,4599a,0,1,f +12123,4697b,71,1,t +12123,4697b,71,1,f +12123,4733,72,1,f +12123,4740,42,1,f +12123,48724,72,1,f +12123,49668,0,8,f +12123,50859a,0,1,f +12123,50860,288,1,f +12123,50861,0,2,f +12123,50862,72,2,f +12123,50950,0,4,f +12123,51011,0,1,f +12123,54200,0,22,f +12123,55704,272,1,f +12123,55706,0,2,f +12123,55707a,0,1,f +12123,55707e,0,2,f +12123,56619,0,1,f +12123,56630,272,1,f +12123,57028c01,71,1,f +12123,57796,0,1,f +12123,58827,0,2,f +12123,59426,72,1,f +12123,60169,70,1,f +12123,6019,0,2,f +12123,6046,135,2,f +12123,6091,0,2,f +12123,6106,0,4,f +12123,6141,0,2,f +12123,6141,72,6,f +12123,6141,42,5,f +12123,6141,42,1,t +12123,6141,72,1,t +12123,6141,0,1,t +12123,6536,0,2,f +12123,6558,0,44,f +12123,6587,72,4,f +12123,6632,71,1,f +12123,7787stk01,9999,1,t +12123,85973,0,1,f +12123,970c00,2,1,f +12123,970c00,272,1,f +12123,970x140,71,1,f +12123,973pr1288,2,1,f +12123,973pr1337,78,1,f +12123,973pr1338c01,71,1,f +12123,98721,0,3,f +12124,2431,0,3,f +12124,2432,15,1,f +12124,2445,0,1,f +12124,2540,8,2,f +12124,2744,1,2,f +12124,2994,15,2,f +12124,30000,8,1,f +12124,3002,1,1,f +12124,3004,1,4,f +12124,30043,0,1,f +12124,3009,0,2,f +12124,3010,4,2,f +12124,30170,0,2,f +12124,30171,1,1,f +12124,30191,0,1,f +12124,3020,7,2,f +12124,3023,0,3,f +12124,3031,1,1,f +12124,3032,15,1,f +12124,30363,1,1,f +12124,30363pb004,1,1,f +12124,3039,4,1,f +12124,3062b,4,9,f +12124,3139,0,2,f +12124,3176,7,1,f +12124,32059,1,1,f +12124,32283c01,8,1,f +12124,3626bpb0031,14,1,f +12124,3700,0,2,f +12124,3706,0,1,f +12124,3795,1,1,f +12124,3795,0,1,f +12124,3829c01,4,1,f +12124,3839b,7,2,f +12124,3937,7,2,f +12124,4282,15,1,f +12124,4286,1,2,f +12124,43337,1,2,f +12124,4349,7,1,f +12124,4476b,0,1,f +12124,4624,15,2,f +12124,6019,1,2,f +12124,6087,15,1,f +12124,6134,4,2,f +12124,6157,0,1,f +12124,6578,0,2,f +12124,970c00,1,1,f +12124,973pb0022c01,15,1,f +12126,194cx1,2,1,f +12126,2343,47,3,f +12126,2348b,33,1,f +12126,2349a,0,1,f +12126,2362a,41,16,f +12126,2412b,4,1,f +12126,2412b,14,1,f +12126,2412b,0,6,f +12126,2412b,15,2,f +12126,2412b,383,10,f +12126,2420,0,4,f +12126,2431,14,4,f +12126,2431,4,4,f +12126,2431,0,7,f +12126,2431,1,2,f +12126,2431,2,4,f +12126,2431,15,4,f +12126,2432,4,2,f +12126,2432,15,3,f +12126,2436,0,2,f +12126,2441,0,1,f +12126,2441,4,1,f +12126,2456,0,1,f +12126,2458,4,1,f +12126,2465,15,4,f +12126,2465,0,1,f +12126,2465,1,4,f +12126,2584,0,1,f +12126,2585,7,2,f +12126,2642,8,2,f +12126,2780,0,13,f +12126,2871a,0,2,f +12126,2873,15,2,f +12126,2875,15,12,f +12126,2877,1,24,f +12126,2877,4,5,f +12126,2877,14,4,f +12126,2877,2,4,f +12126,2878c01,0,8,f +12126,2919,46,1,f +12126,2920,0,6,f +12126,2921,14,2,f +12126,2921,1,2,f +12126,2921,0,2,f +12126,2921,15,12,f +12126,2921,4,2,f +12126,2972,0,2,f +12126,3001,4,1,f +12126,3001,0,2,f +12126,3001,1,6,f +12126,3003,4,1,f +12126,3004,15,1,f +12126,3004,4,4,f +12126,3004,14,1,f +12126,3004pc0,15,1,f +12126,3004px1,15,1,f +12126,3005,36,12,f +12126,3008,0,5,f +12126,30089,0,1,f +12126,3009,0,1,f +12126,3009,1,2,f +12126,3010,4,2,f +12126,3010,2,2,f +12126,3010,1,4,f +12126,3010,15,2,f +12126,3010px1,0,1,f +12126,30161,47,2,f +12126,30162,0,1,f +12126,3020,15,10,f +12126,3020,0,10,f +12126,3021,4,2,f +12126,3022,15,7,f +12126,3022,0,5,f +12126,3023,15,6,f +12126,3023,1,2,f +12126,3023,42,5,f +12126,3023,4,2,f +12126,3024,36,2,f +12126,3024,46,6,f +12126,3034,15,4,f +12126,3034,0,2,f +12126,3036,0,2,f +12126,30385,383,1,f +12126,3039p70,15,1,f +12126,3068bp80,15,1,f +12126,3069b,15,12,f +12126,3069bp02,7,2,f +12126,3069bp08,15,1,f +12126,3069bp80,15,2,f +12126,3069bpr0100,2,2,f +12126,3070b,36,1,f +12126,3070b,46,12,f +12126,3185,4,2,f +12126,32014,0,1,f +12126,32059,15,1,f +12126,32083,15,9,f +12126,32084,1,1,f +12126,32085,0,1,f +12126,32086,41,1,f +12126,3460,15,8,f +12126,3622,0,2,f +12126,3622,14,2,f +12126,3622px1,15,1,f +12126,3623,0,2,f +12126,3624,0,1,f +12126,3624,4,1,f +12126,3626bp02,14,2,f +12126,3626bp03,14,2,f +12126,3626bp04,14,2,f +12126,3626bp05,14,1,f +12126,3626bpx17,14,1,f +12126,3626bpx18,14,1,f +12126,3641,0,12,f +12126,3665,1,4,f +12126,3665,15,2,f +12126,3710,0,5,f +12126,3710,15,8,f +12126,3749,7,2,f +12126,3788,4,2,f +12126,3788,14,2,f +12126,3795,4,6,f +12126,3823,41,1,f +12126,3829c01,7,6,f +12126,3830,1,1,f +12126,3830,14,1,f +12126,3830,4,1,f +12126,3830,0,1,f +12126,3831,14,1,f +12126,3831,0,1,f +12126,3831,1,1,f +12126,3831,4,1,f +12126,3832,0,1,f +12126,3832,15,4,f +12126,3900,15,1,f +12126,3901,6,1,f +12126,3901,0,2,f +12126,4022,0,5,f +12126,4025,0,4,f +12126,4079,4,7,f +12126,4085c,1,4,f +12126,4085c,0,2,f +12126,4150p02,14,3,f +12126,4162,0,16,f +12126,4211,2,2,f +12126,4215b,41,25,f +12126,4286,1,14,f +12126,4286,4,2,f +12126,4449,6,1,f +12126,4449,7,2,f +12126,4449,0,1,f +12126,4449,15,1,f +12126,4477,15,2,f +12126,4485,4,2,f +12126,4485,15,1,f +12126,4600,7,4,f +12126,4624,15,12,f +12126,4625,0,3,f +12126,4625,15,2,f +12126,4864b,41,4,f +12126,4864bpx1,15,2,f +12126,4865a,4,4,f +12126,4865a,0,4,f +12126,55298,8,2,f +12126,6019,15,2,f +12126,6035,15,1,f +12126,6093,6,1,f +12126,6111,0,4,f +12126,6141,36,1,f +12126,6141,34,1,f +12126,6190,15,1,f +12126,6541,1,16,f +12126,6636,15,4,f +12126,70358,0,1,f +12126,73092,0,6,f +12126,74746,8,4,f +12126,74747,8,32,f +12126,75535,15,3,f +12126,75535,4,3,f +12126,970c00,0,1,f +12126,970c00,15,1,f +12126,970c00,8,3,f +12126,970c00,2,2,f +12126,970c00,4,1,f +12126,970c00,1,1,f +12126,973p70c01,6,1,f +12126,973p83c01,14,1,f +12126,973p8ac01,0,1,f +12126,973px28c01,15,1,f +12126,973px2c01,1,1,f +12126,973px30c01,1,1,f +12126,973px31c01,7,1,f +12126,973px32c01,1,1,f +12126,973px8c01,1,1,f +12127,15573,15,1,f +12127,3004,19,2,f +12127,3068b,29,1,f +12127,33291,5,1,t +12127,33291,5,1,f +12127,3623,85,2,f +12127,44728,71,1,f +12127,6091,19,2,f +12127,93095,29,1,f +12128,2412b,297,1,f +12128,2419,71,3,f +12128,2420,72,2,f +12128,2436,71,2,f +12128,2476a,288,1,f +12128,2540,72,1,f +12128,2780,0,1,f +12128,2877,72,7,f +12128,3001,27,1,f +12128,3002,70,1,f +12128,3003,19,1,f +12128,3010,4,1,f +12128,3020,27,1,f +12128,3021,72,3,f +12128,3022,70,4,f +12128,3023,72,16,f +12128,3034,72,3,f +12128,30381,0,1,f +12128,3040b,288,2,f +12128,3048c,288,1,f +12128,3068b,14,1,f +12128,3176,0,2,f +12128,32000,72,6,f +12128,32002,72,4,f +12128,32016,14,2,f +12128,32028,71,4,f +12128,32054,4,2,f +12128,32059,0,1,f +12128,32062,4,2,f +12128,32064b,0,10,f +12128,32073,71,1,f +12128,32123b,14,3,f +12128,32316,14,2,f +12128,32474,4,2,f +12128,32530,72,1,f +12128,3623,27,4,f +12128,3626cpr0866,14,1,f +12128,3660,72,4,f +12128,3665,72,2,f +12128,3666,27,3,f +12128,3701,71,2,f +12128,3705,0,4,f +12128,3707,0,1,f +12128,3709,72,4,f +12128,3710,0,3,f +12128,3713,4,2,f +12128,3794b,27,1,f +12128,3795,0,3,f +12128,3795,71,1,f +12128,3830,71,2,f +12128,3831,71,2,f +12128,3832,0,1,f +12128,3839b,71,1,f +12128,3844,71,2,f +12128,3941,71,2,f +12128,4032a,71,4,f +12128,4085c,72,2,f +12128,4150,71,4,f +12128,41531,71,1,f +12128,41677,1,2,f +12128,41879a,0,1,f +12128,4286,72,2,f +12128,4287,288,2,f +12128,43093,1,2,f +12128,43121,71,2,f +12128,43710,27,1,f +12128,43711,27,1,f +12128,43712,288,1,f +12128,43722,27,3,f +12128,43723,27,3,f +12128,44126,0,1,f +12128,44728,71,3,f +12128,4519,71,2,f +12128,4589,52,4,f +12128,47456,15,1,f +12128,47457,72,6,f +12128,48336,71,3,f +12128,4855,72,1,f +12128,4865b,288,2,f +12128,4871,71,1,f +12128,49668,27,2,f +12128,50373,71,1,f +12128,50948,27,2,f +12128,54200,288,2,f +12128,54200,27,2,f +12128,57585,71,1,f +12128,57906,27,2,f +12128,59233pat0001,41,1,f +12128,59443,72,3,f +12128,60474,288,2,f +12128,6070,27,4,f +12128,61070,27,1,f +12128,61071,27,1,f +12128,61184,71,4,f +12128,61409,72,2,f +12128,6141,27,12,f +12128,6141,297,2,f +12128,6141,85,4,f +12128,61678,27,4,f +12128,6215,0,1,f +12128,62361,27,2,f +12128,63868,0,7,f +12128,64567,71,2,f +12128,64727,297,2,f +12128,6541,0,2,f +12128,6587,28,5,f +12128,6632,14,1,f +12128,72454,72,1,f +12128,73983,71,1,f +12128,85543,15,1,f +12128,85984,85,2,f +12128,85984,0,1,f +12128,87079,0,1,f +12128,87407,71,1,f +12128,87580,72,1,f +12128,90194,288,2,f +12128,92280,71,2,f +12128,92579,52,1,f +12128,92582,0,2,f +12128,92690,297,1,f +12128,92946,72,2,f +12128,93274,0,2,f +12128,93794,297,1,f +12128,9443stk01,9999,1,t +12128,973pr0440c01,0,1,f +12128,98134,297,1,f +12128,98135,148,3,f +12128,98136,15,2,f +12128,98138,71,4,f +12128,98138pr0001,182,1,f +12128,98342,27,2,f +12128,98347,15,2,f +12128,99464,0,1,f +12130,21,47,2,f +12130,3001a,14,1,f +12130,3002a,4,2,f +12130,3004,47,3,f +12130,3005,4,2,f +12130,3008,14,2,f +12130,3009,4,2,f +12130,3010,14,1,f +12130,3010,4,1,f +12130,3010pb035e,4,1,f +12130,3020,14,4,f +12130,3020,4,1,f +12130,3029,4,1,f +12130,3031,4,2,f +12130,3034,4,1,f +12130,3035,14,1,f +12130,3037,14,1,f +12130,3062a,0,1,f +12130,3137c01,0,2,f +12130,3137c02,0,2,f +12130,3139,0,4,f +12130,3149c01,4,2,f +12130,3404ac01,0,1,f +12130,3491,4,1,f +12130,3492c01,14,1,f +12130,7b,0,4,f +12131,3001a,47,1,f +12131,3002a,4,2,f +12131,3005,4,4,f +12131,3010,4,3,f +12131,3010pb035e,4,1,f +12131,3020,4,2,f +12131,3021,4,2,f +12131,3030,4,1,f +12131,3035,7,1,f +12131,3137c01,0,3,f +12131,3139,0,6,f +12131,3188,4,2,f +12131,3189,4,2,f +12132,2340,1,2,f +12132,2357,1,2,f +12132,2399,1,1,f +12132,2412b,0,2,f +12132,2420,1,4,f +12132,2431,1,1,f +12132,2431p06,1,2,f +12132,2432,1,1,f +12132,2432,14,1,f +12132,2446px3,4,1,f +12132,2447,41,1,f +12132,2460,1,1,f +12132,2496,0,2,f +12132,2540,15,2,f +12132,2625,4,2,f +12132,2655,15,2,f +12132,298c03,1,1,f +12132,3002,4,2,f +12132,3004,4,1,f +12132,3004,14,1,f +12132,3009,4,1,f +12132,3020,15,1,f +12132,3020,1,1,f +12132,3020,7,1,f +12132,3022,14,1,f +12132,3022,1,1,f +12132,3022,4,1,f +12132,3023,1,2,f +12132,3023,15,1,f +12132,3024,46,4,f +12132,3039,1,1,f +12132,3039pc5,7,1,f +12132,3068b,1,1,f +12132,3068bp51,0,1,f +12132,3069b,14,1,f +12132,3069b,1,9,f +12132,3069bp02,7,1,f +12132,3069bp28,0,3,f +12132,3069bp80,15,1,f +12132,3139,0,4,f +12132,3460,15,2,f +12132,3585,15,1,f +12132,3586,15,1,f +12132,3623,1,2,f +12132,3626bp04,14,1,f +12132,3626bp05,14,1,f +12132,3666,15,2,f +12132,3666,1,1,f +12132,3676,0,2,f +12132,3679,7,1,f +12132,3680,15,1,f +12132,3700,15,1,f +12132,3710,14,1,f +12132,3710,1,5,f +12132,3794a,1,1,f +12132,3795,4,1,f +12132,3795,15,1,f +12132,3839b,1,2,f +12132,3870,7,1,f +12132,3900,15,2,f +12132,3935,15,1,f +12132,3936,15,1,f +12132,3941,0,1,f +12132,4070,1,2,f +12132,4085c,1,4,f +12132,4085c,7,2,f +12132,4213,1,1,f +12132,4286,1,2,f +12132,4287,1,2,f +12132,4315,1,1,f +12132,4485,15,1,f +12132,4532,1,1,f +12132,4536,14,2,f +12132,4590,0,1,f +12132,4596,7,1,f +12132,4624,7,4,f +12132,4856a,4,2,f +12132,4858,1,1,f +12132,4859,15,1,f +12132,4859,1,1,f +12132,4865a,1,9,f +12132,4870,7,2,f +12132,4871,0,2,f +12132,55295,8,1,f +12132,55296,8,1,f +12132,55297,8,1,f +12132,55298,8,1,f +12132,55299,8,1,f +12132,55300,8,1,f +12132,6141,34,1,t +12132,6141,46,2,f +12132,6141,34,1,f +12132,6141,46,1,t +12132,6141,36,1,f +12132,6141,36,1,t +12132,6152,41,1,f +12132,6153a,1,1,f +12132,6230,0,2,f +12132,6564,4,2,f +12132,6565,4,2,f +12132,970c00,1,1,f +12132,970c00,4,1,f +12132,973pb0249c01,4,1,f +12132,973pr1156c01,1,1,f +12133,2345,0,2,f +12133,2357,0,2,f +12133,2431,7,1,f +12133,2446,0,1,f +12133,2546,8,1,f +12133,2554,6,2,f +12133,2587,8,1,f +12133,2588,21,1,f +12133,2594,8,1,f +12133,3004,15,2,f +12133,3004,7,1,f +12133,3004,0,1,f +12133,3005,0,1,f +12133,3005,7,2,f +12133,3023,15,2,f +12133,3024,0,2,f +12133,3024,0,1,t +12133,3039,7,1,f +12133,3307,0,1,f +12133,3581,0,2,f +12133,3626a,0,1,f +12133,3626apr0001,14,1,f +12133,3673,7,1,t +12133,3673,7,1,f +12133,3700,7,2,f +12133,3846p4c,7,1,f +12133,3847,8,1,f +12133,3849,8,2,f +12133,3958,2,1,f +12133,4085c,0,1,f +12133,4491b,1,1,f +12133,4495a,1,1,f +12133,4495a,4,1,f +12133,75998pr0007,15,1,f +12133,87692,4,1,f +12133,87693,4,1,t +12133,87694,4,1,t +12133,970x021,0,1,f +12133,973c09,15,1,f +12133,973p40c01,0,1,f +12134,11215,71,4,f +12134,11477,71,4,f +12134,15068,19,2,f +12134,15573,4,4,f +12134,15672,15,2,f +12134,18907pr0001,15,1,f +12134,18908,40,1,f +12134,18910,15,2,f +12134,2412b,4,1,t +12134,2412b,4,2,f +12134,2456,15,2,f +12134,2654,71,2,f +12134,2877,72,5,f +12134,298c02,15,2,f +12134,298c02,15,1,t +12134,3001,72,2,f +12134,3005,15,2,f +12134,3010,15,4,f +12134,3020,4,1,f +12134,3023,15,2,f +12134,3023,41,1,f +12134,3031,72,1,f +12134,30350b,41,2,f +12134,30367c,297,1,f +12134,3039pr0013,15,1,f +12134,30503,0,2,f +12134,30503,15,2,f +12134,3069bpr0086,71,5,f +12134,32064a,15,3,f +12134,3460,0,2,f +12134,3626cpr0891,14,1,f +12134,3626cpr1580,14,1,f +12134,3710,15,2,f +12134,3747a,15,4,f +12134,3795,0,2,f +12134,3839b,72,1,f +12134,3937,1,2,f +12134,4006,0,1,f +12134,4032a,15,1,f +12134,41769,0,1,f +12134,41769,4,1,f +12134,41770,4,1,f +12134,41770,0,1,f +12134,4282,71,1,f +12134,4519,71,3,f +12134,4589,80,2,f +12134,4740,72,1,f +12134,48336,15,2,f +12134,48336,71,2,f +12134,48336,0,2,f +12134,52501,72,2,f +12134,59900,14,2,f +12134,60219,72,1,f +12134,60470a,0,2,f +12134,60470a,15,2,f +12134,60479,4,2,f +12134,60479,15,2,f +12134,6106,0,2,f +12134,6134,1,2,f +12134,6141,14,1,t +12134,6141,14,2,f +12134,6141,41,1,f +12134,6141,41,1,t +12134,6183,15,4,f +12134,6233,0,3,f +12134,6239,15,2,f +12134,63864,15,2,f +12134,85984,19,3,f +12134,85984,15,2,f +12134,87079,71,1,f +12134,87079,15,3,f +12134,87611,72,1,f +12134,87754,15,2,f +12134,89159,297,2,f +12134,92280,4,4,f +12134,92593,15,4,f +12134,970c00,15,2,f +12134,973pr2992c01,15,2,f +12134,99207,0,1,f +12135,2412b,0,6,f +12135,2412b,72,3,f +12135,2419,272,2,f +12135,2420,272,2,f +12135,2420,71,2,f +12135,2431,71,4,f +12135,2444,0,2,f +12135,2445,0,2,f +12135,2450,72,6,f +12135,2540,0,4,f +12135,2555,0,4,f +12135,2714a,71,1,f +12135,2723,0,2,f +12135,2780,0,2,f +12135,2780,0,1,t +12135,2817,71,3,f +12135,2877,72,8,f +12135,3002,71,2,f +12135,3002,70,1,f +12135,3004,1,1,f +12135,3007,71,3,f +12135,3020,71,5,f +12135,3021,71,2,f +12135,3022,72,6,f +12135,3023,36,3,f +12135,3023,1,14,f +12135,3024,272,6,f +12135,3031,72,4,f +12135,3034,71,1,f +12135,3035,71,2,f +12135,30350b,72,1,f +12135,30365,0,2,f +12135,30374,72,4,f +12135,30375,19,2,f +12135,30376,19,2,f +12135,30377,19,1,t +12135,30378,19,2,f +12135,3039,1,4,f +12135,30503,0,4,f +12135,3068b,72,1,f +12135,3068b,272,11,f +12135,3068b,70,2,f +12135,3069b,272,4,f +12135,3069b,71,5,f +12135,3070b,71,1,t +12135,3070b,71,1,f +12135,32054,71,2,f +12135,32062,4,2,f +12135,32126,71,2,f +12135,32140,71,2,f +12135,3298,72,1,f +12135,3648b,72,1,f +12135,3666,1,2,f +12135,3673,71,1,t +12135,3673,71,5,f +12135,3679,71,2,f +12135,3680,1,2,f +12135,3705,0,1,f +12135,3707,0,2,f +12135,3736,71,1,f +12135,3794a,72,6,f +12135,3832,72,3,f +12135,3839b,72,2,f +12135,3937,71,3,f +12135,4032a,19,1,f +12135,4070,1,8,f +12135,4095,0,2,f +12135,4150,71,2,f +12135,4151b,0,1,f +12135,41669,40,4,f +12135,41769,72,1,f +12135,41769,272,2,f +12135,41770,72,1,f +12135,41770,272,2,f +12135,42003,72,2,f +12135,4285b,0,1,f +12135,43093,1,2,f +12135,43713,72,1,f +12135,43719,72,2,f +12135,43722,71,3,f +12135,43723,71,3,f +12135,43857,71,2,f +12135,44301a,72,2,f +12135,44358,71,2,f +12135,44359,71,4,f +12135,44567a,0,2,f +12135,44675,272,2,f +12135,44676,272,2,f +12135,44728,72,10,f +12135,4477,71,1,f +12135,4519,71,6,f +12135,4588,72,6,f +12135,4589,0,6,f +12135,4589,1,2,f +12135,47457,1,2,f +12135,47755,272,4,f +12135,4865a,15,1,f +12135,4871,272,2,f +12135,48729a,72,3,f +12135,48729a,72,1,t +12135,50745,72,2,f +12135,54200,272,4,f +12135,54200,71,2,f +12135,54200,71,1,t +12135,54200,272,1,t +12135,58247,0,2,f +12135,58846,71,4,f +12135,59230,19,4,f +12135,59230,19,1,t +12135,59443,0,6,f +12135,60471,71,2,f +12135,60478,71,4,f +12135,6134,1,3,f +12135,6536,0,4,f +12135,6636,71,1,f +12135,7678stk01,9999,1,t +12135,85544,1,1,f +12136,12825,72,2,f +12136,14226c41,0,1,f +12136,2339,70,2,f +12136,2340,0,2,f +12136,2357,70,2,f +12136,2357,0,4,f +12136,2432,71,4,f +12136,2444,72,4,f +12136,2460,4,1,f +12136,2476a,288,6,f +12136,2527,70,1,f +12136,2540,4,5,f +12136,2569,42,1,f +12136,2570,148,4,f +12136,2584,0,1,f +12136,2585,71,1,f +12136,2654,19,6,f +12136,2654,0,4,f +12136,2736,71,2,f +12136,2780,0,13,f +12136,2780,0,4,t +12136,2853,71,1,f +12136,2877,71,10,f +12136,2921,0,2,f +12136,3001,15,2,f +12136,3001,70,5,f +12136,3002,71,2,f +12136,3002,70,2,f +12136,3004,72,1,f +12136,3009,70,7,f +12136,3010,72,2,f +12136,30136,308,15,f +12136,30137,71,3,f +12136,30150,70,1,f +12136,30153,47,3,f +12136,30165,4,1,f +12136,30173b,179,4,f +12136,30174,72,2,f +12136,3020,70,8,f +12136,3021,72,2,f +12136,3022,72,4,f +12136,3023,2,2,f +12136,3023,0,28,f +12136,3023,71,1,f +12136,30259,70,2,f +12136,3028,70,1,f +12136,3031,70,3,f +12136,3031,19,1,f +12136,3032,70,4,f +12136,3034,70,2,f +12136,30350b,70,2,f +12136,30357,70,10,f +12136,30357,0,2,f +12136,30363,72,1,f +12136,30374,42,1,f +12136,30389b,0,1,f +12136,3039,72,1,f +12136,3040b,28,2,f +12136,3040b,308,2,f +12136,30503,70,2,f +12136,30553,0,1,f +12136,30553,72,2,f +12136,3062b,42,2,f +12136,3062b,0,8,f +12136,3068b,70,2,f +12136,3068bpr0194,19,1,f +12136,3069b,28,1,f +12136,32000,4,2,f +12136,32013,72,2,f +12136,32028,71,1,f +12136,32059,0,1,f +12136,32062,4,8,f +12136,32073,71,1,f +12136,32123b,14,1,t +12136,32123b,14,4,f +12136,32125,71,2,f +12136,32138,0,2,f +12136,32140,1,2,f +12136,32140,15,2,f +12136,32184,4,1,f +12136,32192,0,1,f +12136,32192,72,2,f +12136,32271,72,2,f +12136,32348,71,2,f +12136,32474,0,1,f +12136,32525,19,1,f +12136,32529,0,2,f +12136,32530,72,1,f +12136,32556,19,2,f +12136,3297,4,2,f +12136,3307,71,2,f +12136,3460,72,6,f +12136,3623,72,6,f +12136,3626bpr0746,14,1,f +12136,3626bpr0781,0,1,f +12136,3626cpr0747,14,1,f +12136,3626cpr0748,14,1,f +12136,3633,297,2,f +12136,3665,70,4,f +12136,3666,70,8,f +12136,3673,71,3,f +12136,3673,71,2,t +12136,3679,71,1,f +12136,3680,0,1,f +12136,37,297,2,f +12136,3700,72,7,f +12136,3701,72,4,f +12136,3701,19,2,f +12136,3703,0,2,f +12136,3705,0,2,f +12136,3706,0,2,f +12136,3710,0,5,f +12136,3713,4,1,t +12136,3713,4,2,f +12136,3738,72,1,f +12136,3794b,320,1,f +12136,3794b,272,3,f +12136,3795,308,3,f +12136,3832,70,6,f +12136,3849,0,2,f +12136,3894,72,2,f +12136,3895,72,2,f +12136,3937,71,1,f +12136,3937,72,3,f +12136,3938,71,1,f +12136,3941,2,1,f +12136,3941,71,5,f +12136,4032a,71,6,f +12136,4032a,0,3,f +12136,4032a,308,13,f +12136,4150,71,4,f +12136,4150,4,1,f +12136,4151b,72,1,f +12136,4162,70,2,f +12136,41769,70,2,f +12136,41769,0,1,f +12136,41770,0,1,f +12136,41770,70,2,f +12136,42060,4,1,f +12136,42061,4,1,f +12136,42445,71,2,f +12136,42446,70,2,f +12136,42610,71,4,f +12136,4287,70,6,f +12136,43093,1,8,f +12136,43722,4,1,f +12136,43723,4,1,f +12136,43899,72,1,f +12136,44301a,0,2,f +12136,44568,71,4,f +12136,4460b,70,2,f +12136,44676,72,2,f +12136,4477,70,2,f +12136,44809,0,1,f +12136,4519,71,1,f +12136,4590,72,2,f +12136,47404,70,3,f +12136,47456,4,1,f +12136,47457,297,6,f +12136,47753pr0003,28,1,f +12136,48002,0,1,f +12136,4865a,288,2,f +12136,48723,70,1,f +12136,48729b,72,1,t +12136,48729b,72,4,f +12136,49668,0,2,f +12136,50304,70,2,f +12136,50305,70,2,f +12136,50950,4,3,f +12136,53586,179,2,f +12136,54200,70,10,f +12136,54200,70,2,t +12136,56823c100,0,1,f +12136,59426,72,2,f +12136,59443,0,1,f +12136,59443,72,1,f +12136,59900,71,4,f +12136,6005,0,4,f +12136,60478,72,6,f +12136,60479,0,4,f +12136,60897,0,6,f +12136,6091,0,8,f +12136,61252,72,2,f +12136,61252,297,4,f +12136,6134,71,3,f +12136,61409,0,4,f +12136,6141,72,2,f +12136,6141,72,1,t +12136,6141,0,22,f +12136,6141,0,3,t +12136,61678,297,4,f +12136,6222,70,1,f +12136,6232,71,3,f +12136,63868,4,6,f +12136,63965,70,1,f +12136,63965,297,1,t +12136,63965,297,4,f +12136,6553,72,2,f +12136,6558,1,4,f +12136,6564,0,1,f +12136,6565,0,1,f +12136,6587,28,4,f +12136,6636,70,2,f +12136,70132,19,1,f +12136,70165,19,1,f +12136,84943,148,1,f +12136,85984,0,4,f +12136,87079,0,10,f +12136,87079,72,3,f +12136,87079pr0008,15,2,f +12136,87082,4,1,f +12136,87620,72,2,f +12136,88811,179,1,f +12136,88811,179,1,t +12136,92092,72,4,f +12136,92280,4,2,f +12136,92593,71,1,f +12136,92690,297,1,f +12136,92947,4,2,f +12136,93059,19,1,f +12136,93059,297,2,f +12136,93069,15,1,f +12136,93070,4,1,f +12136,93168,72,4,f +12136,93273,72,2,f +12136,93274,0,2,f +12136,93591,4,2,f +12136,9446stk01,9999,1,t +12136,95188,4,2,f +12136,95354,0,1,f +12136,970c00pr0190,15,1,f +12136,970c00pr0192,1,1,f +12136,970c00pr0261,272,1,f +12136,970c00pr0278,0,1,f +12136,970c00pr0279,15,1,f +12136,973pr0808c01,15,1,f +12136,973pr1715c01,15,1,f +12136,973pr1717c01,1,1,f +12136,973pr1741c01,0,1,f +12136,973pr1878c01,272,1,f +12136,973pr1879c01,272,1,f +12136,98128,148,1,f +12136,98130pr0001,72,2,f +12136,98134,297,1,f +12136,98138pr0002,33,1,f +12136,98138pr0002,33,1,t +12136,98139,179,2,f +12136,98141,297,1,t +12136,98141,297,1,f +12136,98143pr0001,272,1,f +12136,98143pr0002,272,1,f +12136,98283,28,6,f +12136,98313,0,4,f +12136,98560,71,2,f +12136,99415,148,1,f +12136,99778pr0005,272,1,f +12139,132a,0,8,f +12139,3001a,0,18,f +12139,3001a,1,16,f +12139,3001a,47,6,f +12139,3001a,4,46,f +12139,3001a,14,16,f +12139,3001a,15,44,f +12139,3002a,4,4,f +12139,3002a,14,4,f +12139,3002a,15,8,f +12139,3003,47,4,f +12139,3003,15,12,f +12139,3003,0,4,f +12139,3003,14,4,f +12139,3003,4,12,f +12139,3003,1,6,f +12139,3004,0,4,f +12139,3004,15,16,f +12139,3004,14,10,f +12139,3004,4,4,f +12139,3005,14,4,f +12139,3006,4,2,f +12139,3006,15,2,f +12139,3007,15,2,f +12139,3007,14,1,f +12139,3007,4,2,f +12139,3008,14,2,f +12139,3010,15,2,f +12139,3010,14,2,f +12139,3030,0,1,f +12139,3032,0,1,f +12139,3081cc01,4,4,f +12139,3081cc01,15,2,f +12139,3192,1,1,f +12139,3193,1,1,f +12139,3297,4,12,f +12139,3298,4,10,f +12139,3299,4,3,f +12139,3300,4,2,f +12139,3579,15,1,f +12139,3579,14,1,f +12139,3581,14,4,f +12139,3581,15,2,f +12139,3582,1,6,f +12139,453cc01,4,3,f +12139,453cc01,15,2,f +12139,604c01,4,1,f +12139,700ed,2,2,f +12139,7039,4,8,f +12139,7049b,0,4,f +12139,7930,4,2,f +12140,45463,15,1,f +12140,clikits025,43,1,f +12140,clikits110,63,1,f +12140,clikits118,89,1,f +12141,10201,15,1,f +12141,11203pr0013,29,1,f +12141,11213,322,1,f +12141,11477,85,2,f +12141,11602pr0001b,15,1,f +12141,11618,191,1,t +12141,11618,191,1,f +12141,13770,297,1,f +12141,14769,297,1,f +12141,15395,4,1,f +12141,15573,15,3,f +12141,20482,47,1,t +12141,20482,47,1,f +12141,23969,26,2,f +12141,24131,191,1,t +12141,24131,191,1,f +12141,3004,29,1,f +12141,30153,41,1,f +12141,3020,26,1,f +12141,3022,15,1,f +12141,3023,46,1,f +12141,3036,27,1,f +12141,30367c,4,1,f +12141,3062b,85,2,f +12141,3062b,322,1,f +12141,3069b,29,1,f +12141,3069bpr0158,323,1,f +12141,33291,26,4,f +12141,33291,26,1,t +12141,3659,85,1,f +12141,3710,26,1,f +12141,3852b,191,1,f +12141,4865b,41,1,f +12141,6141,15,1,t +12141,6141,15,2,f +12141,61485,71,1,f +12141,6179,15,1,f +12141,6256,191,1,f +12141,63965,15,1,f +12141,64648,179,1,f +12141,85080,29,4,f +12141,87580,321,1,f +12141,98138,45,1,t +12141,98138,182,1,f +12141,98138,45,2,f +12141,98138,182,1,t +12141,98138,41,1,t +12141,98138,41,1,f +12142,2730,71,1,f +12142,2780,0,36,f +12142,2825,71,2,f +12142,30602,40,2,f +12142,32000,71,2,f +12142,32009,1,2,f +12142,32009,0,2,f +12142,32013,0,2,f +12142,32034,0,9,f +12142,32034,1,1,f +12142,32034,71,3,f +12142,32054,71,2,f +12142,32056,71,2,f +12142,32062,0,6,f +12142,32068,0,2,f +12142,32069,0,2,f +12142,32072,71,2,f +12142,32073,71,8,f +12142,32123b,1,12,f +12142,32123b,1,1,t +12142,32138,1,4,f +12142,32140,0,4,f +12142,32140,71,1,f +12142,32188,1,1,f +12142,32189,1,1,f +12142,32202,71,2,f +12142,32209,0,6,f +12142,32269,71,3,f +12142,32270,71,1,f +12142,32291,71,3,f +12142,32316,1,2,f +12142,32449,1,6,f +12142,32524,71,2,f +12142,32525,0,8,f +12142,32526,0,4,f +12142,32526,1,2,f +12142,32556,71,2,f +12142,3647,71,2,f +12142,3648b,71,1,f +12142,3705,0,1,f +12142,3713,0,3,f +12142,3713,71,1,t +12142,3713,0,1,t +12142,3713,71,4,f +12142,3743,71,1,f +12142,3749,19,10,f +12142,3794a,0,2,f +12142,40490,1,5,f +12142,41677,71,4,f +12142,4185,0,6,f +12142,4274,71,1,t +12142,4274,71,5,f +12142,43093,1,12,f +12142,44292,71,6,f +12142,44294,71,1,f +12142,44308,0,6,f +12142,4519,71,15,f +12142,4716,71,1,f +12142,6141,71,1,t +12142,6141,57,2,f +12142,6141,71,1,f +12142,6141,57,1,t +12142,6536,71,4,f +12142,6536,0,5,f +12142,6538b,71,6,f +12142,6538b,1,4,f +12142,6558,0,11,f +12142,6587,72,8,f +12142,6589,71,2,f +12142,6629,1,2,f +12142,6632,0,4,f +12143,3001a,47,2,f +12143,3001a,4,1,f +12143,3003,1,1,f +12143,3004,47,1,f +12143,3005,4,2,f +12143,3005,1,4,f +12143,3010,47,2,f +12143,3010p30,1,2,f +12143,3010pb035e,4,1,f +12143,3020,0,1,f +12143,3020,14,1,f +12143,3021,0,5,f +12143,3023,0,2,f +12143,3023,14,2,f +12143,3035,1,1,f +12143,3037,47,1,f +12143,3046a,4,2,f +12143,3137c01,0,1,f +12143,3137c02,0,5,f +12143,3139,0,2,f +12143,3430c02,0,1,f +12143,7b,0,10,f +12143,966,4,1,f +12143,966a,4,1,f +12143,967,4,1,f +12144,3004,1,2,f +12144,3020,73,1,f +12144,3022,73,1,f +12144,3023,73,1,f +12144,3024,73,2,f +12144,3040b,1,3,f +12144,3298,1,1,f +12144,3623,1,2,f +12144,3660,73,1,f +12144,3665,1,1,f +12144,3665,73,2,f +12144,3673,71,1,t +12144,3673,71,2,f +12144,3710,1,2,f +12144,3830,1,1,f +12144,3831,1,1,f +12144,3937,1,2,f +12144,3938,71,2,f +12144,4274,71,4,f +12144,4274,71,1,t +12144,43710,1,1,f +12144,43711,1,1,f +12144,44661,1,1,f +12144,47674,143,1,f +12144,47675,73,1,f +12144,47676,73,1,f +12144,48336,73,1,f +12144,49668,21,4,f +12144,54200,33,3,f +12144,54200,15,2,f +12144,6019,4,2,f +12144,6141,0,2,f +12144,6141,0,1,t +12144,6541,1,5,f +12145,23306,383,2,f +12145,2357,8,2,f +12145,2412b,7,1,f +12145,2412b,57,2,f +12145,2420,8,6,f +12145,2431,14,3,f +12145,2431,27,4,f +12145,2431,462,4,f +12145,2432,7,2,f +12145,2436,14,1,f +12145,2555,27,2,f +12145,2561,0,1,f +12145,2654,0,1,f +12145,2873,14,1,f +12145,2877,7,2,f +12145,298c02,14,2,f +12145,30000,7,1,f +12145,3004,15,1,f +12145,3004,7,2,f +12145,3004,27,2,f +12145,3004,14,1,f +12145,3007,14,1,f +12145,3009,2,2,f +12145,3010,7,2,f +12145,30161,47,2,f +12145,30170,8,1,t +12145,30170,8,1,f +12145,3020,8,4,f +12145,3020,2,1,f +12145,3020,7,1,f +12145,3020,462,1,f +12145,3020,14,1,f +12145,3021,7,2,f +12145,3021,484,2,f +12145,3022,8,1,f +12145,3023,7,4,f +12145,3023,14,4,f +12145,30236,27,1,f +12145,3024,36,2,f +12145,3024,42,2,f +12145,3029,0,1,f +12145,3030,8,2,f +12145,3031,8,2,f +12145,3032,8,1,f +12145,30325,7,1,f +12145,3035,0,1,f +12145,30361px3,0,2,f +12145,30363px2,14,2,f +12145,30374,41,2,f +12145,30374,8,1,f +12145,3039p01,40,1,f +12145,3039p02,40,1,f +12145,3040b,27,6,f +12145,30503,27,2,f +12145,30552,7,1,f +12145,30602,14,2,f +12145,30633px1,40,1,f +12145,30647,14,2,f +12145,3068b,7,5,f +12145,3069bpr0070,0,2,f +12145,32013,19,2,f +12145,32028,2,6,f +12145,32059,0,1,f +12145,32062,4,1,f +12145,32064b,1,2,f +12145,32124,7,1,f +12145,32530,2,1,f +12145,3298,14,1,f +12145,3298,2,2,f +12145,33054,383,2,f +12145,3460,2,2,f +12145,3622,8,2,f +12145,3622,462,2,f +12145,3623,8,4,f +12145,3626bpb0249,14,1,f +12145,3626bpx104,14,1,f +12145,3626bpx105,14,1,f +12145,3665,2,4,f +12145,3665,27,2,f +12145,3666,14,1,f +12145,3666,27,1,f +12145,3701,27,2,f +12145,3710,8,2,f +12145,3710,0,2,f +12145,3749,7,2,f +12145,3795,2,2,f +12145,3839b,7,1,f +12145,3894,7,1,f +12145,3901,366,1,f +12145,4032a,8,2,f +12145,4070,0,2,f +12145,4081b,7,2,f +12145,4150,7,1,f +12145,4150px21,0,2,f +12145,41747,14,1,f +12145,41747,2,1,f +12145,41748,2,1,f +12145,41748,14,1,f +12145,41752,8,1,t +12145,41764,14,2,f +12145,41765,14,2,f +12145,41769,27,3,f +12145,41769,484,3,f +12145,41769,8,1,f +12145,41770,8,1,f +12145,41770,27,3,f +12145,41770,484,3,f +12145,41855,14,1,f +12145,41855,27,1,f +12145,42022,462,2,f +12145,42022,40,2,f +12145,42023,27,2,f +12145,42060px1,27,1,f +12145,42061px1,27,1,f +12145,4274,1,4,f +12145,4274,1,1,t +12145,4282,2,2,f +12145,4286,14,2,f +12145,43337,27,2,f +12145,4519,0,2,f +12145,4530,484,1,f +12145,4589,46,2,f +12145,4625,27,3,f +12145,6141,0,1,t +12145,6141,36,2,f +12145,6141,36,1,t +12145,6141,0,8,f +12145,6179,0,1,f +12145,6180,0,2,f +12145,6541,7,2,f +12145,6636,462,2,f +12145,6636,27,2,f +12145,71509,0,2,t +12145,71509,0,2,f +12145,970c00,19,1,f +12145,970c00,6,1,f +12145,970c00pb024,373,1,f +12145,973px156c01,6,1,f +12145,973px157c01,373,1,f +12145,973px58c01,19,1,f +12147,11089,0,2,f +12147,11097,179,1,f +12147,11100,0,2,f +12147,11272,148,1,f +12147,12550pr0003,0,1,f +12147,12825,0,2,f +12147,30153,36,1,f +12147,3626cpr1131,0,1,f +12147,63965,297,1,f +12147,970c00pr0439,0,1,f +12147,973pr2241c01,0,1,f +12147,98138,41,1,f +12148,2419,7,1,f +12148,2555,0,2,f +12148,3022,0,1,f +12148,3069bp54,7,1,f +12148,3298p6u,7,1,f +12148,3626bp6v,1,1,f +12148,3710,0,1,f +12148,3795,7,1,f +12148,3937,7,1,f +12148,3938,0,1,f +12148,3957a,7,2,f +12148,3959,0,1,f +12148,4285b,0,1,f +12148,4589,42,2,f +12148,4859,7,1,f +12148,970c00pb021,0,1,f +12148,973px132c01,7,1,f +12150,266ac01,15,2,f +12150,29c,0,4,f +12150,3001,0,1,f +12150,3001,4,4,f +12150,3003,0,1,f +12150,3004,0,14,f +12150,3005,0,6,f +12150,3008,0,6,f +12150,3008,4,2,f +12150,3009,0,8,f +12150,3010,0,4,f +12150,3010,4,6,f +12150,3020,0,2,f +12150,3020,4,3,f +12150,3021,0,3,f +12150,3022,4,4,f +12150,3022,0,4,f +12150,3023,0,3,f +12150,3023,4,2,f +12150,3024,0,2,f +12150,3031,0,2,f +12150,3032,0,1,f +12150,3034,4,3,f +12150,3034,0,4,f +12150,3035,0,1,f +12150,3036,4,1,f +12150,3037,0,6,f +12150,3039,0,5,f +12150,3040b,0,2,f +12150,3062a,4,2,f +12150,3062a,0,1,f +12150,3063b,4,2,f +12150,3068b,0,2,f +12150,3068b,4,5,f +12150,3069b,4,4,f +12150,3081cc01,0,2,f +12150,3134,0,2,f +12150,3297,0,4,f +12150,3622,4,2,f +12150,3622,0,2,f +12150,3623,0,4,f +12150,3624,4,1,f +12150,3626apr0001,14,2,f +12150,3651,7,2,f +12150,3660,0,2,f +12150,3660,4,2,f +12150,3665,0,2,f +12150,3666,0,2,f +12150,3666,4,3,f +12150,3673,7,2,f +12150,3700,0,9,f +12150,3701,0,2,f +12150,3704,0,2,f +12150,3710,4,4,f +12150,3710,0,3,f +12150,3713,7,2,f +12150,3738,0,2,f +12150,3794a,0,2,f +12150,3795,4,3,f +12150,3795,0,4,f +12150,3830,0,1,f +12150,3831,0,1,f +12150,3833,4,1,f +12150,3837,8,1,f +12150,3839a,0,2,f +12150,3941,0,3,f +12150,3958,0,1,f +12150,4022,4,4,f +12150,4023,0,4,f +12150,4085a,0,2,f +12150,4092,4,2,f +12150,4162,0,2,f +12150,4170,0,2,f +12150,4171,47,4,f +12150,4175,4,2,f +12150,4175,0,6,f +12150,4180c05,4,4,f +12150,4181,0,1,f +12150,4182,0,1,f +12150,4183,47,2,f +12150,458,7,6,f +12150,501a,4,1,f +12150,6141,36,2,f +12150,6141,47,1,f +12150,6141,46,2,f +12150,73090a,0,2,f +12150,73092,0,4,f +12150,765c15,7,1,f +12150,765c28,7,1,f +12150,7750stk01,9999,1,t +12150,867,4,2,f +12150,970c00,1,2,f +12150,973p26c01,1,2,f +12150,x461,0,2,f +12150,x467c12,0,4,f +12151,2357,0,2,f +12151,2417,288,3,f +12151,30115,2,1,f +12151,30136,308,1,f +12151,3021,308,1,f +12151,3023,28,1,f +12151,30238,0,1,f +12151,3036,28,1,f +12151,30374,70,1,f +12151,30374,15,1,f +12151,30374,0,1,f +12151,3040b,308,5,f +12151,3062b,0,3,f +12151,32316,0,1,f +12151,3626bpr0703,78,1,f +12151,3626bpr0709,78,1,f +12151,3626bpr0720,15,1,f +12151,3626bpr0855,78,1,f +12151,3673,71,1,t +12151,3673,71,1,f +12151,3678bpr0024a,0,1,f +12151,3684,308,1,f +12151,3794b,19,2,f +12151,40233,0,1,f +12151,40238,0,1,f +12151,40250pr03,308,1,f +12151,4740pr0001a,4,1,f +12151,50231,0,1,f +12151,59900,33,4,f +12151,59900,15,1,f +12151,60477,308,1,f +12151,60481,308,4,f +12151,6126b,41,4,f +12151,63864,0,3,f +12151,6541,19,1,f +12151,76768,308,3,f +12151,85974pr0002a,70,1,f +12151,970c00,0,2,f +12151,973pr1671c01,72,1,f +12151,973pr1684c01,0,1,f +12151,973pr1861c01,0,1,f +12152,3037,4,20,f +12152,3038,4,12,f +12152,3039,4,32,f +12152,3040b,4,12,f +12155,32205,0,1,f +12155,32242,4,2,f +12155,32242,0,4,f +12155,32246,4,2,f +12155,3706,4,2,f +12155,3713,7,4,f +12155,6581,0,2,f +12155,6582,15,2,f +12155,zbb013,22,4,f +12155,zbb014,7,2,f +12155,zbb015,0,1,f +12156,2432,7,2,f +12156,2444,7,2,f +12156,2488,0,1,f +12156,2877,4,1,f +12156,30055,6,2,f +12156,30089,0,1,f +12156,30132,8,1,f +12156,30132,8,1,t +12156,30147,8,1,f +12156,30149,7,1,f +12156,30150,6,2,f +12156,30155,7,4,f +12156,30157,7,2,f +12156,30161,47,1,f +12156,30165,8,1,f +12156,30172,15,1,f +12156,3022,8,2,f +12156,3023,8,1,f +12156,30236,0,2,f +12156,3032,6,1,f +12156,3039,8,2,f +12156,3069b,7,1,f +12156,3069bp03,7,2,f +12156,33211,8,2,f +12156,3483,0,4,f +12156,3626bpx126,14,1,f +12156,3626bpx127,14,1,f +12156,3626bpx128,14,1,f +12156,3673,7,1,t +12156,3673,7,2,f +12156,3794a,4,1,f +12156,3795,0,1,f +12156,3829c01,14,1,f +12156,3832,0,2,f +12156,3837,8,1,f +12156,3841,8,1,f +12156,3849,4,2,f +12156,3878,0,1,f +12156,3937,4,2,f +12156,3938,7,2,f +12156,40235,4,1,f +12156,40373,8,2,f +12156,40374,8,2,f +12156,40375,8,1,f +12156,40379,15,2,f +12156,40382c01,8,2,f +12156,40396,8,1,f +12156,4095,0,1,f +12156,4189430pb01,9999,1,t +12156,4189430pb02,9999,1,t +12156,4189430pb03,9999,1,t +12156,4189430pb04,9999,1,t +12156,4189430pb05,9999,1,t +12156,42445,6,2,f +12156,4274,7,1,t +12156,4274,7,1,f +12156,43887,7,1,f +12156,43889,8,1,f +12156,43890c01,8,1,f +12156,43891,8,2,f +12156,43892,8,2,f +12156,4495b,14,1,f +12156,4529,0,1,f +12156,45644px1,15,1,f +12156,4589,36,2,f +12156,4625,0,1,f +12156,4697b,7,1,t +12156,4697b,7,1,f +12156,4865a,7,2,f +12156,4865a,14,3,f +12156,4871,8,1,f +12156,6141,0,1,t +12156,6141,47,1,f +12156,6141,47,1,t +12156,6141,0,1,f +12156,6141,46,2,f +12156,6141,46,1,t +12156,970c00,8,1,f +12156,970c00,2,1,f +12156,970c00,19,1,f +12156,973px178c01,2,1,f +12156,973px181c01,0,1,f +12156,973px182c01,1,1,f +12157,3704,0,4,f +12157,3705,0,12,f +12157,3706,0,12,f +12157,4519,0,8,f +12160,2348b,47,1,f +12160,2349a,14,1,f +12160,2357,0,1,f +12160,2420,14,2,f +12160,2433,0,1,f +12160,2452,0,2,f +12160,2498,73,2,f +12160,2555,0,1,f +12160,2578b,14,1,f +12160,3001,14,1,f +12160,3010,4,1,f +12160,3020,14,2,f +12160,3020,0,1,f +12160,3021,0,1,f +12160,3022,0,1,f +12160,3040b,14,2,f +12160,3622,4,1,f +12160,3626apr0001,14,2,f +12160,3641,0,4,f +12160,3706,0,1,f +12160,3710,14,2,f +12160,3788,14,2,f +12160,3821,4,1,f +12160,3822,4,1,f +12160,3829c01,0,1,f +12160,3836,6,1,f +12160,3938,14,1,f +12160,4070,14,2,f +12160,4214,14,1,f +12160,4485,15,2,f +12160,4531,14,2,f +12160,4600,0,2,f +12160,4624,14,4,f +12160,4626,7,1,f +12160,4740,7,1,f +12160,4872,47,1,f +12160,6141,46,2,f +12160,6141,36,2,f +12160,6141,15,2,f +12160,73590c01a,7,1,f +12160,970c00,1,2,f +12160,973p26c01,1,2,f +12161,3020,0,200,f +12161,3020,272,275,f +12161,3020,14,100,f +12161,3023,272,200,f +12161,3023,70,100,f +12161,3023,25,350,f +12161,3023,0,300,f +12161,3023,72,300,f +12161,3023,4,200,f +12161,3023,71,200,f +12161,3023,15,100,f +12161,3023,14,200,f +12161,3024,70,150,f +12161,3024,14,200,f +12161,3024,71,200,f +12161,3024,0,300,f +12161,3024,4,200,f +12161,3024,272,200,f +12161,3024,15,150,f +12161,3024,72,200,f +12161,3068b,0,180,f +12161,3710,14,150,f +12161,3710,15,100,f +12161,3710,272,150,f +12161,3710,70,100,f +12161,3710,0,400,f +12161,3710,25,100,f +12161,3710,4,150,f +12161,4186,71,6,f +12161,swmpstk01,9999,1,t +12164,11203,15,2,f +12164,2357,320,26,f +12164,2357,0,4,f +12164,2420,0,4,f +12164,2420,320,9,f +12164,2420,72,4,f +12164,2420,71,3,f +12164,3003pr1002,15,2,f +12164,3004,320,22,f +12164,3005,71,3,f +12164,3005,320,7,f +12164,3005,52,2,f +12164,3005,72,3,f +12164,3005,0,22,f +12164,3005,191,11,f +12164,3005pr0009,29,1,f +12164,3009,320,3,f +12164,3009,0,2,f +12164,3010,0,2,f +12164,3010,320,14,f +12164,3020,0,2,f +12164,3020,320,3,f +12164,3021,0,3,f +12164,3022,15,2,f +12164,3023,14,5,f +12164,3023,0,13,f +12164,3023,320,8,f +12164,3023,72,1,f +12164,3024,182,8,f +12164,3024,0,1,f +12164,3024,182,1,t +12164,3024,71,1,t +12164,3024,71,14,f +12164,3024,14,1,t +12164,3024,320,1,t +12164,3024,46,1,t +12164,3024,72,1,t +12164,3024,14,8,f +12164,3024,72,3,f +12164,3024,320,22,f +12164,3024,0,1,t +12164,3024,29,1,t +12164,3024,29,1,f +12164,3024,326,1,t +12164,3024,46,6,f +12164,3024,326,1,f +12164,3070b,72,25,f +12164,3070b,320,1,t +12164,3070b,191,25,f +12164,3070b,0,1,t +12164,3070b,320,38,f +12164,3070b,72,1,t +12164,3070b,71,1,t +12164,3070b,191,1,t +12164,3070b,71,25,f +12164,3070b,0,43,f +12164,32062,0,4,f +12164,32064b,0,11,f +12164,3622,0,1,f +12164,3623,0,8,f +12164,37,297,2,f +12164,3710,71,2,f +12164,3795,320,3,f +12164,3795,0,2,f +12164,3958,0,4,f +12164,4865b,0,2,f +12164,54200,15,1,t +12164,54200,15,8,f +12164,60475b,0,2,f +12164,60897,70,1,f +12164,6141,182,1,t +12164,6141,182,8,f +12164,6231,0,3,f +12164,64647,182,1,t +12164,64647,182,2,f +12164,87580,0,3,f +12164,96874,25,1,t +12166,33172,25,1,f +12166,33183,10,1,f +12166,3626bpr0948,14,1,f +12166,88646,0,1,f +12166,970c00,15,1,f +12166,973pr2029c01,15,1,f +12166,99244pr0001,15,1,f +12167,20597,308,1,f +12167,3068bpr0266,19,1,f +12167,3626cpr1736,71,1,f +12167,4449,0,1,f +12167,88646,0,1,f +12167,970c00pr0918,272,1,f +12167,973pr3121c01,272,1,f +12169,1,15,2,f +12169,2,15,1,f +12169,3,4,2,f +12169,3002a,15,4,f +12169,3003,0,4,f +12169,3003,15,12,f +12169,3003,14,3,f +12169,3003,1,2,f +12169,3004,47,1,f +12169,3004,4,4,f +12169,3004,15,2,f +12169,3004,1,1,f +12169,3005,47,2,f +12169,3005,14,2,f +12169,3006,15,1,f +12169,3010,0,1,f +12169,3010,4,4,f +12169,3010p40,15,1,f +12169,3010p41,15,1,f +12169,3020,0,1,f +12169,3020,15,3,f +12169,3021,1,1,f +12169,3021,0,3,f +12169,3022,4,3,f +12169,3022,1,1,f +12169,3022,15,1,f +12169,3022,0,1,f +12169,3029,15,1,f +12169,3030,15,1,f +12169,3031,4,1,f +12169,3031,15,4,f +12169,3033,4,1,f +12169,3040b,0,2,f +12169,3040b,4,2,f +12169,3062a,47,1,f +12169,3068b,4,28,f +12169,3068b,15,22,f +12169,3068b,1,1,f +12169,3068bp17,15,4,f +12169,3069b,15,5,f +12169,3070b,4,2,f +12169,3070b,1,2,f +12169,3297,4,1,f +12169,3612,1,2,f +12169,3612,15,2,f +12169,3613,15,2,f +12169,3613,1,2,f +12169,3613,4,2,f +12169,3614b,14,6,f +12169,3623,1,1,f +12169,3625,0,1,f +12169,3626a,47,1,f +12169,3626bpr0001,14,1,f +12169,3665,4,4,f +12169,3741,2,2,f +12169,3742,14,3,f +12169,3742,14,1,t +12169,3742,4,3,f +12169,3742,4,1,t +12169,3794a,1,1,f +12169,3794a,15,1,f +12169,3839a,15,1,f +12169,3840,14,1,f +12169,3852a,6,1,f +12169,3899,47,1,f +12169,3899,14,4,f +12169,685p01,14,1,f +12169,685px3,14,1,f +12169,685px4,14,1,f +12169,785,1,1,f +12169,792c03,1,1,f +12169,792c03,4,1,f +12169,792c03,15,1,f +12169,837,15,4,f +12169,838,15,2,f +12169,838,4,3,f +12169,839,15,1,f +12169,840c01,15,1,f +12169,841,15,1,f +12169,842,15,1,f +12169,843,15,1,f +12169,970c00,1,1,f +12169,973c07,1,1,f +12169,x196,0,1,f +12169,x197,0,1,f +12169,x197,6,1,f +12170,2397,72,1,f +12170,2540,71,1,f +12170,2926,0,1,f +12170,3001,14,2,f +12170,3004,19,1,f +12170,3010,19,1,f +12170,30132,72,1,t +12170,30132,72,1,f +12170,30139,19,1,f +12170,30177,0,1,f +12170,3021,0,1,f +12170,3031,70,1,f +12170,3032,19,1,f +12170,3032,70,1,f +12170,3062b,70,10,f +12170,3069b,19,2,f +12170,33051,10,2,f +12170,33172,308,1,f +12170,3626bpr0516a,78,1,f +12170,3626bpr0519,78,1,f +12170,3626bpr0588,92,1,f +12170,3626bpr0592,92,1,f +12170,3710,70,2,f +12170,40235,0,1,f +12170,4070,14,4,f +12170,4070,19,2,f +12170,4489b,70,2,f +12170,4523,70,2,f +12170,4528,135,1,f +12170,52031,85,1,f +12170,59363,0,1,f +12170,59900,19,4,f +12170,60752,135,1,f +12170,6091,19,2,f +12170,6141,72,4,f +12170,6141,72,1,t +12170,61506,70,1,f +12170,61975,70,1,f +12170,61976,70,1,f +12170,62363,28,1,f +12170,6256,82,1,f +12170,63965,71,4,f +12170,6636,19,2,f +12170,85973,0,1,f +12170,970c00,4,1,f +12170,970c00,0,1,f +12170,970c00,15,1,f +12170,973pr1493c02,19,1,f +12170,973pr1494c01,15,1,f +12170,973pr1495c01,15,1,f +12170,973pr1496c01,0,1,f +12172,22667,26,1,f +12172,2423,2,1,f +12172,3001,70,1,f +12172,3010,70,1,f +12172,3022,71,1,f +12172,3031,27,1,f +12172,30414,19,1,f +12172,3062b,36,1,f +12172,3068bpr0224,15,1,f +12172,33291,5,2,f +12172,33291,10,1,f +12172,3710,70,1,f +12172,4070,2,1,f +12172,4529,0,1,f +12172,6141,45,2,f +12172,6141,85,2,f +12172,98138,297,2,f +12172,98138,297,1,t +12172,98138pr0017,29,2,f +12175,3004,15,1,f +12175,3004,8,1,f +12175,3004pr20,15,1,f +12175,3010,4,1,f +12175,3021,0,1,f +12175,3022,15,1,f +12175,3023,4,1,f +12175,3039,4,1,f +12175,3298,4,1,f +12175,3660,8,1,f +12176,15523pr0002,14,1,f +12176,15573,19,1,f +12176,16360,4,1,f +12176,16709pat01,321,1,f +12176,18868a,41,1,f +12176,19981pr0025,41,1,f +12176,20546,70,1,t +12176,20546,70,1,f +12176,3023,30,2,f +12176,3023,28,2,f +12176,3069b,14,1,f +12176,3069b,28,1,f +12176,3070b,14,1,t +12176,3070b,14,1,f +12176,3795,28,1,f +12176,3829c01,4,1,f +12176,3941,41,1,f +12176,4070,19,4,f +12176,4081b,19,2,f +12176,4599b,71,2,f +12176,4599b,71,1,t +12176,50254,0,4,f +12176,6157,71,2,f +12176,85984pr0003,14,2,f +12176,99206,71,1,f +12177,bslot02,15,6,f +12177,bslot02,4,3,f +12177,bslot02,14,3,f +12177,bslot04,4,3,f +12177,bslot04,10,3,f +12177,bslot04,14,3,f +12177,bslot04,15,3,f +12178,14210,6,1,f +12178,2335px1,0,2,f +12178,2342,1,1,f +12178,2357,8,3,f +12178,2420,19,2,f +12178,2453a,19,2,f +12178,2456,8,1,f +12178,2527,6,1,f +12178,3001,8,2,f +12178,3002,8,2,f +12178,3003,8,1,f +12178,30041,8,1,f +12178,30042,0,1,f +12178,30055,8,3,f +12178,30055,0,1,f +12178,3009,1,1,f +12178,3009,19,2,f +12178,3009,0,3,f +12178,3010,8,1,f +12178,30101,19,1,f +12178,30102p01,6,1,f +12178,30104,6,2,f +12178,30136,0,4,f +12178,30136,19,15,f +12178,30137,0,4,f +12178,30140,0,2,f +12178,30153,41,1,f +12178,30153,36,1,f +12178,30173a,0,3,f +12178,30173a,7,1,f +12178,30177,4,2,f +12178,3022,0,1,f +12178,30236,8,2,f +12178,3039,1,2,f +12178,3062b,1,12,f +12178,3062b,19,16,f +12178,3062b,6,9,f +12178,3298,1,5,f +12178,3307,0,2,f +12178,3622,0,2,f +12178,3622,8,2,f +12178,3626bpx39,14,1,f +12178,3626bpx7,14,2,f +12178,3633,0,4,f +12178,3666,0,2,f +12178,3703,0,1,f +12178,3710,19,1,f +12178,3795,8,1,f +12178,3849,8,1,f +12178,3867,6,1,f +12178,3958,8,1,f +12178,3959,0,2,f +12178,4070,8,5,f +12178,4201,8,1,f +12178,4217,1,1,f +12178,4460a,1,2,f +12178,4589,46,2,f +12178,4738a,0,1,f +12178,4739a,0,1,f +12178,4740,0,1,f +12178,57503,334,1,f +12178,57504,334,1,f +12178,57505,334,1,f +12178,57506,334,1,f +12178,6083,8,2,f +12178,6126a,57,2,f +12178,6132,15,1,f +12178,6587,8,1,f +12178,6636,1,2,f +12178,71155,0,1,f +12178,84943,8,1,f +12178,970x026,4,3,f +12178,973pb0240c01,4,3,f +12178,x73,0,1,f +12179,3001,15,2,f +12179,3001,4,2,f +12179,3001,1,1,f +12179,3001,14,2,f +12179,3002,15,2,f +12179,3002,1,2,f +12179,3003,4,2,f +12179,3003,15,2,f +12179,3003,14,3,f +12179,3003,1,4,f +12179,4130,4,1,f +12179,4131,14,1,f +12179,4132,4,1,f +12179,4133,14,1,f +12179,4202,2,1,f +12180,2780,0,3,f +12180,32002,72,3,f +12180,32002,72,1,t +12180,32013,71,1,f +12180,32062,0,1,f +12180,32174,191,5,f +12180,32199,72,1,f +12180,3705,0,1,f +12180,43093,1,1,f +12180,4519,71,2,f +12180,47306,191,1,f +12180,47328,148,2,f +12180,50898,191,4,f +12180,53542,148,2,f +12180,53543,148,2,f +12180,53544,148,2,f +12180,53545,191,1,f +12180,53546,148,1,f +12180,53548,148,2,f +12180,53550,135,1,f +12180,53551,135,15,f +12180,53558pat01,27,1,f +12180,53585,0,1,f +12180,54263,148,1,f +12180,54271,148,1,f +12180,54821,182,4,f +12180,55827c01,135,1,f +12180,59426,72,1,f +12180,6558,0,1,f +12186,3001,14,5,f +12186,3001,4,5,f +12186,3001,1,4,f +12186,3002,4,2,f +12186,3002,1,2,f +12186,3002,14,2,f +12186,3003,4,4,f +12186,3003,1,2,f +12186,3003,14,4,f +12186,3004,4,10,f +12186,3004,47,2,f +12186,3004,14,12,f +12186,3004,1,8,f +12186,3005,1,6,f +12186,3005,4,8,f +12186,3005,14,8,f +12186,3008,14,2,f +12186,3009,14,4,f +12186,3009,4,4,f +12186,3009,1,2,f +12186,3010,1,6,f +12186,3010,14,8,f +12186,3010,4,8,f +12186,3020,1,2,f +12186,3021,1,2,f +12186,3022,1,2,f +12186,3031,1,1,f +12186,3032,1,1,f +12186,3034,1,4,f +12186,3039,1,4,f +12186,3039,47,2,f +12186,3081cc01,4,2,f +12186,3137c01,0,2,f +12186,3297,1,4,f +12186,3298,1,4,f +12186,3299,1,2,f +12186,3300,1,2,f +12186,3460,1,4,f +12186,3461,15,1,f +12186,3462,1,1,f +12186,3480,7,1,f +12186,3481,1,1,f +12186,3622,14,6,f +12186,3622,1,2,f +12186,3622,4,6,f +12186,3626apr0001,14,1,f +12186,3633,4,4,f +12186,3641,0,4,f +12186,3660,1,4,f +12186,3710,1,2,f +12186,3741,2,2,f +12186,3742,4,1,t +12186,3742,15,1,t +12186,3742,15,3,f +12186,3742,4,3,f +12186,3823,47,1,f +12186,3853,15,4,f +12186,3854,4,8,f +12186,3856,2,4,f +12186,3861b,15,1,f +12186,3867,2,1,f +12186,3901,6,1,f +12186,4962,1,1,f +12186,4963,1,1,f +12186,970c00,0,1,f +12186,973c01,15,1,f +12189,3626bpr0389,14,1,f +12189,3833,4,1,f +12189,3837,0,1,f +12189,970c00,25,1,f +12189,973pr1160c01,1,1,f +12190,2412b,383,2,f +12190,2450,4,2,f +12190,2456,4,2,f +12190,2456,14,2,f +12190,3001,0,8,f +12190,3001,1,6,f +12190,3001,15,8,f +12190,3001,22,4,f +12190,3001,25,4,f +12190,3001,4,10,f +12190,3001,14,6,f +12190,3002,25,2,f +12190,3002,0,4,f +12190,3002,4,6,f +12190,3002,1,4,f +12190,3002,15,6,f +12190,3002,14,4,f +12190,3003,0,12,f +12190,3003,8,4,f +12190,3003,14,12,f +12190,3003,15,12,f +12190,3003,25,6,f +12190,3003,4,16,f +12190,3003,1,12,f +12190,3003,22,6,f +12190,3004,4,16,f +12190,3004,22,6,f +12190,3004,14,12,f +12190,3004,25,6,f +12190,3004,0,12,f +12190,3004,15,12,f +12190,3004,1,12,f +12190,3004,8,6,f +12190,3004p0b,14,1,f +12190,3005,1,22,f +12190,3005,14,22,f +12190,3005,4,22,f +12190,3005,15,18,f +12190,3005,0,18,f +12190,3005pe1,8,2,f +12190,3007,15,2,f +12190,3008,1,2,f +12190,3008,14,2,f +12190,3008,4,2,f +12190,3009,4,2,f +12190,3009,0,2,f +12190,3009,22,2,f +12190,3009,15,2,f +12190,3009,1,2,f +12190,3010,15,4,f +12190,3010,14,4,f +12190,3010,1,4,f +12190,3010,4,6,f +12190,3010,25,4,f +12190,3010,22,4,f +12190,3010,0,6,f +12190,3020,0,2,f +12190,3020,15,2,f +12190,3020,25,2,f +12190,3020,4,2,f +12190,3020,14,2,f +12190,3020,1,2,f +12190,3020,22,2,f +12190,3021,1,4,f +12190,3021,15,4,f +12190,3021,14,4,f +12190,3021,4,4,f +12190,3021,0,2,f +12190,3022,8,4,f +12190,3022,22,4,f +12190,3022,4,4,f +12190,3022,25,4,f +12190,3022,1,4,f +12190,3022,15,4,f +12190,3022,14,4,f +12190,3022,0,4,f +12190,3039,22,2,f +12190,3040b,0,4,f +12190,3040b,25,4,f +12190,3040b,4,4,f +12190,3665,25,4,f +12190,3665,22,4,f +12190,3665,0,4,f +12190,3665,4,4,f +12190,3839b,0,1,f +12190,4286,8,2,f +12190,4287,8,2,f +12190,4740,42,2,f +12190,73590c02b,14,2,f +12192,10197,72,1,f +12192,11089,15,3,f +12192,11269pr0002,41,1,f +12192,11270,33,1,f +12192,11271,179,1,f +12192,11272,148,1,f +12192,11273,148,1,f +12192,11278,15,1,f +12192,11302pat0003,15,1,f +12192,11305,179,1,f +12192,11334,15,2,f +12192,2853,71,2,f +12192,32013,0,4,f +12192,32015,0,2,f +12192,32062,4,4,f +12192,32184,0,1,f +12192,4519,71,2,f +12192,48989,71,1,f +12192,53451,179,1,t +12192,53451,179,4,f +12192,61184,71,2,f +12192,6141,143,4,f +12192,6141,143,1,t +12192,6536,0,1,f +12192,6558,1,1,f +12192,90608,72,2,f +12192,90609,0,2,f +12192,90616,0,2,f +12192,90617,72,2,f +12192,90625,0,1,f +12192,90639,15,2,f +12192,90640,41,3,f +12192,90641,15,2,f +12192,90661,15,2,f +12192,92202,179,1,f +12192,93571,0,1,f +12192,93575,15,2,f +12192,98313,15,4,f +12192,98570pat01,15,1,f +12193,4582-1,89,1,f +12193,4584-1,89,1,f +12194,122c02,0,2,f +12194,298c02,15,2,f +12194,3004,15,1,f +12194,3004p12,0,1,f +12194,3005,15,1,f +12194,3008,0,1,f +12194,3010,0,1,f +12194,3010,15,2,f +12194,3020,15,2,f +12194,3021,0,2,f +12194,3022,15,1,f +12194,3023,15,6,f +12194,3024,36,2,f +12194,3024,15,3,f +12194,3031,15,1,f +12194,3039p23,15,1,f +12194,3069b,15,1,f +12194,3070b,15,1,f +12194,3460,0,2,f +12194,3622,15,2,f +12194,3623,0,2,f +12194,3623,15,2,f +12194,3624,15,2,f +12194,3626apr0001,14,2,f +12194,3641,0,4,f +12194,3666,15,1,f +12194,3788,15,1,f +12194,3821,0,1,f +12194,3822,0,1,f +12194,3823,41,1,f +12194,3829c01,15,1,f +12194,3832,0,1,f +12194,3900,15,1,f +12194,3957a,0,1,f +12194,3962a,0,1,f +12194,4070,0,3,f +12194,4081a,0,4,f +12194,4085b,15,1,f +12194,4162,0,1,f +12194,4162,15,2,f +12194,4211,15,1,f +12194,4213,0,2,f +12194,4215a,15,2,f +12194,4349,0,1,f +12194,4349,7,1,f +12194,4625,15,2,f +12194,4740,15,1,f +12194,4862,41,4,f +12194,4863,15,2,f +12194,4865a,0,1,f +12194,4866,15,1,f +12194,6141,36,1,f +12194,6141,46,2,f +12194,6141,33,2,f +12194,6141,15,2,f +12194,6141,34,2,f +12194,6141,36,1,t +12194,970c00,0,2,f +12194,973pb0079c01,0,1,f +12194,973pb0091c01,0,1,f +12196,2419,7,2,f +12196,2654,0,16,f +12196,2730,7,4,f +12196,2780,0,44,f +12196,2825,0,2,f +12196,2854,8,1,f +12196,2994,0,4,f +12196,3023,8,2,f +12196,3023,7,16,f +12196,3034,8,4,f +12196,30374,41,2,f +12196,30374,36,4,f +12196,30374,42,2,f +12196,3040b,7,2,f +12196,32002,8,8,f +12196,32002,8,1,t +12196,32009,8,4,f +12196,32013,7,4,f +12196,32013,0,4,f +12196,32013,8,4,f +12196,32015,0,4,f +12196,32016,0,4,f +12196,32017,7,4,f +12196,32034,0,2,f +12196,32039,0,6,f +12196,32039,7,2,f +12196,32054,8,4,f +12196,32054,4,5,f +12196,32054,0,8,f +12196,32062,0,16,f +12196,32064b,0,2,f +12196,32069,0,1,f +12196,32073,0,2,f +12196,32123b,7,1,t +12196,32123b,7,11,f +12196,32140,0,8,f +12196,32177,8,2,f +12196,32188,7,2,f +12196,32189,7,2,f +12196,32190,7,2,f +12196,32191,7,2,f +12196,32192,8,4,f +12196,32250,0,8,f +12196,32269,7,2,f +12196,32270,7,2,f +12196,32271,0,2,f +12196,32278,0,2,f +12196,32278,8,8,f +12196,32291,0,2,f +12196,32308,0,1,f +12196,32310,8,1,f +12196,32311,8,2,f +12196,32316,8,6,f +12196,32324,7,4,f +12196,32333,0,8,f +12196,32344c01,7,1,f +12196,3298,7,17,f +12196,3647,7,1,f +12196,3647,7,1,t +12196,3648a,7,1,f +12196,3650c,7,1,f +12196,3666,0,1,f +12196,3666,7,1,f +12196,3673,7,12,f +12196,3701,8,6,f +12196,3701,7,8,f +12196,3702,8,4,f +12196,3705,0,9,f +12196,3706,0,3,f +12196,3707,0,7,f +12196,3708,0,2,f +12196,3709,7,1,f +12196,3710,7,1,f +12196,3713,7,1,t +12196,3713,7,8,f +12196,3737,0,2,f +12196,3749,7,1,t +12196,3749,7,34,f +12196,3795,0,2,f +12196,3832,7,8,f +12196,3894,7,4,f +12196,3894,8,4,f +12196,3895,8,4,f +12196,3960,0,1,f +12196,4019,7,2,f +12196,4019,4,2,f +12196,4032a,7,8,f +12196,4274,7,1,t +12196,4274,7,4,f +12196,4286,7,2,f +12196,4519,0,11,f +12196,4589,36,3,f +12196,6048a,0,2,f +12196,6141,33,2,f +12196,6141,7,32,f +12196,6141,33,1,t +12196,6141,57,1,t +12196,6141,7,1,t +12196,6141,36,1,t +12196,6141,46,2,f +12196,6141,36,2,f +12196,6141,46,1,t +12196,6141,57,2,f +12196,6217,0,2,f +12196,6536,0,6,f +12196,6538b,8,8,f +12196,6558,0,24,f +12196,6578,0,4,f +12196,6585,0,1,f +12196,6587,8,3,f +12196,6589,4,7,f +12196,6629,8,2,f +12196,6632,0,14,f +12196,75535,0,7,f +12196,75c03,8,1,f +12196,75c03,8,1,t +12196,75c08,8,4,f +12196,75c16,8,2,f +12196,78c07,179,4,f +12196,rb00167,0,1,t +12196,rb00167,0,2,f +12197,10201,0,1,f +12197,15573,14,2,f +12197,15573,15,1,f +12197,2335,15,2,f +12197,2540,71,2,f +12197,3021,15,1,f +12197,3022,14,1,f +12197,3022,15,1,f +12197,3023,15,1,f +12197,3069b,71,1,f +12197,54200,40,1,f +12197,59900,0,2,f +12197,85984,15,2,f +12197,98138,182,2,f +12197,99780,15,3,f +12200,2412b,57,2,f +12200,2412b,1,1,f +12200,2412b,0,1,f +12200,2432,4,1,f +12200,2432,73,1,f +12200,2446px5,15,1,f +12200,2446px5,1,1,f +12200,2447,33,1,t +12200,2447,0,1,f +12200,2447,33,1,f +12200,2447,0,1,t +12200,2540,0,2,f +12200,3020,0,2,f +12200,3020,1,1,f +12200,3020,7,2,f +12200,3022,0,2,f +12200,3023,7,1,f +12200,3023,0,1,f +12200,30359a,8,1,f +12200,30377,7,2,f +12200,30377,7,1,t +12200,30603pb03,1,1,f +12200,3139,0,4,f +12200,3626bp7c,14,1,f +12200,3626bpa4,14,1,f +12200,3710,15,1,f +12200,3839b,0,3,f +12200,3839b,1,1,f +12200,3937,0,2,f +12200,3938,7,2,f +12200,3960,15,1,f +12200,41769,4,1,f +12200,41770,4,1,f +12200,41854pb01,320,1,f +12200,41855pb02,73,1,f +12200,41855pb03,4,1,f +12200,41861c01,7,2,f +12200,41862,73,1,f +12200,42022,4,2,f +12200,4624,15,4,f +12200,6014b,15,4,f +12200,6015,0,4,f +12200,6019,7,2,f +12200,6141,34,1,t +12200,6141,36,1,f +12200,6141,34,1,f +12200,6141,46,2,f +12200,6141,46,1,t +12200,6141,36,1,t +12200,6157,0,2,f +12200,6636,1,1,f +12200,x351,0,1,f +12200,x351,15,1,f +12202,25838,78,1,f +12202,88646,0,1,f +12202,970c00pr1032,4,1,f +12202,973c42,0,1,f +12203,2654,19,1,f +12203,3001,322,1,f +12203,3003,29,1,f +12203,3003,322,3,f +12203,3004,29,1,f +12203,30089,0,1,f +12203,3023,46,1,f +12203,3023,85,6,f +12203,3039,15,2,f +12203,3062b,322,1,f +12203,3069b,27,1,f +12203,3069b,4,1,f +12203,3069b,14,1,f +12203,3069b,73,1,f +12203,3069bpr0175,29,1,f +12203,3070b,15,2,f +12203,3070b,15,1,t +12203,3245c,30,6,f +12203,3666,15,1,f +12203,3710,15,2,f +12203,3741,2,1,t +12203,3741,2,1,f +12203,3742,5,1,t +12203,3742,5,3,f +12203,3794b,15,3,f +12203,3795,15,2,f +12203,3852b,191,1,f +12203,3899,45,1,f +12203,3941,85,1,f +12203,3958,15,1,f +12203,4150,29,1,f +12203,4150,19,1,f +12203,4536,29,4,f +12203,4589,15,1,f +12203,4865b,322,1,f +12203,60478,15,1,f +12203,6141,27,1,t +12203,6141,27,4,f +12203,6180pr0002,15,1,f +12203,6191,322,1,f +12203,6266,15,1,f +12203,62698,0,1,f +12203,63864,29,2,f +12203,63864,15,2,f +12203,6636,191,6,f +12203,6636pr0011,15,1,f +12203,92410,85,2,f +12205,2362a,4,1,f +12205,2412b,0,2,f +12205,2412b,7,1,f +12205,2435,2,1,f +12205,2540,0,1,f +12205,3004,4,3,f +12205,3004,0,4,f +12205,3005,15,2,f +12205,3005,4,2,f +12205,3009,4,4,f +12205,3010,4,1,f +12205,3020,4,1,f +12205,3021,0,1,f +12205,3023,4,3,f +12205,3024,4,4,f +12205,3037,14,1,f +12205,3039,14,7,f +12205,3041,14,2,f +12205,3069bpr0099,15,1,f +12205,3070bp05,1,1,t +12205,3070bp05,1,1,f +12205,3081cc01,15,2,f +12205,3622,4,2,f +12205,3623,4,2,f +12205,3626apr0001,14,2,f +12205,3633,15,2,f +12205,3660,0,1,f +12205,3665,4,1,f +12205,3666,4,1,f +12205,3710,4,2,f +12205,3741,2,2,f +12205,3742,4,6,f +12205,3742,4,2,t +12205,3794a,15,1,f +12205,3794a,0,2,f +12205,3867,2,1,f +12205,3901,0,1,f +12205,3959,1,2,f +12205,4070,4,3,f +12205,4445,14,8,f +12205,4447,15,1,f +12205,4448,47,1,f +12205,4528,0,1,f +12205,4530,4,1,f +12205,4589,46,1,f +12205,4589,0,1,f +12205,4719,4,1,f +12205,4740,1,1,f +12205,6141,46,1,t +12205,6141,46,2,f +12205,6141,36,1,t +12205,6141,4,4,f +12205,6141,47,2,t +12205,6141,1,1,t +12205,6141,4,1,t +12205,6141,47,1,f +12205,6141,1,2,f +12205,6141,0,4,f +12205,6141,0,1,t +12205,6141,36,4,f +12205,6592stk01,9999,1,t +12205,73194c01,15,1,f +12205,92851,47,2,f +12205,970c00,15,1,f +12205,970c00,1,1,f +12205,973p72c01,15,1,f +12205,973px62c02,15,1,f +12206,3626bpr0943,14,1,f +12206,88646,0,1,f +12206,970c00pr0315,14,1,f +12206,973pr2024c01,0,1,f +12206,99241,0,1,f +12206,99250pr0001,4,1,f +12208,3626apr0001,14,3,f +12208,3838,15,1,f +12208,3838,14,1,f +12208,3838,4,1,f +12208,3842a,15,1,f +12208,3842a,14,1,f +12208,3842a,4,1,f +12208,3962a,0,3,f +12208,970c00,15,1,f +12208,970c00,4,1,f +12208,970c00,14,1,f +12208,973p90c02,4,1,f +12208,973p90c04,14,1,f +12208,973p90c05,15,1,f +12217,122c01,0,2,f +12217,3005,15,2,f +12217,3008,4,2,f +12217,3009pb027,15,2,f +12217,3020,4,1,f +12217,3023,4,5,f +12217,3023,0,2,f +12217,3024,4,4,f +12217,3024,46,2,f +12217,3034,15,2,f +12217,3037,4,1,f +12217,3623,1,2,f +12217,3623,15,4,f +12217,3624,0,1,f +12217,3626apr0001,14,1,f +12217,3641,0,4,f +12217,3666,4,4,f +12217,3710,1,2,f +12217,3710,15,4,f +12217,3788,4,1,f +12217,3795,4,2,f +12217,3821,4,1,f +12217,3822,4,1,f +12217,3823,47,1,f +12217,3829c01,15,1,f +12217,3832,4,1,f +12217,3853,15,1,f +12217,3856,4,2,f +12217,4070,4,2,f +12217,4211,4,1,f +12217,4213,15,1,f +12217,4214,15,1,f +12217,970c00,1,1,f +12217,973p26c01,1,1,f +12218,3001a,1,1,f +12218,3003,15,2,f +12218,3003,14,3,f +12218,3004,1,1,f +12218,3004prc,15,1,f +12218,3005,4,16,f +12218,3005,47,1,f +12218,3010,1,1,f +12218,3010,15,1,f +12218,3020,0,1,f +12218,3021,14,1,f +12218,3021,15,1,f +12218,3022,15,1,f +12218,3031,4,1,f +12218,3035,4,1,f +12218,3040a,1,2,f +12218,3040a,15,2,f +12218,3062a,0,8,f +12218,3068b,4,10,f +12218,3069b,4,6,f +12218,3612,1,2,f +12218,3613,15,2,f +12218,3613,1,2,f +12218,3614a,14,4,f +12218,3659,4,6,f +12218,3710,4,2,f +12218,3710,0,1,f +12218,3741,2,2,f +12218,3742,14,6,f +12218,3742,14,2,t +12218,685p01,14,1,f +12218,685px2,14,1,f +12218,792c03,15,1,f +12218,792c03,1,1,f +12218,x196,0,2,f +12219,2312c01,4,1,f +12219,3011,1,2,f +12219,3011,14,3,f +12219,3011,4,2,f +12219,3011,2,2,f +12219,3437,4,10,f +12219,3437,2,8,f +12219,3437,1,6,f +12219,3437,14,13,f +12219,3437pb015,14,1,f +12219,4066pb079,4,1,f +12219,4199,14,1,f +12219,4199,1,1,f +12219,4247,4,1,f +12219,4253,14,2,f +12219,dupdoor1,4,1,f +12219,dupfig008,9999,1,f +12219,dupfig009,9999,1,f +12220,12825,0,1,f +12220,2420,19,2,f +12220,2540,0,1,f +12220,3021,72,1,f +12220,3022,72,2,f +12220,3023,15,1,f +12220,3023,72,3,f +12220,3024,72,1,f +12220,3031,2,1,f +12220,3070b,0,1,f +12220,3623,72,2,f +12220,3623,19,1,f +12220,3660,15,1,f +12220,3794b,15,1,f +12220,54200,72,2,f +12220,6141,19,2,f +12220,64644,0,4,f +12223,2412b,71,4,f +12223,2412b,15,4,f +12223,2419,2,2,f +12223,2420,0,2,f +12223,2456,15,4,f +12223,2456,4,4,f +12223,2456,19,2,f +12223,2456,1,4,f +12223,2456,2,2,f +12223,2456,0,4,f +12223,2456,14,4,f +12223,3001,0,7,f +12223,3001,14,14,f +12223,3001,15,14,f +12223,3001,321,6,f +12223,3001,4,14,f +12223,3001,72,2,f +12223,3001,27,6,f +12223,3001,70,2,f +12223,3001,1,14,f +12223,3001,19,2,f +12223,3001,2,7,f +12223,3001,25,6,f +12223,3002,15,16,f +12223,3002,1,16,f +12223,3002,4,16,f +12223,3002,0,8,f +12223,3002,14,16,f +12223,3002,25,4,f +12223,3002,19,4,f +12223,3002,2,8,f +12223,3003,0,20,f +12223,3003,72,7,f +12223,3003,15,44,f +12223,3003,70,7,f +12223,3003,14,44,f +12223,3003,25,14,f +12223,3003,4,44,f +12223,3003,1,44,f +12223,3003,27,14,f +12223,3003,2,20,f +12223,3003,19,8,f +12223,3004,72,10,f +12223,3004,27,10,f +12223,3004,15,52,f +12223,3004,2,26,f +12223,3004,4,52,f +12223,3004,1,52,f +12223,3004,321,20,f +12223,3004,25,10,f +12223,3004,70,8,f +12223,3004,19,5,f +12223,3004,0,26,f +12223,3004,14,52,f +12223,3004pr0001,14,2,f +12223,3005,19,4,f +12223,3005,25,10,f +12223,3005,4,28,f +12223,3005,182,5,f +12223,3005,72,4,f +12223,3005,27,9,f +12223,3005,70,4,f +12223,3005,2,16,f +12223,3005,1,28,f +12223,3005,15,28,f +12223,3005,14,28,f +12223,3005,0,16,f +12223,3006,19,4,f +12223,3007,1,2,f +12223,3007,14,2,f +12223,3007,4,2,f +12223,3007,15,2,f +12223,3008,19,2,f +12223,3008,4,4,f +12223,3008,1,4,f +12223,3008,15,4,f +12223,3008,14,4,f +12223,3009,4,8,f +12223,3009,15,8,f +12223,3009,1,8,f +12223,3009,14,8,f +12223,3010,2,6,f +12223,3010,14,7,f +12223,3010,71,4,f +12223,3010,0,6,f +12223,3010,4,7,f +12223,3010,15,7,f +12223,3010,27,4,f +12223,3010,1,7,f +12223,3010,25,4,f +12223,3020,2,2,f +12223,3020,0,2,f +12223,3020,71,2,f +12223,3020,1,2,f +12223,3021,4,2,f +12223,3021,0,4,f +12223,3022,27,4,f +12223,3022,15,2,f +12223,3022,0,2,f +12223,3022,4,4,f +12223,3022,14,4,f +12223,3023,14,4,f +12223,3023,25,2,f +12223,3023,0,2,f +12223,3023,27,2,f +12223,3031,2,2,f +12223,3032,15,4,f +12223,3032,0,4,f +12223,3034,14,2,f +12223,3034,0,2,f +12223,3034,15,2,f +12223,3034,2,4,f +12223,30363,0,4,f +12223,3037,1,6,f +12223,3037,4,10,f +12223,3039,4,6,f +12223,3039,2,12,f +12223,3039,47,2,f +12223,3039,1,8,f +12223,3039,70,6,f +12223,3039,25,6,f +12223,3039,0,4,f +12223,3040b,19,4,f +12223,3040b,25,8,f +12223,3040b,4,6,f +12223,3040b,27,10,f +12223,3040b,72,4,f +12223,3040b,15,4,f +12223,3045,0,2,f +12223,30503,2,2,f +12223,3062b,0,2,f +12223,3062b,14,2,f +12223,3069b,27,2,f +12223,3297,4,2,f +12223,3297,0,2,f +12223,3298,70,2,f +12223,3298,4,4,f +12223,3298,14,2,f +12223,3298,321,2,f +12223,3300,4,2,f +12223,3622,2,8,f +12223,3622,1,8,f +12223,3622,14,8,f +12223,3622,0,8,f +12223,3622,4,8,f +12223,3622,15,8,f +12223,3660,2,2,f +12223,3660,14,2,f +12223,3660,15,4,f +12223,3660,4,2,f +12223,3660,1,4,f +12223,3660,25,4,f +12223,3660,0,4,f +12223,3660,70,4,f +12223,3660,27,2,f +12223,3665,15,6,f +12223,3666,70,2,f +12223,3666,15,2,f +12223,3684,15,2,f +12223,3710,0,2,f +12223,3710,27,2,f +12223,3747b,4,4,f +12223,3747b,1,2,f +12223,3794b,0,2,f +12223,3794b,27,4,f +12223,3794b,15,4,f +12223,3795,14,2,f +12223,3795,0,4,f +12223,3795,15,4,f +12223,3830,15,2,f +12223,3831,15,2,f +12223,3832,14,4,f +12223,3941,2,6,f +12223,3941,70,14,f +12223,3941,19,4,f +12223,4032a,2,6,f +12223,4081b,15,2,f +12223,4286,4,2,f +12223,4287,4,2,f +12223,4460b,72,4,f +12223,4589,14,6,f +12223,4589,19,4,f +12223,48336,4,4,f +12223,54200,4,1,t +12223,54200,19,1,t +12223,54200,71,4,f +12223,54200,72,4,f +12223,54200,25,4,f +12223,54200,71,1,t +12223,54200,72,1,t +12223,54200,19,4,f +12223,54200,4,4,f +12223,54200,25,1,t +12223,60470a,0,2,f +12223,60470b,14,2,f +12223,6141,27,4,f +12223,6141,14,1,t +12223,6141,25,1,t +12223,6141,25,4,f +12223,6141,2,4,f +12223,6141,29,4,f +12223,6141,27,1,t +12223,6141,14,4,f +12223,6141,15,6,f +12223,6141,34,2,f +12223,6141,36,2,f +12223,6141,15,1,t +12223,6141,36,1,t +12223,6141,4,4,f +12223,6141,4,1,t +12223,6141,29,1,t +12223,6141,2,1,t +12223,6141,34,1,t +12223,63868,4,2,f +12223,85984,1,2,f +12223,85984,2,4,f +12223,85984,27,2,f +12223,87087,0,4,f +12223,87087,72,4,f +12223,87087,15,4,f +12223,87087,321,4,f +12223,87087,1,4,f +12223,87087,4,10,f +12223,87087,19,2,f +12223,87087,14,12,f +12223,96874,25,1,t +12223,98138pr0008,15,1,t +12223,98138pr0008,15,18,f +12225,132a,0,6,f +12225,3001a,4,16,f +12225,3001a,1,8,f +12225,3001a,0,5,f +12225,3003,4,6,f +12225,3003,0,4,f +12225,3003,1,6,f +12225,3006,1,2,f +12225,3007,1,2,f +12225,3009,4,2,f +12225,3009,47,4,f +12225,3028,4,2,f +12225,3036,4,1,f +12225,3062a,14,2,f +12225,3613,4,2,f +12225,3613,0,2,f +12225,3614a,14,4,f +12225,685p01,14,1,f +12225,685px3,14,1,f +12225,7039,4,6,f +12225,7049b,0,3,f +12225,792c03,4,1,f +12225,792c03,0,1,f +12225,x196,0,1,f +12225,x197,6,1,f +12225,x407,0,1,f +12226,5306bc036,0,1,f +12226,879,7,1,f +12228,22667,27,1,t +12228,2339,4,2,f +12228,2357,72,2,f +12228,2419,25,2,f +12228,2420,1,2,f +12228,2420,4,4,f +12228,2431,70,1,f +12228,2431,1,6,f +12228,2449,25,10,f +12228,2453a,25,2,f +12228,2454a,71,1,f +12228,2458,1,2,f +12228,2540,15,1,f +12228,2540,1,1,f +12228,2540,19,3,f +12228,2555,0,3,f +12228,2653,0,2,f +12228,2817,0,3,f +12228,2926,0,2,f +12228,3001,25,1,f +12228,3003,71,4,f +12228,3004,25,22,f +12228,3004,19,1,f +12228,3004,71,12,f +12228,3004,1,9,f +12228,3004,4,2,f +12228,3004pr0031,15,1,f +12228,3005,71,13,f +12228,3005,1,2,f +12228,3005,25,27,f +12228,3008,71,1,f +12228,3009,71,1,f +12228,3009,25,11,f +12228,3010,1,2,f +12228,3010,25,29,f +12228,3010,71,1,f +12228,3020,71,1,f +12228,3020,25,8,f +12228,3020,1,1,f +12228,3021,72,3,f +12228,3022,4,1,f +12228,3022,71,7,f +12228,3023,25,15,f +12228,3023,1,2,f +12228,3023,71,6,f +12228,3023,15,2,f +12228,3023,4,3,f +12228,3024,4,10,f +12228,3024,4,1,t +12228,3031,19,1,f +12228,3031,4,1,f +12228,3032,19,1,f +12228,3032,1,1,f +12228,3032,25,2,f +12228,3034,19,2,f +12228,3034,71,1,f +12228,3035,71,1,f +12228,3039,19,1,f +12228,3039,71,2,f +12228,3040b,25,6,f +12228,3040b,71,4,f +12228,3040b,19,2,f +12228,3045,71,2,f +12228,30503,25,4,f +12228,30553,0,1,f +12228,30602,0,1,f +12228,3062b,1,3,f +12228,3062b,0,3,f +12228,3062b,19,15,f +12228,3062b,15,2,f +12228,3068b,19,1,f +12228,3068b,71,3,f +12228,3069b,1,2,f +12228,3069bpr0105,15,1,f +12228,3139,0,8,f +12228,32013,0,3,f +12228,32034,0,2,f +12228,32062,4,2,f +12228,32064b,15,1,f +12228,32556,71,1,f +12228,3455,71,1,f +12228,3455,1,1,f +12228,3460,71,2,f +12228,3581,71,1,f +12228,3623,19,2,f +12228,3626bpr0464,378,1,f +12228,3660,25,5,f +12228,3660,71,1,f +12228,3665,72,4,f +12228,3666,0,2,f +12228,3666,25,2,f +12228,3666,72,4,f +12228,3666,19,3,f +12228,3673,71,1,t +12228,3673,71,2,f +12228,3700,70,4,f +12228,3700,1,2,f +12228,3710,4,4,f +12228,3710,15,4,f +12228,3710,71,1,f +12228,3710,1,1,f +12228,3710,25,2,f +12228,3710,72,3,f +12228,3749,19,2,f +12228,3755,71,2,f +12228,3794a,14,2,f +12228,3794a,2,1,f +12228,3794a,19,2,f +12228,3795,71,1,f +12228,3829c01,1,1,f +12228,3830,1,1,f +12228,3830,71,2,f +12228,3831,71,2,f +12228,3831,1,1,f +12228,3839b,0,2,f +12228,3898,45,8,f +12228,3899,4,1,f +12228,3900,15,2,f +12228,3937,4,5,f +12228,3941,70,1,f +12228,3941,1,1,f +12228,3942c,1,1,f +12228,3957a,15,1,f +12228,3961,25,1,f +12228,40241,70,1,f +12228,4032a,0,4,f +12228,4032a,70,2,f +12228,4070,4,2,f +12228,4079,1,1,f +12228,4081b,19,2,f +12228,4150pr0003,0,1,f +12228,41752,72,1,f +12228,41764,4,1,f +12228,41765,4,1,f +12228,41769,15,1,f +12228,41769,0,1,f +12228,41770,15,1,f +12228,41770,0,1,f +12228,41879a,70,1,f +12228,4215b,47,4,f +12228,42289,0,1,f +12228,4274,71,1,f +12228,4274,71,1,t +12228,43373,25,1,f +12228,43374,15,1,f +12228,43702pr0001,25,2,f +12228,44301a,4,4,f +12228,44302a,71,4,f +12228,4433,191,1,f +12228,44567a,0,1,f +12228,44570,1,1,f +12228,4460a,25,10,f +12228,4460b,71,4,f +12228,44822,0,1,f +12228,4522,0,1,f +12228,4589,2,3,f +12228,4589,15,4,f +12228,4599a,1,3,f +12228,4599a,1,1,t +12228,4600,0,1,f +12228,4623,4,1,f +12228,4624,15,8,f +12228,4697b,71,1,t +12228,4697b,71,1,f +12228,4733,15,1,f +12228,4733,0,1,f +12228,4740,0,1,f +12228,4740,15,1,f +12228,4740pr0002a,25,2,f +12228,4790,70,1,f +12228,47991,71,1,f +12228,4864bpr16,47,2,f +12228,4865a,0,1,f +12228,4865a,47,2,f +12228,4865a,19,1,f +12228,54383,25,5,f +12228,54384,25,5,f +12228,54872pr01,14,1,f +12228,54873pr0001,78,1,f +12228,6020,0,1,f +12228,6041,0,1,f +12228,6083,72,2,f +12228,6091,1,2,f +12228,6106,25,4,f +12228,6134,0,5,f +12228,6141,72,8,f +12228,6141,72,2,t +12228,6148,2,3,f +12228,6179,71,1,f +12228,6541,15,1,f +12228,6541,19,2,f +12228,6587,72,2,f +12228,6636,1,2,f +12228,73983,4,12,f +12228,85543,15,1,f +12228,970c00,378,1,f +12228,970c00pr0108,78,1,f +12228,973c11,14,1,f +12228,973pr1258c01,19,1,f +12228,973pr1259c01,78,1,f +12231,3004,15,1,f +12231,3004p0b,14,1,f +12231,3010,15,1,f +12231,3021,0,1,f +12231,3022,0,1,f +12231,3039,4,2,f +12231,3040b,0,2,f +12232,132a,0,8,f +12232,242c01,4,12,f +12232,3001a,4,2,f +12232,3002a,47,1,f +12232,3003,47,1,f +12232,3003,4,1,f +12232,3004,4,6,f +12232,3004p50,4,1,f +12232,3005,4,1,f +12232,3009,4,4,f +12232,3009,47,1,f +12232,3010,47,1,f +12232,3010,4,1,f +12232,3020,7,2,f +12232,3020,4,1,f +12232,3021,4,2,f +12232,3022,0,2,f +12232,3022,4,3,f +12232,3022,47,2,f +12232,3023,7,2,f +12232,3027,7,1,f +12232,3034,7,4,f +12232,3035,7,2,f +12232,3037,4,1,f +12232,3039,4,3,f +12232,3040a,4,1,f +12232,3062a,14,2,f +12232,3149c01,7,3,f +12232,3149c01,4,2,f +12232,3176,4,1,f +12232,3404ac01,15,2,f +12232,498,0,2,f +12232,56823,0,1,f +12232,586c01,4,1,f +12232,7049b,15,5,f +12232,709,4,1,f +12232,711,4,1,f +12232,799c800,15,1,f +12232,801,4,1,f +12232,802,4,1,f +12232,803,7,1,f +12232,x547b,4,1,f +12233,32270,71,25,f +12234,3011,19,1,f +12234,3437,19,1,f +12234,3437,27,1,f +12234,3437,10,1,f +12234,6510,2,1,f +12234,6510,4,1,f +12234,75121pr0006,2,1,f +12235,2336pb01,0,1,f +12235,2476a,1,1,f +12235,2540,0,4,f +12235,298c03,1,2,f +12235,298c03,1,1,t +12235,3020,0,2,f +12235,3021,1,1,f +12235,3023,1,1,f +12235,3062b,1,4,f +12235,3626bp7a,14,1,f +12235,3795,1,1,f +12235,4598,0,1,f +12235,57467,383,2,f +12235,59275,0,2,f +12235,6041,57,1,f +12235,6089,0,1,f +12235,6090,4,1,f +12235,970x024,0,1,f +12235,973pb0075c01,0,1,f +12237,298c02,15,1,t +12237,298c02,15,2,f +12237,3003,4,1,f +12237,3004,71,1,f +12237,3005pr0003,15,2,f +12237,3010,14,2,f +12237,3020,71,1,f +12237,3021,14,2,f +12237,3021,71,1,f +12237,3023,71,3,f +12237,3023,14,1,f +12237,3024,4,1,f +12237,3024,71,8,f +12237,3039,71,1,f +12237,3040b,71,8,f +12237,3070b,71,1,t +12237,3070b,71,2,f +12237,3622,14,2,f +12237,3623,71,3,f +12237,3660,71,2,f +12237,3665,14,2,f +12237,3665,71,2,f +12237,3676,14,4,f +12237,3679,71,1,f +12237,3680,15,1,f +12237,3700,71,1,f +12237,3710,71,5,f +12237,3710,72,2,f +12237,3794b,71,4,f +12237,4070,71,2,f +12237,4081b,71,1,f +12237,4150,15,1,f +12237,4274,1,1,f +12237,4274,1,1,t +12237,44728,71,1,f +12237,54200,71,2,f +12237,54200,72,1,t +12237,54200,71,1,t +12237,54200,72,4,f +12237,6091,14,2,f +12237,6141,15,2,f +12237,6141,4,2,f +12237,6141,27,2,f +12237,6141,15,1,t +12237,6141,25,2,f +12237,6141,25,1,t +12237,6141,29,1,f +12237,6141,29,1,t +12237,6141,85,2,f +12237,6141,27,1,t +12237,6141,4,1,t +12237,6141,85,1,t +12237,63864,71,1,f +12237,63868,15,2,f +12237,87087,0,1,f +12237,92692,15,1,f +12237,98262,15,1,f +12238,132a,0,2,f +12238,3002a,4,2,f +12238,3003pt1,1,1,f +12238,3004,47,2,f +12238,3004,1,1,f +12238,3005,4,1,f +12238,3010,47,2,f +12238,3010,14,2,f +12238,3010p30,4,1,f +12238,3010pb035e,14,1,f +12238,3020,1,1,f +12238,3021,14,2,f +12238,3021,4,2,f +12238,3021,1,4,f +12238,3024,1,2,f +12238,3034,1,1,f +12238,3037,47,1,f +12238,3062a,0,1,f +12238,3137c01,0,2,f +12238,3137c02,0,4,f +12238,3139,0,4,f +12238,3183b,4,1,f +12238,3314,4,1,f +12238,3317,1,1,f +12238,7039,4,2,f +12238,7049b,0,1,f +12238,784,4,1,f +12238,7b,0,8,f +12238,966,14,1,f +12238,966a,14,1,f +12238,967,14,1,f +12239,29709,70,1,f +12239,3062bpr0009,272,1,f +12239,3626cpr2115,78,1,f +12239,4599b,14,1,f +12239,88646,0,1,f +12239,970c00pr1189,1,1,f +12239,973pr3661c01,4,1,f +12240,2415,7,2,f +12240,3034,15,1,f +12240,30389b,7,2,f +12240,30407,15,2,f +12240,3139,0,2,f +12240,3464,47,2,f +12240,3795,25,1,f +12240,4617b,0,1,f +12240,6232,15,1,f +12240,6239,15,1,f +12240,js008,-1,1,f +12242,10201,0,5,f +12242,11215,0,4,f +12242,11476,0,1,f +12242,13547,0,2,f +12242,13731,0,2,f +12242,15068,0,3,f +12242,15207,0,4,f +12242,15303,0,2,f +12242,15392,72,2,f +12242,15392,72,1,t +12242,15400,72,1,f +12242,15403,0,2,f +12242,15573,272,7,f +12242,15712,0,2,f +12242,20482,297,1,t +12242,20482,297,2,f +12242,22391,0,1,f +12242,23448,40,1,f +12242,2412b,0,14,f +12242,2419,85,1,f +12242,2420,70,2,f +12242,2420,27,2,f +12242,2431,71,1,f +12242,2431,85,2,f +12242,2432,85,1,f +12242,2432,0,2,f +12242,2445,0,1,f +12242,2450,0,2,f +12242,25264pr0001,0,1,t +12242,25264pr0001,0,1,f +12242,3002,71,1,f +12242,3004,85,1,f +12242,3009,27,2,f +12242,3010,0,2,f +12242,30136,0,2,f +12242,30157,71,2,f +12242,3020,1,3,f +12242,3020,27,1,f +12242,3021,1,1,f +12242,3021,27,1,f +12242,3021,15,1,f +12242,3022,72,5,f +12242,3022,85,4,f +12242,3023,85,7,f +12242,3023,71,6,f +12242,3024,36,1,t +12242,3024,36,2,f +12242,30355,0,1,f +12242,30356,0,1,f +12242,3040b,27,2,f +12242,3040b,71,3,f +12242,30503,0,4,f +12242,3062b,4,1,f +12242,3070b,0,2,f +12242,3176,0,1,f +12242,32059,1,1,f +12242,3297,0,4,f +12242,3299,0,1,f +12242,3623,1,2,f +12242,3623,0,2,f +12242,3626cpr1467,78,1,f +12242,3626cpr1905,78,1,f +12242,3665,0,2,f +12242,3665,1,2,f +12242,3666,71,1,f +12242,3666,72,1,f +12242,3666,0,1,f +12242,3710,72,6,f +12242,3710,0,3,f +12242,3710,71,1,f +12242,3795,27,2,f +12242,3795,0,3,f +12242,3829c01,0,1,f +12242,3839b,0,2,f +12242,3937,71,4,f +12242,3937,0,2,f +12242,3938,71,4,f +12242,4070,71,1,f +12242,4070,0,2,f +12242,41747,0,1,f +12242,41748,0,1,f +12242,43713,72,1,f +12242,44301a,72,2,f +12242,44302a,0,2,f +12242,4599b,4,1,f +12242,4599b,4,1,t +12242,47407,0,2,f +12242,48183,85,4,f +12242,4871,72,2,f +12242,50303,72,1,f +12242,50304,0,1,f +12242,50304,71,1,f +12242,50305,0,1,f +12242,50305,71,1,f +12242,50859b,179,1,f +12242,50861,0,2,f +12242,50862,71,2,f +12242,50950,27,2,f +12242,50950,0,2,f +12242,52107,71,2,f +12242,52501,1,2,f +12242,54200,1,1,t +12242,54200,0,1,t +12242,54200,85,2,t +12242,54200,0,2,f +12242,54200,1,2,f +12242,54200,85,2,f +12242,55981,0,4,f +12242,60219,72,2,f +12242,60897,72,2,f +12242,6134,0,2,f +12242,61409,27,2,f +12242,6141,47,3,f +12242,6141,179,1,t +12242,6141,0,1,f +12242,6141,0,1,t +12242,6141,47,2,t +12242,6141,179,2,f +12242,6141,35,1,t +12242,6141,35,4,f +12242,6179,72,1,f +12242,6187,0,1,f +12242,62885,0,1,f +12242,6583,0,1,f +12242,6636,85,2,f +12242,6636,0,2,f +12242,73983,71,6,f +12242,75902pr0004,4,1,f +12242,85983,320,1,f +12242,85984,71,1,f +12242,85984,0,4,f +12242,85984,85,2,f +12242,87079,0,4,f +12242,87079,25,1,f +12242,87611,72,1,f +12242,88283,308,1,f +12242,88930,0,2,f +12242,91988,71,1,f +12242,92280,0,2,f +12242,92402,0,4,f +12242,93273,0,1,f +12242,970c00,0,2,f +12242,970c00,272,1,f +12242,973pr2985c01,272,1,f +12242,973pr3350c01,0,1,f +12242,973pr3351c01,0,1,f +12243,2418a,15,2,f +12243,2419,15,3,f +12243,2420,15,2,f +12243,2432,0,1,f +12243,2433,0,2,f +12243,2443,0,2,f +12243,2444,15,2,f +12243,2446,14,1,f +12243,2446,1,1,f +12243,2447,33,2,f +12243,298c02,0,4,f +12243,3005,15,8,f +12243,3020,15,2,f +12243,3020,0,1,f +12243,3021,0,2,f +12243,3021,15,3,f +12243,3022,15,2,f +12243,3023,15,3,f +12243,3023,0,4,f +12243,3024,15,2,f +12243,3024,36,4,f +12243,3034,0,2,f +12243,3039,15,2,f +12243,3040b,15,1,f +12243,3040p32,15,1,f +12243,3068b,0,1,f +12243,3069bp05,15,2,f +12243,3069bp06,15,2,f +12243,3070b,34,2,f +12243,3070b,36,4,f +12243,3623,0,2,f +12243,3626apr0001,14,2,f +12243,3641,0,4,f +12243,3666,15,2,f +12243,3710,15,3,f +12243,3710,0,1,f +12243,3794a,0,2,f +12243,3795,15,2,f +12243,3838,1,1,f +12243,3838,14,1,f +12243,3839b,0,2,f +12243,3839b,15,1,f +12243,3937,15,2,f +12243,3938,15,2,f +12243,3939,33,1,f +12243,3956,15,2,f +12243,3958,0,1,f +12243,3963,0,2,f +12243,4006,0,2,f +12243,4032a,0,1,f +12243,4070,15,8,f +12243,4070,0,2,f +12243,4085b,0,2,f +12243,4162,15,2,f +12243,4229,15,2,f +12243,4229,0,4,f +12243,4275b,0,2,f +12243,4276b,0,2,f +12243,4286,15,2,f +12243,4287,15,2,f +12243,4531,15,2,f +12243,4598,15,3,f +12243,4600,15,2,f +12243,4624,15,4,f +12243,4730,15,2,f +12243,4735,15,2,f +12243,4740,33,2,f +12243,4740,36,2,f +12243,4864a,33,2,f +12243,4865p06,15,2,f +12243,4871,15,1,f +12243,970c00,14,1,f +12243,970c00,1,1,f +12243,973p6cc01,15,1,f +12243,973p6ec01,15,1,f +12244,367a,7,3,f +12245,2348b,47,1,f +12245,2349a,0,1,f +12245,2375,15,1,f +12245,2376,4,2,f +12245,2377,15,2,f +12245,2412a,0,2,f +12245,2412a,7,1,f +12245,2412a,4,1,f +12245,2412a,1,1,f +12245,2420,14,4,f +12245,2420,7,5,f +12245,2420,1,2,f +12245,2431,7,3,f +12245,2431,15,2,f +12245,2431pr0077,15,4,f +12245,2432,7,1,f +12245,2432,15,2,f +12245,2432,14,4,f +12245,2436,15,1,f +12245,2449,7,1,f +12245,2452,0,1,f +12245,2486,15,2,f +12245,2540,0,1,f +12245,2540,15,3,f +12245,2555,7,4,f +12245,2569,4,2,f +12245,2583,14,2,f +12245,2584,4,1,f +12245,2584,7,1,f +12245,2585,0,2,f +12245,2610,14,1,f +12245,2614,0,1,f +12245,2617,7,2,f +12245,2621,4,1,f +12245,2622,1,2,f +12245,2623,1,1,f +12245,2634c01,15,1,f +12245,2636,7,2,f +12245,2637,7,1,f +12245,2638,7,1,f +12245,2641,14,4,f +12245,2642,7,1,f +12245,2654,0,9,f +12245,2736,7,1,f +12245,2780,0,2,f +12245,298c02,15,2,f +12245,298c02,0,2,f +12245,298c03,0,2,f +12245,3001,0,2,f +12245,3002,4,1,f +12245,3002,0,1,f +12245,3003,0,12,f +12245,3004,14,1,f +12245,3004,15,5,f +12245,3004,0,6,f +12245,3004,1,6,f +12245,3004,4,2,f +12245,3004,7,4,f +12245,3005,4,2,f +12245,3005,14,2,f +12245,3005,15,2,f +12245,3005,7,2,f +12245,3008,1,11,f +12245,3009,14,1,f +12245,3009,1,1,f +12245,3009,15,4,f +12245,3010,15,4,f +12245,3010,14,1,f +12245,3020,15,2,f +12245,3020,14,2,f +12245,3020,0,2,f +12245,3020,7,5,f +12245,3021,0,1,f +12245,3021,7,2,f +12245,3021,1,4,f +12245,3021,15,1,f +12245,3022,4,1,f +12245,3022,7,4,f +12245,3022,0,1,f +12245,3023,7,2,f +12245,3023,0,7,f +12245,3023,14,4,f +12245,3023,4,3,f +12245,3023,15,4,f +12245,3023,1,10,f +12245,3024,0,2,f +12245,3024,14,4,f +12245,3024,46,2,f +12245,3029,7,1,f +12245,3029,15,1,f +12245,3031,15,1,f +12245,3033,4,3,f +12245,3034,15,1,f +12245,3035,14,1,f +12245,3036,15,1,f +12245,3037,15,3,f +12245,3039,0,2,f +12245,3040b,7,1,f +12245,3040b,15,2,f +12245,3045,15,2,f +12245,3062b,0,2,f +12245,3062b,14,1,f +12245,3068b,0,1,f +12245,3069b,0,1,f +12245,3069b,7,4,f +12245,3069b,1,1,f +12245,3069bp08,15,1,f +12245,3069bp52,15,1,f +12245,3070b,36,3,f +12245,3403,0,1,f +12245,3403,15,1,f +12245,3404,0,1,f +12245,3404,15,1,f +12245,3456,7,1,f +12245,3460,14,4,f +12245,3460,7,2,f +12245,3460,15,3,f +12245,3464,47,2,f +12245,3491,0,1,f +12245,3622,1,2,f +12245,3622,4,2,f +12245,3622,15,6,f +12245,3623,15,4,f +12245,3623,7,5,f +12245,3623,0,1,f +12245,3624,15,1,f +12245,3626apr0001,14,5,f +12245,3626b,46,1,f +12245,3641,0,4,f +12245,3660,15,6,f +12245,3660,1,5,f +12245,3660,0,2,f +12245,3665,15,4,f +12245,3666,15,2,f +12245,3673,7,2,f +12245,3676,15,2,f +12245,3684,0,1,f +12245,3684,15,2,f +12245,3700,0,2,f +12245,3700,14,1,f +12245,3700,15,2,f +12245,3700,7,2,f +12245,3705,0,2,f +12245,3709,14,1,f +12245,3709,0,1,f +12245,3710,7,2,f +12245,3710,14,2,f +12245,3710,0,1,f +12245,3738,0,1,f +12245,3747a,0,2,f +12245,3794a,7,5,f +12245,3794a,14,1,f +12245,3795,0,1,f +12245,3795,1,1,f +12245,3821,15,1,f +12245,3822,15,1,f +12245,3823,41,1,f +12245,3829c01,1,1,f +12245,3829c01,4,2,f +12245,3832,4,1,f +12245,3833,15,1,f +12245,3833,4,1,f +12245,3839b,7,1,f +12245,3901,0,1,f +12245,3941,7,1,f +12245,3941,15,3,f +12245,3941,4,2,f +12245,3958,4,1,f +12245,3958,14,1,f +12245,4032a,7,1,f +12245,4070,4,2,f +12245,4070,0,10,f +12245,4070,15,2,f +12245,4070,1,4,f +12245,4079,15,1,f +12245,4079,4,1,f +12245,4081b,7,1,f +12245,4081b,0,1,f +12245,4084,0,8,f +12245,4085c,0,2,f +12245,4150,15,1,f +12245,4150,7,1,f +12245,4162,8,4,f +12245,4162,15,1,f +12245,4162,1,4,f +12245,4168,15,1,f +12245,4175,0,7,f +12245,4211,1,1,f +12245,4213,1,1,f +12245,4213,15,1,f +12245,4214,1,1,f +12245,4215a,15,2,f +12245,4215a,14,2,f +12245,4265a,7,2,f +12245,4286,1,4,f +12245,4289,15,1,f +12245,4318,15,1,f +12245,4480c01,4,1,f +12245,4485,4,1,f +12245,4531,0,1,f +12245,4589,4,2,f +12245,4596,4,1,f +12245,4599a,14,1,f +12245,4599a,7,1,f +12245,4600,0,5,f +12245,4624,15,10,f +12245,4625,15,1,f +12245,4625,0,1,f +12245,4719,4,1,f +12245,4740,15,1,f +12245,4859,0,1,f +12245,4862,47,4,f +12245,4862,41,8,f +12245,4863,15,3,f +12245,4863,14,2,f +12245,4865a,4,2,f +12245,4872,47,1,f +12245,56823,0,3,f +12245,6141,0,10,f +12245,6141,34,1,f +12245,6141,46,8,f +12245,6141,7,11,f +12245,6141,7,1,t +12245,6141,36,6,f +12245,6141,34,1,t +12245,6541stk01,9999,1,t +12245,70278,0,2,f +12245,92851,47,2,f +12245,970c00,0,2,f +12245,970c00,1,2,f +12245,970c00,4,1,f +12245,973p09c01,15,1,f +12245,973pb0049c01,0,1,f +12245,973pb0201c01,15,1,f +12245,973pb0202c01,15,1,f +12245,973pb0203c01,15,1,f +12246,11203,72,1,f +12246,11213,71,4,f +12246,11476,71,1,f +12246,11477,72,1,f +12246,15573,70,1,f +12246,2419,28,3,f +12246,2431,42,1,f +12246,2431,27,6,f +12246,2431,72,6,f +12246,2432,70,1,f +12246,2456,1,1,f +12246,2460,0,1,f +12246,2540,72,2,f +12246,2555,0,2,f +12246,2654,0,4,f +12246,3001,0,3,f +12246,3002,4,1,f +12246,30031,0,1,f +12246,3004,28,6,f +12246,3009,72,2,f +12246,3010,72,2,f +12246,3010,28,3,f +12246,3020,0,10,f +12246,3020,27,1,f +12246,3021,72,8,f +12246,3021,71,1,f +12246,3022,71,3,f +12246,3022,72,2,f +12246,3023,72,10,f +12246,3023,27,6,f +12246,3023,28,2,f +12246,3024,71,2,t +12246,3024,71,10,f +12246,30251,40,1,f +12246,3031,0,2,f +12246,30355,72,1,f +12246,30356,72,1,f +12246,30363,72,1,f +12246,3037,72,3,f +12246,3039,0,1,f +12246,3040b,28,6,f +12246,3068b,70,1,f +12246,3068b,28,12,f +12246,3068b,0,2,f +12246,3069b,27,8,f +12246,32000,71,4,f +12246,32001,0,2,f +12246,32059,72,2,f +12246,32064a,4,2,f +12246,32123b,14,1,t +12246,32123b,14,2,f +12246,3460,0,5,f +12246,3623,0,4,f +12246,3626cpr1247b,1,1,f +12246,3626cpr1266,484,1,f +12246,3626cpr1267,78,1,f +12246,3665,72,4,f +12246,3666,72,17,f +12246,3701,0,3,f +12246,3709,1,1,f +12246,3710,28,8,f +12246,3710,72,4,f +12246,3795,28,4,f +12246,3795,72,2,f +12246,3795,70,3,f +12246,3832,71,2,f +12246,3941,0,2,f +12246,3956,0,2,f +12246,3960,71,2,f +12246,4032a,72,2,f +12246,4070,0,8,f +12246,41539,72,1,f +12246,41769,72,1,f +12246,41770,72,1,f +12246,4215b,0,1,f +12246,4274,1,1,t +12246,4274,1,6,f +12246,4286,72,2,f +12246,43710,28,1,f +12246,43711,28,1,f +12246,43722,28,2,f +12246,43722,71,1,f +12246,43722,72,1,f +12246,43723,28,2,f +12246,43723,72,1,f +12246,43723,71,1,f +12246,44301a,0,4,f +12246,44302a,72,4,f +12246,4497,148,1,f +12246,47397,72,2,f +12246,47398,72,2,f +12246,4740,72,2,f +12246,4740,70,1,f +12246,52501,72,2,f +12246,53454,148,1,f +12246,53705,148,1,t +12246,54383,28,2,f +12246,54384,28,2,f +12246,57899,0,1,f +12246,58247,0,1,f +12246,59426,72,2,f +12246,59900,42,4,f +12246,60474,72,6,f +12246,60478,71,4,f +12246,6112,72,4,f +12246,61184,71,4,f +12246,61409,72,2,f +12246,6141,70,1,t +12246,6141,70,1,f +12246,6179,28,2,f +12246,64567,0,1,f +12246,64567,0,1,t +12246,6587,28,2,f +12246,73983,71,2,f +12246,85943,72,2,f +12246,85984,72,17,f +12246,87083,72,5,f +12246,87611,72,1,f +12246,90538,308,1,f +12246,92280,0,2,f +12246,92593,0,1,f +12246,92946,72,2,f +12246,93273,71,4,f +12246,95188,28,2,f +12246,970c00,70,1,f +12246,970c00pr0556,326,1,f +12246,970x194,72,1,f +12246,973pr2447c01,308,1,f +12246,973pr2450c01,72,1,f +12246,973pr2452c01,72,1,f +12246,98138,36,1,t +12246,98138,36,2,f +12246,99780,72,2,f +12247,219,72,4,t +12247,53401,72,8,f +12247,64022,72,16,f +12249,2446,15,1,f +12249,2447,40,1,f +12249,2447,40,1,t +12249,3022,0,1,f +12249,3034,2,1,f +12249,3069b,1,2,f +12249,3069bpr0100,2,2,f +12249,3626cpr1581,14,1,f +12249,3626cpr1664,14,1,f +12249,3957a,15,1,f +12249,41334,0,1,f +12249,4697b,71,2,f +12249,4697b,71,1,t +12249,50859b,0,1,f +12249,50861,0,2,f +12249,50861,0,1,t +12249,50862,71,2,f +12249,54200,46,1,t +12249,54200,46,1,f +12249,54200,33,2,f +12249,54200,33,1,t +12249,59900,33,1,f +12249,61482,71,1,f +12249,61482,71,1,t +12249,6187,0,1,f +12249,89536,15,1,f +12249,92280,15,1,f +12249,92585,4,1,f +12249,92590,28,1,f +12249,970c00,272,1,f +12249,970c00,72,1,f +12249,973pr1944c01,15,1,f +12249,973pr2504c01,272,2,f +12249,98283,84,4,f +12250,2352,14,1,f +12250,2456,15,2,f +12250,2456,1,2,f +12250,2577,4,4,f +12250,3001,4,8,f +12250,3001,14,8,f +12250,3001,1,8,f +12250,3001,0,4,f +12250,3001,15,6,f +12250,3001pr1,14,1,f +12250,3002,0,2,f +12250,3002,1,4,f +12250,3002,15,2,f +12250,3002,14,4,f +12250,3002,4,4,f +12250,3003,4,16,f +12250,3003,15,10,f +12250,3003,0,8,f +12250,3003,14,16,f +12250,3003,1,14,f +12250,3003pe1,14,2,f +12250,3007,4,2,f +12250,3185,15,4,f +12250,3483,0,4,f +12250,4204,14,1,f +12250,4204,2,1,f +12250,4204,4,1,f +12250,4727,2,4,f +12250,4728,15,1,f +12250,4728,4,1,f +12250,4728,14,1,f +12250,4728,1,1,f +12250,4743,1,1,f +12250,4744,1,1,f +12250,4744pr0001,0,1,f +12250,4744pr0002,4,1,f +12250,4744px5,4,1,f +12250,4745,14,1,f +12250,600,14,1,f +12250,601,14,4,f +12250,6212,14,1,f +12250,6213px3,14,1,f +12250,6214px2,2,1,f +12250,6215,1,8,f +12250,6215,14,4,f +12250,6215,15,4,f +12250,6215,4,4,f +12250,6216,14,1,f +12250,6216,15,1,f +12250,6216,4,1,f +12250,6216,2,1,f +12250,6216,1,2,f +12250,6232,4,1,f +12250,6235,4,1,f +12250,6236,4,2,f +12250,6248,4,4,f +12250,6249,4,2,f +12250,82248,1,1,f +12250,82249,15,1,f +12251,30115,2,1,f +12251,3626bpr0190,15,1,f +12251,59230,15,1,t +12251,59230,15,2,f +12251,60115,15,1,f +12251,6266,15,2,f +12252,3001a,1,4,f +12252,3027,7,2,f +12252,3176,4,2,f +12252,3176c01,4,2,f +12252,7049b,15,4,f +12252,wheel1a,4,8,f +12255,2352,14,1,f +12255,2456,1,2,f +12255,2456,14,2,f +12255,2456,4,2,f +12255,3001,4,16,f +12255,3001,2,4,f +12255,3001,14,16,f +12255,3001,0,8,f +12255,3001,15,12,f +12255,3001,1,16,f +12255,3001p08,14,1,f +12255,3001pr1,14,1,f +12255,3002,2,4,f +12255,3002,0,4,f +12255,3002,4,6,f +12255,3002,1,6,f +12255,3002,15,4,f +12255,3002,14,6,f +12255,3003,0,10,f +12255,3003,4,18,f +12255,3003,14,18,f +12255,3003,15,14,f +12255,3003,2,8,f +12255,3003,1,18,f +12255,3003pe2,4,2,f +12255,3003pe2,14,2,f +12255,3006,4,2,f +12255,3007,4,2,f +12255,3007,14,2,f +12255,30076,4,1,f +12255,30077,4,2,f +12255,30143px1,14,1,f +12255,30145,4,2,f +12255,3483,0,4,f +12255,4204,2,1,f +12255,4727,2,4,f +12255,4728,4,1,f +12255,4728,14,1,f +12255,4728,15,1,f +12255,4728,1,1,f +12255,4743,15,1,f +12255,4743,14,1,f +12255,4744pr0002,4,1,f +12255,4744pr0004,1,1,f +12255,4744px12,1,1,f +12255,4744px13,2,1,f +12255,4744px4,2,1,f +12255,4744px6,6,1,f +12255,4745,4,1,f +12255,600,15,1,f +12255,601,15,2,f +12255,6213px4,4,1,f +12255,6214px1,2,1,f +12255,6215,4,4,f +12255,6215,14,4,f +12255,6216,14,1,f +12255,6216,2,1,f +12255,6216,4,1,f +12255,6232,14,1,f +12255,6235,1,1,f +12255,6236,1,1,f +12255,6244px1,14,1,f +12255,6247,1,2,f +12255,6248,14,4,f +12255,6249,4,2,f +12255,82249,15,1,f +12256,1,1,2,f +12256,2,1,1,f +12256,3,4,2,f +12256,3001a,1,1,f +12256,3001a,0,1,f +12256,3001a,15,3,f +12256,3003,1,3,f +12256,3003,14,5,f +12256,3003,0,2,f +12256,3003,4,2,f +12256,3003,15,4,f +12256,3005,47,3,f +12256,3005,14,2,f +12256,3007,1,1,f +12256,3007,4,1,f +12256,3008,1,7,f +12256,3009,1,6,f +12256,3010,14,2,f +12256,3010,1,22,f +12256,3010,15,4,f +12256,3021,0,2,f +12256,3022,1,1,f +12256,3022,4,1,f +12256,3023,14,1,f +12256,3023,15,1,f +12256,3023,0,3,f +12256,3023,4,4,f +12256,3029,1,1,f +12256,3030,1,1,f +12256,3031,4,1,f +12256,3031,14,1,f +12256,3032,1,1,f +12256,3033,15,1,f +12256,3035,1,3,f +12256,3039,0,3,f +12256,3062a,47,3,f +12256,3068b,14,13,f +12256,3068b,15,19,f +12256,3068b,1,22,f +12256,3068b,4,4,f +12256,3069a,4,1,f +12256,3069a,1,31,f +12256,3069a,15,1,f +12256,3069a,14,16,f +12256,3069a,0,4,f +12256,3070a,0,5,f +12256,3612,15,2,f +12256,3612,0,2,f +12256,3613,15,2,f +12256,3613,0,2,f +12256,3614a,14,4,f +12256,685p01,14,1,f +12256,685px4,14,1,f +12256,785,4,1,f +12256,792c03,15,1,f +12256,792c03,0,1,f +12256,837,1,2,f +12256,838,4,2,f +12256,x196,0,1,f +12256,x197,6,1,f +12257,2335,14,2,f +12257,2335pb001,1,1,f +12257,2339,14,2,f +12257,2339,7,2,f +12257,2345,7,10,f +12257,2345p02,7,2,f +12257,3002,7,2,f +12257,3004,15,1,f +12257,3004,0,1,f +12257,3004,7,66,f +12257,3005,0,2,f +12257,3005,7,49,f +12257,3008,7,4,f +12257,3009,7,5,f +12257,3010,7,11,f +12257,3020,7,3,f +12257,3020,2,3,f +12257,3021,0,1,f +12257,3021,2,4,f +12257,3021,7,6,f +12257,3022,2,2,f +12257,3022,0,3,f +12257,3023,7,12,f +12257,3023,0,3,f +12257,3023,15,1,f +12257,3024,0,1,f +12257,3024,0,1,t +12257,3024,7,12,f +12257,3030,0,2,f +12257,3031,7,1,f +12257,3032,7,2,f +12257,3033,7,1,f +12257,3034,0,2,f +12257,3034,7,2,f +12257,3034,2,5,f +12257,3037,0,7,f +12257,3039,0,4,f +12257,3040b,0,5,f +12257,3041,0,1,f +12257,3043,0,2,f +12257,3045,0,2,f +12257,3062b,7,1,t +12257,3062b,7,9,f +12257,3455,7,3,f +12257,3460,0,1,f +12257,3460,7,1,f +12257,3622,7,8,f +12257,3623,7,9,f +12257,3626bpr0001,14,6,f +12257,3660,0,6,f +12257,3660,7,2,f +12257,3665,0,1,f +12257,3665,7,6,f +12257,3666,2,2,f +12257,3666,7,1,f +12257,3673,7,3,f +12257,3685,0,4,f +12257,3688,0,1,f +12257,3700,0,2,f +12257,3700,7,7,f +12257,3709,0,2,f +12257,3710,0,2,f +12257,3710,7,9,f +12257,3794a,7,1,f +12257,3795,7,1,f +12257,3795,2,1,f +12257,3830,7,4,f +12257,3831,7,4,f +12257,3844,0,2,f +12257,3846p45,7,1,f +12257,3846p46,7,1,f +12257,3847,7,2,f +12257,3848,6,1,f +12257,3849,6,2,f +12257,3896,0,2,f +12257,3941,7,2,f +12257,3957a,0,3,f +12257,3958,7,2,f +12257,4032a,7,8,f +12257,4070,7,2,f +12257,4085c,7,1,f +12257,4161,0,1,f +12257,4162,7,1,f +12257,4282,2,1,f +12257,4287,0,3,f +12257,4444,7,9,f +12257,4444p03,14,1,f +12257,4445,0,2,f +12257,4460a,7,2,f +12257,4490,7,8,f +12257,4491b,1,1,f +12257,4491b,4,1,f +12257,4493c01pb02,0,1,f +12257,4495a,1,2,f +12257,4497,6,2,f +12257,4498,6,2,f +12257,4499,6,2,f +12257,4503,8,1,f +12257,4503,0,1,f +12257,4524,1,1,f +12257,4524,0,1,f +12257,56823,0,1,f +12257,75998pr0007,15,1,f +12257,87692,1,1,f +12257,87692,4,1,f +12257,87693,4,1,t +12257,87693,1,1,t +12257,87694,4,1,t +12257,87694,1,1,t +12257,970c00,0,4,f +12257,970x021,0,2,f +12257,973p40c01,0,1,f +12257,973p40c01,1,1,f +12257,973pb0297c01,1,4,f +12258,3001a,15,2,f +12258,3001a,1,3,f +12258,3001a,4,2,f +12258,3001a,14,1,f +12258,3001pr1,14,1,f +12258,3002a,4,2,f +12258,3002a,1,2,f +12258,3002a,14,2,f +12258,3003,4,5,f +12258,3003,1,5,f +12258,3003,15,2,f +12258,3003,14,3,f +12258,3003pe1,14,2,f +12258,3007,1,1,f +12258,4202,2,1,f +12261,2348a,41,1,f +12261,2349a,15,1,f +12261,2412b,7,1,f +12261,2420,1,2,f +12261,2432,7,1,f +12261,298c03,0,2,f +12261,3004,14,1,f +12261,3023,1,1,f +12261,3023,0,2,f +12261,3024,46,2,f +12261,3024,36,2,f +12261,3024,4,4,f +12261,3062b,14,4,f +12261,3068b,15,1,f +12261,3070b,4,2,f +12261,3482,15,8,f +12261,3483,0,8,f +12261,3626apr0001,14,1,f +12261,3700,0,4,f +12261,3706,0,2,f +12261,3710,4,2,f +12261,3788,1,1,f +12261,3794a,4,2,f +12261,3821,4,1,f +12261,3822,4,1,f +12261,3823,41,1,f +12261,3829c01,15,1,f +12261,4070,1,4,f +12261,4070,14,2,f +12261,4081b,0,2,f +12261,4083,0,1,f +12261,4212b,0,1,f +12261,4214,15,1,f +12261,4485,4,1,f +12261,4589,7,2,f +12261,4865a,15,2,f +12261,6141,46,2,f +12261,6141,0,2,f +12261,970c00,1,1,f +12261,973pb0006c01,15,1,f +12263,132a,0,6,f +12263,3001a,14,34,f +12263,3001a,15,34,f +12263,3001a,4,34,f +12263,3001a,0,13,f +12263,3002a,0,3,f +12263,3002a,15,6,f +12263,3002a,14,8,f +12263,3002a,4,16,f +12263,3003,4,4,f +12263,3003,14,4,f +12263,3003,15,14,f +12263,3003,0,3,f +12263,3004,0,10,f +12263,3004,47,6,f +12263,3004,4,4,f +12263,3004,1,8,f +12263,3004,15,10,f +12263,3004,14,2,f +12263,3005,14,2,f +12263,3005,15,14,f +12263,3006,14,2,f +12263,3006,15,2,f +12263,3007,15,4,f +12263,3007,4,2,f +12263,3008,15,2,f +12263,3008,4,2,f +12263,3008,1,4,f +12263,3009,15,2,f +12263,3009,4,2,f +12263,3009,14,2,f +12263,3009,1,4,f +12263,3010,15,6,f +12263,3010,14,2,f +12263,3010,4,4,f +12263,3010,1,8,f +12263,3032,15,3,f +12263,3034,15,4,f +12263,3081cc01,4,2,f +12263,3081cc01,15,4,f +12263,3297,4,6,f +12263,3299,4,1,f +12263,3307,4,1,f +12263,3579,4,2,f +12263,3581,15,4,f +12263,3582,1,4,f +12263,453cc01,4,2,f +12263,604c01,4,1,f +12263,700ed,2,2,f +12263,7039,4,6,f +12263,7049b,0,3,f +12263,7930,1,2,f +12264,122c02,0,1,f +12264,194c01,7,1,f +12264,2346,0,4,f +12264,2348a,47,2,f +12264,2348b,41,2,f +12264,2349a,4,1,f +12264,2349a,15,2,f +12264,2349a,14,1,f +12264,2357,4,2,f +12264,2412b,2,1,f +12264,2412b,15,2,f +12264,2412b,0,1,f +12264,2420,15,4,f +12264,2420,7,2,f +12264,2431,14,1,f +12264,2431,4,2,f +12264,2432,0,1,f +12264,2433,0,2,f +12264,2436,15,2,f +12264,2436,7,1,f +12264,2436,2,1,f +12264,2440,14,1,f +12264,2446,15,1,f +12264,2447,41,1,f +12264,2452,0,1,f +12264,2460,0,2,f +12264,2465,15,2,f +12264,2484c01,4,2,f +12264,251,0,1,f +12264,2512,14,1,f +12264,2540,0,1,f +12264,2540,7,1,f +12264,2584,4,1,f +12264,2584,7,1,f +12264,2585,7,1,f +12264,2585,0,1,f +12264,2650,4,1,f +12264,2651,4,1,f +12264,2736,7,1,f +12264,2817,0,1,f +12264,2873,4,1,f +12264,2877,4,1,f +12264,2877,15,2,f +12264,2877,0,1,f +12264,298c02,15,4,f +12264,298c02,4,1,f +12264,298c02,14,1,f +12264,298c03,0,2,f +12264,3004,0,2,f +12264,3004,15,1,f +12264,3004,4,1,f +12264,3005,4,4,f +12264,3005,15,2,f +12264,3009,15,2,f +12264,3009,4,2,f +12264,3010,15,2,f +12264,3010,14,1,f +12264,3020,7,3,f +12264,3020,15,3,f +12264,3020,1,1,f +12264,3020,4,2,f +12264,3020,14,2,f +12264,3020,0,2,f +12264,3021,4,2,f +12264,3021,2,1,f +12264,3021,14,1,f +12264,3021,0,2,f +12264,3021,15,1,f +12264,3022,14,4,f +12264,3022,0,9,f +12264,3022,4,2,f +12264,3022,15,2,f +12264,3023,1,2,f +12264,3023,4,9,f +12264,3023,15,14,f +12264,3023,7,7,f +12264,3023,0,7,f +12264,3023,47,2,f +12264,3023,14,6,f +12264,3023,2,2,f +12264,3024,15,7,f +12264,3024,33,9,f +12264,3024,36,11,f +12264,3024,47,2,f +12264,3024,46,12,f +12264,3024,4,2,f +12264,3032,15,1,f +12264,3034,0,4,f +12264,3034,1,1,f +12264,3034,15,2,f +12264,3035,4,1,f +12264,3062b,15,1,f +12264,3062b,0,4,f +12264,3062b,7,4,f +12264,3065,47,2,f +12264,3068b,4,1,f +12264,3068bp05,15,1,f +12264,3068bp06,15,2,f +12264,3068bp07,15,1,f +12264,3068bp57,4,1,f +12264,3069b,7,1,f +12264,3069b,4,2,f +12264,3069b,0,2,f +12264,3069bpb001,15,1,f +12264,3069bpr0016,15,2,f +12264,3070b,15,7,f +12264,3070b,33,2,f +12264,3070b,36,6,f +12264,3070b,4,2,f +12264,3070b,14,2,f +12264,3135c02,4,1,f +12264,3139,0,1,f +12264,3314,0,1,f +12264,3317,14,1,f +12264,3433,14,1,f +12264,3460,4,2,f +12264,3460,2,4,f +12264,3460,15,2,f +12264,3464,4,2,f +12264,3482,14,2,f +12264,3482,15,2,f +12264,3491,0,1,f +12264,3623,4,4,f +12264,3623,15,4,f +12264,3624,15,1,f +12264,3626bp04,14,1,f +12264,3626bpr0001,14,11,f +12264,3626bpx11,14,1,f +12264,3633,7,2,f +12264,3639,0,1,f +12264,3640,0,1,f +12264,3641,0,4,f +12264,3660,15,4,f +12264,3660p01,15,1,f +12264,3665,14,2,f +12264,3666,4,2,f +12264,3666,15,4,f +12264,3666,14,2,f +12264,3679,7,2,f +12264,3680,14,1,f +12264,3700,4,1,f +12264,3700,0,2,f +12264,3705,0,2,f +12264,3706,0,1,f +12264,3709,0,1,f +12264,3710,4,12,f +12264,3710,14,4,f +12264,3710,7,4,f +12264,3710,15,10,f +12264,3710,2,3,f +12264,3738,0,1,f +12264,3788,15,5,f +12264,3788,4,2,f +12264,3788,7,1,f +12264,3794a,15,1,f +12264,3794a,7,3,f +12264,3795,0,1,f +12264,3795,14,1,f +12264,3821,15,2,f +12264,3821,4,3,f +12264,3821,0,1,f +12264,3821,14,1,f +12264,3822,0,1,f +12264,3822,14,1,f +12264,3822,15,2,f +12264,3822,4,3,f +12264,3823,41,5,f +12264,3823,47,4,f +12264,3829c01,1,1,f +12264,3829c01,7,1,f +12264,3829c01,14,2,f +12264,3829c01,15,2,f +12264,3829c01,4,3,f +12264,3829c01,0,1,f +12264,3832,14,1,f +12264,3833,4,3,f +12264,3834,15,1,f +12264,3835,7,1,f +12264,3836,6,3,f +12264,3837,8,2,f +12264,3837,0,1,f +12264,3838,15,1,f +12264,3839b,7,1,f +12264,3901,6,1,f +12264,3901,0,1,f +12264,3937,0,1,f +12264,3938,14,1,f +12264,3938,0,1,f +12264,3956,15,1,f +12264,4032a,0,2,f +12264,4032a,7,1,f +12264,4032a,4,3,f +12264,4070,14,6,f +12264,4070,1,2,f +12264,4070,4,8,f +12264,4070,15,4,f +12264,4079,14,1,f +12264,4080,14,1,f +12264,4081b,7,2,f +12264,4083,4,1,f +12264,4083,0,1,f +12264,4084,0,16,f +12264,4085c,0,2,f +12264,4085c,4,2,f +12264,4162,7,2,f +12264,4211,4,1,f +12264,4211,15,1,f +12264,4211,14,1,f +12264,4212b,15,2,f +12264,4212b,4,1,f +12264,4213,14,1,f +12264,4213,4,1,f +12264,4213,15,5,f +12264,4214,14,1,f +12264,4214,15,4,f +12264,4215ap01,47,4,f +12264,4265a,7,1,f +12264,4265b,7,2,f +12264,4275b,14,4,f +12264,4275b,0,2,f +12264,4276b,0,1,f +12264,4276b,14,3,f +12264,4315,14,1,f +12264,4315,4,3,f +12264,4315,15,2,f +12264,4445,15,4,f +12264,4480c01,15,1,f +12264,4485,4,2,f +12264,4485,1,2,f +12264,4485,15,1,f +12264,4531,14,3,f +12264,4531,0,3,f +12264,4589,1,2,f +12264,4589,0,2,f +12264,4590,0,1,f +12264,4594,47,1,f +12264,4599a,15,1,f +12264,4600,0,20,f +12264,4624,14,6,f +12264,4624,15,12,f +12264,4625,15,1,f +12264,4625,4,2,f +12264,4626,14,1,f +12264,4714,15,1,f +12264,4715,15,2,f +12264,4719,4,1,f +12264,4854,15,1,f +12264,4857,4,2,f +12264,4859,14,1,f +12264,4862,41,4,f +12264,4863,4,2,f +12264,4864a,15,1,f +12264,4865a,4,1,f +12264,4865a,15,3,f +12264,4865a,41,1,f +12264,6014a,15,10,f +12264,6014a,7,8,f +12264,6014a,14,6,f +12264,6015,0,24,f +12264,6019,15,1,f +12264,6141,7,10,f +12264,6141,0,4,f +12264,6141,47,8,f +12264,6141,46,11,f +12264,6141,33,2,f +12264,71509,0,1,f +12264,92851,47,2,f +12264,970c00,7,1,f +12264,970c00,1,4,f +12264,970c00,2,1,f +12264,970c00,4,1,f +12264,970c00,0,4,f +12264,970c00,15,1,f +12264,973c02,4,2,f +12264,973c18,0,1,f +12264,973p0bc01,15,2,f +12264,973pb0006c01,15,1,f +12264,973pb0201c01,15,1,f +12264,973pb0202c01,15,1,f +12264,973pb0203c01,15,1,f +12264,973px130c01,15,1,f +12264,973px20c01,0,1,f +12264,973px62c01,15,1,f +12264,973px9c01,0,1,f +12264,rb00164,0,1,f +12266,2335,71,1,f +12266,2335,14,2,f +12266,2340,15,2,f +12266,2412b,0,1,f +12266,2436,0,1,f +12266,2436,15,2,f +12266,2447,0,1,f +12266,2447,0,1,t +12266,2540,0,7,f +12266,2569,0,1,f +12266,2780,0,5,f +12266,2780,0,1,t +12266,2817,0,1,f +12266,2825,0,1,f +12266,3003,15,1,f +12266,30031,72,1,f +12266,30033,15,2,f +12266,3004,71,4,f +12266,30157,71,1,f +12266,30171,0,1,f +12266,3020,14,2,f +12266,3020,0,2,f +12266,3021,15,1,f +12266,3022,71,2,f +12266,3023,71,6,f +12266,30357,15,2,f +12266,30360,15,2,f +12266,30367b,71,4,f +12266,30377,0,1,t +12266,30377,2,2,f +12266,30377,0,1,f +12266,30377,2,1,t +12266,3039,15,2,f +12266,3069b,82,2,f +12266,3176,0,3,f +12266,32009,72,2,f +12266,32054,4,2,f +12266,32064b,0,1,f +12266,32123b,14,1,f +12266,32123b,14,1,t +12266,32126,71,1,f +12266,32316,15,1,f +12266,32526,0,2,f +12266,3298,15,2,f +12266,3626bpr0136,14,1,f +12266,3660,15,6,f +12266,3673,71,4,f +12266,3673,71,1,t +12266,3700,15,7,f +12266,3701,15,1,f +12266,3705,0,2,f +12266,3749,19,4,f +12266,3795,0,2,f +12266,3795,15,1,f +12266,3839b,0,1,f +12266,3894,15,2,f +12266,3957a,15,2,f +12266,4032a,0,5,f +12266,4081b,0,4,f +12266,4150,0,4,f +12266,41531,15,2,f +12266,4274,71,1,f +12266,4274,71,1,t +12266,43093,1,5,f +12266,44126,15,1,f +12266,44728,14,2,f +12266,4589,34,6,f +12266,4623,14,2,f +12266,48183,15,1,f +12266,4864b,14,2,f +12266,50950,15,8,f +12266,51739,15,2,f +12266,52031,15,1,f +12266,53989,0,2,f +12266,54200,33,2,f +12266,54200,33,1,t +12266,54200,36,1,t +12266,54200,36,2,f +12266,59426,72,1,f +12266,6019,0,7,f +12266,60470a,15,2,f +12266,6108,15,2,f +12266,61184,71,2,f +12266,6126a,57,2,f +12266,6141,182,1,t +12266,6141,42,1,t +12266,6141,47,1,t +12266,6141,47,2,f +12266,6141,182,2,f +12266,6141,42,2,f +12266,61482,71,1,f +12266,61482,71,1,t +12266,61678,15,2,f +12266,61800,0,2,f +12266,6183,0,1,f +12266,6233,0,2,f +12266,62360,33,1,f +12266,6587,72,3,f +12266,85940,0,2,f +12266,85946pr0001,2,1,f +12266,970c00,2,1,f +12266,970c00pr0127,72,1,f +12266,973pr1490c01,72,1,f +12266,973pr1514c01,2,1,f +12267,3010p06,15,2,f +12267,3062b,4,2,f +12267,3068bpf4,15,1,f +12267,3622,15,4,f +12267,3900,4,1,f +12267,3957a,7,1,f +12267,3962a,0,1,f +12267,749,0,1,f +12267,u9154,0,1,f +12267,u9204c01,15,1,f +12267,x581c08,1,1,f +12268,2780,0,10,f +12268,2994,15,4,f +12268,32009,14,2,f +12268,32009,1,2,f +12268,32013,0,8,f +12268,32014,0,4,f +12268,32016,7,2,f +12268,32039,7,8,f +12268,32062,0,3,f +12268,32073,0,8,f +12268,32123b,7,6,f +12268,32138,15,2,f +12268,32138,0,4,f +12268,32140,0,5,f +12268,32165,14,1,f +12268,32175,1,2,f +12268,32184,14,1,f +12268,32184,1,1,f +12268,32250,0,2,f +12268,32250,1,2,f +12268,32250,14,2,f +12268,32278,0,4,f +12268,32291,1,2,f +12268,32291,14,2,f +12268,32316,1,4,f +12268,32316,14,4,f +12268,32348,0,4,f +12268,32448,7,2,f +12268,3482,15,4,f +12268,3483,0,4,f +12268,3705,0,2,f +12268,3706,0,2,f +12268,3707,0,10,f +12268,3713,7,5,f +12268,3737,0,4,f +12268,3749,7,4,f +12268,4519,0,11,f +12268,6536,7,4,f +12268,6536,0,4,f +12268,6538b,7,4,f +12268,6558,0,15,f +12268,6578,0,4,f +12268,6632,0,4,f +12268,6632,14,2,f +12268,6632,1,2,f +12268,78c03,14,4,f +12268,78c03,1,4,f +12268,rb00169,0,6,f +12268,x209,0,1,f +12269,2654,0,1,f +12269,3004,4,2,f +12269,3022,4,1,f +12269,30374,70,1,f +12269,3626bpr0744,14,1,f +12269,4643477,9999,1,f +12269,4643478,9999,1,f +12269,4643479,9999,1,f +12269,4643480,9999,1,f +12269,4643481,9999,1,f +12269,63965,70,1,f +12269,64567,0,1,f +12269,93055,297,1,f +12269,970c00pr0273,4,1,f +12269,973pr1895c01,4,1,f +12269,98132,297,1,f +12269,98133pr0001,4,1,f +12269,98139,179,1,f +12269,98341pr0004,148,1,f +12269,98354pr0001,191,1,f +12270,2335,15,3,f +12270,2412b,297,1,f +12270,2420,71,2,f +12270,2436,71,1,f +12270,2454a,19,2,f +12270,2555,0,1,f +12270,2654,15,1,f +12270,298c02,1,1,t +12270,298c02,1,1,f +12270,3004,14,2,f +12270,3004pr0007,73,1,f +12270,3020,71,1,f +12270,3020,14,1,f +12270,3021,72,5,f +12270,3022,0,2,f +12270,3022,71,1,f +12270,3023,19,2,f +12270,3023,73,5,f +12270,30237a,0,2,f +12270,3024,73,1,f +12270,30261,15,1,f +12270,3034,0,1,f +12270,30367b,15,2,f +12270,30374,71,1,f +12270,30383,0,2,f +12270,3040b,72,3,f +12270,3068b,1,1,f +12270,3069b,14,3,f +12270,3069b,4,2,f +12270,3069b,15,2,f +12270,3069bpr0117,14,1,f +12270,3460,0,1,f +12270,3622,14,1,f +12270,3623,14,1,f +12270,3678bpr0014a,73,1,f +12270,3794b,14,2,f +12270,3794b,4,2,f +12270,3794b,73,1,f +12270,3795,4,1,f +12270,3941,2,1,f +12270,3941,15,1,f +12270,3957b,0,2,f +12270,4006,0,1,f +12270,4032a,71,1,f +12270,4032a,15,1,f +12270,4032a,4,1,f +12270,4085c,0,4,f +12270,44674,323,1,f +12270,4528,0,2,f +12270,4599b,71,1,f +12270,4600,71,1,f +12270,50948,0,1,f +12270,50949,0,2,f +12270,50951,0,6,f +12270,52107,0,1,f +12270,54200,70,1,t +12270,54200,323,1,t +12270,54200,0,1,t +12270,54200,0,2,f +12270,54200,70,4,f +12270,6019,4,3,f +12270,60212,14,2,f +12270,60471,71,2,f +12270,60479,71,1,f +12270,6091,73,2,f +12270,6111,70,1,f +12270,61409,4,2,f +12270,6141,36,2,f +12270,6141,297,1,t +12270,6141,47,1,t +12270,6141,47,2,f +12270,6141,36,1,t +12270,6141,72,2,f +12270,6141,297,4,f +12270,6141,72,1,t +12270,6157,0,2,f +12270,62361,4,1,f +12270,63868,71,2,f +12270,6628,0,1,f +12270,87079,4,1,f +12270,87618,0,3,f +12270,93273,14,1,f +12270,93273pr0003,14,1,f +12270,93274,14,2,f +12270,93594,179,6,f +12270,93598pr0002,14,1,f +12270,93598pr0003,14,1,f +12272,bb305pb01,15,1,f +12272,bb305pb02,15,1,f +12272,bb305pb03,15,1,f +12272,bb305pb05,15,1,f +12272,bb306pb01,15,1,f +12272,bb307pb01,15,1,f +12272,bb307pb05,15,1,f +12272,bb307pb06,15,1,f +12274,3626bpb0022,14,1,f +12274,45917,2,1,f +12274,45918,15,2,f +12274,46303,2,1,f +12274,970c00,7,1,f +12274,973psnc01,0,1,f +12275,11203,72,3,f +12275,2335,15,1,f +12275,2335,4,2,f +12275,2412b,297,9,f +12275,2419,0,3,f +12275,2444,4,2,f +12275,2540,0,2,f +12275,2780,0,10,f +12275,2780,0,2,t +12275,3001,4,6,f +12275,3002,4,2,f +12275,3004,320,3,f +12275,3010,0,1,f +12275,30136,19,1,f +12275,30174,148,1,f +12275,30176,2,1,f +12275,3020,72,2,f +12275,3021,320,6,f +12275,3023,71,14,f +12275,3024,36,10,f +12275,3031,72,1,f +12275,30350b,4,2,f +12275,30357,320,2,f +12275,30361c,4,2,f +12275,30364,0,2,f +12275,3039,320,2,f +12275,3039,0,1,f +12275,3040b,320,2,f +12275,3040b,28,8,f +12275,3045,4,4,f +12275,3062b,41,1,f +12275,3068b,320,5,f +12275,32000,4,6,f +12275,32016,0,4,f +12275,32016,70,1,f +12275,32039,0,3,f +12275,32039,14,1,f +12275,32062,4,6,f +12275,32064a,0,3,f +12275,32123b,14,2,f +12275,32123b,14,1,t +12275,32187,71,2,f +12275,32316,72,2,f +12275,32526,4,2,f +12275,32556,19,1,f +12275,3298,320,1,f +12275,3623,72,6,f +12275,3626cpr0867,72,1,f +12275,3626cpr0870,14,1,f +12275,3660,72,2,f +12275,3666,72,5,f +12275,3701,72,2,f +12275,3701,4,1,f +12275,3737,0,1,f +12275,3747b,4,8,f +12275,3794b,4,1,f +12275,3795,72,2,f +12275,4032a,14,2,f +12275,4032a,0,2,f +12275,4150,0,2,f +12275,41769,4,1,f +12275,41770,4,1,f +12275,41879a,0,1,f +12275,41879a,25,1,f +12275,4274,71,1,t +12275,4274,71,6,f +12275,4274,1,1,f +12275,4274,1,1,t +12275,4287,0,2,f +12275,43093,1,12,f +12275,43712,4,2,f +12275,44302a,72,2,f +12275,44674,0,2,f +12275,44728,19,7,f +12275,4588,72,2,f +12275,4697b,71,1,t +12275,4697b,71,1,f +12275,47407,0,1,f +12275,47455,0,2,f +12275,48170,4,2,f +12275,48172,0,1,f +12275,48336,4,3,f +12275,53585,0,1,f +12275,54200,320,2,t +12275,54200,72,1,t +12275,54200,320,24,f +12275,54200,72,2,f +12275,54200,297,8,f +12275,54200,297,2,t +12275,57520,0,4,f +12275,57909a,72,4,f +12275,59232,179,1,f +12275,59443,70,2,f +12275,59443,14,1,f +12275,59900,0,1,f +12275,59900,33,1,f +12275,60032,320,4,f +12275,60474,320,3,f +12275,60478,4,10,f +12275,6091,320,2,f +12275,61252,4,1,f +12275,6141,297,15,f +12275,6141,297,3,t +12275,62462,0,1,f +12275,63868,0,8,f +12275,64567,71,1,f +12275,64951,70,1,f +12275,6541,0,8,f +12275,6558,1,2,f +12275,6587,28,3,f +12275,6636,4,2,f +12275,84943,148,1,f +12275,85943,72,1,f +12275,85984,0,1,f +12275,85984,72,2,f +12275,87747,297,4,f +12275,87747,179,1,f +12275,88293,0,4,f +12275,90194,4,1,f +12275,90201,0,2,f +12275,90611,0,2,f +12275,92013,0,4,f +12275,92280,0,4,f +12275,92692,0,4,f +12275,92946,4,20,f +12275,92947,4,4,f +12275,93273,320,2,f +12275,93274,4,2,f +12275,9448stk01,9999,1,t +12275,95344,297,1,f +12275,95344,297,1,t +12275,970c00pr0280,4,1,f +12275,973pr1888c01,0,1,f +12275,973pr1890c01,25,1,f +12275,973pr1902c01,4,1,f +12275,98128,148,1,f +12275,98129,4,1,f +12275,98135,179,1,f +12275,98138,297,2,t +12275,98138,297,11,f +12275,98138pr0001,182,1,f +12275,98138pr0001,182,1,t +12275,98141,297,2,f +12275,98145pr0002,0,1,f +12275,98151pr0001,25,1,f +12275,98283,28,2,f +12275,98313,297,12,f +12275,98341,297,1,f +12275,99021,1,1,f +12275,99207,71,3,f +12275,99780,72,3,f +12275,99781,71,5,f +12277,14226c11,0,1,f +12277,22670,63,2,f +12277,2417,15,1,f +12277,2431,15,2,f +12277,2921,15,2,f +12277,3002,14,5,f +12277,3005,114,4,f +12277,30112,5,1,f +12277,30153,45,10,f +12277,3032,15,1,f +12277,30385,143,3,f +12277,3065,114,2,f +12277,3066,114,2,f +12277,33051,10,2,f +12277,33172,25,3,f +12277,33183,10,3,f +12277,33213,15,3,f +12277,33215,26,2,f +12277,33227,15,1,f +12277,33230,5,2,f +12277,3644,29,2,f +12277,3794a,15,3,f +12277,3942c,15,4,f +12277,4162,15,1,f +12277,42332,5,1,f +12277,4237,45,1,f +12277,4238,45,1,f +12277,42409,52,1,f +12277,4424,73,1,f +12277,4589,46,1,f +12277,4623,15,1,f +12277,4740,45,2,f +12277,58321,85,1,f +12277,60791,15,2,f +12277,6171pr01,15,1,f +12277,6171pr02,0,1,f +12277,6185,70,2,f +12277,6189,0,2,f +12277,6204,0,2,f +12278,2420,7,1,f +12278,2450,4,2,f +12278,2717,0,1,f +12278,2780,0,1,f +12278,2790,7,1,f +12278,2791,7,1,f +12278,2792,0,1,f +12278,2850a,7,1,f +12278,2851,8,1,f +12278,2852,7,1,f +12278,2853,7,1,f +12278,3021,4,1,f +12278,3022,4,1,f +12278,3023,4,2,f +12278,3023,0,1,f +12278,3023,7,1,f +12278,3040b,4,2,f +12278,3062b,7,1,f +12278,3068bp81,15,1,f +12278,3482,15,8,f +12278,3483,0,8,f +12278,3647,7,1,f +12278,3673,7,1,f +12278,3700,4,2,f +12278,3701,4,1,f +12278,3702,4,2,f +12278,3705,0,5,f +12278,3706,0,1,f +12278,3710,4,1,f +12278,3713,7,3,f +12278,3737,0,1,f +12278,3738,4,3,f +12278,3749,7,2,f +12278,3894,4,4,f +12278,3937,4,1,f +12278,3938,4,1,f +12278,4070,7,1,f +12278,4185,7,1,f +12278,4261,7,2,f +12278,4265a,7,4,f +12278,4274,7,1,f +12278,4442,0,1,f +12278,4589,7,1,f +12279,2780,0,11,f +12279,2780,0,1,t +12279,32062,4,2,f +12279,43093,1,6,f +12279,47297,15,2,f +12279,47306,272,1,f +12279,47328,272,2,f +12279,49423,135,1,f +12279,53542,15,2,f +12279,53543,15,4,f +12279,53545,272,1,f +12279,53547,15,1,f +12279,60176,272,2,f +12279,61054,272,4,f +12279,64251,15,2,f +12279,64262,143,1,f +12279,64266pat0001,135,2,f +12279,64275,135,2,f +12279,64276,0,1,f +12279,64277c01,297,1,f +12279,64303pat0001,15,1,f +12279,64309pat0001,135,2,f +12279,64889pr0001,135,1,f +12280,30602,4,2,f +12280,40996,4,2,f +12280,41855,4,4,f +12280,43093,1,1,f +12280,4740,47,1,t +12280,4740,47,1,f +12280,47430,4,2,f +12280,47431,4,2,f +12280,47432,4,2,f +12280,47452,72,2,f +12280,47454,72,2,f +12280,47455,28,10,f +12280,47457,4,2,f +12280,47458,4,4,f +12280,47462,137,1,f +12280,47472,4,1,f +12280,47474,72,1,f +12280,47477c01pb05,4,1,f +12280,47501,4,4,f +12280,48081,89,1,f +12280,bb153pb04,72,1,f +12280,kkc19,89,1,f +12280,kkc21,89,1,f +12280,kkc22,89,1,f +12280,kkc24,89,1,f +12280,kkc25,89,1,f +12280,kkc27,89,1,f +12281,2723,0,2,f +12281,32002,8,4,f +12281,32009,0,4,f +12281,32013,0,4,f +12281,32039,0,6,f +12281,32062,0,8,f +12281,32065,0,8,f +12281,32073,0,2,f +12281,32123b,7,16,f +12281,32138,0,2,f +12281,32140,25,3,f +12281,32140,0,2,f +12281,32140,27,3,f +12281,32177,0,4,f +12281,32199,0,4,f +12281,32247,27,2,f +12281,32247,25,2,f +12281,32250,0,4,f +12281,32271,3,1,f +12281,32271,25,1,f +12281,32271,22,1,f +12281,32271,27,1,f +12281,32271,0,12,f +12281,32279,3,1,f +12281,32280,3,1,f +12281,32281,22,1,f +12281,32348,27,2,f +12281,32348,25,2,f +12281,3705,0,26,f +12281,3706,0,4,f +12281,3707,0,5,f +12281,3713,7,20,f +12281,3737,0,1,f +12281,4519,0,4,f +12281,539,0,4,f +12281,6536,0,8,f +12281,6538b,0,1,f +12281,6553,0,6,f +12281,6558,0,2,f +12281,6628,0,4,f +12281,6632,25,4,f +12281,6632,27,4,f +12281,73129,7,2,f +12281,8305stk01,9999,1,t +12281,rb00168,0,8,f +12281,tech024,9999,1,f +12281,tech027,9999,1,f +12282,6558,0,100,f +12283,2352,14,2,f +12283,2456,15,2,f +12283,2456,4,2,f +12283,2456,14,2,f +12283,2574,4,1,f +12283,3001,15,6,f +12283,3001,4,16,f +12283,3001,14,16,f +12283,3001,0,6,f +12283,3001,1,12,f +12283,3001p11,4,1,f +12283,3001pr1,14,1,f +12283,3002,0,4,f +12283,3002,14,6,f +12283,3002,1,6,f +12283,3002,15,2,f +12283,3002,4,6,f +12283,3003,15,8,f +12283,3003,14,18,f +12283,3003,4,18,f +12283,3003,1,14,f +12283,3003,0,6,f +12283,3003pe1,15,2,f +12283,3003pe1,14,2,f +12283,3003pe4,15,2,f +12283,3007,1,2,f +12283,3185,15,4,f +12283,3471,2,1,f +12283,3483,0,6,f +12283,4130,4,1,f +12283,4131,15,1,f +12283,4132,4,2,f +12283,4133,15,2,f +12283,4180c02,0,2,f +12283,4204,2,1,f +12283,4727,2,2,f +12283,4728,1,1,f +12283,4728,15,1,f +12283,4744,1,1,f +12283,4744pr0002,4,1,f +12283,4747,4,1,f +12283,4748,4,1,f +12283,6007,8,1,f +12285,11215,0,1,f +12285,14418,71,2,f +12285,14769,297,2,f +12285,15068,272,7,f +12285,15392,72,2,f +12285,15403,0,2,f +12285,15456,71,2,f +12285,15462,28,1,f +12285,15535,72,2,f +12285,15619,1,1,f +12285,15706,0,4,f +12285,17114,0,1,f +12285,18950,34,1,f +12285,18962,19,1,f +12285,2412b,1,2,f +12285,2570,179,2,f +12285,2654,72,3,f +12285,2817,0,1,f +12285,30136,71,2,f +12285,30173b,297,3,f +12285,3022,71,1,f +12285,3023,46,1,f +12285,3034,1,2,f +12285,30350b,72,2,f +12285,30375,19,1,f +12285,30377,72,2,f +12285,32001,15,1,f +12285,32001,1,1,f +12285,32064a,0,2,f +12285,32072,14,2,f +12285,32072,0,2,f +12285,32073,71,2,f +12285,32123b,14,3,f +12285,3626cpr1367,14,1,f +12285,3626cpr1566,14,1,f +12285,3678b,1,2,f +12285,3709,1,3,f +12285,3713,4,1,f +12285,3960pr0017b,28,1,f +12285,4519,71,1,f +12285,4740,15,1,f +12285,47456,272,2,f +12285,47457,1,2,f +12285,47905,19,1,f +12285,48336,1,2,f +12285,48336,297,3,f +12285,48729b,0,1,f +12285,57909b,72,4,f +12285,59443,71,2,f +12285,60897,1,2,f +12285,61409,72,4,f +12285,6141,46,12,f +12285,62810,484,1,f +12285,63965,15,1,f +12285,64567,297,1,f +12285,64567,15,1,f +12285,64727,84,1,f +12285,6536,72,1,f +12285,6553,72,2,f +12285,6587,28,2,f +12285,6632,1,2,f +12285,85984pr0002,72,1,f +12285,87618,71,1,f +12285,87620,1,2,f +12285,88072,72,1,f +12285,90611,0,2,f +12285,92013,72,6,f +12285,92947,70,2,f +12285,92947,0,2,f +12285,970c00pr0763,1,1,f +12285,970c00pr0802,85,1,f +12285,973pr2848c01,1,1,f +12285,973pr2850c01,14,1,f +12285,98137,297,4,f +12285,98313,1,3,f +12285,99207,4,2,f +12286,2436,0,2,f +12286,2446,15,1,f +12286,2540,0,1,f +12286,2555,7,4,f +12286,2569,0,1,f +12286,2873,15,1,f +12286,3001,15,1,f +12286,30208,334,1,f +12286,30209,15,1,f +12286,30292,33,2,f +12286,3069bp50,15,1,f +12286,3069bp80,15,1,f +12286,3070b,36,2,f +12286,3070b,36,1,t +12286,3626bp69,14,1,f +12286,4006,0,1,f +12286,4590,7,2,f +12286,4625,15,1,f +12286,6019,15,1,f +12286,6023,15,1,f +12286,6141,42,1,t +12286,6141,42,1,f +12286,769,334,1,f +12286,970x002,15,1,f +12286,973px176c01,15,1,f +12287,2412b,15,2,f +12287,2420,15,2,f +12287,2431,15,1,f +12287,2453a,15,2,f +12287,2496,0,2,f +12287,2518,2,4,f +12287,2536,6,6,f +12287,2540,15,3,f +12287,2546p01,4,1,f +12287,2563,6,1,f +12287,2566,6,1,f +12287,2571,47,3,f +12287,2610,14,1,f +12287,2639,7,2,f +12287,2655,15,2,f +12287,298c04,15,1,f +12287,3005,15,6,f +12287,3010,15,2,f +12287,3010apr008,15,1,f +12287,3020,15,2,f +12287,3022,15,1,f +12287,3023,15,2,f +12287,3023,13,1,f +12287,3024,15,1,f +12287,3024,13,4,f +12287,3028,15,1,f +12287,3033,7,1,f +12287,3063b,15,4,f +12287,3068bp66,15,1,f +12287,3068bpb0016,15,1,f +12287,3070b,14,1,t +12287,3070b,14,1,f +12287,3070b,4,1,t +12287,3070b,4,1,f +12287,3460,7,2,f +12287,3623,15,1,f +12287,3623,7,1,f +12287,3626bp03,14,1,f +12287,3626bp04,14,1,f +12287,3626bp07,14,1,f +12287,3626bpb0175,14,2,f +12287,3666,15,1,f +12287,3666,13,1,f +12287,3666,7,1,f +12287,3710,7,2,f +12287,3741,2,2,f +12287,3742,4,2,t +12287,3742,4,6,f +12287,3795,7,2,f +12287,3811p03,17,1,f +12287,3898,15,1,f +12287,3899,13,1,t +12287,3899,13,2,f +12287,3901,6,1,f +12287,3937,15,1,f +12287,3938,15,1,f +12287,3941,15,2,f +12287,3957a,15,2,f +12287,3960pb001,15,2,f +12287,4032a,2,1,f +12287,4079,13,3,f +12287,4085c,15,2,f +12287,4282,7,1,f +12287,4476b,15,1,f +12287,4477,15,2,f +12287,4485,1,1,f +12287,4495a,1,1,f +12287,4528,0,1,f +12287,4596,7,1,f +12287,4599a,13,3,f +12287,4719,4,1,f +12287,476,15,1,f +12287,4864a,15,2,f +12287,4865a,15,4,f +12287,4871,15,1,f +12287,6003,7,1,f +12287,6020,8,1,f +12287,6059,47,1,f +12287,6064,2,2,f +12287,6075,15,1,f +12287,6079,13,1,f +12287,6081,15,1,f +12287,6091,15,6,f +12287,6093,6,1,f +12287,6093,0,1,f +12287,6141,15,4,f +12287,6141,7,4,f +12287,6141,0,5,f +12287,6141,46,1,f +12287,63965,15,2,f +12287,92851,47,2,f +12287,970c00,7,1,f +12287,970c00,15,1,f +12287,970c00,0,1,f +12287,970x001,14,2,f +12287,973c11,0,1,f +12287,973pb0017c01,15,1,f +12287,973pb0061c01,14,1,f +12287,973px23c01,13,1,f +12287,973px3c01,15,1,f +12287,x66px9,47,1,f +12288,3062b,70,3,f +12288,4733,1,1,f +12288,60849,71,2,f +12288,6117,72,1,f +12288,6141,25,1,t +12288,6141,25,1,f +12290,122c01,0,2,f +12290,3001a,14,1,f +12290,3003,14,1,f +12290,3004,47,1,f +12290,3020,0,2,f +12290,3022,14,2,f +12290,3032,14,2,f +12290,3039,14,1,f +12290,3062a,4,2,f +12290,3062a,7,1,f +12290,3062a,15,2,f +12290,3149c01,0,2,f +12290,3315,0,1,f +12290,3626apr0001,14,1,f +12290,3641,0,4,f +12290,3666,15,1,f +12290,3666,14,2,f +12290,3678a,47,1,f +12290,3795,0,1,f +12290,3833,4,1,f +12290,3837,8,1,f +12290,3840,14,1,f +12290,3841,8,1,f +12290,649pb09,15,1,f +12290,784,14,1,f +12290,970c00,1,1,f +12290,973c02,4,1,f +12294,2341,0,2,f +12294,2419,15,1,f +12294,2420,7,4,f +12294,2420,14,4,f +12294,2431,15,1,f +12294,2431,7,1,f +12294,2486,15,1,f +12294,2540,15,2,f +12294,2555,15,8,f +12294,2569,7,1,f +12294,2694,41,1,f +12294,2695,15,5,f +12294,2696,0,5,f +12294,298c03,7,2,f +12294,3001,0,2,f +12294,3004,14,2,f +12294,3004,15,4,f +12294,3004,0,10,f +12294,3005,0,8,f +12294,3005,15,16,f +12294,3007,14,2,f +12294,3007,0,2,f +12294,3008,0,1,f +12294,3008,15,2,f +12294,3009,0,4,f +12294,3020,0,5,f +12294,3020,14,2,f +12294,3020,15,1,f +12294,3020,7,3,f +12294,3021,14,2,f +12294,3021,4,4,f +12294,3021,0,2,f +12294,3021,7,2,f +12294,3022,7,3,f +12294,3022,14,2,f +12294,3022,4,2,f +12294,3022,0,3,f +12294,3023,15,15,f +12294,3023,0,10,f +12294,3023,4,4,f +12294,3023,7,9,f +12294,3023,14,10,f +12294,3024,0,10,f +12294,3024,46,6,f +12294,3024,15,14,f +12294,3031,0,1,f +12294,3032,0,1,f +12294,3033,15,1,f +12294,3034,14,3,f +12294,3034,4,2,f +12294,3034,7,5,f +12294,3035,7,2,f +12294,3036,15,1,f +12294,3036,7,1,f +12294,3040b,15,2,f +12294,3062b,7,14,f +12294,3063b,7,4,f +12294,3063b,15,2,f +12294,3065,47,2,f +12294,3069b,14,2,f +12294,3069b,0,1,f +12294,3069b,15,2,f +12294,3070b,7,2,f +12294,3297,15,1,f +12294,3460,0,7,f +12294,3460,4,1,f +12294,3460,15,8,f +12294,3623,4,6,f +12294,3623,7,2,f +12294,3623,15,13,f +12294,3623,0,6,f +12294,3647,7,1,f +12294,3660,15,2,f +12294,3660,14,4,f +12294,3665,14,2,f +12294,3665,0,4,f +12294,3666,0,5,f +12294,3666,7,5,f +12294,3666,14,2,f +12294,3666,15,7,f +12294,3684,14,2,f +12294,3700,0,3,f +12294,3703,7,2,f +12294,3705,0,2,f +12294,3708,0,2,f +12294,3709,7,1,f +12294,3710,7,4,f +12294,3710,0,9,f +12294,3710,15,1,f +12294,3713,7,4,f +12294,3738,15,1,f +12294,3738,0,1,f +12294,3743,7,1,f +12294,3747b,0,1,f +12294,3749,7,3,f +12294,3794a,7,2,f +12294,3795,15,3,f +12294,3795,0,1,f +12294,3832,7,2,f +12294,3832,15,2,f +12294,3832,0,3,f +12294,3832,14,3,f +12294,3849,15,2,f +12294,3894,0,2,f +12294,3937,7,3,f +12294,3938,7,3,f +12294,3957a,7,4,f +12294,3959,15,2,f +12294,4070,15,4,f +12294,4070,7,8,f +12294,4070,14,4,f +12294,4081b,15,2,f +12294,4081b,0,2,f +12294,4081b,7,4,f +12294,4085c,15,3,f +12294,4143,7,2,f +12294,4162,14,2,f +12294,4175,7,5,f +12294,4181,15,2,f +12294,4182,15,2,f +12294,4183,41,4,f +12294,4185,7,2,f +12294,4213,15,2,f +12294,4215a,41,4,f +12294,4261,7,2,f +12294,4265a,7,7,f +12294,4274,7,6,f +12294,4275b,4,6,f +12294,4276b,4,6,f +12294,4286,7,2,f +12294,4286,15,4,f +12294,4287,15,2,f +12294,4287,0,2,f +12294,4349,15,2,f +12294,4442,7,3,f +12294,4460b,15,2,f +12294,4477,0,6,f +12294,4477,7,2,f +12294,4477,15,1,f +12294,4623,15,2,f +12294,4625,15,2,f +12294,4730,7,2,f +12294,4740,15,2,f +12294,6141,36,4,f +12294,6141,7,2,f +12294,6141,47,4,f +12294,6141,46,2,f +12294,6141,15,6,f +12295,236ac01,1,2,f +12295,236ac01,4,2,f +12295,3001a,0,4,f +12295,3004,47,2,f +12295,3005,47,2,f +12295,3005,0,8,f +12295,3008,0,2,f +12295,3009,0,7,f +12295,3010,0,1,f +12295,3020,0,6,f +12295,3021,0,6,f +12295,3022,14,1,f +12295,3022,0,6,f +12295,3023,0,10,f +12295,3023,4,4,f +12295,3024,4,2,f +12295,3024,0,4,f +12295,3039,0,1,f +12295,3040a,0,4,f +12295,3058b,7,1,f +12295,3062a,0,1,f +12295,3087bc01,4,2,f +12295,458,7,8,f +12295,468c02,0,1,f +12295,564c01,0,1,f +12295,7049b,15,2,f +12295,737ac01,4,2,f +12295,737ac02,4,2,f +12295,wheel2a,4,4,f +12295,wheel2b,4,4,f +12295,x466,15,2,f +12295,x869b,15,1,f +12295,x870bc01,0,1,f +12295,x871b,47,1,f +12296,11459pat02,4,1,f +12296,20149pr0001,14,1,f +12296,88646,0,1,f +12296,970c00,288,1,f +12296,973pr2973c01,28,1,f +12297,3626bpr0892,14,1,f +12297,3626cpr0279,14,1,f +12297,3626cpr0645,14,1,f +12297,3898,15,1,f +12297,3899,45,1,f +12297,4006,0,1,f +12297,4528,0,1,f +12297,59363,70,1,f +12297,86035,1,1,f +12297,970c00,25,1,f +12297,970c00,1,1,f +12297,970c00,15,1,f +12297,973pb1163c01,1,1,f +12297,973pb1164c01,25,1,f +12297,973pb1165c01,15,1,f +12298,2377,4,2,f +12298,2412b,15,3,f +12298,2412b,72,6,f +12298,2432,1,2,f +12298,2432,72,2,f +12298,2446,15,1,f +12298,2447,40,1,f +12298,2447,40,1,t +12298,2516,14,1,f +12298,2540,4,3,f +12298,2569,72,1,f +12298,2610,14,2,f +12298,2654,1,4,f +12298,2877,71,10,f +12298,298c02,14,1,f +12298,298c02,14,1,t +12298,30000,71,6,f +12298,3001,4,4,f +12298,3002,15,4,f +12298,3003,72,2,f +12298,30031,72,1,f +12298,3004,4,8,f +12298,3006,19,1,f +12298,3008,4,2,f +12298,3009,71,2,f +12298,3010,4,2,f +12298,30136,72,8,f +12298,30162,72,3,f +12298,3020,4,2,f +12298,3020,71,2,f +12298,3020,15,3,f +12298,3022,15,4,f +12298,3022,4,1,f +12298,3023,46,2,f +12298,3023,33,2,f +12298,3023,4,2,f +12298,3023,15,6,f +12298,3031,71,1,f +12298,3034,4,2,f +12298,3035,4,1,f +12298,3036,72,2,f +12298,3036,4,1,f +12298,30363,15,2,f +12298,30374,14,1,f +12298,30377,71,2,f +12298,30377,71,1,t +12298,3039,14,2,f +12298,30391,0,8,f +12298,30395,72,1,f +12298,30396,14,1,f +12298,3039pr0005,15,1,f +12298,3039pr0013,15,1,f +12298,3039pr0014,0,1,f +12298,3040b,4,4,f +12298,30414,14,2,f +12298,30526,1,2,f +12298,30602,4,2,f +12298,3062b,14,2,f +12298,30663,71,2,f +12298,3069b,72,2,f +12298,3069b,33,6,f +12298,3070bpr0007,71,1,f +12298,3070bpr0007,71,1,t +12298,32028,71,1,f +12298,32123b,14,1,t +12298,32123b,14,2,f +12298,32348,72,4,f +12298,3245c,4,2,f +12298,32524,71,1,f +12298,3460,72,3,f +12298,3622,4,2,f +12298,3623,15,4,f +12298,3626bpr0325,14,1,f +12298,3626bpr0389,14,1,f +12298,3626bpr0409,14,1,f +12298,3660,72,11,f +12298,3665,72,2,f +12298,3666,15,12,f +12298,3679,71,1,f +12298,3680,1,1,f +12298,3700,71,2,f +12298,3700,4,2,f +12298,3710,71,2,f +12298,3713,4,3,f +12298,3713,4,1,t +12298,3749,19,8,f +12298,3794b,71,2,f +12298,3794b,15,2,f +12298,3795,15,2,f +12298,3795,4,1,f +12298,3795,71,3,f +12298,3821,4,1,f +12298,3822,4,1,f +12298,3823,41,2,f +12298,3829c01,14,2,f +12298,3832,71,2,f +12298,3834,15,2,f +12298,3835,0,1,f +12298,3937,4,2,f +12298,4079b,14,4,f +12298,4085c,15,2,f +12298,4150,71,1,f +12298,4151b,72,3,f +12298,41532,0,1,f +12298,42003,14,2,f +12298,43093,1,2,f +12298,43337,14,1,f +12298,4349,4,2,f +12298,44674,15,2,f +12298,44728,71,2,f +12298,4477,4,4,f +12298,4510,15,1,f +12298,45677,4,2,f +12298,4599b,14,1,f +12298,4600,0,2,f +12298,4623,71,2,f +12298,48336,14,6,f +12298,52107,0,2,f +12298,53586,135,1,f +12298,54200,4,6,f +12298,54200,15,2,f +12298,54200,33,2,t +12298,54200,4,2,t +12298,54200,15,1,t +12298,54200,33,3,f +12298,55013,72,1,f +12298,55981,15,8,f +12298,57779,0,1,f +12298,59900,33,1,f +12298,59900,14,1,f +12298,59900,71,4,f +12298,6014b,15,4,f +12298,6019,4,2,f +12298,60470a,0,2,f +12298,60601,41,2,f +12298,60700,0,4,f +12298,6091,14,2,f +12298,6112,72,4,f +12298,6134,71,2,f +12298,61409,72,2,f +12298,6141,46,4,f +12298,6141,36,1,t +12298,6141,36,2,f +12298,6141,33,4,f +12298,6141,33,2,t +12298,6141,182,1,t +12298,6141,182,2,f +12298,6141,46,1,t +12298,61485,0,1,f +12298,62360,15,1,f +12298,62812,4,1,f +12298,63864,4,2,f +12298,63965,15,1,f +12298,6536,15,1,f +12298,6636,4,1,f +12298,7213stk01,9999,1,t +12298,87079,4,1,f +12298,87081,72,1,f +12298,87083,72,2,f +12298,87087,72,12,f +12298,87617,0,2,f +12298,87617,4,2,f +12298,87618,71,2,f +12298,970c00,0,3,f +12298,973pr1187c01,0,3,f +12299,2357,0,1,f +12299,2362a,15,2,f +12299,2420,4,3,f +12299,2431,1,2,f +12299,2431pw1,7,1,f +12299,2453a,15,2,f +12299,2454a,15,2,f +12299,2456,0,2,f +12299,2458,7,1,f +12299,2460,4,1,f +12299,2465,4,1,f +12299,2470,0,4,f +12299,2488,0,1,f +12299,2489,6,2,f +12299,2493b,7,2,f +12299,2493b,2,1,f +12299,2494,47,3,f +12299,251,0,1,f +12299,2527,6,1,f +12299,2546,8,1,f +12299,2555,0,3,f +12299,2873,0,3,f +12299,2926,0,1,f +12299,3001,1,2,f +12299,3001,0,1,f +12299,3003,0,3,f +12299,3004,15,1,f +12299,3004,6,2,f +12299,3004,0,19,f +12299,3005,15,3,f +12299,3005,4,2,f +12299,3005,7,2,f +12299,3005,6,4,f +12299,30055,15,3,f +12299,30055,0,2,f +12299,30055,7,2,f +12299,3008,15,3,f +12299,3008,4,2,f +12299,3009,4,2,f +12299,3009,15,2,f +12299,3010,15,3,f +12299,3010,0,5,f +12299,30132,8,6,f +12299,30133,0,1,f +12299,30133,15,1,f +12299,30135,1,1,f +12299,30136,6,11,f +12299,30137,6,6,f +12299,30139,6,1,f +12299,30140,6,2,f +12299,30141,8,8,f +12299,3020,7,1,f +12299,3020,0,3,f +12299,3020,1,1,f +12299,3020,4,1,f +12299,3022,4,1,f +12299,3023,6,3,f +12299,3023,0,2,f +12299,3023,4,1,f +12299,3023,15,3,f +12299,3024,7,1,f +12299,3027,0,2,f +12299,3028,0,1,f +12299,3028,7,2,f +12299,3029,0,1,f +12299,3031,0,1,f +12299,3032,1,1,f +12299,3032,0,1,f +12299,3035,4,1,f +12299,3062b,7,6,f +12299,3062b,0,2,f +12299,3062b,15,8,f +12299,3068b,7,2,f +12299,3068b,15,2,f +12299,3068b,0,2,f +12299,3069b,0,3,f +12299,3069b,15,1,f +12299,3069bp03,7,3,f +12299,3069bpr0100,2,4,f +12299,3069bpw0,15,1,f +12299,3069bpw1,15,1,f +12299,3070b,4,1,f +12299,3176,0,1,f +12299,3297,1,3,f +12299,3297,15,1,f +12299,3456,0,1,f +12299,3460,0,1,f +12299,3581,4,2,f +12299,3582,4,2,f +12299,3622,0,1,f +12299,3622,15,1,f +12299,3623,0,1,f +12299,3626bp35,14,1,f +12299,3626bp42,14,1,f +12299,3626bp62,14,1,f +12299,3626bpx107,14,1,f +12299,3626bpx108,14,1,f +12299,3626bpx28,14,1,f +12299,3629,15,1,f +12299,3629,7,1,f +12299,3629,6,1,f +12299,3629pw2,7,1,f +12299,3633,0,2,f +12299,3633,7,6,f +12299,3633,15,1,f +12299,3660,0,2,f +12299,3665,15,2,f +12299,3666,0,1,f +12299,3673,7,1,f +12299,3679,7,1,f +12299,3710,0,9,f +12299,3710,4,1,f +12299,3755,15,1,f +12299,3795,0,1,f +12299,3835,0,1,f +12299,3837,8,1,f +12299,3841,8,1,f +12299,3857,19,2,f +12299,3861b,2,1,f +12299,3901,0,1,f +12299,4070,0,2,f +12299,4071,15,1,f +12299,4085c,0,10,f +12299,4088,4,1,f +12299,4213,0,3,f +12299,4282,0,1,f +12299,4286,4,1,f +12299,4315,4,1,f +12299,4315,0,5,f +12299,4345b,7,2,f +12299,4346px5,2,2,f +12299,4489,0,2,f +12299,4491b,6,1,f +12299,4493c01pb01,6,2,f +12299,4493c01pb02,0,1,f +12299,4504,0,1,f +12299,4507,0,1,f +12299,4528,0,1,f +12299,4611,0,1,f +12299,4733,0,1,f +12299,47899c01,7,1,f +12299,4864a,7,1,f +12299,4865a,0,3,f +12299,57503,334,1,f +12299,57504,334,1,f +12299,57505,334,1,f +12299,57506,334,1,f +12299,6016,0,2,f +12299,6064,2,2,f +12299,6079,0,2,f +12299,6111,0,2,f +12299,6111,15,2,f +12299,6112,6,3,f +12299,6141,4,8,f +12299,6157,0,2,f +12299,6541,4,1,f +12299,73129,7,2,f +12299,84943,8,1,f +12299,970c00,6,1,f +12299,970c00,1,2,f +12299,970c00,0,2,f +12299,970c00,8,1,f +12299,973px161c01,8,1,f +12299,973px162c01,1,1,f +12299,973px163c01,15,1,f +12299,973px42c01,1,1,f +12299,973px53c01,6,1,f +12299,973px54c01,0,1,f +12300,2654,7,1,f +12300,3001,1,6,f +12300,3003,14,4,f +12300,3003,1,8,f +12300,3004,1,8,f +12300,3020,7,2,f +12300,3020,1,2,f +12300,3036,14,4,f +12300,3039,14,4,f +12300,32016,1,2,f +12300,3298p71,0,1,f +12300,3298p72,14,1,f +12300,3298pb002,4,1,f +12300,3460,1,2,f +12300,3634,0,2,f +12300,3647,7,1,t +12300,3647,7,3,f +12300,3648a,7,2,f +12300,3660,14,2,f +12300,3703,0,4,f +12300,3705,0,2,f +12300,3710,1,2,f +12300,3747b,14,2,f +12300,3795,1,2,f +12300,3895,1,2,f +12300,4070,0,2,f +12300,4113096,89,1,f +12300,4122123,89,1,f +12300,4477,1,2,f +12300,5306bc020,0,1,f +12300,6579,0,2,f +12300,6580,14,2,f +12300,71427c01,7,1,f +12300,75c18,1,2,f +12300,85543,15,1,f +12300,rb00169,0,3,f +12300,x35,14,2,f +12300,x36,0,2,f +12301,3001,14,6,f +12301,3001,15,4,f +12301,3001,4,6,f +12301,3001,0,2,f +12301,3001,1,4,f +12301,3001pr1,14,1,f +12301,3002,15,2,f +12301,3002,4,2,f +12301,3002,1,2,f +12301,3002,0,2,f +12301,3002,14,2,f +12301,3003,4,4,f +12301,3003,14,4,f +12301,3003,0,2,f +12301,3003,1,4,f +12301,3003,15,4,f +12301,3003pe1,14,2,f +12301,3006,4,2,f +12301,3007,1,2,f +12301,3185,15,4,f +12301,3470,2,1,f +12301,3483,0,4,f +12301,4130,14,1,f +12301,4131,4,1,f +12301,4132,14,2,f +12301,4133,4,2,f +12301,4180c02,0,2,f +12301,4201,2,1,f +12301,4202,1,1,f +12301,4594,47,1,f +12301,bfp001,9999,1,f +12304,3001,2,1,f +12304,3022,2,1,f +12304,3039,2,2,f +12304,3623,2,1,f +12304,3660,2,2,f +12304,6141,14,1,f +12305,12825,71,2,f +12305,2412b,143,2,f +12305,3020,0,2,f +12305,3022,71,2,f +12305,3023,33,2,f +12305,30259,71,2,f +12305,30503,71,2,f +12305,30602,40,2,f +12305,3623,72,2,f +12305,3747b,0,1,f +12305,43719,0,1,f +12305,4588,72,2,f +12305,4590,72,1,f +12305,48336,71,4,f +12305,60470a,0,1,f +12305,6141,0,2,f +12305,6141,0,1,t +12305,87079,71,1,f +12305,90194,72,2,f +12311,10201,71,2,f +12311,11089,15,2,f +12311,11090,72,1,f +12311,11098,41,1,f +12311,11127,41,1,f +12311,11153,28,2,f +12311,11214,72,1,f +12311,11233pr0002,71,1,f +12311,11458,72,2,f +12311,11477,179,2,f +12311,11601,41,3,f +12311,13548,15,1,f +12311,15068,179,1,f +12311,15083pr0002,28,1,f +12311,15107,41,2,f +12311,15208,15,1,f +12311,15672,28,6,f +12311,15712,297,2,f +12311,16768pat0001,4,2,f +12311,18394pat0001,36,2,f +12311,18398pr0001,297,1,f +12311,18654,72,1,f +12311,2432,0,1,f +12311,2654,72,2,f +12311,30031,0,1,f +12311,30153,41,1,f +12311,3020,71,1,f +12311,3021,19,1,f +12311,3022,70,2,f +12311,3023,19,2,f +12311,3023,308,1,f +12311,30374,41,1,f +12311,3040b,15,2,f +12311,32000,14,1,f +12311,32014,0,2,f +12311,32039,0,1,f +12311,32271,72,2,f +12311,3626cpr1134,71,1,f +12311,3626cpr1423,28,1,f +12311,3660,71,1,f +12311,3707,0,1,f +12311,3713,4,1,f +12311,3832,15,1,f +12311,3941,41,1,f +12311,4081b,0,2,f +12311,41530,179,2,f +12311,41677,72,2,f +12311,42610,71,2,f +12311,4274,71,4,f +12311,4286,15,2,f +12311,43093,1,1,f +12311,43722,484,2,f +12311,43723,484,2,f +12311,43857,0,1,f +12311,44294,71,1,f +12311,44728,72,4,f +12311,44809,71,1,f +12311,4519,71,2,f +12311,47456,484,2,f +12311,48336,19,1,f +12311,48729b,72,1,f +12311,49668,179,4,f +12311,51739,28,1,f +12311,54200,41,1,f +12311,54200,28,4,f +12311,56898,0,1,f +12311,56904,71,1,f +12311,59900,182,2,f +12311,60478,72,2,f +12311,60481,71,1,f +12311,60897,71,2,f +12311,61184,71,1,f +12311,61252,72,5,f +12311,6126a,41,2,f +12311,61409,484,2,f +12311,6141,179,4,f +12311,6141,33,2,f +12311,64567,0,1,f +12311,6558,1,1,f +12311,6632,0,4,f +12311,85984,28,2,f +12311,92280,0,4,f +12311,970c00pr0663,4,1,f +12311,970d00pr0665,28,1,f +12311,973pr2666c01,4,1,f +12311,973pr2672c01,28,1,f +12311,98138,41,1,f +12311,98283,72,3,f +12311,98283,71,2,f +12311,98989,71,1,f +12311,99207,0,2,f +12311,99781,71,1,f +12311,99781,0,1,f +12312,3005,71,1,f +12312,3023,72,2,f +12312,3710,71,1,f +12312,43722,71,1,f +12312,43723,71,1,f +12312,4595,71,1,f +12312,4733,72,2,f +12312,54200,40,1,t +12312,54200,71,2,f +12312,54200,71,1,t +12312,54200,40,1,f +12312,6141,71,4,f +12312,6141,71,1,t +12313,2145,4,1,f +12313,2145,15,2,f +12313,2340,4,2,f +12313,2454a,4,2,f +12313,2547,15,1,f +12313,2548,15,1,f +12313,264,4,2,f +12313,2661,9999,1,f +12313,3001,1,1,f +12313,3001,15,2,f +12313,3001,0,2,f +12313,3001,14,3,f +12313,3002,14,2,f +12313,3003,4,2,f +12313,3003,0,2,f +12313,3003,15,2,f +12313,3003,1,2,f +12313,3003,14,2,f +12313,3008,1,6,f +12313,3009,1,4,f +12313,3010,14,2,f +12313,3010,1,4,f +12313,30144,4,1,f +12313,30145,4,4,f +12313,30155,8,4,f +12313,3020,4,2,f +12313,3030,14,1,f +12313,3035,14,1,f +12313,33254c00,9999,1,f +12313,33303,15,2,f +12313,3483,0,4,f +12313,3701,1,3,f +12313,4083,1,1,f +12313,4083,4,2,f +12313,4088,4,1,f +12313,4088px5,1,1,f +12313,4201,15,1,f +12313,4204,2,1,f +12313,4204,14,1,f +12313,4222a,4,2,f +12313,4327,14,1,f +12313,4332,366,1,f +12313,4433,14,1,f +12313,4440,1,1,f +12313,4461,4,2,f +12313,4617b,0,1,f +12313,4727,2,3,f +12313,4728,1,1,f +12313,4728,15,1,f +12313,4728,14,1,f +12313,4790,6,3,f +12313,6140,4,1,f +12313,6182,1,1,f +12313,6203,4,1,f +12313,6232,4,1,f +12313,6249,7,2,f +12313,6583,14,2,f +12313,787c02,4,2,f +12314,2356,71,2,f +12314,2412b,1,4,f +12314,2456,71,3,f +12314,2479,0,1,f +12314,2486,14,2,f +12314,2512,71,2,f +12314,3001,14,2,f +12314,3001,72,1,f +12314,3001,25,6,f +12314,3002,4,13,f +12314,3003,33,1,f +12314,3003,0,5,f +12314,3003,1,7,f +12314,3003,19,3,f +12314,3003,71,2,f +12314,3003,15,6,f +12314,3004,71,1,f +12314,3004,1,2,f +12314,3004,14,1,f +12314,3004,15,16,f +12314,3004,0,2,f +12314,3005pe1,15,2,f +12314,3006,71,6,f +12314,3006,1,1,f +12314,3008,1,4,f +12314,3009,72,1,f +12314,3009,15,2,f +12314,3009,1,2,f +12314,3010,1,4,f +12314,3010,14,5,f +12314,3010,15,3,f +12314,3010,73,1,f +12314,3020,0,1,f +12314,3020,71,1,f +12314,3020,14,1,f +12314,3020,1,1,f +12314,3020,70,1,f +12314,3022,72,1,f +12314,3022,14,1,f +12314,3023,71,1,f +12314,3023,15,2,f +12314,30285,15,12,f +12314,3031,14,2,f +12314,3031,0,3,f +12314,3031,15,3,f +12314,3031,1,1,f +12314,3032,15,2,f +12314,3034,15,2,f +12314,30367a,14,1,f +12314,30388,14,2,f +12314,30389b,14,1,f +12314,3039,1,2,f +12314,3039,14,6,f +12314,3039,73,1,f +12314,3039,15,1,f +12314,30391,0,12,f +12314,30395,72,1,f +12314,30396,14,1,f +12314,3040b,71,6,f +12314,3040b,1,2,f +12314,3040b,25,2,f +12314,3040b,73,2,f +12314,30602,25,1,f +12314,3065,34,2,f +12314,3065,36,2,f +12314,3300,1,1,f +12314,3403c01,71,1,f +12314,3622,15,2,f +12314,3623,0,2,f +12314,3660,15,4,f +12314,3660,1,2,f +12314,3660,0,1,f +12314,3660,14,5,f +12314,3665,1,2,f +12314,3665,73,2,f +12314,3666,1,2,f +12314,3666,15,2,f +12314,3666,71,2,f +12314,3666,0,2,f +12314,3679,7,1,f +12314,3680,14,1,f +12314,3684,15,2,f +12314,3684,71,2,f +12314,3710,71,1,f +12314,3710,15,5,f +12314,3747b,71,5,f +12314,3747b,15,1,f +12314,3795,71,1,f +12314,3823,47,3,f +12314,3937,71,4,f +12314,3938,15,4,f +12314,3942c,15,2,f +12314,3957a,15,1,f +12314,4032a,0,3,f +12314,4070,14,2,f +12314,41855,14,1,f +12314,4202,71,3,f +12314,42022,73,2,f +12314,42022,14,2,f +12314,42023,73,4,f +12314,4286,14,2,f +12314,4286,73,2,f +12314,44568,1,1,f +12314,44570,1,1,f +12314,4477,0,4,f +12314,4589,57,4,f +12314,4729,1,1,f +12314,4864b,40,2,f +12314,4864b,47,2,f +12314,6215,70,2,f +12314,6238,47,2,f +12314,6249,71,6,f +12317,2046,462,1,f +12317,2343,47,2,f +12317,2445,15,1,f +12317,2454a,15,4,f +12317,2518,10,4,f +12317,2536,6,7,f +12317,2540,14,4,f +12317,2563,6,1,f +12317,2566,6,1,f +12317,3001,15,2,f +12317,3003,15,2,f +12317,3004,15,1,f +12317,3005,15,1,f +12317,3008,5,1,f +12317,30089,14,1,f +12317,3009,15,1,f +12317,3010,1,1,f +12317,30108,15,2,f +12317,30162,0,1,f +12317,30217,14,1,f +12317,30218,15,1,f +12317,30219,15,2,f +12317,30220,462,2,f +12317,30222,4,2,f +12317,30222,6,2,f +12317,3028,5,1,f +12317,3030,10,1,f +12317,3031,5,1,f +12317,3034,5,2,f +12317,3038pb01,14,1,f +12317,3062b,34,2,f +12317,3068b,14,1,f +12317,3308,15,2,f +12317,33120,462,2,f +12317,33120,15,2,f +12317,33121,4,1,f +12317,33122,462,1,f +12317,33123,462,1,f +12317,3622,15,2,f +12317,3622p01,14,1,f +12317,3659,14,2,f +12317,3710,5,1,f +12317,3849,15,2,f +12317,4032a,10,1,f +12317,4085c,15,2,f +12317,4476b,1,2,f +12317,4536,15,2,f +12317,4589,34,2,f +12317,4589,15,4,f +12317,4876,462,1,f +12317,57503,334,1,f +12317,57504,334,1,f +12317,57505,334,1,f +12317,57506,334,1,f +12317,6044,15,2,f +12317,6075,15,1,f +12317,6075,14,1,f +12317,6112,15,2,f +12317,6141,36,3,f +12317,6161,18,1,f +12317,6162,18,2,f +12317,6165,15,1,f +12317,6175,8,1,f +12317,6176,5,1,f +12317,6179,1,1,f +12317,6180,15,2,f +12317,6182,5,6,f +12317,6182,14,1,f +12317,6191,1,1,f +12317,6196,5,1,f +12317,6197b,5,1,f +12317,6252,14,1,f +12317,6253,15,1,f +12317,6254,17,2,f +12317,70973c01,1,1,f +12317,92410,14,1,f +12317,beltent3,15,1,f +12317,belvfem53,9999,1,f +12317,belvfem67,9999,1,f +12317,belvmale17,9999,1,f +12317,belvskirt12,5,1,f +12317,belvskirt15,15,1,f +12317,towel,15,1,f +12317,x772px3,47,1,f +12317,x772px4,47,1,f +12318,2397,4,1,f +12318,2420,4,2,f +12318,2431,4,1,f +12318,2436,4,1,f +12318,2540,0,1,f +12318,3020,4,1,f +12318,3021,4,3,f +12318,3021,0,2,f +12318,3023,72,1,f +12318,30383,72,2,f +12318,30602,0,2,f +12318,32028,0,2,f +12318,3795,4,1,f +12318,3839b,0,1,f +12318,44302a,4,2,f +12318,47458,0,1,f +12318,50943,80,1,f +12318,50944pr0001,0,6,f +12318,50947,4,2,f +12318,50951,0,6,f +12318,54200,4,2,f +12318,6091,4,2,f +12318,6157,0,3,f +12319,3020,7,3,f +12319,3021,7,2,f +12319,3021,4,3,f +12319,3022,1,4,f +12319,3023,1,2,f +12319,3034,1,1,f +12319,3069b,1,2,f +12319,3482,7,8,f +12319,3483,0,8,f +12319,3623,4,3,f +12319,3651,7,8,f +12319,3700,1,3,f +12319,3702,1,2,f +12319,3705,0,4,f +12319,3706,0,2,f +12319,3707,0,2,f +12319,3710,4,2,f +12319,3713,7,8,f +12319,3743,7,1,f +12319,3749,7,4,f +12319,3794a,7,2,f +12319,3894,1,2,f +12319,3937,7,1,f +12319,3938,7,1,f +12319,3958,1,1,f +12319,3959,7,2,f +12319,4019,7,1,f +12319,4185,7,1,f +12319,4261,7,2,f +12319,4265a,7,5,f +12319,4275a,4,1,f +12319,4276a,4,1,f +12319,4442,7,3,f +12319,4519,0,1,f +12319,x467c12,0,2,f +12323,2412b,0,2,f +12323,2431,1,1,f +12323,2431,33,1,f +12323,2445,72,1,f +12323,2780,0,1,t +12323,2780,0,3,f +12323,3002,70,1,f +12323,3020,1,4,f +12323,3020,71,1,f +12323,3021,19,1,f +12323,3023,2,3,f +12323,3023,1,2,f +12323,3024,33,3,f +12323,3024,182,2,f +12323,30259,15,1,f +12323,3069b,15,1,f +12323,3070b,36,1,t +12323,3070b,36,2,f +12323,32014,4,1,f +12323,32530,72,2,f +12323,3626bpr0410,14,1,f +12323,3626cpr0282,14,1,f +12323,3710,15,2,f +12323,3829c01,14,1,f +12323,3957b,0,1,f +12323,4085c,71,1,f +12323,41334,0,1,f +12323,43093,1,1,f +12323,43337,1,2,f +12323,44301a,0,2,f +12323,48336,71,1,f +12323,50745,15,4,f +12323,52036,15,1,f +12323,52038,15,2,f +12323,52501,1,2,f +12323,54200,47,2,f +12323,54200,71,1,t +12323,54200,47,1,t +12323,54200,71,4,f +12323,57783,41,2,f +12323,6014b,71,4,f +12323,60470a,71,4,f +12323,60700,0,4,f +12323,6141,46,1,f +12323,6141,46,1,t +12323,61482,71,1,t +12323,61482,71,1,f +12323,6157,0,2,f +12323,62462,4,2,f +12323,62462,15,2,f +12323,6558,1,1,f +12323,85984,1,2,f +12323,88930,1,1,f +12323,92589,71,2,f +12323,92690,71,1,f +12323,970c00,72,1,f +12323,970c00,272,1,f +12323,973pr1197c01,15,1,f +12323,973pr1943c01,28,1,f +12323,98279,19,1,f +12323,98281,15,1,f +12324,10201,15,2,f +12324,11476,0,1,f +12324,15068,0,2,f +12324,15068,15,1,f +12324,18868b01,46,2,f +12324,19981pr0051,46,1,f +12324,2412b,71,1,f +12324,2420,1,4,f +12324,30031,71,1,f +12324,30162,72,1,f +12324,3020,15,1,f +12324,3021,71,1,f +12324,3022,0,1,f +12324,3023,0,1,f +12324,3176,0,1,f +12324,32062,4,2,f +12324,3626cpr2019,78,1,f +12324,3937,71,1,f +12324,3941,46,2,f +12324,4032a,71,2,f +12324,42610,71,2,f +12324,44674,15,1,f +12324,44728,0,1,f +12324,4697b,71,2,f +12324,4697b,71,1,t +12324,47456,15,1,f +12324,50944,0,4,f +12324,50947,15,2,f +12324,50951,0,6,f +12324,59900,71,2,f +12324,60897,0,2,f +12324,6134,71,1,f +12324,6141,15,1,t +12324,6141,47,2,f +12324,6141,15,2,f +12324,6141,47,1,t +12324,6157,0,2,f +12324,62810,0,1,f +12324,85861,71,4,f +12324,85861,71,1,t +12324,85943,72,2,f +12324,85984,0,3,f +12324,93273,15,2,f +12324,970c00,0,1,f +12324,973pr3537c01,0,1,f +12324,99780,0,3,f +12325,2456,1,2,f +12325,2456,4,1,f +12325,2456,15,2,f +12325,2456,14,1,f +12325,3001,4,14,f +12325,3001,1,14,f +12325,3001,14,14,f +12325,3001,15,14,f +12325,3001,0,7,f +12325,3001,27,2,f +12325,3001,334,1,f +12325,3001,2,7,f +12325,3001,73,2,f +12325,3002,4,6,f +12325,3002,1,6,f +12325,3002,0,3,f +12325,3002,2,3,f +12325,3002,15,6,f +12325,3002,14,6,f +12325,3003,0,20,f +12325,3003,1,44,f +12325,3003,27,6,f +12325,3003,14,44,f +12325,3003,4,44,f +12325,3003,2,20,f +12325,3003,73,6,f +12325,3003,15,44,f +12325,3004,27,10,f +12325,3004,14,20,f +12325,3004,4,20,f +12325,3004,15,20,f +12325,3004,1,20,f +12325,3004,2,15,f +12325,3004,73,10,f +12325,3004,0,10,f +12325,3004p0b,14,2,f +12325,3005,27,8,f +12325,3005,15,10,f +12325,3005,14,10,f +12325,3005,2,10,f +12325,3005,73,8,f +12325,3005,1,10,f +12325,3005,4,10,f +12325,3005,0,6,f +12325,3005pe1,14,4,f +12325,3007,14,1,f +12325,3007,4,1,f +12325,3007,1,1,f +12325,3007,15,1,f +12325,3008,4,1,f +12325,3008,14,1,f +12325,3008,1,2,f +12325,3008,15,2,f +12325,3009,1,3,f +12325,3009,14,2,f +12325,3009,4,2,f +12325,3009,15,3,f +12325,3010,4,7,f +12325,3010,27,4,f +12325,3010,1,7,f +12325,3010,0,6,f +12325,3010,2,6,f +12325,3010,14,7,f +12325,3010,15,7,f +12325,3010,73,4,f +12325,3020,4,2,f +12325,3020,1,2,f +12325,3022,1,2,f +12325,3022,0,2,f +12325,3022,4,2,f +12325,3037,4,8,f +12325,3039,15,2,f +12325,3039,4,8,f +12325,3039,47,2,f +12325,3040b,4,6,f +12325,3062b,0,4,f +12325,3622,14,4,f +12325,3622,15,4,f +12325,3622,4,4,f +12325,3622,2,2,f +12325,3622,1,4,f +12325,3622,0,2,f +12325,3660,14,4,f +12325,3660,15,2,f +12325,3665,1,2,f +12325,3665,14,4,f +12325,3710,1,2,f +12325,3710,4,2,f +12325,3794a,4,2,f +12325,6141,27,4,f +12325,6141,25,4,f +12325,6141,4,1,t +12325,6141,25,1,t +12325,6141,27,1,t +12325,6141,4,4,f +12326,2302,10,2,f +12326,23230,25,1,f +12326,3011,5,2,f +12326,31333,1,1,f +12326,3437,73,2,f +12326,3437,27,2,f +12326,3437,15,1,f +12326,3437,29,4,f +12326,4066,15,2,f +12326,40666,27,2,f +12326,40666,70,1,f +12326,61649,5,1,f +12326,6497,15,1,f +12326,6510,5,1,f +12326,6510,14,1,f +12326,89406,70,1,f +12326,89406,15,1,f +12326,90265,14,1,f +12326,98223,73,1,f +12326,98252,5,2,f +12328,132a,0,4,f +12328,242c01,4,4,f +12328,3001a,15,1,f +12328,3004,15,7,f +12328,3005,15,4,f +12328,3008,15,4,f +12328,3008p01,15,2,f +12328,3008p02,15,2,f +12328,3010,47,3,f +12328,3010,4,1,f +12328,3010,15,5,f +12328,3020,15,1,f +12328,3021,15,6,f +12328,3022,15,2,f +12328,3023,47,3,f +12328,3023,15,8,f +12328,3023,7,4,f +12328,3028,15,1,f +12328,3062a,1,1,f +12328,3063b,15,2,f +12328,3087bc01,15,2,f +12328,7049b,15,2,f +12328,710,15,1,f +12328,825p01,15,1,f +12328,825p02,15,1,f +12328,826p01,15,1,f +12328,826p02,15,1,f +12329,bb298,15,1,f +12330,3002,4,1,f +12330,3004,47,2,f +12330,3005,15,1,f +12330,3021,7,3,f +12330,3023,15,1,f +12330,3038,15,1,f +12330,3038,47,1,f +12330,3040b,15,2,f +12330,3460,7,6,f +12330,3460,15,2,f +12330,3461,7,1,f +12330,3462,15,1,f +12330,3480,7,1,f +12330,3481,15,1,f +12330,3622,15,3,f +12330,3622,47,2,f +12330,3623,15,1,f +12330,3660,4,2,f +12330,3665,4,2,f +12330,3666,15,1,f +12330,3795,15,1,f +12330,6626.1stk01,9999,1,t +12332,3956,7,25,f +12334,3020,484,2,f +12334,3021,19,2,f +12334,3023,19,1,t +12334,3040b,484,5,f +12334,3040b,320,1,f +12334,3623,19,2,f +12334,3623,320,1,f +12334,3660,70,2,f +12334,3710,484,1,f +12334,41769,70,1,f +12334,41770,70,1,f +12334,4286,19,1,f +12334,44302a,70,3,f +12334,44567a,19,3,f +12334,47905,19,1,f +12334,6141,0,2,f +12334,6141,0,1,t +12335,2412b,7,1,f +12335,2412b,0,1,f +12335,2419,0,1,f +12335,2458,7,1,f +12335,3004,7,2,f +12335,3021,0,1,f +12335,3023,4,2,f +12335,3039,7,1,f +12335,3048c,7,1,f +12335,3069bp54,7,1,f +12335,3460,0,2,f +12335,3626bp6v,1,1,f +12335,3660,7,1,f +12335,3665,7,1,f +12335,3959,7,1,f +12335,4286,7,1,f +12335,4589,42,2,f +12335,4595,0,1,f +12335,4740,42,1,f +12335,4859,7,2,f +12335,6118,0,3,f +12335,6141,42,3,f +12335,6141,4,2,f +12335,6249,4,1,f +12335,970c00pb021,0,1,f +12335,973px132c01,7,1,f +12337,87837,26,2,f +12337,87839,0,4,f +12337,87840,272,4,f +12337,87844,272,2,f +12337,88518,272,1,f +12337,88695,26,1,t +12337,88695,26,7,f +12337,89469,272,1,f +12338,10190,85,1,f +12338,11211,71,1,f +12338,11407pr0005,1,1,f +12338,11458,70,2,f +12338,11477,322,8,f +12338,11477,308,2,f +12338,11609,484,1,f +12338,11609,484,1,t +12338,11618,26,1,f +12338,11618,26,1,t +12338,11816pr0019,78,1,f +12338,13547,30,2,f +12338,13564,15,2,f +12338,13564,15,1,t +12338,13965,70,3,f +12338,14417,72,9,f +12338,14418,71,5,f +12338,14419,72,3,f +12338,14704,71,5,f +12338,14769pr1042,27,1,f +12338,15068,30,1,f +12338,15068,322,4,f +12338,15070,322,8,f +12338,15082,85,2,f +12338,15100,0,2,f +12338,15208,15,4,f +12338,15573,272,1,f +12338,15672,72,1,f +12338,15712,72,1,f +12338,15745,41,1,f +12338,18866,15,1,f +12338,19201pr0001,323,1,f +12338,20482,47,1,t +12338,20482,47,1,f +12338,2357,70,1,f +12338,23989pat0002,322,2,f +12338,2417,26,1,f +12338,24196pr0002,322,1,f +12338,24199,322,1,f +12338,2423,27,2,f +12338,2456,71,1,f +12338,25774,9999,1,f +12338,2654,30,4,f +12338,2654,47,1,f +12338,2736,71,1,f +12338,2780,0,2,f +12338,2780,0,1,t +12338,3001,71,2,f +12338,3002,27,3,f +12338,3004,70,4,f +12338,3010,322,2,f +12338,30153,52,3,f +12338,30153,45,2,f +12338,30162,297,1,f +12338,3020,70,2,f +12338,3021,322,1,f +12338,3023,30,5,f +12338,3023,322,2,f +12338,3023,70,2,f +12338,3024,30,2,f +12338,3024,30,1,t +12338,3033,19,1,f +12338,30357,2,1,f +12338,3039,41,4,f +12338,3039,47,2,f +12338,3045,71,2,f +12338,30565,322,2,f +12338,3062b,47,1,f +12338,3065,45,4,f +12338,3068b,272,1,f +12338,3068b,19,1,f +12338,3068bpr0291,19,1,f +12338,3069b,47,3,f +12338,32123b,71,1,t +12338,32123b,71,2,f +12338,33291,10,1,t +12338,33291,191,1,t +12338,33291,191,2,f +12338,33291,26,5,f +12338,33291,10,3,f +12338,33291,26,1,t +12338,3626c,42,1,f +12338,3660,322,1,f +12338,3678b,70,1,f +12338,3710,30,2,f +12338,3795,30,1,f +12338,3795,2,1,f +12338,3852b,191,1,f +12338,4081b,26,1,f +12338,4286,70,1,f +12338,4740,2,1,f +12338,4871,30,1,f +12338,50950,322,4,f +12338,54200,41,1,t +12338,54200,322,1,t +12338,54200,47,1,t +12338,54200,322,4,f +12338,54200,41,1,f +12338,54200,47,7,f +12338,60478,71,1,f +12338,6091,322,2,f +12338,6126b,41,1,f +12338,6141,85,1,t +12338,6141,85,5,f +12338,64225,322,1,f +12338,6541,72,2,f +12338,87083,72,1,f +12338,88072,0,1,f +12338,88289,322,1,f +12338,92280,71,1,f +12338,92456pr0089c01,78,1,f +12338,93095,70,1,f +12338,98138,27,1,t +12338,98138,27,2,f +12338,98138,33,1,t +12338,98138,33,1,f +12338,98138pr0032,33,1,t +12338,98138pr0032,33,1,f +12338,99781,71,2,f +12339,14226c21,0,3,f +12339,14226c41,0,4,f +12339,2335,1,6,f +12339,2335p30,15,1,f +12339,2339,15,2,f +12339,2357,0,2,f +12339,2357,1,4,f +12339,2419,0,1,f +12339,2420,0,6,f +12339,2431,14,4,f +12339,2431,0,5,f +12339,2431,7,2,f +12339,2452,0,3,f +12339,2458,15,2,f +12339,2458,4,2,f +12339,2465,0,1,f +12339,2489,6,2,f +12339,2526,6,1,f +12339,2527,4,3,f +12339,2528pb01,0,2,f +12339,2530,8,1,t +12339,2530,8,5,f +12339,2537,0,2,f +12339,2538b,0,2,f +12339,2539,8,2,f +12339,2540,0,8,f +12339,2541,6,2,f +12339,2542,4,2,f +12339,2543,4,1,f +12339,2543,1,1,f +12339,2543,0,2,f +12339,2544,0,1,f +12339,2544,6,1,f +12339,2546p01,4,1,f +12339,2547,8,1,f +12339,2548,8,1,f +12339,2550c01,6,1,f +12339,2551,6,1,f +12339,2555,0,4,f +12339,2557c04,4,1,f +12339,2559c04,4,1,f +12339,2560,4,2,f +12339,2561,6,2,f +12339,2562,6,4,f +12339,2584,7,1,f +12339,2585,0,1,f +12339,3001,7,6,f +12339,3002,4,1,f +12339,3003,1,3,f +12339,3003,0,3,f +12339,3003,4,2,f +12339,30033,8,2,f +12339,3004,4,5,f +12339,3004,0,16,f +12339,3004,1,8,f +12339,3004,14,1,f +12339,3004,15,5,f +12339,30041,0,1,f +12339,30042,0,1,f +12339,30043,0,8,f +12339,30044,14,2,f +12339,30046,15,2,f +12339,30047,0,1,f +12339,3005,7,2,f +12339,3005,1,6,f +12339,3005,15,7,f +12339,3005,0,13,f +12339,30055,0,2,f +12339,3008,0,3,f +12339,3008,15,2,f +12339,3009,0,7,f +12339,3010,15,2,f +12339,3010,0,2,f +12339,3020,0,8,f +12339,3020,2,2,f +12339,3021,4,1,f +12339,3021,7,2,f +12339,3021,0,2,f +12339,3021,14,1,f +12339,3022,14,2,f +12339,3022,1,2,f +12339,3022,0,5,f +12339,3022,15,1,f +12339,3023,15,10,f +12339,3023,0,22,f +12339,3023,7,3,f +12339,3023,14,4,f +12339,3023,2,4,f +12339,3024,15,7,f +12339,3024,14,2,f +12339,3024,0,7,f +12339,3024,7,4,f +12339,3029,7,1,f +12339,3031,15,1,f +12339,3031,14,1,f +12339,3034,7,1,f +12339,3034,0,2,f +12339,3034,15,2,f +12339,3036,7,1,f +12339,3038,0,2,f +12339,3039,1,1,f +12339,3039,0,2,f +12339,3039,14,1,f +12339,3040b,15,4,f +12339,3040b,0,3,f +12339,3062b,7,18,f +12339,3068b,7,1,f +12339,3068b,14,3,f +12339,3069b,1,2,f +12339,3069b,7,2,f +12339,3127,7,1,f +12339,3184,0,11,f +12339,32123b,7,2,f +12339,32123b,7,1,t +12339,3460,0,11,f +12339,3460,8,6,f +12339,3622,1,2,f +12339,3623,7,2,f +12339,3623,0,4,f +12339,3623,4,2,f +12339,3623,15,10,f +12339,3626b,0,1,f +12339,3626bp39,14,1,f +12339,3626bp46,14,1,f +12339,3626bp47,14,1,f +12339,3626bp48,14,1,f +12339,3626bpb0018,14,2,f +12339,3626bpx108,14,1,f +12339,3659,14,2,f +12339,3659,15,2,f +12339,3659,1,2,f +12339,3660,0,3,f +12339,3660,15,2,f +12339,3665,15,6,f +12339,3666,15,7,f +12339,3666,7,1,f +12339,3666,0,20,f +12339,3684,0,2,f +12339,3700,7,1,f +12339,3703,0,2,f +12339,3706,0,2,f +12339,3710,8,6,f +12339,3710,15,4,f +12339,3710,0,17,f +12339,3713,7,1,t +12339,3713,7,2,f +12339,3747b,0,2,f +12339,3794a,15,1,f +12339,3795,15,2,f +12339,3795,0,6,f +12339,3830,0,4,f +12339,3831,0,4,f +12339,3832,15,1,f +12339,3832,7,1,f +12339,3849,0,2,f +12339,3933,7,1,f +12339,3933,0,1,f +12339,3934,0,1,f +12339,3934,7,1,f +12339,3937,14,1,f +12339,3938,15,1,f +12339,3957a,0,1,f +12339,3957a,7,3,f +12339,3959,0,3,f +12339,4032a,6,1,f +12339,4085c,7,2,f +12339,4085c,15,2,f +12339,4085c,0,8,f +12339,4151a,0,1,f +12339,4162,14,6,f +12339,4175,0,4,f +12339,4275b,0,1,f +12339,4276b,0,1,f +12339,4282,7,1,f +12339,4286,0,4,f +12339,4286,15,2,f +12339,4287,0,4,f +12339,4460a,1,2,f +12339,4477,15,3,f +12339,4477,7,2,f +12339,4477,0,16,f +12339,4490,0,4,f +12339,4495a,15,1,f +12339,4495b,4,1,f +12339,4504,0,3,f +12339,4531,0,1,f +12339,4589,15,23,f +12339,4589,46,3,f +12339,4735,0,2,f +12339,4738a,6,1,f +12339,4739a,6,1,f +12339,4790,6,1,f +12339,518,8,3,f +12339,56823,0,1,f +12339,57503,334,2,f +12339,57504,334,2,f +12339,57505,334,2,f +12339,57506,334,2,f +12339,6019,0,2,f +12339,6057,6,2,f +12339,6060,15,6,f +12339,6067,0,2,f +12339,6091,14,4,f +12339,6091,15,8,f +12339,6104,14,1,f +12339,6108,15,1,f +12339,6111,0,1,f +12339,6112,0,1,f +12339,6141,15,1,t +12339,6141,15,12,f +12339,6541,14,4,f +12339,6636,0,2,f +12339,70001pb02,0,1,f +12339,71155,0,1,f +12339,970c00,1,1,f +12339,970c00,0,2,f +12339,970c00,7,2,f +12339,970c00,4,1,f +12339,970d01,0,1,f +12339,973c09,15,1,f +12339,973p30c01,14,2,f +12339,973p33c01,14,1,f +12339,973p36c01,0,1,f +12339,973p39c01,1,1,f +12339,973p3ac01,14,1,f +12339,973p3cc01,15,1,f +12339,sailbb11,15,1,f +12339,sailbb12,15,1,f +12339,sailbb13,15,1,f +12339,x376px4,0,1,f +12341,11214,72,1,f +12341,11272,148,2,f +12341,13564,15,2,f +12341,15976,15,2,f +12341,16770,41,4,f +12341,18587,71,1,f +12341,18588,41,1,f +12341,18651,0,4,f +12341,19049,179,1,f +12341,22961,71,2,f +12341,24014,71,3,f +12341,24122,148,1,f +12341,24162pat0001,297,1,f +12341,24187,41,1,f +12341,24189,148,1,f +12341,24190,0,1,f +12341,24191,179,4,f +12341,24193pr0002,15,1,f +12341,2780,0,13,f +12341,32039,71,2,f +12341,32062,4,8,f +12341,32072,0,1,f +12341,32073,71,1,f +12341,32123b,71,3,f +12341,32184,0,2,f +12341,32270,0,2,f +12341,32291,72,1,f +12341,3705,0,1,f +12341,41669,15,4,f +12341,41677,71,4,f +12341,4185,71,1,f +12341,42003,71,4,f +12341,4274,71,2,f +12341,4497,179,1,f +12341,4519,71,5,f +12341,59443,0,1,f +12341,59900,179,1,f +12341,6141,41,14,f +12341,64272,179,2,f +12341,64276,0,6,f +12341,64683,15,1,f +12341,6536,72,4,f +12341,6553,0,1,f +12341,6558,1,4,f +12341,6587,28,2,f +12341,74261,72,4,f +12341,87082,0,2,f +12341,87083,72,2,f +12341,87086,15,1,f +12341,87747,15,2,f +12341,90608,41,2,f +12341,90609,41,2,f +12341,90611,0,3,f +12341,90612,41,2,f +12341,90616,0,2,f +12341,90639,15,2,f +12341,90650,272,2,f +12341,90661,15,2,f +12341,92233,15,2,f +12341,92907,71,3,f +12341,93571,72,2,f +12341,93575,41,2,f +12341,98590,0,1,f +12342,12825,0,3,f +12342,14769,15,1,f +12342,2412b,15,3,f +12342,2419,72,6,f +12342,2420,15,2,f +12342,2420,0,1,f +12342,2450,0,2,f +12342,2540,71,2,f +12342,2877,72,4,f +12342,298c02,4,2,f +12342,3002,71,1,f +12342,3003,0,8,f +12342,3004,4,2,f +12342,3004,1,1,f +12342,3005,4,1,f +12342,3005,2,3,f +12342,3005,0,2,f +12342,3005,14,1,f +12342,30136,70,3,f +12342,30151a,25,1,f +12342,30165,4,1,f +12342,3020,71,4,f +12342,3020,70,1,f +12342,3021,0,2,f +12342,3022,15,1,f +12342,3022,0,2,f +12342,3022,19,1,f +12342,30229,72,1,f +12342,3023,72,2,f +12342,3023,14,2,f +12342,30238,0,1,f +12342,3024,71,1,f +12342,3024,2,1,f +12342,3031,19,5,f +12342,3031,2,6,f +12342,3031,71,7,f +12342,3031,1,6,f +12342,30367b,27,1,f +12342,30367b,4,1,f +12342,30367b,15,1,f +12342,3039,14,1,f +12342,3039,71,1,f +12342,3039,70,1,f +12342,3040b,14,1,f +12342,30414,1,2,f +12342,30414,71,3,f +12342,3048c,25,1,f +12342,30592,71,1,f +12342,3062b,71,11,f +12342,3065,40,7,f +12342,3069b,19,1,f +12342,3069b,1,2,f +12342,3069b,71,6,f +12342,3069b,15,1,f +12342,3070b,1,2,f +12342,3298,70,1,f +12342,33121,191,1,f +12342,33291,10,2,f +12342,33320,70,1,f +12342,3623,0,1,f +12342,3623,15,2,f +12342,3659,72,1,f +12342,3660,70,2,f +12342,3665,2,3,f +12342,3666,0,6,f +12342,3701,4,2,f +12342,3710,71,1,f +12342,3710,2,2,f +12342,3738,0,2,f +12342,3741,2,1,f +12342,3794b,14,5,f +12342,3795,71,9,f +12342,3832,0,1,f +12342,3941,4,2,f +12342,3941,46,1,f +12342,3941,15,3,f +12342,3941,47,1,f +12342,3957b,0,2,f +12342,3957b,70,2,f +12342,40234,71,1,f +12342,4032a,0,2,f +12342,4032a,4,2,f +12342,4070,4,1,f +12342,41769,14,1,f +12342,41770,14,1,f +12342,42446,70,1,f +12342,4274,71,1,f +12342,4286,2,1,f +12342,43722,71,1,f +12342,43722,4,1,f +12342,43723,4,1,f +12342,43723,71,1,f +12342,43898,4,1,f +12342,44676,15,1,f +12342,4495b,4,2,f +12342,4528,0,1,f +12342,4588,72,1,f +12342,4599b,0,3,f +12342,4733,72,2,f +12342,4740,4,1,f +12342,4740,14,2,f +12342,47457,1,1,f +12342,47905,0,3,f +12342,4865b,70,1,f +12342,49668,191,2,f +12342,51739,25,1,f +12342,52107,71,1,f +12342,53451,15,2,f +12342,54200,143,8,f +12342,54200,4,1,f +12342,54200,14,2,f +12342,54200,71,2,f +12342,54200,19,2,f +12342,54200,0,5,f +12342,54200,2,5,f +12342,59900,182,4,f +12342,59900,14,4,f +12342,59900,72,4,f +12342,59900,70,13,f +12342,59900,2,6,f +12342,59900,0,1,f +12342,59900,4,5,f +12342,60474,15,1,f +12342,61252,4,3,f +12342,6126b,41,1,f +12342,6126b,182,1,f +12342,6141,34,2,f +12342,6141,179,3,f +12342,6141,36,2,f +12342,6141,29,6,f +12342,6141,182,7,f +12342,6141,70,6,f +12342,6141,0,13,f +12342,6141,4,7,f +12342,6141,297,3,f +12342,6251,84,1,f +12342,63864,71,4,f +12342,63864,0,1,f +12342,63868,71,1,f +12342,6541,71,2,f +12342,6636,72,3,f +12342,6636,4,2,f +12342,6636,0,1,f +12342,73983,71,6,f +12342,85080,15,4,f +12342,85861,15,6,f +12342,85863,297,8,f +12342,85863pr0010,4,1,f +12342,85863pr0033,0,1,f +12342,85863pr0059,179,1,f +12342,85863pr0067,1,1,f +12342,85863pr0076,29,1,f +12342,85863pr0088,15,1,f +12342,85863pr0103,378,1,f +12342,85863pr0132,148,1,f +12342,85863pr0133,15,1,f +12342,85984,0,4,f +12342,86035,0,1,f +12342,87079,25,2,f +12342,87079,71,6,f +12342,87580,19,1,f +12342,87580,0,9,f +12342,92084,70,1,f +12342,92842,0,1,f +12342,98138,71,2,f +12342,98138,41,1,f +12342,99206,0,1,f +12348,2335,4,2,f +12348,2339,15,2,f +12348,2357,0,2,f +12348,2357,1,2,f +12348,2362a,47,2,f +12348,2412b,7,21,f +12348,2420,15,23,f +12348,2420,7,9,f +12348,2420,0,2,f +12348,2431,7,2,f +12348,2431,4,2,f +12348,2432,7,2,f +12348,2436,7,2,f +12348,2444,0,4,f +12348,2444,7,2,f +12348,2445,15,1,f +12348,2445,0,1,f +12348,2445,1,1,f +12348,2454a,7,1,f +12348,2456,0,1,f +12348,2458,7,2,f +12348,2540,7,3,f +12348,2540,15,3,f +12348,2555,15,4,f +12348,2569,7,1,f +12348,2714a,7,2,f +12348,2730,0,2,f +12348,2780,0,8,f +12348,2815,0,1,f +12348,298c03,7,3,f +12348,3002,0,1,f +12348,3003,1,1,f +12348,3003,7,2,f +12348,3004,4,7,f +12348,3004,15,3,f +12348,3004,1,6,f +12348,3004,0,5,f +12348,3004,7,1,f +12348,3005,15,14,f +12348,3005,7,2,f +12348,30073,15,1,f +12348,30074,15,1,f +12348,3009,15,1,f +12348,3009,0,1,f +12348,3010,15,3,f +12348,3020,15,4,f +12348,3020,7,3,f +12348,3020,0,2,f +12348,3020,4,1,f +12348,3021,7,3,f +12348,3021,15,10,f +12348,3021,4,7,f +12348,3022,1,7,f +12348,3022,4,2,f +12348,3022,15,9,f +12348,3022,0,4,f +12348,3022,7,4,f +12348,3023,15,19,f +12348,3023,4,2,f +12348,3023,14,2,f +12348,3023,0,16,f +12348,3023,7,12,f +12348,3023,1,3,f +12348,3024,7,2,f +12348,3024,4,2,f +12348,3024,15,12,f +12348,3031,4,2,f +12348,3032,7,1,f +12348,3032,15,2,f +12348,3034,15,2,f +12348,3034,0,1,f +12348,3039pc4,0,1,f +12348,3040b,0,2,f +12348,3040b,1,2,f +12348,3040b,15,2,f +12348,3062b,7,4,f +12348,3063b,4,10,f +12348,3063b,15,12,f +12348,3068b,7,4,f +12348,3068b,4,4,f +12348,3069b,15,2,f +12348,3069b,4,4,f +12348,3070b,7,2,f +12348,32002,8,4,f +12348,32003,0,4,f +12348,32004b,7,4,f +12348,32013,7,8,f +12348,32062,0,2,f +12348,32065,14,2,f +12348,32068,7,2,f +12348,32069,0,2,f +12348,32123b,7,6,f +12348,3298,4,2,f +12348,3460,15,4,f +12348,3460,7,6,f +12348,3460,0,1,f +12348,3622,0,3,f +12348,3623,0,2,f +12348,3623,1,4,f +12348,3623,7,4,f +12348,3623,15,14,f +12348,3647,7,1,f +12348,3660,4,4,f +12348,3660,0,3,f +12348,3665,7,1,f +12348,3666,0,2,f +12348,3666,7,4,f +12348,3666,4,1,f +12348,3666,15,7,f +12348,3666,1,1,f +12348,3700,1,2,f +12348,3700,15,10,f +12348,3700,4,2,f +12348,3700,0,1,f +12348,3701,15,2,f +12348,3701,1,2,f +12348,3701,7,2,f +12348,3701,0,4,f +12348,3703,0,2,f +12348,3705,0,4,f +12348,3706,0,1,f +12348,3707,0,3,f +12348,3709,15,1,f +12348,3710,0,4,f +12348,3710,1,4,f +12348,3710,7,3,f +12348,3710,15,6,f +12348,3713,7,8,f +12348,3738,1,1,f +12348,3738,7,1,f +12348,3747b,15,1,f +12348,3747b,0,3,f +12348,3749,7,5,f +12348,3795,15,3,f +12348,3832,15,3,f +12348,3832,4,1,f +12348,3832,0,5,f +12348,3849,7,2,f +12348,3937,0,1,f +12348,3937,7,2,f +12348,3938,7,1,f +12348,3938,1,2,f +12348,3939,15,1,f +12348,3941,15,1,f +12348,3941,7,10,f +12348,3957a,7,3,f +12348,4032a,7,4,f +12348,4070,15,4,f +12348,4081b,15,4,f +12348,4081b,7,7,f +12348,4085c,15,6,f +12348,4085c,7,4,f +12348,4150,7,1,f +12348,4175,7,11,f +12348,4185,7,1,f +12348,4215b,4,2,f +12348,4274,7,14,f +12348,4275b,4,4,f +12348,4286,15,4,f +12348,4287,15,2,f +12348,4287,0,8,f +12348,4477,4,1,f +12348,4477,7,4,f +12348,4477,0,1,f +12348,4477,15,3,f +12348,4531,4,4,f +12348,4599a,1,2,f +12348,4599a,7,1,f +12348,4740,7,2,f +12348,4854,15,4,f +12348,4864b,4,2,f +12348,4864b,15,4,f +12348,4864b,47,4,f +12348,4865a,0,2,f +12348,6003,15,2,f +12348,6005,15,4,f +12348,6019,15,2,f +12348,6019,7,6,f +12348,6081,15,4,f +12348,6091,15,14,f +12348,6091,1,2,f +12348,6091,7,9,f +12348,6111,7,2,f +12348,6141,7,17,f +12348,6141,15,2,f +12348,6141,0,4,f +12348,6141,46,16,f +12348,6141,36,4,f +12348,6179,15,4,f +12348,6180,15,2,f +12348,6180,4,2,f +12348,6231,7,2,f +12348,6267,47,1,f +12348,6558,0,6,f +12348,6587,8,2,f +12348,6589,7,2,f +12348,6592,7,1,f +12348,6636,15,4,f +12348,6636,7,1,f +12348,71075,383,2,f +12348,71076,383,2,f +12348,71128,383,4,f +12348,71972,383,1,f +12348,78c02,0,2,f +12348,78c06,0,2,f +12349,298c02,14,1,f +12349,298c02,14,1,t +12349,3023,0,2,f +12349,3069b,14,1,f +12349,45918,0,2,f +12349,6019,14,2,f +12352,3068b,15,20,f +12352,3069b,15,20,f +12352,3070b,15,10,f +12354,10314,26,1,f +12354,11211,15,1,f +12354,11602pr0001a,0,1,f +12354,11610,5,1,f +12354,11816pr0006,78,1,f +12354,11816pr0011,78,1,f +12354,13459,15,1,f +12354,13770,297,1,f +12354,13965,19,2,f +12354,14718,15,1,f +12354,14769,27,1,f +12354,14769,15,1,f +12354,15068,15,1,f +12354,15210,15,1,f +12354,15396,323,1,f +12354,15533,84,2,f +12354,15573,19,2,f +12354,15712,15,1,f +12354,18674,70,1,f +12354,22667,26,3,f +12354,2343,47,2,f +12354,2357,19,7,f +12354,2420,30,4,f +12354,2423,27,1,f +12354,2431,2,1,f +12354,2432,71,1,f +12354,2447,47,1,f +12354,2450,85,1,f +12354,2453b,19,3,f +12354,2454a,19,2,f +12354,2462,19,1,f +12354,3001,2,1,f +12354,3001,15,1,f +12354,3002,70,1,f +12354,3003,2,1,f +12354,3003,70,1,f +12354,3003,15,1,f +12354,3004,30,1,f +12354,3004,2,3,f +12354,3004,19,9,f +12354,3004,15,2,f +12354,3005,84,2,f +12354,3005,19,6,f +12354,3005,30,11,f +12354,3005,1,1,f +12354,3005pr0006,73,2,f +12354,3005pr17,27,2,f +12354,3008,19,3,f +12354,3009,19,1,f +12354,3010,19,1,f +12354,3010,30,10,f +12354,3010,15,2,f +12354,30134,70,1,f +12354,30150,84,2,f +12354,30171,26,1,f +12354,3020,2,2,f +12354,3020,19,1,f +12354,3020,15,1,f +12354,3021,15,1,f +12354,3021,30,1,f +12354,3022,2,1,f +12354,3023,2,2,f +12354,3023,30,7,f +12354,30236,19,1,f +12354,3032,19,1,f +12354,3033,73,1,f +12354,3034,15,1,f +12354,30350a,0,1,f +12354,3037,30,6,f +12354,3039,30,4,f +12354,3062b,36,2,f +12354,3062b,27,1,f +12354,3062b,46,3,f +12354,3062b,15,1,f +12354,3068b,29,2,f +12354,3068b,5,2,f +12354,3068bpr0224,15,1,f +12354,3069b,15,4,f +12354,3069bpr0100,2,1,f +12354,3185,15,4,f +12354,32028,72,1,f +12354,3245b,19,1,f +12354,33051,4,2,f +12354,33085,14,3,f +12354,33172,25,2,f +12354,33183,10,2,f +12354,33291,5,16,f +12354,33291,10,2,f +12354,33303,15,1,f +12354,3460,15,1,f +12354,3464,15,2,f +12354,3622,15,1,f +12354,3622,19,3,f +12354,3622,30,4,f +12354,3623,26,2,f +12354,3623,2,1,f +12354,3626cpr1296a,14,2,f +12354,3633,15,2,f +12354,3660,71,5,f +12354,3666,15,5,f +12354,3666,2,3,f +12354,3710,70,1,f +12354,3710,15,2,f +12354,3710,26,3,f +12354,3710,19,2,f +12354,3741,2,2,f +12354,3742,14,3,f +12354,3742,4,3,f +12354,3747a,15,1,f +12354,3794b,15,2,f +12354,3795,2,1,f +12354,3795,15,1,f +12354,3795,19,1,f +12354,3937,0,2,f +12354,4032a,15,3,f +12354,4282,15,1,f +12354,4342,84,1,f +12354,4345b,15,1,f +12354,4346,47,1,f +12354,4477,15,1,f +12354,4523,70,1,f +12354,4528,0,1,f +12354,4533,41,1,f +12354,4599b,71,1,f +12354,4740,15,1,f +12354,48336,15,2,f +12354,4865a,2,4,f +12354,54200,15,2,f +12354,59349,19,2,f +12354,59349,47,2,f +12354,59895,0,2,f +12354,60032,15,2,f +12354,6020,71,1,f +12354,60470a,15,1,f +12354,60583b,15,2,f +12354,60594,15,1,f +12354,60596,15,2,f +12354,60608,15,2,f +12354,60616a,47,1,f +12354,60623,15,1,f +12354,60800a,5,2,f +12354,60808,19,2,f +12354,6091,5,6,f +12354,6091,2,6,f +12354,6134,0,2,f +12354,6141,27,11,f +12354,6141,70,1,f +12354,6141,71,2,f +12354,6141,25,3,f +12354,61780,70,1,f +12354,6231,70,16,f +12354,6231,1,1,f +12354,6231,29,2,f +12354,6256,29,2,f +12354,62698,0,1,f +12354,63864,15,3,f +12354,6636,15,2,f +12354,85984,29,1,f +12354,85984,15,1,f +12354,87079,2,3,f +12354,87079,30,1,f +12354,87079,26,1,f +12354,87421,19,1,f +12354,91405,212,1,f +12354,92255,0,1,f +12354,92257,320,1,f +12354,92410,15,1,f +12354,92438,212,1,f +12354,92456pr0013c01,78,1,f +12354,92456pr0042c01,78,1,f +12354,92593,15,3,f +12354,92817pr0003c01,26,1,f +12354,92819pr0002a,27,1,f +12354,93092,30,1,f +12354,93273,30,1,f +12354,95344,297,1,f +12354,98138,46,1,f +12354,98138,15,2,f +12354,98138pr0017,29,2,f +12354,98138pr0018,84,2,f +12354,98283,84,2,f +12354,98397,71,1,f +12354,98549,15,1,f +12354,99780,15,2,f +12356,2436,0,1,f +12356,2446,0,1,f +12356,2447,34,1,f +12356,2526,4,1,f +12356,3022,7,1,f +12356,3023,0,1,f +12356,3298pb010,0,1,f +12356,3479,0,1,f +12356,3623,4,2,f +12356,3626bp69,14,1,f +12356,3838,0,1,f +12356,3937,0,1,f +12356,3938,0,1,f +12356,4229,0,2,f +12356,4349,15,1,f +12356,4855,0,1,f +12356,4856a,0,1,f +12356,6061,7,1,f +12356,6070,34,1,f +12356,6104,7,1,f +12356,970x001,2,1,f +12356,973pb0081c01,15,1,f +12358,2431,4,2,f +12358,2454a,1,3,f +12358,2921,0,2,f +12358,3001,7,3,f +12358,3003,7,3,f +12358,3004,1,2,f +12358,3007,1,3,f +12358,30162,8,1,f +12358,30180,7,3,f +12358,3022,0,3,f +12358,3039,15,3,f +12358,3069b,4,2,f +12358,3298,1,3,f +12358,3622,1,2,f +12358,3626bp44,14,1,f +12358,3626bpr0001,14,1,f +12358,3626bpr0098,14,1,f +12358,3794a,1,1,f +12358,3795,7,3,f +12358,3867,2,1,f +12358,3957a,15,3,f +12358,3963,0,1,f +12358,4079,1,4,f +12358,4079,14,4,f +12358,4282,15,3,f +12358,4349,7,1,f +12358,4476b,0,3,f +12358,4485,2,1,f +12358,4485,0,1,f +12358,4495b,14,1,f +12358,4495b,2,2,f +12358,4510,0,2,f +12358,4515,15,2,f +12358,6093,6,1,f +12358,72824p01,15,1,f +12358,72826,89,1,f +12358,970c00,6,1,f +12358,970c00,15,1,f +12358,970c00,0,1,f +12358,973c02,4,1,f +12358,973p28c01,0,1,f +12358,973pb0365c01,2,1,f +12359,10p05,2,1,f +12359,3001a,47,1,f +12359,3003,1,1,f +12359,3003,0,1,f +12359,3004,1,36,f +12359,3004,0,3,f +12359,3005,1,2,f +12359,3005,15,5,f +12359,3008,1,12,f +12359,3009,1,7,f +12359,3010,1,2,f +12359,3010p31,0,2,f +12359,3010pb036u,14,1,f +12359,3020,1,2,f +12359,3020,14,1,f +12359,3021,14,2,f +12359,3023,14,3,f +12359,3023,1,2,f +12359,3034,1,2,f +12359,3035,0,1,f +12359,3037,1,2,f +12359,3039,1,2,f +12359,3040a,0,2,f +12359,3068a,7,32,f +12359,3068a,14,2,f +12359,3068a,4,1,f +12359,3081cc01,4,4,f +12359,3137c01,0,1,f +12359,3137c02,0,2,f +12359,3139,0,2,f +12359,3297,4,14,f +12359,3298,4,8,f +12359,3299,4,4,f +12359,3300,4,1,f +12359,3324c01,4,1,f +12359,630,14,1,f +12359,7b,0,4,f +12361,11090,0,2,f +12361,11211,4,2,f +12361,11305,297,2,f +12361,11477,0,14,f +12361,12825,71,2,f +12361,12825,320,4,f +12361,12825,297,4,f +12361,13547,0,2,f +12361,13965,70,6,f +12361,14395,0,2,f +12361,14395,72,2,f +12361,14716,4,6,f +12361,14769,297,2,f +12361,15064,297,4,f +12361,15070,15,6,f +12361,15207,71,2,f +12361,15207,15,1,f +12361,15303,36,2,f +12361,15362,297,3,f +12361,15400,72,1,f +12361,15406,0,1,f +12361,15490,297,1,f +12361,15619,15,1,f +12361,15619,2,1,f +12361,15619,1,1,f +12361,15621,41,1,f +12361,15621,46,1,f +12361,15706,0,10,f +12361,15744,297,2,f +12361,15827,0,2,f +12361,17979,4,2,f +12361,2335,0,3,f +12361,2357,0,6,f +12361,2357,4,8,f +12361,2357,320,2,f +12361,2362b,47,1,f +12361,2412b,71,4,f +12361,2412b,0,2,f +12361,2412b,297,1,f +12361,2412b,36,7,f +12361,2417,320,2,f +12361,2417,288,7,f +12361,2419,72,2,f +12361,2419,288,2,f +12361,2420,72,4,f +12361,2423,320,2,f +12361,2431,71,4,f +12361,2431,288,4,f +12361,2431,72,8,f +12361,2432,71,2,f +12361,2445,0,1,f +12361,2449,72,4,f +12361,2453a,4,2,f +12361,2454a,71,2,f +12361,2465,72,2,f +12361,2476,71,12,f +12361,2489,70,1,f +12361,2654,0,3,f +12361,2654,71,4,f +12361,2654,4,1,f +12361,2780,0,6,f +12361,3001,70,1,f +12361,3001,71,1,f +12361,3002,72,3,f +12361,3002,71,2,f +12361,3003,70,2,f +12361,3003,4,2,f +12361,3003,71,1,f +12361,3003,0,1,f +12361,3004,71,3,f +12361,3004,72,9,f +12361,3004,4,4,f +12361,3004,0,3,f +12361,3005,72,4,f +12361,3005,4,6,f +12361,3005,71,9,f +12361,3005,288,2,f +12361,3006,71,3,f +12361,3007,71,5,f +12361,3009,72,4,f +12361,3009,4,11,f +12361,3010,72,5,f +12361,3010,71,3,f +12361,3010,4,5,f +12361,3010,288,2,f +12361,30150,70,2,f +12361,30173a,179,11,f +12361,30176,2,4,f +12361,30192,72,1,f +12361,3020,288,6,f +12361,3020,72,1,f +12361,3020,320,2,f +12361,3020,0,2,f +12361,3020,15,1,f +12361,3021,4,2,f +12361,3022,0,12,f +12361,3022,72,2,f +12361,30229,72,1,f +12361,3023,288,4,f +12361,3023,19,3,f +12361,3023,4,10,f +12361,3023,0,12,f +12361,3023,36,14,f +12361,3023,71,12,f +12361,3023,72,2,f +12361,30237b,71,2,f +12361,3024,0,10,f +12361,3024,4,4,f +12361,3027,0,8,f +12361,3028,0,2,f +12361,3029,0,1,f +12361,3033,288,1,f +12361,3033,72,2,f +12361,3034,0,4,f +12361,3035,288,6,f +12361,30374,70,1,f +12361,30374,297,1,f +12361,30374,0,2,f +12361,3039,72,4,f +12361,3039,4,2,f +12361,3039pr0002,15,1,f +12361,3039pr0005,15,1,f +12361,3040b,72,10,f +12361,3040b,288,12,f +12361,3040b,4,2,f +12361,3048c,297,7,f +12361,30503,72,2,f +12361,30552,0,4,f +12361,30608,19,1,f +12361,3062b,4,8,f +12361,3068b,0,9,f +12361,3068b,71,1,f +12361,3068b,70,1,f +12361,3068b,288,12,f +12361,3069b,72,4,f +12361,3069b,0,1,f +12361,3069b,15,1,f +12361,3069b,70,1,f +12361,3176,72,2,f +12361,32013,15,2,f +12361,32028,0,4,f +12361,32034,15,1,f +12361,32039,0,2,f +12361,32054,4,2,f +12361,32062,4,6,f +12361,32064b,71,4,f +12361,32064b,0,6,f +12361,32073,71,2,f +12361,32123b,14,2,f +12361,32316,72,2,f +12361,3245c,4,12,f +12361,32474,4,2,f +12361,32524,0,2,f +12361,32526,71,2,f +12361,32556,19,2,f +12361,3298,71,2,f +12361,33078,4,2,f +12361,33299a,71,4,f +12361,3460,0,4,f +12361,3622,4,2,f +12361,3622,70,4,f +12361,3622,71,3,f +12361,3626c,15,2,f +12361,3626cpr0747,14,1,f +12361,3626cpr1282,0,3,f +12361,3626cpr1366,14,1,f +12361,3626cpr1367,14,1,f +12361,3626cpr1431,0,1,f +12361,3626cpr1580,14,1,f +12361,3633,297,8,f +12361,3660,71,2,f +12361,3660,4,8,f +12361,3660,0,2,f +12361,3665,72,8,f +12361,3665,0,4,f +12361,3666,71,2,f +12361,3666,288,6,f +12361,3678bpr0045,0,1,f +12361,3679,71,5,f +12361,3680,15,5,f +12361,37,297,1,f +12361,3700,71,6,f +12361,3700,4,11,f +12361,3705,0,2,f +12361,3707,0,1,f +12361,3709,71,1,f +12361,3710,4,4,f +12361,3710,71,3,f +12361,3710,0,4,f +12361,3713,4,5,f +12361,3738,71,1,f +12361,3794b,4,1,f +12361,3794b,0,2,f +12361,3795,71,6,f +12361,3795,4,1,f +12361,3795,0,6,f +12361,3894,71,2,f +12361,3941,71,8,f +12361,3941,4,36,f +12361,3941,72,2,f +12361,3941,70,6,f +12361,4006,0,1,f +12361,4032a,70,1,f +12361,4032a,0,1,f +12361,4070,15,4,f +12361,4079,70,1,f +12361,4081b,0,7,f +12361,4081b,4,2,f +12361,41535,297,2,f +12361,4162,4,4,f +12361,42610,71,4,f +12361,4274,1,4,f +12361,4282,72,2,f +12361,4287,71,4,f +12361,4287,0,2,f +12361,4287,4,2,f +12361,4287,288,2,f +12361,43093,1,5,f +12361,4345b,71,1,f +12361,4346,71,1,f +12361,43888,4,6,f +12361,43898,15,1,f +12361,44302a,71,1,f +12361,44358,70,2,f +12361,44567a,72,1,f +12361,44728,72,1,f +12361,4477,4,2,f +12361,4495b,297,2,f +12361,4519,71,3,f +12361,4522,0,1,f +12361,4533,15,1,f +12361,45590,0,1,f +12361,4738a,70,1,f +12361,4739a,70,1,f +12361,4740,0,4,f +12361,47455,0,3,f +12361,47457,4,1,f +12361,47458,4,1,f +12361,476,0,1,f +12361,48169,72,3,f +12361,48171,72,3,f +12361,48336,297,2,f +12361,48336,71,1,f +12361,48493,0,1,f +12361,48729a,0,6,f +12361,50304,288,3,f +12361,50304,0,3,f +12361,50305,288,3,f +12361,50305,0,3,f +12361,52107,0,1,f +12361,53451,297,4,f +12361,53454,36,2,f +12361,54200,297,4,f +12361,54200,4,4,f +12361,54383,288,1,f +12361,54384,288,1,f +12361,55981,71,1,f +12361,56823c50,0,1,f +12361,57028c01,71,1,f +12361,57796,72,1,f +12361,57895pr0005,47,4,f +12361,59426,72,3,f +12361,59443,0,4,f +12361,59900,15,2,f +12361,59900,70,2,f +12361,59900,297,3,f +12361,60471,0,3,f +12361,60471,71,1,f +12361,60474,320,2,f +12361,60475a,72,4,f +12361,60477,0,2,f +12361,60477,4,6,f +12361,60478,0,14,f +12361,60479,0,2,f +12361,60479,4,1,f +12361,60481,4,2,f +12361,60481,70,2,f +12361,60583a,0,4,f +12361,60594,72,2,f +12361,60596,288,4,f +12361,60599,4,2,f +12361,60614,72,4,f +12361,60621,71,2,f +12361,6082,72,2,f +12361,60897,72,4,f +12361,6111,4,2,f +12361,6112,4,3,f +12361,6117,297,2,f +12361,61183,19,1,f +12361,61184,71,2,f +12361,6126b,57,7,f +12361,6141,70,6,f +12361,6141,41,2,f +12361,6141,36,6,f +12361,6141,297,21,f +12361,6141,0,1,f +12361,61780,70,1,f +12361,6231,71,2,f +12361,6232,72,2,f +12361,62462,0,1,f +12361,62810,484,1,f +12361,63864,4,4,f +12361,63864,71,6,f +12361,63868,72,4,f +12361,63965,70,1,f +12361,63965,0,2,f +12361,64393,15,1,f +12361,64567,297,1,f +12361,64567,71,1,f +12361,64644,308,1,f +12361,64681,15,1,f +12361,6541,4,4,f +12361,6558,1,4,f +12361,6587,28,2,f +12361,85975,297,6,f +12361,85984,4,4,f +12361,87079,15,1,f +12361,87083,72,2,f +12361,87087,0,4,f +12361,87087,4,6,f +12361,87580,71,1,f +12361,87601,70,2,f +12361,87747,297,2,f +12361,88072,0,4,f +12361,89201,0,1,f +12361,90194,320,1,f +12361,90194,288,1,f +12361,91988,72,2,f +12361,92099,288,2,f +12361,92107,288,2,f +12361,92220,4,2,f +12361,92280,71,4,f +12361,92338,297,1,f +12361,92410,71,1,f +12361,92438,72,2,f +12361,92690,71,1,f +12361,92747,41,1,f +12361,93059,297,1,f +12361,93273,0,2,f +12361,93273,4,9,f +12361,93606,0,3,f +12361,93606,4,1,f +12361,95228,34,1,f +12361,95228,47,1,f +12361,95344,297,1,f +12361,96874,25,1,t +12361,970c00,15,1,f +12361,970c00,0,2,f +12361,970c00,1,1,f +12361,970c00,2,1,f +12361,970c00pr0603,0,2,f +12361,970c00pr0672,4,1,f +12361,973pr2474c01,1,1,f +12361,973pr2578c01,0,2,f +12361,973pr2579c01,0,1,f +12361,973pr2681c01,15,1,f +12361,973pr2682c01,2,1,f +12361,973pr2683c01,0,1,f +12361,973pr2684c01,4,1,f +12361,98128,0,1,f +12361,98129,4,1,f +12361,98132,179,4,f +12361,98137,297,8,f +12361,98138,297,1,f +12361,98138pr0014,297,1,f +12361,98139,179,2,f +12361,98139,297,5,f +12361,98141,179,2,f +12361,98141,297,2,f +12361,98285,0,2,f +12361,98286,71,12,f +12361,98560,72,2,f +12361,98560,4,1,f +12361,99206,4,2,f +12361,99206,0,1,f +12361,99207,4,1,f +12361,99207,71,4,f +12363,10b,2,1,f +12363,15,0,2,f +12363,15,4,2,f +12363,17,0,2,f +12363,17,4,2,f +12363,21,47,2,f +12363,242c01,4,4,f +12363,3001a,1,4,f +12363,3001a,14,2,f +12363,3002a,1,4,f +12363,3002a,14,2,f +12363,3003,14,2,f +12363,3003,1,4,f +12363,3004,47,2,f +12363,3004,1,24,f +12363,3004,14,4,f +12363,3004,0,2,f +12363,3005,1,14,f +12363,3005,14,4,f +12363,3006,1,2,f +12363,3007,1,2,f +12363,3008,14,4,f +12363,3008,1,14,f +12363,3009,14,4,f +12363,3009,1,15,f +12363,3009p01,14,1,f +12363,3009p01,1,1,f +12363,3010,1,12,f +12363,3010,14,4,f +12363,3010,47,2,f +12363,3010pb035e,1,1,f +12363,3020,1,6,f +12363,3020,4,1,f +12363,3020,14,4,f +12363,3021,14,2,f +12363,3021,1,4,f +12363,3022,14,2,f +12363,3022,1,2,f +12363,3023,14,6,f +12363,3023,1,6,f +12363,3024,1,1,f +12363,3024,14,2,f +12363,3029,1,2,f +12363,3030,1,2,f +12363,3031,14,1,f +12363,3031,1,1,f +12363,3032,1,1,f +12363,3032,14,1,f +12363,3034,14,2,f +12363,3034,1,4,f +12363,3034,4,2,f +12363,3035,1,2,f +12363,3035,14,2,f +12363,3036,1,1,f +12363,3037,4,14,f +12363,3037,47,2,f +12363,3038,4,4,f +12363,3039,1,6,f +12363,3039,4,8,f +12363,3039,47,2,f +12363,3039,14,6,f +12363,3040a,1,2,f +12363,3040a,4,2,f +12363,3041,4,4,f +12363,3042,4,2,f +12363,3043,4,1,f +12363,3044a,4,1,f +12363,3045,4,4,f +12363,3046a,4,4,f +12363,3046a,1,2,f +12363,3048a,4,2,f +12363,3049b,4,1,f +12363,3062a,1,2,f +12363,3081cc01,4,8,f +12363,3127b,4,1,f +12363,3137c01,0,4,f +12363,3139,0,3,f +12363,3145,14,2,f +12363,3149c01,4,1,f +12363,3176,4,1,f +12363,3183a,14,1,f +12363,3183a,1,1,f +12363,3184,14,1,f +12363,3184,1,1,f +12363,3228a,1,4,f +12363,3317,14,1,f +12363,3317,1,1,f +12363,3324c01,4,2,f +12363,3403c01,0,1,f +12363,3433,14,1,f +12363,3436,14,1,f +12363,3455,1,4,f +12363,3460,7,4,f +12363,3460,4,2,f +12363,3461,7,1,f +12363,3462,14,1,f +12363,3464,4,3,f +12363,3475a,14,2,f +12363,3480,7,2,f +12363,3481,14,2,f +12363,3483,0,4,f +12363,3491,4,1,f +12363,3492c01,14,1,f +12363,3579,1,2,f +12363,3581,1,4,f +12363,3582,14,4,f +12363,3624,0,2,f +12363,3624,4,2,f +12363,3626a,14,4,f +12363,3633,14,4,f +12363,3634,0,4,f +12363,3641,0,8,f +12363,3660,14,6,f +12363,3660,1,10,f +12363,453cc01,4,2,f +12363,56823,0,1,f +12363,586c01,14,1,f +12363,7039,4,4,f +12363,7049b,0,4,f +12363,7930,4,2,f +12363,8,1,3,f +12363,828,4,1,f +12365,bb273,0,1,f +12367,2460,15,1,f +12367,3003,0,3,f +12367,3009,0,3,f +12367,3010,0,1,f +12367,30145,7,1,f +12367,3022,2,1,f +12367,30261,14,2,f +12367,3036,2,1,f +12367,30488,7,1,f +12367,30488c01,0,1,f +12367,30492,2,1,f +12367,30493,0,1,f +12367,30501,2,1,f +12367,30502,47,1,f +12367,3297,0,1,f +12367,3626bp05,14,2,f +12367,3626bpr0001,14,1,f +12367,3626bpr0378,14,2,f +12367,3626bpsd,14,1,f +12367,3832,2,1,f +12367,3840,14,3,f +12367,3957a,15,4,f +12367,4485,0,1,f +12367,4495a,1,2,f +12367,4530,19,1,f +12367,4589,15,3,f +12367,4733,7,1,f +12367,4740,15,3,f +12367,6093,6,2,f +12367,6093,19,1,f +12367,6093,0,2,f +12367,6141,4,3,f +12367,6141,4,1,t +12367,72824p01,15,2,f +12367,970c00,4,6,f +12367,973c06,1,1,f +12367,973c07,1,5,f +12368,2335,14,1,f +12368,2540,14,2,f +12368,3001,28,1,f +12368,3002,19,2,f +12368,3005,19,3,f +12368,3023,47,2,f +12368,30357,19,1,f +12368,3065,47,1,f +12368,33121,191,1,f +12368,3626cpr0891,14,1,f +12368,3666,19,2,f +12368,3710,19,2,f +12368,3901,70,1,f +12368,3957b,15,1,f +12368,3958,28,1,f +12368,3960p01,15,1,f +12368,4175,14,1,f +12368,4490,19,1,f +12368,4495b,4,1,f +12368,4589,19,3,f +12368,54200,19,4,f +12368,6141,41,1,f +12368,6141,14,2,f +12368,95343,4,1,f +12368,95344,297,1,f +12368,970c00,1,1,f +12368,973pr1517c01,73,1,f +12369,3001,14,3,f +12369,3001,1,1,f +12369,3002,1,2,f +12369,3003,14,2,f +12369,3003,0,1,f +12369,3004,14,5,f +12369,3004,0,2,f +12369,3004,1,3,f +12369,3005pe1,14,2,f +12369,3010,14,2,f +12369,3020,4,1,f +12369,3021,4,2,f +12369,3028,2,1,f +12369,3039,4,2,f +12369,3298p12,4,2,f +12369,33303,15,1,f +12369,3660,1,1,f +12369,3665,1,2,f +12369,4132,4,1,f +12369,4133,15,1,f +12369,4589,34,2,f +12369,4727,2,1,f +12369,4728,1,1,f +12369,600,15,1,f +12369,6235,4,1,f +12369,cre001,9999,1,f +12371,2444,71,1,f +12371,2458,71,4,f +12371,2540,4,7,f +12371,2654,0,2,f +12371,2780,0,2,t +12371,2780,0,3,f +12371,298c02,4,1,f +12371,298c02,4,1,t +12371,30000,1,1,f +12371,30088,0,2,f +12371,3020,4,4,f +12371,3020,0,1,f +12371,3021,4,1,f +12371,3022,0,5,f +12371,3023,0,7,f +12371,3023,27,8,f +12371,3031,0,1,f +12371,3036,0,1,f +12371,30414,4,2,f +12371,3048c,0,6,f +12371,3049b,0,2,f +12371,30602,4,2,f +12371,3062b,27,2,f +12371,32015,4,2,f +12371,32062,4,4,f +12371,32064b,0,3,f +12371,32192,0,4,f +12371,32529,0,2,f +12371,3626bpr0643,14,1,f +12371,3660,0,1,f +12371,3700,4,3,f +12371,3794b,71,1,f +12371,3795,4,1,f +12371,40378,27,1,f +12371,40379,27,7,f +12371,40395,0,1,f +12371,4081b,0,12,f +12371,4085c,4,8,f +12371,41531,4,1,f +12371,41747,4,1,f +12371,41748,4,1,f +12371,42021,27,1,f +12371,42446,72,4,f +12371,4274,71,1,t +12371,4274,71,4,f +12371,44728,72,2,f +12371,4519,71,2,f +12371,46667,0,1,f +12371,47755,0,1,f +12371,48336,0,2,f +12371,50967,4,2,f +12371,53451,15,6,f +12371,53451,15,1,t +12371,53451,27,1,t +12371,53451,27,4,f +12371,53989,0,8,f +12371,54200,0,2,f +12371,54200,4,2,f +12371,54200,4,1,t +12371,54200,0,1,t +12371,57909a,72,5,f +12371,58176,36,2,f +12371,58176,35,2,f +12371,59443,71,1,f +12371,60176,0,3,f +12371,6019,0,2,f +12371,60475a,0,2,f +12371,60478,72,4,f +12371,6087,0,1,f +12371,61184,71,2,f +12371,61409,4,4,f +12371,6141,4,4,f +12371,6141,4,1,t +12371,6141,47,2,f +12371,6141,47,1,t +12371,61678,4,2,f +12371,61678,0,4,f +12371,62712,72,2,f +12371,63868,0,4,f +12371,64296,0,7,f +12371,64799,14,1,f +12371,6541,0,2,f +12371,85940,0,2,f +12371,87079,71,1,f +12371,87087,27,10,f +12371,87747,15,12,f +12371,87748pr0005,46,1,f +12371,87754,72,1,f +12371,89159,35,1,f +12371,970c00pr0145,72,1,f +12371,973pr1557c01,72,1,f +12372,10055pr0001,226,1,f +12372,11477,308,1,f +12372,15573,70,1,f +12372,15712,70,1,f +12372,16770,41,2,f +12372,18649,0,1,f +12372,18674,70,1,f +12372,18868a,41,1,f +12372,19981pr0037,41,1,f +12372,3020,70,1,f +12372,3024,70,2,f +12372,3024,70,1,t +12372,3626cpr1766,78,1,f +12372,3941,41,1,f +12372,4032a,70,1,f +12372,4085c,0,2,f +12372,44728,0,1,f +12372,4497,179,1,f +12372,4600,71,1,f +12372,47456,308,1,f +12372,50254,0,2,f +12372,53451,297,2,f +12372,53451,297,1,t +12372,57467,179,2,f +12372,57467,179,1,t +12372,6141,70,1,t +12372,6141,70,1,f +12372,88072,0,2,f +12372,93231,70,1,f +12372,970c00pr0353,71,1,f +12372,973pr2078c01,326,1,f +12372,98313,297,2,f +12373,2412b,25,2,f +12373,2419,8,1,f +12373,2419,378,2,f +12373,2419,7,2,f +12373,2420,7,4,f +12373,2432,0,1,f +12373,2540,7,2,f +12373,2877,7,1,f +12373,298c02,7,1,f +12373,3004,2,2,f +12373,3020,8,1,f +12373,3021,8,1,f +12373,3022,2,2,f +12373,3023,2,5,f +12373,30303,8,1,f +12373,30359a,8,2,f +12373,30365,7,2,f +12373,30375,27,1,f +12373,30377,3,2,f +12373,30377,7,1,f +12373,30383,0,2,f +12373,30387,7,2,f +12373,3040b,378,2,f +12373,30530,27,1,f +12373,30540,8,2,f +12373,30554a,8,6,f +12373,3069bp55,8,1,f +12373,3665,2,2,f +12373,3666,8,1,f +12373,4070,8,2,f +12373,4150px3,7,1,f +12373,4589,57,2,f +12373,4740,57,1,f +12373,4859,8,1,f +12373,4871,8,1,f +12373,6091,378,2,f +12373,6141,0,1,f +12373,6141,0,1,t +12373,6141,57,4,f +12373,6141,57,1,t +12373,76385,8,2,f +12373,x117px2,3,1,f +12375,2039,15,2,f +12375,2343,47,2,f +12375,2345,15,8,f +12375,2357,15,6,f +12375,2397,1,1,f +12375,2431,1,4,f +12375,2450,15,4,f +12375,2453a,15,2,f +12375,2454a,15,2,f +12375,2462,15,8,f +12375,2493b,4,2,f +12375,2494,47,2,f +12375,2518,2,4,f +12375,2529,1,4,f +12375,2536,6,8,f +12375,2546p01,4,1,f +12375,2563,6,1,f +12375,2566,6,1,f +12375,2571,47,2,f +12375,3001,15,2,f +12375,3001,1,1,f +12375,3002,15,2,f +12375,3003,1,2,f +12375,3003,15,6,f +12375,3003,4,1,f +12375,3004,0,2,f +12375,3004,15,22,f +12375,3004,1,2,f +12375,3004,47,2,f +12375,3004,4,2,f +12375,3004,7,2,f +12375,3005,15,24,f +12375,3005,1,2,f +12375,3005,4,2,f +12375,3008,15,4,f +12375,3009,15,10,f +12375,3010,15,16,f +12375,3020,1,2,f +12375,3020,15,2,f +12375,3020,4,2,f +12375,3021,15,2,f +12375,3022,4,2,f +12375,3022,15,2,f +12375,3023,4,2,f +12375,3023,1,2,f +12375,3029,15,2,f +12375,3030,15,1,f +12375,3031,15,2,f +12375,3032,4,1,f +12375,3032,15,1,f +12375,3034,4,2,f +12375,3037,4,8,f +12375,3039,15,4,f +12375,3039,4,8,f +12375,3040b,4,6,f +12375,3040b,15,2,f +12375,3040p02,0,1,f +12375,3041,4,2,f +12375,3042,4,2,f +12375,3043,4,2,f +12375,3045,4,8,f +12375,3048c,4,2,f +12375,3062b,4,2,f +12375,3062b,46,2,f +12375,3062b,2,1,f +12375,3062b,1,4,f +12375,3068b,1,2,f +12375,3069b,1,4,f +12375,3069b,0,2,f +12375,3081cc01,4,4,f +12375,3185,4,2,f +12375,3297,4,4,f +12375,3298,4,4,f +12375,3307,15,2,f +12375,3581,15,2,f +12375,3622,15,18,f +12375,3623,1,2,f +12375,3623,15,4,f +12375,3626apr0001,14,2,f +12375,3626b,46,2,f +12375,3633,4,6,f +12375,3641,0,4,f +12375,3644,4,2,f +12375,3660,4,4,f +12375,3660,15,4,f +12375,3665,15,4,f +12375,3665,4,4,f +12375,3666,15,2,f +12375,3676,4,8,f +12375,3679,7,2,f +12375,3680,1,2,f +12375,3710,15,2,f +12375,3741,2,4,f +12375,3742,1,4,f +12375,3742,14,8,f +12375,3788,1,2,f +12375,3794a,1,2,f +12375,3794a,15,2,f +12375,3795,15,2,f +12375,3821,1,1,f +12375,3822,1,1,f +12375,3823,47,1,f +12375,3830,15,2,f +12375,3831,15,2,f +12375,3832,15,2,f +12375,3836,6,1,f +12375,3853,4,2,f +12375,3855,47,2,f +12375,3856,4,4,f +12375,3867,7,2,f +12375,3901,0,1,f +12375,3941,4,2,f +12375,3942b,4,1,f +12375,3957a,4,2,f +12375,3960p04,15,1,f +12375,4032a,2,1,f +12375,4032a,15,2,f +12375,4079,1,4,f +12375,4083,15,1,f +12375,4162,1,2,f +12375,4447,4,2,f +12375,4448,47,2,f +12375,4491a,4,1,f +12375,4493c01pb02,0,1,f +12375,4495b,14,1,f +12375,4528,0,1,f +12375,4529,0,1,f +12375,4530,0,1,f +12375,4532,4,2,f +12375,4533,4,1,f +12375,4536,4,2,f +12375,4589,15,2,f +12375,4600,15,2,f +12375,4624,15,4,f +12375,4740,15,2,f +12375,6141,15,2,f +12375,69c01,15,1,f +12375,73312,4,2,f +12375,970c00,0,1,f +12375,970c00,15,1,f +12375,973p22c01,0,1,f +12375,973p71c01,15,1,f +12376,cdoor01,14,1,f +12376,cdoor01,4,1,f +12376,cdoor01,15,2,f +12376,cwindow01,15,1,f +12376,cwindow01,14,1,f +12376,cwindow01,4,1,f +12376,cwindow01,1,1,f +12376,cwindow02,15,1,f +12376,cwindow02,1,1,f +12376,cwindow02,14,1,f +12376,cwindow02,4,1,f +12376,cwindow03,14,1,f +12376,cwindow03,1,1,f +12376,cwindow03,4,1,f +12376,cwindow03,15,1,f +12376,cwindow04,15,2,f +12376,cwindow04,14,1,f +12376,cwindow04,4,1,f +12376,cwindow05,15,1,f +12376,cwindow05,14,1,f +12376,cwindow05,1,1,f +12376,cwindow05,4,1,f +12377,2343,7,2,f +12377,2346,0,8,f +12377,2348b,47,1,f +12377,2349a,0,1,f +12377,2412b,7,1,f +12377,298c01,0,2,f +12377,3004,14,1,f +12377,3010,0,1,f +12377,3022,14,3,f +12377,3023,0,2,f +12377,3024,46,2,f +12377,3024,36,4,f +12377,3024,0,2,f +12377,3062b,14,4,f +12377,3482,14,8,f +12377,3623,0,3,f +12377,3626apr0001,14,1,f +12377,3700,0,4,f +12377,3707,0,2,f +12377,3710,0,1,f +12377,3788,0,2,f +12377,3821p03,0,1,f +12377,3822p03,0,1,f +12377,3823,47,1,f +12377,3829c01,14,1,f +12377,3937,0,1,f +12377,3938,0,1,f +12377,4006,0,1,f +12377,4070,14,2,f +12377,4070,0,4,f +12377,4083,7,1,f +12377,4212b,0,1,f +12377,4214,0,1,f +12377,4265a,7,4,f +12377,4485,4,1,f +12377,4589,7,2,f +12377,4865a,0,1,f +12377,970c00,4,1,f +12377,973pb0006c01,15,1,f +12378,11212,72,2,f +12378,12825,4,1,f +12378,15571,0,2,f +12378,15573,71,1,f +12378,2431,72,4,f +12378,2780,0,1,t +12378,2780,0,2,f +12378,3005,4,10,f +12378,3005,71,2,f +12378,3005,47,1,f +12378,3020,4,3,f +12378,3022,0,1,f +12378,3023,15,3,f +12378,3023,72,5,f +12378,3023,41,4,f +12378,3023,47,9,f +12378,3023,14,1,f +12378,3023,4,4,f +12378,3024,47,11,f +12378,3024,72,5,f +12378,3024,72,1,t +12378,3024,2,1,t +12378,3024,15,6,f +12378,3024,2,3,f +12378,3024,15,1,t +12378,3024,4,5,f +12378,3024,4,1,t +12378,3024,47,1,t +12378,3036,0,1,f +12378,3069b,14,2,f +12378,3070b,71,12,f +12378,3070b,72,1,t +12378,3070b,19,1,t +12378,3070b,0,1,t +12378,3070b,15,1,t +12378,3070b,0,2,f +12378,3070b,19,1,f +12378,3070b,4,1,t +12378,3070b,15,1,f +12378,3070b,71,1,t +12378,3070b,4,1,f +12378,3070b,72,2,f +12378,32000,4,2,f +12378,32028,72,3,f +12378,33291,10,1,t +12378,33291,10,1,f +12378,3622,4,2,f +12378,3623,2,1,f +12378,3623,0,2,f +12378,3623,15,3,f +12378,3659,71,1,f +12378,3666,72,2,f +12378,3710,72,2,f +12378,3710,71,4,f +12378,3710,4,1,f +12378,4081b,71,2,f +12378,4274,1,1,f +12378,4274,1,1,t +12378,4490,71,1,f +12378,4733,15,1,f +12378,47905,4,1,f +12378,49668,15,2,f +12378,54200,4,1,t +12378,54200,33,1,t +12378,54200,33,2,f +12378,54200,0,3,f +12378,54200,0,1,t +12378,54200,4,1,f +12378,58176,46,2,f +12378,59900,2,1,f +12378,59900,15,4,f +12378,59900,14,1,f +12378,60478,15,1,f +12378,60897,0,2,f +12378,6141,0,5,f +12378,6141,0,1,t +12378,6141,71,1,f +12378,6141,4,3,f +12378,6141,4,1,t +12378,6141,71,1,t +12378,6141,70,1,t +12378,6141,70,1,f +12378,6141,15,1,t +12378,6141,15,4,f +12378,63864,0,2,f +12378,64644,0,1,f +12378,87079,15,1,f +12378,98138,15,1,f +12378,98138,15,1,t +12381,2357,19,2,f +12381,2420,19,2,f +12381,2431,19,1,f +12381,2456,19,2,f +12381,3001,19,1,f +12381,3002,19,6,f +12381,3003,19,4,f +12381,3004,19,5,f +12381,3005,19,2,f +12381,3020,19,2,f +12381,3021,19,3,f +12381,3022,19,1,f +12381,3023,19,5,f +12381,3039,19,12,f +12381,3040b,19,6,f +12381,3068b,19,1,f +12381,3069b,19,3,f +12381,3070b,19,4,f +12381,3460,19,1,f +12381,3622,19,2,f +12381,3623,19,2,f +12381,3660,19,1,f +12381,3666,19,1,f +12381,3710,19,3,f +12381,3794b,19,2,f +12381,3795,19,1,f +12381,3937,71,1,f +12381,3938,71,1,f +12381,41769,71,1,f +12381,41770,71,1,f +12381,4589,19,1,f +12381,51739,71,1,f +12381,53451,15,2,f +12381,54200,19,27,f +12381,54200,70,17,f +12381,6141,15,1,f +12381,6141,0,6,f +12381,6141,19,3,f +12381,63864,4,1,f +12381,85861,15,2,f +12382,14226c41,0,4,f +12382,167916,47,1,f +12382,2780,0,32,f +12382,2825,7,2,f +12382,2909c03,0,2,f +12382,3001,4,24,f +12382,3003,4,28,f +12382,3004,4,4,f +12382,3007,4,2,f +12382,3021,1,2,f +12382,3022,1,2,f +12382,3023,1,6,f +12382,3040b,4,4,f +12382,32013,1,6,f +12382,32014,1,6,f +12382,32016,1,4,f +12382,32034,7,4,f +12382,32039,7,6,f +12382,32062,0,14,f +12382,32064b,2,4,f +12382,32073,0,16,f +12382,32123b,7,22,f +12382,3460,1,2,f +12382,3647,7,2,f +12382,3666,1,4,f +12382,3673,7,12,f +12382,3700,4,8,f +12382,3701,4,4,f +12382,3702,4,4,f +12382,3703,4,16,f +12382,3705,0,14,f +12382,3706,0,2,f +12382,3707,0,2,f +12382,3708,0,2,f +12382,3709,1,4,f +12382,3710,1,2,f +12382,3713,7,24,f +12382,3737,0,2,f +12382,3738,1,4,f +12382,3749,7,8,f +12382,3795,1,2,f +12382,3832,1,8,f +12382,3857,2,2,f +12382,3894,4,8,f +12382,3895,4,4,f +12382,3941,4,2,f +12382,4274,7,10,f +12382,4477,1,4,f +12382,4519,0,24,f +12382,6536,7,6,f +12382,6538a,7,20,f +12382,6553,7,2,f +12382,6587,8,6,f +12382,6630,7,2,f +12382,6632,7,4,f +12382,71082,47,1,f +12382,bb369,9999,2,f +12382,bb370,9999,18,f +12382,bin01,4,1,f +12382,rb00170,0,2,f +12383,10288,308,6,f +12383,11091,85,6,f +12383,11100,15,2,f +12383,11211,15,4,f +12383,11214,72,4,f +12383,11403pr0005c01,379,1,f +12383,11407pr0003c01,322,1,f +12383,11476,71,6,f +12383,11477,70,2,f +12383,11605,70,1,f +12383,11816pr0019,78,1,f +12383,11816pr0021,78,1,f +12383,11816pr0023,78,1,f +12383,12939,71,1,f +12383,13731,31,6,f +12383,13965,70,3,f +12383,13965,19,15,f +12383,14395,19,4,f +12383,14769,297,4,f +12383,14769,323,2,f +12383,14769,71,3,f +12383,14769pr1014,19,1,f +12383,14769pr1015,323,1,f +12383,14769pr1016,27,1,f +12383,14769pr1017,30,1,f +12383,15068,31,5,f +12383,15395,179,1,f +12383,15397,0,1,f +12383,15470,29,2,f +12383,15470,29,1,t +12383,15535,72,1,f +12383,15535,2,2,f +12383,15573,70,2,f +12383,15875pr0008c01,15,1,f +12383,16577,19,1,f +12383,18651,0,1,f +12383,19118,27,1,f +12383,19118,31,1,f +12383,19118,191,1,f +12383,19118,323,1,f +12383,19119,2,2,f +12383,19121,31,4,f +12383,19201pr0001,323,1,f +12383,20312,297,1,f +12383,20313,297,1,f +12383,20482,47,1,f +12383,20482,47,1,t +12383,21333pr0001,15,1,f +12383,21340,31,1,f +12383,21490,212,1,f +12383,21490,272,1,f +12383,21494,9999,1,f +12383,21497,85,1,f +12383,21503,15,1,f +12383,22667,26,1,t +12383,22667,26,1,f +12383,2343,297,2,f +12383,2357,70,1,f +12383,2357,19,20,f +12383,2420,0,4,f +12383,2420,27,2,f +12383,2420,70,2,f +12383,2420,72,2,f +12383,2423,320,3,f +12383,2423,5,4,f +12383,2423,27,4,f +12383,2431,297,1,f +12383,2431,41,3,f +12383,2431,71,4,f +12383,2454a,19,3,f +12383,2458,15,4,f +12383,2460,71,1,f +12383,2476a,28,1,f +12383,2654,0,5,f +12383,3001,70,1,f +12383,3001,71,1,f +12383,3001,0,2,f +12383,3002,19,2,f +12383,3002,71,2,f +12383,3003,71,2,f +12383,3003,70,1,f +12383,3004,71,7,f +12383,3004,19,19,f +12383,3004,0,1,f +12383,3004,72,7,f +12383,3004,70,1,f +12383,3005,72,1,f +12383,3005,322,1,f +12383,3005,52,5,f +12383,3005,71,9,f +12383,3005,0,1,f +12383,3005,19,13,f +12383,3005,70,1,f +12383,3006,71,1,f +12383,3008,19,1,f +12383,3008,71,1,f +12383,3009,71,2,f +12383,30099,19,2,f +12383,3010,19,2,f +12383,3010,71,2,f +12383,30153,47,5,f +12383,30153,41,2,f +12383,30153,52,1,f +12383,30165,15,1,f +12383,3020,27,2,f +12383,3020,0,1,f +12383,3020,70,1,f +12383,3020,26,4,f +12383,3020,71,8,f +12383,3021,85,2,f +12383,3022,15,8,f +12383,3023,71,2,f +12383,3023,19,4,f +12383,3023,31,4,f +12383,3023,27,11,f +12383,3024,0,1,f +12383,3024,71,2,t +12383,3024,0,1,t +12383,3024,27,4,t +12383,3024,71,10,f +12383,3024,27,22,f +12383,3027,28,1,f +12383,3029,27,1,f +12383,3030,27,1,f +12383,3032,70,1,f +12383,3033,28,2,f +12383,30357,26,2,f +12383,3036,28,2,f +12383,30385,45,1,f +12383,3039,71,3,f +12383,3039,19,2,f +12383,3040b,71,2,f +12383,3040b,72,6,f +12383,3040b,19,4,f +12383,3040b,308,2,f +12383,3045,71,2,f +12383,30565,322,2,f +12383,30565,191,2,f +12383,30565,27,2,f +12383,30602,71,2,f +12383,3062b,297,18,f +12383,3065,52,1,f +12383,3068b,297,5,f +12383,3068bpr0247,19,1,f +12383,3069b,19,2,f +12383,3069b,71,1,f +12383,3069b,31,4,f +12383,3069b,182,5,f +12383,32039,0,2,f +12383,32062,4,2,f +12383,32064a,14,1,f +12383,32064a,15,4,f +12383,3245b,19,7,f +12383,32525,0,2,f +12383,32556,19,1,f +12383,33051,10,2,f +12383,33085,14,1,f +12383,33183,70,2,t +12383,33183,70,6,f +12383,33291,31,4,f +12383,33291,26,4,t +12383,33291,31,1,t +12383,33291,26,15,f +12383,3460,71,2,f +12383,3460,15,1,f +12383,3622,19,12,f +12383,3622,70,1,f +12383,3622,71,1,f +12383,3623,85,2,f +12383,3623,31,4,f +12383,3659,85,2,f +12383,3659,308,2,f +12383,3659,19,1,f +12383,3665,71,10,f +12383,3665,70,1,f +12383,3666,26,1,f +12383,3666,15,6,f +12383,3666,0,1,f +12383,3666,28,2,f +12383,3700,15,8,f +12383,3700,1,2,f +12383,3706,0,7,f +12383,3709,15,1,f +12383,3710,27,13,f +12383,3710,2,2,f +12383,3710,15,11,f +12383,3710,26,2,f +12383,3710,19,1,f +12383,3742,29,8,f +12383,3749,19,4,f +12383,3795,28,4,f +12383,3830,71,6,f +12383,3831,71,6,f +12383,3832,70,1,f +12383,3832,71,2,f +12383,3894,0,1,f +12383,3937,71,1,f +12383,3941,19,4,f +12383,3941,85,4,f +12383,40243,26,8,f +12383,40244,0,1,f +12383,4032a,322,1,f +12383,4032a,2,1,f +12383,4032a,25,1,f +12383,4032a,85,3,f +12383,4070,47,2,f +12383,4085c,0,2,f +12383,42022,41,6,f +12383,4286,71,3,f +12383,4287,70,1,f +12383,4287,15,6,f +12383,43888,85,10,f +12383,43898,47,1,f +12383,4460b,71,2,f +12383,44728,19,4,f +12383,4477,15,4,f +12383,4477,72,2,f +12383,4519,71,1,f +12383,46212,41,1,f +12383,46212,47,1,f +12383,46212,182,1,f +12383,4740,35,1,f +12383,48336,297,3,f +12383,4871,0,1,f +12383,50950,15,6,f +12383,50950,31,8,f +12383,54200,47,4,f +12383,54200,47,1,t +12383,58176,35,2,f +12383,59443,14,1,f +12383,59900,35,1,f +12383,60470a,15,2,f +12383,60474,71,1,f +12383,60478,72,8,f +12383,60481,85,4,f +12383,60481,71,2,f +12383,60897,19,2,f +12383,6091,322,2,f +12383,6111,19,1,f +12383,6134,15,1,f +12383,6141,0,1,f +12383,6141,35,3,t +12383,6141,35,10,f +12383,6141,0,1,t +12383,6179,26,1,f +12383,6179,191,1,f +12383,63864,72,2,f +12383,64644,297,1,f +12383,64647,15,1,t +12383,64647,15,1,f +12383,6585,0,1,f +12383,6589,19,2,f +12383,73983,2,2,f +12383,85080,19,2,f +12383,85984,71,1,f +12383,87079,71,1,f +12383,87079,26,2,f +12383,87079,322,2,f +12383,87087,70,2,f +12383,87580,0,1,f +12383,87620,71,3,f +12383,88072,0,1,f +12383,92280,15,8,f +12383,92456pr0073c01,78,1,f +12383,92456pr0075c01,78,1,f +12383,92456pr0086c01,78,1,f +12383,92593,71,6,f +12383,92946,72,4,f +12383,92947,19,1,f +12383,92950,71,1,f +12383,93085pr0004,15,1,f +12383,93252,297,1,f +12383,96874,25,1,t +12383,98138,41,1,f +12383,98138,29,1,f +12383,98138,41,1,t +12383,98138,29,1,t +12383,98138,33,1,t +12383,98138,33,1,f +12383,98138,297,4,f +12383,98138,297,2,t +12383,98138pr0018,84,2,t +12383,98138pr0018,84,2,f +12383,98138pr0031,36,1,f +12383,98138pr0031,36,1,t +12383,98138pr0032,33,1,f +12383,98138pr0032,33,1,t +12383,98138pr0033,34,1,t +12383,98138pr0033,34,1,f +12383,98138pr0034,52,1,t +12383,98138pr0034,52,1,f +12383,99207,71,4,f +12383,99781,71,1,f +12384,10113,15,1,f +12384,13608,179,1,f +12384,2357,72,2,f +12384,2412b,14,1,t +12384,2412b,14,2,f +12384,2431,14,4,f +12384,2436,14,2,f +12384,2445,71,1,f +12384,2456,72,1,f +12384,2458,15,2,f +12384,2458,71,1,f +12384,2654,182,2,f +12384,2817,71,1,f +12384,3001,71,1,f +12384,3002,2,1,f +12384,3003,14,2,f +12384,3004,72,2,f +12384,3004,15,2,f +12384,3009,0,1,f +12384,3020,71,6,f +12384,3021,0,3,f +12384,3021,1,2,f +12384,3023,182,4,f +12384,3023,14,5,f +12384,3023,47,2,f +12384,3032,14,2,f +12384,3034,4,1,f +12384,30374,41,1,f +12384,30382,0,2,f +12384,3039,0,2,f +12384,3040b,15,2,f +12384,3062b,41,1,f +12384,3069b,71,1,f +12384,3069b,41,2,f +12384,32064b,0,1,f +12384,32123b,14,1,t +12384,32123b,14,3,f +12384,3460,71,2,f +12384,3626bpr0896,78,1,f +12384,3626bpr1070,78,1,f +12384,3626cpr1071,15,1,f +12384,3700,71,4,f +12384,3794b,71,2,f +12384,3829c01,71,1,f +12384,3958,72,1,f +12384,4150,14,2,f +12384,41769,71,1,f +12384,41770,71,1,f +12384,42022,0,2,f +12384,42023,72,4,f +12384,4274,71,1,f +12384,4274,71,1,t +12384,4286,0,2,f +12384,43713,72,2,f +12384,44301a,4,2,f +12384,45590,0,2,f +12384,4733,0,2,f +12384,4740,0,1,f +12384,47457,71,1,f +12384,47847,41,2,f +12384,4865a,71,1,f +12384,4871,72,3,f +12384,51739,14,1,f +12384,54200,15,1,t +12384,54200,15,10,f +12384,55706,0,1,f +12384,55981,14,1,f +12384,56630,15,1,f +12384,57906,0,2,f +12384,59443,71,2,f +12384,59900,71,3,f +12384,60476,71,4,f +12384,61409,14,6,f +12384,6141,71,4,f +12384,6141,71,1,t +12384,63864,15,4,f +12384,6553,0,1,f +12384,6587,28,2,f +12384,76000stk01,9999,1,t +12384,85959pat0001,36,1,f +12384,85984,0,1,f +12384,87083,72,2,f +12384,87615,0,1,f +12384,87620,71,2,f +12384,87754,379,1,f +12384,87991,14,1,f +12384,89159,41,1,f +12384,92280,71,2,f +12384,92290,297,1,f +12384,92579,40,1,f +12384,92593,15,2,f +12384,92946,72,2,f +12384,93606,0,3,f +12384,970c00,2,1,f +12384,970x026,73,1,f +12384,970x026,71,1,f +12384,973pr2168c01,25,1,f +12384,973pr2169c01,0,1,f +12384,973pr2172c01,71,1,f +12384,98137,148,2,f +12384,98138,182,1,t +12384,98138,179,1,t +12384,98138,182,10,f +12384,98138,179,1,f +12384,98721,0,1,f +12384,98721,0,1,t +12384,99781,71,3,f +12385,3001,15,1,f +12385,3001,4,2,f +12385,3001,1,1,f +12385,3003,15,1,f +12385,3003,0,2,f +12385,3003,14,1,f +12385,3003,4,2,f +12385,3003,1,2,f +12385,3003pe1,14,1,f +12385,3004,4,4,f +12385,3004,14,2,f +12385,3004,0,2,f +12385,3004,15,1,f +12385,3004,1,2,f +12385,3004,47,1,f +12385,3005,14,2,f +12385,3007,4,1,f +12385,3020,4,1,f +12385,3021,4,1,f +12385,3137c01,0,2,f +12385,3641,0,4,f +12386,14769pr0014,84,1,f +12386,3068bpr0017,15,1,f +12386,3626cpr1479,14,1,f +12386,88646,0,1,f +12386,93219pr0009,4,1,f +12386,970c00,272,1,f +12386,973pr2748c01,2,1,f +12388,4332,366,1,f +12388,4341,0,1,f +12388,fab11b,9999,1,f +12388,fabad6c01,4,1,f +12388,fabeh4,4,1,f +12389,15462,28,1,f +12389,15976,0,2,f +12389,18587,14,1,f +12389,18588,72,1,f +12389,19049,179,1,f +12389,19050,42,1,f +12389,19087,179,1,f +12389,19149pat0006,321,1,f +12389,20251,179,1,f +12389,20252,148,4,f +12389,2780,0,6,f +12389,32016,0,2,f +12389,32062,4,3,f +12389,32123b,14,2,f +12389,32270,0,1,f +12389,41531,14,2,f +12389,4274,71,2,f +12389,43093,1,2,f +12389,4497,179,2,f +12389,4519,71,1,f +12389,46667,41,2,f +12389,6141,33,12,f +12389,63869,0,1,f +12389,90609,41,2,f +12389,90611,41,2,f +12389,90612,0,2,f +12389,90617,72,2,f +12389,90641,33,4,f +12389,93571,0,2,f +12389,93575,179,2,f +12389,98577,72,2,f +12389,98590,0,1,f +12391,15573,19,2,f +12391,2412b,70,1,f +12391,2431,72,1,f +12391,2780,0,4,f +12391,3004,15,7,f +12391,3005,15,2,f +12391,3005,47,6,f +12391,3005,41,24,f +12391,3020,71,3,f +12391,3020,19,7,f +12391,3021,19,5,f +12391,3023,19,2,f +12391,3023,2,4,f +12391,3023,4,1,f +12391,3023,71,1,f +12391,3023,47,4,f +12391,3024,2,2,f +12391,3024,15,3,f +12391,3024,19,8,f +12391,3024,72,3,f +12391,3024,0,1,f +12391,3024,47,1,f +12391,3035,0,2,f +12391,3062b,320,4,f +12391,3069b,28,1,f +12391,3070b,15,2,f +12391,3070b,19,2,f +12391,3070b,71,4,f +12391,3070b,41,3,f +12391,32000,15,2,f +12391,32028,15,2,f +12391,32028,19,5,f +12391,33291,10,12,f +12391,33291,26,2,f +12391,3623,19,5,f +12391,3623,15,2,f +12391,3623,71,1,f +12391,3666,71,1,f +12391,3710,19,4,f +12391,3710,72,3,f +12391,4081b,0,2,f +12391,4865a,15,1,f +12391,4865a,47,6,f +12391,54200,47,2,f +12391,54200,71,2,f +12391,54200,15,1,f +12391,59900,70,2,f +12391,6141,322,2,f +12391,6141,0,4,f +12391,6141,41,2,f +12391,6141,27,4,f +12391,63864,72,2,f +12391,63864,15,3,f +12391,64644,19,4,f +12391,64644,308,1,f +12391,87079,71,1,f +12391,89522,378,2,f +12391,98283,72,1,f +12391,98283,71,12,f +12392,2446,135,1,f +12392,2587pr19,135,1,f +12392,2594,80,1,f +12392,3062b,70,2,f +12392,3794a,70,1,f +12392,3847,135,1,f +12392,4589,0,1,f +12393,3004,4,1,f +12393,3005pe1,15,2,f +12393,3021,0,2,f +12393,3039,15,1,f +12393,3039,4,1,f +12393,3040b,4,2,f +12393,3660,15,1,f +12396,2335,0,2,f +12396,2343,14,2,f +12396,2412b,72,2,f +12396,2420,0,2,f +12396,2431pr0032,70,2,f +12396,2445,0,4,f +12396,2476a,15,2,f +12396,2489,70,1,f +12396,2540,0,2,f +12396,2555,0,4,f +12396,2653,0,2,f +12396,2780,0,13,f +12396,2780,0,1,t +12396,3003,0,1,f +12396,30153,34,1,f +12396,30153,33,1,f +12396,30153,42,1,f +12396,3022,71,2,f +12396,3023,0,2,f +12396,3032,0,1,f +12396,3034,72,2,f +12396,3034,0,3,f +12396,30374,70,6,f +12396,3040b,72,2,f +12396,30488c01,0,2,f +12396,3062b,15,1,f +12396,3068b,0,2,f +12396,3176,72,4,f +12396,32009,0,4,f +12396,32018,0,2,f +12396,32018,72,2,f +12396,32028,71,8,f +12396,32039,71,2,f +12396,32064b,71,3,f +12396,32073,71,10,f +12396,32123b,71,1,t +12396,32123b,71,4,f +12396,32474,4,10,f +12396,32525,72,2,f +12396,32556,71,4,f +12396,33299a,71,1,f +12396,3460,70,5,f +12396,3623,70,12,f +12396,3660,72,2,f +12396,3665,0,1,f +12396,3666,71,3,f +12396,3666,0,2,f +12396,3700,0,9,f +12396,3702,0,2,f +12396,3708,0,1,f +12396,3709,0,2,f +12396,3710,72,6,f +12396,3713,4,1,t +12396,3713,4,5,f +12396,3794a,72,8,f +12396,3795,70,2,f +12396,3848,0,2,f +12396,3894,72,3,f +12396,3937,72,2,f +12396,3960pr0002,19,1,f +12396,3960pr0003,19,2,f +12396,3960pr0004,19,1,f +12396,3960pr0006,19,1,f +12396,4032a,70,1,f +12396,4095,70,2,f +12396,41677,4,4,f +12396,41769,72,1,f +12396,41769,70,3,f +12396,41770,72,1,f +12396,41770,70,3,f +12396,4274,71,2,f +12396,4274,71,1,t +12396,43093,1,6,f +12396,43722,71,1,f +12396,43723,71,1,f +12396,4495b,4,1,f +12396,4497,135,5,f +12396,4519,71,1,f +12396,4599a,71,2,f +12396,4738a,70,1,f +12396,47397,70,1,f +12396,47398,70,1,f +12396,4739a,70,1,f +12396,48495,179,1,f +12396,48495,82,1,f +12396,48729a,72,6,f +12396,53451,15,2,t +12396,53451,15,18,f +12396,54200,72,4,f +12396,55817,72,4,f +12396,6134,0,2,f +12396,6141,19,1,f +12396,6141,19,1,t +12396,6538b,4,1,f +12396,75535,4,1,f +12397,10183,143,1,f +12397,10201,15,4,f +12397,11010,334,1,f +12397,11010,334,1,t +12397,11090,15,9,f +12397,11203,19,1,f +12397,11211,71,33,f +12397,11211,15,20,f +12397,11211,14,2,f +12397,11212,71,6,f +12397,11213,15,7,f +12397,11437,297,2,f +12397,11458,72,1,f +12397,11476,71,2,f +12397,11477,15,2,f +12397,11833,84,1,f +12397,13548,15,6,f +12397,13965,19,17,f +12397,14395,71,2,f +12397,14716,71,10,f +12397,14719,71,26,f +12397,14719,272,16,f +12397,14769pr1040,15,1,f +12397,14769pr1054,70,1,f +12397,15208,191,4,f +12397,15254,71,7,f +12397,15254,19,1,f +12397,15254,84,2,f +12397,15341,297,2,f +12397,15392,72,2,f +12397,15392,72,1,t +12397,15395,320,1,f +12397,15397,70,2,f +12397,15397,19,2,f +12397,15403,15,2,f +12397,15429pr0004,70,2,f +12397,15470,297,2,f +12397,15470,297,1,t +12397,15571,15,10,f +12397,15573,71,40,f +12397,15573,297,18,f +12397,15573,14,2,f +12397,15573,272,2,f +12397,15573,70,2,f +12397,15573,1,22,f +12397,15573,19,10,f +12397,15672,71,24,f +12397,15712,14,2,f +12397,15712,297,18,f +12397,15712,297,2,t +12397,17349pr0001,1,1,f +12397,18041,297,12,f +12397,18041,297,5,t +12397,18165,70,2,f +12397,18649,71,4,f +12397,18674,70,7,f +12397,18759,71,9,f +12397,18838,70,2,f +12397,18838,15,1,f +12397,18838,19,11,f +12397,18920,179,1,f +12397,18920,179,1,t +12397,18980,71,3,f +12397,18980,30,2,f +12397,19119,2,1,f +12397,19121,15,10,f +12397,20310,15,4,f +12397,20310,19,2,f +12397,20482,47,1,f +12397,20482,297,3,t +12397,20482,297,8,f +12397,20482,47,1,t +12397,20693pr01,25,1,f +12397,21019pr0191,15,1,f +12397,21445,0,1,f +12397,22385,71,12,f +12397,22385,15,9,f +12397,22411,0,1,f +12397,22885,71,8,f +12397,22888,72,3,f +12397,22888,15,12,f +12397,2343,297,2,f +12397,2357,71,32,f +12397,2357,19,38,f +12397,2357,14,2,f +12397,2357,15,21,f +12397,23969,15,32,f +12397,24085,19,2,f +12397,2412b,15,5,f +12397,2419,0,1,f +12397,2420,28,4,f +12397,2420,0,1,f +12397,2420,71,7,f +12397,2420,14,2,f +12397,2420,15,17,f +12397,2420,19,2,f +12397,2420,272,2,f +12397,24309,15,1,f +12397,2431,25,6,f +12397,2431,72,8,f +12397,2431,15,11,f +12397,2431,70,1,f +12397,2432,15,10,f +12397,24324,70,1,f +12397,2449,71,1,f +12397,2449,19,1,f +12397,2450,15,1,f +12397,2453b,70,1,f +12397,2453b,19,5,f +12397,2453b,15,13,f +12397,2454a,0,2,f +12397,2454a,15,1,f +12397,2454a,19,12,f +12397,2456,14,2,f +12397,2456,70,4,f +12397,2456,19,2,f +12397,2456,15,2,f +12397,2462,19,5,f +12397,24633pr0001,15,1,f +12397,24633pr0002,15,1,f +12397,24634,30,1,f +12397,24634pr0002,4,1,f +12397,2465,71,1,f +12397,2476a,28,1,f +12397,24779,15,2,f +12397,24782pr0003,4,1,f +12397,2489,308,3,f +12397,2516,14,1,f +12397,25613,226,1,f +12397,25838,78,1,f +12397,25841,78,1,f +12397,2587,179,2,f +12397,25877,0,1,f +12397,2654,4,1,f +12397,26697,0,1,f +12397,26701,27,1,f +12397,27346,70,1,f +12397,2780,0,3,t +12397,2780,0,10,f +12397,27947,9999,1,f +12397,2877,19,3,f +12397,2877,70,3,f +12397,30000,1,2,f +12397,3001,2,6,f +12397,3001,70,2,f +12397,3001,0,1,f +12397,3001,19,8,f +12397,3001,71,21,f +12397,3001,72,1,f +12397,3002,15,4,f +12397,3002,19,5,f +12397,3002,71,4,f +12397,3003,71,15,f +12397,3003,25,3,f +12397,3003,19,8,f +12397,3003,272,13,f +12397,3003,15,9,f +12397,3003,14,1,f +12397,3004,19,34,f +12397,3004,84,6,f +12397,3004,70,6,f +12397,3004,15,6,f +12397,3004,71,10,f +12397,30044,19,4,f +12397,30044,15,7,f +12397,3005,19,35,f +12397,3005,71,25,f +12397,3005,70,4,f +12397,3005,15,21,f +12397,3005,84,5,f +12397,3008,15,1,f +12397,3008,70,1,f +12397,3008,71,1,f +12397,3009,15,6,f +12397,3009,19,9,f +12397,3009,71,2,f +12397,3010,72,3,f +12397,3010,19,28,f +12397,3010,15,3,f +12397,3010,25,1,f +12397,30136,28,2,f +12397,30145,15,3,f +12397,30151b,47,2,f +12397,30153,45,2,f +12397,30153,52,2,f +12397,30157,70,1,f +12397,30165,15,5,f +12397,3020,71,13,f +12397,3020,272,2,f +12397,3020,26,1,f +12397,3020,70,6,f +12397,3020,28,2,f +12397,3020,1,5,f +12397,3020,72,5,f +12397,3020,15,13,f +12397,3021,15,13,f +12397,3021,28,2,f +12397,3021,71,4,f +12397,3021,272,2,f +12397,3022,70,4,f +12397,3022,71,29,f +12397,3022,14,2,f +12397,3022,72,4,f +12397,3022,84,4,f +12397,3022,15,12,f +12397,3022,0,15,f +12397,3023,70,8,f +12397,3023,28,4,f +12397,3023,47,1,f +12397,3023,25,2,f +12397,3023,71,87,f +12397,3023,272,4,f +12397,3023,72,12,f +12397,3023,19,42,f +12397,3023,15,146,f +12397,3023,19,1,t +12397,30236,19,2,f +12397,30237b,71,2,f +12397,3024,14,1,f +12397,3024,19,12,f +12397,3024,71,3,t +12397,3024,19,3,t +12397,3024,14,1,t +12397,3024,15,55,f +12397,3024,70,1,f +12397,3024,70,1,t +12397,3024,71,9,f +12397,3024,15,9,t +12397,3026,15,1,f +12397,3029,28,4,f +12397,3030,72,3,f +12397,3031,4,1,f +12397,3031,15,2,f +12397,3032,72,2,f +12397,3033,71,1,f +12397,3034,72,1,f +12397,3034,15,1,f +12397,3035,0,2,f +12397,30350a,70,1,f +12397,30356,71,1,f +12397,30357,15,4,f +12397,30357,26,2,f +12397,30357,70,4,f +12397,3036,70,4,f +12397,3036,71,1,f +12397,30367c,71,1,f +12397,30374,70,2,f +12397,3039,70,1,f +12397,3040b,72,10,f +12397,3040b,70,1,f +12397,3040b,71,2,f +12397,30414,71,10,f +12397,30414,15,2,f +12397,3045,272,12,f +12397,3045,15,2,f +12397,3045,70,2,f +12397,30503,15,4,f +12397,30505,70,2,f +12397,30526,71,1,f +12397,30565,15,1,f +12397,30565,28,2,f +12397,30565,272,12,f +12397,3062b,70,2,f +12397,3062b,46,2,f +12397,3062b,15,24,f +12397,3062b,272,4,f +12397,3062b,14,2,f +12397,3062b,47,1,f +12397,3062b,71,3,f +12397,3068b,19,9,f +12397,3068b,28,20,f +12397,3068b,71,4,f +12397,3068b,70,4,f +12397,3068b,15,9,f +12397,3068b,72,44,f +12397,3068b,272,4,f +12397,3069b,72,1,f +12397,3069b,28,4,f +12397,3069b,15,39,f +12397,3069b,272,6,f +12397,3069b,71,31,f +12397,3069b,320,2,f +12397,3069b,84,1,f +12397,3069b,70,6,f +12397,3069b,19,8,f +12397,3069b,85,2,f +12397,3069bpr0145b,15,1,f +12397,3070b,272,1,t +12397,3070b,15,84,f +12397,3070b,71,2,t +12397,3070b,71,4,f +12397,3070b,272,2,f +12397,3070b,15,11,t +12397,3176,71,4,f +12397,3176,15,7,f +12397,32000,71,1,f +12397,32028,71,4,f +12397,32028,19,4,f +12397,32028,15,44,f +12397,32056,71,2,f +12397,32062,4,4,f +12397,32064a,15,1,f +12397,32064a,0,2,f +12397,32124,70,2,f +12397,32138,0,12,f +12397,32192,0,2,f +12397,32449,0,2,f +12397,3245b,71,6,f +12397,3245b,19,4,f +12397,3245b,15,6,f +12397,32531,0,4,f +12397,32532,71,5,f +12397,3298,272,11,f +12397,33009,70,1,f +12397,33051,4,1,f +12397,33078,4,2,f +12397,33078,4,1,t +12397,33172,25,1,f +12397,33183,10,1,t +12397,33183,10,1,f +12397,33291,26,1,t +12397,33291,4,1,f +12397,33291,4,1,t +12397,33291,26,6,f +12397,33320,2,2,f +12397,33322,297,1,t +12397,33322,297,1,f +12397,3460,70,2,f +12397,3460,15,1,f +12397,3622,2,4,f +12397,3622,71,17,f +12397,3622,15,4,f +12397,3622,19,22,f +12397,3623,71,2,f +12397,3623,19,4,f +12397,3623,15,2,f +12397,3626b,25,1,f +12397,3626b,71,2,f +12397,3626cpr2002,78,1,f +12397,3633,0,1,f +12397,3659,15,3,f +12397,3660,71,1,f +12397,3660,19,10,f +12397,3660,70,4,f +12397,3660,15,1,f +12397,3665,0,1,f +12397,3665,71,2,f +12397,3665,19,4,f +12397,3665,15,1,f +12397,3666,19,1,f +12397,3666,28,18,f +12397,3666,272,2,f +12397,3666,70,2,f +12397,3666,15,14,f +12397,3666,71,6,f +12397,3666,2,8,f +12397,3673,71,1,t +12397,3673,71,1,f +12397,3676,15,5,f +12397,3678b,272,11,f +12397,3679,71,2,f +12397,3680,0,2,f +12397,3685,272,26,f +12397,3688,272,2,f +12397,37,72,1,f +12397,37,72,1,t +12397,3700,19,11,f +12397,3700,71,7,f +12397,3703,15,7,f +12397,3710,15,16,f +12397,3710,28,3,f +12397,3710,272,2,f +12397,3710,19,2,f +12397,3710,71,11,f +12397,3710,70,6,f +12397,3710,72,3,f +12397,3747a,71,10,f +12397,3747a,15,2,f +12397,3794b,15,5,f +12397,3795,1,1,f +12397,3795,71,6,f +12397,3795,19,3,f +12397,3795,30,3,f +12397,3795,28,2,f +12397,3795,15,6,f +12397,3832,70,5,f +12397,3832,15,3,f +12397,3832,0,4,f +12397,3832,71,3,f +12397,3837,0,1,f +12397,3839b,71,24,f +12397,3846,71,3,f +12397,3852b,191,1,f +12397,3937,0,1,f +12397,3940b,0,1,f +12397,3941,71,3,f +12397,3941,4,1,f +12397,3942c,297,2,f +12397,3942c,320,1,f +12397,3942c,272,5,f +12397,3943b,272,4,f +12397,3957a,15,2,f +12397,3960pr0023,15,1,f +12397,4032a,15,5,f +12397,4032a,71,4,f +12397,4032a,10,2,f +12397,4070,70,2,f +12397,4070,15,8,f +12397,4070,19,18,f +12397,4150,72,17,f +12397,4162,70,7,f +12397,4162,19,7,f +12397,4162,15,4,f +12397,41769,272,1,f +12397,41770,272,1,f +12397,4216,15,10,f +12397,4274,1,5,t +12397,4274,1,22,f +12397,4282,19,6,f +12397,4282,272,4,f +12397,43093,1,3,f +12397,4332,70,1,f +12397,43710,72,1,f +12397,43711,72,1,f +12397,43720,72,1,f +12397,43721,72,1,f +12397,43722,28,2,f +12397,43723,28,2,f +12397,43888,15,10,f +12397,44301a,71,1,f +12397,44375a,272,4,f +12397,4460b,19,2,f +12397,4460b,272,10,f +12397,44728,71,4,f +12397,44728,19,3,f +12397,4477,72,1,f +12397,4477,70,1,f +12397,4477,15,1,f +12397,4477,14,1,f +12397,4489,70,1,f +12397,4495b,297,4,f +12397,4497,179,2,f +12397,4498,70,1,f +12397,4503,179,2,f +12397,4510,15,2,f +12397,4510,71,3,f +12397,4519,71,1,f +12397,4528,0,2,f +12397,4529,0,1,f +12397,45301,71,6,f +12397,4595,71,2,f +12397,4599b,15,1,t +12397,4599b,70,2,f +12397,4599b,70,1,t +12397,4599b,15,4,f +12397,4697b,0,1,f +12397,4697b,0,1,t +12397,4733,71,16,f +12397,4733,72,2,f +12397,4735,71,2,f +12397,4735,0,1,f +12397,4738a,84,2,f +12397,4739a,84,2,f +12397,4740,82,2,f +12397,4740,70,3,f +12397,4740,14,2,f +12397,47457,15,2,f +12397,47458,297,2,f +12397,47759,15,2,f +12397,4790,70,1,f +12397,47905,19,2,f +12397,48336,297,6,f +12397,48729b,0,2,t +12397,48729b,71,1,t +12397,48729b,0,4,f +12397,48729b,71,2,f +12397,48989,71,4,f +12397,50745,15,2,f +12397,52107,71,1,f +12397,54200,70,1,t +12397,54200,297,1,t +12397,54200,15,6,t +12397,54200,297,12,f +12397,54200,19,1,t +12397,54200,47,1,t +12397,54200,15,18,f +12397,54200,71,33,f +12397,54200,47,1,f +12397,54200,72,1,t +12397,54200,19,8,f +12397,54200,72,13,f +12397,54200,71,4,t +12397,54200,70,2,f +12397,54383,15,1,f +12397,54384,15,1,f +12397,58846,72,6,f +12397,59349,71,13,f +12397,59349pr0001,15,1,f +12397,59900,297,14,f +12397,59900,15,38,f +12397,59900,70,5,f +12397,59900,71,14,f +12397,6003,72,4,f +12397,60470a,0,2,f +12397,60470a,15,1,f +12397,60471,71,1,f +12397,60471,15,1,f +12397,60474,15,8,f +12397,60475b,84,1,f +12397,60475b,15,2,f +12397,60475b,19,1,f +12397,60475b,71,4,f +12397,60477,71,2,f +12397,60478,70,1,f +12397,60478,15,9,f +12397,60479,71,3,f +12397,60479,0,1,f +12397,60479,72,1,f +12397,60481,272,8,f +12397,60592,15,14,f +12397,60592,19,3,f +12397,60593,70,3,f +12397,60593,15,2,f +12397,60601,15,3,f +12397,60601,47,12,f +12397,60602,47,4,f +12397,60808,19,1,f +12397,6106,28,4,f +12397,6106,15,1,f +12397,6111,72,2,f +12397,6112,70,1,f +12397,6112,71,5,f +12397,6112,19,3,f +12397,6124,42,1,f +12397,6124,42,1,t +12397,61252,297,2,f +12397,61252,71,2,f +12397,6134,0,1,f +12397,61409,71,2,f +12397,6141,70,1,t +12397,6141,0,1,t +12397,6141,47,1,t +12397,6141,71,13,f +12397,6141,0,4,f +12397,6141,72,2,t +12397,6141,297,86,f +12397,6141,41,1,t +12397,6141,72,52,f +12397,6141,71,3,t +12397,6141,4,12,f +12397,6141,182,2,f +12397,6141,297,6,t +12397,6141,70,1,f +12397,6141,4,2,t +12397,6141,41,2,f +12397,6141,182,1,t +12397,6141,47,1,f +12397,61485,71,3,f +12397,6180,71,2,f +12397,6182,19,2,f +12397,6222,15,1,f +12397,6231,15,1,f +12397,6231,70,4,f +12397,6231,0,2,f +12397,6232,4,4,f +12397,62361,15,2,f +12397,6259,72,1,f +12397,63864,15,8,f +12397,63864,19,1,f +12397,63864,71,2,f +12397,63868,15,2,f +12397,63965,0,1,f +12397,63965,70,2,f +12397,63965,297,7,f +12397,64644,297,2,f +12397,64647,1,2,f +12397,64647,1,1,t +12397,64647,182,2,f +12397,64647,182,1,t +12397,6558,1,2,f +12397,6636,85,2,f +12397,6636,272,5,f +12397,6636,28,14,f +12397,6636,72,8,f +12397,6636,15,4,f +12397,6636,19,1,f +12397,6636,70,9,f +12397,6636,71,2,f +12397,73983,71,20,f +12397,85080,71,12,f +12397,85861,0,1,t +12397,85861,297,6,f +12397,85861,15,52,f +12397,85861,0,3,f +12397,85861,14,26,f +12397,85861,15,5,t +12397,85861,14,3,t +12397,85861,297,2,t +12397,85975,15,8,f +12397,85984,71,6,f +12397,87079,26,1,f +12397,87079,72,7,f +12397,87079,71,1,f +12397,87079,14,1,f +12397,87079,191,1,f +12397,87081,72,3,f +12397,87087,0,19,f +12397,87087,72,16,f +12397,87087,70,8,f +12397,87087,484,11,f +12397,87421,19,10,f +12397,87544,272,5,f +12397,87580,4,1,f +12397,87580,72,8,f +12397,87580,28,13,f +12397,87580,320,9,f +12397,87580,19,7,f +12397,87580,70,1,f +12397,87601,70,2,f +12397,87609,15,1,f +12397,87620,19,25,f +12397,87620,15,3,f +12397,87926,71,6,f +12397,87994,10,1,t +12397,87994,10,1,f +12397,88072,19,1,f +12397,88393,15,2,f +12397,88646,71,3,f +12397,89522,297,1,t +12397,89522,15,37,f +12397,89522,297,1,f +12397,89522,15,5,t +12397,89523,71,4,f +12397,90195,19,2,f +12397,91405,72,2,f +12397,92438,28,2,f +12397,92584,70,4,f +12397,92593,71,12,f +12397,92593,15,3,f +12397,92593,28,2,f +12397,92690,71,1,f +12397,92690,70,1,f +12397,92946,0,2,f +12397,92947,15,2,f +12397,92947,297,1,f +12397,92947,71,20,f +12397,92950,70,2,f +12397,92950,71,2,f +12397,92950,19,1,f +12397,93231,70,1,f +12397,93273,70,1,f +12397,93273,14,2,f +12397,93273,71,26,f +12397,93273,15,1,f +12397,93274,71,2,f +12397,95228,34,1,f +12397,95228,40,1,f +12397,95343,70,1,t +12397,95343,70,2,f +12397,95344,28,2,t +12397,95344,297,1,f +12397,95344,297,1,t +12397,95344,28,2,f +12397,96874,25,1,t +12397,970c00,71,2,f +12397,970c00pr1096,4,1,f +12397,970c00pr1097,15,1,f +12397,970c00pr1098,15,1,f +12397,970c00pr1099,78,1,f +12397,973c47,71,2,f +12397,973pr3315c01,1,1,f +12397,973pr3504c01,0,1,f +12397,973pr3505c01,4,1,f +12397,973pr3506c01,5,1,f +12397,973pr3507c01,27,1,f +12397,98138,297,1,t +12397,98138,71,5,t +12397,98138,71,24,f +12397,98138,297,4,f +12397,98138pr0059,84,3,f +12397,98138pr0059,84,1,t +12397,98283,84,9,f +12397,98283,71,42,f +12397,98283,19,24,f +12397,98286,71,1,f +12397,98369,179,1,f +12397,98374,148,1,f +12397,98383,297,1,f +12397,98560,272,25,f +12397,98560,15,2,f +12397,99206,71,21,f +12397,99206,15,12,f +12397,99207,0,7,f +12397,99207,71,4,f +12397,99207,4,14,f +12397,99301,72,4,f +12397,99780,71,1,f +12397,99780,14,2,f +12397,99781,0,1,f +12397,99781,15,2,f +12399,2412b,25,1,f +12399,2412b,80,1,f +12399,2432,72,1,f +12399,2555,72,3,f +12399,2730,0,1,f +12399,2780,0,3,f +12399,2780,0,1,t +12399,30031,71,1,f +12399,30151a,47,1,f +12399,30153,36,1,f +12399,3021,71,1,f +12399,3022,25,3,f +12399,3023,4,2,f +12399,3023,0,2,f +12399,30332,135,1,f +12399,30359b,0,1,f +12399,30395,72,1,f +12399,30396,0,1,f +12399,30552,0,1,f +12399,30608,0,1,f +12399,3069b,0,1,f +12399,3069bpr0070,0,1,f +12399,32000,71,2,f +12399,32000,0,1,f +12399,32054,71,2,f +12399,32529,0,1,f +12399,32556,19,3,f +12399,3623,72,2,f +12399,3626bpr0539,14,1,f +12399,3626bpr0551,14,1,f +12399,3700,0,1,f +12399,3747b,0,1,f +12399,3749,19,1,f +12399,3794a,0,2,f +12399,3894,0,1,f +12399,4032a,72,1,f +12399,41532,0,1,f +12399,4274,71,3,f +12399,4274,71,1,t +12399,4286,0,1,f +12399,43903,0,1,f +12399,44032,135,2,f +12399,44302a,71,1,f +12399,44661,272,2,f +12399,44728,71,2,f +12399,44728,0,1,f +12399,4599a,0,2,f +12399,4599a,71,2,f +12399,4740,57,1,f +12399,47759,0,1,f +12399,48724,71,1,f +12399,48989,71,1,f +12399,54200,25,1,f +12399,54200,25,1,t +12399,55981,71,2,f +12399,61072,135,2,f +12399,6117,72,1,f +12399,6153b,0,1,f +12399,62810,0,1,f +12399,6541,71,2,f +12399,73590c02a,0,2,f +12399,970c00pr0117,25,1,f +12399,970c00pr0118,272,1,f +12399,973pr1385c01,25,1,f +12399,973pr1386c01,272,1,f +12406,10197,0,9,f +12406,11214,72,21,f +12406,11455,0,1,f +12406,13731,0,6,f +12406,15100,0,31,f +12406,15458,0,2,f +12406,15458,14,1,f +12406,15461,0,2,f +12406,15535,0,4,f +12406,18575,0,1,f +12406,18651,0,30,f +12406,18654,72,1,t +12406,18654,72,8,f +12406,18938,0,1,f +12406,18939,71,1,f +12406,18943,0,2,f +12406,18948,15,2,f +12406,19475,14,1,f +12406,19478,14,2,f +12406,19482,1,1,f +12406,22961,71,2,f +12406,24116,0,5,f +12406,2460,72,1,f +12406,26288,1,1,f +12406,26668,9999,1,f +12406,2730,0,3,f +12406,2743,0,2,f +12406,2780,0,132,f +12406,2780,0,2,t +12406,2817,0,3,f +12406,2819,72,1,f +12406,3021,0,5,f +12406,3024,47,1,t +12406,3024,47,2,f +12406,3068b,0,3,f +12406,32002,19,1,t +12406,32002,19,7,f +12406,32013,25,4,f +12406,32014,0,1,f +12406,32015,71,1,f +12406,32016,0,1,f +12406,32017,71,2,f +12406,32018,0,2,f +12406,32034,25,2,f +12406,32034,71,6,f +12406,32039,0,14,f +12406,32039,71,7,f +12406,32054,0,26,f +12406,32054,4,4,f +12406,32056,0,6,f +12406,32062,4,25,f +12406,32063,14,9,f +12406,32065,0,8,f +12406,32073,14,8,f +12406,32123b,71,1,t +12406,32123b,14,1,t +12406,32123b,14,10,f +12406,32123b,71,18,f +12406,32126,0,4,f +12406,32138,0,2,f +12406,32140,14,4,f +12406,32140,0,31,f +12406,32184,14,2,f +12406,32184,71,7,f +12406,32199,0,2,f +12406,32270,0,2,f +12406,32271,0,5,f +12406,32278,0,7,f +12406,32291,72,3,f +12406,32316,0,20,f +12406,32316,14,11,f +12406,32449,14,6,f +12406,32449,72,4,f +12406,32523,14,2,f +12406,32523,72,4,f +12406,32524,0,2,f +12406,32524,72,3,f +12406,32524,25,2,f +12406,32525,72,12,f +12406,32526,72,7,f +12406,32526,14,5,f +12406,32526,0,4,f +12406,32556,19,7,f +12406,32557,71,1,f +12406,33299a,0,5,f +12406,3623,0,8,f +12406,3648b,72,1,f +12406,3666,0,8,f +12406,3701,0,2,f +12406,3705,4,5,f +12406,3706,0,13,f +12406,3708,4,1,f +12406,3713,71,7,f +12406,3713,4,9,f +12406,3713,4,1,t +12406,3713,71,1,t +12406,3737,0,2,f +12406,3749,19,3,f +12406,4032a,0,4,f +12406,40490,0,24,f +12406,40490,14,2,f +12406,41239,2,1,f +12406,41239,0,1,f +12406,41239,14,3,f +12406,41677,72,10,f +12406,41678,0,6,f +12406,42003,0,11,f +12406,42003,14,2,f +12406,4274,71,8,f +12406,4274,71,1,t +12406,4274,1,1,t +12406,4274,1,13,f +12406,4286,0,1,f +12406,43093,1,51,f +12406,43857,0,15,f +12406,43857,14,1,f +12406,44294,71,8,f +12406,4519,71,22,f +12406,4697b,71,1,t +12406,4697b,71,3,f +12406,4716,71,1,f +12406,47223b,72,3,f +12406,48989,71,2,f +12406,5102c04,1,3,f +12406,5102c10,1,4,f +12406,5102c23,0,1,f +12406,5102c23,71,1,f +12406,5102c27,71,1,f +12406,5102c32,0,1,f +12406,5102c40,71,1,f +12406,5102c48,0,2,f +12406,5102c48,71,1,f +12406,55013,72,3,f +12406,55976,0,4,f +12406,56145,14,4,f +12406,58176,182,1,f +12406,59426,72,6,f +12406,59443,0,8,f +12406,59443,14,1,f +12406,59443,25,7,f +12406,60483,25,3,f +12406,60483,72,24,f +12406,60484,14,3,f +12406,60485,14,4,f +12406,6141,47,3,f +12406,6141,47,1,t +12406,6141,36,1,t +12406,6141,36,2,f +12406,63864,0,7,f +12406,63869,0,16,f +12406,64391,0,1,f +12406,64683,0,1,f +12406,6536,0,24,f +12406,6536,14,8,f +12406,6558,1,96,f +12406,6628,0,1,f +12406,6629,1,2,f +12406,6632,0,14,f +12406,6632,14,4,f +12406,6636,0,4,f +12406,75c08,25,3,f +12406,75c09,0,4,f +12406,85940,0,1,f +12406,87082,0,2,f +12406,87082,71,4,f +12406,87083,72,5,f +12406,87761,0,1,f +12406,92907,71,2,f +12406,98585,71,3,f +12406,99008,19,5,f +12406,99021,72,3,f +12406,99773,72,4,f +12407,30556,3,1,f +12407,30599,22,1,f +12407,30600pb05,3,1,f +12407,30603pb15,3,1,f +12407,racerbase,3,1,f +12407,rb00168,0,2,f +12408,2420,0,2,f +12408,2431,14,1,f +12408,2446,4,1,f +12408,2447,41,1,f +12408,3062b,14,2,f +12408,3069b,0,1,f +12408,3298p57,0,1,f +12408,3626apr0001,14,1,f +12408,3641,0,2,f +12408,3710,0,2,f +12408,3829c01,14,1,f +12408,3937,14,1,f +12408,3938,0,1,f +12408,4084,0,2,f +12408,4286,0,2,f +12408,4600,0,2,f +12408,4624,15,4,f +12408,4732,0,1,f +12408,970c00,15,1,f +12408,973c01,15,1,f +12412,11477,272,3,f +12412,13548,1,2,f +12412,15712,72,1,f +12412,3004,272,1,f +12412,3021,72,1,f +12412,30236,72,1,f +12412,30375,1,1,f +12412,3039,272,1,f +12412,32187,71,1,f +12412,3794a,272,1,f +12412,4081b,1,2,f +12412,48729a,57,2,f +12412,54200,71,1,f +12412,6019,71,2,f +12412,60849,71,2,f +12412,6141,57,4,f +12412,98313,148,2,f +12412,99206,71,2,f +12412,99207,71,2,f +12412,99781,0,2,f +12414,2357,72,2,f +12414,2357,4,3,f +12414,2412b,0,2,f +12414,2458,72,1,f +12414,2496,0,2,f +12414,2540,0,1,f +12414,3001,4,2,f +12414,3002,4,6,f +12414,3003,71,4,f +12414,3003,4,2,f +12414,3004,71,2,f +12414,3004,19,3,f +12414,3004,4,8,f +12414,3005,4,8,f +12414,3009,4,2,f +12414,3010,4,5,f +12414,3010,71,5,f +12414,3020,2,3,f +12414,3020,15,4,f +12414,3021,71,1,f +12414,3022,19,5,f +12414,3023,15,3,f +12414,3023,4,5,f +12414,3023,71,4,f +12414,3032,2,1,f +12414,3037,272,10,f +12414,3038,272,4,f +12414,3039,72,1,f +12414,3039,272,5,f +12414,3039,2,2,f +12414,3040b,71,2,f +12414,3046a,272,4,f +12414,30586,71,2,f +12414,3062b,0,1,f +12414,3069b,73,2,f +12414,3069b,72,5,f +12414,3069b,15,6,f +12414,32001,15,2,f +12414,32028,28,4,f +12414,33078,4,1,f +12414,3460,15,2,f +12414,3460,4,2,f +12414,3460,71,1,f +12414,3622,71,7,f +12414,3622,4,20,f +12414,3623,15,2,f +12414,3623,4,4,f +12414,3626cpr0645,14,1,f +12414,3659,4,2,f +12414,3679,71,1,f +12414,3680,0,1,f +12414,3710,71,1,f +12414,3710,4,4,f +12414,3832,15,2,f +12414,3832,4,1,f +12414,3899,14,1,f +12414,3941,70,3,f +12414,3958,1,1,f +12414,3958,10,1,f +12414,4162,72,1,f +12414,4162,15,3,f +12414,42511,1,1,f +12414,4286,2,4,f +12414,4445,272,6,f +12414,4589,15,5,f +12414,4589,46,1,f +12414,4599b,0,1,t +12414,4599b,0,1,f +12414,4623,72,1,f +12414,48729b,0,1,f +12414,48729b,0,1,t +12414,54200,71,3,f +12414,54200,71,1,t +12414,54200,272,5,f +12414,54200,272,1,t +12414,57895,47,2,f +12414,60592,15,5,f +12414,60596,15,3,f +12414,60601,47,5,f +12414,60623,14,1,f +12414,6141,14,1,t +12414,6141,4,1,t +12414,6141,14,4,f +12414,6141,182,4,f +12414,6141,0,2,f +12414,6141,27,1,t +12414,6141,4,4,f +12414,6141,0,1,t +12414,6141,27,6,f +12414,6141,182,1,t +12414,62810,0,1,f +12414,73983,71,1,f +12414,73983,4,1,f +12414,87087,0,1,f +12414,91405,10,1,f +12414,92593,15,3,f +12414,970c00,19,1,f +12414,973c01,1,1,f +12414,99207,71,1,f +12415,3037,4,14,f +12415,3038,4,4,f +12415,3039,4,8,f +12415,3040b,4,4,f +12415,3041,4,3,f +12415,3042,4,2,f +12415,3043,4,2,f +12415,3044b,4,2,f +12415,3045,4,8,f +12415,3046a,4,8,f +12415,3048c,4,2,f +12415,3049b,4,2,f +12416,3020,2,1,f +12416,3039,72,1,f +12416,3062b,19,2,f +12416,3062b,19,1,t +12416,32530,0,1,f +12416,3673,71,1,f +12416,3673,71,2,t +12416,88289,308,1,f +12417,3031,4,1,f +12417,3460,15,2,f +12417,3659,5,2,f +12417,4085c,15,1,f +12417,4589,46,1,f +12417,4740,45,1,f +12417,6187,71,1,f +12419,2444,14,1,f +12419,2711,0,2,f +12419,2712,7,2,f +12419,2730,14,4,f +12419,2743,0,4,f +12419,2780,0,40,f +12419,2825,14,6,f +12419,2825,7,2,f +12419,2825,0,2,f +12419,2904,0,1,f +12419,3023,14,16,f +12419,3023,0,11,f +12419,3069b,0,2,f +12419,3069b,7,4,f +12419,3070b,14,3,f +12419,3460,14,4,f +12419,3460,0,2,f +12419,3623,14,4,f +12419,3641,0,2,f +12419,3647,7,6,f +12419,3648a,7,2,f +12419,3650c,7,1,f +12419,3666,14,1,f +12419,3666,0,6,f +12419,3673,7,4,f +12419,3700,14,8,f +12419,3700,0,15,f +12419,3701,0,9,f +12419,3701,14,7,f +12419,3702,14,4,f +12419,3702,0,2,f +12419,3703,14,2,f +12419,3703,0,2,f +12419,3704,0,3,f +12419,3705,0,8,f +12419,3706,0,12,f +12419,3707,0,3,f +12419,3708,0,3,f +12419,3709,0,8,f +12419,3709,14,4,f +12419,3710,14,6,f +12419,3710,0,8,f +12419,3713,7,22,f +12419,3737,0,2,f +12419,3738,0,3,f +12419,3738,14,5,f +12419,3743,7,2,f +12419,3749,7,6,f +12419,3795,14,1,f +12419,3894,0,10,f +12419,3894,14,6,f +12419,3895,14,5,f +12419,3895,0,4,f +12419,3941,46,1,f +12419,4019,7,2,f +12419,4032a,15,1,f +12419,4143,7,8,f +12419,4150,15,1,f +12419,4185,7,4,f +12419,4261,7,4,f +12419,4262,0,2,f +12419,4263,0,2,f +12419,4265b,7,32,f +12419,4274,7,3,f +12419,4282,0,6,f +12419,4442,0,6,f +12419,4477,14,2,f +12419,4477,0,2,f +12419,4519,0,4,f +12419,4716,0,2,f +12419,6536,7,1,f +12419,6538a,7,2,f +12419,6553,7,4,f +12419,6558,0,4,f +12419,6579,0,6,f +12419,6580a,15,6,f +12419,6714c01,0,1,f +12419,9244,7,2,f +12420,251,4,1,f +12420,3004,0,1,f +12420,3004,14,1,f +12420,3020,0,1,f +12420,3023,0,2,f +12420,3032,4,1,f +12420,3040b,4,4,f +12420,3626apr0001,14,1,f +12420,3679,7,1,f +12420,3844,0,1,f +12420,4488,0,2,f +12420,4489a,6,2,f +12420,4491a,14,1,f +12420,4493c01pb02,0,1,f +12420,4497,6,1,f +12420,4587,14,1,f +12420,4623,0,1,f +12420,4738b,7,1,f +12420,4739b,7,1,f +12420,970c00,0,1,f +12420,973p43c01,1,1,f +12424,3626bpr0830,14,1,f +12424,41879a,308,1,f +12424,53705,148,2,f +12424,59231pr0004,148,1,f +12424,60747,148,1,f +12424,60750,0,1,f +12424,87994,70,1,f +12424,88646,0,1,f +12424,973pr1827c01,0,1,f +12426,3020,30,1,f +12426,3021,15,2,f +12426,3062b,6,1,f +12426,3068b,14,1,f +12426,33183,70,2,f +12426,33291,31,1,f +12426,33291,2,1,f +12426,3626b,15,1,f +12426,3688,2,1,f +12426,3839b,15,2,f +12426,3878,0,1,f +12426,4070,15,1,f +12426,6141,4,1,f +12426,6141,297,1,f +12426,85984,14,1,f +12426,90509,85,2,f +12426,90540,322,2,f +12426,93095,14,1,f +12426,98100,15,1,f +12427,sh002,9999,1,f +12431,2335,15,2,f +12431,2420,0,4,f +12431,2445,0,1,f +12431,2454a,72,2,f +12431,2458,71,1,f +12431,2504stk01,9999,1,t +12431,2555,72,2,f +12431,2654,72,1,f +12431,2654,4,2,f +12431,2780,0,1,t +12431,2780,0,10,f +12431,2817,71,1,f +12431,2877,0,3,f +12431,3001,0,2,f +12431,3002,72,2,f +12431,3003,19,1,f +12431,3004,19,2,f +12431,3008,72,2,f +12431,3009,0,4,f +12431,3010,0,2,f +12431,30136,70,16,f +12431,30137,70,5,f +12431,30173b,135,4,f +12431,30173b,0,2,f +12431,30176,2,1,f +12431,30177,15,1,f +12431,3020,19,2,f +12431,3021,72,4,f +12431,3022,0,1,f +12431,3023,0,5,f +12431,30237a,72,4,f +12431,3028,72,1,f +12431,3029,72,2,f +12431,3030,19,1,f +12431,3034,72,1,f +12431,30363,0,2,f +12431,30374,71,4,f +12431,30503,1,1,f +12431,30503,4,1,f +12431,3062b,2,5,f +12431,3062b,4,4,f +12431,3062b,70,6,f +12431,3068b,0,2,f +12431,3069b,4,2,f +12431,32000,72,4,f +12431,32001,0,2,f +12431,32014,71,2,f +12431,32039,0,2,f +12431,32054,4,2,f +12431,32062,4,2,f +12431,32073,71,2,f +12431,32270,0,1,f +12431,32278,0,2,f +12431,3245c,70,4,f +12431,3460,72,2,f +12431,3623,4,2,f +12431,3626bpr0747,14,1,f +12431,3626bpr0748,14,1,f +12431,3648b,72,2,f +12431,3660,19,1,f +12431,3665,0,4,f +12431,3673,71,5,f +12431,3673,71,1,t +12431,3700,70,4,f +12431,3700,0,8,f +12431,3701,71,6,f +12431,3709,0,2,f +12431,3710,19,11,f +12431,3710,0,2,f +12431,3747b,0,2,f +12431,3749,19,1,f +12431,3795,1,1,f +12431,3795,4,1,f +12431,3795,19,2,f +12431,3830,0,4,f +12431,3831,0,4,f +12431,3894,72,2,f +12431,3941,0,4,f +12431,3941,4,4,f +12431,3942c,72,1,f +12431,4070,70,6,f +12431,4162,19,1,f +12431,4274,1,4,f +12431,4274,1,1,t +12431,4286,0,4,f +12431,43093,1,1,t +12431,43093,1,8,f +12431,43888,70,6,f +12431,43898,15,1,f +12431,43899,71,1,f +12431,4497,135,2,f +12431,4599b,71,4,f +12431,4621818,9999,1,f +12431,4621821,9999,1,f +12431,4621822,9999,1,f +12431,4621832,9999,1,f +12431,4621849,9999,1,f +12431,4865a,14,2,f +12431,48729b,72,1,f +12431,48729b,72,1,t +12431,50950,72,2,f +12431,53451,179,4,f +12431,53451,135,1,t +12431,53705,132,3,f +12431,54200,4,12,f +12431,54200,182,1,t +12431,54200,46,1,t +12431,54200,4,1,t +12431,54200,182,2,f +12431,54200,46,2,f +12431,57895pr0001,47,4,f +12431,59900,70,9,f +12431,60479,0,2,f +12431,60596,4,4,f +12431,60752,135,1,f +12431,61184,71,2,f +12431,6126b,57,2,f +12431,6141,15,1,t +12431,6141,0,17,f +12431,6141,15,14,f +12431,6141,0,1,t +12431,6232,72,2,f +12431,63868,71,2,f +12431,63965,70,1,f +12431,6541,72,8,f +12431,6587,28,1,f +12431,6636,19,1,f +12431,87601,70,2,f +12431,92338,72,2,f +12431,92547pr0013,15,1,f +12431,92691,15,1,f +12431,93058,297,1,t +12431,93058,297,1,f +12431,93059,19,1,f +12431,93061,15,1,t +12431,93061,15,2,f +12431,93062c01,15,2,f +12431,93064pr0001,15,1,f +12431,93069,15,1,f +12431,93761pr0002,15,1,f +12431,94351pr0003,0,1,f +12431,970c00pr0190,15,2,f +12431,973pr1715c01,15,1,f +12431,973pr1719c01,15,1,f +12432,11269,35,1,f +12432,11270,35,1,f +12432,11271,179,1,f +12432,11281,179,1,f +12432,3749,19,1,t +12432,3749,19,1,f +12432,43093,1,5,f +12432,43093,1,1,t +12432,53451,27,6,f +12432,53451,27,2,t +12432,59443,70,3,f +12432,61403,179,1,f +12432,87745,179,2,f +12432,90608,0,2,f +12432,90611,0,2,f +12432,90617,72,4,f +12432,90626,0,1,f +12432,90640,35,2,f +12432,90641,27,4,f +12432,90661,179,2,f +12432,92217,179,2,f +12432,93575,27,2,f +12432,98313,288,4,f +12432,98570pat01,15,1,f +12432,98571,148,1,f +12433,30133,4,1,f +12433,3626b,15,1,f +12433,3794b,71,1,f +12433,3794b,0,2,f +12433,3836,70,1,f +12433,3878,0,1,f +12433,3943b,15,1,f +12433,4070,15,2,f +12435,3626b,5,1,f +12435,3678bpr0014b,0,1,f +12435,50231,85,1,f +12435,6141,45,1,f +12435,87993,179,1,f +12435,88646,0,1,f +12435,95200,45,1,f +12435,95201pr0004,27,1,f +12435,973pr2110c01,0,1,f +12435,bb578,85,1,f +12438,2412b,71,5,f +12438,2412b,41,2,f +12438,2420,15,4,f +12438,2431,15,2,f +12438,2432,15,1,f +12438,2654,15,1,f +12438,2877,15,2,f +12438,298c02,15,1,t +12438,298c02,15,2,f +12438,3001,71,1,f +12438,3005,71,3,f +12438,3010,15,1,f +12438,30162,72,2,f +12438,3020,15,2,f +12438,3022,15,1,f +12438,3023,71,4,f +12438,3024,15,2,f +12438,30249,15,1,f +12438,3032,15,1,f +12438,30363ps2,15,1,f +12438,3062b,15,4,f +12438,3068b,15,1,f +12438,3069b,15,1,f +12438,3070b,46,3,f +12438,3070b,46,1,t +12438,3298,15,1,f +12438,3460,15,3,f +12438,3665,15,1,f +12438,3794a,71,3,f +12438,3933,15,1,f +12438,3934,15,1,f +12438,4070,15,2,f +12438,4081b,15,4,f +12438,4095,15,2,f +12438,4460b,15,2,f +12438,4589,71,3,f +12438,4740,15,2,f +12438,6019,15,6,f +12438,6141,15,1,t +12438,6141,71,1,t +12438,6141,71,2,f +12438,6141,15,2,f +12440,2356,0,2,f +12440,2356,8,1,f +12440,2412b,7,2,f +12440,2432,0,1,f +12440,2437,34,1,f +12440,2446px2,15,2,f +12440,2447,34,2,f +12440,2453a,15,4,f +12440,2453a,7,2,f +12440,2454a,15,4,f +12440,2456,7,3,f +12440,2456,0,2,f +12440,2456,8,1,f +12440,2460,15,1,f +12440,2479,7,1,f +12440,2513p04,0,1,f +12440,2540,0,1,f +12440,2555,0,2,f +12440,2569,4,1,f +12440,2583,0,2,f +12440,2620,34,1,f +12440,2873,15,1,f +12440,298c02,15,1,f +12440,298c02,4,1,f +12440,3001,4,5,f +12440,3004,15,2,f +12440,3004,4,1,f +12440,3004pb008,7,2,f +12440,3004pc0,15,1,f +12440,3005,7,4,f +12440,30055,0,4,f +12440,3006,15,1,f +12440,3009,7,8,f +12440,3009,8,4,f +12440,3010,0,1,f +12440,3010,7,1,f +12440,3010pr0016,0,2,f +12440,30137,7,1,f +12440,30179,0,4,f +12440,30180,15,2,f +12440,30180,7,1,f +12440,30180p01,7,1,f +12440,30181,0,3,f +12440,30181p01,0,2,f +12440,30183p01,15,1,f +12440,30185c05pb01,0,3,f +12440,30187c01,15,1,f +12440,3020,14,1,f +12440,3022,0,1,f +12440,30225pb01,2,1,f +12440,30235,7,1,f +12440,3032,7,1,f +12440,3039,33,2,f +12440,3039,15,2,f +12440,3039p08,0,2,f +12440,3039px14,15,1,f +12440,3040b,33,4,f +12440,3040p04,7,1,f +12440,3065,46,1,f +12440,3068b,14,1,f +12440,3068bp80,15,1,f +12440,3069b,33,2,f +12440,3069bp02,7,2,f +12440,3069bp0b,15,1,f +12440,3069bp52,15,1,f +12440,3069bp80,15,1,f +12440,3069bpx35,15,1,f +12440,3070b,46,1,f +12440,3070b,36,1,f +12440,3070b,46,1,t +12440,3070b,36,1,t +12440,3460,0,4,f +12440,3475b,8,2,f +12440,3626bp02,14,1,f +12440,3626bp03,14,1,f +12440,3626bp04,14,3,f +12440,3626bpx11,14,2,f +12440,3660,15,2,f +12440,3660,0,2,f +12440,3710,0,2,f +12440,3741,2,3,f +12440,3742,14,9,f +12440,3742,14,3,t +12440,3754,7,3,f +12440,3754,15,8,f +12440,3829c01,15,1,f +12440,3865,2,1,f +12440,3867,2,1,f +12440,3899,47,2,f +12440,3900p01,15,1,f +12440,3901,0,2,f +12440,3957a,7,1,f +12440,3958,0,1,f +12440,3962b,0,3,f +12440,3963,15,2,f +12440,4033,7,1,f +12440,4079,7,5,f +12440,4079,15,1,f +12440,4083,0,3,f +12440,4085c,7,1,f +12440,4151a,8,1,f +12440,4162,4,1,f +12440,4209,0,1,f +12440,4285b,7,1,f +12440,4315,7,1,f +12440,4315,15,1,f +12440,4318,14,1,f +12440,4349,4,2,f +12440,4360,15,1,f +12440,4485,15,1,f +12440,4485pb01,0,2,f +12440,4589,15,2,f +12440,4595,0,1,f +12440,4623,7,2,f +12440,4740,34,1,f +12440,4871,15,1,f +12440,55298,8,1,f +12440,6014a,15,4,f +12440,6015,0,4,f +12440,6016,0,1,f +12440,6019,7,1,f +12440,6019,15,2,f +12440,6093,0,1,f +12440,6140,7,2,f +12440,6141,34,1,f +12440,6141,0,1,f +12440,6141,36,9,f +12440,6141,0,1,t +12440,6141,34,1,t +12440,6141,36,1,t +12440,6141,33,2,f +12440,6160c02,0,1,f +12440,6187,7,1,f +12440,6212,0,5,f +12440,6583,8,6,f +12440,6636,14,4,f +12440,76041c03,0,4,f +12440,970c00,0,5,f +12440,970c00,7,2,f +12440,973pr0145c01,15,1,f +12440,973px20c01,0,2,f +12440,973px67c01,0,2,f +12440,973px9c01,0,2,f +12441,15,0,2,f +12441,17,1,2,f +12441,27c,14,1,f +12441,3001a,1,4,f +12441,3001a,15,1,f +12441,3004,15,12,f +12441,3004,0,1,f +12441,3005,15,8,f +12441,3009,15,3,f +12441,3010,15,5,f +12441,3010,47,1,f +12441,3020,7,6,f +12441,3020,14,2,f +12441,3021,7,5,f +12441,3022,0,4,f +12441,3023,15,2,f +12441,3023,7,2,f +12441,3023,14,6,f +12441,3024,0,8,f +12441,3024,15,4,f +12441,3027,7,1,f +12441,3032,14,1,f +12441,3037,14,1,f +12441,3040a,0,2,f +12441,3087c,14,2,f +12441,3137c01,0,2,f +12441,3139,0,4,f +12441,3194,15,2,f +12441,3195,15,2,f +12441,3430c02,0,1,f +12441,3488,0,4,f +12441,3624,4,2,f +12441,3626a,14,2,f +12441,3660a,0,2,f +12441,3660a,15,4,f +12441,736c02,0,1,f +12444,2412b,25,3,f +12444,2431,25,1,f +12444,2436,0,3,f +12444,30027a,0,4,f +12444,30028,0,4,f +12444,3020,0,1,f +12444,3021,25,1,f +12444,3022,0,1,f +12444,3031,0,1,f +12444,3068b,25,1,f +12444,3069b,25,2,f +12444,3710,0,1,f +12444,3795,25,1,f +12444,4589,72,2,f +12444,50948,0,1,f +12444,50949,0,1,f +12444,50950,25,2,f +12444,54200,0,1,t +12444,54200,25,2,f +12444,54200,25,1,t +12444,54200,0,2,f +12444,6141,71,1,t +12444,6141,71,6,f +12444,6157,0,2,f +12444,87079,0,1,f +12446,3707,0,50,f +12447,11214,72,2,f +12447,18663,47,1,f +12447,19888,4,2,f +12447,19888,1,1,f +12447,20551,1,1,f +12447,2432,14,1,f +12447,2476a,28,4,f +12447,2540,71,2,f +12447,2654,15,2,f +12447,2780,0,2,f +12447,298c02,14,2,f +12447,3009,27,4,f +12447,3010,14,1,f +12447,30136,71,3,f +12447,3020,0,3,f +12447,3021,71,3,f +12447,3022,72,2,f +12447,3023,15,4,f +12447,3023,46,2,f +12447,3023,0,2,f +12447,30236,72,2,f +12447,30374,42,2,f +12447,3062b,42,1,f +12447,3068b,15,1,f +12447,32013,0,1,f +12447,32059,15,1,f +12447,32062,4,1,f +12447,32064a,14,2,f +12447,32184,71,2,f +12447,3298,72,2,f +12447,3626cpr1625,27,1,f +12447,3626cpr1626,2,1,f +12447,3626cpr1627,78,1,f +12447,3626cpr1767,78,1,f +12447,3700,0,5,f +12447,3702,0,1,f +12447,3710,15,3,f +12447,3749,19,2,f +12447,3832,0,3,f +12447,40378,179,6,f +12447,40379,179,6,f +12447,4070,72,4,f +12447,41678,0,1,f +12447,42003,0,2,f +12447,43093,1,6,f +12447,43722,15,1,f +12447,43723,15,1,f +12447,4740,45,2,f +12447,4740,0,2,f +12447,48092,71,4,f +12447,4871,15,1,f +12447,50955,71,1,f +12447,50956,71,1,f +12447,51739,15,2,f +12447,54200,15,4,f +12447,54200,71,4,f +12447,57539pat0001,47,1,f +12447,59900,71,5,f +12447,59900,35,1,f +12447,60208,71,2,f +12447,60478,72,2,f +12447,61184,71,1,f +12447,61409,0,2,f +12447,6141,27,4,f +12447,6141,15,4,f +12447,64179,71,1,f +12447,6587,28,2,f +12447,85974,226,1,f +12447,85984,0,4,f +12447,87079,15,1,f +12447,88930,15,1,f +12447,89523,72,1,f +12447,92280,15,2,f +12447,92582,71,2,f +12447,92947,0,1,f +12447,95188,71,2,f +12447,95198,42,1,f +12447,970c00,1,1,f +12447,970c00,0,1,f +12447,970c00pr0768,4,1,f +12447,970x021,1,1,f +12447,973pr1957c01,1,1,f +12447,973pr2939c01,2,1,f +12447,973pr2940c01,0,1,f +12447,973pr2941c01,1,1,f +12447,98585,42,1,f +12447,98726,0,1,f +12447,99207,71,2,f +12448,3036,7,1,f +12448,3134,15,1,f +12448,393c48,15,1,f +12448,x456c01,47,1,f +12449,3002a,14,12,f +12449,3003,0,3,f +12449,3003,14,12,f +12449,3003,15,1,f +12449,3004,14,183,f +12449,3004,15,3,f +12449,3004,0,9,f +12449,3005,4,2,f +12449,3005,14,71,f +12449,3008,14,15,f +12449,3009,14,29,f +12449,3010,14,30,f +12449,3020,0,9,f +12449,3020,15,3,f +12449,3020,7,2,f +12449,3021,7,6,f +12449,3022,15,2,f +12449,3022,7,4,f +12449,3022,0,6,f +12449,3022,14,6,f +12449,3023,4,1,f +12449,3023,7,4,f +12449,3023,15,2,f +12449,3023,0,6,f +12449,3024,7,8,f +12449,3032,7,6,f +12449,3032,14,2,f +12449,3034,7,2,f +12449,3036,4,1,f +12449,3039,0,9,f +12449,3039,15,3,f +12449,3040b,4,2,f +12449,3062a,14,6,f +12449,3069b,0,3,f +12449,3069b,15,1,f +12449,3069b,14,3,f +12449,3087c,4,6,f +12449,3176,4,2,f +12449,3185,0,2,f +12449,3307,14,8,f +12449,3308,14,6,f +12449,3460,14,2,f +12449,3581,14,2,f +12449,3596,15,1,f +12449,3622,14,62,f +12449,3623,4,6,f +12449,3623,7,2,f +12449,3626apr0001,14,14,f +12449,3633,4,2,f +12449,3644,4,2,f +12449,3659,14,3,f +12449,3660,14,12,f +12449,3660,15,2,f +12449,3660,0,6,f +12449,3665,14,8,f +12449,3665,0,24,f +12449,3673,7,2,f +12449,3684,14,6,f +12449,3685,14,4,f +12449,3700,4,2,f +12449,3700,14,3,f +12449,3710,7,4,f +12449,3795,7,8,f +12449,3830,14,8,f +12449,3831,14,8,f +12449,3840,7,14,f +12449,3842a,7,4,f +12449,3843,0,1,f +12449,3843,7,1,f +12449,3843,15,1,f +12449,3843,4,1,f +12449,3844,7,10,f +12449,3846,7,9,f +12449,3847a,7,5,f +12449,3848,7,5,f +12449,3849,7,4,f +12449,3857,2,1,f +12449,3865,2,4,f +12449,4739b,6,2,f +12449,56823,0,1,f +12449,73037,14,1,f +12449,970c00,0,2,f +12449,970c00,4,2,f +12449,970c00,15,2,f +12449,970c00,1,8,f +12449,973c01,15,2,f +12449,973c02,4,2,f +12449,973c07,1,8,f +12449,973c18,0,2,f +12451,2357,1,2,f +12451,2412b,4,2,f +12451,2431,14,2,f +12451,2432,15,1,f +12451,2446,15,1,f +12451,2446,0,1,f +12451,2447,41,1,t +12451,2447,41,2,f +12451,2450,0,2,f +12451,2460,7,1,f +12451,2479,0,1,f +12451,2847c02,0,1,f +12451,2926,7,2,f +12451,2983,7,1,f +12451,298c02,14,2,f +12451,30000,8,1,f +12451,3001,14,1,f +12451,3001,1,4,f +12451,3002,14,1,f +12451,3003,0,1,f +12451,3004,14,5,f +12451,3005,0,1,f +12451,3010,1,6,f +12451,30148,0,1,f +12451,30180,14,1,f +12451,30183,15,1,f +12451,3020,15,2,f +12451,3020,4,1,f +12451,3021,1,1,f +12451,3023,14,3,f +12451,3024,36,5,f +12451,30248,0,1,f +12451,30250pr01,15,1,f +12451,30251,33,1,f +12451,3031,1,2,f +12451,3035,0,1,f +12451,30359a,0,2,f +12451,30517,0,4,f +12451,30518,0,3,f +12451,30520,1,2,f +12451,3068b,14,1,f +12451,3068bpx6,15,1,f +12451,3069b,1,6,f +12451,3069bp02,7,1,f +12451,3069bp12,14,2,f +12451,3069bp68,15,1,f +12451,32062,4,4,f +12451,32064b,0,3,f +12451,32123b,7,1,t +12451,32123b,7,1,f +12451,32193,0,6,f +12451,3298,0,1,f +12451,33211,8,4,f +12451,3403c01,0,1,f +12451,3460,4,2,f +12451,3460,0,2,f +12451,3475b,0,2,f +12451,3626bp04,14,1,f +12451,3626bp69,14,1,f +12451,3626bpx33,14,1,f +12451,3700,1,5,f +12451,3701,0,2,f +12451,3705,15,7,f +12451,3708,0,3,f +12451,3708,4,4,f +12451,3709,7,9,f +12451,3710,0,2,f +12451,3710,4,1,f +12451,3713,7,1,t +12451,3713,7,2,f +12451,3747b,15,1,f +12451,3829c01,15,1,f +12451,3839b,0,1,f +12451,3857,7,1,f +12451,3865,7,1,f +12451,3941,47,3,f +12451,4079,15,1,f +12451,4185,7,2,f +12451,4287,0,2,f +12451,4360,7,1,f +12451,4485,1,1,f +12451,4510,7,2,f +12451,4589,4,2,f +12451,4589,7,1,f +12451,4589,42,2,f +12451,4623,15,1,f +12451,4859,4,1,f +12451,4865a,0,2,f +12451,5306bc026,0,1,f +12451,6014a,15,4,f +12451,6015,0,4,f +12451,6019,7,1,f +12451,6112,1,1,f +12451,6141,15,1,t +12451,6141,15,2,f +12451,6152,33,1,f +12451,6153a,0,1,f +12451,6232,1,2,f +12451,6538b,7,6,f +12451,6575,7,1,t +12451,6585,0,1,f +12451,6589,7,2,f +12451,71427c01,7,1,f +12451,85546,14,2,t +12451,85546,14,1,f +12451,970c00,1,1,f +12451,970c00,0,2,f +12451,973px66c01,0,1,f +12451,973px75c01,15,1,f +12451,973px9c01,0,1,f +12451,paper01,89,1,f +12451,paper03,89,1,f +12452,10197,0,3,f +12452,11214,72,6,f +12452,11478,0,3,f +12452,11946,4,1,f +12452,11947,4,1,f +12452,15100,0,10,f +12452,15458,15,2,f +12452,15462,28,5,f +12452,18651,0,10,f +12452,18945,15,7,f +12452,2736,71,3,f +12452,2780,0,2,t +12452,2780,0,117,f +12452,2850a,71,2,f +12452,2851,14,2,f +12452,2852,71,2,f +12452,2853,14,2,f +12452,30367c,4,1,f +12452,32005a,72,1,f +12452,32013,15,12,f +12452,32034,15,5,f +12452,32039,4,5,f +12452,32054,71,10,f +12452,32056,71,4,f +12452,32062,4,20,f +12452,32072,0,5,f +12452,32073,71,7,f +12452,32123b,14,1,t +12452,32123b,14,7,f +12452,32126,0,2,f +12452,32140,1,2,f +12452,32140,15,6,f +12452,32184,71,9,f +12452,32192,0,2,f +12452,32270,0,1,f +12452,32271,71,2,f +12452,32278,4,3,f +12452,32278,71,2,f +12452,32316,4,10,f +12452,32523,1,2,f +12452,32523,15,7,f +12452,32524,71,6,f +12452,32524,15,3,f +12452,32525,4,10,f +12452,32526,4,4,f +12452,32556,19,1,f +12452,33299a,71,2,f +12452,3673,71,2,f +12452,3673,71,1,t +12452,3705,0,8,f +12452,3706,0,3,f +12452,3707,0,2,f +12452,3708,0,2,f +12452,3713,4,10,f +12452,3713,4,1,t +12452,3749,19,3,f +12452,3941,41,8,f +12452,4032a,4,1,f +12452,40490,15,4,f +12452,41239,15,4,f +12452,41669,15,2,f +12452,41677,4,2,f +12452,42003,0,12,f +12452,42610,71,2,f +12452,4274,1,7,f +12452,4274,1,1,t +12452,43093,1,24,f +12452,44294,71,3,f +12452,4519,71,11,f +12452,45590,0,2,f +12452,48496,0,1,f +12452,55013,72,1,f +12452,56903,15,2,f +12452,57585,71,1,f +12452,59426,72,1,f +12452,59443,71,8,f +12452,59443,4,8,f +12452,60208,15,1,f +12452,60483,0,4,f +12452,61254,0,2,f +12452,6141,47,4,f +12452,6141,47,1,t +12452,62462,80,2,f +12452,62531,15,2,f +12452,63869,71,4,f +12452,64391,4,1,f +12452,64391,15,1,f +12452,64393,15,1,f +12452,64681,15,1,f +12452,64683,4,1,f +12452,64683,15,1,f +12452,64782,15,2,f +12452,6536,15,12,f +12452,6536,71,2,f +12452,6558,1,29,f +12452,6572,71,1,f +12452,6589,19,3,f +12452,6628,0,4,f +12452,6629,15,4,f +12452,6632,0,2,f +12452,85543,15,1,f +12452,87082,71,11,f +12452,87083,72,1,f +12452,87408,0,1,f +12452,92409,0,2,f +12452,92907,71,3,f +12452,98138,34,1,f +12452,98138,36,2,f +12452,98138,36,1,t +12452,98138,34,1,t +12452,99012,72,3,f +12452,99773,71,7,f +12453,10166pr0001,0,1,f +12453,3068bpr0005,322,1,f +12453,3626bpr1027,14,1,f +12453,4150pr0011b,0,1,f +12453,88646,0,1,f +12453,970c00pr0380,272,1,f +12453,973pr2121c01,71,1,f +12454,10187,179,2,f +12454,10187,179,1,t +12454,14769,158,1,t +12454,14769,158,1,f +12454,14769pr1022,158,1,f +12454,15619,0,1,t +12454,15619,0,1,f +12454,15712,0,2,f +12454,16965,0,1,f +12454,18585,0,1,f +12454,18590,0,1,f +12454,18591,47,1,f +12454,18592,2,1,f +12454,2654,0,1,f +12454,3001,0,1,f +12454,30173b,158,2,f +12454,3021,2,4,f +12454,30238,42,1,f +12454,30374,0,1,f +12454,30602,288,2,f +12454,3626cpr1679,42,1,f +12454,43712,288,1,f +12454,43713,288,1,f +12454,43887,0,1,f +12454,55236,288,1,f +12454,6141,158,1,t +12454,6141,158,2,f +12454,64644,378,1,t +12454,64644,378,1,f +12454,87087,0,2,f +12454,88283,0,1,f +12454,89522,378,2,f +12454,89522,378,1,t +12454,93058,297,2,f +12454,970x141pr0950,42,1,f +12454,973pr3020c01,288,1,f +12454,99780,0,3,f +12454,99781,0,3,f +12455,298c02,7,2,f +12455,298c02,0,1,f +12455,3020,7,1,f +12455,3626apr0001,14,1,f +12455,3838,14,1,f +12455,3839b,7,1,f +12455,3842b,14,1,f +12455,4229,0,2,f +12455,4349,7,2,f +12455,4588,0,3,f +12455,4589,36,1,f +12455,4598,7,1,f +12455,4733,0,1,f +12455,4735,0,2,f +12455,4740,36,2,f +12455,970c00,14,1,f +12455,973p90c04,14,1,f +12456,2339,0,2,f +12456,2341,0,4,f +12456,2343,47,2,f +12456,2357,7,2,f +12456,2362a,0,2,f +12456,2417,2,4,f +12456,2449,7,4,f +12456,2453a,0,2,f +12456,2453a,7,1,f +12456,2489,6,1,f +12456,2540,7,1,f +12456,2546,8,1,f +12456,2555,0,4,f +12456,2586p4b,7,1,f +12456,3001,7,1,f +12456,3004,7,2,f +12456,3004,0,6,f +12456,3005,0,4,f +12456,3005,7,6,f +12456,3020,0,4,f +12456,3023,6,2,f +12456,3023,0,10,f +12456,3024,46,1,f +12456,3024,0,2,f +12456,3032,4,4,f +12456,3040b,0,10,f +12456,3040b,7,5,f +12456,3062b,0,1,f +12456,3068bp40,15,1,f +12456,3308,0,2,f +12456,3581,0,2,f +12456,3582,1,2,f +12456,3622,0,4,f +12456,3622,7,1,f +12456,3623,0,6,f +12456,3626bpr0001,14,1,f +12456,3626bpx96,14,1,f +12456,3684,7,1,f +12456,3710,0,2,f +12456,3795,7,2,f +12456,3830,0,2,f +12456,3831,0,2,f +12456,3847,8,1,f +12456,3865,2,2,f +12456,3958,4,2,f +12456,4070,7,2,f +12456,4081b,0,1,f +12456,4085c,0,8,f +12456,4287,0,6,f +12456,4477,0,4,f +12456,4497,6,2,f +12456,4524,0,1,f +12456,4529,0,1,f +12456,4589,0,1,f +12456,4623,7,1,f +12456,4738a,6,1,f +12456,4739a,6,1,f +12456,4864a,0,2,f +12456,6020,6,1,f +12456,6044,0,8,f +12456,6066,0,2,f +12456,6066,8,2,f +12456,6082,8,2,f +12456,6122,0,1,f +12456,6123,8,2,f +12456,6124,21,1,f +12456,6126a,57,1,f +12456,6131,1,1,f +12456,6132,15,1,f +12456,6141,36,2,f +12456,6141,36,1,t +12456,6141,34,2,f +12456,6141,34,1,t +12456,87685,1,1,f +12456,87685,1,1,t +12456,87686,1,1,t +12456,87686,1,1,f +12456,87687,1,2,f +12456,970c00,1,1,f +12456,970x021,0,1,f +12456,973p46c02,1,1,f +12456,973pb0105c02,4,1,f +12460,2412b,0,1,f +12460,2412b,14,4,f +12460,2431,14,2,f +12460,2780,0,1,t +12460,2780,0,139,f +12460,2817,0,3,f +12460,2819,71,1,f +12460,2825,71,16,f +12460,2850a,71,6,f +12460,2851,14,6,f +12460,2852,71,6,f +12460,2853,71,2,f +12460,2854,72,2,f +12460,2905,0,4,f +12460,3010,14,2,f +12460,3022,0,1,f +12460,3024,47,2,f +12460,3034,14,2,f +12460,30374,0,1,f +12460,3068b,0,2,f +12460,32002,72,1,t +12460,32002,72,10,f +12460,32009,72,2,f +12460,32009,0,2,f +12460,32013,0,19,f +12460,32014,0,2,f +12460,32015,14,2,f +12460,32015,0,5,f +12460,32017,14,2,f +12460,32018,14,2,f +12460,32030,0,1,f +12460,32034,0,7,f +12460,32039,4,1,f +12460,32039,0,4,f +12460,32054,0,28,f +12460,32054,4,2,f +12460,32056,71,4,f +12460,32056,1,2,f +12460,32062,4,47,f +12460,32073,71,17,f +12460,32123b,71,6,f +12460,32123b,71,1,t +12460,32140,0,13,f +12460,32184,71,17,f +12460,32192,0,2,f +12460,32198,19,2,f +12460,32269,19,7,f +12460,32269,0,2,f +12460,32270,0,4,f +12460,32271,72,2,f +12460,32271,14,2,f +12460,32278,14,2,f +12460,32278,0,2,f +12460,32291,0,3,f +12460,32316,72,3,f +12460,32316,0,10,f +12460,32316,14,10,f +12460,32333,71,2,f +12460,32348,14,8,f +12460,32449,72,8,f +12460,32523,14,12,f +12460,32524,0,2,f +12460,32524,14,17,f +12460,32525,14,2,f +12460,32525,0,4,f +12460,32526,1,2,f +12460,32526,0,11,f +12460,32556,19,4,f +12460,3460,14,4,f +12460,3623,0,2,f +12460,3647,72,1,f +12460,3648b,72,1,f +12460,3673,71,1,t +12460,3673,71,3,f +12460,3701,14,1,f +12460,3705,0,29,f +12460,3706,0,8,f +12460,3707,0,5,f +12460,3708,0,2,f +12460,3713,71,29,f +12460,3713,71,1,t +12460,3737,0,1,f +12460,3749,19,7,f +12460,3795,14,4,f +12460,3941,0,3,f +12460,4019,71,15,f +12460,40490,14,4,f +12460,40490,0,3,f +12460,40490,72,4,f +12460,41239,14,3,f +12460,41530,71,1,f +12460,4162,14,6,f +12460,41677,72,6,f +12460,41677,4,4,f +12460,41896,14,4,f +12460,42003,0,9,f +12460,42003,72,2,f +12460,42003,14,4,f +12460,42022,14,2,f +12460,4274,1,16,f +12460,4274,1,1,t +12460,43093,1,53,f +12460,43857,14,2,f +12460,44294,71,10,f +12460,4519,71,38,f +12460,45982,0,4,f +12460,4716,71,1,f +12460,48989,71,12,f +12460,50950,14,2,f +12460,55013,72,2,f +12460,55615,71,4,f +12460,59426,72,5,f +12460,59443,4,3,f +12460,59443,71,15,f +12460,59443,0,14,f +12460,6020,0,1,f +12460,60477,14,2,f +12460,60483,72,9,f +12460,60483,0,4,f +12460,60484,72,8,f +12460,60485,71,6,f +12460,61069,72,2,f +12460,6141,36,1,t +12460,6141,47,2,f +12460,6141,47,1,t +12460,6141,182,4,f +12460,6141,182,1,t +12460,6141,36,2,f +12460,61903,71,5,f +12460,61904,72,3,f +12460,61927a,71,3,f +12460,62462,0,10,f +12460,62821,72,2,f +12460,63869,71,8,f +12460,63965,0,1,f +12460,64179,71,3,f +12460,64782,14,1,f +12460,6536,71,17,f +12460,6536,0,2,f +12460,6538b,19,1,f +12460,6539,4,1,f +12460,6542a,72,6,f +12460,6558,1,46,f +12460,6589,19,8,f +12460,6629,14,6,f +12460,6632,14,6,f +12460,6632,72,14,f +12460,6632,0,8,f +12460,6641,4,1,f +12460,8265stk01,9999,1,t +12461,2516,14,1,f +12461,2540,4,2,f +12461,3022,71,1,f +12461,3023,71,2,f +12461,3062b,14,1,f +12461,3626bpr0498,14,1,f +12461,3788,4,1,f +12461,3795,4,1,f +12461,3829c01,4,1,f +12461,3834,80,1,f +12461,41854,15,1,f +12461,53989,15,1,f +12461,54200,33,2,f +12461,54200,4,2,f +12461,54200,4,1,t +12461,54200,33,1,t +12461,59900,14,1,f +12461,6014b,15,4,f +12461,60700,0,4,f +12461,6157,71,2,f +12461,970c00,0,1,f +12461,973pr1187c01,0,1,f +12463,11211,19,1,f +12463,11477,5,3,f +12463,11477,226,3,f +12463,11610,19,6,f +12463,11618,26,1,f +12463,11816pr0001,84,1,f +12463,11816pr0005,78,1,f +12463,14769,4,1,f +12463,15332,15,2,f +12463,15395,15,1,f +12463,15395,322,1,f +12463,15395,179,1,f +12463,15470,29,3,f +12463,15470,70,1,f +12463,15573,27,1,f +12463,15573,15,2,f +12463,18853,30,1,f +12463,18854,45,1,f +12463,18937,29,1,f +12463,18980,15,1,f +12463,23969,41,2,f +12463,23969,15,1,f +12463,2431,5,3,f +12463,26341,15,2,f +12463,3001,323,1,f +12463,3002,19,2,f +12463,3003,29,1,f +12463,3005,70,1,f +12463,3005,27,1,f +12463,3005,29,1,f +12463,30089,0,1,f +12463,30136,84,2,f +12463,30222,42,2,f +12463,3036,27,1,f +12463,3040bpr0003,71,1,f +12463,3062b,42,1,f +12463,3062b,15,4,f +12463,3062b,70,1,f +12463,3062b,36,1,f +12463,3068b,5,2,f +12463,3069b,36,2,f +12463,3069b,46,2,f +12463,3069b,5,2,f +12463,3069bpr0100,2,2,f +12463,33291,191,1,f +12463,33291,10,2,f +12463,33291,4,2,f +12463,33291,26,1,f +12463,3666,322,1,f +12463,3666,29,1,f +12463,3701,15,2,f +12463,3710,322,1,f +12463,3741,2,1,f +12463,3795,322,2,f +12463,3795,19,1,f +12463,3829c01,71,1,f +12463,3942c,297,1,f +12463,3957a,15,1,f +12463,4094b,45,1,f +12463,4176,47,1,f +12463,4349,72,1,f +12463,4477,322,1,f +12463,4490,19,4,f +12463,4495b,5,1,f +12463,4599b,71,2,f +12463,47457,15,1,f +12463,4865a,4,1,f +12463,50950,15,2,f +12463,55981,15,4,f +12463,58090,0,4,f +12463,60581,47,2,f +12463,6091,322,2,f +12463,6140,71,1,f +12463,6215,15,3,f +12463,6254,27,1,f +12463,87079pr0006,15,1,f +12463,87079pr0091,15,1,f +12463,87544,47,1,f +12463,88930,226,1,f +12463,92258,0,1,f +12463,92456pr0060c01,84,1,f +12463,92456pr0094c01,78,1,f +12463,92818pr0002c01,26,1,f +12463,92818pr0006c01,323,1,f +12463,93088pr0001b,19,1,f +12463,93092,191,1,f +12463,93273,71,1,f +12463,93352,308,1,f +12463,98549,15,1,f +12464,33172,25,1,f +12464,33183,10,1,t +12464,33183,10,1,f +12464,33207p01,15,1,f +12466,2417,288,3,f +12466,2420,2,3,f +12466,2423,2,2,f +12466,2436,71,1,f +12466,2444,4,2,f +12466,2446,179,1,f +12466,2447,46,1,f +12466,2447,46,1,t +12466,2453a,70,1,f +12466,2458,72,2,f +12466,2540,25,1,f +12466,2555,71,2,f +12466,2555,4,1,f +12466,2780,0,1,t +12466,2780,0,6,f +12466,298c02,71,2,f +12466,298c02,71,1,t +12466,298c02,0,1,t +12466,298c02,0,2,f +12466,3001,25,1,f +12466,3001,0,4,f +12466,3003,0,1,f +12466,3004,0,4,f +12466,30055,0,2,f +12466,30134,0,1,f +12466,30136,70,2,f +12466,30137,70,5,f +12466,3021,72,1,f +12466,3023,0,3,f +12466,3028,72,2,f +12466,3032,72,1,f +12466,3034,2,4,f +12466,30602,25,2,f +12466,30602,40,1,f +12466,3062b,272,4,f +12466,3062b,71,2,f +12466,3062b,70,6,f +12466,3068bpr0139b,19,1,f +12466,32013,71,4,f +12466,32015,4,1,f +12466,32016,0,1,f +12466,32034,71,4,f +12466,32062,4,6,f +12466,32064b,72,1,f +12466,32474,0,1,f +12466,3298,71,1,f +12466,3626bpr0537,14,1,f +12466,3626bpr0541,14,1,f +12466,3660,71,2,f +12466,3660,0,1,f +12466,3665,0,1,f +12466,3666,72,1,f +12466,3673,71,6,f +12466,3673,71,1,t +12466,3678b,72,1,f +12466,3679,71,1,f +12466,3680,0,1,f +12466,3701,72,2,f +12466,3713,71,1,t +12466,3713,71,2,f +12466,3794a,0,2,f +12466,3795,70,1,f +12466,3795,71,1,f +12466,3829c01,71,1,f +12466,3894,71,2,f +12466,3937,72,1,f +12466,3941,25,1,f +12466,3957a,0,1,f +12466,3959,72,2,f +12466,3962b,0,1,f +12466,4081b,71,4,f +12466,4085c,0,4,f +12466,4150,0,1,f +12466,41539,72,1,f +12466,42003,71,1,f +12466,4274,71,1,t +12466,4274,71,2,f +12466,4282,2,2,f +12466,43713,0,1,f +12466,43898,0,1,f +12466,44675,80,2,f +12466,4515,0,1,f +12466,4519,71,4,f +12466,4589,4,2,f +12466,4589,36,2,f +12466,4740,57,1,f +12466,47457,72,1,f +12466,47755,72,2,f +12466,54200,80,2,f +12466,54200,182,2,f +12466,54200,25,1,t +12466,54200,36,1,t +12466,54200,25,6,f +12466,54200,182,1,t +12466,54200,36,2,f +12466,55981,71,2,f +12466,58090,0,2,f +12466,58827,0,4,f +12466,6019,72,2,f +12466,6020,0,1,f +12466,6026,288,2,f +12466,6027,288,2,f +12466,6028,288,2,f +12466,6041,0,1,f +12466,60478,71,2,f +12466,60849,0,1,f +12466,60849,71,1,f +12466,61184,71,2,f +12466,6126a,57,2,f +12466,6134,0,1,f +12466,61409,72,2,f +12466,6141,42,1,t +12466,6141,57,1,t +12466,6141,47,1,t +12466,6141,57,4,f +12466,6141,47,2,f +12466,6141,42,2,f +12466,6141,25,1,t +12466,6141,25,6,f +12466,62462,71,2,f +12466,6255,10,1,f +12466,62700,135,2,f +12466,63359,80,1,f +12466,6583,0,4,f +12466,8632stk01,9999,1,t +12466,970c00pr0117,25,1,f +12466,970c00pr0118,272,1,f +12466,973pr1384c01,25,1,f +12466,973pr1386c01,272,1,f +12467,3001a,0,1,f +12467,3001a,15,1,f +12467,3003,15,2,f +12467,3003,0,2,f +12467,3004,4,22,f +12467,3004,0,3,f +12467,3004,15,5,f +12467,3004,14,5,f +12467,3005,4,18,f +12467,3005,14,2,f +12467,3005,0,2,f +12467,3008,4,3,f +12467,3009,4,11,f +12467,3010,4,20,f +12467,3010,0,1,f +12467,3020,15,1,f +12467,3020,14,1,f +12467,3022,15,4,f +12467,3023,15,2,f +12467,3023,14,6,f +12467,3037,1,12,f +12467,3039,14,1,f +12467,3039,1,12,f +12467,3040b,0,2,f +12467,3042,1,3,f +12467,3044a,1,1,f +12467,3081cc01,15,3,f +12467,3297,4,2,f +12467,3297,1,8,f +12467,3298,1,8,f +12467,3298,4,2,f +12467,3307,4,1,f +12467,3471,2,1,f +12467,3622,4,14,f +12467,3624,4,1,f +12467,3625,0,1,f +12467,3626bpr0001,14,2,f +12467,3660,14,1,f +12467,3710,14,1,f +12467,3741,2,9,f +12467,3742,4,6,f +12467,3742,14,18,f +12467,3742,4,2,t +12467,3742,14,6,t +12467,3795,14,1,f +12467,3830,4,2,f +12467,3831,4,2,f +12467,3853,15,2,f +12467,3854,15,4,f +12467,3856,2,4,f +12467,3861b,15,1,f +12467,3867,2,2,f +12467,69c01,15,1,f +12467,970c00,1,1,f +12467,970c00,4,1,f +12467,973c07,1,1,f +12467,973c18,0,1,f +12468,3002,4,1,f +12468,4589,47,1,t +12468,4589,47,6,f +12469,11816pr0001,84,1,f +12469,11816pr0005,78,1,f +12469,15210,72,1,f +12469,2412b,19,2,f +12469,2431,322,3,f +12469,2432,179,1,f +12469,2436,71,2,f +12469,2444,15,2,f +12469,2453a,322,4,f +12469,2456,15,3,f +12469,2460,0,2,f +12469,2571,47,2,f +12469,2653,0,3,f +12469,2877,15,8,f +12469,3001,15,6,f +12469,3003,71,1,f +12469,3004,0,1,f +12469,3009,15,2,f +12469,3009,322,2,f +12469,3010,29,6,f +12469,3010,15,4,f +12469,3020,27,2,f +12469,3020,0,3,f +12469,3021,15,1,f +12469,3022,71,3,f +12469,3023,71,7,f +12469,3023,30,13,f +12469,3032,71,1,f +12469,3034,30,1,f +12469,30350b,41,1,f +12469,30357,0,1,f +12469,30367c,15,1,f +12469,3040b,29,2,f +12469,3040b,322,2,f +12469,30565,85,2,f +12469,3062b,15,4,f +12469,3062b,41,3,f +12469,3068b,15,4,f +12469,3069b,85,6,f +12469,3069bpr0030,72,1,f +12469,3069bpr0100,2,1,f +12469,33291,5,2,t +12469,33291,5,3,f +12469,3626c,15,1,f +12469,3666,71,5,f +12469,3666,15,3,f +12469,3679,71,1,f +12469,3680,0,1,f +12469,3710,15,1,f +12469,3794b,323,1,f +12469,3941,85,1,f +12469,4032a,19,2,f +12469,4085c,71,2,f +12469,41854,85,1,f +12469,43888,71,2,f +12469,44728,30,2,f +12469,4519,71,1,f +12469,4536,29,1,f +12469,4589,15,1,f +12469,4623,15,1,f +12469,48336,0,2,f +12469,4865b,322,3,f +12469,50950,15,4,f +12469,54200,36,1,f +12469,54200,36,1,t +12469,57895,47,2,f +12469,59349,47,2,f +12469,60470a,0,1,f +12469,60474,71,1,f +12469,60596,15,2,f +12469,6126b,41,1,f +12469,6141,71,2,t +12469,6141,14,1,t +12469,6141,41,2,f +12469,6141,14,4,f +12469,6141,41,1,t +12469,6141,71,12,f +12469,6141,27,2,f +12469,6141,27,1,t +12469,6179,15,1,f +12469,6180,15,1,f +12469,6231,322,4,f +12469,63868,71,1,f +12469,85080,0,1,f +12469,85080,15,1,f +12469,85984,30,4,f +12469,87079,15,1,f +12469,87081,15,1,f +12469,92255,308,1,f +12469,92257,0,1,f +12469,92258,0,1,f +12469,92410,15,1,f +12469,92438,29,2,f +12469,92456pr0010c01,84,1,f +12469,92456pr0011c01,78,1,f +12469,92818pr0001c01,272,1,f +12469,92818pr0006c01,323,1,f +12469,93090pr01,85,1,f +12469,93094,26,2,f +12469,93094,4,2,f +12469,93094,30,2,f +12469,93094,5,2,f +12469,93273,0,1,f +12469,96479,191,3,f +12469,96480,191,1,f +12469,96481,191,2,f +12469,96482,191,1,f +12469,96483,191,2,f +12469,96484,191,1,f +12469,96485,191,2,f +12469,96486,191,1,f +12469,96487,191,2,f +12469,96488,191,1,f +12469,96489,191,2,f +12469,96490,191,1,f +12469,96491,191,1,f +12470,9630b01,9999,1,f +12470,9630b02,9999,1,f +12470,9630b03,9999,1,f +12470,9630b04,9999,1,f +12470,9630b05,9999,1,f +12470,9630b06,9999,1,f +12470,9630b07,9999,1,f +12470,9630b08,9999,1,f +12470,9630b09,9999,1,f +12470,9630b10,9999,1,f +12470,9630ba,9999,1,f +12470,9630bb,9999,1,f +12470,9630bc,9999,1,f +12470,9630bd,9999,1,f +12470,9630be,9999,1,f +12470,9630bf,9999,1,f +12470,9630bg,9999,2,f +12470,9630bh,9999,1,f +12471,2340,0,2,f +12471,2412b,0,1,f +12471,2412b,42,2,f +12471,2432,14,1,f +12471,2436,7,2,f +12471,2445,0,1,f +12471,2450,0,2,f +12471,2456,0,1,f +12471,2476a,7,2,f +12471,2507,33,1,f +12471,2555,7,2,f +12471,2584,0,1,f +12471,2585,7,1,f +12471,2625,7,1,f +12471,2877,8,2,f +12471,3002,14,1,f +12471,30035,0,1,f +12471,30162,8,1,f +12471,3020,8,2,f +12471,3021,14,1,f +12471,3022,7,1,f +12471,3022,14,1,f +12471,3024,36,1,f +12471,3024,34,1,f +12471,30248,0,1,f +12471,3039,0,1,f +12471,30395,8,1,f +12471,3039pr0005,15,1,f +12471,30407,42,2,f +12471,3040b,0,2,f +12471,30540,8,2,f +12471,30552,7,4,f +12471,30592,7,1,f +12471,30608,6,1,f +12471,32034,0,1,f +12471,32062,4,2,f +12471,3475b,0,1,f +12471,3626bpb0095,14,1,f +12471,3666,14,2,f +12471,3747a,0,1,f +12471,3794a,0,1,f +12471,3894,0,1,f +12471,4081b,14,2,f +12471,4315,0,1,f +12471,4360,0,1,f +12471,4588,42,2,f +12471,4589,42,3,f +12471,4740,42,1,f +12471,4856a,0,1,f +12471,4859,14,1,f +12471,56823,0,1,f +12471,6141,36,1,t +12471,6141,36,1,f +12471,6564,0,1,f +12471,6565,0,1,f +12471,6773stk01,9999,1,t +12471,73590c02b,14,2,f +12471,970c00pb005,0,1,f +12471,973pb0071c01,0,1,f +12474,10830pat0001,0,2,f +12474,11477,27,6,f +12474,14417,72,3,f +12474,14418,71,2,f +12474,14704,71,3,f +12474,15209,15,1,f +12474,15456,0,2,f +12474,3003,27,2,f +12474,3021,2,3,f +12474,3022,27,3,f +12474,3023,27,3,f +12474,30385,42,1,f +12474,3039,2,2,f +12474,3626cpr1001,15,2,f +12474,4032a,15,1,f +12474,4070,2,2,f +12474,4871,27,1,f +12474,50950,2,2,f +12474,6019,0,2,f +12474,6141,42,1,t +12474,6141,42,3,f +12474,87087,27,4,f +12474,99207,27,1,f +12474,99207,0,1,f +12476,3626bpr0387,14,1,f +12476,3898,15,1,f +12476,3899,4,1,f +12476,970c00,0,1,f +12476,973pr1190c01,0,1,f +12477,2357,72,2,f +12477,2780,0,8,f +12477,3002,72,2,f +12477,3004,72,1,f +12477,30104,72,2,f +12477,3024,72,2,f +12477,3035,72,1,f +12477,3062b,72,3,f +12477,32009,71,4,f +12477,32062,4,5,f +12477,32316,72,2,f +12477,32348,72,1,f +12477,32449,71,6,f +12477,32524,72,2,f +12477,32525,72,1,f +12477,32526,72,1,f +12477,3660,72,2,f +12477,3713,71,2,f +12477,3749,19,1,f +12477,3794a,72,1,f +12477,4032a,72,2,f +12477,40490,72,3,f +12477,4070,72,2,f +12477,41530,71,1,f +12477,43093,1,9,f +12477,4519,71,1,f +12477,59226pr02,0,1,f +12477,59231pr0001,72,1,f +12477,59426,72,2,f +12477,6066,72,1,f +12477,6126a,57,2,f +12477,6222,70,2,f +12477,6536,4,1,f +12477,6538b,71,5,f +12477,6558,1,6,f +12477,6628,0,8,f +12479,10197,72,2,f +12479,2412b,1,1,f +12479,2412b,25,1,f +12479,2431pr0028,72,1,f +12479,2654,47,2,f +12479,2780,0,6,t +12479,2780,0,203,f +12479,2819,0,1,f +12479,32002,72,2,t +12479,32002,72,3,f +12479,32005b,0,4,f +12479,32009,15,2,f +12479,32009,0,2,f +12479,32013,71,2,f +12479,32013,15,4,f +12479,32013,0,10,f +12479,32014,71,2,f +12479,32015,71,4,f +12479,32016,71,8,f +12479,32016,0,4,f +12479,32016,25,4,f +12479,32034,0,5,f +12479,32034,71,8,f +12479,32039,71,4,f +12479,32054,71,44,f +12479,32054,4,10,f +12479,32054,0,10,f +12479,32056,71,2,f +12479,32062,4,57,f +12479,32063,71,2,f +12479,32073,71,17,f +12479,32123b,71,3,t +12479,32123b,71,26,f +12479,32126,0,4,f +12479,32140,4,24,f +12479,32140,25,2,f +12479,32140,0,14,f +12479,32184,0,3,f +12479,32269,19,12,f +12479,32270,0,12,f +12479,32271,15,2,f +12479,32271,0,2,f +12479,32278,71,4,f +12479,32278,4,6,f +12479,32278,15,1,f +12479,32291,0,2,f +12479,32316,72,1,f +12479,32316,0,1,f +12479,32316,15,3,f +12479,32316,4,16,f +12479,32348,15,4,f +12479,32348,25,4,f +12479,32348,71,4,f +12479,32449,0,4,f +12479,32474,0,2,f +12479,32498,0,1,f +12479,32523,71,6,f +12479,32523,4,2,f +12479,32523,72,2,f +12479,32524,4,6,f +12479,32524,14,2,f +12479,32524,0,3,f +12479,32525,71,2,f +12479,32525,15,2,f +12479,32525,4,10,f +12479,32525,0,3,f +12479,32526,4,4,f +12479,32526,15,2,f +12479,32526,25,2,f +12479,32556,19,4,f +12479,3673,71,4,f +12479,3673,71,1,t +12479,3705,0,10,f +12479,3706,0,4,f +12479,3713,71,2,t +12479,3713,71,24,f +12479,3713,4,12,f +12479,3713,4,2,t +12479,3737,0,2,f +12479,3749,19,3,f +12479,4032a,0,2,f +12479,40490,71,2,f +12479,40490,4,7,f +12479,41239,72,1,f +12479,41239,4,10,f +12479,41239,25,2,f +12479,41239,0,1,f +12479,41669,0,2,f +12479,41677,15,4,f +12479,41677,1,3,f +12479,41677,71,4,f +12479,41678,4,4,f +12479,41678,72,8,f +12479,42003,71,19,f +12479,42003,72,8,f +12479,42610,71,2,f +12479,4274,1,1,t +12479,4274,71,1,t +12479,4274,1,4,f +12479,4274,71,11,f +12479,43093,1,108,f +12479,43857,4,6,f +12479,43857,0,8,f +12479,44294,71,8,f +12479,44772,0,4,f +12479,44809,71,2,f +12479,4519,71,46,f +12479,48989,71,4,f +12479,54120,0,4,f +12479,55013,72,4,f +12479,58119,71,1,f +12479,58122,71,1,f +12479,58123b,71,1,f +12479,59426,72,2,f +12479,59443,71,14,f +12479,59443,4,16,f +12479,60483,71,13,f +12479,60484,0,9,f +12479,60485,71,9,f +12479,6141,182,2,f +12479,6141,36,1,t +12479,6141,182,1,t +12479,6141,47,1,t +12479,6141,47,4,f +12479,6141,36,2,f +12479,61903,71,6,f +12479,62462,0,14,f +12479,62531,25,2,f +12479,62531,15,2,f +12479,62821,72,2,f +12479,63869,71,3,f +12479,64178,71,2,f +12479,64179,71,2,f +12479,64392,0,1,f +12479,64394,0,3,f +12479,64680,0,3,f +12479,64682,0,1,f +12479,64782,0,2,f +12479,64782,15,1,f +12479,6536,71,28,f +12479,6536,0,6,f +12479,6553,71,2,f +12479,6558,1,95,f +12479,6587,28,1,f +12479,6589,19,6,f +12479,6589,19,1,t +12479,6628,0,8,f +12479,6629,0,2,f +12479,6632,4,5,f +12479,6632,0,4,f +12479,87080,15,1,f +12479,87080,25,1,f +12479,87082,71,18,f +12479,87083,72,6,f +12479,87086,15,1,f +12479,87086,25,1,f +12479,87761,0,2,f +12479,92907,0,12,f +12479,92908,71,4,f +12479,92909,72,4,f +12479,92910,71,2,f +12479,92911,72,2,f +12479,94925,71,4,f +12479,95292c01,14,4,f +12479,98989,71,4,f +12479,99008,19,8,f +12479,99498,71,1,f +12479,99499,71,2,f +12479,99773,0,4,f +12481,2432,71,1,f +12481,2540,72,2,f +12481,2780,0,2,f +12481,2780,0,1,t +12481,2817,0,1,f +12481,2921,0,1,f +12481,3003,71,1,f +12481,30031,72,1,f +12481,3020,320,2,f +12481,3021,72,1,f +12481,3023,320,4,f +12481,30375pr01,308,2,f +12481,30377,308,2,f +12481,30377,308,1,t +12481,30377,0,1,f +12481,30377,0,1,t +12481,3039,72,2,f +12481,3039,71,1,f +12481,30541,0,4,f +12481,3070b,0,1,f +12481,3070b,0,1,t +12481,32064b,71,1,f +12481,3623,320,5,f +12481,3626cpr0525,78,2,f +12481,3665,72,4,f +12481,3700,72,4,f +12481,3795,71,1,f +12481,3941,47,1,f +12481,4079,0,1,f +12481,42446,71,1,f +12481,42687,308,2,f +12481,44728,71,1,f +12481,44728,72,2,f +12481,55982,0,1,f +12481,57899,0,1,f +12481,58247,0,2,f +12481,59230,308,1,t +12481,59230,308,2,f +12481,59426,72,1,f +12481,59443,0,1,f +12481,59900,297,2,f +12481,60471,0,4,f +12481,60476,71,4,f +12481,60478,71,4,f +12481,61184,71,1,f +12481,61190c,320,4,f +12481,6141,0,1,f +12481,6141,0,1,t +12481,63586,320,4,f +12481,63864,71,5,f +12481,74662,320,1,f +12481,74664,0,1,f +12481,87083,72,1,f +12481,92738,0,2,f +12481,92742pr0002,15,1,f +12481,92947,71,1,f +12481,970c00pr0306,320,1,f +12481,970x026,15,1,f +12481,973pr2004c01,15,1,f +12481,973pr2005c01,15,1,f +12481,98099pr0001,15,1,f +12481,98103pr0001,308,2,f +12482,30367b,15,1,f +12482,33183,70,1,t +12482,33183,70,2,f +12482,33291,5,1,t +12482,33291,5,1,f +12482,3626b,15,1,f +12482,3878,0,1,f +12482,4733,15,1,f +12483,2418a,4,1,f +12483,2419,4,1,f +12483,2420,15,2,f +12483,3004,15,4,f +12483,3004,0,1,f +12483,3005,15,6,f +12483,3010,4,5,f +12483,3023,15,1,f +12483,3023,0,1,f +12483,3024,15,2,f +12483,3036,2,1,f +12483,3040b,15,2,f +12483,3626apr0001,14,2,f +12483,3844,0,1,f +12483,3846p46,7,1,f +12483,3847,8,1,f +12483,3848,6,1,f +12483,3849,0,1,f +12483,3937,4,1,f +12483,3957a,0,1,f +12483,4085b,15,2,f +12483,4460a,15,2,f +12483,4491a,1,1,f +12483,4493c01pb02,0,1,f +12483,4495a,15,1,f +12483,4495a,1,1,f +12483,4497,6,2,f +12483,4503,0,1,f +12483,87692,0,1,f +12483,87693,0,1,t +12483,87694,0,1,t +12483,970c00,0,1,f +12483,970x021,0,1,f +12483,973p40c01,0,1,f +12483,973p43c01,1,1,f +12484,3001,1,1,f +12484,3003,1,1,f +12484,3004,47,2,f +12484,3004,14,4,f +12484,3004,4,6,f +12484,3004,1,2,f +12484,3005,14,2,f +12484,3010,4,2,f +12484,3021,1,2,f +12484,3034,1,2,f +12484,3039,4,2,f +12484,3137c01,0,2,f +12484,3624,4,1,f +12484,3626apr0001,14,1,f +12484,3641,0,4,f +12484,3660,4,2,f +12484,970c00,0,1,f +12484,973c01,15,1,f +12485,3626bp03,14,1,f +12485,3901,6,1,f +12485,970c00,0,1,f +12485,973px173c01,4,1,f +12487,15573,27,2,f +12487,2489,308,1,f +12487,3005,0,2,f +12487,3021,15,2,f +12487,3023,0,5,f +12487,3024,19,1,t +12487,3024,19,2,f +12487,3032,19,1,f +12487,33291,31,3,f +12487,33291,31,1,t +12487,33291,26,1,t +12487,33291,26,3,f +12487,3626cpr0001,14,1,f +12487,3659,0,1,f +12487,3710,0,2,f +12487,3710,19,4,f +12487,3741,2,1,t +12487,3741,2,4,f +12487,3742,4,2,t +12487,3742,4,6,f +12487,3795,19,1,f +12487,3836,70,1,f +12487,3837,72,1,f +12487,4032a,308,1,f +12487,44728,72,1,f +12487,4488,0,2,f +12487,4489,148,2,f +12487,48336,0,1,f +12487,4865a,19,4,f +12487,60897,71,2,f +12487,62810,308,1,f +12487,64644,0,4,f +12487,87580,0,3,f +12487,93273,15,3,f +12487,93273,14,3,f +12487,95343,4,1,f +12487,95344,28,1,f +12487,95344,28,1,t +12487,970c00,2,1,f +12487,973pr1446c01,4,1,f +12487,98138pr0018,84,2,f +12487,98138pr0018,84,1,t +12488,2436,19,1,f +12488,2454a,7,2,f +12488,2454px6,7,2,f +12488,3003,8,2,f +12488,3004,1,2,f +12488,3004,19,1,f +12488,3010,19,1,f +12488,30115,4,1,f +12488,30127,2,2,f +12488,30132,8,1,f +12488,30132,8,1,t +12488,30141,8,1,f +12488,30148,0,1,f +12488,30149,7,1,f +12488,30152pat0001,0,1,f +12488,30155,7,5,f +12488,30157,7,2,f +12488,30158,6,1,f +12488,30161pa1,47,1,f +12488,30162,8,1,f +12488,30165,6,1,f +12488,30169,0,1,f +12488,30172,15,1,f +12488,3020,14,1,f +12488,3023,19,1,f +12488,3023,7,2,f +12488,30236,4,5,f +12488,30238,0,2,f +12488,30239,2,1,f +12488,30240,8,1,f +12488,3028,2,1,f +12488,3039,1,2,f +12488,3040b,1,4,f +12488,3040b,6,2,f +12488,3062b,1,2,f +12488,3068bpx24,19,1,f +12488,3069bp03,7,1,f +12488,3069bpa0,19,1,f +12488,3069bpa1,0,1,f +12488,3069bpx30,15,1,f +12488,32000,15,1,f +12488,3455,4,1,f +12488,3460,14,2,f +12488,3483,0,5,f +12488,3626bpa4,14,1,f +12488,3626bpr0098,14,1,f +12488,3626bpr0895,15,1,f +12488,3629,15,1,f +12488,3659,4,2,f +12488,3673,7,1,f +12488,3684,8,2,f +12488,37,383,2,f +12488,3829c01,7,1,f +12488,3841,8,1,f +12488,3848,6,1,f +12488,3899,4,1,f +12488,3942c,14,1,f +12488,4032a,0,2,f +12488,4070,14,2,f +12488,4081b,7,2,f +12488,4212b,0,1,f +12488,4589,36,3,f +12488,4589,1,1,f +12488,4625,19,1,f +12488,6019,1,1,f +12488,6091,7,4,f +12488,6126a,57,4,f +12488,6141,15,2,f +12488,6141,14,6,f +12488,6141,14,1,t +12488,6141,15,1,t +12488,6232,7,1,f +12488,6255,2,1,f +12488,6260,15,1,f +12488,6265,15,1,t +12488,6265,15,2,f +12488,6266,15,2,f +12488,6541,15,1,f +12488,6587,8,1,f +12488,970c00,4,1,f +12488,970c00,7,1,f +12488,973pa4c01,15,1,f +12488,973pa8c01,2,1,f +12488,x276,334,1,f +12489,32013,73,1,f +12489,32013,0,1,f +12489,32015,73,2,f +12489,32062,0,3,f +12489,32140,0,2,f +12489,32174,0,1,f +12489,32474,0,1,f +12489,32523,0,1,f +12489,32551,1,1,f +12489,32576,1,2,f +12489,41664,1,1,f +12489,41669,57,2,f +12489,42042,1,1,f +12489,42042und,22,1,f +12489,43093,0,2,f +12489,4519,0,1,f +12489,6553,0,1,f +12489,6558,0,2,f +12490,3004,1,4,f +12490,3004p20,1,2,f +12490,3004p90,1,2,f +12490,3005,1,3,f +12490,3009,15,1,f +12490,3009,1,3,f +12490,3010,15,2,f +12490,3010,1,1,f +12490,3010ap04,15,2,f +12490,3023,1,1,f +12490,3023,15,12,f +12490,3024,36,2,f +12490,3024,1,3,f +12490,3024,15,2,f +12490,3034,15,1,f +12490,3035,0,1,f +12490,3036,46,1,f +12490,3036,1,1,f +12490,3039,15,2,f +12490,3039p23,1,2,f +12490,3039p34,1,2,f +12490,3040b,15,2,f +12490,3046a,15,2,f +12490,3062a,34,2,f +12490,3066,33,2,f +12490,3069b,1,4,f +12490,3482,7,6,f +12490,3483,0,6,f +12490,3622,15,4,f +12490,3623,15,4,f +12490,3626apr0001,14,2,f +12490,3660,1,2,f +12490,3665,15,2,f +12490,3665,0,2,f +12490,3666,7,1,f +12490,3666,1,1,f +12490,3666,15,5,f +12490,3679,7,1,f +12490,3680,14,1,f +12490,3710,15,2,f +12490,3710,7,2,f +12490,3749,7,6,f +12490,3829c01,15,1,f +12490,3830,15,2,f +12490,3831,15,2,f +12490,3838,4,1,f +12490,3838,15,1,f +12490,3842a,15,1,f +12490,3842a,4,1,f +12490,3855a,46,3,f +12490,3895,0,2,f +12490,3937,1,4,f +12490,3938,1,4,f +12490,3939,33,2,f +12490,3940a,0,4,f +12490,3943a,0,2,f +12490,3956,15,2,f +12490,3957a,0,2,f +12490,3960,7,2,f +12490,3962a,0,1,f +12490,4006,0,1,f +12490,4033,1,3,f +12490,4070,7,4,f +12490,4079,14,1,f +12490,4081a,15,2,f +12490,4085a,15,4,f +12490,4162,1,1,f +12490,4175,0,4,f +12490,4228,33,1,f +12490,6141,36,2,f +12490,970c00,4,1,f +12490,970c00,15,1,f +12490,973p90c02,4,1,f +12490,973p90c05,15,1,f +12491,99499,71,1,f +12492,2421,0,1,f +12492,2446,0,1,f +12492,2447,41,1,f +12492,2447,41,1,t +12492,2460,15,1,f +12492,2479,7,1,f +12492,298c02,1,2,f +12492,298c02,1,1,t +12492,3003,1,1,f +12492,30248,7,1,f +12492,3040b,15,1,f +12492,3068bpx27,15,1,f +12492,3070b,36,1,f +12492,3070b,36,1,t +12492,3626bpx11,14,1,f +12492,3660,1,1,f +12492,3666,0,2,f +12492,3710,15,1,f +12492,3839b,0,1,f +12492,4081b,0,2,f +12492,4085c,15,1,f +12492,4360,7,1,f +12492,4477,15,1,f +12492,4488,1,1,f +12492,4732,15,1,f +12492,6141,57,1,f +12492,6141,42,2,f +12492,6141,42,1,t +12492,6141,57,1,t +12492,970c00,0,1,f +12492,973pb0027c01,0,1,f +12495,2335,15,2,f +12495,2335,4,1,f +12495,2335p01,15,1,f +12495,2412b,1,1,f +12495,2412b,4,1,f +12495,2431,1,2,f +12495,2432,7,1,f +12495,2446,0,1,f +12495,2450,15,2,f +12495,2530,8,2,f +12495,2540,0,1,f +12495,2540,4,2,f +12495,2555,15,2,f +12495,2564,0,1,f +12495,2610,14,1,f +12495,2625,15,1,f +12495,2625,4,1,f +12495,2626,15,2,f +12495,2654,0,6,f +12495,2917,15,1,f +12495,2918,41,1,f +12495,2921,0,1,f +12495,298c02,15,3,f +12495,298c02,15,1,t +12495,3001,15,2,f +12495,30079,14,2,f +12495,30083,41,1,f +12495,30084,0,1,f +12495,30088,14,1,f +12495,30089,14,1,f +12495,3009,15,1,f +12495,3009,0,1,f +12495,30090,47,1,f +12495,30091,7,1,f +12495,30093,2,2,f +12495,30094,7,2,f +12495,30099,6,3,f +12495,3010,15,2,f +12495,3020,0,1,f +12495,3021,15,1,f +12495,3022,7,1,f +12495,3023,0,2,f +12495,3023,4,1,f +12495,3024,34,2,f +12495,3024,36,2,f +12495,3024,46,2,f +12495,3027,4,1,f +12495,3127,7,2,f +12495,3298,7,1,f +12495,3626bpx24,14,1,f +12495,3626bpx25,14,1,f +12495,3626bpx26,14,1,f +12495,3660,14,2,f +12495,3665,7,1,f +12495,3666,15,1,f +12495,3700,14,2,f +12495,3710,1,2,f +12495,3747a,14,1,f +12495,3749,7,3,f +12495,3794a,1,2,f +12495,3829c01,1,1,f +12495,3865,19,1,f +12495,3941,14,2,f +12495,3957a,1,1,f +12495,4032a,2,2,f +12495,4070,0,1,f +12495,4150,14,2,f +12495,4286,15,2,f +12495,4286,7,1,f +12495,4289,15,1,f +12495,4315,14,1,f +12495,4360,15,1,f +12495,4460a,7,2,f +12495,4485,0,2,f +12495,4485,4,1,f +12495,4589,7,1,f +12495,4740,15,1,f +12495,4865a,15,6,f +12495,4871,7,1,f +12495,56823,0,1,f +12495,59275,0,2,f +12495,6019,7,1,f +12495,6040,0,1,f +12495,6041,4,1,f +12495,6112,15,2,f +12495,6126a,34,3,f +12495,6141,36,1,f +12495,6141,36,1,t +12495,6141,42,1,t +12495,6141,42,1,f +12495,6141,47,1,t +12495,6141,47,2,f +12495,6557stk01,9999,1,t +12495,73037,1,1,f +12495,970c00,4,1,f +12495,970c00,0,1,f +12495,970x026,4,1,f +12495,973px51c01,4,1,f +12495,973px52c01,4,2,f +12496,2335,15,1,f +12496,2420,4,4,f +12496,2420,72,2,f +12496,2431,72,1,f +12496,2431,1,1,f +12496,2431,4,1,f +12496,2431pr0043,4,1,f +12496,2431pr0051,4,1,f +12496,2431pr0052,1,1,f +12496,2436,4,3,f +12496,2436,15,2,f +12496,2653,71,4,f +12496,2921,14,4,f +12496,3004,15,4,f +12496,3005,15,4,f +12496,3020,1,3,f +12496,3020,71,4,f +12496,3021,72,4,f +12496,3021,15,4,f +12496,3021,4,6,f +12496,3022,72,6,f +12496,3023,1,7,f +12496,3023,321,2,f +12496,3023,36,2,f +12496,3023,4,1,f +12496,3024,1,2,f +12496,3032,72,2,f +12496,3034,19,3,f +12496,30414,15,2,f +12496,30526,71,2,f +12496,30602,4,2,f +12496,3069b,4,6,f +12496,3069b,15,8,f +12496,32000,71,2,f +12496,32001,71,4,f +12496,32028,4,1,f +12496,32028,0,4,f +12496,32123b,14,2,t +12496,32123b,14,4,f +12496,32474,4,2,f +12496,3475b,72,2,f +12496,3666,15,2,f +12496,3678b,15,4,f +12496,3678bpr0027a,1,1,f +12496,3706,0,2,f +12496,3709,0,2,f +12496,3710,14,2,f +12496,3710,72,4,f +12496,3794b,14,4,f +12496,3794b,71,4,f +12496,3795,2,2,f +12496,4032a,72,4,f +12496,4081b,0,2,f +12496,4085c,0,3,f +12496,4150,4,2,f +12496,44302a,72,2,f +12496,44375a,71,2,f +12496,4477,72,4,f +12496,4528,0,2,f +12496,4600,71,2,f +12496,4623,4,1,f +12496,4623,14,2,f +12496,4624,15,8,f +12496,50951,0,8,f +12496,54200,36,2,f +12496,54200,36,1,t +12496,60212,72,1,f +12496,60212,4,1,f +12496,61409,72,6,f +12496,6141,14,8,f +12496,6141,34,2,t +12496,6141,36,4,f +12496,6141,34,2,f +12496,6141,36,2,t +12496,6141,0,14,f +12496,6141,14,1,t +12496,6141,0,3,t +12496,6157,0,6,f +12496,6215,1,1,f +12496,63868,4,2,f +12496,63868,71,2,f +12496,63965,15,1,f +12496,85544,4,2,f +12496,87079pr0019,4,1,f +12496,87079pr0020,4,1,f +12496,87079pr0030,72,1,f +12496,87079pr0031,72,1,f +12496,87079pr0032,1,1,f +12496,87079pr0033,1,1,f +12496,87087,71,4,f +12496,87414,0,8,f +12496,93274,4,1,f +12496,93274,1,1,f +12496,93274,72,1,f +12496,93587pr0007,4,1,f +12496,93590,4,1,f +12496,93591pr0010,4,1,f +12496,93591pr0012,72,1,f +12496,93591pr0014,1,1,f +12496,93595,71,4,f +12496,93595pr0003,4,4,f +12496,9485stk01,9999,1,t +12496,95120,72,1,f +12496,98834pr0002,0,1,f +12496,98834pr0002,4,1,f +12496,98835pr0001,72,1,f +12496,98835pr0002,321,1,f +12497,3022,0,40,f +12498,2340,14,1,f +12498,2415,7,1,f +12498,2419,0,1,f +12498,2432,14,1,f +12498,2446,15,1,f +12498,2447,0,1,f +12498,298c02,15,1,f +12498,298c02,15,1,t +12498,3007,0,1,f +12498,3020,4,2,f +12498,3023,14,1,f +12498,3069bp68,15,1,f +12498,3070b,34,1,f +12498,3070b,36,1,f +12498,3139,0,3,f +12498,3464,47,1,f +12498,3626bp04,14,1,f +12498,3660,4,1,f +12498,3794a,2,4,f +12498,3933,4,1,f +12498,3934,4,1,f +12498,4229,0,2,f +12498,4624,14,2,f +12498,6069,2,1,f +12498,6157,0,1,f +12498,970c00,4,1,f +12498,973pb0249c01,4,1,f +12499,264,14,1,f +12499,3957a,0,1,f +12499,4362acx1,0,1,f +12499,4461,14,1,f +12499,4461,0,1,f +12499,4495a,1,1,f +12499,fab7f,9999,1,f +12499,fabah4,4,1,f +12499,fabah4-hinge,14,1,f +12499,fabaj1,0,1,f +12499,fabaj3,14,1,f +12500,15319,71,1,f +12500,15582,15,2,f +12500,16385,15,1,f +12500,19105,158,1,f +12500,19361,15,1,f +12500,47510pr0005,73,1,f +12500,61649,5,2,f +12500,75115pr0024,15,1,f +12500,76371pr0017,15,1,f +12501,2420,2,2,f +12501,2445,1,4,f +12501,2454a,14,1,f +12501,3003,2,5,f +12501,3004,2,12,f +12501,3004,14,8,f +12501,3020,2,4,f +12501,3022,2,16,f +12501,3022,1,3,f +12501,3023,2,10,f +12501,3023,14,6,f +12501,3024,2,4,f +12501,3035,1,2,f +12501,3039,2,7,f +12501,3040b,2,6,f +12501,3062b,2,1,f +12501,3069b,29,2,f +12501,3623,2,7,f +12501,3660,14,11,f +12501,3794b,2,23,f +12501,3795,2,1,f +12501,4070,2,14,f +12501,4286,2,2,f +12501,4740,15,2,f +12501,48336,2,1,f +12501,54200,2,1,t +12501,54200,2,8,f +12501,54200,4,1,t +12501,54200,4,24,f +12501,60470a,2,1,f +12501,6141,15,4,f +12501,6141,0,2,f +12501,6141,15,1,t +12501,6141,0,1,t +12501,87580,2,4,f +12502,2431,0,1,f +12502,2454a,19,1,f +12502,2540,19,1,f +12502,3001,2,6,f +12502,3004,19,4,f +12502,3004,7,2,f +12502,3004,2,4,f +12502,3004,4,2,f +12502,3004ph1,19,1,f +12502,3004ph2,2,1,f +12502,3005,7,2,f +12502,3020,8,1,f +12502,3021,8,2,f +12502,3023,7,1,f +12502,3023,4,1,f +12502,3032,2,2,f +12502,3032,0,1,f +12502,3034,6,1,f +12502,3039,8,2,f +12502,3039,2,6,f +12502,3039,0,2,f +12502,30390b,7,1,f +12502,3040b,19,1,f +12502,3040b,4,1,f +12502,3040b,7,1,f +12502,3040b,2,1,f +12502,3043,19,1,f +12502,3043,7,1,f +12502,3045,7,1,f +12502,3045,2,1,f +12502,3045,19,1,f +12502,3045,4,1,f +12502,30608,7,1,f +12502,3062b,8,2,f +12502,3062b,33,1,f +12502,3068b,7,1,f +12502,3069b,4,1,f +12502,3069b,7,2,f +12502,3069bpx41,15,1,f +12502,32059,8,1,f +12502,32474,0,2,f +12502,32474,4,1,f +12502,33009pb004,1,1,f +12502,3455,8,1,f +12502,3622,19,2,f +12502,3622,4,2,f +12502,3622,2,2,f +12502,3626bpb0126,14,1,f +12502,3626bph1,14,1,f +12502,3626bph2,14,1,f +12502,3660,4,1,f +12502,3660,7,1,f +12502,3665,7,1,f +12502,3665,8,2,f +12502,3665,4,1,f +12502,3700,0,2,f +12502,3705,7,1,f +12502,3706,7,1,f +12502,3707,7,1,f +12502,3710,8,1,f +12502,3794a,7,1,f +12502,3830,7,2,f +12502,3831,7,2,f +12502,3901,19,1,f +12502,3937,7,1,f +12502,3938,0,1,f +12502,3941,7,3,f +12502,40233,0,1,f +12502,4079,7,1,f +12502,4189983,9999,1,t +12502,4332,6,2,f +12502,4332,0,1,f +12502,43373,8,3,f +12502,4738a,6,1,f +12502,4739a,6,1,f +12502,4740,4,1,f +12502,4865a,0,3,f +12502,50231,2,1,f +12502,50231,4,1,f +12502,50231px2,15,1,f +12502,6141,334,1,f +12502,6231,7,2,f +12502,6538b,7,3,f +12502,970c00,0,1,f +12502,970c00,2,1,f +12502,970c00,15,1,f +12502,973pb0162c01,320,1,f +12502,973pb0163c01,2,1,f +12502,973pb0164c01,0,1,f +12503,2335,0,1,f +12503,2357,15,2,f +12503,2357,4,10,f +12503,2420,0,2,f +12503,2420,4,4,f +12503,2431,15,3,f +12503,2431,4,8,f +12503,2432,4,1,f +12503,2446,4,4,f +12503,2447,82,1,f +12503,2447,82,1,t +12503,2447,40,1,f +12503,2447,40,1,t +12503,2454a,4,4,f +12503,2465,4,3,f +12503,2465,15,4,f +12503,2555,0,3,f +12503,2654,0,4,f +12503,3001,0,8,f +12503,3001,15,1,f +12503,30029,0,1,f +12503,3003,4,5,f +12503,3004,72,2,f +12503,3004,4,12,f +12503,3007,4,3,f +12503,3008,4,9,f +12503,3009,15,7,f +12503,3010,4,3,f +12503,3010,1,1,f +12503,3020,4,4,f +12503,3020,0,2,f +12503,3021,72,1,f +12503,3022,72,2,f +12503,3022,0,1,f +12503,3023,0,5,f +12503,3023,4,9,f +12503,3024,4,6,f +12503,3024,15,4,f +12503,3024,47,1,f +12503,3024,0,2,f +12503,3031,4,2,f +12503,3032,0,1,f +12503,3033,15,3,f +12503,3033,4,1,f +12503,3034,4,10,f +12503,3035,4,2,f +12503,3035,15,1,f +12503,3036,4,6,f +12503,30365,4,6,f +12503,30374,0,1,f +12503,3039,71,2,f +12503,30414,0,2,f +12503,30414,15,4,f +12503,30414,4,2,f +12503,30586,4,2,f +12503,3062b,4,1,f +12503,30648,0,4,f +12503,30663,0,1,f +12503,3068b,4,1,f +12503,3069b,4,14,f +12503,3069b,14,5,f +12503,3069b,0,3,f +12503,3070b,0,1,t +12503,3070b,4,1,t +12503,3070b,4,4,f +12503,3070b,0,4,f +12503,32123b,14,2,f +12503,32123b,14,1,t +12503,3460,72,2,f +12503,3460,4,8,f +12503,3460,15,1,f +12503,3460,0,1,f +12503,3622,4,8,f +12503,3622,15,2,f +12503,3623,15,2,f +12503,3623,4,8,f +12503,3623,0,2,f +12503,3626bpr0369,15,1,f +12503,3626bpr0370,4,3,f +12503,3626bpr0409,14,1,f +12503,3666,0,2,f +12503,3666,4,9,f +12503,3700,1,3,f +12503,3702,71,2,f +12503,3707,0,1,f +12503,3710,4,6,f +12503,3710,14,2,f +12503,3713,71,1,t +12503,3713,71,2,f +12503,3794b,0,5,f +12503,3794b,4,2,f +12503,3795,4,8,f +12503,3795,0,4,f +12503,3829c01,4,1,f +12503,3832,4,4,f +12503,3832,15,1,f +12503,3839b,0,2,f +12503,3894,0,4,f +12503,3937,72,2,f +12503,3938,15,2,f +12503,3938,0,4,f +12503,4070,4,5,f +12503,4079,72,2,f +12503,4083,4,1,f +12503,4162,4,15,f +12503,4162,0,1,f +12503,41769,0,1,f +12503,41770,0,1,f +12503,42022,4,2,f +12503,4282,4,1,f +12503,4286,4,1,f +12503,4287,4,2,f +12503,43337,0,2,f +12503,43719,4,2,f +12503,43722,4,1,f +12503,43723,4,1,f +12503,44126,4,1,f +12503,44301a,4,6,f +12503,4477,15,4,f +12503,4477,4,3,f +12503,4532,4,2,f +12503,4533,15,2,f +12503,4599a,71,1,f +12503,4623,0,1,f +12503,47720,0,2,f +12503,48288,4,3,f +12503,48336,4,4,f +12503,48336,15,2,f +12503,4864b,4,2,f +12503,4865a,0,2,f +12503,4865a,4,2,f +12503,50373,4,1,f +12503,52031,4,1,f +12503,54200,0,1,t +12503,54200,4,1,t +12503,54200,0,2,f +12503,54200,4,2,f +12503,55295,0,1,f +12503,55296,0,1,f +12503,55297,0,1,f +12503,55298,0,1,f +12503,55299,0,1,f +12503,55300,0,1,f +12503,55981,0,4,f +12503,55982,0,4,f +12503,58090,0,4,f +12503,59349,4,2,f +12503,59426,72,2,f +12503,6005,15,2,f +12503,60478,0,2,f +12503,60485,71,1,f +12503,6081,0,2,f +12503,6081,4,2,f +12503,6091,4,4,f +12503,6111,15,2,f +12503,6111,4,7,f +12503,6140,0,2,f +12503,61409,0,2,f +12503,6141,182,2,f +12503,6141,71,1,t +12503,6141,71,3,f +12503,6141,36,2,f +12503,6141,0,1,t +12503,6141,182,1,t +12503,6141,0,1,f +12503,6141,36,1,t +12503,61678,4,8,f +12503,6215,71,4,f +12503,6232,72,1,f +12503,62701,135,4,f +12503,63868,4,2,f +12503,6564,4,2,f +12503,6565,4,2,f +12503,6636,15,2,f +12503,6636,4,19,f +12503,6636,72,8,f +12503,73983,0,2,f +12503,85984,0,2,f +12503,970c00,4,5,f +12503,973c02,4,1,f +12503,973c31,4,4,f +12505,3005pt0,15,6,f +12505,3005pt1,15,6,f +12505,3005pt2,15,4,f +12505,3005pt3,15,4,f +12505,3005pt4,15,4,f +12505,3005pt5,15,4,f +12505,3005pt6,15,4,f +12505,3005pt7,15,4,f +12505,3005pt8,15,4,f +12505,3005pt9,15,4,f +12506,bin06,4,1,f +12507,2420,0,6,f +12507,2431,72,8,f +12507,3020,0,4,f +12507,3020,71,2,f +12507,3020,72,1,f +12507,3021,0,2,f +12507,3021,72,2,f +12507,3022,0,2,f +12507,3023,0,4,f +12507,3034,71,2,f +12507,3036,72,2,f +12507,3048c,0,2,f +12507,30663,0,4,f +12507,3068b,72,2,f +12507,3069b,0,1,f +12507,3070b,0,4,f +12507,3623,0,2,f +12507,3710,0,6,f +12507,3794b,0,8,f +12507,3795,0,1,f +12507,4085c,0,2,f +12507,4162,72,4,f +12507,43337,0,1,f +12507,4589,0,1,f +12507,4599b,71,2,f +12507,4733,0,1,f +12507,4865a,0,1,f +12507,4865a,47,2,f +12507,50946p01,0,1,f +12507,50947,0,4,f +12507,54200,0,4,f +12507,54200,47,4,f +12507,6019,0,4,f +12507,6141,47,2,f +12507,6231,0,2,f +12507,63965,0,3,f +12508,2419,72,2,f +12508,2432,19,2,f +12508,2444,71,1,f +12508,2654,72,4,f +12508,2904,0,1,f +12508,3001,28,2,f +12508,3002,71,1,f +12508,3003,70,5,f +12508,3004,72,3,f +12508,30153,34,1,f +12508,30153,46,1,f +12508,30153,36,1,f +12508,30173b,179,1,f +12508,30177,0,1,f +12508,3020,70,2,f +12508,3021,72,1,f +12508,3021,71,2,f +12508,3022,70,2,f +12508,3023,72,9,f +12508,30293,72,1,f +12508,30294,72,1,f +12508,3032,72,1,f +12508,30374,297,1,f +12508,30383,72,2,f +12508,3040b,28,10,f +12508,30414,72,2,f +12508,30553,72,2,f +12508,30565,2,1,f +12508,32016,70,4,f +12508,32054,71,1,f +12508,32062,4,4,f +12508,32064b,72,6,f +12508,32073,71,2,f +12508,32270,0,1,f +12508,3626bpr0745,14,1,f +12508,3639,72,1,f +12508,3640,72,1,f +12508,3660,70,6,f +12508,3666,70,3,f +12508,3678b,70,1,f +12508,3700,70,1,f +12508,3709,72,2,f +12508,3747b,72,2,f +12508,3795,70,5,f +12508,3849,0,2,f +12508,4032a,70,4,f +12508,4150,28,5,f +12508,41766,70,1,f +12508,4287,70,2,f +12508,43719,72,1,f +12508,44728,72,2,f +12508,4519,71,4,f +12508,4589,72,2,f +12508,47455,0,1,f +12508,47456,70,4,f +12508,47457,28,2,f +12508,47759,70,7,f +12508,48169,288,1,f +12508,48170,72,1,f +12508,48336,71,4,f +12508,53562,0,4,f +12508,54383,72,1,f +12508,54384,72,1,f +12508,54821,19,2,f +12508,57585,71,1,f +12508,57909a,72,7,f +12508,59229,72,1,f +12508,60470a,71,4,f +12508,60475a,71,1,f +12508,60483,72,2,f +12508,6126b,182,1,f +12508,6141,0,2,f +12508,6141,0,1,t +12508,6239,378,4,f +12508,62462,71,1,f +12508,63868,0,4,f +12508,64275,148,2,f +12508,64644,0,1,f +12508,64727,71,2,f +12508,64867,70,9,f +12508,6553,0,1,f +12508,6558,1,1,f +12508,87079pr0008,15,2,f +12508,87747,297,1,f +12508,87747,179,2,f +12508,92013,72,2,f +12508,92690,297,1,f +12508,92946,72,3,f +12508,93057pr0002,0,1,f +12508,93059,19,1,f +12508,93061,15,1,t +12508,93061,15,2,f +12508,93062c01,15,2,f +12508,93066pr0001,15,1,f +12508,93071pr0001,70,1,f +12508,93072pr0002,72,1,f +12508,93571,72,5,f +12508,970c00pb104,0,1,f +12508,973pr1751c01,0,1,f +12509,3002,4,1,f +12509,3002,15,2,f +12509,3004,15,4,f +12509,3004,0,2,f +12509,3004p51,14,1,f +12509,3005,15,8,f +12509,3022,15,2,f +12509,3023,4,2,f +12509,3023,15,15,f +12509,3032,4,1,f +12509,3039,15,5,f +12509,3040b,4,6,f +12509,3460,15,2,f +12509,3660,15,3,f +12509,3660,4,2,f +12509,3688,4,2,f +12509,4070,15,4,f +12509,56823,0,1,f +12511,4274,7,100,f +12513,2493b,20,1,f +12513,2493b,462,1,f +12513,2494,47,1,f +12513,2494px1,0,1,f +12513,3003,45,3,f +12513,3003,20,1,f +12513,30046,0,1,f +12513,3005,52,2,f +12513,30136,15,2,f +12513,30153,45,1,f +12513,30153,33,1,f +12513,3021,25,1,f +12513,3022,25,3,f +12513,30238,42,1,f +12513,3034,25,1,f +12513,30374,6,1,f +12513,30374,45,1,f +12513,3069bpx39,33,1,f +12513,3069bpx41,15,1,f +12513,3070b,14,1,t +12513,3070b,14,1,f +12513,33009px1,2,1,f +12513,33009px4,8,1,f +12513,33286,25,2,f +12513,33291,5,1,t +12513,33291,5,3,f +12513,33320,2,1,f +12513,3460,25,1,f +12513,3626bph1,14,1,f +12513,3710,25,1,f +12513,3937,15,1,f +12513,3938,15,1,f +12513,40232,15,1,f +12513,40233,0,1,f +12513,40241,110,1,f +12513,40242,462,1,f +12513,4079,5,3,f +12513,41539,20,1,f +12513,41539,110,1,f +12513,4341,0,1,f +12513,45,334,1,f +12513,4532,462,1,f +12513,4533,15,1,f +12513,4589,57,1,f +12513,4589,42,1,f +12513,4721cdb01,89,1,f +12513,4864b,15,6,f +12513,4865a,25,3,f +12513,50231,110,1,f +12513,6126a,57,2,f +12513,6141,57,4,f +12513,6141,57,1,t +12513,62808,60,2,f +12513,970c00,7,1,f +12513,973px146c01,7,1,f +12514,2524,70,1,f +12514,2526,1,1,t +12514,2526,1,1,f +12514,2530,72,1,t +12514,2530,72,1,f +12514,2545pr0001,0,1,f +12514,2561,70,1,f +12514,2562,70,1,f +12514,3020,70,1,f +12514,3626bpr0348,14,1,f +12514,3710,272,2,f +12514,3794b,71,1,f +12514,59900,19,2,f +12514,60475a,71,2,f +12514,970c00,15,1,f +12514,973pr1441c01,4,1,f +12515,3443c02,4,1,f +12515,699,1,1,f +12517,2419,0,2,f +12517,2420,0,8,f +12517,2436,0,4,f +12517,2444,4,2,f +12517,2555,4,2,f +12517,2695,71,1,f +12517,2780,0,1,t +12517,2780,0,2,f +12517,30000,71,2,f +12517,3004,4,1,f +12517,3021,72,1,f +12517,3022,4,2,f +12517,3022,0,1,f +12517,3023,72,4,f +12517,3023,4,2,f +12517,30350b,72,1,f +12517,30363,4,2,f +12517,30365,4,2,f +12517,30374,0,2,f +12517,3039,4,4,f +12517,3048c,0,1,f +12517,30540,0,2,f +12517,30552,72,1,f +12517,3062b,42,6,f +12517,3176,0,2,f +12517,32000,0,7,f +12517,32013,0,2,f +12517,32054,0,2,f +12517,32062,4,3,f +12517,32123b,71,1,t +12517,32123b,71,1,f +12517,32140,0,2,f +12517,32316,0,2,f +12517,32530,0,2,f +12517,3298,4,2,f +12517,3622,72,2,f +12517,3626bpr0446,14,1,f +12517,3673,71,1,t +12517,3673,71,4,f +12517,3700,4,2,f +12517,3705,0,1,f +12517,3706,0,1,f +12517,3709,4,2,f +12517,3710,0,1,f +12517,3713,71,1,t +12517,3713,71,1,f +12517,3738,4,1,f +12517,3747b,0,1,f +12517,3794a,71,2,f +12517,3795,0,1,f +12517,3839b,72,1,f +12517,3938,71,1,f +12517,40002,47,1,f +12517,41532,0,3,f +12517,41677,0,3,f +12517,41678,0,2,f +12517,41749,4,1,f +12517,41750,4,1,f +12517,41767,4,1,f +12517,41768,4,1,f +12517,42022,4,4,f +12517,4274,71,1,t +12517,4274,71,4,f +12517,43093,1,2,f +12517,4328,71,1,f +12517,43712,4,2,f +12517,44728,72,2,f +12517,4588,72,2,f +12517,4589,42,4,f +12517,4589,71,2,f +12517,47314,4,2,f +12517,47432,72,2,f +12517,47452,72,2,f +12517,47455,4,6,f +12517,47457,4,6,f +12517,48170,72,2,f +12517,48172,0,1,f +12517,48336,0,1,f +12517,53982,10,1,f +12517,54200,47,2,f +12517,54605,47,1,f +12517,59426,72,1,f +12517,6070,40,1,f +12517,6091,0,2,f +12517,6091,4,2,f +12517,6141,71,1,t +12517,6141,71,6,f +12517,6536,0,4,f +12517,6538b,72,1,f +12517,6541,72,4,f +12517,6558,0,4,f +12517,6587,72,2,f +12517,6636,0,2,f +12517,7701stk01,9999,1,f +12517,970c00,4,1,f +12517,973pr1233c01,4,1,f +12518,11477,1,8,f +12518,15068,1,2,f +12518,18654,72,1,t +12518,18654,72,2,f +12518,18972,40,1,f +12518,18974,1,4,f +12518,18975,72,2,f +12518,18976,179,4,f +12518,18977,0,4,f +12518,18980,0,1,f +12518,2420,1,2,f +12518,2420,15,8,f +12518,2420,0,2,f +12518,24308a,72,4,f +12518,24308b,72,4,t +12518,24309,15,1,f +12518,2431,1,5,f +12518,2436,71,2,f +12518,2446,15,1,f +12518,2447,47,1,t +12518,2447,47,1,f +12518,3001,72,1,f +12518,3002,4,1,f +12518,30029,0,1,f +12518,3004,72,3,f +12518,3020,14,3,f +12518,3020,0,2,f +12518,3021,2,3,f +12518,3022,72,3,f +12518,3023,0,6,f +12518,3023,71,4,f +12518,3024,1,1,t +12518,3024,1,8,f +12518,30357,1,2,f +12518,30363,15,1,f +12518,30414,4,1,f +12518,3068b,15,2,f +12518,3069b,15,4,f +12518,3069b,1,1,f +12518,3070b,1,4,f +12518,3070b,1,1,t +12518,3622,15,2,f +12518,3623,1,6,f +12518,3623,1,1,t +12518,3626cpr1489,14,1,f +12518,3666,1,3,f +12518,3678b,15,1,f +12518,3710,72,4,f +12518,3710,0,3,f +12518,3749,19,4,f +12518,3829c01,15,1,f +12518,4006,0,1,f +12518,44728,4,2,f +12518,54200,15,1,t +12518,54200,1,1,t +12518,54200,15,1,f +12518,54200,1,6,f +12518,54200,4,1,f +12518,54200,4,1,t +12518,60477,1,2,f +12518,6141,25,4,f +12518,6141,25,1,t +12518,6636,1,4,f +12518,6636,0,2,f +12518,75871stk01,9999,1,f +12518,85984,0,2,f +12518,85984,1,2,f +12518,87079,0,1,f +12518,87079,1,1,f +12518,87609,1,1,f +12518,970x001,272,1,f +12518,973pr3282c01,15,1,f +12518,99206,71,1,f +12518,99207,0,7,f +12518,99780,1,2,f +12518,99780,0,8,f +12518,99781,15,8,f +12519,10048,84,1,f +12519,10053,179,1,f +12519,10053,179,1,t +12519,10247,0,1,f +12519,11010,334,2,t +12519,11010,334,1,f +12519,11477,308,2,f +12519,11908,0,1,f +12519,12939,72,1,f +12519,13965,70,2,f +12519,15493pr0001,84,1,f +12519,16188,28,1,f +12519,16401,9999,1,t +12519,2412b,0,10,f +12519,2420,72,2,f +12519,2431,70,2,f +12519,2445,1,6,f +12519,2450,308,2,f +12519,2453b,72,1,f +12519,2458,72,1,f +12519,2489,308,1,f +12519,2540,0,1,f +12519,2551,70,2,f +12519,2654,1,2,f +12519,2780,0,1,f +12519,2780,0,1,t +12519,30000,72,1,f +12519,3001,70,1,f +12519,3004,288,3,f +12519,30043,0,2,f +12519,30044,288,4,f +12519,30046,297,3,f +12519,3005,288,20,f +12519,3005,70,2,f +12519,30055,0,8,f +12519,30136,70,16,f +12519,30136,308,12,f +12519,30137,70,15,f +12519,30139,70,1,f +12519,30165,70,2,f +12519,3020,288,1,f +12519,3021,288,1,f +12519,3022,70,1,f +12519,3023,0,2,f +12519,3023,72,2,f +12519,3023,19,4,f +12519,3032,70,1,f +12519,3033,70,2,f +12519,3034,72,2,f +12519,3035,70,4,f +12519,30350b,70,1,f +12519,3036,70,2,f +12519,30374,0,3,f +12519,3039,70,1,f +12519,3040b,308,16,f +12519,3040b,288,3,f +12519,30410,0,1,f +12519,3062b,320,10,f +12519,3062b,46,3,f +12519,3062b,0,7,f +12519,3068b,28,2,f +12519,3068b,70,1,f +12519,3069b,70,4,f +12519,32028,72,8,f +12519,32064b,72,1,f +12519,32073,71,1,f +12519,32530,72,2,f +12519,3623,72,2,f +12519,3623,70,3,f +12519,3626cpr1081,78,1,f +12519,3626cpr1102,78,1,f +12519,3626cpr1313,78,1,f +12519,3626cpr1322,78,1,f +12519,3626cpr1370,78,1,f +12519,3659,308,5,f +12519,3660,308,3,f +12519,3665,308,3,f +12519,3666,0,3,f +12519,3666,70,7,f +12519,3666,72,1,f +12519,3673,71,1,t +12519,3673,71,2,f +12519,3679,71,2,f +12519,3680,0,2,f +12519,3700,70,6,f +12519,3709,0,1,f +12519,3710,70,11,f +12519,3794b,28,2,f +12519,3794b,72,4,f +12519,3795,70,6,f +12519,3937,72,6,f +12519,3941,70,26,f +12519,3957b,0,1,f +12519,3958,70,5,f +12519,4070,0,1,f +12519,4081b,0,4,f +12519,41669,0,1,f +12519,41769,15,4,f +12519,41879a,0,1,f +12519,41879a,28,1,f +12519,4274,71,1,t +12519,4274,71,1,f +12519,43723,15,4,f +12519,43888,70,2,f +12519,43899,72,1,f +12519,4495b,288,2,f +12519,4519,71,1,f +12519,4740,0,2,f +12519,47905,70,1,f +12519,48002a,0,1,f +12519,48729b,0,3,f +12519,48729b,0,2,t +12519,50231pb04,320,1,f +12519,54200,70,1,t +12519,54200,15,3,t +12519,54200,15,12,f +12519,54200,70,2,f +12519,56823c50,0,1,f +12519,59232,179,1,f +12519,6005,0,2,f +12519,6020,70,1,f +12519,60477,308,2,f +12519,60483,72,1,f +12519,60596,72,1,f +12519,60621,308,1,f +12519,60808,72,1,f +12519,60897,72,3,f +12519,6091,0,2,f +12519,61252,71,1,f +12519,6134,71,6,f +12519,6141,15,6,f +12519,6141,0,2,t +12519,6141,297,1,t +12519,6141,70,2,t +12519,6141,70,10,f +12519,6141,15,3,t +12519,6141,297,2,f +12519,6141,0,8,f +12519,62361,70,2,f +12519,62808,297,1,t +12519,62808,297,1,f +12519,63864,288,3,f +12519,63868,71,1,f +12519,64647,288,1,t +12519,64647,288,1,f +12519,64648,179,1,f +12519,6541,0,3,f +12519,6587,28,1,f +12519,6636,70,1,f +12519,75902pr0003b,320,2,f +12519,85984,0,2,f +12519,87087,72,7,f +12519,87585,70,1,f +12519,87585,70,1,t +12519,88289,308,2,f +12519,92946,288,2,f +12519,92950,70,3,f +12519,93231,70,1,f +12519,93273,19,4,f +12519,94161,70,1,f +12519,95673,148,1,f +12519,95673,179,1,f +12519,970c00pr0578,308,1,f +12519,970c00pr0585,320,1,f +12519,970c00pr0627,308,1,f +12519,973pr2179c01,320,1,f +12519,973pr2507c01,272,1,f +12519,973pr2508c01,308,1,f +12519,973pr2573c01,85,1,f +12519,973pr2591c01,320,1,f +12519,98370,179,1,f +12521,2419,0,1,f +12521,2420,4,2,f +12521,2431,320,2,f +12521,2444,0,1,f +12521,2456,4,2,f +12521,2476a,288,1,f +12521,2488,0,1,f +12521,2555,288,3,f +12521,2780,0,1,t +12521,2780,0,1,f +12521,3002,0,1,f +12521,3003,15,1,f +12521,30031,0,1,f +12521,3004,288,3,f +12521,30088,179,1,f +12521,30089,0,1,f +12521,30153,34,1,f +12521,30153,42,1,f +12521,30153,33,1,f +12521,3020,1,3,f +12521,3021,4,1,f +12521,3023,27,7,f +12521,3024,4,1,f +12521,30367b,27,2,f +12521,3040b,288,6,f +12521,3048c,288,1,f +12521,32039,4,1,f +12521,32062,4,1,f +12521,32064b,2,1,f +12521,32123b,14,1,t +12521,32123b,14,2,f +12521,3623,27,2,f +12521,3626bpr0641,14,1,f +12521,3665,288,4,f +12521,3666,0,2,f +12521,3673,71,1,f +12521,3673,71,1,t +12521,3705,0,1,f +12521,3710,4,3,f +12521,3710,0,1,f +12521,3794b,0,5,f +12521,3795,0,2,f +12521,3937,71,1,f +12521,3937,0,3,f +12521,3938,4,1,f +12521,3958,28,1,f +12521,4032a,15,1,f +12521,40379,15,2,f +12521,4081b,15,4,f +12521,4085c,4,11,f +12521,41751,288,2,f +12521,42022,27,4,f +12521,4286,288,5,f +12521,4287,288,3,f +12521,43093,1,2,f +12521,44728,71,8,f +12521,45590,0,2,f +12521,4623,0,1,f +12521,4738a,297,1,f +12521,4739a,297,1,f +12521,47759,288,2,f +12521,48729b,71,1,t +12521,48729b,71,1,f +12521,52107,0,1,f +12521,53451,15,1,t +12521,53451,15,2,f +12521,53989,0,1,f +12521,54200,288,4,f +12521,54200,288,1,t +12521,55236,288,2,f +12521,59275,14,2,t +12521,59275,27,2,f +12521,59275,27,2,t +12521,59275,14,2,f +12521,6019,14,2,f +12521,6019,0,2,f +12521,6041,179,1,f +12521,60470a,71,1,f +12521,60474,288,2,f +12521,60478,4,2,f +12521,6133,288,2,f +12521,6134,4,2,f +12521,6134,71,1,f +12521,6141,34,1,t +12521,6141,34,2,f +12521,6141,47,1,t +12521,6141,47,1,f +12521,6141,36,1,t +12521,6141,36,2,f +12521,6141,297,1,t +12521,6141,297,2,f +12521,61678,4,3,f +12521,6541,14,2,f +12521,6541,0,3,f +12521,73983,0,2,f +12521,7978stk01,9999,1,t +12521,85984,15,1,f +12521,86500,33,2,f +12521,87747,297,1,f +12521,87747,15,7,f +12521,87754,71,1,f +12521,89159,46,1,f +12521,89918,133,1,f +12521,92280,0,2,f +12521,92290,297,1,f +12521,92947,15,2,f +12521,92947,19,1,f +12521,93148pr0001,378,1,f +12521,970c00,378,1,f +12521,970c00pr0198,72,1,f +12521,973pr1734c01,72,1,f +12521,973pr1736c01,378,1,f +12522,2476a,71,2,f +12522,2488,0,1,f +12522,2570,70,1,f +12522,2714a,71,2,f +12522,2780,0,8,f +12522,2780,0,1,t +12522,2926,0,1,f +12522,3004,320,1,f +12522,3010,0,2,f +12522,30104,72,2,f +12522,3020,70,3,f +12522,3022,70,2,f +12522,3023,4,2,f +12522,3036,70,1,f +12522,30488c01,0,1,f +12522,3069b,70,1,f +12522,3070b,70,1,t +12522,3070b,70,1,f +12522,3176,4,2,f +12522,32018,0,2,f +12522,32034,0,2,f +12522,32059,72,2,f +12522,32073,71,3,f +12522,32271,0,2,f +12522,32474,4,3,f +12522,32525,0,3,f +12522,32531,0,1,f +12522,32556,19,6,f +12522,33057,484,1,f +12522,3623,0,4,f +12522,3626bpr0250,14,1,f +12522,3626bpr0459,14,1,f +12522,3626bpr0511,378,1,f +12522,3666,70,1,f +12522,3673,71,1,f +12522,3673,71,1,t +12522,3701,72,1,f +12522,3710,70,1,f +12522,3794a,320,4,f +12522,3795,70,1,f +12522,3839b,71,1,f +12522,3844,80,2,f +12522,3847,135,1,f +12522,3849,72,1,f +12522,3958,70,1,f +12522,40379,378,4,f +12522,4070,0,2,f +12522,4070,320,4,f +12522,4085c,0,3,f +12522,43093,1,8,f +12522,43093,1,2,t +12522,43857,71,4,f +12522,43899,71,2,f +12522,4489b,70,2,f +12522,4495b,272,1,f +12522,4495b,82,1,f +12522,4497,135,1,f +12522,4599a,0,2,f +12522,4865a,71,2,f +12522,53451,15,1,t +12522,53451,15,5,f +12522,54200,72,2,f +12522,54200,72,1,t +12522,55817,132,4,f +12522,57562,135,1,f +12522,60639c02,378,1,f +12522,60640,378,1,f +12522,60641,378,1,f +12522,60642c02,378,1,f +12522,60671,378,1,f +12522,60751,132,1,f +12522,60752,134,1,f +12522,6141,0,1,t +12522,6141,0,2,f +12522,6141,80,1,t +12522,6141,80,7,f +12522,61747,320,1,f +12522,6231,71,4,f +12522,63965,70,1,f +12522,6553,71,2,f +12522,6558,1,1,f +12522,6636,70,2,f +12522,970x026,71,2,f +12522,970x199,70,1,f +12522,973pr0430c01,272,2,f +12522,973pr1352c01,72,1,f +12523,2412b,0,2,f +12523,2569,42,2,f +12523,298c02,4,2,f +12523,298c02,4,1,t +12523,30118p6v,7,2,f +12523,3021,4,1,f +12523,3022,0,1,f +12523,3034,4,1,f +12523,3068bp54,7,1,f +12523,3069bp51,0,1,f +12523,3479,0,1,f +12523,3626bp6w,4,1,f +12523,3795,0,1,f +12523,3941,0,2,f +12523,3956,7,1,f +12523,3959,0,2,f +12523,4032a,7,1,f +12523,4285b,0,1,f +12523,4589,42,5,f +12523,4596,7,1,f +12523,4740,57,1,f +12523,4740,42,2,f +12523,4859,7,1,f +12523,6019,7,2,f +12523,6141,57,2,f +12523,6141,57,1,t +12523,6233,0,1,f +12523,970c00pb021,0,1,f +12523,973pb0078c01,0,1,f +12524,3005,114,3,f +12524,30153,45,3,f +12524,3020,15,1,f +12524,3659,5,1,f +12524,3794a,15,1,f +12524,4070,15,2,f +12524,4589,15,3,f +12524,54200,15,2,f +12524,6182,15,1,f +12525,122c02,0,2,f +12525,2348b,47,1,f +12525,2349a,1,1,f +12525,2412a,15,1,f +12525,2431,15,2,f +12525,2436,1,1,f +12525,2441,0,1,f +12525,2445,4,1,f +12525,298c02,15,1,f +12525,3003,1,1,f +12525,3020,4,2,f +12525,3021,15,1,f +12525,3021,1,2,f +12525,3022,0,1,f +12525,3023,1,1,f +12525,3023,4,6,f +12525,3024,47,2,f +12525,3024,36,4,f +12525,3024,1,4,f +12525,3039p05,4,1,f +12525,3040b,15,2,f +12525,3068b,47,1,f +12525,3069b,15,1,f +12525,3070b,4,2,f +12525,3183a,1,1,f +12525,3460,4,2,f +12525,3623,15,2,f +12525,3623,4,2,f +12525,3626apr0001,14,2,f +12525,3641,0,8,f +12525,3660,4,2,f +12525,3665,4,2,f +12525,3666,15,2,f +12525,3666,4,1,f +12525,3710,15,2,f +12525,3710,1,3,f +12525,3731,4,1,f +12525,3788,1,2,f +12525,3788,4,2,f +12525,3821,1,1,f +12525,3822,1,1,f +12525,3823,47,1,f +12525,3829c01,15,1,f +12525,3899,47,2,f +12525,3937,1,1,f +12525,3938,1,1,f +12525,4276b,0,2,f +12525,4315,1,1,f +12525,4449,7,1,f +12525,4485,4,1,f +12525,4530,0,1,f +12525,4594,47,3,f +12525,4599a,1,1,f +12525,4624,7,4,f +12525,4625,4,2,f +12525,4715,15,1,f +12525,4857,15,2,f +12525,4861,15,1,f +12525,4864a,47,4,f +12525,4864a,15,4,f +12525,970c00,15,1,f +12525,970c00,4,1,f +12525,973p01c01,15,1,f +12525,973px62c01,15,1,f +12526,11055,0,2,f +12526,11090,14,2,f +12526,11289,40,2,f +12526,11458,72,2,f +12526,11476,71,4,f +12526,11477,272,2,f +12526,13547,0,4,f +12526,13731,0,2,f +12526,15068,25,1,f +12526,15391,0,2,f +12526,15392,72,2,f +12526,15392,72,1,t +12526,15573,19,2,f +12526,15573,0,6,f +12526,15573,25,1,f +12526,15712,0,1,f +12526,18663,47,1,f +12526,18987,0,1,f +12526,19185,0,1,f +12526,19888,0,1,f +12526,21019pat01,272,1,f +12526,2420,14,4,f +12526,2431,71,1,f +12526,2456,72,2,f +12526,2540,14,8,f +12526,2569,71,2,f +12526,2654,72,1,f +12526,2736,71,2,f +12526,2877,71,8,f +12526,3003,25,1,f +12526,30031,72,1,f +12526,30086,0,4,f +12526,30153,47,2,f +12526,30173b,179,1,t +12526,30173b,179,1,f +12526,3020,14,1,f +12526,3020,0,1,f +12526,3021,0,3,f +12526,3021,71,3,f +12526,3022,72,2,f +12526,3023,71,2,f +12526,3023,28,1,f +12526,3023,0,1,f +12526,3024,182,6,f +12526,3024,182,1,t +12526,3034,4,1,f +12526,30367c,179,2,f +12526,3039,0,2,f +12526,3062b,72,5,f +12526,30663,71,2,f +12526,3068b,71,1,f +12526,3069b,72,4,f +12526,3069b,14,1,f +12526,32013,0,2,f +12526,32014,14,2,f +12526,32064a,71,2,f +12526,32064a,72,2,f +12526,32123b,71,1,t +12526,32123b,71,2,f +12526,32291,0,2,f +12526,3460,72,1,f +12526,3623,0,4,f +12526,3626cpr1289,78,1,f +12526,3626cpr1613,0,1,f +12526,3626cpr1702,25,1,f +12526,3666,71,1,f +12526,3678b,0,2,f +12526,3700,72,6,f +12526,3703,0,1,f +12526,3705,0,2,f +12526,3710,14,3,f +12526,3795,71,4,f +12526,3832,71,2,f +12526,3941,25,2,f +12526,3956,71,1,f +12526,4032a,71,2,f +12526,42446,72,2,f +12526,4285b,72,1,f +12526,43093,1,2,f +12526,4345b,71,1,f +12526,4346,71,1,f +12526,43713,72,1,f +12526,4519,71,2,f +12526,4588,72,2,f +12526,47457,71,3,f +12526,4865a,14,1,f +12526,4865b,41,2,f +12526,50943,179,2,f +12526,53585,0,2,f +12526,54200,272,2,f +12526,54200,272,1,t +12526,54200,182,1,t +12526,54200,182,4,f +12526,55706,0,2,f +12526,59900,46,2,f +12526,59900,71,2,f +12526,60478,0,2,f +12526,6112,0,2,f +12526,61184,71,4,f +12526,61252,71,2,f +12526,61409,0,2,f +12526,6141,47,6,f +12526,6141,46,4,f +12526,6141,46,1,t +12526,6141,47,2,t +12526,6153b,272,1,f +12526,63868,72,2,f +12526,6553,0,2,f +12526,6558,1,2,f +12526,6636,0,4,f +12526,72454,72,1,f +12526,85984,71,1,f +12526,85984,0,4,f +12526,87079,71,1,f +12526,87079,0,2,f +12526,87991,0,1,f +12526,87994,0,2,f +12526,87994,0,1,t +12526,91988,0,1,f +12526,92013,72,2,f +12526,92099,72,1,f +12526,92107,0,1,f +12526,92280,0,4,f +12526,92338,179,1,f +12526,93273,0,2,f +12526,93606,0,2,f +12526,95199,72,1,f +12526,970c00,72,1,f +12526,970c00,288,1,f +12526,973pr2922c01,72,1,f +12526,973pr3057c01,272,1,f +12526,973pr3063c01,4,1,f +12526,99207,71,2,f +12526,99780,71,1,f +12527,2335,4,2,f +12527,2356,14,1,f +12527,2412b,0,2,f +12527,2412b,7,2,f +12527,2431,4,1,f +12527,2432,0,1,f +12527,2436,0,2,f +12527,2437,41,1,f +12527,2441,4,1,f +12527,2453a,4,4,f +12527,2513,15,1,f +12527,2540,15,1,f +12527,2577,14,2,f +12527,298c02,4,1,f +12527,298c02,14,1,f +12527,3001,15,1,f +12527,3003,15,1,f +12527,3005,0,2,f +12527,3008,4,1,f +12527,3010,4,2,f +12527,30179,4,1,f +12527,30180,14,1,f +12527,3023,1,2,f +12527,3024,46,2,f +12527,3024,36,2,f +12527,3028,2,1,f +12527,3029,2,1,f +12527,3031,14,1,f +12527,3039p70,15,1,f +12527,3069bpr0100,2,1,f +12527,3245b,15,1,f +12527,3623,0,2,f +12527,3623,15,2,f +12527,3626bp04,14,1,f +12527,3626bpr0001,14,1,f +12527,3641,0,4,f +12527,3660,4,2,f +12527,3710,4,1,f +12527,3710,14,3,f +12527,3788,15,1,f +12527,3821,15,1,f +12527,3822,15,1,f +12527,3829c01,7,1,f +12527,3832,14,1,f +12527,3899,14,1,f +12527,3899,4,1,f +12527,3941,4,1,f +12527,3957a,15,3,f +12527,3960,15,1,f +12527,4033,4,2,f +12527,4079,4,2,f +12527,4215b,4,1,f +12527,4485,15,1,f +12527,4485,4,1,f +12527,4599a,4,1,f +12527,4599a,14,1,f +12527,4624,7,4,f +12527,6111,0,1,f +12527,6160c01,0,1,f +12527,6212,0,1,f +12527,76041c01,0,1,f +12527,970c00,8,1,f +12527,970c00,4,1,f +12527,973c01,15,1,f +12527,973p70c01,6,1,f +12528,122c01,0,2,f +12528,2432,1,1,f +12528,3023,4,1,f +12528,3023,1,1,f +12528,3068bp82,1,1,f +12528,3626apr0001,14,1,f +12528,3641,0,2,f +12528,3710,1,1,f +12528,3829c01,1,1,f +12528,3839b,15,2,f +12528,3842b,4,1,f +12528,4288,0,2,f +12528,4349,0,2,f +12528,4590,1,1,f +12528,4732,4,1,f +12528,73590c01a,0,2,f +12528,970c00,15,1,f +12528,973p14c01,15,1,f +12529,22402,179,1,f +12529,2343,297,1,f +12529,33125,484,1,f +12529,3626cpr1783,14,1,f +12529,3941,71,1,f +12529,4497,179,2,f +12529,59900,57,1,f +12529,60474,15,1,f +12529,64567,15,1,f +12529,87991,19,1,f +12529,95228,40,1,f +12529,970c00pr0939,71,1,f +12529,973pr3152c01,71,1,f +12532,1196stk01,9999,1,t +12532,3626bpr0001,14,1,f +12532,4485,0,1,f +12532,4719,5,1,f +12532,92851,47,2,f +12532,970c00,0,1,f +12532,973c03,15,1,f +12533,14226c11,0,2,f +12533,14226c41,0,2,f +12533,2335,4,2,f +12533,2357,4,8,f +12533,2412b,4,4,f +12533,2412b,0,4,f +12533,2420,72,4,f +12533,2420,4,18,f +12533,2420,71,4,f +12533,2431,4,10,f +12533,2431,14,4,f +12533,2432,4,4,f +12533,2436,71,3,f +12533,2444,0,2,f +12533,2446pr26,15,1,f +12533,2446pr27,14,1,f +12533,2447,40,4,f +12533,2447,40,1,t +12533,2453a,71,2,f +12533,2454a,4,8,f +12533,2454a,71,1,f +12533,2465,71,2,f +12533,2495,4,1,f +12533,2496,0,1,f +12533,2508,15,1,f +12533,2540,4,6,f +12533,2653,71,2,f +12533,298c02,14,1,t +12533,298c02,14,1,f +12533,3001,15,2,f +12533,3001,14,3,f +12533,3002,14,1,f +12533,30029,0,2,f +12533,3004,4,11,f +12533,3004,71,2,f +12533,3005,71,6,f +12533,3008,4,1,f +12533,3009,71,4,f +12533,3009,4,6,f +12533,3010,4,2,f +12533,3010,14,2,f +12533,30179,4,1,f +12533,30187c05,15,1,f +12533,3020,4,6,f +12533,3020,15,2,f +12533,3020,0,5,f +12533,3020,72,1,f +12533,3021,72,2,f +12533,3022,4,7,f +12533,3022,71,2,f +12533,3023,0,11,f +12533,3023,15,2,f +12533,3023,71,18,f +12533,3023,72,3,f +12533,3023,4,18,f +12533,30237a,4,2,f +12533,3024,4,4,f +12533,30261,15,1,f +12533,3031,4,4,f +12533,3031,14,1,f +12533,3032,15,1,f +12533,3032,4,2,f +12533,3034,15,1,f +12533,3035,15,1,f +12533,30367b,0,1,f +12533,30367b,72,1,f +12533,30414,71,2,f +12533,3062b,15,2,f +12533,3062b,4,1,f +12533,3062b,1,1,f +12533,30648,0,10,f +12533,3068b,71,2,f +12533,3068b,0,2,f +12533,3068b,15,1,f +12533,3069b,4,14,f +12533,3069b,0,1,f +12533,3069b,14,5,f +12533,3069bpr0030,15,1,f +12533,3070b,4,1,t +12533,3070b,15,4,f +12533,3070b,14,2,f +12533,3070b,4,4,f +12533,3070b,36,1,f +12533,3070b,36,1,t +12533,3070b,15,1,t +12533,3070b,14,1,t +12533,3070bpr0007,71,1,t +12533,3070bpr0007,71,1,f +12533,3460,15,2,f +12533,3460,4,6,f +12533,3623,0,6,f +12533,3623,4,2,f +12533,3626bpr0279,14,1,f +12533,3626bpr0282,14,1,f +12533,3626bpr0367,78,1,f +12533,3626bpr0509,78,1,f +12533,3660,72,1,f +12533,3666,71,38,f +12533,3666,4,15,f +12533,3710,0,1,f +12533,3710,14,1,f +12533,3710,71,1,f +12533,3710,4,11,f +12533,3754,4,4,f +12533,3755,71,4,f +12533,3794a,4,12,f +12533,3795,71,2,f +12533,3795,15,2,f +12533,3795,0,8,f +12533,3795,4,3,f +12533,3811,15,1,f +12533,3829c01,4,2,f +12533,3857,72,1,f +12533,3857,15,1,f +12533,3941,14,1,f +12533,3941,71,4,f +12533,3962b,0,1,f +12533,4006,0,1,f +12533,4032a,14,1,f +12533,4032a,72,1,f +12533,4032a,4,1,f +12533,4032b,0,1,f +12533,4070,14,2,f +12533,4070,4,4,f +12533,4083,0,4,f +12533,4085c,0,1,f +12533,4085c,4,4,f +12533,4150,15,1,f +12533,4162,14,3,f +12533,4162,71,3,f +12533,42445,71,2,f +12533,42446,72,4,f +12533,4286,4,4,f +12533,4286,71,4,f +12533,4349,0,2,f +12533,43719,4,4,f +12533,43722,4,2,f +12533,43723,4,2,f +12533,44126,4,3,f +12533,4449,0,2,f +12533,4460b,71,4,f +12533,44728,4,5,f +12533,44728,71,2,f +12533,4477,4,16,f +12533,4485,4,2,f +12533,4533,0,8,f +12533,4589,4,2,f +12533,4589,15,2,f +12533,4589,0,4,f +12533,4599a,1,2,f +12533,4599a,0,3,f +12533,4599a,71,3,f +12533,4600,0,7,f +12533,4623,15,2,f +12533,4624,71,14,f +12533,47720,0,4,f +12533,4864b,0,4,f +12533,4865a,4,18,f +12533,50373,4,2,f +12533,50950,4,4,f +12533,55295,0,1,f +12533,55296,0,1,f +12533,55297,0,1,f +12533,55298,0,1,f +12533,55299,0,1,f +12533,55300,0,1,f +12533,55981,71,10,f +12533,6019,4,6,f +12533,6019,0,2,f +12533,6111,71,6,f +12533,6112,71,4,f +12533,6140,0,2,f +12533,6141,36,1,t +12533,6141,71,2,t +12533,6141,47,1,t +12533,6141,0,2,t +12533,6141,71,8,f +12533,6141,36,2,f +12533,6141,14,1,t +12533,6141,41,1,t +12533,6141,34,1,f +12533,6141,0,4,f +12533,6141,14,1,f +12533,6141,47,6,f +12533,6178,71,2,f +12533,6187,0,2,f +12533,63965,15,3,f +12533,6636,4,10,f +12533,73590c02a,0,1,f +12533,76041c02,0,1,f +12533,772,4,10,f +12533,772,71,8,f +12533,92410,71,4,f +12533,92410,4,4,f +12533,970c00,4,4,f +12533,973c02,4,1,f +12533,973c31,4,3,f +12537,3009p04,15,1,f +12537,3009pb002,15,1,f +12537,3009pt1,15,1,f +12537,3144,15,1,f +12537,777p03,15,1,f +12537,ftbushh,2,2,f +12537,ftfruith,2,2,f +12537,ftpineh,2,2,f +12538,2825,7,50,f +12539,10164pr0001,15,1,f +12539,10169,84,1,f +12539,3626bpr1162,14,1,f +12539,93223,15,1,t +12539,93223,15,1,f +12539,970c00,4,1,f +12539,973pr2112c01,4,1,f +12540,2420,2,8,f +12540,3023,2,16,f +12540,3024,2,16,f +12540,3460,2,8,f +12540,3623,2,8,f +12540,3666,2,8,f +12540,3710,2,16,f +12540,4477,2,4,f +12541,194cx1,2,1,f +12541,2335pr02,15,1,f +12541,2340,15,2,f +12541,2348b,41,2,f +12541,2349a,15,2,f +12541,2357,0,2,f +12541,2357,4,4,f +12541,2357,15,2,f +12541,2357,7,2,f +12541,2376,0,1,f +12541,2399,0,1,f +12541,2412b,2,3,f +12541,2412b,7,3,f +12541,2412b,0,6,f +12541,2413,4,2,f +12541,2431,14,2,f +12541,2431,0,3,f +12541,2431,15,3,f +12541,2431pt2,15,2,f +12541,2432,4,3,f +12541,2432,0,2,f +12541,2432,1,4,f +12541,2433,0,4,f +12541,2436,4,1,f +12541,2437,41,2,f +12541,2439,8,1,f +12541,2446,15,1,f +12541,2446px3,4,1,f +12541,2446px6,1,1,f +12541,2447,41,3,f +12541,2453a,14,6,f +12541,2453a,15,4,f +12541,2454a,15,1,f +12541,2456,0,4,f +12541,2465,7,5,f +12541,2465,14,1,f +12541,2465,0,3,f +12541,2495,4,1,f +12541,2496,0,1,f +12541,2518,2,4,f +12541,2536,6,5,f +12541,2540,7,4,f +12541,2540,0,3,f +12541,2546p01,4,1,f +12541,2555,1,1,f +12541,2563,6,1,f +12541,2566,6,1,f +12541,2610,14,5,f +12541,2617,7,1,f +12541,2625,15,3,f +12541,2625,4,1,f +12541,2626,4,2,f +12541,2626,15,2,f +12541,2636,4,2,f +12541,2637,4,1,f +12541,2638,4,1,f +12541,2639,7,4,f +12541,2642,7,1,f +12541,2654,0,6,f +12541,2723,15,1,f +12541,2780,0,4,f +12541,2873,15,1,f +12541,2875,0,2,f +12541,2921,4,1,f +12541,298c02,4,7,f +12541,298c02,0,2,f +12541,3001,14,2,f +12541,3001,0,1,f +12541,3001,7,2,f +12541,3002,0,1,f +12541,3003,15,1,f +12541,3003,0,5,f +12541,3004,14,8,f +12541,3004,4,1,f +12541,3004,15,5,f +12541,3004,7,3,f +12541,3004,1,3,f +12541,3004,0,11,f +12541,3005,0,1,f +12541,3005,14,6,f +12541,3005,1,2,f +12541,3005,7,4,f +12541,3008,15,2,f +12541,3008,14,3,f +12541,3008,7,2,f +12541,3009,14,3,f +12541,3009,15,4,f +12541,3009,7,6,f +12541,3009,4,2,f +12541,3010,15,2,f +12541,3010,4,6,f +12541,3010,7,1,f +12541,3020,2,2,f +12541,3020,0,1,f +12541,3020,7,4,f +12541,3020,1,2,f +12541,3021,0,1,f +12541,3021,15,2,f +12541,3022,4,3,f +12541,3022,15,3,f +12541,3022,0,2,f +12541,3022,2,3,f +12541,3022,14,3,f +12541,3022,7,4,f +12541,3023,15,1,f +12541,3023,4,17,f +12541,3023,0,5,f +12541,3023,14,2,f +12541,3024,15,5,f +12541,3024,2,2,f +12541,3024,36,4,f +12541,3024,14,2,f +12541,3027,7,2,f +12541,3027,4,1,f +12541,3028,7,4,f +12541,3029,7,2,f +12541,3031,0,1,f +12541,3032,14,1,f +12541,3034,0,1,f +12541,3034,7,4,f +12541,3035,7,1,f +12541,3037,15,1,f +12541,3039,14,6,f +12541,3039pc4,0,1,f +12541,3039pr0005,15,1,f +12541,3040b,0,6,f +12541,3040p33,0,2,f +12541,3048c,0,4,f +12541,3062b,36,1,f +12541,3062b,15,4,f +12541,3062b,1,2,f +12541,3062b,34,1,f +12541,3062b,4,3,f +12541,3068b,15,3,f +12541,3068b,4,1,f +12541,3069b,14,2,f +12541,3069bp52,15,1,f +12541,3070b,46,2,f +12541,3070b,34,1,f +12541,3070b,14,4,f +12541,3070b,36,1,f +12541,3127,7,1,f +12541,3308,7,3,f +12541,3403c01,0,1,f +12541,3456,15,1,f +12541,3460,2,2,f +12541,3460,14,2,f +12541,3460,15,4,f +12541,3474,4,1,f +12541,3479,4,5,f +12541,3587,0,1,f +12541,3622,14,1,f +12541,3622,0,1,f +12541,3622,15,3,f +12541,3623,4,4,f +12541,3626bp03,14,1,f +12541,3626bp04,14,2,f +12541,3626bp05,14,1,f +12541,3626bp7e,14,1,f +12541,3626bpr0001,14,2,f +12541,3633,4,5,f +12541,3641,0,4,f +12541,3660,14,2,f +12541,3665,1,1,f +12541,3666,1,1,f +12541,3666,14,1,f +12541,3666,15,3,f +12541,3673,7,2,f +12541,3678a,15,2,f +12541,3700,4,3,f +12541,3700,0,2,f +12541,3701,4,2,f +12541,3705,0,2,f +12541,3709,0,1,f +12541,3710,15,3,f +12541,3710,2,3,f +12541,3710,7,1,f +12541,3710,4,8,f +12541,3710,0,7,f +12541,3710,1,2,f +12541,3747b,14,2,f +12541,3747b,0,1,f +12541,3788,4,1,f +12541,3794a,15,3,f +12541,3794a,1,1,f +12541,3795,1,1,f +12541,3795,0,2,f +12541,3795,15,3,f +12541,3821,15,1,f +12541,3822,15,1,f +12541,3823,41,1,f +12541,3829c01,15,3,f +12541,3829c01,4,2,f +12541,3832,4,1,f +12541,3833,4,1,f +12541,3899,47,3,f +12541,3901,0,1,f +12541,3937,1,1,f +12541,3937,14,6,f +12541,3938,1,1,f +12541,3938,14,6,f +12541,3939,41,1,f +12541,3941,15,1,f +12541,3942c,15,1,f +12541,3942c,14,2,f +12541,3957a,7,1,f +12541,3957a,15,6,f +12541,3960,15,1,f +12541,3962b,0,1,f +12541,4006,0,1,f +12541,4032a,15,1,f +12541,4032a,2,2,f +12541,4032a,4,1,f +12541,4070,7,2,f +12541,4070,4,2,f +12541,4070,15,2,f +12541,4070,1,1,f +12541,4079,4,1,f +12541,4079,0,1,f +12541,4081b,1,1,f +12541,4083,1,3,f +12541,4085c,15,2,f +12541,4085c,1,1,f +12541,4161,4,2,f +12541,4162,14,2,f +12541,4175,1,2,f +12541,4185,7,1,f +12541,4211,4,1,f +12541,4213,15,2,f +12541,4214,15,1,f +12541,4215b,15,1,f +12541,4265b,7,4,f +12541,4266,4,1,f +12541,4282,4,1,f +12541,4282,14,1,f +12541,4282,7,2,f +12541,4286,15,2,f +12541,4286,0,2,f +12541,4287,4,2,f +12541,4315,15,3,f +12541,4315,2,1,f +12541,4349,7,1,f +12541,4477,15,2,f +12541,4477,4,1,f +12541,4477,2,4,f +12541,4485,4,2,f +12541,4485,15,1,f +12541,4495a,4,2,f +12541,4495a,1,2,f +12541,4495a,2,2,f +12541,4515,4,2,f +12541,4515p02,15,2,f +12541,4522,0,1,f +12541,4589,0,2,f +12541,4599a,4,3,f +12541,4600,0,2,f +12541,4617b,0,1,f +12541,4624,15,4,f +12541,4740,8,1,f +12541,4740,15,1,f +12541,4854,1,2,f +12541,4854,0,2,f +12541,4855,0,1,f +12541,4855,1,1,f +12541,4859,4,1,f +12541,4859,15,2,f +12541,4864a,1,4,f +12541,4865a,41,2,f +12541,4865a,4,1,f +12541,4865a,0,4,f +12541,4865a,15,6,f +12541,56823,0,1,f +12541,6111,4,2,f +12541,6111,15,1,f +12541,6112,4,2,f +12541,6112,15,4,f +12541,6141,1,8,f +12541,6141,36,1,t +12541,6141,34,1,t +12541,6141,36,1,f +12541,6141,14,14,f +12541,6141,4,10,f +12541,6141,34,1,f +12541,6152,41,1,f +12541,6159,4,3,f +12541,6160c01,4,3,f +12541,6160c01,15,1,f +12541,63965,4,1,f +12541,73037,4,1,f +12541,970c00,2,1,f +12541,970c00,15,1,f +12541,970c00,0,2,f +12541,970c00,4,2,f +12541,970c00,1,1,f +12541,973c11,0,1,f +12541,973p70c01,6,1,f +12541,973pb0202c01,15,1,f +12541,973pr1156c01,1,1,f +12541,973pr1190c01,0,1,f +12541,973px130c01,15,1,f +12541,973px36c01,4,1,f +12545,2470,6,2,f +12545,2540,4,1,f +12545,2555,4,1,f +12545,2586p4g,7,1,f +12545,3023,4,2,f +12545,3626bpx73,14,1,f +12545,3794a,7,1,f +12545,3795,0,2,f +12545,3839b,4,1,f +12545,3847,8,1,f +12545,4070,0,2,f +12545,4085c,7,2,f +12545,4497,6,1,f +12545,4600,7,1,f +12545,6122,0,1,f +12545,6126a,57,2,f +12545,970c00pb015,0,1,f +12545,973px120c01,0,1,f +12546,12825,72,1,f +12546,2540,4,1,f +12546,2543,4,1,f +12546,2714a,0,2,f +12546,3004,2,2,f +12546,3005,4,2,f +12546,3005,70,3,f +12546,3023,1,2,f +12546,3023,15,2,f +12546,3023,19,2,f +12546,3024,2,2,f +12546,3024,14,1,t +12546,3024,0,2,f +12546,3024,2,1,t +12546,3024,14,2,f +12546,3024,15,1,t +12546,3024,0,1,t +12546,3024,15,1,f +12546,3032,4,1,f +12546,30374,0,1,f +12546,30375,72,1,f +12546,30414,4,1,f +12546,3069b,2,1,f +12546,3069bpr0055,15,1,f +12546,3460,72,2,f +12546,3622,2,2,f +12546,3626cpr0891,14,1,f +12546,3626cpr1665,14,1,f +12546,3659,4,2,f +12546,3660,2,2,f +12546,3710,70,2,f +12546,3710,4,2,f +12546,3794b,1,2,f +12546,3794b,2,1,f +12546,3901,71,1,f +12546,3962b,0,1,f +12546,41769,70,1,f +12546,41770,70,1,f +12546,41879a,4,1,f +12546,4733,72,2,f +12546,4865a,2,1,f +12546,48729b,0,1,t +12546,48729b,0,3,f +12546,54200,15,1,f +12546,54200,72,2,f +12546,54200,15,1,t +12546,54200,4,1,t +12546,54200,72,1,t +12546,54200,4,2,f +12546,6124,42,1,t +12546,6124,42,1,f +12546,61252,19,2,f +12546,6132,15,1,f +12546,6132,15,1,t +12546,6141,297,1,t +12546,6141,15,1,t +12546,6141,0,1,t +12546,6141,15,3,f +12546,6141,297,2,f +12546,6141,0,1,f +12546,970c00,4,1,f +12546,973c02,4,1,f +12546,973pr1446c01,4,1,f +12547,2654,0,1,f +12547,2780,0,24,f +12547,2780,0,1,t +12547,2905,0,4,f +12547,2951,14,1,f +12547,32002,8,1,t +12547,32002,8,4,f +12547,32009,14,2,f +12547,32017,0,3,f +12547,32034,0,1,f +12547,32054,0,1,f +12547,32056,14,2,f +12547,32062,0,2,f +12547,32063,7,2,f +12547,32073,7,11,f +12547,32123b,7,1,t +12547,32123b,7,5,f +12547,32140,14,2,f +12547,32140,0,2,f +12547,32184,0,1,f +12547,32250,0,2,f +12547,32270,7,3,f +12547,32291,0,4,f +12547,32316,14,2,f +12547,32348,14,2,f +12547,32449,0,8,f +12547,32523,14,4,f +12547,32523,0,4,f +12547,32524,14,2,f +12547,32524,0,2,f +12547,32526,14,4,f +12547,32556,7,2,f +12547,32557,7,2,f +12547,3647,7,2,f +12547,3648b,7,1,f +12547,3650c,7,1,f +12547,3673,7,4,f +12547,3705,0,7,f +12547,3706,0,2,f +12547,3713,7,3,f +12547,3713,7,1,t +12547,3749,19,6,f +12547,3941,46,1,f +12547,4032a,0,1,f +12547,40490,14,2,f +12547,41677,0,8,f +12547,41678,14,2,f +12547,42003,0,7,f +12547,42003,14,1,f +12547,43093,1,5,f +12547,43857,14,2,f +12547,4519,7,12,f +12547,4716,0,1,f +12547,6141,36,1,t +12547,6141,36,4,f +12547,6536,7,1,f +12547,6536,0,4,f +12547,6538b,0,1,f +12547,6558,0,11,f +12547,6579,0,4,f +12547,6580,14,4,f +12547,6587,8,2,f +12547,6632,14,2,f +12547,6632,0,3,f +12547,9244,7,1,f +12548,2431,15,3,f +12548,2444,0,4,f +12548,2780,0,78,f +12548,2780,0,3,t +12548,2819,71,1,f +12548,3023,15,4,f +12548,3032,72,1,f +12548,3068b,0,2,f +12548,3069b,46,2,f +12548,32000,15,2,f +12548,32002,72,1,t +12548,32002,72,4,f +12548,32009,72,2,f +12548,32013,72,8,f +12548,32017,0,2,f +12548,32034,0,2,f +12548,32039,71,4,f +12548,32054,71,16,f +12548,32056,72,4,f +12548,32062,4,11,f +12548,32072,14,4,f +12548,32073,71,9,f +12548,32123b,71,14,f +12548,32123b,71,1,t +12548,32138,0,2,f +12548,32140,72,12,f +12548,32140,15,7,f +12548,32184,71,9,f +12548,32249,71,6,f +12548,32269,19,3,f +12548,32270,0,5,f +12548,32271,72,4,f +12548,32278,15,3,f +12548,32316,15,12,f +12548,32348,4,4,f +12548,32449,15,6,f +12548,32523,0,2,f +12548,32523,4,2,f +12548,32523,15,8,f +12548,32524,72,7,f +12548,32524,15,8,f +12548,32525,72,3,f +12548,32526,72,2,f +12548,32526,1,4,f +12548,32526,71,1,f +12548,32556,19,3,f +12548,33299a,71,7,f +12548,3623,0,2,f +12548,3647,72,1,t +12548,3647,72,2,f +12548,3648b,72,1,f +12548,3705,0,4,f +12548,3706,0,4,f +12548,3707,0,3,f +12548,3713,71,1,t +12548,3713,71,23,f +12548,3737,0,1,f +12548,3749,19,6,f +12548,40490,0,2,f +12548,41239,4,6,f +12548,41239,15,4,f +12548,41677,0,4,f +12548,41678,71,2,f +12548,42003,72,20,f +12548,4274,1,1,t +12548,4274,1,10,f +12548,43093,1,34,f +12548,43857,4,2,f +12548,44294,71,11,f +12548,4519,71,26,f +12548,4716,71,1,f +12548,48989,71,4,f +12548,50163,71,1,f +12548,54200,182,2,f +12548,54200,15,2,f +12548,54200,15,1,t +12548,54200,182,1,t +12548,56898,0,4,f +12548,56904,71,4,f +12548,59443,72,16,f +12548,60483,72,9,f +12548,60485,71,2,f +12548,61409,0,2,f +12548,6141,182,8,f +12548,6141,182,1,t +12548,6141,47,1,t +12548,6141,47,2,f +12548,6141,36,2,f +12548,6141,36,1,t +12548,62462,71,3,f +12548,64391,15,1,f +12548,64451,72,2,f +12548,64683,15,1,f +12548,6536,71,8,f +12548,6541,71,2,f +12548,6558,1,21,f +12548,6632,4,12,f +12548,75c12,0,1,f +12548,87080,15,2,f +12548,87082,71,2,f +12548,87083,72,9,f +12548,87086,15,2,f +12548,87761,0,1,f +12548,94925,71,2,f +12548,95744,9999,1,t +12551,2444,0,2,f +12551,2817,0,2,f +12551,32068,7,2,f +12551,32069,0,2,f +12551,6587,8,2,f +12551,6592,7,1,f +12551,6630,7,1,f +12552,12825,72,1,f +12552,2780,0,3,f +12552,30031,0,1,f +12552,3023,41,1,f +12552,3031,15,1,f +12552,32530,0,2,f +12552,3794b,70,1,f +12552,4070,71,2,f +12552,4274,71,1,f +12552,4740,33,2,f +12552,48169,72,1,f +12552,59900,33,1,f +12552,60897,71,2,f +12552,61184,71,2,f +12552,6141,41,2,f +12552,62462,15,1,f +12552,85940,0,2,f +12552,93606,484,1,f +12553,2431,7,2,f +12553,2736,7,1,f +12553,2780,0,15,f +12553,2905,1,2,f +12553,32000,7,2,f +12553,32002,8,2,t +12553,32002,8,9,f +12553,32009,8,2,f +12553,32013,7,4,f +12553,32014,8,1,f +12553,32015,8,2,f +12553,32015,110,2,f +12553,32016,110,2,f +12553,32016,0,6,f +12553,32017,8,2,f +12553,32034,6,1,f +12553,32039,8,2,f +12553,32039,7,5,f +12553,32039,110,5,f +12553,32039,0,5,f +12553,32054,0,1,f +12553,32054,8,2,f +12553,32056,8,4,f +12553,32056,110,2,f +12553,32062,0,44,f +12553,32063,1,1,f +12553,32073,0,4,f +12553,32074c01,0,1,f +12553,32123b,7,32,f +12553,32123b,7,3,t +12553,32140,7,1,f +12553,32140,1,2,f +12553,32140,8,2,f +12553,32174,7,2,f +12553,32175,7,3,f +12553,32184,110,2,f +12553,32184,8,2,f +12553,32192,8,1,f +12553,32192,110,3,f +12553,32249,7,4,f +12553,32249,110,7,f +12553,32250,110,12,f +12553,32291,7,1,f +12553,32291,8,3,f +12553,32291,0,2,f +12553,32293,0,1,f +12553,32307,1,2,f +12553,32348,7,2,f +12553,32449,7,6,f +12553,32449,8,4,f +12553,32449,0,6,f +12553,32474,7,4,f +12553,32475,0,2,f +12553,32523,8,1,f +12553,32527,135,2,f +12553,32528,135,2,f +12553,33299a,7,2,f +12553,3673,7,3,f +12553,3705,0,12,f +12553,3706,7,2,f +12553,3706,0,8,f +12553,3707,0,1,f +12553,3713,7,17,f +12553,3713,7,3,t +12553,3749,7,15,f +12553,41677,7,20,f +12553,41677,484,2,f +12553,41677,0,4,f +12553,41678,0,1,f +12553,41752,8,1,f +12553,4274,7,13,f +12553,4274,7,3,t +12553,4519,0,25,f +12553,6536,7,6,f +12553,6536,8,14,f +12553,6536,0,2,f +12553,6536,1,6,f +12553,6536,6,3,f +12553,6553,7,2,f +12553,6558,0,6,f +12553,6575,8,2,f +12553,6628,0,1,f +12553,6632,8,7,f +12553,6632,1,2,f +12553,71509,0,3,t +12553,71509,0,1,f +12553,75c10,179,2,f +12553,75c10,0,1,f +12553,76110c01,7,1,f +12553,78c04,6,2,f +12553,78c05,1,2,f +12554,2357,4,2,f +12554,2445,7,2,f +12554,2445,0,1,f +12554,2458,7,2,f +12554,2465,0,6,f +12554,2540,7,2,f +12554,2555,4,4,f +12554,2570,8,1,f +12554,2586p4g,7,5,f +12554,2653,8,4,f +12554,2743,0,2,f +12554,2921,4,4,f +12554,3002,8,1,f +12554,3003,8,3,f +12554,3003,4,3,f +12554,3004,0,1,f +12554,3004,8,4,f +12554,3007,0,1,f +12554,3009,0,3,f +12554,30099,0,6,f +12554,30101,0,4,f +12554,30104,0,3,f +12554,30136,6,6,f +12554,3020,0,1,f +12554,3020,6,1,f +12554,3021,7,1,f +12554,3022,7,2,f +12554,3023,6,2,f +12554,3023,0,1,f +12554,30273,8,1,f +12554,30275,8,1,f +12554,3029,0,1,f +12554,3031,4,1,f +12554,3032,8,2,f +12554,3032,0,2,f +12554,3034,8,6,f +12554,3036,2,1,f +12554,3036,0,1,f +12554,3037,0,1,f +12554,3039,8,3,f +12554,3039,0,2,f +12554,3039,7,1,f +12554,3040b,7,4,f +12554,3040b,8,6,f +12554,3048c,0,2,f +12554,3062b,4,6,f +12554,3062b,8,4,f +12554,3062b,7,17,f +12554,3068b,4,5,f +12554,3069b,7,2,f +12554,32074c01,0,1,f +12554,3298,0,2,f +12554,3307,7,2,f +12554,3455,7,2,f +12554,3460,0,2,f +12554,3460,6,2,f +12554,3626bpx70,14,1,f +12554,3626bpx72,14,1,f +12554,3626bpx73,14,1,f +12554,3626bpx84,14,1,f +12554,3659,0,1,f +12554,3659,8,2,f +12554,3659,7,3,f +12554,3666,4,2,f +12554,3666,0,4,f +12554,3679,7,2,f +12554,3680,0,2,f +12554,3684,0,2,f +12554,3684,8,2,f +12554,3700,4,6,f +12554,3700,0,2,f +12554,3701,0,2,f +12554,3710,7,6,f +12554,3737,0,2,f +12554,3749,7,10,f +12554,3794a,4,1,f +12554,3794a,0,1,f +12554,3847,8,1,f +12554,3849,8,6,f +12554,3896,0,1,f +12554,3941,7,3,f +12554,3956,8,1,f +12554,3957a,0,2,f +12554,4032a,7,6,f +12554,4070,4,2,f +12554,4085c,4,2,f +12554,4150,14,1,f +12554,4162,4,4,f +12554,4282,2,2,f +12554,4286,8,4,f +12554,4286,0,2,f +12554,4491b,6,1,f +12554,4493c01pb02,0,1,f +12554,4495b,4,5,f +12554,4510,7,2,f +12554,4589,4,2,f +12554,59,383,1,f +12554,6019,7,3,f +12554,6020,6,1,f +12554,6122,0,2,f +12554,6123,8,5,f +12554,6125,4,3,f +12554,6126a,57,2,f +12554,6141,4,1,t +12554,6141,4,2,f +12554,6182,7,2,f +12554,6182,0,1,f +12554,6215,4,1,f +12554,6222,6,10,f +12554,6232,8,1,f +12554,6249,8,1,f +12554,6541,4,4,f +12554,76110c01,7,1,f +12554,87695,15,6,f +12554,87695,15,2,t +12554,87696,15,4,t +12554,970c00,0,1,f +12554,970c00pb013,0,1,f +12554,970c00pb015,0,1,f +12554,970x021,0,1,f +12554,973px117c01,8,1,f +12554,973px119c01,0,1,f +12554,973px120c01,0,1,f +12554,973px137c01,6,1,f +12554,x376px3,6,1,f +12556,2780,0,15,f +12556,2853,7,2,f +12556,3651,7,4,f +12556,3673,7,10,f +12556,3713,7,15,f +12556,3749,7,4,f +12556,4273b,7,4,f +12556,4274,7,4,f +12556,6553,7,2,f +12556,6558,0,4,f +12557,2377,4,15,f +12557,3297,4,60,f +12557,3298,4,25,f +12557,3299,4,20,f +12557,3300,4,10,f +12557,3675,4,10,f +12557,3853,4,20,f +12557,3854,15,40,f +12557,3856,2,40,f +12557,3861b,4,10,f +12557,4862,41,15,f +12557,73312,4,5,f +12558,3037,0,50,f +12561,12825,71,1,f +12561,2446,15,1,f +12561,2447,40,1,f +12561,2447,40,1,t +12561,2877,71,1,f +12561,3003,15,1,f +12561,30031,71,1,f +12561,30374,71,1,f +12561,3039pr0001,15,1,f +12561,3068b,71,1,f +12561,3069bpr0100,2,2,f +12561,3069bpr0115,15,1,f +12561,3626bpr0282,14,1,f +12561,3626bpr0389,14,1,f +12561,3626bpr0410,14,1,f +12561,3626bpr0499,14,1,f +12561,3794b,1,1,f +12561,3795,1,1,f +12561,4083,15,1,f +12561,41334,0,1,f +12561,41334,72,1,f +12561,41854,15,1,f +12561,4345b,71,1,f +12561,4346,71,1,f +12561,4871,15,1,f +12561,6014b,71,4,f +12561,60212,15,1,f +12561,60700,0,4,f +12561,61409,1,2,f +12561,6141,46,1,f +12561,6141,33,1,t +12561,6141,33,2,f +12561,6141,46,1,t +12561,61482,71,1,f +12561,61482,71,1,t +12561,6157,0,2,f +12561,63868,1,2,f +12561,64567,0,1,f +12561,86035,15,1,f +12561,92585,4,1,f +12561,92586pr0001,84,1,f +12561,92590,28,1,f +12561,970c00,72,2,f +12561,970c00,0,2,f +12561,973pr1188c01,0,1,f +12561,973pr1197c01,15,1,f +12561,973pr1693c01,0,1,f +12561,973pr1694c01,71,1,f +12562,2335,0,2,f +12562,2540,0,2,f +12562,3020,0,1,f +12562,30256,7,1,f +12562,3941,0,1,f +12562,4032a,15,1,f +12562,6019,1,1,f +12562,6141,36,1,t +12562,6141,46,1,f +12562,6141,34,1,t +12562,6141,46,1,t +12562,6141,33,1,t +12562,6141,36,1,f +12562,6141,33,1,f +12562,6141,34,1,f +12565,3001,4,1,f +12565,3003,4,1,f +12565,3007,4,1,f +12565,3022,4,2,f +12565,3039,4,4,f +12565,3660,4,6,f +12566,11055,191,1,f +12566,11816pr0001,84,1,f +12566,2420,15,1,f +12566,2431,29,2,f +12566,2540,71,1,f +12566,3004,191,3,f +12566,3009,15,1,f +12566,3010,15,2,f +12566,3010,191,2,f +12566,30176,2,2,f +12566,3020,15,1,f +12566,3022,191,2,f +12566,3023,4,2,f +12566,3035,29,1,f +12566,3062b,41,1,f +12566,33172,25,1,f +12566,33183,10,1,f +12566,33183,10,1,t +12566,33303,15,2,f +12566,3633,15,3,f +12566,3666,26,2,f +12566,3741,2,1,t +12566,3741,2,1,f +12566,3742,5,3,f +12566,3742,5,1,t +12566,3794b,2,1,f +12566,3795,27,3,f +12566,3795,29,2,f +12566,3822,15,1,f +12566,3836,70,1,f +12566,41539,2,1,f +12566,4490,15,2,f +12566,4599b,71,1,f +12566,60475b,15,2,f +12566,60478,15,2,f +12566,6141,71,1,f +12566,6141,41,1,f +12566,6141,41,1,t +12566,6141,71,1,t +12566,92280,71,2,f +12566,92456pr0021c01,84,1,f +12566,92818pr0006c01,323,1,f +12566,92950,15,2,f +12566,93352,308,1,f +12566,95343,4,1,f +12566,95344,297,1,f +12566,95344,297,1,t +12566,98387pr0001,15,1,f +12567,2340,1,2,f +12567,3475b,0,2,f +12567,3933a,7,1,f +12567,3934a,7,1,f +12567,3935,7,1,f +12567,3936,7,1,f +12567,3963,0,2,f +12567,4229,7,2,f +12567,4476b,1,4,f +12567,4598,7,2,f +12567,4746,1,1,f +12573,11055,0,6,f +12573,11211,71,1,f +12573,11476,71,2,f +12573,11609,297,1,t +12573,11609,297,1,f +12573,11816pr0022,78,1,f +12573,15535,72,1,f +12573,15573,297,1,f +12573,15573,72,2,f +12573,15677,26,1,f +12573,18649,71,1,f +12573,18674,15,2,f +12573,2412b,71,9,f +12573,2431,191,2,f +12573,2431,71,3,f +12573,2454a,15,2,f +12573,2456,0,1,f +12573,2496,0,2,f +12573,2540,0,6,f +12573,2654,46,2,f +12573,2655,71,2,f +12573,298c02,71,1,f +12573,298c02,71,1,t +12573,30000,15,1,f +12573,3001,15,2,f +12573,3001,0,5,f +12573,3004,0,1,f +12573,3005,47,1,f +12573,3009,0,1,f +12573,3010,0,1,f +12573,3020,191,1,f +12573,3021,0,2,f +12573,3022,15,2,f +12573,3023,15,2,f +12573,3023,191,5,f +12573,30367c,71,2,f +12573,3039,0,1,f +12573,30586,15,2,f +12573,3068b,191,2,f +12573,3068b,0,4,f +12573,3069b,322,4,f +12573,3069b,26,3,f +12573,3069b,0,3,f +12573,3069bp02,71,1,f +12573,3069bpr0101,71,1,f +12573,32123b,14,1,t +12573,32123b,14,1,f +12573,32474,191,1,f +12573,3460,15,1,f +12573,3623,15,2,f +12573,3700,0,4,f +12573,3700,15,2,f +12573,3706,0,1,f +12573,3709,72,1,f +12573,3710,0,2,f +12573,3738,0,1,f +12573,3795,0,3,f +12573,40243,26,2,f +12573,4595,0,1,f +12573,46212,41,2,f +12573,4740,71,2,f +12573,54200,191,1,f +12573,54200,191,1,t +12573,59349,0,1,f +12573,59349,15,1,f +12573,6003,0,2,f +12573,6003,26,2,f +12573,60474,72,1,f +12573,60478,72,2,f +12573,6141,41,2,f +12573,6141,45,2,f +12573,6141,47,1,t +12573,6141,46,20,f +12573,6141,47,1,f +12573,6141,182,2,f +12573,6141,71,2,f +12573,6141,182,1,t +12573,6141,45,1,t +12573,6141,71,1,t +12573,6141,41,1,t +12573,61485,71,1,f +12573,62462,71,1,f +12573,6266,0,1,t +12573,6266,0,1,f +12573,63868,71,1,f +12573,64644,297,1,f +12573,64799,0,1,f +12573,6636,0,3,f +12573,73983,0,1,f +12573,85959pat0002,41,2,f +12573,87079,26,2,f +12573,87079,0,1,f +12573,87552,47,1,f +12573,87580,85,2,f +12573,87580,26,2,f +12573,90370pr0005,0,1,t +12573,90370pr0005,0,1,f +12573,91405,85,1,f +12573,92280,0,2,f +12573,92456pr0095c01,78,1,f +12573,92818pr0012c01,322,1,f +12573,95347,0,2,f +12573,98375,179,1,t +12573,98375,179,1,f +12573,98397,71,1,f +12573,99207,0,2,f +12573,99780,0,2,f +12575,2335,1,1,f +12575,2412b,0,1,f +12575,2412b,72,1,f +12575,2419,1,1,f +12575,2420,0,2,f +12575,2431,15,3,f +12575,2432,15,5,f +12575,2439,72,1,f +12575,2445,72,1,f +12575,2446,1,1,f +12575,2450,15,2,f +12575,2453a,15,2,f +12575,2454a,15,2,f +12575,2454a,25,2,f +12575,2456,15,1,f +12575,2476a,15,4,f +12575,2486,15,2,f +12575,2516,14,1,f +12575,2540,0,4,f +12575,2547,72,1,f +12575,2548,72,1,f +12575,2555,71,1,f +12575,2569,0,1,t +12575,2569,0,1,f +12575,2585,71,1,f +12575,2610,14,2,f +12575,2634c01,15,1,f +12575,2654,15,2,f +12575,2877,72,4,f +12575,298c02,0,2,t +12575,298c02,0,4,f +12575,3001,0,5,f +12575,3002,14,1,f +12575,3003,72,19,f +12575,3003,25,2,f +12575,3003,0,2,f +12575,30033,15,2,f +12575,3004,25,5,f +12575,3004,15,8,f +12575,3004,0,3,f +12575,3008,15,2,f +12575,30086,25,1,f +12575,30088,0,1,f +12575,30090,41,1,f +12575,30091,72,1,f +12575,3010,15,5,f +12575,30134,0,1,f +12575,30145,0,2,f +12575,30162,72,3,f +12575,30179,72,4,f +12575,30191,71,1,f +12575,30194,72,1,f +12575,3022,1,4,f +12575,3023,1,2,f +12575,3023,46,1,f +12575,3023,15,2,f +12575,3024,36,6,f +12575,3024,34,2,f +12575,30259,14,1,f +12575,30296,15,2,f +12575,3030,15,1,f +12575,3030,72,1,f +12575,3031,72,1,f +12575,3032,19,1,f +12575,3032,71,2,f +12575,3032,72,1,f +12575,3033,72,1,f +12575,3033,15,1,f +12575,30340,14,3,f +12575,3035,15,1,f +12575,3036,1,1,f +12575,3037,15,3,f +12575,30386,14,1,f +12575,30388,14,2,f +12575,30389c,0,1,f +12575,3039,0,2,f +12575,30395,72,2,f +12575,30396,0,1,f +12575,3039pr0002,15,1,f +12575,3039pr0005,15,1,f +12575,3039pr0013,15,1,f +12575,30562,41,2,f +12575,30562,15,2,f +12575,30562,25,2,f +12575,30565,15,2,f +12575,3062b,4,2,f +12575,3062b,15,4,f +12575,3068b,71,1,f +12575,3068b,72,2,f +12575,3069b,15,4,f +12575,3069b,1,1,f +12575,3069bp08,15,1,f +12575,3070bpr0007,71,1,t +12575,3070bpr0007,71,1,f +12575,3176,0,1,f +12575,3298,15,3,f +12575,3460,15,1,f +12575,3622,15,4,f +12575,3626bpr0270,14,1,f +12575,3626bpr0279,14,1,f +12575,3626bpr0282,14,1,f +12575,3626bpr0325,14,1,f +12575,3666,15,4,f +12575,3675,15,2,f +12575,3678b,0,2,f +12575,3679,71,3,f +12575,3680,0,3,f +12575,3710,19,2,f +12575,3710,15,2,f +12575,3710,0,1,f +12575,3794a,15,2,f +12575,3795,15,2,f +12575,3829c01,15,1,f +12575,3832,1,1,f +12575,3835,0,1,f +12575,3838,14,1,f +12575,3941,4,2,f +12575,3941,15,4,f +12575,3941,46,1,f +12575,3942c,4,2,f +12575,3942c,15,1,f +12575,3943b,15,1,f +12575,3960,15,1,f +12575,3962b,0,1,f +12575,4032a,4,2,f +12575,4032a,15,3,f +12575,4032a,2,2,f +12575,4079,1,2,f +12575,4081b,15,1,f +12575,4083,0,2,f +12575,4085c,71,6,f +12575,4151b,71,4,f +12575,4162,1,4,f +12575,4175,0,2,f +12575,41862,0,2,f +12575,4282,72,2,f +12575,4285b,0,1,f +12575,4286,15,2,f +12575,4289,15,1,f +12575,43337,15,6,f +12575,4349,72,1,f +12575,43898,15,2,f +12575,4477,1,2,f +12575,4477,15,1,f +12575,4485,1,3,f +12575,4510,15,1,f +12575,4589,46,1,f +12575,4589,14,1,f +12575,4589,36,1,f +12575,4589,72,1,f +12575,4589,34,1,f +12575,4599a,0,6,f +12575,4599a,4,3,f +12575,4599a,15,8,f +12575,46212,41,3,f +12575,4623,71,12,f +12575,4697b,71,1,f +12575,4697b,71,1,t +12575,4714,15,1,f +12575,4715,15,2,f +12575,4740,72,1,f +12575,48092,15,4,f +12575,48336,71,4,f +12575,48723,72,1,f +12575,48729a,72,1,t +12575,48729a,72,1,f +12575,53588,72,1,f +12575,53989,15,7,f +12575,54200,36,1,t +12575,54200,36,1,f +12575,54200,34,1,f +12575,54200,34,1,t +12575,57895,41,4,f +12575,59275,25,2,f +12575,59443,71,1,f +12575,6003,72,4,f +12575,60169,72,1,f +12575,6019,15,2,f +12575,60470a,15,5,f +12575,60474,71,1,f +12575,60601,41,4,f +12575,6075,15,1,f +12575,6117,72,1,f +12575,61345,15,2,f +12575,6140,0,2,f +12575,61409,72,4,f +12575,6141,46,1,t +12575,6141,36,1,t +12575,6141,25,1,t +12575,6141,46,2,f +12575,6141,36,1,f +12575,6141,34,1,f +12575,6141,25,8,f +12575,6141,34,1,t +12575,61485,71,1,f +12575,61678,15,2,f +12575,61780,72,2,f +12575,62113,72,1,f +12575,6231,15,3,f +12575,62576,15,1,f +12575,62791c01,25,1,f +12575,62810,0,1,f +12575,63965,15,5,f +12575,6587,72,1,f +12575,6636,1,3,f +12575,6636,15,2,f +12575,75c18,1,2,f +12575,7739stk01,9999,1,t +12575,970c00,4,1,f +12575,970c00,1,3,f +12575,973pr1173c01,4,1,f +12575,973pr1363c01,14,3,f +12578,2540,71,3,f +12578,2780,0,1,t +12578,2780,0,18,f +12578,2877,72,2,f +12578,298c02,4,1,t +12578,298c02,4,2,f +12578,3001,0,1,f +12578,3021,71,4,f +12578,3023,15,7,f +12578,3034,0,1,f +12578,3039,72,2,f +12578,30414,71,3,f +12578,3069b,71,2,f +12578,3176,72,1,f +12578,32000,72,3,f +12578,32014,71,3,f +12578,32062,4,6,f +12578,32064a,4,1,f +12578,32187,71,2,f +12578,3626cpr0792,14,1,f +12578,3700,71,3,f +12578,3713,71,1,t +12578,3713,71,5,f +12578,3747b,0,3,f +12578,3794a,27,6,f +12578,3957a,42,1,f +12578,3958,72,1,f +12578,41678,0,6,f +12578,4274,1,1,t +12578,4274,1,1,f +12578,4285b,0,3,f +12578,44358,71,1,f +12578,44359,71,2,f +12578,4449,70,1,f +12578,4716,71,3,f +12578,4871,72,1,f +12578,50747,47,1,f +12578,50950,85,6,f +12578,50955,71,1,f +12578,50956,71,1,f +12578,55013,72,3,f +12578,57585,71,1,f +12578,58177,0,3,f +12578,59443,71,3,f +12578,59900,42,2,f +12578,60470a,0,1,f +12578,60474,71,1,f +12578,61184,71,2,f +12578,61252,0,5,f +12578,6141,85,5,f +12578,6141,42,1,t +12578,6141,42,1,f +12578,6141,85,1,t +12578,6232,71,3,f +12578,62810,0,1,f +12578,63868,71,2,f +12578,64451,0,6,f +12578,64727,27,3,f +12578,7051stk01,9999,1,t +12578,87083,72,2,f +12578,87752,35,2,f +12578,87993,179,1,f +12578,92947,71,1,f +12578,95120,27,1,f +12578,95188,71,2,f +12578,95203pr0002,27,1,f +12578,95204pr0001,27,1,f +12578,970c00,272,1,f +12578,970c00pr0231,0,1,f +12578,973pr1775c01,0,1,f +12578,973pr1776c01,272,1,f +12579,3002apb06,15,2,f +12579,3003,0,1,f +12579,3004,47,2,f +12579,3004,15,2,f +12579,3010pb036e,15,1,f +12579,3024,1,1,f +12579,3030,0,1,f +12579,3031,0,1,f +12579,3037,47,2,f +12579,3137c01,0,2,f +12579,3139,0,4,f +12582,3626bpr0495,14,1,f +12582,51345pr0001,288,1,f +12582,59363,70,1,f +12582,973pr1444c01,14,1,f +12583,1092ba,9999,1,f +12583,1092bbcd,9999,1,f +12583,1092be,9999,1,f +12583,1092boc,9999,1,f +12584,2343,14,8,f +12584,2343,4,8,f +12584,2412b,0,6,f +12584,2421,7,1,f +12584,2431,7,2,f +12584,2432,0,1,f +12584,2440,14,1,f +12584,2440,0,1,f +12584,2445,14,2,f +12584,2445,0,1,f +12584,2445,4,1,f +12584,2446px5,1,1,f +12584,2446px5,15,1,f +12584,2447,0,2,f +12584,2452,7,2,f +12584,2460,4,1,f +12584,2479,7,1,f +12584,2483,33,1,f +12584,2495,4,1,f +12584,2496,0,3,f +12584,2540,7,6,f +12584,2655,7,2,f +12584,2880,4,6,f +12584,298c02,4,2,f +12584,2994,15,4,f +12584,3001,0,1,f +12584,30029,14,1,f +12584,30029,0,1,f +12584,3004,4,4,f +12584,3010,0,1,f +12584,3020,0,1,f +12584,3020,7,2,f +12584,3020,4,1,f +12584,3020,14,1,f +12584,3022,14,2,f +12584,3022,4,4,f +12584,3023,0,4,f +12584,3023,2,2,f +12584,3023,4,5,f +12584,3024,15,1,f +12584,3040b,4,1,f +12584,3062b,4,1,f +12584,3069bp52,15,2,f +12584,3139,0,4,f +12584,3176,7,1,f +12584,3460,0,4,f +12584,3623,15,1,f +12584,3623,4,1,f +12584,3623,14,1,f +12584,3626bp03,14,1,f +12584,3626bp04,14,1,f +12584,3626bp7b,14,1,f +12584,3626bpx27,14,1,f +12584,3666,14,4,f +12584,3666,4,2,f +12584,3666,0,2,f +12584,3701,7,4,f +12584,3705,0,2,f +12584,3710,15,4,f +12584,3710,7,4,f +12584,3710,0,2,f +12584,3747b,4,1,f +12584,3794a,0,6,f +12584,3795,0,3,f +12584,3829c01,7,2,f +12584,3937,0,10,f +12584,3938,7,12,f +12584,3941,15,1,f +12584,3942c,15,1,f +12584,3957a,15,1,f +12584,4032a,4,1,f +12584,4032a,15,1,f +12584,4032a,2,1,f +12584,4070,15,2,f +12584,4079,7,2,f +12584,4081b,15,2,f +12584,4083,15,2,f +12584,4085c,15,2,f +12584,4276b,4,6,f +12584,4282,7,1,f +12584,4286,0,2,f +12584,4315,0,1,f +12584,4349,7,2,f +12584,4360,15,1,f +12584,4477,0,1,f +12584,4485,15,1,f +12584,4485,1,1,f +12584,4488,0,1,f +12584,4495b,4,1,f +12584,4536,15,2,f +12584,4589,7,8,f +12584,4595,0,2,f +12584,4599a,4,2,f +12584,4624,15,4,f +12584,4629c01,1,1,f +12584,4715,15,2,f +12584,4733,0,2,f +12584,4859,7,2,f +12584,4859,14,2,f +12584,4859,0,2,f +12584,4864b,7,1,f +12584,4865a,0,2,f +12584,4865a,2,2,f +12584,55298,8,1,f +12584,6019,7,1,f +12584,6140,7,2,f +12584,6141,47,4,f +12584,6141,34,1,t +12584,6141,46,1,t +12584,6141,34,5,f +12584,6141,47,1,t +12584,6141,36,1,t +12584,6141,46,8,f +12584,6141,36,6,f +12584,6152,2,1,f +12584,6152,0,1,f +12584,6157,0,2,f +12584,63965,15,1,f +12584,6578,0,4,f +12584,71128,383,4,f +12584,92410,0,1,f +12584,970c00,2,1,f +12584,970c00,15,1,f +12584,970x024,0,2,f +12584,973p8ac03,0,1,f +12584,973p8ac04,0,1,f +12584,973pb0025c01,15,1,f +12584,973pb0101c01,15,1,f +12585,3005,14,6,f +12585,3008,14,2,f +12585,3009,0,2,f +12585,3010,1,18,f +12585,3020,1,2,f +12585,3020,4,2,f +12585,3022,7,18,f +12585,3023,1,24,f +12585,3024,0,4,f +12585,3024,7,2,f +12585,3030,1,2,f +12585,3040b,1,2,f +12585,3040b,14,3,f +12585,3068b,1,6,f +12585,3069b,1,6,f +12585,3176,7,6,f +12585,3456,0,1,f +12585,3460,1,6,f +12585,3622,1,3,f +12585,3623,14,4,f +12585,3623,4,3,f +12585,3648a,7,8,f +12585,3649,7,1,f +12585,3651,7,16,f +12585,3652,7,6,f +12585,3665,1,4,f +12585,3673,7,7,f +12585,3700,1,1,f +12585,3700,4,5,f +12585,3701,1,6,f +12585,3702,1,2,f +12585,3704,0,6,f +12585,3705,0,6,f +12585,3706,0,4,f +12585,3708,0,3,f +12585,3710,7,4,f +12585,3710,0,2,f +12585,3713,7,17,f +12585,3749,7,1,f +12585,3832,1,2,f +12585,3941,14,1,f +12585,4032a,14,2,f +12585,4185,7,2,f +12585,69c01,1,6,f +12585,85545,0,2,f +12585,x467c12,0,6,f +12588,11211,71,1,f +12588,11816pr0003,78,1,f +12588,2419,85,1,f +12588,2420,30,2,f +12588,2437,47,1,f +12588,3001,19,1,f +12588,3001,70,2,f +12588,3004,15,2,f +12588,30222,42,1,f +12588,3023,36,2,f +12588,3023,72,2,f +12588,3031,19,1,f +12588,3034,0,1,f +12588,30602,85,1,f +12588,3062b,19,6,f +12588,3062b,0,2,f +12588,3068b,29,1,f +12588,33085,14,1,f +12588,33291,10,1,t +12588,33291,10,2,f +12588,33291,4,1,t +12588,33291,4,5,f +12588,3623,85,2,f +12588,3626b,70,3,f +12588,3626c,14,1,f +12588,3707,0,1,f +12588,3710,29,1,f +12588,3741,2,1,t +12588,3741,2,1,f +12588,3794b,15,2,f +12588,3941,70,3,f +12588,4006,0,1,f +12588,4032a,2,1,f +12588,4081b,15,2,f +12588,41854,85,1,f +12588,48336,15,1,f +12588,4865b,29,2,f +12588,4871,15,2,f +12588,6014b,15,4,f +12588,60470a,71,1,f +12588,6141,46,1,t +12588,6141,46,2,f +12588,6141,27,1,f +12588,6141,19,1,t +12588,6141,25,1,f +12588,6141,25,1,t +12588,6141,27,1,t +12588,6141,19,2,f +12588,6148,2,3,f +12588,6157,71,2,f +12588,6231,29,4,f +12588,87697,0,4,f +12588,88930,322,1,f +12588,90397,322,1,f +12588,92256,70,1,f +12588,92456pr0034c01,78,1,f +12588,92819pr0002a,27,1,f +12588,92947,19,3,f +12588,93095,14,1,f +12588,98284,70,1,f +12589,3626bpb0431,73,1,f +12589,50231,4,1,f +12589,88646,0,1,f +12589,970c42pb01,73,1,f +12589,973pr1545c01,14,1,f +12591,2460,4,1,f +12591,3020,0,1,f +12591,3022,4,1,f +12591,3022,25,1,f +12591,3039,47,1,f +12591,3040b,4,1,f +12591,3660,4,1,f +12591,3710,0,2,f +12591,3731,4,1,f +12591,3747b,4,1,f +12591,4286,4,2,f +12591,44302a,4,1,f +12591,44567a,25,1,f +12591,4617b,0,1,f +12592,11153,4,2,f +12592,12825,15,3,f +12592,12825,72,1,f +12592,13608,179,6,f +12592,13731,4,2,f +12592,2340,15,2,f +12592,2412b,15,8,f +12592,2432,4,1,f +12592,2446,4,2,f +12592,2447,40,1,t +12592,2447,40,2,f +12592,2516,14,1,f +12592,2540,71,1,f +12592,2569,72,1,t +12592,2569,72,2,f +12592,2654,0,4,f +12592,298c02,14,2,f +12592,298c02,14,1,t +12592,3001,14,2,f +12592,3002,14,1,f +12592,3002,15,3,f +12592,30031,72,1,f +12592,3004,4,4,f +12592,3004,0,3,f +12592,3009,15,2,f +12592,30162,72,3,f +12592,3021,71,2,f +12592,3022,71,2,f +12592,3022,4,1,f +12592,3022,0,2,f +12592,3023,15,3,f +12592,3023,1,2,f +12592,3023,4,4,f +12592,3024,46,3,f +12592,3024,46,1,t +12592,3034,1,1,f +12592,3034,4,2,f +12592,30340,14,1,f +12592,30363,71,1,f +12592,30374,15,1,f +12592,30377,71,1,t +12592,30377,71,2,f +12592,3040b,4,2,f +12592,3062b,14,4,f +12592,3069b,33,2,f +12592,3069b,71,1,f +12592,3069b,15,3,f +12592,3070b,34,1,f +12592,3070b,36,1,f +12592,3070b,34,1,t +12592,32270,0,2,f +12592,32529,0,4,f +12592,3298,15,1,f +12592,3460,15,1,f +12592,3460,4,1,f +12592,3623,72,2,f +12592,3626bpr0914,14,1,f +12592,3626bpr0920,14,1,f +12592,3626cpr0282,14,1,f +12592,3626cpr0389,14,1,f +12592,3666,1,1,f +12592,3666,4,1,f +12592,3666,15,1,f +12592,3710,4,3,f +12592,3710,71,1,f +12592,3749,19,2,f +12592,3794b,15,2,f +12592,3829c01,14,2,f +12592,3834,320,1,f +12592,3839b,0,2,f +12592,3962b,0,1,f +12592,4032a,71,1,f +12592,4079,15,2,f +12592,4081b,4,2,f +12592,4085c,4,2,f +12592,4150,71,1,f +12592,4175,72,1,f +12592,44675,71,2,f +12592,4488,0,2,f +12592,4589,72,3,f +12592,4599b,14,2,f +12592,4599b,14,2,t +12592,4623,4,2,f +12592,4624,71,2,f +12592,47456,0,2,f +12592,47457,15,1,f +12592,48336,0,2,f +12592,48336,1,1,f +12592,50943,72,1,f +12592,54200,36,2,t +12592,54200,15,6,f +12592,54200,34,1,f +12592,54200,36,1,f +12592,54200,15,2,t +12592,54200,34,1,t +12592,58181,47,1,f +12592,58181,15,1,f +12592,60005stk01,9999,1,t +12592,60470a,0,1,f +12592,60470a,71,2,f +12592,60474,4,1,f +12592,60478,71,4,f +12592,6081,4,1,f +12592,6126b,41,1,f +12592,61409,1,2,f +12592,61409,72,4,f +12592,6141,14,4,f +12592,6141,14,1,t +12592,61485,15,1,f +12592,62812,1,1,f +12592,6636,1,1,f +12592,85543,15,1,f +12592,85959pat0001,36,1,f +12592,85984,72,1,f +12592,85984,15,2,f +12592,86035,320,1,f +12592,87079,15,1,f +12592,87087,14,6,f +12592,92710c01,4,1,f +12592,93273,71,1,f +12592,93274,0,1,f +12592,970c00pr0408,0,2,f +12592,970x021,2,2,f +12592,973pr0656c01,15,2,f +12592,973pr2188c01,0,1,f +12592,973pr2189c01,0,1,f +12592,97895,14,4,f +12593,3443c02,1,1,f +12593,699,7,1,f +12595,10201,15,1,f +12595,11477,5,4,f +12595,11609,191,1,f +12595,11609,191,1,t +12595,15573,26,1,f +12595,18868b01,46,2,f +12595,19981pr0047,46,1,f +12595,19981pr0048,46,1,f +12595,26047,0,2,f +12595,27039,30,1,f +12595,27176,15,1,f +12595,27478,191,1,f +12595,2926,0,2,f +12595,3004,378,2,f +12595,3020,26,1,f +12595,3021,5,1,f +12595,3022,29,1,f +12595,3023,46,2,f +12595,3023,5,7,f +12595,3023,15,1,f +12595,3023,378,7,f +12595,3065,47,1,f +12595,3065,46,1,f +12595,3069b,378,6,f +12595,3069bpr0175,29,1,f +12595,32028,0,1,f +12595,33078,379,1,t +12595,33078,379,2,f +12595,3710,5,2,f +12595,3710,378,2,f +12595,3941,46,2,f +12595,41879a,191,1,f +12595,44728,15,2,f +12595,44728,72,2,f +12595,4865b,47,1,f +12595,48729b,0,2,f +12595,48729b,0,1,t +12595,50254,322,4,f +12595,54200,29,2,f +12595,54200,29,1,t +12595,6091,5,2,f +12595,6141,41,1,t +12595,6141,41,6,f +12595,64567,71,1,t +12595,64567,71,1,f +12595,87079,378,1,f +12595,87079pr0094,378,1,f +12595,87087,378,2,f +12595,93273,5,3,f +12595,973pr3495c01,191,1,f +12595,98138,46,1,t +12595,98138,46,1,f +12595,99780,15,2,f +12595,99780,14,4,f +12596,11211,71,1,f +12596,3005,47,2,f +12596,3010,15,1,f +12596,3020,15,2,f +12596,3020,1,1,f +12596,3023,15,2,f +12596,3023,1,1,f +12596,3023,27,4,f +12596,3024,15,2,f +12596,3024,15,1,t +12596,3068b,19,2,f +12596,3070b,19,2,f +12596,3070b,19,1,t +12596,3666,27,2,f +12596,3794b,19,1,f +12596,4081b,72,2,f +12596,4600,0,2,f +12596,4865b,40,1,f +12596,50951,0,4,f +12596,51739,27,1,f +12596,54200,15,2,f +12596,54200,15,1,t +12596,59275,25,2,f +12596,60212,15,2,f +12596,88072,15,1,f +12596,90397,15,1,f +12596,93594,179,4,f +12596,99781,15,1,f +12598,11098,41,1,f +12598,11106,179,1,f +12598,11127,41,1,f +12598,14769pr1013,15,3,f +12598,15068,15,1,f +12598,15208,15,1,f +12598,15209,15,2,f +12598,15391,71,1,f +12598,15392,72,1,f +12598,15573,72,2,f +12598,15573,15,1,f +12598,16968,71,1,f +12598,18392pr0001,15,1,f +12598,18392pr0004a,15,1,f +12598,18392pr0005,15,1,f +12598,20178,47,1,f +12598,3001,72,2,f +12598,3020,15,1,f +12598,3021,70,1,f +12598,3022,15,2,f +12598,30374,41,1,f +12598,3062b,41,3,f +12598,3626cpr1584,15,1,f +12598,3626cpr1599,15,1,f +12598,3626cpr1600,15,1,f +12598,3700,70,4,f +12598,3701,72,2,f +12598,3706,0,1,f +12598,3942c,71,1,f +12598,44728,71,2,f +12598,4522,0,2,f +12598,54200,0,1,f +12598,54200,41,4,f +12598,60481,71,2,f +12598,60752,179,1,f +12598,60849,71,1,f +12598,6141,41,2,f +12598,6141,15,3,f +12598,63965,70,1,f +12598,64567,71,1,f +12598,6587,28,1,f +12598,87081,15,1,f +12598,92690,70,1,f +12598,92747,41,1,f +12598,970c00pr0784,15,1,f +12598,970c00pr0800,15,1,f +12598,970d00pr0798,15,1,f +12598,973pr2876c01,15,1,f +12598,973pr2898c01,15,1,f +12598,973pr2900c01,15,1,f +12598,98138,41,1,f +12598,98585,71,2,f +12598,99206,15,1,f +12600,4204,2,3,f +12601,4629c01,1,1,f +12602,10247,71,2,f +12602,11090,0,1,f +12602,11203,72,3,f +12602,11203,15,2,f +12602,11291,15,1,f +12602,11476,71,2,f +12602,11477,272,2,f +12602,13547,0,2,f +12602,14418,71,2,f +12602,14769,15,1,f +12602,15068,272,1,f +12602,15303,33,6,f +12602,15400,72,4,f +12602,15462,28,3,f +12602,15535,72,2,f +12602,15573,71,1,f +12602,15573,297,2,f +12602,15712,71,8,f +12602,2420,1,2,f +12602,2432,19,1,f +12602,2445,0,1,f +12602,2450,15,2,f +12602,2456,71,1,f +12602,2639,72,2,f +12602,2654,72,2,f +12602,2723,0,2,f +12602,3004,71,3,f +12602,3009,72,2,f +12602,30162,297,4,f +12602,3020,1,7,f +12602,3021,272,6,f +12602,3021,28,2,f +12602,3022,72,5,f +12602,3023,72,3,f +12602,3023,41,3,f +12602,3023,15,6,f +12602,3023,28,2,f +12602,3023,1,9,f +12602,3024,272,6,f +12602,30304,72,1,f +12602,3034,71,1,f +12602,30355,15,1,f +12602,30356,15,1,f +12602,30357,15,2,f +12602,30361pr1002,15,1,f +12602,30362,15,2,f +12602,30367cpr1002,4,1,f +12602,30374,41,1,f +12602,30374,36,2,f +12602,30383,71,2,f +12602,3039,0,1,f +12602,3040b,15,2,f +12602,30414,19,2,f +12602,30526,72,1,f +12602,30554b,71,1,f +12602,3068b,272,5,f +12602,32000,0,1,f +12602,32001,71,5,f +12602,32054,71,4,f +12602,32062,4,2,f +12602,32123b,14,3,f +12602,3622,1,2,f +12602,3626cpr1227,78,1,f +12602,3626cpr1641,15,1,f +12602,3660,72,1,f +12602,3666,1,4,f +12602,3705,0,2,f +12602,3706,0,2,f +12602,3710,71,4,f +12602,3710,1,5,f +12602,3738,72,2,f +12602,3747a,72,1,f +12602,3795,1,1,f +12602,3839b,71,1,f +12602,3937,72,1,f +12602,3941,71,2,f +12602,4162,72,2,f +12602,41769,272,1,f +12602,41770,272,1,f +12602,4185,72,2,f +12602,42610,71,6,f +12602,4286,72,1,f +12602,4286,1,2,f +12602,43722,1,7,f +12602,43723,1,7,f +12602,44294,71,2,f +12602,44300,71,1,f +12602,44567a,72,10,f +12602,44570,72,2,f +12602,4519,71,2,f +12602,45301,1,1,f +12602,45590,0,2,f +12602,47397,272,1,f +12602,47398,272,1,f +12602,4740,41,2,f +12602,47755,1,4,f +12602,4868b,71,4,f +12602,50950,272,2,f +12602,54200,15,2,f +12602,54200,72,1,f +12602,54383,1,2,f +12602,54383,15,1,f +12602,54384,15,1,f +12602,54384,1,2,f +12602,59443,0,10,f +12602,60208,71,2,f +12602,60471,71,5,f +12602,60471,0,2,f +12602,6081,1,4,f +12602,6091,15,2,f +12602,6091,1,2,f +12602,61199,71,2,f +12602,6134,1,1,f +12602,6141,179,7,f +12602,6141,297,10,f +12602,6239,0,3,f +12602,63864,1,4,f +12602,63965,0,4,f +12602,64567,80,1,f +12602,6628,0,2,f +12602,6636,272,2,f +12602,72454,72,1,f +12602,85984,15,1,f +12602,85984,1,6,f +12602,87580,272,1,f +12602,87752,40,1,f +12602,88072,19,1,f +12602,90194,1,1,f +12602,91988,0,1,f +12602,92081,84,1,f +12602,92280,15,2,f +12602,92593,272,4,f +12602,93273,272,2,f +12602,93274,72,2,f +12602,93606,272,2,f +12602,970c00,0,1,f +12602,970c00pr0515,70,1,f +12602,973pr2387c01,308,1,f +12602,973pr2954c01,15,1,f +12602,98100,71,2,f +12602,98283,71,1,f +12602,99206,71,4,f +12602,99207,71,8,f +12602,99781,15,1,f +12604,45452,230,4,f +12604,46277,230,4,f +12604,51035,230,5,f +12604,51035,183,5,f +12604,51036,230,5,f +12604,51036,47,5,f +12604,51686,230,1,f +12604,clikits022,230,6,f +12604,clikits022,46,6,f +12604,clikits023,15,3,f +12604,clikits024,47,3,f +12604,clikits024,230,6,f +12604,clikits024,46,6,f +12604,clikits037,29,2,f +12604,clikits111,47,2,f +12605,87662,151,1,f +12606,2730,1,4,f +12606,3700,1,16,f +12606,3701,1,8,f +12606,3702,1,4,f +12606,3703,1,4,f +12606,3894,1,4,f +12606,3895,1,4,f +12609,3004,1,14,f +12609,3004,4,2,f +12609,3005,1,12,f +12609,3008,1,4,f +12609,3020,7,4,f +12609,3021,7,2,f +12609,3027,7,1,f +12609,3062a,4,8,f +12609,3081bc01,4,6,f +12609,3185,4,2,f +12609,32bc01,4,1,f +12609,3358,4,4,f +12609,3359,4,4,f +12609,33bc01,4,1,f +12609,736c02,0,1,f +12610,2412b,36,2,f +12610,2444,71,2,f +12610,2654,0,1,f +12610,2730,0,4,f +12610,2780,0,2,t +12610,2780,0,120,f +12610,2905,14,2,f +12610,3029,14,1,f +12610,3032,14,2,f +12610,32000,0,4,f +12610,32002,72,12,f +12610,32002,72,2,t +12610,32009,14,2,f +12610,32009,0,2,f +12610,32013,0,4,f +12610,32013,14,9,f +12610,32014,0,2,f +12610,32015,14,2,f +12610,32015,0,1,f +12610,32016,14,2,f +12610,32017,14,3,f +12610,32030,0,1,f +12610,32034,71,7,f +12610,32039,0,6,f +12610,32054,71,33,f +12610,32056,71,8,f +12610,32062,4,27,f +12610,32065,14,2,f +12610,32072,14,2,f +12610,32073,71,21,f +12610,32123b,71,1,t +12610,32123b,71,28,f +12610,32138,0,2,f +12610,32140,0,12,f +12610,32184,0,7,f +12610,32187,71,4,f +12610,32198,19,4,f +12610,32199,0,4,f +12610,32209,72,6,f +12610,32250,0,1,f +12610,32269,19,6,f +12610,32270,0,6,f +12610,32278,14,4,f +12610,32278,0,12,f +12610,32291,4,1,f +12610,32316,14,11,f +12610,32316,0,9,f +12610,32449,71,1,f +12610,32449,14,2,f +12610,32523,71,8,f +12610,32523,14,2,f +12610,32524,14,2,f +12610,32524,0,2,f +12610,32525,0,6,f +12610,32525,14,6,f +12610,32526,1,2,f +12610,32526,14,10,f +12610,32556,19,3,f +12610,32557,71,4,f +12610,33299a,71,6,f +12610,3460,0,1,f +12610,3622,0,2,f +12610,3623,0,7,f +12610,3647,72,4,f +12610,3647,72,1,t +12610,3648b,72,2,f +12610,3673,71,2,t +12610,3673,71,16,f +12610,3705,0,9,f +12610,3706,0,11,f +12610,3707,0,4,f +12610,3708,0,2,f +12610,3710,14,2,f +12610,3713,71,26,f +12610,3713,71,1,t +12610,3737,0,2,f +12610,3749,19,1,t +12610,3749,19,1,f +12610,3900,71,2,f +12610,3941,0,1,f +12610,3941,46,1,f +12610,4019,71,14,f +12610,4032b,0,3,f +12610,40490,72,3,f +12610,40490,14,4,f +12610,41239,72,6,f +12610,41239,14,3,f +12610,4162,14,1,f +12610,4162,0,1,f +12610,41677,0,8,f +12610,42003,72,25,f +12610,42610,71,16,f +12610,4274,71,1,t +12610,4274,71,3,f +12610,43093,1,43,f +12610,44294,71,5,f +12610,4519,71,36,f +12610,4716,71,1,f +12610,48989,71,8,f +12610,50163,72,1,f +12610,50950,0,2,f +12610,50950,14,6,f +12610,55013,72,1,f +12610,57519,0,4,f +12610,58119,71,1,f +12610,58120,71,4,f +12610,58122,71,2,f +12610,58123a,71,2,f +12610,59443,14,15,f +12610,59443,0,13,f +12610,59443,4,2,f +12610,60479,0,4,f +12610,60483,71,9,f +12610,60484,71,2,f +12610,60485,71,4,f +12610,61903,71,8,f +12610,61904,72,6,f +12610,61927b,71,4,f +12610,62462,71,4,f +12610,62462,14,3,f +12610,62531,0,1,f +12610,62531,14,4,f +12610,64178,71,1,f +12610,64179,71,2,f +12610,64393,14,5,f +12610,64681,14,5,f +12610,6536,0,18,f +12610,6536,14,11,f +12610,6538b,19,3,f +12610,6539,4,4,f +12610,6542a,72,14,f +12610,6553,0,8,f +12610,6558,1,52,f +12610,6587,28,9,f +12610,6589,19,14,f +12610,6589,19,1,t +12610,6629,14,4,f +12610,6632,0,3,f +12610,6632,71,7,f +12610,6636,14,6,f +12610,6641,4,3,f +12610,8043stk01,9999,1,t +12610,87080,14,2,f +12610,87082,71,10,f +12610,87083,72,26,f +12610,87086,14,1,f +12610,87407,71,4,f +12610,87408,0,6,f +12610,88323,72,76,f +12611,10201,71,2,f +12611,11203,72,4,f +12611,11211,4,1,f +12611,11211,71,4,f +12611,11291,14,1,f +12611,11458,72,2,f +12611,11477,14,4,f +12611,14226c31,0,1,f +12611,14769,15,1,f +12611,14769,72,1,f +12611,15068,14,1,f +12611,15207,71,4,f +12611,15379,0,84,f +12611,15379,0,2,t +12611,15395,15,1,f +12611,15455,14,1,f +12611,15462,28,1,f +12611,15573,71,9,f +12611,15573,14,1,f +12611,15573,15,2,f +12611,15712,0,2,f +12611,16178pr01,4,1,f +12611,18651,0,2,f +12611,18654,72,2,f +12611,18654,72,1,t +12611,18899pat0001,4,1,f +12611,20582,72,1,f +12611,2412b,72,8,f +12611,2412b,0,5,f +12611,2412b,71,6,f +12611,2431,71,9,f +12611,2432,1,1,f +12611,2432,14,3,f +12611,2445,72,2,f +12611,2454a,70,2,f +12611,2456,0,2,f +12611,2456,14,4,f +12611,2465,71,2,f +12611,2584,0,1,f +12611,2585,71,1,f +12611,2637,14,1,f +12611,2638,14,1,f +12611,2736,71,2,f +12611,2780,0,9,f +12611,2780,0,2,t +12611,2815,0,2,f +12611,2817,71,2,f +12611,2877,71,6,f +12611,2877,72,4,f +12611,298c02,1,1,t +12611,298c02,1,2,f +12611,3001,14,1,f +12611,3001,72,2,f +12611,3002,14,4,f +12611,3003,28,2,f +12611,3003,71,2,f +12611,3004,4,10,f +12611,3004,14,5,f +12611,3004,15,1,f +12611,3004,70,4,f +12611,3005,4,2,f +12611,3005,14,6,f +12611,3008,4,4,f +12611,3008,70,1,f +12611,3008,71,2,f +12611,3009,72,3,f +12611,3009,14,2,f +12611,3010,2,1,f +12611,3010,71,2,f +12611,3010,14,4,f +12611,3010,70,1,f +12611,3010,28,5,f +12611,30157,71,4,f +12611,30194,72,1,f +12611,3020,0,2,f +12611,3020,72,7,f +12611,3021,14,5,f +12611,3021,70,7,f +12611,3021,71,1,f +12611,3022,14,1,f +12611,3022,71,2,f +12611,3022,4,4,f +12611,30228,72,1,f +12611,3023,47,2,f +12611,3023,36,4,f +12611,3023,1,2,f +12611,3023,0,2,f +12611,3023,70,1,f +12611,3024,47,2,f +12611,3024,47,1,t +12611,30259,71,1,f +12611,3031,14,2,f +12611,3031,72,1,f +12611,3032,70,1,f +12611,3032,0,2,f +12611,3032,72,1,f +12611,3034,14,2,f +12611,3035,14,2,f +12611,3035,72,1,f +12611,30363,14,1,f +12611,3037,14,1,f +12611,3039,14,2,f +12611,3039,15,1,f +12611,3039,4,1,f +12611,30395,72,1,f +12611,3039pr0015,0,1,f +12611,3040b,14,2,f +12611,3040b,0,2,f +12611,30414,72,1,f +12611,30414,14,1,f +12611,30526,72,1,f +12611,3062b,71,14,f +12611,3062b,4,1,f +12611,3069b,15,1,f +12611,3069b,27,1,f +12611,3069b,182,3,f +12611,3069b,14,3,f +12611,3069b,72,2,f +12611,3070bpr0007,71,1,t +12611,3070bpr0007,71,1,f +12611,3176,14,4,f +12611,3176,0,1,f +12611,32000,14,2,f +12611,32000,71,1,f +12611,32018,0,2,f +12611,32034,71,1,f +12611,32064a,72,8,f +12611,32064a,15,4,f +12611,32073,71,1,f +12611,32123b,71,2,f +12611,32123b,71,1,t +12611,32523,71,2,f +12611,32525,14,1,f +12611,3298,72,4,f +12611,3460,14,2,f +12611,3460,4,2,f +12611,3460,19,7,f +12611,3464,72,1,f +12611,3622,4,2,f +12611,3622,14,2,f +12611,3623,71,6,f +12611,3626cpr0754,14,1,f +12611,3626cpr0893,14,1,f +12611,3626cpr0914,14,1,f +12611,3626cpr0920,14,1,f +12611,3626cpr0955,14,1,f +12611,3639,72,2,f +12611,3640,72,2,f +12611,3648b,72,6,f +12611,3659,15,1,f +12611,3660,72,2,f +12611,3665,72,2,f +12611,3665,71,2,f +12611,3666,0,2,f +12611,3666,14,1,f +12611,3673,71,1,t +12611,3673,71,1,f +12611,3700,14,3,f +12611,3700,15,1,f +12611,3701,70,1,f +12611,3710,0,5,f +12611,3710,70,1,f +12611,3710,14,7,f +12611,3713,4,2,t +12611,3713,4,6,f +12611,3738,1,1,f +12611,3749,19,6,f +12611,3795,14,1,f +12611,3823,40,2,f +12611,3829c01,1,2,f +12611,3832,71,2,f +12611,3833,4,3,f +12611,3837,72,1,f +12611,3841,72,1,f +12611,3894,0,1,f +12611,3957b,71,1,f +12611,40234,71,1,f +12611,4032a,2,1,f +12611,4079,1,1,f +12611,4162,71,4,f +12611,41677,4,2,f +12611,41678,71,1,f +12611,41770,70,1,f +12611,4185,71,2,f +12611,4274,1,1,t +12611,4274,1,1,f +12611,4282,72,1,f +12611,4286,0,2,f +12611,4286,72,3,f +12611,44570,71,1,f +12611,44728,1,4,f +12611,44728,14,3,f +12611,44728,0,2,f +12611,4519,71,4,f +12611,45677,14,3,f +12611,4697b,71,1,t +12611,4697b,71,1,f +12611,4740,72,2,f +12611,47456,70,1,f +12611,47457,15,2,f +12611,47508,0,1,f +12611,4865a,14,2,f +12611,50373,71,1,f +12611,50950,14,2,f +12611,54200,14,1,f +12611,54200,47,1,t +12611,54200,47,2,f +12611,54200,71,3,f +12611,54200,14,1,t +12611,54200,182,1,t +12611,54200,182,2,f +12611,54200,71,1,t +12611,55981,71,9,f +12611,56823c100,0,1,f +12611,56891,0,4,f +12611,59426,72,3,f +12611,59807,14,4,f +12611,59895,0,1,t +12611,59895,0,1,f +12611,59900,0,2,f +12611,6005,14,2,f +12611,60169,72,1,f +12611,60470b,14,2,f +12611,60478,14,2,f +12611,60481,14,2,f +12611,60483,25,1,f +12611,60594,72,5,f +12611,60596,72,1,f +12611,60608,15,3,f +12611,60623,15,1,f +12611,6106,0,2,f +12611,61252,0,1,f +12611,6126a,41,1,f +12611,61409,0,2,f +12611,6141,0,2,f +12611,6141,0,1,t +12611,6141,72,2,t +12611,6141,72,10,f +12611,61485,0,1,f +12611,6179,71,1,f +12611,6232,14,2,f +12611,62360,14,2,f +12611,63864,72,4,f +12611,63864,28,4,f +12611,64451,72,2,f +12611,64728,4,2,f +12611,64799,71,1,f +12611,6541,72,4,f +12611,6541,0,2,f +12611,6558,1,6,f +12611,6636,72,2,f +12611,76138,71,1,f +12611,84954,40,4,f +12611,85984,72,4,f +12611,85984,70,3,f +12611,85984,71,6,f +12611,87079,14,7,f +12611,87079,72,6,f +12611,87079,71,2,f +12611,87081,72,1,f +12611,87083,72,3,f +12611,87580,0,2,f +12611,87620,14,6,f +12611,89523,72,1,f +12611,90194,0,1,f +12611,90258,72,4,f +12611,91501,71,1,f +12611,92402,0,4,f +12611,92438,72,2,f +12611,92582,0,3,f +12611,92593,15,3,f +12611,92593,27,1,f +12611,92926,2,1,f +12611,92947,71,1,f +12611,92950,71,2,f +12611,93606,14,4,f +12611,96874,25,1,t +12611,970c00,379,1,f +12611,970c00,28,1,f +12611,970c00,25,1,f +12611,970c00,272,1,f +12611,970c00,1,1,f +12611,973pr0250c01,320,1,f +12611,973pr1580c01,15,1,f +12611,973pr2037c01,272,1,f +12611,973pr2885c01,25,1,f +12611,973pr2913c01,25,1,f +12611,98138,36,2,f +12611,98138,71,4,f +12611,98138,71,2,t +12611,98138,36,1,t +12611,98282,72,2,f +12611,98283,72,18,f +12611,98288,4,1,f +12611,98834,14,2,f +12611,99206,71,3,f +12611,99207,71,1,f +12611,99780,0,1,f +12611,99780,72,2,f +12611,99781,71,2,f +12612,30152pat0001,0,1,f +12612,30162,72,1,f +12612,30162,72,1,t +12612,30172,15,1,f +12612,3626bpr0696,14,1,f +12612,88646,0,1,f +12612,970c00pr0172,19,1,f +12612,973pr1657c01,19,1,f +12616,3003,0,1,f +12616,3004,15,1,f +12616,3021,4,2,f +12616,3062b,34,2,f +12616,3660,0,2,f +12616,4070,15,2,f +12617,3004,7,100,f +12619,15672,1,2,f +12619,18984,85,1,f +12619,24151,2,1,f +12619,2432,70,1,f +12619,24326,71,2,f +12619,2436,71,2,f +12619,2460,4,1,f +12619,2540,2,2,f +12619,30028,0,4,f +12619,30089,0,1,f +12619,3022,4,2,f +12619,3023,326,2,f +12619,3023,1,2,f +12619,30602,40,1,f +12619,32013,0,2,f +12619,3626cpr1892,10,1,f +12619,3626cpr1898,25,1,f +12619,3626cpr1899,4,1,f +12619,3673,71,1,f +12619,3673,71,1,t +12619,3829c01,14,2,f +12619,41879a,1,1,f +12619,41879a,85,1,f +12619,43093,1,2,f +12619,44661,1,1,f +12619,44676,2,2,f +12619,4624,71,2,f +12619,4624,15,2,f +12619,47755,1,1,f +12619,54200,2,1,t +12619,54200,1,1,t +12619,54200,2,4,f +12619,54200,182,1,t +12619,54200,40,2,f +12619,54200,1,1,f +12619,54200,182,2,f +12619,54200,40,1,t +12619,58176,15,2,f +12619,59895,0,4,f +12619,59900,182,2,f +12619,61184,71,2,f +12619,61409,72,2,f +12619,6141,0,1,f +12619,6141,179,3,f +12619,6141,0,1,t +12619,6141,179,1,t +12619,62462,4,1,f +12619,6541,71,2,f +12619,74967,15,2,f +12619,74967,71,2,f +12619,92842,0,1,f +12619,93273,2,2,f +12619,973pr3334c01,1,1,f +12619,973pr3337c01,85,1,f +12619,98138,47,2,f +12619,98138,47,1,t +12619,99206,1,1,f +12619,99207,1,1,f +12623,2343,47,2,f +12623,2417,2,2,f +12623,2454a,15,3,f +12623,298c04,15,1,t +12623,298c04,15,1,f +12623,3004,15,2,f +12623,3005,15,2,f +12623,3009,15,1,f +12623,3022,7,1,f +12623,3023,13,3,f +12623,3036,7,2,f +12623,3068pb19,15,2,f +12623,3455,15,2,f +12623,3623,13,2,f +12623,3626bp02,14,1,f +12623,3626bp03,14,1,f +12623,3666,13,3,f +12623,3899,13,2,f +12623,3900,15,1,f +12623,3940b,15,1,f +12623,3957a,15,1,f +12623,3960,13,1,f +12623,4176,47,1,f +12623,4485,1,1,f +12623,4599a,13,1,f +12623,4719,4,1,f +12623,6093,0,1,f +12623,6141,47,1,t +12623,6141,47,1,f +12623,6402stk01,9999,1,t +12623,92851,47,2,f +12623,970x001,14,1,f +12623,970x026,14,1,f +12623,973pb0018c01,13,1,f +12623,973pb0128c01,15,1,f +12625,3004,6,6,f +12625,3004,72,1,f +12625,3021,6,2,f +12625,3023,6,2,f +12625,3023,6,1,t +12625,3039,6,2,f +12625,3062b,57,1,t +12625,3062b,57,2,f +12625,3710,0,2,f +12626,11198,322,1,f +12626,12061,484,1,f +12626,16117,322,1,f +12626,16121,10,1,f +12626,2302,4,2,f +12626,2302,1,2,f +12626,3011,191,2,f +12626,31333,15,1,f +12626,3437,10,1,f +12626,3437,322,2,f +12626,3437,4,2,f +12626,3437,27,2,f +12626,3437,25,2,f +12626,40666,27,1,f +12626,40666,4,1,f +12626,44524,10,1,f +12626,58057pr03,15,1,f +12626,61649,14,1,f +12626,6510,25,1,f +12626,76371,1,2,f +12626,98223,10,1,f +12626,98459,70,1,f +12627,3005,114,1,f +12627,30153,45,1,f +12627,30357,29,1,f +12627,3062b,41,1,f +12627,33291,5,1,f +12627,33291,5,1,t +12627,3626b,15,1,f +12627,4589,15,4,f +12627,92257,0,1,f +12628,2412b,7,4,f +12628,2453a,15,8,f +12628,2540,7,2,f +12628,2555,7,4,f +12628,2921,0,4,f +12628,298c03,0,1,f +12628,3003,1,1,f +12628,3004,15,2,f +12628,3004,0,1,f +12628,3005,15,8,f +12628,30089,0,1,f +12628,3009,15,2,f +12628,3009,7,2,f +12628,3010,7,2,f +12628,3020,7,1,f +12628,3062b,0,3,f +12628,3069bp02,7,1,f +12628,3069bp50,15,2,f +12628,3185,15,9,f +12628,3403,15,1,f +12628,3404,15,1,f +12628,3626bp02,14,1,f +12628,3626bp04,14,1,f +12628,3666,7,4,f +12628,3794a,0,2,f +12628,3865,2,1,f +12628,3958,1,3,f +12628,4079,14,1,f +12628,4275b,7,1,f +12628,4485,1,1,f +12628,4531,7,1,f +12628,4595,0,1,f +12628,4740,42,4,f +12628,4740,15,4,f +12628,4871,7,1,f +12628,6020,8,2,f +12628,6093,0,1,f +12628,6141,47,2,f +12628,6141,36,5,f +12628,970c00,1,2,f +12628,973pb0025c01,15,1,f +12628,973px37c01,1,1,f +12630,3003,70,1,f +12630,3040b,2,4,f +12630,4032a,2,1,f +12630,4032a,70,2,f +12630,4286,2,8,f +12630,4589,2,1,f +12630,6124,42,1,f +12630,6141,14,1,t +12630,6141,14,3,f +12633,12825,0,5,f +12633,12825,71,1,f +12633,12825,1,1,f +12633,12825,15,1,f +12633,14226c11,0,1,t +12633,14226c11,0,1,f +12633,2357,71,2,f +12633,2357,19,2,f +12633,2420,71,1,f +12633,2420,72,5,f +12633,2420,0,1,f +12633,2450,19,1,f +12633,2540,0,2,f +12633,2540,72,3,f +12633,2639,72,2,f +12633,2780,0,10,f +12633,2780,0,5,t +12633,2877,72,2,f +12633,3001,70,2,f +12633,3003,15,4,f +12633,3003,272,1,f +12633,3003,71,3,f +12633,3004,19,4,f +12633,3004,288,4,f +12633,3004,272,1,f +12633,3004,70,2,f +12633,3004,71,22,f +12633,3004,73,2,f +12633,3004,378,10,f +12633,3004,320,6,f +12633,3004,0,3,f +12633,30044,15,1,f +12633,3005,320,12,f +12633,3005,71,12,f +12633,3005,272,3,f +12633,3005,19,17,f +12633,3005,47,22,f +12633,3005,0,5,f +12633,3005,73,6,f +12633,3005,288,2,f +12633,3005,378,9,f +12633,3010,378,4,f +12633,3010,70,2,f +12633,3010,19,8,f +12633,30165,0,1,f +12633,3020,71,7,f +12633,3020,19,4,f +12633,3020,0,3,f +12633,3020,72,2,f +12633,3021,19,2,f +12633,3021,72,5,f +12633,3021,272,2,f +12633,3021,70,2,f +12633,3021,0,3,f +12633,3021,71,5,f +12633,3021,73,2,f +12633,3022,72,3,f +12633,3022,71,6,f +12633,3023,28,6,f +12633,3023,73,2,f +12633,3023,0,7,f +12633,3023,70,4,f +12633,3023,71,22,f +12633,3023,15,8,f +12633,3023,72,5,f +12633,3023,47,1,f +12633,3023,19,25,f +12633,3023,4,7,f +12633,3023,320,5,f +12633,3023,272,1,f +12633,3023,2,2,f +12633,30236,72,1,f +12633,30237a,19,1,f +12633,30237b,71,2,f +12633,3024,2,2,f +12633,3024,47,6,f +12633,3024,0,7,f +12633,3024,71,65,f +12633,3024,70,6,f +12633,3024,320,28,f +12633,3024,73,4,f +12633,3024,14,5,f +12633,3024,28,25,f +12633,3024,4,2,f +12633,3024,272,20,f +12633,3024,15,14,f +12633,3024,34,32,f +12633,3024,19,8,f +12633,3024,72,20,f +12633,3028,0,2,f +12633,3031,70,1,f +12633,3034,71,3,f +12633,30340,15,1,f +12633,30357,71,1,f +12633,30383,0,1,f +12633,30383,15,1,f +12633,3040b,0,1,f +12633,3045,0,6,f +12633,3045,71,1,f +12633,3062b,72,10,f +12633,3062b,272,2,f +12633,3062b,34,2,f +12633,3065,47,6,f +12633,3068b,73,8,f +12633,3068b,72,1,f +12633,3069b,70,4,f +12633,3069b,0,2,f +12633,3069b,19,10,f +12633,3069b,71,39,f +12633,3069b,72,10,f +12633,3070b,15,15,f +12633,3070b,72,4,t +12633,3070b,19,3,t +12633,3070b,72,27,f +12633,3070b,19,12,f +12633,3070b,272,1,t +12633,3070b,320,3,f +12633,3070b,14,1,t +12633,3070b,272,3,f +12633,3070b,71,22,f +12633,3070b,15,5,t +12633,3070b,320,1,t +12633,3070b,1,1,f +12633,3070b,1,1,t +12633,3070b,71,5,t +12633,3070b,14,5,f +12633,3176,71,1,f +12633,3176,72,1,f +12633,32000,72,1,f +12633,32000,71,8,f +12633,32000,15,1,f +12633,32028,70,6,f +12633,32028,71,5,f +12633,32028,72,2,f +12633,32028,0,2,f +12633,3460,71,2,f +12633,3622,72,3,f +12633,3622,70,2,f +12633,3622,71,2,f +12633,3622,378,5,f +12633,3622,19,6,f +12633,3623,19,3,f +12633,3623,72,9,f +12633,3623,15,5,f +12633,3623,70,4,f +12633,3623,71,21,f +12633,3623,0,3,f +12633,3626b,70,1,f +12633,3633,72,2,f +12633,3659,71,4,f +12633,3688,72,2,f +12633,3700,70,1,f +12633,3710,320,4,f +12633,3710,72,6,f +12633,3710,71,12,f +12633,3710,272,8,f +12633,3710,73,8,f +12633,3710,19,2,f +12633,3794a,19,2,f +12633,3794a,0,7,f +12633,3794a,71,21,f +12633,3794b,320,6,f +12633,3794b,15,15,f +12633,3794b,72,2,f +12633,3794b,28,5,f +12633,3900,71,1,f +12633,3937,0,1,f +12633,3938,71,1,f +12633,3958,71,2,f +12633,3958,72,1,f +12633,4070,4,3,f +12633,4070,0,2,f +12633,4070,15,26,f +12633,4081b,15,1,f +12633,4081b,19,5,f +12633,41539,2,2,f +12633,41539,19,1,f +12633,41539,72,2,f +12633,42446,70,2,f +12633,44302a,0,1,f +12633,4460b,0,3,f +12633,4490,71,3,f +12633,4490,72,1,f +12633,4510,71,1,f +12633,4599b,71,1,f +12633,4599b,15,4,f +12633,4733,71,1,f +12633,4735,0,5,f +12633,4740,0,1,f +12633,47905,70,2,f +12633,47905,0,7,f +12633,47905,19,4,f +12633,4865a,47,1,f +12633,4865a,71,1,f +12633,4865b,70,1,f +12633,48729b,72,1,f +12633,48729b,0,3,f +12633,48729b,72,1,t +12633,48729b,0,2,t +12633,49668,15,5,f +12633,53451,0,1,t +12633,53451,0,2,f +12633,54200,71,2,t +12633,54200,71,11,f +12633,54200,15,2,f +12633,54200,0,2,t +12633,54200,40,1,t +12633,54200,288,1,t +12633,54200,40,6,f +12633,54200,70,2,f +12633,54200,47,1,f +12633,54200,288,2,f +12633,54200,47,1,t +12633,54200,15,1,t +12633,54200,0,6,f +12633,54200,70,1,t +12633,58176,46,9,f +12633,58176,33,1,f +12633,59900,0,9,f +12633,59900,297,1,f +12633,59900,71,1,f +12633,6005,14,1,f +12633,60471,71,1,f +12633,60475a,72,2,f +12633,60478,71,2,f +12633,60478,72,5,f +12633,60478,0,2,f +12633,60481,0,3,f +12633,60481,320,6,f +12633,60592,0,1,f +12633,60592,15,3,f +12633,60601,47,4,f +12633,60897,14,3,f +12633,60897,15,7,f +12633,60897,0,7,f +12633,6091,288,4,f +12633,61252,4,2,f +12633,6141,71,46,f +12633,6141,34,1,t +12633,6141,46,4,f +12633,6141,34,4,f +12633,6141,15,4,f +12633,6141,4,1,t +12633,6141,14,11,f +12633,6141,0,1,t +12633,6141,4,2,f +12633,6141,14,3,t +12633,6141,46,1,t +12633,6141,297,1,t +12633,6141,5,1,t +12633,6141,70,2,t +12633,6141,72,20,f +12633,6141,297,2,f +12633,6141,15,2,t +12633,6141,5,2,f +12633,6141,19,1,t +12633,6141,0,2,f +12633,6141,72,2,t +12633,6141,19,2,f +12633,6141,71,3,t +12633,6141,70,20,f +12633,6231,70,4,f +12633,6266,15,7,f +12633,63864,0,1,f +12633,63965,15,1,f +12633,64567,71,2,f +12633,64644,0,3,f +12633,6636pr0012,15,1,f +12633,87079,272,4,f +12633,87087,71,3,f +12633,87087,4,1,f +12633,87087,72,2,f +12633,87580,73,1,f +12633,87580,0,1,f +12633,87580,272,1,f +12633,90195,19,4,f +12633,90195,15,2,f +12633,92946,72,2,f +12633,96874,25,1,t +12634,6594,0,4,f +12634,6595,15,4,f +12635,30381,4,1,f +12635,3626bpr0952,14,1,f +12635,41879a,4,1,f +12635,88646,0,1,f +12635,93092,84,1,f +12635,973pr2033c01,0,1,f +12635,99464,4,1,f +12636,10201,4,2,f +12636,10201,71,1,f +12636,11211,4,2,f +12636,11215,15,4,f +12636,11303,272,1,f +12636,11458,72,2,f +12636,12825,71,2,f +12636,13349,15,1,f +12636,14682,71,2,f +12636,15207,15,2,f +12636,15535,72,1,f +12636,2412b,0,1,f +12636,2412b,14,4,f +12636,2412b,15,2,f +12636,2419,1,1,f +12636,2431,14,1,f +12636,2431,0,1,f +12636,2431,71,3,f +12636,2431,4,2,f +12636,2431,15,2,f +12636,2432,14,3,f +12636,2444,15,2,f +12636,2446,15,1,f +12636,2447,40,1,f +12636,2479,0,1,f +12636,2654,4,3,f +12636,2780,0,2,f +12636,2922,0,2,f +12636,2926,0,4,f +12636,298c02,14,2,f +12636,30000,71,1,f +12636,3001,71,2,f +12636,3002,72,2,f +12636,3003,1,1,f +12636,3004,14,2,f +12636,30043,71,1,f +12636,3005,15,2,f +12636,3009,15,1,f +12636,30169,0,1,f +12636,3020,0,3,f +12636,3020,1,1,f +12636,3021,72,2,f +12636,3021,15,2,f +12636,3022,19,12,f +12636,3023,33,4,f +12636,3023,15,7,f +12636,3023,4,3,f +12636,3023,14,2,f +12636,3024,182,2,f +12636,30248,72,1,f +12636,3027,1,1,f +12636,3031,19,1,f +12636,3031,72,1,f +12636,3032,1,2,f +12636,3032,19,1,f +12636,30350b,15,1,f +12636,3036,1,2,f +12636,30361c,15,1,f +12636,30367b,15,1,f +12636,30385,297,2,f +12636,3040b,71,2,f +12636,30414,71,3,f +12636,30586,15,4,f +12636,30592,72,1,f +12636,3062b,14,1,f +12636,3069b,15,2,f +12636,3069b,46,1,f +12636,3069b,33,11,f +12636,3069bpr0100,2,2,f +12636,32028,0,2,f +12636,32064a,0,3,f +12636,32124,0,2,f +12636,3245c,15,1,f +12636,3626cpr0889,14,1,f +12636,3626cpr1091,14,1,f +12636,3626cpr1581,14,1,f +12636,3626cpr1664,14,1,f +12636,3660,1,1,f +12636,3666,71,2,f +12636,3666,1,1,f +12636,3666,15,2,f +12636,3679,71,1,f +12636,3680,0,1,f +12636,3701,0,2,f +12636,3710,1,6,f +12636,3710,14,1,f +12636,3795,4,1,f +12636,3795,15,1,f +12636,3795,1,1,f +12636,3821,15,1,f +12636,3822,15,1,f +12636,3829c01,14,2,f +12636,3839b,0,1,f +12636,3899,4,1,f +12636,3941,15,4,f +12636,3941,1,1,f +12636,3958,15,1,f +12636,3960,71,1,f +12636,3962b,0,1,f +12636,4032a,2,1,f +12636,4032a,4,1,f +12636,4032a,15,1,f +12636,4070,15,2,f +12636,4083,14,1,f +12636,41334,72,2,f +12636,4176,41,1,f +12636,42610,71,2,f +12636,4282,72,1,f +12636,4349,4,1,f +12636,4360,0,1,f +12636,44661,15,2,f +12636,44728,15,2,f +12636,44728,71,4,f +12636,4477,0,2,f +12636,4488,71,4,f +12636,4533,72,2,f +12636,4599b,14,2,f +12636,4697b,71,1,f +12636,47720,0,1,f +12636,47753,15,2,f +12636,47847,72,2,f +12636,48336,1,4,f +12636,48336,0,2,f +12636,4865b,71,4,f +12636,50745,15,2,f +12636,50859b,0,1,f +12636,50860,27,1,f +12636,50861,0,2,f +12636,50862,297,2,f +12636,50943,71,1,f +12636,50950,4,2,f +12636,50950,1,2,f +12636,50950,15,4,f +12636,52031,15,1,f +12636,52036,72,1,f +12636,54200,41,2,f +12636,54200,47,2,f +12636,54200,1,2,f +12636,54200,71,3,f +12636,56890,0,2,f +12636,58176,36,1,f +12636,6014b,71,12,f +12636,60470a,71,2,f +12636,60471,71,1,f +12636,60478,0,2,f +12636,60481,15,2,f +12636,60485,71,1,f +12636,6064,28,1,f +12636,6081,71,1,f +12636,61072,179,2,f +12636,6112,0,2,f +12636,61252,0,2,f +12636,61409,72,6,f +12636,6141,47,1,f +12636,6141,14,8,f +12636,6141,36,1,f +12636,61482,71,1,f +12636,63864,72,1,f +12636,6636,4,1,f +12636,72454,15,1,f +12636,73983,72,1,f +12636,76766,71,4,f +12636,85984,71,1,f +12636,85984,15,2,f +12636,87079,71,4,f +12636,87087,71,2,f +12636,87552,15,2,f +12636,87618,0,2,f +12636,87697,0,10,f +12636,87752,41,1,f +12636,92409,0,2,f +12636,92410,15,2,f +12636,92582,0,3,f +12636,92590,28,1,f +12636,92946,15,2,f +12636,93273,72,2,f +12636,93274,0,1,f +12636,970c00,272,2,f +12636,970c00,72,2,f +12636,973pr1944c01,15,1,f +12636,973pr2501c01,1,1,f +12636,973pr2502c01,15,1,f +12636,973pr2504c01,272,1,f +12636,98138,33,2,f +12636,98138,36,4,f +12636,98280,71,1,f +12636,99781,15,1,f +12638,58119,71,1,f +12640,11250,70,1,f +12640,11255,15,1,f +12640,3626bpr1063,14,1,f +12640,88646,0,1,f +12640,970c00,0,1,f +12640,97302,4,1,f +12640,973pr2161c01,4,1,f +12641,2335px8,4,1,f +12641,2343,1,1,f +12641,2343,4,1,f +12641,3004,15,1,f +12641,3004,7,9,f +12641,3005,7,6,f +12641,3008,7,1,f +12641,3010,7,4,f +12641,3020,0,2,f +12641,3021,0,2,f +12641,3022,7,3,f +12641,3023,7,2,f +12641,3023,15,1,f +12641,3028,2,1,f +12641,3029,7,1,f +12641,3037,4,2,f +12641,3039,4,2,f +12641,3062b,7,8,f +12641,3460,0,1,f +12641,3622,0,2,f +12641,3622,7,2,f +12641,3623,7,4,f +12641,3623,0,4,f +12641,3626apr0001,14,2,f +12641,3673,7,1,f +12641,3700,7,2,f +12641,3710,0,2,f +12641,3846p45,7,1,f +12641,3846p4g,7,2,f +12641,3847a,8,1,f +12641,3847a,0,1,f +12641,3848,0,1,f +12641,3849,6,1,f +12641,3896,8,1,f +12641,3941,14,1,f +12641,3957a,0,2,f +12641,4070,0,4,f +12641,4085b,7,2,f +12641,4085b,0,4,f +12641,4162,0,2,f +12641,4444,7,2,f +12641,4445,4,1,f +12641,4490,7,2,f +12641,4491a,1,1,f +12641,4495a,14,2,f +12641,4497,6,1,f +12641,4498,6,1,f +12641,4499,6,1,f +12641,4503,8,1,f +12641,4503,0,1,f +12641,4524,4,1,f +12641,4530,6,1,f +12641,75998pr0007,15,1,f +12641,87692,1,1,f +12641,87693,1,1,t +12641,87694,1,1,f +12641,970c00,1,1,f +12641,970x026,4,1,f +12641,973p40c01,1,1,f +12641,973p40c01,4,1,f +12642,12651,14,2,f +12642,15707,15,1,f +12642,3437,27,1,f +12642,3437,484,1,f +12642,40666,27,1,f +12642,6510,10,1,f +12642,6510,5,1,f +12642,75121pr0025,4,1,f +12642,85610,226,1,f +12642,92937,5,1,f +12642,98223,27,1,f +12642,98224,10,1,f +12643,95658,15,1,f +12644,2335,15,6,f +12644,2362b,7,2,f +12644,2362b,15,6,f +12644,2412b,14,2,f +12644,2412b,0,13,f +12644,2412b,15,2,f +12644,2412b,4,5,f +12644,2412b,8,8,f +12644,2413,19,1,f +12644,2413,7,2,f +12644,2419,7,1,f +12644,2419,15,1,f +12644,2420,7,2,f +12644,2420,1,6,f +12644,2420,8,14,f +12644,2420,15,11,f +12644,2431,8,2,f +12644,2431,7,8,f +12644,2432,8,1,f +12644,2436,7,1,f +12644,2436,0,12,f +12644,2436,4,4,f +12644,2444,14,1,f +12644,2444,0,8,f +12644,2444,15,4,f +12644,2445,15,1,f +12644,2450,15,6,f +12644,2456,0,2,f +12644,2460,8,5,f +12644,2465,0,2,f +12644,2489,7,8,f +12644,2507,7,1,f +12644,2540,7,4,f +12644,2540,8,1,f +12644,2540,19,2,f +12644,2555,8,4,f +12644,2625,8,1,f +12644,2653,8,4,f +12644,2654,7,1,f +12644,2730,15,6,f +12644,2744,7,3,f +12644,2745,7,4,f +12644,2780,0,32,f +12644,2877,7,20,f +12644,2877,8,2,f +12644,2877,15,4,f +12644,2880,0,1,f +12644,3001,0,1,f +12644,3001,7,2,f +12644,3003,0,2,f +12644,30031,8,2,f +12644,3004,4,3,f +12644,3004,19,2,f +12644,3004,0,3,f +12644,3004,7,2,f +12644,3005,7,2,f +12644,3005,4,6,f +12644,3005,15,4,f +12644,3006,0,1,f +12644,3008,0,1,f +12644,3009,8,1,f +12644,3009,4,1,f +12644,3010,15,2,f +12644,3010,7,2,f +12644,3010,4,1,f +12644,30155,8,1,f +12644,3020,7,6,f +12644,3020,8,18,f +12644,3020,14,5,f +12644,3020,15,10,f +12644,3020,19,2,f +12644,3020,0,5,f +12644,3020,4,2,f +12644,3021,1,2,f +12644,3021,19,5,f +12644,3021,8,2,f +12644,3021,14,6,f +12644,3021,15,20,f +12644,3021,4,2,f +12644,3021,7,11,f +12644,3022,15,4,f +12644,3022,0,9,f +12644,3023,1,8,f +12644,3023,8,13,f +12644,3023,0,3,f +12644,3023,4,2,f +12644,3023,15,12,f +12644,3023,7,10,f +12644,3024,7,1,t +12644,3024,7,12,f +12644,3024,0,2,f +12644,3024,15,13,f +12644,3027,19,1,f +12644,3029,0,2,f +12644,3030,15,1,f +12644,3030,0,2,f +12644,3031,14,1,f +12644,3031,15,4,f +12644,3032,15,1,f +12644,3034,0,1,f +12644,3034,1,5,f +12644,3034,7,4,f +12644,3034,15,8,f +12644,3034,8,6,f +12644,3034,19,1,f +12644,3035,0,1,f +12644,30355,15,2,f +12644,30356,15,2,f +12644,30359a,8,2,f +12644,30361a,7,4,f +12644,30361dps1,15,1,f +12644,30362,15,2,f +12644,30367a,7,4,f +12644,30367apr01,15,1,f +12644,3037,15,10,f +12644,30374,8,2,f +12644,3038,15,2,f +12644,3039,14,1,f +12644,3039,8,1,f +12644,3039pr0008,0,1,f +12644,3040b,4,2,f +12644,3040b,8,2,f +12644,3040b,7,4,f +12644,30414,7,4,f +12644,3045,8,2,f +12644,3045,15,4,f +12644,30497,47,1,f +12644,3062b,19,4,f +12644,3068b,8,8,f +12644,3068b,0,1,f +12644,3068b,4,1,f +12644,3069b,4,17,f +12644,3069b,2,2,f +12644,3069b,19,5,f +12644,3069b,15,5,f +12644,3069b,8,6,f +12644,3069b,7,2,f +12644,3070b,15,5,f +12644,3070b,4,1,t +12644,3070b,4,5,f +12644,3176,1,1,f +12644,3185,7,8,f +12644,32000,7,30,f +12644,32000,0,2,f +12644,32007,7,2,f +12644,32007,19,2,f +12644,32039,1,8,f +12644,32059,15,5,f +12644,32059,8,1,f +12644,32060,7,4,f +12644,32073,0,1,f +12644,32073,7,4,f +12644,32123b,7,1,t +12644,32123b,7,1,f +12644,32124,7,2,f +12644,32140,0,2,f +12644,3298,15,4,f +12644,3298,0,8,f +12644,33008,8,4,f +12644,3455,4,2,f +12644,3460,19,2,f +12644,3460,8,8,f +12644,3460,7,4,f +12644,3460,15,10,f +12644,3622,14,4,f +12644,3622,8,2,f +12644,3622,15,4,f +12644,3623,15,16,f +12644,3623,8,2,f +12644,3623,7,15,f +12644,3623,19,6,f +12644,3623,1,7,f +12644,3647,7,1,f +12644,3647,7,1,t +12644,3648a,7,2,f +12644,3660,7,6,f +12644,3660,0,1,f +12644,3665,8,4,f +12644,3665,4,4,f +12644,3665,15,6,f +12644,3666,4,1,f +12644,3666,19,4,f +12644,3666,8,2,f +12644,3666,7,3,f +12644,3666,1,1,f +12644,3666,15,19,f +12644,3676,15,2,f +12644,3700,0,2,f +12644,3700,14,3,f +12644,3701,15,4,f +12644,3701,4,1,f +12644,3702,0,2,f +12644,3705,0,3,f +12644,3707,0,15,f +12644,3708,7,4,f +12644,3710,14,2,f +12644,3710,8,3,f +12644,3710,7,3,f +12644,3710,15,4,f +12644,3710,19,1,f +12644,3713,7,1,t +12644,3713,7,5,f +12644,3737,0,4,f +12644,3747b,15,14,f +12644,3747b,0,1,f +12644,3794a,14,3,f +12644,3794a,1,2,f +12644,3795,0,1,f +12644,3795,19,1,f +12644,3795,14,3,f +12644,3795,1,1,f +12644,3795,8,2,f +12644,3795,15,10,f +12644,3830,15,2,f +12644,3831,15,2,f +12644,3832,14,4,f +12644,3832,1,1,f +12644,3895,0,2,f +12644,3895,15,4,f +12644,3933,15,2,f +12644,3934,15,2,f +12644,3941,7,28,f +12644,3956,7,4,f +12644,3957a,7,4,f +12644,3958,19,1,f +12644,3960,19,1,f +12644,4019,7,4,f +12644,4032a,7,4,f +12644,4032a,8,8,f +12644,4070,15,8,f +12644,4081b,7,8,f +12644,4085c,8,6,f +12644,4162,8,10,f +12644,4162,0,12,f +12644,4162,4,2,f +12644,4162,15,8,f +12644,4162,7,6,f +12644,4175,0,1,f +12644,4274,7,1,t +12644,4274,7,26,f +12644,4275b,8,4,f +12644,4276b,1,4,f +12644,4282,4,1,f +12644,4282,19,1,f +12644,4286,8,2,f +12644,4286,15,2,f +12644,4286,7,6,f +12644,4286,4,1,f +12644,4287,7,3,f +12644,4287,15,2,f +12644,4315,7,1,f +12644,4460b,8,2,f +12644,4460b,15,2,f +12644,4477,15,8,f +12644,4477,0,2,f +12644,4477,1,4,f +12644,4477,7,6,f +12644,4515,15,4,f +12644,4531,4,1,f +12644,4589,0,2,f +12644,4716,7,1,f +12644,4871,7,4,f +12644,6016,8,1,f +12644,6019,8,2,f +12644,6069pb03,8,1,f +12644,6111,0,2,f +12644,6111,15,4,f +12644,6112,4,2,f +12644,6141,7,16,f +12644,6141,7,1,t +12644,6141,8,10,f +12644,6141,8,1,t +12644,6179,0,1,f +12644,6180,19,4,f +12644,6180,4,4,f +12644,6222,7,4,f +12644,6222,4,4,f +12644,6222,8,1,f +12644,6259,7,4,f +12644,6538b,7,9,f +12644,6541,0,6,f +12644,6541,8,4,f +12644,6553,7,4,f +12644,6558,0,1,f +12644,6564,15,1,f +12644,6564,8,1,f +12644,6565,15,1,f +12644,6565,8,1,f +12644,6587,8,12,f +12644,6588,0,1,f +12644,6589,7,16,f +12644,6629,0,2,f +12644,6636,15,2,f +12644,6636,4,4,f +12644,6636,8,3,f +12644,73983,15,4,f +12644,75535,7,9,f +12644,78c04,0,2,f +12644,78c06,7,2,f +12645,3001,14,6,f +12645,3001,15,2,f +12645,3001,4,6,f +12645,3001,1,4,f +12645,3002,1,2,f +12645,3002,4,4,f +12645,3002,14,4,f +12645,3003,4,4,f +12645,3003,1,2,f +12645,3003,15,2,f +12645,3003,14,4,f +12645,3004,14,12,f +12645,3004,15,2,f +12645,3004,0,4,f +12645,3004,47,4,f +12645,3004,4,10,f +12645,3004,1,10,f +12645,3005,4,8,f +12645,3005,15,2,f +12645,3005,1,8,f +12645,3005,14,8,f +12645,3008,14,2,f +12645,3008,1,2,f +12645,3009,4,4,f +12645,3009,14,4,f +12645,3009,1,3,f +12645,3010,0,2,f +12645,3010,1,10,f +12645,3010,4,8,f +12645,3010,14,7,f +12645,3020,4,4,f +12645,3021,4,2,f +12645,3022,4,2,f +12645,3031,4,1,f +12645,3032,4,1,f +12645,3034,4,4,f +12645,3039,47,2,f +12645,3039,14,2,f +12645,3039,4,4,f +12645,3081cc01,4,2,f +12645,3137c01,0,2,f +12645,3297,4,4,f +12645,3298,4,4,f +12645,3299,4,2,f +12645,3300,4,2,f +12645,3460,15,4,f +12645,3461,15,1,f +12645,3462,4,1,f +12645,3470,2,2,f +12645,3480,7,1,f +12645,3481,4,1,f +12645,3622,4,6,f +12645,3622,1,4,f +12645,3622,14,6,f +12645,3625,0,1,f +12645,3626apr0001,14,2,f +12645,3633,4,4,f +12645,3641,0,4,f +12645,3660,14,2,f +12645,3660,4,4,f +12645,3666,4,4,f +12645,3710,4,4,f +12645,3741,2,2,f +12645,3742,4,3,f +12645,3742,15,3,f +12645,3742,4,1,t +12645,3742,15,1,t +12645,3823,47,1,f +12645,3853,4,4,f +12645,3854,15,8,f +12645,3856,2,4,f +12645,3861b,4,1,f +12645,3867,2,1,f +12645,3901,6,1,f +12645,970c00,1,1,f +12645,970c00,0,1,f +12645,973c01,15,1,f +12645,973c02,4,1,f +12646,2357,14,2,f +12646,2412b,42,6,f +12646,2418b,42,1,f +12646,2418bpb02,42,1,f +12646,2419,1,2,f +12646,2420,1,4,f +12646,2420,0,2,f +12646,2431,8,4,f +12646,2433,0,2,f +12646,2436,0,2,f +12646,2444,0,2,f +12646,2446,47,2,f +12646,2452,1,1,f +12646,2456,8,4,f +12646,2458,8,3,f +12646,2476a,1,2,f +12646,2540,1,4,f +12646,2555,8,1,f +12646,2566,0,2,f +12646,2569,42,3,f +12646,2582,34,1,f +12646,2593,1,4,f +12646,2607,8,3,f +12646,2620,34,1,f +12646,2621,0,1,f +12646,2625,0,1,f +12646,2653,0,4,f +12646,2730,0,1,f +12646,2877,0,4,f +12646,298c02,0,1,f +12646,3003,8,4,f +12646,3003,1,4,f +12646,30031,0,1,f +12646,3004,1,3,f +12646,3004,8,9,f +12646,3005,8,2,f +12646,3006,0,1,f +12646,3006,1,1,f +12646,3007,0,2,f +12646,3008,8,4,f +12646,3009,1,1,f +12646,3010,8,8,f +12646,30117pb03l,34,1,f +12646,30117pb03r,34,1,f +12646,30121,0,1,f +12646,3020,1,2,f +12646,3020,0,5,f +12646,30200,0,2,f +12646,30201,0,2,f +12646,30208,34,3,f +12646,30209,1,3,f +12646,3021,1,3,f +12646,30211,34,2,f +12646,30212,8,6,f +12646,30213,42,4,f +12646,30214,34,2,f +12646,3022,1,4,f +12646,3022,8,2,f +12646,3022,0,11,f +12646,3023,1,13,f +12646,3023,0,2,f +12646,3023,42,4,f +12646,3023,8,4,f +12646,30231pb01,33,1,f +12646,30231pb02,33,1,f +12646,3027,1,2,f +12646,3030,1,2,f +12646,3033,0,1,f +12646,3039,1,2,f +12646,3039,8,4,f +12646,3039px8,8,1,f +12646,3040b,8,8,f +12646,3040p58,8,3,f +12646,3068b,0,1,f +12646,3068bpx7,0,4,f +12646,3069b,8,3,f +12646,3069bp53,0,2,f +12646,3149c01,1,2,f +12646,3298pb005,8,1,f +12646,3403c01,0,2,f +12646,3460,8,8,f +12646,3475b,0,2,f +12646,3622,0,4,f +12646,3623,1,3,f +12646,3626bpb0034,0,2,f +12646,3626bpb0036,8,1,f +12646,3626bpx175,8,1,f +12646,3665,0,2,f +12646,3666,0,2,f +12646,3666,1,4,f +12646,3673,7,2,f +12646,3679,7,1,f +12646,3680,1,1,f +12646,3710,0,14,f +12646,3710,1,3,f +12646,3794a,1,2,f +12646,3795,8,2,f +12646,3838,0,1,f +12646,3839b,1,2,f +12646,3935,1,1,f +12646,3936,1,1,f +12646,3941,1,5,f +12646,3958,1,4,f +12646,3962b,0,1,f +12646,4032a,1,2,f +12646,4070,0,4,f +12646,4150,0,4,f +12646,4215b,1,1,f +12646,4275b,1,4,f +12646,4276b,1,7,f +12646,4282,1,2,f +12646,4285b,0,1,f +12646,4286,8,4,f +12646,4286,0,2,f +12646,4287,1,2,f +12646,4349,0,2,f +12646,4476b,8,5,f +12646,4477,0,1,f +12646,4510,0,2,f +12646,4589,0,6,f +12646,4589,42,8,f +12646,4590,0,4,f +12646,4598,8,2,f +12646,4625,8,2,f +12646,4740,8,1,f +12646,4740,42,1,f +12646,6019,1,3,f +12646,6044,0,4,f +12646,6048a,0,2,f +12646,6112,0,1,f +12646,6118,1,2,f +12646,6141,42,17,f +12646,6141,1,8,f +12646,6249,8,4,f +12646,6541,0,2,f +12646,6919,42,5,f +12646,71603,8,1,f +12646,73092,0,3,f +12646,73983,8,10,f +12646,970c11pb03,0,1,f +12646,970c11pb04,0,2,f +12646,970x027,0,1,f +12646,973pb0037c01,8,1,f +12646,973pb0198c01,0,2,f +12646,973pb0200c01,8,1,f +12648,22119,1,1,f +12648,22119,4,1,f +12648,2780,0,60,f +12648,2815,0,4,f +12648,3003,71,4,f +12648,3004,71,8,f +12648,3023,71,4,f +12648,30648,0,2,f +12648,3065,46,1,f +12648,3065,34,1,f +12648,3065,36,1,f +12648,3069b,72,2,f +12648,32001,71,2,f +12648,32009,72,4,f +12648,32034,0,2,f +12648,32054,0,8,f +12648,32062,4,8,f +12648,32064b,72,2,f +12648,32072,0,4,f +12648,32073,71,8,f +12648,32123b,14,2,t +12648,32123b,14,10,f +12648,32138,0,2,f +12648,32140,72,4,f +12648,32184,0,8,f +12648,32250,72,4,f +12648,32269,71,2,f +12648,32270,0,4,f +12648,32278,72,4,f +12648,32291,72,2,f +12648,32316,72,4,f +12648,32498,0,2,f +12648,32523,72,10,f +12648,32524,72,4,f +12648,32525,72,2,f +12648,32526,72,8,f +12648,33299a,71,2,f +12648,3647,71,4,f +12648,3648b,71,4,f +12648,3649,71,2,f +12648,3650c,71,2,f +12648,3700,71,4,f +12648,3701,71,4,f +12648,3702,71,4,f +12648,3703,71,4,f +12648,3705,0,6,f +12648,3706,0,4,f +12648,3707,0,2,f +12648,3708,0,2,f +12648,3709,71,2,f +12648,3710,71,4,f +12648,3713,71,10,f +12648,3737,0,2,f +12648,3738,71,2,f +12648,3749,19,8,f +12648,3894,71,4,f +12648,4019,71,4,f +12648,40490,72,6,f +12648,41239,72,2,f +12648,4185,71,4,f +12648,42003,72,4,f +12648,43093,1,10,f +12648,4485,4,1,f +12648,4519,71,14,f +12648,4716,0,2,f +12648,48989,71,2,f +12648,50163,72,1,f +12648,53787,151,3,f +12648,53788,151,1,f +12648,53792,151,1,f +12648,53793,151,2,f +12648,54190,47,1,f +12648,54358,47,1,f +12648,54572,25,1,f +12648,54690,0,3,f +12648,55804,0,1,f +12648,55805,0,4,f +12648,55806,0,2,f +12648,55963,151,1,f +12648,55969,151,1,f +12648,55976,0,4,f +12648,55981,71,2,f +12648,56145,71,4,f +12648,57482,0,1,f +12648,59426,72,2,f +12648,6035,15,3,f +12648,6093,0,1,f +12648,6536,71,20,f +12648,6538b,0,4,f +12648,6558,0,36,f +12648,6629,72,4,f +12648,85544,4,2,f +12648,87662,151,1,f +12648,970c00,25,1,f +12648,973pr1204c01,15,1,f +12648,bb273,0,1,f +12648,rb00170,14,2,f +12649,45462,118,1,f +12649,45464,41,1,f +12649,clikits037,9,1,f +12649,clikits078,41,1,f +12650,2570,135,1,f +12650,2586p4h,71,2,f +12650,2587,132,1,f +12650,2587pr0014,0,1,f +12650,30238,0,1,f +12650,30374,70,1,f +12650,30381,0,1,f +12650,3626bpr0494,15,4,f +12650,3626bpr0496,0,1,f +12650,43899,72,1,f +12650,48493,132,1,f +12650,48493,0,1,f +12650,50231,0,1,f +12650,53705,132,2,f +12650,59229,72,1,f +12650,59230,0,2,f +12650,59230,15,4,f +12650,59231pr0001,72,2,f +12650,59232,135,1,f +12650,60115,15,2,f +12650,60115,0,1,f +12650,6266,0,2,f +12650,6266,15,4,f +12650,63965,70,1,f +12650,970x154,0,2,f +12650,973c42,0,2,f +12651,58122,71,1,f +12652,11477,2,2,f +12652,14417,72,2,f +12652,14418,71,2,f +12652,15208,15,1,f +12652,3004,2,1,f +12652,3022,27,4,f +12652,3023,2,6,f +12652,3023,27,1,f +12652,3049d,27,1,f +12652,32474pr1001,15,2,f +12652,33122,42,2,f +12652,3665,2,4,f +12652,3665,27,2,f +12652,3957a,42,2,f +12652,41854,2,1,f +12652,44728,0,2,f +12652,50948,27,1,f +12652,54200,34,2,f +12652,54200,34,1,t +12652,6141,42,1,t +12652,6141,42,2,f +12652,64225,27,2,f +12652,87087,27,2,f +12652,88072,0,2,f +12652,98313,0,2,f +12653,10178pr0005,45,1,f +12653,12825,71,4,f +12653,15210,72,3,f +12653,2346,0,2,f +12653,2412b,0,4,f +12653,2431,320,2,f +12653,2432,0,2,f +12653,2458,72,2,f +12653,2476a,15,1,f +12653,2653,0,1,f +12653,2654,71,4,f +12653,2736,71,2,f +12653,2780,0,1,t +12653,2780,0,6,f +12653,2877,72,3,f +12653,2877,0,2,f +12653,2921,0,2,f +12653,3001,72,1,f +12653,3003,72,4,f +12653,3004,71,2,f +12653,30044,71,2,f +12653,30045,0,2,f +12653,3005,33,3,f +12653,3005,182,3,f +12653,3008,71,2,f +12653,3009,72,1,f +12653,30103,0,1,f +12653,30136,70,4,f +12653,30136,72,4,f +12653,30137,70,4,f +12653,30137,71,7,f +12653,30149,320,1,f +12653,3020,70,4,f +12653,3020,72,2,f +12653,3021,71,2,f +12653,3022,19,2,f +12653,3022,70,4,f +12653,30236,72,2,f +12653,30237a,71,2,f +12653,30238,1000,1,f +12653,3024,36,2,f +12653,3031,71,1,f +12653,3032,70,3,f +12653,3034,72,4,f +12653,3035,70,1,f +12653,3035,72,2,f +12653,30374,70,2,f +12653,3040b,72,6,f +12653,30414,72,3,f +12653,3043,0,3,f +12653,3044c,72,2,f +12653,3045,0,2,f +12653,3046a,72,2,f +12653,3048c,0,2,f +12653,3062b,72,4,f +12653,3062b,71,17,f +12653,3069b,71,2,f +12653,3070bpr0007,71,1,f +12653,3070bpr0007,71,1,t +12653,3185,0,2,f +12653,32018,72,2,f +12653,32028,71,2,f +12653,32039,0,2,f +12653,32062,4,4,f +12653,32064a,71,6,f +12653,32073,71,2,f +12653,32316,4,1,f +12653,32556,19,3,f +12653,3298,0,3,f +12653,3460,72,4,f +12653,3622,0,10,f +12653,3624,0,1,f +12653,3626cpr1013,71,1,f +12653,3626cpr1033,14,1,f +12653,3626cpr1036,71,1,f +12653,3626cpr1038,71,1,f +12653,3633,0,2,f +12653,3647,72,1,f +12653,3648b,72,2,f +12653,3659,71,6,f +12653,3666,320,1,f +12653,3666,0,2,f +12653,3673,71,2,f +12653,3673,71,1,t +12653,3675,0,4,f +12653,3678bpr0034,15,1,f +12653,3700,72,10,f +12653,3702,0,2,f +12653,3707,0,2,f +12653,3713,71,4,f +12653,3713,71,2,t +12653,3738,0,2,f +12653,3794a,0,4,f +12653,3795,72,2,f +12653,3829c01,71,1,f +12653,3839b,72,1,f +12653,3878,0,1,f +12653,3941,42,1,f +12653,3958,71,1,f +12653,4083,0,1,f +12653,41334,72,1,f +12653,4150,71,3,f +12653,41539,71,1,f +12653,42610,71,2,f +12653,4274,1,10,f +12653,4274,1,2,t +12653,43337,40,1,f +12653,4341,0,1,f +12653,4460b,72,4,f +12653,4510,71,4,f +12653,4519,71,3,f +12653,4590,72,1,f +12653,48336,297,1,f +12653,48336,19,2,f +12653,4865a,0,4,f +12653,48729b,72,1,t +12653,48729b,0,5,f +12653,48729b,72,1,f +12653,48729b,0,2,t +12653,52031,320,1,f +12653,52107,0,2,f +12653,52501,72,1,f +12653,53451,179,2,f +12653,53989,297,2,f +12653,54200,72,6,f +12653,54200,71,2,f +12653,55236,288,1,f +12653,55236,70,1,f +12653,55982,71,2,f +12653,56891,0,2,f +12653,56902,71,2,f +12653,59443,70,4,f +12653,59443,72,4,f +12653,59900,42,4,f +12653,60474,71,1,f +12653,61072,179,2,f +12653,61184,71,4,f +12653,61409,72,4,f +12653,6141,47,2,f +12653,6141,41,1,f +12653,6141,41,1,t +12653,6141,0,10,f +12653,6141,0,2,t +12653,6141,42,1,t +12653,6141,42,4,f +12653,6141,47,1,t +12653,62462,320,2,f +12653,62696,28,1,f +12653,64644,308,2,f +12653,64647,57,2,f +12653,64647,57,1,t +12653,6585,0,1,f +12653,6589,19,1,t +12653,6589,19,2,f +12653,75904,71,1,f +12653,85940,0,2,f +12653,85984,0,3,f +12653,85984,72,10,f +12653,86208,72,2,f +12653,87083,72,2,f +12653,87087,71,15,f +12653,87087,72,4,f +12653,87580,71,1,f +12653,88072,72,2,f +12653,90201,0,1,f +12653,92946,0,4,f +12653,93160,15,3,f +12653,970c00,72,1,f +12653,970c00pr0364,272,1,f +12653,970c00pr0367,379,1,f +12653,973pr2102c01,272,1,f +12653,973pr2125c01,2,1,f +12653,973pr2130c01,15,1,f +12653,973pr2132c01,15,1,f +12653,98138,297,1,f +12653,98138,297,1,t +12653,98138,71,5,f +12653,98283,28,4,f +12653,99207,71,1,f +12653,99781,71,2,f +12655,2871a,0,2,f +12655,70358,0,1,f +12656,10170,84,1,f +12656,10201,15,6,f +12656,10201,0,2,f +12656,11055,15,1,f +12656,11090,72,1,f +12656,11203,15,1,f +12656,11208,71,4,f +12656,11209,0,4,f +12656,11211,19,2,f +12656,11211,71,2,f +12656,11289,41,1,f +12656,11291,4,1,f +12656,11291,14,1,f +12656,11303,272,1,f +12656,11303,4,3,f +12656,11303,1,1,f +12656,11476,71,16,f +12656,11477,4,1,f +12656,11477,15,2,f +12656,13731,72,4,f +12656,14520,72,6,f +12656,14682,71,2,f +12656,14769,19,1,f +12656,14769pr0004,71,1,f +12656,15068,4,3,f +12656,15207,72,2,f +12656,15207,14,4,f +12656,15207,4,2,f +12656,15207,0,2,f +12656,15210pr01,0,1,f +12656,15396,4,1,f +12656,15573,4,3,f +12656,16606pat0001,15,1,f +12656,18646,25,2,f +12656,18654,72,2,f +12656,18654,72,2,t +12656,18892,0,3,f +12656,18973,40,2,f +12656,18974,72,2,f +12656,18980,0,2,f +12656,2412b,25,2,f +12656,2412b,72,12,f +12656,2412b,1,4,f +12656,2412b,0,1,f +12656,2412b,71,44,f +12656,2417,10,9,f +12656,2419,72,2,f +12656,2420,72,12,f +12656,2420,1,2,f +12656,2420,0,6,f +12656,2431,25,4,f +12656,2431,72,2,f +12656,2431,1,5,f +12656,2431,14,1,f +12656,2431,71,2,f +12656,2431,2,2,f +12656,2432,0,1,f +12656,2432,15,1,f +12656,2432,14,2,f +12656,2432,71,1,f +12656,2437,40,1,f +12656,2445,4,2,f +12656,2445,71,3,f +12656,2446,4,1,f +12656,2446,2,1,f +12656,2446,1,1,f +12656,2447,40,3,f +12656,2447,40,3,t +12656,2454a,15,14,f +12656,2454b,1,4,f +12656,2454b,14,2,f +12656,2456,0,2,f +12656,2456,15,3,f +12656,2458,19,2,f +12656,2465,14,1,f +12656,2465,15,4,f +12656,2479,0,1,f +12656,2495,4,1,f +12656,2496,0,2,f +12656,2540,15,3,f +12656,2584,0,1,f +12656,2585,71,1,f +12656,2654,0,1,f +12656,2655,71,1,f +12656,2780,0,2,t +12656,2780,0,6,f +12656,2877,71,2,f +12656,2877,72,6,f +12656,2921,15,2,f +12656,2922,0,1,f +12656,2926,0,4,f +12656,298c02,4,1,t +12656,298c02,4,2,f +12656,3001,71,2,f +12656,3001,4,1,f +12656,3001,1,4,f +12656,3001,72,2,f +12656,3001,15,2,f +12656,3001,14,1,f +12656,3002,14,1,f +12656,3003,71,1,f +12656,3003,1,3,f +12656,3003,14,2,f +12656,3003,15,5,f +12656,3003,28,1,f +12656,30031,71,1,f +12656,3004,1,10,f +12656,3004,71,4,f +12656,3004,15,14,f +12656,3005,71,7,f +12656,3006,0,2,f +12656,3007,0,2,f +12656,3008,15,1,f +12656,3008,1,2,f +12656,3009,0,1,f +12656,3009,14,4,f +12656,3009,19,1,f +12656,3009,15,11,f +12656,3010,28,7,f +12656,3010,15,3,f +12656,3010,0,4,f +12656,30136,72,4,f +12656,30151a,47,1,f +12656,30157,72,2,f +12656,3020,71,2,f +12656,3020,14,3,f +12656,3020,4,1,f +12656,3020,1,5,f +12656,3020,0,4,f +12656,3020,2,6,f +12656,3020,19,1,f +12656,3020,72,6,f +12656,3021,71,1,f +12656,3021,15,1,f +12656,3021,1,6,f +12656,3021,25,12,f +12656,3022,4,2,f +12656,3022,1,11,f +12656,3022,71,2,f +12656,3022,72,1,f +12656,3022,19,3,f +12656,3022,2,1,f +12656,3023,71,7,f +12656,3023,46,3,f +12656,3023,1,24,f +12656,3023,73,11,f +12656,3023,15,11,f +12656,3023,4,12,f +12656,3023,14,6,f +12656,3023,28,1,f +12656,3023,72,9,f +12656,3023,2,5,f +12656,3023,70,11,f +12656,3023,0,12,f +12656,30237b,71,2,f +12656,3024,36,2,t +12656,3024,182,4,f +12656,3024,182,1,t +12656,3024,36,4,f +12656,30248,72,1,f +12656,3031,14,1,f +12656,3032,19,4,f +12656,3032,4,1,f +12656,3032,14,1,f +12656,3033,14,1,f +12656,3034,15,1,f +12656,3034,1,2,f +12656,3034,72,4,f +12656,3035,15,2,f +12656,3035,72,1,f +12656,3035,28,1,f +12656,30364,14,2,f +12656,3039,2,1,f +12656,3039,0,8,f +12656,30395,72,1,f +12656,3040b,14,2,f +12656,3040b,1,1,f +12656,30414,0,3,f +12656,30414,14,1,f +12656,30414,15,6,f +12656,30414,1,2,f +12656,3045,0,4,f +12656,30552,71,1,f +12656,30554a,0,1,f +12656,30586,25,8,f +12656,30592,72,1,f +12656,30602,1,1,f +12656,3062b,70,1,f +12656,3062b,4,1,f +12656,3062b,15,1,f +12656,3062b,14,1,f +12656,3068b,1,2,f +12656,3068bpr0136,72,1,f +12656,3068bpr0201,15,2,f +12656,3068bpr0264,1,4,f +12656,3068bpr0265,1,4,f +12656,3069b,14,2,f +12656,3069b,182,2,f +12656,3069b,0,2,f +12656,3069b,46,2,f +12656,3069b,15,2,f +12656,3069b,72,1,f +12656,3069bp02,71,1,f +12656,3069bpr0030,15,2,f +12656,3069bpr0149,1,3,f +12656,3070b,36,2,f +12656,3070b,0,1,t +12656,3070b,15,2,f +12656,3070b,1,2,f +12656,3070b,71,1,t +12656,3070b,14,2,f +12656,3070b,14,1,t +12656,3070b,1,1,t +12656,3070b,36,1,t +12656,3070b,15,1,t +12656,3070b,71,6,f +12656,3070b,0,2,f +12656,3070bpr0007,71,2,f +12656,3070bpr0007,71,1,t +12656,32000,72,2,f +12656,32013,72,1,f +12656,32028,71,2,f +12656,32028,4,1,f +12656,32028,72,4,f +12656,32028,0,2,f +12656,32064a,71,2,f +12656,32123b,14,2,f +12656,32123b,14,1,t +12656,32124,0,1,f +12656,32138,0,1,f +12656,32140,14,1,f +12656,32270,0,1,f +12656,32316,4,4,f +12656,3245b,15,5,f +12656,3245c,0,1,f +12656,32556,19,1,f +12656,33078,4,2,f +12656,3456,71,1,f +12656,3456,72,1,f +12656,3460,71,1,f +12656,3460,15,1,f +12656,3464,15,2,f +12656,3622,15,2,f +12656,3624,320,1,f +12656,3626bpr0386,14,1,f +12656,3626bpr0389,14,1,f +12656,3626bpr0677,14,1,f +12656,3626cpr0499,14,1,f +12656,3626cpr0891,14,2,f +12656,3626cpr1146,14,1,f +12656,3626cpr1147,14,1,f +12656,3626cpr1580,14,1,f +12656,3626cpr1662,14,1,f +12656,3626cpr1663,14,1,f +12656,3626cpr1665,14,1,f +12656,3626cpr1666,14,1,f +12656,3660,70,5,f +12656,3660,72,2,f +12656,3665,1,4,f +12656,3665,71,2,f +12656,3666,72,5,f +12656,3666,2,2,f +12656,3666,71,4,f +12656,3666,15,6,f +12656,3666,14,3,f +12656,3666,0,8,f +12656,3666,70,2,f +12656,3666,1,2,f +12656,3700,15,4,f +12656,3700,71,2,f +12656,3701,71,1,f +12656,3707,0,1,f +12656,3708,0,1,f +12656,3710,15,7,f +12656,3710,14,1,f +12656,3710,27,4,f +12656,3710,25,6,f +12656,3710,72,10,f +12656,3731,71,4,f +12656,3747a,15,2,f +12656,3747a,71,1,f +12656,3749,19,1,f +12656,3795,72,3,f +12656,3795,2,4,f +12656,3795,25,5,f +12656,3795,19,5,f +12656,3795,71,7,f +12656,3821,15,1,f +12656,3821,14,1,f +12656,3822,14,1,f +12656,3822,15,1,f +12656,3829c01,1,3,f +12656,3829c01,15,1,f +12656,3829c01,4,1,f +12656,3832,71,1,f +12656,3832,15,2,f +12656,3838,2,1,f +12656,3839b,71,2,f +12656,3844,71,1,f +12656,3899,14,1,f +12656,3899,4,3,f +12656,3901,70,1,f +12656,3937,14,2,f +12656,3937,1,3,f +12656,3941,70,11,f +12656,3957a,71,2,f +12656,3957a,15,1,f +12656,3958,72,4,f +12656,3958,14,1,f +12656,3960,15,1,f +12656,4006,0,1,f +12656,4032a,15,1,f +12656,4070,14,2,f +12656,4070,0,4,f +12656,4070,72,8,f +12656,4079,1,12,f +12656,4150p02,14,1,f +12656,41539,72,1,f +12656,4162,71,11,f +12656,4162,2,2,f +12656,4162,72,8,f +12656,4176,40,1,f +12656,41879a,19,1,f +12656,41879a,71,1,f +12656,42022,25,4,f +12656,4282,71,2,f +12656,4282,72,3,f +12656,4287,0,2,f +12656,4287,15,2,f +12656,4287,1,6,f +12656,43337,40,3,f +12656,4360,0,1,f +12656,44126,0,2,f +12656,44300,0,1,f +12656,44301a,14,2,f +12656,44301a,71,4,f +12656,44302a,0,2,f +12656,44302a,4,2,f +12656,44302a,71,2,f +12656,44375b,15,1,f +12656,44568,71,10,f +12656,44661,72,1,f +12656,44728,1,16,f +12656,44728,72,4,f +12656,44728,71,4,f +12656,4477,71,4,f +12656,4477,0,2,f +12656,4477,1,2,f +12656,4477,15,2,f +12656,4488,0,4,f +12656,4495b,191,2,f +12656,4510,72,2,f +12656,4522,0,1,f +12656,45677,4,1,f +12656,4599b,4,1,f +12656,4599b,14,1,t +12656,4599b,4,1,t +12656,4599b,14,1,f +12656,4600,71,1,f +12656,46212,47,5,f +12656,4624,15,2,f +12656,46413,40,18,f +12656,4719,4,1,f +12656,4740,72,1,f +12656,47457,72,1,f +12656,47457,71,1,f +12656,48336,71,4,f +12656,48336,14,1,f +12656,4865a,72,1,f +12656,4865a,14,1,f +12656,4865a,1,2,f +12656,4865a,47,1,f +12656,4871,71,3,f +12656,4871,72,1,f +12656,48729b,72,1,f +12656,48729b,72,1,t +12656,49668,179,2,f +12656,49668,0,2,f +12656,50254,0,8,f +12656,50373,1,1,f +12656,50745,0,4,f +12656,50745,72,2,f +12656,50745,4,4,f +12656,50950,25,4,f +12656,50950,72,2,f +12656,51739,0,1,f +12656,52031,14,1,f +12656,52031,15,1,f +12656,52036,72,3,f +12656,52501,4,2,f +12656,52501,14,2,f +12656,52501,0,2,f +12656,54200,1,2,f +12656,54200,182,4,f +12656,54200,47,4,t +12656,54200,72,6,f +12656,54200,47,8,f +12656,54200,72,1,t +12656,54200,182,2,t +12656,54200,14,1,t +12656,54200,1,1,t +12656,54200,14,2,f +12656,56823c50,0,1,f +12656,56890,0,6,f +12656,57783,40,3,f +12656,57895,47,5,f +12656,58181,40,4,f +12656,58380,14,1,f +12656,58381,14,1,f +12656,59349,47,5,f +12656,59349,14,3,f +12656,59349,15,2,f +12656,59895,0,4,f +12656,59895,0,1,t +12656,6005,72,4,f +12656,6014b,71,10,f +12656,6014b,15,12,f +12656,6019,0,2,f +12656,60470a,71,3,f +12656,60470a,15,3,f +12656,60477,15,2,f +12656,60478,72,2,f +12656,60478,71,2,f +12656,60479,71,2,f +12656,60481,71,2,f +12656,60485,71,1,f +12656,60581,14,1,f +12656,60581,28,1,f +12656,60596,15,6,f +12656,60596,0,6,f +12656,60599,15,5,f +12656,60616a,47,2,f +12656,60897,1,2,f +12656,60897,71,1,f +12656,60897,15,2,f +12656,6111,15,2,f +12656,6112,71,1,f +12656,6134,71,5,f +12656,61409,4,4,f +12656,61409,72,2,f +12656,6141,0,1,t +12656,6141,2,3,f +12656,6141,0,3,f +12656,6141,71,2,t +12656,6141,19,1,t +12656,6141,71,4,f +12656,6141,4,2,t +12656,6141,182,1,t +12656,6141,80,1,f +12656,6141,182,2,f +12656,6141,14,1,t +12656,6141,19,3,f +12656,6141,27,3,f +12656,6141,72,3,t +12656,6141,80,1,t +12656,6141,47,2,f +12656,6141,70,3,f +12656,6141,72,7,f +12656,6141,47,2,t +12656,6141,1,10,f +12656,6141,14,4,f +12656,6141,27,1,t +12656,6141,25,3,f +12656,6141,25,1,t +12656,6141,2,1,t +12656,6141,4,5,f +12656,6141,1,4,t +12656,6141,70,1,t +12656,6157,71,6,f +12656,61780,72,1,f +12656,6180,15,1,f +12656,6192,71,2,f +12656,62113,72,1,f +12656,62462,71,3,f +12656,62696,0,1,f +12656,63082,0,2,f +12656,63864,2,4,f +12656,63864,28,2,f +12656,63868,0,2,f +12656,63965,15,1,f +12656,6541,0,1,f +12656,6636,25,4,f +12656,6636,28,2,f +12656,6636,0,4,f +12656,6636,71,13,f +12656,6636,1,1,f +12656,6636,72,3,f +12656,76764,179,1,f +12656,76764,179,1,t +12656,85863,15,1,f +12656,85974,70,1,f +12656,85984,0,7,f +12656,85984,4,1,f +12656,85984,15,2,f +12656,85984,72,4,f +12656,85984,71,4,f +12656,87079,0,3,f +12656,87079,15,9,f +12656,87079,1,1,f +12656,87079,71,3,f +12656,87087,71,20,f +12656,87544,15,4,f +12656,87544,40,1,f +12656,87552,1,2,f +12656,87580,14,1,f +12656,87580,0,2,f +12656,87580,15,3,f +12656,87580,71,3,f +12656,87580,2,1,f +12656,87580,4,1,f +12656,87580,1,4,f +12656,87609,15,3,f +12656,87609,2,1,f +12656,87697,0,16,f +12656,87990,70,1,f +12656,88930,14,1,f +12656,88930,1,12,f +12656,88930,0,1,f +12656,91405,72,1,f +12656,92438,72,6,f +12656,92582,71,3,f +12656,92583,40,1,f +12656,92593,71,1,f +12656,92593,0,7,f +12656,92842,0,1,f +12656,92851,47,2,f +12656,93273,1,1,f +12656,93273,72,15,f +12656,93273,4,2,f +12656,93606,0,1,f +12656,95344,28,1,t +12656,95344,28,1,f +12656,96874,25,1,t +12656,970c00,2,2,f +12656,970c00,1,1,f +12656,970c00,72,1,f +12656,970c00,0,2,f +12656,970c00,15,2,f +12656,970c00,4,1,f +12656,970c00,272,1,f +12656,970c00pr0900,379,1,f +12656,970x026,72,1,f +12656,973pr0100c01,72,1,f +12656,973pr1164c01,272,1,f +12656,973pr1196c01,15,1,f +12656,973pr1244c01,73,1,f +12656,973pr1470c01,1,1,f +12656,973pr1479c01,15,1,f +12656,973pr1485c01,4,1,f +12656,973pr1576c01,72,1,f +12656,973pr3080c01,14,2,f +12656,973pr3081c01,15,1,f +12656,973pr3082c01,4,1,f +12656,973pr3083c01,15,1,f +12656,973pr3084c01,1,1,f +12656,98138,47,4,t +12656,98138,36,5,t +12656,98138,15,1,f +12656,98138,36,14,f +12656,98138,47,7,f +12656,98138,15,1,t +12656,98263,71,2,f +12656,98281,0,1,f +12656,98282,0,6,f +12656,98283,28,24,f +12656,98284,70,2,f +12656,98285,0,2,f +12656,98286,71,2,f +12656,98835,14,1,f +12656,99206,15,1,f +12656,99206,4,2,f +12656,99207,25,4,f +12656,99207,71,4,f +12656,99207,4,1,f +12656,99207,0,2,f +12656,99780,4,2,f +12656,99781,0,16,f +12656,99784,71,1,f +12657,2339,0,6,f +12657,2357,19,2,f +12657,2420,72,2,f +12657,2431,19,2,f +12657,2445,72,2,f +12657,2449,19,8,f +12657,2454a,19,4,f +12657,2456,72,6,f +12657,2456,19,3,f +12657,2458,4,1,f +12657,2540,0,1,f +12657,2654,72,2,f +12657,2817,71,5,f +12657,3001,28,1,f +12657,3001,71,1,f +12657,3001,72,1,f +12657,3002,72,2,f +12657,3002,19,10,f +12657,3003,72,6,f +12657,3003,0,6,f +12657,3003,19,11,f +12657,3003,272,1,f +12657,3004,0,2,f +12657,3004,28,19,f +12657,3005,19,8,f +12657,3005,0,4,f +12657,3008,19,2,f +12657,3008,72,2,f +12657,3008,0,2,f +12657,3009,19,3,f +12657,3010,19,6,f +12657,3010,0,4,f +12657,30115,2,1,f +12657,30115,4,2,f +12657,30132,72,2,f +12657,30135,28,1,f +12657,30136,28,3,f +12657,30141,72,1,f +12657,30145,71,4,f +12657,30149,320,1,f +12657,30153,46,1,f +12657,30157,72,5,f +12657,30162,72,1,f +12657,30163,272,1,f +12657,30164,297,1,f +12657,30169,0,3,f +12657,30172,28,1,f +12657,30176,2,2,f +12657,3020,19,4,f +12657,3020,484,2,f +12657,3020,72,1,f +12657,3020,28,3,f +12657,3022,484,13,f +12657,3023,70,6,f +12657,3023,19,6,f +12657,3023,0,13,f +12657,3023,272,1,f +12657,30237a,0,1,f +12657,3028,28,3,f +12657,3030,19,4,f +12657,3032,19,5,f +12657,3032,72,3,f +12657,3034,72,9,f +12657,3035,71,1,f +12657,30357,272,4,f +12657,30364,72,2,f +12657,30365,71,2,f +12657,3037,19,20,f +12657,30386,0,2,f +12657,3039,19,21,f +12657,3040b,28,4,f +12657,3040b,320,2,f +12657,3040b,19,24,f +12657,3045,28,18,f +12657,3045,272,6,f +12657,3048c,297,12,f +12657,30541,4,2,f +12657,30552,0,8,f +12657,30553,71,2,f +12657,3062b,272,23,f +12657,3068b,19,4,f +12657,3068b,28,13,f +12657,3068bpr0188,19,1,f +12657,3069b,4,2,f +12657,3069b,19,2,f +12657,3069b,320,2,f +12657,32009,71,1,f +12657,32054,0,1,f +12657,32062,4,8,f +12657,32064b,72,2,f +12657,32073,71,2,f +12657,3245c,19,7,f +12657,32523,14,2,f +12657,32530,0,8,f +12657,3308,19,1,f +12657,3460,19,4,f +12657,3622,72,2,f +12657,3622,19,2,f +12657,3622,0,4,f +12657,3623,71,1,f +12657,3623,72,4,f +12657,3626b,0,1,f +12657,3626bpr0753a,14,1,f +12657,3626bpr0754a,14,1,f +12657,3626bpr0755a,71,1,f +12657,3626bpr0757,14,1,f +12657,3626bpr0758,71,1,f +12657,3647,72,2,f +12657,3665,71,6,f +12657,3666,72,5,f +12657,3666,19,9,f +12657,3673,71,5,f +12657,3684,28,4,f +12657,3688,272,3,f +12657,3700,19,10,f +12657,3705,0,2,f +12657,3710,320,1,f +12657,3710,0,2,f +12657,3710,272,5,f +12657,3710,19,5,f +12657,3713,4,2,f +12657,3743,71,2,f +12657,3747b,70,2,f +12657,3794b,272,8,f +12657,3794b,297,1,f +12657,3795,28,5,f +12657,3795,72,1,f +12657,3795,19,12,f +12657,3795,71,1,f +12657,3829c01,71,1,f +12657,3832,19,1,f +12657,3841,72,1,f +12657,3895,0,1,f +12657,3937,71,1,f +12657,3958,19,1,f +12657,4006,0,1,f +12657,40379,28,8,f +12657,4085c,71,2,f +12657,4150,297,2,f +12657,4162,0,6,f +12657,41747pr0001,28,1,f +12657,41748pr0001,28,1,f +12657,41769,19,1,f +12657,41770,19,1,f +12657,41854,272,3,f +12657,42060pr0001,28,1,f +12657,42061pr0001,28,1,f +12657,4274,1,1,t +12657,4274,1,1,f +12657,4287,0,2,f +12657,43093,1,2,f +12657,43719,320,1,f +12657,43888,72,4,f +12657,43903,0,2,f +12657,44301a,71,6,f +12657,44302a,72,14,f +12657,4477,0,2,f +12657,4497,0,1,f +12657,4589,0,1,f +12657,4589,297,30,f +12657,4623,72,1,f +12657,4623,0,1,f +12657,47457,72,1,f +12657,47457,28,3,f +12657,47458,72,2,f +12657,47753,28,2,f +12657,47753pr0002,28,1,f +12657,48092,72,4,f +12657,4855,0,1,f +12657,4865a,47,2,f +12657,48729b,72,1,f +12657,48729b,72,1,t +12657,49668,19,10,f +12657,50304,0,1,f +12657,50305,0,1,f +12657,50946,71,1,f +12657,50950,72,2,f +12657,51542,28,1,f +12657,51739,272,1,f +12657,51739,320,1,f +12657,53585,0,1,f +12657,54200,72,1,t +12657,54200,72,7,f +12657,55981,71,4,f +12657,56902,71,2,f +12657,57503,334,1,f +12657,57504,334,1,f +12657,57505,334,1,f +12657,57506,334,1,f +12657,59229,72,1,f +12657,59426,72,1,f +12657,60478,72,2,f +12657,6111,19,3,f +12657,61254,0,2,f +12657,6134,0,1,f +12657,6141,19,1,t +12657,6141,47,2,f +12657,6141,19,4,f +12657,6141,47,1,t +12657,61976,19,1,f +12657,62810,0,1,f +12657,63864,72,2,f +12657,64728,4,1,f +12657,6558,1,2,f +12657,6587,28,1,f +12657,6636,72,6,f +12657,73983,19,4,f +12657,85973,0,1,f +12657,85984,71,4,f +12657,87087,0,6,f +12657,87544,0,2,f +12657,90462pr0002,82,1,f +12657,91501,19,4,f +12657,92099,72,1,f +12657,92107,72,1,f +12657,92950,19,1,f +12657,92950,72,1,f +12657,93247,148,2,f +12657,93248pr0001,0,2,f +12657,93249pr0001,272,1,f +12657,93250pr0001,272,1,f +12657,93251,148,2,f +12657,970c00,19,1,f +12657,970c00,28,1,f +12657,970c00,308,1,f +12657,970c00pr0195a,71,1,f +12657,970c00pr0196,0,2,f +12657,970c00pr0200,28,1,f +12657,973pb0780c01,71,1,f +12657,973pr1721ac01,19,1,f +12657,973pr1722bc01,15,1,f +12657,973pr1725ac01,28,1,f +12657,973pr1726c01,28,1,f +12657,973pr1727c01,0,2,f +12658,281,14,1,f +12658,3001,14,6,f +12658,3002,14,2,f +12658,3003,14,12,f +12658,3004,14,2,f +12658,3031,14,1,f +12658,3035,4,1,f +12658,338.2stk01,9999,1,t +12658,338.2stk02,9999,1,t +12658,3888ac01,4,1,f +12658,691,14,1,f +12658,692,14,1,f +12658,fab11c,9999,1,f +12658,u9213,2,1,f +12658,x610c03,14,2,f +12658,x655c02,1,1,f +12659,3001a,15,3,f +12659,3002a,15,2,f +12659,3003,14,6,f +12659,3003,0,1,f +12659,3004,15,9,f +12659,3004,47,2,f +12659,3005,47,12,f +12659,3005,15,12,f +12659,3009,47,1,f +12659,3009,15,3,f +12659,3010,15,3,f +12659,3021,4,1,f +12659,3021,0,1,f +12659,3021,15,8,f +12659,3021,1,1,f +12659,3022,0,1,f +12659,3022,1,1,f +12659,3023,7,5,f +12659,3023,0,1,f +12659,3023,14,4,f +12659,3024,4,4,f +12659,3032,15,2,f +12659,3034,7,2,f +12659,3037,14,1,f +12659,3039,0,1,f +12659,3062a,0,10,f +12659,3062a,15,4,f +12659,3062a,4,4,f +12659,997c02,4,1,f +12659,x146c02,4,3,f +12659,x147c02,4,1,f +12659,x149a,4,1,f +12661,14226c11,0,1,f +12661,2356,7,2,f +12661,2356,1,1,f +12661,2432,15,1,f +12661,2432,7,2,f +12661,2446,8,1,f +12661,2447,0,1,f +12661,2449,7,2,f +12661,2452,0,1,f +12661,2454a,15,7,f +12661,2456,1,1,f +12661,2456,7,2,f +12661,2456,15,1,f +12661,2460,7,2,f +12661,2479,0,2,f +12661,2483,41,1,f +12661,2489,6,1,f +12661,2495,4,1,f +12661,2496,0,1,f +12661,2540,0,2,f +12661,2540,7,1,f +12661,2555,7,2,f +12661,2555,15,1,f +12661,2569,0,1,f +12661,298c02,15,1,f +12661,3001,14,2,f +12661,3001,15,1,f +12661,3001,0,2,f +12661,3003,15,2,f +12661,3004,7,1,f +12661,3004pc0,15,2,f +12661,30089,0,1,f +12661,3009,15,8,f +12661,3009,7,4,f +12661,3010,14,4,f +12661,3010px2,14,1,f +12661,30150,6,1,f +12661,30162,8,1,f +12661,30180,0,1,f +12661,30180,1,2,f +12661,30181,1,2,f +12661,30182,14,1,f +12661,30185c03,0,1,f +12661,30225pb02,2,2,f +12661,3023,4,1,f +12661,3023,2,2,f +12661,3024,46,1,f +12661,30277,1,1,f +12661,30277,0,1,f +12661,30278c01,0,1,f +12661,3028,0,1,f +12661,3033,1,1,f +12661,3037,0,1,f +12661,3037pb003,15,2,f +12661,3039,1,1,f +12661,3039p23,15,1,f +12661,3039pb012,1,1,f +12661,3039pr0005,15,1,f +12661,3065,46,2,f +12661,3069bp52,15,1,f +12661,3069bp80,15,1,f +12661,3430c01,7,1,f +12661,3460,0,8,f +12661,3475b,7,2,f +12661,3622pb008,14,2,f +12661,3623,0,2,f +12661,3626bp04,14,3,f +12661,3626bp05,14,1,f +12661,3626bp07,14,1,f +12661,3660,0,1,f +12661,3684,14,4,f +12661,3710,0,1,f +12661,3741,2,2,f +12661,3742,14,2,t +12661,3742,14,6,f +12661,3754,15,4,f +12661,3823,41,1,f +12661,3829c01,7,1,f +12661,3829c01,15,1,f +12661,3829c01,0,1,f +12661,3833,4,1,f +12661,3836,6,1,f +12661,3837,8,1,f +12661,3870,7,4,f +12661,3899,47,2,f +12661,3900,15,1,f +12661,3901,0,1,f +12661,3962b,0,1,f +12661,3963,0,2,f +12661,4006,0,1,f +12661,4079,0,1,f +12661,4085c,4,1,f +12661,4215bpx27,14,1,f +12661,4276b,1,1,f +12661,4315,14,1,f +12661,4319,0,1,f +12661,4345b,1,3,f +12661,4346,7,3,f +12661,4445,14,2,f +12661,4485,2,2,f +12661,4522,0,1,f +12661,4599a,7,1,f +12661,4600,7,1,f +12661,4854,15,1,f +12661,4865a,14,12,f +12661,4867pb02,14,1,f +12661,6014,15,14,f +12661,6015,0,14,f +12661,6019,15,2,f +12661,6112,7,1,f +12661,6117,8,1,f +12661,6141,36,2,f +12661,6141,0,1,f +12661,6160c01,0,2,f +12661,6212,1,2,f +12661,6230,0,8,f +12661,6583,0,1,f +12661,970c00,2,4,f +12661,970c00,1,1,f +12661,973pb0097c01,1,1,f +12661,973pb0238c01,15,1,f +12661,973pb0239c01,2,3,f +12662,2135,15,1,f +12662,2137c01,14,1,f +12662,3004,1,2,f +12662,3033,14,1,f +12662,3795,1,1,f +12662,3899,1,1,f +12662,3899,14,1,f +12662,4082,4,1,f +12662,4094a,4,1,f +12662,4222a,4,2,f +12662,4327,14,1,f +12662,4341,0,1,f +12662,4362acx1,14,1,f +12662,4461,4,2,f +12662,4608,1,2,f +12662,4793,4,1,f +12662,4794a,14,2,f +12662,63965,4,1,f +12662,x617,14,1,f +12663,10201,14,2,f +12663,11090,72,2,f +12663,11090,297,1,f +12663,11455,0,6,f +12663,11458,4,2,f +12663,11476,71,1,f +12663,14418,71,2,f +12663,14769,0,2,f +12663,14769,19,2,f +12663,15068,72,1,f +12663,15100,0,2,f +12663,15391,71,1,f +12663,15392,72,1,t +12663,15392,72,3,f +12663,15403,0,2,f +12663,15462,28,3,f +12663,15712,0,1,f +12663,18651,0,2,f +12663,18674,72,1,f +12663,18987,0,1,f +12663,19185,0,1,f +12663,20482,297,2,t +12663,20482,297,4,f +12663,20596pr02,4,1,f +12663,24144,0,1,f +12663,2420,71,2,f +12663,2432,72,1,f +12663,2540,1,1,f +12663,26145,9999,1,f +12663,2654,182,1,f +12663,2654,0,4,f +12663,2723,0,4,f +12663,2780,0,13,f +12663,2780,0,2,t +12663,3001,29,2,f +12663,30031,72,2,f +12663,30192,72,1,f +12663,3020,71,1,f +12663,3020,72,2,f +12663,3021,0,1,f +12663,3021,72,2,f +12663,3022,71,1,f +12663,3022,1,1,f +12663,3022,4,1,f +12663,3023,0,8,f +12663,30374,0,1,f +12663,30374,70,1,f +12663,30377,71,1,f +12663,30377,71,1,t +12663,3062b,71,2,f +12663,32000,4,2,f +12663,32039,0,3,f +12663,32054,71,6,f +12663,32062,0,2,f +12663,32123b,71,1,t +12663,32123b,71,2,f +12663,32316,72,3,f +12663,3626cpb1537,179,1,f +12663,3626cpr1613,0,1,f +12663,3626cpr1721,15,1,f +12663,3701,71,3,f +12663,3705,4,2,f +12663,3713,4,2,t +12663,3713,4,3,f +12663,3749,19,2,f +12663,3941,70,2,f +12663,3941,0,1,f +12663,4032a,71,2,f +12663,42446,0,1,f +12663,42446,0,1,t +12663,43710,0,1,f +12663,43711,0,1,f +12663,44309,0,3,f +12663,44728,71,4,f +12663,4697b,71,1,f +12663,4697b,71,1,t +12663,4733,72,1,f +12663,4740,0,1,f +12663,47456,1,1,f +12663,47456,4,1,f +12663,47457,4,1,f +12663,47457,1,1,f +12663,47458,0,2,f +12663,50950,0,2,f +12663,50950,4,1,f +12663,50950,1,1,f +12663,54200,0,2,f +12663,54200,47,1,f +12663,54200,47,1,t +12663,54200,0,1,t +12663,55981,297,1,f +12663,56145,0,2,f +12663,56145,4,1,f +12663,58090,0,1,f +12663,59900,46,2,f +12663,59900,4,1,f +12663,60478,72,1,f +12663,60483,72,2,f +12663,60849,0,1,f +12663,60849,0,1,t +12663,61409,14,2,f +12663,6141,36,1,t +12663,6141,71,1,t +12663,6141,71,5,f +12663,6141,47,1,t +12663,6141,36,4,f +12663,6141,182,1,t +12663,6141,182,6,f +12663,6141,47,2,f +12663,62462,71,2,f +12663,62462,179,4,f +12663,63868,0,2,f +12663,6628,0,2,f +12663,85975,297,4,f +12663,88072,72,1,f +12663,92280,0,2,f +12663,92593,0,2,f +12663,92593,72,2,f +12663,970c00,72,1,f +12663,970c95pb003,179,1,f +12663,970d29pb01,4,1,f +12663,973pb2285c01,4,1,f +12663,973pb2287c01,4,1,f +12663,973pr2922c01,72,1,f +12663,98397,71,1,f +12663,98721,179,1,f +12663,98721,179,1,t +12663,99207,0,4,f +12666,31622,1,1,f +12666,31624,47,1,f +12666,31625,1,1,f +12666,4537,14,1,f +12666,6292,0,1,f +12666,6413,14,1,f +12666,6515,4,1,f +12666,6517,4,1,f +12666,6521,2,1,f +12666,6521c01,1,1,f +12666,6522,7,1,f +12666,6523,1,1,f +12666,6524,14,1,f +12666,6525,14,1,f +12666,6526,14,1,f +12666,6527,14,1,f +12666,6527c01,14,1,f +12666,6529,4,1,f +12666,6530,14,1,f +12670,200,0,1,f +12670,202,0,1,f +12670,2340,0,4,f +12670,2362a,0,4,f +12670,2362a,1,2,f +12670,2362ap53,0,2,f +12670,2362ap54,0,2,f +12670,2401,0,2,f +12670,2412a,1,2,f +12670,2412a,0,4,f +12670,2419,1,2,f +12670,2419,0,3,f +12670,2428,0,1,f +12670,2431,0,6,f +12670,2431,1,3,f +12670,2432,0,4,f +12670,2436,1,2,f +12670,2440,0,1,f +12670,2445,1,1,f +12670,2446,15,2,f +12670,2446,0,1,f +12670,2447,36,2,f +12670,2447,36,1,t +12670,2447,0,1,f +12670,2450,1,2,f +12670,2452,1,2,f +12670,2466,1,4,f +12670,2466,36,8,f +12670,2467,1,4,f +12670,2468,0,4,f +12670,2468,36,2,f +12670,2507,36,1,f +12670,298c02,0,6,f +12670,3001,1,2,f +12670,3003,1,1,f +12670,3004,0,10,f +12670,3004,1,6,f +12670,3009,0,3,f +12670,3010,0,2,f +12670,3020,1,4,f +12670,3020,0,2,f +12670,3021,0,2,f +12670,3022,1,5,f +12670,3022,0,6,f +12670,3023,1,15,f +12670,3023,0,17,f +12670,3024,1,9,f +12670,3024,36,8,f +12670,3024,0,6,f +12670,3028,0,1,f +12670,3029,0,3,f +12670,3030,1,1,f +12670,3031,0,2,f +12670,3031,1,1,f +12670,3039,1,1,f +12670,3039,0,2,f +12670,3040b,0,4,f +12670,3062b,0,4,f +12670,3068b,0,5,f +12670,3069b,1,6,f +12670,3069b,0,7,f +12670,3176,0,3,f +12670,3298p53,0,3,f +12670,3460,0,4,f +12670,3475b,0,2,f +12670,3585,0,1,f +12670,3586,0,1,f +12670,3622,1,2,f +12670,3623,0,9,f +12670,3623,1,4,f +12670,3626apr0001,14,3,f +12670,3641,0,4,f +12670,3660,1,1,f +12670,3665,0,2,f +12670,3666,0,16,f +12670,3666,1,6,f +12670,3710,1,9,f +12670,3710,0,13,f +12670,3747a,0,1,f +12670,3788,0,1,f +12670,3794a,1,5,f +12670,3795,1,3,f +12670,3795,0,3,f +12670,3832,1,1,f +12670,3838,0,3,f +12670,3839b,0,1,f +12670,3839b,1,1,f +12670,3855,36,2,f +12670,3894,0,1,f +12670,3933a,0,1,f +12670,3934a,0,1,f +12670,3935,0,1,f +12670,3936,0,1,f +12670,3937,1,8,f +12670,3938,1,1,f +12670,3938,0,8,f +12670,3940b,0,13,f +12670,3941,0,1,f +12670,3941,1,2,f +12670,3957a,36,8,f +12670,3957a,1,2,f +12670,3957a,0,4,f +12670,4032a,0,2,f +12670,4033,1,2,f +12670,4162,0,1,f +12670,4213,0,1,f +12670,4275b,1,4,f +12670,4276b,1,3,f +12670,4276b,0,3,f +12670,4282,0,1,f +12670,4282,1,1,f +12670,4287,1,2,f +12670,4315,0,2,f +12670,4460a,1,2,f +12670,4475,1,1,f +12670,4477,1,5,f +12670,4504,1,1,f +12670,4589,36,2,f +12670,4590,0,9,f +12670,4595,0,2,f +12670,4598,1,3,f +12670,4600,0,2,f +12670,4623,0,4,f +12670,4624,15,4,f +12670,4625,1,2,f +12670,4730,0,1,f +12670,4740,0,2,f +12670,4740,1,4,f +12670,4740,36,2,f +12670,4854,1,2,f +12670,4856a,0,1,f +12670,4857,1,2,f +12670,4873,0,2,f +12670,6141,36,10,f +12670,6141,0,4,f +12670,73590c01a,0,2,f +12670,73983,1,4,f +12670,970c00,0,1,f +12670,970x026,15,2,f +12670,973p52c01,0,1,f +12670,973p6bc01,15,2,f +12672,3626bpr0922,0,1,f +12672,44360,15,1,f +12672,970x194,15,1,f +12672,973pr1344c01,15,1,f +12673,30133,4,2,t +12673,30133,4,1,f +12673,3626cpr1145,14,1,f +12673,3899,4,1,f +12673,3899,4,1,t +12673,41334,72,1,t +12673,41334,72,1,f +12673,970c00,0,1,f +12673,973pr2196c01,72,1,f +12676,11618,26,1,f +12676,11618,26,1,t +12676,14716,15,2,f +12676,14769,30,1,f +12676,14769,323,1,f +12676,14769,14,1,f +12676,15254,15,1,f +12676,15573,297,5,f +12676,15573,19,1,f +12676,15712,297,1,f +12676,15745,45,4,f +12676,18674,70,1,f +12676,18980,30,2,f +12676,20482,47,3,f +12676,20482,47,1,t +12676,22667,4,1,t +12676,22667,4,1,f +12676,22888,2,2,f +12676,23988,297,1,f +12676,23988,297,1,t +12676,2412b,15,1,f +12676,24207pr0001,322,1,f +12676,2423,85,1,f +12676,2431,30,8,f +12676,2453b,15,2,f +12676,24875pr0001,29,1,f +12676,25129,9999,1,t +12676,3003,70,2,f +12676,3004,70,1,f +12676,3005,15,2,f +12676,3005,70,1,f +12676,3020,5,2,f +12676,3021,0,1,f +12676,3021,15,1,f +12676,3022,27,1,f +12676,3023,27,7,f +12676,3023,70,2,f +12676,3023,30,4,f +12676,3031,30,2,f +12676,3031,2,1,f +12676,30367c,297,2,f +12676,3040b,15,2,f +12676,30613,15,3,f +12676,3068b,1,1,f +12676,3068b,29,1,f +12676,3068bpr0138,15,1,f +12676,3068bpr980,15,1,f +12676,3245b,15,1,f +12676,33172,25,1,f +12676,33183,10,3,f +12676,33183,10,1,t +12676,33291,10,4,f +12676,33291,191,3,f +12676,33291,31,4,f +12676,33291,10,1,t +12676,33291,5,2,t +12676,33291,191,1,t +12676,33291,5,3,f +12676,33291,31,2,t +12676,3623,15,1,f +12676,3623,0,1,f +12676,3666,30,1,f +12676,3678b,70,1,f +12676,3678b,30,4,f +12676,3710,70,2,f +12676,3710,15,1,f +12676,3710,30,2,f +12676,3741,2,1,f +12676,3741,2,1,t +12676,3794b,15,2,f +12676,3795,30,1,f +12676,3852b,322,1,f +12676,3942c,297,1,f +12676,4032a,15,2,f +12676,4032a,19,1,f +12676,4282,15,2,f +12676,44728,15,2,f +12676,48336,297,1,f +12676,54200,297,2,f +12676,54200,85,3,f +12676,54200,322,1,t +12676,54200,322,2,f +12676,54200,85,1,t +12676,54200,297,1,t +12676,59900,297,2,f +12676,60474,15,1,f +12676,60478,15,1,f +12676,6141,297,2,f +12676,6141,27,2,t +12676,6141,25,1,t +12676,6141,45,1,t +12676,6141,25,1,f +12676,6141,27,6,f +12676,6141,297,1,t +12676,6141,45,2,f +12676,61485,15,1,f +12676,6256,29,1,f +12676,6259pr0001,15,2,f +12676,6266,0,1,t +12676,6266,0,1,f +12676,6266,15,2,t +12676,6266,15,2,f +12676,63868,71,2,f +12676,64644,297,1,f +12676,85080,297,2,f +12676,85984,70,2,f +12676,85984,29,1,f +12676,87079,30,1,f +12676,87580,297,1,f +12676,87580,19,1,f +12676,87580,15,6,f +12676,88292,19,1,f +12676,88293,297,2,f +12676,90370pr0005,0,1,f +12676,90370pr0005,0,1,t +12676,92438,2,1,f +12676,92593,15,2,f +12676,93160,15,1,f +12676,93160,15,1,t +12676,98138,46,1,t +12676,98138,46,4,f +12676,98379pr0002,297,1,f +12676,98379pr0002,297,1,t +12678,27b,15,19,f +12678,27b,4,19,f +12679,2420,4,2,f +12679,2431,4,2,f +12679,2445,72,1,f +12679,3004,4,3,f +12679,3005,4,17,f +12679,3008,4,2,f +12679,3020,4,3,f +12679,3020,14,1,f +12679,3022,4,1,f +12679,3023,0,2,f +12679,3023,4,5,f +12679,3024,47,1,t +12679,3024,47,9,f +12679,3029,4,1,f +12679,3032,19,2,f +12679,3065,47,17,f +12679,3069b,4,1,f +12679,3069b,4,1,t +12679,3070b,4,3,f +12679,3070b,4,1,t +12679,3622,4,2,f +12679,3623,4,1,f +12679,3659,4,4,f +12679,3710,4,2,f +12679,4070,4,2,f +12679,45677,4,2,f +12679,4600,0,2,f +12679,50944pr0001,0,1,t +12679,50944pr0001,0,4,f +12679,50951,0,1,t +12679,50951,0,4,f +12679,54200,4,9,f +12679,54200,4,1,t +12679,6112,4,4,f +12679,61409,0,2,f +12679,6141,47,2,f +12679,6141,36,2,f +12679,6141,36,1,t +12679,6141,0,1,f +12679,6141,0,1,t +12679,6141,47,1,t +12679,64644,0,1,f +12679,64644,0,1,t +12679,93274,4,1,f +12681,10830pat0001,0,1,f +12681,3001,1,1,f +12681,3001,14,1,f +12681,3001,4,1,f +12681,3003,14,1,f +12681,3003,4,1,f +12681,3003,27,1,f +12681,3003pr0001,14,1,f +12681,3004,14,2,f +12681,3004,27,2,f +12681,3004,15,1,f +12681,3004,70,1,f +12681,3004,5,2,f +12681,3004,73,2,f +12681,3010,2,2,f +12681,3021,4,2,f +12681,3032,2,1,f +12681,30385,33,1,f +12681,3040b,4,2,f +12681,3065,47,1,f +12681,3065,36,1,f +12681,3622,1,1,f +12681,3622,25,1,f +12681,3622,0,1,f +12681,3626bpr0387,14,1,f +12681,3626bpr0579,14,1,f +12681,3626bpr0895,15,1,f +12681,3700,15,2,f +12681,3749,19,2,f +12681,3836,70,1,f +12681,3837,72,1,f +12681,3844,71,1,f +12681,3878,0,1,f +12681,3899,47,1,f +12681,3957a,15,1,f +12681,3962b,0,1,f +12681,4019,71,2,f +12681,4349,72,1,f +12681,4522,0,1,f +12681,4530,0,1,f +12681,4727,2,1,f +12681,6124,42,1,f +12681,62810,484,1,f +12681,970c00,15,2,f +12681,973c02,4,1,f +12681,973c07,1,1,f +12686,3020,72,1,f +12686,3022,27,1,f +12686,3022,0,2,f +12686,3023,320,4,f +12686,3023,15,1,f +12686,3024,320,1,t +12686,3024,0,2,f +12686,3024,0,1,t +12686,3024,72,1,t +12686,3024,320,2,f +12686,3024,72,2,f +12686,30361pr0013,15,1,f +12686,30362,15,2,f +12686,30367cpr0024,320,1,f +12686,30602,40,1,f +12686,3070b,15,1,f +12686,3070b,15,1,t +12686,3176,320,1,f +12686,3710,71,1,f +12686,3794b,15,4,f +12686,3794b,27,1,f +12686,3795,15,1,f +12686,3795,0,2,f +12686,3941,0,1,f +12686,4070,320,2,f +12686,4286,320,2,f +12686,52107,0,2,f +12686,54200,72,1,t +12686,54200,72,2,f +12686,59900,71,2,f +12686,60477,15,2,f +12686,60477,320,2,f +12686,6091,15,1,f +12686,6141,179,1,t +12686,6141,179,1,f +12686,6179pr0003b,0,1,f +12686,74698,0,1,f +12686,75937,0,1,f +12686,87580,0,1,f +12686,98107pr0004,321,2,f +12686,98138pr0011,15,1,t +12686,98138pr0011,15,1,f +12686,99781,71,6,f +12687,2736,7,1,f +12687,2780,0,17,f +12687,2905,4,2,f +12687,32013,135,2,f +12687,32015,7,6,f +12687,32017,8,6,f +12687,32056,7,2,f +12687,32062,0,4,f +12687,32063,0,6,f +12687,32073,7,2,f +12687,32123b,7,3,f +12687,32138,0,2,f +12687,32140,0,2,f +12687,32140,4,1,f +12687,32184,7,2,f +12687,32269,7,1,f +12687,32278,0,2,f +12687,32310,148,2,f +12687,32310,4,1,f +12687,32316,0,4,f +12687,32316,4,2,f +12687,32348,0,2,f +12687,32449,7,2,f +12687,32523,0,2,f +12687,32523,8,1,f +12687,32525,0,4,f +12687,32526,0,2,f +12687,32526,8,1,f +12687,32526,4,1,f +12687,32527,148,1,f +12687,32528,148,1,f +12687,32534,148,1,f +12687,32535,148,1,f +12687,32556,7,16,f +12687,32557,0,2,f +12687,32580,179,2,f +12687,3673,7,9,f +12687,3705,0,6,f +12687,3706,0,6,f +12687,3713,7,14,f +12687,3749,19,2,f +12687,40490,0,4,f +12687,40490,8,1,f +12687,41669,42,2,f +12687,41669,36,2,f +12687,41669,4,2,f +12687,41677,7,8,f +12687,41677,0,2,f +12687,41678,0,1,f +12687,41752,8,2,f +12687,42003,0,2,f +12687,4274,7,2,f +12687,43857,4,1,f +12687,44292,7,4,f +12687,44294,7,1,f +12687,44308,0,4,f +12687,4519,7,8,f +12687,6536,7,1,f +12687,6538b,0,4,f +12687,6558,0,10,f +12687,6628,0,3,f +12687,6632,7,2,f +12687,6632,0,2,f +12687,71509,0,3,t +12687,71509,0,1,f +12687,76537,14,1,f +12687,rb00170,0,2,t +12687,rb00170,0,2,f +12691,10197,72,2,f +12691,10247,0,2,f +12691,11214,72,3,f +12691,11478,0,2,f +12691,11946,1,1,f +12691,11947,1,1,f +12691,15458,15,6,f +12691,15462,28,1,f +12691,16153,9999,1,t +12691,16863,9999,1,t +12691,2780,0,5,t +12691,2780,0,230,f +12691,3023,0,2,f +12691,3068b,0,2,f +12691,32002,19,15,f +12691,32002,19,1,t +12691,32009,15,2,f +12691,32013,4,2,f +12691,32013,15,10,f +12691,32014,71,4,f +12691,32015,0,2,f +12691,32015,15,2,f +12691,32016,15,3,f +12691,32016,0,2,f +12691,32034,71,4,f +12691,32034,15,8,f +12691,32039,71,1,f +12691,32054,4,5,f +12691,32054,0,34,f +12691,32056,0,8,f +12691,32062,4,30,f +12691,32063,15,12,f +12691,32072,0,7,f +12691,32073,71,1,t +12691,32073,71,24,f +12691,32123b,71,1,t +12691,32123b,71,31,f +12691,32124,0,1,f +12691,32138,0,2,f +12691,32140,15,18,f +12691,32140,0,11,f +12691,32184,71,3,f +12691,32187,71,4,f +12691,32198,19,3,f +12691,32200,15,3,f +12691,32200,0,1,f +12691,32270,0,6,f +12691,32278,15,10,f +12691,32278,0,8,f +12691,32278,1,4,f +12691,32293,0,1,f +12691,32316,15,19,f +12691,32316,0,5,f +12691,32449,0,12,f +12691,32523,15,22,f +12691,32524,15,19,f +12691,32524,71,3,f +12691,32525,1,1,f +12691,32525,15,13,f +12691,32525,0,2,f +12691,32525,71,1,f +12691,32526,1,6,f +12691,32526,0,1,f +12691,32526,15,4,f +12691,32556,19,8,f +12691,33299a,0,5,f +12691,3648b,72,2,f +12691,3673,71,1,t +12691,3673,71,9,f +12691,3705,0,14,f +12691,3706,0,1,t +12691,3706,0,7,f +12691,3707,0,3,f +12691,3707,0,1,t +12691,3708,0,6,f +12691,3713,71,25,f +12691,3713,71,1,t +12691,3713,4,1,t +12691,3713,4,4,f +12691,3737,0,2,f +12691,3749,19,8,f +12691,3942c,15,2,f +12691,40490,0,4,f +12691,40490,1,2,f +12691,40490,15,17,f +12691,40490,71,4,f +12691,41239,15,4,f +12691,41239,0,1,f +12691,41677,1,4,f +12691,41677,15,4,f +12691,42003,0,18,f +12691,42610,71,2,f +12691,4274,71,9,f +12691,4274,71,1,t +12691,43093,1,54,f +12691,43857,1,8,f +12691,44294,71,1,t +12691,44294,71,13,f +12691,4519,71,37,f +12691,48989,71,1,f +12691,55615,71,2,f +12691,55981,71,4,f +12691,57585,71,2,f +12691,58090,0,4,f +12691,58119,71,1,f +12691,58120,71,1,f +12691,58176,35,1,f +12691,58176,36,2,f +12691,59426,72,1,f +12691,59443,71,25,f +12691,59443,0,18,f +12691,60483,71,12,f +12691,60484,0,5,f +12691,60485,71,6,f +12691,6141,47,4,f +12691,6141,47,1,t +12691,61903,71,3,f +12691,62462,4,2,f +12691,62531,15,13,f +12691,64179,71,2,f +12691,64391,15,3,f +12691,64393,15,2,f +12691,64681,15,2,f +12691,64683,15,3,f +12691,64782,15,3,f +12691,6536,0,20,f +12691,6536,15,14,f +12691,6538b,19,2,f +12691,6539,4,2,f +12691,6542b,72,5,f +12691,6553,0,3,f +12691,6553,71,2,f +12691,6558,1,97,f +12691,6572,15,2,f +12691,6587,28,3,f +12691,6589,19,1,t +12691,6589,19,8,f +12691,6628,0,2,f +12691,6629,15,2,f +12691,6629,1,1,f +12691,6632,1,4,f +12691,6632,15,12,f +12691,6641,4,2,f +12691,87080,15,8,f +12691,87082,0,23,f +12691,87083,72,3,f +12691,87086,15,8,f +12691,87408,0,5,f +12691,87994,0,1,f +12691,92409,0,2,f +12691,92693,71,5,f +12691,92907,0,1,f +12691,94925,71,13,f +12691,99012,72,6,f +12692,2346,0,4,f +12692,2431,1,2,f +12692,2730,4,2,f +12692,2780,0,10,f +12692,2825,7,2,f +12692,2854,7,2,f +12692,2983,7,1,f +12692,3001,4,2,f +12692,3004,4,4,f +12692,3023,1,6,f +12692,3036,1,1,f +12692,3040b,4,4,f +12692,32001,1,2,f +12692,32124,1,2,f +12692,3460,1,2,f +12692,3482,14,10,f +12692,3634,0,2,f +12692,3647,7,3,f +12692,3648a,7,2,f +12692,3649,7,2,f +12692,3650,7,2,f +12692,3651,7,4,f +12692,3673,7,10,f +12692,3700,4,4,f +12692,3701,4,4,f +12692,3702,4,4,f +12692,3703,4,4,f +12692,3705,0,2,f +12692,3706,0,2,f +12692,3707,0,2,f +12692,3708,0,1,f +12692,3709,1,4,f +12692,3710,1,2,f +12692,3711a,0,24,f +12692,3713,7,18,f +12692,3736,7,1,f +12692,3737,0,2,f +12692,3738,1,4,f +12692,3743,7,2,f +12692,3749,7,6,f +12692,3867,10,1,f +12692,3894,4,4,f +12692,3895,4,4,f +12692,3941,4,2,f +12692,4019,7,2,f +12692,4107400,47,1,f +12692,4185,7,2,f +12692,4477,1,4,f +12692,4519,0,2,f +12692,56823,0,1,f +12692,6538a,7,2,f +12692,6553,14,2,f +12692,6575,7,2,f +12692,6588,14,1,f +12692,6589,7,2,f +12692,70496,0,1,f +12692,71082,47,1,f +12692,73090a,0,1,f +12692,85544,4,5,f +12692,85546,14,2,f +12692,bin01,4,1,f +12692,rb00169,0,8,f +12696,3626bpr0325,14,1,f +12696,3626bpr0892,14,1,f +12696,3626cpr0388,14,1,f +12696,3833,14,1,f +12696,3844,71,1,f +12696,3847,179,1,f +12696,3852b,191,1,f +12696,3962b,0,1,f +12696,62696,308,1,f +12696,970c00,272,1,f +12696,970c00,1,1,f +12696,970c00pr0155,71,1,f +12696,973pb1144c01,25,1,f +12696,973pb1145c01,15,1,f +12696,973pb1146c01,71,1,f +12697,2780,0,10,f +12697,2825,4,2,f +12697,2994,15,4,f +12697,32002,8,2,f +12697,32009,4,2,f +12697,32013,0,2,f +12697,32014,0,2,f +12697,32039,4,1,f +12697,32039,7,2,f +12697,32062,0,2,f +12697,32065,0,2,f +12697,32073,0,3,f +12697,32138,15,1,f +12697,32138,0,2,f +12697,32140,0,2,f +12697,32175,7,2,f +12697,32184,0,1,f +12697,32184,4,1,f +12697,32249,4,2,f +12697,32250,4,6,f +12697,32278,0,1,f +12697,32291,4,2,f +12697,32316,4,4,f +12697,32348,0,2,f +12697,32448,7,1,f +12697,3705,0,4,f +12697,3706,0,1,f +12697,3707,0,4,f +12697,3713,7,2,t +12697,3713,7,9,f +12697,3737,0,2,f +12697,3749,7,2,f +12697,4519,0,4,f +12697,6536,4,1,f +12697,6536,7,2,f +12697,6538b,0,4,f +12697,6558,0,4,f +12697,6578,0,4,f +12697,6589,7,1,f +12697,6632,4,4,f +12697,78c02,4,1,f +12697,rb00169,0,4,f +12698,10314,19,5,f +12698,11203,19,2,f +12698,11208,71,4,f +12698,11209,0,4,f +12698,11211,19,4,f +12698,11408pr0008c01,78,1,f +12698,11816pr0002,78,1,f +12698,14014pr0005,78,1,f +12698,14769,85,5,f +12698,15284pr0001,226,1,f +12698,15573,0,1,f +12698,18646,19,4,f +12698,18819pr0001,19,1,f +12698,18892,0,2,f +12698,22667,27,1,t +12698,22667,27,1,f +12698,22888,27,1,f +12698,2343,47,1,f +12698,2412b,71,4,f +12698,2432,4,4,f +12698,25386,19,2,f +12698,2540,71,1,f +12698,26490,320,1,f +12698,3001,322,1,f +12698,3002,15,1,f +12698,3003,19,1,f +12698,3003,5,2,f +12698,3009,19,4,f +12698,3010,0,1,f +12698,3020,322,2,f +12698,3020,15,3,f +12698,3021,19,1,f +12698,3023,19,8,f +12698,3023,182,3,f +12698,3032,0,1,f +12698,30367c,4,2,f +12698,3039,0,1,f +12698,3039pr0020,15,1,f +12698,3062b,0,1,f +12698,3062b,14,1,f +12698,3062b,4,1,f +12698,3062b,85,11,f +12698,3068b,15,4,f +12698,3069b,322,4,f +12698,3069bpr0100,2,1,f +12698,3070b,322,1,t +12698,3070b,322,2,f +12698,33078,4,3,f +12698,33078,4,2,t +12698,33291,4,3,f +12698,33291,4,2,t +12698,3660,19,10,f +12698,3666,322,1,f +12698,3666,0,2,f +12698,3700,0,1,f +12698,3710,15,1,f +12698,3710,322,3,f +12698,3795,19,4,f +12698,3795,322,2,f +12698,3829c01,4,1,f +12698,3941,4,4,f +12698,41129stk01,9999,1,f +12698,4274,71,1,f +12698,44126,15,1,f +12698,4599b,71,3,f +12698,4599b,71,2,t +12698,4740,0,1,f +12698,4865b,322,4,f +12698,48729b,72,1,f +12698,48729b,72,1,t +12698,50950,322,2,f +12698,59349,47,1,f +12698,59900,33,1,f +12698,6020,71,1,f +12698,60474,322,1,f +12698,60897,71,1,f +12698,6091,322,4,f +12698,6091,4,6,f +12698,6091,19,4,f +12698,6091,5,6,f +12698,6112,4,2,f +12698,6141,42,2,t +12698,6141,57,3,f +12698,6141,57,1,t +12698,6141,15,5,f +12698,6141,42,7,f +12698,6141,15,1,t +12698,62810,0,1,f +12698,64453,47,2,f +12698,85984,85,1,f +12698,87079,15,1,f +12698,87580,322,4,f +12698,88293,19,8,f +12698,91988,5,4,f +12698,92456pr0109c01,78,1,f +12698,92593,0,2,f +12698,92820pr0013c01,85,1,f +12698,93095,15,2,f +12698,93273,19,2,f +12698,98282,0,4,f +12698,99206,71,8,f +12698,99207,4,2,f +12698,99780,15,1,f +12699,2339,15,1,f +12699,251,0,1,f +12699,3003,14,6,f +12699,3004,6,1,f +12699,3004,15,21,f +12699,3004,4,2,f +12699,3005,15,16,f +12699,3005,14,6,f +12699,3005,4,4,f +12699,3008,15,7,f +12699,3009,15,7,f +12699,3010,15,10,f +12699,3020,15,1,f +12699,3020,4,1,f +12699,3022,0,1,f +12699,3023,4,7,f +12699,3023,0,4,f +12699,3023,15,7,f +12699,3023,14,4,f +12699,3033,4,1,f +12699,3033,15,1,f +12699,3035,4,1,f +12699,3037,4,18,f +12699,3039,4,4,f +12699,3068b,15,4,f +12699,3069b,6,1,f +12699,3069b,15,5,f +12699,3069b,0,1,f +12699,3070b,14,4,f +12699,3081cc01,1,5,f +12699,3137c01,0,2,f +12699,3185,15,5,f +12699,3186,15,1,f +12699,3187,15,1,f +12699,3297,4,4,f +12699,3298,4,4,f +12699,3299,4,4,f +12699,3455,4,1,f +12699,3460,15,2,f +12699,3460,7,1,f +12699,3470,2,1,f +12699,3581,15,4,f +12699,3582,1,2,f +12699,3622,15,13,f +12699,3623,15,2,f +12699,3626apr0001,14,2,f +12699,3641,0,4,f +12699,3644,1,2,f +12699,3666,4,3,f +12699,3679,7,1,f +12699,3710,15,4,f +12699,3741,2,3,f +12699,3742,4,3,t +12699,3742,4,9,f +12699,3811,2,1,f +12699,3832,4,1,f +12699,3833,0,2,f +12699,3836,6,1,f +12699,3837,8,1,f +12699,3852a,6,1,f +12699,3861b,1,1,f +12699,3901,0,1,f +12699,3941,14,4,f +12699,3959,4,2,f +12699,4032a,4,2,f +12699,4070,4,4,f +12699,4070,15,1,f +12699,4079,4,1,f +12699,4081a,0,4,f +12699,4083,7,4,f +12699,4085b,15,1,f +12699,4150,14,2,f +12699,4162,4,2,f +12699,4477,15,2,f +12699,4491a,0,1,f +12699,4491a,14,1,f +12699,4493c01pb03,6,1,f +12699,4504,0,1,t +12699,4507,0,1,t +12699,4530,4,1,f +12699,4587,0,1,f +12699,4599a,7,1,f +12699,4623,15,2,f +12699,4626,7,3,f +12699,75998pr0007,15,1,f +12699,970c00,1,1,f +12699,970c00,7,1,f +12699,973p12c01,4,1,f +12699,973pb0201c01,15,1,f +12703,11090,0,1,f +12703,11203,29,1,f +12703,11211,15,1,f +12703,11213,15,1,f +12703,11610,19,2,f +12703,11816pr0003,78,1,f +12703,15068,15,3,f +12703,15470,29,1,t +12703,15470,70,1,f +12703,15470,70,1,t +12703,15470,29,1,f +12703,19725,42,1,f +12703,22888,27,1,f +12703,2412b,85,4,f +12703,2432,322,1,f +12703,2450,85,6,f +12703,2456,15,1,f +12703,3001,0,6,f +12703,3004,322,2,f +12703,30089,0,1,f +12703,3022,322,5,f +12703,30222,42,1,f +12703,3023,15,3,f +12703,3031,0,3,f +12703,30385,42,2,f +12703,30385,45,1,f +12703,30385,35,1,f +12703,3068b,15,1,f +12703,3069bpr0100,2,1,f +12703,32064a,0,6,f +12703,32073,71,3,f +12703,32123b,14,1,t +12703,32123b,14,3,f +12703,3245b,15,2,f +12703,33291,4,2,f +12703,33291,4,1,t +12703,3700,15,3,f +12703,3701,15,3,f +12703,3713,4,1,t +12703,3713,4,1,f +12703,3795,322,1,f +12703,3941,0,1,f +12703,3942c,15,1,f +12703,3943b,0,1,f +12703,4274,71,1,t +12703,4274,71,12,f +12703,4345b,15,1,f +12703,4346,47,1,f +12703,44661,15,3,f +12703,4740,0,3,f +12703,48336,15,2,f +12703,51739,0,3,f +12703,55013,72,3,f +12703,57585,71,1,f +12703,59426,72,1,f +12703,59443,0,3,f +12703,59900,35,1,f +12703,59900,45,1,f +12703,59900,42,1,f +12703,61252,71,2,f +12703,6141,35,4,f +12703,6141,45,8,f +12703,6141,42,2,t +12703,6141,45,2,t +12703,6141,42,17,f +12703,6141,41,1,t +12703,6141,41,4,f +12703,6141,35,1,t +12703,61485,0,1,f +12703,6183,15,2,f +12703,61903,71,3,f +12703,6259,41,2,f +12703,63864,322,6,f +12703,6553,71,3,f +12703,87079,15,1,f +12703,87087,15,2,f +12703,87580,85,2,f +12703,87620,0,6,f +12703,87994,15,2,f +12703,87994,15,1,t +12703,89523,85,1,f +12703,92256,70,1,f +12703,92456pr0107c01,78,1,f +12703,92818pr0012c01,322,1,f +12703,93273,322,3,f +12703,98138,47,1,t +12703,98138,47,1,f +12703,98560,15,4,f +12704,2780,0,2,f +12704,32062,0,2,f +12704,32174,1,2,f +12704,32174,73,2,f +12704,32270,7,1,f +12704,32573,1,1,f +12704,32576,1,2,f +12704,32579,7,1,f +12704,3713,7,1,f +12704,3749,19,1,f +12704,41670,73,2,f +12704,43093,1,1,f +12704,44137,73,1,f +12704,44809,1,2,f +12704,44810,73,1,f +12704,44811,179,1,f +12704,44812,179,1,f +12704,4519,7,1,f +12706,190380,89,1,f +12706,70412,7,1,f +12706,9771,89,1,f +12707,2780,0,11,f +12707,2780,0,3,t +12707,32002,72,6,f +12707,32002,72,2,t +12707,32034,4,2,f +12707,32039,71,2,f +12707,32062,4,15,f +12707,32073,71,2,f +12707,32123b,71,1,t +12707,32123b,71,5,f +12707,32138,0,2,f +12707,32173,4,2,f +12707,32174,72,5,f +12707,32174,4,10,f +12707,32175,0,2,f +12707,32184,4,2,f +12707,32184,71,2,f +12707,32184,0,2,f +12707,32249,72,4,f +12707,32271,4,2,f +12707,32348,72,1,f +12707,32475,72,4,f +12707,32506,179,1,f +12707,32523,72,2,f +12707,32524,72,2,f +12707,3705,0,4,f +12707,3708,0,1,f +12707,3713,71,3,f +12707,3713,71,2,t +12707,41669,135,8,f +12707,41677,72,4,f +12707,41678,71,2,f +12707,42003,4,1,f +12707,4274,71,1,f +12707,4274,71,1,t +12707,43093,1,9,f +12707,44936,148,2,f +12707,4519,71,23,f +12707,45749,72,4,f +12707,47296,72,1,f +12707,47298,148,2,f +12707,47312,72,1,f +12707,47313,57,1,f +12707,47326pat01,72,4,f +12707,47328,72,4,f +12707,47330,0,3,f +12707,47337,135,1,f +12707,49423,179,1,f +12707,50898,4,2,f +12707,50898,71,4,f +12707,50923,72,3,f +12707,50926,179,1,f +12707,53551,135,9,f +12707,53562pat0005,0,6,f +12707,53566,179,6,f +12707,53584,148,2,f +12707,53585,0,4,f +12707,53586,135,4,f +12707,55013,72,4,f +12707,57523c01,135,1,f +12707,57525,4,9,f +12707,57527,135,2,f +12707,57528,135,1,f +12707,57539,135,2,f +12707,57562,135,2,f +12707,57577,179,1,f +12707,57701,4,1,f +12707,58176,36,2,f +12707,58176,33,2,f +12707,58230,148,1,f +12707,59426,72,1,f +12707,59577,179,1,f +12707,6536,4,4,f +12707,6536,72,1,f +12707,6538b,36,3,f +12707,6558,0,4,f +12707,6632,71,1,f +12707,6632,0,6,f +12709,2447,0,2,t +12709,2447,0,1,f +12709,3626cpr0932,78,1,f +12709,61182,15,1,f +12709,970c00,71,1,f +12709,973pr1355c01,0,1,f +12710,251,0,2,f +12710,3679,7,2,f +12710,3830,7,2,f +12710,3830,15,2,f +12710,3831,7,2,f +12710,3831,15,2,f +12710,3937,15,2,f +12710,3937,7,2,f +12710,3938,15,2,f +12710,3938,7,2,f +12710,4275b,0,2,f +12710,4276b,0,6,f +12710,4504,0,2,f +12710,4531,0,2,f +12711,3626bpb0723,10,1,f +12711,40233,0,1,f +12711,970c36pb02,10,1,f +12711,973pb1179c01,10,1,f +12712,2340,15,4,f +12712,2342,15,1,f +12712,2348b,41,4,f +12712,2349a,15,4,f +12712,2374,7,1,f +12712,2412a,7,4,f +12712,2420,1,2,f +12712,2431,15,2,f +12712,2432,0,1,f +12712,2437,41,2,f +12712,2446,0,1,f +12712,2447,41,1,t +12712,2447,41,1,f +12712,2555,0,1,f +12712,2584,4,1,f +12712,2585,0,1,f +12712,2610,14,3,f +12712,298c02,0,3,f +12712,298c02,0,1,t +12712,3002,15,1,f +12712,3004,15,4,f +12712,3005,15,2,f +12712,3008,4,2,f +12712,3008,15,2,f +12712,3009,15,5,f +12712,3009,4,4,f +12712,3009p18,15,2,f +12712,3010,4,2,f +12712,3010,15,2,f +12712,3023,15,1,f +12712,3023,1,1,f +12712,3023,4,3,f +12712,3024,34,1,f +12712,3024,33,2,f +12712,3024,15,1,f +12712,3024,36,1,f +12712,3033,7,2,f +12712,3036,4,1,f +12712,3039,15,2,f +12712,3039p34,15,1,f +12712,3062b,14,1,f +12712,3069b,15,2,f +12712,3069bp02,7,1,f +12712,3069bp25,1,1,f +12712,3297,15,1,f +12712,3460,15,1,f +12712,3622,15,3,f +12712,3623,15,4,f +12712,3624,15,3,f +12712,3626apr0001,14,3,f +12712,3660,4,2,f +12712,3660,15,1,f +12712,3665,15,4,f +12712,3666,4,1,f +12712,3679,7,1,f +12712,3680,15,1,f +12712,3700,15,6,f +12712,3710,4,2,f +12712,3710,15,4,f +12712,3794a,4,1,f +12712,3794a,15,1,f +12712,3795,7,2,f +12712,3823,41,2,f +12712,3829c01,1,2,f +12712,3832,15,2,f +12712,3838,14,1,f +12712,3937,4,2,f +12712,3938,4,2,f +12712,3959,15,1,f +12712,3962b,0,1,f +12712,4021stk01,9999,1,t +12712,4081b,7,1,f +12712,4085c,15,2,f +12712,4213,15,2,f +12712,4289,15,1,f +12712,4349,4,1,f +12712,4460a,15,2,f +12712,4533,4,1,f +12712,4589,33,1,f +12712,4599a,14,1,f +12712,4623,15,1,f +12712,4625,15,6,f +12712,4740,7,1,f +12712,4865a,15,6,f +12712,4865p18,15,2,f +12712,56823,0,1,f +12712,6140,4,3,f +12712,6141,14,8,f +12712,6141,33,4,f +12712,6141,33,1,t +12712,6141,46,4,f +12712,73090b,4,2,f +12712,92410,15,1,f +12712,970c00,0,3,f +12712,973pb0079c01,0,3,f +12712,bfloat3c01,0,1,f +12713,2343,47,1,f +12713,2377,15,2,f +12713,2412b,0,4,f +12713,2431,8,5,f +12713,2456,0,1,f +12713,2868b,0,1,f +12713,2871a,7,2,f +12713,2877,2,6,f +12713,2878c01,7,6,f +12713,2920,0,3,f +12713,2922,0,1,f +12713,3001,15,4,f +12713,3001,0,1,f +12713,3004,15,13,f +12713,3004,0,6,f +12713,3004,2,4,f +12713,3005,0,2,f +12713,3007,0,1,f +12713,3008,2,4,f +12713,3009,2,8,f +12713,3009,15,6,f +12713,3010,2,2,f +12713,3010,0,2,f +12713,3010,7,4,f +12713,30136,8,16,f +12713,3020,7,9,f +12713,3021,4,1,f +12713,3022,0,1,f +12713,3023,15,3,f +12713,3023,36,2,f +12713,3023,1,4,f +12713,3028,8,1,f +12713,30283,7,4,f +12713,3031,7,2,f +12713,3032,8,2,f +12713,30363pb007,8,1,f +12713,3037,15,4,f +12713,3040b,15,10,f +12713,30602,0,1,f +12713,30608,0,1,f +12713,3066,40,2,f +12713,3068b,1,1,f +12713,3069bpb029,15,1,f +12713,3069bpr0090,8,2,f +12713,3070b,36,1,t +12713,3070b,36,2,f +12713,3070bp70,7,1,t +12713,3070bp70,7,1,f +12713,32083,15,7,f +12713,3245b,15,8,f +12713,3298,4,1,f +12713,3455,15,2,f +12713,3622,15,4,f +12713,3624,320,1,f +12713,3626bpb0190,14,1,f +12713,3626bpb0191,14,1,f +12713,3626bpr0314,14,1,f +12713,3665,0,2,f +12713,3666,8,6,f +12713,3666,15,2,f +12713,3710,1,3,f +12713,3710,0,1,f +12713,3794a,15,3,f +12713,3795,8,3,f +12713,3795,15,3,f +12713,3899,4,2,f +12713,3958,15,1,f +12713,4022,7,3,f +12713,4025,0,3,f +12713,40251,0,1,f +12713,4032a,0,2,f +12713,4070,2,2,f +12713,4079,4,9,f +12713,4093a,8,1,f +12713,4162,8,4,f +12713,41747,15,1,f +12713,41748,15,1,f +12713,42022,15,2,f +12713,4215b,40,1,f +12713,44126,15,1,f +12713,44300,7,1,f +12713,44301a,0,1,f +12713,44302a,0,1,f +12713,4449,0,1,f +12713,4449,7,1,f +12713,4449,6,1,f +12713,44572,15,2,f +12713,44822,15,2,f +12713,45677,15,2,f +12713,45705,40,1,f +12713,45706pb01,15,1,f +12713,46309,46,1,f +12713,4862,40,2,f +12713,4864b,40,28,f +12713,5306bc021,0,1,f +12713,5306c01,8,1,f +12713,6035,15,1,f +12713,6111,15,8,f +12713,6112,7,2,f +12713,6584,8,1,f +12713,6636,15,2,f +12713,6636,8,4,f +12713,70358,0,1,f +12713,70931,0,1,f +12713,73092,0,3,f +12713,74747,8,16,f +12713,970c00,15,1,f +12713,970c00,272,1,f +12713,970c00,0,1,f +12713,973pr1164c01,272,1,f +12713,973pr1169c01,73,1,f +12713,973pr1184c01,0,1,f +12714,12825,72,2,f +12714,2412b,0,2,f +12714,2412b,25,2,f +12714,2877,71,1,f +12714,3002,71,1,f +12714,30162,72,1,f +12714,3022,0,2,f +12714,3023,0,1,f +12714,3024,25,2,f +12714,3024,25,1,t +12714,30304,72,1,f +12714,30370ps3,15,1,f +12714,3069b,15,3,f +12714,32028,71,1,f +12714,3298pr0031,15,1,f +12714,3623,71,2,f +12714,3626cpr0631,78,1,f +12714,3710,71,1,f +12714,3794a,15,4,f +12714,3794a,71,1,f +12714,3795,72,1,f +12714,3795,0,2,f +12714,3941,0,1,f +12714,4070,15,2,f +12714,41769,71,1,f +12714,41770,71,1,f +12714,43722,15,1,f +12714,43723,15,1,f +12714,44728,72,1,f +12714,48336,15,4,f +12714,54200,15,2,f +12714,54200,15,1,t +12714,54200,40,2,f +12714,54200,40,1,t +12714,54383,15,1,f +12714,54384,15,1,f +12714,60470b,71,4,f +12714,6141,72,1,t +12714,6141,72,2,f +12714,6179pr0007b,0,1,f +12714,63965,71,2,f +12714,64567,71,1,t +12714,64567,71,2,f +12714,74698,0,1,f +12714,75937,0,1,f +12714,87580,0,1,f +12714,970c00pr0476,25,1,f +12714,973pr2289c01,25,1,f +12714,98107pr0007,15,2,f +12717,11618,31,1,f +12717,11618,31,1,t +12717,17437,70,1,f +12717,2817,0,1,f +12717,3003,71,1,f +12717,30136,31,3,f +12717,3020,322,1,f +12717,3023,2,2,f +12717,3023,30,3,f +12717,3032,322,1,f +12717,30357,19,1,f +12717,3040b,2,2,f +12717,3040b,71,1,f +12717,32474,191,1,f +12717,33291,5,3,f +12717,33291,5,1,t +12717,3660,71,1,f +12717,3710,19,2,f +12717,3795,31,1,f +12717,60481,323,2,f +12717,6141,19,1,t +12717,6141,19,2,f +12717,64648,179,1,f +12717,87079,30,1,f +12717,87580,19,2,f +12717,98138,41,1,t +12717,98138,41,3,f +12720,23323c01,8,2,f +12720,23335c01,8,2,f +12720,2780,0,66,f +12720,32000,8,2,f +12720,32002,8,6,f +12720,32007,8,12,f +12720,32013,15,4,f +12720,32013,0,4,f +12720,32018,8,2,f +12720,32054,0,8,f +12720,32062,0,5,f +12720,32073,0,20,f +12720,32123b,7,6,f +12720,32138,15,4,f +12720,32138,0,4,f +12720,32140,15,2,f +12720,32140,0,2,f +12720,32190,15,1,f +12720,32190,0,1,f +12720,32191,15,1,f +12720,32191,0,1,f +12720,32249,14,2,f +12720,32249,25,2,f +12720,32250,25,2,f +12720,32250,14,2,f +12720,32270,7,4,f +12720,32271,8,4,f +12720,32278,8,2,f +12720,32291,8,8,f +12720,32316,0,2,f +12720,32316,15,2,f +12720,32348,8,20,f +12720,32524,15,2,f +12720,32524,0,3,f +12720,32524,8,2,f +12720,32525,0,6,f +12720,32525,15,6,f +12720,32526,8,4,f +12720,32527,15,1,f +12720,32527,0,1,f +12720,32528,0,1,f +12720,32528,15,1,f +12720,32530,8,8,f +12720,32551,14,1,f +12720,32551,25,1,f +12720,32551,15,4,f +12720,32553,8,4,f +12720,32556,7,4,f +12720,32557,8,2,f +12720,32567,25,2,f +12720,32572,14,2,f +12720,3648b,7,4,f +12720,3673,7,20,f +12720,3700,8,2,f +12720,3705,0,2,f +12720,3706,0,8,f +12720,3713,7,34,f +12720,3749,7,46,f +12720,4019,7,4,f +12720,40490,8,8,f +12720,41753,8,2,f +12720,4274,7,6,f +12720,4519,0,4,f +12720,6141,14,3,f +12720,6141,15,3,f +12720,6141,36,6,f +12720,6538b,0,2,f +12720,6538b,15,4,f +12720,6542a,8,4,f +12720,6558,0,8,f +12720,6587,8,4,f +12720,6589,7,4,f +12720,6628,0,6,f +12720,680c01,0,4,f +12720,rb00168,0,8,f +12722,2377,0,2,f +12722,2412b,7,1,f +12722,2431,8,2,f +12722,2432,7,2,f +12722,2437,40,2,f +12722,2486,15,1,f +12722,2540,15,1,f +12722,2555,7,3,f +12722,3004,7,2,f +12722,3005,0,2,f +12722,3010,0,1,f +12722,3020,8,1,f +12722,3020,0,2,f +12722,3021,0,1,f +12722,3022,8,3,f +12722,3023,0,2,f +12722,3024,36,4,f +12722,3024,0,2,f +12722,30304,8,1,f +12722,3032,0,1,f +12722,3034,0,1,f +12722,3037,0,1,f +12722,30414,0,1,f +12722,30608,0,1,f +12722,3069b,36,2,f +12722,3069b,33,1,f +12722,3069bp02,7,1,f +12722,3069bp80,15,1,f +12722,3070b,46,4,f +12722,3070bp70,7,2,f +12722,3623,0,2,f +12722,3626bpb0191,14,1,f +12722,3626bpr0411,14,1,f +12722,3660,7,3,f +12722,3665,0,2,f +12722,3710,15,2,f +12722,3710,0,7,f +12722,3788,0,4,f +12722,3794a,7,2,f +12722,3821,0,2,f +12722,3822,0,2,f +12722,3829c01,1,2,f +12722,3957a,7,1,f +12722,3962b,8,1,f +12722,4085c,8,4,f +12722,4212b,15,1,f +12722,4349,8,1,f +12722,4360,8,1,f +12722,43722,15,1,f +12722,43723,15,1,f +12722,44728,7,1,f +12722,4477,8,2,f +12722,4485,0,1,f +12722,45677,0,2,f +12722,4589,15,3,f +12722,4599a,15,1,f +12722,4600,7,2,f +12722,4623,7,1,f +12722,4735,7,1,f +12722,4740,7,1,f +12722,4862,40,2,f +12722,4864b,0,4,f +12722,4871,0,2,f +12722,6014b,7,4,f +12722,6014b,15,4,f +12722,6015,0,8,f +12722,6016,8,1,f +12722,6019,15,2,f +12722,6141,36,1,t +12722,6141,36,5,f +12722,6141,46,3,f +12722,6141,46,1,t +12722,6157,0,2,f +12722,6546,8,2,f +12722,6556,0,1,f +12722,6636,0,2,f +12722,7032stk01,9999,1,t +12722,970c00,0,2,f +12722,973pb0354c01,272,1,f +12722,973pr1184c01,0,1,f +12723,11198,73,4,f +12723,11248c01,70,1,f +12723,11249,297,1,f +12723,12651,14,1,f +12723,13355,0,1,f +12723,13358,0,1,f +12723,15516,70,1,f +12723,15994,484,1,f +12723,16236,191,1,f +12723,16304,73,2,f +12723,16304,4,1,f +12723,16385,15,1,f +12723,16598,71,2,f +12723,16600,179,3,f +12723,16685,4,14,f +12723,16686,70,1,f +12723,17178,0,1,f +12723,17478,4,1,f +12723,17540,15,2,f +12723,17578,15,1,f +12723,18018,179,1,f +12723,2301,1,2,f +12723,3011,1,4,f +12723,31042,179,1,f +12723,31070,70,1,f +12723,31110,27,2,f +12723,31171,179,1,f +12723,3437,191,2,f +12723,3437,1,10,f +12723,3437,73,9,f +12723,40666,15,2,f +12723,4196,71,1,f +12723,4196,10,1,f +12723,4672,72,4,f +12723,51703,182,1,f +12723,51704,1,1,f +12723,51708,70,2,f +12723,54043,322,2,f +12723,61649,73,2,f +12723,6474,71,2,f +12723,75115pr0021,4,1,f +12723,76371,1,6,f +12723,76371,4,2,f +12723,76371,73,16,f +12723,87084,14,2,f +12723,92094,73,1,f +12723,98218,15,2,f +12723,98224,1,7,f +12723,98233,70,2,f +12723,98252,27,4,f +12724,11203,72,4,f +12724,11211,19,6,f +12724,11215,71,4,f +12724,11476,71,2,f +12724,11593pr0001,321,1,f +12724,11598,52,2,f +12724,11599,35,1,f +12724,11601,320,2,f +12724,11833,71,1,f +12724,12993,326,1,f +12724,13608,179,1,f +12724,13754,45,2,f +12724,13757pr0001,326,1,f +12724,13758pr0001,326,1,f +12724,15207,321,2,f +12724,2357,72,4,f +12724,2357,15,6,f +12724,2412b,272,21,f +12724,2412b,320,4,f +12724,2419,72,4,f +12724,2420,0,14,f +12724,2431,15,2,f +12724,2432,0,2,f +12724,2447,47,2,f +12724,2447,47,2,t +12724,2450,15,8,f +12724,2456,0,5,f +12724,2460,0,4,f +12724,2476a,71,4,f +12724,2540,0,16,f +12724,2654,47,3,f +12724,2780,0,54,f +12724,298c02,0,1,t +12724,298c02,0,4,f +12724,298c02,15,1,t +12724,298c02,15,1,f +12724,298c02,71,1,f +12724,298c02,71,1,t +12724,30000,72,1,f +12724,3001,71,2,f +12724,3003,15,2,f +12724,3010,272,6,f +12724,3010,4,2,f +12724,30126,42,1,f +12724,30126,42,1,t +12724,30136,72,14,f +12724,30162,72,2,f +12724,3020,320,3,f +12724,3020,272,16,f +12724,3021,15,2,f +12724,3022,27,2,f +12724,3023,321,22,f +12724,30237b,0,1,f +12724,3031,72,1,f +12724,3032,15,3,f +12724,3034,0,2,f +12724,30350b,41,1,f +12724,30355,15,1,f +12724,30356,15,1,f +12724,3037,15,4,f +12724,30383,14,4,f +12724,30385,42,1,f +12724,3040b,321,16,f +12724,3040b,27,4,f +12724,30414,71,10,f +12724,3045,15,2,f +12724,3049b,27,9,f +12724,3049d,0,4,f +12724,30565,272,2,f +12724,3062b,321,10,f +12724,3069bpr0086,71,1,f +12724,3069bpr0101,71,2,f +12724,32013,71,2,f +12724,32018,72,6,f +12724,32062,4,2,f +12724,32064b,15,2,f +12724,32123b,71,2,t +12724,32123b,71,5,f +12724,32192,72,8,f +12724,32316,72,1,f +12724,32324,71,2,f +12724,32523,15,4,f +12724,32523,0,4,f +12724,32524,71,4,f +12724,32530,0,5,f +12724,32532,71,2,f +12724,32555,0,2,f +12724,32557,71,2,f +12724,3297,15,2,f +12724,3299,4,1,f +12724,3460,15,2,f +12724,3622,72,4,f +12724,3623,320,2,f +12724,3623,4,2,f +12724,3626cpr1157,14,1,f +12724,3626cpr1230,14,1,f +12724,3639,72,3,f +12724,3640,27,3,f +12724,3666,72,4,f +12724,3679,71,2,f +12724,3680,0,2,f +12724,3700,15,2,f +12724,3701,0,4,f +12724,3702,0,6,f +12724,3703,15,2,f +12724,3706,0,2,f +12724,3709,0,4,f +12724,3710,15,4,f +12724,3713,4,8,f +12724,3713,4,2,t +12724,3738,72,2,f +12724,3749,19,10,f +12724,3794b,72,4,f +12724,3795,28,4,f +12724,3795,71,19,f +12724,3832,15,3,f +12724,3894,15,5,f +12724,3941,27,1,f +12724,3957a,42,2,f +12724,3957a,42,1,t +12724,3958,15,1,f +12724,4032a,15,3,f +12724,4032a,0,2,f +12724,4032a,72,1,f +12724,40490,0,2,f +12724,4070,19,2,f +12724,4081b,19,2,f +12724,41769,272,1,f +12724,41770,272,1,f +12724,41862,71,2,f +12724,42060,15,1,f +12724,42061,15,1,f +12724,42446,72,1,f +12724,4274,1,4,f +12724,4274,71,2,f +12724,4274,71,1,t +12724,4274,1,1,t +12724,4286,15,6,f +12724,43093,1,17,f +12724,4360,0,1,f +12724,43723,27,2,f +12724,43857,0,1,f +12724,43898,15,1,f +12724,44294,71,2,f +12724,44302a,14,4,f +12724,4460b,72,2,f +12724,44728,72,8,f +12724,44728,4,3,f +12724,4477,0,2,f +12724,4477,72,2,f +12724,4589,46,6,f +12724,4589,36,2,f +12724,4597,15,1,f +12724,4598,0,1,f +12724,47397,15,1,f +12724,47398,15,1,f +12724,4740,15,3,f +12724,4740,45,4,f +12724,4740,57,3,f +12724,4740,71,4,f +12724,47457,72,6,f +12724,47905,72,1,f +12724,48336,15,7,f +12724,4871,15,2,f +12724,48729b,320,1,t +12724,48729b,320,2,f +12724,50943,72,4,f +12724,50950,15,2,f +12724,50950,321,16,f +12724,50950,27,2,f +12724,53451,27,8,f +12724,53451,0,1,t +12724,53451,27,1,t +12724,53451,0,24,f +12724,53992,0,4,f +12724,54200,15,1,t +12724,54200,15,4,f +12724,54383,15,1,f +12724,54383,272,1,f +12724,54384,272,1,f +12724,54384,15,1,f +12724,55013,72,1,f +12724,55236,27,2,f +12724,55981,15,2,f +12724,56145,15,12,f +12724,57028c01,71,2,f +12724,57539pat0002,47,2,f +12724,57792,15,1,f +12724,57796,72,2,f +12724,58176,36,2,f +12724,59349,47,1,f +12724,59426,72,8,f +12724,60032,320,5,f +12724,60208,272,7,f +12724,60474,320,2,f +12724,60478,72,2,f +12724,60594,15,6,f +12724,6091,15,6,f +12724,6111,15,1,f +12724,61184,71,2,f +12724,61409,15,14,f +12724,6141,36,5,t +12724,6141,34,1,f +12724,6141,42,5,f +12724,6141,71,2,t +12724,6141,34,1,t +12724,6141,71,8,f +12724,6141,45,1,f +12724,6141,45,1,t +12724,6141,42,1,t +12724,6141,36,16,f +12724,61485,15,2,f +12724,61485,0,1,f +12724,6179,15,2,f +12724,6191,0,2,f +12724,62462,0,4,f +12724,63864,15,2,f +12724,63864,72,2,f +12724,63868,0,2,f +12724,6541,71,2,f +12724,6558,1,16,f +12724,6583,0,4,f +12724,6587,28,5,f +12724,6629,72,4,f +12724,6636,272,5,f +12724,70709stk01,9999,1,t +12724,75937,0,2,f +12724,85984,72,4,f +12724,87079,15,2,f +12724,87081,72,2,f +12724,87081,0,1,f +12724,87083,72,6,f +12724,87087,0,4,f +12724,87407,71,2,f +12724,87580,28,7,f +12724,87580,321,6,f +12724,87609,15,4,f +12724,87619,15,1,f +12724,87781,321,2,f +12724,88930,321,6,f +12724,89523,72,1,f +12724,90192,320,2,f +12724,92280,15,2,f +12724,92946,15,2,f +12724,92947,15,8,f +12724,93273,15,9,f +12724,94531,47,1,f +12724,95188,15,4,f +12724,95199,72,4,f +12724,96874,25,1,t +12724,970c00pr0458,326,2,f +12724,970c00pr0461,321,1,f +12724,970c00pr0464,321,2,f +12724,973pr2256c01,326,1,f +12724,973pr2258c01,71,1,f +12724,973pr2296c01,71,2,f +12724,973pr2389c01,326,1,f +12724,98100,15,12,f +12724,98102,47,1,f +12724,98138,46,4,f +12724,98138,46,1,t +12724,98313,320,24,f +12724,99206,71,4,f +12724,99207,71,6,f +12724,99780,0,4,f +12724,99781,71,4,f +12725,12825,71,1,f +12725,2412b,320,3,f +12725,2412b,15,5,f +12725,2415,71,1,f +12725,2420,0,6,f +12725,2431,15,8,f +12725,2450,320,2,f +12725,2654,71,3,f +12725,2780,0,1,t +12725,2780,0,8,f +12725,2877,72,12,f +12725,3002,71,3,f +12725,3003,4,1,f +12725,30031,0,1,f +12725,3004,320,2,f +12725,3020,320,1,f +12725,3020,72,3,f +12725,3021,4,14,f +12725,3022,70,2,f +12725,3022,15,3,f +12725,3023,28,21,f +12725,3030,72,1,f +12725,3034,71,2,f +12725,3035,4,2,f +12725,30355,320,1,f +12725,30356,320,1,f +12725,30362,72,2,f +12725,30372pr0001,40,1,f +12725,30374,41,2,f +12725,30383,72,2,f +12725,3039,72,2,f +12725,3040b,71,2,f +12725,30541,4,2,f +12725,30553,72,2,f +12725,3062b,47,2,f +12725,3068b,320,11,f +12725,3068b,25,1,f +12725,3068bpr0213,72,1,f +12725,3069b,25,4,f +12725,3069bpr0070,0,1,f +12725,3069bpr0086,71,2,f +12725,32000,0,4,f +12725,32062,4,2,f +12725,3460,72,2,f +12725,3464,72,1,f +12725,3623,0,6,f +12725,3626cpr0902,78,1,f +12725,3626cpr0999,78,1,f +12725,3666,320,6,f +12725,3710,320,1,f +12725,3710,15,3,f +12725,3747b,70,3,f +12725,3794b,72,1,f +12725,3795,4,9,f +12725,3832,72,1,f +12725,3958,72,1,f +12725,4032a,72,1,f +12725,4081b,4,2,f +12725,4081b,0,1,f +12725,4085c,71,2,f +12725,4150,72,1,f +12725,4150,15,2,f +12725,4162,320,4,f +12725,41769,4,4,f +12725,41770,4,4,f +12725,42060pr0003,320,1,f +12725,42061pr0003,320,1,f +12725,4274,71,1,t +12725,4274,71,2,f +12725,4282,4,3,f +12725,4287,70,2,f +12725,43722,25,1,f +12725,43723,25,1,f +12725,43898pr0003,72,1,f +12725,44302a,72,1,f +12725,44728,71,1,f +12725,4589,0,2,f +12725,4595,0,1,f +12725,4599b,0,1,f +12725,4697b,71,1,f +12725,4697b,71,1,t +12725,4740,45,4,f +12725,4740,4,4,f +12725,4740pr0005,72,1,f +12725,48336,4,5,f +12725,50304,15,1,f +12725,50305,15,1,f +12725,50950,320,2,f +12725,51739,320,6,f +12725,54200,25,1,t +12725,54200,320,8,f +12725,54200,320,1,t +12725,54200,72,2,f +12725,54200,34,1,t +12725,54200,34,1,f +12725,54200,72,1,t +12725,54200,25,1,f +12725,54383,320,1,f +12725,54384,320,1,f +12725,56902,71,4,f +12725,58176,35,4,f +12725,6019,15,4,f +12725,60470a,71,1,f +12725,60470a,0,1,f +12725,60478,15,2,f +12725,60481,15,2,f +12725,60483,0,2,f +12725,6091,320,10,f +12725,6091,15,2,f +12725,6112,72,2,f +12725,61184,71,4,f +12725,6141,0,2,t +12725,6141,297,7,f +12725,6141,34,2,f +12725,6141,0,13,f +12725,6141,34,1,t +12725,6191,320,4,f +12725,62462,15,8,f +12725,62462,320,2,f +12725,62696,308,1,f +12725,63868,71,1,f +12725,63868,0,2,f +12725,63965,0,4,f +12725,64567,80,1,f +12725,64567,0,1,f +12725,6541,72,2,f +12725,6558,1,2,f +12725,72454,72,2,f +12725,73983,72,4,f +12725,75937,0,2,f +12725,85984,15,2,f +12725,87079,4,2,f +12725,87083,72,4,f +12725,87087,72,2,f +12725,90194,15,1,f +12725,92081,0,1,f +12725,92582,71,1,f +12725,970c00pr0355,378,1,f +12725,970c00pr0356,15,1,f +12725,973pr2085c01,378,1,f +12725,973pr2086c01,15,1,f +12725,99781,71,1,f +12726,2356,2,3,f +12726,2356,71,1,f +12726,2412b,71,5,f +12726,2412b,15,3,f +12726,2456,4,6,f +12726,3001,0,15,f +12726,3001,15,32,f +12726,3001,71,8,f +12726,3001,1,6,f +12726,3001,4,1,f +12726,3001,14,10,f +12726,3001,25,5,f +12726,3002,25,1,f +12726,3002,0,6,f +12726,3002,14,1,f +12726,3003,25,1,f +12726,3003,0,5,f +12726,3003,33,9,f +12726,3003,4,17,f +12726,3003,71,7,f +12726,3003,70,1,f +12726,3003,14,4,f +12726,3003,1,2,f +12726,3003,15,5,f +12726,3004,70,3,f +12726,3004,15,28,f +12726,3004,25,2,f +12726,3004,0,12,f +12726,3004,1,2,f +12726,3004,14,4,f +12726,3004,73,1,f +12726,3005,14,4,f +12726,3005,15,2,f +12726,3005,33,4,f +12726,3005pe1,15,6,f +12726,3006,4,1,f +12726,3007,4,5,f +12726,3008,14,1,f +12726,3009,1,1,f +12726,3010,15,15,f +12726,3010,2,1,f +12726,3010,4,1,f +12726,3010,14,2,f +12726,3010,1,2,f +12726,3010,0,2,f +12726,3010,71,2,f +12726,3020,25,1,f +12726,3020,71,1,f +12726,3020,1,1,f +12726,3020,0,1,f +12726,3021,71,1,f +12726,3021,25,1,f +12726,3021,2,1,f +12726,3021,1,2,f +12726,3022,1,3,f +12726,3022,15,1,f +12726,3022,2,1,f +12726,3023,2,1,f +12726,3023,73,2,f +12726,3023,71,2,f +12726,3023,25,2,f +12726,3023,1,2,f +12726,3023,47,5,f +12726,3023,15,3,f +12726,3024,46,2,f +12726,3024,73,2,f +12726,30285,4,6,f +12726,30285,15,4,f +12726,3031,4,1,f +12726,3031,25,1,f +12726,30363,15,3,f +12726,3037,4,8,f +12726,3037,14,1,f +12726,3037,1,1,f +12726,3038,71,1,f +12726,3039,1,3,f +12726,3039,72,1,f +12726,3039,4,14,f +12726,3039,14,2,f +12726,3039,47,1,f +12726,3039,15,3,f +12726,30391,0,6,f +12726,3040b,25,2,f +12726,3040b,72,2,f +12726,3040b,2,4,f +12726,3040b,15,3,f +12726,3040b,1,2,f +12726,3040b,4,1,f +12726,3041,4,2,f +12726,3043,4,1,f +12726,3043,2,1,f +12726,3044b,2,1,f +12726,3044b,4,1,f +12726,3062b,47,2,f +12726,3062b,4,4,f +12726,30648,0,4,f +12726,3065,33,2,f +12726,3068b,2,1,f +12726,3069b,73,2,f +12726,3297,0,9,f +12726,3298,25,1,f +12726,3298,4,5,f +12726,3403c01,71,1,f +12726,3622,1,2,f +12726,3622,14,1,f +12726,3622,71,2,f +12726,3622,15,12,f +12726,3660,15,5,f +12726,3660,71,4,f +12726,3660,2,2,f +12726,3660,25,1,f +12726,3660,1,6,f +12726,3660,14,2,f +12726,3665,27,2,f +12726,3665,4,2,f +12726,3684,1,1,f +12726,3684,2,2,f +12726,3710,0,1,f +12726,3710,15,2,f +12726,3747b,1,1,f +12726,3832,15,1,f +12726,3832,72,2,f +12726,3937,71,1,f +12726,3938,15,1,f +12726,3957a,71,1,f +12726,4070,4,2,f +12726,4081b,14,1,f +12726,4130,14,1,f +12726,4130,15,1,f +12726,4131,0,2,f +12726,4132,14,4,f +12726,4132,15,4,f +12726,4133,72,8,f +12726,4201,2,2,f +12726,4202,71,3,f +12726,42022,14,2,f +12726,4286,25,4,f +12726,4286,14,1,f +12726,4286,2,2,f +12726,44126,4,1,f +12726,4733,71,1,f +12726,4864b,47,2,f +12726,6091,71,4,f +12726,6212,71,1,f +12726,6215,14,1,f +12726,6238,47,1,f +12726,6249,71,5,f +12726,71128,383,2,f +12729,2412b,0,2,f +12729,2412b,80,4,f +12729,2420,15,2,f +12729,2420,1,2,f +12729,2421,0,1,f +12729,2436,71,4,f +12729,2460,72,1,f +12729,2479,0,1,f +12729,2654,4,1,f +12729,3001,1,1,f +12729,3003,1,1,f +12729,3003,14,1,f +12729,3004,15,2,f +12729,3004,1,3,f +12729,3005,25,2,f +12729,3010,25,1,f +12729,3010,71,2,f +12729,3010,1,1,f +12729,30136,71,2,f +12729,3020,15,2,f +12729,3020,25,5,f +12729,3020,1,6,f +12729,3021,71,2,f +12729,3022,72,4,f +12729,3022,1,2,f +12729,3023,0,5,f +12729,3023,1,9,f +12729,3024,36,7,f +12729,3024,1,4,f +12729,3034,72,2,f +12729,30367b,14,1,f +12729,3039,72,1,f +12729,30414,15,2,f +12729,3062b,71,6,f +12729,3065,40,2,f +12729,3066,40,1,f +12729,3069b,14,3,f +12729,3069b,71,4,f +12729,3070b,71,1,t +12729,3070b,71,8,f +12729,3070b,25,4,f +12729,3070b,25,1,t +12729,3176,71,1,f +12729,3460,0,4,f +12729,3622,72,2,f +12729,3666,72,2,f +12729,3673,71,1,t +12729,3673,71,1,f +12729,3710,1,4,f +12729,3710,71,2,f +12729,3710,25,3,f +12729,3747b,72,1,f +12729,3794b,15,2,f +12729,3794b,72,3,f +12729,3795,1,4,f +12729,3795,71,6,f +12729,3795,0,1,f +12729,4081b,15,2,f +12729,4081b,71,6,f +12729,41769,1,1,f +12729,41770,1,1,f +12729,43722,15,2,f +12729,43722,14,1,f +12729,43723,14,1,f +12729,43723,15,2,f +12729,44302a,15,1,f +12729,44567a,71,1,f +12729,44728,14,1,f +12729,4477,15,2,f +12729,4488,71,6,f +12729,4589,71,4,f +12729,4600,0,3,f +12729,4623,72,1,f +12729,4624,71,4,f +12729,47457,15,1,f +12729,50745,15,2,f +12729,50950,15,4,f +12729,50950,1,2,f +12729,52038,15,1,f +12729,54200,25,1,t +12729,54200,40,4,f +12729,54200,46,2,f +12729,54200,46,1,t +12729,54200,40,1,t +12729,54200,1,1,t +12729,54200,25,2,f +12729,54200,1,8,f +12729,54200,15,1,t +12729,54200,15,2,f +12729,6014b,71,6,f +12729,6019,0,2,f +12729,60478,72,2,f +12729,60700,0,6,f +12729,6087,1,1,f +12729,6140,0,2,f +12729,61409,14,2,f +12729,6141,182,8,f +12729,6141,71,7,f +12729,6141,182,1,t +12729,6141,71,1,t +12729,61678,14,3,f +12729,85984,71,4,f +12729,85984,14,4,f +12729,87079,1,2,f +12729,87087,1,4,f +12729,87087,0,2,f +12729,87414,0,4,f +12731,3647,7,4,f +12731,3648a,7,2,f +12731,3649,7,1,f +12731,4019,7,2,f +12734,3001,14,14,f +12734,3002,14,8,f +12734,3003,14,12,f +12734,3004,14,8,f +12734,3005,14,4,f +12734,3006,14,1,f +12734,3007,14,1,f +12734,3008,14,2,f +12734,3009,14,4,f +12734,3010,14,4,f +12734,3622,14,4,f +12736,3001,0,2,f +12736,3001,4,8,f +12736,3001,15,8,f +12736,3001,14,8,f +12736,3001,1,8,f +12736,3002,15,6,f +12736,3002,0,2,f +12736,3002,4,6,f +12736,3002,1,2,f +12736,3002,14,4,f +12736,3003,1,6,f +12736,3003,4,6,f +12736,3003,0,2,f +12736,3003,15,6,f +12736,3003,14,4,f +12736,3004,14,32,f +12736,3004,1,30,f +12736,3004,0,22,f +12736,3004,4,34,f +12736,3004,15,34,f +12736,3004,47,8,f +12736,3005,4,22,f +12736,3005,47,2,f +12736,3005,1,20,f +12736,3005,0,16,f +12736,3005,14,20,f +12736,3005,15,22,f +12736,3008,15,2,f +12736,3008,4,2,f +12736,3008,1,2,f +12736,3009,15,6,f +12736,3009,14,4,f +12736,3009,4,6,f +12736,3009,1,4,f +12736,3010,47,3,f +12736,3010,15,14,f +12736,3010,4,16,f +12736,3010,1,8,f +12736,3010,14,9,f +12736,3010,0,2,f +12736,3020,4,2,f +12736,3020,1,2,f +12736,3021,1,2,f +12736,3021,4,2,f +12736,3022,4,2,f +12736,3030,1,1,f +12736,3031,4,1,f +12736,3032,1,1,f +12736,3034,4,2,f +12736,3034,1,4,f +12736,3035,4,1,f +12736,3039,4,6,f +12736,3039,14,4,f +12736,3039,47,2,f +12736,3081cc01,14,4,f +12736,3137c01,0,2,f +12736,3149c01,4,1,f +12736,3183c,4,1,f +12736,3184,4,1,f +12736,3297,4,6,f +12736,3298,4,6,f +12736,3299,4,3,f +12736,3300,4,2,f +12736,3307,4,2,f +12736,3403c01,4,1,f +12736,3460,4,2,f +12736,3471,2,1,f +12736,3483,0,4,f +12736,3581,4,6,f +12736,3582,14,4,f +12736,3622,14,10,f +12736,3622,4,12,f +12736,3622,1,11,f +12736,3622,15,12,f +12736,3633,14,4,f +12736,3641,0,4,f +12736,3644,14,2,f +12736,3659,4,2,f +12736,3660,14,4,f +12736,3660,4,6,f +12736,3710,1,4,f +12736,3710,4,4,f +12736,3741,2,4,f +12736,3742,14,1,t +12736,3742,4,3,f +12736,3742,15,3,f +12736,3742,14,3,f +12736,3742,15,1,t +12736,3742,4,1,t +12736,3747b,4,2,f +12736,3823,47,1,f +12736,3832,1,2,f +12736,3853,14,4,f +12736,3854,4,8,f +12736,3856,2,8,f +12736,3857,2,1,f +12736,3861b,14,2,f +12736,4207,14,1,f +12736,7039,4,4,f +12736,7049b,0,2,f +12737,15083pr0004,71,1,f +12737,30374,0,1,f +12737,3626cpr1437,71,1,f +12737,87747,179,2,f +12737,92690,71,2,f +12737,970c00pr0675,71,1,f +12737,973pr2688c01,71,1,f +12737,98138,41,2,f +12738,608p03,7,1,f +12738,6099p05,7,1,f +12740,3001,15,8,f +12740,3001,14,8,f +12740,3001,4,8,f +12740,3001,0,2,f +12740,3001,1,8,f +12740,3002,14,4,f +12740,3002,0,2,f +12740,3002,1,2,f +12740,3002,4,6,f +12740,3002,15,6,f +12740,3003,1,6,f +12740,3003,14,6,f +12740,3003,15,6,f +12740,3003,0,4,f +12740,3003,4,3,f +12740,3004,14,38,f +12740,3004,4,42,f +12740,3004,15,44,f +12740,3004,1,36,f +12740,3004,47,6,f +12740,3004,0,28,f +12740,3005,14,20,f +12740,3005,4,22,f +12740,3005,1,20,f +12740,3005,15,30,f +12740,3005,0,16,f +12740,3005,47,2,f +12740,3008,1,2,f +12740,3008,15,2,f +12740,3008,4,2,f +12740,3009,4,6,f +12740,3009,14,4,f +12740,3009,15,6,f +12740,3009,1,4,f +12740,3010,1,8,f +12740,3010,4,16,f +12740,3010,14,9,f +12740,3010,0,2,f +12740,3010,47,3,f +12740,3010,15,14,f +12740,3020,1,2,f +12740,3020,4,2,f +12740,3021,1,2,f +12740,3021,4,2,f +12740,3022,4,2,f +12740,3030,1,1,f +12740,3031,4,1,f +12740,3032,1,1,f +12740,3034,4,2,f +12740,3034,1,4,f +12740,3035,4,1,f +12740,3039,47,2,f +12740,3039,4,6,f +12740,3039,14,4,f +12740,3081cc01,14,4,f +12740,3137c01,0,2,f +12740,3149c01,4,1,f +12740,3183a,4,1,f +12740,3184,4,1,f +12740,3297,4,6,f +12740,3298,4,6,f +12740,3299,4,3,f +12740,3300,4,2,f +12740,3307,4,2,f +12740,3403c01,4,1,f +12740,3460,4,2,f +12740,3471,2,1,f +12740,3483,0,4,f +12740,3581,4,6,f +12740,3582,14,4,f +12740,3622,4,12,f +12740,3622,1,11,f +12740,3622,14,10,f +12740,3622,15,12,f +12740,3622,0,5,f +12740,3625,0,1,f +12740,3633,14,4,f +12740,3641,0,4,f +12740,3644,14,2,f +12740,3659,4,2,f +12740,3660,14,4,f +12740,3660,4,6,f +12740,3710,4,4,f +12740,3710,1,4,f +12740,3741,2,4,f +12740,3742,14,1,t +12740,3742,15,1,t +12740,3742,4,3,f +12740,3742,14,3,f +12740,3742,15,3,f +12740,3742,4,1,t +12740,3747b,4,2,f +12740,3823,47,1,f +12740,3832,1,2,f +12740,3853,14,4,f +12740,3854,4,8,f +12740,3856,2,8,f +12740,3857,2,1,f +12740,3861b,14,2,f +12740,3901,6,1,f +12740,4207,14,1,f +12740,7039,4,4,f +12740,7049,0,2,f +12740,970c00,15,1,f +12740,970c00,4,1,f +12740,973c07,1,1,f +12740,973c18,0,1,f +12741,3003,4,2,f +12741,3004,14,6,f +12741,3004,4,6,f +12741,3004,0,1,f +12741,3005,4,2,f +12741,3010,4,10,f +12741,3020,7,5,f +12741,3020,4,10,f +12741,3021,4,12,f +12741,3021,7,1,f +12741,3021,0,1,f +12741,3022,4,4,f +12741,3022,14,6,f +12741,3022,0,2,f +12741,3023,0,4,f +12741,3023,7,15,f +12741,3023,4,17,f +12741,3024,7,6,f +12741,3024,4,4,f +12741,3024,47,5,f +12741,3029,4,1,f +12741,3030,4,1,f +12741,3034,4,2,f +12741,3034,7,2,f +12741,3035,4,1,f +12741,3037,4,1,f +12741,3040a,0,2,f +12741,3040a,4,6,f +12741,3062a,4,1,f +12741,3062a,7,3,f +12741,3069a,4,2,f +12741,3139,0,2,f +12741,3149c01,4,1,f +12741,3298,4,2,f +12741,3460,7,5,f +12741,3460,4,11,f +12741,3464,4,2,f +12741,3482,7,2,f +12741,3634,0,2,f +12741,3647,7,4,f +12741,3648a,7,1,f +12741,3649,7,4,f +12741,3650a,7,2,f +12741,3651,7,2,f +12741,3665,4,8,f +12741,3666,4,6,f +12741,3673,7,10,f +12741,3679,7,6,f +12741,3680,4,6,f +12741,3700,4,15,f +12741,3701,4,11,f +12741,3702,4,8,f +12741,3704,0,1,f +12741,3705,0,2,f +12741,3706,0,9,f +12741,3707,0,3,f +12741,3709,4,3,f +12741,3710,0,3,f +12741,3710,7,3,f +12741,3710,4,20,f +12741,3713,7,15,f +12741,3738,4,5,f +12741,3739,7,2,f +12741,3740,0,2,f +12741,3743,7,2,f +12741,8,4,2,f +12741,9244,7,1,f +12742,298c02,0,6,f +12742,298c03,1,2,f +12742,3001,7,2,f +12742,3003,7,4,f +12742,3004,7,6,f +12742,3010p42,7,4,f +12742,3020,7,7,f +12742,3021,7,2,f +12742,3022,7,10,f +12742,3023,7,24,f +12742,3023,0,4,f +12742,3024,34,4,f +12742,3024,36,4,f +12742,3030,7,1,f +12742,3032,7,1,f +12742,3033,7,1,f +12742,3034,7,2,f +12742,3037,7,4,f +12742,3039p32,7,2,f +12742,3068b,7,6,f +12742,3068bp08,7,4,f +12742,3069b,7,2,f +12742,3069bp06,7,4,f +12742,3069bp25,7,2,f +12742,3298,7,2,f +12742,3460,7,6,f +12742,3475b,0,4,f +12742,3482,0,6,f +12742,3622,7,4,f +12742,3626apr0001,14,4,f +12742,3634,0,6,f +12742,3639,7,2,f +12742,3640,7,2,f +12742,3660,7,2,f +12742,3673,7,6,f +12742,3700,7,14,f +12742,3701,7,6,f +12742,3709,7,4,f +12742,3710,7,2,f +12742,3749,7,6,f +12742,3794a,7,5,f +12742,3795,7,8,f +12742,3829c01,7,2,f +12742,3832,7,1,f +12742,3838,0,1,f +12742,3838,14,1,f +12742,3838,4,1,f +12742,3842b,15,1,f +12742,3842b,4,1,f +12742,3842b,14,1,f +12742,3842b,0,1,f +12742,3935,7,4,f +12742,3936,7,4,f +12742,3937,0,2,f +12742,3937,1,1,f +12742,3938,7,3,f +12742,3957a,36,8,f +12742,3958,7,2,f +12742,3963,0,4,f +12742,4070,1,2,f +12742,4070,7,4,f +12742,4081a,7,4,f +12742,4085b,7,4,f +12742,4175,0,2,f +12742,4228,7,2,f +12742,4315,7,2,f +12742,4474,34,2,f +12742,4476b,7,2,f +12742,4589,36,14,f +12742,4590,7,2,f +12742,4595,0,4,f +12742,4733,1,1,f +12742,4735,1,3,f +12742,4736,1,1,f +12742,4737,7,4,f +12742,4740,36,5,f +12742,6141,46,2,f +12742,73590c01a,0,2,f +12742,970c00,14,1,f +12742,970c00,0,1,f +12742,970c00,15,1,f +12742,970c00,4,1,f +12742,973p90c02,4,1,f +12742,973p90c03,0,1,f +12742,973p90c04,14,1,f +12742,973p90c05,15,1,f +12743,2496,0,2,f +12743,2655,71,2,f +12743,30236,4,1,f +12743,4085c,4,2,f +12743,4328,71,1,f +12743,4522,0,1,f +12743,4532,4,1,f +12743,4533,15,1,f +12744,3004pt1,14,1,f +12744,3004px2,14,2,f +12744,3022,2,1,f +12744,3035,0,1,f +12744,30488,7,1,f +12744,30488c01,15,1,f +12744,30492,2,1,f +12744,30493,0,1,f +12744,30501,2,1,f +12744,30502,47,1,f +12744,3626bpr0001,14,1,f +12744,3626bpx16,14,1,f +12744,3901,19,1,f +12744,3901,0,1,f +12744,4033,15,3,f +12744,72824p01,15,2,f +12744,970c00,15,1,f +12744,970c00pb020,15,1,f +12744,973pb0366c01,2,1,f +12744,973px26c01,118,1,f +12746,3626bpr0216,14,1,f +12746,4485,15,1,f +12746,970c00pb010,1,1,f +12746,973pb0057c01,4,1,f +12747,11477,26,2,f +12747,11609,191,1,t +12747,11609,191,7,f +12747,11609,297,2,t +12747,11609,297,1,f +12747,11610,5,1,f +12747,11816pr0005,78,1,f +12747,11816pr0022,78,1,f +12747,11833,0,1,f +12747,14769,297,1,f +12747,14769,30,3,f +12747,15573,0,6,f +12747,15573,15,3,f +12747,15677,26,1,f +12747,15677,321,1,f +12747,15706,30,4,f +12747,15712,297,2,f +12747,20482,47,3,f +12747,20482,47,1,t +12747,21008,321,1,f +12747,21008,30,1,f +12747,21008,26,1,f +12747,2357,0,4,f +12747,2817,71,1,f +12747,3004,0,1,f +12747,3004,26,11,f +12747,3005,0,2,f +12747,3005,26,14,f +12747,3010,0,11,f +12747,3010,26,7,f +12747,3020,0,3,f +12747,3022,15,4,f +12747,3023,0,9,f +12747,3023,30,5,f +12747,3023,46,1,f +12747,3023,15,5,f +12747,3024,15,2,t +12747,3024,15,5,f +12747,3032,0,1,f +12747,3034,0,1,f +12747,30395,72,3,f +12747,3063b,15,6,f +12747,3068b,191,2,f +12747,3068bpr0255,15,1,f +12747,3069b,322,3,f +12747,3069bpr0055,15,1,f +12747,32054,4,1,f +12747,3245b,15,1,f +12747,33051,4,1,f +12747,33291,4,3,f +12747,33291,4,1,t +12747,3623,0,2,f +12747,3623,15,7,f +12747,3626b,15,1,f +12747,3660,0,2,f +12747,3666,15,10,f +12747,3666,0,2,f +12747,3709,15,1,f +12747,3710,30,1,f +12747,3710,0,2,f +12747,3741,2,1,t +12747,3741,2,1,f +12747,3795,30,1,f +12747,3795,0,1,f +12747,3830,0,2,f +12747,3831,0,2,f +12747,3832,15,1,f +12747,3941,0,1,f +12747,3958,19,8,f +12747,42446,71,1,f +12747,42446,71,1,t +12747,4345b,15,2,f +12747,4346,15,1,f +12747,4346,47,1,f +12747,4536,15,1,f +12747,48336,0,1,f +12747,4865a,15,1,f +12747,50950,15,2,f +12747,54200,15,1,t +12747,54200,15,2,f +12747,59900,33,1,f +12747,59900,297,2,f +12747,60470a,15,1,f +12747,60474,0,2,f +12747,60581,26,6,f +12747,60596,0,1,f +12747,60616a,15,1,f +12747,6111,0,3,f +12747,6141,297,1,t +12747,6141,46,1,t +12747,6141,297,1,f +12747,6141,46,11,f +12747,61485,15,1,f +12747,61678,0,4,f +12747,6180,0,1,f +12747,6231,322,4,f +12747,6231,15,1,f +12747,6256,191,1,f +12747,63965,297,2,f +12747,73983,15,4,f +12747,85984,85,1,f +12747,85984,15,1,f +12747,87079,0,1,f +12747,87079,30,2,f +12747,87087,19,2,f +12747,87544,40,2,f +12747,88072,15,2,f +12747,92258,0,1,f +12747,92410,30,1,f +12747,92456pr0077c01,78,1,f +12747,92456pr0078c01,78,1,f +12747,92818pr0001c01,272,1,f +12747,92818pr0011c01,297,1,f +12747,93088pr0003,15,1,f +12747,93091,297,1,f +12747,93094,5,1,t +12747,93094,5,1,f +12747,93160,15,1,f +12747,93160,15,1,t +12747,96479,85,3,f +12747,96480,85,1,f +12747,96481,85,2,f +12747,96482,85,1,f +12747,96483,85,2,f +12747,96484,85,1,f +12747,96485,85,2,f +12747,96486,85,1,f +12747,96487,85,2,f +12747,96488,85,1,f +12747,96489,85,2,f +12747,96490,85,1,f +12747,96491,85,1,f +12747,98138,52,1,f +12747,98138,15,1,t +12747,98138,15,1,f +12747,98138,52,1,t +12747,98549,15,2,f +12749,3020,47,24,f +12749,3020,0,24,f +12749,3020,7,24,f +12749,3020,4,24,f +12749,3020,2,24,f +12749,3020,15,24,f +12749,3020,1,24,f +12749,3020,14,24,f +12750,10187,179,1,t +12750,10187,179,2,f +12750,10305pr0001,4,1,f +12750,13731,0,4,f +12750,2340,0,1,f +12750,2412b,0,6,f +12750,2420,0,4,f +12750,2421,0,2,f +12750,2431,320,5,f +12750,2456,72,2,f +12750,2460,0,1,f +12750,2479,0,1,f +12750,2540,0,2,f +12750,2780,0,1,t +12750,2780,0,2,f +12750,2877,0,2,f +12750,3004,320,7,f +12750,3008,72,2,f +12750,30173b,0,1,t +12750,30173b,0,2,f +12750,3020,72,2,f +12750,3021,0,1,f +12750,3023,71,7,f +12750,3032,72,1,f +12750,30363,0,1,f +12750,3039,0,2,f +12750,3040b,320,4,f +12750,3069bpr0101,71,1,f +12750,32000,0,4,f +12750,32028,28,1,f +12750,3622,72,2,f +12750,3623,72,1,f +12750,3626cpr0969,78,1,f +12750,3626cpr0970,78,1,f +12750,3626cpr0971,4,1,f +12750,3666,0,4,f +12750,3700,72,2,f +12750,3710,0,4,f +12750,3710,320,3,f +12750,3747b,0,2,f +12750,3795,0,1,f +12750,3823,40,1,f +12750,4032a,72,3,f +12750,42444,0,1,f +12750,43898,0,1,f +12750,44676,0,2,f +12750,4488,0,2,f +12750,45677,320,1,f +12750,4624,71,6,f +12750,4855,0,1,f +12750,4870,71,3,f +12750,50231,85,1,f +12750,50859b,0,1,f +12750,50861,0,2,f +12750,50862,71,2,f +12750,54200,320,17,f +12750,54200,320,1,t +12750,59900,80,4,f +12750,6013273,9999,1,t +12750,6019,72,2,f +12750,60219,0,2,f +12750,60594,72,1,f +12750,6091,320,6,f +12750,6112,72,2,f +12750,61184,71,4,f +12750,61409,0,4,f +12750,6141,47,2,f +12750,6141,71,1,t +12750,6141,71,7,f +12750,6141,47,1,t +12750,6141,36,1,t +12750,6141,36,2,f +12750,61678,0,2,f +12750,6564,0,1,f +12750,6565,0,1,f +12750,85983,71,1,f +12750,85984,0,1,f +12750,87087,71,4,f +12750,87414,0,6,f +12750,87619,72,1,f +12750,88290,308,1,f +12750,93273,71,1,f +12750,95199,72,1,f +12750,970c00pr0348,4,1,f +12750,970c00pr0349,191,1,f +12750,970x268,4,1,f +12750,973pr2050c01,191,1,f +12750,973pr2051c01,4,1,f +12750,973pr2062c01,4,1,f +12750,99780,72,1,f +12751,2039,15,1,f +12751,2335pr0001,15,2,f +12751,2335pr0002,15,1,f +12751,2357,19,8,f +12751,2420,70,4,f +12751,2431,308,13,f +12751,2432,71,1,f +12751,2453a,15,12,f +12751,2454a,15,2,f +12751,2489,308,3,f +12751,2526,297,1,t +12751,2526,297,1,f +12751,2526,1,1,t +12751,2526,4,1,f +12751,2526,4,1,t +12751,2526,1,3,f +12751,2527,4,1,f +12751,2528,0,1,f +12751,2528pr0001,0,1,f +12751,2530,72,1,t +12751,2530,72,2,f +12751,2542,70,2,f +12751,2542,70,1,t +12751,2543,1,1,f +12751,2544,0,1,f +12751,2545pr0001,0,2,f +12751,2550c01,70,1,f +12751,2551,70,1,f +12751,2561,70,2,f +12751,2562,70,2,f +12751,2584,0,1,f +12751,2585,71,1,f +12751,3001,0,6,f +12751,3003,15,2,f +12751,3003,2,3,f +12751,3004,15,26,f +12751,3004,19,2,f +12751,3005,19,15,f +12751,30055,71,4,f +12751,3008,15,2,f +12751,3009,15,3,f +12751,3009,19,6,f +12751,3010,15,3,f +12751,3010,19,1,f +12751,30136,308,2,f +12751,30153,36,1,f +12751,30153,47,1,f +12751,30153,34,1,f +12751,30176,2,2,f +12751,30179,72,1,f +12751,3022,72,1,f +12751,3022,70,1,f +12751,3023,71,2,f +12751,3033,72,1,f +12751,3033,1,7,f +12751,3033,70,6,f +12751,30338,70,1,f +12751,3036,72,2,f +12751,3036,272,1,f +12751,30374,70,3,f +12751,3039,19,3,f +12751,30395,72,1,f +12751,3040b,72,3,f +12751,30503,72,1,f +12751,3062b,71,4,f +12751,3062b,46,2,f +12751,3062b,0,8,f +12751,3307,71,6,f +12751,33085,14,1,f +12751,3455,15,2,f +12751,3460,15,2,f +12751,3626bpr0270,14,1,f +12751,3626bpr0325,14,1,f +12751,3626bpr0411,14,1,f +12751,3626bpr0564,14,1,f +12751,3626bpr0566,14,1,f +12751,3626bpr0567,14,1,f +12751,3660,15,9,f +12751,3666,19,6,f +12751,3666,71,1,f +12751,3673,71,2,t +12751,3673,71,6,f +12751,3709,15,3,f +12751,3794b,0,2,f +12751,3937,71,2,f +12751,3957a,0,2,f +12751,3957a,15,3,f +12751,3958,1,1,f +12751,3958,70,1,f +12751,4032a,70,1,f +12751,4032a,2,2,f +12751,4070,71,4,f +12751,40902,0,1,f +12751,4286,71,2,f +12751,44301a,71,1,f +12751,44302a,71,1,f +12751,4460b,15,4,f +12751,4477,70,2,f +12751,4519,71,2,f +12751,4599a,71,1,f +12751,4599a,0,2,f +12751,4623,72,2,f +12751,4738a,70,1,f +12751,4739a,70,1,f +12751,48336,71,2,f +12751,4865a,71,2,f +12751,48723,70,1,f +12751,56823c50,0,1,f +12751,57503,334,1,f +12751,57504,334,1,f +12751,57505,334,1,f +12751,57506,334,1,f +12751,6026,288,1,f +12751,6027,288,1,f +12751,6028,288,1,f +12751,60474,0,2,f +12751,60621,71,1,f +12751,60808,15,6,f +12751,6111,15,1,f +12751,6111,72,1,f +12751,6112,71,3,f +12751,6134,71,2,f +12751,6141,71,8,f +12751,6141,71,1,t +12751,6141,0,6,f +12751,6141,0,2,t +12751,6148,2,4,f +12751,61485,0,2,f +12751,62361,71,2,f +12751,62808,72,2,f +12751,64644,297,2,f +12751,64647,57,1,f +12751,64647,4,1,f +12751,64648,135,1,f +12751,64728,4,1,f +12751,6541,15,18,f +12751,84624,9999,1,f +12751,84943,148,1,f +12751,970c00,19,1,f +12751,970c00,15,4,f +12751,970d09,0,1,f +12751,973pr1439c01,70,1,f +12751,973pr1441c01,4,3,f +12751,973pr1442c01,0,1,f +12751,973pr1445c01,272,1,f +12752,2377,0,4,f +12752,2412b,0,2,f +12752,2413,15,4,f +12752,2419,15,1,f +12752,2420,0,1,f +12752,2432,0,1,f +12752,2445,7,1,f +12752,2445,19,1,f +12752,2526,15,1,f +12752,2536,6,5,f +12752,2555,7,3,f +12752,2563,6,1,f +12752,2566,2,1,f +12752,2873,19,2,f +12752,2952,6,1,f +12752,298c03,0,2,f +12752,3001,19,1,f +12752,3003,0,1,f +12752,3004,0,2,f +12752,30132,8,2,f +12752,30141,8,4,f +12752,30147,8,1,f +12752,30148,0,1,f +12752,30149,0,1,f +12752,30150,6,2,f +12752,30152pat0001,0,1,f +12752,30154,0,1,f +12752,30155,8,4,f +12752,30155,19,2,f +12752,30157,8,3,f +12752,30158,6,1,f +12752,30161pa1,47,1,f +12752,30162,0,2,f +12752,30163,19,1,f +12752,30164p01,19,1,f +12752,30169,0,2,f +12752,30170,0,1,f +12752,30171,6,1,f +12752,30172,15,2,f +12752,3020,15,1,f +12752,3021,6,2,f +12752,3021,15,3,f +12752,3022,8,2,f +12752,3022,0,2,f +12752,3023,15,2,f +12752,3023,7,1,f +12752,3023,0,7,f +12752,3032,19,1,f +12752,3034,19,1,f +12752,3040b,19,4,f +12752,3062b,2,1,f +12752,3068b,19,2,f +12752,3068bpx13,19,1,f +12752,3068bpx19,19,1,f +12752,3069b,19,1,f +12752,3069bp03,7,1,f +12752,3069bpa4,15,1,f +12752,3176,0,1,f +12752,3483,0,6,f +12752,3587,19,1,f +12752,3623,7,1,f +12752,3626bpa1,14,1,f +12752,3626bpa5,14,1,f +12752,3626bpa7,14,1,f +12752,3626bpa9,14,1,f +12752,3626bpr0895,15,1,f +12752,3659,19,1,f +12752,3700,0,1,f +12752,3710,15,1,f +12752,3749,7,2,f +12752,3794a,0,2,f +12752,3795,19,2,f +12752,3795,7,1,f +12752,3829c01,7,1,f +12752,3832,7,1,f +12752,3837,8,2,f +12752,3841,8,3,f +12752,3878,0,1,f +12752,3937,4,2,f +12752,3938,7,2,f +12752,4032a,2,1,f +12752,4070,0,5,f +12752,4081b,7,2,f +12752,4085c,0,2,f +12752,4150,2,2,f +12752,4315,7,2,f +12752,4528,0,1,f +12752,4599a,7,4,f +12752,4599a,7,1,t +12752,4623,0,1,f +12752,4625,7,1,f +12752,4854,19,1,f +12752,4855,19,1,f +12752,4871,0,1,f +12752,5948stk01,9999,1,t +12752,6019,0,2,f +12752,6069,19,1,f +12752,6126a,57,1,f +12752,6141,47,3,f +12752,6141,47,1,t +12752,6141,7,1,t +12752,6141,7,8,f +12752,6148,2,4,f +12752,6260,15,1,f +12752,6265,15,2,f +12752,6266,15,2,f +12752,970c00,2,1,f +12752,970c00,0,2,f +12752,970c00,7,1,f +12752,973p22c01,0,1,f +12752,973pa1c01,15,1,f +12752,973pa5c01,6,1,f +12752,973pa7c01,19,1,f +12753,24066pr0001,0,1,f +12753,24086,15,1,f +12753,3626cpr1828,14,1,f +12753,87990,308,1,f +12753,88646,0,1,f +12753,970c00pr0989,28,1,f +12753,973pr3217c01,378,1,f +12754,11090,72,1,f +12754,11477,19,1,f +12754,15573,19,4,f +12754,15712,71,1,f +12754,18646,19,1,f +12754,3023,19,2,f +12754,3023,71,2,f +12754,30357,19,2,f +12754,30374,19,1,f +12754,30375,19,1,f +12754,3062b,19,2,f +12754,3666,28,2,f +12754,3795,72,1,f +12754,3839b,72,1,f +12754,4274,71,1,f +12754,4740,19,1,f +12754,52107,71,1,f +12754,59900,19,2,f +12754,60849,0,4,f +12754,6091,19,1,f +12754,87087,19,2,f +12754,87580,19,1,f +12754,88292,19,2,f +12755,3127,4,2,f +12755,3135c02,4,1,f +12755,4207,7,2,f +12756,10928,72,2,f +12756,11946,28,2,f +12756,11947,28,2,f +12756,15100,0,4,f +12756,15303,33,2,f +12756,15400,72,1,f +12756,19086,72,1,f +12756,21560,28,1,f +12756,21560pr0002,28,1,f +12756,21561pr0005,28,1,f +12756,21987,41,1,f +12756,24010,0,1,f +12756,24123,148,1,f +12756,24124,28,1,f +12756,24673,70,1,f +12756,25672,80,2,f +12756,2780,0,6,f +12756,3024,0,2,f +12756,3069b,72,1,f +12756,32014,0,1,f +12756,32039,0,1,f +12756,32062,4,6,f +12756,32072,0,3,f +12756,32123b,71,1,f +12756,32138,0,1,f +12756,33299a,0,1,f +12756,4274,71,5,f +12756,43093,1,1,f +12756,4519,71,2,f +12756,53585,0,4,f +12756,58176,143,1,f +12756,59426,72,1,f +12756,60483,0,2,f +12756,61409,72,1,f +12756,62462,0,1,f +12756,6536,72,1,f +12756,74261,72,4,f +12756,87082,0,3,f +12756,87083,72,2,f +12756,90607,0,2,f +12756,90609,0,4,f +12756,90615,72,2,f +12756,90638,0,4,f +12756,90640,28,4,f +12756,90661,72,2,f +12756,93273,0,2,f +12756,93571,0,1,f +12756,93575,70,2,f +12758,cdoor01,4,1,f +12758,cdoor01,15,2,f +12758,cdoor01,14,1,f +12761,2357,14,2,f +12761,2412b,72,8,f +12761,2412b,14,5,f +12761,2412b,71,10,f +12761,2420,14,2,f +12761,2431,72,3,f +12761,2431,71,2,f +12761,2431,14,2,f +12761,2431,2,5,f +12761,2432,14,1,f +12761,2436,71,1,f +12761,2453a,72,3,f +12761,2456,14,3,f +12761,2465,72,2,f +12761,2540,72,1,f +12761,2555,72,4,f +12761,2584,0,1,f +12761,2585,71,1,f +12761,2637,71,2,f +12761,2639,72,2,f +12761,2654,0,3,f +12761,2730,71,2,f +12761,2744,0,1,f +12761,2780,0,17,f +12761,2780,0,2,t +12761,2817,0,1,f +12761,2877,2,4,f +12761,2905,71,2,f +12761,2926,0,5,f +12761,298c02,71,1,t +12761,298c02,71,1,f +12761,3001,0,2,f +12761,3001,71,2,f +12761,3001,14,4,f +12761,3002,14,2,f +12761,30027b,71,6,f +12761,30028,0,6,f +12761,3003,72,1,f +12761,3003,14,4,f +12761,3004,14,1,f +12761,3004,72,16,f +12761,3004,1,4,f +12761,30043,71,1,f +12761,3005,72,15,f +12761,3005,14,2,f +12761,3005,4,2,f +12761,3006,71,2,f +12761,3007,0,3,f +12761,3008,72,7,f +12761,3008,0,1,f +12761,3009,4,1,f +12761,3009,2,4,f +12761,3010,72,12,f +12761,3010,2,3,f +12761,3010,14,6,f +12761,30157,71,2,f +12761,30179,15,1,f +12761,3020,72,3,f +12761,3020,14,6,f +12761,3020,15,1,f +12761,3020,2,1,f +12761,3021,71,4,f +12761,3021,2,2,f +12761,3022,2,1,f +12761,3022,72,3,f +12761,3022,71,1,f +12761,3023,0,4,f +12761,3023,2,10,f +12761,3023,182,6,f +12761,3023,4,10,f +12761,3023,14,3,f +12761,30236,71,4,f +12761,3024,36,2,f +12761,3024,46,2,f +12761,3024,182,2,f +12761,3027,72,2,f +12761,30296,15,1,f +12761,3031,14,1,f +12761,3032,15,2,f +12761,3032,72,1,f +12761,3034,14,1,f +12761,3035,72,8,f +12761,3036,72,2,f +12761,3037,4,8,f +12761,30374,71,2,f +12761,30386,14,2,f +12761,30387,14,2,f +12761,30389c,0,1,f +12761,3039,14,4,f +12761,3039,71,1,f +12761,3039,4,6,f +12761,30394,14,1,f +12761,30395,72,1,f +12761,3040bpr0003,71,2,f +12761,3041,4,2,f +12761,30414,72,4,f +12761,30414,14,4,f +12761,3043,4,2,f +12761,3048c,4,2,f +12761,30586,71,4,f +12761,30592,71,1,f +12761,3062b,14,4,f +12761,3062b,36,4,f +12761,3065,40,1,f +12761,3068b,0,1,f +12761,3068b,14,1,f +12761,3068b,15,1,f +12761,3068b,72,2,f +12761,3069b,15,1,f +12761,3069b,36,9,f +12761,3069b,4,20,f +12761,3069bpr0090,72,2,f +12761,3070bpr0007,71,2,f +12761,3070bpr0007,71,1,t +12761,3176,14,4,f +12761,32000,72,4,f +12761,32002,72,4,f +12761,32002,72,1,t +12761,32013,14,6,f +12761,32028,0,2,f +12761,32028,71,2,f +12761,32054,4,2,f +12761,32064b,14,2,f +12761,32064b,72,6,f +12761,32449,72,1,f +12761,32530,72,2,f +12761,32556,19,3,f +12761,33299a,71,1,f +12761,3460,14,2,f +12761,3460,15,1,f +12761,3460,72,3,f +12761,3622,72,8,f +12761,3623,72,2,f +12761,3626bpr0270,14,1,f +12761,3626bpr0282,14,1,f +12761,3626bpr0314,14,1,f +12761,3626bpr0389,14,1,f +12761,3626bpr0498,14,1,f +12761,3660,2,2,f +12761,3660,14,4,f +12761,3660,72,8,f +12761,3665,72,8,f +12761,3665,2,2,f +12761,3666,2,4,f +12761,3666,14,5,f +12761,3666,15,3,f +12761,3673,71,2,t +12761,3673,71,8,f +12761,3700,71,1,f +12761,3700,14,2,f +12761,3701,1,1,f +12761,3703,71,2,f +12761,3705,0,4,f +12761,3707,0,4,f +12761,3708,0,2,f +12761,3709,0,1,f +12761,3710,2,6,f +12761,3710,14,3,f +12761,3738,72,11,f +12761,3747b,72,3,f +12761,3794b,0,3,f +12761,3794b,15,4,f +12761,3795,2,1,f +12761,3795,14,1,f +12761,3795,72,9,f +12761,3823,40,2,f +12761,3829c01,1,1,f +12761,3829c01,14,1,f +12761,3833,4,4,f +12761,3837,0,1,f +12761,3839b,71,2,f +12761,3865,72,1,f +12761,3894,71,2,f +12761,3894,14,1,f +12761,3894,1,2,f +12761,3895,14,2,f +12761,3899,4,1,f +12761,3941,71,6,f +12761,3958,15,1,f +12761,3962b,0,2,f +12761,4006,0,1,f +12761,4032a,14,2,f +12761,4070,4,2,f +12761,4070,14,4,f +12761,4070,71,2,f +12761,4079,1,2,f +12761,4085c,0,4,f +12761,4085c,14,2,f +12761,41539,72,1,f +12761,4162,72,13,f +12761,4176,40,1,f +12761,42610,71,6,f +12761,4274,1,1,t +12761,4274,1,2,f +12761,4282,71,1,f +12761,4286,14,2,f +12761,4287,15,2,f +12761,43903,0,2,f +12761,44294,71,1,f +12761,4445,14,1,f +12761,44728,71,8,f +12761,4485,1,1,f +12761,4488,0,2,f +12761,4519,71,2,f +12761,4522,0,1,f +12761,4532,71,2,f +12761,4533,0,2,f +12761,45677,14,2,f +12761,4623,0,4,f +12761,4735,71,4,f +12761,4740,14,4,f +12761,47457,72,1,f +12761,47457,2,1,f +12761,48336,0,2,f +12761,48336,71,3,f +12761,4865a,2,13,f +12761,50450,0,2,f +12761,50745,72,2,f +12761,50950,72,2,f +12761,50951,0,2,f +12761,51739,72,1,f +12761,52031,2,1,f +12761,52041,14,2,f +12761,52107,0,2,f +12761,54200,182,3,t +12761,54200,36,2,t +12761,54200,182,8,f +12761,54200,2,1,t +12761,54200,46,4,f +12761,54200,47,2,t +12761,54200,36,4,f +12761,54200,2,2,f +12761,54200,46,2,t +12761,54200,47,6,f +12761,55981,14,12,f +12761,56823c100,0,1,f +12761,57894,15,4,f +12761,57895,47,4,f +12761,58090,0,6,f +12761,58176,182,11,f +12761,58827,14,4,f +12761,59349,72,8,f +12761,59426,72,1,f +12761,59443,14,2,f +12761,6014b,71,6,f +12761,6015,0,6,f +12761,60169,72,1,f +12761,6019,72,2,f +12761,60470a,14,2,f +12761,60474,14,2,f +12761,60475a,71,4,f +12761,60475a,14,4,f +12761,60594,15,2,f +12761,60603,47,5,f +12761,60616a,47,1,f +12761,6070,40,1,f +12761,6079,15,2,f +12761,60806,15,3,f +12761,6087,71,1,f +12761,6091,72,4,f +12761,6111,14,2,f +12761,6140,71,2,f +12761,6141,25,4,f +12761,6141,4,7,f +12761,6141,47,10,f +12761,6141,47,4,t +12761,6141,25,2,t +12761,6141,27,8,f +12761,6141,27,2,t +12761,6141,4,2,t +12761,61485,0,2,f +12761,6187,71,2,f +12761,6222,71,1,f +12761,6232,71,6,f +12761,62462,14,2,f +12761,6249,71,1,f +12761,63082,71,1,f +12761,64450,0,1,f +12761,64644,0,2,f +12761,6587,72,1,f +12761,6636,4,15,f +12761,6636,72,2,f +12761,7633stk01,9999,1,t +12761,87058,72,1,f +12761,970c00,25,3,f +12761,970c00,1,2,f +12761,973pr1182c01,25,4,f +12761,973pr1244c01,73,1,f +12764,2446,15,2,f +12764,2447,41,2,f +12764,2447,41,1,t +12764,30187c01,15,1,f +12764,3024,46,1,f +12764,3024,36,1,f +12764,3626bp04,14,1,f +12764,3839b,15,1,f +12764,3937,15,1,f +12764,3938,1,1,f +12764,4449,0,1,f +12764,4865a,1,1,f +12764,6141,33,1,f +12764,6141,33,1,t +12764,970c00,1,2,f +12764,973px168c01,15,1,f +12765,30173b,19,2,f +12765,3626cpr1838,14,1,f +12765,88646,0,1,f +12765,970c00pr0998,272,1,f +12765,973pr3226c01,272,1,f +12765,98130pr0002,272,1,f +12766,10201,0,1,f +12766,11062,0,1,f +12766,11833,71,1,f +12766,12607ass01pr01,2,1,f +12766,12607ass03pr02,2,1,f +12766,12609pr0001,28,1,f +12766,12610pr0001,28,1,f +12766,12611pr0001,70,1,f +12766,12617,308,1,f +12766,12825,72,3,f +12766,14395,70,2,f +12766,14769,71,1,f +12766,14769,297,2,f +12766,15332,0,1,f +12766,15573,70,2,f +12766,2412b,71,2,f +12766,2412b,42,2,f +12766,2417,10,2,f +12766,2431,70,4,f +12766,2460,72,1,f +12766,2476,28,1,f +12766,2496,0,4,f +12766,2540,72,2,f +12766,2569,42,2,f +12766,2569,42,2,t +12766,2654,19,2,f +12766,2817,4,1,f +12766,2819,71,1,f +12766,2877,72,1,f +12766,2921,0,2,f +12766,298c02,0,2,f +12766,298c02,0,1,t +12766,3001,71,2,f +12766,3002,70,1,f +12766,3003,71,3,f +12766,3003,70,2,f +12766,3004,4,1,f +12766,30043,71,1,f +12766,30099,19,3,f +12766,3010,70,2,f +12766,30136,71,13,f +12766,30137,71,3,f +12766,30173a,0,2,f +12766,30173a,179,3,f +12766,30173b,179,2,t +12766,30173b,0,1,t +12766,3020,70,6,f +12766,3021,71,1,f +12766,3022,71,3,f +12766,3023,326,13,f +12766,3023,0,13,f +12766,30236,71,2,f +12766,3024,320,4,f +12766,3024,320,2,t +12766,3028,72,3,f +12766,3031,71,1,f +12766,3031,70,3,f +12766,30374,42,2,f +12766,30374,0,2,f +12766,30377,0,2,f +12766,30377,0,1,t +12766,30383,0,1,f +12766,3039,326,4,f +12766,30395,320,1,f +12766,30396,14,1,f +12766,3039pr0002,15,1,f +12766,30504,72,1,f +12766,30553,0,1,f +12766,30554a,71,3,f +12766,3062b,4,3,f +12766,3062b,70,4,f +12766,3062b,1,1,f +12766,3062b,42,2,f +12766,3062b,14,1,f +12766,3062b,71,14,f +12766,30663,71,2,f +12766,3069b,71,3,f +12766,3070b,72,1,t +12766,3070b,72,1,f +12766,3176,72,1,f +12766,32018,72,1,f +12766,32028,2,2,f +12766,32028,72,1,f +12766,32062,4,1,f +12766,32140,0,1,f +12766,32270,0,1,f +12766,3245c,72,2,f +12766,32523,4,1,f +12766,3307,72,3,f +12766,3308,72,1,f +12766,33299a,0,1,f +12766,3460,0,2,f +12766,3460,72,2,f +12766,3622,19,1,f +12766,3622,72,6,f +12766,3623,70,2,f +12766,3626c,47,1,f +12766,3626c,70,1,f +12766,3626cpr1150,0,1,f +12766,3626cpr1152,78,1,f +12766,3633,0,1,f +12766,3659,308,2,f +12766,3666,71,14,f +12766,3666,320,8,f +12766,3673,71,1,t +12766,3673,71,2,f +12766,3678b,484,2,f +12766,3678bpr0018,320,1,f +12766,3700,72,5,f +12766,3710,0,4,f +12766,3713,4,1,f +12766,3713,4,1,t +12766,3794b,320,11,f +12766,3794b,2,1,f +12766,3795,70,2,f +12766,3795,72,2,f +12766,3795,28,1,f +12766,3941,72,15,f +12766,3941,70,4,f +12766,3958,72,1,f +12766,4006,0,1,f +12766,40243,28,3,f +12766,4032a,4,1,f +12766,4032a,25,1,f +12766,4032a,72,2,f +12766,4032a,85,1,f +12766,4032a,1,1,f +12766,4032a,70,2,f +12766,4070,4,2,f +12766,4150p02,14,1,f +12766,41532,0,1,f +12766,4175,72,2,f +12766,41879a,70,1,f +12766,42511,1,1,f +12766,42511,4,1,f +12766,42610,71,2,f +12766,4274,71,1,t +12766,4274,71,2,f +12766,43888,484,4,f +12766,43888,72,4,f +12766,44294,71,1,f +12766,44728,71,1,f +12766,4477,71,1,f +12766,4510,19,1,f +12766,4522,0,1,f +12766,4536,15,2,f +12766,4599b,0,1,f +12766,4599b,4,1,t +12766,4599b,14,1,t +12766,4599b,4,1,f +12766,4599b,1,1,t +12766,4599b,14,1,f +12766,4599b,1,1,f +12766,4599b,0,1,t +12766,4740,0,1,f +12766,4861,72,1,f +12766,4865b,2,1,f +12766,53451,179,1,t +12766,53451,179,1,f +12766,54200,326,3,t +12766,54200,326,12,f +12766,54383,72,2,f +12766,54384,72,2,f +12766,59349,72,4,f +12766,59426,72,1,f +12766,59443,4,1,f +12766,59900,0,2,f +12766,6020,0,1,f +12766,60470a,71,1,f +12766,60474,297,1,f +12766,60475a,72,8,f +12766,60475a,14,4,f +12766,60481,71,2,f +12766,60897,4,2,f +12766,61409,4,4,f +12766,6141,47,1,t +12766,6141,71,1,t +12766,6141,0,2,t +12766,6141,42,4,f +12766,6141,71,4,f +12766,6141,0,6,f +12766,6141,42,2,t +12766,6141,47,1,f +12766,61485,0,1,f +12766,6180,0,1,f +12766,6182,71,8,f +12766,62113,0,1,f +12766,6232,72,1,f +12766,62462,71,3,f +12766,63864,72,1,f +12766,63965,0,1,f +12766,63965,70,1,f +12766,64728,4,1,f +12766,6558,1,2,f +12766,6585,0,1,f +12766,6587,28,1,f +12766,6589,19,1,t +12766,6589,19,2,f +12766,6628,0,1,f +12766,6636,72,3,f +12766,87083,72,2,f +12766,87580,28,9,f +12766,90195,19,4,f +12766,90202,0,1,f +12766,92099,72,1,f +12766,92107,72,1,f +12766,92410,4,1,f +12766,92690,71,1,f +12766,92946,0,2,f +12766,93058,297,1,f +12766,93058,297,1,t +12766,93095,14,1,f +12766,96874,25,1,t +12766,970c00,0,1,f +12766,970c00pr0473,2,2,f +12766,970x026,320,1,f +12766,973c32,70,1,f +12766,973pr2263c01,2,1,f +12766,973pr2264c01,0,1,f +12766,973pr2267c01,2,1,f +12766,973pr2269c01,320,1,f +12766,973pr2270c01,320,1,f +12766,98138,179,1,t +12766,98138,179,2,f +12766,98138pr0012,179,1,f +12766,98138pr0012,179,1,t +12766,98139,179,1,t +12766,98139,179,2,f +12766,98283,84,11,f +12766,99780,72,1,f +12766,99781,71,1,f +12768,3020,1,24,f +12768,728,7,1,f +12768,729,47,1,f +12769,3021,71,1,f +12769,3023,71,1,f +12769,3040b,72,2,f +12769,3040b,71,1,f +12769,3626bpr0630,71,1,f +12769,54200,71,1,t +12769,54200,71,1,f +12769,55236,288,1,f +12769,87087,72,1,f +12769,87758pr01,272,1,f +12769,92290,297,1,f +12769,970c00,272,1,f +12769,973pr1555c01,272,1,f +12770,2540,1,1,f +12770,2877,7,1,f +12770,3010p72,4,2,f +12770,3020,4,1,f +12770,30235,0,1,f +12770,3040b,46,2,f +12770,3127,7,1,f +12770,3626bpb0016,14,1,f +12770,3823,41,1,f +12770,3829c01,15,1,f +12770,3997,4,1,f +12770,4485,1,1,f +12770,6014a,15,4,f +12770,6015,0,4,f +12770,73037,4,1,f +12770,970c00,4,1,f +12770,973pb0113c01,15,1,f +12770,rb00164,0,1,f +12772,2439,72,1,f +12772,2817,0,1,f +12772,3020,0,1,f +12772,30663,71,2,f +12772,3837,0,1,f +12772,3839b,72,1,f +12772,3841,72,1,f +12772,4085c,0,1,t +12772,4085c,0,2,f +12772,4274,71,2,t +12772,4274,71,2,f +12772,4740,72,1,f +12772,4740,72,1,t +12773,11476,71,2,f +12773,11477,14,6,f +12773,14417,72,1,f +12773,14704,71,3,f +12773,15456,0,2,f +12773,15712,14,2,f +12773,2357,14,3,f +12773,3004,0,1,f +12773,30165,0,2,f +12773,3021,14,2,f +12773,3022,14,2,f +12773,3023,0,2,f +12773,3023,14,1,f +12773,30294,72,1,f +12773,30602,14,1,f +12773,30663,0,1,f +12773,33085,72,2,f +12773,3626cpr1001,15,2,f +12773,3660,14,2,f +12773,3660,0,1,f +12773,3679,71,1,f +12773,3680,0,1,f +12773,4070,14,3,f +12773,4081b,72,2,f +12773,44728,14,1,f +12773,53451,179,2,f +12773,53451,179,1,t +12773,60470a,0,1,f +12773,60474,14,1,f +12773,60478,14,4,f +12773,6141,15,1,t +12773,6141,71,2,f +12773,6141,36,1,t +12773,6141,36,2,f +12773,6141,15,2,f +12773,6141,71,1,t +12773,87087,0,2,f +12773,92338,72,1,f +12773,99206,0,1,f +12774,2780,0,1,t +12774,2780,0,24,f +12774,2850a,71,2,f +12774,2851,14,2,f +12774,2852,71,2,f +12774,2853,71,2,f +12774,32002,72,2,f +12774,32002,72,1,t +12774,32013,0,2,f +12774,32034,71,3,f +12774,32039,0,2,f +12774,32054,0,4,f +12774,32056,0,4,f +12774,32068,0,2,f +12774,32069,0,2,f +12774,32073,71,6,f +12774,32123b,71,19,f +12774,32123b,71,1,t +12774,32140,0,2,f +12774,32140,1,2,f +12774,32184,71,1,f +12774,32199,0,2,f +12774,32250,0,2,f +12774,32269,19,2,f +12774,32270,0,6,f +12774,32294,0,2,f +12774,32316,1,2,f +12774,32316,0,2,f +12774,32333,0,2,f +12774,32523,1,1,f +12774,32524,1,1,f +12774,32525,1,2,f +12774,32526,72,2,f +12774,32527,1,1,f +12774,32528,1,1,f +12774,3647,72,1,f +12774,3647,72,1,t +12774,3705,0,5,f +12774,3706,0,1,f +12774,3707,0,1,f +12774,3713,71,1,t +12774,3713,71,4,f +12774,3743,71,1,f +12774,3749,19,2,f +12774,3794a,0,2,f +12774,40001,72,1,f +12774,4019,71,2,f +12774,40490,1,2,f +12774,41677,0,4,f +12774,42003,72,6,f +12774,4274,71,4,f +12774,4274,71,1,t +12774,43093,1,4,f +12774,44294,71,2,f +12774,4519,71,6,f +12774,55976,0,2,f +12774,56145,71,4,f +12774,59426,72,1,f +12774,59443,71,3,f +12774,60483,72,1,f +12774,6141,47,2,f +12774,6141,47,1,t +12774,61481,0,2,f +12774,6536,0,5,f +12774,6558,1,5,f +12774,6587,72,7,f +12774,6628,0,2,f +12774,6632,1,4,f +12774,76138,71,2,f +12775,122c02,0,4,f +12775,2456,15,2,f +12775,2456,4,2,f +12775,2458,4,1,f +12775,2460,4,1,f +12775,2479,7,2,f +12775,2508,15,1,f +12775,2513,4,1,f +12775,3001,14,2,f +12775,3001,4,4,f +12775,3001,1,2,f +12775,3001,0,2,f +12775,3001,15,4,f +12775,3002,15,4,f +12775,3002,1,2,f +12775,3002,4,4,f +12775,3002,14,4,f +12775,3003,0,4,f +12775,3003,1,4,f +12775,3003,4,6,f +12775,3003,14,4,f +12775,3003,15,6,f +12775,3004,1,10,f +12775,3004,0,10,f +12775,3004,15,20,f +12775,3004,4,24,f +12775,3004,14,12,f +12775,3005,4,16,f +12775,3005,47,4,f +12775,3005,0,8,f +12775,3005,15,16,f +12775,3005,1,8,f +12775,3005,14,12,f +12775,3008,14,2,f +12775,3008,15,2,f +12775,3008,4,2,f +12775,3009,14,2,f +12775,3009,15,6,f +12775,3009,4,8,f +12775,3010,15,10,f +12775,3010,0,4,f +12775,3010,14,8,f +12775,3010,1,6,f +12775,3010,4,12,f +12775,3010p08,4,1,f +12775,3010p09,4,1,f +12775,3020,1,4,f +12775,3020,4,2,f +12775,3021,1,2,f +12775,3022,1,2,f +12775,3023,4,4,f +12775,3031,4,1,f +12775,3031,1,2,f +12775,3032,4,1,f +12775,3032,1,2,f +12775,3034,1,4,f +12775,3035,1,1,f +12775,3035,4,1,f +12775,3039,47,2,f +12775,3081cc01,14,2,f +12775,3149c01,4,1,f +12775,3183b,15,1,f +12775,3297,1,8,f +12775,3298,1,6,f +12775,3299,1,3,f +12775,3300,1,2,f +12775,3460,4,4,f +12775,3470,2,1,f +12775,3622,14,6,f +12775,3622,15,10,f +12775,3622,1,4,f +12775,3622,4,12,f +12775,3624,0,1,f +12775,3626bpr0001,14,2,f +12775,3633,14,4,f +12775,3641,0,8,f +12775,3660,4,2,f +12775,3665,4,4,f +12775,3666,4,2,f +12775,3679,7,1,f +12775,3680,0,1,f +12775,3710,4,2,f +12775,3741,2,2,f +12775,3742,1,1,t +12775,3742,15,1,t +12775,3742,1,3,f +12775,3742,15,3,f +12775,3788,4,2,f +12775,3795,1,2,f +12775,3795,4,2,f +12775,3821,4,1,f +12775,3822,4,1,f +12775,3823,41,2,f +12775,3853,14,4,f +12775,3854,4,8,f +12775,3856,2,8,f +12775,3861b,14,1,f +12775,3867,2,1,f +12775,3957a,7,2,f +12775,3960p04,15,1,f +12775,4212b,0,1,f +12775,4477,4,2,f +12775,4530,6,1,f +12775,4864a,41,2,f +12775,4864apx13,4,2,f +12775,6007,8,1,f +12775,970c00,0,1,f +12775,970c00,1,1,f +12775,973c02,4,1,f +12775,973px62c01,15,1,f +12777,4774c01,0,1,f +12778,2335,0,2,f +12778,2412b,14,1,f +12778,2432,7,1,f +12778,2446,8,1,f +12778,2540,0,1,f +12778,2780,0,1,t +12778,2780,0,2,f +12778,30088,8,2,f +12778,30090,33,1,f +12778,30091,8,1,f +12778,30171,0,1,t +12778,3032,14,1,f +12778,30361b,0,2,f +12778,30367a,0,2,f +12778,30414,0,1,f +12778,30602,14,1,f +12778,30632,14,1,f +12778,30636c01,8,1,f +12778,32531,0,1,f +12778,3626bpb0013,14,1,f +12778,3666,14,2,f +12778,3749,7,2,f +12778,3941,14,2,f +12778,40996,42,1,f +12778,41747pb007,14,1,f +12778,41748pb007,14,1,f +12778,41769,0,1,f +12778,41770,0,1,f +12778,59275,0,2,f +12778,6019,0,2,f +12778,6041,0,2,f +12778,71509,0,2,t +12778,970c00pb030,272,1,f +12778,973pb0205c01,272,1,f +12781,13533,71,1,f +12781,15211,0,2,f +12781,16697,0,1,f +12781,16698,15,1,f +12781,16699,72,1,f +12781,17003,14,1,f +12781,17005,4,1,f +12781,17237,25,1,f +12781,20678,41,2,f +12781,3437,2,2,f +12781,3437,484,3,f +12781,40666,4,1,f +12781,40666,10,2,f +12781,51703,182,2,f +12781,58498,14,1,f +12781,76371,322,2,f +12781,95485,0,1,f +12781,98223,4,1,f +12781,98224,10,2,f +12781,98252,27,2,f +12782,3001,1,1,f +12782,3001,15,1,f +12782,3003,14,1,f +12782,3003,4,1,f +12782,3003,1,1,f +12782,3003,25,1,f +12782,3003,2,1,f +12782,3004,4,2,f +12782,3004,2,2,f +12782,3004,15,2,f +12782,3004,25,1,f +12782,3005,15,1,f +12782,3005,1,1,f +12783,30483pr01,70,1,f +12783,970c00,70,1,f +12783,973c32,70,1,f +12784,2444,0,2,f +12784,2452,0,2,f +12784,2458,0,2,f +12784,2470,6,4,f +12784,2489,6,1,f +12784,2490px3,4,1,f +12784,3004,15,1,f +12784,3004,0,2,f +12784,3020,0,4,f +12784,3023,15,1,f +12784,3023,0,2,f +12784,3034,0,2,f +12784,3039,0,1,f +12784,3062b,14,4,f +12784,3062b,4,2,f +12784,3068b,4,2,f +12784,3626apr0001,14,2,f +12784,3710,0,2,f +12784,3844,8,2,f +12784,3847a,8,2,f +12784,3849,6,1,f +12784,3876,8,2,f +12784,3957a,0,4,f +12784,4032a,6,1,f +12784,4070,0,2,f +12784,4085b,0,4,f +12784,4488,0,4,f +12784,4495a,4,2,f +12784,4495a,14,1,f +12784,4497,6,2,f +12784,4504,0,2,f +12784,4623,0,2,f +12784,4626,0,2,f +12784,6141,14,2,f +12784,75998pr0007,15,1,f +12784,970x026,1,2,f +12784,973p40c03,4,1,f +12784,973px138c01,4,1,f +12785,3068b,29,1,f +12785,3710,15,2,f +12785,3839b,71,2,f +12785,4623,14,1,f +12785,54200,29,2,f +12785,54200,29,1,t +12785,93095,29,1,f +12786,11215,0,1,f +12786,15391,0,2,f +12786,15392,72,2,f +12786,15392,72,1,t +12786,15573,0,3,f +12786,2397,72,1,f +12786,2412b,36,6,f +12786,2419,72,2,f +12786,2432,72,2,f +12786,2817,0,2,f +12786,3020,72,1,f +12786,3022,71,1,f +12786,3023,72,4,f +12786,30374,36,2,f +12786,30408pr0009b,148,2,f +12786,30561,0,2,f +12786,30602,0,2,f +12786,3070b,0,1,f +12786,3070b,0,1,t +12786,3626b,4,2,f +12786,3626cpr1149,78,2,f +12786,3747a,0,1,f +12786,3795,0,1,f +12786,3832,71,1,f +12786,44568,71,2,f +12786,44570,71,2,f +12786,44676,0,2,f +12786,50231,0,2,f +12786,59900,36,2,f +12786,6005,0,1,f +12786,60470a,71,2,f +12786,60897,72,2,f +12786,6091,0,5,f +12786,61184,71,2,f +12786,6141,36,1,t +12786,6141,36,11,f +12786,63965,72,2,f +12786,64644,71,2,f +12786,87079,0,2,f +12786,87087,0,2,f +12786,87994,71,1,t +12786,87994,71,2,f +12786,970c00,0,2,f +12786,970c00pr0810,148,2,f +12786,973pr2915c01,148,2,f +12786,973pr2916c01,0,2,f +12786,99206,0,1,f +12787,10928,72,2,f +12787,15413,0,2,f +12787,15573,71,1,f +12787,16039,9999,1,t +12787,2736,71,2,f +12787,2780,0,2,t +12787,2780,0,59,f +12787,2819,71,1,f +12787,2850b,71,6,f +12787,2851,14,6,f +12787,2852,71,6,f +12787,2853,14,2,f +12787,2854,19,2,f +12787,2877,0,2,f +12787,3005,71,2,f +12787,3024,71,1,t +12787,3024,71,2,f +12787,32013,71,6,f +12787,32014,0,2,f +12787,32015,71,2,f +12787,32034,71,6,f +12787,32039,0,4,f +12787,32054,4,2,f +12787,32056,0,4,f +12787,32056,71,4,f +12787,32062,4,4,f +12787,32063,0,8,f +12787,32072,14,2,f +12787,32073,71,5,f +12787,32123b,71,7,f +12787,32123b,14,4,f +12787,32123b,71,1,t +12787,32123b,14,1,t +12787,32138,71,1,f +12787,32140,0,7,f +12787,32184,71,11,f +12787,32269,0,2,f +12787,32270,0,4,f +12787,32271,73,2,f +12787,32278,0,4,f +12787,32293,0,1,f +12787,32316,71,4,f +12787,32316,0,2,f +12787,32333,71,2,f +12787,32523,71,1,f +12787,32523,0,6,f +12787,32525,0,5,f +12787,32526,1,6,f +12787,32557,0,2,f +12787,33299a,0,3,f +12787,33299a,71,2,f +12787,3673,71,6,f +12787,3701,71,1,f +12787,3705,0,7,f +12787,3706,0,1,f +12787,3707,0,2,f +12787,3713,4,10,f +12787,3713,4,1,t +12787,3713,71,5,f +12787,3713,71,1,t +12787,3749,19,1,f +12787,40490,71,5,f +12787,41677,71,4,f +12787,42003,72,5,f +12787,4274,1,13,f +12787,4274,1,1,t +12787,43093,1,15,f +12787,44294,71,4,f +12787,44309,0,2,f +12787,4519,71,11,f +12787,4740,71,2,f +12787,48989,71,2,f +12787,55013,72,3,f +12787,56145,71,4,f +12787,59426,72,1,f +12787,59443,0,9,f +12787,60483,71,2,f +12787,60484,0,2,f +12787,60485,71,2,f +12787,6091,71,2,f +12787,6141,80,1,t +12787,6141,47,1,t +12787,6141,80,2,f +12787,6141,47,2,f +12787,6141,36,1,t +12787,6141,36,4,f +12787,62462,71,4,f +12787,64391,73,1,f +12787,64392,73,1,f +12787,64682,73,1,f +12787,64683,73,1,f +12787,6536,0,8,f +12787,6558,1,25,f +12787,6587,28,3,f +12787,6589,19,1,t +12787,6589,19,1,f +12787,87082,71,2,f +12787,87083,72,5,f +12787,95343,71,6,f +12787,99008,19,2,f +12787,99773,71,4,f +12790,10201,4,2,f +12790,10201,71,1,f +12790,11439pat0001,46,1,t +12790,11439pat0001,46,2,f +12790,11610,19,1,f +12790,13608,179,1,f +12790,15554pr0001,4,1,f +12790,15712,72,2,f +12790,18746,191,1,f +12790,2412b,179,1,f +12790,2420,1,1,f +12790,2432,70,1,f +12790,24326,71,2,f +12790,30028,0,6,f +12790,3022,28,2,f +12790,3022,71,2,f +12790,3062bpr0007,27,1,f +12790,3068b,1,1,f +12790,3626cpr1901,78,1,f +12790,3626cpr1903,4,1,f +12790,3710,191,1,f +12790,3829c01,71,2,f +12790,3839b,71,1,f +12790,4081b,1,2,f +12790,41879a,4,1,f +12790,41879a,73,1,f +12790,44674,15,1,f +12790,4624,71,2,f +12790,47755,4,1,f +12790,54200,36,1,t +12790,54200,46,1,t +12790,54200,40,1,t +12790,54200,36,2,f +12790,54200,40,2,f +12790,54200,46,2,f +12790,59895,0,2,f +12790,60897,72,3,f +12790,6126a,41,1,f +12790,61409,1,2,f +12790,6141,179,4,f +12790,6141,47,1,t +12790,6141,179,1,t +12790,6141,47,2,f +12790,6254,15,1,f +12790,63868,4,2,f +12790,64644,71,1,f +12790,74967,71,2,f +12790,74967,14,4,f +12790,85861,71,1,t +12790,85861,71,3,f +12790,85984,4,1,f +12790,85984pr0004,4,1,f +12790,87994,71,1,t +12790,87994,71,1,f +12790,95678pr0003,15,1,f +12790,973pr3342c01,73,1,f +12790,973pr3344c01,4,1,f +12790,98138,41,1,t +12790,98138,41,2,f +12790,98138pr0035,179,1,t +12790,98138pr0035,179,1,f +12790,98834,4,1,f +12790,99206,1,1,f +12790,99780,71,1,f +12790,99781,15,1,f +12792,2357,14,2,f +12792,2431,0,2,f +12792,2432,0,1,f +12792,2452,0,2,f +12792,2454pa0,19,1,f +12792,2454px4,19,1,f +12792,2460,7,1,f +12792,2465px1,19,1,f +12792,2526,15,1,f +12792,2546,8,2,f +12792,2546,14,2,f +12792,2817,7,1,f +12792,3003,19,4,f +12792,3004,19,1,f +12792,30041,19,1,f +12792,30042,19,1,f +12792,3007,7,1,f +12792,3009,19,4,f +12792,3010,4,2,f +12792,3010,19,2,f +12792,3010,7,6,f +12792,30115,4,2,f +12792,30132,8,1,f +12792,30141,8,1,f +12792,30145,7,4,f +12792,30147,8,1,f +12792,30148,0,1,f +12792,30153,36,1,f +12792,30155,19,5,f +12792,30157,8,2,f +12792,30162,0,1,f +12792,30163,19,2,f +12792,30164p01,19,1,f +12792,30167,6,1,f +12792,30168px1,14,1,f +12792,30169,0,1,f +12792,30172,15,1,f +12792,3020,7,2,f +12792,3020,4,1,f +12792,3023,7,2,f +12792,3023,0,2,f +12792,3029,19,2,f +12792,3031,15,1,f +12792,3031,19,1,f +12792,3033,19,1,f +12792,3036,7,1,f +12792,3039,19,8,f +12792,3040b,14,4,f +12792,3041,0,1,f +12792,3044c,19,1,f +12792,3048c,0,1,f +12792,3062b,4,4,f +12792,3069bpa4,15,1,f +12792,3460,7,2,f +12792,3483,0,5,f +12792,3626bpa3,14,1,f +12792,3626bpa7,14,1,f +12792,3626bpr0895,15,1,f +12792,3659,0,1,f +12792,3665,7,2,f +12792,3666,0,2,f +12792,3700,0,1,f +12792,3710,7,1,f +12792,3710,0,2,f +12792,3795,7,1,f +12792,3829c01,7,1,f +12792,3832,0,2,f +12792,3841,8,1,f +12792,3937,1,1,f +12792,3938,14,1,f +12792,4079,2,1,f +12792,4085c,7,2,f +12792,4085c,0,2,f +12792,4162,7,2,f +12792,4460a,0,2,f +12792,4589,42,1,f +12792,4859,0,1,f +12792,4865a,0,4,f +12792,4865a,4,1,f +12792,6111,8,3,f +12792,6112,7,1,f +12792,6126a,57,2,f +12792,6141,46,2,f +12792,6141,4,2,f +12792,6141,47,1,f +12792,6260,15,1,f +12792,6265,15,2,f +12792,6266,15,2,f +12792,6541,7,2,f +12792,6587,8,2,f +12792,970c00,0,1,f +12792,970c00,7,1,f +12792,973pa7c01,19,1,f +12792,973pb0391c01,19,1,f +12792,case1,82,1,t +12793,11090,0,2,f +12793,11092,70,2,f +12793,11455,0,2,f +12793,15100,0,2,f +12793,15208,0,1,f +12793,15406,0,1,f +12793,15573,0,2,f +12793,15706,0,2,f +12793,22385pr0003,46,1,f +12793,22385pr0018,33,1,f +12793,22385pr0071,36,1,f +12793,22409,0,1,f +12793,22411,0,1,f +12793,22495,148,1,f +12793,23861,36,1,f +12793,2540,4,1,f +12793,2780,0,2,f +12793,2780,0,1,t +12793,3004,4,1,f +12793,3021,0,2,f +12793,3022,25,1,f +12793,3023,182,1,f +12793,3023,14,1,f +12793,32013,320,2,f +12793,3626cpr1820,4,1,f +12793,3713,71,1,t +12793,3713,71,2,f +12793,3937,0,2,f +12793,41530,182,2,f +12793,41769,4,1,f +12793,41770,4,1,f +12793,46667,41,2,f +12793,48729b,0,1,f +12793,48729b,0,1,t +12793,59426,72,2,f +12793,59900,182,2,f +12793,6134,71,2,f +12793,62462,320,2,f +12793,64567,0,1,f +12793,64567,0,1,t +12793,64867,182,1,f +12793,85984,4,2,f +12793,87580,320,2,f +12793,87994,0,1,t +12793,87994,0,1,f +12793,88072,71,2,f +12793,970c00pr0987,0,1,f +12793,973pr3212c01,320,1,f +12793,98313,320,1,f +12794,11153,71,2,f +12794,11153,15,1,f +12794,11211,4,1,f +12794,11215,71,2,f +12794,11303,4,2,f +12794,14045,0,1,f +12794,14045,0,1,t +12794,2412b,0,3,f +12794,2431,2,1,f +12794,2431,4,1,f +12794,2432,71,1,f +12794,2445,4,1,f +12794,2446,4,1,f +12794,2447,40,1,f +12794,2447,40,1,t +12794,2456,72,1,f +12794,2460,0,2,f +12794,2926,0,2,f +12794,3001,72,2,f +12794,3001,71,2,f +12794,30029,0,1,f +12794,3003,71,1,f +12794,3004,2,3,f +12794,3009,2,4,f +12794,3020,0,3,f +12794,3020,2,6,f +12794,3020,15,1,f +12794,3021,72,1,f +12794,3021,15,1,f +12794,3021,4,3,f +12794,3022,72,1,f +12794,3022,15,1,f +12794,3022,4,1,f +12794,3023,36,7,f +12794,3023,4,4,f +12794,3023,72,1,f +12794,3023,15,7,f +12794,3023,2,14,f +12794,3023,71,3,f +12794,3024,15,1,t +12794,3024,15,1,f +12794,30261,15,1,f +12794,3027,2,1,f +12794,3032,15,1,f +12794,3034,15,1,f +12794,3034,4,1,f +12794,3034,2,4,f +12794,3036,2,1,f +12794,30374,15,1,f +12794,30414,72,3,f +12794,3068b,15,4,f +12794,3068b,71,1,f +12794,3068b,2,1,f +12794,3069b,4,1,f +12794,3069b,15,3,f +12794,3069b,2,2,f +12794,3069b,0,1,f +12794,32028,0,6,f +12794,3622,71,2,f +12794,3623,15,4,f +12794,3623,2,4,f +12794,3626cpr0389,14,1,f +12794,3626cpr0498,14,1,f +12794,3626cpr0499,14,1,f +12794,3666,15,1,f +12794,3666,2,1,f +12794,3666,4,1,f +12794,3709,72,1,f +12794,3710,2,4,f +12794,3710,15,6,f +12794,3710,4,4,f +12794,3710,0,1,f +12794,3747b,71,1,f +12794,3749,19,1,f +12794,3794b,4,3,f +12794,3795,15,3,f +12794,3795,72,1,f +12794,3821,2,1,f +12794,3822,2,1,f +12794,3829c01,4,2,f +12794,3832,0,1,f +12794,3962b,0,1,f +12794,4162,15,1,f +12794,4162,2,3,f +12794,4176,40,1,f +12794,42610,71,5,f +12794,44301a,0,2,f +12794,44302a,0,2,f +12794,4477,2,6,f +12794,4488,71,4,f +12794,4536,15,2,f +12794,47457,71,1,f +12794,47720,0,2,f +12794,4865b,0,2,f +12794,4865b,15,2,f +12794,50745,15,2,f +12794,51011,0,5,f +12794,51739,15,2,f +12794,52031,2,1,f +12794,54200,15,3,f +12794,54200,47,1,t +12794,54200,4,1,f +12794,54200,2,1,t +12794,54200,47,2,f +12794,54200,4,1,t +12794,54200,15,1,t +12794,54200,2,2,f +12794,58380,2,2,f +12794,58381,2,2,f +12794,6014b,15,8,f +12794,604547,0,1,f +12794,604548,0,1,f +12794,604549,0,1,f +12794,604550,0,1,f +12794,604551,0,1,f +12794,604552,0,1,f +12794,604553,0,1,f +12794,604614,0,1,f +12794,604615,0,1,f +12794,60470a,15,1,f +12794,60470a,71,2,f +12794,60479,4,2,f +12794,60479,15,4,f +12794,60581,2,6,f +12794,60581,0,1,f +12794,60583b,2,2,f +12794,6141,46,4,f +12794,6141,36,4,f +12794,6141,36,2,t +12794,6141,46,1,t +12794,6141,182,1,t +12794,6141,182,2,f +12794,6180,15,1,f +12794,6191,15,1,f +12794,63965,15,1,f +12794,63965,15,1,t +12794,6636,72,1,f +12794,73983,2,2,f +12794,85984,0,1,f +12794,85984,2,5,f +12794,87079,2,1,f +12794,87087,15,4,f +12794,87544,2,6,f +12794,87552,15,2,f +12794,87609,2,1,f +12794,87697,0,8,f +12794,88930,15,2,f +12794,92088,15,1,f +12794,92099,72,1,f +12794,92410,4,1,f +12794,93273,2,2,f +12794,93274,71,1,f +12794,93589,15,1,f +12794,970x021,2,3,f +12794,973pr0656c01,15,3,f +12794,98138,71,2,f +12794,98138,71,1,t +12795,2446,15,1,f +12795,2447,40,1,t +12795,2447,40,1,f +12795,2460,15,1,f +12795,2540,1,1,f +12795,3022,1,1,f +12795,30236,0,1,f +12795,30332,0,1,f +12795,3040b,15,2,f +12795,30602,15,1,f +12795,32013,1,1,f +12795,32064b,15,1,f +12795,3626bpr0680,14,1,f +12795,3673,71,1,f +12795,3673,71,1,t +12795,3795,1,1,f +12795,3829c01,14,1,f +12795,3962b,0,1,f +12795,4360,0,1,f +12795,43713,15,1,f +12795,52501,15,2,f +12795,54200,33,2,f +12795,54200,33,1,t +12795,59426,72,1,f +12795,6070,40,1,f +12795,60897,1,2,f +12795,6141,36,1,f +12795,6141,46,1,t +12795,6141,46,1,f +12795,6141,36,1,t +12795,92842,0,1,f +12795,970c00,0,1,f +12795,973pr1693c01,0,1,f +12796,2412b,71,5,f +12796,2440,25,2,f +12796,2540,71,4,f +12796,2555,0,6,f +12796,2780,0,12,f +12796,2780,0,1,t +12796,2877,0,2,f +12796,3001,0,2,f +12796,3002,15,2,f +12796,3002,14,1,f +12796,3003,1,1,f +12796,3009,27,2,f +12796,30150,70,1,f +12796,30191,71,1,f +12796,3020,27,3,f +12796,3021,25,1,f +12796,3023,71,4,f +12796,3023,25,8,f +12796,3024,47,2,f +12796,3031,27,1,f +12796,3034,72,5,f +12796,30367b,27,6,f +12796,30374,70,1,f +12796,30385,36,2,f +12796,30414,72,3,f +12796,3062b,71,4,f +12796,3069b,0,11,f +12796,3069b,27,9,f +12796,3070b,0,3,f +12796,3070b,0,1,t +12796,32000,14,1,f +12796,32000,72,2,f +12796,32018,71,2,f +12796,32064b,72,3,f +12796,32140,27,1,f +12796,32271,71,2,f +12796,32525,27,1,f +12796,32556,19,2,f +12796,3622,27,2,f +12796,3623,72,4,f +12796,3626bpr0561,14,1,f +12796,3665,72,2,f +12796,3666,27,6,f +12796,3684,27,2,f +12796,3700,71,2,f +12796,3701,19,9,f +12796,3707,0,2,f +12796,3710,27,8,f +12796,3710,15,2,f +12796,3713,4,2,t +12796,3713,4,10,f +12796,3794b,72,4,f +12796,3829c01,71,1,f +12796,3837,72,1,f +12796,3841,72,1,f +12796,3941,27,8,f +12796,3941,71,2,f +12796,4070,19,2,f +12796,4070,27,4,f +12796,41334,72,1,f +12796,4150,71,3,f +12796,4151b,72,1,f +12796,4185,27,7,f +12796,41862,71,2,f +12796,42023,72,2,f +12796,43093,1,8,f +12796,44301a,0,2,f +12796,44302a,72,2,f +12796,44728,72,1,f +12796,4589,70,2,f +12796,52031,27,1,f +12796,53992,0,2,f +12796,54200,27,1,t +12796,54200,27,2,f +12796,56145,0,7,f +12796,57585,71,1,f +12796,59426,72,6,f +12796,60470a,0,1,f +12796,60478,15,2,f +12796,61068,27,1,f +12796,61072,135,1,f +12796,6134,0,2,f +12796,61409,27,12,f +12796,6141,47,1,t +12796,6141,71,4,f +12796,6141,47,4,f +12796,6141,71,1,t +12796,64450,0,1,f +12796,64728,4,3,f +12796,64783,72,2,f +12796,64784pat01,33,1,f +12796,64785,72,1,f +12796,6541,0,9,f +12796,6558,1,2,f +12796,6587,72,3,f +12796,6628,0,2,f +12796,85543,15,1,f +12796,8707stk01,9999,1,t +12796,970c00pr0122,1,1,f +12796,973pr1433c01,71,1,f +12797,2412b,72,7,f +12797,2431pr0032,70,2,f +12797,2436,71,4,f +12797,2444,71,4,f +12797,2445,0,1,f +12797,2456,70,2,f +12797,2555,72,2,f +12797,2714a,71,3,f +12797,2723,0,2,f +12797,2780,0,18,f +12797,2780,0,2,t +12797,3003,15,1,f +12797,3006,70,1,f +12797,3010,15,1,f +12797,30104,72,2,f +12797,30136,70,10,f +12797,30137,70,10,f +12797,3020,71,14,f +12797,3021,72,1,f +12797,3022,0,4,f +12797,3023,72,6,f +12797,3027,0,2,f +12797,30293pat0002,72,2,f +12797,30294pat0001,72,2,f +12797,3034,0,1,f +12797,30364,71,2,f +12797,3045,72,2,f +12797,3048c,0,6,f +12797,30503,0,2,f +12797,30552,0,2,f +12797,30553,0,2,f +12797,3062b,57,6,f +12797,3062b,70,2,f +12797,32000,0,1,f +12797,32013,72,2,f +12797,32039,71,3,f +12797,32054,71,3,f +12797,32062,4,1,t +12797,32062,4,8,f +12797,32073,71,4,f +12797,32123b,71,8,f +12797,32123b,71,1,t +12797,32174,272,3,f +12797,32184,71,2,f +12797,32250,72,4,f +12797,32278,0,4,f +12797,32316,72,6,f +12797,32449,0,2,f +12797,32506,135,2,f +12797,32525,72,2,f +12797,32556,71,4,f +12797,32558pat0001,4,1,f +12797,3460,70,1,f +12797,3622,70,1,f +12797,3623,0,4,f +12797,3673,71,1,t +12797,3673,71,6,f +12797,3700,71,4,f +12797,3701,0,4,f +12797,3705,0,3,f +12797,3708,0,1,f +12797,3710,71,1,f +12797,3710,70,2,f +12797,3713,4,2,t +12797,3713,4,8,f +12797,3747a,272,2,f +12797,3795,70,5,f +12797,3832,70,2,f +12797,3937,71,4,f +12797,3938,15,2,f +12797,3941,0,5,f +12797,3960pr0006,19,4,f +12797,4032a,70,1,f +12797,40378,0,1,f +12797,40379,0,1,f +12797,40379,135,6,f +12797,40379,272,4,f +12797,40393,72,2,f +12797,40490,0,6,f +12797,4085c,15,4,f +12797,4095,70,2,f +12797,41669,36,2,f +12797,41670,272,2,f +12797,41677,72,3,f +12797,41678,0,3,f +12797,41769,70,3,f +12797,41770,70,3,f +12797,42003,4,1,f +12797,4274,71,2,t +12797,4274,71,24,f +12797,43093,1,10,f +12797,43710,272,2,f +12797,43711,272,2,f +12797,43713,272,2,f +12797,44136,0,2,f +12797,44302a,15,2,f +12797,44728,72,2,f +12797,4477,70,2,f +12797,4497,135,3,f +12797,4519,71,7,f +12797,4697b,71,4,f +12797,4697b,71,1,t +12797,47296,272,4,f +12797,47300,72,2,f +12797,47397,70,1,f +12797,47398,70,1,f +12797,47430,135,2,f +12797,47432,0,2,f +12797,47452,272,4,f +12797,47454,272,2,f +12797,47455,0,11,f +12797,47456,135,3,f +12797,47457,135,6,f +12797,48169,72,4,f +12797,48171,72,1,f +12797,4871,272,2,f +12797,48933,72,1,f +12797,50602,135,4,f +12797,50923,72,3,f +12797,51342pat0005,272,2,f +12797,53451,15,34,f +12797,53451,15,2,t +12797,53456,135,1,f +12797,53456,272,1,f +12797,53705,132,2,f +12797,54175,135,2,f +12797,54273,135,1,f +12797,55706pat0001,272,2,f +12797,55817,72,4,f +12797,6016,72,1,f +12797,6019,71,2,f +12797,6134,0,2,f +12797,6222,70,4,f +12797,6536,0,6,f +12797,6538b,4,3,f +12797,6558,0,13,f +12797,6587,72,3,f +12797,7021stk01,9999,1,t +12798,10052,71,1,f +12798,10201,70,5,f +12798,10247,0,2,f +12798,11010,334,4,f +12798,11010,334,2,t +12798,11055,15,1,f +12798,11055,71,2,f +12798,11090,72,2,f +12798,11156,297,1,t +12798,11156,297,2,f +12798,11203,19,1,f +12798,11213,322,2,f +12798,11215,71,2,f +12798,11477,1,1,f +12798,11477,308,10,f +12798,11609,484,3,f +12798,11609,191,1,t +12798,11609,484,1,t +12798,11609,191,2,f +12798,11833,84,1,f +12798,14413,0,1,f +12798,14707,70,4,f +12798,14716,308,5,f +12798,14719,15,2,f +12798,14719,71,19,f +12798,14769,19,1,f +12798,14769,71,5,f +12798,14769,297,2,f +12798,15068,72,1,f +12798,15070,15,4,f +12798,15070,15,1,t +12798,15207,70,2,f +12798,15210,15,1,f +12798,15341,297,8,f +12798,15395,15,1,f +12798,15397,70,1,f +12798,15535,72,5,f +12798,15573,70,4,f +12798,15573,0,4,f +12798,15672,15,1,f +12798,15672,28,4,f +12798,15706,70,6,f +12798,15712,297,1,f +12798,15712,320,4,f +12798,15712,0,5,f +12798,15744,297,1,f +12798,18575,19,1,f +12798,18587,71,1,f +12798,18588,0,1,f +12798,18674,70,1,f +12798,18980,71,2,f +12798,19121,378,1,f +12798,19857pat0001,2,1,f +12798,19857pat0002,0,1,f +12798,19857pat0003,0,1,f +12798,19857pat0004,0,1,f +12798,19857pat0005,0,1,f +12798,19857pat0006,320,1,f +12798,21765,47,1,f +12798,2357,72,11,f +12798,2357,4,3,f +12798,2357,73,10,f +12798,2412b,70,3,f +12798,2412b,72,2,f +12798,2417,484,5,f +12798,2420,0,6,f +12798,2420,70,17,f +12798,2420,72,8,f +12798,2420,28,1,f +12798,2423,320,2,f +12798,2431,308,19,f +12798,2431,72,1,f +12798,2431,0,10,f +12798,2432,70,1,f +12798,2450,379,4,f +12798,2450,71,4,f +12798,2450,320,4,f +12798,2454a,19,2,f +12798,2454a,378,6,f +12798,2454a,72,1,f +12798,2456,72,2,f +12798,2460,4,1,f +12798,2489,308,1,f +12798,2530,72,1,f +12798,2530,72,1,t +12798,2566,0,2,f +12798,2614,0,2,f +12798,2639,72,2,f +12798,2780,0,1,t +12798,2780,0,3,f +12798,2921,4,24,f +12798,3001,378,4,f +12798,3001,72,7,f +12798,3002,0,2,f +12798,3003,72,10,f +12798,3004,72,3,f +12798,3004,73,17,f +12798,3004,320,30,f +12798,3004,4,8,f +12798,3004,14,3,f +12798,3005,320,20,f +12798,3005,4,6,f +12798,3005,378,5,f +12798,3005,73,18,f +12798,3008,72,1,f +12798,3008,4,2,f +12798,30088,0,1,f +12798,30089,0,1,f +12798,3009,0,1,f +12798,3009,72,2,f +12798,3009,320,2,f +12798,3010,73,10,f +12798,3010,70,1,f +12798,3010,320,6,f +12798,30115,4,1,f +12798,30133,4,1,f +12798,30136,308,2,f +12798,30137,70,3,f +12798,30145,71,1,f +12798,30150,70,3,f +12798,30173b,0,5,f +12798,30173b,179,1,t +12798,30173b,297,2,f +12798,30173b,297,2,t +12798,30173b,0,4,t +12798,30173b,179,1,f +12798,3020,272,1,f +12798,3020,72,14,f +12798,3020,70,4,f +12798,3021,71,2,f +12798,3021,1,2,f +12798,3021,19,2,f +12798,3021,72,4,f +12798,3021,70,6,f +12798,3022,70,6,f +12798,3022,28,33,f +12798,3022,0,7,f +12798,3022,71,2,f +12798,3023,4,4,f +12798,3023,73,6,f +12798,3023,0,6,f +12798,3023,70,17,f +12798,3023,71,13,f +12798,3024,297,1,t +12798,3024,297,4,f +12798,3030,70,1,f +12798,3031,70,3,f +12798,3031,72,2,f +12798,3031,0,1,f +12798,3033,70,1,f +12798,3033,28,2,f +12798,3034,28,2,f +12798,3034,70,2,f +12798,3035,28,2,f +12798,30357,70,6,f +12798,30357,19,1,f +12798,30374,70,1,f +12798,30374,297,1,f +12798,30375,308,1,f +12798,30395,72,1,f +12798,3040b,73,4,f +12798,3040b,0,8,f +12798,3040b,320,4,f +12798,30414,72,6,f +12798,3043,0,1,f +12798,3045,0,6,f +12798,3049c,308,1,f +12798,30503,0,12,f +12798,30503,70,2,f +12798,30504,322,2,f +12798,30553,0,3,f +12798,30602,4,1,f +12798,3062b,4,6,f +12798,3062b,70,8,f +12798,3062b,308,4,f +12798,3062b,19,15,f +12798,3068b,0,2,f +12798,3068b,14,1,f +12798,3069b,71,3,f +12798,3069b,82,1,f +12798,3069b,272,2,f +12798,3069b,73,3,f +12798,3069b,15,4,f +12798,3069bpr0055,15,1,f +12798,3070b,70,2,f +12798,3070b,71,3,t +12798,3070b,70,1,t +12798,3070b,71,14,f +12798,3070b,4,1,t +12798,3070b,73,1,f +12798,3070b,73,1,t +12798,3070b,72,12,f +12798,3070b,72,2,t +12798,3070b,320,3,f +12798,3070b,320,1,t +12798,3070b,4,4,f +12798,3070bpr0001,34,1,f +12798,3070bpr0001,34,1,t +12798,32001,15,1,f +12798,32016,0,6,f +12798,32062,4,8,f +12798,32064a,0,11,f +12798,32064a,72,4,f +12798,32073,71,1,f +12798,32123b,14,2,t +12798,32123b,14,2,f +12798,32124,0,1,f +12798,32124,70,20,f +12798,32235,4,2,f +12798,3245c,4,8,f +12798,3245c,378,4,f +12798,3245c,72,2,f +12798,32474,80,1,f +12798,32532,71,2,f +12798,3298,0,4,f +12798,3299,0,34,f +12798,33009,297,1,f +12798,33009,70,2,f +12798,33051,4,2,f +12798,33051,10,1,f +12798,33121,191,1,f +12798,33291,10,1,t +12798,33291,10,1,f +12798,33291,70,3,t +12798,33291,70,19,f +12798,33291,4,8,f +12798,33291,4,1,t +12798,33299a,0,1,f +12798,3460,308,21,f +12798,3460,4,2,f +12798,3622,72,4,f +12798,3622,0,7,f +12798,3623,0,8,f +12798,3623,19,1,f +12798,3623,72,4,f +12798,3623,4,2,f +12798,3623,70,7,f +12798,3626b,4,4,f +12798,3626b,71,1,f +12798,3626b,19,1,f +12798,3626bpr0745,14,1,f +12798,3626cpr0893,14,1,f +12798,3626cpr1087,14,1,f +12798,3626cpr1365,14,1,f +12798,3626cpr1366,14,1,f +12798,3626cpr1367,14,1,f +12798,3626cpr1537,14,1,f +12798,3626cpr1570,179,1,f +12798,3626cpr1580,14,1,f +12798,3626cpr1642,14,1,f +12798,3626cpr1775,14,1,f +12798,3626cpr1776,14,1,f +12798,3633,297,2,f +12798,3659,308,2,f +12798,3660,308,2,f +12798,3660,4,2,f +12798,3665,0,1,f +12798,3665,320,2,f +12798,3666,28,6,f +12798,3666,0,5,f +12798,3666,4,4,f +12798,3666,70,8,f +12798,3666,19,1,f +12798,3675,0,3,f +12798,3679,71,2,f +12798,3680,1,2,f +12798,3685,72,2,f +12798,37,297,2,f +12798,3700,70,2,f +12798,3701,70,7,f +12798,3705,0,1,f +12798,3708,0,1,f +12798,3709,71,1,f +12798,3709,4,1,f +12798,3710,4,2,f +12798,3710,72,4,f +12798,3710,320,4,f +12798,3710,70,8,f +12798,3710,0,14,f +12798,3713,4,4,f +12798,3713,4,1,t +12798,3737,0,2,f +12798,3738,4,2,f +12798,3741,326,13,f +12798,3741,326,3,t +12798,3747b,4,2,f +12798,3795,308,2,f +12798,3795,0,1,f +12798,3795,70,1,f +12798,3821,71,1,f +12798,3822,71,1,f +12798,3832,70,7,f +12798,3832,72,1,f +12798,3832,0,2,f +12798,3837,72,1,f +12798,3839b,0,2,f +12798,3839b,72,5,f +12798,3852b,191,1,f +12798,3899,4,1,f +12798,3899,47,1,f +12798,3937,1,2,f +12798,3937,72,4,f +12798,3957b,0,4,f +12798,3958,0,2,f +12798,40234,71,1,f +12798,4032a,70,64,f +12798,4032a,71,1,f +12798,4032a,19,1,f +12798,40378,308,2,f +12798,40379,4,4,f +12798,4070,70,12,f +12798,4150,72,5,f +12798,41535,71,4,f +12798,41769,71,3,f +12798,41770,71,3,f +12798,4216,320,16,f +12798,4218,0,34,f +12798,42446,0,1,t +12798,42446,0,1,f +12798,4274,1,2,t +12798,4274,1,16,f +12798,4286,71,6,f +12798,4287,0,12,f +12798,4287,70,2,f +12798,43093,1,2,f +12798,4342,19,1,f +12798,4342,84,2,f +12798,4349,0,1,f +12798,43888,70,4,f +12798,43892,308,2,f +12798,44300,72,1,f +12798,44301a,0,4,f +12798,4460b,72,1,f +12798,44728,70,11,f +12798,4477,70,8,f +12798,4477,72,2,f +12798,4477,0,1,f +12798,4489,70,2,f +12798,4497,0,2,f +12798,4510,72,4,f +12798,4519,71,1,f +12798,4522,0,1,f +12798,4599b,71,1,t +12798,4599b,71,1,f +12798,4600,0,1,f +12798,4738a,70,2,f +12798,4739a,70,2,f +12798,47457,308,2,f +12798,48092,84,4,f +12798,48336,71,1,f +12798,4865b,28,4,f +12798,48729b,0,1,t +12798,48729b,0,2,f +12798,50950,308,8,f +12798,51739,72,1,f +12798,51739,71,4,f +12798,53585,0,5,f +12798,54200,71,6,f +12798,54200,71,1,t +12798,54200,0,1,t +12798,54200,379,2,f +12798,54200,0,1,f +12798,54200,379,1,t +12798,57895pr0007,47,2,f +12798,57999,0,4,f +12798,6005,72,2,f +12798,60208,72,1,f +12798,60474,0,1,f +12798,60477,308,6,f +12798,60478,4,11,f +12798,60479,0,3,f +12798,60592,70,5,f +12798,60592,4,32,f +12798,60593,70,1,f +12798,60596,0,1,f +12798,6060,0,2,f +12798,60601pr0001,47,32,f +12798,60616b,71,1,f +12798,6083,72,2,f +12798,60897,1,5,f +12798,60897,72,3,f +12798,60897,70,4,f +12798,60897,19,1,f +12798,6091,72,4,f +12798,6106,28,4,f +12798,6111,72,1,f +12798,61252,297,2,f +12798,6126b,182,2,f +12798,6133,0,2,f +12798,6134,0,6,f +12798,6141,72,2,t +12798,6141,41,1,f +12798,6141,297,6,f +12798,6141,15,1,t +12798,6141,297,2,t +12798,6141,0,10,f +12798,6141,14,1,t +12798,6141,72,7,f +12798,6141,1,1,t +12798,6141,15,6,f +12798,6141,27,17,f +12798,6141,14,4,f +12798,6141,322,1,t +12798,6141,70,25,f +12798,6141,27,1,t +12798,6141,4,8,f +12798,6141,41,1,t +12798,6141,322,4,f +12798,6141,70,4,t +12798,6141,1,4,f +12798,6141,4,2,t +12798,6141,0,3,t +12798,61506,19,1,f +12798,61780,70,1,f +12798,6179,28,2,f +12798,6179,72,2,f +12798,61976,70,1,f +12798,62113,72,1,f +12798,6222,72,1,f +12798,6231,0,6,f +12798,6231,70,4,f +12798,6232,72,4,f +12798,62462,320,1,f +12798,62462,15,1,f +12798,62462,70,3,f +12798,6266,0,5,f +12798,6266,0,1,t +12798,62696,484,1,f +12798,62810,71,1,f +12798,62930,47,1,f +12798,63082,0,5,f +12798,63864,14,2,f +12798,63864,70,4,f +12798,63864,28,4,f +12798,63965,71,1,f +12798,64647,182,1,t +12798,64647,182,1,f +12798,64648,179,1,f +12798,64648,25,1,f +12798,6541,19,1,f +12798,6565,71,1,f +12798,6587,28,8,f +12798,6589,19,1,f +12798,6636,0,2,f +12798,6636,28,2,f +12798,6636,320,2,f +12798,73983,72,2,f +12798,75937,0,1,f +12798,85546,14,1,f +12798,85863,71,2,f +12798,85975,320,4,f +12798,85975,297,1,f +12798,85984,72,5,f +12798,85984,28,2,f +12798,85984,19,2,f +12798,87079,379,4,f +12798,87079,70,4,f +12798,87079,0,6,f +12798,87079,72,2,f +12798,87087,73,2,f +12798,87552,0,4,f +12798,87580,28,6,f +12798,87580,72,8,f +12798,87580,71,2,f +12798,87617,4,4,f +12798,87618,0,3,f +12798,87620,71,4,f +12798,88072,4,2,f +12798,88286,72,1,f +12798,88292,0,4,f +12798,88292,4,4,f +12798,88646,0,1,f +12798,89523,19,1,f +12798,90194,72,1,f +12798,90258,72,10,f +12798,90398,320,2,f +12798,90398,320,1,t +12798,91405,19,1,f +12798,91405,28,3,f +12798,91988,72,1,f +12798,92280,0,12,f +12798,92280,71,3,f +12798,92280,378,2,f +12798,92582,71,2,f +12798,92584,70,2,f +12798,92584,0,4,f +12798,92590,28,2,f +12798,92593,72,1,f +12798,92593,15,2,f +12798,92593,326,2,f +12798,92593,71,2,f +12798,92593,272,1,f +12798,92946,0,10,f +12798,92946,72,6,f +12798,92947,308,30,f +12798,93058,297,2,f +12798,93058,297,1,t +12798,93059,297,1,f +12798,93059,179,1,f +12798,93069,15,1,f +12798,93231,70,1,f +12798,93273,70,1,f +12798,93274,72,12,f +12798,93551pr0001,84,1,f +12798,93552pr0001,70,1,t +12798,93552pr0001,70,1,f +12798,95342pr0001,15,2,f +12798,95343,71,1,f +12798,95344,28,1,f +12798,95344,28,1,t +12798,96874,25,1,t +12798,970c00,379,1,f +12798,970c00,85,1,f +12798,970c00,308,1,f +12798,970c00,71,1,f +12798,970c00,378,1,f +12798,970c00pr0616,308,1,f +12798,970c00pr0875,320,1,f +12798,970c00pr0876,0,1,f +12798,970c00pr0877,0,1,f +12798,970c00pr0879,0,1,f +12798,970c00pr0881,0,1,f +12798,970c00pr0889,0,1,f +12798,970c00pr0927,15,1,f +12798,973c47,71,1,f +12798,973pr0070c01,326,1,f +12798,973pr2875c01,2,1,f +12798,973pr3030c01,0,1,f +12798,973pr3032c01,0,1,f +12798,973pr3033c01,0,1,f +12798,973pr3034c01,0,1,f +12798,973pr3035c01,0,1,f +12798,973pr3036c01,320,1,f +12798,973pr3128c01,19,1,f +12798,973pr3131c01,70,1,f +12798,973pr3140c01,85,1,f +12798,973pr3142c01,19,1,f +12798,98100,71,1,f +12798,98132,297,1,f +12798,98132,0,5,f +12798,98138,71,2,t +12798,98138,71,8,f +12798,98138pr0018,84,2,f +12798,98138pr0018,84,1,t +12798,98283,72,4,f +12798,98283,71,11,f +12798,98289,179,1,f +12798,98313,320,4,f +12798,98371,308,1,f +12798,98383,321,1,f +12798,98560,72,2,f +12798,99021,72,4,f +12798,99207,0,2,f +12798,99780,0,7,f +12799,2447,40,2,f +12799,30162,71,1,f +12799,30171,0,2,f +12799,3626bpr0685,14,1,f +12799,3626cpr0386,14,1,f +12799,3626cpr0892,14,1,f +12799,3626cpr0933,14,1,f +12799,3962b,0,2,f +12799,4083,15,1,f +12799,4349,0,2,f +12799,4449,0,1,f +12799,6141,46,2,f +12799,61482,71,2,f +12799,62810,0,1,f +12799,64567,71,2,f +12799,88286,308,1,f +12799,92586pr0001,84,1,f +12799,93106,0,1,f +12799,93160,15,1,f +12799,970c00pr0406,272,4,f +12799,973pr2190c01,73,4,f +12800,2343,47,1,f +12800,2362b,0,1,f +12800,2412b,0,2,f +12800,2431,72,2,f +12800,2877,2,4,f +12800,2878c01,71,4,f +12800,2920,0,1,f +12800,2922,0,1,f +12800,3001,15,4,f +12800,3004,0,1,f +12800,3004,15,5,f +12800,3009,15,2,f +12800,3009,2,6,f +12800,3010,71,6,f +12800,30136,72,8,f +12800,3020,71,4,f +12800,3021,4,1,f +12800,3023,1,3,f +12800,30283,71,2,f +12800,3031,71,2,f +12800,3032,72,2,f +12800,30363pb007,72,1,f +12800,3037,15,4,f +12800,3040b,15,2,f +12800,30602,0,1,f +12800,3066,40,2,f +12800,3068b,1,1,f +12800,3069bpb029,15,1,f +12800,3069bpr0090,72,2,f +12800,3070b,36,1,t +12800,3070b,36,2,f +12800,32083,15,2,f +12800,3245b,15,2,f +12800,3298,4,1,f +12800,3622,15,4,f +12800,3666,72,1,f +12800,3710,1,3,f +12800,3794a,15,3,f +12800,3795,15,2,f +12800,4022,71,1,f +12800,4025,0,2,f +12800,4070,2,2,f +12800,4079,4,3,f +12800,4162,72,2,f +12800,41747,15,1,f +12800,41748,15,1,f +12800,42022,15,2,f +12800,44126,15,1,f +12800,44300,71,1,f +12800,44301a,0,1,f +12800,44302a,0,1,f +12800,4449,70,1,f +12800,45705,40,1,f +12800,45706pb01,15,1,f +12800,46309,46,1,f +12800,4864b,40,10,f +12800,6111,15,4,f +12800,6584,72,1,f +12800,73092,0,1,f +12801,3001a,15,16,f +12801,3002a,15,7,f +12801,3003,15,12,f +12801,3004,15,6,f +12801,3006,15,2,f +12801,3007,15,2,f +12802,10052,71,1,f +12802,2420,71,1,f +12802,3005,72,3,f +12802,30238,0,1,f +12802,3024,71,1,f +12802,3024,71,1,t +12802,3031,72,1,f +12802,3040b,72,2,f +12802,3068bpr0139a,19,1,f +12802,3626cpr0895,15,1,f +12802,3626cpr0972,78,1,f +12802,4085c,71,2,f +12802,4460b,72,3,f +12802,4497,0,1,f +12802,50231,72,1,f +12802,54200,72,2,f +12802,54200,72,1,t +12802,55236,288,1,f +12802,61252,72,1,f +12802,6126b,57,1,f +12802,6131,72,1,f +12802,63965,70,1,f +12802,64644,308,1,f +12802,970c00,72,1,f +12802,973pr2053c01,72,1,f +12802,98370,179,1,f +12803,11291,1,1,f +12803,11303,1,1,f +12803,11477,72,2,f +12803,11477,1,2,f +12803,14520,72,2,f +12803,2412b,0,4,f +12803,2431,1,1,f +12803,2431,2,4,f +12803,2432,14,1,f +12803,2436,14,1,f +12803,2437,40,1,f +12803,2569,0,2,f +12803,2569,0,1,t +12803,2736,71,5,f +12803,2780,0,1,t +12803,2780,0,1,f +12803,3001,1,2,f +12803,3004,15,1,f +12803,30157,71,2,f +12803,30162,72,2,f +12803,3020,0,4,f +12803,3020,1,2,f +12803,3023,4,4,f +12803,3024,182,1,t +12803,3024,182,4,f +12803,3040b,15,2,f +12803,30414,71,1,f +12803,3062b,14,1,f +12803,3069b,15,2,f +12803,3069b,182,3,f +12803,32009,4,1,f +12803,32028,2,4,f +12803,32028,71,2,f +12803,32034,0,1,f +12803,32062,4,2,f +12803,32123b,14,1,t +12803,32123b,14,2,f +12803,3622,15,2,f +12803,3623,2,2,f +12803,3626bpr0386,14,1,f +12803,3626cpr0891,14,1,f +12803,3659,15,1,f +12803,3665,15,2,f +12803,3666,72,2,f +12803,3666,2,1,f +12803,3666,15,2,f +12803,3701,71,2,f +12803,3710,15,2,f +12803,3710,0,2,f +12803,3749,19,3,f +12803,3795,15,2,f +12803,3821,1,1,f +12803,3822,1,1,f +12803,3829c01,15,1,f +12803,3829c01,4,1,f +12803,4006,0,1,f +12803,4070,2,8,f +12803,4176,41,1,f +12803,42003,4,2,f +12803,44301a,0,2,f +12803,44567a,71,2,f +12803,4477,15,2,f +12803,4522,0,1,f +12803,4599b,14,1,t +12803,4599b,14,1,f +12803,47457,4,1,f +12803,50745,1,4,f +12803,52031,15,2,f +12803,52036,72,1,f +12803,52037,72,1,f +12803,52501,1,2,f +12803,54200,2,1,t +12803,54200,47,4,f +12803,54200,2,8,f +12803,54200,36,4,f +12803,54200,36,2,t +12803,54200,47,2,t +12803,55981,71,4,f +12803,57783,40,1,f +12803,58090,0,4,f +12803,59900,14,2,f +12803,60081stk01,9999,1,f +12803,6014b,71,4,f +12803,60219,71,1,f +12803,60475b,15,4,f +12803,60481,15,2,f +12803,6112,0,2,f +12803,6157,71,2,f +12803,6231,1,2,f +12803,62810,308,1,f +12803,6636,71,2,f +12803,87083,72,1,f +12803,87580,72,1,f +12803,87697,0,4,f +12803,92593,71,1,f +12803,92907,0,1,f +12803,93273,72,1,f +12803,93571,72,1,f +12803,970c00,1,1,f +12803,970c00,19,1,f +12803,973pr1244c01,73,1,f +12803,973pr1617c01,2,1,f +12803,98138,182,6,f +12803,98138,182,1,t +12803,98138,46,1,t +12803,98138,46,2,f +12803,98281,15,1,f +12803,98282,72,2,f +12803,99780,15,2,f +12803,99781,71,4,f +12804,30171,0,1,f +12804,3069bpr0002,19,1,f +12804,3626bpr0685,14,1,f +12804,61482,71,1,t +12804,61482,71,1,f +12804,88646,0,1,f +12804,970c00,0,1,f +12804,973pr1647c01,19,1,f +12805,2654,19,3,f +12805,3004,28,1,f +12805,30162,72,2,f +12805,3022,19,2,f +12805,3023,28,6,f +12805,3024,28,1,f +12805,30357,19,2,f +12805,30565,28,2,f +12805,3069b,19,1,f +12805,3460,19,1,f +12805,3679,71,1,f +12805,3680,71,1,f +12805,3710,19,1,f +12805,3747b,19,1,f +12805,3794b,19,6,f +12805,4032a,19,1,f +12805,4589,19,1,f +12805,4595,71,1,f +12805,54200,19,5,f +12805,54200,19,1,t +12805,6019,19,2,f +12805,6091,19,1,f +12805,6141,19,1,t +12805,6141,19,2,f +12805,61678,19,1,f +12805,63965,71,1,f +12806,2512,14,1,f +12806,3004,0,1,f +12806,3010,14,1,f +12806,3022,0,2,f +12806,3022,14,1,f +12806,3023,14,2,f +12806,3034,0,1,f +12806,3626apr0001,14,1,f +12806,3710,14,1,f +12806,3821,14,1,f +12806,3822,14,1,f +12806,3823,47,1,f +12806,3829c01,14,1,f +12806,3836,6,1,f +12806,3837,8,1,f +12806,4070,14,2,f +12806,4084,0,4,f +12806,4085b,0,2,f +12806,4211,14,1,f +12806,4213,14,1,f +12806,4214,14,1,f +12806,4275b,0,2,f +12806,4485,1,1,f +12806,4531,0,2,f +12806,4600,0,2,f +12806,4624,14,4,f +12806,6141,47,2,f +12806,970c00,1,1,f +12806,973px61c01,15,1,f +12807,2357,72,1,f +12807,2412b,72,8,f +12807,2420,71,3,f +12807,2431,0,5,f +12807,2432,19,1,f +12807,2445,72,1,f +12807,2654,71,9,f +12807,2714a,71,2,f +12807,2730,0,12,f +12807,2780,0,7,t +12807,2780,0,31,f +12807,2817,71,3,f +12807,2825,0,4,f +12807,298c02,4,1,t +12807,298c02,4,1,f +12807,30135,0,1,f +12807,30157,71,1,f +12807,3020,72,10,f +12807,3021,0,6,f +12807,3023,72,10,f +12807,30283,72,1,f +12807,3030,0,1,f +12807,3031,71,2,f +12807,3035,72,3,f +12807,3036,0,1,f +12807,30363,72,2,f +12807,30364,71,1,f +12807,30365,71,1,f +12807,30368,0,1,f +12807,30374,36,2,f +12807,30386,71,3,f +12807,3040b,72,2,f +12807,3045,0,2,f +12807,30526,1,1,f +12807,30565,72,6,f +12807,30602,4,1,f +12807,3068b,0,2,f +12807,3069b,33,7,f +12807,32000,0,4,f +12807,32002,72,1,t +12807,32002,72,1,f +12807,32015,0,2,f +12807,32017,72,1,f +12807,32028,0,5,f +12807,32039,0,3,f +12807,32054,71,5,f +12807,32062,4,4,f +12807,32063,0,2,f +12807,32064b,72,6,f +12807,32072,14,2,f +12807,32123b,71,2,f +12807,32123b,71,1,t +12807,32291,0,1,f +12807,32316,0,1,f +12807,32348,72,4,f +12807,32523,72,2,f +12807,32530,0,8,f +12807,32531,0,1,f +12807,32532,0,1,f +12807,3298,0,1,f +12807,3622,71,2,f +12807,3623,71,2,f +12807,3626bpr0215,78,1,f +12807,3626bpr0515a,71,1,f +12807,3626bpr0516b,78,1,f +12807,3660,0,9,f +12807,3665,0,4,f +12807,3666,72,1,f +12807,3666,0,8,f +12807,3700,71,3,f +12807,3701,0,9,f +12807,3705,0,5,f +12807,3706,0,1,f +12807,3708,0,2,f +12807,3710,72,14,f +12807,3747b,72,2,f +12807,3749,19,4,f +12807,3795,0,12,f +12807,3894,72,5,f +12807,3895,72,4,f +12807,3901,0,1,f +12807,3941,72,1,f +12807,3943b,0,2,f +12807,3958,0,1,f +12807,4032a,72,3,f +12807,40490,0,1,f +12807,4070,71,2,f +12807,4162,72,10,f +12807,41678,71,2,f +12807,41747,0,1,f +12807,41747,72,1,f +12807,41748,0,1,f +12807,41748,72,1,f +12807,41769,0,3,f +12807,4185,71,4,f +12807,42022,0,6,f +12807,4274,1,5,t +12807,4274,1,27,f +12807,43093,1,13,f +12807,43710,72,2,f +12807,43710,0,2,f +12807,43711,72,2,f +12807,43711,0,2,f +12807,44126,0,1,f +12807,44375a,71,1,f +12807,44568,71,1,f +12807,4477,0,6,f +12807,4519,71,4,f +12807,45301,0,2,f +12807,4589,36,2,f +12807,4623,71,1,f +12807,47397,0,1,f +12807,47398,0,1,f +12807,47456,0,4,f +12807,47753,72,2,f +12807,4865a,19,2,f +12807,4868b,71,1,f +12807,50747pr0002a,40,1,f +12807,50950,0,4,f +12807,50955,0,5,f +12807,50956,0,5,f +12807,52107,0,2,f +12807,54200,72,3,t +12807,54200,72,10,f +12807,54384,0,4,f +12807,57028c01,71,1,f +12807,57796,72,1,f +12807,57899,0,2,f +12807,58846,0,2,f +12807,59443,71,5,f +12807,6005,0,2,f +12807,6019,4,1,f +12807,6090,0,1,f +12807,6093,19,1,f +12807,6180,0,6,f +12807,64567,71,2,f +12807,6553,71,1,f +12807,6558,1,1,f +12807,6636,0,5,f +12807,75535,4,2,f +12807,970c00,0,2,f +12807,970d07,0,1,f +12807,973pr1365c01,0,1,f +12807,973pr1367c01,0,1,f +12807,973pr1369bc01,0,1,f +12809,14226c31,0,1,f +12809,2376,0,1,f +12809,2432,14,2,f +12809,2445,0,1,f +12809,2456,1,1,f +12809,2456,14,3,f +12809,2456,4,2,f +12809,3001,25,4,f +12809,3001,14,4,f +12809,3001,2,4,f +12809,3001,1,4,f +12809,3001,73,4,f +12809,3001,15,4,f +12809,3001,4,4,f +12809,3002,25,4,f +12809,3002,1,2,f +12809,3002,2,2,f +12809,3002,15,2,f +12809,3002,4,2,f +12809,3003,1,8,f +12809,3003,2,4,f +12809,3003,14,4,f +12809,3003,25,6,f +12809,3003,73,4,f +12809,3003,4,8,f +12809,3004,14,4,f +12809,3004,0,4,f +12809,3004,73,4,f +12809,3004,4,4,f +12809,3004,15,4,f +12809,3004,2,4,f +12809,3004,25,3,f +12809,3005,15,4,f +12809,3005,14,4,f +12809,3005,0,4,f +12809,3005,73,4,f +12809,3005,2,4,f +12809,3005,4,4,f +12809,3005,25,4,f +12809,3005,1,4,f +12809,3006,0,2,f +12809,3006,4,2,f +12809,3006,14,2,f +12809,3007,15,1,f +12809,3008,1,8,f +12809,3009,15,1,f +12809,3009,1,1,f +12809,3010,2,4,f +12809,3010,15,2,f +12809,3010,25,4,f +12809,3010,73,4,f +12809,3010,1,4,f +12809,3010,4,4,f +12809,3020,0,2,f +12809,30350b,72,1,f +12809,3039,15,2,f +12809,3039,47,2,f +12809,30395,72,1,f +12809,3065,47,3,f +12809,3176,4,2,f +12809,3176,14,2,f +12809,3176,1,2,f +12809,3622,2,2,f +12809,3622,1,2,f +12809,3622,4,2,f +12809,3626bpr0387,14,1,f +12809,3641,0,4,f +12809,3660,1,3,f +12809,3660,4,3,f +12809,3666,73,4,f +12809,3684,14,3,f +12809,3700,1,2,f +12809,3710,0,2,f +12809,3710,14,2,f +12809,3795,14,1,f +12809,3829c01,14,1,f +12809,41334,0,1,f +12809,4589,71,2,f +12809,4600,71,2,f +12809,4624,71,4,f +12809,48336,0,1,f +12809,60474,0,1,f +12809,6141,36,1,t +12809,6141,34,1,t +12809,6141,34,2,f +12809,6141,36,2,f +12809,61485,0,1,f +12809,6212,1,2,f +12809,970x199,25,1,f +12809,973pr1160c01,1,1,f +12810,3021,15,4,f +12810,3024,47,1,t +12810,3024,47,34,f +12810,3623,15,56,f +12810,3666,15,4,f +12810,4081b,15,1,f +12810,4477,15,8,f +12811,2335,15,6,f +12811,2357,15,6,f +12811,2412b,71,29,f +12811,2412b,4,4,f +12811,2412b,19,11,f +12811,2419,15,4,f +12811,2420,72,7,f +12811,2420,15,10,f +12811,2431,15,25,f +12811,2431,72,4,f +12811,2431,320,12,f +12811,2432,14,1,f +12811,2432,0,7,f +12811,2440,15,1,f +12811,2444,72,8,f +12811,2447,0,2,f +12811,2447,0,1,t +12811,2456,15,2,f +12811,2458,19,2,f +12811,2460,4,8,f +12811,2476a,71,8,f +12811,2540,15,7,f +12811,2555,71,30,f +12811,2555,0,4,f +12811,2654,19,20,f +12811,2654,46,14,f +12811,2730,15,6,f +12811,2780,0,1,t +12811,2780,0,49,f +12811,2817,4,1,f +12811,2877,72,18,f +12811,298c02,71,1,t +12811,298c02,71,15,f +12811,30000,71,1,f +12811,3001,15,24,f +12811,3003,15,8,f +12811,3004,15,17,f +12811,3004,72,1,f +12811,3008,15,8,f +12811,3010,15,7,f +12811,3020,71,6,f +12811,3021,19,15,f +12811,3022,15,14,f +12811,3023,320,7,f +12811,3023,19,14,f +12811,3023,15,8,f +12811,30236,71,2,f +12811,3024,19,14,f +12811,3029,72,8,f +12811,3030,15,4,f +12811,3032,15,6,f +12811,3032,0,1,f +12811,3034,15,2,f +12811,3035,72,2,f +12811,30361dps1,15,1,f +12811,30362,15,2,f +12811,30363,15,4,f +12811,30367b,15,4,f +12811,30367cpr0006,71,1,f +12811,3039,15,22,f +12811,3039pr0002,15,2,f +12811,3039pr0005,15,2,f +12811,30409,70,1,f +12811,3040b,15,2,f +12811,30414,15,7,f +12811,3045,15,2,f +12811,30480,297,1,f +12811,30503,15,4,f +12811,30540,0,4,f +12811,3063b,15,4,f +12811,3065,47,7,f +12811,3068b,15,18,f +12811,3068b,72,2,f +12811,3068b,73,8,f +12811,3069b,71,14,f +12811,3069b,15,6,f +12811,3069bpr0070,0,8,f +12811,32013,71,4,f +12811,32028,71,4,f +12811,32054,4,2,f +12811,32073,71,2,f +12811,32524,72,2,f +12811,32526,72,2,f +12811,32530,72,2,f +12811,32531,71,2,f +12811,3298,15,5,f +12811,3455,15,2,f +12811,3460,72,2,f +12811,3622,15,20,f +12811,3626bpr0378,78,1,f +12811,3626bpr0513,78,1,f +12811,3626bpr0612,78,1,f +12811,3660,15,4,f +12811,3665,15,2,f +12811,3666,320,2,f +12811,3666,15,25,f +12811,3673,71,4,f +12811,3673,71,2,t +12811,3679,71,7,f +12811,3680,4,7,f +12811,3700,71,24,f +12811,3701,19,12,f +12811,3702,71,2,f +12811,3703,71,5,f +12811,3705,0,1,f +12811,3709,15,11,f +12811,3710,15,35,f +12811,3710,72,23,f +12811,3710,320,6,f +12811,3747b,15,10,f +12811,3749,19,4,f +12811,3795,72,5,f +12811,3832,72,5,f +12811,3832,15,1,f +12811,3937,4,6,f +12811,3938,71,1,f +12811,3941,19,8,f +12811,3956,0,2,f +12811,3957a,71,4,f +12811,3960,15,4,f +12811,3963,71,2,f +12811,4032a,72,22,f +12811,4070,15,10,f +12811,4079,0,2,f +12811,41677,72,4,f +12811,41767,320,2,f +12811,41768,320,2,f +12811,41769,15,2,f +12811,41769,72,2,f +12811,41770,72,2,f +12811,41770,15,2,f +12811,42610,71,4,f +12811,4274,1,13,f +12811,4274,1,1,t +12811,4282,15,7,f +12811,4349,0,2,f +12811,43722,15,2,f +12811,43723,15,2,f +12811,43857,0,2,f +12811,43898,15,4,f +12811,44294,71,8,f +12811,44302a,72,6,f +12811,44375a,320,2,f +12811,44375a,15,4,f +12811,44567a,0,10,f +12811,4460b,15,24,f +12811,44728,19,2,f +12811,45410,15,3,f +12811,45411,15,3,f +12811,4589,15,8,f +12811,4599b,0,2,f +12811,4740,15,4,f +12811,4740,72,4,f +12811,47457,15,1,f +12811,47543pr0001a,47,2,f +12811,47543pr0002,15,2,f +12811,48183,15,2,f +12811,4861,15,1,f +12811,4865a,71,4,f +12811,4865a,288,5,f +12811,4865a,15,2,f +12811,50745,15,6,f +12811,51739,15,4,f +12811,54200,71,11,f +12811,54200,288,4,f +12811,54200,15,2,t +12811,54200,288,2,t +12811,54200,15,36,f +12811,54200,71,1,t +12811,54383,320,2,f +12811,54383,72,2,f +12811,54384,320,2,f +12811,54384,72,2,f +12811,56145,71,11,f +12811,60208,15,20,f +12811,60208,320,2,f +12811,60470a,14,1,f +12811,60474,15,3,f +12811,60478,15,16,f +12811,60481,0,2,f +12811,6111,72,6,f +12811,61182,15,2,f +12811,61184,71,4,f +12811,6134,0,6,f +12811,6141,182,2,t +12811,6141,182,4,f +12811,6141,71,3,t +12811,6141,71,87,f +12811,61678,15,2,f +12811,61780,72,1,f +12811,6222,15,2,f +12811,6239,15,4,f +12811,63868,71,16,f +12811,63965,72,3,f +12811,6541,15,32,f +12811,6558,1,12,f +12811,6632,71,4,f +12811,6636,15,16,f +12811,970c00,71,1,f +12811,970c00,28,1,f +12811,970c00,15,1,f +12811,970c00,297,1,f +12811,973pr1332c01,15,1,f +12811,973pr1339c01,297,1,f +12811,973pr1355c01,0,1,f +12811,973pr1527c01,19,1,f +12814,2412b,72,9,f +12814,2431,272,15,f +12814,2817,71,1,f +12814,2825,71,2,f +12814,2853,71,1,f +12814,30162,72,3,f +12814,3023,272,3,f +12814,30375,484,2,f +12814,30375pr0003,484,1,f +12814,30376,72,3,f +12814,30377,72,1,t +12814,30377,72,3,f +12814,30378,484,2,f +12814,30378pr0002,484,1,f +12814,30383,72,3,f +12814,30386,71,15,f +12814,30390b,71,1,f +12814,3040b,72,3,f +12814,30553,72,3,f +12814,30554b,0,3,f +12814,3062b,272,6,f +12814,3062b,72,4,f +12814,3062b,71,15,f +12814,32002,72,1,t +12814,32002,72,1,f +12814,32013,71,2,f +12814,32062,0,3,f +12814,32125,71,5,f +12814,32530,72,1,f +12814,3700,72,1,f +12814,3710,72,3,f +12814,3942c,72,1,f +12814,4032a,0,2,f +12814,41669,36,2,f +12814,41769,272,6,f +12814,41769,0,6,f +12814,41770,272,6,f +12814,41770,0,6,f +12814,43093,1,1,f +12814,44301a,72,3,f +12814,44302a,71,3,f +12814,4519,71,5,f +12814,4588,72,2,f +12814,4589,36,4,f +12814,4589,72,3,f +12814,4595,71,15,f +12814,4740,57,3,f +12814,47456,72,6,f +12814,50747pr0003,40,2,f +12814,50947,72,3,f +12814,52107,0,21,f +12814,54200,272,1,t +12814,54200,272,7,f +12814,57585,71,1,f +12814,58247,0,3,f +12814,59230,72,1,t +12814,59230,72,3,f +12814,59443,0,1,f +12814,61184,71,2,f +12814,6141,72,15,f +12814,6141,72,1,t +12814,63965,71,4,f +12814,6553,0,1,f +12814,6632,0,1,f +12814,87079,272,12,f +12814,95120,72,2,f +12817,10201,4,1,f +12817,11477,4,4,f +12817,15068,0,1,f +12817,15573,4,1,f +12817,15712,0,2,f +12817,18868b01,46,2,f +12817,19981pr0061,46,1,f +12817,19981pr0062,46,1,f +12817,21445,0,2,f +12817,24394pr1129,288,1,f +12817,28382,288,1,f +12817,28408,70,1,f +12817,2877,0,1,f +12817,298c02,0,1,f +12817,298c02,0,1,t +12817,3005,0,2,f +12817,3020,71,2,f +12817,3020,4,1,f +12817,3021,0,1,f +12817,3022,4,1,f +12817,3023,41,2,f +12817,3023,4,4,f +12817,3023,0,2,f +12817,3024,15,1,t +12817,3024,15,2,f +12817,3031,0,2,f +12817,3068b,15,1,f +12817,3069b,15,3,f +12817,3069b,4,2,f +12817,3070b,40,2,f +12817,3070b,40,1,t +12817,3700,15,1,f +12817,3710,4,1,f +12817,3710,15,1,f +12817,3710,0,4,f +12817,3941,46,2,f +12817,4070,0,1,f +12817,4070,15,2,f +12817,41879a,15,1,f +12817,4600,71,1,f +12817,4740,0,1,f +12817,48336,0,2,f +12817,50947,4,2,f +12817,50951,0,4,f +12817,54200,15,2,f +12817,54200,4,4,f +12817,54200,15,1,t +12817,54200,4,1,t +12817,60212,4,1,f +12817,6141,36,4,f +12817,6141,25,1,f +12817,6141,47,1,f +12817,6141,25,1,t +12817,6141,47,1,t +12817,6141,36,1,t +12817,85861,71,2,f +12817,85861,71,1,t +12817,85984,0,1,f +12817,93274,4,1,f +12817,93593,71,4,f +12817,973pr3536,70,1,f +12817,973pr3560,288,1,f +12817,98138pr0018,84,1,f +12817,98138pr0018,84,1,t +12818,2419,2,2,f +12818,2458,8,2,f +12818,2569,42,2,f +12818,3001,2,2,f +12818,3004,2,4,f +12818,30208,42,2,f +12818,30209,8,2,f +12818,30211,8,4,f +12818,3022,2,2,f +12818,3023,2,2,f +12818,30231pb01,33,1,f +12818,30231pb02,33,1,f +12818,3034,2,4,f +12818,3039,2,3,f +12818,32009,2,2,f +12818,32015,7,2,f +12818,32017,2,12,f +12818,32064b,2,2,f +12818,3460,7,2,f +12818,3666,2,2,f +12818,3701,2,2,f +12818,3736,7,2,f +12818,3937,0,2,f +12818,3938,0,2,f +12818,6019,0,2,f +12818,6048a,0,4,f +12818,6141,0,6,f +12818,6215,2,4,f +12818,6629,0,2,f +12818,85545,2,2,f +12819,2412b,71,3,f +12819,2516,14,1,f +12819,2654,0,2,f +12819,3004,14,1,f +12819,3020,15,1,f +12819,3022,4,1,f +12819,30236,71,2,f +12819,3024,15,1,t +12819,3024,15,4,f +12819,30377,0,1,t +12819,30377,0,2,f +12819,3626cpr1146,14,1,f +12819,3795,4,2,f +12819,3829c01,15,1,f +12819,3834,320,1,f +12819,41769,4,1,f +12819,41770,4,1,f +12819,42023,72,2,f +12819,52107,0,1,f +12819,54200,33,1,t +12819,54200,33,2,f +12819,57783,41,1,f +12819,59900,14,1,f +12819,60219,72,1,f +12819,6141,72,1,t +12819,6141,72,4,f +12819,63868,71,1,f +12819,970c00pr0408,0,1,f +12819,973pr2189c01,0,1,f +12819,97895,14,1,f +12820,3063a,4,2,f +12820,3063a,47,2,f +12820,716,15,6,f +12820,716,47,1,f +12820,716,4,3,f +12822,3008,4,4,f +12822,3010,4,2,f +12822,3034,15,3,f +12822,3062a,0,16,f +12822,3069a,15,1,f +12822,3228a,1,4,f +12822,3460,14,3,f +12822,3488,0,4,f +12822,3624,4,1,f +12822,3626bpr0001,14,2,f +12822,3710,14,4,f +12822,3833,14,1,f +12822,3840,14,1,f +12822,736c02,0,1,f +12822,970c00,0,2,f +12822,973c18,0,1,f +12822,973p18c01,1,1,f +12823,23306,383,1,f +12823,2357,6,8,f +12823,2399,6,2,f +12823,2412b,8,2,f +12823,2433,0,4,f +12823,2524,8,2,f +12823,2540,8,2,f +12823,2555,0,2,f +12823,2555,8,2,f +12823,3001,6,1,f +12823,30031,0,2,f +12823,3004,8,2,f +12823,30176,2,4,f +12823,3022,8,4,f +12823,3023,7,2,f +12823,30239,2,1,f +12823,30259,6,4,f +12823,3030,10,1,f +12823,3034,0,2,f +12823,30359a,8,4,f +12823,30369,15,2,f +12823,30374,42,1,f +12823,3039,6,2,f +12823,3048c,6,2,f +12823,3062b,8,2,f +12823,3626bps3,14,1,f +12823,3626bpse,14,2,f +12823,3710,0,2,f +12823,3794a,0,6,f +12823,3794a,0,1,t +12823,3901,19,1,f +12823,4032a,6,2,f +12823,4085c,8,4,f +12823,4349,0,2,f +12823,4732,6,2,f +12823,6120,8,4,f +12823,970c00,0,1,f +12823,970x026,15,2,f +12823,973psec01,15,2,f +12823,973psmc01,8,1,f +12824,132a,0,8,f +12824,3001a,4,40,f +12824,3001a,1,16,f +12824,3001a,15,44,f +12824,3001a,0,12,f +12824,3001a,14,38,f +12824,3002a,15,10,f +12824,3002a,1,2,f +12824,3002a,0,2,f +12824,3002a,14,12,f +12824,3002a,4,4,f +12824,3003,1,4,f +12824,3003,0,4,f +12824,3003,14,10,f +12824,3003,4,16,f +12824,3003,15,16,f +12824,3004,15,14,f +12824,3004,4,8,f +12824,3004,47,12,f +12824,3005,4,14,f +12824,3005,15,4,f +12824,3006,15,2,f +12824,3006,1,4,f +12824,3006,4,4,f +12824,3007,1,4,f +12824,3009,15,4,f +12824,3032,15,4,f +12824,3081cc01,4,6,f +12824,3297,4,20,f +12824,3298,4,20,f +12824,3299,4,3,f +12824,3300,4,3,f +12824,3404ac01,15,1,f +12824,3471,2,2,f +12824,3579,4,3,f +12824,3581,15,8,f +12824,3582,1,8,f +12824,453cc01,4,2,f +12824,453cc01,15,3,f +12824,604c01,4,4,f +12824,700ed,2,2,f +12824,7039,4,8,f +12824,7049b,0,4,f +12824,7930,15,3,f +12826,3001a,15,1,f +12826,3002a,15,5,f +12826,3008,15,2,f +12826,3009,15,2,f +12826,3010,47,3,f +12826,3010p20b,15,1,f +12826,3024,1,2,f +12826,3030,15,1,f +12826,3032,15,1,f +12826,3037,47,1,f +12826,3038,47,1,f +12826,3040a,4,1,f +12826,3070a,15,1,f +12826,3137c01,0,2,f +12826,3139,0,4,f +12826,3460,15,4,f +12826,3460,7,2,f +12826,3461,15,1,f +12826,3462,15,1,f +12827,3001,15,12,f +12827,3002,15,6,f +12827,3003,15,10,f +12827,3004,15,6,f +12827,3005,15,2,f +12827,3006,15,1,f +12827,3007,15,1,f +12827,3008,15,2,f +12827,3009,15,2,f +12827,3010,15,2,f +12827,3622,15,2,f +12830,kk2wb,89,1,f +12831,2335p01,15,1,f +12831,2335p02,15,1,f +12831,2339,7,1,f +12831,2375,4,1,f +12831,2376,0,1,f +12831,2412b,0,3,f +12831,2417,2,1,f +12831,2423,2,4,f +12831,2431p12,15,1,f +12831,2446,0,2,f +12831,2488,2,3,f +12831,2489,6,1,f +12831,2547,7,1,f +12831,2547,15,1,f +12831,2547,8,1,f +12831,2548,15,1,f +12831,2548,8,1,f +12831,2555,7,2,f +12831,2569,0,1,f +12831,2610,14,1,f +12831,2625,7,1,f +12831,2626,15,1,f +12831,2626,1,1,f +12831,2627,15,1,f +12831,2654,0,6,f +12831,2921,0,3,f +12831,3001,15,2,f +12831,3001,7,2,f +12831,3004,15,1,f +12831,3004,7,2,f +12831,3005,15,2,f +12831,30085,7,1,f +12831,30088,4,1,f +12831,30089,14,1,f +12831,30090,33,2,f +12831,30091,15,2,f +12831,30092,14,1,f +12831,30093,2,3,f +12831,30094,14,2,f +12831,30095,14,3,f +12831,3010,7,1,f +12831,3020,4,1,f +12831,3021,15,1,f +12831,3023,15,2,f +12831,3039,7,8,f +12831,3039pr0005,15,1,f +12831,3040b,15,4,f +12831,3127,7,1,f +12831,3308,7,1,f +12831,3456,7,1,f +12831,3460,15,1,f +12831,3622,15,4,f +12831,3626bp04,14,1,f +12831,3626bpx11,14,2,f +12831,3633,1,2,f +12831,3679,7,1,f +12831,3680,4,1,f +12831,37,383,2,f +12831,3710,15,2,f +12831,3794a,2,2,f +12831,3794a,4,3,f +12831,3795,15,2,f +12831,3795,7,2,f +12831,3829c01,4,1,f +12831,3857,19,1,f +12831,3937,4,1,f +12831,3938,7,1,f +12831,3957a,4,1,f +12831,4032a,2,3,f +12831,4085c,7,2,f +12831,4176,41,1,f +12831,4286,7,6,f +12831,4318,4,1,f +12831,4460a,7,3,f +12831,4485,1,3,f +12831,4599a,7,1,f +12831,4623,7,3,f +12831,4738a,6,1,f +12831,4739a,6,1,f +12831,4864a,41,2,f +12831,56823,0,1,f +12831,57503,334,2,f +12831,57504,334,2,f +12831,57505,334,2,f +12831,57506,334,2,f +12831,59,383,1,f +12831,59275,1,4,f +12831,6019,15,2,f +12831,6020,14,1,f +12831,6082,8,2,f +12831,6083,8,1,f +12831,6112,1,2,f +12831,6112,7,1,f +12831,6126a,34,6,f +12831,6141,33,1,f +12831,6141,57,1,f +12831,6141,34,2,f +12831,6141,42,4,f +12831,6141,33,1,t +12831,6141,47,1,t +12831,6141,57,1,t +12831,6141,47,1,f +12831,6141,46,1,t +12831,6141,46,3,f +12831,6141,36,2,f +12831,6558stk01,9999,1,t +12831,6558stk02,9999,1,t +12831,71155,0,1,f +12831,73037,4,1,f +12831,970c00,1,1,f +12831,970x023,0,2,f +12831,973px96c01,1,2,f +12831,973px98c01,15,1,f +12832,11127,182,1,f +12832,11233pr0002,71,1,f +12832,11477,25,2,f +12832,2412b,4,1,f +12832,2412b,4,1,t +12832,2540,71,1,f +12832,2780,0,1,t +12832,2780,0,2,f +12832,30031,0,1,f +12832,3020,4,2,f +12832,30377,71,1,t +12832,30377,71,1,f +12832,30414,72,1,f +12832,3626cpr1134,71,1,f +12832,3673,71,2,f +12832,3673,71,1,t +12832,3701,71,1,f +12832,40490,4,1,f +12832,41854,72,1,f +12832,4274,1,1,t +12832,4274,1,1,f +12832,4349,0,1,f +12832,4740,4,1,f +12832,55981,71,2,f +12832,6126b,182,1,f +12832,6141,182,1,t +12832,6141,182,2,f +12832,89201,0,2,f +12832,970c00pr0663,4,1,f +12832,973pr2666c01,4,1,f +12833,3068b,25,1,f +12833,3068b,27,1,f +12833,4589,25,2,f +12833,50950,25,2,f +12833,61409,27,2,f +12833,87087,27,2,f +12833,create100,9999,1,f +12833,create101,9999,1,f +12833,create102,9999,1,f +12833,create103,9999,1,f +12833,create104,9999,1,f +12833,create105,9999,1,f +12833,create106,9999,1,f +12833,create107,9999,1,f +12833,create108,9999,1,f +12833,create109,9999,1,f +12833,create110,9999,1,f +12833,create111,9999,1,f +12833,create112,9999,1,f +12833,create113,9999,1,f +12833,create114,9999,1,f +12833,create115,9999,1,f +12833,create116,9999,1,f +12833,create97,9999,1,f +12833,create98,9999,1,f +12833,create99,9999,1,f +12834,2780,0,3,f +12834,32062,0,4,f +12834,32174,191,4,f +12834,3673,71,2,f +12834,41669,46,2,f +12834,41670,191,2,f +12834,41678,0,1,f +12834,41752,72,1,f +12834,43093,1,4,f +12834,44809,71,1,f +12834,4519,71,2,f +12834,47296,191,2,f +12834,47299,0,2,f +12834,47328,0,2,f +12834,47330,0,1,f +12834,50858,0,4,f +12834,50898,0,1,f +12834,50899,179,1,f +12834,50899pr0002,179,1,f +12834,50900,0,1,f +12834,50901,72,1,f +12834,50903,14,1,f +12834,50904,71,1,f +12834,50912,0,1,f +12834,50915,179,2,f +12834,rb00167,14,1,f +12834,rb00167,14,1,t +12837,3001mib,4,20,f +12837,3003mib,1,8,f +12837,3003mib,14,2,f +12837,3003mib,4,6,f +12837,3007mib,4,3,f +12837,3007mib,1,3,f +12837,3183a,14,1,f +12837,3184,14,1,f +12837,3298mib,1,4,f +12837,carbasemi,14,2,f +12837,m3001,1,15,f +12837,m3001,14,13,f +12837,m3003,14,13,f +12837,rb00166,15,1,f +12838,10178pr0001b,182,1,f +12838,10247,0,4,f +12838,11090,0,1,f +12838,11153,14,2,f +12838,11153,72,2,f +12838,11476,71,2,f +12838,11477,1,6,f +12838,11477,72,6,f +12838,11477,0,2,f +12838,13565,70,1,f +12838,14769,15,1,f +12838,14769,14,2,f +12838,15068,1,10,f +12838,15068,72,8,f +12838,15207,72,28,f +12838,15210,0,7,f +12838,15423pr0002,379,1,f +12838,15445,72,2,f +12838,15470,179,2,f +12838,15573,72,4,f +12838,15706,0,6,f +12838,15712,72,14,f +12838,19220,0,1,f +12838,20439,15,1,f +12838,20441,15,1,f +12838,20455,47,2,f +12838,21144,15,1,f +12838,21146,15,1,f +12838,21148,15,1,f +12838,21353,15,1,f +12838,21982,15,2,f +12838,21986,0,1,f +12838,2412b,15,2,f +12838,2421,0,1,f +12838,2431,70,2,f +12838,2431,15,2,f +12838,2431,1,4,f +12838,2431,288,5,f +12838,2431pr0017,14,1,f +12838,2432,0,3,f +12838,2432,70,1,f +12838,2445,0,1,f +12838,2445,1,1,f +12838,2447,40,1,f +12838,2449,72,6,f +12838,2450,1,1,f +12838,2454a,72,12,f +12838,2456,0,1,f +12838,2456,72,4,f +12838,2456,71,2,f +12838,2456,1,2,f +12838,2460,71,1,f +12838,2465,71,2,f +12838,2479,0,1,f +12838,2540,1,6,f +12838,2540,15,1,f +12838,2653,71,14,f +12838,2654,46,2,f +12838,2780,0,5,f +12838,2877,15,1,f +12838,2877,72,20,f +12838,298c02,14,8,f +12838,3001,72,4,f +12838,3001,71,10,f +12838,3002,71,22,f +12838,3003,72,4,f +12838,3003,2,2,f +12838,3003,0,2,f +12838,3003,71,9,f +12838,3004,1,1,f +12838,3004,71,28,f +12838,3005,72,2,f +12838,3005,1,14,f +12838,3008,71,1,f +12838,3008,72,1,f +12838,3009,71,6,f +12838,3009,72,1,f +12838,3009,1,5,f +12838,30099,72,2,f +12838,3010,71,6,f +12838,3010,1,2,f +12838,3010,288,2,f +12838,30136,70,1,f +12838,30145,71,2,f +12838,30171,0,1,f +12838,30176,2,9,f +12838,3020,1,12,f +12838,3020,0,1,f +12838,3021,0,1,f +12838,3021,15,9,f +12838,3021,2,2,f +12838,3021,70,1,f +12838,3021,1,3,f +12838,3022,14,2,f +12838,3022,72,7,f +12838,3022,15,5,f +12838,3023,0,12,f +12838,3023,15,3,f +12838,3023,2,11,f +12838,3023,71,2,f +12838,3023,72,5,f +12838,30237b,15,2,f +12838,3027,2,1,f +12838,3029,2,4,f +12838,3031,15,1,f +12838,3032,72,1,f +12838,3033,71,1,f +12838,3034,72,8,f +12838,3035,71,1,f +12838,3036,71,2,f +12838,30363,71,1,f +12838,3037,71,5,f +12838,30374,0,1,f +12838,30374,41,7,f +12838,30388,0,2,f +12838,3039,71,2,f +12838,30395,72,1,f +12838,30396,0,1,f +12838,3040b,1,8,f +12838,3040b,2,4,f +12838,30414,1,5,f +12838,30414,0,1,f +12838,3044b,72,20,f +12838,30503,72,4,f +12838,30504,2,1,f +12838,30504,71,2,f +12838,30552,0,4,f +12838,30562,71,1,f +12838,3069b,72,4,f +12838,3069b,4,2,f +12838,3069bpr0030,72,1,f +12838,3070b,1,6,f +12838,3070b,72,4,f +12838,32000,14,3,f +12838,32013,72,2,f +12838,32034,71,2,f +12838,32062,0,4,f +12838,32064a,0,2,f +12838,32124,70,6,f +12838,3245b,72,7,f +12838,32474,0,2,f +12838,32524,72,1,f +12838,3297,0,1,f +12838,3298,72,2,f +12838,33057,484,2,f +12838,33299a,71,2,f +12838,3460,1,8,f +12838,3460,0,2,f +12838,3460,71,2,f +12838,3460,2,2,f +12838,3622,72,20,f +12838,3623,0,3,f +12838,3623,15,2,f +12838,3623,1,3,f +12838,3623,72,2,f +12838,3626bpr0854,78,1,f +12838,3626cpr1533a,70,1,f +12838,3626cpr1699,78,1,f +12838,3626cpr1739,92,1,f +12838,3660,72,2,f +12838,3660,1,8,f +12838,3665,72,4,f +12838,3666,15,24,f +12838,3666,72,6,f +12838,3666,1,8,f +12838,3678b,71,8,f +12838,3678b,72,10,f +12838,3679,71,1,f +12838,3680,0,1,f +12838,3700,1,2,f +12838,3700,15,10,f +12838,3705,0,2,f +12838,3710,71,6,f +12838,3710,1,6,f +12838,3710,14,2,f +12838,3710,288,3,f +12838,3747a,72,1,f +12838,3794b,15,10,f +12838,3795,1,6,f +12838,3795,71,2,f +12838,3795,15,5,f +12838,3832,1,12,f +12838,3899,14,1,f +12838,3941,15,2,f +12838,3958,72,2,f +12838,4032a,1,1,f +12838,4032a,15,2,f +12838,4079,70,1,f +12838,4081b,15,4,f +12838,41539,71,1,f +12838,4162,0,5,f +12838,4162,71,10,f +12838,4282,72,2,f +12838,4286,72,2,f +12838,4287,1,5,f +12838,43710,1,1,f +12838,43711,1,1,f +12838,44301a,0,4,f +12838,44302a,72,4,f +12838,44302a,1,4,f +12838,44375bpr0001b,47,2,f +12838,44567a,72,1,f +12838,4460b,1,6,f +12838,44661,15,1,f +12838,44728,72,10,f +12838,4477,1,2,f +12838,4488,71,1,f +12838,4510,0,6,f +12838,4598,1,1,f +12838,47457,72,10,f +12838,48336,0,1,f +12838,48336,71,2,f +12838,4865a,72,10,f +12838,4871,1,1,f +12838,48729b,72,4,f +12838,50950,1,2,f +12838,54200,288,6,f +12838,54200,182,6,f +12838,57909b,72,8,f +12838,58176,182,6,f +12838,58176,33,2,f +12838,59349,47,1,f +12838,59349,71,2,f +12838,59443,72,2,f +12838,59900,33,1,f +12838,59900,35,2,f +12838,60219,0,1,f +12838,60470b,14,1,f +12838,60474,71,1,f +12838,60479,71,1,f +12838,60485,71,3,f +12838,60581,72,2,f +12838,60596,72,4,f +12838,60797c02,0,2,f +12838,6106,71,4,f +12838,6111,72,2,f +12838,6112,72,1,f +12838,61184,71,2,f +12838,61252,15,4,f +12838,6141,15,2,f +12838,6141,36,24,f +12838,6141,0,16,f +12838,61485,0,1,f +12838,6177,0,1,f +12838,61780,70,2,f +12838,62113,0,1,f +12838,62810,308,1,f +12838,63864,71,2,f +12838,63864,14,2,f +12838,63864,0,1,f +12838,64448,72,13,f +12838,64450,0,1,f +12838,64453,47,1,f +12838,64567,0,1,f +12838,64799,71,1,f +12838,6558,1,4,f +12838,6583,0,2,f +12838,6636,15,1,f +12838,6636,14,1,f +12838,74698,0,1,f +12838,76766,1,1,f +12838,85080,15,2,f +12838,85941,47,2,f +12838,85984,72,4,f +12838,85984,1,3,f +12838,87079,72,8,f +12838,87087,14,22,f +12838,87989,27,3,f +12838,88072,14,2,f +12838,91988,71,1,f +12838,92013,72,8,f +12838,92280,0,2,f +12838,92280,71,2,f +12838,92438,2,1,f +12838,92474,47,1,f +12838,92593,0,1,f +12838,92946,1,3,f +12838,93549pat01,47,1,f +12838,93606,72,4,f +12838,96874,25,1,t +12838,970c00,0,1,f +12838,970c00,272,1,f +12838,970c00pr0886,72,1,f +12838,970c00pr0909,72,1,f +12838,973pr3053c01,71,1,f +12838,973pr3060c01,272,1,f +12838,973pr3064c01,19,1,f +12838,973pr3098c01,15,1,f +12838,98138,46,26,f +12838,98162pr04,15,1,f +12838,98163pr04,15,1,f +12838,99207,0,10,f +12838,99930,0,1,f +12839,2339,308,3,f +12839,2357,19,6,f +12839,2417,10,3,f +12839,2420,70,6,f +12839,2423,2,4,f +12839,2431pr0028,72,1,f +12839,2460,288,2,f +12839,2524,70,1,f +12839,2540,71,1,f +12839,2542,70,2,f +12839,2555,72,11,f +12839,2654,72,1,f +12839,2730,0,2,f +12839,298c02,71,1,f +12839,298c02,71,1,t +12839,3004,72,2,f +12839,30086,72,1,f +12839,30095,72,1,f +12839,3010,71,1,f +12839,30115,4,2,f +12839,30132,72,2,f +12839,30132,72,1,t +12839,30135,378,2,f +12839,30141,72,3,f +12839,30162,72,1,t +12839,30162,72,1,f +12839,30176,2,1,f +12839,3020,70,1,f +12839,3022,19,1,f +12839,3023,71,3,f +12839,3023,72,3,f +12839,3024,72,2,f +12839,3030,0,1,f +12839,3032,72,1,f +12839,30357,72,2,f +12839,30374,70,4,f +12839,3040b,308,1,f +12839,30526,71,2,f +12839,3062b,71,5,f +12839,3062b,70,9,f +12839,3070b,72,5,f +12839,3070b,72,1,t +12839,32000,72,2,f +12839,32059,72,2,f +12839,3483,0,5,f +12839,3626bpr0472,78,1,f +12839,3626bpr0501,78,1,f +12839,3626bpr0516a,78,1,f +12839,3626bpr0519,78,1,f +12839,3659,72,3,f +12839,3660,288,4,f +12839,3665,288,8,f +12839,3666,288,4,f +12839,3700,70,2,f +12839,3701,0,1,f +12839,3710,72,5,f +12839,3747b,71,2,f +12839,3749,19,2,f +12839,3794a,70,3,f +12839,3795,72,1,f +12839,3829c01,71,1,f +12839,3837,0,1,f +12839,3899,4,1,f +12839,3958,19,1,f +12839,4032a,71,2,f +12839,4070,72,2,f +12839,4079,70,2,f +12839,4081b,0,4,f +12839,4176,40,1,f +12839,4274,1,4,f +12839,4274,1,1,t +12839,43888,70,2,f +12839,4460b,70,1,f +12839,44728,19,1,f +12839,4599a,0,2,f +12839,47457,71,2,f +12839,47720,0,2,f +12839,47847,70,1,f +12839,4865a,288,6,f +12839,50745,72,4,f +12839,52501,72,2,f +12839,54200,71,1,t +12839,54200,71,4,f +12839,55013,72,1,f +12839,56902,71,5,f +12839,59363,0,1,f +12839,6026,288,1,f +12839,6027,288,1,f +12839,6028,288,1,f +12839,6041,0,2,f +12839,60475a,71,3,f +12839,6141,36,2,f +12839,6141,36,1,t +12839,6141,47,3,f +12839,6141,47,1,t +12839,61506,70,1,f +12839,61780,72,1,f +12839,6191,71,2,f +12839,61975,70,1,f +12839,61976,70,1,f +12839,6231,288,2,f +12839,62363,28,1,f +12839,62885,0,1,f +12839,6538b,71,1,f +12839,71155,0,1,f +12839,7625stk01,9999,1,t +12839,970c00,28,1,f +12839,970c00,378,2,f +12839,973pr1370c01,308,1,f +12839,973pr1393c01,378,2,f +12839,973pr1398c01,19,1,f +12840,3004,0,4,f +12840,3004,15,6,f +12840,3020,0,3,f +12840,30488c01,15,1,f +12840,30492,2,1,f +12840,3412cdb01,89,1,f +12840,3626bpr0001,14,1,f +12840,3901,0,1,f +12840,3901,0,1,t +12840,4282,2,1,f +12840,6056,7,2,f +12840,72824p01,15,1,f +12840,970c00,1,1,f +12840,973pb0124c01,15,1,f +12841,3001,15,1,f +12841,3004,15,4,f +12841,3004pb005,15,2,f +12841,3005,15,12,f +12841,3008,15,2,f +12841,3008pb013a,15,1,f +12841,3009,15,4,f +12841,3010,15,3,f +12841,3021,15,2,f +12841,3021,0,1,f +12841,3023,47,1,f +12841,3034,7,1,f +12841,3034,1,1,f +12841,3039,0,1,f +12841,3062a,14,2,f +12841,3062a,4,2,f +12841,3068b,15,1,f +12841,3456,1,1,f +12841,3471,2,1,f +12841,3626apr0001,14,2,f +12841,3666,15,3,f +12841,3710,15,4,f +12841,3795,1,1,f +12841,3861b,4,1,f +12841,3865,2,1,f +12841,3898,15,1,f +12841,3899,4,2,f +12841,3901,6,1,f +12841,676p01,15,1,f +12841,970c00,0,1,f +12841,970c00,7,1,f +12841,973pb0069c01,0,1,f +12841,973px3c01,15,1,f +12842,23306,71,1,f +12842,30173b,0,1,f +12842,3626cpr1367,14,1,f +12842,970c00,1,1,f +12842,973pr2474c01,1,1,f +12842,98132,179,1,f +12842,98133,1,1,f +12842,98139,297,2,f +12843,14210,15,1,f +12843,2343,14,2,f +12843,2437,40,2,f +12843,2456,1,1,f +12843,2817,71,2,f +12843,3003,71,3,f +12843,3003,1,5,f +12843,3004,4,1,f +12843,3004,14,2,f +12843,3008,71,1,f +12843,30236,4,5,f +12843,30240,15,1,f +12843,30285,15,4,f +12843,30285,14,4,f +12843,3031,1,1,f +12843,3033,71,2,f +12843,3034,4,2,f +12843,30363,4,1,f +12843,30363,0,1,f +12843,3037,14,1,f +12843,3039,15,2,f +12843,30518,4,1,f +12843,30540,15,2,f +12843,30622,0,3,f +12843,30622,14,2,f +12843,30626,0,1,f +12843,30640,71,2,f +12843,30643,4,1,f +12843,30643,72,1,f +12843,30645,72,2,f +12843,30647,0,2,f +12843,30648,0,8,f +12843,30650pb05,40,1,f +12843,30663,0,2,f +12843,3068b,4,2,f +12843,3068bp18,4,1,f +12843,3308,71,1,f +12843,3622,4,2,f +12843,3684,71,5,f +12843,3700,0,2,f +12843,3703,0,1,f +12843,3706,0,1,f +12843,3710,0,2,f +12843,3941,14,1,f +12843,3959,14,2,f +12843,4083,0,1,f +12843,4150pr0001,15,1,f +12843,42022,0,2,f +12843,4222a,1,2,f +12843,4286,14,2,f +12843,43337,0,2,f +12843,43337,14,2,f +12843,4445,4,1,f +12843,45402px2,40,1,f +12843,45403c01,72,1,f +12843,45695,71,8,f +12843,4740,14,2,f +12843,47855,72,4,f +12843,4865a,41,2,f +12843,4865px9,15,1,f +12843,4j004,9999,1,f +12843,4j005a,9999,1,f +12843,4j012,9999,1,f +12843,50704,71,2,f +12843,6232,4,2,f +12843,bb03pb02,40,1,f +12844,2444,0,1,f +12844,2780,0,2,f +12844,2780,0,1,t +12844,3020,0,1,f +12844,3021,72,1,f +12844,3022,72,1,f +12844,3023,72,1,f +12844,3049b,0,1,f +12844,3794b,72,2,f +12844,3794b,27,3,f +12844,40379,27,2,f +12844,40379,0,1,f +12844,4081b,27,2,f +12844,4085c,4,4,f +12844,4150,4,1,f +12844,42022,0,1,f +12844,4274,71,1,t +12844,4274,71,1,f +12844,43722,0,1,f +12844,43723,0,1,f +12844,48183,0,1,f +12844,53451,15,1,t +12844,53451,15,4,f +12844,58176,36,2,f +12844,58176,36,1,t +12844,6019,0,2,f +12844,60470a,0,1,f +12844,60478,72,4,f +12844,62462,0,1,f +12844,87745,0,1,f +12844,87747,0,1,f +12844,87748pr0004,33,1,f +12845,11203,72,2,f +12845,11458,72,3,f +12845,11477,19,1,f +12845,11610,19,1,f +12845,14210,15,1,f +12845,14226c31,0,1,f +12845,14226c31,0,1,t +12845,14417,72,2,f +12845,14419,72,2,f +12845,14704,71,4,f +12845,15064,297,4,f +12845,15068,71,5,f +12845,15070,15,3,f +12845,15392,72,1,t +12845,15392,72,4,f +12845,15403,15,4,f +12845,15712,15,2,f +12845,15712,14,2,f +12845,17114,0,1,f +12845,18663,47,1,f +12845,18674,72,2,f +12845,18677,71,1,f +12845,21019pat02,1,1,f +12845,2412b,179,2,f +12845,2412b,0,1,f +12845,2419,28,1,f +12845,2449,19,3,f +12845,2453b,19,1,f +12845,2454a,72,8,f +12845,2456,72,2,f +12845,2584,0,1,f +12845,2585,71,1,f +12845,2654,72,6,f +12845,2654,19,1,f +12845,2780,0,4,f +12845,2780,0,1,t +12845,2877,14,1,f +12845,3003,15,3,f +12845,3003,19,2,f +12845,3003,72,1,f +12845,3003,4,4,f +12845,3004,19,2,f +12845,3005,28,1,f +12845,3005,72,2,f +12845,3010,72,2,f +12845,30153,41,4,f +12845,30157,70,1,f +12845,3020,71,3,f +12845,3022,19,6,f +12845,3022,71,3,f +12845,3022,484,1,f +12845,3023,71,4,f +12845,30293,72,1,f +12845,30294,72,1,f +12845,3031,19,1,f +12845,3034,71,2,f +12845,3036,70,2,f +12845,30363,72,2,f +12845,3039,71,2,f +12845,3039,19,4,f +12845,3040b,28,6,f +12845,30553,0,1,f +12845,30602,71,2,f +12845,3068b,28,1,f +12845,3070b,19,1,t +12845,3070b,19,3,f +12845,32013,14,4,f +12845,32016,0,2,f +12845,32034,15,2,f +12845,32039,0,2,f +12845,32062,4,5,f +12845,32064a,15,2,f +12845,32064a,0,2,f +12845,32192,0,2,f +12845,3245b,19,2,f +12845,3460,19,2,f +12845,3626cpr0966,4,1,f +12845,3626cpr1003,78,1,f +12845,3626cpr1149,78,1,f +12845,3626cpr1718,4,1,f +12845,3660,71,2,f +12845,3673,71,5,f +12845,3673,71,2,t +12845,3700,19,2,f +12845,3705,0,4,f +12845,3707,0,3,f +12845,3709,0,2,f +12845,3713,71,2,f +12845,3713,71,1,t +12845,3737,0,1,f +12845,3794b,71,8,f +12845,3937,72,1,f +12845,3941,14,5,f +12845,3941,25,4,f +12845,3956,71,1,f +12845,4032a,72,2,f +12845,41539,19,2,f +12845,4162,19,1,f +12845,42446,0,1,f +12845,42446,0,1,t +12845,4274,1,7,f +12845,4274,1,2,t +12845,4445,0,1,f +12845,4460b,28,1,f +12845,44728,72,2,f +12845,4477,71,5,f +12845,4519,71,1,f +12845,4733,0,1,f +12845,47397,70,1,f +12845,47398,70,1,f +12845,4740,47,2,f +12845,47905,19,1,f +12845,48336,0,1,f +12845,48336,19,1,f +12845,51739,28,1,f +12845,54200,14,4,f +12845,54200,19,20,f +12845,54200,14,1,t +12845,54200,15,5,f +12845,54200,15,1,t +12845,54200,19,2,t +12845,57909b,72,2,f +12845,59900,25,2,f +12845,60470b,0,2,f +12845,60474,71,2,f +12845,60478,15,1,f +12845,60481,19,3,f +12845,6091,19,8,f +12845,6091,71,8,f +12845,6112,19,2,f +12845,61252,19,10,f +12845,6134,71,1,f +12845,6141,57,2,f +12845,6141,19,2,t +12845,6141,19,9,f +12845,6141,0,1,t +12845,6141,0,2,f +12845,6141,15,1,t +12845,6141,15,6,f +12845,6141,57,1,t +12845,61485,0,1,f +12845,61678,15,1,f +12845,62462,0,1,f +12845,62462,14,1,f +12845,63965,0,1,f +12845,64798,70,1,f +12845,6536,0,2,f +12845,6541,14,2,f +12845,6541,70,2,f +12845,6587,28,1,f +12845,85941,15,2,f +12845,87079,484,1,f +12845,87079,4,2,f +12845,87087,72,2,f +12845,87552,71,1,f +12845,87580,71,2,f +12845,87620,71,2,f +12845,87994,71,1,f +12845,87994,71,1,t +12845,90498,0,1,f +12845,90981,15,1,f +12845,91176,19,1,f +12845,92013,72,4,f +12845,92582,71,1,f +12845,92692,15,1,f +12845,95347,14,2,f +12845,970c00,4,1,f +12845,970c00,71,1,f +12845,970c00,19,1,f +12845,973pr2047c01,1,1,f +12845,973pr3085c01,4,1,f +12845,973pr3086c01,15,1,f +12845,973pr3087c01,2,1,f +12845,98138,182,1,t +12845,98138,182,2,f +12845,99207,71,2,f +12845,99784,71,1,f +12846,3020,15,100,f +12848,10197,72,1,f +12848,10201,15,2,f +12848,10928,72,2,f +12848,11055,15,3,f +12848,11203,72,3,f +12848,11203,19,1,f +12848,11211,15,6,f +12848,11211,19,6,f +12848,11211,71,5,f +12848,11213,71,2,f +12848,11214,72,1,f +12848,11215,15,1,f +12848,11215,71,2,f +12848,11253,0,6,f +12848,11458,15,4,f +12848,11458,72,5,f +12848,11477,72,2,f +12848,11477,15,14,f +12848,11477,2,2,f +12848,11610,0,1,f +12848,11610,179,1,f +12848,11833,0,1,f +12848,13349,15,1,f +12848,13548,15,12,f +12848,14226c11,0,1,f +12848,14301,71,5,f +12848,14769,0,6,f +12848,14769,15,2,f +12848,15068,15,6,f +12848,15068,0,1,f +12848,15068,72,3,f +12848,15068,71,16,f +12848,15207,72,2,f +12848,15207,15,9,f +12848,15303,36,11,f +12848,15391,0,1,f +12848,15392,72,2,f +12848,15400,72,8,f +12848,15403,0,1,f +12848,15535,72,3,f +12848,15571,15,3,f +12848,15573,15,6,f +12848,15573,0,1,f +12848,15573,19,2,f +12848,15672,71,2,f +12848,15712,71,4,f +12848,15712,0,3,f +12848,16501pr0001,15,2,f +12848,18306,72,1,f +12848,18575,0,2,f +12848,18587,71,1,f +12848,18588,72,1,f +12848,18654,72,1,f +12848,18671,72,2,f +12848,18675,71,2,f +12848,18677,71,2,f +12848,2357,15,22,f +12848,2357,72,8,f +12848,2412b,71,14,f +12848,2412b,72,4,f +12848,2412b,179,22,f +12848,2412b,0,9,f +12848,2420,71,4,f +12848,2420,15,6,f +12848,2420,28,14,f +12848,2423,2,2,f +12848,2431,71,4,f +12848,2431,15,3,f +12848,2431pr0017,14,5,f +12848,2432,19,1,f +12848,2445,0,2,f +12848,2445,15,2,f +12848,2445,71,3,f +12848,2449,15,1,f +12848,2450,71,20,f +12848,2456,15,5,f +12848,2456,72,3,f +12848,2460,72,1,f +12848,2460,15,2,f +12848,2460,0,2,f +12848,2465,15,2,f +12848,2486,72,2,f +12848,2496,0,2,f +12848,2524,15,4,f +12848,2540,25,2,f +12848,2540,71,1,f +12848,2584,0,1,f +12848,2585,71,1,f +12848,2653,71,8,f +12848,2654,1,1,f +12848,2654,0,1,f +12848,2654,72,3,f +12848,2654,47,1,f +12848,2736,71,1,f +12848,2780,0,20,f +12848,2817,71,1,f +12848,2877,15,3,f +12848,2877,0,4,f +12848,2877,71,4,f +12848,298c02,14,1,f +12848,3001,15,11,f +12848,3001,72,3,f +12848,3002,71,8,f +12848,3002,15,16,f +12848,3003,272,6,f +12848,3003,15,10,f +12848,3004,15,12,f +12848,3004,71,2,f +12848,3004,212,8,f +12848,3004,0,3,f +12848,3005,72,1,f +12848,3005,19,4,f +12848,3005,15,32,f +12848,3006,15,3,f +12848,3008,72,2,f +12848,3008,15,3,f +12848,30088,0,3,f +12848,3009,19,4,f +12848,3009,15,8,f +12848,3010,71,2,f +12848,3010,15,4,f +12848,30136,19,4,f +12848,30187b,15,1,f +12848,30192,72,1,f +12848,3020,28,1,f +12848,3020,15,6,f +12848,3020,19,2,f +12848,3020,0,2,f +12848,3020,72,18,f +12848,3021,28,11,f +12848,3021,0,5,f +12848,3021,71,23,f +12848,3021,1,1,f +12848,3021,15,1,f +12848,3021,19,9,f +12848,3022,4,5,f +12848,3022,19,13,f +12848,3022,15,3,f +12848,3022,0,17,f +12848,3022,71,19,f +12848,3023,28,8,f +12848,3023,19,17,f +12848,3023,33,5,f +12848,3023,0,12,f +12848,3023,46,2,f +12848,3023,72,5,f +12848,3023,71,4,f +12848,3023,15,9,f +12848,3024,15,2,f +12848,3024,72,6,f +12848,3024,71,2,f +12848,30259,71,2,f +12848,3026,15,2,f +12848,3029,15,4,f +12848,3029,71,2,f +12848,3030,71,2,f +12848,30304,15,2,f +12848,3031,71,4,f +12848,3032,72,2,f +12848,3032,15,3,f +12848,3034,72,6,f +12848,3034,0,2,f +12848,3034,14,1,f +12848,3034,28,1,f +12848,3034,71,6,f +12848,3035,15,2,f +12848,30355,15,2,f +12848,30355,71,2,f +12848,30356,71,1,f +12848,30356,15,2,f +12848,30359b,71,2,f +12848,3036,15,3,f +12848,30361,0,1,f +12848,30361pr1007,15,1,f +12848,30362,15,2,f +12848,30367cpr1007,40,1,f +12848,30370pr0003,15,1,f +12848,30370pr0004,15,1,f +12848,30372pr0001,40,1,f +12848,30374,19,2,f +12848,30374,41,1,f +12848,30377,0,2,f +12848,3038,15,15,f +12848,30383,15,2,f +12848,3039,19,1,f +12848,3039,15,7,f +12848,3039pr0014,0,1,f +12848,3039pr0015,0,1,f +12848,3040b,72,6,f +12848,3040b,15,91,f +12848,30414,72,3,f +12848,30414,15,4,f +12848,30480pr1002,15,1,f +12848,30503,72,1,f +12848,30503,15,4,f +12848,30504,15,1,f +12848,30552,71,1,f +12848,30565,15,12,f +12848,30565,72,12,f +12848,30586,71,2,f +12848,3062b,47,2,f +12848,3068b,72,4,f +12848,3068b,71,1,f +12848,3068b,15,10,f +12848,3069b,71,10,f +12848,3069b,72,1,f +12848,3069b,320,2,f +12848,3069b,15,5,f +12848,3069bpr0090,72,3,f +12848,3070b,15,2,f +12848,3070bpr0149,15,2,f +12848,3176,71,2,f +12848,32002,19,2,f +12848,32014,72,1,f +12848,32028,14,4,f +12848,32028,71,4,f +12848,32028,0,2,f +12848,32054,4,2,f +12848,32054,0,3,f +12848,32062,4,1,f +12848,32063,0,2,f +12848,32064a,320,4,f +12848,32064a,71,1,f +12848,32123b,71,1,f +12848,32123b,14,2,f +12848,32270,0,4,f +12848,32278,15,4,f +12848,32316,71,1,f +12848,32449,0,1,f +12848,3245b,15,8,f +12848,3245b,72,2,f +12848,32524,14,2,f +12848,32525,71,1,f +12848,32526,2,2,f +12848,32556,19,1,f +12848,3298,15,10,f +12848,3298,25,4,f +12848,3460,71,2,f +12848,3460,0,14,f +12848,3460,15,2,f +12848,3622,71,3,f +12848,3622,15,9,f +12848,3623,0,2,f +12848,3623,15,2,f +12848,3626bpr0854,78,1,f +12848,3626cpr1149,78,2,f +12848,3626cpr1322,78,1,f +12848,3626cpr1368,78,1,f +12848,3626cpr1441,78,2,f +12848,3626cpr1659,78,1,f +12848,3626cpr1709,78,2,f +12848,3626cpr1806,78,1,f +12848,3626cpr1815,78,1,f +12848,3626cpr1816,78,1,f +12848,3660,15,1,f +12848,3660,71,8,f +12848,3665,15,8,f +12848,3666,15,4,f +12848,3666,72,13,f +12848,3666,19,6,f +12848,3666,14,2,f +12848,3673,71,1,f +12848,3678b,15,11,f +12848,3700,72,8,f +12848,3700,71,7,f +12848,3702,71,3,f +12848,3705,0,1,f +12848,3706,0,2,f +12848,3707,0,1,f +12848,3708,0,3,f +12848,3710,72,2,f +12848,3710,71,4,f +12848,3710,0,4,f +12848,3710,320,12,f +12848,3710,15,3,f +12848,3713,4,3,f +12848,3738,4,2,f +12848,3743,0,6,f +12848,3749,19,2,f +12848,3794b,71,2,f +12848,3795,28,3,f +12848,3795,71,7,f +12848,3795,72,15,f +12848,3795,15,12,f +12848,3830,71,2,f +12848,3831,71,2,f +12848,3832,72,2,f +12848,3832,15,2,f +12848,3832,0,1,f +12848,3849,179,2,f +12848,3894,72,2,f +12848,3895,72,1,f +12848,3901,70,1,f +12848,3937,4,1,f +12848,3937,72,2,f +12848,3938,71,1,f +12848,3938,0,1,f +12848,3941,182,6,f +12848,3956,71,1,f +12848,4032a,0,4,f +12848,4032a,14,1,f +12848,4070,71,11,f +12848,4070,72,2,f +12848,4070,0,1,f +12848,4081b,72,8,f +12848,4081b,15,2,f +12848,40902,0,1,f +12848,41539,15,1,f +12848,4162,70,4,f +12848,4162,72,5,f +12848,4162,15,1,f +12848,41677,72,2,f +12848,41769,72,1,f +12848,41770,72,1,f +12848,42003,71,1,f +12848,42446,71,2,f +12848,42610,71,2,f +12848,4274,1,3,f +12848,4282,15,1,f +12848,4282,72,1,f +12848,4282,0,7,f +12848,4285b,72,1,f +12848,4286,71,1,f +12848,4286,72,1,f +12848,4286,15,29,f +12848,4287,15,8,f +12848,43093,1,9,f +12848,43710,15,1,f +12848,43711,15,1,f +12848,43722,71,2,f +12848,43722,0,2,f +12848,43722,15,2,f +12848,43723,15,2,f +12848,43723,0,2,f +12848,43723,71,2,f +12848,44375a,71,1,f +12848,44567a,14,4,f +12848,4460b,15,4,f +12848,4460b,72,4,f +12848,44674,15,1,f +12848,44728,15,2,f +12848,44728,0,6,f +12848,4510,15,2,f +12848,4510,71,2,f +12848,4589,80,1,f +12848,4595,0,1,f +12848,4599b,0,3,f +12848,4599b,14,1,f +12848,4600,71,1,f +12848,46304,15,7,f +12848,4733,72,3,f +12848,4740,71,1,f +12848,4740,15,1,f +12848,48092,15,4,f +12848,48336,15,2,f +12848,48336,0,2,f +12848,4865a,0,2,f +12848,48729b,72,1,f +12848,50304,15,2,f +12848,50305,15,2,f +12848,50745,179,1,f +12848,50923,72,2,f +12848,50950,71,2,f +12848,51739,72,6,f +12848,54200,15,67,f +12848,54200,0,2,f +12848,54200,71,33,f +12848,54383,15,4,f +12848,54384,15,5,f +12848,55013,72,1,f +12848,57899,0,2,f +12848,58247,0,2,f +12848,59349,15,1,f +12848,59443,72,3,f +12848,59900,72,2,f +12848,59900,0,1,f +12848,60470b,0,1,f +12848,60471,71,4,f +12848,60474,71,6,f +12848,60474,72,7,f +12848,60474,0,1,f +12848,60475b,72,3,f +12848,60475b,71,1,f +12848,60477,72,4,f +12848,60477,15,5,f +12848,60478,0,2,f +12848,60478,72,2,f +12848,60479,71,2,f +12848,60479,15,2,f +12848,60481,15,13,f +12848,60481,212,1,f +12848,60581,41,2,f +12848,6082,72,2,f +12848,60849,0,2,f +12848,60897,15,2,f +12848,60897,71,2,f +12848,6091,0,2,f +12848,6106,15,4,f +12848,6111,15,5,f +12848,61252,19,1,f +12848,6134,71,2,f +12848,61409,0,2,f +12848,61409,71,9,f +12848,6141,80,4,f +12848,6141,36,19,f +12848,6141,15,3,f +12848,6141,179,4,f +12848,61485,71,4,f +12848,61780,72,2,f +12848,6180,0,8,f +12848,6238,40,1,f +12848,62462,320,1,f +12848,62462,14,1,f +12848,62462,0,3,f +12848,6259,15,4,f +12848,63864,72,2,f +12848,63864,15,2,f +12848,63868,71,2,f +12848,64225,71,1,f +12848,64567,80,1,f +12848,64567,0,3,f +12848,64644,0,1,f +12848,6541,71,25,f +12848,6558,1,7,f +12848,6587,28,1,f +12848,6628,0,1,f +12848,6636,0,2,f +12848,6636,72,6,f +12848,6636,71,4,f +12848,6636,15,6,f +12848,74664,15,2,f +12848,76244,15,1,f +12848,76766,1,1,f +12848,85544,4,1,f +12848,85984,71,11,f +12848,85984,25,1,f +12848,85984,15,38,f +12848,85984,72,7,f +12848,86055,71,1,f +12848,86056,71,1,f +12848,86057,19,1,f +12848,86057,72,1,f +12848,86058,19,1,f +12848,86058,72,1,f +12848,86059,72,1,f +12848,87079,15,1,f +12848,87079,0,3,f +12848,87079,72,2,f +12848,87082,0,2,f +12848,87083,72,1,f +12848,87087,4,1,f +12848,87544,71,3,f +12848,87552,71,2,f +12848,87555,15,7,f +12848,87580,320,2,f +12848,87580,72,1,f +12848,87580,71,21,f +12848,87609,71,2,f +12848,87617,0,2,f +12848,87990,70,1,f +12848,87994,15,2,f +12848,88072,71,1,f +12848,89752,15,1,f +12848,89908,71,1,f +12848,90194,15,1,f +12848,90254,15,1,f +12848,90255,15,1,f +12848,91988,71,6,f +12848,92280,71,6,f +12848,92738,0,9,f +12848,92947,71,2,f +12848,93095,15,2,f +12848,93274,72,2,f +12848,93348,15,1,f +12848,93571,0,2,f +12848,95188,71,12,f +12848,96874,25,1,t +12848,970c00,71,1,f +12848,970c00,19,1,f +12848,970c00pr0476,25,2,f +12848,970c00pr0858,71,3,f +12848,970c00pr0963,15,3,f +12848,970c00pr0964,15,1,f +12848,970c00pr0966,71,1,f +12848,970x194,15,2,f +12848,973pr2289c01,25,2,f +12848,973pr2311c01,15,2,f +12848,973pr3025c01,15,3,f +12848,973pr3178c01,28,3,f +12848,973pr3179c01,15,1,f +12848,973pr3181c01,308,1,f +12848,973pr3182c01,28,1,f +12848,973pr3183c01,19,1,f +12848,98100,71,5,f +12848,98138,46,4,f +12848,98138,47,1,f +12848,98138,33,6,f +12848,98138,1,4,f +12848,98285,71,1,f +12848,98286,71,1,f +12848,98560,15,2,f +12848,99206,71,6,f +12848,99206,0,5,f +12848,99207,71,9,f +12848,99774,72,2,f +12848,99780,0,1,f +12848,99780,14,2,f +12848,99780,72,5,f +12848,99781,0,2,f +12848,99781,15,8,f +12855,2926,7,1,f +12855,3004,7,2,f +12855,30132,8,1,f +12855,30155,7,1,f +12855,30167,6,1,f +12855,3023,8,2,f +12855,3034,7,1,f +12855,3062b,0,2,f +12855,3139,0,2,f +12855,32556,7,1,f +12855,3626bpr0247,14,1,f +12855,3665,7,2,f +12855,3666,0,1,f +12855,3700,8,1,f +12855,3747a,7,1,f +12855,3795,0,2,f +12855,3829c01,4,1,f +12855,41855,4,1,f +12855,41862,8,1,f +12855,43719,8,1,f +12855,44661,4,1,f +12855,4617b,6,1,f +12855,4624,7,2,f +12855,4865a,47,1,f +12855,970c00pb018,19,1,f +12855,973pb0281c01,2,1,f +12861,3003,14,1,f +12861,3004,1,1,f +12861,3020,1,1,f +12861,3022,4,1,f +12861,3023,4,1,f +12861,3024,14,2,f +12861,3039,4,1,f +12861,3040b,14,1,f +12861,3040b,1,2,f +12861,3298px11,14,1,f +12861,3660,14,1,f +12861,3665,14,2,f +12861,3665,1,2,f +12861,3710,14,2,f +12861,3710,4,1,f +12861,4286,14,3,f +12861,6141,15,2,f +12863,10187,179,2,f +12863,10884,2,6,f +12863,10928,72,1,f +12863,11055,0,4,f +12863,11090,0,6,f +12863,11100,297,2,f +12863,11211,2,1,f +12863,11213,322,1,f +12863,11214,72,2,f +12863,11439pat0003,34,1,f +12863,11458,72,2,f +12863,11476,0,4,f +12863,11477,2,1,f +12863,11477,71,2,f +12863,11610,179,2,f +12863,13269,0,1,f +12863,14417,72,2,f +12863,14418,71,4,f +12863,14704,71,3,f +12863,14707,71,2,f +12863,14716,308,2,f +12863,14719,71,2,f +12863,14769,297,1,f +12863,15100,0,2,f +12863,15254,72,2,f +12863,15406,0,1,f +12863,15439,0,1,f +12863,15456,0,2,f +12863,15462,28,1,f +12863,15535,72,1,f +12863,15573,297,4,f +12863,15672,15,4,f +12863,15672,71,2,f +12863,15706,70,4,f +12863,15712,0,2,f +12863,15712,378,4,f +12863,18651,0,2,f +12863,18654,72,1,f +12863,18674,70,2,f +12863,18674,72,1,f +12863,19857pat0004,0,1,f +12863,23984,148,2,f +12863,23985,15,1,f +12863,2419,71,1,f +12863,2420,70,1,f +12863,2420,2,4,f +12863,2423,2,2,f +12863,2445,70,2,f +12863,2449,72,4,f +12863,2450,322,4,f +12863,2453b,70,2,f +12863,2456,2,1,f +12863,2488,2,1,f +12863,2528,0,1,f +12863,2540,0,2,f +12863,2540,72,2,f +12863,2562,70,2,f +12863,2780,0,1,f +12863,2877,70,6,f +12863,3004,71,10,f +12863,3010,0,1,f +12863,30136,308,6,f +12863,30153,42,1,f +12863,30162,297,1,f +12863,30170,72,1,f +12863,30171,70,1,f +12863,30173b,297,2,f +12863,30173b,179,1,f +12863,30176,2,1,f +12863,3020,70,4,f +12863,3020,28,1,f +12863,3023,2,8,f +12863,3023,28,4,f +12863,3024,0,2,f +12863,3028,70,1,f +12863,3031,2,1,f +12863,3036,322,1,f +12863,30373,72,1,f +12863,30374,70,1,f +12863,30385,297,2,f +12863,3046a,72,2,f +12863,30526,72,2,f +12863,3069b,308,5,f +12863,32000,72,1,f +12863,32073,14,1,f +12863,32124,70,1,f +12863,32294,72,1,f +12863,32474,71,1,f +12863,32523,72,2,f +12863,32529,0,2,f +12863,3298,72,1,f +12863,33121,191,1,f +12863,33291,70,6,f +12863,3623,2,4,f +12863,3623,72,4,f +12863,3626b,84,4,f +12863,3626b,297,1,f +12863,3626b,25,1,f +12863,3626cpr0893,14,1,f +12863,3626cpr1561,14,1,f +12863,3626cpr1642,14,1,f +12863,3633,0,2,f +12863,3660,71,2,f +12863,3666,72,2,f +12863,3666,70,1,f +12863,3673,71,1,f +12863,3676,72,2,f +12863,3706,0,1,f +12863,3709,72,2,f +12863,3749,19,1,f +12863,3795,2,1,f +12863,3832,70,1,f +12863,3937,0,1,f +12863,3943b,15,1,f +12863,3957a,47,1,f +12863,4032a,25,1,f +12863,4032a,0,1,f +12863,40378,308,1,f +12863,4081b,71,2,f +12863,40902,71,1,f +12863,4274,1,2,f +12863,43093,1,2,f +12863,4349,4,2,f +12863,43887,0,2,f +12863,43888,4,2,f +12863,4424,70,1,f +12863,4460b,72,2,f +12863,4522,0,1,f +12863,4590,72,5,f +12863,4599b,71,2,f +12863,47457,326,1,f +12863,47847,72,2,f +12863,4865a,0,1,f +12863,48729b,0,2,f +12863,49668,179,6,f +12863,53451,28,1,f +12863,53454,148,2,f +12863,54200,297,2,f +12863,54200,326,2,f +12863,54200,42,4,f +12863,54200,71,2,f +12863,57895pr0007,47,1,f +12863,59426,72,1,f +12863,59443,72,2,f +12863,59900,1002,1,f +12863,59900,72,2,f +12863,60169,72,1,f +12863,6041,0,1,f +12863,60474,322,1,f +12863,60474,71,1,f +12863,60477,0,4,f +12863,60592,0,2,f +12863,60593,0,2,f +12863,60596,0,3,f +12863,6064,19,1,f +12863,60752,179,1,f +12863,6091,2,1,f +12863,61199,71,1,f +12863,6134,15,1,f +12863,6141,297,6,f +12863,6141,42,1,f +12863,6141,4,2,f +12863,6153b,0,2,f +12863,6266,0,1,f +12863,63868,70,2,f +12863,63965,70,2,f +12863,63965,72,1,f +12863,64647,182,2,f +12863,64713,179,1,f +12863,64727,71,8,f +12863,6541,71,2,f +12863,75937,0,1,f +12863,75937,179,1,f +12863,85861,71,5,f +12863,85861,0,3,f +12863,85940,0,1,f +12863,85975,297,1,f +12863,85984,72,1,f +12863,86500,15,1,f +12863,87079,70,2,f +12863,87079,19,1,f +12863,87617,4,2,f +12863,87994,297,1,f +12863,88292,0,2,f +12863,92280,0,1,f +12863,92338,179,1,f +12863,92582,71,1,f +12863,92593,72,1,f +12863,92946,72,4,f +12863,92947,15,1,f +12863,92947,308,2,f +12863,93059,297,1,f +12863,93069,15,1,f +12863,93571,72,1,f +12863,95354,0,1,f +12863,96874,25,1,t +12863,970c00pr0879,0,1,f +12863,970c00pr0880,15,1,f +12863,970d00pr9999,70,1,f +12863,973pr3031c01,15,1,f +12863,973pr9982c01,288,1,f +12863,98128,0,1,f +12863,98138pr0024a,179,1,f +12863,98138pr0043,34,1,t +12863,98138pr0043,34,1,f +12863,98313,72,2,f +12863,98313,0,4,f +12863,99207,71,1,f +12863,99207,0,3,f +12863,99780,71,1,f +12865,10197,72,2,f +12865,10928,72,4,f +12865,11213,71,2,f +12865,11833,36,1,f +12865,14210,15,1,f +12865,14418,71,12,f +12865,14704,71,5,f +12865,14769,191,5,f +12865,15068,288,4,f +12865,15391,15,1,f +12865,15392,72,1,t +12865,15392,72,1,f +12865,15460,72,4,f +12865,15573,272,2,f +12865,15712,0,6,f +12865,18587,71,2,f +12865,18588,0,2,f +12865,18975,72,1,f +12865,21268,71,1,f +12865,22411,0,1,f +12865,2357,0,4,f +12865,2412b,71,1,f +12865,2419,272,1,f +12865,2432,0,2,f +12865,2460,72,4,f +12865,2508,0,1,f +12865,25264,15,1,f +12865,25264,15,1,t +12865,25893,47,1,f +12865,25893,47,1,t +12865,25895,15,1,f +12865,2736,71,4,f +12865,2780,0,5,f +12865,2780,0,2,t +12865,2877,0,2,f +12865,3001,0,3,f +12865,3002,15,4,f +12865,3002,29,1,f +12865,3003,71,1,f +12865,3005,15,2,f +12865,3010,15,3,f +12865,30136,72,8,f +12865,3020,71,5,f +12865,3022,0,4,f +12865,3023,47,6,f +12865,3023,191,4,f +12865,3040b,288,8,f +12865,30553,72,8,f +12865,30554b,71,8,f +12865,30602,288,6,f +12865,3069b,0,1,f +12865,3176,0,4,f +12865,32001,71,1,f +12865,32054,71,2,f +12865,32062,0,4,f +12865,32064a,14,4,f +12865,32073,14,3,f +12865,32123b,71,2,f +12865,32123b,71,1,t +12865,32187,71,1,f +12865,3460,15,2,f +12865,3626cpr0966,4,1,f +12865,3626cpr1275,78,1,f +12865,3626cpr1382,78,1,f +12865,3626cpr1976,15,1,f +12865,3626cpr1977,78,1,f +12865,3660,72,4,f +12865,3666,72,1,f +12865,3666,272,2,f +12865,3700,1,4,f +12865,3701,15,2,f +12865,3705,4,1,f +12865,3709,0,4,f +12865,3710,0,2,f +12865,3747a,272,4,f +12865,3795,0,1,f +12865,3829c01,4,1,f +12865,3941,72,6,f +12865,3941,71,4,f +12865,40240,308,1,f +12865,4032a,10,12,f +12865,4032a,71,5,f +12865,40902,0,8,f +12865,41532,0,4,f +12865,42021,272,1,f +12865,42023,15,2,f +12865,43093,1,6,f +12865,44567a,0,8,f +12865,44567a,71,4,f +12865,44728,71,3,f +12865,4599b,71,1,t +12865,4599b,71,2,f +12865,4740,72,1,f +12865,4740,41,1,f +12865,4742,72,1,f +12865,47457,4,1,f +12865,48092,191,4,f +12865,48092,71,4,f +12865,48723,72,1,f +12865,48724,71,1,f +12865,51739,15,1,f +12865,55013,72,2,f +12865,55981,0,4,f +12865,57585,71,2,f +12865,59426,72,5,f +12865,59443,72,3,f +12865,59900,71,2,f +12865,59900,72,4,f +12865,60474,191,2,f +12865,60474,0,2,f +12865,60478,72,2,f +12865,6060,15,2,f +12865,6091,288,8,f +12865,61252,15,1,f +12865,6141,47,2,t +12865,6141,4,2,f +12865,6141,47,4,f +12865,6141,42,17,f +12865,6141,10,3,t +12865,6141,0,8,f +12865,6141,4,1,t +12865,6141,42,2,t +12865,6141,0,1,t +12865,6141,10,30,f +12865,61485,0,1,f +12865,6259,72,4,f +12865,63869,71,2,f +12865,63965,72,1,f +12865,64225,191,4,f +12865,6541,71,4,f +12865,6585,0,1,f +12865,6589,19,3,f +12865,85861,71,2,t +12865,85861,71,6,f +12865,85984,15,1,f +12865,87081,4,1,f +12865,87082,0,1,f +12865,87580,272,1,f +12865,89523,72,2,f +12865,90194,0,4,f +12865,90397,15,1,f +12865,92593,15,2,f +12865,92947,0,1,f +12865,93095,0,2,f +12865,93250,2,1,f +12865,93273,71,1,f +12865,970c00,0,1,f +12865,970c00,2,1,f +12865,970c00,1,1,f +12865,970c00,15,1,f +12865,970c00pr0002,10,1,f +12865,973pr2047c01,1,1,f +12865,973pr2504c01,272,1,f +12865,973pr3458c01,15,1,f +12865,973pr3459c01,10,1,f +12865,973pr3460c01,2,1,f +12866,11291,4,2,f +12866,14769,4,1,f +12866,15100,0,2,f +12866,18395,191,2,f +12866,2817,0,1,f +12866,3023,72,4,f +12866,3031,72,1,f +12866,3034,14,1,f +12866,32530,72,2,f +12866,3673,71,2,f +12866,3941,182,2,f +12866,4274,71,2,f +12866,6231,4,2,f +12866,85984,25,1,f +12867,3001a,1,12,f +12867,3001a,14,12,f +12867,3001a,15,12,f +12867,3001a,4,12,f +12867,3001a,47,2,f +12867,3001a,0,12,f +12867,3002a,4,4,f +12867,3002a,14,4,f +12867,3002a,1,4,f +12867,3002a,15,4,f +12867,3003,15,6,f +12867,3003,4,6,f +12867,3003,0,12,f +12867,3003,47,2,f +12867,3003,1,6,f +12867,3003,14,6,f +12867,3004,1,6,f +12867,3004,4,6,f +12867,3004,0,6,f +12867,3004,15,6,f +12867,3004,14,6,f +12867,3007,4,2,f +12867,3008,1,2,f +12867,3008,15,2,f +12867,3009,14,2,f +12867,3010,15,2,f +12867,3021,0,1,f +12867,3032,14,1,f +12867,3033,4,1,f +12867,3034,1,2,f +12867,3035,1,1,f +12867,3039,1,4,f +12867,3039,4,6,f +12867,3081cc01,4,2,f +12867,3137c01,0,2,f +12867,3185,15,4,f +12867,3471,2,1,f +12867,3579,4,1,f +12867,3581,4,4,f +12867,3582,1,4,f +12867,3612,15,2,f +12867,3613,15,2,f +12867,3614a,14,2,f +12867,3641,0,4,f +12867,3660,1,4,f +12867,3660,4,6,f +12867,453cc01,4,2,f +12867,685px1c01,14,1,f +12867,700ed2,2,1,f +12867,7930,1,1,f +12867,x196,0,1,f +12867,x407,1,1,f +12868,2453a,15,2,f +12868,2460,1,2,f +12868,2476a,4,2,f +12868,30000,7,1,f +12868,3004,8,2,f +12868,3009,8,2,f +12868,3020,0,1,f +12868,3022,1,3,f +12868,3022,4,3,f +12868,3023,7,2,f +12868,3034,8,1,f +12868,30492,1,1,f +12868,30492,4,1,f +12868,32064a,1,3,f +12868,32064b,4,3,f +12868,32124,0,2,f +12868,3460,15,1,f +12868,3626bpb0117,14,1,f +12868,3626bpb0162,14,1,f +12868,3666,8,1,f +12868,3700,0,2,f +12868,3707,0,1,f +12868,3708,0,2,f +12868,3710,0,2,f +12868,3754pb05,47,1,f +12868,3794a,0,4,f +12868,3795,8,1,f +12868,3894,8,2,f +12868,42073cx1,8,1,f +12868,4287,0,2,f +12868,43093,1,2,f +12868,43372,19,2,f +12868,43373,25,2,f +12868,43374,15,2,f +12868,43702,4,2,f +12868,43702,1,2,f +12868,6538b,0,1,f +12868,973bpb157c01,4,1,f +12868,973bpb189c01,110,1,f +12868,bball01,9999,1,f +12868,x494cx1,110,1,f +12868,x494cx1,4,1,f +12869,2447,0,1,t +12869,2447,0,1,f +12869,2555,15,1,f +12869,30171,0,1,f +12869,30375,15,2,f +12869,32523,15,1,f +12869,3626bpr0389,14,1,f +12869,3838,0,1,f +12869,3959,71,1,f +12869,4589,34,1,f +12869,53989,15,4,f +12869,54200,36,1,f +12869,54200,36,1,t +12869,61184,71,1,f +12869,6141,33,3,f +12869,6141,33,1,t +12869,63868,15,1,f +12869,970c00pr0127,72,1,f +12869,973pr1490c01,72,1,f +12871,3001a,4,2,f +12871,3001a,14,5,f +12871,3001a,1,1,f +12871,3001a,47,1,f +12871,3001a,0,2,f +12871,3002a,0,3,f +12871,3003,4,1,f +12871,3003,0,4,f +12871,3004,1,1,f +12871,3004,14,27,f +12871,3005,4,2,f +12871,3005,14,10,f +12871,3005,15,7,f +12871,3008,14,16,f +12871,3009,14,9,f +12871,3010,4,2,f +12871,3010,1,2,f +12871,3010,0,1,f +12871,3010,14,17,f +12871,3010p30,4,2,f +12871,3010p30,14,1,f +12871,3010pb035u,4,1,f +12871,3020,1,2,f +12871,3020,0,2,f +12871,3020,4,2,f +12871,3021,4,4,f +12871,3022,1,1,f +12871,3023,0,1,f +12871,3030,4,1,f +12871,3031,0,1,f +12871,3032,1,1,f +12871,3032,0,1,f +12871,3033,4,1,f +12871,3034,4,1,f +12871,3035,4,1,f +12871,3036,4,1,f +12871,3037,47,1,f +12871,3039,47,1,f +12871,3062a,0,3,f +12871,3069b,0,4,f +12871,3081cc01,4,1,f +12871,3137c01,0,3,f +12871,3137c02,0,5,f +12871,3139,0,6,f +12871,3149c01,4,3,f +12871,3176,4,1,f +12871,31cc01,4,3,f +12871,3228a,1,2,f +12871,3297,4,8,f +12871,3298,4,4,f +12871,3299,4,2,f +12871,32bc01,4,1,f +12871,3308,14,4,f +12871,3315,4,1,f +12871,3324c01,4,1,f +12871,3404ac01,0,1,f +12871,3455,14,3,f +12871,3492c01,14,1,f +12871,3581,14,2,f +12871,3582,1,2,f +12871,586c01,4,1,f +12871,630,4,1,f +12871,784,4,1,f +12871,7b,0,10,f +12871,809,2,1,f +12871,818,1,1,f +12871,rb00164,0,1,f +12873,3700,0,4,f +12873,3701,0,4,f +12873,3702,0,4,f +12873,3709,0,2,f +12873,3738,0,2,f +12873,3894,0,4,f +12875,2456,14,2,f +12875,3001,14,2,f +12875,3001,1,2,f +12875,3001,4,2,f +12875,3001,15,1,f +12875,3002,4,2,f +12875,3002,14,2,f +12875,3002,15,2,f +12875,3003,4,4,f +12875,3003,0,1,f +12875,3003,14,4,f +12875,3003,1,3,f +12875,3003,15,2,f +12875,3003pe2,14,2,f +12875,4727,2,1,f +12875,4728,15,1,f +12875,4744pb11,2,1,f +12875,4744pr0002,4,1,f +12875,6215,1,2,f +12876,2352,14,1,f +12876,2456,1,2,f +12876,3001,1,5,f +12876,3001,14,5,f +12876,3001,15,4,f +12876,3001,4,5,f +12876,3001,0,2,f +12876,3002,15,2,f +12876,3002,1,2,f +12876,3002,14,4,f +12876,3002,4,2,f +12876,3003,4,10,f +12876,3003,14,10,f +12876,3003,0,4,f +12876,3003,15,6,f +12876,3003,1,8,f +12876,3003pe2,14,2,f +12876,3007,1,2,f +12876,30072,2,1,f +12876,3185,14,4,f +12876,3483,0,4,f +12876,4727,2,3,f +12876,4728,15,1,f +12876,4728,1,1,f +12876,4728,14,1,f +12876,4744,4,1,f +12876,4744,1,1,f +12876,4744p04,0,1,f +12876,4744pr0002,4,1,f +12876,4745,14,1,f +12876,600,14,1,f +12876,601,14,2,f +12876,6213pb01,2,1,f +12876,6214px1,2,1,f +12876,6215,2,2,f +12876,6215,14,4,f +12876,6215,4,2,f +12876,6216,2,1,f +12876,6216,14,2,f +12876,6232,4,1,f +12876,6235,4,1,f +12876,6236,4,1,f +12876,6248,4,4,f +12876,6249,4,2,f +12878,2357,15,7,f +12878,2362a,47,2,f +12878,2412b,71,10,f +12878,2412b,72,13,f +12878,2420,15,1,f +12878,2431,72,3,f +12878,2431,33,6,f +12878,2432,71,1,f +12878,2436,1,2,f +12878,2437,40,1,f +12878,2445,0,1,f +12878,2453a,70,2,f +12878,2454a,4,2,f +12878,2456,72,2,f +12878,2465,4,1,f +12878,2465,72,5,f +12878,3001,71,9,f +12878,3001,70,1,f +12878,3001,19,8,f +12878,3001,15,1,f +12878,3001,2,5,f +12878,3003,15,9,f +12878,3003,288,1,f +12878,3003,27,2,f +12878,3003,71,4,f +12878,3004,15,16,f +12878,3004,71,10,f +12878,3005,15,17,f +12878,3005,71,4,f +12878,3005,70,2,f +12878,30055,0,2,f +12878,3006,15,2,f +12878,3008,15,27,f +12878,3009,15,11,f +12878,3009,72,4,f +12878,3009,71,3,f +12878,3010,19,2,f +12878,3010,15,16,f +12878,30126,72,1,t +12878,30126,72,1,f +12878,3020,71,4,f +12878,3020,4,2,f +12878,3020,0,2,f +12878,3021,4,2,f +12878,3022,71,4,f +12878,3022,4,3,f +12878,3022,2,2,f +12878,3022,15,4,f +12878,3023,46,1,f +12878,3023,72,17,f +12878,3023,15,11,f +12878,3023,4,2,f +12878,3023,1,2,f +12878,3024,15,2,f +12878,3024,182,2,f +12878,3024,4,1,f +12878,3032,71,1,f +12878,3034,71,1,f +12878,3034,2,5,f +12878,3034,72,1,f +12878,3034,4,2,f +12878,3035,72,1,f +12878,30374,70,1,f +12878,3038,4,27,f +12878,30383,15,1,f +12878,3039,71,2,f +12878,3039,4,6,f +12878,3039,2,4,f +12878,3040b,288,8,f +12878,3041,4,5,f +12878,30414,1,1,f +12878,3043,4,1,f +12878,3048c,288,4,f +12878,3062b,70,7,f +12878,3062b,72,4,f +12878,3068b,71,4,f +12878,3068b,14,1,f +12878,3068b,19,2,f +12878,3069b,14,3,f +12878,3069b,19,8,f +12878,3069b,484,4,f +12878,3070b,72,7,f +12878,3070b,72,1,t +12878,3070b,15,1,f +12878,3070b,71,5,f +12878,3070b,71,1,t +12878,3070b,15,1,t +12878,3070bpr0007,71,1,t +12878,3070bpr0007,71,1,f +12878,32028,71,9,f +12878,3297,4,3,f +12878,33078,4,2,f +12878,3460,1,2,f +12878,3460,2,1,f +12878,3622,72,1,f +12878,3622,15,18,f +12878,3622,2,1,f +12878,3623,71,5,f +12878,3626c,47,1,f +12878,3660,71,1,f +12878,3660,27,1,f +12878,3660,4,2,f +12878,3665,1,4,f +12878,3684,71,1,f +12878,3700,15,1,f +12878,3710,19,4,f +12878,3710,15,7,f +12878,3710,70,3,f +12878,3710,1,1,f +12878,3710,0,3,f +12878,3747b,15,1,f +12878,3794b,70,1,f +12878,3795,0,1,f +12878,3829c01,71,1,f +12878,3832,19,2,f +12878,3899,47,1,f +12878,3937,0,4,f +12878,3941,2,1,f +12878,3941,70,1,f +12878,3957b,0,1,f +12878,4032a,70,1,f +12878,4032a,15,2,f +12878,41539,71,1,f +12878,41539,72,1,f +12878,4162,71,1,f +12878,4162,72,7,f +12878,4162,70,4,f +12878,4282,71,2,f +12878,4286,2,2,f +12878,4287,288,4,f +12878,4287,15,2,f +12878,43337,71,2,f +12878,43337,0,1,f +12878,4445,4,6,f +12878,4477,70,2,f +12878,4477,71,1,f +12878,4490,15,1,f +12878,4599b,0,2,f +12878,4600,0,2,f +12878,4740,0,1,f +12878,48183,1,1,f +12878,48336,14,1,f +12878,4865a,71,2,f +12878,4865a,40,1,f +12878,49668,27,2,f +12878,50745,72,4,f +12878,54200,36,1,t +12878,54200,36,2,f +12878,54200,1,1,t +12878,54200,27,1,t +12878,54200,4,1,t +12878,54200,4,1,f +12878,54200,70,5,f +12878,54200,15,1,f +12878,54200,1,8,f +12878,54200,70,1,t +12878,54200,15,1,t +12878,54200,27,6,f +12878,55206c06,71,1,f +12878,57895,47,2,f +12878,6014b,71,4,f +12878,6019,0,3,f +12878,60470a,14,1,f +12878,60471,0,2,f +12878,60476,0,2,f +12878,60478,72,2,f +12878,60478,4,6,f +12878,60479,4,2,f +12878,60592,19,15,f +12878,60594,19,6,f +12878,60596,19,4,f +12878,60601,47,14,f +12878,60603,47,6,f +12878,60616a,47,1,f +12878,60623,1,1,f +12878,60700,0,4,f +12878,6091,1,2,f +12878,6134,71,4,f +12878,6141,297,1,f +12878,6141,46,1,t +12878,6141,27,1,t +12878,6141,57,1,t +12878,6141,27,11,f +12878,6141,14,6,f +12878,6141,46,2,f +12878,6141,71,1,t +12878,6141,14,1,t +12878,6141,57,3,f +12878,6141,71,4,f +12878,6141,297,1,t +12878,6141,25,5,f +12878,6141,25,1,t +12878,6191,4,3,f +12878,6231,71,2,f +12878,63864,71,5,f +12878,63868,4,2,f +12878,64647,57,1,t +12878,64647,57,1,f +12878,6587,28,1,f +12878,73983,15,2,f +12878,73983,72,2,f +12878,87079,72,2,f +12878,87087,72,2,f +12878,87544,71,2,f +12878,88930,0,1,f +12878,91405,71,3,f +12878,91405,2,2,f +12878,92280,4,4,f +12878,92593,72,2,f +12878,95120,0,1,f +12879,3626bpr0823,14,1,f +12879,88646,0,1,f +12879,90396,84,1,f +12879,93221pr0002,31,1,f +12879,970c00pr0243,5,1,f +12879,973pr1820c01,5,1,f +12880,3003,14,1,f +12880,3004,4,1,f +12880,3004p0b,14,1,f +12880,3010,14,1,f +12880,3021,0,1,f +12880,3022,0,1,f +12880,3039,4,2,f +12880,3040b,0,2,f +12881,2335,7,2,f +12881,2412b,7,2,f +12881,2412b,8,1,f +12881,2540,8,2,f +12881,298c02,7,4,f +12881,298c02,7,1,t +12881,298c03,0,1,f +12881,298c05,0,1,t +12881,30000,8,1,f +12881,3003,0,2,f +12881,3020,7,3,f +12881,3023,14,1,f +12881,3023,47,1,f +12881,3023,7,7,f +12881,3031,7,1,f +12881,30365,8,4,f +12881,30552,7,4,f +12881,30553,0,1,f +12881,30554a,7,8,f +12881,30602,8,1,f +12881,3069b,15,1,f +12881,32000,7,1,f +12881,32062,0,4,f +12881,32198,7,4,f +12881,3678a,8,2,f +12881,3700,7,1,f +12881,3794a,7,1,f +12881,3794a,15,2,f +12881,3795,8,3,f +12881,4032a,7,5,f +12881,4070,8,6,f +12881,4081b,7,1,f +12881,41769,15,1,f +12881,41770,15,1,f +12881,43093,1,1,f +12881,43093,1,1,t +12881,44567a,7,1,f +12881,4740,8,2,f +12881,48183,14,1,f +12881,6141,15,1,t +12881,6141,0,2,f +12881,6141,15,1,f +12881,6141,7,1,f +12881,6141,7,1,t +12881,6141,0,1,t +12881,6564,7,4,f +12881,6565,7,4,f +12881,75535,7,2,f +12882,11211,4,1,f +12882,15573,19,1,f +12882,15672,191,2,f +12882,2412b,25,2,f +12882,2421,0,1,f +12882,2496,0,1,f +12882,2655,71,1,f +12882,2877,19,1,f +12882,3002,25,1,f +12882,3004,25,3,f +12882,3004,226,2,f +12882,3005,14,2,f +12882,3005,25,2,f +12882,3020,27,1,f +12882,3020,4,1,f +12882,3020,191,1,f +12882,3022,191,2,f +12882,3023,191,2,f +12882,3023,0,1,f +12882,3031,19,1,f +12882,3039,47,1,f +12882,3039,25,3,f +12882,3040b,191,3,f +12882,33291,2,1,t +12882,33291,2,1,f +12882,3626b,14,1,f +12882,3633,15,1,f +12882,3795,226,3,f +12882,3795,14,1,f +12882,4488,71,1,f +12882,49668,15,2,f +12882,54200,0,1,t +12882,54200,0,1,f +12882,60593,15,1,f +12882,60602,47,1,f +12882,6091,191,2,f +12882,6091,25,4,f +12882,6141,4,1,f +12882,6141,4,1,t +12882,85984,25,1,f +12882,87580,25,1,f +12882,98138pr0008,15,2,f +12882,98138pr0008,15,1,t +12884,3021,0,10,f +12884,3022,0,10,f +12884,3023,0,20,f +12884,3031,0,5,f +12884,3032,0,5,f +12884,3033,0,5,f +12884,32001,0,10,f +12884,3460,0,10,f +12884,3623,0,20,f +12884,3666,0,10,f +12884,3709,0,10,f +12884,3710,0,20,f +12884,3738,0,10,f +12884,3832,0,10,f +12884,4477,0,10,f +12885,45463,52,2,f +12885,45464,52,1,f +12885,46296,52,1,f +12885,clikits006pb02,52,1,f +12885,clikits038,143,2,f +12885,clikits040,41,1,f +12885,clikits078,41,1,f +12886,10201,4,6,f +12886,10247,72,2,f +12886,10247,4,4,f +12886,10247,71,2,f +12886,11153,0,6,f +12886,11217pr0005,15,1,f +12886,11458,72,8,f +12886,11477,72,1,f +12886,13269,0,1,f +12886,13731,0,2,f +12886,14562pr0001,15,1,f +12886,2412b,0,11,f +12886,2420,4,2,f +12886,2420,0,2,f +12886,2431,4,6,f +12886,2431,0,4,f +12886,2432,0,1,f +12886,2432,72,2,f +12886,2445,15,1,f +12886,2714a,71,3,f +12886,2780,0,22,f +12886,2817,0,6,f +12886,2877,71,4,f +12886,2877,0,3,f +12886,298c02,0,1,f +12886,3001,71,1,f +12886,3003,19,1,f +12886,3020,72,11,f +12886,3021,71,6,f +12886,3022,4,10,f +12886,3022,0,2,f +12886,3023,0,2,f +12886,3023,4,19,f +12886,3023,71,10,f +12886,3024,47,2,f +12886,3024,0,2,f +12886,3024,41,1,f +12886,3029,0,2,f +12886,3034,71,2,f +12886,30350b,0,9,f +12886,30355,0,1,f +12886,30356,0,1,f +12886,30361pr0014,15,1,f +12886,30362,15,2,f +12886,3037,0,2,f +12886,30372pr0001,40,1,f +12886,30374,41,1,f +12886,30374,71,2,f +12886,30383,72,2,f +12886,3039,0,1,f +12886,30408pr0009a,1,1,f +12886,3040b,4,2,f +12886,3044b,72,1,f +12886,30554b,0,1,f +12886,3068b,72,1,f +12886,3068b,71,2,f +12886,3069b,0,2,f +12886,3176,0,2,f +12886,32000,72,3,f +12886,32028,71,6,f +12886,32054,0,3,f +12886,32059,0,1,f +12886,32062,4,1,f +12886,32064b,71,2,f +12886,32073,71,1,f +12886,32123b,71,2,f +12886,32140,0,2,f +12886,32449,4,2,f +12886,32523,4,2,f +12886,32529,0,2,f +12886,32531,0,1,f +12886,32557,71,4,f +12886,33299a,0,4,f +12886,3460,71,2,f +12886,3623,0,2,f +12886,3626cpr0999,78,1,f +12886,3626cpr1149,78,1,f +12886,3626cpr1233,78,1,f +12886,3660,0,2,f +12886,3666,72,2,f +12886,3666,4,2,f +12886,3673,71,2,f +12886,3678b,72,1,f +12886,3679,71,1,f +12886,3680,0,1,f +12886,3700,4,2,f +12886,3701,71,1,f +12886,3707,0,2,f +12886,3708,0,2,f +12886,3710,0,5,f +12886,3710,4,2,f +12886,3713,4,2,f +12886,3743,0,1,f +12886,3747a,0,2,f +12886,3749,19,2,f +12886,3794b,0,2,f +12886,3795,4,1,f +12886,3795,72,12,f +12886,3832,0,5,f +12886,3839b,72,1,f +12886,3894,0,5,f +12886,3941,41,2,f +12886,3958,0,1,f +12886,3960,41,1,f +12886,4032a,15,2,f +12886,40490,71,2,f +12886,40490,4,1,f +12886,4070,0,2,f +12886,41678,0,1,f +12886,41769,4,1,f +12886,41769,0,2,f +12886,41770,4,1,f +12886,41770,0,2,f +12886,4185,72,4,f +12886,4274,71,7,f +12886,4282,4,1,f +12886,43093,1,4,f +12886,43121,0,2,f +12886,43710,0,1,f +12886,43711,0,1,f +12886,44294,71,2,f +12886,44300,72,1,f +12886,44567a,72,4,f +12886,44570,71,2,f +12886,44728,72,2,f +12886,4519,71,2,f +12886,45301,0,1,f +12886,4588,72,2,f +12886,4697b,71,2,f +12886,47397,0,1,f +12886,47398,0,1,f +12886,4742,0,2,f +12886,48336,0,10,f +12886,4865b,0,2,f +12886,51739,0,2,f +12886,54200,0,4,f +12886,55013,72,2,f +12886,57899,0,1,f +12886,58247,0,1,f +12886,59426,72,2,f +12886,59443,0,4,f +12886,59900,4,10,f +12886,60208,71,2,f +12886,60470a,0,1,f +12886,60471,71,1,f +12886,60474,4,2,f +12886,60481,4,2,f +12886,60481,0,6,f +12886,60483,71,4,f +12886,60484,72,2,f +12886,61184,71,2,f +12886,61409,72,2,f +12886,6141,0,4,f +12886,6141,41,8,f +12886,6141,4,1,f +12886,6180,0,2,f +12886,6233,71,2,f +12886,62462,4,8,f +12886,63864,0,2,f +12886,63869,0,4,f +12886,64567,15,1,f +12886,6536,71,1,f +12886,6558,1,15,f +12886,6587,28,2,f +12886,85984,0,9,f +12886,87079,71,2,f +12886,87079,0,2,f +12886,87544,71,4,f +12886,87580,71,1,f +12886,87610pr0004,15,1,f +12886,87617,0,4,f +12886,87618,71,4,f +12886,92081,0,1,f +12886,92593,71,4,f +12886,92946,0,2,f +12886,92946,72,2,f +12886,93274,72,2,f +12886,970c00pr0534,308,1,f +12886,970c00pr0535,15,1,f +12886,970c00pr0555,1,1,f +12886,973pr2423c01,15,1,f +12886,973pr2448c01,1,1,f +12886,973pr2449c01,326,1,f +12886,98100,71,2,f +12886,98100pr0004,71,1,f +12886,98285,0,4,f +12886,98286,71,4,f +12886,98585,41,2,f +12886,99207,4,2,f +12886,99780,72,2,f +12886,99781,0,6,f +12887,11618,31,1,f +12887,11618,26,1,t +12887,11618,26,1,f +12887,11618,31,1,t +12887,11816pr0006,78,1,f +12887,12622,322,1,f +12887,15254,19,2,f +12887,15395,322,1,f +12887,15573,14,1,f +12887,15624,27,1,f +12887,15696pr0002,15,1,f +12887,16925pr0003c01,73,1,f +12887,18646,27,1,f +12887,18855,323,1,f +12887,2431pr0076,15,1,f +12887,26603,15,1,f +12887,2877,14,4,f +12887,3001,19,1,f +12887,3003,19,2,f +12887,3004,26,1,f +12887,3004,15,5,f +12887,3010,19,2,f +12887,3010,15,1,f +12887,30145,15,2,f +12887,30150,84,1,f +12887,3020,2,1,f +12887,3020,30,1,f +12887,30237b,15,4,f +12887,3031,27,1,f +12887,3032,27,1,f +12887,3037,26,2,f +12887,30432,70,1,f +12887,3062b,41,1,f +12887,3068b,14,1,f +12887,3068bpr0328,84,1,f +12887,3068bpr0329,84,1,f +12887,3245b,19,2,f +12887,3298,26,2,f +12887,33051,10,1,f +12887,33172,25,1,f +12887,33183,10,1,f +12887,33183,10,1,t +12887,33291,30,1,t +12887,33291,4,1,t +12887,33291,4,1,f +12887,33291,2,1,f +12887,33291,30,1,f +12887,33291,2,1,t +12887,3464,15,1,f +12887,3633,31,2,f +12887,3710,30,3,f +12887,3710,2,1,f +12887,3795,15,1,f +12887,3823,47,1,f +12887,3829c01,15,1,f +12887,3837,72,1,f +12887,3852b,322,1,f +12887,4523,5,1,f +12887,4599b,71,1,f +12887,4599b,71,1,t +12887,47457,71,2,f +12887,59895,0,1,f +12887,6014b,71,4,f +12887,60478,15,2,f +12887,6182,19,2,f +12887,759528c01,4,1,f +12887,759532,4,3,f +12887,759533,4,2,f +12887,87079,30,1,f +12887,87697,0,4,f +12887,88930,31,1,f +12887,92257,320,1,f +12887,92456pr0213c01,78,1,f +12887,92593,26,2,f +12887,93273,322,1,f +12887,93273,71,1,f +12887,95345,70,1,f +12887,98288,4,1,f +12889,10888,71,2,f +12889,11198,27,1,f +12889,13525,29,1,f +12889,13538,15,1,f +12889,13799,484,1,f +12889,13801,15,1,f +12889,14222pr0002,297,1,f +12889,14294,14,1,f +12889,20678,41,2,f +12889,2300,14,1,f +12889,3011,10,1,f +12889,31059,10,1,f +12889,3437,2,1,f +12889,3437,72,1,f +12889,3437,71,1,f +12889,3437,27,1,f +12889,4066,484,2,f +12889,4066,41,2,f +12889,40666,10,2,f +12889,40666,27,2,f +12889,40666,73,1,f +12889,44524,10,1,f +12889,51708,70,1,f +12889,6510,5,1,f +12889,6510,4,1,f +12889,98215,4,1,f +12889,98218,322,1,f +12889,98223,27,1,f +12889,98225,484,3,f +12890,12886pr0001,179,1,f +12890,3626bpb0925,14,1,f +12890,50231,320,1,f +12890,88646,0,1,f +12890,95673,179,1,f +12890,970c00pr0487,14,1,f +12890,973pb1409c01,148,1,f +12890,98366,179,1,f +12891,2357,1,2,f +12891,2358p04,2,2,f +12891,2360p02,2,1,f +12891,2361p03,2,1,f +12891,2362a,4,2,f +12891,2377,15,2,f +12891,2412a,0,10,f +12891,2420,0,2,f +12891,2420,7,2,f +12891,2420,4,2,f +12891,2421,0,1,f +12891,2431,4,1,f +12891,2432,0,1,f +12891,2436,7,2,f +12891,2436,4,1,f +12891,2437,41,1,f +12891,2446,1,1,f +12891,2447,41,1,t +12891,2447,41,1,f +12891,2452,0,2,f +12891,2453a,15,1,f +12891,2454a,15,4,f +12891,2460,0,1,f +12891,2466,41,6,f +12891,2468,41,2,f +12891,2479,7,1,f +12891,2483,41,1,f +12891,2518,2,4,f +12891,2536,6,7,f +12891,2563,6,1,f +12891,2566,6,1,f +12891,2571,15,4,f +12891,2572,41,2,f +12891,2583,14,2,f +12891,298c02,14,2,f +12891,298c02,14,1,t +12891,3001,7,1,f +12891,3001,14,1,f +12891,3002,15,1,f +12891,3003,15,1,f +12891,3003,7,1,f +12891,3004,0,1,f +12891,3004,4,4,f +12891,3004,15,12,f +12891,3005,7,4,f +12891,3005,14,2,f +12891,3008,7,1,f +12891,3008,15,8,f +12891,3009,15,2,f +12891,3010,7,13,f +12891,3020,7,1,f +12891,3020,4,3,f +12891,3020,14,1,f +12891,3021,0,1,f +12891,3021,7,2,f +12891,3022,2,8,f +12891,3022,7,4,f +12891,3022,15,1,f +12891,3022,0,1,f +12891,3022,4,1,f +12891,3023,1,1,f +12891,3023,4,1,f +12891,3023,0,3,f +12891,3023,7,1,f +12891,3023,15,2,f +12891,3024,4,2,f +12891,3024,1,5,f +12891,3024,46,2,f +12891,3024,14,4,f +12891,3024,15,2,f +12891,3024,36,2,f +12891,3027,7,1,f +12891,3031,4,1,f +12891,3031,7,3,f +12891,3032,7,2,f +12891,3034,7,1,f +12891,3039,4,2,f +12891,3039pc4,0,1,f +12891,3040b,15,2,f +12891,3040p33,0,1,f +12891,3062b,46,1,f +12891,3069b,1,1,f +12891,3069b,0,1,f +12891,3069b,14,2,f +12891,3069bp08,15,1,f +12891,3069bp25,15,1,f +12891,3070b,14,2,f +12891,3070b,14,1,t +12891,3070b,4,2,f +12891,3070b,4,1,t +12891,3070bp01,14,1,t +12891,3070bp01,14,1,f +12891,3070bp02,14,1,f +12891,3070bp02,14,1,t +12891,3139,0,6,f +12891,3184,4,1,f +12891,3298,7,2,f +12891,3460,7,1,f +12891,3474,15,1,f +12891,3581,15,2,f +12891,3582,4,2,f +12891,3585,15,1,f +12891,3586,15,1,f +12891,3596,15,2,f +12891,3622,15,8,f +12891,3623,14,2,f +12891,3623,1,1,f +12891,3623,15,4,f +12891,3624,0,2,f +12891,3626apr0001,14,8,f +12891,3641,0,6,f +12891,3660,7,3,f +12891,3665,7,2,f +12891,3666,0,2,f +12891,3666,1,3,f +12891,3666,7,1,f +12891,3676,7,2,f +12891,3679,7,3,f +12891,3680,7,1,f +12891,3680,4,2,f +12891,3700,7,1,f +12891,3710,4,4,f +12891,3710,14,1,f +12891,3710,15,2,f +12891,3710,7,2,f +12891,3730,0,1,f +12891,3741,2,2,f +12891,3742,4,6,f +12891,3742,4,2,t +12891,3747a,15,3,f +12891,3755,15,1,f +12891,3788,4,2,f +12891,3794a,15,2,f +12891,3795,7,1,f +12891,3795,0,1,f +12891,3829c01,4,1,f +12891,3832,2,4,f +12891,3832,7,1,f +12891,3857,2,1,f +12891,3900,15,3,f +12891,3901,0,2,f +12891,3937,7,2,f +12891,3938,0,2,f +12891,3942b,15,1,f +12891,3942bpr01,15,1,f +12891,3957a,0,1,f +12891,3962b,0,1,f +12891,4032a,2,1,f +12891,4070,15,4,f +12891,4070,0,2,f +12891,4079,4,3,f +12891,4079,14,4,f +12891,4081b,14,2,f +12891,4081b,7,2,f +12891,4083,0,1,f +12891,4162,14,2,f +12891,4162,1,1,f +12891,4215a,4,1,f +12891,4217,15,1,f +12891,4276b,0,2,f +12891,4282,2,1,f +12891,4286,4,2,f +12891,4286,14,2,f +12891,4315,14,1,f +12891,4345a,14,2,f +12891,4346,0,2,f +12891,4449,15,1,f +12891,4449,0,2,f +12891,4449,6,1,f +12891,4477,1,1,f +12891,4477,7,1,f +12891,4477,15,2,f +12891,4477,4,1,f +12891,4485,1,2,f +12891,4488,14,1,f +12891,4504,0,2,f +12891,4530,6,1,f +12891,4589,4,1,f +12891,4589,7,1,f +12891,4600,0,3,f +12891,4624,15,6,f +12891,4624,7,6,f +12891,4625,4,4,f +12891,4854,4,3,f +12891,4855,4,2,f +12891,4856a,15,2,f +12891,4857,15,4,f +12891,4858,15,1,f +12891,4859,4,1,f +12891,4859,15,2,f +12891,4859,1,2,f +12891,4861,15,1,f +12891,4862,41,12,f +12891,4863,15,5,f +12891,4865a,15,2,f +12891,4865a,14,6,f +12891,4865a,4,11,f +12891,4867pb03,15,1,f +12891,4868a,15,2,f +12891,4869,7,2,f +12891,4870,7,3,f +12891,4873,0,2,f +12891,6141,34,4,f +12891,6141,33,8,f +12891,6141,46,6,f +12891,6141,36,1,t +12891,6141,36,15,f +12891,6141,47,14,f +12891,6141,15,30,f +12891,6396stk01,9999,1,t +12891,6396stk02,9999,1,t +12891,970c00,1,5,f +12891,970c00,7,1,f +12891,970c00,0,2,f +12891,973p0ac01,1,1,f +12891,973p16c01,15,3,f +12891,973p18c01,1,1,f +12891,973p71c01,15,1,f +12891,973pb0091c01,0,1,f +12891,973px189c01,0,1,f +12893,10201,71,2,f +12893,10247,71,4,f +12893,10247,72,1,f +12893,11153,0,2,f +12893,11211,19,2,f +12893,11212,72,2,f +12893,11213,71,2,f +12893,11215,71,4,f +12893,11477,72,4,f +12893,13547,0,2,f +12893,14181,71,1,f +12893,14769,72,1,f +12893,15068,72,2,f +12893,15303,36,3,f +12893,15400,72,2,f +12893,15462,28,2,f +12893,15535,72,1,f +12893,15573,71,2,f +12893,18677,71,2,f +12893,19114pr0001,0,1,f +12893,2357,72,2,f +12893,2412b,72,9,f +12893,2419,71,2,f +12893,2420,72,4,f +12893,2420,71,4,f +12893,2431,72,3,f +12893,2432,15,2,f +12893,2436,14,1,f +12893,2654,0,4,f +12893,2780,0,22,f +12893,2780,0,3,t +12893,2877,72,2,f +12893,3020,14,2,f +12893,3020,72,2,f +12893,3021,71,4,f +12893,3021,72,6,f +12893,3022,72,6,f +12893,3022,71,4,f +12893,3023,15,1,f +12893,3023,4,5,f +12893,3023,36,3,f +12893,3031,0,2,f +12893,3032,71,1,f +12893,3032,72,2,f +12893,3035,72,3,f +12893,30363,71,4,f +12893,3037,71,1,f +12893,3039,71,2,f +12893,30408pr0008,15,1,f +12893,3040b,72,8,f +12893,3040b,71,2,f +12893,30414,71,2,f +12893,30503,71,2,f +12893,3069b,36,2,f +12893,3069b,40,1,f +12893,3069b,15,2,f +12893,32000,71,4,f +12893,32001,0,2,f +12893,32013,71,6,f +12893,32015,71,2,f +12893,32018,72,2,f +12893,32028,72,4,f +12893,32054,71,7,f +12893,32062,4,5,f +12893,32073,71,1,f +12893,32123b,14,1,f +12893,32123b,14,1,t +12893,32123b,71,1,t +12893,32123b,71,1,f +12893,32271,71,2,f +12893,32523,72,4,f +12893,32523,71,2,f +12893,32524,72,1,f +12893,3460,71,2,f +12893,3626cpr1149,78,1,f +12893,3626cpr1593,78,1,f +12893,3626cpr1594,15,2,f +12893,3665,72,2,f +12893,3666,72,4,f +12893,3700,72,1,f +12893,3701,72,6,f +12893,3701,71,2,f +12893,3705,0,2,f +12893,3709,72,2,f +12893,3709,71,5,f +12893,3709,0,1,f +12893,3710,72,2,f +12893,3710,71,13,f +12893,3738,71,4,f +12893,3747a,72,1,f +12893,3795,72,1,f +12893,3937,15,2,f +12893,3938,0,2,f +12893,3957b,15,1,t +12893,3957b,15,2,f +12893,3960,71,2,f +12893,4032a,1,3,f +12893,4032a,72,4,f +12893,4032a,4,6,f +12893,4162,72,2,f +12893,41677,71,2,f +12893,41769,71,5,f +12893,41770,71,5,f +12893,42610,71,1,f +12893,4274,1,14,f +12893,4274,1,1,t +12893,43093,1,10,f +12893,43898,72,4,f +12893,44224,72,4,f +12893,44225,71,4,f +12893,44358,71,1,f +12893,44359,72,2,f +12893,44375a,71,2,f +12893,44567a,72,2,f +12893,44728,72,3,f +12893,44728,0,1,f +12893,4477,71,2,f +12893,4519,71,1,f +12893,45590,0,2,f +12893,4740,14,2,f +12893,4740,71,6,f +12893,48336,0,1,f +12893,4865a,72,1,f +12893,50950,0,2,f +12893,54200,72,8,f +12893,54200,72,1,t +12893,54200,71,1,t +12893,54200,71,2,f +12893,54383,71,2,f +12893,54383,72,1,f +12893,54384,72,1,f +12893,54384,71,2,f +12893,57900pr0001,15,2,f +12893,58247,0,3,f +12893,59443,72,1,f +12893,60471,0,2,f +12893,60474,72,2,f +12893,60474,71,1,f +12893,60478,14,2,f +12893,60479,71,2,f +12893,60897,15,2,f +12893,61184,71,6,f +12893,61409,72,6,f +12893,6141,0,1,t +12893,6141,14,1,f +12893,6141,15,1,t +12893,6141,14,1,t +12893,6141,15,4,f +12893,6141,0,4,f +12893,61485,0,1,f +12893,6179,71,2,f +12893,6232,71,1,f +12893,63864,72,2,f +12893,63864,71,4,f +12893,64567,0,1,f +12893,64567,0,1,t +12893,6558,1,8,f +12893,6629,72,2,f +12893,6636,71,4,f +12893,85984,71,5,f +12893,86500pr0001b,71,2,f +12893,87079,72,3,f +12893,87081,72,1,f +12893,87087,0,8,f +12893,92280,71,2,f +12893,92593,71,8,f +12893,92738,0,2,f +12893,93095,15,2,f +12893,96874,25,1,t +12893,970c00,0,1,f +12893,970c00pr0735,15,1,f +12893,970c00pr0794,15,2,f +12893,973pr2795c01,15,1,f +12893,973pr2891c01,0,1,f +12893,973pr2892c01,15,2,f +12893,98138,36,2,f +12893,98138,36,1,t +12893,98585,71,2,f +12893,99206,71,8,f +12893,99781,71,5,f +12895,10201,15,1,f +12895,11816pr0001,84,1,f +12895,3001,30,2,f +12895,3001,15,2,f +12895,3004,15,5,f +12895,30153,45,1,f +12895,30153,47,1,f +12895,30153,41,1,f +12895,3020,30,2,f +12895,3023,30,4,f +12895,3035,19,2,f +12895,3062b,41,1,f +12895,3069b,26,2,f +12895,33291,191,1,f +12895,33291,191,1,t +12895,3460,15,1,f +12895,3626c,47,1,f +12895,3666,26,2,f +12895,3710,30,2,f +12895,3710,191,2,f +12895,3741,2,1,t +12895,3741,2,1,f +12895,3742,4,1,t +12895,3742,4,3,f +12895,3794b,15,5,f +12895,3795,15,2,f +12895,3941,85,1,f +12895,4150,15,1,f +12895,44568,71,1,f +12895,4533,15,2,f +12895,4589,33,1,f +12895,60471,15,2,f +12895,60581,15,1,f +12895,6141,41,4,f +12895,6141,45,1,t +12895,6141,47,1,t +12895,6141,45,2,f +12895,6141,47,1,f +12895,6141,41,1,t +12895,6141,71,2,f +12895,6141,71,1,t +12895,62698,0,1,f +12895,85975,297,1,f +12895,85984,191,2,f +12895,87079,26,2,f +12895,92410,30,2,f +12895,92456pr0035c01,84,1,f +12895,92818pr0005c01,191,1,f +12895,93094,5,1,t +12895,93094,5,1,f +12895,93352,308,1,f +12895,96479,322,2,f +12895,96480,322,1,f +12895,96481,322,2,f +12895,96482,322,1,f +12895,96483,322,3,f +12895,96484,322,1,f +12895,96485,322,2,f +12895,96486,322,1,f +12895,96487,322,1,f +12895,96488,322,1,f +12895,96489,322,2,f +12895,96490,322,1,f +12895,96491,322,1,f +12896,64783,72,2,f +12896,64784pat01,42,1,f +12896,64785,72,1,f +12897,3069bpr0003,378,1,f +12897,3626bpr0878,378,1,f +12897,3678bpr0010a,378,1,f +12897,64644,378,1,f +12897,64647,182,1,f +12897,88646,0,1,f +12897,973pr1949ac01,378,1,f +12897,98377,378,1,f +12899,2412b,4,1,f +12899,2432,8,1,f +12899,2446px5,2,1,f +12899,2447,40,1,f +12899,2447,40,1,t +12899,30027b,2,2,t +12899,30028,0,2,t +12899,3020,8,2,t +12899,3022,8,1,f +12899,3023,8,1,f +12899,3626bpx137,15,1,f +12899,3839b,0,1,t +12899,4081b,2,2,f +12899,41854pb07,27,2,f +12899,41855pb01,2,1,f +12899,42289,8,1,f +12899,4600,0,1,f +12899,6014b,2,4,f +12899,6015,0,4,f +12899,6141,4,4,f +12899,6141,0,4,f +12899,6141,4,1,t +12899,6141,0,1,t +12899,x351,4,1,f +12900,2460,0,1,f +12900,2780,0,19,f +12900,2877,71,2,f +12900,2905,0,2,f +12900,3001,14,2,f +12900,3010,14,3,f +12900,32015,0,1,f +12900,32017,14,6,f +12900,32028,0,2,f +12900,32039,4,5,f +12900,32062,4,1,f +12900,32123b,71,10,f +12900,32138,0,1,f +12900,32271,0,2,f +12900,32278,0,4,f +12900,32316,71,7,f +12900,32523,71,2,f +12900,32524,0,3,f +12900,32526,14,1,f +12900,32556,19,10,f +12900,3460,0,4,f +12900,3623,14,8,f +12900,3666,72,1,f +12900,3700,14,2,f +12900,3701,0,4,f +12900,3703,72,2,f +12900,3705,0,4,f +12900,3706,0,6,f +12900,3708,0,4,f +12900,3709,0,2,f +12900,3710,72,3,f +12900,3713,4,12,f +12900,3737,0,2,f +12900,3795,0,1,f +12900,40490,14,1,f +12900,41239,71,2,f +12900,41677,0,4,f +12900,41747,14,1,f +12900,41748,14,1,f +12900,41749,0,1,f +12900,41750,0,1,f +12900,41769,72,1,f +12900,41770,72,1,f +12900,43093,1,4,f +12900,44309,0,2,f +12900,44352,14,1,f +12900,44353,14,1,f +12900,44728,15,2,f +12900,44809,71,2,f +12900,4519,71,1,f +12900,48336,14,2,f +12900,55978,0,2,f +12900,56145,71,4,f +12900,59443,4,1,f +12900,60483,0,2,f +12900,61073,0,2,f +12900,61678,14,2,f +12900,62462,71,4,f +12900,63965,0,1,f +12900,6536,4,1,f +12900,6558,1,3,f +12900,6628,0,6,f +12900,6632,0,2,f +12900,8166cdb01,9999,1,f +12900,85543,15,1,f +12900,85546,14,3,f +12901,737ac01,4,2,f +12901,737ac02,4,2,f +12902,2412b,72,2,f +12902,2540,0,2,f +12902,2817,0,2,f +12902,2877,0,4,f +12902,2921,71,4,f +12902,3005,70,4,f +12902,3020,0,1,f +12902,3020,71,1,f +12902,3020,72,1,f +12902,3021,0,1,f +12902,3022,0,3,f +12902,3022,72,1,f +12902,3023,0,3,f +12902,3023,71,1,f +12902,3023,70,1,f +12902,3024,46,1,f +12902,3031,0,1,f +12902,3032,71,1,f +12902,30367b,0,1,f +12902,3065,47,1,f +12902,3070b,0,1,f +12902,3299,0,1,f +12902,3673,71,4,f +12902,3710,0,1,f +12902,3832,0,1,f +12902,3941,0,2,f +12902,3942c,0,1,f +12902,3957a,0,2,f +12902,4032b,0,1,f +12902,4070,0,1,f +12902,4081b,72,2,f +12902,44728,72,1,f +12902,4600,71,2,f +12902,4624,71,4,f +12902,47759,0,1,f +12902,56902,71,4,f +12902,6019,0,4,f +12902,6091,0,4,f +12902,6141,297,1,f +12902,6141,72,4,f +12902,63082,0,1,f +12904,11476,71,1,f +12904,11816pr0013,78,1,f +12904,15279,10,2,f +12904,15677,4,1,f +12904,15679pr0001,14,1,f +12904,16530pr01,2,1,f +12904,2419,28,2,f +12904,2420,30,2,f +12904,2450,28,1,f +12904,3004,19,5,f +12904,30093,10,1,f +12904,30153,41,1,f +12904,30162,297,1,f +12904,30162,297,1,t +12904,30218,15,1,f +12904,3023,15,2,f +12904,3033,19,1,f +12904,3040b,29,4,f +12904,3040b,27,8,f +12904,3048c,297,1,f +12904,3068b,29,2,f +12904,3068bpr0138,15,1,f +12904,3308,30,1,f +12904,33122,52,1,f +12904,33291,191,3,f +12904,33291,5,3,f +12904,33291,191,1,t +12904,33291,5,1,t +12904,3710,19,1,f +12904,42448,297,2,f +12904,4460b,19,2,f +12904,4460b,30,2,f +12904,4738a,70,1,f +12904,4739a,70,1,f +12904,54200,297,4,f +12904,54200,297,1,t +12904,60583a,15,2,f +12904,6141,179,1,f +12904,6141,179,1,t +12904,6141,29,2,f +12904,6141,29,1,t +12904,6636,28,1,f +12904,87087,15,2,f +12904,87580,28,3,f +12904,92290,297,1,f +12904,92456pr0052c01a,78,1,f +12904,98138,41,3,f +12904,98138,41,1,t +12905,2335,4,1,f +12905,2412b,4,1,f +12905,2432,7,1,f +12905,2446,0,1,f +12905,2540,0,1,f +12905,2547,8,1,f +12905,2547,7,1,f +12905,2547,15,1,f +12905,2548,15,1,f +12905,2548,8,1,f +12905,2921,0,1,f +12905,298c02,15,1,f +12905,30079,14,2,f +12905,30083,41,1,f +12905,30085,7,1,f +12905,30088,14,1,f +12905,3009,0,1,f +12905,30090,47,1,f +12905,30091,7,1,f +12905,30094,7,1,f +12905,3020,0,1,f +12905,3023,4,1,f +12905,3023,0,1,f +12905,3024,36,1,f +12905,3024,34,1,f +12905,3626bpx24,14,1,f +12905,3626bpx26,14,1,f +12905,3660,14,2,f +12905,3700,14,2,f +12905,3747a,14,1,f +12905,3749,7,3,f +12905,3941,14,2,f +12905,4070,0,1,f +12905,4150,14,2,f +12905,4315,14,1,f +12905,4360,15,1,f +12905,4485,0,1,f +12905,4740,15,1,f +12905,4871,7,1,f +12905,59275,0,2,f +12905,6019,7,1,f +12905,6040,0,1,f +12905,6041,4,1,f +12905,6141,36,1,f +12905,6141,47,1,f +12905,6141,42,1,f +12905,6141,36,1,t +12905,6141,47,1,t +12905,6141,42,1,t +12905,6599stk01,9999,1,t +12905,970c00,4,1,f +12905,970x026,4,1,f +12905,973px51c01,4,1,f +12905,973px52c02,4,1,f +12906,14719,71,1,f +12906,15573,15,1,f +12906,3003,26,1,f +12906,3004,321,4,f +12906,3021,15,1,f +12906,3069b,85,5,f +12906,3795,30,1,f +12906,4274,71,1,f +12906,4449,71,1,f +12906,4490,15,1,f +12906,59900,15,1,f +12906,59900,25,1,f +12906,59900,26,1,f +12906,6141,29,1,f +12906,6141,14,1,f +12906,6541,15,1,f +12906,6636pr0011,15,1,f +12906,93092,191,1,f +12906,93555,179,1,f +12906,98138,15,1,f +12906,98138,29,1,f +12908,122c01,7,4,f +12908,14pb03,15,1,f +12908,14pb07,15,1,f +12908,3001a,14,1,f +12908,3001a,15,5,f +12908,3002a,0,1,f +12908,3002a,15,2,f +12908,3003,14,2,f +12908,3003,47,3,f +12908,3003,0,4,f +12908,3003,4,2,f +12908,3003,15,1,f +12908,3004,14,19,f +12908,3004,47,1,f +12908,3004,1,1,f +12908,3004,4,6,f +12908,3004,0,5,f +12908,3004,15,24,f +12908,3005,0,36,f +12908,3005,1,14,f +12908,3005,15,15,f +12908,3005,4,4,f +12908,3005,14,6,f +12908,3008,15,2,f +12908,3008,1,3,f +12908,3009,1,5,f +12908,3009,15,6,f +12908,3009,14,7,f +12908,3010,1,5,f +12908,3010,15,18,f +12908,3010,47,8,f +12908,3010,14,8,f +12908,3010pb035u,1,1,f +12908,3020,0,2,f +12908,3020,14,1,f +12908,3021,0,5,f +12908,3021,7,1,f +12908,3021,4,1,f +12908,3023,15,5,f +12908,3023,0,5,f +12908,3024,47,1,f +12908,3024,0,9,f +12908,3024,4,2,f +12908,3030,14,1,f +12908,3033,0,1,f +12908,3034,0,2,f +12908,3035,1,1,f +12908,3036,4,3,f +12908,3037,4,13,f +12908,3038,4,2,f +12908,3039,0,1,f +12908,3039,47,1,f +12908,3039,4,6,f +12908,3040b,0,1,f +12908,3041,4,1,f +12908,3043,4,2,f +12908,3045,4,1,f +12908,3048a,0,4,f +12908,3062a,7,3,f +12908,3062a,0,9,f +12908,3062a,15,2,f +12908,3069b,4,1,f +12908,3069b,15,2,f +12908,3087c,15,2,f +12908,3127,7,1,f +12908,3176,0,1,f +12908,3190,4,1,f +12908,3191,4,1,f +12908,3297,4,7,f +12908,3298,4,4,f +12908,3299,4,2,f +12908,3308,15,2,f +12908,3460,14,2,f +12908,3470,2,3,f +12908,3491,7,1,f +12908,3622,1,2,f +12908,3622,14,5,f +12908,3622,15,6,f +12908,3622,47,4,f +12908,3623,7,1,f +12908,3624,15,1,f +12908,3624,1,1,f +12908,3625,0,2,f +12908,3626apr0001,14,5,f +12908,3629,0,1,f +12908,3633,14,2,f +12908,3641,0,8,f +12908,3660,15,1,f +12908,3665,0,4,f +12908,3665,15,2,f +12908,3710,14,2,f +12908,3710,0,4,f +12908,3710,15,2,f +12908,3741,2,2,f +12908,3742,4,6,f +12908,3742,4,2,t +12908,3787,7,1,f +12908,3787,0,2,f +12908,3788,1,1,f +12908,3794a,14,4,f +12908,3795,7,2,f +12908,3823,47,1,f +12908,3832,0,3,f +12908,3836,6,1,f +12908,3853,0,2,f +12908,3853,15,1,f +12908,3854,15,4,f +12908,3856,2,4,f +12908,3861b,0,1,f +12908,3861b,15,1,f +12908,604c01,15,1,f +12908,608p01,7,2,f +12908,739p01,15,1,f +12908,970c00,0,3,f +12908,970c00,1,2,f +12908,973c02,4,2,f +12908,973c18,0,3,f +12908,rb00164,0,1,f +12909,3003,0,1,f +12909,3004,15,1,f +12909,3021,4,2,f +12909,3062b,34,2,f +12909,3062b,34,1,t +12909,3660,0,2,f +12909,4070,15,2,f +12909,4070,15,1,t +12910,30135,6,1,f +12910,3022,1,3,f +12910,30228,8,1,f +12910,30567,1,3,f +12910,3626bpb0103,14,1,f +12910,3626bpx121,14,1,f +12910,3626bpx43,14,1,f +12910,3833,0,1,f +12910,3833,15,1,f +12910,3837,8,1,f +12910,3962b,8,1,f +12910,4142697pb1,9999,1,f +12910,4142697pb2,9999,1,f +12910,4142697pb3,9999,1,f +12910,970c00,0,1,f +12910,970c00,1,1,f +12910,970c00,25,1,f +12910,973pb0010c01,25,1,f +12910,973pb0014c01,25,1,f +12910,973px177c01,25,1,f +12911,2412b,42,2,f +12911,2419,0,1,f +12911,2445,8,2,f +12911,2446,47,1,f +12911,2569,42,2,f +12911,2965stk01,9999,1,t +12911,30014,8,3,f +12911,3003,0,1,f +12911,30035,0,1,f +12911,3004,0,3,f +12911,30121,8,1,f +12911,3020,1,2,f +12911,3021,8,1,f +12911,30211,8,4,f +12911,30213,42,1,f +12911,30214,42,1,f +12911,3022,1,2,f +12911,3023,1,1,f +12911,30231pb01,33,1,f +12911,30231pb02,33,1,f +12911,3039,8,3,f +12911,3040b,1,2,f +12911,3068bpx7,0,1,f +12911,3069bp53,0,1,f +12911,3298pb005,8,1,f +12911,3475b,0,2,f +12911,3623,0,2,f +12911,3626bpb0034,0,1,f +12911,3626bpb0081,1,1,f +12911,3666,1,1,f +12911,3700,8,1,f +12911,3747a,0,1,f +12911,3794a,0,1,f +12911,4081b,1,2,f +12911,412,8,2,f +12911,4220,1,1,f +12911,4221,0,2,f +12911,4589,42,3,f +12911,4590,0,2,f +12911,4865a,42,1,f +12911,6019,1,2,f +12911,6104,0,1,f +12911,6141,42,2,f +12911,6141,42,1,t +12911,6232,1,1,f +12911,970c11pb04,0,1,f +12911,970x023,8,1,f +12911,973pb0080c01,0,1,f +12911,973pb0198c01,0,1,f +12913,32203,4,4,f +12913,32203,0,4,f +12913,32204,0,1,f +12913,32204,4,2,f +12913,32206,4,6,f +12913,32206,0,2,f +12913,32207,8,1,f +12913,32208,4,2,f +12913,32208,0,1,f +12913,32209,15,2,f +12913,32213,0,1,f +12913,32214,0,5,f +12913,32214,4,2,f +12913,32216,0,2,f +12913,32219,4,2,f +12913,32219,0,4,f +12913,32221,8,1,f +12913,3749,7,4,f +12913,zbb013,22,18,f +12913,zbb014,7,10,f +12913,zbb015,0,4,f +12913,zbb018,14,2,f +12914,6007,8,1,f +12915,2352,14,1,f +12915,2456,15,2,f +12915,2456,1,2,f +12915,2577,4,4,f +12915,3001,15,6,f +12915,3001,14,8,f +12915,3001,0,4,f +12915,3001,4,8,f +12915,3001,1,8,f +12915,3001pr1,14,1,f +12915,3002,15,2,f +12915,3002,0,2,f +12915,3002,4,4,f +12915,3002,1,4,f +12915,3002,14,4,f +12915,3003,0,8,f +12915,3003,15,10,f +12915,3003,14,16,f +12915,3003,1,14,f +12915,3003,4,16,f +12915,3003pe2,14,2,f +12915,3007,4,2,f +12915,3185,15,4,f +12915,3483,0,4,f +12915,3857,2,1,f +12915,4727,2,4,f +12915,4728,15,1,f +12915,4728,1,1,f +12915,4728,14,1,f +12915,4728,4,1,f +12915,4743,1,1,f +12915,4744,1,1,f +12915,4744pr0001,0,1,f +12915,4744pr0002,4,1,f +12915,4744px5,4,1,f +12915,4745,14,1,f +12915,600,14,1,f +12915,601,14,4,f +12915,6212,14,1,f +12915,6213px3,14,1,f +12915,6214px2,2,1,f +12915,6215,1,8,f +12915,6215,4,4,f +12915,6215,15,4,f +12915,6215,14,4,f +12915,6216,2,1,f +12915,6216,4,1,f +12915,6216,15,1,f +12915,6216,1,1,f +12915,6216,14,1,f +12915,6232,4,1,f +12915,6235,4,1,f +12915,6236,4,2,f +12915,6248,4,4,f +12915,6249,4,2,f +12915,82248,1,1,f +12915,82249,15,1,f +12916,3062b,2,3,f +12916,41748,15,4,f +12916,4727,10,1,f +12916,4733,0,2,f +12916,4740,0,1,f +12916,6141,46,4,f +12916,63965,0,1,f +12917,10201,15,2,f +12917,11203,15,1,f +12917,11267,323,1,f +12917,11476,15,4,f +12917,11477,26,2,f +12917,11601,41,4,f +12917,11610,5,2,f +12917,11618,191,1,t +12917,11618,191,1,f +12917,11816pr0002,78,1,f +12917,11816pr0017,78,1,f +12917,11833,191,1,f +12917,12939,15,2,f +12917,12939,19,1,f +12917,14769,70,2,f +12917,14769,15,1,f +12917,15470,297,1,f +12917,15470,29,1,t +12917,15470,297,1,t +12917,15470,29,4,f +12917,15571,323,4,f +12917,15571,15,2,f +12917,15573,297,2,f +12917,15573,70,1,f +12917,15875pr0009,322,1,f +12917,15875pr0010,27,1,f +12917,18394pat0002,1003,2,f +12917,18674,15,3,f +12917,18674,322,3,f +12917,18844,226,1,f +12917,18853,191,1,t +12917,18853,191,1,f +12917,19641,15,1,f +12917,2343,47,2,f +12917,2357,19,10,f +12917,2357,70,2,f +12917,23969,85,1,f +12917,23969,26,2,f +12917,23988,297,1,f +12917,23988,297,1,t +12917,24080,484,1,f +12917,2420,15,2,f +12917,2423,15,4,f +12917,2431,15,3,f +12917,2431,26,5,f +12917,2431,41,7,f +12917,2449,70,8,f +12917,2449,19,4,f +12917,2453b,19,2,f +12917,2453b,72,4,f +12917,2465,19,1,f +12917,24715pr0001,158,1,f +12917,25168,9999,1,t +12917,3002,19,2,f +12917,3004,19,21,f +12917,3004,70,2,f +12917,3004,71,4,f +12917,3005,19,2,f +12917,3005,41,4,f +12917,3009,19,8,f +12917,3009,70,2,f +12917,3009,15,1,f +12917,3010,19,2,f +12917,30153,41,2,f +12917,3020,5,2,f +12917,3020,15,4,f +12917,3020,70,1,f +12917,3021,15,4,f +12917,3022,29,1,f +12917,3022,70,1,f +12917,3023,0,2,f +12917,3023,41,3,f +12917,3023,15,3,f +12917,3023,85,1,f +12917,3031,15,1,f +12917,3032,70,1,f +12917,3036,19,1,f +12917,30367c,15,1,f +12917,3037,15,2,f +12917,3039,323,7,f +12917,3039,19,1,f +12917,30414,19,2,f +12917,3045,323,6,f +12917,3062b,297,2,f +12917,3062b,41,1,f +12917,3065,45,2,f +12917,3065,33,1,f +12917,3069b,41,6,f +12917,3069b,72,2,f +12917,3069b,15,3,f +12917,3069bpr0055,15,1,f +12917,3070b,15,2,f +12917,3070b,15,1,t +12917,3245b,15,1,f +12917,3245b,19,4,f +12917,32474pr1009,15,3,f +12917,3297,15,1,f +12917,33183,70,2,f +12917,33183,70,1,t +12917,33291,5,8,f +12917,33291,212,8,f +12917,33291,191,3,t +12917,33291,5,3,t +12917,33291,30,3,t +12917,33291,191,6,f +12917,33291,30,8,f +12917,33291,212,1,t +12917,3622,19,6,f +12917,3623,15,2,f +12917,3626b,15,3,f +12917,3626c,212,2,f +12917,3626c,30,2,f +12917,3626c,5,2,f +12917,3633,0,1,f +12917,3659,5,1,f +12917,3660,15,4,f +12917,3666,70,2,f +12917,3678b,15,1,f +12917,3710,15,1,f +12917,3710,27,6,f +12917,3710,19,1,f +12917,3741,2,2,f +12917,3741,31,2,f +12917,3741,2,2,t +12917,3741,31,1,t +12917,3795,72,1,f +12917,3795,15,2,f +12917,3899,15,1,f +12917,3958,19,2,f +12917,4032a,484,1,f +12917,4032a,322,2,f +12917,4032a,15,3,f +12917,42409,41,1,f +12917,4286,378,2,f +12917,4345b,15,1,f +12917,4346,71,1,f +12917,43898,41,2,f +12917,4460b,323,16,f +12917,44728,15,1,f +12917,4588,72,2,f +12917,46212,41,4,f +12917,4733,15,1,f +12917,54200,378,2,f +12917,54200,182,4,f +12917,54200,15,1,t +12917,54200,182,2,t +12917,54200,70,1,t +12917,54200,70,2,f +12917,54200,378,1,t +12917,54200,15,2,f +12917,58176,41,4,f +12917,59349,19,2,f +12917,59900,297,1,f +12917,60474,322,2,f +12917,60475b,19,2,f +12917,60481,26,2,f +12917,60593,70,1,f +12917,60594,15,2,f +12917,60596,19,1,f +12917,60607,297,4,f +12917,60616a,15,1,f +12917,6126b,1003,1,f +12917,6141,322,1,t +12917,6141,41,7,f +12917,6141,27,1,t +12917,6141,41,3,t +12917,6141,70,1,t +12917,6141,297,6,f +12917,6141,0,2,t +12917,6141,70,4,f +12917,6141,0,2,f +12917,6141,297,2,t +12917,6141,27,5,f +12917,6141,322,4,f +12917,63864,70,2,f +12917,64644,297,2,f +12917,6636pr0013,15,3,f +12917,6942,72,2,f +12917,85975,297,1,f +12917,85984,15,1,f +12917,87079,15,1,f +12917,87079,26,5,f +12917,87079,70,2,f +12917,87087,19,6,f +12917,87544,47,1,f +12917,87552,15,1,f +12917,87552,41,9,f +12917,87580,15,2,f +12917,87580,72,2,f +12917,87580,84,2,f +12917,87601,70,1,f +12917,88292,19,2,f +12917,89522,25,1,t +12917,89522,25,1,f +12917,91405,28,1,f +12917,92438,28,1,f +12917,92456pr0087,78,1,f +12917,92456pr0088,78,1,f +12917,92950,72,1,f +12917,92950,85,2,f +12917,93252,297,1,f +12917,93555,179,1,t +12917,93555,179,2,f +12917,96874,25,1,t +12917,98138pr0014,297,1,f +12917,98138pr0014,297,1,t +12917,98283,378,4,f +12917,98283,71,2,f +12917,98549,15,2,f +12918,2431,15,1,f +12918,2540,71,4,f +12918,298c02,15,1,t +12918,298c02,15,1,f +12918,3022,15,3,f +12918,3023,72,3,f +12918,3023,47,2,f +12918,30374,72,2,f +12918,3062b,320,2,f +12918,3665,15,3,f +12918,3666,320,1,f +12918,3710,15,1,f +12918,3794a,15,4,f +12918,3795,15,1,f +12918,4081b,71,4,f +12918,4081b,320,2,f +12918,41769,15,2,f +12918,41770,15,2,f +12918,44676,15,4,f +12919,51560,72,2,f +12920,12825,14,2,f +12920,2335,1,1,f +12920,2397,72,1,f +12920,2489,70,1,f +12920,2540,25,2,f +12920,2921,15,2,f +12920,3001,71,2,f +12920,3001,4,2,f +12920,3002,2,2,f +12920,3002,72,2,f +12920,3003,71,7,f +12920,3004,71,12,f +12920,3004,27,2,f +12920,3004,4,4,f +12920,30044,15,2,f +12920,30045,0,3,f +12920,3005,72,6,f +12920,3005,4,3,f +12920,3005,71,8,f +12920,3005pr0003,15,2,f +12920,3005pr0003,2,2,f +12920,3007,4,1,f +12920,3008,4,1,f +12920,3010,72,1,f +12920,30153,36,1,f +12920,3020,1,1,f +12920,3020,27,3,f +12920,3021,72,1,f +12920,3021,2,1,f +12920,3021,25,2,f +12920,3022,27,1,f +12920,3022,0,1,f +12920,3023,72,1,f +12920,3029,2,1,f +12920,3039,2,1,f +12920,3040b,4,2,f +12920,3062b,70,7,f +12920,3298,0,2,f +12920,3307,71,1,f +12920,3622,4,2,f +12920,3626bpr0643,14,1,f +12920,3659,71,2,f +12920,3660,4,2,f +12920,3660,72,2,f +12920,3665,72,2,f +12920,3666,72,1,f +12920,3676,72,2,f +12920,3794b,2,1,f +12920,3795,72,2,f +12920,3795,14,1,f +12920,3844,71,1,f +12920,3847,148,1,f +12920,3957a,15,1,f +12920,4070,2,3,f +12920,4489b,70,2,f +12920,4600,71,1,f +12920,4727,10,2,f +12920,54200,27,1,t +12920,54200,71,1,t +12920,54200,71,2,f +12920,54200,27,4,f +12920,59900,182,2,f +12920,60583a,4,1,f +12920,6126b,182,1,f +12920,6141,27,4,f +12920,6141,27,1,t +12920,62808,72,2,f +12920,64390,70,1,f +12920,970c00,0,1,f +12920,973pr1623c01,72,1,f +12921,2335p01,15,1,f +12921,2335p02,15,1,f +12921,2431p12,15,1,f +12921,2446,0,2,f +12921,3004pc0,15,1,f +12921,30088,4,1,f +12921,30088,14,1,f +12921,30089,14,2,f +12921,30090,33,1,f +12921,30090,47,1,f +12921,30091,7,1,f +12921,30091,15,1,f +12921,30092,14,2,f +12921,30093,2,2,f +12921,30104,0,1,f +12921,3039p58,15,1,f +12921,3039pc5,7,1,f +12921,3039pr0005,15,1,f +12921,3039px14,15,1,f +12921,3069bp52,15,1,f +12921,3069bp80,15,1,f +12921,3069bp81,14,1,f +12921,3069bpc2,14,1,f +12921,37,383,2,f +12921,3957a,15,2,f +12921,4032a,2,2,f +12921,59275,4,2,f +12921,59275,0,2,f +12922,2815,0,12,f +12922,3001,1,8,f +12922,3001,4,8,f +12922,3021,0,8,f +12922,3460,4,8,f +12922,3460,0,8,f +12922,3482,7,12,f +12922,3483,0,8,f +12922,3623,0,12,f +12922,3623,4,12,f +12922,3634,0,4,f +12922,3647,7,50,f +12922,3648a,7,14,f +12922,3649,7,8,f +12922,3650,7,8,f +12922,3651,7,50,f +12922,3652,7,4,f +12922,3666,4,8,f +12922,3666,0,8,f +12922,3673,7,150,f +12922,3679,7,20,f +12922,3680,1,20,f +12922,3700,1,24,f +12922,3700,4,24,f +12922,3701,4,16,f +12922,3701,1,24,f +12922,3702,4,6,f +12922,3702,1,4,f +12922,3703,4,4,f +12922,3703,1,8,f +12922,3705,0,30,f +12922,3706,0,24,f +12922,3707,0,14,f +12922,3708,0,14,f +12922,3709,4,8,f +12922,3709,0,12,f +12922,3710,0,12,f +12922,3710,4,12,f +12922,3711a,0,350,f +12922,3713,7,60,f +12922,3736,7,4,f +12922,3737,0,14,f +12922,3738,0,8,f +12922,3738,4,4,f +12922,3743,7,12,f +12922,3795,4,8,f +12922,3894,4,4,f +12922,3894,1,4,f +12922,3895,4,4,f +12922,3895,1,4,f +12922,3937,1,12,f +12922,3938,1,12,f +12922,3956,1,8,f +12922,4019,7,10,f +12922,4032a,4,8,f +12922,4143,7,30,f +12922,4185,7,16,f +12922,4204,2,3,f +12922,4265a,7,150,f +12922,4350c02,7,2,f +12922,4716,7,10,f +12922,56823,0,1,f +12922,6216b,7,2,f +12922,73071,7,2,f +12922,73090a,4,2,f +12922,766c96,7,6,f +12922,9244,7,8,f +12922,rb00167,0,30,f +12922,rb00169,0,40,f +12922,rb00170,0,30,f +12923,3068b,72,1,f +12923,33291,70,1,f +12923,33291,70,1,t +12923,3688,72,1,f +12923,64647,57,1,f +12923,64647,57,1,t +12924,2343,47,2,f +12924,2488,0,1,f +12924,2495,4,1,f +12924,2496,0,1,f +12924,2610,14,1,f +12924,3003,14,1,f +12924,3626bp03,14,1,f +12924,3626bp04,14,1,f +12924,3626bpr0001,14,4,f +12924,3833,4,1,f +12924,3901,0,2,f +12924,4032a,7,1,f +12924,4485,4,1,f +12924,4629c01,1,1,f +12924,4719,0,1,f +12924,6093,4,1,f +12924,6093,0,1,f +12924,92851,47,2,f +12924,970c00,0,1,f +12924,970c00,1,1,f +12924,970c00,4,1,f +12924,970c00,2,1,f +12924,970c00,7,1,f +12924,970x026,14,1,f +12924,973c11,0,1,f +12924,973p12c01,4,1,f +12924,973pb0201c01,15,1,f +12924,973pr1190c01,0,1,f +12924,973px130c01,15,1,f +12924,973px62c02,15,1,f +12926,16542,7,1,f +12926,2412b,4,2,f +12926,2420,4,4,f +12926,2432,7,1,f +12926,2436,15,1,f +12926,2445,0,1,f +12926,2447,41,1,f +12926,2584,4,1,f +12926,2585,0,1,f +12926,3002,7,1,f +12926,3003,7,1,f +12926,3004,7,1,f +12926,3020,15,3,f +12926,3022,15,1,f +12926,3023,4,4,f +12926,3024,7,2,f +12926,3024,36,4,f +12926,3024,15,4,f +12926,3031,4,1,f +12926,3031,1,1,f +12926,3062b,4,2,f +12926,3062b,14,2,f +12926,3069b,15,1,f +12926,3070b,33,4,f +12926,3070b,46,2,f +12926,3070b,36,4,f +12926,3622,7,2,f +12926,3623,15,2,f +12926,3626bp03,14,1,f +12926,3660,7,1,f +12926,3665,15,4,f +12926,3679,7,1,f +12926,3680,15,1,f +12926,3710,15,5,f +12926,3710,1,2,f +12926,3794a,7,2,f +12926,3795,4,1,f +12926,3795,15,2,f +12926,3823,41,1,f +12926,3829c01,4,1,f +12926,3834,0,1,f +12926,3835,0,1,f +12926,3838,14,1,f +12926,3937,7,1,f +12926,3938,7,1,f +12926,3956,4,1,f +12926,4070,15,4,f +12926,4085c,7,3,f +12926,4213,15,1,f +12926,4315,15,1,f +12926,4460a,15,2,f +12926,4522,0,1,f +12926,4589,14,1,f +12926,4599a,4,2,f +12926,4600,7,2,f +12926,4865a,15,2,f +12926,6014a,15,4,f +12926,6015,0,4,f +12926,6019,15,1,f +12926,6141,0,2,f +12926,6154,15,2,f +12926,6155,7,2,f +12926,6158,0,1,f +12926,6231,15,2,f +12926,970c00,7,1,f +12926,973p29c01,7,1,f +12928,45449,17,1,f +12928,45449,29,1,f +12928,45449,118,2,f +12928,45449,230,2,f +12928,45451,230,2,f +12928,45474,35,3,f +12928,45481,35,3,f +12928,45481,230,4,f +12928,45499,45,1,f +12928,46296,230,3,f +12928,46296,35,4,f +12928,47912,35,1,f +12928,47912,230,1,f +12928,48794,77,1,f +12928,48794,29,1,f +12928,51027,230,1,f +12928,51034,45,1,f +12928,clikits001pb05,13,1,f +12928,clikits001pb05,17,1,f +12928,clikits001pb06,5,2,f +12928,clikits011,34,1,f +12928,clikits012,47,1,f +12928,clikits021,45,1,f +12928,clikits025,43,12,f +12928,clikits028,17,8,f +12928,clikits028,15,8,f +12928,clikits028,29,4,f +12928,clikits028,5,8,f +12928,clikits028,43,2,f +12928,clikits028,35,2,f +12928,clikits028,118,10,f +12928,clikits037,9,2,f +12928,clikits038,43,2,f +12928,clikits038,35,2,f +12928,clikits068,47,1,f +12928,clikits069,230,1,f +12928,clikits080,79,2,f +12928,clikits080,5,2,f +12928,clikits086,5,4,f +12928,clikits086,118,6,f +12928,clikits086,17,2,f +12928,clikits140,9999,1,f +12928,clikits150,89,1,f +12928,clikits151,89,1,f +12928,clikits152,29,3,f +12928,clikits152,118,3,f +12928,clikits152,17,3,f +12928,clikits153,118,1,f +12928,clikits153,29,2,f +12928,clikits153,17,2,f +12928,clikits154,45,1,f +12928,clikits155,35,1,f +12929,2376,0,1,f +12929,2412b,72,2,f +12929,2412b,15,2,f +12929,2431,320,2,f +12929,2431,15,2,f +12929,2432,19,2,f +12929,2436,71,1,f +12929,2444,71,2,f +12929,2444,15,2,f +12929,2446pr02b,72,1,f +12929,2447,40,1,f +12929,2447,40,1,t +12929,2540,72,1,f +12929,2555,72,2,f +12929,2654,72,6,f +12929,2780,0,1,t +12929,2780,0,2,f +12929,2819,71,2,f +12929,2877,15,4,f +12929,298c05,0,1,t +12929,298c05,0,2,f +12929,3003,0,3,f +12929,3004,320,3,f +12929,3005,15,4,f +12929,3008,72,2,f +12929,3010,4,3,f +12929,3010,15,3,f +12929,3021,4,2,f +12929,3022,4,1,f +12929,3023,72,1,f +12929,3029,0,1,f +12929,3030,0,1,f +12929,3032,0,2,f +12929,3035,15,2,f +12929,30359b,72,2,f +12929,30360,320,2,f +12929,30374,0,4,f +12929,30384,40,1,f +12929,3039,320,2,f +12929,3039pr23,72,1,f +12929,3040b,15,2,f +12929,3040b,71,2,f +12929,30503,15,2,f +12929,3062b,72,2,f +12929,3460,15,5,f +12929,3622,15,2,f +12929,3626bpr0449,78,2,f +12929,3660,72,4,f +12929,3665,15,4,f +12929,3666,15,3,f +12929,3666,71,2,f +12929,3700,4,1,f +12929,3710,15,6,f +12929,3730,0,1,f +12929,3731,0,1,f +12929,3937,72,2,f +12929,3940b,72,1,f +12929,3941,72,1,f +12929,4032a,72,3,f +12929,4032b,0,1,f +12929,4161,15,2,f +12929,41764,15,1,f +12929,41765,15,1,f +12929,41769,15,1,f +12929,41770,15,1,f +12929,42023,15,2,f +12929,42023,72,4,f +12929,42060,15,1,f +12929,42061,15,1,f +12929,4286,320,2,f +12929,4286,15,4,f +12929,4287,15,2,f +12929,43093,1,1,f +12929,43337,14,4,f +12929,4345b,15,1,f +12929,4346,71,1,f +12929,43719,320,2,f +12929,44126,320,2,f +12929,46303,71,1,f +12929,4740,42,4,f +12929,47753,320,1,f +12929,50304,15,1,f +12929,50304,0,1,f +12929,50305,0,1,f +12929,50305,15,1,f +12929,50950,320,2,f +12929,54200,72,6,f +12929,54200,40,2,f +12929,6020,0,1,f +12929,6134,0,2,f +12929,6141,36,1,t +12929,6141,0,1,t +12929,6141,0,2,f +12929,6141,36,5,f +12929,6207stk01,9999,1,t +12929,6636,15,2,f +12929,970c00,71,1,f +12929,970x026,2,1,f +12929,973pr1236c01,71,1,f +12929,973pr1526c01,2,1,f +12930,2413,15,2,f +12930,2420,72,2,f +12930,2431,72,1,f +12930,2431,15,1,f +12930,2437,40,1,f +12930,3003,0,1,f +12930,3005,72,1,f +12930,3010,15,2,f +12930,3020,15,3,f +12930,3020,4,1,f +12930,3021,72,4,f +12930,3021,71,1,f +12930,3022,71,1,f +12930,3023,0,5,f +12930,3024,72,2,f +12930,3024,15,1,f +12930,3039pc5,71,1,f +12930,3040b,15,2,f +12930,3068b,4,1,f +12930,3070b,15,1,t +12930,3070b,14,1,t +12930,3070b,4,1,f +12930,3070b,15,3,f +12930,3070b,4,1,t +12930,3070b,14,1,f +12930,3139,0,6,f +12930,3460,71,1,f +12930,3623,72,3,f +12930,3624,0,1,f +12930,3626bp02,14,1,f +12930,3626bpr0001,14,1,f +12930,3626bpx19,14,1,f +12930,3666,72,1,f +12930,3679,7,2,f +12930,3680,15,2,f +12930,3710,15,3,f +12930,3710,72,1,f +12930,3794a,15,1,f +12930,3795,71,2,f +12930,3937,71,1,f +12930,4032.13stk01,9999,1,t +12930,4032.13stk02,9999,1,t +12930,4079,6,3,f +12930,4162,72,1,f +12930,41769,15,4,f +12930,41770,15,4,f +12930,41879a,0,1,f +12930,4282,71,1,f +12930,44301a,15,2,f +12930,44302a,15,2,f +12930,4449,0,1,f +12930,4449,73,1,f +12930,44571,15,4,f +12930,4477,15,1,f +12930,4477,72,1,f +12930,44822,15,4,f +12930,4485,4,1,f +12930,4530,484,1,f +12930,4624,15,6,f +12930,4854,71,2,f +12930,4855,71,2,f +12930,4856a,72,2,f +12930,4858,15,1,f +12930,4859,15,1,f +12930,4859,72,1,f +12930,4861,15,1,f +12930,4862,40,12,f +12930,4863,15,6,f +12930,4865a,4,2,f +12930,4865a,15,2,f +12930,4867,15,1,f +12930,4868b,15,2,f +12930,4869,71,2,f +12930,4870,71,3,f +12930,4871,71,1,f +12930,6134,0,1,f +12930,6141,15,2,f +12930,6141,36,1,f +12930,6141,47,1,f +12930,6141,34,1,f +12930,6141,34,1,t +12930,6141,36,1,t +12930,6141,47,1,t +12930,6141,15,1,t +12930,6636,15,2,f +12930,73983,72,4,f +12930,970c00,4,1,f +12930,970c00,272,1,f +12930,973c01,15,1,f +12930,973px189c02,272,1,f +12930,973px18c01,15,1,f +12934,2550c01,70,1,f +12934,33085,14,1,f +12935,11208,71,4,f +12935,11209,0,4,f +12935,15712,72,2,f +12935,2412b,0,2,f +12935,2436,14,2,f +12935,3020,72,1,f +12935,3020,14,1,f +12935,3021,72,3,f +12935,3022,15,3,f +12935,3031,14,1,f +12935,3066,40,1,f +12935,3068b,14,1,f +12935,3623,14,2,f +12935,3710,14,2,f +12935,3795,71,1,f +12935,4286,14,2,f +12935,4599b,71,1,t +12935,4599b,71,2,f +12935,4600,0,2,f +12935,48336,71,1,f +12935,60212,14,2,f +12935,6141,47,1,t +12935,6141,36,2,f +12935,6141,47,2,f +12935,6141,36,1,t +12936,2435,2,2,f +12936,2437,47,1,f +12936,2456,4,2,f +12936,2456,1,2,f +12936,2456,15,5,f +12936,2456,14,2,f +12936,2877,72,4,f +12936,3001,4,8,f +12936,3001,1,10,f +12936,3001,73,6,f +12936,3001,14,6,f +12936,3001,25,9,f +12936,3001,2,5,f +12936,3001,27,6,f +12936,3001,15,6,f +12936,3001,0,3,f +12936,3001,70,2,f +12936,3002,15,8,f +12936,3002,2,4,f +12936,3002,1,8,f +12936,3002,0,4,f +12936,3002,4,8,f +12936,3002,14,8,f +12936,3003,4,16,f +12936,3003,14,16,f +12936,3003,70,4,f +12936,3003,15,16,f +12936,3003,73,10,f +12936,3003,27,6,f +12936,3003,1,16,f +12936,3003,2,8,f +12936,3003,25,8,f +12936,3003,0,8,f +12936,3004,4,12,f +12936,3004,73,6,f +12936,3004,25,6,f +12936,3004,1,12,f +12936,3004,2,6,f +12936,3004,70,4,f +12936,3004,27,6,f +12936,3004,0,6,f +12936,3004,15,12,f +12936,3004,14,12,f +12936,3004p0b,14,3,f +12936,3005,1,8,f +12936,3005,27,6,f +12936,3005,0,4,f +12936,3005,14,8,f +12936,3005,4,8,f +12936,3005,73,6,f +12936,3005,15,8,f +12936,3005,25,6,f +12936,3005,2,4,f +12936,30055,15,2,f +12936,3007,4,1,f +12936,3007,1,1,f +12936,3007,15,1,f +12936,3007,14,1,f +12936,3008,1,2,f +12936,3008,4,2,f +12936,3008,15,2,f +12936,3008,14,2,f +12936,3009,14,4,f +12936,3009,1,4,f +12936,3009,4,4,f +12936,3009,15,4,f +12936,3010,1,3,f +12936,3010,0,2,f +12936,3010,15,3,f +12936,3010,27,2,f +12936,3010,2,2,f +12936,3010,14,3,f +12936,3010,4,3,f +12936,3020,25,2,f +12936,3020,72,2,f +12936,3020,1,4,f +12936,3021,4,3,f +12936,3022,70,2,f +12936,3022,1,4,f +12936,3022,0,2,f +12936,3029,2,2,f +12936,30363,14,2,f +12936,3037,0,12,f +12936,3037,4,8,f +12936,3039,0,10,f +12936,3039,4,6,f +12936,3039,25,2,f +12936,3039,14,2,f +12936,3040b,70,4,f +12936,3040b,1,4,f +12936,3041,4,2,f +12936,3045,0,2,f +12936,3045,4,12,f +12936,3046a,0,2,f +12936,3048c,4,2,f +12936,3062b,27,6,f +12936,3062b,15,6,f +12936,3062b,46,6,f +12936,3062b,36,6,f +12936,3298,1,6,f +12936,3307,15,1,f +12936,33303,15,2,f +12936,3622,2,4,f +12936,3622,14,4,f +12936,3622,1,4,f +12936,3622,0,4,f +12936,3622,4,4,f +12936,3622,15,4,f +12936,3660,70,4,f +12936,3710,27,4,f +12936,3741,2,1,t +12936,3741,2,4,f +12936,3742,4,12,f +12936,3742,4,4,t +12936,3795,1,2,f +12936,3832,0,2,f +12936,3957a,0,2,f +12936,4132,14,5,f +12936,4132,4,5,f +12936,4202,2,1,f +12936,42022,4,2,f +12936,4204,2,1,f +12936,4477,1,2,f +12936,4727,10,4,f +12936,4728,1,2,f +12936,4728,14,2,f +12936,4740,0,2,f +12936,56902,71,4,f +12936,60475a,15,4,f +12936,60583a,4,2,f +12936,60583a,14,4,f +12936,60592,15,2,f +12936,60599,15,2,f +12936,60599,4,2,f +12936,60608,15,12,f +12936,60608,14,8,f +12936,60623,0,2,f +12936,60623,14,2,f +12936,60800b,2,6,f +12936,61254,0,4,f +12936,6141,27,6,f +12936,6141,25,1,t +12936,6141,25,6,f +12936,6141,27,1,t +12936,6182,15,4,f +12936,6187,0,1,f +12936,6215,4,2,f +12936,6249,72,2,f +12938,3002a,15,1,f +12938,3003,15,2,f +12938,3004,15,12,f +12938,3005,15,13,f +12938,3008,15,1,f +12938,3009,15,6,f +12938,3010,15,8,f +12938,3032,15,3,f +12938,3068a,0,1,f +12938,3069a,0,3,f +12938,3069a,7,3,f +12938,3081bc01,4,2,f +12938,3144,15,1,f +12938,3185,4,3,f +12938,3297,4,10,f +12938,3298,4,3,f +12938,3299,4,1,f +12938,3300,4,2,f +12938,33bc01,4,1,f +12938,455,2,1,f +12938,646bc01,4,3,f +12938,gtpine,2,1,f +12939,2780,0,1,t +12939,2780,0,2,f +12939,32062,0,2,f +12939,32174,19,2,f +12939,32174,0,2,f +12939,32270,7,1,f +12939,32567,0,1,f +12939,32576,0,2,f +12939,32579,7,1,f +12939,3713,7,1,f +12939,3713,7,1,t +12939,3749,19,1,f +12939,3749,19,1,t +12939,41670,19,2,f +12939,43093,1,1,f +12939,44137,19,1,f +12939,44809,0,2,f +12939,44810,19,1,f +12939,44811,179,1,f +12939,44812,179,1,f +12939,4519,7,1,f +12940,141ac96,15,1,f +12940,3647,7,2,f +12940,3648a,7,1,f +12940,3650a,7,1,f +12940,3700,14,4,f +12940,3701,14,2,f +12940,3705,0,2,f +12940,3709,14,2,f +12940,3713,7,1,f +12940,3736,7,1,f +12940,3738,14,2,f +12940,468c03,7,1,f +12940,6216a,7,1,f +12940,rb00168,0,1,f +12943,10187,179,1,f +12943,10247,72,1,f +12943,11089,15,1,f +12943,11153,28,2,f +12943,11203,19,3,f +12943,11477,85,11,f +12943,13731,0,1,f +12943,15573,0,2,f +12943,15712,0,12,f +12943,16577,72,2,f +12943,18957pat0002,19,1,f +12943,19044pr01,19,1,f +12943,2419,28,4,f +12943,2419,72,2,f +12943,2420,28,2,f +12943,2570,179,1,f +12943,2780,0,3,f +12943,3002,19,4,f +12943,3004,28,2,f +12943,30173b,297,2,f +12943,3020,28,7,f +12943,3021,0,1,f +12943,3022,72,4,f +12943,3023,85,20,f +12943,3023,72,3,f +12943,3024,28,2,f +12943,3034,71,1,f +12943,30367c,0,1,f +12943,30414,19,2,f +12943,3068b,71,1,f +12943,3069b,4,1,f +12943,32064a,2,1,f +12943,32125,71,1,f +12943,3622,0,2,f +12943,3626cpr1569,14,1,f +12943,3626cpr1573,14,1,f +12943,3626cpr1575,14,1,f +12943,3660,0,6,f +12943,3666,28,8,f +12943,3700,72,3,f +12943,3700,4,2,f +12943,3710,28,1,f +12943,3710,0,2,f +12943,3747a,19,2,f +12943,3747a,72,1,f +12943,3795,0,7,f +12943,3937,71,1,f +12943,3958,72,1,f +12943,4032a,85,1,f +12943,4081b,15,1,f +12943,41531,148,3,f +12943,4274,71,2,f +12943,4282,0,2,f +12943,43710,28,1,f +12943,43711,28,1,f +12943,44294,71,1,f +12943,4477,72,2,f +12943,4498,70,1,f +12943,4595,0,1,f +12943,46667,72,3,f +12943,47455,0,2,f +12943,47456,85,3,f +12943,47753,85,2,f +12943,48171,72,2,f +12943,48172,0,1,f +12943,4865a,19,6,f +12943,4871,0,1,f +12943,50950,4,2,f +12943,51739,320,2,f +12943,51739,28,10,f +12943,53451,15,10,f +12943,54200,85,9,f +12943,55013,72,1,f +12943,59443,4,1,f +12943,59900,36,4,f +12943,60475b,0,2,f +12943,61184,71,2,f +12943,61252,72,8,f +12943,6126b,182,1,f +12943,6134,4,1,f +12943,6141,182,1,f +12943,6260,15,2,f +12943,63868,0,2,f +12943,64867,28,1,f +12943,71155,0,1,f +12943,72454,0,1,f +12943,73983,0,2,f +12943,76766,0,1,f +12943,85984,28,16,f +12943,87079,4,1,f +12943,87544,0,2,f +12943,87580,28,6,f +12943,87620,28,2,f +12943,87747,15,9,f +12943,92280,15,6,f +12943,92691,15,4,f +12943,92946,0,3,f +12943,93563,0,1,f +12943,970c00pr0770,0,1,f +12943,970c00pr0778,191,1,f +12943,970c00pr0799,85,1,f +12943,973pr2857c01,191,1,f +12943,973pr2861c01,320,1,f +12943,973pr2903c01,0,1,f +12943,98133pr0012,191,1,f +12943,98138,179,4,f +12943,98138,36,1,f +12943,99207,0,6,f +12944,11211,71,2,f +12944,2412b,15,2,f +12944,2412b,72,4,f +12944,2420,4,2,f +12944,2431,72,1,f +12944,2436,0,1,f +12944,2540,19,1,f +12944,3004,0,3,f +12944,3004,15,5,f +12944,3005,15,2,f +12944,3020,0,1,f +12944,3020,15,1,f +12944,3021,0,4,f +12944,3022,15,1,f +12944,3023,14,9,f +12944,3023,15,14,f +12944,3023,36,1,f +12944,3023,4,6,f +12944,3024,15,4,f +12944,3024,15,1,t +12944,3024,0,2,f +12944,3024,0,1,t +12944,3032,0,1,f +12944,3034,71,4,f +12944,30414,0,2,f +12944,3062b,36,2,f +12944,30663,0,1,f +12944,3068b,15,2,f +12944,3068b,4,2,f +12944,3068b,19,4,f +12944,3070b,4,2,f +12944,3070b,4,1,t +12944,32123b,71,1,t +12944,32123b,71,4,f +12944,3460,71,1,f +12944,3622,71,4,f +12944,3623,15,4,f +12944,3623,0,2,f +12944,3660,15,4,f +12944,3660,4,2,f +12944,3665,15,8,f +12944,3666,0,5,f +12944,3666,15,2,f +12944,3700,71,2,f +12944,3703,1,2,f +12944,3710,4,2,f +12944,3710,15,4,f +12944,3794b,72,1,f +12944,3795,15,2,f +12944,3795,0,4,f +12944,3832,15,4,f +12944,4070,15,2,f +12944,4081b,71,2,f +12944,4162,15,1,f +12944,41769,4,1,f +12944,41770,4,1,f +12944,42022,15,2,f +12944,42446,0,2,f +12944,42446,0,1,t +12944,4287,0,2,f +12944,43337,40,1,f +12944,43722,15,2,f +12944,43723,15,2,f +12944,44728,0,2,f +12944,48729b,0,1,t +12944,48729b,0,1,f +12944,50950,15,10,f +12944,51739,0,2,f +12944,54200,0,2,f +12944,54200,40,1,t +12944,54200,40,2,f +12944,54200,182,2,f +12944,54200,15,1,t +12944,54200,0,1,t +12944,54200,15,14,f +12944,54200,182,1,t +12944,55982,0,4,f +12944,58090,0,4,f +12944,58181,40,1,f +12944,60478,15,2,f +12944,60485,71,2,f +12944,60581,40,2,f +12944,61252,72,2,f +12944,61409,0,2,f +12944,61409,15,2,f +12944,6141,47,1,t +12944,6141,71,18,f +12944,6141,4,1,t +12944,6141,4,10,f +12944,6141,71,1,t +12944,6141,47,2,f +12944,62701,135,4,f +12944,63864,15,4,f +12944,6541,0,4,f +12944,6558,1,2,f +12944,6636,0,4,f +12944,6636,4,1,f +12944,85984,15,10,f +12944,87609,4,1,f +12944,93273,15,2,f +12944,98138,36,3,f +12944,98138,182,1,t +12944,98138,36,1,t +12944,98138,182,2,f +12944,99781,71,2,f +12945,2412b,297,1,f +12945,2528,0,1,f +12945,2817,0,4,f +12945,3001,0,1,f +12945,3020,15,2,f +12945,3023,70,1,f +12945,3034,70,1,f +12945,3040b,71,1,f +12945,3062b,72,1,f +12945,3062b,1,4,f +12945,3068bpr0173,15,2,f +12945,3070b,15,1,t +12945,3070b,14,1,t +12945,3070b,19,8,f +12945,3070b,4,8,f +12945,3070b,19,1,t +12945,3070b,15,8,f +12945,3070b,4,1,t +12945,3070b,14,8,f +12945,32062,4,2,f +12945,3710,15,2,f +12945,3794b,297,1,f +12945,3867,1,1,f +12945,3937,72,1,f +12945,3938,0,1,f +12945,3941,70,2,f +12945,3957a,0,1,f +12945,4006,0,2,f +12945,4070,70,1,f +12945,4162,70,2,f +12945,4274,71,1,t +12945,4274,71,1,f +12945,43093,1,6,f +12945,43722,15,2,f +12945,43723,15,3,f +12945,4477,70,4,f +12945,4495b,4,1,f +12945,48336,297,1,f +12945,4856a,0,2,f +12945,51739,15,2,f +12945,54200,71,1,t +12945,54200,71,5,f +12945,59443,0,4,f +12945,60470a,0,1,f +12945,6141,297,8,f +12945,6141,0,4,f +12945,6141,0,1,t +12945,6141,297,1,t +12945,64776pat0001,0,1,f +12945,6564,0,1,f +12945,6565,0,1,f +12945,85863pr0030,15,1,f +12945,85863pr0031,4,1,f +12945,85863pr0032,19,1,f +12945,85863pr0033,0,1,f +12945,85863pr0034,14,1,f +12945,87580,0,1,f +12945,90194,70,2,f +12946,1030b1,9999,1,f +12946,1030b10,9999,1,f +12946,1030b11,9999,1,f +12946,1030b12,9999,1,f +12946,1030b13,9999,1,f +12946,1030b14,9999,1,f +12946,1030b15,9999,1,f +12946,1030b16,9999,1,f +12946,1030b17,9999,1,f +12946,1030b18,9999,1,f +12946,1030b19,9999,1,f +12946,1030b2,9999,1,f +12946,1030b20,9999,1,f +12946,1030b3,9999,1,f +12946,1030b4,9999,1,f +12946,1030b5,9999,1,f +12946,1030b6,9999,1,f +12946,1030b7,9999,1,f +12946,1030b8,9999,1,f +12946,1030b9,9999,1,f +12948,2780,0,2,f +12948,32062,0,4,f +12948,32174,72,2,f +12948,32270,71,2,f +12948,32475,72,2,f +12948,32476,272,2,f +12948,32533pb225,21,1,f +12948,3749,19,2,f +12948,44135,72,1,f +12948,44810,272,1,f +12948,4519,71,2,f +12948,47296,72,2,f +12948,47328,272,2,f +12948,47330,272,1,f +12948,47331,272,1,f +12948,47332,272,1,f +12948,47334,179,1,f +12948,47337,135,2,f +12948,x1190,57,1,f +12949,2357,7,4,f +12949,2412b,57,5,f +12949,2419,0,2,f +12949,2420,1,2,f +12949,2444,0,2,f +12949,2447,0,1,f +12949,2460,7,4,f +12949,2476a,1,2,f +12949,2743,0,2,f +12949,2877,7,2,f +12949,298c03,0,2,f +12949,298c03,0,1,t +12949,3001,7,1,f +12949,3001,0,2,f +12949,30034,0,4,f +12949,30038,57,1,f +12949,3020,1,1,f +12949,3020,0,1,f +12949,3021,0,1,f +12949,3022,1,1,f +12949,3022,0,1,f +12949,3039,7,2,f +12949,3039,0,3,f +12949,3039pb016,0,1,f +12949,3040b,7,2,f +12949,3062b,7,6,f +12949,3069bpx33,0,1,f +12949,3176,0,1,f +12949,32017,0,2,f +12949,32017,7,2,f +12949,32034,7,1,f +12949,3298,0,1,f +12949,3298pb009,0,2,f +12949,3298pb017,0,2,f +12949,3612,7,6,f +12949,3622,0,2,f +12949,3626bpx101,14,1,f +12949,3660,0,2,f +12949,3660,7,4,f +12949,3665,0,2,f +12949,3679,7,1,f +12949,3680,1,1,f +12949,3710,7,2,f +12949,3710,1,2,f +12949,3710,0,2,f +12949,3747a,7,1,f +12949,3795,0,1,f +12949,3795,7,2,f +12949,3838,0,1,f +12949,3839b,0,3,f +12949,3933,0,1,f +12949,3934,0,1,f +12949,3941,0,2,f +12949,4070,7,2,f +12949,4070,0,2,f +12949,4081b,7,2,f +12949,412,57,2,f +12949,4220,7,1,f +12949,4221,0,2,f +12949,4345b,7,1,f +12949,4346,57,1,f +12949,4590,0,1,f +12949,4598,7,1,f +12949,4740,57,2,f +12949,4869,7,1,f +12949,6048a,0,2,f +12949,6117,57,1,f +12949,6141,57,1,t +12949,6141,57,9,f +12949,6217,0,1,f +12949,970x021,0,1,f +12949,973pb0076c01,8,1,f +12950,32034,7,1,f +12950,32039,7,1,f +12950,32062,0,2,f +12950,32073,0,1,f +12950,32173,7,1,f +12950,32174,15,1,f +12950,32174,0,4,f +12950,32269,7,1,f +12950,32270,7,2,f +12950,32474,0,1,f +12950,32475,15,2,f +12950,32476,7,1,f +12950,32482,7,2,f +12950,32489,15,1,f +12950,32552,15,1,f +12950,32553,7,1,f +12950,32554,143,1,f +12950,32569,15,1,f +12950,3706,0,1,f +12950,3713,7,2,f +12950,3749,7,1,f +12950,4285b,15,1,f +12950,4519,0,3,f +12952,2436,19,1,f +12952,2540,71,2,f +12952,2555,0,2,f +12952,3023,2,4,f +12952,3023,71,2,f +12952,3024,2,1,f +12952,30383,19,2,f +12952,3039,2,2,f +12952,3040b,2,2,f +12952,3710,2,2,f +12952,3794a,0,1,f +12952,3839b,2,2,f +12952,3937,2,2,f +12952,3938,71,2,f +12952,3957a,71,1,f +12952,4085c,0,1,f +12952,44302a,19,2,f +12952,44302a,2,4,f +12952,44567a,19,4,f +12952,47674,47,1,f +12952,47675,2,1,f +12952,47676,2,1,f +12952,47905,0,2,f +12952,6141,36,1,t +12952,6141,4,2,f +12952,6141,36,2,f +12952,6141,4,1,t +12952,73983,2,2,f +12956,10716,379,1,f +12956,12825,71,1,t +12956,12825,71,2,f +12956,2412b,1,1,f +12956,2419,15,4,f +12956,2431,71,2,f +12956,2431,72,1,f +12956,2444,15,4,f +12956,2445,72,1,f +12956,2445,15,2,f +12956,2450,72,4,f +12956,2654,15,2,f +12956,2730,0,2,f +12956,2780,0,2,t +12956,2780,0,4,f +12956,2817,0,1,f +12956,2877,72,1,f +12956,3001,4,1,f +12956,3020,71,3,f +12956,3021,1,5,f +12956,3021,15,3,f +12956,3022,72,7,f +12956,3022,71,4,f +12956,3022,0,6,f +12956,3023,71,11,f +12956,3023,15,2,f +12956,3029,15,2,f +12956,3031,1,1,f +12956,3033,15,2,f +12956,3034,71,2,f +12956,3034,15,1,f +12956,30350b,72,2,f +12956,30355,72,2,f +12956,30355,15,1,f +12956,30356,15,1,f +12956,30356,72,2,f +12956,30374,41,1,f +12956,30374,0,1,f +12956,3038,72,2,f +12956,3039,72,2,f +12956,3040b,15,2,f +12956,3040b,71,6,f +12956,30504,72,2,f +12956,30552,71,2,f +12956,3068b,19,1,f +12956,3068b,72,4,f +12956,3068b,15,2,f +12956,3068bpr0166,71,1,f +12956,3069b,14,2,f +12956,32064b,15,6,f +12956,32316,15,2,f +12956,32531,71,1,f +12956,3298,72,1,f +12956,3460,15,2,f +12956,3622,71,4,f +12956,3623,71,1,f +12956,3623,72,2,f +12956,3623,15,8,f +12956,3626bpr0547,78,1,f +12956,3626bpr0759,78,1,f +12956,3626cpr1044,78,1,f +12956,3659,15,1,f +12956,3666,1,2,f +12956,3673,71,2,t +12956,3673,71,2,f +12956,3676,72,2,f +12956,3700,0,4,f +12956,3710,1,9,f +12956,3747b,71,1,f +12956,3794b,15,2,f +12956,3795,1,4,f +12956,3795,72,1,f +12956,3795,15,6,f +12956,3832,1,2,f +12956,41747,15,1,f +12956,41748,15,1,f +12956,41769,15,1,f +12956,41770,15,1,f +12956,4286,1,2,f +12956,4286,15,2,f +12956,4287,15,2,f +12956,43093,1,1,f +12956,43720,15,1,f +12956,43721,15,1,f +12956,43722,1,11,f +12956,43722,15,8,f +12956,43723,1,11,f +12956,43723,15,8,f +12956,44224,72,2,f +12956,44225,71,2,f +12956,44301a,71,1,f +12956,44302a,15,2,f +12956,44728,72,2,f +12956,4519,71,2,f +12956,4589,72,4,f +12956,47397,15,1,f +12956,47398,15,1,f +12956,4740,42,4,f +12956,4740,15,4,f +12956,48336,0,2,f +12956,4854,15,3,f +12956,4855,15,5,f +12956,48933,15,5,f +12956,50304,15,2,f +12956,50305,15,2,f +12956,52501,72,3,f +12956,54200,15,2,f +12956,54200,72,1,f +12956,54200,72,1,t +12956,54200,15,1,t +12956,54383,1,2,f +12956,54383,72,2,f +12956,54384,1,2,f +12956,54384,72,2,f +12956,57909a,72,1,f +12956,60471,71,1,f +12956,60474,1,1,f +12956,60478,71,1,f +12956,60479,15,8,f +12956,60849,71,2,f +12956,61196,484,1,f +12956,61409,72,4,f +12956,61409,1,2,f +12956,6141,71,2,t +12956,6141,71,8,f +12956,61678,1,2,f +12956,61678,15,2,f +12956,61780,72,1,f +12956,6222,15,1,f +12956,63864,15,10,f +12956,63965,71,2,f +12956,64802,72,1,f +12956,64802,148,1,f +12956,6558,1,6,f +12956,6636,15,2,f +12956,85984,72,3,f +12956,85984,1,3,f +12956,87079,15,1,f +12956,87083,72,2,f +12956,87087,72,4,f +12956,87610pr0001b,72,1,f +12956,87610pr0002b,148,1,f +12956,90194,72,2,f +12956,92280,71,1,f +12956,92280,15,2,f +12956,92579,40,1,f +12956,92738,0,1,f +12956,92946,1,4,f +12956,93095,14,2,f +12956,93273,71,2,f +12956,93571,0,1,f +12956,9525stk01,9999,1,t +12956,970c55pr0386,379,1,f +12956,970x005,15,1,f +12956,970x199,1,1,f +12956,973pr1403c01,19,1,f +12956,973pr1731c01,272,1,f +12956,973pr2134c01,272,1,f +12956,99206,71,10,f +12956,99207,71,2,f +12957,cre011,9999,1,f +12958,30115,2,1,f +12958,30136,70,2,f +12958,3022,70,1,f +12958,3062b,46,1,f +12958,33078,4,1,f +12958,3899,4,1,f +12958,3941,70,2,f +12958,4032a,0,1,f +12958,4528,135,1,f +12958,4740,0,2,f +12958,48729b,0,1,f +12958,48729b,0,1,t +12958,64647,57,1,f +12958,64647,57,1,t +12961,10199,10,1,f +12961,15319,71,1,f +12961,15613,71,1,f +12961,15947,29,1,f +12961,16320,191,1,f +12961,16321,15,1,f +12961,16385,15,1,f +12961,17164,1,1,f +12961,2302,191,2,f +12961,2302,14,2,f +12961,3011,191,1,f +12961,31171,179,1,f +12961,3437,73,2,f +12961,3437,10,4,f +12961,40666,14,1,f +12961,40666,4,2,f +12961,40666,25,1,f +12961,44524,72,1,f +12961,61649,1,1,f +12961,75115pr0017,15,1,f +12961,76371,1,2,f +12961,76371,25,2,f +12961,90265,15,1,f +12961,92094,73,1,f +12961,98223pr0006,4,1,f +12961,98225,27,2,f +12961,98233,4,1,f +12961,98465,73,1,f +12961,dupmc3pb02,4,1,f +12962,2412b,7,2,f +12962,2420,0,6,f +12962,2431,0,2,f +12962,2444,0,2,f +12962,2555,7,1,f +12962,2625,0,1,f +12962,2654,0,2,f +12962,2711,7,2,f +12962,2711,0,2,f +12962,2730,0,1,f +12962,2736,7,2,f +12962,2744,0,8,f +12962,2780,0,14,f +12962,2825,0,8,f +12962,2825,7,8,f +12962,2853,7,2,f +12962,2905,0,6,f +12962,2952,0,4,f +12962,3022,0,4,f +12962,3023,14,5,f +12962,3023,0,7,f +12962,3024,34,1,f +12962,3024,36,1,f +12962,3024,14,2,f +12962,3037,0,1,f +12962,3040b,0,2,f +12962,3068b,0,1,f +12962,3069b,0,2,f +12962,32000,0,4,f +12962,32002,8,8,f +12962,3298,0,2,f +12962,3482,14,4,f +12962,3483,0,4,f +12962,3623,0,2,f +12962,3647,7,5,f +12962,3648a,7,1,f +12962,3650c,7,2,f +12962,3651,7,3,f +12962,3665,7,4,f +12962,3666,0,4,f +12962,3666,14,2,f +12962,3678a,0,2,f +12962,3700,0,14,f +12962,3701,0,4,f +12962,3701,7,2,f +12962,3702,0,3,f +12962,3703,0,10,f +12962,3704,0,9,f +12962,3705,0,13,f +12962,3706,0,5,f +12962,3707,0,5,f +12962,3708,0,5,f +12962,3709,14,1,f +12962,3709,0,9,f +12962,3710,0,20,f +12962,3710,14,4,f +12962,3713,7,4,f +12962,3737,0,8,f +12962,3749,7,6,f +12962,3894,0,6,f +12962,3895,0,2,f +12962,3933,0,1,f +12962,3934,0,1,f +12962,3937,0,1,f +12962,3938,0,1,f +12962,3942c,14,2,f +12962,4019,7,2,f +12962,4032a,14,4,f +12962,4032a,0,1,f +12962,4265a,7,36,f +12962,4274,7,20,f +12962,4286,0,4,f +12962,4287,0,4,f +12962,4442,0,2,f +12962,4477,14,4,f +12962,4519,0,11,f +12962,4855,7,2,f +12962,4856a,0,1,f +12962,4859,14,2,f +12962,6041,14,2,f +12962,6048a,0,1,f +12962,6217,0,1,f +12962,6536,7,10,f +12962,6538b,7,7,f +12962,6553,7,6,f +12962,6558,0,7,f +12962,6587,8,2,f +12962,6589,7,13,f +12962,6628,0,1,f +12962,6629,0,1,f +12962,6632,7,8,f +12962,6632,0,6,f +12962,6632,14,12,f +12962,73983,0,4,f +12962,73983,14,4,f +12962,75c04,8,5,f +12962,85544,4,1,f +12963,11101pat0001,15,1,f +12963,11113pr0003,182,1,f +12963,11126,4,1,f +12963,11127,41,6,f +12963,11153,2,2,f +12963,11291,4,1,f +12963,11767,72,1,f +12963,12825,1,2,f +12963,12825,70,6,f +12963,14290pr0001,84,1,f +12963,2423,2,2,f +12963,2445,70,1,f +12963,2780,0,1,t +12963,2780,0,2,f +12963,3022,15,1,f +12963,3023,0,6,f +12963,3023,33,1,f +12963,3024,2,1,t +12963,3024,2,2,f +12963,3034,2,1,f +12963,30383,72,2,f +12963,3069b,70,2,f +12963,33291,191,1,f +12963,33291,191,1,t +12963,3626cpr1203,84,1,f +12963,3666,288,2,f +12963,3666,1,2,f +12963,44302a,71,2,f +12963,4477,1,4,f +12963,4477,19,2,f +12963,50950,288,2,f +12963,53451,15,1,t +12963,53451,15,6,f +12963,54200,19,1,t +12963,54200,19,4,f +12963,55236,0,1,f +12963,59900,33,1,f +12963,60479,308,4,f +12963,63965,0,1,f +12963,73983,2,2,f +12963,85984,27,2,f +12963,93160,15,2,f +12963,93273,27,2,f +12963,970c150pr0447,28,1,f +12963,973pr2353c01,308,1,f +12963,98139,179,1,t +12963,98139,179,1,f +12965,264,4,1,f +12965,4461,4,1,f +12965,4466,14,1,f +12965,4467,14,1,f +12965,4607,4,1,f +12965,4612,4,1,f +12965,4613c01,4,1,f +12965,4616ac01,4,1,f +12965,fab4f,9999,1,f +12967,122c01,7,5,f +12967,3020,7,3,f +12967,3022,7,1,f +12967,3023,7,3,f +12967,3024,7,2,f +12967,3024,36,1,f +12967,3034,7,1,f +12967,3039p23,7,1,f +12967,3062a,34,1,f +12967,3324c01,7,1,f +12967,3479,7,2,f +12967,3626apr0001,14,2,f +12967,3641,0,10,f +12967,3679,7,1,f +12967,3680,7,1,f +12967,3730,7,1,f +12967,3731,7,1,f +12967,3787,7,5,f +12967,3794a,4,2,f +12967,3794a,7,2,f +12967,3795,7,3,f +12967,3829c01,7,1,f +12967,3838,15,1,f +12967,3838,7,1,f +12967,3838,4,1,f +12967,3842a,4,1,f +12967,3842a,15,1,f +12967,3937,7,1,f +12967,3938,7,1,f +12967,3941,0,2,f +12967,3941,15,6,f +12967,3942a,0,1,f +12967,3942a,15,1,f +12967,3956,7,2,f +12967,3957a,7,1,f +12967,3960,7,1,f +12967,3962a,0,1,f +12967,3963,7,1,f +12967,970c00,4,1,f +12967,970c00,15,1,f +12967,973p90c02,4,1,f +12967,973p90c05,15,1,f +12968,2357,0,2,f +12968,2357,4,2,f +12968,2412b,4,3,f +12968,2418b,42,1,f +12968,2419,0,1,f +12968,2419,7,1,f +12968,2420,4,2,f +12968,2420,7,2,f +12968,2420,0,4,f +12968,2431,7,1,f +12968,2432,0,1,f +12968,2450,7,2,f +12968,2458,7,2,f +12968,2465,7,2,f +12968,2555,7,2,f +12968,2582p6u,42,2,f +12968,2607,4,2,f +12968,2609b,4,2,f +12968,2983,7,1,f +12968,2984,4,1,f +12968,2985,4,1,f +12968,2986,4,1,f +12968,3001,4,2,f +12968,3001,7,3,f +12968,3002,4,3,f +12968,3002,0,2,f +12968,3002,7,2,f +12968,3003,0,5,f +12968,3003,4,3,f +12968,3003,7,2,f +12968,30035,0,1,f +12968,30036,0,2,f +12968,3004,4,2,f +12968,3004,7,2,f +12968,30062,0,1,f +12968,3007,7,1,f +12968,3009,7,1,f +12968,3010,0,1,f +12968,30116pr01,7,1,f +12968,30116pr02,7,1,f +12968,30117,7,2,f +12968,30117,42,2,f +12968,30117pb01,7,1,f +12968,30117pb05,7,1,f +12968,30118,7,2,f +12968,30119,7,2,f +12968,30119p6u,7,2,f +12968,30120p01,0,1,f +12968,30120p02,7,1,f +12968,30121,8,1,f +12968,30121,0,1,f +12968,3020,7,4,f +12968,3021,0,4,f +12968,3021,7,1,f +12968,3022,7,4,f +12968,3022,4,1,f +12968,3022,0,3,f +12968,3023,14,2,f +12968,3023,42,4,f +12968,3023,0,9,f +12968,3023,7,2,f +12968,3023,4,8,f +12968,3029,0,1,f +12968,3031,0,1,f +12968,3034,7,3,f +12968,3035,0,1,f +12968,3040b,7,2,f +12968,3068b,4,3,f +12968,3068bp54,7,1,f +12968,3069b,7,3,f +12968,3069b,4,3,f +12968,3069bp15,0,1,f +12968,3069bp51,0,1,f +12968,3069bp54,7,1,f +12968,3298,7,2,f +12968,3298,0,1,f +12968,3298p6u,7,1,f +12968,3460,7,1,f +12968,3475b,0,2,f +12968,3622,4,2,f +12968,3622,0,2,f +12968,3623,7,2,f +12968,3623,4,4,f +12968,3626bp6u,57,1,f +12968,3626bp6w,4,1,f +12968,3626bp6y,57,1,f +12968,3660,7,4,f +12968,3666,0,4,f +12968,3705,0,1,f +12968,3710,4,2,f +12968,3710,14,1,f +12968,3710,7,2,f +12968,3747a,0,3,f +12968,3933,0,2,f +12968,3934,0,2,f +12968,3937,0,1,f +12968,3940b,0,5,f +12968,3941,7,2,f +12968,3943b,0,3,f +12968,3956,0,1,f +12968,3960,42,1,f +12968,4070,4,2,f +12968,4081b,7,4,f +12968,4085c,0,2,f +12968,4150,0,1,f +12968,4229,0,1,f +12968,4275b,0,2,f +12968,4276b,7,2,f +12968,4286,0,2,f +12968,4286,7,6,f +12968,4345b,7,1,f +12968,4346,42,1,f +12968,4589,42,18,f +12968,4595,0,6,f +12968,4625,7,2,f +12968,4740,42,5,f +12968,4760c01,0,1,f +12968,4771,0,1,f +12968,4773,36,2,f +12968,4865a,0,1,f +12968,5306bc015,0,2,f +12968,6112,7,2,f +12968,6219,0,2,f +12968,6637,7,1,f +12968,6979stk01,9999,1,t +12968,73092,0,4,f +12968,970c00pb021,0,1,f +12968,970c07pb01,4,1,f +12968,970c09pb02,7,1,f +12968,973pb0078c01,0,1,f +12968,973pb0195c01,7,1,f +12968,973px123c01,7,1,f +12968,x165,47,8,f +12971,3005,4,1,f +12971,3010,4,4,f +12971,3021,25,2,f +12971,3021,2,3,f +12971,3022,2,2,f +12971,3039,4,1,f +12971,3298,4,1,f +12971,3298,25,2,f +12971,3665,4,1,f +12971,3710,2,2,f +12971,3747b,4,2,f +12971,3794a,0,1,f +12971,4286,4,1,f +12971,4287,4,2,f +12971,43710,25,1,f +12971,43711,25,1,f +12971,44302a,25,1,f +12971,44567a,25,1,f +12971,4740,15,2,f +12971,6141,0,2,f +12971,6141,15,2,f +12971,6141,15,1,t +12971,6141,0,1,t +12971,6141,42,1,t +12971,6141,42,4,f +12971,6541,14,2,f +12971,73983,0,2,f +12972,10201,71,1,f +12972,11211,19,4,f +12972,11303,272,1,f +12972,11399,15,2,f +12972,14716,15,4,f +12972,15530,272,1,f +12972,15532,0,1,f +12972,15535,72,1,f +12972,2412b,0,4,f +12972,2412b,15,9,f +12972,2412b,1,4,f +12972,2431,1,3,f +12972,2431,15,2,f +12972,2431,0,1,f +12972,2432,14,1,f +12972,2445,71,2,f +12972,2453a,15,1,f +12972,2454a,15,4,f +12972,2456,71,2,f +12972,2540,1,1,f +12972,2569,0,1,t +12972,2569,0,1,f +12972,2926,0,3,f +12972,3002,2,1,f +12972,3002,15,4,f +12972,3004,15,8,f +12972,30043,71,1,f +12972,3005,0,1,f +12972,3005,15,5,f +12972,3009,4,2,f +12972,3009,15,6,f +12972,3010,15,5,f +12972,3021,15,5,f +12972,3021,1,5,f +12972,3022,1,2,f +12972,3023,1,6,f +12972,3023,47,2,f +12972,3023,0,1,f +12972,3023,15,8,f +12972,30236,71,2,f +12972,3024,0,1,t +12972,3024,15,2,f +12972,3024,15,1,t +12972,3024,47,1,t +12972,3024,0,2,f +12972,3024,46,2,f +12972,3024,46,1,t +12972,3024,47,5,f +12972,3030,15,1,f +12972,3032,72,1,f +12972,3032,1,1,f +12972,3034,71,2,f +12972,3034,1,2,f +12972,3039pr0005,15,1,f +12972,30414,14,1,f +12972,30414,71,2,f +12972,30540,15,4,f +12972,30541,15,4,f +12972,3062b,4,2,f +12972,3068b,1,2,f +12972,3068b,0,3,f +12972,3068bpr0136,72,1,f +12972,3069b,182,2,f +12972,3069b,33,9,f +12972,3069b,71,2,f +12972,3069b,0,1,f +12972,3069bpr0030,72,1,f +12972,3069bpr0100,2,1,f +12972,3176,1,1,f +12972,3245c,15,7,f +12972,3623,71,1,f +12972,3626cpr0411,14,1,f +12972,3626cpr0754,14,1,f +12972,3626cpr1147,14,1,f +12972,3666,1,12,f +12972,3666,15,7,f +12972,3666,0,1,f +12972,3679,71,1,f +12972,3680,0,1,f +12972,3709,0,6,f +12972,3710,1,9,f +12972,3795,15,4,f +12972,3821,15,1,f +12972,3822,15,1,f +12972,3829c01,14,1,f +12972,3832,15,1,f +12972,3899,47,1,f +12972,3899,4,2,f +12972,3937,72,3,f +12972,3962b,0,1,f +12972,4079,14,3,f +12972,4083,15,2,f +12972,41334,72,1,f +12972,4176,41,1,f +12972,4282,71,1,f +12972,43898,72,1,f +12972,44301a,0,2,f +12972,44728,1,2,f +12972,4477,15,3,f +12972,4477,1,6,f +12972,4488,0,2,f +12972,48336,15,2,f +12972,48729b,0,1,f +12972,48729b,0,1,t +12972,50745,15,2,f +12972,52031,15,1,f +12972,54200,33,1,t +12972,54200,33,2,f +12972,58380,15,1,f +12972,58381,15,1,f +12972,59349,15,6,f +12972,6014b,71,8,f +12972,60470a,71,2,f +12972,60471,0,2,f +12972,60475a,15,5,f +12972,60478,15,4,f +12972,60581,15,3,f +12972,60594,15,2,f +12972,61252,72,1,f +12972,61252,0,2,f +12972,6134,0,3,f +12972,6141,0,1,t +12972,6141,46,5,f +12972,6141,36,4,f +12972,6141,46,1,t +12972,6141,36,2,t +12972,6141,33,1,t +12972,6141,33,2,f +12972,6141,0,2,f +12972,61482,71,1,f +12972,61482,71,1,t +12972,62113,0,4,f +12972,63864,71,1,f +12972,64567,0,1,t +12972,64567,0,1,f +12972,6583,15,1,f +12972,6636,71,1,f +12972,6636,15,4,f +12972,6636,14,4,f +12972,85984,0,2,f +12972,85984,15,6,f +12972,87079,15,2,f +12972,87079,71,2,f +12972,87609,15,2,f +12972,87697,0,8,f +12972,88072,14,1,f +12972,92339,1,1,f +12972,92585,4,1,f +12972,970c00,72,1,f +12972,970c00,272,2,f +12972,973pr2501c01,1,2,f +12972,973pr2502c01,15,1,f +12972,99206,71,4,f +12972,99780,0,2,f +12975,3004,14,3,f +12975,3010,14,10,f +12975,3010,15,2,f +12975,3020,4,1,f +12975,3021,4,1,f +12975,3023,14,2,f +12975,3023,1,1,f +12975,3024,7,1,f +12975,3024,14,1,f +12975,3024,4,2,f +12975,3039p34,15,1,f +12975,3069b,15,2,f +12975,3070b,7,1,f +12975,3297,0,5,f +12975,3298,0,1,f +12975,3622,4,1,f +12975,3622,14,2,f +12975,3623,4,1,f +12975,3625,0,1,f +12975,3626apr0001,14,2,f +12975,3660,14,2,f +12975,3666,15,2,f +12975,3666,1,1,f +12975,3666,14,1,f +12975,3710,1,2,f +12975,3747a,0,2,f +12975,3853,1,1,f +12975,3856,15,2,f +12975,3865,7,1,f +12975,3898,15,1,f +12975,3899,47,2,f +12975,3940b,15,1,f +12975,3957a,7,1,f +12975,3960p04,15,1,f +12975,4161,0,2,f +12975,47899c01,1,1,f +12975,6683stk01,9999,1,t +12975,970c00,0,1,f +12975,970c00,4,1,f +12975,973p13c01,4,1,f +12975,973px3c01,15,1,f +12976,2825,14,2,f +12976,2905,0,2,f +12976,30155,7,1,f +12976,32017,7,2,f +12976,32056,14,4,f +12976,32062,0,1,f +12976,32123b,7,2,f +12976,32123b,7,1,t +12976,3482,7,1,f +12976,3483,0,2,f +12976,3673,7,1,f +12976,3713,7,1,f +12976,3713,7,1,t +12976,4519,0,5,f +12976,6558,0,1,f +12976,6632,14,2,f +12976,71509,0,1,f +12976,71509,0,2,t +12977,11211,19,1,f +12977,11215,71,1,f +12977,11215,0,4,f +12977,11477,15,2,f +12977,13756,41,1,f +12977,13760,15,1,f +12977,14716,15,2,f +12977,14797,9999,1,t +12977,15332,71,2,f +12977,15530,272,1,f +12977,15532,0,1,f +12977,15534,72,1,f +12977,2412b,71,1,f +12977,2412b,1,4,f +12977,2412b,0,4,f +12977,2412b,15,2,f +12977,2431,71,2,f +12977,2431,14,1,f +12977,2432,71,1,f +12977,3001,15,1,f +12977,30031,0,1,f +12977,3004,72,2,f +12977,3004,15,2,f +12977,3005,1,2,f +12977,3010,71,2,f +12977,30170,72,1,f +12977,30170,72,1,t +12977,30171,0,1,f +12977,3020,4,1,f +12977,3021,71,3,f +12977,3021,1,3,f +12977,3022,4,5,f +12977,3023,71,3,f +12977,3024,15,4,f +12977,3024,182,2,f +12977,3024,36,1,t +12977,3024,15,1,t +12977,3024,36,2,f +12977,3024,182,1,t +12977,30367b,72,1,f +12977,30374,14,2,f +12977,3039,71,1,f +12977,30414,1,2,f +12977,30414,15,1,f +12977,3068b,72,2,f +12977,3069b,72,1,f +12977,3460,1,4,f +12977,3623,1,4,f +12977,3626cpr0754,14,1,f +12977,3626cpr1091,14,1,f +12977,3626cpr1144,14,1,f +12977,3710,72,1,f +12977,3710,15,11,f +12977,3794b,72,2,f +12977,3795,72,3,f +12977,3829c01,14,1,f +12977,3958,71,1,f +12977,4070,71,2,f +12977,4079,14,1,f +12977,41334,72,1,f +12977,4175,72,2,f +12977,44674,4,2,f +12977,4488,0,4,f +12977,4865b,15,2,f +12977,50745,72,4,f +12977,54200,47,2,f +12977,54200,72,2,f +12977,54200,33,1,t +12977,54200,47,1,t +12977,54200,33,4,f +12977,54200,72,1,t +12977,6014b,71,8,f +12977,60169,72,1,f +12977,60581,15,2,f +12977,60583a,15,2,f +12977,60594,72,1,f +12977,60596,72,1,f +12977,60614,72,2,f +12977,60621,71,1,f +12977,60897,4,2,f +12977,6141,33,2,f +12977,6141,47,1,t +12977,6141,33,1,t +12977,6141,47,2,f +12977,61482,71,1,f +12977,61482,71,1,t +12977,6157,0,2,f +12977,6180,15,2,f +12977,62808,72,2,f +12977,85984,71,2,f +12977,87079,72,2,f +12977,87079,15,1,f +12977,87697,0,8,f +12977,88072,4,1,f +12977,88930,15,1,f +12977,92099,15,1,f +12977,92107,15,1,f +12977,92280,0,1,f +12977,92585,4,1,f +12977,970c00,272,1,f +12977,970c00,72,2,f +12977,973pr2501c01,1,1,f +12977,973pr2502c01,15,1,f +12977,973pr2503c01,0,1,f +12977,99206,71,2,f +12977,99780,0,5,f +12979,45463,52,1,f +12979,45463,41,2,f +12979,46286,41,2,f +12979,46286,52,1,f +12979,46296,41,1,f +12979,clikits018,47,1,f +12981,10288,308,2,f +12981,11103,179,1,f +12981,11127,41,1,f +12981,11129pr0005,25,1,f +12981,11153,326,2,f +12981,12551pr0002,326,1,f +12981,2412b,71,1,f +12981,2436,4,2,f +12981,2654,72,2,f +12981,2730,0,2,f +12981,2780,0,1,t +12981,2780,0,3,f +12981,298c02,0,1,t +12981,298c02,0,1,f +12981,3020,71,1,f +12981,3022,72,4,f +12981,3023,320,2,f +12981,3034,71,1,f +12981,30374,41,1,f +12981,3068b,320,2,f +12981,32524,4,2,f +12981,32556,19,2,f +12981,3623,72,2,f +12981,3626cpr1123,19,1,f +12981,3626cpr1140,326,1,f +12981,3673,71,2,f +12981,3673,71,1,t +12981,3710,320,1,f +12981,3713,4,1,t +12981,3713,4,2,f +12981,3737,0,1,f +12981,3747b,72,1,f +12981,3795,0,2,f +12981,3832,72,1,f +12981,4070,72,2,f +12981,4081b,72,2,f +12981,4085c,4,2,f +12981,4085c,0,6,f +12981,4150,71,2,f +12981,41854,326,1,f +12981,42610,71,2,f +12981,43093,1,2,f +12981,4345b,4,1,f +12981,4346,71,1,f +12981,43903,0,2,f +12981,4590,72,1,f +12981,4623,72,2,f +12981,47720,0,1,f +12981,53451,15,6,f +12981,53451,15,1,t +12981,54200,326,6,f +12981,54200,326,1,t +12981,55981,71,2,f +12981,55982,0,2,f +12981,60478,4,2,f +12981,60484,71,2,f +12981,60593,288,1,f +12981,6141,71,4,f +12981,6141,71,1,t +12981,62462,320,2,f +12981,64712,326,2,f +12981,6558,1,2,f +12981,85984,326,4,f +12981,87079,326,1,f +12981,87618,71,2,f +12981,87747,15,8,f +12981,87747,15,1,t +12981,92280,0,2,f +12981,92947,71,2,f +12981,93273,326,4,f +12981,970c02pr0430,19,1,f +12981,970c155pr0443,326,1,f +12981,973pr2225c01,19,1,f +12981,973pr2247c01,326,1,f +12981,98138,36,3,f +12981,98138,36,1,t +12981,99781,71,2,f +12982,2412b,72,4,f +12982,2412b,15,2,f +12982,2431,15,1,f +12982,2436,15,2,f +12982,2444,0,8,f +12982,2447,0,1,t +12982,2454a,14,2,f +12982,2456,0,1,f +12982,2540,72,1,f +12982,2555,72,4,f +12982,2780,0,11,f +12982,2780,0,2,t +12982,2817,71,1,f +12982,3001,70,2,f +12982,3003,71,6,f +12982,30031,72,4,f +12982,30036,72,2,f +12982,3004,71,1,f +12982,3008,4,2,f +12982,3009,0,2,f +12982,3010,14,2,f +12982,30162,72,4,f +12982,3020,0,8,f +12982,3020,70,2,f +12982,3021,14,1,f +12982,3022,70,4,f +12982,3023,70,5,f +12982,30236,72,2,f +12982,3033,0,1,f +12982,30360,15,1,f +12982,30360,0,4,f +12982,30367b,72,2,f +12982,3062b,34,1,f +12982,3062b,71,3,f +12982,3062b,0,2,f +12982,3068b,15,1,f +12982,3069b,14,1,f +12982,32014,71,2,f +12982,32054,71,1,f +12982,32062,4,4,f +12982,32064b,71,6,f +12982,3298,14,1,f +12982,3660,72,2,f +12982,3666,70,2,f +12982,3679,71,1,f +12982,3680,0,1,f +12982,3700,70,6,f +12982,3703,0,2,f +12982,3706,0,2,f +12982,3710,14,6,f +12982,3710,0,3,f +12982,3794b,72,4,f +12982,3794b,15,4,f +12982,3795,72,4,f +12982,3829c01,14,1,f +12982,3937,71,1,f +12982,3941,72,3,f +12982,3942c,15,1,f +12982,3957a,15,1,f +12982,4032a,72,2,f +12982,40490,71,2,f +12982,4081b,0,4,f +12982,4282,14,8,f +12982,43093,1,2,f +12982,44568,71,2,f +12982,44569,72,2,f +12982,44676,0,2,f +12982,44728,71,2,f +12982,4589,34,1,f +12982,4623,0,2,f +12982,4740,42,2,f +12982,4740,15,2,f +12982,47457,72,2,f +12982,4865a,0,2,f +12982,50949,0,1,f +12982,52031,0,2,f +12982,54200,33,1,t +12982,54200,182,2,f +12982,54200,47,1,t +12982,54200,33,2,f +12982,54200,36,1,t +12982,54200,36,2,f +12982,54200,182,1,t +12982,54200,47,4,f +12982,55981,71,4,f +12982,58181,40,1,f +12982,59349,14,8,f +12982,59443,71,2,f +12982,5972stk01,9999,1,t +12982,60169,72,1,f +12982,60479,71,4,f +12982,61184,71,1,f +12982,6134,0,1,f +12982,61409,72,4,f +12982,6141,34,1,f +12982,6141,34,1,t +12982,6141,71,9,f +12982,6141,15,1,f +12982,6141,42,1,t +12982,6141,42,2,f +12982,6141,71,2,t +12982,6141,15,1,t +12982,61800,0,4,f +12982,63965,0,2,f +12982,64727,71,3,f +12982,6587,72,2,f +12982,6636,0,1,f +12982,6636,14,4,f +12982,85940,0,1,f +12982,85943,72,4,f +12982,85959pat0001,36,2,f +12986,2456,4,1,f +12986,2479,7,1,f +12986,3001,1,1,f +12986,3009,14,2,f +12986,3034,4,1,f +12986,3039,47,1,f +12986,3297px1,1,2,f +12986,3298,1,1,f +12986,3660,4,1,f +12986,3666,7,2,f +12986,3747b,4,2,f +12986,3795,4,1,f +12986,4729,4,1,f +12988,32034,0,1,f +12988,32062,0,4,f +12988,32073,0,1,f +12988,32172,2,1,f +12988,32173,27,1,f +12988,32174,0,4,f +12988,32269,7,1,f +12988,32270,7,2,f +12988,32474,0,1,f +12988,32475,2,2,f +12988,32476,27,1,f +12988,32482,27,2,f +12988,32489,2,1,f +12988,32553,7,1,f +12988,32554,42,1,f +12988,32559,2,1,f +12988,32565,2,1,f +12988,3706,0,1,f +12988,3713,7,2,f +12988,3749,7,3,f +12988,4519,0,2,f +12988,6538b,0,2,f +12989,2456,1,6,f +12989,3001,1,3,f +12989,3002,1,8,f +12989,3003,1,8,f +12989,3004,0,2,f +12989,3004,1,19,f +12989,3005,1,4,f +12989,3005,0,6,f +12989,3006,1,1,f +12989,3007,1,4,f +12989,3009,1,3,f +12989,3010,0,1,f +12989,3010,1,4,f +12989,3020,1,4,f +12989,3021,1,6,f +12989,3022,1,14,f +12989,3023,0,7,f +12989,3023,1,27,f +12989,3024,1,18,f +12989,3024,0,12,f +12989,3622,0,2,f +12989,3623,0,4,f +12989,3666,0,2,f +12989,3666,1,1,f +12989,3710,1,1,f +12989,3795,1,1,f +12991,2341,71,2,f +12991,2436,71,2,f +12991,2449,4,1,f +12991,2540,72,2,f +12991,2555,72,1,f +12991,2780,0,1,t +12991,2780,0,2,f +12991,30031,71,1,f +12991,3004,4,1,f +12991,30192,72,2,f +12991,3021,71,2,f +12991,3023,4,2,f +12991,3024,15,1,f +12991,30360,72,1,f +12991,3040b,4,1,f +12991,3062b,27,2,f +12991,32064b,72,2,f +12991,3626bpr0640,14,1,f +12991,3666,71,1,f +12991,3705,0,1,f +12991,3710,71,1,f +12991,4081b,72,2,f +12991,41531,4,2,f +12991,44676,72,2,f +12991,46667,0,2,f +12991,59275,27,2,f +12991,6005,4,1,f +12991,60483,71,2,f +12991,6091,4,1,f +12991,61184,71,2,f +12991,61409,4,2,f +12991,6141,27,1,t +12991,6141,27,2,f +12991,61678,4,3,f +12991,63864,4,1,f +12991,8057stk01,9999,1,t +12991,85940,0,2,f +12991,87748pr0004,33,1,f +12991,87754,72,1,f +12991,87756pr01,71,1,f +12991,89159,35,1,f +12991,92290,297,1,f +12991,970c00pr0144,71,1,f +12991,970c00pr0145,72,1,f +12991,973pr1556c01,71,1,f +12991,973pr1557c01,72,1,f +12992,2335,320,4,f +12992,2343,297,1,f +12992,2431,71,1,f +12992,2431,308,4,f +12992,2431,72,4,f +12992,2449,320,10,f +12992,2460,72,3,f +12992,2489,308,1,f +12992,2526,1,1,t +12992,2526,297,1,t +12992,2526,1,2,f +12992,2526,297,1,f +12992,2527,4,3,f +12992,2528pr0001,0,1,f +12992,2530,72,2,t +12992,2530,72,3,f +12992,2540,0,7,f +12992,2542,15,2,f +12992,2542,15,1,t +12992,2543,288,1,f +12992,2543,1,1,f +12992,2544,0,2,f +12992,2545pr0001,0,1,f +12992,2546pat0001,4,1,f +12992,2550c01,70,1,f +12992,2551,272,1,f +12992,2560,70,2,f +12992,2561,70,3,f +12992,2562,70,2,f +12992,2566,0,3,f +12992,2654,1,8,f +12992,2921,70,12,f +12992,3001,15,2,f +12992,3002,19,1,f +12992,3004,288,1,f +12992,3004,4,1,f +12992,30046,297,2,f +12992,30056,0,4,f +12992,3009,28,6,f +12992,3009,0,4,f +12992,3009,320,2,f +12992,30099,0,2,f +12992,30136,19,1,f +12992,30136,70,12,f +12992,30137,70,14,f +12992,30150,70,2,f +12992,30153,47,1,f +12992,30153,36,1,f +12992,30153,34,1,f +12992,3020,19,1,f +12992,3020,70,8,f +12992,3021,19,4,f +12992,3022,0,4,f +12992,3023,19,7,f +12992,3023,70,1,f +12992,30237a,70,2,f +12992,3028,72,1,f +12992,3030,0,1,f +12992,3033,70,2,f +12992,3037,0,1,f +12992,3040b,0,4,f +12992,3040b,70,3,f +12992,30552,72,1,f +12992,30553,72,1,f +12992,3062b,46,3,f +12992,3062b,0,9,f +12992,3062b,320,10,f +12992,3068bpr0139a,19,1,f +12992,3069b,0,2,f +12992,3069b,4,7,f +12992,32039,71,6,f +12992,32054,4,1,f +12992,32062,4,1,f +12992,32530,72,3,f +12992,3298,72,2,f +12992,3307,19,2,f +12992,3308,0,1,f +12992,33085,14,1,f +12992,3455,320,6,f +12992,3456,0,1,f +12992,3581,0,2,f +12992,3622,70,6,f +12992,3623,19,2,f +12992,3623,0,3,f +12992,3626bpr0325,14,1,f +12992,3626bpr0348,14,1,f +12992,3626bpr0410,14,1,f +12992,3626bpr0495,14,2,f +12992,3626bpr0499,14,1,f +12992,3626bpr0564,14,1,f +12992,3626bpr0566,14,1,f +12992,3633,72,8,f +12992,3633,297,4,f +12992,3660,70,4,f +12992,3660,0,3,f +12992,3665,0,2,f +12992,3666,0,6,f +12992,3666,320,1,f +12992,3678bpr0003,15,1,f +12992,3701,70,8,f +12992,3710,0,2,f +12992,3747b,70,1,f +12992,3747b,0,2,f +12992,3794b,297,10,f +12992,3795,70,4,f +12992,3839b,72,2,f +12992,3839b,0,1,f +12992,3849,0,4,f +12992,3937,72,4,f +12992,3938,4,2,f +12992,3941,70,1,f +12992,3957a,0,1,f +12992,3957a,71,3,f +12992,40234,71,1,f +12992,40241,70,2,f +12992,4032a,19,1,f +12992,4032a,70,1,f +12992,4070,320,8,f +12992,4070,19,2,f +12992,4085c,72,1,f +12992,41767,320,1,f +12992,41768,320,1,f +12992,41769,0,1,f +12992,41770,0,1,f +12992,4274,71,1,t +12992,4274,71,2,f +12992,43093,1,6,f +12992,44728,14,1,f +12992,4495b,297,2,f +12992,4510,15,1,f +12992,4589,70,13,f +12992,4589,19,6,f +12992,4599a,71,1,f +12992,4600,0,4,f +12992,4623,0,2,f +12992,4624,71,8,f +12992,4735,0,2,f +12992,4738a,297,1,f +12992,47397,0,2,f +12992,47398,0,2,f +12992,4739a,297,1,f +12992,4740,0,3,f +12992,47404,70,1,f +12992,47457,297,4,f +12992,4790,70,1,f +12992,47994,0,4,f +12992,47996,0,4,f +12992,48002,0,3,f +12992,4864b,0,9,f +12992,48729a,72,3,t +12992,48729a,0,1,t +12992,48729a,72,5,f +12992,48729a,0,3,f +12992,49668,288,2,f +12992,50950,320,2,f +12992,51345pr0001,288,1,f +12992,54200,0,1,t +12992,54200,0,2,f +12992,57503,334,1,f +12992,57504,334,1,f +12992,57505,334,1,f +12992,57506,334,1,f +12992,59229,72,2,f +12992,59363,0,1,f +12992,59363,70,1,f +12992,60169,72,2,f +12992,60470a,71,2,f +12992,60474,0,1,f +12992,60476,0,8,f +12992,60479,308,2,f +12992,60481,0,2,f +12992,60594,0,6,f +12992,60607,297,12,f +12992,6112,0,1,f +12992,6134,4,2,f +12992,6141,297,29,f +12992,6141,297,4,t +12992,61485,0,1,f +12992,62113,72,2,f +12992,6232,15,4,f +12992,62606pat0001,71,1,f +12992,6266,0,8,f +12992,64644,297,3,f +12992,64645,70,2,f +12992,64647,4,1,f +12992,64647,4,1,t +12992,64651,70,2,f +12992,6558,1,4,f +12992,6587,72,1,f +12992,6636,0,2,f +12992,6636,19,2,f +12992,71155,0,1,f +12992,75347,0,4,f +12992,75c22,0,7,f +12992,84622,0,1,f +12992,84943,148,3,f +12992,970c00,288,1,f +12992,970c00,0,1,f +12992,970c00,15,2,f +12992,970c00,19,1,f +12992,970d09,0,1,f +12992,973pr1438c01,15,1,f +12992,973pr1439c01,70,1,f +12992,973pr1440c01,1,1,f +12992,973pr1441c01,4,2,f +12992,973pr1442c01,0,1,f +12992,973pr1443c01,15,1,f +12992,973pr1444c01,14,1,f +12992,sailbb42,15,2,f +12992,sailbb43,15,2,f +12992,sailbb44,15,1,f +12993,2723,0,3,f +12993,2780,0,6,f +12993,32009,0,2,f +12993,32017,0,3,f +12993,32054,0,4,f +12993,32062,0,7,f +12993,32123b,7,5,f +12993,32138,0,4,f +12993,32165,0,1,f +12993,32177,0,4,f +12993,32187,25,2,f +12993,32291,8,4,f +12993,32305,8,3,f +12993,32306,25,1,f +12993,32307,0,2,f +12993,32310pb04,8,3,f +12993,32311,25,2,f +12993,32439a,0,3,f +12993,32527,0,3,f +12993,32528,0,3,f +12993,3648b,25,1,f +12993,3705,0,5,f +12993,3706,0,5,f +12993,3707,0,3,f +12993,3713,7,7,f +12993,3749,7,7,f +12993,4519,0,4,f +12993,4716,0,3,f +12993,6536,8,2,f +12993,6538b,25,3,f +12993,6538b,0,3,f +12993,6594,0,3,f +12993,6595,8,3,f +12993,6632,8,6,f +12993,rb00168,0,1,f +12993,rb00169,0,2,f +12993,x209pb06,0,1,f +12996,1998stk01,9999,1,t +12996,2340,15,2,f +12996,2340,1,2,f +12996,2357,15,6,f +12996,2412b,1,2,f +12996,2412b,15,2,f +12996,2419,15,1,f +12996,2420,15,2,f +12996,2431,15,4,f +12996,2445,1,2,f +12996,2449,15,6,f +12996,2462,15,4,f +12996,298c04,15,2,f +12996,3001,15,4,f +12996,3002,15,2,f +12996,3003,15,10,f +12996,3004,15,21,f +12996,3004,0,1,f +12996,3004,4,1,f +12996,3005,15,4,f +12996,3008,15,12,f +12996,3009,15,6,f +12996,3009p23,15,31,f +12996,3010,15,12,f +12996,3020,14,1,f +12996,3020,4,1,f +12996,3020,1,3,f +12996,3021,1,2,f +12996,3022,1,2,f +12996,3022,0,1,f +12996,3022,14,1,f +12996,3022,15,3,f +12996,3022,4,1,f +12996,3023,1,4,f +12996,3023,15,2,f +12996,3024,0,2,f +12996,3031,15,1,f +12996,3036,2,4,f +12996,3036,0,6,f +12996,3039,15,4,f +12996,3039,47,2,f +12996,3040b,15,6,f +12996,3045,15,4,f +12996,3063b,15,4,f +12996,3069b,4,6,f +12996,3070b,15,2,f +12996,3070b,36,1,f +12996,3070b,34,1,f +12996,3298,15,1,f +12996,3460,15,2,f +12996,3622,15,12,f +12996,3641,0,8,f +12996,3660,15,8,f +12996,3660,1,2,f +12996,3666,15,7,f +12996,3678a,15,6,f +12996,3678a,1,2,f +12996,3710,15,8,f +12996,3710,1,2,f +12996,3794a,15,1,f +12996,3794a,7,1,f +12996,3795,1,2,f +12996,3830,15,6,f +12996,3831,15,6,f +12996,3832,15,2,f +12996,3933,0,1,f +12996,3933,15,1,f +12996,3934,0,1,f +12996,3934,15,1,f +12996,3941,15,2,f +12996,4150,7,3,f +12996,4162,0,1,f +12996,4282,1,10,f +12996,4289,15,1,f +12996,4599a,15,1,f +12996,4600,0,4,f +12996,4623,1,2,f +12996,4624,14,4,f +12996,4624,7,4,f +12996,4864a,1,4,f +12996,4865a,41,29,f +12996,4865a,15,18,f +12996,6141,15,1,f +12996,6141,46,2,f +12996,6141,0,4,f +12996,73983,1,2,f +12998,610p01,2,2,f +12998,611p01,2,2,f +12998,612p01,2,2,f +12998,613p01,2,4,f +12999,880002.2stk01,9999,1,t +13000,10509pr0001,70,1,f +13000,15332,15,1,f +13000,15623pr0001,27,1,f +13000,15624,27,2,f +13000,15627pr0001,19,2,f +13000,16577,19,2,f +13000,2423,2,2,f +13000,2431,2,3,f +13000,2454a,19,2,f +13000,3001,27,6,f +13000,3001,19,6,f +13000,3001,29,6,f +13000,3001,15,6,f +13000,3001,14,6,f +13000,3002,15,2,f +13000,3002,71,1,f +13000,3002,27,4,f +13000,3002,29,5,f +13000,3002,14,1,f +13000,3003,14,10,f +13000,3003,70,4,f +13000,3003,5,6,f +13000,3003,27,13,f +13000,3003,29,9,f +13000,3003,2,7,f +13000,3003,15,8,f +13000,3003,322,1,f +13000,3003,19,12,f +13000,3004,29,8,f +13000,3004,27,7,f +13000,3004,19,16,f +13000,3004,191,6,f +13000,3004,14,4,f +13000,3004,70,3,f +13000,3004,15,4,f +13000,3004,2,4,f +13000,3007,19,2,f +13000,3008,19,1,f +13000,3010,5,3,f +13000,30137,29,3,f +13000,30137,84,4,f +13000,3020,71,1,f +13000,3020,2,2,f +13000,30236,71,1,f +13000,30237a,15,4,f +13000,3040b,322,4,f +13000,3068b,71,9,f +13000,3069b,26,3,f +13000,3069b,15,1,f +13000,3069b,70,1,f +13000,3297,26,1,f +13000,3298,26,4,f +13000,33172,25,2,f +13000,33183,10,2,f +13000,33291,10,2,f +13000,33291,191,8,f +13000,33291,5,4,f +13000,33291,4,7,f +13000,3460,70,2,f +13000,3626cpr0893,14,1,f +13000,3666,15,1,f +13000,3710,71,1,f +13000,3741,2,2,f +13000,3794b,19,1,f +13000,3795,29,1,f +13000,3795,2,1,f +13000,3836,70,1,f +13000,3837,72,1,f +13000,3852b,322,1,f +13000,3899,14,2,f +13000,3957a,15,2,f +13000,4032a,70,4,f +13000,4079b,4,1,f +13000,44728,71,1,f +13000,4491b,72,1,f +13000,4495b,5,2,f +13000,4523,5,1,f +13000,4599b,4,2,f +13000,6020,70,1,f +13000,60599,15,1,f +13000,60608,14,4,f +13000,60623,14,1,f +13000,6079,15,2,f +13000,87079pr0056,15,1,f +13000,88072,71,1,f +13000,92254pr0002,320,1,f +13000,92338,72,1,f +13000,92950,19,1,f +13000,95343,4,1,f +13000,95344,28,1,f +13000,96874,25,1,t +13000,970c00,15,1,f +13000,973pr2581c01,4,1,f +13000,98283,84,6,f +13000,98560,26,2,f +13002,12825,72,1,f +13002,2343,71,3,f +13002,2357,19,4,f +13002,2420,72,1,f +13002,2420,1,2,f +13002,2431,4,1,f +13002,2431,73,2,f +13002,2431pr0035,378,1,f +13002,2431pr0036,70,1,f +13002,2431pr0040,70,1,f +13002,2436,323,4,f +13002,2436,71,2,f +13002,2436,378,2,f +13002,2436,0,2,f +13002,2436,15,2,f +13002,2444,4,2,f +13002,2445,72,2,f +13002,2453a,19,2,f +13002,2498,1,2,f +13002,2540,70,2,f +13002,2780,0,2,t +13002,2780,0,3,f +13002,2825,71,2,f +13002,2921,323,2,f +13002,3001,71,2,f +13002,3001pr0002,70,2,f +13002,3001pr0119,323,2,f +13002,30027b,70,2,f +13002,30028,0,2,f +13002,3003,15,2,f +13002,3003,72,4,f +13002,3004,28,4,f +13002,3004,73,2,f +13002,3004,19,4,f +13002,3004,71,2,f +13002,3004pr0006,378,2,f +13002,3005,73,2,f +13002,3005,323,2,f +13002,3009,71,1,f +13002,3009pr0001,71,2,f +13002,3009pr0002,323,1,f +13002,3009pr0003,323,1,f +13002,3010,19,2,f +13002,30137,19,9,f +13002,3020,72,8,f +13002,3020,71,1,f +13002,3020,0,3,f +13002,3020,378,1,f +13002,3021,14,2,f +13002,3021,72,2,f +13002,3022,25,2,f +13002,3022,0,3,f +13002,3022,71,7,f +13002,3022,1,4,f +13002,3023,70,3,f +13002,3023,73,6,f +13002,3023,1,5,f +13002,3023,4,2,f +13002,3023,14,3,f +13002,3024,70,2,f +13002,3024,71,8,f +13002,3031,73,1,f +13002,3031,71,1,f +13002,3034,4,3,f +13002,3034,72,5,f +13002,3034,70,4,f +13002,30340,15,2,f +13002,30367b,72,2,f +13002,30377,0,1,t +13002,30377,0,2,f +13002,30395,72,1,f +13002,30414,323,2,f +13002,3062b,4,2,f +13002,3062b,1,4,f +13002,3062b,14,1,f +13002,3068b,14,4,f +13002,3068bpr0192,378,1,f +13002,3069b,323,3,f +13002,3069b,0,1,f +13002,3069b,70,2,f +13002,3069bpr0116,378,1,f +13002,3070b,0,4,f +13002,3070b,0,1,t +13002,3070b,15,1,t +13002,3070b,15,6,f +13002,3139,0,6,f +13002,32001,0,2,f +13002,32013,4,1,f +13002,32028,378,2,f +13002,32028,28,2,f +13002,32034,71,1,f +13002,32123b,14,7,f +13002,32123b,14,1,t +13002,32250,72,2,f +13002,3245c,73,2,f +13002,3245c,71,2,f +13002,32474,0,4,f +13002,32530,0,1,f +13002,3460,4,4,f +13002,3622,70,2,f +13002,3623,70,4,f +13002,3623,72,4,f +13002,3623,4,2,f +13002,3666,70,2,f +13002,3678bpr0012a,28,2,f +13002,3700,70,5,f +13002,3706,0,2,f +13002,3710,72,10,f +13002,3710,1,4,f +13002,3710,71,2,f +13002,3713,4,1,t +13002,3713,4,2,f +13002,3749,19,2,f +13002,3794b,0,4,f +13002,3794b,323,1,f +13002,3795,323,1,f +13002,3795,1,1,f +13002,3795,72,2,f +13002,3899,14,1,f +13002,3900,71,1,f +13002,3942c,25,2,f +13002,3961,72,1,f +13002,4032a,70,4,f +13002,4070,71,2,f +13002,4081b,4,2,f +13002,4083,0,1,f +13002,4085c,0,1,f +13002,4150,72,1,f +13002,4150,4,1,f +13002,41769,323,1,f +13002,41770,323,1,f +13002,4282,72,1,f +13002,4284,28,1,f +13002,43888,71,4,f +13002,4445,71,4,f +13002,4476b,19,4,f +13002,4477,0,2,f +13002,4477,4,1,f +13002,4515,71,4,f +13002,4519,71,3,f +13002,4528,0,1,f +13002,4589,71,4,f +13002,4599b,14,3,f +13002,4600,71,4,f +13002,4624,71,4,f +13002,4624,15,4,f +13002,4624,70,2,f +13002,4740,4,4,f +13002,4740,72,4,f +13002,48092,71,4,f +13002,48336,4,1,f +13002,4865a,70,2,f +13002,50944,71,4,f +13002,50951,0,12,f +13002,57515,72,1,f +13002,58176,36,2,f +13002,59349,19,2,f +13002,6003,72,8,f +13002,6019,4,2,f +13002,60212,378,1,f +13002,60212,323,2,f +13002,60212,15,1,f +13002,60212,73,1,f +13002,60470a,0,1,f +13002,6141,182,1,t +13002,6141,47,5,f +13002,6141,47,3,t +13002,6141,36,2,t +13002,6141,36,6,f +13002,6141,182,1,f +13002,6157,0,8,f +13002,6179,28,1,f +13002,63864pr0001,226,2,f +13002,64799,14,4,f +13002,6541,70,2,f +13002,6558,1,1,f +13002,6629,1,2,f +13002,6636,4,2,f +13002,73983,4,1,f +13002,85543,15,1,f +13002,85984,323,6,f +13002,86208,72,1,f +13002,87079,71,2,f +13002,87079pr0017,4,1,f +13002,87079pr0018,4,1,f +13002,87083,72,2,f +13002,87087,71,2,f +13002,87087,19,2,f +13002,87087,323,2,f +13002,87414,0,4,f +13002,87618,71,2,f +13002,92280,378,2,f +13002,92950,19,6,f +13002,93273,71,4,f +13002,93273pr0001,323,1,f +13002,93273pr0006,323,1,f +13002,93274,323,2,f +13002,93274,378,1,f +13002,93587pr0002,73,1,f +13002,93587pr0003,73,1,f +13002,93587pr0004,4,1,f +13002,93590,4,1,f +13002,93590,70,1,f +13002,93591pr0002,4,1,f +13002,93591pr0003,73,1,f +13002,93591pr0004,323,1,f +13002,93593,4,4,f +13002,93594,179,4,f +13002,93598pr0001,70,1,f +13002,93604,323,4,f +13002,93604pr0001,323,1,f +13002,93606,323,1,f +13003,11609,191,1,f +13003,11618,26,1,f +13003,11618,31,1,f +13003,15469,322,1,f +13003,15470,29,1,f +13003,15712,0,1,f +13003,3176,4,2,f +13003,33291,31,1,f +13003,33291,26,1,f +13003,33291,5,1,f +13003,33291,2,1,f +13003,4032a,85,1,f +13003,4081b,26,2,f +13003,4081b,15,1,f +13003,4081b,27,2,f +13003,87580,85,1,f +13003,87580,322,1,f +13003,93160,15,1,f +13003,98138pr0017,29,1,f +13004,2496,0,1,t +13004,2496,0,2,f +13004,42511,1,1,f +13004,46303,15,1,f +13004,46303,15,1,t +13005,765c01,7,12,f +13005,x466,7,1,f +13007,2431,0,2,f +13007,3003,15,1,f +13007,4032a,19,2,f +13007,6141,4,1,t +13007,6141,4,8,f +13008,2420,2,2,f +13008,3003,85,1,f +13008,3004,0,3,f +13008,3004,2,1,f +13008,3022,2,1,f +13008,3031,70,1,f +13008,3039,0,2,f +13008,3685,0,2,f +13008,3710,2,1,f +13008,3942c,0,1,f +13008,3942c,14,1,f +13008,3960,0,1,f +13008,4460b,0,2,f +13008,63965,70,1,f +13008,87580,0,2,f +13009,10199,10,1,f +13009,11923,15,1,f +13009,11924,15,1,f +13009,12146,15,1,f +13009,12602,1,5,f +13009,13853,308,1,f +13009,13856,15,1,f +13009,15847,41,2,f +13009,16205,1,1,f +13009,16434,25,1,f +13009,2206,15,1,f +13009,2301,4,4,f +13009,2302,14,4,f +13009,3011,71,5,f +13009,3011,191,3,f +13009,3011,28,2,f +13009,3011,1,2,f +13009,3011,15,1,f +13009,31061,484,2,f +13009,31170,10,1,f +13009,31171,0,2,f +13009,31445,179,1,f +13009,3437,72,2,f +13009,3437,2,3,f +13009,3437,484,3,f +13009,3437,14,2,f +13009,3437,4,1,f +13009,3437,41,2,f +13009,3437,0,1,f +13009,3437,15,1,f +13009,3437,19,4,f +13009,4066,72,1,f +13009,4066,484,1,f +13009,4066,15,1,f +13009,4066,191,7,f +13009,40666,10,1,f +13009,40666,191,1,f +13009,4196,10,1,f +13009,4196,19,1,f +13009,4199,72,1,f +13009,42234,14,2,f +13009,44524,19,2,f +13009,44524,10,3,f +13009,47448,10,1,f +13009,47451,72,1,f +13009,47511pr0002c02,1,1,f +13009,51262,72,1,f +13009,51704,4,2,f +13009,54246,15,1,f +13009,54530,14,1,f +13009,54651,0,2,f +13009,54972,2,2,f +13009,57052,0,1,f +13009,58086,70,1,f +13009,60364pr0002,484,1,f +13009,61649,4,1,f +13009,63710pr0006,2,1,f +13009,63871,14,2,f +13009,6410,27,1,f +13009,64402,14,1,f +13009,6474,1,1,f +13009,6474,4,1,f +13009,6510,10,1,f +13009,6510,4,1,f +13009,6510,14,2,f +13009,75121,4,1,f +13009,75121pr0006,2,1,f +13009,76371,14,7,f +13009,84696,70,1,f +13009,87084,14,1,f +13009,87084,71,1,f +13009,87084,10,2,f +13009,87322,4,2,f +13009,88691,191,1,f +13009,88692,191,1,f +13009,89193,191,1,f +13009,89873,71,1,f +13009,91348,2,3,f +13009,93150,1,1,f +13009,98190,73,10,f +13009,99508,15,1,f +13009,99942,14,1,f +13010,2780,0,1,t +13010,2780,0,8,f +13010,32062,4,2,f +13010,32523,0,2,f +13010,3713,71,1,f +13010,3713,71,1,t +13010,48729b,72,1,t +13010,48729b,72,2,f +13010,48989,71,1,f +13010,53551,148,3,f +13010,54821,1,1,f +13010,64262,143,1,f +13010,6558,1,2,f +13010,6575,0,1,f +13010,74261,72,6,f +13010,87083,72,1,f +13010,87802,15,1,f +13010,90607,0,2,f +13010,90608,0,6,f +13010,90609,72,4,f +13010,90611,0,2,f +13010,90612,0,1,f +13010,90617,0,2,f +13010,90623,0,1,f +13010,90625,72,1,f +13010,90639,15,5,f +13010,90639,1,2,f +13010,90641,15,4,f +13010,90652,15,3,f +13010,90652,179,1,f +13010,93571,0,2,f +13010,93575,15,2,f +13010,98562,148,2,f +13010,98563,148,1,f +13010,98564,148,1,f +13010,98565,72,2,f +13010,98568p03,179,2,f +13010,98570pat01,15,1,f +13010,98577,72,2,f +13010,98589,179,5,f +13010,98597,179,2,f +13010,98604,15,1,f +13011,15851pat01,0,1,f +13011,3069bpr0008,0,1,f +13011,3626cpr1298,14,1,f +13011,61482,71,1,f +13011,88646,0,1,f +13011,970c00,0,1,f +13011,973pr2544c01,0,1,f +13012,2412b,36,1,f +13012,2412b,72,4,f +13012,2431,71,4,f +13012,2436,71,2,f +13012,2449,71,2,f +13012,2456,71,1,f +13012,2540,71,2,f +13012,2555,71,2,f +13012,2877,72,2,f +13012,2877,71,4,f +13012,3001,72,5,f +13012,3003,71,1,f +13012,3004,71,2,f +13012,30041,72,1,f +13012,30042,72,1,f +13012,3005,71,2,f +13012,3009,71,5,f +13012,3010,71,2,f +13012,30162,72,1,f +13012,3020,71,6,f +13012,3021,72,3,f +13012,3022,72,7,f +13012,3023,71,5,f +13012,3023,72,7,f +13012,30237a,71,1,f +13012,30258,72,3,f +13012,3032,71,4,f +13012,3034,71,4,f +13012,30363,72,2,f +13012,3037,72,2,f +13012,30374,71,1,f +13012,30383,0,4,f +13012,30387,71,4,f +13012,30414,72,4,f +13012,3062b,71,4,f +13012,32028,71,4,f +13012,32269,71,1,f +13012,3403c01,0,1,f +13012,3460,71,2,f +13012,3622,71,2,f +13012,3626bpr0490,78,1,f +13012,3666,71,5,f +13012,3684,71,2,f +13012,3700,72,6,f +13012,3707,0,1,f +13012,3794a,71,2,f +13012,3795,71,6,f +13012,3937,72,1,f +13012,3938,0,1,f +13012,3960,72,2,f +13012,4032a,72,2,f +13012,4070,72,2,f +13012,4079,0,1,f +13012,4150pr0022,71,2,f +13012,4274,1,1,t +13012,4274,1,2,f +13012,43093,1,2,f +13012,43708,71,2,f +13012,43712,72,2,f +13012,43898,72,3,f +13012,44301a,72,6,f +13012,44302a,71,12,f +13012,44567a,71,2,f +13012,4460b,71,4,f +13012,44728,72,5,f +13012,4519,71,1,f +13012,4697b,71,3,f +13012,4697b,71,1,t +13012,4740,71,4,f +13012,4740,72,2,f +13012,47457,72,4,f +13012,4864b,71,1,f +13012,4865a,71,4,f +13012,50947,72,4,f +13012,54200,72,2,f +13012,57900,72,1,f +13012,58247,0,1,f +13012,6141,71,1,t +13012,6141,71,12,f +13012,6222,71,1,f +13012,6231,71,4,f +13012,64567,71,2,f +13012,6585,0,1,f +13012,6589,71,2,f +13012,6636,71,3,f +13012,970c00,71,1,f +13012,973pr1306c01,71,1,f +13013,30198,8,1,f +13013,30202,8,1,f +13013,30385,383,1,f +13013,3039pb001,14,1,f +13013,3039pc0,8,1,f +13013,3068bpx14,0,1,f +13013,3069bpa2,8,1,f +13013,3069bpap,14,1,f +13013,4221,0,2,f +13013,57467,383,2,f +13013,59275,0,2,f +13013,59275,7,2,f +13013,6090,42,1,f +13013,71594,34,1,f +13013,71966,61,1,f +13014,2346,0,4,f +13014,2357,4,2,f +13014,2357,14,2,f +13014,2357,1,2,f +13014,2357,15,2,f +13014,2412b,7,2,f +13014,2432,7,2,f +13014,2434,7,1,f +13014,2435,2,1,f +13014,2456,1,1,f +13014,2456,15,1,f +13014,2456,4,2,f +13014,2456,14,1,f +13014,2460,7,2,f +13014,2479,1,1,f +13014,2569,4,2,f +13014,2625,1,2,f +13014,2746,1,1,f +13014,30000,8,4,f +13014,3001,15,5,f +13014,3001,1,5,f +13014,3001,0,4,f +13014,3001,4,5,f +13014,3001,14,4,f +13014,3002,14,4,f +13014,3002,1,4,f +13014,3002,0,2,f +13014,3002,15,4,f +13014,3002,4,4,f +13014,3003,14,6,f +13014,3003,0,4,f +13014,3003,1,6,f +13014,3003,4,6,f +13014,3003,15,6,f +13014,3004,14,26,f +13014,3004,1,34,f +13014,3004,47,4,f +13014,3004,4,32,f +13014,3004,0,16,f +13014,3004,15,30,f +13014,3005,4,24,f +13014,3005,0,12,f +13014,3005,1,24,f +13014,3005,14,20,f +13014,3005,15,22,f +13014,3005pe1,14,2,f +13014,3008,14,2,f +13014,3008,4,2,f +13014,3008,15,2,f +13014,3008,1,2,f +13014,3009,15,4,f +13014,3009,1,4,f +13014,3009,4,4,f +13014,3009,0,2,f +13014,3009,14,2,f +13014,3010,1,16,f +13014,3010,4,16,f +13014,3010,0,8,f +13014,3010,15,14,f +13014,3010,14,16,f +13014,3010p01,14,1,f +13014,3010pb005,15,2,f +13014,3020,4,2,f +13014,3020,1,2,f +13014,3021,1,2,f +13014,3022,4,2,f +13014,3022,1,2,f +13014,3023,1,4,f +13014,3023,4,2,f +13014,3030,1,1,f +13014,3031,4,1,f +13014,3032,1,1,f +13014,3033,1,1,f +13014,3034,4,4,f +13014,3034,1,2,f +13014,3035,4,1,f +13014,3039,1,4,f +13014,3039,47,2,f +13014,3040b,1,4,f +13014,3062b,15,8,f +13014,3081cc01,14,2,f +13014,3149c01,1,2,f +13014,3297,1,6,f +13014,3297p02,1,2,f +13014,3298,1,4,f +13014,3298p18,1,2,f +13014,3299,1,3,f +13014,3300,1,2,f +13014,3460,1,4,f +13014,3471,2,1,f +13014,3483,0,4,f +13014,3622,15,8,f +13014,3622,0,4,f +13014,3622,14,10,f +13014,3622,1,10,f +13014,3622,4,10,f +13014,3626bpr0001,14,2,f +13014,3633,15,6,f +13014,3660,1,2,f +13014,3665,1,2,f +13014,3666,4,2,f +13014,3679,7,2,f +13014,3680,14,2,f +13014,3710,4,2,f +13014,3710,1,4,f +13014,3730,4,1,f +13014,3731,4,1,f +13014,3741,2,2,f +13014,3742,14,3,f +13014,3742,14,1,t +13014,3742,4,3,f +13014,3742,4,1,t +13014,3747b,1,2,f +13014,3794a,14,2,f +13014,3795,1,2,f +13014,3823,47,1,f +13014,3829c01,14,1,f +13014,3853,1,4,f +13014,3854,15,8,f +13014,3856,2,8,f +13014,3857,2,3,f +13014,3861b,1,2,f +13014,3901,6,1,f +13014,3941,14,4,f +13014,3957a,14,1,f +13014,3962b,0,1,f +13014,4070,15,4,f +13014,4079,14,2,f +13014,4286,1,4,f +13014,4287,1,2,f +13014,4476b,15,2,f +13014,4485,1,1,f +13014,4495b,4,1,f +13014,6007,8,1,f +13014,6093,0,1,f +13014,6111,4,2,f +13014,6140,14,2,f +13014,6141,46,2,f +13014,6141,36,2,f +13014,6183,14,2,f +13014,6215,14,6,f +13014,6248,7,8,f +13014,6249,8,2,f +13014,6564,1,2,f +13014,6565,1,2,f +13014,6853,1,6,f +13014,970c00,7,1,f +13014,970c00,4,1,f +13014,973c01,1,1,f +13014,973p01c02,15,1,f +13017,3641,0,8,f +13017,4084,0,4,f +13017,4600,7,2,f +13017,4600,0,2,f +13017,4624,14,4,f +13017,4624,15,4,f +13017,4624,7,4,f +13019,3069b,15,8,f +13019,3069bpf1,15,16,f +13019,3069bpf4,15,8,f +13019,3149c01,15,1,f +13019,3176,15,1,f +13019,3832,15,1,f +13019,4151c,15,1,f +13019,bb165pb01,15,4,f +13019,bb165pb02,15,4,f +13019,bb165pb03,15,4,f +13021,2780,0,1,t +13021,2780,0,2,f +13021,32062,0,1,t +13021,32062,0,2,f +13021,32174,8,2,f +13021,32174,15,2,f +13021,32270,7,1,f +13021,32570,8,1,f +13021,32576,8,2,f +13021,32579,7,1,f +13021,3713,7,1,t +13021,3713,7,1,f +13021,3749,19,1,f +13021,3749,19,1,t +13021,41670,15,2,f +13021,43093,1,1,f +13021,43093,1,1,t +13021,44137,15,1,f +13021,44809,8,2,f +13021,44810,15,1,f +13021,44811,179,1,f +13021,44812,179,1,f +13021,4519,7,1,f +13022,10124,326,1,f +13022,10126,326,1,f +13022,10127,326,1,f +13022,10154,326,1,f +13022,10907,320,1,f +13022,10908pr0006,320,1,f +13022,11090,297,2,f +13022,11203,72,2,f +13022,11458,15,1,f +13022,11601,41,2,f +13022,15068,320,5,f +13022,15392,72,2,f +13022,15403,0,2,f +13022,15573,28,3,f +13022,15706,0,2,f +13022,17979,71,2,f +13022,18663,47,1,f +13022,18990pr0001,320,1,f +13022,19305,148,1,f +13022,19988,326,1,f +13022,2412b,297,3,f +13022,2419,0,1,f +13022,2420,0,1,f +13022,2540,72,2,f +13022,2540,0,2,f +13022,2654,41,2,f +13022,2654,0,3,f +13022,2817,0,2,f +13022,3003,72,2,f +13022,3004,320,1,f +13022,3020,70,2,f +13022,3020,0,2,f +13022,3021,71,2,f +13022,3022,320,4,f +13022,3023,0,8,f +13022,3023,41,2,f +13022,3023,320,5,f +13022,30374,0,2,f +13022,3039,72,3,f +13022,3040b,320,2,f +13022,30602,320,8,f +13022,3062b,41,10,f +13022,3062b,36,3,f +13022,3176,320,5,f +13022,32013,15,1,f +13022,32249,72,2,f +13022,3626cpr0961,78,1,f +13022,3626cpr1627,78,1,f +13022,3626cpr1658,148,1,f +13022,3660,320,2,f +13022,3673,71,1,f +13022,3678b,71,3,f +13022,3700,72,2,f +13022,3710,0,4,f +13022,3795,72,1,f +13022,3832,71,2,f +13022,3894,0,2,f +13022,3937,72,2,f +13022,43093,1,2,f +13022,44676,320,2,f +13022,44728,71,2,f +13022,4519,71,2,f +13022,4740,41,1,f +13022,47457,297,3,f +13022,48336,297,1,f +13022,53585,0,2,f +13022,54200,41,3,f +13022,57909b,72,4,f +13022,60470a,71,2,f +13022,60478,0,6,f +13022,6091,320,4,f +13022,6134,0,2,f +13022,6141,36,3,f +13022,6141,41,8,f +13022,6141,297,5,f +13022,63864,15,2,f +13022,63868,71,2,f +13022,6589,19,2,f +13022,85974,70,1,f +13022,85984,320,4,f +13022,87079,70,1,f +13022,87083,72,2,f +13022,87580,320,1,f +13022,90609,0,2,f +13022,90639,320,2,f +13022,91988,0,1,f +13022,92013,0,6,f +13022,92280,0,2,f +13022,93273,72,2,f +13022,93609,41,2,f +13022,970c00pr0843,320,1,f +13022,970c00pr0844,0,1,f +13022,970c00pr0845,148,1,f +13022,973pr2995c01,320,1,f +13022,973pr2996c01,320,1,f +13022,973pr2997c01,148,1,f +13022,98313,320,8,f +13022,99207,0,4,f +13022,99780,72,5,f +13022,99781,0,4,f +13022,99784,47,1,f +13023,2346,0,2,t +13023,2412b,7,1,f +13023,2420,4,4,f +13023,2444,7,2,f +13023,2445,15,2,f +13023,2711,7,2,f +13023,2715,15,2,f +13023,2716,47,2,f +13023,2717,1,2,f +13023,2730,4,4,f +13023,2730,7,2,f +13023,2744,7,2,f +13023,2780,0,48,f +13023,2790,7,1,f +13023,2791,7,1,f +13023,2792,0,1,f +13023,2819,7,2,f +13023,2825,0,4,f +13023,2905,7,2,f +13023,3004,4,2,f +13023,3004,0,4,f +13023,3005,4,6,f +13023,3010,7,1,f +13023,3021,4,4,f +13023,3021,1,1,f +13023,3022,4,6,f +13023,3022,7,1,f +13023,3022,0,1,f +13023,3023,0,6,f +13023,3023,7,2,f +13023,3023,4,12,f +13023,3024,33,2,f +13023,3032,0,1,f +13023,3033,4,2,f +13023,3039,33,2,f +13023,3040b,4,1,f +13023,3040b,7,2,f +13023,3065,33,2,f +13023,3068b,4,2,f +13023,3068b,7,3,f +13023,3069b,7,1,f +13023,3176,0,2,f +13023,3460,4,4,f +13023,3482,7,3,f +13023,3622,4,4,f +13023,3623,4,6,f +13023,3647,7,1,f +13023,3648a,7,1,f +13023,3651,7,4,f +13023,3660,4,2,f +13023,3665,15,4,f +13023,3665,4,2,f +13023,3665,7,2,f +13023,3666,4,2,f +13023,3666,15,2,f +13023,3673,7,2,f +13023,3676,15,2,f +13023,3700,4,8,f +13023,3700,7,2,f +13023,3701,15,2,f +13023,3701,7,2,f +13023,3701,4,4,f +13023,3702,4,4,f +13023,3702,7,2,f +13023,3703,7,4,f +13023,3703,4,2,f +13023,3704,0,3,f +13023,3705,0,7,f +13023,3706,0,5,f +13023,3707,0,4,f +13023,3708,0,3,f +13023,3709,0,2,f +13023,3709,7,1,f +13023,3709,1,2,f +13023,3710,0,1,f +13023,3710,4,2,f +13023,3713,7,17,f +13023,3737,0,6,f +13023,3749,7,10,f +13023,3795,7,1,f +13023,3795,0,1,f +13023,3894,7,4,f +13023,3894,4,3,f +13023,3895,7,2,f +13023,3895,4,8,f +13023,4019,7,1,f +13023,4032a,7,2,f +13023,4070,4,4,f +13023,4185,7,4,f +13023,424,0,4,f +13023,4261,7,2,f +13023,4265b,7,16,f +13023,4274,7,6,f +13023,4442,0,1,f +13023,4460a,4,4,f +13023,4477,15,1,f +13023,4477,4,4,f +13023,4519,0,6,f +13023,4589,14,2,f +13023,4716,0,1,f +13023,6182,1,1,f +13023,6536,7,20,f +13023,6538a,7,6,f +13023,6541,4,2,f +13023,6553,7,3,f +13023,6558,0,9,f +13023,6575,7,4,f +13023,6581,0,4,f +13023,6582,15,4,f +13023,6585,1,1,f +13023,6587,8,3,f +13023,6588,7,1,f +13023,6589,7,4,f +13023,73590c02b,14,2,f +13023,75535,0,2,f +13023,8280stk01,9999,1,t +13023,rb00166,8,1,f +13023,tech008,9999,1,f +13023,tech009,9999,1,f +13025,3940b,0,4,f +13025,3941,0,4,f +13025,3941,15,6,f +13025,3941,46,2,f +13025,3942c,0,1,f +13025,3942c,15,1,f +13025,3943b,0,1,f +13025,3943b,15,1,f +13025,4032a,0,2,f +13025,4032a,15,2,f +13025,4588,36,2,f +13025,4589,36,2,f +13025,4591,0,1,f +13025,4591,15,1,f +13027,11090,72,1,f +13027,11215,71,1,f +13027,11477,70,3,f +13027,11538pr0003,15,1,f +13027,15391,0,4,f +13027,15392,72,5,f +13027,15403,0,1,f +13027,2412b,70,4,f +13027,24217,72,2,f +13027,2432,70,1,f +13027,2436,71,4,f +13027,2654,47,3,f +13027,3004,0,1,f +13027,3020,70,2,f +13027,3021,0,2,f +13027,3022,72,1,f +13027,3023,71,1,f +13027,30259,70,2,f +13027,30377,0,2,f +13027,3069bpr0101,71,1,f +13027,3070bpr0164,28,1,t +13027,3070bpr0164,28,2,f +13027,32000,72,1,f +13027,3626cpr0937,78,1,f +13027,3626cpr1709,78,1,f +13027,3626cpr1860,73,1,f +13027,3710,72,1,f +13027,3747a,0,1,f +13027,3795,0,2,f +13027,3849,179,2,f +13027,41677,72,1,f +13027,41769,70,1,f +13027,41770,70,1,f +13027,43093,1,2,f +13027,4599b,0,3,f +13027,4600,71,1,f +13027,46304,15,1,f +13027,47456,70,1,f +13027,47545pr0002,288,1,f +13027,4871,72,2,f +13027,59443,72,2,f +13027,6141,36,10,f +13027,6141,41,4,f +13027,87079,70,2,f +13027,87555,28,1,f +13027,92692,0,1,f +13027,970c00pr1012,19,2,f +13027,970c00pr1013,28,2,f +13027,973pr3266c01,28,2,f +13027,973pr3267c01,19,2,f +13027,99207,71,2,f +13027,99781,0,1,f +13028,2412b,72,1,f +13028,2654,0,1,f +13028,2736,71,4,f +13028,2780,0,2,t +13028,2780,0,7,f +13028,2905,71,4,f +13028,2951,0,1,f +13028,30663,71,1,f +13028,32002,72,2,t +13028,32002,72,5,f +13028,32009,4,4,f +13028,32013,0,1,f +13028,32013,4,2,f +13028,32014,0,2,f +13028,32015,0,1,f +13028,32017,4,4,f +13028,32034,0,1,f +13028,32039,4,6,f +13028,32039,0,6,f +13028,32056,4,2,f +13028,32056,71,4,f +13028,32062,4,17,f +13028,32065,4,2,f +13028,32068,0,2,f +13028,32069,0,2,f +13028,32073,71,6,f +13028,32123b,71,2,t +13028,32123b,71,25,f +13028,32138,0,2,f +13028,32140,71,1,f +13028,32180,0,4,f +13028,32192,0,2,f +13028,32249,4,3,f +13028,32250,0,2,f +13028,32250,4,3,f +13028,32250,71,2,f +13028,32270,0,2,f +13028,32271,4,1,f +13028,32291,71,3,f +13028,32316,4,2,f +13028,32348,4,1,f +13028,32449,72,4,f +13028,32524,71,2,f +13028,32524,4,2,f +13028,32525,72,2,f +13028,32525,4,2,f +13028,3647,71,2,t +13028,3647,71,3,f +13028,3648b,71,2,f +13028,3705,0,11,f +13028,3706,0,4,f +13028,3707,0,2,f +13028,3708,0,1,f +13028,3713,71,28,f +13028,3713,71,2,t +13028,3737,0,1,f +13028,3749,19,4,f +13028,3941,46,1,f +13028,40490,4,2,f +13028,41239,4,1,f +13028,41669,4,4,f +13028,41677,71,2,f +13028,41677,0,12,f +13028,42003,0,4,f +13028,4274,71,10,f +13028,4274,71,2,t +13028,43093,1,5,f +13028,44294,71,2,f +13028,4519,71,12,f +13028,4716,0,3,f +13028,59426,72,3,f +13028,6536,4,6,f +13028,6536,71,8,f +13028,6538b,0,7,f +13028,6558,0,13,f +13028,6587,72,4,f +13028,6595,15,4,f +13028,6632,71,8,f +13028,75535,4,2,f +13028,75c07,4,1,t +13028,75c07,4,2,f +13028,75c10,0,1,f +13028,75c14,0,1,f +13028,8283stk01,9999,1,t +13029,10201,15,1,f +13029,10314,322,1,f +13029,11055,71,2,f +13029,11153,322,2,f +13029,11211,71,2,f +13029,11291,0,1,f +13029,11477,0,2,f +13029,13547,71,2,f +13029,13548,71,2,f +13029,14704,71,2,f +13029,15068,0,2,f +13029,15379,0,40,f +13029,15379,0,2,t +13029,15462,70,2,f +13029,15573,72,2,f +13029,17114,72,1,f +13029,2412b,15,1,f +13029,2420,72,4,f +13029,24201,71,4,f +13029,2431,322,1,f +13029,24316,70,1,f +13029,2540,71,2,f +13029,2654,72,2,f +13029,2723,71,4,f +13029,2736,71,2,f +13029,2780,0,2,f +13029,2780,0,1,t +13029,2850a,71,1,f +13029,3003,72,2,f +13029,3005,322,2,f +13029,3020,322,1,f +13029,3022,0,1,f +13029,3023,72,6,f +13029,3024,71,1,t +13029,3024,71,10,f +13029,30340,0,2,f +13029,30367c,72,2,f +13029,3039,322,1,f +13029,3040b,72,2,f +13029,30503,71,1,f +13029,3068b,322,1,f +13029,3069b,0,1,f +13029,3069b,322,2,f +13029,32062,4,2,f +13029,32064a,0,2,f +13029,32123b,14,1,t +13029,32123b,14,3,f +13029,32530,72,2,f +13029,3623,71,2,f +13029,3666,71,1,f +13029,3709,72,2,f +13029,3710,0,2,f +13029,3713,4,5,f +13029,3713,4,1,t +13029,3894,0,2,f +13029,3956,0,2,f +13029,4032a,0,3,f +13029,4070,47,2,f +13029,41769,71,1,f +13029,41770,71,1,f +13029,44728,0,1,f +13029,47455,0,1,f +13029,48169,72,1,f +13029,48170,72,1,f +13029,48336,0,2,f +13029,50745,0,1,f +13029,50745,322,2,f +13029,50949,0,1,f +13029,50950,322,2,f +13029,54200,322,2,f +13029,54200,42,1,t +13029,54200,42,3,f +13029,54200,322,1,t +13029,54200,0,2,f +13029,54200,0,1,t +13029,55013,72,1,f +13029,56903,15,1,f +13029,57909b,72,1,f +13029,60470a,71,2,f +13029,6091,322,4,f +13029,61254,0,1,f +13029,6141,42,1,t +13029,6141,42,2,f +13029,6141,71,2,f +13029,6141,182,1,t +13029,6141,182,2,f +13029,6141,71,1,t +13029,6215,322,1,f +13029,62930,47,1,f +13029,85984,0,2,f +13029,87620,71,2,f +13029,92013,0,1,f +13029,92013,72,2,f +13029,93273,322,1,f +13029,93273,0,1,f +13029,93273,71,1,f +13029,94925,71,2,f +13029,98138,34,2,f +13029,98138,34,1,t +13030,3004,70,2,f +13030,3020,19,2,f +13030,3626b,15,1,f +13030,3626b,47,1,f +13030,3710,70,4,f +13030,4079,14,2,f +13030,43898,15,1,f +13031,2412b,72,2,f +13031,2780,0,1,t +13031,2780,0,4,f +13031,2817,0,1,f +13031,3001,14,1,f +13031,3003,72,1,f +13031,3009,14,2,f +13031,30157,72,2,f +13031,3020,72,2,f +13031,3020,14,4,f +13031,3021,72,4,f +13031,3022,72,6,f +13031,3022,4,1,f +13031,3023,71,1,f +13031,3023,14,2,f +13031,30236,0,1,f +13031,3031,72,2,f +13031,3031,14,1,f +13031,3032,14,1,f +13031,30414,14,1,f +13031,3069b,72,3,f +13031,32000,14,2,f +13031,32123b,14,1,t +13031,32123b,14,2,f +13031,3622,14,2,f +13031,3623,72,2,f +13031,3626bpr0389,14,1,f +13031,3639,72,1,f +13031,3640,72,1,f +13031,3666,14,1,f +13031,3705,0,1,f +13031,3710,72,1,f +13031,3710,14,3,f +13031,3795,14,1,f +13031,3829c01,4,1,f +13031,3833,4,1,f +13031,4070,14,2,f +13031,4085c,0,2,f +13031,4175,14,2,f +13031,44567a,71,1,f +13031,4589,0,1,f +13031,47508,0,1,f +13031,50373,14,1,f +13031,50950,14,2,f +13031,54200,14,1,t +13031,54200,14,2,f +13031,55981,14,4,f +13031,56891,0,4,f +13031,58176,182,1,f +13031,59443,72,1,f +13031,60478,14,4,f +13031,61409,72,2,f +13031,6141,36,1,t +13031,6141,46,1,t +13031,6141,47,2,f +13031,6141,0,1,t +13031,6141,47,1,t +13031,6141,46,2,f +13031,6141,36,2,f +13031,6141,0,2,f +13031,64451,72,2,f +13031,6553,0,1,f +13031,84954,40,2,f +13031,970c00,25,1,f +13031,973pr1182c01,25,1,f +13035,6588,47,5,f +13036,3003,4,1,f +13036,3021,14,2,f +13036,3022,0,1,f +13036,3062b,1,4,f +13036,3660,4,2,f +13036,3700,4,2,f +13038,2431,15,3,f +13038,2460,7,1,f +13038,3001,15,2,f +13038,3020,2,1,f +13038,3036,2,2,f +13038,30488,15,1,f +13038,30493,0,1,f +13038,3069b,4,1,f +13038,3069b,4,1,t +13038,3403,0,1,f +13038,3404,0,1,f +13038,3626bpx33,14,1,f +13038,3700,7,2,f +13038,3701,7,2,f +13038,4282,15,1,f +13038,4476b,15,2,f +13038,4485,1,1,f +13038,72824p01,15,1,f +13038,85543,15,2,t +13038,85543,15,1,f +13038,970c00,0,1,f +13038,973pb0083c02,1,1,f +13039,3137c01,0,6,f +13039,3185,4,4,f +13039,3470,2,4,f +13039,3483,0,12,f +13039,3641,0,12,f +13039,3823,47,2,f +13039,4130,14,4,f +13039,4131,4,4,f +13039,4132,14,8,f +13039,4133,4,8,f +13039,4727,2,8,f +13039,4728,14,2,f +13039,4728,1,2,f +13039,4728,4,2,f +13039,4728,15,2,f +13039,4745,14,2,f +13039,4747,1,1,f +13039,4747,4,1,f +13039,4748,4,1,f +13039,4748,1,1,f +13039,6232,4,2,f +13039,7039,4,12,f +13039,7049,0,6,f +13040,12889,2,1,f +13040,3626bpb0919,378,1,f +13040,88646,0,1,f +13040,973pr2325c01,378,1,f +13040,99778pr0006a,288,1,f +13042,3003pe2,15,1,f +13042,3021,0,1,f +13042,3021,4,1,f +13042,3039,0,1,f +13042,3039,15,1,f +13042,3040b,0,2,f +13042,3660,15,1,f +13043,2339,308,3,f +13043,2343,47,2,f +13043,2412b,72,5,f +13043,2423,2,3,f +13043,2431,71,1,f +13043,2431,0,2,f +13043,2439,2,1,f +13043,2465,15,4,f +13043,2496,0,2,f +13043,3001,15,1,f +13043,3003,0,1,f +13043,3003,71,3,f +13043,3003,15,1,f +13043,3003,19,5,f +13043,3004,15,9,f +13043,3004,71,8,f +13043,3004,0,2,f +13043,3005,15,12,f +13043,3005,71,16,f +13043,30055,15,4,f +13043,3009,0,1,f +13043,3009,15,14,f +13043,3009,71,4,f +13043,3010,15,16,f +13043,3010,1,1,f +13043,30136,70,4,f +13043,30137,70,2,f +13043,3020,72,3,f +13043,3020,484,2,f +13043,3020,15,2,f +13043,3023,72,8,f +13043,3023,46,1,f +13043,3023,19,4,f +13043,3024,4,1,f +13043,3027,72,3,f +13043,3031,70,1,f +13043,30350b,4,1,f +13043,3036,72,2,f +13043,3037,72,5,f +13043,30383,72,1,f +13043,3039,72,8,f +13043,3040b,72,4,f +13043,3044c,72,1,f +13043,30552,71,1,f +13043,30586,71,2,f +13043,3062b,2,2,f +13043,3062b,4,1,f +13043,3062b,0,4,f +13043,3062b,70,2,f +13043,3068b,1,1,f +13043,3068b,15,1,f +13043,3068b,4,2,f +13043,3068bpr0136,72,2,f +13043,3069b,72,7,f +13043,3069bpr0030,15,1,f +13043,3069bpr0099,15,1,f +13043,3070b,0,4,f +13043,3070b,0,1,t +13043,3245c,15,5,f +13043,3300,72,7,f +13043,3307,15,1,f +13043,33078,4,1,f +13043,3470,2,1,f +13043,3626bpr0389,14,1,f +13043,3626bpr0647,14,1,f +13043,3626bpr0677,14,1,f +13043,3633,0,7,f +13043,3684,15,3,f +13043,3710,15,2,f +13043,3710,72,2,f +13043,3741,2,1,f +13043,3741,2,1,t +13043,3742,4,3,f +13043,3742,4,1,t +13043,3794b,71,1,f +13043,3795,0,1,f +13043,3795,19,1,f +13043,3795,1,1,f +13043,3832,15,1,f +13043,3857,2,1,f +13043,3899,14,2,f +13043,3937,71,3,f +13043,3957a,15,1,f +13043,4032a,15,3,f +13043,4079,1,3,f +13043,41879a,71,1,f +13043,42445,71,1,f +13043,42511,1,1,f +13043,4287,15,2,f +13043,43337,71,2,f +13043,4345b,4,1,f +13043,4346,4,1,f +13043,44302a,71,2,f +13043,4445,72,5,f +13043,4477,1,1,f +13043,4495b,4,1,f +13043,4528,0,1,f +13043,4533,0,1,f +13043,4599b,1,1,f +13043,4740,2,1,f +13043,4740,14,2,f +13043,47755,0,1,f +13043,4865a,0,2,f +13043,48729b,72,2,f +13043,48729b,72,2,t +13043,48812,70,1,f +13043,50950,0,2,f +13043,52107,14,1,f +13043,57894,4,3,f +13043,57895,47,3,f +13043,59349,15,5,f +13043,60478,4,2,f +13043,60593,4,4,f +13043,60596,4,1,f +13043,60602,47,4,f +13043,60623,15,1,f +13043,6111,15,1,f +13043,6134,0,3,f +13043,6141,182,4,f +13043,6141,4,1,t +13043,6141,182,1,t +13043,6141,71,2,t +13043,6141,71,2,f +13043,6141,46,2,f +13043,6141,4,1,f +13043,6141,46,2,t +13043,61678,1,10,f +13043,6191,0,1,f +13043,6231,0,2,f +13043,62711,0,1,f +13043,62810,0,1,f +13043,62810,484,1,f +13043,64644,0,1,f +13043,6636,0,4,f +13043,6636,72,12,f +13043,87079,71,8,f +13043,87079,0,2,f +13043,87087,4,1,f +13043,87580,72,2,f +13043,88292,15,4,f +13043,92410,71,1,f +13043,970c00,15,1,f +13043,970c00,2,1,f +13043,973pr1173c01,4,1,f +13043,973pr1480c01,15,1,f +13043,973pr1573c01,15,1,f +13044,15496pr0001,15,1,f +13044,15500,308,1,f +13044,3626cpr1310,14,1,f +13044,88646,0,1,f +13044,970c00pr0601,379,1,f +13044,973pr0812c01,15,1,f +13046,2343,0,2,f +13046,2412b,25,2,f +13046,2419,15,1,f +13046,2446,15,1,f +13046,2447,82,1,t +13046,2447,82,1,f +13046,2456,15,1,f +13046,2515,25,3,f +13046,2723,0,1,f +13046,2780,0,4,f +13046,2780,0,1,t +13046,298c02,1,1,f +13046,298c02,1,1,t +13046,3001,71,1,f +13046,30153,42,1,f +13046,3021,71,1,f +13046,3023,25,2,f +13046,3032,0,1,f +13046,3069b,15,2,f +13046,32014,0,4,f +13046,32015,15,4,f +13046,32123b,71,1,t +13046,32123b,71,5,f +13046,3626bpr0443,71,1,f +13046,3673,71,1,t +13046,3673,71,2,f +13046,3701,15,2,f +13046,3702,0,2,f +13046,3705,0,2,f +13046,3706,0,3,f +13046,3707,0,2,f +13046,3708,0,2,f +13046,3713,71,1,t +13046,3713,71,2,f +13046,3736,15,2,f +13046,3794a,72,2,f +13046,3795,15,1,f +13046,4070,0,2,f +13046,40902,0,1,f +13046,41747,15,1,f +13046,41748,15,1,f +13046,4274,1,4,f +13046,4274,1,1,t +13046,43093,1,2,f +13046,44567a,71,1,f +13046,44568,15,1,f +13046,45590,0,1,f +13046,4589,33,4,f +13046,50747,182,1,f +13046,54200,25,2,f +13046,58843,15,1,f +13046,58844pat0001,34,1,f +13046,58845,34,1,f +13046,58947,182,1,f +13046,6019,0,2,f +13046,6553,71,1,f +13046,6636,0,1,f +13046,78c04,0,2,f +13046,970x194,15,1,f +13046,973pr1317c01,15,1,f +13047,2780,0,4,f +13047,2854,0,2,f +13047,30285,72,8,f +13047,30391,0,4,f +13047,30648,0,4,f +13047,32009,72,2,f +13047,32013,36,2,f +13047,32013,15,2,f +13047,32017,72,2,f +13047,32034,0,1,f +13047,32056,72,4,f +13047,32062,0,8,f +13047,32073,71,2,f +13047,32123b,71,1,f +13047,32123b,71,1,t +13047,32126,71,4,f +13047,32138,0,7,f +13047,32140,72,4,f +13047,32140,1,2,f +13047,32202,179,2,f +13047,32250,15,2,f +13047,32250,1,6,f +13047,32271,0,2,f +13047,32291,0,2,f +13047,32291,72,1,f +13047,32310,0,1,f +13047,32316,72,3,f +13047,32449,72,4,f +13047,32523,1,2,f +13047,32525,72,3,f +13047,32526,1,1,f +13047,32526,0,1,f +13047,32526,72,2,f +13047,32527,15,1,f +13047,32527,1,1,f +13047,32528,1,1,f +13047,32528,15,1,f +13047,32534,1,1,f +13047,32535,1,1,f +13047,32552,179,2,f +13047,32557,15,2,f +13047,32557,1,2,f +13047,3673,71,8,f +13047,3705,0,1,f +13047,3706,0,5,f +13047,3713,71,8,f +13047,3749,19,2,f +13047,41669,36,2,f +13047,41669,135,2,f +13047,41677,15,8,f +13047,41752,8,1,f +13047,42003,72,4,f +13047,43093,1,2,f +13047,44294,71,1,f +13047,44374,135,1,f +13047,4519,71,15,f +13047,6141,36,5,f +13047,6141,34,1,t +13047,6141,34,3,f +13047,6141,36,1,t +13047,6536,15,2,f +13047,6536,0,1,f +13047,6538b,15,2,f +13047,6538b,0,1,f +13047,6558,0,23,f +13047,6587,72,1,f +13047,6632,72,6,f +13047,6632,0,2,f +13047,75535,1,2,f +13047,85543,15,1,f +13048,3008a,1,4,f +13048,3008a,14,4,f +13048,3008a,15,8,f +13048,3009a,1,5,f +13048,3009a,15,10,f +13048,3009a,14,5,f +13049,2357,14,4,f +13049,2419,14,2,f +13049,2420,0,8,f +13049,2444,0,2,f +13049,2444,14,4,f +13049,2445,0,1,f +13049,2639,7,1,f +13049,2711,0,2,f +13049,2711,14,8,f +13049,2717,1,3,f +13049,2719,7,3,f +13049,2730,14,1,f +13049,2730,0,4,f +13049,2744,0,4,f +13049,2744,14,2,f +13049,2780,0,56,f +13049,2780,0,6,t +13049,2793c01,14,2,f +13049,2797c02,14,1,f +13049,2817,0,2,f +13049,2819,7,1,f +13049,2825,14,2,f +13049,2825,0,2,f +13049,2825,7,18,f +13049,2853,7,2,f +13049,2856c01,7,1,f +13049,2905,0,4,f +13049,3004,14,4,f +13049,3005,14,6,f +13049,3020,14,4,f +13049,3020,0,1,f +13049,3020,7,5,f +13049,3021,14,2,f +13049,3021,0,4,f +13049,3022,0,3,f +13049,3022,14,6,f +13049,3023,14,12,f +13049,3023,7,7,f +13049,3023,0,14,f +13049,3024,14,3,f +13049,3024,7,3,f +13049,3024,0,6,f +13049,3029,0,1,f +13049,3032,14,1,f +13049,3034,0,3,f +13049,3034,7,1,f +13049,3038,14,2,f +13049,3040b,0,2,f +13049,3040b,14,4,f +13049,3045,0,2,f +13049,3069b,15,8,f +13049,3070b,14,2,f +13049,3070b,36,2,f +13049,3070b,36,1,t +13049,3070b,14,1,t +13049,32002,8,5,f +13049,32002,8,1,t +13049,32014,7,1,f +13049,32062,0,14,f +13049,32123b,7,1,t +13049,32123b,7,36,f +13049,3460,0,21,f +13049,3460,14,4,f +13049,3622,0,2,f +13049,3623,14,7,f +13049,3623,0,6,f +13049,3647,7,10,f +13049,3647,7,1,t +13049,3648b,7,3,f +13049,3665,15,2,f +13049,3666,7,2,f +13049,3666,14,4,f +13049,3666,0,15,f +13049,3673,7,4,t +13049,3673,7,38,f +13049,3676,14,2,f +13049,3684,14,2,f +13049,3700,7,4,f +13049,3700,0,10,f +13049,3700,14,10,f +13049,3701,0,9,f +13049,3701,14,3,f +13049,3701,7,3,f +13049,3701,15,2,f +13049,3702,0,4,f +13049,3702,7,2,f +13049,3702,14,7,f +13049,3703,14,4,f +13049,3703,0,10,f +13049,3705,0,13,f +13049,3706,0,19,f +13049,3707,0,5,f +13049,3708,0,8,f +13049,3709,14,2,f +13049,3710,7,4,f +13049,3710,14,2,f +13049,3710,0,15,f +13049,3713,7,1,t +13049,3713,7,34,f +13049,3737,0,4,f +13049,3738,0,2,f +13049,3743,7,7,f +13049,3749,7,10,f +13049,3794a,14,5,f +13049,3794a,1,6,f +13049,3795,14,2,f +13049,3832,14,3,f +13049,3832,0,3,f +13049,3894,15,1,f +13049,3894,7,4,f +13049,3894,14,8,f +13049,3894,0,13,f +13049,3895,0,5,f +13049,3895,14,2,f +13049,3895,15,1,f +13049,3935,14,2,f +13049,3936,14,2,f +13049,3941,46,2,f +13049,4019,7,3,f +13049,4032a,15,2,f +13049,4070,14,2,f +13049,4070,0,8,f +13049,4081b,0,2,f +13049,4150,15,2,f +13049,4185,7,8,f +13049,4261,7,4,f +13049,4262,0,2,f +13049,4263,7,2,f +13049,4263,0,2,f +13049,4274,7,7,f +13049,4274,7,1,t +13049,4275b,14,2,f +13049,4287,0,2,f +13049,4287,14,2,f +13049,4460a,14,8,f +13049,4477,14,2,f +13049,4477,0,6,f +13049,4504,14,2,f +13049,4519,0,10,f +13049,4531,14,2,f +13049,4697b,7,1,t +13049,4697b,7,2,f +13049,4716,0,3,f +13049,5102,7,1,f +13049,5102,0,1,f +13049,56823,0,1,f +13049,6536,7,8,f +13049,6538b,7,1,t +13049,6538b,7,8,f +13049,6541,0,8,f +13049,6541,14,3,f +13049,6553,7,8,f +13049,6558,0,15,f +13049,6564,14,2,f +13049,6565,14,2,f +13049,6575,7,6,f +13049,6581,0,6,f +13049,6582,14,6,f +13049,6587,8,4,f +13049,6589,7,13,f +13049,6592,7,2,f +13049,6632,7,2,f +13049,70496,0,1,f +13049,75215,7,1,f +13049,75215,7,1,t +13049,75535,14,4,f +13049,8431stk01,9999,1,t +13050,2458,4,2,f +13050,3004,2,1,f +13050,3020,4,2,f +13050,3040b,15,4,f +13050,30488c01,15,1,f +13050,30492,2,1,f +13050,3069b,2,1,f +13050,3700,15,2,f +13050,3795,14,1,f +13050,3832,2,1,f +13050,4150ps3,0,1,f +13050,72824p01,15,2,f +13052,16026,9999,1,f +13052,2780,0,1,t +13052,2780,0,5,f +13052,2825,71,2,f +13052,32002,19,4,f +13052,32002,19,1,t +13052,32054,71,5,f +13052,32062,4,5,f +13052,32073,71,3,f +13052,32123b,71,4,f +13052,32123b,71,1,t +13052,32140,0,4,f +13052,32184,0,4,f +13052,32249,0,2,f +13052,32270,0,2,f +13052,32316,15,1,f +13052,32449,15,2,f +13052,32523,1,2,f +13052,32524,71,2,f +13052,32525,1,2,f +13052,32526,71,4,f +13052,32556,19,1,f +13052,3673,71,1,t +13052,3673,71,2,f +13052,3705,0,6,f +13052,3707,0,1,f +13052,3713,71,1,t +13052,3713,71,4,f +13052,40490,15,2,f +13052,41669,47,2,f +13052,41677,1,2,f +13052,42003,71,6,f +13052,42610,71,4,f +13052,43093,1,12,f +13052,44294,71,1,f +13052,4519,71,1,f +13052,50951,0,1,t +13052,50951,0,4,f +13052,57585,71,2,f +13052,59426,72,2,f +13052,59443,71,4,f +13052,60483,71,2,f +13052,60483,0,1,f +13052,63869,71,1,f +13052,6536,15,3,f +13052,6558,1,6,f +13052,6589,19,1,t +13052,6589,19,2,f +13052,6632,0,6,f +13052,87080,1,1,f +13052,87082,0,2,f +13052,87083,72,2,f +13052,87086,1,1,f +13052,87408,0,2,f +13052,99012,72,6,f +13053,15522pr0003,1,1,f +13053,16816pr0001b,25,1,f +13053,3069bpr0141,272,1,f +13053,3742,4,3,f +13053,3742,4,1,t +13053,88646,0,1,f +13053,970x106,14,1,f +13053,973pr3005c01,25,1,f +13053,99249,2,1,f +13054,2542,6,2,f +13054,2570,8,2,f +13054,2586p4d,15,1,f +13054,3020,0,1,f +13054,3626bp35,14,1,f +13054,3710,0,2,f +13054,3794a,0,1,f +13054,3844,8,1,f +13054,4589,0,2,f +13054,4855,4,2,f +13054,4859,0,2,f +13054,4871,4,1,f +13054,6019,0,1,f +13054,970x021,0,1,f +13054,973p4dc01,4,1,f +13055,11091,272,2,f +13055,11097,297,1,f +13055,11100,15,3,f +13055,11111pr0004,297,1,f +13055,11126,14,1,f +13055,11127,41,6,f +13055,11153,1,2,f +13055,11767,72,1,f +13055,12549pr0001,15,1,f +13055,12825,15,4,f +13055,2420,19,2,f +13055,2456,70,2,f +13055,2654,1,1,f +13055,2780,0,2,f +13055,3003,71,2,f +13055,30099,15,2,f +13055,3010,71,1,f +13055,30176,2,2,f +13055,3023,15,1,f +13055,30374,297,2,f +13055,3040b,15,2,f +13055,30414,72,1,f +13055,30503,72,2,f +13055,3623,72,2,f +13055,3626cpr1124,212,1,f +13055,3659,72,2,f +13055,3794b,272,2,f +13055,3839b,15,1,f +13055,3937,15,2,f +13055,3941,42,2,f +13055,4032a,15,4,f +13055,4070,15,2,f +13055,4477,70,1,f +13055,4515,71,1,f +13055,4588,15,2,f +13055,4733,15,1,f +13055,4740,42,2,f +13055,55236,27,6,f +13055,59900,297,4,f +13055,60477,15,2,f +13055,6126b,41,2,f +13055,6134,0,2,f +13055,6141,41,5,f +13055,64567,297,1,f +13055,64727,71,3,f +13055,87087,72,2,f +13055,87747,297,1,f +13055,87747,0,4,f +13055,92947,71,2,f +13055,970c00pr0568,15,1,f +13055,973pr0650c01,71,1,f +13055,98138,41,1,f +13057,2412b,72,1,f +13057,2441,0,1,f +13057,30027b,71,4,f +13057,30028,0,4,f +13057,3020,15,1,f +13057,3022,15,2,f +13057,3023,36,1,f +13057,3023,2,4,f +13057,3069b,15,1,f +13057,3622,15,2,f +13057,3626bpr0645,14,1,f +13057,3710,15,1,f +13057,3788,15,1,f +13057,3788,0,1,f +13057,3821,15,1,f +13057,3822,15,1,f +13057,3829c01,1,1,f +13057,4449,70,1,f +13057,44728,15,2,f +13057,45677,0,1,f +13057,4865a,15,1,f +13057,54200,15,2,f +13057,54200,15,1,t +13057,57783,40,1,f +13057,60481,0,2,f +13057,6141,47,2,f +13057,6141,47,1,t +13057,62810,308,1,f +13057,970c00,2,1,f +13057,973pr1573c01,15,1,f +13058,2780,0,1,t +13058,2780,0,4,f +13058,32002,72,2,f +13058,32002,72,1,t +13058,32062,4,2,f +13058,32173,0,2,f +13058,32523,71,1,f +13058,3706,0,1,f +13058,47297,4,2,f +13058,53542,0,2,f +13058,53543,0,2,f +13058,54821,42,1,f +13058,57585,71,2,f +13058,59443,72,1,f +13058,60176,4,3,f +13058,61053,320,2,f +13058,61054,0,2,f +13058,61807pat02,4,1,f +13058,64251,4,2,f +13058,64262,42,1,f +13058,64272,320,1,f +13058,64275,0,2,f +13058,64276,72,1,f +13058,64292,4,2,f +13058,6558,1,1,f +13058,87794,0,1,f +13058,87821,4,1,f +13058,87825pat0001,4,3,f +13059,15573,19,21,f +13059,15712,72,8,f +13059,2419,72,2,f +13059,2431,72,2,f +13059,2445,0,6,f +13059,2450,72,2,f +13059,3003,72,2,f +13059,3004,19,13,f +13059,3005,19,32,f +13059,3005,47,8,f +13059,3005,40,18,f +13059,3009,19,8,f +13059,3010,19,10,f +13059,30136,19,12,f +13059,3020,19,6,f +13059,3021,0,4,f +13059,3021,72,2,f +13059,3023,47,40,f +13059,3023,28,9,f +13059,3023,71,9,f +13059,3024,19,18,f +13059,3024,72,4,f +13059,3024,28,20,f +13059,3024,40,12,f +13059,3024,47,18,f +13059,3030,72,2,f +13059,3033,72,6,f +13059,30374,71,5,f +13059,3039,72,8,f +13059,3045,72,8,f +13059,30503,72,3,f +13059,3068b,71,41,f +13059,3068b,72,5,f +13059,3069b,47,36,f +13059,3069b,71,5,f +13059,3069b,28,1,f +13059,3069b,72,13,f +13059,3070b,72,2,f +13059,3070b,19,8,f +13059,3070b,47,6,f +13059,32028,28,6,f +13059,3460,71,2,f +13059,3666,28,11,f +13059,3666,19,8,f +13059,3678b,72,2,f +13059,3685,72,4,f +13059,3710,28,8,f +13059,3710,19,6,f +13059,3794b,71,1,f +13059,3795,28,2,f +13059,3795,0,3,f +13059,3795,19,5,f +13059,3941,47,3,f +13059,3958,72,2,f +13059,4032a,72,1,f +13059,4070,19,6,f +13059,4162,0,7,f +13059,4162pr0040,0,1,f +13059,4460b,72,2,f +13059,4733,72,2,f +13059,54200,47,40,f +13059,54200,19,8,f +13059,59349,19,3,f +13059,60592,19,4,f +13059,60601,40,4,f +13059,60897,72,8,f +13059,6141,19,25,f +13059,6141,15,36,f +13059,64644,19,16,f +13059,6636,0,4,f +13059,85984,72,13,f +13059,90195,19,12,f +13059,92593,72,4,f +13059,96874,25,1,t +13061,11090,72,4,f +13061,11126,25,1,f +13061,11127,41,6,f +13061,11233pr0002,71,1,f +13061,11477,4,2,f +13061,15096pr0001,4,1,f +13061,15100,0,2,f +13061,15101,182,2,f +13061,15104,182,1,f +13061,15336c02,182,1,f +13061,15395,4,1,f +13061,2488,0,1,f +13061,2780,0,2,f +13061,30374,0,2,f +13061,30383,0,2,f +13061,30553,72,2,f +13061,32013,4,2,f +13061,32062,4,2,f +13061,32073,71,2,f +13061,32474,4,2,f +13061,3626cpr1134,71,1,f +13061,3794b,4,1,f +13061,3795,72,2,f +13061,4032a,72,1,f +13061,43093,1,2,f +13061,47753,320,1,f +13061,53454,0,1,f +13061,54200,182,4,f +13061,59900,182,1,f +13061,60474,72,1,f +13061,60897,4,2,f +13061,6126b,57,6,f +13061,61403,179,2,f +13061,6636,4,1,f +13061,87618,0,1,f +13061,92947,71,1,f +13061,95753pat0005,25,1,f +13061,970c00pr0663,4,1,f +13061,973pr2666c01,4,1,f +13061,99207,0,2,f +13063,2780,0,8,f +13063,2780,0,1,t +13063,32002,72,1,t +13063,32002,72,2,f +13063,32009,14,2,f +13063,32039,0,4,f +13063,32054,4,2,f +13063,32056,14,2,f +13063,32062,4,8,f +13063,32073,71,1,f +13063,32123b,71,1,t +13063,32123b,71,2,f +13063,32138,0,3,f +13063,32271,14,4,f +13063,32316,0,2,f +13063,32348,0,4,f +13063,32449,14,1,f +13063,32524,14,2,f +13063,3705,0,5,f +13063,41668,320,2,f +13063,41677,71,2,f +13063,41678,71,1,f +13063,42003,71,3,f +13063,4274,1,2,f +13063,4274,1,1,t +13063,43093,1,7,f +13063,43857,0,4,f +13063,44036,135,1,f +13063,44809,0,1,f +13063,4519,71,8,f +13063,48989,71,1,f +13063,49423,135,2,f +13063,53543,135,2,f +13063,54272,0,2,f +13063,57518,0,20,f +13063,57519,14,1,f +13063,57520,0,1,f +13063,57539,135,1,f +13063,59443,14,4,f +13063,59577,135,1,f +13063,60895,320,1,f +13063,60896,320,4,f +13063,60930,135,2,f +13063,61800,135,2,f +13063,61801,135,2,f +13063,64251,320,2,f +13063,64262,143,1,f +13063,64275,135,2,f +13063,64277c01,297,1,f +13063,64296,14,1,f +13063,64330,320,1,f +13063,64889pr0001,135,1,f +13063,6536,71,3,f +13063,6558,1,5,f +13063,6587,72,3,f +13063,6632,0,2,f +13067,10928,72,2,f +13067,11458,72,2,f +13067,11609,191,1,t +13067,11609,191,1,f +13067,13965,29,4,f +13067,14769,27,3,f +13067,15427pr0001,0,1,f +13067,15428pr0001,0,1,f +13067,15429pr0001,15,1,f +13067,15443,70,1,f +13067,15444,4,1,f +13067,2817,4,1,f +13067,298c02,14,2,f +13067,298c02,14,1,t +13067,3001,15,1,f +13067,3009,15,1,f +13067,30099,322,1,f +13067,3010,5,1,f +13067,30136,15,6,f +13067,30165,15,4,f +13067,3021,2,1,f +13067,3022,14,1,f +13067,3023,27,2,f +13067,3024,226,1,f +13067,3024,15,1,t +13067,3024,226,1,t +13067,3024,15,2,f +13067,3024,323,1,f +13067,3024,323,1,t +13067,3034,15,1,f +13067,30340,14,1,f +13067,30374,14,1,f +13067,30565,15,2,f +13067,3062b,322,5,f +13067,3062b,15,4,f +13067,3062b,4,10,f +13067,3176,14,2,f +13067,32474,4,4,f +13067,3308,5,1,f +13067,33243,15,2,f +13067,33243,27,2,f +13067,3622pr0001,29,1,f +13067,3623,15,1,f +13067,3623,29,1,f +13067,3626cpr1326,14,1,f +13067,3626cpr1327,179,1,f +13067,3626cpr1354,14,1,f +13067,3673,71,1,f +13067,3673,71,1,t +13067,3700,14,2,f +13067,3749,19,2,f +13067,3795,29,1,f +13067,3960,191,1,f +13067,3960pr0014,15,1,f +13067,3960pr0015,15,1,f +13067,4032a,71,1,f +13067,4150,29,2,f +13067,4150,14,2,f +13067,42446,71,1,t +13067,42446,71,1,f +13067,43898,27,3,f +13067,4490,29,1,f +13067,4519,71,2,f +13067,4623,15,1,f +13067,4728,45,2,f +13067,47457,27,1,f +13067,4871,14,1,f +13067,49668,191,8,f +13067,54200,4,3,f +13067,54200,5,1,t +13067,54200,4,1,t +13067,54200,5,2,f +13067,59900,26,1,f +13067,6003,226,1,f +13067,6003,15,2,f +13067,60470a,2,1,f +13067,60474,14,1,f +13067,60479,14,1,f +13067,60481,5,2,f +13067,60808,158,2,f +13067,6141,41,2,f +13067,6141,34,2,f +13067,6141,34,1,t +13067,6141,36,1,t +13067,6141,158,1,t +13067,6141,182,2,f +13067,6141,36,1,f +13067,6141,57,1,t +13067,6141,158,1,f +13067,6141,41,1,t +13067,61482,71,1,f +13067,61482,71,1,t +13067,6215,15,8,f +13067,6541,15,2,f +13067,85861,15,1,f +13067,85861,15,1,t +13067,85984,27,1,f +13067,87087,4,1,f +13067,87087,29,4,f +13067,88293,26,2,f +13067,89522,212,1,t +13067,89522,212,1,f +13067,94925,71,1,f +13067,970c00,0,1,f +13067,970c00pr0605,25,1,f +13067,970c00pr0628,0,1,f +13067,973pr2538c01,25,1,f +13067,973pr2542c01,0,1,f +13067,973pr2590c01,0,1,f +13067,98100,15,1,f +13067,98138,15,6,f +13067,98138,29,1,t +13067,98138,29,10,f +13067,98138,15,1,t +13067,98138,46,2,f +13067,98138,46,1,t +13067,98138pr0008,15,1,t +13067,98138pr0008,15,2,f +13067,98262,14,2,f +13067,98262,322,2,f +13067,99780,14,1,f +13067,99784,47,1,f +13067,99930,0,1,f +13068,2435,2,25,f +13069,2420,4,2,f +13069,2780,0,1,t +13069,2780,0,7,f +13069,3001,1,1,f +13069,3020,72,2,f +13069,3023,36,1,f +13069,30602,4,2,f +13069,32034,1,1,f +13069,32054,0,2,f +13069,32123b,71,1,t +13069,32123b,71,10,f +13069,32271,0,2,f +13069,32523,1,2,f +13069,32524,71,2,f +13069,32558,4,2,f +13069,33299a,0,2,f +13069,3660,4,1,f +13069,3706,0,3,f +13069,3707,0,1,f +13069,3749,19,2,f +13069,3795,1,1,f +13069,3839b,72,1,f +13069,3899,4,2,f +13069,40490,0,2,f +13069,43093,1,8,f +13069,43712,4,1,f +13069,44728,0,4,f +13069,47715,72,1,f +13069,47753,0,1,f +13069,48989,71,2,f +13069,55978,0,2,f +13069,55982,71,2,f +13069,56145,71,2,f +13069,58090,0,2,f +13069,6019,4,2,f +13069,61069,72,2,f +13069,61769,9999,1,f +13070,2496,0,1,f +13070,2496,0,1,t +13070,2655,14,1,f +13070,2655,14,1,t +13070,3020,1,1,f +13070,3022,1,1,f +13070,3023,1,1,t +13070,3023,1,2,f +13070,3039,4,1,f +13070,3039,47,1,f +13070,4287,4,2,f +13070,6141,34,2,t +13070,6141,36,2,t +13070,6141,34,1,f +13070,6141,36,1,f +13071,3004,15,2,f +13071,3004,0,1,f +13071,3022,0,1,f +13071,3899,15,2,f +13071,4176,15,1,f +13071,4599a,4,2,f +13074,3704,0,3,f +13074,3705,0,3,f +13074,3706,0,3,f +13074,4519,0,3,f +13076,3034a,15,1,f +13076,3035a,15,4,f +13078,10201,71,2,f +13078,10258,0,1,f +13078,11055,0,1,f +13078,11458,15,1,f +13078,15392,72,1,f +13078,15403,0,1,f +13078,15712,72,2,f +13078,15712,0,2,f +13078,18663,47,1,f +13078,19220,0,1,f +13078,19888,4,1,f +13078,2397,0,1,f +13078,2420,0,2,f +13078,2432,19,1,f +13078,2540,72,6,f +13078,2569,0,1,f +13078,2780,0,1,f +13078,2877,72,1,f +13078,3001,19,2,f +13078,3003,71,1,f +13078,3004,19,1,f +13078,3005,0,4,f +13078,30136,71,4,f +13078,30136,0,2,f +13078,30157,72,2,f +13078,3020,71,6,f +13078,3022,71,1,f +13078,3023,15,2,f +13078,3023,41,2,f +13078,30236,0,1,f +13078,3024,0,2,f +13078,3024,19,2,f +13078,3031,71,2,f +13078,30377,0,1,f +13078,30414,71,1,f +13078,3068b,0,1,f +13078,3068b,15,2,f +13078,3069b,15,1,f +13078,3069b,41,2,f +13078,3070b,36,2,f +13078,32000,72,2,f +13078,32013,0,2,f +13078,32062,4,1,f +13078,3626cpr1649,78,1,f +13078,3626cpr1653,78,1,f +13078,3626cpr1660,78,1,f +13078,3633,0,1,f +13078,3660,0,4,f +13078,3666,0,3,f +13078,3673,71,2,f +13078,3710,0,1,f +13078,3710,19,1,f +13078,3795,72,1,f +13078,3829c01,71,2,f +13078,3958,0,1,f +13078,4070,72,2,f +13078,4162,0,2,f +13078,4176,47,1,f +13078,41769,0,1,f +13078,41770,0,1,f +13078,42003,71,1,f +13078,4274,1,2,f +13078,43093,1,2,f +13078,47720,71,2,f +13078,4865a,19,2,f +13078,4865b,47,2,f +13078,4871,71,2,f +13078,50943,179,1,f +13078,52036,72,2,f +13078,54200,19,1,f +13078,54200,0,4,f +13078,54200,15,4,f +13078,55981,71,8,f +13078,59900,42,2,f +13078,60474,72,1,f +13078,60475b,72,2,f +13078,60478,0,2,f +13078,60897,72,1,f +13078,61184,71,2,f +13078,61252,19,1,f +13078,61252,0,2,f +13078,61409,72,2,f +13078,6141,72,4,f +13078,6141,182,4,f +13078,6141,41,2,f +13078,6141,47,9,f +13078,61485,0,1,f +13078,63864,72,2,f +13078,63868,71,2,f +13078,64644,0,1,f +13078,6541,0,2,f +13078,6583,72,1,f +13078,6636,15,2,f +13078,75904,71,1,f +13078,85984,0,5,f +13078,87618,0,2,f +13078,87994,0,1,f +13078,88072,72,2,f +13078,88283,226,1,f +13078,89201,0,2,f +13078,92081,308,1,f +13078,92280,15,2,f +13078,92402,0,6,f +13078,92583,47,1,f +13078,92593,0,2,f +13078,92593,15,4,f +13078,970c00,272,1,f +13078,970c00pr0842,0,1,f +13078,970x194,15,1,f +13078,973pr2987c01,71,1,f +13078,973pr2993c01,0,1,f +13078,973pr2994c01,272,1,f +13078,98385,70,1,f +13078,99781,71,2,f +13079,11939,4,1,f +13079,11940,27,1,f +13079,13164,25,1,f +13079,13165,14,1,f +13079,13168,10,1,f +13079,13170,2,1,f +13079,2312c02,27,2,f +13079,2312c02,25,1,f +13079,2312c02,322,1,f +13079,28929,322,1,f +13079,29122,0,1,f +13079,31110pr0100,321,1,f +13079,31110pr0101,322,1,f +13079,31110pr0102,30,1,f +13079,31110pr0103,321,1,f +13079,98223,322,1,f +13079,98223,27,1,f +13079,98223,25,1,f +13080,2654,0,2,f +13080,2717,4,1,f +13080,2736,7,2,f +13080,2780,0,10,f +13080,2780,0,1,t +13080,2825,0,4,f +13080,3068b,0,1,f +13080,32005b,8,1,f +13080,32013,0,4,f +13080,32039,0,2,f +13080,32056,4,2,f +13080,32064a,0,2,f +13080,32068,4,4,f +13080,32069,0,4,f +13080,32123b,7,16,f +13080,32123b,7,1,t +13080,3702,0,2,f +13080,3705,0,4,f +13080,3706,0,5,f +13080,3707,0,3,f +13080,3710,0,2,f +13080,3713,7,2,f +13080,3749,7,8,f +13080,4032a,0,4,f +13080,6536,0,3,f +13080,6558,0,2,f +13080,6579,0,4,f +13080,6580,4,4,f +13080,6587,8,4,f +13080,6628,0,3,f +13080,6629,0,5,f +13080,6629,4,2,f +13080,6632,0,2,f +13080,78c09,0,2,f +13080,78c14,0,2,f +13080,rb00168,0,4,t +13080,rb00168,0,2,f +13082,18868a,41,1,f +13082,19981pr0019,41,1,f +13082,2540,71,2,f +13082,3023,47,6,f +13082,30602,47,2,f +13082,3626cpr0902,78,1,f +13082,3795,71,1,f +13082,3941,41,1,f +13082,3957a,47,2,f +13082,44676,47,4,f +13082,4740,47,2,f +13082,54200,47,1,t +13082,54200,47,2,f +13082,60470a,71,2,f +13082,61252,71,2,f +13082,6141,36,4,f +13082,6141,36,1,t +13082,6141,47,2,f +13082,6141,47,1,t +13082,95228,47,2,f +13082,970c00pr0296,4,1,f +13082,973pr1958c01b,4,1,f +13082,98725pr0001,0,1,f +13082,99253,297,1,f +13085,2412b,4,1,f +13085,2436,15,1,f +13085,2540,4,2,f +13085,2926,0,2,f +13085,3023,15,1,f +13085,3031,15,1,f +13085,3034,0,1,f +13085,3034,4,1,f +13085,3795,72,1,f +13085,44674,15,1,f +13085,50944pr0001,0,4,f +13085,50947,15,2,f +13085,50948,0,1,f +13085,50951,0,4,f +13085,54200,4,1,t +13085,54200,4,2,f +13085,6141,72,2,f +13085,6141,72,1,t +13085,61678,4,2,f +13087,2341,4,1,f +13087,2343,47,2,f +13087,2348b,41,1,f +13087,2349a,1,1,f +13087,2412b,15,1,f +13087,2420,15,2,f +13087,2435,2,1,f +13087,2436,1,1,f +13087,2439,8,1,f +13087,2441,1,1,f +13087,3001,14,2,f +13087,3001,1,2,f +13087,3001pr1,14,1,f +13087,3003,14,4,f +13087,3003,1,1,f +13087,3003pe1,14,2,f +13087,3004,1,4,f +13087,3004,14,6,f +13087,3004,4,3,f +13087,3005,14,1,f +13087,3005,4,2,f +13087,3008,15,2,f +13087,3008,14,4,f +13087,3009,14,9,f +13087,3009,4,1,f +13087,3010,4,3,f +13087,3010,15,4,f +13087,3020,15,2,f +13087,3020,1,1,f +13087,3020,7,2,f +13087,3021,4,2,f +13087,3022,1,1,f +13087,3022,14,2,f +13087,3022,0,2,f +13087,3022,4,2,f +13087,3023,4,2,f +13087,3023,1,3,f +13087,3023,14,4,f +13087,3024,36,2,f +13087,3024,46,2,f +13087,3034,14,2,f +13087,3034,1,2,f +13087,3037,4,3,f +13087,3038,4,3,f +13087,3039,15,2,f +13087,3039,14,2,f +13087,3039,4,4,f +13087,3040b,4,7,f +13087,3041,4,4,f +13087,3062b,0,1,f +13087,3062b,7,1,f +13087,3069bpr0099,15,3,f +13087,3185,4,6,f +13087,3186,4,2,f +13087,3187,4,2,f +13087,3622,4,2,f +13087,3623,15,2,f +13087,3626apr0001,14,2,f +13087,3641,0,4,f +13087,3660,4,1,f +13087,3660,14,5,f +13087,3665,4,4,f +13087,3665,14,2,f +13087,3710,1,2,f +13087,3741,2,2,f +13087,3742,14,3,f +13087,3742,14,1,t +13087,3742,1,3,f +13087,3742,1,1,t +13087,3747b,1,2,f +13087,3788,1,2,f +13087,3821,1,1,f +13087,3822,1,1,f +13087,3823,41,2,f +13087,3829c01,15,1,f +13087,3855,47,2,f +13087,3857,2,1,f +13087,3899,1,1,f +13087,3957a,7,1,f +13087,3960p04,15,1,f +13087,4033,15,2,f +13087,4079,15,3,f +13087,4315,1,1,f +13087,4345ap03,14,1,f +13087,4346p03,14,1,f +13087,4445,4,2,f +13087,4447,15,2,f +13087,4448,47,2,f +13087,4485,15,1,f +13087,4528,0,1,f +13087,4530,6,1,f +13087,4599a,4,1,f +13087,4624,15,4,f +13087,4740,8,1,f +13087,4740,36,1,f +13087,6141,0,2,f +13087,6141,46,2,f +13087,73312,15,2,f +13087,970c00,4,1,f +13087,970c00,7,1,f +13087,973p22c01,0,1,f +13087,973px62c01,15,1,f +13088,4170,0,1,f +13088,4171,47,2,f +13088,6141,36,2,f +13088,6141,46,2,f +13089,14210,2,3,f +13089,2039,15,2,f +13089,2419,14,1,f +13089,2432,0,1,f +13089,2435,2,2,f +13089,2445,1,2,f +13089,2456,1,8,f +13089,2456,4,4,f +13089,2456,14,8,f +13089,2458,72,1,f +13089,2460,71,2,f +13089,2479,0,2,f +13089,2508,0,2,f +13089,2569,42,2,f +13089,30000,72,2,f +13089,3001,1,40,f +13089,3001,4,40,f +13089,3001,15,28,f +13089,3001,2,32,f +13089,3001,0,22,f +13089,3001,70,16,f +13089,3001,14,42,f +13089,3001pr1,14,5,f +13089,3002,0,18,f +13089,3002,14,28,f +13089,3002,4,28,f +13089,3002,2,18,f +13089,3002,1,28,f +13089,3002,15,24,f +13089,3003,70,24,f +13089,3003,0,46,f +13089,3003,2,46,f +13089,3003,34,6,f +13089,3003,36,6,f +13089,3003,4,62,f +13089,3003,14,62,f +13089,3003,15,44,f +13089,3003,1,56,f +13089,3003pe2,4,2,f +13089,3003pe2,14,2,f +13089,3004,4,46,f +13089,3004,14,46,f +13089,3004,0,26,f +13089,3004,15,32,f +13089,3004,71,6,f +13089,3004,70,10,f +13089,3004,1,38,f +13089,3004,2,14,f +13089,3005pe1,15,10,f +13089,3005pe1,14,8,f +13089,3005pe1,2,2,f +13089,3007,14,6,f +13089,3007,1,8,f +13089,3007,4,2,f +13089,30076,4,2,f +13089,30078,2,1,f +13089,3008,1,8,f +13089,3008,14,10,f +13089,3008,4,4,f +13089,3009,15,7,f +13089,3009,1,18,f +13089,3009,2,8,f +13089,3009,14,18,f +13089,3009,70,2,f +13089,3009,0,8,f +13089,3009,4,12,f +13089,3010,14,32,f +13089,3010,15,22,f +13089,3010,71,2,f +13089,3010,4,36,f +13089,3010,2,18,f +13089,3010,1,28,f +13089,3010,0,22,f +13089,30104,72,1,f +13089,3020,71,2,f +13089,3020,4,8,f +13089,3020,1,6,f +13089,3020,0,2,f +13089,3020,14,8,f +13089,3021,71,2,f +13089,3021,14,4,f +13089,3021,1,2,f +13089,3021,4,4,f +13089,3022,1,2,f +13089,3022,71,2,f +13089,3022,4,2,f +13089,3022,14,2,f +13089,3030,1,2,f +13089,3032,1,2,f +13089,3034,4,4,f +13089,3035,1,1,f +13089,3037pr0005,1,1,f +13089,3039,33,8,f +13089,3039,4,8,f +13089,3039,1,8,f +13089,30391,0,16,f +13089,3062b,34,4,f +13089,3062b,36,4,f +13089,3062b,46,2,f +13089,3065,36,6,f +13089,3065,33,6,f +13089,3065,34,6,f +13089,3297,4,4,f +13089,3297,1,2,f +13089,3298,4,10,f +13089,3298,1,14,f +13089,3298,71,2,f +13089,3298p13,4,6,f +13089,3307,14,2,f +13089,3307,4,2,f +13089,33303,15,12,f +13089,3460,4,2,f +13089,3460,14,2,f +13089,3471,2,2,f +13089,3475b,72,2,f +13089,3622,4,4,f +13089,3622,14,4,f +13089,3622,1,4,f +13089,3660,1,6,f +13089,3660,4,6,f +13089,3666,14,2,f +13089,3666,4,2,f +13089,3675,1,4,f +13089,3675,4,4,f +13089,3710,4,2,f +13089,3710,71,2,f +13089,3730,0,2,f +13089,3747b,71,2,f +13089,3747b,4,4,f +13089,3747b,1,2,f +13089,3795,14,2,f +13089,3795,71,2,f +13089,3795,4,4,f +13089,3795,1,2,f +13089,3823,41,4,f +13089,3829c01,71,1,f +13089,3829c01,4,2,f +13089,3829c01,15,1,f +13089,3834,15,1,f +13089,3857,10,1,f +13089,3865,10,1,f +13089,3867,2,1,f +13089,3898,15,1,f +13089,3941,42,2,f +13089,3957a,80,2,f +13089,3957a,0,2,f +13089,3960p01,15,3,f +13089,4079,15,2,f +13089,4079,14,2,f +13089,4083,0,5,f +13089,4132,4,3,f +13089,4132,1,4,f +13089,4133,14,2,f +13089,4133,15,5,f +13089,4175,71,2,f +13089,4175,14,2,f +13089,4286,4,6,f +13089,4286,1,6,f +13089,4287,1,8,f +13089,4287,4,6,f +13089,4345b,15,2,f +13089,4346,15,2,f +13089,4485,4,1,f +13089,4485,0,1,f +13089,4617b,0,2,f +13089,4727,10,8,f +13089,4728,15,1,f +13089,4728,14,2,f +13089,4728,4,3,f +13089,4728,1,2,f +13089,4740,57,2,f +13089,55981,15,8,f +13089,55981,14,8,f +13089,600,15,4,f +13089,600,14,1,f +13089,6064,2,1,f +13089,6093,0,1,f +13089,6111,4,6,f +13089,6187,14,2,f +13089,6187,71,1,f +13089,6216,1,2,f +13089,6232,4,2,f +13089,6235,4,2,f +13089,6235,1,3,f +13089,6249,72,4,f +13089,6255,10,4,f +13089,6541,71,2,f +13089,6541,1,2,f +13089,970c00,71,2,f +13089,970c00,72,1,f +13089,970c00,4,1,f +13089,970c00,15,1,f +13089,973pr0805c01,15,1,f +13089,973pr1156c01,1,1,f +13089,973pr1187c01,0,1,f +13089,973pr1188c01,0,1,f +13089,973pr1196c01,15,1,f +13090,3626bpr0126,14,1,f +13090,4485,0,1,f +13090,970c00,0,1,f +13090,973px65c01,15,1,f +13092,x469ba,0,1,f +13093,1,15,1,f +13093,2,15,1,f +13093,3,1,2,f +13093,3005,47,2,f +13093,3008,15,1,f +13093,3010,15,4,f +13093,3068a,15,3,f +13093,3069a,1,1,f +13093,3069a,4,1,f +13093,3069a,7,1,f +13093,3069a,0,1,f +13093,3069a,15,9,f +13093,3070a,4,2,f +13093,837,15,1,f +13093,838,1,1,f +13095,32013,0,3,f +13095,32039,14,1,f +13095,32123b,7,2,f +13095,32193,0,2,f +13095,32310pb03,14,1,f +13095,32449,0,2,f +13095,3647,7,1,f +13095,3705,0,4,f +13095,3706,0,3,f +13095,3713,7,2,f +13095,3749,7,1,f +13095,4716,0,1,f +13095,6536,14,2,f +13095,6538b,14,1,f +13095,6553,0,4,f +13095,6632,14,2,f +13098,3003,14,1,f +13098,3004,4,2,f +13098,3004,14,2,f +13098,3010,14,2,f +13098,3020,4,1,f +13098,3022,4,2,f +13098,3034,14,2,f +13098,3039,47,3,f +13098,3040b,4,2,f +13098,3137c01,0,2,f +13098,3641,0,4,f +13099,11303,1,1,f +13099,11458,15,1,f +13099,11477,4,1,f +13099,15712,72,1,f +13099,2412b,72,4,f +13099,2540,1,2,f +13099,2780,0,1,f +13099,2780,0,1,t +13099,2877,72,2,f +13099,30089b,0,1,f +13099,3020,19,2,f +13099,3022,72,2,f +13099,3023,15,1,f +13099,3023,28,2,f +13099,3031,19,2,f +13099,30414,72,1,f +13099,3062b,41,2,f +13099,3062b,0,4,f +13099,3068bpr0137,15,1,f +13099,3069b,46,2,f +13099,3069bpr0030,15,1,f +13099,3069bpr0086,71,1,f +13099,3626cpr0389,14,1,f +13099,3626cpr0891,14,1,f +13099,3626cpr1579,14,1,f +13099,3626cpr1666,14,1,f +13099,3660,72,1,f +13099,3795,72,3,f +13099,3829c01,4,1,f +13099,3833,15,1,f +13099,3839b,0,1,f +13099,4006,0,1,f +13099,41854,15,1,f +13099,43898,15,1,f +13099,4590,72,1,f +13099,4740,41,2,f +13099,48336,15,1,f +13099,54200,28,1,t +13099,54200,28,2,f +13099,59900,297,1,f +13099,6014b,15,4,f +13099,60212,15,1,f +13099,60897,0,1,f +13099,61252,15,2,f +13099,6141,41,1,t +13099,6141,41,1,f +13099,6141,36,1,t +13099,6141,36,4,f +13099,6157,0,2,f +13099,63868,71,2,f +13099,63965,71,2,f +13099,64867,28,1,f +13099,6583,15,1,f +13099,85984,71,4,f +13099,87580,28,2,f +13099,87697,0,4,f +13099,87754,15,2,f +13099,87990,70,1,f +13099,87994,15,1,f +13099,87994,15,1,t +13099,89159,297,2,f +13099,92280,15,2,f +13099,970c00,272,2,f +13099,970c00,15,2,f +13099,973pr2992c01,15,2,f +13099,973pr2998c01,25,1,f +13099,973pr2999c01,15,1,f +13099,98138,47,2,f +13099,98138,47,1,t +13099,98138,15,1,t +13099,98138,15,2,f +13100,2420,14,2,f +13100,2423,2,1,f +13100,3004,2,2,f +13100,3004,4,1,f +13100,3004,70,3,f +13100,3005,4,2,f +13100,3005,2,4,f +13100,3005px2,14,2,f +13100,3010,2,1,f +13100,3023,14,5,f +13100,3024,2,1,f +13100,3040b,4,2,f +13100,3623,2,1,f +13100,3623,14,2,f +13100,3665,14,2,f +13100,3665,15,2,f +13100,3666,1,1,f +13100,3666,4,1,f +13100,3710,4,2,f +13100,3710,2,2,f +13100,3710,14,1,f +13100,3710,70,1,f +13100,3741,2,1,t +13100,3741,2,1,f +13100,3742,5,4,f +13100,3794a,15,1,f +13100,4070,2,4,f +13100,4286,1,2,f +13100,4286,14,2,f +13100,4460b,15,2,f +13100,6141,4,4,f +13100,6141,15,1,t +13100,6141,4,1,t +13100,6141,1,1,t +13100,6141,15,2,f +13100,6141,1,1,f +13101,2470,6,2,f +13101,2546,8,1,f +13101,3626bpr0001,14,1,f +13101,3795,0,1,f +13101,3839b,7,1,f +13101,4590,1,1,f +13101,4623,1,1,f +13101,4738a,6,1,f +13101,4739a,6,1,f +13101,6124,21,1,f +13101,6131,1,1,f +13101,6132,15,1,f +13101,6141,34,1,f +13101,6141,33,1,f +13101,6157,0,1,f +13101,970c00,1,1,f +13101,973p46c02,1,1,f +13103,3149c01,7,2,f +13103,3183a,15,2,f +13103,3184,7,2,f +13103,3324c01,7,1,f +13103,3639,7,1,f +13103,3640,7,1,f +13105,10199,10,1,f +13105,11169,10,4,f +13105,11198,322,1,f +13105,12146,15,1,f +13105,12592,0,1,f +13105,12602,4,2,f +13105,14294,322,1,f +13105,14721,4,1,f +13105,14721,10,1,f +13105,15515,27,2,f +13105,15516,70,1,f +13105,15575,14,1,f +13105,15576,4,1,f +13105,15580,191,2,f +13105,15868,27,1,f +13105,16598,322,1,f +13105,17494,4,1,f +13105,18652,27,1,f +13105,18720,15,1,f +13105,18783,70,8,f +13105,18921,27,1,f +13105,19010,4,1,f +13105,19011,84,1,f +13105,19013,71,1,f +13105,19030,0,1,f +13105,19053,71,1,f +13105,19084,179,1,f +13105,19349,191,1,f +13105,19350,27,1,f +13105,20678,41,4,f +13105,20820,15,1,f +13105,2300,14,2,f +13105,2301,4,4,f +13105,2302,191,2,f +13105,2302,10,2,f +13105,3011,484,10,f +13105,3011,321,3,f +13105,3011,27,2,f +13105,3011,14,2,f +13105,3011,4,2,f +13105,31023,15,1,f +13105,3437,4,1,f +13105,3437,484,11,f +13105,3437,2,1,f +13105,3437,14,3,f +13105,3437,15,5,f +13105,4066,484,2,f +13105,40666,10,1,f +13105,40666,191,1,f +13105,40666,15,2,f +13105,4196,10,1,f +13105,4199,10,2,f +13105,47510wpr0003,73,1,f +13105,47511pr0004,71,1,f +13105,51703,41,1,f +13105,61649,1,1,f +13105,64152,25,1,f +13105,6510,2,3,f +13105,6510,4,1,f +13105,6510,73,1,f +13105,6510,14,1,f +13105,76371,322,9,f +13105,76371,4,1,f +13105,76371,14,4,f +13105,87084,10,4,f +13105,88691,191,1,f +13105,88692,191,1,f +13105,88693,15,2,f +13105,89193,191,1,f +13105,92094,4,1,f +13105,94412,25,1,f +13105,98223,27,1,f +13105,98224,10,1,f +13105,98233,70,1,f +13105,98252,27,2,f +13106,51686,236,1,f +13106,clikits004,15,1,f +13106,clikits027pb02,5,1,f +13107,3062b,70,1,f +13107,3062b,41,1,f +13107,3176,71,1,f +13107,32530,72,1,f +13107,3673,71,1,f +13107,3673,71,1,t +13107,4497,179,1,f +13107,88289,308,1,f +13107,92747pr0001a,52,1,f +13110,20152pr0001,14,1,f +13110,3022,5,1,f +13110,3068bpr0249,5,1,f +13110,88646,0,1,f +13110,970c00,379,1,f +13110,973pr2972c01,326,1,f +13111,10199,10,1,f +13111,11198,4,1,f +13111,11335,4,1,f +13111,12053,15,1,f +13111,12057,15,1,f +13111,12602,1,1,f +13111,12651,1,2,f +13111,13355,0,1,f +13111,14013,71,1,f +13111,15320,71,1,f +13111,15579,14,1,f +13111,15580,191,10,f +13111,15933,321,1,f +13111,15934,321,1,f +13111,15935,321,1,f +13111,15944,4,1,f +13111,15954,27,1,f +13111,15994,484,1,f +13111,16087,4,2,f +13111,16205,1,1,f +13111,16236,191,1,f +13111,16874,15,1,f +13111,18921,15,1,f +13111,20820,15,1,f +13111,2291,4,2,f +13111,2302,191,8,f +13111,3011,191,1,f +13111,31023,15,1,f +13111,3437,27,1,f +13111,3437,14,2,f +13111,3437,4,18,f +13111,40666,15,1,f +13111,40666,4,2,f +13111,4196,10,1,f +13111,42234,15,2,f +13111,47511pr0003,15,1,f +13111,58086,70,1,f +13111,61649,4,2,f +13111,61896,321,1,f +13111,63710pr0013,19,1,f +13111,6510,25,1,f +13111,6510,10,1,f +13111,76371,4,16,f +13111,87084,4,4,f +13111,87313,0,1,f +13111,90265,15,2,f +13111,92094,4,1,f +13111,98233,15,2,f +13111,98233,191,4,f +13111,98233,10,2,f +13111,98239,2,2,f +13111,98459,70,1,f +13111,98460,70,4,f +13113,4186,7,1,f +13115,2160stk01,9999,1,t +13115,2160stk02,9999,1,t +13115,2412b,42,5,f +13115,2456,0,1,f +13115,2460,14,2,f +13115,2463,0,2,f +13115,2507,42,1,f +13115,2605c01,0,2,f +13115,2654,0,3,f +13115,3003,0,4,f +13115,3004,2,3,f +13115,30092,0,1,f +13115,3020,2,1,f +13115,3021,14,4,f +13115,3022,2,8,f +13115,3023,2,4,f +13115,3035,0,1,f +13115,30385,383,1,f +13115,3039,0,2,f +13115,3068bp51,0,1,f +13115,3069bp28,0,1,f +13115,3622,0,2,f +13115,3623,14,2,f +13115,3626bpb0057,14,1,f +13115,3648b,7,1,f +13115,3650c,7,1,f +13115,3660,14,2,f +13115,3679,7,4,f +13115,3680,0,4,f +13115,3747b,0,1,f +13115,3749,7,3,f +13115,3795,0,2,f +13115,3933,0,1,f +13115,3934,0,1,f +13115,3941,0,2,f +13115,4315,0,2,f +13115,4345b,42,1,f +13115,4346,42,1,f +13115,4519,0,2,f +13115,4589,42,1,f +13115,4623,0,2,f +13115,4856a,0,1,f +13115,4864a,0,2,f +13115,57467,383,2,f +13115,59275,0,2,f +13115,6032,2,2,f +13115,6039,2,2,f +13115,6040,2,1,f +13115,6041,42,3,f +13115,6042,2,2,f +13115,6043,2,2,f +13115,6061,0,2,f +13115,6084,42,1,f +13115,6085,0,1,f +13115,6089,8,1,f +13115,6090,42,1,f +13115,6104,0,1,f +13115,6117,42,1,f +13115,970x024,8,1,f +13115,973pb0020c01,0,1,f +13116,45449,13,1,f +13116,45451,45,1,f +13116,clikits037,5,1,f +13116,clikits080,45,1,f +13117,2340,15,2,f +13117,2357,15,2,f +13117,2412b,71,2,f +13117,2412b,15,2,f +13117,2431pr0028,72,1,f +13117,2516,14,1,f +13117,2540,15,1,f +13117,2540,4,1,f +13117,2639,4,2,f +13117,2654,71,3,f +13117,3001,15,1,f +13117,3010,4,2,f +13117,3010,15,1,f +13117,30162,72,1,f +13117,3020,15,1,f +13117,3020,4,1,f +13117,3023,72,1,f +13117,3024,34,1,f +13117,3024,36,1,f +13117,30283,72,2,f +13117,3031,71,1,f +13117,30377,71,1,t +13117,30377,71,2,f +13117,3040b,72,2,f +13117,3040b,4,2,f +13117,3070b,33,1,t +13117,3070b,33,2,f +13117,3626bpr0282,14,1,f +13117,3660,4,2,f +13117,3710,4,1,f +13117,3747a,72,2,f +13117,3794a,15,2,f +13117,3795,4,1,f +13117,3834,15,1,f +13117,3840,25,1,f +13117,3962b,0,1,f +13117,4085c,15,2,f +13117,41764,4,1,f +13117,41765,4,1,f +13117,41769,4,2,f +13117,41770,4,2,f +13117,42022,72,2,f +13117,44570,4,1,f +13117,44822,0,1,f +13117,4589,14,1,f +13117,47406,72,1,f +13117,47407,4,1,f +13117,6238,40,1,f +13117,7043stk01,9999,1,t +13117,970c00,0,1,f +13117,973pr1667c01,0,1,f +13118,10884,2,2,f +13118,15573,4,1,f +13118,15619,4,1,f +13118,15619,4,1,t +13118,15705,308,1,f +13118,18950,34,2,f +13118,18962,19,1,f +13118,2431,70,1,f +13118,2540,19,2,f +13118,3002,72,1,f +13118,3003,28,2,f +13118,3004,71,1,f +13118,3010,72,2,f +13118,30136,70,4,f +13118,30173b,297,1,f +13118,3031,2,1,f +13118,30503,2,1,f +13118,3062b,72,1,f +13118,3069b,1,1,f +13118,3069b,70,2,f +13118,32000,72,1,f +13118,32013,72,2,f +13118,3626cpr1365,14,1,f +13118,3626cpr1568,14,1,f +13118,3673,71,1,t +13118,3673,71,2,f +13118,3710,19,4,f +13118,3710,0,2,f +13118,3941,72,2,f +13118,53454,148,2,f +13118,54200,0,2,f +13118,54200,0,1,t +13118,60752,28,2,f +13118,6141,4,2,f +13118,6141,4,1,t +13118,6266,15,1,f +13118,6266,15,1,t +13118,64567,297,1,t +13118,64567,297,1,f +13118,92691,15,1,f +13118,970c00pr0761,4,1,f +13118,970c00pr0767,85,1,f +13118,973pr2846c01,4,1,f +13118,973pr2852c01,14,1,f +13119,2780,0,4,f +13119,30293,6,1,f +13119,30294,6,1,f +13119,32013,0,1,f +13119,32013,19,1,f +13119,32039,0,1,f +13119,32062,0,4,f +13119,32073,0,1,f +13119,32172,0,2,f +13119,32173,19,2,f +13119,32174,0,4,f +13119,32269,7,1,f +13119,32270,7,2,f +13119,32474,0,2,f +13119,32475,6,2,f +13119,32482,19,2,f +13119,32489,6,1,f +13119,32553,7,1,f +13119,32554,57,1,f +13119,32560,19,2,f +13119,32568,6,1,f +13119,3706,0,1,f +13119,3713,7,2,f +13119,4519,0,8,f +13119,6553,19,1,f +13121,3242b,7,1,f +13122,122c01,7,2,f +13122,2336p35,1,1,f +13122,2342,15,1,f +13122,298c02,0,2,f +13122,3003,1,2,f +13122,3020,1,1,f +13122,3022,1,1,f +13122,3023,15,1,f +13122,3039,1,2,f +13122,3185,1,2,f +13122,3298,1,4,f +13122,3626apr0001,14,2,f +13122,3639,1,1,f +13122,3640,1,1,f +13122,3795,15,1,f +13122,3829c01,1,1,f +13122,3838,4,1,f +13122,3838,14,1,f +13122,3839b,15,3,f +13122,3842b,14,1,f +13122,3842b,4,1,f +13122,3940b,15,1,f +13122,3959,15,2,f +13122,4032a,0,2,f +13122,4288,0,4,f +13122,4349,15,2,f +13122,4588,0,1,f +13122,4589,1,2,f +13122,4589,36,2,f +13122,4590,15,4,f +13122,4595,15,2,f +13122,4598,1,1,f +13122,4598,15,1,f +13122,4740,36,2,f +13122,4740,46,2,f +13122,4859,15,1,f +13122,73590c01a,15,1,f +13122,970c00,14,1,f +13122,970c00,4,1,f +13122,973p90c02,4,1,f +13122,973p90c04,14,1,f +13123,2412b,0,2,f +13123,2412b,72,2,f +13123,2419,1,1,f +13123,2431,0,4,f +13123,2436,0,2,f +13123,2437,47,1,f +13123,2479,0,2,f +13123,2489,72,2,f +13123,2653,0,2,f +13123,2654,0,2,f +13123,2780,0,2,f +13123,3001,1,1,f +13123,3004,1,3,f +13123,3005,15,5,f +13123,3005,1,4,f +13123,3009,71,2,f +13123,3010,71,3,f +13123,3020,1,2,f +13123,3020,71,3,f +13123,3021,72,1,f +13123,3022,0,2,f +13123,3022,71,3,f +13123,3023,1,3,f +13123,3024,1,7,f +13123,3024,46,2,f +13123,3024,0,2,f +13123,3024,15,10,f +13123,3034,71,1,f +13123,3035,72,2,f +13123,3038,72,2,f +13123,30395,72,1,f +13123,3040b,1,3,f +13123,30414,1,2,f +13123,30592,72,1,f +13123,3068b,15,1,f +13123,3069b,25,4,f +13123,32000,71,3,f +13123,32013,0,2,f +13123,32028,71,4,f +13123,32062,4,4,f +13123,32064b,72,2,f +13123,32123b,71,2,f +13123,32125,71,1,f +13123,32192,0,4,f +13123,32530,0,2,f +13123,3298,272,2,f +13123,3460,1,2,f +13123,3622,1,2,f +13123,3623,1,4,f +13123,3623,0,5,f +13123,3641,0,2,f +13123,3660,1,4,f +13123,3666,1,3,f +13123,3666,15,3,f +13123,3666,0,4,f +13123,3673,71,3,f +13123,3700,0,2,f +13123,3705,0,3,f +13123,3706,0,1,f +13123,3710,1,5,f +13123,3710,15,2,f +13123,3794a,0,2,f +13123,3794a,15,4,f +13123,3795,0,4,f +13123,3937,72,2,f +13123,3941,14,3,f +13123,4070,0,4,f +13123,41764,71,1,f +13123,41765,71,1,f +13123,41769,1,4,f +13123,41769,0,4,f +13123,41770,0,4,f +13123,41770,1,3,f +13123,42023,71,4,f +13123,42610,71,2,f +13123,4274,1,5,f +13123,4286,1,4,f +13123,43722,71,1,f +13123,43723,71,1,f +13123,43898,72,1,f +13123,43898,15,1,f +13123,44301a,71,1,f +13123,44302a,0,1,f +13123,44728,71,2,f +13123,4477,71,2,f +13123,4477,0,4,f +13123,4624,71,2,f +13123,4870,71,1,f +13123,51011,0,2,f +13123,54200,182,2,f +13123,54200,272,2,f +13123,54200,25,2,f +13123,54200,47,4,f +13123,54383,15,1,f +13123,54384,15,1,f +13123,56823c100,0,1,f +13123,59443,71,1,f +13123,60594,0,2,f +13123,6091,15,2,f +13123,61100c01,71,1,f +13123,6134,0,2,f +13123,6141,25,4,f +13123,6141,71,1,t +13123,6141,36,1,f +13123,6141,71,4,f +13123,6141,25,1,t +13123,6141,36,1,t +13123,61510,71,1,f +13123,6233,71,2,f +13123,6564,15,2,f +13123,6565,15,2,f +13123,6636,272,2,f +13125,3001,14,1,f +13125,3003,14,1,f +13125,30218,15,1,f +13125,30219,15,1,f +13125,30220,462,1,f +13125,3837,1,1,f +13125,3849,15,1,f +13125,3942b,14,1,f +13125,3957a,15,1,f +13125,4495b,5,1,f +13125,6075,14,1,f +13125,6141,36,2,f +13125,6228b,7,1,f +13125,70973c01,5,1,f +13125,belvfem44,-1,1,f +13125,x772px3,47,1,f +13127,2412b,7,2,f +13127,2412b,15,4,f +13127,2419,4,1,f +13127,2420,4,2,f +13127,2431,15,2,f +13127,2431,4,2,f +13127,2432,7,2,f +13127,2445,8,2,f +13127,2456,4,2,f +13127,2458,8,2,f +13127,2877,8,2,f +13127,2877,4,1,f +13127,3001,0,2,f +13127,3001,4,3,f +13127,3003,4,1,f +13127,3004,0,1,f +13127,3004,4,6,f +13127,3005,4,2,f +13127,3006,4,1,f +13127,3009,4,5,f +13127,3010,8,2,f +13127,3010,4,8,f +13127,30157,7,2,f +13127,3020,15,2,f +13127,3020,8,1,f +13127,3020,4,3,f +13127,3021,4,5,f +13127,3021,15,1,f +13127,3021,8,2,f +13127,3022,15,1,f +13127,3023,8,1,f +13127,3023,4,4,f +13127,3023,0,2,f +13127,3023,47,2,f +13127,3023,15,4,f +13127,3024,0,2,f +13127,3024,47,2,f +13127,3024,4,4,f +13127,3024,46,4,f +13127,30285,15,10,f +13127,3031,8,1,f +13127,3033,8,2,f +13127,3034,7,1,f +13127,30363,4,1,f +13127,30388,4,2,f +13127,30389b,4,1,f +13127,3039,4,2,f +13127,30391,0,6,f +13127,30395,8,1,f +13127,30396,0,1,f +13127,3040b,4,2,f +13127,30414,8,3,f +13127,30603,0,1,f +13127,3062b,0,1,f +13127,30648,0,4,f +13127,3068b,4,1,f +13127,3176,0,1,f +13127,3298,15,1,f +13127,3460,7,2,f +13127,3622,8,2,f +13127,3622,4,4,f +13127,3623,4,4,f +13127,3660,0,1,f +13127,3660,4,5,f +13127,3665,4,6,f +13127,3666,7,5,f +13127,3666,4,2,f +13127,3673,7,6,f +13127,3679,7,2,f +13127,3680,4,2,f +13127,3684,8,1,f +13127,3702,0,2,f +13127,3710,7,4,f +13127,3710,4,4,f +13127,3710,8,1,f +13127,3710,0,2,f +13127,3730,0,1,f +13127,3731,0,1,f +13127,3747b,4,2,f +13127,3794a,15,1,f +13127,3794a,4,2,f +13127,3795,4,3,f +13127,3795,8,1,f +13127,3795,15,1,f +13127,3795,7,1,f +13127,3823,47,2,f +13127,3832,8,2,f +13127,3832,4,2,f +13127,3937,4,2,f +13127,3957a,0,2,f +13127,4032a,0,1,f +13127,4070,0,2,f +13127,4070,8,2,f +13127,4081b,4,2,f +13127,41767,4,1,f +13127,41768,4,1,f +13127,41769,4,1,f +13127,41770,4,1,f +13127,41862,8,2,f +13127,42023,4,2,f +13127,4274,7,2,f +13127,4274,7,1,t +13127,4282,8,2,f +13127,4286,4,4,f +13127,4286,15,2,f +13127,4287,4,2,f +13127,43710,4,1,f +13127,43710,15,1,f +13127,43711,15,1,f +13127,43711,4,1,f +13127,43719,4,1,f +13127,43720,4,2,f +13127,43721,4,2,f +13127,43722,4,1,f +13127,43723,4,1,f +13127,44126,15,1,f +13127,44661,15,1,f +13127,4477,7,2,f +13127,4589,0,1,f +13127,4733,7,2,f +13127,6134,15,2,f +13127,6141,36,1,t +13127,6141,14,4,f +13127,6141,47,2,f +13127,6141,7,1,t +13127,6141,47,1,t +13127,6141,7,4,f +13127,6141,15,2,f +13127,6141,15,1,t +13127,6141,14,1,t +13127,6141,0,2,f +13127,6141,4,2,f +13127,6141,36,6,f +13127,6141,0,1,t +13127,6141,4,1,t +13127,6215,4,1,f +13127,6238,47,1,f +13127,6249,8,3,f +13127,6564,4,1,f +13127,6565,4,1,f +13128,23306,71,1,f +13128,2340,15,1,f +13128,2362b,0,2,f +13128,2377,15,2,f +13128,2412b,72,1,t +13128,2412b,72,15,f +13128,2431,15,1,f +13128,2431,72,4,f +13128,2432,0,4,f +13128,2436,15,2,f +13128,2437,40,2,f +13128,2444,15,1,f +13128,2446,15,2,f +13128,2447,40,2,f +13128,2454a,15,16,f +13128,2454a,72,1,f +13128,2456,15,7,f +13128,2460,15,1,f +13128,2465,72,1,f +13128,2486,15,2,f +13128,2540,15,1,f +13128,2569,0,1,f +13128,2569,0,1,t +13128,2654,46,3,f +13128,2780,0,14,f +13128,2780,0,4,t +13128,3001,15,2,f +13128,3002,15,1,f +13128,3002,14,1,f +13128,3003,15,8,f +13128,3004,1,2,f +13128,3004,72,7,f +13128,3004,15,25,f +13128,30043,71,3,f +13128,30055,0,14,f +13128,3006,0,1,f +13128,3006,72,1,f +13128,3007,15,4,f +13128,3008,72,4,f +13128,3008,0,2,f +13128,3008,15,3,f +13128,30089,0,1,f +13128,3009,0,7,f +13128,3010,15,1,f +13128,3010,0,4,f +13128,3010,72,13,f +13128,30134,0,1,f +13128,30145,15,4,f +13128,30151a,4,1,f +13128,30152pat0001,0,1,f +13128,30162,72,1,f +13128,30179,0,2,f +13128,30181,0,3,f +13128,30185c01,0,2,f +13128,3020,72,3,f +13128,3021,15,1,f +13128,3022,15,2,f +13128,3022,0,8,f +13128,3022,72,1,f +13128,3023,46,2,f +13128,3023,15,4,f +13128,3023,1,2,f +13128,3023,14,2,f +13128,30248,0,1,f +13128,3031,72,1,f +13128,3031,15,1,f +13128,3032,72,1,f +13128,30361c,15,3,f +13128,30365,0,4,f +13128,3037,15,1,f +13128,3039pr0001,15,1,f +13128,3039pr0002,15,1,f +13128,30517,0,4,f +13128,30552,72,3,f +13128,30553,0,1,f +13128,30586,71,2,f +13128,30592,71,1,f +13128,30644,0,1,f +13128,3065,46,6,f +13128,3068b,15,7,f +13128,3068b,14,2,f +13128,3068b,72,1,f +13128,3068bpb0061,15,1,f +13128,3069b,33,1,f +13128,3069b,0,3,f +13128,3069b,14,4,f +13128,3069b,15,3,f +13128,3069bp02,71,4,f +13128,32028,0,1,f +13128,3245b,15,6,f +13128,3245b,72,4,f +13128,32530,72,6,f +13128,32532,15,2,f +13128,3460,0,1,f +13128,3460,72,2,f +13128,3624,15,3,f +13128,3626bpr0387,14,1,f +13128,3626bpr0409,14,2,f +13128,3626bpr0410,14,2,f +13128,3626bpr0411,14,1,f +13128,3626bpx304,14,1,f +13128,3660,15,3,f +13128,3665,15,6,f +13128,3666,0,1,f +13128,3673,71,1,t +13128,3673,71,1,f +13128,3679,71,3,f +13128,3680,14,3,f +13128,3684,15,2,f +13128,3684,72,9,f +13128,3700,71,8,f +13128,3710,72,2,f +13128,3749,19,1,f +13128,3794a,71,3,f +13128,3795,72,1,f +13128,3795,15,1,f +13128,3829c01,1,1,f +13128,3894,15,4,f +13128,3899,14,1,f +13128,3900,15,2,f +13128,3939,15,1,f +13128,3957a,15,4,f +13128,3962b,0,2,f +13128,3962b,72,3,f +13128,3963,71,5,f +13128,4032a,0,1,f +13128,4070,15,4,f +13128,4079,14,4,f +13128,4085c,15,8,f +13128,41334,0,2,f +13128,4151,72,1,f +13128,4162,14,2,f +13128,4162,15,2,f +13128,41770,15,1,f +13128,4202,0,6,f +13128,42022,15,2,f +13128,4209,15,1,f +13128,4215b,15,2,f +13128,4285b,72,1,f +13128,4286,15,2,f +13128,43337,15,2,f +13128,4349,4,2,f +13128,4360,0,3,f +13128,43713,15,2,f +13128,44301a,15,2,f +13128,44568,15,1,f +13128,44570,15,1,f +13128,4460b,72,4,f +13128,4460b,15,12,f +13128,45677,15,1,f +13128,4589,71,4,f +13128,4589,36,1,f +13128,4589,34,1,f +13128,4589,33,3,f +13128,4599a,71,1,f +13128,4599a,15,2,f +13128,4617b,0,1,f +13128,46212,40,2,f +13128,4697b,71,1,t +13128,4697b,71,2,f +13128,4740,71,1,f +13128,47973,72,1,f +13128,48183,72,1,f +13128,4858,15,1,f +13128,4861,15,1,f +13128,4862,40,2,f +13128,4865a,15,2,f +13128,4871,0,3,f +13128,4872,40,2,f +13128,48729a,72,2,f +13128,48812,70,2,f +13128,50745,72,4,f +13128,50859a,0,1,f +13128,50861,0,2,f +13128,50862,71,2,f +13128,50950,15,2,f +13128,51542,71,1,f +13128,51739,15,1,f +13128,52036,72,1,f +13128,52038,15,2,f +13128,52040,72,3,f +13128,54200,46,3,f +13128,54200,36,3,f +13128,54200,33,6,f +13128,6014b,15,4,f +13128,6015,0,4,f +13128,6081,15,2,f +13128,6106,0,4,f +13128,6112,0,2,f +13128,6140,0,4,f +13128,6141,15,1,t +13128,6141,36,7,f +13128,6141,15,8,f +13128,6141,46,2,t +13128,6141,47,1,t +13128,6141,33,2,t +13128,6141,47,1,f +13128,6141,34,2,t +13128,6141,46,3,f +13128,6141,36,3,t +13128,6141,34,2,f +13128,6141,33,10,f +13128,6157,0,2,f +13128,6160c04,0,2,f +13128,6180,0,1,f +13128,6212,72,2,f +13128,6232,15,2,f +13128,6583,0,5,f +13128,6587,72,1,f +13128,75535,15,1,f +13128,76041c02,0,2,f +13128,89536,15,1,f +13128,970c00,72,2,f +13128,970c00,0,5,f +13128,973pr1186c01,0,2,f +13128,973pr1188c01,0,2,f +13128,973pr1188c02,0,1,f +13128,973pr1197c01,15,2,f +13129,3024,19,2,f +13129,3024,70,2,f +13129,3040b,72,1,f +13129,3710,72,1,f +13129,43722,72,1,f +13129,43723,72,1,f +13129,4595,71,1,f +13129,49668,179,2,f +13129,54200,40,1,f +13129,54200,72,1,t +13129,54200,72,2,f +13129,54200,40,1,t +13130,2446,320,1,f +13130,2454a,0,5,f +13130,2551,70,1,f +13130,2554,0,2,f +13130,2586px16,320,1,f +13130,2587pb09,320,1,f +13130,2825,71,2,f +13130,3004,0,16,f +13130,3005,0,3,f +13130,3005,71,4,f +13130,3009,0,2,f +13130,30134,70,1,f +13130,30156pb02,72,2,f +13130,3020,1,1,f +13130,3020,320,4,f +13130,3024,71,2,f +13130,3024,71,1,t +13130,30246,0,2,f +13130,3027,28,1,f +13130,3029,28,1,f +13130,3029,320,4,f +13130,3031,72,1,f +13130,3032,1,1,f +13130,3034,0,1,f +13130,3062b,57,6,f +13130,3062b,0,4,f +13130,32209,72,1,f +13130,3245b,72,1,f +13130,32530,0,2,f +13130,3307,71,1,f +13130,3308,0,1,f +13130,3455,0,2,f +13130,3581,71,2,f +13130,3622,0,1,f +13130,3626bpb0217,14,1,f +13130,3626bpr0350,14,1,f +13130,3660,0,2,f +13130,3684,72,3,f +13130,3684,320,2,f +13130,3713,71,1,t +13130,3713,71,1,f +13130,3794a,72,1,f +13130,3795,320,1,f +13130,3830,0,2,f +13130,3831,0,2,f +13130,3848,0,1,f +13130,3937,71,1,f +13130,3941,0,1,f +13130,3957a,0,3,f +13130,4085c,72,2,f +13130,4095,0,2,f +13130,43337,72,4,f +13130,43888,72,5,f +13130,4460a,0,2,f +13130,4495a,320,4,f +13130,4519,71,2,f +13130,48489,0,1,f +13130,48493,132,1,f +13130,48495,0,1,f +13130,4871,0,1,f +13130,6019,71,3,f +13130,6066,0,2,f +13130,6082,70,1,f +13130,6112,0,1,f +13130,6126a,57,2,f +13130,6134,0,1,f +13130,6538b,72,1,f +13130,6587,72,1,f +13130,970x154,0,2,f +13130,973c41,0,1,f +13130,973pb0347c01,0,1,f +13130,bb181set,47,1,f +13131,3673,7,100,f +13137,2815,0,25,f +13137,4185,7,25,f +13139,2357,72,304,f +13139,2357,19,12,f +13139,2420,72,230,f +13139,2431,0,8,f +13139,2431,72,2,f +13139,2445,72,4,f +13139,2449,72,64,f +13139,2450,0,6,f +13139,2450,72,4,f +13139,2453a,72,8,f +13139,2456,72,1,f +13139,2456,19,4,f +13139,2555,72,2,f +13139,2780,0,16,f +13139,2780,0,2,t +13139,3001,19,6,f +13139,3003,72,149,f +13139,3004,72,30,f +13139,3004,19,16,f +13139,3005,72,268,f +13139,3005,19,2,f +13139,3007,19,4,f +13139,3008,72,20,f +13139,3008,19,12,f +13139,3009,72,8,f +13139,3010,19,10,f +13139,3020,2,2,f +13139,3020,72,4,f +13139,3021,72,7,f +13139,3022,72,208,f +13139,3023,0,6,f +13139,3023,47,18,f +13139,3023,72,1,t +13139,3023,72,240,f +13139,3024,72,156,f +13139,3024,70,2,f +13139,3024,19,24,f +13139,3031,72,2,f +13139,3032,72,8,f +13139,3034,72,17,f +13139,3039,19,24,f +13139,3062b,72,4,f +13139,3068b,71,158,f +13139,3069b,71,20,f +13139,3069b,14,3,f +13139,3069b,4,4,f +13139,3069b,1,1,f +13139,3069b,15,1,f +13139,3069b,19,4,f +13139,3070b,71,3,t +13139,3070b,70,1,t +13139,3070b,72,1,t +13139,3070b,19,1,t +13139,3070b,19,2,f +13139,3070b,72,4,f +13139,3070b,70,2,f +13139,3070b,71,16,f +13139,32000,72,36,f +13139,32018,72,14,f +13139,3460,0,14,f +13139,3460,72,62,f +13139,3622,72,4,f +13139,3623,72,100,f +13139,3633,72,254,f +13139,3633,72,1,t +13139,3660,72,68,f +13139,3666,72,60,f +13139,3679,71,1,f +13139,3680,0,1,f +13139,3703,72,4,f +13139,3710,72,1,t +13139,3710,72,42,f +13139,3710,70,20,f +13139,3747b,72,32,f +13139,3794a,71,14,f +13139,3794a,72,60,f +13139,3795,72,44,f +13139,3811,2,4,f +13139,3832,72,24,f +13139,3895,72,2,f +13139,3941,72,6,f +13139,3957a,47,1,f +13139,3958,19,4,f +13139,4032a,71,1,f +13139,4070,72,64,f +13139,4085c,4,2,f +13139,4085c,14,2,f +13139,4151,0,13,f +13139,4162,0,20,f +13139,4162,72,14,f +13139,4162,71,4,f +13139,42446,72,100,f +13139,43337,71,8,f +13139,44301a,0,12,f +13139,44301a,72,8,f +13139,44302a,4,3,f +13139,44302a,72,8,f +13139,44302a,0,6,f +13139,44302a,14,3,f +13139,4477,0,6,f +13139,4477,72,12,f +13139,4519,71,6,f +13139,4733,72,4,f +13139,4740,71,2,f +13139,48288,72,11,f +13139,4864b,47,60,f +13139,54200,72,20,f +13139,58827,72,6,f +13139,6019,72,1,f +13139,6111,19,6,f +13139,6141,47,1,t +13139,6141,4,1,t +13139,6141,47,4,f +13139,6141,0,1,t +13139,6141,0,6,f +13139,6141,14,1,t +13139,6141,14,2,f +13139,6141,4,2,f +13139,6636,0,14,f +13140,2357,378,3,f +13140,2357,7,1,f +13140,2357,70,5,f +13140,2357,8,1,f +13140,2362b,7,2,f +13140,2362b,8,3,f +13140,2412b,25,2,f +13140,2420,25,1,f +13140,2420,8,1,f +13140,2431,27,2,f +13140,2431,6,3,f +13140,2431,378,4,f +13140,2449,379,1,f +13140,2450,379,3,f +13140,2450,19,1,f +13140,2450,72,1,f +13140,2453a,14,1,f +13140,2456,8,1,f +13140,2456,2,1,f +13140,2540,27,1,f +13140,2877,70,2,f +13140,3001,212,1,f +13140,3001,85,1,f +13140,3001,1001,1,f +13140,3001,3,1,f +13140,3001,5,2,f +13140,3001,29,4,f +13140,3001,378,1,f +13140,3001,22,1,f +13140,3002,484,1,f +13140,3002,6,1,f +13140,3002,7,1,f +13140,3002,379,2,f +13140,3003,22,2,f +13140,3003,3,4,f +13140,3003,7,8,f +13140,3003,5,2,f +13140,3004,288,2,f +13140,3004,69,8,f +13140,3004,7,3,f +13140,3004,378,4,f +13140,3004,85,7,f +13140,3004,3,1,f +13140,3005,462,5,f +13140,3005,6,6,f +13140,3005,378,6,f +13140,3005,118,1,f +13140,3005,85,8,f +13140,3005,13,2,f +13140,3007,25,1,f +13140,3007,7,1,f +13140,3008,8,1,f +13140,3008,7,2,f +13140,3009,85,1,f +13140,3009,378,1,f +13140,3009,7,1,f +13140,3010,22,1,f +13140,3010,379,2,f +13140,3010,69,1,f +13140,3010,484,1,f +13140,3010,462,1,f +13140,3010,85,2,f +13140,30136,7,2,f +13140,30136,72,4,f +13140,30136,70,10,f +13140,30137,15,2,f +13140,30137,70,3,f +13140,30137,19,2,f +13140,3020,69,1,f +13140,3021,8,4,f +13140,3021,27,2,f +13140,3021,462,3,f +13140,3021,7,2,f +13140,3021,73,7,f +13140,3021,379,4,f +13140,3022,379,3,f +13140,3022,22,5,f +13140,3022,27,10,f +13140,3022,484,1,f +13140,3022,378,1,f +13140,3022,366,1,f +13140,3031,379,1,f +13140,3031,4,1,f +13140,3034,6,1,f +13140,3034,8,2,f +13140,3034,378,1,f +13140,30357,72,2,f +13140,30363,1,2,f +13140,30367b,15,1,f +13140,30367b,19,1,f +13140,30367b,4,2,f +13140,30367b,25,2,f +13140,3039,7,3,f +13140,3039,378,2,f +13140,3039,36,2,f +13140,3040b,272,1,f +13140,3040b,36,2,f +13140,3040b,378,2,f +13140,3040b,7,2,f +13140,30414,8,2,f +13140,30414,7,2,f +13140,3043,484,1,f +13140,3043,19,1,f +13140,3045,72,3,f +13140,3048c,6,2,f +13140,3048c,378,2,f +13140,3048c,2,1,f +13140,3048c,27,1,f +13140,30602,112,2,f +13140,30602,1,1,f +13140,30603,0,5,f +13140,3062b,272,2,f +13140,3062b,1,3,f +13140,3062b,484,5,f +13140,3062b,73,3,f +13140,3062b,41,4,f +13140,3063b,1,2,f +13140,3063b,72,1,f +13140,3068b,8,2,f +13140,3068b,6,3,f +13140,3068b,13,1,f +13140,3068b,378,8,f +13140,3069b,27,1,f +13140,3176,2,1,f +13140,3185,0,5,f +13140,3297,1,1,f +13140,3298,320,1,f +13140,3298,7,6,f +13140,3298,2,1,f +13140,3298,3,1,f +13140,3298,25,3,f +13140,3298,272,1,f +13140,3299,1,1,f +13140,3300,72,1,f +13140,3300,1,1,f +13140,3300,2,1,f +13140,3307,4,1,f +13140,33303,0,1,f +13140,3455,7,1,f +13140,3460,1,4,f +13140,3460,6,1,f +13140,3460,8,5,f +13140,3622,484,1,f +13140,3622,85,1,f +13140,3622,7,1,f +13140,3622,378,1,f +13140,3622,5,2,f +13140,3623,8,1,f +13140,3623,6,4,f +13140,3623,288,1,f +13140,3623,379,2,f +13140,3623,7,4,f +13140,3626b,320,1,f +13140,3626b,8,3,f +13140,3626b,72,1,f +13140,3626b,25,1,f +13140,3626b,92,1,f +13140,3626b,10,2,f +13140,3633,4,4,f +13140,3659,7,1,f +13140,3659,8,1,f +13140,3660,8,2,f +13140,3665,27,3,f +13140,3665,7,1,f +13140,3666,73,1,f +13140,3666,379,1,f +13140,3710,379,3,f +13140,3710,8,4,f +13140,3710,462,1,f +13140,3710,10,1,f +13140,3710,6,1,f +13140,3710,288,2,f +13140,3710,272,2,f +13140,3731,4,1,f +13140,3747a,7,1,f +13140,3795,7,4,f +13140,3795,8,4,f +13140,3942c,4,1,f +13140,3956,71,1,f +13140,3957a,47,3,f +13140,4032a,25,2,f +13140,4032b,2,5,f +13140,4070,272,3,f +13140,4070,27,1,f +13140,4070,73,2,f +13140,4070,72,5,f +13140,4081b,15,1,f +13140,4081b,7,1,f +13140,4085c,7,2,f +13140,4085c,14,1,f +13140,40996,33,1,f +13140,4150,4,1,f +13140,4150,14,3,f +13140,4162,1,2,f +13140,4162,7,4,f +13140,4286,70,4,f +13140,4286,73,4,f +13140,4286,8,1,f +13140,4286,112,2,f +13140,4286,7,2,f +13140,4286,378,2,f +13140,4287,71,2,f +13140,43337,71,2,f +13140,43337,7,1,f +13140,4490,72,2,f +13140,4490,7,1,f +13140,4495b,4,1,f +13140,4589,8,1,f +13140,4589,378,3,f +13140,4589,2,2,f +13140,4623,70,1,f +13140,4728,73,1,f +13140,4740,143,1,f +13140,4740,47,6,f +13140,4740,7,2,f +13140,4740,8,2,f +13140,4740,14,1,f +13140,4855,8,1,f +13140,4855,6,1,f +13140,4859,7,1,f +13140,4864b,1,3,f +13140,4865a,484,2,f +13140,4865a,320,1,f +13140,4871,6,1,f +13140,6081,73,1,f +13140,6091,85,1,f +13140,6091,14,1,f +13140,6111,19,3,f +13140,6191,0,1,f +13140,6636,6,1,f +13146,15,1,1,f +13146,15,4,2,f +13146,17,0,1,f +13146,17,15,1,f +13146,17,4,1,f +13146,21,47,1,f +13146,3001a,1,3,f +13146,3004,1,1,f +13146,3004,15,1,f +13146,3004,0,2,f +13146,3010,1,6,f +13146,3010p20c,1,1,f +13146,3020,1,2,f +13146,3021,0,1,f +13146,3022,0,1,f +13146,3030,1,2,f +13146,3039,0,1,f +13146,3069a,0,1,f +13146,3137c01,0,2,f +13146,3144,79,1,f +13146,3188,1,1,f +13146,3189,1,1,f +13146,3481,15,1,f +13146,3624,4,1,f +13146,3625,0,1,f +13146,3626a,14,3,f +13146,3629,0,1,f +13146,3641,0,4,f +13146,3660,15,1,f +13146,3660,1,1,f +13147,15068,15,2,f +13147,18892,0,2,f +13147,2654,33,1,f +13147,3031,15,1,f +13147,3034,72,1,f +13147,30374,71,2,f +13147,3069bpr0101,71,1,f +13147,3626cpr0891,14,1,f +13147,3829c01,1,1,f +13147,4285b,41,1,f +13147,47457,1,1,f +13147,48336,15,2,f +13147,4865a,1,1,f +13147,59900,4,2,f +13147,61409,15,4,f +13147,87754,15,1,f +13147,88072,72,1,f +13147,89159,82,1,f +13147,90258,72,1,f +13147,92409,0,4,f +13147,93594,179,4,f +13147,970c00,15,1,f +13147,973pr2992c01,15,1,f +13147,98313,72,2,f +13149,2420,0,2,f +13149,3003,15,1,f +13149,30363,0,1,f +13149,3039,0,1,f +13149,3298,0,1,f +13149,3660,15,1,f +13149,3747b,0,1,f +13149,4286,0,2,f +13150,3626cpr0677,14,1,f +13150,41879a,1,1,f +13150,6141,15,1,f +13150,6141,15,4,t +13150,88286,308,1,f +13150,973pr1485c01,4,1,f +13151,32034,0,1,f +13151,32039,0,1,f +13151,32062,0,2,f +13151,32073,0,1,f +13151,32172,4,1,f +13151,32174,0,4,f +13151,32269,7,1,f +13151,32270,7,2,f +13151,32474,0,1,f +13151,32475,4,2,f +13151,32476,25,1,f +13151,32482,25,3,f +13151,32489,4,1,f +13151,32505,4,1,f +13151,32553,7,1,f +13151,32554,45,1,f +13151,32558,4,1,f +13151,3706,0,1,f +13151,3713,7,2,f +13151,4519,0,5,f +13151,gbiocd2001,9999,1,f +13154,2412b,72,4,f +13154,2432,71,2,f +13154,2540,72,1,f +13154,2584,0,1,f +13154,2585,71,1,f +13154,2638,71,1,f +13154,2877,0,2,f +13154,3001,25,2,f +13154,3005,25,2,f +13154,3009,25,2,f +13154,30165,14,1,f +13154,30194,72,1,f +13154,3020,15,2,f +13154,3022,15,3,f +13154,3023,25,4,f +13154,3024,36,4,f +13154,3024,182,2,f +13154,3031,15,1,f +13154,30395,72,1,f +13154,3040b,25,4,f +13154,30414,1,2,f +13154,3069b,33,2,f +13154,32000,14,1,f +13154,32028,71,2,f +13154,32270,0,1,f +13154,3245b,25,2,f +13154,3298,25,3,f +13154,3460,15,2,f +13154,3622,0,2,f +13154,3626bpr0282,14,1,f +13154,3665,0,4,f +13154,3666,15,2,f +13154,3700,72,2,f +13154,3706,0,1,f +13154,3710,15,1,f +13154,3710,25,5,f +13154,3713,71,1,f +13154,3713,71,1,t +13154,3795,72,1,f +13154,3795,15,2,f +13154,3821,25,1,f +13154,3822,25,1,f +13154,3829c01,1,1,f +13154,3835,0,1,f +13154,3962b,0,1,f +13154,4006,0,1,f +13154,4079,1,1,f +13154,4085c,15,4,f +13154,4176,40,1,f +13154,4485,4,1,f +13154,4488,71,4,f +13154,4532,25,2,f +13154,4533,72,2,f +13154,4589,15,2,f +13154,50745,15,4,f +13154,50950,72,2,f +13154,52031,25,1,f +13154,52037,72,1,f +13154,54200,33,2,f +13154,54200,46,2,f +13154,54200,33,1,t +13154,54200,46,1,t +13154,56823c50,0,1,f +13154,58176,182,2,f +13154,6014b,15,4,f +13154,60700,0,4,f +13154,63868,71,2,f +13154,86133,9999,1,t +13154,970c00,1,1,f +13154,973pr1470c01,1,1,f +13157,2431,72,1,f +13157,3021,72,1,f +13157,3023,0,1,f +13157,3024,71,1,t +13157,3024,72,1,f +13157,3024,71,1,f +13157,3062b,71,2,f +13157,3070b,72,1,t +13157,3070b,72,1,f +13157,3623,70,1,f +13157,3623,72,1,f +13157,3623,19,1,f +13157,3665,71,1,f +13157,3665,72,1,f +13157,3666,72,1,f +13157,3700,72,4,f +13157,3942c,0,2,f +13157,4032a,19,2,f +13157,42446,72,2,f +13157,4287,72,2,f +13157,4287,71,1,f +13157,43093,1,2,f +13157,43093,1,1,t +13157,43710,72,1,f +13157,43711,72,1,f +13157,44728,71,2,f +13157,4477,0,1,f +13157,50950,0,1,f +13157,54200,72,2,f +13157,54200,72,1,t +13157,6091,72,1,f +13157,61409,72,2,f +13157,6141,70,1,t +13157,6141,70,2,f +13157,6141,72,2,f +13157,6141,72,1,t +13158,30162,71,1,f +13158,3852b,191,1,f +13158,3962b,0,1,f +13160,122c01,0,2,f +13160,3005,14,2,f +13160,3010,14,1,f +13160,3010,4,4,f +13160,3020,14,2,f +13160,3024,4,1,f +13160,3024,14,2,f +13160,3031,4,1,f +13160,3062a,46,2,f +13160,3623,14,2,f +13160,3624,0,1,f +13160,3626apr0001,14,1,f +13160,3641,0,4,f +13160,3710,4,4,f +13160,3788,14,2,f +13160,3821,14,1,f +13160,3822,14,1,f +13160,3823,47,1,f +13160,3829c01,14,1,f +13160,3853,4,1,f +13160,3856,4,2,f +13160,4006,0,1,f +13160,4212a,0,1,f +13160,646.1stk01,9999,1,t +13160,970c00,0,1,f +13160,973p26c01,1,1,f +13162,3673,7,20,f +13162,3700,1,4,f +13162,3701,1,4,f +13162,3702,1,4,f +13162,3703,1,2,f +13162,3709,1,2,f +13162,3738,1,2,f +13163,2343,14,1,f +13163,2343,7,1,f +13163,2343,47,1,f +13163,2412b,7,2,f +13163,2436,7,2,f +13163,2437,41,2,f +13163,2456px1,15,1,f +13163,2513,15,1,f +13163,30027a,15,4,f +13163,30028,0,4,f +13163,30029,15,1,f +13163,3003px2,15,1,f +13163,30180,15,1,f +13163,3020,15,2,f +13163,3022,7,2,f +13163,3023,15,2,f +13163,3024,36,2,f +13163,3024,15,2,f +13163,3024,42,2,f +13163,3030,4,1,f +13163,3062b,1,2,f +13163,3069bpr0101,7,1,f +13163,3626bp04,14,1,f +13163,3626bpr0001,14,7,f +13163,3666,7,2,f +13163,3666,0,2,f +13163,3710,15,4,f +13163,3829c01,7,1,f +13163,3957a,15,2,f +13163,4211,15,1,f +13163,4213,15,1,f +13163,4214,15,1,f +13163,43337,15,2,f +13163,4449,0,1,f +13163,4476b,15,2,f +13163,4485,0,8,f +13163,4495a,0,1,f +13163,4495a,5,1,f +13163,4599a,14,2,f +13163,4719,5,5,f +13163,6157,0,2,f +13163,92851,47,10,f +13163,970c00,0,8,f +13163,973c03,15,5,f +13163,973c11,0,1,f +13163,973c11,14,1,f +13163,973c20,2,1,f +13166,11477,1,2,f +13166,15068,15,2,f +13166,2412b,80,2,f +13166,2420,1,4,f +13166,2436,1,1,f +13166,3020,1,1,f +13166,3021,1,2,f +13166,3021,15,2,f +13166,3022,4,2,f +13166,3022,15,1,f +13166,3023,4,2,f +13166,3023,15,2,f +13166,3024,1,2,f +13166,3024,1,1,t +13166,3024,15,4,f +13166,3024,15,1,t +13166,3623,4,2,f +13166,3795,72,1,f +13166,44728,1,2,f +13166,4589,25,4,f +13166,48336,15,1,f +13166,50947,1,2,f +13166,50951,0,4,f +13166,54200,40,1,t +13166,54200,40,6,f +13166,6141,80,4,f +13166,6141,80,1,t +13166,6141,36,2,f +13166,6141,36,1,t +13166,6157,71,2,f +13166,92280,71,2,f +13166,92593,4,1,f +13166,93593,71,4,f +13166,99780,72,1,f +13167,2446,2,1,f +13167,2447,42,1,f +13167,30027,7,2,f +13167,30028,0,2,f +13167,3034,14,1,f +13167,3062b,8,2,f +13167,3626bp6f,14,1,f +13167,3829c01,7,1,f +13167,3839b,7,1,f +13167,4070,2,2,f +13167,4600,7,2,f +13167,6014,7,2,f +13167,6015,0,2,f +13167,6215,2,1,f +13167,970c00,2,1,f +13167,973pb0013c01,15,1,f +13168,wood04,9999,1,f +13170,2346,0,4,f +13170,2419,2,2,f +13170,2420,7,8,f +13170,2654,0,2,f +13170,2730,0,8,f +13170,2780,0,25,f +13170,2815,0,2,f +13170,2817,7,4,f +13170,2825,7,2,f +13170,2854,7,2,f +13170,2902,0,4,f +13170,2903,15,4,f +13170,2982c01,1,1,f +13170,2983,7,2,f +13170,2994,15,2,f +13170,3001,0,5,f +13170,3003,0,20,f +13170,3004,14,4,f +13170,3004,0,20,f +13170,3020,14,6,f +13170,3022,2,2,f +13170,3022,1,4,f +13170,3022,7,8,f +13170,3023,7,20,f +13170,3024,7,8,f +13170,3033,7,1,f +13170,3034,2,4,f +13170,3040b,0,12,f +13170,3040b,14,4,f +13170,32001,7,4,f +13170,32002,8,17,f +13170,32007,15,4,f +13170,32009,14,4,f +13170,32013,1,4,f +13170,32015,7,4,f +13170,32017,7,4,f +13170,32028,7,8,f +13170,32034,1,2,f +13170,32039,7,2,f +13170,32054,1,4,f +13170,32056,7,4,f +13170,32062,0,10,f +13170,32064b,2,4,f +13170,32065,0,4,f +13170,32068,7,2,f +13170,32073,0,2,f +13170,32123b,7,19,f +13170,32137,33,4,f +13170,32138,14,2,f +13170,32140,0,2,f +13170,3460,7,8,f +13170,3482,14,6,f +13170,3483,0,2,f +13170,3623,14,2,f +13170,3634,0,2,f +13170,3647,7,6,f +13170,3648a,7,4,f +13170,3649,7,4,f +13170,3650c,7,4,f +13170,3665,0,4,f +13170,3665,14,4,f +13170,3666,7,10,f +13170,3673,7,24,f +13170,3679,7,2,f +13170,3680,1,2,f +13170,3700,0,12,f +13170,3700,14,4,f +13170,3701,0,10,f +13170,3701,2,2,f +13170,3702,0,8,f +13170,3703,0,6,f +13170,3705,0,7,f +13170,3706,0,8,f +13170,3707,0,7,f +13170,3708,0,2,f +13170,3709,7,4,f +13170,3710,7,10,f +13170,3713,7,41,f +13170,3736,7,2,f +13170,3737,0,4,f +13170,3738,7,8,f +13170,3743,7,4,f +13170,3747b,0,4,f +13170,3749,7,16,f +13170,3832,7,6,f +13170,3894,0,8,f +13170,3895,0,6,f +13170,3941,0,8,f +13170,3956,7,2,f +13170,3960,15,2,f +13170,4019,7,4,f +13170,4032a,1,2,f +13170,4032a,15,2,f +13170,4085c,0,2,f +13170,4185,7,4,f +13170,4220,14,2,f +13170,4221,0,4,f +13170,4274,7,9,f +13170,4275b,0,2,f +13170,4477,7,6,f +13170,4519,0,3,f +13170,4531,0,2,f +13170,4589,14,2,f +13170,4589,15,2,f +13170,4716,0,2,f +13170,5306bc020,0,4,f +13170,5306bc162,0,2,f +13170,6007,8,1,f +13170,6019,0,2,f +13170,6048a,0,2,f +13170,6133,57,2,f +13170,6141,15,3,f +13170,6141,0,3,f +13170,6141,1,3,f +13170,6536,7,6,f +13170,6538b,7,4,f +13170,6553,7,2,f +13170,6558,0,8,f +13170,6573,8,1,f +13170,6575,7,2,f +13170,6578,0,2,f +13170,6587,8,2,f +13170,6589,7,5,f +13170,6594,0,2,f +13170,6595,15,2,f +13170,6629,0,4,f +13170,6632,7,4,f +13170,680c01,0,2,f +13170,71427c01,7,2,f +13170,71509,0,5,f +13170,71793,7,1,f +13170,75c19,14,2,f +13170,76019,15,1,f +13170,78c09,0,4,f +13170,78c09,3,4,f +13170,78c12,22,4,f +13170,85543,15,4,f +13170,85545,1,3,f +13170,85546,14,3,f +13170,879,7,2,f +13170,884b,14,1,f +13170,bb1240,9999,1,f +13170,x87,8,1,f +13171,25968pr0039,73,1,f +13171,41879pr0005,73,1,f +13171,88646,0,1,f +13171,973pr3318c01,73,1,f +13172,765c01,7,8,f +13172,766c01,7,8,f +13172,x466,7,1,f +13173,2431,71,2,f +13173,2444,0,2,f +13173,2730,0,1,f +13173,2780,0,2,t +13173,2780,0,107,f +13173,2819,71,1,f +13173,2825,71,10,f +13173,2905,72,4,f +13173,3023,182,2,f +13173,30367b,71,2,f +13173,30374,19,1,f +13173,3068b,0,2,f +13173,32002,72,1,t +13173,32002,72,6,f +13173,32009,0,2,f +13173,32009,1,2,f +13173,32013,1,9,f +13173,32017,71,4,f +13173,32034,1,2,f +13173,32034,0,4,f +13173,32039,0,7,f +13173,32054,0,14,f +13173,32056,72,10,f +13173,32062,4,20,f +13173,32063,0,2,f +13173,32072,14,2,f +13173,32073,71,9,f +13173,32123b,71,20,f +13173,32123b,71,1,t +13173,32140,72,2,f +13173,32140,1,4,f +13173,32184,0,2,f +13173,32184,71,10,f +13173,32250,72,4,f +13173,32269,0,1,f +13173,32270,0,1,f +13173,32278,72,10,f +13173,32291,0,2,f +13173,32316,1,5,f +13173,32316,72,4,f +13173,32449,72,2,f +13173,32523,1,6,f +13173,32523,72,3,f +13173,32524,1,3,f +13173,32524,72,6,f +13173,32525,0,1,f +13173,32525,71,6,f +13173,32525,72,10,f +13173,32526,71,2,f +13173,32526,72,16,f +13173,32526,4,2,f +13173,33299a,0,1,f +13173,3647,72,1,f +13173,3648b,72,1,f +13173,3673,71,1,t +13173,3673,71,5,f +13173,3705,0,6,f +13173,3706,0,2,f +13173,3713,71,1,t +13173,3713,71,20,f +13173,3749,19,4,f +13173,3941,71,2,f +13173,40490,1,6,f +13173,40490,71,2,f +13173,40490,0,3,f +13173,40490,72,6,f +13173,41239,1,2,f +13173,41677,72,10,f +13173,42003,72,5,f +13173,42610,71,2,f +13173,4274,71,11,f +13173,4274,71,1,t +13173,43093,1,46,f +13173,44294,71,9,f +13173,44309,0,6,f +13173,44809,0,2,f +13173,4519,71,35,f +13173,48989,71,8,f +13173,56145,71,6,f +13173,58119,71,1,f +13173,58120,71,1,f +13173,59426,72,4,f +13173,59443,0,8,f +13173,60483,0,14,f +13173,60484,0,2,f +13173,6141,182,1,t +13173,6141,36,1,t +13173,6141,182,4,f +13173,6141,47,1,t +13173,6141,36,2,f +13173,6141,47,6,f +13173,61510,71,1,f +13173,61903,71,1,f +13173,61904,72,1,f +13173,61927b,71,1,f +13173,62531,71,4,f +13173,63869,71,4,f +13173,64782,0,2,f +13173,6536,1,16,f +13173,6558,1,40,f +13173,6587,28,2,f +13173,6629,0,4,f +13173,6632,0,6,f +13173,87080,1,2,f +13173,87082,71,1,f +13173,87083,72,5,f +13173,87086,1,2,f +13173,87761,0,1,f +13174,11477,25,2,f +13174,11478,0,2,f +13174,13547,71,2,f +13174,13548,0,2,f +13174,13971,71,2,f +13174,14769,71,2,f +13174,15413,0,2,f +13174,15462,70,3,f +13174,15535,72,1,f +13174,15535,0,1,f +13174,15573,0,1,f +13174,18677,71,3,f +13174,22483,40,1,f +13174,2357,72,2,f +13174,2654,47,2,f +13174,2780,0,2,f +13174,3001,71,1,f +13174,3004,15,2,f +13174,3020,15,9,f +13174,3021,72,3,f +13174,3023,1,5,f +13174,3024,0,7,f +13174,30361,72,2,f +13174,30503,25,2,f +13174,30552,0,2,f +13174,3062b,72,2,f +13174,3176,14,1,f +13174,32002,19,2,f +13174,32034,71,1,f +13174,32039,71,1,f +13174,32073,71,1,f +13174,32123b,14,12,f +13174,32124,15,1,f +13174,32126,0,2,f +13174,32449,14,2,f +13174,32524,0,2,f +13174,3666,14,2,f +13174,3700,0,1,f +13174,3709,72,2,f +13174,3710,72,2,f +13174,3713,71,4,f +13174,3749,19,2,f +13174,3795,0,1,f +13174,3795,72,2,f +13174,4032a,72,5,f +13174,41769,0,1,f +13174,41770,0,1,f +13174,4274,71,2,f +13174,4287,15,2,f +13174,43093,1,6,f +13174,44302a,0,2,f +13174,44728,72,6,f +13174,4519,14,3,f +13174,48933,25,1,f +13174,50373,25,1,f +13174,50950,15,2,f +13174,56145,0,2,f +13174,60478,14,4,f +13174,61254,0,2,f +13174,61409,0,2,f +13174,61409,25,2,f +13174,6141,36,2,f +13174,63868,4,2,f +13174,76138,71,1,f +13174,85984,25,2,f +13174,87580,25,1,f +13174,92280,15,2,f +13174,92946,0,4,f +13174,93273,0,2,f +13174,98138,71,3,f +13174,98138,47,2,f +13174,98286,71,1,f +13174,99008,19,2,f +13174,99206,15,2,f +13174,99207,4,6,f +13174,99781,0,3,f +13175,14226c41,0,2,f +13175,2431,15,2,f +13175,2780,0,1,t +13175,2780,0,28,f +13175,2815,0,4,f +13175,2905,72,2,f +13175,3001,15,2,f +13175,3023,1,8,f +13175,30391,0,4,f +13175,3040b,15,4,f +13175,32001,1,8,f +13175,32002,72,6,f +13175,32002,72,1,t +13175,32009,1,2,f +13175,32012,72,1,f +13175,32013,72,4,f +13175,32016,0,4,f +13175,32034,4,4,f +13175,32039,4,10,f +13175,32054,4,14,f +13175,32062,4,14,f +13175,32064b,15,4,f +13175,32068,0,2,f +13175,32069,0,2,f +13175,32073,71,4,f +13175,32123b,14,1,t +13175,32123b,14,16,f +13175,32140,1,8,f +13175,32198,19,2,f +13175,32269,19,2,f +13175,32270,0,2,f +13175,32278,15,8,f +13175,32316,15,2,f +13175,32523,15,2,f +13175,32524,15,2,f +13175,32556,19,4,f +13175,33299a,71,4,f +13175,3647,72,6,f +13175,3648b,72,4,f +13175,3649,71,2,f +13175,3650c,71,4,f +13175,3673,71,8,f +13175,3673,71,1,t +13175,3700,1,4,f +13175,3701,1,4,f +13175,3702,1,4,f +13175,3703,1,4,f +13175,3705,0,8,f +13175,3706,0,2,f +13175,3707,0,2,f +13175,3708,0,6,f +13175,3709,1,6,f +13175,3710,1,4,f +13175,3713,71,16,f +13175,3713,71,1,t +13175,3737,0,2,f +13175,3738,1,2,f +13175,3743,71,2,f +13175,3749,19,12,f +13175,3894,1,4,f +13175,3895,1,4,f +13175,3941,15,2,f +13175,4019,71,2,f +13175,40490,15,4,f +13175,4185,71,4,f +13175,42003,4,4,f +13175,44309,0,4,f +13175,4519,71,8,f +13175,4716,71,2,f +13175,54190,47,1,f +13175,55982,71,4,f +13175,56145,71,4,f +13175,56823c200,0,1,f +13175,58119,71,1,f +13175,58120,71,1,f +13175,59443,71,8,f +13175,60656,72,1,f +13175,61903,71,1,f +13175,62462,4,2,f +13175,62821,72,1,f +13175,6558,1,10,f +13175,6575,72,4,f +13175,6587,72,4,f +13175,6589,19,6,f +13175,6629,1,4,f +13175,6630,0,1,f +13175,73090b,0,1,f +13175,85543,15,2,f +13175,85544,4,2,f +13175,85546,14,2,f +13175,bb278,33,1,f +13176,2335,15,4,f +13176,2357,15,2,f +13176,2412b,42,2,f +13176,2412b,25,16,f +13176,2420,71,2,f +13176,2431,0,4,f +13176,2431,15,1,f +13176,2432,71,2,f +13176,2436,0,1,f +13176,2444,72,4,f +13176,2445,72,3,f +13176,2446,15,2,f +13176,2447,82,1,t +13176,2447,82,2,f +13176,2456,72,1,f +13176,2524,15,2,f +13176,2540,0,4,f +13176,2555,15,2,f +13176,2653,0,4,f +13176,2730,0,1,f +13176,2780,0,3,t +13176,2780,0,23,f +13176,2877,0,3,f +13176,298c02,15,1,t +13176,298c02,15,4,f +13176,3001,0,1,f +13176,3001,15,24,f +13176,3002,1,2,f +13176,30031,71,1,f +13176,3008,0,2,f +13176,3009,0,1,f +13176,3010,15,6,f +13176,30153,42,6,f +13176,3020,72,2,f +13176,3020,25,2,f +13176,3021,15,5,f +13176,3022,72,1,f +13176,3023,25,1,f +13176,3023,0,5,f +13176,3024,36,10,f +13176,30283,0,4,f +13176,3030,0,1,f +13176,3031,1,4,f +13176,3031,0,4,f +13176,3031,15,1,f +13176,3032,0,6,f +13176,30359b,0,4,f +13176,30360,15,4,f +13176,30363,15,1,f +13176,30367b,15,2,f +13176,3039,15,8,f +13176,30396,0,1,f +13176,3040b,25,2,f +13176,30414,1,2,f +13176,30552,71,3,f +13176,30553,72,3,f +13176,30554b,0,1,f +13176,3062b,36,5,f +13176,3062b,42,1,f +13176,3065,33,1,f +13176,3068b,72,2,f +13176,3068b,15,4,f +13176,3069b,71,2,f +13176,3070b,71,3,f +13176,3070b,71,1,t +13176,32000,72,8,f +13176,32000,0,2,f +13176,32015,0,8,f +13176,32020,71,2,f +13176,32028,15,7,f +13176,32039,0,2,f +13176,32062,4,9,f +13176,32064b,14,8,f +13176,32064b,72,1,f +13176,32073,71,2,f +13176,32123b,14,2,f +13176,32123b,14,1,t +13176,32269,0,1,f +13176,32270,0,1,f +13176,32316,15,4,f +13176,3298,15,1,f +13176,3460,0,2,f +13176,3623,0,2,f +13176,3626bpr0325,14,1,f +13176,3626bpr0443,71,1,f +13176,3650c,71,1,f +13176,3660,0,24,f +13176,3666,72,1,f +13176,3700,15,6,f +13176,3710,25,12,f +13176,3737,0,1,f +13176,3747b,0,36,f +13176,3794a,1,1,f +13176,3795,15,1,f +13176,3795,0,6,f +13176,3832,0,7,f +13176,3837,72,1,f +13176,3839b,15,1,f +13176,3894,15,3,f +13176,3941,25,2,f +13176,3959,71,1,f +13176,3960,0,1,f +13176,3960,15,4,f +13176,40244,0,2,f +13176,40378,27,2,f +13176,40379,27,2,f +13176,4070,15,2,f +13176,4081b,0,2,f +13176,4081b,15,2,f +13176,4150,0,2,f +13176,4162,15,2,f +13176,41669,135,9,f +13176,41669,33,3,f +13176,41747,15,5,f +13176,41748,15,5,f +13176,41883,182,1,f +13176,42003,71,1,f +13176,4287,15,2,f +13176,43093,1,20,f +13176,43713,0,1,f +13176,44567a,0,1,f +13176,44568,15,1,f +13176,44568,71,2,f +13176,44570,71,2,f +13176,44728,71,2,f +13176,4519,71,1,f +13176,45590,0,8,f +13176,45705,15,4,f +13176,4589,33,9,f +13176,47397,0,1,f +13176,47398,0,1,f +13176,47455,72,5,f +13176,47457,15,1,f +13176,47753,0,1,f +13176,47759,0,5,f +13176,48169,72,5,f +13176,48170,72,4,f +13176,48171,71,1,f +13176,48183,15,1,f +13176,4854,0,4,f +13176,4865a,15,2,f +13176,50745,15,2,f +13176,50950,15,10,f +13176,50950,25,2,f +13176,50955,0,1,f +13176,50956,0,1,f +13176,52501,25,2,f +13176,53451,135,3,f +13176,53451,4,2,f +13176,53451,4,1,t +13176,53451,135,1,t +13176,54200,71,1,t +13176,54200,25,10,f +13176,54200,0,1,t +13176,54200,25,3,t +13176,54200,15,29,f +13176,54200,0,2,f +13176,54200,27,4,f +13176,54200,15,4,t +13176,54200,71,2,f +13176,54200,27,1,t +13176,55013,72,1,f +13176,55982,0,1,f +13176,57028c01,71,1,f +13176,57585,71,5,f +13176,57587,15,2,f +13176,57796,0,1,f +13176,57909a,72,5,f +13176,57910,72,4,f +13176,58846,0,2,f +13176,59443,4,1,f +13176,60176,72,1,f +13176,6019,15,2,f +13176,60208,71,3,f +13176,60470a,0,2,f +13176,60474,15,1,f +13176,60478,15,2,f +13176,60479,71,2,f +13176,60481,71,2,f +13176,6081,15,14,f +13176,6091,15,8,f +13176,61406pat0002,27,2,f +13176,61409,27,4,f +13176,61409,72,12,f +13176,6141,33,1,t +13176,6141,36,1,t +13176,6141,57,1,t +13176,6141,57,4,f +13176,6141,36,2,f +13176,6141,25,2,t +13176,6141,33,2,f +13176,6141,42,20,f +13176,6141,42,1,t +13176,6141,25,10,f +13176,61485,15,1,f +13176,61487,15,10,f +13176,61678,0,2,f +13176,61780,72,2,f +13176,6191,15,1,f +13176,6231,71,4,f +13176,6231,15,2,f +13176,6233,0,2,f +13176,6239,15,2,f +13176,6266,15,1,f +13176,62694,182,1,f +13176,62723pat0001,34,1,f +13176,62724,34,4,f +13176,63965,15,2,f +13176,6553,0,2,f +13176,6558,1,2,f +13176,6589,19,2,f +13176,78c14,0,2,f +13176,970x194,15,2,f +13176,973pr1317c01,15,2,f +13179,298c02,0,2,f +13179,3001,4,1,f +13179,3003,4,2,f +13179,3005,4,2,f +13179,3006,0,1,f +13179,3009,0,4,f +13179,3010,4,1,f +13179,3020,0,2,f +13179,3020,4,1,f +13179,3021,4,2,f +13179,3022,7,1,f +13179,3023,4,3,f +13179,3023,7,1,f +13179,3030,0,1,f +13179,3032,7,2,f +13179,3032,4,1,f +13179,3034,7,1,f +13179,3034,0,1,f +13179,3040b,4,2,f +13179,3068b,7,2,f +13179,3069b,0,4,f +13179,3070b,4,2,f +13179,3622,4,2,f +13179,3626apr0001,14,1,f +13179,3633,4,4,f +13179,3651,7,1,f +13179,3660,0,4,f +13179,3679,7,1,f +13179,3680,0,1,f +13179,3704,0,1,f +13179,3710,0,2,f +13179,3710,7,4,f +13179,3747a,4,1,f +13179,3795,7,1,f +13179,3795,0,4,f +13179,3833,4,1,f +13179,3941,14,24,f +13179,3941,7,1,f +13179,3942c,7,4,f +13179,4022,0,2,f +13179,4023,0,2,f +13179,4079,7,1,f +13179,4081a,7,4,f +13179,4092,0,2,f +13179,4093b,0,1,f +13179,4180c01,0,4,f +13179,4213,4,1,f +13179,4262,7,2,f +13179,4263,7,4,f +13179,4275a,7,4,f +13179,4282,7,1,f +13179,4315,4,1,f +13179,4459,0,4,f +13179,4531,4,4,f +13179,4589,4,8,f +13179,4872,47,1,f +13179,56823,0,1,f +13179,73037,4,1,f +13179,73092,0,2,f +13179,970c00,1,1,f +13179,973p26c01,1,1,f +13181,3022,7,1,f +13181,3023,7,1,f +13181,3039p34,7,1,f +13181,3626apr0001,14,1,f +13181,3709,7,1,f +13181,3795,7,1,f +13181,3829c01,7,1,f +13181,3838,15,1,f +13181,3839b,0,3,f +13181,3842a,15,1,f +13181,3957a,7,1,f +13181,3959,0,1,f +13181,3960,7,1,f +13181,3962a,0,1,f +13181,3963,0,2,f +13181,4085a,7,2,f +13181,970c00,15,1,f +13181,973p90c05,15,1,f +13183,10201,71,1,f +13183,10247,14,2,f +13183,11090,0,1,f +13183,11090,0,1,t +13183,11213,71,1,f +13183,12607ass03pr01,2,1,f +13183,12607ass04pr02,10,1,f +13183,12609pr0001,28,1,f +13183,12610pr0001,28,1,f +13183,12825,14,4,f +13183,14226c31,0,1,t +13183,14226c31,0,1,f +13183,15573,71,1,f +13183,2412b,72,1,f +13183,2412b,4,1,t +13183,2412b,4,1,f +13183,2415,71,1,f +13183,2431,72,1,f +13183,2432,70,1,f +13183,2432,72,2,f +13183,2449,0,2,f +13183,2458,4,1,f +13183,2496,0,2,f +13183,2540,0,1,f +13183,2540,71,3,f +13183,2654,71,5,f +13183,2780,0,2,f +13183,2780,0,1,t +13183,2926,0,3,f +13183,298c02,4,2,f +13183,298c02,4,1,t +13183,30028,0,4,f +13183,3003,71,3,f +13183,30031,72,1,f +13183,30136,70,9,f +13183,30171,179,1,f +13183,3020,71,11,f +13183,3021,14,3,f +13183,3022,70,3,f +13183,3023,14,15,f +13183,30236,71,1,f +13183,3024,47,1,t +13183,3024,47,1,f +13183,3031,72,1,f +13183,3034,71,1,f +13183,30350b,41,1,f +13183,30375,72,1,f +13183,3039,326,2,f +13183,3040b,0,4,f +13183,3062b,33,1,f +13183,3068b,71,3,f +13183,3069b,0,3,f +13183,32000,71,8,f +13183,32013,72,2,f +13183,32013,4,1,f +13183,32013,0,2,f +13183,32014,0,2,f +13183,32064b,14,6,f +13183,3245c,72,2,f +13183,32474,27,2,f +13183,3464,72,1,f +13183,3622,27,1,f +13183,3626cpr1153,78,1,f +13183,3626cpr1158,70,1,f +13183,3660,72,4,f +13183,3665,72,2,f +13183,3700,72,3,f +13183,3702,71,1,f +13183,3706,0,1,f +13183,3710,0,2,f +13183,3713,4,2,f +13183,3713,4,1,t +13183,3747a,0,6,f +13183,3795,72,1,f +13183,3795,14,4,f +13183,3829c01,14,1,f +13183,3894,72,1,f +13183,3941,71,1,f +13183,4032a,0,16,f +13183,4150,72,1,f +13183,41669,179,4,f +13183,41677,4,2,f +13183,42022,14,2,f +13183,42511,85,1,f +13183,43093,1,12,f +13183,43712,71,4,f +13183,43898,47,1,f +13183,44728,14,12,f +13183,46303,71,1,f +13183,4740pr0002b,41,1,f +13183,47455,0,2,f +13183,47457,72,5,f +13183,48170,72,2,f +13183,48172,0,1,f +13183,48933,71,2,f +13183,51739,71,3,f +13183,53989,179,10,f +13183,54200,326,4,f +13183,54200,71,1,f +13183,54200,46,1,t +13183,54200,46,2,f +13183,54200,326,1,t +13183,54200,71,1,t +13183,54383,14,1,f +13183,54384,14,1,f +13183,56890,0,2,f +13183,57909a,72,2,f +13183,58176,179,8,f +13183,59426,72,2,f +13183,59895,0,1,f +13183,59900,4,4,f +13183,6014b,71,2,f +13183,60474,71,1,f +13183,60478,71,2,f +13183,60483,72,1,f +13183,61184,71,5,f +13183,61252,72,1,f +13183,6141,46,3,f +13183,6141,46,1,t +13183,6141,179,9,f +13183,6141,179,1,t +13183,6141,47,1,t +13183,6141,47,2,f +13183,6183,0,1,f +13183,6215,71,1,f +13183,6232,4,1,f +13183,63868,0,4,f +13183,64276,0,4,f +13183,64644,308,1,f +13183,6541,4,1,f +13183,6541,72,2,f +13183,6558,1,2,f +13183,6587,28,3,f +13183,6636,0,2,f +13183,74967,71,4,f +13183,75937,179,1,f +13183,75c03,70,1,t +13183,75c03,70,1,f +13183,85940,0,2,f +13183,85984,72,3,f +13183,87087,71,3,f +13183,87747,179,1,f +13183,87747,179,1,t +13183,87926,47,1,f +13183,87990pr0002,484,1,f +13183,88072,4,1,f +13183,88811,179,1,t +13183,88811,179,2,f +13183,92013,0,6,f +13183,92842,0,1,f +13183,92950,71,1,f +13183,93606,71,11,f +13183,970c00,272,1,f +13183,970c00pr0472,10,1,f +13183,970c00pr0473,2,1,f +13183,970c00pr0474,0,1,f +13183,973pr2263c01,2,1,f +13183,973pr2266c01,10,1,f +13183,973pr2271c01,14,1,f +13183,973pr2285c01,71,1,f +13183,98132,179,1,f +13183,98138pr0012,179,2,f +13183,98138pr0012,179,1,t +13183,98139,179,1,t +13183,98139,179,2,f +13183,98835,72,1,f +13183,99008,19,1,f +13183,99206,71,2,f +13183,99207,71,4,f +13183,99780,0,6,f +13183,99781,71,2,f +13184,4276b,0,2,f +13184,4518ac01,0,1,f +13185,2413,15,2,f +13185,2420,72,2,f +13185,2431,15,1,f +13185,2431,72,1,f +13185,2437,40,1,f +13185,3003,0,1,f +13185,3005,72,1,f +13185,3010,15,2,f +13185,3020,15,3,f +13185,3020,4,1,f +13185,3021,71,1,f +13185,3021,72,4,f +13185,3022,71,1,f +13185,3023,0,5,f +13185,3024,72,2,f +13185,3024,15,1,f +13185,3039pc5,71,1,f +13185,3040b,15,2,f +13185,3068b,4,1,f +13185,3070b,14,1,f +13185,3070b,4,1,t +13185,3070b,4,1,f +13185,3070b,15,3,f +13185,3070b,14,1,t +13185,3070b,15,1,t +13185,3460,71,1,f +13185,3623,72,3,f +13185,3666,72,1,f +13185,3679,7,2,f +13185,3680,15,2,f +13185,3710,15,3,f +13185,3710,72,1,f +13185,3794a,15,1,f +13185,3795,71,2,f +13185,3937,71,1,f +13185,4079,6,3,f +13185,4162,72,1,f +13185,41769,15,4,f +13185,41770,15,4,f +13185,4282,71,1,f +13185,44301a,15,2,f +13185,44302a,15,2,f +13185,4449,73,1,f +13185,4449,0,1,f +13185,44571,15,4,f +13185,4477,15,1,f +13185,4477,72,1,f +13185,44822,15,4,f +13185,4854,71,2,f +13185,4855,71,2,f +13185,4856a,72,2,f +13185,4858,15,1,f +13185,4859,15,1,f +13185,4859,72,1,f +13185,4861,15,1,f +13185,4862,40,12,f +13185,4863,15,6,f +13185,4865a,4,2,f +13185,4865a,15,2,f +13185,4867,15,1,f +13185,4868b,15,2,f +13185,4869,71,2,f +13185,4870c02,71,3,f +13185,4871,71,1,f +13185,6134,0,1,f +13185,6141,36,1,f +13185,6141,34,1,f +13185,6141,47,1,f +13185,6141,34,1,t +13185,6141,15,2,f +13185,6141,47,1,t +13185,6141,36,1,t +13185,6141,15,1,t +13185,6636,15,2,f +13185,73983,72,4,f +13186,11335,29,3,f +13186,11835,15,1,f +13186,12651,212,3,f +13186,12785pr0002,15,1,f +13186,13161,15,1,f +13186,13247,484,1,f +13186,13415,15,1,f +13186,13457,15,2,f +13186,13583,15,1,f +13186,13584,15,1,f +13186,13585,15,1,f +13186,15327,297,1,f +13186,16434,4,1,f +13186,2230,15,1,f +13186,2231,15,1,f +13186,2302,4,2,f +13186,2302,5,2,f +13186,3011,29,2,f +13186,31022,15,3,f +13186,31023,15,3,f +13186,31041,25,1,f +13186,31042,179,1,f +13186,3437,29,1,f +13186,3437,27,1,f +13186,4066,29,13,f +13186,4066,212,1,f +13186,40666,27,1,f +13186,47510pr0001,29,1,f +13186,4886,25,1,f +13186,4890,5,2,f +13186,4891,25,2,f +13186,4892,27,1,f +13186,4893,27,1,f +13186,4911,15,1,f +13186,4912,5,1,f +13186,51383,29,2,f +13186,51385,4,2,f +13186,61257,14,1,f +13186,61310,226,3,f +13186,61649,73,1,f +13186,6472,5,1,f +13186,6473,5,1,f +13186,6479,15,1,f +13186,6510,10,2,f +13186,6510,25,1,f +13186,75113pr0001,15,1,f +13186,75115pr0006,73,1,f +13186,76338,212,2,f +13186,87313,0,1,f +13186,92094,73,1,f +13186,98252,27,1,f +13187,2412b,0,1,f +13187,2412b,7,1,f +13187,2419,0,1,f +13187,2458,7,1,f +13187,3004,7,2,f +13187,3021,0,1,f +13187,3023,4,2,f +13187,3039,7,1,f +13187,3048c,7,1,f +13187,3069bp54,7,1,f +13187,3460,0,2,f +13187,3626bp6v,1,1,f +13187,3660,7,1,f +13187,3665,7,1,f +13187,3959,7,1,f +13187,4286,7,1,f +13187,4589,42,2,f +13187,4595,0,1,f +13187,4740,42,1,f +13187,4859,7,2,f +13187,6118,0,3,f +13187,6141,42,3,f +13187,6141,4,1,t +13187,6141,4,2,f +13187,6141,42,1,t +13187,6249,4,1,f +13187,970c00pb021,0,1,f +13187,973px132c01,7,1,f +13189,2456,4,2,f +13189,2456,14,2,f +13189,3001,2,4,f +13189,3001,6,4,f +13189,3001,19,2,f +13189,3001,15,4,f +13189,3001,1,4,f +13189,3001,4,6,f +13189,3001,0,4,f +13189,3001,14,4,f +13189,3001p08,14,1,f +13189,3002,4,4,f +13189,3002,1,4,f +13189,3002,14,4,f +13189,3002,0,2,f +13189,3002,19,2,f +13189,3002,2,4,f +13189,3002,15,4,f +13189,3003,4,20,f +13189,3003,19,10,f +13189,3003,15,10,f +13189,3003,6,14,f +13189,3003,1,12,f +13189,3003,0,8,f +13189,3003,2,12,f +13189,3003,14,12,f +13189,3004,0,14,f +13189,3004,15,12,f +13189,3004,14,18,f +13189,3004,4,22,f +13189,3004,6,18,f +13189,3004,2,8,f +13189,3004,1,18,f +13189,3004,19,10,f +13189,3005,15,20,f +13189,3005,4,20,f +13189,3005,2,18,f +13189,3005,0,18,f +13189,3005,1,14,f +13189,3005pe1,14,2,f +13189,3005pe2,7,1,f +13189,3005pe3,7,1,f +13189,3007,14,2,f +13189,3007,4,2,f +13189,3008,14,2,f +13189,3008,4,2,f +13189,3008,0,2,f +13189,3008,15,2,f +13189,3009,15,2,f +13189,3009,4,2,f +13189,3009,2,2,f +13189,3009,14,2,f +13189,3009,1,2,f +13189,3009,6,2,f +13189,3009,0,2,f +13189,3010,0,4,f +13189,3010,15,6,f +13189,3010,6,4,f +13189,3010,14,6,f +13189,3010,4,6,f +13189,3010,1,6,f +13189,3010,2,4,f +13189,3010p01,14,1,f +13189,30176,2,1,f +13189,3020,6,2,f +13189,3021,0,2,f +13189,3021,15,2,f +13189,3021,6,2,f +13189,3022,4,2,f +13189,3022,1,2,f +13189,3022,14,2,f +13189,3039,6,2,f +13189,3622,6,4,f +13189,3622,4,6,f +13189,3622,1,6,f +13189,3622,0,4,f +13189,3622,2,4,f +13189,3622,15,6,f +13189,3622,14,6,f +13189,3660,6,2,f +13189,4286,6,2,f +13189,4286,14,2,f +13189,4287,14,2,f +13189,4287,6,2,f +13189,4728,15,1,f +13190,2357,4,2,f +13190,2420,7,2,f +13190,2431,4,2,f +13190,2436,7,1,f +13190,2540,7,1,f +13190,2584,4,1,f +13190,2585,7,1,f +13190,2650,4,1,f +13190,2651,4,1,f +13190,2873,4,1,f +13190,2877,4,1,f +13190,3004,4,1,f +13190,3005,15,2,f +13190,3005,4,2,f +13190,3009,4,2,f +13190,3020,0,1,f +13190,3020,7,3,f +13190,3023,7,4,f +13190,3023,4,5,f +13190,3024,15,2,f +13190,3024,46,2,f +13190,3034,0,1,f +13190,3035,4,1,f +13190,3069b,4,2,f +13190,3069b,7,1,f +13190,3070b,36,2,f +13190,3139,0,1,f +13190,3460,4,2,f +13190,3623,4,2,f +13190,3626apr0001,14,1,f +13190,3633,7,2,f +13190,3700,4,1,f +13190,3705,0,1,f +13190,3710,4,1,f +13190,3710,15,1,f +13190,3710,7,4,f +13190,3788,7,1,f +13190,3794a,7,3,f +13190,3795,0,1,f +13190,3821,4,1,f +13190,3822,4,1,f +13190,3823,41,1,f +13190,3829c01,15,1,f +13190,3836,6,1,f +13190,3837,0,1,f +13190,4085c,4,2,f +13190,4162,7,2,f +13190,4213,15,1,f +13190,4265a,7,1,f +13190,4315,4,1,f +13190,4485,4,1,f +13190,4531,0,1,f +13190,4600,0,3,f +13190,4625,15,1,f +13190,4625,4,2,f +13190,4857,4,2,f +13190,4865a,41,1,f +13190,6014a,15,6,f +13190,6015,0,6,f +13190,6141,46,2,f +13190,6668stk01,9999,1,t +13190,71509,0,1,f +13190,970c00,0,1,f +13190,973pb0202c01,15,1,f +13190,rb00164,0,1,f +13191,10197,72,2,f +13191,10884,27,1,f +13191,11090,0,4,f +13191,11153,70,1,f +13191,11211,71,5,f +13191,11290,72,3,f +13191,11301,72,3,f +13191,11458,15,1,f +13191,11610,19,1,f +13191,13770,297,1,f +13191,14418,71,1,f +13191,14769,70,1,f +13191,15068,72,2,f +13191,15207,71,2,f +13191,15207,15,1,f +13191,15207,14,1,f +13191,15254,19,1,f +13191,15392,72,1,f +13191,15470,29,1,f +13191,15573,70,6,f +13191,18649,71,2,f +13191,18948,15,1,f +13191,20105,0,1,f +13191,22885,4,3,f +13191,2357,72,2,f +13191,2357,70,2,f +13191,2412b,70,13,f +13191,2420,72,2,f +13191,2420,70,2,f +13191,24309,26,1,f +13191,2431,72,6,f +13191,2431,71,2,f +13191,2431,0,1,f +13191,2431pr0081,84,10,f +13191,2445,15,1,f +13191,2456,0,1,f +13191,2540,72,12,f +13191,25516,297,1,f +13191,26032,19,1,f +13191,26034,19,1,f +13191,26036,19,1,f +13191,26041,19,1,f +13191,26371pr06,27,1,f +13191,26371pr07,27,1,f +13191,26393pr01,4,1,f +13191,26497,0,1,f +13191,2654,0,2,f +13191,26633,0,1,f +13191,2723,0,2,f +13191,2780,0,11,f +13191,2815,0,4,f +13191,2817,4,1,f +13191,3001,71,1,f +13191,3001,15,1,f +13191,3001,14,2,f +13191,3002,72,2,f +13191,3004,70,7,f +13191,3004,14,1,f +13191,3004,72,2,f +13191,3004,15,1,f +13191,3005,70,4,f +13191,3005,72,10,f +13191,3008,70,2,f +13191,3008,72,1,f +13191,3009,72,2,f +13191,3009,14,2,f +13191,3009,70,6,f +13191,3009,1,2,f +13191,30099,70,1,f +13191,3010,72,4,f +13191,3010,70,14,f +13191,30136,84,6,f +13191,30150,84,1,f +13191,30157,72,1,f +13191,3020,72,1,f +13191,3020,25,2,f +13191,3020,70,7,f +13191,3020,71,1,f +13191,3021,14,1,f +13191,3021,72,3,f +13191,3021,0,1,f +13191,3022,4,1,f +13191,3023,70,6,f +13191,3023,1,3,f +13191,3023,72,2,f +13191,30293,72,1,f +13191,30294,72,1,f +13191,3031,72,3,f +13191,3032,70,1,f +13191,3034,70,4,f +13191,3034,72,4,f +13191,3035,70,2,f +13191,3035,1,1,f +13191,3036,72,2,f +13191,3037,70,1,f +13191,30374,70,1,f +13191,3039,70,4,f +13191,3039,71,1,f +13191,30395,72,2,f +13191,3040b,72,3,f +13191,30414,72,4,f +13191,30503,1,1,f +13191,30565,70,2,f +13191,30565,72,2,f +13191,3062b,70,14,f +13191,3068b,2,1,f +13191,3068bpr0295,15,1,f +13191,3069b,84,1,f +13191,3069b,72,6,f +13191,32013,0,1,f +13191,32013,72,2,f +13191,32014,0,2,f +13191,32016,70,1,f +13191,32028,71,1,f +13191,32034,0,7,f +13191,32062,4,16,f +13191,32064a,14,1,f +13191,32064a,0,3,f +13191,32064a,72,1,f +13191,32064a,71,1,f +13191,32073,71,1,f +13191,32123b,14,5,f +13191,32124,70,2,f +13191,32184,71,1,f +13191,32324,71,1,f +13191,32449,15,2,f +13191,32523,0,4,f +13191,33051,10,1,f +13191,33085,14,1,f +13191,3460,70,2,f +13191,3460,72,4,f +13191,3622,2,2,f +13191,3623,2,1,f +13191,3623,72,5,f +13191,3623,71,2,f +13191,3648b,72,5,f +13191,3649,71,1,f +13191,3660,70,1,f +13191,3660,15,4,f +13191,3660,72,2,f +13191,3666,72,1,f +13191,3666,1,1,f +13191,3673,71,2,f +13191,3678b,70,2,f +13191,3700,0,4,f +13191,3700,70,2,f +13191,3701,70,6,f +13191,3705,0,2,f +13191,3706,4,2,f +13191,3706,0,2,f +13191,3709,71,3,f +13191,3710,4,1,f +13191,3710,1,2,f +13191,3710,70,4,f +13191,3713,71,2,f +13191,3737,0,1,f +13191,3747a,70,2,f +13191,3749,19,4,f +13191,3794b,71,4,f +13191,3795,70,2,f +13191,3823,47,1,f +13191,3829c01,4,1,f +13191,3832,70,1,f +13191,3941,70,1,f +13191,4032a,0,6,f +13191,41532,0,1,f +13191,4162,70,2,f +13191,4185,71,4,f +13191,42022,4,1,f +13191,4209,84,2,f +13191,42610,71,2,f +13191,4274,1,8,f +13191,4287,70,2,f +13191,43903,0,1,f +13191,44302a,72,1,f +13191,4460b,70,4,f +13191,4477,72,2,f +13191,4495b,19,2,f +13191,4519,14,2,f +13191,4519,71,2,f +13191,4528,0,1,f +13191,4740,71,8,f +13191,47457,4,3,f +13191,48092,72,2,f +13191,4865a,72,2,f +13191,4865a,15,1,f +13191,48729b,72,4,f +13191,54091,72,1,f +13191,54095,70,1,f +13191,54200,72,1,f +13191,55982,71,1,f +13191,56823c50,0,1,f +13191,56904,71,1,f +13191,59426,72,2,f +13191,59443,0,11,f +13191,59443,4,2,f +13191,59443,70,1,f +13191,60477,14,1,f +13191,60477,72,2,f +13191,60485,71,1,f +13191,60581,47,2,f +13191,60598,71,2,f +13191,60614,72,4,f +13191,6091,0,2,f +13191,6091,4,1,f +13191,61409,71,4,f +13191,6141,4,3,f +13191,6141,182,2,f +13191,61510,71,1,f +13191,63864,15,2,f +13191,63864,0,2,f +13191,63965,0,1,f +13191,64448,70,2,f +13191,64566,84,4,f +13191,64728,4,1,f +13191,64951,84,1,f +13191,6541,70,2,f +13191,6628,0,5,f +13191,6632,72,4,f +13191,6636,70,2,f +13191,6636,71,5,f +13191,71155,0,1,f +13191,74698,0,2,f +13191,75902pr0009,72,1,f +13191,75937,0,1,f +13191,76764,179,1,f +13191,87079,70,5,f +13191,87087,4,4,f +13191,87087,72,2,f +13191,87580,70,2,f +13191,87585,70,4,f +13191,87994,0,2,f +13191,88293,72,2,f +13191,92280,0,1,f +13191,92593,4,1,f +13191,92946,72,2,f +13191,93273,72,1,f +13191,96874,25,1,t +13191,98138,71,4,f +13191,99206,4,2,f +13194,2340,15,2,f +13194,2348b,33,1,f +13194,2349a,15,1,f +13194,2372c01,0,1,f +13194,2432,4,1,f +13194,2436,4,1,f +13194,2445,15,1,f +13194,2450,15,4,f +13194,2540,7,1,f +13194,2540,4,1,f +13194,2555,7,1,f +13194,2555,15,1,f +13194,2569,4,1,f +13194,2584,4,1,f +13194,2585,0,1,f +13194,2610,14,2,f +13194,3004,0,6,f +13194,3005,0,2,f +13194,3009,0,3,f +13194,3010,7,1,f +13194,3022,4,1,f +13194,3022,0,1,f +13194,3023,4,4,f +13194,3036,4,1,f +13194,3039pr0005,15,1,f +13194,3039px14,15,1,f +13194,3068bp70,15,1,f +13194,3070b,36,1,f +13194,3070b,34,1,f +13194,3070b,33,2,f +13194,3460,4,1,f +13194,3626bp04,14,2,f +13194,3660,0,2,f +13194,3679,7,1,f +13194,3680,15,1,f +13194,3710,15,1,f +13194,3829c01,1,1,f +13194,3839b,7,1,f +13194,3939,15,1,f +13194,3939,41,2,f +13194,3962b,0,1,f +13194,4012stk01,9999,1,t +13194,4079,4,1,f +13194,4081b,4,1,f +13194,4085c,4,2,f +13194,4289,15,1,f +13194,4315,15,1,f +13194,4349,7,1,f +13194,4485,15,2,f +13194,4589,7,2,f +13194,4595,7,1,f +13194,4623,15,1,f +13194,4740,15,1,f +13194,4740,7,1,f +13194,4865a,41,4,f +13194,56823,0,1,f +13194,6019,15,1,f +13194,6111,7,2,f +13194,6141,46,2,f +13194,6141,7,1,f +13194,6141,4,2,f +13194,6141,36,1,f +13194,6564,0,1,f +13194,6565,0,1,f +13194,6636,15,2,f +13194,73090b,0,1,f +13194,970c00,0,2,f +13194,973px67c01,0,2,f +13196,10247,71,3,f +13196,11305,179,1,f +13196,11477,72,8,f +13196,11477,308,5,f +13196,12825,72,1,f +13196,14518,72,1,f +13196,15440,148,1,f +13196,15445,72,1,f +13196,2357,72,2,f +13196,2412b,297,2,f +13196,2412b,0,5,f +13196,2420,71,2,f +13196,2420,70,6,f +13196,2431,0,3,f +13196,2432,0,1,f +13196,2432,72,2,f +13196,2436,0,3,f +13196,2446pr0012,0,1,f +13196,2447,40,1,f +13196,2447,40,1,t +13196,2489,70,1,f +13196,2528pr0005,0,1,f +13196,2540,72,1,f +13196,2540,0,1,f +13196,2546,72,1,f +13196,2548,72,1,f +13196,2562,70,1,f +13196,2562,70,1,t +13196,2654,72,4,f +13196,2780,0,1,f +13196,2780,0,1,t +13196,2877,71,1,f +13196,3001,4,1,f +13196,3003,19,1,f +13196,3004,0,2,f +13196,3004,72,2,f +13196,3009,0,2,f +13196,30136,70,1,f +13196,30162,297,1,t +13196,30162,297,1,f +13196,3020,72,2,f +13196,3020,0,1,f +13196,3021,71,1,f +13196,3021,19,3,f +13196,3022,72,2,f +13196,3022,0,4,f +13196,3023,71,7,f +13196,3023,0,14,f +13196,30374,0,1,f +13196,30387,71,4,f +13196,3040b,308,4,f +13196,3040b,71,2,f +13196,30414,0,3,f +13196,3049d,308,1,f +13196,30553,71,2,f +13196,30554a,71,4,f +13196,30602,72,2,f +13196,3062b,72,4,f +13196,3062b,0,4,f +13196,3065,36,6,f +13196,30663,0,2,f +13196,3068b,0,3,f +13196,3069b,72,4,f +13196,3070bpr0147,71,1,t +13196,3070bpr0147,71,1,f +13196,3176,72,3,f +13196,32062,4,3,f +13196,32064b,72,1,f +13196,32072,0,2,f +13196,32187,71,1,f +13196,32523,71,1,f +13196,32523,0,2,f +13196,33078,4,1,f +13196,3626cpr1334,14,1,f +13196,3626cpr1336,71,1,f +13196,3626cpr1337,14,1,f +13196,3626cpr1338,179,1,f +13196,3660,0,3,f +13196,3660,70,2,f +13196,3665,70,2,f +13196,3666,0,1,f +13196,3678b,484,2,f +13196,3701,0,1,f +13196,3706,0,1,f +13196,3709,0,2,f +13196,3710,70,1,f +13196,3710,0,1,f +13196,3794b,72,1,f +13196,3795,71,2,f +13196,3833,4,1,f +13196,3894,0,3,f +13196,3937,72,2,f +13196,3941,71,1,f +13196,3958,72,2,f +13196,4032a,308,1,f +13196,4032a,484,3,f +13196,4081b,71,2,f +13196,40902,0,2,f +13196,41532,0,2,f +13196,41747,72,1,f +13196,41748,72,1,f +13196,4274,1,3,t +13196,4274,1,11,f +13196,43093,1,1,f +13196,44567a,71,2,f +13196,44728,0,4,f +13196,4495b,297,1,f +13196,4495b,0,1,f +13196,4623,0,1,f +13196,4738a,70,1,f +13196,4739a,70,1,f +13196,4740,0,1,f +13196,47455,0,2,f +13196,47456,308,1,f +13196,47456,72,1,f +13196,47457,297,4,f +13196,476,0,1,f +13196,4790,70,1,f +13196,48171,72,2,f +13196,48172,0,1,f +13196,48336,297,4,f +13196,48729b,0,2,f +13196,48729b,0,2,t +13196,50950,72,2,f +13196,53451,179,8,f +13196,53451,179,1,t +13196,53585,0,2,f +13196,53989,70,4,f +13196,54200,0,8,f +13196,54200,0,1,t +13196,57908,72,2,f +13196,57909b,72,1,f +13196,58176,179,4,f +13196,59230,71,1,t +13196,59230,71,2,f +13196,59443,70,1,f +13196,59900,0,1,f +13196,60115,71,1,f +13196,60470a,0,2,f +13196,60474,297,1,f +13196,60475a,0,1,f +13196,60478,0,4,f +13196,6091,70,4,f +13196,61184,71,2,f +13196,6134,4,2,f +13196,61409,0,5,f +13196,61409,484,1,f +13196,6141,0,2,f +13196,6141,0,1,t +13196,6141,297,1,t +13196,6141,297,7,f +13196,6141,179,10,f +13196,6141,179,1,t +13196,62462,71,1,f +13196,62462,0,1,f +13196,6254,15,1,f +13196,6266,71,1,t +13196,6266,71,1,f +13196,63868,0,1,f +13196,63868,72,4,f +13196,64644,297,1,f +13196,64647,57,1,t +13196,64647,57,1,f +13196,6541,72,4,f +13196,6542a,72,2,f +13196,6558,1,2,f +13196,6587,28,1,f +13196,6632,0,2,f +13196,73983,72,4,f +13196,75937,179,1,f +13196,84943,148,2,f +13196,87079,0,3,f +13196,87552,0,2,f +13196,87580,72,1,f +13196,87580,320,2,f +13196,92013,72,4,f +13196,92338,179,1,t +13196,92338,179,3,f +13196,92690,297,1,f +13196,92692,0,1,f +13196,93160,15,1,f +13196,93273,320,1,f +13196,93571,0,1,f +13196,95354,0,1,f +13196,970c07pr0619,1,1,f +13196,970c63pr0609,272,1,f +13196,973pr2553c01,25,1,f +13196,973pr2554c01,272,1,f +13196,98138,36,8,f +13196,98138,36,1,t +13196,98375,179,1,f +13196,98375,179,1,t +13196,99207,71,5,f +13196,99780,72,6,f +13196,99781,71,6,f +13199,11212,72,1,f +13199,11477,72,1,f +13199,18868a,41,1,f +13199,19981pr0013,41,1,f +13199,30173b,297,2,f +13199,3024,0,3,f +13199,3024,0,1,t +13199,3623,1,2,f +13199,3623,0,6,f +13199,3626cpr1367,14,1,f +13199,3710,1,1,f +13199,3794b,71,2,f +13199,3941,41,1,f +13199,4081b,0,3,f +13199,41769,1,1,f +13199,41770,1,1,f +13199,43722,0,1,f +13199,43723,0,1,f +13199,4599b,71,1,t +13199,4599b,71,2,f +13199,54200,0,1,t +13199,54200,0,3,f +13199,6141,297,2,f +13199,6141,179,1,t +13199,6141,179,1,f +13199,6141,41,4,f +13199,6141,297,1,t +13199,6141,41,1,t +13199,63864,1,1,f +13199,92338,297,1,t +13199,92338,297,1,f +13199,92690,297,2,f +13199,970c00pr0774,1,1,f +13199,973pr2855c01,1,1,f +13199,98133pr0015,1,1,f +13201,3002,0,1,f +13201,3003,0,4,f +13201,3004,0,9,f +13201,3010,0,2,f +13201,3021,0,1,f +13201,3023,15,4,f +13201,6141,14,2,f +13201,6141,14,1,t +13201,87087,0,2,f +13202,3149c01,4,5,f +13202,3190,4,2,f +13202,3191,4,2,f +13202,3192,1,1,f +13202,3192,14,1,f +13202,3193,14,1,f +13202,3193,1,1,f +13202,3194,14,1,f +13202,3194,1,1,f +13202,3195,14,1,f +13202,3195,1,1,f +13203,2039,11,1,f +13203,22670,61,1,f +13203,2435,2,2,f +13203,2566,15,2,f +13203,2713,3,2,f +13203,3005,118,6,f +13203,30077,15,1,f +13203,3010,15,3,f +13203,30151a,47,1,f +13203,30153,36,2,f +13203,30153,45,4,f +13203,30153,143,6,f +13203,30153,57,1,f +13203,3028,26,1,f +13203,3032,15,1,f +13203,30613,15,4,f +13203,30614,143,1,f +13203,33016,14,1,f +13203,33061,41,3,f +13203,3307,15,4,f +13203,3308,15,2,f +13203,33213,15,4,f +13203,33214pr0002,9,1,f +13203,33215,114,3,f +13203,33217,143,1,f +13203,33230,125,1,f +13203,3622,118,2,f +13203,3666,118,2,f +13203,3794a,15,3,f +13203,3898pb01,125,3,f +13203,3940b,110,1,f +13203,3942c,15,6,f +13203,40232,7,1,f +13203,4088,15,3,f +13203,4095,3,2,f +13203,41539,15,1,f +13203,42013,135,2,f +13203,4202,15,1,f +13203,42409,143,3,f +13203,42498,9,1,f +13203,4429,41,1,f +13203,4490,15,2,f +13203,4536,15,2,f +13203,4589,15,7,f +13203,4589,46,8,f +13203,4727,115,2,f +13203,4728,52,1,f +13203,4728,45,1,f +13203,4738a,45,1,f +13203,4739a,45,1,f +13203,4740,15,2,f +13203,59,383,1,f +13203,6162,41,1,f +13203,6162,125,2,f +13203,6178,73,1,f +13203,6178,13,1,f +13203,6179,73,1,f +13203,6179,5,2,f +13203,6182,15,6,f +13203,6187,5,1,f +13203,6199,5,1,f +13203,6203,5,1,f +13203,6254,18,2,f +13203,6256,383,3,f +13203,72515,383,1,f +13203,92410,26,2,f +13203,bear,15,1,f +13203,belvfem8,-1,1,f +13203,belvmale1,-1,1,f +13203,belvmale2,-1,1,f +13203,belvskirt11,9,1,f +13203,pouch11,1,1,f +13203,pouch11,5,1,f +13203,skirt01,15,1,f +13203,x11,77,1,f +13205,3001a,14,1,f +13205,3002a,1,2,f +13205,3002a,14,1,f +13205,3003,47,1,f +13205,3004,14,1,f +13205,3010,47,1,f +13205,3010,4,2,f +13205,3010pb035e,4,1,f +13205,3020,1,1,f +13205,3022,14,1,f +13205,3023,14,4,f +13205,3037,47,1,f +13205,3039,47,1,f +13205,3062a,0,1,f +13205,3137c01,0,1,f +13205,3137c02,0,2,f +13205,3139,0,2,f +13205,3149c01,14,2,f +13205,3315,14,1,f +13205,3404ac01,0,1,f +13205,784,14,1,f +13205,7b,0,4,f +13205,967,4,1,f +13205,968,4,1,f +13205,969,7,1,f +13207,264,1,1,f +13207,3957a,0,1,f +13207,3962a,0,1,f +13207,4362acx1,0,1,f +13207,4452,1,1,f +13207,4461,1,1,f +13207,fab4b,9999,1,f +13207,fabaj3,14,1,f +13207,u9154,0,1,f +13207,x581c08,1,1,f +13207,x610c03px2,1,2,f +13208,3626bpr0700,14,1,f +13208,88646,0,1,f +13208,90509,15,2,f +13208,90540,15,1,t +13208,90540,15,2,f +13208,90541,1,1,f +13208,970c00pr0168,1,1,f +13208,973pr1663c01,1,1,f +13209,2420,4,4,f +13209,2456,4,1,f +13209,2456,15,2,f +13209,2456,1,2,f +13209,2456,14,1,f +13209,2926,0,2,f +13209,3001,14,8,f +13209,3001,0,4,f +13209,3001,4,8,f +13209,3001,15,8,f +13209,3001,2,4,f +13209,3001,1,8,f +13209,3002,1,6,f +13209,3002,4,6,f +13209,3002,0,3,f +13209,3002,2,3,f +13209,3002,15,6,f +13209,3002,14,6,f +13209,3003,14,28,f +13209,3003,70,3,f +13209,3003,25,4,f +13209,3003,0,12,f +13209,3003,27,2,f +13209,3003,4,28,f +13209,3003,1,28,f +13209,3003,15,28,f +13209,3003,2,12,f +13209,3003pr0002,15,1,f +13209,3004,15,12,f +13209,3004,2,6,f +13209,3004,14,12,f +13209,3004,70,2,f +13209,3004,27,4,f +13209,3004,0,6,f +13209,3004,1,12,f +13209,3004,4,12,f +13209,3004pr0001,14,1,f +13209,3004pr0002,14,1,f +13209,3005,1,8,f +13209,3005,70,4,f +13209,3005,73,6,f +13209,3005,14,8,f +13209,3005,4,8,f +13209,3005,15,8,f +13209,3005,25,4,f +13209,3005,27,6,f +13209,3005,2,4,f +13209,3005,0,4,f +13209,3005pr0003,14,2,f +13209,3005pr0003,15,2,f +13209,3007,15,1,f +13209,3007,4,1,f +13209,3007,1,2,f +13209,3007,14,1,f +13209,3008,15,2,f +13209,3008,4,1,f +13209,3008,1,2,f +13209,3008,14,1,f +13209,3009,14,2,f +13209,3009,15,3,f +13209,3009,4,2,f +13209,3009,1,3,f +13209,3010,25,3,f +13209,3010,0,4,f +13209,3010,14,4,f +13209,3010,4,4,f +13209,3010,2,4,f +13209,3010,70,2,f +13209,3010,1,4,f +13209,3010,15,4,f +13209,3020,0,1,f +13209,3020,2,2,f +13209,3020,25,2,f +13209,3020,1,2,f +13209,3021,1,1,f +13209,3022,0,2,f +13209,3022,4,2,f +13209,3023,73,4,f +13209,3023,27,2,f +13209,3023,1,4,f +13209,3023,4,4,f +13209,3023,15,2,f +13209,3034,2,2,f +13209,3039,4,4,f +13209,3040b,2,4,f +13209,3040b,0,2,f +13209,3040b,4,4,f +13209,3040b,14,3,f +13209,3040b,25,4,f +13209,3040b,70,4,f +13209,3040b,1,4,f +13209,3062b,0,6,f +13209,3062b,15,3,f +13209,3065,47,2,f +13209,32000,14,2,f +13209,3297,1,4,f +13209,3298,1,4,f +13209,3622,15,4,f +13209,3622,14,4,f +13209,3622,4,4,f +13209,3622,25,1,f +13209,3622,1,4,f +13209,3622,2,2,f +13209,3622,0,2,f +13209,3660,4,4,f +13209,3660,70,4,f +13209,3665,4,4,f +13209,3665,70,4,f +13209,3665,1,2,f +13209,3665,2,4,f +13209,3665,0,2,f +13209,3666,25,2,f +13209,3700,70,1,f +13209,3710,4,1,f +13209,3710,1,2,f +13209,3710,14,2,f +13209,3710,73,2,f +13209,3747b,1,2,f +13209,3795,15,1,f +13209,3795,25,1,f +13209,4070,1,2,f +13209,4070,4,4,f +13209,4490,15,2,f +13209,4623,15,1,f +13209,54200,0,4,f +13209,54200,0,1,t +13209,6014b,71,4,f +13209,6091,4,2,f +13209,6141,14,1,t +13209,6141,46,1,t +13209,6141,36,2,f +13209,6141,14,4,f +13209,6141,15,1,t +13209,6141,1,4,f +13209,6141,46,2,f +13209,6141,27,4,f +13209,6141,15,4,f +13209,6141,4,1,t +13209,6141,4,4,f +13209,6141,27,1,t +13209,6141,36,1,t +13209,6141,25,1,t +13209,6141,1,1,t +13209,6141,25,4,f +13209,87697,0,4,f +13210,71294,15,1,f +13211,2825,14,2,f +13211,2905,0,2,f +13211,30155,7,1,f +13211,32017,7,2,f +13211,32056,14,4,f +13211,32062,0,1,f +13211,32123b,7,2,f +13211,32123b,7,1,t +13211,3482,7,1,f +13211,3483,0,2,f +13211,3673,7,1,f +13211,3713,7,1,f +13211,3713,7,1,t +13211,4519,0,5,f +13211,6558,0,1,f +13211,6632,14,2,f +13211,71509,0,2,t +13211,71509,0,1,f +13212,2731,7,1,f +13213,10197,72,6,f +13213,10928,72,1,f +13213,11946,1,2,f +13213,11947,1,2,f +13213,12799,72,1,f +13213,18352,72,1,f +13213,2780,0,16,f +13213,2780,0,1,t +13213,32013,0,10,f +13213,32015,0,6,f +13213,32016,0,2,f +13213,32073,71,3,f +13213,32123b,71,1,t +13213,32123b,71,2,f +13213,32138,0,1,f +13213,32140,4,2,f +13213,32184,71,2,f +13213,32271,1,4,f +13213,32291,0,3,f +13213,32316,1,2,f +13213,32449,0,2,f +13213,32524,1,2,f +13213,32524,0,1,f +13213,3705,0,4,f +13213,3708,0,2,f +13213,3713,71,1,t +13213,3713,4,1,t +13213,3713,4,4,f +13213,3713,71,10,f +13213,41678,71,1,f +13213,42003,0,3,f +13213,43093,1,7,f +13213,44294,71,1,f +13213,4519,71,10,f +13213,4716,71,1,f +13213,56145,0,4,f +13213,59443,0,3,f +13213,60483,71,4,f +13213,6141,47,2,f +13213,6141,47,1,t +13213,61481,0,4,f +13213,62462,71,2,f +13213,64391,0,1,f +13213,64683,0,1,f +13213,6536,0,3,f +13213,6558,1,17,f +13213,87080,0,1,f +13213,87086,0,1,f +13213,99773,0,2,f +13215,14226c41,0,1,f +13215,2335,4,1,f +13215,2339,7,2,f +13215,2362a,7,2,f +13215,2431,0,2,f +13215,2444,0,4,f +13215,2446,15,1,f +13215,2447,42,1,f +13215,2449,7,2,f +13215,2458,7,4,f +13215,2496,0,2,f +13215,2528pb01,0,1,f +13215,2530,8,1,f +13215,2537,0,1,f +13215,2539,8,1,f +13215,2543,1,1,f +13215,2550c01,6,1,f +13215,2555,7,4,f +13215,2555,0,6,f +13215,2562,6,1,f +13215,2569,42,3,f +13215,2570,8,2,f +13215,2582,41,2,f +13215,2655,7,2,f +13215,2714a,7,1,f +13215,2744,7,2,f +13215,2815,0,2,f +13215,2876,0,1,f +13215,2917,7,1,f +13215,2918,41,1,f +13215,2952,0,2,f +13215,2983,7,4,f +13215,298c02,4,2,f +13215,30038,8,1,f +13215,3004,7,6,f +13215,3004,0,1,f +13215,30047,0,1,f +13215,3005,7,2,f +13215,3008,7,4,f +13215,3010,7,4,f +13215,3010,0,2,f +13215,3020,7,1,f +13215,3020,0,1,f +13215,3021,0,2,f +13215,3021,7,4,f +13215,3022,14,4,f +13215,3022,7,3,f +13215,3023,7,1,f +13215,3029,7,1,f +13215,3031,7,2,f +13215,3031,0,1,f +13215,3036,7,1,f +13215,3039,7,1,f +13215,3039pr0005,15,1,f +13215,3040b,7,2,f +13215,3062b,14,8,f +13215,32005b,8,2,f +13215,3298,7,1,f +13215,3479,0,2,f +13215,3585,7,1,f +13215,3586,7,1,f +13215,3626bpx19,14,1,f +13215,3626bpx55,14,1,f +13215,3660,7,1,f +13215,3666,7,2,f +13215,3666,0,2,f +13215,3679,7,1,f +13215,3680,14,1,f +13215,3700,14,4,f +13215,3701,7,1,f +13215,3704,0,2,f +13215,3707,0,2,f +13215,3710,7,5,f +13215,3710,0,4,f +13215,3713,7,4,f +13215,3731,14,2,f +13215,3737,0,2,f +13215,3794a,7,3,f +13215,3832,7,2,f +13215,3844,8,1,f +13215,3894,0,4,f +13215,3901,0,1,f +13215,3941,14,1,f +13215,4070,7,2,f +13215,4083,4,2,f +13215,4085c,7,2,f +13215,4185,7,5,f +13215,4229,14,2,f +13215,4265b,7,1,f +13215,4275b,0,2,f +13215,4485,1,1,f +13215,4503,0,1,f +13215,4531,0,2,f +13215,4589,42,1,f +13215,4599a,14,2,f +13215,4625,7,2,f +13215,4738a,6,1,f +13215,4739a,6,1,f +13215,4740,42,3,f +13215,4865a,7,4,f +13215,6019,4,1,f +13215,6041,14,1,f +13215,6043,14,1,f +13215,6050,8,1,f +13215,6051,0,1,f +13215,6052,8,1,f +13215,6053,0,1,f +13215,6057,6,2,f +13215,6067,0,1,f +13215,6117,57,1,f +13215,6119,57,1,f +13215,6124,21,1,f +13215,6125,4,1,f +13215,6126a,57,2,f +13215,6127,2,1,f +13215,6128,2,1,f +13215,6133,4,2,f +13215,6140,14,1,f +13215,6141,4,1,f +13215,6538b,7,3,f +13215,6628,0,2,f +13215,6636,0,2,f +13215,85544,4,2,f +13215,970c00,15,1,f +13215,970c00,1,1,f +13215,973px39c01,2,1,f +13215,973px91c01,15,1,f +13216,3001a,47,1,f +13216,3004,4,8,f +13216,3005,14,2,f +13216,3005,4,2,f +13216,3010,14,1,f +13216,3010,1,1,f +13216,3010,4,3,f +13216,3010p20c,1,1,f +13216,3010p30,14,2,f +13216,3020,0,2,f +13216,3020,1,1,f +13216,3021,0,1,f +13216,3022,0,1,f +13216,3035,1,2,f +13216,3035,0,1,f +13216,3046a,1,2,f +13216,3062a,0,1,f +13216,3062a,14,1,f +13216,3081bc01,15,3,f +13216,3137c01,0,4,f +13216,3139,0,8,f +13216,3183b,1,1,f +13216,3184,1,1,f +13216,32bc01,15,1,f +13221,270c02,0,3,f +13221,3001a,0,1,f +13221,3003,0,1,f +13221,3004,1,8,f +13221,3004,0,1,f +13221,3005,0,10,f +13221,3005,1,4,f +13221,3006,14,2,f +13221,3006,0,4,f +13221,3008,0,2,f +13221,3009,1,2,f +13221,3009,0,5,f +13221,3010,1,2,f +13221,3010,0,6,f +13221,3021,0,2,f +13221,3022,4,1,f +13221,3022,15,1,f +13221,3022,0,1,f +13221,3023,0,1,f +13221,3032,0,2,f +13221,3034,15,16,f +13221,3034,4,1,f +13221,3035,4,2,f +13221,3037,0,2,f +13221,3038,0,2,f +13221,3040a,0,4,f +13221,3062a,0,5,f +13221,3087c,14,2,f +13221,3145,4,2,f +13221,3229a,1,16,f +13221,3230a,1,16,f +13221,3358,0,6,f +13221,3359,0,6,f +13221,4178a,0,1,f +13221,7049b,0,2,f +13221,wheel2b,4,4,f +13226,2412b,7,1,f +13226,2445,1,2,f +13226,2878c01,0,2,f +13226,2920,0,1,f +13226,298c02,7,1,f +13226,298c02,7,1,t +13226,3001,0,2,f +13226,3009,0,2,f +13226,30182,0,1,f +13226,3020,1,1,f +13226,3021,15,2,f +13226,3024,46,2,f +13226,3039,7,1,f +13226,3040b,0,1,f +13226,3069bp52,15,1,f +13226,32001,0,1,f +13226,3300,1,2,f +13226,3482,0,2,f +13226,3483,0,2,f +13226,3626bp04,14,1,f +13226,3666,1,1,f +13226,3701,0,6,f +13226,3706,0,1,f +13226,3708,0,1,f +13226,3713,7,1,t +13226,3713,7,1,f +13226,3833,15,1,f +13226,3941,7,1,f +13226,3961,7,1,f +13226,4022,0,1,f +13226,4032a,7,1,f +13226,4070,0,1,f +13226,4285b,0,1,f +13226,4589,0,2,f +13226,6087,0,4,f +13226,6583,0,1,f +13226,71137,383,1,f +13226,73092,0,1,f +13226,85543,15,1,t +13226,85543,15,1,f +13226,970c00,8,1,f +13226,973px8c01,1,1,f +13227,10039,0,1,f +13227,11002,0,1,f +13227,2436,4,1,f +13227,3001,0,1,f +13227,3010,4,2,f +13227,30191stk01,9999,1,t +13227,3020,0,3,f +13227,3020,4,2,f +13227,3022,0,1,f +13227,3023,71,1,f +13227,3034,72,1,f +13227,30414,4,1,f +13227,3068b,4,1,f +13227,3068b,71,1,f +13227,32028,0,2,f +13227,3245c,4,3,f +13227,3710,4,2,f +13227,3710,0,1,f +13227,50951,0,4,f +13227,60212,4,1,f +13227,85984,71,1,f +13227,85984,4,2,f +13227,93273,4,1,f +13227,93593,71,4,f +13227,93606,4,2,f +13228,12825,15,2,f +13228,2421,0,1,f +13228,2460,71,1,f +13228,2479,0,1,f +13228,298c02,71,1,f +13228,3003,1,1,f +13228,3004,15,2,f +13228,3020,15,1,f +13228,3021,1,1,f +13228,3023,71,2,f +13228,3023,36,1,f +13228,3024,15,1,f +13228,3070b,4,4,f +13228,3176,71,1,f +13228,3460,1,1,f +13228,3666,0,8,f +13228,3747b,1,1,f +13228,3794b,1,1,f +13228,4286,15,3,f +13228,43722,72,1,f +13228,43723,72,1,f +13228,4488,0,1,f +13228,4856a,15,1,f +13228,6091,15,2,f +13228,6141,57,1,f +13228,92474,47,1,f +13228,99780,72,2,f +13229,3001a,4,1,f +13229,3003,4,2,f +13229,3004,15,13,f +13229,3004,4,2,f +13229,3008,4,6,f +13229,3009,15,1,f +13229,3009,4,15,f +13229,3009p21,15,10,f +13229,3010,4,1,f +13229,3010,15,3,f +13229,3010p21,15,2,f +13229,3020,1,1,f +13229,3020,15,2,f +13229,3021,15,7,f +13229,3022,15,1,f +13229,3022,1,1,f +13229,3023,15,10,f +13229,3024,34,1,f +13229,3024,36,1,f +13229,3024,15,24,f +13229,3027,1,1,f +13229,3028,15,1,f +13229,3030,15,1,f +13229,3032,15,2,f +13229,3033,15,1,f +13229,3033,1,1,f +13229,3035,15,1,f +13229,3036,1,1,f +13229,3038,15,2,f +13229,3040b,15,5,f +13229,3040b,4,4,f +13229,3068b,15,4,f +13229,3456,15,1,f +13229,3460,15,14,f +13229,3622,15,4,f +13229,3623,15,11,f +13229,3623,0,2,f +13229,3660,4,2,f +13229,3665,4,12,f +13229,3666,15,5,f +13229,3678a,15,3,f +13229,3710,15,12,f +13229,3794a,15,2,f +13229,3795,15,5,f +13230,11153,73,1,f +13230,11211,19,1,f +13230,11477,2,1,f +13230,14704,71,2,f +13230,15573,71,6,f +13230,15573,4,5,f +13230,15573,73,2,f +13230,15672,15,2,f +13230,2419,2,1,f +13230,2420,2,5,f +13230,2420,4,4,f +13230,2420,70,4,f +13230,2420,15,2,f +13230,2420,71,6,f +13230,2445,15,1,f +13230,2450,2,12,f +13230,2476a,71,1,f +13230,298c02,14,4,f +13230,298c02,14,1,t +13230,3004,71,2,f +13230,3005,15,1,f +13230,3005,4,2,f +13230,3020,70,8,f +13230,3020,72,1,f +13230,3020,2,1,f +13230,3020,0,1,f +13230,3020,15,5,f +13230,3020,71,5,f +13230,3020,28,1,f +13230,3021,0,2,f +13230,3021,73,3,f +13230,3021,15,2,f +13230,3021,2,1,f +13230,3021,14,1,f +13230,3021,71,4,f +13230,3022,70,1,f +13230,3022,0,3,f +13230,3022,72,4,f +13230,3022,4,3,f +13230,3022,2,2,f +13230,3022,15,2,f +13230,3023,73,16,f +13230,3023,4,3,f +13230,3023,71,7,f +13230,3023,0,4,f +13230,3023,70,11,f +13230,3023,15,4,f +13230,3023,2,5,f +13230,3023,72,6,f +13230,3024,0,14,f +13230,3024,15,14,f +13230,3024,73,4,f +13230,3024,0,1,t +13230,3024,73,1,t +13230,3024,15,2,t +13230,3024,70,1,t +13230,3024,71,2,t +13230,3024,70,3,f +13230,3024,71,10,f +13230,3024,4,1,t +13230,3024,4,1,f +13230,3027,2,1,f +13230,3031,4,2,f +13230,3031,71,1,f +13230,3034,15,1,f +13230,3034,28,13,f +13230,30374,0,1,f +13230,30383,71,4,f +13230,30553,0,4,f +13230,30554a,0,4,f +13230,3068b,72,3,f +13230,3069b,85,2,f +13230,3069b,73,1,f +13230,3069b,2,4,f +13230,3070b,73,1,t +13230,3070b,73,1,f +13230,3176,0,8,f +13230,3184,0,2,f +13230,32016,70,2,f +13230,32039,71,2,f +13230,32062,4,2,f +13230,32073,71,2,f +13230,32123b,71,1,t +13230,32123b,71,2,f +13230,32124,70,1,f +13230,3623,71,4,f +13230,3623,0,5,f +13230,3623,4,2,f +13230,3623,73,4,f +13230,3623,2,1,f +13230,3623,70,7,f +13230,3623,15,4,f +13230,3666,70,3,f +13230,3701,70,1,f +13230,3709,0,2,f +13230,3710,70,5,f +13230,3710,73,6,f +13230,3710,4,3,f +13230,3710,15,4,f +13230,3710,71,5,f +13230,3795,4,1,f +13230,3795,70,3,f +13230,3937,15,1,f +13230,3937,0,3,f +13230,3941,25,1,f +13230,3941,71,1,f +13230,40378,288,1,f +13230,40379,288,1,f +13230,4070,4,3,f +13230,4070,70,3,f +13230,4070,15,2,f +13230,41539,2,2,f +13230,41769,70,1,f +13230,41769,73,2,f +13230,41769,272,1,f +13230,41769,71,1,f +13230,41769,15,1,f +13230,41770,272,1,f +13230,41770,70,1,f +13230,41770,71,1,f +13230,41770,73,2,f +13230,41770,15,1,f +13230,4274,1,3,f +13230,4274,71,1,f +13230,4274,71,1,t +13230,4274,1,1,t +13230,43093,1,2,f +13230,43719,15,1,f +13230,43722,4,1,f +13230,43722,71,1,f +13230,43722,15,1,f +13230,43723,4,1,f +13230,43723,15,1,f +13230,43723,14,8,f +13230,43723,71,1,f +13230,44294,71,1,f +13230,44728,15,6,f +13230,4519,71,1,f +13230,4697b,71,1,t +13230,4697b,71,2,f +13230,48336,14,2,f +13230,48336,2,1,f +13230,4871,15,2,f +13230,48729b,0,6,f +13230,48729b,0,1,t +13230,48933,288,2,f +13230,49668,15,4,f +13230,50304,272,1,f +13230,50305,272,1,f +13230,50950,73,2,f +13230,50950,0,1,f +13230,51739,71,4,f +13230,51739,2,1,f +13230,52107,0,1,f +13230,54200,4,2,f +13230,54200,288,1,t +13230,54200,72,4,f +13230,54200,2,1,t +13230,54200,73,1,t +13230,54200,85,1,t +13230,54200,73,4,f +13230,54200,72,1,t +13230,54200,4,1,t +13230,54200,2,11,f +13230,54200,71,4,f +13230,54200,70,13,f +13230,54200,71,1,t +13230,54200,85,1,f +13230,54200,288,11,f +13230,54200,70,1,t +13230,59900,72,1,f +13230,59900,0,1,f +13230,60470b,2,1,f +13230,60478,70,5,f +13230,61252,14,8,f +13230,6134,0,4,f +13230,6141,0,5,f +13230,6141,0,3,t +13230,63864,25,8,f +13230,63864,28,8,f +13230,63868,0,1,f +13230,63868,1,4,f +13230,6536,0,2,f +13230,6636,28,16,f +13230,75937,15,1,f +13230,85984,2,5,f +13230,85984,71,3,f +13230,87079pr0073,0,1,f +13230,87079pr0074,0,1,f +13230,87079pr0075,0,1,f +13230,87087,4,2,f +13230,87087,0,1,f +13230,87609,15,2,f +13230,90194,288,1,f +13230,92280,0,5,f +13230,92946,72,8,f +13230,96874,25,1,t +13230,99206,0,4,f +13230,99784,47,1,f +13231,2340,0,1,f +13231,2431,71,2,f +13231,3021,71,14,f +13231,3021,72,4,f +13231,3023,71,5,f +13231,3024,72,1,f +13231,3024,71,8,f +13231,3030,0,1,f +13231,3040b,71,1,f +13231,3069b,71,2,f +13231,3070b,71,10,f +13231,3460,72,4,f +13231,3460,71,4,f +13231,3623,71,10,f +13231,3623,72,6,f +13231,3665,71,1,f +13231,3666,71,2,f +13231,3666,72,3,f +13231,3710,72,3,f +13231,3710,71,1,f +13231,3794b,0,4,f +13231,4081b,71,4,f +13231,4162,71,3,f +13231,43722,71,1,f +13231,43723,71,1,f +13231,4589,72,4,f +13231,50304,71,1,f +13231,50305,71,1,f +13231,54200,71,8,f +13231,54200,47,1,f +13231,6141,72,10,f +13231,6636,71,2,f +13231,85984,71,10,f +13232,2446,15,1,f +13232,2446,0,5,f +13232,2447,0,1,f +13232,2447,42,4,f +13232,2447,36,1,f +13232,2516,0,1,f +13232,3626apr0001,14,6,f +13232,3838,0,4,f +13232,3962a,0,1,f +13232,4006,0,1,f +13232,4349,7,1,f +13232,4479,7,1,f +13232,4589,42,2,f +13232,4735,0,1,f +13232,4736,0,1,f +13232,6023,15,1,f +13232,970c00,0,1,f +13232,970x026,15,5,f +13232,973p51c01,15,2,f +13232,973p52c01,0,1,f +13232,973p68c01,4,2,f +13232,973p6bc01,15,1,f +13235,2362b,0,2,f +13235,2412b,0,1,f +13235,2432,8,2,f +13235,2456,8,1,f +13235,2540,0,2,f +13235,2921,8,12,f +13235,3004,8,21,f +13235,3004,0,4,f +13235,3009,8,1,f +13235,3020,8,1,f +13235,3023,8,2,f +13235,3037,8,6,f +13235,3040b,8,6,f +13235,3062b,8,2,f +13235,3068b,0,1,f +13235,32064b,15,1,f +13235,3297,0,4,f +13235,3623,8,2,f +13235,3660,8,4,f +13235,3794a,0,1,f +13235,3941,0,1,f +13235,3960,0,1,f +13235,4032a,0,1,f +13235,4175,0,2,f +13235,4215b,0,2,f +13235,4349,0,1,f +13235,4510,0,2,f +13235,6019,0,2,f +13235,6111,8,2,f +13235,6141,36,3,f +13235,6141,42,4,f +13235,6141,8,8,f +13235,6587,8,1,f +13237,60656,72,1,f +13240,2496,0,1,f +13240,2655,14,1,f +13240,3020,4,1,f +13240,3022,4,1,f +13240,3023,4,2,f +13240,3039,1,1,f +13240,3039,47,1,f +13240,4287,1,2,f +13240,6141,34,1,f +13240,6141,36,1,f +13242,2420,14,2,f +13242,2420,0,10,f +13242,2711,14,2,f +13242,2712,7,2,f +13242,2719,7,6,f +13242,2730,0,6,f +13242,2780,0,32,f +13242,2817,0,2,f +13242,2825,14,4,f +13242,2825,0,2,f +13242,2838c01,7,1,f +13242,2847c02,0,1,f +13242,2853,7,2,f +13242,2857,0,4,f +13242,2905,0,2,f +13242,2983,7,2,f +13242,2984,4,1,f +13242,2985,4,1,f +13242,2986,4,1,f +13242,3021,0,4,f +13242,3022,4,1,f +13242,3022,0,2,f +13242,3022,14,1,f +13242,3023,0,14,f +13242,3023,14,4,f +13242,3040b,0,2,f +13242,3069b,14,6,f +13242,3069b,7,9,f +13242,3460,0,6,f +13242,3482,14,4,f +13242,3483,0,4,f +13242,3623,0,4,f +13242,3647,7,7,f +13242,3648a,7,1,f +13242,3650a,7,9,f +13242,3651,7,5,f +13242,3665,0,2,f +13242,3666,0,9,f +13242,3673,7,4,f +13242,3700,0,14,f +13242,3701,0,13,f +13242,3702,0,10,f +13242,3703,0,6,f +13242,3704,0,3,f +13242,3705,0,9,f +13242,3706,0,9,f +13242,3707,0,8,f +13242,3708,0,5,f +13242,3709,14,2,f +13242,3709,0,4,f +13242,3710,14,2,f +13242,3710,0,14,f +13242,3713,7,18,f +13242,3737,0,2,f +13242,3738,0,2,f +13242,3743,7,2,f +13242,3749,7,6,f +13242,3795,0,5,f +13242,3894,0,10,f +13242,3895,14,2,f +13242,3895,0,5,f +13242,3942c,14,2,f +13242,4019,7,2,f +13242,4032a,14,2,f +13242,4143,7,4,f +13242,4185,7,3,f +13242,4261,7,2,f +13242,4265a,7,31,f +13242,4266,14,4,f +13242,4273b,7,5,f +13242,4274,7,2,f +13242,4275b,14,2,f +13242,4276b,14,2,f +13242,4286,0,2,f +13242,4519,0,4,f +13242,4716,0,5,f +13242,4864a,0,6,f +13242,5306bc015,0,2,f +13242,5306bc036,0,2,f +13242,5306bc162,0,2,f +13242,6141,14,6,f +13242,6536,7,2,f +13242,6538a,7,9,f +13242,6541,0,2,f +13242,6551c01,7,2,f +13242,6553,14,3,f +13242,6558,0,6,f +13242,73071,7,1,f +13242,85543,15,1,f +13242,85544,7,3,f +13242,85545,1,1,f +13242,9244,7,1,f +13242,x157,15,3,f +13243,wheel2b,4,4,f +13244,10258,0,1,f +13244,3005,72,1,f +13244,3010,72,2,f +13244,30162,71,1,f +13244,3020,71,1,f +13244,3023,72,1,f +13244,30237a,72,1,f +13244,3062b,4,1,f +13244,3069b,272,3,f +13244,3626cpr0963,78,1,f +13244,3962b,0,1,f +13244,4599b,4,1,f +13244,6019,72,2,f +13244,60475a,72,1,f +13244,61482,71,1,f +13244,61482,71,1,t +13244,92081,84,1,f +13244,970c00pr0346,0,1,f +13244,973pr2043c01,0,1,f +13244,98138,182,2,f +13244,98138,182,1,t +13245,2419,2,1,f +13245,2444,15,1,f +13245,30176,2,1,f +13245,3020,15,1,f +13245,3022,0,1,f +13245,3023,0,1,f +13245,3034,1,1,f +13245,30602,40,2,f +13245,33291,191,1,f +13245,3666,15,2,f +13245,3673,71,1,f +13245,3794b,1,1,f +13245,3957b,80,1,f +13245,4081b,4,1,f +13245,4081b,0,2,f +13245,4286,1,1,f +13245,43722,1,1,f +13245,43723,1,1,f +13245,4600,71,1,f +13245,4624,15,2,f +13245,54200,36,1,f +13245,54383,1,1,f +13245,54384,1,1,f +13245,59900,4,1,f +13245,6141,4,1,f +13245,6141,15,2,f +13245,87414,0,2,f +13245,87580,1,1,f +13245,92842,0,1,f +13245,98138,36,1,f +13245,98138,34,1,f +13246,2420,7,8,f +13246,2817,7,2,f +13246,32017,7,2,f +13246,32034,1,2,f +13246,32054,1,4,f +13246,32056,7,4,f +13246,32062,0,2,f +13246,32065,0,4,f +13246,32073,0,2,f +13246,32123b,7,3,f +13246,32137,33,4,f +13246,32138,14,2,f +13246,32140,0,2,f +13246,3705,0,4,f +13246,3706,0,2,f +13246,3707,0,1,f +13246,6536,7,8,f +13246,6538b,7,2,f +13246,6629,0,2,f +13246,6632,7,2,f +13246,71509,0,2,f +13246,76019,15,1,f +13246,85543,15,2,f +13246,85545,1,2,f +13248,11164pat01,34,1,f +13248,11270,35,1,f +13248,11286,297,1,f +13248,2780,0,1,t +13248,2780,0,2,f +13248,32184,4,2,f +13248,43093,1,2,t +13248,43093,1,3,f +13248,50923,72,2,f +13248,53562,0,2,f +13248,55013,72,1,f +13248,59443,72,1,f +13248,60484,72,1,f +13248,62462,71,2,f +13248,87747,0,1,t +13248,87747,0,2,f +13248,90609,0,6,f +13248,90617,72,2,f +13248,90626,0,1,f +13248,90640,297,2,f +13248,90641,0,4,f +13248,90652,0,1,f +13248,92217,297,4,f +13248,92220,35,2,f +13248,93571,0,2,f +13248,98570pat01,15,1,f +13250,2339,70,1,f +13250,2412b,70,2,f +13250,2417,288,1,f +13250,2431,70,1,f +13250,2449,72,4,f +13250,2450,72,2,f +13250,2453a,70,4,f +13250,2454a,0,2,f +13250,2456,72,1,f +13250,2489,70,1,f +13250,2490pr0004,4,1,f +13250,2540,71,2,f +13250,2555,0,2,f +13250,2570,148,1,f +13250,2584,0,1,f +13250,2585,71,1,f +13250,2586pr0004,71,1,f +13250,2587pr0023,179,1,f +13250,2730,71,1,f +13250,3001,288,6,f +13250,3001,72,2,f +13250,3002,0,5,f +13250,3003,70,3,f +13250,3003,72,3,f +13250,3004,4,2,f +13250,3004,0,19,f +13250,3004,15,1,f +13250,30044,70,2,f +13250,30046,0,2,f +13250,3005,70,5,f +13250,3008,0,4,f +13250,3009,70,3,f +13250,3010,0,2,f +13250,3010,72,13,f +13250,30134,70,3,f +13250,30136,70,8,f +13250,30137,70,11,f +13250,30153,34,1,f +13250,30153,33,1,f +13250,30153,36,1,f +13250,3020,70,1,f +13250,3022,71,1,f +13250,3023,0,1,f +13250,3023,71,6,f +13250,3023,15,1,f +13250,30246,0,2,f +13250,3028,288,4,f +13250,3030,70,1,f +13250,3031,72,1,f +13250,3032,72,7,f +13250,3035,72,1,f +13250,30385,82,1,f +13250,3040b,70,6,f +13250,3040b,0,4,f +13250,3048c,297,3,f +13250,3048c,288,8,f +13250,30553,72,1,f +13250,3062b,71,2,f +13250,3062b,70,9,f +13250,32530,0,2,f +13250,3455,0,4,f +13250,3460,70,1,f +13250,3622,0,4,f +13250,3623,70,1,f +13250,3626bpr0411,14,1,f +13250,3626bpr0495,14,1,f +13250,3626bpr0566,14,1,f +13250,3626bpr0567,14,1,f +13250,3626bpr0649,14,1,f +13250,3633,72,2,f +13250,3659,70,2,f +13250,3659,0,2,f +13250,3660,70,8,f +13250,3665,70,4,f +13250,3673,71,1,t +13250,3673,71,1,f +13250,3678b,0,10,f +13250,3678bpr0008,15,1,f +13250,3684,72,4,f +13250,3710,72,4,f +13250,3747b,72,1,f +13250,3794b,0,1,f +13250,3794b,72,2,f +13250,3795,72,1,f +13250,3844,80,1,f +13250,3844,148,1,f +13250,3846pr0002,71,4,f +13250,3847,148,1,f +13250,3847,135,1,f +13250,3848,148,1,f +13250,40234,71,1,f +13250,4032a,14,1,f +13250,41535,288,2,f +13250,4162,72,1,f +13250,4286,70,2,f +13250,4341,0,1,f +13250,43888,70,7,f +13250,43899,72,1,f +13250,44567a,72,1,f +13250,4477,72,1,f +13250,4495b,297,2,f +13250,4495b,288,2,f +13250,4497,135,1,f +13250,4497,148,1,f +13250,4738a,70,1,f +13250,4739a,70,1,f +13250,4871,0,1,f +13250,48723,70,1,f +13250,56823c50,0,1,f +13250,59349,0,3,f +13250,59363,484,1,f +13250,59900,182,5,f +13250,6020,0,2,f +13250,60470a,0,1,f +13250,60478,72,4,f +13250,60593,0,1,f +13250,60594,0,1,f +13250,6066,70,1,f +13250,60808,0,3,f +13250,6108,70,1,f +13250,6111,72,1,f +13250,6112,70,2,f +13250,6126b,182,4,f +13250,6141,297,2,t +13250,6141,297,6,f +13250,62113,72,1,f +13250,63965,71,1,f +13250,64644,308,2,f +13250,64647,4,1,t +13250,64647,288,1,f +13250,64647,4,1,f +13250,64647,57,2,t +13250,64647,57,3,f +13250,64647,288,1,t +13250,75998pr0007,15,1,f +13250,87083,72,1,f +13250,87087,0,3,f +13250,87421,0,2,f +13250,87620,0,4,f +13250,88289,308,1,f +13250,88393,72,5,f +13250,89519,72,1,f +13250,89520,80,1,f +13250,89520,148,1,f +13250,89522,297,1,f +13250,89524,80,1,f +13250,90195,0,4,f +13250,970c00,0,2,f +13250,970c00pr0155,71,1,f +13250,970x026,71,1,f +13250,973pr1623c01,72,1,f +13250,973pr1624c01,72,1,f +13250,973pr1625c01,288,1,f +13250,973pr1627c01,15,1,f +13250,973pr1628c01,71,1,f +13251,122c01,0,4,f +13251,15,0,1,f +13251,17,0,1,f +13251,3001,15,4,f +13251,3002,15,1,f +13251,3003,15,2,f +13251,3003,0,2,f +13251,3003,47,4,f +13251,3004,0,18,f +13251,3004,15,10,f +13251,3004,14,28,f +13251,3004,4,8,f +13251,3005,0,37,f +13251,3005,15,15,f +13251,3005,4,6,f +13251,3005,14,26,f +13251,3008,14,2,f +13251,3008,15,1,f +13251,3009,4,1,f +13251,3009,15,4,f +13251,3009,14,11,f +13251,3010,0,2,f +13251,3010,47,1,f +13251,3010,14,10,f +13251,3010,15,5,f +13251,3010,4,2,f +13251,3020,0,1,f +13251,3020,7,1,f +13251,3021,0,1,f +13251,3022,0,5,f +13251,3023,1,3,f +13251,3023,15,5,f +13251,3023,0,4,f +13251,3023,7,4,f +13251,3023,47,1,f +13251,3024,0,3,f +13251,3028,0,1,f +13251,3030,15,1,f +13251,3031,0,1,f +13251,3032,15,1,f +13251,3033,14,1,f +13251,3033,1,1,f +13251,3034,4,1,f +13251,3034,0,1,f +13251,3035,14,1,f +13251,3037,4,7,f +13251,3038,4,8,f +13251,3039,0,3,f +13251,3039,1,1,f +13251,3039,4,6,f +13251,3040b,4,2,f +13251,3041,4,1,f +13251,3043,4,2,f +13251,3044a,4,1,f +13251,3045,4,4,f +13251,3046a,4,5,f +13251,3048a,0,4,f +13251,3048c,4,2,f +13251,3049b,4,1,f +13251,3062b,0,16,f +13251,3069b,0,1,f +13251,3297,4,2,f +13251,3307,14,2,f +13251,3308,14,2,f +13251,3460,4,2,f +13251,3470,2,1,f +13251,3581,14,2,f +13251,3596,15,1,f +13251,3622,14,6,f +13251,3622,4,2,f +13251,3622,0,7,f +13251,3622,15,1,f +13251,3623,1,2,f +13251,3623,0,2,f +13251,3624,1,1,f +13251,3625,0,2,f +13251,3626a,0,1,f +13251,3626apr0001,14,10,f +13251,3641,0,8,f +13251,3644,4,2,f +13251,3659,14,3,f +13251,3659,0,2,f +13251,3660,0,3,f +13251,3665,0,4,f +13251,3666,0,3,f +13251,3675,4,1,f +13251,3679,7,1,f +13251,3680,15,1,f +13251,3710,0,4,f +13251,3710,7,1,f +13251,3741,2,9,f +13251,3742,1,8,f +13251,3742,15,8,f +13251,3742,14,8,f +13251,3742,4,8,f +13251,3778,2,1,f +13251,3787,0,1,f +13251,3788,0,1,f +13251,3794a,15,2,f +13251,3794a,7,1,f +13251,3795,0,1,f +13251,3821,0,1,f +13251,3822,0,1,f +13251,3829c01,7,1,f +13251,3832,0,1,f +13251,3846,7,4,f +13251,3848,7,4,f +13251,3853,0,3,f +13251,3854,15,6,f +13251,3861b,15,1,f +13251,3878,0,3,f +13251,3896,8,4,f +13251,3899,14,1,f +13251,3901,6,1,f +13251,3937,7,1,f +13251,3938,7,1,f +13251,3941,15,2,f +13251,4079,1,3,f +13251,608p01,7,1,f +13251,609p01,7,1,f +13251,739p01,15,1,f +13251,970c00,0,1,f +13251,970c00,4,2,f +13251,970c00,1,1,f +13251,970c00,15,2,f +13251,970x021,0,4,f +13251,973c07,1,1,f +13251,973c25,1,4,f +13251,973p03c01,1,1,f +13251,973p17c02,0,1,f +13251,973p18c01,1,1,f +13251,973p72c01,15,1,f +13251,973px3c01,15,1,f +13255,30153,45,3,f +13255,30153,47,4,f +13255,30385,143,1,f +13255,3794a,15,1,f +13255,4738a,45,1,f +13255,4739a,45,1,f +13256,3001,1,2,f +13256,3003,1,1,f +13256,3004,1,4,f +13256,3005,7,2,f +13256,3009,1,2,f +13256,3010ap04,7,3,f +13256,3020,7,1,f +13256,3020,1,4,f +13256,3021,1,3,f +13256,3022,1,3,f +13256,3023,15,2,f +13256,3024,34,2,f +13256,3032,7,1,f +13256,3039p23,7,1,f +13256,3039p34,7,1,f +13256,3062a,36,3,f +13256,3067,46,2,f +13256,3068b,7,6,f +13256,3069b,7,1,f +13256,3324c01,7,2,f +13256,3403,0,1,f +13256,3404,0,1,f +13256,3456,1,1,f +13256,3482,0,8,f +13256,3623,7,2,f +13256,3626apr0001,14,2,f +13256,3634,0,8,f +13256,3660,1,7,f +13256,3666,7,1,f +13256,3673,7,4,f +13256,3700,1,4,f +13256,3702,1,4,f +13256,3705,0,1,f +13256,3710,7,4,f +13256,3713,7,1,f +13256,3737,0,1,f +13256,3747a,1,2,f +13256,3749,0,8,f +13256,3795,7,5,f +13256,3829c01,7,5,f +13256,3832,1,1,f +13256,3838,14,2,f +13256,3839a,7,2,f +13256,3842a,14,2,f +13256,3933a,7,2,f +13256,3934a,7,2,f +13256,3937,7,4,f +13256,3938,7,4,f +13256,3939,46,1,f +13256,3941,0,6,f +13256,3941,15,4,f +13256,3942a,15,1,f +13256,3943a,7,1,f +13256,3943b,0,2,f +13256,3943b,15,1,f +13256,3956,15,4,f +13256,3956,7,2,f +13256,3957a,0,3,f +13256,3959,0,2,f +13256,3962a,0,1,f +13256,3963,7,2,f +13256,4032a,0,7,f +13256,4070,7,2,f +13256,4081a,7,2,f +13256,4083,7,4,f +13256,4085a,7,2,f +13256,4175,7,2,f +13256,4175,0,2,f +13256,4228,46,1,f +13256,4229,0,4,f +13256,4285a,7,1,f +13256,4286,7,4,f +13256,4360,0,2,f +13256,6141,36,4,f +13256,970c00,14,2,f +13256,973p90c04,14,2,f +13256,u1125,14,2,f +13256,u1126,14,2,f +13257,2343,297,2,f +13257,2357,15,6,f +13257,2419,0,4,f +13257,2420,72,2,f +13257,2420,0,2,f +13257,2431,15,4,f +13257,2431,70,1,f +13257,2436,0,1,f +13257,2444,72,2,f +13257,2453a,15,6,f +13257,2456,19,2,f +13257,2458,1,4,f +13257,2458,15,2,f +13257,2458,19,2,f +13257,2462,84,6,f +13257,2489,308,2,f +13257,2639,72,2,f +13257,2654,19,1,f +13257,2780,0,8,f +13257,2780,0,2,t +13257,3001,19,6,f +13257,3002,15,3,f +13257,3002,19,4,f +13257,3003,15,10,f +13257,3003,19,2,f +13257,3004,84,22,f +13257,3004,19,4,f +13257,3004,15,22,f +13257,3004,320,2,f +13257,30044,70,2,f +13257,30046,297,2,f +13257,3005,19,9,f +13257,3005,72,10,f +13257,3005,15,30,f +13257,30055,15,8,f +13257,3007,15,2,f +13257,3008,84,9,f +13257,3008,15,2,f +13257,3009,15,12,f +13257,3009,19,3,f +13257,3009,84,3,f +13257,3010,19,9,f +13257,3010,15,5,f +13257,30145,15,2,f +13257,30153,36,1,f +13257,30169,297,1,f +13257,30173b,135,2,f +13257,30176,2,10,f +13257,3020,19,2,f +13257,3021,19,6,f +13257,3021,72,6,f +13257,3021,0,1,f +13257,3022,70,1,f +13257,3022,19,2,f +13257,30237a,15,2,f +13257,3024,19,8,f +13257,30246,84,2,f +13257,3027,19,1,f +13257,3029,72,1,f +13257,3031,72,2,f +13257,3032,19,4,f +13257,3032,72,6,f +13257,3032,0,4,f +13257,3034,19,2,f +13257,3034,70,2,f +13257,3034,15,3,f +13257,3035,0,2,f +13257,3035,72,2,f +13257,3036,72,2,f +13257,30367b,297,4,f +13257,3037,15,1,f +13257,3037,70,1,f +13257,30374,70,2,f +13257,3039,15,2,f +13257,30414,84,22,f +13257,30503,19,2,f +13257,3062b,70,4,f +13257,3062b,15,24,f +13257,3068b,28,5,f +13257,3069b,28,6,f +13257,3070b,70,3,f +13257,3070b,70,1,t +13257,3245c,15,4,f +13257,32524,72,2,f +13257,32530,0,4,f +13257,3307,15,6,f +13257,33243,297,8,f +13257,3460,72,2,f +13257,3622,19,5,f +13257,3622,15,14,f +13257,3622,84,12,f +13257,3623,15,2,f +13257,3626bpr0472,78,1,f +13257,3626bpr0632,78,1,f +13257,3626bpr0650,70,1,f +13257,3626bpr0651,78,1,f +13257,3626bpr0653,78,1,f +13257,3626bpr0654,78,1,f +13257,3626bpr0657,78,1,f +13257,3633,297,6,f +13257,3659,15,2,f +13257,3660,72,20,f +13257,3665,84,8,f +13257,3666,19,4,f +13257,3666,15,2,f +13257,3673,71,4,f +13257,3673,71,1,t +13257,3678b,15,2,f +13257,3679,71,2,f +13257,3680,15,2,f +13257,3700,15,18,f +13257,3701,1,2,f +13257,3710,19,5,f +13257,3710,15,2,f +13257,3794b,297,5,f +13257,3795,0,4,f +13257,3795,19,6,f +13257,3830,72,2,f +13257,3830,15,2,f +13257,3831,72,2,f +13257,3831,15,2,f +13257,3832,19,2,f +13257,3832,72,1,f +13257,3839b,0,2,f +13257,3847,135,1,f +13257,3848,72,2,f +13257,3894,72,2,f +13257,3941,15,8,f +13257,3960,297,1,f +13257,4032a,0,7,f +13257,4085c,0,4,f +13257,41539,72,5,f +13257,4274,1,4,f +13257,4274,1,1,t +13257,4286,15,4,f +13257,4287,84,2,f +13257,4287,15,2,f +13257,43887,72,1,f +13257,4477,15,1,f +13257,4489b,70,2,f +13257,4491b,72,1,f +13257,4495b,297,4,f +13257,4497,135,2,f +13257,4589,297,17,f +13257,4589,182,4,f +13257,4589,70,2,f +13257,48729b,0,2,f +13257,48729b,0,2,t +13257,50231,0,1,f +13257,50947,0,2,f +13257,51739,72,2,f +13257,53451,135,14,f +13257,53451,135,3,t +13257,54200,72,4,f +13257,54200,15,3,t +13257,54200,72,1,t +13257,54200,15,40,f +13257,59443,70,2,f +13257,60474,0,1,f +13257,60475a,84,2,f +13257,60583a,84,2,f +13257,6091,320,4,f +13257,6111,19,3,f +13257,6141,297,6,f +13257,6141,72,1,t +13257,6141,297,1,t +13257,6141,72,6,f +13257,6157,0,1,f +13257,6182,19,2,f +13257,6182,84,2,f +13257,63965,72,2,f +13257,63965,70,2,f +13257,64644,308,6,f +13257,64647,57,6,f +13257,6636,19,2,f +13257,6636,70,5,f +13257,75347,15,2,f +13257,85080,15,4,f +13257,87580,28,1,f +13257,87601,308,2,f +13257,88283,308,1,f +13257,88284,148,3,f +13257,88287,0,1,f +13257,88288pat0001,297,1,t +13257,88288pat0001,297,1,f +13257,88289,308,2,f +13257,88290,308,1,f +13257,88292,15,4,f +13257,88292,84,16,f +13257,88293,297,4,f +13257,88811,135,2,t +13257,88811,135,2,f +13257,88812,135,1,f +13257,89352,19,1,f +13257,970c00,320,2,f +13257,970c00,0,1,f +13257,970c00,272,1,f +13257,970c00,308,1,f +13257,970c00pr0149b,0,1,f +13257,970c00pr0150,0,1,f +13257,973pr1558c01,308,1,f +13257,973pr1561c01,0,1,f +13257,973pr1565c01,72,1,f +13257,973pr1582c01,70,1,f +13257,973pr1583c01,72,1,f +13257,973pr1584c01,72,2,f +13258,2348b,33,1,f +13258,2349a,15,1,f +13258,2399,15,1,f +13258,2412b,15,1,f +13258,2412b,4,2,f +13258,2415,7,3,f +13258,2431,15,2,f +13258,2431,0,1,f +13258,2432,4,1,f +13258,2445,7,1,f +13258,2446px2,15,1,f +13258,2447,41,1,f +13258,2555,7,1,f +13258,2610,14,1,f +13258,2625,7,1,f +13258,2625,15,1,f +13258,2626,0,1,f +13258,2626,15,1,f +13258,2654,0,3,f +13258,2880,0,1,f +13258,298c02,4,2,f +13258,3004,7,2,f +13258,3004,4,1,f +13258,3005,15,2,f +13258,3008,15,2,f +13258,3009,15,2,f +13258,3010,15,3,f +13258,3020,15,1,f +13258,3021,15,1,f +13258,3022,0,1,f +13258,3022,7,2,f +13258,3023,4,1,f +13258,3023,0,1,f +13258,3023,15,5,f +13258,3033,7,1,f +13258,3039,0,1,f +13258,3039pc5,7,1,f +13258,3040b,15,2,f +13258,3069bp02,7,2,f +13258,3069bp25,7,1,f +13258,3070b,34,1,f +13258,3070b,36,1,f +13258,3070b,33,4,f +13258,3139,0,3,f +13258,3298,15,2,f +13258,3460,7,1,f +13258,3464,47,3,f +13258,3474,15,1,f +13258,3479,0,1,f +13258,3585,0,1,f +13258,3586,0,1,f +13258,3622,15,2,f +13258,3623,15,1,f +13258,3626bp04,14,1,f +13258,3626bpx11,14,1,f +13258,3665,15,2,f +13258,3666,15,3,f +13258,3666,0,4,f +13258,3701,15,2,f +13258,3794a,7,3,f +13258,3794a,15,2,f +13258,3795,15,1,f +13258,3829c01,4,1,f +13258,3839b,7,1,f +13258,3937,1,2,f +13258,3938,1,2,f +13258,3939,15,1,f +13258,3939,41,1,f +13258,3962b,0,1,f +13258,4070,0,2,f +13258,4275b,0,1,f +13258,4286,0,2,f +13258,4315,15,1,f +13258,4474,41,1,f +13258,4477,15,2,f +13258,4485,15,1,f +13258,4531,0,1,f +13258,4589,4,2,f +13258,4595,0,1,f +13258,4599a,4,1,f +13258,4625,15,1,f +13258,4854,15,2,f +13258,4855,15,2,f +13258,4858,15,1,f +13258,4859,15,1,f +13258,4859,0,2,f +13258,4865a,15,5,f +13258,4868a,0,2,f +13258,4869,7,2,f +13258,4871,15,1,f +13258,6111,0,2,f +13258,6141,4,1,t +13258,6141,36,1,t +13258,6141,36,3,f +13258,6141,4,4,f +13258,6141,34,1,t +13258,6141,34,1,f +13258,6344stk01,9999,1,t +13258,970c00,0,2,f +13258,973px20c01,0,1,f +13258,973px9c01,0,1,f +13259,122c01,7,4,f +13259,3001a,7,1,f +13259,3004,7,4,f +13259,3004p90,7,2,f +13259,3005,7,2,f +13259,3020,7,2,f +13259,3021,7,4,f +13259,3022,7,2,f +13259,3023,7,2,f +13259,3024,36,1,f +13259,3034,7,1,f +13259,3039p23,7,1,f +13259,3062a,34,1,f +13259,3062b,7,2,f +13259,3065,46,3,f +13259,3069b,7,3,f +13259,3070b,7,2,f +13259,3622,7,2,f +13259,3626apr0001,14,1,f +13259,3641,0,8,f +13259,3651,7,1,f +13259,3679,7,1,f +13259,3680,7,1,f +13259,3710,7,2,f +13259,3730,7,1,f +13259,3731,7,1,f +13259,3787,7,2,f +13259,3788,7,2,f +13259,3794a,7,2,f +13259,3829c01,7,1,f +13259,3830,7,2,f +13259,3831,7,2,f +13259,3838,15,1,f +13259,3838,7,1,f +13259,3839a,7,1,f +13259,3842a,15,1,f +13259,3876,47,2,f +13259,3937,7,1,f +13259,3938,7,1,f +13259,3957a,7,1,f +13259,3959,7,1,f +13259,3960,7,1,f +13259,970c00,15,1,f +13259,973p90c05,15,1,f +13263,2905,71,25,f +13265,2446,179,1,f +13265,2586pr0009,71,1,f +13265,2587pr0032,179,1,f +13265,2594,71,1,f +13265,30153,34,1,f +13265,30153,33,1,f +13265,30273,80,1,f +13265,30385,297,1,f +13265,3626bpr0389,14,1,f +13265,3626cpr0411,14,1,f +13265,3626cpr0500,14,1,f +13265,3626cpr0933,14,1,f +13265,3844,80,2,f +13265,3846pr0005,71,1,f +13265,3848,72,1,f +13265,4497,179,1,f +13265,4498,70,1,f +13265,4499,70,1,f +13265,4738a,70,1,f +13265,4739a,70,1,f +13265,64647,1,1,f +13265,76764,179,1,f +13265,96904,334,1,f +13265,96905,334,1,f +13265,96906,334,1,f +13265,96907,334,1,f +13265,970c10pr0520,72,1,f +13265,970x026,72,3,f +13265,973pr0090c01,72,2,f +13265,973pr0100c01,72,1,f +13265,973pr2392c01,72,1,f +13265,99563,334,1,f +13266,11153,72,4,f +13266,11153,2,2,f +13266,11476,71,2,f +13266,14181,71,2,f +13266,2412b,72,14,f +13266,2412b,15,2,f +13266,2431,2,2,f +13266,2432,0,3,f +13266,2445,15,1,f +13266,2446,15,1,f +13266,2447,40,1,f +13266,2447,40,1,t +13266,2456,15,5,f +13266,2460,72,1,f +13266,2465,71,4,f +13266,2614,0,2,f +13266,298c02,15,3,t +13266,298c02,15,4,f +13266,3001,1,1,f +13266,3004,15,2,f +13266,3010,15,3,f +13266,30150,70,1,f +13266,3020,0,8,f +13266,3020,72,2,f +13266,3021,15,2,f +13266,3022,14,4,f +13266,3023,0,4,f +13266,3027,71,1,f +13266,30332,0,2,f +13266,3034,1,3,f +13266,3034,71,1,f +13266,30355,71,1,f +13266,30356,71,1,f +13266,30363,15,4,f +13266,3037,15,4,f +13266,30375,0,1,f +13266,3039pr0013,15,1,f +13266,30552,0,2,f +13266,3062b,72,2,f +13266,3062b,41,2,f +13266,3062b,14,1,f +13266,3070b,1,1,t +13266,3070b,1,4,f +13266,32054,0,2,f +13266,32059,72,1,f +13266,32083,15,1,f +13266,3460,14,2,f +13266,3460,71,2,f +13266,3460,2,1,f +13266,3623,0,4,f +13266,3626cpr0388,14,1,f +13266,3626cpr0499,14,1,f +13266,3626cpr1664,14,1,f +13266,3666,1,2,f +13266,3666,0,1,f +13266,3666,25,8,f +13266,3700,72,3,f +13266,3710,14,2,f +13266,3738,72,2,f +13266,3749,19,2,f +13266,3795,72,2,f +13266,3829c01,15,1,f +13266,3849,0,2,f +13266,3941,14,2,f +13266,4006,0,1,f +13266,4032a,14,2,f +13266,4081b,0,4,f +13266,4150,71,1,f +13266,41862,71,1,f +13266,42610,71,1,f +13266,4274,1,1,t +13266,4274,1,1,f +13266,4282,72,3,f +13266,43712,15,4,f +13266,43713,72,4,f +13266,43719,25,4,f +13266,4460b,15,2,f +13266,44728,72,1,f +13266,4519,71,2,f +13266,4599b,14,1,t +13266,4599b,14,1,f +13266,4740,15,1,f +13266,47457,72,2,f +13266,50373,15,2,f +13266,50943,72,2,f +13266,54200,36,1,t +13266,54200,36,1,f +13266,54200,34,1,t +13266,54200,34,1,f +13266,56823c50,0,2,f +13266,60032,15,2,f +13266,60208,15,2,f +13266,60219,25,1,f +13266,60471,0,2,f +13266,60475b,71,2,f +13266,60583b,15,2,f +13266,60601,41,2,f +13266,6126a,41,2,f +13266,6140,0,2,f +13266,6141,46,2,f +13266,6141,71,2,t +13266,6141,36,3,f +13266,6141,46,1,t +13266,6141,34,3,f +13266,6141,34,1,t +13266,6141,71,12,f +13266,6141,36,1,t +13266,6239,15,1,f +13266,63864,15,2,f +13266,64567,71,1,t +13266,64567,71,2,f +13266,64648,179,2,f +13266,72454,72,4,f +13266,72475,41,1,f +13266,85984,72,5,f +13266,86035,320,1,f +13266,87079,15,1,f +13266,87580,72,5,f +13266,87611,25,1,f +13266,87612,41,1,f +13266,87613,15,1,f +13266,87615,15,1,f +13266,87616,25,1,f +13266,88292,0,4,f +13266,92338,72,2,f +13266,92710c03,71,1,f +13266,93273,2,2,f +13266,95343,70,1,f +13266,95344,28,1,t +13266,95344,28,1,f +13266,970c00,1,1,f +13266,970c00,379,1,f +13266,970x199,25,1,f +13266,973pr1163c01,272,1,f +13266,973pr1244c01,73,1,f +13266,973pr2351c01,25,1,f +13266,98313,0,2,f +13266,99930,72,1,f +13267,2412b,4,2,f +13267,2444,4,2,f +13267,2736,71,4,f +13267,2780,0,68,f +13267,2780,0,1,t +13267,2819,71,1,f +13267,2825,0,3,f +13267,2905,0,1,f +13267,3020,0,1,f +13267,3023,182,2,f +13267,3023,0,1,f +13267,3023,4,2,f +13267,3023,47,2,f +13267,3069b,182,2,f +13267,3069b,0,2,f +13267,32002,72,6,f +13267,32002,72,1,t +13267,32005b,0,2,f +13267,32009,71,2,f +13267,32013,4,4,f +13267,32013,0,4,f +13267,32015,71,1,f +13267,32015,4,2,f +13267,32016,0,2,f +13267,32034,0,6,f +13267,32034,4,5,f +13267,32039,71,1,f +13267,32054,4,4,f +13267,32054,0,7,f +13267,32056,0,3,f +13267,32062,4,18,f +13267,32063,0,2,f +13267,32072,0,2,f +13267,32073,71,6,f +13267,32126,71,2,f +13267,32140,71,13,f +13267,32184,71,4,f +13267,32199,0,2,f +13267,32270,0,1,f +13267,32271,71,2,f +13267,32291,0,4,f +13267,32293,0,1,f +13267,32316,4,2,f +13267,32316,71,9,f +13267,32523,72,2,f +13267,32524,4,2,f +13267,32524,71,2,f +13267,32525,4,4,f +13267,32526,4,4,f +13267,32526,0,2,f +13267,32526,1,4,f +13267,33299a,0,2,f +13267,3460,71,1,f +13267,3460,0,1,f +13267,3623,0,2,f +13267,3647,72,1,f +13267,3701,0,1,f +13267,3705,0,2,f +13267,3706,0,5,f +13267,3710,0,1,f +13267,3713,71,9,f +13267,3713,71,1,t +13267,3749,19,7,f +13267,3941,71,3,f +13267,4019,71,6,f +13267,40490,71,4,f +13267,40490,4,2,f +13267,41239,71,2,f +13267,41678,71,8,f +13267,42003,0,6,f +13267,4274,71,1,t +13267,4274,71,10,f +13267,43093,1,45,f +13267,43857,71,2,f +13267,44294,71,4,f +13267,4519,71,14,f +13267,4716,71,1,f +13267,48496,0,1,f +13267,48989,71,3,f +13267,50950,4,6,f +13267,54200,47,6,f +13267,54200,47,1,t +13267,54200,182,2,f +13267,54200,182,1,t +13267,55615,71,2,f +13267,57518,0,66,f +13267,57520,135,12,f +13267,59426,72,5,f +13267,59443,71,13,f +13267,59443,0,4,f +13267,60483,72,3,f +13267,60484,71,2,f +13267,60485,71,3,f +13267,6141,47,4,f +13267,6141,47,1,t +13267,61678,0,2,f +13267,62531,0,3,f +13267,63869,71,2,f +13267,64178,71,4,f +13267,64276,0,1,f +13267,64391,4,3,f +13267,64391,0,3,f +13267,64683,4,3,f +13267,64683,0,3,f +13267,6536,0,4,f +13267,6536,0,1,t +13267,6536,71,15,f +13267,6536,4,2,f +13267,6558,1,27,f +13267,6587,72,10,f +13267,6589,19,2,f +13267,6628,0,2,f +13267,6632,72,3,f +13268,2335,4,2,f +13268,2432,14,1,f +13268,2444,14,2,f +13268,2446,0,2,f +13268,2450,4,2,f +13268,2489,6,1,f +13268,2530,8,1,f +13268,2540,0,2,f +13268,2654,0,4,f +13268,2921,0,2,f +13268,298c02,4,1,f +13268,3004,7,3,f +13268,30079,14,2,f +13268,30080,14,4,f +13268,30082,8,2,f +13268,30083,41,1,f +13268,30084,0,1,f +13268,30088,14,1,f +13268,30089,0,1,f +13268,3009,0,1,f +13268,30090,47,2,f +13268,30091,7,2,f +13268,30093,2,2,f +13268,30094,14,1,f +13268,30099,6,2,f +13268,3010,7,1,f +13268,3022,14,2,f +13268,3022,0,1,f +13268,3035,14,1,f +13268,3039p58,15,1,f +13268,3040b,7,5,f +13268,3062b,0,1,f +13268,3069bp02,7,1,f +13268,3475a,0,4,f +13268,3613,14,2,f +13268,3623,0,4,f +13268,3626bpx24,14,1,f +13268,3626bpx26,14,1,f +13268,3626bpx27,14,1,f +13268,3633,0,2,f +13268,3660,14,8,f +13268,3660,7,1,f +13268,3665,14,2,f +13268,3710,0,1,f +13268,3747b,14,1,f +13268,3749,7,1,f +13268,3794a,0,2,f +13268,3867,19,1,f +13268,3937,0,4,f +13268,3938,14,4,f +13268,4032a,2,2,f +13268,4079,4,2,f +13268,4085c,7,2,f +13268,4315,14,1,f +13268,4360,15,1,f +13268,4485,4,3,f +13268,59275,4,2,f +13268,59275,0,2,f +13268,6019,15,3,f +13268,6040,0,1,f +13268,6041,4,1,f +13268,6048a,0,4,f +13268,6083,8,1,f +13268,6126a,34,4,f +13268,6140,7,1,f +13268,6141,36,1,f +13268,6141,47,2,f +13268,6141,42,1,t +13268,6141,47,1,t +13268,6141,36,1,t +13268,6141,42,7,f +13268,6217,0,2,f +13268,71128,383,2,f +13268,75535,14,2,f +13268,970x021,0,1,f +13268,970x026,4,2,f +13268,973px51c01,4,2,f +13268,973px52c02,4,1,f +13271,11092,179,2,f +13271,11098,297,1,f +13271,13361pr0005,0,1,f +13271,3626cpr1206,0,1,f +13271,970c00pr0663,4,1,f +13271,973pr2671c01,4,1,f +13271,98138pr0023,182,1,f +13272,3068bpx5,0,1,f +13272,3069bp0a,0,1,f +13272,4349,7,1,f +13272,73983,0,1,f +13273,11211,71,1,f +13273,11476,71,1,f +13273,15573,71,2,f +13273,2420,72,2,f +13273,2780,0,5,f +13273,2780,0,1,t +13273,298c02,15,2,f +13273,298c02,15,1,t +13273,3004,72,1,f +13273,3020,15,1,f +13273,3021,71,1,f +13273,3021,15,1,f +13273,3022,72,1,f +13273,3023,71,1,f +13273,3024,71,1,t +13273,3024,71,2,f +13273,3040b,15,4,f +13273,3048c,72,2,f +13273,3069b,15,1,f +13273,3700,71,6,f +13273,3710,72,2,f +13273,54200,71,1,t +13273,54200,29,1,f +13273,54200,71,4,f +13273,54200,29,1,t +13273,60478,71,2,f +13273,63868,15,1,f +13273,6541,72,4,f +13273,87087,71,3,f +13273,93606,71,1,f +13273,98138pr0008,15,2,f +13273,98138pr0008,15,1,t +13275,3001,14,9,f +13275,3001,0,2,f +13275,3001,1,9,f +13275,3001,4,9,f +13275,3001,15,4,f +13275,3002,14,4,f +13275,3002,0,2,f +13275,3002,4,4,f +13275,3002,1,4,f +13275,3002,15,4,f +13275,3003,0,2,f +13275,3003,1,6,f +13275,3003,15,4,f +13275,3003,4,6,f +13275,3003,14,6,f +13275,3006,4,2,f +13275,3185,15,4,f +13275,3483,0,4,f +13275,4130,14,1,f +13275,4131,4,1,f +13275,4132,14,2,f +13275,4133,4,2,f +13275,4180c02,0,2,f +13275,4202,1,1,f +13275,4204,2,1,f +13275,4594,47,1,f +13275,4727,2,2,f +13275,4728,15,1,f +13275,4728,14,1,f +13275,4743,1,1,f +13275,4744,14,1,f +13275,bfp002,9999,1,f +13275,bin1960,1,1,f +13277,2436,4,1,f +13277,2456,72,1,f +13277,3024,36,2,f +13277,3062b,14,1,f +13277,3068bpb0074,4,1,f +13277,3788,4,1,f +13277,3829c01,15,1,f +13277,3835,0,1,f +13277,4083,15,1,f +13277,4085c,0,2,f +13277,4211,4,1,f +13277,4599a,14,1,f +13277,4600,0,2,f +13277,51739,15,1,f +13277,6014b,15,4,f +13277,6015,0,4,f +13277,6141,33,1,t +13277,6141,46,1,t +13277,6141,46,2,f +13277,6141,33,4,f +13279,2340,15,1,f +13279,2345,15,2,f +13279,2376,7,1,f +13279,2419,4,5,f +13279,2419,0,1,f +13279,2420,15,2,f +13279,2420,4,2,f +13279,2420,0,2,f +13279,2422,4,4,f +13279,2431,4,2,f +13279,2431,15,1,f +13279,2432,0,1,f +13279,2436,15,1,f +13279,2437,41,1,f +13279,2446,15,1,f +13279,2447,41,1,f +13279,2450,7,2,f +13279,2452,15,1,f +13279,2454a,4,5,f +13279,2489,0,3,f +13279,2580c01,4,10,f +13279,2582,15,4,f +13279,298c02,7,4,f +13279,3001,7,1,f +13279,3003,4,4,f +13279,3003,7,2,f +13279,3005,15,4,f +13279,3008,7,1,f +13279,3009,15,2,f +13279,3010,7,2,f +13279,3010,15,1,f +13279,3020,15,2,f +13279,3020,0,2,f +13279,3022,4,8,f +13279,3022,15,5,f +13279,3022,7,2,f +13279,3023,4,7,f +13279,3023,15,11,f +13279,3024,46,2,f +13279,3024,15,7,f +13279,3024,34,1,f +13279,3024,36,1,f +13279,3030,7,1,f +13279,3035,7,1,f +13279,3039,7,6,f +13279,3039,15,5,f +13279,3039,4,2,f +13279,3039p34,7,1,f +13279,3040b,7,4,f +13279,3062b,0,2,f +13279,3068b,15,2,f +13279,3069b,0,2,f +13279,3069b,15,1,f +13279,3070b,15,2,f +13279,3176,4,1,f +13279,3298,7,10,f +13279,3403c01,4,1,f +13279,3460,1,2,f +13279,3460,15,4,f +13279,3460,4,1,f +13279,3622,7,2,f +13279,3623,15,6,f +13279,3626apr0001,14,3,f +13279,3633,4,1,f +13279,3641,0,8,f +13279,3665,7,4,f +13279,3666,1,2,f +13279,3666,15,4,f +13279,3666,0,2,f +13279,3666,4,1,f +13279,3700,4,2,f +13279,3701,15,1,f +13279,3701,7,2,f +13279,3707,0,3,f +13279,3708,0,2,f +13279,3709,4,1,f +13279,3710,15,7,f +13279,3710,4,2,f +13279,3710,7,3,f +13279,3730,0,1,f +13279,3731,0,1,f +13279,3737,0,1,f +13279,3794a,0,2,f +13279,3794a,15,4,f +13279,3795,0,1,f +13279,3829c01,1,1,f +13279,3832,4,2,f +13279,3933,0,2,f +13279,3933,15,1,f +13279,3934,0,2,f +13279,3934,15,1,f +13279,3935,15,1,f +13279,3936,15,1,f +13279,3937,15,3,f +13279,3938,15,3,f +13279,3941,15,20,f +13279,3941,7,1,f +13279,3942b,15,2,f +13279,3943a,7,1,f +13279,3956,0,3,f +13279,3956,15,2,f +13279,3957a,14,1,f +13279,3958,0,1,f +13279,3960,7,1,f +13279,4006,0,1,f +13279,4032a,7,2,f +13279,4070,15,2,f +13279,4079,1,3,f +13279,4081b,0,2,f +13279,4081b,4,6,f +13279,4265a,7,4,f +13279,4265a,7,1,t +13279,4266,7,6,f +13279,4276b,15,2,f +13279,4282,7,3,f +13279,4286,15,2,f +13279,4319,15,1,f +13279,4477,4,2,f +13279,4478p01,2,1,f +13279,4485,1,2,f +13279,4588,0,1,f +13279,4591,15,2,f +13279,4596,4,1,f +13279,4600,0,4,f +13279,4623,15,2,f +13279,4624,15,8,f +13279,4625,15,5,f +13279,4735,0,2,f +13279,4735,15,1,f +13279,4856a,0,1,f +13279,4857,15,1,f +13279,4858,15,1,f +13279,4859,0,1,f +13279,4861,15,1,f +13279,4864a,15,2,f +13279,4865a,15,12,f +13279,4865a,0,1,f +13279,4868a,15,2,f +13279,4869,7,2,f +13279,56823,0,1,f +13279,6141,46,10,f +13279,6141,15,14,f +13279,6141,46,1,t +13279,6141,36,6,f +13279,6141,36,1,t +13279,6141,15,1,t +13279,73037,4,1,f +13279,73590c01a,0,2,f +13279,73983,15,1,f +13279,73983,4,4,f +13279,970c00,1,2,f +13279,970c00,15,1,f +13279,973c01,15,1,f +13279,973p26c01,1,2,f +13280,2412b,0,2,f +13280,2412b,14,2,f +13280,2418b,33,1,f +13280,2420,14,4,f +13280,2555,0,2,f +13280,2593,14,2,f +13280,2605c01,0,2,f +13280,30014,0,2,f +13280,3010,14,2,f +13280,3022,14,4,f +13280,3069bps9,14,1,f +13280,3298,0,4,f +13280,3460,14,1,f +13280,3612,0,2,f +13280,3612,14,6,f +13280,3622,14,2,f +13280,3626bpx114,14,1,f +13280,3666,14,1,f +13280,3673,7,2,f +13280,37,383,2,f +13280,3700,14,10,f +13280,3737,0,2,f +13280,3749,7,4,f +13280,3937,0,1,f +13280,412,57,4,f +13280,4150pa0,14,1,f +13280,4220,14,2,f +13280,4221,0,4,f +13280,4477,14,2,f +13280,4623,0,2,f +13280,4732,0,2,f +13280,57467,383,2,f +13280,59275,1,2,f +13280,6041,57,4,f +13280,6043,14,4,f +13280,6064,2,1,f +13280,6088,15,1,f +13280,6090,0,1,f +13280,970x001,1,1,f +13280,973px170c01,15,1,f +13281,32062,4,2,f +13281,32184,71,2,f +13281,3673,71,1,f +13281,43093,1,3,f +13281,50923,72,4,f +13281,57533,135,1,f +13281,57543,135,2,f +13281,58177,0,2,f +13281,60176,72,2,f +13281,60896,27,4,f +13281,60917,72,1,f +13281,6587,72,2,f +13283,3626bpr0325,14,1,f +13283,3844,80,1,f +13283,4497,135,1,f +13283,970x026,71,1,f +13283,973pr1318c01,272,1,f +13285,3626bpr0690,14,1,f +13285,62696,226,1,f +13285,88646,0,1,f +13285,90395,4,1,f +13285,970c00pr0164,14,1,f +13285,973pr1652c01,4,1,f +13287,2476a,4,1,f +13287,3001,15,2,f +13287,3022,0,2,f +13287,30261,15,2,f +13287,3032,2,1,f +13287,30488c01,15,1,f +13287,30492,2,1,f +13287,3626bp05,14,1,f +13287,3754,15,1,f +13287,3901,6,1,t +13287,3901,6,1,f +13287,3957a,15,2,f +13287,4282,2,1,f +13287,4282,15,1,f +13287,4476b,15,2,f +13287,4733,0,1,f +13287,72824p01,15,1,f +13287,973pb0104c01,15,1,f +13288,10660c01,71,3,f +13288,10661,71,3,f +13288,2222,484,1,f +13288,2302,71,2,f +13288,3011pb34,71,2,f +13288,3437,4,2,f +13288,3437,14,3,f +13288,3437,41,1,f +13288,40666,0,1,f +13288,40666,14,1,f +13288,41169c01,71,1,f +13288,42026,0,1,f +13288,4662,0,1,f +13288,4672,71,1,f +13288,63871,0,1,f +13288,88760,0,2,f +13288,88762c01pb01,0,1,f +13288,88762c01pb03,0,1,f +13288,88762c01pb15,0,2,f +13288,88764pb01,484,1,f +13288,89398,0,1,f +13288,98218,15,2,f +13288,98222,1,1,f +13288,98223,0,1,f +13288,98235pb01,71,1,f +13288,98248pb01,26,1,f +13289,41889,148,1,f +13289,41890,148,2,f +13289,42687,148,1,f +13293,10884,27,1,f +13293,11618,191,1,f +13293,11618,191,1,t +13293,13336pr0002,30,1,f +13293,22667,4,1,t +13293,22667,4,1,f +13293,3002,71,1,f +13293,3005,322,1,f +13293,30136,484,2,f +13293,30136,71,3,f +13293,30176,2,2,f +13293,3020,322,2,f +13293,3023,322,1,f +13293,30357,19,2,f +13293,3039,70,2,f +13293,3062b,70,3,f +13293,33291,5,1,t +13293,33291,5,3,f +13293,3660,71,1,f +13293,3666,27,1,f +13293,3710,27,2,f +13293,3794b,27,2,f +13293,3795,2,2,f +13293,3957b,70,1,f +13293,6091,322,1,f +13293,6141,41,3,f +13293,6141,27,1,t +13293,6141,41,1,t +13293,6141,27,1,f +13293,87580,322,1,f +13293,87580,70,2,f +13294,2780,0,6,f +13294,2825,7,2,f +13294,2854,7,1,f +13294,3022,14,2,f +13294,3023,14,2,f +13294,3023,7,2,f +13294,3068b,14,2,f +13294,3127,7,1,f +13294,32062,0,2,f +13294,3623,14,2,f +13294,3647,7,2,f +13294,3673,7,4,f +13294,3700,4,1,f +13294,3705,0,1,f +13294,3709,14,1,f +13294,3713,7,7,f +13294,3749,7,4,f +13294,3941,4,1,f +13294,41753,8,1,f +13294,4265b,7,4,f +13294,6553,7,1,f +13294,6587,8,1,f +13294,rb00168,0,2,f +13294,rb00169,0,4,f +13296,2419,15,2,f +13296,2419,1,1,f +13296,2431,0,5,f +13296,2432,0,1,f +13296,2434,7,2,f +13296,2445,1,1,f +13296,2540,7,3,f +13296,2637,7,6,f +13296,30000,8,2,f +13296,3001,1,4,f +13296,3002,7,1,f +13296,3002,0,2,f +13296,3003,15,1,f +13296,3003,8,7,f +13296,3003,4,1,f +13296,3004,14,8,f +13296,3004,0,1,f +13296,3004,4,1,f +13296,3005,19,1,f +13296,3005,1,2,f +13296,3009,57,4,f +13296,3010,0,2,f +13296,3010,7,1,f +13296,30145,7,2,f +13296,30165,4,1,f +13296,30170,0,1,f +13296,30170,8,1,f +13296,30171,7,1,f +13296,30171,6,1,f +13296,30183,15,2,f +13296,3020,8,2,f +13296,3020,7,4,f +13296,3020,1,3,f +13296,3021,8,4,f +13296,3022,2,1,f +13296,3022,4,5,f +13296,3022,0,2,f +13296,3022,1,2,f +13296,3023,14,7,f +13296,3023,0,2,f +13296,3023,8,6,f +13296,30236,0,2,f +13296,30246,19,2,f +13296,3031,7,2,f +13296,3031,8,4,f +13296,3032,7,2,f +13296,3034,15,2,f +13296,30360,8,2,f +13296,30367b,7,2,f +13296,30371,19,1,f +13296,30376,19,1,f +13296,30377,19,3,f +13296,3039,0,5,f +13296,3040b,19,1,f +13296,3062b,33,3,f +13296,3062b,2,2,f +13296,3069b,0,8,f +13296,3298,8,5,f +13296,3298,1,6,f +13296,3298,14,2,f +13296,3298ps0,1,1,f +13296,3307,19,4,f +13296,3475b,8,2,f +13296,3475b,1,2,f +13296,3483,0,4,f +13296,3622,1,2,f +13296,3623,4,2,f +13296,3626bpsd,14,1,f +13296,3626bpx46,14,1,f +13296,3660,15,1,f +13296,3660,4,1,f +13296,3660,7,1,f +13296,3660,8,2,f +13296,3666,7,1,f +13296,3666,14,6,f +13296,3679,7,1,f +13296,3680,0,1,f +13296,3710,1,4,f +13296,3710,14,4,f +13296,3795,7,4,f +13296,3795,8,3,f +13296,3832,4,2,f +13296,3832,0,1,f +13296,3832,15,1,f +13296,3941,14,2,f +13296,3941,4,4,f +13296,3942b,8,2,f +13296,3943b,8,2,f +13296,3958,1,2,f +13296,3960,19,1,f +13296,3961,19,2,f +13296,4032a,0,4,f +13296,4286,1,2,f +13296,4477,4,1,f +13296,4589,1,2,f +13296,4589,4,4,f +13296,4589,7,1,f +13296,4854,4,1,f +13296,4854,1,1,f +13296,4859,4,1,f +13296,4865a,47,1,f +13296,4865a,34,1,f +13296,4865a,36,1,f +13296,6112,19,2,f +13296,6183,1,4,f +13296,6215,1,1,f +13296,6222,4,2,f +13296,6222,1,2,f +13296,6222,7,4,f +13296,6232,7,16,f +13296,6248,7,8,f +13296,6636,0,1,f +13296,970c00,8,1,f +13296,970c00,19,1,f +13296,973px59c01,19,1,f +13296,973px82ac01,19,1,f +13297,2540,25,1,f +13297,298c02,15,1,f +13297,298c02,15,1,t +13297,3002,25,2,f +13297,3004,4,1,f +13297,3005,0,1,f +13297,3009,4,2,f +13297,3020,4,1,f +13297,3024,47,4,f +13297,3063b,4,2,f +13297,3063b,0,2,f +13297,3660,25,2,f +13297,3665,4,2,f +13297,3710,0,2,f +13297,3710,25,2,f +13297,3747b,4,1,f +13297,3794a,0,3,f +13297,3795,4,2,f +13297,6141,34,1,f +13297,6141,34,1,t +13297,6141,36,1,t +13297,6141,36,1,f +13299,3003a,15,1,f +13299,3005,15,5,f +13299,3009apb42a,15,1,f +13299,3036a,15,2,f +13299,3062c,4,4,f +13299,3065,15,14,f +13299,32ac01,4,1,f +13299,453ac01,4,1,f +13299,604ac01,4,1,f +13300,2339,0,16,f +13300,2343,47,1,f +13300,2357,0,2,f +13300,2357,7,4,f +13300,2412b,41,3,f +13300,2412b,8,1,f +13300,2431,0,3,f +13300,2431,7,6,f +13300,2444,7,2,f +13300,2445,7,8,f +13300,2449,7,16,f +13300,2453a,8,2,f +13300,2454a,8,2,f +13300,2454a,19,4,f +13300,2458,8,2,f +13300,2555,0,2,f +13300,2555,8,2,f +13300,2586px13,7,2,f +13300,2654,7,1,f +13300,2780,0,1,t +13300,2780,0,1,f +13300,2817,7,1,f +13300,3001,7,2,f +13300,3001,8,10,f +13300,3002,7,1,f +13300,3003,7,2,f +13300,3003,8,2,f +13300,3004,15,2,f +13300,3004,19,12,f +13300,3004,7,11,f +13300,3004,8,10,f +13300,30041,8,1,f +13300,30042,7,1,f +13300,30043,0,8,f +13300,30044,7,1,f +13300,30045,0,1,f +13300,3005,36,3,f +13300,3005,34,3,f +13300,3005,8,4,f +13300,3005,7,2,f +13300,3005,0,2,f +13300,30072,0,2,f +13300,3009,8,3,f +13300,3010,19,1,f +13300,3010,7,3,f +13300,3010,8,19,f +13300,30115,0,5,f +13300,30136,0,20,f +13300,3020,7,3,f +13300,3020,0,3,f +13300,3020,378,1,f +13300,3021,0,2,f +13300,3021,8,2,f +13300,3022,15,1,f +13300,3022,7,2,f +13300,3022,8,3,f +13300,3022,378,4,f +13300,3023,8,15,f +13300,3023,0,8,f +13300,3023,7,19,f +13300,3023,378,4,f +13300,30237a,8,2,f +13300,30237a,7,2,f +13300,30238,42,1,f +13300,3024,8,2,f +13300,3024,0,4,f +13300,30246,19,3,f +13300,30246,8,4,f +13300,3034,7,2,f +13300,3034,0,8,f +13300,30357,7,2,f +13300,3037,8,2,f +13300,30374,7,1,f +13300,30374,6,3,f +13300,30374,484,1,f +13300,3039,7,2,f +13300,3040b,378,22,f +13300,3040b,8,2,f +13300,3040b,7,2,f +13300,3062b,8,10,f +13300,3062b,0,8,f +13300,3062b,19,4,f +13300,3068b,8,8,f +13300,3068b,7,3,f +13300,3068b,0,4,f +13300,3068bpb0014,378,1,f +13300,3069b,0,4,f +13300,3069b,7,12,f +13300,3069b,14,1,f +13300,3069b,15,4,f +13300,3069b,8,2,f +13300,3070b,0,2,f +13300,3070b,0,1,t +13300,3298,7,2,f +13300,33009pb001,6,1,f +13300,33215,378,1,f +13300,3460,8,2,f +13300,3622,0,2,f +13300,3622,8,4,f +13300,3623,0,2,f +13300,3623,7,2,f +13300,3626bpb0009,14,1,f +13300,3626bpb0125,14,1,f +13300,3626bpb0128,14,1,f +13300,3626bpb0160,14,1,f +13300,3626bph1,14,1,f +13300,3659,0,1,f +13300,3659,8,1,f +13300,3665,7,2,f +13300,3665,0,2,f +13300,3673,7,2,f +13300,3678a,7,1,f +13300,3679,7,4,f +13300,3680,0,4,f +13300,3684,7,4,f +13300,37,21,2,f +13300,3710,7,4,f +13300,3710,0,3,f +13300,3754pb03,7,4,f +13300,3794a,15,1,f +13300,3794a,7,3,f +13300,3795,8,2,f +13300,3795,7,1,f +13300,3795,0,2,f +13300,3830,8,4,f +13300,3831,8,4,f +13300,3832,0,1,f +13300,3941,0,1,f +13300,3942c,378,5,f +13300,3943b,378,3,f +13300,3957a,0,1,f +13300,3958,0,5,f +13300,40232,7,1,f +13300,40233,0,2,f +13300,40240,366,1,f +13300,40378,378,1,f +13300,40379,378,1,f +13300,40395,378,1,f +13300,4204,0,1,f +13300,4204,8,1,f +13300,43744,4,1,f +13300,43746px1,378,1,f +13300,43751,19,1,f +13300,43936px1,118,2,f +13300,4460a,7,4,f +13300,4530,366,1,f +13300,4589,378,21,f +13300,4865a,8,1,f +13300,50231,335,1,f +13300,50231px1,0,4,f +13300,59,383,1,f +13300,6027,8,4,f +13300,6091,8,18,f +13300,6108,0,2,f +13300,6112,7,4,f +13300,6126a,57,8,f +13300,6131,0,1,f +13300,6141,46,1,t +13300,6141,0,1,t +13300,6141,0,1,f +13300,6141,46,2,f +13300,6179,0,1,f +13300,6541,0,2,f +13300,6936,15,1,f +13300,970c00,335,1,f +13300,970c00,7,4,f +13300,973pb0160c01,335,1,f +13300,973px146c01,7,3,f +13300,973px147c01,7,1,f +13300,bb296pb01,378,1,f +13301,3001,14,1,f +13301,3001,15,1,f +13301,3001,0,1,f +13301,3001,4,5,f +13301,3002,1,2,f +13301,3002,4,2,f +13301,3003,4,1,f +13301,3004,0,1,f +13301,3004,14,2,f +13301,3004,4,2,f +13301,3004,15,4,f +13301,3004p18,15,2,f +13301,3004pb005,15,2,f +13301,3004prc,15,2,f +13301,3005,15,2,f +13301,3010,0,1,f +13301,3010,15,5,f +13301,3010,4,2,f +13301,3010,14,2,f +13301,3010pb035u,4,1,f +13301,3010pb035u,0,1,f +13301,3010pb035u,1,2,f +13301,3010pb035u,14,1,f +13301,3010pb036u,15,1,f +13301,3020,4,1,f +13301,3021,4,2,f +13301,3029,4,1,f +13301,3030,1,1,f +13301,3030,4,1,f +13301,3031,14,1,f +13301,3031,4,1,f +13301,3035,14,1,f +13301,3035,0,1,f +13301,3035,15,1,f +13301,3037,4,2,f +13301,3037,14,1,f +13301,3039,4,2,f +13301,3039,15,1,f +13301,3040b,14,2,f +13301,3135c02,1,1,f +13301,3137c01,0,12,f +13301,3149c01,4,1,f +13301,3298,15,2,f +13301,3403c01,4,1,f +13301,3622,15,2,f +13301,3622,1,2,f +13301,3622,4,2,f +13301,3622,14,4,f +13301,3625,4,1,f +13301,3626apr0001,14,1,f +13301,3633,1,2,f +13301,3641,0,24,f +13301,3660,1,2,f +13301,3660,4,2,f +13301,3710,0,1,f +13301,3710,14,1,f +13301,3710,4,2,f +13301,3710,1,1,f +13301,3823,47,6,f +13301,3829c01,1,1,f +13301,3829c01,15,2,f +13301,3829c01,4,2,f +13301,3829c01,14,1,f +13301,3835,7,1,f +13301,3853,15,1,f +13301,3853,14,1,f +13301,3856,15,2,f +13301,3856,1,2,f +13301,3962a,0,1,f +13301,4006,0,1,f +13301,4083,0,1,f +13301,4083,4,1,f +13301,4207,14,2,f +13301,4215a,15,2,f +13301,970c00,15,1,f +13301,973p24c01,15,1,f +13302,2446pr0001,4,1,f +13302,2447,40,1,f +13302,3626bpr0737,14,1,f +13302,62810,19,1,f +13302,88646,0,1,f +13302,970x001,4,1,f +13302,973pr1708c01,4,1,f +13303,3403,4,2,f +13303,3404,4,2,f +13303,3679,7,2,f +13303,3680,1,2,f +13304,20477,297,1,f +13304,41677,72,1,f +13304,48729b,72,2,f +13304,87994,0,1,f +13306,3020,0,100,f +13307,2446,15,1,f +13307,2447,33,1,f +13307,298c02,15,1,f +13307,3003,1,1,f +13307,3022,15,1,f +13307,3626bp69,14,1,f +13307,3710,15,1,f +13307,3933,0,1,f +13307,3934,0,1,f +13307,4070,7,2,f +13307,6126a,57,2,f +13307,6141,34,1,f +13307,6141,36,1,f +13307,6153a,15,1,f +13307,6239,15,1,f +13307,970c00,15,1,f +13307,973px176c01,15,1,f +13309,2420,15,2,f +13309,2431,71,5,f +13309,2449,71,2,f +13309,2456,71,2,f +13309,2540,0,1,f +13309,2653,71,2,f +13309,2877,0,2,f +13309,2921,71,2,f +13309,3001,1,1,f +13309,3004,71,4,f +13309,3005,72,6,f +13309,3010,72,5,f +13309,3020,72,2,f +13309,3023,19,2,f +13309,3023,72,8,f +13309,3024,272,6,f +13309,3034,72,1,f +13309,30355,71,1,f +13309,30356,71,1,f +13309,30365,72,2,f +13309,30375,1,1,f +13309,30375,19,2,f +13309,30376,19,3,f +13309,30377,19,1,t +13309,30377,19,4,f +13309,30378,19,3,f +13309,30553,71,2,f +13309,30554b,71,4,f +13309,3062b,71,3,f +13309,3068b,70,3,f +13309,3069b,272,17,f +13309,32000,72,2,f +13309,32028,71,3,f +13309,32062,0,2,f +13309,32123b,14,4,f +13309,32123b,14,1,t +13309,32556,19,2,f +13309,3460,72,1,f +13309,3622,71,2,f +13309,3623,71,5,f +13309,3626bpr0582,71,1,f +13309,3647,72,4,f +13309,3660,71,8,f +13309,3665,72,2,f +13309,3666,71,1,f +13309,3676,72,2,f +13309,3700,0,1,f +13309,3705,0,2,f +13309,3710,272,8,f +13309,3743,71,2,f +13309,3794b,71,8,f +13309,3795,71,1,f +13309,3832,71,1,f +13309,3894,72,1,f +13309,3894,0,1,f +13309,3937,72,1,f +13309,3938,71,1,f +13309,3957a,71,1,f +13309,40902,71,2,f +13309,4162,72,2,f +13309,41751,71,1,f +13309,41769,71,1,f +13309,41770,71,1,f +13309,42021,71,1,f +13309,42023,72,2,f +13309,43093,1,2,f +13309,44301a,72,4,f +13309,4519,71,2,f +13309,47545pr02,2,1,f +13309,4854,72,1,f +13309,4855,72,1,f +13309,50950,72,4,f +13309,50950,272,2,f +13309,50955,71,2,f +13309,50956,71,2,f +13309,52107,0,7,f +13309,54200,71,1,t +13309,54200,71,4,f +13309,54383,272,2,f +13309,54384,272,2,f +13309,58247,0,2,f +13309,59230,19,1,t +13309,59230,19,2,f +13309,59443,0,3,f +13309,60479,71,2,f +13309,6141,41,1,t +13309,6141,46,4,f +13309,6141,72,4,f +13309,6141,41,3,f +13309,6141,72,1,t +13309,6141,46,1,t +13309,61678,71,4,f +13309,6179,71,1,f +13309,6232,19,2,f +13309,64797,72,1,f +13309,6541,71,4,f +13309,6589,19,4,f +13309,6636,70,2,f +13309,87552,71,2,f +13309,92950,72,1,f +13309,95120,72,1,f +13309,970c00,378,1,f +13309,970c00,320,1,f +13309,973pr1482c01,85,1,f +13309,973pr1484c01,320,1,f +13310,3947a,7,2,f +13311,10247,71,12,f +13311,10247,4,2,f +13311,11211,4,1,f +13311,11212,71,4,f +13311,11214,72,5,f +13311,11455,0,2,f +13311,11478,0,2,f +13311,11478,71,8,f +13311,11833,71,4,f +13311,12825,72,2,f +13311,12825,71,2,f +13311,13547,0,2,f +13311,15100,0,6,f +13311,15303,36,3,f +13311,15400,72,2,f +13311,16501pr0001,15,3,f +13311,2412b,72,24,f +13311,2450,72,4,f +13311,2458,4,2,f +13311,2458,72,4,f +13311,2462,72,16,f +13311,2714a,71,2,f +13311,2780,0,109,f +13311,2780,0,7,t +13311,2825,0,4,f +13311,3009,71,2,f +13311,3010,0,1,f +13311,3020,71,2,f +13311,3020,72,2,f +13311,3021,71,10,f +13311,3021,0,4,f +13311,3022,0,2,f +13311,3022,1,1,f +13311,3022,71,1,f +13311,3022,72,2,f +13311,3023,0,40,f +13311,3023,72,7,f +13311,3023,14,2,f +13311,3024,72,1,t +13311,3024,72,8,f +13311,3028,71,3,f +13311,30304,72,1,f +13311,3031,71,4,f +13311,3031,0,2,f +13311,3034,71,1,f +13311,3034,0,6,f +13311,3034,72,3,f +13311,3035,71,2,f +13311,3036,71,3,f +13311,30363,72,1,f +13311,3037,72,1,f +13311,3069b,15,3,f +13311,3069b,71,2,f +13311,3069b,0,2,f +13311,3069bpr0086,71,1,f +13311,3070b,71,4,f +13311,3070b,71,1,t +13311,3070bpr0149,15,2,f +13311,3070bpr0149,15,1,t +13311,32001,71,5,f +13311,32005a,72,4,f +13311,32013,72,10,f +13311,32028,72,24,f +13311,32054,4,2,f +13311,32062,4,2,f +13311,32073,71,4,f +13311,32140,0,1,f +13311,32316,15,1,f +13311,32324,71,2,f +13311,32449,14,2,f +13311,32523,72,6,f +13311,32523,0,8,f +13311,32524,0,2,f +13311,32525,71,10,f +13311,32526,72,6,f +13311,32529,0,2,f +13311,32530,72,5,f +13311,32532,71,1,f +13311,3460,0,8,f +13311,3623,0,4,f +13311,3626cpr1149,78,4,f +13311,3626cpr1487,78,1,f +13311,3660,71,2,f +13311,3666,71,8,f +13311,3666,72,5,f +13311,3700,71,2,f +13311,3700,4,1,f +13311,3701,72,5,f +13311,3702,71,8,f +13311,3702,4,1,f +13311,3703,72,2,f +13311,3705,0,6,f +13311,3706,0,2,f +13311,3707,0,1,f +13311,3709,4,4,f +13311,3710,72,12,f +13311,3710,71,11,f +13311,3710,19,3,f +13311,3713,71,1,t +13311,3713,71,1,f +13311,3738,72,4,f +13311,3747b,72,2,f +13311,3794b,72,16,f +13311,3795,72,3,f +13311,3795,71,5,f +13311,3832,72,2,f +13311,3837,72,2,f +13311,3894,0,2,f +13311,3894,71,2,f +13311,3894,72,8,f +13311,3895,71,6,f +13311,3937,15,2,f +13311,3957a,71,2,f +13311,3960,71,8,f +13311,4032a,0,12,f +13311,40490,72,2,f +13311,4081b,15,2,f +13311,4162,72,4,f +13311,41769,72,2,f +13311,41769,71,6,f +13311,41770,72,2,f +13311,41770,71,6,f +13311,42446,71,2,f +13311,42446,71,1,t +13311,4274,1,4,t +13311,4274,71,2,f +13311,4274,1,65,f +13311,4274,71,1,t +13311,43093,1,19,f +13311,43722,72,4,f +13311,43722,71,14,f +13311,43723,71,14,f +13311,43723,72,4,f +13311,43898,72,1,f +13311,44224,72,8,f +13311,44225,71,8,f +13311,44375a,71,4,f +13311,44728,0,10,f +13311,4477,72,2,f +13311,4477,71,10,f +13311,44809,71,2,f +13311,4510,72,2,f +13311,4519,71,1,f +13311,4590,72,2,f +13311,4740,72,4,f +13311,48336,19,8,f +13311,48989,71,10,f +13311,50304,72,1,f +13311,50304,71,2,f +13311,50305,72,1,f +13311,50305,71,2,f +13311,50373,71,1,f +13311,51739,71,22,f +13311,51739,72,4,f +13311,54200,71,2,f +13311,54200,71,1,t +13311,54383,71,2,f +13311,54384,71,2,f +13311,57900,379,1,f +13311,58247,0,3,f +13311,59443,71,2,f +13311,59443,14,2,f +13311,59900,71,2,f +13311,60208,71,1,f +13311,60474,71,2,f +13311,60474,72,2,f +13311,60479,71,6,f +13311,60581,71,1,f +13311,60849,71,1,t +13311,60849,71,2,f +13311,6134,1,2,f +13311,6141,41,2,f +13311,6141,0,12,f +13311,6141,19,1,t +13311,6141,41,1,t +13311,6141,19,3,f +13311,6141,0,1,t +13311,6178,71,2,f +13311,6179,71,5,f +13311,6183,71,4,f +13311,6222,71,4,f +13311,63864,72,4,f +13311,63864,71,32,f +13311,63864,15,1,f +13311,63868,72,14,f +13311,6536,4,2,f +13311,6536,72,4,f +13311,6541,71,10,f +13311,6558,1,33,f +13311,6628,0,3,t +13311,6628,0,8,f +13311,6632,71,2,f +13311,6632,1,2,f +13311,6636,71,10,f +13311,74664,15,3,f +13311,85080,71,2,f +13311,85984,72,5,f +13311,85984,71,4,f +13311,87079,72,1,f +13311,87079,71,3,f +13311,87082,71,1,f +13311,87083,72,5,f +13311,87552,71,2,f +13311,87556pr0005a,71,1,f +13311,87580,71,9,f +13311,88072,19,2,f +13311,88646,71,8,f +13311,90258,72,4,f +13311,92099,72,1,f +13311,92107,0,1,f +13311,92280,71,2,f +13311,92738,0,1,f +13311,92907,71,2,f +13311,93095,15,1,f +13311,96874,25,1,t +13311,970c00,15,1,f +13311,970c00,72,1,f +13311,970c00pr0704,379,1,f +13311,970x194,15,2,f +13311,973pr2311c01,15,2,f +13311,973pr2755c01,72,1,f +13311,973pr2760c01,71,1,f +13311,973pr2761c01,15,1,f +13311,98285,71,4,f +13311,98286,71,5,f +13311,99206,71,2,f +13311,99206,4,1,f +13311,99781,71,3,f +13312,2412b,19,2,f +13312,2540,0,1,f +13312,30155,6,2,f +13312,3020,6,1,f +13312,3022,19,2,f +13312,30390b,7,1,f +13312,3626bpb0155,47,1,f +13312,3626bph1,14,1,f +13312,3626bph2,14,1,f +13312,3901,19,1,f +13312,40233,0,1,f +13312,4332,6,2,f +13312,50231px1,0,2,f +13312,6019,7,2,f +13312,970c00,7,2,f +13312,973px146c01,7,1,f +13312,973px147c01,7,1,f +13313,10201,4,2,f +13313,15712,1,2,f +13313,2432,4,1,f +13313,2569,71,1,f +13313,3023,0,2,f +13313,30237a,72,1,f +13313,3032,71,1,f +13313,3626bpr0898,15,1,f +13313,3710,14,4,f +13313,3829c01,1,1,f +13313,4070,71,4,f +13313,4600,0,1,f +13313,4624,71,2,f +13313,50950,0,4,f +13313,6091,27,2,f +13313,6141,46,4,f +13313,6141,46,1,t +13313,64798,2,1,f +13313,85984,27,5,f +13313,92593,0,2,f +13313,93273,0,2,f +13313,93568pat0001,84,1,f +13313,970c00,85,1,f +13313,973pr2150c01,85,1,f +13313,98834,0,1,f +13315,11211,71,1,f +13315,11477,71,4,f +13315,15573,71,1,f +13315,18649,0,1,f +13315,2420,71,2,f +13315,3003,71,2,f +13315,3005,71,2,f +13315,3022,71,2,f +13315,3022,15,3,f +13315,3023,72,3,f +13315,3023,29,1,f +13315,3023,71,2,f +13315,3024,29,2,f +13315,3070b,0,1,f +13315,3070b,71,2,f +13315,32028,15,1,f +13315,3660,71,1,f +13315,3679,71,1,f +13315,3680,15,1,f +13315,44728,71,2,f +13315,4871,71,1,f +13315,54200,71,2,f +13315,60478,71,4,f +13315,60897,72,8,f +13315,6091,71,4,f +13315,61252,15,2,f +13315,93273,71,2,f +13315,93273,15,2,f +13315,98138pr0008,15,2,f +13315,99781,71,3,f +13317,2444,72,1,f +13317,2460,0,2,f +13317,2780,0,2,f +13317,43093,1,2,f +13317,47430,112,2,f +13317,47431,151,2,f +13317,47432,112,2,f +13317,47452,112,2,f +13317,47454,151,2,f +13317,47455,72,10,f +13317,47456,112,2,f +13317,47457,112,4,f +13317,50602,178,2,f +13317,50616,134,1,f +13317,50623,178,1,f +13317,50629,178,2,f +13317,53346c01pb01,151,1,f +13317,53347pb01,134,1,f +13317,53415,72,1,f +13317,bb153pb06,112,1,f +13318,57543,135,1,f +13318,60895,73,1,f +13318,60896,15,4,f +13318,62386,15,2,f +13318,64251,15,2,f +13318,64262,143,1,f +13318,64266pat0001,135,2,f +13318,64321,15,1,f +13319,11618,322,1,t +13319,11618,322,1,f +13319,11816pr0002,78,1,f +13319,2431,322,2,f +13319,2449,15,2,f +13319,3008,19,1,f +13319,30136,19,4,f +13319,3023,27,5,f +13319,3023,72,1,f +13319,3023,29,2,f +13319,3023,2,2,f +13319,3029,2,1,f +13319,3031,2,1,f +13319,3035,2,1,f +13319,3035,15,1,f +13319,3069b,26,2,f +13319,3069b,15,2,f +13319,3069b,4,3,f +13319,32523,15,1,f +13319,32530,72,1,f +13319,33085,14,1,f +13319,33291,5,1,t +13319,33291,5,2,f +13319,3622,27,2,f +13319,3673,71,1,f +13319,3673,71,1,t +13319,3710,27,4,f +13319,3741,2,1,f +13319,3741,2,1,t +13319,3742,4,3,f +13319,3742,4,1,t +13319,3832,2,1,f +13319,3899,45,1,f +13319,3941,15,1,f +13319,3941,41,2,f +13319,4032a,2,1,f +13319,4032a,19,2,f +13319,4150,15,1,f +13319,4460b,19,2,f +13319,4477,15,1,f +13319,4599b,71,1,f +13319,4599b,71,1,t +13319,54200,15,1,f +13319,54200,15,1,t +13319,59900,25,4,f +13319,6141,27,1,f +13319,6141,1,1,f +13319,6141,27,1,t +13319,6141,1,1,t +13319,72824pr0001,15,1,f +13319,87079,26,1,f +13319,87544,15,2,f +13319,87580,10,4,f +13319,92255,226,1,f +13319,92456pr0030c01,78,1,f +13319,92819pr0004,272,1,f +13319,93160,15,1,t +13319,93160,15,1,f +13319,98386pr0001,484,1,f +13319,99780,72,1,f +13321,10199,10,1,f +13321,13247,484,1,f +13321,15319,71,1,f +13321,15894,15,1,f +13321,15964,15,1,f +13321,15966,4,1,f +13321,15975,5,1,f +13321,16117,322,1,f +13321,16320,191,1,f +13321,16385,15,1,f +13321,18917,4,1,f +13321,2302,4,1,f +13321,3437,322,4,f +13321,3437,27,2,f +13321,3437,5,2,f +13321,3437,191,3,f +13321,4066,5,1,f +13321,40666,191,3,f +13321,54530,14,1,f +13321,58057pr03,15,1,f +13321,61257,14,1,f +13321,6461,29,1,f +13321,6510,10,2,f +13321,6510,4,1,f +13321,6510,5,1,f +13321,75115pr0006,73,1,f +13321,75121,15,1,f +13321,98223,4,1,f +13321,98233,10,1,f +13322,32062,0,6,f +13322,32173,8,2,f +13322,32174,1,10,f +13322,32174,57,1,f +13322,32270,7,1,f +13322,3737,0,1,f +13322,3749,19,4,f +13322,4204587,9999,1,f +13322,44135,8,1,f +13322,44136,8,1,f +13322,44138,1,2,f +13322,44139,8,1,f +13322,44140,1,1,f +13322,44147,179,1,f +13322,44148,8,2,f +13322,44247,8,1,f +13322,44807,1,1,f +13322,44817,179,2,f +13322,4519,7,3,f +13322,45749,8,2,f +13322,6538b,8,1,f +13322,kraataund,137,1,f +13323,2016b,0,1,f +13323,219,72,10,t +13323,2343,47,2,f +13323,2362b,40,4,f +13323,2412b,0,11,f +13323,2431,72,13,f +13323,2431pr0028,72,2,f +13323,2432,1,2,f +13323,2439,72,1,f +13323,2465,0,2,f +13323,2494,40,2,f +13323,2780,0,6,f +13323,2780,0,2,t +13323,2871b,71,2,f +13323,2877,72,16,f +13323,2877,4,8,f +13323,2878,71,10,f +13323,2919,36,1,f +13323,2919,46,1,f +13323,2920,0,4,f +13323,2922,0,2,f +13323,30000,1,2,f +13323,3001,0,2,f +13323,3001,4,4,f +13323,3002,4,1,f +13323,3004,15,18,f +13323,3004,4,10,f +13323,3004,0,14,f +13323,3005,4,2,f +13323,3005,72,8,f +13323,3005,15,10,f +13323,3008,4,10,f +13323,3009,15,2,f +13323,3010,4,2,f +13323,3010,15,3,f +13323,3020,72,12,f +13323,3021,1,3,f +13323,3021,71,2,f +13323,3023,46,1,f +13323,3023,4,14,f +13323,3032,71,2,f +13323,3034,1,1,f +13323,3036,71,2,f +13323,30363,0,2,f +13323,3040b,0,4,f +13323,30553,72,1,f +13323,3068b,4,1,f +13323,3069b,4,1,f +13323,3069b,72,9,f +13323,3069bp08,15,1,f +13323,3460,4,2,f +13323,3460,72,8,f +13323,3623,72,14,f +13323,3624,0,1,f +13323,3626b,71,2,f +13323,3626bpr0245,14,1,f +13323,3626bpr0314,14,1,f +13323,3626bpr0387,14,1,f +13323,3659,4,1,f +13323,3666,71,1,f +13323,3710,4,7,f +13323,3794a,0,6,f +13323,3795,0,7,f +13323,3899,14,1,f +13323,3901,70,1,f +13323,4022,71,4,f +13323,4025,0,5,f +13323,4079,2,13,f +13323,4095,72,1,f +13323,4162,72,10,f +13323,4215b,40,1,f +13323,44300,0,2,f +13323,44301a,72,1,f +13323,44301a,0,2,f +13323,44302a,0,2,f +13323,4449,71,1,f +13323,4449,70,1,f +13323,44675,71,2,f +13323,44728,15,2,f +13323,4477,72,4,f +13323,4485,4,1,f +13323,4533,41,1,f +13323,4533,15,2,f +13323,45410,15,2,f +13323,45411,40,1,f +13323,45411,15,7,f +13323,4589,34,1,f +13323,4589,72,1,f +13323,4589,40,2,f +13323,4864b,40,54,f +13323,5306bc020,0,2,f +13323,53400,72,16,f +13323,53401,72,4,f +13323,54200,72,8,f +13323,54754c01,0,1,f +13323,55455c01,15,1,f +13323,55768,15,2,f +13323,57051,383,10,f +13323,57878,0,20,f +13323,6019,15,1,f +13323,6035,15,1,f +13323,6584,15,2,f +13323,73092,0,4,f +13323,772,15,2,f +13323,92410,4,3,f +13323,970c00,0,1,f +13323,970c00,1,2,f +13323,973pr1164c01,272,1,f +13323,973pr1166c01,272,1,f +13323,973pr1192c01,0,1,f +13324,2780,0,6,f +13324,2780,0,2,t +13324,32002,72,1,t +13324,32002,72,2,f +13324,32014,15,1,f +13324,32015,0,2,f +13324,32039,71,1,f +13324,32062,4,3,f +13324,32073,71,2,f +13324,32140,0,1,f +13324,32174,0,11,f +13324,32184,0,2,f +13324,32192,0,1,f +13324,32249,0,4,f +13324,32524,0,2,f +13324,3705,0,1,f +13324,3706,0,1,f +13324,3713,71,1,t +13324,3713,71,2,f +13324,41677,72,1,f +13324,41678,0,2,f +13324,42003,71,1,f +13324,4274,71,2,f +13324,4274,71,1,t +13324,43093,1,19,f +13324,4519,71,8,f +13324,45749,0,2,f +13324,4697b,71,1,t +13324,4697b,71,6,f +13324,47306,0,1,f +13324,47312,72,1,f +13324,47313,42,1,f +13324,47326pat03,0,2,f +13324,47328,0,2,f +13324,50898,72,2,f +13324,53451,135,8,f +13324,53451,135,1,t +13324,53545,0,1,f +13324,53549,0,2,f +13324,53568,0,2,f +13324,53568,135,1,f +13324,53585,0,4,f +13324,53586,135,2,f +13324,53989,148,8,f +13324,55013,72,2,f +13324,57523c01,135,1,f +13324,57525,4,9,f +13324,57528,135,2,f +13324,57539,135,2,f +13324,57543,135,2,f +13324,57563,135,2,f +13324,57567,135,1,f +13324,57575,135,1,f +13324,57585,71,1,f +13324,59577,135,2,f +13324,6536,0,2,f +13324,6538b,0,3,f +13324,6553,0,3,f +13324,6558,0,6,f +13324,6632,72,2,f +13324,78c08,15,4,f +13327,5102,7,1,f +13327,5102,0,1,f +13328,51799,2,1,f +13328,51805,366,1,f +13328,51812,72,1,f +13329,15068,70,2,f +13329,15573,14,5,f +13329,15573,70,1,f +13329,15672,70,4,f +13329,15712,14,1,f +13329,2723,71,1,f +13329,3004,70,1,f +13329,3022,70,2,f +13329,3023,14,4,f +13329,3023,70,6,f +13329,32062,0,1,f +13329,32064a,0,2,f +13329,3900,14,1,f +13329,4070,70,2,f +13329,44728,0,2,f +13329,47457,70,2,f +13329,60478,14,2,f +13329,92280,0,2,f +13329,93273,70,2,f +13329,99207,0,4,f +13330,973pr2945c01,2,1,f +13331,12825,0,2,f +13331,14210,2,3,f +13331,2357,15,2,f +13331,2412b,14,3,f +13331,2412b,7,1,f +13331,2423,2,1,f +13331,2431,7,2,f +13331,2431,4,1,f +13331,2436,7,2,f +13331,2437,41,1,f +13331,2444,7,2,f +13331,2445,0,4,f +13331,2446px5,1,1,f +13331,2446px5,2,1,f +13331,2446px5,15,1,f +13331,2446px9,4,1,f +13331,2447,0,4,f +13331,2449,0,3,f +13331,2458,7,1,f +13331,2484c01,4,2,f +13331,2524,6,1,f +13331,2540,4,1,f +13331,2542,4,1,f +13331,2546,8,1,f +13331,2569,42,3,f +13331,2584,7,2,f +13331,2585,0,2,f +13331,2610,14,1,f +13331,2780,0,4,f +13331,2825,0,2,f +13331,3001,0,4,f +13331,3002,7,4,f +13331,3003,7,3,f +13331,3003,15,1,f +13331,30031,4,1,f +13331,3004,15,4,f +13331,3004,7,6,f +13331,30041,0,1,f +13331,30042,7,1,f +13331,3005,15,2,f +13331,3007,0,1,f +13331,3008,0,2,f +13331,30086,14,1,f +13331,30089,0,1,f +13331,3010,0,1,f +13331,3010,4,4,f +13331,30115,0,1,f +13331,30162,8,1,f +13331,30187c01,14,1,f +13331,30192,8,1,f +13331,30193,8,1,f +13331,3020,7,3,f +13331,3021,7,2,f +13331,3022,0,3,f +13331,30229,8,1,f +13331,3023,7,6,f +13331,3023,0,18,f +13331,3024,36,2,f +13331,3024,46,6,f +13331,3029,4,1,f +13331,3034,7,2,f +13331,3037,7,1,f +13331,3039,7,4,f +13331,3062b,0,1,f +13331,3062b,7,2,f +13331,3068b,7,4,f +13331,3069b,7,3,f +13331,3184,15,4,f +13331,3298,7,3,f +13331,3403c01,0,1,f +13331,3460,14,2,f +13331,3460,15,1,f +13331,3623,0,4,f +13331,3626bp7b,14,1,f +13331,3626bp7c,14,1,f +13331,3626bpx27,14,1,f +13331,3626bpx88,14,1,f +13331,3660,0,8,f +13331,3666,14,7,f +13331,3673,7,1,f +13331,3679,7,1,f +13331,3680,0,1,f +13331,3684,7,1,f +13331,3700,7,5,f +13331,3701,0,1,f +13331,3706,0,1,f +13331,3710,7,10,f +13331,3713,7,1,f +13331,3749,7,4,f +13331,3787,15,1,f +13331,3787,1,1,f +13331,3794a,15,2,f +13331,3795,0,2,f +13331,3795,4,1,f +13331,3821,4,1,f +13331,3822,4,1,f +13331,3829c01,7,1,f +13331,3937,0,3,f +13331,3938,1,3,f +13331,3941,6,2,f +13331,3957a,0,3,f +13331,3962b,0,2,f +13331,4070,4,4,f +13331,4081b,15,2,f +13331,4083,0,1,f +13331,4085c,1,8,f +13331,4150,0,1,f +13331,4275b,7,4,f +13331,4276b,7,4,f +13331,4460a,7,6,f +13331,4466,383,1,f +13331,4467,383,1,f +13331,4485,4,1,f +13331,4485,2,1,f +13331,4485,1,1,f +13331,4485,15,1,f +13331,4495a,1,1,f +13331,4519,0,2,f +13331,4589,46,1,f +13331,4623,15,1,f +13331,4623,4,1,f +13331,4871,0,2,f +13331,56823,0,1,f +13331,6014a,15,4,f +13331,6015,0,4,f +13331,6019,7,20,f +13331,6024px5,7,1,f +13331,6082,8,1,f +13331,6083,8,1,f +13331,6141,36,1,f +13331,6141,0,2,f +13331,6141,46,2,f +13331,6141,42,1,f +13331,6581,0,4,f +13331,6582,15,4,f +13331,6636,7,4,f +13331,6636px1,14,10,f +13331,75535,14,4,f +13331,970x024,0,4,f +13331,973p8ac01,0,1,f +13331,973p8ac02,0,1,f +13331,973p8ac03,0,1,f +13331,973p8ac04,0,1,f +13331,tentex,14,1,f +13332,11215,15,1,f +13332,11302pat0003,15,1,f +13332,11458,72,2,f +13332,11458,15,4,f +13332,11476,71,1,f +13332,11477,85,2,f +13332,13547,0,2,f +13332,14419,72,3,f +13332,14704,71,3,f +13332,14769,297,2,f +13332,15068,308,1,f +13332,15068,15,3,f +13332,15070,15,2,f +13332,15367,0,2,f +13332,15456,0,1,f +13332,15535,72,2,f +13332,15573,15,1,f +13332,15672,19,4,f +13332,15672,15,1,f +13332,15706,0,2,f +13332,15976,0,2,f +13332,17630,0,1,f +13332,18654,72,2,f +13332,18957pat0002,19,1,f +13332,18961pr01,320,1,f +13332,19136pr0001,85,1,f +13332,2419,2,1,f +13332,2524,70,2,f +13332,2540,1,1,f +13332,2639,72,4,f +13332,2639,15,2,f +13332,2654,33,2,f +13332,2654,15,3,f +13332,2736,71,2,f +13332,3001,28,1,f +13332,3003,72,7,f +13332,30094,70,2,f +13332,30136,15,1,f +13332,30176,2,2,f +13332,3020,272,2,f +13332,3021,71,1,f +13332,3021,70,2,f +13332,3022,73,2,f +13332,3023,71,5,f +13332,3023,85,8,f +13332,3023,70,1,f +13332,30237b,15,2,f +13332,3035,2,2,f +13332,30383,71,2,f +13332,30396,0,1,f +13332,3040b,19,4,f +13332,30552,0,6,f +13332,30552,72,1,f +13332,3062b,308,3,f +13332,3062b,33,2,f +13332,3069b,15,3,f +13332,3176,320,1,f +13332,3176,0,1,f +13332,32000,15,2,f +13332,32016,70,1,f +13332,32016,71,4,f +13332,32054,0,2,f +13332,32062,4,2,f +13332,32064a,320,3,f +13332,32474,27,2,f +13332,32556,19,1,f +13332,3298,15,4,f +13332,3460,15,4,f +13332,3626cpr1570,179,1,f +13332,3626cpr1603,14,1,f +13332,3666,272,3,f +13332,3710,15,2,f +13332,3795,15,3,f +13332,3795,28,2,f +13332,3937,71,2,f +13332,4032a,70,2,f +13332,4081b,72,6,f +13332,41677,72,4,f +13332,4274,1,4,f +13332,43722,15,2,f +13332,43723,15,2,f +13332,43899,72,2,f +13332,44294,71,1,f +13332,44728,71,2,f +13332,4519,71,5,f +13332,4590,72,1,f +13332,4740,15,1,f +13332,47455,0,5,f +13332,47456,85,1,f +13332,47456,15,1,f +13332,47457,15,1,f +13332,476,0,1,f +13332,47905,71,1,f +13332,48169,72,3,f +13332,48170,41,1,f +13332,48171,72,4,f +13332,48172,15,1,f +13332,48336,15,1,f +13332,4871,272,1,f +13332,49668,4,2,f +13332,50923,72,2,f +13332,51739,28,2,f +13332,52501,15,2,f +13332,53451,15,2,f +13332,53585,0,2,f +13332,54200,15,3,f +13332,54200,322,2,f +13332,54200,143,8,f +13332,57906,179,8,f +13332,57909b,72,3,f +13332,60478,72,4,f +13332,60478,71,2,f +13332,60593,19,1,f +13332,60897,15,4,f +13332,6091,70,2,f +13332,6091,15,2,f +13332,61252,72,3,f +13332,6126b,182,1,f +13332,6134,71,2,f +13332,6141,15,4,f +13332,6141,41,16,f +13332,62808,297,2,f +13332,63868,70,2,f +13332,64225,15,2,f +13332,64867,28,1,f +13332,6587,28,4,f +13332,87079,4,1,f +13332,87081,72,1,f +13332,87083,72,2,f +13332,87087,73,2,f +13332,87747,15,6,f +13332,92013,15,3,f +13332,92338,72,1,f +13332,93273,71,1,f +13332,93273,15,2,f +13332,93609,15,4,f +13332,970c00pr0777,71,1,f +13332,970c00pr0804,320,1,f +13332,973pr2858c01,71,1,f +13332,973pr2863c01,85,1,f +13332,973pr2906c01,85,1,f +13332,98132,179,1,f +13332,98133pr0013,179,1,f +13332,98138,297,4,f +13332,98139,297,2,f +13332,98283,28,2,f +13332,98560,28,2,f +13332,99207,0,4,f +13332,99778pr0007,85,1,f +13332,99780,71,4,f +13332,99780,72,2,f +13332,99781,0,2,f +13333,14728,0,1,f +13333,2412b,72,1,f +13333,2420,320,2,f +13333,2444,0,2,f +13333,2555,0,1,f +13333,2569,71,1,f +13333,2654,0,1,f +13333,2877,0,2,f +13333,2922,320,3,f +13333,30171,0,1,f +13333,30191,320,1,f +13333,30192,72,2,f +13333,3020,320,1,f +13333,3020,19,1,f +13333,3022,71,1,f +13333,3022,19,2,f +13333,3023,320,1,f +13333,3024,19,2,f +13333,30285,71,4,f +13333,3034,19,1,f +13333,30391,0,2,f +13333,3062b,72,6,f +13333,30648,0,2,f +13333,30663,0,1,f +13333,3626bpx332,14,1,f +13333,3673,71,1,t +13333,3673,71,2,f +13333,3710,320,1,f +13333,3747a,0,1,f +13333,3794a,0,1,f +13333,3795,72,1,f +13333,3795,0,1,f +13333,3937,0,1,f +13333,3938,71,1,f +13333,4070,0,8,f +13333,4079,71,1,f +13333,4095,0,1,f +13333,4282,0,1,f +13333,44567a,0,3,f +13333,4599a,0,4,f +13333,47720,0,1,f +13333,48183,320,1,f +13333,48336,320,2,f +13333,50943,71,1,f +13333,970c00,0,1,f +13333,973pb0177c01,72,1,f +13333,daraptor1,14,1,f +13336,2340,15,2,f +13336,2412b,15,6,f +13336,2432,0,1,f +13336,2432,7,1,f +13336,2433,0,1,f +13336,2437,41,2,f +13336,2540,7,7,f +13336,2540,15,2,f +13336,2555,7,2,f +13336,2569,4,2,f +13336,2584,7,1,f +13336,2585,0,1,f +13336,2610,14,2,f +13336,2625,1,1,f +13336,2625,4,1,f +13336,2626,1,2,f +13336,2650,4,1,f +13336,2651,4,1,f +13336,2654,0,6,f +13336,298c02,0,1,f +13336,3001,15,1,f +13336,3003,4,1,f +13336,3005,15,2,f +13336,3005,1,4,f +13336,3008,1,2,f +13336,3009,1,4,f +13336,3010,1,2,f +13336,3010,15,2,f +13336,3020,15,1,f +13336,3022,7,2,f +13336,3022,4,1,f +13336,3022,1,2,f +13336,3023,7,1,f +13336,3023,1,1,f +13336,3023,4,1,f +13336,3023,15,3,f +13336,3024,1,2,f +13336,3024,36,1,f +13336,3024,34,1,f +13336,3028,4,1,f +13336,3032,15,1,f +13336,3034,15,1,f +13336,3036,4,1,f +13336,3040p33,0,1,f +13336,3048c,0,2,f +13336,3068b,1,1,f +13336,3069b,15,1,f +13336,3069bp52,15,1,f +13336,3139,0,2,f +13336,3460,1,4,f +13336,3622,15,1,f +13336,3622,1,4,f +13336,3623,1,4,f +13336,3623,15,2,f +13336,3624,15,1,f +13336,3626bpr0001,14,2,f +13336,3665,15,2,f +13336,3700,1,2,f +13336,3707,0,1,f +13336,3710,1,2,f +13336,3710,15,10,f +13336,3794a,15,3,f +13336,3794a,7,3,f +13336,3829c01,1,1,f +13336,3829c01,4,1,f +13336,3901,0,1,f +13336,3937,15,1,f +13336,3938,15,1,f +13336,3939,15,2,f +13336,3939,41,1,f +13336,4070,1,2,f +13336,4079,4,1,f +13336,4085c,15,2,f +13336,4265a,7,4,f +13336,4286,1,2,f +13336,4287,1,2,f +13336,4289,15,1,f +13336,4460a,15,2,f +13336,4531,7,1,f +13336,4589,7,2,f +13336,4599a,15,1,f +13336,4740,8,1,f +13336,4854,15,1,f +13336,4855,15,1,f +13336,4859,15,1,f +13336,4859,1,1,f +13336,4865a,41,4,f +13336,4871,15,1,f +13336,4873,15,2,f +13336,56823,0,1,f +13336,6141,46,4,f +13336,6141,33,2,f +13336,6141,4,2,f +13336,6353stk01,9999,1,t +13336,71509,0,1,f +13336,970c00,0,2,f +13336,973pb0091c01,0,2,f +13337,2420,19,2,f +13337,2456,4,1,f +13337,30000,71,1,f +13337,3001,2,1,f +13337,3001,0,1,f +13337,3001,15,2,f +13337,3001,70,1,f +13337,3002,15,2,f +13337,3002,2,2,f +13337,3002,4,3,f +13337,3003,70,1,f +13337,3003,0,2,f +13337,3003,14,1,f +13337,3003,71,1,f +13337,3003,2,2,f +13337,3003,19,2,f +13337,3004,0,4,f +13337,3004,2,1,f +13337,3004,15,6,f +13337,3004,27,2,f +13337,3004,71,9,f +13337,3004,4,1,f +13337,3004,14,6,f +13337,3004,70,1,f +13337,3004,19,5,f +13337,3005,14,4,f +13337,3005,19,2,f +13337,3005,25,1,f +13337,3005,70,1,f +13337,3005,0,2,f +13337,3005pe1,25,2,f +13337,3005pe1,72,2,f +13337,3005pe1,14,4,f +13337,3007,2,1,f +13337,3007,4,1,f +13337,3009,4,1,f +13337,3010,2,6,f +13337,3010,15,3,f +13337,3010,25,1,f +13337,3020,2,2,f +13337,3020,72,1,f +13337,3020,14,1,f +13337,3020,27,1,f +13337,3021,25,1,f +13337,3021,72,4,f +13337,3022,25,1,f +13337,3023,14,1,f +13337,3023,25,3,f +13337,3023,72,3,f +13337,3023,19,2,f +13337,3023,70,1,f +13337,30236,71,1,f +13337,30285,14,4,f +13337,3037,0,1,f +13337,3038,4,1,f +13337,3039,70,1,f +13337,3039,4,4,f +13337,3039,0,2,f +13337,3039,71,2,f +13337,3039,14,3,f +13337,30391,0,4,f +13337,3040b,25,2,f +13337,3040b,2,2,f +13337,3040b,14,1,f +13337,3040b,4,10,f +13337,3040b,72,2,f +13337,3041,4,1,f +13337,3044b,4,1,f +13337,3062b,36,2,f +13337,3062b,46,1,f +13337,3460,25,1,f +13337,3622,14,6,f +13337,3622,2,2,f +13337,3622,15,4,f +13337,3623,72,2,f +13337,3623,25,1,f +13337,3660,14,2,f +13337,3660,70,1,f +13337,3660,71,1,f +13337,3665,14,1,f +13337,3665,72,2,f +13337,3665,70,4,f +13337,3665,25,2,f +13337,3666,4,2,f +13337,3710,70,1,f +13337,3710,25,1,f +13337,3710,72,1,f +13337,3710,19,1,f +13337,3747b,71,1,f +13337,3794a,4,1,f +13337,3795,71,1,f +13337,3823,47,1,f +13337,4175,72,1,f +13337,4202,71,1,f +13337,4589,0,3,f +13337,6249,71,1,f +13339,498,0,2,f +13340,30374,41,2,f +13340,32002,8,1,f +13340,32013,15,2,f +13340,32034,15,1,f +13340,32039,0,3,f +13340,32056,15,1,f +13340,32073,0,5,f +13340,32124,0,2,f +13340,32270,7,2,f +13340,32310pb01,15,1,f +13340,3713,1,1,f +13340,4519,0,4,f +13340,6538b,0,2,f +13340,6553,0,2,f +13340,6587,8,1,f +13340,6632,0,2,f +13340,6632,15,1,f +13342,3626bpr0837,14,1,f +13342,88001,308,1,f +13342,88646,0,1,f +13342,93160,15,1,f +13342,95326,484,1,f +13342,970c00pr0248,14,1,f +13342,973pr1834c01,14,1,f +13343,2412b,0,4,f +13343,2877,7,1,f +13343,3001,7,1,f +13343,3003,14,1,f +13343,3010,14,2,f +13343,30104,8,1,f +13343,30157,8,2,f +13343,30182,0,1,f +13343,3023,4,2,f +13343,30285,14,4,f +13343,3034,14,1,f +13343,3035,0,1,f +13343,30386,14,2,f +13343,30387,14,1,f +13343,30387p01,14,1,f +13343,30389a,14,2,f +13343,30391,0,4,f +13343,30394,14,1,f +13343,30395,8,1,f +13343,30396,4,1,f +13343,3040b,42,2,f +13343,32059,0,1,f +13343,32084,14,1,f +13343,3403,0,1,f +13343,3404,0,1,f +13343,3626bpx121,14,1,f +13343,3710,14,2,f +13343,3823,41,1,f +13343,3829c01,4,1,f +13343,3833,15,1,f +13343,3833,15,1,t +13343,3958,0,1,f +13343,970c00,1,1,f +13343,973px177c01,25,1,f +13344,3001,14,5,f +13344,3001,4,5,f +13344,3001,1,4,f +13344,3002,1,2,f +13344,3002,4,2,f +13344,3002,14,2,f +13344,3003,14,4,f +13344,3003,4,4,f +13344,3003,1,2,f +13344,3004,14,12,f +13344,3004,47,2,f +13344,3004,4,10,f +13344,3004,1,8,f +13344,3005,4,8,f +13344,3005,1,6,f +13344,3005,14,8,f +13344,3008,14,2,f +13344,3009,1,2,f +13344,3009,4,4,f +13344,3009,14,4,f +13344,3010,1,6,f +13344,3010,4,8,f +13344,3010,14,8,f +13344,3020,1,2,f +13344,3021,1,2,f +13344,3022,1,2,f +13344,3031,1,1,f +13344,3032,1,1,f +13344,3034,1,4,f +13344,3039,47,2,f +13344,3039,1,4,f +13344,3081cc01,4,2,f +13344,3137c01,0,2,f +13344,3297,1,4,f +13344,3298,1,4,f +13344,3299,1,2,f +13344,3300,1,2,f +13344,3460,1,4,f +13344,3461,15,1,f +13344,3462,1,1,f +13344,3480,7,1,f +13344,3481,1,1,f +13344,3622,14,6,f +13344,3622,4,6,f +13344,3622,1,2,f +13344,3626apr0001,14,1,f +13344,3633,4,4,f +13344,3641,0,4,f +13344,3660,1,4,f +13344,3710,1,2,f +13344,3741,2,2,f +13344,3742,4,3,f +13344,3742,15,1,t +13344,3742,15,3,f +13344,3742,4,1,t +13344,3823,47,1,f +13344,3853,15,4,f +13344,3854,4,8,f +13344,3856,2,4,f +13344,3861b,15,1,f +13344,3867,2,1,f +13344,3901,6,1,f +13344,970c00,0,1,f +13344,973c01,15,1,f +13345,122c01,7,3,f +13345,3020,7,3,f +13345,3023,7,2,f +13345,3024,36,2,f +13345,3024,34,2,f +13345,3031,7,1,f +13345,3034,7,1,f +13345,3034,15,1,f +13345,3040b,15,2,f +13345,3068b,7,4,f +13345,3298p90,15,1,f +13345,3324c01,7,1,f +13345,3622,15,2,f +13345,3626apr0001,14,1,f +13345,3639,7,1,f +13345,3640,7,1,f +13345,3665,15,2,f +13345,3829c01,15,1,f +13345,3829c01,7,1,f +13345,3838,4,1,f +13345,3842a,4,1,f +13345,3933a,15,1,f +13345,3934a,15,1,f +13345,3956,7,1,f +13345,3957a,7,2,f +13345,3957a,0,2,f +13345,3963,0,2,f +13345,3963,7,2,f +13345,4081a,15,4,f +13345,4081a,7,2,f +13345,4084,0,6,f +13345,4175,7,1,f +13345,970c00,4,1,f +13345,973p90c02,4,1,f +13346,11211,71,2,f +13346,12825,15,2,f +13346,14210,0,1,f +13346,2357,71,14,f +13346,2431,72,4,f +13346,2819,0,1,f +13346,3004,71,4,f +13346,3005,1,2,f +13346,3008,71,5,f +13346,3008,1,5,f +13346,3009,71,5,f +13346,3021,72,4,f +13346,30238,0,1,f +13346,3024,4,1,t +13346,3024,4,1,f +13346,3024,72,2,f +13346,3024,72,1,t +13346,3030,71,2,f +13346,3030,72,3,f +13346,3032,72,1,f +13346,3034,72,2,f +13346,3069b,72,4,f +13346,3069bpr0100,2,2,f +13346,32039,71,1,f +13346,3460,71,2,f +13346,3622,1,6,f +13346,3626bpr0389,14,1,f +13346,3660,1,2,f +13346,3666,72,1,f +13346,3700,1,1,f +13346,3705,0,1,f +13346,3794b,1,1,f +13346,3830,71,2,f +13346,3831,71,2,f +13346,3832,72,1,f +13346,40234,71,1,f +13346,4032a,4,1,f +13346,41334,0,1,f +13346,4162,1,1,f +13346,44375a,71,1,f +13346,4477,72,1,f +13346,4519,71,1,f +13346,4733,0,1,f +13346,49668,179,1,f +13346,54200,0,1,t +13346,54200,0,4,f +13346,58176,36,1,f +13346,59349,71,3,f +13346,59443,72,1,f +13346,6140,0,2,f +13346,6141,0,1,f +13346,6141,0,1,t +13346,64728,4,1,f +13346,85984,72,6,f +13346,90981,15,1,f +13346,92585,4,1,f +13346,92590,28,1,f +13346,970c00,0,1,f +13346,973pr2196c01,72,1,f +13351,3626apr0001,14,3,f +13351,3844,7,3,f +13351,3847a,7,3,f +13351,970x021,0,1,f +13351,970x021,7,1,f +13351,970x026,4,1,f +13351,973p47c01,4,1,f +13351,973px45c01,0,1,f +13351,973px47c01,4,1,f +13356,1,15,1,f +13356,10b,1,1,f +13356,2,15,2,f +13356,3,15,4,f +13356,3001a,4,12,f +13356,3002a,15,4,f +13356,3003,4,12,f +13356,3004,4,6,f +13356,3005,1,1,f +13356,3005,4,1,f +13356,3005,47,4,f +13356,3008,15,2,f +13356,3010,4,4,f +13356,3010,15,2,f +13356,3010p40,15,1,f +13356,3010p41,15,1,f +13356,3024,47,1,f +13356,3029,15,1,f +13356,3031,4,4,f +13356,3033,4,1,f +13356,3062a,47,5,f +13356,3068a,14,52,f +13356,3068a,1,3,f +13356,3068ap17,15,4,f +13356,3069a,14,6,f +13356,3070a,1,4,f +13356,3070a,4,6,f +13356,837,15,3,f +13356,838,4,2,f +13356,838,15,2,f +13356,839,15,1,f +13356,840c01,15,1,f +13356,841,15,1,f +13356,842,15,1,f +13356,843,15,1,f +13357,700ed,1,1,f +13357,700ed,4,1,f +13359,11198,27,1,f +13359,12592,0,1,f +13359,17250,14,1,f +13359,17318,15,1,f +13359,17478,4,1,f +13359,3011,10,1,f +13359,4066,10,2,f +13359,4066,191,2,f +13359,40666,1,1,f +13359,40666,72,1,f +13359,44524,72,1,f +13359,61649,1,1,f +13359,6414,4,1,f +13359,75115pr0023,1,1,f +13359,90265,15,1,f +13359,98223,4,2,f +13360,11100,72,2,f +13360,11477,72,2,f +13360,15573,72,1,f +13360,18868a,41,1,f +13360,19981pr0040,41,1,f +13360,3024,72,4,f +13360,3024,72,1,t +13360,3065,47,1,f +13360,3626cpr1774,27,1,f +13360,3941,41,1,f +13360,4081b,1,2,f +13360,4332,70,1,f +13360,4733,72,2,f +13360,48729b,0,1,f +13360,48729b,0,1,t +13360,50231,0,1,f +13360,54200,73,1,t +13360,54200,73,1,f +13360,6091,72,2,f +13360,61252,71,4,f +13360,6131,0,1,f +13360,6141,47,1,f +13360,6141,1,1,f +13360,6141,47,1,t +13360,6141,1,1,t +13360,64644,297,1,f +13360,85975,297,1,f +13360,85975,1,1,f +13360,970c00pr0928,0,1,f +13360,973pr3132c01,0,1,f +13360,98138,73,1,t +13360,98138,73,2,f +13362,3020,4,14,f +13362,3020,1,14,f +13362,3020,7,14,f +13362,3020,0,14,f +13362,3020,14,14,f +13362,3020,47,14,f +13362,3020,15,14,f +13362,3021,0,4,f +13362,3021,47,4,f +13362,3021,14,4,f +13362,3021,4,4,f +13362,3021,7,4,f +13362,3021,1,4,f +13362,3021,15,4,f +13362,3022,4,9,f +13362,3022,15,9,f +13362,3022,0,9,f +13362,3022,1,9,f +13362,3022,14,9,f +13362,3022,47,9,f +13362,3022,7,9,f +13362,3023a,47,7,f +13362,3023a,15,7,f +13362,3023a,14,7,f +13362,3023a,7,7,f +13362,3023a,4,7,f +13362,3023a,0,7,f +13362,3023a,1,7,f +13362,3024,4,5,f +13362,3024,7,5,f +13362,3024,0,5,f +13362,3024,14,5,f +13362,3024,15,5,f +13362,3024,1,5,f +13362,3024,47,5,f +13363,23306,71,1,f +13363,2340,15,1,f +13363,2362a,0,2,f +13363,2412b,72,16,f +13363,2412b,72,1,t +13363,2431,15,1,f +13363,2431,72,4,f +13363,2432,0,4,f +13363,2436,15,2,f +13363,2437,40,2,f +13363,2444,15,1,f +13363,2446,15,3,f +13363,2447,40,3,f +13363,2447,40,1,t +13363,2454a,72,1,f +13363,2454a,15,16,f +13363,2456,15,7,f +13363,2460,15,1,f +13363,2465,72,1,f +13363,2486,15,2,f +13363,2540,15,1,f +13363,2569,0,1,t +13363,2569,0,1,f +13363,2654,46,3,f +13363,2780,0,14,f +13363,2780,0,4,t +13363,3001,15,2,f +13363,3002,14,1,f +13363,3002,15,1,f +13363,3003,15,8,f +13363,3004,1,2,f +13363,3004,72,7,f +13363,3004,15,25,f +13363,30043,71,3,f +13363,30055,0,14,f +13363,3006,0,1,f +13363,3006,72,1,f +13363,3007,15,4,f +13363,3008,72,4,f +13363,3008,15,3,f +13363,3008,0,2,f +13363,30089,0,1,f +13363,3009,0,7,f +13363,3010,0,4,f +13363,3010,72,13,f +13363,3010,15,1,f +13363,30134,0,1,f +13363,30145,15,4,f +13363,30152pat0001,0,1,f +13363,30162,72,1,f +13363,30181,0,3,f +13363,30185c01,0,2,f +13363,3020,72,3,f +13363,3021,15,1,f +13363,3022,15,2,f +13363,3022,0,8,f +13363,3022,72,1,f +13363,3023,15,4,f +13363,3023,46,2,f +13363,3023,1,2,f +13363,3023,14,2,f +13363,30248,0,1,f +13363,3031,72,1,f +13363,3031,15,1,f +13363,3032,72,1,f +13363,30361,15,3,f +13363,30365,0,4,f +13363,3037,15,1,f +13363,3039pr0001,15,1,f +13363,3039pr0002,15,1,f +13363,30552,72,3,f +13363,30553,0,1,f +13363,30586,71,2,f +13363,30592,71,1,f +13363,30644,0,1,f +13363,3065,46,6,f +13363,3068b,72,1,f +13363,3068b,15,7,f +13363,3068b,14,2,f +13363,3069b,0,3,f +13363,3069b,15,3,f +13363,3069b,14,4,f +13363,3069b,33,1,f +13363,3069bp02,71,4,f +13363,32028,0,1,f +13363,3245b,15,6,f +13363,3245b,72,4,f +13363,32530,72,6,f +13363,32532,15,2,f +13363,3460,72,2,f +13363,3460,0,1,f +13363,3624,15,3,f +13363,3660,15,3,f +13363,3665,15,6,f +13363,3666,0,1,f +13363,3673,71,1,f +13363,3673,71,1,t +13363,3680c02,14,3,f +13363,3684,72,9,f +13363,3684,15,2,f +13363,3700,71,8,f +13363,3710,72,2,f +13363,3749,19,1,f +13363,3794b,71,3,f +13363,3795,15,1,f +13363,3795,72,1,f +13363,3829c01,1,1,f +13363,3894,15,4,f +13363,3899,14,1,f +13363,3900,15,2,f +13363,3957a,15,4,f +13363,3962b,72,3,f +13363,3962b,0,2,f +13363,3963,71,5,f +13363,4032a,0,1,f +13363,4070,15,4,f +13363,4079,14,4,f +13363,4085c,15,8,f +13363,41334,0,2,f +13363,4151b,72,1,f +13363,4162,14,2,f +13363,4162,15,2,f +13363,41770,15,1,f +13363,4202,0,6,f +13363,42022,15,2,f +13363,4209,15,1,f +13363,4215b,15,2,f +13363,4285b,72,1,f +13363,4286,15,2,f +13363,43337,15,2,f +13363,4349,4,2,f +13363,4360,0,3,f +13363,43713,15,2,f +13363,44301a,15,2,f +13363,44568,15,1,f +13363,44570,15,1,f +13363,4460b,15,12,f +13363,4460b,72,4,f +13363,45677,15,1,f +13363,4589,33,3,f +13363,4589,36,1,f +13363,4589,34,1,f +13363,4599b,71,1,f +13363,4599b,15,2,f +13363,4617b,0,1,f +13363,46212,40,2,f +13363,4697b,71,2,f +13363,4697b,71,1,t +13363,4740,71,1,f +13363,47973,72,1,f +13363,48183,72,1,f +13363,4858,15,1,f +13363,4861,15,1,f +13363,4862,40,2,f +13363,4865a,15,2,f +13363,4871,0,3,f +13363,4872,40,2,f +13363,48729b,72,2,f +13363,48812,70,2,f +13363,50745,72,4,f +13363,50859b,0,1,f +13363,50861,0,2,f +13363,50862,71,2,f +13363,50950,15,2,f +13363,51542,71,1,f +13363,51739,15,1,f +13363,52036,72,1,f +13363,52038,15,2,f +13363,52040,72,3,f +13363,54200,36,3,f +13363,54200,46,3,f +13363,54200,33,6,f +13363,57894,0,2,f +13363,57895,40,2,f +13363,58827,0,4,f +13363,59900,71,4,f +13363,60032,15,2,f +13363,6014b,15,4,f +13363,6015,0,4,f +13363,60596,0,2,f +13363,6081,15,2,f +13363,6106,0,4,f +13363,6112,0,2,f +13363,6140,0,4,f +13363,6141,36,7,f +13363,6141,46,2,t +13363,6141,33,10,f +13363,6141,33,2,t +13363,6141,47,1,f +13363,6141,36,3,t +13363,6141,34,2,t +13363,6141,46,3,f +13363,6141,34,2,f +13363,6141,15,8,f +13363,6141,15,1,t +13363,6157,0,2,f +13363,6180,0,1,f +13363,6212,72,2,f +13363,6232,15,2,f +13363,62462,15,1,f +13363,6583,0,5,f +13363,6587,72,1,f +13363,76041c02,0,2,f +13363,89536,15,1,f +13363,970c00,72,1,f +13363,970c00,0,3,f +13363,973pr1079c01,0,1,f +13363,973pr1080c01,0,1,f +13363,973pr1081c01,0,1,f +13363,973pr1083c01,15,2,f +13365,2780,0,5,f +13365,2907,71,1,f +13365,32062,0,1,f +13365,32174,72,7,f +13365,32270,71,1,f +13365,32482,320,1,f +13365,3706,0,1,f +13365,41669,42,2,f +13365,43093,1,3,f +13365,4519,71,4,f +13365,47296,72,2,f +13365,47299,179,2,f +13365,47306,320,1,f +13365,50899,179,1,f +13365,50899pr0002,179,1,f +13365,50900,72,1,f +13365,50901,72,1,f +13365,50903,14,1,f +13365,50919,179,2,f +13365,50920,320,2,f +13365,50921,320,1,f +13365,50922,320,1,f +13365,50923,72,1,f +13365,50925,320,1,f +13365,50926,179,1,f +13365,50931,320,1,f +13365,50934pat0001,320,2,f +13367,32062,0,6,f +13367,32173,8,2,f +13367,32174,1,10,f +13367,32174,57,1,f +13367,32270,7,1,f +13367,3737,0,1,f +13367,3749,19,4,f +13367,44135,8,1,f +13367,44136,8,1,f +13367,44138,1,2,f +13367,44139,8,1,f +13367,44140,1,1,f +13367,44147,179,1,f +13367,44148,8,2,f +13367,44247,8,1,f +13367,44807,1,1,f +13367,44817,179,2,f +13367,4519,7,3,f +13367,45749,8,2,f +13367,6538b,8,1,f +13367,kraataund,22,1,f +13368,4181,7,5,f +13368,4182,7,5,f +13368,4183,47,10,f +13369,10199,1,1,f +13369,12651,14,1,f +13369,15454pr0004,4,1,f +13369,16385,15,1,f +13369,21238,4,1,f +13369,21239,26,1,f +13369,21928,15,1,f +13369,23717,191,1,f +13369,24911,71,1,f +13369,25081,71,1,f +13369,3011,1,1,f +13369,31171,15,2,f +13369,3437,1,1,f +13369,4066,41,1,f +13369,40666,1,1,f +13369,51708,179,1,f +13369,76371,1,3,f +13369,76371,4,3,f +13369,89398,10,1,f +13369,92009,14,1,f +13369,92011,4,1,f +13369,92094,4,2,f +13372,2588,21,10,f +13372,3626bpr0895,15,10,f +13372,6260,15,10,f +13372,6265,15,20,f +13372,6266,15,20,f +13373,2456,4,1,f +13373,3001,14,1,f +13373,3001,4,2,f +13373,3002,1,2,f +13373,3003,0,1,f +13373,3003,4,4,f +13373,3003,1,2,f +13373,3003,14,2,f +13373,3003pe2,4,2,f +13373,4727,2,1,f +13373,4728,15,1,f +13373,4744,4,1,f +13373,4744px11,14,1,f +13373,4744px6,14,1,f +13373,6215,14,2,f +13373,6216,2,1,f +13374,10197,72,2,f +13374,10201,4,4,f +13374,10247,0,1,f +13374,10247,71,2,f +13374,10247,14,2,f +13374,11089,70,2,f +13374,11098,41,3,f +13374,11103,297,1,f +13374,11107,297,1,f +13374,11127,182,2,f +13374,11129pr0007,320,1,f +13374,11153,326,2,f +13374,11212,72,2,f +13374,11215,0,2,f +13374,11289,40,1,f +13374,11477,71,4,f +13374,11477,191,2,f +13374,11477,326,2,f +13374,11601,41,2,f +13374,12551pr0001,288,1,f +13374,12551pr0004,297,1,f +13374,13547,4,2,f +13374,13547,0,2,f +13374,13549,41,1,f +13374,13731,326,4,f +13374,14720,71,1,f +13374,14769pr1012,4,4,f +13374,15068,191,2,f +13374,15068,15,1,f +13374,15070,15,5,f +13374,15083pr0002,28,1,f +13374,15083pr0009,71,1,f +13374,15091,41,1,f +13374,15100,0,2,f +13374,15208,15,1,f +13374,15362,70,2,f +13374,15379,0,52,f +13374,15461,0,2,f +13374,15462,28,2,f +13374,15535,4,2,f +13374,15571,288,2,f +13374,15573,28,3,f +13374,15712,297,4,f +13374,15712,71,2,f +13374,16768pat0001,4,2,f +13374,16968,71,2,f +13374,18392pr0007,15,1,f +13374,18394pat0001,36,4,f +13374,18395,191,2,f +13374,18396pat0001,4,6,f +13374,18398pr0007,297,1,f +13374,18398pr0008,297,1,f +13374,18654,72,4,f +13374,2412b,320,2,f +13374,2412b,179,4,f +13374,2419,72,1,f +13374,2420,0,4,f +13374,2420,19,1,f +13374,2431,14,2,f +13374,2432,71,1,f +13374,2445,0,2,f +13374,2450,71,2,f +13374,2654,72,2,f +13374,2736,71,2,f +13374,2780,0,34,f +13374,2877,0,1,f +13374,2877,14,3,f +13374,3001,0,1,f +13374,3003,4,2,f +13374,3004,2,2,f +13374,3005,71,2,f +13374,3020,326,3,f +13374,3020,71,12,f +13374,3021,72,4,f +13374,3021,19,3,f +13374,3022,320,2,f +13374,3022,72,4,f +13374,3023,320,23,f +13374,3023,326,4,f +13374,3023,47,2,f +13374,3023,308,2,f +13374,3030,72,1,f +13374,3031,15,1,f +13374,3032,71,1,f +13374,3034,72,3,f +13374,3037,71,2,f +13374,30374,297,1,f +13374,30377,0,4,f +13374,30383,72,2,f +13374,3039,320,1,f +13374,3039pr0015,0,1,f +13374,30503,320,4,f +13374,30503,326,2,f +13374,30553,0,2,f +13374,3062b,41,1,f +13374,3068b,191,2,f +13374,3068b,72,1,f +13374,3069b,14,1,f +13374,3069b,71,1,f +13374,32000,72,4,f +13374,32002,19,2,f +13374,32009,326,8,f +13374,32012,72,2,f +13374,32034,71,2,f +13374,32039,0,2,f +13374,32039,4,6,f +13374,32054,4,6,f +13374,32056,71,4,f +13374,32062,4,14,f +13374,32073,71,2,f +13374,32123b,71,8,f +13374,32140,0,1,f +13374,32184,71,2,f +13374,32270,0,1,f +13374,32348,0,4,f +13374,32348,4,3,f +13374,32449,72,12,f +13374,32523,71,4,f +13374,32524,0,2,f +13374,32525,72,2,f +13374,32526,72,4,f +13374,32531,71,1,f +13374,32555,0,4,f +13374,3300,4,1,f +13374,3460,0,1,f +13374,3622,72,2,f +13374,3623,71,4,f +13374,3626cpr1121,19,1,f +13374,3626cpr1139,288,1,f +13374,3626cpr1141,288,1,f +13374,3626cpr1423,28,1,f +13374,3626cpr1588,72,1,f +13374,3626cpr1600,15,1,f +13374,3648b,72,1,f +13374,3660,14,5,f +13374,3666,72,4,f +13374,3700,71,7,f +13374,3701,4,3,f +13374,3702,71,4,f +13374,3703,0,4,f +13374,3705,0,3,f +13374,3707,0,1,f +13374,3709,4,2,f +13374,3710,19,3,f +13374,3713,4,11,f +13374,3713,71,4,f +13374,3737,0,1,f +13374,3743,0,1,f +13374,3749,19,5,f +13374,3794b,71,2,f +13374,3795,72,1,f +13374,3795,71,2,f +13374,3832,72,1,f +13374,3839b,72,1,f +13374,3894,72,2,f +13374,3894,1,1,f +13374,4032a,72,5,f +13374,4032a,4,3,f +13374,40490,72,2,f +13374,4081b,0,2,f +13374,4081b,19,2,f +13374,4162,72,2,f +13374,41854,326,1,f +13374,42060,326,1,f +13374,42061,326,1,f +13374,4274,1,26,f +13374,4287,71,4,f +13374,43093,1,10,f +13374,43710,326,1,f +13374,43711,326,1,f +13374,43722,191,1,f +13374,43723,191,1,f +13374,44294,71,1,f +13374,44567a,72,1,f +13374,44728,71,8,f +13374,4477,72,2,f +13374,4519,71,17,f +13374,45677,326,2,f +13374,4599b,15,1,f +13374,46667,72,2,f +13374,4733,15,1,f +13374,47457,326,1,f +13374,47753,191,1,f +13374,48336,71,1,f +13374,50231,320,1,f +13374,50943,179,1,f +13374,51739,320,1,f +13374,51739,28,2,f +13374,53451,15,16,f +13374,54200,326,8,f +13374,54200,320,2,f +13374,54200,191,4,f +13374,55615,71,2,f +13374,56145,0,2,f +13374,57585,71,2,f +13374,59443,0,8,f +13374,59443,72,4,f +13374,59900,182,4,f +13374,60208,320,2,f +13374,60470b,14,1,f +13374,60471,71,1,f +13374,60479,71,2,f +13374,60483,72,4,f +13374,60484,72,4,f +13374,60897,72,16,f +13374,6091,72,2,f +13374,61184,71,4,f +13374,6134,71,1,f +13374,61409,191,4,f +13374,61409,72,2,f +13374,6141,179,7,f +13374,61481,0,2,f +13374,62743,72,6,f +13374,63965,71,1,f +13374,64276,0,1,f +13374,64567,15,1,f +13374,64644,0,1,f +13374,64644,297,1,f +13374,64647,182,1,f +13374,64867,326,1,f +13374,6553,72,6,f +13374,6558,1,18,f +13374,6589,19,4,f +13374,6628,0,4,f +13374,6629,72,2,f +13374,6636,4,2,f +13374,6636,326,2,f +13374,75937,179,2,f +13374,76766,71,1,f +13374,85544,4,2,f +13374,85984,326,3,f +13374,85984,71,4,f +13374,85984,191,2,f +13374,87079,1,3,f +13374,87083,72,10,f +13374,87407,71,2,f +13374,87408,0,2,f +13374,87580,71,1,f +13374,87747,15,2,f +13374,88072,72,2,f +13374,92280,4,2,f +13374,92582,71,1,f +13374,92593,71,2,f +13374,92593,326,8,f +13374,92690,71,1,f +13374,92947,0,1,f +13374,93273,326,5,f +13374,93273,320,4,f +13374,94925,71,2,f +13374,96874,25,1,t +13374,970c00pr0664,4,2,f +13374,970c00pr0665,4,1,f +13374,970c00pr0787,71,1,f +13374,970c00pr0800,15,1,f +13374,970d00pr0665,28,1,f +13374,973pr2668c01,4,2,f +13374,973pr2669c01,4,1,f +13374,973pr2672c01,28,1,f +13374,973pr2876c01,15,1,f +13374,973pr2883c01,71,1,f +13374,98138,41,4,f +13374,98138,1,2,f +13374,98283,71,2,f +13374,98597,148,4,f +13374,99206,71,1,f +13374,99207,0,6,f +13374,99780,72,1,f +13374,99781,71,3,f +13377,2301,4,2,f +13377,2302,14,2,f +13377,2312a,4,1,f +13377,3011,2,4,f +13377,3011,4,3,f +13377,3011,1,3,f +13377,3011,73,2,f +13377,3011,15,1,f +13377,3011,25,2,f +13377,3011,14,3,f +13377,3437,27,3,f +13377,3437,14,9,f +13377,3437,4,9,f +13377,3437,0,2,f +13377,3437,1,9,f +13377,3437,2,9,f +13377,3437,15,2,f +13377,3437,41,3,f +13377,3437,73,6,f +13377,3437,25,6,f +13377,3437pe1,14,2,f +13377,4066,4,2,f +13377,4066,14,2,f +13377,40666,4,2,f +13377,40666,15,2,f +13377,40666,73,2,f +13377,40666,14,4,f +13377,47394pb115,9999,1,f +13377,6474,14,2,f +13378,3004pt1,14,1,f +13378,3004px2,14,2,f +13378,3022,2,1,f +13378,3035,0,1,f +13378,30488,7,1,f +13378,30488c01,15,1,f +13378,30492,2,1,f +13378,30493,0,1,f +13378,30501,2,1,f +13378,30502,47,1,f +13378,3626bpr0001,14,2,f +13378,3901,19,1,f +13378,3901,0,1,f +13378,4033,15,3,f +13378,72824p01,15,2,f +13378,970c00,1,1,f +13378,970c00,15,1,f +13378,973pb0124c01,15,1,f +13378,973pb0366c01,2,1,f +13382,11203,15,1,f +13382,11211,71,4,f +13382,11458,72,1,f +13382,15392,72,1,f +13382,15403,15,1,f +13382,15462,28,1,f +13382,15573,0,3,f +13382,15573,320,4,f +13382,18649,71,4,f +13382,18677,71,1,f +13382,18787,322,1,f +13382,18787,297,2,f +13382,18789,322,1,f +13382,19723,322,1,f +13382,19729pr0001,308,1,f +13382,19729pr0009,29,1,f +13382,19729pr0010,14,1,f +13382,19729pr0012,25,1,f +13382,19730,322,2,f +13382,2357,71,1,f +13382,2357,0,10,f +13382,2420,14,1,f +13382,2431,320,5,f +13382,2431,0,1,f +13382,2431,15,2,f +13382,2445,320,5,f +13382,2456,320,5,f +13382,2456,71,3,f +13382,3001,320,15,f +13382,3001,19,1,f +13382,3001,71,14,f +13382,3003,320,76,f +13382,3003,71,7,f +13382,3003,19,2,f +13382,3003,25,8,f +13382,3004,71,3,f +13382,3004,308,10,f +13382,3004,320,16,f +13382,3004,15,1,f +13382,3004,25,3,f +13382,3005,320,20,f +13382,3005,182,3,f +13382,3005,25,3,f +13382,3007,320,7,f +13382,3007,0,2,f +13382,3009,320,10,f +13382,3022,326,4,f +13382,3022,15,3,f +13382,3022,320,3,f +13382,3022,71,2,f +13382,3023,0,3,f +13382,3023,46,6,f +13382,3023,15,3,f +13382,3023,182,3,f +13382,3023,71,2,f +13382,3023,320,2,f +13382,3024,46,10,f +13382,3024,320,16,f +13382,3024,28,4,f +13382,3024,15,4,f +13382,3024,0,6,f +13382,3024,4,6,f +13382,3024,182,5,f +13382,3024,40,1,f +13382,3031,15,1,f +13382,3033,25,2,f +13382,3034,19,1,f +13382,3036,320,3,f +13382,3039,25,4,f +13382,30414,15,2,f +13382,3068b,71,3,f +13382,3068b,15,1,f +13382,3068b,0,4,f +13382,3069b,320,1,f +13382,3069b,15,5,f +13382,3070b,320,4,f +13382,32000,71,1,f +13382,32028,14,1,f +13382,32140,72,1,f +13382,32474,4,2,f +13382,3460,0,1,f +13382,3710,71,6,f +13382,3710,320,8,f +13382,3710,15,4,f +13382,3794b,71,2,f +13382,3795,71,1,f +13382,3830,320,1,f +13382,3830,71,1,f +13382,3831,320,1,f +13382,3831,71,1,f +13382,3958,25,1,f +13382,4032a,15,1,f +13382,41539,71,1,f +13382,4216,320,7,f +13382,43093,1,2,f +13382,44728,71,1,f +13382,45590,0,1,f +13382,4733,0,2,f +13382,4738a,84,1,f +13382,4739a,84,1,f +13382,52107,0,4,f +13382,54200,15,4,f +13382,54200,182,6,f +13382,59349,52,1,f +13382,59900,4,1,f +13382,59900,182,6,f +13382,60849,14,8,f +13382,6141,1000,8,f +13382,6141,71,4,f +13382,6141,15,12,f +13382,6141,47,2,f +13382,6141,36,2,f +13382,6141,85,9,f +13382,6141,4,1,f +13382,6141,322,2,f +13382,63868,15,8,f +13382,64644,308,2,f +13382,6541,71,1,f +13382,85861,0,4,f +13382,85984,0,3,f +13382,87079,15,6,f +13382,87079pr0068,15,1,f +13382,87079pr0078,15,1,f +13382,87079pr0079,15,1,f +13382,87087,15,6,f +13382,87580,320,15,f +13382,87580,71,2,f +13382,92438,71,1,f +13382,92438,308,1,f +13382,96874,25,1,t +13382,970c00,70,1,f +13382,970c00,85,1,f +13382,970c00pr0851,29,1,f +13382,973pr2819c01,321,1,f +13382,973pr3008c01,29,1,f +13382,973pr3096c01,378,1,f +13382,98283,320,10,f +13382,99206,71,2,f +13382,99207,4,1,f +13385,12825,70,2,f +13385,3021,70,1,f +13385,3022,70,1,f +13385,3024,15,1,f +13385,3024,15,1,t +13385,30374,0,2,f +13385,3176,0,1,f +13385,3794b,4,1,f +13385,3794b,70,1,f +13385,4081b,72,2,f +13385,59900,70,4,f +13385,92590,28,1,f +13385,92738,0,1,f +13385,99781,0,1,f +13386,11291,4,1,f +13386,14520,72,2,f +13386,15207,4,2,f +13386,2412b,71,1,f +13386,2417,10,1,f +13386,2431,33,1,f +13386,3004,71,2,f +13386,3010,4,1,f +13386,3020,15,2,f +13386,3021,15,2,f +13386,3022,14,1,f +13386,3024,4,2,f +13386,3024,4,1,t +13386,3062b,14,1,f +13386,3069b,1,1,f +13386,3069b,15,1,f +13386,3626cpr0893,14,1,f +13386,3626cpr1087,14,1,f +13386,3710,72,1,f +13386,3710,15,3,f +13386,3710,4,4,f +13386,3829c01,14,1,f +13386,3834,82,1,f +13386,3962b,0,1,f +13386,43888,70,1,f +13386,44301a,72,2,f +13386,4599b,14,1,f +13386,4599b,14,1,t +13386,4865a,1,3,f +13386,50745,72,4,f +13386,50950,4,2,f +13386,52036,72,1,f +13386,52501,4,2,f +13386,54200,46,2,f +13386,54200,46,1,t +13386,57783,41,2,f +13386,6014b,15,4,f +13386,6157,71,2,f +13386,6251,15,1,f +13386,64648,179,1,f +13386,85974,226,1,f +13386,85984,72,3,f +13386,87580,72,1,f +13386,87697,0,4,f +13386,93273,72,1,f +13386,970c00,15,1,f +13386,970c00pr0408,0,1,f +13386,973pr1918c01,73,1,f +13386,973pr2189c01,0,1,f +13386,98138,36,2,f +13386,98138,36,1,t +13386,98281,4,1,f +13387,12825,71,1,f +13387,298c02,1,1,f +13387,298c02,1,1,t +13387,3023,4,2,f +13387,3023,14,1,f +13387,3710,4,1,f +13387,4081b,71,2,f +13387,48336,4,1,f +13387,54200,40,1,t +13387,54200,40,1,f +13387,60478,15,1,f +13387,6141,0,1,t +13387,6141,33,2,f +13387,6141,33,1,t +13387,6141,0,4,f +13388,13787pr0002,14,2,f +13388,15533,84,2,f +13388,15571,288,1,f +13388,2453b,70,3,f +13388,298c02,1,1,f +13388,3004,15,2,f +13388,3010,19,2,f +13388,3010,70,1,f +13388,3020,484,2,f +13388,3020,15,1,f +13388,3022,4,1,f +13388,3023,0,2,f +13388,3023,15,1,f +13388,3023,27,1,f +13388,3024,0,1,f +13388,3036,15,1,f +13388,3036,92,1,f +13388,3040b,19,4,f +13388,3062b,0,2,f +13388,3062b,46,1,f +13388,3062b,1,2,f +13388,3062b,14,1,f +13388,3070b,2,1,f +13388,32028,71,2,f +13388,3623,2,1,f +13388,3626cpr0498,14,1,f +13388,3626cpr1234,14,1,f +13388,3660,19,1,f +13388,3665,70,2,f +13388,3665,15,4,f +13388,3666,70,1,f +13388,3700,19,1,f +13388,3710,70,2,f +13388,3794a,14,2,f +13388,3794b,27,1,f +13388,3795,70,2,f +13388,4085c,4,6,f +13388,41879a,71,1,f +13388,41879a,28,1,f +13388,4274,71,1,f +13388,44728,72,1,f +13388,4595,0,2,f +13388,4599b,0,1,f +13388,4740,0,1,f +13388,47905,4,1,f +13388,4865a,71,1,f +13388,54200,0,1,f +13388,54200,40,1,f +13388,604547,0,1,f +13388,604548,0,1,f +13388,604549,0,1,f +13388,604550,0,1,f +13388,604551,0,1,f +13388,604552,0,1,f +13388,604553,0,1,f +13388,604614,0,1,f +13388,604615,0,1,f +13388,60478,14,2,f +13388,60594,288,1,f +13388,60607,297,2,f +13388,6141,14,1,f +13388,6141,47,1,f +13388,6141,15,2,f +13388,6141,297,3,f +13388,6141,179,10,f +13388,61780,70,1,f +13388,64644,297,2,f +13388,87580,4,1,f +13388,92280,71,2,f +13388,93552pr0001,70,1,f +13388,973pr0250c01,320,1,f +13388,973pr1800c01,73,1,f +13390,6216b,7,1,f +13391,10201,15,1,f +13391,11208,71,4,f +13391,11209,0,4,f +13391,11816pr0006,78,1,f +13391,14719,15,2,f +13391,14769,15,1,f +13391,15533,84,1,f +13391,18854,52,1,t +13391,18854,52,1,f +13391,18892,0,2,f +13391,2412b,72,1,f +13391,2444,15,1,f +13391,2445,15,1,f +13391,2460,15,1,f +13391,3003,15,2,f +13391,3004,73,1,f +13391,3004,15,2,f +13391,3004,26,4,f +13391,3005,73,1,f +13391,3005,0,1,f +13391,3010,73,2,f +13391,3020,15,4,f +13391,3020,71,1,f +13391,3020,1,1,f +13391,3022,73,1,f +13391,3022,27,4,f +13391,3023,27,1,f +13391,3023,46,2,f +13391,3023,14,2,f +13391,3023,26,2,f +13391,3023,0,5,f +13391,3023,73,6,f +13391,3023,41,1,f +13391,3031,71,1,f +13391,3034,71,1,f +13391,3039,15,1,f +13391,3062b,41,1,f +13391,3062b,4,1,f +13391,3065,47,1,f +13391,3068b,29,2,f +13391,3069b,29,2,f +13391,32028,71,1,f +13391,3298,26,1,f +13391,33291,5,6,f +13391,33291,5,1,t +13391,3665,73,4,f +13391,3666,15,1,f +13391,3710,26,3,f +13391,3710,71,6,f +13391,3795,30,3,f +13391,3795,73,2,f +13391,3829c01,15,1,f +13391,3938,0,2,f +13391,4081b,15,4,f +13391,4523,27,1,f +13391,4536,15,1,f +13391,4599b,71,1,t +13391,4599b,14,1,t +13391,4599b,71,1,f +13391,4599b,14,2,f +13391,50745,15,4,f +13391,50950,30,2,f +13391,54200,15,2,f +13391,54200,15,1,t +13391,604547,179,1,f +13391,604548,179,1,f +13391,604549,179,1,f +13391,604550,179,1,f +13391,604551,179,1,f +13391,604552,179,1,f +13391,604553,179,1,f +13391,604614,179,1,f +13391,604615,179,1,f +13391,60476,15,2,f +13391,60478,15,2,f +13391,6091,73,2,f +13391,61252,14,1,f +13391,6141,41,1,t +13391,6141,14,2,f +13391,6141,27,3,f +13391,6141,36,1,t +13391,6141,15,4,f +13391,6141,14,1,t +13391,6141,36,2,f +13391,6141,27,1,t +13391,6141,15,1,t +13391,6141,41,5,f +13391,62360,47,1,f +13391,6254,15,1,f +13391,64647,15,1,t +13391,64647,15,1,f +13391,73590c03b,14,1,f +13391,85984,27,3,f +13391,87079,15,1,f +13391,87087,73,1,f +13391,87087,15,2,f +13391,87087,0,1,f +13391,87580,26,1,f +13391,88930,26,1,f +13391,91501,322,1,f +13391,92257,320,1,f +13391,92410,27,1,f +13391,92456pr0001c01,78,1,f +13391,92819pr0002a,27,1,f +13391,93090pr0003,212,1,f +13391,93095,29,2,f +13391,93273,73,4,f +13391,93273,27,1,f +13391,93604,15,1,f +13391,95343,4,1,f +13391,95344,297,1,f +13391,95344,297,1,t +13391,98138,47,1,t +13391,98138,179,5,f +13391,98138,47,2,f +13391,98138,46,1,t +13391,98138,179,1,t +13391,98138,46,2,f +13391,98835,73,1,f +13391,99781,71,1,f +13392,2343,47,3,f +13392,2456,14,2,f +13392,2518,2,4,f +13392,2536,6,7,f +13392,2546p01,4,1,f +13392,2563,6,1,f +13392,2566,6,1,f +13392,2577,15,2,f +13392,3003,15,1,f +13392,3003,14,1,f +13392,3003,5,3,f +13392,3004,13,4,f +13392,3004,5,5,f +13392,3006,1,1,f +13392,3009,1,3,f +13392,3010,14,3,f +13392,3010,15,3,f +13392,3020,15,1,f +13392,3031,14,1,f +13392,3034,15,1,f +13392,3069bpr0099,15,2,f +13392,3307,1,6,f +13392,3622,1,2,f +13392,3626b,47,1,f +13392,3679,7,1,f +13392,3680,15,1,f +13392,3741,2,3,f +13392,3742,5,9,f +13392,3742,5,3,t +13392,3830,20,2,f +13392,3830,5,4,f +13392,3831,5,4,f +13392,3831,20,2,f +13392,3852b,74,1,f +13392,3855,47,2,f +13392,3899,5,3,f +13392,3940b,1,1,f +13392,3940b,14,1,f +13392,3941,14,3,f +13392,3941,15,2,f +13392,3942b,15,1,f +13392,3943b,13,1,f +13392,4032a,2,1,f +13392,4033,13,1,f +13392,4033,15,1,f +13392,4161pb01,74,2,f +13392,4202,20,2,f +13392,4325,14,1,f +13392,4342,18,1,f +13392,4345bp03,14,1,f +13392,4346,14,1,f +13392,45,383,4,f +13392,4528,0,1,f +13392,4529,0,1,f +13392,45896px1,15,1,f +13392,4599a,74,1,f +13392,4908,1,1,f +13392,6064,2,1,f +13392,6111,5,3,f +13392,6112,15,7,f +13392,6112,18,4,f +13392,6161,20,2,f +13392,6161,18,1,f +13392,6162,74,1,f +13392,6162,20,4,f +13392,6162,18,1,f +13392,6165,5,3,f +13392,6166,5,2,f +13392,6169,18,1,f +13392,6175,8,1,f +13392,6176,5,1,f +13392,6177,14,1,f +13392,6177,15,1,f +13392,6178,1,1,f +13392,6178,13,1,f +13392,6179,14,3,f +13392,6179,13,2,f +13392,6179,1,1,f +13392,6180,1,2,f +13392,6181,1,1,f +13392,6182,14,6,f +13392,6182,15,4,f +13392,6182,13,1,f +13392,6183,13,2,f +13392,6184,5,1,f +13392,6184,18,1,f +13392,6186,14,1,f +13392,6187,15,2,f +13392,6190,74,2,f +13392,6191,15,3,f +13392,6191,14,3,f +13392,6191,1,1,f +13392,6192,1,7,f +13392,6195,13,1,f +13392,6196,74,2,f +13392,6197b,13,3,f +13392,6198,74,2,f +13392,6201,0,1,f +13392,6203,5,1,f +13392,6205,15,2,f +13392,6206,15,1,f +13392,6206,5,1,f +13392,70973c01,383,1,f +13392,75347,18,6,f +13392,bel002,18,1,f +13392,bel002,13,1,f +13392,belvbaby5,-1,1,f +13392,belvfem20,-1,1,f +13392,belvfem23,-1,1,f +13392,belvmale5,-1,1,f +13392,pouch03,17,1,f +13392,pouch05,17,2,f +13393,10202,71,2,f +13393,10247,15,1,f +13393,11211,71,1,f +13393,11211,4,2,f +13393,11213,71,1,f +13393,11215,71,1,f +13393,11289,41,1,f +13393,11291,4,1,f +13393,11476,71,2,f +13393,11477,4,4,f +13393,11477,72,2,f +13393,13349,72,1,f +13393,14417,72,2,f +13393,14520,4,2,f +13393,14704,71,1,f +13393,14716,4,5,f +13393,15068,15,2,f +13393,15068,71,8,f +13393,15068pr0006,4,1,f +13393,15210pr01,0,1,f +13393,15392,72,2,f +13393,15573,1,2,f +13393,15573,4,2,f +13393,15706,72,4,f +13393,18654,72,2,f +13393,18654,72,2,t +13393,19220,0,1,f +13393,22885,4,2,f +13393,23421,14,1,f +13393,23421,14,1,t +13393,23422,72,1,f +13393,2357,4,2,f +13393,2357,72,1,f +13393,23922,14,2,f +13393,23924,0,1,f +13393,2412b,0,2,f +13393,2412b,71,5,f +13393,2412b,14,2,f +13393,2431,33,1,f +13393,2431,4,5,f +13393,2431,14,1,f +13393,2431,71,7,f +13393,2432,72,1,f +13393,2432,1,2,f +13393,2437,41,1,f +13393,2445,71,2,f +13393,2446,15,1,f +13393,2447,40,4,f +13393,2447,40,4,t +13393,2454b,4,13,f +13393,2454b,71,2,f +13393,2465,4,5,f +13393,2465,0,2,f +13393,2479,0,1,f +13393,2486,14,2,f +13393,2508,0,1,f +13393,2569,0,1,f +13393,2569,0,1,t +13393,2654,0,2,f +13393,2780,0,1,t +13393,2780,0,17,f +13393,2926,0,1,f +13393,298c02,1,2,f +13393,298c02,1,1,t +13393,3001,4,1,f +13393,3001,15,5,f +13393,3001,72,1,f +13393,3002,15,3,f +13393,3003,28,1,f +13393,3003,72,2,f +13393,3003,15,3,f +13393,3003,4,6,f +13393,3004,1,1,f +13393,3004,4,25,f +13393,3004,71,2,f +13393,3004,14,1,f +13393,3005,4,7,f +13393,3006,4,1,f +13393,3009,4,7,f +13393,3010,19,1,f +13393,3010,4,19,f +13393,3010,15,7,f +13393,3010,72,1,f +13393,30145,4,16,f +13393,30145,15,6,f +13393,30194,72,1,f +13393,3020,1,2,f +13393,3020,4,1,f +13393,3020,15,2,f +13393,3021,15,2,f +13393,3022,4,1,f +13393,3022,27,4,f +13393,3023,36,1,f +13393,3023,72,2,f +13393,3023,70,2,f +13393,3023,182,1,f +13393,3023,14,11,f +13393,3023,1,2,f +13393,30236,15,2,f +13393,30237b,4,2,f +13393,3024,72,2,f +13393,3024,71,2,f +13393,3024,71,1,t +13393,3024,72,1,t +13393,30248,72,1,f +13393,3028,71,5,f +13393,3030,71,1,f +13393,3031,27,1,f +13393,3032,4,1,f +13393,3034,28,2,f +13393,3034,19,1,f +13393,3035,72,1,f +13393,30350b,72,1,f +13393,3036,72,1,f +13393,3036,71,6,f +13393,30365,4,4,f +13393,30367c,14,2,f +13393,3039,4,4,f +13393,3039pr0005,15,1,f +13393,3040bpr0003,71,1,f +13393,30414,1,1,f +13393,30414,15,1,f +13393,30552,72,2,f +13393,30554a,0,4,f +13393,30592,72,1,f +13393,3062b,4,1,f +13393,3062b,14,12,f +13393,3065,47,1,f +13393,3068b,4,2,f +13393,3068b,72,1,f +13393,3068b,71,5,f +13393,3068b,15,4,f +13393,3068b,2,1,f +13393,3068b,14,1,f +13393,3068b,1,2,f +13393,3069b,4,2,f +13393,3069b,15,2,f +13393,3069b,46,3,f +13393,3069b,33,3,f +13393,3069b,14,2,f +13393,3069b,71,17,f +13393,3069b,36,2,f +13393,3069b,72,1,f +13393,3069bpr0030,15,1,f +13393,3070b,14,1,t +13393,3070b,14,2,f +13393,3070b,71,1,t +13393,3070b,71,2,f +13393,3176,15,2,f +13393,32002,19,2,t +13393,32002,19,2,f +13393,32013,14,2,f +13393,32014,14,2,f +13393,32028,71,26,f +13393,32028,15,3,f +13393,32062,0,2,f +13393,32064a,14,3,f +13393,32073,71,1,f +13393,32184,71,1,f +13393,32278,0,2,f +13393,3245c,4,2,f +13393,33057,484,1,f +13393,33078,4,2,f +13393,3460,15,1,f +13393,3460,14,2,f +13393,3460,0,2,f +13393,3623,15,2,f +13393,3626cpr0891,14,1,f +13393,3626cpr0920,14,1,f +13393,3626cpr1087,14,1,f +13393,3626cpr1580,14,1,f +13393,3626cpr1664,14,1,f +13393,3626cpr1826,14,1,f +13393,3666,72,3,f +13393,3666,15,3,f +13393,3666,4,2,f +13393,3673,71,1,f +13393,3673,71,1,t +13393,3679,71,3,f +13393,3680,0,3,f +13393,3700,15,1,f +13393,3701,4,16,f +13393,3705,0,1,f +13393,3710,15,6,f +13393,3710,4,3,f +13393,3795,4,4,f +13393,3821,4,2,f +13393,3822,4,2,f +13393,3829c01,1,2,f +13393,3832,71,2,f +13393,3834,15,3,f +13393,3834,297,1,f +13393,3835,0,1,f +13393,3838,14,3,f +13393,3839b,71,1,f +13393,3899,14,2,f +13393,3941,14,2,f +13393,3957b,71,2,t +13393,3957b,71,2,f +13393,3963,71,2,f +13393,4070,72,2,f +13393,4079b,14,2,f +13393,4083,14,1,f +13393,4094b,27,1,f +13393,41532,0,1,f +13393,4162,71,2,f +13393,4162,14,2,f +13393,4175,72,2,f +13393,4176,41,1,f +13393,41770,15,1,f +13393,42003,4,2,f +13393,4208,0,1,f +13393,4209,4,1,f +13393,4216,71,4,f +13393,4217,71,6,f +13393,4218,41,20,f +13393,4219,15,2,f +13393,4274,1,1,t +13393,4274,1,1,f +13393,4282,71,4,f +13393,4345b,4,1,f +13393,4346,71,1,f +13393,43898,15,1,f +13393,44301a,4,2,f +13393,44301a,15,4,f +13393,44375b,15,1,f +13393,44567a,72,2,f +13393,4477,71,2,f +13393,44809,4,1,f +13393,4488,0,6,f +13393,4519,14,2,f +13393,4533,71,3,f +13393,4599b,14,2,t +13393,4599b,4,1,f +13393,4599b,4,1,t +13393,4599b,14,2,f +13393,4624,71,2,f +13393,4740,15,1,f +13393,47457,27,1,f +13393,47457,71,1,f +13393,4865b,15,1,f +13393,4865b,1,3,f +13393,48729b,72,1,t +13393,48729b,72,2,f +13393,50373,4,1,f +13393,50745,15,10,f +13393,51858,71,1,f +13393,52031,4,1,f +13393,52036,72,1,f +13393,52501,4,2,f +13393,54200,33,2,f +13393,54200,36,1,t +13393,54200,47,2,t +13393,54200,33,1,t +13393,54200,36,2,f +13393,54200,47,4,f +13393,54200,14,1,t +13393,54200,14,1,f +13393,57779,15,2,f +13393,57783,41,1,f +13393,57895,41,5,f +13393,59349,4,2,f +13393,59895,0,2,f +13393,59895,0,1,t +13393,59900,33,3,f +13393,6014b,71,10,f +13393,60471,15,4,f +13393,60478,0,2,f +13393,60581,15,2,f +13393,60594,4,1,f +13393,60596,4,8,f +13393,60599,15,8,f +13393,60616b,41,1,f +13393,60897,72,4,f +13393,60897,15,2,f +13393,6091,4,2,f +13393,61072,179,1,f +13393,6111,4,4,f +13393,6126b,182,2,f +13393,61409,72,2,f +13393,6141,72,3,f +13393,6141,41,10,f +13393,6141,41,2,t +13393,6141,46,1,t +13393,6141,46,1,f +13393,6141,72,2,t +13393,61485,0,1,f +13393,6157,71,2,f +13393,6158,72,3,f +13393,6177,71,1,f +13393,6179,4,2,f +13393,6231,4,2,f +13393,6231,71,2,f +13393,6239,4,1,f +13393,62462,14,1,f +13393,63864,72,1,f +13393,63864,4,6,f +13393,63868,72,2,f +13393,64453,4,1,f +13393,64567,0,1,t +13393,64567,0,1,f +13393,6558,1,2,f +13393,6636,71,2,f +13393,6636,72,1,f +13393,6636,14,1,f +13393,6636,4,10,f +13393,72454,72,2,f +13393,85861,182,1,t +13393,85861,182,2,f +13393,85941,41,4,f +13393,85984,0,4,f +13393,85984,4,2,f +13393,86035,27,1,f +13393,87079,15,2,f +13393,87079,71,9,f +13393,87081,15,1,f +13393,87552,4,2,f +13393,87552,1,2,f +13393,87609,72,1,f +13393,87609,4,3,f +13393,87617,4,2,f +13393,87618,71,2,f +13393,87697,0,10,f +13393,88393,71,6,f +13393,88646,71,1,f +13393,89523,72,1,f +13393,90194,4,1,f +13393,91405,72,3,f +13393,91988,71,1,f +13393,92280,0,2,f +13393,92410,4,3,f +13393,92438,72,1,f +13393,92586pr0003,15,1,f +13393,92842,0,1,f +13393,93273,4,2,f +13393,93273,72,2,f +13393,96874,25,1,t +13393,970c00,0,1,f +13393,970c00,71,1,f +13393,970c00pr0408,0,3,f +13393,970c00pr0983,0,1,f +13393,973pr2188c01,0,2,f +13393,973pr2249c01,15,1,f +13393,973pr3205c01,0,2,f +13393,973pr3490c01,15,1,f +13393,98138,33,5,t +13393,98138,182,1,t +13393,98138,182,4,f +13393,98138,33,20,f +13393,98281,4,1,f +13393,99207,71,9,f +13393,99780,72,4,f +13393,99781,15,2,f +13394,2357,0,3,f +13394,2431,0,1,f +13394,3002,0,9,f +13394,3003,0,3,f +13394,3004,0,3,f +13394,3005,0,6,f +13394,30165,0,1,f +13394,3022,0,2,f +13394,3030,0,2,f +13394,3032,71,2,f +13394,3069b,0,2,f +13394,3070b,0,7,f +13394,3070b,0,1,t +13394,3622,0,12,f +13394,3794a,0,6,f +13394,3957a,15,2,f +13394,4162,0,3,f +13394,4162pb018,0,1,f +13394,6636,71,4,f +13399,3001a,1,1,f +13399,3004,0,2,f +13399,3004,14,4,f +13399,3004,1,1,f +13399,3008,0,2,f +13399,3009,0,1,f +13399,3010,0,1,f +13399,3010,1,1,f +13399,3010,15,1,f +13399,3020,1,11,f +13399,3022,1,1,f +13399,3022,7,9,f +13399,3023,0,4,f +13399,3023,1,2,f +13399,3023,7,2,f +13399,3030,1,1,f +13399,3034,0,1,f +13399,3034,1,1,f +13399,3036,0,1,f +13399,3040a,15,2,f +13399,3040a,0,8,f +13399,3040a,14,2,f +13399,3062a,4,2,f +13399,3068b,1,2,f +13399,3069b,1,2,f +13399,3149c01,7,1,f +13399,3460,0,1,f +13399,3482,7,6,f +13399,3622,0,2,f +13399,3623,0,2,f +13399,3634,0,6,f +13399,3647,7,2,f +13399,3648a,7,3,f +13399,3650a,7,1,f +13399,3651,7,10,f +13399,3652,7,1,f +13399,3665,15,2,f +13399,3666,0,1,f +13399,3666,1,1,f +13399,3666,7,1,f +13399,3673,7,10,f +13399,3679,7,6,f +13399,3680,1,6,f +13399,3700,14,2,f +13399,3700,1,11,f +13399,3701,1,5,f +13399,3702,1,4,f +13399,3703,1,2,f +13399,3704,0,1,f +13399,3705,0,5,f +13399,3706,0,9,f +13399,3707,0,1,f +13399,3709,1,2,f +13399,3710,0,12,f +13399,3710,1,10,f +13399,3710,7,1,f +13399,3713,7,14,f +13399,3736,7,1,f +13399,3743,7,1,f +13399,854stk01,9999,1,t +13399,9244,7,1,f +13399,x467c12,0,2,f +13400,11217pr0003,15,1,f +13400,12825,72,2,f +13400,2412b,272,6,f +13400,2412b,320,2,f +13400,2419,71,2,f +13400,2420,15,4,f +13400,2431,320,1,f +13400,2431,71,3,f +13400,2432,71,2,f +13400,2436,0,6,f +13400,2447,40,1,t +13400,2447,40,2,f +13400,2540,0,6,f +13400,2877,71,6,f +13400,2904,0,6,f +13400,298c02,71,1,f +13400,298c02,71,1,t +13400,3002,72,6,f +13400,3003,71,1,f +13400,3009,320,2,f +13400,3020,72,6,f +13400,3020,272,6,f +13400,3022,72,1,f +13400,3022,0,12,f +13400,3023,72,4,f +13400,3023,33,2,f +13400,3023,272,14,f +13400,3023,320,1,f +13400,3024,71,12,f +13400,3024,71,1,t +13400,3031,72,1,f +13400,3031,71,2,f +13400,30367b,71,2,f +13400,30374,35,2,f +13400,30386,71,1,f +13400,3039,72,1,f +13400,3040b,320,6,f +13400,30552,71,1,f +13400,30565,72,4,f +13400,30602,71,14,f +13400,3069b,40,4,f +13400,3176,0,4,f +13400,32014,0,1,f +13400,32054,71,6,f +13400,32062,4,5,f +13400,32064b,71,2,f +13400,32064b,72,1,f +13400,32065,71,4,f +13400,32073,71,1,f +13400,32123b,71,1,f +13400,32123b,71,1,t +13400,3460,72,2,f +13400,3626cpr0525,78,1,f +13400,3626cpr1187,25,1,f +13400,3626cpr1188,31,2,f +13400,3660,0,6,f +13400,3700,71,4,f +13400,3702,0,2,f +13400,3705,0,1,f +13400,3708,0,1,f +13400,3709,71,5,f +13400,3710,320,3,f +13400,3738,72,1,f +13400,3794b,71,6,f +13400,3794b,320,1,f +13400,4070,320,2,f +13400,40902,0,1,f +13400,43093,1,4,f +13400,44301a,71,12,f +13400,44302a,72,12,f +13400,44728,72,19,f +13400,4740,71,12,f +13400,47456,71,6,f +13400,48336,71,5,f +13400,51739,71,12,f +13400,54200,320,6,f +13400,54200,272,4,f +13400,54200,320,1,t +13400,54200,272,1,t +13400,57028c01,71,1,f +13400,57796,72,1,f +13400,57899,0,1,f +13400,58247,0,4,f +13400,59443,72,1,f +13400,6019,72,4,f +13400,60478,71,20,f +13400,60479,71,2,f +13400,60481,320,4,f +13400,6091,71,12,f +13400,61195pr02,15,1,f +13400,61409,72,2,f +13400,6141,71,2,t +13400,6141,71,9,f +13400,6141,41,20,f +13400,6141,41,2,t +13400,62743,71,2,f +13400,63864,0,4,f +13400,63868,72,12,f +13400,64567,80,2,f +13400,64799,71,2,f +13400,6553,0,1,f +13400,6558,1,4,f +13400,6589,19,1,f +13400,6589,19,1,t +13400,85984,71,6,f +13400,86500,41,1,f +13400,87079,71,2,f +13400,87781,15,2,f +13400,92280,71,4,f +13400,92907,0,4,f +13400,95188,72,4,f +13400,96874,25,1,t +13400,970c00pr0499,15,1,f +13400,970c120pr0498,308,1,f +13400,970x001,72,2,f +13400,973pr2331c01,70,1,f +13400,973pr2332c01,15,1,f +13400,973pr2333c01,72,2,f +13400,98138,71,12,f +13400,98138,47,1,t +13400,98138,47,3,f +13400,98138,71,1,t +13400,99781,71,24,f +13401,2780,0,1,t +13401,2780,0,12,f +13401,30395,72,1,f +13401,32009,15,2,f +13401,32013,4,2,f +13401,32015,0,4,f +13401,32039,0,4,f +13401,32062,4,10,f +13401,32073,71,6,f +13401,32123b,71,2,f +13401,32123b,71,1,t +13401,32140,1,4,f +13401,32184,15,3,f +13401,32192,4,2,f +13401,32200,0,2,f +13401,32200,4,1,f +13401,32249,71,2,f +13401,32250,4,2,f +13401,32269,19,2,f +13401,32270,0,3,f +13401,32278,0,2,f +13401,32278,15,2,f +13401,32525,15,1,f +13401,32526,4,2,f +13401,32557,0,2,f +13401,3705,0,2,f +13401,3708,0,3,f +13401,3713,71,1,t +13401,3713,71,7,f +13401,3713,4,1,t +13401,3713,4,2,f +13401,3749,19,1,f +13401,40490,4,2,f +13401,42003,0,3,f +13401,4274,71,4,f +13401,4274,71,1,t +13401,43093,1,4,f +13401,44294,71,2,f +13401,44374,135,3,f +13401,44809,71,1,f +13401,4519,71,5,f +13401,56823c50,0,1,f +13401,59443,4,2,f +13401,59443,0,5,f +13401,60483,71,3,f +13401,60485,71,2,f +13401,61510,71,1,f +13401,62743,0,3,f +13401,63869,71,1,f +13401,64393,4,1,f +13401,64681,4,1,f +13401,6558,1,13,f +13401,6587,28,2,f +13401,6589,19,3,f +13401,6632,4,2,f +13402,2432,0,1,f +13402,30000,8,2,f +13402,3001,4,4,f +13402,3001,15,1,f +13402,3002,4,2,f +13402,3003,4,5,f +13402,3003,14,2,f +13402,3004,14,4,f +13402,3004,15,2,f +13402,3004,4,2,f +13402,3010p72,4,1,f +13402,3020,7,1,f +13402,3028,2,1,f +13402,30285,15,4,f +13402,3034,0,2,f +13402,3039,42,2,f +13402,30391,0,4,f +13402,3298,15,1,f +13402,3298pb003,15,1,f +13402,3660,15,1,f +13402,3795,7,1,f +13402,3829c01,7,1,f +13402,3832,4,2,f +13402,3832,0,2,f +13402,3957a,0,1,f +13402,4083,0,2,f +13402,4328,7,1,f +13402,4727,2,1,f +13402,4728,4,1,f +13402,6140,0,1,f +13402,6234,14,1,f +13402,6235,1,1,f +13402,cre003,9999,1,f +13403,2412b,25,1,f +13403,2780,0,1,t +13403,2780,0,15,f +13403,2905,0,4,f +13403,3023,47,2,f +13403,30391,0,4,f +13403,30395,72,1,f +13403,32013,0,2,f +13403,32056,0,2,f +13403,32062,4,3,f +13403,32073,71,6,f +13403,32123b,71,1,t +13403,32123b,71,7,f +13403,32140,25,2,f +13403,32140,0,1,f +13403,32140,4,1,f +13403,32184,0,4,f +13403,32270,0,2,f +13403,32291,0,4,f +13403,32316,71,1,f +13403,32348,4,1,f +13403,32523,25,4,f +13403,32523,72,1,f +13403,32524,71,2,f +13403,32526,4,1,f +13403,3647,72,1,t +13403,3647,72,2,f +13403,3705,0,1,f +13403,3706,0,2,f +13403,3707,0,1,f +13403,3713,71,5,f +13403,3713,71,1,t +13403,3749,19,5,f +13403,41677,1,2,f +13403,41677,71,6,f +13403,4274,71,1,t +13403,4274,71,8,f +13403,43093,1,1,f +13403,4519,71,4,f +13403,55982,71,4,f +13403,56823c50,0,1,f +13403,58176,182,1,f +13403,59426,72,2,f +13403,60483,71,1,f +13403,61510,71,1,f +13403,62462,71,2,f +13403,62462,25,1,f +13403,6536,0,3,f +13403,6558,1,1,f +13403,6587,28,2,f +13403,6632,25,6,f +13403,6632,1,2,f +13403,87082,71,2,f +13403,92907,0,1,f +13404,2496,0,2,f +13404,2496,0,1,t +13404,2655,7,2,f +13404,2655,7,1,t +13404,2877,15,2,f +13404,3020,0,1,f +13404,3021,0,1,f +13404,3039,47,1,f +13404,6141,33,1,f +13404,6141,33,2,t +13406,2362b,15,4,f +13406,2377,0,2,f +13406,2420,8,8,f +13406,2431,7,2,f +13406,2431,8,2,f +13406,2431,15,3,f +13406,2434,7,1,f +13406,2780,0,4,f +13406,2817,7,4,f +13406,2877,135,78,f +13406,2878c01,7,4,f +13406,2920,0,2,f +13406,2921,7,8,f +13406,3004,0,4,f +13406,30043,0,2,f +13406,3005,7,8,f +13406,30136,8,16,f +13406,3020,15,4,f +13406,3020,7,2,f +13406,3020,8,5,f +13406,3021,15,3,f +13406,3022,7,8,f +13406,3022,15,1,f +13406,3022,8,3,f +13406,3023,8,5,f +13406,3023,7,13,f +13406,3024,7,8,f +13406,3029,7,2,f +13406,3031,8,4,f +13406,3032,7,1,f +13406,3034,7,2,f +13406,30357,8,2,f +13406,3040b,7,2,f +13406,30414,7,2,f +13406,3063b,7,6,f +13406,3063b,47,4,f +13406,3068b,7,4,f +13406,3069b,8,2,f +13406,3069b,15,9,f +13406,3069bpr0099,15,1,f +13406,32000,15,4,f +13406,3245b,7,9,f +13406,3460,8,3,f +13406,3660,15,1,f +13406,3666,7,6,f +13406,3666,8,2,f +13406,3700,7,1,f +13406,3710,7,5,f +13406,3795,7,2,f +13406,3795,8,3,f +13406,3899,4,2,f +13406,4022,7,2,f +13406,4025,0,2,f +13406,4070,7,4,f +13406,4079,6,5,f +13406,4081b,7,2,f +13406,4093a,8,1,f +13406,4162,7,4,f +13406,4162,8,8,f +13406,4181,7,1,f +13406,4182,7,1,f +13406,4183,47,2,f +13406,4449,6,1,f +13406,4735,0,4,f +13406,4862,41,2,f +13406,4864b,47,20,f +13406,4864b,7,3,f +13406,6081,7,6,f +13406,6091,7,8,f +13406,6091,8,4,f +13406,6111,7,2,f +13406,6141,46,1,t +13406,6141,46,5,f +13406,6141,34,2,f +13406,6141,36,1,t +13406,6141,34,1,t +13406,6141,36,1,f +13406,6215,7,32,f +13406,6636,7,2,f +13406,6936,15,1,f +13406,73092,0,2,f +13409,2780,0,2,f +13409,2905,14,2,f +13409,32017,14,2,f +13409,32062,0,4,f +13409,32063,0,2,f +13409,32123b,7,1,t +13409,32123b,7,2,f +13409,3482,14,2,f +13409,3483,0,2,f +13409,3705,0,1,f +13409,3713,7,1,t +13409,3713,7,1,f +13409,4519,0,1,f +13409,6141,36,1,f +13409,6141,36,1,t +13409,6536,14,1,f +13409,6558,0,1,f +13409,6632,14,2,f +13409,71509,0,1,f +13409,71509,0,1,t +13410,2446,15,1,f +13410,3023,72,1,f +13410,3626bpr0001,14,1,f +13410,3838,15,1,f +13410,74188,72,1,f +13410,87079pb008,0,1,f +13410,970c00,15,1,f +13410,973p90c05,15,1,f +13411,2412b,1,1,f +13411,2413,1,1,f +13411,2432,1,1,f +13411,2489,6,2,f +13411,2526,14,1,f +13411,2555,0,4,f +13411,2655,7,1,f +13411,2743,0,2,f +13411,2815,0,2,f +13411,2952,7,1,f +13411,2983,7,1,f +13411,30103,0,2,f +13411,3020,0,1,f +13411,3021,1,1,f +13411,3022,1,1,f +13411,3023,1,2,f +13411,3023,0,1,f +13411,32005b,8,2,f +13411,3464,4,1,f +13411,3479,0,2,f +13411,3624,0,1,f +13411,3626bpx78,14,1,f +13411,3666,0,2,f +13411,3700,0,2,f +13411,3705,0,1,f +13411,3707,0,1,f +13411,3710,7,1,f +13411,3713,7,3,f +13411,3713,7,1,t +13411,3730,1,2,f +13411,3794a,7,1,f +13411,3795,0,1,f +13411,3829c01,1,1,f +13411,3832,0,1,f +13411,3849,7,2,f +13411,3956,1,2,f +13411,4083,0,1,f +13411,4085c,1,1,f +13411,4185,6,2,f +13411,4265b,7,2,f +13411,4265b,7,1,t +13411,4589,57,5,f +13411,4740,57,2,f +13411,476,8,2,f +13411,4865a,41,1,f +13411,6126a,57,1,f +13411,6133,0,1,f +13411,6141,0,1,t +13411,6141,0,2,f +13411,6628,0,2,f +13411,71342,334,2,f +13411,85546,14,1,f +13411,85546,14,1,t +13411,970c00,8,1,f +13411,973p28c01,0,1,f +13411,x66px4,47,2,f +13413,46296,46,1,f +13413,clikits004,230,3,f +13413,clikits005,230,3,f +13413,clikits098,230,1,f +13413,clikits099,46,1,f +13413,clikits099,52,2,f +13413,clikits100pb01,46,1,f +13413,clikits100pb02,52,1,f +13413,clikits100pb03,30,1,f +13415,32062,0,1,f +13415,32062,0,1,t +13415,32073,71,1,f +13415,32174,320,4,f +13415,32174,0,2,f +13415,32523,320,1,f +13415,3706,0,1,f +13415,41668,320,2,f +13415,43093,1,1,f +13415,43093,1,1,t +13415,44807,320,1,f +13415,44808,179,1,f +13415,47300,72,4,f +13415,50899pr0002,320,1,f +13415,50900,72,1,f +13415,50901,72,1,f +13415,50903,14,1,f +13415,6536,0,1,f +13415,6632,25,4,f +13416,11211,19,4,f +13416,11477,15,2,f +13416,14769,19,4,f +13416,14769,71,2,f +13416,15573,71,1,f +13416,2420,19,2,f +13416,3003,70,1,f +13416,3003,19,2,f +13416,3004,19,4,f +13416,3005,19,2,f +13416,3020,15,2,f +13416,3020,19,2,f +13416,3021,19,3,f +13416,3022,19,4,f +13416,3022,14,2,f +13416,3023,15,7,f +13416,3023,0,1,f +13416,3023,71,2,f +13416,3023,4,4,f +13416,3024,4,2,f +13416,3039,19,2,f +13416,3040b,4,2,f +13416,3068b,19,2,f +13416,3069b,29,1,f +13416,3069b,19,5,f +13416,3069b,15,1,f +13416,32062,0,3,f +13416,32064b,15,4,f +13416,3660,19,5,f +13416,3665,4,4,f +13416,3666,4,1,f +13416,3710,71,1,f +13416,3710,19,2,f +13416,3941,19,2,f +13416,4032a,19,3,f +13416,44728,4,2,f +13416,44728,19,2,f +13416,54200,19,6,f +13416,54200,15,1,f +13416,54200,0,2,f +13416,54200,4,2,f +13416,6091,19,2,f +13416,63868,71,2,f +13416,73983,19,2,f +13416,73983,71,2,f +13416,85984,4,2,f +13416,85984,15,1,f +13416,88072,19,2,f +13416,92280,71,2,f +13416,93273,4,2,f +13416,98138pr0008,15,2,f +13416,99206,71,1,f +13416,99781,71,1,f +13417,10201,71,2,f +13417,11203,72,5,f +13417,11477,71,4,f +13417,11833,71,1,f +13417,2431,71,4,f +13417,2654,0,4,f +13417,3003,0,3,f +13417,30136,71,2,f +13417,30136,72,1,f +13417,30162,71,4,f +13417,3021,0,7,f +13417,3023,15,1,f +13417,3068b,0,2,f +13417,3069b,71,2,f +13417,32000,72,2,f +13417,32530,0,1,f +13417,3626cpr1149,78,1,f +13417,3894,71,1,f +13417,3960,71,1,f +13417,3960pr13,40,1,f +13417,41769,0,2,f +13417,41770,0,2,f +13417,4274,1,2,f +13417,4274,1,1,t +13417,4740,0,1,f +13417,48336,0,4,f +13417,4871,71,2,f +13417,54200,71,1,t +13417,54200,71,2,f +13417,58176,36,2,f +13417,60470a,71,6,f +13417,61184,71,2,f +13417,6141,71,6,f +13417,6141,47,1,t +13417,6141,71,1,t +13417,6141,47,1,f +13417,87556pr0004,0,1,f +13417,92593,72,2,f +13417,92738,0,1,f +13417,93273,71,1,f +13417,970c00pr0583,0,1,f +13417,973pr2293c01,0,1,f +13417,99780,72,4,f +13418,11478,0,1,f +13418,11946,19,1,f +13418,11947,19,1,f +13418,15362,15,2,f +13418,21560,15,2,f +13418,21561pr0003,19,1,f +13418,21562,15,2,f +13418,21755,179,4,f +13418,21939,78,1,f +13418,21987,41,1,f +13418,21994,70,1,f +13418,2780,0,14,f +13418,32002,19,1,f +13418,32062,4,5,f +13418,32123b,71,3,f +13418,32449,15,4,f +13418,32523,19,1,f +13418,32523,0,1,f +13418,32523,15,2,f +13418,3749,19,1,f +13418,43093,1,2,f +13418,4519,71,1,f +13418,6536,0,1,f +13418,6558,1,1,f +13418,74261,72,2,f +13418,87082,0,1,f +13418,90605,0,2,f +13418,90608,72,2,f +13418,90609,0,2,f +13418,90615,72,2,f +13418,90623,0,1,f +13418,90638,19,2,f +13418,90639,15,2,f +13418,90640,15,2,f +13418,90641,15,2,f +13418,90652,15,1,f +13418,90661,15,2,f +13418,92907,0,2,f +13418,93571,0,1,f +13418,93575,0,2,f +13418,98577,72,1,f +13420,2815,0,2,f +13420,3005,7,1,f +13420,3021,7,1,f +13420,3023,1,4,f +13420,3023,4,4,f +13420,3023,7,6,f +13420,3024,1,2,f +13420,3024,4,2,f +13420,3139,0,1,f +13420,3464,4,1,f +13420,3647,7,3,f +13420,3648a,7,4,f +13420,3650a,7,1,f +13420,3666,7,3,f +13420,3673,7,12,f +13420,3679,7,1,f +13420,3680,7,1,f +13420,3700,4,4,f +13420,3701,4,2,f +13420,3701,1,2,f +13420,3702,7,2,f +13420,3705,0,1,f +13420,3706,0,3,f +13420,3707,0,3,f +13420,3709,7,1,f +13420,3710,7,2,f +13420,3713,7,6,f +13420,3737,0,1,f +13420,3738,7,1,f +13420,3749,7,2,f +13420,3832,7,1,f +13420,3894,4,2,f +13420,3894,7,2,f +13420,3894,1,2,f +13420,3895,4,4,f +13420,3895,1,2,f +13420,4143,7,2,f +13420,4185,7,2,f +13420,4265a,7,8,f +13420,4286,4,2,f +13420,4287,4,2,f +13420,4477,7,3,f +13420,4716,7,2,f +13420,6216b,7,2,f +13420,73090a,0,2,f +13420,766c96,7,2,f +13420,8,7,1,f +13421,41879a,1,1,f +13421,74188,14,1,f +13421,74188,1,1,f +13421,74188,4,1,f +13421,87087,4,2,f +13421,87769pr0001,27,1,f +13421,88062pr0001,78,1,f +13421,88064pr0001,15,1,f +13421,88065pr0001,27,2,f +13421,88066,47,1,f +13421,970c00pr0162,15,1,f +13421,973pr1532c01,1,1,f +13421,973pr1552c01,15,1,f +13423,44814,178,1,f +13424,15207,15,10,f +13424,2357,15,12,f +13424,2412b,15,20,f +13424,2420,15,18,f +13424,2431,15,12,f +13424,2456,15,16,f +13424,2877,15,16,f +13424,3001,15,24,f +13424,3002,15,16,f +13424,3003,15,36,f +13424,3004,15,40,f +13424,3005,15,40,f +13424,3008,15,8,f +13424,3009,15,18,f +13424,3010,15,36,f +13424,3020,15,16,f +13424,3021,15,20,f +13424,3022,15,16,f +13424,3023,15,20,f +13424,3023,47,50,f +13424,3024,15,20,f +13424,3024,47,40,f +13424,3031,15,10,f +13424,3032,15,10,f +13424,3033,15,4,f +13424,3034,15,12,f +13424,3035,15,8,f +13424,3036,15,4,f +13424,30363,15,8,f +13424,3037,15,12,f +13424,3039,15,12,f +13424,3040b,15,12,f +13424,30414,15,8,f +13424,3045,15,8,f +13424,30565,15,12,f +13424,3062b,15,16,f +13424,3065,47,40,f +13424,3068b,15,20,f +13424,3069b,15,20,f +13424,3070b,15,30,f +13424,3297,15,12,f +13424,3298,15,12,f +13424,3622,15,36,f +13424,3623,15,18,f +13424,3659,15,6,f +13424,3660,15,12,f +13424,3665,15,12,f +13424,3666,15,12,f +13424,3710,15,16,f +13424,3747b,15,10,f +13424,3794b,15,20,f +13424,3795,15,12,f +13424,3941,15,12,f +13424,3958,15,6,f +13424,4032a,15,12,f +13424,4070,15,16,f +13424,41539,15,6,f +13424,4162,15,12,f +13424,41767,15,8,f +13424,41768,15,8,f +13424,4286,15,10,f +13424,4287,15,10,f +13424,4460b,15,10,f +13424,4477,15,8,f +13424,4733,15,12,f +13424,47905,15,12,f +13424,50950,15,12,f +13424,54200,15,18,f +13424,60474,15,8,f +13424,60481,15,10,f +13424,6091,15,12,f +13424,6141,15,30,f +13424,6231,15,10,f +13424,6636,15,12,f +13424,85080,15,12,f +13424,87552,47,16,f +13425,2435,2,4,f +13425,3470,2,2,f +13425,3471,2,2,f +13425,3741,2,8,f +13425,3742,1,8,f +13425,3742,4,8,f +13425,3742,14,8,f +13425,3742,15,8,f +13426,10168pb01,15,1,f +13426,3626bpr1016,14,1,f +13426,88646,0,1,f +13426,970c00pr0370,84,1,f +13426,973pr2111c01,15,1,f +13426,99253,70,1,f +13428,2335,4,1,f +13428,2335p01,15,1,f +13428,2335p02,15,1,f +13428,2343,47,2,f +13428,2375,1,1,f +13428,2376,0,1,f +13428,2419,15,3,f +13428,2420,15,1,f +13428,2432,8,2,f +13428,2432,7,2,f +13428,2433,0,1,f +13428,2444,15,2,f +13428,2446,0,2,f +13428,2450,15,2,f +13428,2452,15,1,f +13428,2456,15,3,f +13428,2458,15,2,f +13428,2486,15,1,f +13428,2489,6,1,f +13428,2530,8,2,f +13428,2540,0,1,f +13428,2540,7,1,f +13428,2542,4,1,f +13428,2546p01,4,1,f +13428,2547,8,1,f +13428,2547,7,1,f +13428,2548,8,1,f +13428,2555,0,3,f +13428,2564,0,1,f +13428,2569,4,1,f +13428,2610,14,2,f +13428,2614,0,1,f +13428,2654,0,7,f +13428,298c03,0,2,f +13428,298c03,7,3,f +13428,3003,0,2,f +13428,3003,7,1,f +13428,3004,4,1,f +13428,3004,1,1,f +13428,3005,0,1,f +13428,3005,15,5,f +13428,3007,15,4,f +13428,30079,14,2,f +13428,30082,8,1,f +13428,30083,41,1,f +13428,30084,0,1,f +13428,30085,7,1,f +13428,30086,14,1,f +13428,30088,4,2,f +13428,30089,14,2,f +13428,3009,15,1,f +13428,30090,33,2,f +13428,30091,15,2,f +13428,30092,14,1,f +13428,30093,2,4,f +13428,30094,14,3,f +13428,30094,7,1,f +13428,30095,14,3,f +13428,3010,14,1,f +13428,30104,8,1,f +13428,3020,1,1,f +13428,3021,0,1,f +13428,3021,15,2,f +13428,3022,0,3,f +13428,3022,7,1,f +13428,3023,15,3,f +13428,3023,7,1,f +13428,3023,0,1,f +13428,3024,4,1,f +13428,3024,15,1,f +13428,3024,7,2,f +13428,3024,46,2,f +13428,3030,7,2,f +13428,3039,7,6,f +13428,3039,15,2,f +13428,3039pr0005,15,1,f +13428,3040b,7,4,f +13428,3062b,1,1,f +13428,3068b,14,1,f +13428,3068bpx10,0,1,f +13428,3068bpx11,0,1,f +13428,3068bpx12,0,1,f +13428,3069b,7,1,f +13428,3069bp02,7,1,f +13428,3069bp81,14,1,f +13428,3069bpc2,14,1,f +13428,3070b,0,2,f +13428,3127,7,1,f +13428,3245b,7,1,f +13428,3298,15,1,f +13428,3460,7,2,f +13428,3474,15,1,f +13428,3475b,14,4,f +13428,3626bp04,14,2,f +13428,3626bp06,14,1,f +13428,3626bpr0895,15,1,f +13428,3626bpx11,14,2,f +13428,3659,15,2,f +13428,3660,7,1,f +13428,3660,14,3,f +13428,3660,15,2,f +13428,3665,7,1,f +13428,3665,15,2,f +13428,3666,15,5,f +13428,37,383,2,f +13428,3710,0,1,f +13428,3710,15,2,f +13428,3747a,15,5,f +13428,3749,7,1,f +13428,3794a,7,3,f +13428,3794a,0,4,f +13428,3795,15,2,f +13428,3795,7,3,f +13428,3811,19,1,f +13428,3829c01,1,1,f +13428,3839b,0,1,f +13428,3901,6,1,f +13428,3937,14,1,f +13428,3938,0,1,f +13428,3957a,1,1,f +13428,3957a,15,9,f +13428,3962b,0,1,f +13428,4032a,2,1,f +13428,4032a,7,3,f +13428,4070,15,8,f +13428,4070,0,2,f +13428,4085c,15,2,f +13428,4085c,0,1,f +13428,4150,15,1,f +13428,4151a,8,1,f +13428,4215b,41,2,f +13428,4276b,15,1,f +13428,4286,15,3,f +13428,4315,14,1,f +13428,4318,1,1,f +13428,4360,15,1,f +13428,4460a,7,1,f +13428,4477,7,1,f +13428,4485,4,1,f +13428,4485,1,1,f +13428,4588,0,2,f +13428,4589,15,6,f +13428,4738a,6,2,f +13428,4739a,6,2,f +13428,4740,15,2,f +13428,4864a,33,1,f +13428,4865a,7,1,f +13428,4871,14,1,f +13428,4871,0,1,f +13428,55295,8,1,f +13428,55296,8,1,f +13428,55297,8,1,f +13428,55298,8,1,f +13428,55299,8,1,f +13428,55300,8,1,f +13428,56823,0,1,f +13428,57503,334,1,f +13428,57504,334,1,f +13428,57505,334,1,f +13428,57506,334,1,f +13428,59275,1,4,f +13428,6019,15,7,f +13428,6020,14,1,f +13428,6040,0,1,f +13428,6041,4,1,f +13428,6060,15,5,f +13428,6082,8,1,f +13428,6083,8,3,f +13428,6086,0,1,f +13428,6126a,34,10,f +13428,6140,4,1,f +13428,6141,46,2,f +13428,6141,42,13,f +13428,6141,47,6,f +13428,6141,36,2,f +13428,6141,0,2,f +13428,6183,15,2,f +13428,6190,15,1,f +13428,6559stk01,9999,1,t +13428,6559stk02,9999,1,t +13428,6636,15,2,f +13428,71155,0,1,f +13428,73037,1,1,f +13428,970c00,1,2,f +13428,970x023,0,3,f +13428,973px96c01,1,3,f +13428,973px98c01,15,2,f +13430,11816pr0001,84,1,f +13430,3021,15,1,f +13430,3023,29,4,f +13430,3023,15,2,f +13430,30367b,14,2,f +13430,30367b,27,2,f +13430,30374,15,1,f +13430,3069bpr0055,15,1,f +13430,32062,0,2,f +13430,33291,5,2,f +13430,33291,5,1,t +13430,3794b,15,1,f +13430,3941,15,1,f +13430,4032a,19,2,f +13430,4589,26,2,f +13430,4589,26,1,t +13430,60474,212,1,f +13430,60474,14,1,f +13430,6141,15,4,f +13430,6141,36,1,t +13430,6141,36,4,f +13430,6141,15,1,t +13430,6256,29,1,f +13430,63965,15,1,f +13430,92456pr0007c01,84,1,f +13430,92818pr0006c01,323,1,f +13430,93352,308,1,f +13433,3626bpr0945,14,1,f +13433,88646,0,1,f +13433,93564pr0002,15,1,f +13433,970c00pr0317,15,1,f +13433,973pr2028c01,322,1,f +13433,99242,5,1,f +13434,2518,2,4,f +13434,2536,6,7,f +13434,2546p01,4,1,f +13434,2563,6,1,f +13434,2566,6,1,f +13434,3004,15,4,f +13434,3004,1,1,f +13434,3008,15,2,f +13434,3010,1,1,f +13434,3034,15,1,f +13434,3062b,14,2,f +13434,3063b,1,2,f +13434,3185,20,8,f +13434,3186,20,1,f +13434,3187,20,1,f +13434,3741,2,2,f +13434,3742,13,6,f +13434,3742,13,2,t +13434,3852b,74,1,f +13434,3941,15,20,f +13434,4032a,2,1,f +13434,4515,5,2,f +13434,6064,2,2,f +13434,6112,15,3,f +13434,6161,74,1,f +13434,6176,20,1,f +13434,6179,14,1,f +13434,6182,14,2,f +13434,6191,14,1,f +13434,6195,1,1,f +13434,6201,0,1,f +13434,6203,14,1,f +13434,6206,1,1,f +13434,6250,8,1,f +13434,6250,0,1,f +13434,6255,2,2,f +13434,6256,1,1,f +13434,70973c01,383,1,f +13434,bel002,77,1,f +13434,belvfem21,-1,1,f +13436,606p33,2,2,f +13439,3004,4,2,f +13439,3004,14,6,f +13439,3008,14,1,f +13439,3010,4,3,f +13439,3032,4,1,f +13439,3068b,15,2,f +13439,3068bp16,15,2,f +13439,3795,4,1,f +13439,3795,14,1,f +13439,3832,14,1,f +13439,3899,1,3,f +13439,4341,0,1,f +13439,4429,4,1,f +13439,x234,14,1,f +13440,10288,308,1,f +13440,11289,41,1,f +13440,15339,148,1,f +13440,15341,27,2,f +13440,15343,27,2,f +13440,15344,27,1,f +13440,15353,25,1,f +13440,15354,25,1,f +13440,15355,1,1,f +13440,15358pat0003,36,3,f +13440,15391,0,1,f +13440,15392,72,1,f +13440,2780,0,4,f +13440,30229,72,1,f +13440,30552,0,3,f +13440,30553,0,3,f +13440,3069bpr0136,41,1,f +13440,32002,19,1,f +13440,32039,71,1,f +13440,32062,4,4,f +13440,32184,0,1,f +13440,32523,71,1,f +13440,3626b,4,1,f +13440,3713,71,1,f +13440,3713,4,1,f +13440,3749,19,1,f +13440,41669,179,3,f +13440,4519,71,3,f +13440,48729b,0,3,f +13440,48989,71,1,f +13440,56823c100,0,1,f +13440,57585,71,1,f +13440,59900,42,2,f +13440,60115,0,1,f +13440,61184,71,2,f +13440,61252,25,1,f +13440,6141,42,2,f +13440,61510,71,1,f +13440,6536,0,2,f +13440,6558,1,2,f +13440,6629,0,2,f +13440,74261,72,1,f +13440,85940,0,1,f +13440,87082,71,1,f +13440,87083,72,2,f +13440,90607,0,2,f +13440,90608,72,1,f +13440,90609,0,2,f +13440,90612,0,4,f +13440,90622,0,1,f +13440,90626,0,1,f +13440,90640,148,1,f +13440,90640pr0025,148,1,f +13440,90641,27,6,f +13440,92222,148,3,f +13440,98138pr0019,15,1,f +13440,98577,72,2,f +13440,98585,41,1,f +13440,98592,27,3,f +13441,11097,297,1,f +13441,11107,297,1,f +13441,11153,326,7,f +13441,11477,326,2,f +13441,12551pr0001,288,1,f +13441,14417,72,5,f +13441,14418,71,5,f +13441,15070,15,8,f +13441,15208,19,4,f +13441,15208,288,4,f +13441,2432,71,1,f +13441,2654,72,2,f +13441,3020,326,2,f +13441,3021,72,4,f +13441,3022,72,2,f +13441,3023,326,9,f +13441,3034,71,1,f +13441,30374,41,1,f +13441,3068b,4,1,f +13441,3626cpr1141,288,1,f +13441,3639,72,1,f +13441,3640,72,1,f +13441,3666,72,1,f +13441,3795,4,1,f +13441,41769,288,1,f +13441,41770,288,1,f +13441,50950,71,2,f +13441,53451,15,2,f +13441,53451,15,1,t +13441,54200,326,10,f +13441,54200,326,1,t +13441,60478,0,2,f +13441,60897,4,2,f +13441,6141,72,1,t +13441,6141,72,5,f +13441,63864,71,2,f +13441,87079pr0058,326,1,f +13441,87747,179,4,f +13441,87747,179,1,t +13441,92280,0,2,f +13441,92280,71,4,f +13441,92747,41,1,f +13441,970c155pr0443,326,1,f +13441,973pr2245c01,326,1,f +13441,98138,41,1,t +13441,98138,41,1,f +13441,98138pr0015,326,1,t +13441,98138pr0015,326,2,f +13441,99780,72,10,f +13442,122c01,0,2,f +13442,3004,14,2,f +13442,3020,14,1,f +13442,3021,14,1,f +13442,3022,14,1,f +13442,3023,14,2,f +13442,3062a,46,1,f +13442,3314,4,1,f +13442,3317,14,1,f +13442,3433,14,1,f +13442,3626apr0001,14,1,f +13442,3710,14,5,f +13442,3795,14,1,f +13442,3829c01,14,1,f +13442,3833,4,1,f +13442,3837,8,1,f +13442,4006,0,1,f +13442,4083,0,1,f +13442,4084,0,4,f +13442,4085a,0,2,f +13442,4175,0,1,f +13442,970c00,1,1,f +13442,973p26c01,1,1,f +13446,2335p04,15,1,f +13446,2335p30,15,1,f +13446,2339,15,2,f +13446,2339,0,2,f +13446,2339,14,2,f +13446,2343,47,1,f +13446,2345,15,1,f +13446,2345,14,2,f +13446,2345p04,14,1,f +13446,2357,15,5,f +13446,2419,14,2,f +13446,2419,7,3,f +13446,2419,15,2,f +13446,2420,14,1,f +13446,2420,15,4,f +13446,2432,0,1,f +13446,2449,14,6,f +13446,2450,7,1,f +13446,2453a,14,3,f +13446,2454a,0,2,f +13446,2462,15,17,f +13446,2462,14,2,f +13446,2465,0,1,f +13446,2518,2,4,f +13446,2524,6,4,f +13446,2525p32,15,1,f +13446,2526,6,1,f +13446,2526,14,2,f +13446,2526,4,4,f +13446,2527,4,2,f +13446,2528pb01,0,1,f +13446,2528pb02,15,1,f +13446,2530,8,7,f +13446,2536,6,6,f +13446,2542,4,2,f +13446,2542,6,2,f +13446,2543,4,1,f +13446,2544,0,1,f +13446,2545,0,4,f +13446,2551,6,1,f +13446,2551,4,1,f +13446,2552px3,7,1,f +13446,2554,6,3,f +13446,2555,0,1,f +13446,2555,15,2,f +13446,2561,6,6,f +13446,2561,6,1,t +13446,2562,6,1,t +13446,2562,6,2,f +13446,2563,6,1,f +13446,2566,6,1,f +13446,3001,14,1,f +13446,3003,0,2,f +13446,3004,14,16,f +13446,3004,15,45,f +13446,3005,14,7,f +13446,3005,15,21,f +13446,3005,0,2,f +13446,3009,15,4,f +13446,3009,14,4,f +13446,3010,0,4,f +13446,3010,15,9,f +13446,3010,14,5,f +13446,3020,7,5,f +13446,3021,7,2,f +13446,3021,14,1,f +13446,3021,0,1,f +13446,3022,0,1,f +13446,3022,7,1,f +13446,3023,15,6,f +13446,3023,7,11,f +13446,3024,7,1,t +13446,3024,14,2,f +13446,3024,15,4,f +13446,3024,7,1,f +13446,3028,7,1,f +13446,3029,7,2,f +13446,3032,15,1,f +13446,3033,0,1,f +13446,3034,0,1,f +13446,3035,15,1,f +13446,3040b,0,1,f +13446,3040b,15,7,f +13446,3040b,14,14,f +13446,3062b,15,8,f +13446,3062b,2,1,f +13446,3062b,0,19,f +13446,3068b,0,1,f +13446,3127,7,1,f +13446,3307,15,3,f +13446,3308,15,1,f +13446,3403,0,2,f +13446,3404,0,2,f +13446,3455,14,2,f +13446,3455,15,1,f +13446,3460,15,1,f +13446,3460,0,1,f +13446,3460,7,1,f +13446,3581,15,3,f +13446,3622,0,1,f +13446,3622,14,6,f +13446,3622,15,4,f +13446,3623,7,2,f +13446,3623,14,1,f +13446,3626apb04,14,1,f +13446,3626apb05,14,1,f +13446,3626apb06,14,1,f +13446,3626apb07,14,1,f +13446,3626apr0001,14,4,f +13446,3659,0,2,f +13446,3659,15,14,f +13446,3659,14,4,f +13446,3660,15,3,f +13446,3665,0,2,f +13446,3665,15,8,f +13446,3666,15,2,f +13446,3679,7,1,f +13446,3680,0,1,f +13446,3684,0,1,f +13446,3794a,0,5,f +13446,3795,7,2,f +13446,3795,14,1,f +13446,3795,0,3,f +13446,3832,7,1,f +13446,3849,0,1,f +13446,3895,0,1,f +13446,3957a,0,4,f +13446,3958,7,1,f +13446,3959,0,5,f +13446,4032a,2,1,f +13446,4070,15,3,f +13446,4070,14,2,f +13446,4071,14,1,f +13446,4081b,0,3,f +13446,4085b,15,1,f +13446,4085b,14,4,f +13446,4151a,0,1,f +13446,4275b,0,3,f +13446,4444,14,2,f +13446,4444,15,1,f +13446,4444p06,15,1,f +13446,4444p07,15,1,f +13446,4460a,14,1,f +13446,4460a,0,2,f +13446,4477,0,1,f +13446,4490,15,5,f +13446,4531,7,3,f +13446,4611,8,1,f +13446,4730,0,1,f +13446,4738b,6,1,f +13446,4739b,6,1,f +13446,4854,0,1,f +13446,56823c50,0,1,f +13446,57503,334,2,f +13446,57504,334,2,f +13446,57505,334,2,f +13446,57506,334,2,f +13446,6141,46,5,f +13446,6141,46,1,t +13446,73590c01a,0,1,f +13446,84943,8,2,f +13446,87692,4,1,f +13446,87693,4,1,t +13446,87694,4,1,t +13446,970c00,15,6,f +13446,970c00,1,1,f +13446,970d01,0,1,f +13446,973p31c01,14,1,f +13446,973p36c01,0,1,f +13446,973p3rc01,15,1,f +13446,973pb0204c01,15,5,f +13448,2586p4b,7,2,f +13448,2587,8,2,f +13448,3068bp40,15,1,f +13448,3844,8,1,f +13448,3846p44,7,2,f +13448,3846p4c,7,2,f +13448,3847,8,2,f +13448,3849,8,2,f +13448,3896,8,1,f +13448,3957a,0,2,f +13448,4495a,14,1,f +13448,4495a,1,1,f +13448,4497,6,2,f +13448,4498,6,1,f +13448,4499,6,1,f +13448,4505,6,1,f +13448,6122,0,2,f +13448,6123,8,2,f +13448,6124,21,1,f +13448,6126a,57,2,f +13448,6131,1,1,f +13448,6132,15,1,f +13448,87685,4,1,f +13448,87685,15,1,f +13448,87686,4,1,f +13448,87686,15,1,f +13448,87687,15,1,f +13448,87687,4,1,f +13451,2470,6,2,f +13451,2555,0,3,f +13451,2570,8,2,f +13451,2586p4b,7,1,f +13451,3626bpx97,14,1,f +13451,3794a,0,1,f +13451,3795,0,2,f +13451,3839b,0,1,f +13451,3844,0,1,f +13451,3847,8,1,f +13451,4085c,0,2,f +13451,4497,0,1,f +13451,4600,0,1,f +13451,6141,7,2,f +13451,6141,7,1,t +13451,970x026,7,1,f +13451,973p4bc02,4,1,f +13452,970c00,2,1,f +13452,970c00,1,1,f +13452,970c00,85,1,f +13453,11055pr0005,71,1,f +13453,2376,0,1,f +13453,2540,72,1,f +13453,2817,71,1,f +13453,298c02,71,2,t +13453,298c02,71,1,f +13453,30033,0,1,f +13453,3005,0,1,f +13453,30162,72,1,f +13453,3022,71,2,f +13453,3022,0,2,f +13453,3023,19,1,f +13453,3023,1,1,f +13453,30553,71,2,f +13453,3069b,71,2,f +13453,32028,71,1,f +13453,32039,71,2,f +13453,32062,0,2,f +13453,3623,71,2,f +13453,3626bpr0924,78,1,f +13453,3679,71,1,f +13453,3680,0,1,f +13453,3710,71,1,f +13453,3794a,0,5,f +13453,3795,0,2,f +13453,43093,1,2,f +13453,43722,71,1,f +13453,43723,71,1,f +13453,44301a,71,6,f +13453,44302a,72,4,f +13453,4599b,71,1,f +13453,4740,71,2,f +13453,47905,71,2,f +13453,57900,72,1,f +13453,61409,72,2,f +13453,6179pr49,0,1,f +13453,6541,71,1,f +13453,92738,0,1,f +13453,970c00,71,1,f +13453,973pr1989c01,71,1,f +13453,98107pr0003,326,2,f +13454,2000422stk01,9999,1,t +13454,2780,0,58,f +13454,32054,0,2,f +13454,32073,71,8,f +13454,32140,0,4,f +13454,32140,14,6,f +13454,32192,0,16,f +13454,32271,14,6,f +13454,32316,0,2,f +13454,32316,14,4,f +13454,32449,14,16,f +13454,32523,14,8,f +13454,32524,14,20,f +13454,32525,14,12,f +13454,32525,0,9,f +13454,32526,14,4,f +13454,32556,19,2,f +13454,3705,0,8,f +13454,40490,14,1,f +13454,43093,1,4,f +13454,43857,14,8,f +13454,4519,71,12,f +13454,64782,0,3,f +13454,6558,1,54,f +13455,14716,4,2,f +13455,14769,4,1,f +13455,15068,0,1,f +13455,15573,70,1,f +13455,30176,2,2,f +13455,3020,0,1,f +13455,3020,70,1,f +13455,3032,2,1,f +13455,3039,0,1,f +13455,3068b,72,1,f +13455,3069b,72,2,f +13455,3245c,0,1,f +13455,3622,2,2,f +13455,3941,72,1,f +13455,4460b,28,2,f +13455,64799,0,1,f +13455,85984,0,2,f +13455,98139,297,1,f +13455,98283,28,1,f +13457,3002,4,1,f +13457,3622,4,1,f +13457,4533,41,1,f +13457,4589,40,2,f +13457,92410,4,1,f +13458,2495,4,1,f +13458,2496,0,1,t +13458,2496,0,1,f +13458,4449,71,1,f +13458,4449,0,1,f +13461,2817,0,1,f +13461,3062b,15,3,f +13461,3673,71,1,t +13461,3673,71,2,f +13461,3700,15,2,f +13461,3710,70,2,f +13461,3710,15,2,f +13461,4150,4,1,f +13461,4865b,1,2,f +13463,14728c30,0,1,f +13463,2340,15,2,f +13463,2376,0,1,f +13463,2412b,15,8,f +13463,2412b,1,4,f +13463,2420,1,2,f +13463,2431,0,11,f +13463,2431,71,1,f +13463,2431,25,2,f +13463,2436,15,2,f +13463,2436,0,1,f +13463,2444,72,1,f +13463,2445,1,3,f +13463,2446,1,2,f +13463,2447,40,2,f +13463,2447,40,1,t +13463,2460,0,2,f +13463,2540,4,1,f +13463,2540,0,8,f +13463,2547,72,1,f +13463,2548,72,1,f +13463,2780,0,2,t +13463,2780,0,8,f +13463,2952,0,2,f +13463,298c02,4,2,f +13463,298c02,4,2,t +13463,30000,1,1,f +13463,3001,15,2,f +13463,3003,15,2,f +13463,3003,4,2,f +13463,3004,25,2,f +13463,3004,1,3,f +13463,3004,15,2,f +13463,3005,0,2,f +13463,3005,15,12,f +13463,3009,25,3,f +13463,3010,1,1,f +13463,3020,1,4,f +13463,3020,15,1,f +13463,3020,25,4,f +13463,3020,0,1,f +13463,3020,72,1,f +13463,3021,25,4,f +13463,3021,0,4,f +13463,3021,15,2,f +13463,3022,71,3,f +13463,3023,71,3,f +13463,3023,15,12,f +13463,3023,1,6,f +13463,3024,0,8,f +13463,3024,4,6,f +13463,3029,0,2,f +13463,3034,0,2,f +13463,30340,14,1,f +13463,30363,15,2,f +13463,3039,25,2,f +13463,3039,0,1,f +13463,30395,72,1,f +13463,3040b,0,2,f +13463,30414,71,4,f +13463,30414,0,1,f +13463,3045,15,2,f +13463,3045,0,2,f +13463,30565,0,2,f +13463,3062b,15,1,f +13463,3069b,25,4,f +13463,3069b,0,5,f +13463,3070b,15,2,f +13463,3070b,0,1,t +13463,3070b,36,1,f +13463,3070b,34,1,t +13463,3070b,0,3,f +13463,3070b,34,1,f +13463,3070b,36,1,t +13463,3139,0,6,f +13463,32054,4,1,f +13463,32059,15,1,f +13463,32125,71,2,f +13463,32324,71,2,f +13463,3245b,15,2,f +13463,32523,72,1,f +13463,32532,71,1,f +13463,3298,1,2,f +13463,3460,15,6,f +13463,3460,1,5,f +13463,3626bpr0279,14,1,f +13463,3626bpr0325,14,1,f +13463,3626bpr0387,14,1,f +13463,3626bpr0411,14,1,f +13463,3666,25,2,f +13463,3700,1,2,f +13463,3701,0,1,f +13463,3710,0,7,f +13463,3710,1,3,f +13463,3710,25,10,f +13463,3713,71,1,f +13463,3713,71,1,t +13463,3738,0,1,f +13463,3749,19,2,f +13463,3794a,15,7,f +13463,3795,72,1,f +13463,3795,1,3,f +13463,3795,0,1,f +13463,3795,15,1,f +13463,3894,15,1,f +13463,3941,0,2,f +13463,3958,72,1,f +13463,4032a,71,2,f +13463,4079,4,2,f +13463,41334,0,1,f +13463,4162,1,2,f +13463,42022,25,4,f +13463,4282,15,1,f +13463,4282,72,1,f +13463,43093,1,2,f +13463,43898,15,1,f +13463,44294,71,1,f +13463,44728,0,4,f +13463,44822,72,2,f +13463,4589,4,2,f +13463,4624,71,6,f +13463,46303,71,1,f +13463,4714,15,1,f +13463,48336,0,2,f +13463,4865a,15,2,f +13463,4870,71,2,f +13463,51000,25,4,f +13463,54091,25,1,f +13463,54200,0,2,f +13463,54200,0,1,t +13463,54200,1,10,f +13463,54384,72,1,f +13463,54701c03,25,1,f +13463,58176,36,2,f +13463,59275,25,4,f +13463,59426,72,1,f +13463,59443,71,1,f +13463,60032,15,5,f +13463,6019,71,12,f +13463,60471,71,4,f +13463,60474,15,1,f +13463,60478,71,12,f +13463,60481,0,4,f +13463,60483,0,2,f +13463,60601,41,5,f +13463,6063,72,1,f +13463,6081,15,6,f +13463,61072,135,1,f +13463,61100c01,71,1,f +13463,61409,72,4,f +13463,6141,25,1,t +13463,6141,25,4,f +13463,6141,47,1,t +13463,6141,47,4,f +13463,61483,71,1,f +13463,61510,71,1,f +13463,61678,15,4,f +13463,6231,15,4,f +13463,62462,14,3,f +13463,62576,41,1,f +13463,62743,0,6,f +13463,64567,71,1,f +13463,6536,14,1,f +13463,6587,72,2,f +13463,6636,72,4,f +13463,970c00,1,4,f +13463,973pr1244c01,73,1,f +13463,973pr1363c01,14,3,f +13464,122c01,0,4,f +13464,3002,0,10,f +13464,3003,0,3,f +13464,3003,15,10,f +13464,3004,1,48,f +13464,3004,0,6,f +13464,3004,15,3,f +13464,3004,4,1,f +13464,3005,1,35,f +13464,3005,0,4,f +13464,3005,15,4,f +13464,3006,0,4,f +13464,3008,15,1,f +13464,3009,1,12,f +13464,3009,0,2,f +13464,3010,1,8,f +13464,3020,15,1,f +13464,3020,4,1,f +13464,3021,15,4,f +13464,3022,4,1,f +13464,3022,0,2,f +13464,3023,15,10,f +13464,3023,0,8,f +13464,3023,1,16,f +13464,3023,4,3,f +13464,3024,15,2,f +13464,3024,4,6,f +13464,3024,1,11,f +13464,3024,46,8,f +13464,3024,36,5,f +13464,3028,4,3,f +13464,3028,0,2,f +13464,3029,4,2,f +13464,3030,0,3,f +13464,3031,0,2,f +13464,3033,0,2,f +13464,3034,4,1,f +13464,3035,4,1,f +13464,3039p23,1,1,f +13464,3040b,15,2,f +13464,3040b,4,2,f +13464,3040p02,1,1,f +13464,3062b,0,6,f +13464,3068b,4,1,f +13464,3068b,15,1,f +13464,3069bpr0099,15,4,f +13464,3070b,1,1,f +13464,3081cc01,14,2,f +13464,3144,7,1,f +13464,3297,0,14,f +13464,3298,0,8,f +13464,3461,0,1,f +13464,3462,15,1,f +13464,3470,2,1,f +13464,3480,0,1,f +13464,3481,15,1,f +13464,3622,1,20,f +13464,3623,1,9,f +13464,3623,15,2,f +13464,3626apr0001,14,5,f +13464,3641,0,4,f +13464,3660,1,7,f +13464,3660,15,2,f +13464,3665,15,1,f +13464,3666,0,10,f +13464,3666,1,8,f +13464,3666,4,2,f +13464,3679,7,2,f +13464,3680,15,2,f +13464,3710,15,5,f +13464,3710,4,4,f +13464,3741,2,4,f +13464,3742,4,12,f +13464,3747a,15,1,f +13464,3787,15,1,f +13464,3794a,15,3,f +13464,3821,4,1,f +13464,3822,4,1,f +13464,3823,47,1,f +13464,3829c01,4,2,f +13464,3830,1,2,f +13464,3830,0,1,f +13464,3831,0,1,f +13464,3831,1,2,f +13464,3832,0,1,f +13464,3832,1,5,f +13464,3836,6,1,f +13464,3842a,15,1,f +13464,3853,14,5,f +13464,3855a,47,5,f +13464,3900,15,2,f +13464,3901,6,2,f +13464,3937,0,1,f +13464,3938,0,1,f +13464,3941,0,20,f +13464,3957a,7,2,f +13464,3958,0,2,f +13464,3962a,0,1,f +13464,4070,15,2,f +13464,4070,4,4,f +13464,4079,15,1,f +13464,4081a,15,2,f +13464,4081a,4,2,f +13464,4083,15,11,f +13464,4084,0,4,f +13464,4085a,1,4,f +13464,4175,0,1,f +13464,4211,15,1,f +13464,4211,4,1,f +13464,4213,15,2,f +13464,4214,15,1,f +13464,4216,1,10,f +13464,4216,0,4,f +13464,4217,1,2,f +13464,4218,14,4,f +13464,4218,47,5,f +13464,4219,14,1,f +13464,4276a,0,2,f +13464,4284,47,1,f +13464,4286,15,2,f +13464,4315,15,1,f +13464,4345a,4,2,f +13464,4346,4,2,f +13464,4485,1,2,f +13464,4510,1,4,f +13464,4511,14,2,f +13464,4518ac01,0,1,f +13464,4594,47,1,f +13464,4599a,1,2,f +13464,4626,14,1,f +13464,6100p02,7,1,f +13464,6100p05,7,1,f +13464,6141,46,2,f +13464,6141,36,2,f +13464,6391stk01,9999,1,t +13464,6391stk02,9999,1,t +13464,73313,14,2,f +13464,970c00,4,1,f +13464,970c00,0,2,f +13464,970c00,1,2,f +13464,973p01c02,15,2,f +13464,973p0ac02,0,1,f +13464,973pb0201c01,15,2,f +13465,122c01,7,4,f +13465,3001a,15,1,f +13465,3004,47,1,f +13465,3005,15,2,f +13465,3010pb035e,14,1,f +13465,3020,15,1,f +13465,3021,4,1,f +13465,3021,0,2,f +13465,3022,0,1,f +13465,3022,4,2,f +13465,3023,4,1,f +13465,3023,0,2,f +13465,3035,4,1,f +13465,3039,47,1,f +13465,3062a,46,1,f +13465,3135,4,1,f +13465,3136,7,1,f +13465,3481,4,1,f +13465,3633,15,2,f +13465,3641,0,8,f +13465,3787,0,2,f +13465,3787,7,1,f +13465,3788,14,1,f +13465,3795,4,1,f +13465,3795,7,2,f +13465,3823,47,1,f +13466,10055pr0001,226,1,f +13466,11477,308,2,f +13466,11833,84,1,f +13466,2420,28,4,f +13466,2423,326,2,f +13466,30357,288,2,f +13466,3626cpr1116,78,1,f +13466,3700,70,1,f +13466,3937,71,1,f +13466,4070,19,2,f +13466,4589,70,1,f +13466,48336,19,1,f +13466,54200,326,1,t +13466,54200,326,2,f +13466,61184,71,1,f +13466,6134,71,1,f +13466,6141,19,1,t +13466,6141,19,2,f +13466,85984,19,2,f +13466,92280,71,2,f +13466,93231,70,1,f +13466,93273,70,1,f +13466,970c00pr0455,308,1,f +13466,973pr2294c01,70,1,f +13467,2736,7,4,f +13467,30173a,3,2,f +13467,32005b,27,2,f +13467,32056,27,4,f +13467,32062,0,2,f +13467,32073,0,2,f +13467,32271,27,2,f +13467,32291,27,2,f +13467,32306,27,1,f +13467,32307,0,2,f +13467,32308,27,1,f +13467,32308,0,1,f +13467,32310pb02,27,1,f +13467,32439a,3,3,f +13467,3673,7,2,f +13467,3705,0,1,f +13467,3713,7,1,f +13467,3749,7,6,f +13467,6538b,3,1,f +13467,6553,3,1,f +13467,6628,0,2,f +13467,71509,0,2,f +13467,71509,0,1,t +13467,rb00182,27,1,t +13468,3001a,15,10,f +13468,3001a,4,10,f +13468,3002a,4,4,f +13468,3002a,15,4,f +13468,3003,4,5,f +13468,3003,0,1,f +13468,3003,1,1,f +13468,3003,14,1,f +13468,3003,15,4,f +13468,3004,4,6,f +13468,3004,47,4,f +13468,3004,15,6,f +13468,700ex,7,1,f +13469,2445,72,2,f +13469,30155,71,4,f +13469,3022,72,10,f +13469,3023,72,28,f +13469,30285,15,16,f +13469,3030,72,2,f +13469,3032,72,12,f +13469,3034,72,10,f +13469,3035,72,4,f +13469,3483,0,4,f +13469,3665,2,8,f +13469,3665,1,8,f +13469,3665,14,8,f +13469,3665,4,8,f +13469,3666,72,8,f +13469,3710,72,16,f +13469,3795,72,4,f +13469,3823,47,4,f +13469,3829c01,15,12,f +13469,3832,72,2,f +13469,3958,72,2,f +13469,4084,0,28,f +13469,4176,47,4,f +13469,4488,71,28,f +13469,4600,0,8,f +13469,4624,15,28,f +13469,6249,71,2,f +13469,87414,0,16,f +13471,11211,71,4,f +13471,11291,71,3,f +13471,11458,72,20,f +13471,11477,72,6,f +13471,11477,71,8,f +13471,11478,71,2,f +13471,13731,1,2,f +13471,13731,71,2,f +13471,14181,71,2,f +13471,14769,0,2,f +13471,15068,71,1,f +13471,15092,72,1,f +13471,15303,36,6,f +13471,15392,72,2,f +13471,15400,72,4,f +13471,15403,0,2,f +13471,15535,72,1,f +13471,15573,19,6,f +13471,15672,379,4,f +13471,15712,0,2,f +13471,18671,72,2,f +13471,18677,71,4,f +13471,18759,72,2,f +13471,18986,47,1,f +13471,20952pr0001,15,1,f +13471,20953pr0001,15,1,f +13471,21566pr0004,15,1,f +13471,21849pr0001,47,1,f +13471,22885,71,2,f +13471,23186,0,1,f +13471,23915,15,1,f +13471,2412b,179,12,f +13471,2420,1,8,f +13471,2420,71,10,f +13471,2420,72,2,f +13471,2420,14,2,f +13471,2431,71,2,f +13471,2445,71,3,f +13471,2445,1,2,f +13471,2460,0,1,f +13471,2460,72,1,f +13471,2639,72,8,f +13471,2653,0,4,f +13471,2714a,71,4,f +13471,2736,71,1,f +13471,2780,0,4,f +13471,3005,72,1,f +13471,3008,1,2,f +13471,3010,4,2,f +13471,3010,71,2,f +13471,3020,1,4,f +13471,3020,71,2,f +13471,3020,4,4,f +13471,3020,72,6,f +13471,3021,2,2,f +13471,3021,71,10,f +13471,3022,72,2,f +13471,3022,28,2,f +13471,3022,379,3,f +13471,3023,1,9,f +13471,3023,19,4,f +13471,3023,182,3,f +13471,3023,72,14,f +13471,3023,28,3,f +13471,3024,72,16,f +13471,3031,71,4,f +13471,30355,71,1,f +13471,30356,71,1,f +13471,3040b,19,3,f +13471,3040b,71,2,f +13471,3040b,72,6,f +13471,30414,1,4,f +13471,30504,19,1,f +13471,30552,0,1,f +13471,30553,72,2,f +13471,30602,71,4,f +13471,3062b,4,1,f +13471,3062b,15,5,f +13471,3065,45,2,f +13471,3068b,1,1,f +13471,3068b,71,1,f +13471,3068bpr0231,72,1,f +13471,3069b,1,3,f +13471,3069b,379,8,f +13471,3069b,0,1,f +13471,3176,72,1,f +13471,32000,19,1,f +13471,32000,0,4,f +13471,32002,19,4,f +13471,32028,71,4,f +13471,32034,0,3,f +13471,32039,71,5,f +13471,32062,0,6,f +13471,32062,4,4,f +13471,32064a,0,9,f +13471,32072,0,1,f +13471,32073,71,2,f +13471,32123b,71,5,f +13471,32184,14,1,f +13471,32187,179,4,f +13471,32198,19,1,f +13471,32316,71,2,f +13471,32530,4,1,f +13471,32531,0,1,f +13471,3297,72,4,f +13471,3298,72,4,f +13471,3460,71,4,f +13471,3460,72,6,f +13471,3623,15,8,f +13471,3623,0,2,f +13471,3623,72,2,f +13471,3626cpr1149,78,1,f +13471,3626cpr1792,78,1,f +13471,3626cpr1941,78,1,f +13471,3639,72,4,f +13471,3666,14,2,f +13471,3666,71,3,f +13471,3666,1,10,f +13471,3676,72,2,f +13471,3700,71,1,f +13471,3701,72,2,f +13471,3701,70,2,f +13471,3706,0,1,f +13471,3710,379,10,f +13471,3710,1,2,f +13471,3710,28,11,f +13471,3710,72,2,f +13471,3710,19,2,f +13471,3713,71,4,f +13471,3713,4,2,f +13471,3737,0,1,f +13471,3738,0,1,f +13471,3795,1,3,f +13471,3795,71,8,f +13471,3837,72,1,f +13471,3941,71,8,f +13471,3958,71,1,f +13471,4006,0,1,f +13471,4032a,72,4,f +13471,4032a,71,1,f +13471,4070,0,4,f +13471,4079,0,1,f +13471,41677,72,4,f +13471,4216,379,2,f +13471,4274,71,4,f +13471,4274,1,2,f +13471,43093,1,5,f +13471,43712,71,1,f +13471,43713,72,1,f +13471,43713,71,1,f +13471,43719,72,1,f +13471,43722,1,1,f +13471,43722,71,1,f +13471,43723,1,1,f +13471,43723,71,1,f +13471,44294,71,4,f +13471,44300,72,1,f +13471,4477,71,2,f +13471,4477,1,3,f +13471,4599b,71,1,f +13471,47397,71,1,f +13471,47398,71,1,f +13471,47457,4,2,f +13471,4871,72,2,f +13471,50745,179,4,f +13471,51739,379,2,f +13471,54200,28,1,f +13471,54383,1,1,f +13471,54384,1,1,f +13471,55013,72,8,f +13471,55981,71,1,f +13471,55982,71,4,f +13471,57899,0,1,f +13471,59443,71,4,f +13471,59900,45,4,f +13471,59900,72,1,f +13471,60219,71,1,f +13471,60470b,71,1,f +13471,60475b,71,1,f +13471,60479,71,2,f +13471,60483,0,4,f +13471,6126b,182,3,f +13471,6141,36,6,f +13471,6141,179,29,f +13471,61780,70,2,f +13471,62462,71,4,f +13471,62462,179,4,f +13471,6266,0,1,f +13471,63864,72,2,f +13471,63864,71,4,f +13471,63864,1,2,f +13471,63965,71,1,f +13471,64647,182,2,f +13471,6536,72,2,f +13471,6541,71,8,f +13471,6541,19,2,f +13471,6589,19,1,f +13471,6628,0,1,f +13471,6632,1,2,f +13471,6632,4,2,f +13471,6636,71,6,f +13471,73983,1,4,f +13471,73983,71,4,f +13471,85545,1,4,f +13471,85861,182,1,f +13471,85984,0,1,f +13471,85984,71,6,f +13471,87079,1,6,f +13471,87079,379,1,f +13471,87083,72,3,f +13471,87087,72,10,f +13471,87087,1,2,f +13471,87407,71,1,f +13471,87580,28,2,f +13471,87580,0,1,f +13471,87994,0,2,f +13471,88930,71,8,f +13471,92081,15,1,f +13471,92280,71,2,f +13471,92738,0,1,f +13471,92946,0,2,f +13471,93273,72,4,f +13471,96874,25,1,t +13471,970c00,308,1,f +13471,970c00pr0955,15,1,f +13471,970c00pr1073,28,1,f +13471,973pr3166c01,15,1,f +13471,973pr3516c01,84,1,f +13471,973pr3517c01,308,1,f +13471,98100,71,1,f +13471,98138,47,4,f +13471,99206,71,2,f +13471,99207,71,1,f +13471,99781,0,1,f +13472,3003,15,1,f +13472,3005,15,1,f +13472,3009a,15,1,f +13472,3035a,15,2,f +13472,3062c,1,4,f +13472,3065,15,7,f +13472,32bc01,4,1,f +13472,453bc01,4,1,f +13472,646bc01,4,1,f +13473,122c01,7,4,f +13473,3002a,1,8,f +13473,3003,1,3,f +13473,3004,1,20,f +13473,3004p20,1,1,f +13473,3004p90,1,2,f +13473,3008,1,5,f +13473,3009,1,4,f +13473,3010,1,1,f +13473,3020,7,4,f +13473,3021,7,2,f +13473,3021,1,1,f +13473,3023,7,1,f +13473,3023,1,1,f +13473,3027,1,1,f +13473,3036,46,2,f +13473,3039,7,1,f +13473,3039p23,1,3,f +13473,3039p34,1,1,f +13473,3040b,1,6,f +13473,3062a,34,1,f +13473,3062a,36,2,f +13473,3066,46,3,f +13473,3067,46,3,f +13473,3144,7,2,f +13473,3456,1,1,f +13473,3460,1,2,f +13473,3479,1,5,f +13473,3481,1,1,f +13473,3626apr0001,14,4,f +13473,3641,0,8,f +13473,3660,1,4,f +13473,3660p01,1,3,f +13473,3665,1,4,f +13473,3666,1,2,f +13473,3678a,47,2,f +13473,3679,7,4,f +13473,3680,7,3,f +13473,3680,1,1,f +13473,3703,1,1,f +13473,3754pr0001,1,1,f +13473,3787,7,2,f +13473,3794a,7,5,f +13473,3795,7,2,f +13473,3829c01,7,2,f +13473,3838,15,2,f +13473,3838,7,2,f +13473,3838,4,2,f +13473,3839a,7,3,f +13473,3842a,4,2,f +13473,3842a,15,2,f +13473,3937,7,2,f +13473,3938,7,2,f +13473,3940b,7,1,f +13473,3941,7,2,f +13473,3941,1,1,f +13473,3947a,7,1,f +13473,3956,7,1,f +13473,3957a,7,2,f +13473,3959,7,1,f +13473,3960,7,1,f +13473,3961,7,1,f +13473,3962a,0,2,f +13473,970c00,15,2,f +13473,970c00,4,2,f +13473,973p90c02,4,2,f +13473,973p90c05,15,2,f +13474,18018,179,2,f +13474,2223,0,1,f +13474,2224,72,1,f +13474,2301,14,4,f +13474,3011,4,6,f +13474,3011,71,3,f +13474,3011,10,1,f +13474,31111pb022,4,1,f +13474,3437,484,2,f +13474,3437,27,2,f +13474,3437,191,1,f +13474,3437,320,4,f +13474,3437,10,2,f +13474,3437,14,4,f +13474,3437,4,7,f +13474,40666,14,3,f +13474,4672,14,2,f +13474,51703,182,1,f +13474,58057pr03,15,1,f +13474,58498,0,1,f +13474,61649,4,2,f +13474,6414,4,1,f +13474,88760,0,2,f +13474,88762c01pb06,0,4,f +13474,90265,15,2,f +13475,3001a,0,13,f +13475,3004,47,26,f +13475,3004,4,8,f +13475,3005,4,16,f +13475,3005,0,8,f +13475,3005,14,8,f +13475,3005,47,2,f +13475,3008,4,4,f +13475,3008,0,8,f +13475,3009,14,4,f +13475,3009,0,4,f +13475,3010,0,3,f +13475,3010,14,16,f +13475,3010,4,2,f +13475,3010p12,14,1,f +13475,3010p13,14,1,f +13475,3010pb024,14,1,f +13475,3010pb025,14,1,f +13475,3020,7,20,f +13475,3020,4,3,f +13475,3020,1,6,f +13475,3020,0,9,f +13475,3021,4,26,f +13475,3021,0,3,f +13475,3022,14,1,f +13475,3022,0,5,f +13475,3022,7,2,f +13475,3022,1,6,f +13475,3023,0,10,f +13475,3023,4,4,f +13475,3023,7,6,f +13475,3024,0,2,f +13475,3024,4,2,f +13475,3027,7,5,f +13475,3034,15,20,f +13475,3037,0,6,f +13475,3038,0,2,f +13475,3039,0,4,f +13475,3040a,0,2,f +13475,3045,0,2,f +13475,3058b,7,1,f +13475,3062a,0,1,f +13475,3087c,4,2,f +13475,3192,4,2,f +13475,3193,4,2,f +13475,3228a,1,8,f +13475,3229a,1,16,f +13475,3230a,1,16,f +13475,458,7,4,f +13475,468c02,0,1,f +13475,564c01,0,1,f +13475,7049b,15,8,f +13475,737,4,5,f +13475,737bc01,4,5,f +13475,996ac15,15,1,f +13475,wheel1a,4,16,f +13475,wheel1b,4,4,f +13476,11211,71,3,f +13476,14417,72,4,f +13476,14418,71,2,f +13476,14704,71,2,f +13476,15068,0,2,f +13476,15573,0,2,f +13476,15672,0,16,f +13476,18980,0,1,f +13476,21229,0,4,f +13476,2357,72,2,f +13476,2412b,72,5,f +13476,2420,15,2,f +13476,2431,4,4,f +13476,2431,15,3,f +13476,2450,0,4,f +13476,2489,308,1,f +13476,2654,15,1,f +13476,2654,29,1,f +13476,2921,0,2,f +13476,3003,15,4,f +13476,3003,73,2,f +13476,3004,15,3,f +13476,3004,73,9,f +13476,3004,72,7,f +13476,3004,4,9,f +13476,3005,4,2,f +13476,3005,28,2,f +13476,3005,72,3,f +13476,3005,73,6,f +13476,30089,0,1,f +13476,3009,72,4,f +13476,3010,73,6,f +13476,30136,308,2,f +13476,30154,72,1,f +13476,30176,2,1,f +13476,3021,0,5,f +13476,3022,70,2,f +13476,3023,15,4,f +13476,3023,73,8,f +13476,3023,0,6,f +13476,3024,15,1,t +13476,3024,15,4,f +13476,3031,15,1,f +13476,3034,1,2,f +13476,3034,15,1,f +13476,3034,19,2,f +13476,30340,14,1,f +13476,3035,19,1,f +13476,3035,15,1,f +13476,3035,1,4,f +13476,3035,70,1,f +13476,30357,15,9,f +13476,30357,4,8,f +13476,30367c,47,1,f +13476,3037,0,9,f +13476,3039,71,5,f +13476,3039,19,4,f +13476,3039,0,5,f +13476,3040b,15,2,f +13476,3040b,28,7,f +13476,3040b,72,4,f +13476,30503,1,2,f +13476,30565,1,5,f +13476,3062b,70,8,f +13476,3062b,46,4,f +13476,3068bpr0197,28,1,f +13476,32000,0,12,f +13476,32014,14,1,f +13476,32062,4,1,f +13476,3245c,15,4,f +13476,3245c,4,2,f +13476,3460,19,1,f +13476,3460,15,1,f +13476,3460,1,1,f +13476,3622,72,4,f +13476,3622,73,9,f +13476,3623,15,3,f +13476,3626bpr0677,14,1,f +13476,3626cpr0891,14,1,f +13476,3660,15,2,f +13476,3665,0,2,f +13476,3666,0,2,f +13476,3673,71,5,f +13476,3673,71,1,t +13476,3700,71,2,f +13476,3710,73,4,f +13476,3710,0,2,f +13476,3710,2,1,f +13476,3749,19,5,f +13476,3794b,71,2,f +13476,3795,2,3,f +13476,3830,71,2,f +13476,3831,71,2,f +13476,3899,14,1,f +13476,3899,4,1,f +13476,3941,47,1,f +13476,4032a,72,5,f +13476,4070,0,2,f +13476,41334,320,1,f +13476,41879a,2,1,f +13476,4274,1,1,f +13476,4274,1,1,t +13476,43713,15,1,f +13476,43719,0,1,f +13476,43722,0,2,f +13476,43722,19,1,f +13476,43723,0,2,f +13476,44375a,0,1,f +13476,47905,15,2,f +13476,50373,0,1,f +13476,51739,0,1,f +13476,54200,47,8,f +13476,54200,4,2,f +13476,54200,47,1,t +13476,54200,0,1,t +13476,54200,15,2,f +13476,54200,15,1,t +13476,54200,4,1,t +13476,54200,0,5,f +13476,59900,72,3,f +13476,60470b,71,1,f +13476,60474,72,5,f +13476,60475b,71,1,f +13476,60478,15,2,f +13476,60481,0,1,f +13476,60592,0,6,f +13476,60593,15,2,f +13476,60596,15,2,f +13476,60601,47,6,f +13476,60602,47,2,f +13476,60623,2,2,f +13476,6091,0,2,f +13476,61252,14,2,f +13476,6141,4,1,t +13476,6141,0,1,t +13476,6141,14,4,f +13476,6141,14,1,t +13476,6141,47,2,f +13476,6141,10,1,t +13476,6141,4,2,f +13476,6141,182,1,t +13476,6141,182,6,f +13476,6141,70,1,t +13476,6141,70,2,f +13476,6141,47,1,t +13476,6141,10,8,f +13476,6141,0,8,f +13476,62696,484,1,f +13476,62930,47,1,f +13476,63864,70,2,f +13476,64225,15,1,f +13476,64225,0,2,f +13476,64648,179,2,f +13476,6587,28,1,f +13476,6636,71,2,f +13476,6636,0,2,f +13476,85080,4,24,f +13476,85080,15,24,f +13476,85941,47,2,f +13476,85943,72,1,f +13476,87087,70,2,f +13476,87747,15,4,f +13476,87747,15,1,t +13476,92593,15,2,f +13476,92593,71,2,f +13476,92593,4,5,f +13476,96874,25,1,t +13476,970c00,326,1,f +13476,973pr3018c01a,1,1,f +13476,973pr3491c01,4,1,f +13476,98100,0,2,f +13476,98138,297,2,f +13476,98138,71,1,t +13476,98138,71,4,f +13476,98138,297,1,t +13476,98138pr0008,15,1,t +13476,98138pr0008,15,2,f +13476,98283,28,4,f +13476,99780,0,2,f +13476,99781,71,2,f +13477,2431,0,4,f +13477,2445,71,3,f +13477,2456,72,2,f +13477,2460,72,5,f +13477,2780,0,4,f +13477,2780,0,1,t +13477,2905,0,4,f +13477,3003,0,3,f +13477,30033,15,2,f +13477,30041,72,1,f +13477,30042,72,1,f +13477,3008,72,8,f +13477,30088,0,2,f +13477,30099,19,4,f +13477,30136,72,13,f +13477,30153,36,1,f +13477,30153,34,1,f +13477,30153,47,1,f +13477,30153,33,1,f +13477,30165,0,2,f +13477,3021,72,1,f +13477,3023,2,2,f +13477,3023,0,2,f +13477,3028,28,2,f +13477,3030,72,1,f +13477,3032,19,3,f +13477,3034,19,6,f +13477,30361c,15,1,f +13477,30363,19,2,f +13477,3040b,0,2,f +13477,3040b,27,2,f +13477,3040b,72,8,f +13477,30526,71,1,f +13477,30565,28,2,f +13477,3062b,72,6,f +13477,32000,4,1,f +13477,32000,0,2,f +13477,32013,15,1,f +13477,32016,0,2,f +13477,32016,71,1,f +13477,32062,4,2,f +13477,32064b,0,1,f +13477,32184,4,1,f +13477,32192,72,1,f +13477,32523,19,1,f +13477,32525,71,1,f +13477,3622,72,2,f +13477,3626bpr0580,14,1,f +13477,3626bpr0629,320,1,f +13477,3626bpr0643,14,1,f +13477,3659,72,4,f +13477,3660,72,4,f +13477,3665,0,10,f +13477,3666,19,4,f +13477,3700,4,3,f +13477,3707,0,1,f +13477,3709,72,1,f +13477,3710,0,4,f +13477,3710,72,2,f +13477,3713,4,2,t +13477,3713,4,2,f +13477,3749,19,1,f +13477,3794b,297,3,f +13477,3794b,72,2,f +13477,3849,0,1,f +13477,3894,0,1,f +13477,3894,71,1,f +13477,3941,27,1,f +13477,3941,19,5,f +13477,3941,15,1,f +13477,3941,0,1,f +13477,3956,0,1,f +13477,4032a,0,2,f +13477,4032a,4,2,f +13477,40378,0,4,f +13477,40379,0,4,f +13477,40379,15,10,f +13477,4070,71,10,f +13477,4081b,0,6,f +13477,4085c,4,2,f +13477,4085c,71,2,f +13477,41747,0,1,f +13477,41748,0,1,f +13477,41751,0,1,f +13477,41764,0,1,f +13477,41765,0,1,f +13477,42021,27,1,f +13477,42448,297,2,f +13477,4274,71,1,t +13477,4274,71,4,f +13477,4286,72,2,f +13477,43093,1,8,f +13477,44126,72,2,f +13477,44294,71,1,f +13477,4519,71,1,f +13477,4589,297,6,f +13477,4738a,297,1,f +13477,4739a,297,1,f +13477,4740,15,2,f +13477,4740,36,2,f +13477,48729a,72,1,t +13477,48729a,72,1,f +13477,49668,0,4,f +13477,50950,27,2,f +13477,53451,15,1,t +13477,53451,15,4,f +13477,53989,15,16,f +13477,54200,27,2,f +13477,54200,27,1,t +13477,55236,288,8,f +13477,57564,0,2,f +13477,59275,27,4,f +13477,59443,0,1,f +13477,6060,0,2,f +13477,6141,36,2,f +13477,6141,297,2,t +13477,6141,0,1,t +13477,6141,36,1,t +13477,6141,297,6,f +13477,6141,0,2,f +13477,61485,0,1,f +13477,61510,71,3,f +13477,61678,0,4,f +13477,6233,0,1,f +13477,6553,71,1,f +13477,6575,0,1,f +13477,852906,89,1,t +13477,85546,14,2,f +13477,87083,72,4,f +13477,87087,4,2,f +13477,87544,71,2,f +13477,87745,0,4,f +13477,87747,15,4,f +13477,87748pr0004,33,1,f +13477,87749,320,1,f +13477,87750,72,1,f +13477,87754,72,2,f +13477,87757pr01,320,1,f +13477,89159,35,2,f +13477,92290,297,1,f +13477,970c00pr0145,72,2,f +13477,973pr1553c01,320,1,f +13477,973pr1557c01,72,2,f +13478,2470,6,2,f +13478,2555,0,2,f +13478,2926,4,1,f +13478,30000,8,1,f +13478,30173a,7,1,f +13478,30175,0,1,f +13478,3020,0,2,f +13478,3022,7,1,f +13478,3062b,7,2,f +13478,3626bpx8,14,1,f +13478,3700,7,2,f +13478,3839b,4,1,f +13478,4286,6,2,f +13478,4529,0,2,f +13478,6134,4,1,f +13478,970x021,0,1,f +13478,973px14c01,4,1,f +13483,2420,19,2,f +13483,2420,2,4,f +13483,3001,19,9,f +13483,3004,19,4,f +13483,3010,19,11,f +13483,3022,19,11,f +13483,3023,19,5,f +13483,3023,14,3,f +13483,3023,2,4,f +13483,30238,0,1,f +13483,3024,19,2,f +13483,3034,14,2,f +13483,3048c,15,2,f +13483,3062b,70,5,f +13483,3068b,19,3,f +13483,3069b,19,3,f +13483,3070b,19,2,f +13483,3460,14,1,f +13483,3622,19,9,f +13483,3623,2,2,f +13483,3623,19,2,f +13483,3666,14,3,f +13483,3685,19,4,f +13483,3700,19,1,f +13483,3710,14,1,f +13483,3832,14,2,f +13483,3837,0,1,f +13483,4274,71,1,f +13486,2460,72,1,f +13486,3010,14,1,f +13486,3020,0,1,f +13486,3021,0,1,f +13486,3022,0,1,f +13486,3039,47,1,f +13486,3040b,14,1,f +13486,3040b,0,1,f +13486,3660,14,1,f +13486,3710,0,2,f +13486,3747b,14,1,f +13486,4617b,0,1,f +13487,10190,25,2,f +13487,10190,27,2,f +13487,10201,0,1,f +13487,11477,2,2,f +13487,15573,25,2,f +13487,18868a,41,1,f +13487,19981pr0021,41,1,f +13487,3021,25,1,f +13487,3023,25,1,f +13487,30602,41,1,f +13487,32064a,2,2,f +13487,3626bpr1070,78,1,f +13487,3941,41,1,f +13487,4032a,2,1,f +13487,4081b,27,4,f +13487,48336,2,2,f +13487,50950,27,2,f +13487,60470a,2,2,f +13487,60897,25,2,f +13487,6126a,41,2,f +13487,6141,46,4,f +13487,6141,46,1,t +13487,86208,72,1,f +13487,87991,14,1,f +13487,92290,297,2,f +13487,970c00,2,1,f +13487,973pr2168c01,25,1,f +13488,2357,4,14,f +13488,2357,14,36,f +13488,2357,1,26,f +13488,2420,14,132,f +13488,2420,4,54,f +13488,2456,1,81,f +13488,2456,14,9,f +13488,2456,4,23,f +13488,3001,1,56,f +13488,3001,14,18,f +13488,3001,4,26,f +13488,3002,14,25,f +13488,3002,1,56,f +13488,3002,4,14,f +13488,3003,1,10,f +13488,3003,14,3,f +13488,3003,4,6,f +13488,3004,4,16,f +13488,3004,1,8,f +13488,3004,14,2,f +13488,3005,4,16,f +13488,3005,14,10,f +13488,3006,4,6,f +13488,3006,1,42,f +13488,3007,14,8,f +13488,3007,4,13,f +13488,3007,1,38,f +13488,3008,1,6,f +13488,3008,14,8,f +13488,3008,4,9,f +13488,3009,1,2,f +13488,3009,4,8,f +13488,3009,14,7,f +13488,3010,1,14,f +13488,3010,4,11,f +13488,3010,14,14,f +13488,3020,4,54,f +13488,3020,14,50,f +13488,3020,2,36,f +13488,3021,2,24,f +13488,3021,0,2,f +13488,3021,4,46,f +13488,3021,14,16,f +13488,3022,14,22,f +13488,3022,2,20,f +13488,3022,4,16,f +13488,3023,0,4,f +13488,3023,4,34,f +13488,3023,14,34,f +13488,3023,2,70,f +13488,3024,14,28,f +13488,3024,2,16,f +13488,3024,4,36,f +13488,3034,14,8,f +13488,3034,4,16,f +13488,3034,2,25,f +13488,3069b,4,18,f +13488,32064b,14,4,f +13488,3403c01,4,1,f +13488,3460,14,12,f +13488,3460,4,4,f +13488,3460,2,26,f +13488,3622,4,12,f +13488,3622,14,6,f +13488,3622,1,4,f +13488,3623,4,22,f +13488,3623,14,38,f +13488,3623,0,2,f +13488,3623,2,12,f +13488,3666,4,16,f +13488,3666,14,23,f +13488,3666,2,31,f +13488,3673,7,6,f +13488,3700,4,2,f +13488,3700,14,4,f +13488,3701,4,4,f +13488,3710,2,65,f +13488,3710,4,26,f +13488,3710,14,30,f +13488,3710,0,1,f +13488,3795,4,50,f +13488,3795,2,9,f +13488,3795,14,19,f +13488,3795,0,1,f +13488,3857,2,1,f +13488,4185,7,4,f +13488,4274,7,1,t +13488,4274,7,2,f +13488,4477,14,2,f +13488,4740,0,2,f +13488,6111,1,4,f +13488,6587,8,2,f +13489,4774cu,0,1,f +13490,17,1,1,f +13490,3001a,4,1,f +13490,3002a,15,1,f +13490,3002a,1,2,f +13490,3003,4,6,f +13490,3003,14,11,f +13490,3004,1,2,f +13490,3020,1,2,f +13490,3020,4,1,f +13490,3021,4,4,f +13490,3022,1,1,f +13490,3022,4,2,f +13490,3034,1,2,f +13490,3039,1,2,f +13490,3612,14,2,f +13490,3613,4,4,f +13490,3613,15,2,f +13490,3613,14,2,f +13490,3614a,4,8,f +13490,3625,0,1,f +13490,3626a,4,1,f +13490,3660,1,5,f +13490,457,0,2,f +13490,685p01,4,4,f +13490,792c03,15,1,f +13490,792c03,14,1,f +13490,792c03,4,2,f +13490,bb15d,14,4,f +13490,x196,0,2,f +13490,x197,0,2,f +13491,3003,4,1,f +13491,3004,15,1,f +13491,3004p51,14,1,f +13491,3022,0,1,f +13491,3022,15,2,f +13491,3023,4,2,f +13491,3024,15,2,f +13491,3024,4,2,f +13491,3039,15,1,f +13491,3039,0,1,f +13491,3040b,4,2,f +13491,3048c,4,1,f +13491,3049b,4,1,f +13491,3710,4,1,f +13493,3703,4,4,f +13493,3895,4,4,f +13494,11055,14,1,f +13494,11090,70,4,f +13494,11477,70,1,f +13494,11610,0,4,f +13494,15068,308,1,f +13494,15535,2,2,f +13494,18674,70,1,f +13494,18674,72,1,f +13494,20482,47,1,f +13494,20482,47,1,t +13494,2420,19,3,f +13494,2449,70,2,f +13494,2540,14,1,f +13494,2654,70,1,f +13494,2877,71,3,f +13494,3004,28,3,f +13494,3004,70,7,f +13494,3004,0,2,f +13494,3005,70,13,f +13494,3008,70,4,f +13494,3010,70,11,f +13494,30126,72,1,f +13494,30126,72,1,t +13494,30136,72,4,f +13494,30137,71,8,f +13494,3020,2,4,f +13494,3020,70,4,f +13494,3021,0,2,f +13494,3022,14,1,f +13494,3023,70,20,f +13494,3023,14,2,f +13494,3023,19,5,f +13494,3032,19,2,f +13494,3035,1,1,f +13494,30374,15,1,f +13494,30503,19,3,f +13494,30503,1,2,f +13494,30565,2,4,f +13494,3062b,72,9,f +13494,3062b,70,6,f +13494,3062b,47,2,f +13494,3068b,73,2,f +13494,3069bpr0055,15,1,f +13494,3297,4,10,f +13494,3298,4,13,f +13494,33320,2,1,f +13494,3622,70,6,f +13494,3622,72,2,f +13494,3623,70,3,f +13494,3623,19,2,f +13494,3626cpr1147,14,1,f +13494,3660,70,1,f +13494,3710,70,4,f +13494,3710,19,8,f +13494,3742,14,4,f +13494,3830,71,2,f +13494,3831,71,2,f +13494,3835,0,1,f +13494,3837,72,1,f +13494,3899,4,1,f +13494,3941,70,1,f +13494,4032a,0,4,f +13494,4070,70,20,f +13494,4081b,15,2,f +13494,41770,2,4,f +13494,4286,4,2,f +13494,4528,0,1,f +13494,4599b,0,1,t +13494,4599b,0,1,f +13494,4733,71,2,f +13494,4740,0,1,f +13494,48729b,72,1,f +13494,48729b,72,1,t +13494,50304,28,1,f +13494,50305,28,1,f +13494,53451,15,2,f +13494,53451,15,1,t +13494,54200,72,6,f +13494,54200,72,1,t +13494,59900,2,1,f +13494,6019,0,2,f +13494,60475b,0,1,f +13494,60478,70,4,f +13494,60481,71,3,f +13494,60593,19,3,f +13494,60594,19,4,f +13494,60596,19,1,f +13494,60602,47,3,f +13494,60608,2,8,f +13494,60623,2,1,f +13494,6091,70,1,f +13494,6112,70,1,f +13494,6141,27,1,t +13494,6141,182,2,f +13494,6141,0,1,t +13494,6141,71,1,t +13494,6141,182,1,t +13494,6141,70,23,f +13494,6141,71,10,f +13494,6141,70,1,t +13494,6141,0,4,f +13494,6141,27,6,f +13494,63965,0,1,f +13494,64648,179,1,f +13494,85984,15,1,f +13494,87079,70,2,f +13494,87991,0,1,f +13494,87994,70,1,t +13494,87994,70,1,f +13494,92280,0,3,f +13494,92438,10,2,f +13494,92950,70,2,f +13494,95343,4,1,f +13494,95344,297,1,t +13494,95344,297,1,f +13494,970c00,28,1,f +13494,973pr1163c01,272,1,f +13494,98138,46,1,t +13494,98138,46,2,f +13494,98138,84,1,t +13494,98138,84,10,f +13494,98313,15,2,f +13495,10049,148,2,f +13495,10050,148,3,f +13495,10050,148,1,t +13495,10051,148,3,f +13495,10054pr0002,308,1,f +13495,10055pr0001,226,1,f +13495,10056pr0001,308,1,f +13495,10065,70,1,f +13495,10509pr0001,70,1,f +13495,10636,9999,1,t +13495,12825,72,2,f +13495,2339,71,2,f +13495,2343,297,2,f +13495,2357,71,18,f +13495,2357,72,6,f +13495,2419,71,5,f +13495,2431,70,5,f +13495,2431,71,6,f +13495,2431,308,2,f +13495,2449,71,4,f +13495,2453b,71,5,f +13495,2454a,71,5,f +13495,2456,72,2,f +13495,2456,71,2,f +13495,2458,72,4,f +13495,2540,0,4,f +13495,2540,72,1,f +13495,2566,0,1,f +13495,2587,148,2,f +13495,2587pr0029,308,1,f +13495,2780,0,12,f +13495,2780,0,4,t +13495,2817,0,4,f +13495,3001,0,1,f +13495,3001,71,2,f +13495,3001,72,4,f +13495,3002,71,46,f +13495,3002,70,1,f +13495,3002,72,3,f +13495,3003,72,7,f +13495,3003,71,14,f +13495,30033,0,1,f +13495,3004,71,41,f +13495,3004,72,9,f +13495,3004,70,1,f +13495,3005,378,53,f +13495,3005,71,41,f +13495,3005,72,4,f +13495,30055,0,4,f +13495,3007,71,5,f +13495,3008,0,1,f +13495,3009,71,6,f +13495,3010,378,10,f +13495,3010,71,20,f +13495,30136,308,6,f +13495,30145,71,4,f +13495,3020,70,4,f +13495,3020,71,8,f +13495,3020,72,1,f +13495,3021,71,6,f +13495,3021,70,7,f +13495,3022,71,2,f +13495,3022,72,8,f +13495,3022,70,5,f +13495,3023,28,6,f +13495,3023,72,32,f +13495,3023,70,3,f +13495,3023,71,4,f +13495,30236,72,1,f +13495,30237a,72,2,f +13495,3024,72,2,t +13495,3024,0,16,f +13495,3024,70,2,f +13495,3024,70,2,t +13495,3024,0,3,t +13495,3024,72,6,f +13495,3028,28,4,f +13495,3029,28,2,f +13495,3029,71,2,f +13495,30292,288,1,f +13495,3030,72,1,f +13495,3030,71,3,f +13495,3031,71,4,f +13495,3032,70,1,f +13495,3032,71,5,f +13495,3033,71,1,f +13495,3035,28,4,f +13495,3035,72,1,f +13495,30350b,70,1,f +13495,30357,70,2,f +13495,3036,28,3,f +13495,30367b,0,1,f +13495,3037,71,2,f +13495,30374,0,2,f +13495,3039,72,4,f +13495,3039,71,3,f +13495,3040b,72,14,f +13495,3040b,71,2,f +13495,3041,71,13,f +13495,3044c,72,13,f +13495,3045,72,2,f +13495,3046a,72,6,f +13495,3048c,71,6,f +13495,30565,28,2,f +13495,3062b,71,2,f +13495,3062b,72,12,f +13495,3068b,1,2,f +13495,3068b,71,13,f +13495,3069b,72,2,f +13495,3069b,378,24,f +13495,3069b,308,3,f +13495,3069b,33,3,f +13495,3069b,71,3,f +13495,3069b,70,4,f +13495,3070b,71,1,t +13495,3070b,70,1,t +13495,3070b,1,1,t +13495,3070b,1,2,f +13495,3070b,71,2,f +13495,3070b,70,2,f +13495,32000,0,22,f +13495,32062,4,1,f +13495,32073,71,1,f +13495,32123b,14,1,t +13495,32123b,14,1,f +13495,32530,0,2,f +13495,32556,19,1,f +13495,3298,71,6,f +13495,33057,484,1,f +13495,3307,71,4,f +13495,3308,72,1,f +13495,3308,71,1,f +13495,3460,70,1,f +13495,3460,72,2,f +13495,3460,0,4,f +13495,3622,72,9,f +13495,3622,71,34,f +13495,3623,72,2,f +13495,3623,71,6,f +13495,3623,70,8,f +13495,3623,0,2,f +13495,3626bpr0895,15,1,f +13495,3626cpr0976,320,3,f +13495,3626cpr0988,78,1,f +13495,3626cpr0993,78,1,f +13495,3626cpr1002,78,1,f +13495,3626cpr1003,78,1,f +13495,3626cpr1010,72,1,f +13495,3659,71,3,f +13495,3660,71,35,f +13495,3665,378,2,f +13495,3665,70,6,f +13495,3666,71,3,f +13495,3666,72,3,f +13495,3676,72,2,f +13495,3678b,72,11,f +13495,3684,71,2,f +13495,3701,0,1,f +13495,3710,72,5,f +13495,3710,70,5,f +13495,3710,71,6,f +13495,3710,0,1,f +13495,3713,71,1,f +13495,3713,71,1,t +13495,3794b,72,2,f +13495,3795,71,11,f +13495,3795,70,3,f +13495,3830,71,19,f +13495,3831,71,19,f +13495,3832,19,1,f +13495,3832,71,2,f +13495,3942c,72,2,f +13495,3958,28,1,f +13495,3958,71,2,f +13495,40234,71,1,f +13495,4032a,0,1,f +13495,4162,70,6,f +13495,41677,0,4,f +13495,41879a,308,1,f +13495,4274,1,2,t +13495,4274,1,16,f +13495,4282,71,3,f +13495,43722,71,8,f +13495,43723,71,8,f +13495,43892,0,1,f +13495,4445,71,1,f +13495,44728,0,4,f +13495,4490,71,2,f +13495,4491b,72,1,f +13495,4495b,297,2,f +13495,4495b,288,2,f +13495,48336,297,3,f +13495,4865a,72,2,f +13495,50231,320,1,t +13495,50231,320,1,f +13495,50304,72,2,f +13495,50305,72,2,f +13495,53705,148,3,f +13495,54200,70,4,f +13495,54200,288,21,f +13495,54200,70,1,t +13495,54200,71,28,f +13495,54200,288,5,t +13495,54200,71,8,t +13495,54384,71,4,f +13495,58380,70,2,f +13495,59443,72,2,f +13495,59900,70,10,f +13495,6020,0,3,f +13495,60470b,0,4,f +13495,60478,72,4,f +13495,60808,71,10,f +13495,60897,0,8,f +13495,60897,72,8,f +13495,6123,72,1,f +13495,6141,72,4,f +13495,6141,0,1,t +13495,6141,72,2,t +13495,6141,0,2,f +13495,61780,70,1,f +13495,6256,82,1,f +13495,63868,0,2,f +13495,63965,70,3,f +13495,64644,308,6,f +13495,64647,57,5,t +13495,64647,57,7,f +13495,6553,72,2,f +13495,6587,28,1,f +13495,6636,71,1,f +13495,73983,71,27,f +13495,75902pr0002,320,1,f +13495,85984,71,33,f +13495,87079,71,4,f +13495,87079,1,1,f +13495,87087,71,14,f +13495,87421,71,4,f +13495,87544,71,4,f +13495,87552,71,8,f +13495,87580,72,2,f +13495,87620,71,36,f +13495,87994,70,1,f +13495,88283,308,1,f +13495,88289,308,1,f +13495,90391pr01,70,2,f +13495,92950,72,1,f +13495,93231,70,1,f +13495,96874,25,1,t +13495,970c00pr0334,308,3,f +13495,970c00pr0350,28,1,f +13495,970c00pr0357,308,1,f +13495,970c120pr0335,72,1,f +13495,970x199,70,1,f +13495,973pr2057c01,308,3,f +13495,973pr2079c01,320,1,f +13495,973pr2089c01,288,1,f +13495,973pr2090c01,320,1,f +13495,973pr2098c01,70,1,f +13495,973pr2109c01,308,1,f +13495,98283,71,40,f +13495,98347,179,2,f +13495,98370,179,4,f +13496,2412b,72,14,f +13496,2431,14,1,f +13496,2458,72,1,f +13496,2637,71,3,f +13496,2654,4,4,f +13496,2730,0,2,f +13496,2736,71,1,f +13496,2744,0,2,f +13496,2780,0,13,f +13496,2780,0,3,t +13496,2855,71,1,f +13496,2856,0,1,f +13496,2877,72,7,f +13496,298c02,14,2,f +13496,298c02,14,1,t +13496,30000,1,1,f +13496,3004,2,18,f +13496,3010,0,5,f +13496,30179,15,1,f +13496,3020,14,3,f +13496,3020,72,1,f +13496,3023,72,6,f +13496,3023,46,4,f +13496,3029,72,2,f +13496,3031,14,1,f +13496,3032,0,2,f +13496,3034,72,9,f +13496,3035,0,2,f +13496,30396,14,1,f +13496,30414,1,8,f +13496,3068b,0,2,f +13496,3176,0,4,f +13496,32009,71,2,f +13496,32012,72,1,f +13496,32018,14,4,f +13496,32039,0,1,f +13496,32054,71,12,f +13496,32062,4,33,f +13496,32123b,71,2,f +13496,32123b,71,1,t +13496,32348,14,2,f +13496,32526,14,4,f +13496,32530,72,2,f +13496,32532,0,3,f +13496,32556,19,1,f +13496,33299a,0,1,f +13496,3460,72,6,f +13496,3460,14,1,f +13496,3622,14,4,f +13496,3626bpr0126,14,1,f +13496,3626bpr0282,14,1,f +13496,3647,72,2,f +13496,3673,71,4,f +13496,3673,71,1,t +13496,3684,14,2,f +13496,3705,0,3,f +13496,3710,72,10,f +13496,3713,4,2,f +13496,3713,4,1,t +13496,3747b,72,2,f +13496,3749,19,4,f +13496,3794b,15,2,f +13496,3795,1,2,f +13496,3833,4,2,f +13496,3894,0,3,f +13496,3962b,0,1,f +13496,4085b,0,2,f +13496,4162,14,2,f +13496,41669,0,2,f +13496,41677,71,8,f +13496,41678,14,1,f +13496,41766,0,4,f +13496,42610,71,9,f +13496,4274,1,8,f +13496,4274,1,1,t +13496,4282,72,4,f +13496,43093,1,9,f +13496,43337,0,1,f +13496,4515,14,2,f +13496,45677,14,1,f +13496,47457,14,4,f +13496,48336,0,5,f +13496,4865a,0,2,f +13496,4872,40,1,f +13496,50304,14,2,f +13496,50305,14,2,f +13496,51739,14,4,f +13496,52107,0,1,f +13496,53586,135,2,f +13496,54200,182,2,f +13496,54200,182,1,t +13496,55013,72,3,f +13496,56823c200,0,1,f +13496,57518,72,2,t +13496,57518,72,60,f +13496,57520,0,4,f +13496,57894,15,1,f +13496,57895,47,1,f +13496,58176,182,4,f +13496,60169,72,1,f +13496,60470a,71,5,f +13496,60583a,0,4,f +13496,60594,0,2,f +13496,60616a,47,1,f +13496,6079,15,1,f +13496,60800b,72,4,f +13496,6141,15,1,t +13496,6141,15,1,f +13496,6179,0,1,f +13496,6180,14,6,f +13496,6231,0,2,f +13496,6232,14,11,f +13496,62462,14,2,f +13496,64448,14,10,f +13496,64449,14,4,f +13496,6536,72,4,f +13496,6541,2,18,f +13496,6628,0,1,f +13496,6636,72,2,f +13496,7632stk01,9999,1,t +13496,970c00,72,1,f +13496,970x199,25,1,f +13496,973pr1163c01,272,1,f +13496,973pr1182c01,25,1,f +13498,11439pat0001,46,1,f +13498,11476,71,2,f +13498,11477,308,2,f +13498,11477,72,2,f +13498,11477,2,1,f +13498,14181,0,1,f +13498,14418,71,2,f +13498,14682,71,2,f +13498,15068,72,1,f +13498,15068,0,3,f +13498,15439,0,1,t +13498,15439,0,1,f +13498,15573,0,2,f +13498,15706,70,2,f +13498,15706,0,2,f +13498,15712,0,9,f +13498,18041,179,1,f +13498,18041,179,1,t +13498,18394pat0001,36,2,f +13498,18671,72,1,f +13498,19857pat0007,0,1,f +13498,23984,148,1,f +13498,23984,15,2,f +13498,23985,15,1,f +13498,2412b,25,4,f +13498,2412b,0,3,f +13498,2431,0,2,f +13498,2445,70,1,f +13498,2489,308,2,f +13498,2526,288,1,t +13498,2526,288,1,f +13498,2561,70,1,t +13498,2561,70,2,f +13498,2562,70,1,t +13498,2562,70,6,f +13498,2780,0,4,f +13498,2780,0,1,t +13498,3002,0,1,f +13498,3004,0,1,f +13498,30044,484,4,f +13498,30046,0,4,f +13498,30162,297,1,f +13498,30170,72,1,f +13498,30170,72,1,t +13498,3020,25,2,f +13498,3020,72,1,f +13498,3020,484,2,f +13498,3020,70,2,f +13498,3021,0,1,f +13498,3022,0,1,f +13498,3022,70,1,f +13498,3022,25,2,f +13498,3022,72,2,f +13498,3023,72,1,f +13498,3023,25,6,f +13498,3024,0,2,f +13498,3024,0,1,t +13498,3034,72,2,f +13498,3034,70,1,f +13498,3069b,72,1,f +13498,32124,0,2,f +13498,3626cpr1366,14,1,f +13498,3626pr1549,14,1,f +13498,3660,70,1,f +13498,3666,0,2,f +13498,3678b,72,1,f +13498,3701,70,4,f +13498,3839b,71,1,f +13498,3839b,0,1,f +13498,4032a,484,2,f +13498,42023,72,2,f +13498,43713,70,1,f +13498,43722,484,1,f +13498,43723,484,1,f +13498,44661,72,1,f +13498,44676,72,4,f +13498,4477,0,2,f +13498,4595,0,1,f +13498,4596,71,1,f +13498,4738a,70,2,f +13498,4739a,70,2,f +13498,4871,70,2,f +13498,50304,72,1,f +13498,50304,0,1,f +13498,50305,0,1,f +13498,50305,72,1,f +13498,51739,0,1,f +13498,53454,148,2,f +13498,54200,308,6,f +13498,54200,308,1,t +13498,54383,71,1,f +13498,54384,71,1,f +13498,60849,71,2,f +13498,60849,71,1,t +13498,60897,72,6,f +13498,61072,179,1,f +13498,6117,297,1,f +13498,61252,15,2,f +13498,61409,484,2,f +13498,6141,42,1,f +13498,6141,42,1,t +13498,63864,0,2,f +13498,64644,297,1,f +13498,64648,25,2,f +13498,64728,4,2,f +13498,6541,71,2,f +13498,6628,0,2,f +13498,6636,0,2,f +13498,85959pat0003,36,1,f +13498,87079,25,1,f +13498,88072,72,2,f +13498,90194,0,1,f +13498,92280,0,2,f +13498,92338,179,2,f +13498,92579,40,1,f +13498,92691,15,2,f +13498,93058b,297,2,t +13498,93058b,297,2,f +13498,93560,288,1,f +13498,95344,297,1,f +13498,95344,297,1,t +13498,95354,0,2,f +13498,970c00pr0881,0,1,f +13498,970pr6135528c01,320,1,f +13498,970x192pr0001,70,1,f +13498,973pr6134234c01,0,1,f +13498,98137,25,2,f +13498,98138,34,1,t +13498,98138,34,1,f +13498,98138pr9999,36,1,f +13498,98138pr9999,36,1,t +13498,99207,25,4,f +13498,99207,0,2,f +13498,99780,72,2,f +13498,99781,0,2,f +13499,3003,4,2,f +13499,3004,0,1,f +13499,3004,4,2,f +13499,3005,4,2,f +13499,3005,1,2,f +13499,3008,1,6,f +13499,3009,1,1,f +13499,3009,0,3,f +13499,3010,0,1,f +13499,3010,1,8,f +13499,3010,4,2,f +13499,3020,7,9,f +13499,3020,0,2,f +13499,3021,7,2,f +13499,3021,1,3,f +13499,3021,4,2,f +13499,3022,4,3,f +13499,3022,7,15,f +13499,3022,0,1,f +13499,3023,0,3,f +13499,3023,1,6,f +13499,3023,7,8,f +13499,3024,36,2,f +13499,3024,4,4,f +13499,3031,7,1,f +13499,3031,4,1,f +13499,3032,7,1,f +13499,3032,4,1,f +13499,3032,0,1,f +13499,3035,0,1,f +13499,3035,4,1,f +13499,3036,1,3,f +13499,3037,1,4,f +13499,3039,7,1,f +13499,3040b,1,4,f +13499,3040b,0,2,f +13499,3040b,4,6,f +13499,3065,36,1,f +13499,3065,46,2,f +13499,3149c01,7,1,f +13499,3297,1,3,f +13499,3298,1,2,f +13499,3460,1,2,f +13499,3460,4,3,f +13499,3622,1,4,f +13499,3623,4,4,f +13499,3623,1,1,f +13499,3623,0,2,f +13499,3633,1,1,f +13499,3647,7,1,f +13499,3648a,7,4,f +13499,3649,7,1,f +13499,3651,7,16,f +13499,3652,7,1,f +13499,3660,0,2,f +13499,3660,7,3,f +13499,3660,1,8,f +13499,3665,4,8,f +13499,3666,0,1,f +13499,3666,4,6,f +13499,3666,7,11,f +13499,3666,1,4,f +13499,3673,7,20,f +13499,3700,1,8,f +13499,3701,1,3,f +13499,3702,1,4,f +13499,3703,1,4,f +13499,3704,0,4,f +13499,3705,0,5,f +13499,3706,0,4,f +13499,3707,0,6,f +13499,3709,1,5,f +13499,3710,0,29,f +13499,3710,1,2,f +13499,3710,7,9,f +13499,3711a,0,32,f +13499,3713,7,20,f +13499,3738,1,2,f +13499,3739,7,3,f +13499,3740,0,3,f +13499,3749,7,2,f +13499,3795,0,3,f +13499,3795,4,1,f +13499,3795,7,8,f +13499,3795,1,2,f +13499,3832,1,4,f +13499,3894,1,2,f +13499,3895,1,4,f +13499,3900,7,2,f +13499,3937,7,2,f +13499,3938,7,2,f +13499,4019,7,4,f +13499,71509,0,1,f +13500,10247,4,8,f +13500,11211,19,1,f +13500,11291,1,1,f +13500,11291,0,1,f +13500,11303,4,1,f +13500,11477,71,18,f +13500,14520,72,2,f +13500,14520,4,2,f +13500,14898,9999,1,t +13500,15118,71,4,f +13500,2412b,14,2,f +13500,2412b,71,2,f +13500,2419,72,3,f +13500,2431,0,2,f +13500,2431,1,2,f +13500,2432,14,5,f +13500,2432,0,1,f +13500,2432,4,1,f +13500,2445,0,2,f +13500,2508,0,1,f +13500,2654,15,8,f +13500,2780,0,18,f +13500,2780,0,2,t +13500,2817,71,8,f +13500,2926,0,2,f +13500,30000,72,2,f +13500,3004,15,2,f +13500,3004,14,2,f +13500,3020,4,1,f +13500,3022,14,2,f +13500,3023,36,8,f +13500,3024,182,2,t +13500,3024,182,4,f +13500,3028,72,2,f +13500,3032,72,4,f +13500,3034,72,1,f +13500,3035,14,2,f +13500,30350b,72,4,f +13500,30414,4,1,f +13500,3068b,1,1,f +13500,3068b,0,4,f +13500,3069b,71,1,f +13500,32013,14,16,f +13500,32028,0,2,f +13500,3460,4,2,f +13500,3623,0,2,f +13500,3626cpr0499,14,2,f +13500,3626cpr1664,14,1,f +13500,3665,0,2,f +13500,3666,72,4,f +13500,3706,0,8,f +13500,3710,71,1,f +13500,3710,4,13,f +13500,3710,72,3,f +13500,3795,14,2,f +13500,3821,1,1,f +13500,3821,14,1,f +13500,3821,0,1,f +13500,3822,1,1,f +13500,3822,0,1,f +13500,3822,14,1,f +13500,3829c01,4,2,f +13500,3829c01,0,1,f +13500,3899,4,1,f +13500,4162,71,1,f +13500,4176,47,1,f +13500,41769,14,1,f +13500,41770,14,1,f +13500,42446,71,1,t +13500,42446,71,2,f +13500,42610,71,2,f +13500,4282,72,1,f +13500,43093,1,4,f +13500,44301a,72,4,f +13500,4449,0,1,f +13500,4488,71,2,f +13500,47456,0,2,f +13500,47457,71,2,f +13500,50745,1,4,f +13500,50745,0,6,f +13500,50950,0,2,f +13500,50950,1,2,f +13500,52031,14,1,f +13500,52036,72,2,f +13500,52501,4,2,f +13500,52501,1,2,f +13500,54200,36,4,f +13500,54200,36,1,t +13500,54200,47,2,t +13500,54200,47,6,f +13500,57783,40,2,f +13500,59443,4,2,f +13500,6014b,15,4,f +13500,6014b,71,10,f +13500,60478,72,10,f +13500,61252,0,2,f +13500,6141,46,1,t +13500,6141,46,4,f +13500,6157,71,4,f +13500,6231,0,2,f +13500,6231,1,2,f +13500,63082,0,1,f +13500,63864,71,4,f +13500,6541,14,2,f +13500,85984,14,4,f +13500,87079,71,6,f +13500,87079,72,2,f +13500,87079,14,1,f +13500,87609,0,1,f +13500,87609,14,2,f +13500,87697,0,14,f +13500,88072,14,2,f +13500,92081,308,1,f +13500,93273,1,2,f +13500,93273,0,2,f +13500,970c00,272,1,f +13500,970c00,379,1,f +13500,973pr1776c01,272,1,f +13500,973pr2500c01,1,1,f +13500,98280,14,1,f +13501,2528pr0001,0,1,f +13501,30154,72,1,f +13501,3626bpr0564,14,1,f +13501,3626bpr0892,14,1,f +13501,3626cpr0389,14,1,f +13501,3837,72,1,f +13501,3852b,191,1,f +13501,40233,28,1,f +13501,62696,308,1,f +13501,970c00,1,1,f +13501,970c00,272,1,f +13501,970d09,0,1,f +13501,973pb1133c01,0,1,f +13501,973pb1134c01,15,1,f +13501,973pb1135c01,15,1,f +13505,3482,7,50,f +13506,2456,0,1,f +13506,3001,0,1,f +13506,3003,0,3,f +13506,6213pb02,4,1,f +13506,6215,2,2,f +13506,6216p01,4,1,f +13507,11252,15,1,f +13507,11253,5,2,f +13507,13785,84,1,f +13507,2343,47,1,f +13507,3626cpr1241,14,1,f +13507,6254,29,1,f +13507,88646,0,1,f +13507,970c00pr0528,226,1,f +13507,973pr2413c01,226,1,f +13508,10201,0,4,f +13508,10247,15,1,f +13508,11153,0,2,f +13508,11211,15,2,f +13508,11214,72,27,f +13508,11303,272,1,f +13508,11458,0,2,f +13508,11477,2,4,f +13508,11478,71,4,f +13508,11954,4,4,f +13508,14395,70,2,f +13508,14417,72,3,f +13508,14704,71,3,f +13508,14769,72,2,f +13508,14769,70,3,f +13508,14769,15,3,f +13508,14769,14,1,f +13508,14769,0,1,f +13508,14769pr1003,15,2,f +13508,15068,72,1,f +13508,15068,15,2,f +13508,15100,0,22,f +13508,15458,15,1,f +13508,15535,72,1,f +13508,15573,0,4,f +13508,15573,72,2,f +13508,15573,1,3,f +13508,15573,71,6,f +13508,15573,70,2,f +13508,15573,15,5,f +13508,16091,71,2,f +13508,18575,0,4,f +13508,18651,0,6,f +13508,18654,72,7,f +13508,18938,0,1,f +13508,18939,71,1,f +13508,18948,15,10,f +13508,2357,4,2,f +13508,2412b,70,6,f +13508,2419,28,1,f +13508,2420,71,2,f +13508,2420,0,2,f +13508,2423,326,2,f +13508,2460,0,4,f +13508,2476a,71,1,f +13508,2540,4,1,f +13508,2654,0,3,f +13508,2654,29,3,f +13508,2654,19,7,f +13508,2736,71,2,f +13508,2780,0,212,f +13508,2817,71,12,f +13508,2926,0,1,f +13508,298c02,0,2,f +13508,30000,1,1,f +13508,3001,15,1,f +13508,3001,72,4,f +13508,3001,71,1,f +13508,3001,1,4,f +13508,3002,71,1,f +13508,3002,29,1,f +13508,3002,70,1,f +13508,3002,15,3,f +13508,3003,15,3,f +13508,3003,71,2,f +13508,3003,4,1,f +13508,3003,70,3,f +13508,3003,0,8,f +13508,3004,14,2,f +13508,3004,71,4,f +13508,3004,15,7,f +13508,3004,19,5,f +13508,3004,70,1,f +13508,3004,1,1,f +13508,3005,71,4,f +13508,3005,72,8,f +13508,3005,0,2,f +13508,3008,72,2,f +13508,3008,19,14,f +13508,3008,0,1,f +13508,3009,19,3,f +13508,3010,29,1,f +13508,3010,19,3,f +13508,3010,72,3,f +13508,30136,0,4,f +13508,30176,2,4,f +13508,3020,15,10,f +13508,3020,2,3,f +13508,3020,4,1,f +13508,3020,1,1,f +13508,3020,19,1,f +13508,3020,0,6,f +13508,3021,15,3,f +13508,3021,70,2,f +13508,3021,0,6,f +13508,3021,71,1,f +13508,3022,2,6,f +13508,3022,4,1,f +13508,3022,1,2,f +13508,3022,71,4,f +13508,3022,19,5,f +13508,3022,72,1,f +13508,3022,70,3,f +13508,3022,15,3,f +13508,3022,0,6,f +13508,3023,71,1,f +13508,3023,4,3,f +13508,3023,0,24,f +13508,3023,15,4,f +13508,3023,2,12,f +13508,3023,19,1,f +13508,3023,72,1,f +13508,3024,4,1,f +13508,3024,0,1,f +13508,3024,15,2,f +13508,3024,2,4,f +13508,3034,72,1,f +13508,3034,14,1,f +13508,3035,19,8,f +13508,3035,0,4,f +13508,3036,72,1,f +13508,3036,19,1,f +13508,3036,71,5,f +13508,3036,2,4,f +13508,3036,1,1,f +13508,30363,1,1,f +13508,30363,71,2,f +13508,30363,14,1,f +13508,30367c,0,2,f +13508,30367c,71,1,f +13508,3037,1,6,f +13508,3039,71,8,f +13508,3039,0,3,f +13508,3039,72,8,f +13508,3039,4,1,f +13508,3039,70,1,f +13508,3040b,0,4,f +13508,3040b,15,4,f +13508,30414,19,3,f +13508,30504,19,2,f +13508,30553,0,1,f +13508,3062b,19,2,f +13508,3068b,0,1,f +13508,3068b,1,1,f +13508,3068b,70,1,f +13508,3068b,4,1,f +13508,3069b,4,2,f +13508,3069b,0,4,f +13508,3069b,29,2,f +13508,3176,15,2,f +13508,3176,71,4,f +13508,3176,0,2,f +13508,32000,0,8,f +13508,32000,71,1,f +13508,32001,71,1,f +13508,32001,4,1,f +13508,32002,19,2,f +13508,32013,0,1,f +13508,32013,71,1,f +13508,32014,71,6,f +13508,32034,71,5,f +13508,32039,71,13,f +13508,32054,71,12,f +13508,32054,4,10,f +13508,32056,0,4,f +13508,32062,4,31,f +13508,32063,71,2,f +13508,32073,71,6,f +13508,32073,14,5,f +13508,32123b,71,7,f +13508,32140,1,4,f +13508,32140,0,2,f +13508,32140,4,4,f +13508,32140,15,9,f +13508,32140,71,4,f +13508,32184,71,2,f +13508,32184,0,11,f +13508,32192,72,3,f +13508,32270,0,4,f +13508,32271,14,4,f +13508,32278,4,1,f +13508,32278,0,21,f +13508,32278,71,5,f +13508,32278,15,4,f +13508,32293,0,1,f +13508,32316,71,8,f +13508,32316,1,6,f +13508,32316,14,5,f +13508,32316,0,7,f +13508,32316,15,10,f +13508,32316,4,6,f +13508,32348,0,4,f +13508,32348,4,3,f +13508,32449,0,2,f +13508,32449,14,2,f +13508,32523,15,2,f +13508,32523,0,8,f +13508,32523,71,15,f +13508,32523,14,7,f +13508,32524,71,13,f +13508,32524,1,1,f +13508,32524,0,2,f +13508,32524,4,2,f +13508,32525,1,2,f +13508,32525,0,15,f +13508,32525,71,20,f +13508,32525,4,2,f +13508,32526,15,5,f +13508,32526,0,6,f +13508,32526,71,1,f +13508,32556,19,1,f +13508,3298,70,1,f +13508,3298,72,3,f +13508,3298,15,2,f +13508,3460,72,6,f +13508,3460,19,2,f +13508,3623,15,2,f +13508,3626cpr1144,14,1,f +13508,3626cpr1776,14,1,f +13508,3660,1,1,f +13508,3660,15,6,f +13508,3660,14,1,f +13508,3660,0,1,f +13508,3660,71,5,f +13508,3665,72,4,f +13508,3665,71,6,f +13508,3665,29,6,f +13508,3665,15,1,f +13508,3665,0,4,f +13508,3666,72,2,f +13508,3666,29,2,f +13508,3673,71,12,f +13508,3678b,0,1,f +13508,3700,19,2,f +13508,3700,70,11,f +13508,3700,4,1,f +13508,3700,72,4,f +13508,3700,0,1,f +13508,3702,71,10,f +13508,3706,4,3,f +13508,3707,0,7,f +13508,3707,4,3,f +13508,3708,0,1,f +13508,3709,72,2,f +13508,3710,19,2,f +13508,3710,29,7,f +13508,3710,0,2,f +13508,3710,4,2,f +13508,3713,4,2,f +13508,3713,71,6,f +13508,3737,4,2,f +13508,3747a,71,2,f +13508,3747a,14,1,f +13508,3747a,1,1,f +13508,3749,19,16,f +13508,3795,29,3,f +13508,3795,2,4,f +13508,3795,15,6,f +13508,3795,0,2,f +13508,3795,72,6,f +13508,3941,14,2,f +13508,3941,0,1,f +13508,3941,15,6,f +13508,3941,70,6,f +13508,3942c,0,1,f +13508,4032a,72,2,f +13508,4032a,19,1,f +13508,4032a,2,9,f +13508,4032a,71,1,f +13508,4032a,15,2,f +13508,4032a,0,3,f +13508,40490,4,2,f +13508,40490,15,18,f +13508,40490,1,3,f +13508,40490,0,20,f +13508,40490,71,3,f +13508,4070,19,2,f +13508,4070,72,2,f +13508,4081b,0,1,f +13508,41239,71,4,f +13508,41239,72,4,f +13508,41539,19,3,f +13508,4162,19,2,f +13508,4162,4,3,f +13508,41669,4,1,f +13508,42003,71,11,f +13508,42003,0,4,f +13508,42610,71,9,f +13508,4274,1,14,f +13508,4286,2,5,f +13508,4286,71,4,f +13508,43093,1,59,f +13508,43710,0,1,f +13508,43711,0,1,f +13508,43722,0,1,f +13508,43723,0,1,f +13508,44294,71,2,f +13508,44294,14,4,f +13508,44301a,15,1,f +13508,44728,14,2,f +13508,44728,0,8,f +13508,44728,15,2,f +13508,4477,70,2,f +13508,4519,14,3,f +13508,4519,71,17,f +13508,45590,0,4,f +13508,45677,15,4,f +13508,4624,15,2,f +13508,47905,4,1,f +13508,48336,19,1,f +13508,48336,0,1,f +13508,48989,71,8,f +13508,49668,0,2,f +13508,49668,179,6,f +13508,50950,29,6,f +13508,50950,0,2,f +13508,50950,2,6,f +13508,50950,15,4,f +13508,51739,0,2,f +13508,54200,15,2,f +13508,54200,4,2,f +13508,54200,0,2,f +13508,54200,29,4,f +13508,59349,47,4,f +13508,59426,72,1,f +13508,59443,71,10,f +13508,59443,0,12,f +13508,59443,4,5,f +13508,59443,14,6,f +13508,59895,0,2,f +13508,59900,15,1,f +13508,59900,2,2,f +13508,60470a,0,1,f +13508,60471,15,1,f +13508,60474,15,2,f +13508,60478,0,2,f +13508,60478,4,1,f +13508,60483,72,1,f +13508,60483,71,7,f +13508,60484,71,6,f +13508,60485,14,4,f +13508,60485,71,1,f +13508,60897,71,8,f +13508,61252,0,4,f +13508,61409,71,4,f +13508,6141,72,4,f +13508,6232,15,1,f +13508,6232,4,1,f +13508,6232,72,2,f +13508,62462,15,4,f +13508,62462,0,20,f +13508,62462,71,2,f +13508,62531,15,2,f +13508,63868,0,4,f +13508,63868,4,2,f +13508,63869,71,4,f +13508,63869,0,1,f +13508,64178,71,1,f +13508,64179,71,4,f +13508,64393,15,1,f +13508,64681,15,1,f +13508,64782,2,10,f +13508,64782,15,6,f +13508,64782,71,6,f +13508,6536,14,1,f +13508,6536,72,9,f +13508,6536,71,2,f +13508,6541,1,4,f +13508,6541,0,4,f +13508,6541,4,2,f +13508,6553,0,4,f +13508,6558,1,181,f +13508,6587,28,1,f +13508,6628,0,4,f +13508,6629,0,1,f +13508,6629,15,4,f +13508,6632,71,12,f +13508,6632,72,8,f +13508,6636,19,4,f +13508,73983,2,5,f +13508,73983,72,1,f +13508,73983,0,4,f +13508,73983,15,4,f +13508,78c18,179,7,f +13508,85861,0,16,f +13508,85861,71,4,f +13508,85984,14,1,f +13508,85984,4,1,f +13508,85984,1,1,f +13508,85984,71,5,f +13508,85984,0,4,f +13508,87081,70,12,f +13508,87082,71,1,f +13508,87083,72,3,f +13508,87087,15,6,f +13508,87087,14,2,f +13508,87087,71,14,f +13508,87087,1,2,f +13508,87087,29,2,f +13508,87618,71,6,f +13508,87620,0,4,f +13508,87994,15,1,f +13508,88286,308,1,f +13508,92582,0,1,f +13508,92586pr0001,84,1,f +13508,93606,15,3,f +13508,93606,2,2,f +13508,96874,25,1,t +13508,970c00,1,1,f +13508,970c00,272,1,f +13508,973pr1241c01,15,1,f +13508,973pr1697c01,73,1,f +13508,98138,36,2,f +13508,98138pr0008,15,32,f +13508,98138pr0012,179,8,f +13508,98560,2,2,f +13508,99008,19,9,f +13508,99009,71,1,f +13508,99010,0,1,f +13508,99207,0,4,f +13508,99780,0,5,f +13508,99780,15,4,f +13508,99780,2,2,f +13508,99781,0,2,f +13509,3022,15,2,f +13509,30488c01,15,1,f +13509,32001,0,1,f +13509,32250,15,2,f +13509,3707,0,2,f +13509,3901,0,1,t +13509,6141,47,2,f +13509,6141,47,2,t +13509,72824p01,15,1,f +13510,3701,0,30,f +13511,10p02,2,1,f +13511,3001a,1,9,f +13511,3001a,15,1,f +13511,3002a,15,2,f +13511,3002a,0,1,f +13511,3002a,1,2,f +13511,3002apb06,15,2,f +13511,3003,1,1,f +13511,3004,47,2,f +13511,3004,1,5,f +13511,3005,1,6,f +13511,3005,47,1,f +13511,3006,1,2,f +13511,3007,1,2,f +13511,3008,15,1,f +13511,3008,1,5,f +13511,3008pb020,0,1,f +13511,3009,1,1,f +13511,3009p27,15,2,f +13511,3010,1,18,f +13511,3010,15,1,f +13511,3010p30,1,1,f +13511,3010pb036u,15,1,f +13511,3023,0,1,f +13511,3024,1,1,f +13511,3029,1,1,f +13511,3030,0,2,f +13511,3030,1,1,f +13511,3031,0,1,f +13511,3033,0,2,f +13511,3035,1,2,f +13511,3037,47,2,f +13511,3040a,0,1,f +13511,3040a,47,3,f +13511,3068a,7,32,f +13511,3068a,0,7,f +13511,3069a,14,14,f +13511,3070a,4,4,f +13511,3081cc01,15,2,f +13511,3137c01,0,2,f +13511,3139,0,4,f +13511,3144,15,1,f +13511,32bc01,15,2,f +13511,33bc01,15,2,f +13511,3460,15,6,f +13511,3461,15,1,f +13511,3462,0,1,f +13511,453cc01,15,2,f +13511,604c01,15,2,f +13511,645cc01,15,2,f +13511,675pr02,15,1,f +13512,3001a,0,8,f +13512,3001a,1,10,f +13512,3001a,4,10,f +13512,3001a,14,10,f +13512,3001a,15,10,f +13512,3001a,47,2,f +13512,3002a,14,2,f +13512,3002a,4,2,f +13512,3002a,15,2,f +13512,3002a,1,2,f +13512,3003,1,4,f +13512,3003,4,4,f +13512,3003,15,4,f +13512,3003,14,4,f +13512,3003,0,4,f +13512,3003,47,2,f +13512,3004,4,4,f +13512,3004,15,4,f +13512,3004,14,4,f +13512,3004,0,2,f +13512,3004,1,4,f +13512,3007,4,2,f +13512,3008,1,2,f +13512,3008,15,2,f +13512,3009,14,2,f +13512,3009,15,2,f +13512,3010,15,4,f +13512,3021,0,2,f +13512,3033,4,1,f +13512,3034,15,2,f +13512,3035,1,1,f +13512,3039,0,4,f +13512,3081cc01,4,3,f +13512,3137c01,0,4,f +13512,3297,4,10,f +13512,3298,4,5,f +13512,3299,4,2,f +13512,3307,15,2,f +13512,3471,2,2,f +13512,3579,4,2,f +13512,3581,4,6,f +13512,3582,1,6,f +13512,3612,0,2,f +13512,3612,1,2,f +13512,3613,0,2,f +13512,3613,1,2,f +13512,3614a,14,4,f +13512,3641,0,8,f +13512,3660,0,4,f +13512,453cc01,4,2,f +13512,685px2,14,1,f +13512,685px4,14,1,f +13512,700ed2,2,1,f +13512,792c03,0,1,f +13512,792c03,1,1,f +13512,7930,1,2,f +13512,x196,0,1,f +13512,x197,6,1,f +13512,x197bun,7,1,f +13514,2456,15,2,f +13514,2456,1,2,f +13514,2456,14,2,f +13514,2456,4,1,f +13514,3001,4,6,f +13514,3001,14,6,f +13514,3001,0,3,f +13514,3001,1,6,f +13514,3001,2,3,f +13514,3001,25,4,f +13514,3001,15,6,f +13514,3001,73,4,f +13514,3002,4,6,f +13514,3002,0,3,f +13514,3002,15,6,f +13514,3002,14,6,f +13514,3002,2,3,f +13514,3002,25,4,f +13514,3002,1,6,f +13514,3002,73,4,f +13514,3003,4,16,f +13514,3003,0,8,f +13514,3003,15,16,f +13514,3003,2,8,f +13514,3003,1,16,f +13514,3003,14,16,f +13514,3003,73,12,f +13514,3003,25,14,f +13514,3004,2,10,f +13514,3004,73,20,f +13514,3004,4,20,f +13514,3004,14,20,f +13514,3004,25,20,f +13514,3004,0,10,f +13514,3004,1,20,f +13514,3004,15,20,f +13514,3005,2,6,f +13514,3005,0,6,f +13514,3005,14,10,f +13514,3005,25,6,f +13514,3005,4,10,f +13514,3005,1,10,f +13514,3005,15,10,f +13514,3005,73,6,f +13514,3007,4,1,f +13514,3007,1,1,f +13514,3007,15,1,f +13514,3007,14,1,f +13514,3008,1,2,f +13514,3008,14,2,f +13514,3008,4,1,f +13514,3008,15,2,f +13514,3009,14,2,f +13514,3009,1,3,f +13514,3009,4,2,f +13514,3009,15,3,f +13514,3010,4,3,f +13514,3010,0,2,f +13514,3010,15,3,f +13514,3010,14,3,f +13514,3010,1,3,f +13514,3010,2,2,f +13514,3622,2,2,f +13514,3622,4,4,f +13514,3622,14,4,f +13514,3622,0,2,f +13514,3622,1,4,f +13514,3622,15,4,f +13517,132a,0,4,f +13517,242c01,4,4,f +13517,3001a,1,18,f +13517,3001a,4,3,f +13517,3002a,1,11,f +13517,3002a,15,3,f +13517,3003,15,7,f +13517,3003,47,3,f +13517,3003,1,25,f +13517,3004,0,4,f +13517,3004,15,7,f +13517,3004,1,19,f +13517,3005,1,8,f +13517,3006,1,1,f +13517,3007,1,12,f +13517,3008,1,10,f +13517,3009,1,2,f +13517,3009,4,1,f +13517,3009p01,1,1,f +13517,3010,1,7,f +13517,3020,1,7,f +13517,3021,15,7,f +13517,3021,1,4,f +13517,3021,0,2,f +13517,3022,1,5,f +13517,3022,15,4,f +13517,3022,14,2,f +13517,3022,0,3,f +13517,3023,15,8,f +13517,3023,1,17,f +13517,3023,0,1,f +13517,3023,4,2,f +13517,3024,1,8,f +13517,3024,1,1,t +13517,3027,1,1,f +13517,3031,15,1,f +13517,3032,1,4,f +13517,3039,1,43,f +13517,3039,47,2,f +13517,3040a,1,4,f +13517,3062a,47,4,f +13517,3062a,14,2,f +13517,3062a,15,22,f +13517,3068b,1,2,f +13517,3069a,1,7,f +13517,3144,79,1,f +13517,3149c01,14,1,f +13517,3455,1,4,f +13517,3460,1,4,f +13517,3460,15,2,f +13517,3461,15,1,f +13517,3462,15,1,f +13517,3475a,7,4,f +13517,3596,15,1,f +13517,3612,15,6,f +13517,3613,15,6,f +13517,3614a,14,6,f +13517,420,14,1,f +13517,685px4,14,3,f +13517,7049b,0,4,f +13517,792c03,15,3,f +13517,x197,6,3,f +13520,468c03,7,1,f +13522,11211,71,2,f +13522,14769,71,1,f +13522,15391,0,2,f +13522,15392,72,2,f +13522,3022,0,1,f +13522,3941,72,2,f +13522,51739,71,2,f +13522,6141,36,4,f +13522,6141,41,4,f +13523,32342c01,2,1,f +13524,10201,15,1,f +13524,10201,70,1,f +13524,11055,4,1,f +13524,11211,15,2,f +13524,11458,72,2,f +13524,11477,27,1,f +13524,11477,2,2,f +13524,11477,1,2,f +13524,13965,70,2,f +13524,14704,71,1,f +13524,14719,73,2,f +13524,15068,15,1,f +13524,15279,10,2,f +13524,15332,0,3,f +13524,15396,4,1,f +13524,15456,0,1,f +13524,15712,0,1,f +13524,17454,15,4,f +13524,17457,47,4,f +13524,18674,70,1,f +13524,18674,4,1,f +13524,18677,71,2,f +13524,20309,15,1,f +13524,20310,15,2,f +13524,22484,72,10,f +13524,23443,0,1,f +13524,2357,320,3,f +13524,2357,70,3,f +13524,2357,19,17,f +13524,23950,72,2,f +13524,23969,71,2,f +13524,2412b,71,1,f +13524,2420,0,2,f +13524,2420,72,2,f +13524,2420,272,2,f +13524,2423,27,4,f +13524,24246,15,1,t +13524,24246,15,4,f +13524,24299,15,1,f +13524,24307,15,1,f +13524,2431,84,4,f +13524,2431,72,4,f +13524,2431,0,1,f +13524,2431,15,1,f +13524,2431,288,2,f +13524,2456,0,1,f +13524,2540,4,1,f +13524,2780,0,1,t +13524,2780,0,3,f +13524,298c02,15,1,t +13524,298c02,15,1,f +13524,3001,0,1,f +13524,30031,71,1,f +13524,3004,320,9,f +13524,3004,15,1,f +13524,3004,19,14,f +13524,3004,378,5,f +13524,3004,71,4,f +13524,3005,378,4,f +13524,3005,0,4,f +13524,3005,320,6,f +13524,3005,19,10,f +13524,3005,71,4,f +13524,3005,70,3,f +13524,3009,0,2,f +13524,3009,320,1,f +13524,30095,0,1,f +13524,3010,0,1,f +13524,3010,320,4,f +13524,3010,378,6,f +13524,3010,19,20,f +13524,30176,2,1,f +13524,30179,0,1,f +13524,3020,72,2,f +13524,3020,71,1,f +13524,3020,15,3,f +13524,3022,15,2,f +13524,3022,0,1,f +13524,3023,378,3,f +13524,3023,272,2,f +13524,3023,0,1,f +13524,3023,27,5,f +13524,3023,321,2,f +13524,3023,19,3,f +13524,3023,320,2,f +13524,3023,15,4,f +13524,3024,72,3,f +13524,3024,0,6,f +13524,3024,0,2,t +13524,3024,15,3,f +13524,3024,72,2,t +13524,3024,15,1,t +13524,3030,72,2,f +13524,3033,72,2,f +13524,3034,71,2,f +13524,3035,71,1,f +13524,3037,70,4,f +13524,30374,70,1,f +13524,30377,0,1,t +13524,30377,0,4,f +13524,3039,70,1,f +13524,3040b,70,2,f +13524,3040b,0,3,f +13524,3062b,4,1,f +13524,3068b,0,1,f +13524,3069b,15,2,f +13524,3069b,4,1,f +13524,3069b,321,2,f +13524,3069b,40,1,f +13524,3069b,28,1,f +13524,32000,71,2,f +13524,32028,72,1,f +13524,32028,15,6,f +13524,3245c,0,2,f +13524,33291,212,1,t +13524,33291,4,1,t +13524,33291,10,1,t +13524,33291,191,2,f +13524,33291,191,1,t +13524,33291,4,3,f +13524,33291,212,2,f +13524,33291,10,3,f +13524,3460,15,2,f +13524,3464,15,2,f +13524,3622,0,2,f +13524,3622,71,2,f +13524,3622,70,1,f +13524,3622,19,6,f +13524,3623,0,4,f +13524,3623,27,1,f +13524,3623,15,3,f +13524,3626b,47,1,f +13524,3626cpr1087,14,1,f +13524,3626cpr1580,14,1,f +13524,3633,0,6,f +13524,3660,71,6,f +13524,3665,0,1,f +13524,3665,19,2,f +13524,3666,71,1,f +13524,3666,15,5,f +13524,3666,19,1,f +13524,3666,0,1,f +13524,3710,15,3,f +13524,3710,71,2,f +13524,3710,0,2,f +13524,3710,70,2,f +13524,3710,19,4,f +13524,3830,71,1,f +13524,3831,71,1,f +13524,3832,72,1,f +13524,3899,4,1,f +13524,3960,191,1,f +13524,4070,0,3,f +13524,4081b,0,2,f +13524,41539,71,2,f +13524,41539,2,1,f +13524,4162,71,2,f +13524,43093,1,1,f +13524,4449,70,1,f +13524,4477,70,1,f +13524,4490,15,1,f +13524,4510,72,3,f +13524,4533,15,1,f +13524,4599b,0,3,f +13524,4599b,15,1,t +13524,4599b,0,1,t +13524,4599b,15,1,f +13524,4733,15,1,f +13524,4740,0,1,f +13524,4740,72,1,f +13524,47905,4,4,f +13524,48729b,0,2,f +13524,48729b,0,1,t +13524,49668,191,1,f +13524,54200,46,1,t +13524,54200,46,1,f +13524,54200,182,1,f +13524,54200,15,4,f +13524,54200,182,1,t +13524,54200,1,1,f +13524,54200,15,1,t +13524,54200,1,1,t +13524,57894,15,2,f +13524,57895,47,2,f +13524,59895,0,2,f +13524,59900,0,12,f +13524,6020,0,1,f +13524,60470a,0,1,f +13524,60478,0,2,f +13524,60481,70,3,f +13524,60592,15,4,f +13524,60593,0,1,f +13524,60594,15,1,f +13524,60601,47,4,f +13524,60602,47,1,f +13524,60608,15,2,f +13524,60623,73,1,f +13524,6091,15,4,f +13524,6091,321,6,f +13524,6141,10,1,t +13524,6141,29,1,f +13524,6141,71,1,t +13524,6141,71,13,f +13524,6141,46,1,t +13524,6141,46,3,f +13524,6141,15,2,t +13524,6141,10,11,f +13524,6141,29,1,t +13524,6141,15,2,f +13524,6141,0,5,f +13524,6141,0,1,t +13524,6182,19,1,f +13524,62113,0,2,f +13524,63868,0,2,f +13524,64644,0,3,f +13524,6541,71,2,f +13524,6636,72,4,f +13524,73983,15,1,f +13524,85984,15,2,f +13524,85984,2,1,f +13524,87079,0,1,f +13524,87087,15,4,f +13524,87087,72,7,f +13524,87580,72,1,f +13524,87580,84,1,f +13524,87580,73,1,f +13524,87617,0,1,f +13524,87620,15,2,f +13524,87994,0,2,f +13524,87994,0,1,t +13524,91501,15,2,f +13524,92410,15,1,f +13524,92593,71,5,f +13524,92926,72,1,f +13524,92946,0,1,f +13524,93273,71,1,f +13524,93560,288,1,f +13524,95344,28,1,t +13524,95344,28,1,f +13524,96874,25,1,t +13524,970c00,272,1,f +13524,970c00,73,1,f +13524,973pr1585c01,25,1,f +13524,973pr1776c01,272,1,f +13524,98138,15,1,f +13524,98138,15,1,t +13524,98138,84,1,f +13524,98138,84,1,t +13524,98283,71,5,f +13524,99780,71,1,f +13525,3004,1,1,f +13525,3010,1,1,f +13525,3062b,34,1,f +13525,3069b,1,1,t +13525,3069b,1,1,f +13525,3795,15,1,f +13525,4085c,71,1,t +13525,4085c,71,1,f +13525,4095,0,1,f +13525,4599a,71,1,f +13525,4599a,71,1,t +13525,4735,71,1,t +13525,4735,71,1,f +13525,4865a,15,1,f +13526,2654,27,1,f +13526,3004,19,2,f +13526,3022,19,1,f +13526,30374,70,1,f +13526,4643703,9999,1,t +13526,4643704,9999,1,t +13526,4643705,9999,1,t +13526,4643706,9999,1,t +13526,4643707,9999,1,t +13526,92338,0,1,f +13526,970c00pr0261,272,1,f +13526,973pr1879c01,272,1,f +13526,98134,297,1,f +13526,98136,33,1,f +13526,98138pr0002,33,1,f +13526,98138pr0002,33,1,t +13526,98139,179,1,f +13526,98143pr0002,272,1,f +13526,98345pr0002,33,1,f +13526,98354pr0012,143,1,f +13527,10197,72,1,f +13527,11302pat0001,36,2,f +13527,15365pat0002,14,1,f +13527,15366,297,1,f +13527,15368,179,2,f +13527,15369,297,4,f +13527,15370pat0002,57,4,f +13527,15375pat01,46,1,f +13527,15462,28,1,f +13527,2780,0,2,f +13527,2853,14,1,f +13527,32016,0,3,f +13527,32034,0,2,f +13527,32039,0,3,f +13527,32062,4,7,f +13527,32523,0,1,f +13527,3673,71,2,f +13527,3708,0,1,f +13527,40490,0,1,f +13527,43093,1,2,f +13527,4519,71,2,f +13527,53562,0,2,f +13527,54271,148,1,f +13527,54821,4,1,f +13527,55013,72,2,f +13527,59443,0,3,f +13527,59443,14,1,f +13527,60484,0,1,f +13527,6558,1,4,f +13527,74261,72,4,f +13527,78c09,0,1,f +13527,90607,0,2,f +13527,90609,57,2,f +13527,90611,0,1,f +13527,90617,72,4,f +13527,90623,0,1,f +13527,90639pr0033,320,2,f +13527,90640,57,5,f +13527,90641,57,2,f +13527,90641,297,2,f +13527,93571,0,2,f +13527,93575,57,2,f +13527,98577,72,2,f +13528,14419,72,2,f +13528,14704,71,4,f +13528,15068,19,1,f +13528,15209,15,2,f +13528,15535,72,1,f +13528,18962,19,1,f +13528,2540,15,1,f +13528,2736,71,2,f +13528,3003,28,1,f +13528,30031,72,1,f +13528,3021,85,1,f +13528,3022,19,1,f +13528,3023,28,2,f +13528,3023,72,1,f +13528,30377,72,1,f +13528,32015,15,2,f +13528,32062,4,1,f +13528,3626cpr1572,14,1,f +13528,3700,72,2,f +13528,3960,28,1,f +13528,44728,71,1,f +13528,4740,72,1,f +13528,50745,72,2,f +13528,51739,28,1,f +13528,60752,28,1,f +13528,6141,85,1,f +13528,6628,0,2,f +13528,85984,28,2,f +13528,970c00pr0767,85,1,f +13528,973pr2852c01,14,1,f +13528,99207,71,1,f +13529,2300,4,1,f +13529,3011,1,2,f +13529,3011,4,2,f +13529,3011,14,2,f +13529,3011,2,2,f +13529,3437,1,6,f +13529,3437,2,6,f +13529,3437,73,4,f +13529,3437,14,6,f +13529,3437,25,4,f +13529,3437,4,6,f +13529,4066,4,2,f +13529,40666,73,2,f +13530,15577,484,3,f +13530,16434,85,1,f +13530,18918,15,1,f +13530,3437,5,1,f +13530,3437,191,1,f +13530,3437,322,1,f +13530,3437,226,1,f +13530,3437,158,1,f +13530,3437,29,1,f +13530,3437,27,1,f +13530,3664,4,1,f +13530,40666,4,1,f +13530,40666,70,1,f +13530,98220,25,1,f +13530,98220,5,1,f +13530,98220,158,1,f +13530,98220,226,1,f +13530,98220,29,1,f +13530,98223,70,1,f +13530,98224,25,1,f +13530,98225,19,1,f +13532,2470,6,2,f +13532,2540,4,1,f +13532,30103,8,1,f +13532,3023,4,1,f +13532,3069b,4,1,f +13532,3626bpx54,14,1,f +13532,3795,0,1,f +13532,3795,7,1,f +13532,3847,8,1,f +13532,4085c,4,2,f +13532,4497,6,1,f +13532,4600,0,1,f +13532,4738a,6,1,f +13532,4739a,6,1,f +13532,6122,0,1,f +13532,6141,33,1,t +13532,6141,46,2,f +13532,6141,46,1,t +13532,6141,33,2,f +13532,970x026,8,1,f +13532,973px90c01,0,1,f +13533,2654,0,1,f +13533,3004,70,2,f +13533,3022,70,1,f +13533,4631386,9999,1,f +13533,4631388,9999,1,f +13533,4631390,9999,1,f +13533,4631392,9999,1,f +13533,4631394,9999,1,f +13533,53451,15,1,f +13533,53705,297,2,f +13533,63965,297,1,f +13533,92338,72,1,f +13533,92547pr0018,35,1,f +13533,92690,71,1,f +13533,92691,15,1,f +13533,93057pr0001,0,1,f +13533,93062c01,15,4,t +13533,93062c01,15,2,f +13533,93065pr0001,15,1,f +13533,93609,15,4,t +13533,93609,15,2,f +13533,93763pr0003,15,1,f +13535,3087bc01,15,20,f +13535,3087bc01,4,20,f +13536,2793c01,14,1,f +13536,2797c02,14,1,f +13536,5102,7,1,f +13536,75215,7,1,f +13539,122c01,0,2,f +13539,14pb03,15,1,f +13539,3003,47,1,f +13539,3004,0,2,f +13539,3004,14,3,f +13539,3004,4,25,f +13539,3005,4,11,f +13539,3005,0,4,f +13539,3009,15,1,f +13539,3009,4,5,f +13539,3010,14,1,f +13539,3010,15,1,f +13539,3010,4,6,f +13539,3020,0,1,f +13539,3020,4,1,f +13539,3020,14,1,f +13539,3022,0,2,f +13539,3023,0,1,f +13539,3023,4,3,f +13539,3024,4,1,f +13539,3029,15,1,f +13539,3032,4,1,f +13539,3033,0,1,f +13539,3034,4,1,f +13539,3034,0,1,f +13539,3039,14,1,f +13539,3062a,0,4,f +13539,3069a,0,2,f +13539,3456,0,1,f +13539,3471,2,1,f +13539,3581,14,2,f +13539,3582,14,2,f +13539,3622,0,2,f +13539,3622,4,6,f +13539,3622,14,2,f +13539,3623,0,3,f +13539,3623,4,2,f +13539,3624,4,2,f +13539,3625,0,1,f +13539,3626apr0001,14,4,f +13539,3641,0,4,f +13539,3660,4,1,f +13539,3666,4,4,f +13539,3710,0,1,f +13539,3710,4,5,f +13539,3741,2,3,f +13539,3742,14,6,f +13539,3742,4,1,t +13539,3742,4,3,f +13539,3742,14,2,t +13539,3788,4,2,f +13539,3794a,0,1,f +13539,3821,4,3,f +13539,3822,4,3,f +13539,3823,47,1,f +13539,3829c01,4,1,f +13539,3832,0,1,f +13539,3853,15,7,f +13539,3855,47,7,f +13539,3861b,15,1,f +13539,3901,0,1,f +13539,606p02,7,1,f +13539,970c00,4,2,f +13539,970c00,0,1,f +13539,970c00,1,1,f +13539,973p17c01,0,1,f +13539,973p18c01,1,2,f +13539,973pb0069c01,0,1,f +13540,25972,226,1,f +13540,27967,179,1,f +13540,27981,15,1,f +13540,3626cpr2028,14,1,f +13540,88646,0,1,f +13540,970c00,19,1,f +13540,973pr3539c01,212,1,f +13541,44336pr01,2,2,f +13542,2343,14,1,f +13542,2530,8,1,f +13542,2530,8,1,t +13542,2544,0,1,f +13542,2562,6,1,f +13542,3004,7,4,f +13542,3020,7,1,f +13542,3022,7,1,f +13542,3024,7,1,f +13542,3031,14,1,f +13542,3068b,7,1,f +13542,3622,7,1,f +13542,3626bp39,14,1,f +13542,4275b,7,1,f +13542,4276b,7,1,f +13542,4864a,7,1,f +13542,57503,334,1,f +13542,57504,334,1,f +13542,57505,334,1,f +13542,57506,334,1,f +13542,6148,2,1,f +13542,970c00,0,1,f +13542,973p39c01,1,1,f +13544,2412b,0,1,f +13544,2433,0,1,f +13544,2437,41,1,f +13544,298c02,15,2,f +13544,3003,4,1,f +13544,3022,4,1,f +13544,3023,14,1,f +13544,3023,0,1,f +13544,3024,15,2,f +13544,3024,4,2,f +13544,3666,15,2,f +13544,3666,4,2,f +13544,3794a,15,1,f +13544,3829c01,0,1,f +13544,3937,15,1,f +13544,3938,15,1,f +13544,4276b,0,1,f +13544,4854,15,1,f +13544,4855,15,1,f +13544,4859,4,1,f +13544,4859,15,1,f +13544,4865a,4,1,f +13544,4871,15,1,f +13546,11816pr0005,78,1,f +13546,3002,19,2,f +13546,3010,19,1,f +13546,30176,2,1,f +13546,3020,2,1,f +13546,3020,30,1,f +13546,3040b,322,2,f +13546,3062b,19,2,f +13546,33291,191,1,f +13546,33291,10,1,f +13546,33291,5,1,f +13546,33291,5,1,t +13546,33291,4,1,t +13546,33291,191,1,t +13546,33291,4,1,f +13546,33291,10,1,t +13546,3710,27,1,f +13546,3741,2,1,t +13546,3741,2,1,f +13546,3742,29,1,t +13546,3742,29,3,f +13546,3794b,19,1,f +13546,3836,70,1,f +13546,3941,85,1,f +13546,4032a,70,1,f +13546,4727,10,1,f +13546,6141,85,1,f +13546,6141,27,1,t +13546,6141,70,1,f +13546,6141,27,1,f +13546,6141,85,1,t +13546,6141,70,1,t +13546,64644,308,2,f +13546,87087,15,1,f +13546,92258,0,1,f +13546,92456pr0041c01,78,1,f +13546,92820pr0005c01,212,1,f +13546,95343,4,1,f +13547,122c02,0,3,f +13547,200,0,1,f +13547,202,15,1,f +13547,2342,15,1,f +13547,2348a,33,1,f +13547,2349a,15,1,f +13547,2362a,15,1,f +13547,2401,15,4,f +13547,2408p04,33,2,f +13547,2419,33,2,f +13547,2422,15,1,f +13547,2428,0,1,f +13547,2436,0,2,f +13547,2446,14,1,f +13547,2446,4,2,f +13547,2447,33,3,f +13547,2448,33,4,f +13547,298c02,15,2,f +13547,3003,15,2,f +13547,3004,15,3,f +13547,3005,15,2,f +13547,3010,0,1,f +13547,3010p05,0,2,f +13547,3020,15,3,f +13547,3022,15,3,f +13547,3023,15,3,f +13547,3024,36,4,f +13547,3031,15,1,f +13547,3032,15,1,f +13547,3034,15,3,f +13547,3037,15,2,f +13547,3039,15,2,f +13547,3039p32,15,2,f +13547,3040b,15,4,f +13547,3063b,0,4,f +13547,3068bp07,15,2,f +13547,3068bp08,15,1,f +13547,3069b,15,4,f +13547,3069b,0,2,f +13547,3070b,36,2,f +13547,3070bp06,15,1,f +13547,3460,15,1,f +13547,3622,15,2,f +13547,3622,0,2,f +13547,3623,15,3,f +13547,3626apr0001,14,3,f +13547,3639,0,1,f +13547,3640,0,1,f +13547,3641,0,6,f +13547,3660,15,2,f +13547,3666,15,1,f +13547,3679,7,6,f +13547,3680,0,6,f +13547,3700,15,1,f +13547,3707,0,1,f +13547,3710,0,2,f +13547,3710,15,4,f +13547,3794a,15,2,f +13547,3795,15,2,f +13547,3795,0,1,f +13547,3811,7,1,f +13547,3832,15,2,f +13547,3838,4,2,f +13547,3838,14,1,f +13547,3937,0,2,f +13547,3937,15,6,f +13547,3938,0,2,f +13547,3938,15,6,f +13547,3941,0,2,f +13547,3941,15,3,f +13547,3943b,15,2,f +13547,3957a,15,4,f +13547,3962a,0,1,f +13547,4006,0,1,f +13547,4162,15,2,f +13547,4215a,15,2,f +13547,4275b,15,2,f +13547,4286,15,2,f +13547,4287,15,2,f +13547,4315,0,1,f +13547,4447,15,2,f +13547,4448,0,2,f +13547,4476b,0,8,f +13547,4531,0,2,f +13547,4588,15,1,f +13547,4589,36,1,f +13547,4595,15,2,f +13547,4740,36,3,f +13547,4740,15,2,f +13547,6141,36,2,f +13547,970c00,4,2,f +13547,970c00,14,1,f +13547,973p6dc01,15,2,f +13547,973p6ec01,15,1,f +13548,132a,7,4,f +13548,36,7,2,f +13548,7039b,4,4,f +13548,715a,4,2,f +13551,2335pr02,15,2,f +13551,2420,4,2,f +13551,2431,0,2,f +13551,2431,4,4,f +13551,2436,4,2,f +13551,2454a,71,2,f +13551,3001,0,1,f +13551,3002,0,4,f +13551,30027b,71,4,f +13551,30028,0,4,f +13551,3004,71,2,f +13551,3004,4,1,f +13551,3005,4,8,f +13551,3005,71,2,f +13551,3008,4,2,f +13551,3009,4,2,f +13551,3010,4,2,f +13551,3020,4,4,f +13551,3021,4,10,f +13551,3021,0,8,f +13551,3023,4,8,f +13551,3023,1,2,f +13551,3024,0,2,f +13551,3024,4,7,f +13551,3031,4,5,f +13551,3034,4,2,f +13551,3034,72,2,f +13551,3034,0,1,f +13551,30414,4,1,f +13551,3068b,0,1,f +13551,3068b,4,5,f +13551,3069b,15,4,f +13551,3069b,4,8,f +13551,3069b,0,1,f +13551,3070b,4,1,t +13551,3070b,4,2,f +13551,3188,4,2,f +13551,3189,4,2,f +13551,32028,0,2,f +13551,32039,1,1,f +13551,32062,4,1,f +13551,32064b,0,2,f +13551,3460,4,1,f +13551,3622,0,1,f +13551,3622,4,1,f +13551,3623,4,12,f +13551,3665,4,2,f +13551,3666,71,1,f +13551,3666,4,3,f +13551,3710,4,4,f +13551,3710,0,1,f +13551,3738,0,2,f +13551,3788,4,1,f +13551,3794a,0,6,f +13551,3794a,4,9,f +13551,3794a,71,3,f +13551,3795,4,2,f +13551,3832,4,8,f +13551,3957a,15,2,f +13551,4215b,4,6,f +13551,44728,71,2,f +13551,4477,4,5,f +13551,4519,71,1,f +13551,47905,72,4,f +13551,50944pr0001,0,12,f +13551,50950,4,5,f +13551,50951,0,12,f +13551,50951,0,1,t +13551,54200,4,6,f +13551,60470a,4,2,f +13551,60478,4,4,f +13551,6091,4,6,f +13551,6111,71,2,f +13551,6141,14,1,t +13551,6141,14,1,f +13551,6157,0,8,f +13551,61678,4,1,f +13551,6636,0,2,f +13551,6636,15,2,f +13553,2654,47,1,f +13553,30173b,179,1,f +13553,3022,15,1,f +13553,30374,297,1,f +13553,30374,71,1,f +13553,3065,47,2,f +13553,3626cpr0957,212,1,f +13553,37,297,2,f +13553,4643713,9999,1,f +13553,4643714,9999,1,f +13553,4643715,9999,1,f +13553,4643716,9999,1,f +13553,4643717,9999,1,f +13553,87747,15,1,f +13553,92338,297,1,f +13553,92690,71,1,f +13553,93058,297,1,t +13553,93058,297,1,f +13553,970c00pr0325,212,1,f +13553,973pr1906c01,212,1,f +13553,98133pr0006,212,1,f +13553,98345pr0003,47,1,f +13553,98354pr0015,143,1,f +13554,2540,8,2,f +13554,2555,15,4,f +13554,2555,15,1,t +13554,2877,8,2,f +13554,3022,4,1,f +13554,30236,14,2,f +13554,3031,7,1,f +13554,30361aps1,15,1,f +13554,30362,15,2,f +13554,30367apr01,15,1,f +13554,30480,142,1,f +13554,30562,7,2,f +13554,30562px2,15,2,f +13554,30565,7,4,f +13554,3068b,1,1,f +13554,3069b,14,4,f +13554,3069b,14,1,t +13554,3676,15,4,f +13554,3943b,8,1,f +13554,3958,7,1,f +13554,3961,7,1,f +13554,4032a,1,1,f +13554,4032a,7,1,f +13554,4589,8,1,t +13554,4589,8,4,f +13554,970c00,142,1,f +13554,973px160c01,142,1,f +13555,51262,10,1,f +13555,51262,14,1,f +13555,6490,4,1,f +13556,10169,308,1,f +13556,18984pr0001,70,1,f +13556,3626cpr1541,326,1,f +13556,60752,179,1,f +13556,88646,0,1,f +13556,970c00pr0753,326,1,f +13556,973pr2834c01,70,1,f +13557,10247,71,6,f +13557,11399,72,1,f +13557,11477,72,1,f +13557,11833,71,1,f +13557,13349,72,3,f +13557,13547,0,1,f +13557,13731,71,4,f +13557,14413,71,2,f +13557,15068,72,4,f +13557,15303,36,3,f +13557,15400,72,2,f +13557,15462,28,2,f +13557,15540,72,2,f +13557,15712,71,1,f +13557,15712,72,2,f +13557,21625,28,1,f +13557,2412b,320,6,f +13557,2412b,0,3,f +13557,2431,71,4,f +13557,2445,0,2,f +13557,2445,72,2,f +13557,2450,72,4,f +13557,2462,72,2,f +13557,2654,72,12,f +13557,2780,0,30,f +13557,2921,0,2,f +13557,298c02,0,3,f +13557,3001,19,2,f +13557,3001,71,3,f +13557,3003,28,1,f +13557,3003,72,2,f +13557,30031,72,2,f +13557,3004,72,14,f +13557,3005,72,1,f +13557,3009,71,4,f +13557,3009,72,2,f +13557,3010,0,8,f +13557,3020,71,14,f +13557,3020,72,4,f +13557,3021,72,7,f +13557,3022,19,2,f +13557,3022,72,7,f +13557,3022,0,2,f +13557,3023,36,2,f +13557,3023,47,1,f +13557,3023,71,29,f +13557,30237b,0,2,f +13557,3030,72,3,f +13557,30304,72,1,f +13557,3031,0,1,f +13557,3031,72,8,f +13557,3032,72,1,f +13557,3032,71,2,f +13557,3034,72,5,f +13557,3034,71,5,f +13557,3035,71,1,f +13557,3035,72,2,f +13557,30357,71,2,f +13557,30361pr1001,15,1,f +13557,30362,15,2,f +13557,30363,71,2,f +13557,30374,36,2,f +13557,30374,35,1,f +13557,30381,0,1,f +13557,3039,0,3,f +13557,3039,71,1,f +13557,3040b,72,6,f +13557,30410,70,1,f +13557,30565,72,2,f +13557,3068b,72,1,f +13557,3069b,36,8,f +13557,3069b,72,2,f +13557,3069b,71,1,f +13557,3069b,484,2,f +13557,32001,0,2,f +13557,32064a,14,4,f +13557,32324,71,1,f +13557,32523,72,4,f +13557,32531,0,4,f +13557,3297,72,4,f +13557,3298,71,2,f +13557,3298,72,2,f +13557,33243,72,8,f +13557,3460,0,2,f +13557,3623,72,10,f +13557,3626cpr1710,78,1,f +13557,3626cpr1723,78,1,f +13557,3626cpr1724,0,1,f +13557,3660,0,2,f +13557,3660,71,15,f +13557,3666,72,8,f +13557,3676,72,2,f +13557,3679,71,1,f +13557,3680,0,1,f +13557,3702,71,3,f +13557,3703,71,4,f +13557,3710,71,6,f +13557,3710,0,7,f +13557,3710,72,5,f +13557,3713,71,1,f +13557,3738,72,4,f +13557,3738,0,2,f +13557,3747a,72,3,f +13557,3747a,71,2,f +13557,3794b,15,2,f +13557,3795,72,6,f +13557,3795,71,1,f +13557,3795,0,2,f +13557,3832,71,1,f +13557,3894,0,2,f +13557,3895,0,2,f +13557,3941,15,1,f +13557,3958,71,2,f +13557,3961,72,1,f +13557,3961pr0002a,71,1,f +13557,40233,28,1,f +13557,4032a,72,2,f +13557,4032a,19,2,f +13557,4032a,0,6,f +13557,4070,72,4,f +13557,4079,0,1,f +13557,4081b,72,2,f +13557,4150,72,1,f +13557,4162,72,4,f +13557,41677,4,1,f +13557,41747,71,2,f +13557,41748,71,2,f +13557,41764,71,2,f +13557,41765,71,2,f +13557,41767,72,1,f +13557,41768,72,1,f +13557,41769,72,1,f +13557,41770,72,1,f +13557,41879a,379,1,f +13557,41879a,19,1,f +13557,42023,72,4,f +13557,4274,71,7,f +13557,4282,72,2,f +13557,4287,71,4,f +13557,43093,1,7,f +13557,44126,72,2,f +13557,44302a,72,2,f +13557,44567a,71,8,f +13557,44567a,72,2,f +13557,44570,72,4,f +13557,4733,72,3,f +13557,47397,72,2,f +13557,47398,72,2,f +13557,4740,0,6,f +13557,47457,72,2,f +13557,48336,71,5,f +13557,4871,72,1,f +13557,48933,72,1,f +13557,50231,0,1,f +13557,50304,71,4,f +13557,50305,71,4,f +13557,50950,72,8,f +13557,50955,71,2,f +13557,50956,71,2,f +13557,52107,71,13,f +13557,54200,28,2,f +13557,54200,36,4,f +13557,54383,72,7,f +13557,54384,72,7,f +13557,6003,72,2,f +13557,60219,72,1,f +13557,60470a,0,2,f +13557,60478,72,4,f +13557,60483,71,1,f +13557,6106,71,4,f +13557,61409,72,2,f +13557,6141,72,4,f +13557,6141,0,5,f +13557,6141,35,4,f +13557,63868,71,2,f +13557,64567,80,2,f +13557,6558,1,2,f +13557,6587,28,3,f +13557,73983,72,2,f +13557,87079,484,1,f +13557,87079,71,6,f +13557,87079,72,2,f +13557,87620,72,2,f +13557,88293,72,8,f +13557,92099,72,1,f +13557,92107,72,1,f +13557,92280,71,3,f +13557,92759pr0001,379,1,f +13557,92761pr0002,0,1,f +13557,96874,25,1,t +13557,970c00pr0729,70,1,f +13557,970c00pr0908,0,1,f +13557,973pr1802c01,19,1,f +13557,973pr3066c01,19,1,f +13557,973pr3095c01,0,1,f +13557,973pr3097c01,379,1,f +13557,98138,41,3,f +13557,98138,47,3,f +13557,98285,0,2,f +13557,98286,71,2,f +13557,99780,72,2,f +13557,99780,71,2,f +13557,99781,71,2,f +13558,14210,15,3,f +13558,14769,30,2,f +13558,15573,297,2,f +13558,15745,45,2,f +13558,22667,26,2,f +13558,2423,85,1,f +13558,3002,15,1,f +13558,3004,323,3,f +13558,30044,70,1,f +13558,30046,297,1,f +13558,3023,2,3,f +13558,3031,19,3,f +13558,3062b,70,2,f +13558,33172,25,1,f +13558,33183,10,1,f +13558,3623,27,1,f +13558,3710,70,1,f +13558,3899,45,2,f +13558,4032a,70,3,f +13558,50950,15,1,f +13558,54200,27,1,f +13558,60481,70,2,f +13558,60897,19,1,f +13558,6182,15,1,f +13558,87079,2,1,f +13558,93092,30,1,f +13561,12708pr01,47,2,f +13561,3020,30,1,f +13561,3023,15,4,f +13561,3023,19,2,f +13561,3039,30,2,f +13561,33291,5,1,f +13561,3659,19,2,f +13561,3794b,19,1,f +13561,4070,19,2,f +13561,44375a,15,1,f +13561,4865b,19,2,f +13561,60474,15,1,f +13561,6141,15,4,f +13561,87580,15,1,f +13561,93088pr0001a,84,1,f +13561,98283,84,2,f +13562,10247,72,1,f +13562,11303,1,1,f +13562,11458,72,2,f +13562,11477,0,2,f +13562,14682,71,2,f +13562,14704,71,1,f +13562,15068,72,1,f +13562,15092,72,2,f +13562,15456,0,1,f +13562,18910,25,3,f +13562,2412b,72,1,f +13562,2431,2,2,f +13562,2432,25,6,f +13562,2445,25,1,f +13562,30022,25,2,f +13562,3004,1,1,f +13562,3009,72,2,f +13562,3010,2,2,f +13562,3020,25,1,f +13562,3022,25,1,f +13562,3023,0,9,f +13562,3024,182,4,f +13562,3024,182,1,t +13562,3031,71,1,f +13562,3035,25,2,f +13562,30350b,15,1,f +13562,3036,0,1,f +13562,3039,2,4,f +13562,3040b,71,4,f +13562,30414,71,2,f +13562,3069b,182,3,f +13562,3069b,15,2,f +13562,32062,4,1,f +13562,3298,71,6,f +13562,3626cpr0955,14,1,f +13562,3666,71,3,f +13562,3701,72,1,f +13562,3707,0,1,f +13562,3710,2,1,f +13562,3710,0,6,f +13562,3713,71,1,t +13562,3713,71,2,f +13562,3749,19,3,f +13562,3821,2,1,f +13562,3822,2,1,f +13562,3829c01,1,1,f +13562,3836,70,1,f +13562,3837,0,1,f +13562,3895,0,2,f +13562,3899,4,1,f +13562,3958,2,1,f +13562,4162,0,2,f +13562,4162,71,1,f +13562,4176,40,1,f +13562,43093,1,1,f +13562,48336,71,1,f +13562,4871,71,2,f +13562,52031,2,1,f +13562,54200,47,1,t +13562,54200,47,2,f +13562,55982,0,4,f +13562,56891,0,4,f +13562,59443,71,1,f +13562,60477,25,6,f +13562,60478,0,2,f +13562,61252,71,2,f +13562,61252,0,2,f +13562,6141,71,2,f +13562,6141,71,1,t +13562,6179,0,1,f +13562,6585,0,2,f +13562,6589,19,1,t +13562,6589,19,3,f +13562,85984,0,2,f +13562,87079,71,2,f +13562,87407,71,1,f +13562,87609,0,1,f +13562,92280,71,6,f +13562,93273,25,1,f +13562,970c00,272,1,f +13562,973pr1470c01,1,1,f +13562,98138,182,2,f +13562,98138,47,8,f +13562,98138,15,15,f +13562,98138,36,2,f +13562,98138,182,1,t +13562,98138,47,2,t +13562,98138,36,1,t +13562,98138,15,1,t +13562,98280,71,1,f +13562,98282,72,4,f +13562,99780,0,6,f +13563,45302,71,1,f +13563,45517,0,1,f +13564,11816pr0003,78,1,f +13564,3062b,322,4,f +13564,3069bpr0175,29,1,f +13564,3626b,47,1,f +13564,3659,5,2,f +13564,3741,2,1,t +13564,3741,2,1,f +13564,3742,14,1,t +13564,3742,14,3,f +13564,3899,5,1,f +13564,3941,27,1,f +13564,4150,15,1,f +13564,4740,45,1,f +13564,6141,29,4,f +13564,6141,46,1,f +13564,6141,46,1,t +13564,6141,29,1,t +13564,6180,15,1,f +13564,62698,0,1,f +13564,64644,297,1,f +13564,92256,70,1,f +13564,92456pr0004c01,78,1,f +13564,92820pr0003c01,30,1,f +13565,32bc01,15,13,f +13565,32bc01,4,13,f +13567,3070b,14,1,t +13567,3070b,4,1,t +13567,3070b,14,1,f +13567,3070b,4,1,f +13567,3626bpr0001,14,1,f +13567,3901,0,1,f +13567,970c00,0,1,f +13567,973pb0243c01,0,1,f +13568,2654,71,1,f +13568,2780,0,44,f +13568,2780,0,1,t +13568,2815,0,2,f +13568,2825,4,2,f +13568,3021,0,1,f +13568,3069bpa0,19,1,f +13568,3069bpr0086,71,1,f +13568,3069bpr0101,71,1,f +13568,32000,0,2,f +13568,32009,0,4,f +13568,32013,0,2,f +13568,32016,71,2,f +13568,32034,71,2,f +13568,32034,0,3,f +13568,32039,71,6,f +13568,32039,4,1,f +13568,32054,0,2,f +13568,32054,71,2,f +13568,32060,71,2,f +13568,32062,0,9,f +13568,32073,71,11,f +13568,32123b,71,2,f +13568,32123b,71,1,t +13568,32138,0,7,f +13568,32140,148,10,f +13568,32184,71,2,f +13568,32184,0,2,f +13568,32187,148,2,f +13568,32198,71,2,f +13568,32200,179,2,f +13568,32209,0,1,f +13568,32235,179,2,f +13568,32269,71,2,f +13568,32270,71,3,f +13568,32271,0,4,f +13568,32278,148,4,f +13568,32278,0,4,f +13568,32316,0,7,f +13568,32449,0,6,f +13568,32523,0,11,f +13568,32524,148,2,f +13568,32524,0,2,f +13568,32525,0,10,f +13568,32526,148,1,f +13568,32534,148,4,f +13568,32535,148,4,f +13568,32556,71,8,f +13568,32580,179,2,f +13568,3647,71,2,f +13568,3648b,4,1,f +13568,3705,0,3,f +13568,3706,0,4,f +13568,3707,0,4,f +13568,3713,71,1,t +13568,3713,71,15,f +13568,3942c,0,2,f +13568,4032a,71,1,f +13568,4032a,4,2,f +13568,40490,0,3,f +13568,41669,135,2,f +13568,41669,34,1,f +13568,41669,36,1,f +13568,41669,0,4,f +13568,41677,0,8,f +13568,41678,0,2,f +13568,4185,0,8,f +13568,42003,0,8,f +13568,42610,71,6,f +13568,4274,71,1,t +13568,4274,71,2,f +13568,43093,1,20,f +13568,43857,148,3,f +13568,44033,179,6,f +13568,44294,71,8,f +13568,44350,148,2,f +13568,44351,148,2,f +13568,4519,71,22,f +13568,4716,71,1,f +13568,51011,0,6,f +13568,6141,36,1,t +13568,6141,34,2,f +13568,6141,36,2,f +13568,6141,34,1,t +13568,6141,46,4,f +13568,6141,46,1,t +13568,6536,0,14,f +13568,6536,4,3,f +13568,6538b,71,2,f +13568,6538b,36,2,f +13568,6538b,0,11,f +13568,6558,0,38,f +13568,6589,71,2,f +13568,6632,0,6,f +13568,75535,0,2,f +13568,76320,0,1,f +13569,3002,15,1,f +13569,3004,15,1,f +13569,3020,0,1,f +13569,3021,0,1,f +13569,3022,0,1,f +13569,3024,33,1,f +13569,3039,47,1,f +13569,3660,15,1,f +13569,3730,0,1,f +13570,646bc01,4,8,f +13570,646bc01,15,8,f +13571,14210,15,1,f +13571,2335,8,4,f +13571,2412b,0,5,f +13571,2431,0,1,f +13571,2431,15,1,f +13571,2431pr0017,14,2,f +13571,2432,19,2,f +13571,2436,15,2,f +13571,2454a,19,4,f +13571,2465,7,1,f +13571,2465,19,1,f +13571,2493b,7,2,f +13571,2494,47,2,f +13571,2540,0,4,f +13571,2540,7,4,f +13571,2569,0,1,f +13571,2877,8,4,f +13571,2926,0,2,f +13571,298c02,14,3,f +13571,298c02,14,1,t +13571,3003,8,4,f +13571,3004,7,7,f +13571,3004,19,4,f +13571,3005,0,1,f +13571,3005,19,2,f +13571,30089,0,1,f +13571,3010,15,3,f +13571,3010,8,2,f +13571,30136,7,12,f +13571,30148,0,1,f +13571,3021,8,1,f +13571,3022,8,1,f +13571,3023,8,15,f +13571,3024,46,2,f +13571,30256,7,2,f +13571,3027,0,1,f +13571,3031,0,3,f +13571,3035,8,4,f +13571,30363,15,2,f +13571,30383,7,1,f +13571,3039,7,4,f +13571,3040b,7,4,f +13571,30474,15,2,f +13571,30553,8,1,f +13571,3062b,19,4,f +13571,30646a,7,2,f +13571,30646a,19,2,f +13571,3069bp02,7,1,f +13571,3069bp0a,0,1,f +13571,3069bpr0100,2,3,f +13571,3070b,36,1,t +13571,3070b,36,5,f +13571,3624,0,1,f +13571,3626bp04,14,1,f +13571,3626bpb0044,14,1,f +13571,3626bpr0126,14,1,f +13571,3626bpx125,4,1,f +13571,3626bpx33,14,1,f +13571,3660,7,4,f +13571,3666,0,1,f +13571,3710,8,1,f +13571,3710,15,4,f +13571,3829c01,7,1,f +13571,3901,6,1,f +13571,3937,7,1,f +13571,3938,15,1,f +13571,3941,7,2,f +13571,3962b,0,1,f +13571,4032a,1,2,f +13571,4032a,0,2,f +13571,4070,15,4,f +13571,4079,6,1,f +13571,4081b,19,2,f +13571,4162,8,2,f +13571,4173447,9999,1,f +13571,4174723,9999,1,f +13571,4212b,1,1,f +13571,42445,47,1,f +13571,42446,4,1,f +13571,43337,15,2,f +13571,4345b,0,1,f +13571,4346,7,1,f +13571,4349,7,1,f +13571,4477,15,2,f +13571,4485,0,2,f +13571,4589,0,2,f +13571,4623,8,8,f +13571,4740,42,2,f +13571,4865a,7,2,f +13571,6014b,15,4,f +13571,6015,0,4,f +13571,6019,0,2,f +13571,6126a,57,2,f +13571,6141,42,1,t +13571,6141,15,1,t +13571,6141,42,2,f +13571,6141,15,8,f +13571,6215,15,2,f +13571,6238,33,1,f +13571,6636,8,4,f +13571,970c00,0,4,f +13571,970c07pb02,1,1,f +13571,973pb0190c01,4,1,f +13571,973pr1245c01,1,2,f +13571,973px65c01,15,1,f +13571,973px66c01,0,1,f +13571,973px9c01,0,1,f +13571,x101b,15,1,f +13574,3703,1,4,f +13574,3895,1,4,f +13575,15529pr0001,14,1,f +13575,3899pr0005,15,1,f +13575,88646,0,1,f +13575,970c00,72,1,f +13575,973pr2609c01,10,1,f +13575,98368pr0001,4,1,f +13576,2736,7,4,f +13576,2780,0,5,f +13576,30173a,3,2,f +13576,30374,36,2,f +13576,32005b,27,2,f +13576,32013,0,2,f +13576,32016,0,2,f +13576,32017,0,2,f +13576,32034,7,1,f +13576,32039,0,3,f +13576,32054,0,2,f +13576,32054,4,1,f +13576,32056,8,2,f +13576,32056,4,4,f +13576,32056,27,4,f +13576,32062,0,16,f +13576,32073,0,5,f +13576,32123b,7,8,f +13576,32138,0,2,f +13576,32165,19,1,f +13576,32165,0,2,f +13576,32166,8,2,f +13576,32172,0,2,f +13576,32173,14,2,f +13576,32174,0,2,f +13576,32271,27,2,f +13576,32291,27,2,f +13576,32305,0,1,f +13576,32305,14,1,f +13576,32305,8,1,f +13576,32306,8,1,f +13576,32306,0,2,f +13576,32307,0,6,f +13576,32307,8,2,f +13576,32307,19,2,f +13576,32307,4,2,f +13576,32308,0,2,f +13576,32308,27,1,f +13576,32308,4,1,f +13576,32310pb01,15,1,f +13576,32310pb02,27,1,f +13576,32310pb03,14,1,f +13576,32310pb05,4,1,f +13576,32311,0,2,f +13576,32311,15,2,f +13576,32316,0,2,f +13576,32439a,21,2,f +13576,32439a,3,3,f +13576,32439a,8,1,f +13576,32439a,14,2,f +13576,32439a,25,3,f +13576,32439a,41,2,f +13576,3647,15,1,f +13576,3647,0,1,f +13576,3648b,15,1,f +13576,3673,7,4,f +13576,3705,0,9,f +13576,3706,0,4,f +13576,3707,0,2,f +13576,3713,7,3,f +13576,3737,0,1,f +13576,3749,7,12,f +13576,4274,7,2,f +13576,4497,41,2,f +13576,4519,0,5,f +13576,4589,57,2,f +13576,4716,15,1,f +13576,4716,0,2,f +13576,57467,383,2,f +13576,6123,0,2,f +13576,6536,0,2,f +13576,6536,15,2,f +13576,6536,19,2,f +13576,6538b,0,2,f +13576,6538b,14,1,f +13576,6538b,19,1,f +13576,6538b,3,1,f +13576,6628,0,2,f +13576,71509,0,2,f +13576,78c07,15,2,f +13576,rb00169,0,1,f +13576,rb00182,4,1,f +13576,rb00182,27,1,f +13576,rb00182,0,1,f +13576,rb00182,14,1,f +13576,rb00182,15,1,f +13576,rb00182,19,1,f +13576,x209pb03,0,1,f +13576,x209pw1,0,1,f +13577,2543,2,1,f +13577,30177,15,1,f +13577,3625,0,1,f +13577,3626bp03,14,1,f +13577,3626bp40,14,1,f +13577,3626bpr0001,14,1,f +13577,3626bpr0137,14,1,f +13577,3626bpx23,14,1,f +13577,3629pw1,1,1,f +13577,3898,15,1,f +13577,970c00,4,1,f +13577,970c00,0,2,f +13577,970c00,2,1,f +13577,970x026,15,1,f +13577,973p25c01,15,1,f +13577,973pb0240c02,15,1,f +13577,973pb0640c01,15,1,f +13577,973px3c01,15,1,f +13578,122c01,0,2,f +13578,3004,0,4,f +13578,3004,15,5,f +13578,3005,0,4,f +13578,3010,15,1,f +13578,3020,0,1,f +13578,3021,0,1,f +13578,3022,0,2,f +13578,3023,15,2,f +13578,3023,0,5,f +13578,3024,0,2,f +13578,3024,46,2,f +13578,3024,33,6,f +13578,3031,0,1,f +13578,3034,0,1,f +13578,3035,0,1,f +13578,3062a,15,2,f +13578,3624,15,1,f +13578,3626apr0001,14,1,f +13578,3710,0,3,f +13578,3788,0,1,f +13578,3821,15,1,f +13578,3822,15,1,f +13578,3823,47,1,f +13578,3829c01,15,1,f +13578,3832,0,1,f +13578,3853,15,3,f +13578,3856,15,6,f +13578,3900,7,1,f +13578,3942a,4,2,f +13578,3962a,0,1,f +13578,4070,15,2,f +13578,4084,0,4,f +13578,4085a,0,2,f +13578,4175,0,1,f +13578,4211,0,1,f +13578,4213,0,1,f +13578,4214,0,1,f +13578,6141,36,1,t +13578,6141,36,1,f +13578,970c00,0,1,f +13578,973pb0079c01,0,1,f +13581,90509,322,2,f +13581,90540,322,2,f +13582,3waycona,1,1,f +13582,3wayconb,1,1,f +13582,x466a200,7,1,f +13584,122c01,0,5,f +13584,3003,14,6,f +13584,3003,1,1,f +13584,3004,1,18,f +13584,3004,14,31,f +13584,3004,4,2,f +13584,3004p20,1,1,f +13584,3005,15,20,f +13584,3005,1,10,f +13584,3005,14,13,f +13584,3008,14,1,f +13584,3008,4,3,f +13584,3009,1,7,f +13584,3009,14,1,f +13584,3009,0,2,f +13584,3009,4,7,f +13584,3010,1,5,f +13584,3010,0,1,f +13584,3010,4,2,f +13584,3010,14,10,f +13584,3020,14,4,f +13584,3020,4,2,f +13584,3020,1,2,f +13584,3021,14,1,f +13584,3022,4,1,f +13584,3022,14,2,f +13584,3022,0,2,f +13584,3023,4,2,f +13584,3023,14,4,f +13584,3023,7,2,f +13584,3023,1,14,f +13584,3024,14,3,f +13584,3024,1,3,f +13584,3032,14,2,f +13584,3032,0,2,f +13584,3034,4,1,f +13584,3035,0,2,f +13584,3036,0,6,f +13584,3037,1,2,f +13584,3038,1,4,f +13584,3039,14,1,f +13584,3040b,1,10,f +13584,3040b,4,2,f +13584,3062a,0,2,f +13584,3062a,46,2,f +13584,3062a,34,1,f +13584,3068b,0,4,f +13584,3069b,1,2,f +13584,3069b,0,2,f +13584,3149c01,0,1,f +13584,3176,4,2,f +13584,3314,0,1,f +13584,3317,14,1,f +13584,3324c01,4,1,f +13584,3403c01,0,1,f +13584,3433,14,1,f +13584,3436,14,2,f +13584,3456,0,1,f +13584,3471,2,2,f +13584,3492c01,14,1,f +13584,3622,14,3,f +13584,3623,1,5,f +13584,3626apr0001,14,4,f +13584,3639,0,1,f +13584,3640,0,1,f +13584,3665,14,1,f +13584,3666,1,5,f +13584,3710,0,1,f +13584,3710,14,13,f +13584,3710,1,7,f +13584,3710,4,1,f +13584,3795,0,2,f +13584,3795,4,1,f +13584,3821,4,1,f +13584,3822,4,1,f +13584,3823,47,1,f +13584,3829c01,14,2,f +13584,3832,14,6,f +13584,3832,4,2,f +13584,3832,1,4,f +13584,3833,4,4,f +13584,3836,6,1,f +13584,3837,8,2,f +13584,3841,8,1,f +13584,3853,4,9,f +13584,3855,47,9,f +13584,3861b,4,1,f +13584,3957a,7,1,f +13584,4070,0,2,f +13584,4079,14,1,f +13584,4079,4,1,f +13584,4080,14,1,f +13584,4083,0,5,f +13584,4084,0,10,f +13584,4175,0,2,f +13584,4216,14,24,f +13584,4217,14,4,f +13584,4218,4,16,f +13584,4219,4,2,f +13584,609p01,7,1,f +13584,6100p05,7,1,f +13584,73037,4,1,f +13584,812,7,3,f +13584,970c00,1,4,f +13584,973p26c01,1,4,f +13584,rb00164,0,1,f +13585,23306,383,1,f +13585,2357,71,8,f +13585,2412b,72,4,f +13585,2419,0,1,f +13585,2420,72,8,f +13585,2431,72,3,f +13585,2444,0,8,f +13585,2456,0,1,f +13585,2476a,71,4,f +13585,2555,72,4,f +13585,2654,72,6,f +13585,2877,0,5,f +13585,298c02,0,1,t +13585,298c02,0,3,f +13585,3001,19,1,f +13585,3002,71,2,f +13585,3003,0,2,f +13585,30031,72,1,f +13585,3021,72,5,f +13585,3022,14,1,f +13585,3022,71,4,f +13585,3023,36,4,f +13585,3023,72,10,f +13585,3023,70,1,f +13585,30283,72,2,f +13585,30304,72,1,f +13585,3032,0,1,f +13585,3033,0,1,f +13585,30366pr0008,71,1,f +13585,30374,36,4,f +13585,30381,0,1,f +13585,30383,72,2,f +13585,3039pr0014,0,1,f +13585,3045,72,2,f +13585,30553,0,12,f +13585,3068b,71,12,f +13585,3069b,0,5,f +13585,3070b,70,1,f +13585,3070b,36,2,f +13585,3070b,36,1,t +13585,3070b,70,1,t +13585,32028,0,2,f +13585,32062,4,2,f +13585,32064b,320,3,f +13585,3297,71,2,f +13585,3298,72,2,f +13585,3460,71,1,f +13585,3623,71,2,f +13585,3626b,0,3,f +13585,3626bpr0815,0,1,f +13585,3660,71,7,f +13585,3665,72,4,f +13585,3675,71,2,f +13585,3678b,71,4,f +13585,3679,71,2,f +13585,3680,0,2,f +13585,3700,71,6,f +13585,3701,72,4,f +13585,3707,0,1,f +13585,3710,0,14,f +13585,3747b,72,1,f +13585,3795,72,7,f +13585,3795,0,1,f +13585,3832,72,1,f +13585,4085c,71,2,f +13585,4150,71,2,f +13585,4162,0,2,f +13585,41751,72,4,f +13585,41769,0,2,f +13585,41770,0,2,f +13585,42023,72,2,f +13585,4287,71,4,f +13585,43093,1,8,f +13585,43710,72,1,f +13585,43711,72,1,f +13585,43712,71,1,f +13585,43713,72,1,f +13585,43719,0,2,f +13585,44301a,71,2,f +13585,44375apr0008,71,1,f +13585,44568,71,4,f +13585,45301,72,1,f +13585,4589,36,2,f +13585,47397,72,1,f +13585,47398,72,1,f +13585,4740,47,1,f +13585,47753,72,1,f +13585,47905,0,2,f +13585,48336,19,1,f +13585,4871,71,1,f +13585,50231,0,1,f +13585,50304,71,1,f +13585,50305,71,1,f +13585,50955,71,1,f +13585,50956,71,1,f +13585,52501,72,1,f +13585,54200,72,7,f +13585,6003,72,2,f +13585,6019,0,7,f +13585,6091,72,2,f +13585,6141,0,1,t +13585,6141,36,1,f +13585,6141,0,14,f +13585,6141,36,1,t +13585,6232,72,2,f +13585,6558,0,4,f +13585,6587,72,2,f +13585,970c00,0,1,f +13585,973pr1340c01,0,1,f +13586,2587,80,1,f +13586,3062b,70,5,f +13586,3626bpr0411,14,1,f +13586,3666,70,2,f +13586,3795,2,1,f +13586,3844,80,1,f +13586,3846pr24,71,1,f +13586,3847,135,1,f +13586,4070,70,2,f +13586,4497,135,1,f +13586,4503,80,1,f +13586,48729a,0,1,t +13586,48729a,0,1,f +13586,6141,71,1,t +13586,6141,71,1,f +13586,970x026,71,1,f +13586,973pr0430c01,272,1,f +13588,2421,0,1,f +13588,2432,1,1,f +13588,2460,0,1,f +13588,2479,7,1,f +13588,298c02,0,2,f +13588,3004,1,1,f +13588,3023,1,1,f +13588,3023,7,2,f +13588,3024,36,1,f +13588,3070b,1,1,f +13588,3176,7,1,f +13588,3666,1,1,f +13588,3666,4,2,f +13588,3666,15,2,f +13588,3794a,1,1,f +13588,3795,4,1,f +13588,3839b,7,1,f +13588,4287,1,1,f +13588,4488,15,1,f +13588,4859,15,2,f +13588,6140,4,2,f +13589,2357,7,1,f +13589,2921,0,1,f +13589,3004,8,2,f +13589,3004,7,1,f +13589,30044,7,2,f +13589,30046,0,2,f +13589,3005,0,1,f +13589,3005,19,2,f +13589,3005,378,1,f +13589,3009,7,1,f +13589,3009,8,2,f +13589,3010,8,1,f +13589,3010,19,1,f +13589,3021,8,1,f +13589,3023,8,1,f +13589,30374,0,1,f +13589,3040b,19,1,f +13589,3040b,7,2,f +13589,3040b,378,2,f +13589,3062b,6,1,f +13589,3062b,378,8,f +13589,3068b,7,1,f +13589,3069b,7,1,f +13589,3069bpb007,7,1,f +13589,3069bpx41,15,1,f +13589,3070bph1,15,1,f +13589,3070bph1,15,1,t +13589,3245b,19,1,f +13589,33009pb001,6,1,f +13589,3622,7,1,f +13589,3622,19,2,f +13589,3622,0,1,f +13589,3626bpx146,14,1,f +13589,3659,0,2,f +13589,3665,19,2,f +13589,3666,19,1,f +13589,3937,7,1,f +13589,3938,0,1,f +13589,4032a,6,1,f +13589,4070,7,2,f +13589,41539,0,1,f +13589,41879a,19,1,f +13589,43745,19,1,f +13589,4530,19,1,f +13589,4864b,19,1,f +13589,4865a,7,1,f +13589,50231,0,1,f +13589,6126a,57,2,f +13589,6636,7,2,f +13589,970c00,8,1,f +13589,973pb0060c01,8,1,f +13589,973pb0094c01,19,1,f +13590,3003,14,1,f +13590,3003,0,1,f +13590,3003pe2,14,1,f +13590,3004,14,3,f +13590,3020,14,1,f +13590,3039,0,1,f +13590,3710,14,1,f +13592,2335pb006,0,2,f +13592,2431,0,4,f +13592,2446,73,1,f +13592,2446,0,1,f +13592,2453a,71,4,f +13592,2454a,71,9,f +13592,2587pb02,73,1,f +13592,2587pb05,0,1,f +13592,2654,0,2,f +13592,2744,15,2,f +13592,2744,0,2,f +13592,3001,0,1,f +13592,3001,15,1,f +13592,3003,0,1,f +13592,3003,15,2,f +13592,3004,112,2,f +13592,3004,320,5,f +13592,3004,71,6,f +13592,3004,73,5,f +13592,30045,0,1,f +13592,3009,320,1,f +13592,3009,71,2,f +13592,3009,73,1,f +13592,30099,0,2,f +13592,30144,15,4,f +13592,3021,72,4,f +13592,3023,0,6,f +13592,30237a,0,4,f +13592,3024,15,12,f +13592,30249,71,4,f +13592,3027,72,1,f +13592,3031,72,3,f +13592,3035,72,2,f +13592,30357,71,8,f +13592,30359b,70,2,f +13592,3036,0,2,f +13592,30363,15,1,f +13592,30363,0,1,f +13592,3037,71,2,f +13592,3039,71,4,f +13592,3040b,71,10,f +13592,3045,0,4,f +13592,3048c,71,3,f +13592,3048c,15,4,f +13592,3062b,19,22,f +13592,3068b,320,1,f +13592,3068b,73,1,f +13592,3068b,0,8,f +13592,3069b,0,4,f +13592,32324,71,2,f +13592,3297,71,4,f +13592,3298,112,2,f +13592,3308,71,1,f +13592,3626bpr0350,14,1,f +13592,3626bpr0351,14,1,f +13592,3626bpr0353,14,1,f +13592,3659,0,8,f +13592,3660,72,2,f +13592,3665,71,6,f +13592,3679,71,6,f +13592,3680,0,6,f +13592,3688,112,1,f +13592,3700,0,2,f +13592,3710,15,2,f +13592,3710,72,4,f +13592,3749,19,1,t +13592,3749,19,8,f +13592,3794a,72,6,f +13592,3795,73,1,f +13592,3795,320,1,f +13592,3832,73,1,f +13592,3832,320,1,f +13592,3849,0,1,f +13592,3849,15,1,f +13592,3894,0,2,f +13592,3894,15,2,f +13592,3937,71,1,f +13592,3938,0,1,f +13592,3957a,0,4,f +13592,4070,0,2,f +13592,4162,0,2,f +13592,4286,112,2,f +13592,43899,72,1,f +13592,4495a,73,2,f +13592,4495a,320,2,f +13592,4589,0,4,f +13592,4740,47,2,f +13592,48080,9999,1,f +13592,48141,9999,1,f +13592,48486,73,1,f +13592,48489,0,1,f +13592,48490,71,1,f +13592,48492,73,1,f +13592,48492,320,1,f +13592,48494pb03,151,1,f +13592,48494pb05,151,1,f +13592,48495,4,1,f +13592,48495,179,1,f +13592,48495,134,1,f +13592,4871,112,1,f +13592,57503,334,1,f +13592,57504,334,1,f +13592,57505,334,1,f +13592,57506,334,1,f +13592,6019,71,2,f +13592,6123,72,1,f +13592,6126a,57,4,f +13592,6222,71,4,f +13592,6222,72,4,f +13592,6231,15,4,f +13592,6232,72,2,f +13592,6636,0,4,f +13592,71015,334,1,f +13592,970x021,0,1,f +13592,970x194,73,1,f +13592,970x195,72,1,f +13592,973c14,0,1,f +13592,973c33,73,1,f +13592,973pb0346c01,71,1,f +13592,kkc57,9999,1,t +13592,kkc71,9999,1,t +13592,kkc72,9999,1,t +13595,122c01,0,2,f +13595,3004,15,1,f +13595,3005,15,2,f +13595,3020,15,1,f +13595,3023,15,4,f +13595,3024,36,2,f +13595,3024,46,2,f +13595,3024,33,2,f +13595,3068bp52,15,1,f +13595,3625,0,1,f +13595,3626apr0001,14,1,f +13595,3641,0,4,f +13595,3788,15,2,f +13595,3821p24,15,1,f +13595,3822p24,15,1,f +13595,3823,47,1,f +13595,3829c01,15,1,f +13595,3937,7,1,f +13595,3938,7,1,f +13595,4070,15,4,f +13595,4083,0,1,f +13595,4212b,4,1,f +13595,970c00,4,1,f +13595,973p24c01,15,1,f +13596,30374,41,2,f +13596,57899,0,1,f +13596,64567,71,2,f +13601,2730,4,4,f +13601,3700,4,16,f +13601,3701,4,8,f +13601,3702,4,4,f +13601,3703,4,4,f +13601,3894,4,4,f +13601,3895,4,4,f +13604,2376,0,1,f +13604,2412b,0,4,f +13604,2460,0,1,f +13604,30033,0,1,f +13604,30162,71,4,f +13604,3022,0,4,f +13604,3626bpr0922,0,1,f +13604,3710,71,1,f +13604,3795,0,2,f +13604,4032a,72,1,f +13604,4274,1,1,f +13604,4274,1,1,t +13604,43722,0,2,f +13604,43723,0,2,f +13604,44567a,72,4,f +13604,44728,71,2,f +13604,44728,0,4,f +13604,4740,71,2,f +13604,4740pr0001b,47,1,f +13604,54383,0,2,f +13604,54384,0,2,f +13604,58247,0,1,f +13604,60471,71,4,f +13604,6141,72,1,t +13604,6141,72,2,f +13604,6179pr0001,0,1,f +13604,62462,0,1,f +13604,6636,71,4,f +13604,85984,71,4,f +13604,87556pr0001,0,1,f +13604,87580,72,1,f +13604,970c00,0,1,f +13604,973pr1148c01,0,1,f +13604,98114,71,1,f +13604,98115,71,1,f +13605,10907,72,1,f +13605,10907,320,1,f +13605,10908pr0001,320,1,f +13605,10908pr0003,72,1,f +13605,11153,0,4,f +13605,13731,0,4,f +13605,2412b,72,2,f +13605,2419,1,2,f +13605,2420,0,4,f +13605,2431,72,1,f +13605,2458,4,2,f +13605,2458,72,2,f +13605,2654,1,6,f +13605,2780,0,2,f +13605,2780,0,1,t +13605,2817,71,1,f +13605,3002,19,2,f +13605,30136,71,4,f +13605,3020,4,2,f +13605,3021,71,2,f +13605,3023,4,2,f +13605,3024,0,1,t +13605,3024,0,6,f +13605,30283,0,4,f +13605,30364,0,2,f +13605,3039,71,1,f +13605,3040b,288,2,f +13605,3062b,36,2,f +13605,3062b,41,2,f +13605,3062b,0,2,f +13605,3062b,41,1,t +13605,3062b,36,1,t +13605,32000,4,1,f +13605,32028,71,2,f +13605,32316,71,2,f +13605,3297,0,1,f +13605,3623,0,4,f +13605,3626cpr1216,70,1,f +13605,3626cpr1217,1000,1,f +13605,3626cpr1218,78,1,f +13605,3660,72,10,f +13605,3666,14,4,f +13605,3666,72,2,f +13605,3710,288,4,f +13605,3710,14,2,f +13605,3795,2,3,f +13605,3829c01,0,1,f +13605,3937,0,2,f +13605,3938,71,2,f +13605,4081b,72,1,f +13605,4085c,4,2,f +13605,41764,72,1,f +13605,41765,72,1,f +13605,42446,71,1,f +13605,42446,71,1,t +13605,4287,288,2,f +13605,43337,40,2,f +13605,43722,14,1,f +13605,43723,14,1,f +13605,44302a,14,2,f +13605,4477,0,2,f +13605,4477,19,4,f +13605,4740,36,2,f +13605,4740,4,2,f +13605,47406,0,1,f +13605,47407,0,1,f +13605,47456,71,2,f +13605,48729b,71,1,t +13605,48729b,71,1,f +13605,51739,0,1,f +13605,52031,0,1,f +13605,57783,40,1,f +13605,58176,35,2,f +13605,60474,4,1,f +13605,6091,72,2,f +13605,61184,71,2,f +13605,61409,0,4,f +13605,6141,41,2,f +13605,6141,46,6,f +13605,6141,36,10,f +13605,6141,46,2,t +13605,6141,41,1,t +13605,6141,36,2,t +13605,62462,71,2,f +13605,63864,14,2,f +13605,64567,71,1,f +13605,64567,71,1,t +13605,64728,4,1,f +13605,85984,0,1,f +13605,87079,72,1,f +13605,87580,4,1,f +13605,87580,14,1,f +13605,87615,288,1,f +13605,92081,84,1,f +13605,92946,72,4,f +13605,95199,72,1,f +13605,970c00,19,1,f +13605,970c00pr0542,72,1,f +13605,970c00pr0544,320,1,f +13605,973pr2380c01,72,1,f +13605,973pr2382c01,320,1,f +13605,973pr2440c01,19,1,f +13606,2337,0,1,f +13606,2362b,7,1,f +13606,2412b,7,1,f +13606,2420,0,2,f +13606,2446,15,1,f +13606,2447,41,1,f +13606,2508,7,1,f +13606,2540,7,1,f +13606,2555,15,2,f +13606,2584,0,1,f +13606,2585,7,1,f +13606,2620,33,1,f +13606,2819,7,1,f +13606,298c02,15,4,f +13606,3006,0,1,f +13606,30162,8,1,f +13606,30192,8,1,f +13606,30193,8,1,f +13606,30194,8,1,f +13606,3020,14,1,f +13606,3020,0,1,f +13606,3021,7,1,f +13606,3021,15,1,f +13606,3022,7,1,f +13606,30228,8,1,f +13606,30229,8,1,f +13606,3023,15,1,f +13606,3024,36,2,f +13606,3024,42,2,f +13606,3024,46,2,f +13606,3626bp04,14,1,f +13606,3641,0,2,f +13606,3666,14,2,f +13606,3710,14,2,f +13606,3730,7,1,f +13606,3788,14,1,f +13606,3837,8,1,f +13606,3962b,0,1,f +13606,4081b,15,2,f +13606,4085c,0,4,f +13606,4211,14,2,f +13606,4213,0,1,f +13606,4315,0,2,f +13606,4477,0,2,f +13606,4519,0,1,f +13606,4590,0,1,f +13606,4599a,15,1,f +13606,4623,0,2,f +13606,4624,15,2,f +13606,4714,15,1,f +13606,4715,15,2,f +13606,4773,36,1,f +13606,4773,33,1,t +13606,4773,33,1,f +13606,4773,36,1,t +13606,4864b,0,4,f +13606,4865a,0,4,f +13606,6014,15,4,f +13606,6015,0,4,f +13606,6019,7,2,f +13606,6141,46,1,f +13606,6157,0,3,f +13606,970x026,15,1,f +13606,973p8bc01,15,1,f +13606,rb00164,0,1,f +13608,2412b,72,2,f +13608,2412b,179,2,f +13608,2420,72,2,f +13608,2437,40,1,f +13608,2460,4,4,f +13608,2496,0,3,f +13608,2654,0,2,f +13608,2655,71,3,f +13608,3004,4,4,f +13608,3005,47,6,f +13608,3005,4,4,f +13608,3010,25,1,f +13608,30165,4,1,f +13608,3020,4,4,f +13608,3021,25,4,f +13608,3021,4,2,f +13608,3022,25,2,f +13608,3023,46,1,f +13608,3023,0,4,f +13608,3030,71,1,f +13608,30350b,72,1,f +13608,3040b,4,2,f +13608,3040b,25,2,f +13608,30414,4,1,f +13608,3062b,72,2,f +13608,3070b,15,1,t +13608,3070b,15,6,f +13608,32123b,71,2,f +13608,32123b,71,1,t +13608,32125,71,2,f +13608,32523,0,2,f +13608,3460,4,2,f +13608,3660,4,2,f +13608,3666,25,2,f +13608,3666,0,8,f +13608,3678b,4,1,f +13608,3710,71,2,f +13608,3749,19,2,f +13608,3832,0,1,f +13608,4081b,72,2,f +13608,4287,4,4,f +13608,4589,71,2,f +13608,54200,4,4,f +13608,54200,4,1,t +13608,60478,72,2,f +13608,6081,4,2,f +13608,6091,4,8,f +13608,6141,71,4,f +13608,6141,46,2,f +13608,6141,71,1,t +13608,6141,46,1,t +13608,6541,0,2,f +13608,85984,4,10,f +13608,87087,71,2,f +13608,87580,4,1,f +13608,92946,4,4,f +13608,99206,71,3,f +13610,3004,14,1,f +13610,3010,14,1,f +13610,3023,14,2,f +13610,3030,4,1,f +13610,3040p33,0,1,f +13610,3069b,0,1,f +13610,3626apr0001,14,1,f +13610,3660,14,3,f +13610,3665,14,2,f +13610,3710,14,2,f +13610,3794a,14,1,f +13610,4079,14,2,f +13610,4485,1,1,f +13610,4719,0,1,f +13610,4861,14,1,f +13610,6141,47,1,f +13610,92851,47,2,f +13610,970c00,1,1,f +13610,973px61c01,15,1,f +13611,122c01,0,4,f +13611,3004p06,14,1,f +13611,3010,14,3,f +13611,3021,0,1,f +13611,3022,0,2,f +13611,3023,14,6,f +13611,3024,46,2,f +13611,3024,36,2,f +13611,3030,14,2,f +13611,3031,14,2,f +13611,3062b,0,4,f +13611,3068b,14,2,f +13611,3069b,0,2,f +13611,3324c01,0,1,f +13611,3460,14,4,f +13611,3623,14,2,f +13611,3624,4,1,f +13611,3626apr0001,14,1,f +13611,3666,14,4,f +13611,3679,7,1,f +13611,3680,0,1,f +13611,3710,14,4,f +13611,3710,0,1,f +13611,3795,0,2,f +13611,3821,14,1,f +13611,3822,14,1,f +13611,3823,47,1,f +13611,3829c01,14,1,f +13611,3832,0,1,f +13611,3853,14,1,f +13611,3856,14,2,f +13611,3937,14,1,f +13611,3937,0,1,f +13611,3938,0,1,f +13611,3938,14,1,f +13611,3957a,0,2,f +13611,4070,14,2,f +13611,4081a,0,4,f +13611,4084,0,8,f +13611,4085a,14,2,f +13611,4211,14,1,f +13611,4213,14,1,f +13611,4214,14,1,f +13611,4215a,14,6,f +13611,6692stk01,9999,1,f +13611,970c00,1,1,f +13611,973p26c01,1,1,f +13614,2780,0,2,f +13614,32062,0,4,f +13614,32174,72,2,f +13614,32270,71,2,f +13614,32475,72,2,f +13614,32476,272,2,f +13614,32533pb199,25,1,f +13614,3749,19,2,f +13614,41413,178,1,f +13614,44135,72,1,f +13614,44810,272,1,f +13614,4519,71,2,f +13614,47296,72,2,f +13614,47328,272,2,f +13614,47330,272,1,f +13614,47331,272,1,f +13614,47332,272,1,f +13614,47334,179,1,f +13614,47337,135,2,f +13614,x1190,57,1,f +13615,2625,0,2,f +13615,2730,0,4,f +13615,2905,0,2,f +13615,2905,7,2,f +13615,3001,8,4,f +13615,3020,0,2,f +13615,3039,22,2,f +13615,3040b,3,4,f +13615,3062b,15,4,f +13615,32007,15,2,f +13615,32009,22,2,f +13615,32014,7,2,f +13615,32016,1,4,f +13615,32017,7,1,f +13615,32034,7,2,f +13615,32064b,8,4,f +13615,32065,22,6,f +13615,3634,0,2,f +13615,3647,7,1,t +13615,3647,7,3,f +13615,3648a,7,2,f +13615,3660,22,2,f +13615,3665,0,4,f +13615,3701,3,4,f +13615,3709,22,8,f +13615,3710,0,4,f +13615,3794a,0,2,f +13615,3795,2,2,f +13615,3795,8,4,f +13615,3933,0,1,f +13615,3934,0,1,f +13615,3937,0,2,f +13615,3938,0,2,f +13615,3941,57,2,f +13615,3960,42,2,f +13615,4019,7,2,f +13615,4070,0,2,f +13615,4113097,89,1,f +13615,4185,7,2,f +13615,4275b,0,2,f +13615,4276b,0,2,f +13615,4519,0,3,f +13615,5306bc046,0,1,f +13615,6019,0,4,f +13615,6057,6,2,f +13615,6538b,7,1,f +13615,6558,0,4,f +13615,6581,0,2,f +13615,6582,22,2,f +13615,6629,3,2,f +13615,6637,7,1,f +13615,73983,7,2,f +13615,75c36,3,2,f +13615,78c14,3,2,f +13615,85543,15,1,f +13615,85545,1,2,f +13615,rb00170,0,2,f +13615,x165,47,8,f +13616,44341pr01,2,2,f +13618,2352,14,2,f +13618,2356,14,1,f +13618,2456,4,2,f +13618,2456,15,2,f +13618,2456,1,2,f +13618,2577,1,4,f +13618,3001,4,22,f +13618,3001,15,20,f +13618,3001,14,20,f +13618,3001,1,20,f +13618,3001,0,10,f +13618,3001pr1,14,1,f +13618,3002,14,8,f +13618,3002,0,4,f +13618,3002,1,8,f +13618,3002,15,8,f +13618,3002,4,8,f +13618,3003,4,30,f +13618,3003,14,30,f +13618,3003,1,30,f +13618,3003,2,4,f +13618,3003,0,17,f +13618,3003,15,30,f +13618,3003pe2,14,2,f +13618,3003pe2,15,2,f +13618,3003pe2,4,2,f +13618,3006,1,2,f +13618,3007,4,2,f +13618,3007,15,2,f +13618,3007,14,2,f +13618,3185,15,6,f +13618,3483,0,8,f +13618,3867,2,2,f +13618,4727,2,6,f +13618,4728,15,1,f +13618,4728,4,2,f +13618,4728,14,1,f +13618,4728,1,2,f +13618,4743,15,1,f +13618,4743,1,1,f +13618,4744,4,1,f +13618,4744,14,1,f +13618,4744,1,1,f +13618,4744,2,1,f +13618,4744pr0001,0,1,f +13618,4744pr0002,4,1,f +13618,4744px6,6,1,f +13618,4745,14,3,f +13618,4747,4,1,f +13618,4748,4,1,f +13618,600,14,2,f +13618,601,14,4,f +13618,6212,1,1,f +13618,6212,14,1,f +13618,6213px2,14,1,f +13618,6214px1,2,1,f +13618,6215,1,8,f +13618,6215,4,8,f +13618,6215,2,4,f +13618,6215,14,4,f +13618,6216,4,2,f +13618,6216,14,2,f +13618,6216,1,2,f +13618,6216,2,2,f +13618,6232,4,2,f +13618,6235,4,2,f +13618,6236,4,2,f +13618,6244px1,15,1,f +13618,6247,14,4,f +13618,6248,4,8,f +13618,6249,4,8,f +13618,82248,1,1,f +13618,82249,15,1,f +13620,3001,1,1,f +13620,3002,4,1,f +13620,3034,1,2,f +13620,3037,4,1,f +13620,3039,47,1,f +13620,3297px18,4,1,f +13620,3483,0,4,f +13620,6248,15,4,f +13620,6249,4,2,f +13621,122c01,0,4,f +13621,3003,1,1,f +13621,3003,15,5,f +13621,3004,4,1,f +13621,3004,7,2,f +13621,3004,1,2,f +13621,3004,15,17,f +13621,3004,14,1,f +13621,3005,4,1,f +13621,3005,15,8,f +13621,3005,14,1,f +13621,3008,1,2,f +13621,3009,1,1,f +13621,3009,15,6,f +13621,3009,4,1,f +13621,3010,15,6,f +13621,3020,14,1,f +13621,3020,15,1,f +13621,3020,7,2,f +13621,3021,15,10,f +13621,3021,0,1,f +13621,3022,4,1,f +13621,3022,0,5,f +13621,3023,15,6,f +13621,3023,0,3,f +13621,3023,14,4,f +13621,3023,4,7,f +13621,3024,15,2,f +13621,3024,46,4,f +13621,3024,36,4,f +13621,3028,4,1,f +13621,3033,4,2,f +13621,3039,0,1,f +13621,3062a,1,3,f +13621,3062a,4,5,f +13621,3068b,4,1,f +13621,3068b,7,1,f +13621,3068b,14,1,f +13621,3069b,15,1,f +13621,3069b,7,2,f +13621,3149c01,7,2,f +13621,3298,7,4,f +13621,3456,4,1,f +13621,3460,15,7,f +13621,3622,15,6,f +13621,3622,1,2,f +13621,3623,4,1,f +13621,3624,4,1,f +13621,3625,0,1,f +13621,3626apr0001,14,3,f +13621,3629,0,1,f +13621,3641,0,10,f +13621,3660,15,2,f +13621,3665,15,4,f +13621,3710,15,9,f +13621,3741,2,2,f +13621,3742,14,2,t +13621,3742,14,6,f +13621,3761,1,1,f +13621,3762,47,1,f +13621,3788,4,2,f +13621,3788,14,2,f +13621,3794a,15,8,f +13621,3795,7,1,f +13621,3821,4,1,f +13621,3821,14,1,f +13621,3822,14,1,f +13621,3822,4,1,f +13621,3823,47,2,f +13621,3829c01,4,1,f +13621,3829c01,14,1,f +13621,3836,6,1,f +13621,3837,8,1,f +13621,3861b,1,1,f +13621,3937,4,1,f +13621,3937,14,1,f +13621,3938,7,2,f +13621,3956,7,1,f +13621,3959,7,2,f +13621,4006,0,1,f +13621,4070,4,5,f +13621,4070,14,5,f +13621,4070,15,12,f +13621,4079,4,1,f +13621,4079,14,2,f +13621,4081a,15,2,f +13621,4085a,15,5,f +13621,4187,7,1,f +13621,4212a,0,2,f +13621,606p02,7,1,f +13621,970c00,0,1,f +13621,970c00,1,2,f +13621,973p18c01,1,1,f +13621,973pb0034c01,4,2,f +13621,rb00166,0,4,f +13622,3005,71,1,f +13622,3005,47,1,f +13622,3020,28,1,f +13622,3023,71,2,f +13622,3040b,72,1,f +13622,3626cpr0964,78,1,f +13622,3705,0,1,f +13622,3794b,72,1,f +13622,42003,72,1,f +13622,4274,71,1,t +13622,4274,71,1,f +13622,4460b,72,2,f +13622,50231,4,1,f +13622,54200,71,2,f +13622,54200,71,1,t +13622,60483,0,1,f +13622,6141,71,1,t +13622,6141,71,1,f +13622,6541,72,2,f +13622,75904,71,1,f +13622,88283,226,1,f +13622,92946,72,1,f +13622,970c00,272,1,f +13622,973pr2044c01,272,1,f +13624,10247,0,4,f +13624,10928,72,1,f +13624,11478,0,4,f +13624,11946,4,2,f +13624,11946,2,3,f +13624,11947,2,3,f +13624,11947,4,2,f +13624,2412b,71,15,f +13624,2431,15,2,f +13624,2780,0,5,t +13624,2780,0,169,f +13624,2819,71,1,f +13624,3020,0,2,f +13624,3023,182,2,f +13624,3032,0,1,f +13624,30395,72,1,f +13624,3068b,0,2,f +13624,3069b,182,2,f +13624,32002,19,1,t +13624,32002,19,9,f +13624,32009,0,4,f +13624,32013,0,15,f +13624,32013,14,5,f +13624,32015,71,2,f +13624,32034,71,21,f +13624,32039,71,4,f +13624,32054,4,52,f +13624,32056,72,16,f +13624,32062,4,35,f +13624,32063,71,2,f +13624,32073,71,19,f +13624,32123b,71,1,t +13624,32123b,14,2,f +13624,32123b,71,21,f +13624,32123b,14,1,t +13624,32138,0,2,f +13624,32140,0,4,f +13624,32184,71,12,f +13624,32198,19,1,f +13624,32269,19,3,f +13624,32269,0,1,f +13624,32270,0,7,f +13624,32278,4,20,f +13624,32291,72,12,f +13624,32316,71,9,f +13624,32316,4,1,f +13624,32316,0,9,f +13624,32316,15,1,f +13624,32449,4,10,f +13624,32523,0,14,f +13624,32524,2,4,f +13624,32524,0,4,f +13624,32525,71,7,f +13624,32525,0,2,f +13624,32526,71,4,f +13624,32526,4,14,f +13624,32526,2,18,f +13624,32556,19,3,f +13624,3623,0,1,f +13624,3673,71,8,f +13624,3673,71,2,t +13624,3705,0,16,f +13624,3706,0,6,f +13624,3707,0,3,f +13624,3710,0,2,f +13624,3713,71,1,t +13624,3713,4,1,t +13624,3713,4,8,f +13624,3713,71,53,f +13624,3737,0,2,f +13624,3749,19,5,f +13624,40490,2,7,f +13624,40490,0,2,f +13624,40490,71,6,f +13624,40490,4,2,f +13624,41239,2,9,f +13624,41239,72,1,f +13624,41239,71,2,f +13624,41677,1,4,f +13624,41678,71,5,f +13624,42003,72,30,f +13624,4274,71,40,f +13624,4274,71,1,t +13624,43093,1,63,f +13624,44294,71,12,f +13624,44309,0,8,f +13624,4519,71,47,f +13624,4697b,71,1,t +13624,4697b,71,1,f +13624,47223a,72,2,f +13624,48496,0,1,f +13624,48989,71,4,f +13624,5102c05,1,1,f +13624,5102c07,1,1,f +13624,5102c14,1,1,f +13624,5102c17,0,1,f +13624,5102c17,71,1,f +13624,5102c37,0,1,f +13624,5102c39,71,1,f +13624,54200,182,2,t +13624,54200,0,1,f +13624,54200,0,1,t +13624,54200,182,4,f +13624,56145,71,8,f +13624,56823c100,0,1,f +13624,58119,71,1,f +13624,58120,71,1,f +13624,59426,72,8,f +13624,59443,0,2,f +13624,59443,71,25,f +13624,60483,71,19,f +13624,60485,71,4,f +13624,6141,47,1,t +13624,6141,182,14,f +13624,6141,182,1,t +13624,6141,36,2,f +13624,6141,36,1,t +13624,6141,47,4,f +13624,61510,71,1,f +13624,61903,71,4,f +13624,61904,72,1,f +13624,61927b,71,1,f +13624,62462,4,8,f +13624,62531,0,3,f +13624,64782,2,5,f +13624,6536,4,28,f +13624,6536,72,7,f +13624,6538b,19,2,f +13624,6539,4,2,f +13624,6542b,72,4,f +13624,6558,1,61,f +13624,6558,1,1,t +13624,6587,28,4,f +13624,6589,19,1,t +13624,6589,19,3,f +13624,6628,0,4,f +13624,6629,0,6,f +13624,6632,2,30,f +13624,6641,4,2,f +13624,74981,14,2,f +13624,75c07,0,2,f +13624,76244,15,1,f +13624,85984,0,2,f +13624,87080,2,2,f +13624,87082,71,8,f +13624,87083,72,16,f +13624,87086,2,2,f +13624,87408,0,1,f +13624,87761,0,2,f +13624,92693,71,2,f +13624,94925,71,10,f +13624,98989,71,2,f +13624,99008,19,4,f +13624,99773,71,6,f +13624,99798,71,1,f +13625,2431,14,3,f +13625,3004,2,2,f +13625,3005,2,2,f +13625,3005,288,1,f +13625,3009,2,2,f +13625,3010,2,2,f +13625,3021,85,1,f +13625,3022,2,4,f +13625,3023,2,3,f +13625,3024,2,2,f +13625,3031,14,1,f +13625,3035,0,2,f +13625,3037,14,3,f +13625,3039,14,4,f +13625,3048c,0,1,f +13625,3049d,0,1,f +13625,3069b,85,1,f +13625,3070b,14,1,t +13625,3070b,14,2,f +13625,3298,0,5,f +13625,3660,0,1,f +13625,3660,2,4,f +13625,3665,2,2,f +13625,3675,0,4,f +13625,3678b,0,4,f +13625,3710,2,2,f +13625,3794b,2,1,f +13625,4286,14,4,f +13625,50950,288,1,f +13625,60219,72,1,f +13625,6141,179,1,t +13625,6141,4,2,f +13625,6141,179,2,f +13625,6141,4,1,t +13625,6636,14,1,f +13627,2339,6,3,f +13627,2417,2,3,f +13627,2458,7,1,f +13627,2540,0,1,f +13627,2555,0,1,f +13627,3003,7,2,f +13627,3005,7,5,f +13627,3023,6,2,f +13627,3028,2,1,f +13627,3062b,7,3,f +13627,3623,6,5,f +13627,3626bp35,14,1,f +13627,3626bpx12,14,1,f +13627,3659,7,2,f +13627,3666,0,1,f +13627,3846p48,6,1,f +13627,3847,8,1,f +13627,3848,6,1,f +13627,4070,0,1,f +13627,4081b,0,1,f +13627,4085c,7,2,f +13627,4477,0,1,f +13627,4497,0,1,f +13627,4498,6,1,f +13627,4499,6,1,f +13627,4505,0,1,f +13627,4505,6,1,f +13627,4529,0,1,f +13627,4738a,6,1,f +13627,4739a,6,1,f +13627,6020,6,1,f +13627,6083,8,1,f +13627,6126a,57,1,f +13627,6141,34,1,f +13627,6141,33,2,t +13627,6141,34,2,t +13627,6141,36,2,t +13627,6141,0,2,t +13627,6141,33,1,f +13627,6141,36,1,f +13627,6141,0,1,f +13627,6541,0,1,f +13627,970c00,6,1,f +13627,970c00,7,1,f +13627,973p46c01,2,1,f +13627,973px21c01,2,1,f +13628,2420,15,2,f +13628,2431,15,2,f +13628,2436,71,3,f +13628,2444,1,2,f +13628,2654,71,1,f +13628,2730,71,2,f +13628,2780,0,1,t +13628,2780,0,7,f +13628,2815,0,2,f +13628,2817,0,1,f +13628,2877,72,4,f +13628,2904,0,1,f +13628,3003,15,1,f +13628,3004,0,4,f +13628,3010,72,1,f +13628,3010,4,1,f +13628,3020,15,2,f +13628,3020,4,2,f +13628,3020,1,5,f +13628,3020,0,3,f +13628,3021,15,2,f +13628,3021,4,2,f +13628,3021,0,1,f +13628,3023,1,3,f +13628,3023,15,5,f +13628,3024,15,2,f +13628,3024,1,5,f +13628,3024,71,2,f +13628,3034,71,2,f +13628,3035,0,1,f +13628,30363,15,2,f +13628,3040b,1,2,f +13628,3040b,15,1,f +13628,3062b,71,2,f +13628,3068b,15,1,f +13628,3068b,0,1,f +13628,3069b,4,2,f +13628,32002,72,1,t +13628,32002,72,1,f +13628,32013,71,4,f +13628,32019,0,2,f +13628,32020,71,2,f +13628,32039,0,2,f +13628,32062,4,1,f +13628,32064b,1,2,f +13628,32073,71,4,f +13628,32123b,71,1,t +13628,32123b,71,6,f +13628,32271,71,2,f +13628,32316,71,1,f +13628,3298,0,1,f +13628,3460,1,2,f +13628,3623,4,2,f +13628,3623,0,1,f +13628,3623,1,3,f +13628,3623,15,3,f +13628,3659,71,1,f +13628,3660,1,5,f +13628,3665,71,2,f +13628,3666,71,1,f +13628,3666,1,2,f +13628,3701,0,2,f +13628,3706,0,2,f +13628,3710,1,2,f +13628,3710,0,3,f +13628,3713,71,1,t +13628,3713,71,4,f +13628,3795,15,1,f +13628,3795,1,1,f +13628,3957a,71,2,f +13628,4032a,0,2,f +13628,4081b,72,1,f +13628,41669,40,2,f +13628,41677,72,1,f +13628,41747,1,1,f +13628,41748,1,1,f +13628,4185,71,2,f +13628,42023,4,1,f +13628,42023,1,2,f +13628,4274,1,10,f +13628,4274,1,1,t +13628,43093,1,11,f +13628,43722,1,1,f +13628,43722,15,1,f +13628,43723,1,1,f +13628,43723,15,1,f +13628,44294,71,1,f +13628,44302a,4,2,f +13628,44568,1,1,f +13628,4477,71,2,f +13628,4519,71,4,f +13628,45590,0,2,f +13628,4589,72,2,f +13628,4740,72,2,f +13628,50950,15,1,f +13628,50950,1,2,f +13628,51739,15,1,f +13628,54200,182,1,t +13628,54200,36,2,f +13628,54200,182,2,f +13628,54200,0,6,f +13628,54200,40,4,f +13628,54200,0,1,t +13628,54200,72,2,f +13628,54200,40,1,t +13628,54200,36,1,t +13628,54200,72,1,t +13628,54383,1,3,f +13628,54384,1,3,f +13628,59443,71,2,f +13628,60470a,0,2,f +13628,60478,72,4,f +13628,60483,71,3,f +13628,6070,40,2,f +13628,6091,1,2,f +13628,61409,72,2,f +13628,6141,72,1,t +13628,6141,72,6,f +13628,6141,15,2,f +13628,6141,15,1,t +13628,6190,72,2,f +13628,6541,1,2,f +13628,6553,72,1,f +13628,6564,1,1,f +13628,6565,1,1,f +13628,6587,72,1,f +13628,6632,72,4,f +13629,2780,0,2,f +13629,2815,0,2,f +13629,2817,0,1,f +13629,2994,14,2,f +13629,3068b,0,1,f +13629,32009,22,2,f +13629,32012,22,1,f +13629,32013,0,4,f +13629,32015,0,2,f +13629,32034,0,2,f +13629,32039,0,5,f +13629,32062,0,7,f +13629,32123b,7,2,f +13629,32123b,7,1,t +13629,3705,0,2,f +13629,3706,0,2,f +13629,3707,0,1,f +13629,3713,7,5,f +13629,3713,7,1,t +13629,3737,0,2,f +13629,3749,7,5,f +13629,4019,7,3,f +13629,4185,14,2,f +13629,4519,0,2,f +13629,6536,0,1,f +13629,6578,0,2,f +13629,6587,8,1,f +13629,6628,0,1,f +13629,6629,0,1,f +13629,6632,14,4,f +13629,75535,14,1,t +13629,78c07,22,2,f +13629,bb298c82,15,1,f +13631,2357,71,2,f +13631,2420,70,2,f +13631,2431,320,2,f +13631,2555,15,1,f +13631,2555,320,2,f +13631,2570,70,1,f +13631,2736,71,1,f +13631,2926,0,1,f +13631,3003,0,2,f +13631,3004,71,8,f +13631,3004,0,5,f +13631,3005,0,4,f +13631,3005,71,4,f +13631,30055,0,1,f +13631,3009,0,3,f +13631,3009,71,2,f +13631,3009,72,1,f +13631,3010,0,1,f +13631,3021,2,1,f +13631,3021,72,2,f +13631,30237a,70,3,f +13631,3031,4,2,f +13631,3032,2,1,f +13631,3034,0,2,f +13631,3034,72,2,f +13631,3040b,70,4,f +13631,30414,0,1,f +13631,3046a,0,2,f +13631,3048c,297,6,f +13631,3062b,71,1,f +13631,3069b,70,1,f +13631,3070b,70,2,f +13631,32034,0,1,f +13631,32064b,72,1,f +13631,32530,72,2,f +13631,32556,19,1,f +13631,3622,72,2,f +13631,3622,4,2,f +13631,3622,71,4,f +13631,3623,72,2,f +13631,3626bpr0494,15,1,f +13631,3626bpr0500,14,1,f +13631,3659,71,1,f +13631,3660,71,2,f +13631,3665,0,2,f +13631,3666,272,1,f +13631,3684,0,2,f +13631,3701,4,1,f +13631,3794a,15,1,f +13631,3794a,272,1,f +13631,3844,80,1,f +13631,3846pr24,71,1,f +13631,3847,135,1,f +13631,3848,72,1,f +13631,43899,72,2,f +13631,4460b,272,2,f +13631,4489b,70,2,f +13631,4495b,272,1,f +13631,4497,135,1,f +13631,4529,0,1,f +13631,4589,15,6,f +13631,47990,72,1,f +13631,53451,15,4,f +13631,59228,15,1,f +13631,59229,72,1,f +13631,59230,15,2,f +13631,59231pr0001,72,1,f +13631,60115,15,1,f +13631,60596,72,1,f +13631,60621,71,1,f +13631,6126a,57,2,f +13631,6141,72,1,f +13631,6266,15,2,f +13631,63965,0,1,f +13631,970x026,71,1,f +13631,973pr1318c01,272,1,f +13632,4168,7,4,f +13632,4169,7,4,f +13633,2447,40,1,f +13633,2447,40,1,t +13633,3626bpr0325,14,1,f +13633,3834,15,1,f +13633,3838,14,1,f +13633,6158,72,1,f +13633,970c00,0,1,f +13633,973pr1187c01,0,1,f +13634,3297,0,24,f +13634,3298,0,44,f +13635,3749,19,100,f +13637,11090,72,4,f +13637,11272,148,1,f +13637,15976,0,2,f +13637,24014,71,1,f +13637,24162pat0002,297,1,f +13637,24188,148,2,f +13637,24191,297,1,f +13637,2780,0,4,f +13637,30552,71,1,f +13637,30553,72,1,f +13637,32039,0,2,f +13637,32062,4,2,f +13637,32073,71,2,f +13637,32270,0,1,f +13637,41677,72,3,f +13637,42003,71,1,f +13637,4274,71,2,f +13637,50923,72,2,f +13637,58176,36,1,f +13637,6536,0,8,f +13637,6558,1,1,f +13637,87083,72,2,f +13637,87747,85,3,f +13637,89522,179,4,f +13637,90609,0,2,f +13637,98590,0,1,f +13642,10055pr0001,308,1,f +13642,11156,297,1,f +13642,3626bpb0811,78,1,f +13642,970c00pb207,326,1,f +13642,973pb1262c01,297,1,f +13642,99464,272,1,f +13643,2780,0,2,f +13643,32013,25,2,f +13643,32015,25,2,f +13643,32039,25,1,f +13643,32138,0,1,f +13643,32140,0,2,f +13643,32553,4,3,f +13643,32554,45,1,f +13643,32573,25,1,f +13643,3749,7,1,f +13643,40342,4,1,f +13643,4519,0,5,f +13643,6553,0,3,f +13643,71509,0,1,t +13643,71509,0,1,f +13644,3003pe2,15,1,f +13644,3003pe2,14,1,f +13644,3004,15,2,f +13644,3004,0,1,f +13644,3004,14,1,f +13644,3020,15,1,f +13644,3021,14,3,f +13644,3021,15,1,f +13644,3021,4,2,f +13644,3039,0,1,f +13644,3039,14,2,f +13644,3298,15,1,f +13644,3623,4,2,f +13644,3660,15,2,f +13644,3665,14,2,f +13644,3741,2,1,f +13644,3741,2,1,t +13644,3742,1,1,t +13644,3742,1,3,f +13644,3794a,15,2,f +13647,2420,1,2,f +13647,2540,1,2,f +13647,2540,25,2,f +13647,2555,0,6,f +13647,2654,1,2,f +13647,3021,0,1,f +13647,3023,25,1,f +13647,3023,1,4,f +13647,3024,0,9,f +13647,3024,25,4,f +13647,30374,0,1,f +13647,3062b,0,1,f +13647,3069b,1,1,f +13647,3070b,1,7,f +13647,3070b,0,4,f +13647,3070b,25,3,f +13647,3623,1,2,f +13647,3623,0,1,f +13647,3710,1,1,f +13647,3794b,25,2,f +13647,3794b,1,2,f +13647,4032a,71,1,f +13647,4085c,0,4,f +13647,4085c,1,8,f +13647,4150,71,1,f +13647,43723,25,1,f +13647,4599b,1,1,f +13647,4623,0,2,f +13647,4697b,71,6,f +13647,4733,1,8,f +13647,4733,0,3,f +13647,4733,71,1,f +13647,47905,0,2,f +13647,54200,0,7,f +13647,54200,1,8,f +13647,54200,25,2,f +13647,61409,1,1,f +13647,6141,72,2,f +13647,6141,71,2,f +13647,6541,0,2,f +13647,6636,71,2,f +13647,85984,0,1,f +13647,87087,0,2,f +13648,2436,71,1,f +13648,2540,71,2,f +13648,2555,25,2,f +13648,3023,0,4,f +13648,3023,71,2,f +13648,3024,0,1,f +13648,30383,71,2,f +13648,3039,0,2,f +13648,3040b,0,2,f +13648,3710,25,2,f +13648,3794a,71,1,f +13648,3839b,0,2,f +13648,3937,0,2,f +13648,3938,71,2,f +13648,3957a,71,1,f +13648,4085c,71,1,f +13648,44302a,0,4,f +13648,44302a,25,2,f +13648,44567a,25,4,f +13648,47674,47,1,f +13648,47675,0,1,f +13648,47676,0,1,f +13648,47905,0,2,f +13648,6141,57,4,f +13648,6141,57,1,t +13648,73983,0,2,f +13652,10928,72,1,f +13652,11212,71,4,f +13652,11477,19,2,f +13652,14417,72,2,f +13652,14769,288,2,f +13652,15068,288,1,f +13652,15068,19,1,f +13652,15456,0,1,f +13652,15712,72,3,f +13652,17630,308,1,f +13652,18738,71,2,f +13652,18980,71,2,f +13652,2412b,19,2,f +13652,2412b,179,6,f +13652,2420,320,8,f +13652,2431,25,1,f +13652,2654,47,11,f +13652,2780,0,2,f +13652,30043,0,1,f +13652,3020,71,1,f +13652,3020,19,3,f +13652,3021,288,3,f +13652,3022,0,3,f +13652,3023,19,1,f +13652,3023,288,4,f +13652,3023,71,6,f +13652,3024,288,1,f +13652,3031,0,2,f +13652,3034,0,1,f +13652,30374,41,1,f +13652,30408pr0008,15,1,f +13652,3068b,320,2,f +13652,3069b,25,2,f +13652,3070b,47,8,f +13652,3070b,34,2,f +13652,3070b,36,2,f +13652,32000,72,1,f +13652,32138,71,1,f +13652,3626cpr1149,78,1,f +13652,3626cpr1629,92,1,f +13652,3710,71,13,f +13652,3795,72,2,f +13652,3839b,72,2,f +13652,43719,47,1,f +13652,43722,2,1,f +13652,43723,2,1,f +13652,4599b,71,2,f +13652,4697b,71,1,f +13652,4733,0,1,f +13652,4865a,72,2,f +13652,49668,288,2,f +13652,58247,0,5,f +13652,59900,19,1,f +13652,6081,72,8,f +13652,60897,19,4,f +13652,60897,0,8,f +13652,61184,71,2,f +13652,61252,72,2,f +13652,6179,72,4,f +13652,63082,71,2,f +13652,63864,320,2,f +13652,63868,0,2,f +13652,64567,80,1,f +13652,64567,71,2,f +13652,6587,28,1,f +13652,85984,72,1,f +13652,85984,0,1,f +13652,87087,72,8,f +13652,88072,72,3,f +13652,92738,0,1,f +13652,93274,71,1,f +13652,970c00pr0720,72,1,f +13652,970c00pr0735,15,1,f +13652,973pr2769c01,326,1,f +13652,973pr2795c01,15,1,f +13652,98138,71,2,f +13652,98138,46,1,f +13652,98138pr0010,179,4,f +13652,98283,72,4,f +13652,98286,71,4,f +13652,99021,72,1,f +13652,99207,71,10,f +13652,99780,71,2,f +13652,99780,2,2,f +13652,99781,0,5,f +13653,3021,1,30,f +13653,728,7,1,f +13653,729,47,1,f +13654,15535,72,1,f +13654,17013pb02,72,1,f +13654,18277,72,1,f +13654,30162,72,1,f +13654,3062b,72,1,f +13654,33183,70,1,f +13654,41879pb003,320,1,f +13654,54200,40,1,f +13654,60897,0,1,f +13654,85975,297,1,f +13654,95199,0,1,f +13654,973pb1818c01,320,1,f +13655,2431pt2,15,2,f +13655,3004pc0,15,1,f +13655,3004px1,15,1,f +13655,3039p71,0,2,f +13655,3039p72,14,2,f +13655,3039p73,4,2,f +13655,3039p74,15,2,f +13655,3039p75,1,2,f +13655,3039pc5,7,1,f +13655,3039pr0005,15,1,f +13655,3039px14,15,1,f +13655,3040p04,7,2,f +13655,3068bp70,15,1,f +13655,3068bpt0,15,1,f +13655,3069bp02,7,2,f +13655,3069bp09,15,2,f +13655,3069bp0b,15,1,f +13655,3069bp80,15,2,f +13655,3069bpb003,15,2,f +13655,3069bpr0016,15,2,f +13655,3069bpr0100,2,4,f +13655,3069bpx35,15,1,f +13655,3298p71,0,1,f +13655,3298p72,14,1,f +13655,3298p74,15,1,f +13655,3298p75,1,1,f +13655,3298pb002,4,1,f +13655,3622px1,15,1,f +13656,723,80,4,f +13659,2432,0,1,f +13659,2446,15,1,f +13659,2447,0,1,f +13659,3039,0,1,f +13659,3062b,7,2,f +13659,3626bp05,14,1,f +13659,3641,0,4,f +13659,3795,4,1,f +13659,3829c01,0,1,f +13659,4624,15,4,f +13659,6157,0,2,f +13659,970c00,1,1,f +13659,973pr1156c01,1,1,f +13660,194cx1,7,2,f +13660,2346,0,8,f +13660,2357,4,4,f +13660,2456,4,1,f +13660,2500c01,15,2,f +13660,2508,15,1,f +13660,3001,4,1,f +13660,3003,7,1,f +13660,3003,4,2,f +13660,3003,15,4,f +13660,3004,0,2,f +13660,3004,7,1,f +13660,3004,4,24,f +13660,3004,15,8,f +13660,3005,4,28,f +13660,3005,7,2,f +13660,3005p03,15,4,f +13660,3008,4,7,f +13660,3009,15,2,f +13660,3009,4,11,f +13660,3010,4,10,f +13660,3010p06,15,1,f +13660,3020,15,3,f +13660,3020,7,1,f +13660,3021,15,12,f +13660,3021,0,2,f +13660,3022,15,3,f +13660,3023,15,6,f +13660,3023,4,8,f +13660,3024,7,2,f +13660,3024,4,8,f +13660,3024,46,2,f +13660,3024,4,1,t +13660,3029,4,1,f +13660,3031,15,1,f +13660,3032,15,1,f +13660,3032,4,2,f +13660,3034,15,1,f +13660,3035,4,3,f +13660,3035,15,5,f +13660,3036,15,1,f +13660,3036,4,2,f +13660,3037,4,2,f +13660,3038,4,2,f +13660,3039,4,1,f +13660,3039p32,7,3,f +13660,3040b,4,2,f +13660,3040b,7,2,f +13660,3062b,14,4,f +13660,3062b,1,3,f +13660,3062b,7,8,f +13660,3068b,7,1,f +13660,3068b,4,2,f +13660,3068bp05,15,1,f +13660,3068bp06,15,1,f +13660,3070bp06,14,2,f +13660,3127,7,1,f +13660,3149c01,4,1,f +13660,3176,15,1,f +13660,3183a,15,1,f +13660,3188,4,2,f +13660,3189,4,2,f +13660,3192,4,1,f +13660,3192,7,3,f +13660,3193,4,1,f +13660,3193,7,3,f +13660,3245bpx8,4,2,f +13660,3403c01,4,1,f +13660,3460,4,14,f +13660,3460,15,3,f +13660,3482,15,8,f +13660,3622,15,4,f +13660,3622,4,8,f +13660,3622p02,15,2,f +13660,3633,15,9,f +13660,3660,15,12,f +13660,3665,4,12,f +13660,3666,15,2,f +13660,3666,4,6,f +13660,3679,7,1,f +13660,3680,4,1,f +13660,3700,4,4,f +13660,3707,0,4,f +13660,3710,7,1,f +13660,3710,15,1,f +13660,3710,4,9,f +13660,3713,7,2,f +13660,3794a,4,1,f +13660,3795,4,6,f +13660,3823,41,2,f +13660,3829c01,7,1,f +13660,3832,15,2,f +13660,3835,7,2,f +13660,3837,8,2,f +13660,3839b,7,1,f +13660,3841,8,2,f +13660,3853,4,2,f +13660,3856,4,4,f +13660,3894,4,2,f +13660,3937,4,1,f +13660,3938,4,1,f +13660,3941p01,7,3,f +13660,3958,4,1,f +13660,4070,7,2,f +13660,4070,15,8,f +13660,4070,4,14,f +13660,4079,1,5,f +13660,4081b,4,4,f +13660,4081b,15,2,f +13660,4085c,4,12,f +13660,4175,7,2,f +13660,4207,7,3,f +13660,4208,0,3,f +13660,4209,14,2,f +13660,4209,4,1,f +13660,4265a,7,1,t +13660,4265a,7,12,f +13660,4349,7,2,f +13660,4477,4,4,f +13660,4522,0,2,f +13660,4589,7,1,f +13660,4599a,7,8,f +13660,4757,15,2,f +13660,4758,15,2,f +13660,4760c01,15,1,f +13660,4767,15,2,f +13660,4771,15,1,f +13660,4773,34,4,f +13660,4773,33,4,f +13660,4773,36,4,f +13660,4773,46,6,f +13660,4774c01,0,1,f +13660,4864a,41,2,f +13660,4873,15,2,f +13660,5306bc015,0,2,f +13660,56823c150,0,1,f +13660,6141,46,8,f +13660,6141,33,6,f +13660,6141,36,6,f +13660,6141,15,4,f +13660,6141,7,8,f +13660,6141,47,4,f +13660,73590c01b,14,2,f +13662,2412b,7,2,f +13662,2432,1,1,f +13662,2445,0,1,f +13662,2446,1,1,f +13662,2447,41,1,f +13662,3023,1,1,f +13662,3139,0,2,f +13662,3298p55,1,1,f +13662,3626apr0001,14,1,f +13662,3829c01,1,1,f +13662,3839b,7,1,f +13662,3937,4,2,f +13662,3938,4,2,f +13662,4084,0,2,f +13662,4600,0,2,f +13662,4624,15,2,f +13662,4624,7,2,f +13662,970c00,1,1,f +13662,973p0ac01,1,1,f +13663,2446,0,1,f +13663,2447,42,1,f +13663,2458,4,1,f +13663,2466,42,1,f +13663,2569,42,2,f +13663,2607,4,1,f +13663,2609,0,1,f +13663,3020,0,1,f +13663,3021,4,1,f +13663,3022,0,1,f +13663,3023,0,2,f +13663,3023,4,5,f +13663,3024,4,2,f +13663,3034,0,1,f +13663,3069bp68,15,1,f +13663,3070b,0,1,f +13663,3298,4,1,f +13663,3298p68,4,1,f +13663,3479,0,2,f +13663,3626apr0001,14,1,f +13663,3747a,4,2,f +13663,3795,4,1,f +13663,3838,0,1,f +13663,3839b,0,1,f +13663,3933a,0,2,f +13663,3934a,0,2,f +13663,3937,4,1,f +13663,3938,0,1,f +13663,3962a,0,1,f +13663,4081b,4,2,f +13663,4085c,4,2,f +13663,4085c,0,2,f +13663,4345a,4,1,f +13663,4346p68,7,1,f +13663,4475,4,1,f +13663,4589,42,2,f +13663,4595,7,2,f +13663,4732,0,1,f +13663,4740,42,2,f +13663,6141,42,2,f +13663,73092,0,2,f +13663,970x026,15,1,f +13663,973p68c01,4,1,f +13664,3002,15,1,f +13664,3003,15,2,f +13664,3004,15,4,f +13664,3005,0,2,f +13664,3005,4,4,f +13664,3022,15,2,f +13664,3023,15,1,f +13664,3023,4,1,f +13664,3024,0,4,f +13664,3024,4,1,f +13664,3024,15,6,f +13664,3034,15,1,f +13664,3039p32,15,1,f +13664,3040b,15,2,f +13664,3069b,15,3,f +13664,3070b,15,2,f +13664,3139,0,6,f +13664,3460,0,2,f +13664,3460,15,1,f +13664,3460,4,3,f +13664,3474,15,1,f +13664,3585,15,1,f +13664,3586,15,1,f +13664,3623,4,1,f +13664,3624,0,1,f +13664,3626apr0001,14,2,f +13664,3660,15,2,f +13664,3666,4,1,f +13664,3679,7,1,f +13664,3680,7,1,f +13664,3710,15,2,f +13664,3901,0,1,f +13664,4070,15,4,f +13664,4079,1,3,f +13664,4162,4,1,f +13664,4282,4,1,f +13664,4449,6,1,f +13664,4477,0,2,f +13664,4624,7,6,f +13664,4625,15,4,f +13664,4854,15,3,f +13664,4855,15,2,f +13664,4856a,15,2,f +13664,4857,15,4,f +13664,4858,15,1,f +13664,4859,4,2,f +13664,4859,0,2,f +13664,4859,15,1,f +13664,4861,15,1,f +13664,4862,41,8,f +13664,4863,15,4,f +13664,4864a,15,2,f +13664,4865a,15,2,f +13664,4866,41,1,f +13664,4867p10,15,1,f +13664,4868a,15,2,f +13664,4869,7,2,f +13664,4870,7,3,f +13664,6141,36,3,f +13664,6141,36,1,t +13664,6141,34,1,f +13664,6141,34,1,t +13664,970c00,0,1,f +13664,970c00,7,1,f +13664,973pb0069c01,0,1,f +13664,973px189c01,0,1,f +13665,45474,45,1,f +13665,45481,41,1,f +13665,46296,47,1,f +13665,clikits011,45,1,f +13665,clikits068,47,1,f +13665,clikits113,41,2,f +13665,clikits204,89,1,f +13666,3004,14,3,f +13666,3005,14,6,f +13666,3009,14,2,f +13666,3010,14,2,f +13666,3010p30,14,1,f +13666,3020,0,1,f +13666,3022,0,1,f +13666,3023,14,3,f +13666,3024,14,2,f +13666,3036,0,1,f +13666,3068a,7,1,f +13666,3069a,7,5,f +13666,3081bc01,14,1,f +13666,3081bc01,15,1,f +13666,32bc01,15,1,f +13666,33bc01,14,1,f +13666,bb31,2,1,f +13668,3626cpb1104,2,1,f +13668,50231,1,1,f +13668,970c07pb05,1,1,f +13668,973pb1660c01,2,1,f +13671,2421,0,1,f +13671,2432,0,1,f +13671,2450,1,2,f +13671,3001,0,1,f +13671,30167,6,1,f +13671,3020,7,2,f +13671,3626bpb0019,14,1,f +13671,3641,0,2,f +13671,3710,1,1,f +13671,3747a,1,1,f +13671,4488,7,1,f +13671,4600,0,1,f +13671,4624,1,2,f +13671,6091,7,2,f +13671,970c00,6,1,f +13671,973pb0043c01,8,1,f +13673,10928,72,1,f +13673,15462,28,1,f +13673,18651,0,1,f +13673,18944,1,1,f +13673,24116,1,2,f +13673,2654,1,2,f +13673,2780,0,1,t +13673,2780,0,30,f +13673,2815,0,2,f +13673,2850b,71,4,f +13673,2851,14,4,f +13673,2852,71,4,f +13673,2853,14,2,f +13673,2854,19,3,f +13673,32000,0,2,f +13673,32002,19,1,t +13673,32002,19,1,f +13673,32013,15,2,f +13673,32039,0,4,f +13673,32054,71,4,f +13673,32056,0,4,f +13673,32062,4,7,f +13673,32073,71,4,f +13673,32123b,14,6,f +13673,32123b,14,1,t +13673,32140,1,2,f +13673,32140,15,3,f +13673,32184,71,6,f +13673,32198,19,1,f +13673,32270,0,1,f +13673,32449,0,2,f +13673,32523,15,4,f +13673,32524,1,2,f +13673,32525,15,2,f +13673,32580,0,2,f +13673,33299a,71,4,f +13673,3648b,72,1,f +13673,3705,0,2,f +13673,3713,71,1,f +13673,3713,71,1,t +13673,3749,19,2,f +13673,41239,0,2,f +13673,4185,71,2,f +13673,43093,1,5,f +13673,44294,14,1,f +13673,4519,71,6,f +13673,53586,179,4,f +13673,60208,15,1,f +13673,6041,0,1,f +13673,60483,72,3,f +13673,60485,71,1,f +13673,62462,71,1,f +13673,63869,71,1,f +13673,64391,15,1,f +13673,64392,15,1,f +13673,64393,15,1,f +13673,64681,15,1,f +13673,64682,15,1,f +13673,64683,15,1,f +13673,6536,15,8,f +13673,6558,1,8,f +13673,6632,15,2,f +13673,87083,72,1,f +13675,11090,72,2,f +13675,11211,71,1,f +13675,11477,71,1,f +13675,15068,72,2,f +13675,15573,71,3,f +13675,15573,320,1,f +13675,2412b,72,3,f +13675,2540,71,1,f +13675,3021,72,1,f +13675,3022,72,1,f +13675,3023,19,1,f +13675,3023,47,2,f +13675,3024,72,1,f +13675,3623,72,2,f +13675,3710,71,1,f +13675,43722,71,1,f +13675,43723,71,1,f +13675,44301a,0,2,f +13675,54383,71,1,f +13675,54384,71,1,f +13675,60471,0,2,f +13675,6091,0,1,f +13675,61252,71,1,f +13675,6141,33,2,f +13675,61678,71,1,f +13675,92946,71,1,f +13676,2412b,15,3,f +13676,2440pb005,15,1,f +13676,2446,4,1,f +13676,2447,41,1,t +13676,2447,41,1,f +13676,2484c01,4,2,f +13676,2540,0,2,f +13676,2569,4,1,f +13676,3004,4,2,f +13676,3020,4,1,f +13676,3021,2,2,f +13676,3022,0,1,f +13676,3023,7,1,f +13676,3040b,15,2,f +13676,3626bpr0001,14,1,f +13676,3665,4,2,f +13676,3710,4,1,f +13676,3710,15,1,f +13676,3794a,4,2,f +13676,3829c01,4,1,f +13676,3937,15,1,f +13676,3938,15,2,f +13676,4081b,15,2,f +13676,4275b,7,1,f +13676,4276b,15,1,f +13676,4589,0,2,f +13676,4732,0,1,f +13676,4871,7,1,f +13676,6014a,15,4,f +13676,6015,0,4,f +13676,6019,15,2,f +13676,6069,15,1,f +13676,6070,41,1,f +13676,6141,46,1,t +13676,6141,0,1,t +13676,6141,0,4,f +13676,6141,46,4,f +13676,970c00,0,1,f +13676,973p52c01,0,1,f +13678,2039,110,1,f +13678,22670,334,1,f +13678,2417,10,5,f +13678,2417,2,1,f +13678,2419,15,2,f +13678,2431,462,2,f +13678,2546,74,1,f +13678,2546,13,1,f +13678,2546,73,1,f +13678,2921,5,2,f +13678,30016,26,2,f +13678,3003,25,1,f +13678,3004,45,1,f +13678,3004,34,2,f +13678,3005,45,6,f +13678,3005,34,2,f +13678,3005,45,1,t +13678,3009,22,2,f +13678,3010,22,1,f +13678,30109,5,1,f +13678,30153,52,2,f +13678,30153,36,1,f +13678,30153,45,3,f +13678,3020,462,2,f +13678,3022,26,1,f +13678,30224,462,1,f +13678,3024,462,4,f +13678,30338,6,1,f +13678,30339,2,1,f +13678,3036,462,2,f +13678,3062b,15,4,f +13678,3062b,5,8,f +13678,3066,34,2,f +13678,3068bpb0056,15,5,f +13678,33008,110,1,f +13678,33051,10,1,f +13678,33051,4,1,f +13678,33061,34,2,f +13678,3307,25,4,f +13678,3307,5,2,f +13678,3308,5,2,f +13678,33085,14,1,f +13678,33172,25,2,f +13678,33183,10,2,f +13678,33183,10,1,t +13678,33203,6,1,f +13678,33213,462,2,f +13678,33216,34,2,f +13678,33227,22,1,f +13678,33320,34,1,f +13678,3622,45,1,f +13678,3633,15,4,f +13678,3659,25,4,f +13678,3741,10,1,t +13678,3741,10,1,f +13678,3742,15,3,f +13678,3742,15,1,t +13678,3852b,13,1,f +13678,3898pb01,125,1,f +13678,3937,15,1,f +13678,3937,25,1,f +13678,3938,15,1,f +13678,3938,5,1,f +13678,3940b,15,1,f +13678,3958,10,1,f +13678,3958,73,1,f +13678,4032a,2,1,f +13678,4032a,73,1,f +13678,4088,22,1,f +13678,4201,26,1,f +13678,4429,45,1,f +13678,44510pb01,10,1,f +13678,44511,26,2,f +13678,4523,1,1,f +13678,4589,34,3,f +13678,4728,143,1,f +13678,4865a,25,2,f +13678,57503,334,1,f +13678,57504,334,1,f +13678,57505,334,1,f +13678,57506,334,1,f +13678,6112,26,2,f +13678,6140,4,1,f +13678,6141,5,4,f +13678,6141,5,1,t +13678,6171pr02,0,1,f +13678,6178,22,1,f +13678,6179,25,3,f +13678,6182,462,4,f +13678,6185,5,1,f +13678,6192,5,2,f +13678,6204,6,1,f +13678,6215,5,2,f +13678,6231,25,2,f +13678,6231,15,2,f +13678,6255,10,1,f +13678,6256,334,2,f +13678,62808,334,2,f +13678,6636,462,1,f +13678,6942,26,1,f +13678,6942,34,1,f +13678,pillow01,89,1,f +13678,pillow02,462,1,f +13679,2335p41,1,1,f +13679,2343,14,1,f +13679,2420,0,2,f +13679,2489,6,1,f +13679,2542,6,4,f +13679,2555,0,2,f +13679,2570,8,1,f +13679,2586p4c,7,2,f +13679,2625,4,2,f +13679,2626,0,4,f +13679,2654,0,6,f +13679,3005,0,2,f +13679,3009,0,2,f +13679,3020,0,4,f +13679,3023,0,2,f +13679,3023,1,1,f +13679,3040b,0,3,f +13679,3040b,1,2,f +13679,3626bp42,14,1,f +13679,3626bpr0001,14,3,f +13679,3626bpx120,14,1,f +13679,3660,0,4,f +13679,3665,0,1,f +13679,3666,0,2,f +13679,3747a,0,1,f +13679,3794a,1,1,f +13679,3794a,0,4,f +13679,3795,4,1,f +13679,3844,8,2,f +13679,3844,0,2,f +13679,3846p45,7,1,f +13679,3846p4c,7,4,f +13679,3847,8,2,f +13679,3848,6,1,f +13679,3896,8,1,f +13679,3957a,0,4,f +13679,4032a,6,1,f +13679,4070,1,2,f +13679,4085c,1,2,f +13679,4286,1,6,f +13679,4287,0,2,f +13679,4318,0,1,f +13679,4477,0,1,f +13679,4495b,2,1,f +13679,4495b,14,1,f +13679,4497,6,1,f +13679,4498,6,1,f +13679,4499,6,1,f +13679,4524,4,1,f +13679,4590,0,1,f +13679,4733,0,2,f +13679,4735,0,1,f +13679,6019,0,4,f +13679,6066,1,2,f +13679,6141,14,2,f +13679,6141,0,2,f +13679,87685,4,1,f +13679,87686,4,1,f +13679,87687,4,1,f +13679,970x021,0,2,f +13679,970x026,7,3,f +13679,973p40c01,0,1,f +13679,973p41c01,4,1,f +13679,973p41c02,4,1,f +13679,973p43c01,1,2,f +13679,rb00164,0,1,f +13679,sailbb19,15,1,f +13680,3004,71,1,f +13680,3004p0b,14,1,f +13680,3022,72,1,f +13680,3040b,4,2,f +13680,3298,4,1,f +13680,3710,15,4,f +13680,4081b,14,2,f +13680,4081b,14,1,t +13680,6091,71,2,f +13680,6141,57,2,f +13680,6141,57,4,t +13682,3001,15,2,f +13682,3001,1,1,f +13682,3001,4,1,f +13682,3003,1,1,f +13682,3003,15,1,f +13682,3003,14,1,f +13682,3004,0,4,f +13682,3004,14,3,f +13682,3004,4,6,f +13682,3004,1,2,f +13682,3005,14,2,f +13682,3007,15,2,f +13682,3010,4,2,f +13682,3039,47,2,f +13682,3039,4,2,f +13682,3040b,47,2,f +13682,3040b,4,2,f +13682,3137c01,0,2,f +13682,3480,0,1,f +13682,3481,15,1,f +13682,3641,0,4,f +13682,3660,4,2,f +13684,122c02,0,2,f +13684,3021,1,1,f +13684,3022,0,1,f +13684,3062b,7,2,f +13684,3314,0,1,f +13684,3317,1,1,f +13684,3626apr0001,14,1,f +13684,3641,0,2,f +13684,3795,1,1,f +13684,3829c01,7,1,f +13684,3833,4,1,f +13684,4070,1,2,f +13684,4079,1,1,f +13684,4084,0,2,f +13684,4589,0,1,f +13684,6141,46,1,t +13684,6141,46,2,f +13684,784,1,1,f +13684,970c00,4,1,f +13684,973pb0203c01,15,1,f +13685,93088pr0001a,84,1,f +13686,10201,71,4,f +13686,11458,72,2,f +13686,11476,71,1,f +13686,11477,71,8,f +13686,11833,36,1,f +13686,11833,71,1,f +13686,13547,0,2,f +13686,13548,71,4,f +13686,14719,71,6,f +13686,14719,4,4,f +13686,14769pr086,71,2,f +13686,15207,71,4,f +13686,15573,0,24,f +13686,15672,71,12,f +13686,15712,72,28,f +13686,15712,71,2,f +13686,18677,71,2,f +13686,2357,0,4,f +13686,2412b,179,4,f +13686,2412b,71,13,f +13686,2419,1,4,f +13686,2420,72,72,f +13686,2420,14,26,f +13686,2431,71,15,f +13686,2431,0,8,f +13686,2445,71,4,f +13686,2450,71,16,f +13686,2654,71,2,f +13686,2780,0,4,f +13686,2780,0,2,t +13686,2817,0,2,f +13686,2817,71,1,f +13686,30000,72,1,f +13686,3001,0,2,f +13686,3003,0,1,f +13686,3004,2,6,f +13686,3004,71,4,f +13686,3005,0,4,f +13686,3009,71,2,f +13686,3010,4,2,f +13686,3020,0,13,f +13686,3020,71,16,f +13686,3020,1,12,f +13686,3021,0,5,f +13686,3021,72,18,f +13686,3022,0,4,f +13686,3022,2,4,f +13686,3022,71,14,f +13686,3023,4,54,f +13686,3023,0,10,f +13686,3023,71,29,f +13686,3024,71,2,f +13686,3024,71,1,t +13686,3028,0,4,f +13686,3029,0,8,f +13686,3030,1,4,f +13686,3031,71,2,f +13686,3034,71,8,f +13686,3034,0,4,f +13686,3034,19,3,f +13686,30357,72,4,f +13686,30363,71,2,f +13686,30367c,72,1,f +13686,3037,0,2,f +13686,30377,71,8,f +13686,30377,71,2,t +13686,3039,71,2,f +13686,3040b,71,8,f +13686,30553,71,1,f +13686,30565,19,32,f +13686,3068b,71,4,f +13686,3069b,71,25,f +13686,3069b,0,10,f +13686,3069b,40,8,f +13686,3070b,71,2,t +13686,3070b,71,12,f +13686,32001,0,1,f +13686,32009,0,2,f +13686,32018,71,4,f +13686,32028,72,4,f +13686,32062,4,1,f +13686,3228c,71,8,f +13686,32291,71,2,f +13686,32316,0,2,f +13686,32449,72,1,f +13686,32523,0,2,f +13686,32524,0,2,f +13686,3298,71,2,f +13686,3460,71,66,f +13686,3460,0,1,f +13686,3623,0,8,f +13686,3623,71,26,f +13686,3626cpr1556,78,1,f +13686,3660,71,6,f +13686,3665,71,28,f +13686,3666,71,17,f +13686,3673,71,2,f +13686,3673,71,1,t +13686,3703,0,2,f +13686,3705,0,1,f +13686,3706,0,1,f +13686,3710,0,32,f +13686,3710,19,10,f +13686,3710,72,8,f +13686,3747a,71,6,f +13686,3749,19,1,f +13686,3794b,71,34,f +13686,3795,71,12,f +13686,3832,70,24,f +13686,3941,47,1,f +13686,3941,72,1,f +13686,3958,72,2,f +13686,3961pr0001b,71,1,f +13686,3961pr0002,47,1,f +13686,41239,0,10,f +13686,4162,0,24,f +13686,4162,71,36,f +13686,41769,0,44,f +13686,41770,0,44,f +13686,4274,71,1,t +13686,4274,71,2,f +13686,4282,71,4,f +13686,4286,71,12,f +13686,4287,71,12,f +13686,43093,1,1,f +13686,43722,71,1,f +13686,43723,71,1,f +13686,44728,0,8,f +13686,4477,72,4,f +13686,51739,71,8,f +13686,54200,71,2,t +13686,54200,71,24,f +13686,58176,36,2,f +13686,59900,72,1,f +13686,60474,0,1,f +13686,60478,72,4,f +13686,60478,71,28,f +13686,60479,0,8,f +13686,60479,71,20,f +13686,60581,0,2,f +13686,6063,71,5,f +13686,60849,71,1,t +13686,60849,71,2,f +13686,6091,71,8,f +13686,61252,71,1,f +13686,61409,72,14,f +13686,6141,34,6,f +13686,6141,36,5,t +13686,6141,34,1,t +13686,6141,36,14,f +13686,6141,72,7,t +13686,6141,72,44,f +13686,6179,0,20,f +13686,6180,0,40,f +13686,6231,71,4,f +13686,6232,71,4,f +13686,6232,4,4,f +13686,62462,0,4,f +13686,63864,0,8,f +13686,63864,71,2,f +13686,63868,14,8,f +13686,63868,0,6,f +13686,6553,71,2,f +13686,6558,1,24,f +13686,73983,71,8,f +13686,85984,71,34,f +13686,87079,0,4,f +13686,87556pr0006,0,1,f +13686,87580,0,20,f +13686,88646,0,30,f +13686,89523,72,1,f +13686,90498,0,9,f +13686,91988,0,2,f +13686,92280,71,1,f +13686,92438,0,12,f +13686,92582,71,1,f +13686,92593,71,8,f +13686,92738,0,1,f +13686,92738,0,1,t +13686,92946,0,2,f +13686,92950,19,4,f +13686,92950,71,4,f +13686,93274,71,4,f +13686,93606,0,4,f +13686,96874,25,1,t +13686,970c00pr0583,0,1,f +13686,973pr2899c01,0,1,f +13686,98138,36,2,f +13686,98138,36,2,t +13686,98138,71,2,f +13686,98138,71,1,t +13686,98397,71,1,f +13686,99008,19,1,f +13686,99206,0,8,f +13686,99207,71,8,f +13686,99780,72,18,f +13686,99780,0,4,f +13686,99781,71,6,f +13687,12825,0,2,f +13687,2339,70,1,f +13687,2357,70,1,f +13687,2412b,72,1,f +13687,2417,10,1,f +13687,2524,70,1,f +13687,2654,0,1,f +13687,30176,2,1,f +13687,30187e,70,1,f +13687,3023,28,1,f +13687,30259,70,2,f +13687,30304,72,1,f +13687,3031,70,1,f +13687,30369,15,1,f +13687,30377,0,1,t +13687,30377,0,2,f +13687,3039,72,1,f +13687,30408pr0002,15,1,f +13687,3040b,308,1,f +13687,30565,288,4,f +13687,3062b,70,1,f +13687,32530,0,1,f +13687,33291,10,1,f +13687,33291,10,1,t +13687,3623,70,1,f +13687,3626bpr0593,78,1,f +13687,3626bpr0922,0,2,f +13687,3626cpr0854,78,1,f +13687,3678b,28,1,f +13687,3679,71,1,f +13687,3680,0,1,f +13687,3794a,70,2,f +13687,3794a,72,1,f +13687,3849,0,2,f +13687,4032a,72,1,f +13687,4070,70,2,f +13687,41677,72,1,f +13687,43093,1,1,f +13687,4349,0,1,f +13687,4599b,0,2,f +13687,4600,0,1,f +13687,47456,70,1,f +13687,54200,70,1,t +13687,54200,70,1,f +13687,57899,0,1,f +13687,58247,0,1,f +13687,59443,0,1,f +13687,59900,4,1,f +13687,60481,70,2,f +13687,61184,71,1,f +13687,6120,72,2,f +13687,6140,71,1,f +13687,6141,71,2,f +13687,6141,71,1,t +13687,64803pr0001,28,2,f +13687,88072,72,1,f +13687,92738,0,2,f +13687,970c00,378,2,f +13687,970x026,15,2,f +13687,973pr1501c01,15,1,f +13687,973pr1985c01,28,1,f +13687,973pr1986c01,15,1,f +13687,973pr2015c01,378,1,f +13688,10314,26,1,f +13688,11211,19,2,f +13688,11437,70,1,f +13688,11476,71,1,f +13688,11477,70,1,f +13688,11610,19,1,f +13688,11618,26,1,t +13688,11618,26,1,f +13688,11816pr0017,78,1,f +13688,11818pr0011,78,1,f +13688,13965,70,1,f +13688,14769,71,1,f +13688,15470,297,1,f +13688,15470,297,1,t +13688,15573,70,2,f +13688,15875pr0007c01,1,1,f +13688,16925pr0006c01,72,1,f +13688,19195pr0001,484,1,f +13688,20482,47,1,t +13688,20482,47,1,f +13688,2357,19,1,f +13688,2397,26,1,f +13688,2412b,14,4,f +13688,2423,2,1,f +13688,2454a,70,2,f +13688,24872,72,1,f +13688,26201,26,1,f +13688,2654,47,2,f +13688,2877,14,4,f +13688,3003,70,2,f +13688,3005,70,4,f +13688,3005,73,2,f +13688,3005,41,4,f +13688,3006,19,1,f +13688,30137,70,2,f +13688,30153,45,1,f +13688,3020,19,2,f +13688,3020,272,3,f +13688,3022,19,1,f +13688,3023,15,2,f +13688,3023,272,7,f +13688,30248,272,1,f +13688,30261,15,1,f +13688,3031,15,1,f +13688,3032,27,1,f +13688,3036,71,1,f +13688,30374,41,2,f +13688,3038,15,2,f +13688,3039,15,2,f +13688,3040b,15,3,f +13688,3040b,73,2,f +13688,3040bpr0003,71,1,f +13688,3045,15,2,f +13688,3062b,46,2,f +13688,3062b,34,1,f +13688,3065,47,2,f +13688,3069bpr0100,2,1,f +13688,3298,15,1,f +13688,33291,10,3,f +13688,33291,5,1,t +13688,33291,5,3,f +13688,33291,10,1,t +13688,3622,73,2,f +13688,3633,297,1,f +13688,3660,73,3,f +13688,3660,19,1,f +13688,3665,73,2,f +13688,3710,70,2,f +13688,3795,28,3,f +13688,3841,72,1,f +13688,3899,14,1,f +13688,3899,15,1,f +13688,3958,15,1,f +13688,4286,15,4,f +13688,4533,41,1,f +13688,4599b,0,1,f +13688,4599b,0,1,t +13688,4740,0,1,f +13688,48336,297,1,f +13688,50950,272,4,f +13688,60594,15,1,f +13688,60596,19,1,f +13688,60607,297,2,f +13688,60616b,70,1,f +13688,60897,71,2,f +13688,6141,0,1,t +13688,6141,27,3,f +13688,6141,15,1,t +13688,6141,27,1,t +13688,6141,15,3,f +13688,6141,0,2,f +13688,61780,70,1,f +13688,64647,182,1,f +13688,64647,182,1,t +13688,73983,14,1,f +13688,85984,19,2,f +13688,85984,15,2,f +13688,87079,26,2,f +13688,87580,15,1,f +13688,87991,226,1,f +13688,87994,70,1,f +13688,87994,70,1,t +13688,88930,272,1,f +13688,89522,25,1,t +13688,89522,25,3,f +13688,90509,322,2,f +13688,92410,15,1,f +13688,92456pr0066c01,78,1,f +13688,92590,28,2,f +13688,92690,70,1,f +13688,92815pr0003c01,379,1,f +13688,93095,15,2,f +13688,98138,71,3,f +13688,98138,71,1,t +13693,3001a,0,8,f +13693,3001a,1,10,f +13693,3001a,14,10,f +13693,3001a,47,2,f +13693,3001a,4,10,f +13693,3001a,15,10,f +13693,3002a,1,2,f +13693,3002a,4,2,f +13693,3002a,14,2,f +13693,3002a,15,2,f +13693,3003,1,4,f +13693,3003,47,2,f +13693,3003,4,4,f +13693,3003,0,4,f +13693,3003,14,4,f +13693,3003,15,4,f +13693,3004,14,4,f +13693,3004,0,2,f +13693,3004,1,4,f +13693,3004,15,4,f +13693,3004,4,4,f +13693,3007,4,2,f +13693,3008,15,2,f +13693,3008,1,2,f +13693,3009,14,2,f +13693,3033,4,1,f +13693,3035,1,1,f +13693,3081cc01,4,2,f +13693,3137c01,0,2,f +13693,3579,4,1,f +13693,3581,4,4,f +13693,3582,1,4,f +13693,3641,0,4,f +13693,453cc01,4,2,f +13693,700ed2,2,1,f +13693,7930,1,1,f +13694,2458,15,1,f +13694,2479,1,1,f +13694,3001,1,1,f +13694,3003,15,1,f +13694,3004,47,2,f +13694,3004,15,2,f +13694,3039,1,1,f +13694,3039,47,1,f +13694,3298,15,1,f +13694,3475b,14,2,f +13694,3747b,1,1,f +13694,3795,15,1,f +13694,3795,14,2,f +13695,11816pr0006,78,1,f +13695,2339,70,1,f +13695,2357,15,2,f +13695,2357,70,1,f +13695,2423,2,4,f +13695,3004,19,2,f +13695,3005,19,2,f +13695,3020,27,1,f +13695,3021,15,2,f +13695,3031,27,1,f +13695,3036,2,1,f +13695,3038,5,4,f +13695,3039,70,2,f +13695,3040b,70,1,f +13695,33291,5,1,t +13695,33291,5,2,f +13695,3622,5,2,f +13695,3622,19,4,f +13695,3623,15,1,f +13695,3665,19,2,f +13695,3700,70,1,f +13695,3741,2,2,f +13695,3741,2,1,t +13695,3742,14,3,f +13695,3742,15,1,t +13695,3742,14,1,t +13695,3742,15,3,f +13695,4150pr0011a,27,1,f +13695,4287,70,1,f +13695,4490,19,1,f +13695,4523,27,1,f +13695,4589,14,4,f +13695,6141,4,4,f +13695,6141,4,1,t +13695,6256,191,1,f +13695,64951,73,1,f +13695,87087,15,3,f +13695,92257,320,1,f +13695,92456pr0009c01,78,1,f +13695,92818pr0001c01,272,1,f +13695,93088pr0002,15,1,f +13695,93160,15,1,f +13695,94717,5,4,f +13695,94718,5,1,f +13695,94719,5,1,f +13695,94720,5,2,f +13695,94721,5,1,f +13695,94722,5,1,f +13695,94723,5,1,f +13695,94724,5,1,f +13695,94725,5,4,f +13697,2470,6,2,f +13697,2489,6,1,f +13697,2570,8,1,f +13697,30103,0,1,f +13697,3020,14,1,f +13697,3023,4,1,f +13697,3626bp44,14,1,f +13697,3794a,14,1,f +13697,3839b,0,1,f +13697,3844,0,1,f +13697,4032a,6,1,f +13697,4070,7,2,f +13697,4488,0,2,f +13697,6126a,57,2,f +13697,970x026,4,1,f +13697,973p45c01,8,1,f +13700,33016,14,1,f +13700,33021,25,2,f +13700,33021,15,2,f +13700,33025,17,1,f +13700,33031,5,1,f +13700,6933a,5,1,f +13700,6933b,5,1,f +13700,6933c,5,1,f +13700,sc001,12,1,f +13700,sc003a,14,1,f +13700,sc003b,14,1,f +13700,sc003c,14,1,f +13700,sc003d,14,1,f +13700,sc004,36,2,f +13700,sc004,34,2,f +13700,x11,77,2,f +13700,x15,17,1,f +13700,x16,17,1,f +13700,x17,4,1,f +13700,x17,14,1,f +13701,11215,0,1,f +13701,11477,0,8,f +13701,15712,72,2,f +13701,22385,0,2,f +13701,2420,0,2,f +13701,24299,0,2,f +13701,24307,0,2,f +13701,3020,0,2,f +13701,3023,0,4,f +13701,30414,72,1,f +13701,3070b,0,3,f +13701,3070b,0,1,t +13701,3176,0,1,f +13701,32028,4,2,f +13701,3623,4,2,f +13701,3710,0,2,f +13701,3937,0,2,f +13701,4070,0,2,f +13701,4081b,4,2,f +13701,44728,0,2,f +13701,4595,71,1,f +13701,49668,0,7,f +13701,54200,46,2,f +13701,54200,46,1,t +13701,54383,0,1,f +13701,54384,0,1,f +13701,59900,72,4,f +13701,6134,71,2,f +13701,61409,72,2,f +13701,6141,46,1,t +13701,6141,46,7,f +13701,64567,71,2,f +13701,64567,71,1,t +13701,88072,15,1,f +13701,98138,71,1,t +13701,98138,71,6,f +13702,3003,1,1,f +13702,3004,15,2,f +13702,3005,15,1,f +13702,3010,15,1,f +13702,3040b,15,7,f +13702,3062b,19,7,f +13702,3622,15,2,f +13702,3660,1,1,f +13702,3666,19,1,f +13702,3832,4,1,f +13702,42023,1,2,f +13702,4589,0,1,f +13703,2206,14,1,f +13703,2301,4,1,f +13703,2302,25,1,f +13703,3011,10,1,f +13703,3011,1,1,f +13703,3011,4,1,f +13703,3011,27,1,f +13703,3011,73,1,f +13703,3437,73,1,f +13703,3437,10,3,f +13703,3437,25,2,f +13703,3437,4,3,f +13703,3437,27,3,f +13703,3437,1,3,f +13703,3437pe1,4,1,f +13703,3437pe1,14,1,f +13703,4066,25,2,f +13703,40666,14,1,f +13703,58057pr03,15,1,f +13703,61649,4,1,f +13703,6394,14,1,f +13703,6510,73,1,f +13703,6510,4,1,f +13704,2444,0,1,f +13704,2780,0,2,f +13704,2780,0,1,t +13704,43093,1,2,f +13704,47430,191,2,f +13704,47431,191,2,f +13704,47432,0,2,f +13704,47452,0,2,f +13704,47454,191,2,f +13704,47455,0,10,f +13704,47456,0,2,f +13704,47457,0,2,f +13704,50623,135,1,f +13704,50659c02pb01,191,1,f +13704,54174,0,1,f +13704,54175,0,2,f +13704,54176,0,2,f +13704,54184pb01,135,1,f +13704,bb153pr0014,191,1,f +13706,30228,72,1,f +13706,3626bpb0172,14,1,f +13706,3833,4,1,f +13706,970c00,25,1,f +13706,973pr1182c01,25,1,f +13709,11211,71,2,f +13709,16542,14,1,f +13709,16542,14,1,t +13709,2412b,71,11,f +13709,2412b,0,2,f +13709,2420,15,2,f +13709,2432,71,4,f +13709,2456,70,2,f +13709,2456,2,1,f +13709,2540,71,1,f +13709,2780,0,1,t +13709,2780,0,2,f +13709,2877,72,2,f +13709,3004,15,1,f +13709,3020,4,1,f +13709,3022,4,1,f +13709,3023,2,6,f +13709,3023,4,1,f +13709,30237b,71,1,f +13709,3024,182,2,f +13709,3030,72,1,f +13709,3031,1,1,f +13709,3034,4,4,f +13709,3040bpr0003,71,1,f +13709,30414,71,1,f +13709,3062b,14,1,f +13709,30663,71,3,f +13709,3068b,0,1,f +13709,3069b,15,6,f +13709,3245b,71,1,f +13709,3622,15,1,f +13709,3623,72,1,f +13709,3626bpr0891,14,1,f +13709,3660,2,2,f +13709,3666,4,1,f +13709,3666,15,1,f +13709,3666,71,4,f +13709,3710,4,5,f +13709,3710,0,2,f +13709,3795,71,1,f +13709,3821,15,1,f +13709,3822,15,1,f +13709,3829c01,14,1,f +13709,3832,71,2,f +13709,3899,4,1,f +13709,3958,0,1,f +13709,3958,2,1,f +13709,4085c,71,2,f +13709,4162,15,2,f +13709,4176,40,1,f +13709,4208,0,1,f +13709,4209,71,1,f +13709,4282,4,1,f +13709,44301a,0,2,f +13709,44302a,72,2,f +13709,4488,0,6,f +13709,4533,72,1,f +13709,45410,2,2,f +13709,45411,15,2,f +13709,4599b,14,2,f +13709,4599b,14,1,t +13709,47457,71,3,f +13709,50745,72,6,f +13709,52031,15,1,f +13709,54200,36,1,t +13709,54200,182,2,f +13709,54200,47,4,f +13709,54200,15,1,t +13709,54200,47,2,t +13709,54200,15,2,f +13709,54200,71,1,t +13709,54200,182,1,t +13709,54200,71,2,f +13709,54200,36,2,f +13709,58176,182,2,f +13709,6014b,71,6,f +13709,6015,0,6,f +13709,6020,71,1,f +13709,60581,15,1,f +13709,61184,71,2,f +13709,63868,4,1,f +13709,6636,15,1,f +13709,73590c03a,0,1,f +13709,85984,72,2,f +13709,86035,1,1,f +13709,87079,15,2,f +13709,87079,0,2,f +13709,87087,15,3,f +13709,87544,15,2,f +13709,87580,15,4,f +13709,87609,15,1,f +13709,87609,2,1,f +13709,87609,0,1,f +13709,87617,0,2,f +13709,92280,71,2,f +13709,92410,71,1,f +13709,92593,71,6,f +13709,970c00,1,1,f +13709,973pr1244c01,73,1,f +13710,10202,71,2,f +13710,11458,72,2,f +13710,12607ass01pr02,2,1,f +13710,12607ass02pr02,10,1,f +13710,12609pr0001,28,1,f +13710,12610pr0001,28,1,f +13710,12612pr0001,484,1,f +13710,12613pr0001,484,1,f +13710,12614pr0001,484,1,f +13710,12825,15,2,f +13710,2412b,72,4,f +13710,2412b,71,4,f +13710,2412b,179,2,f +13710,2431,71,5,f +13710,2432,72,2,f +13710,2436,71,6,f +13710,2465,14,2,f +13710,2496,0,2,f +13710,2654,1,1,f +13710,2723,0,2,f +13710,2780,0,2,t +13710,2780,0,6,f +13710,2878,0,2,f +13710,2921,15,2,f +13710,2926,0,2,f +13710,3003,71,1,f +13710,3004,0,2,f +13710,3004,14,6,f +13710,3004,326,6,f +13710,3005,14,16,f +13710,3010,14,1,f +13710,30136,72,4,f +13710,30162,71,1,f +13710,30173b,297,1,f +13710,30173b,179,2,t +13710,30173b,297,1,t +13710,30173b,179,2,f +13710,3020,2,1,f +13710,3020,72,2,f +13710,3020,0,1,f +13710,3020,4,4,f +13710,3020,326,2,f +13710,3021,71,2,f +13710,3021,2,2,f +13710,3021,72,1,f +13710,3022,71,5,f +13710,3022,15,2,f +13710,3022,14,4,f +13710,3023,47,2,f +13710,3023,70,18,f +13710,3023,36,2,f +13710,3023,14,21,f +13710,3024,15,2,f +13710,3024,15,1,t +13710,3024,182,2,f +13710,3024,19,8,f +13710,3024,19,1,t +13710,3029,71,1,f +13710,3030,72,2,f +13710,3032,19,1,f +13710,3034,70,2,f +13710,3035,4,1,f +13710,3036,2,1,f +13710,30361c,4,1,f +13710,30374,15,2,f +13710,30377,15,2,f +13710,3040b,14,10,f +13710,3065,46,2,f +13710,3068b,14,4,f +13710,3068b,15,1,f +13710,3068bpr0137,15,1,f +13710,3069b,72,2,f +13710,3069b,14,2,f +13710,3069b,15,5,f +13710,3069b,2,4,f +13710,3069bpr0030,15,1,f +13710,3176,71,2,f +13710,32019,0,2,f +13710,32062,4,1,f +13710,32064a,4,2,f +13710,32073,71,1,f +13710,32074c01,72,1,f +13710,32184,71,8,f +13710,32291,0,4,f +13710,32530,4,2,f +13710,3460,19,4,f +13710,3622,14,4,f +13710,3622,15,6,f +13710,3623,19,6,f +13710,3626cpr1150,0,1,f +13710,3626cpr1181,71,1,f +13710,3665,4,2,f +13710,3666,2,1,f +13710,3666,14,13,f +13710,3666,19,1,f +13710,3673,71,1,t +13710,3673,71,2,f +13710,3678b,72,2,f +13710,3706,0,1,f +13710,3710,72,8,f +13710,3710,4,1,f +13710,3710,14,1,f +13710,3794b,72,2,f +13710,3795,14,3,f +13710,3829c01,71,1,f +13710,3832,72,1,f +13710,3832,0,2,f +13710,3894,14,4,f +13710,3937,14,8,f +13710,3938,71,8,f +13710,3941,4,4,f +13710,3941,72,18,f +13710,3941,42,2,f +13710,3958,72,3,f +13710,4032a,71,7,f +13710,4070,14,8,f +13710,4150,4,1,f +13710,4150,71,2,f +13710,4150,72,2,f +13710,4150,326,2,f +13710,4150,15,4,f +13710,4162,72,2,f +13710,4162,0,2,f +13710,4175,28,8,f +13710,4176,40,1,f +13710,42003,14,1,f +13710,42446,71,1,f +13710,42446,71,1,t +13710,42511,25,1,f +13710,4274,1,1,t +13710,4274,1,2,f +13710,4274,71,1,f +13710,4274,71,1,t +13710,43722,72,2,f +13710,43723,72,1,f +13710,4460b,14,4,f +13710,44728,0,1,f +13710,44728,72,1,f +13710,4477,72,4,f +13710,4488,0,2,f +13710,4519,71,1,f +13710,45677,326,8,f +13710,47905,72,2,f +13710,4865a,14,8,f +13710,4865a,71,4,f +13710,50254,0,2,f +13710,51011,0,4,f +13710,52501,4,2,f +13710,53451,179,1,t +13710,53451,179,1,f +13710,55013,72,8,f +13710,55981,71,2,f +13710,56891,0,2,f +13710,57028c01,71,1,f +13710,57051,383,2,f +13710,57878,0,4,f +13710,60032,14,8,f +13710,60470b,71,3,f +13710,60474,326,2,f +13710,60478,72,4,f +13710,60481,326,4,f +13710,60601,47,8,f +13710,60657,15,1,f +13710,60658,15,1,f +13710,60897,72,6,f +13710,6141,47,10,f +13710,6141,36,1,t +13710,6141,36,2,f +13710,6141,71,3,t +13710,6141,47,3,t +13710,6141,71,19,f +13710,61485,0,1,f +13710,6180,5,2,f +13710,6232,72,4,f +13710,62462,4,1,f +13710,79104stk01,9999,1,t +13710,85984,14,4,f +13710,85984,72,1,f +13710,86652,71,2,f +13710,87079,15,3,f +13710,87079,14,4,f +13710,87081,4,1,f +13710,87083,72,2,f +13710,87087,72,8,f +13710,87087,484,4,f +13710,88930,2,2,f +13710,91988,71,1,f +13710,92088,0,1,f +13710,92338,72,1,f +13710,92593,0,2,f +13710,92593,326,10,f +13710,92593,15,2,f +13710,92690,70,2,f +13710,92926,4,1,f +13710,92946,72,4,f +13710,93594,179,4,f +13710,95199,72,1,f +13710,96874,25,1,t +13710,970c00pr0473,2,2,f +13710,970c00pr0481,320,1,f +13710,970c00pr0482,73,1,f +13710,970c00pr0507,320,1,f +13710,973pr2262c01,10,1,f +13710,973pr2267c01,2,1,f +13710,973pr2304c01,73,1,f +13710,973pr2305c01,0,1,f +13710,99780,72,1,f +13710,99780,0,1,f +13710,99781,71,4,f +13710,99781,15,2,f +13711,2412b,36,2,f +13711,2412b,182,2,f +13711,2780,0,77,f +13711,2819,15,1,f +13711,2825,1,4,f +13711,2825,0,2,f +13711,2850a,72,6,f +13711,2851,14,6,f +13711,2852,71,6,f +13711,2853,71,2,f +13711,2854,72,2,f +13711,2905,0,4,f +13711,30155,15,1,f +13711,3021,1,2,f +13711,30395,72,2,f +13711,3069b,46,4,f +13711,32000,15,1,f +13711,32002,72,7,f +13711,32005a,72,2,f +13711,32009,1,4,f +13711,32012,72,2,f +13711,32013,72,6,f +13711,32017,72,1,f +13711,32034,72,2,f +13711,32034,0,12,f +13711,32034,1,2,f +13711,32039,1,6,f +13711,32039,0,2,f +13711,32039,14,2,f +13711,32054,14,2,f +13711,32054,0,4,f +13711,32054,1,10,f +13711,32056,1,4,f +13711,32062,0,41,f +13711,32064a,1,8,f +13711,32072,72,2,f +13711,32073,71,15,f +13711,32123b,14,4,f +13711,32123b,15,16,f +13711,32140,0,8,f +13711,32184,15,10,f +13711,32184,72,1,f +13711,32192,0,2,f +13711,32195b,15,2,f +13711,32250,0,2,f +13711,32250,72,2,f +13711,32250,1,4,f +13711,32251,72,2,f +13711,32251,0,2,f +13711,32269,71,1,f +13711,32270,71,6,f +13711,32271,36,4,f +13711,32278,1,1,f +13711,32278,72,2,f +13711,32291,15,1,f +13711,32293,0,1,f +13711,32316,72,1,f +13711,32316,1,2,f +13711,32348,72,2,f +13711,32449,0,6,f +13711,32449,1,4,f +13711,32523,1,2,f +13711,32523,72,1,f +13711,32523,0,3,f +13711,32524,0,2,f +13711,32525,1,8,f +13711,32525,0,6,f +13711,32526,0,6,f +13711,33299a,19,6,f +13711,3623,71,1,f +13711,3647,71,1,f +13711,3702,1,2,f +13711,3705,0,23,f +13711,3706,0,8,f +13711,3707,0,2,f +13711,3713,14,2,t +13711,3713,15,16,f +13711,3713,14,3,f +13711,3713,0,6,f +13711,3713,0,1,t +13711,3737,0,1,f +13711,3749,19,5,f +13711,4019,71,2,f +13711,40490,1,1,f +13711,40490,0,5,f +13711,41239,1,5,f +13711,41239,0,3,f +13711,41677,15,24,f +13711,41677,0,4,f +13711,41678,19,2,f +13711,4185,0,4,f +13711,41893,0,4,f +13711,41896,15,4,f +13711,42003,0,2,f +13711,42003,14,1,f +13711,4274,71,6,f +13711,4288,0,1,f +13711,43093,1,36,f +13711,43857,0,2,f +13711,44294,71,12,f +13711,44809,0,2,f +13711,44809,72,2,f +13711,44809,15,2,f +13711,44809,14,2,f +13711,4519,71,35,f +13711,47474,1,2,f +13711,48496,0,1,f +13711,56823c100,0,1,f +13711,6041,4,1,f +13711,6536,72,18,f +13711,6536,0,12,f +13711,6536,1,2,f +13711,6536,15,1,f +13711,6538b,72,4,f +13711,6538b,1,10,f +13711,6538b,19,10,f +13711,6538b,0,2,f +13711,6541,15,1,f +13711,6542a,72,1,f +13711,6553,0,9,f +13711,6558,0,24,f +13711,6571,0,2,f +13711,6572,15,4,f +13711,6573,72,1,f +13711,6574,71,1,f +13711,6575,72,2,f +13711,6587,72,16,f +13711,6589,71,5,f +13711,6628,0,4,f +13711,6629,1,2,f +13711,6629,15,4,f +13711,6632,14,1,f +13711,6632,0,4,f +13711,6632,72,13,f +13711,6632,1,8,f +13711,75535,1,2,f +13711,76537,14,2,f +13711,9244,71,1,f +13712,2419,4,2,f +13712,2456,4,1,f +13712,2458,1,2,f +13712,2625,4,2,f +13712,3004,14,2,f +13712,3005pe1,14,2,f +13712,3020,15,1,f +13712,3020,4,4,f +13712,3020,2,1,f +13712,3032,4,1,f +13712,3039,4,2,f +13712,3039,14,1,f +13712,3298,4,2,f +13712,3298p17,14,2,f +13712,3622,4,2,f +13712,3623,1,2,f +13712,3626bp07,14,1,f +13712,3660,4,2,f +13712,3666,2,2,f +13712,3710,1,2,f +13712,3741,2,1,f +13712,3742,15,3,f +13712,3742,15,1,t +13712,3795,4,4,f +13712,3829c01,14,1,f +13712,3957a,15,1,f +13712,4079,1,1,f +13712,4286,14,2,f +13712,4495b,14,1,f +13712,4865a,41,1,f +13712,6041,14,2,f +13712,6093,0,1,f +13712,6182,14,2,f +13712,970c00,0,1,f +13712,973pb0017c01,15,1,f +13713,32039,0,2,f +13713,32062,4,3,f +13713,32174,0,6,f +13713,43093,1,2,f +13713,43557,15,2,f +13713,4519,71,3,f +13713,45749,0,2,f +13713,47296,15,4,f +13713,47330,0,2,f +13713,48729a,0,2,f +13713,50923,72,2,f +13713,57552pat0001,15,1,f +13713,57554,135,2,f +13713,57555,46,2,f +13713,57556,135,1,f +13713,57561,15,2,f +13713,57563,15,2,f +13713,57567pat0001,15,3,f +13713,58176,33,2,f +13713,6553,0,2,f +13714,2456,8,2,f +13714,3001,15,2,f +13714,3001,8,4,f +13714,3001,14,2,f +13714,3001,7,2,f +13714,3001,4,2,f +13714,3001,0,2,f +13714,3001,2,2,f +13714,3002,4,2,f +13714,3002,0,2,f +13714,3002,14,5,f +13714,3002,2,2,f +13714,3002,15,2,f +13714,3002,7,2,f +13714,3002,8,2,f +13714,3003,2,2,f +13714,3003,7,4,f +13714,3003,4,4,f +13714,3003,0,4,f +13714,3003,8,4,f +13714,3003,14,8,f +13714,3003,15,4,f +13714,3004,15,4,f +13714,3004,7,4,f +13714,3004,0,4,f +13714,3004,14,6,f +13714,3004,8,4,f +13714,3004,2,2,f +13714,3004,4,4,f +13714,3005pe1,8,2,f +13714,3005pe1,4,2,f +13714,30076,1,1,f +13714,3008,4,2,f +13714,3008,14,2,f +13714,3008,7,2,f +13714,3009,7,2,f +13714,3009,15,2,f +13714,3009,14,2,f +13714,3009,4,2,f +13714,3010,14,4,f +13714,3010,4,2,f +13714,3010,7,4,f +13714,3010,8,2,f +13714,3010,15,2,f +13714,3010,0,2,f +13714,30143px1,14,1,f +13714,3020,7,2,f +13714,3020,14,2,f +13714,3022,14,2,f +13714,3022,7,2,f +13714,3022,0,2,f +13714,30285,15,4,f +13714,3036,1,1,f +13714,3039,14,2,f +13714,3039,7,2,f +13714,3039,8,4,f +13714,3039,0,2,f +13714,30391,0,4,f +13714,3298,8,2,f +13714,3298px11,14,1,f +13714,33303,15,2,f +13714,3660,7,2,f +13714,3660,8,2,f +13714,3660,14,2,f +13714,3666,7,2,f +13714,3666,14,2,f +13714,3795,14,2,f +13714,3795,7,2,f +13714,3823,41,1,f +13714,3829c01,15,1,f +13714,3832,7,2,f +13714,3865,2,1,f +13714,3957a,383,1,f +13714,4132,1,1,f +13714,4133,15,1,f +13714,4286,8,2,f +13714,4727,2,2,f +13714,4728,4,1,f +13714,4728,1,1,f +13714,6064,2,1,f +13714,6140,0,2,f +13714,6215,8,4,f +13714,6215,14,2,f +13714,6215,7,2,f +13714,6216,14,1,f +13714,6234,15,1,f +13714,6235,1,1,f +13714,6249,8,2,f +13714,82248,7,1,f +13714,82249,15,1,f +13714,cre001,9999,1,f +13714,cre003,9999,1,f +13716,2420,4,2,f +13716,3004,15,2,f +13716,3005pe1,15,1,t +13716,3005pe1,15,2,f +13716,3020,15,1,f +13716,3022,15,1,f +13716,3039,15,2,f +13716,3298,15,1,f +13716,3747b,15,2,f +13716,3794a,4,1,t +13716,3794a,4,1,f +13717,2417,10,1,f +13717,2423,2,1,f +13717,2540,462,1,f +13717,2546,74,1,f +13717,2550c01,6,1,f +13717,3005,45,4,f +13717,3009,22,1,f +13717,30153,52,1,f +13717,30614,45,1,f +13717,3062b,34,8,f +13717,3062b,5,8,f +13717,3307,5,2,f +13717,3307,25,2,f +13717,33085,14,1,f +13717,3830,22,1,f +13717,3831,22,1,f +13717,3853,5,1,f +13717,3856,2,2,f +13717,3958,462,2,f +13717,4523,1,1,f +13717,4589,34,1,f +13717,6020,2,1,f +13717,6176,5,1,f +13717,belvfem6,9999,1,f +13717,belvskirt01,77,1,f +13717,hoop01,14,1,f +13720,12825,71,2,f +13720,2341,72,2,f +13720,2412b,0,3,f +13720,2412b,15,6,f +13720,2412b,72,1,t +13720,2412b,72,2,f +13720,2417,10,2,f +13720,2420,0,4,f +13720,2431,15,3,f +13720,2431,320,3,f +13720,2431,71,2,f +13720,2432,14,1,f +13720,2436,71,1,f +13720,2436,0,2,f +13720,2877,72,6,f +13720,3001,0,1,f +13720,3002,72,2,f +13720,3004,71,3,f +13720,3004,1,6,f +13720,3004,25,2,f +13720,3005,1,4,f +13720,3005,71,4,f +13720,3009,1,5,f +13720,3010,4,3,f +13720,3010,1,1,f +13720,3010,72,1,f +13720,3010,71,2,f +13720,30153,36,1,f +13720,3020,15,1,f +13720,3020,320,1,f +13720,3021,15,2,f +13720,3022,19,3,f +13720,3022,25,1,f +13720,3023,15,6,f +13720,3023,33,2,f +13720,3023,0,4,f +13720,3024,182,12,f +13720,3024,33,6,f +13720,3024,47,2,f +13720,3030,2,1,f +13720,30367b,14,1,f +13720,3037,15,1,f +13720,30374,15,2,f +13720,30374,70,1,f +13720,30377,15,1,t +13720,30377,15,2,f +13720,3040b,1,2,f +13720,30414,14,1,f +13720,30414,0,1,f +13720,3068b,71,1,f +13720,3069b,82,2,f +13720,3069b,19,4,f +13720,3069b,33,2,f +13720,3069b,320,4,f +13720,3070b,36,2,f +13720,3070b,36,1,t +13720,3185,15,1,f +13720,3626bpr0411,14,1,f +13720,3626bpr0725,14,1,f +13720,3665,72,6,f +13720,3666,1,1,f +13720,3666,72,2,f +13720,3666,15,8,f +13720,3684,72,4,f +13720,3710,1,5,f +13720,3710,4,1,f +13720,3710,15,4,f +13720,3710,320,1,f +13720,3710,2,1,f +13720,3710,71,4,f +13720,3794b,71,2,f +13720,3795,72,1,f +13720,3795,1,1,f +13720,3795,71,1,f +13720,3821,1,1,f +13720,3822,1,1,f +13720,3829c01,14,2,f +13720,3941,14,1,f +13720,3941,70,1,f +13720,3958,1,1,f +13720,4032a,2,1,f +13720,4079,14,1,f +13720,41334,0,1,f +13720,4162,15,1,f +13720,4282,71,1,f +13720,43337,0,2,f +13720,4488,0,4,f +13720,47998,15,2,f +13720,48336,71,4,f +13720,48336,15,4,f +13720,50943,72,1,f +13720,52031,15,1,f +13720,52036,72,1,f +13720,52037,72,1,f +13720,52038,72,2,f +13720,52501,0,2,f +13720,54200,47,1,t +13720,54200,320,4,f +13720,54200,33,1,t +13720,54200,47,2,f +13720,54200,320,1,t +13720,54200,33,4,f +13720,56890,0,4,f +13720,57783,40,1,f +13720,6014b,71,8,f +13720,6019,0,2,f +13720,60581,15,2,f +13720,60594,15,1,f +13720,60601,41,4,f +13720,6091,320,2,f +13720,61345,1,2,f +13720,61409,0,2,f +13720,6141,36,4,f +13720,6141,46,4,f +13720,6141,46,1,t +13720,6141,36,2,t +13720,61482,71,1,f +13720,61482,71,1,t +13720,6157,71,2,f +13720,61678,0,4,f +13720,62113,72,1,f +13720,6636,70,2,f +13720,85984,72,2,f +13720,87079,72,2,f +13720,87087,72,4,f +13720,87697,0,4,f +13720,92099,72,1,f +13720,92583,41,1,f +13720,92585,4,1,f +13720,92586pr0001,84,2,f +13720,92593,72,1,f +13720,92950,71,2,f +13720,970c00,272,1,f +13720,970c00,72,1,f +13720,973pr1694c01,71,1,f +13720,973pr1943c01,28,1,f +13720,98279,19,1,f +13720,98282,320,4,f +13720,98282,72,4,f +13720,98284,70,1,f +13721,11211,4,1,f +13721,11610,19,1,f +13721,11816pr0003,78,1,f +13721,13965,70,1,f +13721,13971,71,4,f +13721,14769,71,1,f +13721,15279,10,2,f +13721,15397,484,1,f +13721,22667,4,1,f +13721,22667,4,1,t +13721,2417,2,1,f +13721,2417,288,2,f +13721,2454a,70,1,f +13721,2877,72,3,f +13721,3002,15,5,f +13721,3004,71,1,f +13721,3004,15,11,f +13721,3005,182,1,f +13721,3005,15,2,f +13721,3009,322,2,f +13721,3010,15,1,f +13721,30137,84,3,f +13721,3020,4,1,f +13721,3020,27,1,f +13721,3020,15,2,f +13721,3020,30,5,f +13721,3021,19,2,f +13721,3022,27,1,f +13721,3023,19,2,f +13721,30236,71,1,f +13721,3028,10,1,f +13721,3034,72,1,f +13721,3039,15,2,f +13721,3039pr62,71,1,f +13721,3040b,26,6,f +13721,3040b,29,6,f +13721,3062b,15,1,t +13721,3062b,71,1,f +13721,3062b,36,1,f +13721,3062b,46,1,f +13721,3062b,15,3,f +13721,3068b,29,1,f +13721,3068bpr0224,15,1,f +13721,3069b,4,2,f +13721,3069bpr0100,2,1,f +13721,3070b,72,1,t +13721,3070b,72,2,f +13721,3070bpr0007,71,1,f +13721,3070bpr0007,71,1,t +13721,33051,4,5,f +13721,33172,25,1,f +13721,33183,10,1,t +13721,33183,10,2,f +13721,33291,10,2,t +13721,33291,10,7,f +13721,33291,5,11,f +13721,33291,5,2,t +13721,3623,2,2,f +13721,3633,15,3,f +13721,3710,27,1,f +13721,3731,71,1,f +13721,3741,2,2,t +13721,3741,2,2,f +13721,3742,14,4,f +13721,3794b,70,6,f +13721,3794b,14,1,f +13721,3794b,2,2,f +13721,3821,15,1,f +13721,3829c01,15,1,f +13721,3832,4,1,f +13721,3958,27,2,f +13721,4006,0,1,f +13721,4032a,19,5,f +13721,4460b,70,3,f +13721,4523,5,1,f +13721,47720,0,3,f +13721,4865b,14,2,f +13721,50950,322,2,f +13721,55981,71,2,f +13721,59900,71,1,f +13721,60478,4,2,f +13721,6108,15,1,f +13721,61252,15,2,f +13721,61254,0,4,f +13721,6141,46,3,f +13721,6141,15,4,f +13721,6141,36,7,f +13721,6141,36,2,t +13721,6141,15,1,t +13721,6141,4,1,t +13721,6141,4,3,f +13721,6141,46,2,t +13721,61780,70,1,f +13721,6182,15,1,f +13721,6191,322,2,f +13721,6231,14,4,f +13721,63082,71,1,f +13721,63864,15,1,f +13721,76768,70,2,f +13721,85984,30,1,f +13721,87580,4,2,f +13721,87580,322,1,f +13721,88072,19,3,f +13721,91501,322,4,f +13721,92256,70,1,f +13721,92402,0,2,f +13721,92456pr0041c01,78,1,f +13721,92818pr0001c01,272,1,f +13721,93088pr0002,15,1,f +13721,93095,29,1,f +13721,93160,15,1,f +13721,93160,15,1,t +13721,95345,70,1,f +13721,98138,297,1,t +13721,98138,71,1,t +13721,98138,297,5,f +13721,98138,71,2,f +13721,98138pr0017,29,6,f +13721,98138pr0017,29,1,t +13723,2458,1,1,f +13723,2723,0,1,f +13723,2780,0,2,f +13723,2780,0,1,t +13723,3001,72,1,f +13723,3020,15,1,f +13723,3021,15,1,f +13723,3021,0,1,f +13723,3022,15,1,f +13723,3023,46,1,f +13723,3023,0,4,f +13723,3031,0,1,f +13723,3034,0,1,f +13723,30383,72,1,t +13723,30383,72,2,f +13723,30391,0,2,f +13723,30553,72,2,f +13723,32039,1,1,t +13723,32039,1,1,f +13723,32062,0,2,f +13723,32073,71,6,f +13723,32123b,71,1,t +13723,32123b,71,5,f +13723,32140,0,4,f +13723,32184,0,2,f +13723,32449,72,2,f +13723,32525,0,1,f +13723,3700,1,2,f +13723,3707,0,1,f +13723,3713,71,3,f +13723,3713,71,1,t +13723,3747b,15,1,f +13723,3749,19,1,f +13723,3795,1,2,f +13723,4070,15,2,f +13723,4081b,15,2,f +13723,41669,143,2,f +13723,43719,0,1,f +13723,43722,0,2,f +13723,43723,0,2,f +13723,44728,1,1,f +13723,4519,71,1,f +13723,47456,15,1,f +13723,47753,0,1,f +13723,50950,15,2,f +13723,54200,15,2,f +13723,54200,33,1,t +13723,54200,33,2,f +13723,54200,15,1,t +13723,55978,0,1,f +13723,55982,71,2,f +13723,56145,71,1,f +13723,6141,46,1,t +13723,6141,46,2,f +13723,62462,15,1,f +13723,64391,15,1,f +13723,64683,15,1,f +13723,6541,1,1,f +13723,6558,1,1,f +13723,6632,1,4,f +13723,87941,72,1,f +13723,87943,27,1,f +13723,87944,72,1,f +13723,88496,72,1,f +13724,11156,297,1,f +13724,11439pat0002,47,1,f +13724,11601,41,2,f +13724,14769,297,1,f +13724,14769pr1023,297,1,f +13724,16965,0,1,f +13724,18585,0,1,f +13724,18590,0,1,f +13724,18591,47,1,f +13724,18592,179,1,f +13724,2654,15,1,f +13724,3001,0,1,f +13724,30173b,297,2,f +13724,3021,72,4,f +13724,30602,15,2,f +13724,3626cpr1680,15,1,f +13724,43712,15,1,f +13724,43713,15,1,f +13724,6141,297,2,f +13724,87087,0,2,f +13724,92690,297,1,f +13724,93058,297,2,f +13724,93555,179,2,f +13724,970c00pr0863,0,1,f +13724,973pr3019c01,0,1,f +13724,98133,15,1,f +13724,98141,297,1,f +13724,99780,0,3,f +13724,99781,0,3,f +13725,2736,71,2,f +13725,2780,0,26,f +13725,2780,0,1,t +13725,2850a,71,2,f +13725,2851,14,2,f +13725,2852,71,2,f +13725,2853,71,2,f +13725,2905,0,2,f +13725,32000,0,1,f +13725,32002,72,1,t +13725,32002,72,2,f +13725,32005a,72,2,f +13725,32009,0,2,f +13725,32013,71,4,f +13725,32014,0,2,f +13725,32016,71,2,f +13725,32034,0,3,f +13725,32054,0,6,f +13725,32062,4,20,f +13725,32062,0,4,f +13725,32073,71,9,f +13725,32123b,71,10,f +13725,32123b,71,1,t +13725,32138,0,1,f +13725,32184,71,13,f +13725,32192,0,6,f +13725,32269,19,1,f +13725,32270,0,4,f +13725,32271,72,2,f +13725,32316,0,2,f +13725,32348,15,4,f +13725,32449,15,2,f +13725,32525,0,1,f +13725,32527,15,2,f +13725,32528,15,2,f +13725,32556,19,1,f +13725,3705,0,9,f +13725,3706,0,1,f +13725,3713,71,1,t +13725,3713,71,6,f +13725,3749,19,1,f +13725,3795,0,1,f +13725,41669,15,2,f +13725,41669,143,2,f +13725,41669,36,2,f +13725,41677,0,10,f +13725,41677,15,10,f +13725,41678,0,2,f +13725,41896,71,4,f +13725,42003,0,4,f +13725,4274,71,2,f +13725,4274,71,1,t +13725,43093,1,12,f +13725,43722,15,2,f +13725,43723,15,2,f +13725,44294,71,3,f +13725,4519,71,7,f +13725,59426,72,2,f +13725,59443,71,7,f +13725,60483,0,11,f +13725,60485,71,1,f +13725,61070,15,1,f +13725,61071,15,1,f +13725,61073,15,2,f +13725,6141,71,1,t +13725,6141,71,2,f +13725,61480,0,4,f +13725,61678,15,1,f +13725,62462,0,2,f +13725,6536,72,2,f +13725,6553,0,6,f +13725,6558,1,2,f +13725,6571,0,2,f +13725,6572,71,4,f +13725,6587,72,11,f +13725,6629,0,4,f +13725,6632,0,11,f +13725,76138,71,3,f +13726,45463,42,5,f +13726,45463,5,3,f +13726,45463,11,2,f +13726,45463,52,2,f +13726,45463,41,4,f +13726,45463,45,2,f +13726,45464,52,3,f +13726,45464,41,2,f +13726,46286,42,5,f +13726,46286,52,2,f +13726,46286,45,5,f +13726,46296,45,1,f +13726,46296,42,1,f +13726,47912,143,1,f +13726,47912,42,1,f +13726,48794,9,1,f +13726,clikits006pb01,11,2,f +13726,clikits006pb02,52,3,f +13726,clikits013pb01,41,2,f +13726,clikits018,47,1,f +13726,clikits037,9,2,f +13726,clikits078,5,2,f +13730,14226c11,0,1,f +13730,2343,47,1,f +13730,2926,0,2,f +13730,3001,29,14,f +13730,3001,25,2,f +13730,3001,4,4,f +13730,3001,1,4,f +13730,3001,2,2,f +13730,3001,27,2,f +13730,3001,14,2,f +13730,3001,15,2,f +13730,3002,25,2,f +13730,3002,2,2,f +13730,3002,15,2,f +13730,3002,29,6,f +13730,3002,14,2,f +13730,3002,27,4,f +13730,3003,5,8,f +13730,3003,4,2,f +13730,3003,25,2,f +13730,3003,27,2,f +13730,3003,14,2,f +13730,3003,2,2,f +13730,3003pe2,15,2,f +13730,3004,25,2,f +13730,3004,26,4,f +13730,3004,14,2,f +13730,3004,29,10,f +13730,3004,15,4,f +13730,3004,0,2,f +13730,3004p0b,14,2,f +13730,3005,25,2,f +13730,3005,2,2,f +13730,3005,5,2,f +13730,3005,1,2,f +13730,3005,29,4,f +13730,3005,15,2,f +13730,3005,14,2,f +13730,3010,4,2,f +13730,3020,25,2,f +13730,3022,25,2,f +13730,3022,15,2,f +13730,3022,70,3,f +13730,3022,4,2,f +13730,3023,4,1,f +13730,3023,0,1,f +13730,3024,0,2,f +13730,3029,2,1,f +13730,3031,4,1,f +13730,30367b,15,1,f +13730,3037,26,8,f +13730,3039,1,2,f +13730,3039,2,2,f +13730,3040b,25,2,f +13730,3040b,1,2,f +13730,3040b,15,2,f +13730,3040b,5,2,f +13730,3040b,70,2,f +13730,3139,0,4,f +13730,33303,15,2,f +13730,3622,15,2,f +13730,3660,1,2,f +13730,3660,70,2,f +13730,3665,15,2,f +13730,3710,4,2,f +13730,3710,25,1,f +13730,3710,0,2,f +13730,3795,15,1,f +13730,3795,4,1,f +13730,3854,15,2,f +13730,4130,15,1,f +13730,4131,14,1,f +13730,4132,14,1,f +13730,4287,15,2,f +13730,4600,0,1,f +13730,4624,15,4,f +13730,4727,10,3,f +13730,4728,4,2,f +13730,4728,14,1,f +13730,54200,15,2,f +13730,54200,15,1,t +13730,6141,27,4,f +13730,6141,4,1,t +13730,6141,29,1,t +13730,6141,27,1,t +13730,6141,25,4,f +13730,6141,25,1,t +13730,6141,29,4,f +13730,6141,4,4,f +13730,6254,191,1,f +13731,10288,308,1,f +13731,15339,148,1,f +13731,15341,179,2,f +13731,15343,179,2,f +13731,15351,179,1,f +13731,15357,0,1,f +13731,15358pat0001,35,3,f +13731,15359pr0003,41,1,f +13731,15362,0,1,f +13731,15367,0,2,f +13731,15391,0,1,f +13731,15392,72,1,f +13731,2780,0,2,f +13731,32039,0,2,f +13731,32062,4,4,f +13731,3626b,27,1,f +13731,3707,0,2,f +13731,41678,0,1,f +13731,42003,0,2,f +13731,4274,1,4,f +13731,43093,1,2,f +13731,53451,27,4,f +13731,59443,0,1,f +13731,59900,182,2,f +13731,60115,0,1,f +13731,60897,0,2,f +13731,6141,42,1,f +13731,90609,0,1,f +13731,90611,41,5,f +13731,90617,72,4,f +13731,90626,0,1,f +13731,90641,41,6,f +13731,90652,0,1,f +13731,92220,41,4,f +13731,92235pat0003,0,4,f +13731,93571,0,4,f +13731,98138pr0019,15,1,f +13731,98577,72,1,f +13731,98603s01pr0011,0,1,f +13731,99021,72,2,f +13732,4186,7,1,f +13733,30370,15,1,f +13733,3626bpr0631,78,1,f +13733,970x199,25,1,f +13733,973pr1578c01,25,1,f +13734,74747,8,8,f +13736,3024,47,1,f +13736,3062b,4,3,f +13736,3070b,15,1,f +13736,3070b,15,1,t +13736,3623,4,1,f +13736,3710,4,1,f +13736,4070,72,1,f +13736,4589,4,1,f +13736,4595,71,1,f +13736,4599b,71,1,f +13736,54200,4,7,f +13736,54200,4,1,t +13736,6141,4,1,t +13736,6141,4,1,f +13737,2412b,0,1,f +13737,2412b,14,2,f +13737,2412b,383,4,f +13737,2431,7,1,f +13737,2436,14,2,f +13737,2437,41,1,f +13737,2456,14,1,f +13737,2465,0,2,f +13737,3001,14,1,f +13737,3003,0,1,f +13737,3004,0,2,f +13737,3010,14,7,f +13737,3020,4,1,f +13737,3020,14,1,f +13737,3021,14,1,f +13737,3022,7,1,f +13737,3022,14,1,f +13737,3023,7,4,f +13737,3023,14,1,f +13737,3024,47,2,f +13737,3031,14,1,f +13737,3032,14,1,f +13737,3040b,14,2,f +13737,3062b,14,2,f +13737,3068b,7,1,f +13737,3069b,14,2,f +13737,3188,14,1,f +13737,3189,14,1,f +13737,3626bp04,14,1,f +13737,3710,14,3,f +13737,3788,14,1,f +13737,3829c01,15,1,f +13737,4070,14,6,f +13737,4081b,14,2,f +13737,4085c,14,4,f +13737,4215b,14,1,f +13737,4315,14,1,f +13737,4474,14,1,f +13737,4485,1,1,f +13737,4858,14,1,f +13737,6014a,15,6,f +13737,6015,0,6,f +13737,6141,14,2,f +13737,6141,57,1,t +13737,6141,7,4,f +13737,6141,57,2,f +13737,6141,7,1,t +13737,6141,14,1,t +13737,6157,0,3,f +13737,71075,383,2,f +13737,71137,383,2,f +13737,71182,383,2,f +13737,71184,383,2,f +13737,970c00,1,1,f +13737,973pr1245c01,1,2,f +13738,2413,15,2,f +13738,2431,15,1,f +13738,2444,72,6,f +13738,2476a,71,2,f +13738,2780,0,4,f +13738,2780,0,1,t +13738,3004,4,1,f +13738,3021,72,1,f +13738,3022,14,2,f +13738,3031,2,1,f +13738,3034,15,2,f +13738,3069b,14,2,f +13738,3069bpr0101,71,1,f +13738,3070bpr0007,71,1,t +13738,3070bpr0007,71,1,f +13738,3178stk01,9999,1,t +13738,3188,14,1,f +13738,3189,14,1,f +13738,3460,15,1,f +13738,3626bpr0282,14,1,f +13738,3660,14,1,f +13738,3673,71,1,t +13738,3673,71,2,f +13738,3678b,71,1,f +13738,3710,14,2,f +13738,3710,72,3,f +13738,3794b,71,1,f +13738,3795,72,1,f +13738,3832,72,1,f +13738,3941,15,1,f +13738,3942c,4,2,f +13738,4032a,15,2,f +13738,4032a,2,1,f +13738,4032a,4,1,f +13738,4162,14,2,f +13738,41769,15,1,f +13738,41769,14,1,f +13738,41770,14,1,f +13738,41770,15,1,f +13738,42023,15,4,f +13738,42023,14,2,f +13738,42445,71,1,f +13738,43337,14,2,f +13738,43722,72,2,f +13738,43723,72,2,f +13738,4449,0,1,f +13738,45677,15,1,f +13738,4599b,0,1,f +13738,4617b,0,2,f +13738,48183,72,1,f +13738,4856a,15,2,f +13738,4858,14,1,f +13738,48989,71,1,f +13738,57783,41,1,f +13738,60592,0,2,f +13738,61409,72,6,f +13738,6141,36,1,t +13738,6141,36,2,f +13738,6141,34,1,t +13738,6141,34,2,f +13738,6239,14,1,f +13738,62462,71,4,f +13738,85970,14,2,f +13738,86035,4,1,f +13738,970c00,272,1,f +13738,973pr1163c01,272,1,f +13739,2412b,0,16,f +13739,2431p12,15,2,f +13739,2436,4,4,f +13739,2878c01,0,4,f +13739,2920,0,2,f +13739,3001,15,2,f +13739,3003,4,4,f +13739,3003,8,2,f +13739,3004,8,2,f +13739,30145,4,2,f +13739,3020,0,2,f +13739,3022,15,2,f +13739,3022,8,2,f +13739,3022,4,4,f +13739,3023,8,2,f +13739,3031,0,2,f +13739,3034,8,2,f +13739,3039,15,2,f +13739,30414,8,4,f +13739,30562,15,8,f +13739,30565,4,8,f +13739,30565,2,8,f +13739,30663,0,2,f +13739,3069bp68,15,2,f +13739,3710,4,2,f +13739,3795,0,2,f +13739,3795,8,4,f +13739,3795,15,4,f +13739,3795,4,1,f +13739,3961,15,2,f +13739,4022,0,2,f +13739,4025,0,2,f +13739,4032a,4,2,f +13739,4032a,2,1,f +13739,4150,4,1,f +13739,4175,0,6,f +13739,4477,0,2,f +13739,6583,0,2,f +13739,6584,0,1,f +13739,6636px2,15,2,f +13739,73092,0,2,f +13740,14769,71,1,f +13740,3004,0,2,f +13740,3005,25,1,f +13740,30103,0,1,f +13740,3022,25,1,f +13740,3023,25,2,f +13740,30238,0,1,f +13740,3040bpr0003,71,1,f +13740,3062b,57,1,f +13740,3062b,41,1,f +13740,33291,10,1,f +13740,3626c,25,1,f +13740,3795,27,1,f +13740,3795,30,1,f +13740,3900,15,1,f +13740,6231,0,4,f +13740,93092,191,1,f +13740,98138,15,1,f +13740,98138,36,1,f +13740,98138pr0008,15,1,f +13740,98138pr0013,15,1,f +13740,98138pr0024a,179,1,f +13743,2524,6,1,f +13743,2526,14,1,f +13743,2526,6,1,f +13743,2526,4,1,f +13743,2528pb01,0,1,f +13743,2530,8,3,f +13743,2530,8,1,t +13743,2543,4,1,f +13743,2543,1,1,f +13743,2544,0,1,f +13743,2545,0,1,f +13743,2546p01,4,1,f +13743,2561,6,1,f +13743,2562,6,1,f +13743,3626apb04,14,1,f +13743,3626apb05,14,1,f +13743,3626apb06,14,1,f +13743,3626apr0001,14,1,f +13743,3626apx2,14,1,f +13743,4738b,6,1,f +13743,4739b,6,1,f +13743,57503,334,2,f +13743,57504,334,2,f +13743,57505,334,2,f +13743,57506,334,2,f +13743,970c00,1,1,f +13743,970c00,15,3,f +13743,970d01,0,1,f +13743,973p31c01,14,1,f +13743,973p36c01,0,1,f +13743,973p38c01,15,1,f +13743,973pb0204c01,15,2,f +13744,bdoor01,4,2,f +13744,bwindow01,15,4,f +13744,bwindow02,15,3,f +13744,bwindow03,15,3,f +13745,12825,4,2,f +13745,2335pr02,15,1,f +13745,2412b,4,2,f +13745,2412b,0,1,f +13745,2413,4,2,f +13745,2431,0,1,f +13745,2433,0,1,f +13745,2436,14,1,f +13745,2446px3,4,1,f +13745,2446px6,1,1,f +13745,2447,41,2,f +13745,2453a,15,4,f +13745,2486,4,1,f +13745,2508,7,1,f +13745,2518,2,4,f +13745,2536,6,5,f +13745,2540,0,1,f +13745,2546p01,4,1,f +13745,2563,6,1,f +13745,2566,6,1,f +13745,2569,0,2,f +13745,2610,14,3,f +13745,2654,7,4,f +13745,2926,7,1,f +13745,3003,15,2,f +13745,30031,4,2,f +13745,3004,0,2,f +13745,3005,0,2,f +13745,3005,1,2,f +13745,3010,15,2,f +13745,3020,7,1,f +13745,3020,14,1,f +13745,3021,0,1,f +13745,3022,7,1,f +13745,3022,14,1,f +13745,3023,4,2,f +13745,3023,14,1,f +13745,3023,7,2,f +13745,3024,36,2,f +13745,3027,14,1,f +13745,3062b,0,8,f +13745,3062b,4,1,f +13745,3062b,2,1,f +13745,3070b,46,2,f +13745,3139,0,2,f +13745,3298pb022,15,2,f +13745,3460,14,2,f +13745,3460,7,2,f +13745,3623,0,2,f +13745,3623,15,2,f +13745,3626bp03,14,1,f +13745,3626bp04,14,3,f +13745,3666,0,2,f +13745,3666,15,2,f +13745,3710,0,1,f +13745,3710,15,2,f +13745,3710,7,1,f +13745,3730,7,1,f +13745,3788,14,1,f +13745,3794a,1,2,f +13745,3794a,0,2,f +13745,3795,0,1,f +13745,3795,15,1,f +13745,3823,41,1,f +13745,3829c01,4,1,f +13745,3839b,0,2,f +13745,3937,1,1,f +13745,3938,15,1,f +13745,3957a,15,1,f +13745,3958,15,1,f +13745,3962b,0,1,f +13745,4032a,2,1,f +13745,4032a,0,2,f +13745,4079,1,1,f +13745,4081b,4,2,f +13745,4083,4,2,f +13745,4085c,4,2,f +13745,4095,15,1,f +13745,4175,4,1,f +13745,4211,14,1,f +13745,4349,7,2,f +13745,4485,1,2,f +13745,4495a,14,1,f +13745,4515,4,1,f +13745,4589,36,1,f +13745,4589,34,1,f +13745,4624,15,2,f +13745,4854,1,1,f +13745,4855,1,1,f +13745,4859,15,1,f +13745,4865a,0,2,f +13745,4865a,1,2,f +13745,4871,1,1,f +13745,6014a,15,4,f +13745,6015,0,4,f +13745,6019,0,1,f +13745,6141,47,2,f +13745,6141,15,2,f +13745,6141,36,2,f +13745,6153apb02,0,1,f +13745,6153apb03,1,1,f +13745,6157,0,2,f +13745,970c00,4,2,f +13745,970c00,15,1,f +13745,970x026,14,1,f +13745,973pb0040c01,7,1,f +13745,973pb0249c01,4,1,f +13745,973pr1204c01,15,1,f +13745,973px124c01,15,1,f +13746,33322,179,1,f +13746,3626bpr0941,14,1,f +13746,3678bpr0013b,15,1,f +13746,3742,29,3,f +13746,3742,29,1,t +13746,88646,0,1,f +13746,973pr2022c01,15,1,f +13746,99240,308,1,f +13746,99249,2,1,f +13746,99256,15,1,f +13747,11090,0,2,f +13747,11091,297,2,f +13747,11477,72,4,f +13747,14704,71,2,f +13747,14769pr1002,15,1,f +13747,15208,0,1,f +13747,18649,71,1,f +13747,22890,72,2,f +13747,24246,15,4,f +13747,24246,15,1,t +13747,2921,0,2,f +13747,3020,70,1,f +13747,3022,0,4,f +13747,3023,70,2,f +13747,3040b,70,4,f +13747,32474pr1001,15,1,f +13747,4032a,71,2,f +13747,44302a,71,2,f +13747,44567a,72,1,f +13747,4495b,4,1,f +13747,4497,179,1,f +13747,4735,0,2,f +13747,47456,71,1,f +13747,48336,297,3,f +13747,54200,70,2,f +13747,54200,70,1,t +13747,61252,72,5,f +13747,63868,70,2,f +13747,88072,0,1,f +13747,92582,71,1,f +13747,93273,72,2,f +13747,99780,71,4,f +13747,99781,0,1,f +13748,2340,4,2,f +13748,2357,14,2,f +13748,2412b,0,1,f +13748,2412b,7,2,f +13748,2431,0,1,f +13748,2437,41,1,f +13748,2446,15,2,f +13748,2447,0,2,f +13748,2540,7,2,f +13748,2610,14,2,f +13748,2625,4,1,f +13748,2625,0,1,f +13748,2626,0,2,f +13748,2654,0,3,f +13748,298c02,0,2,f +13748,3003,1,1,f +13748,3004,0,2,f +13748,3008,0,4,f +13748,3021,7,1,f +13748,3022,0,2,f +13748,3023,4,4,f +13748,3023,7,2,f +13748,3023,0,3,f +13748,3033,0,1,f +13748,3068b,0,1,f +13748,3298,0,2,f +13748,3622,0,2,f +13748,3626apr0001,14,2,f +13748,3666,4,2,f +13748,3710,4,1,f +13748,3795,4,1,f +13748,3829c01,14,1,f +13748,3937,1,2,f +13748,3938,1,2,f +13748,3962b,0,2,f +13748,4070,7,2,f +13748,4079,4,2,f +13748,4085c,4,2,f +13748,4286,0,2,f +13748,4589,7,2,f +13748,4865a,14,2,f +13748,6141,0,2,f +13748,6679.1stk01,9999,1,t +13748,970c00,1,2,f +13748,973c01,15,2,f +13750,10113,0,1,f +13750,14226c11,0,1,f +13750,14226c11,0,1,t +13750,15207,71,2,f +13750,2412b,19,2,f +13750,2412b,4,1,f +13750,2412b,143,2,f +13750,2412b,4,1,t +13750,2413,0,2,f +13750,2419,0,3,f +13750,2431,19,7,f +13750,2432,4,1,f +13750,2432,19,2,f +13750,2444,14,1,f +13750,2456,71,1,f +13750,2540,19,4,f +13750,2540,1,4,f +13750,2654,71,6,f +13750,2654,72,6,f +13750,2877,71,1,f +13750,3001,28,2,f +13750,3002,0,2,f +13750,3003,14,2,f +13750,3003,71,1,f +13750,3004,0,6,f +13750,3007,19,1,f +13750,3009,0,2,f +13750,3010,0,2,f +13750,30157,71,1,f +13750,3020,1,9,f +13750,3020,19,3,f +13750,3021,72,2,f +13750,3021,70,5,f +13750,3022,1,6,f +13750,3023,71,2,f +13750,3023,70,9,f +13750,3031,1,4,f +13750,3034,71,1,f +13750,30365,72,2,f +13750,3037,0,1,f +13750,30372,40,1,f +13750,3040b,28,2,f +13750,3040b,4,2,f +13750,30602,0,2,f +13750,3068b,0,2,f +13750,3068b,19,2,f +13750,3069b,182,8,f +13750,3069b,1,2,f +13750,3069bpr0070,0,1,f +13750,32062,4,6,f +13750,32064b,72,9,f +13750,32187,71,1,f +13750,32192,72,2,f +13750,32523,0,2,f +13750,3298,0,1,f +13750,3623,1,4,f +13750,3626cpr0896,78,1,f +13750,3626cpr1073,78,1,f +13750,3626cpr1075,78,1,f +13750,3666,0,2,f +13750,3673,71,1,t +13750,3673,71,2,f +13750,3700,1,3,f +13750,3710,71,2,f +13750,3710,72,2,f +13750,3710,70,1,f +13750,3747b,0,2,f +13750,3749,19,2,f +13750,3794b,71,6,f +13750,3795,0,2,f +13750,3795,28,2,f +13750,3829c01,71,1,f +13750,3958,0,1,f +13750,4070,0,4,f +13750,42003,71,2,f +13750,4274,1,1,t +13750,4274,1,1,f +13750,4286,0,2,f +13750,43093,1,2,f +13750,43710,28,1,f +13750,43711,28,1,f +13750,44301a,72,4,f +13750,44568,71,2,f +13750,44676,19,4,f +13750,44676,0,4,f +13750,44728,19,7,f +13750,45677,19,1,f +13750,4589,33,4,f +13750,46667,72,2,f +13750,4740,0,4,f +13750,47407,0,2,f +13750,47452,72,2,f +13750,47455,0,4,f +13750,47456,0,3,f +13750,47720,0,1,f +13750,48169,72,2,f +13750,48171,72,2,f +13750,48336,0,4,f +13750,51739,28,1,f +13750,52036,72,1,f +13750,53586,179,2,f +13750,54200,0,4,t +13750,54200,0,4,f +13750,55981,71,4,f +13750,56630,0,1,f +13750,57783,40,1,f +13750,58090,0,2,f +13750,6037281,9999,1,t +13750,60471,0,8,f +13750,60478,71,2,f +13750,60481,0,2,f +13750,6091,4,2,f +13750,61184,71,4,f +13750,6126b,182,1,f +13750,6140,0,2,f +13750,61409,1,2,f +13750,6141,46,6,f +13750,6141,46,2,t +13750,6215,4,1,f +13750,6232,19,2,f +13750,62810,308,1,f +13750,63864,4,2,f +13750,63864,0,4,f +13750,6536,0,2,f +13750,6541,19,2,f +13750,6587,28,1,f +13750,6636,14,2,f +13750,72454,0,2,f +13750,85984,0,8,f +13750,85984,19,4,f +13750,87079,0,4,f +13750,87580,28,1,f +13750,89201,0,2,f +13750,92280,0,2,f +13750,92582,71,4,f +13750,92842,0,2,f +13750,92946,72,2,f +13750,93606,0,2,f +13750,95199,72,1,f +13750,970c00,72,1,f +13750,970c00,0,1,f +13750,970x026,72,1,f +13750,973pr2170c01,72,1,f +13750,973pr2171c01,326,1,f +13750,973pr2173c01,272,1,f +13750,98138,182,1,t +13750,98138,182,2,f +13750,98313,179,8,f +13750,99780,72,1,f +13751,11211,19,1,f +13751,15208,19,2,f +13751,15470,29,3,f +13751,15470,70,1,f +13751,15573,28,1,f +13751,15573,19,2,f +13751,15573,72,4,f +13751,2780,0,2,f +13751,3005,47,1,f +13751,3005,378,3,f +13751,3020,272,1,f +13751,3020,28,2,f +13751,3022,19,2,f +13751,3023,320,1,f +13751,3023,28,4,f +13751,3023,27,1,f +13751,3023,47,6,f +13751,3023,2,2,f +13751,3023,15,2,f +13751,3024,2,3,f +13751,3024,71,3,f +13751,3024,28,3,f +13751,3024,47,36,f +13751,3024,272,15,f +13751,3034,15,2,f +13751,3035,0,2,f +13751,3065,47,1,f +13751,3069b,320,1,f +13751,3069b,27,1,f +13751,3070b,4,1,f +13751,3070b,70,1,f +13751,3070b,28,3,f +13751,3070b,71,10,f +13751,32000,19,2,f +13751,32028,15,4,f +13751,33125,484,1,f +13751,33291,10,4,f +13751,3460,2,1,f +13751,3623,72,2,f +13751,3623,15,2,f +13751,3666,71,1,f +13751,3666,15,1,f +13751,3710,71,2,f +13751,3710,272,3,f +13751,3710,320,1,f +13751,3710,15,5,f +13751,3710,72,2,f +13751,4081b,0,4,f +13751,4216,379,12,f +13751,4510,15,1,f +13751,4740,28,1,f +13751,4865a,47,1,f +13751,54200,47,2,f +13751,54200,0,8,f +13751,59900,2,1,f +13751,6141,47,1,f +13751,6141,0,9,f +13751,6141,158,2,f +13751,6141,71,12,f +13751,6141,322,2,f +13751,6141,70,3,f +13751,6231,19,1,f +13751,63864,320,1,f +13751,64644,19,1,f +13751,64644,0,1,f +13751,85984,0,12,f +13751,98138,320,2,f +13751,98283,378,3,f +13752,11211,71,2,f +13752,11303,1,1,f +13752,13731,71,2,f +13752,14682,71,2,f +13752,14719,71,2,f +13752,15068,71,2,f +13752,15068,25,1,f +13752,15207,4,4,f +13752,15207,25,2,f +13752,15573,0,2,f +13752,15790,0,1,f +13752,16542,0,1,f +13752,16542,0,1,t +13752,18646,25,1,f +13752,18651,0,2,f +13752,18671,72,1,f +13752,18899pat0001,4,1,f +13752,19220,0,1,f +13752,22889,0,1,f +13752,2340,4,2,f +13752,2340,72,2,f +13752,23448,40,2,f +13752,2412b,72,6,f +13752,2412b,0,2,f +13752,2412b,15,4,f +13752,2412b,1,1,f +13752,2412b,71,6,f +13752,2412b,4,10,f +13752,2415,71,6,f +13752,2420,15,2,f +13752,2431,4,2,f +13752,2431,72,2,f +13752,2431,71,1,f +13752,2432,71,3,f +13752,2432,0,1,f +13752,2432,1,1,f +13752,2441,0,1,f +13752,2445,1,1,f +13752,2446pr0013,15,2,f +13752,2447,40,2,f +13752,2447,40,2,t +13752,2456,71,4,f +13752,2465,19,2,f +13752,2465,72,2,f +13752,2496,0,2,f +13752,2540,71,2,f +13752,2584,0,1,f +13752,2585,71,1,f +13752,2639,72,2,f +13752,2653,71,2,f +13752,2655,71,3,f +13752,2877,72,6,f +13752,2926,0,1,f +13752,3003,14,2,f +13752,3003,2,1,f +13752,3004,72,5,f +13752,3009,1,2,f +13752,30170,72,2,f +13752,30170,72,1,t +13752,30171,70,2,f +13752,3020,4,2,f +13752,3020,25,7,f +13752,3020,0,4,f +13752,3020,1,4,f +13752,3020,72,12,f +13752,3020,71,2,f +13752,3020,15,1,f +13752,3020,14,2,f +13752,3020,2,2,f +13752,3021,71,3,f +13752,3021,15,1,f +13752,3021,2,2,f +13752,3021,14,1,f +13752,3022,14,2,f +13752,3022,4,2,f +13752,3022,2,1,f +13752,3022,71,3,f +13752,3022,72,2,f +13752,3022,25,1,f +13752,3022,1,9,f +13752,3023,1,2,f +13752,3023,25,3,f +13752,3023,15,2,f +13752,3023,2,6,f +13752,3023,0,7,f +13752,3023,4,2,f +13752,3023,71,3,f +13752,3023,14,7,f +13752,3024,0,1,t +13752,3024,34,3,t +13752,3024,25,1,t +13752,3024,34,5,f +13752,3024,0,2,f +13752,3024,36,3,t +13752,3024,36,5,f +13752,3024,25,2,f +13752,3026,72,4,f +13752,3034,72,3,f +13752,3034,4,2,f +13752,3034,1,1,f +13752,3035,72,3,f +13752,30355,15,1,f +13752,30356,15,1,f +13752,30367c,25,1,f +13752,3039,72,2,f +13752,3069b,71,1,f +13752,3069bpr0070,0,2,f +13752,3070b,36,3,f +13752,3070b,34,1,f +13752,3070b,34,1,t +13752,3070b,36,2,t +13752,32018,71,2,f +13752,32059,0,1,f +13752,32062,4,4,f +13752,32064a,71,16,f +13752,32064a,15,2,f +13752,32123b,14,1,f +13752,32123b,14,1,t +13752,32192,72,8,f +13752,3298,71,2,f +13752,3460,4,2,f +13752,3464,72,1,f +13752,3464,15,6,f +13752,3622,4,2,f +13752,3623,15,2,f +13752,3623,2,1,f +13752,3623,14,3,f +13752,3626cpr0893,14,1,f +13752,3626cpr1146,14,1,f +13752,3626cpr1147,14,1,f +13752,3626cpr1579,14,1,f +13752,3626cpr1580,14,1,f +13752,3626cpr1663,14,1,f +13752,3666,71,4,f +13752,3700,72,8,f +13752,3700,4,3,f +13752,3701,4,1,f +13752,3706,0,5,f +13752,3710,72,4,f +13752,3710,4,4,f +13752,3710,25,5,f +13752,3710,15,4,f +13752,3794b,71,2,f +13752,3795,0,1,f +13752,3795,25,8,f +13752,3795,71,6,f +13752,3829c01,14,1,f +13752,3832,72,4,f +13752,3832,14,1,f +13752,3832,71,2,f +13752,3839b,72,2,f +13752,3899,4,1,f +13752,3900,15,2,f +13752,3937,4,4,f +13752,3942c,4,2,f +13752,4083,14,1,f +13752,4083,0,1,f +13752,41531,0,1,f +13752,41539,0,1,f +13752,4162,0,4,f +13752,41769,15,3,f +13752,41770,15,3,f +13752,4185,72,1,f +13752,4282,72,6,f +13752,4282,0,1,f +13752,4282,15,1,f +13752,43093,1,3,f +13752,43713,72,4,f +13752,43719,0,1,f +13752,43719,4,2,f +13752,43719,15,2,f +13752,43722,4,1,f +13752,43722,0,1,f +13752,43722,15,3,f +13752,43723,0,1,f +13752,43723,15,3,f +13752,43723,4,1,f +13752,44728,71,10,f +13752,4477,15,6,f +13752,4477,71,1,f +13752,4519,14,4,f +13752,4624,15,2,f +13752,47397,15,1,f +13752,47398,15,1,f +13752,47457,4,1,f +13752,47457,14,2,f +13752,4871,72,3,f +13752,48933,4,1,f +13752,49668,4,2,f +13752,50304,0,3,f +13752,50304,25,4,f +13752,50305,0,3,f +13752,50305,25,4,f +13752,50373,25,1,f +13752,50373,4,2,f +13752,50951,0,4,f +13752,50951,0,1,t +13752,51739,15,1,f +13752,54200,4,1,t +13752,54200,4,2,f +13752,54200,41,2,t +13752,54200,41,2,f +13752,54383,15,1,f +13752,54383,0,2,f +13752,54384,15,1,f +13752,54384,0,2,f +13752,59895,0,8,f +13752,59900,0,2,f +13752,60032,0,2,f +13752,60212,14,2,f +13752,604547,0,1,f +13752,604548,0,1,f +13752,604549,0,1,f +13752,604550,0,1,f +13752,604551,0,2,f +13752,604552,0,1,f +13752,604553,0,1,f +13752,604614,0,1,f +13752,604615,0,1,f +13752,60475b,14,2,f +13752,60475b,71,2,f +13752,60479,15,2,f +13752,6081,72,2,f +13752,6091,15,2,f +13752,6091,71,2,f +13752,6106,15,2,f +13752,61252,71,2,f +13752,61252,0,2,f +13752,6134,0,4,f +13752,61409,71,4,f +13752,6141,47,1,f +13752,6141,182,1,t +13752,6141,182,1,f +13752,6141,47,1,t +13752,6239,0,1,f +13752,63864,25,12,f +13752,63864,71,4,f +13752,64448,72,6,f +13752,6636,71,4,f +13752,6636,25,6,f +13752,72454,72,4,f +13752,85974,84,1,f +13752,85984,14,2,f +13752,87079,14,1,f +13752,87580,4,2,f +13752,87614,4,1,f +13752,87752,40,1,f +13752,88930,4,4,f +13752,91988,72,2,f +13752,92280,0,6,f +13752,92438,0,1,f +13752,92584,15,2,f +13752,92593,15,8,f +13752,92946,4,4,f +13752,93273,4,1,f +13752,93274,14,2,f +13752,93594,179,4,f +13752,93606,71,2,f +13752,96874,25,1,t +13752,970c00,320,2,f +13752,970c00,272,2,f +13752,970c00,73,2,f +13752,973pr2998c01,25,1,f +13752,973pr3360c01,73,1,f +13752,973pr3477c01,272,2,f +13752,973pr3479c01,15,2,f +13752,98100,0,3,f +13752,98138,71,1,t +13752,98138,34,1,f +13752,98138,34,1,t +13752,98138,71,6,f +13752,98138,46,4,f +13752,98138,46,2,t +13752,98138,36,3,f +13752,98138,36,2,t +13752,99206,71,2,f +13752,99207,71,2,f +13752,99780,72,1,f +13752,99780,15,1,f +13752,99780,71,1,f +13753,2420,1,4,f +13753,2420,71,2,f +13753,2431,14,1,f +13753,2431,1,1,f +13753,2431,15,1,f +13753,2780,0,2,f +13753,2877,72,1,f +13753,3001,1,2,f +13753,3003,0,1,f +13753,3004,1,2,f +13753,3005,14,2,f +13753,3005,15,3,f +13753,3010,15,5,f +13753,3010,19,2,f +13753,3020,15,3,f +13753,3022,72,4,f +13753,3023,71,3,f +13753,3023,47,5,f +13753,3023,1,8,f +13753,3023,4,2,f +13753,3024,14,5,f +13753,3024,1,1,f +13753,3024,2,3,f +13753,3024,47,15,f +13753,3024,0,1,f +13753,3030,0,2,f +13753,30414,1,2,f +13753,3069b,19,3,f +13753,3069b,4,2,f +13753,3069b,72,2,f +13753,3070b,71,5,f +13753,32000,15,2,f +13753,32028,4,3,f +13753,33291,10,2,f +13753,3622,15,1,f +13753,3623,1,1,f +13753,3623,2,4,f +13753,3666,1,2,f +13753,3710,72,4,f +13753,3710,71,2,f +13753,3710,1,5,f +13753,3794b,71,2,f +13753,3795,15,1,f +13753,4081b,0,4,f +13753,54200,1,1,f +13753,54200,47,4,f +13753,59900,2,2,f +13753,6141,0,9,f +13753,6141,70,2,f +13753,6141,179,2,f +13753,6141,47,1,f +13753,6141,27,2,f +13753,63864,72,2,f +13753,63864,15,5,f +13753,64644,0,1,f +13753,87079,1,4,f +13753,98138,179,1,f +13754,10312pr0005,40,1,f +13754,11153,70,2,f +13754,15303,35,3,f +13754,15400,72,2,f +13754,15573,71,1,f +13754,17979,14,4,f +13754,2412b,179,4,f +13754,2412b,14,2,f +13754,2420,14,4,f +13754,2431,14,4,f +13754,2431,71,4,f +13754,2540,0,2,f +13754,2654,71,8,f +13754,2780,0,1,t +13754,2780,0,2,f +13754,2877,14,2,f +13754,3002,72,1,f +13754,3020,72,8,f +13754,3020,0,1,f +13754,3021,14,2,f +13754,3021,71,7,f +13754,3022,19,3,f +13754,3022,71,1,f +13754,3023,14,2,f +13754,30361pr1001,15,1,f +13754,30362,15,2,f +13754,30367cpr1001,179,1,f +13754,30374,41,1,f +13754,30374,71,4,f +13754,30503,71,4,f +13754,30526,71,1,f +13754,3068b,71,2,f +13754,3068b,70,2,f +13754,3070b,72,2,f +13754,3070b,72,2,t +13754,32000,72,2,f +13754,32054,0,2,f +13754,32062,4,3,f +13754,32064b,71,2,f +13754,3298,14,2,f +13754,3623,72,2,f +13754,3626cpr1295,78,1,f +13754,3666,14,2,f +13754,3666,71,1,f +13754,3700,71,1,f +13754,3710,28,18,f +13754,3747b,71,2,f +13754,3795,0,4,f +13754,3795,71,4,f +13754,3832,72,1,f +13754,3832,0,1,f +13754,3960pr13,40,1,f +13754,4081b,71,4,f +13754,41678,0,1,f +13754,4274,1,1,f +13754,4274,1,1,t +13754,43710,14,2,f +13754,43711,14,2,f +13754,43722,71,1,f +13754,43723,71,1,f +13754,44567a,71,6,f +13754,44570,72,2,f +13754,4477,71,4,f +13754,4740,41,2,f +13754,4871,71,2,f +13754,50304,14,1,f +13754,50305,14,1,f +13754,51739,14,2,f +13754,55981,71,2,f +13754,59443,0,2,f +13754,59900,0,2,f +13754,60471,71,2,f +13754,60897,71,10,f +13754,6091,70,2,f +13754,61183,308,1,f +13754,6141,297,3,t +13754,6141,297,12,f +13754,63868,0,4,f +13754,63965,0,2,f +13754,64567,0,2,t +13754,64567,80,1,f +13754,64567,0,2,f +13754,64567,80,1,t +13754,6536,72,1,f +13754,6587,28,1,f +13754,72454,72,1,f +13754,87079,72,1,f +13754,87079,71,1,f +13754,87580,72,1,f +13754,970c00pr0304,308,1,f +13754,973pr1997c01,0,1,f +13754,98138pr0020,71,1,f +13754,98138pr0020,71,1,t +13756,3001,14,2,f +13756,3001p08,14,1,f +13756,3002,1,2,f +13756,3002,14,2,f +13756,3003,14,1,f +13756,3003pe2,14,2,f +13756,6215,2,2,f +13756,6215,4,2,f +13758,10247,72,1,f +13758,11055,0,2,f +13758,11203,72,4,f +13758,11211,71,1,f +13758,11214,72,1,f +13758,11272,148,1,f +13758,11305,179,2,f +13758,11476,71,1,f +13758,11477,0,4,f +13758,11477,308,4,f +13758,11833,57,3,f +13758,12618,0,1,f +13758,13548,308,2,f +13758,13548,1,4,f +13758,13695,15,1,f +13758,14413,0,2,f +13758,14769,0,1,f +13758,15303,182,3,f +13758,15400,72,2,f +13758,15571,0,2,f +13758,15573,320,2,f +13758,15573,1,1,f +13758,15712,0,4,f +13758,18031,148,1,f +13758,18166,0,1,f +13758,18649,0,1,f +13758,22385,0,2,f +13758,22385pr0033,47,1,f +13758,22385pr0044,35,1,f +13758,22385pr0067,57,1,f +13758,22388,297,2,f +13758,22388,57,3,t +13758,22388,297,1,t +13758,22388,57,11,f +13758,22390,179,2,f +13758,22391,179,8,f +13758,22392,321,2,f +13758,22402,148,1,f +13758,22408,179,1,f +13758,22411,0,1,f +13758,22425,0,1,f +13758,23860,179,1,f +13758,24078,71,1,f +13758,2412b,70,3,f +13758,2412b,57,7,f +13758,2436,71,6,f +13758,24482,0,1,t +13758,24482,0,5,f +13758,2540,72,1,f +13758,2540,1,8,f +13758,2569,57,1,t +13758,2569,57,2,f +13758,2654,57,7,f +13758,26753,57,1,f +13758,2780,0,3,f +13758,2780,0,2,t +13758,3001,72,1,f +13758,3004,1,6,f +13758,3009,1,1,f +13758,3010,0,3,f +13758,3020,1,7,f +13758,3020,70,3,f +13758,3021,71,2,f +13758,3021,72,13,f +13758,3022,1,4,f +13758,3023,71,1,f +13758,3023,1,3,f +13758,30237b,4,4,f +13758,30237b,0,1,f +13758,30273,1,1,f +13758,30292,57,1,f +13758,3032,1,1,f +13758,3034,1,3,f +13758,30350b,57,4,f +13758,30363,0,3,f +13758,3039,0,2,f +13758,3039,272,1,f +13758,3045,272,2,f +13758,3049c,0,2,f +13758,30552,71,2,f +13758,30553,71,2,f +13758,3062b,0,3,f +13758,3063b,0,4,f +13758,3070bpr0159,1,1,t +13758,3070bpr0159,1,1,f +13758,3070bpr0160,71,2,f +13758,3070bpr0160,71,1,t +13758,32000,71,8,f +13758,32013,71,1,f +13758,32016,71,4,f +13758,32028,0,2,f +13758,32062,4,4,f +13758,32064a,0,6,f +13758,32530,4,1,f +13758,3298,0,2,f +13758,3622,72,2,f +13758,3626cpr1785,179,1,f +13758,3626cpr1786,14,1,f +13758,3626cpr1798,4,1,f +13758,3626cpr1799,4,1,f +13758,3660,0,10,f +13758,3673,71,1,f +13758,3673,71,1,t +13758,3676,72,2,f +13758,3706,4,1,f +13758,3710,1,3,f +13758,3747b,1,2,f +13758,3795,0,2,f +13758,3795,72,1,f +13758,3941,57,2,f +13758,4032a,71,4,f +13758,40379,4,8,f +13758,4070,1,6,f +13758,41879a,0,1,f +13758,42610,71,2,f +13758,43093,1,9,f +13758,43710,272,3,f +13758,43711,272,3,f +13758,43719,57,3,f +13758,43722,1,1,f +13758,43723,1,1,f +13758,44676,272,4,f +13758,44728,1,8,f +13758,4488,0,1,f +13758,47455,72,2,f +13758,47457,308,3,f +13758,47457,71,1,f +13758,47753,0,2,f +13758,48170,72,2,f +13758,48172,0,1,f +13758,4861,72,4,f +13758,48729b,71,2,f +13758,48729b,71,1,t +13758,49668,182,2,f +13758,50745,179,1,f +13758,51739,272,6,f +13758,53451,25,1,t +13758,53451,25,2,f +13758,54383,0,2,f +13758,54384,0,2,f +13758,55236,4,2,f +13758,57028c01,71,1,f +13758,57796,72,1,f +13758,57909b,72,5,f +13758,59900,57,4,f +13758,6014b,71,1,f +13758,60219,0,1,f +13758,60470b,0,7,f +13758,60478,72,10,f +13758,60849,71,2,f +13758,60849,71,1,t +13758,61252,71,2,f +13758,6141,57,3,t +13758,6141,57,12,f +13758,62462,0,2,f +13758,62743,0,1,f +13758,63864,1,4,f +13758,63965,0,1,f +13758,64276,72,1,f +13758,64567,0,2,t +13758,64567,0,2,f +13758,64644,297,1,f +13758,64647,182,1,t +13758,64647,182,1,f +13758,64728,4,1,f +13758,6558,1,1,f +13758,74261,0,4,f +13758,75937,0,1,f +13758,76764,179,1,f +13758,76764,179,1,t +13758,85861,182,1,t +13758,85861,182,2,f +13758,85984,1,1,f +13758,87580,320,2,f +13758,87580,272,1,f +13758,87609,0,1,f +13758,87620,72,2,f +13758,87620,0,8,f +13758,87747,0,1,t +13758,87747,0,3,f +13758,88289,308,1,f +13758,89520,148,1,f +13758,89523,72,1,f +13758,92013,0,6,f +13758,92593,72,1,f +13758,92690,297,1,f +13758,92947,0,1,f +13758,93062c02,179,2,f +13758,93274,72,2,f +13758,970c00pr0947,0,1,f +13758,973pr3162c01,0,1,f +13758,973pr3163c01,4,1,f +13758,973pr3435c01,0,1,f +13758,98313,148,11,f +13758,98313,0,4,f +13758,98560,0,2,f +13758,98834,0,5,f +13758,99207,0,13,f +13758,99778pr0008,4,1,f +13758,99780,4,7,f +13758,99780,1,10,f +13758,99781,0,9,f +13759,2412b,15,1,f +13759,2412b,14,2,f +13759,2432,0,1,f +13759,2610,14,1,f +13759,2654,0,3,f +13759,3010,0,1,f +13759,3022,4,1,f +13759,30236,15,1,f +13759,3626cpr0282,14,1,f +13759,3665,0,1,f +13759,3666,4,2,f +13759,3829c01,1,1,f +13759,42022,4,2,f +13759,48183,15,1,f +13759,52107,0,1,f +13759,52501,15,1,f +13759,54200,15,1,t +13759,54200,15,2,f +13759,57783,40,1,f +13759,60219,15,1,f +13759,61409,0,1,f +13759,61409,4,2,f +13759,63868,0,1,f +13759,86035,1,1,f +13759,87611,15,1,f +13759,87615,4,1,f +13759,970c00,1,1,f +13759,973pr1156c01,1,1,f +13760,3020,15,1,f +13760,3062b,15,1,t +13760,3062b,15,3,f +13760,32530,72,1,f +13760,3673,71,1,f +13760,3673,71,1,t +13760,88289,308,1,f +13763,3001,0,4,f +13763,3001,15,4,f +13763,3001,14,5,f +13763,3001,1,7,f +13763,3001,4,5,f +13763,3001pr1,14,1,f +13763,3002,4,2,f +13763,3002,1,2,f +13763,3002,14,2,f +13763,3002,15,2,f +13763,3003,15,4,f +13763,3003,0,4,f +13763,3003,14,5,f +13763,3003,4,6,f +13763,3003,1,6,f +13763,3003pe1,14,2,f +13763,4130,14,1,f +13763,4131,4,1,f +13763,4132,14,1,f +13763,4133,4,1,f +13763,4202,2,1,f +13763,4743,4,1,f +13763,4744,14,1,f +13764,11211,19,4,f +13764,11477,321,6,f +13764,11477,27,4,f +13764,13971,71,4,f +13764,15068,31,2,f +13764,15068,2,2,f +13764,15535,72,2,f +13764,15573,15,4,f +13764,18653,272,4,f +13764,23969,26,4,f +13764,2412b,15,4,f +13764,2419,2,1,f +13764,2420,72,4,f +13764,2420,19,2,f +13764,2431,14,2,f +13764,2445,0,1,f +13764,2456,71,2,f +13764,2458,15,4,f +13764,2496,0,2,f +13764,2496,85,4,f +13764,2655,71,6,f +13764,2877,71,4,f +13764,3001,71,2,f +13764,3001,14,3,f +13764,3001,191,2,f +13764,3001,29,2,f +13764,3001,19,2,f +13764,3001,4,2,f +13764,3001,1,3,f +13764,3001,25,4,f +13764,3001,84,4,f +13764,3003,73,4,f +13764,3003,2,4,f +13764,3003,71,4,f +13764,3003,4,4,f +13764,3003,85,4,f +13764,3003,29,4,f +13764,3003,5,4,f +13764,3004,191,3,f +13764,3004,212,4,f +13764,3004,272,4,f +13764,3004,4,8,f +13764,3004,5,4,f +13764,3004,25,4,f +13764,3004,378,4,f +13764,3004,70,4,f +13764,3004,10,4,f +13764,3004,323,4,f +13764,3004,1,4,f +13764,3004,158,4,f +13764,3004,226,2,f +13764,30044,72,2,f +13764,3005,4,4,f +13764,3005,0,4,f +13764,3005,322,8,f +13764,3006,1,1,f +13764,3010,0,4,f +13764,3010,272,7,f +13764,3010,15,4,f +13764,3010,226,4,f +13764,3010,29,2,f +13764,3010,27,4,f +13764,3010,26,2,f +13764,3010,72,4,f +13764,30136,31,4,f +13764,30137,84,4,f +13764,3020,0,3,f +13764,3020,30,2,f +13764,3020,14,4,f +13764,3021,25,2,f +13764,3021,1,4,f +13764,3022,26,4,f +13764,3022,191,4,f +13764,3023,72,4,f +13764,3023,272,9,f +13764,30236,72,2,f +13764,3024,14,3,f +13764,3028,10,1,f +13764,3029,71,1,f +13764,3030,29,1,f +13764,3032,2,2,f +13764,3035,14,1,f +13764,3037,4,2,f +13764,3039,14,4,f +13764,3039,47,2,f +13764,3039,30,4,f +13764,3040b,322,4,f +13764,3040b,84,4,f +13764,30414,71,4,f +13764,30414,14,2,f +13764,30565,322,2,f +13764,3062b,27,4,f +13764,3062b,46,3,f +13764,3065,47,4,f +13764,3065,33,4,f +13764,3065,34,4,f +13764,3065,45,4,f +13764,3065,52,4,f +13764,3069b,0,4,f +13764,3069b,40,4,f +13764,3069b,47,4,f +13764,3176,0,2,f +13764,33243,27,2,f +13764,33291,10,3,f +13764,33291,5,3,f +13764,33291,31,3,f +13764,33291,191,3,f +13764,33303,15,1,f +13764,3460,2,2,f +13764,3659,4,4,f +13764,3660,1,4,f +13764,3660,25,4,f +13764,3660,15,4,f +13764,3665,14,4,f +13764,3666,29,2,f +13764,3700,14,4,f +13764,3710,320,4,f +13764,3710,14,4,f +13764,3710,26,2,f +13764,3747b,378,2,f +13764,3795,19,3,f +13764,3795,15,2,f +13764,3957b,1,2,f +13764,3958,0,1,f +13764,4032a,4,4,f +13764,4081b,26,4,f +13764,4286,212,2,f +13764,4286,28,4,f +13764,4287,4,2,f +13764,44568,71,2,f +13764,44570,71,2,f +13764,44728,15,4,f +13764,4600,0,2,f +13764,4624,15,4,f +13764,4727,10,2,f +13764,4740,72,4,f +13764,48336,14,4,f +13764,4865b,14,4,f +13764,50950,31,4,f +13764,50950,29,4,f +13764,50950,0,4,f +13764,54200,322,3,f +13764,54200,272,6,f +13764,54200,47,3,f +13764,59900,297,4,f +13764,59900,72,4,f +13764,60032,15,4,f +13764,60470a,71,4,f +13764,60474,191,1,f +13764,60474,0,2,f +13764,60479,0,1,f +13764,60481,19,6,f +13764,60481,15,4,f +13764,60594,70,2,f +13764,60599,70,1,f +13764,60608,14,4,f +13764,60623,73,1,f +13764,6091,26,2,f +13764,61254,0,4,f +13764,6141,36,3,f +13764,6141,33,3,f +13764,6141,72,3,f +13764,6141,297,3,f +13764,6215,2,2,f +13764,85080,14,4,f +13764,85984,25,4,f +13764,87087,29,4,f +13764,87087,19,4,f +13764,87087,85,4,f +13764,87087,15,4,f +13764,87414,0,4,f +13764,87620,15,4,f +13764,88072,14,2,f +13764,94161,70,2,f +13764,96874,25,1,t +13764,98138pr0008,15,2,f +13764,98138pr0026,15,2,f +13764,98138pr0027,15,2,f +13765,29bc01,4,16,f +13765,3001a,0,5,f +13765,3002a,0,1,f +13765,3003,0,2,f +13765,3004,14,24,f +13765,3004,1,4,f +13765,3004,4,5,f +13765,3004,0,9,f +13765,3005,0,3,f +13765,3005,47,2,f +13765,3005,14,16,f +13765,3006,14,4,f +13765,3008,4,2,f +13765,3008,0,4,f +13765,3009,4,2,f +13765,3009,0,1,f +13765,3010,0,1,f +13765,3020,14,16,f +13765,3020,0,3,f +13765,3020,7,12,f +13765,3020,4,10,f +13765,3021,0,4,f +13765,3021,14,1,f +13765,3021,7,16,f +13765,3022,7,8,f +13765,3022,4,11,f +13765,3022,0,1,f +13765,3022,14,8,f +13765,3023,0,11,f +13765,3023,14,1,f +13765,3023,47,8,f +13765,3024,0,4,f +13765,3024,14,1,f +13765,3027,7,2,f +13765,3034,15,22,f +13765,3036,7,4,f +13765,3037,4,2,f +13765,3037,0,2,f +13765,3038,0,2,f +13765,3038,4,4,f +13765,3039,0,5,f +13765,3040a,0,2,f +13765,3045,0,2,f +13765,3058b,7,1,f +13765,3062a,14,1,f +13765,3062a,4,16,f +13765,3069a,0,1,f +13765,3081bc01,4,3,f +13765,3185,4,4,f +13765,3218,15,3,f +13765,3228a,1,8,f +13765,3229a,1,16,f +13765,3230a,1,16,f +13765,32bc01,4,2,f +13765,3358,4,8,f +13765,3359,4,8,f +13765,33bc01,4,2,f +13765,458,7,4,f +13765,468c01,0,1,f +13765,7049b,15,6,f +13765,737ac01,4,4,f +13765,737ac02,4,2,f +13765,813a,7,1,f +13765,815c01,15,1,f +13765,815c02,15,1,f +13765,996bc01,1,4,f +13765,bb97,0,1,f +13765,trainsig2,1,2,f +13765,wheel1a,4,12,f +13765,wheel1b,4,4,f +13765,x466,15,1,f +13765,x489,1,2,f +13765,x579c02,0,1,f +13765,x877c01,7,1,f +13765,x878cx1,1,1,f +13766,3679,7,20,f +13766,3680,1,20,f +13766,3937,1,12,f +13766,3938,1,12,f +13767,3020,7,2,f +13767,3024,14,2,f +13767,3032,7,1,f +13767,3039,7,1,f +13767,3039p23,7,1,f +13767,3039p34,7,1,f +13767,3062a,36,2,f +13767,3298p90,7,1,f +13767,3612,7,8,f +13767,3613,7,1,f +13767,3626apr0001,14,1,f +13767,3679,7,1,f +13767,3680,7,1,f +13767,3702,7,2,f +13767,3707,0,3,f +13767,3713,7,6,f +13767,3829c01,7,2,f +13767,3832,7,2,f +13767,3838,14,1,f +13767,3839b,0,2,f +13767,3839b,7,2,f +13767,3842a,14,1,f +13767,3940b,0,3,f +13767,3956,7,1,f +13767,3957a,0,1,f +13767,3957a,7,2,f +13767,3959,0,1,f +13767,4006,0,1,f +13767,4081a,7,4,f +13767,4089,7,1,f +13767,4175,7,4,f +13767,4220,7,1,f +13767,4221,7,2,f +13767,4285a,7,1,f +13767,4288,0,12,f +13767,4360,0,1,f +13767,792c02,7,2,f +13767,970c00,14,1,f +13767,973p90c04,14,1,f +13769,23306,383,1,f +13769,2357,72,16,f +13769,2412b,1,81,f +13769,2412b,0,4,f +13769,2419,1,12,f +13769,2420,71,4,f +13769,2431,1,13,f +13769,2445,0,4,f +13769,2555,0,8,f +13769,2577,0,2,f +13769,30000,72,12,f +13769,3001,0,8,f +13769,3002,71,8,f +13769,3003,1,16,f +13769,3004,19,12,f +13769,3007,1,1,f +13769,3010,71,2,f +13769,3020,1,33,f +13769,3021,72,16,f +13769,3022,1,16,f +13769,3023,1,14,f +13769,3028,0,4,f +13769,30283,71,4,f +13769,3029,0,14,f +13769,3031,0,4,f +13769,3032,72,3,f +13769,3035,0,8,f +13769,30355,0,8,f +13769,30356,0,8,f +13769,3036,0,2,f +13769,30363,1,2,f +13769,30364,72,8,f +13769,30365,71,12,f +13769,30366,40,1,f +13769,30366ps1,40,3,f +13769,30367b,0,1,f +13769,30368,0,1,f +13769,30373,72,8,f +13769,30374,36,1,f +13769,3039,71,4,f +13769,30408pr0001,0,2,f +13769,3040b,1,10,f +13769,3044b,0,6,f +13769,3046a,72,8,f +13769,3048c,1,2,f +13769,3049b,71,6,f +13769,30503,0,8,f +13769,30541,0,2,f +13769,30552,71,2,f +13769,30553,0,4,f +13769,30565,72,2,f +13769,3069bpr0086,71,2,f +13769,32062,4,2,f +13769,3623,0,6,f +13769,3626b,70,2,f +13769,3626bps7,71,1,f +13769,3660,0,8,f +13769,3666,0,1,f +13769,3701,0,12,f +13769,3710,72,15,f +13769,3747b,71,26,f +13769,3794a,2,4,f +13769,3795,72,4,f +13769,3832,71,4,f +13769,3937,72,2,f +13769,3938,0,2,f +13769,3958,71,1,f +13769,3960,71,3,f +13769,3960ps2,72,4,f +13769,4150ps5,71,8,f +13769,4162,1,8,f +13769,4274,71,4,f +13769,4285b,1,2,f +13769,4286,0,2,f +13769,43337,47,1,f +13769,43722,0,8,f +13769,43723,0,8,f +13769,44302a,71,2,f +13769,44567a,71,2,f +13769,4477,1,8,f +13769,4740,33,3,f +13769,4740,36,1,f +13769,48336,19,4,f +13769,4864b,47,1,f +13769,4871,71,4,f +13769,50231,0,1,f +13769,6141,36,20,f +13769,6141,42,5,f +13769,6179,0,3,f +13769,6232,71,2,f +13769,6249,72,4,f +13769,6636,1,46,f +13769,75c06,71,1,f +13769,76385,0,4,f +13769,970c00,0,3,f +13769,973pr1148c01,0,2,f +13769,973ps7c01,0,1,f +13771,2460,15,1,f +13771,3020,15,1,f +13771,3021,15,1,f +13771,3039,47,1,f +13771,3623,15,1,f +13771,3660,15,1,f +13771,3710,0,2,f +13771,6041,0,1,f +13771,6141,33,1,f +13772,33121,179,1,f +13772,3626cpr2154,73,1,f +13772,64648,179,1,f +13772,88646,0,1,f +13772,970c00pr1218,212,1,f +13772,973pr3679c01,212,1,f +13774,2437,33,1,f +13774,2610,14,1,f +13774,3004,4,1,f +13774,3022,4,1,f +13774,3024,4,2,f +13774,3039,14,1,f +13774,3626bp02,14,1,f +13774,3666,4,2,f +13774,3666,0,2,f +13774,3710,0,1,f +13774,3829c01,14,1,f +13774,4854,0,1,f +13774,4855,0,1,f +13774,4859,0,1,f +13774,4859,4,1,f +13774,4871,0,1,f +13774,6093,4,1,f +13774,970c00,15,1,f +13774,973px18c01,15,1,f +13776,2412b,4,2,f +13776,2420,0,2,f +13776,2450,0,2,f +13776,2780,0,1,f +13776,2780,0,1,t +13776,3020,71,1,f +13776,3024,0,2,f +13776,3031,0,1,f +13776,3034,0,1,f +13776,3623,27,2,f +13776,3666,71,1,f +13776,3700,14,1,f +13776,3703,0,2,f +13776,3707,0,2,f +13776,3710,4,1,f +13776,3713,71,1,t +13776,3713,71,4,f +13776,4070,4,2,f +13776,4162,4,2,f +13776,41669,4,2,f +13776,43093,1,2,f +13776,43712,4,1,f +13776,44728,0,2,f +13776,47753,0,1,f +13776,47759,0,1,f +13776,4865a,4,2,f +13776,50950,27,2,f +13776,50967,4,2,f +13776,54200,4,1,t +13776,54200,4,2,f +13776,54200,27,1,t +13776,54200,27,2,f +13776,54383,0,1,f +13776,54384,0,1,f +13776,55982,0,4,f +13776,58090,0,4,f +13776,61678,4,2,f +13776,62701,135,4,f +13776,87941,72,1,f +13776,87943,4,1,f +13776,87944,72,1,f +13776,88496,72,1,f +13777,3001a,15,1,f +13777,3002a,15,2,f +13777,3004,47,2,f +13777,3010,47,4,f +13777,3010pb036e,15,1,f +13777,3020,0,4,f +13777,3020,15,4,f +13777,3023,15,4,f +13777,3030,15,1,f +13777,3032,15,1,f +13777,3032,0,1,f +13777,3037,47,2,f +13777,3137c01,0,3,f +13777,3139,0,6,f +13777,3183b,15,1,f +13777,3184,15,1,f +13779,2419,72,4,f +13779,2450,72,1,f +13779,2555,71,1,f +13779,3002,72,2,f +13779,3004,70,1,f +13779,3005,72,1,f +13779,3010,19,2,f +13779,3020,19,2,f +13779,3021,19,2,f +13779,3022,70,2,f +13779,3023,72,1,f +13779,3023,70,1,f +13779,3023,19,4,f +13779,3024,71,1,f +13779,3024,19,4,f +13779,3024,72,1,f +13779,30374,71,1,f +13779,30414,19,1,f +13779,3062b,19,2,f +13779,3069b,19,2,f +13779,3069b,72,2,f +13779,3070b,72,1,f +13779,3623,19,2,f +13779,3623,70,2,f +13779,3665,72,1,f +13779,3794b,19,3,f +13779,3794b,72,4,f +13779,3941,72,3,f +13779,3957a,71,1,f +13779,4589,71,1,f +13779,47905,19,2,f +13779,6019,19,2,f +13779,6091,19,2,f +13779,6141,19,7,f +13779,6141,70,6,f +13779,6541,19,2,f +13779,73983,19,2,f +13780,3941,15,10,f +13783,3626bpr0098,14,1,f +13783,6093,4,1,f +13783,6093,4,1,t +13783,970c00,15,1,f +13783,973px78ac01,4,1,f +13785,2397,1,1,f +13785,2412b,7,1,f +13785,2432,15,1,f +13785,2484c01,4,1,f +13785,2555,15,2,f +13785,2555,0,2,f +13785,2610,14,1,f +13785,2926,4,1,f +13785,3021,15,2,f +13785,3023,4,1,f +13785,3068bp0b,15,1,f +13785,3626bp04,14,1,f +13785,3641,0,2,f +13785,3829c01,4,1,f +13785,3901,0,1,f +13785,4081b,4,2,f +13785,4083,1,2,f +13785,4095,4,1,f +13785,4623,1,1,f +13785,4624,15,2,f +13785,4732,4,1,f +13785,476,4,1,t +13785,476,4,1,f +13785,6014a,15,2,f +13785,6015,0,2,f +13785,6075,15,1,f +13785,6141,36,2,f +13785,6141,36,1,t +13785,6141,46,2,f +13785,6141,0,1,t +13785,6141,0,2,f +13785,71509,0,1,f +13785,970x026,14,1,f +13785,973c11,0,1,f +13785,x66px7,47,1,f +13786,2412b,4,1,f +13786,2654,4,2,f +13786,30000,72,1,f +13786,3003,72,1,f +13786,3010,0,2,f +13786,3020,0,3,f +13786,3021,72,1,f +13786,3022,4,2,f +13786,3022,72,2,f +13786,3031,4,1,f +13786,30648,0,2,f +13786,3068b,0,2,f +13786,3069b,0,3,f +13786,32016,0,2,f +13786,32062,4,2,f +13786,32064b,0,4,f +13786,32271,0,2,f +13786,3705,0,3,f +13786,3710,0,1,f +13786,3710,71,1,f +13786,3713,71,1,t +13786,3713,71,2,f +13786,3737,0,1,f +13786,3747b,0,2,f +13786,3749,19,2,f +13786,3795,0,1,f +13786,3832,0,1,f +13786,3942c,4,2,f +13786,4032a,72,2,f +13786,4085c,4,2,f +13786,42445,71,1,f +13786,43093,1,2,f +13786,44728,0,2,f +13786,45677,0,1,f +13786,47715,72,1,f +13786,50943,71,1,f +13786,50946,0,1,f +13786,50950,0,2,f +13786,55978,0,2,f +13786,55982,71,2,f +13786,56145,71,2,f +13786,61072,135,2,f +13786,6141,36,1,f +13786,6141,182,1,t +13786,6141,34,1,t +13786,6141,36,1,t +13786,6141,34,1,f +13786,6141,182,4,f +13786,61678,0,6,f +13786,88930,0,2,f +13787,2445,15,2,f +13787,2447,40,1,f +13787,2447,40,1,t +13787,2456,15,1,f +13787,2654,71,4,f +13787,2780,0,4,f +13787,2780,0,1,t +13787,3001,15,2,f +13787,3001,71,1,f +13787,3003,15,4,f +13787,3004,15,3,f +13787,3005,15,2,f +13787,3009,15,2,f +13787,3010,15,2,f +13787,3020,71,3,f +13787,3020,15,6,f +13787,3022,71,3,f +13787,3023,0,7,f +13787,3023,15,8,f +13787,3027,0,1,f +13787,3032,0,1,f +13787,3034,0,2,f +13787,30350b,41,2,f +13787,30361c,72,1,f +13787,30367b,72,1,f +13787,3037,15,2,f +13787,30386,14,1,f +13787,30387,14,1,f +13787,3039,15,2,f +13787,3039pr0005,15,1,f +13787,3039pr0013,15,1,f +13787,30553,71,1,f +13787,3069b,40,2,f +13787,3069b,4,4,f +13787,32013,14,1,f +13787,32062,4,1,f +13787,32064b,0,11,f +13787,32324,71,1,f +13787,3460,0,2,f +13787,3460,15,2,f +13787,3623,14,2,f +13787,3626bpr0279,14,1,f +13787,3705,0,4,f +13787,3710,4,8,f +13787,3710,15,4,f +13787,3795,0,1,f +13787,3832,71,2,f +13787,3899,4,1,f +13787,3942c,0,2,f +13787,3957a,0,2,f +13787,4079,1,1,f +13787,4085c,72,4,f +13787,41532,0,1,f +13787,4175,72,2,f +13787,41769,0,1,f +13787,41770,0,1,f +13787,42608,71,2,f +13787,42610,71,4,f +13787,44572,15,6,f +13787,4624,71,2,f +13787,4740,71,1,f +13787,48336,14,2,f +13787,50304,0,1,f +13787,50304,15,1,f +13787,50305,0,1,f +13787,50305,15,1,f +13787,50951,0,4,f +13787,59895,0,2,f +13787,60470a,71,2,f +13787,60478,72,4,f +13787,60479,0,6,f +13787,60479,15,2,f +13787,6112,14,2,f +13787,6141,46,1,f +13787,6141,182,1,t +13787,6141,182,14,f +13787,6141,46,1,t +13787,6141,15,2,f +13787,6141,36,1,t +13787,6141,36,2,f +13787,6141,15,1,t +13787,61483,71,1,f +13787,6233,0,3,f +13787,63864,0,2,f +13787,63868,4,4,f +13787,85984,15,2,f +13787,87611,0,1,f +13787,87612,41,1,f +13787,87613pr0001,15,1,f +13787,87614,15,1,f +13787,87754,15,1,f +13787,87781,15,1,f +13787,89159,82,1,f +13787,92279,15,2,f +13787,92582,4,8,f +13787,92584,15,2,f +13787,92584,0,2,f +13787,970c00,15,1,f +13787,973pr1695c01,15,1,f +13789,2412b,0,1,f +13789,2420,0,2,f +13789,2420,15,2,f +13789,2436,0,1,f +13789,298c02,15,2,f +13789,298c02,15,1,t +13789,3005,15,2,f +13789,3010,15,2,f +13789,3020,15,4,f +13789,3021,0,1,f +13789,3022,72,2,f +13789,3031,0,1,f +13789,3068b,15,1,f +13789,3069b,15,1,f +13789,32028,0,1,f +13789,3710,0,2,f +13789,3710,0,1,t +13789,3788,0,2,f +13789,3795,72,1,f +13789,48336,0,1,f +13789,50944pr0001,0,4,f +13789,50950,0,4,f +13789,50951,0,4,f +13789,54200,40,2,f +13789,6081,0,1,f +13789,6141,33,1,t +13789,6141,36,1,t +13789,6141,36,2,f +13789,6141,33,2,f +13789,6157,0,2,f +13789,6215,0,2,f +13790,3626bpr0325,14,1,f +13790,3626cpr0279,14,1,f +13790,3626cpr0892,14,1,f +13790,3844,71,1,f +13790,3847,179,1,f +13790,3899,45,1,f +13790,4006,0,1,f +13790,59363,70,1,f +13790,86035,1,1,f +13790,970c00,25,1,f +13790,970c00,1,1,f +13790,970c00pr0155,71,1,f +13790,973pb1171c01,25,1,f +13790,973pb1172c01,71,1,f +13790,973pb1173c01,1,1,f +13792,3626bpr0770,14,1,f +13792,41879a,1,1,f +13792,88646,0,1,f +13792,93222,70,1,f +13792,93223,15,1,f +13792,93229,0,1,f +13792,93666,2,1,f +13792,973pr1757c01,4,1,f +13795,30409,70,1,f +13795,30480,297,1,f +13795,3626bpr0378,78,1,f +13795,60849,0,1,f +13795,64808pr0001,484,1,f +13795,74188,72,3,f +13795,970c00,15,2,f +13795,970c00,297,1,f +13795,973pr1332c01,15,1,f +13795,973pr1339c01,297,1,f +13795,973pr2302c01,15,1,f +13797,10169,84,1,f +13797,11211,15,1,f +13797,11289,41,1,f +13797,11476,15,1,f +13797,15397,15,1,f +13797,19000,15,1,f +13797,19220,0,1,f +13797,2421,0,1,f +13797,2432,14,1,f +13797,2446,0,1,f +13797,2447,47,1,f +13797,2447,47,1,t +13797,2479,0,1,f +13797,2654,46,1,f +13797,2877,0,2,f +13797,30165,72,1,f +13797,3022,72,1,f +13797,30237b,15,1,f +13797,30248,72,1,f +13797,3031,1,1,f +13797,3039pr0019,2,1,f +13797,30602,33,2,f +13797,30602,36,2,f +13797,3062b,36,1,f +13797,3062b,33,1,f +13797,3068b,1,1,f +13797,3068bpr0281,71,1,f +13797,3068bpr0282,15,2,f +13797,3069bpr0100,2,3,f +13797,32028,15,1,f +13797,32124,1,1,f +13797,3626cpr0499,14,1,f +13797,3626cpr1578,14,1,f +13797,3666,1,2,f +13797,4079b,70,1,f +13797,41334,72,1,f +13797,4286,1,1,f +13797,4345b,71,1,f +13797,4346,15,1,f +13797,4349,72,1,f +13797,44567a,14,1,f +13797,4488,71,1,f +13797,60470a,71,1,f +13797,60471,0,1,f +13797,61409,72,2,f +13797,61482,71,1,t +13797,61482,71,1,f +13797,85984pr0143,72,1,f +13797,92585,4,1,f +13797,93273,1,2,f +13797,970c00,272,1,f +13797,970c00,71,1,f +13797,973pr2190c01,73,1,f +13797,973pr2502c01,15,1,f +13797,98100,71,1,f +13797,98283,71,1,f +13798,2413,15,2,f +13798,2420,72,2,f +13798,2431,15,1,f +13798,2431,72,1,f +13798,2437,40,1,f +13798,3003,0,1,f +13798,3005,72,1,f +13798,3010,15,2,f +13798,3020,15,3,f +13798,3020,4,1,f +13798,3021,72,4,f +13798,3021,71,1,f +13798,3022,71,1,f +13798,3023,0,5,f +13798,3024,72,2,f +13798,3024,15,1,f +13798,3039pc5,71,1,f +13798,3040b,15,2,f +13798,3068b,4,1,f +13798,3070b,4,1,f +13798,3070b,14,1,f +13798,3070b,14,1,t +13798,3070b,4,1,t +13798,3070b,15,3,f +13798,3070b,15,1,t +13798,3460,71,1,f +13798,3623,72,3,f +13798,3666,72,1,f +13798,3679,7,2,f +13798,3680,15,2,f +13798,3710,72,1,f +13798,3710,15,3,f +13798,3794a,15,1,f +13798,3795,71,2,f +13798,3937,71,1,f +13798,4079,6,3,f +13798,4162,72,1,f +13798,41769,15,4,f +13798,41770,15,4,f +13798,4282,71,1,f +13798,44301a,15,2,f +13798,44302a,15,2,f +13798,4449,73,1,f +13798,4449,0,1,f +13798,44571,15,4,f +13798,4477,72,1,f +13798,4477,15,1,f +13798,44822,15,4,f +13798,4854,71,2,f +13798,4855,71,2,f +13798,4856a,72,2,f +13798,4858,15,1,f +13798,4859,72,1,f +13798,4859,15,1,f +13798,4861,15,1,f +13798,4862,40,12,f +13798,4863,15,6,f +13798,4865a,15,2,f +13798,4865a,4,2,f +13798,4867,15,1,f +13798,4868b,15,2,f +13798,4869,71,2,f +13798,4870c02,71,3,f +13798,4871,71,1,f +13798,6134,0,1,f +13798,6141,36,1,t +13798,6141,47,1,f +13798,6141,15,2,f +13798,6141,15,1,t +13798,6141,34,1,f +13798,6141,34,1,t +13798,6141,36,1,f +13798,6141,47,1,t +13798,6636,15,2,f +13798,73983,72,4,f +13799,3004,4,2,f +13799,3005,4,1,f +13799,3008,4,2,f +13799,3009,4,1,f +13799,3010,4,5,f +13799,3023,2,12,f +13799,3023,15,5,f +13799,3024,15,14,f +13799,3024,2,9,f +13799,3040b,4,4,f +13799,3622,4,6,f +13799,3623,15,1,f +13799,3665,4,5,f +13799,3700,4,1,f +13799,4162,4,1,f +13799,4286,4,3,f +13799,4287,4,2,f +13799,6111,4,2,f +13801,3626bpr0766,15,1,f +13801,3678bpr0002b,4,1,f +13801,88646,0,1,f +13801,93217pr0001,0,1,f +13801,93553,320,1,f +13801,973pr1753c01,4,1,f +13802,2343,297,1,f +13802,2397,72,1,f +13802,2420,2,2,f +13802,2456,1,2,f +13802,2456,15,2,f +13802,3001,1,4,f +13802,3001,14,2,f +13802,3001,4,2,f +13802,3001,2,2,f +13802,3001,73,6,f +13802,3001,29,14,f +13802,3001,15,6,f +13802,3001,27,4,f +13802,3002,29,6,f +13802,3002,1,4,f +13802,3002,15,6,f +13802,3002,27,2,f +13802,3003,27,6,f +13802,3003,14,6,f +13802,3003,5,8,f +13802,3003,4,4,f +13802,3003,73,8,f +13802,3003,2,4,f +13802,3003,29,10,f +13802,3003,15,6,f +13802,3003,25,6,f +13802,3003,70,4,f +13802,3003,1,6,f +13802,3004,4,4,f +13802,3004,1,4,f +13802,3004,14,4,f +13802,3004,73,4,f +13802,3004,25,4,f +13802,3004,2,4,f +13802,3004,29,10,f +13802,3004,27,4,f +13802,3004,15,12,f +13802,30044,15,2,f +13802,30046,297,2,f +13802,3005,73,4,f +13802,3005,27,4,f +13802,3005,5,6,f +13802,3005,25,4,f +13802,3005,29,10,f +13802,3005,4,8,f +13802,3005,14,4,f +13802,3005,15,8,f +13802,3007,14,2,f +13802,3008,15,2,f +13802,3009,15,2,f +13802,3009,14,2,f +13802,3010,73,4,f +13802,3010,15,4,f +13802,3010,29,8,f +13802,3020,15,2,f +13802,3022,15,2,f +13802,3023,27,2,f +13802,3023,15,2,f +13802,3023,0,2,f +13802,3034,15,2,f +13802,3035,2,1,f +13802,3035,29,1,f +13802,3037,1,6,f +13802,3037,26,10,f +13802,3039,26,6,f +13802,3039,1,2,f +13802,3040b,1,2,f +13802,3062b,46,2,f +13802,3069b,15,2,f +13802,33291,5,4,f +13802,33291,5,1,t +13802,33303,15,2,f +13802,3622,15,4,f +13802,3622,14,4,f +13802,3622,1,4,f +13802,3622,4,4,f +13802,3622,27,4,f +13802,3623,15,2,f +13802,3659,5,6,f +13802,3666,15,4,f +13802,3710,15,2,f +13802,3710,0,2,f +13802,3823,47,1,f +13802,3829c01,15,1,f +13802,3852b,191,1,f +13802,3867,10,1,f +13802,3899,45,2,f +13802,4523,1,2,f +13802,4529,0,1,f +13802,4589,25,2,f +13802,4589,2,4,f +13802,4600,71,2,f +13802,4624,15,4,f +13802,4727,10,2,f +13802,4728,4,2,f +13802,4740,45,2,f +13802,60598,14,2,f +13802,60599,15,1,f +13802,60608,15,4,f +13802,60623,14,1,f +13802,6141,4,4,f +13802,6141,4,1,t +13802,6141,27,1,t +13802,6141,25,1,t +13802,6141,27,4,f +13802,6141,25,4,f +13802,75998pr0007,15,1,f +13802,87414,0,4,f +13803,2493b,15,4,f +13803,2494,47,4,f +13803,298c02,15,1,f +13803,30016,5,1,f +13803,3004,5,2,f +13803,3622,15,1,f +13803,3666,13,1,f +13803,3741,2,1,f +13803,3742,5,3,f +13803,3742,5,1,t +13803,3852b,17,1,f +13803,3899,20,1,f +13803,45,383,1,f +13803,4599a,1,1,f +13803,6111,5,2,f +13803,6162,18,2,f +13803,6176,20,1,f +13803,6183,13,1,f +13803,6184,15,1,f +13803,6187,13,1,f +13803,6195,15,1,f +13803,6196,5,1,f +13803,6197b,15,1,f +13803,6203,15,1,f +13803,6255,2,1,f +13803,skirt01,15,1,f +13803,towel2,5,1,f +13804,4093b,0,1,f +13805,2432,4,1,f +13805,3020,15,1,f +13805,3839b,71,2,f +13805,47458,4,1,f +13806,30480,334,1,f +13806,970c00,334,1,f +13806,973px160c03,334,1,f +13807,18822,15,1,f +13807,18824pr0001,288,1,f +13807,3626cpr1542,14,1,f +13807,87994,484,1,f +13807,88646,0,1,f +13807,970c00pr0790,15,1,f +13807,973pr2835c01,27,1,f +13812,53989,148,2,f +13812,90609,72,4,f +13812,90617,0,4,f +13812,90625,0,1,f +13812,90639,179,2,f +13812,90639pr0014,34,1,f +13812,90641,25,3,f +13812,90652,179,1,f +13812,90661,25,2,f +13812,92199,2,1,f +13812,92201,25,1,f +13812,92218,179,2,f +13812,92223,179,1,f +13812,92225,25,1,f +13812,93277,2,1,f +13812,93575,25,2,f +13813,15,0,1,f +13813,17,15,1,f +13813,29,4,4,f +13813,3001a,14,1,f +13813,3002a,14,2,f +13813,3004,15,20,f +13813,3004,0,8,f +13813,3004,47,2,f +13813,3005,0,6,f +13813,3005,15,4,f +13813,3008,0,4,f +13813,3008,15,3,f +13813,3009,15,5,f +13813,3010,15,4,f +13813,3010,0,6,f +13813,3010pb035e,14,1,f +13813,3031,0,1,f +13813,3031,15,1,f +13813,3032,15,2,f +13813,3035,14,1,f +13813,3037,0,7,f +13813,3037,47,2,f +13813,3038,0,4,f +13813,3039,0,7,f +13813,3040a,4,2,f +13813,3040a,1,2,f +13813,3040a,0,2,f +13813,3041,0,1,f +13813,3042,0,4,f +13813,3044a,0,2,f +13813,3046a,0,8,f +13813,3049b,0,2,f +13813,3062a,4,4,f +13813,3081cc01,4,1,f +13813,3087c,4,2,f +13813,3137c01,0,2,f +13813,3185,15,4,f +13813,3186,15,1,f +13813,3187,15,1,f +13813,32bc01,4,1,f +13813,3471,2,1,f +13813,3497,2,1,f +13813,3625,4,1,f +13813,3626a,14,1,f +13813,3641,0,4,f +13813,3659,0,2,f +13813,453cc01,4,1,f +13816,10247,0,1,f +13816,11090,0,2,f +13816,11476,71,1,f +13816,11477,15,1,f +13816,15573,1,2,f +13816,15573,0,1,f +13816,18868b01,46,1,f +13816,19981pr0058,46,1,f +13816,2450,0,2,f +13816,26047,0,5,f +13816,2780,0,1,t +13816,2780,0,1,f +13816,28271,72,1,f +13816,3021,0,1,f +13816,30553,0,1,f +13816,3623,0,1,f +13816,3626cpr2040,78,1,f +13816,3941,46,1,f +13816,4032a,71,1,f +13816,4032a,2,1,f +13816,41769,1,1,f +13816,41770,1,1,f +13816,41854,27,2,f +13816,44567b,0,1,f +13816,47458,0,1,f +13816,49668,1,2,f +13816,53451,0,2,f +13816,53451,0,1,t +13816,55236,27,2,f +13816,60470a,0,1,f +13816,60897,15,1,f +13816,61252,0,2,f +13816,6141,52,2,f +13816,6141,52,1,t +13816,6141,46,2,f +13816,6141,46,1,t +13816,87994,70,1,t +13816,87994,0,1,t +13816,87994,0,1,f +13816,87994,70,1,f +13816,90194,1,1,f +13816,970c00pr1138,0,1,f +13816,973pr3552c01,71,1,f +13817,3034,7,2,f +13817,3034,8,1,f +13817,3245bp01,0,1,f +13817,3795,8,1,f +13817,4707c01,7,1,f +13817,70026,7,1,f +13817,73696,7,1,f +13817,766c01,7,1,f +13817,767,8,3,f +13818,122c01,7,2,f +13818,2342,7,1,f +13818,298c02,0,2,f +13818,3062b,0,1,f +13818,3626apr0001,14,1,f +13818,3641,0,4,f +13818,3700,7,1,f +13818,3704,0,1,f +13818,3795,7,1,f +13818,3838,14,1,f +13818,3842b,14,1,f +13818,3937,7,1,f +13818,3938,7,1,f +13818,4588,0,1,f +13818,4588,15,1,f +13818,4589,15,1,f +13818,4733,0,1,f +13818,4735,0,2,f +13818,970c00,14,1,f +13818,973p90c04,14,1,f +13819,12651,14,1,f +13819,13355,0,1,f +13819,14094,14,1,f +13819,15319,4,1,f +13819,15454pr0001,321,1,f +13819,15957,322,1,f +13819,3011,25,1,f +13819,3437,14,1,f +13819,3437,25,1,f +13819,47202bpr0007,25,1,f +13819,51269,71,1,f +13819,61649,4,1,f +13819,6474,14,2,f +13819,76371,4,1,f +13819,90265,15,1,f +13820,2412b,25,5,f +13820,2419,0,2,f +13820,2420,15,2,f +13820,2431,4,2,f +13820,2432,15,1,f +13820,2432,4,2,f +13820,2446,15,2,f +13820,2447,82,1,t +13820,2540,72,1,f +13820,2540,25,2,f +13820,2714a,0,2,f +13820,2780,0,6,f +13820,2780,0,2,t +13820,2817,4,4,f +13820,3001,4,2,f +13820,30153,42,4,f +13820,30162,72,1,f +13820,3020,0,5,f +13820,3021,15,2,f +13820,3022,4,2,f +13820,3022,25,6,f +13820,30228,72,1,f +13820,3023,27,5,f +13820,3023,0,3,f +13820,30237a,0,4,f +13820,3031,27,4,f +13820,3035,0,2,f +13820,30350b,0,1,f +13820,30359b,0,6,f +13820,30364,0,4,f +13820,30365,72,4,f +13820,30383,72,2,f +13820,3039,0,2,f +13820,30414,15,2,f +13820,3045,15,2,f +13820,3048b,15,2,f +13820,30565,27,2,f +13820,3062b,36,14,f +13820,30647,0,2,f +13820,3068b,0,1,f +13820,3068b,15,2,f +13820,3069b,0,5,f +13820,32000,72,1,f +13820,32014,0,1,f +13820,32054,4,2,f +13820,32316,15,4,f +13820,3245b,15,2,f +13820,32530,0,2,f +13820,3626bpr0458,14,1,f +13820,3626cpr0500,14,1,f +13820,3647,72,1,t +13820,3647,72,1,f +13820,3678b,15,2,f +13820,3679,71,2,f +13820,3680,0,2,f +13820,3700,15,1,f +13820,3701,72,4,f +13820,3710,27,4,f +13820,3710,25,1,f +13820,3747b,0,4,f +13820,3794a,4,1,f +13820,3794a,15,3,f +13820,3795,0,2,f +13820,3795,4,2,f +13820,3832,0,2,f +13820,3839b,0,1,f +13820,3841,72,1,f +13820,3894,0,2,f +13820,3959,71,1,f +13820,40340,0,1,f +13820,40378,27,2,f +13820,40379,27,2,f +13820,4081b,15,2,f +13820,4150,0,4,f +13820,42022,0,2,f +13820,42060,0,3,f +13820,42061,0,3,f +13820,4274,1,16,f +13820,4274,1,3,t +13820,43093,1,2,f +13820,4349,72,2,f +13820,43722,0,2,f +13820,43723,0,2,f +13820,43898,15,1,f +13820,44302a,0,2,f +13820,44568,15,1,f +13820,44676,15,2,f +13820,4479,0,1,f +13820,4490,0,4,f +13820,45301,0,2,f +13820,4589,33,5,f +13820,4590,72,2,f +13820,4716,71,1,f +13820,4733,15,1,f +13820,47455,0,2,f +13820,47457,15,4,f +13820,48169,72,2,f +13820,48171,72,2,f +13820,4871,15,1,f +13820,48729a,0,4,f +13820,48729a,0,2,t +13820,50745,0,2,f +13820,50747,182,1,f +13820,50950,0,1,f +13820,50950,15,2,f +13820,52107,0,2,f +13820,54200,27,11,f +13820,54200,27,2,t +13820,57539,25,1,f +13820,57539,0,2,f +13820,58844pat0001,34,1,f +13820,58845,34,1,f +13820,58846,0,2,f +13820,59443,0,1,f +13820,6019,0,1,f +13820,60470a,71,1,f +13820,60479,4,2,f +13820,6091,15,4,f +13820,6117,72,1,f +13820,61185c01,72,1,f +13820,6141,25,3,f +13820,6141,27,9,f +13820,6141,33,1,t +13820,6141,25,1,t +13820,6141,27,2,t +13820,6141,33,1,f +13820,61680,71,4,f +13820,62723pat0001,34,1,f +13820,62724,34,4,f +13820,6536,0,2,f +13820,6541,15,4,f +13820,6558,1,2,f +13820,6564,0,1,f +13820,6565,0,1,f +13820,73983,15,2,f +13820,970x194,15,2,f +13820,973pr1317c01,15,2,f +13821,2458,4,1,f +13821,2489,6,1,f +13821,2570,8,2,f +13821,2586p4g,7,1,f +13821,2743,0,2,f +13821,3001,8,1,f +13821,3004,8,1,f +13821,3004,6,2,f +13821,30099,0,2,f +13821,3010,0,1,f +13821,30275,8,1,f +13821,3032,8,2,f +13821,3039,8,1,f +13821,3062b,4,3,f +13821,3623,0,1,f +13821,3626bpx72,14,1,f +13821,3749,7,1,t +13821,3749,7,4,f +13821,3794a,4,1,f +13821,3941,7,4,f +13821,4032a,8,4,f +13821,4070,4,2,f +13821,4497,6,1,f +13821,59,383,1,f +13821,6019,7,1,f +13821,6122,0,1,f +13821,6123,8,1,f +13821,6125,4,1,f +13821,6222,6,4,f +13821,6541,0,4,f +13821,87695,15,2,f +13821,87696,15,1,t +13821,970c00,0,1,f +13821,973px119c01,0,1,f +13822,4266,7,2,f +13822,4267,0,2,f +13823,23230,25,1,f +13823,3011,15,1,f +13823,31044,15,3,f +13823,31169,5,1,f +13823,3437,15,1,f +13823,3437,191,3,f +13823,4066,15,4,f +13823,4066b,114,10,f +13823,42001,297,1,f +13823,42077,117,1,f +13823,45124,120,1,f +13823,4672,29,1,f +13823,47555,379,1,f +13823,48036,297,1,f +13823,48647,297,1,f +13823,51708,135,1,f +13823,51725,29,1,f +13823,52024,29,1,f +13823,52025,26,1,f +13823,52716,5,1,f +13823,52861,212,1,f +13823,57887,297,1,f +13823,57892,15,1,f +13823,61896,73,1,f +13823,6490,29,1,f +13823,6510,45,2,f +13823,6510,57,1,f +13823,76087,15,1,f +13824,3176,15,1,f +13824,3626a,14,1,f +13824,3795,14,1,f +13824,4485,4,1,f +13824,87079,15,1,f +13824,970c00,1,1,f +13824,973c20,15,1,f +13830,2420,0,4,f +13830,2536,7,1,f +13830,2717,1,1,f +13830,2730,7,2,f +13830,2730,0,4,f +13830,2736,7,1,f +13830,2738,0,1,f +13830,2780,0,6,f +13830,2815,0,2,t +13830,2825,0,2,f +13830,2825,7,8,f +13830,2853,7,2,f +13830,2906,0,1,f +13830,2907,7,1,f +13830,2908,7,1,f +13830,2952,0,1,f +13830,3004,0,2,f +13830,3020,0,2,f +13830,3022,0,2,f +13830,3023,7,2,f +13830,3045,0,2,f +13830,3062b,0,2,f +13830,3068b,0,1,f +13830,3069b,14,2,f +13830,3460,14,2,f +13830,3460,0,4,f +13830,3647,7,1,f +13830,3648a,7,2,f +13830,3651,7,1,f +13830,3660,0,2,f +13830,3665,0,2,f +13830,3666,0,7,f +13830,3666,14,1,f +13830,3673,7,3,f +13830,3700,0,7,f +13830,3700,7,4,f +13830,3701,0,4,f +13830,3702,0,2,f +13830,3705,0,6,f +13830,3706,0,5,f +13830,3707,0,5,f +13830,3708,0,5,f +13830,3709,0,4,f +13830,3710,7,2,f +13830,3710,0,4,f +13830,3713,7,16,f +13830,3737,0,9,f +13830,3749,7,6,f +13830,3795,0,3,f +13830,3894,0,2,f +13830,3941,7,1,f +13830,4032a,14,1,f +13830,4032a,7,1,f +13830,4185,7,2,f +13830,424,14,1,f +13830,4261,7,1,f +13830,4262,7,2,f +13830,4265b,7,38,f +13830,4273b,7,19,f +13830,4274,7,3,f +13830,4282,0,2,f +13830,4519,0,5,f +13830,6536,7,8,f +13830,6538a,7,9,f +13830,6541,0,2,f +13830,6553,7,5,f +13830,6575,7,4,f +13830,6587,8,2,f +13830,6589,7,6,f +13830,6643,8,2,f +13830,6644,0,2,f +13830,75c07,8,1,f +13830,75c08,8,1,f +13830,75c18,8,1,f +13830,75c20,8,2,f +13830,flex08c11l,7,1,f +13830,flex08c12l,7,1,f +13831,11153,72,4,f +13831,11291,2,1,f +13831,11477,2,4,f +13831,14682,71,2,f +13831,15619,2,1,f +13831,15830,0,1,f +13831,16052,9999,1,t +13831,2412b,36,2,f +13831,2780,0,9,f +13831,3003,71,1,f +13831,30031,72,2,f +13831,3004,72,1,f +13831,30173a,297,2,f +13831,30173a,179,1,f +13831,3021,2,1,f +13831,3021,0,1,f +13831,3022,0,1,f +13831,3022,2,1,f +13831,3023,36,4,f +13831,3023,2,1,f +13831,3023,72,1,f +13831,3034,72,1,f +13831,30374,297,2,f +13831,30377,71,1,f +13831,30414,72,2,f +13831,30552,0,2,f +13831,30553,0,2,f +13831,3062b,4,1,f +13831,32013,0,4,f +13831,32059,85,2,f +13831,32123b,71,4,f +13831,32192,0,2,f +13831,32278,0,2,f +13831,32449,0,4,f +13831,3626cpr1279,14,1,f +13831,3626cpr1366,14,1,f +13831,3666,72,2,f +13831,3673,71,4,f +13831,3701,0,2,f +13831,3705,0,2,f +13831,3710,0,1,f +13831,3749,19,2,f +13831,3794b,2,2,f +13831,3795,0,1,f +13831,3894,71,2,f +13831,3958,0,1,f +13831,4070,4,1,f +13831,4081b,71,2,f +13831,41530,179,2,f +13831,41862,71,1,f +13831,4274,71,4,f +13831,4274,1,2,f +13831,43093,1,4,f +13831,4519,71,4,f +13831,4697b,71,1,f +13831,4740,2,1,f +13831,48729b,72,2,f +13831,52501,72,2,f +13831,53451,179,6,f +13831,53454,36,1,f +13831,53989,0,7,f +13831,53992,0,1,f +13831,55981,71,2,f +13831,59895,0,2,f +13831,59900,36,2,f +13831,59900,297,2,f +13831,59900,2,2,f +13831,60470a,2,2,f +13831,6117,72,1,f +13831,61183,19,1,f +13831,61252,0,2,f +13831,6141,36,8,f +13831,6141,70,2,f +13831,6141,71,2,f +13831,6141,297,2,f +13831,62462,71,2,f +13831,64567,71,1,f +13831,6541,72,2,f +13831,6558,1,2,f +13831,6632,72,2,f +13831,75937,0,1,f +13831,85984,0,1,f +13831,85984,2,1,f +13831,87087,0,2,f +13831,87407,71,4,f +13831,88072,0,3,f +13831,89201,0,2,f +13831,92218,179,2,f +13831,92280,0,1,f +13831,92926,2,1,f +13831,93273,72,2,f +13831,93606,72,2,f +13831,93606,0,2,f +13831,970c00,72,1,f +13831,970c00,2,1,f +13831,973pr2475c01,2,1,f +13831,973pr2575c01,0,1,f +13831,98132,297,1,f +13831,98137,179,4,f +13831,98137,297,2,f +13831,98139,179,2,f +13832,30089b,0,1,f +13832,30162,72,1,f +13832,3626cpr0279,14,1,f +13832,3626cpr0389,14,1,f +13832,3626cpr0892,14,1,f +13832,40233,28,1,f +13832,62696,308,1,f +13832,62810,484,1,f +13832,970c00,25,1,f +13832,970c00,272,1,f +13832,970c00,1,1,f +13832,973c01,15,1,f +13832,973pr0805c01,15,1,f +13832,973pr1479c01,15,1,f +13833,2218c05pb01,15,1,f +13833,2281px1,6,1,f +13833,2284,2,1,f +13833,2334c03pb01,462,1,f +13833,2334c03pb03,14,1,f +13833,3011,10,1,f +13833,31059,2,1,f +13833,31061,484,3,f +13833,31062,14,1,f +13833,31168,2,1,f +13833,31441,4,1,f +13833,3437,10,2,f +13833,3966,2,2,f +13833,4182739,9999,1,f +13833,4199,10,1,f +13833,4199,2,1,f +13833,4555pb103,9999,1,f +13833,4555pb104,9999,1,f +13833,6410,2,1,f +13833,6504,8,1,f +13833,6510,73,1,f +13833,bigcat01c01pb01,462,1,f +13833,dupdoor1,1,1,f +13833,duppack,4,2,f +13833,eleph2c01pb01,7,1,f +13833,elephc01pb01,7,1,f +13833,tigerc01,14,1,f +13835,3001a,15,2,f +13835,3002a,15,2,f +13835,3003,15,3,f +13835,3004,0,2,f +13835,3004,14,2,f +13835,3004,15,1,f +13835,3005,15,3,f +13835,3008,15,12,f +13835,3009,15,5,f +13835,3010,15,5,f +13835,3020,1,6,f +13835,3020,15,4,f +13835,3021,1,2,f +13835,3021,15,6,f +13835,3022,1,6,f +13835,3022,15,16,f +13835,3023,15,30,f +13835,3023,47,24,f +13835,3024,1,4,f +13835,3024,15,79,f +13835,3024,47,80,f +13835,3031,15,1,f +13835,3033,1,1,f +13835,3034,1,2,f +13835,3036,15,3,f +13835,3036,1,3,f +13835,3040a,14,2,f +13835,3040a,0,2,f +13835,3062a,15,5,f +13835,3062a,0,3,f +13835,3069b,4,10,f +13835,3460,15,16,f +13835,3623,14,2,f +13835,3623,0,6,f +13835,3623,15,21,f +13835,3623,1,6,f +13835,3660,15,2,f +13835,3665,15,8,f +13835,3666,1,1,f +13835,3666,15,5,f +13835,3710,15,17,f +13835,3710,47,3,f +13836,2744,2,1,f +13836,2850a,47,1,f +13836,2851,14,1,f +13836,2852,7,1,f +13836,2853,7,2,f +13836,2905,0,2,f +13836,32002,8,4,f +13836,32002,8,1,t +13836,32056,0,2,f +13836,32062,0,2,f +13836,32123b,7,1,t +13836,32123b,7,2,f +13836,32193,0,4,f +13836,3705,0,2,f +13836,6536,2,1,f +13836,6558,0,1,f +13838,45462,42,1,f +13838,45462,45,3,f +13838,45463,42,2,f +13838,45463,118,3,f +13838,45463,41,3,f +13838,45464,45,1,f +13838,45474,45,2,f +13838,46286,41,3,f +13838,46296,42,2,f +13838,clikits040,41,1,f +13838,clikits110,383,1,f +13838,clikits124,45,3,f +13838,clikits125,41,1,f +13838,clikits126,89,1,f +13839,2348b,41,1,f +13839,2349a,15,1,f +13839,2412b,0,1,f +13839,2412b,15,2,f +13839,2419,7,1,f +13839,2420,15,2,f +13839,2422,15,1,f +13839,2431,15,2,f +13839,2431pr0077,15,2,f +13839,2432,14,2,f +13839,2432,0,1,f +13839,2433,0,1,f +13839,2436,15,1,f +13839,2437,41,1,f +13839,2441,0,1,f +13839,2446,15,1,f +13839,2447,41,1,f +13839,2449,15,1,f +13839,2453a,15,3,f +13839,2454a,15,4,f +13839,2486,4,2,f +13839,2493b,0,4,f +13839,2494,47,4,f +13839,2540,15,1,f +13839,2555,15,2,f +13839,2569,4,2,f +13839,2584,4,1,f +13839,2585,0,1,f +13839,2610,14,3,f +13839,2617,7,1,f +13839,2625,4,1,f +13839,2625,0,1,f +13839,2626,0,2,f +13839,2642,7,1,f +13839,2654,0,4,f +13839,298c02,7,2,f +13839,3001,14,1,f +13839,3001,7,1,f +13839,3002,7,4,f +13839,3002,15,2,f +13839,3003,7,2,f +13839,3003,0,1,f +13839,3003,15,1,f +13839,3004,15,3,f +13839,3004,0,7,f +13839,3004,14,1,f +13839,3005,15,6,f +13839,3008,0,2,f +13839,3009,0,2,f +13839,3009,15,1,f +13839,3009p18,15,1,f +13839,3010,7,4,f +13839,3010,0,4,f +13839,3010,15,5,f +13839,3020,7,2,f +13839,3022,0,1,f +13839,3022,15,1,f +13839,3022,7,4,f +13839,3023,0,2,f +13839,3023,15,5,f +13839,3023,7,1,f +13839,3023,4,2,f +13839,3024,15,5,f +13839,3024,36,2,f +13839,3024,15,1,t +13839,3024,46,3,f +13839,3024,46,1,t +13839,3024,0,2,f +13839,3027,15,1,f +13839,3028,4,1,f +13839,3029,7,1,f +13839,3030,15,1,f +13839,3036,7,2,f +13839,3039p23,7,1,f +13839,3040b,15,11,f +13839,3040p32,7,2,f +13839,3069b,15,2,f +13839,3069bp02,7,1,f +13839,3069bpb001,15,3,f +13839,3070b,34,1,f +13839,3070b,34,1,t +13839,3070b,36,2,f +13839,3070b,36,1,t +13839,3297,15,1,f +13839,3460,0,2,f +13839,3464,47,4,f +13839,3622,15,4,f +13839,3622,0,4,f +13839,3623,7,4,f +13839,3623,0,2,f +13839,3623,15,4,f +13839,3624,15,2,f +13839,3626bpr0001,14,4,f +13839,3641,0,6,f +13839,3660,15,2,f +13839,3660,0,4,f +13839,3665,15,2,f +13839,3665,0,4,f +13839,3666,15,2,f +13839,3666,0,3,f +13839,3710,0,3,f +13839,3710,15,4,f +13839,3741,2,1,t +13839,3741,2,2,f +13839,3742,4,6,f +13839,3742,4,2,t +13839,3788,15,2,f +13839,3794a,15,3,f +13839,3794a,7,1,f +13839,3795,7,1,f +13839,3821p02,15,1,f +13839,3822p02,15,1,f +13839,3823,41,2,f +13839,3829c01,7,1,f +13839,3829c01,15,2,f +13839,3901,0,1,f +13839,3937,15,1,f +13839,3938,15,1,f +13839,3939,41,1,f +13839,3958,7,1,f +13839,3962b,0,1,f +13839,4070,0,10,f +13839,4070,1,2,f +13839,4079,7,1,f +13839,4079,1,3,f +13839,4081b,15,3,f +13839,4081b,7,1,f +13839,4085c,15,2,f +13839,4150,15,1,f +13839,4162,8,4,f +13839,4168,15,1,f +13839,4175,1,1,f +13839,4175,15,2,f +13839,4213,15,1,f +13839,4285a,1,1,f +13839,4286,15,2,f +13839,4286,0,2,f +13839,4315,15,2,f +13839,4349,1,1,f +13839,4349,15,1,f +13839,4447,0,2,f +13839,4448,47,2,f +13839,4480c01,15,1,f +13839,4483p01,47,1,f +13839,4589,7,2,f +13839,4596,4,1,f +13839,4596,1,1,f +13839,4599a,7,2,f +13839,4624,15,4,f +13839,4740,8,2,f +13839,47899c01,0,1,f +13839,4854,15,1,f +13839,4855,15,1,f +13839,4859,15,1,f +13839,4859,0,1,f +13839,4865a,41,2,f +13839,4871,15,1,f +13839,4873,15,1,f +13839,6141,33,3,f +13839,6141,46,6,f +13839,6141,33,1,t +13839,6141,36,4,f +13839,6141,0,8,f +13839,6141,15,2,f +13839,970c00,0,4,f +13839,973pb0079c01,0,2,f +13839,973pb0091c01,0,2,f +13839,rb00164,0,1,f +13840,3006,1,1,f +13840,3006,14,2,f +13840,3007,1,2,f +13840,3007,14,1,f +13840,702,1,2,f +13840,702,14,1,f +13841,700ed,14,1,f +13841,700ed,2,1,f +13842,10164pr0001,15,1,f +13842,18646,28,2,f +13842,22885,71,4,f +13842,2423,2,4,f +13842,2431,320,2,f +13842,2653,71,2,f +13842,3003,70,1,f +13842,30044,288,4,f +13842,30046,297,3,f +13842,3005,320,8,f +13842,3009,14,1,f +13842,3010,14,5,f +13842,3020,2,3,f +13842,3022,2,4,f +13842,3022,70,3,f +13842,3024,320,8,f +13842,3024,320,1,t +13842,3024,25,1,t +13842,3024,27,1,t +13842,3024,27,2,f +13842,3024,25,2,f +13842,3035,15,4,f +13842,30562,47,4,f +13842,3062b,2,8,f +13842,3069b,15,1,f +13842,32028,71,4,f +13842,32062,4,1,f +13842,33291,212,1,t +13842,33291,2,1,t +13842,33291,212,2,f +13842,33291,2,4,f +13842,3626cpr1642,14,1,f +13842,3659,19,4,f +13842,3666,320,3,f +13842,3710,320,2,f +13842,3710,71,2,f +13842,3795,2,4,f +13842,3941,14,1,f +13842,3958,71,1,f +13842,3961,47,1,f +13842,4032a,2,2,f +13842,60475b,19,2,f +13842,60478,15,2,f +13842,6141,15,8,f +13842,6141,297,14,f +13842,6141,15,1,t +13842,6141,4,16,f +13842,6141,4,1,t +13842,6141,297,1,t +13842,64644,308,2,f +13842,64647,182,1,t +13842,64647,182,2,f +13842,6636,71,3,f +13842,6636,320,2,f +13842,93223,15,1,t +13842,93223,15,1,f +13842,94161,70,1,f +13842,970c00,4,1,f +13842,973pr2300c01,4,1,f +13842,98138,36,1,t +13842,98138,15,14,f +13842,98138,46,1,t +13842,98138,33,1,t +13842,98138,33,2,f +13842,98138,182,1,t +13842,98138,36,5,f +13842,98138,46,3,f +13842,98138,15,1,t +13842,98138,182,3,f +13842,98283,320,25,f +13845,14210,2,1,f +13845,2335px3,4,3,f +13845,2357,8,1,f +13845,2397,4,1,f +13845,2420,0,4,f +13845,2420,4,2,f +13845,2431,0,2,f +13845,2470,6,2,f +13845,2540,7,1,f +13845,2540,4,2,f +13845,2555,4,2,f +13845,2817,15,1,f +13845,3003,8,2,f +13845,3004,14,2,f +13845,3004,8,2,f +13845,3005,0,4,f +13845,30055,6,3,f +13845,3006,4,1,f +13845,3008,4,3,f +13845,3009,4,3,f +13845,30136,6,9,f +13845,30137,8,3,f +13845,30137,6,6,f +13845,30140,6,3,f +13845,30145,4,4,f +13845,30157,8,1,f +13845,30173a,0,2,f +13845,30173a,7,7,f +13845,30175,7,1,f +13845,30175,0,1,f +13845,30176,2,6,f +13845,30177,0,2,f +13845,3020,14,2,f +13845,3020,0,1,f +13845,3022,14,1,f +13845,30223,0,2,f +13845,30224,7,2,f +13845,3023,7,9,f +13845,3030,0,2,f +13845,3032,0,1,f +13845,3034,4,1,f +13845,3034,7,1,f +13845,3038,0,1,f +13845,3039,2,4,f +13845,3039,0,3,f +13845,3040b,7,2,f +13845,3040b,0,1,f +13845,3043,2,1,f +13845,3062b,4,20,f +13845,3062b,7,4,f +13845,3068b,0,3,f +13845,3069b,0,4,f +13845,3297,2,2,f +13845,3298,2,4,f +13845,3298,0,2,f +13845,3460,4,2,f +13845,3460,0,1,f +13845,3581,0,2,f +13845,3622,14,2,f +13845,3623,0,2,f +13845,3623,4,2,f +13845,3626bpx5,14,2,f +13845,3626bpx6,14,1,f +13845,3626bpx8,14,1,f +13845,3673,7,2,f +13845,3678a,4,4,f +13845,3679,7,1,f +13845,3680,4,1,f +13845,3684,0,2,f +13845,3700,4,8,f +13845,3708,0,1,f +13845,3710,8,1,f +13845,3710,0,2,f +13845,3794a,4,3,f +13845,3794a,0,1,f +13845,3795,4,1,f +13845,3795,0,2,f +13845,3832,7,2,f +13845,3832,0,4,f +13845,3839b,7,1,f +13845,3849,6,3,f +13845,3857,2,1,f +13845,3937,0,2,f +13845,3938,7,2,f +13845,3941,4,1,f +13845,3959,7,2,f +13845,4070,4,3,f +13845,4071,0,1,f +13845,4085c,0,4,f +13845,4085c,4,4,f +13845,4150,0,1,f +13845,4201,0,1,f +13845,4497,6,2,f +13845,4529,0,1,f +13845,4589,46,2,f +13845,4589,0,2,f +13845,4590,0,1,f +13845,4600,0,1,f +13845,4611,8,1,f +13845,4865a,4,2,f +13845,4865a,0,7,f +13845,57503,334,1,f +13845,57504,334,1,f +13845,57505,334,1,f +13845,57506,334,1,f +13845,6082,8,2,f +13845,6083,8,2,f +13845,6112,4,2,f +13845,6141,4,2,f +13845,6231,4,2,f +13845,6636,0,1,f +13845,970c00,0,2,f +13845,970x021,0,1,f +13845,970x023,0,1,f +13845,973px11c01,0,2,f +13845,973px12c01,1,1,f +13845,973px14c01,4,1,f +13845,x65,47,1,f +13845,x66px1,47,2,f +13846,15443,84,1,f +13846,26562,15,1,f +13846,3626cpr1923,78,1,f +13846,88646pr0002,15,1,f +13846,970c00pr1051,0,1,f +13846,973pr3385c01,15,1,f +13847,2339,19,2,f +13847,2357,19,2,f +13847,2412b,71,2,f +13847,2419,72,1,f +13847,2420,0,4,f +13847,2420,19,2,f +13847,2431,71,2,f +13847,2431,72,4,f +13847,2432,71,1,f +13847,2445,0,1,f +13847,2445,320,1,f +13847,2447,40,1,t +13847,2449,320,2,f +13847,2456,19,1,f +13847,2456,0,1,f +13847,2462,0,2,f +13847,2462,19,2,f +13847,2479,0,1,f +13847,2584,0,1,f +13847,2585,0,1,f +13847,2780,0,25,f +13847,2780,0,1,t +13847,3001,19,8,f +13847,3002,19,2,f +13847,3003,19,2,f +13847,30035,0,1,f +13847,3004,320,2,f +13847,3004,19,6,f +13847,3005,19,1,f +13847,3008,320,2,f +13847,3009,19,4,f +13847,3009,71,1,f +13847,30099,19,2,f +13847,3010,71,3,f +13847,3010,320,2,f +13847,3010,19,3,f +13847,30145,15,2,f +13847,3020,0,2,f +13847,3020,19,1,f +13847,3020,71,1,f +13847,3021,71,2,f +13847,3021,0,1,f +13847,3022,19,7,f +13847,3022,72,5,f +13847,30228,0,1,f +13847,30229,72,1,f +13847,3023,19,1,f +13847,3023,320,8,f +13847,3023,72,5,f +13847,3024,71,2,f +13847,3024,71,1,t +13847,3028,72,1,f +13847,30304,72,1,f +13847,30332,0,1,f +13847,3034,72,4,f +13847,3035,0,1,f +13847,30363,19,1,f +13847,30367b,27,1,f +13847,3037,320,3,f +13847,30374,36,2,f +13847,30377,0,1,t +13847,30377,0,2,f +13847,3039,320,1,f +13847,3039,19,3,f +13847,3039,71,2,f +13847,30395,72,1,f +13847,3040b,19,6,f +13847,3040b,320,4,f +13847,30414,19,2,f +13847,30592,72,1,f +13847,3062b,71,12,f +13847,3062b,72,12,f +13847,3062b,0,4,f +13847,3062b,27,13,f +13847,3068b,71,1,f +13847,3068b,19,4,f +13847,3069b,71,2,f +13847,3069b,19,2,f +13847,3069b,15,2,f +13847,32013,72,4,f +13847,32013,0,3,f +13847,32018,72,4,f +13847,32039,0,8,f +13847,32054,0,4,f +13847,32060,71,4,f +13847,32062,4,5,f +13847,32064b,72,1,f +13847,32064b,15,3,f +13847,32074c01,0,1,f +13847,32123b,71,2,f +13847,32123b,71,1,t +13847,32174,72,1,f +13847,32250,0,2,f +13847,32524,0,4,f +13847,32530,72,1,f +13847,32531,0,2,f +13847,32532,0,3,f +13847,3307,19,2,f +13847,3460,71,2,f +13847,3460,0,8,f +13847,3623,71,6,f +13847,3623,0,1,f +13847,3623,19,2,f +13847,3660,19,2,f +13847,3660,0,8,f +13847,3666,15,3,f +13847,3666,19,8,f +13847,3666,320,9,f +13847,3673,71,1,t +13847,3673,71,3,f +13847,3679,71,2,f +13847,3680,0,2,f +13847,3684,19,1,f +13847,3701,1,4,f +13847,3702,0,1,f +13847,3705,0,1,f +13847,3707,0,3,f +13847,3708,0,2,f +13847,3710,72,6,f +13847,3710,320,3,f +13847,3710,19,6,f +13847,3794a,71,2,f +13847,3795,1,1,f +13847,3795,71,1,f +13847,3832,72,2,f +13847,3832,71,1,f +13847,3832,19,5,f +13847,3839b,0,1,f +13847,3941,27,3,f +13847,3958,72,1,f +13847,3960,0,1,f +13847,3962b,0,1,f +13847,4070,0,1,f +13847,4079,71,2,f +13847,4081b,71,2,f +13847,4085c,0,2,f +13847,4150,0,1,f +13847,4162,19,5,f +13847,4162,72,5,f +13847,41747,19,2,f +13847,41747,320,2,f +13847,41748,320,2,f +13847,41748,19,2,f +13847,41751,19,1,f +13847,41751,40,3,f +13847,41751,320,4,f +13847,41764,0,1,f +13847,41765,0,1,f +13847,41767,19,3,f +13847,41768,19,3,f +13847,41769,4,1,f +13847,41769,72,1,f +13847,41770,72,1,f +13847,41770,4,1,f +13847,41770,0,4,f +13847,42021,0,1,f +13847,42022,19,2,f +13847,42022,320,4,f +13847,42023,0,4,f +13847,4215b,19,2,f +13847,4215b,47,2,f +13847,42610,71,4,f +13847,4266,0,4,f +13847,4282,72,2,f +13847,4282,0,9,f +13847,4286,15,2,f +13847,4286,19,3,f +13847,43093,1,2,f +13847,4345b,71,2,f +13847,4346,71,2,f +13847,4349,0,2,f +13847,4360,0,2,f +13847,44294,71,1,f +13847,44358,19,1,f +13847,44359,71,2,f +13847,4445,320,2,f +13847,44728,71,8,f +13847,4477,72,10,f +13847,4477,19,1,f +13847,4519,71,7,f +13847,45301,320,2,f +13847,4589,42,6,f +13847,47397,0,1,f +13847,47398,0,1,f +13847,47759,320,1,f +13847,50923,72,1,f +13847,50950,320,4,f +13847,51011,0,4,f +13847,53451,15,1,t +13847,53451,15,7,f +13847,54200,36,2,f +13847,56823,0,1,f +13847,6070,40,4,f +13847,6111,0,6,f +13847,6141,36,1,t +13847,6141,42,2,f +13847,6141,42,1,t +13847,6141,36,2,f +13847,6538b,0,2,f +13847,6558,0,3,f +13847,6564,320,1,f +13847,6565,320,1,f +13847,6573,72,2,f +13847,6636,71,2,f +13847,73590c02a,0,1,f +13847,73983,72,8,f +13847,76110c05,71,1,f +13847,daptera1,288,1,f +13847,datrex1,4,1,f +13848,11476,0,1,f +13848,11477,323,4,f +13848,14704,71,4,f +13848,15068,4,1,f +13848,15068,15,1,f +13848,15208,15,2,f +13848,15209,15,1,f +13848,15712,0,1,f +13848,2540,72,1,f +13848,2736,71,4,f +13848,3004,15,3,f +13848,3020,15,1,f +13848,3023,15,4,f +13848,3031,322,2,f +13848,30367c,47,1,f +13848,30374,71,1,f +13848,32064a,71,2,f +13848,33085,72,2,f +13848,3626cpr1001,15,2,f +13848,3710,15,2,f +13848,3821,15,1,f +13848,3941,42,1,f +13848,4032a,0,3,f +13848,41854,15,1,f +13848,4522,0,1,f +13848,4740,71,1,f +13848,59900,71,1,f +13848,60478,71,1,f +13848,6141,71,2,f +13848,6141,71,1,t +13848,63868,15,1,f +13848,85984,323,2,f +13848,87087,15,5,f +13848,98138,41,2,f +13848,98138,41,1,t +13848,99207,15,1,f +13849,3034a,15,1,f +13849,3036a,15,3,f +13852,10019stk01,9999,1,t +13852,2356,15,1,f +13852,2357,8,2,f +13852,2357,15,2,f +13852,2362b,15,4,f +13852,2412b,320,18,f +13852,2412b,4,8,f +13852,2412b,8,34,f +13852,2412b,0,2,f +13852,2412b,7,22,f +13852,2413,15,18,f +13852,2418b,15,4,f +13852,2420,0,2,f +13852,2431,15,3,f +13852,2431,0,1,f +13852,2431,8,20,f +13852,2431,7,2,f +13852,2432,7,1,f +13852,2434,7,4,f +13852,2434,1,4,f +13852,2440,7,1,f +13852,2445,8,8,f +13852,2452,15,1,f +13852,2456,0,12,f +13852,2456,15,3,f +13852,2456,7,3,f +13852,2458,15,8,f +13852,2458,8,4,f +13852,2476b,4,31,f +13852,2515,7,11,f +13852,2540,8,1,f +13852,2540,7,8,f +13852,2555,7,28,f +13852,2555,0,12,f +13852,2555,15,4,f +13852,2577,15,10,f +13852,2577,8,2,f +13852,2625,15,2,f +13852,2625,7,2,f +13852,2653,0,2,f +13852,2654,15,4,f +13852,2680b,0,2,f +13852,2730,15,4,f +13852,2730,7,2,f +13852,2780,0,4,f +13852,2780,0,1,t +13852,2877,8,18,f +13852,2877,15,21,f +13852,2903,320,11,f +13852,298c03,0,1,t +13852,298c03,0,8,f +13852,3001,4,24,f +13852,3001,15,6,f +13852,3001,7,2,f +13852,3002,15,13,f +13852,3003,15,12,f +13852,3004,14,2,f +13852,3004,7,8,f +13852,3005,4,4,f +13852,3005,15,1,f +13852,3006,1,1,f +13852,3006,15,6,f +13852,3006,7,7,f +13852,3007,19,1,f +13852,3007,15,1,f +13852,3007,7,3,f +13852,3008,7,2,f +13852,3008,15,3,f +13852,3009,15,14,f +13852,3009,4,4,f +13852,3010,14,1,f +13852,3010,4,2,f +13852,3010,7,2,f +13852,3010,15,7,f +13852,3010,19,4,f +13852,30145,15,6,f +13852,30162,8,9,f +13852,30183,15,1,f +13852,3020,15,12,f +13852,3020,2,1,f +13852,3020,7,6,f +13852,3021,15,2,f +13852,3021,7,1,f +13852,3022,1,4,f +13852,3022,19,1,f +13852,3022,7,4,f +13852,3022,8,2,f +13852,3022,15,2,f +13852,3022,0,1,f +13852,3023,1,4,f +13852,3023,7,28,f +13852,3023,15,2,f +13852,3023,320,14,f +13852,30236,8,4,f +13852,30237a,15,8,f +13852,3027,15,2,f +13852,30283,7,1,f +13852,30283,15,6,f +13852,3030,15,4,f +13852,3030,7,1,f +13852,3031,8,13,f +13852,3032,7,5,f +13852,3033,15,7,f +13852,3034,15,1,f +13852,3034,4,1,f +13852,3035,15,6,f +13852,3035,7,1,f +13852,3035,0,4,f +13852,30357,15,12,f +13852,3036,7,1,f +13852,30363,15,6,f +13852,30364,7,8,f +13852,30365,0,8,f +13852,30367a,15,8,f +13852,3037,15,4,f +13852,30374,0,4,f +13852,30374,8,22,f +13852,30386,15,16,f +13852,3039,320,8,f +13852,3039,19,2,f +13852,3039,15,15,f +13852,3040b,19,2,f +13852,3040b,7,2,f +13852,3040b,15,12,f +13852,30414,15,6,f +13852,30414,7,30,f +13852,30504,15,4,f +13852,30526,8,5,f +13852,30562,15,52,f +13852,30565,7,52,f +13852,3062b,19,2,f +13852,3062b,15,16,f +13852,3063b,15,22,f +13852,3063b,4,8,f +13852,3068b,7,4,f +13852,3068b,15,1,f +13852,3069b,15,2,f +13852,3069b,0,1,f +13852,3070b,7,6,f +13852,32000,7,5,f +13852,32001,7,2,f +13852,32018,0,3,f +13852,32083,15,3,f +13852,3245b,15,2,f +13852,32474,0,2,f +13852,3297,7,4,f +13852,3298,15,4,f +13852,33211,8,11,f +13852,3460,8,1,f +13852,3622,15,8,f +13852,3622,4,2,f +13852,3622,19,1,f +13852,3623,320,4,f +13852,3660,15,28,f +13852,3660,0,4,f +13852,3665,4,8,f +13852,3666,7,22,f +13852,3666,15,2,f +13852,3678a,15,16,f +13852,3679,7,2,f +13852,3680,0,2,f +13852,3700,4,2,f +13852,3700,7,4,f +13852,3701,4,1,f +13852,3701,7,2,f +13852,3702,15,2,f +13852,3703,15,2,f +13852,3708,0,11,f +13852,3710,7,7,f +13852,3710,8,1,f +13852,3710,15,16,f +13852,3710,320,8,f +13852,3738,7,11,f +13852,3747a,15,19,f +13852,3794a,8,4,f +13852,3794a,7,32,f +13852,3795,7,2,f +13852,3832,15,2,f +13852,3832,0,2,f +13852,3894,7,6,f +13852,3895,15,3,f +13852,3933,15,8,f +13852,3934,15,8,f +13852,3937,15,4,f +13852,3937,7,21,f +13852,3938,15,1,f +13852,3938,14,2,f +13852,3940b,0,2,f +13852,3941,15,8,f +13852,3941,7,22,f +13852,3943b,8,11,f +13852,3958,0,2,f +13852,3958,8,11,f +13852,3960,57,11,f +13852,3960ps2,8,6,f +13852,3961,7,11,f +13852,4032a,7,4,f +13852,4032a,0,59,f +13852,4070,15,2,f +13852,4150,0,4,f +13852,4150pr0022,7,4,f +13852,4150ps7,7,2,f +13852,4151a,8,2,f +13852,41539,15,4,f +13852,4162,7,2,f +13852,41753,8,1,t +13852,41769,320,1,f +13852,41770,320,1,f +13852,4202,4,1,f +13852,4213,7,6,f +13852,4274,7,1,t +13852,4274,7,4,f +13852,4275b,7,8,f +13852,4276b,0,8,f +13852,4282,15,2,f +13852,4285b,7,6,f +13852,4286,15,41,f +13852,4286,4,4,f +13852,4286,19,2,f +13852,4286,320,6,f +13852,4445,15,6,f +13852,4477,4,2,f +13852,4510,4,2,f +13852,4531,7,1,f +13852,4589,7,4,f +13852,4599a,7,2,f +13852,4625,19,6,f +13852,4733,8,2,f +13852,4740,15,8,f +13852,4871,7,4,f +13852,6111,15,16,f +13852,6112,15,2,f +13852,6134,4,5,f +13852,6134,0,16,f +13852,6141,8,1,t +13852,6141,15,16,f +13852,6141,7,1,t +13852,6141,8,10,f +13852,6177,15,2,f +13852,6177,320,2,f +13852,6179,0,2,f +13852,6190,8,2,f +13852,6232,4,6,f +13852,6239,15,4,f +13852,6541,4,4,f +13852,6558,0,3,f +13852,6564,15,11,f +13852,6565,15,11,f +13852,6636,7,4,f +13852,6636,320,4,f +13852,rb00169,0,2,f +13852,rb00169,0,2,t +13853,10016414,9999,1,t +13853,11153,73,4,f +13853,11211,71,1,f +13853,11408pr0005c01,78,1,f +13853,11476,71,3,f +13853,11602pr0001a,0,1,f +13853,11610,19,1,f +13853,11816pr0002,78,1,f +13853,11818pr0004,78,1,f +13853,12939,15,2,f +13853,13770,297,2,f +13853,13965,15,3,f +13853,13965,70,4,f +13853,14716,15,7,f +13853,14769,15,2,f +13853,15332,297,3,f +13853,15395,15,1,f +13853,15469,322,2,f +13853,15470,297,6,f +13853,15470,297,3,t +13853,15673pr0001,226,1,f +13853,15745,45,5,f +13853,15875pr0001bc01,73,1,f +13853,16985pr0001a,320,1,f +13853,16989,9999,1,t +13853,2343,47,2,f +13853,2357,15,2,f +13853,2417,2,5,f +13853,2423,2,1,f +13853,2431,29,8,f +13853,2431,27,9,f +13853,2449,85,4,f +13853,2453a,15,2,f +13853,2453a,71,2,f +13853,2454a,19,1,f +13853,2458,19,2,f +13853,2496,0,2,f +13853,2655,71,2,f +13853,2714a,71,2,f +13853,3001,70,1,f +13853,3002,4,1,f +13853,3003,15,1,f +13853,3004,15,10,f +13853,30044,5,3,f +13853,30046,297,4,f +13853,3005,71,4,f +13853,3005,15,8,f +13853,30056,297,2,f +13853,3008,71,4,f +13853,3009,71,2,f +13853,3010,71,3,f +13853,30136,70,10,f +13853,30137,70,3,f +13853,30150,70,1,f +13853,30151a,47,1,f +13853,30153,45,1,f +13853,30153,36,1,f +13853,30153,34,1,f +13853,30153,46,1,f +13853,3020,19,1,f +13853,3020,2,4,f +13853,3020,71,2,f +13853,3020,30,10,f +13853,3021,322,3,f +13853,3021,19,2,f +13853,3021,5,11,f +13853,3022,19,1,f +13853,3022,15,5,f +13853,3022,27,1,f +13853,3023,2,3,f +13853,3023,27,1,f +13853,3023,70,1,f +13853,3023,19,5,f +13853,3023,5,12,f +13853,3023,15,12,f +13853,3023,14,1,f +13853,30237a,70,1,f +13853,3024,30,2,t +13853,3024,30,5,f +13853,3029,322,2,f +13853,3031,27,2,f +13853,3032,70,1,f +13853,3032,2,2,f +13853,3034,19,2,f +13853,3035,19,1,f +13853,30367b,15,4,f +13853,30385,41,1,f +13853,3040b,70,3,f +13853,3040b,73,12,f +13853,30414,15,1,f +13853,30503,2,3,f +13853,30565,19,4,f +13853,30565,322,2,f +13853,3062b,297,20,f +13853,3062b,19,6,f +13853,3062b,15,1,f +13853,3062b,41,1,f +13853,3068b,29,3,f +13853,3069b,29,1,f +13853,3069b,322,4,f +13853,3069b,27,2,f +13853,3069b,19,3,f +13853,3069bpr0055,15,1,f +13853,32034,15,2,f +13853,32062,4,1,f +13853,3245c,15,15,f +13853,32474,27,1,f +13853,33051,4,2,f +13853,3308,15,1,f +13853,3308,71,2,f +13853,33183,10,1,f +13853,33183,10,1,t +13853,33291,5,2,t +13853,33291,191,3,t +13853,33291,4,11,f +13853,33291,5,11,f +13853,33291,4,5,t +13853,33291,191,6,f +13853,33322,297,1,t +13853,33322,297,1,f +13853,3622,71,2,f +13853,3622,19,1,f +13853,3622,15,2,f +13853,3623,70,3,f +13853,3633,15,5,f +13853,3659,15,5,f +13853,3660,71,1,f +13853,3665,15,1,f +13853,3666,70,1,f +13853,3666,19,2,f +13853,3679,71,1,f +13853,3680,1,1,f +13853,3700,19,2,f +13853,3710,71,2,f +13853,3710,70,1,f +13853,3710,15,2,f +13853,3741,2,3,f +13853,3741,2,2,t +13853,3747b,72,2,f +13853,3749,19,1,f +13853,3794b,297,9,f +13853,3795,70,1,f +13853,3894,15,1,f +13853,3899,5,2,f +13853,3940b,72,1,f +13853,3941,70,5,f +13853,3942c,212,3,f +13853,3943b,212,2,f +13853,3960pr0013,15,1,f +13853,4032a,71,2,f +13853,4032a,15,4,f +13853,4081b,15,1,f +13853,4150,29,2,f +13853,4286,212,4,f +13853,4495b,5,5,f +13853,4519,71,1,f +13853,4536,15,1,f +13853,4740,2,2,f +13853,47457,15,1,f +13853,47543,212,1,f +13853,48336,71,1,f +13853,4865b,29,1,f +13853,4865b,47,1,f +13853,50304,19,1,f +13853,50305,19,1,f +13853,50950,30,2,f +13853,59349,71,3,f +13853,59900,297,4,f +13853,59900,182,4,f +13853,60474,297,1,f +13853,60474,15,1,f +13853,60475a,71,4,f +13853,60481,212,4,f +13853,60481,85,4,f +13853,60583a,15,1,f +13853,6066,212,2,f +13853,60897,15,2,f +13853,6141,36,1,t +13853,6141,15,1,t +13853,6141,46,1,f +13853,6141,297,13,f +13853,6141,70,1,f +13853,6141,41,1,t +13853,6141,36,4,f +13853,6141,41,2,f +13853,6141,297,4,t +13853,6141,27,15,f +13853,6141,15,8,f +13853,6141,70,1,t +13853,6141,27,5,t +13853,6141,46,1,t +13853,61485,15,1,f +13853,6191,322,2,f +13853,6231,29,10,f +13853,62361,15,2,f +13853,6255,10,1,f +13853,6256,29,1,f +13853,6259,15,1,f +13853,62808,297,1,t +13853,62808,297,2,f +13853,62810,308,1,f +13853,63864,15,4,f +13853,63965,297,1,f +13853,63965,15,4,f +13853,64390,70,1,f +13853,64644,297,4,f +13853,64647,182,3,f +13853,64647,182,2,t +13853,6636,19,2,f +13853,85080,15,2,f +13853,85984,70,4,f +13853,85984,15,1,f +13853,87079,30,4,f +13853,87079,15,2,f +13853,87087,19,3,f +13853,87421,71,4,f +13853,87421,15,4,f +13853,87580,70,3,f +13853,88072,19,4,f +13853,91405,19,2,f +13853,92410,30,1,f +13853,92438,29,1,f +13853,92456pr0051c01,78,1,f +13853,92593,15,7,f +13853,92692,15,2,f +13853,92947,15,2,f +13853,92950,15,2,f +13853,93088pr0001a,84,1,f +13853,93094,5,1,f +13853,93094,5,1,t +13853,93160,15,1,t +13853,93160,15,1,f +13853,96874,25,1,t +13853,98283,71,4,f +13853,98397,71,1,f +13853,99206,15,2,f +13854,2412b,0,1,f +13854,2420,70,6,f +13854,2420,0,18,f +13854,2431,0,5,f +13854,2431,71,4,f +13854,2431,288,16,f +13854,2444,72,3,f +13854,2445,0,2,f +13854,2540,0,15,f +13854,2555,0,7,f +13854,2780,0,1,t +13854,2780,0,5,f +13854,2877,70,18,f +13854,2878,0,8,f +13854,2921,19,4,f +13854,2921,70,4,f +13854,3001,0,2,f +13854,3004,288,10,f +13854,3004,0,8,f +13854,3004,70,4,f +13854,3005,288,9,f +13854,3005,71,2,f +13854,3005,19,12,f +13854,3005,0,4,f +13854,3010,288,24,f +13854,3010,0,2,f +13854,30133,4,1,f +13854,30135,0,1,f +13854,30165,0,1,f +13854,3020,0,22,f +13854,3020,70,4,f +13854,3021,71,2,f +13854,3021,0,9,f +13854,3022,19,4,f +13854,3022,0,5,f +13854,3022,15,2,f +13854,3023,19,4,f +13854,3023,0,31,f +13854,3023,70,4,f +13854,3023,71,19,f +13854,3024,71,7,f +13854,3024,70,8,f +13854,3024,19,4,f +13854,3031,0,1,f +13854,3032,71,2,f +13854,3033,71,2,f +13854,3034,72,2,f +13854,3035,288,2,f +13854,3035,0,2,f +13854,3036,0,1,f +13854,30363,0,1,f +13854,3040b,288,2,f +13854,30414,71,14,f +13854,30526,72,1,f +13854,3068b,71,1,f +13854,3068b,0,4,f +13854,3068b,288,6,f +13854,3069b,70,8,f +13854,3069b,71,7,f +13854,3069b,0,20,f +13854,3070b,0,5,f +13854,3070b,0,1,t +13854,3070b,70,2,t +13854,3070b,70,10,f +13854,3176,71,4,f +13854,32001,71,4,f +13854,32002,72,1,t +13854,32002,72,4,f +13854,32013,0,3,f +13854,32017,0,2,f +13854,32028,0,18,f +13854,32062,0,2,f +13854,32064b,0,4,f +13854,32124,0,2,f +13854,32184,71,1,f +13854,32269,19,1,f +13854,32270,0,1,f +13854,32324,71,1,f +13854,32523,72,2,f +13854,3460,0,2,f +13854,3460,308,6,f +13854,3623,19,8,f +13854,3623,0,15,f +13854,3623,70,4,f +13854,3626b,0,2,f +13854,3626bpr0043,14,1,f +13854,3626bpr0251,14,1,f +13854,3626bpr0498,14,1,f +13854,3659,0,2,f +13854,3659,71,1,f +13854,3660,288,3,f +13854,3665,19,4,f +13854,3666,288,23,f +13854,3666,0,6,f +13854,3673,71,1,t +13854,3673,71,9,f +13854,3700,70,8,f +13854,3701,70,6,f +13854,3702,71,2,f +13854,3706,0,4,f +13854,3709,71,12,f +13854,3710,71,6,f +13854,3710,0,6,f +13854,3749,19,8,f +13854,3794b,0,12,f +13854,3794b,19,15,f +13854,3795,308,5,f +13854,3795,0,6,f +13854,3832,0,2,f +13854,3832,71,2,f +13854,3837,0,1,f +13854,3894,0,2,f +13854,3899,4,1,f +13854,3899,47,1,f +13854,3941,70,2,f +13854,3941,272,2,f +13854,3956,71,1,f +13854,3957a,71,2,f +13854,3958,0,1,f +13854,4019,71,2,f +13854,4025,0,4,f +13854,4032a,0,8,f +13854,4034,47,10,f +13854,40490,0,2,f +13854,4070,0,7,f +13854,4079b,1,4,f +13854,4081b,19,4,f +13854,4085c,71,2,f +13854,4085c,72,3,f +13854,4093a,72,1,f +13854,4150,0,5,f +13854,41678,0,1,f +13854,4175,71,1,f +13854,42003,0,1,f +13854,42446,71,4,f +13854,43093,1,2,f +13854,44375a,0,1,f +13854,4449,0,1,f +13854,4449,70,1,f +13854,44728,0,4,f +13854,4510,0,2,f +13854,4519,71,3,f +13854,4532,71,1,f +13854,4536,15,2,f +13854,47905,71,2,f +13854,48183,288,2,f +13854,48336,0,2,f +13854,4865a,288,2,f +13854,50950,0,12,f +13854,54200,71,10,f +13854,54200,0,2,t +13854,54200,288,36,f +13854,54200,71,1,t +13854,54200,0,64,f +13854,54200,288,1,t +13854,55013,72,1,f +13854,55982,0,1,f +13854,57051,383,8,f +13854,57878,0,16,f +13854,57999,0,6,f +13854,59426,72,2,f +13854,60032,0,4,f +13854,60032,19,4,f +13854,6019,0,7,f +13854,60470a,0,4,f +13854,60475a,0,8,f +13854,60475a,71,2,f +13854,60478,0,4,f +13854,60479,308,4,f +13854,60479,0,4,f +13854,60484,72,2,f +13854,60601,47,8,f +13854,6093,19,1,f +13854,61068,71,14,f +13854,61068,0,4,f +13854,61068p01,288,18,f +13854,6141,80,1,t +13854,6141,36,1,t +13854,6141,0,18,f +13854,6141,297,10,f +13854,6141,0,1,t +13854,6141,47,1,t +13854,6141,36,1,f +13854,6141,80,2,f +13854,6141,297,1,t +13854,6141,47,2,f +13854,61678,0,4,f +13854,6192,0,2,f +13854,62810,484,1,f +13854,64422,0,5,f +13854,64647,57,1,f +13854,64647,57,1,t +13854,6536,0,2,f +13854,6541,19,7,f +13854,6556,19,10,f +13854,6558,1,6,f +13854,6589,19,2,f +13854,6636,70,6,f +13854,6636,71,4,f +13854,75c16,148,2,f +13854,75c25,148,2,f +13854,85544,4,4,f +13854,85557,0,4,f +13854,85558,0,2,f +13854,85580,9999,1,f +13854,91992,0,1,f +13854,970c00,272,1,f +13854,970c00,71,1,f +13854,970c00,379,1,f +13854,973c01,1,1,f +13854,973c47,71,1,f +13854,973pr1164c01,272,1,f +13856,11217pr0001,15,1,f +13856,12825,71,1,f +13856,2412b,71,3,f +13856,2412b,70,2,f +13856,2431,72,2,f +13856,2436,1,8,f +13856,2450,1,2,f +13856,2540,72,4,f +13856,2714a,71,1,f +13856,298c02,71,1,t +13856,298c02,71,2,f +13856,3001,1,1,f +13856,30031,72,1,f +13856,3020,71,4,f +13856,3021,0,3,f +13856,3021,1,2,f +13856,3022,72,4,f +13856,3023,1,2,f +13856,3023,70,1,f +13856,3023,72,6,f +13856,30365,71,2,f +13856,30367c,72,1,f +13856,30374,35,1,f +13856,30375pr01,308,1,f +13856,30377,72,1,t +13856,30377,72,2,f +13856,30377,308,1,t +13856,30377,308,1,f +13856,30387,71,4,f +13856,30602,72,2,f +13856,3062b,72,2,f +13856,3069b,71,6,f +13856,32001,71,3,f +13856,32013,72,1,f +13856,32014,71,2,f +13856,3626cpr0525,78,1,f +13856,3660,72,1,f +13856,3700,71,4,f +13856,3705,0,1,f +13856,3710,71,2,f +13856,3794b,72,7,f +13856,3941,72,1,f +13856,3957b,71,2,f +13856,4032a,70,2,f +13856,4032a,72,1,f +13856,4070,71,1,f +13856,41677,71,1,f +13856,41879a,19,1,f +13856,42687,308,1,f +13856,43093,1,2,f +13856,43898,72,2,f +13856,44567a,71,2,f +13856,44676,1,2,f +13856,44728,71,6,f +13856,44728,1,1,f +13856,4595,71,1,f +13856,4598,1,1,f +13856,4697b,71,1,t +13856,4697b,71,2,f +13856,4733,71,2,f +13856,4740,1,6,f +13856,47755,1,1,f +13856,47905,72,3,f +13856,48336,71,5,f +13856,48933,1,2,f +13856,50950,72,4,f +13856,53451,179,1,t +13856,53451,179,3,f +13856,54200,72,2,t +13856,54200,72,5,f +13856,58176,36,1,f +13856,58247,0,2,f +13856,59230,308,1,t +13856,59230,308,1,f +13856,59900,71,1,f +13856,60470b,0,1,f +13856,60897,71,1,f +13856,61409,72,6,f +13856,6141,71,2,t +13856,6141,71,12,f +13856,6141,14,1,t +13856,6141,72,1,t +13856,6141,14,2,f +13856,6141,72,2,f +13856,63864,1,2,f +13856,63868,71,6,f +13856,63868,72,2,f +13856,63965,71,1,f +13856,63965,72,1,f +13856,64567,80,1,f +13856,64567,80,1,t +13856,64804pr02,378,1,f +13856,6541,71,1,f +13856,6553,71,2,f +13856,6558,1,1,f +13856,75002stk01,9999,1,f +13856,75937,179,1,f +13856,85984,0,1,f +13856,90258,72,1,f +13856,92946,72,4,f +13856,92946,1,2,f +13856,93273,70,2,f +13856,970c01pr0475,15,1,f +13856,973pr2284c01,15,1,f +13856,973pr2295c01,19,1,f +13856,98103pr0002,308,1,f +13856,98313,148,3,f +13856,99780,72,2,f +13857,2431,15,2,f +13857,2431,0,2,f +13857,2444,15,4,f +13857,2450,15,2,f +13857,2555,15,16,f +13857,2780,0,5,f +13857,2780,0,1,t +13857,2876,0,2,f +13857,3004,15,1,f +13857,3020,0,1,f +13857,3020,15,2,f +13857,3022,15,1,f +13857,3022,0,2,f +13857,3023,15,3,f +13857,3023,0,1,f +13857,30236,15,1,f +13857,30292,40,15,f +13857,3030,0,1,f +13857,3034,0,1,f +13857,30361c,15,4,f +13857,30377,7,4,f +13857,30377,7,1,t +13857,30503,0,2,f +13857,30517,8,1,f +13857,30602pb017,15,1,f +13857,3062b,15,6,f +13857,3068b,0,2,f +13857,3069b,15,1,f +13857,32000,15,1,f +13857,32039,15,2,f +13857,32062,0,1,f +13857,3626b,15,3,f +13857,3679,7,1,f +13857,3680,15,1,f +13857,3700,15,1,f +13857,3737,0,1,f +13857,3937,0,2,f +13857,3941,15,6,f +13857,3942c,0,2,f +13857,3956,7,1,f +13857,40244,8,2,f +13857,4032a,15,4,f +13857,4095,0,2,f +13857,4150,7,1,f +13857,4162,0,2,f +13857,41769,15,1,f +13857,41770,15,1,f +13857,4274,7,1,t +13857,4274,7,6,f +13857,44661,15,1,f +13857,4479,7,1,f +13857,4589,0,2,f +13857,4589,15,1,f +13857,4733,7,3,f +13857,4740,383,1,f +13857,4740,15,3,f +13857,6016,8,4,f +13857,6091,15,4,f +13857,6134,0,2,f +13857,6141,57,1,t +13857,6141,57,2,f +13857,6141,0,2,f +13857,6141,15,5,f +13857,6141,0,1,t +13857,6141,15,1,t +13857,6541,15,1,f +13857,6553,15,1,f +13857,6575,15,2,f +13857,7467bk01,9999,1,f +13857,75c04,15,2,f +13858,2412b,71,2,f +13858,2412b,1,2,f +13858,2431,72,4,f +13858,2431,41,4,f +13858,2436,71,2,f +13858,2445,72,3,f +13858,2447,47,1,f +13858,2447,47,1,t +13858,2449,1,4,f +13858,2479,0,1,f +13858,2569,57,2,f +13858,2780,0,1,t +13858,2780,0,1,f +13858,2877,71,2,f +13858,298c02,14,1,f +13858,298c02,14,1,t +13858,3001,1,5,f +13858,3002,27,2,f +13858,3002,71,2,f +13858,3004,1,3,f +13858,30162,72,2,f +13858,3020,1,1,f +13858,3021,71,2,f +13858,3022,27,4,f +13858,3022,0,5,f +13858,3023,1,6,f +13858,3023,72,4,f +13858,3030,72,1,f +13858,3034,71,3,f +13858,3035,71,1,f +13858,30364,71,4,f +13858,30367b,71,2,f +13858,3037,1,6,f +13858,3039,14,2,f +13858,3040b,71,8,f +13858,3046a,1,2,f +13858,30592,72,1,f +13858,3068b,14,1,f +13858,3069b,14,4,f +13858,3069bpr0086,71,1,f +13858,3070b,34,1,f +13858,3070b,36,1,f +13858,3070b,34,1,t +13858,3070b,14,1,t +13858,3070b,14,3,f +13858,3070b,36,1,t +13858,32000,72,2,f +13858,32000,0,2,f +13858,32054,0,4,f +13858,32474,0,2,f +13858,3298,72,2,f +13858,3460,1,6,f +13858,3623,14,2,f +13858,3626bpr0806,14,1,f +13858,3660,1,2,f +13858,3666,71,6,f +13858,3700,71,2,f +13858,3710,1,2,f +13858,3710,0,8,f +13858,3747b,72,10,f +13858,3794a,71,1,f +13858,3795,72,4,f +13858,3937,71,8,f +13858,3938,71,8,f +13858,3958,72,2,f +13858,4032a,1,2,f +13858,4081b,1,2,f +13858,4081b,0,2,f +13858,4150,14,2,f +13858,4162,72,2,f +13858,42023,72,2,f +13858,4282,71,2,f +13858,43093,1,5,f +13858,43337,1,2,f +13858,43710,1,1,f +13858,43711,1,1,f +13858,43722,1,1,f +13858,43722,72,1,f +13858,43723,1,1,f +13858,43723,72,1,f +13858,44302a,72,4,f +13858,44567a,14,1,f +13858,4460b,1,4,f +13858,44728,72,6,f +13858,4477,72,2,f +13858,45301,1,1,f +13858,4596,71,2,f +13858,4740,42,2,f +13858,47457,1,2,f +13858,4871,72,4,f +13858,48729b,0,1,t +13858,48729b,0,2,f +13858,50950,1,4,f +13858,51739,1,1,f +13858,52031,1,2,f +13858,54200,34,1,t +13858,54200,71,4,f +13858,54200,36,1,f +13858,54200,34,1,f +13858,54200,36,1,t +13858,54200,71,1,t +13858,54383,72,1,f +13858,54384,72,1,f +13858,59426,72,2,f +13858,59900,57,4,f +13858,59900,33,4,f +13858,59900,42,2,f +13858,6019,71,2,f +13858,60470a,71,1,f +13858,60471,4,1,f +13858,6091,71,2,f +13858,61184,71,4,f +13858,61409,27,4,f +13858,61409,1,2,f +13858,6141,85,16,f +13858,6141,42,2,f +13858,6141,14,5,f +13858,6141,42,1,t +13858,6141,14,2,t +13858,6141,85,1,t +13858,61678,71,8,f +13858,62743,0,4,f +13858,63864,1,4,f +13858,6541,72,8,f +13858,6589,19,2,f +13858,7067stk01,9999,1,t +13858,7067stk02,9999,1,t +13858,85080,1,2,f +13858,85970,14,2,f +13858,87606,40,1,f +13858,87614,1,2,f +13858,87752,41,1,f +13858,87781,321,1,f +13858,87993,179,2,f +13858,92280,0,4,f +13858,92474,47,2,f +13858,92946,1,8,f +13858,92947,71,3,f +13858,92950,72,4,f +13858,93168,1,2,f +13858,95199,72,2,f +13858,95202pr0001,27,2,f +13858,970c00pr0223,0,2,f +13858,970c00pr0254,321,1,f +13858,973pr1774c01,0,2,f +13858,973pr1799c01,321,1,f +13862,3010,14,1,f +13862,30162,8,1,f +13862,30277,0,1,f +13862,30322,1,1,f +13862,30340,25,1,f +13862,3068b,4,1,f +13862,3626bpb0110,14,1,f +13862,3660,14,2,f +13862,3829c01,4,1,f +13862,4081b,15,2,f +13862,4083,4,1,f +13862,4485,1,1,f +13862,4623,7,1,f +13862,6014a,15,4,f +13862,6015,0,4,f +13862,6141,42,2,f +13862,6141,42,1,t +13862,6153apb04,14,1,f +13862,970c00,0,1,f +13862,973pb0237c01,1,1,f +13865,4268,2,1,f +13868,3626apr0001,14,4,f +13868,3833,4,4,f +13868,3841,8,4,f +13868,970c00,1,4,f +13868,973p26c01,1,4,f +13869,3001,1,1,f +13869,3001,4,2,f +13869,3001,14,2,f +13869,3001,15,2,f +13869,3002,1,2,f +13869,3002,15,2,f +13869,3003,1,4,f +13869,3003,4,2,f +13869,3003,15,2,f +13869,3003,14,3,f +13869,4130,4,1,f +13869,4131,14,1,f +13869,4132,4,1,f +13869,4133,14,1,f +13869,4202,2,1,f +13871,2437,47,1,f +13871,2877,71,1,f +13871,3001,14,4,f +13871,3001,1,2,f +13871,3002,73,2,f +13871,3002,2,2,f +13871,3003,14,6,f +13871,3003,73,3,f +13871,3003,70,2,f +13871,3003,2,1,f +13871,3003pr0002,15,1,f +13871,3004,27,4,f +13871,3004,73,4,f +13871,3004,4,4,f +13871,3004,14,2,f +13871,3005,73,2,f +13871,3005,14,3,f +13871,3008,14,1,f +13871,3010,1,2,f +13871,3020,15,4,f +13871,3021,4,2,f +13871,3022,14,1,f +13871,3023,4,4,f +13871,3023,15,1,f +13871,3030,2,1,f +13871,3034,71,2,f +13871,3037,1,5,f +13871,3039,1,8,f +13871,3039,15,2,f +13871,3062b,46,2,f +13871,33303,15,1,f +13871,3659,4,4,f +13871,3710,4,2,f +13871,3710,15,4,f +13871,3829c01,71,1,f +13871,3899,4,1,f +13871,4006,0,1,f +13871,4287,14,2,f +13871,4490,15,2,f +13871,4589,46,2,f +13871,4600,0,2,f +13871,4623,15,1,f +13871,4624,15,4,f +13871,4727,10,2,f +13871,4740,15,1,f +13871,54200,0,2,f +13871,54200,0,1,t +13871,60598,4,1,f +13871,60599,4,1,f +13871,60608,15,2,f +13871,60623,15,1,f +13871,6141,70,2,f +13871,6141,25,1,t +13871,6141,25,2,f +13871,6141,27,1,t +13871,6141,27,2,f +13871,6141,70,1,t +13871,87414,0,4,f +13872,11211,19,2,f +13872,11618,31,1,t +13872,11618,31,1,f +13872,2423,2,2,f +13872,2423,320,2,f +13872,2431,27,1,f +13872,3003,27,2,f +13872,3021,14,2,f +13872,3021,2,1,f +13872,3023,30,1,f +13872,3035,2,1,f +13872,3040b,2,2,f +13872,3069b,29,2,f +13872,3069b,29,1,t +13872,33051,10,1,f +13872,4496,70,1,f +13872,4623,19,2,f +13872,50950,27,2,f +13872,6141,25,2,f +13872,6141,25,1,t +13872,6141,29,1,t +13872,6141,4,2,f +13872,6141,29,2,f +13872,6141,4,1,t +13872,87580,28,1,f +13872,92950,27,1,f +13872,98389pr0002,19,1,f +13873,2431,2,2,f +13873,2458,8,4,f +13873,2653,0,2,f +13873,2780,0,44,f +13873,2902,0,1,f +13873,2903,15,1,f +13873,2905,7,2,f +13873,30000,8,1,f +13873,3001,2,2,f +13873,3069b,4,2,f +13873,3069b,0,2,f +13873,3176,0,1,f +13873,32001,0,2,f +13873,32002,8,24,f +13873,32013,1,4,f +13873,32014,1,5,f +13873,32015,7,4,f +13873,32016,1,4,f +13873,32017,7,2,f +13873,32034,7,4,f +13873,32039,7,4,f +13873,32062,0,12,f +13873,32123b,7,24,f +13873,32138,0,1,f +13873,3666,0,2,f +13873,3673,7,36,f +13873,3709,0,2,f +13873,3710,2,2,f +13873,3713,7,60,f +13873,3749,7,24,f +13873,3832,0,2,f +13873,4079,15,2,f +13873,4080,14,2,f +13873,4274,7,12,f +13873,6222,8,1,f +13873,6536,7,4,f +13873,6632,7,2,f +13873,71509,0,8,f +13873,sailbb03,15,2,f +13874,2486,14,1,f +13874,2486,15,2,f +13874,30256,7,12,f +13874,30258p01,14,3,f +13874,30258p02,14,1,f +13874,30258p03,15,1,f +13874,30258p04,15,1,f +13874,30258p05,15,1,f +13874,30259p02,15,1,f +13874,30259p03,15,1,f +13874,30259p04,15,1,f +13874,30259p05,14,1,f +13874,30259p06,15,1,f +13874,30261p01,15,1,f +13874,30261p02,15,1,f +13874,30261p03,15,1,f +13874,30261p04,15,1,f +13874,3062b,46,2,f +13874,3062b,33,2,f +13874,4740,15,6,f +13874,890p01,15,1,f +13874,892pb06,14,1,f +13876,3003,2,1,f +13876,3004,2,1,f +13876,3005pe1,2,2,f +13876,3020,2,3,f +13876,3021,2,1,f +13876,3022,14,2,f +13876,3022,2,2,f +13876,3023,36,1,f +13876,3023,2,2,f +13876,3039,2,12,f +13876,32028,2,1,f +13876,3660,14,1,f +13876,3794b,2,3,f +13876,3794b,14,1,f +13876,4070,14,2,f +13876,4070,2,2,f +13876,44728,2,2,f +13876,54200,14,1,t +13876,54200,2,4,f +13876,54200,288,1,t +13876,54200,4,2,t +13876,54200,288,6,f +13876,54200,14,1,f +13876,54200,4,5,f +13876,6141,15,1,t +13876,6141,15,2,f +13876,87580,2,2,f +13877,3003,4,1,f +13877,3003,36,27,f +13877,3004,36,4,f +13877,3004,4,6,f +13877,3039,4,8,f +13877,3660,4,12,f +13878,30089,0,1,f +13878,30162,72,1,f +13878,3962b,0,1,f +13879,x469bopen,0,1,f +13884,3679,7,2,f +13884,3680,4,2,f +13884,3743,7,2,f +13885,3626bpr0691,14,1,f +13885,64798,0,1,f +13885,88646,0,1,f +13885,90398,82,1,f +13885,90398,82,1,t +13885,970c00pr0173,15,1,f +13885,973pr1653c01,15,1,f +13886,12825,71,4,f +13886,12825,4,2,f +13886,15207,71,1,f +13886,2339,4,2,f +13886,2357,4,2,f +13886,2412b,72,12,f +13886,2412b,80,8,f +13886,2420,14,2,f +13886,2420,15,2,f +13886,2420,72,2,f +13886,2420,71,2,f +13886,2420,4,6,f +13886,2431,14,2,f +13886,2432,72,1,f +13886,2436,71,2,f +13886,2445,71,4,f +13886,2654,4,1,f +13886,2654,0,2,f +13886,2694,40,1,f +13886,2730,15,2,f +13886,2780,0,1,t +13886,2780,0,29,f +13886,2819,0,1,f +13886,2921,15,2,f +13886,2921,4,2,f +13886,298c02,0,1,f +13886,298c02,0,1,t +13886,3001,0,1,f +13886,3004,0,3,f +13886,3004,4,6,f +13886,30043,0,1,f +13886,3005,14,2,f +13886,3005,71,8,f +13886,3008,71,4,f +13886,3009,14,1,f +13886,3010,4,3,f +13886,3010,15,3,f +13886,30157,71,2,f +13886,30165,72,1,f +13886,3020,19,1,f +13886,3020,72,3,f +13886,3020,4,2,f +13886,3021,15,2,f +13886,3021,4,4,f +13886,3022,71,2,f +13886,3022,0,8,f +13886,3023,0,14,f +13886,3023,19,5,f +13886,3023,72,6,f +13886,3023,14,4,f +13886,3023,182,2,f +13886,3023,4,10,f +13886,3023,15,9,f +13886,30237a,4,1,f +13886,3024,14,8,f +13886,3024,182,6,f +13886,3024,15,4,f +13886,3024,47,4,f +13886,3024,72,6,f +13886,3024,36,6,f +13886,3024,4,8,f +13886,3028,71,3,f +13886,3031,14,1,f +13886,3031,0,1,f +13886,3032,14,1,f +13886,3032,72,1,f +13886,3034,71,1,f +13886,3034,4,2,f +13886,30360,72,2,f +13886,30374,0,1,f +13886,3039,15,2,f +13886,30395,72,1,f +13886,3040b,71,4,f +13886,3040b,4,2,f +13886,30414,14,3,f +13886,3062b,71,4,f +13886,3062b,72,8,f +13886,3065,40,2,f +13886,30663,0,1,f +13886,3068b,14,1,f +13886,3068b,73,4,f +13886,3068b,19,2,f +13886,3069b,15,2,f +13886,3069b,47,1,f +13886,3069b,4,2,f +13886,3069b,19,2,f +13886,3069bpr0101,71,1,f +13886,3070b,71,6,f +13886,3070b,4,1,t +13886,3070b,14,1,t +13886,3070b,4,2,f +13886,3070b,14,4,f +13886,3070b,71,1,t +13886,3176,71,3,f +13886,32000,71,4,f +13886,32012,72,1,f +13886,32018,0,2,f +13886,32028,14,6,f +13886,32034,71,1,f +13886,32054,4,2,f +13886,32062,4,1,f +13886,32064a,4,4,f +13886,32068,0,2,f +13886,32069,0,2,f +13886,32123b,71,4,f +13886,32123b,71,1,t +13886,32270,0,2,f +13886,32278,0,2,f +13886,32523,71,2,f +13886,32524,72,2,f +13886,32526,71,2,f +13886,3460,4,3,f +13886,3622,4,2,f +13886,3623,0,8,f +13886,3623,72,2,f +13886,3623,15,10,f +13886,3633,72,3,f +13886,3647,72,1,t +13886,3647,72,4,f +13886,3660,4,16,f +13886,3665,4,4,f +13886,3666,4,3,f +13886,3666,14,3,f +13886,3666,72,18,f +13886,3666,0,4,f +13886,3666,19,1,f +13886,3700,1,1,f +13886,3701,71,4,f +13886,3703,4,2,f +13886,3708,0,2,f +13886,3709,4,3,f +13886,3710,14,3,f +13886,3710,15,8,f +13886,3710,0,10,f +13886,3710,4,7,f +13886,3713,71,1,t +13886,3713,71,8,f +13886,3738,4,2,f +13886,3747b,71,4,f +13886,3749,19,4,f +13886,3794b,4,3,f +13886,3795,0,6,f +13886,3832,4,1,f +13886,3894,71,4,f +13886,3937,71,7,f +13886,3938,0,5,f +13886,3941,71,14,f +13886,3958,71,1,f +13886,4032a,15,2,f +13886,4070,4,4,f +13886,4081b,71,4,f +13886,4085c,15,2,f +13886,4085c,0,6,f +13886,4085c,4,2,f +13886,41239,71,6,f +13886,4176,40,1,f +13886,43093,1,3,f +13886,43337,40,1,f +13886,4349,0,2,f +13886,43722,0,1,f +13886,43723,0,1,f +13886,43898,72,4,f +13886,44309,0,4,f +13886,44728,71,2,f +13886,4477,15,2,f +13886,4519,71,1,f +13886,4522,0,2,f +13886,4589,80,2,f +13886,4599b,71,2,f +13886,46667,72,1,f +13886,4740,71,2,f +13886,47457,4,4,f +13886,48336,19,3,f +13886,4864b,40,3,f +13886,52501,72,2,f +13886,53989,0,2,f +13886,54200,182,6,f +13886,54200,47,1,t +13886,54200,47,2,f +13886,54200,182,1,t +13886,55013,72,2,f +13886,55981,71,4,f +13886,56145,71,4,f +13886,56823c50,0,1,f +13886,56898,0,2,f +13886,56904,71,2,f +13886,59426,72,2,f +13886,59443,72,2,f +13886,6005,4,2,f +13886,60470a,0,3,f +13886,60478,0,8,f +13886,60479,71,5,f +13886,60484,71,4,f +13886,6060,4,4,f +13886,6081,4,2,f +13886,60849,0,2,f +13886,6087,71,4,f +13886,6091,4,2,f +13886,6091,71,4,f +13886,6091,15,2,f +13886,6091,0,2,f +13886,6134,1,2,f +13886,6140,0,1,f +13886,61409,72,2,f +13886,6141,182,1,t +13886,6141,0,1,t +13886,6141,1,1,t +13886,6141,182,12,f +13886,6141,0,6,f +13886,6141,47,2,f +13886,6141,1,2,f +13886,6141,47,1,t +13886,6187,71,2,f +13886,6231,71,4,f +13886,62361,14,4,f +13886,62462,15,8,f +13886,62930,47,2,f +13886,63864,4,4,f +13886,63868,71,2,f +13886,63965,0,2,f +13886,6541,4,3,f +13886,6553,71,4,f +13886,6558,1,12,f +13886,6587,28,2,f +13886,6589,19,1,t +13886,6589,19,2,f +13886,6628,0,2,f +13886,6630,0,1,f +13886,6636,71,6,f +13886,85984,4,3,f +13886,87079,15,3,f +13886,87079,4,2,f +13886,87079,14,2,f +13886,87083,72,2,f +13886,91988,0,2,f +13886,92280,0,4,f +13886,92402,0,4,f +13886,92593,72,15,f +13886,93606,4,5,f +13886,96874,25,1,t +13886,98138,47,1,t +13886,98138,47,4,f +13886,99781,71,3,f +13887,132a,0,8,f +13887,236bc96,15,1,f +13887,3001a,0,18,f +13887,3001a,14,12,f +13887,3001a,1,18,f +13887,3001a,4,72,f +13887,3001a,47,8,f +13887,3001a,15,60,f +13887,3002a,0,4,f +13887,3002a,1,6,f +13887,3002a,4,12,f +13887,3002a,47,4,f +13887,3002a,15,8,f +13887,3002a,14,4,f +13887,3003,4,16,f +13887,3003,14,8,f +13887,3003,1,8,f +13887,3003,15,16,f +13887,3003,0,10,f +13887,3003,47,8,f +13887,3004,14,10,f +13887,3004,1,8,f +13887,3004,15,16,f +13887,3004,47,10,f +13887,3004,4,24,f +13887,3004,0,20,f +13887,3005,47,4,f +13887,3005,14,6,f +13887,3005,1,6,f +13887,3005,4,12,f +13887,3005,15,6,f +13887,3005,0,6,f +13887,3006,4,2,f +13887,3006,15,4,f +13887,3007,15,2,f +13887,3007,4,2,f +13887,3034,15,6,f +13887,3035,15,4,f +13887,3037,4,48,f +13887,3039,4,12,f +13887,3041,4,8,f +13887,3043,4,2,f +13887,3058b,7,1,f +13887,3081bc01,4,2,f +13887,3081bc01,15,2,f +13887,3134,15,1,f +13887,3149c01,4,4,f +13887,3185,4,12,f +13887,3186,4,2,f +13887,3187,4,2,f +13887,3192,14,1,f +13887,3192,1,1,f +13887,3193,14,1,f +13887,3193,1,1,f +13887,3194,14,1,f +13887,3194,1,1,f +13887,3195,1,1,f +13887,3195,14,1,f +13887,31bc01,4,2,f +13887,31bc01,15,2,f +13887,32bc01,4,2,f +13887,32bc01,15,2,f +13887,3404ac02,15,1,f +13887,3596pb03,15,1,f +13887,36,0,4,f +13887,453bc01,15,2,f +13887,453bc01,4,2,f +13887,468c01,1,1,f +13887,498,0,2,f +13887,604c01,4,2,f +13887,604c01,15,2,f +13887,645bc01,15,2,f +13887,645bc01,4,2,f +13887,646bc01,4,2,f +13887,646bc01,15,2,f +13887,700ed,7,2,f +13887,700ed,2,3,f +13887,7039b,4,8,f +13887,7049b,15,6,f +13887,715a,4,4,f +13887,bb393c85,15,2,f +13887,ftcyph,2,1,f +13887,ftpineh,2,1,f +13887,x456c01,47,1,f +13887,x579c02,1,1,f +13888,132a,7,4,f +13888,3035,15,1,f +13888,650,79,1,f +13888,7039,4,4,f +13888,7049b,15,2,f +13891,2423,2,1,f +13891,2542,6,1,f +13891,30114,0,1,f +13891,30126p01,15,1,f +13891,30126p01,15,1,t +13891,3022,4,1,f +13891,3023,7,1,f +13891,3034,0,1,f +13891,3626bpx57,14,1,f +13891,3835,0,1,f +13891,4497,6,1,f +13891,4498,0,1,f +13891,4499,0,1,f +13891,6019,7,2,f +13891,6215,4,2,f +13891,970c02pb02,19,1,f +13891,973px103c01,19,1,f +13893,3626bpr0001,14,1,f +13893,3901,6,1,f +13893,970c00,0,1,f +13893,973c01,15,1,f +13894,11098,297,1,f +13894,11106,179,1,f +13894,11477,308,6,f +13894,13361pr0003,0,1,f +13894,14417,72,3,f +13894,14419,72,2,f +13894,14704,71,3,f +13894,15068,308,2,f +13894,15756,9999,1,f +13894,17114,308,2,f +13894,2431,70,1,f +13894,2654,19,2,f +13894,2654pr0006,19,1,f +13894,30136,28,5,f +13894,3021,19,1,f +13894,3022,0,1,f +13894,3023,19,10,f +13894,30374,70,1,f +13894,3069bpr0134,70,1,f +13894,3626cpr1206,0,1,f +13894,3660,70,2,f +13894,3665,70,2,f +13894,3666,70,1,f +13894,3795,70,1,f +13894,4032a,70,1,f +13894,44728,19,2,f +13894,44728,72,2,f +13894,47407,0,1,f +13894,47457,308,4,f +13894,48336,19,3,f +13894,50950,19,4,f +13894,54200,70,1,t +13894,54200,70,8,f +13894,60470a,0,1,f +13894,6058415,9999,1,f +13894,6141,70,4,f +13894,6141,70,1,t +13894,85984,19,1,f +13894,88072,0,2,f +13894,92013,308,4,f +13894,92747,41,1,f +13894,970c00pr0446,0,1,f +13894,973pr1400c01,0,1,f +13894,98138,41,3,f +13894,98138,41,1,t +13894,98313,70,6,f +13894,99207,0,2,f +13894,99780,0,2,f +13894,99781,71,1,f +13895,3002,19,1,f +13895,3003pe2,15,1,f +13895,3004,4,2,f +13895,3004,19,1,f +13895,3020,19,1,f +13895,3021,19,1,f +13895,3022,19,1,f +13895,3040b,19,2,f +13896,2254stk01,9999,1,t +13896,2335,2,4,f +13896,2335,15,2,f +13896,2376,0,1,f +13896,2431,0,2,f +13896,2458,71,1,f +13896,2540,4,6,f +13896,2555,72,4,f +13896,2654,4,1,f +13896,2654,19,1,f +13896,2714a,0,2,f +13896,3001,71,2,f +13896,3003,4,2,f +13896,3003,70,1,f +13896,3004,4,2,f +13896,30136,70,2,f +13896,30169,0,2,f +13896,30176,2,3,f +13896,30177,4,1,f +13896,3020,0,1,f +13896,3022,4,1,f +13896,3022,0,1,f +13896,3023,4,2,f +13896,30237a,72,2,f +13896,3031,19,1,f +13896,30361c,72,1,f +13896,30374,70,1,f +13896,3039,72,2,f +13896,30503,19,4,f +13896,30504,19,1,f +13896,30553,72,2,f +13896,3062b,71,4,f +13896,3062b,19,1,f +13896,3068b,4,1,f +13896,3069b,82,2,f +13896,3069b,71,1,f +13896,32062,4,2,f +13896,3626bpr0744,14,1,f +13896,3660,71,1,f +13896,3666,70,2,f +13896,3673,71,1,t +13896,3673,71,2,f +13896,3700,70,2,f +13896,3700,71,1,f +13896,3701,70,2,f +13896,3749,19,1,f +13896,3794a,72,1,f +13896,3795,0,1,f +13896,3830,70,2,f +13896,3831,70,2,f +13896,3941,19,2,f +13896,4032a,4,1,f +13896,4070,0,1,f +13896,4081b,4,1,f +13896,4150,19,1,f +13896,4286,72,6,f +13896,44567a,0,2,f +13896,4460b,72,4,f +13896,4621867,9999,1,f +13896,4621868,9999,1,f +13896,4621869,9999,1,f +13896,4621870,9999,1,f +13896,4630067,9999,1,f +13896,4738a,70,1,f +13896,4739a,70,1,f +13896,47456,0,2,f +13896,47847,72,2,f +13896,4865a,71,1,f +13896,48723,70,2,f +13896,48729b,72,2,f +13896,48729b,72,1,t +13896,53705,132,8,f +13896,54177,0,2,f +13896,54200,71,5,f +13896,54200,71,1,t +13896,60169,71,1,f +13896,60475a,71,2,f +13896,6126b,182,2,f +13896,6141,0,3,f +13896,6141,0,1,t +13896,61485,0,1,f +13896,6182,71,2,f +13896,6260,19,1,f +13896,6265,19,1,t +13896,6265,19,2,f +13896,6266,19,2,f +13896,64644,0,2,f +13896,87081,72,1,f +13896,87617,4,4,f +13896,87747,179,2,f +13896,92547pr0014,297,1,f +13896,92690,71,3,f +13896,93055,297,1,f +13896,970c00pr0220,4,1,f +13896,973pr1750c01,4,1,f +13898,2300,2,1,f +13898,3011,2,1,f +13898,31021,15,2,f +13898,31059,2,1,f +13898,31061,366,1,f +13898,31101,15,1,f +13898,31189,4,1,f +13898,31191,14,1,f +13898,31193pb04,4,1,f +13898,31285c01,1,1,f +13898,31441,1,1,f +13898,3437,2,5,f +13898,4131307,15,1,f +13898,4555pb089,1,1,f +13898,48835,7,1,f +13898,6411,4,1,f +13898,6453pb004,4,1,f +13898,6453pb016,14,1,f +13898,6453pb026,2,1,f +13898,6496,14,1,f +13898,6510,2,1,f +13898,6510,14,1,f +13898,6534cx1,6,1,f +13898,75732,2,1,f +13898,75737,4,1,f +13898,dupdoor1,4,1,f +13901,2412b,72,1,f +13901,2431,72,4,f +13901,2436,14,1,f +13901,2446,15,2,f +13901,2447,40,2,f +13901,2458,1,10,f +13901,2458,71,2,f +13901,2607,0,2,f +13901,2730,0,2,f +13901,2730,15,2,f +13901,2736,71,1,f +13901,2780,0,222,f +13901,3001,0,1,f +13901,3001,14,2,f +13901,3002,15,2,f +13901,3003,0,2,f +13901,3004,71,2,f +13901,3004,1,8,f +13901,3005,1,2,f +13901,3005,4,8,f +13901,3008,71,2,f +13901,3008,15,8,f +13901,3008,1,18,f +13901,3009,4,6,f +13901,3009,1,2,f +13901,3010,4,2,f +13901,3010,1,12,f +13901,3010,15,12,f +13901,3020,0,2,f +13901,3021,14,2,f +13901,3021,15,10,f +13901,3021,1,4,f +13901,3022,4,2,f +13901,3022,15,6,f +13901,3022,1,6,f +13901,3023,15,2,f +13901,3023,14,2,f +13901,3023,0,1,f +13901,3023,4,2,f +13901,3028,0,1,f +13901,3031,14,1,f +13901,3034,0,10,f +13901,3036,4,2,f +13901,3038,15,6,f +13901,3039,1,4,f +13901,3039,15,4,f +13901,3039,0,2,f +13901,30391,0,4,f +13901,3062b,1,8,f +13901,3068b,15,2,f +13901,3069b,15,2,f +13901,32000,15,4,f +13901,32009,72,2,f +13901,32009,14,6,f +13901,32009,4,6,f +13901,32012,72,1,f +13901,32013,14,2,f +13901,32013,71,3,f +13901,32015,0,2,f +13901,32015,14,2,f +13901,32015,4,2,f +13901,32016,71,1,f +13901,32018,0,4,f +13901,32018,15,2,f +13901,32034,71,3,f +13901,32034,4,3,f +13901,32034,0,8,f +13901,32039,0,10,f +13901,32039,4,5,f +13901,32039,71,2,f +13901,32054,0,7,f +13901,32062,4,50,f +13901,32072,14,6,f +13901,32073,71,23,f +13901,32123b,14,14,f +13901,32123b,71,4,f +13901,32125,15,2,f +13901,32138,0,2,f +13901,32140,72,6,f +13901,32140,0,4,f +13901,32140,4,4,f +13901,32140,14,3,f +13901,32184,0,1,f +13901,32184,71,2,f +13901,32202,4,4,f +13901,32269,71,4,f +13901,32271,0,6,f +13901,32278,0,25,f +13901,32278,72,8,f +13901,32278,14,4,f +13901,32278,4,8,f +13901,32291,4,4,f +13901,32316,4,1,f +13901,32316,72,2,f +13901,32348,1,15,f +13901,32449,71,2,f +13901,32474,0,16,f +13901,32523,14,1,f +13901,32523,0,5,f +13901,32523,4,2,f +13901,32524,72,4,f +13901,32524,14,2,f +13901,32524,4,10,f +13901,32525,72,8,f +13901,32525,0,6,f +13901,32525,14,3,f +13901,32525,4,4,f +13901,32526,72,16,f +13901,32526,4,20,f +13901,32526,0,18,f +13901,32556,71,14,f +13901,3298,0,2,f +13901,3460,15,8,f +13901,3622,15,4,f +13901,3622,1,4,f +13901,3622,71,2,f +13901,3623,15,8,f +13901,3626bpr0001,14,2,f +13901,3647,71,2,f +13901,3648b,71,2,f +13901,3649,71,2,f +13901,3660,1,4,f +13901,3660,15,16,f +13901,3665,14,2,f +13901,3665,15,8,f +13901,3666,15,4,f +13901,3666,4,4,f +13901,3673,71,16,f +13901,3700,0,8,f +13901,3700,15,8,f +13901,3701,0,2,f +13901,3702,71,3,f +13901,3702,4,2,f +13901,3705,0,13,f +13901,3706,0,5,f +13901,3707,0,15,f +13901,3709,1,2,f +13901,3709,71,2,f +13901,3710,14,1,f +13901,3710,15,4,f +13901,3713,4,16,f +13901,3713,71,15,f +13901,3749,19,10,f +13901,3795,0,8,f +13901,3823,40,1,f +13901,3832,0,1,f +13901,3894,0,4,f +13901,3894,1,4,f +13901,3895,1,7,f +13901,3895,0,4,f +13901,3941,1,1,f +13901,3941,14,2,f +13901,3941,0,5,f +13901,3960,15,8,f +13901,4032a,71,1,f +13901,40490,72,4,f +13901,40490,14,2,f +13901,40490,0,5,f +13901,40490,4,12,f +13901,4080,14,2,f +13901,41239,0,4,f +13901,4150,14,1,f +13901,4161,15,2,f +13901,4162,15,4,f +13901,41677,72,2,f +13901,41677,71,4,f +13901,41677,4,2,f +13901,4185,71,4,f +13901,42003,14,4,f +13901,42003,0,8,f +13901,42003,4,2,f +13901,42022,15,4,f +13901,4274,71,12,f +13901,43093,1,27,f +13901,43857,0,5,f +13901,43857,4,4,f +13901,44294,71,2,f +13901,44301a,72,4,f +13901,44302a,72,4,f +13901,4519,71,22,f +13901,4716,0,1,f +13901,50304,15,4,f +13901,50305,15,4,f +13901,50450,0,1,f +13901,54821,125,1,f +13901,55982,71,6,f +13901,56823c200,0,1,f +13901,6111,4,2,f +13901,6141,71,3,f +13901,6141,72,2,f +13901,6536,4,6,f +13901,6536,14,2,f +13901,6536,0,12,f +13901,6536,72,1,f +13901,6536,71,2,f +13901,6538b,4,8,f +13901,6538b,72,2,f +13901,6538b,0,3,f +13901,6538b,14,3,f +13901,6538b,71,3,f +13901,6541,1,2,f +13901,6558,0,149,f +13901,6587,72,2,f +13901,6589,71,6,f +13901,6628,0,7,f +13901,6629,72,2,f +13901,6632,0,4,f +13901,6632,14,4,f +13901,6632,4,4,f +13901,71155,0,2,f +13901,73090a,0,4,f +13901,73092,0,3,f +13901,75535,4,1,f +13901,75535,0,12,f +13901,85543,15,3,f +13901,85544,4,6,f +13901,85545,15,2,f +13901,970c00,15,2,f +13901,973pr1232c01,15,2,f +13903,2654,19,1,f +13903,2736,7,4,f +13903,2780,0,30,f +13903,2780,0,1,t +13903,2905,8,8,f +13903,32013,8,10,f +13903,32013,0,2,f +13903,32013,7,22,f +13903,32014,8,2,f +13903,32014,7,5,f +13903,32034,7,24,f +13903,32034,0,1,f +13903,32034,8,12,f +13903,32039,0,1,f +13903,32039,7,15,f +13903,32039,8,1,f +13903,32054,7,2,f +13903,32054,8,2,f +13903,32056,7,2,f +13903,32062,0,49,f +13903,32072,15,6,f +13903,32073,7,14,f +13903,32123b,7,1,t +13903,32123b,7,16,f +13903,32123b,19,31,f +13903,32123b,19,2,t +13903,32124,0,1,f +13903,32138,7,2,f +13903,32140,7,6,f +13903,32180,0,6,f +13903,32184,7,16,f +13903,32184,8,4,f +13903,32184,0,4,f +13903,32192,8,2,f +13903,32209,0,12,f +13903,32269,15,1,f +13903,32269,7,2,f +13903,32270,7,6,f +13903,32278,8,1,f +13903,32278,7,2,f +13903,32293,0,2,f +13903,32449,7,20,f +13903,3245b,19,8,f +13903,32523,8,2,f +13903,32524,8,7,f +13903,32526,7,2,f +13903,32526,8,6,f +13903,32556,7,5,f +13903,3647,7,3,f +13903,3647,7,1,t +13903,3660,7,1,f +13903,3673,7,2,f +13903,3673,7,1,t +13903,3703,19,4,f +13903,3705,0,13,f +13903,3706,0,19,f +13903,3707,0,5,f +13903,3708,0,1,f +13903,3713,7,34,f +13903,3713,7,1,t +13903,3737,0,1,f +13903,3749,19,35,f +13903,3941,15,11,f +13903,3956,7,1,f +13903,3960,0,1,f +13903,4032a,7,2,f +13903,4032a,19,3,f +13903,40490,8,2,f +13903,40490,7,7,f +13903,41677,7,17,f +13903,41677,8,8,f +13903,41678,7,4,f +13903,41752,8,3,t +13903,42003,7,12,f +13903,42003,8,6,f +13903,4274,1,7,f +13903,43093,1,45,f +13903,43857,7,4,f +13903,44294,7,12,f +13903,44375a,7,1,f +13903,4519,7,48,f +13903,4589,7,1,f +13903,4716,7,1,f +13903,6141,7,1,t +13903,6141,0,2,f +13903,6141,0,1,t +13903,6141,7,6,f +13903,6536,8,8,f +13903,6536,7,32,f +13903,6536,0,4,f +13903,6538b,8,2,f +13903,6538b,7,10,f +13903,6538b,0,4,f +13903,6558,0,24,f +13903,6572,7,4,f +13903,6575,0,2,f +13903,6575,8,2,f +13903,6587,8,5,f +13903,6589,7,3,f +13903,6595,7,6,f +13903,6628,0,1,f +13903,6632,7,20,f +13903,6644,0,4,f +13903,71509,0,4,f +13903,7471bk01,9999,1,t +13903,75535,7,1,f +13903,75c04,15,1,t +13903,75c04,15,1,f +13903,75c10,8,2,f +13903,76320,0,2,f +13903,78c02,179,2,f +13903,78c03,179,1,f +13903,78c05,179,2,f +13903,85543,15,4,f +13903,9244,7,8,f +13903,flex08c95,503,2,f +13903,rb00167,14,4,f +13903,rb00187,33,1,f +13905,14226c21,0,1,f +13905,194cx1,7,1,f +13905,2335,15,1,f +13905,2335pr02,15,1,f +13905,2412b,4,1,f +13905,2431,4,2,f +13905,2431,15,3,f +13905,2431,0,1,f +13905,2432,4,1,f +13905,2432,1,1,f +13905,2446,1,1,f +13905,2446,0,1,f +13905,2446,4,1,f +13905,2447,41,1,t +13905,2447,41,3,f +13905,2554stk01,9999,1,t +13905,30027a,14,10,f +13905,30028,0,10,f +13905,30029,4,1,f +13905,30029,0,1,f +13905,3004,4,1,f +13905,3004,1,1,f +13905,3004,15,1,f +13905,3010,15,1,f +13905,30151a,14,2,f +13905,3020,1,1,f +13905,3020,14,2,f +13905,3022,7,2,f +13905,3023,4,2,f +13905,3023,7,2,f +13905,3039,4,3,f +13905,3039,15,2,f +13905,3039,1,1,f +13905,3040b,15,2,f +13905,3062b,4,3,f +13905,3068bp70,15,1,f +13905,3070bp01,14,1,f +13905,3070bp01,14,1,t +13905,3070bp03,14,1,f +13905,3070bp03,14,1,t +13905,3139,0,4,f +13905,3298p01,4,1,f +13905,3298p75,1,1,f +13905,3623,7,1,f +13905,3626bp04,14,5,f +13905,3666,14,1,f +13905,3666,0,2,f +13905,3666,1,2,f +13905,3710,1,2,f +13905,3710,14,2,f +13905,3710,0,2,f +13905,3829c01,0,1,f +13905,3829c01,7,1,f +13905,3839b,0,5,f +13905,3849,15,3,f +13905,3941,14,4,f +13905,4032a,4,2,f +13905,4070,7,2,f +13905,4070,15,2,f +13905,4081b,15,2,f +13905,4085c,4,6,f +13905,4150,4,1,f +13905,4276b,14,1,f +13905,4319,14,1,f +13905,4349,7,2,f +13905,4485,4,2,f +13905,4599a,0,2,f +13905,4600,0,2,f +13905,4624,7,4,f +13905,4629c01,1,1,f +13905,51595p02,2,1,f +13905,55295,8,1,f +13905,55296,8,1,f +13905,55297,8,1,f +13905,55298,8,1,f +13905,55299,8,1,f +13905,55300,8,1,f +13905,6019,15,3,f +13905,6019,0,2,f +13905,6091,15,4,f +13905,6141,7,4,f +13905,6141,7,1,t +13905,6157,7,4,f +13905,6636,15,1,f +13905,970c00,0,2,f +13905,970c00,1,2,f +13905,970x026,4,1,f +13905,973pb0095c01,4,3,f +13905,973pb0096c01,1,2,f +13909,2817,4,1,f +13909,30136,72,2,f +13909,30173b,297,1,f +13909,3031,0,1,f +13909,3176,14,1,f +13909,3626cpr0746,14,1,f +13909,3673,71,2,f +13909,3673,71,1,t +13909,3700,0,2,f +13909,3709,72,1,f +13909,4740,0,1,f +13909,6126b,182,2,f +13909,6141,4,1,t +13909,6141,27,13,f +13909,6141,27,1,t +13909,6141,4,8,f +13909,87079,0,1,f +13909,970c00pr0274,1,1,f +13909,973pr1896c01,1,1,f +13909,98133pr0002,1,1,f +13909,98136,27,2,f +13910,2432,0,1,f +13910,2435,2,1,f +13910,2456,4,2,f +13910,2458,8,1,f +13910,2460,2,1,f +13910,2479,0,1,f +13910,2508,7,1,f +13910,3001,4,4,f +13910,3001,1,4,f +13910,3001,2,4,f +13910,3001,14,6,f +13910,3001,0,4,f +13910,3001,15,4,f +13910,3001pr1,14,1,f +13910,3002,4,4,f +13910,3002,0,2,f +13910,3002,15,2,f +13910,3002,1,4,f +13910,3002,2,2,f +13910,3002,14,4,f +13910,3003,1,12,f +13910,3003,4,12,f +13910,3003,15,8,f +13910,3003,2,8,f +13910,3003,0,8,f +13910,3003,14,12,f +13910,3004,2,6,f +13910,3004,0,6,f +13910,3004,4,10,f +13910,3004,14,10,f +13910,3005,1,10,f +13910,3005,15,8,f +13910,3005pe1,15,2,f +13910,3005pe1,14,2,f +13910,3007,1,2,f +13910,30076,4,1,f +13910,30078,2,1,f +13910,3008,14,2,f +13910,3008,4,2,f +13910,3009,1,2,f +13910,3009,14,2,f +13910,3009,4,2,f +13910,3009,15,1,f +13910,3009pb012,15,1,f +13910,3010,1,10,f +13910,3010,14,6,f +13910,3010,0,4,f +13910,3010,4,10,f +13910,3010,15,4,f +13910,3020,14,4,f +13910,3020,4,2,f +13910,3020,1,4,f +13910,3020,0,2,f +13910,3021,4,2,f +13910,3021,14,2,f +13910,30285,15,8,f +13910,3030,1,1,f +13910,3032,1,1,f +13910,3034,4,2,f +13910,3039,42,4,f +13910,3039,1,4,f +13910,3039,4,4,f +13910,30391,0,8,f +13910,3046a,4,4,f +13910,3062b,34,2,f +13910,3062b,36,2,f +13910,3135c02,4,1,f +13910,3245bpx3,4,1,f +13910,3245bpx6,14,1,f +13910,3297,4,2,f +13910,3298,1,6,f +13910,3298,4,2,f +13910,3298p13,4,4,f +13910,33303,15,2,f +13910,33303,14,4,f +13910,3334,2,1,f +13910,3471,2,1,f +13910,3660,1,4,f +13910,3660,4,2,f +13910,3675,4,4,f +13910,3730,0,1,f +13910,3795,1,2,f +13910,3795,4,2,f +13910,3823,40,1,f +13910,3823,41,1,f +13910,3829c01,4,1,f +13910,3829c01,15,1,f +13910,3941,42,2,f +13910,3960p01,15,2,f +13910,4079,14,2,f +13910,4083,0,1,f +13910,4132,1,2,f +13910,4132,4,1,f +13910,4133,15,3,f +13910,4175,7,2,f +13910,4286,4,2,f +13910,4287,1,2,f +13910,4287,4,2,f +13910,4345b,15,1,f +13910,4346p03,15,1,f +13910,4727,2,4,f +13910,4728,14,1,f +13910,4728,4,2,f +13910,4728,1,1,f +13910,6064,2,1,f +13910,6065,2,1,f +13910,6187,7,1,f +13910,6234,15,3,f +13910,6235,4,1,f +13910,6235,1,2,f +13910,6249,8,2,f +13910,6255,2,2,f +13910,cre001,9999,1,f +13910,cre002,9999,1,f +13910,cre003,9999,1,f +13911,11106,179,1,f +13911,11122pr0001,41,1,f +13911,11126,14,1,f +13911,11127,41,6,f +13911,11767,72,1,f +13911,13361pr0004,15,1,f +13911,2339,70,2,f +13911,2423,2,2,f +13911,2456,70,2,f +13911,2780,0,1,t +13911,2780,0,2,f +13911,3004,14,1,f +13911,3004,25,1,f +13911,3004,4,1,f +13911,3020,2,2,f +13911,3022,70,3,f +13911,3023,70,2,f +13911,30374,41,1,f +13911,30383,72,1,f +13911,3039,4,1,f +13911,3040b,288,1,f +13911,30526,72,1,f +13911,32013,72,2,f +13911,32062,4,4,f +13911,32064b,0,1,f +13911,32249,71,2,f +13911,32474,0,1,f +13911,3308,484,1,f +13911,3622,2,1,f +13911,3623,2,3,f +13911,3626cpr1207,15,1,f +13911,3665,2,1,f +13911,3666,288,1,f +13911,3701,70,2,f +13911,3705,0,1,f +13911,3710,28,2,f +13911,3713,4,1,f +13911,3832,72,1,f +13911,3937,4,1,f +13911,4032a,4,1,f +13911,43093,1,1,f +13911,44302a,0,1,f +13911,44674,0,1,f +13911,4497,308,1,f +13911,59426,72,1,f +13911,59443,0,2,f +13911,59900,297,1,f +13911,60474,15,1,f +13911,60481,288,2,f +13911,6134,0,1,f +13911,64567,0,1,f +13911,6536,14,1,f +13911,6589,19,1,f +13911,85984,4,1,f +13911,970c00pr0448,15,1,f +13911,973pr2357c01,15,1,f +13911,98138,41,3,f +13911,98138,41,1,t +13911,98560,28,4,f +13912,3003,15,2,f +13912,3003,70,6,f +13912,3005,15,4,f +13912,3062b,47,5,f +13912,3062b,36,8,f +13912,3065,36,6,f +13912,3065,34,6,f +13912,6141,34,15,f +13912,6141,46,15,f +13912,6141,33,15,f +13912,6141,70,6,f +13912,6141,47,12,f +13912,6141,36,15,f +13912,6141,15,5,f +13913,2736,71,2,f +13913,2780,0,88,f +13913,3069b,15,1,f +13913,32009,71,4,f +13913,32009,72,2,f +13913,32013,0,5,f +13913,32014,0,12,f +13913,32034,0,6,f +13913,32039,0,6,f +13913,32054,71,10,f +13913,32062,4,9,f +13913,32072,0,4,f +13913,32073,71,8,f +13913,32123b,71,9,f +13913,32138,0,3,f +13913,32140,25,4,f +13913,32140,72,13,f +13913,32184,0,5,f +13913,32269,0,2,f +13913,32270,0,2,f +13913,32271,151,10,f +13913,32278,151,2,f +13913,32291,71,4,f +13913,32293,0,4,f +13913,32316,71,18,f +13913,32348,71,6,f +13913,32498,0,2,f +13913,32523,72,10,f +13913,32524,151,20,f +13913,32525,151,6,f +13913,32526,72,14,f +13913,32556,19,6,f +13913,32557,0,6,f +13913,3673,71,6,f +13913,3705,0,4,f +13913,3706,0,2,f +13913,3708,0,1,f +13913,3713,71,11,f +13913,3749,19,4,f +13913,40490,151,14,f +13913,41239,151,10,f +13913,41669,25,10,f +13913,41678,71,8,f +13913,42003,71,16,f +13913,4274,71,2,f +13913,4297447,9999,1,f +13913,43093,1,24,f +13913,44294,71,4,f +13913,44309,0,4,f +13913,44809,71,1,f +13913,4519,71,19,f +13913,4558560,9999,1,f +13913,45590,0,4,f +13913,48989,71,14,f +13913,53550,148,2,f +13913,53787,151,3,f +13913,53788,151,1,f +13913,53792,151,1,f +13913,53793,151,2,f +13913,53992,0,2,f +13913,54271,148,1,f +13913,54821,14,3,f +13913,54821,2,3,f +13913,54821,4,3,f +13913,54821,1,3,f +13913,55013,72,4,f +13913,55615,71,6,f +13913,55804,0,1,f +13913,55805,0,4,f +13913,55806,0,2,f +13913,56145,71,4,f +13913,57482,0,1,f +13913,59426,72,2,f +13913,59443,71,4,f +13913,60483,0,8,f +13913,60484,71,2,f +13913,60485,71,2,f +13913,61069,151,3,f +13913,61070,151,2,f +13913,61071,151,2,f +13913,64892,151,1,f +13913,6536,71,8,f +13913,6558,1,52,f +13913,6575,72,2,f +13913,6587,72,6,f +13913,6589,19,1,f +13913,6628,0,10,f +13913,6629,72,4,f +13913,85543,15,2,f +13914,3003,15,13,f +13914,3005,15,18,f +13914,3022,15,1,f +13914,3023,15,4,f +13914,3062b,36,2,f +13914,3062b,33,4,f +13914,3626a,47,6,f +13914,3666,15,4,f +13914,3710,15,4,f +13914,4733,15,6,f +13914,6141,36,7,f +13914,6141,46,4,f +13914,6141,15,4,f +13914,6141,33,1,t +13914,6141,34,1,t +13914,6141,33,15,f +13914,6141,41,6,f +13914,6141,36,1,t +13914,6141,182,1,t +13914,6141,46,1,t +13914,6141,182,4,f +13914,6141,34,7,f +13914,6141,15,1,t +13914,6141,41,1,t +13915,11215,71,4,f +13915,11477,15,4,f +13915,12825,71,11,f +13915,12825,0,4,f +13915,12825,4,1,f +13915,12825,15,3,f +13915,15068,15,8,f +13915,15068pr0005,15,4,f +13915,15573,72,3,f +13915,15573,15,8,f +13915,2357,15,2,f +13915,2412b,0,4,f +13915,2412b,14,1,f +13915,2412b,80,8,f +13915,2420,14,4,f +13915,2431,0,1,f +13915,2569,71,1,f +13915,2639,15,2,f +13915,2653,71,2,f +13915,2654,0,14,f +13915,2654pr0001,0,4,f +13915,2780,0,2,f +13915,2780,0,1,t +13915,298c02,71,2,f +13915,298c02,71,1,t +13915,3001,15,1,f +13915,3004,71,1,f +13915,3005,70,6,f +13915,3009,70,1,f +13915,3010,70,4,f +13915,3020,0,5,f +13915,3020,1,5,f +13915,3020,71,2,f +13915,3021,4,2,f +13915,3021,72,2,f +13915,3021,15,4,f +13915,3022,71,4,f +13915,3022,15,2,f +13915,3023,71,4,f +13915,3023,40,2,f +13915,3023,0,9,f +13915,3023,14,7,f +13915,3023,70,2,f +13915,3024,71,9,f +13915,3024,71,1,t +13915,3036,70,1,f +13915,30374,71,3,f +13915,3039pr0002,15,1,f +13915,30414,4,1,f +13915,3062b,27,2,f +13915,3062b,80,4,f +13915,3068b,15,3,f +13915,3069b,40,2,f +13915,3069b,15,2,f +13915,3069bpr0138,191,2,f +13915,3176,15,2,f +13915,32028,71,2,f +13915,32324,71,1,f +13915,32531,0,1,f +13915,3299,15,2,f +13915,3626cpr1533a,70,1,f +13915,3626cpr1534,78,1,f +13915,3626cpr1535,78,1,f +13915,3626cpr1536,78,1,f +13915,3660,15,2,f +13915,3666,70,2,f +13915,3666,15,2,f +13915,3666,0,2,f +13915,3710,1,2,f +13915,3710,71,4,f +13915,3795,71,2,f +13915,3795,4,2,f +13915,3795,15,3,f +13915,3829c01,71,1,f +13915,3894,0,1,f +13915,3958,15,1,f +13915,3962b,0,2,f +13915,4070,15,2,f +13915,4081b,14,2,f +13915,4081b,0,5,f +13915,4162,15,4,f +13915,4176,40,1,f +13915,41769,4,1,f +13915,41770,4,1,f +13915,42446,0,1,t +13915,42446,0,4,f +13915,4282,15,1,f +13915,43722,15,1,f +13915,43722,4,1,f +13915,43723,15,1,f +13915,43723,4,1,f +13915,44301a,71,1,f +13915,44728,14,1,f +13915,4477,0,2,f +13915,4510,71,2,f +13915,45677,15,1,f +13915,4697b,71,2,f +13915,4697b,71,1,t +13915,4740,47,1,f +13915,48336,0,4,f +13915,48729b,71,7,f +13915,48729b,0,1,f +13915,48729b,71,1,t +13915,48729b,0,1,t +13915,5102c14,1,1,f +13915,51739,15,4,f +13915,52031,15,2,f +13915,54200,33,1,t +13915,54200,80,1,t +13915,54200,15,1,t +13915,54200,4,1,t +13915,54200,15,2,f +13915,54200,80,10,f +13915,54200,33,16,f +13915,54200,4,2,f +13915,55982,15,4,f +13915,59443,70,2,f +13915,59900,15,1,f +13915,59900,36,2,f +13915,6020,0,1,f +13915,60470a,71,2,f +13915,60478,0,1,f +13915,60897,0,1,f +13915,6091,70,2,f +13915,61252,72,4,f +13915,6140,0,1,f +13915,61409,80,2,f +13915,6141,0,12,f +13915,6141,36,1,t +13915,6141,14,4,f +13915,6141,0,1,t +13915,6141,15,5,f +13915,6141,27,2,f +13915,6141,27,1,t +13915,6141,15,1,t +13915,6141,47,6,f +13915,6141,80,1,t +13915,6141,33,1,t +13915,6141,33,5,f +13915,6141,80,10,f +13915,6141,14,1,t +13915,6141,36,2,f +13915,6141,47,1,t +13915,62113,0,1,f +13915,62810,308,1,f +13915,64567,0,4,f +13915,64567,0,1,t +13915,64798,70,1,f +13915,6587,28,4,f +13915,6636,72,2,f +13915,6636,0,1,f +13915,85861,320,8,f +13915,85861,320,1,t +13915,85984,0,4,f +13915,85984,15,8,f +13915,85984,71,8,f +13915,87079,15,1,f +13915,87544,40,4,f +13915,87552,40,2,f +13915,87618,0,1,f +13915,87994,70,1,f +13915,87994,70,1,t +13915,88072,71,5,f +13915,88646,71,1,f +13915,88704,0,4,f +13915,89201,0,4,f +13915,91049,80,4,f +13915,92081,0,1,f +13915,92280,0,9,f +13915,92583,40,1,f +13915,93274,71,2,f +13915,96874,25,1,t +13915,970c00,19,4,f +13915,973pr2811c01,19,1,f +13915,973pr2816c01,19,1,f +13915,973pr2817c01,19,1,f +13915,973pr2818c01,19,1,f +13915,98138,27,2,f +13915,98138,27,1,t +13915,98371,308,1,f +13915,99206,71,4,f +13915,99207,4,2,f +13915,99207,71,12,f +13915,99780,15,13,f +13915,99780,4,2,f +13916,2335p30,15,1,f +13916,2345,7,2,f +13916,2345p03,0,2,f +13916,2357,0,1,f +13916,2401,0,1,f +13916,2420,7,5,f +13916,2420,0,2,f +13916,2423,2,2,f +13916,2453a,7,1,f +13916,2488,2,1,f +13916,2489,6,1,f +13916,2518,2,11,f +13916,2524,6,1,f +13916,2525p31,15,1,f +13916,2526,4,1,f +13916,2526,6,1,f +13916,2527,6,1,f +13916,2528pb01,0,1,f +13916,2530,8,4,f +13916,2536,6,5,f +13916,2537a,0,1,f +13916,2539,8,1,f +13916,2541,6,2,f +13916,2542,4,2,f +13916,2543,4,1,f +13916,2544,6,1,f +13916,2545,0,1,f +13916,2546p01,4,1,f +13916,2547,8,1,f +13916,2548,8,1,f +13916,2549,6,1,f +13916,2550c01,6,1,f +13916,2551,6,1,f +13916,2555,0,4,f +13916,2561,6,2,f +13916,2562,6,2,f +13916,2563,6,1,f +13916,2566,0,1,f +13916,2566,6,1,f +13916,3001,0,2,f +13916,3002,7,1,f +13916,3003,7,2,f +13916,3004,0,2,f +13916,3005,7,1,f +13916,3005,0,2,f +13916,3009,0,4,f +13916,3010,0,4,f +13916,3020,7,2,f +13916,3020,0,1,f +13916,3023,0,1,f +13916,3023,7,6,f +13916,3024,0,3,f +13916,3033,0,1,f +13916,3036,0,1,f +13916,3040b,0,1,f +13916,3040b,7,2,f +13916,3062b,0,6,f +13916,3062b,2,2,f +13916,3298,7,1,f +13916,3455,7,4,f +13916,3622,0,3,f +13916,3626apr0001,14,1,f +13916,3626bp35,14,1,f +13916,3626bp47,14,1,f +13916,3626bp49,14,1,f +13916,3659,7,1,f +13916,3700,0,2,f +13916,3706,0,1,f +13916,3710,0,1,f +13916,3747b,0,1,f +13916,3811p02,7,1,f +13916,3849,6,1,f +13916,3957a,0,1,f +13916,4032a,0,1,f +13916,4032a,2,3,f +13916,4070,7,3,f +13916,4071,0,2,f +13916,4085b,7,3,f +13916,4213,7,1,f +13916,4265a,7,1,f +13916,4287,0,1,f +13916,4315,0,1,f +13916,4424,6,1,f +13916,4600,0,2,f +13916,4611,8,2,f +13916,46212,7,3,f +13916,46212,0,2,f +13916,4624,6,4,f +13916,4738b,6,1,f +13916,4739b,6,1,f +13916,4784,8,1,f +13916,4844,0,1,f +13916,57503,334,2,f +13916,57504,334,2,f +13916,57505,334,2,f +13916,57506,334,2,f +13916,6141,14,1,f +13916,6141,14,1,t +13916,6141,46,2,f +13916,84943,8,1,f +13916,970c00,15,3,f +13916,970d01,0,1,f +13916,973p31c01,14,1,f +13916,973p34c01,1,1,f +13916,973p36c01,0,1,f +13916,973pb0204c01,15,1,f +13918,2460,288,1,f +13918,3004,15,1,f +13918,3020,288,2,f +13918,3039,42,1,f +13918,3710,288,2,f +13918,3747b,15,1,f +13918,4617b,0,1,f +13919,2357,378,4,f +13919,2420,378,2,f +13919,2420,484,1,f +13919,2431,484,1,f +13919,2431,2,1,f +13919,2431,320,1,f +13919,2445,4,1,f +13919,2453a,8,1,f +13919,2454a,18,1,f +13919,2456,1,2,f +13919,2456,14,2,f +13919,2456,4,2,f +13919,2456,7,2,f +13919,2456,15,2,f +13919,2639,7,1,f +13919,3001,25,4,f +13919,3001,14,14,f +13919,3001,1,14,f +13919,3001,379,1,f +13919,3001,7,4,f +13919,3001,3,1,f +13919,3001,2,4,f +13919,3001,4,14,f +13919,3001,15,14,f +13919,3001,0,8,f +13919,3002,0,6,f +13919,3002,14,8,f +13919,3002,2,2,f +13919,3002,19,12,f +13919,3002,378,1,f +13919,3002,320,1,f +13919,3002,25,2,f +13919,3002,7,2,f +13919,3002,4,8,f +13919,3002,15,10,f +13919,3002,1,8,f +13919,3003,378,1,f +13919,3003,0,18,f +13919,3003,33,12,f +13919,3003,36,12,f +13919,3003,7,36,f +13919,3003,15,30,f +13919,3003,1,30,f +13919,3003,25,6,f +13919,3003,5,1,f +13919,3003,4,30,f +13919,3003,2,18,f +13919,3003,14,27,f +13919,3004,1,36,f +13919,3004,4,34,f +13919,3004,14,28,f +13919,3004,2,22,f +13919,3004,15,40,f +13919,3004,8,10,f +13919,3004,0,28,f +13919,3004,25,8,f +13919,3004,7,8,f +13919,3005,33,4,f +13919,3005,6,10,f +13919,3005,4,30,f +13919,3005,25,5,f +13919,3005,484,1,f +13919,3005,0,26,f +13919,3005,2,14,f +13919,3005,36,1,f +13919,3005,1,30,f +13919,3005,15,28,f +13919,3005,52,1,f +13919,3005,118,1,f +13919,3005pe1,14,4,f +13919,3005pe2,8,2,f +13919,3005pe3,8,2,f +13919,3005px2,14,2,f +13919,3006,2,1,f +13919,3006,15,1,f +13919,3006,0,1,f +13919,3007,1,2,f +13919,3007,15,2,f +13919,3007,18,1,f +13919,3007,14,2,f +13919,3007,4,2,f +13919,3008,7,2,f +13919,3008,484,1,f +13919,3008,19,1,f +13919,3008,27,1,f +13919,3009,484,1,f +13919,3009,2,57,f +13919,3009,4,4,f +13919,3009,15,4,f +13919,3009,14,2,f +13919,3009,1,4,f +13919,3010,0,4,f +13919,3010,14,6,f +13919,3010,4,6,f +13919,3010,2,4,f +13919,3010,25,2,f +13919,3010,15,6,f +13919,3010,378,1,f +13919,3010,8,2,f +13919,3010,1,6,f +13919,3010p01,14,2,f +13919,30144,4,1,f +13919,3020,15,4,f +13919,3020,7,2,f +13919,3020,4,2,f +13919,3020,1,2,f +13919,3020,0,2,f +13919,3020,14,2,f +13919,3020,25,8,f +13919,3020,2,2,f +13919,3021,14,2,f +13919,3021,484,1,f +13919,3021,1,4,f +13919,3021,8,2,f +13919,3021,15,4,f +13919,3021,4,2,f +13919,3021,2,2,f +13919,3021,25,2,f +13919,3022,8,2,f +13919,3022,0,2,f +13919,3022,14,4,f +13919,3022,2,2,f +13919,3022,4,4,f +13919,3022,26,4,f +13919,3022,1,6,f +13919,3022,378,1,f +13919,3022,15,6,f +13919,3029,14,1,f +13919,3029,4,1,f +13919,3031,5,1,f +13919,3031,25,1,f +13919,3032,0,5,f +13919,3033,462,1,f +13919,3034,14,2,f +13919,3034,378,1,f +13919,3034,15,2,f +13919,3034,25,1,f +13919,3034,1,3,f +13919,3034,4,2,f +13919,3035,25,1,f +13919,3035,14,1,f +13919,30363,14,1,f +13919,30363,7,1,f +13919,3037,4,8,f +13919,3037,6,1,f +13919,3038,8,1,f +13919,3039,8,2,f +13919,3039,33,4,f +13919,3039,4,6,f +13919,3039,73,10,f +13919,3039,36,2,f +13919,3039,47,2,f +13919,3039,15,4,f +13919,3039,1,4,f +13919,3040b,7,2,f +13919,3040b,4,4,f +13919,3040b,8,2,f +13919,3040b,15,4,f +13919,3040b,1,4,f +13919,3040b,25,4,f +13919,3040b,14,2,f +13919,3040b,2,2,f +13919,3041,6,1,f +13919,3041,4,3,f +13919,3043,4,2,f +13919,3044c,0,9,f +13919,3046a,8,1,f +13919,3046a,0,1,f +13919,3062b,73,1,f +13919,3062b,47,1,f +13919,3065,33,14,f +13919,3065,36,14,f +13919,3065,47,8,f +13919,3066,36,2,f +13919,3297,14,1,f +13919,3298,15,4,f +13919,3298,4,4,f +13919,3298,272,1,f +13919,3298,1,4,f +13919,3298,7,1,f +13919,3298p19,14,1,f +13919,3298p21,1,1,f +13919,3455,1,1,f +13919,3622,45,1,f +13919,3622,2,2,f +13919,3622,8,2,f +13919,3622,484,9,f +13919,3623,378,3,f +13919,3660,1,2,f +13919,3660,4,2,f +13919,3660,15,2,f +13919,3665,7,2,f +13919,3665,15,4,f +13919,3665,2,2,f +13919,3665,4,4,f +13919,3665,8,2,f +13919,3665,14,2,f +13919,3665,1,4,f +13919,3665,25,4,f +13919,3666,4,10,f +13919,3666,118,1,f +13919,3666,25,1,f +13919,3666,14,1,f +13919,3666,378,4,f +13919,3666,6,1,f +13919,3675,1,1,f +13919,3675,4,1,f +13919,3678a,15,1,f +13919,3710,15,2,f +13919,3710,378,6,f +13919,3710,1,2,f +13919,3710,4,2,f +13919,3747b,1,2,f +13919,3747b,25,1,f +13919,3795,378,1,f +13919,3795,25,1,f +13919,3795,14,3,f +13919,3795,4,2,f +13919,3795,15,2,f +13919,3795,1,2,f +13919,3832,14,1,f +13919,3832,1,1,f +13919,3832,19,1,f +13919,3832,15,1,f +13919,3832,25,1,f +13919,3941,1,7,f +13919,3942b,8,1,f +13919,3942c,15,13,f +13919,3957a,1,2,f +13919,4032a,14,1,f +13919,42022pb03,14,1,f +13919,4286,4,4,f +13919,4286,379,1,f +13919,4286,8,2,f +13919,4286,1,4,f +13919,4286,15,4,f +13919,4287,4,4,f +13919,4287,1,4,f +13919,4287,8,2,f +13919,4287,15,4,f +13919,4477,2,1,f +13919,4495b,14,1,f +13919,4589,1,6,f +13919,4727,2,5,f +13919,4728,143,1,f +13919,4728,14,1,f +13919,4744,14,1,f +13919,6111,2,1,f +13919,6192,41,1,f +13919,6216,2,1,f +13919,6216,1,1,f +13919,6636,320,1,f +13919,6636,462,1,f +13919,6636,27,1,f +13920,2346,0,4,f +13920,2815,0,2,f +13920,3482,7,10,f +13920,3483,0,2,f +13920,3634,0,2,f +13922,2445,25,1,f +13922,2456,25,1,f +13922,3001,25,1,f +13922,3003,25,2,f +13922,3004,25,2,f +13922,3022,2,1,f +13922,3039,25,8,f +13922,3040b,2,1,f +13922,3623,2,1,f +13922,3660,25,6,f +13922,3747b,25,4,f +13922,3795,25,1,f +13923,2456,1,1,f +13923,3001,4,2,f +13923,3002,4,2,f +13923,3003,14,2,f +13923,3003pe2,14,2,f +13923,4728,15,1,f +13923,4744px2,2,1,f +13924,2432,0,1,f +13924,2441,0,1,f +13924,2446px3,4,1,f +13924,2447,33,1,f +13924,2540,1,1,f +13924,2877,7,1,f +13924,30027,14,4,f +13924,30028,0,4,f +13924,3004,14,1,f +13924,3010,4,2,f +13924,3010p72,4,2,f +13924,3020,4,1,f +13924,30235,0,1,f +13924,3039p72,14,1,f +13924,3040b,46,2,f +13924,3062b,7,2,f +13924,3626bp04,14,1,f +13924,3626bpb0110,14,1,f +13924,3823,41,1,f +13924,3829c01,4,1,f +13924,3829c01,15,1,f +13924,3962b,0,1,f +13924,3997,4,1,f +13924,4286,14,2,f +13924,4485,0,1,f +13924,4859,14,1,f +13924,6014,15,4,f +13924,6015,0,4,f +13924,73037c01,4,1,f +13924,970c00,2,2,f +13924,973p73c01,2,1,f +13924,973pb0024c01,15,1,f +13926,3007mia,15,7,f +13926,3007mia,4,1,f +13926,3297mia,2,12,f +13926,3298mia,2,4,f +13926,3299mia,2,3,f +13926,3853mi,15,5,f +13926,3856mi,2,5,f +13926,3861mi,15,1,f +13926,604mi,15,4,f +13926,archmia,4,1,f +13926,m3001,15,17,f +13926,m3001,4,68,f +13926,m3003,15,2,f +13926,m3003,4,27,f +13926,x1561,2,1,f +13928,12825,4,2,f +13928,14520,4,1,f +13928,2412b,179,3,f +13928,2431,72,4,f +13928,2460,71,1,f +13928,2540,14,2,f +13928,2540,4,2,f +13928,2654,71,1,f +13928,3001,4,1,f +13928,3005,4,2,f +13928,3020,72,7,f +13928,3020,15,1,f +13928,3022,72,5,f +13928,3022,14,4,f +13928,3023,15,4,f +13928,3023,4,5,f +13928,3023,71,14,f +13928,3024,15,1,t +13928,3024,47,2,f +13928,3024,15,4,f +13928,3024,47,1,t +13928,3030,72,1,f +13928,3034,72,2,f +13928,30374,71,4,f +13928,30377,0,1,t +13928,30377,0,2,f +13928,30553,0,1,f +13928,30592,72,1,f +13928,3062b,71,8,f +13928,3065,40,4,f +13928,3069b,14,3,f +13928,3069b,4,5,f +13928,3070b,4,1,t +13928,3070b,4,6,f +13928,3176,71,1,f +13928,32028,72,2,f +13928,3665,4,2,f +13928,3710,4,10,f +13928,3795,15,2,f +13928,3795,0,1,f +13928,3832,71,1,f +13928,4070,72,2,f +13928,4081b,71,6,f +13928,4085c,4,8,f +13928,44301a,0,2,f +13928,44302a,14,2,f +13928,44567a,72,1,f +13928,4488,71,4,f +13928,4599b,71,1,t +13928,4599b,71,2,f +13928,4600,0,4,f +13928,4623,71,1,f +13928,4624,71,6,f +13928,4865a,4,4,f +13928,4865a,72,1,f +13928,50950,4,4,f +13928,51739,14,1,f +13928,54200,14,2,f +13928,54200,14,1,t +13928,54200,71,1,t +13928,54200,71,6,f +13928,59900,71,2,f +13928,59900,25,4,f +13928,6014b,71,6,f +13928,6019,72,4,f +13928,60478,71,2,f +13928,60592,4,2,f +13928,60601,40,2,f +13928,6087,71,2,f +13928,6141,36,4,f +13928,6141,36,1,t +13928,6231,72,4,f +13928,6231,4,2,f +13928,63864,4,2,f +13928,63868,15,2,f +13928,6636,4,1,f +13928,85984,4,1,f +13928,87079,4,2,f +13928,87079,71,2,f +13928,87414,0,6,f +13928,87697,0,6,f +13928,88930,4,1,f +13928,93274,72,1,f +13928,98138,46,1,t +13928,98138,46,6,f +13928,98138,71,10,f +13928,98138,71,1,t +13928,98282,15,2,f +13928,99207,4,2,f +13928,99781,71,1,f +13931,3002a,4,1,f +13931,3002a,0,1,f +13931,3003,1,1,f +13931,3004,0,1,f +13931,3004,4,4,f +13931,3004,14,1,f +13931,3023,4,1,f +13931,3034,4,1,f +13931,3038,4,2,f +13931,3039,4,1,f +13931,3039,1,2,f +13931,3045,4,2,f +13931,3137c01,0,2,f +13931,3139,0,4,f +13931,3183a,4,1,f +13931,3612,1,2,f +13931,3613,1,2,f +13931,3613,15,2,f +13931,3614a,14,4,f +13931,685p01,14,1,f +13931,685px4,14,1,f +13931,792c03,1,1,f +13931,792c03,15,1,f +13931,x196,0,1,f +13931,x197,6,1,f +13933,3626bpb0048,14,1,f +13933,41334,8,1,f +13933,970c00,0,1,f +13933,973pb0056c01,15,1,f +13935,32138,27,2,f +13935,32552,0,1,f +13935,43559,297,1,f +13935,48989,71,1,f +13935,60176,0,2,f +13935,60895,0,1,f +13935,60896,0,2,f +13935,60900,0,3,f +13935,64251,27,2,f +13935,64253,0,1,f +13935,64262,57,1,f +13935,64263pat0001,0,2,f +13935,87791,0,2,f +13936,2493b,4,2,f +13936,2494,47,2,f +13936,3081cc01,4,4,f +13936,3853,4,6,f +13936,3854,15,8,f +13936,3855,47,2,f +13936,3856,2,8,f +13936,3861b,4,2,f +13936,47899c01,4,1,f +13936,73194c01,4,1,f +13936,73312,4,2,f +13938,51686,43,1,f +13938,clikits004,15,1,f +13938,clikits004,13,1,f +13939,30375,25,1,f +13939,30377,3,2,f +13939,30530,25,1,f +13939,x117px10,3,1,f +13942,32062,0,6,f +13942,32173,8,2,f +13942,32174,4,10,f +13942,32174,57,1,f +13942,32270,7,1,f +13942,3737,0,1,f +13942,3749,19,4,f +13942,44135,8,1,f +13942,44136,8,1,f +13942,44138,4,2,f +13942,44139,8,1,f +13942,44140,4,1,f +13942,44143,179,1,f +13942,44148,8,2,f +13942,44247,8,1,f +13942,44807,4,1,f +13942,44808,179,1,f +13942,4519,7,3,f +13942,45749,8,2,f +13942,6538b,8,1,f +13942,kraataund,22,2,f +13943,2780,0,2,f +13943,32054,0,2,f +13943,32062,0,2,f +13943,32174,72,5,f +13943,32209,15,1,f +13943,32270,71,4,f +13943,3705,0,2,f +13943,3713,71,2,f +13943,43093,1,2,f +13943,4519,71,2,f +13943,47296,72,4,f +13943,47297,288,2,f +13943,47298,288,2,f +13943,47299,288,2,f +13943,47305,288,1,f +13943,47306,288,1,f +13943,47307,288,1,f +13943,47310,288,2,f +13943,47311,288,2,f +13943,47312,72,1,f +13943,47313,36,1,f +13943,47314,179,2,f +13943,49423,288,1,f +13944,2446px2,15,1,f +13944,2447,0,1,t +13944,2447,0,1,f +13944,2447,41,1,f +13944,2447,41,1,t +13944,3022,1,3,f +13944,30567,1,3,f +13944,3626bp02,14,1,f +13944,3626bp04,14,1,f +13944,3626bpb0103,14,1,f +13944,3834,15,1,f +13944,3835,0,1,f +13944,3838,14,1,f +13944,3900p01,15,1,f +13944,4142696pb1,89,1,f +13944,4142696pb2,89,1,f +13944,4142696pb3,89,1,f +13944,4485pb02,15,1,f +13944,6158,0,1,f +13944,970c00,0,1,f +13944,970c00,15,1,f +13944,970x026,7,1,f +13944,973pb0251c01,7,1,f +13944,973px168c01,15,1,f +13944,973px9c01,0,1,f +13945,3708,0,14,f +13945,3737,0,14,f +13950,15392,72,2,f +13950,15392,72,1,t +13950,15403,0,2,f +13950,18031,179,1,f +13950,2639,72,1,f +13950,2780,0,2,f +13950,2780,0,1,t +13950,2877,71,2,f +13950,3021,72,1,f +13950,3023,1,1,f +13950,30273,1,1,f +13950,3039pr0018,0,1,f +13950,32000,72,1,f +13950,32054,0,2,f +13950,3626cpr1817,179,1,f +13950,3679,71,1,f +13950,3680,1,1,f +13950,3710,272,1,f +13950,3937,1,1,f +13950,43093,1,2,f +13950,43093,1,1,t +13950,6070,57,1,f +13950,6134,71,1,f +13950,61409,1,6,f +13950,6141,57,1,t +13950,6141,57,4,f +13950,62462,179,2,f +13950,63868,72,4,f +13950,75937,179,1,f +13950,85984,1,1,f +13950,970c00pr0968,71,1,f +13950,973pr3190c01,71,1,f +13950,99206,71,1,f +13951,2420,70,2,f +13951,30115,4,1,f +13951,3022,70,1,f +13951,4341,0,1,f +13951,6141,46,2,f +13951,6141,36,2,f +13951,6141,36,2,t +13951,6141,46,2,t +13953,2412b,0,1,f +13953,2444,0,2,f +13953,2654,0,1,f +13953,2780,0,50,f +13953,2780,0,1,t +13953,2819,0,1,f +13953,2905,14,7,f +13953,2950,0,1,f +13953,3004,0,1,f +13953,3021,0,1,f +13953,3023,14,3,f +13953,3068b,0,2,f +13953,32000,71,2,f +13953,32002,72,1,t +13953,32002,72,6,f +13953,32009,14,2,f +13953,32013,14,4,f +13953,32013,0,6,f +13953,32016,0,2,f +13953,32017,0,1,f +13953,32028,0,1,f +13953,32030,0,1,f +13953,32034,0,4,f +13953,32039,71,4,f +13953,32054,0,13,f +13953,32056,0,6,f +13953,32062,4,26,f +13953,32072,14,2,f +13953,32073,71,13,f +13953,32123b,14,1,t +13953,32123b,14,22,f +13953,32140,14,1,f +13953,32140,72,2,f +13953,32184,71,8,f +13953,32198,19,2,f +13953,32199,0,2,f +13953,32249,14,2,f +13953,32250,0,2,f +13953,32250,14,2,f +13953,32269,19,2,f +13953,32270,0,10,f +13953,32271,0,2,f +13953,32271,14,3,f +13953,32278,14,6,f +13953,32316,14,5,f +13953,32316,71,6,f +13953,32348,14,4,f +13953,32449,14,12,f +13953,32523,14,9,f +13953,32523,0,4,f +13953,32524,0,3,f +13953,32524,71,2,f +13953,32524,14,5,f +13953,32525,14,5,f +13953,32526,1,2,f +13953,32526,14,4,f +13953,32556,19,4,f +13953,3298,0,1,f +13953,33299a,0,4,f +13953,3623,14,2,f +13953,3647,72,1,f +13953,3648b,72,1,f +13953,3673,71,1,t +13953,3673,71,2,f +13953,3705,0,12,f +13953,3706,0,4,f +13953,3707,0,6,f +13953,3713,71,1,t +13953,3713,71,22,f +13953,3749,19,7,f +13953,3941,46,1,f +13953,40490,14,6,f +13953,41239,14,3,f +13953,42003,14,8,f +13953,4274,71,1,t +13953,4274,71,16,f +13953,43093,1,26,f +13953,44294,71,7,f +13953,44809,0,1,f +13953,4519,71,25,f +13953,45982,0,2,f +13953,4716,71,2,f +13953,48989,71,2,f +13953,50950,14,2,f +13953,54200,47,2,f +13953,54200,14,1,f +13953,54200,47,1,t +13953,54200,14,1,t +13953,56908,14,4,f +13953,59426,72,6,f +13953,59443,0,16,f +13953,59443,71,6,f +13953,60483,0,17,f +13953,60484,0,3,f +13953,60485,71,3,f +13953,6141,47,2,f +13953,6141,182,1,t +13953,6141,36,1,t +13953,6141,47,1,t +13953,6141,36,2,f +13953,6141,182,2,f +13953,61480,0,2,f +13953,61903,71,2,f +13953,63869,71,1,f +13953,64179,71,1,f +13953,64394,14,1,f +13953,64451,72,1,f +13953,64680,14,1,f +13953,6536,14,12,f +13953,6536,1,1,f +13953,6553,0,2,f +13953,6558,1,23,f +13953,6587,28,5,f +13953,6589,19,6,f +13953,6632,14,2,f +13953,6632,0,4,f +13953,6636,14,4,f +13953,87082,71,6,f +13953,87083,72,2,f +13953,87407,71,2,f +13953,87761,0,1,f +13953,92693,71,4,f +13953,92907,0,4,f +13953,94130,9999,1,t +13955,2341,71,2,f +13955,2412b,71,5,f +13955,2412b,1,2,f +13955,2419,0,1,f +13955,2420,0,4,f +13955,2420,71,2,f +13955,2420,1,6,f +13955,2431,1,7,f +13955,2431,0,2,f +13955,2486,71,1,f +13955,2540,71,4,f +13955,2540,0,2,f +13955,2540,1,1,f +13955,2555,71,2,f +13955,2569,71,1,f +13955,2695,71,6,f +13955,2696,0,6,f +13955,2719,71,3,f +13955,2819,71,1,f +13955,298c05,71,1,t +13955,298c05,71,3,f +13955,3003,0,1,f +13955,3004,0,1,f +13955,3005,0,2,f +13955,3007,0,1,f +13955,3009,0,2,f +13955,3009,1,2,f +13955,3010,0,1,f +13955,3010,71,1,f +13955,3020,0,1,f +13955,3020,1,10,f +13955,3020,71,5,f +13955,3021,1,2,f +13955,3021,71,3,f +13955,3021,0,3,f +13955,3022,0,1,f +13955,3023,71,3,f +13955,3023,0,6,f +13955,3023,4,4,f +13955,3023,1,16,f +13955,3024,4,2,f +13955,3024,1,11,f +13955,3032,0,1,f +13955,3034,0,1,f +13955,3034,4,1,f +13955,3034,1,1,f +13955,3035,0,2,f +13955,3036,71,1,f +13955,3039pc4,0,1,f +13955,3040b,0,1,f +13955,3040b,4,2,f +13955,3040p33,0,1,f +13955,3062b,71,2,f +13955,3063b,4,2,f +13955,3063b,1,6,f +13955,3068b,71,2,f +13955,3069b,0,4,f +13955,3069b,1,3,f +13955,3070b,0,1,t +13955,3070b,1,1,t +13955,3070b,1,6,f +13955,3070b,0,2,f +13955,32123b,71,2,f +13955,32123b,71,1,t +13955,3460,1,2,f +13955,3460,0,2,f +13955,3622,71,4,f +13955,3622,0,3,f +13955,3623,71,2,f +13955,3623,0,5,f +13955,3623,1,3,f +13955,3623,4,2,f +13955,3647,71,1,f +13955,3665,1,2,f +13955,3666,0,8,f +13955,3666,71,2,f +13955,3673,71,2,f +13955,3678b,4,2,f +13955,3700,0,4,f +13955,3700,71,2,f +13955,3701,0,2,f +13955,3705,0,1,f +13955,3706,0,3,f +13955,3710,1,4,f +13955,3710,0,4,f +13955,3710,4,4,f +13955,3713,71,1,t +13955,3713,71,2,f +13955,3743,71,1,f +13955,3749,71,3,f +13955,3794a,71,2,f +13955,3794a,1,1,f +13955,3794a,4,2,f +13955,3795,1,2,f +13955,3795,0,3,f +13955,3832,0,2,f +13955,3937,0,1,f +13955,3937,71,3,f +13955,3938,71,1,f +13955,3938,0,1,f +13955,3957a,71,4,f +13955,4032a,0,1,f +13955,4070,1,6,f +13955,4081b,1,8,f +13955,4081b,71,2,f +13955,4085c,71,2,f +13955,4085c,1,1,f +13955,4150,71,1,f +13955,4175,71,2,f +13955,4261,71,2,f +13955,4262,71,3,f +13955,4274,71,4,f +13955,4274,71,1,t +13955,4282,0,2,f +13955,4286,4,2,f +13955,4287,0,4,f +13955,4287,1,2,f +13955,4315,1,1,f +13955,4349,71,2,f +13955,44571,1,1,f +13955,4477,0,1,f +13955,4623,71,2,f +13955,4865a,4,2,f +13955,6005,1,10,f +13955,6019,0,4,f +13955,6019,71,4,f +13955,6091,4,4,f +13955,6091,1,10,f +13955,6091,0,2,f +13955,6134,4,2,f +13955,6140,71,2,f +13955,6141,46,1,t +13955,6141,0,1,t +13955,6141,36,1,t +13955,6141,71,1,t +13955,6141,0,11,f +13955,6141,46,4,f +13955,6141,36,4,f +13955,6141,71,20,f +13955,6180,4,1,f +13955,6541,1,2,f +13955,6541,0,1,f +13955,6541,71,2,f +13955,6589,71,1,f +13955,71075,383,6,f +13955,71076,383,4,f +13955,71128,383,2,f +13955,9244,71,1,f +13956,23186,28,1,f +13956,26562,15,1,f +13956,3626cpr1929,78,1,f +13956,88646pr0002,15,1,f +13956,970c00pr1051,0,1,f +13956,973pr3372c01,15,1,f +13959,2456,14,1,f +13959,3003,1,3,f +13959,30078,2,1,f +13959,4729,4,1,f +13959,4744pb09,4,1,f +13959,6215,2,2,f +13962,2446,4,1,f +13962,2446,1,1,f +13962,2446,0,3,f +13962,2446,14,1,f +13962,2447,33,4,f +13962,2447,0,2,f +13962,3626apr0001,14,6,f +13962,3838,0,3,f +13962,3838,14,1,f +13962,3838,4,1,f +13962,3838,1,1,f +13962,3962a,0,1,f +13962,4006,0,1,f +13962,4349,7,1,f +13962,4360,7,1,f +13962,4479,7,1,f +13962,4735,0,1,f +13962,970c00,1,1,f +13962,970c00,14,1,f +13962,970c00,0,3,f +13962,970c00,4,1,f +13962,973p52c01,0,2,f +13962,973p6bc02,15,1,f +13962,973p6cc01,15,1,f +13962,973p6dc01,15,1,f +13962,973p6ec01,15,1,f +13963,10258,0,1,f +13963,11597,10,2,f +13963,15391,71,2,f +13963,15392,72,3,f +13963,15392,72,1,t +13963,15446,0,1,f +13963,15573,72,2,f +13963,15706,72,2,f +13963,15712,72,7,f +13963,22380,2,1,f +13963,22385pr0010,33,1,f +13963,22385pr0011,46,1,f +13963,22385pr0012,35,1,f +13963,22391,179,1,f +13963,22394,35,1,f +13963,22402,35,1,f +13963,22408,179,1,f +13963,22484,35,3,f +13963,22487,179,1,f +13963,2540,1,1,f +13963,3004,2,1,f +13963,30171,148,1,f +13963,3021,72,2,f +13963,3022,1,1,f +13963,3023,182,2,f +13963,3062b,57,1,f +13963,33085,14,4,f +13963,3626cpr1781,14,1,f +13963,3937,1,2,f +13963,4032a,2,2,f +13963,41769,272,1,f +13963,41770,272,1,f +13963,48729b,57,1,f +13963,48729b,57,1,t +13963,60849,71,2,f +13963,60849,71,1,t +13963,60897,1,4,f +13963,6134,71,2,f +13963,6141,15,1,t +13963,6141,15,4,f +13963,6141,35,1,t +13963,6141,35,5,f +13963,61780,72,1,f +13963,75937,179,1,f +13963,85984,1,2,f +13963,87580,272,3,f +13963,970c00pr0978,2,1,f +13963,973pr3199c01,2,1,f +13963,98313,179,3,f +13965,132a,0,10,f +13965,242c01,4,10,f +13965,3001a,1,2,f +13965,3002a,1,2,f +13965,3003,0,1,f +13965,3004,47,4,f +13965,3004,14,2,f +13965,3004p50,4,1,f +13965,3005,14,2,f +13965,3009,14,6,f +13965,3009,1,1,f +13965,3009p01,1,2,f +13965,3010,1,4,f +13965,3010,14,3,f +13965,3010,47,2,f +13965,3020,0,4,f +13965,3020,14,1,f +13965,3021,0,2,f +13965,3022,14,1,f +13965,3022,0,2,f +13965,3028,1,1,f +13965,3032,0,1,f +13965,3037,4,2,f +13965,3037,1,2,f +13965,3037,47,1,f +13965,3038,47,2,f +13965,3040a,0,2,f +13965,3127,4,1,f +13965,3455,1,4,f +13965,559c01,4,1,f +13965,7049b,0,4,f +13965,711,1,2,f +13965,799c800,0,1,f +13965,801,14,1,f +13965,802,14,1,f +13965,805,0,1,f +13965,bb50,1,1,f +13965,rb00164,0,1,f +13966,777p04,15,1,f +13966,777p05,15,1,f +13966,777p07,15,1,f +13966,777p11,15,1,f +13966,777p15,15,1,f +13966,777px8,15,1,f +13968,3127,4,2,f +13968,3176,4,2,f +13968,3491,0,1,f +13968,3492c01,14,1,f +13968,73037,1,1,f +13969,4265a,7,10,f +13969,4273b,7,10,f +13969,4274,7,5,f +13970,11477,4,2,f +13970,11477,14,2,f +13970,14418,71,2,f +13970,15068,4,2,f +13970,15456,0,2,f +13970,16091,0,1,f +13970,24246,15,4,f +13970,24246,15,1,t +13970,2432,0,2,f +13970,3005,4,2,f +13970,3020,4,3,f +13970,3022,4,1,f +13970,3023,0,1,f +13970,3023,15,3,f +13970,30367c,4,1,f +13970,3660,0,2,f +13970,4032a,1,2,f +13970,4032a,14,1,f +13970,4070,14,4,f +13970,47458,4,2,f +13970,50745,4,2,f +13970,60474,4,1,f +13970,60475b,0,2,f +13970,60478,0,4,f +13970,60897,4,4,f +13970,6141,4,1,t +13970,6141,4,4,f +13970,85959pat0002,41,1,f +13970,92947,4,1,f +13970,93273,4,2,f +13970,95343,71,1,f +13970,95344,28,1,f +13970,95344,28,1,t +13970,98138pr0027,15,1,t +13970,98138pr0027,15,2,f +13970,99207,4,1,f +13970,99780,0,2,f +13971,10p08,2,1,f +13971,27c01,4,6,f +13971,3002a,14,2,f +13971,3004,15,20,f +13971,3004,0,10,f +13971,3005,15,6,f +13971,3005pt2b,15,1,f +13971,3005pt4b,15,1,f +13971,3008,15,6,f +13971,3009,0,1,f +13971,3009,15,5,f +13971,3010,0,4,f +13971,3010,15,6,f +13971,3010,14,1,f +13971,3010pb035e,14,1,f +13971,3021,15,2,f +13971,3022,15,2,f +13971,3022,0,1,f +13971,3023,15,2,f +13971,3030,0,2,f +13971,3035,0,3,f +13971,3035,14,1,f +13971,3036,0,1,f +13971,3037,47,1,f +13971,3062a,4,4,f +13971,3068a,4,2,f +13971,3068a,7,37,f +13971,3081cc01,4,2,f +13971,3137c01,0,2,f +13971,3139,0,4,f +13971,3144,15,2,f +13971,3185,4,2,f +13971,3186,4,2,f +13971,3187,4,2,f +13971,31cc01,4,2,f +13971,3297,4,1,f +13971,32bc01,4,2,f +13971,645cc01,4,2,f +13971,gtfruit,2,1,f +13973,2446,73,2,f +13973,2446,0,2,f +13973,2540,71,2,f +13973,2540,0,2,f +13973,2570,73,8,f +13973,2587pb02,73,3,f +13973,2587pb05,0,3,f +13973,30153,41,1,f +13973,30153,36,1,f +13973,30273,73,8,f +13973,30377,71,4,f +13973,3626bpa3,14,8,f +13973,3626bpao,14,1,f +13973,3626bpb0217,14,1,f +13973,3626bpr0190,15,1,f +13973,3626bpr0350,14,2,f +13973,3626bpr0351,14,2,f +13973,3626bpr0353,14,1,f +13973,3626bpx304,14,8,f +13973,3678b,71,1,f +13973,3678b,0,1,f +13973,3684,0,2,f +13973,3684,71,2,f +13973,3848,0,8,f +13973,3941,0,6,f +13973,3957a,0,1,f +13973,3957a,383,1,f +13973,40239,71,1,f +13973,4032a,4,4,f +13973,4032a,73,4,f +13973,43899,72,2,f +13973,4495a,73,2,f +13973,4495a,320,2,f +13973,4589,0,2,f +13973,4589,36,1,f +13973,4589,71,2,f +13973,4589,41,1,f +13973,48486,73,2,f +13973,48489,0,2,f +13973,48492,73,2,f +13973,48492,320,2,f +13973,48493,0,8,f +13973,48494pb03,151,2,f +13973,48494pb05,151,2,f +13973,48495,4,2,f +13973,48495,134,2,f +13973,50231,71,2,f +13973,50231,0,2,f +13973,6093,0,1,f +13973,6123,72,2,f +13973,64567,383,2,f +13973,71015,334,2,f +13973,970x021,0,2,f +13973,970x154,0,9,f +13973,970x194,73,10,f +13973,970x195,72,1,f +13973,973c14,0,3,f +13973,973c33,73,3,f +13973,973pb0346c01,71,1,f +13973,973pb0347c01,0,9,f +13973,973pb0355c01,73,8,f +13974,433c01,0,2,f +13975,15,0,2,f +13975,17,0,2,f +13975,21,47,1,f +13975,3001a,15,1,f +13975,3002apb06,15,2,f +13975,3008,47,2,f +13975,3008,0,2,f +13975,3010,15,1,f +13975,3010pb035e,15,1,f +13975,3020,0,3,f +13975,3022,0,1,f +13975,3023,15,2,f +13975,3023,0,1,f +13975,3024,1,2,f +13975,3030,0,1,f +13975,3030,15,1,f +13975,3062a,0,1,f +13975,3137c01,0,2,f +13975,3139,0,7,f +13975,3464,4,3,f +13975,3581,0,2,f +13975,3582,0,2,f +13975,3624,15,2,f +13975,3626a,14,2,f +13975,8,15,3,f +13976,10314,15,1,f +13976,10884,27,3,f +13976,11055pr0009,15,1,f +13976,11214,72,1,f +13976,14226c31,0,1,f +13976,14716,15,5,f +13976,15068,19,1,f +13976,15210,72,2,f +13976,15332,0,4,f +13976,15391,71,2,f +13976,15392,72,2,f +13976,15392,72,2,t +13976,15706,70,2,f +13976,16577,15,2,f +13976,18927,4,1,f +13976,2357,15,3,f +13976,2412b,0,1,f +13976,2431,70,2,f +13976,2432,71,1,f +13976,2453b,15,4,f +13976,2454a,15,1,f +13976,2489,308,1,f +13976,2524,70,1,f +13976,2525pr0002,15,1,f +13976,2526,15,1,f +13976,2526,297,1,f +13976,2526,15,1,t +13976,2526,297,1,t +13976,2527,4,1,f +13976,2528pr0006,272,1,f +13976,2530,72,3,f +13976,2530,72,2,t +13976,2544,70,1,f +13976,2545pr0001,0,1,f +13976,2551,70,1,f +13976,2561,70,1,f +13976,2562,70,2,f +13976,2562,70,1,t +13976,2566,0,2,f +13976,2639,15,1,f +13976,3002,71,2,f +13976,3004,15,5,f +13976,3004,71,2,f +13976,30043,71,1,f +13976,3005,320,1,f +13976,3008,15,1,f +13976,3010,15,1,f +13976,30153,34,1,f +13976,30153,36,1,f +13976,30153,47,1,f +13976,3020,15,1,f +13976,3020,28,1,f +13976,3021,70,2,f +13976,3023,71,5,f +13976,3032,70,5,f +13976,3034,70,7,f +13976,3039,72,2,f +13976,30414,71,1,f +13976,30552,72,1,f +13976,30565,19,2,f +13976,3062b,0,2,f +13976,3062b,46,1,f +13976,3069b,70,2,f +13976,3070b,70,1,t +13976,3070b,70,1,f +13976,32016,70,4,f +13976,32062,4,4,f +13976,3245b,15,5,f +13976,3298,72,1,f +13976,33320,2,2,f +13976,3460,1,1,f +13976,3460,70,2,f +13976,3622,15,10,f +13976,3626bpr0754a,14,1,f +13976,3626cpr0893,14,1,f +13976,3626cpr1147,14,1,f +13976,3626cpr1559,14,1,f +13976,3626cpr1561,14,1,f +13976,3659,15,2,f +13976,3665,71,2,f +13976,3676,72,2,f +13976,3700,70,1,f +13976,3710,1,1,f +13976,3795,1,2,f +13976,3841,72,1,f +13976,3957b,71,1,f +13976,4217,15,1,f +13976,4274,1,2,f +13976,4274,1,2,t +13976,43093,1,1,f +13976,44302a,71,2,f +13976,4735,71,1,f +13976,4738a,70,1,f +13976,4739a,70,1,f +13976,4740,70,1,f +13976,4740,0,1,f +13976,47457,15,1,f +13976,48723,70,1,f +13976,59443,0,1,f +13976,60474,72,1,f +13976,60475b,72,1,f +13976,60481,15,2,f +13976,60596,15,2,f +13976,60596,0,2,f +13976,60599,15,1,f +13976,60621,71,1,f +13976,61252,297,1,f +13976,6141,297,2,f +13976,6141,0,4,f +13976,6141,0,2,t +13976,6141,297,1,t +13976,61485,0,1,f +13976,62462,71,1,f +13976,63965,70,2,f +13976,64644,297,1,f +13976,64647,1,1,f +13976,64647,1,1,t +13976,6636,70,3,f +13976,84943,148,1,f +13976,87087,15,1,f +13976,87580,72,1,f +13976,87585,70,2,f +13976,87585,70,1,t +13976,87994,0,1,t +13976,87994,0,1,f +13976,88072,0,3,f +13976,92589,71,1,f +13976,92946,0,2,f +13976,92950,71,7,f +13976,92950,15,2,f +13976,95225,84,1,f +13976,95228,40,1,f +13976,970c00,1,1,f +13976,970c00,15,2,f +13976,970c00,71,1,f +13976,970c00pr0748,15,1,f +13976,973pr2824c01,272,1,f +13976,973pr2825c01,1,1,f +13976,973pr2827c01,73,1,f +13976,973pr2828c01,2,1,f +13976,973pr2829c01,4,1,f +13976,98283,320,6,f +13976,98585,71,1,f +13978,11477,25,2,f +13978,2415,71,1,f +13978,2421,0,2,f +13978,2496,0,1,f +13978,2561,70,2,f +13978,30173b,179,2,f +13978,3795,70,1,f +13978,41854,308,1,f +13978,44661,72,1,f +13978,4488,0,2,f +13978,54383,72,1,f +13978,54384,72,1,f +13978,60470a,15,2,f +13978,63868,0,2,f +13979,30375,373,1,f +13979,30377,3,2,f +13979,30530,373,1,f +13979,x117px10,3,1,f +13980,6216b,7,2,f +13981,3001p09,4,1,f +13981,3003,0,3,f +13981,3941,14,2,f +13981,4132,4,1,f +13981,4133,15,1,f +13981,4744px24,4,1,f +13982,2357,0,2,f +13982,2377,15,2,f +13982,2412b,7,2,f +13982,2431,0,1,f +13982,2432,7,1,f +13982,2436,7,2,f +13982,2456,0,1,f +13982,2555,7,2,f +13982,2584,7,1,f +13982,2585,0,1,f +13982,2877,15,4,f +13982,2921,0,2,f +13982,3003,8,2,f +13982,3004,0,3,f +13982,3005,15,2,f +13982,3009,15,2,f +13982,30153,33,1,f +13982,30153,36,1,f +13982,30153,34,1,f +13982,30162,8,1,f +13982,30187c02,0,1,f +13982,30194,8,1,f +13982,3020,1,1,f +13982,3020,7,2,f +13982,3022,0,3,f +13982,3023,7,1,f +13982,3023,0,4,f +13982,3024,0,2,f +13982,3034,0,4,f +13982,3034,15,3,f +13982,3036,15,2,f +13982,30363pb006,15,1,f +13982,3038,0,4,f +13982,30395,8,1,f +13982,3040b,0,2,f +13982,3040b,15,2,f +13982,3045,0,2,f +13982,3069b,334,4,f +13982,3069b,33,1,f +13982,3069b,36,3,f +13982,3069b,46,2,f +13982,3069bpr0100,2,3,f +13982,3070b,0,2,f +13982,3189,0,1,f +13982,32039,1,2,f +13982,32059,15,1,f +13982,3298,0,2,f +13982,3298pb028,15,1,f +13982,3460,0,2,f +13982,3460,15,2,f +13982,3626bpr0279,14,1,f +13982,3626bpx303,14,1,f +13982,3660,8,4,f +13982,3666,8,1,f +13982,3666,15,1,f +13982,3703,0,2,f +13982,3710,1,1,f +13982,3713,7,2,f +13982,3794a,15,1,f +13982,3795,15,1,f +13982,3795,8,2,f +13982,3829c01,1,1,f +13982,3830,0,4,f +13982,3831,0,4,f +13982,3840,272,1,f +13982,4070,0,6,f +13982,4079,1,1,f +13982,4085c,7,2,f +13982,41334,8,1,f +13982,4162,0,2,f +13982,4176,40,1,f +13982,4215b,0,2,f +13982,4215b,7,1,f +13982,43337,8,2,f +13982,4345b,7,2,f +13982,4346,7,2,f +13982,43710,0,1,f +13982,43711,0,1,f +13982,4485,272,1,f +13982,4533,0,1,f +13982,4599a,7,2,f +13982,4862,40,2,f +13982,4865a,8,2,f +13982,6014b,7,4,f +13982,6015,0,4,f +13982,6016,8,1,f +13982,6117,8,1,f +13982,6141,46,1,f +13982,6141,46,1,t +13982,6157,7,2,f +13982,6541,7,2,f +13982,6587,8,2,f +13982,6636,0,1,f +13982,92410,0,1,f +13982,970c00,8,2,f +13982,973pb0277c01,8,1,f +13982,973pr1163c01,272,1,f +13982,rb00164,0,1,f +13984,132a,7,4,f +13984,3004,4,4,f +13984,3004p50,1,1,f +13984,3005,15,2,f +13984,3009,14,4,f +13984,3009,47,1,f +13984,3009,4,2,f +13984,3010,47,1,f +13984,3010,14,2,f +13984,3021,4,1,f +13984,3022,4,3,f +13984,3022,0,2,f +13984,3022,47,2,f +13984,3023,4,1,f +13984,3028,7,1,f +13984,3068a,4,1,f +13984,3149c01,4,1,f +13984,3176,4,1,f +13984,7039,4,4,f +13984,7049b,15,1,f +13984,709,4,1,f +13984,711,4,1,f +13984,799c800,15,1,f +13984,801,4,1,f +13984,802,4,1,f +13984,804,7,1,f +13988,53788,151,1,f +13989,10039,0,1,f +13989,11002,0,1,f +13989,2431,4,2,f +13989,30193stk01,9999,1,t +13989,3020,0,1,f +13989,3023,0,1,f +13989,3034,72,1,f +13989,30414,4,2,f +13989,50951,0,4,f +13989,85984,4,1,f +13989,87079,15,1,f +13989,93587pr0008,4,1,f +13989,93591pr0018,4,1,f +13989,93595pr0001,0,4,f +13989,93597,4,1,f +13989,98138,47,2,f +13989,98138,47,1,t +13990,2607,0,10,f +13990,73092,0,10,f +13991,10178pr0006,34,1,f +13991,2357,72,2,f +13991,2412b,0,9,f +13991,2431,72,1,f +13991,2432,70,3,f +13991,2445,70,2,f +13991,2449,72,2,f +13991,2450,0,2,f +13991,2456,70,1,f +13991,2462,72,4,f +13991,2540,72,2,f +13991,2569,42,1,f +13991,2569,42,1,t +13991,2653,71,2,f +13991,2654,4,1,f +13991,2780,0,1,f +13991,2780,0,1,t +13991,2877,71,1,f +13991,298c02,14,1,t +13991,298c02,4,1,f +13991,298c02,14,1,f +13991,298c02,4,1,t +13991,3001,73,1,f +13991,3003,28,4,f +13991,30044,70,1,f +13991,30045,0,1,f +13991,3005,72,1,f +13991,3005,73,2,f +13991,3008,71,2,f +13991,30132,72,1,t +13991,30132,72,1,f +13991,30136,72,11,f +13991,30137,71,7,f +13991,30151a,47,1,f +13991,30153,36,1,f +13991,30162,72,1,f +13991,30172,15,1,f +13991,3020,0,3,f +13991,3021,72,2,f +13991,3022,71,5,f +13991,3023,70,1,f +13991,3023,73,4,f +13991,30238,1000,1,f +13991,3030,70,1,f +13991,3031,72,1,f +13991,3032,70,1,f +13991,3034,0,1,f +13991,30350b,72,2,f +13991,30367b,71,2,f +13991,3037,0,1,f +13991,30374,42,1,f +13991,3039,71,2,f +13991,3040b,72,12,f +13991,3040b,73,2,f +13991,30414,71,1,f +13991,3048c,0,3,f +13991,30526,72,1,f +13991,3062b,71,2,f +13991,3062b,42,3,f +13991,3062b,0,6,f +13991,30663,0,2,f +13991,3069b,71,6,f +13991,3070bpr0007,71,1,t +13991,3070bpr0007,71,1,f +13991,32000,0,1,f +13991,32002,72,1,f +13991,32002,72,1,t +13991,32013,0,1,f +13991,32028,0,2,f +13991,32062,4,4,f +13991,32064b,0,2,f +13991,32072,0,2,f +13991,32123b,71,5,f +13991,32123b,71,1,t +13991,32270,0,1,f +13991,32324,71,2,f +13991,32523,72,2,f +13991,32556,19,4,f +13991,33320,2,1,f +13991,3460,308,1,f +13991,3460,72,1,f +13991,3622,71,7,f +13991,3626bpr1011,326,1,f +13991,3626cpr0895,1000,1,f +13991,3626cpr0978,14,1,f +13991,3626cpr1009,14,1,f +13991,3626cpr1014,14,1,f +13991,3647,72,2,f +13991,3647,72,1,t +13991,3659,71,1,f +13991,3660,72,2,f +13991,3665,72,2,f +13991,3666,73,6,f +13991,3666,71,1,f +13991,3679,71,2,f +13991,3680,0,2,f +13991,3700,71,3,f +13991,3700,73,3,f +13991,3701,72,4,f +13991,3708,0,1,f +13991,3710,70,1,f +13991,3710,73,4,f +13991,3743,0,2,f +13991,3794b,0,7,f +13991,3795,70,2,f +13991,3823,40,1,f +13991,3829c01,71,1,f +13991,3830,72,2,f +13991,3831,72,2,f +13991,3937,4,3,f +13991,3940b,72,2,f +13991,3941,42,1,f +13991,3943b,0,1,f +13991,3958,72,1,f +13991,4006,0,1,f +13991,40234,1000,1,f +13991,4032a,70,3,f +13991,4081b,71,2,f +13991,4162,70,2,f +13991,41677,71,2,f +13991,41678,0,1,f +13991,4176,40,1,f +13991,42610,71,2,f +13991,4286,71,3,f +13991,43093,1,1,f +13991,43898,72,1,f +13991,4460b,72,3,f +13991,44728,0,4,f +13991,45590,0,1,f +13991,4589,320,2,f +13991,4589,36,1,f +13991,4589,42,2,f +13991,4623,72,1,f +13991,4716,71,1,f +13991,4740,42,5,f +13991,47457,14,1,f +13991,47753,73,1,f +13991,48336,71,2,f +13991,48723,70,1,f +13991,48729b,72,2,t +13991,48729b,72,3,f +13991,50745,0,1,f +13991,50946,0,1,f +13991,50950,0,2,f +13991,55013,72,2,f +13991,56902,71,4,f +13991,58176,33,1,f +13991,59233pat0001,41,2,f +13991,59349,72,1,f +13991,59443,71,1,f +13991,6005,73,8,f +13991,60169,72,1,f +13991,6019,0,1,f +13991,60475b,0,4,f +13991,60476,71,2,f +13991,60481,73,2,f +13991,60594,72,1,f +13991,60596,0,1,f +13991,60621,71,1,f +13991,6081,72,1,f +13991,6091,73,4,f +13991,6091,71,3,f +13991,6111,72,1,f +13991,61184,71,3,f +13991,61254,0,4,f +13991,6126b,57,4,f +13991,6134,71,3,f +13991,61409,72,2,f +13991,6141,47,2,f +13991,6141,36,1,t +13991,6141,36,2,f +13991,6141,0,1,t +13991,6141,47,1,t +13991,6141,71,3,t +13991,6141,0,1,f +13991,6141,71,10,f +13991,6182,71,1,f +13991,6191,0,1,f +13991,62113,0,1,f +13991,62699,71,1,f +13991,64644,71,1,f +13991,64644,308,2,f +13991,64644,297,1,f +13991,6558,1,1,f +13991,6636,0,1,f +13991,6636,70,1,f +13991,85975,297,1,f +13991,86208,72,2,f +13991,87079,70,1,f +13991,87079,71,2,f +13991,87083,72,2,f +13991,87087,71,7,f +13991,87421,72,4,f +13991,87552,71,1,f +13991,87580,71,2,f +13991,88289,308,1,f +13991,88930,0,1,f +13991,89523,72,2,f +13991,89523,28,2,f +13991,90981,15,1,f +13991,91988,72,2,f +13991,93160,15,1,f +13991,93549pat01,47,1,f +13991,93550,179,1,f +13991,93556pr0003,326,1,f +13991,9466stk01,9999,1,t +13991,95347,0,2,f +13991,95674,71,1,f +13991,970c00,308,1,f +13991,970c00,0,1,f +13991,970c00pr0333,28,1,f +13991,970d15,378,1,f +13991,973pr2060c01,28,1,f +13991,973pr2084c01,71,1,f +13991,973pr2093c01,308,1,f +13991,973pr2097c01,15,1,f +13991,98283,28,4,f +13991,98782,36,1,f +13991,99781,71,2,f +13991,99809,308,1,f +13994,15745,45,1,f +13994,3040b,2,4,f +13994,3688,2,1,f +13994,3941,70,1,f +13994,4032a,70,2,f +13994,4286,2,4,f +13994,60474,15,1,f +13994,6141,45,4,f +13994,6141,45,1,t +13995,2412b,25,2,f +13995,2419,378,1,f +13995,2540,8,1,f +13995,2654,0,1,f +13995,2877,8,1,f +13995,30375,1,1,f +13995,30377,3,2,f +13995,30383,0,2,f +13995,30407,7,2,f +13995,30529p01,3,1,f +13995,30530,25,1,f +13995,3069bp55,8,1,f +13995,3795,2,1,f +13995,3795,8,1,f +13995,3937,7,1,f +13995,3938,0,1,f +13995,3960px3,7,1,f +13996,468c02,1,1,f +13997,2780,0,19,f +13997,32002,8,3,f +13997,32013,0,8,f +13997,32014,0,1,f +13997,32015,0,1,f +13997,32016,0,5,f +13997,32039,135,9,f +13997,32039,0,2,f +13997,32054,0,2,f +13997,32062,0,23,f +13997,32073,0,5,f +13997,32123b,7,7,f +13997,32140,0,4,f +13997,32146,0,1,f +13997,32184,0,1,f +13997,32192,135,6,f +13997,32192,0,2,f +13997,32269,7,2,f +13997,32270,7,2,f +13997,32270,0,8,f +13997,32271,0,2,f +13997,32316,0,2,f +13997,32348,0,2,f +13997,32523,0,2,f +13997,32526,0,2,f +13997,32556,7,3,f +13997,3673,7,7,f +13997,3705,0,8,f +13997,3706,0,6,f +13997,3713,7,6,f +13997,3713,0,3,f +13997,3749,7,7,f +13997,40490,0,2,f +13997,41669,52,2,f +13997,41669,135,1,f +13997,41677,0,8,f +13997,4177936,9999,1,f +13997,42074,135,1,f +13997,4232,52,1,f +13997,4232rc,52,1,f +13997,4232sc,0,1,f +13997,4274,7,3,f +13997,43093,0,4,f +13997,4519,0,8,f +13997,6536,0,3,f +13997,6536,135,2,f +13997,6538b,135,1,f +13997,6538b,0,1,f +13997,6575,0,10,f +13997,6587,8,2,f +13997,6594,0,2,f +13997,6595,135,2,f +13997,6629,135,2,f +13997,75535,0,5,f +13997,78c02,179,5,f +13997,78c04,179,2,f +13997,78c10,0,1,f +13997,x165c05,47,2,f +13997,x400c12,47,2,f +14000,2432,0,1,f +14000,2446px2,15,1,f +14000,2447,34,1,f +14000,30187a,15,1,f +14000,30189,15,1,f +14000,30190,15,1,f +14000,3023,0,1,f +14000,3062b,33,1,f +14000,3070b,46,1,f +14000,3070b,36,1,f +14000,3626bp04,14,1,f +14000,3957a,7,1,f +14000,3962b,0,1,f +14000,4085c,7,1,f +14000,4599a,0,1,f +14000,6014a,15,2,f +14000,6015,0,3,f +14000,6019,7,1,f +14000,6141,46,1,t +14000,6141,46,1,f +14000,970c00,0,1,f +14000,973px9c01,0,1,f +14002,18277,72,1,f +14002,20613pr0001,72,1,f +14002,88646,0,1,f +14002,92691,15,1,f +14002,970c00pr0922,379,1,f +14002,973pr3118c01,4,1,f +14005,2423,2,2,f +14005,3022,70,1,f +14005,3062b,70,2,f +14005,40232,15,1,f +14006,10247,72,2,f +14006,11458,0,4,f +14006,11477,308,4,f +14006,11477,27,1,f +14006,11477,4,2,f +14006,13349,0,2,f +14006,13548,1,2,f +14006,14769pr1039,4,2,f +14006,15064,308,2,f +14006,15070,15,4,f +14006,15092,72,1,f +14006,15208,15,2,f +14006,15392,72,1,f +14006,15462,28,1,f +14006,15535,72,5,f +14006,15571,0,2,f +14006,15712,72,2,f +14006,16770,182,6,f +14006,16968,71,1,f +14006,17114,0,3,f +14006,18649,0,2,f +14006,18654,72,1,f +14006,18674,70,2,f +14006,18677,4,2,f +14006,22380,2,1,f +14006,22385,0,1,f +14006,22385pr0009,36,1,f +14006,22385pr0013,182,1,f +14006,22388,179,1,f +14006,22388,182,4,f +14006,22391,272,2,f +14006,22391,308,1,f +14006,22408,179,1,f +14006,22484,57,2,f +14006,22487,179,1,f +14006,24097,179,1,f +14006,2540,1,1,f +14006,2780,0,2,f +14006,30000,71,2,f +14006,3020,70,1,f +14006,3022,72,3,f +14006,3023,70,4,f +14006,3023,308,2,f +14006,3023,72,2,f +14006,3024,0,6,f +14006,30375,1,1,f +14006,3039,0,1,f +14006,30552,0,1,f +14006,32039,0,1,f +14006,32054,0,1,f +14006,32064a,71,3,f +14006,32187,179,1,f +14006,32316,0,2,f +14006,3245c,0,2,f +14006,3626cpr1781,14,1,f +14006,3626cpr1861,14,1,f +14006,3678bpr0052,1,1,f +14006,3700,72,1,f +14006,3707,0,1,f +14006,3709,72,5,f +14006,3713,4,1,f +14006,3738,0,2,f +14006,3956,71,1,f +14006,4032a,4,3,f +14006,40490,0,1,f +14006,4070,70,4,f +14006,4081b,27,2,f +14006,4085c,0,2,f +14006,42610,71,1,f +14006,43093,1,2,f +14006,44728,4,2,f +14006,44728,72,3,f +14006,4519,71,2,f +14006,47456,308,1,f +14006,47457,308,2,f +14006,47759,308,2,f +14006,4871,0,1,f +14006,48729b,57,4,f +14006,49668,179,4,f +14006,50231,272,1,f +14006,50860,272,1,f +14006,50950,272,1,f +14006,54200,27,2,f +14006,54200,0,4,f +14006,54200,308,2,f +14006,57909b,308,2,f +14006,59426,72,1,f +14006,59443,0,1,f +14006,59900,0,2,f +14006,6019,1,1,f +14006,60471,4,1,f +14006,60483,71,1,f +14006,60849,71,2,f +14006,61409,72,4,f +14006,6141,57,3,f +14006,6141,25,2,f +14006,6141,70,1,f +14006,6232,72,2,f +14006,62361,4,1,f +14006,63868,27,1,f +14006,63868,1,1,f +14006,64647,57,2,f +14006,64807,308,1,f +14006,64867,182,2,f +14006,64867,72,1,f +14006,64867pr0001,182,2,f +14006,6558,1,2,f +14006,6587,28,2,f +14006,73983,4,1,f +14006,85861,71,2,f +14006,85984,308,4,f +14006,87083,72,1,f +14006,87846,0,1,f +14006,88072,0,2,f +14006,90258,72,1,f +14006,92013,0,8,f +14006,92692,0,2,f +14006,92946,72,2,f +14006,93606,0,1,f +14006,970c00pr0937,72,1,f +14006,973pr3150c01,72,1,f +14006,973pr3277c01,1,1,f +14006,98286,0,2,f +14006,98313,179,2,f +14006,98578,182,2,f +14006,99021,72,1,f +14006,99206,0,2,f +14006,99207,0,4,f +14006,99781,71,2,f +14007,2421,7,1,f +14007,2446,15,1,f +14007,2447,41,1,f +14007,2460,4,1,f +14007,2479,7,1,f +14007,2483,41,1,f +14007,298c02,4,2,f +14007,3004,7,1,f +14007,3005,4,3,f +14007,3005,4,2,t +14007,3020,4,1,f +14007,3020,0,1,f +14007,3022,4,1,f +14007,3023,7,1,f +14007,3023,4,1,f +14007,3023,0,1,f +14007,3024,4,2,f +14007,3039,4,1,f +14007,3040b,4,1,f +14007,3069b,7,1,f +14007,3070b,33,2,f +14007,3176,7,1,f +14007,3623,4,2,f +14007,3626apr0001,14,1,f +14007,3666,0,2,f +14007,3710,4,2,f +14007,3747a,4,1,f +14007,3794a,4,1,f +14007,3962b,0,1,f +14007,4081b,7,2,f +14007,4085c,4,1,f +14007,4162,7,2,f +14007,4286,4,2,f +14007,4315,4,1,f +14007,4477,4,1,f +14007,4488,4,1,f +14007,4859,4,1,f +14007,4873,4,2,f +14007,6019,0,2,f +14007,6141,36,1,t +14007,6141,36,1,f +14007,73590c01b,14,2,f +14007,970c00,0,1,f +14007,973p0ac02,0,1,f +14008,2445,25,3,f +14008,2460,14,1,f +14008,2479,7,1,f +14008,3001,14,2,f +14008,3001,0,2,f +14008,3001,15,2,f +14008,3002,0,2,f +14008,3002,14,2,f +14008,3002,15,2,f +14008,3003,0,2,f +14008,3003,14,2,f +14008,3003,15,2,f +14008,3004,1,4,f +14008,3004,25,8,f +14008,3004,0,6,f +14008,3004,15,6,f +14008,3004,14,8,f +14008,3004pb022,25,2,f +14008,3005,15,4,f +14008,3005,1,4,f +14008,3005,14,4,f +14008,3005,0,2,f +14008,3009,14,2,f +14008,3010,25,6,f +14008,3010,15,4,f +14008,3010,14,8,f +14008,3010,0,4,f +14008,3010pb028,25,1,f +14008,3020,14,2,f +14008,3020,1,2,f +14008,3021,0,2,f +14008,3022,2,2,f +14008,3022,0,2,f +14008,3023,0,2,f +14008,3034,14,2,f +14008,3039,0,2,f +14008,3039,25,10,f +14008,3039,15,6,f +14008,3040b,2,2,f +14008,3040b,0,4,f +14008,3062b,2,2,f +14008,3297,4,2,f +14008,3298,25,4,f +14008,3298,4,4,f +14008,3298,0,2,f +14008,3298px11,14,1,f +14008,3307,0,2,f +14008,3483,0,4,f +14008,3622,14,4,f +14008,3622,25,8,f +14008,3623,2,2,f +14008,3626bpx19,14,1,f +14008,3633,4,2,f +14008,3660,15,2,f +14008,3660,25,14,f +14008,3660,0,2,f +14008,3660,4,2,f +14008,3665,0,2,f +14008,3665,4,4,f +14008,3665,25,4,f +14008,3679,7,1,f +14008,3680,14,1,f +14008,3710,0,2,f +14008,3710,15,2,f +14008,3741,2,2,f +14008,3742,15,4,f +14008,3742,4,2,f +14008,3742,4,2,t +14008,3747a,25,4,f +14008,3795,25,3,f +14008,3795,1,2,f +14008,3823,41,1,f +14008,3829c01,1,1,f +14008,3853,4,2,f +14008,3854,14,4,f +14008,3861b,4,1,f +14008,3865,10,1,f +14008,3957a,15,1,f +14008,4286,0,2,f +14008,4287,0,2,f +14008,4287,25,4,f +14008,4485,1,1,f +14008,4495b,2,1,f +14008,6215,2,2,f +14008,6248,14,4,f +14008,6249,8,2,f +14008,970c00,2,1,f +14008,973px39c01,2,1,f +14009,10197,72,4,f +14009,2412b,15,1,f +14009,2412b,72,2,f +14009,2412b,4,1,f +14009,2432,70,2,f +14009,2436,71,2,f +14009,2449,72,2,f +14009,2456,0,1,f +14009,2460,71,3,f +14009,2540,15,4,f +14009,2654,46,1,f +14009,2654,72,2,f +14009,2730,0,1,f +14009,2743,72,2,f +14009,2780,0,18,f +14009,2780,0,3,t +14009,2877,72,2,f +14009,298c02,4,1,t +14009,298c02,4,2,f +14009,3001,70,1,f +14009,3004,14,1,f +14009,3009,72,3,f +14009,3010,0,1,f +14009,30145,15,1,f +14009,30173b,0,2,f +14009,30173b,179,2,f +14009,3020,72,7,f +14009,3022,0,2,f +14009,3023,71,6,f +14009,3029,71,1,f +14009,3031,72,1,f +14009,3032,72,2,f +14009,3035,72,1,f +14009,30367b,71,2,f +14009,30367b,14,2,f +14009,30374,297,1,f +14009,3040b,71,2,f +14009,30553,72,2,f +14009,3062b,72,6,f +14009,3068b,72,2,f +14009,3069bp02,71,1,f +14009,3069bpr0086,71,1,f +14009,32000,71,2,f +14009,32013,0,10,f +14009,32018,71,2,f +14009,32028,14,2,f +14009,32034,15,6,f +14009,32039,14,1,f +14009,32054,0,4,f +14009,32059,15,1,f +14009,32062,4,13,f +14009,32062,0,8,f +14009,32123b,14,10,f +14009,32123b,14,3,t +14009,32138,71,4,f +14009,32249,71,2,f +14009,32316,15,2,f +14009,32523,0,2,f +14009,32524,71,2,f +14009,32525,72,3,f +14009,32555,0,2,f +14009,32556,19,10,f +14009,3298,15,2,f +14009,3460,15,5,f +14009,3623,72,6,f +14009,3626bpr0744,14,1,f +14009,3626bpr0747,14,1,f +14009,3626cpr0745,14,1,f +14009,3626cpr1367,14,1,f +14009,3665,71,2,f +14009,3666,72,2,f +14009,3673,71,1,t +14009,3673,71,8,f +14009,3700,72,1,f +14009,3700,0,2,f +14009,3703,0,4,f +14009,3706,0,1,f +14009,3708,0,1,f +14009,3710,15,7,f +14009,3713,71,4,f +14009,3713,71,1,t +14009,3795,15,2,f +14009,3832,0,2,f +14009,3849,0,2,f +14009,3941,14,2,f +14009,3941,72,1,f +14009,3942c,72,3,f +14009,3961,308,2,f +14009,4032a,14,2,f +14009,4032a,4,4,f +14009,4081b,15,4,f +14009,4085c,15,4,f +14009,41239,0,4,f +14009,4150,14,1,f +14009,41532,0,2,f +14009,4162,71,4,f +14009,41677,0,4,f +14009,41678,4,1,f +14009,41747,15,1,f +14009,41748,15,1,f +14009,41769,15,2,f +14009,41770,15,2,f +14009,4274,1,14,f +14009,4274,1,3,t +14009,4286,72,4,f +14009,43093,1,6,f +14009,43713,15,2,f +14009,43722,72,1,f +14009,43723,72,1,f +14009,43898,15,8,f +14009,44567a,0,2,f +14009,44568,71,1,f +14009,44661,15,1,f +14009,4490,15,2,f +14009,4519,71,2,f +14009,45301,15,1,f +14009,4589,297,2,f +14009,4589,0,2,f +14009,46413,40,2,f +14009,4733,0,2,f +14009,47397,72,1,f +14009,47398,72,1,f +14009,4740,14,6,f +14009,4865a,40,2,f +14009,50304,0,2,f +14009,50305,0,2,f +14009,50950,72,2,f +14009,52501,15,2,f +14009,54200,15,10,f +14009,54200,15,2,t +14009,54383,72,1,f +14009,54383,15,1,f +14009,54384,72,1,f +14009,54384,15,1,f +14009,55013,72,2,f +14009,55982,0,2,f +14009,56904,71,2,f +14009,57520,0,6,f +14009,58177,0,2,f +14009,59232,179,1,f +14009,59443,0,3,f +14009,60471,15,2,f +14009,60475b,71,4,f +14009,60481,15,6,f +14009,60483,72,2,f +14009,60485,71,1,f +14009,6060,15,2,f +14009,61184,71,2,f +14009,61409,72,4,f +14009,61409,14,2,f +14009,6141,182,9,f +14009,6141,15,2,t +14009,6141,182,2,t +14009,6141,27,2,f +14009,6141,27,1,t +14009,6141,15,8,f +14009,6215,71,2,f +14009,62462,15,4,f +14009,63869,71,2,f +14009,63965,72,2,f +14009,64567,71,1,f +14009,6541,4,2,f +14009,6558,1,2,f +14009,6564,71,1,f +14009,6565,71,1,f +14009,6587,28,6,f +14009,6628,0,2,f +14009,6636,15,5,f +14009,85543,15,1,f +14009,85959pat0001,36,2,f +14009,85984,15,2,f +14009,87079,71,5,f +14009,87083,72,2,f +14009,87544,71,1,f +14009,87747,297,9,f +14009,87747,179,1,f +14009,88323,308,46,f +14009,88516,0,2,f +14009,88517,72,2,f +14009,92338,297,1,f +14009,92582,0,2,f +14009,92593,72,2,f +14009,92690,297,3,f +14009,92907,71,4,f +14009,92946,72,2,f +14009,93055,297,1,f +14009,93055,297,1,t +14009,93058,297,2,f +14009,93058,297,1,t +14009,9449stk01,9999,1,t +14009,95229,0,2,f +14009,96874,25,1,t +14009,970c00pr0268,27,1,f +14009,970c00pr0273,4,1,f +14009,970c00pr0274,1,1,f +14009,970c00pr0275,15,1,f +14009,970c00pr0276,0,1,f +14009,973pr1893c01,27,1,f +14009,973pr1895c01,4,1,f +14009,973pr1896c01,1,1,f +14009,973pr1897c01,15,1,f +14009,973pr1898c01,0,1,f +14009,973pr1900c01,85,1,f +14009,98132,297,2,f +14009,98132,179,2,f +14009,98133pr0001,4,1,f +14009,98133pr0002,1,1,f +14009,98133pr0003,15,1,f +14009,98133pr0004,0,1,f +14009,98135,297,6,f +14009,98138,36,2,t +14009,98138,36,3,f +14009,98138,297,1,t +14009,98138,297,8,f +14009,98138,47,2,t +14009,98138,47,6,f +14009,98138pr0003,36,1,t +14009,98138pr0003,36,1,f +14009,98139,297,14,f +14009,98150pr0001,288,1,f +14009,98313,148,2,f +14009,98341,148,2,f +14009,98567,0,2,f +14009,99778pr0004,85,1,f +14009,99818pr0001,85,1,f +14010,3626bpr0410,14,1,f +14010,41334,0,1,f +14010,61482,71,1,t +14010,61482,71,1,f +14010,970c00,72,1,f +14010,973pr1197c01,15,1,f +14012,15619,4,1,f +14012,20612,40,2,f +14012,3626cpr1694,14,1,f +14012,53451,0,6,f +14012,88283,484,1,f +14012,970c00pr0874,326,1,f +14012,973pr3037c01,378,1,f +14012,98138,34,2,f +14013,3648a,7,14,f +14013,3649,7,8,f +14014,3004,0,2,f +14014,3020,72,1,f +14014,3040bpr0003,71,1,f +14014,3062b,33,1,f +14014,3068bpr0137,15,1,f +14014,3937,71,1,f +14014,3957a,15,1,f +14014,4079,2,1,f +14014,6134,0,1,f +14015,122c01,0,2,f +14015,2362a,15,4,f +14015,2376,4,2,f +14015,298c03,0,2,f +14015,3001,4,2,f +14015,3002,4,2,f +14015,3003,4,3,f +14015,3003,15,1,f +14015,3004,0,8,f +14015,3004,14,8,f +14015,3004,4,10,f +14015,3004,7,13,f +14015,3004p06,4,4,f +14015,3004p06,15,1,f +14015,3005,0,4,f +14015,3008,7,8,f +14015,3008,0,6,f +14015,3009,7,4,f +14015,3010,15,7,f +14015,3010,7,4,f +14015,3010,0,4,f +14015,3020,1,1,f +14015,3020,4,7,f +14015,3020,7,2,f +14015,3020,15,1,f +14015,3020,0,3,f +14015,3021,4,1,f +14015,3022,1,1,f +14015,3022,0,2,f +14015,3023,1,16,f +14015,3023,4,16,f +14015,3023,7,7,f +14015,3023,0,12,f +14015,3023,15,4,f +14015,3024,4,1,f +14015,3024,46,2,f +14015,3024,7,2,f +14015,3024,15,2,f +14015,3027,0,1,f +14015,3030,1,1,f +14015,3031,1,1,f +14015,3031,4,1,f +14015,3032,4,1,f +14015,3034,4,3,f +14015,3034,1,3,f +14015,3035,1,4,f +14015,3069b,15,2,f +14015,3069b,0,4,f +14015,3069b,1,4,f +14015,3070b,4,2,f +14015,3228b,7,8,f +14015,3242,7,2,f +14015,3298,4,6,f +14015,3460,7,20,f +14015,3622,7,4,f +14015,3623,4,1,f +14015,3623,15,2,f +14015,3623,7,12,f +14015,3624,4,1,f +14015,3626apr0001,14,2,f +14015,3641,0,4,f +14015,3660,4,1,f +14015,3665,0,8,f +14015,3666,0,8,f +14015,3700,4,4,f +14015,3700,7,4,f +14015,3701,7,4,f +14015,3702,7,4,f +14015,3703,4,1,f +14015,3710,4,4,f +14015,3710,7,4,f +14015,3747b,4,1,f +14015,3795,1,1,f +14015,3795,4,1,f +14015,3795,0,2,f +14015,3821,15,1,f +14015,3822,15,1,f +14015,3823,47,2,f +14015,3829c01,1,1,f +14015,3832,4,3,f +14015,3832,7,4,f +14015,3832,0,1,f +14015,3833,4,1,f +14015,3853,15,2,f +14015,3856,15,4,f +14015,3894,4,1,f +14015,4022,0,2,f +14015,4023,0,2,f +14015,4070,15,2,f +14015,4079,14,1,f +14015,4081a,4,4,f +14015,4081a,1,2,f +14015,4084,0,4,f +14015,4162,1,2,f +14015,4162,0,4,f +14015,4166,8,5,f +14015,4169,7,4,f +14015,4175,7,3,f +14015,4175,4,1,f +14015,4180c01,0,2,f +14015,4211,1,1,f +14015,4213,4,1,f +14015,4213,1,1,f +14015,4214,15,1,f +14015,4215a,15,4,f +14015,4275a,7,2,f +14015,4282,7,4,f +14015,4282,4,1,f +14015,4284,47,1,f +14015,4286,7,2,f +14015,4315,4,1,f +14015,4459,0,12,f +14015,4477,7,8,f +14015,4488,0,4,f +14015,4510,0,8,f +14015,4510,7,18,f +14015,4531,7,2,f +14015,4589,4,8,f +14015,4594,47,1,f +14015,4624,7,4,f +14015,4859,15,1,f +14015,4865a,0,4,f +14015,4865a,4,6,f +14015,56823,0,1,f +14015,6141,36,2,f +14015,70278,0,1,f +14015,73037,4,1,f +14015,73092,0,2,f +14015,73590c01a,0,2,f +14015,80547pb01,7,1,f +14015,970c00,1,1,f +14015,970c00,0,1,f +14015,973p13c01,4,1,f +14015,973p26c01,1,1,f +14016,3004,1,1,f +14016,3005,2,9,f +14016,3005,73,1,f +14016,3005,14,1,f +14016,30153,47,1,f +14016,3040b,25,1,f +14016,3040b,2,6,f +14016,32125,71,4,f +14016,3849,0,1,f +14016,3941,4,1,f +14016,4286,2,6,f +14016,4589,2,2,f +14016,60474,15,1,f +14016,6141,297,4,f +14016,6141,80,1,t +14016,6141,4,4,f +14016,6141,80,4,f +14016,6141,297,3,t +14016,6141,4,1,t +14017,194cx1,7,2,f +14017,2348b,33,1,f +14017,2349a,14,1,f +14017,2412b,7,5,f +14017,2433,0,1,f +14017,2436,14,3,f +14017,2508,14,1,f +14017,2516,0,1,f +14017,2540,7,1,f +14017,2555,7,1,f +14017,2654,7,2,f +14017,2877,0,1,f +14017,3003,14,1,f +14017,3005,7,1,f +14017,3010,14,1,f +14017,3020,0,1,f +14017,3021,0,1,f +14017,3022,14,1,f +14017,3022,4,2,f +14017,3022,0,2,f +14017,3023,7,2,f +14017,3023,14,3,f +14017,3023,0,2,f +14017,3024,46,4,f +14017,3024,14,2,f +14017,3024,0,1,f +14017,3062b,4,1,f +14017,3069b,14,2,f +14017,3069bp52,15,1,f +14017,3139,0,2,f +14017,3626bpr0001,14,1,f +14017,3673,7,1,f +14017,3700,14,1,f +14017,3700,7,1,f +14017,3705,0,1,f +14017,3710,14,1,f +14017,3730,7,1,f +14017,3787,14,1,f +14017,3788,14,2,f +14017,3794a,7,2,f +14017,3821,14,1,f +14017,3822,14,1,f +14017,3823,41,1,f +14017,3829c01,4,1,f +14017,3833,4,1,f +14017,3837,0,1,f +14017,3941,7,2,f +14017,3957a,4,1,f +14017,4070,7,1,f +14017,4085c,0,3,f +14017,4212b,14,1,f +14017,4214,14,1,f +14017,4276b,14,1,f +14017,4600,0,3,f +14017,4624,14,2,f +14017,4740,7,1,f +14017,6014a,14,4,f +14017,6015,0,4,f +14017,6141,0,1,f +14017,6141,46,1,f +14017,73590c01b,14,1,f +14017,970c00,4,1,f +14017,973pb0203c01,15,1,f +14018,11211,71,6,f +14018,11477,25,2,f +14018,11477,70,3,f +14018,14417,72,4,f +14018,14419,72,7,f +14018,14704,71,5,f +14018,15068,191,6,f +14018,15068,14,2,f +14018,15068,70,2,f +14018,15573,191,1,f +14018,18649,71,1,f +14018,22890,72,1,f +14018,2420,70,2,f +14018,3004,191,8,f +14018,3020,191,7,f +14018,3020,4,1,f +14018,3022,191,8,f +14018,3022,15,3,f +14018,3022,70,2,f +14018,3023,70,1,f +14018,3023,191,12,f +14018,3024,191,2,f +14018,3024,191,1,t +14018,3069b,191,7,f +14018,3070b,70,1,t +14018,3070b,15,2,f +14018,3070b,15,1,t +14018,3070b,70,3,f +14018,3626bpr0677,14,1,f +14018,3626cpr0752,14,1,f +14018,40228stk01,9999,1,f +14018,41879a,321,1,f +14018,41879a,30,1,f +14018,4286,191,2,f +14018,54200,70,1,t +14018,54200,70,1,f +14018,59900,14,2,f +14018,6019,25,2,f +14018,60470b,191,1,f +14018,60478,191,2,f +14018,6141,70,2,f +14018,6141,70,1,t +14018,62810,308,1,f +14018,85984,191,2,f +14018,87087,191,6,f +14018,87990,308,1,f +14018,93273,191,4,f +14018,973pr1479c01,15,1,f +14018,973pr2925c01,27,1,f +14018,98138pr0008,15,2,f +14018,98138pr0008,15,1,t +14019,2357,7,2,f +14019,2357,4,4,f +14019,2412b,0,7,f +14019,2419,0,2,f +14019,2446,0,2,f +14019,2447,42,1,f +14019,2447,34,1,f +14019,2463,34,2,f +14019,2464,4,2,f +14019,2483p50,34,1,f +14019,2507,34,1,f +14019,2680,0,4,f +14019,3001,0,1,f +14019,3002,7,2,f +14019,3004,7,4,f +14019,3005,7,2,f +14019,3009,0,2,f +14019,3020,0,1,f +14019,3022,7,1,f +14019,3022,4,4,f +14019,3024,0,2,f +14019,3034,7,1,f +14019,3039pc3,7,1,f +14019,3068bp69,0,1,f +14019,3069bp15,0,2,f +14019,3479,7,1,f +14019,3623,0,4,f +14019,3626apr0001,14,1,f +14019,3626bp69,14,1,f +14019,3659,7,2,f +14019,3665,0,4,f +14019,3666,7,1,f +14019,3701,7,4,f +14019,3708,0,3,f +14019,3710,7,1,f +14019,3710,0,8,f +14019,3713,7,3,f +14019,3830,0,6,f +14019,3831,0,6,f +14019,3838,0,2,f +14019,3839b,0,1,f +14019,3933,0,2,f +14019,3934,0,2,f +14019,3935,7,1,f +14019,3936,7,1,f +14019,3941,0,5,f +14019,3957a,4,2,f +14019,3958,0,1,f +14019,4032a,0,4,f +14019,4081b,0,2,f +14019,4229,0,4,f +14019,4286,7,4,f +14019,4315,0,1,f +14019,4349,15,1,f +14019,4589,4,2,f +14019,4625,0,1,f +14019,4859,0,1,f +14019,4864a,0,1,f +14019,6019,0,2,f +14019,6058,7,1,f +14019,6061,7,3,f +14019,970x001,2,1,f +14019,970x026,15,1,f +14019,973p51c01,15,1,f +14019,973p69c01,15,1,f +14020,11213,71,1,f +14020,13548,71,8,f +14020,2412b,72,4,f +14020,2540,72,1,f +14020,2654,72,1,f +14020,2780,0,1,t +14020,2780,0,4,f +14020,2817,0,1,f +14020,3020,72,1,f +14020,3022,71,3,f +14020,3023,0,1,f +14020,30374,0,4,f +14020,30375,484,1,f +14020,30376,484,1,f +14020,30377,484,1,f +14020,30377,484,1,t +14020,30378,484,1,f +14020,32064a,71,2,f +14020,32123b,71,4,f +14020,32123b,71,1,t +14020,4032a,71,4,f +14020,4274,1,4,f +14020,4274,1,1,t +14020,43093,1,4,f +14020,43898,72,4,f +14020,44728,0,2,f +14020,4740,36,1,f +14020,4740,71,1,f +14020,48336,71,1,f +14020,51739,72,6,f +14020,57585,71,2,f +14020,58247,0,1,f +14020,59230,484,1,t +14020,59230,484,1,f +14020,59443,72,4,f +14020,59900,36,1,f +14020,59900,71,1,f +14020,61184,71,1,f +14020,6141,71,5,f +14020,6141,71,1,t +14020,62462,0,4,f +14020,62462,71,4,f +14020,87079,70,1,f +14020,87082,71,4,f +14020,87580,71,1,f +14020,92280,71,3,f +14020,99207,71,3,f +14021,13255,15,1,f +14021,13358,0,1,f +14021,14269,15,1,f +14021,3437,0,1,f +14021,3437,4,1,f +14021,3437,10,1,f +14021,51560,72,2,f +14021,6377,72,5,f +14021,6378,72,8,f +14021,6391,72,1,f +14021,6510,14,1,f +14021,76371,15,1,f +14022,3001,82,1,f +14026,2780,0,8,f +14026,2780,0,3,t +14026,32002,72,2,f +14026,32002,72,1,t +14026,32013,4,4,f +14026,32015,4,4,f +14026,32039,4,2,f +14026,32039,0,1,f +14026,32039,71,4,f +14026,32054,4,1,f +14026,32054,0,2,f +14026,32062,4,16,f +14026,32073,71,5,f +14026,32123b,71,2,f +14026,32174,4,2,f +14026,32174,72,5,f +14026,32174,143,5,f +14026,32174,0,8,f +14026,32184,71,4,f +14026,32192,72,8,f +14026,32249,0,4,f +14026,32271,72,7,f +14026,32291,0,2,f +14026,32449,0,4,f +14026,32476,320,2,f +14026,32476,0,2,f +14026,32506,15,2,f +14026,32523,0,2,f +14026,32524,71,1,f +14026,32524,0,2,f +14026,32580,135,4,f +14026,3673,71,8,f +14026,3673,71,1,t +14026,3705,0,2,f +14026,3706,0,3,f +14026,3713,71,1,t +14026,3713,71,6,f +14026,40379,15,2,f +14026,40379,288,4,f +14026,41669,36,2,f +14026,41669,57,2,f +14026,41670,272,2,f +14026,41670,320,2,f +14026,41677,0,8,f +14026,42003,71,2,f +14026,42074,135,1,f +14026,4274,71,10,f +14026,4274,71,3,t +14026,43093,1,21,f +14026,44294,71,1,f +14026,44936,148,2,f +14026,4519,71,15,f +14026,45749,288,2,f +14026,47296,288,2,f +14026,47302,272,1,f +14026,47306,0,1,f +14026,47308,320,1,f +14026,47312,72,2,f +14026,47326pat03,0,4,f +14026,47337,135,8,f +14026,48729a,0,2,f +14026,48989,71,2,f +14026,49423,135,2,f +14026,50898,72,1,f +14026,50898,0,2,f +14026,50898,143,1,f +14026,50923,72,2,f +14026,50926,135,2,f +14026,50931,288,2,f +14026,53451,135,2,f +14026,53451,27,16,f +14026,53542,320,2,f +14026,53544,135,1,f +14026,53545,0,2,f +14026,53549,272,2,f +14026,53551,135,20,f +14026,53564,135,1,f +14026,53574,288,2,f +14026,53585,0,4,f +14026,53586,135,4,f +14026,55013,0,4,f +14026,56160,135,1,f +14026,56245,0,1,f +14026,57527,135,2,f +14026,57536,42,2,f +14026,57539,4,2,f +14026,57539,135,4,f +14026,57543,135,1,f +14026,57553pat0001,34,2,f +14026,57555,182,2,f +14026,57556,135,1,f +14026,57561,15,2,f +14026,57563,135,1,f +14026,57565,135,2,f +14026,57566,135,2,f +14026,57569,288,2,f +14026,59426,72,4,f +14026,59490pat0002,27,3,f +14026,6536,72,2,f +14026,6536,0,10,f +14026,6553,72,2,f +14026,6558,0,12,f +14026,6575,0,2,f +14026,6587,72,2,f +14026,6632,0,4,f +14027,3626bpr0887,14,1,f +14027,88646,0,1,f +14027,970c01pr0292,15,1,f +14027,973pr1960ac01,15,1,f +14027,98369,179,1,f +14027,98372pr0001,15,1,f +14027,98381,15,1,f +14028,4350c02,7,1,f +14029,10201,71,5,f +14029,10201,0,4,f +14029,12825,0,2,f +14029,12825,72,2,f +14029,2357,0,2,f +14029,2357,15,4,f +14029,2357,71,4,f +14029,2357,72,2,f +14029,2357,70,2,f +14029,2417,288,2,f +14029,2420,15,2,f +14029,2420,0,2,f +14029,2420,19,2,f +14029,2420,71,2,f +14029,2431,308,10,f +14029,2431,320,14,f +14029,2444,15,4,f +14029,2445,72,1,f +14029,2453b,0,1,f +14029,2453b,15,8,f +14029,2454a,0,1,f +14029,2465,0,1,f +14029,2540,0,17,f +14029,2639,72,2,f +14029,2730,15,3,f +14029,2780,0,12,f +14029,2780,0,2,t +14029,2877,0,50,f +14029,2877,15,14,f +14029,3001,288,2,f +14029,3004,71,6,f +14029,3004,72,30,f +14029,3004,70,1,f +14029,30044,70,6,f +14029,30045,0,2,f +14029,30046,297,4,f +14029,3005,19,16,f +14029,3005,72,6,f +14029,3005,378,6,f +14029,30055,70,3,f +14029,3009,15,7,f +14029,3010,378,4,f +14029,3010,71,6,f +14029,3010,72,8,f +14029,30103,0,1,f +14029,30136,28,14,f +14029,30136,70,3,f +14029,30154,72,4,f +14029,3020,70,4,f +14029,3020,0,4,f +14029,3020,72,11,f +14029,3020,19,1,f +14029,3021,0,5,f +14029,3022,72,2,f +14029,3023,70,2,f +14029,3023,28,3,f +14029,3023,72,4,f +14029,3023,71,3,f +14029,3023,19,22,f +14029,3023,320,12,f +14029,3023,0,17,f +14029,3023,73,6,f +14029,30236,19,12,f +14029,3024,72,6,f +14029,3024,320,8,f +14029,3024,19,4,f +14029,3027,72,2,f +14029,3031,70,2,f +14029,3032,70,2,f +14029,3032,72,1,f +14029,3034,15,1,f +14029,3035,72,1,f +14029,30350b,72,2,f +14029,3036,72,7,f +14029,30363,15,2,f +14029,3037,272,24,f +14029,30374,15,1,f +14029,30374,19,1,f +14029,30374,0,2,f +14029,30374,71,1,f +14029,30374,70,10,f +14029,3038,15,2,f +14029,30381,0,1,f +14029,30385,36,1,f +14029,3039,272,12,f +14029,3040b,72,4,f +14029,3040b,70,2,f +14029,3041,272,5,f +14029,30414,19,4,f +14029,30414,0,3,f +14029,30414,15,13,f +14029,3043,0,1,f +14029,3044c,272,3,f +14029,3048c,288,3,f +14029,3049d,272,3,f +14029,30565,72,4,f +14029,30613,0,2,f +14029,3062b,46,11,f +14029,3062b,0,43,f +14029,3062b,70,39,f +14029,3068b,320,2,f +14029,3068b,19,1,f +14029,3068b,15,2,f +14029,3068bpr0179,19,1,f +14029,3068bpr0184,71,1,f +14029,3068bpr0185,19,1,f +14029,3069b,0,10,f +14029,3069b,308,15,f +14029,3069b,0,4,t +14029,3069b,19,4,f +14029,3069b,72,4,t +14029,3069b,294,25,f +14029,3069b,72,6,f +14029,3069b,15,26,f +14029,3070b,0,1,t +14029,3070b,0,4,f +14029,32054,0,1,f +14029,32187,71,1,f +14029,32249,0,4,f +14029,32316,0,2,f +14029,32474,0,2,f +14029,32523,0,2,f +14029,32530,0,4,f +14029,33320,70,1,f +14029,3460,15,1,f +14029,3460,0,9,f +14029,3460,72,1,f +14029,3622,378,10,f +14029,3622,70,10,f +14029,3622,19,16,f +14029,3622,72,2,f +14029,3622,15,4,f +14029,3623,70,2,f +14029,3623,19,14,f +14029,3623,72,4,f +14029,3626bpr0703,78,1,f +14029,3626bpr0704,78,1,f +14029,3626bpr0708,78,1,f +14029,3626bpr0709,78,1,f +14029,3626bpr0711,78,2,f +14029,3626bpr0717,78,1,f +14029,3626bpr0718,78,1,f +14029,3626bpr0724,78,1,f +14029,3626bpr0895,15,1,f +14029,3660,15,12,f +14029,3660,70,1,f +14029,3660,19,4,f +14029,3665,70,8,f +14029,3665,15,6,f +14029,3666,72,16,f +14029,3666,484,2,f +14029,3666,0,11,f +14029,3666,288,8,f +14029,3666,70,10,f +14029,3666,15,4,f +14029,3666,19,23,f +14029,3673,71,1,t +14029,3673,71,1,f +14029,3679,71,1,f +14029,3680,71,1,f +14029,3700,19,2,f +14029,3701,70,1,f +14029,3710,72,1,f +14029,3710,19,5,f +14029,3710,70,16,f +14029,3710,0,1,f +14029,3737,0,2,f +14029,3738,72,2,f +14029,3747b,19,2,f +14029,3794a,297,2,f +14029,3794a,70,2,f +14029,3794b,70,2,f +14029,3795,19,1,f +14029,3795,70,2,f +14029,3830,71,6,f +14029,3830,15,4,f +14029,3831,15,4,f +14029,3831,71,6,f +14029,3937,378,1,f +14029,3937,71,7,f +14029,3938,0,1,f +14029,3938,71,7,f +14029,3940b,0,1,f +14029,3941,272,2,f +14029,3957b,0,2,f +14029,3958,72,1,f +14029,40233,71,1,f +14029,40233,0,1,f +14029,40234,71,1,f +14029,40238,0,1,f +14029,40239,19,1,f +14029,40250pr03,308,1,f +14029,4032a,0,2,f +14029,4032a,19,3,f +14029,4032a,72,5,f +14029,4070,70,24,f +14029,4081b,19,8,f +14029,4081b,0,12,f +14029,4081b,15,26,f +14029,4150,19,4,f +14029,4162,0,3,f +14029,4162,15,8,f +14029,41769,15,1,f +14029,41770,15,1,f +14029,41879a,70,1,f +14029,41879a,71,1,f +14029,42109,78,2,f +14029,4216,15,12,f +14029,4216,378,26,f +14029,4274,1,3,t +14029,4274,1,13,f +14029,4286,70,2,f +14029,43093,1,1,f +14029,4341,0,2,f +14029,43722,72,5,f +14029,43723,72,5,f +14029,43898,0,2,f +14029,4460b,72,2,f +14029,44728,19,5,f +14029,4477,19,1,f +14029,4477,70,2,f +14029,4510,19,4,f +14029,4519,71,2,f +14029,4599b,0,9,f +14029,4733,0,3,f +14029,4740,0,8,f +14029,4740,72,3,f +14029,4742,0,1,f +14029,48092,15,8,f +14029,48336,19,4,f +14029,48336,15,2,f +14029,48336,297,7,f +14029,4865b,71,1,f +14029,48729b,0,1,f +14029,48729b,0,1,t +14029,50231,0,1,f +14029,50950,320,3,f +14029,50950,297,3,f +14029,51739,15,1,f +14029,54200,288,4,f +14029,54200,320,1,t +14029,54200,320,2,f +14029,54200,0,1,t +14029,54200,0,8,f +14029,54200,15,1,t +14029,54200,288,1,t +14029,54200,15,12,f +14029,57503,334,1,f +14029,57504,334,1,f +14029,57505,334,1,f +14029,57506,334,1,f +14029,59363,70,1,f +14029,59426,72,1,f +14029,59443,72,1,f +14029,59900,320,8,f +14029,59900,29,2,f +14029,59900,34,2,f +14029,59900,0,6,f +14029,59900,46,2,f +14029,59900,378,6,f +14029,59900,40,3,f +14029,59900,70,11,f +14029,6003,72,2,f +14029,6005,0,2,f +14029,60470b,0,1,f +14029,60474,0,4,f +14029,60475b,71,4,f +14029,60477,15,2,f +14029,60478,72,2,f +14029,60479,15,1,f +14029,60583b,15,2,f +14029,60592,288,11,f +14029,60592,0,24,f +14029,60592,70,20,f +14029,60593,15,6,f +14029,60593,288,14,f +14029,60594,0,2,f +14029,60596,0,2,f +14029,60601,47,55,f +14029,60602,47,20,f +14029,60607,297,4,f +14029,60623,0,2,f +14029,60897,72,2,f +14029,6108,15,1,f +14029,61252,71,2,f +14029,61252,297,12,f +14029,6131,288,1,f +14029,6131,1,1,f +14029,6141,0,20,f +14029,6141,0,2,t +14029,6141,19,1,t +14029,6141,85,12,f +14029,6141,19,20,f +14029,6141,15,12,f +14029,6141,70,3,t +14029,6141,70,21,f +14029,6141,297,73,f +14029,6141,72,8,f +14029,6141,85,1,t +14029,6141,297,2,t +14029,6141,72,2,t +14029,6141,15,1,t +14029,6141,80,11,f +14029,6141,80,3,t +14029,61485,0,1,f +14029,61780,70,1,f +14029,6179,72,1,f +14029,6179,0,1,f +14029,6180,0,1,f +14029,6182,15,2,f +14029,61975,70,2,f +14029,6231,71,4,f +14029,62462,0,1,f +14029,62462,320,1,f +14029,6260,15,1,f +14029,6265,15,1,t +14029,6265,15,2,f +14029,6266,15,2,f +14029,6266,0,12,f +14029,62808,72,2,f +14029,62810,484,2,f +14029,63864,15,2,f +14029,63868,72,2,f +14029,63965,0,5,f +14029,64644,297,2,f +14029,64647,288,1,t +14029,64647,15,2,f +14029,64647,288,2,f +14029,64647,15,2,t +14029,64647,57,4,f +14029,64647,57,2,t +14029,64648,179,1,f +14029,6541,71,2,f +14029,6636,0,3,f +14029,6636,70,1,f +14029,6636,15,14,f +14029,73983,19,10,f +14029,73983,72,4,f +14029,73983,0,27,f +14029,85080,0,8,f +14029,85941,0,1,f +14029,85984,15,6,f +14029,86208,72,1,f +14029,87079,70,2,f +14029,87079,0,1,f +14029,87079,272,1,f +14029,87079,15,2,f +14029,87082,71,1,f +14029,87087,15,72,f +14029,87087,0,16,f +14029,87580,71,1,f +14029,87601,70,2,f +14029,87991,484,1,f +14029,88292,0,2,f +14029,88292,19,2,f +14029,88293,0,2,f +14029,88393,15,8,f +14029,92081,308,1,f +14029,92084pr0001,70,2,f +14029,92084pr0002,72,1,f +14029,92084pr0003,15,1,f +14029,92280,71,2,f +14029,92947,15,29,f +14029,92950,0,2,f +14029,970c00,72,1,f +14029,970c00,484,2,f +14029,970c00,320,1,f +14029,970c00,70,1,f +14029,970c00,0,3,f +14029,973pr1672c01,0,1,f +14029,973pr1674c01,272,1,f +14029,973pr1675c01,71,1,f +14029,973pr1679c01,0,1,f +14029,973pr1682c01,0,2,f +14029,973pr1686c01,4,1,f +14029,973pr1688c01,484,2,f +14029,973pr1689c01,70,1,f +14030,11090,0,4,f +14030,11477,25,2,f +14030,14417,72,3,f +14030,14418,71,3,f +14030,14769pr1001,15,1,f +14030,15208,15,1,f +14030,3004,25,4,f +14030,3021,0,2,f +14030,3022,25,1,f +14030,3023,25,5,f +14030,3024,4,1,t +14030,3024,4,1,f +14030,3039,25,1,f +14030,3626cpr1001,15,2,f +14030,3747b,0,1,f +14030,3794b,4,1,f +14030,3937,0,1,f +14030,3942c,25,2,f +14030,40379,0,2,f +14030,44301a,72,3,f +14030,44728,25,3,f +14030,49668,0,2,f +14030,53451,0,1,t +14030,53451,0,2,f +14030,54200,0,1,t +14030,54200,0,2,f +14030,60471,71,3,f +14030,60478,0,4,f +14030,60897,0,2,f +14030,6134,71,1,f +14030,85984,0,3,f +14030,86035,25,2,f +14030,93273,25,2,f +14030,98138,15,2,f +14030,98138,15,1,t +14031,10197,72,2,f +14031,10288,308,2,f +14031,11153,320,4,f +14031,11211,71,1,f +14031,11458,72,2,f +14031,11591pr0001,4,1,f +14031,11598,52,2,f +14031,11599,35,1,f +14031,12825,4,2,f +14031,12993,326,1,f +14031,2412b,320,5,f +14031,2447,47,1,f +14031,2447,47,1,t +14031,2476a,28,1,f +14031,2540,4,3,f +14031,2569,0,1,f +14031,2569,0,1,t +14031,2654,47,1,f +14031,2780,0,3,f +14031,2780,0,2,t +14031,3002,27,1,f +14031,3003,28,3,f +14031,3004,15,1,f +14031,30151a,42,1,f +14031,30169,0,1,f +14031,3020,4,1,f +14031,3020,28,12,f +14031,3021,320,1,f +14031,3022,27,4,f +14031,3023,28,12,f +14031,3024,320,2,f +14031,3024,320,1,t +14031,3034,28,3,f +14031,30367b,27,6,f +14031,3039,320,1,f +14031,30602,15,1,f +14031,3062b,57,1,f +14031,3062b,41,2,f +14031,3062b,320,4,f +14031,3068b,28,1,f +14031,32000,0,11,f +14031,32064b,320,2,f +14031,32064b,72,6,f +14031,32192,0,14,f +14031,32523,0,1,f +14031,32530,72,1,f +14031,3464,15,2,f +14031,3626cpr1154,14,1,f +14031,3660,19,2,f +14031,3666,72,2,f +14031,3700,19,2,f +14031,3701,72,1,f +14031,3706,0,6,f +14031,3708,0,2,f +14031,3710,320,3,f +14031,3713,71,3,f +14031,3713,71,1,t +14031,4032a,0,2,f +14031,4032a,72,1,f +14031,4085c,72,2,f +14031,41532,0,4,f +14031,41677,71,1,f +14031,41747,27,1,f +14031,41748,27,1,f +14031,42446,72,1,f +14031,4274,71,1,t +14031,4274,71,2,f +14031,43093,1,14,f +14031,4349,0,2,f +14031,44674,15,1,f +14031,44675,0,8,f +14031,44676,15,2,f +14031,44728,19,6,f +14031,4528,0,1,f +14031,4590,72,1,f +14031,4598,15,1,f +14031,4740,45,1,f +14031,47753,27,1,f +14031,47905,72,1,f +14031,48336,297,1,f +14031,50943,72,2,f +14031,50948,27,6,f +14031,50950,27,4,f +14031,53451,27,1,t +14031,53451,27,2,f +14031,54200,320,4,f +14031,54200,320,1,t +14031,54821,52,1,f +14031,55236,27,4,f +14031,55236,27,1,t +14031,57906,42,4,f +14031,6019,15,2,f +14031,60470a,0,3,f +14031,6091,320,6,f +14031,6141,41,1,t +14031,6141,41,6,f +14031,6141,297,2,t +14031,6141,297,4,f +14031,6239,320,5,f +14031,6587,28,3,f +14031,70702stk01,9999,1,t +14031,72454,72,2,f +14031,85943,72,1,f +14031,85984,15,1,f +14031,87083,72,1,f +14031,87752,36,2,f +14031,87781,4,1,f +14031,90192,320,2,f +14031,95199,72,2,f +14031,970c00pr0458,326,1,f +14031,970c00pr0463,4,1,f +14031,970c00pr0464,4,1,f +14031,973pr2256c01,326,1,f +14031,973pr2260c01,71,1,f +14031,973pr2297c01,71,1,f +14031,98564,148,2,f +14031,99780,72,14,f +14031,99781,71,12,f +14034,236bc96,15,1,f +14034,3001a,0,3,f +14034,3002a,0,4,f +14034,3003,0,2,f +14034,3004,47,4,f +14034,3004,0,3,f +14034,3005,0,8,f +14034,3005,47,4,f +14034,3008,0,2,f +14034,3009,0,2,f +14034,3010,0,5,f +14034,3010pb007,0,2,f +14034,3020,4,3,f +14034,3020,0,5,f +14034,3021,4,2,f +14034,3021,0,2,f +14034,3022,0,3,f +14034,3022,14,1,f +14034,3037,0,2,f +14034,3038,0,2,f +14034,3039,0,3,f +14034,3040a,0,4,f +14034,3058b,7,1,f +14034,3087c,4,2,f +14034,458,7,4,f +14034,468c02,0,1,f +14034,498,0,2,f +14034,564c01,0,1,f +14034,7039,4,4,f +14034,7049b,15,2,f +14034,737ac01,4,2,f +14034,737ac02,4,2,f +14034,wheel2a,4,4,f +14034,wheel2b,4,4,f +14036,2412b,4,4,f +14036,2412b,0,2,f +14036,2412b,72,7,f +14036,2431,0,1,f +14036,2431,15,7,f +14036,2431,4,3,f +14036,2432,0,1,f +14036,2437,40,1,f +14036,2445,0,1,f +14036,2780,0,1,t +14036,2780,0,4,f +14036,2877,72,2,f +14036,30000,72,2,f +14036,3002,14,1,f +14036,3003,14,1,f +14036,3004,14,2,f +14036,3004,4,10,f +14036,30043,0,1,f +14036,3005,14,2,f +14036,3005,2,4,f +14036,3009,72,2,f +14036,3010,14,6,f +14036,3020,15,4,f +14036,3020,0,8,f +14036,3021,14,8,f +14036,3022,2,2,f +14036,3022,14,3,f +14036,3023,71,13,f +14036,3023,46,2,f +14036,3023,4,3,f +14036,3024,71,4,f +14036,3028,10,2,f +14036,3031,1,1,f +14036,3032,71,2,f +14036,3034,72,6,f +14036,3035,0,1,f +14036,30363,4,1,f +14036,30414,15,6,f +14036,30541,0,3,f +14036,3068b,72,3,f +14036,3069b,182,6,f +14036,3069b,15,2,f +14036,3069b,4,2,f +14036,32000,71,2,f +14036,32009,4,2,f +14036,32028,0,6,f +14036,32059,4,2,f +14036,32064b,71,4,f +14036,32123b,14,2,f +14036,32123b,14,2,t +14036,32124,0,1,f +14036,32125,71,1,f +14036,32278,0,2,f +14036,32449,4,4,f +14036,3245b,4,4,f +14036,3297,2,4,f +14036,3460,15,2,f +14036,3660,4,4,f +14036,3665,14,2,f +14036,3666,71,4,f +14036,3666,0,1,f +14036,3701,71,4,f +14036,3702,0,2,f +14036,3706,0,1,f +14036,3710,14,1,f +14036,3710,15,3,f +14036,3710,4,3,f +14036,3738,71,1,f +14036,3795,4,3,f +14036,3795,71,5,f +14036,3795,2,2,f +14036,3821,14,1,f +14036,3821,4,2,f +14036,3822,14,1,f +14036,3822,4,2,f +14036,3829c01,4,1,f +14036,3829c01,14,1,f +14036,3899,14,1,f +14036,3900,15,1,f +14036,3937,15,1,f +14036,3941,1,3,f +14036,3943b,15,1,f +14036,3958,4,3,f +14036,4032a,0,1,f +14036,40620,71,2,f +14036,4079,14,1,f +14036,4085c,0,2,f +14036,4150pr0022,71,2,f +14036,4162,71,4,f +14036,4176,47,1,f +14036,41769,15,1,f +14036,41770,15,1,f +14036,4282,0,1,f +14036,43093,1,2,f +14036,43337,14,2,f +14036,43337,4,3,f +14036,43722,71,1,f +14036,43723,71,1,f +14036,44300,72,3,f +14036,44302a,0,3,f +14036,4488,71,12,f +14036,4532,4,4,f +14036,4533,72,4,f +14036,45677,14,2,f +14036,4623,14,6,f +14036,47397,15,3,f +14036,47457,15,1,f +14036,48336,0,2,f +14036,4865a,40,1,f +14036,4865a,15,2,f +14036,50450,0,1,f +14036,50745,0,4,f +14036,50745,15,4,f +14036,50745,4,2,f +14036,52036,15,1,f +14036,52038,72,2,f +14036,52107,14,3,f +14036,52501,14,2,f +14036,54200,0,6,f +14036,54200,47,1,t +14036,54200,47,2,f +14036,54200,36,2,f +14036,54200,15,1,t +14036,54200,36,1,t +14036,54200,15,9,f +14036,54200,0,2,t +14036,55013,72,1,f +14036,57779,4,2,f +14036,6014b,15,16,f +14036,60474,15,4,f +14036,60700,0,16,f +14036,6081,15,4,f +14036,6091,15,4,f +14036,6111,15,2,f +14036,6134,4,1,f +14036,61409,72,4,f +14036,6141,36,4,f +14036,6141,182,5,f +14036,6141,182,3,t +14036,6141,36,2,t +14036,61484,4,1,f +14036,61485,0,1,f +14036,6157,71,2,f +14036,6179,15,5,f +14036,62743,15,3,f +14036,6553,71,1,f +14036,6587,72,4,f +14036,6636,15,2,f +14036,85941,15,10,f +14036,88930,15,1,f +14038,11854,15,3,f +14038,18918,29,2,f +14038,2300,4,1,f +14038,2302,29,2,f +14038,3011,158,2,f +14038,3011,5,1,f +14038,3011,29,2,f +14038,3437,226,4,f +14038,3437,4,3,f +14038,3437,484,3,f +14038,3437,158,2,f +14038,3437,29,3,f +14038,3437,5,2,f +14038,40666,70,2,f +14038,40666,484,1,f +14038,6510,14,1,f +14038,6510,31,2,f +14038,6510,4,1,f +14038,6510,5,1,f +14038,74940,5,1,f +14038,98215,484,2,f +14038,98218,484,4,f +14038,98218,5,4,f +14038,98220,29,2,f +14038,98222,31,1,f +14038,98223,70,2,f +14038,98233,226,1,f +14038,99046,226,1,f +14039,2412b,383,2,f +14039,2412b,0,2,f +14039,2436,0,2,f +14039,3005,0,2,f +14039,3010,0,2,f +14039,3021,4,1,f +14039,3021,72,1,f +14039,3022,0,1,f +14039,3023,71,2,f +14039,3024,36,2,f +14039,3031,0,1,f +14039,3069b,0,2,f +14039,3070b,0,1,t +14039,3070b,0,4,f +14039,32028,0,1,f +14039,3710,0,3,f +14039,3788,0,2,f +14039,3795,71,2,f +14039,3795,4,1,f +14039,45677px2,0,1,f +14039,50943,80,1,f +14039,50944pr0001,0,4,f +14039,50951,0,4,f +14039,6157,0,2,f +14040,2335pr02,15,1,f +14040,2343,0,2,f +14040,2357,15,2,f +14040,2412b,71,3,f +14040,2412b,36,2,f +14040,2412b,72,6,f +14040,2420,14,8,f +14040,2420,71,6,f +14040,2420,4,2,f +14040,2431,4,8,f +14040,2431,71,2,f +14040,2431,72,7,f +14040,2432,72,2,f +14040,2444,71,2,f +14040,2445,0,4,f +14040,2446pr23,0,1,f +14040,2453a,15,5,f +14040,2454a,19,4,f +14040,2454a,15,1,f +14040,2540,71,2,f +14040,2540,72,4,f +14040,2540,4,2,f +14040,2540,14,2,f +14040,2555,71,12,f +14040,2555,15,2,f +14040,2877,70,6,f +14040,2877,71,1,f +14040,2926,0,3,f +14040,3001,72,4,f +14040,3001,15,1,f +14040,3001,71,1,f +14040,3002,71,2,f +14040,3002,4,1,f +14040,3003,4,1,f +14040,3004,70,1,f +14040,3004,19,2,f +14040,3004,72,1,f +14040,3004,15,9,f +14040,3005,70,1,f +14040,3005,72,6,f +14040,3005,19,12,f +14040,3005,15,17,f +14040,3008,15,7,f +14040,3008,19,3,f +14040,3009,19,2,f +14040,3009,15,3,f +14040,3009,72,2,f +14040,3010,4,1,f +14040,3010,14,1,f +14040,3010,19,6,f +14040,3010,15,4,f +14040,30157,71,1,f +14040,30194,72,1,f +14040,3020,4,3,f +14040,3020,14,2,f +14040,3020,0,2,f +14040,3020,71,7,f +14040,3021,0,4,f +14040,3021,4,3,f +14040,3021,70,4,f +14040,3021,72,1,f +14040,3022,0,1,f +14040,3022,14,2,f +14040,3022,4,2,f +14040,3022,71,3,f +14040,3022,72,6,f +14040,3023,27,4,f +14040,3023,47,2,f +14040,3023,14,2,f +14040,3023,71,8,f +14040,3023,70,2,f +14040,3023,15,2,f +14040,3023,72,12,f +14040,3023,4,5,f +14040,3024,0,1,f +14040,3024,4,4,f +14040,3024,72,12,f +14040,3024,71,8,f +14040,3024,14,2,f +14040,3024,15,1,f +14040,3024,46,4,f +14040,3027,0,7,f +14040,3029,71,1,f +14040,3030,0,1,f +14040,3031,4,1,f +14040,3031,0,1,f +14040,3032,0,3,f +14040,3032,72,1,f +14040,3033,0,1,f +14040,3035,0,2,f +14040,3036,0,2,f +14040,3036,71,1,f +14040,30374,71,5,f +14040,3039,15,2,f +14040,3039pr0002,15,1,f +14040,30414,72,2,f +14040,30414,14,1,f +14040,30608,70,1,f +14040,3062b,71,6,f +14040,30648,0,6,f +14040,3065,47,5,f +14040,30663,0,1,f +14040,3068b,72,3,f +14040,3068b,71,3,f +14040,3068b,19,2,f +14040,3068b,4,2,f +14040,3068b,14,2,f +14040,3069b,70,1,f +14040,3069b,15,1,f +14040,3069b,71,3,f +14040,3069b,14,4,f +14040,3069bpr0101,71,1,f +14040,3070b,15,2,f +14040,3070b,14,2,f +14040,3070b,4,1,t +14040,3070b,72,1,t +14040,3070b,4,4,f +14040,3070b,72,11,f +14040,3070b,14,1,t +14040,3070b,15,1,t +14040,3176,72,1,f +14040,32000,0,5,f +14040,32002,72,1,t +14040,32002,72,2,f +14040,32028,0,3,f +14040,32062,4,1,f +14040,32064b,71,2,f +14040,3460,71,3,f +14040,3460,72,3,f +14040,3622,72,1,f +14040,3622,19,4,f +14040,3623,4,11,f +14040,3623,15,1,f +14040,3623,14,4,f +14040,3623,70,8,f +14040,3626bpr0233,14,1,f +14040,3626bpr0389,14,1,f +14040,3626bpr0409,14,1,f +14040,3626cpr0500,14,1,f +14040,3665,15,1,f +14040,3666,70,3,f +14040,3666,71,6,f +14040,3673,71,4,f +14040,3673,71,1,t +14040,3700,4,4,f +14040,3701,0,2,f +14040,3705,0,1,f +14040,3707,0,1,f +14040,3710,14,5,f +14040,3710,71,5,f +14040,3710,72,8,f +14040,3710,0,3,f +14040,3710,19,2,f +14040,3710,15,3,f +14040,3794a,72,17,f +14040,3794a,15,6,f +14040,3794a,71,12,f +14040,3794a,4,13,f +14040,3795,71,3,f +14040,3795,14,1,f +14040,3795,72,1,f +14040,3795,70,2,f +14040,3795,0,4,f +14040,3829c01,15,2,f +14040,3832,72,1,f +14040,3832,0,3,f +14040,3839b,0,6,f +14040,3899,14,3,f +14040,3937,0,1,f +14040,3937,71,2,f +14040,3938,71,2,f +14040,3958,72,1,f +14040,4032a,0,1,f +14040,4032a,71,1,f +14040,4070,19,6,f +14040,4070,4,7,f +14040,4070,71,10,f +14040,4070,14,4,f +14040,4070,72,17,f +14040,4079,70,4,f +14040,4081b,4,1,f +14040,4085c,71,4,f +14040,4085c,4,4,f +14040,41334,72,1,f +14040,4150,0,1,f +14040,4150pr0022,71,1,f +14040,4162,71,6,f +14040,41769,72,1,f +14040,41770,72,1,f +14040,4215b,40,6,f +14040,42446,72,4,f +14040,4274,71,1,t +14040,4274,71,2,f +14040,4282,71,7,f +14040,4349,0,2,f +14040,43722,71,1,f +14040,43722,0,1,f +14040,43723,0,1,f +14040,43723,71,1,f +14040,4477,71,3,f +14040,4477,72,1,f +14040,4540866,9999,1,f +14040,4599a,71,11,f +14040,4697b,71,4,f +14040,4697b,71,1,t +14040,47905,72,6,f +14040,4864b,40,4,f +14040,4864b,47,4,f +14040,4865a,4,3,f +14040,4872,40,1,f +14040,48729a,72,1,t +14040,48729a,72,1,f +14040,50943,71,1,f +14040,50950,14,4,f +14040,50950,4,5,f +14040,50950,72,2,f +14040,53989,148,8,f +14040,54200,72,1,t +14040,54200,14,1,t +14040,54200,4,1,t +14040,54200,70,2,f +14040,54200,14,2,f +14040,54200,72,19,f +14040,54200,4,2,f +14040,54200,70,1,t +14040,55981,71,6,f +14040,59349,19,8,f +14040,6014b,71,6,f +14040,6019,71,6,f +14040,60700,0,6,f +14040,6091,71,10,f +14040,6091,15,6,f +14040,6091,4,16,f +14040,6091,72,6,f +14040,6091,14,4,f +14040,6134,4,1,f +14040,6141,57,4,f +14040,6141,57,1,t +14040,6141,47,3,f +14040,6141,71,25,f +14040,6141,36,1,t +14040,6141,71,3,t +14040,6141,36,6,f +14040,6141,47,1,t +14040,6179,15,1,f +14040,6180,15,1,f +14040,6249,72,1,f +14040,6632,0,3,f +14040,6636,71,8,f +14040,6636,4,2,f +14040,6636,70,2,f +14040,86035,1,1,f +14040,970c00,19,1,f +14040,970c00,72,1,f +14040,970c00,1,1,f +14040,970x199,70,1,f +14040,973pr1163c01,272,1,f +14040,973pr1244c01,73,1,f +14040,973pr1325c01,19,1,f +14040,973pr1384c01,25,1,f +14041,3007,4,2,f +14041,3020,4,8,f +14041,3023,0,2,f +14041,30488c01,0,2,f +14041,30488c01,15,2,f +14041,30492,2,4,f +14041,3068b,2,9,f +14041,3410stk01,9999,1,t +14041,3626bp03,14,2,f +14041,3626bp05,14,2,f +14041,3678a,15,2,f +14041,3795,15,2,f +14041,3901,6,3,f +14041,3901,0,1,f +14041,4176,15,2,f +14041,72824p01,15,1,f +14041,970c00,1,2,f +14041,970c00,15,2,f +14041,973pb0104c01,15,1,f +14041,973pb0125c01,15,1,f +14041,973pb0371c01,2,1,f +14041,973pb0372c01,2,1,f +14042,3003pe2,14,1,f +14042,3020,1,1,f +14042,3020,4,1,f +14042,3021,4,1,f +14042,3022,1,1,f +14042,3039,15,1,f +14042,4871,1,1,f +14043,10173,1000,3,f +14043,10178pr0007,41,1,f +14043,12825,72,7,f +14043,12825,71,12,f +14043,15207,0,4,f +14043,15207,72,2,f +14043,2412b,15,12,f +14043,2432,70,1,f +14043,2432,0,4,f +14043,2437,40,1,f +14043,2444,71,2,f +14043,2445,320,2,f +14043,2449,0,4,f +14043,2454a,0,4,f +14043,2460,71,1,f +14043,2476a,71,2,f +14043,2508,72,3,f +14043,2540,71,2,f +14043,2570,179,1,f +14043,2653,0,2,f +14043,2654,19,2,f +14043,2654,72,1,f +14043,2780,0,1,t +14043,2780,0,8,f +14043,2815,0,12,f +14043,2878,0,2,f +14043,2921,0,12,f +14043,298c02,4,1,f +14043,298c02,4,1,t +14043,3001,4,2,f +14043,3001,0,3,f +14043,3005,72,2,f +14043,3009,15,2,f +14043,3009,320,2,f +14043,3010,4,6,f +14043,30132,72,1,t +14043,30132,72,8,f +14043,30136,72,4,f +14043,3020,72,1,f +14043,3020,28,2,f +14043,3021,71,1,f +14043,3022,72,4,f +14043,3022,4,3,f +14043,3022,70,5,f +14043,3023,71,4,f +14043,3023,70,7,f +14043,3031,72,1,f +14043,3031,70,1,f +14043,30332,0,1,f +14043,3035,0,4,f +14043,3036,0,1,f +14043,30367b,72,2,f +14043,30367b,297,1,f +14043,30374,1000,3,f +14043,30377,15,3,t +14043,30377,15,28,f +14043,3039,72,1,f +14043,3040b,0,6,f +14043,30414,320,2,f +14043,30592,72,3,f +14043,3068b,320,10,f +14043,3068b,71,1,f +14043,3069b,0,2,f +14043,3176,0,2,f +14043,32000,0,4,f +14043,32018,71,2,f +14043,32064b,4,1,f +14043,32123b,71,10,f +14043,32123b,71,3,t +14043,32140,71,2,f +14043,32530,72,2,f +14043,32530,0,2,f +14043,3298,0,4,f +14043,3460,0,2,f +14043,3626bpr0996,14,1,f +14043,3626c,0,3,f +14043,3626cpr0998,14,1,f +14043,3660,0,2,f +14043,3665,0,2,f +14043,3666,71,1,f +14043,3673,71,1,t +14043,3673,71,4,f +14043,3701,72,4,f +14043,3701,0,2,f +14043,3702,0,8,f +14043,3710,15,4,f +14043,3710,71,4,f +14043,3747b,320,1,f +14043,3749,19,18,f +14043,3794b,15,11,f +14043,3795,0,2,f +14043,3795,72,6,f +14043,3795,14,2,f +14043,3937,71,2,f +14043,3941,4,7,f +14043,3960pr0010b,1000,1,f +14043,4032a,2,2,f +14043,4032a,71,1,f +14043,4070,0,4,f +14043,4081b,72,2,f +14043,4085c,72,6,f +14043,41769,320,1,f +14043,41770,320,1,f +14043,4185,0,12,f +14043,4185,72,1,f +14043,4274,71,22,f +14043,4274,71,4,t +14043,4286,72,2,f +14043,43093,1,1,f +14043,43713,72,1,f +14043,43720,72,1,f +14043,43721,72,1,f +14043,44294,71,1,f +14043,44674,0,2,f +14043,4477,15,2,f +14043,4509,72,1,f +14043,4589,182,2,f +14043,4589,297,2,f +14043,4600,71,2,f +14043,47397,320,1,f +14043,47398,320,1,f +14043,4742,0,1,f +14043,47457,4,3,f +14043,47457,71,1,f +14043,48336,15,4,f +14043,48336,0,6,f +14043,4865b,0,4,f +14043,4871,72,4,f +14043,48729b,0,3,t +14043,48729b,0,6,f +14043,48729b,72,4,f +14043,48729b,72,1,t +14043,50373,320,1,f +14043,50950,0,2,f +14043,50950,71,2,f +14043,53451,15,4,t +14043,53451,15,38,f +14043,54200,320,1,t +14043,54200,320,2,f +14043,56902,71,2,f +14043,57051,383,2,f +14043,57467,179,2,f +14043,57539pat0002,47,2,f +14043,57878,0,4,f +14043,58176,35,4,f +14043,59443,71,1,f +14043,59900,1000,12,f +14043,60032,0,6,f +14043,60169,71,1,f +14043,6019,0,2,f +14043,6019,297,2,f +14043,60219,0,1,f +14043,60470a,0,4,f +14043,60474,15,8,f +14043,60475b,0,6,f +14043,60478,72,1,f +14043,60481,0,4,f +14043,6081,72,4,f +14043,6091,72,2,f +14043,61184,71,4,f +14043,61254,0,2,f +14043,6133,0,4,f +14043,6134,4,2,f +14043,6141,42,19,f +14043,6141,42,4,t +14043,6141,71,10,f +14043,6141,71,2,t +14043,6222,0,4,f +14043,6239,320,1,f +14043,63082,0,4,f +14043,64647,182,1,f +14043,64647,182,1,t +14043,64951,70,2,f +14043,6536,72,4,f +14043,6558,1,6,f +14043,6575,72,4,f +14043,6587,28,1,f +14043,6636,0,4,f +14043,75937,0,1,f +14043,85080,0,24,f +14043,85557,0,2,f +14043,85975,297,2,f +14043,87079,0,1,f +14043,87083,72,2,f +14043,87580,71,3,f +14043,87745,0,10,f +14043,90201,0,1,f +14043,91988,72,1,f +14043,92593,72,3,f +14043,92691,15,12,f +14043,92946,0,12,f +14043,92946,72,8,f +14043,92950,0,2,f +14043,93160,15,4,f +14043,94448pat0004,35,1,f +14043,95326,484,1,f +14043,96874,25,1,t +14043,970c00,15,3,f +14043,970c00pr0331,379,1,f +14043,970c00pr0352,326,1,f +14043,973c09,15,3,f +14043,973pr2061c01,15,1,f +14043,973pr2071c01,308,1,f +14043,98371,0,1,f +14045,2412b,71,1,f +14045,2432,14,1,f +14045,2540,71,1,f +14045,3021,72,1,f +14045,3023,1,1,f +14045,3023,4,1,f +14045,30602,0,1,f +14045,3795,14,2,f +14045,3839b,1,1,f +14045,4081b,0,2,f +14045,43719,1,1,f +14045,48183,1,1,f +14045,50944pr0001,0,4,f +14045,50951,0,2,f +14045,51011,0,2,f +14045,6157,72,2,f +14046,bslot08,1,1,f +14046,bslot08,15,1,f +14046,bslot08,14,1,f +14046,bslot08,2,1,f +14046,bslot08,4,1,f +14048,10172,297,1,f +14048,24072,84,1,f +14048,3626cpr1835,14,1,f +14048,88646,0,1,f +14048,970c03pr0995,14,1,f +14048,973pr3224c01,14,1,f +14050,2346,0,4,f +14050,3001,4,12,f +14050,3001,15,12,f +14050,3001,1,10,f +14050,3001,14,12,f +14050,3001,0,6,f +14050,3001pr1,14,1,f +14050,3002,4,4,f +14050,3002,1,4,f +14050,3002,15,4,f +14050,3002,0,4,f +14050,3002,14,4,f +14050,3003,1,8,f +14050,3003,14,8,f +14050,3003,0,6,f +14050,3003,15,8,f +14050,3003,4,8,f +14050,3003pe1,14,2,f +14050,3006,4,2,f +14050,3007,1,2,f +14050,3007,14,1,f +14050,3137c01,0,2,f +14050,3185,4,6,f +14050,3471,2,1,f +14050,3596pb03,15,1,f +14050,3641,0,4,f +14050,4130,14,2,f +14050,4131,4,2,f +14050,4132,14,2,f +14050,4133,4,2,f +14050,4180c02,0,2,f +14050,4202,4,1,f +14050,4204,2,1,f +14050,4594,47,2,f +14050,4727,2,2,f +14050,4728,4,1,f +14050,4728,14,1,f +14050,4743,1,1,f +14050,4744,14,1,f +14050,bfp001,9999,1,f +14050,bfp002,9999,1,f +14053,96479,323,3,f +14053,96480,323,1,f +14053,96481,323,2,f +14053,96482,323,1,f +14053,96483,323,2,f +14053,96484,323,1,f +14053,96485,323,2,f +14053,96486,323,1,f +14053,96487,323,2,f +14053,96488,323,1,f +14053,96489,323,2,f +14053,96490,323,1,f +14053,96491,323,1,f +14054,2376,0,1,f +14054,2432,14,1,f +14054,2496,0,2,f +14054,2655,71,2,f +14054,30386,14,1,f +14054,30387,14,2,f +14054,30389c,0,1,f +14054,30395,72,1,f +14054,30396,0,1,f +14054,3626bpr0270,14,1,f +14054,3666,14,2,f +14054,3794a,14,2,f +14054,3795,14,2,f +14054,43121,71,1,f +14054,4485,4,1,f +14054,46667,0,1,f +14054,55295,0,1,f +14054,55296,0,1,f +14054,55297,0,1,f +14054,55298,0,1,f +14054,55299,0,1,f +14054,55300,0,1,f +14054,6140,71,1,f +14054,970c00,1,1,f +14054,973pr1244c01,73,1,f +14055,30173a,7,2,f +14055,32015,27,2,f +14055,32062,0,3,f +14055,32140,0,2,f +14055,32474,0,1,f +14055,32523,0,1,f +14055,32576,2,2,f +14055,41659,2,1,f +14055,41669,36,2,f +14055,42042,2,1,f +14055,42042und,8,1,f +14055,43093,0,2,f +14055,4519,0,1,f +14055,6553,0,2,f +14055,6558,0,2,f +14056,766c01,7,12,f +14056,x466,7,6,f +14058,2982c01,1,1,f +14059,2526,297,1,f +14059,2530,72,3,f +14059,2544,0,1,f +14059,2544pr0001,0,1,f +14059,2562,70,1,f +14059,3626bpr0593,78,1,f +14059,3626bpr0789,78,1,f +14059,3626bpr0842,70,1,f +14059,3626bpr0843,84,1,f +14059,3626bpr0850,78,1,f +14059,40239,0,1,f +14059,64644,308,1,f +14059,64647,4,1,f +14059,64647,57,1,f +14059,95221pr0001,0,1,f +14059,95348,308,1,f +14059,95348,0,1,f +14059,95348,15,1,f +14059,970c00,15,1,f +14059,970c00,28,1,f +14059,970c00,72,1,f +14059,970c00pr0218,70,1,f +14059,970c00pr0258,308,1,f +14059,973pr1771c01,272,1,f +14059,973pr1840c01,70,1,f +14059,973pr1841c01,320,1,f +14059,973pr1845c01,4,1,f +14059,973pr1848c01,70,1,f +14060,2335,1,6,f +14060,2335,14,2,f +14060,2335,4,6,f +14060,2412b,72,2,f +14060,2431,70,16,f +14060,2431,0,2,f +14060,2436,71,4,f +14060,2445,0,6,f +14060,2445,4,12,f +14060,2450,71,2,f +14060,2456,4,2,f +14060,2456,72,3,f +14060,2456,71,3,f +14060,2458,14,1,f +14060,2730,4,5,f +14060,2780,0,181,f +14060,2815,0,4,f +14060,2817,71,4,f +14060,2905,4,4,f +14060,3001,70,8,f +14060,3001,15,1,f +14060,3001,14,3,f +14060,3002,2,3,f +14060,3002,0,6,f +14060,3003,4,2,f +14060,3003,72,1,f +14060,3003,14,3,f +14060,3003,2,6,f +14060,3004,72,1,f +14060,3004,4,2,f +14060,3004,14,3,f +14060,3004,71,1,f +14060,3006,4,2,f +14060,3007,4,6,f +14060,3008,4,9,f +14060,3009,4,8,f +14060,3010,4,16,f +14060,30104,0,4,f +14060,3020,4,5,f +14060,3020,14,3,f +14060,3021,15,2,f +14060,3021,0,3,f +14060,3021,71,2,f +14060,3021,4,6,f +14060,3022,4,10,f +14060,3022,71,2,f +14060,3022,1,2,f +14060,3022,14,2,f +14060,3023,4,7,f +14060,3023,71,1,f +14060,3023,2,6,f +14060,3023,14,1,f +14060,3023,15,4,f +14060,3024,4,8,f +14060,3028,15,17,f +14060,3029,15,8,f +14060,3032,14,2,f +14060,3032,4,1,f +14060,3034,0,1,f +14060,3034,72,2,f +14060,3034,4,5,f +14060,3034,15,9,f +14060,30355,0,1,f +14060,30355,15,1,f +14060,30356,15,1,f +14060,30356,0,1,f +14060,3036,4,10,f +14060,30363,71,1,f +14060,3039,2,9,f +14060,3039,71,1,f +14060,3040b,71,3,f +14060,30414,15,12,f +14060,30602,40,1,f +14060,3069b,0,2,f +14060,32009,0,5,f +14060,32013,14,28,f +14060,32013,1,4,f +14060,32013,0,26,f +14060,32014,72,12,f +14060,32014,14,2,f +14060,32015,71,2,f +14060,32015,0,6,f +14060,32016,0,1,f +14060,32034,0,24,f +14060,32039,0,4,f +14060,32039,14,8,f +14060,32054,71,4,f +14060,32054,0,5,f +14060,32062,4,63,f +14060,32063,0,4,f +14060,32064b,14,2,f +14060,32064b,2,6,f +14060,32073,71,4,f +14060,32123b,14,8,f +14060,32123b,14,1,t +14060,32199,0,4,f +14060,32271,0,1,f +14060,32271,14,8,f +14060,32291,0,4,f +14060,32316,71,36,f +14060,32316,14,32,f +14060,32316,0,2,f +14060,32449,14,2,f +14060,32523,0,20,f +14060,32523,4,16,f +14060,32523,14,21,f +14060,32525,0,7,f +14060,32532,14,6,f +14060,32556,71,41,f +14060,3298,2,9,f +14060,3298,72,2,f +14060,3482,14,5,f +14060,3622,4,6,f +14060,3660,72,1,f +14060,3666,15,2,f +14060,3666,4,2,f +14060,3673,71,12,f +14060,3684,72,1,f +14060,3700,4,1,f +14060,3700,14,3,f +14060,3702,4,2,f +14060,3705,0,18,f +14060,3707,0,8,f +14060,3709,15,11,f +14060,3710,15,2,f +14060,3710,4,11,f +14060,3713,71,2,f +14060,3713,71,1,t +14060,3737,0,12,f +14060,3747b,71,2,f +14060,3747b,72,1,f +14060,3747b,2,6,f +14060,3794a,71,2,f +14060,3795,2,3,f +14060,3795,14,3,f +14060,3795,15,2,f +14060,3795,4,3,f +14060,3795,0,6,f +14060,3795,71,2,f +14060,3832,4,1,f +14060,3832,15,4,f +14060,3832,0,4,f +14060,3849,72,14,f +14060,3894,4,9,f +14060,3895,4,22,f +14060,3941,72,4,f +14060,40490,71,4,f +14060,40490,14,4,f +14060,40490,4,8,f +14060,4070,71,2,f +14060,4070,72,2,f +14060,41678,0,2,f +14060,4185,71,4,f +14060,42003,71,1,f +14060,42022,14,2,f +14060,42023,15,2,f +14060,4283798,89,1,f +14060,4286,72,2,f +14060,43093,1,21,f +14060,4349,72,2,f +14060,43719,14,2,f +14060,43722,4,5,f +14060,43723,4,5,f +14060,43857,4,4,f +14060,44294,71,12,f +14060,44728,14,1,f +14060,4519,71,13,f +14060,4730,4,11,f +14060,4740,14,2,f +14060,4742,72,2,f +14060,4744,4,3,f +14060,4859,15,4,f +14060,50304,15,1,f +14060,50304,0,1,f +14060,50305,15,1,f +14060,50305,0,1,f +14060,6041,0,1,f +14060,6111,4,40,f +14060,6141,1,4,f +14060,6141,72,4,f +14060,6141,1,1,t +14060,6141,72,1,t +14060,6222,72,4,f +14060,6536,71,4,f +14060,6538b,14,8,f +14060,6538b,0,13,f +14060,6538b,71,6,f +14060,6558,0,90,f +14060,6564,4,6,f +14060,6565,4,6,f +14060,6629,0,1,f +14060,73983,4,4,f +14060,75535,0,21,f +14060,75535,14,2,f +14060,75c10,0,2,f +14060,78c09,0,4,f +14060,78c11,179,7,f +14060,78c15,179,1,f +14061,11090,0,4,f +14061,11403pr0006c01,27,1,f +14061,11408pr0008c01,78,1,f +14061,11816pr0001,84,1,f +14061,13965,70,2,f +14061,14014pr0005,78,1,f +14061,14769,29,1,f +14061,14769,19,2,f +14061,15395,27,2,f +14061,15573,4,2,f +14061,15573,15,6,f +14061,15705,308,1,f +14061,15712,71,2,f +14061,16091,71,1,f +14061,18853,29,1,f +14061,18853,29,1,t +14061,18969,15,4,f +14061,18969,26,4,f +14061,22667,26,1,t +14061,22667,26,2,f +14061,2423,2,4,f +14061,2431,322,2,f +14061,2456,19,1,f +14061,2540,71,4,f +14061,3001,72,1,f +14061,3002,2,2,f +14061,3003,322,1,f +14061,3004,2,1,f +14061,3005,84,2,f +14061,3005,71,3,f +14061,3008,72,2,f +14061,30089b,0,1,f +14061,3009,71,1,f +14061,30094,70,1,f +14061,3010,19,1,f +14061,30136,72,2,f +14061,30136,19,2,f +14061,30136,70,1,f +14061,30137,84,3,f +14061,30162,297,1,f +14061,30162,297,1,t +14061,3020,288,1,f +14061,3021,19,5,f +14061,3022,15,1,f +14061,3023,288,3,f +14061,3023,322,3,f +14061,3032,2,1,f +14061,3034,71,1,f +14061,3034,19,1,f +14061,3035,2,1,f +14061,30357,19,4,f +14061,30367c,27,2,f +14061,30367c,322,1,f +14061,30374,0,4,f +14061,30374,70,2,f +14061,3039,70,2,f +14061,3040b,71,6,f +14061,3040b,2,5,f +14061,30565,2,2,f +14061,3062b,0,1,f +14061,3062b,15,2,f +14061,3062b,33,1,f +14061,3068b,15,2,f +14061,3068b,19,1,f +14061,3068b,4,2,f +14061,3068bpr0242,19,1,f +14061,3069b,19,1,f +14061,3069b,70,1,f +14061,32001,71,2,f +14061,32123b,14,2,f +14061,32123b,14,1,t +14061,3245c,19,1,f +14061,33009,70,1,f +14061,33125,484,1,f +14061,33183,70,1,f +14061,33183,70,1,t +14061,33291,5,5,f +14061,33291,191,11,f +14061,33291,5,1,t +14061,33291,191,2,t +14061,33320,2,1,f +14061,3622,71,3,f +14061,3623,27,4,f +14061,3660,72,2,f +14061,3666,19,1,f +14061,3710,19,2,f +14061,3737,0,1,f +14061,3899,45,2,f +14061,3941,15,1,f +14061,3958,70,1,f +14061,3960,15,1,f +14061,4032a,72,2,f +14061,4032a,70,1,f +14061,41539,2,1,f +14061,41769,71,1,f +14061,42610,71,1,f +14061,4519,71,1,f +14061,4865b,19,1,f +14061,54200,71,1,t +14061,54200,71,9,f +14061,59443,4,2,f +14061,59900,33,1,f +14061,60475b,72,2,f +14061,60485,71,1,f +14061,6091,322,2,f +14061,6141,182,1,f +14061,6141,14,1,f +14061,6141,72,4,f +14061,6141,2,1,t +14061,6141,2,2,f +14061,6141,72,1,t +14061,6141,182,1,t +14061,6141,14,1,t +14061,62462,70,2,f +14061,6256,191,1,f +14061,64647,182,1,f +14061,64647,182,1,t +14061,6636,19,2,f +14061,75937,179,2,f +14061,85080,19,8,f +14061,87087,70,1,f +14061,87580,10,1,f +14061,87580,322,2,f +14061,88072,19,3,f +14061,92263,84,1,f +14061,92438,2,1,f +14061,92456pr0060c01,84,1,f +14061,92819pr0004,272,1,f +14061,92947,70,2,f +14061,93092,30,1,f +14061,93352,308,1,f +14061,98138,71,1,t +14061,98138,27,5,f +14061,98138,41,1,t +14061,98138,47,1,t +14061,98138,41,2,f +14061,98138,71,3,f +14061,98138,47,1,f +14061,98138,27,1,t +14061,98138pr0029,297,1,f +14061,98138pr0029,297,1,t +14061,98313,0,4,f +14062,2542,6,2,f +14062,2570,8,2,f +14062,2586p4d,15,1,f +14062,3020,0,1,f +14062,3626bp35,14,1,f +14062,3710,0,2,f +14062,3794a,0,1,f +14062,3844,8,1,f +14062,4589,0,2,f +14062,4855,4,2,f +14062,4859,0,2,f +14062,4871,4,1,f +14062,6019,0,1,f +14062,970x021,0,1,f +14062,973p4dc01,4,1,f +14064,10048,84,1,f +14064,10053,179,1,f +14064,10053,179,1,t +14064,10057pr0002,19,1,f +14064,10058,19,2,f +14064,11010,334,1,t +14064,11010,334,1,f +14064,12825,70,3,f +14064,2357,72,2,f +14064,2420,28,4,f +14064,3003,72,1,f +14064,3004,72,1,f +14064,3005,72,3,f +14064,3005,28,2,f +14064,3005,0,2,f +14064,3022,72,1,f +14064,3023,0,2,f +14064,3023,72,2,f +14064,3024,28,3,f +14064,3024,28,1,t +14064,3035,72,1,f +14064,3040b,72,11,f +14064,3068b,72,1,f +14064,3069b,72,1,f +14064,3070b,72,4,f +14064,3070b,72,1,t +14064,32062,0,1,f +14064,3245c,72,1,f +14064,3622,72,2,f +14064,3623,72,3,f +14064,3626cpr1081,78,1,f +14064,3665,72,3,f +14064,3666,72,1,f +14064,3794a,72,1,f +14064,3794a,70,3,f +14064,3795,72,1,f +14064,41879a,28,1,f +14064,42003,0,1,f +14064,4274,71,1,t +14064,4274,71,2,f +14064,4286,71,1,f +14064,43722,72,1,f +14064,43723,72,1,f +14064,4460b,72,4,f +14064,4519,71,1,f +14064,4855,70,2,f +14064,54200,72,1,t +14064,54200,72,13,f +14064,59443,72,2,f +14064,64648,179,1,f +14064,6541,71,1,f +14064,73983,0,2,f +14064,93061,15,2,f +14064,93061,15,1,t +14064,93160,15,1,t +14064,93160,15,1,f +14064,973pr2179c01,320,1,f +14064,98560,72,1,f +14067,2446p01,15,1,f +14067,2447,41,1,f +14067,2513,4,1,f +14067,30000,8,2,f +14067,3001,4,2,f +14067,3001,0,2,f +14067,3001,1,2,f +14067,3001,15,2,f +14067,3001,14,2,f +14067,3002,1,2,f +14067,3002,14,2,f +14067,3002,15,2,f +14067,3003,14,2,f +14067,3003,0,2,f +14067,3003,1,2,f +14067,3003,4,2,f +14067,3003,15,2,f +14067,3004,15,18,f +14067,3004,0,8,f +14067,3004,1,16,f +14067,3004,14,6,f +14067,3004,4,14,f +14067,3005,14,4,f +14067,3005,15,16,f +14067,3005,0,6,f +14067,3005,1,14,f +14067,3005,4,8,f +14067,3008,14,2,f +14067,3008,15,2,f +14067,3008,1,2,f +14067,3009,4,4,f +14067,3009,15,4,f +14067,3009,1,4,f +14067,3009,0,4,f +14067,3010,14,6,f +14067,3010,0,8,f +14067,3010,15,16,f +14067,3010,4,14,f +14067,3010apr0001,4,2,f +14067,3010p08,4,2,f +14067,3010p15,14,2,f +14067,3020,4,2,f +14067,3020,1,2,f +14067,3021,1,2,f +14067,3022,4,2,f +14067,3022,1,2,f +14067,3024,36,2,f +14067,3024,46,2,f +14067,3029,4,1,f +14067,3030,1,1,f +14067,3031,1,1,f +14067,3032,1,1,f +14067,3033,1,1,f +14067,3034,4,2,f +14067,3035,4,1,f +14067,3039,47,2,f +14067,3039,1,4,f +14067,3039,14,4,f +14067,3040b,14,4,f +14067,3040b,1,4,f +14067,3062b,7,8,f +14067,3081cc01,4,2,f +14067,3135c02,4,1,f +14067,3149c01,4,2,f +14067,3297,1,4,f +14067,3298,1,2,f +14067,3299,1,2,f +14067,3300,1,2,f +14067,3483,0,4,f +14067,3622,14,4,f +14067,3622,4,4,f +14067,3622,1,4,f +14067,3622,15,4,f +14067,3626bp04,14,1,f +14067,3626bpr0001,14,1,f +14067,3633,14,4,f +14067,3634,0,4,f +14067,3641,0,4,f +14067,3660,1,4,f +14067,3660,14,4,f +14067,3665,1,4,f +14067,3665,14,4,f +14067,3679,7,2,f +14067,3680,0,2,f +14067,3700,0,2,f +14067,3710,4,2,f +14067,3710,1,2,f +14067,3730,4,1,f +14067,3731,4,1,f +14067,3747b,1,2,f +14067,3787,4,1,f +14067,3788,4,1,f +14067,3795,1,2,f +14067,3811,2,1,f +14067,3821,4,1,f +14067,3822,4,1,f +14067,3823,47,2,f +14067,3829c01,14,2,f +14067,3832,1,2,f +14067,3837,8,1,f +14067,3841,8,1,f +14067,3853,4,2,f +14067,3854,15,4,f +14067,3856,1,4,f +14067,3861b,4,1,f +14067,3865,10,1,f +14067,3901,6,1,f +14067,3937,7,2,f +14067,3938,4,2,f +14067,3957a,14,2,f +14067,4006,0,1,f +14067,4070,7,4,f +14067,4079,14,2,f +14067,4083,0,2,f +14067,4175,7,2,f +14067,4286,1,4,f +14067,4287,1,2,f +14067,4522,0,1,f +14067,4600,0,2,f +14067,4624,14,4,f +14067,6232,8,2,f +14067,6248,14,8,f +14067,6249,8,1,f +14067,970c00,1,1,f +14067,970c00,2,1,f +14067,973pb0201c01,15,1,f +14067,973px36c01,4,1,f +14068,10201,15,1,f +14068,11090,14,1,f +14068,11477,15,2,f +14068,15068,15,2,f +14068,15068pr0005,15,1,f +14068,15573,71,1,f +14068,15712,71,2,f +14068,15712,0,1,f +14068,18674,72,1,f +14068,18868a,41,2,f +14068,19981pr0004,41,1,f +14068,21268,70,1,f +14068,21445,71,2,f +14068,2412b,80,1,f +14068,2412b,0,3,f +14068,2654,0,1,f +14068,2654pr0001,0,1,f +14068,298c02,14,1,t +14068,298c02,14,1,f +14068,30162,71,3,f +14068,3020,4,1,f +14068,3020,71,2,f +14068,3021,15,2,f +14068,3021,71,1,f +14068,3023,47,4,f +14068,3023,33,1,f +14068,3023,4,2,f +14068,3024,4,2,f +14068,3024,0,2,f +14068,3024,4,1,t +14068,3024,0,1,t +14068,3065,47,1,f +14068,3069b,15,2,f +14068,3069bpr0101,71,1,f +14068,3069bpr0155,14,2,f +14068,32028,15,1,f +14068,3623,4,2,f +14068,3626cpr1535,78,1,f +14068,3937,71,2,f +14068,3938,71,2,f +14068,3941,41,2,f +14068,4070,4,6,f +14068,4070,71,2,f +14068,4081b,0,1,f +14068,42446,0,1,t +14068,42446,0,1,f +14068,43722,4,1,f +14068,43723,4,1,f +14068,4599b,14,1,f +14068,4599b,14,1,t +14068,4624,71,2,f +14068,4740pr0004b,52,1,f +14068,48336,0,1,f +14068,4865b,47,1,f +14068,48729b,0,1,f +14068,48729b,0,1,t +14068,59895,0,2,f +14068,60849,0,1,f +14068,60849,0,1,t +14068,60897,0,2,f +14068,61252,0,1,f +14068,6141,36,2,f +14068,6141,33,2,f +14068,6141,34,1,f +14068,6141,33,1,t +14068,6141,80,1,t +14068,6141,36,1,t +14068,6141,47,1,t +14068,6141,80,3,f +14068,6141,34,1,t +14068,6141,47,3,f +14068,64567,0,1,t +14068,64567,0,1,f +14068,85861,320,1,t +14068,85861,0,2,f +14068,85861,0,1,t +14068,85861,320,1,f +14068,85984,0,1,f +14068,86208,71,1,f +14068,88072,0,1,f +14068,88704,0,2,f +14068,92280,0,2,f +14068,93274,15,2,f +14068,93590,15,1,f +14068,970c00,19,1,f +14068,973pr3204c01,19,1,f +14068,99207,71,1,f +14068,99780,71,1,f +14069,23306,383,1,t +14069,23306,383,1,f +14069,2335,15,1,f +14069,2356,15,2,f +14069,2357,2,4,f +14069,2412b,19,2,f +14069,2412b,8,5,f +14069,2412b,4,5,f +14069,2412b,27,6,f +14069,2412b,320,2,f +14069,2413,15,9,f +14069,2413,7,2,f +14069,2420,0,2,f +14069,2431,27,2,f +14069,2431,0,4,f +14069,2431,7,1,f +14069,2432,4,2,f +14069,2444,1,4,f +14069,2445,7,2,f +14069,2445,15,2,f +14069,2445,0,1,f +14069,2456,8,2,f +14069,2456,15,3,f +14069,2456,7,1,f +14069,2460,8,8,f +14069,2540,6,5,f +14069,2540,462,1,f +14069,2540,8,1,f +14069,2555,7,1,f +14069,2577,27,2,f +14069,2607,0,1,f +14069,2609,8,1,f +14069,2695,320,2,f +14069,2730,15,4,f +14069,2744,4,4,f +14069,2780,0,2,t +14069,2780,0,13,f +14069,2877,7,14,f +14069,298c02,7,2,f +14069,298c02,1,4,f +14069,298c02,7,1,t +14069,298c02,1,1,t +14069,2994,7,5,f +14069,3001,4,1,f +14069,3001,27,7,f +14069,3002,320,4,f +14069,3003,0,2,f +14069,3003,8,2,f +14069,3003,19,1,f +14069,3004,8,4,f +14069,3004,1,1,f +14069,3005,15,6,f +14069,3007,0,2,f +14069,3008,15,2,f +14069,30083pb01,40,4,f +14069,3009,15,9,f +14069,3010,7,6,f +14069,30132,8,1,t +14069,30132,8,2,f +14069,30162,8,2,f +14069,3020,8,4,f +14069,3020,19,2,f +14069,3021,0,2,f +14069,3022,8,3,f +14069,3022,1,1,f +14069,3023,462,7,f +14069,30236,0,1,f +14069,30237a,19,4,f +14069,3028,15,2,f +14069,3028,7,1,f +14069,3029,15,2,f +14069,3031,7,2,f +14069,3034,8,2,f +14069,30355,15,1,f +14069,30356,15,1,f +14069,30357,7,1,f +14069,30364,8,4,f +14069,30365,7,6,f +14069,30367b,7,5,f +14069,30373,7,2,f +14069,30374,42,1,f +14069,30374,8,3,f +14069,30375,8,1,f +14069,30377,7,9,f +14069,30377,7,1,t +14069,3038,15,2,f +14069,30381,6,1,f +14069,30383,8,2,f +14069,3039,320,2,f +14069,3039,15,10,f +14069,3039,7,2,f +14069,30397,1,4,f +14069,3039ps3,7,2,f +14069,3040b,7,2,f +14069,3040b,15,8,f +14069,30414,15,2,f +14069,30503,8,4,f +14069,30540,8,6,f +14069,30541,0,4,f +14069,30554a,7,2,f +14069,30592,7,3,f +14069,30625,40,2,f +14069,3062b,34,2,f +14069,3062b,2,7,f +14069,30639,15,1,f +14069,3063b,15,4,f +14069,3065,36,2,f +14069,3068b,19,4,f +14069,3068b,0,2,f +14069,3069b,0,6,f +14069,3069bpr0070,0,4,f +14069,32000,7,1,f +14069,32062,4,4,f +14069,32064b,2,8,f +14069,32123b,7,2,t +14069,32123b,7,3,f +14069,32174,0,1,f +14069,32174,15,2,f +14069,3245b,15,2,f +14069,32474,7,3,f +14069,32523,8,1,f +14069,32529,0,1,f +14069,3297,0,1,f +14069,3298,7,2,f +14069,3307,15,2,f +14069,3455,0,2,f +14069,3460,320,2,f +14069,3460,7,6,f +14069,3622,27,2,f +14069,3622,7,4,f +14069,3622,15,10,f +14069,3623,8,6,f +14069,3623,15,2,f +14069,3626b,0,4,f +14069,3626bpx43,14,1,f +14069,3660,15,2,f +14069,3660,1,3,f +14069,3665,27,12,f +14069,3665,15,8,f +14069,3666,8,1,f +14069,3666,2,2,f +14069,3666,15,5,f +14069,3678a,15,8,f +14069,3705,2,5,f +14069,3706,0,4,f +14069,3710,462,8,f +14069,3710,19,2,f +14069,3737,0,2,f +14069,3747a,15,10,f +14069,3747a,8,1,f +14069,3794a,8,1,f +14069,3795,15,1,f +14069,3832,19,2,f +14069,3941,47,1,f +14069,3941,4,2,f +14069,3942c,320,2,f +14069,4032a,8,9,f +14069,4070,19,4,f +14069,4081b,6,1,f +14069,4085c,7,4,f +14069,4095,0,2,f +14069,4150pr0005,15,2,f +14069,4151a,8,2,f +14069,41531,15,6,f +14069,41532,0,2,f +14069,41539,15,2,f +14069,4162,8,4,f +14069,41747,7,1,f +14069,41747,320,1,f +14069,41748,7,1,f +14069,41748,320,1,f +14069,4176,15,4,f +14069,41764,15,1,f +14069,41765,15,1,f +14069,41769,320,1,f +14069,41770,320,1,f +14069,41883,40,2,f +14069,41889,137,2,f +14069,41890,137,4,f +14069,42022,15,12,f +14069,42022pb02,15,1,f +14069,4213,7,2,f +14069,42687,137,2,f +14069,4286,15,4,f +14069,4287,15,2,f +14069,4315,0,2,f +14069,43337,4,4,f +14069,4349,0,4,f +14069,4445,15,3,f +14069,4477,15,2,f +14069,4515,15,2,f +14069,4532,7,2,f +14069,4533,15,2,f +14069,4589,0,6,f +14069,4589,7,3,f +14069,4623,7,1,f +14069,4623,0,2,f +14069,4625,7,4,f +14069,4854,7,2,f +14069,4865a,7,2,f +14069,4871,7,3,f +14069,50231,6,1,f +14069,55295,0,1,f +14069,55296,0,1,f +14069,55297,0,1,f +14069,55298,0,1,f +14069,55299,0,1,f +14069,55300,0,1,f +14069,6091,320,8,f +14069,6112,15,2,f +14069,6141,57,4,f +14069,6141,7,1,t +14069,6141,36,1,t +14069,6141,34,1,t +14069,6141,57,1,t +14069,6141,7,2,f +14069,6141,36,3,f +14069,6141,34,1,f +14069,6179,15,6,f +14069,6179px2,15,1,f +14069,6180,15,1,f +14069,6192,41,1,f +14069,6233,320,2,f +14069,6259,320,2,f +14069,6259,15,2,f +14069,6536,1,4,f +14069,6538b,7,4,f +14069,6541,1,3,f +14069,6636,320,4,f +14069,73092,0,2,f +14069,78c08,179,1,t +14069,78c08,179,2,f +14069,970c00,6,1,f +14069,970x026,15,4,f +14069,973pr0579c01,15,4,f +14069,973px215c01,8,1,f +14069,bb82pb01,15,4,f +14072,2412b,1,1,f +14072,2432,14,1,f +14072,2441,0,1,f +14072,2446,15,1,f +14072,2447,0,1,f +14072,3020,0,1,f +14072,3020,1,1,f +14072,3021,15,1,f +14072,3022,15,1,f +14072,3023,1,1,f +14072,3068b,15,1,f +14072,3069b,15,1,f +14072,3298,1,1,f +14072,3623,1,2,f +14072,3626bpr0001,14,1,f +14072,3641,0,4,f +14072,3710,0,1,f +14072,3829c01,14,1,f +14072,4286,15,2,f +14072,4624,7,4,f +14072,4865a,15,2,f +14072,970c00,1,1,f +14072,973p0ac01,1,1,f +14073,3068b,27,1,f +14073,4589,14,4,f +14073,6141,41,1,t +14073,6141,41,3,f +14073,6256,29,1,f +14075,2346,0,2,f +14075,2695,14,2,f +14075,2696,0,2,f +14075,2780,0,3,f +14075,2780,0,1,t +14075,3023,47,1,f +14075,30663,71,1,f +14075,32002,72,1,f +14075,32002,72,1,t +14075,32014,4,2,f +14075,32034,4,1,f +14075,32034,0,2,f +14075,32054,4,1,f +14075,32056,71,4,f +14075,32062,0,10,f +14075,32063,71,2,f +14075,32065,0,2,f +14075,32073,71,2,f +14075,32123b,71,1,t +14075,32123b,71,8,f +14075,32140,2,2,f +14075,32198,71,1,f +14075,32250,0,2,f +14075,32271,0,1,f +14075,32291,0,1,f +14075,32449,0,2,f +14075,32449,2,4,f +14075,32523,0,1,f +14075,32524,4,1,f +14075,3482,14,2,f +14075,3650c,71,3,f +14075,3705,0,2,f +14075,3707,0,1,f +14075,3713,71,1,t +14075,3713,71,7,f +14075,3749,19,3,f +14075,4019,71,1,f +14075,4081b,0,1,f +14075,41677,71,4,f +14075,41678,0,1,f +14075,4185,14,2,f +14075,42003,71,1,f +14075,4274,71,7,f +14075,4274,71,1,t +14075,43093,1,1,f +14075,43857,71,1,f +14075,44294,71,1,f +14075,4519,71,3,f +14075,6141,57,1,t +14075,6141,0,1,t +14075,6141,0,1,f +14075,6141,57,2,f +14075,6536,4,2,f +14075,6536,2,1,f +14075,6538b,14,1,f +14075,6553,71,1,f +14075,6558,0,1,f +14075,6587,72,4,f +14075,6589,71,1,f +14075,6632,71,3,f +14075,6632,2,2,f +14076,2340,0,2,f +14076,2357,7,2,f +14076,2357,0,4,f +14076,2357,1,2,f +14076,2401,7,2,f +14076,2412b,7,3,f +14076,2420,7,4,f +14076,2420,0,1,f +14076,2431,7,1,f +14076,2433,0,1,f +14076,2446,14,1,f +14076,2446p51,14,1,f +14076,2447,33,2,f +14076,2465,1,1,f +14076,2507,33,1,f +14076,2555,0,4,f +14076,2569,42,4,f +14076,2582,33,2,f +14076,2880,0,2,f +14076,3003,0,1,f +14076,3003,7,1,f +14076,3004,1,2,f +14076,3004,0,3,f +14076,3005,1,4,f +14076,3006,1,2,f +14076,3009,0,4,f +14076,3009,1,1,f +14076,3010,0,3,f +14076,3020,1,2,f +14076,3020,0,3,f +14076,3021,0,2,f +14076,3022,0,1,f +14076,3022,7,5,f +14076,3023,7,7,f +14076,3023,1,2,f +14076,3023,0,2,f +14076,3024,33,2,f +14076,3031,0,2,f +14076,3031,1,1,f +14076,3035,0,1,f +14076,3039pc1,0,1,f +14076,3040b,7,2,f +14076,3040b,0,12,f +14076,3040b,1,10,f +14076,3068b,0,5,f +14076,3069b,0,2,f +14076,3069b,1,1,f +14076,3069bp21,0,1,f +14076,3070b,1,6,f +14076,3070b,33,10,f +14076,3070b,7,2,f +14076,3297,0,2,f +14076,3298,7,2,f +14076,3298,0,2,f +14076,3298,1,2,f +14076,3460,0,2,f +14076,3475b,0,4,f +14076,3475b,1,2,f +14076,3585,7,1,f +14076,3586,7,1,f +14076,3622,0,2,f +14076,3623,0,4,f +14076,3623,1,2,f +14076,3626bp68,14,1,f +14076,3626bp69,14,1,f +14076,3660,0,1,f +14076,3665,1,2,f +14076,3665,0,4,f +14076,3700,7,1,f +14076,3705,0,1,f +14076,3710,1,2,f +14076,3710,0,2,f +14076,3747a,1,2,f +14076,3794a,7,1,f +14076,3795,7,3,f +14076,3795,1,1,f +14076,3838,1,2,f +14076,3943b,0,1,f +14076,3960,33,1,f +14076,4070,0,1,f +14076,4275b,0,6,f +14076,4276b,0,4,f +14076,4286,1,4,f +14076,4286,0,10,f +14076,4286,7,4,f +14076,4287,0,4,f +14076,4315,0,1,f +14076,4360,0,1,f +14076,4531,7,2,f +14076,4589,42,9,f +14076,4589,33,3,f +14076,4595,0,1,f +14076,4625,0,2,f +14076,4740,42,5,f +14076,4740,33,5,f +14076,4746,0,4,f +14076,4859,7,1,f +14076,4859,0,2,f +14076,6061,0,1,f +14076,6104,7,2,f +14076,6111,1,1,f +14076,6112,1,1,f +14076,6141,33,1,f +14076,6141,42,14,f +14076,6141,47,3,f +14076,6232,7,1,f +14076,73590c01a,0,1,f +14076,970x024,7,1,f +14076,973p64c01,8,2,f +14077,3001apb01,15,4,f +14077,3020,15,1,f +14077,3021,4,3,f +14077,3021,15,2,f +14077,3021,1,2,f +14077,3022,15,4,f +14077,3022,4,1,f +14077,3023,47,1,f +14077,3023,7,8,f +14077,3023,4,1,f +14077,3024,7,4,f +14077,3034,1,5,f +14077,3139,0,3,f +14077,3464,4,3,f +14077,3585,1,1,f +14077,3586,1,1,f +14077,3587pb03,15,1,f +14077,8,1,3,f +14080,2340,272,2,f +14080,2343,0,1,f +14080,2412b,25,7,f +14080,2412b,71,5,f +14080,2419,272,1,f +14080,2431,4,1,f +14080,2432,71,3,f +14080,2445,71,1,f +14080,2450,71,2,f +14080,2456,0,1,f +14080,2458,14,4,f +14080,2540,0,1,f +14080,2555,71,1,f +14080,2569,71,1,t +14080,2569,71,2,f +14080,2730,0,1,f +14080,298c02,71,1,t +14080,298c02,71,2,f +14080,30031,0,1,f +14080,3005,71,2,f +14080,3009,72,1,f +14080,3010,0,2,f +14080,30165,0,1,f +14080,3020,25,1,f +14080,3021,4,1,f +14080,3021,0,2,f +14080,3022,14,2,f +14080,30229,72,1,f +14080,3023,0,2,f +14080,3023,71,4,f +14080,3023,2,2,f +14080,30283,272,4,f +14080,3032,0,2,f +14080,3035,72,3,f +14080,3039,71,4,f +14080,3039pr0005,15,1,f +14080,30414,71,2,f +14080,3048c,0,2,f +14080,30552,71,2,f +14080,30602,25,1,f +14080,30603,0,1,f +14080,3062b,0,8,f +14080,3068b,14,1,f +14080,3068b,272,6,f +14080,3069b,4,1,f +14080,3176,1,2,f +14080,32000,0,1,f +14080,32013,0,2,f +14080,32056,72,2,f +14080,32062,4,3,f +14080,32270,0,1,f +14080,32530,72,7,f +14080,32556,19,1,f +14080,3297,0,8,f +14080,3460,0,2,f +14080,3622,15,8,f +14080,3622,71,2,f +14080,3623,4,1,f +14080,3626bpr0411,14,1,f +14080,3626bpr0537,14,1,f +14080,3626bpr0542,14,1,f +14080,3660,72,10,f +14080,3660,0,3,f +14080,3700,1,1,f +14080,3710,0,1,f +14080,3713,4,2,f +14080,3713,4,1,t +14080,3738,72,2,f +14080,3794a,72,2,f +14080,3794a,15,1,f +14080,3795,71,2,f +14080,3829c01,15,1,f +14080,3937,71,3,f +14080,3938,4,1,f +14080,3941,57,2,f +14080,3960,0,1,f +14080,3962b,0,1,f +14080,4032a,1,1,f +14080,4032a,4,2,f +14080,4070,71,4,f +14080,4079,0,1,f +14080,4081b,0,2,f +14080,4151b,72,1,f +14080,41531,272,1,f +14080,41539,0,1,f +14080,4162,71,2,f +14080,4162,272,2,f +14080,41764,72,2,f +14080,41765,72,2,f +14080,41769,272,2,f +14080,41770,272,2,f +14080,42023,72,4,f +14080,42445,71,1,f +14080,42610,71,1,f +14080,4282,0,2,f +14080,43093,1,6,f +14080,43121,0,1,f +14080,4360,0,1,f +14080,43713,272,2,f +14080,43713,72,1,f +14080,44302a,0,1,f +14080,44302a,72,2,f +14080,44567a,71,1,f +14080,45301,71,2,f +14080,45705,40,1,f +14080,4588,72,1,f +14080,4589,0,3,f +14080,4589,57,7,f +14080,47397,272,2,f +14080,47398,272,2,f +14080,47406,272,3,f +14080,47457,4,6,f +14080,47905,72,1,f +14080,47905,19,4,f +14080,48336,71,2,f +14080,4854,272,2,f +14080,4865a,71,3,f +14080,4871,72,1,f +14080,48729a,0,1,t +14080,48729a,0,1,f +14080,50943,71,1,f +14080,50951,0,1,f +14080,50955,71,1,f +14080,50956,71,1,f +14080,51739,71,1,f +14080,52107,0,2,f +14080,54097,71,2,f +14080,54200,25,2,f +14080,54200,25,1,t +14080,54200,36,1,t +14080,54200,36,2,f +14080,54200,34,1,t +14080,54200,34,1,f +14080,56823c50,0,1,f +14080,58827,0,1,f +14080,59443,4,1,f +14080,60169,72,1,f +14080,6019,15,1,f +14080,6041,0,1,f +14080,60474,0,1,f +14080,60475a,71,2,f +14080,60849,0,1,f +14080,6111,71,1,f +14080,61184,71,3,f +14080,6134,1,2,f +14080,61409,27,5,f +14080,61409,72,2,f +14080,6141,15,2,f +14080,6141,42,8,f +14080,6141,25,1,t +14080,6141,25,3,f +14080,6141,15,1,t +14080,6141,42,2,t +14080,61678,0,2,f +14080,62606pat0001,71,2,f +14080,62695,135,1,f +14080,62696,308,1,f +14080,62810,0,1,f +14080,63359,80,1,f +14080,6536,72,1,f +14080,6541,0,2,f +14080,6587,72,5,f +14080,6632,0,4,f +14080,6636,14,2,f +14080,71155,0,1,f +14080,8633stk01,9999,1,t +14080,970c00pr0117,25,1,f +14080,970c00pr0118,272,2,f +14080,973pr1384c01,25,1,f +14080,973pr1386c01,272,1,f +14080,973pr1387c01,272,1,f +14081,32203,2,2,f +14081,32203,0,10,f +14081,32204,2,2,f +14081,32205,0,2,f +14081,32206,0,3,f +14081,32207,8,2,f +14081,32208,0,1,f +14081,32209,15,3,f +14081,32213,2,1,f +14081,32214,2,2,f +14081,32214,0,2,f +14081,32216,2,2,f +14081,32218,2,1,f +14081,32219,0,4,f +14081,32221,8,4,f +14081,32225,2,1,f +14081,32229,2,2,f +14081,32230,0,4,f +14081,3647,7,2,f +14081,3673,7,3,f +14081,3749,7,5,f +14081,4019,7,2,f +14081,4519,15,1,f +14081,4760c01,0,1,f +14081,5306bc020,0,1,f +14081,6232,7,2,f +14081,6538b,7,1,f +14081,71427c01,7,1,f +14081,x334c01,15,2,f +14081,zbb013,22,30,f +14081,zbb014,7,7,f +14081,zbb015,0,18,f +14081,zbb015,2,2,f +14082,4707pb02,7,1,f +14083,2446,0,1,f +14083,2555,0,1,f +14083,2654,15,1,f +14083,30031,0,1,f +14083,30088,14,1,f +14083,30090,33,1,f +14083,30091,15,1,f +14083,3021,4,1,f +14083,3022,4,1,f +14083,3023,4,2,f +14083,3024,46,1,f +14083,3626bp02,14,1,f +14083,3794a,0,1,f +14083,4081b,15,1,f +14083,4085c,15,1,f +14083,4623,15,1,f +14083,4854,0,1,f +14083,4855,0,1,f +14083,59275,14,2,f +14083,6153apx1,4,1,f +14083,970x026,1,1,f +14083,973px96c01,1,1,f +14084,3004,14,8,f +14084,3004,4,6,f +14084,3004,2,7,f +14084,3004,1,7,f +14084,3005,2,2,f +14084,3005,4,2,f +14084,3029,15,1,f +14084,3033,14,1,f +14084,30357,72,2,f +14084,3068b,15,5,f +14084,3068b,15,1,t +14084,3068bpr0163,15,1,f +14084,3069bpr0126,0,2,f +14084,3070bpr0063,0,3,f +14084,3070bpr0064,0,2,f +14084,3070bpr0065,0,2,f +14084,3070bpr0066,0,2,f +14084,3070bpr0067,0,3,f +14084,3070bpr0068,0,2,f +14084,3070bpr0069,0,2,f +14084,3070bpr0070,0,2,f +14084,3070bpr0071,0,2,f +14084,3070bpr0072,0,3,f +14084,3070bpr0073,0,3,f +14084,3070bpr0074,0,2,f +14084,3070bpr0075,0,2,f +14084,3070bpr0076,0,2,f +14084,3070bpr0077,0,2,f +14084,3070bpr0078,0,3,f +14084,3070bpr0079,0,2,f +14084,3070bpr0080,0,2,f +14084,3070bpr0081,0,2,f +14084,3070bpr0082,0,2,f +14084,3070bpr0083,0,1,f +14084,3070bpr0084,0,2,f +14084,3070bpr0085,0,2,f +14084,3070bpr0086,0,2,f +14084,3070bpr0087,0,1,f +14084,3070bpr0088,0,1,f +14084,3070bpr0089,0,3,f +14084,3070bpr0090,0,3,f +14084,3070bpr0091,0,3,f +14084,3070bpr0092,0,3,f +14084,3070bpr0093,0,3,f +14084,3070bpr0094,0,3,f +14084,3070bpr0095,0,3,f +14084,3070bpr0096,0,3,f +14084,3070bpr0097,0,3,f +14084,3070bpr0098,0,3,f +14084,3070bpr0099,0,2,f +14084,3070bpr0100,0,2,f +14084,3070bpr0101,0,1,f +14084,3070bpr0102,0,2,f +14084,3626bpr0499,14,1,f +14084,3626bpr0647,14,1,f +14084,3956,0,1,f +14084,4865b,15,2,f +14084,60479,15,2,f +14084,6141,72,2,f +14084,86035,4,2,f +14084,970c00,1,2,f +14084,973pr1580c01,15,2,f +14085,11090,0,4,f +14085,11477,0,2,f +14085,11477,322,4,f +14085,14417,72,3,f +14085,14704,71,7,f +14085,2736,71,2,f +14085,3020,1,1,f +14085,3022,1,3,f +14085,3022,322,5,f +14085,3022,0,2,f +14085,3023,1,2,f +14085,3024,0,2,f +14085,3024,0,1,t +14085,3039,1,2,f +14085,3065,47,1,f +14085,32474pr1001,15,2,f +14085,3731,71,2,f +14085,44728,1,3,f +14085,48336,1,2,f +14085,49668,15,2,f +14085,53451,15,4,f +14085,53451,15,1,t +14085,54200,143,6,f +14085,54200,143,1,t +14085,6141,72,1,t +14085,6141,72,2,f +14085,87087,1,2,f +14087,2780,0,1,t +14087,2780,0,18,f +14087,2817,0,2,f +14087,3004,15,3,f +14087,3023,47,2,f +14087,30663,0,1,f +14087,32034,71,1,f +14087,32039,4,3,f +14087,32054,71,4,f +14087,32056,72,4,f +14087,32062,4,2,f +14087,32072,0,2,f +14087,32073,71,5,f +14087,32123b,71,1,t +14087,32123b,71,8,f +14087,32140,71,6,f +14087,32140,4,4,f +14087,32184,0,1,f +14087,32269,19,1,f +14087,32270,0,1,f +14087,32271,72,2,f +14087,32348,4,2,f +14087,32449,4,2,f +14087,32523,71,2,f +14087,32524,4,1,f +14087,32524,72,4,f +14087,32525,72,2,f +14087,32526,4,6,f +14087,32526,72,4,f +14087,32527,4,1,f +14087,32528,4,1,f +14087,32557,4,2,f +14087,33299a,71,1,f +14087,3705,0,4,f +14087,3706,0,3,f +14087,3707,0,2,f +14087,3713,4,1,t +14087,3713,4,3,f +14087,3795,4,1,f +14087,41669,4,2,f +14087,42003,72,4,f +14087,4274,1,1,t +14087,4274,1,3,f +14087,43093,1,7,f +14087,44294,71,1,f +14087,44301a,71,2,f +14087,4519,71,6,f +14087,48989,71,4,f +14087,55976,0,4,f +14087,56145,71,4,f +14087,59426,72,2,f +14087,59443,71,5,f +14087,60483,72,2,f +14087,60484,0,2,f +14087,60485,71,1,f +14087,6091,15,2,f +14087,61409,72,2,f +14087,6141,72,2,f +14087,6141,72,1,t +14087,6536,71,7,f +14087,6558,1,16,f +14087,6587,72,2,f +14087,6589,19,1,f +14087,6632,0,4,f +14087,6636,71,1,f +14087,76138,71,1,f +14090,30031,0,1,f +14090,30236,14,1,f +14090,30377,0,1,f +14090,30377,0,1,t +14090,3794a,0,2,f +14090,3794a,0,1,t +14090,3942c,14,1,f +14090,4032a,0,1,f +14090,4083,14,1,f +14090,41862,71,1,f +14090,4589,182,1,t +14090,4589,182,1,f +14090,6141,182,2,f +14090,6141,182,2,t +14091,2039,4,2,f +14091,2357,4,3,f +14091,2377,4,2,f +14091,2412b,8,13,f +14091,2431,4,4,f +14091,2432,8,3,f +14091,2439,8,1,f +14091,2453a,19,2,f +14091,2456,4,1,f +14091,2458,15,1,f +14091,2495,4,1,f +14091,2496,0,3,f +14091,2540,0,2,f +14091,2655,15,2,f +14091,2877,0,16,f +14091,2920,0,4,f +14091,2921,4,2,f +14091,298c02,0,3,f +14091,298c02,0,1,t +14091,3001,8,3,f +14091,3001,6,3,f +14091,3004,4,11,f +14091,3004,8,2,f +14091,3004,19,1,f +14091,3004,0,4,f +14091,3005,4,9,f +14091,3008,19,3,f +14091,3008,4,6,f +14091,3009,0,2,f +14091,3009,4,2,f +14091,3009,8,6,f +14091,3010,7,4,f +14091,3010,8,4,f +14091,3010,4,5,f +14091,30155,0,18,f +14091,30157,8,9,f +14091,3020,6,10,f +14091,3021,14,1,f +14091,3022,4,1,f +14091,3023,0,6,f +14091,3023,19,4,f +14091,30238,0,1,f +14091,3029,0,1,f +14091,3030,0,1,f +14091,3031,0,1,f +14091,3032,0,3,f +14091,3035,0,1,f +14091,30363,8,1,f +14091,30374,7,1,f +14091,30374,6,1,f +14091,30374,19,1,f +14091,3039,0,2,f +14091,3040b,8,7,f +14091,3040b,0,2,f +14091,30414,8,1,f +14091,3048c,0,4,f +14091,3062b,19,11,f +14091,3062b,0,2,f +14091,3062b,47,1,f +14091,3068b,8,7,f +14091,3070bp01,14,2,f +14091,3070bp01,14,1,t +14091,3070bp02,14,2,f +14091,3070bp02,14,1,t +14091,3185,7,2,f +14091,32064b,7,1,f +14091,32083,0,7,f +14091,32474,7,3,f +14091,33009px1,2,1,f +14091,3308,7,1,f +14091,33320,2,1,f +14091,3455,4,2,f +14091,3456,0,2,f +14091,3460,0,4,f +14091,3460,19,4,f +14091,3622,4,2,f +14091,3622,0,2,f +14091,3623,4,2,f +14091,3626bpb0006,14,1,f +14091,3626bpb0009,14,1,f +14091,3626bph1,14,1,f +14091,3659,7,1,f +14091,3660,0,2,f +14091,3665,0,2,f +14091,3666,0,7,f +14091,3710,0,3,f +14091,3749,7,1,f +14091,3754,7,2,f +14091,3794a,4,5,f +14091,3795,8,8,f +14091,3836,6,1,f +14091,3941,4,1,f +14091,3941,0,1,f +14091,3957a,0,1,f +14091,3960px6,0,1,f +14091,4022,0,4,f +14091,40232,15,1,f +14091,40233,0,1,f +14091,40234,7,1,f +14091,40240,366,1,f +14091,40249,19,1,f +14091,40251,6,1,f +14091,40253,8,1,f +14091,4032a,0,1,f +14091,4032a,14,1,f +14091,4033,4,10,f +14091,4070,8,8,f +14091,4150pr0001,15,1,f +14091,4162,4,4,f +14091,4286,4,2,f +14091,43337,4,2,f +14091,4449,0,1,f +14091,4449,6,1,f +14091,4589,4,2,f +14091,4625,0,3,f +14091,4738a,6,1,f +14091,4739a,6,1,f +14091,4740,4,3,f +14091,4854,4,2,f +14091,4857,0,1,f +14091,4857,4,2,f +14091,4865a,7,2,f +14091,50231px1,0,3,f +14091,6019,0,6,f +14091,6081,4,2,f +14091,6111,4,2,f +14091,6141,47,2,t +14091,6141,0,1,t +14091,6141,0,2,f +14091,6141,47,4,f +14091,6215,1,1,f +14091,6231,7,2,f +14091,62808,60,2,f +14091,6541,7,1,f +14091,6584,0,2,f +14091,6587,8,1,f +14091,6636,0,2,f +14091,6636,15,1,f +14091,6636,4,2,f +14091,6641,7,1,f +14091,73092,0,4,f +14091,73129,4,1,f +14091,75c16,0,2,f +14091,970c00,19,1,f +14091,970c00,7,2,f +14091,973px151c01,1,1,f +14091,973px152c01,1,1,f +14091,973px153c01,7,1,f +14091,x222,4,1,f +14093,2357,72,4,f +14093,2412b,1,37,f +14093,2419,1,4,f +14093,2555,0,2,f +14093,30000,72,4,f +14093,3002,71,2,f +14093,3003,1,4,f +14093,3004,19,3,f +14093,3020,1,11,f +14093,3021,72,2,f +14093,3022,1,2,f +14093,3023,1,3,f +14093,30283,71,1,f +14093,3029,0,4,f +14093,3031,0,1,f +14093,30355,0,4,f +14093,30356,0,4,f +14093,30366ps1,40,1,f +14093,30373,72,2,f +14093,3039,71,2,f +14093,30408pr0001,0,1,f +14093,3040b,1,2,f +14093,3044b,0,2,f +14093,3046a,72,2,f +14093,3049b,71,2,f +14093,3069bpr0086,71,1,f +14093,3623,0,2,f +14093,3626b,70,1,f +14093,3660,0,2,f +14093,3701,0,3,f +14093,3710,72,4,f +14093,3747b,71,8,f +14093,3794a,2,1,f +14093,3937,72,1,f +14093,3938,0,1,f +14093,3960,71,1,f +14093,3960ps2,72,1,f +14093,4150ps5,71,2,f +14093,4274,71,1,f +14093,4274,71,1,t +14093,43722,0,4,f +14093,43723,0,4,f +14093,4477,1,4,f +14093,4740,33,1,f +14093,48336,19,1,f +14093,6141,135,1,t +14093,6141,36,7,f +14093,6179,0,1,f +14093,970c00,0,1,f +14093,973pr1148c01,0,1,f +14094,45462,15,4,f +14094,45463,9,1,f +14094,45499,45,1,f +14094,46277,13,4,f +14097,3650,7,4,f +14097,4143,7,12,f +14097,6573,8,1,f +14097,73071,7,1,f +14104,13789pr0001,0,1,f +14104,13790,70,1,f +14104,3626cpr1239,14,1,f +14104,88646,0,1,f +14104,970c00,0,1,f +14104,973pr2411c01,0,1,f +14106,122c01,0,4,f +14106,15,0,1,f +14106,17,0,1,f +14106,3001,15,4,f +14106,3002,15,1,f +14106,3003,15,2,f +14106,3003,0,2,f +14106,3003,47,4,f +14106,3004,0,18,f +14106,3004,14,28,f +14106,3004,4,8,f +14106,3004,15,10,f +14106,3005,15,15,f +14106,3005,4,6,f +14106,3005,14,26,f +14106,3005,0,37,f +14106,3008,14,2,f +14106,3008,15,1,f +14106,3009,15,4,f +14106,3009,14,11,f +14106,3009,4,1,f +14106,3010,47,1,f +14106,3010,4,2,f +14106,3010,14,10,f +14106,3010,0,2,f +14106,3010,15,5,f +14106,3020,7,1,f +14106,3020,0,1,f +14106,3021,0,1,f +14106,3022,0,5,f +14106,3023,1,3,f +14106,3023,15,5,f +14106,3023,7,4,f +14106,3023,47,1,f +14106,3023,0,4,f +14106,3024,0,3,f +14106,3028,0,1,f +14106,3030,15,1,f +14106,3031,0,1,f +14106,3032,15,1,f +14106,3033,1,1,f +14106,3033,14,1,f +14106,3034,0,1,f +14106,3034,4,1,f +14106,3035,14,1,f +14106,3037,4,7,f +14106,3038,4,8,f +14106,3039,0,3,f +14106,3039,1,1,f +14106,3039,4,6,f +14106,3040a,4,2,f +14106,3041,4,1,f +14106,3043,4,2,f +14106,3044a,4,1,f +14106,3045,4,4,f +14106,3046a,4,5,f +14106,3048a,0,4,f +14106,3048a,4,2,f +14106,3049b,4,1,f +14106,3062b,0,16,f +14106,3069b,0,1,f +14106,3297,4,2,f +14106,3307,14,2,f +14106,3308,14,2,f +14106,3460,4,2,f +14106,3470,2,1,f +14106,3581,14,2,f +14106,3596,15,1,f +14106,3622,0,7,f +14106,3622,14,6,f +14106,3622,15,1,f +14106,3622,4,2,f +14106,3623,0,2,f +14106,3623,1,2,f +14106,3624,1,1,f +14106,3625,0,2,f +14106,3626a,0,1,f +14106,3626apr0001,14,10,f +14106,3641,0,8,f +14106,3644,4,2,f +14106,3659,0,2,f +14106,3659,14,3,f +14106,3660,0,3,f +14106,3665,0,4,f +14106,3666,0,3,f +14106,3675,4,1,f +14106,3679,7,1,f +14106,3680,15,1,f +14106,3710,7,1,f +14106,3710,0,4,f +14106,3741,2,9,f +14106,3742,14,8,f +14106,3742,15,8,f +14106,3742,4,8,f +14106,3742,1,8,f +14106,3778,2,1,f +14106,3787,0,1,f +14106,3788,0,1,f +14106,3794a,7,1,f +14106,3794a,15,2,f +14106,3795,0,1,f +14106,3821,0,1,f +14106,3822,0,1,f +14106,3829c01,7,1,f +14106,3832,0,1,f +14106,3846,7,4,f +14106,3848,7,4,f +14106,3853,0,3,f +14106,3854,15,6,f +14106,3861b,15,1,f +14106,3878,0,3,f +14106,3896,8,4,f +14106,3899,14,1,f +14106,3901,6,1,f +14106,3937,7,1,f +14106,3938,7,1,f +14106,3941,15,2,f +14106,4079,1,3,f +14106,608p01,7,1,f +14106,609p01,7,1,f +14106,739p01,15,1,f +14106,970c00,4,2,f +14106,970c00,1,1,f +14106,970c00,15,2,f +14106,970c00,0,1,f +14106,970x021,0,4,f +14106,973c07,1,1,f +14106,973c25,1,4,f +14106,973p03c01,1,1,f +14106,973p17c02,0,1,f +14106,973p18c01,1,1,f +14106,973p72c01,15,1,f +14106,973px3c01,15,1,f +14107,2420,72,4,f +14107,3020,72,6,f +14107,3021,72,1,f +14107,3022,72,12,f +14107,3023,72,17,f +14107,3024,72,10,f +14107,30374,72,1,f +14107,3062b,72,1,f +14107,3069b,72,16,f +14107,3070b,72,7,f +14107,3623,72,3,f +14107,3666,72,12,f +14107,3710,72,19,f +14107,3794a,72,3,f +14107,3795,72,8,f +14107,4733,72,22,f +14107,54200,72,8,f +14107,6141,72,1,f +14108,10928,72,1,f +14108,11214,72,4,f +14108,11478,71,2,f +14108,11946,0,1,f +14108,11947,0,1,f +14108,15413,0,4,f +14108,15462,70,2,f +14108,16091,71,1,f +14108,18651,0,5,f +14108,18654,72,1,t +14108,18654,72,2,f +14108,18940,4,1,f +14108,18942,72,1,f +14108,24316,70,3,f +14108,2780,0,28,f +14108,2780,0,1,t +14108,27938,72,1,f +14108,27940,72,2,f +14108,28216,0,1,f +14108,29877,9999,1,f +14108,32002,19,2,f +14108,32002,19,1,t +14108,32054,71,3,f +14108,32062,4,6,f +14108,32073,71,3,f +14108,32123b,14,1,t +14108,32123b,14,3,f +14108,32138,0,4,f +14108,32140,4,2,f +14108,32140,1,2,f +14108,32140,72,2,f +14108,32140,0,3,f +14108,32184,0,7,f +14108,32192,0,1,f +14108,32198,19,1,f +14108,32250,72,2,f +14108,32251,72,2,f +14108,32270,0,2,f +14108,32278,4,2,f +14108,32316,0,5,f +14108,32348,4,3,f +14108,32523,72,3,f +14108,32523pr0001,15,1,f +14108,32524,72,5,f +14108,32524,4,1,f +14108,32526,4,4,f +14108,33299a,0,4,f +14108,3705,0,3,f +14108,3706,4,2,f +14108,3713,71,6,f +14108,3713,71,1,t +14108,3737,4,1,f +14108,3749,19,4,f +14108,40490,0,5,f +14108,41239,72,1,f +14108,41678,72,2,f +14108,42003,71,1,f +14108,4274,71,2,f +14108,4274,71,1,t +14108,43093,1,2,f +14108,44294,14,2,f +14108,4519,71,14,f +14108,4716,71,1,f +14108,48989,71,4,f +14108,56145,0,4,f +14108,59443,4,8,f +14108,60483,0,12,f +14108,6141,36,1,t +14108,6141,182,1,t +14108,6141,47,1,t +14108,6141,36,2,f +14108,6141,182,1,f +14108,6141,47,2,f +14108,62462,0,1,f +14108,63869,0,1,f +14108,6536,72,8,f +14108,6558,1,14,f +14108,6575,72,4,f +14108,6589,19,1,f +14108,6628,0,4,f +14108,6629,0,4,f +14108,85940,0,1,f +14108,87080,4,1,f +14108,87083,72,4,f +14108,92693,71,1,f +14108,92907,71,2,f +14109,2412b,42,13,f +14109,2419,0,2,f +14109,2419,2,4,f +14109,2450,0,2,f +14109,2463,0,2,f +14109,2465,0,2,f +14109,2507,42,1,f +14109,2547,8,1,f +14109,2548,8,1,f +14109,2555,0,4,f +14109,2593,2,3,f +14109,2730,0,2,f +14109,2877,2,1,f +14109,3001,0,5,f +14109,3001,14,1,f +14109,3002,14,1,f +14109,3003,1,2,f +14109,3003,2,1,f +14109,30036,2,2,f +14109,3004,0,8,f +14109,3008,0,1,f +14109,3009,0,2,f +14109,3010,14,2,f +14109,3020,2,3,f +14109,3020,0,2,f +14109,3021,0,3,f +14109,3021,2,2,f +14109,3022,0,1,f +14109,3022,2,1,f +14109,3023,1,1,f +14109,3023,2,5,f +14109,3023,0,2,f +14109,3033,0,2,f +14109,3034,0,2,f +14109,30385,383,4,f +14109,3039,0,4,f +14109,3039pc1,0,2,f +14109,3040b,2,2,f +14109,3040b,0,8,f +14109,3048c,0,2,f +14109,3068b,0,1,f +14109,3068b,1,2,f +14109,3068bp00,0,1,f +14109,3068bp51,0,3,f +14109,3069b,0,2,f +14109,3298,0,1,f +14109,3298,2,2,f +14109,3460,2,4,f +14109,3622,2,2,f +14109,3623,0,2,f +14109,3626bp7a,14,1,f +14109,3626bpb0057,14,1,f +14109,3647,7,1,f +14109,3650,7,2,f +14109,3660,0,11,f +14109,3666,0,4,f +14109,3666,2,3,f +14109,37,383,4,f +14109,3700,14,4,f +14109,3705,0,3,f +14109,3707,0,1,f +14109,3710,2,7,f +14109,3713,7,2,f +14109,3749,7,7,f +14109,3795,2,1,f +14109,3832,2,1,f +14109,3933,0,1,f +14109,3934,0,1,f +14109,3958,0,1,f +14109,4019,7,2,f +14109,4070,0,2,f +14109,4282,2,1,f +14109,4286,0,6,f +14109,4315,0,2,f +14109,4345b,0,2,f +14109,4346,42,2,f +14109,4477,2,2,f +14109,4589,42,2,f +14109,4623,0,4,f +14109,4716,0,1,f +14109,4855,0,2,f +14109,4856a,0,1,f +14109,4865a,1,3,f +14109,57467,383,6,f +14109,59275,0,4,f +14109,6032,2,5,f +14109,6039,2,1,f +14109,6040,0,4,f +14109,6041,42,5,f +14109,6042,2,2,f +14109,6042,0,2,f +14109,6043,2,2,f +14109,6061,0,4,f +14109,6064,2,1,f +14109,6065,4,1,f +14109,6084,42,1,f +14109,6085,42,1,f +14109,6086,0,1,f +14109,6089,8,2,f +14109,6090,42,2,f +14109,6106,0,2,f +14109,6111,2,2,f +14109,6141,42,4,f +14109,6232,14,3,f +14109,6538b,7,3,f +14109,6564,0,1,f +14109,6565,0,1,f +14109,6636,0,1,f +14109,70001pb01,0,1,f +14109,73983,0,4,f +14109,970x024,8,2,f +14109,973pb0020c01,0,1,f +14109,973pb0021c01,0,1,f +14110,2335pr02,15,1,f +14110,2335px13,15,1,f +14110,2343,7,3,f +14110,2356,14,1,f +14110,2413,7,1,f +14110,2432,0,4,f +14110,2439,8,1,f +14110,2446px5,2,1,f +14110,2446px5,1,1,f +14110,2446px9,4,1,f +14110,2447,41,3,f +14110,2454a,14,3,f +14110,2456,14,1,f +14110,2456,0,1,f +14110,2486,4,3,f +14110,2496,0,2,f +14110,2508,0,1,f +14110,2513pb04,15,1,f +14110,2655,7,2,f +14110,2926,7,1,f +14110,3001,1,2,f +14110,3004,0,1,f +14110,3008,14,2,f +14110,3009,0,3,f +14110,3010,1,2,f +14110,30104,8,1,f +14110,3010pb003,15,1,f +14110,30179,0,1,f +14110,30180,14,1,f +14110,30180pb02,14,1,f +14110,30181,14,1,f +14110,30185c03,0,1,f +14110,30187c01,4,1,f +14110,30187c01,1,1,f +14110,30187c01,15,1,f +14110,3020,14,1,f +14110,3022,4,1,f +14110,30235,7,1,f +14110,30277,0,1,f +14110,3031,1,1,f +14110,3037pr0005,1,1,f +14110,3039p70,15,1,f +14110,3068b,1,1,f +14110,3070b,36,3,f +14110,3070b,46,3,f +14110,3300,0,1,f +14110,3626bp05,14,3,f +14110,3626bpr0001,14,1,f +14110,3641,0,2,f +14110,3710,4,1,f +14110,3730,0,1,f +14110,3741,2,1,f +14110,3742,14,1,t +14110,3742,14,3,f +14110,3754,14,3,f +14110,3823,41,1,f +14110,3829c01,1,1,f +14110,3829c01,15,1,f +14110,3901,0,1,f +14110,3957a,15,3,f +14110,4083,15,1,f +14110,4083,1,1,f +14110,4211,15,1,f +14110,4215bpx26,1,3,f +14110,4485,0,1,f +14110,4485,4,2,f +14110,4533,7,1,f +14110,4624,15,2,f +14110,4740,8,1,f +14110,4865a,4,2,f +14110,51595p02,2,2,f +14110,55295,8,1,f +14110,55296,8,1,f +14110,55297,8,1,f +14110,55298,8,2,f +14110,55299,8,1,f +14110,55300,8,1,f +14110,6014a,15,8,f +14110,6015,0,8,f +14110,6064,2,1,f +14110,6140,7,1,f +14110,6160c01,0,2,f +14110,6212,14,1,f +14110,76041c01,0,1,f +14110,92410,1,1,f +14110,970c00,1,3,f +14110,970c00,0,1,f +14110,973p28c01,0,1,f +14110,973pb0201c01,15,1,f +14110,973pr1156c01,1,1,f +14110,973px18c01,15,1,f +14111,2432,15,1,f +14111,2433,0,2,f +14111,2446,1,1,f +14111,2447,33,1,f +14111,3021,0,1,f +14111,3023,15,1,f +14111,3023,0,2,f +14111,3024,36,4,f +14111,3024,15,2,f +14111,3031,15,1,f +14111,3069bp05,15,2,f +14111,3069bp06,15,2,f +14111,3069bp25,15,2,f +14111,3626apr0001,14,1,f +14111,3710,15,1,f +14111,3710,0,2,f +14111,3838,1,1,f +14111,3957a,36,2,f +14111,3959,15,1,f +14111,4081b,15,2,f +14111,4085b,15,2,f +14111,4169,15,2,f +14111,4275b,15,2,f +14111,4276b,15,4,f +14111,4589,36,2,f +14111,4589,0,2,f +14111,4590,15,2,f +14111,4595,0,2,f +14111,4598,15,1,f +14111,4740,33,2,f +14111,6141,33,2,f +14111,970c00,1,1,f +14111,973p6cc01,15,1,f +14112,2412b,72,1,f +14112,2415,71,2,f +14112,2444,71,1,f +14112,2454a,19,4,f +14112,2555,72,2,f +14112,2566,0,1,f +14112,2654,0,1,f +14112,2780,0,3,f +14112,2780,0,1,t +14112,298c02,0,1,t +14112,298c02,0,1,f +14112,3001,320,1,f +14112,3003,272,3,f +14112,30153,41,1,f +14112,30170,72,1,t +14112,30170,72,1,f +14112,30171,70,1,f +14112,30176,2,2,f +14112,3021,71,4,f +14112,3022,0,1,f +14112,3022,484,3,f +14112,3023,0,8,f +14112,3031,320,4,f +14112,30332,0,1,f +14112,3034,71,3,f +14112,30367b,14,1,f +14112,3048c,297,4,f +14112,30565,320,6,f +14112,32028,15,1,f +14112,32064b,14,2,f +14112,32524,0,1,f +14112,3460,72,2,f +14112,3464,15,2,f +14112,3626bpr0753a,14,1,f +14112,3626bpr0755a,71,2,f +14112,3650c,71,1,f +14112,3676,0,4,f +14112,3684,28,4,f +14112,3710,0,2,f +14112,3794b,4,1,f +14112,3832,0,1,f +14112,3958,28,1,f +14112,4150,297,1,f +14112,4150,15,2,f +14112,41854,72,2,f +14112,4274,1,1,f +14112,4274,1,1,t +14112,43337,320,2,f +14112,43713,0,1,f +14112,43719,72,1,f +14112,4497,148,2,f +14112,4865a,47,1,f +14112,4871,0,1,f +14112,51739,320,1,f +14112,59426,72,1,f +14112,59895,0,2,f +14112,60208,72,1,f +14112,60474,72,1,f +14112,6191,320,2,f +14112,6239,320,1,f +14112,64225,320,1,f +14112,85973,0,2,f +14112,87580,272,1,f +14112,90195,71,2,f +14112,93249pr0001,272,2,f +14112,93250pr0001,272,2,f +14112,970c00,28,1,f +14112,970c00pr0195a,71,2,f +14112,973pb0780c01,71,2,f +14112,973pr1732c01,308,1,f +14113,9912,2,1,f +14115,3005,2,4,f +14115,30136,72,2,f +14115,3070b,2,1,t +14115,3070b,2,4,f +14115,3626cpr1181,71,1,f +14115,4032a,72,1,f +14115,4081b,71,1,f +14115,4740,45,1,f +14115,54200,71,1,f +14115,54200,71,1,t +14115,59900,26,1,t +14115,59900,26,1,f +14115,6091,71,1,f +14115,61184,71,1,f +14115,6141,85,1,t +14115,6141,25,1,f +14115,6141,4,1,t +14115,6141,45,1,f +14115,6141,1,1,f +14115,6141,25,1,t +14115,6141,85,1,f +14115,6141,45,1,t +14115,6141,1,1,t +14115,6141,4,1,f +14115,6636,71,2,f +14115,75937,179,1,f +14115,85940,0,1,f +14115,87087,71,1,f +14115,92947,71,1,f +14115,970c00pr0482,73,1,f +14115,973pr2304c01,73,1,f +14115,98138,36,1,f +14115,98138,36,1,t +14115,98313,179,4,f +14119,10314,14,2,f +14119,11055,15,1,f +14119,11208,15,4,f +14119,11209,0,4,f +14119,15068,14,2,f +14119,15207,4,2,f +14119,18654,72,2,f +14119,18654,72,1,t +14119,18892,0,2,f +14119,2412b,0,1,f +14119,2446,15,1,f +14119,2447,40,1,f +14119,2447,40,1,t +14119,30029,0,1,f +14119,3004,4,3,f +14119,3020,14,4,f +14119,3020,4,3,f +14119,3021,1,1,f +14119,3021,72,1,f +14119,3022,15,1,f +14119,3022,0,1,f +14119,3022,4,1,f +14119,3023,4,1,f +14119,3024,47,1,t +14119,3024,47,2,f +14119,3031,0,1,f +14119,3037,0,1,f +14119,30374,71,1,f +14119,3065,40,2,f +14119,32028,0,4,f +14119,3626cpr1663,14,1,f +14119,3710,14,2,f +14119,3710,15,1,f +14119,3795,14,2,f +14119,3795,0,1,f +14119,3829c01,4,1,f +14119,45677,0,1,f +14119,4590,72,1,f +14119,4740,2,1,f +14119,47456,0,2,f +14119,48336,14,2,f +14119,50745,14,2,f +14119,50745,0,2,f +14119,54200,47,2,f +14119,54200,14,1,t +14119,54200,14,4,f +14119,54200,47,1,t +14119,57783,40,1,f +14119,60113stk01,9999,1,f +14119,61409,0,6,f +14119,85984pr0143,72,1,f +14119,93273,0,2,f +14119,93273,14,2,f +14119,93274,71,2,f +14119,93609,15,1,t +14119,93609,15,2,f +14119,970c00,4,1,f +14119,973pr3241c01,15,1,f +14119,98138,46,4,f +14119,98138,36,1,t +14119,98138,36,2,f +14119,98138,46,1,t +14119,98138pr0037,15,1,t +14119,98138pr0037,15,4,f +14120,10907,378,1,f +14120,10908pr0011,378,1,f +14120,11476,71,1,f +14120,13731,0,2,f +14120,15068,0,2,f +14120,15339,378,1,f +14120,15392,72,4,f +14120,15392,72,1,t +14120,15403,0,4,f +14120,15535,72,2,f +14120,18974,2,1,f +14120,2340,0,6,f +14120,24135,71,2,f +14120,24135,71,1,t +14120,2436,71,2,f +14120,2456,72,1,f +14120,2460,72,1,f +14120,2540,0,4,f +14120,2540,25,3,f +14120,2654,182,2,f +14120,2780,0,4,f +14120,2780,0,1,t +14120,2877,72,2,f +14120,3001,72,1,f +14120,3003,72,2,f +14120,30031,72,1,f +14120,3005,71,4,f +14120,30088,0,1,t +14120,30088,0,2,f +14120,3020,0,2,f +14120,3021,4,2,f +14120,3021,72,3,f +14120,3022,14,2,f +14120,3023,36,14,f +14120,3023,72,6,f +14120,3024,19,2,f +14120,3024,19,1,t +14120,3024,0,4,f +14120,3024,0,1,t +14120,3035,0,1,f +14120,30350a,0,3,f +14120,30350b,72,1,f +14120,3038,72,2,f +14120,30414,72,2,f +14120,3062b,57,3,f +14120,3062b,36,3,f +14120,3068b,0,2,f +14120,3069b,0,4,f +14120,32001,0,3,f +14120,32064a,4,6,f +14120,32187,71,1,f +14120,32324,71,1,f +14120,3626cpr0961,78,1,f +14120,3626cpr1386,4,1,f +14120,3626cpr1869,1,1,f +14120,3626cpr1870,118,1,f +14120,3660,72,2,f +14120,3666,71,7,f +14120,3678b,0,2,f +14120,3703,0,2,f +14120,3709,4,1,f +14120,3710,0,2,f +14120,3710,4,2,f +14120,3710,72,3,f +14120,3747a,0,2,f +14120,3795,4,7,f +14120,3894,14,1,f +14120,3941,19,8,f +14120,4032a,4,3,f +14120,4070,72,4,f +14120,41769,0,1,f +14120,41770,0,1,f +14120,4286,72,2,f +14120,43710,0,2,f +14120,43711,0,2,f +14120,43719,0,2,f +14120,43722,0,1,f +14120,43723,0,1,f +14120,43898,0,2,f +14120,44676,72,4,f +14120,44728,4,10,f +14120,4477,71,2,f +14120,4519,71,5,f +14120,45301,0,2,f +14120,47456,0,2,f +14120,47457,71,2,f +14120,4871,72,1,f +14120,48933,72,2,f +14120,51739,0,2,f +14120,51739,72,1,f +14120,54200,378,1,f +14120,54200,378,1,t +14120,57895,36,1,f +14120,59275,4,2,f +14120,59275,27,2,f +14120,60169,71,1,f +14120,60477,0,2,f +14120,60478,14,4,f +14120,60478,0,6,f +14120,60596,0,3,f +14120,60616b,36,1,f +14120,60897,14,2,f +14120,60897,71,1,f +14120,61072,179,1,f +14120,61252,72,2,f +14120,61409,14,2,f +14120,61409,0,8,f +14120,6141,46,1,t +14120,6141,57,1,t +14120,6141,36,1,t +14120,6141,36,15,f +14120,6141,46,4,f +14120,6141,57,3,f +14120,6180,71,1,f +14120,6239,72,2,f +14120,6249,71,1,f +14120,6636,0,1,f +14120,75902pr0004,4,1,f +14120,84954,40,1,f +14120,85984,0,2,f +14120,87544,40,2,f +14120,87552,0,1,f +14120,91501,15,4,f +14120,92220,57,5,f +14120,92593,0,4,f +14120,92593,4,2,f +14120,93273,4,2,f +14120,93274,0,2,f +14120,970c00,1,1,f +14120,970c00pr1019,0,1,f +14120,970c00pr1022,378,1,f +14120,970x028,288,1,f +14120,973pr2629c01,2,1,f +14120,973pr2635c01,1,1,f +14120,973pr3290c01,0,1,f +14120,973pr3297c01,378,1,f +14120,98138pr0052,47,1,f +14120,99207,71,6,f +14120,99780,72,6,f +14121,3626bpr1023,14,1,f +14121,62696,0,1,f +14121,87997pr0002,15,2,f +14121,88646,0,1,f +14121,970c00pr0377,15,1,f +14121,973pr2118c01,4,1,f +14123,2412b,57,1,t +14123,2412b,57,2,f +14123,2431,6,2,f +14123,2454a,19,4,f +14123,2458,6,1,f +14123,3004,6,1,f +14123,3005,6,2,f +14123,3034,19,2,f +14123,30361aps1,15,1,f +14123,30362,15,2,f +14123,30367apr01,15,1,f +14123,3040b,6,6,f +14123,30480,142,1,f +14123,3062b,7,1,f +14123,3070b,6,1,t +14123,3070b,6,2,f +14123,32001,0,1,f +14123,32474pb01,8,1,f +14123,3308,19,1,f +14123,3623,0,2,f +14123,3626bpb0167,19,1,f +14123,41539,19,1,f +14123,4162,6,2,f +14123,44363,19,1,f +14123,50231,0,1,f +14123,6141,57,2,t +14123,6141,57,2,f +14123,6587,8,1,f +14123,970c00,142,1,f +14123,970c00,272,1,f +14123,973pb0247c01,272,1,f +14123,973px160c01,142,1,f +14124,11477,2,2,f +14124,14417,72,2,f +14124,14704,71,2,f +14124,15573,15,2,f +14124,2654,47,3,f +14124,3004,1,1,f +14124,3004,14,1,f +14124,3022,14,1,f +14124,3022,1,1,f +14124,3023,0,1,f +14124,3023,15,1,f +14124,3023,1,6,f +14124,3068b,1,3,f +14124,3678b,1,1,f +14124,3710,14,2,f +14124,41769,14,1,f +14124,41770,14,1,f +14124,43722,1,1,f +14124,43723,1,1,f +14124,44728,15,1,f +14124,4590,72,1,f +14124,49668,191,2,f +14124,50950,0,1,f +14124,60478,14,2,f +14124,60897,72,2,f +14124,6091,1,2,f +14124,63868,14,2,f +14124,87087,14,2,f +14124,87087,15,2,f +14124,93273,14,2,f +14124,98138pr0008,15,2,f +14124,99206,0,1,f +14126,2654,0,1,f +14126,2736,7,2,f +14126,2780,0,111,f +14126,2780,0,1,t +14126,2797c02,0,2,f +14126,2825,8,2,f +14126,2850a,47,3,f +14126,2851,14,3,f +14126,2852,7,3,f +14126,2853,7,6,f +14126,2853,14,2,f +14126,2854,8,2,f +14126,2905,0,8,f +14126,2950,14,1,f +14126,32002,8,1,t +14126,32002,8,8,f +14126,32009,0,4,f +14126,32009,14,2,f +14126,32017,0,2,f +14126,32017,14,2,f +14126,32030,0,1,f +14126,32034,0,7,f +14126,32054,0,10,f +14126,32054,1,4,f +14126,32056,0,10,f +14126,32062,0,27,f +14126,32065,14,4,f +14126,32072,14,3,f +14126,32073,7,10,f +14126,32123b,7,1,t +14126,32123b,7,23,f +14126,32126,7,7,f +14126,32138,14,3,f +14126,32138,0,2,f +14126,32140,0,11,f +14126,32180,0,2,f +14126,32184,0,8,f +14126,32249,0,2,f +14126,32250,14,2,f +14126,32269,7,1,f +14126,32270,7,3,f +14126,32271,8,6,f +14126,32271,0,2,f +14126,32271,14,2,f +14126,32278,0,6,f +14126,32293,0,2,f +14126,32316,0,4,f +14126,32348,14,4,f +14126,32449,7,4,f +14126,32449,14,2,f +14126,32449,0,12,f +14126,32523,0,3,f +14126,32523,14,2,f +14126,32524,0,5,f +14126,32525,0,2,f +14126,32525,14,2,f +14126,32526,7,2,f +14126,32526,14,2,f +14126,32526,0,4,f +14126,32527,14,1,f +14126,32528,14,1,f +14126,32534,14,1,f +14126,32535,14,1,f +14126,32556,7,3,f +14126,32557,0,4,f +14126,32557,7,2,f +14126,33299a,0,2,f +14126,3647,7,1,f +14126,3673,7,2,f +14126,3705,0,16,f +14126,3706,0,2,f +14126,3707,0,3,f +14126,3713,7,12,f +14126,3713,7,1,t +14126,3737,0,3,f +14126,3749,19,4,f +14126,3941,46,1,f +14126,4032a,0,1,f +14126,40490,8,4,f +14126,40490,0,4,f +14126,40490,14,11,f +14126,41677,0,20,f +14126,41678,0,11,f +14126,41678,14,3,f +14126,41896,14,2,f +14126,42003,0,4,f +14126,42003,14,1,f +14126,43093,1,10,f +14126,43857,0,2,f +14126,44294,7,7,f +14126,4519,7,38,f +14126,45982,0,2,f +14126,4697b,7,1,t +14126,4697b,7,13,f +14126,47223a,8,7,f +14126,47225,14,10,f +14126,5102c195,7,1,f +14126,5102c406,8,1,f +14126,6141,41,4,f +14126,6141,41,1,t +14126,6141,36,2,f +14126,6141,36,1,t +14126,6536,0,17,f +14126,6536,7,10,f +14126,6538b,0,9,f +14126,6538b,7,3,f +14126,6558,0,39,f +14126,6572,7,2,f +14126,6573,8,1,f +14126,6587,8,12,f +14126,6589,7,3,f +14126,6595,14,2,f +14126,6629,0,2,f +14126,6629,14,2,f +14126,6632,7,5,f +14126,6632,0,6,f +14126,75535,14,1,f +14126,75535,0,2,f +14126,75535,7,1,f +14129,3023,47,50,f +14129,3023,1,50,f +14129,3023,2,50,f +14129,3023,4,50,f +14129,3023,7,50,f +14129,3023,14,50,f +14129,3023,0,50,f +14129,3023,15,50,f +14129,3024,15,30,f +14129,3024,0,30,f +14129,3024,2,30,f +14129,3024,7,30,f +14129,3024,47,30,f +14129,3024,14,30,f +14129,3024,4,30,f +14129,3024,1,30,f +14131,2340,15,4,f +14131,2419,15,4,f +14131,2432,15,1,f +14131,2462,15,6,f +14131,2465,1,4,f +14131,2540,15,2,f +14131,2625,15,2,f +14131,2626,1,2,f +14131,2654,0,6,f +14131,298c04,15,4,f +14131,298c04,15,1,t +14131,3001,4,1,f +14131,3003,1,2,f +14131,3004,15,4,f +14131,3004,14,1,f +14131,3005,1,2,f +14131,3008,15,2,f +14131,3008p25,15,6,f +14131,3009,1,8,f +14131,3009p25,15,10,f +14131,3009p26,15,6,f +14131,3010,15,2,f +14131,3020,14,1,f +14131,3020,0,1,f +14131,3021,15,4,f +14131,3022,0,1,f +14131,3022,15,2,f +14131,3023,15,5,f +14131,3024,15,6,f +14131,3030,0,1,f +14131,3035,0,1,f +14131,3036,15,1,f +14131,3039,47,2,f +14131,3068b,15,4,f +14131,3069b,4,6,f +14131,3070b,36,1,t +14131,3070b,34,1,t +14131,3070b,34,1,f +14131,3070b,36,1,f +14131,3139,0,8,f +14131,3455,15,1,f +14131,3456,15,2,f +14131,3460,15,4,f +14131,3460,2,2,f +14131,3622,1,2,f +14131,3622,15,2,f +14131,3623,15,10,f +14131,3623,0,2,f +14131,3660,1,2,f +14131,3660p02,15,2,f +14131,3665,1,2,f +14131,3666,15,4,f +14131,3676,15,2,f +14131,3710,15,3,f +14131,3710,0,1,f +14131,3795,4,1,f +14131,3795,15,3,f +14131,3795,2,4,f +14131,3830,15,2,f +14131,3830,1,2,f +14131,3831,15,2,f +14131,3831,1,2,f +14131,4289,15,1,f +14131,4477,15,12,f +14131,4599a,15,1,f +14131,4600,0,4,f +14131,4624,7,4,f +14131,4624,14,4,f +14131,6081,15,6,f +14131,6091,15,10,f +14131,6141,0,8,f +14131,6141,0,1,t +14131,6141,15,1,t +14131,6141,46,1,t +14131,6141,15,12,f +14131,6141,46,1,f +14132,2450,2,2,f +14132,3002,15,1,f +14132,3020,2,1,f +14132,3022,2,1,f +14132,3039,47,1,f +14132,3298,2,1,f +14132,3660,15,1,f +14132,3710,15,1,f +14134,2412b,4,1,f +14134,2432,1,1,f +14134,2446pb06,4,1,f +14134,2447,41,1,f +14134,2447,41,1,t +14134,30027b,73,2,f +14134,30028,0,2,f +14134,3022,1,1,f +14134,30603pb06,1,1,f +14134,3626bpb0124,14,1,f +14134,3839b,73,1,f +14134,4081b,1,2,f +14134,41854pb05,73,1,f +14134,42289,8,1,f +14134,4589,57,2,f +14134,4599a,0,2,f +14134,4599a,0,1,t +14134,6014b,73,2,f +14134,6015,0,2,f +14134,6141,4,2,f +14134,6141,4,1,t +14134,6157,0,1,f +14134,x351,0,1,f +14136,10173,1000,1,f +14136,3004,15,1,f +14136,3004,70,2,f +14136,3020,70,1,f +14136,3023,70,2,f +14136,30237b,70,1,f +14136,3062b,70,2,f +14136,3069b,70,1,f +14136,32474,0,1,f +14136,3626b,0,1,f +14136,3710,70,2,f +14136,3900,71,1,f +14136,4032a,19,1,f +14136,4150pr0001,15,1,f +14136,54200,70,4,f +14136,54200,70,1,t +14136,6141,15,1,t +14136,6141,15,1,f +14136,6141,70,6,f +14136,6141,70,1,t +14136,87087,70,2,f +14136,92338,0,1,f +14136,973c09,15,1,f +14137,3001a,1,1,f +14137,3001a,15,2,f +14137,3001a,4,1,f +14137,3003,0,1,f +14137,3003,4,1,f +14137,3004,1,4,f +14137,3004,15,6,f +14137,3004pb057,14,1,f +14137,3009,0,2,f +14137,3010,1,4,f +14137,3020,15,2,f +14137,3021,0,1,f +14137,3022,15,2,f +14137,3022,0,1,f +14137,3023,14,2,f +14137,3030,1,1,f +14137,3037,1,1,f +14137,3039,4,2,f +14137,3040a,1,8,f +14137,3040a,4,4,f +14137,3040a,15,8,f +14137,3040a,0,2,f +14137,3048a,4,1,f +14137,3049b,4,1,f +14137,3063b,0,2,f +14137,3298,15,1,f +14137,3460,14,2,f +14137,3660,15,1,f +14137,3710,14,1,f +14137,3710,15,1,f +14137,3710,0,1,f +14139,16542,14,1,f +14139,2412b,72,14,f +14139,2431,2,1,f +14139,2431,72,3,f +14139,2431,15,1,f +14139,2436,71,1,f +14139,2445,4,5,f +14139,2540,71,1,f +14139,2780,0,1,t +14139,2780,0,4,f +14139,298c02,71,2,f +14139,298c02,71,2,t +14139,3001,71,2,f +14139,3001,2,1,f +14139,3003,2,1,f +14139,3004,71,2,f +14139,3005,2,2,f +14139,3009,2,1,f +14139,3010,71,1,f +14139,30136,72,1,f +14139,3020,4,4,f +14139,3020,72,1,f +14139,3021,71,2,f +14139,3022,4,1,f +14139,3023,14,2,f +14139,3023,4,4,f +14139,3029,72,1,f +14139,3031,72,1,f +14139,3032,2,2,f +14139,3040bpr0003,71,1,f +14139,30414,14,1,f +14139,3069b,71,2,f +14139,3069b,4,1,f +14139,3069b,15,2,f +14139,3069b,72,1,f +14139,3070bpr0007,71,1,t +14139,3070bpr0007,71,1,f +14139,3180stk01,9999,1,t +14139,32028,71,2,f +14139,32028,14,2,f +14139,3245b,15,4,f +14139,3626bpr0498,14,1,f +14139,3665,72,2,f +14139,3666,72,1,f +14139,3666,15,4,f +14139,3666,2,1,f +14139,3709,0,1,f +14139,3709,15,1,f +14139,3710,71,2,f +14139,3710,72,1,f +14139,3710,4,1,f +14139,3710,15,3,f +14139,3710,2,1,f +14139,3795,15,2,f +14139,3795,2,2,f +14139,3795,71,1,f +14139,3821,2,1,f +14139,3822,2,1,f +14139,3829c01,14,1,f +14139,3899,4,1,f +14139,3937,71,1,f +14139,4032a,72,5,f +14139,4079,14,1,f +14139,4085c,71,2,f +14139,4162,71,6,f +14139,4176,40,1,f +14139,4208,0,1,f +14139,4209,71,1,f +14139,43093,1,1,f +14139,44728,71,5,f +14139,4488,0,8,f +14139,4532,71,1,f +14139,4533,15,1,f +14139,45410,2,3,f +14139,45411,15,3,f +14139,4599b,4,1,f +14139,4599b,14,2,f +14139,47457,2,1,f +14139,48183,71,2,f +14139,48336,0,2,f +14139,4864b,40,2,f +14139,50745,15,6,f +14139,52031,15,1,f +14139,52501,72,4,f +14139,54200,2,2,f +14139,54200,47,1,t +14139,54200,2,1,t +14139,54200,47,2,f +14139,54200,46,1,t +14139,54200,46,2,f +14139,59900,182,2,f +14139,6014b,15,8,f +14139,6020,0,1,f +14139,60700,0,8,f +14139,6091,72,2,f +14139,6134,0,1,f +14139,6141,182,2,t +14139,6141,182,6,f +14139,6141,36,2,t +14139,6141,36,4,f +14139,6231,71,2,f +14139,6636,72,1,f +14139,73590c03a,0,1,f +14139,85984,14,2,f +14139,86035,1,1,f +14139,87087,15,5,f +14139,87609,15,1,f +14139,970c00,15,1,f +14139,973pr1156c01,1,1,f +14141,3022,1,40,f +14141,728,7,1,f +14141,729,47,1,f +14142,2376,0,1,f +14142,2412b,15,5,f +14142,2412b,72,18,f +14142,2431,72,7,f +14142,2431,25,8,f +14142,2431,0,1,f +14142,2431,1,3,f +14142,2431,15,4,f +14142,2431,4,2,f +14142,2436,71,1,f +14142,2453a,15,1,f +14142,2454a,15,21,f +14142,2456,72,2,f +14142,2486,14,1,f +14142,2555,71,3,f +14142,2569,0,1,t +14142,2569,0,1,f +14142,2584,0,1,f +14142,2585,71,1,f +14142,2780,0,2,t +14142,2780,0,16,f +14142,2817,0,4,f +14142,2905,71,2,f +14142,2905,0,3,f +14142,2926,0,1,f +14142,298c02,71,2,f +14142,298c02,71,1,t +14142,3001,15,2,f +14142,3001,0,4,f +14142,3003,0,1,f +14142,3004,0,4,f +14142,3004,4,1,f +14142,3004,25,2,f +14142,3005,0,2,f +14142,3005,1,2,f +14142,3005,15,1,f +14142,3008,15,12,f +14142,3009,15,1,f +14142,3009,0,11,f +14142,3009,25,3,f +14142,3010,72,2,f +14142,3010,0,5,f +14142,3010,4,4,f +14142,3010,25,5,f +14142,3010,15,10,f +14142,3010,1,1,f +14142,30145,0,1,f +14142,30162,72,2,f +14142,30179,15,1,f +14142,3020,15,1,f +14142,3020,14,2,f +14142,3020,19,1,f +14142,3020,25,1,f +14142,3020,71,2,f +14142,3020,72,1,f +14142,3021,15,2,f +14142,3021,0,1,f +14142,3022,4,6,f +14142,3023,46,2,f +14142,3023,72,2,f +14142,3023,25,9,f +14142,3023,36,1,f +14142,3023,0,1,f +14142,3023,19,2,f +14142,3023,15,4,f +14142,3023,1,4,f +14142,3024,25,10,f +14142,3024,46,2,f +14142,3024,15,2,f +14142,3024,34,2,f +14142,3024,36,2,f +14142,30263,14,1,f +14142,3031,72,2,f +14142,3032,15,1,f +14142,3033,0,4,f +14142,3034,0,2,f +14142,3034,15,5,f +14142,3034,71,4,f +14142,3035,0,1,f +14142,3036,0,1,f +14142,3037,1,1,f +14142,30374,71,4,f +14142,30377,71,2,f +14142,30377,71,1,t +14142,3039,71,6,f +14142,30395,72,2,f +14142,3039pr0002,15,1,f +14142,3039pr0013,15,1,f +14142,3040b,25,4,f +14142,30414,15,1,f +14142,30414,0,1,f +14142,30414,72,2,f +14142,3062b,47,1,f +14142,3062b,4,1,f +14142,3062b,14,1,f +14142,3065,47,1,f +14142,3068b,15,6,f +14142,3068b,2,1,f +14142,3068b,14,14,f +14142,3068bpr0137,15,1,f +14142,3069b,2,7,f +14142,3069b,15,7,f +14142,3069b,4,3,f +14142,3069b,0,11,f +14142,3069b,1,2,f +14142,3069b,14,6,f +14142,3069b,33,2,f +14142,3069b,25,7,f +14142,3069bpr0030,15,1,f +14142,3070b,36,2,f +14142,3070b,36,1,t +14142,3070b,72,2,f +14142,3070b,46,1,t +14142,3070b,72,1,t +14142,3070b,15,1,t +14142,3070b,46,2,f +14142,3070b,15,2,f +14142,32000,71,4,f +14142,32002,72,2,t +14142,32002,72,3,f +14142,32009,72,1,f +14142,32013,72,2,f +14142,32028,0,2,f +14142,32028,71,4,f +14142,32028,15,2,f +14142,32062,4,2,f +14142,32123b,14,2,f +14142,32123b,14,1,t +14142,32140,4,1,f +14142,32270,0,2,f +14142,32316,71,4,f +14142,3245b,25,2,f +14142,3245b,15,15,f +14142,3460,0,10,f +14142,3622,25,4,f +14142,3622,15,4,f +14142,3622,71,3,f +14142,3623,0,1,f +14142,3626bpr0270,14,1,f +14142,3626bpr0314,14,1,f +14142,3626bpr0389,14,1,f +14142,3626bpr0411,14,1,f +14142,3647,72,2,f +14142,3660,0,4,f +14142,3660,4,2,f +14142,3665,4,2,f +14142,3666,72,5,f +14142,3666,0,2,f +14142,3666,25,27,f +14142,3666,15,4,f +14142,3666,4,5,f +14142,3673,71,2,t +14142,3673,71,3,f +14142,3679,71,1,f +14142,3680,0,1,f +14142,3700,14,10,f +14142,3700,4,2,f +14142,3705,0,1,f +14142,3709,0,1,f +14142,3710,4,4,f +14142,3710,1,5,f +14142,3710,14,1,f +14142,3710,25,8,f +14142,3710,15,1,f +14142,3710,72,2,f +14142,3710,0,6,f +14142,3713,4,1,t +14142,3713,4,2,f +14142,3749,19,6,f +14142,3794b,72,1,f +14142,3794b,2,2,f +14142,3794b,4,1,f +14142,3794b,14,1,f +14142,3795,14,2,f +14142,3795,25,3,f +14142,3795,4,1,f +14142,3795,72,4,f +14142,3795,15,1,f +14142,3829c01,14,1,f +14142,3829c01,71,2,f +14142,3832,0,1,f +14142,3832,1,1,f +14142,3857,72,2,f +14142,3865,72,1,f +14142,3894,14,1,f +14142,3899,14,1,f +14142,3901,0,1,f +14142,3937,15,1,f +14142,3941,25,1,f +14142,3941,15,3,f +14142,3960,15,1,f +14142,4006,0,1,f +14142,4032a,2,3,f +14142,4032a,4,3,f +14142,4032a,71,1,f +14142,4032a,15,3,f +14142,4032a,72,2,f +14142,4070,71,4,f +14142,4079,70,2,f +14142,4079,14,2,f +14142,4081b,0,1,f +14142,4081b,15,1,f +14142,4085c,15,12,f +14142,4085c,0,2,f +14142,4150,71,1,f +14142,4162,15,15,f +14142,4162,71,4,f +14142,41677,71,2,f +14142,4176,47,1,f +14142,4176,40,1,f +14142,4185,71,2,f +14142,4212b,72,1,f +14142,4215b,15,1,f +14142,4215b,25,1,f +14142,4216,15,26,f +14142,4217,15,2,f +14142,4218,40,10,f +14142,4219,15,1,f +14142,42446,72,2,f +14142,42610,71,4,f +14142,4274,71,4,f +14142,4274,1,1,t +14142,4274,71,1,t +14142,4274,1,1,f +14142,43093,1,1,f +14142,43337,1,4,f +14142,43337,25,2,f +14142,43722,72,1,f +14142,43723,72,1,f +14142,43857,71,1,f +14142,43898,15,1,f +14142,44294,71,1,f +14142,44728,72,4,f +14142,4485,4,1,f +14142,4485,1,1,f +14142,4488,71,8,f +14142,4488,0,2,f +14142,4519,71,3,f +14142,4532,25,2,f +14142,4532,71,2,f +14142,4533,72,4,f +14142,45677,1,1,f +14142,4599a,4,1,f +14142,4599a,0,1,f +14142,4599b,14,1,f +14142,47457,4,5,f +14142,47720,0,2,f +14142,48336,71,2,f +14142,48336,0,2,f +14142,4865a,14,2,f +14142,4865a,4,6,f +14142,50745,15,8,f +14142,50745,72,6,f +14142,51011,0,4,f +14142,52031,4,1,f +14142,52031,25,1,f +14142,52037,72,1,f +14142,52107,0,2,f +14142,52501,25,1,f +14142,53586,135,2,f +14142,54200,0,8,f +14142,54200,4,4,f +14142,54200,47,1,t +14142,54200,33,4,f +14142,54200,4,1,t +14142,54200,0,3,t +14142,54200,25,2,f +14142,54200,33,1,t +14142,54200,46,1,t +14142,54200,47,2,f +14142,54200,25,1,t +14142,54200,46,2,f +14142,55013,72,2,f +14142,55295,0,1,f +14142,55296,0,1,f +14142,55297,0,1,f +14142,55298,0,1,f +14142,55299,0,1,f +14142,55300,0,1,f +14142,56823c50,0,1,f +14142,57779,0,1,f +14142,57783,40,1,f +14142,57894,15,1,f +14142,57895,40,1,f +14142,58827,72,1,f +14142,59349,15,1,f +14142,59426,72,1,f +14142,6014b,71,4,f +14142,6014b,14,4,f +14142,6014b,15,8,f +14142,60169,72,1,f +14142,6019,72,4,f +14142,60470a,0,2,f +14142,60475a,71,4,f +14142,60478,72,4,f +14142,60594,15,2,f +14142,60614,72,4,f +14142,60616a,40,1,f +14142,60700,0,16,f +14142,6091,72,2,f +14142,6111,15,2,f +14142,6112,15,2,f +14142,6112,0,3,f +14142,6134,71,1,f +14142,6141,0,2,f +14142,6141,4,1,f +14142,6141,41,1,t +14142,6141,72,2,t +14142,6141,46,2,t +14142,6141,41,2,f +14142,6141,46,4,f +14142,6141,72,8,f +14142,6141,4,1,t +14142,6141,33,1,t +14142,6141,36,2,t +14142,6141,33,4,f +14142,6141,36,4,f +14142,6141,0,1,t +14142,61678,25,2,f +14142,61780,2,1,f +14142,62462,71,4,f +14142,62810,484,1,f +14142,63965,0,4,f +14142,64644,0,2,f +14142,6536,71,3,f +14142,6536,72,2,f +14142,6541,0,1,f +14142,6541,4,6,f +14142,6636,25,6,f +14142,6636,15,2,f +14142,86414,9999,1,t +14142,970c00,1,2,f +14142,970c00,72,1,f +14142,970c00,272,1,f +14142,973pr1170c01,4,1,f +14142,973pr1470c01,1,3,f +14143,3004,14,8,f +14143,3005,14,6,f +14143,3008,14,2,f +14143,3009,14,2,f +14143,3010,14,2,f +14144,2339,70,2,f +14144,2417,2,1,f +14144,2423,2,2,f +14144,3004,72,1,f +14144,3005,71,1,f +14144,3005,70,1,f +14144,30126,72,1,t +14144,30126,72,1,f +14144,30136,71,1,f +14144,3030,2,1,f +14144,3040b,72,2,f +14144,3069bp0e,19,1,f +14144,3070bph0,378,1,f +14144,3070bph0,378,1,t +14144,33009pb002,19,1,f +14144,3626b,25,1,f +14144,3626bph2,78,1,f +14144,3795,72,1,f +14144,3901,19,1,f +14144,3937,71,1,f +14144,3938,0,1,f +14144,40232,19,1,f +14144,4286,70,3,f +14144,43337,71,2,f +14144,48284,72,2,f +14144,50231,0,1,f +14144,6231,71,2,f +14144,6255,10,1,f +14144,970c00,72,1,f +14144,973pr0908c01,72,1,f +14144,buckbeak,71,1,f +14146,2574,4,1,f +14146,3483,0,4,f +14146,6248,4,2,f +14146,6249,0,1,f +14149,2456,1,4,f +14149,2456,14,4,f +14149,2456,4,4,f +14149,3001,15,32,f +14149,3001,1,44,f +14149,3001,14,44,f +14149,3001,2,12,f +14149,3001,4,44,f +14149,3001,0,24,f +14149,3002,4,20,f +14149,3002,1,20,f +14149,3002,14,20,f +14149,3002,0,12,f +14149,3002,15,20,f +14149,3002,2,8,f +14149,3003,4,52,f +14149,3003,0,32,f +14149,3003,14,52,f +14149,3003,15,40,f +14149,3003,2,20,f +14149,3003,1,52,f +14149,3006,14,4,f +14149,3007,1,4,f +14149,3007,14,4,f +14149,3007,4,4,f +14151,3002,0,1,f +14151,3003pe2,4,1,f +14151,3004,0,1,f +14151,3021,0,1,f +14151,3022,0,1,f +14151,3039,0,2,f +14151,3710,0,1,f +14153,12825,0,4,f +14153,12825,72,5,f +14153,13285pr02,15,1,f +14153,13285pr02,25,1,f +14153,2412b,70,1,f +14153,2432,72,1,f +14153,2460,72,2,f +14153,2540,0,2,f +14153,2654,15,2,f +14153,30031,0,1,f +14153,30033,15,2,f +14153,3021,1,3,f +14153,3021,70,2,f +14153,3022,70,1,f +14153,3023,1,3,f +14153,30259,70,2,f +14153,30361dps1,15,1,f +14153,30362,15,2,f +14153,30367cpr0006,71,1,f +14153,30408pr0003,15,2,f +14153,30480ps0,297,1,f +14153,3068b,72,1,f +14153,3069b,72,2,f +14153,3069bpr0086,71,1,f +14153,3176,72,1,f +14153,32123b,71,1,t +14153,32123b,71,1,f +14153,32198,19,1,f +14153,3626bpr0922,0,2,f +14153,3701,71,1,f +14153,3709,71,3,f +14153,3710,72,1,f +14153,3839b,72,3,f +14153,3942c,71,4,f +14153,3960,71,1,f +14153,3961,72,1,f +14153,4032a,19,5,f +14153,4032a,0,1,f +14153,4085c,0,2,f +14153,4085c,72,2,f +14153,4085c,71,2,f +14153,42446,71,2,f +14153,43093,1,2,f +14153,43722,1,1,f +14153,43723,1,1,f +14153,47543,71,2,f +14153,47974,71,2,f +14153,48092,72,8,f +14153,48336,71,1,f +14153,48336,15,1,f +14153,57899,0,1,f +14153,58247,0,1,f +14153,59900,72,6,f +14153,60474,15,1,f +14153,6091,15,2,f +14153,61252,71,6,f +14153,6141,19,1,t +14153,6141,80,1,f +14153,6141,36,2,f +14153,6141,80,1,t +14153,6141,36,1,t +14153,6141,19,2,f +14153,63868,71,2,f +14153,63965,0,2,f +14153,64567,71,4,f +14153,6587,28,1,f +14153,87083,72,1,f +14153,87580,70,1,f +14153,92946,72,2,f +14153,9490stk01,9999,1,t +14153,970c00,297,1,f +14153,970c01pr0311,15,2,f +14153,973pr1987c01,297,1,f +14153,973pr2014c01,15,2,f +14155,10201,71,6,f +14155,10314,14,9,f +14155,11477,27,4,f +14155,11477,2,4,f +14155,15068,272,1,f +14155,15070,14,1,f +14155,15462,70,2,f +14155,15573,4,2,f +14155,18671,4,1,f +14155,18980,0,1,f +14155,2412b,71,2,f +14155,2431,14,2,f +14155,2432,4,1,f +14155,2723,71,2,f +14155,2780,0,2,f +14155,2877,14,4,f +14155,298c02,4,1,f +14155,3001,14,2,f +14155,3004,15,9,f +14155,3005,15,2,f +14155,3005,14,14,f +14155,3009,14,2,f +14155,3009,15,2,f +14155,3010,14,6,f +14155,30170,72,1,f +14155,30171,70,1,f +14155,3020,322,9,f +14155,3020,19,6,f +14155,3021,72,3,f +14155,3022,15,2,f +14155,3022,19,2,f +14155,3023,14,6,f +14155,3023,272,2,f +14155,3024,0,4,f +14155,3031,70,7,f +14155,30367c,4,2,f +14155,3039,15,2,f +14155,3039,272,3,f +14155,3040b,15,2,f +14155,3040b,14,2,f +14155,30565,19,1,f +14155,30565,322,1,f +14155,3062b,72,4,f +14155,3062b,47,2,f +14155,3065,47,2,f +14155,3068b,14,4,f +14155,3068bpr0240,19,1,f +14155,3176,72,2,f +14155,32016,70,2,f +14155,32062,4,4,f +14155,32064a,14,2,f +14155,32064a,15,2,f +14155,32123b,71,2,f +14155,32125,71,2,f +14155,3245b,14,2,f +14155,3297,272,3,f +14155,3298,272,2,f +14155,3460,70,4,f +14155,3623,70,2,f +14155,3626cpr2132,14,1,f +14155,3660,15,2,f +14155,3666,14,6,f +14155,3675,272,2,f +14155,3700,72,4,f +14155,3701,19,2,f +14155,3701,14,1,f +14155,3710,71,5,f +14155,3795,15,2,f +14155,3837,72,1,f +14155,3841,72,1,f +14155,3899,4,1,f +14155,3957a,71,4,f +14155,41531,272,2,f +14155,4162,15,2,f +14155,41749,272,1,f +14155,41750,272,1,f +14155,41767,15,1,f +14155,41768,15,1,f +14155,42023,14,2,f +14155,4287,14,2,f +14155,43093,1,2,f +14155,43722,15,1,f +14155,43723,15,1,f +14155,4477,19,2,f +14155,4519,71,2,f +14155,4733,27,2,f +14155,47905,4,1,f +14155,48336,0,3,f +14155,49668,1,2,f +14155,51739,70,1,f +14155,51739,15,1,f +14155,54200,182,2,f +14155,54200,4,1,f +14155,54200,15,8,f +14155,59443,70,2,f +14155,59443,71,2,f +14155,6005,2,4,f +14155,60470a,71,4,f +14155,60478,14,10,f +14155,60479,15,4,f +14155,60481,15,2,f +14155,60897,72,8,f +14155,6091,27,4,f +14155,6141,72,7,f +14155,6141,34,3,f +14155,6141,36,3,f +14155,62360,47,1,f +14155,62810,308,1,f +14155,63864,0,6,f +14155,63868,28,2,f +14155,64648,25,1,f +14155,6541,14,6,f +14155,6558,1,3,f +14155,85984,14,5,f +14155,85984pr0143,72,1,f +14155,87087,0,2,f +14155,88072,19,2,f +14155,92280,0,4,f +14155,92593,0,2,f +14155,93606,15,2,f +14155,93606,14,2,f +14155,95228,34,1,f +14155,970c00,379,1,f +14155,973pr3425c01,4,1,f +14155,98138,182,2,f +14155,99206,4,2,f +14155,99780,0,2,f +14155,99781,15,4,f +14158,2456,4,1,f +14158,2456,14,1,f +14158,2456,1,2,f +14158,2456,15,2,f +14158,3001,14,10,f +14158,3001,2,5,f +14158,3001,0,5,f +14158,3001,27,4,f +14158,3001,4,10,f +14158,3001,1,10,f +14158,3001,15,10,f +14158,3001,25,4,f +14158,3002,2,3,f +14158,3002,0,3,f +14158,3002,4,6,f +14158,3002,1,6,f +14158,3002,15,6,f +14158,3002,14,6,f +14158,3003,14,30,f +14158,3003,2,14,f +14158,3003,1,30,f +14158,3003,27,12,f +14158,3003,4,30,f +14158,3003,25,12,f +14158,3003,0,14,f +14158,3003,15,30,f +14158,3004,0,10,f +14158,3004,2,10,f +14158,3004,4,20,f +14158,3004,15,20,f +14158,3004,1,20,f +14158,3004,14,20,f +14158,3004,27,20,f +14158,3004,25,20,f +14158,3004pr0001,14,2,f +14158,3005,15,10,f +14158,3005,2,6,f +14158,3005,25,8,f +14158,3005,1,10,f +14158,3005,27,8,f +14158,3005,4,10,f +14158,3005,0,6,f +14158,3005,14,10,f +14158,3005pr0003,15,4,f +14158,3005pr0003,14,4,f +14158,3007,14,1,f +14158,3007,1,1,f +14158,3007,4,1,f +14158,3007,15,1,f +14158,3008,1,2,f +14158,3008,14,1,f +14158,3008,4,1,f +14158,3008,15,2,f +14158,3009,4,2,f +14158,3009,1,3,f +14158,3009,14,2,f +14158,3009,15,3,f +14158,3010,14,5,f +14158,3010,4,5,f +14158,3010,25,2,f +14158,3010,15,5,f +14158,3010,1,5,f +14158,3010,0,4,f +14158,3010,2,4,f +14158,3020,1,2,f +14158,3020,4,2,f +14158,3021,15,2,f +14158,3021,0,2,f +14158,3021,2,2,f +14158,3022,4,4,f +14158,3022,0,4,f +14158,3022,15,4,f +14158,3023,4,4,f +14158,3023,0,4,f +14158,3023,14,4,f +14158,3023,1,4,f +14158,3037,0,4,f +14158,3037,4,2,f +14158,3039,14,4,f +14158,3039,0,8,f +14158,3039,4,8,f +14158,3039,15,2,f +14158,3040b,4,4,f +14158,3040b,1,4,f +14158,3040b,14,6,f +14158,3040b,15,2,f +14158,3040b,0,6,f +14158,3062b,15,4,f +14158,3062b,14,4,f +14158,3062b,0,4,f +14158,3622,2,2,f +14158,3622,4,4,f +14158,3622,14,4,f +14158,3622,15,4,f +14158,3622,0,2,f +14158,3622,1,4,f +14158,3660,4,4,f +14158,3665,1,2,f +14158,3665,4,2,f +14158,3665,14,4,f +14158,3666,4,2,f +14158,3666,1,2,f +14158,3710,14,2,f +14158,3710,15,2,f +14158,3710,0,2,f +14158,3710,4,2,f +14158,3794b,14,4,f +14158,3795,4,2,f +14158,4070,15,4,f +14158,54200,0,1,t +14158,54200,14,4,f +14158,54200,0,4,f +14158,54200,14,1,t +14158,6141,27,1,t +14158,6141,27,4,f +14159,11214,72,3,f +14159,11946,15,3,f +14159,11947,15,3,f +14159,18651,0,1,f +14159,2736,71,2,f +14159,2780,0,1,t +14159,2780,0,18,f +14159,32039,14,2,f +14159,32054,0,2,f +14159,32056,71,2,f +14159,32062,4,4,f +14159,32073,14,4,f +14159,32123b,14,1,t +14159,32123b,14,4,f +14159,32140,1,2,f +14159,32270,0,1,f +14159,32278,14,2,f +14159,32293,0,1,f +14159,32316,14,2,f +14159,32525,14,2,f +14159,32526,14,2,f +14159,32557,0,1,f +14159,32580,0,2,f +14159,33299a,71,2,f +14159,3705,0,2,f +14159,3749,19,1,f +14159,41239,15,1,f +14159,42003,14,2,f +14159,42610,71,3,f +14159,42670,9999,1,f +14159,4274,1,5,f +14159,4274,1,1,t +14159,43093,1,1,f +14159,43857,14,1,f +14159,4519,71,3,f +14159,59443,71,2,f +14159,60483,71,2,f +14159,61800,15,1,f +14159,63869,0,1,f +14159,64391,15,1,f +14159,64392,15,1,f +14159,64682,15,1,f +14159,64683,15,1,f +14159,6536,0,4,f +14159,6558,1,7,f +14159,6632,0,2,f +14159,87082,0,2,f +14159,92409,0,3,f +14160,1468stk01,9999,1,t +14160,3004,4,1,f +14160,3005,14,2,f +14160,3010,14,1,f +14160,3010,4,2,f +14160,3039,15,4,f +14160,3040b,15,2,f +14160,3137c01,0,2,f +14160,3622,4,2,f +14160,3624,4,1,f +14160,3626apr0001,14,1,f +14160,3633,14,1,f +14160,3641,0,4,f +14160,3660,14,4,f +14160,3665,14,2,f +14160,3710,15,1,f +14160,3710,14,4,f +14160,3823,47,1,f +14160,3832,14,2,f +14160,970c00,4,1,f +14160,973p60c01,15,1,f +14161,2343,297,1,f +14161,2412b,25,3,f +14161,2419,1,1,f +14161,2431,1,1,f +14161,3020,2,1,f +14161,3020,72,1,f +14161,3020,27,1,f +14161,3021,25,1,f +14161,3021,72,1,f +14161,3022,4,2,f +14161,3022,1,2,f +14161,3023,25,2,f +14161,3023,27,2,f +14161,3023,72,5,f +14161,3023,73,4,f +14161,3045,2,2,f +14161,3068b,15,1,f +14161,3068b,4,2,f +14161,3068b,0,1,f +14161,3068b,2,1,f +14161,3068b,1,1,f +14161,3068b,272,1,f +14161,3069b,272,2,f +14161,3069bpr0086,71,1,f +14161,3069bpr0101,71,1,f +14161,3070b,2,1,t +14161,3070b,1,1,f +14161,3070b,4,1,f +14161,3070b,15,1,f +14161,3070b,27,2,f +14161,3070b,4,1,t +14161,3070b,15,1,t +14161,3070b,2,1,f +14161,3070b,27,1,t +14161,3070b,1,1,t +14161,3070bpr0007,71,1,f +14161,3070bpr0007,71,1,t +14161,3666,1,1,f +14161,3710,1,3,f +14161,3710,4,1,f +14161,3794b,320,1,f +14161,4006,0,1,f +14161,4085c,72,14,f +14161,4085c,73,4,f +14161,4085c,4,2,f +14161,4150,27,1,f +14161,4286,2,2,f +14161,43710,272,1,f +14161,43711,272,1,f +14161,4589,297,1,f +14161,47456,1,1,f +14161,47457,4,1,f +14161,47458,4,1,f +14161,50950,320,2,f +14161,54200,288,1,t +14161,54200,288,4,f +14161,60478,72,12,f +14161,6091,4,2,f +14161,6141,182,4,f +14161,6141,33,1,t +14161,6141,33,4,f +14161,6141,182,1,t +14161,64776pat0001,0,1,f +14161,85861,15,6,f +14161,85861,15,1,t +14165,3020,4,1,f +14165,3710,29,2,f +14165,3710,4,2,f +14165,3795,70,2,f +14165,64644,297,4,f +14166,32174,0,2,f +14166,3706,0,1,f +14166,41668,0,3,f +14166,41669,135,2,f +14166,4519,71,1,f +14166,4519,71,1,t +14166,47296,72,2,f +14166,47300,72,2,f +14166,47302,0,1,f +14166,47312,72,1,f +14166,48253,179,2,f +14166,50923,72,4,f +14167,2420,70,2,f +14167,3002,70,1,f +14167,3004,70,3,f +14167,3023,4,1,f +14167,3023,4,1,t +14167,3039,70,1,f +14167,3660,70,1,f +14168,10888,71,1,f +14168,11249,297,1,f +14168,13358,0,1,f +14168,13523,15,1,f +14168,13525,29,1,f +14168,13880,484,1,f +14168,14222pr0002,297,1,f +14168,14294,4,1,f +14168,16685,14,1,f +14168,16686,70,1,f +14168,21151,322,1,f +14168,3011,14,1,f +14168,31059,10,1,f +14168,3437,484,2,f +14168,3437,27,2,f +14168,40666,14,2,f +14168,98218,322,4,f +14168,98223,27,1,f +14168,98225,484,1,f +14172,3009,2,50,f +14173,2431,0,1,f +14173,2432,0,1,f +14173,2441,0,1,f +14173,30027a,14,4,f +14173,30028,0,4,f +14173,3021,14,1,f +14173,3022,14,1,f +14173,3298p71,0,1,f +14173,3623,14,2,f +14173,3710,14,1,f +14173,3829c01,14,1,f +14173,3839b,7,1,f +14173,3937,0,1,f +14173,3938,14,1,f +14173,4286,0,2,f +14173,4589,7,2,f +14175,2412b,25,2,f +14175,2419,378,1,f +14175,2540,8,1,f +14175,2654,0,1,f +14175,2877,8,1,f +14175,30375,1,1,f +14175,30377,3,1,t +14175,30377,3,2,f +14175,30383,0,2,f +14175,30407,7,2,f +14175,30529p01,3,1,f +14175,30530,25,1,f +14175,3069bp55,8,1,f +14175,3795,2,1,f +14175,3795,8,1,f +14175,3937,7,1,f +14175,3938,0,1,f +14175,3960px3,7,1,f +14176,10509pr0001,70,1,f +14176,11090,72,2,f +14176,11477,308,5,f +14176,13564,15,2,f +14176,13564,15,1,t +14176,13565,70,1,f +14176,15424pr0001,0,1,f +14176,15439,0,1,t +14176,15439,0,1,f +14176,15443,70,1,f +14176,15444,4,1,f +14176,15445,72,1,f +14176,2412b,70,3,f +14176,2489,308,1,f +14176,30132,72,2,f +14176,30132,72,1,t +14176,3020,19,1,f +14176,3020,70,2,f +14176,3022,72,3,f +14176,3023,2,2,f +14176,3023,70,1,f +14176,3023,19,1,f +14176,30374,70,2,f +14176,3062b,71,4,f +14176,3062b,2,4,f +14176,3068b,19,2,f +14176,3069b,70,4,f +14176,3176,72,2,f +14176,3626cpr1325,14,1,f +14176,3626cpr1360,179,1,f +14176,3626cpr1361,179,1,f +14176,3700,70,2,f +14176,3794b,0,1,f +14176,4032a,484,1,f +14176,4070,70,2,f +14176,4081b,0,1,f +14176,42446,71,1,t +14176,42446,71,1,f +14176,4274,1,1,f +14176,4274,1,1,t +14176,44676,72,2,f +14176,4491b,72,1,f +14176,4733,71,1,f +14176,48336,297,2,f +14176,48729b,72,1,t +14176,48729b,72,1,f +14176,50304,28,1,f +14176,50305,28,1,f +14176,57467,179,1,f +14176,57467,179,1,t +14176,60470a,71,2,f +14176,60478,71,2,f +14176,6141,179,5,f +14176,6141,179,1,t +14176,6141,27,1,t +14176,6141,27,2,f +14176,63868,72,4,f +14176,63965,70,5,f +14176,92338,72,1,f +14176,95342,179,1,f +14176,970c00pr0605,25,1,f +14176,970c11pr0606,0,1,f +14176,970c88pr0607,70,1,f +14176,973pr2538c01,25,1,f +14176,973pr2539c01,0,1,f +14176,973pr2540c01,70,1,f +14176,99207,71,1,f +14176,99780,0,2,f +14177,3626apr0001,14,6,f +14177,3844,0,1,f +14177,3844,8,1,f +14177,3846p45,7,1,f +14177,3846p46,7,1,f +14177,3846p4g,7,1,f +14177,3846p4h,7,1,f +14177,3847a,8,1,f +14177,3848,6,1,f +14177,3848,0,1,f +14177,3896,8,2,f +14177,3896,0,2,f +14177,4497,6,1,f +14177,4498,6,2,f +14177,4499,6,2,f +14177,970c00,0,1,f +14177,970x021,0,2,f +14177,970x026,1,3,f +14177,973p42c01,4,1,f +14177,973p43c01,1,3,f +14177,973px138c01,4,2,f +14179,13247,484,1,f +14179,16434,4,1,f +14179,2300,14,1,f +14179,31333,1,1,f +14179,3437,25,3,f +14179,3437,4,1,f +14179,3437,14,6,f +14179,3437,1,2,f +14179,3437,10,1,f +14179,40666,27,3,f +14179,40666,4,2,f +14179,4066pb324,70,1,f +14179,4066pb387,15,1,f +14179,4199,4,1,f +14179,54530,14,1,f +14179,61258,5,1,f +14179,61281,191,1,f +14179,63718,4,1,f +14179,75113pr0008,212,1,f +14179,76317,70,1,f +14179,76371,14,1,f +14179,87084,10,2,f +14179,88540,19,1,f +14179,90458,71,1,f +14179,92938,1,1,f +14179,95821,73,1,f +14181,redbox01,89,1,f +14182,132a,0,4,f +14182,236ac01,1,2,f +14182,2913cx1,1,1,f +14182,299,9999,1,t +14182,3058b,7,1,f +14182,433c01,0,2,f +14182,458,7,4,f +14182,7039,4,4,f +14182,bb93,1,1,f +14182,wheel2a,4,4,f +14182,x466,15,1,f +14182,x550a,0,1,f +14183,3001,14,22,f +14183,3001,4,22,f +14183,3001,1,20,f +14183,3001,15,22,f +14183,3001,0,14,f +14183,3001pr1,14,2,f +14183,3002,14,10,f +14183,3002,1,10,f +14183,3002,15,10,f +14183,3002,0,6,f +14183,3002,4,10,f +14183,3003,15,16,f +14183,3003,0,10,f +14183,3003,14,16,f +14183,3003,1,16,f +14183,3003,47,4,f +14183,3003,4,16,f +14183,3003pe1,14,4,f +14183,3006,4,2,f +14183,3007,4,2,f +14183,3007,1,2,f +14183,3137c01,0,2,f +14183,3185,15,10,f +14183,3471,2,2,f +14183,3483,0,8,f +14183,3596pb03,15,2,f +14183,3641,0,4,f +14183,4130,14,2,f +14183,4131,4,2,f +14183,4132,14,4,f +14183,4133,4,4,f +14183,4180c02,0,4,f +14183,4201,2,2,f +14183,4202,14,1,f +14183,4202,4,1,f +14183,4204,2,1,f +14183,4594,47,4,f +14183,4727,2,4,f +14183,4728,4,1,f +14183,4728,15,1,f +14183,4728,14,1,f +14183,4728,1,1,f +14183,4730,4,2,f +14183,4743,1,2,f +14183,4743,4,2,f +14183,4744,14,2,f +14183,4744,4,2,f +14183,4745,14,2,f +14183,4747,4,1,f +14183,4748,4,1,f +14183,bfp001,9999,2,f +14183,bfp002,9999,2,f +14184,3020,4,4,f +14184,3021,4,4,f +14184,3022,4,4,f +14184,3023,4,4,f +14184,3029,4,2,f +14184,3031,4,2,f +14184,3032,4,2,f +14184,3034,4,2,f +14184,3035,4,2,f +14184,3036,4,2,f +14184,3460,4,2,f +14184,3623,4,2,f +14184,3666,4,2,f +14184,3710,4,2,f +14184,3795,4,2,f +14184,3832,4,2,f +14184,4477,4,2,f +14186,2346,0,4,t +14186,2431,1,2,f +14186,2444,1,4,f +14186,2588,21,1,f +14186,2654,0,2,f +14186,2780,0,12,f +14186,2815,0,2,t +14186,2825,7,2,f +14186,2854,7,2,t +14186,2982c01,1,1,f +14186,2983,7,2,f +14186,3001,4,2,f +14186,3004,4,4,f +14186,3023,1,6,f +14186,3040b,4,4,f +14186,3068b,4,1,f +14186,3068b,14,1,f +14186,3068b,1,1,f +14186,3068b,15,1,f +14186,3069b,14,1,f +14186,3069b,15,1,f +14186,3069b,1,1,f +14186,3069b,4,1,f +14186,32002,8,1,t +14186,32002,8,8,f +14186,32013,1,2,t +14186,32017,7,8,f +14186,32028,7,4,t +14186,32039,7,2,f +14186,32062,0,4,f +14186,32064b,2,4,f +14186,32073,7,2,f +14186,32123b,7,8,f +14186,32123b,7,1,t +14186,32124,1,2,f +14186,32125,1,2,f +14186,3460,1,2,f +14186,3482,14,2,f +14186,3482,14,8,t +14186,3483,0,2,t +14186,3634,0,2,f +14186,3647,7,3,f +14186,3648a,7,2,f +14186,3649,7,1,f +14186,3650c,7,2,f +14186,3673,7,12,f +14186,3700,4,4,f +14186,3701,4,4,f +14186,3702,4,4,f +14186,3703,4,2,f +14186,3705,0,2,f +14186,3706,0,2,f +14186,3707,0,2,f +14186,3708,0,2,f +14186,3709,1,4,f +14186,3710,1,2,f +14186,3713,7,20,f +14186,3713,7,1,t +14186,3737,0,3,f +14186,3738,1,4,f +14186,3743,7,4,f +14186,3749,19,8,f +14186,3794a,1,4,f +14186,3795,1,2,f +14186,3857,2,1,f +14186,3894,4,4,f +14186,3895,4,4,f +14186,3941,4,2,f +14186,3956,1,2,f +14186,4019,7,2,t +14186,4032a,15,2,t +14186,4032a,0,2,t +14186,41752,8,1,t +14186,4185,7,2,f +14186,4274,7,1,t +14186,4274,7,4,f +14186,43362c01,7,2,f +14186,4444p08,0,1,f +14186,4477,1,4,f +14186,4519,7,2,f +14186,4716,0,2,f +14186,5306bc015,0,2,f +14186,5306bc020,0,2,f +14186,5306bc036,0,2,f +14186,6035,15,1,f +14186,6536,7,3,f +14186,6538b,7,2,f +14186,6553,7,2,t +14186,6575,8,2,f +14186,6587,8,2,f +14186,6588,14,1,f +14186,6589,7,4,t +14186,6632,7,2,t +14186,71082,47,1,f +14186,71509,0,4,f +14186,85543,15,2,f +14186,85545,1,1,f +14186,879,7,2,f +14186,997251,47,1,f +14186,bin01,0,1,f +14187,2335p30,15,1,f +14187,2339,15,2,f +14187,2343,14,2,f +14187,2357,0,1,f +14187,2357,15,3,f +14187,2453a,15,1,f +14187,2454a,15,2,f +14187,2454a,14,1,f +14187,2462,15,4,f +14187,2489,6,1,f +14187,2518,2,4,f +14187,2524,6,2,f +14187,2525p32,15,1,f +14187,2526,14,1,f +14187,2526,6,1,f +14187,2526,4,2,f +14187,2527,4,1,f +14187,2528pb01,0,1,f +14187,2529,15,2,f +14187,2530,8,3,f +14187,2536,6,6,f +14187,2542,4,2,f +14187,2543,4,1,f +14187,2544,0,1,f +14187,2545,0,2,f +14187,2546p01,4,1,f +14187,2551,6,1,f +14187,2554,6,2,f +14187,2561,6,3,f +14187,2562,6,1,f +14187,2563,6,1,f +14187,2566,2,1,f +14187,3001,14,2,f +14187,3004,14,3,f +14187,3004,0,6,f +14187,3004,15,16,f +14187,3005,15,7,f +14187,3005,14,4,f +14187,3008,0,2,f +14187,3009,15,1,f +14187,3009,0,1,f +14187,3010,14,2,f +14187,3010,15,4,f +14187,3020,0,2,f +14187,3023,0,4,f +14187,3024,0,1,f +14187,3024,15,3,f +14187,3026,0,1,f +14187,3027,0,1,f +14187,3028,7,1,f +14187,3032,7,1,f +14187,3062b,2,1,f +14187,3062b,0,6,f +14187,3185,15,2,f +14187,3307,14,1,f +14187,3307,15,1,f +14187,3308,15,1,f +14187,3455,15,3,f +14187,3581,15,2,f +14187,3622,15,3,f +14187,3626apb05,14,1,f +14187,3626apb06,14,1,f +14187,3626apr0001,14,3,f +14187,3679,7,1,f +14187,3680,0,1,f +14187,3710,15,3,f +14187,3849,8,1,f +14187,3853,14,1,f +14187,3857,1,1,f +14187,3957a,0,5,f +14187,3959,0,1,f +14187,4032a,2,1,f +14187,4070,15,1,f +14187,4071,15,1,f +14187,4085c,15,3,f +14187,4286,4,2,f +14187,4286,1,2,f +14187,4318,0,1,f +14187,4319,0,1,f +14187,4460a,15,1,f +14187,4477,7,1,f +14187,4589,46,1,f +14187,4600,0,2,f +14187,4611,8,1,f +14187,4624,6,4,f +14187,4864a,4,1,f +14187,84943,8,1,f +14187,970c00,4,1,f +14187,970c00,15,3,f +14187,970d01,0,1,f +14187,973p31c01,14,1,f +14187,973p36c01,0,1,f +14187,973pb0204c01,15,3,f +14187,sailbb24,15,1,f +14188,3626bpr0946,14,1,f +14188,88646,0,1,f +14188,90391pr02,297,1,f +14188,91884pr0004,297,1,f +14188,970c00pr0318,14,1,f +14188,973pr0804c01,14,1,f +14188,99243pr0001,297,1,f +14189,ftbirchh,2,1,f +14189,ftbushh,2,1,f +14189,ftcyph,2,1,f +14189,ftfruith,2,1,f +14189,ftoakh,2,1,f +14189,ftpineh,2,1,f +14190,3001,4,3,f +14190,3003,4,2,f +14190,3004,1,1,f +14190,3004,4,3,f +14190,3005pe1,14,2,f +14190,3034,4,2,f +14190,3039,4,2,f +14190,3626bpr0001,14,1,f +14190,3660,1,2,f +14190,3795,4,2,f +14190,3839b,15,1,f +14190,3957a,15,2,f +14190,4286,1,2,f +14190,4287,14,2,f +14190,4485,15,1,f +14190,4495b,2,1,f +14190,6215,1,2,f +14190,970c00,15,1,f +14190,973c01,2,1,f +14191,14226c11,0,1,f +14191,2412b,71,2,f +14191,2412b,0,2,f +14191,2412b,80,2,f +14191,2420,72,2,f +14191,2431,4,2,f +14191,2432,4,2,f +14191,2444,0,1,f +14191,2446,4,3,f +14191,2447,40,1,f +14191,2447,40,1,t +14191,2495,4,1,f +14191,2496,0,1,f +14191,3001,15,1,f +14191,3002,72,1,f +14191,30029,0,1,f +14191,3003,72,1,f +14191,30038,4,1,f +14191,3004,4,1,f +14191,3005,72,1,f +14191,3009,15,1,f +14191,3010,15,1,f +14191,3010,4,1,f +14191,3020,0,2,f +14191,3020,4,5,f +14191,3021,15,1,f +14191,3021,72,1,f +14191,3022,4,1,f +14191,3023,15,3,f +14191,3023,0,3,f +14191,3023,4,2,f +14191,30237a,15,1,f +14191,3024,4,2,f +14191,30285,71,5,f +14191,3032,15,1,f +14191,3032,4,1,f +14191,3032,72,1,f +14191,30367b,4,1,f +14191,30367b,71,1,f +14191,3039pr0001,15,1,f +14191,3040b,4,1,f +14191,30414,72,1,f +14191,30602,4,4,f +14191,3062b,4,2,f +14191,30648,0,5,f +14191,3068b,15,2,f +14191,3069b,15,1,f +14191,3069bpr0030,15,1,f +14191,3070bpr0007,71,1,t +14191,3070bpr0007,71,3,f +14191,32530,4,1,f +14191,3622,72,1,f +14191,3623,71,2,f +14191,3626bpr0126,14,1,f +14191,3626bpr0369,15,1,f +14191,3626bpr0370,4,3,f +14191,3660,4,1,f +14191,3666,4,1,f +14191,3710,4,2,f +14191,3710,0,1,f +14191,3794a,4,2,f +14191,3795,4,2,f +14191,3795,72,1,f +14191,3795,15,1,f +14191,3795,0,2,f +14191,3829c01,15,1,f +14191,3941,4,2,f +14191,3941,14,2,f +14191,3962b,0,1,f +14191,4032b,0,1,f +14191,4032b,71,1,f +14191,4070,15,2,f +14191,4085c,0,1,f +14191,4085c,15,2,f +14191,42446,72,2,f +14191,4349,0,2,f +14191,43719,4,2,f +14191,43722,4,1,f +14191,43723,4,1,f +14191,44126,4,1,f +14191,4449,0,1,f +14191,44728,4,2,f +14191,4485,4,1,f +14191,4589,71,2,f +14191,4599a,0,2,f +14191,4599a,71,3,f +14191,4600,71,4,f +14191,4624,71,8,f +14191,47720,0,2,f +14191,4864b,0,2,f +14191,4865a,4,4,f +14191,50373,4,1,f +14191,52107,0,1,f +14191,6019,0,2,f +14191,6141,14,2,f +14191,6141,36,1,f +14191,6141,14,1,t +14191,6141,71,1,t +14191,6141,36,1,t +14191,6141,0,2,f +14191,6141,1,1,t +14191,6141,1,1,f +14191,6141,0,1,t +14191,6141,71,3,f +14191,6187,0,2,f +14191,6541,72,1,f +14191,6636,15,2,f +14191,73590c02a,0,1,f +14191,758c02,71,1,f +14191,769,334,1,f +14191,8673stk01,9999,1,t +14191,970c00,4,5,f +14191,973c02,4,1,f +14191,973c31,4,4,f +14192,2357,1,36,f +14192,2420,1,32,f +14192,3001,1,4,f +14192,3001,85,8,f +14192,3004,1,6,f +14192,3005,85,8,f +14192,3005,1,4,f +14192,3020,14,8,f +14192,3022,1,18,f +14192,3023,1,14,f +14192,3069b,1,16,f +14192,3666,14,8,f +14192,3710,1,4,f +14192,3710,14,8,f +14192,3937,1,2,f +14192,3938,1,2,f +14194,11211,4,2,f +14194,11303,1,1,f +14194,12825,0,2,f +14194,12825,71,2,f +14194,13965,15,2,f +14194,14045,0,1,f +14194,14045,0,1,t +14194,2412b,71,15,f +14194,2412b,0,1,f +14194,2420,2,2,f +14194,2431,2,1,f +14194,2431,0,1,f +14194,2432,14,2,f +14194,2454a,15,1,f +14194,2495,4,1,f +14194,2496,0,1,f +14194,2540,72,2,f +14194,2877,71,5,f +14194,298c02,71,2,f +14194,3001,71,3,f +14194,30157,71,2,f +14194,3020,1,2,f +14194,3020,15,1,f +14194,3020,72,2,f +14194,3021,2,5,f +14194,3021,71,1,f +14194,3022,14,3,f +14194,3022,0,1,f +14194,3023,25,3,f +14194,3023,2,2,f +14194,30236,15,1,f +14194,3024,36,2,f +14194,3024,182,6,f +14194,3031,0,1,f +14194,3032,19,2,f +14194,3032,15,1,f +14194,3034,72,2,f +14194,3034,14,1,f +14194,30367c,4,4,f +14194,30383,15,2,f +14194,3040b,0,4,f +14194,30414,14,2,f +14194,30663,71,4,f +14194,3068b,71,3,f +14194,3069b,15,3,f +14194,3069b,72,2,f +14194,3245c,15,1,f +14194,32530,72,1,f +14194,3626bpr0389,14,1,f +14194,3626cpr0892,14,1,f +14194,3626cpr0955,14,1,f +14194,3660,2,2,f +14194,3666,2,6,f +14194,3666,72,2,f +14194,3710,0,6,f +14194,3710,15,2,f +14194,3710,25,1,f +14194,3710,19,4,f +14194,3794b,4,2,f +14194,3795,0,5,f +14194,3795,15,1,f +14194,3821,2,1,f +14194,3822,2,1,f +14194,3829c01,71,1,f +14194,3829c01,4,1,f +14194,3899,14,1,f +14194,3937,71,4,f +14194,3938,0,2,f +14194,3958,72,1,f +14194,3962b,0,1,f +14194,4032a,71,2,f +14194,4032a,4,4,f +14194,4085c,72,2,f +14194,4150,71,2,f +14194,4162,72,3,f +14194,4176,40,1,f +14194,42610,71,4,f +14194,4274,1,2,f +14194,4274,1,1,t +14194,44301a,0,2,f +14194,44302a,0,2,f +14194,4477,2,1,f +14194,4488,0,6,f +14194,4518bc02,0,1,f +14194,4623,0,2,f +14194,47457,71,1,f +14194,47998,15,2,f +14194,48336,15,4,f +14194,50745,72,6,f +14194,51011,0,4,f +14194,52031,2,1,f +14194,54200,47,2,f +14194,54200,72,2,f +14194,54200,72,1,t +14194,54200,47,1,t +14194,58176,182,3,f +14194,59349,15,6,f +14194,6014b,71,6,f +14194,60478,72,2,f +14194,60581,0,1,f +14194,61184,71,2,f +14194,6134,0,2,f +14194,6141,182,1,t +14194,6141,36,2,f +14194,6141,182,2,f +14194,6141,46,1,t +14194,6141,36,1,t +14194,6141,46,3,f +14194,6187,0,4,f +14194,6192,71,1,f +14194,6205,72,1,f +14194,63864,72,4,f +14194,64450,0,1,f +14194,85543,15,1,f +14194,85984,0,2,f +14194,85984,2,2,f +14194,86035,4,2,f +14194,87079,0,1,f +14194,87087,0,2,f +14194,87544,2,2,f +14194,87580,15,3,f +14194,87609,2,2,f +14194,87617,0,2,f +14194,87697,0,6,f +14194,88930,2,1,f +14194,91988,72,3,f +14194,92280,71,2,f +14194,92593,72,9,f +14194,93273,72,2,f +14194,93273,25,5,f +14194,93274,72,3,f +14194,970c00,1,3,f +14194,973pr1244c01,73,2,f +14194,973pr1470c01,1,1,f +14194,98138,71,2,t +14194,98138,71,6,f +14194,98835,25,1,f +14194,99781,0,2,f +14195,2780,0,2,f +14195,32174,0,1,f +14195,32174,143,4,f +14195,32271,0,1,f +14195,4274,1,1,t +14195,4274,1,4,f +14195,43093,1,2,f +14195,4519,71,6,f +14195,47330,0,2,f +14195,48729a,0,2,f +14195,50858,272,2,f +14195,50898,143,4,f +14195,50923,72,1,f +14195,53451,4,9,f +14195,53451,4,1,t +14195,53562pat0003,272,2,f +14195,53563,272,2,f +14195,53574,272,2,f +14195,57551pat0001,143,1,f +14195,57554,135,2,f +14195,57555,46,2,f +14195,57556,135,1,f +14195,57560pat0001,143,3,f +14195,57566,135,2,f +14195,58176,36,2,f +14195,58177,0,1,f +14195,6558,0,2,f +14196,11214,72,1,f +14196,11833,0,1,f +14196,15573,72,2,f +14196,15706,0,4,f +14196,2357,72,2,f +14196,23794,28,1,f +14196,2412b,72,7,f +14196,2419,71,3,f +14196,2453b,72,3,f +14196,2454a,72,3,f +14196,24961,78,1,f +14196,2780,0,1,t +14196,2780,0,4,f +14196,2877,72,1,f +14196,3001,0,1,f +14196,3002,71,2,f +14196,3003,72,3,f +14196,3004,71,4,f +14196,3005,71,6,f +14196,3009,71,4,f +14196,30134,0,2,f +14196,3020,0,3,f +14196,3021,72,1,f +14196,3022,72,2,f +14196,3022,25,1,f +14196,3023,71,11,f +14196,3023,47,5,f +14196,3031,72,3,f +14196,3032,320,1,f +14196,3034,72,2,f +14196,30526,71,2,f +14196,3062b,0,2,f +14196,3068bpr0166,71,1,f +14196,3069b,182,14,f +14196,32059,0,1,f +14196,32062,4,1,f +14196,32073,14,1,f +14196,32123b,71,4,f +14196,32123b,71,1,t +14196,3245b,71,2,f +14196,32474,0,1,f +14196,32526,72,3,f +14196,32530,0,1,f +14196,3623,0,3,f +14196,3626cpr1149,78,1,f +14196,3626cpr1531,78,1,f +14196,3659,19,1,f +14196,3700,72,5,f +14196,3701,72,1,f +14196,3710,25,2,f +14196,3710,72,4,f +14196,3737,0,1,f +14196,3795,25,2,f +14196,3895,0,2,f +14196,3901,70,1,f +14196,3937,71,1,f +14196,3941,71,1,f +14196,3957b,0,2,f +14196,4032a,0,3,f +14196,41677,71,2,f +14196,41879a,272,1,f +14196,43093,1,2,f +14196,43719,72,3,f +14196,43857,4,1,f +14196,4519,71,1,f +14196,48336,0,1,f +14196,53585,0,2,f +14196,59349,71,1,f +14196,59443,71,1,f +14196,59900,0,2,f +14196,60474,71,1,f +14196,60483,71,1,f +14196,60897,71,2,f +14196,61190c,72,4,t +14196,61252,25,2,f +14196,6134,0,1,f +14196,6141,41,1,t +14196,6141,41,2,f +14196,6141,182,9,f +14196,6141,182,1,t +14196,6180,71,1,f +14196,61903,71,1,f +14196,63586,72,3,t +14196,63586,72,1,f +14196,64567,0,1,f +14196,64567,0,1,t +14196,64802,378,1,f +14196,6636,71,3,f +14196,73983,0,2,f +14196,85984,72,1,f +14196,87079,71,3,f +14196,87544,40,1,f +14196,87561pr01,148,1,f +14196,87610pr0001a,378,1,f +14196,88292,0,4,f +14196,92280,0,2,f +14196,92738,0,1,f +14196,92907,71,1,f +14196,93273,0,1,f +14196,970c00,308,1,f +14196,970c00pr0746,379,1,f +14196,973pr1620c01,15,1,f +14196,973pr3261c01,71,1,f +14196,973pr3281c01,72,1,f +14196,98138,182,1,t +14196,98138,182,13,f +14196,98138,1,2,f +14196,98138,1,1,t +14196,98285,0,1,f +14196,99206,71,1,f +14197,11477,4,2,f +14197,15279,297,1,f +14197,15712,320,1,f +14197,18394pat0001,36,2,f +14197,2540,4,2,f +14197,30151a,47,1,f +14197,3062b,47,1,f +14197,4595,0,1,f +14197,48729b,72,1,f +14197,53451,15,1,f +14197,53451,297,1,f +14197,54200,320,1,f +14197,54200,182,1,f +14197,60478,4,1,f +14197,6141,15,1,f +14197,64647,182,1,f +14197,98313,297,2,f +14199,3004,0,1,f +14199,3020,2,1,f +14199,3039,2,4,f +14199,3710,0,2,f +14199,3794a,14,1,f +14199,6124,36,1,f +14200,2412b,0,2,f +14200,3020,14,2,f +14200,3021,14,1,f +14200,3022,4,1,f +14200,3023,0,1,f +14200,3031,14,1,f +14200,3795,0,1,f +14200,41854,0,1,f +14200,50944pr0001,0,4,f +14200,50947,0,2,f +14200,50948,0,1,f +14200,50949,0,1,f +14200,50950,14,4,f +14200,50951,0,2,f +14200,51011,0,2,f +14203,3596,15,6,f +14203,649p01,15,1,f +14203,649pb06,15,1,f +14203,649pb07,15,1,f +14203,649pb08a,15,1,f +14203,649pb10,15,1,f +14203,675pr02,15,1,f +14203,7284,15,1,f +14203,739p01,15,1,f +14203,81294,15,1,f +14203,gtfruit,2,2,f +14204,2357,4,4,f +14204,2420,0,4,f +14204,2431,4,2,f +14204,2432,0,2,f +14204,2446,15,1,f +14204,2446pr0005,0,1,f +14204,2447,0,1,f +14204,2447,0,1,t +14204,2653,4,2,f +14204,3001,14,2,f +14204,3002,14,2,f +14204,3003,72,1,f +14204,3004,4,2,f +14204,3005,72,2,f +14204,3005,14,4,f +14204,3008,4,1,f +14204,3010,14,2,f +14204,3020,0,3,f +14204,3020,4,2,f +14204,3021,14,3,f +14204,3022,72,3,f +14204,3023,4,12,f +14204,3023,14,4,f +14204,3024,4,2,f +14204,3031,0,2,f +14204,30357,4,2,f +14204,3036,4,1,f +14204,3036,0,1,f +14204,30363,72,1,f +14204,3039,72,2,f +14204,30414,0,2,f +14204,3063b,4,2,f +14204,30648,0,8,f +14204,3068b,4,1,f +14204,3069b,4,4,f +14204,3070b,4,1,t +14204,3070b,4,2,f +14204,32123b,71,2,t +14204,32123b,71,8,f +14204,3460,14,4,f +14204,3460,72,2,f +14204,3623,0,4,f +14204,3623,4,6,f +14204,3626bpr0472,78,1,f +14204,3626bpr0527,78,1,f +14204,3660,14,2,f +14204,3666,71,4,f +14204,3666,4,2,f +14204,3666,0,2,f +14204,3701,72,9,f +14204,3707,0,4,f +14204,3710,4,2,f +14204,3710,14,6,f +14204,3795,14,1,f +14204,3829c01,4,1,f +14204,3829c01,14,1,f +14204,3937,15,2,f +14204,3938,0,2,f +14204,4079,72,2,f +14204,43337,0,2,f +14204,43720,4,1,f +14204,43721,4,1,f +14204,44126,0,1,f +14204,4477,0,2,f +14204,50950,4,8,f +14204,52031,4,1,f +14204,54200,4,4,f +14204,54200,0,2,f +14204,54200,4,1,t +14204,55982,0,8,f +14204,6087,0,4,f +14204,61072,135,3,f +14204,6141,4,1,t +14204,6141,4,4,f +14204,61678,0,4,f +14204,61678,14,8,f +14204,6179,14,1,f +14204,6180,4,1,f +14204,62359,135,4,f +14204,62360,47,2,f +14204,62361,14,4,f +14204,62361,4,4,f +14204,6636,4,3,f +14204,6636,14,4,f +14204,970c00,0,1,f +14204,970c00pr0120,15,1,f +14204,973pr1391c01,0,1,f +14204,973pr1409c01,15,1,f +14205,11399,15,1,f +14205,11407pr0001c01,26,1,f +14205,11477,15,2,f +14205,11610,19,2,f +14205,11816pr0002,78,1,f +14205,11816pr0009,84,1,f +14205,12825,15,1,f +14205,14769,30,2,f +14205,15284pr0001,226,1,f +14205,15395,15,1,f +14205,15470,70,1,f +14205,15470,29,1,f +14205,15470,70,1,t +14205,15470,29,1,t +14205,16260,9999,1,t +14205,16292,47,1,f +14205,2343,71,2,f +14205,2343,47,2,f +14205,2357,15,3,f +14205,2412b,71,4,f +14205,2431,29,19,f +14205,2431,322,2,f +14205,2431,70,1,f +14205,2453b,226,4,f +14205,2454b,226,6,f +14205,2458,15,2,f +14205,2465,15,1,f +14205,2654,71,2,f +14205,3002,70,1,f +14205,3003,5,4,f +14205,3004,15,8,f +14205,3004,226,4,f +14205,3005,25,1,f +14205,3005,30,2,f +14205,3009,70,4,f +14205,3009,15,12,f +14205,3010,226,6,f +14205,3010,15,1,f +14205,3010,70,11,f +14205,3010,5,4,f +14205,30134,70,1,f +14205,30150,84,1,f +14205,30176,2,3,f +14205,3023,15,2,f +14205,3023,30,7,f +14205,3023,14,1,f +14205,3024,15,1,t +14205,3024,15,2,f +14205,3030,19,1,f +14205,3032,70,1,f +14205,3034,19,2,f +14205,3037,14,4,f +14205,30374,297,1,f +14205,3038,30,2,f +14205,30414,19,1,f +14205,3062b,70,8,f +14205,3062b,15,5,f +14205,3068b,15,2,f +14205,3069b,29,2,f +14205,3069b,26,2,f +14205,3069bpr0130,322,1,f +14205,32064b,71,1,f +14205,33051,10,1,f +14205,33085,14,1,f +14205,33291,10,1,t +14205,33291,10,4,f +14205,33291,4,2,t +14205,33291,4,8,f +14205,3460,19,6,f +14205,3460,1,2,f +14205,3622,25,1,f +14205,3623,71,1,f +14205,3659,15,2,f +14205,3666,14,3,f +14205,3666,30,2,f +14205,3679,71,2,f +14205,3680,15,2,f +14205,3700,70,2,f +14205,3710,30,2,f +14205,3710,14,7,f +14205,3710,19,3,f +14205,3710,15,2,f +14205,3795,15,5,f +14205,3899,45,2,f +14205,3941,27,1,f +14205,4032a,15,2,f +14205,4032a,70,1,f +14205,4150,25,2,f +14205,4282,19,2,f +14205,4282,15,1,f +14205,43337,40,3,f +14205,4345b,15,1,f +14205,4346,47,1,f +14205,43898,15,1,f +14205,44568,71,1,f +14205,44728,14,1,f +14205,4490,15,1,f +14205,4510,15,1,f +14205,4528,179,2,f +14205,4533,41,1,f +14205,4599b,71,2,t +14205,4599b,71,2,f +14205,476,0,1,f +14205,48336,15,4,f +14205,4865b,29,4,f +14205,4865b,15,2,f +14205,4865b,40,2,f +14205,54200,29,2,f +14205,54200,29,1,t +14205,57894,15,7,f +14205,57895,47,7,f +14205,59349,226,2,f +14205,60470a,15,2,f +14205,60471,71,2,f +14205,60474,15,1,f +14205,60596,15,3,f +14205,60616a,47,3,f +14205,6075,26,1,f +14205,6111,15,1,f +14205,6141,0,2,f +14205,6141,46,1,t +14205,6141,0,1,t +14205,6141,29,2,f +14205,6141,15,4,f +14205,6141,179,4,f +14205,6141,46,5,f +14205,6141,179,2,t +14205,6141,29,1,t +14205,6141,47,1,f +14205,6141,182,1,f +14205,6141,34,2,t +14205,6141,14,5,f +14205,6141,34,2,f +14205,6141,47,1,t +14205,6141,182,1,t +14205,6141,19,2,f +14205,6141,15,1,t +14205,6141,14,3,t +14205,6148,2,1,f +14205,6205,30,1,f +14205,6231,15,2,f +14205,6256,191,1,f +14205,6266,15,1,t +14205,6266,15,1,f +14205,63864,15,2,f +14205,63868,14,2,f +14205,63965,0,1,f +14205,63965,71,1,f +14205,64644,297,1,f +14205,87079,0,1,f +14205,87079,26,3,f +14205,87087,15,4,f +14205,87087,0,3,f +14205,88072,71,2,f +14205,91405,19,1,f +14205,92256,0,1,f +14205,92410,30,1,f +14205,92438,322,1,f +14205,92438,19,1,f +14205,92456pr0040c01,78,1,f +14205,92456pr0044c01,84,1,f +14205,92593,71,2,f +14205,92818pr0006c01,323,1,f +14205,92946,15,2,f +14205,92950,15,2,f +14205,93273,15,1,f +14205,96479,85,3,f +14205,96480,85,1,f +14205,96481,85,2,f +14205,96482,85,1,f +14205,96483,85,2,f +14205,96484,85,1,f +14205,96485,85,2,f +14205,96486,85,1,f +14205,96487,85,2,f +14205,96488,85,1,f +14205,96489,85,2,f +14205,96490,85,1,f +14205,96491,85,1,f +14207,14181,15,1,f +14207,14520,72,2,f +14207,15207,15,2,f +14207,2412b,71,3,f +14207,2431,15,1,f +14207,2431,71,1,f +14207,2446,15,1,f +14207,2508,0,1,f +14207,2877,71,5,f +14207,30086,25,1,f +14207,30090,41,1,t +14207,30090,41,1,f +14207,30091,72,1,f +14207,3010,15,1,f +14207,30157,71,1,f +14207,3020,15,1,f +14207,3021,1,1,t +14207,3021,1,4,f +14207,3022,72,3,f +14207,3023,36,2,f +14207,3024,182,4,f +14207,3024,182,1,t +14207,3039,15,1,f +14207,3068b,71,3,f +14207,3069b,15,1,f +14207,3626c,0,1,f +14207,3626cpr0389,14,1,f +14207,3626cpr0891,14,1,f +14207,3660,71,1,f +14207,3710,15,1,f +14207,3710,1,2,f +14207,3821,15,1,f +14207,3822,15,1,f +14207,3829c01,1,2,f +14207,3962b,0,1,f +14207,4081b,71,2,f +14207,42610,71,2,f +14207,4349,0,1,f +14207,44301a,71,2,f +14207,44728,15,1,f +14207,45677,15,1,f +14207,4623,15,2,f +14207,47457,71,2,f +14207,48336,0,2,f +14207,4865a,41,2,f +14207,4871,72,1,f +14207,51011,0,2,f +14207,52036,72,1,f +14207,52501,25,2,f +14207,54200,47,1,t +14207,54200,47,2,f +14207,54200,36,2,f +14207,54200,36,1,t +14207,54200,72,4,f +14207,54200,72,1,t +14207,56890,0,4,f +14207,57783,41,1,f +14207,59275,25,2,f +14207,59275,25,1,t +14207,6014b,71,4,f +14207,60470a,71,1,f +14207,60475b,15,2,f +14207,60478,72,2,f +14207,6141,46,4,f +14207,6141,36,2,f +14207,6141,72,1,t +14207,6141,46,2,t +14207,6141,72,2,f +14207,6141,36,1,t +14207,6157,71,2,f +14207,6187,0,1,f +14207,63082,71,1,f +14207,86035,1,2,f +14207,87580,71,2,f +14207,88930,15,1,f +14207,970c00,1,1,f +14207,970x199,25,1,f +14207,973pr2334c01,71,1,f +14207,973pr2351c01,25,1,f +14207,97895,14,1,f +14207,98282,25,4,f +14207,99780,72,1,f +14208,10178,35,1,f +14208,10201,71,1,f +14208,10247,71,17,f +14208,10247,4,4,f +14208,10288,308,1,f +14208,11090,0,4,f +14208,11100,0,4,f +14208,11153,70,54,f +14208,11211,71,7,f +14208,11214,72,4,f +14208,11215,0,2,f +14208,11458,72,1,f +14208,11477,72,2,f +14208,11477,308,5,f +14208,11477,0,1,f +14208,11477,179,4,f +14208,12825,0,8,f +14208,12825,72,2,f +14208,12939,71,1,f +14208,13770,297,2,f +14208,13965,0,2,f +14208,13965,70,2,f +14208,14395,70,10,f +14208,14418,71,4,f +14208,14419,72,3,f +14208,14682,71,2,f +14208,14707,70,3,f +14208,14707,71,4,f +14208,14716,71,4,f +14208,14769,72,2,f +14208,15038,71,2,f +14208,15332,0,3,f +14208,15427pr0001,0,1,f +14208,15428pr0001,0,1,f +14208,15429pr0003,15,1,f +14208,15440,148,1,f +14208,15442,15,1,f +14208,15443,70,1,f +14208,15444,4,1,f +14208,15534,72,1,f +14208,15535,72,1,f +14208,16467,9999,1,t +14208,16599,1,1,f +14208,16691pr0001,15,1,f +14208,2343,297,1,f +14208,2357,70,4,f +14208,2412b,0,10,f +14208,2412b,179,25,f +14208,2412b,297,24,f +14208,2412b,0,1,t +14208,2412b,320,3,f +14208,2419,0,1,f +14208,2420,70,2,f +14208,2420,71,2,f +14208,2420,72,4,f +14208,2431,308,5,f +14208,2431,71,2,f +14208,2432,0,1,f +14208,2432,72,1,f +14208,2432,70,2,f +14208,2445,70,1,f +14208,2445,0,2,f +14208,2449,70,16,f +14208,2453a,70,2,f +14208,2454a,70,3,f +14208,2454a,72,4,f +14208,2456,72,1,f +14208,2456,0,1,f +14208,2456,70,1,f +14208,2460,0,4,f +14208,2476a,71,2,f +14208,2489,308,2,f +14208,2527,70,6,f +14208,2528pr0005,0,2,f +14208,2530,72,1,t +14208,2530,72,2,f +14208,2540,0,3,f +14208,2540,72,2,f +14208,2546,72,1,f +14208,2561,70,2,f +14208,2562,70,2,t +14208,2562,70,4,f +14208,2566,0,6,f +14208,2654,0,2,f +14208,2654,33,12,f +14208,2654,72,1,f +14208,2736,71,3,f +14208,2780,0,7,t +14208,2780,0,56,f +14208,2817,0,2,f +14208,2877,71,2,f +14208,3001,72,1,f +14208,3001,70,9,f +14208,3003,72,1,f +14208,3003,4,1,f +14208,3003,70,17,f +14208,30031,72,1,f +14208,3004,308,8,f +14208,30044,70,6,f +14208,30046,297,5,f +14208,3005,71,2,f +14208,3005,70,8,f +14208,30056,0,2,f +14208,3008,70,2,f +14208,3009,72,2,f +14208,30094,70,1,f +14208,30099,308,10,f +14208,3010,70,7,f +14208,30126,72,1,t +14208,30126,72,1,f +14208,30136,71,2,f +14208,30136,70,10,f +14208,30136,308,30,f +14208,30150,70,2,f +14208,30153,34,2,f +14208,30153,36,2,f +14208,30154,72,1,f +14208,30162,72,1,f +14208,3020,0,2,f +14208,3020,70,21,f +14208,3020,71,2,f +14208,3021,72,2,f +14208,3021,71,1,f +14208,3021,0,15,f +14208,3021,70,10,f +14208,3022,71,5,f +14208,3022,1,3,f +14208,3022,70,14,f +14208,3022,0,2,f +14208,3023,70,29,f +14208,3023,73,6,f +14208,3023,72,80,f +14208,3023,0,2,f +14208,3023,71,2,f +14208,3023,308,6,f +14208,3023,36,6,f +14208,3023,70,1,t +14208,3024,158,1,f +14208,3024,0,4,f +14208,3024,326,1,f +14208,3024,15,2,f +14208,3024,320,1,f +14208,3024,326,1,t +14208,3024,0,1,t +14208,3024,15,1,t +14208,3024,158,1,t +14208,3024,320,1,t +14208,3024,72,1,t +14208,3024,72,6,f +14208,3028,70,2,f +14208,3031,70,2,f +14208,3031,0,4,f +14208,3032,0,7,f +14208,3032,70,4,f +14208,3033,0,1,f +14208,3034,72,1,f +14208,3034,70,6,f +14208,3035,0,1,f +14208,3036,0,4,f +14208,30367b,72,13,f +14208,30367b,297,4,f +14208,30374,297,8,f +14208,30374,0,3,f +14208,30374,71,1,f +14208,30374,70,2,f +14208,30377,308,4,f +14208,30377,0,1,f +14208,30377,0,1,t +14208,30377,308,1,t +14208,3039,70,12,f +14208,3040b,308,6,f +14208,3040b,70,14,f +14208,3040b,484,2,f +14208,3040b,72,10,f +14208,30414,72,8,f +14208,30414,0,3,f +14208,30414,71,2,f +14208,3045,70,4,f +14208,3048c,297,1,f +14208,30503,70,2,f +14208,30503,0,2,f +14208,30526,72,4,f +14208,30552,0,2,f +14208,30553,72,3,f +14208,30553,71,2,f +14208,30554b,71,4,f +14208,3062b,19,4,f +14208,3062b,70,40,f +14208,3062b,71,9,f +14208,3062b,0,16,f +14208,3062b,308,28,f +14208,3062b,72,3,f +14208,3062b,320,26,f +14208,30663,71,3,f +14208,3068b,19,2,f +14208,3068b,73,12,f +14208,3068b,0,13,f +14208,3068b,70,3,f +14208,3068b,272,2,f +14208,3069b,70,10,f +14208,3069b,71,1,f +14208,3069b,73,20,f +14208,3069b,72,2,f +14208,3070b,70,1,t +14208,3070b,70,2,f +14208,3070bpr0147,71,1,t +14208,3070bpr0147,71,1,f +14208,3176,0,1,f +14208,32000,72,6,f +14208,32001,71,1,f +14208,32001,0,1,f +14208,32013,71,1,f +14208,32015,0,3,f +14208,32016,71,1,f +14208,32028,70,35,f +14208,32034,0,2,f +14208,32039,71,1,f +14208,32054,0,2,f +14208,32062,4,5,f +14208,32064a,71,7,f +14208,32064a,4,1,f +14208,32072,0,2,f +14208,32073,71,2,f +14208,32123b,71,4,f +14208,32123b,71,3,t +14208,32138,0,1,f +14208,32184,0,2,f +14208,32316,0,1,f +14208,32449,72,2,f +14208,3245c,72,8,f +14208,32523,72,4,f +14208,32525,0,2,f +14208,32525,71,4,f +14208,32529,0,3,f +14208,32530,0,4,f +14208,32556,19,1,f +14208,3460,0,1,f +14208,3460,72,1,f +14208,3622,0,1,f +14208,3622,70,12,f +14208,3622pr0003,378,1,f +14208,3623,158,1,f +14208,3623,70,1,f +14208,3623,72,4,f +14208,3623,0,7,f +14208,3623,378,1,f +14208,3623,4,8,f +14208,3626c,297,1,f +14208,3626cpr0895,15,1,f +14208,3626cpr1326,14,1,f +14208,3626cpr1334,14,1,f +14208,3626cpr1342,84,1,f +14208,3626cpr1354,14,1,f +14208,3626cpr1407,14,1,f +14208,3633,297,2,f +14208,3659,72,4,f +14208,3660,308,7,f +14208,3660,71,4,f +14208,3660,70,16,f +14208,3665,70,11,f +14208,3665,71,8,f +14208,3666,0,6,f +14208,3666,70,18,f +14208,3666,71,7,f +14208,3666,72,1,f +14208,3673,71,1,f +14208,3673,71,1,t +14208,3676,70,2,f +14208,3678b,72,2,f +14208,3678bpr0025,15,1,f +14208,3679,71,2,f +14208,3680,0,2,f +14208,3700,70,29,f +14208,3700,72,7,f +14208,3700,71,4,f +14208,3700,0,1,f +14208,3701,70,4,f +14208,3706,0,1,f +14208,3707,0,1,f +14208,3708,0,1,f +14208,3709,72,13,f +14208,3709,71,3,f +14208,3710,70,14,f +14208,3710,72,10,f +14208,3710,0,7,f +14208,3710,28,1,f +14208,3713,4,1,t +14208,3713,4,1,f +14208,3738,72,1,f +14208,3738,0,2,f +14208,3747b,70,2,f +14208,3749,19,13,f +14208,3794b,297,1,f +14208,3794b,72,1,f +14208,3794b,320,5,f +14208,3795,70,7,f +14208,3795,0,7,f +14208,3795,72,1,f +14208,3832,70,9,f +14208,3832,0,9,f +14208,3837,72,1,f +14208,3838,1,1,f +14208,3895,71,4,f +14208,3899,15,4,f +14208,3941,70,4,f +14208,3941,0,10,f +14208,3941,72,17,f +14208,3943b,72,1,f +14208,3957a,0,1,t +14208,3957a,0,4,f +14208,3958,0,1,f +14208,3958,71,4,f +14208,3960,71,1,f +14208,3960,72,2,f +14208,4006,0,2,f +14208,40234,71,1,f +14208,4032a,71,8,f +14208,4032a,0,2,f +14208,4032a,72,9,f +14208,40490,0,1,f +14208,4070,71,1,f +14208,4070,70,54,f +14208,4070,320,2,f +14208,4081b,72,2,f +14208,40902,0,2,f +14208,41239,0,2,f +14208,41239,72,2,f +14208,41532,0,2,f +14208,41539,0,2,f +14208,4162,70,2,f +14208,41769,70,3,f +14208,41769,71,2,f +14208,41770,70,3,f +14208,41770,71,3,f +14208,42003,72,5,f +14208,42446,71,1,f +14208,42446,71,1,t +14208,42610,71,3,f +14208,4274,71,1,t +14208,4274,71,1,f +14208,4274,1,6,t +14208,4274,1,27,f +14208,4287,72,4,f +14208,43093,1,18,f +14208,43720,72,1,f +14208,43721,72,1,f +14208,43722,70,2,f +14208,43722,0,1,f +14208,43722,71,1,f +14208,43723,0,1,f +14208,43723,70,2,f +14208,43723,71,3,f +14208,43857,0,5,f +14208,43888,71,2,f +14208,43888,70,2,f +14208,43898,70,1,f +14208,43898,72,2,f +14208,43899,72,1,f +14208,44300,71,2,f +14208,44375a,71,1,f +14208,4460b,308,2,f +14208,4460b,70,8,f +14208,4477,72,1,f +14208,4477,0,1,f +14208,4477,70,2,f +14208,4490,378,1,f +14208,4495b,297,4,f +14208,4495b,0,2,f +14208,4519,71,4,f +14208,4522,0,2,f +14208,4697b,71,1,t +14208,4697b,71,2,f +14208,4733,72,3,f +14208,4735,0,4,f +14208,4738a,70,2,f +14208,47397,0,1,f +14208,47398,0,1,f +14208,4739a,70,2,f +14208,4740,71,12,f +14208,4740,0,6,f +14208,47457,297,7,f +14208,47458,72,1,f +14208,476,0,1,f +14208,4790,70,1,f +14208,47905,70,2,f +14208,47994,0,2,f +14208,47996,0,2,f +14208,48002a,0,4,f +14208,48336,71,8,f +14208,48336,297,37,f +14208,4865b,72,1,f +14208,4865b,0,3,f +14208,48723,70,2,f +14208,48729b,72,4,t +14208,48729b,72,16,f +14208,48729b,0,1,t +14208,48729b,0,2,f +14208,50231pat0001,321,1,f +14208,50450,0,1,f +14208,50451,0,3,f +14208,50950,72,6,f +14208,52107,0,2,f +14208,52501,0,1,f +14208,53451,179,8,f +14208,53451,297,4,f +14208,53451,179,1,t +14208,53451,297,2,t +14208,54200,297,1,t +14208,54200,72,12,f +14208,54200,70,1,t +14208,54200,326,2,f +14208,54200,72,2,t +14208,54200,297,2,f +14208,54200,326,1,t +14208,54200,70,2,f +14208,54383,0,1,f +14208,54384,0,1,f +14208,55013,72,2,f +14208,55981,71,3,f +14208,59426,72,1,f +14208,59443,71,4,f +14208,59443,70,2,f +14208,59443,72,2,f +14208,59900,40,1,f +14208,59900,182,8,f +14208,59900,297,13,f +14208,59900,72,1,f +14208,59900,0,1,f +14208,6005,72,2,f +14208,60169,72,8,f +14208,6020,70,2,f +14208,60470b,71,6,f +14208,60470b,0,2,f +14208,60471,0,2,f +14208,60474,0,5,f +14208,60475a,71,4,f +14208,60475b,0,4,f +14208,60476,15,2,f +14208,60476,0,4,f +14208,60479,70,4,f +14208,60481,308,6,f +14208,60481,0,2,f +14208,60581,72,1,f +14208,60583a,71,2,f +14208,60592,0,12,f +14208,60594,0,6,f +14208,60601,47,12,f +14208,60607,297,8,f +14208,60897,71,11,f +14208,6106,0,2,f +14208,6112,72,4,f +14208,61184,71,10,f +14208,61252,297,1,f +14208,61252,72,3,f +14208,61287pr0001,28,1,f +14208,61287pr0002,28,1,f +14208,61409,0,1,f +14208,61409,484,1,f +14208,6141,179,5,t +14208,6141,34,1,f +14208,6141,47,2,t +14208,6141,34,1,t +14208,6141,0,2,t +14208,6141,47,6,f +14208,6141,158,1,f +14208,6141,158,1,t +14208,6141,179,39,f +14208,6141,36,2,t +14208,6141,297,8,t +14208,6141,70,1,t +14208,6141,0,5,f +14208,6141,297,112,f +14208,6141,70,2,f +14208,6141,36,13,f +14208,61485,0,1,f +14208,61780,72,2,f +14208,6179,0,2,f +14208,6180,320,1,f +14208,6191,320,4,f +14208,6192,71,2,f +14208,61975,70,6,f +14208,62113,72,4,f +14208,6222,72,7,f +14208,62462,0,7,f +14208,62462,179,27,f +14208,6249,72,3,f +14208,6259,72,4,f +14208,62808,297,2,f +14208,63864,71,2,f +14208,63864,72,2,f +14208,63868,72,22,f +14208,63965,0,1,f +14208,63965,297,1,f +14208,63965,70,2,f +14208,63965,15,1,f +14208,64390,70,1,f +14208,64392,15,11,f +14208,64394,15,3,f +14208,64452pr0001,70,1,f +14208,64567,71,1,t +14208,64567,71,1,f +14208,64644,297,4,f +14208,64644,0,4,f +14208,64645,308,2,f +14208,64647,182,2,f +14208,64647,57,2,f +14208,64647,57,1,t +14208,64647,182,1,t +14208,64651,308,2,f +14208,64680,15,2,f +14208,64682,15,10,f +14208,64799,71,3,f +14208,64951,70,1,f +14208,6536,0,1,f +14208,6541,70,16,f +14208,6541,0,3,f +14208,6558,1,32,f +14208,6587,28,4,f +14208,6628,0,1,t +14208,6628,0,7,f +14208,6632,0,1,f +14208,6636,72,10,f +14208,6636,70,8,f +14208,71155,0,1,f +14208,73983,72,4,f +14208,75347,0,3,f +14208,75937,0,3,f +14208,84943,148,6,f +14208,85861,15,1,t +14208,85861,15,2,f +14208,85975,297,1,f +14208,87079,0,3,f +14208,87079,70,3,f +14208,87080,15,3,f +14208,87081,72,2,f +14208,87083,72,2,f +14208,87086,15,2,f +14208,87087,72,10,f +14208,87087,71,14,f +14208,87544,71,8,f +14208,87544,0,1,f +14208,87552,0,17,f +14208,87580,72,3,f +14208,87580,70,2,f +14208,87580,320,2,f +14208,87620,72,2,f +14208,87751,179,3,f +14208,88072,72,2,f +14208,88292,0,2,f +14208,89522,378,1,t +14208,89522,378,1,f +14208,92280,0,16,f +14208,92338,72,1,f +14208,92582,71,2,f +14208,92582,0,1,f +14208,92585,297,1,f +14208,92593,72,15,f +14208,92593,0,2,f +14208,92593,320,2,f +14208,92690,297,5,f +14208,92946,72,2,f +14208,92947,71,7,f +14208,92950,70,2,f +14208,93273,72,2,f +14208,93273,320,1,f +14208,93273,70,11,f +14208,93273,0,2,f +14208,93274,72,1,f +14208,93274,71,1,f +14208,95227,308,1,f +14208,95228,40,2,f +14208,95228pr0001,47,1,f +14208,95229,0,2,f +14208,95354,0,2,f +14208,96874,25,1,t +14208,970c00,1,1,f +14208,970c00pr0605,25,1,f +14208,970c00pr0628,0,1,f +14208,973pr2538c01,25,1,f +14208,973pr2556c01,15,1,f +14208,973pr2590c01,0,1,f +14208,973pr2650c01,1,1,f +14208,98137,179,1,f +14208,98138,179,1,t +14208,98138,179,2,f +14208,98139,297,1,t +14208,98139,297,1,f +14208,98302,0,2,f +14208,98313,72,2,f +14208,99207,71,1,f +14208,99780,72,4,f +14208,99781,71,3,f +14209,122c02,0,2,f +14209,3004,4,1,f +14209,3004p06,4,1,f +14209,3020,15,1,f +14209,3022,15,1,f +14209,3023,4,2,f +14209,3023,15,1,f +14209,3024,47,2,f +14209,3068bp57,4,1,f +14209,3623,4,2,f +14209,3626apr0001,14,1,f +14209,3641,0,4,f +14209,3666,4,2,f +14209,3710,15,1,f +14209,3795,15,1,f +14209,3829c01,4,1,f +14209,3834,15,1,f +14209,4079,15,1,f +14209,4349,0,1,f +14209,970c00,0,1,f +14209,973p21c01,0,1,f +14215,clikits001pb04,13,1,f +14215,clikits114,143,1,f +14215,clikits115,143,1,f +14219,3001,0,4,f +14219,3001,1,8,f +14219,3001,4,10,f +14219,3001,15,5,f +14219,3001,14,10,f +14219,3002,4,6,f +14219,3002,0,4,f +14219,3002,14,8,f +14219,3002,1,6,f +14219,3002,15,4,f +14219,3003,0,4,f +14219,3003,15,4,f +14219,3003,1,4,f +14219,3003,14,8,f +14219,3003,4,4,f +14219,3004,14,6,f +14219,3004,47,6,f +14219,3004,0,8,f +14219,3004,4,12,f +14219,3004,15,8,f +14219,3004,1,6,f +14219,3005,1,4,f +14219,3005,15,4,f +14219,3005,4,8,f +14219,3005,14,4,f +14219,3007,4,2,f +14219,3008,14,2,f +14219,3008,15,2,f +14219,3008,1,1,f +14219,3008,4,2,f +14219,3009,4,8,f +14219,3009,15,2,f +14219,3009,14,2,f +14219,3009,1,4,f +14219,3010,15,4,f +14219,3010,4,10,f +14219,3010,14,4,f +14219,3010,1,4,f +14219,3020,1,2,f +14219,3020,4,2,f +14219,3021,1,2,f +14219,3021,4,2,f +14219,3030,1,1,f +14219,3031,1,1,f +14219,3031,4,1,f +14219,3032,4,3,f +14219,3033,1,1,f +14219,3034,4,2,f +14219,3035,4,2,f +14219,3036,1,1,f +14219,3039,4,4,f +14219,3039,1,4,f +14219,3039,47,2,f +14219,3040b,1,6,f +14219,3062a,14,2,f +14219,3081cc01,4,4,f +14219,3127b,4,1,f +14219,3137c01,0,4,f +14219,3144,79,1,f +14219,3149c01,4,2,f +14219,3176,4,1,f +14219,3183a,4,1,f +14219,3184,4,1,f +14219,3297,4,4,f +14219,3298,4,4,f +14219,3299,4,1,f +14219,3300,4,2,f +14219,3308,4,2,f +14219,3403c01,4,1,f +14219,3460,1,2,f +14219,3471,2,1,f +14219,3480,7,2,f +14219,3481,4,2,f +14219,3483,0,6,f +14219,3581,4,4,f +14219,3582,1,4,f +14219,3622,1,4,f +14219,3622,4,4,f +14219,3625,0,1,f +14219,3626apr0001,14,2,f +14219,3633,14,4,f +14219,3641,0,8,f +14219,3659,1,2,f +14219,3660,4,4,f +14219,3660,1,2,f +14219,3665,1,6,f +14219,3700,4,1,f +14219,3710,1,1,f +14219,3741,2,3,f +14219,3742,1,1,t +14219,3742,1,3,f +14219,3742,4,3,f +14219,3742,14,3,f +14219,3742,14,1,t +14219,3742,4,1,t +14219,3795,4,2,f +14219,3795,1,2,f +14219,3823,47,2,f +14219,384,4,1,f +14219,3853,14,5,f +14219,3854,4,10,f +14219,3856,2,10,f +14219,3857,2,1,f +14219,3861b,14,2,f +14219,3901,0,1,f +14219,4207,14,1,f +14219,4234,4,1,f +14219,56823,0,1,f +14219,7039,4,4,f +14219,7049b,0,2,f +14219,73037,4,1,f +14219,970c00,0,1,f +14219,970c00,4,1,f +14219,973c02,4,1,f +14219,973c07,1,1,f +14220,11212,72,2,f +14220,12939,71,1,f +14220,14769,72,2,f +14220,15207,70,2,f +14220,15332,15,2,f +14220,15397,30,2,f +14220,2431,71,2,f +14220,2431,2,2,f +14220,2456,0,2,f +14220,2456,10,2,f +14220,2456,320,2,f +14220,2458,72,4,f +14220,2877,15,4,f +14220,2926,0,2,f +14220,3001,85,4,f +14220,3001,72,3,f +14220,3001,1,6,f +14220,3001,29,4,f +14220,3001,2,4,f +14220,3001,28,4,f +14220,3001,14,4,f +14220,3001,19,2,f +14220,3001,321,4,f +14220,3001,4,8,f +14220,3001,27,6,f +14220,3001,25,2,f +14220,3001,288,4,f +14220,3001,191,4,f +14220,3001,322,4,f +14220,3001,71,4,f +14220,3002,27,4,f +14220,3002,0,8,f +14220,3002,70,4,f +14220,3002,1,4,f +14220,3003,29,8,f +14220,3003,2,4,f +14220,3003,28,4,f +14220,3003,322,4,f +14220,3003,85,4,f +14220,3003,25,4,f +14220,3003,27,4,f +14220,3003,1,4,f +14220,3003,4,4,f +14220,3003,5,4,f +14220,3003,36,1,f +14220,3003,320,4,f +14220,3003,84,8,f +14220,3003,14,4,f +14220,3004,72,4,f +14220,3004,15,4,f +14220,3004,288,8,f +14220,3004,29,8,f +14220,3004,272,16,f +14220,3004,27,4,f +14220,3004,84,8,f +14220,3004,320,4,f +14220,3004,4,8,f +14220,3004,71,8,f +14220,3004,0,4,f +14220,3004,226,8,f +14220,3004,322,4,f +14220,3004,25,12,f +14220,3004,19,4,f +14220,3004,10,4,f +14220,3004,321,8,f +14220,3004,158,4,f +14220,30044,70,2,f +14220,30046,0,2,f +14220,3005,27,8,f +14220,3005,29,6,f +14220,3005,14,4,f +14220,3005,15,4,f +14220,3005,30,6,f +14220,3005,320,4,f +14220,3005,84,8,f +14220,3005,71,4,f +14220,3005,26,4,f +14220,3009,484,2,f +14220,3009,4,2,f +14220,3010,25,4,f +14220,3010,29,4,f +14220,3010,226,8,f +14220,3010,322,4,f +14220,3010,71,4,f +14220,3010,70,4,f +14220,30136,484,8,f +14220,30136,0,4,f +14220,30151a,47,1,f +14220,30165,4,2,f +14220,3020,19,2,f +14220,3020,322,4,f +14220,3021,2,2,f +14220,3022,19,2,f +14220,3023,19,4,f +14220,3023,25,2,f +14220,3023,321,4,f +14220,3028,10,1,f +14220,3029,72,1,f +14220,3031,10,1,f +14220,3031,1,3,f +14220,3032,14,1,f +14220,3034,71,2,f +14220,30367c,15,2,f +14220,3037,14,4,f +14220,3037,26,4,f +14220,30387,14,2,f +14220,3039,47,2,f +14220,3039,26,8,f +14220,3039,27,4,f +14220,3039,2,4,f +14220,3039,1,4,f +14220,3039,191,4,f +14220,3039,30,4,f +14220,3040b,70,2,f +14220,3040b,19,4,f +14220,3040b,0,4,f +14220,3040b,26,4,f +14220,3040b,84,2,f +14220,3040b,322,8,f +14220,3040b,2,4,f +14220,3040b,15,2,f +14220,30414,19,2,f +14220,30414,1,2,f +14220,3045,322,4,f +14220,3062b,484,4,f +14220,3062b,70,2,f +14220,3065,47,2,f +14220,3068b,27,4,f +14220,3068b,28,4,f +14220,3069b,15,3,f +14220,3245b,71,8,f +14220,33291,5,3,f +14220,33291,5,1,t +14220,33291,191,1,t +14220,33291,10,1,t +14220,33291,191,3,f +14220,33291,10,3,f +14220,3460,322,2,f +14220,3622,19,4,f +14220,3659,4,4,f +14220,3660,15,4,f +14220,3660,19,2,f +14220,3660,27,4,f +14220,3660,322,4,f +14220,3660,70,4,f +14220,3665,322,4,f +14220,3666,322,2,f +14220,3676,72,4,f +14220,3679,71,2,f +14220,3680,1,2,f +14220,3710,1,4,f +14220,3710,25,2,f +14220,3710,26,2,f +14220,3710,19,2,f +14220,3795,70,2,f +14220,3941,47,2,f +14220,3941,182,2,f +14220,3941,85,4,f +14220,3942c,1,1,f +14220,3957b,71,1,f +14220,3957b,1,2,f +14220,4070,2,4,f +14220,4081b,1,4,f +14220,4287,2,2,f +14220,44728,15,2,f +14220,4727,10,3,f +14220,47905,0,4,f +14220,47905,4,2,f +14220,50950,322,4,f +14220,50950,19,2,f +14220,54200,322,3,f +14220,54200,5,1,t +14220,54200,4,3,f +14220,54200,36,3,f +14220,54200,36,1,t +14220,54200,4,1,t +14220,54200,5,3,f +14220,54200,322,1,t +14220,55981,0,2,f +14220,58090,0,2,f +14220,59900,182,3,f +14220,6014b,14,4,f +14220,60471,0,2,f +14220,60479,14,1,f +14220,60481,288,4,f +14220,60481,4,4,f +14220,60481,85,4,f +14220,60481,15,4,f +14220,60592,0,2,f +14220,60592,15,3,f +14220,60593,19,2,f +14220,60596,0,1,f +14220,60598,15,2,f +14220,60598,4,2,f +14220,60599,15,1,f +14220,60601,47,5,f +14220,60602,47,2,f +14220,60607,70,2,f +14220,60607,297,2,f +14220,60608,14,4,f +14220,60621,71,1,f +14220,60623,14,1,f +14220,6081,14,4,f +14220,6091,4,2,f +14220,6091,19,4,f +14220,61252,71,1,f +14220,6141,182,3,f +14220,6141,4,3,f +14220,6141,4,1,t +14220,6141,72,2,f +14220,6141,85,3,f +14220,6141,182,1,t +14220,6141,85,1,t +14220,6141,70,3,f +14220,6141,72,1,t +14220,6141,70,1,t +14220,6215,15,4,f +14220,6232,14,2,f +14220,85080,71,4,f +14220,85984,2,4,f +14220,85984,0,2,f +14220,85984,4,4,f +14220,85984,85,4,f +14220,87079,71,4,f +14220,87081,0,1,f +14220,87544,47,2,f +14220,87697,0,4,f +14220,90195,71,2,f +14220,91405,10,1,f +14220,92582,0,2,f +14220,93273,322,4,f +14220,93273,14,2,f +14220,96874,25,1,t +14220,98138pr0008,15,1,t +14220,98138pr0008,15,4,f +14220,98138pr0026,15,3,f +14220,98138pr0026,15,1,t +14220,98262,14,2,f +14220,99206,71,1,f +14228,2340,15,1,f +14228,2415,7,1,f +14228,2421,0,1,f +14228,2446,0,1,f +14228,2447,41,1,f +14228,2926,7,1,f +14228,298c02,4,1,t +14228,298c02,4,2,f +14228,3004,7,1,f +14228,3022,4,1,f +14228,3062b,7,2,f +14228,3139,0,3,f +14228,3464,47,1,f +14228,3626bp04,14,1,f +14228,3666,4,1,f +14228,3794a,15,2,f +14228,3795,4,1,f +14228,3933,15,1,f +14228,3934,15,1,f +14228,4488,7,1,f +14228,4624,7,2,f +14228,4864a,15,2,f +14228,970c00,0,1,f +14228,973c11,0,1,f +14229,2654,27,1,f +14229,2654,182,1,f +14229,3004,72,2,f +14229,3004,70,2,f +14229,30173b,179,1,f +14229,3022,70,1,f +14229,3022,4,1,f +14229,3024,71,1,f +14229,30374,297,1,f +14229,30374,70,1,f +14229,30374,71,2,f +14229,3048c,71,2,f +14229,3065,36,2,f +14229,32002,72,6,f +14229,32002,72,1,t +14229,3626cpr0871,4,1,f +14229,3848,72,1,f +14229,41879a,25,1,f +14229,4589,0,2,f +14229,4643718,9999,1,f +14229,4643719,9999,1,f +14229,4643720,9999,1,f +14229,4643721,9999,1,f +14229,4643722,9999,1,f +14229,4643723,9999,1,f +14229,4643724,9999,1,f +14229,4643725,9999,1,f +14229,4643726,9999,1,f +14229,4643727,9999,1,f +14229,54200,71,1,f +14229,54200,71,1,t +14229,59232,297,1,f +14229,60752,179,1,f +14229,6126b,57,3,f +14229,6141,57,1,f +14229,6141,57,1,t +14229,63965,0,1,f +14229,64567,297,2,f +14229,64567,0,1,f +14229,64567,71,1,f +14229,64727,71,1,f +14229,87087,71,1,f +14229,87747,297,2,f +14229,89522,179,1,f +14229,89522,179,1,t +14229,92690,71,1,f +14229,970c00pr0322,4,1,f +14229,973pr1889c01,25,1,f +14229,973pr1903c01,4,1,f +14229,98133pr0007,4,1,f +14229,98136,182,1,f +14229,98148pr0001,72,1,f +14229,98338,148,3,f +14229,98343pr0001,148,1,f +14229,98344pr0002,182,1,f +14229,98348,182,3,f +14229,98354pr0011,34,1,f +14229,98354pr0016,57,1,f +14231,10052,71,1,f +14231,10061,19,1,f +14231,10062,19,1,f +14231,10063,19,1,f +14231,10064,19,1,f +14231,11418pr0001,28,3,f +14231,11906,71,1,f +14231,11907,484,1,f +14231,13052,9999,1,t +14231,13270,19,1,f +14231,14210,0,2,f +14231,2343,297,1,f +14231,2357,0,6,f +14231,2420,0,2,f +14231,2420,72,2,f +14231,2431,70,19,f +14231,2431,308,7,f +14231,2444,72,2,f +14231,2445,70,1,f +14231,2445,72,1,f +14231,2449,70,2,f +14231,2449,72,9,f +14231,2453b,72,1,f +14231,2454a,72,2,f +14231,2456,72,1,f +14231,2456,0,1,f +14231,2465,72,1,f +14231,2476a,28,1,f +14231,2489,308,1,f +14231,2540,0,1,f +14231,2566,0,3,f +14231,3001,72,11,f +14231,3001,0,1,f +14231,3002,0,4,f +14231,3003,0,3,f +14231,3004,72,8,f +14231,3004,0,15,f +14231,3004,28,2,f +14231,3005,0,11,f +14231,3005,72,2,f +14231,3005,288,3,f +14231,3005,28,7,f +14231,30055,70,3,f +14231,3006,0,1,f +14231,3007,71,1,f +14231,3008,72,1,f +14231,3009,72,1,f +14231,30094,70,1,f +14231,3010,70,5,f +14231,30136,308,2,f +14231,30153,42,2,f +14231,3020,70,4,f +14231,3021,0,1,f +14231,3022,0,3,f +14231,3023,28,2,f +14231,3023,70,4,f +14231,3023,326,5,f +14231,3023,0,6,f +14231,3024,0,1,t +14231,3024,70,14,f +14231,3024,0,6,f +14231,3024,28,2,t +14231,3024,70,4,t +14231,3024,28,11,f +14231,3028,28,2,f +14231,3030,28,3,f +14231,3032,72,1,f +14231,3032,70,2,f +14231,3035,28,1,f +14231,3035,70,1,f +14231,3036,70,2,f +14231,3036,0,1,f +14231,30374,70,7,f +14231,30385,297,1,f +14231,3039,72,2,f +14231,3039,0,3,f +14231,3040b,308,6,f +14231,3040b,72,38,f +14231,3040b,0,6,f +14231,30414,0,1,f +14231,30503,70,5,f +14231,30526,71,1,f +14231,3062b,70,22,f +14231,3062b,0,3,f +14231,3062b,72,3,f +14231,3062b,308,5,f +14231,3068b,70,4,f +14231,3069b,0,3,f +14231,3069b,72,3,f +14231,3069b,308,33,f +14231,3069b,28,4,f +14231,3070b,0,4,f +14231,3070b,72,1,t +14231,3070b,70,1,t +14231,3070b,72,4,f +14231,3070b,70,3,f +14231,32000,19,1,f +14231,32013,0,1,f +14231,32016,70,3,f +14231,32034,0,1,f +14231,32039,0,1,f +14231,32062,4,2,f +14231,32184,0,1,f +14231,32270,0,1,f +14231,3245c,72,5,f +14231,32530,0,1,f +14231,3298,0,3,f +14231,3298,72,3,f +14231,33009,70,1,f +14231,3623,70,2,f +14231,3626cpr0895,15,13,f +14231,3626cpr0972,78,1,f +14231,3626cpr1107,78,1,f +14231,3626cpr1113,78,1,f +14231,3626cpr1114,28,3,f +14231,3626cpr1115,78,1,f +14231,3659,308,5,f +14231,3660,72,2,f +14231,3665,72,14,f +14231,3665,308,12,f +14231,3666,0,2,f +14231,3666,70,1,f +14231,3673,71,3,f +14231,3673,71,2,t +14231,3679,71,1,f +14231,3680,0,1,f +14231,3684,72,10,f +14231,3700,71,2,f +14231,3701,71,2,f +14231,3705,0,2,f +14231,3710,0,2,f +14231,3710,72,6,f +14231,3794a,0,1,f +14231,3795,72,3,f +14231,3795,70,4,f +14231,3832,70,2,f +14231,3894,72,2,f +14231,3941,70,3,f +14231,3958,70,1,f +14231,3958,72,1,f +14231,40240,70,1,f +14231,4032a,71,1,f +14231,4150,19,1,f +14231,4162,70,2,f +14231,41769,70,4,f +14231,41769,0,1,f +14231,41769,72,3,f +14231,41770,72,2,f +14231,41770,70,4,f +14231,41879a,308,3,f +14231,41879a,72,1,f +14231,4286,70,2,f +14231,4286,72,3,f +14231,43093,1,4,f +14231,4341,0,1,f +14231,44294,71,1,f +14231,4460b,72,13,f +14231,44728,72,1,f +14231,44728,0,4,f +14231,4489b,0,1,f +14231,4496,70,1,f +14231,4497,308,1,t +14231,4497,308,6,f +14231,4733,0,3,f +14231,4733,72,2,f +14231,47847,72,3,f +14231,4865b,0,2,f +14231,48729b,0,8,f +14231,48729b,0,4,t +14231,50231,72,1,f +14231,53451,15,4,t +14231,53451,0,3,f +14231,53451,15,14,f +14231,53451,0,1,t +14231,53705,132,1,f +14231,54200,72,5,t +14231,54200,0,2,f +14231,54200,72,40,f +14231,54200,0,1,t +14231,54383,28,2,f +14231,54384,28,1,f +14231,55013,72,3,f +14231,59232,179,1,f +14231,59349,308,1,f +14231,59443,70,1,f +14231,59900,70,8,f +14231,60470b,0,6,f +14231,60474,71,1,f +14231,60481,308,2,f +14231,60752,179,1,f +14231,6083,72,1,f +14231,60897,0,4,f +14231,6106,28,4,f +14231,6112,0,1,f +14231,6131,72,1,f +14231,6141,0,26,f +14231,6141,0,4,t +14231,6141,297,1,t +14231,6141,57,1,t +14231,6141,57,4,f +14231,6141,297,2,f +14231,61485,0,1,f +14231,6222,72,1,f +14231,6231,0,4,f +14231,62462,0,1,f +14231,6266,15,1,t +14231,6266,15,1,f +14231,63868,0,6,f +14231,63965,70,3,f +14231,64644,308,5,f +14231,64647,57,3,t +14231,64647,57,5,f +14231,64951,70,1,f +14231,6541,71,3,f +14231,6636,70,3,f +14231,6636,0,2,f +14231,75937,0,1,f +14231,76768,70,2,f +14231,87079,70,1,f +14231,87083,72,1,f +14231,87087,72,13,f +14231,87580,70,9,f +14231,87747,15,1,f +14231,87747,15,1,t +14231,87994,70,1,f +14231,88289,308,1,f +14231,92338,72,5,f +14231,92691,15,2,f +14231,92950,72,1,f +14231,93061,15,4,f +14231,93061,15,1,t +14231,93160,15,6,f +14231,93160,15,3,t +14231,95343,70,1,f +14231,95344,28,1,f +14231,95344,28,1,t +14231,95354,0,1,f +14231,95673,179,2,f +14231,96874,25,1,t +14231,970c00,72,1,f +14231,970c00pr0469,28,2,f +14231,973pr2053c01,72,1,f +14231,973pr2215c01,320,1,f +14231,973pr2279c01,70,1,f +14231,973pr2280c01,28,1,f +14231,973pr2281c01,28,1,f +14231,973pr2282c01,28,1,f +14231,973pr2283c01,85,1,f +14231,98138,179,1,f +14231,98138,179,1,t +14231,98284,0,1,f +14231,98313,70,3,f +14231,98313,72,3,f +14231,98370,179,1,f +14231,99464,320,1,f +14231,99464,72,1,f +14232,2335p30,15,1,f +14232,2357,0,2,f +14232,2357,4,4,f +14232,2449,7,2,f +14232,2458,0,1,f +14232,2488,2,2,f +14232,2518,2,7,f +14232,2528pb01,0,1,f +14232,2530,8,1,f +14232,2536,6,7,f +14232,2540,0,2,f +14232,2542,4,2,f +14232,2542,6,2,f +14232,2543,1,1,f +14232,2546p01,4,1,f +14232,2551,6,1,f +14232,2555,7,1,f +14232,2561,6,1,f +14232,2562,6,1,f +14232,2563,6,1,f +14232,2566,6,1,f +14232,2586p30,15,2,f +14232,3001,4,2,f +14232,3003,7,2,f +14232,3004,4,6,f +14232,3004,0,1,f +14232,3004,7,5,f +14232,3005,0,4,f +14232,3005,4,12,f +14232,3005,7,3,f +14232,3010,7,3,f +14232,3010,0,3,f +14232,3020,4,2,f +14232,3023,14,8,f +14232,3023,0,6,f +14232,3023,4,4,f +14232,3023,7,1,f +14232,3033,0,1,f +14232,3035,14,2,f +14232,3039,7,2,f +14232,3040b,0,4,f +14232,3040b,7,2,f +14232,3062b,2,1,f +14232,3068bp30,15,1,f +14232,3069b,7,2,f +14232,3455,4,2,f +14232,3455,0,2,f +14232,3460,0,1,f +14232,3623,7,3,f +14232,3626b,0,1,f +14232,3626bp3j,14,1,f +14232,3626bp3k,14,1,f +14232,3626bp46,14,1,f +14232,3626bp48,14,1,f +14232,3665,0,2,f +14232,3665,7,4,f +14232,3701,7,1,f +14232,3710,0,2,f +14232,3710,14,2,f +14232,3794a,0,3,f +14232,3794a,7,3,f +14232,3795,0,3,f +14232,3832,0,1,f +14232,3857,1,1,f +14232,3941,4,1,f +14232,3957a,0,2,f +14232,4032a,2,1,f +14232,4032a,0,1,f +14232,4070,7,2,f +14232,4085c,0,4,f +14232,4150p30,15,1,f +14232,4287,0,2,f +14232,4460a,7,1,f +14232,4477,0,1,f +14232,4490,7,1,f +14232,4490,0,2,f +14232,4497,6,1,f +14232,4498,6,1,f +14232,4499,6,1,f +14232,4589,0,1,f +14232,4623,0,1,f +14232,4738a,6,1,f +14232,4739a,6,1,f +14232,57503,334,2,f +14232,57504,334,2,f +14232,57505,334,2,f +14232,57506,334,2,f +14232,6019,7,2,f +14232,6020,6,2,f +14232,6021,4,1,f +14232,6025,0,2,f +14232,6026,2,1,f +14232,6027,2,1,f +14232,6028,2,1,f +14232,6030,4,1,f +14232,6083,8,2,f +14232,6108,7,1,f +14232,6108,0,1,f +14232,6111,0,1,f +14232,6148,2,2,f +14232,6264stk01,9999,1,t +14232,87695,15,4,f +14232,87696,15,2,f +14232,970c00,2,1,f +14232,970c03pb01,14,2,f +14232,970d01,0,1,f +14232,973p33c01,14,1,f +14232,973p3ac01,14,1,f +14232,973pb0062c01,14,1,f +14232,973pb0063c01,14,1,f +14233,57899,0,2,f +14233,58247,0,2,f +14233,61190f,72,2,f +14233,63585,72,2,f +14233,63586,72,2,f +14235,2780,0,12,f +14235,2780,0,1,t +14235,2793c01,14,1,f +14235,2797c02,14,1,f +14235,2817,0,2,f +14235,2905,0,4,f +14235,3022,7,2,f +14235,32000,0,1,f +14235,32056,0,2,f +14235,32062,0,7,f +14235,32064b,7,2,f +14235,32065,7,2,f +14235,32073,0,4,f +14235,32123b,7,20,f +14235,32123b,7,1,t +14235,32138,14,2,f +14235,32140,7,2,f +14235,32184,22,2,f +14235,32184,7,1,f +14235,32184,0,1,f +14235,32249,7,2,f +14235,32250,0,2,f +14235,32278,0,4,f +14235,32291,0,1,f +14235,32291,22,6,f +14235,32348,0,3,f +14235,32523,7,2,f +14235,3673,7,1,f +14235,3700,0,2,f +14235,3703,0,2,f +14235,3705,0,5,f +14235,3706,0,1,f +14235,3707,0,1,f +14235,3709,7,5,f +14235,3713,7,1,t +14235,3713,7,4,f +14235,3749,7,4,f +14235,4519,0,8,f +14235,4697b,7,1,f +14235,5102c04,1,1,f +14235,5102c11,1,3,f +14235,5102c26,0,1,f +14235,5102c26,7,1,f +14235,5102c40,7,1,f +14235,5102c40,0,1,f +14235,6536,7,4,f +14235,6536,14,2,f +14235,6538b,7,2,f +14235,6558,0,4,f +14235,6587,8,2,f +14235,6632,7,2,f +14235,74981,14,1,f +14235,74982,14,1,f +14235,75215,7,2,f +14235,75535,0,1,f +14235,75974,1,1,f +14237,2431,2,1,f +14237,2431,14,4,f +14237,2431,0,1,f +14237,2431,4,1,f +14237,2435,2,1,f +14237,2445,15,1,f +14237,2446,0,1,f +14237,2446pb03,4,1,f +14237,2465,1,1,f +14237,2486,4,2,f +14237,2639,7,1,f +14237,2681,0,2,f +14237,2780,0,16,f +14237,30000,7,4,f +14237,3002,15,4,f +14237,3004,15,1,f +14237,3009,7,2,f +14237,3010,7,4,f +14237,30170,0,2,f +14237,3020,15,2,f +14237,3020,7,5,f +14237,3020,1,2,f +14237,3022,8,2,f +14237,3022,4,1,f +14237,3022,1,7,f +14237,3022,15,2,f +14237,3023,4,8,f +14237,3029,15,7,f +14237,3031,15,1,f +14237,3032,15,1,f +14237,3035,15,2,f +14237,30364,7,2,f +14237,30365,7,2,f +14237,3039,15,2,f +14237,3062b,1,4,f +14237,3068b,15,6,f +14237,3069b,15,4,f +14237,3069b,4,1,f +14237,3070b,15,2,f +14237,32524,1,2,f +14237,3460,15,3,f +14237,3460,1,1,f +14237,3622,1,1,f +14237,3623,4,2,f +14237,3623,1,1,f +14237,3626bpb0046,14,1,f +14237,3626bpb0163,14,1,f +14237,3666,1,2,f +14237,3703,0,2,f +14237,3730,1,2,f +14237,3731,1,2,f +14237,3894,0,2,f +14237,3933,15,1,f +14237,3957a,4,4,f +14237,40490,15,4,f +14237,4187,15,1,f +14237,42022,15,1,f +14237,4215b,14,3,f +14237,42608,7,2,f +14237,4282,15,2,f +14237,43085,15,8,f +14237,43086,15,1,f +14237,4477,1,15,f +14237,4495a,1,1,f +14237,4495a,2,1,f +14237,4495a,14,1,f +14237,4495a,4,1,f +14237,4515,15,2,f +14237,46203pb02c01,4,1,f +14237,46203pb06c01,15,1,f +14237,4864b,14,4,f +14237,6111,1,1,f +14237,6112,7,10,f +14237,6141,4,1,t +14237,6141,4,4,f +14237,6191,15,3,f +14237,6232,15,7,f +14237,63965,4,2,f +14237,6636,15,2,f +14237,970c00,0,2,f +14237,973c28,4,1,f +14237,973c29,8,1,f +14237,bb125pb01,15,1,f +14237,rb00185,19,1,f +14238,2335,15,3,f +14238,2420,0,2,f +14238,2420,15,2,f +14238,2436,0,2,f +14238,2436,15,2,f +14238,2454a,0,1,f +14238,2454a,15,1,f +14238,2456,15,1,f +14238,2540,15,1,f +14238,2555,15,3,f +14238,2780,0,1,t +14238,2780,0,10,f +14238,30027b,0,8,f +14238,30028,0,8,f +14238,3003,15,1,f +14238,3004,0,1,f +14238,3004,15,1,f +14238,3009,15,1,f +14238,3010,15,2,f +14238,3010,0,2,f +14238,3020,25,2,f +14238,3020,15,1,f +14238,3020,4,1,f +14238,3020,0,3,f +14238,3021,1,1,f +14238,3022,25,2,f +14238,3022,1,2,f +14238,3022,15,2,f +14238,3023,0,1,f +14238,3023,25,2,f +14238,3023,15,4,f +14238,3024,15,2,f +14238,3024,0,4,f +14238,30258,72,1,f +14238,30261,15,1,f +14238,3031,72,1,f +14238,3031,15,2,f +14238,3031,1,1,f +14238,30374,15,1,f +14238,30383,15,1,f +14238,30553,71,1,f +14238,3062b,4,1,f +14238,3068b,25,1,f +14238,3068b,0,2,f +14238,3068b,1,3,f +14238,3068b,15,3,f +14238,3069b,25,1,f +14238,3070b,15,1,t +14238,3070b,15,2,f +14238,32028,15,2,f +14238,32316,72,1,f +14238,32316,15,2,f +14238,3245b,15,2,f +14238,32524,15,2,f +14238,3710,15,1,f +14238,3788,15,1,f +14238,3788,0,1,f +14238,3794b,15,2,f +14238,3795,0,1,f +14238,3795,1,1,f +14238,3795,15,1,f +14238,3963,71,1,f +14238,4274,71,7,f +14238,4274,71,1,t +14238,44674,25,1,f +14238,44674,15,1,f +14238,44728,15,1,f +14238,4599a,71,1,f +14238,4865a,0,2,f +14238,52107,0,1,f +14238,54200,15,1,t +14238,54200,25,1,t +14238,54200,1,2,f +14238,54200,25,6,f +14238,54200,15,2,f +14238,54200,1,1,t +14238,6141,46,1,t +14238,6141,0,1,f +14238,6141,46,2,f +14238,6141,0,1,t +14238,6157,0,4,f +14238,63965,15,4,f +14238,64225,0,4,f +14238,64700,4,1,f +14238,86501,72,1,f +14239,29bc01,4,1,f +14239,3001a,47,2,f +14239,3001a,15,8,f +14239,3001a,4,10,f +14239,3002a,4,2,f +14239,3002a,15,3,f +14239,3003,15,4,f +14239,3003,4,6,f +14239,3007,4,1,f +14239,3035a,15,1,f +14239,3065,4,2,f +14239,3065,15,3,f +14239,3081bc01,4,1,f +14239,31bc01,4,1,f +14239,33ac01,4,1,f +14240,2335,0,2,f +14240,2420,0,4,f +14240,2431,4,4,f +14240,2432,4,2,f +14240,2447,40,1,t +14240,2465,15,1,f +14240,2555,0,2,f +14240,30029,0,2,f +14240,3004,4,5,f +14240,3020,0,2,f +14240,3021,72,2,f +14240,3023,0,4,f +14240,3023,4,2,f +14240,3024,47,2,f +14240,3024,4,8,f +14240,30374,15,1,f +14240,30414,0,4,f +14240,30648,0,8,f +14240,3068b,4,2,f +14240,3069b,0,2,f +14240,3069b,4,14,f +14240,3623,4,4,f +14240,3666,4,2,f +14240,3710,4,4,f +14240,3794b,4,4,f +14240,3795,0,8,f +14240,3795,4,6,f +14240,3829c01,4,2,f +14240,3957a,15,1,f +14240,4070,4,6,f +14240,41769,0,2,f +14240,41770,0,2,f +14240,4282,71,1,f +14240,4286,4,2,f +14240,43337,1,4,f +14240,43337,0,4,f +14240,43719,4,4,f +14240,43722,4,2,f +14240,43723,4,2,f +14240,44126,4,2,f +14240,4623,0,2,f +14240,47720,0,4,f +14240,4864b,4,4,f +14240,4865a,4,4,f +14240,4865a,0,4,f +14240,50373,4,2,f +14240,54200,4,2,t +14240,54200,4,4,f +14240,55981,0,8,f +14240,61409,0,4,f +14240,6141,71,2,t +14240,6141,71,6,f +14240,61678,4,4,f +14240,6636,4,2,f +14240,73983,0,4,f +14241,10916,0,1,f +14241,11145,0,4,f +14241,2736,71,6,f +14241,2780,0,95,f +14241,2780,0,1,t +14241,2815,0,3,f +14241,31313stk01,9999,1,t +14241,32005a,0,2,f +14241,32009,0,12,f +14241,32013,4,4,f +14241,32014,4,1,f +14241,32034,4,6,f +14241,32039,71,2,f +14241,32054,4,10,f +14241,32062,4,12,f +14241,32068,71,4,f +14241,32072,0,4,f +14241,32073,71,9,f +14241,32123b,14,11,f +14241,32123b,14,1,t +14241,32138,71,4,f +14241,32140,0,8,f +14241,32184,4,17,f +14241,32192,4,4,f +14241,32198,19,1,f +14241,32269,0,4,f +14241,32270,0,2,f +14241,32271,0,12,f +14241,32278,0,4,f +14241,32291,4,2,f +14241,32293,0,4,f +14241,32316,0,10,f +14241,32348,0,4,f +14241,32498,0,5,f +14241,32523,0,12,f +14241,32524,0,6,f +14241,32525,4,4,f +14241,32526,0,6,f +14241,32556,19,4,f +14241,3648b,72,2,f +14241,3673,71,1,t +14241,3673,71,4,f +14241,3706,0,9,f +14241,3713,4,9,f +14241,3713,4,1,t +14241,40490,0,8,f +14241,41239,0,4,f +14241,41669,15,4,f +14241,41669,4,6,f +14241,41678,4,4,f +14241,4185,71,3,f +14241,42003,4,14,f +14241,42610,71,4,f +14241,43093,1,28,f +14241,44294,71,2,f +14241,44309,0,4,f +14241,4519,71,22,f +14241,4716,71,2,f +14241,48989,71,12,f +14241,50951,0,2,f +14241,53550,0,1,f +14241,53992,0,2,f +14241,54271,0,1,f +14241,54821,4,3,f +14241,55013,72,6,f +14241,55805,0,2,f +14241,55806,0,1,f +14241,56145,0,4,f +14241,57585,71,1,f +14241,59426,72,2,f +14241,59443,4,3,f +14241,60483,0,10,f +14241,60484,0,4,f +14241,60485,71,1,f +14241,61070,15,1,f +14241,61071,15,1,f +14241,62462,71,2,f +14241,63869,71,2,f +14241,64178,71,2,f +14241,64179,71,2,f +14241,64391,15,3,f +14241,64393,15,3,f +14241,64681,15,3,f +14241,64683,15,3,f +14241,6536,4,8,f +14241,6558,1,38,f +14241,6575,0,2,f +14241,6587,28,4,f +14241,6589,19,1,f +14241,6628,0,6,f +14241,6632,71,1,f +14241,72156,15,1,f +14241,85544,4,1,f +14241,87082,71,6,f +14241,87083,72,4,f +14241,87408,0,1,f +14241,92907,71,2,f +14241,95646c01,15,1,f +14241,95648,15,1,f +14241,95650,15,1,f +14241,95654,71,1,f +14241,95658,15,2,f +14241,98347,15,4,f +14241,98568p02,4,6,f +14241,99008,19,3,f +14241,99455,15,1,f +14242,3004,335,100,f +14243,2343,7,2,f +14243,2412a,7,2,f +14243,2432,0,1,f +14243,2440p01,0,1,f +14243,2446,4,1,f +14243,2447,41,1,f +14243,2447,41,1,t +14243,2452,4,1,f +14243,2817,0,1,f +14243,3021,4,2,f +14243,3023,4,1,f +14243,3139,0,2,f +14243,3298p57,0,1,f +14243,3626apr0001,14,1,f +14243,3706,0,1,f +14243,3795,4,1,f +14243,3829c01,0,1,f +14243,3937,4,2,f +14243,3938,0,3,f +14243,4081b,7,2,f +14243,4084,0,4,f +14243,4265a,7,1,t +14243,4265a,7,4,f +14243,4276b,4,1,f +14243,4286,0,2,f +14243,4600,0,1,f +14243,4624,7,2,f +14243,4732,4,1,f +14243,4859,0,1,f +14243,6141,7,2,f +14243,970c00,15,1,f +14243,973p0bc01,15,1,f +14244,3023,1,6,f +14244,3032,4,1,f +14244,3069b,7,2,f +14244,3482,7,4,f +14244,3634,0,4,f +14244,3647,7,4,f +14244,3648a,7,2,f +14244,3649,7,1,f +14244,3650a,7,1,f +14244,3651,7,8,f +14244,3666,1,8,f +14244,3673,7,11,f +14244,3700,1,4,f +14244,3701,1,2,f +14244,3702,1,5,f +14244,3703,1,8,f +14244,3705,0,2,f +14244,3706,0,4,f +14244,3707,0,2,f +14244,3708,0,2,f +14244,3709,4,3,f +14244,3713,7,9,f +14244,3736,7,1,f +14244,3737,0,1,f +14244,3738,4,1,f +14244,3743,7,1,f +14244,3749,7,4,f +14244,3795,4,4,f +14244,3894,1,4,f +14244,3895,1,4,f +14244,4185,7,2,f +14244,4261,7,2,f +14244,4350c02,7,1,f +14244,4442,7,3,f +14244,4459,0,12,f +14244,6216b,7,1,f +14244,766c01,7,2,f +14244,85545,0,2,f +14244,9244,7,1,f +14244,rb00164,0,1,f +14244,x466,7,1,f +14245,3001,0,14,f +14245,3002,0,8,f +14245,3003,0,12,f +14245,3004,0,8,f +14245,3005,0,4,f +14245,3006,0,1,f +14245,3007,0,1,f +14245,3008,0,2,f +14245,3009,0,4,f +14245,3010,0,4,f +14245,3622,0,4,f +14249,2524,15,1,f +14249,30193,72,1,t +14249,30193,72,1,f +14249,3626bpr0279,14,1,f +14249,41334,72,1,f +14249,970c00,288,1,f +14249,973pr1173c01,4,1,f +14251,2412b,72,1,f +14251,2436,15,1,f +14251,30027b,15,4,f +14251,30028,0,4,f +14251,3004,4,2,f +14251,3005,4,2,f +14251,3020,4,1,f +14251,3062b,14,1,f +14251,3069b,33,1,f +14251,3626bpr0325,14,1,f +14251,3710,15,3,f +14251,3788,4,2,f +14251,3795,0,2,f +14251,3823,41,1,f +14251,3829c01,71,1,f +14251,3834,15,1,f +14251,4345b,4,1,f +14251,4346,15,1,f +14251,4599a,14,1,f +14251,4600,71,2,f +14251,6091,4,2,f +14251,6141,33,2,f +14251,6141,33,1,t +14251,970c00,0,1,f +14251,973pr1187c01,0,1,f +14252,30088,0,1,f +14252,30090,41,1,t +14254,15573,320,1,f +14254,15712,320,1,f +14254,15712,71,1,f +14254,2420,71,2,f +14254,2431,0,2,f +14254,2460,71,1,f +14254,3001,28,4,f +14254,3001,71,1,f +14254,3002,71,1,f +14254,3003,28,4,f +14254,3004,28,16,f +14254,3005,28,13,f +14254,3008,28,8,f +14254,3009,28,2,f +14254,3010,28,3,f +14254,3020,71,2,f +14254,3021,71,2,f +14254,3022,71,1,f +14254,3022,320,1,f +14254,3023,28,10,f +14254,3023,71,5,f +14254,3024,28,13,f +14254,30374,41,1,f +14254,3040b,28,8,f +14254,3062b,41,1,f +14254,3068b,0,2,f +14254,3070b,28,2,f +14254,3623,71,2,f +14254,3666,28,2,f +14254,3700,71,1,f +14254,3710,71,2,f +14254,3710,28,3,f +14254,3795,71,1,f +14254,3937,71,1,f +14254,4070,71,2,f +14254,43712,71,1,f +14254,43713,71,1,f +14254,43719,71,1,f +14254,43722,28,2,f +14254,43723,28,2,f +14254,4460b,28,6,f +14254,4733,71,1,f +14254,4740,71,2,f +14254,54200,71,1,f +14254,54200,28,2,f +14254,6134,0,1,f +14254,6141,71,5,f +14254,6141,15,8,f +14254,6636,0,1,f +14254,90194,71,1,f +14254,92438,28,1,f +14254,93273,71,3,f +14256,2346,0,6,f +14256,3022,1,1,f +14256,3023,1,2,f +14256,3068b,1,1,f +14256,3482,7,6,f +14256,3623,1,4,f +14256,3647,7,3,f +14256,3648a,7,1,f +14256,3649,7,2,f +14256,3650a,7,3,f +14256,3651,7,10,f +14256,3666,1,6,f +14256,3673,7,13,f +14256,3700,1,8,f +14256,3700,4,4,f +14256,3701,1,6,f +14256,3702,4,2,f +14256,3702,1,2,f +14256,3703,1,4,f +14256,3705,0,4,f +14256,3706,0,5,f +14256,3707,0,2,f +14256,3708,0,2,f +14256,3709,4,2,t +14256,3709,1,4,f +14256,3709,4,2,f +14256,3710,4,4,f +14256,3710,1,6,f +14256,3713,7,13,f +14256,3737,0,2,f +14256,3738,4,2,f +14256,3743,7,1,f +14256,3749,7,4,f +14256,3795,1,2,f +14256,3795,4,4,f +14256,3894,1,4,f +14256,3894,4,2,f +14256,3895,1,2,f +14256,3937,1,1,f +14256,3938,1,1,f +14256,4185,7,3,f +14256,4261,7,2,f +14256,4262,7,3,f +14256,4275a,1,2,f +14256,4275a,4,2,f +14256,4276a,4,2,f +14256,4276a,1,2,f +14256,4459,0,4,f +14256,4519,0,2,f +14256,rb00164,0,1,f +14258,11090,72,2,f +14258,11203,72,1,f +14258,11212,72,2,f +14258,11213,71,4,f +14258,11215,0,2,f +14258,11215,71,2,f +14258,11477,15,2,f +14258,15459,71,1,f +14258,15461,0,1,f +14258,15535,72,1,t +14258,15535,72,4,f +14258,15573,4,3,f +14258,15712,4,2,f +14258,18649,0,4,f +14258,18651,0,2,f +14258,18654,72,1,t +14258,18654,72,3,f +14258,18671,72,2,f +14258,18892,0,2,f +14258,18897,72,3,f +14258,18907pr0001,15,1,f +14258,18908,40,1,f +14258,18909,484,2,f +14258,18910,15,6,f +14258,2412b,15,4,f +14258,2412b,71,2,f +14258,2412b,14,1,f +14258,2415,71,1,f +14258,2431,71,2,f +14258,2431,1,1,f +14258,2432,72,1,t +14258,2432,72,3,f +14258,2446,15,2,f +14258,2447,40,2,f +14258,2447,40,1,t +14258,2569,0,1,f +14258,2569,0,1,t +14258,2654,72,7,f +14258,2780,0,28,f +14258,2780,0,4,t +14258,30000,72,2,f +14258,3001,71,4,f +14258,3001,15,2,f +14258,3004,71,1,f +14258,3004,15,2,f +14258,3007,0,1,f +14258,3010,72,4,f +14258,3020,0,3,f +14258,3020,72,1,f +14258,3021,71,3,f +14258,3022,0,1,f +14258,3022,14,1,f +14258,3022,72,1,f +14258,3023,36,2,f +14258,3023,46,2,f +14258,3023,182,2,f +14258,3023,40,1,f +14258,3023,1,6,f +14258,3028,0,1,f +14258,3031,14,2,f +14258,3031,1,2,f +14258,3032,2,2,f +14258,3032,1,1,f +14258,3032,0,1,f +14258,3034,0,1,f +14258,3034,1,1,f +14258,30350a,0,3,f +14258,30350b,41,2,f +14258,30363,1,2,f +14258,30363,0,1,f +14258,30367c,297,1,f +14258,3037,15,2,f +14258,3037,71,2,f +14258,30386,14,2,f +14258,3039pr0005,15,1,f +14258,30414,0,1,f +14258,30526,71,2,f +14258,30553,0,1,f +14258,3068b,4,6,f +14258,3068b,71,2,f +14258,3068bpr0263,1,1,f +14258,3069b,0,1,f +14258,3176,72,4,f +14258,32001,71,3,f +14258,32013,14,1,f +14258,32016,0,1,f +14258,32028,15,2,f +14258,32054,4,2,f +14258,32062,4,6,f +14258,32064a,15,2,f +14258,32064a,2,2,f +14258,32140,72,2,f +14258,32316,72,4,f +14258,32449,14,2,f +14258,32525,72,2,f +14258,32556,19,9,f +14258,3460,72,2,f +14258,3464,72,1,f +14258,3623,14,2,f +14258,3623,0,4,f +14258,3626bpr0389,14,1,f +14258,3626cpr0891,14,1,f +14258,3626cpr1395a,14,1,f +14258,3626cpr1580,14,1,f +14258,3626cpr1666,14,1,f +14258,3660,14,2,f +14258,3665,14,2,f +14258,3703,72,4,f +14258,3703,0,2,f +14258,3705,0,2,f +14258,3710,14,1,f +14258,3710,15,2,f +14258,3710,0,5,f +14258,3710,71,4,f +14258,3731,71,1,f +14258,3738,0,2,f +14258,3795,0,2,f +14258,3795,72,2,f +14258,3795,14,2,f +14258,3795,4,2,f +14258,3795,15,1,f +14258,3829c01,4,2,f +14258,3833,15,2,f +14258,3894,15,1,f +14258,3899,4,1,f +14258,3941,1,10,f +14258,3941,72,1,f +14258,3941,0,2,f +14258,3943b,15,2,f +14258,3957a,0,1,f +14258,4032a,71,3,f +14258,4079,70,3,f +14258,41529,71,1,f +14258,41532,0,1,f +14258,4162,15,2,f +14258,4175,0,2,f +14258,4176,14,1,f +14258,41769,0,1,f +14258,41769,15,1,f +14258,41770,0,1,f +14258,41770,15,1,f +14258,42003,71,6,f +14258,42022,0,4,f +14258,4274,1,1,t +14258,4274,1,1,f +14258,4282,0,3,f +14258,43093,1,3,f +14258,44375b,15,1,f +14258,44728,14,4,f +14258,4477,71,2,f +14258,4519,71,2,f +14258,4624,71,4,f +14258,47456,0,1,f +14258,47457,1,1,f +14258,48336,0,5,f +14258,4865a,1,2,f +14258,4870,71,2,f +14258,50304,15,1,f +14258,50305,15,1,f +14258,50450,0,1,t +14258,50450,0,3,f +14258,55981,0,2,f +14258,55981,71,8,f +14258,59443,4,1,t +14258,59443,4,1,f +14258,59895,0,1,t +14258,59895,0,5,f +14258,59900,182,1,f +14258,6014b,71,4,f +14258,60208,72,2,f +14258,60212,0,2,f +14258,60219,72,4,f +14258,60470a,15,4,f +14258,60474,0,9,f +14258,60479,0,2,f +14258,60594,1,1,f +14258,6091,15,2,f +14258,6141,182,1,t +14258,6141,14,4,f +14258,6141,182,14,f +14258,6141,14,1,t +14258,6183,15,2,f +14258,6222,72,4,f +14258,6231,1,2,f +14258,6232,15,2,f +14258,6233,0,3,f +14258,62462,0,2,f +14258,6249,72,4,f +14258,63868,72,1,f +14258,63868,15,4,f +14258,64448,72,2,f +14258,64449,72,1,f +14258,64644,0,1,f +14258,64799,0,1,f +14258,6558,1,4,f +14258,6564,0,2,f +14258,6565,0,2,f +14258,6583,14,1,f +14258,6636,1,8,f +14258,6636,14,1,f +14258,72475,41,1,f +14258,85941,15,12,f +14258,85984,1,2,f +14258,87079,71,2,f +14258,87081,15,8,f +14258,87083,72,1,f +14258,87087,14,2,f +14258,87580,1,1,f +14258,87580,0,2,f +14258,87611,72,1,f +14258,87614,15,1,f +14258,87697,0,4,f +14258,87754,15,2,f +14258,87926,484,6,f +14258,87990,70,1,f +14258,88072,0,2,f +14258,89159,297,2,f +14258,89201,0,8,f +14258,90194,0,2,f +14258,92279,15,2,f +14258,92280,4,10,f +14258,92280,15,4,f +14258,92582,71,1,f +14258,92584,0,2,f +14258,92584,15,2,f +14258,92593,0,1,f +14258,95347,0,1,f +14258,96874,25,1,t +14258,970c00,272,3,f +14258,970c00,15,2,f +14258,973pr2992c01,15,2,f +14258,973pr2998c01,25,2,f +14258,973pr2999c01,15,1,f +14258,98100,15,2,f +14258,98138,182,3,f +14258,98138,27,1,f +14258,98138,27,1,t +14258,98138,47,6,f +14258,98138,182,2,t +14258,98138,47,1,t +14258,98585,484,2,f +14258,99008,19,1,f +14258,99207,71,1,f +14259,11213,71,2,f +14259,11458,72,2,f +14259,12825,72,1,f +14259,14769,71,1,f +14259,15573,71,4,f +14259,2412b,71,4,f +14259,2639,72,1,f +14259,2654,71,4,f +14259,2921,71,3,f +14259,3001,0,1,f +14259,3003,71,1,f +14259,3021,71,1,f +14259,3023,320,3,f +14259,3024,71,1,f +14259,3024,41,1,t +14259,3024,71,1,t +14259,3024,41,2,f +14259,30565,72,4,f +14259,3062b,41,4,f +14259,3069b,72,1,f +14259,3070b,320,1,t +14259,3070b,320,2,f +14259,3626cpr1368,78,1,f +14259,3710,72,1,f +14259,3710,71,2,f +14259,3901,70,1,f +14259,3937,0,1,f +14259,4032a,72,4,f +14259,4070,71,4,f +14259,41862,71,1,f +14259,43722,71,1,f +14259,4697b,71,1,f +14259,4697b,71,1,t +14259,4740,72,1,f +14259,54200,47,1,t +14259,54200,47,1,f +14259,54200,71,4,f +14259,54200,71,1,t +14259,54383,72,1,f +14259,54384,71,1,f +14259,54384,72,1,f +14259,58176,36,2,f +14259,59900,36,3,f +14259,61184,71,2,f +14259,6134,71,1,f +14259,6141,47,1,t +14259,6141,47,2,f +14259,6564,71,1,f +14259,6565,71,1,f +14259,92738,0,1,f +14259,970c00pr0625,272,1,f +14259,973pr2301c01,0,1,f +14259,98100pr1000,71,1,f +14259,98138,179,6,f +14259,98138,179,1,t +14259,99780,72,2,f +14259,99781,71,2,f +14260,12825,72,1,f +14260,12825,15,4,f +14260,30374,19,5,f +14260,3062b,15,1,f +14260,4733,72,1,f +14260,4733,15,1,f +14260,4740,72,1,f +14261,3005pr0006,73,1,f +14261,3022,19,1,f +14261,33291,191,1,f +14261,33291,191,1,t +14261,3899,14,1,f +14261,3899,4,1,f +14261,54200,15,1,t +14261,54200,15,1,f +14261,6141,70,1,t +14261,6141,15,1,f +14261,6141,15,1,t +14261,6141,70,1,f +14263,11211,71,1,f +14263,2456,1,2,f +14263,2456,15,2,f +14263,2456,14,1,f +14263,2456,4,1,f +14263,2476a,71,1,f +14263,2877,71,1,f +14263,2926,0,2,f +14263,3001,2,6,f +14263,3001,4,6,f +14263,3001,0,4,f +14263,3001,1,6,f +14263,3001,19,4,f +14263,3001,15,6,f +14263,3001,321,4,f +14263,3001,14,6,f +14263,3002,4,6,f +14263,3002,1,6,f +14263,3002,2,4,f +14263,3002,0,4,f +14263,3002,14,6,f +14263,3002,70,4,f +14263,3002,19,2,f +14263,3002,15,6,f +14263,3002,29,2,f +14263,3003,19,4,f +14263,3003,14,24,f +14263,3003,27,4,f +14263,3003,4,24,f +14263,3003,2,8,f +14263,3003,1,24,f +14263,3003,15,24,f +14263,3003,70,8,f +14263,3003,0,8,f +14263,3004,4,8,f +14263,3004,70,6,f +14263,3004,14,8,f +14263,3004,19,5,f +14263,3004,15,8,f +14263,3004,0,6,f +14263,3004,2,4,f +14263,3004,29,4,f +14263,3004,27,4,f +14263,3004,1,8,f +14263,3004,321,4,f +14263,3004pr0001,14,1,f +14263,3005,27,8,f +14263,3005,1,4,f +14263,3005,0,6,f +14263,3005,4,8,f +14263,3005,19,4,f +14263,3005,70,6,f +14263,3005,14,8,f +14263,3005,15,8,f +14263,3007,14,1,f +14263,3007,1,1,f +14263,3007,4,1,f +14263,3007,15,1,f +14263,3008,2,2,f +14263,3008,15,2,f +14263,3008,14,1,f +14263,3008,1,2,f +14263,3008,4,1,f +14263,3009,1,3,f +14263,3009,14,2,f +14263,3009,2,2,f +14263,3009,15,3,f +14263,3009,4,2,f +14263,3010,0,2,f +14263,3010,1,4,f +14263,3010,14,4,f +14263,3010,4,4,f +14263,3010,15,4,f +14263,3010,27,2,f +14263,3010,70,2,f +14263,3010,2,2,f +14263,3020,2,1,f +14263,3020,0,2,f +14263,3020,14,1,f +14263,3020,19,1,f +14263,3020,15,1,f +14263,3021,14,1,f +14263,3022,2,1,f +14263,3022,15,1,f +14263,3022,14,1,f +14263,3022,0,3,f +14263,3022,1,1,f +14263,3022,19,1,f +14263,3023,2,2,f +14263,3023,29,3,f +14263,3023,70,2,f +14263,3023,15,2,f +14263,3023,0,5,f +14263,3023,4,4,f +14263,3023,14,4,f +14263,3034,19,2,f +14263,3034,0,2,f +14263,3039,1,2,f +14263,3039,15,3,f +14263,3039,0,2,f +14263,3039,70,2,f +14263,3039,14,8,f +14263,3040b,14,2,f +14263,3040b,2,2,f +14263,3040b,70,6,f +14263,3040b,1,4,f +14263,3040b,4,4,f +14263,3040b,15,2,f +14263,3062b,70,2,f +14263,3622,15,4,f +14263,3622,4,4,f +14263,3622,27,4,f +14263,3622,14,4,f +14263,3622,2,2,f +14263,3622,0,2,f +14263,3622,1,4,f +14263,3623,0,1,f +14263,3660,1,2,f +14263,3665,4,4,f +14263,3665,1,2,f +14263,3665,70,5,f +14263,3665,15,6,f +14263,3700,15,1,f +14263,3794b,14,1,f +14263,3794b,15,1,f +14263,3794b,19,1,f +14263,3795,29,1,f +14263,3795,14,1,f +14263,3795,15,1,f +14263,3941,70,4,f +14263,3941,47,2,f +14263,3941,15,2,f +14263,4070,2,2,f +14263,4070,70,2,f +14263,44728,15,1,f +14263,44728,19,1,f +14263,47905,0,2,f +14263,49668,0,4,f +14263,54200,2,2,f +14263,54200,29,2,f +14263,54200,70,4,f +14263,54200,0,2,f +14263,54200,14,3,f +14263,54200,15,4,f +14263,6014b,71,4,f +14263,6141,4,1,f +14263,6141,46,2,f +14263,6141,15,2,f +14263,6141,14,2,f +14263,6141,29,7,f +14263,6141,36,2,f +14263,6141,0,2,f +14263,87087,14,4,f +14263,87087,1,6,f +14263,87087,29,4,f +14263,87697,0,4,f +14263,98138pr0008,15,12,f +14265,122c01,0,3,f +14265,3003,0,1,f +14265,3020,0,2,f +14265,3022,14,2,f +14265,3022,0,3,f +14265,3023,0,5,f +14265,3023,0,1,t +14265,3023,14,3,f +14265,3040b,14,4,f +14265,3062b,0,1,f +14265,3149c01,0,1,f +14265,3626apr0001,14,1,f +14265,3639,0,1,f +14265,3640,0,1,f +14265,3710,14,1,f +14265,3795,0,2,f +14265,3829c01,14,1,f +14265,3833,4,1,f +14265,4080,14,1,f +14265,4084,0,6,f +14265,4175,0,1,f +14265,4211,0,1,f +14265,970c00,0,1,f +14265,973p26c01,1,1,f +14266,3001,4,1,f +14267,2460,8,1,f +14267,2540,8,2,f +14267,3020,8,1,f +14267,3020,3,1,f +14267,3023,3,2,f +14267,3039,42,1,f +14267,3298,3,1,f +14267,3839b,0,1,f +14267,4617b,0,1,f +14268,10928,72,3,f +14268,15462,28,3,f +14268,15976,179,2,f +14268,19049,179,1,f +14268,19050,57,1,f +14268,19061pat0001,297,1,f +14268,19086,72,1,f +14268,20251,179,1,f +14268,20252,57,2,f +14268,20473,35,1,f +14268,20474,179,6,f +14268,20475,148,1,f +14268,20480,179,3,f +14268,2780,0,2,f +14268,30375,72,1,f +14268,32062,4,3,f +14268,32072,0,2,f +14268,32072,14,1,f +14268,3713,71,4,f +14268,4274,71,1,f +14268,43093,1,1,f +14268,53585,0,4,f +14268,59443,0,1,f +14268,60169,57,1,f +14268,60483,72,2,f +14268,74261,72,2,f +14268,86208,72,1,f +14268,87083,72,2,f +14268,87747,179,1,f +14268,90609,35,6,f +14268,90626,179,1,f +14268,90640,148,1,f +14268,90641,57,1,f +14268,93575,179,4,f +14268,94925,71,2,f +14268,98603s02pr0015,148,1,f +14269,16816,29,1,f +14269,19903pr0001,14,1,f +14269,88646,0,1,f +14269,93091pr0005,322,1,f +14269,970x222,14,1,f +14269,973pr2976c01,29,1,f +14270,3020,72,1,f +14270,3023,0,2,f +14270,3034,0,1,f +14270,30608,0,1,f +14270,32064b,0,1,f +14270,3626bpb0022,14,1,f +14270,3710,0,1,f +14270,3794a,0,2,f +14270,4195292,9999,1,f +14270,43373,25,1,f +14270,43374,15,1,f +14270,43702,25,1,f +14270,45522,72,1,f +14270,973bpb159c01,7,1,f +14270,x494cx1,0,1,f +14271,2357,19,2,f +14271,2412b,14,3,f +14271,2412b,71,7,f +14271,2420,71,2,f +14271,2420,15,4,f +14271,2420,272,2,f +14271,2431,378,2,f +14271,2432,71,1,f +14271,2432,72,1,f +14271,2436,0,4,f +14271,2437,40,1,f +14271,2444,71,8,f +14271,2458,1,2,f +14271,2508,0,2,f +14271,2530,72,1,f +14271,2530,72,1,t +14271,2540,72,4,f +14271,2555,72,6,f +14271,2654,71,11,f +14271,2780,0,2,t +14271,2780,0,6,f +14271,2825,0,4,f +14271,298c02,71,2,t +14271,298c02,71,2,f +14271,3003,71,1,f +14271,3004,71,1,f +14271,3004,272,1,f +14271,3004,15,1,f +14271,3008,15,1,f +14271,3009,15,1,f +14271,3010,14,1,f +14271,3010,288,1,f +14271,3010,19,1,f +14271,3010,15,4,f +14271,30132,72,1,t +14271,30132,72,1,f +14271,30135,378,1,f +14271,30136,70,1,f +14271,30141,72,1,f +14271,30150,70,1,f +14271,30157,70,1,f +14271,30173a,297,1,f +14271,3020,71,3,f +14271,3020,14,1,f +14271,3021,15,4,f +14271,3021,272,6,f +14271,3021,71,9,f +14271,3021,70,10,f +14271,3022,72,1,f +14271,3022,0,5,f +14271,3022,71,3,f +14271,3023,0,4,f +14271,3023,71,5,f +14271,3023,15,4,f +14271,3023,14,8,f +14271,3030,71,1,f +14271,3031,72,2,f +14271,3032,72,1,f +14271,3033,71,2,f +14271,30332,0,2,f +14271,3034,72,2,f +14271,3034,15,1,f +14271,3035,71,2,f +14271,30355,71,1,f +14271,30356,71,1,f +14271,30357,72,4,f +14271,30374,14,1,f +14271,30374,0,1,f +14271,3039pr0013,15,1,f +14271,3040b,14,1,f +14271,3040b,15,2,f +14271,30414,71,2,f +14271,30565,272,2,f +14271,3062b,71,4,f +14271,3062b,72,2,f +14271,30663,71,2,f +14271,3068b,71,10,f +14271,3068b,72,2,f +14271,3068b,288,1,f +14271,3068b,272,1,f +14271,3068b,15,2,f +14271,3068bpr0139a,19,1,f +14271,3069b,272,4,f +14271,3069b,19,4,f +14271,3069b,0,1,f +14271,3069b,15,2,f +14271,3070b,15,6,f +14271,3070b,15,1,t +14271,32062,4,2,f +14271,32064b,4,4,f +14271,32123b,71,1,t +14271,32123b,71,18,f +14271,3460,72,6,f +14271,3460,15,1,f +14271,3622,14,2,f +14271,3622,15,2,f +14271,3623,15,2,f +14271,3623,0,5,f +14271,3624,15,1,f +14271,3624,28,1,f +14271,3626bpr0472,78,1,f +14271,3626bpr0501,78,1,f +14271,3626bpr0515b,78,1,f +14271,3626bpr0516a,78,1,f +14271,3626bpr0544,78,1,f +14271,3626bpr0545,78,1,f +14271,3660,15,3,f +14271,3665,15,4,f +14271,3666,272,4,f +14271,3666,71,6,f +14271,3679,71,2,f +14271,3680,0,2,f +14271,37,72,2,f +14271,3700,72,1,f +14271,3701,71,4,f +14271,3710,70,6,f +14271,3710,272,7,f +14271,3710,72,1,f +14271,3710,15,5,f +14271,3747b,15,1,f +14271,3794a,15,14,f +14271,3794a,272,2,f +14271,3794a,72,3,f +14271,3795,71,14,f +14271,3829c01,71,3,f +14271,3832,72,2,f +14271,3832,0,1,f +14271,3847,135,1,f +14271,3900,15,2,f +14271,3941,4,4,f +14271,4006,0,1,f +14271,4032a,19,1,f +14271,4032a,14,2,f +14271,40620,71,2,f +14271,4070,70,14,f +14271,4079,70,1,f +14271,4083,0,2,f +14271,41531,15,2,f +14271,4162,15,3,f +14271,41747,15,1,f +14271,41748,15,1,f +14271,41764,15,2,f +14271,41765,15,2,f +14271,41767,14,2,f +14271,41767,15,1,f +14271,41768,15,1,f +14271,41768,14,2,f +14271,41769,272,2,f +14271,41770,272,2,f +14271,42023,15,2,f +14271,42446,72,4,f +14271,42610,71,8,f +14271,4274,1,1,t +14271,4274,1,1,f +14271,4286,15,1,f +14271,4287,15,4,f +14271,43093,1,4,f +14271,43337,14,2,f +14271,43712,15,2,f +14271,43713,15,1,f +14271,43722,71,1,f +14271,43722,15,1,f +14271,43723,71,1,f +14271,43723,15,1,f +14271,43898,0,2,f +14271,44294,71,2,f +14271,44568,71,1,f +14271,44570,71,1,f +14271,4460b,15,2,f +14271,44728,72,2,f +14271,4522,0,1,f +14271,45410,15,1,f +14271,45411,40,2,f +14271,45677,15,1,f +14271,4589,14,2,f +14271,4590,72,1,f +14271,4599a,71,5,f +14271,4740,47,1,f +14271,47720,0,6,f +14271,47759,0,1,f +14271,48183,288,1,f +14271,48336,0,4,f +14271,4865a,288,4,f +14271,4865a,40,2,f +14271,48723,70,2,f +14271,48729a,0,1,t +14271,48729a,0,1,f +14271,50304,71,2,f +14271,50305,71,2,f +14271,50745,72,2,f +14271,50947,72,2,f +14271,50950,0,1,f +14271,51011,0,8,f +14271,51739,71,1,f +14271,54200,288,1,t +14271,54200,15,12,f +14271,54200,14,6,f +14271,54200,14,2,t +14271,54200,15,2,t +14271,54200,288,2,f +14271,56902,71,8,f +14271,60208,272,2,f +14271,60481,15,1,f +14271,6091,14,4,f +14271,61254,0,8,f +14271,6141,47,2,t +14271,6141,34,1,t +14271,6141,36,15,f +14271,6141,36,4,t +14271,6141,34,4,f +14271,6141,47,6,f +14271,61482,71,2,f +14271,61482,71,1,t +14271,61506,70,1,f +14271,61780,72,2,f +14271,61975,70,1,f +14271,61976,70,1,f +14271,6231,288,6,f +14271,62363,28,1,f +14271,62711,0,1,f +14271,62810,308,1,f +14271,62885,0,1,f +14271,63082,0,2,f +14271,63859,47,1,f +14271,6564,15,2,f +14271,6565,15,2,f +14271,6636,15,2,f +14271,6636,28,1,f +14271,88930,15,6,f +14271,970c00,378,1,f +14271,970c00,28,1,f +14271,970c00,71,1,f +14271,970c00,272,2,f +14271,973pr0986c01,272,1,f +14271,973pr1370c01,308,1,f +14271,973pr1392c01,0,1,f +14271,973pr1393c01,378,1,f +14271,973pr1395c01,28,1,f +14271,973pr1396c01,71,1,f +14272,73129,7,4,f +14274,11208,71,4,f +14274,11209,0,4,f +14274,11303,272,1,f +14274,11477,0,2,f +14274,13793,72,1,f +14274,15068pr0007,15,1,f +14274,15207,320,2,f +14274,18654,72,1,t +14274,18654,72,2,f +14274,18892,0,2,f +14274,22889,15,2,f +14274,2431,15,1,f +14274,2431,33,1,f +14274,2432,0,2,f +14274,2432,4,1,f +14274,2653,0,1,f +14274,2654,19,2,f +14274,3002,4,2,f +14274,3004,72,3,f +14274,3005,4,2,f +14274,3009,72,1,f +14274,3009,320,1,f +14274,3010,15,2,f +14274,3010,4,1,f +14274,30157,72,2,f +14274,3020,0,1,f +14274,3020,320,1,f +14274,3021,0,2,f +14274,3021,1,3,f +14274,3022,320,1,f +14274,3022,14,1,f +14274,3023,36,3,f +14274,3023,15,4,f +14274,30237b,320,2,f +14274,3031,19,2,f +14274,3031,15,1,f +14274,3032,72,1,f +14274,30414,14,1,f +14274,30414,1,1,f +14274,3062b,14,1,f +14274,3069b,320,2,f +14274,3069b,0,2,f +14274,3069bpr0100,2,3,f +14274,32000,0,2,f +14274,3460,0,2,f +14274,3626cpr1578,14,1,f +14274,3626cpr1849,14,1,f +14274,3665,72,6,f +14274,3666,0,1,f +14274,3666,320,1,f +14274,3666,72,2,f +14274,3710,15,3,f +14274,3710,0,5,f +14274,3710,71,2,f +14274,3829c01,4,2,f +14274,4176,40,1,f +14274,4274,71,1,t +14274,4274,71,2,f +14274,4286,320,2,f +14274,4345b,71,1,f +14274,4346,71,1,f +14274,44567a,0,2,f +14274,4740,15,2,f +14274,47458,0,1,f +14274,50745,0,4,f +14274,52031,320,2,f +14274,52036,72,1,f +14274,54200,320,1,t +14274,54200,47,2,t +14274,54200,15,2,f +14274,54200,47,4,f +14274,54200,15,1,t +14274,54200,320,2,f +14274,55981,71,4,f +14274,57783,41,1,f +14274,58090,0,4,f +14274,59900,15,2,f +14274,60128stk01,9999,1,f +14274,61409,0,2,f +14274,6141,46,1,t +14274,6141,46,1,f +14274,61678,0,2,f +14274,64567,71,1,f +14274,64567,71,1,t +14274,6636,15,2,f +14274,85984,15,2,f +14274,87079,71,2,f +14274,87609,15,2,f +14274,91988,71,2,f +14274,92081,0,1,f +14274,92280,71,2,f +14274,92585,4,1,f +14274,92593,0,1,f +14274,93273,15,3,f +14274,970c00,272,1,f +14274,970c00pr0985,15,1,f +14274,973pr3208c01,212,1,f +14274,973pr3211c01,15,1,f +14274,98138,33,1,t +14274,98138,36,1,t +14274,98138,33,2,f +14274,98138,36,4,f +14274,98281,15,1,f +14274,98282,72,4,f +14274,98834,15,1,f +14274,99780,15,2,f +14276,4182214,9999,1,f +14276,8007-1,9999,1,f +14276,8009-1,9999,1,f +14279,14226c21,0,3,f +14279,14226c41,0,4,f +14279,2335,1,6,f +14279,2335p30,15,1,f +14279,2339,15,2,f +14279,2357,0,2,f +14279,2357,1,4,f +14279,2419,0,1,f +14279,2420,0,6,f +14279,2431,7,2,f +14279,2431,14,4,f +14279,2431,0,5,f +14279,2452,0,3,f +14279,2458,15,2,f +14279,2458,4,2,f +14279,2465,0,1,f +14279,2489,6,2,f +14279,2526,6,1,f +14279,2527,4,3,f +14279,2528pb01,0,2,f +14279,2530,8,1,t +14279,2530,8,5,f +14279,2537,0,2,f +14279,2538,0,2,f +14279,2539,8,2,f +14279,2540,0,8,f +14279,2541,6,2,f +14279,2542,4,2,f +14279,2543,1,1,f +14279,2543,4,1,f +14279,2543,0,2,f +14279,2544,0,1,f +14279,2544,6,1,f +14279,2546p01,4,1,f +14279,2547,8,1,f +14279,2548,8,1,f +14279,2550c01,6,1,f +14279,2551,6,1,f +14279,2555,0,4,f +14279,2557c04,4,1,f +14279,2559c04,4,1,f +14279,2560,4,2,f +14279,2561,6,2,f +14279,2562,6,4,f +14279,2584,7,1,f +14279,2585,0,1,f +14279,2719,0,1,f +14279,3001,7,6,f +14279,3002,4,1,f +14279,3003,1,3,f +14279,3003,0,3,f +14279,3003,4,2,f +14279,30033,8,2,f +14279,3004,1,8,f +14279,3004,15,5,f +14279,3004,4,5,f +14279,3004,14,1,f +14279,3004,0,16,f +14279,30041,0,1,f +14279,30042,0,1,f +14279,30043,0,8,f +14279,30044,14,2,f +14279,30046,15,2,f +14279,30047,0,1,f +14279,3005,0,13,f +14279,3005,1,6,f +14279,3005,7,2,f +14279,3005,15,7,f +14279,30055,0,2,f +14279,3008,15,2,f +14279,3008,0,3,f +14279,3009,0,7,f +14279,3010,15,2,f +14279,3010,0,2,f +14279,3020,0,8,f +14279,3020,2,2,f +14279,3021,0,2,f +14279,3021,4,1,f +14279,3021,7,2,f +14279,3021,14,1,f +14279,3022,1,2,f +14279,3022,0,5,f +14279,3022,14,2,f +14279,3022,15,1,f +14279,3023,7,3,f +14279,3023,0,22,f +14279,3023,14,4,f +14279,3023,15,10,f +14279,3023,2,4,f +14279,3024,0,7,f +14279,3024,14,2,f +14279,3024,15,7,f +14279,3024,7,4,f +14279,3029,7,1,f +14279,3031,15,1,f +14279,3031,14,1,f +14279,3034,0,2,f +14279,3034,15,2,f +14279,3034,7,1,f +14279,3036,7,1,f +14279,3038,0,2,f +14279,3039,1,1,f +14279,3039,14,1,f +14279,3039,0,2,f +14279,3040b,0,3,f +14279,3040b,15,4,f +14279,3062b,7,18,f +14279,3068b,7,1,f +14279,3068b,14,3,f +14279,3069b,7,2,f +14279,3069b,1,2,f +14279,3127,7,1,f +14279,3184,0,11,f +14279,3460,8,6,f +14279,3460,0,11,f +14279,3622,1,2,f +14279,3623,15,10,f +14279,3623,0,4,f +14279,3623,7,2,f +14279,3623,4,2,f +14279,3626b,0,1,f +14279,3626bp39,14,1,f +14279,3626bp46,14,1,f +14279,3626bp47,14,1,f +14279,3626bp48,14,1,f +14279,3626bpb0018,14,2,f +14279,3626bpx108,14,1,f +14279,3659,15,2,f +14279,3659,14,2,f +14279,3659,1,2,f +14279,3660,15,2,f +14279,3660,0,3,f +14279,3665,15,6,f +14279,3666,7,1,f +14279,3666,0,20,f +14279,3666,15,7,f +14279,3684,0,2,f +14279,3700,7,1,f +14279,3703,0,2,f +14279,3706,0,2,f +14279,3710,0,17,f +14279,3710,15,4,f +14279,3710,8,6,f +14279,3713,7,2,f +14279,3713,7,1,t +14279,3747a,0,2,f +14279,3794a,15,1,f +14279,3795,15,2,f +14279,3795,0,6,f +14279,3830,0,4,f +14279,3831,0,4,f +14279,3832,15,1,f +14279,3832,7,1,f +14279,3849,0,2,f +14279,3933,7,1,f +14279,3933,0,1,f +14279,3934,7,1,f +14279,3934,0,1,f +14279,3937,14,1,f +14279,3938,15,1,f +14279,3957a,0,1,f +14279,3957a,7,3,f +14279,3959,0,3,f +14279,4032a,6,1,f +14279,4085c,15,2,f +14279,4085c,7,2,f +14279,4085c,0,8,f +14279,4151a,0,1,f +14279,4162,14,6,f +14279,4175,0,4,f +14279,4265a,7,2,f +14279,4265a,7,1,t +14279,4275b,0,1,f +14279,4282,7,1,f +14279,4286,0,4,f +14279,4286,15,2,f +14279,4287,0,4,f +14279,4460a,1,2,f +14279,4477,15,3,f +14279,4477,7,2,f +14279,4477,0,15,f +14279,4490,0,4,f +14279,4495a,15,1,f +14279,4495b,4,1,f +14279,4504,0,3,f +14279,4531,0,1,f +14279,4589,46,3,f +14279,4589,15,23,f +14279,4735,0,2,f +14279,4738a,6,1,f +14279,4739a,6,1,f +14279,4790,6,1,f +14279,56823c75,0,1,f +14279,57503,334,2,f +14279,57504,334,2,f +14279,57505,334,2,f +14279,57506,334,2,f +14279,6019,0,2,f +14279,6057,6,2,f +14279,6060,15,6,f +14279,6067,0,2,f +14279,6091,15,8,f +14279,6091,14,4,f +14279,6104,14,1,f +14279,6108,15,1,f +14279,6111,0,1,f +14279,6112,0,1,f +14279,6141,15,12,f +14279,6141,15,1,t +14279,6541,14,4,f +14279,6636,0,2,f +14279,70001pb02,0,1,f +14279,71155,0,1,f +14279,84943,8,3,f +14279,970c00,4,1,f +14279,970c00,7,2,f +14279,970c00,1,1,f +14279,970c00,0,2,f +14279,970d01,0,1,f +14279,973c09,15,1,f +14279,973p30c01,14,2,f +14279,973p33c01,14,1,f +14279,973p36c01,0,1,f +14279,973p39c01,1,1,f +14279,973p3ac01,14,1,f +14279,973p3cc01,15,1,f +14279,sailbb11,15,1,f +14279,sailbb12,15,1,f +14279,sailbb13,15,1,f +14279,x376px4,0,1,f +14281,2335,1,1,f +14281,2335,15,2,f +14281,2412b,71,4,f +14281,2412b,14,2,f +14281,2412b,15,1,f +14281,2420,1,4,f +14281,2420,14,4,f +14281,2431,15,2,f +14281,2431,1,3,f +14281,2431,0,2,f +14281,2431,4,3,f +14281,2432,1,2,f +14281,2436,0,3,f +14281,2436,4,2,f +14281,2436,15,2,f +14281,2436,1,1,f +14281,2436,14,5,f +14281,2540,4,1,f +14281,2555,15,4,f +14281,2780,0,12,f +14281,2780,0,2,t +14281,3001,0,1,f +14281,3002,15,1,f +14281,3003,72,2,f +14281,3010,14,2,f +14281,3010,4,2,f +14281,3020,1,1,f +14281,3020,15,1,f +14281,3020,14,2,f +14281,3020,0,3,f +14281,3021,0,4,f +14281,3021,15,1,f +14281,3021,1,2,f +14281,3021,72,2,f +14281,3022,0,2,f +14281,3022,15,2,f +14281,3022,4,1,f +14281,3023,1,1,f +14281,3023,0,4,f +14281,3023,14,2,f +14281,3023,4,2,f +14281,3023,15,2,f +14281,3023,71,2,f +14281,3028,28,1,f +14281,3031,15,3,f +14281,3031,0,1,f +14281,3031,4,1,f +14281,3034,1,1,f +14281,3034,4,1,f +14281,3034,0,2,f +14281,3034,14,1,f +14281,3037,0,1,f +14281,3037,72,2,f +14281,30374,15,6,f +14281,30553,71,1,f +14281,3068b,4,1,f +14281,3068b,14,1,f +14281,3069b,14,1,f +14281,3069b,4,3,f +14281,3069b,1,2,f +14281,3069b,15,4,f +14281,3070b,14,1,t +14281,3070b,14,3,f +14281,32014,71,1,f +14281,32028,14,2,f +14281,32028,0,1,f +14281,32028,15,3,f +14281,32062,4,4,f +14281,32064b,4,1,f +14281,32138,0,4,f +14281,32140,71,1,f +14281,32192,4,1,f +14281,32291,71,2,f +14281,32316,71,3,f +14281,32316,1,2,f +14281,32523,1,2,f +14281,32523,0,2,f +14281,32556,19,1,f +14281,3297,0,1,f +14281,3623,0,1,f +14281,3623,15,1,f +14281,3660,72,4,f +14281,3660,0,3,f +14281,3666,72,2,f +14281,3705,0,4,f +14281,3708,0,1,f +14281,3710,15,4,f +14281,3710,1,3,f +14281,3710,4,4,f +14281,3710,0,2,f +14281,3713,71,2,f +14281,3713,71,1,t +14281,3788,14,1,f +14281,3788,4,2,f +14281,3788,1,1,f +14281,3788,0,1,f +14281,3794b,15,2,f +14281,3795,14,1,f +14281,3795,15,1,f +14281,3795,4,1,f +14281,3832,0,1,f +14281,3957a,71,1,f +14281,4032a,14,4,f +14281,4032a,15,2,f +14281,40490,1,6,f +14281,4070,15,2,f +14281,4081b,0,2,f +14281,4081b,4,2,f +14281,41854,15,1,f +14281,42074,135,1,f +14281,42608,71,4,f +14281,44567a,71,1,f +14281,44674,1,1,f +14281,44674,14,1,f +14281,44674,0,1,f +14281,45179,72,3,f +14281,4519,71,3,f +14281,4589,14,2,f +14281,4589,15,4,f +14281,48336,0,1,f +14281,50943,80,1,f +14281,50943,71,1,f +14281,50944pr0001,0,4,f +14281,50946p01,0,1,f +14281,50951,0,4,f +14281,53451,15,2,f +14281,53451,15,1,t +14281,54200,40,1,t +14281,54200,14,1,t +14281,54200,33,1,t +14281,54200,40,2,f +14281,54200,15,2,t +14281,54200,36,2,t +14281,54200,14,2,f +14281,54200,33,1,f +14281,54200,15,4,f +14281,54200,36,3,f +14281,55981,71,4,f +14281,55981,14,4,f +14281,56890,0,8,f +14281,56891,0,8,f +14281,6014b,15,4,f +14281,6014b,0,4,f +14281,6126a,57,6,f +14281,6141,36,1,t +14281,6141,33,1,f +14281,6141,4,1,t +14281,6141,33,1,t +14281,6141,71,1,t +14281,6141,71,12,f +14281,6141,4,16,f +14281,6141,72,2,t +14281,6141,36,1,f +14281,6141,47,1,t +14281,6141,47,2,f +14281,6141,72,3,f +14281,6157,0,6,f +14281,6536,1,4,f +14281,6558,1,7,f +14281,6628,0,2,f +14281,6629,71,1,f +14281,6632,71,2,f +14281,85544,4,2,f +14281,85984,0,10,f +14281,88930,0,2,f +14282,3001a,4,4,f +14282,3001a,1,4,f +14282,3003,4,8,f +14282,3003,1,8,f +14282,3003,14,8,f +14282,3003,15,12,f +14282,3003,0,20,f +14282,3021,1,8,f +14282,3021,0,8,f +14282,3022,4,4,f +14282,3022,0,4,f +14282,3039,1,8,f +14282,3039,4,16,f +14282,3612,4,8,f +14282,3612,15,8,f +14282,3612,0,8,f +14282,3613,15,8,f +14282,3613,4,8,f +14282,3613,0,8,f +14282,3613,1,8,f +14282,3614b,14,32,f +14282,3660,4,8,f +14282,685p01,14,4,f +14282,685px2,14,4,f +14282,685px3,14,4,f +14282,685px4,14,4,f +14282,792c03,0,4,f +14282,792c03,15,4,f +14282,792c03,4,4,f +14282,792c03,1,4,f +14282,x196,0,4,f +14282,x197,6,4,f +14282,x197bun,7,4,f +14282,x407,0,4,f +14284,2432,14,1,f +14284,2780,0,1,t +14284,2780,0,12,f +14284,2905,71,2,f +14284,2951,0,1,f +14284,3020,14,1,f +14284,3023,14,2,f +14284,3024,47,2,f +14284,3069b,14,1,f +14284,32002,72,1,t +14284,32002,72,4,f +14284,32009,14,2,f +14284,32017,0,4,f +14284,32054,71,3,f +14284,32056,71,2,f +14284,32062,0,2,f +14284,32063,71,8,f +14284,32065,14,4,f +14284,32073,71,5,f +14284,32123b,71,12,f +14284,32123b,71,2,t +14284,32250,0,2,f +14284,32250,14,2,f +14284,32251,0,2,f +14284,32270,71,3,f +14284,32316,14,2,f +14284,32348,71,4,f +14284,32449,71,4,f +14284,32523,71,4,f +14284,32525,14,2,f +14284,32526,72,3,f +14284,32557,0,1,f +14284,3647,71,1,t +14284,3647,71,4,f +14284,3673,71,4,f +14284,3673,71,1,t +14284,3701,72,1,f +14284,3705,0,3,f +14284,3706,0,1,f +14284,3707,0,2,f +14284,3710,72,1,f +14284,3713,71,6,f +14284,3713,71,1,t +14284,3743,71,1,f +14284,3749,19,7,f +14284,40490,72,2,f +14284,41677,72,2,f +14284,42003,72,3,f +14284,4274,1,2,f +14284,4274,1,1,t +14284,44294,71,1,f +14284,44309,0,4,f +14284,4519,71,5,f +14284,4716,0,2,f +14284,48496,0,1,f +14284,48989,71,2,f +14284,50950,14,4,f +14284,55013,72,2,f +14284,56145,14,4,f +14284,6141,57,1,t +14284,6141,57,2,f +14284,6536,0,3,f +14284,6536,14,8,f +14284,6538b,71,3,f +14284,6558,0,7,f +14284,6587,72,6,f +14284,6589,71,2,f +14284,6628,0,2,f +14284,6632,14,6,f +14285,3030,0,2,f +14285,3032,71,2,f +14285,3068b,71,4,f +14285,32013,71,6,f +14285,32062,4,4,f +14285,32073,71,2,f +14285,32123b,71,1,t +14285,32123b,71,2,f +14285,32198,71,2,f +14285,3649,71,1,f +14285,3957a,71,1,f +14285,3960,71,1,f +14285,4032a,71,4,f +14285,4162,0,3,f +14285,4162pb021,0,1,f +14285,4185,71,1,f +14285,44375a,71,3,f +14285,4519,71,1,f +14285,4740,71,1,f +14285,57585,71,2,f +14285,59443,71,6,f +14285,6141,71,1,f +14285,6141,71,1,t +14285,6636,71,4,f +14285,75c20,71,1,t +14285,75c20,71,3,f +14286,2357,15,2,f +14286,2412b,1,4,f +14286,2431,71,1,f +14286,2432,71,12,f +14286,2436,71,2,f +14286,2445,0,3,f +14286,2456,1,1,f +14286,2465,15,1,f +14286,2489,70,1,f +14286,2495,4,1,f +14286,2496,0,1,f +14286,2530,72,1,t +14286,2530,72,1,f +14286,2561,70,1,f +14286,2926,0,4,f +14286,3001,14,1,f +14286,3001,1,2,f +14286,3003,1,1,f +14286,3004,14,2,f +14286,3004,1,10,f +14286,30043,71,1,f +14286,3005,1,4,f +14286,3005,15,2,f +14286,3007,1,1,f +14286,3009,1,3,f +14286,3009,15,3,f +14286,3010,1,2,f +14286,3020,1,1,f +14286,3020,15,2,f +14286,3021,4,1,f +14286,3021,14,1,f +14286,3022,14,7,f +14286,3022,1,1,f +14286,3023,1,15,f +14286,3024,71,4,f +14286,3024,182,2,f +14286,3027,72,2,f +14286,3031,72,1,f +14286,3032,14,2,f +14286,3033,1,3,f +14286,3033,72,1,f +14286,3036,15,2,f +14286,30414,15,7,f +14286,30592,71,1,f +14286,3062b,71,2,f +14286,3065,40,2,f +14286,3068b,1,4,f +14286,3068b,0,2,f +14286,3068bpr0136,72,2,f +14286,3069b,71,4,f +14286,3069b,1,4,f +14286,3069bpr0030,72,1,f +14286,3176,0,1,f +14286,32000,71,2,f +14286,32001,0,3,f +14286,32028,0,3,f +14286,3460,4,2,f +14286,3622,1,2,f +14286,3623,0,2,f +14286,3666,0,1,f +14286,3666,71,3,f +14286,3710,1,2,f +14286,3794b,4,2,f +14286,3795,1,2,f +14286,3795,72,4,f +14286,3821,1,1,f +14286,3822,1,1,f +14286,3829c01,14,1,f +14286,3832,71,1,f +14286,3839b,72,1,f +14286,3847,179,1,f +14286,3865,72,1,f +14286,3899,4,1,f +14286,3937,72,2,f +14286,3957a,15,2,f +14286,4032a,71,2,f +14286,40620,71,2,f +14286,4079,14,1,f +14286,4081b,1,2,f +14286,4085c,0,2,f +14286,4162,72,6,f +14286,4162,71,2,f +14286,4162,1,2,f +14286,4176,40,1,f +14286,42022,1,2,f +14286,42446,72,1,f +14286,44728,0,1,f +14286,44728,1,6,f +14286,4488,71,2,f +14286,4495b,4,2,f +14286,4510,71,2,f +14286,46413,1,1,f +14286,48336,0,2,f +14286,4865a,47,6,f +14286,50745,1,2,f +14286,51739,71,1,f +14286,54200,71,4,f +14286,54200,71,1,t +14286,54200,47,4,f +14286,54200,47,2,t +14286,57895,47,2,f +14286,58380,15,3,f +14286,58381,15,3,f +14286,59349,15,11,f +14286,60032,1,2,f +14286,6014b,15,10,f +14286,60596,14,3,f +14286,60601,40,2,f +14286,60616a,47,1,f +14286,6081,1,2,f +14286,6091,1,6,f +14286,6112,71,2,f +14286,6134,0,2,f +14286,61409,72,4,f +14286,6141,47,2,f +14286,6141,182,1,t +14286,6141,0,9,f +14286,6141,182,2,f +14286,6141,36,8,f +14286,6141,36,3,t +14286,6141,47,1,t +14286,6141,0,2,t +14286,61678,1,8,f +14286,6186,191,1,f +14286,64644,0,2,f +14286,6636,1,2,f +14286,87079,1,1,f +14286,87552,1,6,f +14286,87697,0,10,f +14286,95120,0,1,f +14290,3317,14,1,f +14290,3433,14,1,f +14290,828,4,1,f +14291,122c01,7,3,f +14291,3004,7,1,f +14291,3020,7,1,f +14291,3022,7,3,f +14291,3023,7,1,f +14291,3034,7,1,f +14291,3039p23,7,1,f +14291,3068b,7,2,f +14291,3069b,7,1,f +14291,3626apr0001,14,2,f +14291,3665,1,2,f +14291,3679,7,1,f +14291,3680,7,1,f +14291,3701,1,1,f +14291,3701,7,1,f +14291,3710,1,1,f +14291,3747a,1,1,f +14291,3749,0,2,f +14291,3794a,7,1,f +14291,3794a,1,1,f +14291,3795,7,1,f +14291,3829c01,1,1,f +14291,3829c01,7,1,f +14291,3838,15,1,f +14291,3838,4,1,f +14291,3842a,4,1,f +14291,3842a,15,1,f +14291,3935,1,1,f +14291,3936,1,1,f +14291,3937,7,1,f +14291,3938,7,1,f +14291,3941,7,2,f +14291,4288,0,6,f +14291,4349,0,2,f +14291,4349,7,2,f +14291,4360,0,1,f +14291,4588,7,2,f +14291,4590,7,2,f +14291,4596,1,1,f +14291,4596,7,1,f +14291,4598,1,1,f +14291,6141,46,4,f +14291,6141,34,2,f +14291,6141,36,2,f +14291,970c00,15,1,f +14291,970c00,4,1,f +14291,973p90c02,4,1,f +14291,973p90c05,15,1,f +14292,30408pr0002,15,1,f +14292,3626cpr0922,0,1,f +14292,58247,0,1,f +14292,970x026,15,1,f +14292,973pr1986c01,15,1,f +14294,2335pr0001,15,1,f +14294,2335pr0002,15,1,f +14294,2417,288,1,f +14294,2431,308,5,f +14294,2476a,28,6,f +14294,2526,1,1,t +14294,2526,1,1,f +14294,2527,4,1,f +14294,2530,72,1,t +14294,2530,72,2,f +14294,2542,15,2,f +14294,2543,288,1,f +14294,2543,1,1,f +14294,2545pr0001,0,1,f +14294,2551,272,1,f +14294,2555,0,2,f +14294,2562,70,1,f +14294,2736,71,1,f +14294,3002,71,2,f +14294,30043,0,1,f +14294,30055,70,2,f +14294,30153,46,2,f +14294,30153,41,1,f +14294,30153,45,1,f +14294,30176,2,2,f +14294,3020,1,1,f +14294,3020,72,1,f +14294,3020,70,1,f +14294,3023,19,2,f +14294,30239,2,1,f +14294,3035,19,2,f +14294,30374,0,1,f +14294,30374,15,1,f +14294,3039,71,2,f +14294,3040b,72,3,f +14294,3062b,72,2,f +14294,3062b,70,9,f +14294,3062b,0,2,f +14294,3068bpr0139a,19,1,f +14294,3069b,70,1,f +14294,32034,0,1,f +14294,32530,0,1,f +14294,3455,71,1,f +14294,3626bpr0270,14,1,f +14294,3626bpr0565,14,1,f +14294,3626bpr0566,14,1,f +14294,3666,72,1,f +14294,3673,71,1,t +14294,3673,71,1,f +14294,3679,71,1,f +14294,3680,0,1,f +14294,3684,71,2,f +14294,3700,19,1,f +14294,3701,71,1,f +14294,3710,70,5,f +14294,3794b,72,1,f +14294,3795,72,1,f +14294,3832,72,1,f +14294,3941,70,2,f +14294,4032a,19,6,f +14294,4032a,4,2,f +14294,4081b,0,2,f +14294,4460b,72,4,f +14294,4529,0,1,f +14294,4589,15,2,f +14294,4623,72,2,f +14294,4738a,297,1,f +14294,4739a,297,1,f +14294,47990,72,1,f +14294,48729a,72,1,t +14294,48729a,72,1,f +14294,48729b,72,1,t +14294,53451,15,4,f +14294,53451,15,1,t +14294,54200,288,1,t +14294,54200,288,1,f +14294,57503,334,1,f +14294,57504,334,1,f +14294,57505,334,1,f +14294,57506,334,1,f +14294,6026,288,1,f +14294,6027,288,1,f +14294,60474,0,1,f +14294,6132,71,1,f +14294,6141,0,1,t +14294,6141,0,1,f +14294,6148,2,1,f +14294,61485,0,1,f +14294,64644,297,1,f +14294,64647,57,2,f +14294,64648,135,1,f +14294,64649,19,1,f +14294,84943,148,1,f +14294,970c00,15,1,f +14294,970c00,288,1,f +14294,970c00pr0123,14,1,f +14294,973pr1439c01,70,1,f +14294,973pr1440c01,1,1,f +14294,973pr1441c01,4,1,f +14297,2736,7,4,f +14297,2780,0,4,f +14297,30173a,3,2,f +14297,32005b,27,2,f +14297,32013,19,2,f +14297,32013,0,2,f +14297,32016,19,2,f +14297,32016,0,2,f +14297,32017,0,1,f +14297,32034,7,1,f +14297,32039,0,1,f +14297,32054,0,2,f +14297,32056,8,2,f +14297,32056,27,4,f +14297,32062,0,12,f +14297,32065,19,2,f +14297,32073,0,3,f +14297,32123b,7,8,f +14297,32138,0,2,f +14297,32165,0,2,f +14297,32166,8,2,f +14297,32184,0,1,f +14297,32271,27,2,f +14297,32291,27,2,f +14297,32305,0,1,f +14297,32305,8,1,f +14297,32306,8,1,f +14297,32306,15,1,f +14297,32306,0,1,f +14297,32307,8,2,f +14297,32307,0,4,f +14297,32307,19,2,f +14297,32308,0,1,f +14297,32308,27,1,f +14297,32310pb01,15,1,f +14297,32310pb02,27,1,f +14297,32311,15,2,f +14297,32311,0,1,f +14297,32439a,8,3,f +14297,32439a,41,2,f +14297,32439a,21,2,f +14297,32439a,3,3,f +14297,3647,15,1,f +14297,3648b,15,1,f +14297,3673,7,2,f +14297,3705,0,7,f +14297,3706,0,4,f +14297,3707,0,2,f +14297,3713,7,3,f +14297,3749,7,6,f +14297,4497,41,2,f +14297,4519,0,4,f +14297,6536,0,1,f +14297,6536,15,2,f +14297,6536,19,2,f +14297,6538b,19,1,f +14297,6538b,3,1,f +14297,6538b,0,2,f +14297,6553,3,1,f +14297,6628,0,2,f +14297,71509,0,1,f +14297,rb00182,0,1,f +14297,rb00182,15,1,f +14297,rb00182,19,1,f +14297,rb00182,27,1,f +14298,3003,0,1,f +14298,3004,15,1,f +14298,3005pe1,15,2,f +14298,3005pe1,15,1,t +14298,3010,15,2,f +14298,3020,0,1,f +14298,3022,15,1,f +14298,3039,15,2,f +14298,3660,15,2,f +14298,3731,4,1,f +14299,2456,14,1,f +14299,2456,15,1,f +14299,3001,15,3,f +14299,3001,1,4,f +14299,3001,14,2,f +14299,3001,4,4,f +14299,3001,0,2,f +14299,3001pr1,14,1,f +14299,3002,4,2,f +14299,3002,1,2,f +14299,3002,14,2,f +14299,3003,15,4,f +14299,3003,1,6,f +14299,3003,14,4,f +14299,3003,4,8,f +14299,3003,0,2,f +14299,3003pe1,14,2,f +14299,4130,4,1,f +14299,4131,15,1,f +14299,4132,4,1,f +14299,4133,15,1,f +14299,4202,2,1,f +14299,4727,2,2,f +14299,4728,1,2,f +14299,4743,14,1,f +14299,4744,4,1,f +14299,6007,8,1,f +14300,11092,179,4,f +14300,15573,4,1,f +14300,15573,71,1,f +14300,19888,4,1,f +14300,19888,85,1,f +14300,2412b,179,1,f +14300,24151,1,1,f +14300,24151,85,1,f +14300,2431,85,2,f +14300,2431,1,2,f +14300,2432,70,2,f +14300,24326,71,2,f +14300,29156,1,1,f +14300,298c02,4,1,f +14300,298c02,71,1,t +14300,298c02,71,1,f +14300,298c02,4,1,t +14300,30028,0,4,f +14300,3022,70,2,f +14300,3023,1,3,f +14300,3023,85,4,f +14300,3023,28,4,f +14300,30385,35,1,f +14300,30385,143,1,f +14300,3626cpr2063,15,1,f +14300,3626cpr2064,78,1,f +14300,40233,0,1,f +14300,41879a,1,2,f +14300,44661,85,1,f +14300,44661,1,1,f +14300,4590,71,1,f +14300,4624,71,1,t +14300,4624,15,2,f +14300,4624,71,2,f +14300,47759,85,1,f +14300,54200,40,2,f +14300,54200,71,1,t +14300,54200,71,4,f +14300,54200,47,1,t +14300,54200,47,2,f +14300,54200,40,1,t +14300,59895,0,4,f +14300,61409,71,2,f +14300,61409,1,2,f +14300,6141,182,2,f +14300,6141,182,1,t +14300,6141,47,1,t +14300,6141,47,2,f +14300,74967,15,2,f +14300,74967,71,2,f +14300,973pr3601c01,1,1,f +14300,973pr3603c01,1,1,f +14300,98726,0,1,f +14300,99206,0,2,f +14300,99207,71,2,f +14300,99780,72,8,f +14301,2341,7,1,f +14301,2420,19,2,f +14301,2420,0,3,f +14301,2431,0,2,f +14301,2431,7,1,f +14301,2431pa0,19,1,f +14301,2432,0,3,f +14301,2454a,19,5,f +14301,2454pa0,19,1,f +14301,2454px1,19,1,f +14301,2454px3,19,1,f +14301,2456,7,1,f +14301,2465px1,19,1,f +14301,2536,6,5,f +14301,2555,0,2,f +14301,2563,6,1,f +14301,2566,2,1,f +14301,298c03,0,1,t +14301,298c03,0,1,f +14301,3001,7,1,f +14301,3003,7,1,f +14301,3004,7,16,f +14301,3005,8,2,f +14301,3005,7,1,f +14301,3008,8,1,f +14301,3008,7,4,f +14301,3009,8,4,f +14301,3009,7,3,f +14301,30099,19,4,f +14301,30141,8,2,f +14301,30147,8,1,f +14301,30149,19,1,f +14301,30152pat0001,0,1,f +14301,30153,36,1,f +14301,30154,0,1,f +14301,30155,8,4,f +14301,30158,6,1,f +14301,30161pa1,47,1,f +14301,30164,4,1,f +14301,30167,6,1,f +14301,30168px1,14,1,f +14301,30172,15,1,f +14301,3021,0,1,f +14301,3022,7,5,f +14301,3022,0,1,f +14301,3022,19,1,f +14301,3023,7,4,f +14301,3023,19,1,f +14301,3023,1,2,f +14301,3024,0,1,f +14301,3032,7,1,f +14301,3040b,7,9,f +14301,3045,7,2,f +14301,3062b,4,5,f +14301,3062b,14,4,f +14301,3062b,7,12,f +14301,3062b,1,8,f +14301,3068b,0,1,f +14301,3068bpx21,19,1,f +14301,3069b,0,3,f +14301,3069b,7,2,f +14301,3069bpa0,19,1,f +14301,32001,7,1,f +14301,32123b,7,1,t +14301,32123b,7,3,f +14301,3307,19,2,f +14301,3460,7,1,f +14301,3483,0,4,f +14301,3623,7,1,f +14301,3623,0,2,f +14301,3626bpa1,14,1,f +14301,3626bpa2,7,1,f +14301,3626bpa3,14,1,f +14301,3626bpa9,14,1,f +14301,3665,8,2,f +14301,3673,7,1,f +14301,3679,7,1,f +14301,3680,0,1,f +14301,3688,19,1,f +14301,3700,7,2,f +14301,3705,0,1,f +14301,3707,0,1,f +14301,3710,0,1,f +14301,3794a,0,5,f +14301,3795,7,1,f +14301,3829c01,7,1,f +14301,3837,8,1,f +14301,3841,8,1,f +14301,3857,19,1,f +14301,3878,0,1,f +14301,3937,7,1,f +14301,3938,0,1,f +14301,3941,14,1,f +14301,4032a,2,1,f +14301,4035,4,1,f +14301,4070,0,8,f +14301,4161,0,2,f +14301,4162,0,4,f +14301,4286,7,6,f +14301,4477,7,3,f +14301,4497,6,2,f +14301,4528,0,1,f +14301,4590,7,1,f +14301,4625,7,1,f +14301,6019,0,1,f +14301,6083,8,1,f +14301,6087,19,2,f +14301,6091,0,1,f +14301,6141,47,2,f +14301,6141,47,1,t +14301,6141,0,1,t +14301,6141,0,6,f +14301,6148,2,4,f +14301,6222,8,1,f +14301,6232,4,1,f +14301,6249,8,2,f +14301,6541,7,2,f +14301,6541,0,2,f +14301,970c00,0,2,f +14301,970c00,2,1,f +14301,970c11pb01,0,1,f +14301,973p22c01,0,1,f +14301,973pa1c01,15,1,f +14301,973pa2c01,0,1,f +14301,973pb0391c01,19,1,f +14302,3626bpr0733,14,1,f +14302,88646,0,1,f +14302,90370pr0002,0,1,f +14302,93219pr0002,0,1,f +14302,93221pr0001,0,1,f +14302,970c00pr0185,379,1,f +14302,973pr1703c01,15,1,f +14303,29bc01,4,19,f +14303,29bc01,15,19,f +14306,2780,0,3,t +14306,2780,0,21,f +14306,32014,72,2,f +14306,32017,0,2,f +14306,32056,0,2,f +14306,32062,4,4,f +14306,32123b,71,6,f +14306,32123b,71,2,t +14306,32174,272,16,f +14306,32249,0,4,f +14306,32250,1,4,f +14306,32449,0,2,f +14306,32476,0,2,f +14306,32524,0,2,f +14306,32524,1,3,f +14306,3705,0,4,f +14306,3707,0,1,f +14306,3713,71,4,f +14306,3713,71,1,t +14306,40490,0,1,f +14306,41669,42,2,f +14306,42003,0,8,f +14306,43093,1,14,f +14306,44294,71,2,f +14306,4519,71,8,f +14306,45749,272,2,f +14306,47295,272,1,f +14306,47296,272,2,f +14306,47328,272,2,f +14306,48729a,0,2,f +14306,50898,0,2,f +14306,50898,1,2,f +14306,50921,1,2,f +14306,50923,72,4,f +14306,53544,272,2,f +14306,53545,272,3,f +14306,53562pat0002,320,1,f +14306,53568,135,2,f +14306,53585,0,6,f +14306,53586,135,2,f +14306,55013,72,2,f +14306,57555,46,1,f +14306,57555,182,1,f +14306,57556,135,1,f +14306,57562,135,2,f +14306,57563,135,6,f +14306,57574pat0001,33,1,f +14306,59577,179,2,f +14306,6536,0,3,f +14306,6553,0,2,f +14306,6558,0,3,f +14306,6587,72,2,f +14306,78c02,135,1,f +14307,2446,4,1,f +14307,2447,0,1,f +14307,3039,4,1,f +14307,3062b,8,2,f +14307,3626bpx100,14,1,f +14307,3795,0,1,f +14307,3829c01,4,1,f +14307,4600,7,2,f +14307,6014a,14,4,f +14307,6015,0,4,f +14307,970c00,4,1,f +14307,973pb0023c01,15,1,f +14308,case4,4,1,f +14309,2335,0,1,f +14309,2439,72,1,f +14309,2540,15,2,f +14309,3004,25,2,f +14309,3010,25,3,f +14309,3020,72,3,f +14309,3040b,25,2,f +14309,3139,0,2,f +14309,3626bpr0387,14,1,f +14309,3837,72,1,f +14309,4485,0,1,f +14309,4624,15,2,f +14309,4624,15,1,t +14309,4740,72,1,f +14309,4740,72,1,t +14309,4865a,15,3,f +14309,6141,72,1,t +14309,6141,72,3,f +14309,6157,0,1,f +14309,970c00,25,1,f +14309,973pr1182c01,25,1,f +14310,1,1,2,f +14310,2,1,1,f +14310,3,15,2,f +14310,3008,1,2,f +14310,3069a,15,2,f +14310,3069a,1,7,f +14310,3069a,4,2,f +14310,3297,1,1,f +14310,3298,1,2,f +14310,837,1,1,f +14310,838,15,1,f +14311,75215,7,1,f +14314,2340,1,2,f +14314,2412b,14,3,f +14314,2412b,1,3,f +14314,2431,1,2,f +14314,2450,1,2,f +14314,2460,1,1,f +14314,2540,14,2,f +14314,2654,72,4,f +14314,3007,1,1,f +14314,3020,1,3,f +14314,3020,14,1,f +14314,3021,1,1,f +14314,3023,14,2,f +14314,3023,47,2,f +14314,3032,1,1,f +14314,3032,0,1,f +14314,3032,14,1,f +14314,3034,0,1,f +14314,30361,72,4,f +14314,30367b,72,2,f +14314,3039,1,1,f +14314,3040b,14,2,f +14314,3040b,1,2,f +14314,30414,1,2,f +14314,3048c,1,1,f +14314,30553,72,4,f +14314,30602,40,2,f +14314,3068b,1,1,f +14314,3068b,72,2,f +14314,32002,72,2,f +14314,32034,0,2,f +14314,32062,0,2,f +14314,32064b,1,4,f +14314,32187,71,2,f +14314,3475b,72,2,f +14314,3660,1,1,f +14314,3705,0,2,f +14314,3706,0,2,f +14314,3707,0,1,f +14314,3710,1,3,f +14314,3749,19,4,f +14314,3794a,0,2,f +14314,3795,14,3,f +14314,3795,0,1,f +14314,3941,72,2,f +14314,4032a,0,9,f +14314,4070,1,2,f +14314,41747,0,1,f +14314,41748,0,1,f +14314,41764,73,2,f +14314,41765,73,2,f +14314,42022,1,4,f +14314,42023,1,6,f +14314,4266360,89,1,f +14314,4286,14,2,f +14314,43093,1,4,f +14314,43710,1,1,f +14314,43711,1,1,f +14314,43722,14,1,f +14314,43723,14,1,f +14314,44302a,14,2,f +14314,44567a,72,4,f +14314,44567a,14,3,f +14314,44661,1,2,f +14314,44676,0,2,f +14314,44728,14,1,f +14314,4519,71,2,f +14314,4589,57,2,f +14314,4589,0,4,f +14314,47458,1,1,f +14314,50304,14,1,f +14314,50304,1,1,f +14314,50305,1,1,f +14314,50305,14,1,f +14314,6141,57,2,f +14314,6141,71,2,f +14314,6541,14,2,f +14314,6632,0,1,f +14317,10197,72,6,f +14317,10201,4,2,f +14317,10247,71,4,f +14317,10247,72,1,f +14317,10247,0,4,f +14317,10928,72,1,f +14317,11153,70,2,f +14317,11203,72,3,f +14317,11211,71,1,f +14317,11214,72,6,f +14317,11215,0,3,f +14317,11305,297,2,f +14317,11399,72,2,f +14317,11458,72,6,f +14317,11476,71,1,f +14317,11477,0,4,f +14317,11477,326,2,f +14317,11478,0,6,f +14317,11833,71,1,f +14317,13547,0,2,f +14317,13608,179,2,f +14317,13731,326,2,f +14317,14226c41,0,1,f +14317,14413,0,2,f +14317,14418,71,3,f +14317,14419,72,3,f +14317,14716,308,4,f +14317,14769,297,6,f +14317,15064,158,2,f +14317,15068,308,4,f +14317,15207,70,4,f +14317,15210,0,3,f +14317,15279,297,1,f +14317,15367,0,2,f +14317,15392,72,1,t +14317,15392,72,6,f +14317,15400,72,2,f +14317,15403,0,6,f +14317,15456,0,1,f +14317,15462,28,3,f +14317,15535,4,1,f +14317,15571,4,2,f +14317,15573,70,2,f +14317,15573,272,7,f +14317,15619,272,1,f +14317,15619,0,1,t +14317,15619,0,1,f +14317,15619,272,1,t +14317,15672,28,4,f +14317,15712,0,4,f +14317,15712,297,2,f +14317,15712,70,4,f +14317,15712,72,1,f +14317,18396pat0002,272,4,f +14317,18651,0,7,f +14317,18654,72,2,t +14317,18654,72,5,f +14317,18674,70,6,f +14317,18677,71,6,f +14317,19020,182,3,f +14317,19159,0,1,f +14317,19857pat0001,2,1,f +14317,19857pat0004,0,1,f +14317,19857pat0006,320,1,f +14317,19858pat0002,42,2,f +14317,19859pat0002,42,2,f +14317,19861pr0001,42,1,f +14317,19861pr0002,42,1,f +14317,20566pat02,148,3,f +14317,20568pat01,272,1,f +14317,20612,40,1,f +14317,20643,272,2,f +14317,21763,47,1,f +14317,2343,179,4,f +14317,2412b,0,4,f +14317,2412b,297,3,f +14317,2412b,71,1,f +14317,2412b,72,4,f +14317,2412b,70,6,f +14317,2412b,4,2,f +14317,2419,0,4,f +14317,2420,71,2,f +14317,2420,70,6,f +14317,2420,4,2,f +14317,2431,320,2,f +14317,2431pr0017,14,1,f +14317,2432,70,3,f +14317,2450,308,4,f +14317,2450,320,2,f +14317,2476a,28,4,f +14317,2489,72,4,f +14317,2530,72,1,t +14317,2530,72,1,f +14317,2540,19,2,f +14317,2544,70,1,f +14317,2653,71,4,f +14317,2653,0,8,f +14317,2654,47,4,f +14317,2654,72,1,f +14317,2654,46,9,f +14317,2730,0,4,f +14317,2744,308,2,f +14317,2780,0,4,t +14317,2780,0,23,f +14317,2825,4,2,f +14317,2877,0,4,f +14317,298c02,4,2,f +14317,298c02,4,1,t +14317,3001,288,1,f +14317,3001,4,2,f +14317,3002,0,2,f +14317,3003,0,2,f +14317,30043,0,2,f +14317,3005,320,2,f +14317,3008,0,1,f +14317,3009,0,4,f +14317,30094,70,1,f +14317,30099,320,2,f +14317,30136,28,4,f +14317,30137,70,2,f +14317,30150,84,1,f +14317,30153,33,1,f +14317,30165,0,1,f +14317,30173b,0,3,t +14317,30173b,297,1,t +14317,30173b,158,1,t +14317,30173b,158,2,f +14317,30173b,179,1,f +14317,30173b,0,3,f +14317,30173b,297,1,f +14317,30173b,179,1,t +14317,3020,0,4,f +14317,3020,272,6,f +14317,3020,28,2,f +14317,3020,70,6,f +14317,3021,72,2,f +14317,3021,70,2,f +14317,3021,25,2,f +14317,3021,272,1,f +14317,3022,0,1,f +14317,3022,70,2,f +14317,3022,72,2,f +14317,3022,71,1,f +14317,3023,72,2,f +14317,3023,28,6,f +14317,3023,42,3,f +14317,3023,46,2,f +14317,3023,70,2,f +14317,3023,71,8,f +14317,3023,19,3,f +14317,3023,4,2,f +14317,30238,42,1,f +14317,3024,47,1,t +14317,3024,47,2,f +14317,30259,70,6,f +14317,3029,72,1,f +14317,3029,0,1,f +14317,30292,0,1,f +14317,3030,70,5,f +14317,3031,70,3,f +14317,3032,70,2,f +14317,3034,28,2,f +14317,3037,70,2,f +14317,30374,42,1,f +14317,30375,72,2,f +14317,30382,326,4,f +14317,30414,72,1,f +14317,30503,70,2,f +14317,30552,72,4,f +14317,3062b,308,4,f +14317,3062b,41,1,f +14317,3068b,70,2,f +14317,3068b,320,2,f +14317,3068b,4,2,f +14317,3069b,19,6,f +14317,3176,72,1,f +14317,3176,320,1,f +14317,32000,0,2,f +14317,32002,19,1,f +14317,32002,19,1,t +14317,32013,320,17,f +14317,32016,0,2,f +14317,32034,320,6,f +14317,32039,4,1,f +14317,32054,0,2,f +14317,32054,4,4,f +14317,32056,72,4,f +14317,32062,4,9,f +14317,32064a,320,12,f +14317,32064a,72,2,f +14317,32072,0,2,f +14317,32073,71,2,f +14317,32123b,71,7,f +14317,32123b,71,2,t +14317,32187,71,4,f +14317,32192,72,2,f +14317,32271,0,2,f +14317,32278,0,3,f +14317,32525,0,2,f +14317,32526,0,2,f +14317,33085,14,1,f +14317,3460,308,11,f +14317,3623,70,2,f +14317,3623,0,2,f +14317,3626bpr0745,14,1,f +14317,3626c,143,2,f +14317,3626cpr0893,14,1,f +14317,3626cpr1366,14,1,f +14317,3626cpr1642,14,1,f +14317,3626cpr1679,42,1,f +14317,3626cpr1688,42,1,f +14317,3626cpr1691,42,1,f +14317,3626cpr1692,42,1,f +14317,3626cpr1693,42,1,f +14317,3665,308,2,f +14317,3665,0,1,f +14317,3666,28,11,f +14317,3673,71,1,t +14317,3673,71,12,f +14317,3700,72,2,f +14317,3701,70,6,f +14317,3702,0,2,f +14317,3703,0,5,f +14317,3705,0,13,f +14317,3706,0,1,f +14317,3709,0,1,f +14317,3710,0,2,f +14317,3710,15,4,f +14317,3710,70,2,f +14317,3710,72,2,f +14317,3738,0,2,f +14317,3747b,70,2,f +14317,3749,19,4,f +14317,3795,308,12,f +14317,3830,70,2,f +14317,3831,70,2,f +14317,3832,70,1,f +14317,3836,70,1,f +14317,3894,0,2,f +14317,3899,4,1,f +14317,3937,72,1,f +14317,3956,0,3,f +14317,3958,72,2,f +14317,40234,71,1,f +14317,4032a,2,6,f +14317,4032a,70,13,f +14317,4032a,308,1,f +14317,4032a,0,1,f +14317,4079,72,2,f +14317,4081b,72,5,f +14317,4081b,4,2,f +14317,40902,0,4,f +14317,4150,72,2,f +14317,4162,320,4,f +14317,4162,72,2,f +14317,4162,70,2,f +14317,41669,47,2,f +14317,41677,72,2,f +14317,41678,71,1,f +14317,41749,320,1,f +14317,41750,320,1,f +14317,42003,4,2,f +14317,42060,320,1,f +14317,42061,320,1,f +14317,4217,71,2,f +14317,4274,1,1,t +14317,4274,71,1,t +14317,4274,71,10,f +14317,4274,1,6,f +14317,4282,72,2,f +14317,4282,0,2,f +14317,4286,0,2,f +14317,4286,320,4,f +14317,43093,1,3,f +14317,43710,4,1,f +14317,43711,4,1,f +14317,43712,4,1,f +14317,43719,272,2,f +14317,43719,0,1,f +14317,43887,0,3,f +14317,44302a,71,2,f +14317,4477,0,2,f +14317,4477,70,2,f +14317,4499,70,1,f +14317,4510,19,4,f +14317,4519,71,4,f +14317,4590,72,1,f +14317,4738a,0,1,f +14317,47397,0,1,f +14317,47397,320,1,f +14317,47398,0,1,f +14317,47398,320,1,f +14317,4739a,0,1,f +14317,4740,82,4,f +14317,47406,0,1,f +14317,47455,72,1,f +14317,47456,308,1,f +14317,47457,72,1,f +14317,47457,4,1,f +14317,47753,272,1,f +14317,48002,0,1,f +14317,48169,72,1,f +14317,48171,72,1,f +14317,48336,4,2,f +14317,48336,297,4,f +14317,4865b,28,1,f +14317,4871,272,1,f +14317,48729b,71,2,f +14317,48729b,71,1,t +14317,49668,179,2,f +14317,49668,182,1,f +14317,50304,28,1,f +14317,50305,28,1,f +14317,50859b,0,1,f +14317,50950,0,6,f +14317,50950,158,2,f +14317,52107,71,1,f +14317,53451,158,2,t +14317,53451,179,4,f +14317,53451,4,2,t +14317,53451,158,14,f +14317,53451,4,4,f +14317,53451,297,3,f +14317,53451,297,1,t +14317,53451,179,1,t +14317,53585,0,1,f +14317,54200,158,2,t +14317,54200,14,1,t +14317,54200,158,6,f +14317,54200,14,1,f +14317,54383,272,1,f +14317,54384,272,1,f +14317,55013,72,2,f +14317,55981,297,2,f +14317,57909b,308,1,f +14317,59443,4,2,f +14317,60169,42,2,f +14317,60219,0,1,f +14317,604547,179,1,f +14317,604548,179,1,f +14317,604549,179,1,f +14317,604550,179,1,f +14317,604551,179,1,f +14317,604552,179,1,f +14317,604553,179,1,f +14317,604614,179,1,f +14317,604615,179,1,f +14317,60470a,0,2,f +14317,60474,297,2,f +14317,60477,0,2,f +14317,60478,72,1,f +14317,60479,0,1,f +14317,60479,70,4,f +14317,60483,71,4,f +14317,60485,71,1,f +14317,60581,40,2,f +14317,60593,70,4,f +14317,60621,148,2,f +14317,60657,71,1,f +14317,60658,71,1,f +14317,6081,72,1,f +14317,60897,4,8,f +14317,6091,0,6,f +14317,6091,320,2,f +14317,61183,19,1,f +14317,61252,297,8,f +14317,61252,72,2,f +14317,6134,1,1,f +14317,6141,42,7,f +14317,6141,179,1,t +14317,6141,297,4,t +14317,6141,70,6,f +14317,6141,42,2,t +14317,6141,70,1,t +14317,6141,297,31,f +14317,6141,4,8,f +14317,6141,4,1,t +14317,6141,179,13,f +14317,61485,0,1,f +14317,62113,72,1,f +14317,6231,70,8,f +14317,6232,72,2,f +14317,62361,70,1,f +14317,62462,320,2,f +14317,6249,72,2,f +14317,62711,0,1,f +14317,62743,0,6,f +14317,63864,0,2,f +14317,63868,70,3,f +14317,63868,0,2,f +14317,63965,297,1,f +14317,64225,272,2,f +14317,64276,0,2,f +14317,64567,0,1,f +14317,64567,0,1,t +14317,64567,297,1,t +14317,64567,297,1,f +14317,64644,308,1,f +14317,64647,15,1,t +14317,64647,15,1,f +14317,64727,4,2,f +14317,64728,4,1,f +14317,6536,72,2,f +14317,6541,4,2,f +14317,6553,72,5,f +14317,6558,1,5,f +14317,6587,28,6,f +14317,6628,0,9,f +14317,6629,72,2,f +14317,73983,4,4,f +14317,73983,72,4,f +14317,73983,0,4,f +14317,76766,71,1,f +14317,85983,320,1,f +14317,85984,4,2,f +14317,85984pr0002,72,2,f +14317,86038,0,1,f +14317,87079,72,2,f +14317,87079,326,2,f +14317,87079,70,1,f +14317,87081,70,1,f +14317,87747,0,2,t +14317,87747,0,3,f +14317,87991,0,1,f +14317,87994,297,1,f +14317,87994,297,1,t +14317,88072,0,2,f +14317,88283,0,1,f +14317,90194,72,1,f +14317,90609,42,2,f +14317,90630,0,2,f +14317,90650,0,2,f +14317,91988,72,1,f +14317,91988,70,1,f +14317,92013,0,2,f +14317,92280,71,2,f +14317,92280,0,10,f +14317,92585,4,1,f +14317,92690,70,2,f +14317,92690,297,1,f +14317,92946,4,4,f +14317,92947,0,2,f +14317,92947,297,5,f +14317,93055,297,2,f +14317,93055,297,1,t +14317,93059,85,1,f +14317,93059,4,2,f +14317,93059,297,1,f +14317,93069,15,1,f +14317,93273,70,2,f +14317,93273,72,1,f +14317,93273,272,2,f +14317,93274,72,2,f +14317,93571,0,2,f +14317,94925,71,1,f +14317,95199,0,2,f +14317,95343,71,1,f +14317,95344,28,1,t +14317,95344,28,1,f +14317,96874,25,1,t +14317,970c00pr0875,320,1,f +14317,970c00pr0879,0,1,f +14317,970c00pr0880,15,1,f +14317,970c00pr0881,0,1,f +14317,970x140pr0952,42,1,f +14317,970x141pr0950,42,1,f +14317,970x268pr001,42,1,f +14317,973pr3020c01,288,1,f +14317,973pr3030c01,0,1,f +14317,973pr3031c01,15,1,f +14317,973pr3032c01,0,1,f +14317,973pr3036c01,320,1,f +14317,973pr3038c01,272,1,f +14317,973pr3039c01,272,1,f +14317,973pr3041c01,85,1,f +14317,973pr3042c01,272,1,f +14317,98132,0,2,f +14317,98132,297,1,f +14317,98137,158,1,f +14317,98137,297,6,f +14317,98138,297,15,f +14317,98138,297,3,t +14317,98138,47,1,f +14317,98138,47,1,t +14317,98138pr0014,297,1,t +14317,98138pr0014,297,2,f +14317,98139,148,1,t +14317,98139,297,1,t +14317,98139,297,1,f +14317,98139,148,1,f +14317,98141,0,1,f +14317,98313,148,8,f +14317,98383,297,1,f +14317,98606pr0003,148,1,f +14317,99008,19,1,f +14317,99207,71,3,f +14317,99207,0,4,f +14317,99780,4,1,f +14317,99780,71,2,f +14317,99780,0,3,f +14318,18831pr0001,15,1,f +14318,18832pr0001,15,1,f +14318,3626cpr1551,14,1,f +14318,88646,0,1,f +14318,89522,15,1,f +14318,970c00pr0789,15,1,f +14318,973pr2843c01,15,1,f +14319,11609,191,1,f +14319,13392pr0001,212,1,f +14319,2450,19,1,f +14319,30218,15,1,f +14319,3036,322,1,f +14319,3040b,72,1,f +14319,33121,191,1,f +14319,33291,5,1,f +14319,33291,10,1,f +14319,3679,7,1,f +14319,3680,1,1,f +14319,4286,7,1,f +14319,54200,72,1,f +14319,54200,143,2,f +14319,6141,45,1,f +14319,6141,27,1,f +14322,2340,14,1,f +14322,2376,0,1,f +14322,2412b,14,2,f +14322,2420,14,2,f +14322,2466,14,4,f +14322,2654,0,2,f +14322,2730,14,2,f +14322,2745,14,2,f +14322,2780,0,29,f +14322,2793c01,14,1,f +14322,2797c02,14,1,f +14322,2817,14,1,f +14322,2819,7,1,f +14322,2825,7,4,f +14322,3001,7,1,f +14322,3003,7,1,f +14322,3004,7,4,f +14322,3022,0,2,f +14322,3022,14,7,f +14322,3022,7,3,f +14322,3023,14,8,f +14322,3024,36,1,f +14322,3031,14,1,f +14322,3039,14,2,f +14322,3040b,7,2,f +14322,3068b,14,1,f +14322,32000,7,2,f +14322,32002,8,2,t +14322,32008,0,2,f +14322,32013,7,6,f +14322,32013,14,2,f +14322,32014,7,3,f +14322,32014,14,2,f +14322,32015,14,6,f +14322,32016,14,2,f +14322,32017,0,6,f +14322,32037,0,1,f +14322,32038,14,1,f +14322,32039,0,1,f +14322,32062,0,16,f +14322,3482,0,2,f +14322,3483,0,2,f +14322,3623,14,1,f +14322,3650c,7,1,f +14322,3660,7,1,f +14322,3665,7,2,f +14322,3666,14,1,f +14322,3666,14,1,t +14322,3673,7,3,f +14322,3700,14,15,f +14322,3700,7,2,f +14322,3703,14,10,f +14322,3703,0,2,f +14322,3705,0,13,f +14322,3706,0,10,f +14322,3707,0,4,f +14322,3709,14,1,t +14322,3709,0,2,f +14322,3709,14,6,f +14322,3710,14,2,f +14322,3713,7,1,t +14322,3713,7,3,f +14322,3737,0,1,f +14322,3747b,0,1,f +14322,3749,7,8,f +14322,3749,7,2,t +14322,3894,14,7,f +14322,3941,14,2,f +14322,4019,7,2,f +14322,4150,0,2,f +14322,4185,7,2,t +14322,4265b,7,1,t +14322,4265b,7,28,f +14322,4274,7,1,t +14322,4274,7,7,f +14322,4287,14,1,f +14322,4519,0,1,f +14322,4716,0,1,f +14322,5102c13,7,1,f +14322,5102c18,7,1,f +14322,5102c20,1,1,f +14322,5102c24,1,1,f +14322,6041,0,4,f +14322,6259,14,4,f +14322,6536,14,4,f +14322,6536,7,11,f +14322,6538b,7,1,f +14322,6553,14,2,f +14322,6553,7,11,f +14322,6558,0,8,f +14322,6585,14,1,f +14322,6587,8,6,f +14322,6589,7,4,f +14322,6629,0,4,f +14322,6629,14,2,f +14322,6632,14,12,f +14322,6632,0,2,f +14322,6632,7,2,f +14322,73129,7,1,f +14322,75215,7,1,f +14322,75535,14,2,f +14322,75974,1,1,f +14322,75c15,14,1,f +14322,75c21,14,1,f +14322,bb145c07,14,1,f +14322,tech002,9999,1,f +14324,458,7,8,f +14327,12825,72,2,f +14327,30173a,297,1,f +14327,3666,70,1,f +14327,3794b,70,2,f +14327,4070,70,2,f +14327,6141,297,2,f +14327,6180,0,1,f +14329,2335,0,1,f +14329,2421,7,1,f +14329,30170,0,1,f +14329,30170,0,1,t +14329,30171,6,1,f +14329,3020,7,1,f +14329,3021,0,1,f +14329,3022,19,1,f +14329,3034,19,2,f +14329,3139,0,2,f +14329,3626bpa5,14,1,f +14329,4081b,7,2,f +14329,4488,0,1,f +14329,4600,0,1,f +14329,4623,0,1,f +14329,4624,7,2,f +14329,4859,8,1,f +14329,4865a,47,1,f +14329,970c00,0,1,f +14329,973pa5c01,6,1,f +14331,10197,72,2,f +14331,11302pat0002,33,2,f +14331,15100,0,1,f +14331,15976,179,2,f +14331,18587,14,1,f +14331,18588,72,1,f +14331,19049,179,1,f +14331,19050,42,1,f +14331,19087,179,2,f +14331,19149pat0004,10,1,f +14331,20251,272,1,f +14331,20252,148,4,f +14331,2780,0,2,f +14331,32062,4,1,f +14331,32123b,14,2,f +14331,32123b,14,1,t +14331,32270,0,1,f +14331,3705,0,1,f +14331,3749,19,1,f +14331,43093,1,2,f +14331,55236,27,2,f +14331,59443,72,2,f +14331,6141,35,1,t +14331,6141,35,12,f +14331,62462,0,1,f +14331,6558,1,2,f +14331,6587,28,1,f +14331,6632,0,2,f +14331,90609,0,4,f +14331,90611,191,4,f +14331,90640,35,4,f +14331,90640,191,2,f +14331,93575,179,2,f +14331,98577,72,2,f +14331,98590,0,1,f +14332,10884,27,1,f +14332,11089,15,10,f +14332,11089,70,4,f +14332,11090,14,2,f +14332,11090,72,5,f +14332,11091,272,2,f +14332,11097,297,2,f +14332,11098,297,1,f +14332,11098,179,2,f +14332,11100,0,2,f +14332,11100,15,2,f +14332,11103,297,1,f +14332,11107,297,2,f +14332,11127,297,1,f +14332,11127,41,3,f +14332,11129pr0002,71,1,f +14332,11129pr0003,320,1,f +14332,11129pr0004,308,1,f +14332,11153,326,2,f +14332,11153,191,8,f +14332,11203,72,1,f +14332,11215,71,2,f +14332,11291,320,1,f +14332,11476,71,2,f +14332,11477,72,4,f +14332,12549pr0005,297,1,f +14332,12550pr0002,0,1,f +14332,12551pr0001,288,1,f +14332,12551pr0002,326,1,f +14332,12825,15,2,f +14332,12825,0,2,f +14332,12825,72,1,f +14332,12939,84,2,f +14332,13547,326,2,f +14332,13731,326,2,f +14332,13971,71,2,f +14332,15207,191,6,f +14332,2335,1,4,f +14332,2357,72,4,f +14332,2417,2,1,f +14332,2419,0,1,f +14332,2419,272,1,f +14332,2420,71,8,f +14332,2423,326,1,f +14332,2423,2,1,f +14332,2431,308,7,f +14332,2431,72,1,f +14332,2431,41,29,f +14332,2432,1,1,f +14332,2444,72,2,f +14332,2445,71,2,f +14332,2445,0,1,f +14332,2453b,72,1,f +14332,2454a,72,4,f +14332,2454a,70,4,f +14332,2456,72,2,f +14332,2456,70,1,f +14332,2456,19,1,f +14332,2465,72,10,f +14332,2540,72,2,f +14332,2540,1,3,f +14332,2780,0,11,f +14332,2780,0,2,t +14332,298c02,1,1,t +14332,298c02,1,2,f +14332,298c02,71,2,f +14332,298c02,71,1,t +14332,3001,2,4,f +14332,3001,72,18,f +14332,3002,71,3,f +14332,3002,70,7,f +14332,3003,72,27,f +14332,3003,70,1,f +14332,30031,71,1,f +14332,3004,191,35,f +14332,3005,72,11,f +14332,3005,70,10,f +14332,3009,72,5,f +14332,30099,72,2,f +14332,3010,72,9,f +14332,3010,191,19,f +14332,30134,70,1,f +14332,30136,19,2,f +14332,30136,72,4,f +14332,30176,2,5,f +14332,3020,70,2,f +14332,3020,15,1,f +14332,3020,71,4,f +14332,3020,4,1,f +14332,3021,70,7,f +14332,3022,71,4,f +14332,3022,191,4,f +14332,3023,47,4,f +14332,3023,326,2,f +14332,3023,70,14,f +14332,3023,71,10,f +14332,30236,72,2,f +14332,30237a,72,3,f +14332,30238,4,1,f +14332,3024,70,2,t +14332,3024,70,5,f +14332,3028,72,2,f +14332,30286,41,1,f +14332,3031,72,1,f +14332,3031,71,1,f +14332,3032,72,1,f +14332,3033,288,2,f +14332,3034,70,1,f +14332,3034,72,2,f +14332,3034,71,2,f +14332,30342,41,1,f +14332,3035,73,1,f +14332,3035,288,2,f +14332,30350b,41,2,f +14332,3036,72,4,f +14332,30363,72,6,f +14332,30374,15,2,f +14332,30374,41,1,f +14332,30374,36,2,f +14332,30374,70,1,f +14332,3039,191,7,f +14332,3039,326,1,f +14332,3039,70,1,f +14332,3040b,72,8,f +14332,3040b,70,6,f +14332,30414,14,1,f +14332,3044c,72,4,f +14332,3046a,72,4,f +14332,3048c,288,2,f +14332,3049d,14,1,f +14332,30540,0,4,f +14332,30541,0,4,f +14332,30602,15,1,f +14332,3062b,41,11,f +14332,3068b,191,10,f +14332,3068b,71,2,f +14332,3069b,191,14,f +14332,3069b,36,2,f +14332,3070b,19,1,t +14332,3070b,19,2,f +14332,32000,72,8,f +14332,32013,0,2,f +14332,32018,0,1,f +14332,32028,0,1,f +14332,32039,0,1,f +14332,32059,191,1,f +14332,32059,15,1,f +14332,32064b,0,1,f +14332,32064b,15,3,f +14332,32278,0,2,f +14332,32278,71,2,f +14332,3298,71,2,f +14332,3456,72,2,f +14332,3460,71,6,f +14332,3622,70,5,f +14332,3623,70,6,f +14332,3626cpr1120,19,1,f +14332,3626cpr1121,19,1,f +14332,3626cpr1122,28,1,f +14332,3626cpr1128,212,1,f +14332,3626cpr1130,0,1,f +14332,3626cpr1140,326,1,f +14332,3626cpr1141,288,1,f +14332,3659,71,2,f +14332,3659,72,7,f +14332,3660,70,1,f +14332,3660,71,15,f +14332,3665,191,20,f +14332,3666,4,3,f +14332,3666,191,11,f +14332,3673,71,3,t +14332,3673,71,18,f +14332,3678bpr0035,1,1,f +14332,3700,0,8,f +14332,3700,4,1,f +14332,3701,71,3,f +14332,3701,0,8,f +14332,3702,0,2,f +14332,3705,0,2,f +14332,3710,191,19,f +14332,3710,4,1,f +14332,3747b,72,5,f +14332,3794b,2,2,f +14332,3794b,320,1,f +14332,3795,15,2,f +14332,3795,71,2,f +14332,3829c01,0,2,f +14332,3832,1,2,f +14332,3832,15,2,f +14332,3832,71,2,f +14332,3836,70,1,f +14332,3899,47,1,f +14332,3937,14,3,f +14332,3941,41,5,f +14332,3957b,0,2,f +14332,3958,72,2,f +14332,3958,71,2,f +14332,4006,0,1,f +14332,4032a,2,1,t +14332,4032a,72,2,f +14332,4032a,2,1,f +14332,4032a,4,3,f +14332,4032a,308,6,f +14332,4081b,0,4,f +14332,41239,72,2,f +14332,4162,72,2,f +14332,41669,143,2,f +14332,41677,71,2,f +14332,41769,70,1,f +14332,41770,70,1,f +14332,42022,41,4,f +14332,42022,308,10,f +14332,42060,308,1,f +14332,42061,308,1,f +14332,4274,1,1,t +14332,4274,1,4,f +14332,4282,15,2,f +14332,4286,72,2,f +14332,4287,72,2,f +14332,43093,1,4,f +14332,4349,0,4,f +14332,43722,191,2,f +14332,43723,191,2,f +14332,43903,0,1,f +14332,4460b,191,20,f +14332,44728,72,2,f +14332,46212,41,8,f +14332,4697b,71,1,t +14332,4697b,71,2,f +14332,48336,0,2,f +14332,4871,1,1,f +14332,48723,72,1,f +14332,50231,272,2,f +14332,50450,0,1,f +14332,50450,0,1,t +14332,52501,15,2,f +14332,53451,0,8,f +14332,53451,15,10,f +14332,53451,297,3,f +14332,53451,0,2,t +14332,53451,297,1,t +14332,53451,15,2,t +14332,53705,41,1,f +14332,53705,41,1,t +14332,54200,326,1,t +14332,54200,297,2,t +14332,54200,47,2,f +14332,54200,297,5,f +14332,54200,47,1,t +14332,54200,0,1,t +14332,54200,326,8,f +14332,54200,191,1,t +14332,54200,191,8,f +14332,54200,0,4,f +14332,55981,71,4,f +14332,55981,326,2,f +14332,57028c01,71,1,f +14332,57796,72,1,f +14332,59443,14,7,f +14332,59900,33,4,f +14332,60474,15,1,f +14332,60474,212,2,f +14332,60474,326,1,f +14332,60475b,71,7,f +14332,60477,308,4,f +14332,60478,0,2,f +14332,60479,71,8,f +14332,60485,71,4,f +14332,60596,72,1,f +14332,60621,71,1,f +14332,6083,72,2,f +14332,60897,72,8,f +14332,60897,4,20,f +14332,60897,71,2,f +14332,6091,19,2,f +14332,6091,191,12,f +14332,6108,71,3,f +14332,6111,71,4,f +14332,6112,0,2,f +14332,6117,297,1,f +14332,61252,72,2,f +14332,61252,71,4,f +14332,61254,0,2,f +14332,6134,1,3,f +14332,6141,70,1,f +14332,6141,70,1,t +14332,6141,33,4,f +14332,6141,41,29,f +14332,6141,36,1,t +14332,6141,41,4,t +14332,6141,36,2,f +14332,6141,33,1,t +14332,61485,15,1,f +14332,6179,15,1,f +14332,6191,15,2,f +14332,62808,297,2,f +14332,63868,71,2,f +14332,64276,0,1,f +14332,64567,0,2,f +14332,64567,297,1,t +14332,64567,71,1,f +14332,64567,297,1,f +14332,64567,71,1,t +14332,64567,0,1,t +14332,64644,308,3,f +14332,64647,57,3,f +14332,64647,57,2,t +14332,64727,71,1,f +14332,64867,70,1,f +14332,6541,72,4,f +14332,6553,72,2,f +14332,6558,1,2,f +14332,6636,326,2,f +14332,6636,72,16,f +14332,70010stk01,9999,1,t +14332,76764,179,1,f +14332,76764,179,1,t +14332,85941,41,2,f +14332,85984,191,13,f +14332,85984,15,6,f +14332,86038,320,1,f +14332,87079,1,6,f +14332,87620,15,8,f +14332,87747,0,1,t +14332,87747,297,4,f +14332,87747,0,2,f +14332,87747,15,2,t +14332,87747,297,1,t +14332,87747,15,8,f +14332,88292,84,4,f +14332,89201,0,4,f +14332,91988,72,4,f +14332,92013,72,1,f +14332,92099,72,2,f +14332,92280,15,2,f +14332,92593,72,2,f +14332,92690,297,3,f +14332,92946,191,10,f +14332,93273,72,1,f +14332,96874,25,1,t +14332,970c00pr0431,28,1,f +14332,970c00pr0433,0,1,f +14332,970c02pr0430,19,2,f +14332,970c155pr0443,326,2,f +14332,973pr1358bc01,0,1,f +14332,973pr2224c01,1,1,f +14332,973pr2227c01,28,1,f +14332,973pr2228c01,84,1,f +14332,973pr2233c01,1,1,f +14332,973pr2245c01,326,1,f +14332,973pr2247c01,326,1,f +14332,98138,41,3,t +14332,98138,41,10,f +14332,98139,297,1,t +14332,98139,297,1,f +14332,98283,84,25,f +14332,98560,15,1,f +14332,99206,71,2,f +14332,99207,71,2,f +14332,99780,72,4,f +14332,99781,0,8,f +14332,99781,15,1,f +14334,31627cx01,4,1,f +14335,2780,0,2,f +14335,32062,0,4,f +14335,32174,72,2,f +14335,32270,71,2,f +14335,32475,72,2,f +14335,32476,320,2,f +14335,32533pb116,21,1,f +14335,43093,1,2,f +14335,44135,72,1,f +14335,44810,320,1,f +14335,4519,71,2,f +14335,47296,72,2,f +14335,47328,320,2,f +14335,47330,320,1,f +14335,47331,320,1,f +14335,47332,320,1,f +14335,47334,179,1,f +14335,47338,135,2,f +14335,x1190,34,1,f +14337,12825,71,1,f +14337,2540,72,1,f +14337,30359b,47,1,f +14337,30377,19,1,t +14337,3839b,72,1,f +14337,3960,47,1,f +14337,42022,70,1,f +14337,4349,72,2,f +14337,44675,70,1,f +14337,44676,72,2,f +14337,4697b,71,1,t +14337,4697b,71,2,f +14337,4733,72,2,f +14337,6141,70,1,t +14337,6141,70,2,f +14337,64567,71,2,f +14338,2420,72,2,f +14338,2432,70,1,f +14338,2436,71,4,f +14338,2445,70,2,f +14338,2654,72,2,f +14338,3009,71,1,f +14338,3020,0,4,f +14338,3021,70,1,f +14338,3021,72,3,f +14338,3022,14,2,f +14338,3031,71,1,f +14338,3032,71,1,f +14338,3034,0,2,f +14338,30361pr0007,135,1,f +14338,30362,135,2,f +14338,30367cpr0014,135,1,f +14338,3039,70,1,f +14338,3048c,0,2,f +14338,32000,72,3,f +14338,32056,72,1,f +14338,32062,4,1,f +14338,32073,71,2,f +14338,32123b,71,1,t +14338,32123b,71,1,f +14338,32269,0,1,f +14338,32270,0,1,f +14338,3626bpr0760,0,1,f +14338,3666,0,2,f +14338,3710,0,2,f +14338,3795,71,2,f +14338,3941,0,4,f +14338,3941,47,1,f +14338,3956,71,1,f +14338,4032a,71,3,f +14338,4150,71,3,f +14338,41769,71,3,f +14338,41770,71,3,f +14338,4286,0,4,f +14338,43093,1,1,f +14338,43713,0,2,f +14338,45301,0,1,f +14338,47397,71,1,f +14338,47398,71,1,f +14338,4740,42,2,f +14338,48336,0,6,f +14338,4854,0,1,f +14338,54383,71,3,f +14338,54384,71,3,f +14338,58247,0,1,f +14338,59443,14,2,f +14338,59900,0,4,f +14338,60474,0,3,f +14338,60481,0,4,f +14338,6141,72,6,f +14338,6141,72,1,t +14338,61678,0,2,f +14338,6222,0,2,f +14338,63868,0,8,f +14338,6541,14,1,f +14338,7915stk01,9999,1,t +14338,87079,71,2,f +14338,87557pr0001b,0,1,f +14338,92280,71,6,f +14338,92579,40,1,f +14338,970c00,0,1,f +14338,973pr1733c01,0,1,f +14339,12825,72,1,f +14339,3004,15,2,f +14339,3023,72,3,f +14339,30367b,25,3,f +14339,30367b,27,2,f +14339,30367b,4,3,f +14339,30367b,322,2,f +14339,30374,15,4,f +14339,3068b,72,1,f +14339,32062,4,4,f +14339,3624,320,1,f +14339,3626cpr0579,14,1,f +14339,3626cpr1087,14,1,f +14339,3794b,15,1,f +14339,3795,71,1,f +14339,4032a,25,4,f +14339,4032a,14,2,f +14339,4032a,4,4,f +14339,41879a,272,1,f +14339,4345b,15,1,f +14339,4346,47,1,f +14339,4599b,71,1,t +14339,4599b,71,2,f +14339,4600,71,1,f +14339,4624,71,2,f +14339,48336,71,2,f +14339,59895,0,2,f +14339,60470a,71,1,f +14339,6141,4,3,f +14339,6141,25,1,t +14339,6141,25,3,f +14339,6141,4,1,t +14339,6231,15,2,f +14339,62810,484,1,f +14339,92692,15,1,f +14339,970c00,71,1,f +14339,973pr1173c01,4,1,f +14339,973pr2084c01,71,1,f +14342,3001,14,12,f +14342,3002,14,6,f +14342,3003,14,10,f +14342,3004,14,6,f +14342,3005,14,2,f +14342,3006,14,1,f +14342,3007,14,1,f +14342,3008,14,2,f +14342,3009,14,2,f +14342,3010,14,2,f +14342,3622,14,2,f +14343,32205,4,1,f +14343,32207,8,2,f +14343,32214,4,2,f +14343,32219,0,4,f +14343,3749,7,5,f +14343,zbb013,22,2,f +14343,zbb014,7,6,f +14343,zbb015,4,3,f +14344,2493b,0,10,f +14344,2494,47,10,f +14345,14210,15,1,f +14345,2486,15,1,f +14345,3003,0,1,f +14345,3009p17,15,1,f +14345,30104,71,1,f +14345,30155,72,4,f +14345,30237a,15,3,f +14345,30248,0,1,f +14345,3039pc1,0,1,f +14345,3040b,4,2,f +14345,3040b,36,1,f +14345,3040b,33,1,f +14345,30592,72,1,f +14345,30602pb025,15,1,f +14345,30602pb026,378,1,f +14345,30621,272,1,f +14345,3062b,36,4,f +14345,30644,0,1,f +14345,30647,272,2,f +14345,3069bpr0016,15,1,f +14345,3483,0,4,f +14345,3795,72,1,f +14345,3957a,71,2,f +14345,3962b,0,1,f +14345,42600,4,1,f +14345,42602pb04,143,1,f +14345,4282,72,1,f +14345,43121,71,1,f +14345,45179,72,1,f +14345,45950,0,2,f +14345,45951,15,1,f +14345,45951,14,1,f +14345,4617b,0,1,f +14345,47456,14,1,f +14345,47501,4,2,f +14345,4j004,9999,1,f +14345,4j005a,9999,1,f +14345,4j007,9999,1,f +14345,50704,71,2,f +14345,6239,4,1,f +14347,14226c21,0,1,f +14347,1782stk01,9999,1,t +14347,1782stk02,9999,1,t +14347,2352,1,2,f +14347,2357,7,1,f +14347,2376,0,2,f +14347,2399,4,1,f +14347,2399,14,1,f +14347,2412b,7,3,f +14347,2412b,0,2,f +14347,2420,0,2,f +14347,2421,0,1,f +14347,2431,7,4,f +14347,2431,1,1,f +14347,2431,0,3,f +14347,2432,15,1,f +14347,2433,0,1,f +14347,2444,0,4,f +14347,2445,15,1,f +14347,2446,0,2,f +14347,2460,7,1,f +14347,2465,7,2,f +14347,2479,0,1,f +14347,2536,6,5,f +14347,2540,0,2,f +14347,2546p01,4,1,f +14347,2547,7,1,f +14347,2547,15,1,f +14347,2548,15,1,f +14347,2550c01,6,1,f +14347,2555,15,1,f +14347,2563,6,1,f +14347,2566,2,1,f +14347,2620,41,1,f +14347,2636,7,2,f +14347,2637,7,1,f +14347,2638,7,1,f +14347,2780,0,4,f +14347,2877,4,2,f +14347,2921,0,1,f +14347,298c02,4,4,f +14347,3001,1,1,f +14347,3001,14,1,f +14347,3003,14,1,f +14347,3003,7,2,f +14347,3004,15,1,f +14347,3004,7,1,f +14347,3006,7,1,f +14347,3007,7,1,f +14347,30079,15,2,f +14347,30080,15,2,f +14347,30082,8,4,f +14347,30083,41,1,f +14347,30084,0,1,f +14347,30085,7,1,f +14347,30086,14,1,f +14347,30088,4,1,f +14347,30089,14,1,f +14347,30090,47,2,f +14347,30091,7,2,f +14347,30092,14,1,f +14347,30093,2,3,f +14347,3010,14,1,f +14347,3010,7,1,f +14347,3020,4,1,f +14347,3020,0,1,f +14347,3020,15,1,f +14347,3021,15,1,f +14347,3022,0,2,f +14347,3023,7,2,f +14347,3023,0,1,f +14347,3024,15,1,f +14347,3024,46,1,f +14347,3031,0,1,f +14347,3032,15,2,f +14347,3033,15,2,f +14347,3035,7,1,f +14347,3037,7,1,f +14347,3039,15,1,f +14347,3039p58,15,1,f +14347,3039pr0005,15,1,f +14347,3040b,14,1,f +14347,3068b,7,2,f +14347,3068b,14,1,f +14347,3068bpx10,0,1,f +14347,3068bpx11,0,1,f +14347,3068bpx12,0,1,f +14347,3069b,0,2,f +14347,3069bp68,15,1,f +14347,3069bp81,14,1,f +14347,3069bpc2,14,1,f +14347,3070b,36,3,f +14347,3127,7,2,f +14347,3176,0,1,f +14347,3298,7,4,f +14347,3403,15,1,f +14347,3404,15,1,f +14347,3460,0,4,f +14347,3613,15,4,f +14347,3623,0,7,f +14347,3623,15,1,f +14347,3626bpr0895,15,1,f +14347,3626bpx24,14,1,f +14347,3626bpx25,14,1,f +14347,3626bpx26,14,1,f +14347,3626bpx27,14,1,f +14347,3660,14,1,f +14347,3660,7,5,f +14347,3660,15,3,f +14347,3665,15,2,f +14347,3679,7,3,f +14347,3680,0,3,f +14347,3700,7,4,f +14347,3700,15,1,f +14347,3705,0,1,f +14347,3710,0,1,f +14347,3747a,15,1,f +14347,3749,7,1,f +14347,3794a,4,2,f +14347,3794a,14,2,f +14347,3794a,0,2,f +14347,3795,7,1,f +14347,3795,15,3,f +14347,3795,0,1,f +14347,3839b,0,1,f +14347,3857,1,1,f +14347,3867,19,1,f +14347,3937,14,1,f +14347,3938,0,1,f +14347,3941,1,7,f +14347,3941,7,5,f +14347,4032a,15,2,f +14347,4032a,2,3,f +14347,4070,4,2,f +14347,4070,0,2,f +14347,4070,1,2,f +14347,4079,0,2,f +14347,4132,1,2,f +14347,4151a,7,1,f +14347,4215b,7,1,f +14347,4265b,7,3,f +14347,4287,15,2,f +14347,4315,14,1,f +14347,4315,15,1,f +14347,4345b,15,2,f +14347,4346,15,2,f +14347,4349,0,1,f +14347,4460a,7,1,f +14347,4476b,15,2,f +14347,4477,14,1,f +14347,4485,15,4,f +14347,4488,7,1,f +14347,4589,7,2,f +14347,4623,0,1,f +14347,4864a,33,1,f +14347,4871,7,1,f +14347,4871,14,1,f +14347,57503,334,1,f +14347,57504,334,1,f +14347,57505,334,1,f +14347,57506,334,1,f +14347,59275,0,4,f +14347,6019,15,2,f +14347,6019,4,1,f +14347,6040,0,1,f +14347,6041,4,1,f +14347,6048a,0,8,f +14347,6112,1,2,f +14347,6141,47,1,t +14347,6141,36,4,f +14347,6141,36,1,t +14347,6141,42,4,f +14347,6141,47,1,f +14347,6148,2,4,f +14347,6217,0,4,f +14347,6228b,7,1,f +14347,6260,15,1,f +14347,6265,15,2,f +14347,6266,15,2,f +14347,6267,47,1,f +14347,73037,7,2,f +14347,75535,15,4,f +14347,970c00,4,2,f +14347,970x026,14,2,f +14347,973px51c01,4,2,f +14347,973px52c01,4,1,f +14347,973px52c02,4,1,f +14347,rb00164,0,2,f +14347,rb00168,0,1,f +14347,rb00168,0,1,t +14349,2412b,72,3,f +14349,2412b,1,13,f +14349,2431,0,2,f +14349,2432,72,1,f +14349,2439,71,1,f +14349,2445,4,2,f +14349,2449,1,4,f +14349,2454a,19,12,f +14349,2465,19,6,f +14349,2489,70,1,f +14349,2495,4,1,f +14349,2496,0,3,f +14349,2508,0,1,f +14349,2540,1,2,f +14349,2555,72,4,f +14349,2585,71,1,f +14349,2635a,19,2,f +14349,2653,71,4,f +14349,2655,71,2,f +14349,2730,0,2,f +14349,2780,0,1,t +14349,2780,0,1,f +14349,2817,71,1,f +14349,2877,72,5,f +14349,298c02,71,1,t +14349,298c02,71,3,f +14349,3002,14,10,f +14349,3003,19,4,f +14349,3003,0,9,f +14349,3004,4,2,f +14349,3004,0,4,f +14349,3004,19,12,f +14349,3004,1,1,f +14349,3004,14,1,f +14349,3004,15,2,f +14349,30042,0,2,f +14349,3005,19,2,f +14349,3007,19,1,f +14349,3007,0,1,f +14349,3008,19,4,f +14349,3008,72,4,f +14349,3008,0,4,f +14349,3009,4,2,f +14349,3010,0,2,f +14349,3010,19,8,f +14349,3010,1,4,f +14349,3020,1,4,f +14349,3020,72,2,f +14349,3020,4,3,f +14349,3021,19,5,f +14349,3022,14,3,f +14349,3022,72,6,f +14349,3023,19,10,f +14349,3023,46,2,f +14349,3023,1,4,f +14349,3023,47,1,f +14349,3023,15,2,f +14349,3023,70,4,f +14349,3023,71,5,f +14349,30236,0,1,f +14349,3024,36,2,f +14349,3024,46,3,f +14349,3024,19,3,f +14349,30249,19,4,f +14349,3027,70,2,f +14349,3027,4,1,f +14349,3029,14,2,f +14349,3032,0,1,f +14349,30350b,72,4,f +14349,30350b,70,4,f +14349,30374,0,4,f +14349,30386,71,1,f +14349,3039,4,2,f +14349,3039,19,6,f +14349,30391,0,2,f +14349,30395,72,1,f +14349,3040b,4,4,f +14349,3045,4,4,f +14349,30553,0,1,f +14349,30562,320,8,f +14349,30586,4,8,f +14349,30602,14,1,f +14349,3062b,14,2,f +14349,3062b,1,2,f +14349,3068b,4,1,f +14349,3068b,0,4,f +14349,3068b,70,1,f +14349,3069b,4,1,f +14349,3069b,1,2,f +14349,3069b,14,1,f +14349,3069b,46,1,f +14349,3070b,1,1,t +14349,3070b,1,2,f +14349,3176,0,2,f +14349,32028,14,6,f +14349,32028,0,1,f +14349,32039,1,2,f +14349,32270,0,2,f +14349,3245b,19,4,f +14349,3298,72,6,f +14349,3456,71,1,f +14349,3460,70,6,f +14349,3460,19,2,f +14349,3460,72,1,f +14349,3626bpr0386,14,1,f +14349,3626bpr0389,14,1,f +14349,3626bpr0892,14,1,f +14349,3666,4,2,f +14349,3666,1,8,f +14349,3666,72,4,f +14349,3666,19,2,f +14349,3700,4,2,f +14349,3706,0,1,f +14349,3708,0,1,f +14349,3710,72,6,f +14349,3713,71,4,f +14349,3713,71,1,t +14349,3747b,0,1,f +14349,3794b,4,1,f +14349,3795,4,2,f +14349,3795,70,3,f +14349,3795,72,6,f +14349,3795,1,2,f +14349,3829c01,14,2,f +14349,3832,0,1,f +14349,3836,70,1,f +14349,3837,72,1,f +14349,3839b,72,1,f +14349,3857,2,2,f +14349,3961,14,1,f +14349,40234,71,1,f +14349,4070,19,2,f +14349,4070,70,2,f +14349,4070,14,8,f +14349,4079,14,1,f +14349,4079,70,1,f +14349,4081b,0,3,f +14349,4085c,0,4,f +14349,4085c,1,2,f +14349,4162,1,2,f +14349,41854,72,1,f +14349,42022,1,2,f +14349,4207,70,1,f +14349,42610,71,2,f +14349,43093,1,3,f +14349,43719,0,1,f +14349,44301a,71,1,f +14349,44567a,0,1,f +14349,44567a,14,1,f +14349,44728,72,3,f +14349,4485,4,1,f +14349,4488,71,4,f +14349,4510,71,2,f +14349,4523,1,1,f +14349,4599b,1,1,f +14349,4599b,14,1,f +14349,4624,71,2,f +14349,4740,14,2,f +14349,4740,71,1,f +14349,47508,0,1,f +14349,47720,0,1,f +14349,48288,4,3,f +14349,48336,0,8,f +14349,48336,14,1,f +14349,4872,4,2,f +14349,48729a,72,1,f +14349,48729a,72,1,t +14349,48812,70,1,f +14349,50950,14,2,f +14349,51739,14,1,f +14349,52031,1,1,f +14349,53989,0,1,f +14349,54200,25,2,f +14349,54200,25,2,t +14349,54200,36,1,t +14349,54200,36,2,f +14349,55295,0,1,f +14349,55296,0,1,f +14349,55297,0,1,f +14349,55298,0,1,f +14349,55299,0,1,f +14349,55300,0,1,f +14349,55981,15,2,f +14349,56823c100,0,1,f +14349,56898,0,4,f +14349,56904,15,4,f +14349,6014b,15,4,f +14349,6014b,71,2,f +14349,6015,0,6,f +14349,6019,72,6,f +14349,60470a,71,2,f +14349,60470a,4,5,f +14349,60471,4,1,f +14349,60478,14,10,f +14349,60479,0,2,f +14349,60594,14,1,f +14349,6079,70,4,f +14349,6087,71,1,f +14349,6093,70,1,f +14349,61409,72,1,f +14349,6141,46,4,f +14349,6141,19,10,f +14349,6141,70,12,f +14349,6141,14,1,t +14349,6141,46,1,t +14349,6141,19,1,t +14349,6141,72,1,t +14349,6141,72,3,f +14349,6141,70,3,t +14349,6141,14,10,f +14349,61506,19,1,f +14349,6157,0,2,f +14349,61780,70,1,f +14349,6187,0,2,f +14349,62113,72,1,f +14349,6231,0,4,f +14349,62361,1,2,f +14349,62462,0,1,f +14349,6251,15,1,f +14349,63082,71,1,f +14349,64451,72,2,f +14349,64452pr0002,15,2,f +14349,64847,15,4,f +14349,6541,1,2,f +14349,6553,0,2,f +14349,6558,1,4,f +14349,6636,70,2,f +14349,84954,40,2,f +14349,87414,0,2,f +14349,970c00,2,1,f +14349,970c00,1,1,f +14349,970c00,4,1,f +14349,973pr1155c01,19,1,f +14349,973pr1244c01,73,1,f +14349,973pr1446c01,4,1,f +14352,30556,115,1,f +14352,30598,2,1,f +14352,30600pb02,0,1,f +14352,30602pb029,0,1,f +14352,racerbase,115,1,f +14352,rb00168,0,2,f +14353,2357,4,4,f +14353,2412b,7,1,f +14353,2417,10,4,f +14353,2423,2,4,f +14353,2431,15,3,f +14353,2431,4,2,f +14353,2431pr0017,14,16,f +14353,2445,15,6,f +14353,2536,6,20,f +14353,2563,6,4,f +14353,2577,8,4,f +14353,2654,0,4,f +14353,2680,0,4,f +14353,2730,0,11,f +14353,2780,0,211,f +14353,2905,0,4,f +14353,30000,8,4,f +14353,3001,0,4,f +14353,3004,4,22,f +14353,3005,4,8,f +14353,3008,4,2,f +14353,3009,4,2,f +14353,3020,8,4,f +14353,3020,25,5,f +14353,3020,0,4,f +14353,3020,14,5,f +14353,3020,2,3,f +14353,3021,0,8,f +14353,3022,8,2,f +14353,3022,2,4,f +14353,30237a,4,2,f +14353,3027,19,11,f +14353,3028,0,1,f +14353,3028,8,2,f +14353,30293,6,4,f +14353,30294,6,4,f +14353,3030,8,1,f +14353,3031,8,2,f +14353,3032,4,2,f +14353,3033,4,2,f +14353,3033,8,2,f +14353,3036,4,1,f +14353,30374,8,1,f +14353,3068b,15,3,f +14353,32002,8,4,f +14353,32009,0,4,f +14353,32012,1,1,f +14353,32013,1,4,f +14353,32013,6,4,f +14353,32013,27,1,f +14353,32013,0,1,f +14353,32014,0,2,f +14353,32015,0,1,f +14353,32016,0,1,f +14353,32017,0,2,f +14353,32018,0,6,f +14353,32034,0,1,f +14353,32039,0,4,f +14353,32039,8,1,f +14353,32054,0,22,f +14353,32054,1,6,f +14353,32062,0,11,f +14353,32063,1,2,f +14353,32064b,0,7,f +14353,32123b,7,8,f +14353,32125,1,1,f +14353,32138,0,8,f +14353,32140,0,4,f +14353,32192,0,1,f +14353,32278,27,2,f +14353,32278,0,8,f +14353,32316,0,4,f +14353,32316,27,2,f +14353,32524,0,4,f +14353,32525,0,1,f +14353,32526,0,2,f +14353,32529,0,16,f +14353,32530,0,2,f +14353,32530,8,4,f +14353,32531,0,4,f +14353,32532,0,1,f +14353,32556,7,1,f +14353,32557,0,6,f +14353,33299a,0,4,f +14353,3471,2,2,f +14353,3673,7,3,f +14353,3701,0,1,f +14353,3702,0,19,f +14353,3703,0,56,f +14353,3705,0,6,f +14353,3706,0,12,f +14353,3707,0,9,f +14353,3708,0,6,f +14353,3710,0,4,f +14353,3713,1,4,f +14353,3713,7,4,f +14353,3713,0,5,f +14353,3737,0,4,f +14353,3738,0,4,f +14353,3749,7,14,f +14353,3795,15,3,f +14353,3795,14,6,f +14353,3795,25,6,f +14353,3795,8,1,f +14353,3832,4,2,f +14353,3894,0,13,f +14353,3895,0,21,f +14353,3941,0,4,f +14353,3943b,8,1,f +14353,4019,4,1,f +14353,40490,0,5,f +14353,4070,4,2,f +14353,4095,6,4,f +14353,4151a,8,30,f +14353,41539,17,2,f +14353,4162,4,2,f +14353,41677,0,4,f +14353,41752,8,1,f +14353,4266,0,8,f +14353,4282,4,2,f +14353,4282,19,7,f +14353,43857,4,12,f +14353,4728,4,12,f +14353,6064,2,2,f +14353,6112,4,2,f +14353,6212,2,4,f +14353,6222,1,1,f +14353,6249,8,2,f +14353,6538a,6,4,f +14353,6538a,0,1,f +14353,6538a,1,1,f +14353,6558,0,45,f +14353,6636,4,4,f +14353,6636,7,2,f +14353,71509,0,2,f +14353,75535,0,3,f +14353,75535,1,2,f +14353,78c08,7,28,f +14353,78c10,1,2,f +14353,78c12,14,24,f +14353,rb00164,0,1,f +14355,15068,15,1,f +14355,2419,1,2,f +14355,3001,71,1,f +14355,3004,1,2,f +14355,3022,71,1,f +14355,3039,47,1,f +14355,3065,47,1,f +14355,3660,72,3,f +14355,3795,1,3,f +14355,3839b,15,2,f +14355,44661,15,1,f +14356,3005,15,2,f +14356,30089b,0,1,f +14356,3020,27,2,f +14356,33291,5,1,t +14356,33291,5,1,f +14356,4865b,15,2,f +14356,6141,0,1,t +14356,6141,47,1,f +14356,6141,47,1,t +14356,6141,0,1,f +14356,6231,15,2,f +14356,87580,27,1,f +14356,93555,179,1,t +14356,93555,179,4,f +14357,30488c01,0,1,f +14357,30492,2,1,f +14357,3626bpr0250,14,1,f +14357,53981,0,1,f +14357,57099,15,2,f +14357,72824pr03,297,1,f +14357,970c00,0,1,f +14357,973c01,15,1,f +14358,32467,14,1,f +14358,cr2032,89,1,f +14359,2357,4,2,f +14359,2412b,1,2,f +14359,2412b,4,2,f +14359,2432,15,1,f +14359,2433,0,2,f +14359,2446,15,1,f +14359,2447,0,1,t +14359,2447,0,1,f +14359,2540,0,4,f +14359,2610,14,1,f +14359,2625,0,1,f +14359,2654,7,3,f +14359,3003,1,1,f +14359,3004,15,2,f +14359,3020,4,1,f +14359,3021,7,1,f +14359,3021,15,1,f +14359,3460,4,2,f +14359,3623,0,2,f +14359,3626bp05,14,1,f +14359,3794a,1,1,f +14359,3794a,14,1,f +14359,3794a,4,1,f +14359,3829c01,15,1,f +14359,3958,0,1,f +14359,4286,0,1,f +14359,4865a,0,2,f +14359,6019,7,2,f +14359,6091,4,2,f +14359,6091,1,2,f +14359,6091,14,2,f +14359,6152,0,1,f +14359,970c00,1,1,f +14359,973pr1156c01,1,1,f +14360,3185,4,6,f +14360,3358,0,2,f +14360,3359,0,2,f +14361,15573,1,1,f +14361,15712,72,1,f +14361,2432,0,1,f +14361,2446,15,1,f +14361,2447,40,1,t +14361,2447,40,1,f +14361,2495,4,1,f +14361,2496,0,1,f +14361,28962,9999,1,f +14361,30031,72,1,f +14361,3022,72,2,f +14361,3023,19,2,f +14361,3062b,33,1,f +14361,3069b,297,2,f +14361,3626cpr1091,14,1,f +14361,3626cpr1662,14,1,f +14361,3795,1,1,f +14361,41334,0,1,f +14361,4345b,71,1,f +14361,4346,71,1,f +14361,44674,15,2,f +14361,4600,0,2,f +14361,56890,0,4,f +14361,6014b,71,4,f +14361,60897,71,2,f +14361,61482,71,1,f +14361,61482,71,1,t +14361,64644,0,1,f +14361,85984,15,1,f +14361,92585,4,1,f +14361,970c00,272,1,f +14361,970c00,484,1,f +14361,973cpr3628,15,1,f +14361,973pr3627,212,1,f +14361,98138,33,1,t +14361,98138,33,2,f +14361,99781,15,1,f +14362,3741,2,2,f +14362,3742,14,1,t +14362,3742,14,3,f +14362,3742,15,3,f +14362,3742,15,1,t +14362,4324,6,1,f +14362,503c01,4,1,f +14362,556,7,1,f +14362,fab6e,-1,1,f +14362,fabad2,14,1,f +14363,3626bpr0767,378,1,f +14363,88646,0,1,f +14363,93556pr0001,378,1,f +14363,970c00,70,1,f +14363,973pr1754c01,70,1,f +14365,11122pr0002,179,1,f +14365,11126,321,1,f +14365,11127,41,6,f +14365,11767,72,1,f +14365,13361pr0003,0,1,f +14365,2423,2,4,f +14365,2780,0,2,f +14365,2780,0,1,t +14365,3001,288,2,f +14365,3022,0,1,f +14365,3023,33,1,f +14365,3023,70,1,f +14365,3032,2,2,f +14365,3040b,71,2,f +14365,3040b,2,2,f +14365,3062b,33,1,f +14365,3070b,0,1,t +14365,3070b,0,2,f +14365,32016,70,1,f +14365,32062,4,1,f +14365,32064b,2,1,f +14365,32184,0,1,f +14365,3308,71,1,f +14365,33085,14,2,f +14365,3626cpr1206,0,1,f +14365,3710,2,1,f +14365,3749,19,1,f +14365,3942c,14,2,f +14365,4032a,2,2,f +14365,4081b,322,2,f +14365,4477,70,1,f +14365,4522,0,1,f +14365,4623,0,2,f +14365,47847,72,2,f +14365,47905,0,1,f +14365,53451,27,1,t +14365,53451,27,8,f +14365,54200,71,1,t +14365,54200,71,2,f +14365,6021415,9999,1,f +14365,6021416,9999,1,f +14365,6021417,9999,1,f +14365,6021418,9999,1,f +14365,6021419,9999,1,f +14365,6141,179,1,t +14365,6141,179,2,f +14365,64567,0,1,t +14365,64567,0,1,f +14365,87846,288,2,f +14365,93273,27,1,f +14365,970c00pr0446,0,1,f +14365,973pr1400c01,0,1,f +14365,98138,41,1,t +14365,98138,41,1,f +14367,3001,14,1,f +14367,3001,4,5,f +14367,3002,4,4,f +14367,3003,4,8,f +14367,3003,14,5,f +14367,3004,14,16,f +14367,3004,4,8,f +14367,3005,47,6,f +14367,3005,4,8,f +14367,3005,14,16,f +14367,3007,14,2,f +14367,3008,4,4,f +14367,3008,14,4,f +14367,3009,14,12,f +14367,3009,4,10,f +14367,3010,4,6,f +14367,3010,14,10,f +14367,3020,14,2,f +14367,3020,4,4,f +14367,3020,0,4,f +14367,3021,14,2,f +14367,3021,4,2,f +14367,3022,4,2,f +14367,3022,14,2,f +14367,3022,0,2,f +14367,3023,14,4,f +14367,3023,4,8,f +14367,3023,0,2,f +14367,3024,4,4,f +14367,3024,14,2,f +14367,3024,34,1,f +14367,3024,36,2,f +14367,3032,14,1,f +14367,3032,4,1,f +14367,3034,14,2,f +14367,3034,0,1,f +14367,3034,4,2,f +14367,3035,4,2,f +14367,3035,14,2,f +14367,3036,4,2,f +14367,3036,14,1,f +14367,3037,14,4,f +14367,3037,4,8,f +14367,3038,4,8,f +14367,3039,14,2,f +14367,3039,4,12,f +14367,3040b,14,8,f +14367,3040b,4,6,f +14367,3041,4,1,f +14367,3043,4,2,f +14367,3044b,4,1,f +14367,3045,14,2,f +14367,3046a,4,12,f +14367,3049b,4,1,f +14367,3062b,0,6,f +14367,3127,4,1,f +14367,3149c01,0,1,f +14367,3176,0,4,f +14367,3298,14,3,f +14367,3403,0,1,f +14367,3404,0,1,f +14367,3436,4,2,f +14367,3460,0,8,f +14367,3460,14,2,f +14367,3460,4,2,f +14367,3482,7,12,f +14367,3483,0,8,f +14367,3622,4,6,f +14367,3622,14,12,f +14367,3623,0,2,f +14367,3623,14,2,f +14367,3623,4,2,f +14367,3633,0,4,f +14367,3634,0,4,f +14367,3639,0,1,f +14367,3640,0,1,f +14367,3660,14,2,f +14367,3660,4,4,f +14367,3665,4,18,f +14367,3665,14,6,f +14367,3666,4,2,f +14367,3666,14,2,f +14367,3673,7,2,f +14367,3700,4,4,f +14367,3702,4,2,f +14367,3703,4,2,f +14367,3706,0,2,f +14367,3707,0,2,f +14367,3710,4,4,f +14367,3710,0,4,f +14367,3710,14,4,f +14367,3713,7,4,f +14367,3730,0,1,f +14367,3731,0,1,f +14367,3737,0,2,f +14367,3747a,14,3,f +14367,3747a,4,5,f +14367,3749,7,4,f +14367,3794a,14,4,f +14367,3795,14,1,f +14367,3795,4,2,f +14367,3795,0,2,f +14367,3830,4,2,f +14367,3831,4,2,f +14367,3853,4,3,f +14367,3854,15,6,f +14367,3855,47,2,f +14367,3856,4,4,f +14367,3857,7,1,f +14367,3861b,4,1,f +14367,3895,4,2,f +14367,3941,0,4,f +14367,3956,0,2,f +14367,4032a,0,2,f +14367,4033,14,2,f +14367,4035,14,2,f +14367,4070,4,6,f +14367,4070,14,2,f +14367,4175,0,2,f +14367,4176,47,1,f +14367,4181p02,14,1,f +14367,4182p02,14,1,f +14367,4275a,14,2,f +14367,4275a,0,6,f +14367,4276a,0,2,f +14367,4276a,14,2,f +14367,4286,14,4,f +14367,4287,4,4,f +14367,4287,14,2,f +14367,4350c02,7,1,f +14367,4445,4,6,f +14367,4447,14,2,f +14367,4448,47,2,f +14367,4459,0,4,f +14367,4510,0,4,f +14367,4511,4,2,f +14367,4531,0,4,f +14367,6141,46,6,f +14367,73037,14,1,f +14367,766c01,7,2,f +14367,rb00164,0,1,f +14367,x466,7,1,f +14367,x469bopen,0,1,f +14369,3001,14,1,f +14371,2983,7,2,f +14371,3647,7,3,f +14371,3648a,7,2,f +14371,3650,7,2,f +14371,3743,7,2,f +14371,4019,7,2,f +14371,4143,7,4,f +14371,4185,7,2,f +14371,4716,0,2,f +14373,58119,71,1,f +14373,58120,71,1,f +14373,60656,72,1,f +14375,11816pr0003,78,1,f +14375,11816pr0004,78,1,f +14375,11818pr0001,78,1,f +14375,12825,14,4,f +14375,22667,4,1,t +14375,22667,4,1,f +14375,2343,47,1,f +14375,2357,15,11,f +14375,2412b,80,2,f +14375,2412b,71,1,f +14375,2423,2,2,f +14375,2431,27,21,f +14375,2431,14,2,f +14375,2431,71,3,f +14375,2431,0,3,f +14375,2431,322,2,f +14375,2436,15,1,f +14375,2444,14,1,f +14375,2445,29,1,f +14375,2453a,19,4,f +14375,2454a,19,19,f +14375,2460,0,1,f +14375,2465,15,2,f +14375,2540,0,1,f +14375,2654,0,1,f +14375,2714a,71,2,f +14375,2780,0,1,t +14375,2780,0,2,f +14375,2877,71,5,f +14375,2921,71,2,f +14375,3001,27,3,f +14375,3001,15,1,f +14375,3001,322,2,f +14375,3002,71,2,f +14375,3002,29,1,f +14375,3003,27,1,f +14375,3003,14,2,f +14375,3003,15,2,f +14375,3004,72,1,f +14375,3004,15,12,f +14375,3004,27,2,f +14375,3004,14,2,f +14375,30044,15,2,f +14375,3005,19,4,f +14375,3005,15,10,f +14375,3005,14,3,f +14375,30055,15,2,f +14375,3005pr0006,73,1,f +14375,3007,15,1,f +14375,3009,15,10,f +14375,3010,19,1,f +14375,3010,15,13,f +14375,30151a,47,1,f +14375,30153,41,2,f +14375,30165,4,1,f +14375,3020,27,12,f +14375,3020,14,4,f +14375,3021,15,6,f +14375,3022,27,6,f +14375,3022,71,10,f +14375,3022,15,10,f +14375,3023,15,8,f +14375,3024,70,2,f +14375,3031,14,1,f +14375,3031,0,1,f +14375,3031,71,1,f +14375,3035,71,1,f +14375,3037,26,5,f +14375,30377,0,1,t +14375,30377,0,1,f +14375,3040b,26,3,f +14375,3040b,29,7,f +14375,30414,72,1,f +14375,3045,14,2,f +14375,30565,27,2,f +14375,3062b,320,1,f +14375,3062b,15,10,f +14375,3062b,71,3,f +14375,3062b,2,1,f +14375,3062b,27,4,f +14375,3068b,14,1,f +14375,3068b,72,9,f +14375,3068b,73,10,f +14375,3068b,15,4,f +14375,3069b,15,1,f +14375,3069b,71,2,f +14375,3069b,29,6,f +14375,3069b,26,3,f +14375,3069b,27,10,f +14375,3069b,73,2,f +14375,3069bpr0055,15,1,f +14375,32034,15,2,f +14375,32062,4,1,f +14375,3245c,19,4,f +14375,3297,26,13,f +14375,3298,26,5,f +14375,33009,26,1,f +14375,33051,10,1,f +14375,33057,484,1,f +14375,33078,4,1,f +14375,3315stk01,9999,1,t +14375,33172,25,2,f +14375,33183,10,2,f +14375,33183,10,1,t +14375,33291,5,8,f +14375,33291,10,2,t +14375,33291,10,5,f +14375,33291,5,2,t +14375,33303,15,5,f +14375,3460,27,2,f +14375,3622,15,6,f +14375,3633,15,4,f +14375,3660,15,2,f +14375,3665,72,2,f +14375,3679,71,2,f +14375,3680,0,2,f +14375,3700,15,14,f +14375,3710,71,1,f +14375,3710,73,2,f +14375,3710,70,8,f +14375,3741,2,3,t +14375,3741,2,4,f +14375,3742,5,1,t +14375,3742,5,3,f +14375,3742,15,3,f +14375,3742,15,1,t +14375,3747b,15,1,f +14375,3749,19,2,f +14375,3794b,15,1,f +14375,3794b,70,4,f +14375,3794b,14,1,f +14375,3794b,73,1,f +14375,3795,14,1,f +14375,3795,29,2,f +14375,3852b,191,1,f +14375,3900,14,1,f +14375,3941,19,3,f +14375,3941,15,1,f +14375,3941,70,1,f +14375,3941,85,1,f +14375,3958,15,1,f +14375,4032a,15,5,f +14375,4032a,71,3,f +14375,4081b,14,4,f +14375,4085c,15,2,f +14375,4085c,4,3,f +14375,4094b,45,1,f +14375,4150,27,3,f +14375,4150,14,2,f +14375,4150,15,1,f +14375,4218,41,4,f +14375,4345b,15,2,f +14375,4346,47,1,f +14375,4346,4,1,f +14375,44728,15,1,f +14375,4477,26,2,f +14375,4536,15,2,f +14375,4536,29,3,f +14375,4599b,0,1,f +14375,4599b,15,1,f +14375,4599b,71,2,f +14375,4727,10,1,f +14375,4728,14,1,f +14375,4740,15,1,f +14375,4740,71,2,f +14375,48336,14,2,f +14375,48336,15,2,f +14375,4865b,15,2,f +14375,52107,14,1,f +14375,54200,29,1,t +14375,54200,73,1,t +14375,54200,29,2,f +14375,54200,73,1,f +14375,57895,47,2,f +14375,58381,15,1,f +14375,59349,19,6,f +14375,59900,46,2,f +14375,59900,0,1,f +14375,59900,15,1,f +14375,59900,52,2,f +14375,60470a,15,1,f +14375,60474,212,1,f +14375,60581,15,1,f +14375,60594,15,5,f +14375,60596,15,5,f +14375,60608,15,10,f +14375,60623,15,1,f +14375,6091,30,4,f +14375,6091,15,2,f +14375,6108,15,1,f +14375,6111,15,2,f +14375,6111,19,2,f +14375,6112,15,3,f +14375,6141,27,7,f +14375,6141,46,7,f +14375,6141,0,2,t +14375,6141,47,2,f +14375,6141,15,8,f +14375,6141,15,1,t +14375,6141,14,1,t +14375,6141,29,12,f +14375,6141,46,2,t +14375,6141,47,1,t +14375,6141,71,3,f +14375,6141,71,1,t +14375,6141,29,3,t +14375,6141,80,1,t +14375,6141,70,1,f +14375,6141,27,2,t +14375,6141,25,1,t +14375,6141,80,1,f +14375,6141,70,1,t +14375,6141,0,8,f +14375,6141,14,3,f +14375,6141,25,1,f +14375,6180,0,1,f +14375,6191,322,2,f +14375,6191,30,8,f +14375,6191,29,1,f +14375,6231,15,6,f +14375,6255,2,2,f +14375,6255,10,1,f +14375,62810,70,1,f +14375,63864,15,2,f +14375,63864,71,3,f +14375,63868,4,2,f +14375,6541,0,1,f +14375,87079,71,1,f +14375,87087,15,2,f +14375,87544,15,1,f +14375,87552,27,2,f +14375,87580,0,1,f +14375,91405,15,1,f +14375,91405,19,1,f +14375,92256,70,1,f +14375,92259,0,1,f +14375,92410,27,1,f +14375,92410,15,2,f +14375,92438,29,3,f +14375,92438,10,3,f +14375,92456pr0004c01,78,1,f +14375,92593,15,8,f +14375,92815pr0001c01,78,1,f +14375,92816pr0001c01,78,1,f +14375,92817pr0001c01,4,1,f +14375,92820pr0003c01,30,1,f +14375,92821pr0001c01,272,1,f +14375,92946,19,4,f +14375,93089pr0002,15,1,f +14375,93090pr0003,212,1,f +14375,95827,4,4,f +14375,95828,4,4,f +14375,95829,4,4,f +14375,95831,4,4,f +14375,95832,4,4,f +14375,97781,73,3,f +14375,97782,73,3,f +14375,97783,73,3,f +14375,97784,73,3,f +14375,97785,73,1,f +14375,97787,73,1,f +14375,97790,73,1,f +14375,97791,73,1,f +14375,97793,73,1,f +14375,98397,71,1,f +14375,98549,15,1,f +14377,3021,15,1,f +14377,3023,73,2,f +14377,3023,15,2,f +14377,3069bpr0055,15,1,f +14377,3794b,15,1,f +14377,54200,73,1,t +14377,54200,73,4,f +14378,2339,70,2,f +14378,2412b,378,2,f +14378,2420,0,1,f +14378,2431,378,3,f +14378,2453a,72,1,f +14378,2454a,72,6,f +14378,2460,19,1,f +14378,2476a,19,1,f +14378,2540,15,2,f +14378,3003,72,4,f +14378,3003,70,2,f +14378,3004,72,8,f +14378,30044,72,1,f +14378,30046,0,1,f +14378,3005,72,3,f +14378,3005,52,1,f +14378,3008,72,1,f +14378,30151a,42,1,f +14378,3021,70,1,f +14378,3023,0,5,f +14378,30238,25,1,f +14378,30240,72,1,f +14378,3034,70,1,f +14378,3034,0,2,f +14378,30374,484,1,f +14378,30374,0,1,f +14378,3039,378,4,f +14378,3040b,378,8,f +14378,3048c,378,1,f +14378,3062b,47,1,f +14378,3062b,19,5,f +14378,3062b,36,1,f +14378,3069bph1,19,1,f +14378,3069bpx39,33,1,f +14378,3070bph1,15,1,t +14378,3070bph1,15,1,f +14378,3245b,72,1,f +14378,33009px2,4,1,f +14378,3308,71,2,f +14378,3455,72,2,f +14378,3622,72,1,f +14378,3626b,57,1,f +14378,3626bpb0206,78,1,f +14378,3626bpb0209,78,1,f +14378,3626bphb,21,1,f +14378,3626bpr0190,15,3,f +14378,3659,72,1,f +14378,3679,71,1,f +14378,3680,0,1,f +14378,3710,0,2,f +14378,3795,70,2,f +14378,3830,0,2,f +14378,3831,0,2,f +14378,3901,0,1,f +14378,3937,0,1,f +14378,3938,71,1,f +14378,40243,19,8,f +14378,40244,19,1,f +14378,40249,19,1,f +14378,40253,70,1,f +14378,4085c,71,2,f +14378,41539,0,1,f +14378,4201,72,1,f +14378,4204,72,1,f +14378,4286,378,2,f +14378,4349,0,1,f +14378,43751,484,1,f +14378,4449,70,1,f +14378,4460a,71,4,f +14378,4530,0,1,f +14378,4589,36,1,f +14378,4589,33,1,f +14378,4740,14,1,f +14378,4740,14,1,t +14378,4752stk01,9999,1,t +14378,4865a,71,4,f +14378,50231,0,1,f +14378,50231,71,1,f +14378,6019,15,2,f +14378,6108,0,1,f +14378,6125,15,2,f +14378,6126a,57,2,f +14378,6141,34,1,f +14378,6141,46,1,t +14378,6141,42,1,t +14378,6141,42,1,f +14378,6141,47,1,t +14378,6141,47,1,f +14378,6141,1,1,t +14378,6141,1,1,f +14378,6141,46,1,f +14378,6141,34,1,t +14378,970c00,378,1,f +14378,970c00,72,1,f +14378,970c00,288,1,f +14378,973pb0335c01,378,1,f +14378,973pb0336c01,288,1,f +14378,973pr0907c01,72,1,f +14380,3003,14,1,f +14380,30285,15,6,f +14380,30391,0,6,f +14380,30625,15,2,f +14380,3062b,0,1,t +14380,3062b,0,1,f +14380,30632,0,1,f +14380,30636c02,4,1,f +14380,30637,4,1,f +14380,30639,4,1,f +14380,30640,15,1,f +14380,30642,4,1,f +14380,30647pb04,15,1,f +14380,30647pb05,15,1,f +14380,30649pr0001,40,1,f +14380,30663,0,1,f +14380,3941,33,1,f +14380,6126a,41,1,f +14380,6126a,41,1,t +14380,js004,9999,1,f +14380,js007,9999,1,f +14383,2436,0,1,f +14383,2540,0,2,f +14383,2542,6,1,t +14383,2542,6,1,f +14383,30104,8,1,f +14383,30132,8,1,f +14383,30132,8,1,t +14383,30137,19,3,f +14383,30167,6,1,f +14383,30169,0,1,f +14383,3626bpa3,14,1,f +14383,3710,7,1,f +14383,3710,0,1,f +14383,4081b,7,2,f +14383,970c00,0,1,f +14383,973pb0391c01,19,1,f +14384,2423,2,1,f +14384,3062b,46,1,f +14384,33291,10,1,t +14384,33291,10,1,f +14384,33291,5,1,f +14384,33291,5,1,t +14384,43898,15,1,f +14384,4740,71,1,f +14384,59900,26,1,f +14384,59900,26,1,t +14384,61252,71,1,f +14384,6141,4,1,t +14384,6141,4,1,f +14384,63965,15,1,f +14385,2420,0,1,f +14385,2530,8,1,f +14385,2544,0,1,f +14385,2546p01,4,1,f +14385,2555,0,2,f +14385,2561,6,1,f +14385,2586p30,15,1,f +14385,3003,7,2,f +14385,3004,7,2,f +14385,3005,14,2,f +14385,3010,7,1,f +14385,3023,14,1,f +14385,3023,7,1,f +14385,3028,2,1,f +14385,3069b,0,1,f +14385,3070b,0,2,f +14385,3626bp35,14,1,f +14385,3626bp3j,14,1,f +14385,3710,4,1,f +14385,3794a,4,1,f +14385,3957a,4,1,f +14385,4085c,0,7,f +14385,4213,0,1,f +14385,4215a,7,2,f +14385,4497,6,5,f +14385,4498,6,1,f +14385,4499,6,1,f +14385,4589,14,1,f +14385,4589,7,2,f +14385,4623,0,1,f +14385,4625,0,1,f +14385,6025,0,1,f +14385,6026,2,1,f +14385,6027,2,1,f +14385,6028,2,1,f +14385,6064,2,1,f +14385,6126a,57,1,f +14385,87695,15,2,f +14385,87696,15,1,f +14385,970c03pb01,14,1,f +14385,970d01,0,1,f +14385,973p31c01,14,1,f +14385,973pb0062c01,14,1,f +14386,12825,4,4,f +14386,2357,0,4,f +14386,2419,0,1,f +14386,2420,15,2,f +14386,2445,72,2,f +14386,2446,15,1,f +14386,2456,72,2,f +14386,2456,70,6,f +14386,2456,71,2,f +14386,2456,14,1,f +14386,3001,70,4,f +14386,3001,27,2,f +14386,3001,14,4,f +14386,3001,0,4,f +14386,3001,71,2,f +14386,3001,19,4,f +14386,3001,4,6,f +14386,3001,72,4,f +14386,3001,2,10,f +14386,3002,14,8,f +14386,3002,0,2,f +14386,3002,71,8,f +14386,3002,4,6,f +14386,3002,70,8,f +14386,3002,72,10,f +14386,3003,27,6,f +14386,3003,4,4,f +14386,3003,70,16,f +14386,3003,72,18,f +14386,3003,19,2,f +14386,3003,71,10,f +14386,3003,14,6,f +14386,3003,0,2,f +14386,3003,2,10,f +14386,30033,15,1,f +14386,3004,19,12,f +14386,3004,2,4,f +14386,3004,72,8,f +14386,3004,0,16,f +14386,3004,14,14,f +14386,3004,70,16,f +14386,3004,71,6,f +14386,3004,15,4,f +14386,3004,4,12,f +14386,3005,19,18,f +14386,3005,25,6,f +14386,3005,70,10,f +14386,3005,0,10,f +14386,3005,15,10,f +14386,3005,14,16,f +14386,3005,72,12,f +14386,3005pr0003,15,20,f +14386,3005pr0003,14,8,f +14386,3007,14,1,f +14386,3007,71,1,f +14386,3008,72,4,f +14386,3009,72,4,f +14386,3009,0,2,f +14386,3009,15,2,f +14386,3009,71,4,f +14386,30090,41,1,f +14386,30093,288,2,f +14386,3010,4,2,f +14386,3010,70,2,f +14386,3010,72,2,f +14386,3010,14,2,f +14386,3010,71,2,f +14386,3010,19,2,f +14386,30172,28,1,f +14386,30176,2,2,f +14386,3020,4,4,f +14386,3020,14,2,f +14386,3020,71,4,f +14386,3020,2,4,f +14386,3020,0,6,f +14386,3020,70,4,f +14386,3020,72,4,f +14386,3021,19,2,f +14386,3021,70,2,f +14386,3021,0,4,f +14386,3021,71,2,f +14386,3021,14,2,f +14386,3021,72,2,f +14386,30218,15,1,f +14386,3022,71,2,f +14386,3022,70,2,f +14386,3022,2,2,f +14386,3022,14,2,f +14386,3022,0,2,f +14386,3022,15,2,f +14386,3022,72,2,f +14386,3022,19,2,f +14386,3023,15,4,f +14386,3023,14,6,f +14386,3023,2,2,f +14386,3023,72,6,f +14386,3023,71,4,f +14386,3023,4,8,f +14386,3023,70,4,f +14386,30237a,14,4,f +14386,3024,15,8,f +14386,3032,70,1,f +14386,3034,14,2,f +14386,3034,72,2,f +14386,3034,2,2,f +14386,30363,70,4,f +14386,30363,72,2,f +14386,3037,0,4,f +14386,3039,14,4,f +14386,3039,0,8,f +14386,3039,4,6,f +14386,3039,72,10,f +14386,3039,19,8,f +14386,3039,71,12,f +14386,3039,15,2,f +14386,3039,2,4,f +14386,3039,70,16,f +14386,3040b,0,6,f +14386,3040b,72,10,f +14386,3040b,2,4,f +14386,3040b,70,8,f +14386,3040b,15,6,f +14386,3040b,71,4,f +14386,3040b,4,14,f +14386,3040b,14,2,f +14386,3040b,19,2,f +14386,3045,15,2,f +14386,3045,71,4,f +14386,3045,14,4,f +14386,3045,72,4,f +14386,3045,0,4,f +14386,30503,0,2,f +14386,3062b,4,2,f +14386,3062b,14,4,f +14386,3062b,2,4,f +14386,3062b,0,2,f +14386,3298,14,4,f +14386,3298,70,2,f +14386,3298,71,4,f +14386,3298,72,18,f +14386,3298,0,4,f +14386,33085,14,2,f +14386,33121,191,1,f +14386,3460,14,8,f +14386,3623,4,8,f +14386,3623,15,4,f +14386,3623,2,6,f +14386,3623,14,2,f +14386,3626bpr0387,14,1,f +14386,3626bpr0495,14,1,f +14386,3660,14,4,f +14386,3660,0,12,f +14386,3660,15,16,f +14386,3660,71,14,f +14386,3660,70,6,f +14386,3660,72,10,f +14386,3660,4,6,f +14386,3660,19,2,f +14386,3665,70,4,f +14386,3665,19,8,f +14386,3665,14,12,f +14386,3665,72,8,f +14386,3665,71,4,f +14386,3665,0,4,f +14386,3710,0,4,f +14386,3710,71,6,f +14386,3710,72,4,f +14386,3731,71,1,f +14386,3741,2,1,t +14386,3741,2,6,f +14386,3747b,14,6,f +14386,3747b,70,2,f +14386,3747b,15,4,f +14386,3747b,72,6,f +14386,3747b,71,4,f +14386,3747b,4,2,f +14386,3747b,19,2,f +14386,3794b,0,4,f +14386,3794b,19,4,f +14386,3795,14,2,f +14386,3795,19,2,f +14386,3795,71,2,f +14386,3795,0,2,f +14386,3795,2,2,f +14386,3823,47,1,f +14386,3829c01,14,1,f +14386,3832,71,1,f +14386,3832,15,1,f +14386,3837,0,1,f +14386,3838,15,1,f +14386,3901,0,1,f +14386,3958,70,1,f +14386,4032a,19,2,f +14386,40379,15,6,f +14386,4070,4,4,f +14386,4070,72,4,f +14386,4286,70,2,f +14386,4287,70,4,f +14386,4488,71,4,f +14386,4497,0,1,f +14386,4589,15,6,f +14386,49668,191,8,f +14386,53451,15,6,f +14386,53451,15,1,t +14386,54200,14,1,t +14386,54200,14,10,f +14386,54200,70,1,t +14386,54200,70,6,f +14386,54200,0,8,f +14386,54200,0,1,t +14386,56897,0,2,f +14386,56902,71,2,f +14386,59275,25,2,f +14386,6014b,71,4,f +14386,6019,14,8,f +14386,60481,0,2,f +14386,60700,0,4,f +14386,6093,70,1,f +14386,61409,72,2,f +14386,6141,4,1,t +14386,6141,4,4,f +14386,6141,14,6,f +14386,6141,14,1,t +14386,6141,15,20,f +14386,6141,15,1,t +14386,6249,71,1,f +14386,63082,71,1,f +14386,970c00,0,1,f +14386,970c00,70,1,f +14386,973c07,1,1,f +14386,973c18,0,1,f +14387,2780,0,3,f +14387,2780,0,1,t +14387,2825,4,1,f +14387,32013,71,1,f +14387,32062,4,1,f +14387,32174,0,5,f +14387,32199,72,1,f +14387,32476,0,1,f +14387,32524,0,1,f +14387,43093,1,6,f +14387,44807,272,1,f +14387,47300,72,4,f +14387,50858,272,4,f +14387,50898,143,2,f +14387,53451,4,1,t +14387,53451,4,1,f +14387,54271,148,1,f +14387,54821,182,2,f +14387,56160,135,1,f +14387,57560pat0001,143,1,f +14387,59426,72,1,f +14387,6587,72,1,f +14387,6632,0,1,f +14388,2412b,72,1,f +14388,2436,71,2,f +14388,3020,72,3,f +14388,3023,19,1,f +14388,3031,72,1,f +14388,3040b,72,1,f +14388,3070b,72,1,f +14388,3070b,72,1,t +14388,3623,71,1,f +14388,3710,71,1,f +14388,3794b,71,6,f +14388,3795,15,1,f +14388,43722,71,2,f +14388,43723,71,2,f +14388,54200,71,2,f +14388,54200,71,1,t +14388,54383,71,2,f +14388,54384,71,2,f +14388,61409,72,2,f +14388,6141,41,3,f +14388,6141,72,1,t +14388,6141,41,1,t +14388,6141,72,4,f +14389,10183,143,1,f +14389,10883,158,1,f +14389,3626bpr1019,14,1,f +14389,6124,45,1,f +14389,88646,0,1,f +14389,93562,84,1,f +14389,970c00pr0373,14,1,f +14389,973pr2114c01,323,1,f +14391,3037,1,12,f +14391,3041,1,2,f +14392,2470,0,2,f +14392,2540,0,1,f +14392,30153,36,1,f +14392,30168px1,14,1,f +14392,3020,7,1,f +14392,3020,19,1,f +14392,3068bpx19,19,1,f +14392,3626bpa2,7,1,f +14392,3688,19,1,f +14392,3957a,4,1,f +14392,4600,0,1,f +14392,6141,34,2,f +14392,6141,14,1,f +14392,970c11pb01,0,1,f +14392,973pa2c01,0,1,f +14394,2412b,4,2,f +14394,2446,15,1,f +14394,2447,41,1,f +14394,2447,41,1,t +14394,2465,15,4,f +14394,2654,7,6,f +14394,298c02,15,3,f +14394,298c02,15,1,t +14394,3001,15,2,f +14394,30027a,15,4,f +14394,30028,0,4,f +14394,3004,0,5,f +14394,3004,15,2,f +14394,3004,1,2,f +14394,3009,15,2,f +14394,3009,0,1,f +14394,3010,15,2,f +14394,3010,0,3,f +14394,3020,1,1,f +14394,3023,1,7,f +14394,3023,14,3,f +14394,3023,15,1,f +14394,3024,7,4,f +14394,3024,15,2,f +14394,3030,1,6,f +14394,3031,1,1,f +14394,3032,7,1,f +14394,3036,15,3,f +14394,3040b,1,2,f +14394,3040b,0,4,f +14394,3068b,4,1,f +14394,3069b,15,1,f +14394,3069b,1,1,f +14394,3069b,14,1,f +14394,3070b,34,1,t +14394,3070b,36,1,f +14394,3070b,36,1,t +14394,3070b,34,1,f +14394,3297,0,2,f +14394,3460,15,1,f +14394,3622,15,2,f +14394,3623,7,2,f +14394,3626bp04,14,1,f +14394,3659,15,2,f +14394,3660,0,2,f +14394,3666,15,2,f +14394,3794a,15,1,f +14394,3823,41,1,f +14394,3829c01,4,1,f +14394,3901,0,1,t +14394,3937,7,2,f +14394,3938,15,2,f +14394,3939,15,2,f +14394,4070,7,4,f +14394,4081b,7,6,f +14394,4286,15,4,f +14394,4289,15,1,f +14394,4349,4,4,f +14394,4477,1,5,f +14394,4589,0,4,f +14394,4599a,14,2,f +14394,4856a,15,2,f +14394,4859,1,4,f +14394,4865a,15,1,f +14394,4865a,4,3,f +14394,6014a,15,4,f +14394,6015,0,4,f +14394,6081,15,10,f +14394,6112,0,2,f +14394,6141,57,1,t +14394,6141,0,1,t +14394,6141,46,5,f +14394,6141,0,4,f +14394,6141,57,4,f +14394,6141,4,8,f +14394,6141,4,1,t +14394,6141,46,1,t +14394,6157,0,2,f +14394,6231,4,2,f +14394,970c00,1,1,f +14394,973px36c01,4,1,f +14395,11477,71,1,f +14395,15573,14,4,f +14395,15573,71,1,f +14395,3020,72,1,f +14395,3176,71,1,f +14395,3623,14,1,f +14395,3623,72,2,f +14395,3710,14,1,f +14395,41769,14,1,f +14395,41770,14,1,f +14395,4274,71,1,f +14395,43722,71,1,f +14395,43723,71,1,f +14395,54200,40,1,f +14395,59900,71,2,f +14395,59900,14,2,f +14395,61252,71,2,f +14395,6141,135,1,f +14395,62462,14,1,f +14395,63864,71,2,f +14395,63965,14,3,f +14395,6541,14,2,f +14395,6558,1,1,f +14397,2877,72,3,f +14397,3003,72,1,f +14397,3021,0,1,f +14397,3022,0,1,f +14397,3022,71,2,f +14397,3023,73,2,f +14397,3023,15,2,f +14397,3023,71,3,f +14397,30237a,72,1,f +14397,3040b,72,2,f +14397,3660,72,1,f +14397,3666,73,2,f +14397,3710,72,2,f +14397,3747b,71,1,f +14397,3794b,72,3,f +14397,4286,72,1,f +14397,43722,71,1,f +14397,43723,71,1,f +14397,48933,72,2,f +14397,51739,72,2,f +14397,60470a,71,1,f +14397,60478,4,2,f +14397,60478,72,1,f +14397,6141,42,1,t +14397,6141,15,1,t +14397,6141,15,4,f +14397,6141,42,2,f +14398,2302,15,1,f +14398,2302,29,1,f +14398,2302,10,1,f +14398,2302pb03,14,1,f +14398,3011,29,1,f +14398,3437,0,1,f +14398,3437,4,1,f +14398,3437,25,1,f +14398,6394,484,1,f +14398,6474pb33,484,1,f +14398,6474pb33,0,1,f +14398,6474pb33,29,1,f +14398,87084,484,1,f +14398,98224,4,1,f +14398,98224,15,1,f +14398,b12dup02,9999,1,f +14399,11090,72,1,f +14399,11090,15,2,f +14399,11094,0,2,f +14399,11203,72,1,f +14399,11439pat0003,42,6,f +14399,11477,0,2,f +14399,11477,179,2,f +14399,11601,41,2,f +14399,11610,19,1,f +14399,13547,0,1,f +14399,14769pr1027,158,2,f +14399,15064,158,3,f +14399,15068,272,3,f +14399,15392,72,2,f +14399,15403,0,2,f +14399,15470,70,1,f +14399,15573,297,3,f +14399,15619,272,1,f +14399,15712,297,3,f +14399,18395,158,4,f +14399,18396pat0002,272,2,f +14399,19858pat0002,42,1,f +14399,19861pr0001,42,1,f +14399,19861pr0002,42,1,f +14399,20568pat01,272,1,f +14399,20612,40,1,f +14399,2458,19,2,f +14399,2654,72,5,f +14399,2654,41,1,f +14399,2780,0,8,f +14399,30000,72,1,f +14399,3001,0,1,f +14399,3004,0,1,f +14399,3005,72,1,f +14399,30150,70,1,f +14399,30173b,179,2,f +14399,30173b,158,1,f +14399,3020,272,1,f +14399,3020,72,2,f +14399,3021,2,1,f +14399,3022,70,1,f +14399,3023,0,4,f +14399,3023,70,2,f +14399,30374,41,1,f +14399,30374,42,1,f +14399,30383,71,2,f +14399,30414,0,2,f +14399,30526,72,1,f +14399,30553,72,2,f +14399,32001,0,4,f +14399,32016,0,6,f +14399,32039,0,2,f +14399,32062,4,7,f +14399,32123b,71,2,f +14399,32271,0,2,f +14399,32474,27,4,f +14399,32498,0,1,f +14399,32526,0,1,f +14399,3626cpr1680,15,1,f +14399,3626cpr1681,0,1,f +14399,3626cpr1688,42,1,f +14399,3660,272,1,f +14399,3666,272,2,f +14399,3673,71,1,f +14399,3702,0,2,f +14399,3705,0,2,f +14399,3707,0,2,f +14399,3709,71,1,f +14399,3710,0,1,f +14399,3713,71,3,f +14399,3747a,0,1,f +14399,3749,19,5,f +14399,3941,42,1,f +14399,4006,0,1,f +14399,4032a,0,6,f +14399,4081b,72,2,f +14399,41530,42,4,f +14399,41764,272,1,f +14399,41764,14,1,f +14399,41765,272,1,f +14399,41765,14,1,f +14399,41769,15,1,f +14399,41770,15,1,f +14399,42446,71,1,f +14399,4274,1,10,f +14399,44294,71,1,f +14399,44728,0,2,f +14399,4519,71,3,f +14399,47753,272,1,f +14399,48336,297,1,f +14399,51739,272,2,f +14399,53451,4,2,f +14399,53451,15,3,f +14399,54200,42,4,f +14399,59230,0,3,f +14399,59443,0,1,f +14399,59900,297,1,f +14399,60169,42,2,f +14399,60470a,0,3,f +14399,60474,308,1,f +14399,60478,72,1,f +14399,60849,71,2,f +14399,61072,179,2,f +14399,61252,297,2,f +14399,6126a,41,1,f +14399,61409,0,6,f +14399,6141,42,12,f +14399,6141,72,3,f +14399,6141,41,4,f +14399,62462,71,3,f +14399,63965,0,1,f +14399,64225,272,1,f +14399,64567,0,1,f +14399,6541,70,1,f +14399,6575,72,4,f +14399,6628,0,3,f +14399,6629,72,2,f +14399,73983,15,2,f +14399,73983,72,2,f +14399,76766,0,1,f +14399,85544,4,1,f +14399,87747,0,8,f +14399,92338,0,3,f +14399,92692,0,2,f +14399,92947,70,1,f +14399,93059,85,1,f +14399,970c00pr0863,0,1,f +14399,970x268pr001,42,1,f +14399,973pr3018c01,272,1,f +14399,973pr3019c01,0,1,f +14399,973pr3043c01,85,1,f +14399,98133,15,1,f +14399,98138,41,1,f +14399,98141,179,2,f +14399,98141,148,1,f +14399,98313,148,6,f +14399,99781,71,2,f +14399,99781,15,1,f +14401,3626bpr0627,14,1,f +14401,62696,226,1,f +14401,87997pr0001,15,2,f +14401,88646,0,1,f +14401,970c00pr0139,15,1,f +14401,973pr1547c01,1,1,f +14402,3002,0,1,f +14402,3004,0,2,f +14402,3004,313,2,f +14402,3005,313,4,f +14402,3009,313,2,f +14402,3010,313,7,f +14402,3010,7,5,f +14402,3020,0,1,f +14402,3022,0,1,f +14402,3023,313,13,f +14402,3023,0,6,f +14402,3024,0,2,f +14402,3024,46,4,f +14402,3024,313,2,f +14402,3024,36,4,f +14402,3027,7,4,f +14402,3031,313,5,f +14402,3031,0,1,f +14402,3032,313,1,f +14402,3036,7,4,f +14402,3039,0,1,f +14402,3039,313,2,f +14402,3040b,0,4,f +14402,3068b,0,2,f +14402,3069b,7,4,f +14402,3069b,0,4,f +14402,3176,0,2,f +14402,3189,313,1,f +14402,3228b,313,6,f +14402,3324c01,0,1,f +14402,3460,313,6,f +14402,3460,7,10,f +14402,3482,7,14,f +14402,3483,0,14,f +14402,3622,313,4,f +14402,3623,313,12,f +14402,3626apr0001,14,1,f +14402,3660,0,1,f +14402,3660,313,8,f +14402,3665,313,2,f +14402,3666,0,1,f +14402,3666,7,2,f +14402,3666,313,11,f +14402,3673,7,4,f +14402,3700,0,8,f +14402,3706,0,1,f +14402,3709,0,8,f +14402,3710,7,4,f +14402,3710,0,6,f +14402,3710,313,18,f +14402,3749,7,11,f +14402,3755,7,32,f +14402,3761,7,2,f +14402,3795,0,1,f +14402,3795,313,1,f +14402,3823,47,1,f +14402,3829c01,4,1,f +14402,3833,313,1,f +14402,3894,0,4,f +14402,3937,313,4,f +14402,3937,0,2,f +14402,3938,0,2,f +14402,3938,313,4,f +14402,791,7,4,f +14402,970c00,1,1,f +14402,973p13c01,4,1,f +14403,11208,71,2,f +14403,11209,0,2,f +14403,11303,1,1,f +14403,18651,0,1,f +14403,23444,0,1,f +14403,2412b,179,5,f +14403,2420,2,2,f +14403,2431,19,2,f +14403,2445,0,2,f +14403,2508,0,1,f +14403,25269,15,1,t +14403,25269,15,2,f +14403,2540,71,2,f +14403,28876,47,1,f +14403,2926,0,1,f +14403,3001,0,1,f +14403,30157,71,2,f +14403,3020,0,1,f +14403,3020,4,2,f +14403,3020,72,1,f +14403,3021,1,2,f +14403,3023,182,2,f +14403,3023,15,2,f +14403,3023,0,2,f +14403,3024,182,1,t +14403,3024,182,2,f +14403,3031,1,2,f +14403,30553,71,1,f +14403,3068b,72,1,f +14403,3068b,71,3,f +14403,3069b,15,3,f +14403,3069b,36,5,f +14403,3070b,2,1,t +14403,3070b,182,2,f +14403,3070b,182,1,t +14403,3070b,1,2,f +14403,3070b,1,1,t +14403,3070b,2,2,f +14403,32013,71,1,f +14403,32028,0,2,f +14403,3245c,2,2,f +14403,3460,2,2,f +14403,3460,1,2,f +14403,3460,15,2,f +14403,3460,72,2,f +14403,3622,71,2,f +14403,3623,71,2,f +14403,3626cpr0891,14,1,f +14403,3626cpr2109,14,1,f +14403,3660,15,10,f +14403,3665,71,4,f +14403,3666,2,1,f +14403,3666,72,1,f +14403,3710,14,1,f +14403,3710,72,1,f +14403,3829c01,71,1,f +14403,3849,0,1,f +14403,4081b,0,2,f +14403,4151b,71,1,f +14403,4162,15,2,f +14403,4176,40,2,f +14403,41764,15,1,f +14403,41765,15,1,f +14403,41769,1,1,f +14403,41770,1,1,f +14403,44567a,72,1,f +14403,44676,72,2,f +14403,44728,72,1,f +14403,44728,14,1,f +14403,48729b,72,1,t +14403,48729b,72,2,f +14403,52031,2,1,f +14403,52031,15,2,f +14403,52107,71,3,f +14403,52501,72,1,f +14403,54200,47,1,t +14403,54200,47,2,f +14403,55981,71,4,f +14403,59900,71,1,f +14403,60219,72,1,f +14403,60479,72,4,f +14403,6141,36,1,t +14403,6141,36,1,f +14403,6141,34,1,f +14403,6141,34,1,t +14403,6141,179,1,t +14403,6141,179,2,f +14403,63082,71,1,f +14403,63864,2,2,f +14403,63864,72,4,f +14403,6636,19,2,f +14403,6636,72,2,f +14403,6636,15,2,f +14403,75c14,0,1,f +14403,85861,0,1,t +14403,85861,0,1,f +14403,85984,71,3,f +14403,87552,40,2,f +14403,88286,308,1,f +14403,91988,72,1,f +14403,91988,71,2,f +14403,92280,15,2,f +14403,92402,0,4,f +14403,92593,72,1,f +14403,93273,72,1,f +14403,970c00,379,1,f +14403,970c00,0,1,f +14403,973pr3653c01,0,2,f +14403,97895,14,2,f +14403,98138,0,2,f +14403,98138,46,2,f +14403,98138,0,1,t +14403,98138,46,1,t +14403,98282,72,4,f +14403,99780,72,3,f +14403,99781,71,2,f +14403,99781,0,3,f +14406,2412b,72,5,f +14406,2412b,71,3,f +14406,2431,15,2,f +14406,2436,4,1,f +14406,2453a,14,6,f +14406,2454a,14,6,f +14406,2456,14,6,f +14406,2458,19,2,f +14406,2465,14,2,f +14406,2465,0,4,f +14406,2479,0,1,f +14406,2495,4,1,f +14406,2496,0,1,f +14406,2540,71,1,f +14406,2555,0,2,f +14406,2569,72,1,t +14406,2569,72,1,f +14406,2817,71,1,f +14406,2926,0,2,f +14406,3003,19,4,f +14406,30031,0,2,f +14406,3004,1,1,f +14406,3004,14,4,f +14406,3007,0,9,f +14406,3008,0,1,f +14406,3009,14,20,f +14406,3010,0,2,f +14406,3020,0,2,f +14406,3020,70,3,f +14406,3023,71,5,f +14406,3023,72,4,f +14406,30236,0,2,f +14406,3027,71,6,f +14406,3031,0,2,f +14406,3032,71,1,f +14406,3035,71,4,f +14406,30363,0,5,f +14406,3037,72,1,f +14406,30374,71,1,f +14406,3039,14,1,f +14406,3040bpr0003,71,1,f +14406,30586,71,12,f +14406,30608,70,1,f +14406,3062b,14,10,f +14406,3062b,2,1,f +14406,3062b,72,8,f +14406,3062b,4,1,f +14406,3068b,15,2,f +14406,3068b,1,1,f +14406,3068bpr0136,72,1,f +14406,3069b,19,2,f +14406,3070bp01,14,1,t +14406,3070bp01,14,1,f +14406,32002,72,1,t +14406,32002,72,1,f +14406,32018,72,4,f +14406,3245b,14,4,f +14406,3297,0,16,f +14406,3307,14,5,f +14406,33125,484,1,f +14406,3460,72,8,f +14406,3460,15,6,f +14406,3622,14,4,f +14406,3623,72,6,f +14406,3624,320,1,f +14406,3626bpr0126,14,1,f +14406,3626bpr0325,14,1,f +14406,3626bpr0387,14,1,f +14406,3626bpr0498,14,1,f +14406,3626bpr0499,14,1,f +14406,3660,72,5,f +14406,3665,71,2,f +14406,3673,71,1,t +14406,3673,71,2,f +14406,3675,0,2,f +14406,3676,14,2,f +14406,3710,15,2,f +14406,3794a,4,5,f +14406,3795,19,1,f +14406,3795,15,3,f +14406,3832,71,4,f +14406,3833,4,1,f +14406,3853,0,1,f +14406,3854,15,2,f +14406,3894,4,2,f +14406,3899,4,1,f +14406,3901,70,1,f +14406,4070,2,1,f +14406,4070,1,3,f +14406,4079,4,6,f +14406,4085c,15,1,f +14406,4150pr0001,15,1,f +14406,4162,0,1,f +14406,4215b,40,1,f +14406,4274,1,2,f +14406,4274,1,1,t +14406,4282,71,2,f +14406,4282,0,4,f +14406,4286,0,2,f +14406,43337,72,4,f +14406,43888,14,12,f +14406,4449,70,1,f +14406,44728,71,1,f +14406,44728,0,1,f +14406,4477,4,1,f +14406,4485,1,1,f +14406,4515,0,3,f +14406,4532,15,2,f +14406,4533,41,2,f +14406,4599a,71,2,f +14406,4623,4,1,f +14406,4740,15,2,f +14406,48336,0,1,f +14406,4865a,71,4,f +14406,50254,0,4,f +14406,53401,72,4,f +14406,54200,14,4,f +14406,54200,14,1,t +14406,54200,1,1,t +14406,54200,1,2,f +14406,59349,47,3,f +14406,6019,72,5,f +14406,6111,14,3,f +14406,6141,71,2,f +14406,6141,46,2,f +14406,6141,4,2,t +14406,6141,71,1,t +14406,6141,4,14,f +14406,6141,46,2,t +14406,6187,0,2,f +14406,6231,71,4,f +14406,970c00,379,1,f +14406,970c00,0,2,f +14406,970c00,1,2,f +14406,973pr1155c01,19,1,f +14406,973pr1164c01,272,1,f +14406,973pr1170c01,4,1,f +14406,973pr1184c01,0,1,f +14406,973pr1244c01,73,1,f +14408,3001,0,1,f +14408,3004,7,1,f +14408,3009,14,2,f +14408,3010,0,2,f +14408,3010,14,2,f +14408,3020,7,1,f +14408,3020,4,1,f +14408,3020,1,2,f +14408,3020,14,2,f +14408,3021,7,2,f +14408,3022,7,9,f +14408,3023,4,3,f +14408,3023,7,8,f +14408,3024,4,2,f +14408,3024,14,2,f +14408,3024,7,2,f +14408,3032,14,2,f +14408,3035,14,1,f +14408,3037,14,1,f +14408,3039,1,2,f +14408,3039,0,4,f +14408,3062b,7,12,f +14408,3070b,0,2,f +14408,3460,7,2,f +14408,3623,7,2,f +14408,3647,7,4,f +14408,3648a,7,3,f +14408,3650a,7,2,f +14408,3651,7,10,f +14408,3660,1,2,f +14408,3666,7,4,f +14408,3666,4,2,f +14408,3666,14,2,f +14408,3676,0,4,f +14408,3700,14,6,f +14408,3700,7,19,f +14408,3700,4,3,f +14408,3701,7,4,f +14408,3701,4,1,f +14408,3701,1,2,f +14408,3702,7,4,f +14408,3702,4,2,f +14408,3702,14,10,f +14408,3703,4,2,f +14408,3705,0,11,f +14408,3706,0,5,f +14408,3707,0,5,f +14408,3708,0,2,f +14408,3709,7,6,f +14408,3710,14,8,f +14408,3710,4,4,f +14408,3710,7,4,f +14408,3713,7,25,f +14408,3736,7,1,f +14408,3737,0,3,f +14408,3739,7,2,f +14408,3740,0,2,f +14408,3743,7,1,f +14408,3749,7,2,f +14408,3795,7,4,f +14408,3795,14,3,f +14408,3894,4,3,f +14408,3894,7,2,f +14408,3895,7,4,f +14408,3895,14,2,f +14408,3941,7,1,f +14408,3960,1,2,f +14408,4143,7,6,f +14408,4185,7,1,f +14408,4261,7,2,f +14408,4265a,7,5,f +14408,4266,7,2,f +14408,4266,1,4,f +14408,4267,0,2,f +14408,4273b,7,2,f +14408,4274,7,4,f +14408,4275b,4,2,f +14408,4276b,4,2,f +14408,4442,7,3,f +14408,4459,0,40,f +14408,4477,14,2,f +14408,4477,7,2,f +14408,4519,0,2,f +14408,4599a,4,4,f +14408,4716,0,1,f +14408,9244,7,1,f +14408,x467c12,0,2,f +14409,2357,70,5,f +14409,2357,72,2,f +14409,2412b,70,5,f +14409,2412b,72,4,f +14409,2420,72,6,f +14409,2420,19,2,f +14409,2431,72,2,f +14409,2445,70,2,f +14409,2449,70,4,f +14409,2449,72,4,f +14409,2450,28,2,f +14409,2453a,70,4,f +14409,2454a,72,8,f +14409,2456,72,3,f +14409,2458,72,2,f +14409,2460,71,1,f +14409,2460,72,2,f +14409,2476a,71,2,f +14409,2530,72,1,t +14409,2530,72,1,f +14409,2540,71,1,f +14409,2540,72,12,f +14409,2540,19,1,f +14409,2555,72,5,f +14409,2730,0,2,f +14409,2780,0,1,t +14409,2780,0,2,f +14409,2817,0,1,f +14409,2877,72,6,f +14409,2921,70,6,f +14409,3001,70,1,f +14409,3001,72,3,f +14409,3001,0,5,f +14409,3003,70,7,f +14409,3003,72,10,f +14409,3004,70,9,f +14409,3004,28,10,f +14409,3004,72,5,f +14409,30041,28,1,f +14409,30041,0,1,f +14409,30042,28,1,f +14409,30042,0,1,f +14409,3005,72,4,f +14409,3006,0,1,f +14409,3008,72,6,f +14409,3008,70,2,f +14409,3009,72,2,f +14409,3009,0,2,f +14409,3009,70,2,f +14409,30103,0,1,f +14409,30115,2,1,f +14409,30115,4,1,f +14409,30132,72,1,t +14409,30132,72,1,f +14409,30136,70,8,f +14409,30141,72,1,f +14409,30150,70,1,f +14409,30153,45,1,f +14409,30153,47,1,f +14409,30153,42,1,f +14409,3020,72,1,f +14409,3020,25,2,f +14409,3020,70,8,f +14409,3021,71,1,f +14409,3021,72,1,f +14409,3021,19,2,f +14409,3022,25,2,f +14409,3022,70,4,f +14409,3022,71,6,f +14409,3022,72,3,f +14409,3023,72,5,f +14409,3023,25,4,f +14409,3023,71,5,f +14409,30238,0,2,f +14409,3024,71,8,f +14409,3024,72,4,f +14409,30240,72,1,f +14409,3028,72,2,f +14409,3030,72,2,f +14409,3032,72,7,f +14409,3033,72,2,f +14409,3034,71,2,f +14409,3035,72,2,f +14409,3036,28,2,f +14409,3036,0,2,f +14409,30374,70,1,f +14409,3039,72,5,f +14409,3040b,72,10,f +14409,3045,72,2,f +14409,3048c,72,1,f +14409,30505,0,2,f +14409,3062b,36,1,f +14409,3062b,71,11,f +14409,3062b,72,5,f +14409,3062b,46,1,f +14409,3062b,0,8,f +14409,30663,0,2,f +14409,3068b,0,3,f +14409,3069b,0,3,f +14409,3070b,0,2,f +14409,3070b,0,1,t +14409,3176,71,4,f +14409,32001,0,5,f +14409,32064a,71,2,f +14409,32192,0,1,f +14409,32270,0,1,f +14409,3245b,72,2,f +14409,33172,308,1,f +14409,3455,72,1,f +14409,3622,70,4,f +14409,3623,72,10,f +14409,3626bpr0573,78,1,f +14409,3626bpr0574,78,1,f +14409,3626bpr0593,78,1,f +14409,3626bpr0594,92,1,f +14409,3626bpr0595,92,1,f +14409,3626bpr0602,92,1,f +14409,3626bpr0895,15,4,f +14409,3660,72,5,f +14409,3665,72,8,f +14409,3665,0,2,f +14409,3665,70,4,f +14409,3666,72,2,f +14409,3666,19,2,f +14409,3673,71,2,f +14409,3673,71,1,t +14409,3684,308,8,f +14409,3700,0,4,f +14409,3700,72,8,f +14409,3701,70,1,f +14409,3705,0,3,f +14409,3707,0,1,f +14409,3710,71,2,f +14409,3710,0,2,f +14409,3713,4,1,t +14409,3713,4,1,f +14409,3794a,0,5,f +14409,3794a,19,1,f +14409,3794a,72,7,f +14409,3795,72,2,f +14409,3795,71,2,f +14409,3832,72,1,f +14409,3837,72,1,f +14409,3841,72,1,f +14409,3941,70,12,f +14409,3941,19,6,f +14409,40235,0,2,f +14409,4032a,70,2,f +14409,40378,19,2,f +14409,40379,21,2,f +14409,4070,72,4,f +14409,4070,70,5,f +14409,4162,72,2,f +14409,41879a,71,1,f +14409,4215b,70,2,f +14409,4274,1,2,t +14409,4274,1,5,f +14409,4287,72,4,f +14409,43857,0,2,f +14409,44294,71,4,f +14409,44570,72,2,f +14409,4460b,71,2,f +14409,4477,70,2,f +14409,4485,15,1,f +14409,4490,72,4,f +14409,4589,182,2,f +14409,4600,0,4,f +14409,4740,0,2,f +14409,47847,72,2,f +14409,47847pat0002,57,2,f +14409,4865a,0,1,f +14409,48729a,72,1,f +14409,48729a,72,1,t +14409,49668,288,7,f +14409,50254,0,8,f +14409,54200,72,1,t +14409,54200,71,1,t +14409,54200,72,2,f +14409,54200,71,6,f +14409,58176,182,3,f +14409,58827,0,8,f +14409,58827,70,4,f +14409,59229,72,1,f +14409,59363,226,1,f +14409,59443,71,3,f +14409,59900,72,1,f +14409,60594,72,2,f +14409,60752,135,1,f +14409,6111,70,2,f +14409,6126a,57,5,f +14409,6141,57,2,t +14409,6141,70,4,f +14409,6141,0,3,f +14409,6141,36,1,t +14409,6141,36,2,f +14409,6141,70,1,t +14409,6141,57,4,f +14409,6141,0,2,t +14409,61506,70,1,f +14409,61976,70,1,f +14409,6232,72,4,f +14409,62363,28,1,f +14409,6259,72,2,f +14409,64644,308,3,f +14409,64847,19,2,f +14409,6541,0,9,f +14409,6553,0,1,f +14409,6587,72,1,f +14409,6636,72,2,f +14409,6636,0,8,f +14409,6636,70,9,f +14409,85959pat0001,36,2,f +14409,85976,72,4,f +14409,85977,72,2,f +14409,85979pr01,19,1,f +14409,95120,0,2,f +14409,970c00,0,3,f +14409,970c00pr0133,15,1,f +14409,973pr1468c01,28,1,f +14409,973pr1503c01,19,1,f +14409,973pr1504c01,15,1,f +14409,973pr1505c01,0,1,f +14409,973pr1506c01,92,1,f +14409,973pr1507c01,320,1,f +14410,3001,15,3,f +14410,3002,15,2,f +14410,3003,15,1,f +14410,3004,15,9,f +14410,3005,15,3,f +14410,3008,15,6,f +14410,3008p23,15,2,f +14410,3008p24,15,10,f +14410,3009,15,2,f +14410,3009p21,15,10,f +14410,3010,15,6,f +14410,3010p22,15,2,f +14410,3020,0,1,f +14410,3020,15,6,f +14410,3021,15,1,f +14410,3022,15,4,f +14410,3022,0,2,f +14410,3023,15,16,f +14410,3024,34,1,f +14410,3024,15,8,f +14410,3024,36,1,f +14410,3024,0,2,f +14410,3031,15,1,f +14410,3033,15,3,f +14410,3033,0,2,f +14410,3035,15,1,f +14410,3040b,15,11,f +14410,3069b,4,10,f +14410,3069b,15,3,f +14410,3456,0,1,f +14410,3460,15,4,f +14410,3623,15,6,f +14410,3660,15,2,f +14410,3660p03,15,2,f +14410,3665,15,8,f +14410,3666,15,8,f +14410,3666,0,1,f +14410,3684,15,1,f +14410,3710,15,11,f +14410,3794a,15,2,f +14410,3795,15,6,f +14411,3021,15,30,f +14411,3021,47,30,f +14411,3021,7,30,f +14411,3021,0,30,f +14411,3021,2,30,f +14411,3021,4,30,f +14411,3021,14,30,f +14411,3021,1,30,f +14413,3623,70,2,f +14413,4589,70,1,f +14413,64647,57,1,f +14413,64647,57,1,t +14413,64648,135,1,f +14413,88704,70,1,f +14415,122c01,7,2,f +14415,3004,7,1,f +14415,3024,14,1,t +14415,3024,14,2,f +14415,3039p34,7,1,f +14415,3612,7,2,f +14415,3613,7,1,f +14415,3626apr0001,14,1,f +14415,3641,0,4,f +14415,3747a,7,1,f +14415,3795,7,1,f +14415,3829c01,7,1,f +14415,3838,15,1,f +14415,3842a,15,1,f +14415,3957a,7,1,f +14415,3962a,0,1,f +14415,3963,7,2,f +14415,4085a,7,1,f +14415,4085a,7,1,t +14415,4089,7,1,f +14415,792c01,7,1,f +14415,970c00,15,1,f +14415,973p90c05,15,1,f +14416,10201,71,1,f +14416,12825,71,3,f +14416,2376,0,1,f +14416,3020,71,3,f +14416,3021,71,2,f +14416,3021,72,2,f +14416,3022,0,2,f +14416,3024,71,3,f +14416,3024,71,1,t +14416,32028,71,2,f +14416,3626cpr1149,78,1,f +14416,3710,71,1,f +14416,3710,72,2,f +14416,3794b,71,5,f +14416,3794b,72,3,f +14416,3795,0,2,f +14416,3795,72,2,f +14416,3941,0,1,f +14416,41769,72,1,f +14416,41770,72,1,f +14416,4460b,71,1,f +14416,48336,15,4,f +14416,54200,71,1,t +14416,54200,71,1,f +14416,54383,71,1,f +14416,54384,71,1,f +14416,57899,0,1,f +14416,59900,72,2,f +14416,60470a,71,4,f +14416,61189pr0012,15,1,f +14416,61409,72,2,f +14416,6141,71,1,t +14416,6141,41,1,t +14416,6141,71,3,f +14416,6141,41,2,f +14416,6179pr0005,0,1,f +14416,63864,71,2,f +14416,63864,72,1,f +14416,64567,71,1,f +14416,64567,71,1,t +14416,75937,0,1,f +14416,87580,0,1,f +14416,90194,71,1,f +14416,970x026,15,1,f +14416,973pr2223c01,15,1,f +14416,98107pr0005,72,2,f +14416,99780,72,1,f +14421,10201,71,4,f +14421,11213,71,1,f +14421,15573,72,4,f +14421,2357,1,4,f +14421,30151b,47,1,f +14421,3022,15,1,f +14421,3022,4,1,f +14421,3062b,27,1,f +14421,3069b,1,4,f +14421,3070b,1,4,f +14421,3070b,1,1,t +14421,44375b,71,1,f +14421,60474,1,1,f +14421,6141,35,1,t +14421,6141,35,8,f +14421,98138,179,1,t +14421,98138,179,4,f +14423,10884,27,2,f +14423,11408pr0006c01,84,1,f +14423,11476,71,5,f +14423,11816pr0006,78,1,f +14423,12825,14,1,f +14423,13965,70,2,f +14423,13971,71,4,f +14423,14014pr0001,84,1,f +14423,14045,85,1,t +14423,14045,85,1,f +14423,14137,0,2,f +14423,14716,15,2,f +14423,14732pr0002,379,1,f +14423,16981,27,1,t +14423,16981,27,1,f +14423,16985pr0001b,272,1,f +14423,22667,26,1,f +14423,22667,26,1,t +14423,2335,15,1,f +14423,2357,15,2,f +14423,2412b,72,5,f +14423,2423,2,1,f +14423,2431,484,4,f +14423,2431,71,2,f +14423,2431,27,2,f +14423,2445,71,1,f +14423,2449,15,2,f +14423,2453a,70,2,f +14423,2456,72,2,f +14423,2460,15,1,f +14423,2479,0,1,f +14423,2540,19,4,f +14423,2584,0,1,f +14423,2585,71,1,f +14423,2654,19,6,f +14423,298c02,14,1,f +14423,298c02,14,1,t +14423,3001,71,4,f +14423,3001,15,3,f +14423,3002,72,2,f +14423,3003,71,3,f +14423,3003,27,2,f +14423,3004,71,7,f +14423,3004,27,1,f +14423,3005,15,2,f +14423,3005,72,9,f +14423,3005,70,2,f +14423,3009,72,2,f +14423,3010,71,3,f +14423,3010,15,1,f +14423,30153,47,1,f +14423,30153,52,1,f +14423,30157,72,2,f +14423,30176,2,2,f +14423,30191,71,1,f +14423,3020,27,2,f +14423,3020,72,2,f +14423,3020,2,2,f +14423,3020,30,2,f +14423,3021,71,1,f +14423,3022,19,4,f +14423,3022,27,3,f +14423,3022,4,1,f +14423,3022,15,1,f +14423,3022,2,1,f +14423,3023,27,10,f +14423,3023,30,1,f +14423,3023,15,3,f +14423,3023,2,12,f +14423,30236,72,1,f +14423,3032,15,1,f +14423,3032,71,1,f +14423,3035,19,2,f +14423,30383,72,2,f +14423,3039,72,7,f +14423,30395,72,1,f +14423,3040b,70,2,f +14423,3040b,71,12,f +14423,30414,71,2,f +14423,3062b,484,4,f +14423,3062b,41,1,f +14423,3068b,70,1,f +14423,3068b,71,1,f +14423,3068b,29,2,f +14423,3069b,26,5,f +14423,3069b,15,1,f +14423,32013,71,1,f +14423,32028,72,1,f +14423,32064b,15,1,f +14423,32270,0,1,f +14423,3245c,71,2,f +14423,33291,26,4,f +14423,33291,5,8,f +14423,33291,5,3,t +14423,33291,26,2,t +14423,33320,2,1,f +14423,3622,19,3,f +14423,3665,72,1,f +14423,3665,30,4,f +14423,3666,15,4,f +14423,3673,71,1,f +14423,3673,71,1,t +14423,3710,27,5,f +14423,3710,15,4,f +14423,3710,484,4,f +14423,3794b,72,2,f +14423,3795,30,3,f +14423,3795,27,3,f +14423,3795,2,1,f +14423,3795,72,1,f +14423,3829c01,14,1,f +14423,3962b,191,2,f +14423,4081b,71,2,f +14423,4081b,27,2,f +14423,41036stk01,9999,1,f +14423,4176,47,1,f +14423,4287,71,3,f +14423,43713,15,1,f +14423,43722,2,1,f +14423,44294,71,1,f +14423,44568,15,1,f +14423,4460b,70,1,f +14423,4599b,15,1,t +14423,4599b,15,1,f +14423,4865b,14,1,f +14423,4871,15,1,f +14423,50747,47,1,f +14423,50950,30,4,f +14423,54200,15,1,f +14423,54200,72,7,f +14423,54200,71,1,t +14423,54200,15,1,t +14423,54200,72,2,t +14423,54200,71,2,f +14423,56823c50,0,1,f +14423,60475a,71,2,f +14423,60481,15,2,f +14423,60481,71,2,f +14423,60897,71,2,f +14423,6091,15,2,f +14423,61254,0,4,f +14423,6141,34,1,f +14423,6141,46,2,f +14423,6141,15,2,f +14423,6141,34,1,t +14423,6141,36,3,f +14423,6141,15,1,t +14423,6141,27,9,f +14423,6141,36,2,t +14423,6141,47,2,f +14423,6141,72,2,f +14423,6141,46,1,t +14423,6141,72,1,t +14423,6141,47,1,t +14423,6141,27,2,t +14423,6182,71,2,f +14423,63965,15,1,f +14423,64648,179,1,f +14423,6564,71,1,f +14423,6587,28,1,f +14423,6636,30,1,f +14423,6636,70,1,f +14423,85080,71,1,f +14423,85984,15,1,f +14423,87079,71,1,f +14423,87087,484,3,f +14423,87580,10,1,f +14423,87989,212,1,f +14423,87989,212,1,t +14423,87991,0,1,f +14423,92257,320,1,f +14423,92438,322,1,f +14423,92456pr0056c01,78,1,f +14423,92820pr0006c01b,378,1,f +14423,92842,0,1,f +14423,92950,72,1,f +14423,93091pr0004,323,1,f +14423,93095,29,3,f +14423,93140,15,1,f +14423,93273,30,2,f +14423,98138,41,2,t +14423,98138,41,4,f +14423,99207,71,1,f +14424,11090,0,2,f +14424,15573,15,1,f +14424,15712,0,1,f +14424,15712,15,1,f +14424,15745,45,1,f +14424,18649,0,1,f +14424,18868a,41,2,f +14424,19981pr0005,41,1,f +14424,21019pat05,25,1,f +14424,22566,0,1,f +14424,298c02,15,1,t +14424,298c02,15,1,f +14424,3020,15,1,f +14424,3020,0,1,f +14424,3022,71,2,f +14424,3023,15,2,f +14424,3023,41,4,f +14424,30374,36,2,f +14424,30602,15,2,f +14424,3062b,0,2,f +14424,3068bpr0274,71,5,f +14424,3626cpr1777,78,1,f +14424,3941,41,2,f +14424,4032a,15,1,f +14424,4070,15,1,f +14424,44728,72,2,f +14424,44728,15,1,f +14424,48336,15,1,f +14424,53451,0,3,f +14424,53451,0,1,t +14424,58176,182,2,f +14424,58176,33,1,f +14424,60470a,0,1,f +14424,60897,15,1,f +14424,61252,15,3,f +14424,61252,71,2,f +14424,6141,15,1,f +14424,6141,36,1,t +14424,6141,36,5,f +14424,6141,15,1,t +14424,85861,71,4,f +14424,85861,0,2,f +14424,85861,0,1,t +14424,85861,71,1,t +14424,87580,15,1,f +14424,87580,71,1,f +14424,87990,308,1,f +14424,87994,0,1,t +14424,87994,0,1,f +14424,92747,41,2,f +14424,93273,15,2,f +14424,973pr3143c01,15,1,f +14424,98313,15,2,f +14424,99206,0,2,f +14424,99207,71,2,f +14424,99781,15,2,f +14426,2412b,71,1,f +14426,2444,71,2,f +14426,2450,71,2,f +14426,2654,72,4,f +14426,2817,71,2,f +14426,298c02,0,1,f +14426,30031,72,1,f +14426,3004,71,1,f +14426,3020,71,3,f +14426,3021,4,1,f +14426,3023,72,6,f +14426,3023,1,1,f +14426,30357,71,2,f +14426,30374,36,2,f +14426,3048c,0,1,f +14426,3062b,47,2,f +14426,3070b,0,2,f +14426,3460,72,3,f +14426,3626bpb0722,0,1,f +14426,3665,71,2,f +14426,3666,71,1,f +14426,3676,72,2,f +14426,3747b,71,1,f +14426,3794b,71,1,f +14426,4286,71,2,f +14426,4733,0,1,f +14426,4740,0,2,f +14426,4740,47,1,f +14426,48336,71,4,f +14426,50304,72,1,f +14426,50305,72,1,f +14426,51739,72,6,f +14426,54383,71,1,f +14426,54384,71,1,f +14426,60470a,71,4,f +14426,60477,72,1,f +14426,6141,41,3,f +14426,64567,80,1,f +14426,6558,1,2,f +14426,87580,71,4,f +14426,87620,72,2,f +14426,92280,71,1,f +14426,92761pr0002,0,1,f +14426,970c00,0,1,f +14426,973pb1127c01,0,1,f +14426,99780,72,3,f +14426,99781,71,2,f +14428,12825,1,4,f +14428,12825,15,1,f +14428,2412b,4,2,f +14428,3021,4,1,f +14428,3021,2,1,f +14428,3062b,4,1,f +14428,3070b,0,1,f +14428,3070b,15,2,f +14428,3176,1,1,f +14428,3626cpr0793,14,1,f +14428,3836,70,1,f +14428,3956,1,2,f +14428,3957a,80,1,f +14428,4175,4,1,f +14428,4495b,2,1,f +14428,4599b,4,1,f +14428,4733,15,1,f +14428,48336,15,2,f +14428,49668,0,2,f +14428,49668,191,1,f +14428,54200,15,1,f +14428,6141,46,4,f +14428,6141,41,1,f +14428,61976,19,1,f +14428,86035,4,1,f +14428,95343,70,1,f +14428,95344,28,1,f +14428,970c00,1,1,f +14428,973pr1580c01,15,1,f +14428,fpen01,15,1,f +14429,11458,15,2,f +14429,11477,15,4,f +14429,15429pr0001,15,1,f +14429,15573,26,1,f +14429,18868a,41,1,f +14429,19981pr0027,41,1,f +14429,3020,322,1,f +14429,3021,322,1,f +14429,3024,323,1,f +14429,3024,15,1,t +14429,3024,226,1,f +14429,3024,323,1,t +14429,3024,226,1,t +14429,3024,15,2,f +14429,3176,14,1,f +14429,3176,15,2,f +14429,3622pr0011,29,1,f +14429,3623,15,1,f +14429,3623pr0011,29,1,f +14429,3710,27,1,f +14429,3742,5,2,f +14429,3742,5,2,t +14429,3829c01,15,1,f +14429,3941,41,1,f +14429,4490,29,1,f +14429,4871,15,2,f +14429,54200,5,1,t +14429,54200,5,2,f +14429,6141,14,1,t +14429,6141,27,1,t +14429,6141,29,1,t +14429,6141,27,2,f +14429,6141,322,1,f +14429,6141,322,1,t +14429,6141,41,4,f +14429,6141,33,1,t +14429,6141,29,2,f +14429,6141,85,1,f +14429,6141,33,2,f +14429,6141,14,1,f +14429,6141,25,1,t +14429,6141,85,1,t +14429,6141,158,1,t +14429,6141,41,1,t +14429,6141,25,2,f +14429,6141,158,1,f +14429,6141,4,1,t +14429,6141,4,1,f +14429,85861,15,1,t +14429,85861,15,1,f +14429,89522,212,1,t +14429,89522,212,1,f +14429,93273,15,1,f +14429,98138pr0008,15,2,f +14429,98138pr0008,15,1,t +14429,98262,14,2,f +14429,99206,15,1,f +14429,99780,15,1,f +14431,15712,71,1,f +14431,18868a,41,2,f +14431,19981pr0007,41,1,f +14431,21268,71,1,f +14431,22602,297,1,f +14431,22602,297,1,t +14431,298c02,71,1,t +14431,298c02,71,1,f +14431,3023,36,1,f +14431,3023,71,2,f +14431,3024,71,1,t +14431,3024,28,1,t +14431,3024,272,1,f +14431,3024,36,1,f +14431,3024,28,4,f +14431,3024,71,2,f +14431,3024,36,1,t +14431,3024,272,1,t +14431,3040b,28,4,f +14431,3069b,71,1,f +14431,3069bpr0154,71,1,f +14431,32028,0,4,f +14431,3626cpr1773,78,1,f +14431,3794b,71,2,f +14431,3937,71,2,f +14431,3938,71,2,f +14431,3941,41,2,f +14431,4070,71,3,f +14431,44728,0,4,f +14431,48729b,0,1,f +14431,48729b,0,1,t +14431,51739,71,2,f +14431,59900,36,4,f +14431,60474,71,1,f +14431,60478,71,1,f +14431,6141,41,1,t +14431,6141,71,4,f +14431,6141,47,8,f +14431,6141,36,1,t +14431,6141,36,4,f +14431,6141,41,1,f +14431,6141,71,1,t +14431,6141,47,1,t +14431,87079pr0081,272,1,f +14431,87079pr0082,272,3,f +14431,87580,272,1,f +14431,970c00pr0930,272,1,f +14431,973pr3130c01,272,1,f +14431,98138,179,1,t +14431,98138,179,1,f +14431,99207,0,4,f +14432,2540,19,1,f +14432,3005,2,1,f +14432,3005,4,1,f +14432,3022,15,1,f +14432,3070b,15,2,f +14432,3070b,15,1,t +14432,4697b,71,1,f +14432,4697b,71,1,t +14432,4865b,19,2,f +14432,50949,0,2,f +14432,54200,308,1,t +14432,54200,308,4,f +14432,59230,71,1,t +14432,59230,71,1,f +14432,99780,72,2,f +14435,10172,297,1,f +14435,11055,15,1,f +14435,11213,322,1,f +14435,11403pr0004c01,19,1,f +14435,11477,19,2,f +14435,11477,2,2,f +14435,11477,191,4,f +14435,11816pr0001,84,1,f +14435,11816pr0003,78,1,f +14435,13965,70,2,f +14435,14395,70,7,f +14435,14417,72,4,f +14435,14732pr0001,308,1,f +14435,15573,19,2,f +14435,15712,70,2,f +14435,18853,191,1,t +14435,18853,191,1,f +14435,18854,52,1,t +14435,18854,52,1,f +14435,20482,47,1,f +14435,20482,47,1,t +14435,22888,2,2,f +14435,2335pr02,15,1,f +14435,2417,2,1,f +14435,24184,25,1,t +14435,24184,25,2,f +14435,2423,2,4,f +14435,2431,30,3,f +14435,2431,322,1,f +14435,2453b,70,1,f +14435,25651,47,1,t +14435,25651,47,1,f +14435,2921,70,1,f +14435,2921,71,3,f +14435,3001,70,2,f +14435,3001,71,2,f +14435,3003,71,1,f +14435,3003,70,3,f +14435,3004,71,4,f +14435,3004,70,1,f +14435,3005,2,2,f +14435,3005,72,7,f +14435,3005,41,2,f +14435,30086,26,1,f +14435,30089,0,1,f +14435,30136,70,4,f +14435,3020,19,2,f +14435,3020,191,4,f +14435,3020,70,2,f +14435,3021,2,5,f +14435,3022,70,2,f +14435,3022,2,1,f +14435,3023,191,2,f +14435,3023,2,10,f +14435,3023,484,8,f +14435,3024,70,8,f +14435,3024,70,1,t +14435,3031,19,2,f +14435,3032,19,1,f +14435,3034,2,1,f +14435,30357,19,2,f +14435,30374,70,2,f +14435,3039,70,1,f +14435,3039,71,4,f +14435,3040b,2,4,f +14435,3040b,70,1,f +14435,30503,2,1,f +14435,30565,322,1,f +14435,3062b,70,11,f +14435,3062b,15,2,f +14435,3068b,191,2,f +14435,3069b,19,2,f +14435,32054,71,1,f +14435,32062,4,1,f +14435,32474,191,1,f +14435,33291,10,3,f +14435,33291,26,9,f +14435,33291,4,2,t +14435,33291,4,7,f +14435,33291,26,3,t +14435,33291,10,2,t +14435,3460,15,2,f +14435,3623,2,3,f +14435,3665,71,3,f +14435,3700,70,5,f +14435,3710,30,2,f +14435,3710,191,6,f +14435,3710,2,1,f +14435,3710,70,3,f +14435,3795,2,1,f +14435,3941,70,1,f +14435,3957a,15,1,f +14435,3957b,70,3,f +14435,4032a,484,1,f +14435,41121stk01,47,1,f +14435,4150,72,4,f +14435,41539,19,1,f +14435,41539,2,2,f +14435,4286,72,2,f +14435,4495b,26,1,f +14435,46303,26,1,f +14435,4697b,71,1,t +14435,4697b,71,1,f +14435,47847,72,1,f +14435,54200,71,5,f +14435,54200,71,3,t +14435,59230,15,1,f +14435,59230,15,1,t +14435,59900,182,1,f +14435,59900,70,4,f +14435,59900,46,1,f +14435,6019,0,8,f +14435,60474,0,1,f +14435,60481,71,4,f +14435,60481,70,1,f +14435,6091,70,1,f +14435,6091,322,1,f +14435,6141,41,3,t +14435,6141,41,6,f +14435,6141,70,7,f +14435,6141,182,1,t +14435,6141,182,3,f +14435,6141,70,2,t +14435,63868,70,2,f +14435,64647,182,2,f +14435,64647,182,1,t +14435,64648,179,1,f +14435,75937,0,1,f +14435,87079,30,2,f +14435,87079,15,1,f +14435,87580,10,2,f +14435,87580,70,2,f +14435,87585,70,2,f +14435,87585,70,1,t +14435,88072,71,1,f +14435,92256,70,1,f +14435,92438,322,1,f +14435,92456pr0101c01,84,1,f +14435,92456pr0102c01,78,1,f +14435,92690,70,2,f +14435,92818pr0002c01,26,1,f +14435,93095,191,2,f +14435,93273,15,4,f +14435,93352,308,1,f +14435,98138,71,6,f +14435,98138,47,1,f +14435,98138,47,1,t +14435,98138,71,2,t +14435,98138pr0048,70,1,t +14435,98138pr0048,70,2,f +14435,98138pr0051,297,1,f +14435,98138pr0051,297,1,t +14435,99780,15,2,f +14436,10166pr0003,70,1,f +14436,3069bpr0014,71,1,f +14436,3626cpr1480,14,1,f +14436,88646,0,1,f +14436,970c00pr0713,379,1,f +14436,973pr2749c01,0,1,f +14437,2452,4,2,f +14437,2508,7,1,f +14437,2880,0,2,f +14437,2880,4,2,f +14437,3149c01,0,1,f +14437,3149c01,4,1,f +14437,3403,4,1,f +14437,3404,4,1,f +14437,3679,7,2,f +14437,3680,15,1,f +14437,3680,0,1,f +14437,3730,7,1,f +14437,3730,4,1,f +14437,3731,4,1,f +14437,4275b,4,2,f +14437,4275b,0,2,f +14437,4276b,4,2,f +14437,4276b,0,2,f +14437,4531,0,2,f +14437,4531,4,2,f +14438,2357,14,1,f +14438,2423,2,1,f +14438,2431,7,3,f +14438,2456,7,2,f +14438,2530,8,1,f +14438,2530,8,1,t +14438,2536,6,5,f +14438,2542,6,2,f +14438,2543,4,1,f +14438,2544,0,1,f +14438,2546p01,4,1,f +14438,2551,4,1,f +14438,2562,6,1,f +14438,2563,6,1,f +14438,2566,2,1,f +14438,2577,14,1,f +14438,3001,7,2,f +14438,3002,14,1,f +14438,3002,7,1,f +14438,3003,14,1,f +14438,3004,14,3,f +14438,3004,7,1,f +14438,3005,14,2,f +14438,3008,14,2,f +14438,3008,7,1,f +14438,3009,14,1,f +14438,3010,14,1,f +14438,3020,1,2,f +14438,3021,7,1,f +14438,3022,7,1,f +14438,3022,0,1,f +14438,3023,7,1,f +14438,3023,1,4,f +14438,3024,7,2,f +14438,3034,15,1,f +14438,3036,14,1,f +14438,3039,7,5,f +14438,3039,14,4,f +14438,3062b,2,1,f +14438,3062b,14,1,f +14438,3068b,7,1,f +14438,3068bp30,15,1,f +14438,3069b,7,1,f +14438,3298,7,1,f +14438,3334,1,1,f +14438,3460,15,1,f +14438,3622,14,1,f +14438,3623,7,1,f +14438,3626bp35,14,1,f +14438,3626bp49,14,1,f +14438,3626bpr0895,15,1,f +14438,3679,7,1,f +14438,3680,14,1,f +14438,3794a,4,2,f +14438,3841,8,1,f +14438,4032a,2,1,f +14438,4162,7,3,f +14438,4162,14,1,f +14438,4286,14,1,f +14438,4477,7,1,f +14438,4738a,6,1,f +14438,4739a,6,1,f +14438,57503,334,1,f +14438,57504,334,1,f +14438,57505,334,1,f +14438,57506,334,1,f +14438,6083,8,2,f +14438,6148,2,4,f +14438,6260,15,1,f +14438,6265,15,1,t +14438,6265,15,2,f +14438,6266,15,2,f +14438,970c00,1,1,f +14438,970c00,7,1,f +14438,973p31c01,14,1,f +14438,973p34c01,1,1,f +14440,15,1,1,f +14440,15,4,1,f +14440,17,1,1,f +14440,17,4,1,f +14440,21,47,1,f +14440,29c,15,5,f +14440,3001a,1,4,f +14440,3002a,4,2,f +14440,3003,14,1,f +14440,3003,1,1,f +14440,3004,47,1,f +14440,3004,0,2,f +14440,3004,1,18,f +14440,3005,0,2,f +14440,3005,14,2,f +14440,3005,1,14,f +14440,3008,1,3,f +14440,3009,1,11,f +14440,3010,14,1,f +14440,3010,1,15,f +14440,3010,4,1,f +14440,3010pb035u,4,1,f +14440,3020,14,2,f +14440,3021,7,1,f +14440,3021,1,2,f +14440,3022,0,1,f +14440,3022,4,2,f +14440,3023,0,2,f +14440,3024,0,2,f +14440,3031,0,1,f +14440,3032,1,1,f +14440,3034,14,4,f +14440,3035,4,1,f +14440,3037,0,6,f +14440,3037,4,3,f +14440,3038,4,4,f +14440,3039,0,8,f +14440,3039,4,3,f +14440,3040a,0,2,f +14440,3042,4,1,f +14440,3045,0,12,f +14440,3045,4,6,f +14440,3048a,4,1,f +14440,3062a,1,4,f +14440,3068b,15,4,f +14440,3081cc01,15,1,f +14440,3137c01,0,2,f +14440,3139,0,5,f +14440,3185,14,8,f +14440,3185,4,1,f +14440,3297,4,4,f +14440,3298,4,2,f +14440,3299,4,2,f +14440,33bc01,15,2,f +14440,3404ac01,0,1,f +14440,3460,0,2,f +14440,3464,4,1,f +14440,3581,1,5,f +14440,3582,14,5,f +14440,3624,0,1,f +14440,3624,4,1,f +14440,3626a,14,2,f +14440,455p02,2,1,f +14440,7039,4,1,f +14440,7049b,0,1,f +14440,8,7,1,f +14441,47328,0,1,f +14441,48989,71,1,f +14441,57543,135,1,f +14441,60176,0,1,f +14441,60894,0,1,f +14441,60896,19,5,f +14441,60902,0,4,f +14441,64262,57,1,f +14441,64324,19,1,f +14444,2346,0,4,f +14444,2357,0,4,f +14444,2419,2,2,f +14444,2456,0,6,f +14444,2654,0,2,f +14444,2730,0,8,f +14444,2780,0,24,f +14444,2815,0,2,f +14444,2817,7,2,f +14444,2825,7,2,f +14444,2854,7,2,f +14444,2902,0,4,f +14444,2903,15,4,f +14444,2982c01,1,1,f +14444,2983,7,4,f +14444,2994,15,2,f +14444,3001,0,25,f +14444,3001,2,1,f +14444,3003,0,20,f +14444,3004,2,4,f +14444,3004,0,20,f +14444,3004,14,4,f +14444,3007,0,8,f +14444,3010,0,6,f +14444,3020,14,6,f +14444,3022,1,4,f +14444,3022,2,2,f +14444,3022,7,8,f +14444,3023,7,20,f +14444,3024,7,8,f +14444,3033,7,1,f +14444,3034,2,4,f +14444,3039,2,3,f +14444,3040b,14,4,f +14444,3040b,0,12,f +14444,32001,7,4,f +14444,32002,8,16,f +14444,32007,15,4,f +14444,32009,14,4,f +14444,32013,1,4,f +14444,32015,7,4,f +14444,32017,7,2,f +14444,32028,7,8,f +14444,32039,7,2,f +14444,32062,0,8,f +14444,32064b,2,8,f +14444,32068,7,2,f +14444,32123b,7,16,f +14444,3460,7,8,f +14444,3482,14,10,f +14444,3483,0,2,f +14444,3623,14,2,f +14444,3634,0,2,f +14444,3647,7,8,f +14444,3648a,7,4,f +14444,3649,7,4,f +14444,3650c,7,4,f +14444,3665,14,4,f +14444,3665,0,4,f +14444,3666,7,10,f +14444,3673,7,24,f +14444,3679,7,2,f +14444,3680,1,2,f +14444,3700,0,12,f +14444,3700,14,4,f +14444,3701,2,2,f +14444,3701,0,10,f +14444,3702,0,8,f +14444,3703,0,6,f +14444,3705,0,2,f +14444,3706,0,6,f +14444,3707,0,6,f +14444,3708,0,2,f +14444,3709,7,4,f +14444,3710,7,10,f +14444,3713,7,40,f +14444,3736,7,2,f +14444,3737,0,4,f +14444,3738,7,8,f +14444,3743,7,4,f +14444,3747b,0,4,f +14444,3749,7,16,f +14444,3832,7,6,f +14444,3894,0,8,f +14444,3895,0,6,f +14444,3941,0,8,f +14444,3956,7,4,f +14444,3960,15,2,f +14444,4019,7,4,f +14444,4032a,15,2,f +14444,4032a,1,2,f +14444,4085c,0,2,f +14444,4185,7,4,f +14444,4220,14,2,f +14444,4221,0,4,f +14444,4274,7,8,f +14444,4275b,0,2,f +14444,4477,7,6,f +14444,4519,0,3,f +14444,4531,0,2,f +14444,4589,15,2,f +14444,4589,14,2,f +14444,4716,0,4,f +14444,5306bc020,0,4,f +14444,5306bc162,0,2,f +14444,6007,8,1,f +14444,6019,0,2,f +14444,6048a,0,2,f +14444,6133,57,2,f +14444,6141,15,3,f +14444,6141,1,3,f +14444,6141,0,3,f +14444,6215,2,4,f +14444,6536,7,2,f +14444,6538b,7,2,f +14444,6553,7,2,f +14444,6558,0,8,f +14444,6573,8,1,f +14444,6575,7,2,f +14444,6578,0,2,f +14444,6587,8,2,f +14444,6589,7,8,f +14444,6594,0,2,f +14444,6595,15,2,f +14444,6629,0,2,f +14444,6632,7,2,f +14444,680c01,0,2,f +14444,71427c01,7,2,f +14444,71509,0,3,f +14444,71793,7,1,f +14444,75c19,14,2,f +14444,78c09,3,4,f +14444,78c09,0,4,f +14444,78c12,22,4,f +14444,85543,15,2,f +14444,85545,1,2,f +14444,85546,14,3,f +14444,879,7,2,f +14444,884a,14,1,f +14444,9719,89,1,f +14444,x180,7,1,f +14444,x87,8,1,f +14445,2352,14,1,f +14445,2456,4,2,f +14445,3001,0,14,f +14445,3001,4,29,f +14445,3001,1,30,f +14445,3001,14,20,f +14445,3001,15,30,f +14445,3001pr1,14,1,f +14445,3002,1,8,f +14445,3002,14,6,f +14445,3002,0,6,f +14445,3002,4,8,f +14445,3002,15,10,f +14445,3003,4,53,f +14445,3003,15,63,f +14445,3003,14,46,f +14445,3003,1,52,f +14445,3003,0,33,f +14445,3003pe1,14,2,f +14445,3006,1,2,f +14445,3007,14,2,f +14445,3470,2,1,f +14445,3483,0,4,f +14445,4130,4,2,f +14445,4131,14,2,f +14445,4132,4,3,f +14445,4133,14,3,f +14445,4180c02,0,2,f +14445,4204,2,1,f +14445,4727,2,4,f +14445,4728,1,2,f +14445,4728,14,2,f +14445,4730,1,1,f +14445,4743,4,1,f +14445,4744,14,1,f +14445,4745,14,1,f +14445,6007,8,1,f +14445,bfp001,9999,1,f +14445,bfp002,9999,1,f +14448,11618,31,1,f +14448,11618,31,1,t +14448,14734pr0001,191,1,f +14448,15279,10,2,f +14448,15470,297,3,f +14448,15470,297,1,t +14448,3004,15,2,f +14448,30136,31,2,f +14448,3023,322,1,f +14448,3032,322,1,f +14448,30367b,15,1,f +14448,33057,484,1,f +14448,33291,5,1,t +14448,33291,5,2,f +14448,3622,15,2,f +14448,3623,2,2,f +14448,3710,28,1,f +14448,46212,41,1,f +14448,6141,297,1,t +14448,6141,29,6,f +14448,6141,29,1,t +14448,6141,297,8,f +14448,87580,10,1,f +14448,87580,15,2,f +14448,88292,31,2,f +14449,2566,15,1,f +14449,3003,15,1,f +14449,3005,114,2,f +14449,30153,45,1,f +14449,3021,15,1,f +14449,3065,114,2,f +14449,3622,15,1,f +14449,4589,46,4,f +14449,4589,182,1,f +14449,4728,45,1,f +14451,3005,15,2,f +14451,3626bpr1092,14,1,f +14451,3710,19,1,f +14451,87990,226,1,f +14451,88646pr0001,15,1,f +14451,970c03pb18,14,1,f +14451,973pr2199c01,15,1,f +14451,99250pr0001,4,1,f +14454,2555,71,4,f +14454,3005,15,2,f +14454,3070b,4,2,f +14454,3070b,4,1,t +14454,3794b,15,1,f +14454,3839b,15,4,f +14454,4070,71,1,f +14454,4733,15,1,f +14454,52107,4,1,f +14454,54200,71,1,t +14454,54200,71,1,f +14454,54200,40,1,f +14454,54200,40,1,t +14454,6141,1,1,f +14454,6141,1,1,t +14454,64567,71,4,f +14456,3624,4,1,f +14456,3626bpb0030,14,1,f +14456,970c00,15,1,f +14456,973pb0232c01,4,1,f +14457,16542,7,1,f +14457,298c03,0,1,f +14457,3003,4,2,f +14457,3004,4,1,f +14457,3010,4,1,f +14457,3020,4,1,f +14457,3021,0,1,f +14457,3021,4,3,f +14457,3022,4,2,f +14457,3022,0,1,f +14457,3023,4,3,f +14457,3024,46,2,f +14457,3024,36,2,f +14457,3034,0,1,f +14457,3039,4,1,f +14457,3062b,7,2,f +14457,3623,4,2,f +14457,3626apr0001,14,1,f +14457,3641,0,2,f +14457,3666,4,2,f +14457,3679,7,1,f +14457,3680,4,1,f +14457,3710,4,5,f +14457,3730,0,1,f +14457,3731,4,1,f +14457,3788,4,1,f +14457,3794a,4,1,f +14457,3795,0,1,f +14457,3821,4,1,f +14457,3822,4,1,f +14457,3823,41,1,f +14457,3829c01,1,1,f +14457,3832,0,1,f +14457,3834,15,1,f +14457,3835,7,1,f +14457,3836,6,1,f +14457,3837,8,1,f +14457,3838,7,1,f +14457,3962a,0,1,f +14457,4070,15,2,f +14457,4070,4,2,f +14457,4084,0,6,f +14457,4085b,0,6,f +14457,4175,0,1,f +14457,4207,7,2,f +14457,4208,0,1,f +14457,4209,4,1,f +14457,4211,4,3,f +14457,4213,4,1,f +14457,4214,4,1,f +14457,4275a,4,2,f +14457,4276a,0,2,f +14457,4531,4,2,f +14457,4599a,7,2,f +14457,4600,0,4,f +14457,4624,15,8,f +14457,4715,15,1,f +14457,4755,15,1,f +14457,4757,15,1,f +14457,4758,15,1,f +14457,4760c01,15,1,f +14457,4771,15,1,f +14457,4773,46,1,t +14457,4773,33,2,f +14457,4773,36,2,f +14457,4773,36,1,t +14457,4773,33,1,t +14457,4773,46,2,f +14457,4774c01,0,1,f +14457,73590c01a,0,2,f +14457,970c00,0,1,f +14457,973p21c01,0,1,f +14459,2346,0,6,f +14459,2348b,33,1,f +14459,2349a,14,1,f +14459,2420,14,2,f +14459,2436,14,1,f +14459,2452,0,1,f +14459,2540,7,1,f +14459,2817,7,3,f +14459,2877,0,1,f +14459,298c03,0,2,f +14459,3002,0,1,f +14459,30022,14,1,f +14459,3020,14,1,f +14459,3021,15,1,f +14459,3022,0,2,f +14459,3023,7,3,f +14459,3023,0,5,f +14459,3024,36,2,f +14459,3030,14,2,f +14459,3031,14,1,f +14459,3062b,0,1,f +14459,3068b,0,1,f +14459,3068b,14,1,f +14459,3068bp05,15,1,f +14459,3069b,14,2,f +14459,3069bp09,15,1,f +14459,3070b,36,2,f +14459,3324c01,0,1,f +14459,3436,14,1,f +14459,3482,14,6,f +14459,3626bp03,14,1,f +14459,3626bp04,14,1,f +14459,3639,0,1,f +14459,3640,0,1,f +14459,3665,14,4,f +14459,3679,7,1,f +14459,3680,14,1,f +14459,3706,0,3,f +14459,3710,14,5,f +14459,3713,7,4,f +14459,3795,0,2,f +14459,3823,41,1,f +14459,3829c01,7,1,f +14459,3832,14,1,f +14459,3833,4,1,f +14459,3839b,7,1,f +14459,4081b,0,4,f +14459,4083,7,1,f +14459,4214,14,1,f +14459,4265b,7,4,f +14459,4275b,14,2,f +14459,4276b,14,1,f +14459,4286,14,2,f +14459,4485,4,1,f +14459,4531,14,1,f +14459,4600,0,2,f +14459,4626,14,1,f +14459,4855,14,1,f +14459,4859,14,1,f +14459,6014a,14,4,f +14459,6015,0,4,f +14459,6141,15,2,f +14459,6141,46,8,f +14459,970c00,1,2,f +14459,973pr1245c01,1,1,f +14459,973px122c01,1,1,f +14461,11477,2,2,f +14461,13971,71,4,f +14461,15068,2,6,f +14461,15207,0,1,f +14461,15712,15,2,f +14461,16091,71,1,f +14461,2412b,15,3,f +14461,2412b,4,2,f +14461,2431,14,2,f +14461,2458,15,2,f +14461,2540,71,4,f +14461,2877,71,2,f +14461,3010,0,1,f +14461,30136,19,2,f +14461,3021,2,2,f +14461,3021,0,4,f +14461,3023,182,4,f +14461,3023,0,6,f +14461,3023,36,2,f +14461,3024,2,2,f +14461,3034,0,1,f +14461,30363,15,2,f +14461,3039,19,1,f +14461,3062b,71,4,f +14461,3460,2,1,f +14461,3622,2,2,f +14461,3622,15,2,f +14461,3623,1,2,f +14461,3665,2,4,f +14461,3666,15,2,f +14461,3666,72,2,f +14461,3673,71,4,f +14461,3710,15,1,f +14461,3747a,72,1,f +14461,3795,71,2,f +14461,3795,19,2,f +14461,3895,72,2,f +14461,4032a,71,1,f +14461,44728,71,5,f +14461,47457,72,2,f +14461,48336,0,2,f +14461,48729b,0,1,t +14461,48729b,0,1,f +14461,50950,2,2,f +14461,61254,0,4,f +14461,6141,47,4,f +14461,6141,47,1,t +14461,6141,1,1,t +14461,6141,1,4,f +14461,62360,40,1,f +14461,6636,19,1,f +14461,85984,19,2,f +14461,87079,2,2,f +14461,87544,40,2,f +14464,2423,2,1,f +14464,3001,4,1,f +14464,3004,1,2,f +14464,3004,15,4,f +14464,3004,4,1,f +14464,3004p0b,14,1,f +14464,3020,15,1,f +14464,3021,0,1,f +14464,3021,1,1,f +14464,3022,0,1,f +14464,3022,2,1,f +14464,3022,15,2,f +14464,3039,4,2,f +14464,3040b,0,2,f +14464,3062b,15,1,f +14464,3665,1,2,f +14464,3688,4,1,f +14464,4286,4,2,f +14464,6141,14,1,t +14464,6141,14,2,f +14464,6141,57,1,t +14464,6141,15,1,f +14464,6141,57,1,f +14464,6141,15,1,t +14467,2412b,2,1,f +14467,2412b,15,1,f +14467,2420,4,2,f +14467,2420,0,2,f +14467,2431,15,1,f +14467,2431,7,1,f +14467,2432,15,1,f +14467,2433,0,1,f +14467,2436,15,1,f +14467,2446,4,1,f +14467,2447,0,1,f +14467,2508,7,1,f +14467,2569,0,1,f +14467,2610,14,1,f +14467,2654,0,3,f +14467,2823,15,2,f +14467,2926,0,1,f +14467,3003,15,1,f +14467,3020,15,1,f +14467,3022,2,2,f +14467,3022,0,1,f +14467,3023,4,3,f +14467,3023,7,3,f +14467,3023,2,3,f +14467,3024,36,2,f +14467,3024,15,2,f +14467,3024,46,2,f +14467,3034,2,1,f +14467,3034,4,1,f +14467,3139,0,2,f +14467,3298,15,1,f +14467,3460,7,2,f +14467,3623,15,2,f +14467,3626bpr0001,14,1,f +14467,3710,7,1,f +14467,3710,4,1,f +14467,3730,0,1,f +14467,3788,4,1,f +14467,3794a,4,1,f +14467,3823,41,1,f +14467,3829c01,15,1,f +14467,3829c01,4,1,f +14467,4083,15,1,f +14467,4211,4,1,f +14467,4485,4,1,f +14467,4600,0,2,f +14467,4624,7,2,f +14467,6014a,15,4,f +14467,6015,0,4,f +14467,6019,0,1,f +14467,970c00,2,1,f +14467,973px130c01,15,1,f +14468,10172,297,1,f +14468,11153,0,6,f +14468,11153,4,6,f +14468,11211,71,9,f +14468,11212,72,2,f +14468,11215,0,1,f +14468,11303,4,3,f +14468,11477,4,2,f +14468,14045,0,3,f +14468,14045,0,2,t +14468,14395,4,12,f +14468,14718,71,2,f +14468,14769,71,1,f +14468,15068,4,20,f +14468,15068,0,1,f +14468,15396,4,1,f +14468,15535,72,2,f +14468,15573,4,2,f +14468,15573,15,1,f +14468,15573,0,6,f +14468,15672,15,2,f +14468,15712,71,2,f +14468,18649,0,1,f +14468,18654,72,1,t +14468,18654,72,1,f +14468,18677,71,8,f +14468,18976,0,6,f +14468,18977,0,6,f +14468,19220,0,1,f +14468,2357,15,2,f +14468,2357,4,4,f +14468,2412b,71,12,f +14468,2412b,14,4,f +14468,2419,4,1,f +14468,2420,4,8,f +14468,2431,4,6,f +14468,2431,14,4,f +14468,2431,0,2,f +14468,2432,14,3,f +14468,2432,71,1,f +14468,2446,179,1,f +14468,2446,1,1,f +14468,2447,40,2,f +14468,2447,40,1,t +14468,2454a,4,4,f +14468,2456,4,2,f +14468,2456,0,3,f +14468,2465,4,6,f +14468,2495,4,1,f +14468,2496,0,1,f +14468,2540,72,1,f +14468,2639,72,4,f +14468,2654,71,3,f +14468,2877,71,2,f +14468,298c02,0,1,f +14468,298c02,0,1,t +14468,30000,72,1,f +14468,30029,0,1,f +14468,3003,4,5,f +14468,30031,72,2,f +14468,3004,4,20,f +14468,3004,14,2,f +14468,30043,0,1,f +14468,3005,4,12,f +14468,3006,4,4,f +14468,3007,4,4,f +14468,3008,4,3,f +14468,3009,71,5,f +14468,3010,4,11,f +14468,30157,72,2,f +14468,30165,72,1,f +14468,3020,0,2,f +14468,3020,4,6,f +14468,3020,15,1,f +14468,3020,72,1,f +14468,3021,0,2,f +14468,3021,15,4,f +14468,3021,1,4,f +14468,3021,4,1,f +14468,3022,2,5,f +14468,3023,14,3,f +14468,3023,4,32,f +14468,3023,71,3,f +14468,3023,0,5,f +14468,3023,15,3,f +14468,30237a,4,2,f +14468,3024,0,1,t +14468,3024,4,2,t +14468,3024,0,2,f +14468,3024,4,8,f +14468,30261,15,1,f +14468,3031,71,4,f +14468,3031,4,2,f +14468,3032,4,2,f +14468,3034,15,1,f +14468,3034,4,5,f +14468,3034,72,3,f +14468,3035,4,4,f +14468,30357,0,4,f +14468,3036,4,1,f +14468,3036,0,1,f +14468,3036,15,2,f +14468,30363,71,1,f +14468,30364,0,2,f +14468,3039,0,5,f +14468,3040b,71,2,f +14468,30414,72,2,f +14468,30663,71,1,f +14468,3068b,71,6,f +14468,3068b,0,4,f +14468,3068b,15,2,f +14468,3069b,4,9,f +14468,3069b,36,2,f +14468,3069bpr0030,15,1,f +14468,3070b,36,1,t +14468,3070b,4,2,f +14468,3070b,36,2,f +14468,3070b,4,1,t +14468,32000,4,4,f +14468,32001,0,2,f +14468,32028,4,4,f +14468,32028,0,3,f +14468,32039,0,2,f +14468,32054,4,1,f +14468,32062,0,2,f +14468,32064a,4,8,f +14468,32073,71,1,f +14468,32123b,14,7,f +14468,32123b,71,4,f +14468,32123b,14,2,t +14468,32123b,71,1,t +14468,32124,0,4,f +14468,3245c,4,4,f +14468,32474,0,1,f +14468,3298,4,3,f +14468,3460,0,1,f +14468,3460,4,10,f +14468,3464,15,2,f +14468,3622,0,2,f +14468,3623,4,10,f +14468,3626bpr0389,14,1,f +14468,3626cpr0498,14,1,f +14468,3626cpr0499,14,1,f +14468,3626cpr0893,14,1,f +14468,3626cpr0914,14,1,f +14468,3626cpr1662,14,1,f +14468,3660,72,2,f +14468,3665,4,6,f +14468,3666,72,10,f +14468,3666,4,8,f +14468,3666,15,9,f +14468,3673,71,1,t +14468,3673,71,2,f +14468,3700,4,2,f +14468,3700,1,2,f +14468,3701,0,2,f +14468,3703,0,2,f +14468,3705,0,1,f +14468,3709,0,2,f +14468,3710,1,8,f +14468,3710,4,8,f +14468,3710,2,3,f +14468,3713,71,2,t +14468,3713,71,8,f +14468,3738,1,1,f +14468,3747b,14,4,f +14468,3795,71,4,f +14468,3795,4,10,f +14468,3795,0,3,f +14468,3829c01,4,1,f +14468,3832,4,11,f +14468,3899,14,1,f +14468,3938,71,4,f +14468,3940b,0,2,f +14468,3941,72,3,f +14468,4032a,71,2,f +14468,4032a,14,4,f +14468,4079,1,2,f +14468,41539,72,2,f +14468,41539,15,1,f +14468,4162,71,2,f +14468,4162,0,1,f +14468,4162,4,14,f +14468,41677,4,1,f +14468,42022,4,2,f +14468,4274,1,4,f +14468,4274,1,1,t +14468,4282,4,4,f +14468,43722,0,1,f +14468,43723,0,1,f +14468,44294,71,2,f +14468,44302a,0,2,f +14468,44728,4,2,f +14468,4519,71,4,f +14468,4533,15,2,f +14468,4599b,1,1,t +14468,4599b,1,1,f +14468,4599b,14,1,f +14468,4599b,14,1,t +14468,47457,4,2,f +14468,47905,0,2,f +14468,48336,4,3,f +14468,48336,71,2,f +14468,4865a,4,6,f +14468,50950,4,2,f +14468,51739,4,3,f +14468,54200,4,6,f +14468,54200,4,2,t +14468,54200,15,1,t +14468,54200,15,4,f +14468,55981,71,4,f +14468,55982,71,4,f +14468,58090,0,4,f +14468,59349,4,9,f +14468,59895,0,2,f +14468,59895,0,1,t +14468,604547,0,1,f +14468,604548,0,1,f +14468,604549,0,1,f +14468,604550,0,1,f +14468,604551,0,1,f +14468,604552,0,1,f +14468,604553,0,1,f +14468,604614,0,1,f +14468,604615,0,1,f +14468,60477,4,1,f +14468,60478,4,2,f +14468,60479,4,7,f +14468,60485,71,3,f +14468,6111,4,8,f +14468,61409,0,6,f +14468,61409,15,2,f +14468,6141,71,4,f +14468,6141,71,1,t +14468,6183,4,2,f +14468,62361,4,2,f +14468,62462,25,1,f +14468,63864,0,4,f +14468,63864,4,2,f +14468,63868,4,2,f +14468,63868,72,2,f +14468,63868,71,4,f +14468,63965,0,1,f +14468,64644,71,2,f +14468,6541,4,8,f +14468,6558,1,4,f +14468,6636,14,1,f +14468,6636,4,4,f +14468,6636,15,2,f +14468,6636,0,2,f +14468,75913stk01,9999,1,t +14468,75913stk02,9999,1,t +14468,85080,0,4,f +14468,85984,0,1,f +14468,87079,71,3,f +14468,87079,4,9,f +14468,87079,15,3,f +14468,87087,1,4,f +14468,87552,4,2,f +14468,87609,0,2,f +14468,87990,308,1,f +14468,88930,71,2,f +14468,88930,4,6,f +14468,89201,0,4,f +14468,90194,4,2,f +14468,90498,72,2,f +14468,92410,4,2,f +14468,93273,4,2,f +14468,93606,4,2,f +14468,96874,25,1,t +14468,970c00,4,6,f +14468,973pr2960c01,4,1,f +14468,973pr2966c01,4,5,f +14468,98138,297,2,f +14468,98138,47,1,t +14468,98138,47,1,f +14468,98138,182,1,t +14468,98138,297,1,t +14468,98138,182,2,f +14468,98285,0,2,f +14468,98286,71,2,f +14468,99206,71,2,f +14468,99781,15,4,f +14468,99781,71,2,f +14469,3022,0,2,f +14469,3024,0,630,f +14469,3024,72,360,f +14469,3024,15,1440,f +14469,3024,71,360,f +14469,3037,0,44,f +14469,3038,0,2,f +14469,3046a,0,6,f +14469,3176,0,1,f +14469,4186,71,1,f +14469,6007,72,1,t +14471,3660,4,10,f +14471,3665,4,6,f +14472,11476,71,2,f +14472,11618,26,1,t +14472,11618,26,1,f +14472,11816pr0006,78,1,f +14472,15395,15,1,f +14472,15396,323,1,f +14472,2412b,14,1,f +14472,2447,47,1,t +14472,2447,47,1,f +14472,2456,15,2,f +14472,298c02,71,1,f +14472,298c02,71,1,t +14472,30136,84,3,f +14472,30137,84,3,f +14472,30150,84,1,f +14472,30171,26,1,f +14472,3020,27,4,f +14472,3021,71,1,f +14472,3022,71,1,f +14472,3023,72,1,f +14472,3034,14,2,f +14472,3062b,41,1,f +14472,3062b,14,5,f +14472,3062b,27,2,f +14472,3062b,71,1,f +14472,3069bpr0100,2,1,f +14472,33291,5,1,t +14472,33291,191,1,t +14472,33291,5,4,f +14472,33291,191,2,f +14472,33291,10,7,f +14472,33291,10,1,t +14472,3460,14,2,f +14472,3464,15,2,f +14472,3626c,47,1,f +14472,3710,14,4,f +14472,3710,27,4,f +14472,3741,2,1,f +14472,3741,2,1,t +14472,3742,4,3,f +14472,3742,4,1,t +14472,3747b,15,1,f +14472,3794b,19,2,f +14472,3795,27,1,f +14472,3830,15,1,f +14472,3831,15,1,f +14472,3899,47,3,f +14472,4070,19,2,f +14472,4599b,71,1,f +14472,4599b,71,1,t +14472,4865b,14,1,f +14472,59895,0,2,f +14472,59900,15,4,f +14472,59900,26,2,f +14472,6141,47,1,f +14472,6141,70,2,f +14472,6141,70,1,t +14472,6141,29,1,t +14472,6141,15,2,f +14472,6141,47,1,t +14472,6141,29,2,f +14472,6141,15,1,t +14472,6231,29,4,f +14472,6256,29,1,f +14472,63965,15,2,f +14472,87079pr0059,15,1,f +14472,87087,71,1,f +14472,92257,320,1,f +14472,92456pr0045c01,78,1,f +14472,92818pr0003c01,29,1,f +14472,95344,297,1,t +14472,95344,297,1,f +14472,98138,179,1,f +14472,98138,179,1,t +14472,98138pr0018,84,3,f +14472,98138pr0018,84,1,t +14472,98397,71,1,f +14473,11371,484,1,f +14473,12058,92,1,f +14473,12062,308,1,f +14473,3011,27,1,f +14473,3437,27,1,f +14473,3437,10,2,f +14473,4066,191,2,f +14473,6510,25,1,f +14473,89406,15,1,f +14473,98223,4,1,f +14474,3069bpr0085,15,1,f +14474,3794b,14,2,f +14474,3900,15,2,f +14474,4083,14,1,f +14474,4085c,14,2,f +14474,44728,15,1,f +14474,6141,33,1,t +14474,6141,33,2,f +14475,12825,72,1,f +14475,30375,72,1,f +14475,30377,308,2,f +14475,30377,308,1,t +14475,3623,72,1,f +14475,47905,72,1,f +14475,54200,308,1,t +14475,54200,308,2,f +14475,98103pr0003,308,1,f +14476,3004,4,2,f +14476,3004,15,2,f +14476,3040b,15,1,f +14476,3665,4,2,f +14476,3710,4,1,f +14477,2412b,72,4,f +14477,2432,72,2,f +14477,298c02,71,2,f +14477,298c02,71,1,t +14477,3001,1,4,f +14477,3001,19,4,f +14477,3001,14,4,f +14477,3001,70,4,f +14477,3001,71,4,f +14477,3001,2,4,f +14477,3001,4,4,f +14477,3001,15,4,f +14477,3003,1,2,f +14477,3003,19,2,f +14477,3003,70,2,f +14477,3003,2,2,f +14477,3003,14,2,f +14477,3003,15,2,f +14477,3003,4,2,f +14477,3003,71,2,f +14477,3004,71,4,f +14477,3004,2,4,f +14477,3004,4,4,f +14477,3004,14,4,f +14477,3004,19,2,f +14477,3004,70,4,f +14477,3004,1,4,f +14477,3004,15,4,f +14477,3010,1,4,f +14477,3010,14,4,f +14477,3010,15,4,f +14477,3010,2,4,f +14477,3010,19,2,f +14477,3010,71,4,f +14477,3010,4,4,f +14477,3010,70,4,f +14477,30165,14,2,f +14477,3020,15,1,f +14477,3020,71,2,f +14477,3020,4,2,f +14477,3020,14,2,f +14477,3020,1,2,f +14477,3020,70,2,f +14477,3020,2,2,f +14477,3022,14,2,f +14477,3022,71,2,f +14477,3022,1,2,f +14477,3022,15,2,f +14477,3022,4,2,f +14477,3022,70,2,f +14477,3022,2,2,f +14477,3031,70,1,f +14477,3036,2,1,f +14477,30367c,15,2,f +14477,3039,15,2,f +14477,3039,4,4,f +14477,3039,2,2,f +14477,3039,47,2,f +14477,3039,14,2,f +14477,3040b,4,2,f +14477,3040b,2,2,f +14477,30414,72,1,f +14477,3043,4,2,f +14477,3048c,4,2,f +14477,30503,15,2,f +14477,3062b,70,8,f +14477,3062b,2,4,f +14477,3062b,47,2,f +14477,3062b,15,6,f +14477,3062b,72,6,f +14477,3062b,46,2,f +14477,3063b,71,4,f +14477,3065,47,2,f +14477,3068b,72,1,f +14477,3068b,0,1,f +14477,3068b,15,1,f +14477,3068bpr0155,1,1,f +14477,3068bpr0156,2,1,f +14477,3068bpr0158,4,1,f +14477,3068bpr0159,14,1,f +14477,3068bpr0160,0,1,f +14477,3068bpr0168,25,1,f +14477,3298,4,1,f +14477,3626bpr0387,14,1,f +14477,3660,14,2,f +14477,3660,4,2,f +14477,3665,2,2,f +14477,3679,71,2,f +14477,3680,0,2,f +14477,3710,70,2,f +14477,3710,4,2,f +14477,3710,71,2,f +14477,3710,14,2,f +14477,3710,1,2,f +14477,3710,15,2,f +14477,3710,2,2,f +14477,3794b,72,2,f +14477,3795,4,1,f +14477,3795,2,1,f +14477,3795,70,1,f +14477,3795,15,1,f +14477,3795,71,1,f +14477,3795,1,1,f +14477,3795,14,1,f +14477,3829c01,71,1,f +14477,3839b,72,2,f +14477,3937,72,2,f +14477,3938,0,2,f +14477,3941,47,1,f +14477,3941,46,1,f +14477,3941,4,2,f +14477,3941,15,2,f +14477,3941,70,2,f +14477,3941,2,2,f +14477,3957a,0,2,f +14477,3960,15,1,f +14477,4006,0,1,f +14477,4032a,70,2,f +14477,4032a,2,2,f +14477,44728,72,2,f +14477,4488,71,4,f +14477,4623,72,2,f +14477,4624,15,6,f +14477,4740,72,2,f +14477,47905,72,2,f +14477,6014b,15,4,f +14477,6015,0,4,f +14477,6019,72,2,f +14477,6126b,57,1,f +14477,6141,36,4,f +14477,6141,33,1,t +14477,6141,0,4,f +14477,6141,15,4,f +14477,6141,36,1,t +14477,6141,0,1,t +14477,6141,15,1,t +14477,6141,4,4,f +14477,6141,33,4,f +14477,6141,4,1,t +14477,6157,71,4,f +14477,62810,308,1,f +14477,64776pat0001,0,1,f +14477,73590c02a,0,1,f +14477,85863pr0018,4,1,f +14477,87414,0,6,f +14477,970c00,1,1,f +14477,973c02,4,1,f +14477,create00,9999,1,f +14481,13731,71,2,f +14481,2357,14,2,f +14481,2412b,14,2,f +14481,2412b,1,7,f +14481,2431,1,2,f +14481,2431,71,2,f +14481,2432,1,1,f +14481,2436,71,2,f +14481,2444,14,4,f +14481,2540,1,1,f +14481,2569,14,3,f +14481,2654,47,9,f +14481,298c02,71,4,f +14481,298c02,71,1,t +14481,30000,72,1,f +14481,30033,0,1,f +14481,3004,72,2,f +14481,30162,72,2,f +14481,30170,72,2,f +14481,30171,70,2,f +14481,3022,0,6,f +14481,3023,72,10,f +14481,3024,14,2,f +14481,3031,71,2,f +14481,3031,19,1,f +14481,3032,19,1,f +14481,3035,19,1,f +14481,30355,71,1,f +14481,30356,71,1,f +14481,30361dps1,15,1,f +14481,30362,15,2,f +14481,30367b,72,1,f +14481,30367cpr0006,71,1,f +14481,30374,71,1,f +14481,30375pr02,320,2,f +14481,30376,19,2,f +14481,30377,19,1,t +14481,30377,19,2,f +14481,30378pr0004,19,2,f +14481,3039pr0014,0,1,f +14481,3041,0,1,f +14481,3048c,0,2,f +14481,3062b,14,2,f +14481,3062b,47,1,f +14481,3068b,14,1,f +14481,3183c,71,2,f +14481,3184,0,2,f +14481,32000,72,1,f +14481,32000,0,2,f +14481,32018,71,2,f +14481,32054,4,6,f +14481,32123b,14,3,f +14481,32123b,14,2,t +14481,32474,71,1,f +14481,3298,14,2,f +14481,3622,14,4,f +14481,3623,71,2,f +14481,3626bpr0632,78,1,f +14481,3626bpr0817,78,1,f +14481,3650c,71,2,f +14481,3660,71,7,f +14481,3666,71,1,f +14481,3666,14,4,f +14481,3700,14,1,f +14481,3701,71,2,f +14481,3709,0,1,f +14481,3710,14,6,f +14481,3738,1,2,f +14481,3794b,320,2,f +14481,3795,71,4,f +14481,3832,14,2,f +14481,3849,0,2,f +14481,3941,14,1,f +14481,3942c,71,2,f +14481,3942c,14,3,f +14481,3943b,72,1,f +14481,3958,72,1,f +14481,4006,0,1,f +14481,40233,28,1,f +14481,4032a,70,2,f +14481,41531,71,4,f +14481,4162,72,2,f +14481,41747,14,1,f +14481,41748,14,1,f +14481,41764,71,2,f +14481,41765,71,2,f +14481,41769,14,2,f +14481,41770,14,2,f +14481,4185,14,6,f +14481,41879a,19,1,f +14481,42023,71,2,f +14481,4274,71,2,t +14481,4274,71,6,f +14481,4287,71,2,f +14481,43093,1,4,f +14481,4522,0,1,f +14481,4595,71,1,f +14481,4697b,71,3,f +14481,4697b,71,1,t +14481,47456,70,1,f +14481,47753,14,1,f +14481,48183,14,1,f +14481,48336,0,1,f +14481,4855,71,1,f +14481,4865a,14,2,f +14481,50304,14,1,f +14481,50305,14,1,f +14481,50373,14,1,f +14481,50950,1,4,f +14481,50955,71,1,f +14481,50956,71,1,f +14481,51739,71,1,f +14481,53451,0,1,t +14481,53451,0,3,f +14481,53989,72,9,f +14481,54200,1,1,t +14481,54200,1,4,f +14481,58247,0,2,f +14481,59230,19,2,f +14481,59230,19,1,t +14481,59426,72,1,f +14481,59900,14,3,f +14481,59900,33,6,f +14481,6020,71,1,f +14481,60208,14,4,f +14481,60208,71,2,f +14481,60470a,71,2,f +14481,60485,71,2,f +14481,60849,0,2,f +14481,6091,1,2,f +14481,6091,14,2,f +14481,61184,71,6,f +14481,61409,14,2,f +14481,6141,36,1,f +14481,6141,36,1,t +14481,6141,70,1,t +14481,6141,70,2,f +14481,61482,71,1,t +14481,61482,71,1,f +14481,61780,70,1,f +14481,6191,14,2,f +14481,6233,71,2,f +14481,6233,14,2,f +14481,63864,14,2,f +14481,6558,1,4,f +14481,7877stk01,9999,1,t +14481,87079,71,1,f +14481,87083,72,4,f +14481,92279,47,1,f +14481,92280,71,2,f +14481,970c00,4,1,f +14481,973pr1808c01,19,1,f +14481,973pr1819c01,4,1,f +14482,2607,0,2,f +14482,2654,14,1,f +14482,2654,19,4,f +14482,2736,7,1,t +14482,2736,7,4,f +14482,2780,0,3,f +14482,2825,19,4,f +14482,2825,0,3,f +14482,2825,7,2,f +14482,2825,14,2,f +14482,2905,19,2,f +14482,2994,19,2,f +14482,32002,8,2,f +14482,32002,8,1,t +14482,32009,19,4,f +14482,32013,19,4,f +14482,32015,19,3,f +14482,32015,14,2,f +14482,32016,19,5,f +14482,32034,19,1,f +14482,32039,7,4,f +14482,32039,19,2,f +14482,32054,0,8,f +14482,32056,19,6,f +14482,32062,0,1,t +14482,32062,0,54,f +14482,32065,19,2,f +14482,32073,0,3,f +14482,32123b,7,31,f +14482,32123b,7,4,t +14482,32140,19,7,f +14482,32140,4,4,f +14482,32165,19,2,f +14482,32172,19,1,f +14482,32177,19,6,f +14482,32184,19,3,f +14482,32184,0,1,f +14482,32198,7,1,f +14482,32249,19,2,f +14482,32269,7,1,f +14482,32271,19,4,f +14482,32291,19,1,f +14482,32307,19,2,f +14482,33299a,19,2,f +14482,3647,7,1,f +14482,3648b,19,2,f +14482,3705,0,6,f +14482,3706,0,6,f +14482,3707,0,3,f +14482,3713,7,2,t +14482,3713,7,9,f +14482,3737,0,1,f +14482,3749,7,6,f +14482,4032a,14,1,f +14482,4032a,19,4,f +14482,4185,19,2,f +14482,4274,7,6,f +14482,4274,7,5,t +14482,4519,0,12,f +14482,6536,7,2,f +14482,6536,0,3,f +14482,6536,19,6,f +14482,6538b,19,2,f +14482,6538b,0,1,f +14482,6558,0,5,f +14482,6558,0,1,t +14482,6587,8,5,f +14482,6589,7,1,f +14482,6628,0,1,f +14482,6632,8,2,f +14482,6632,19,25,f +14482,6641,19,1,f +14482,71509,0,1,f +14482,71509,0,3,t +14482,73092,0,2,f +14482,75535,19,2,f +14482,75535,0,1,f +14482,75c07,7,1,f +14482,75c09,7,1,f +14482,75c11,19,2,f +14482,78c02,0,2,f +14482,78c02,4,2,f +14482,78c02,14,2,f +14482,78c04,19,2,f +14482,rb00167,0,9,t +14482,rb00167,0,8,f +14484,2540,4,2,f +14484,3626cpr0747,14,1,f +14484,3666,70,5,f +14484,3710,0,4,f +14484,4589,297,8,f +14484,54200,4,1,t +14484,54200,4,2,f +14484,60470a,4,1,f +14484,6141,72,2,f +14484,6141,72,1,t +14484,6266,0,2,f +14484,6636,70,2,f +14484,92593,72,4,f +14484,970c00pr0275,15,1,f +14484,973pr1897c01,15,1,f +14484,98133pr0003,15,1,f +14484,98139,297,1,f +14484,98139,179,2,f +14485,3001,4,3,f +14485,3001,1,4,f +14485,3001,14,4,f +14485,3002,1,2,f +14485,3002,14,2,f +14485,3002,4,2,f +14485,3003,14,4,f +14485,3003,1,3,f +14485,3003,4,2,f +14485,3004,1,12,f +14485,3004,4,10,f +14485,3004,14,12,f +14485,3004,47,2,f +14485,3005,4,8,f +14485,3005,1,12,f +14485,3005,14,10,f +14485,3005,47,2,f +14485,3008,1,2,f +14485,3009,1,3,f +14485,3009,14,3,f +14485,3010,4,6,f +14485,3010,14,6,f +14485,3010,1,10,f +14485,3020,4,2,f +14485,3021,4,2,f +14485,3022,4,2,f +14485,3031,4,2,f +14485,3032,4,1,f +14485,3034,4,2,f +14485,3039,4,2,f +14485,3039,47,2,f +14485,3081cc01,4,2,f +14485,3137c01,0,2,f +14485,3297,4,2,f +14485,3298,4,4,f +14485,3299,4,1,f +14485,3300,4,2,f +14485,3622,4,2,f +14485,3622,14,4,f +14485,3622,1,4,f +14485,3633,4,2,f +14485,3641,0,4,f +14485,3660,4,2,f +14485,3710,4,2,f +14485,3741,2,2,f +14485,3742,15,1,t +14485,3742,4,1,t +14485,3742,15,3,f +14485,3742,4,3,f +14485,3823,47,1,f +14485,3853,15,3,f +14485,3854,4,6,f +14485,3856,15,4,f +14485,3861b,15,1,f +14485,3867,2,1,f +14486,2039,15,1,f +14486,22667,4,1,t +14486,22667,4,4,f +14486,22667,27,1,t +14486,22667,27,4,f +14486,2335,15,2,f +14486,2357,0,4,f +14486,2357,72,4,f +14486,2412b,80,2,f +14486,2420,19,4,f +14486,2431,71,6,f +14486,2431,1,2,f +14486,2431,72,4,f +14486,2431,15,5,f +14486,2445,0,4,f +14486,2445,71,12,f +14486,2454a,19,3,f +14486,2460,72,1,f +14486,2465,19,2,f +14486,2486,15,2,f +14486,2488,0,2,f +14486,2555,71,4,f +14486,2555,15,4,f +14486,2780,0,4,f +14486,2780,0,2,t +14486,2877,70,5,f +14486,2877,72,2,f +14486,2877,71,44,f +14486,2921,15,6,f +14486,2921,19,6,f +14486,298c02,0,2,t +14486,298c02,0,2,f +14486,3001,70,9,f +14486,3003,272,5,f +14486,3003,73,4,f +14486,3004,73,65,f +14486,3004,19,19,f +14486,3004,272,38,f +14486,3004,71,4,f +14486,3004,15,1,f +14486,30044,15,3,f +14486,30046,0,3,f +14486,3005,272,12,f +14486,3005,19,18,f +14486,3005,15,2,f +14486,3005,73,37,f +14486,3005,71,7,f +14486,3008,0,1,f +14486,3008,72,10,f +14486,3008,19,1,f +14486,3009,19,3,f +14486,3009,72,11,f +14486,3009,0,1,f +14486,3010,19,9,f +14486,3010,272,79,f +14486,3010,0,2,f +14486,3010,73,82,f +14486,3010,72,1,f +14486,30134,70,2,f +14486,30150,70,2,f +14486,30179,0,1,f +14486,3020,72,2,f +14486,3020,71,1,f +14486,3021,71,3,f +14486,3021,72,2,f +14486,3022,15,1,f +14486,3022,71,3,f +14486,3023,19,6,f +14486,3023,73,10,f +14486,3023,15,2,f +14486,3024,19,2,f +14486,3024,272,10,f +14486,3024,71,14,f +14486,3024,73,5,f +14486,30274,71,1,f +14486,3032,72,1,f +14486,3033,72,12,f +14486,3034,19,4,f +14486,3034,0,1,f +14486,3035,71,2,f +14486,3036,71,4,f +14486,30363,0,3,f +14486,30363,15,3,f +14486,30363,1,2,f +14486,3037,0,2,f +14486,30377,15,13,f +14486,30377,15,3,t +14486,3038,0,4,f +14486,3039,0,2,f +14486,3062b,15,6,f +14486,3062b,19,10,f +14486,3062b,0,6,f +14486,3062b,2,1,f +14486,3068b,72,24,f +14486,3068b,19,3,f +14486,3068b,71,2,f +14486,3069b,71,19,f +14486,3069b,19,26,f +14486,3069b,72,18,f +14486,3070b,71,2,t +14486,3070b,19,3,t +14486,3070b,19,29,f +14486,3070b,72,22,f +14486,3070b,71,26,f +14486,3070b,72,2,t +14486,32270,0,1,f +14486,3297,0,1,f +14486,3298,0,2,f +14486,33051,10,2,f +14486,3308,272,5,f +14486,33125,484,1,f +14486,3455,71,2,f +14486,3455,19,1,f +14486,3456,0,1,f +14486,3460,19,4,f +14486,3460,72,2,f +14486,3622,72,4,f +14486,3622,19,4,f +14486,3626b,47,2,f +14486,3626bpr0314,14,1,f +14486,3626bpr0387,14,1,f +14486,3626bpr0389,14,1,f +14486,3659,71,3,f +14486,3666,19,2,f +14486,3666,73,5,f +14486,3666,15,2,f +14486,3666,71,1,f +14486,3679,71,1,f +14486,3680,0,1,f +14486,3684,0,5,f +14486,3700,0,8,f +14486,3705,0,1,f +14486,3710,71,3,f +14486,3710,73,3,f +14486,3710,272,2,f +14486,3710,72,13,f +14486,3741,2,1,f +14486,3741,2,1,t +14486,3742,15,1,t +14486,3742,15,3,f +14486,3794a,71,8,f +14486,3794a,19,16,f +14486,3794a,0,1,f +14486,3795,72,2,f +14486,3795,71,16,f +14486,3832,0,1,f +14486,3854,15,20,f +14486,3857,72,2,f +14486,3861b,15,1,f +14486,3900,15,2,f +14486,3901,71,1,f +14486,3937,0,2,f +14486,3941,14,2,f +14486,3957a,15,2,f +14486,40232,0,1,f +14486,4032a,72,2,f +14486,40379,0,2,f +14486,4070,19,19,f +14486,4079,14,1,f +14486,4085c,71,8,f +14486,4095,15,3,f +14486,4095,71,1,f +14486,4150pr0022,71,2,f +14486,4161,0,4,f +14486,4162,71,7,f +14486,4162,72,9,f +14486,42448,0,2,f +14486,4282,15,1,f +14486,44302a,15,2,f +14486,44568,71,1,f +14486,4460b,0,2,f +14486,4477,72,2,f +14486,4530,28,1,f +14486,4589,0,2,f +14486,4697b,71,2,t +14486,4697b,71,4,f +14486,4740,15,2,f +14486,47899c01,71,1,f +14486,4863,15,1,f +14486,53982,10,1,f +14486,6093,70,1,f +14486,6111,72,2,f +14486,6134,0,2,f +14486,6141,19,2,t +14486,6141,71,2,t +14486,6141,15,2,t +14486,6141,71,28,f +14486,6141,0,1,f +14486,6141,0,1,t +14486,6141,19,18,f +14486,6141,15,6,f +14486,6187,71,3,f +14486,6255,2,2,f +14486,6556,15,10,f +14486,6636,71,7,f +14486,6636,72,10,f +14486,6636,15,2,f +14486,6636,19,14,f +14486,73194c01,71,1,f +14486,73590c02a,15,4,f +14486,76041c02,0,1,f +14486,78c02,0,2,f +14486,970c00,72,1,f +14486,970c00,2,1,f +14486,970c00,272,1,f +14486,973pr1166c01,272,1,f +14486,973pr1169c01,73,1,f +14486,973pr1271c01,15,1,f +14488,2341,0,2,f +14488,2412b,14,2,f +14488,2420,0,6,f +14488,2431,0,2,f +14488,2444,0,1,f +14488,2444,7,2,f +14488,2450,0,2,f +14488,2450,2,2,f +14488,2654,0,3,f +14488,2695,14,1,f +14488,2711,0,3,f +14488,2717,14,1,f +14488,2730,0,2,f +14488,2743,0,2,f +14488,2744,0,4,f +14488,2780,0,17,f +14488,2815,0,2,f +14488,2825,0,2,f +14488,2850a,7,4,f +14488,2851,8,4,f +14488,2852,7,4,f +14488,2853,7,2,f +14488,2854,7,1,f +14488,2905,0,6,f +14488,3021,2,2,f +14488,3021,0,3,f +14488,3022,0,1,f +14488,3023,0,12,f +14488,3023,2,4,f +14488,3023,7,4,f +14488,3024,0,4,f +14488,3034,0,2,f +14488,3039pc5,7,1,f +14488,32001,7,1,f +14488,32002,8,2,f +14488,3460,2,2,f +14488,3460,0,2,f +14488,3623,7,2,f +14488,3647,7,4,f +14488,3650c,7,1,f +14488,3651,7,2,f +14488,3660,0,1,f +14488,3665,0,4,f +14488,3666,0,4,f +14488,3666,2,2,f +14488,3673,7,1,f +14488,3700,0,5,f +14488,3700,7,2,f +14488,3701,7,2,f +14488,3701,0,4,f +14488,3703,0,5,f +14488,3704,0,11,f +14488,3705,0,3,f +14488,3706,0,4,f +14488,3707,0,8,f +14488,3708,0,2,f +14488,3709,0,2,f +14488,3710,7,3,f +14488,3710,0,2,f +14488,3710,2,4,f +14488,3713,7,13,f +14488,3737,0,2,f +14488,3749,7,18,f +14488,3794a,0,2,f +14488,3795,2,1,f +14488,3832,0,2,f +14488,3894,0,3,f +14488,3895,0,2,f +14488,3933,0,1,f +14488,3934,0,1,f +14488,4185,7,1,f +14488,4185,14,2,f +14488,4263,7,2,f +14488,4265b,7,21,f +14488,4273b,7,8,f +14488,4274,7,22,f +14488,4282,0,2,f +14488,4286,0,2,f +14488,4287,0,4,f +14488,4477,0,2,f +14488,4519,0,6,f +14488,4716,0,1,f +14488,4760c01,0,1,f +14488,5306bc020,0,1,f +14488,6041,0,1,f +14488,6048a,0,2,f +14488,6217,0,2,f +14488,6536,7,16,f +14488,6538b,7,2,f +14488,6541,0,2,f +14488,6541,7,4,f +14488,6553,7,4,f +14488,6558,0,3,f +14488,6575,7,2,f +14488,6585,7,1,f +14488,6587,8,2,f +14488,6589,7,4,f +14488,6594,0,2,f +14488,6595,14,2,f +14488,6629,0,3,f +14488,6632,0,10,f +14488,6632,7,2,f +14488,6637,7,1,f +14488,73983,2,6,f +14488,73983,0,8,f +14488,75c12,8,2,f +14488,x165,47,8,f +14489,2412b,0,1,f +14489,2432,15,1,f +14489,2877,0,1,f +14489,3009,15,2,f +14489,3010,15,2,f +14489,30182,4,1,f +14489,30235,2,1,f +14489,30386,4,1,f +14489,30387,4,1,f +14489,30389a,7,1,f +14489,30395,8,1,f +14489,30396,4,1,f +14489,3040b,42,2,f +14489,3176,0,1,f +14489,3626bp05,14,1,f +14489,3823,41,1,f +14489,3829c01,1,1,f +14489,4006,0,1,f +14489,4083,0,2,f +14489,4485,15,1,f +14489,4522,0,1,f +14489,6014a,15,4,f +14489,6015,0,4,f +14489,970c00,2,1,f +14489,973px19c01,2,1,f +14490,13788,84,1,f +14490,3626cpr1842,14,1,f +14490,87621pr0001,92,1,f +14490,88646,0,1,f +14490,95345,70,1,f +14490,970c00pb495,73,1,f +14490,973pr3230c01,10,1,f +14491,2352,14,1,f +14491,2456,15,2,f +14491,2456,4,2,f +14491,2456,14,2,f +14491,3001,0,8,f +14491,3001,4,12,f +14491,3001,15,12,f +14491,3001,1,12,f +14491,3001,14,16,f +14491,3001pr1,14,1,f +14491,3002,15,4,f +14491,3002,1,4,f +14491,3002,14,4,f +14491,3002,0,2,f +14491,3002,4,4,f +14491,3003,1,14,f +14491,3003,0,8,f +14491,3003,15,14,f +14491,3003,14,16,f +14491,3003,4,16,f +14491,3003pe1,4,2,f +14491,3003pe1,14,2,f +14491,3003pe2,15,2,f +14491,3006,4,2,f +14491,3185,14,6,f +14491,3471,2,1,f +14491,3483,0,4,f +14491,4130,4,2,f +14491,4131,15,2,f +14491,4132,4,4,f +14491,4133,15,4,f +14491,4180c02,0,2,f +14491,4204,2,1,f +14491,4204,4,1,f +14491,4204,14,1,f +14491,4727,2,1,f +14491,4728,14,1,f +14491,4728,1,1,f +14491,4728,15,1,f +14491,4728,4,1,f +14491,4743,14,1,f +14491,4744,1,1,f +14491,4744,4,1,f +14491,4744p04,0,1,f +14491,4744px15,0,1,f +14491,6007,2,1,f +14492,2470,6,2,f +14492,3020,0,1,f +14492,3069b,0,1,f +14492,3626bpr0001,14,1,f +14492,3795,0,1,f +14492,3839b,0,1,f +14492,3846p4h,7,1,f +14492,3847,8,1,f +14492,3896,8,1,f +14492,4085c,0,3,f +14492,4495b,14,1,f +14492,4497,6,1,f +14492,4600,7,1,f +14492,4738a,6,1,f +14492,4739a,6,1,f +14492,6141,36,2,f +14492,6141,46,2,f +14492,970c00,1,1,f +14492,973px138c01,4,1,f +14494,298c02,4,2,f +14494,298c02,4,1,t +14494,3021,70,2,f +14494,3022,0,1,f +14494,3022,25,1,f +14494,3023,25,1,f +14494,3039,4,1,f +14494,3660,4,1,f +14494,3710,70,1,f +14494,3747b,4,1,f +14494,3839b,0,2,f +14494,4081b,4,2,f +14494,41769,4,1,f +14494,41770,4,1,f +14494,4286,4,3,f +14494,43722,25,1,f +14494,43723,25,1,f +14494,44302a,4,4,f +14494,44567a,25,3,f +14494,4740,15,2,f +14494,47674,47,1,f +14494,47675,4,1,f +14494,47676,4,1,f +14494,6141,25,2,f +14494,6141,0,1,t +14494,6141,0,2,f +14494,6141,15,1,t +14494,6141,25,1,t +14494,6141,15,2,f +14494,73983,4,4,f +14496,13285pr01,25,1,f +14496,23306,71,3,f +14496,23306,383,1,f +14496,2357,335,2,f +14496,2412b,72,2,f +14496,2412b,320,1,f +14496,2420,70,2,f +14496,2431,320,4,f +14496,2432,320,1,f +14496,2456,0,1,f +14496,2476a,72,2,f +14496,2524,70,2,f +14496,2540,71,1,f +14496,2555,71,2,f +14496,2555,0,2,f +14496,2569,0,2,f +14496,2654,71,3,f +14496,3001,71,2,f +14496,3004,70,4,f +14496,3008,0,2,f +14496,30136,19,7,f +14496,30191,71,1,f +14496,3020,72,3,f +14496,3020,19,2,f +14496,3022,320,2,f +14496,3023,19,5,f +14496,3023,379,5,f +14496,3023,320,5,f +14496,3029,320,2,f +14496,30304,72,1,f +14496,3031,335,3,f +14496,3032,72,1,f +14496,3033,72,1,f +14496,30358,72,2,f +14496,30358,71,1,f +14496,3037,72,1,f +14496,30374,41,1,f +14496,30408px2,15,1,f +14496,30562,19,2,f +14496,30565,335,2,f +14496,30565,320,2,f +14496,3062b,46,1,f +14496,3063b,0,2,f +14496,3068b,320,1,f +14496,3068b,71,1,f +14496,3069b,0,1,f +14496,3069bpr0070,0,1,f +14496,3245b,19,3,f +14496,32474,19,2,f +14496,3298,320,1,f +14496,3307,19,1,f +14496,3623,320,2,f +14496,3623,379,2,f +14496,3626b,14,1,f +14496,3626bpr0342,14,1,f +14496,3626bps3,14,1,f +14496,3626bps4,14,1,f +14496,3666,320,2,f +14496,3666,72,3,f +14496,3700,15,2,f +14496,3710,320,1,f +14496,3794a,379,6,f +14496,3795,335,2,f +14496,3795,72,1,f +14496,3829c01,0,1,f +14496,3830,70,3,f +14496,3831,70,3,f +14496,3899,47,1,f +14496,3901,19,1,f +14496,3901,70,1,f +14496,3901,71,1,f +14496,3937,72,3,f +14496,3939,47,1,f +14496,3941,47,1,f +14496,40373,378,2,f +14496,40374,378,2,f +14496,40375,378,2,f +14496,40379,378,1,f +14496,40380c01,378,2,f +14496,40395,378,1,f +14496,4079,0,2,f +14496,4079,70,2,f +14496,42446,71,1,f +14496,4274,71,1,f +14496,4274,71,1,t +14496,43337,72,3,f +14496,4349,0,1,f +14496,4599a,0,1,f +14496,47396,378,1,f +14496,47545pr01,3,1,f +14496,4865a,320,2,f +14496,4865a,71,3,f +14496,6134,0,1,f +14496,6134,19,2,f +14496,6141,36,1,t +14496,6141,36,2,f +14496,6183,19,1,f +14496,6231,320,2,f +14496,6564,320,1,f +14496,6565,320,1,f +14496,6636,335,2,f +14496,75c22,72,2,f +14496,970c00pr0033,272,1,f +14496,970c02pb03,19,1,f +14496,970x026,15,1,f +14496,970x192,232,1,f +14496,970x192,19,1,f +14496,973pr0520c01,15,1,f +14496,973ps3c01,15,1,f +14496,973ps5c01,0,1,f +14496,973ps6c01,19,1,f +14496,973px323c01,19,1,f +14499,3011,1,3,f +14499,3011,14,4,f +14499,3011,4,4,f +14499,3011,2,3,f +14499,3437,14,5,f +14499,3437,4,5,f +14499,3437,1,5,f +14499,3437,2,5,f +14499,4197,14,1,f +14499,4198,4,1,f +14499,4198,2,1,f +14499,4199,4,1,f +14499,4199,14,1,f +14500,26224pr0014,78,1,f +14500,3626cpr1882,78,1,f +14500,37,297,2,f +14500,88646,0,1,f +14500,970c00pr1036,27,1,f +14500,973pr3321c01,27,1,f +14501,3069bpr0012,15,1,f +14501,3069bpr0013,15,1,f +14501,3626cpr1475,14,1,f +14501,62537pr0004,191,1,f +14501,88646,0,1,f +14501,970d00pr0710,191,1,f +14501,973pr2744c01,191,1,f +14505,3004,15,4,f +14505,3005,15,8,f +14505,3005,47,2,f +14505,3009,15,2,f +14505,3010,15,2,f +14505,3024,15,4,f +14505,3036,15,1,f +14505,3068a,4,6,f +14505,3068a,15,4,f +14505,3069a,15,8,f +14505,3070a,1,2,f +14505,3070a,4,1,f +14505,3185,15,2,f +14505,837,15,1,f +14505,838,4,1,f +14506,2450,71,2,f +14506,2450,72,2,f +14506,2540,0,2,f +14506,3004,72,8,f +14506,3004,71,8,f +14506,3009,0,2,f +14506,3034,70,2,f +14506,3035,2,2,f +14506,3036,2,4,f +14506,30367b,0,1,f +14506,3040b,0,2,f +14506,3068b,0,1,f +14506,3068b,72,9,f +14506,3068b,71,9,f +14506,3068b,15,1,f +14506,3069b,72,1,f +14506,3069b,71,1,f +14506,3070b,25,1,f +14506,3070b,4,1,f +14506,3070b,2,1,f +14506,3070b,25,1,t +14506,3070b,4,1,t +14506,3070b,2,1,t +14506,3070b,70,1,f +14506,3070b,70,1,t +14506,3176,0,1,f +14506,3626bpr0494,15,4,f +14506,3626bpr0511,378,4,f +14506,3626bpr0608,70,4,f +14506,3626bpr0609,25,4,f +14506,3626bpr0611,4,4,f +14506,3659,0,1,f +14506,3794b,71,8,f +14506,3794b,72,8,f +14506,4006,0,1,f +14506,4032a,0,1,f +14506,48729b,0,1,t +14506,48729b,0,6,f +14506,59900,25,4,f +14506,59900,0,8,f +14506,59900,4,4,f +14506,59900,70,4,f +14506,59900,2,4,f +14506,59900,15,4,f +14506,60475a,0,2,f +14506,6126a,57,2,f +14506,64776pat0001,0,1,f +14506,85861,15,2,f +14506,85861,15,1,t +14507,2736,71,3,f +14507,2780,0,3,t +14507,2780,0,33,f +14507,30374,36,4,f +14507,32013,1,5,f +14507,32016,0,4,f +14507,32034,71,4,f +14507,32039,0,4,f +14507,32054,4,7,f +14507,32054,0,8,f +14507,32054,71,4,f +14507,32056,1,4,f +14507,32062,4,13,f +14507,32072,0,4,f +14507,32073,71,9,f +14507,32138,71,2,f +14507,32140,0,4,f +14507,32184,0,5,f +14507,32199,0,1,f +14507,32249,1,2,f +14507,32250,0,2,f +14507,32271,0,7,f +14507,32278,0,10,f +14507,32291,72,4,f +14507,32523,1,2,f +14507,32523,0,1,f +14507,32525,0,6,f +14507,32551,135,2,f +14507,3673,71,1,t +14507,3673,71,2,f +14507,3705,0,4,f +14507,3707,0,2,f +14507,3708,0,2,f +14507,3713,71,5,f +14507,3713,71,1,t +14507,3737,0,1,f +14507,3749,19,4,f +14507,40490,1,7,f +14507,41239,1,4,f +14507,41677,1,6,f +14507,41678,0,5,f +14507,41752,72,1,f +14507,42003,0,5,f +14507,42003,71,4,f +14507,4274,1,2,t +14507,4274,1,4,f +14507,43093,1,21,f +14507,44294,71,6,f +14507,44350,0,2,f +14507,44351,0,2,f +14507,44809,71,2,f +14507,44809,0,2,f +14507,4519,71,14,f +14507,45749,320,2,f +14507,47297,320,2,f +14507,47298,320,2,f +14507,47306,320,1,f +14507,47312,72,1,f +14507,47314,135,4,f +14507,53543,320,2,f +14507,53544,320,2,f +14507,53564,320,1,f +14507,53586,135,2,f +14507,53983pat0001,0,2,f +14507,54272,135,2,f +14507,54821,135,12,f +14507,55817,72,4,f +14507,57528,135,2,f +14507,57536,42,1,f +14507,57539,135,2,f +14507,57544,135,2,f +14507,57546,135,1,f +14507,57585,71,3,f +14507,59443,0,8,f +14507,59577,135,1,f +14507,60176,0,5,f +14507,60483,71,2,f +14507,60924,135,6,f +14507,60928,135,1,f +14507,60930,135,2,f +14507,61054,0,4,f +14507,61800,135,2,f +14507,61803,135,1,f +14507,61805,135,3,f +14507,61814,320,1,f +14507,62233,135,3,f +14507,63149,135,2,f +14507,6536,0,2,f +14507,6536,71,4,f +14507,6553,0,2,f +14507,6558,1,21,f +14507,6575,72,4,f +14507,6587,72,13,f +14507,6628,0,5,f +14507,6629,1,8,f +14507,6632,72,4,f +14507,6632,0,4,f +14507,85543,15,3,t +14507,85543,15,3,f +14509,2446,135,1,f +14509,2587,135,1,f +14509,2594,80,1,f +14509,3062b,70,1,f +14509,64644,308,1,f +14509,64647,4,1,f +14509,64647,4,1,t +14509,87580,28,1,f +14510,57555,41,7,f +14512,2780,0,10,f +14512,30027b,25,2,f +14512,32014,14,1,f +14512,32015,484,2,f +14512,32016,73,1,f +14512,32034,8,4,f +14512,32039,484,1,f +14512,32062,0,26,f +14512,32063,7,1,f +14512,32072,15,1,f +14512,32173,8,21,f +14512,32174,72,10,f +14512,32174,2,17,f +14512,32174,6,35,f +14512,32174,484,2,f +14512,32174,57,8,f +14512,32175,0,1,f +14512,32175,15,1,f +14512,32269,15,1,f +14512,32270,7,11,f +14512,32291,6,1,f +14512,32475,72,10,f +14512,32476,0,2,f +14512,32476,272,2,f +14512,32476,320,2,f +14512,32476,15,2,f +14512,32476,86,2,f +14512,32482,8,1,f +14512,32523,6,1,f +14512,32533pb001,36,1,f +14512,32533pb116,21,1,f +14512,32533pb199,25,2,f +14512,32533pb225,21,1,f +14512,32533pb334,21,1,f +14512,32533pb447,21,2,f +14512,32533pb665,21,1,f +14512,3706,7,1,f +14512,3706,19,1,f +14512,3706,4,12,f +14512,3708,4,3,f +14512,3737,0,1,f +14512,3749,19,14,f +14512,41413,178,2,f +14512,41669,484,2,f +14512,41677,8,2,f +14512,41677,73,1,f +14512,41677,484,1,f +14512,42003,7,2,f +14512,44033,484,1,f +14512,44135,8,1,f +14512,44135,72,5,f +14512,44136,8,1,f +14512,44138,1,3,f +14512,44138,6,8,f +14512,44138,0,2,f +14512,44138,4,1,f +14512,44138,2,3,f +14512,44138,15,7,f +14512,44139,8,1,f +14512,44140,2,2,f +14512,44140,4,2,f +14512,44140,183,4,f +14512,44140,0,4,f +14512,44140,1,1,f +14512,44140,6,4,f +14512,44142,179,2,f +14512,44144,135,2,f +14512,44145,179,4,f +14512,44146,179,1,f +14512,44147,179,1,f +14512,44148,8,2,f +14512,44247,8,10,f +14512,44807,6,1,f +14512,44810,15,1,f +14512,44810,320,1,f +14512,44810,86,1,f +14512,44810,272,1,f +14512,44810,0,1,f +14512,44816,179,2,f +14512,44936,179,1,f +14512,4519,7,3,f +14512,4519,71,12,f +14512,45749,8,2,f +14512,45749,7,1,f +14512,47296,72,10,f +14512,47328,0,2,f +14512,47328,320,2,f +14512,47328,272,2,f +14512,47328,86,2,f +14512,47328,15,2,f +14512,47330,0,1,f +14512,47330,15,1,f +14512,47330,86,1,f +14512,47330,272,1,f +14512,47330,320,1,f +14512,47331,272,1,f +14512,47331,320,1,f +14512,47331,86,1,f +14512,47331,0,1,f +14512,47331,15,1,f +14512,47332,320,1,f +14512,47332,15,1,f +14512,47332,86,1,f +14512,47332,272,1,f +14512,47332,0,1,f +14512,47334,179,5,f +14512,47335,135,2,f +14512,47337,135,2,f +14512,47338,135,2,f +14512,47339,135,2,f +14512,48446,135,2,f +14512,6536,19,1,f +14512,6538b,8,3,f +14512,6553,6,3,f +14512,6632,15,2,f +14512,6632,484,1,f +14512,6644,0,1,f +14512,kraata1,183,1,f +14512,kraata2,183,1,f +14512,kraata3,183,1,f +14512,kraata4,183,1,f +14512,kraata5,183,1,f +14512,kraata6,183,1,f +14512,x1190,42,1,f +14512,x1190,33,1,f +14512,x1190,34,1,f +14512,x1190,41,1,f +14512,x1190,57,1,f +14513,10201,15,1,f +14513,11211,19,6,f +14513,11291,4,1,f +14513,11303,2,1,f +14513,11303,4,2,f +14513,12825,71,2,f +14513,13269,0,1,f +14513,13547,4,2,f +14513,13564,15,2,f +14513,13564,15,1,t +14513,14045,0,1,t +14513,14045,0,1,f +14513,14718,4,1,f +14513,14719,71,2,f +14513,14769,4,2,f +14513,15068,0,4,f +14513,15207,15,1,f +14513,15207,4,2,f +14513,15573,71,24,f +14513,17454,1,1,f +14513,17457,41,1,f +14513,219,72,14,t +14513,2412b,72,1,f +14513,2412b,71,7,f +14513,2420,4,2,f +14513,2431,15,2,f +14513,2431,71,2,f +14513,2431pr0028,72,1,f +14513,2432,14,8,f +14513,2432,71,4,f +14513,2454a,4,1,f +14513,2476a,71,4,f +14513,2495,4,1,f +14513,2496,0,1,f +14513,2584,0,1,f +14513,2585,71,1,f +14513,2654,4,1,f +14513,2723,0,3,f +14513,2730,0,4,f +14513,2866,14,2,f +14513,2871b,0,4,f +14513,2877,14,3,f +14513,2878,0,10,f +14513,298c02,71,1,t +14513,298c02,71,2,f +14513,30000,71,2,f +14513,3001,1,4,f +14513,3001,0,3,f +14513,3001,19,1,f +14513,3001,72,1,f +14513,3002,0,1,f +14513,3003,19,1,f +14513,3004,70,1,f +14513,3004,4,1,f +14513,3004,0,2,f +14513,3005,1,2,f +14513,3008,70,2,f +14513,3009,71,2,f +14513,3009,0,2,f +14513,3009,2,3,f +14513,3009,1,2,f +14513,3010,4,3,f +14513,3010,0,4,f +14513,3020,1,4,f +14513,3020,15,2,f +14513,3020,0,1,f +14513,3021,0,5,f +14513,3022,0,3,f +14513,3022,15,8,f +14513,3022,14,3,f +14513,3023,14,4,f +14513,3023,72,1,f +14513,3023,0,2,f +14513,3023,4,2,f +14513,3023,70,4,f +14513,3023,2,10,f +14513,3024,36,2,f +14513,3024,1,4,f +14513,3024,36,1,t +14513,3024,1,1,t +14513,3024,182,4,f +14513,3024,182,1,t +14513,3027,0,1,f +14513,3030,0,1,f +14513,3031,1,1,f +14513,3031,70,1,f +14513,3032,72,1,f +14513,3032,1,1,f +14513,3033,0,1,f +14513,3034,0,2,f +14513,3034,72,1,f +14513,3035,19,4,f +14513,3036,0,1,f +14513,3036,1,1,f +14513,30374,0,2,f +14513,30383,15,2,f +14513,3039,72,1,f +14513,30395,72,1,f +14513,3040b,2,2,f +14513,3040b,4,2,f +14513,30414,14,3,f +14513,30414,1,2,f +14513,30586,71,2,f +14513,3068b,72,13,f +14513,3068bpr0137,15,1,f +14513,3069b,46,4,f +14513,3069b,15,1,f +14513,3069b,1,1,f +14513,3069b,70,5,f +14513,3069b,40,3,f +14513,3069bpr0030,15,1,f +14513,3070b,0,4,f +14513,3070b,0,1,t +14513,3185,0,4,f +14513,32001,0,1,f +14513,32028,72,2,f +14513,32028,71,6,f +14513,32028,0,4,f +14513,32054,0,1,f +14513,32073,71,1,f +14513,3228c,72,8,f +14513,3460,71,2,f +14513,3464,72,1,f +14513,3622,1,4,f +14513,3623,4,6,f +14513,3626cpr0889,14,1,f +14513,3626cpr0893,14,1,f +14513,3626cpr1146,14,1,f +14513,3626cpr1662,14,1,f +14513,3660,2,2,f +14513,3665,14,4,f +14513,3666,4,2,f +14513,3666,0,6,f +14513,3666,72,2,f +14513,3666,191,2,f +14513,3666,2,5,f +14513,3700,4,1,f +14513,3700,71,2,f +14513,3705,0,3,f +14513,3706,0,4,f +14513,3710,191,5,f +14513,3710,1,2,f +14513,3710,19,9,f +14513,3710,72,11,f +14513,3710,2,2,f +14513,3710,4,3,f +14513,3710,0,1,f +14513,3738,72,1,f +14513,3747b,1,4,f +14513,3794b,0,1,f +14513,3795,2,3,f +14513,3795,72,4,f +14513,3821,2,1,f +14513,3822,2,1,f +14513,3829c01,0,2,f +14513,3832,72,4,f +14513,3832,14,4,f +14513,3833,4,1,f +14513,3899,14,1,f +14513,3899,4,1,f +14513,3937,72,1,f +14513,3941,15,5,f +14513,3957b,71,1,t +14513,3957b,71,1,f +14513,3960,15,2,f +14513,4025,14,5,f +14513,4032a,15,1,f +14513,4032a,4,1,f +14513,4032a,2,1,f +14513,4070,2,2,f +14513,4079b,14,1,f +14513,4079b,4,1,f +14513,4162,1,2,f +14513,4181,1,1,f +14513,4182,1,1,f +14513,4183,41,2,f +14513,42446,72,4,f +14513,42610,71,4,f +14513,4282,71,2,f +14513,43093,1,4,f +14513,44301b,0,2,f +14513,44302a,0,2,f +14513,4477,72,10,f +14513,4477,0,2,f +14513,4488,0,4,f +14513,4510,0,4,f +14513,4518c,0,1,f +14513,4523,27,1,f +14513,45707b,72,1,f +14513,4599b,14,1,f +14513,4599b,14,1,t +14513,4740,2,1,f +14513,47720,0,2,f +14513,4870,71,4,f +14513,50254,0,8,f +14513,50745,72,2,f +14513,50950,72,2,f +14513,51739,0,1,f +14513,52031,2,1,f +14513,53400,72,20,f +14513,53401,72,8,f +14513,53403,72,1,f +14513,53406,72,1,f +14513,54200,47,1,t +14513,54200,14,4,f +14513,54200,14,1,t +14513,54200,47,2,f +14513,56823c50,0,1,f +14513,57051,383,10,f +14513,57878,0,20,f +14513,57895,41,1,f +14513,57999,0,8,f +14513,58123a,71,1,f +14513,58176,182,1,f +14513,59349,4,2,f +14513,59443,71,2,f +14513,59895,0,1,f +14513,59895,0,1,t +14513,6014b,71,4,f +14513,60169,71,1,f +14513,60470b,15,2,f +14513,60470b,71,12,f +14513,60474,0,8,f +14513,60474,15,2,f +14513,60475b,1,4,f +14513,60478,15,2,f +14513,60596,15,2,f +14513,60616a,41,1,f +14513,6112,4,2,f +14513,6112,14,4,f +14513,61252,15,2,f +14513,61252,0,8,f +14513,6134,0,1,f +14513,6140,71,2,f +14513,61409,0,18,f +14513,6141,15,1,f +14513,6141,36,2,f +14513,6141,71,3,f +14513,6141,71,2,t +14513,6141,36,1,t +14513,6141,72,4,f +14513,6141,72,1,t +14513,6141,47,2,t +14513,6141,15,1,t +14513,6141,47,3,f +14513,6154,4,2,f +14513,6177,2,4,f +14513,61780,72,1,f +14513,6179,0,2,f +14513,6179,15,2,f +14513,6205,1,2,f +14513,62113,72,2,f +14513,6259,15,1,f +14513,63864,71,1,f +14513,63864,0,4,f +14513,63864,72,12,f +14513,64227,71,1,f +14513,64228,71,1,f +14513,64450,0,1,f +14513,64452pr0001,70,1,f +14513,64644,71,2,f +14513,64799,71,2,f +14513,6583,0,13,f +14513,6583,14,4,f +14513,6636,0,6,f +14513,6636,191,6,f +14513,6636,72,3,f +14513,72454,15,1,f +14513,74698,0,2,f +14513,85080,0,16,f +14513,85543,15,1,f +14513,85984,0,2,f +14513,87079,71,4,f +14513,87079,14,2,f +14513,87087,4,2,f +14513,87574,0,1,f +14513,87580,19,5,f +14513,87580,72,4,f +14513,87580,71,4,f +14513,87620,1,6,f +14513,87697,0,4,f +14513,88072,72,3,f +14513,88930,1,4,f +14513,91176,14,5,f +14513,91405,72,2,f +14513,91988,0,1,f +14513,91992,0,2,f +14513,91994,0,6,f +14513,92088,0,1,f +14513,92099,0,1,f +14513,92280,0,4,f +14513,92339,1,2,f +14513,92409,0,4,f +14513,92583,41,1,f +14513,92589,71,6,f +14513,92926,2,1,f +14513,92946,0,6,f +14513,92947,4,2,f +14513,93273,72,2,f +14513,93273,1,2,f +14513,93273,0,1,f +14513,93274,72,2,f +14513,95343,4,1,f +14513,95344,28,1,t +14513,95344,28,1,f +14513,96874,25,1,t +14513,970c00,72,1,f +14513,970c00,272,1,f +14513,970c00,2,1,f +14513,970c00,71,1,f +14513,973pr1446c01,4,1,f +14513,973pr1470c01,1,1,f +14513,973pr2692c01,326,2,f +14513,98282,0,2,f +14513,98288,27,1,f +14513,98835,4,1,f +14513,98835,2,1,f +14513,99206,4,1,f +14513,99207,71,2,f +14513,99780,72,1,f +14514,3021,72,1,f +14514,3139,0,2,f +14514,3837,72,1,f +14514,4085c,4,2,f +14514,4600,71,1,f +14514,4624,71,2,f +14514,48336,14,1,f +14514,4865a,14,2,f +14514,6141,15,2,f +14514,6141,15,1,t +14518,11096,297,1,f +14518,11097,179,1,f +14518,11100,15,2,f +14518,12549pr0003,15,1,f +14518,12825,71,1,f +14518,12825,15,2,f +14518,30374,41,1,f +14518,3626cpr1126,212,1,f +14518,60849,71,1,f +14518,970c01pr0435,15,1,f +14518,973pr2231c01,212,1,f +14518,98138,41,2,f +14521,2356,4,2,f +14521,2356,0,6,f +14521,2357,4,6,f +14521,2357,19,2,f +14521,2357,0,82,f +14521,2420,4,32,f +14521,2420,0,36,f +14521,2431,4,2,f +14521,2432,15,4,f +14521,2445,0,3,f +14521,2456,0,44,f +14521,2465,0,3,f +14521,3001,6,2,f +14521,3001,0,83,f +14521,3001,4,16,f +14521,3002,4,14,f +14521,3002,0,117,f +14521,3003,0,44,f +14521,3003,4,6,f +14521,3003,6,1,f +14521,3004,14,4,f +14521,3004,19,1,f +14521,3004,6,5,f +14521,3004,4,20,f +14521,3004,0,67,f +14521,3004pt6,8,1,f +14521,3005,6,8,f +14521,3005,4,13,f +14521,3005,19,11,f +14521,3005,0,37,f +14521,3006,0,15,f +14521,3006,4,2,f +14521,3007,0,26,f +14521,3008,0,24,f +14521,3009,4,8,f +14521,3009,0,50,f +14521,3010,0,74,f +14521,3010,4,10,f +14521,30145,1,2,f +14521,3020,0,20,f +14521,3020,4,12,f +14521,3021,4,23,f +14521,3021,6,2,f +14521,3021,0,47,f +14521,3022,19,5,f +14521,3022,14,2,f +14521,3022,4,20,f +14521,3022,6,1,f +14521,3022,0,19,f +14521,3023,14,4,f +14521,3023,6,10,f +14521,3023,0,93,f +14521,3023,4,76,f +14521,3023,15,4,f +14521,3023,19,39,f +14521,30237a,4,4,f +14521,3024,6,1,f +14521,3024,19,19,f +14521,3024,0,34,f +14521,3024,4,34,f +14521,3031,4,3,f +14521,3031,0,2,f +14521,3032,0,4,f +14521,3033,4,1,f +14521,3034,0,6,f +14521,3035,0,1,f +14521,30400,0,2,f +14521,30562,0,4,f +14521,3068b,4,4,f +14521,3069b,0,1,f +14521,3069b,4,7,f +14521,3070b,4,2,f +14521,3070b,0,6,f +14521,3070b,4,1,t +14521,3070b,0,1,t +14521,32018,0,1,f +14521,3245b,14,3,f +14521,3460,4,7,f +14521,3622,4,7,f +14521,3622,0,67,f +14521,3623,6,2,f +14521,3623,0,78,f +14521,3623,4,43,f +14521,3660,1,2,f +14521,3666,0,19,f +14521,3666,4,5,f +14521,3703,15,4,f +14521,3710,0,48,f +14521,3710,4,32,f +14521,3794a,1,14,f +14521,3794a,4,11,f +14521,3794a,19,28,f +14521,3794a,0,16,f +14521,3795,0,5,f +14521,3795,4,6,f +14521,3832,0,4,f +14521,3957a,383,1,f +14521,3957a,0,2,f +14521,4070,14,10,f +14521,4070,0,5,f +14521,41539,0,1,f +14521,4274,7,1,t +14521,4274,7,2,f +14521,4477,0,3,f +14521,4477,4,3,f +14521,4740,57,2,f +14521,4740,14,2,f +14521,6111,0,14,f +14521,6112,0,14,f +14521,6212,0,7,f +14521,6541,15,4,f +14521,6636,0,1,f +14523,4324,6,1,f +14523,4325,27,1,f +14523,fab4a,9999,1,f +14526,14210,15,1,f +14526,2335,4,1,f +14526,30374,15,1,f +14526,3626bpr0469,15,1,f +14526,3626bpr0476,78,1,f +14526,42444,2,1,f +14526,4349,0,1,f +14526,55704,0,1,f +14526,56630,0,1,f +14526,970c00,85,1,f +14526,970c00,0,1,f +14526,973pr1274c01,0,1,f +14526,973pr1282c01,85,1,f +14527,2654,72,1,f +14527,3004,70,2,f +14527,30173a,0,1,f +14527,30177,0,1,f +14527,3022,70,1,f +14527,30374,70,1,f +14527,3626bpr0745,14,1,f +14527,4612931,9999,1,f +14527,4612932,9999,1,f +14527,4612933,9999,1,f +14527,4612934,9999,1,f +14527,4612935,9999,1,f +14527,60897,71,2,f +14527,63965,297,1,f +14527,92547pr0002,27,1,f +14527,973pr1718c01,0,1,f +14528,11091,321,4,f +14528,11097,297,1,f +14528,11100,15,2,f +14528,11110pr0002,14,1,f +14528,11113pr0001,179,1,f +14528,11126,14,1,f +14528,11126,4,1,f +14528,11127,297,1,f +14528,11127,41,13,f +14528,11129pr0001,70,1,f +14528,11233pr0002,71,1,f +14528,11767,72,2,f +14528,12549pr0005,297,1,f +14528,12825,297,4,f +14528,12825,297,1,t +14528,12825,15,3,f +14528,12857,15,1,f +14528,2412b,297,7,f +14528,2420,19,6,f +14528,2436,15,2,f +14528,2444,4,2,f +14528,2445,70,1,f +14528,2654,19,2,f +14528,2730,15,1,f +14528,2780,0,10,f +14528,2780,0,2,t +14528,2905,72,2,f +14528,3001,71,6,f +14528,3003,71,5,f +14528,30136,72,13,f +14528,30137,71,5,f +14528,30162,72,1,f +14528,30176,2,4,f +14528,3020,19,5,f +14528,3020,15,3,f +14528,3021,70,6,f +14528,3022,15,3,f +14528,3023,70,14,f +14528,3023,36,1,f +14528,3023,71,2,f +14528,3029,72,2,f +14528,3031,19,1,f +14528,3033,72,1,f +14528,3034,71,3,f +14528,3035,71,1,f +14528,30363,15,2,f +14528,30367b,297,1,f +14528,3039,15,2,f +14528,3039,72,13,f +14528,3040b,72,12,f +14528,3048c,297,3,f +14528,3062b,41,2,f +14528,3062b,2,2,f +14528,3062b,4,1,f +14528,3068b,70,2,f +14528,3176,1,2,f +14528,32001,15,2,f +14528,32013,4,2,f +14528,32014,72,1,f +14528,32054,4,1,f +14528,32062,4,4,f +14528,32064b,0,8,f +14528,32123b,14,2,f +14528,32123b,14,1,t +14528,32324,71,1,f +14528,3245c,19,2,f +14528,32530,72,3,f +14528,3623,0,2,f +14528,3626cpr1119,19,1,f +14528,3626cpr1128,212,1,f +14528,3626cpr1134,71,1,f +14528,3660,1,2,f +14528,3666,4,2,f +14528,3673,71,2,f +14528,3673,71,1,t +14528,3678b,272,2,f +14528,3678bpr0035,1,1,f +14528,3684,72,2,f +14528,3700,71,3,f +14528,3701,71,2,f +14528,3705,0,3,f +14528,3707,0,2,f +14528,3710,1,2,f +14528,3710,2,3,f +14528,3794b,15,1,f +14528,3795,19,2,f +14528,3795,1,5,f +14528,3849,0,1,f +14528,3849,179,1,f +14528,3937,4,2,f +14528,3957b,0,1,f +14528,4032a,1,7,f +14528,4081b,15,2,f +14528,4081b,19,2,f +14528,4085c,4,4,f +14528,4085c,0,2,f +14528,41769,15,1,f +14528,41770,15,1,f +14528,42446,71,1,f +14528,42446,71,1,t +14528,43712,15,1,f +14528,43857,4,2,f +14528,44301a,71,2,f +14528,44302a,15,2,f +14528,4477,19,4,f +14528,4497,179,1,f +14528,4497,148,1,f +14528,4519,71,1,f +14528,4588,15,1,f +14528,4589,297,4,f +14528,4589,182,1,f +14528,4623,0,4,f +14528,47457,297,1,f +14528,50304,321,1,f +14528,50304,272,1,f +14528,50305,272,1,f +14528,50305,321,1,f +14528,50950,72,8,f +14528,53451,15,1,t +14528,53451,15,6,f +14528,54200,72,4,f +14528,54200,72,1,t +14528,59443,72,1,f +14528,6021374,9999,2,f +14528,6021375,9999,1,f +14528,6021376,9999,1,f +14528,6021377,9999,1,f +14528,6021378,9999,1,f +14528,6021400,9999,1,f +14528,6021401,9999,1,f +14528,6021402,9999,1,f +14528,6021403,9999,1,f +14528,6021404,9999,1,f +14528,60481,71,2,f +14528,60483,71,1,f +14528,6134,4,2,f +14528,6141,1,6,f +14528,6141,1,1,t +14528,6180,10,2,f +14528,6215,14,1,f +14528,6628,0,1,f +14528,85544,4,2,f +14528,87083,72,2,f +14528,87747,15,1,t +14528,87747,15,1,f +14528,87994,70,1,f +14528,91176,15,1,f +14528,91988,0,1,f +14528,92947,71,4,f +14528,970c00pr0436,71,1,f +14528,970c02pr0430,19,1,f +14528,973pr2226c01,19,1,f +14528,973pr2233c01,1,1,f +14528,973pr2234c01,320,1,f +14528,98141,179,2,f +14529,2348a,41,1,f +14529,2349a,15,1,f +14529,2372c01,0,1,f +14529,298c04,15,1,t +14529,298c04,15,2,f +14529,3002,1,1,f +14529,3003,1,1,f +14529,3004,15,2,f +14529,3004,1,4,f +14529,3005,15,2,f +14529,3021,15,2,f +14529,3023,1,1,f +14529,3023,15,4,f +14529,3024,15,4,f +14529,3034,15,1,f +14529,3040b,15,4,f +14529,3070b,36,1,f +14529,3070b,34,1,f +14529,3297,15,2,f +14529,3460,15,2,f +14529,3624,15,2,f +14529,3626apr0001,14,2,f +14529,3665,15,2,f +14529,3794a,15,1,f +14529,3795,1,1,f +14529,3829c01,1,1,f +14529,3838,4,1,f +14529,3842b,0,1,f +14529,3939,41,1,f +14529,3958,1,1,f +14529,3962a,0,1,f +14529,4010stk01,9999,1,t +14529,4079,1,1,f +14529,4286,15,2,f +14529,4289,15,1,f +14529,4349,0,2,f +14529,4599a,15,2,f +14529,4623,1,1,f +14529,4625,15,1,f +14529,4740,7,1,f +14529,4862,41,4,f +14529,4863,15,2,f +14529,4866,41,2,f +14529,4873,15,3,f +14529,6141,46,4,f +14529,73090b,0,1,f +14529,970c00,0,2,f +14529,973pb0079c01,0,1,f +14529,973pb0091c01,0,1,f +14531,2654,0,6,f +14531,2825,71,2,f +14531,298c02,71,2,f +14531,298c02,71,1,t +14531,30137,71,2,f +14531,3020,71,2,f +14531,3023,71,3,f +14531,3034,72,1,f +14531,30363,72,1,f +14531,30375,19,2,f +14531,30376,19,2,f +14531,30377,19,2,f +14531,30377,19,1,t +14531,30377,71,1,t +14531,30377,71,4,f +14531,30378,19,2,f +14531,3039,71,2,f +14531,3069b,72,6,f +14531,32039,0,3,f +14531,32054,0,4,f +14531,32062,4,3,f +14531,32064b,71,4,f +14531,32250,71,2,f +14531,32449,0,6,f +14531,3298,71,2,f +14531,3626bpr0525,78,2,f +14531,3648b,72,3,f +14531,3660,72,3,f +14531,3701,0,2,f +14531,3705,0,2,f +14531,3737,0,1,f +14531,3738,0,1,f +14531,3747b,72,2,f +14531,3795,72,4,f +14531,3832,71,1,f +14531,3873,0,56,f +14531,3873,0,1,t +14531,3941,71,3,f +14531,3960,71,2,f +14531,4032a,0,4,f +14531,41677,4,2,f +14531,42003,0,2,f +14531,42446,72,4,f +14531,42610,71,2,f +14531,43093,1,2,f +14531,4519,71,7,f +14531,4697b,71,1,t +14531,4697b,71,4,f +14531,4740,72,2,f +14531,47457,72,2,f +14531,50990pr0003b,71,2,f +14531,52107,0,2,f +14531,58247,0,4,f +14531,59230,19,2,f +14531,59230,19,1,t +14531,59443,0,2,f +14531,59900,0,6,f +14531,60474,71,2,f +14531,61184,71,2,f +14531,61189pr0003,15,2,f +14531,6141,46,1,t +14531,6141,46,2,f +14531,63965,0,4,f +14531,64802,15,2,f +14531,6636,72,4,f +14531,970x026,15,2,f +14531,973pr0470c01,15,2,f +14532,10201,71,2,f +14532,11153,72,2,f +14532,11214,72,1,f +14532,14769,71,1,f +14532,14769,72,2,f +14532,15303,35,3,f +14532,15400,72,2,f +14532,2412b,72,1,f +14532,2412b,320,2,f +14532,2432,70,1,f +14532,2445,320,1,f +14532,2654,71,8,f +14532,3001,0,1,f +14532,3009,71,3,f +14532,3020,320,6,f +14532,3021,272,1,f +14532,3021,72,4,f +14532,3022,0,1,f +14532,3023,320,5,f +14532,3023,28,2,f +14532,3029,72,1,f +14532,3032,71,3,f +14532,30361pr1002,15,1,f +14532,30362,15,2,f +14532,30367cpr1002,4,1,f +14532,3039,70,1,f +14532,3040b,320,2,f +14532,3069b,15,1,f +14532,32000,71,5,f +14532,32062,4,1,f +14532,32123b,71,1,f +14532,32249,0,1,f +14532,32269,0,1,f +14532,32270,0,1,f +14532,3298,320,2,f +14532,3626cpr1374,15,1,f +14532,3666,72,2,f +14532,3666,272,2,f +14532,3679,71,1,f +14532,3680,0,1,f +14532,3710,320,6,f +14532,3795,71,1,f +14532,3832,72,1,f +14532,3941,47,1,f +14532,3956,71,1,f +14532,4032a,71,6,f +14532,4032a,4,1,f +14532,41769,71,1,f +14532,41770,71,1,f +14532,4286,0,2,f +14532,44126,72,1,f +14532,44301a,0,1,f +14532,47397,71,1,f +14532,47398,71,1,f +14532,4740,42,2,f +14532,47457,297,1,f +14532,48336,0,6,f +14532,50304,28,1,f +14532,50305,28,1,f +14532,50955,71,1,f +14532,50956,71,1,f +14532,54383,71,2,f +14532,54384,71,2,f +14532,59426,72,2,f +14532,59443,14,2,f +14532,59900,36,4,f +14532,59900,71,4,f +14532,60470a,71,4,f +14532,60471,71,1,f +14532,60474,71,2,f +14532,60477,320,4,f +14532,60481,320,4,f +14532,61184,71,4,f +14532,6141,297,2,f +14532,6222,320,2,f +14532,6541,0,5,f +14532,6628,0,4,f +14532,6636,71,6,f +14532,72454,72,1,f +14532,85984,72,1,f +14532,87079,71,2,f +14532,87079,72,1,f +14532,87557pr0004,15,1,f +14532,91988,71,1,f +14532,92280,71,6,f +14532,92579,40,1,f +14532,92738,0,1,f +14532,92947,0,5,f +14532,970c00,71,1,f +14532,973pr2596c01,15,1,f +14532,99206,71,4,f +14532,99781,0,2,f +14533,2460,72,2,f +14533,2479,0,2,f +14533,2540,71,4,f +14533,2555,72,1,f +14533,2780,0,12,f +14533,2780,0,1,t +14533,3002,15,1,f +14533,3009,15,8,f +14533,3023,71,1,f +14533,30367b,71,1,f +14533,30377,15,2,f +14533,30377,15,1,t +14533,3045,72,6,f +14533,3068b,25,2,f +14533,3068b,15,2,f +14533,3068bpr0174,15,3,f +14533,3069b,72,2,f +14533,32054,71,4,f +14533,32062,4,2,f +14533,32140,4,2,f +14533,32271,71,2,f +14533,32278,15,2,f +14533,32291,4,2,f +14533,32523,71,2,f +14533,32525,0,4,f +14533,33243,272,2,f +14533,33243,320,2,f +14533,3623,15,2,f +14533,3666,272,2,f +14533,3666,320,2,f +14533,3700,15,2,f +14533,3706,0,1,f +14533,3707,0,1,f +14533,3708,0,1,f +14533,3857,72,1,f +14533,3957a,71,2,f +14533,4006,0,1,f +14533,4032a,0,2,f +14533,41239,71,4,f +14533,4150,297,3,f +14533,4162,272,1,f +14533,4162,320,1,f +14533,42022,15,2,f +14533,43093,1,4,f +14533,43898,15,2,f +14533,4519,71,2,f +14533,4588,15,2,f +14533,4589,15,4,f +14533,4589,25,1,f +14533,4740,33,3,f +14533,4740,0,2,f +14533,4740,15,6,f +14533,4740,36,3,f +14533,54200,0,1,t +14533,54200,15,8,f +14533,54200,15,1,t +14533,54200,0,6,f +14533,54821,297,5,f +14533,58176,36,3,f +14533,58176,33,3,f +14533,59443,14,2,f +14533,60474,71,1,f +14533,60581,0,2,f +14533,6141,71,1,t +14533,6141,71,8,f +14533,64567,71,1,f +14533,64776pat0001,0,1,f +14533,6558,1,4,f +14533,6636,15,4,f +14533,85863pr0040,1,1,f +14533,85863pr0041,4,1,f +14533,86208,71,4,f +14533,87081,15,1,f +14535,3021,85,2,f +14535,3032,2,1,f +14535,3062b,322,4,f +14535,3069b,29,2,f +14535,33291,10,2,f +14535,33291,5,2,f +14535,3710,29,1,f +14535,3794b,27,2,f +14535,85080,15,8,f +14535,85984,29,4,f +14536,3020,1,4,f +14536,3021,1,4,f +14536,3022,1,4,f +14536,3023,1,4,f +14536,3029,1,2,f +14536,3031,1,2,f +14536,3032,1,2,f +14536,3034,1,2,f +14536,3035,1,2,f +14536,3036,1,2,f +14536,3460,1,2,f +14536,3623,1,2,f +14536,3666,1,2,f +14536,3710,1,2,f +14536,3795,1,2,f +14536,3832,1,2,f +14536,4477,1,2,f +14538,92586pr0001,84,1,f +14538,93160,15,1,t +14538,93160,15,1,f +14539,3185,4,6,f +14539,3358,0,2,f +14539,3359,0,2,f +14540,3021,0,4,f +14540,3022,0,4,f +14540,3023,0,16,f +14540,3031,0,2,f +14540,3032,0,2,f +14540,3033,0,2,f +14540,32001,0,2,f +14540,3460,0,4,f +14540,3623,0,8,f +14540,3666,0,4,f +14540,3709,0,8,f +14540,3710,0,8,f +14540,3738,0,4,f +14540,4477,0,4,f +14541,2412b,71,1,f +14541,2420,1,2,f +14541,2420,72,2,f +14541,2436,1,1,f +14541,3010,15,1,f +14541,3020,1,3,f +14541,3020,15,1,f +14541,3020,25,2,f +14541,3021,1,2,f +14541,3022,15,2,f +14541,3022,0,1,f +14541,3023,0,1,f +14541,3023,47,1,f +14541,3034,1,1,f +14541,3034,0,1,f +14541,3066,40,1,f +14541,3069b,72,1,f +14541,3069b,15,1,f +14541,3298,15,2,f +14541,3641,0,8,f +14541,3710,1,2,f +14541,3788,1,1,f +14541,4589,71,2,f +14541,4600,71,4,f +14541,4623,15,2,f +14541,4624,15,8,f +14541,48336,71,2,f +14541,54200,15,1,t +14541,54200,25,1,t +14541,54200,72,2,f +14541,54200,46,1,t +14541,54200,15,2,f +14541,54200,72,1,t +14541,54200,46,2,f +14541,54200,25,2,f +14541,6019,72,3,f +14541,60478,71,2,f +14541,6141,182,1,t +14541,6141,72,1,t +14541,6141,182,2,f +14541,6141,72,6,f +14541,6141,36,1,t +14541,6141,36,2,f +14543,11476,71,1,f +14543,15279,326,2,f +14543,15470,29,1,f +14543,15470,29,1,t +14543,15573,0,2,f +14543,15573,72,2,f +14543,2357,15,2,f +14543,2420,71,2,f +14543,2423,326,3,f +14543,2431,72,1,f +14543,3004,0,6,f +14543,3004,15,3,f +14543,3004,72,1,f +14543,3005,52,2,f +14543,3005,15,3,f +14543,30103,0,1,f +14543,3020,71,1,f +14543,3021,85,2,f +14543,3022,72,1,f +14543,3023,85,8,f +14543,30238,4,1,f +14543,3024,34,1,t +14543,3024,33,1,t +14543,3024,34,4,f +14543,3024,33,2,f +14543,3034,72,2,f +14543,3034,70,1,f +14543,3035,288,2,f +14543,3039,0,4,f +14543,3044b,72,1,f +14543,30565,288,1,f +14543,3069b,70,2,f +14543,3069b,72,1,f +14543,32028,72,2,f +14543,3297,0,1,f +14543,33291,10,3,f +14543,33291,191,1,t +14543,33291,10,1,t +14543,33291,191,1,f +14543,3460,72,2,f +14543,3623,0,2,f +14543,3626b,25,3,f +14543,3626bpr0677,14,1,f +14543,3626cpr0895,15,1,f +14543,3666,72,4,f +14543,3710,71,1,f +14543,3710,0,6,f +14543,41879a,321,1,f +14543,4332,70,1,f +14543,59900,0,2,f +14543,59900,70,6,f +14543,60115,15,1,f +14543,60481,0,2,f +14543,60596,72,1,f +14543,60623,0,1,f +14543,6131,0,1,f +14543,6141,0,2,f +14543,6141,85,4,f +14543,6141,0,1,t +14543,6141,85,1,t +14543,6266,15,1,t +14543,6266,15,2,f +14543,85984,0,4,f +14543,87087,484,1,f +14543,88292,0,2,f +14543,93061,15,1,t +14543,93061,15,2,f +14543,93160,15,1,f +14543,93160,15,1,t +14543,95343,4,1,f +14543,95344,297,1,f +14543,95344,297,1,t +14543,973pr1443c01,15,1,f +14543,98138,71,1,t +14543,98138,71,2,f +14543,98283,28,2,f +14544,2352,14,2,f +14544,2356,14,1,f +14544,2456,14,2,f +14544,2456,1,2,f +14544,2456,4,2,f +14544,2745stor,4,1,f +14544,3001,0,4,f +14544,3001,15,9,f +14544,3001,14,10,f +14544,3001,4,12,f +14544,3001,1,10,f +14544,3001pr1,14,1,f +14544,3002,15,4,f +14544,3002,0,2,f +14544,3002,1,4,f +14544,3002,4,6,f +14544,3002,14,4,f +14544,3003,2,4,f +14544,3003,4,16,f +14544,3003,1,16,f +14544,3003,0,6,f +14544,3003,15,14,f +14544,3003,14,14,f +14544,3003pe2,14,2,f +14544,3006,4,2,f +14544,3007,14,2,f +14544,3185,14,6,f +14544,3483,0,8,f +14544,3857,2,2,f +14544,4727,2,4,f +14544,4728,15,1,f +14544,4728,14,1,f +14544,4728,1,1,f +14544,4728,4,1,f +14544,4729,14,1,f +14544,4743,14,1,f +14544,4744,1,1,f +14544,4744p03,0,1,f +14544,4744pr0001,0,1,f +14544,4744pr0002,4,1,f +14544,4744px4,1,1,f +14544,4744px4,4,1,f +14544,4745,4,1,f +14544,4747,4,1,f +14544,4748,4,1,f +14544,4751c,4,1,f +14544,6007,8,1,f +14544,601,15,4,f +14544,6212,4,2,f +14544,6213px1,1,1,f +14544,6214,2,1,f +14544,6214pb01,4,1,f +14544,6215,2,2,f +14544,6215,14,8,f +14544,6215,4,8,f +14544,6215,1,2,f +14544,6216,4,2,f +14544,6216,1,1,f +14544,6216,14,2,f +14544,6216,2,2,f +14544,6232,14,1,f +14544,6234,15,2,f +14544,6235,1,2,f +14544,6236,1,2,f +14544,6244px1,14,1,f +14544,6247,1,2,f +14544,6248,4,8,f +14544,6249,4,6,f +14544,6853,4,4,f +14544,82249,15,1,f +14545,2419,8,1,f +14545,2569,42,2,f +14545,30120,0,1,f +14545,3474,7,1,f +14545,3626bp6y,57,1,f +14545,4285b,0,1,f +14545,4598,0,1,f +14545,4740,42,1,f +14545,4859,8,1,f +14545,6019,0,2,f +14545,6141,4,1,t +14545,6141,42,1,t +14545,6141,42,2,f +14545,6141,4,2,f +14545,970c07pb01,4,1,f +14545,973px123c01,7,1,f +14547,2432,4,2,f +14547,2445,15,2,f +14547,2445,4,1,f +14547,2476b,1,1,f +14547,2817,7,2,f +14547,3004,15,4,f +14547,3021,4,2,f +14547,30261,14,1,f +14547,3034,2,2,f +14547,30488c01,0,1,f +14547,30492,2,1,f +14547,3245b,14,2,f +14547,3626bpx16,14,1,f +14547,3901,0,1,f +14547,3957a,15,2,f +14547,4176,15,1,f +14547,42038,9999,1,t +14547,4476b,15,2,f +14547,4495b,4,1,f +14547,4733,7,1,f +14547,6232,15,2,f +14547,72824p01,15,2,f +14547,970c00,15,1,f +14547,973pb0211c01,4,1,f +14549,99380,15,1,f +14550,2977c01,1,1,f +14551,132a,0,4,f +14551,3007mia,4,2,f +14551,3007mia,15,6,f +14551,carbasemia,7,1,f +14551,m3001,0,2,f +14551,m3001,15,20,f +14551,m3001,4,7,f +14551,m3001,47,4,f +14551,m3003,0,1,f +14551,m3003,15,8,f +14551,m3003,4,7,f +14551,m3003,47,2,f +14552,3001,29,20,f +14552,3001,27,20,f +14552,3001,15,20,f +14552,3001,85,20,f +14552,3001,14,20,f +14552,3001,1,20,f +14552,3001,4,20,f +14552,3001,25,20,f +14552,3003,0,3,f +14552,3036,15,1,f +14552,30385,297,1,f +14552,3068bpr0160,0,1,f +14552,3068bpr0173,15,1,f +14552,3069b,15,2,f +14552,3069b,4,2,f +14552,3069b,14,2,f +14552,3069b,25,2,f +14552,3069b,1,2,f +14552,3069b,29,2,f +14552,3069b,85,2,f +14552,3069b,27,2,f +14552,4282,0,8,f +14552,6180,0,1,f +14552,64776pat0001,0,1,f +14552,85863,297,1,f +14552,85863pr0006,27,1,f +14552,85863pr0010,4,1,f +14552,85863pr0030,15,1,f +14552,85863pr0036,25,1,f +14552,85863pr0063,1,1,f +14552,85863pr0072,85,1,f +14552,85863pr0076,29,1,f +14552,85863pr0077,14,1,f +14552,87580,15,6,f +14552,87580,0,7,f +14552,92585,4,1,f +14554,14419,72,2,f +14554,14704,71,2,f +14554,15573,72,2,f +14554,15706,72,2,f +14554,18394pat0001,36,4,f +14554,22380,1,1,f +14554,22385pr0008,47,1,f +14554,22385pr0009,36,1,f +14554,22385pr0023,33,1,f +14554,22391,179,1,f +14554,22393,33,1,f +14554,22402,33,1,f +14554,22408,179,1,f +14554,23860,33,5,f +14554,2412b,272,2,f +14554,2540,1,1,f +14554,3004,1,1,f +14554,30153,33,1,f +14554,3021,72,2,f +14554,3022,1,2,f +14554,3023,182,2,f +14554,3626cpr1782,14,1,f +14554,3937,1,2,f +14554,3960,57,1,f +14554,41769,272,1,f +14554,41770,272,1,f +14554,4274,1,1,t +14554,4274,1,2,f +14554,4697b,71,1,f +14554,4697b,71,1,t +14554,48729b,72,2,f +14554,48729b,57,1,f +14554,48729b,57,1,t +14554,48729b,72,1,t +14554,60897,1,4,f +14554,6134,71,2,f +14554,62462,179,2,f +14554,64567,272,3,f +14554,64567,272,1,t +14554,6628,0,2,f +14554,85861,71,1,t +14554,85861,71,3,f +14554,85984,1,2,f +14554,87580,272,3,f +14554,970c00pr0980,1,1,f +14554,973pr3201c01,1,1,f +14554,98313,179,1,f +14558,70928,0,1,f +14560,2458,1,1,f +14560,3001,1,1,f +14560,3003,1,2,f +14560,3003,4,2,f +14560,3004,4,2,f +14560,3004,1,4,f +14560,3005,4,2,f +14560,3005,14,2,f +14560,3005pe1,14,2,f +14560,3009,1,2,f +14560,3010,14,2,f +14560,3010,1,2,f +14560,3020,4,1,f +14560,3022,4,2,f +14560,3039,1,2,f +14560,3039,47,2,f +14560,3062b,0,2,f +14560,3297,1,1,f +14560,3633,14,2,f +14560,3641,0,4,f +14560,3660,1,2,f +14560,3665,1,2,f +14560,3666,15,2,f +14560,3710,4,2,f +14560,3795,4,4,f +14560,3901,0,1,f +14560,3957a,15,1,f +14560,4286,1,2,f +14560,4600,0,2,f +14560,4624,14,4,f +14560,6041,0,1,f +14560,970c00,0,1,f +14560,973px38c01,15,1,f +14561,4168410,9999,1,f +14562,2419,378,1,f +14562,2446,7,1,f +14562,2447,33,1,t +14562,2447,33,1,f +14562,2458,2,1,f +14562,2540,0,2,f +14562,2817,0,1,f +14562,2825,0,2,f +14562,298c02,7,1,f +14562,298c02,7,1,t +14562,30375,25,1,f +14562,30377,3,3,f +14562,30377,3,1,t +14562,30414,7,1,f +14562,30529p01,3,1,f +14562,30530,25,1,f +14562,3069bp55,8,1,f +14562,32064b,7,2,f +14562,32073,0,1,f +14562,3626bpx24,14,1,f +14562,3749,7,3,f +14562,3839b,15,2,f +14562,4070,8,1,f +14562,4079,7,1,f +14562,4285b,7,1,f +14562,4360,0,1,f +14562,4589,42,3,f +14562,4617b,0,1,f +14562,6118,7,2,f +14562,6141,57,1,t +14562,6141,57,1,f +14562,6232,2,1,f +14562,75535,0,1,f +14562,970x026,1,1,f +14562,973px57c01,7,1,f +14564,11133pb01,322,1,f +14564,11197,85,1,f +14564,11345,25,1,f +14564,11345,4,1,f +14564,11345,322,1,f +14564,11385pb01,191,1,f +14564,31110,4,1,f +14564,31110,25,1,f +14564,31110pb070,14,1,f +14564,31213,27,1,f +14564,3664pb14,4,1,f +14564,90265,14,1,f +14564,90265,1,1,f +14564,90265,5,1,f +14564,93607,27,1,f +14564,98223,27,1,f +14564,98224,10,1,f +14569,2346,0,6,f +14569,3022,4,1,f +14569,3023,4,2,f +14569,3069b,4,2,f +14569,3482,7,6,f +14569,3623,4,4,f +14569,3647,7,5,f +14569,3648a,7,1,f +14569,3650a,7,1,f +14569,3651,7,11,f +14569,3666,7,4,f +14569,3666,4,2,f +14569,3673,7,11,f +14569,3700,4,7,f +14569,3701,7,5,f +14569,3701,4,3,f +14569,3702,4,4,f +14569,3703,4,2,f +14569,3705,0,5,f +14569,3706,0,4,f +14569,3707,0,3,f +14569,3708,0,2,f +14569,3709,4,4,f +14569,3709,7,2,f +14569,3710,7,2,f +14569,3710,4,1,f +14569,3713,7,7,f +14569,3737,0,2,f +14569,3738,4,2,f +14569,3743,7,1,f +14569,3749,7,4,f +14569,3795,4,5,f +14569,3795,7,2,f +14569,3894,4,3,f +14569,3895,4,4,f +14569,3895,7,2,f +14569,3937,4,1,f +14569,3938,4,1,f +14569,3941,7,1,f +14569,4019,7,2,f +14569,4185,7,4,f +14569,4261,7,2,f +14569,4265a,7,14,f +14569,4275b,0,2,f +14569,4275b,7,2,f +14569,4276b,0,2,f +14569,4276b,7,2,f +14569,4350c02,7,1,f +14569,4442,7,3,f +14569,4459,0,5,f +14569,4519,0,1,f +14569,4716,0,1,f +14569,6216b,7,1,f +14569,71509,0,2,t +14569,71509,0,1,f +14569,766c01,7,2,f +14569,rb00164,0,1,f +14569,rb00168,0,2,t +14569,rb00168,0,4,f +14569,x466,7,1,f +14570,2340,7,2,f +14570,2412b,0,6,f +14570,2419,0,1,f +14570,2420,4,2,f +14570,2432,0,1,f +14570,2450,0,2,f +14570,2462,7,2,f +14570,2507pb02,42,1,f +14570,2540,4,6,f +14570,2569,42,2,f +14570,2582p6u,42,2,f +14570,298c02,4,2,f +14570,3001,4,2,f +14570,3001,7,1,f +14570,3001,0,2,f +14570,3003,0,5,f +14570,30034,0,1,f +14570,3004,4,2,f +14570,3004,0,5,f +14570,3006,4,1,f +14570,3007,7,2,f +14570,30117pb01,7,1,f +14570,30117pb05,7,1,f +14570,30118p6v,7,2,f +14570,30119,7,2,f +14570,30120p02,7,1,f +14570,30121,0,1,f +14570,3020,7,2,f +14570,3020,0,2,f +14570,3022,0,1,f +14570,3022,7,3,f +14570,3023,7,4,f +14570,3023,4,10,f +14570,3023,0,2,f +14570,3024,0,2,f +14570,3032,0,1,f +14570,3034,0,1,f +14570,3039,7,2,f +14570,3039,0,3,f +14570,3062b,4,2,f +14570,3068bp54,7,2,f +14570,3069b,7,1,f +14570,3069bp21,0,3,f +14570,3069bp51,0,3,f +14570,3297,7,2,f +14570,3298p6u,7,1,f +14570,3475b,0,4,f +14570,3622,0,2,f +14570,3623,4,2,f +14570,3626bp6w,4,1,f +14570,3626bp6y,57,1,f +14570,3660,7,2,f +14570,3666,4,2,f +14570,3710,0,1,f +14570,3794a,0,2,f +14570,3795,7,2,f +14570,3795,4,2,f +14570,3933,0,1,f +14570,3934,0,1,f +14570,3935,7,1,f +14570,3936,7,1,f +14570,3937,7,4,f +14570,3938,0,4,f +14570,3940b,0,6,f +14570,3956,0,3,f +14570,3959,0,2,f +14570,4032a,7,6,f +14570,4070,7,8,f +14570,4085c,4,2,f +14570,4150,0,1,f +14570,4175,7,2,f +14570,4275b,7,2,f +14570,4287,7,4,f +14570,4315,0,1,f +14570,4345b,42,1,f +14570,4346,42,1,f +14570,4531,7,2,f +14570,4588,0,2,f +14570,4589,0,2,f +14570,4589,42,2,f +14570,4595,0,8,f +14570,4598,7,1,f +14570,4625,0,2,f +14570,4740,42,9,f +14570,4746,0,1,f +14570,4865a,0,6,f +14570,6106,7,2,f +14570,6141,42,4,f +14570,6219,0,1,f +14570,6233,0,3,f +14570,6564,7,1,f +14570,6564,0,1,f +14570,6565,0,1,f +14570,6565,7,1,f +14570,73590c02a,0,4,f +14570,970c00pb021,0,1,f +14570,970c07pb01,4,1,f +14570,973pb0078c01,0,1,f +14570,973px123c01,7,1,f +14573,3004,1,2,f +14573,3004,4,2,f +14573,3020,1,1,f +14573,3021,4,10,f +14573,3022,4,1,f +14573,3023,1,1,f +14573,3024,1,2,f +14573,3034,1,2,f +14573,3039,4,2,f +14573,3039p23,1,1,f +14573,3039p34,1,1,f +14573,3040b,1,3,f +14573,3062a,36,1,f +14573,3069b,14,2,f +14573,3069b,1,2,f +14573,3070b,14,6,f +14573,3298,4,2,f +14573,3460,4,10,f +14573,3482,7,3,f +14573,3483,0,3,f +14573,3623,4,6,f +14573,3647,7,2,f +14573,3648a,7,3,f +14573,3650a,7,3,f +14573,3651,7,15,f +14573,3660,1,1,f +14573,3665,1,3,f +14573,3666,4,4,f +14573,3673,7,6,f +14573,3701,1,2,f +14573,3702,1,4,f +14573,3703,1,4,f +14573,3704,0,5,f +14573,3705,0,15,f +14573,3706,0,5,f +14573,3707,0,8,f +14573,3708,0,1,f +14573,3709,4,1,f +14573,3709,7,1,f +14573,3710,4,4,f +14573,3710,1,1,f +14573,3711a,0,24,f +14573,3711a,0,4,t +14573,3713,7,41,f +14573,3736,7,1,f +14573,3737,0,4,f +14573,3738,4,1,f +14573,3749,7,10,f +14573,3832,1,2,f +14573,3894,4,1,f +14573,3895,1,4,f +14573,3935,7,1,f +14573,3941,14,8,f +14573,4019,7,3,f +14573,4032a,7,2,f +14573,4185,7,2,f +14573,4262,4,2,f +14573,4262,7,1,f +14573,4265a,7,12,f +14573,4273b,7,30,f +14573,4274,7,10,f +14573,71509,0,1,f +14573,9244,7,1,f +14573,u1125,4,2,f +14573,u1126,4,2,f +14574,2446,15,1,f +14574,2446,0,1,f +14574,2543,4,1,f +14574,30177,4,1,f +14574,3624,0,1,f +14574,3626bpb0018,14,1,f +14574,3626bpr0001,14,3,f +14574,3626bpx7,14,1,f +14574,3838,15,1,f +14574,3838,0,1,f +14574,970c00,1,1,f +14574,970c00,15,1,f +14574,970c00,0,2,f +14574,970x026,4,1,f +14574,973p30c01,14,1,f +14574,973p90c03,0,1,f +14574,973p90c05,15,1,f +14574,973pb0035c01,4,1,f +14574,973pb0240c01,4,1,f +14575,6216a,7,1,f +14576,2357,4,2,f +14576,2412b,71,4,f +14576,2420,15,4,f +14576,2421,0,1,f +14576,2436,15,1,f +14576,2456,1,2,f +14576,2456,4,1,f +14576,2456,14,1,f +14576,2456,15,2,f +14576,2460,15,1,f +14576,2479,0,1,f +14576,2877,71,1,f +14576,2877,72,2,f +14576,2921,4,2,f +14576,2926,0,4,f +14576,298c02,15,2,f +14576,298c02,15,1,t +14576,3001,14,6,f +14576,3001,15,6,f +14576,3001,0,3,f +14576,3001,4,6,f +14576,3001,1,6,f +14576,3001,2,3,f +14576,3002,15,6,f +14576,3002,0,3,f +14576,3002,25,2,f +14576,3002,14,6,f +14576,3002,2,3,f +14576,3002,4,6,f +14576,3002,1,6,f +14576,3003,4,16,f +14576,3003,0,8,f +14576,3003,15,16,f +14576,3003,14,16,f +14576,3003,1,16,f +14576,3003,2,8,f +14576,3003,25,2,f +14576,3004,4,12,f +14576,3004,2,6,f +14576,3004,0,6,f +14576,3004,1,12,f +14576,3004,15,15,f +14576,3004,25,2,f +14576,3004,14,12,f +14576,3005,4,8,f +14576,3005,0,4,f +14576,3005,1,8,f +14576,3005,14,8,f +14576,3005,2,4,f +14576,3005,25,2,f +14576,3005,15,8,f +14576,3006,4,1,f +14576,3007,1,1,f +14576,3007,14,1,f +14576,3007,4,1,f +14576,3007,15,5,f +14576,3008,15,2,f +14576,3008,1,2,f +14576,3008,14,1,f +14576,3008,4,1,f +14576,3009,4,2,f +14576,3009,15,3,f +14576,3009,14,2,f +14576,3009,1,3,f +14576,3010,4,4,f +14576,3010,1,3,f +14576,3010,0,2,f +14576,3010,14,3,f +14576,3010,15,6,f +14576,3010,2,2,f +14576,3021,4,1,f +14576,3022,15,1,f +14576,3022,4,1,f +14576,3023,4,2,f +14576,3023,71,3,f +14576,3023,15,3,f +14576,3027,71,1,f +14576,3030,15,1,f +14576,3031,0,2,f +14576,3031,15,3,f +14576,3032,4,1,f +14576,3035,72,1,f +14576,3035,0,1,f +14576,30363,4,3,f +14576,3037,4,8,f +14576,3039,4,4,f +14576,3040b,25,2,f +14576,3041,4,2,f +14576,3043,4,1,f +14576,3062b,33,2,f +14576,3062b,14,1,f +14576,3062b,46,2,f +14576,30648,0,4,f +14576,3065,47,2,f +14576,3068b,15,1,f +14576,3191,15,1,f +14576,3298,0,8,f +14576,3298,25,2,f +14576,3403,15,1,f +14576,3404,15,1,f +14576,3460,0,2,f +14576,3622,14,4,f +14576,3622,4,4,f +14576,3622,15,4,f +14576,3622,2,2,f +14576,3622,0,2,f +14576,3622,1,4,f +14576,3665,4,2,f +14576,3666,15,3,f +14576,3741,2,1,t +14576,3741,2,2,f +14576,3742,4,2,t +14576,3742,4,6,f +14576,3747b,4,2,f +14576,3747b,25,2,f +14576,3794a,4,1,f +14576,3795,4,2,f +14576,3823,47,3,f +14576,3829c01,15,1,f +14576,3829c01,1,1,f +14576,3829c01,14,1,f +14576,3937,0,1,f +14576,3957a,71,1,f +14576,3963,71,1,f +14576,4070,15,4,f +14576,4081b,0,2,f +14576,4083,15,2,f +14576,40996,33,2,f +14576,4130,15,2,f +14576,4131,0,2,f +14576,4132,1,2,f +14576,4132,4,1,f +14576,4133,15,3,f +14576,4175,72,2,f +14576,4176,47,1,f +14576,4202,71,1,f +14576,4207,15,1,f +14576,4287,15,2,f +14576,4349,72,1,f +14576,44728,4,2,f +14576,4477,72,2,f +14576,4488,0,1,f +14576,4533,15,2,f +14576,4599a,14,1,f +14576,4740,0,2,f +14576,4864b,47,2,f +14576,54200,33,2,f +14576,55981,71,4,f +14576,6014b,15,4,f +14576,6014b,71,4,f +14576,6015,0,8,f +14576,6134,71,1,f +14576,6141,36,1,t +14576,6141,46,4,f +14576,6141,36,4,f +14576,6141,46,1,t +14576,6249,72,2,f +14576,92410,4,2,f +14578,18829pr0001,19,1,f +14578,3626cpr1544,14,1,f +14578,88646,0,1,f +14578,93160,15,1,f +14578,970c00pr0788,19,1,f +14578,973pr2837c01,28,1,f +14578,98138pr0028,19,1,f +14579,11055,4,1,f +14579,11203,19,1,f +14579,11203,72,6,f +14579,11211,71,6,f +14579,11214,72,2,f +14579,11291,15,2,f +14579,11305,158,4,f +14579,11458,72,1,f +14579,11476,71,1,f +14579,11477,179,6,f +14579,14395,72,1,f +14579,14417,72,2,f +14579,14418,71,2,f +14579,14769,15,6,f +14579,15064,158,2,f +14579,15068,308,7,f +14579,15070,15,3,f +14579,15082,0,2,f +14579,15392,72,1,t +14579,15392,72,2,f +14579,15400,72,1,f +14579,15403,15,2,f +14579,15535,72,2,f +14579,15571,0,6,f +14579,15571,72,6,f +14579,15573,272,6,f +14579,15573,70,2,f +14579,15619,272,1,f +14579,15712,0,8,f +14579,15712,297,2,f +14579,15712,70,2,f +14579,17979,272,2,f +14579,18649,0,1,f +14579,19020,182,2,f +14579,19857pat0003,0,1,f +14579,19857pat0005,0,1,f +14579,19858pat0002,42,2,f +14579,19859pat0002,42,1,f +14579,19861pr0001,42,1,f +14579,20566pat02,148,2,f +14579,20612,40,1,f +14579,20643,272,1,f +14579,2412b,297,2,f +14579,2412b,80,1,f +14579,2412b,272,5,f +14579,2419,28,1,f +14579,2419,72,2,f +14579,2420,15,4,f +14579,2460,72,2,f +14579,2540,72,3,f +14579,2653,71,2,f +14579,2654,72,6,f +14579,2780,0,1,f +14579,2780,0,1,t +14579,3001,70,1,f +14579,3001,71,1,f +14579,3002,15,2,f +14579,3003,272,1,f +14579,3003,72,4,f +14579,3004,0,2,f +14579,3004,158,10,f +14579,3004,72,5,f +14579,3005,15,7,f +14579,3005,72,8,f +14579,30136,72,1,f +14579,30150,70,1,f +14579,30173b,179,3,f +14579,30173b,158,2,f +14579,3020,72,6,f +14579,3020,4,1,f +14579,3020,71,5,f +14579,3020,28,1,f +14579,3021,15,4,f +14579,3021,272,2,f +14579,3021,70,2,f +14579,3021,72,3,f +14579,3022,19,2,f +14579,3022,71,3,f +14579,3022,70,2,f +14579,3023,19,3,f +14579,3023,41,10,f +14579,3023,42,39,f +14579,30238,42,1,f +14579,3031,0,2,f +14579,3034,72,2,f +14579,30350b,15,2,f +14579,30361,0,2,f +14579,30374,42,2,f +14579,3039,72,1,f +14579,3040b,72,6,f +14579,3045,72,4,f +14579,3049c,15,2,f +14579,3062b,72,1,f +14579,3062b,0,2,f +14579,3062b,71,2,f +14579,3068b,4,1,f +14579,3069b,72,2,f +14579,32001,71,1,f +14579,32013,72,1,f +14579,32013,320,1,f +14579,32028,71,1,f +14579,32062,4,2,f +14579,32064a,0,7,f +14579,3298,70,3,f +14579,3298,0,1,f +14579,3623,70,2,f +14579,3626cpr1367,14,1,f +14579,3626cpr1570,179,1,f +14579,3626cpr1571,14,1,f +14579,3626cpr1691,42,1,f +14579,3626cpr1693,42,1,f +14579,3660,71,3,f +14579,3665,15,6,f +14579,3665,0,2,f +14579,3666,0,4,f +14579,3678b,71,2,f +14579,3700,71,5,f +14579,3701,0,1,f +14579,3709,0,1,f +14579,3710,28,2,f +14579,3710,0,1,f +14579,3747b,72,2,f +14579,3747b,15,1,f +14579,3747b,272,5,f +14579,3794b,71,6,f +14579,3795,28,2,f +14579,3795,0,7,f +14579,3849,0,1,f +14579,3941,42,8,f +14579,3941,19,1,f +14579,3958,28,1,f +14579,4006,0,1,f +14579,4032a,70,4,f +14579,4081b,19,5,f +14579,4216,379,2,f +14579,4274,1,7,f +14579,4274,1,2,t +14579,4286,72,1,f +14579,4286,15,2,f +14579,4287,72,6,f +14579,43093,1,2,f +14579,44676,15,2,f +14579,44728,72,1,f +14579,4697b,71,2,f +14579,4697b,71,1,t +14579,47455,0,4,f +14579,47456,72,2,f +14579,47456,308,4,f +14579,47457,15,3,f +14579,48170,72,4,f +14579,48172,0,2,f +14579,48336,297,3,f +14579,48336,4,1,f +14579,4865a,19,2,f +14579,4871,15,2,f +14579,4871,272,4,f +14579,4871,72,2,f +14579,50950,15,4,f +14579,50950,320,1,f +14579,50950,158,6,f +14579,51739,272,1,f +14579,52107,71,1,f +14579,53451,15,1,t +14579,53451,158,3,f +14579,53451,15,3,f +14579,53451,158,2,t +14579,54200,72,4,f +14579,54200,72,1,t +14579,54200,272,14,f +14579,54200,158,2,t +14579,54200,272,2,t +14579,54200,15,2,f +14579,54200,15,1,t +14579,54200,158,10,f +14579,56823c50,0,1,f +14579,57909b,308,6,f +14579,57909b,72,4,f +14579,59900,297,1,f +14579,60470a,71,5,f +14579,60474,0,3,f +14579,60474,308,4,f +14579,60475b,72,2,f +14579,60478,15,8,f +14579,60478,72,12,f +14579,60897,15,2,f +14579,60897,71,1,f +14579,6091,0,2,f +14579,61252,72,1,f +14579,6141,158,2,t +14579,6141,0,1,t +14579,6141,0,5,f +14579,6141,41,1,t +14579,6141,158,6,f +14579,6141,41,12,f +14579,61678,15,1,f +14579,63864,71,2,f +14579,63868,72,1,f +14579,63868,71,6,f +14579,63965,0,1,f +14579,64567,0,2,f +14579,64644,308,1,f +14579,64727,71,2,f +14579,6553,71,4,f +14579,6587,28,2,f +14579,73983,0,5,f +14579,74698,0,1,f +14579,85984,72,5,f +14579,85984pr0002,72,1,f +14579,87079,0,1,f +14579,87087,72,2,f +14579,87544,272,4,f +14579,87552,41,1,f +14579,87580,28,1,f +14579,87747,0,1,t +14579,87747,0,14,f +14579,88293,0,4,f +14579,90201,0,2,f +14579,90611,42,4,f +14579,92013,0,10,f +14579,92234,0,4,f +14579,92280,15,2,f +14579,92280,0,4,f +14579,92338,297,1,f +14579,92690,70,1,f +14579,92692,0,3,f +14579,92946,72,4,f +14579,93058,297,2,t +14579,93058,297,2,f +14579,93059,85,1,f +14579,93273,272,5,f +14579,93273,4,1,f +14579,93274,0,2,f +14579,95344,297,2,t +14579,95344,297,7,f +14579,96874,25,1,t +14579,970c00pr0772,0,1,f +14579,970c00pr0876,0,1,f +14579,970c00pr0877,0,1,f +14579,973pr2859c01,0,1,f +14579,973pr3034c01,0,1,f +14579,973pr3035c01,0,1,f +14579,973pr3038c01,272,1,f +14579,973pr3039c01,272,1,f +14579,98128,0,1,f +14579,98129,4,1,f +14579,98132,0,3,f +14579,98137,179,2,f +14579,98138,71,1,t +14579,98138,71,2,f +14579,98138,179,2,t +14579,98138,41,1,f +14579,98138,179,6,f +14579,98138,41,1,t +14579,98139,297,1,t +14579,98139,297,1,f +14579,98313,179,6,f +14579,98313,148,14,f +14579,98341,179,2,f +14579,98560,72,1,f +14579,98834,0,2,f +14579,99207,0,2,f +14579,99207,71,1,f +14579,99780,0,2,f +14579,99781,71,1,f +14580,11477,15,2,f +14580,14417,72,1,f +14580,14419,72,3,f +14580,15573,15,1,f +14580,2412b,15,2,f +14580,298c02,71,1,f +14580,3001,25,1,f +14580,3020,19,1,f +14580,3021,25,2,f +14580,3022,71,6,f +14580,3039,47,1,f +14580,3065,47,2,f +14580,3679,71,2,f +14580,3680,15,2,f +14580,44728,15,4,f +14580,4600,0,2,f +14580,48336,0,1,f +14580,54200,0,4,f +14580,6014b,71,4,f +14580,6141,36,4,f +14580,87087,71,2,f +14580,87697,0,4,f +14580,98138,71,4,f +14581,14769pr086,71,2,f +14581,15672,71,2,f +14581,18677,71,2,f +14581,2436,71,2,f +14581,2654,0,4,f +14581,3020,71,3,f +14581,3021,72,6,f +14581,3022,71,3,f +14581,3034,72,1,f +14581,30357,71,2,f +14581,3040b,71,2,f +14581,3626cpr1149,78,1,f +14581,3665,71,2,f +14581,3666,71,2,f +14581,3676,72,2,f +14581,3700,71,1,f +14581,3710,72,2,f +14581,3960pr13,40,1,f +14581,4070,71,2,f +14581,4274,1,1,f +14581,4274,1,1,t +14581,4287,71,2,f +14581,43722,71,4,f +14581,43723,71,4,f +14581,44567a,71,1,f +14581,48336,0,8,f +14581,51739,0,4,f +14581,54200,72,2,f +14581,54200,72,1,t +14581,58176,36,2,f +14581,60470a,71,8,f +14581,61184,71,2,f +14581,64799,71,1,f +14581,85984,71,3,f +14581,87556pr0005b,0,1,f +14581,92738,0,1,f +14581,93273,71,1,f +14581,970c00,0,1,f +14581,973pr2878c01,0,1,f +14581,99780,71,4,f +14582,2815,0,3,f +14582,3004,1,1,f +14582,3004,4,1,f +14582,3005,1,2,f +14582,3010,1,9,f +14582,3020,1,2,f +14582,3022,7,12,f +14582,3022,1,1,f +14582,3023,4,2,f +14582,3023,15,2,f +14582,3023,1,9,f +14582,3024,1,4,f +14582,3030,1,1,f +14582,3040b,1,2,f +14582,3062b,0,8,f +14582,3063b,14,6,f +14582,3460,4,2,f +14582,3460,1,2,f +14582,3622,1,2,f +14582,3623,4,4,f +14582,3647,7,2,f +14582,3648a,7,3,f +14582,3651,7,12,f +14582,3652,7,2,f +14582,3666,4,2,f +14582,3666,15,3,f +14582,3666,1,3,f +14582,3700,1,5,f +14582,3700,7,2,f +14582,3700,15,1,f +14582,3701,15,1,t +14582,3701,1,2,f +14582,3701,15,2,f +14582,3703,15,4,f +14582,3704,0,4,f +14582,3705,0,6,f +14582,3706,0,4,f +14582,3708,0,2,f +14582,3710,4,2,f +14582,3710,1,5,f +14582,3710,15,5,f +14582,3710,7,1,f +14582,3711a,0,23,f +14582,3713,7,6,f +14582,3737,0,1,f +14582,3743,7,1,f +14582,3749,7,5,f +14582,3830,1,2,f +14582,3830,15,4,f +14582,3831,1,2,f +14582,3831,15,4,f +14582,3894,1,1,f +14582,3937,7,4,f +14582,3938,7,4,f +14582,3958,15,1,f +14582,4019,7,4,f +14582,4143,7,4,f +14582,4185,7,3,f +14582,4261,7,2,f +14582,4265a,7,2,f +14582,4266,7,2,f +14582,4267,0,2,f +14582,4273b,7,8,f +14582,4274,7,2,f +14582,4286,1,6,f +14582,4442,7,3,f +14582,4459,0,6,f +14582,73071,7,1,f +14582,9244,7,1,t +14583,11816pr0002,78,1,f +14583,2335,15,1,f +14583,2412b,71,4,f +14583,2413,15,2,f +14583,2420,71,2,f +14583,2458,71,1,f +14583,2877,15,9,f +14583,3001,19,1,f +14583,3002,15,1,f +14583,3003,14,1,f +14583,3005,323,2,f +14583,30055,15,2,f +14583,3010,15,3,f +14583,30137,70,3,f +14583,3020,15,6,f +14583,3022,14,3,f +14583,3023,15,2,f +14583,3023,14,4,f +14583,3030,15,1,f +14583,3034,71,1,f +14583,3034,19,1,f +14583,3035,71,2,f +14583,3035,70,4,f +14583,3037,26,4,f +14583,30503,15,2,f +14583,3062b,70,2,f +14583,3062b,19,22,f +14583,3063stk01,9999,1,f +14583,3068b,15,2,f +14583,3069b,29,6,f +14583,3245c,71,2,f +14583,3298,14,2,f +14583,3307,15,1,f +14583,33121,191,1,f +14583,3623,19,4,f +14583,3623,71,2,f +14583,3660,14,2,f +14583,3666,71,2,f +14583,3666,26,2,f +14583,3741,2,1,t +14583,3741,2,1,f +14583,3742,5,3,f +14583,3742,5,1,t +14583,3794b,15,2,f +14583,3794b,72,1,f +14583,3795,15,1,f +14583,3823,47,1,f +14583,3957b,71,1,f +14583,4150,14,1,f +14583,4150pr0009,15,1,f +14583,42023,72,8,f +14583,43713,322,2,f +14583,43722,14,1,f +14583,43723,14,1,f +14583,4460b,15,2,f +14583,4856a,323,1,f +14583,54200,322,1,t +14583,54200,322,2,f +14583,6019,14,1,f +14583,60481,19,2,f +14583,6091,71,2,f +14583,6141,29,6,f +14583,6141,19,1,t +14583,6141,36,1,f +14583,6141,36,1,t +14583,6141,19,4,f +14583,6141,29,1,t +14583,6141,14,2,f +14583,6141,14,1,t +14583,6141,34,1,f +14583,6141,34,1,t +14583,61678,14,2,f +14583,61678,323,6,f +14583,6239,322,1,f +14583,6266,15,1,f +14583,64225,322,1,f +14583,64644,308,1,f +14583,85984,323,2,f +14583,87087,15,10,f +14583,87544,15,2,f +14583,92255,226,1,f +14583,92456pr0019c01,78,1,f +14583,92593,15,2,f +14583,92818pr0002c01,26,1,f +14583,92842,0,1,f +14583,93095,29,1,f +14583,98388pr0001,191,1,f +14583,98397,71,1,f +14586,2444,0,2,f +14586,2555,0,4,f +14586,2654,0,1,f +14586,2780,0,55,f +14586,2780,0,3,t +14586,2797c02,14,1,f +14586,2819,71,1,f +14586,2853,71,2,f +14586,2905,0,2,f +14586,3020,27,2,f +14586,3023,0,4,f +14586,3024,182,2,f +14586,3024,47,2,f +14586,3068b,0,2,f +14586,32009,27,2,f +14586,32009,72,4,f +14586,32009,4,2,f +14586,32009,0,2,f +14586,32013,15,2,f +14586,32013,0,5,f +14586,32034,0,7,f +14586,32054,0,24,f +14586,32056,0,4,f +14586,32062,4,12,f +14586,32068,0,2,f +14586,32069,0,2,f +14586,32072,14,2,f +14586,32073,71,8,f +14586,32123b,71,20,f +14586,32123b,71,3,t +14586,32138,0,3,f +14586,32140,0,3,f +14586,32140,72,2,f +14586,32184,0,3,f +14586,32192,0,2,f +14586,32269,19,1,f +14586,32270,0,4,f +14586,32278,4,2,f +14586,32278,0,4,f +14586,32291,72,4,f +14586,32316,4,3,f +14586,32316,72,9,f +14586,32316,15,2,f +14586,32316,0,2,f +14586,32348,0,4,f +14586,32449,72,4,f +14586,32523,72,9,f +14586,32524,4,2,f +14586,32524,0,3,f +14586,32525,0,5,f +14586,32526,72,2,f +14586,32526,0,4,f +14586,32526,1,2,f +14586,32529,0,2,f +14586,32556,19,3,f +14586,32557,71,1,f +14586,3647,72,2,f +14586,3647,72,1,t +14586,3705,0,6,f +14586,3706,0,5,f +14586,3707,0,3,f +14586,3708,0,2,f +14586,3710,0,2,f +14586,3713,71,2,t +14586,3713,71,7,f +14586,3737,0,1,f +14586,3749,19,3,f +14586,3941,70,10,f +14586,3941,46,1,f +14586,4019,71,2,f +14586,4032a,0,1,f +14586,40490,72,2,f +14586,40490,0,2,f +14586,41677,0,10,f +14586,41678,0,1,f +14586,41896,71,2,f +14586,42003,71,2,f +14586,42003,0,4,f +14586,4274,71,2,t +14586,4274,71,14,f +14586,43093,1,24,f +14586,43857,71,2,f +14586,44294,71,3,f +14586,4519,71,26,f +14586,4697b,71,1,f +14586,4697b,71,1,t +14586,4716,71,1,f +14586,47223a,72,2,f +14586,47225,14,2,f +14586,50163,72,1,f +14586,5102c08,1,1,f +14586,5102c14,1,2,f +14586,5102c16,71,1,f +14586,5102c20,0,1,f +14586,5102c37,71,1,f +14586,5102c42,0,1,f +14586,54200,47,2,f +14586,54200,47,1,t +14586,55976,0,6,f +14586,56145,71,6,f +14586,59443,0,11,f +14586,6046,0,1,f +14586,60483,0,2,f +14586,60483,72,2,f +14586,61070,27,1,f +14586,61071,27,1,f +14586,61480,0,2,f +14586,62462,15,2,f +14586,6536,72,9,f +14586,6536,27,4,f +14586,6536,15,2,f +14586,6553,0,2,f +14586,6558,1,30,f +14586,6632,0,12,f +14586,74982,14,1,f +14586,87082,71,3,f +14586,87083,72,9,f +14586,87761,0,1,f +14586,88930,27,2,f +14587,30173b,0,1,f +14587,3626cpr1367,14,1,f +14587,64567,71,1,f +14587,970c00,1,1,f +14587,973pr2474c01,1,1,f +14587,98132,179,1,f +14587,98133,1,1,f +14587,98139,297,1,f +14588,30304,72,1,f +14588,30367b,15,1,f +14588,30374,42,1,f +14588,4085c,71,2,f +14588,4589,15,1,f +14588,47905,71,1,f +14588,58247,0,2,f +14588,64567,80,1,f +14589,30214,34,1,f +14589,3069bp53,0,1,f +14589,3298pb005,8,1,f +14589,3475b,1,2,f +14589,3626bpx175,8,1,f +14589,3795,0,1,f +14589,4589,42,2,f +14589,4590,1,3,f +14589,4596,0,1,f +14589,4598,8,1,f +14589,4740,42,1,f +14589,6141,42,1,f +14589,6141,42,1,t +14589,6919,42,2,f +14589,970x027,0,1,f +14589,973pb0037c01,8,1,f +14591,11568pr0001,484,1,f +14591,11618,322,1,f +14591,11618,322,2,t +14591,2412b,14,1,t +14591,2412b,14,2,f +14591,2423,2,2,f +14591,2449,70,2,f +14591,3004,70,1,f +14591,30044,70,1,f +14591,30236,19,1,f +14591,3031,27,4,f +14591,3069b,70,1,t +14591,3069b,70,2,f +14591,33291,5,2,f +14591,33291,5,2,t +14591,3678b,70,1,f +14591,3710,70,1,f +14591,3794b,28,1,f +14591,48336,19,4,f +14591,54200,19,1,t +14591,54200,19,2,f +14591,60481,308,2,f +14591,6141,70,2,f +14591,6141,19,2,t +14591,6141,19,3,f +14591,6141,70,2,t +14591,6256,191,1,f +14591,63868,14,5,f +14592,3482,7,12,f +14592,3483,0,8,f +14592,3634,0,4,f +14594,3005,15,14,f +14594,3005,4,9,f +14594,3005,1,2,f +14594,3062c,1,5,f +14594,3062c,14,5,f +14594,3063b,15,2,f +14594,700e,14,1,f +14594,bslot01,4,2,f +14594,bslot01,15,2,f +14594,bslot02a,1,1,f +14594,bslot02a,15,1,f +14594,bslot02a,4,1,f +14594,x1042b,15,2,f +14595,3040b,2,4,f +14595,33122,46,1,f +14595,3941,70,1,f +14595,3942c,2,1,f +14595,4032a,70,3,f +14595,4032a,70,1,t +14595,4286,2,4,f +14595,6141,4,4,t +14595,6141,4,4,f +14596,30408pr0002,15,2,f +14596,30483pr01,70,1,f +14596,3626bpr0342,78,1,f +14596,3626bpr0635,78,1,f +14596,3901,70,1,f +14596,4530,19,1,f +14596,58247,0,2,f +14596,61482,71,1,f +14596,970c00,70,1,f +14596,970x026,15,2,f +14596,973c32,70,1,f +14596,973pr0520c01,15,2,f +14598,2877,14,1,f +14598,30127,4,1,f +14598,30127,1,1,f +14598,30137,6,1,f +14598,3023,4,1,f +14598,30238,0,1,f +14598,30276px1,14,1,f +14598,3031,2,1,f +14598,3039,1,1,f +14598,3040b,4,2,f +14598,3626bpac,14,1,f +14598,3794a,1,1,f +14598,3941,1,1,f +14598,4070,14,2,f +14598,4497,0,1,f +14598,6091,4,2,f +14598,6141,36,1,t +14598,6141,36,1,f +14598,970c03pb02,14,1,f +14598,973pacc01,14,1,f +14598,x1255px1,4,1,f +14599,2412b,72,1,f +14599,2412b,15,2,f +14599,3024,19,2,f +14599,3024,19,1,t +14599,3069b,71,1,f +14599,3176,1,2,f +14599,3710,71,1,f +14599,3794b,72,2,f +14599,4032a,71,1,f +14599,4070,71,1,f +14599,42446,72,2,f +14599,4733,15,1,f +14599,54200,40,2,f +14599,54200,71,1,f +14599,54200,71,1,t +14599,54200,40,1,t +14599,87087,72,1,f +14602,3647,7,2,f +14602,3648a,7,1,f +14602,3650a,7,1,f +14602,3700,14,4,f +14602,3701,14,2,f +14602,3705,0,2,f +14602,3709,14,2,f +14602,3713,7,1,f +14602,3736,7,1,f +14602,3738,14,2,f +14602,765c28,7,1,f +14602,rb00168,0,1,f +14602,rb00169,0,1,f +14602,rb00193a,0,1,f +14605,b09mf01,9999,1,f +14607,4350c02,7,1,f +14608,3005,15,4,f +14608,3008a,15,1,f +14608,3062c,4,4,f +14608,3063a,15,2,f +14608,3063b,15,1,f +14608,3065,15,5,f +14608,31ac01,4,1,f +14608,33ac01,4,1,f +14608,712a,15,2,f +14609,3004,15,1,f +14609,3007,15,2,f +14609,3010,0,1,f +14609,3021,15,1,f +14609,3022,15,1,f +14609,3023,15,2,f +14609,3069b,15,1,f +14609,3622,15,1,f +14609,3660,15,2,f +14609,3700,15,1,f +14609,3794b,15,1,f +14609,4070,15,2,f +14609,6141,29,4,f +14609,6141,15,4,f +14609,6141,71,1,f +14609,6141,0,4,f +14609,85984,15,3,f +14610,5306c01,8,1,f +14611,10057pr0002,19,1,f +14611,10058,19,2,f +14611,11476,71,2,f +14611,11477,0,2,f +14611,18868a,41,1,f +14611,19981pr0036,41,1,f +14611,3941,41,1,f +14611,4032a,70,1,f +14611,41854,308,1,f +14611,50950,0,2,f +14611,53451,15,1,t +14611,53451,15,2,f +14611,6019,0,2,f +14611,6141,46,4,f +14611,6141,46,1,t +14611,6141,70,2,f +14611,6141,70,1,t +14611,64648,179,1,f +14611,75937,0,1,f +14611,87747,0,6,f +14611,87747,0,1,t +14611,93061,72,6,f +14611,93061,72,1,t +14611,99781,0,1,f +14614,2412b,25,2,f +14614,2432,8,2,f +14614,2447,46,1,f +14614,2447,46,1,t +14614,2555,7,4,f +14614,2926,7,2,f +14614,3002,14,2,f +14614,30027a,15,2,f +14614,30028,0,2,f +14614,30038,0,1,f +14614,30092,0,2,f +14614,30191,0,1,f +14614,3022,0,1,f +14614,3062b,4,2,f +14614,3626bpb0046,14,1,f +14614,3710,0,1,f +14614,3829c01,7,1,f +14614,3839b,7,1,f +14614,3942c,0,3,f +14614,4212b,0,1,f +14614,43337,14,2,f +14614,4485,0,1,f +14614,6014a,15,2,f +14614,6015,0,2,f +14614,6126a,57,5,f +14614,6519stk01,9999,1,t +14614,970x026,14,1,f +14614,973pb0051c01,15,1,f +14615,298c02,71,2,t +14615,298c02,71,1,f +14615,30027b,71,1,t +14615,30027b,71,2,f +14615,30028,0,2,f +14615,3062b,71,2,f +14615,3626bpr0216,14,1,f +14615,3795,0,1,f +14615,3829c01,14,1,f +14615,4070,2,4,f +14615,4079b,14,1,f +14615,4600,0,1,f +14615,6014b,71,2,f +14615,60700,0,2,f +14615,6141,71,1,f +14615,6141,47,2,f +14615,6141,71,2,t +14615,6141,47,2,t +14615,61506,19,1,f +14615,6157,71,1,f +14615,6215,2,1,f +14615,970c00,2,1,f +14615,973pr1271c01,15,1,f +14616,11211,4,3,f +14616,15712,15,2,f +14616,18649,71,1,f +14616,18649,0,1,f +14616,2561,70,1,f +14616,3004,70,1,f +14616,3004,0,1,f +14616,3022,70,1,f +14616,3022,4,1,f +14616,3022,0,1,f +14616,3023,4,2,f +14616,3023,19,1,f +14616,3068pr0005,15,1,f +14616,3660,0,1,f +14616,4032a,19,1,f +14616,4070,19,2,f +14616,49668,0,2,f +14616,63868,4,2,f +14616,74698,0,1,f +14616,92947,0,1,f +14616,98138,297,4,f +14616,98138pr0008,15,2,f +14616,x77cc21,82,1,f +14617,298c02,14,2,f +14617,298c02,14,2,t +14617,3004,2,1,f +14617,3039,2,3,f +14617,3040b,2,2,f +14617,3176,14,2,f +14617,3710,14,2,f +14617,4070,14,2,f +14618,2458,7,2,f +14618,3022,7,1,f +14618,3062b,7,8,f +14618,3403,0,1,f +14618,3404,0,1,f +14618,3626bpr0001,14,2,f +14618,3659,0,4,f +14618,3666,0,4,f +14618,3700,0,2,f +14618,3710,0,3,f +14618,3832,2,3,f +14618,3844,8,2,f +14618,3846p4c,7,2,f +14618,3847,8,2,f +14618,3847,8,1,t +14618,4085c,7,1,t +14618,4085c,7,2,f +14618,4497,6,2,f +14618,4504,0,2,f +14618,4626,0,2,f +14618,970x026,1,2,f +14618,973p41c01,1,2,f +14619,2357,19,4,f +14619,2376,0,1,f +14619,2412b,71,7,f +14619,2431,71,4,f +14619,2432,70,8,f +14619,2449,320,4,f +14619,2540,72,1,f +14619,2555,70,2,f +14619,2555,19,6,f +14619,2560,70,3,f +14619,2566,0,2,f +14619,2587,132,1,f +14619,2714a,0,6,f +14619,2723,0,2,f +14619,2780,0,12,f +14619,2877,71,4,f +14619,2921,19,1,f +14619,3001,71,9,f +14619,3003,0,1,f +14619,3003,71,1,f +14619,3004,19,5,f +14619,3004,320,1,f +14619,3009,70,8,f +14619,30094,0,2,f +14619,30095,72,3,f +14619,3010,70,8,f +14619,3010,288,2,f +14619,30104,72,2,f +14619,30136,19,6,f +14619,30153,33,3,f +14619,3020,72,2,f +14619,3020,0,4,f +14619,3021,4,1,f +14619,3021,19,6,f +14619,3022,70,1,f +14619,3022,4,3,f +14619,3023,71,2,f +14619,3023,19,9,f +14619,3031,0,2,f +14619,3032,0,2,f +14619,30374,70,2,f +14619,3039,71,1,f +14619,30395,72,1,f +14619,3040b,70,4,f +14619,30488c01,0,1,f +14619,30592,72,1,f +14619,3062b,72,4,f +14619,3062b,378,8,f +14619,3063b,71,2,f +14619,3068b,19,1,f +14619,3068b,4,2,f +14619,3069b,0,3,f +14619,3176,14,1,f +14619,3176,19,2,f +14619,32000,71,2,f +14619,32013,0,4,f +14619,32039,484,3,f +14619,32054,71,1,f +14619,32059,28,2,f +14619,32062,0,3,f +14619,32062,4,1,f +14619,32064a,0,2,f +14619,32073,71,4,f +14619,32174,288,1,f +14619,32209,15,1,f +14619,32270,0,2,f +14619,32291,72,1,f +14619,32316,0,1,f +14619,32324,0,1,f +14619,32348,72,2,f +14619,32449,0,2,f +14619,3245b,19,3,f +14619,32474,4,4,f +14619,32523,0,1,f +14619,32524,0,2,f +14619,32525,72,1,f +14619,3298,4,4,f +14619,3298,19,2,f +14619,33057,484,2,f +14619,3623,4,7,f +14619,3626bpr0325,14,1,f +14619,3626bpr0348,14,1,f +14619,3626bpr0433,14,1,f +14619,3626bpr0434,14,1,f +14619,3626bpr0435,14,1,f +14619,3626bpr0437,71,1,f +14619,3647,71,1,f +14619,3660,70,2,f +14619,3666,70,10,f +14619,3678b,72,1,f +14619,3700,288,7,f +14619,3700,70,11,f +14619,3701,19,2,f +14619,3702,0,2,f +14619,3705,0,1,f +14619,3708,0,1,f +14619,3709,72,4,f +14619,3710,0,9,f +14619,3713,71,1,t +14619,3713,71,4,f +14619,3749,19,1,f +14619,3794a,72,6,f +14619,3795,0,1,f +14619,3894,71,2,f +14619,3941,70,10,f +14619,3957a,0,2,f +14619,3960,320,2,f +14619,3960pr0002,19,3,f +14619,3960pr0003,19,2,f +14619,3960pr0004,19,2,f +14619,3960pr0006,19,2,f +14619,40378,288,1,f +14619,40379,288,3,f +14619,40386,378,4,f +14619,4070,70,16,f +14619,4083,0,2,f +14619,4085c,0,2,f +14619,4085c,71,6,f +14619,4095,71,1,f +14619,4095,70,1,f +14619,4150,0,1,f +14619,41677,0,1,f +14619,41747,288,1,f +14619,41748,288,1,f +14619,41764,378,1,f +14619,41765,378,1,f +14619,42023,378,2,f +14619,4274,71,1,t +14619,4274,71,17,f +14619,4286,320,1,f +14619,43093,1,9,f +14619,43712,288,1,f +14619,43713,378,2,f +14619,43888,72,2,f +14619,44126,288,1,f +14619,44140,288,1,f +14619,44147,15,1,f +14619,4460a,320,4,f +14619,44728,0,1,f +14619,4495b,4,1,f +14619,4519,4,2,f +14619,4519,71,2,f +14619,4589,72,1,f +14619,4599a,71,1,f +14619,4623,4,1,f +14619,4697b,71,2,f +14619,4697b,71,1,t +14619,4738a,70,1,f +14619,4739a,70,1,f +14619,47432,288,2,f +14619,47455,0,5,f +14619,47576,70,1,f +14619,47753,288,3,f +14619,47905,72,2,f +14619,4794b,288,4,f +14619,4794b,70,2,f +14619,48002,19,1,f +14619,48005,19,1,f +14619,48169,288,3,f +14619,48170,288,3,t +14619,48171,288,3,f +14619,48495,179,3,f +14619,48495,82,1,f +14619,4855,378,4,f +14619,48723,70,1,f +14619,50231,0,1,f +14619,50303,19,1,f +14619,50923,72,1,f +14619,53450,82,1,f +14619,53450,132,5,f +14619,53451,15,1,t +14619,53451,4,1,t +14619,53451,15,39,f +14619,53451,4,8,f +14619,53452,70,2,f +14619,53455,288,1,f +14619,53456,320,1,f +14619,53457,320,1,f +14619,53705,132,3,f +14619,54200,72,2,f +14619,56823c50,0,1,f +14619,59275,4,1,f +14619,59275,4,1,t +14619,6019,72,2,f +14619,6020,71,2,f +14619,6091,0,1,f +14619,6126a,57,4,f +14619,6133,0,2,f +14619,6141,0,2,f +14619,6141,0,1,t +14619,6538b,19,4,f +14619,6558,0,6,f +14619,6587,72,4,f +14619,7018stk01,9999,1,t +14619,75c20,134,1,t +14619,75c20,134,4,f +14619,970c00,288,2,f +14619,970c00,272,1,f +14619,970x026,1,1,f +14619,970x026,4,1,f +14619,970x154,0,1,f +14619,973pb0377c01,72,2,f +14619,973pr1212c01,72,1,f +14619,973pr1213c01,14,1,f +14619,973pr1214c01,72,1,f +14619,973pr1215c01,272,1,f +14619,sailbb36,19,1,f +14620,2412b,72,2,f +14620,2420,70,3,f +14620,2423,2,2,f +14620,2436,0,1,f +14620,2453a,71,2,f +14620,2540,72,2,f +14620,2877,72,2,f +14620,3003,70,1,f +14620,3004,70,8,f +14620,3004,15,8,f +14620,3004,25,6,f +14620,3004,71,3,f +14620,30044,71,2,f +14620,30046,0,2,f +14620,3005,15,8,f +14620,3005,70,2,f +14620,3005,25,10,f +14620,3005,33,2,f +14620,3005,47,2,f +14620,3010,72,2,f +14620,30170,72,1,f +14620,30170,72,1,t +14620,30171,70,1,f +14620,3020,70,1,f +14620,3021,15,1,f +14620,3021,71,1,f +14620,3022,71,2,f +14620,3023,72,4,f +14620,3023,25,2,f +14620,3023,70,2,f +14620,3023,0,3,f +14620,3023,15,7,f +14620,3024,15,2,f +14620,3031,0,2,f +14620,3031,70,2,f +14620,3034,70,1,f +14620,3035,0,1,f +14620,3035,71,2,f +14620,30350b,72,1,f +14620,3036,0,2,f +14620,30385,297,1,f +14620,3040b,0,6,f +14620,3062b,70,4,f +14620,3069b,71,4,f +14620,3069b,70,6,f +14620,3176,0,1,f +14620,32064b,72,2,f +14620,33320,2,2,f +14620,3622,72,2,f +14620,3622,15,6,f +14620,3622,70,4,f +14620,3626cpr0001,14,1,f +14620,3659,15,3,f +14620,3665,70,16,f +14620,3701,71,2,f +14620,3702,71,2,f +14620,3708,0,1,f +14620,3710,0,2,f +14620,3713,4,1,t +14620,3713,4,1,f +14620,3794b,25,1,f +14620,3794b,70,2,f +14620,3937,15,1,f +14620,3942c,0,2,f +14620,3943b,0,2,f +14620,4070,70,2,f +14620,4081b,72,1,f +14620,42446,72,1,f +14620,4460b,72,1,f +14620,44728,72,2,f +14620,4589,0,4,f +14620,48336,71,1,f +14620,54200,70,2,f +14620,54200,72,1,t +14620,54200,70,1,t +14620,54200,72,4,f +14620,60475a,71,2,f +14620,6134,71,1,f +14620,6141,0,5,f +14620,6141,25,1,t +14620,6141,297,1,t +14620,6141,297,4,f +14620,6141,25,2,f +14620,6141,0,1,t +14620,64644,0,2,f +14620,64647,57,2,f +14620,64647,57,1,t +14620,87087,15,5,f +14620,87580,71,2,f +14620,92950,70,1,f +14620,96826,0,1,f +14620,970x001,25,1,f +14620,973pr2104c01,25,1,f +14621,2420,15,2,f +14621,3002,15,1,f +14621,3003,15,1,f +14621,3004,15,2,f +14621,3004,0,1,f +14621,3004p51,14,1,f +14621,3005,15,3,f +14621,3021,14,1,f +14621,3022,0,1,f +14621,3023,15,3,f +14621,3024,14,2,f +14621,3039,15,1,f +14621,3040b,15,6,f +14621,3665,15,5,f +14621,4032a,14,1,f +14621,6141,47,1,t +14621,6141,47,2,f +14622,11437,4,1,f +14622,11438,4,1,f +14622,11439pat0003,33,1,f +14622,11691pr0002,0,1,f +14622,12825,1,2,f +14622,2654,72,2,f +14622,2780,0,4,f +14622,2780,0,1,t +14622,298c02,4,1,f +14622,298c02,4,1,t +14622,3002,71,3,f +14622,30043,0,3,f +14622,30136,72,1,f +14622,30173b,297,2,f +14622,30173b,0,1,t +14622,30173b,297,1,t +14622,30173b,0,1,f +14622,3020,27,2,f +14622,3020,72,1,f +14622,3021,4,2,f +14622,3022,27,2,f +14622,3022,72,1,f +14622,3023,27,6,f +14622,3034,0,3,f +14622,3039,0,1,f +14622,3049d,0,1,f +14622,32000,4,2,f +14622,32002,72,4,f +14622,32002,72,1,t +14622,32034,71,1,f +14622,32054,4,4,f +14622,32062,4,1,f +14622,32123b,14,1,t +14622,32123b,14,2,f +14622,32271,72,2,f +14622,32449,72,2,f +14622,3245c,72,2,f +14622,32523,71,2,f +14622,32524,72,1,f +14622,32530,72,2,f +14622,3460,71,1,f +14622,3622,0,2,f +14622,3623,71,2,f +14622,3623,0,2,f +14622,3626cpr0746,14,1,f +14622,3626cpr1085,0,1,f +14622,3666,0,2,f +14622,3666,27,1,f +14622,3700,0,3,f +14622,3702,4,2,f +14622,3703,0,2,f +14622,3706,0,1,f +14622,3710,72,4,f +14622,3713,71,1,t +14622,3713,71,4,f +14622,3737,0,1,f +14622,3839b,72,1,f +14622,40379,4,2,f +14622,4070,1,2,f +14622,4081b,72,2,f +14622,41747,0,1,f +14622,41748,0,1,f +14622,41769,0,2,f +14622,41770,0,2,f +14622,42446,72,1,f +14622,4274,1,1,t +14622,4274,1,3,f +14622,43093,1,10,f +14622,43722,27,1,f +14622,43723,27,1,f +14622,43887,0,1,f +14622,44728,4,2,f +14622,50304,0,1,f +14622,50305,0,1,f +14622,53585,0,1,f +14622,53992,4,1,f +14622,54200,71,1,t +14622,54200,71,1,f +14622,56145,71,2,f +14622,59443,4,5,f +14622,59900,42,4,f +14622,59900,72,2,f +14622,6005,72,2,f +14622,6005,0,2,f +14622,60470a,0,2,f +14622,60478,71,2,f +14622,60483,72,1,f +14622,61252,297,2,f +14622,61409,72,2,f +14622,6141,42,1,t +14622,6141,42,5,f +14622,62462,71,1,f +14622,63868,4,2,f +14622,64712,0,2,f +14622,64727,4,6,f +14622,6536,4,1,f +14622,6553,71,1,f +14622,6587,28,3,f +14622,6636,0,2,f +14622,85543,15,1,f +14622,85984,72,2,f +14622,87083,72,2,f +14622,88293,72,2,f +14622,92220,4,2,f +14622,92593,71,1,f +14622,92690,297,1,f +14622,92946,0,6,f +14622,93273,72,1,f +14622,970c00pr0424,0,1,f +14622,970c00pr0425,0,1,f +14622,973pr2191c01,0,1,f +14622,973pr2192c01,0,1,f +14622,98128,0,1,f +14622,98133pr0002,1,1,f +14622,98137,4,2,f +14622,99207,71,2,f +14623,2420,4,2,f +14623,2420,0,2,f +14623,2444,15,1,f +14623,3002,70,2,f +14623,3004,15,1,f +14623,3004,4,1,f +14623,3005,2,2,f +14623,3020,70,1,f +14623,3020,72,1,f +14623,3020,0,1,f +14623,3020,15,2,f +14623,3021,15,2,f +14623,3022,15,2,f +14623,3023,70,1,f +14623,3023,1,2,f +14623,3023,0,7,f +14623,3023,15,4,f +14623,3023,4,3,f +14623,3023,14,4,f +14623,3023,2,1,f +14623,3024,4,1,f +14623,3024,1,1,f +14623,3024,0,2,f +14623,3040b,0,2,f +14623,3040b,4,4,f +14623,3069b,0,1,f +14623,3069b,33,2,f +14623,3070b,72,5,f +14623,3176,4,3,f +14623,32028,72,1,f +14623,3298,15,1,f +14623,3622,4,1,f +14623,3660,15,2,f +14623,3660,4,4,f +14623,3660,70,1,f +14623,3665,70,1,f +14623,3676,72,2,f +14623,3710,4,1,f +14623,3747b,1,1,f +14623,3747b,70,1,f +14623,3794b,72,2,f +14623,3832,1,2,f +14623,4032a,1,2,f +14623,4070,14,6,f +14623,4081b,14,4,f +14623,42022,1,2,f +14623,4286,4,1,f +14623,4287,4,1,f +14623,44126,4,1,f +14623,4477,1,2,f +14623,4477,72,2,f +14623,4590,72,1,f +14623,4865a,40,1,f +14623,50950,4,4,f +14623,54200,72,6,f +14623,54200,33,3,f +14623,6091,0,2,f +14623,6091,1,4,f +14623,6091,4,2,f +14623,6091,15,2,f +14623,6141,14,15,f +14623,6141,15,6,f +14623,6215,4,1,f +14623,63965,0,2,f +14623,6541,15,6,f +14624,14226c11,0,1,f +14624,2357,72,1,f +14624,2420,484,9,f +14624,2431,71,3,f +14624,2444,71,4,f +14624,2454a,19,2,f +14624,2456,71,1,f +14624,2458,72,2,f +14624,2555,15,2,f +14624,2654,4,1,f +14624,2817,0,1,f +14624,3003,484,10,f +14624,3003,71,2,f +14624,3004,72,2,f +14624,3004,484,9,f +14624,3005,484,6,f +14624,3008,72,1,f +14624,30103,0,1,f +14624,30104,0,1,f +14624,30134,484,2,f +14624,30136,19,6,f +14624,30137,19,2,f +14624,3020,484,2,f +14624,3021,4,1,f +14624,3022,70,1,f +14624,3022,72,4,f +14624,3023,484,12,f +14624,30237a,0,1,f +14624,3024,0,1,f +14624,3028,0,1,f +14624,3031,0,2,f +14624,3034,71,1,f +14624,3036,0,1,f +14624,30383,19,4,f +14624,3039,72,4,f +14624,3040b,71,4,f +14624,3040b,484,8,f +14624,30553,0,4,f +14624,3068b,70,2,f +14624,3068bpb0091,71,1,f +14624,3068bpb0093,71,1,f +14624,3068bpr0180,71,1,f +14624,3069b,71,6,f +14624,3070b,72,1,t +14624,3070b,72,2,f +14624,32014,0,2,f +14624,32034,0,1,f +14624,32062,4,2,f +14624,32064b,19,2,f +14624,32073,71,1,f +14624,32474,0,2,f +14624,33085,19,2,f +14624,3622,72,3,f +14624,3623,71,6,f +14624,3626bpb0178,78,1,f +14624,3626bpr0377,78,1,f +14624,3626bpr0439,78,1,f +14624,3660,71,3,f +14624,3665,72,5,f +14624,3666,0,5,f +14624,3673,71,2,f +14624,3673,71,1,t +14624,3684,72,4,f +14624,3707,0,1,f +14624,3710,484,2,f +14624,3737,0,2,f +14624,3749,19,4,f +14624,3794a,19,4,f +14624,3795,0,3,f +14624,3795,72,2,f +14624,3830,71,4,f +14624,3831,71,4,f +14624,3849,0,2,f +14624,3894,0,2,f +14624,40233,0,1,f +14624,40239,71,1,f +14624,40378,70,1,f +14624,40379,19,3,f +14624,40395,70,1,f +14624,4162,71,5,f +14624,4282,19,1,f +14624,4332,70,1,f +14624,43337,19,1,f +14624,44301a,0,2,f +14624,44302a,0,2,f +14624,44359,484,1,f +14624,4460b,71,3,f +14624,4495a,1,2,f +14624,4519,71,1,f +14624,4530,28,1,f +14624,4589,71,2,f +14624,4599a,0,1,f +14624,47905,71,1,f +14624,51342pat0001,70,2,f +14624,51874pat0001,19,1,f +14624,52654,70,1,f +14624,53290,70,1,f +14624,6082,71,2,f +14624,6083,72,2,f +14624,6126a,57,4,f +14624,6132,71,1,f +14624,6231,19,2,f +14624,6538b,0,2,f +14624,6636,19,2,f +14624,970c00,0,1,f +14624,970c00,379,1,f +14624,970d05,0,1,f +14624,973pb0123c01,379,1,f +14624,973pb0127c01,72,1,f +14624,973pb0345c01,0,1,f +14624,bb188,297,1,f +14624,hornbod,70,1,f +14625,2566,0,2,f +14625,2569,0,1,f +14625,2780,0,1,t +14625,2780,0,4,f +14625,298c02,7,1,t +14625,298c05,0,1,t +14625,298c05,0,2,f +14625,3020,72,2,f +14625,3023,72,7,f +14625,30361c,0,1,f +14625,30365,72,2,f +14625,30387,71,2,f +14625,3049b,0,2,f +14625,30552,72,2,f +14625,30603,0,2,f +14625,3068b,0,1,f +14625,32013,0,2,f +14625,32054,0,1,f +14625,32062,4,4,f +14625,32523,0,2,f +14625,32529,0,2,f +14625,3700,72,2,f +14625,3709,71,1,f +14625,3941,72,2,f +14625,41532,0,2,f +14625,41862,0,2,f +14625,43093,1,2,f +14625,44302a,72,2,f +14625,4588,72,2,f +14625,4589,42,2,f +14625,4590,72,1,f +14625,47757,28,4,f +14625,48729a,72,2,f +14625,53984,134,2,f +14625,53988,134,1,f +14625,53989,134,2,f +14625,6141,42,4,f +14625,6141,42,1,t +14625,6536,71,2,f +14625,6628,0,1,f +14627,2460,4,1,f +14627,3020,14,1,f +14627,3021,4,1,f +14627,3039,47,1,f +14627,3710,14,2,f +14627,3747b,4,1,f +14627,4617b,0,1,f +14628,2432,15,3,f +14628,2569,0,2,f +14628,3004,15,3,f +14628,3006,1,1,f +14628,3007,15,2,f +14628,30086,0,1,f +14628,3009,15,2,f +14628,3010,1,2,f +14628,30180,1,1,f +14628,30359b,0,2,f +14628,3039,15,1,f +14628,3039pr0005,15,1,f +14628,3040b,36,1,f +14628,3040b,34,1,f +14628,30626,15,2,f +14628,3062b,46,1,f +14628,3062b,33,2,f +14628,30637,15,1,f +14628,30640,15,3,f +14628,30649,33,1,f +14628,30663,71,1,f +14628,3068bp30,15,1,f +14628,3068bp70,15,2,f +14628,3899,4,1,f +14628,3962b,72,1,t +14628,3962b,72,1,f +14628,40996,33,2,f +14628,4162,15,2,f +14628,41747pb017,15,1,f +14628,41748pb017,15,1,f +14628,4289,0,1,f +14628,4349,72,1,f +14628,45407,1,2,f +14628,47858c01,0,1,f +14628,48064c01,14,1,f +14628,4j008,9999,1,f +14628,4j017,9999,1,f +14628,6140,15,1,f +14629,2412b,15,1,t +14629,2412b,182,2,f +14629,2412b,320,1,f +14629,2412b,0,2,f +14629,2412b,15,7,f +14629,2431,272,2,f +14629,2540,15,8,f +14629,2555,15,2,f +14629,2569,182,2,f +14629,2577,272,2,f +14629,2654,143,1,f +14629,2654,47,14,f +14629,2780,0,17,f +14629,2780,0,1,t +14629,2817,0,1,f +14629,3001,379,2,f +14629,3002,15,2,f +14629,3003,379,3,f +14629,3004,379,4,f +14629,3008,272,2,f +14629,3009,379,4,f +14629,3010,379,1,f +14629,30106,47,1,f +14629,3020,320,2,f +14629,3020,379,4,f +14629,3020,272,2,f +14629,3020,0,4,f +14629,3020,15,5,f +14629,30214,143,1,f +14629,3023,272,8,f +14629,3030,15,4,f +14629,3030,379,4,f +14629,30357,379,2,f +14629,30359b,272,4,f +14629,30359b,182,4,f +14629,3038,272,8,f +14629,3039,320,1,f +14629,3039,272,2,f +14629,3039,379,4,f +14629,30397,0,4,f +14629,3040b,379,2,f +14629,3040b,182,2,f +14629,3068b,15,2,f +14629,3069b,33,1,f +14629,3069b,272,4,f +14629,32000,15,2,f +14629,32013,0,4,f +14629,32064b,0,3,f +14629,32064b,272,6,f +14629,32074c01,15,1,f +14629,32316,15,2,f +14629,32506,0,2,f +14629,32523,0,2,f +14629,3475b,272,2,f +14629,3623,320,1,f +14629,3623,379,2,f +14629,3626bpb0091,15,1,f +14629,3626bpb0232,14,1,f +14629,3660,272,2,f +14629,3701,15,1,f +14629,3701,0,4,f +14629,3703,272,2,f +14629,3747b,0,1,f +14629,3795,379,2,f +14629,3832,0,3,f +14629,3839b,320,1,f +14629,3894,272,2,f +14629,3937,71,1,f +14629,4079,15,1,f +14629,41769,15,2,f +14629,41770,15,2,f +14629,42022,379,2,f +14629,42023,272,10,f +14629,42060,379,1,f +14629,42061,379,1,f +14629,4274,71,2,f +14629,4274,71,1,t +14629,4287,379,2,f +14629,43093,1,14,f +14629,43712,379,2,f +14629,43712,272,2,f +14629,43713,272,2,f +14629,43720,379,2,f +14629,43721,379,2,f +14629,44036,320,1,f +14629,44126,272,2,f +14629,44676,272,4,f +14629,46303,0,1,f +14629,47455,0,10,f +14629,47456,272,2,f +14629,47843,379,1,f +14629,47844pb02,47,1,f +14629,47846,272,1,f +14629,48169,379,10,f +14629,48170,272,2,f +14629,48171,379,8,f +14629,4871,272,2,f +14629,50304,379,1,f +14629,50305,379,1,f +14629,6134,0,1,f +14629,6141,143,1,f +14629,6141,143,1,t +14629,76110c03,0,1,f +14629,970c00pb038,0,1,f +14629,970d04,320,1,f +14629,973pb0360c01,0,1,f +14629,973pb0397c01,0,1,f +14630,2346,0,2,f +14630,2357,0,2,f +14630,2412a,0,1,f +14630,2432,15,1,f +14630,2444,0,4,f +14630,2446,0,1,f +14630,2447,33,1,f +14630,2452,15,1,f +14630,2467,15,2,f +14630,2468,33,2,f +14630,2486,15,2,f +14630,298c02,0,1,f +14630,298c03,1,1,f +14630,298c04,15,1,f +14630,3020,15,1,f +14630,3021,15,1,f +14630,3022,0,1,f +14630,3022,15,1,f +14630,3023,0,3,f +14630,3023,15,6,f +14630,3033,15,1,f +14630,3069bp25,1,1,f +14630,3460,15,1,f +14630,3482,15,4,f +14630,3626apr0001,14,1,f +14630,3634,0,2,f +14630,3639,0,1,f +14630,3640,0,1,f +14630,3749,7,4,f +14630,3794a,0,1,f +14630,3794a,15,4,f +14630,3795,15,1,f +14630,3838,0,1,f +14630,3839b,15,1,f +14630,3962a,0,1,f +14630,4070,1,1,f +14630,4070,15,8,f +14630,4085b,15,2,f +14630,4276b,15,1,f +14630,4349,15,4,f +14630,4589,0,2,f +14630,4589,36,2,f +14630,4590,15,1,f +14630,4590,0,1,f +14630,4598,15,2,f +14630,4599a,1,2,f +14630,4733,1,1,f +14630,4735,0,1,f +14630,4740,15,4,f +14630,4859,15,1,f +14630,6141,36,5,f +14630,6141,1,1,f +14630,970c00,0,1,f +14630,973p6bc02,15,1,f +14632,2412b,14,3,f +14632,2421,0,1,f +14632,2479,0,1,f +14632,2524,15,1,f +14632,2542,70,1,f +14632,2584,0,1,f +14632,2585,71,1,f +14632,2654,0,4,f +14632,298c02,4,2,f +14632,3001,14,1,f +14632,30089,0,1,f +14632,30150,70,1,f +14632,30192,72,1,f +14632,3020,14,2,f +14632,3020,4,1,f +14632,3022,72,2,f +14632,3023,4,4,f +14632,30248,0,1,f +14632,3032,72,1,f +14632,3036,1,1,f +14632,30367c,14,4,f +14632,3037,14,1,f +14632,30592,71,1,f +14632,3069b,46,1,f +14632,3176,4,1,f +14632,32064b,14,5,f +14632,3460,72,2,f +14632,3475b,72,2,f +14632,3660,1,4,f +14632,3710,14,2,f +14632,3794a,71,1,f +14632,3941,14,4,f +14632,3957a,71,1,f +14632,3959,72,1,f +14632,3962b,0,1,f +14632,4032a,1,4,f +14632,41770,4,1,f +14632,41883,40,1,f +14632,4286,14,2,f +14632,4345b,4,1,f +14632,4346,4,1,f +14632,43719,14,1,f +14632,43936,0,1,f +14632,44661,14,1,f +14632,44728,72,1,f +14632,4488,0,1,f +14632,4495b,4,1,f +14632,4519,71,4,f +14632,4589,4,1,f +14632,47457,71,1,f +14632,48336,4,2,f +14632,4855,14,1,f +14632,54200,36,2,f +14632,54200,34,2,f +14632,56823c50,0,2,f +14632,60169,72,2,f +14632,60470a,0,2,f +14632,60475a,0,2,f +14632,60479,71,3,f +14632,6141,42,1,f +14632,6191,14,2,f +14632,6587,72,1,f +14633,12887pr0001,15,1,f +14633,2561,70,1,f +14633,3626bpb0920,14,1,f +14633,88646,0,1,f +14633,970c00,15,1,f +14633,973pr2321c01,272,1,f +14634,14210,2,1,f +14634,14226c21,0,1,f +14634,2343,14,1,f +14634,2357,0,2,f +14634,2357,4,2,f +14634,2456,4,1,f +14634,2456,7,2,f +14634,2465,7,2,f +14634,2489,6,1,f +14634,2530,8,1,f +14634,2538b,0,1,f +14634,2546p01,4,1,f +14634,2550c01,6,1,f +14634,2621,0,1,f +14634,2622,0,2,f +14634,2623,0,1,f +14634,2819,6,1,f +14634,298c02,4,2,f +14634,30000,8,1,f +14634,3001,0,2,f +14634,3002,7,3,f +14634,3003,0,1,f +14634,3004,7,3,f +14634,3004,1,1,f +14634,3005,0,2,f +14634,3005,7,2,f +14634,30055,6,2,f +14634,3008,0,3,f +14634,3009,4,1,f +14634,3010,7,1,f +14634,3010,4,4,f +14634,30115,4,1,f +14634,30115,0,1,f +14634,30127,4,1,f +14634,30127,1,1,f +14634,30132,8,2,f +14634,30133,1,1,f +14634,30135,0,1,f +14634,30136,6,8,f +14634,30137,6,5,f +14634,30141,8,2,f +14634,30145,6,1,f +14634,30148,0,1,f +14634,30151a,14,1,f +14634,30152pat0001,0,1,f +14634,30153,36,1,f +14634,30154,8,1,f +14634,30158,6,1,f +14634,30162,8,1,f +14634,30167,6,1,f +14634,30167,0,1,f +14634,30169,0,1,f +14634,30172,15,1,f +14634,30176,2,1,f +14634,3020,4,1,f +14634,3022,1,1,f +14634,3022,0,1,f +14634,3023,1,1,f +14634,3023,15,1,f +14634,3023,7,4,f +14634,30236,7,7,f +14634,30236,4,2,f +14634,30237a,8,2,f +14634,30237a,14,2,f +14634,30238,0,2,f +14634,30239,2,2,f +14634,3024,0,2,f +14634,30240,8,1,f +14634,30276px1,14,1,f +14634,3030,15,2,f +14634,3032,0,1,f +14634,3033,0,3,f +14634,30338,6,1,f +14634,30339,2,1,f +14634,3034,7,1,f +14634,3037,7,2,f +14634,3039,7,7,f +14634,3039,0,2,f +14634,3039,15,4,f +14634,3040b,14,6,f +14634,3040b,7,8,f +14634,3040b,0,2,f +14634,3045,7,2,f +14634,3048c,7,2,f +14634,3062b,34,1,f +14634,3062b,36,1,f +14634,3062b,33,2,f +14634,3062b,15,4,f +14634,3062b,14,2,f +14634,3068b,4,2,f +14634,3068bpx24,19,1,f +14634,3069b,7,2,f +14634,3069b,4,2,f +14634,3069bp03,7,1,f +14634,3069bpa0,19,1,f +14634,3069bpx30,15,1,f +14634,3245b,15,12,f +14634,3298,4,1,f +14634,3334,2,1,f +14634,3460,0,2,f +14634,3460,7,1,f +14634,3622,7,2,f +14634,3626bpa3,14,1,f +14634,3626bpa4,14,1,f +14634,3626bpab,14,1,f +14634,3626bpac,14,1,f +14634,3626bpr0895,15,2,f +14634,3626bpx93,14,1,f +14634,3629,15,1,f +14634,3665,7,2,f +14634,3666,0,2,f +14634,3684,7,3,f +14634,3700,14,2,f +14634,3700,15,1,f +14634,3710,0,3,f +14634,3749,7,1,f +14634,3794a,1,2,f +14634,3841,8,1,f +14634,3848,6,2,f +14634,3899,4,1,f +14634,3941,0,2,f +14634,4006,0,1,f +14634,4032a,4,2,f +14634,4032a,0,1,f +14634,4032a,15,3,f +14634,4032a,2,1,f +14634,4070,14,6,f +14634,4070,4,4,f +14634,4162,7,2,f +14634,4175,7,2,f +14634,4286,0,2,f +14634,4460a,8,4,f +14634,4495b,4,1,f +14634,4497,0,1,f +14634,4522,0,1,f +14634,4589,4,2,f +14634,4590,4,1,f +14634,4599a,1,1,f +14634,4623,1,2,f +14634,4623,7,1,f +14634,4865a,1,1,f +14634,4865a,15,2,f +14634,4865a,47,2,f +14634,60169,7,2,f +14634,6019,1,1,f +14634,6064,2,1,f +14634,6067,0,1,f +14634,6083,8,1,f +14634,6111,7,1,f +14634,6111,0,2,f +14634,6111,4,1,f +14634,6126a,57,3,f +14634,6141,15,1,t +14634,6141,47,1,t +14634,6141,34,2,f +14634,6141,34,1,t +14634,6141,15,8,f +14634,6141,47,1,f +14634,6141,14,2,f +14634,6141,14,1,t +14634,6212,7,1,f +14634,6260,15,1,f +14634,6265,15,2,f +14634,6266,15,2,f +14634,970c00,7,1,f +14634,970c00,6,2,f +14634,970c00,2,1,f +14634,970c00,0,1,f +14634,970c03pb02,14,1,f +14634,973pa1c01,15,1,f +14634,973pa4c01,15,1,f +14634,973paac01,8,1,f +14634,973pabc01,14,1,f +14634,973pacc01,14,1,f +14634,973pb0391c01,19,1,f +14634,x1255px1,4,1,f +14634,x276,334,1,f +14635,122c01,7,2,f +14635,3020,7,1,f +14635,3021,7,2,f +14635,3022,7,1,f +14635,3023,7,2,f +14635,3024,7,1,f +14635,3626apr0001,14,1,f +14635,3641,0,4,f +14635,3787,7,2,f +14635,3794a,7,1,f +14635,3795,7,1,f +14635,3829c01,7,1,f +14635,3838,4,1,f +14635,3838,7,1,f +14635,3842a,4,1,f +14635,3937,7,1,f +14635,3938,7,1,f +14635,3956,7,1,f +14635,3959,7,1,f +14635,3960,7,1,f +14635,970c00,4,1,f +14635,973p90c02,4,1,f +14636,2335pb008,15,1,f +14636,2376,0,1,f +14636,3003,4,2,f +14636,30165,70,6,f +14636,30219,0,1,f +14636,30239,2,1,f +14636,30275,0,1,f +14636,3941,4,1,f +14636,3941,46,1,f +14636,4095,0,1,f +14636,4151,72,1,f +14636,43887,383,1,f +14636,4j013,9999,1,f +14636,6192,70,2,f +14636,6232,71,2,f +14637,3002a,47,15,f +14637,3002a,15,15,f +14637,3002a,1,15,f +14637,3002a,14,15,f +14637,3002a,0,15,f +14637,3002a,4,15,f +14638,2342,0,1,f +14638,2357,8,2,f +14638,2399,1,1,f +14638,2412b,42,7,f +14638,2412b,0,4,f +14638,2431,1,2,f +14638,2432,1,5,f +14638,2433,0,2,f +14638,2434,0,1,f +14638,2445,1,1,f +14638,2446,47,1,f +14638,2456,1,3,f +14638,2465,8,2,f +14638,2466,42,1,f +14638,2507px1,34,1,f +14638,2515,1,2,f +14638,2555,1,5,f +14638,2569,42,2,f +14638,2582,34,2,f +14638,2593,1,4,f +14638,2743,0,2,f +14638,2909c03,0,2,f +14638,298c02,0,2,f +14638,3001,1,1,f +14638,3001,8,4,f +14638,3003,8,2,f +14638,3003,1,1,f +14638,3003,0,1,f +14638,30035,1,1,f +14638,3004,8,1,f +14638,3004,1,2,f +14638,3009,0,2,f +14638,3010,8,4,f +14638,30159,8,1,f +14638,3020,8,3,f +14638,3020,1,4,f +14638,30208,34,2,f +14638,30209,1,2,f +14638,30211,8,4,f +14638,30212,8,2,f +14638,30213,42,2,f +14638,30214,34,1,f +14638,3022,1,3,f +14638,3022,0,1,f +14638,3023,0,2,f +14638,3023,1,6,f +14638,3023,15,2,f +14638,3023,8,3,f +14638,3024,1,8,f +14638,3027,0,1,f +14638,3032,0,1,f +14638,3038,1,2,f +14638,3039,0,1,f +14638,3039,1,5,f +14638,3039px8,8,1,f +14638,3040b,1,2,f +14638,3040p58,8,1,f +14638,3068b,0,2,f +14638,3068bpx7,0,2,f +14638,3069b,1,3,f +14638,3069bp21,0,2,f +14638,3069bp53,0,1,f +14638,3070b,0,2,f +14638,3298pb005,8,1,f +14638,3475b,8,2,f +14638,3622,1,4,f +14638,3626bpb0034,0,1,f +14638,3626bpb0107,8,1,f +14638,3660,8,1,f +14638,3665,1,2,f +14638,3665,8,2,f +14638,3700,0,2,f +14638,3749,7,2,f +14638,3838,0,1,f +14638,3937,8,7,f +14638,3938,0,7,f +14638,3959,8,4,f +14638,4032a,0,1,f +14638,4070,1,3,f +14638,4286,1,4,f +14638,4315,1,1,f +14638,4349,0,6,f +14638,4531,0,2,f +14638,4589,42,7,f +14638,4590,8,5,f +14638,4596,0,1,f +14638,4598,8,1,f +14638,4625,0,2,f +14638,4746,0,1,f +14638,6019,1,2,f +14638,6058,0,1,f +14638,6141,42,1,t +14638,6141,42,8,f +14638,6232,1,6,f +14638,6249,8,4,f +14638,6919,42,3,f +14638,6919stk01,9999,1,t +14638,73092,0,1,f +14638,73590c02a,0,2,f +14638,970c11pb04,0,1,f +14638,970x027,0,1,f +14638,973pb0082c01,8,1,f +14638,973pb0198c01,0,1,f +14639,3228b,7,16,f +14639,767,8,16,f +14644,10052,0,1,f +14644,10187,179,1,f +14644,10197,72,2,f +14644,11090,0,1,f +14644,11211,15,2,f +14644,11212,72,4,f +14644,11214,72,4,f +14644,11291,15,2,f +14644,11476,0,1,f +14644,11476,15,5,f +14644,11477,15,4,f +14644,11477,0,4,f +14644,11477,71,2,f +14644,12885,0,1,f +14644,13547,0,4,f +14644,13731,0,4,f +14644,14418,71,2,f +14644,14719,0,4,f +14644,14769pr1023,297,2,f +14644,14769pr1024,297,2,f +14644,14769pr1025,297,1,f +14644,14769pr1026,297,1,f +14644,15038,0,1,f +14644,15068,308,3,f +14644,15068,71,1,f +14644,15100,0,6,f +14644,15208,15,2,f +14644,15303,182,2,f +14644,15303,36,4,f +14644,15303,33,2,f +14644,15362,297,4,f +14644,15400,72,4,f +14644,15535,28,4,f +14644,15573,297,16,f +14644,15573,4,1,f +14644,15573,28,2,f +14644,15712,297,1,f +14644,15712,72,4,f +14644,15712,4,2,f +14644,15712,0,2,f +14644,15976,179,2,f +14644,18587,71,2,f +14644,18588,72,2,f +14644,18649,0,1,f +14644,18671,72,2,f +14644,18674,72,2,f +14644,18677,71,2,f +14644,18950,42,1,f +14644,19044pr01,19,1,f +14644,19857pat0001,320,1,f +14644,19857pat0001,15,1,f +14644,19857pat0001,1,1,f +14644,19857pat0001,0,1,f +14644,19859pat0011,47,1,f +14644,20612,42,1,f +14644,2357,71,2,f +14644,23983,308,3,f +14644,23983,179,1,f +14644,2412b,297,5,f +14644,2412b,179,10,f +14644,2419,0,8,f +14644,2420,28,2,f +14644,2420,72,2,f +14644,24201,71,4,f +14644,24201,0,6,f +14644,2431,19,2,f +14644,2431,15,6,f +14644,24375,0,38,f +14644,2445,15,1,f +14644,2445,72,3,f +14644,24458,179,1,f +14644,2450,28,4,f +14644,2476a,28,2,f +14644,25375,0,1,f +14644,2570,179,2,f +14644,2653,0,2,f +14644,2654,72,2,f +14644,2780,0,42,f +14644,2877,71,3,f +14644,2877,72,2,f +14644,298c02,71,2,f +14644,3001,4,1,f +14644,3002,19,1,f +14644,30031,72,3,f +14644,3004,1,2,f +14644,3010,15,1,f +14644,3010,71,4,f +14644,30153,42,2,f +14644,30173b,297,6,f +14644,3020,71,6,f +14644,3020,19,2,f +14644,3020,28,3,f +14644,3020,0,2,f +14644,3020,4,1,f +14644,3020,72,2,f +14644,3020,15,1,f +14644,3021,15,3,f +14644,3021,4,2,f +14644,3021,72,1,f +14644,3021,71,3,f +14644,3021,0,6,f +14644,3021,1,2,f +14644,3021,85,1,f +14644,3021,28,1,f +14644,3022,72,2,f +14644,3022,71,5,f +14644,3022,2,1,f +14644,3022,4,2,f +14644,3022,28,3,f +14644,3022,0,2,f +14644,3022,326,1,f +14644,3022,70,2,f +14644,3023,36,4,f +14644,3023,46,5,f +14644,3023,0,8,f +14644,3023,85,3,f +14644,3023,28,6,f +14644,3023,15,5,f +14644,3023,72,4,f +14644,3024,1,2,f +14644,30248,15,1,f +14644,3031,15,2,f +14644,3031,72,2,f +14644,3034,4,1,f +14644,3035,72,1,f +14644,3036,15,1,f +14644,3037,1,1,f +14644,3038,0,2,f +14644,3039,19,1,f +14644,3040b,19,2,f +14644,3040b,28,6,f +14644,30414,19,2,f +14644,30541,0,2,f +14644,30553,72,2,f +14644,30602,0,2,f +14644,3062b,71,4,f +14644,3068b,72,1,f +14644,3068b,73,1,f +14644,3069b,0,1,f +14644,3069b,14,2,f +14644,3069b,71,4,f +14644,3176,72,2,f +14644,3176,0,2,f +14644,32000,15,2,f +14644,32013,0,4,f +14644,32018,72,6,f +14644,32028,4,2,f +14644,32039,71,2,f +14644,32054,71,8,f +14644,32059,72,4,f +14644,32059,0,2,f +14644,32062,0,2,f +14644,32064a,0,2,f +14644,32123b,14,14,f +14644,32270,0,2,f +14644,32291,71,4,f +14644,32316,0,4,f +14644,32523,72,2,f +14644,32524,0,2,f +14644,32531,0,2,f +14644,3298,28,1,f +14644,3460,71,2,f +14644,3622,19,2,f +14644,3623,71,8,f +14644,3623,0,2,f +14644,3626cpr1365,14,1,f +14644,3626cpr1570,179,1,f +14644,3626cpr1573,14,1,f +14644,3626cpr1872,14,1,f +14644,3666,71,2,f +14644,3666,0,6,f +14644,3666,15,4,f +14644,3673,71,2,f +14644,3700,72,2,f +14644,3700,19,2,f +14644,3702,71,2,f +14644,3703,0,2,f +14644,3705,4,3,f +14644,3705,0,4,f +14644,3706,0,1,f +14644,3710,15,8,f +14644,3710,0,5,f +14644,3710,28,1,f +14644,3713,4,4,f +14644,3747b,15,7,f +14644,3795,71,2,f +14644,3795,28,1,f +14644,3795,0,5,f +14644,3937,15,2,f +14644,3937,71,1,f +14644,3938,15,1,f +14644,3941,15,4,f +14644,3961,15,2,f +14644,4032a,85,2,f +14644,4032a,19,4,f +14644,40490,0,4,f +14644,4081b,15,2,f +14644,4150,72,4,f +14644,41539,72,1,f +14644,4162,72,5,f +14644,4162,15,4,f +14644,41678,72,2,f +14644,41897,0,2,f +14644,42023,15,2,f +14644,42446,72,1,f +14644,4274,71,20,f +14644,4274,1,18,f +14644,4286,0,2,f +14644,4287,0,2,f +14644,4287,15,2,f +14644,43093,1,4,f +14644,43712,15,2,f +14644,43857,1,2,f +14644,43857,4,4,f +14644,44294,71,6,f +14644,44301a,0,4,f +14644,44302a,72,4,f +14644,44375a,0,4,f +14644,44375b,15,2,f +14644,44567a,72,2,f +14644,44568,15,1,f +14644,44661,0,1,f +14644,44728,0,1,f +14644,4477,72,2,f +14644,4519,71,2,f +14644,45301,0,1,f +14644,4590,71,4,f +14644,46413,40,1,f +14644,4740,0,3,f +14644,47455,0,2,f +14644,47753,0,1,f +14644,48169,72,2,f +14644,48171,72,2,f +14644,48336,0,1,f +14644,48336,297,1,f +14644,4871,72,1,f +14644,49668,15,4,f +14644,49668,4,2,f +14644,51739,28,4,f +14644,51739,15,3,f +14644,53451,15,2,f +14644,53451,158,3,f +14644,53451,179,6,f +14644,54200,28,2,f +14644,54200,41,4,f +14644,54200,15,5,f +14644,54383,0,1,f +14644,54384,0,1,f +14644,56908,0,2,f +14644,57519,0,2,f +14644,57520,0,2,f +14644,57909b,72,2,f +14644,59426,72,2,f +14644,59443,71,4,f +14644,59443,14,2,f +14644,59900,297,6,f +14644,60219,72,1,f +14644,60470a,71,1,f +14644,60471,0,1,f +14644,60471,71,1,f +14644,60474,71,4,f +14644,60478,71,2,f +14644,60479,0,4,f +14644,60752,28,1,f +14644,60897,15,4,f +14644,60897,71,2,f +14644,6091,0,6,f +14644,61072,179,4,f +14644,6117,72,3,f +14644,6134,0,2,f +14644,61409,71,2,f +14644,61409,0,4,f +14644,61409,15,2,f +14644,6141,36,4,f +14644,6141,85,2,f +14644,6141,297,30,f +14644,61678,15,16,f +14644,6179,15,1,f +14644,6232,19,8,f +14644,62462,179,4,f +14644,63864,0,6,f +14644,63869,0,2,f +14644,64567,0,3,f +14644,64799,71,2,f +14644,64867,28,1,f +14644,6558,1,6,f +14644,6587,28,2,f +14644,6628,0,2,f +14644,6636,15,2,f +14644,6636,19,2,f +14644,6636,0,4,f +14644,72454,15,1,f +14644,74261,0,2,f +14644,78c02,179,4,f +14644,85861,71,6,f +14644,85943,72,2,f +14644,85959pat0003,36,2,f +14644,85984,1,1,f +14644,85984,28,2,f +14644,85984,0,2,f +14644,85984,4,1,f +14644,85984,19,1,f +14644,85984pr0002,72,1,f +14644,87079,71,3,f +14644,87079,15,1,f +14644,87079,4,2,f +14644,87083,72,2,f +14644,87087,71,2,f +14644,87580,28,1,f +14644,87994,0,1,f +14644,88072,0,2,f +14644,88323,308,38,f +14644,92279,15,2,f +14644,92280,15,4,f +14644,92280,0,4,f +14644,92338,42,1,f +14644,92593,71,2,f +14644,92912,0,1,f +14644,93058b,297,2,f +14644,93273,15,1,f +14644,93273,0,1,f +14644,96874,25,1,t +14644,970c00pr0770,0,1,f +14644,970c00pr0802,85,1,f +14644,973pr2861c01,320,1,f +14644,98100,15,4,f +14644,98135,297,2,f +14644,98138,33,8,f +14644,98139,297,4,f +14644,98282,15,2,f +14644,98302,0,2,f +14644,98313,0,2,f +14644,98341,297,4,f +14644,98834,0,2,f +14644,99207,4,1,f +14644,99780,72,3,f +14644,99781,15,1,f +14644,99781,0,2,f +14645,24076pr0001,73,1,f +14645,3626cpr1836,14,1,f +14645,88646,0,1,f +14645,970c00,73,1,f +14645,973pr3197c01,73,1,f +14646,3001,15,1,f +14646,3003,0,1,f +14646,3003pe2,15,1,f +14646,3004,15,2,f +14646,3004,0,2,f +14649,3009,25,6,f +14649,3010,25,3,f +14649,3020,25,2,f +14649,3039,25,6,f +14649,3660,19,4,f +14649,3665,25,4,f +14649,3666,25,6,f +14649,3710,25,4,f +14649,3795,25,5,f +14649,54200,25,1,t +14649,54200,25,8,f +14649,59900,2,1,f +14649,60474,320,1,f +14649,64647,288,1,t +14649,64647,288,1,f +14649,87580,2,1,f +14650,14226c41,0,1,f +14650,2357,19,4,f +14650,2412b,1,3,f +14650,2413,0,3,f +14650,2417,2,1,f +14650,2419,1,3,f +14650,2419,0,1,f +14650,2420,19,6,f +14650,2423,2,6,f +14650,2431,0,4,f +14650,2432,1,3,f +14650,2432,0,1,f +14650,2436,2,2,f +14650,2445,0,1,f +14650,2454a,19,4,f +14650,2456,8,1,f +14650,2458,7,4,f +14650,2458,4,2,f +14650,2460,2,1,f +14650,2465,7,2,f +14650,2489,6,3,f +14650,2526,15,1,f +14650,2540,7,5,f +14650,2542,4,2,f +14650,2551,6,1,f +14650,2654,0,1,f +14650,2695,0,2,f +14650,2817,14,1,f +14650,2921,4,1,f +14650,298c02,14,3,f +14650,3001,7,12,f +14650,3001,0,1,f +14650,3002,8,4,f +14650,3003,6,51,f +14650,3003,19,12,f +14650,3004,15,2,f +14650,3004,7,10,f +14650,30041,0,1,f +14650,30042,7,1,f +14650,30043,0,2,f +14650,30055,6,1,f +14650,3007,19,3,f +14650,30072,2,1,f +14650,3008,0,3,f +14650,3009,7,3,f +14650,3010,7,2,f +14650,30104,8,3,f +14650,30115,4,1,f +14650,30132,8,3,f +14650,30135,6,1,f +14650,30136,6,6,f +14650,30137,6,3,f +14650,30141,8,2,f +14650,30147,8,1,f +14650,30150,6,2,f +14650,30152pat0001,0,1,f +14650,30153,42,1,f +14650,30154,0,1,f +14650,30155,8,5,f +14650,30157,8,6,f +14650,30158,6,1,f +14650,30162,0,1,f +14650,30165,8,1,f +14650,30167,6,2,f +14650,30169,0,1,f +14650,30172,15,3,f +14650,30180,6,3,f +14650,3020,0,2,f +14650,3020,4,7,f +14650,3021,2,2,f +14650,3022,1,5,f +14650,3022,4,6,f +14650,30229,8,2,f +14650,3023,2,2,f +14650,3023,7,1,f +14650,3023,19,12,f +14650,3023,14,2,f +14650,30236,4,1,f +14650,30237a,1,4,f +14650,30237a,8,4,f +14650,30238,7,1,f +14650,30238,0,1,f +14650,3029,0,2,f +14650,3029,6,1,f +14650,3034,6,4,f +14650,3034,1,2,f +14650,30364,8,1,f +14650,30365,7,4,f +14650,30388,7,2,f +14650,3039,0,4,f +14650,30395,8,1,f +14650,30396,15,1,f +14650,30397,7,4,f +14650,3040b,2,4,f +14650,3040b,7,8,f +14650,30457c01,2,1,f +14650,30464,2,1,f +14650,30478,484,1,f +14650,3062b,7,11,f +14650,3062b,0,10,f +14650,3068b,14,1,f +14650,3069b,6,2,f +14650,3069bpa1,0,1,f +14650,3069bpa3,15,1,f +14650,3069bpr0101,7,2,f +14650,3070bpr0007,7,1,t +14650,3070bpr0007,7,1,f +14650,3139,0,4,f +14650,3176,7,2,f +14650,3307,0,5,f +14650,3308,7,2,f +14650,3403c01,0,1,f +14650,3455,19,6,f +14650,3460,6,11,f +14650,3483,0,5,f +14650,3622,0,2,f +14650,3623,1,6,f +14650,3626bpa1,14,1,f +14650,3626bpa3,14,1,f +14650,3626bpa7,14,1,f +14650,3626bpb0019,14,1,f +14650,3626bpr0098,14,1,f +14650,3626bpx134,14,1,f +14650,3660,7,1,f +14650,3665,0,16,f +14650,3666,15,2,f +14650,3666,0,1,f +14650,3666,14,1,f +14650,3673,7,2,f +14650,3679,7,1,f +14650,3680,0,1,f +14650,3684,6,1,f +14650,3700,0,2,f +14650,3701,15,2,f +14650,3710,7,6,f +14650,3710,14,2,f +14650,3710,15,2,f +14650,3795,0,1,f +14650,3795,1,1,f +14650,3795,7,1,f +14650,3829c01,1,2,f +14650,3829c01,7,1,f +14650,3837,8,1,f +14650,3841,8,1,f +14650,3849,15,2,f +14650,3899,4,1,f +14650,3899,1,1,f +14650,3937,15,6,f +14650,3937,14,1,f +14650,3938,0,4,f +14650,3958,7,1,f +14650,3960,0,1,f +14650,4006,0,1,f +14650,4032a,6,1,f +14650,4032a,0,1,f +14650,4070,7,9,f +14650,4079,7,4,f +14650,4085c,15,2,f +14650,4150,4,1,f +14650,4201,2,1,f +14650,4204,2,1,f +14650,4213,1,1,f +14650,4213,15,1,f +14650,4214,0,1,f +14650,4215b,0,1,f +14650,4282,7,1,f +14650,4287,6,4,f +14650,4315,7,1,f +14650,4315,0,1,f +14650,4488,0,1,f +14650,4515px2,8,3,f +14650,4522,0,1,f +14650,4529,0,1,f +14650,4589,14,2,f +14650,4598,0,2,f +14650,4599a,0,5,f +14650,4599a,15,2,f +14650,4617b,0,2,f +14650,4623,4,1,f +14650,4623,15,1,f +14650,4624,7,5,f +14650,4733,0,2,f +14650,4854,1,2,f +14650,4855,1,2,f +14650,4857,15,1,f +14650,4859,7,2,f +14650,4865a,7,3,f +14650,4865a,47,1,f +14650,4870,7,2,f +14650,4871,1,1,f +14650,6019,7,2,f +14650,6020,6,1,f +14650,6069,7,2,f +14650,6081,7,2,f +14650,6083,8,1,f +14650,6091,1,4,f +14650,6091,7,3,f +14650,6108,0,2,f +14650,6111,8,2,f +14650,6112,7,2,f +14650,6126a,57,1,f +14650,6134,4,3,f +14650,6141,36,1,t +14650,6141,7,20,f +14650,6141,47,2,f +14650,6141,36,2,f +14650,6141,47,1,t +14650,6141,1,2,f +14650,6141,1,1,t +14650,6141,7,1,t +14650,6161,2,1,f +14650,6587,8,1,f +14650,6636,7,5,f +14650,71155,0,2,f +14650,76385,8,4,f +14650,970c00,2,1,f +14650,970c00,6,1,f +14650,970c00,7,2,f +14650,970c00,4,1,f +14650,970c00,0,1,f +14650,973pa1c01,15,1,f +14650,973pa7c01,19,1,f +14650,973pa8c01,2,1,f +14650,973pb0043c01,8,1,f +14650,973pb0391c01,19,1,f +14650,973px190c01,6,1,f +14650,stegc02,6,1,f +14652,11816pr0003,78,1,f +14652,2339,70,8,f +14652,2357,70,1,f +14652,2417,2,3,f +14652,2417,10,4,f +14652,2420,2,4,f +14652,2423,2,2,f +14652,2431,19,2,f +14652,2540,19,1,f +14652,3004,15,6,f +14652,3004,29,3,f +14652,3004,84,15,f +14652,3005pr0006,73,1,f +14652,3010,27,2,f +14652,30153,46,1,f +14652,30153,36,1,f +14652,3021,2,1,f +14652,3022,19,8,f +14652,3023,30,5,f +14652,3023,4,6,f +14652,3031,27,1,f +14652,3031,19,1,f +14652,3032,2,1,f +14652,3033,19,1,f +14652,3037,4,2,f +14652,3039,2,2,f +14652,3040b,29,1,f +14652,3041,4,1,f +14652,3062b,15,2,f +14652,3062b,70,6,f +14652,3069b,29,2,f +14652,32073,71,1,f +14652,3622,70,2,f +14652,3659,15,1,f +14652,3666,19,1,f +14652,3678b,70,4,f +14652,3710,4,2,f +14652,3710,70,5,f +14652,3741,2,1,t +14652,3741,2,2,f +14652,3742,5,3,f +14652,3742,5,1,t +14652,3742,14,1,t +14652,3742,14,3,f +14652,3941,70,4,f +14652,4162,19,1,f +14652,4286,70,9,f +14652,43888,70,7,f +14652,4623,19,4,f +14652,4865b,29,3,f +14652,54200,15,1,f +14652,54200,15,1,t +14652,54200,29,1,t +14652,54200,29,3,f +14652,6020,73,1,f +14652,60478,14,1,f +14652,6141,4,6,f +14652,6141,4,1,t +14652,6231,212,6,f +14652,6256,29,1,f +14652,6266,0,1,f +14652,63868,14,1,f +14652,64644,297,1,f +14652,64648,179,1,f +14652,64951,73,1,f +14652,6636,30,6,f +14652,87087,19,1,f +14652,87087,29,8,f +14652,87580,73,2,f +14652,91405,10,1,f +14652,92256,70,1,f +14652,92456pr0004c01,78,1,f +14652,92818pr0007c01,272,1,f +14652,93089pr0001a,71,1,f +14652,95827,4,4,f +14652,95828,4,4,f +14652,95829,4,4,f +14652,95831,4,4,f +14652,95832,4,4,f +14652,98388pr0001,191,1,f +14653,2419,14,1,f +14653,2435,2,1,f +14653,2445,1,2,f +14653,2456,4,2,f +14653,2456,1,2,f +14653,2456,14,2,f +14653,2460,2,1,f +14653,2479,7,1,f +14653,2508,0,1,f +14653,2569,42,2,f +14653,30000,8,2,f +14653,3001,15,6,f +14653,3001,0,6,f +14653,3001,2,10,f +14653,3001,6,4,f +14653,3001,4,12,f +14653,3001,14,12,f +14653,3001,1,12,f +14653,3001pr1,14,1,f +14653,3002,0,4,f +14653,3002,1,6,f +14653,3002,14,6,f +14653,3002,4,6,f +14653,3002,15,4,f +14653,3002,2,4,f +14653,3003,2,14,f +14653,3003,14,20,f +14653,3003,6,6,f +14653,3003,15,12,f +14653,3003,0,14,f +14653,3003,1,20,f +14653,3003,4,20,f +14653,3003pe2,4,2,f +14653,3003pe2,14,2,f +14653,3004,4,18,f +14653,3004,6,10,f +14653,3004,2,8,f +14653,3004,0,8,f +14653,3004,7,6,f +14653,3004,14,18,f +14653,3004,15,12,f +14653,3004,1,10,f +14653,3005pe1,2,2,f +14653,3005pe1,15,2,f +14653,3007,4,2,f +14653,30076,4,1,f +14653,3008,1,2,f +14653,3008,14,2,f +14653,3008,4,2,f +14653,3009,4,4,f +14653,3009,0,2,f +14653,3009,2,2,f +14653,3009,6,2,f +14653,3009,1,4,f +14653,3009,14,4,f +14653,3010,15,6,f +14653,3010,4,8,f +14653,3010,7,2,f +14653,3010,0,6,f +14653,3010,2,6,f +14653,3010,14,8,f +14653,3010,1,6,f +14653,30104,8,1,f +14653,3020,14,4,f +14653,3020,4,4,f +14653,3020,1,2,f +14653,3020,7,2,f +14653,3021,7,2,f +14653,3021,14,2,f +14653,3021,4,2,f +14653,3021,1,2,f +14653,3022,14,2,f +14653,3022,7,2,f +14653,3022,1,2,f +14653,3022,4,2,f +14653,30285,14,8,f +14653,3030,1,1,f +14653,3032,1,1,f +14653,3034,4,2,f +14653,3035,1,1,f +14653,3037pr0005,1,1,f +14653,3039,4,4,f +14653,3039,42,2,f +14653,3039,1,4,f +14653,3039,33,2,f +14653,30391,0,8,f +14653,3062b,46,2,f +14653,3062b,34,2,f +14653,3062b,36,2,f +14653,3135c02,4,1,f +14653,3297,1,2,f +14653,3297,4,2,f +14653,3298,7,2,f +14653,3298,1,8,f +14653,3298,4,6,f +14653,3298p12,4,2,f +14653,3307,14,2,f +14653,33303,15,6,f +14653,3460,14,2,f +14653,3460,4,2,f +14653,3471,2,1,f +14653,3475b,8,2,f +14653,3622,14,4,f +14653,3622,1,4,f +14653,3622,4,4,f +14653,3660,4,2,f +14653,3660,1,2,f +14653,3666,14,2,f +14653,3666,4,2,f +14653,3675,1,4,f +14653,3710,7,2,f +14653,3710,4,2,f +14653,3730,0,1,f +14653,3747a,4,2,f +14653,3747a,1,2,f +14653,3747a,7,2,f +14653,3795,4,2,f +14653,3795,14,2,f +14653,3795,7,2,f +14653,3823,33,2,f +14653,3829c01,4,1,f +14653,3829c01,0,1,f +14653,3865,2,1,f +14653,3867,2,1,f +14653,3957a,0,2,f +14653,3960p04,15,1,f +14653,4079,15,2,f +14653,4083,383,2,f +14653,4132,1,2,f +14653,4132,4,2,f +14653,4133,14,2,f +14653,4133,15,2,f +14653,4175,14,2,f +14653,4286,1,6,f +14653,4286,4,4,f +14653,4287,1,6,f +14653,4287,4,4,f +14653,4345b,15,1,f +14653,4346p03,15,1,f +14653,4617b,0,2,f +14653,4727,2,4,f +14653,4728,15,1,f +14653,4728,14,1,f +14653,4728,1,1,f +14653,4728,4,1,f +14653,4740,383,2,f +14653,6187,14,2,f +14653,6216,1,2,f +14653,6232,4,2,f +14653,6234,15,1,f +14653,6234,14,1,f +14653,6235,4,1,f +14653,6235,1,1,f +14653,6249,8,2,f +14653,6255,2,2,f +14653,6541,1,2,f +14653,6541,7,2,f +14653,cre004,9999,1,f +14653,cre005,9999,1,f +14654,3004,0,1,f +14654,3005pe1,15,2,f +14654,3040b,15,2,f +14654,3665,15,2,f +14654,3700,15,2,f +14654,3710,4,1,f +14654,3710,0,2,f +14654,3731,4,1,f +14654,6141,0,2,f +14654,6141,0,1,t +14655,3004,4,1,f +14655,3020,72,1,f +14655,3022,72,1,f +14655,3062b,4,1,f +14655,3062b,14,1,f +14655,3835,0,1,t +14655,3835,0,1,f +14655,3962b,0,1,f +14655,4070,4,1,f +14655,4085c,4,2,f +14655,4085c,4,1,t +14655,4589,14,1,f +14655,4589,14,1,t +14655,4599a,14,1,f +14655,4599a,14,1,t +14655,6141,4,1,f +14655,6141,4,1,t +14657,3001,4,5,f +14657,3003,14,2,f +14657,3004,14,2,f +14657,3004,0,3,f +14657,3004,7,4,f +14657,3004,4,1,f +14657,3010,4,1,f +14657,3020,14,2,f +14657,3020,4,3,f +14657,3022,14,2,f +14657,3023,7,2,f +14657,3023,4,9,f +14657,3023,0,6,f +14657,3024,4,4,f +14657,3030,4,1,f +14657,3031,14,1,f +14657,3069b,7,2,f +14657,3069b,0,2,f +14657,3460,0,1,f +14657,3482,7,4,f +14657,3623,4,2,f +14657,3634,0,4,f +14657,3647,7,2,f +14657,3648a,7,1,f +14657,3665,4,4,f +14657,3666,0,5,f +14657,3666,14,2,f +14657,3673,7,5,f +14657,3700,7,3,f +14657,3700,4,4,f +14657,3700,0,9,f +14657,3701,4,4,f +14657,3701,14,2,f +14657,3702,4,2,f +14657,3702,14,2,f +14657,3702,0,2,f +14657,3703,4,2,f +14657,3704,0,1,f +14657,3705,0,2,f +14657,3707,0,1,f +14657,3709,14,2,f +14657,3709,0,2,f +14657,3710,14,2,f +14657,3710,0,4,f +14657,3711a,0,24,f +14657,3713,7,17,f +14657,3737,0,5,f +14657,3738,0,1,f +14657,3743,7,1,f +14657,3749,7,7,f +14657,3795,0,1,f +14657,3795,4,1,f +14657,3795,14,1,f +14657,3832,4,2,f +14657,3873,0,4,f +14657,3894,7,2,f +14657,3894,4,2,f +14657,3894,0,4,f +14657,3895,14,2,f +14657,3895,0,2,f +14657,4019,7,2,f +14657,4143,7,8,f +14657,4162,4,4,f +14657,4185,7,2,f +14657,4261,7,2,f +14657,4262,0,1,f +14657,4263,0,1,f +14657,4265a,7,6,f +14657,4273b,7,1,f +14657,4275b,14,2,f +14657,4276b,14,2,f +14657,4442,7,3,f +14657,4459,0,23,f +14657,4504,14,2,f +14657,4519,0,3,f +14657,4689c01,14,1,f +14657,4692c01,7,1,f +14657,4701c01,14,1,f +14657,5102c08,7,2,f +14657,5102c12,0,1,f +14657,5102c20,0,1,f +14657,75215,7,1,f +14658,bin06,14,1,f +14659,11272,148,1,f +14659,11356pr0002,288,1,f +14659,13699pr0001,326,1,f +14659,15365pat0002,14,1,f +14659,15366,297,1,f +14659,15368,179,2,f +14659,15369,297,2,f +14659,2780,0,2,f +14659,32062,4,2,f +14659,3707,0,1,f +14659,53562,0,2,f +14659,53585,0,1,f +14659,59443,72,2,f +14659,87747,297,5,f +14659,87846,288,1,f +14659,90609,57,2,f +14659,90609,0,4,f +14659,90612,57,2,f +14659,90612,0,1,f +14659,90616,0,2,f +14659,90617,72,2,f +14659,90622,0,1,f +14659,90625,0,1,f +14659,90639,297,1,f +14659,90639pr0033,320,2,f +14659,90640,288,4,f +14659,90641,57,2,f +14659,90641,297,2,f +14659,90652,297,1,f +14659,93571,0,2,f +14659,93575,57,2,f +14659,98565,72,1,f +14659,98577,72,1,f +14660,3062b,1,1,f +14660,3068bpb0038,15,1,f +14660,3070bpr0007,71,1,f +14660,3626bpr0314,14,1,f +14660,3901,70,1,f +14660,4085c,7,1,f +14660,4449,6,1,f +14660,4599a,7,1,f +14660,4714,15,1,f +14660,4715,15,2,f +14660,970c00,0,1,f +14660,973px166c02,15,1,f +14662,298c02,4,1,t +14662,298c02,4,2,f +14662,3021,70,2,f +14662,3022,0,1,f +14662,3022,25,1,f +14662,3023,25,1,f +14662,3039,4,1,f +14662,3660,4,1,f +14662,3710,70,1,f +14662,3747b,4,1,f +14662,3839b,0,2,f +14662,4081b,4,2,f +14662,41769,4,1,f +14662,41770,4,1,f +14662,4286,4,3,f +14662,43722,25,1,f +14662,43723,25,1,f +14662,44302a,4,4,f +14662,44567a,25,3,f +14662,4740,15,2,f +14662,47674,47,1,f +14662,47675,4,1,f +14662,47676,4,1,f +14662,6141,25,2,f +14662,6141,0,1,t +14662,6141,15,2,f +14662,6141,15,1,t +14662,6141,25,1,t +14662,6141,0,2,f +14662,73983,4,4,f +14664,32009,72,5,f +14664,32140,72,5,f +14664,32271,72,5,f +14664,32348,72,5,f +14664,32526,72,5,f +14664,6629,72,5,f +14666,11609,484,1,t +14666,11609,484,3,f +14666,11618,322,1,f +14666,11618,322,1,t +14666,14769pr028,27,1,f +14666,15573,26,4,f +14666,2423,2,1,f +14666,2458,15,2,f +14666,2817,71,1,f +14666,3004,26,2,f +14666,3004,70,1,f +14666,30176,2,2,f +14666,3020,19,1,f +14666,3023,15,2,f +14666,3024,26,3,f +14666,3024,26,1,t +14666,3039,70,1,f +14666,3040b,2,1,f +14666,3062b,322,2,f +14666,3062b,15,1,f +14666,3068b,19,2,f +14666,3069b,322,2,f +14666,33183,70,1,t +14666,33183,70,1,f +14666,33291,5,1,t +14666,33291,5,7,f +14666,3795,14,1,f +14666,3795,27,1,f +14666,3958,27,1,f +14666,54200,14,1,t +14666,54200,322,1,t +14666,54200,322,1,f +14666,54200,14,4,f +14666,59900,33,1,f +14666,59900,26,3,f +14666,60474,15,1,f +14666,6141,2,1,t +14666,6141,2,1,f +14666,6141,41,2,f +14666,6141,41,1,t +14666,6256,29,1,f +14666,85080,14,2,f +14666,87087,19,1,f +14666,87580,322,1,f +14666,88072,19,1,f +14666,93088pr0001b,19,1,f +14666,93160,15,1,f +14666,93160,15,1,t +14667,30183,8,1,f +14667,3039,378,4,f +14667,3040b,7,4,f +14667,3665,7,4,f +14667,3700,8,2,f +14667,3794a,19,2,f +14667,3795,8,1,f +14667,40379,378,1,f +14667,40396,378,1,f +14667,4274,7,1,t +14667,4274,7,1,f +14667,4589,0,10,f +14667,4733,19,1,f +14667,6141,0,4,f +14667,6141,0,1,t +14667,x158,378,1,f +14668,12825,0,2,f +14668,2496,0,1,f +14668,2655,71,1,f +14668,3010,15,2,f +14668,3021,71,1,f +14668,3023,0,2,f +14668,33078,4,2,f +14668,3626bpr0600,14,1,f +14668,3626cpr0892,14,1,f +14668,3794a,0,2,f +14668,3795,4,1,f +14668,3839b,15,1,f +14668,3937,15,1,f +14668,3937,0,1,f +14668,3938,15,1,f +14668,3957a,71,1,f +14668,3960,191,1,f +14668,4719,322,1,f +14668,59900,4,1,f +14668,59900,14,1,f +14668,6134,0,1,f +14668,6231,15,2,f +14668,62810,484,1,f +14668,85984,0,1,f +14668,87580,15,1,f +14668,88286,308,1,f +14668,92851,47,2,f +14668,970c00,4,1,f +14668,970c00,71,1,f +14668,973pr1196c01,15,1,f +14668,973pr1918c01,73,1,f +14668,99780,0,1,f +14670,10563,15,1,f +14670,13358,0,2,f +14670,14786,71,1,f +14670,15454pr0002,4,1,f +14670,15613,71,1,f +14670,17494,4,1,f +14670,18018,179,1,f +14670,18806,4,1,f +14670,19440,71,1,f +14670,19451,14,1,f +14670,24911,71,1,f +14670,25081,71,1,f +14670,3011,1,1,f +14670,3437,73,2,f +14670,3437,4,1,f +14670,40666,15,2,f +14670,47517,0,1,f +14670,51703,182,1,f +14670,61649,73,1,f +14670,63871,4,1,f +14670,76371,4,1,f +14670,90265,15,1,f +14670,92005,4,1,f +14671,27987,0,1,f +14671,27992,212,1,f +14671,30089,0,1,f +14671,3626cpr2031,14,1,f +14671,85861,0,1,f +14671,88646,0,1,f +14671,970c00pr0002,4,1,f +14671,973pr3542c01,4,1,f +14673,2348b,33,1,f +14673,2349a,0,1,f +14673,2412b,0,8,f +14673,2413,0,2,f +14673,2417,2,1,f +14673,2421,7,2,f +14673,2432,4,1,f +14673,2436,4,1,f +14673,2444,14,2,f +14673,2450,7,1,f +14673,2450,1,1,f +14673,2453a,4,5,f +14673,2458,4,1,f +14673,2540,0,2,f +14673,2542,6,1,f +14673,2546,8,1,f +14673,2549,6,1,f +14673,2610,14,1,f +14673,2780,0,2,f +14673,2823,14,2,f +14673,3003,7,3,f +14673,3004,4,2,f +14673,3004,7,7,f +14673,3005,7,8,f +14673,3005,4,3,f +14673,3009,14,2,f +14673,3010,7,1,f +14673,3010,0,2,f +14673,3020,0,3,f +14673,3020,4,3,f +14673,3021,4,1,f +14673,3021,0,1,f +14673,3022,4,1,f +14673,3023,14,3,f +14673,3024,4,2,f +14673,3024,7,1,f +14673,3024,36,2,f +14673,3028,1,1,f +14673,3028,7,1,f +14673,3031,0,1,f +14673,3034,7,1,f +14673,3034,0,2,f +14673,3036,1,1,f +14673,3039pc5,7,1,f +14673,3040b,7,3,f +14673,3069b,6,2,f +14673,3069bpr0100,2,3,f +14673,3070b,46,2,f +14673,3070b,36,1,t +14673,3070b,34,1,f +14673,3070b,36,1,f +14673,3070b,34,1,t +14673,3070b,46,1,t +14673,3455,7,2,f +14673,3460,14,1,f +14673,3460,4,6,f +14673,3460,0,4,f +14673,3479,0,2,f +14673,3581,4,1,f +14673,3623,0,2,f +14673,3623,4,2,f +14673,3626bp04,14,2,f +14673,3626bp05,14,1,f +14673,3629,7,1,f +14673,3665,0,2,f +14673,3666,0,2,f +14673,3676,0,2,f +14673,3710,4,7,f +14673,3747b,4,2,f +14673,3747b,0,1,f +14673,3788,4,2,f +14673,3795,0,3,f +14673,3795,4,1,f +14673,3821,4,1,f +14673,3822,4,1,f +14673,3823,41,1,f +14673,3829c01,4,2,f +14673,3835,7,1,f +14673,3841,8,1,f +14673,3899,47,1,f +14673,3901,0,1,f +14673,3962b,0,1,f +14673,4079,14,1,f +14673,4085c,4,3,f +14673,4161,0,2,f +14673,4162,0,2,f +14673,4175,0,1,f +14673,4214,0,1,f +14673,4287,14,4,f +14673,4287,0,2,f +14673,4315,0,1,f +14673,4345b,7,2,f +14673,4346,7,2,f +14673,4449,6,2,f +14673,4474,41,1,f +14673,4477,4,1,f +14673,4477,0,3,f +14673,4485,4,1,f +14673,4488,4,2,f +14673,4490,7,1,f +14673,4515,0,1,f +14673,4599a,15,1,f +14673,4600,0,2,f +14673,4617b,0,1,f +14673,4855,0,1,f +14673,4858,0,1,f +14673,4859,4,1,f +14673,4864a,0,2,f +14673,4865a,4,3,f +14673,4865a,0,4,f +14673,4871,0,1,f +14673,57503,334,1,f +14673,57504,334,1,f +14673,57505,334,1,f +14673,57506,334,1,f +14673,6014a,14,4,f +14673,6015,0,4,f +14673,6019,7,2,f +14673,6020,8,1,f +14673,6026,2,1,f +14673,6027,2,1,f +14673,6064,2,1,f +14673,6078,0,1,f +14673,6083,8,1,f +14673,6140,0,2,f +14673,6141,46,1,t +14673,6141,46,1,f +14673,970c00,4,1,f +14673,970c00,1,1,f +14673,970c00,0,1,f +14673,973p28c01,0,1,f +14673,973p70c01,6,1,f +14673,973p73c01,2,1,f +14674,2570,70,1,f +14674,2587pr0024,148,1,f +14674,30273,148,2,f +14674,33172,308,1,f +14674,3626bpr0325,14,3,f +14674,3626bpr0541,14,1,f +14674,3626bpr0645,14,1,f +14674,3844,148,1,f +14674,3846pr0002,71,3,f +14674,3847,135,1,f +14674,3849,0,1,f +14674,4495b,288,2,f +14674,4497,135,1,f +14674,4498,70,1,f +14674,50231,0,1,f +14674,59232,179,1,f +14674,6126b,182,1,f +14674,64647,288,2,f +14674,89520,148,2,f +14674,970c00,0,4,f +14674,970c00pr0154,0,1,f +14674,973pr1624c01,72,1,f +14674,973pr1625c01,288,3,f +14674,973pr1626c01,0,1,f +14675,3001a,4,2,f +14675,3001a,1,15,f +14675,3001a,47,1,f +14675,3003,4,1,f +14675,3003,1,4,f +14675,3004,1,6,f +14675,3007,1,1,f +14675,3008,1,1,f +14675,3009,1,5,f +14675,3027,7,3,f +14675,3034,15,18,f +14675,3039,4,1,f +14675,3039,1,1,f +14675,3065,47,1,f +14675,3176,4,2,f +14675,3176c01,4,2,f +14675,3228a,1,4,f +14675,3229a,1,16,f +14675,3230a,1,16,f +14675,7049b,15,6,f +14675,wheel1a,4,12,f +14676,2348b,41,1,f +14676,2349a,4,1,f +14676,2412b,0,1,f +14676,2412b,14,1,f +14676,2420,4,2,f +14676,2432,15,1,f +14676,2436,4,1,f +14676,2540,7,1,f +14676,2555,4,4,f +14676,2555,15,2,f +14676,2569,7,1,f +14676,3010,4,1,f +14676,3020,4,1,f +14676,3020,7,1,f +14676,3020,0,2,f +14676,3021,4,1,f +14676,3021,0,3,f +14676,3022,4,1,f +14676,3023,7,1,f +14676,3024,46,2,f +14676,3034,7,1,f +14676,3069b,4,2,f +14676,3069bp02,7,1,f +14676,3070b,46,2,f +14676,3070b,36,2,f +14676,3623,4,4,f +14676,3626bp7e,14,1,f +14676,3710,4,2,f +14676,3788,4,2,f +14676,3821,4,1,f +14676,3822,4,1,f +14676,3823,41,1,f +14676,3829c01,15,1,f +14676,3837,8,1,f +14676,3841,8,1,f +14676,3962b,0,1,f +14676,4085c,4,4,f +14676,4213,4,1,f +14676,4315,4,1,f +14676,4360,0,1,f +14676,4485,15,1,f +14676,4600,7,2,f +14676,4625,4,1,f +14676,4862,41,4,f +14676,4863,4,2,f +14676,6014a,15,4,f +14676,6015,0,4,f +14676,6016,7,1,f +14676,970c00,1,1,f +14676,973p70c01,6,1,f +14677,10288,308,2,f +14677,10928,72,1,f +14677,11089,70,4,f +14677,11089,0,1,f +14677,11090,0,2,f +14677,11098,297,1,f +14677,11127,41,1,f +14677,11129pr0006,28,1,f +14677,11211,4,1,f +14677,11476,71,2,f +14677,11477,308,3,f +14677,14181,191,1,f +14677,15475pr0001,148,1,f +14677,16472,9999,1,t +14677,2420,71,2,f +14677,2456,0,1,f +14677,30031,72,1,f +14677,3020,70,4,f +14677,3021,0,2,f +14677,3023,41,3,f +14677,3024,41,1,t +14677,3024,41,1,f +14677,3034,72,2,f +14677,30374,0,1,f +14677,3039,191,1,f +14677,30553,0,1,f +14677,30554a,0,3,f +14677,32054,71,6,f +14677,32062,4,10,f +14677,32064b,71,1,f +14677,32192,72,4,f +14677,32523,0,3,f +14677,32526,0,2,f +14677,3626cpr1293,70,1,f +14677,3626cpr1321,0,1,f +14677,3648b,72,1,f +14677,3660,0,1,f +14677,3666,191,4,f +14677,3710,1,2,f +14677,3710,191,3,f +14677,3737,0,1,f +14677,3743,0,2,f +14677,3749,19,1,f +14677,3795,0,3,f +14677,3895,0,2,f +14677,4032a,0,2,f +14677,4032a,4,2,f +14677,4285b,191,2,f +14677,43093,1,7,f +14677,43722,191,1,f +14677,43723,191,1,f +14677,44567a,72,1,f +14677,4519,71,2,f +14677,45301,191,1,f +14677,47720,71,2,f +14677,47753,191,3,f +14677,50943,72,1,f +14677,53451,27,1,t +14677,53451,27,3,f +14677,53454,41,1,t +14677,53454,41,2,f +14677,59900,33,2,f +14677,59900,35,1,f +14677,60470a,4,1,f +14677,60897,4,4,f +14677,6112,72,2,f +14677,61252,72,2,f +14677,6141,27,2,f +14677,6141,27,1,t +14677,61903,71,2,f +14677,6628,0,2,f +14677,6636,0,1,f +14677,72454,72,1,f +14677,75937,0,1,f +14677,85546,14,1,t +14677,85546,14,1,f +14677,85984,191,3,f +14677,87079,70,1,f +14677,87747,0,1,t +14677,87747,0,1,f +14677,87747,15,1,t +14677,87747,15,2,f +14677,92220,148,6,f +14677,92280,0,2,f +14677,92690,297,1,f +14677,92946,191,4,f +14677,92946,72,2,f +14677,95199,0,2,f +14677,970c00pr0571,70,1,f +14677,973pr2482c01,1,1,f +14677,973pr2532c01,0,1,f +14677,98138,297,1,f +14677,98138,41,1,t +14677,98138,41,3,f +14677,98138,297,1,t +14677,99012,72,6,f +14677,99206,71,1,f +14680,32278,72,5,f +14680,32316,72,5,f +14680,32523,72,5,f +14680,32524,72,5,f +14680,32525,72,5,f +14680,40490,72,5,f +14680,41239,72,5,f +14682,2420,15,2,f +14682,3020,15,8,f +14682,3021,15,4,f +14682,3022,15,8,f +14682,3023,15,8,f +14682,3024,15,8,f +14682,3034,15,2,f +14682,3460,15,4,f +14682,3623,15,4,f +14682,3666,15,4,f +14682,3710,15,8,f +14682,3795,15,2,f +14682,3832,15,2,f +14682,4477,15,2,f +14683,2431pr0036,70,1,f +14683,2431pr0040,70,1,f +14683,2436,0,2,f +14683,2540,70,2,f +14683,2780,0,1,t +14683,2780,0,2,f +14683,3001pr0002,70,2,f +14683,30027b,70,2,f +14683,30028,0,2,f +14683,3021,72,2,f +14683,3022,71,3,f +14683,3023,1,2,f +14683,3024,70,2,f +14683,3034,72,1,f +14683,30377,0,2,f +14683,30377,0,1,t +14683,30395,72,1,f +14683,3069b,70,2,f +14683,3139,0,2,f +14683,32530,0,1,f +14683,3623,70,1,f +14683,3666,70,2,f +14683,3710,72,1,f +14683,4083,0,1,f +14683,4150,72,1,f +14683,4600,71,1,f +14683,4624,70,2,f +14683,4865b,70,2,f +14683,57515,72,1,f +14683,60212,73,1,f +14683,6141,47,1,t +14683,6141,182,1,t +14683,6141,47,1,f +14683,6141,182,1,f +14683,6157,0,1,f +14683,6541,70,2,f +14683,93590,70,1,f +14683,93598pr0001,70,1,f +14684,2486,0,1,f +14684,30363,6,2,f +14684,3626bpb0022,14,1,f +14684,3794a,7,2,f +14684,3795,2,2,f +14684,3957a,7,1,f +14684,42446,7,1,f +14684,42446,7,1,t +14684,45917,2,1,f +14684,45918,15,2,f +14684,46303,27,1,f +14684,6636,19,1,f +14684,970c00,7,1,f +14684,973psnc01,0,1,f +14686,3022,0,2,f +14686,3024,0,270,f +14686,3024,71,360,f +14686,3024,15,1170,f +14686,3024,72,270,f +14686,3037,0,44,f +14686,3038,0,2,f +14686,3046a,0,6,f +14686,3176,0,1,f +14686,4186,71,1,f +14686,6007,72,1,t +14687,2421,0,1,f +14687,2446,15,1,f +14687,2447,41,1,t +14687,2447,41,1,f +14687,2460,0,1,f +14687,2479,7,1,f +14687,3004,14,1,f +14687,3023,14,4,f +14687,3039,14,1,f +14687,3070b,7,1,t +14687,3070b,7,1,f +14687,3176,0,1,f +14687,3626apr0001,14,1,f +14687,3666,7,7,f +14687,3794a,14,1,f +14687,4287,14,1,f +14687,4488,14,1,f +14687,4859,14,2,f +14687,6140,0,2,f +14687,970c00,0,1,f +14687,973p0ac02,0,1,f +14688,3002,15,1,f +14688,3003,15,1,f +14688,3009,14,2,f +14688,3031,5,1,f +14688,3034,5,3,f +14688,3039,15,1,f +14688,30474pb06,5,1,f +14688,3298,14,1,f +14688,3747b,15,1,f +14688,4617b,0,1,f +14688,6232,15,1,f +14689,3626bpr0686,14,1,f +14689,88646,0,1,f +14689,90390,297,1,f +14689,90462pr0002,82,1,f +14689,970c00pr0163,14,1,f +14689,973pr1648c01,14,1,f +14690,2343,297,2,f +14690,2419,1,4,f +14690,2445,1,1,f +14690,2528pr0002,0,1,f +14690,2530,72,1,t +14690,2530,72,2,f +14690,2577,288,2,f +14690,3001,28,4,f +14690,3004,288,4,f +14690,3020,28,1,f +14690,3023,72,3,f +14690,30294,288,1,f +14690,3034,1,1,f +14690,30377,15,1,t +14690,30377,15,2,f +14690,3040b,288,6,f +14690,3048c,288,4,f +14690,30505,288,2,f +14690,3062b,72,2,f +14690,3062b,41,6,f +14690,3070bpr0058,272,1,t +14690,3070bpr0058,272,1,f +14690,32064b,72,2,f +14690,3308,72,1,f +14690,3460,72,1,f +14690,3626bpr0789,78,1,f +14690,3626bpr0800,78,1,f +14690,3626bpr0844,78,1,f +14690,3626bpr0895,15,1,f +14690,3660,71,2,f +14690,3684,72,4,f +14690,3684,28,2,f +14690,3941,41,4,f +14690,3960pr0009,41,1,f +14690,4150pr0007,19,1,f +14690,4460b,308,2,f +14690,4643104,9999,1,t +14690,4644159,9999,1,t +14690,54200,288,1,t +14690,54200,288,10,f +14690,55236,288,2,f +14690,60115,15,1,f +14690,6106,1,2,f +14690,6126b,41,2,f +14690,6141,41,1,t +14690,6141,41,6,f +14690,6266,15,2,f +14690,87620,288,2,f +14690,87750,72,2,f +14690,88072,0,2,f +14690,92947,71,9,f +14690,92947,19,2,f +14690,95221pr0001,0,1,f +14690,95222pr0001,0,1,f +14690,95224pr0001,0,1,f +14690,95348,0,1,f +14690,95350,179,1,f +14690,97000pr0001,41,1,f +14690,970c00pr0218,70,1,f +14690,970c00pr0252,0,1,f +14690,970d09,0,1,f +14690,973pr1771c01,272,1,f +14690,973pr1842c01,0,1,f +14690,973pr1843c01,272,1,f +14691,10201,4,4,f +14691,11094,0,6,f +14691,11096,297,1,f +14691,11097,179,2,f +14691,11098,297,1,f +14691,11100,15,2,f +14691,11107,179,1,f +14691,11127,41,2,f +14691,11153,72,2,f +14691,11153,15,4,f +14691,11203,72,2,f +14691,11211,71,1,f +14691,11215,71,2,f +14691,11233pr0001,0,1,f +14691,11233pr0002,71,1,f +14691,11233pr0004,72,1,f +14691,11233pr0005,15,1,f +14691,11291,320,1,f +14691,11399,72,4,f +14691,11477,72,8,f +14691,12549pr0001,15,1,f +14691,12825,15,2,f +14691,12857,15,2,f +14691,13361pr0004,15,1,f +14691,13548,71,2,f +14691,13549,36,3,f +14691,13731,72,2,f +14691,2415,71,2,f +14691,2419,0,2,f +14691,2431,72,2,f +14691,2431,71,6,f +14691,2445,320,3,f +14691,2449,0,4,f +14691,2460,0,2,f +14691,2476a,71,1,f +14691,2540,0,2,f +14691,2654,4,2,f +14691,2780,0,2,t +14691,2780,0,13,f +14691,3003,72,2,f +14691,3003,0,1,f +14691,3004,72,2,f +14691,3004,0,2,f +14691,3005,71,4,f +14691,30136,72,1,f +14691,30137,71,2,f +14691,30194,72,2,f +14691,3020,71,6,f +14691,3020,0,4,f +14691,3020,72,5,f +14691,3021,0,8,f +14691,3021,71,1,f +14691,3022,70,2,f +14691,3022,4,3,f +14691,3022,0,2,f +14691,3022,72,4,f +14691,3023,19,4,f +14691,3023,71,8,f +14691,3023,4,11,f +14691,3023,0,2,f +14691,3023,36,5,f +14691,30237b,71,4,f +14691,30259,71,2,f +14691,3030,72,1,f +14691,3031,71,1,f +14691,3031,0,2,f +14691,3031,72,1,f +14691,3032,72,1,f +14691,3034,0,5,f +14691,3034,71,1,f +14691,30350b,72,2,f +14691,30359b,72,2,f +14691,30374,36,1,f +14691,3039,72,4,f +14691,3040b,71,2,f +14691,3040b,72,4,f +14691,30414,19,2,f +14691,3048c,71,7,f +14691,3049d,71,1,f +14691,30540,0,4,f +14691,30552,0,2,f +14691,30586,71,2,f +14691,3068b,71,3,f +14691,3069b,72,2,f +14691,3069bpr0070,0,1,f +14691,32034,320,1,f +14691,32054,0,6,f +14691,32062,4,2,f +14691,32064b,14,1,f +14691,32064b,71,2,f +14691,32316,71,2,f +14691,3245c,71,1,f +14691,32523,4,1,f +14691,32526,0,2,f +14691,32531,0,1,f +14691,32556,19,2,f +14691,3297,72,2,f +14691,3460,72,2,f +14691,3460,71,3,f +14691,3464,72,2,f +14691,3623,0,10,f +14691,3626cpr1124,212,1,f +14691,3626cpr1134,71,1,f +14691,3626cpr1135,15,1,f +14691,3626cpr1136,0,1,f +14691,3626cpr1138,72,1,f +14691,3626cpr1207,15,1,f +14691,3660,71,2,f +14691,3660,0,2,f +14691,3665,71,2,f +14691,3666,72,3,f +14691,3666,320,2,f +14691,3700,72,6,f +14691,3700,71,3,f +14691,3701,0,8,f +14691,3702,71,2,f +14691,3702,0,2,f +14691,3703,72,2,f +14691,3705,0,1,f +14691,3706,0,2,f +14691,3710,0,2,f +14691,3710,15,8,f +14691,3710,71,2,f +14691,3713,4,1,t +14691,3713,4,2,f +14691,3747b,0,2,f +14691,3794b,320,4,f +14691,3795,0,2,f +14691,3795,72,1,f +14691,3829c01,4,1,f +14691,3832,4,1,f +14691,3832,72,2,f +14691,3894,72,2,f +14691,3937,4,1,f +14691,3937,71,2,f +14691,40490,0,2,f +14691,4079,72,1,f +14691,4150,71,1,f +14691,41532,0,4,f +14691,4162,4,2,f +14691,41769,72,3,f +14691,41770,72,3,f +14691,4274,1,2,t +14691,4274,1,12,f +14691,4286,71,2,f +14691,4286,0,2,f +14691,4287,72,2,f +14691,43093,1,4,f +14691,43719,320,1,f +14691,43719,15,1,f +14691,43720,72,2,f +14691,43721,72,2,f +14691,43722,72,3,f +14691,43722,71,1,f +14691,43723,71,1,f +14691,43723,72,3,f +14691,44728,72,8,f +14691,4477,72,4,f +14691,4477,71,1,f +14691,4477,0,1,f +14691,4519,71,2,f +14691,4588,15,6,f +14691,4598,0,2,f +14691,4600,71,2,f +14691,47457,72,2,f +14691,47720,0,2,f +14691,47759,0,1,f +14691,48336,71,1,f +14691,48336,0,5,f +14691,4865a,36,3,f +14691,4871,0,1,f +14691,48933,72,1,f +14691,51739,320,8,f +14691,53451,15,4,f +14691,53451,15,1,t +14691,54200,72,4,f +14691,54200,72,1,t +14691,55013,72,2,f +14691,55981,71,4,f +14691,57909a,72,1,f +14691,59443,71,5,f +14691,59895,0,2,f +14691,59900,71,2,f +14691,60471,71,3,f +14691,60474,0,6,f +14691,60475b,72,2,f +14691,60478,71,2,f +14691,60478,72,8,f +14691,60481,71,2,f +14691,60484,71,1,f +14691,60581,72,4,f +14691,60594,4,2,f +14691,60849,0,1,f +14691,60849,0,1,t +14691,60897,4,6,f +14691,6091,0,2,f +14691,6134,0,3,f +14691,6141,4,1,t +14691,6141,4,4,f +14691,6141,36,1,f +14691,6141,36,1,t +14691,6154,4,2,f +14691,6155,71,2,f +14691,62113,72,2,f +14691,6239,72,2,f +14691,62462,71,2,f +14691,62743,71,2,f +14691,63864,72,4,f +14691,63864,71,2,f +14691,63868,4,2,f +14691,63965,0,2,f +14691,63965,297,1,f +14691,64567,0,1,f +14691,64567,0,1,t +14691,6536,4,2,f +14691,6536,72,4,f +14691,6558,1,5,f +14691,6636,71,2,f +14691,6636,72,8,f +14691,70009stk01,9999,1,t +14691,73983,72,2,f +14691,73983,4,2,f +14691,73983,71,2,f +14691,76766,0,2,f +14691,85984,0,1,f +14691,85984,72,2,f +14691,85984,71,4,f +14691,87079,72,4,f +14691,87083,72,7,f +14691,87544,0,4,f +14691,87745,179,1,f +14691,87747,15,1,t +14691,87747,15,2,f +14691,90194,71,1,f +14691,92013,0,1,f +14691,92280,0,2,f +14691,92280,71,4,f +14691,92402,0,4,f +14691,92582,0,1,f +14691,93168,320,2,f +14691,96874,25,1,t +14691,970c00pr0434,0,1,f +14691,970c00pr0436,71,1,f +14691,970c00pr0437,72,1,f +14691,970c00pr0448,15,1,f +14691,970c00pr0449,15,1,f +14691,970c01pr0440,15,1,f +14691,973pr2229c01,212,1,f +14691,973pr2234c01,320,1,f +14691,973pr2235c01,15,1,f +14691,973pr2236c01,0,1,f +14691,973pr2238c01,320,1,f +14691,973pr2357c01,15,1,f +14691,98138,41,4,f +14691,98138,41,1,t +14691,99206,71,1,f +14691,99207,71,9,f +14691,99780,72,4,f +14691,99780,0,3,f +14691,99781,71,4,f +14691,99781,0,2,f +14694,87576,71,1,f +14695,20483pr0001,84,1,f +14695,3068bpr0254,323,1,f +14695,88646,0,1,f +14695,970c00pr0835,379,1,f +14695,973pr2978c01,15,1,f +14697,2736,71,4,f +14697,2780,0,4,t +14697,2780,0,174,f +14697,2825,71,1,f +14697,2905,72,4,f +14697,30395,72,1,f +14697,32005b,0,4,f +14697,32009,4,2,f +14697,32012,72,1,f +14697,32013,14,8,f +14697,32013,0,3,f +14697,32013,4,4,f +14697,32016,0,2,f +14697,32034,71,9,f +14697,32039,71,7,f +14697,32054,71,40,f +14697,32056,71,12,f +14697,32062,4,14,f +14697,32073,71,30,f +14697,32123b,14,4,f +14697,32123b,14,1,t +14697,32138,71,2,f +14697,32140,72,13,f +14697,32140,14,6,f +14697,32140,4,4,f +14697,32184,71,3,f +14697,32187,71,1,f +14697,32198,19,1,f +14697,32250,14,6,f +14697,32269,0,2,f +14697,32270,0,5,f +14697,32271,0,2,f +14697,32278,0,3,f +14697,32278,4,1,f +14697,32278,14,2,f +14697,32316,71,8,f +14697,32316,4,5,f +14697,32316,0,2,f +14697,32316,14,3,f +14697,32348,4,2,f +14697,32449,14,9,f +14697,32498,0,1,f +14697,32523,71,8,f +14697,32523,4,2,f +14697,32523,14,7,f +14697,32524,72,3,f +14697,32524,14,10,f +14697,32524,0,2,f +14697,32525,72,9,f +14697,32525,14,6,f +14697,32525,4,1,f +14697,32526,4,8,f +14697,32526,1,4,f +14697,32526,0,2,f +14697,32526,71,7,f +14697,32526,14,6,f +14697,32556,19,9,f +14697,32557,71,2,f +14697,33299a,71,6,f +14697,3673,71,1,t +14697,3673,71,5,f +14697,3702,71,1,f +14697,3705,0,14,f +14697,3706,0,2,f +14697,3707,0,2,f +14697,3708,0,4,f +14697,3713,71,25,f +14697,3713,71,1,t +14697,3737,0,2,f +14697,3749,19,10,f +14697,40490,4,4,f +14697,40490,0,6,f +14697,40490,14,11,f +14697,41239,4,6,f +14697,41239,14,2,f +14697,41239,0,4,f +14697,41677,4,2,f +14697,41678,14,2,f +14697,42003,0,8,f +14697,42003,14,6,f +14697,42003,4,6,f +14697,42610,71,7,f +14697,4274,71,2,f +14697,4274,71,1,t +14697,43093,1,65,f +14697,43857,14,8,f +14697,44294,71,10,f +14697,44728,0,4,f +14697,4519,71,29,f +14697,51011,0,6,f +14697,55013,72,4,f +14697,55982,0,2,f +14697,56823c50,0,1,f +14697,59426,72,2,f +14697,59443,14,2,f +14697,59443,71,18,f +14697,60208,72,2,f +14697,60483,71,11,f +14697,60484,0,5,f +14697,60485,71,1,f +14697,62462,14,8,f +14697,62462,4,2,f +14697,62531,14,2,f +14697,63869,71,7,f +14697,64391,14,4,f +14697,64391,4,1,f +14697,64392,4,1,f +14697,64681,4,1,f +14697,64682,4,1,f +14697,64683,4,1,f +14697,64683,14,4,f +14697,64782,71,1,f +14697,6536,4,4,f +14697,6536,14,8,f +14697,6536,0,14,f +14697,6538b,19,2,f +14697,6539,4,2,f +14697,6542b,72,7,f +14697,6553,0,8,f +14697,6558,1,84,f +14697,6587,28,6,f +14697,6589,19,1,t +14697,6589,19,6,f +14697,6628,0,4,f +14697,6629,4,6,f +14697,6632,14,13,f +14697,6641,4,2,f +14697,87079,0,4,f +14697,87080,0,1,f +14697,87080,4,1,f +14697,87082,71,6,f +14697,87083,72,10,f +14697,87086,0,1,f +14697,87086,4,1,f +14697,87407,71,1,f +14697,87408,0,3,f +14697,92693,71,2,f +14697,92907,0,4,f +14697,9396stk01,9999,1,t +14697,94925,71,9,f +14697,98989,71,2,f +14697,99008,19,3,f +14697,99009,71,1,f +14697,99010,0,1,f +14697,99012,72,4,f +14697,99013pat0001,72,4,f +14701,2343,47,4,f +14701,2412a,0,2,f +14701,2417,2,4,f +14701,2420,15,4,f +14701,2423,2,1,f +14701,2453a,15,11,f +14701,2454a,15,1,f +14701,2465,15,1,f +14701,2493b,15,2,f +14701,2494,47,2,f +14701,2518,2,4,f +14701,2536,6,5,f +14701,2546p01,4,1,f +14701,2563,6,1,f +14701,2566,6,1,f +14701,2571,47,2,f +14701,2572,47,2,f +14701,3001,14,1,f +14701,3004,15,2,f +14701,3004,14,6,f +14701,3005,15,13,f +14701,3010,15,3,f +14701,3020,0,1,f +14701,3020,14,3,f +14701,3020,4,2,f +14701,3021,15,1,f +14701,3022,0,1,f +14701,3023,15,5,f +14701,3024,46,6,f +14701,3024,15,2,f +14701,3026,15,1,f +14701,3062b,14,1,f +14701,3069b,15,2,f +14701,3070b,4,1,t +14701,3070b,4,2,f +14701,3185,4,6,f +14701,3307,15,2,f +14701,3455,15,1,f +14701,3622,15,2,f +14701,3626apr0001,14,5,f +14701,3629,7,1,f +14701,3666,15,2,f +14701,3710,4,2,f +14701,3741,2,6,f +14701,3742,14,3,t +14701,3742,14,9,f +14701,3742,4,3,t +14701,3742,4,9,f +14701,3755,15,2,f +14701,3795,4,1,f +14701,3857,2,1,f +14701,3898,15,1,f +14701,3901,0,2,f +14701,3941,14,1,f +14701,4032a,2,1,f +14701,4032a,7,1,f +14701,4079,14,5,f +14701,4217,15,1,f +14701,4477,15,1,f +14701,4528,0,1,f +14701,4529,0,1,f +14701,4530,4,1,f +14701,4599a,14,1,f +14701,4599a,4,1,f +14701,4864a,15,3,f +14701,6141,15,2,f +14701,6141,36,8,f +14701,6141,46,4,f +14701,6376stk01,9999,1,t +14701,970c00,0,2,f +14701,970c00,15,1,f +14701,970c00,4,1,f +14701,970c00,7,1,f +14701,973p18c01,1,1,f +14701,973p22c01,0,1,f +14701,973p72c01,15,1,f +14701,973pr1190c01,0,1,f +14701,973px3c01,15,1,f +14702,33085,14,1,f +14702,3626bpr0833,14,1,f +14702,87990,70,1,f +14702,88646,0,1,f +14702,95327pr0001,0,1,f +14702,970c00pr0247,19,1,f +14702,973pr1830c01,19,1,f +14704,10288,0,1,f +14704,11458,15,2,f +14704,11458,72,4,f +14704,11477,179,2,f +14704,11477,27,1,f +14704,11833,27,2,f +14704,11833,36,1,f +14704,12825,15,2,f +14704,14301,71,2,f +14704,15068,0,1,f +14704,15391,15,1,f +14704,15392,72,1,t +14704,15392,72,1,f +14704,15406,0,1,f +14704,15446,72,1,f +14704,15706,0,2,f +14704,17636,9999,1,t +14704,17979,71,2,f +14704,2412b,297,2,f +14704,2431,42,5,f +14704,2431,72,2,f +14704,2454a,15,4,f +14704,2460,72,1,f +14704,2540,72,6,f +14704,2654,46,2,f +14704,2736,71,5,f +14704,2780,0,14,f +14704,2780,0,1,t +14704,2877,0,2,f +14704,3002,27,1,f +14704,3003,72,3,f +14704,3003,27,2,f +14704,3005,15,4,f +14704,3010,15,1,f +14704,30151a,42,2,f +14704,30171,0,1,f +14704,3020,27,2,f +14704,3021,72,6,f +14704,3022,191,1,f +14704,3023,36,8,f +14704,3023,27,9,f +14704,30248,72,1,f +14704,3031,72,1,f +14704,3036,72,2,f +14704,30367c,71,1,f +14704,30374,35,2,f +14704,30374,71,1,f +14704,30385,42,1,f +14704,3040b,15,6,f +14704,30526,72,1,f +14704,30552,0,3,f +14704,30553,0,4,f +14704,30554a,71,2,f +14704,30592,72,1,f +14704,3062b,42,1,f +14704,3062b,14,1,f +14704,3062b,72,4,f +14704,3070bpr0007,71,1,f +14704,3070bpr0007,71,1,t +14704,32000,71,11,f +14704,32013,0,5,f +14704,32015,71,2,f +14704,32016,0,1,f +14704,32028,72,2,f +14704,32034,0,1,f +14704,32034,4,1,f +14704,32054,71,2,f +14704,32062,4,9,f +14704,32064b,72,2,f +14704,32064b,0,3,f +14704,32073,71,1,f +14704,32123b,71,1,t +14704,32123b,71,5,f +14704,32348,27,2,f +14704,3245c,15,4,f +14704,3623,191,2,f +14704,3626cpr1499,14,1,f +14704,3626cpr1500,14,1,f +14704,3626cpr1503,14,1,f +14704,3626cpr1519,35,1,f +14704,3665,15,4,f +14704,3665,72,2,f +14704,3666,27,2,f +14704,3666,72,2,f +14704,3673,71,1,t +14704,3673,71,1,f +14704,3679,71,1,f +14704,3680,15,1,f +14704,3700,15,2,f +14704,3707,0,1,f +14704,3713,4,1,t +14704,3713,4,1,f +14704,3747b,72,1,f +14704,3795,72,2,f +14704,3941,71,2,f +14704,3960,15,1,f +14704,40244,0,4,f +14704,40490,0,4,f +14704,41532,0,4,f +14704,41669,36,1,f +14704,41678,71,2,f +14704,41747,191,2,f +14704,41748,191,2,f +14704,42003,71,1,f +14704,42610,71,3,f +14704,4274,1,8,f +14704,4274,1,3,t +14704,4285,72,1,f +14704,43093,1,1,f +14704,4360,0,1,f +14704,43722,191,1,f +14704,43723,191,1,f +14704,43898,72,1,f +14704,44728,72,3,f +14704,4477,71,2,f +14704,44809,71,1,f +14704,4519,71,2,f +14704,4590,72,1,f +14704,4599b,14,1,f +14704,4599b,14,1,t +14704,4740,36,1,f +14704,4740,15,4,f +14704,4742,191,2,f +14704,47457,27,1,f +14704,48729b,72,1,t +14704,48729b,72,3,f +14704,50950,191,2,f +14704,52107,4,3,f +14704,53550,0,1,f +14704,54821,35,3,f +14704,57906,0,3,f +14704,59426,72,2,f +14704,59443,72,1,f +14704,59900,42,4,f +14704,59900,182,2,f +14704,60169,72,1,f +14704,60470a,0,2,f +14704,60474,72,3,f +14704,60475a,71,1,f +14704,60478,0,6,f +14704,60481,15,4,f +14704,60483,72,2,f +14704,60581,47,1,f +14704,61072,0,2,f +14704,6117,41,1,f +14704,61184,71,2,f +14704,61409,72,8,f +14704,6141,182,1,t +14704,6141,0,1,f +14704,6141,36,2,f +14704,6141,34,1,t +14704,6141,34,1,f +14704,6141,297,6,f +14704,6141,36,1,t +14704,6141,297,2,t +14704,6141,47,3,f +14704,6141,0,1,t +14704,6141,47,1,t +14704,6141,182,1,f +14704,61485,0,1,f +14704,62462,0,2,f +14704,6259,191,4,f +14704,62885,0,1,f +14704,63868,71,4,f +14704,64567,0,1,f +14704,64567,0,1,t +14704,6541,0,4,f +14704,6558,1,5,f +14704,78c02,179,1,t +14704,78c02,179,1,f +14704,85543,15,1,f +14704,85940,0,1,f +14704,85941,42,1,f +14704,85941,47,1,f +14704,85984,27,2,f +14704,85984,72,5,f +14704,87079,72,1,f +14704,87087,71,3,f +14704,87087,27,4,f +14704,87751,179,1,f +14704,87752,42,2,f +14704,91988,0,1,f +14704,92280,0,2,f +14704,92747,41,1,f +14704,92946,15,4,f +14704,92950,0,2,f +14704,93224pr0003,15,1,f +14704,93273,0,3,f +14704,95199,72,1,f +14704,95326,10,1,f +14704,95674,70,1,f +14704,970c00,15,1,f +14704,970c00,70,1,f +14704,970c00pr0722,72,1,f +14704,970c00pr0740,0,1,f +14704,973pr2772c01,15,1,f +14704,973pr2773c01,27,1,f +14704,973pr2776c01,0,1,f +14704,973pr2790c01,72,1,f +14704,98313,148,2,f +14704,99021,72,2,f +14704,99207,71,5,f +14704,99781,71,1,f +14705,2412b,19,1,f +14705,2450,4,2,f +14705,2780,0,1,t +14705,2780,0,2,f +14705,298c02,0,2,f +14705,298c02,0,1,t +14705,3001,72,1,f +14705,3002,4,1,f +14705,30165,4,2,f +14705,3021,4,1,f +14705,3022,4,2,f +14705,3023,71,3,f +14705,3039,4,2,f +14705,30414,72,4,f +14705,3062b,27,2,f +14705,3068b,19,1,f +14705,3070b,36,1,f +14705,3070b,34,1,t +14705,3070b,36,1,t +14705,3070b,34,1,f +14705,32018,72,2,f +14705,32054,0,6,f +14705,32294,72,4,f +14705,32476,72,2,f +14705,3626bpr0630,71,1,f +14705,3626bpr0643,14,1,f +14705,3749,19,3,f +14705,3794b,19,1,f +14705,42610,71,2,f +14705,4289,72,1,f +14705,44728,4,2,f +14705,4519,71,3,f +14705,4735,71,2,f +14705,4740,72,2,f +14705,4740,47,2,f +14705,47458,4,1,f +14705,50950,4,2,f +14705,50967,4,4,f +14705,54200,47,2,f +14705,54200,47,1,t +14705,57565,135,2,f +14705,58176,35,2,f +14705,59275,27,2,f +14705,59443,72,2,f +14705,59900,72,2,f +14705,60176,72,2,f +14705,60478,72,2,f +14705,60897,4,4,f +14705,6091,4,3,f +14705,61184,71,2,f +14705,61252,0,2,f +14705,61403,71,1,f +14705,61409,72,2,f +14705,6141,71,2,f +14705,6141,71,1,t +14705,61678,4,3,f +14705,64711,0,1,f +14705,64712,0,2,f +14705,8059stk01,9999,1,t +14705,85940,0,2,f +14705,87748pr0002,35,1,f +14705,87752,35,1,f +14705,87754,72,1,f +14705,87758pr01,272,1,f +14705,89159,35,1,f +14705,92290,297,1,f +14705,970c00,272,1,f +14705,970c00pr0145,72,1,f +14705,973pr1555c01,272,1,f +14705,973pr1557c01,72,1,f +14706,2412b,0,2,f +14706,2420,4,3,f +14706,2445,0,1,f +14706,3004,4,5,f +14706,3004,0,2,f +14706,3005,4,13,f +14706,3005,47,2,f +14706,3008,15,2,f +14706,3009,4,2,f +14706,3020,4,4,f +14706,3022,0,2,f +14706,3023,4,6,f +14706,3024,4,6,f +14706,3024,4,1,t +14706,3031,19,2,f +14706,30414,4,1,f +14706,3065,47,17,f +14706,3068b,4,1,f +14706,3069b,15,1,f +14706,3070b,4,2,f +14706,3070b,71,1,t +14706,3070b,4,1,t +14706,3070b,71,1,f +14706,3622,4,1,f +14706,3666,4,2,f +14706,3710,19,2,f +14706,3710,4,2,f +14706,3832,71,1,f +14706,4477,4,6,f +14706,4600,71,2,f +14706,50951,0,4,f +14706,60212,4,2,f +14706,6091,4,4,f +14706,6141,47,1,t +14706,6141,36,2,f +14706,6141,47,2,f +14706,6141,36,1,t +14706,85984,4,2,f +14706,87079,4,5,f +14706,93274,4,1,f +14706,93594,179,4,f +14707,11211,71,1,f +14707,11215,0,2,f +14707,11215,14,2,f +14707,11458,0,1,f +14707,11477,0,8,f +14707,11477,14,2,f +14707,14719,0,4,f +14707,14769,0,2,f +14707,15068,0,2,f +14707,15068pr0017,14,1,f +14707,15413,0,4,f +14707,15461,0,2,f +14707,15535,71,1,f +14707,15573,14,8,f +14707,15573,0,14,f +14707,15712,0,8,f +14707,18649,0,2,f +14707,18654,71,3,f +14707,18654,71,1,t +14707,18671,72,3,f +14707,18674,71,1,f +14707,18975,72,2,f +14707,22484,72,1,f +14707,23443,0,7,f +14707,2412b,0,8,f +14707,2412b,179,5,f +14707,2412b,14,12,f +14707,2420,0,2,f +14707,2420,14,12,f +14707,24201,0,2,f +14707,2431,71,1,f +14707,2431,0,5,f +14707,2431,14,5,f +14707,2431pr0088,0,1,f +14707,2431pr0089,15,1,f +14707,2431pr0090,191,1,f +14707,24947,71,1,f +14707,25214,71,5,f +14707,25214,0,2,f +14707,2540,0,1,f +14707,26047,0,3,f +14707,2654,47,2,f +14707,2654,0,4,f +14707,26599,71,2,f +14707,26603,14,2,f +14707,26603,0,4,f +14707,2723pr0002,0,4,f +14707,2780,0,3,t +14707,2780,0,27,f +14707,2819,0,1,f +14707,2921,71,2,f +14707,3002,72,1,f +14707,3003,0,2,f +14707,3004,1,2,f +14707,3004,0,4,f +14707,3004pr022r,14,1,f +14707,3004pr023l,14,1,f +14707,3005,14,2,f +14707,3005,0,5,f +14707,3008,14,2,f +14707,3009,71,1,f +14707,3009,0,1,f +14707,3009pr620r,0,2,f +14707,3010,0,2,f +14707,30132,72,4,f +14707,30132,72,1,t +14707,3020,0,1,f +14707,3020,14,2,f +14707,3020,71,6,f +14707,3021,71,1,f +14707,3021,0,10,f +14707,3022,72,10,f +14707,3023,0,10,f +14707,3023,72,5,f +14707,3023,72,2,t +14707,3023,14,10,f +14707,3023,19,23,f +14707,30236,71,1,f +14707,3024,0,3,t +14707,3024,71,1,t +14707,3024,71,2,f +14707,3024,14,2,t +14707,3024,14,12,f +14707,3024,0,9,f +14707,3032,14,1,f +14707,3032,0,1,f +14707,30367c,0,2,f +14707,30374,70,2,f +14707,30377,71,1,t +14707,30377,71,3,f +14707,30383,0,2,f +14707,3039,0,2,f +14707,3040b,0,2,f +14707,30553,0,1,t +14707,30553,0,3,f +14707,3062b,4,4,f +14707,3068b,4,5,f +14707,3068b,14,6,f +14707,3068b,0,1,f +14707,3068bpr0330,14,1,f +14707,3069b,14,12,f +14707,3069b,0,6,f +14707,3069bpr0186,14,1,f +14707,3070b,47,2,t +14707,3070b,14,8,f +14707,3070b,0,5,f +14707,3070b,15,1,f +14707,3070b,36,2,t +14707,3070b,15,1,t +14707,3070b,14,1,t +14707,3070b,0,2,t +14707,3070b,47,5,f +14707,3070b,36,3,f +14707,3176,0,4,f +14707,32000,71,2,f +14707,32062,4,5,f +14707,32123b,71,4,f +14707,32123b,71,1,t +14707,32124,0,3,f +14707,32324,71,2,f +14707,32523,1,4,f +14707,32526,72,2,f +14707,32530,4,2,f +14707,3460,1,3,f +14707,3460,14,2,f +14707,3460,72,2,f +14707,3622,14,2,f +14707,3623,14,14,f +14707,3623,0,4,f +14707,3626c,1000,1,f +14707,3660,71,1,f +14707,3666,14,7,f +14707,3666,0,3,f +14707,3678b,0,4,f +14707,3700,14,2,f +14707,3703,72,2,f +14707,3705,0,1,f +14707,3707,4,1,f +14707,3710,14,6,f +14707,3710,72,7,f +14707,3737,0,1,f +14707,3738,0,4,f +14707,3747a,72,4,f +14707,3795,72,1,f +14707,3795,0,3,f +14707,3832,72,1,f +14707,3894,72,3,f +14707,3895,0,2,f +14707,3937,71,3,f +14707,3937,0,1,f +14707,3938,72,3,f +14707,3941,71,4,f +14707,4032a,71,1,f +14707,4032a,72,3,f +14707,4070,72,2,f +14707,4081b,14,2,f +14707,4162pr0054,14,2,f +14707,41677,71,4,f +14707,41770,0,1,f +14707,4287,14,2,f +14707,43093,1,3,f +14707,44567a,71,1,f +14707,44676,0,1,f +14707,44728,14,4,f +14707,4477,0,5,f +14707,4477,14,4,f +14707,4519,71,2,f +14707,4733,71,1,f +14707,4735,0,2,f +14707,4740,71,1,f +14707,48336,0,4,f +14707,48729b,72,6,f +14707,48729b,72,1,t +14707,5102c12,71,1,f +14707,52107,71,2,f +14707,54200,0,1,t +14707,54200,0,1,f +14707,55013,72,2,f +14707,56145,0,4,f +14707,59443,0,1,f +14707,59900,0,2,f +14707,60475b,14,2,f +14707,60475b,0,1,f +14707,60478,15,2,f +14707,60481,14,2,f +14707,6060,14,14,f +14707,6060,0,4,f +14707,6081,14,10,f +14707,6091,14,8,f +14707,6134,4,1,f +14707,6141,4,1,t +14707,6141,182,2,f +14707,6141,0,1,f +14707,6141,182,1,t +14707,6141,4,2,f +14707,6141,0,1,t +14707,6179,0,1,f +14707,6180,71,1,f +14707,6192,0,1,f +14707,62462,0,4,f +14707,62462,71,1,f +14707,62885,0,1,f +14707,63864,14,2,f +14707,63864,0,6,f +14707,63868,0,9,f +14707,64567,0,2,f +14707,64567,80,4,f +14707,64567,0,1,t +14707,64567,80,1,t +14707,6558,1,4,f +14707,6632,71,2,f +14707,6636,0,2,f +14707,6636,14,2,f +14707,73983,14,8,f +14707,73983,72,3,f +14707,85861,71,1,t +14707,85861,71,1,f +14707,85984,71,3,f +14707,87079,0,5,f +14707,87079pr0110,14,1,f +14707,87079pr0111,0,1,f +14707,87079pr0112,14,1,f +14707,87087,14,2,f +14707,87580,14,1,f +14707,87580,4,4,f +14707,87994,0,1,t +14707,87994,0,2,f +14707,88072,72,2,f +14707,88646,0,1,f +14707,88704,0,1,f +14707,88930,71,2,f +14707,92280,0,6,f +14707,92593,72,2,f +14707,92593,14,3,f +14707,93094,5,1,t +14707,93094,5,2,f +14707,93273,72,1,f +14707,93273,0,2,f +14707,96874,25,1,t +14707,98100,71,1,f +14707,98138,71,2,t +14707,98138,0,2,t +14707,98138,0,2,f +14707,98138,71,3,f +14707,98138pr0012,179,3,f +14707,98138pr0012,179,1,t +14707,98138pr0072,0,1,f +14707,98138pr0072,0,1,t +14707,99206,71,4,f +14707,99207,71,1,f +14707,99780,71,4,f +14707,99780,0,14,f +14707,99781,1,4,f +14708,2412b,0,1,f +14708,2419,14,1,f +14708,2420,0,4,f +14708,2436,0,1,f +14708,2780,0,1,t +14708,2780,0,2,f +14708,3001,0,1,f +14708,3010,0,1,f +14708,3032,0,1,f +14708,30391,0,4,f +14708,3040b,72,2,f +14708,30602,14,2,f +14708,3062b,0,4,f +14708,3070b,14,2,f +14708,3070b,14,1,t +14708,32013,72,1,f +14708,32018,0,2,f +14708,32062,4,1,f +14708,32064b,0,1,f +14708,32123b,14,4,f +14708,32123b,14,1,t +14708,3623,71,2,f +14708,3666,14,3,f +14708,3700,14,1,f +14708,3707,0,1,f +14708,3710,72,4,f +14708,3713,71,1,t +14708,3713,71,2,f +14708,3737,0,1,f +14708,3795,0,1,f +14708,4081b,72,2,f +14708,41767,14,1,f +14708,41768,14,1,f +14708,43722,14,1,f +14708,43723,14,1,f +14708,45677,14,1,f +14708,54200,182,1,t +14708,54200,182,2,f +14708,54200,0,6,f +14708,54200,0,1,t +14708,55982,0,4,f +14708,61073,0,1,f +14708,6126a,182,2,f +14708,61409,14,2,f +14708,61409,72,2,f +14708,6141,71,1,t +14708,6141,182,1,t +14708,6141,182,2,f +14708,6141,71,4,f +14708,61678,14,2,f +14708,62361,14,2,f +14708,87941,72,1,f +14708,87943,4,1,f +14708,87944,72,1,f +14708,88166,9999,1,t +14708,88496,72,1,f +14710,11211,19,1,f +14710,15573,15,1,f +14710,15672,15,2,f +14710,3003,15,1,f +14710,3004,0,1,f +14710,30176,2,2,f +14710,3022,15,1,f +14710,3023,0,1,f +14710,3039,15,1,f +14710,3062b,27,2,f +14710,3679,71,1,f +14710,3680,15,1,f +14710,3710,0,2,f +14710,3710,15,1,f +14710,3795,2,1,f +14710,44728,0,1,f +14710,4871,15,1,f +14710,54200,0,2,f +14710,6091,0,4,f +14710,6141,0,3,f +14710,6141,27,2,f +14710,85984,15,1,f +14710,98138pr0008,15,2,f +14713,2780,0,2,f +14713,32034,71,1,f +14713,32062,4,1,f +14713,32184,0,2,f +14713,32199,72,1,f +14713,32316,14,1,f +14713,41669,135,1,f +14713,43093,1,5,f +14713,44033,179,2,f +14713,47298,15,1,f +14713,54271,148,1,f +14713,54821,135,1,f +14713,59426,72,1,f +14713,59443,0,2,f +14714,3001,14,8,f +14714,3001,15,2,f +14714,3001,1,5,f +14714,3001,4,4,f +14714,3002,4,3,f +14714,3002,1,4,f +14714,3002,14,4,f +14714,3003,15,2,f +14714,3003,14,2,f +14714,3003,4,4,f +14714,3003,1,2,f +14714,3004,14,8,f +14714,3004,4,6,f +14714,3004,47,3,f +14714,3004,1,4,f +14714,3004,15,2,f +14714,3005,1,4,f +14714,3005,14,2,f +14714,3005,4,6,f +14714,3008,4,2,f +14714,3009,4,2,f +14714,3010,1,4,f +14714,3010,14,4,f +14714,3010,4,4,f +14714,3020,4,2,f +14714,3021,4,2,f +14714,3022,4,2,f +14714,3034,4,2,f +14714,3039,47,2,f +14714,3137c01,0,2,f +14714,3297,4,2,f +14714,3298,4,4,f +14714,3299,4,1,f +14714,3300,4,2,f +14714,3641,0,4,f +14714,3741,2,2,f +14714,3742,4,3,f +14714,3742,15,3,f +14714,3742,4,1,t +14714,3742,15,1,t +14714,3853,15,3,f +14714,3854,15,6,f +14714,3856,2,6,f +14714,3861b,15,1,f +14714,3867,2,1,f +14715,11153,326,2,f +14715,11458,72,2,f +14715,11477,326,4,f +14715,12825,14,6,f +14715,15207,71,1,f +14715,15738pat01,28,1,f +14715,15738pat01pr001,28,1,f +14715,16640pr0002,326,1,f +14715,16640pr0006,288,1,f +14715,2412b,179,7,f +14715,2431,15,1,f +14715,2431pr0017,14,2,f +14715,2432,71,2,f +14715,2460,72,1,f +14715,2540,71,4,f +14715,2569,0,1,f +14715,2584,0,1,f +14715,2585,71,1,f +14715,2817,0,2,f +14715,298c02,14,1,f +14715,3005,326,6,f +14715,3010,28,2,f +14715,3010,326,14,f +14715,30162,72,1,f +14715,3020,326,2,f +14715,3021,72,3,f +14715,3022,14,9,f +14715,3023,28,11,f +14715,3023,36,2,f +14715,30236,0,1,f +14715,3024,326,2,f +14715,3031,72,2,f +14715,3032,72,2,f +14715,3034,72,3,f +14715,3036,72,2,f +14715,30367c,4,1,f +14715,3039,326,3,f +14715,30395,320,1,f +14715,30414,4,4,f +14715,3062b,71,8,f +14715,30663,71,1,f +14715,3068b,0,1,f +14715,3068bpr0137,15,1,f +14715,3069bpr0030,15,1,f +14715,3069bpr0137,71,1,f +14715,3070bpr0007,71,1,f +14715,32018,0,2,f +14715,32039,4,2,f +14715,3245c,14,1,f +14715,3460,0,3,f +14715,3626cpr0472,78,1,f +14715,3626cpr1452,0,1,f +14715,3666,71,8,f +14715,3679,71,1,f +14715,3680,0,1,f +14715,3700,71,2,f +14715,3701,14,5,f +14715,3710,28,5,f +14715,3747a,71,1,f +14715,3749,19,4,f +14715,3795,72,2,f +14715,3823,40,2,f +14715,3829c01,71,1,f +14715,3832,71,2,f +14715,3937,14,1,f +14715,3941,4,1,f +14715,3957b,0,2,f +14715,4162,72,5,f +14715,4176,40,1,f +14715,43898,0,1,f +14715,43898,47,1,f +14715,43898,179,1,f +14715,44302a,71,2,f +14715,44567a,71,2,f +14715,4477,72,3,f +14715,4519,71,1,f +14715,45677,326,4,f +14715,4595,0,1,f +14715,4697b,71,1,f +14715,4740,0,4,f +14715,48336,15,2,f +14715,50950,71,2,f +14715,53989,179,4,f +14715,54200,36,1,f +14715,56823c100,0,1,f +14715,56898,0,4,f +14715,56904,14,4,f +14715,58176,179,4,f +14715,59443,4,4,f +14715,59900,4,4,f +14715,6003,72,1,f +14715,6020,14,1,f +14715,60470a,0,7,f +14715,60475a,0,4,f +14715,60481,326,2,f +14715,60849,0,1,f +14715,60897,0,4,f +14715,6091,0,1,f +14715,61184,71,4,f +14715,6134,71,1,f +14715,61409,0,4,f +14715,6141,47,1,f +14715,6141,14,7,f +14715,6141,46,8,f +14715,6180,0,2,f +14715,63864,14,4,f +14715,63868,71,1,f +14715,63965,72,1,f +14715,6587,28,4,f +14715,6636,326,9,f +14715,75c03,70,2,f +14715,85984,71,2,f +14715,87079,71,1,f +14715,87552,40,4,f +14715,87609,0,2,f +14715,92081,70,1,f +14715,92099,72,2,f +14715,92338,72,1,f +14715,92438,72,1,f +14715,92593,326,9,f +14715,92946,14,2,f +14715,95199,72,1,f +14715,95347,0,1,f +14715,970c00,379,1,f +14715,970c00pr0682,326,1,f +14715,970c00pr0683,326,1,f +14715,970c00pr0686,288,1,f +14715,973pr2707c01,272,1,f +14715,973pr2708c01,0,1,f +14715,973pr2709c01,326,1,f +14715,973pr2712c01,288,1,f +14715,98138,179,2,f +14715,98138,34,1,f +14715,98138,36,4,f +14715,98138,47,4,f +14715,98139,179,2,f +14715,99206,71,8,f +14715,99207,0,2,f +14715,99780,72,8,f +14716,22670,63,1,f +14716,2417,10,2,f +14716,2456,15,2,f +14716,2555,15,5,f +14716,2921,15,2,f +14716,30016,15,2,f +14716,3005,4,1,f +14716,3005,114,9,f +14716,3008,15,3,f +14716,30111,15,1,f +14716,30153,47,10,f +14716,30224,45,1,f +14716,3027,15,1,f +14716,3031,15,1,f +14716,3035,15,4,f +14716,3036,15,1,f +14716,3065,114,7,f +14716,3066,114,7,f +14716,33006,4,1,f +14716,33013pb03,15,1,f +14716,33050,5,1,f +14716,3307,15,2,f +14716,33129,29,1,f +14716,33213,29,2,f +14716,33215,26,3,f +14716,33216,114,2,f +14716,33227,26,1,f +14716,33320,2,1,f +14716,3455,15,2,f +14716,3659,5,7,f +14716,3741,2,3,f +14716,3742,5,9,f +14716,3742,4,2,t +14716,3742,5,3,t +14716,3742,4,6,f +14716,3794a,15,3,f +14716,3899,45,3,f +14716,3942c,15,1,f +14716,3957a,15,4,f +14716,3958,15,1,f +14716,4088,15,4,f +14716,4088,26,3,f +14716,4094b,52,1,f +14716,43892,19,1,f +14716,44510pb04,120,1,f +14716,4495b,5,4,f +14716,4589,15,6,f +14716,4589,46,1,f +14716,4728,45,10,f +14716,4740,45,1,f +14716,4794b,70,2,f +14716,50939,77,1,f +14716,59,383,1,f +14716,6124,45,1,f +14716,6141,46,2,f +14716,6141,36,6,f +14716,6175px1,15,1,f +14716,6186,462,1,f +14716,6187,71,1,f +14716,6206,15,1,f +14716,6251pr0002,15,1,f +14716,6255,10,2,f +14716,6256,82,3,f +14716,63965,15,1,f +14716,6942,47,1,f +14716,72515,334,1,f +14716,75347,15,1,f +14716,pouch12,15,1,f +14720,12825,71,4,f +14720,2419,72,4,f +14720,2431,72,1,f +14720,2432,15,1,f +14720,2432,1,1,f +14720,2432,72,1,f +14720,2434,0,1,f +14720,2444,0,4,f +14720,2445,15,1,f +14720,2489,72,1,f +14720,2540,71,2,f +14720,2654,71,1,f +14720,2780,0,24,f +14720,2780,0,2,t +14720,2825,4,1,f +14720,2877,71,3,f +14720,30000,1,1,f +14720,3005,320,1,f +14720,30088,0,2,f +14720,3010,71,3,f +14720,3020,72,1,f +14720,3020,71,1,f +14720,3021,72,1,f +14720,3021,71,4,f +14720,3021,15,1,f +14720,3022,72,4,f +14720,3022,71,2,f +14720,3022,15,1,f +14720,3023,72,10,f +14720,3023,15,1,f +14720,3023,320,2,f +14720,30236,15,2,f +14720,3024,71,10,f +14720,3034,0,1,f +14720,3035,72,1,f +14720,3037,71,2,f +14720,30374,42,1,f +14720,30375,19,2,f +14720,30376,19,2,f +14720,30377,0,1,t +14720,30377,72,1,t +14720,30377,19,2,f +14720,30377,72,1,f +14720,30377,19,1,t +14720,30377,0,2,f +14720,30378,19,2,f +14720,3039,71,1,f +14720,3040b,71,4,f +14720,3040b,72,4,f +14720,30414,71,2,f +14720,30602,72,1,f +14720,3068b,1,1,f +14720,3068b,71,4,f +14720,3069b,72,1,f +14720,3069b,33,1,f +14720,32062,4,2,f +14720,32064b,72,6,f +14720,32064b,320,2,f +14720,32064b,15,2,f +14720,32073,71,1,f +14720,32270,0,1,f +14720,32524,72,2,f +14720,32526,72,4,f +14720,32530,72,2,f +14720,3298,71,8,f +14720,33299a,71,1,f +14720,3460,72,2,f +14720,3626bpr0548,78,1,f +14720,3626bpr0787,19,1,f +14720,3648b,72,1,f +14720,3660,72,2,f +14720,3665,71,1,f +14720,3665,0,2,f +14720,3666,71,2,f +14720,3700,72,10,f +14720,3700,71,2,f +14720,3701,72,4,f +14720,3710,71,4,f +14720,3710,0,2,f +14720,3713,4,1,t +14720,3713,4,1,f +14720,3737,0,1,f +14720,3794b,15,3,f +14720,3794b,320,3,f +14720,3795,71,1,f +14720,3795,320,1,f +14720,3795,1,1,f +14720,3832,71,2,f +14720,3839b,0,1,f +14720,3894,71,2,f +14720,3941,72,6,f +14720,3960,71,1,f +14720,4032a,72,1,f +14720,4085c,15,2,f +14720,41889,148,1,f +14720,41890,148,1,f +14720,42687,148,1,f +14720,4274,1,4,f +14720,4274,1,1,t +14720,4286,72,1,f +14720,4287,15,1,f +14720,43093,1,3,f +14720,43898,72,2,f +14720,44294,71,1,f +14720,4519,71,2,f +14720,4599b,0,2,f +14720,4600,71,1,f +14720,4623,71,2,f +14720,4716,71,1,f +14720,4740,36,2,f +14720,51739,72,8,f +14720,52345,0,1,f +14720,54200,71,1,t +14720,54200,72,1,t +14720,54200,71,4,f +14720,54200,72,2,f +14720,55013,72,1,f +14720,57028c01,71,1,f +14720,57796,72,1,f +14720,58247,0,2,f +14720,59230,19,2,f +14720,59230,19,1,t +14720,59443,72,1,f +14720,6005,72,2,f +14720,60483,71,3,f +14720,6081,72,2,f +14720,61189pr0002,15,1,f +14720,61190b,72,1,f +14720,61190c,72,1,t +14720,61190c,72,1,f +14720,61190f,72,2,f +14720,6120,15,4,f +14720,61409,72,2,f +14720,6141,33,1,t +14720,6141,33,4,f +14720,61678,15,2,f +14720,6192,72,1,f +14720,63585,72,2,t +14720,63586,72,1,f +14720,63586,72,1,t +14720,63864,71,5,f +14720,64567,80,1,f +14720,64796,148,1,f +14720,6588,47,1,f +14720,6632,72,2,f +14720,6636,71,2,f +14720,6636,15,2,f +14720,73983,71,8,f +14720,85943,72,1,f +14720,87559,72,2,f +14720,87617,0,4,f +14720,87618,71,4,f +14720,92947,71,1,f +14720,970c00pr0216,0,1,f +14720,970x026,15,1,f +14720,973pr1476c01,15,1,f +14720,973pr1769c01,0,1,f +14721,11477,85,4,f +14721,14417,72,2,f +14721,14418,71,2,f +14721,14419,72,2,f +14721,15209,15,1,f +14721,16770,85,4,f +14721,3020,14,1,f +14721,3021,14,1,f +14721,3023,14,4,f +14721,3024,14,1,t +14721,3024,14,2,f +14721,30374,70,4,f +14721,32062,4,1,f +14721,3626cpr1001,15,2,f +14721,3710,0,1,f +14721,3960pr0022,15,1,f +14721,4032a,85,3,f +14721,44728,0,1,f +14721,4740,71,4,f +14721,60474,14,2,f +14721,60476,71,2,f +14721,60478,14,2,f +14721,60897,14,4,f +14721,75937,179,1,f +14721,85861,0,2,f +14721,85861,0,1,t +14721,87620,14,2,f +14721,88072,0,2,f +14722,2412b,0,3,f +14722,2420,15,2,f +14722,2431,71,1,f +14722,2921,71,2,f +14722,3001,2,1,f +14722,30027b,71,4,f +14722,30028,0,4,f +14722,3004,2,1,f +14722,3020,2,2,f +14722,3023,2,3,f +14722,3023,47,2,f +14722,3024,71,2,f +14722,3034,71,1,f +14722,32028,2,2,f +14722,3710,2,3,f +14722,3788,15,1,f +14722,3795,15,1,f +14722,3937,71,1,f +14722,4081b,72,2,f +14722,4286,2,2,f +14722,4600,0,2,f +14722,4865a,2,1,f +14722,54200,47,2,f +14722,54200,46,1,t +14722,54200,46,2,f +14722,54200,47,1,t +14722,6134,0,1,f +14722,6141,182,4,f +14722,6141,182,1,t +14722,6141,71,4,f +14722,6141,71,1,t +14722,6231,71,2,f +14722,87087,15,2,f +14723,2301,4,2,f +14723,2302,10,2,f +14723,2302,4,2,f +14723,2302,1,2,f +14723,3011,10,2,f +14723,3011,4,2,f +14723,3011,25,1,f +14723,3011,1,2,f +14723,3011,14,2,f +14723,31023,15,1,f +14723,3437,15,2,f +14723,3437,10,6,f +14723,3437,46,1,f +14723,3437,27,4,f +14723,3437,4,6,f +14723,3437,1,6,f +14723,3437,73,4,f +14723,3437,484,2,f +14723,3437,25,2,f +14723,3437,29,2,f +14723,3437,14,6,f +14723,3437pr0049,14,1,f +14723,3664pb20,484,1,f +14723,3664pb21,484,1,f +14723,40666,4,2,f +14723,40666,25,1,f +14723,40666,1,1,f +14723,40666,14,1,f +14723,40666,10,2,f +14723,44524,10,1,f +14723,61649,14,1,f +14723,6474,4,2,f +14723,6474,14,2,f +14723,6510,10,1,f +14723,6510,22,1,f +14723,6510,73,1,f +14723,90265,15,1,f +14723,92094,14,1,f +14723,98223,27,1,f +14723,98223,4,1,f +14723,98224,1,1,f +14723,98252,27,2,f +14724,2413,0,1,f +14724,2555,8,1,f +14724,30031,0,1,f +14724,30608,0,1,f +14724,3626bpb0053,14,1,f +14724,3747b,14,1,f +14724,3794a,4,1,f +14724,4032a,14,2,f +14724,42022,25,2,f +14724,42023,14,2,f +14724,4589,57,2,f +14724,4865a,25,2,f +14724,970x026,14,1,f +14724,973pr0805c01,15,1,f +14725,2352,14,2,f +14725,2456,1,2,f +14725,2456,15,2,f +14725,2456,14,2,f +14725,2456,4,2,f +14725,2577,4,4,f +14725,3001,1,12,f +14725,3001,0,4,f +14725,3001,14,12,f +14725,3001,15,8,f +14725,3001,4,12,f +14725,3001pr1,14,1,f +14725,3002,0,4,f +14725,3002,15,4,f +14725,3002,14,6,f +14725,3002,1,6,f +14725,3002,4,6,f +14725,3003,14,14,f +14725,3003,15,8,f +14725,3003,4,14,f +14725,3003,1,14,f +14725,3003,0,8,f +14725,3003pe2,14,2,f +14725,3007,14,2,f +14725,3007,4,2,f +14725,3185,4,4,f +14725,3483,0,4,f +14725,4204,2,1,f +14725,4727,2,4,f +14725,4728,14,1,f +14725,4728,4,2,f +14725,4743,1,1,f +14725,4743,15,1,f +14725,4744pr0002,4,1,f +14725,4744px4,1,1,f +14725,4744px5,4,1,f +14725,4744px6,6,1,f +14725,4745,14,2,f +14725,600,14,1,f +14725,601,14,2,f +14725,6212,1,1,f +14725,6213px3,14,1,f +14725,6214px2,2,1,f +14725,6215,2,4,f +14725,6215,1,8,f +14725,6215,14,4,f +14725,6216,1,2,f +14725,6216,14,1,f +14725,6216,2,1,f +14725,6232,4,2,f +14725,6235,4,1,f +14725,6236,4,1,f +14725,6244px1,15,1,f +14725,6247,14,2,f +14725,6248,4,4,f +14725,6249,4,4,f +14725,82248,1,1,f +14725,82249,15,1,f +14726,32062,0,6,f +14726,32173,8,2,f +14726,32174,0,10,f +14726,32174,57,1,f +14726,32270,7,1,f +14726,3737,0,1,f +14726,3749,19,4,f +14726,44135,8,1,f +14726,44136,8,1,f +14726,44138,0,2,f +14726,44139,8,1,f +14726,44140,0,1,f +14726,44146,135,1,f +14726,44148,8,2,f +14726,44247,8,1,f +14726,44807,0,1,f +14726,4519,7,3,f +14726,45425,135,2,f +14726,45749,8,2,f +14726,6538b,8,1,f +14726,kraataund,22,1,f +14727,11476,71,2,f +14727,11477,85,2,f +14727,11833,30,2,f +14727,14417,72,1,f +14727,14419,72,1,f +14727,14704,71,3,f +14727,14769,30,1,f +14727,15070,15,2,f +14727,15209,15,3,f +14727,15456,0,2,f +14727,3004,30,3,f +14727,3022,0,1,f +14727,3023,0,1,f +14727,3039,30,3,f +14727,33291,191,2,f +14727,33291,191,1,t +14727,4032a,85,2,f +14727,4081b,72,2,f +14727,47457,85,1,f +14727,54200,85,2,f +14727,54200,85,1,t +14727,60478,0,2,f +14727,6141,27,1,f +14727,6141,1,1,f +14727,6141,1,1,t +14727,6141,27,1,t +14727,86500,85,2,f +14727,98138pr0008,15,2,f +14727,98138pr0008,15,1,t +14727,99206,0,1,f +14727,99780,0,3,f +14727,99781,30,3,f +14729,2335px10,7,2,f +14729,2338,0,1,f +14729,2343,47,1,f +14729,2357,7,12,f +14729,2357,0,2,f +14729,2431,0,4,f +14729,2444,7,2,f +14729,2446,0,1,f +14729,2449,0,4,f +14729,2453a,7,6,f +14729,2454a,7,16,f +14729,2456,0,2,f +14729,2458,1,2,f +14729,2490px4,7,1,f +14729,2540,8,2,f +14729,2546,6,1,f +14729,2555,6,8,f +14729,2570,6,4,f +14729,2586p4g,7,3,f +14729,2594,0,1,f +14729,2921,8,2,f +14729,3002,0,2,f +14729,3004,19,6,f +14729,3004,4,1,f +14729,3004,15,1,f +14729,3004,7,61,f +14729,3005,7,4,f +14729,30055,6,3,f +14729,30072,2,1,f +14729,3008,7,11,f +14729,3009,7,6,f +14729,3010,7,3,f +14729,30101,8,1,f +14729,30102px2,47,1,f +14729,30145,0,4,f +14729,30153,34,1,f +14729,3020,0,1,f +14729,3020,4,2,f +14729,3021,1,3,f +14729,3022,7,1,f +14729,3022,0,4,f +14729,3023,15,1,f +14729,3023,7,2,f +14729,3023,15,1,t +14729,3023,4,2,f +14729,3023,0,6,f +14729,30237a,8,2,f +14729,30246,8,2,f +14729,30246,7,4,f +14729,30271px2,2,1,f +14729,30272,7,1,f +14729,30273,8,2,f +14729,30274,19,2,f +14729,30275,8,1,f +14729,3030,8,2,f +14729,3032,8,2,f +14729,3034,7,5,f +14729,3035,0,3,f +14729,3039,1,2,f +14729,3039,7,2,f +14729,3040b,7,2,f +14729,3062b,19,32,f +14729,3068b,0,1,f +14729,3068b,7,2,f +14729,3069b,0,1,f +14729,3069b,7,2,f +14729,32064b,0,1,f +14729,32074c01,0,1,f +14729,3245b,7,4,f +14729,3307,0,2,f +14729,3308,7,2,f +14729,3403,0,1,f +14729,3404,0,1,f +14729,3455,8,8,f +14729,3456,6,1,f +14729,3622,7,2,f +14729,3622,0,2,f +14729,3623,0,6,f +14729,3626bpr0895,15,1,f +14729,3626bpx67,14,1,f +14729,3626bpx68,14,1,f +14729,3626bpx69,14,1,f +14729,3626bpx70,14,1,f +14729,3626bpx71,14,1,f +14729,3626bpx72,14,1,f +14729,3626bpx73,14,1,f +14729,3659,4,2,f +14729,3660,19,6,f +14729,3666,7,2,f +14729,3673,7,1,f +14729,3678ap4h,4,1,f +14729,3679,7,2,f +14729,3680,1,2,f +14729,3684,6,2,f +14729,3684,0,6,f +14729,3685,1,16,f +14729,3688,1,5,f +14729,3700,8,2,f +14729,3701,0,2,f +14729,3701,1,2,f +14729,3702,0,2,f +14729,3731,1,2,f +14729,3749,7,6,f +14729,3794a,8,1,f +14729,3795,0,2,f +14729,3844,0,1,f +14729,3846p4e,7,1,t +14729,3846p4e,7,1,f +14729,3847,8,2,f +14729,3848,0,2,f +14729,3848,7,1,f +14729,3849,0,1,f +14729,3937,8,3,f +14729,3938,0,3,f +14729,3957a,0,4,f +14729,4032a,7,4,f +14729,4032a,4,1,f +14729,4070,0,2,f +14729,4070,6,7,f +14729,4070,8,6,f +14729,4081b,1,1,f +14729,4085c,1,1,f +14729,4201,8,4,f +14729,4204,8,1,f +14729,4286,8,4,f +14729,4444,8,4,f +14729,4477,0,2,f +14729,4490,8,2,f +14729,4495a,4,1,f +14729,4495a,1,4,f +14729,4497,6,1,f +14729,4498,6,1,f +14729,4499,6,1,f +14729,4590,0,1,f +14729,4623,4,2,f +14729,4623,1,1,f +14729,4738a,6,1,f +14729,4739a,6,1,f +14729,4859,1,1,f +14729,4865a,0,7,f +14729,4865a,7,4,f +14729,4871,4,1,f +14729,57503,334,1,f +14729,57504,334,1,f +14729,57505,334,1,f +14729,57506,334,1,f +14729,59,383,3,f +14729,59,383,1,t +14729,6019,0,1,f +14729,6046,6,1,f +14729,6056,7,2,f +14729,6066,7,3,f +14729,6091,0,4,f +14729,6112,7,3,f +14729,6122,0,2,f +14729,6125,4,1,f +14729,6126a,57,1,t +14729,6126a,57,9,f +14729,6141,34,2,f +14729,6141,0,1,t +14729,6141,0,6,f +14729,6141,34,1,t +14729,6222,6,4,f +14729,6249,8,2,f +14729,6260,15,1,f +14729,6265,15,2,f +14729,6265,15,1,t +14729,6266,15,2,f +14729,6541,0,2,f +14729,71015,334,1,f +14729,75998pr0007,15,1,f +14729,76110c01,7,1,f +14729,87692,4,1,f +14729,87693,4,1,t +14729,87694,4,1,t +14729,87695,15,1,t +14729,87695,15,2,f +14729,87696,15,1,t +14729,970c00,0,1,f +14729,970c00pb013,0,1,f +14729,970c00pb014,0,1,f +14729,970c00pb015,0,1,f +14729,970c09pb01,7,1,f +14729,970x026,4,1,f +14729,973px114c01,4,1,f +14729,973px115c01,8,1,f +14729,973px116c01,8,1,f +14729,973px117c01,8,1,f +14729,973px118c01,7,1,f +14729,973px119c01,0,1,f +14729,973px120c01,0,1,f +14729,x58px1,15,1,f +14729,x95px1,1,1,f +14730,10036stk01,9999,1,t +14730,2348b,33,1,f +14730,2349a,15,1,f +14730,2357,15,5,f +14730,2412b,15,2,f +14730,2412b,14,1,f +14730,2412b,4,2,f +14730,2420,4,1,f +14730,2436,15,1,f +14730,2439,8,1,f +14730,2441,4,1,f +14730,2542,6,1,f +14730,3001,15,4,f +14730,3003,14,1,f +14730,3004,15,18,f +14730,3005,15,2,f +14730,3008,15,2,f +14730,3009,15,1,f +14730,3010,15,10,f +14730,3020,15,4,f +14730,3021,4,1,f +14730,3022,4,1,f +14730,3022,15,2,f +14730,3023,4,2,f +14730,3023,7,3,f +14730,3024,15,1,f +14730,3024,4,1,f +14730,3068b,0,2,f +14730,3069b,0,2,f +14730,3190,0,1,f +14730,3460,4,2,f +14730,3622,15,8,f +14730,3623,4,1,f +14730,3626bp02,14,1,f +14730,3626bp03,14,1,f +14730,3626bpr0001,14,1,f +14730,3641,0,4,f +14730,3659,15,1,f +14730,3660,15,1,f +14730,3665,15,2,f +14730,3675,4,4,f +14730,3710,4,2,f +14730,3710,15,1,f +14730,3788,15,2,f +14730,3795,4,1,f +14730,3823,41,1,f +14730,3829c01,7,1,f +14730,3853,15,1,f +14730,3856,15,2,f +14730,3865,7,1,f +14730,3898,15,1,f +14730,3899,47,1,f +14730,3940b,15,1,f +14730,3957a,7,1,f +14730,3960p01,15,1,f +14730,3962b,0,1,f +14730,4070,0,2,f +14730,4085c,15,1,f +14730,4085c,4,1,f +14730,4150p02,14,5,f +14730,4485,15,1,f +14730,4515,4,1,f +14730,4589,0,1,f +14730,4624,15,4,f +14730,4625,15,1,f +14730,4740,8,1,f +14730,4865a,0,2,f +14730,4865pb01,15,1,f +14730,6093,0,1,f +14730,6141,46,2,f +14730,6141,46,1,t +14730,69c01,15,1,f +14730,970c00,7,1,f +14730,970c00,4,1,f +14730,970c00,1,1,f +14730,973pb0061c01,14,1,f +14730,973pb0201c01,15,1,f +14730,973px3c01,15,1,f +14731,11089,0,2,f +14731,11091,15,2,f +14731,11091,272,4,f +14731,11091,85,3,f +14731,11094,0,2,f +14731,11097,179,1,f +14731,11098,179,1,f +14731,11100,0,2,f +14731,11100,15,2,f +14731,11127,41,2,f +14731,11215,71,3,f +14731,12549pr0002,272,1,f +14731,12550pr0003,0,1,f +14731,12825,15,2,f +14731,12825,0,2,f +14731,12825,72,2,f +14731,2412b,320,1,f +14731,2412b,72,10,f +14731,2654,33,2,f +14731,2741,321,2,f +14731,2853,14,2,f +14731,2877,71,2,f +14731,30162,72,2,f +14731,3021,272,1,f +14731,3022,1,1,f +14731,3023,71,3,f +14731,3024,36,1,f +14731,30374,41,2,f +14731,30383,0,2,f +14731,3039,71,2,f +14731,3049d,14,1,f +14731,30526,72,2,f +14731,30553,0,4,f +14731,3062b,41,2,f +14731,3176,320,2,f +14731,32000,71,4,f +14731,32062,4,4,f +14731,32123b,14,1,t +14731,32123b,14,2,f +14731,32270,0,1,f +14731,3626cpr1125,212,1,f +14731,3626cpr1131,0,1,f +14731,3659,0,1,f +14731,3795,15,2,f +14731,3832,72,1,f +14731,4070,15,4,f +14731,4070,0,4,f +14731,4081b,71,2,f +14731,41669,179,2,f +14731,41677,0,2,f +14731,41677,71,2,f +14731,41862,71,4,f +14731,42003,0,2,f +14731,4274,1,4,f +14731,4274,1,1,t +14731,43093,1,8,f +14731,4349,72,1,f +14731,43898,80,2,f +14731,44301a,14,2,f +14731,44568,71,2,f +14731,44570,71,2,f +14731,44675,0,4,f +14731,44728,0,4,f +14731,4740,36,2,f +14731,47755,71,1,f +14731,47905,72,1,f +14731,50304,15,1,f +14731,50305,15,1,f +14731,53451,0,1,t +14731,53451,0,2,f +14731,53586,179,2,f +14731,54383,272,1,f +14731,54384,272,1,f +14731,57585,71,1,f +14731,59443,0,2,f +14731,59900,72,3,f +14731,60477,15,2,f +14731,60483,0,2,f +14731,6091,71,2,f +14731,6091,320,2,f +14731,6141,297,1,t +14731,6141,33,4,f +14731,6141,297,4,f +14731,6141,33,1,t +14731,61485,0,1,f +14731,64225,15,1,f +14731,64567,297,1,t +14731,64567,297,1,f +14731,6558,1,2,f +14731,6587,28,1,f +14731,6629,0,2,f +14731,72454,0,1,f +14731,85984,0,4,f +14731,87081,72,1,f +14731,87083,72,4,f +14731,87580,71,2,f +14731,87747,0,1,t +14731,87747,0,4,f +14731,92280,71,2,f +14731,92338,297,2,f +14731,92946,15,2,f +14731,93273,72,2,f +14731,93273,15,2,f +14731,970c00pr0439,0,1,f +14731,970c00pr0441,272,1,f +14731,973pr2230c01,272,1,f +14731,973pr2241c01,0,1,f +14731,98138,41,5,f +14731,98138,41,1,t +14731,98585,41,2,f +14731,99206,71,1,f +14732,2357,0,4,f +14732,2376,0,1,f +14732,2420,72,1,f +14732,2446,72,1,f +14732,2446,272,1,f +14732,2446,320,1,f +14732,2460,72,1,f +14732,2540,72,5,f +14732,2555,0,2,f +14732,2566,0,2,f +14732,2586px16,320,1,f +14732,2587pb08,73,1,f +14732,2587pb09,320,1,f +14732,2587pb10,85,1,f +14732,2607,0,2,f +14732,2817,72,1,f +14732,2817,4,2,f +14732,3001,70,2,f +14732,3002,70,3,f +14732,3003,72,1,f +14732,3003,70,1,f +14732,3004,72,2,f +14732,3004,0,1,f +14732,3004,70,5,f +14732,30045,320,1,f +14732,3005,70,1,f +14732,3005,0,4,f +14732,3007,0,2,f +14732,3010,0,1,f +14732,3010,70,1,f +14732,30104,72,2,f +14732,30134,0,1,f +14732,30151a,70,1,f +14732,3020,72,1,f +14732,3020,320,1,f +14732,3023,320,1,f +14732,3023,0,1,f +14732,30246,0,3,f +14732,3028,320,1,f +14732,3029,28,3,f +14732,3031,0,3,f +14732,3031,72,1,f +14732,3035,320,2,f +14732,30365,0,1,f +14732,30386,0,4,f +14732,3039,72,2,f +14732,30540,0,1,f +14732,30552,0,3,f +14732,30553,0,3,f +14732,3062b,19,3,f +14732,3062b,57,3,f +14732,32000,71,1,f +14732,32016,0,4,f +14732,32034,0,2,f +14732,32054,0,1,f +14732,32062,4,9,f +14732,32069,135,2,f +14732,32123b,71,5,f +14732,32192,0,4,f +14732,3307,0,2,f +14732,3460,0,1,f +14732,3622,72,2,f +14732,3626bpb0217,14,1,f +14732,3626bpb0218,14,1,f +14732,3626bpr0350,14,1,f +14732,3626bpr0351,14,1,f +14732,3626bpr0895,15,1,f +14732,3660,320,2,f +14732,3665,72,3,f +14732,3684,70,2,f +14732,3700,0,1,f +14732,3702,0,2,f +14732,3708,0,2,f +14732,3710,320,1,f +14732,3713,71,2,f +14732,3747b,320,1,f +14732,3749,19,2,f +14732,3795,320,6,f +14732,3830,72,2,f +14732,3831,72,2,f +14732,3832,72,1,f +14732,3846pb17,151,1,f +14732,3846pb18,151,1,f +14732,3848,0,1,f +14732,3849,0,2,f +14732,3894,4,2,f +14732,3956,0,1,f +14732,4070,0,1,f +14732,4070,72,1,f +14732,4085c,72,3,f +14732,4095,0,1,f +14732,41669,0,2,f +14732,41752,72,1,f +14732,43093,1,12,f +14732,43719,0,2,f +14732,43888,72,7,f +14732,43899,72,2,f +14732,44567a,72,2,f +14732,4491b,72,1,f +14732,4519,71,2,f +14732,4529,0,2,f +14732,4589,0,1,f +14732,4623,0,1,f +14732,4735,0,2,f +14732,47847,70,1,f +14732,48336,320,1,f +14732,48485,85,1,f +14732,48486,73,1,f +14732,48489,0,1,f +14732,48490,0,1,f +14732,48492,73,1,f +14732,48493,0,1,f +14732,48495,134,1,f +14732,48495,179,1,f +14732,48495,0,1,f +14732,48723,70,1,f +14732,49668,135,13,f +14732,6020,0,4,f +14732,6066,0,4,f +14732,6079,0,3,f +14732,6082,70,2,f +14732,6108,0,2,f +14732,6126a,57,4,f +14732,6141,57,3,f +14732,6260,15,1,f +14732,6265,15,2,f +14732,6266,15,2,f +14732,6541,0,2,f +14732,75535,72,1,f +14732,75998pr0007,15,1,f +14732,85543,15,2,f +14732,970x140,73,1,f +14732,970x154,0,2,f +14732,970x199,85,1,f +14732,973c36,85,1,f +14732,973c40,73,1,f +14732,973c41,0,1,f +14732,973pb0347c01,0,1,f +14732,bb181set,47,1,f +14734,10884,27,2,f +14734,11211,19,3,f +14734,11253,25,1,t +14734,11253,25,2,f +14734,11816pr0006,78,1,f +14734,14226c11,0,1,t +14734,14226c11,0,1,f +14734,14769pr0009,15,1,f +14734,15573,272,2,f +14734,15712,71,2,f +14734,2357,4,2,f +14734,2412b,71,1,f +14734,2420,30,1,f +14734,2431,25,3,f +14734,2456,19,2,f +14734,2456,71,2,f +14734,2496,85,2,f +14734,3001,19,1,f +14734,3001,27,4,f +14734,3001,70,2,f +14734,3002,27,1,f +14734,3004,15,1,f +14734,3004,4,5,f +14734,3004,2,1,f +14734,30089,0,1,f +14734,30093,10,1,f +14734,30099,15,4,f +14734,30099,25,4,f +14734,3010,71,1,f +14734,3010,30,2,f +14734,30136,84,1,f +14734,30137,84,2,f +14734,30162,72,1,f +14734,3020,15,4,f +14734,3020,1,2,f +14734,3020,25,2,f +14734,3022,31,1,f +14734,3023,71,2,f +14734,3024,70,2,f +14734,3024,30,2,f +14734,3024,70,1,t +14734,3024,182,1,t +14734,3024,182,3,f +14734,3024,30,1,t +14734,3031,27,1,f +14734,3032,19,3,f +14734,3032,322,2,f +14734,30374,71,1,f +14734,3039,2,2,f +14734,30414,14,1,f +14734,3062b,70,2,f +14734,3062b,33,1,f +14734,3062b,4,1,f +14734,3062b,46,1,f +14734,3065,47,3,f +14734,3068b,71,1,f +14734,3068b,4,2,f +14734,3069b,4,3,f +14734,3069b,191,2,f +14734,3069b,70,3,f +14734,3069bpr0130,322,1,f +14734,3070b,4,1,f +14734,3070b,4,1,t +14734,32016,70,2,f +14734,32062,4,2,f +14734,3298,71,4,f +14734,33291,10,1,f +14734,33291,10,1,t +14734,3622,19,2,f +14734,3622,4,3,f +14734,3626b,70,2,f +14734,3666,19,1,f +14734,3710,4,1,f +14734,3710,272,1,f +14734,3710,70,1,f +14734,3710,25,2,f +14734,3710,30,1,f +14734,3795,25,2,f +14734,3957a,15,1,f +14734,3958,27,1,f +14734,4083,15,1,f +14734,4175,191,1,f +14734,42511,27,1,f +14734,4274,71,1,t +14734,4274,71,1,f +14734,4345b,4,1,f +14734,4346,47,1,f +14734,4495b,2,1,f +14734,4523,27,1,f +14734,48336,71,1,f +14734,59900,2,1,f +14734,59900,25,5,f +14734,60470a,15,1,f +14734,6141,4,1,t +14734,6141,4,2,f +14734,6141,15,1,t +14734,6141,41,3,f +14734,6141,0,2,f +14734,6141,15,1,f +14734,6141,41,1,t +14734,6141,0,1,t +14734,6190,322,1,f +14734,6192,71,1,f +14734,63864,30,2,f +14734,63864,15,1,f +14734,64644,308,1,f +14734,6636,30,4,f +14734,73983,71,1,f +14734,87079,30,5,f +14734,87087,19,4,f +14734,87580,70,1,f +14734,87994,70,1,f +14734,87994,70,1,t +14734,88930,25,2,f +14734,92254pr0003,320,1,f +14734,92456pr0040c01,78,1,f +14734,92819pr0004,272,1,f +14734,92947,70,1,f +14734,93088pr0002,15,1,f +14734,93160,15,1,f +14734,93160,15,1,t +14734,98138,179,2,f +14734,98138,179,1,t +14734,98138,47,1,t +14734,98138,71,1,t +14734,98138,71,5,f +14734,98138,47,1,f +14734,98138pr0024a,179,1,f +14734,98138pr0024a,179,1,t +14736,2420,15,6,f +14736,2420,19,4,f +14736,2431,19,9,f +14736,3001,19,3,f +14736,3003,19,2,f +14736,3020,15,1,f +14736,3020,0,2,f +14736,3021,19,1,f +14736,3022,19,1,f +14736,3023,15,1,f +14736,3023,40,11,f +14736,3023,19,3,f +14736,3023,0,4,f +14736,3024,19,4,f +14736,3024,15,2,f +14736,3032,72,2,f +14736,3032,19,2,f +14736,3034,19,2,f +14736,3034,71,1,f +14736,30414,19,2,f +14736,30602,15,1,f +14736,3068b,19,16,f +14736,3069b,15,1,f +14736,3069b,19,22,f +14736,3070b,19,8,f +14736,3070b,19,1,t +14736,32028,28,1,f +14736,3300,15,1,f +14736,3456,72,2,f +14736,3460,19,2,f +14736,3623,19,2,f +14736,3666,19,2,f +14736,3679,71,2,f +14736,3680,0,2,f +14736,3710,19,2,f +14736,3710,71,2,f +14736,3794b,19,31,f +14736,3832,0,2,f +14736,3937,15,10,f +14736,3938,71,6,f +14736,4162,0,1,f +14736,4162pr0013,0,1,f +14736,4282,0,3,f +14736,43712,15,1,f +14736,44728,19,2,f +14736,47753,15,4,f +14736,4865a,40,3,f +14736,54200,40,1,t +14736,54200,0,1,t +14736,54200,19,21,f +14736,54200,15,1,t +14736,54200,40,18,f +14736,54200,19,1,t +14736,54200,0,1,f +14736,54200,15,9,f +14736,6134,71,4,f +14736,64225,15,4,f +14736,6636,0,8,f +14736,85984,15,10,f +14736,93273,19,2,f +14737,14226c11,0,2,f +14737,14226c11,0,1,t +14737,14520,72,6,f +14737,15207,14,2,f +14737,15207,25,2,f +14737,15210pr01,0,1,f +14737,2412b,36,1,f +14737,2412b,0,1,f +14737,2412b,4,11,f +14737,2412b,71,24,f +14737,2420,4,2,f +14737,2431,14,1,f +14737,2431,0,3,f +14737,2431pr0017,14,4,f +14737,2432,1,1,f +14737,2432,15,1,f +14737,2437,40,3,f +14737,2445,15,2,f +14737,2445,71,4,f +14737,2454a,15,4,f +14737,2460,4,2,f +14737,2474,72,3,f +14737,2475,4,3,f +14737,2476a,15,2,f +14737,2486,14,2,f +14737,2498,1,9,f +14737,2584,0,1,f +14737,2585,71,1,f +14737,2654,71,8,f +14737,2780,0,13,f +14737,2877,72,7,f +14737,30000,71,2,f +14737,3001,15,8,f +14737,3001,19,1,f +14737,3002,19,1,f +14737,3002,15,2,f +14737,3002,14,1,f +14737,3003,0,4,f +14737,3003,1,1,f +14737,3004,1,2,f +14737,3004,15,4,f +14737,3005,15,6,f +14737,3005,14,4,f +14737,3005,71,4,f +14737,3008,0,2,f +14737,3009,15,24,f +14737,3009,71,6,f +14737,3010,14,8,f +14737,3010,15,4,f +14737,3020,0,1,f +14737,3020,71,2,f +14737,3020,4,1,f +14737,3020,1,2,f +14737,3020,72,2,f +14737,3020,14,1,f +14737,3020,15,1,f +14737,3020,2,1,f +14737,3020,19,2,f +14737,3020,25,2,f +14737,3021,15,1,f +14737,3021,71,1,f +14737,3021,2,2,f +14737,3021,70,1,f +14737,3022,15,4,f +14737,3022,71,2,f +14737,3022,0,1,f +14737,3022,19,2,f +14737,3023,1,1,f +14737,3023,46,4,f +14737,3023,15,10,f +14737,3023,72,4,f +14737,3023,0,5,f +14737,3023,36,1,f +14737,3023,2,1,f +14737,3024,36,2,f +14737,3024,182,8,f +14737,3024,2,8,f +14737,3030,72,1,f +14737,3030,71,1,f +14737,3031,14,1,f +14737,3037,15,2,f +14737,3039,14,1,f +14737,3039,15,2,f +14737,3039,4,2,f +14737,30395,72,1,f +14737,3040b,25,2,f +14737,3040b,15,2,f +14737,3040b,71,2,f +14737,3040bpr0003,71,1,f +14737,30414,4,3,f +14737,30553,72,2,f +14737,3062b,46,4,f +14737,3062b,14,1,f +14737,3068b,0,2,f +14737,3068b,14,2,f +14737,3068b,19,1,f +14737,3068b,15,1,f +14737,3068bpr0136,72,1,f +14737,3069b,182,2,f +14737,3069b,15,2,f +14737,3069bpr0030,15,1,f +14737,3070b,4,1,t +14737,3070b,1,1,t +14737,3070b,1,2,f +14737,3070b,4,5,f +14737,3176,14,1,f +14737,32009,72,2,f +14737,32018,0,2,f +14737,32028,15,2,f +14737,32034,71,1,f +14737,32039,14,2,f +14737,32054,4,1,f +14737,32062,4,8,f +14737,32269,0,1,f +14737,32270,0,1,f +14737,32316,15,2,f +14737,32324,71,1,f +14737,32530,72,1,f +14737,32556,19,2,f +14737,3460,71,3,f +14737,3622,15,4,f +14737,3623,71,6,f +14737,3626cpr0389,14,1,f +14737,3626cpr0498,14,1,f +14737,3626cpr0649,14,1,f +14737,3626cpr0743,14,1,f +14737,3626cpr0892,14,1,f +14737,3665,15,2,f +14737,3666,2,16,f +14737,3673,71,1,t +14737,3673,71,6,f +14737,3700,15,18,f +14737,3701,72,6,f +14737,3702,71,4,f +14737,3709,15,1,f +14737,3710,72,4,f +14737,3710,0,2,f +14737,3710,19,3,f +14737,3710,1,2,f +14737,3710,2,2,f +14737,3710,25,2,f +14737,3710,4,2,f +14737,3710,15,5,f +14737,3713,4,1,t +14737,3713,4,2,f +14737,3738,71,1,f +14737,3738,4,1,f +14737,3794b,71,8,f +14737,3795,14,2,f +14737,3829c01,1,1,f +14737,3829c01,4,3,f +14737,3832,1,1,f +14737,3836,70,1,f +14737,3857,72,1,f +14737,3867,72,1,f +14737,3894,14,3,f +14737,3899,4,2,f +14737,3901,70,1,f +14737,3941,15,4,f +14737,3941,72,1,f +14737,4032a,0,1,f +14737,4079,1,1,f +14737,4083,14,1,f +14737,4085c,0,2,f +14737,4150,0,2,f +14737,42610,71,6,f +14737,4274,1,24,f +14737,4274,1,2,t +14737,4282,15,2,f +14737,43093,1,11,f +14737,43337,1,2,f +14737,4360,0,1,f +14737,43719,15,2,f +14737,43722,25,1,f +14737,43723,25,1,f +14737,44294,71,2,f +14737,44301a,15,2,f +14737,44301a,0,2,f +14737,4449,70,1,f +14737,44567a,0,1,f +14737,44728,2,2,f +14737,4477,15,2,f +14737,4477,72,4,f +14737,4515,72,2,f +14737,4536,15,2,f +14737,45677,25,1,f +14737,45677,15,2,f +14737,4599b,14,3,f +14737,4623,0,1,f +14737,47994,0,6,f +14737,48336,14,4,f +14737,4854,15,1,f +14737,4865a,41,3,f +14737,4865b,19,8,f +14737,50745,72,8,f +14737,50745,14,4,f +14737,50951,0,1,t +14737,50951,0,4,f +14737,51011,0,8,f +14737,52036,72,4,f +14737,52038,14,2,f +14737,52107,14,3,f +14737,52501,72,2,f +14737,52501,15,2,f +14737,52501,14,2,f +14737,52501,1,2,f +14737,53989,179,1,f +14737,54200,72,2,f +14737,54200,46,10,f +14737,54200,14,1,t +14737,54200,14,2,f +14737,54200,36,2,t +14737,54200,47,1,t +14737,54200,36,6,f +14737,54200,72,1,t +14737,54200,47,2,f +14737,55295,0,1,f +14737,55296,0,1,f +14737,55297,0,1,f +14737,55298,0,1,f +14737,55299,0,1,f +14737,55300,0,1,f +14737,56823c50,0,2,f +14737,56902,71,2,f +14737,56904,71,1,f +14737,57783,41,3,f +14737,57895,47,4,f +14737,59363,0,1,f +14737,6014b,71,8,f +14737,6014b,15,4,f +14737,60474,15,1,f +14737,60478,4,8,f +14737,60478,71,1,f +14737,60478,72,1,f +14737,60479,0,1,f +14737,60479,14,4,f +14737,60594,0,3,f +14737,60596,4,4,f +14737,60596,0,1,f +14737,60603,47,3,f +14737,60616a,47,1,f +14737,6112,0,4,f +14737,6140,15,8,f +14737,6141,36,1,f +14737,6141,34,3,f +14737,6141,36,1,t +14737,6141,47,1,f +14737,6141,71,1,t +14737,6141,71,2,f +14737,6141,34,1,t +14737,6141,47,1,t +14737,6157,71,8,f +14737,6179,15,1,f +14737,6180,15,3,f +14737,6232,15,2,f +14737,62462,14,3,f +14737,62462,0,2,f +14737,63864,4,4,f +14737,63864,15,20,f +14737,63965,71,2,f +14737,64448,72,8,f +14737,6541,15,6,f +14737,6587,28,1,f +14737,6636,15,18,f +14737,6636,4,20,f +14737,73590c03b,14,2,f +14737,85984,14,2,f +14737,85984,0,2,f +14737,86035,320,1,f +14737,86035,0,1,f +14737,87079,0,8,f +14737,87079,71,8,f +14737,87079,15,2,f +14737,87087,14,1,f +14737,87697,0,12,f +14737,88930,1,1,f +14737,88930,14,1,f +14737,91176,15,20,f +14737,91405,72,4,f +14737,92410,4,1,f +14737,92593,72,3,f +14737,93273,71,2,f +14737,93273,72,4,f +14737,93594,179,4,f +14737,93595,15,4,f +14737,96874,25,1,t +14737,970c00,28,1,f +14737,970c00,272,1,f +14737,970c00,71,1,f +14737,970c00,1,1,f +14737,970c00,0,1,f +14737,973pr1156c01,1,1,f +14737,973pr1485c01,4,1,f +14737,973pr1697c01,73,1,f +14737,973pr1776c01,272,1,f +14737,973pr1801c01,25,1,f +14737,98138,36,1,t +14737,98138,47,2,f +14737,98138,47,1,t +14737,98138,36,2,f +14737,98281,14,1,f +14737,98281,71,1,f +14737,98282,72,4,f +14738,2446,0,1,f +14738,2447,42,1,f +14738,2447,42,1,t +14738,2540,0,1,f +14738,30027,7,4,f +14738,30028,0,4,f +14738,3023,0,1,f +14738,30602,4,1,f +14738,3626bpx33,14,1,f +14738,3795,4,1,f +14738,3829c01,7,1,f +14738,3839b,4,1,f +14738,4070,0,2,f +14738,6126a,57,2,f +14738,6157,0,2,f +14738,970c00,0,1,f +14738,973px66c01,0,1,f +14739,3003,1,8,f +14739,3003,0,4,f +14739,3004,14,4,f +14739,3004,4,4,f +14739,3004,0,20,f +14739,3005,4,14,f +14739,3009,0,4,f +14739,3009,4,5,f +14739,3010,4,7,f +14739,3020,14,3,f +14739,3020,0,4,f +14739,3023,4,6,f +14739,3023,14,4,f +14739,3023,7,2,f +14739,3024,4,4,f +14739,3029,0,1,f +14739,3029,7,2,f +14739,3069b,15,1,f +14739,3069b,4,3,f +14739,3297,7,12,f +14739,3298,7,4,f +14739,3460,4,2,f +14739,3581,4,4,f +14739,3622,4,4,f +14739,3623,0,4,f +14739,3624,1,1,f +14739,3626apr0001,14,2,f +14739,3644,4,4,f +14739,3660,0,8,f +14739,3666,4,5,f +14739,3666,0,2,f +14739,3710,0,2,f +14739,3710,4,1,f +14739,3795,0,4,f +14739,3833,4,1,f +14739,4022,0,2,f +14739,4023,0,2,f +14739,4032a,0,4,f +14739,4032a,7,4,f +14739,4033,4,2,f +14739,4034,47,2,f +14739,4035,4,4,f +14739,4036,47,4,f +14739,4079,14,2,f +14739,4092,0,2,f +14739,4093b,0,1,f +14739,4162,4,4,f +14739,4180c01,0,4,f +14739,4181,4,2,f +14739,4182,4,2,f +14739,4183,47,4,f +14739,73092,0,2,f +14739,970c00,1,1,f +14739,970c00,0,1,f +14739,973c01,15,1,f +14739,973p26c01,1,1,f +14741,10201,15,20,f +14741,10247,71,1,f +14741,11203,72,1,f +14741,11212,72,3,f +14741,11458,0,1,f +14741,11476,71,1,f +14741,14210,15,2,f +14741,14769,71,1,f +14741,15068,0,1,f +14741,15207,14,4,f +14741,15210,72,1,f +14741,15392,72,2,f +14741,15403,0,2,f +14741,15428,1,1,f +14741,15535,72,1,f +14741,15573,1,2,f +14741,15712,15,1,f +14741,15712,72,2,f +14741,18651,0,2,f +14741,18984,26,1,f +14741,18986,47,1,f +14741,19220,0,1,f +14741,23186,0,1,f +14741,2357,71,5,f +14741,23950,72,16,f +14741,2412b,0,3,f +14741,2412b,179,8,f +14741,2420,72,4,f +14741,2420,71,8,f +14741,2423,326,3,f +14741,2431,0,5,f +14741,2431,71,2,f +14741,2431,14,2,f +14741,2432,0,2,f +14741,2436,14,1,f +14741,2437,40,2,f +14741,2445,71,2,f +14741,2449,71,4,f +14741,2450,28,20,f +14741,2465,72,4,f +14741,2540,2,2,f +14741,2540,0,1,f +14741,2540,72,2,f +14741,25893,47,2,f +14741,25895,15,2,f +14741,26064,2,1,f +14741,26066,19,1,f +14741,2654,1,7,f +14741,26990pr0002,25,1,f +14741,2730,71,6,f +14741,2730,0,1,f +14741,2780,0,6,f +14741,2817,71,1,f +14741,2825,0,4,f +14741,2854,19,1,f +14741,2877,14,2,f +14741,3001,27,4,f +14741,30028,0,4,f +14741,30029,0,1,f +14741,3003,71,15,f +14741,30031,71,1,f +14741,3004,71,6,f +14741,3004,1,4,f +14741,30043,4,1,f +14741,3005,72,26,f +14741,3006,71,2,f +14741,3008,71,12,f +14741,30089,0,1,f +14741,3009,71,4,f +14741,3010,71,2,f +14741,30136,72,24,f +14741,30137,71,19,f +14741,30153,47,3,f +14741,3020,72,2,f +14741,3020,14,3,f +14741,3020,71,1,f +14741,3022,26,5,f +14741,3022,70,1,f +14741,3022,71,5,f +14741,3023,15,1,f +14741,3023,71,11,f +14741,3023,72,16,f +14741,3023,14,15,f +14741,3024,36,2,f +14741,3029,0,1,f +14741,3030,15,2,f +14741,3032,72,1,f +14741,3034,0,1,f +14741,3034,72,10,f +14741,3035,72,10,f +14741,30350b,41,1,f +14741,30350b,15,1,f +14741,30357,72,8,f +14741,3036,71,4,f +14741,30374,71,1,f +14741,3039,0,3,f +14741,3040b,71,4,f +14741,3040b,72,6,f +14741,30414,0,9,f +14741,3045,70,1,f +14741,3049c,0,1,f +14741,30553,72,2,f +14741,3062b,72,4,f +14741,3068b,320,5,f +14741,3068b,0,2,f +14741,3069b,320,13,f +14741,3069b,71,7,f +14741,3070b,0,6,f +14741,3070b,320,3,f +14741,3176,71,2,f +14741,32000,71,1,f +14741,32018,0,1,f +14741,32028,71,11,f +14741,32028,72,2,f +14741,32062,4,1,f +14741,32073,71,2,f +14741,3245b,71,4,f +14741,3245b,19,2,f +14741,32474,27,1,f +14741,3460,72,8,f +14741,3460,71,3,f +14741,3623,0,1,f +14741,3623,70,13,f +14741,3623,71,6,f +14741,3623,72,2,f +14741,3626cpr0966,4,1,f +14741,3626cpr1719,78,1,f +14741,3626cpr1962,4,2,f +14741,3626cpr1985,10,1,f +14741,3626cpr1987,78,1,f +14741,3626cpr1989,2,1,f +14741,3660,72,2,f +14741,3665,72,2,f +14741,3666,14,2,f +14741,3666,15,2,f +14741,3666,71,1,f +14741,3673,71,2,f +14741,3676,72,4,f +14741,3678b,71,4,f +14741,3685,72,2,f +14741,3700,0,1,f +14741,3703,4,1,f +14741,3709,0,2,f +14741,3710,71,4,f +14741,3710,72,3,f +14741,3710,19,1,f +14741,3710,14,1,f +14741,3713,4,1,f +14741,3713,71,2,f +14741,3747b,71,5,f +14741,3795,71,2,f +14741,3829c01,71,1,f +14741,3832,0,1,f +14741,3941,4,1,f +14741,3957a,0,1,f +14741,4032a,70,6,f +14741,4162,320,4,f +14741,4162,15,4,f +14741,4162,0,13,f +14741,41769,0,1,f +14741,41769,72,2,f +14741,41770,72,2,f +14741,41854,15,2,f +14741,4274,71,1,f +14741,4286,72,5,f +14741,43722,72,4,f +14741,43723,72,4,f +14741,44567a,72,1,f +14741,4460b,72,2,f +14741,44676,0,1,f +14741,44676,2,2,f +14741,4477,72,2,f +14741,4497,0,1,f +14741,4510,71,10,f +14741,4510,72,2,f +14741,4519,71,2,f +14741,4596,71,2,f +14741,4600,0,4,f +14741,4697b,71,2,f +14741,4733,0,1,f +14741,47397,72,1,f +14741,4740,2,1,f +14741,4740,57,2,f +14741,48336,0,2,f +14741,4865a,0,1,f +14741,4865a,72,5,f +14741,48729b,71,2,f +14741,50304,72,1,f +14741,50951,0,4,f +14741,51739,0,1,f +14741,53451,179,3,f +14741,54200,40,1,f +14741,54200,72,17,f +14741,54200,71,13,f +14741,54384,72,2,f +14741,58176,15,2,f +14741,59349,71,8,f +14741,59426,72,2,f +14741,59443,0,3,f +14741,59443,72,2,f +14741,59900,0,1,f +14741,6020,0,1,f +14741,60212,14,2,f +14741,60470b,2,2,f +14741,60471,71,1,f +14741,60476,71,6,f +14741,60478,72,18,f +14741,60479,71,4,f +14741,60479,4,4,f +14741,60897,1,2,f +14741,60897,0,2,f +14741,60897,71,1,f +14741,6112,4,2,f +14741,6126b,57,3,f +14741,6141,72,1,f +14741,6141,71,5,f +14741,6141,36,2,f +14741,6141,35,2,f +14741,6141,47,2,f +14741,6141,52,4,f +14741,6141,70,1,f +14741,61482,71,1,f +14741,61780,70,1,f +14741,6179,14,1,f +14741,6179,0,4,f +14741,61976,85,1,f +14741,6231,72,3,f +14741,63864,320,6,f +14741,63868,72,12,f +14741,63965,72,2,f +14741,64448,72,1,f +14741,64567,0,1,f +14741,64799,14,1,f +14741,6536,72,2,f +14741,6541,71,6,f +14741,6636,320,5,f +14741,71155,15,1,f +14741,73983,71,2,f +14741,74967,71,4,f +14741,85861,320,2,f +14741,85861,15,2,f +14741,85861,0,1,f +14741,85974,84,1,f +14741,85984,72,8,f +14741,85984,14,2,f +14741,85984,71,33,f +14741,87079,2,6,f +14741,87079,71,4,f +14741,87083,72,2,f +14741,87087,71,32,f +14741,87580,71,2,f +14741,88072,19,1,f +14741,90498,0,2,f +14741,90981,15,4,f +14741,92099,0,1,f +14741,92107,0,1,f +14741,92280,15,7,f +14741,92338,0,1,f +14741,92582,71,2,f +14741,92593,72,7,f +14741,92593,320,15,f +14741,92593,15,2,f +14741,92926,2,1,f +14741,93095,0,1,f +14741,93217,71,1,f +14741,93274,14,1,f +14741,93594,179,4,f +14741,96874,25,1,t +14741,970c00,72,1,f +14741,970c00,2,1,f +14741,970c00,4,2,f +14741,970c00,1,1,f +14741,970c00pr1090,10,1,f +14741,970c00pr1094,484,1,f +14741,973pr1800c01,73,1,f +14741,973pr2047c01,1,1,f +14741,973pr3448c01,1,1,f +14741,973pr3469c01,26,1,f +14741,973pr3487c01,2,1,f +14741,973pr3488c01,70,1,f +14741,973pr3494c01,4,1,f +14741,98138,326,13,f +14741,98138,47,1,f +14741,98138,33,1,f +14741,98138,36,2,f +14741,98281,14,1,f +14741,98283,72,34,f +14741,98313,70,1,f +14741,99780,14,4,f +14741,99780,71,1,f +14741,99780,72,3,f +14742,4022,0,2,f +14742,4023,0,2,f +14742,73092,0,2,f +14743,3001,14,1,f +14743,3001,4,2,f +14743,3001,1,2,f +14743,3001pr1,14,1,f +14743,3002a,4,2,f +14743,3002a,1,2,f +14743,3003,4,4,f +14743,3003,0,2,f +14743,3003,14,4,f +14743,3003,1,4,f +14743,3003pe1,14,2,f +14743,3007,1,1,f +14744,2431,0,1,f +14744,2432,14,1,f +14744,2441,0,1,f +14744,3021,0,1,f +14744,3022,14,1,f +14744,3023,14,1,f +14744,3023,0,1,f +14744,3298p57,0,1,f +14744,3623,14,2,f +14744,3641,0,4,f +14744,3710,0,1,f +14744,3829c01,14,1,f +14744,3839b,7,1,f +14744,4286,0,2,f +14744,4624,14,4,f +14747,10288,308,1,f +14747,11153,0,2,f +14747,11211,71,11,f +14747,11477,71,4,f +14747,14181,15,3,f +14747,15118,15,1,f +14747,15395,4,3,f +14747,15573,71,8,f +14747,2412b,72,8,f +14747,2412b,0,4,f +14747,2420,15,4,f +14747,2431,1,4,f +14747,2445,71,1,f +14747,2654,71,1,f +14747,3003,15,2,f +14747,3004,15,8,f +14747,3005,15,2,f +14747,3009,15,2,f +14747,3010,15,4,f +14747,3010,71,1,f +14747,3020,15,3,f +14747,3021,71,2,f +14747,3022,0,1,f +14747,3023,1,4,f +14747,3023,0,2,f +14747,3023,4,3,f +14747,3023,15,6,f +14747,3024,1,2,f +14747,3024,182,2,f +14747,30261,15,1,f +14747,3031,0,5,f +14747,3034,71,2,f +14747,30340,15,1,f +14747,30359b,72,2,f +14747,3037,15,1,f +14747,30374,15,2,f +14747,30374,71,6,f +14747,30377,72,2,f +14747,3040b,15,2,f +14747,30414,72,3,f +14747,30552,0,2,f +14747,30553,72,4,f +14747,30554a,71,2,f +14747,3062b,15,2,f +14747,3062b,0,1,f +14747,30663,71,2,f +14747,3068b,0,2,f +14747,3068b,71,5,f +14747,3069b,36,2,f +14747,3069b,15,2,f +14747,3069b,1,2,f +14747,3176,1,1,f +14747,32530,72,4,f +14747,32556,19,1,f +14747,3460,15,2,f +14747,3623,72,2,f +14747,3623,4,2,f +14747,3626cpr0645,14,1,f +14747,3626cpr1347,14,1,f +14747,3626cpr1348,14,1,f +14747,3659,71,1,f +14747,3666,1,8,f +14747,3666,0,1,f +14747,3700,72,1,f +14747,3710,71,1,f +14747,3710,0,7,f +14747,3710,1,7,f +14747,3747b,71,1,f +14747,3795,0,2,f +14747,3829c01,4,1,f +14747,3835,0,1,f +14747,3957a,71,2,f +14747,3958,0,1,f +14747,4006,0,2,f +14747,4070,15,2,f +14747,4079,70,1,f +14747,4176,40,1,f +14747,42610,71,1,f +14747,4287,71,2,f +14747,43093,1,4,f +14747,43722,15,1,f +14747,43723,15,1,f +14747,44301a,0,2,f +14747,44661,15,1,f +14747,4488,0,4,f +14747,4522,0,2,f +14747,4523,1,1,f +14747,48729b,0,4,f +14747,50745,1,4,f +14747,52031,15,2,f +14747,54200,47,2,f +14747,54200,72,2,f +14747,54200,182,6,f +14747,54200,1,2,f +14747,6014b,71,4,f +14747,60470a,71,1,f +14747,60475a,71,4,f +14747,60478,72,2,f +14747,60479,15,2,f +14747,60483,0,1,f +14747,60581,15,1,f +14747,60583a,15,6,f +14747,60596,71,1,f +14747,60616b,71,1,f +14747,61184,71,5,f +14747,6126b,41,2,f +14747,61409,15,2,f +14747,61409,0,2,f +14747,6141,71,4,f +14747,6141,36,11,f +14747,6154,15,2,f +14747,6155,71,2,f +14747,62810,484,1,f +14747,6536,71,2,f +14747,6541,4,2,f +14747,6558,1,1,f +14747,85984,15,2,f +14747,86035,1,1,f +14747,87083,72,1,f +14747,87087,71,14,f +14747,87552,40,2,f +14747,87620,15,2,f +14747,87697,0,4,f +14747,92280,71,2,f +14747,92593,72,1,f +14747,970c00,379,1,f +14747,970c00pr0615,272,2,f +14747,973pr0110c01,19,2,f +14747,973pr0120c01,379,1,f +14747,98138,179,2,f +14747,98585,71,1,f +14747,99206,71,4,f +14747,99930,308,1,f +14749,2357,7,4,f +14749,2412b,0,6,f +14749,2412b,0,1,t +14749,2420,7,4,f +14749,2431,1,3,f +14749,2582,47,10,f +14749,2875,0,4,f +14749,2877,0,16,f +14749,2878c01,0,4,f +14749,2920,0,2,f +14749,2972,7,1,f +14749,3004,0,2,f +14749,3004,7,6,f +14749,3005,7,12,f +14749,3008,7,4,f +14749,3010,7,2,f +14749,3020,7,6,f +14749,3022,15,2,f +14749,3023,1,4,f +14749,3023,15,6,f +14749,3023,4,4,f +14749,3023,14,8,f +14749,3023,0,2,f +14749,3023,7,8,f +14749,3030,1,1,f +14749,3031,1,1,f +14749,3032,7,2,f +14749,3034,14,2,f +14749,3035,1,1,f +14749,3040b,0,4,f +14749,3040b,7,4,f +14749,3068b,14,4,f +14749,3069b,14,2,f +14749,3069b,15,2,f +14749,3069b,7,2,f +14749,3069bp25,7,2,f +14749,3070b,1,4,f +14749,3070b,1,1,t +14749,3460,15,4,f +14749,3622,7,12,f +14749,3623,7,4,f +14749,3626bp04,14,1,f +14749,3626bp07,14,1,f +14749,3626bpr0001,14,3,f +14749,3666,0,6,f +14749,3710,4,4,f +14749,3710,1,6,f +14749,3794a,14,10,f +14749,3794a,0,4,f +14749,3795,0,2,f +14749,3832,7,4,f +14749,3901,0,1,f +14749,3941,4,2,f +14749,4022,0,2,f +14749,4025,0,2,f +14749,4033,7,8,f +14749,4034,47,8,f +14749,4070,7,4,f +14749,4079,4,5,f +14749,4150,4,2,f +14749,4175,0,2,f +14749,4181p04,7,2,f +14749,4182p04,7,2,f +14749,4183,47,4,f +14749,4477,4,2,f +14749,4477,1,2,f +14749,4485,1,1,f +14749,4485,4,1,f +14749,4530,0,1,f +14749,4530,6,1,f +14749,4547stk01,9999,1,t +14749,4625,7,10,f +14749,4864ap10,7,2,f +14749,4864ap11,7,2,f +14749,69c01,15,2,f +14749,73092,0,2,f +14749,970c00,4,1,f +14749,970c00,1,2,f +14749,970c00,15,1,f +14749,970x026,14,1,f +14749,973c11,0,1,f +14749,973p71c01,15,1,f +14749,973pb0006c01,15,1,f +14749,973pb0017c01,15,1,f +14749,973px62c01,15,1,f +14750,2412b,0,2,f +14750,2440pb005,15,1,f +14750,2446,4,1,f +14750,2447,41,1,f +14750,2452,15,1,f +14750,2926,4,2,f +14750,3020,2,1,f +14750,3022,7,1,f +14750,3022,4,1,f +14750,3023,4,1,f +14750,3023,2,1,f +14750,3023,15,2,f +14750,3040b,15,2,f +14750,3626apr0001,14,1,f +14750,3641,0,2,f +14750,3666,4,2,f +14750,3666,15,2,f +14750,3710,2,1,f +14750,3829c01,15,1,f +14750,3839b,0,1,f +14750,3937,7,2,f +14750,3938,7,3,f +14750,4081b,7,2,f +14750,4276b,15,1,f +14750,4589,7,2,f +14750,4624,15,2,f +14750,4732,15,1,f +14750,6014a,15,2,f +14750,6015,0,2,f +14750,6069,15,1,f +14750,970c00,4,1,f +14750,973p0ac04,4,1,f +14751,2357,71,2,f +14751,2654,47,2,f +14751,2780,0,4,f +14751,2780,0,1,t +14751,2825,0,1,f +14751,2877,72,3,f +14751,2904,0,1,f +14751,3001,71,1,f +14751,3001,0,2,f +14751,3003,0,1,f +14751,3020,25,2,f +14751,3021,72,1,f +14751,3021,25,3,f +14751,3022,72,2,f +14751,3023,72,2,f +14751,3023,25,4,f +14751,3023,36,1,f +14751,3024,25,2,f +14751,3032,0,1,f +14751,3035,72,1,f +14751,3037,71,1,f +14751,3039,25,2,f +14751,3070b,0,2,f +14751,3070b,0,1,t +14751,32002,72,1,f +14751,32002,72,1,t +14751,32013,72,2,f +14751,32019,0,2,f +14751,32054,0,3,f +14751,32062,0,6,f +14751,32123b,71,1,t +14751,32123b,71,20,f +14751,32140,71,4,f +14751,32192,0,2,f +14751,32316,0,1,f +14751,3298,25,2,f +14751,3622,0,2,f +14751,3623,0,2,f +14751,3660,25,3,f +14751,3666,72,1,f +14751,3673,71,4,f +14751,3673,71,1,t +14751,3700,71,1,f +14751,3701,0,2,f +14751,3706,0,3,f +14751,3713,4,2,f +14751,3713,4,1,t +14751,3747b,0,2,f +14751,3795,0,1,f +14751,3894,71,4,f +14751,3941,71,1,f +14751,3942c,71,1,f +14751,4032a,0,4,f +14751,4081b,0,2,f +14751,41677,71,4,f +14751,4274,1,6,f +14751,4274,1,1,t +14751,43093,1,7,f +14751,44294,71,2,f +14751,48336,0,1,f +14751,50950,25,2,f +14751,54200,25,1,t +14751,54200,0,2,f +14751,54200,0,1,t +14751,54200,25,2,f +14751,55013,72,2,f +14751,56902,71,2,f +14751,60470a,0,1,f +14751,60481,71,4,f +14751,60483,0,4,f +14751,6091,0,2,f +14751,6091,25,6,f +14751,6141,182,2,f +14751,6141,182,1,t +14751,62462,0,4,f +14751,63864,25,1,f +14751,63869,71,1,f +14751,6536,71,2,f +14751,6553,71,1,f +14751,6564,25,1,f +14751,6565,25,1,f +14751,6628,0,2,f +14751,6629,0,2,f +14751,6636,0,2,f +14751,85543,15,2,f +14751,86652,71,2,f +14751,87083,72,1,f +14751,87087,0,6,f +14753,2343,297,6,f +14753,2420,0,16,f +14753,2431,0,8,f +14753,2456,19,4,f +14753,3001,19,17,f +14753,3001,28,13,f +14753,3003,19,8,f +14753,3003,0,1,f +14753,3004,28,2,f +14753,3004,0,1,f +14753,3006,19,4,f +14753,3007,19,4,f +14753,3010,0,4,f +14753,30151a,28,6,f +14753,30169,297,1,f +14753,30169,0,1,f +14753,3022,70,10,f +14753,3034,70,1,f +14753,30385,297,1,f +14753,3039,19,2,f +14753,3040b,28,2,f +14753,3043,4,1,f +14753,3043,1,1,f +14753,3043,14,1,f +14753,3043,25,1,f +14753,3068bpr0142,15,1,f +14753,3068bpr0161,15,1,f +14753,3068bpr0162,15,2,f +14753,3068bpr0164,15,2,f +14753,3069b,0,13,f +14753,3070b,70,20,f +14753,3070b,70,1,t +14753,3794b,297,4,f +14753,3811,19,1,f +14753,3937,0,1,f +14753,3938,0,1,f +14753,4006,0,1,f +14753,4162,0,8,f +14753,4589,36,6,f +14753,4589,34,7,f +14753,4589,182,6,f +14753,4589,33,6,f +14753,4589,46,6,f +14753,4589,52,7,f +14753,64776pat0001,0,1,f +14753,85863pr0012,1,1,f +14753,85863pr0013,14,1,f +14753,85863pr0014,25,1,f +14753,85863pr0015,4,1,f +14753,85863pr0016,15,1,f +14753,85863pr0017,15,8,f +14753,87580,28,8,f +14754,3437,28,1,f +14754,3437,0,1,f +14754,3437,484,2,f +14754,3437,14,1,f +14754,41969,0,1,f +14754,47424,72,1,f +14754,48125c03pb01,10,1,f +14754,51265,2,1,f +14754,51269,71,1,f +14754,51753,25,1,f +14754,51957,2,1,f +14754,75115pr0003,25,1,f +14756,132a,7,6,f +14756,3001a,47,1,f +14756,3001a,0,7,f +14756,3002a,0,4,f +14756,3008a,15,2,f +14756,3009a,15,6,f +14756,3009a,1,2,f +14756,3020,7,1,f +14756,3020,0,15,f +14756,3020,4,2,f +14756,3021,1,1,f +14756,3023a,15,1,f +14756,3023a,0,4,f +14756,3023a,7,2,f +14756,3023a,47,1,f +14756,3024,1,2,f +14756,3065,0,3,f +14756,3065,1,4,f +14756,650,79,1,f +14756,7039,4,6,f +14756,7049a,15,3,f +14757,10052,71,1,f +14757,17349pr0001,1,1,f +14757,18692,85,1,f +14757,30153,33,1,f +14757,3626cpr1472,14,1,f +14757,3678bpr0026b,1,1,f +14757,50231pr0001,85,1,f +14757,64644,308,1,f +14757,87994,308,1,f +14757,88646,0,1,f +14757,973pr2741c01,1,1,f +14759,14226c11,0,1,f +14759,3002,0,1,f +14759,3003,15,3,f +14759,3031,4,1,f +14759,3031,7,1,f +14759,3039p70,15,1,f +14759,3626bp04,14,1,f +14759,4070,4,2,f +14759,4485,15,1,f +14759,4599a,7,1,f +14759,970c00,1,1,f +14759,973pr1245c01,1,1,f +14760,10201,15,1,f +14760,11477,15,1,f +14760,11618,322,1,f +14760,11618,31,1,t +14760,11618,26,1,t +14760,11618,191,1,t +14760,11618,191,1,f +14760,11618,26,2,f +14760,11618,322,1,t +14760,11618,31,1,f +14760,11816pr0005,78,1,f +14760,14769,29,1,f +14760,15068,272,3,f +14760,15469,322,1,f +14760,15712,15,1,f +14760,18920,179,1,t +14760,18920,179,1,f +14760,20482,297,4,f +14760,20482,297,1,t +14760,2454b,31,2,f +14760,2456,71,1,f +14760,2654,4,1,f +14760,3001,71,1,f +14760,3004,71,3,f +14760,3004,31,2,f +14760,3005,31,2,f +14760,30089,0,1,f +14760,3009,31,1,f +14760,3010,71,2,f +14760,3021,85,1,f +14760,3023,4,1,f +14760,3023,15,5,f +14760,30237b,71,1,f +14760,3024,15,1,f +14760,3024,15,1,t +14760,3031,19,1,f +14760,3032,19,1,f +14760,3032,15,1,f +14760,30367c,322,1,f +14760,3062b,322,1,f +14760,3069b,85,1,f +14760,3069b,322,2,f +14760,3069b,26,1,f +14760,3069b,191,1,f +14760,3070b,15,1,f +14760,3070b,15,1,t +14760,3070bpr0163,14,2,f +14760,3070bpr0163,14,2,t +14760,33291,10,1,f +14760,33291,191,1,f +14760,33291,191,1,t +14760,33291,10,1,t +14760,3623,26,5,f +14760,3666,26,2,f +14760,3666,85,3,f +14760,4274,71,3,f +14760,4274,71,1,t +14760,44301a,71,1,f +14760,4536,29,2,f +14760,48336,15,1,f +14760,57894,15,1,f +14760,57895,47,1,f +14760,59900,26,2,f +14760,60471,71,1,f +14760,60478,15,1,f +14760,6141,15,1,f +14760,6141,179,1,t +14760,6141,1,1,t +14760,6141,179,1,f +14760,6141,1,1,f +14760,6141,0,2,f +14760,6141,70,1,f +14760,6141,42,1,f +14760,6141,4,1,f +14760,6141,4,1,t +14760,6141,14,1,f +14760,6141,14,1,t +14760,6141,15,1,t +14760,6141,0,1,t +14760,6141,70,1,t +14760,6141,42,1,t +14760,6179,15,1,f +14760,62698,85,1,f +14760,6541,15,3,f +14760,88072,15,1,f +14760,92258,0,1,f +14760,92280,15,2,f +14760,92410,71,1,f +14760,92456pr0099c01,78,1,f +14760,92820pr0007c01,379,1,f +14760,98138,29,1,t +14760,98138,29,1,f +14760,98138,47,1,f +14760,98138,47,1,t +14760,98138pr0029,297,1,f +14760,98138pr0029,297,1,t +14760,98549,71,1,f +14761,3002a,4,1,f +14761,3004,47,2,f +14761,3005,15,1,f +14761,3021,7,3,f +14761,3023,15,1,f +14761,3038,47,1,f +14761,3038,15,1,f +14761,3040b,15,2,f +14761,3460,7,6,f +14761,3460,15,2,f +14761,3461,7,1,f +14761,3462,15,1,f +14761,3480,7,1,f +14761,3481,15,1,f +14761,3622,15,3,f +14761,3622,47,2,f +14761,3623,15,1,f +14761,3660,4,2,f +14761,3665,4,2,f +14761,3666,15,1,f +14761,3795,15,1,f +14767,3297,4,60,f +14767,3298,4,26,f +14767,3299,4,20,f +14767,3300,4,10,f +14767,3675,4,10,f +14767,60583a,4,16,f +14767,60592,0,8,f +14767,60592,15,8,f +14767,60592,4,8,f +14767,60594,15,8,f +14767,60594,0,8,f +14767,60596,15,4,f +14767,60596,0,4,f +14767,60598,4,8,f +14767,60599,4,4,f +14767,60608,14,16,f +14767,60608,15,32,f +14767,60623,0,4,f +14767,60623,14,4,f +14767,60623,15,4,f +14767,60800b,2,16,f +14768,2432,72,2,f +14768,2456,0,1,f +14768,2540,72,1,f +14768,2555,0,2,f +14768,3023,27,3,f +14768,3031,27,1,f +14768,30602,72,2,f +14768,32028,0,1,f +14768,3297,0,1,f +14768,3660,0,1,f +14768,3710,27,2,f +14768,3788,27,1,f +14768,3795,0,1,f +14768,44674,27,1,f +14768,44728,4,2,f +14768,50943,72,1,f +14768,6014b,0,4,f +14768,60700,0,4,f +14768,6141,46,1,t +14768,6141,4,1,t +14768,6141,46,2,f +14768,6141,4,6,f +14768,6157,0,2,f +14768,63864,27,2,f +14769,22667,27,1,f +14769,22667,27,1,t +14769,2343,47,2,f +14769,33057,484,2,f +14769,4150p02,14,1,f +14769,95228,47,2,f +14770,11212,71,1,f +14770,11458,15,2,f +14770,11477,1,1,f +14770,15573,71,1,f +14770,18677,71,2,f +14770,18759,72,1,f +14770,2412b,1,2,f +14770,24299,15,1,f +14770,24307,15,1,f +14770,2431,15,2,f +14770,3021,15,1,f +14770,3023,47,1,f +14770,3023,71,2,f +14770,3024,72,1,t +14770,3024,72,1,f +14770,3069b,15,1,f +14770,3070b,1,2,f +14770,3070b,1,1,t +14770,3623,71,1,f +14770,3623,14,1,f +14770,3623,15,4,f +14770,3660,71,1,f +14770,3665,71,1,f +14770,3666,72,1,f +14770,3710,72,1,f +14770,41769,15,1,f +14770,41770,15,1,f +14770,44302a,72,1,f +14770,54200,47,1,f +14770,54200,47,1,t +14770,59900,71,4,f +14770,61184,71,4,f +14770,6141,179,1,t +14770,6141,179,2,f +14770,85861,182,4,f +14770,85861,182,1,t +14770,85861,15,4,f +14770,85861,15,1,t +14770,92582,71,1,f +14772,2780,0,1,t +14772,2780,0,12,f +14772,2825,0,4,f +14772,2905,320,2,f +14772,32002,72,2,f +14772,32002,72,1,t +14772,32013,135,1,f +14772,32034,0,2,f +14772,32039,135,4,f +14772,32039,0,2,f +14772,32054,0,2,f +14772,32062,0,9,f +14772,32065,0,3,f +14772,32123b,71,1,t +14772,32123b,71,1,f +14772,32138,0,4,f +14772,32140,0,1,f +14772,32174,0,6,f +14772,32175,0,4,f +14772,32175,320,6,f +14772,32175,179,1,f +14772,32184,0,2,f +14772,32192,135,1,f +14772,32209,0,2,f +14772,32271,135,1,f +14772,32291,0,1,f +14772,32498,0,2,f +14772,32523,135,1,f +14772,32551,179,2,f +14772,32580,179,1,f +14772,33299a,0,1,f +14772,33299a,135,1,f +14772,3705,0,12,f +14772,3707,0,2,f +14772,40490,135,1,f +14772,40490,0,4,f +14772,41239,135,1,f +14772,41669,0,6,f +14772,41669,320,4,f +14772,41669,36,2,f +14772,41677,0,12,f +14772,42003,72,1,f +14772,42003,0,3,f +14772,4274,71,1,f +14772,4274,71,1,t +14772,43093,1,7,f +14772,43559,320,2,f +14772,44033,179,1,f +14772,44294,71,2,f +14772,4519,71,5,f +14772,45749,320,4,f +14772,47295,320,1,f +14772,47297,0,2,f +14772,47298,320,2,f +14772,47306,0,1,f +14772,47312,72,1,f +14772,47326pat03,0,6,f +14772,49423,320,1,f +14772,50858,0,2,f +14772,50899pr0002,179,1,f +14772,50900,72,1,f +14772,50901,0,1,f +14772,50903,14,1,f +14772,6536,135,2,f +14772,6536,0,4,f +14772,6553,0,1,f +14772,6558,0,9,f +14772,6575,72,4,f +14772,6587,72,6,f +14772,6629,0,4,f +14772,6632,135,2,f +14772,6632,320,4,f +14772,78c06,179,2,f +14772,78c10,179,2,f +14774,2431,0,1,f +14774,2432,0,1,f +14774,2441,0,1,f +14774,30027a,14,4,f +14774,30028,0,4,f +14774,3021,14,1,f +14774,3022,14,1,f +14774,3298p71,0,1,f +14774,3623,14,2,f +14774,3710,14,1,f +14774,3829c01,14,1,f +14774,3839b,7,1,f +14774,3937,0,1,f +14774,3938,14,1,f +14774,4286,0,2,f +14774,4589,7,2,f +14775,11816pr0002,78,1,f +14775,11816pr0006,78,1,f +14775,15210,15,1,f +14775,2412b,71,2,f +14775,2431,29,1,f +14775,2431,15,1,f +14775,2432,15,1,f +14775,2454a,19,7,f +14775,2496,0,2,f +14775,2655,71,2,f +14775,2877,14,2,f +14775,3001,27,3,f +14775,3001,29,3,f +14775,3001,15,2,f +14775,3001,19,4,f +14775,3002,27,5,f +14775,3003,19,6,f +14775,3003,27,2,f +14775,3004,19,11,f +14775,3004,15,4,f +14775,3005,15,2,f +14775,3008,15,1,f +14775,3009,19,6,f +14775,3010,15,1,f +14775,30165,484,1,f +14775,3020,70,4,f +14775,3020,15,1,f +14775,3020,27,4,f +14775,3021,15,3,f +14775,3022,15,1,f +14775,3022,484,1,f +14775,3022,70,1,f +14775,3023,27,12,f +14775,3024,15,10,f +14775,30261,15,1,f +14775,30357,15,2,f +14775,30414,19,12,f +14775,30586,15,2,f +14775,3062b,41,2,f +14775,3062b,46,1,f +14775,3062b,47,2,f +14775,3062b,14,2,f +14775,3062b,19,7,f +14775,3062bpr0003,322,2,f +14775,3068b,14,2,f +14775,3068b,15,2,f +14775,3069b,14,1,f +14775,3069bpr0030,15,1,f +14775,3069bpr0099,15,1,f +14775,3070b,27,3,f +14775,3070b,27,1,t +14775,3185,15,2,f +14775,3188stk01,9999,1,t +14775,33172,25,1,f +14775,33183,10,1,t +14775,33183,10,1,f +14775,33291,5,1,f +14775,33291,10,3,f +14775,33291,10,1,t +14775,33291,5,1,t +14775,3460,15,11,f +14775,3622,14,1,f +14775,3623,14,1,f +14775,3623,15,1,f +14775,3666,19,18,f +14775,3678b,15,1,f +14775,3700,15,1,f +14775,3710,15,3,f +14775,3710,27,2,f +14775,3710,2,2,f +14775,3741,2,2,t +14775,3741,2,5,f +14775,3794b,15,2,f +14775,3795,15,2,f +14775,3795,27,2,f +14775,3957b,15,1,f +14775,4085c,71,3,f +14775,4150,29,1,f +14775,4150pr0011a,27,1,f +14775,4274,71,1,t +14775,4274,71,1,f +14775,4345b,15,1,f +14775,4346,15,1,f +14775,43898,80,1,f +14775,44728,15,5,f +14775,4599b,71,1,f +14775,4623,15,2,f +14775,4735,71,1,f +14775,48336,14,1,f +14775,4865b,322,5,f +14775,4865b,29,4,f +14775,57894,15,7,f +14775,57895,47,7,f +14775,59349,19,1,f +14775,60475a,14,3,f +14775,60583a,15,1,f +14775,60592,15,2,f +14775,60596,15,2,f +14775,60616a,47,1,f +14775,60623,15,1,f +14775,6141,36,1,f +14775,6141,29,2,t +14775,6141,34,1,t +14775,6141,34,2,f +14775,6141,29,6,f +14775,6141,25,3,f +14775,6141,25,2,t +14775,6141,36,1,t +14775,61678,27,2,f +14775,6179,5,1,f +14775,6190,5,1,f +14775,6191,322,18,f +14775,6231,29,2,f +14775,6231,322,4,f +14775,63864,27,11,f +14775,6936,297,1,f +14775,87079,15,2,f +14775,87087,29,2,f +14775,87552,41,4,f +14775,87552,40,1,f +14775,91405,212,1,f +14775,91405,10,1,f +14775,92255,308,1,f +14775,92257,320,1,f +14775,92438,212,1,f +14775,92456pr0001c01,78,1,f +14775,92456pr0005c01,78,1,f +14775,92818pr0003c01,29,1,f +14775,92819pr0002a,27,1,f +14775,93085pr01,484,1,f +14775,93096,29,1,f +14775,93273,27,1,f +14775,95827,191,4,f +14775,95828,191,4,f +14775,95829,191,4,f +14775,95831,191,4,f +14775,95832,191,4,f +14775,98386pr0001,484,1,f +14775,98389pr0001,19,1,f +14775,98393a,323,1,f +14775,98393b,323,1,f +14775,98393c,323,1,f +14775,98393d,323,1,f +14775,98393e,323,1,f +14775,98393f,323,1,f +14775,98393g,323,1,f +14775,98393h,323,1,f +14775,98393i,323,1,f +14775,98393j,323,1,f +14777,10164pr0001,15,1,f +14777,3626cpr1149,78,1,f +14777,3899,4,1,f +14777,970c00pr0631,15,1,f +14777,973pr2223c01,15,1,f +14778,10172,297,1,f +14778,11055,15,1,f +14778,11213,71,1,f +14778,11403pr0008c01,85,1,f +14778,11816pr0002,78,1,f +14778,11816pr0006,78,1,f +14778,14395,70,2,f +14778,14395,19,2,f +14778,14716,19,3,f +14778,14769,30,2,f +14778,14769,71,4,f +14778,15254,19,1,f +14778,15395,179,1,f +14778,16577,19,2,f +14778,16925pr0003c01,15,1,f +14778,18674,15,1,f +14778,18742,5,1,f +14778,2357,70,2,f +14778,2357,19,1,f +14778,2412b,70,4,f +14778,2420,70,2,f +14778,2431,15,1,f +14778,2431,30,1,f +14778,2453b,19,1,f +14778,2454a,19,4,f +14778,2456,19,1,f +14778,2456,70,1,f +14778,25269pr01,19,4,f +14778,25269pr02,2,2,f +14778,25279,26,1,f +14778,25279,272,1,f +14778,2540,19,1,f +14778,26483,71,1,f +14778,26512,9999,1,f +14778,26552,0,1,f +14778,26572,15,1,f +14778,2877,14,4,f +14778,3001,14,1,f +14778,3001,70,4,f +14778,3001,19,4,f +14778,3002,70,1,f +14778,3003,19,4,f +14778,3003,15,1,f +14778,3004,84,6,f +14778,3004,30,1,f +14778,3004,19,7,f +14778,3004,70,14,f +14778,3005,70,6,f +14778,3005,15,2,f +14778,3005,19,13,f +14778,3008,70,2,f +14778,3010,30,1,f +14778,3010,70,6,f +14778,3010,19,11,f +14778,30137,30,5,f +14778,30165,15,1,f +14778,30165,0,1,f +14778,3020,19,4,f +14778,3020,2,1,f +14778,3020,30,2,f +14778,3020,26,1,f +14778,3020,70,6,f +14778,3021,70,8,f +14778,3021,14,3,f +14778,3021,15,1,f +14778,3021,19,1,f +14778,3022,70,3,f +14778,3022,19,5,f +14778,3022,2,1,f +14778,3022,0,1,f +14778,3022,15,2,f +14778,3023,70,6,f +14778,3023,30,17,f +14778,3023,71,1,f +14778,3023,19,4,f +14778,3024,70,3,f +14778,3034,19,2,f +14778,3034,15,1,f +14778,3034,2,4,f +14778,3035,19,5,f +14778,3035,2,2,f +14778,30374,71,1,f +14778,3039,320,3,f +14778,3040b,70,2,f +14778,3040b,19,2,f +14778,3062b,70,2,f +14778,3062b,47,1,f +14778,3062b,46,4,f +14778,3062b,34,1,f +14778,3068bpr0297,15,1,f +14778,3069b,73,2,f +14778,3069b,19,2,f +14778,3069b,15,1,f +14778,3069b,26,3,f +14778,3245b,19,2,f +14778,3245b,15,1,f +14778,3297,320,9,f +14778,33051,10,1,f +14778,33172,25,1,f +14778,33183,10,1,f +14778,33291,10,4,f +14778,33291,4,17,f +14778,33291,5,8,f +14778,3460,19,3,f +14778,3460,30,2,f +14778,3460,70,2,f +14778,3622,19,2,f +14778,3622,70,2,f +14778,3623,70,2,f +14778,3623,2,2,f +14778,3660,15,1,f +14778,3666,15,1,f +14778,3666,70,2,f +14778,3675,320,3,f +14778,3679,71,2,f +14778,3680,15,2,f +14778,3710,26,1,f +14778,3710,70,1,f +14778,3710,19,5,f +14778,3741,2,2,f +14778,3794b,71,2,f +14778,3795,30,1,f +14778,3832,2,2,f +14778,3832,19,3,f +14778,3899,4,2,f +14778,3957a,15,1,f +14778,4162,19,4,f +14778,4162,30,6,f +14778,4282,19,1,f +14778,4286,320,4,f +14778,4287,70,8,f +14778,43888,70,8,f +14778,4445,320,2,f +14778,4460b,19,2,f +14778,4460b,320,2,f +14778,44728,19,1,f +14778,4515,320,2,f +14778,4599b,71,5,f +14778,48336,71,6,f +14778,4865a,15,2,f +14778,4865b,19,2,f +14778,54200,14,1,f +14778,59230,71,2,f +14778,59349,19,1,f +14778,59900,33,1,f +14778,59900,40,1,f +14778,59900,71,1,f +14778,6020,70,1,f +14778,60475b,15,1,f +14778,60481,70,2,f +14778,60581,19,3,f +14778,60583b,19,4,f +14778,60594,15,4,f +14778,60607,73,8,f +14778,6079,15,2,f +14778,60800a,73,2,f +14778,60897,19,4,f +14778,61252,19,2,f +14778,6141,15,1,f +14778,6141,70,10,f +14778,6141,2,1,f +14778,6141,47,2,f +14778,6141,14,1,f +14778,6141,29,1,f +14778,6141,19,2,f +14778,6141,41,3,f +14778,6182,19,1,f +14778,6183,70,2,f +14778,6231,15,6,f +14778,6231,19,4,f +14778,6256,29,1,f +14778,63864,30,4,f +14778,63864,15,2,f +14778,63868,71,4,f +14778,64567,71,1,f +14778,87079,26,3,f +14778,87079,71,2,f +14778,87087,19,1,f +14778,87552,15,2,f +14778,87580,71,2,f +14778,87580,19,2,f +14778,87580,26,3,f +14778,87580,70,1,f +14778,88072,71,4,f +14778,88930,15,1,f +14778,89801,71,1,f +14778,91405,19,1,f +14778,92254pr0001,226,1,f +14778,92254pr0002,320,1,f +14778,92255,226,1,f +14778,92257,320,1,f +14778,92438,19,1,f +14778,92438,2,2,f +14778,92456pr0042c01,78,1,f +14778,92456pr0106c01,78,1,f +14778,92593,15,4,f +14778,92947,19,1,f +14778,92950,70,7,f +14778,93086,73,1,f +14778,93086,30,1,f +14778,93087,0,2,f +14778,93096,73,2,f +14778,93273,19,1,f +14778,94717,30,1,f +14778,94718,30,1,f +14778,94719,30,1,f +14778,94720,30,1,f +14778,94721,30,1,f +14778,94722,30,1,f +14778,94723,30,1,f +14778,94724,30,1,f +14778,94725,30,1,f +14778,95342,71,1,f +14778,95345,70,1,f +14778,96874,25,1,t +14778,98138,15,1,f +14778,98138,71,12,f +14778,98283,84,12,f +14778,98560,320,2,f +14778,99784,47,1,f +14779,27bc01,15,8,f +14779,3001a,15,2,f +14779,3004,15,4,f +14779,3005,15,4,f +14779,3006,15,2,f +14779,3008,0,24,f +14779,3008,15,2,f +14779,3008,47,2,f +14779,3008,4,10,f +14779,3009,4,4,f +14779,3009,15,2,f +14779,3009,0,16,f +14779,3009p03,0,2,f +14779,3010,0,8,f +14779,3010,15,2,f +14779,3034,15,2,f +14779,3035,15,1,f +14779,3036,15,1,f +14779,3062a,1,2,f +14779,3062a,4,2,f +14779,3063b,4,8,f +14779,3063b,0,16,f +14779,3081bc01,15,12,f +14779,3228a,1,6,f +14779,655,0,4,f +14779,911,7,1,f +14780,45463,118,1,f +14780,clikits025,52,1,f +14780,clikits110,63,1,f +14780,clikits216,89,1,f +14781,14226c11,0,1,f +14781,2419,2,1,f +14781,2420,2,2,f +14781,2431,4,2,f +14781,2431,288,8,f +14781,2436,0,7,f +14781,2555,72,12,f +14781,2653,71,2,f +14781,3001,19,3,f +14781,3004,288,12,f +14781,3005,2,8,f +14781,3009,4,2,f +14781,3010,288,4,f +14781,3020,70,5,f +14781,3020,19,5,f +14781,3020,288,3,f +14781,3021,4,2,f +14781,3021,70,4,f +14781,3021,19,4,f +14781,3021,2,9,f +14781,3022,2,6,f +14781,3023,2,15,f +14781,3023,4,2,f +14781,3023,0,10,f +14781,30237a,0,1,f +14781,3024,2,12,f +14781,3031,2,2,f +14781,3032,70,1,f +14781,3034,2,3,f +14781,3034,19,1,f +14781,30357,2,2,f +14781,3037,2,4,f +14781,3039,2,4,f +14781,3040b,288,12,f +14781,30414,0,4,f +14781,3069b,288,7,f +14781,32028,14,2,f +14781,32056,0,4,f +14781,32059,2,2,f +14781,3460,4,2,f +14781,3623,2,10,f +14781,3639,72,5,f +14781,3640,72,5,f +14781,3660,19,16,f +14781,3660,2,4,f +14781,3665,19,6,f +14781,3666,70,2,f +14781,3666,2,10,f +14781,3700,0,2,f +14781,3701,70,2,f +14781,3710,2,14,f +14781,3749,19,2,f +14781,3794b,70,7,f +14781,3795,4,2,f +14781,3795,2,5,f +14781,3958,70,1,f +14781,4070,4,2,f +14781,4081b,0,2,f +14781,41669,57,2,f +14781,41769,2,1,f +14781,41770,2,1,f +14781,4286,2,6,f +14781,43093,1,6,f +14781,43710,288,4,f +14781,43711,288,4,f +14781,44728,2,4,f +14781,4623,71,1,f +14781,47455,0,5,f +14781,48169,288,5,f +14781,48170,72,5,f +14781,48336,2,4,f +14781,49668,15,20,f +14781,50950,288,2,f +14781,53451,15,12,f +14781,53451,15,2,t +14781,54200,27,1,t +14781,54200,288,12,f +14781,54200,27,14,f +14781,54200,288,1,t +14781,60470a,0,4,f +14781,6141,70,1,t +14781,6141,70,2,f +14781,61678,2,2,f +14781,6541,72,2,f +14781,6636,4,4,f +14781,87087,0,4,f +14781,87580,28,1,f +14782,14769,72,1,f +14782,15573,70,2,f +14782,22388,297,2,f +14782,2458,72,2,f +14782,2654,57,3,f +14782,2817,4,1,f +14782,30294,57,1,f +14782,32059,0,1,f +14782,32474pr1003,4,2,f +14782,32474pr1004,4,1,f +14782,3795,308,1,f +14785,4707c01,7,1,f +14786,2357,7,2,f +14786,2454a,7,2,f +14786,3004,0,10,f +14786,3004,7,4,f +14786,30046,0,1,f +14786,3005,0,2,f +14786,3005,6,2,f +14786,3005,7,6,f +14786,3021,6,1,f +14786,30374,7,1,f +14786,30374,6,1,f +14786,3040b,378,2,f +14786,3069b,15,1,f +14786,3307,7,2,f +14786,3455,0,2,f +14786,3456,6,1,f +14786,3581,7,1,f +14786,3626bpb0011,25,1,f +14786,3626bph1,14,1,f +14786,3794a,0,2,f +14786,3937,15,2,f +14786,3938,7,2,f +14786,40233,0,1,f +14786,40241,6,1,f +14786,41983,9999,1,f +14786,4589,7,1,t +14786,4589,378,2,f +14786,4589,7,1,f +14786,4589,378,1,t +14786,4733,8,1,f +14786,4865a,8,3,f +14786,50231px1,0,1,f +14786,6108,7,1,f +14786,6112,0,1,f +14786,6126a,57,1,t +14786,6126a,57,2,f +14786,6256,15,1,f +14786,62808,7,1,t +14786,62808,7,1,f +14786,6936,15,1,f +14786,970c00,7,1,f +14786,973px146c01,7,1,f +14791,3001a,0,13,f +14791,3004,4,8,f +14791,3005,0,8,f +14791,3005,14,8,f +14791,3005,4,16,f +14791,3005,47,2,f +14791,3008,4,4,f +14791,3008,0,6,f +14791,3009,14,4,f +14791,3009,0,4,f +14791,3010,4,2,f +14791,3010,14,16,f +14791,3010,0,3,f +14791,3010p12,14,1,f +14791,3010p13,14,1,f +14791,3010pb024,14,1,f +14791,3010pb025,14,1,f +14791,3020,0,8,f +14791,3020,4,3,f +14791,3020,7,20,f +14791,3020,1,6,f +14791,3021,4,26,f +14791,3021,0,5,f +14791,3022,7,2,f +14791,3022,1,6,f +14791,3022,14,1,f +14791,3022,0,5,f +14791,3023,7,6,f +14791,3023,4,4,f +14791,3023,0,10,f +14791,3024,4,2,f +14791,3024,0,2,f +14791,3027,7,5,f +14791,3034,15,20,f +14791,3037,0,6,f +14791,3038,0,2,f +14791,3039,0,4,f +14791,3040a,0,2,f +14791,3045,0,2,f +14791,3058b,7,1,f +14791,3062a,0,1,f +14791,3065,47,26,f +14791,3087bc01,4,2,f +14791,3192,4,2,f +14791,3193,4,2,f +14791,3228a,1,8,f +14791,3229a,1,16,f +14791,3230a,1,16,f +14791,458,7,4,f +14791,468c01,0,1,f +14791,7049b,15,8,f +14791,737,4,5,f +14791,737bc01,4,5,f +14791,996ac15,15,1,f +14791,wheel1a,4,16,f +14791,wheel1b,4,4,f +14791,x579c02,0,1,f +14793,122c02,0,2,f +14793,2357,4,2,f +14793,2357,15,2,f +14793,2456,4,1,f +14793,2458,1,1,f +14793,2460,1,1,f +14793,2479,1,2,f +14793,2745stor,1,1,f +14793,3001,4,2,f +14793,3001,14,1,f +14793,3001,15,2,f +14793,3001,1,2,f +14793,3002,4,2,f +14793,3002,1,2,f +14793,3002,15,2,f +14793,3003,1,2,f +14793,3003,15,2,f +14793,3003,4,2,f +14793,3003,0,2,f +14793,3003,14,2,f +14793,3004,15,20,f +14793,3004,1,20,f +14793,3004,0,8,f +14793,3004,4,34,f +14793,3004,14,16,f +14793,3004,47,4,f +14793,3005,4,22,f +14793,3005,0,10,f +14793,3005,47,2,f +14793,3005,14,14,f +14793,3005,15,17,f +14793,3005,1,16,f +14793,3008,4,1,f +14793,3008,15,1,f +14793,3009,1,2,f +14793,3009,15,2,f +14793,3009,4,2,f +14793,3010,4,12,f +14793,3010,1,4,f +14793,3010,15,9,f +14793,3010,14,2,f +14793,3010p08,4,1,f +14793,3010p09,4,1,f +14793,3020,4,2,f +14793,3020,1,2,f +14793,3021,1,2,f +14793,3021,4,2,f +14793,3022,4,2,f +14793,3023,4,2,f +14793,3030,1,1,f +14793,3031,4,1,f +14793,3032,1,1,f +14793,3034,1,4,f +14793,3035,4,1,f +14793,3039,47,2,f +14793,3040b,1,4,f +14793,3068b,4,2,f +14793,3069b,4,2,f +14793,3081cc01,14,2,f +14793,3183b,4,1,f +14793,3184,4,1,f +14793,3297,1,6,f +14793,3298,1,6,f +14793,3299,1,4,f +14793,3300,1,2,f +14793,3471,2,1,f +14793,3483,0,4,f +14793,3622,0,2,f +14793,3622,1,4,f +14793,3622,14,2,f +14793,3622,4,2,f +14793,3622,15,4,f +14793,3623,4,2,f +14793,3623,1,2,f +14793,3626apr0001,14,2,f +14793,3633,4,6,f +14793,3641,0,4,f +14793,3659,4,2,f +14793,3660,1,4,f +14793,3665,1,4,f +14793,3710,4,2,f +14793,3710,1,2,f +14793,3741,2,3,f +14793,3742,1,3,f +14793,3742,4,1,t +14793,3742,15,1,t +14793,3742,1,1,t +14793,3742,4,3,f +14793,3742,15,3,f +14793,3747b,1,2,f +14793,3788,4,2,f +14793,3794a,4,2,f +14793,3795,4,2,f +14793,3821,4,1,f +14793,3822,4,1,f +14793,3823,47,1,f +14793,3829c01,4,1,f +14793,3853,14,4,f +14793,3854,4,8,f +14793,3856,4,4,f +14793,3857,2,2,f +14793,3861b,14,2,f +14793,3901,6,1,f +14793,3957a,0,1,f +14793,3960p06,15,1,f +14793,4175,0,2,f +14793,4180c02,0,2,f +14793,4212b,15,1,f +14793,4495b,14,1,f +14793,4530,4,1,f +14793,4864a,15,2,f +14793,4864ap02,15,2,f +14793,6007,8,1,f +14793,6853,1,4,f +14793,970c00,1,1,f +14793,970c00,7,1,f +14793,973p72c01,15,1,f +14793,973px62c02,15,1,f +14794,1552.1stk01,9999,1,t +14794,1552.1stk02,9999,1,t +14794,3003,0,1,f +14794,3004,313,10,f +14794,3004,0,2,f +14794,3005,0,2,f +14794,3010,313,4,f +14794,3020,313,2,f +14794,3020,0,3,f +14794,3020,15,1,f +14794,3021,0,2,f +14794,3021,7,2,f +14794,3021,313,10,f +14794,3022,14,4,f +14794,3022,0,2,f +14794,3023,313,11,f +14794,3023,0,9,f +14794,3023,15,3,f +14794,3024,15,6,f +14794,3024,46,2,f +14794,3024,47,2,f +14794,3028,7,4,f +14794,3031,0,1,f +14794,3035,0,1,f +14794,3035,313,2,f +14794,3036,7,2,f +14794,3039,313,1,f +14794,3048c,4,1,f +14794,3062b,4,6,f +14794,3062b,1,12,f +14794,3062b,0,4,f +14794,3068b,0,1,f +14794,3069b,313,10,f +14794,3069b,15,7,f +14794,3069b,0,4,f +14794,3070b,313,4,f +14794,3188,313,1,f +14794,3189,313,1,f +14794,3482,7,27,f +14794,3483,0,27,f +14794,3622,313,6,f +14794,3623,313,8,f +14794,3626apr0001,14,1,f +14794,3629,7,1,f +14794,3660,4,1,f +14794,3660,313,2,f +14794,3665,0,2,f +14794,3666,313,5,f +14794,3666,0,2,f +14794,3666,15,2,f +14794,3673,7,2,f +14794,3700,0,2,f +14794,3701,4,2,f +14794,3701,0,2,f +14794,3706,0,5,f +14794,3709,313,2,f +14794,3710,313,13,f +14794,3710,15,4,f +14794,3710,0,3,f +14794,3713,7,2,f +14794,3749,7,2,f +14794,3755,7,32,f +14794,3761,7,2,f +14794,3794a,313,4,f +14794,3794a,0,1,f +14794,3795,4,2,f +14794,3823,41,1,f +14794,3829c01,4,1,f +14794,3894,0,2,f +14794,3937,0,4,f +14794,3938,0,4,f +14794,3941,14,2,f +14794,3941,15,2,f +14794,3957a,0,4,f +14794,4032a,4,2,f +14794,4070,313,4,f +14794,4070,0,2,f +14794,4079,4,1,f +14794,4085b,15,2,f +14794,4143,7,1,f +14794,4162,313,6,f +14794,4175,0,2,f +14794,4213,313,1,f +14794,4282,0,1,f +14794,4315,15,1,f +14794,4345a,14,4,f +14794,4346,14,4,f +14794,4477,313,4,f +14794,4599a,7,2,f +14794,6141,46,6,f +14794,6141,36,4,f +14794,791,7,4,f +14794,970c00,1,1,f +14794,973p26c01,1,1,f +14796,2780,0,1,t +14796,2780,0,22,f +14796,2825,0,2,f +14796,2950,0,1,f +14796,32002,72,1,f +14796,32002,72,1,t +14796,32009,0,2,f +14796,32013,72,4,f +14796,32015,0,2,f +14796,32034,0,1,f +14796,32054,0,4,f +14796,32056,14,2,f +14796,32062,4,7,f +14796,32073,71,2,f +14796,32123b,71,1,t +14796,32123b,71,2,f +14796,32140,0,2,f +14796,32184,71,5,f +14796,32192,72,1,f +14796,32250,14,2,f +14796,32270,0,2,f +14796,32316,0,1,f +14796,32316,71,1,f +14796,32523,72,3,f +14796,32524,0,3,f +14796,32525,14,4,f +14796,32526,1,2,f +14796,32526,72,2,f +14796,32556,19,1,f +14796,33299a,71,1,f +14796,3647,72,1,f +14796,3650c,71,1,f +14796,3705,0,2,f +14796,3713,71,8,f +14796,3713,71,1,t +14796,3749,19,4,f +14796,3873,0,56,f +14796,4019,71,8,f +14796,40490,14,3,f +14796,40490,0,4,f +14796,42003,0,3,f +14796,43093,1,3,f +14796,44294,71,2,f +14796,44809,71,1,f +14796,4519,71,16,f +14796,4716,71,2,f +14796,48989,71,1,f +14796,50163,72,1,f +14796,55013,72,1,f +14796,59426,72,1,f +14796,59443,0,6,f +14796,60483,71,1,f +14796,60485,71,4,f +14796,6141,182,2,f +14796,6141,47,2,f +14796,6141,182,1,t +14796,6141,47,1,t +14796,61904,72,1,f +14796,63869,71,2,f +14796,64451,72,2,f +14796,6536,14,3,f +14796,6536,0,2,f +14796,6558,1,8,f +14796,6587,28,2,f +14796,6589,19,2,f +14796,6629,14,1,f +14796,6632,14,4,f +14796,75c12,0,2,f +14796,87080,14,1,f +14796,87082,71,3,f +14796,87083,72,2,f +14796,87086,14,1,f +14796,87407,71,1,f +14797,3020,4,1,f +14797,3023,4,14,f +14797,3024,46,4,f +14797,3034,7,2,f +14797,3034,4,2,f +14797,3035,7,1,f +14797,3069b,7,2,f +14797,3460,4,4,f +14797,3482,7,6,f +14797,3634,0,6,f +14797,3647,7,2,f +14797,3648a,7,1,f +14797,3650a,7,1,f +14797,3651,7,4,f +14797,3666,4,4,f +14797,3673,7,2,f +14797,3700,4,8,f +14797,3701,4,7,f +14797,3702,4,4,f +14797,3703,4,4,f +14797,3705,0,2,f +14797,3706,0,2,f +14797,3707,0,1,f +14797,3709,7,1,f +14797,3710,4,4,f +14797,3713,7,8,f +14797,3736,7,1,f +14797,3737,0,2,f +14797,3738,7,1,f +14797,3743,7,1,f +14797,3749,7,8,f +14797,3894,4,4,f +14797,3895,4,4,f +14797,4185,7,1,f +14797,4261,7,2,f +14797,4442,7,3,f +14797,4459,0,16,f +14797,9244,7,1,f +14798,2300,73,1,f +14798,2301,14,1,f +14798,2302,25,1,f +14798,2302,1,1,f +14798,2302,10,2,f +14798,2302pb03,1,1,f +14798,3437,25,1,f +14798,3437,14,1,f +14798,3437,484,2,f +14798,3664pb13,4,1,f +14798,4066,25,1,f +14798,4066,1,1,f +14798,40666,25,1,f +14798,40666,27,1,f +14798,40666,4,1,f +14798,63871pb01,14,1,f +14798,6394,14,1,f +14798,6394,1,1,f +14798,759464,4,1,f +14798,98223,27,1,f +14798,98223,4,1,f +14798,98224,4,1,f +14798,99353,73,1,f +14798,99356,14,1,f +14800,27bc01,15,1,f +14800,29bc01,15,1,f +14800,3081bc01,15,1,f +14800,3087bc01,15,1,f +14800,31bc01,15,1,f +14800,32bc01,15,1,f +14800,453bc01,15,1,f +14800,604c01,15,1,f +14800,645bc01,15,1,f +14800,646bc01,15,1,f +14801,2417,2,1,f +14801,2465,7,1,f +14801,2493b,4,3,f +14801,2494pb03,41,3,f +14801,2540,8,1,f +14801,2555,4,1,f +14801,2569,4,1,f +14801,298c02,4,1,f +14801,3001,4,1,f +14801,3003,0,1,f +14801,3004pc0,15,1,f +14801,3006,7,1,f +14801,3010pb017,0,2,f +14801,3023,4,1,f +14801,30278c01,0,1,f +14801,3037px1w,0,1,f +14801,3039px14,15,1,f +14801,3069bp02,7,1,f +14801,3069bp80,15,1,f +14801,3069bpr0100,2,4,f +14801,3185,7,1,f +14801,3624,15,2,f +14801,3626bp03,14,1,f +14801,3626bp04,14,1,f +14801,3666,7,2,f +14801,3678a,0,1,f +14801,3710,0,1,f +14801,3741,2,2,f +14801,3742,14,2,t +14801,3742,14,6,f +14801,3754,0,4,f +14801,3823,41,1,f +14801,3829c01,7,1,f +14801,3865,2,1,f +14801,4079,1,1,f +14801,4083,14,1,f +14801,4085c,0,1,f +14801,4085c,14,2,f +14801,4132,0,3,f +14801,4133,7,1,f +14801,4286,0,4,f +14801,4345b,7,3,f +14801,4346pb03,7,2,f +14801,4346pb08,7,1,f +14801,4536,15,1,f +14801,4595,0,1,f +14801,4600,7,1,f +14801,4623,0,1,f +14801,47899c01,0,1,f +14801,57503,334,1,f +14801,57504,334,1,f +14801,57505,334,1,f +14801,57506,334,1,f +14801,6014a,7,6,f +14801,6015,0,6,f +14801,6016,0,1,f +14801,6111,7,1,f +14801,6141,46,2,f +14801,6141,15,1,f +14801,6212,7,2,f +14801,6583,7,2,f +14801,92410,1,1,f +14801,970c00,0,2,f +14801,973pb0194c01,7,1,f +14801,973px31c01,7,1,f +14802,15210,0,3,f +14802,2412b,0,4,f +14802,2412b,14,3,f +14802,2431,10,2,f +14802,2432,71,4,f +14802,2436,0,1,f +14802,2445,72,1,f +14802,2456,72,2,f +14802,2744,0,1,f +14802,2817,71,1,f +14802,2823,0,2,f +14802,2926,0,2,f +14802,298c02,1,1,t +14802,298c02,1,1,f +14802,3003,71,3,f +14802,3004,10,5,f +14802,3005,14,1,f +14802,3005,15,2,f +14802,3010,15,1,f +14802,30162,71,2,f +14802,3020,0,5,f +14802,3021,25,3,f +14802,3023,14,5,f +14802,3023,1,4,f +14802,3024,15,2,f +14802,3032,15,3,f +14802,3032,71,3,f +14802,3035,72,2,f +14802,3039,14,2,f +14802,3039,4,2,f +14802,3039,1,2,f +14802,30414,14,3,f +14802,30414,72,1,f +14802,3062b,27,1,f +14802,3062b,47,1,f +14802,3062b,322,2,f +14802,30663,0,1,f +14802,3069b,4,1,f +14802,3069b,1,1,f +14802,3069b,14,1,f +14802,3069b,19,1,f +14802,3069b,0,2,f +14802,3069b,15,1,f +14802,3069bpr0099,15,1,f +14802,3070b,46,1,t +14802,3070b,46,2,f +14802,32009,14,1,f +14802,32028,0,2,f +14802,32054,71,2,f +14802,32062,4,1,f +14802,3464,15,1,f +14802,3622,14,1,f +14802,3626bpr0282,14,1,f +14802,3626cpr0743,14,1,f +14802,3626cpr0892,14,1,f +14802,3660,15,2,f +14802,3666,15,4,f +14802,3666,72,3,f +14802,3666,14,1,f +14802,3710,2,5,f +14802,3710,15,2,f +14802,3710,0,1,f +14802,3713,4,1,t +14802,3713,4,1,f +14802,3749,19,1,f +14802,3794b,71,1,f +14802,3795,72,2,f +14802,3821,15,1,f +14802,3822,15,1,f +14802,3829c01,71,1,f +14802,3836,70,1,f +14802,3837,0,1,t +14802,3837,0,1,f +14802,4032a,14,3,f +14802,4070,19,8,f +14802,4079,1,1,f +14802,4085c,15,2,f +14802,4176,40,1,f +14802,4274,71,1,t +14802,4274,71,3,f +14802,4282,71,1,f +14802,43093,1,1,f +14802,44301a,0,2,f +14802,44302a,0,2,f +14802,4488,0,4,f +14802,4589,34,1,f +14802,4865b,15,1,f +14802,4865b,1,2,f +14802,4865b,14,2,f +14802,4865b,4,2,f +14802,50745,72,4,f +14802,50949,0,2,f +14802,52031,10,1,f +14802,54200,47,1,t +14802,54200,0,3,f +14802,54200,10,4,f +14802,54200,10,1,t +14802,54200,47,4,f +14802,54200,72,1,t +14802,54200,72,2,f +14802,54200,0,1,t +14802,58176,182,3,f +14802,59895,0,1,f +14802,6014b,15,8,f +14802,60219,0,1,f +14802,60475b,15,2,f +14802,6081,14,1,f +14802,6091,71,1,f +14802,6141,80,1,f +14802,6141,36,1,t +14802,6141,182,2,f +14802,6141,182,1,t +14802,6141,36,4,f +14802,6141,15,1,t +14802,6141,80,1,t +14802,6141,72,2,t +14802,6141,72,6,f +14802,6141,15,1,f +14802,61780,2,1,f +14802,6187,0,1,f +14802,6192,71,2,f +14802,63864,71,2,f +14802,64450,0,1,f +14802,64453,272,6,f +14802,6636,19,4,f +14802,6636,71,2,f +14802,85984,0,3,f +14802,86035,4,1,f +14802,86035,1,1,f +14802,87079,15,3,f +14802,87087,1,2,f +14802,87552,40,2,f +14802,87580,72,6,f +14802,87580,71,8,f +14802,87609,15,4,f +14802,87618,71,1,f +14802,87697,0,8,f +14802,88286,308,1,f +14802,92280,71,2,f +14802,92438,72,1,f +14802,92593,72,1,f +14802,95228,40,1,f +14802,970c00,71,1,f +14802,970c00,25,1,f +14802,970c00,28,1,f +14802,973pr1160c01,1,1,f +14802,973pr1182c01,25,1,f +14802,973pr1485c01,4,1,f +14802,98281,15,3,f +14802,98288,4,1,f +14802,98549,71,3,f +14803,45575,71,2,f +14803,45799,71,4,f +14803,47349c04,148,4,f +14804,2654,27,1,f +14804,3004,25,2,f +14804,3022,25,1,f +14804,30374,4,1,f +14804,3626bpr0868,4,1,f +14804,4497,297,1,f +14804,4643631,9999,1,f +14804,4643632,9999,1,f +14804,4643633,9999,1,f +14804,4643634,9999,1,f +14804,4643635,89,1,f +14804,60752,179,1,f +14804,64567,71,1,f +14804,87747,15,1,f +14804,970c00pr0272,15,1,f +14804,973pr1886c01,15,1,f +14804,98151pr0002,15,1,f +14804,98342pr0002,4,1,f +14804,98354pr0005,27,1,f +14805,12825,71,4,f +14805,2432,72,1,f +14805,2432,15,1,f +14805,2445,15,1,f +14805,2654,71,1,f +14805,3005,2,1,f +14805,30088,0,2,f +14805,3020,71,1,f +14805,3021,15,1,f +14805,3021,72,1,f +14805,3022,72,1,f +14805,3022,15,1,f +14805,3023,72,1,f +14805,3023,15,3,f +14805,3023,2,1,f +14805,30236,15,2,f +14805,3024,71,4,f +14805,30377,0,2,f +14805,30377,0,1,t +14805,32064b,2,2,f +14805,32064b,15,2,f +14805,32073,71,1,f +14805,3626bpr0525,78,4,f +14805,3665,71,1,f +14805,3794b,2,3,f +14805,3794b,15,3,f +14805,3795,2,1,f +14805,3839b,0,1,f +14805,4286,72,1,f +14805,4287,15,1,f +14805,4599b,0,2,f +14805,4600,71,1,f +14805,4623,71,2,f +14805,57899,0,2,f +14805,58247,0,1,f +14805,60897,15,2,f +14805,61189pr0007,15,1,f +14805,61189pr0008,25,2,f +14805,6120,15,4,f +14805,61409,72,2,f +14805,61678,15,2,f +14805,6632,72,2,f +14805,6636,15,2,f +14805,92738,0,2,f +14805,92742pr0001,15,1,f +14805,970c00pr0197,15,2,f +14805,970c00pr0206,15,1,f +14805,970x026,15,1,f +14805,973pr0470c01,15,1,f +14805,973pr0480c01,15,2,f +14805,973pr1729c01,15,1,f +14806,10201,0,1,f +14806,10247,4,2,f +14806,10247,71,3,f +14806,11153,71,2,f +14806,11153,4,2,f +14806,11211,71,1,f +14806,11211,4,4,f +14806,11215,71,2,f +14806,11458,72,2,f +14806,11458,4,2,f +14806,11477,4,18,f +14806,11477,72,2,f +14806,13547,0,2,f +14806,13547,4,2,f +14806,14719,71,6,f +14806,14719,4,4,f +14806,15068,4,6,f +14806,15068,72,2,f +14806,15068,0,2,f +14806,15070,14,2,f +14806,15462,28,1,f +14806,15535,72,5,f +14806,15573,72,1,f +14806,15712,72,5,f +14806,18674,72,2,f +14806,18677,4,4,f +14806,19215,179,4,f +14806,20431,40,1,f +14806,21016,9999,1,f +14806,2357,72,3,f +14806,2357,4,2,f +14806,2412b,15,2,f +14806,2412b,4,4,f +14806,2412b,4,1,t +14806,2420,72,5,f +14806,2420,4,8,f +14806,2431,0,6,f +14806,2432,14,2,f +14806,2436,71,2,f +14806,2445,4,2,f +14806,2450,72,8,f +14806,2458,72,2,f +14806,2730,71,4,f +14806,2780,0,12,f +14806,2780,0,2,t +14806,2819,0,1,f +14806,2877,71,2,f +14806,2921,4,2,f +14806,298c02,0,1,f +14806,298c02,0,1,t +14806,3003,0,1,f +14806,3004,72,4,f +14806,3004,15,1,f +14806,3004,4,8,f +14806,3005,72,4,f +14806,3005,4,16,f +14806,3009,4,2,f +14806,3010,4,2,f +14806,3010,72,2,f +14806,3010,0,1,f +14806,30132,72,8,f +14806,30132,72,1,t +14806,30137,71,1,f +14806,3020,72,2,f +14806,3020,0,2,f +14806,3020,4,2,f +14806,3021,4,8,f +14806,3021,0,6,f +14806,3021,71,6,f +14806,3022,4,16,f +14806,3022,0,7,f +14806,3022,72,8,f +14806,3023,4,32,f +14806,3023,40,4,f +14806,3023,72,38,f +14806,3023,14,10,f +14806,3023,0,17,f +14806,3024,72,12,f +14806,3024,14,1,t +14806,3024,47,4,f +14806,3024,4,2,t +14806,3024,14,4,f +14806,3024,71,24,f +14806,3024,0,2,f +14806,3024,47,1,t +14806,3024,72,1,t +14806,3024,4,26,f +14806,3024,0,1,t +14806,3024,71,1,t +14806,3029,72,2,f +14806,3034,4,1,f +14806,3034,72,2,f +14806,30357,0,2,f +14806,30374,71,4,f +14806,3040b,4,2,f +14806,30414,71,5,f +14806,30526,71,2,f +14806,30553,0,8,f +14806,3062b,2,1,f +14806,3062b,71,2,f +14806,3068b,0,4,f +14806,3068b,4,7,f +14806,3069b,72,13,f +14806,3069b,4,16,f +14806,3069b,71,3,f +14806,3069b,0,7,f +14806,3070b,40,1,t +14806,3070b,4,12,f +14806,3070b,40,2,f +14806,3070b,72,1,t +14806,3070b,182,4,f +14806,3070b,182,1,t +14806,3070b,72,8,f +14806,3070b,4,2,t +14806,32000,0,2,f +14806,32018,72,2,f +14806,32028,4,6,f +14806,32054,4,2,f +14806,32062,4,3,f +14806,32064a,0,4,f +14806,32064a,72,1,f +14806,32124,0,4,f +14806,32140,14,2,f +14806,32291,71,2,f +14806,32316,0,2,f +14806,3245c,0,2,f +14806,32523,71,1,f +14806,32524,4,4,f +14806,32526,4,2,f +14806,32526,14,2,f +14806,32530,72,2,f +14806,32531,0,1,f +14806,3460,71,1,f +14806,3460,0,2,f +14806,3623,4,12,f +14806,3623,72,6,f +14806,3623,71,8,f +14806,3633,0,2,f +14806,3665,72,2,f +14806,3666,4,13,f +14806,3666,72,4,f +14806,3666,0,9,f +14806,3701,71,1,f +14806,3701,72,3,f +14806,3707,0,1,f +14806,3710,71,8,f +14806,3710,0,11,f +14806,3710,2,2,f +14806,3737,0,2,f +14806,3747a,4,2,f +14806,3794b,71,6,f +14806,3795,4,3,f +14806,3795,0,1,f +14806,3795,72,1,f +14806,3832,72,2,f +14806,3895,0,1,f +14806,3941,72,2,f +14806,4006,0,1,f +14806,4032a,72,4,f +14806,4070,72,2,f +14806,4070,71,5,f +14806,4081b,4,2,f +14806,4162,4,13,f +14806,41678,71,4,f +14806,41769,4,1,f +14806,41770,4,1,f +14806,41854,4,2,f +14806,42003,71,2,f +14806,42003,4,2,f +14806,4274,1,1,t +14806,4274,71,3,f +14806,4274,1,8,f +14806,4274,71,1,t +14806,4286,0,4,f +14806,43093,1,3,f +14806,43337,40,7,f +14806,43722,4,1,f +14806,43722,0,2,f +14806,43723,4,1,f +14806,43723,0,2,f +14806,44309,0,4,f +14806,44728,15,4,f +14806,44728,4,6,f +14806,4477,0,5,f +14806,4477,4,2,f +14806,4477,72,4,f +14806,4590,72,4,f +14806,4740,36,2,f +14806,4740,182,2,f +14806,4740,72,2,f +14806,48336,71,2,f +14806,4865a,40,3,f +14806,48729b,0,1,t +14806,48729b,0,1,f +14806,50950,4,4,f +14806,50955pr0001,0,1,f +14806,50956pr0001,0,1,f +14806,50967,4,2,f +14806,51739,4,4,f +14806,52501,4,2,f +14806,54200,0,1,t +14806,54200,71,4,f +14806,54200,0,6,f +14806,54200,71,1,t +14806,56145,179,4,f +14806,6005,72,2,f +14806,60470b,0,8,f +14806,60475b,71,2,f +14806,60477,4,4,f +14806,60478,72,7,f +14806,60478,0,10,f +14806,60479,71,1,f +14806,60481,72,2,f +14806,60481,4,2,f +14806,60483,71,4,f +14806,60485,71,4,f +14806,60897,14,2,f +14806,60897,0,4,f +14806,60897,4,22,f +14806,6112,0,1,f +14806,61252,4,4,f +14806,61409,72,2,f +14806,6141,4,1,t +14806,6141,179,6,f +14806,6141,4,2,f +14806,6141,297,1,t +14806,6141,297,3,f +14806,6141,179,1,t +14806,6179,4,2,f +14806,6179,72,1,f +14806,6192,72,1,f +14806,6231,0,2,f +14806,6232,72,4,f +14806,62462,179,3,f +14806,63864,14,1,f +14806,63864,4,6,f +14806,63965,4,2,f +14806,64567,0,2,f +14806,64567,0,2,t +14806,6541,4,10,f +14806,6541,72,6,f +14806,6558,1,31,f +14806,6632,15,4,f +14806,6636,4,2,f +14806,6636,0,2,f +14806,6636,72,7,f +14806,85861,0,6,f +14806,85861,0,1,t +14806,85943,72,1,f +14806,85984,4,12,f +14806,85984,72,5,f +14806,85984,0,4,f +14806,87079,72,2,f +14806,87079,4,8,f +14806,87083,72,4,f +14806,87087,0,10,f +14806,87087,71,4,f +14806,87580,71,1,f +14806,87580,0,6,f +14806,87618,0,1,f +14806,87994,0,1,t +14806,87994,0,1,f +14806,88072,72,2,f +14806,88292,0,2,f +14806,92280,71,4,f +14806,92582,71,8,f +14806,92593,72,10,f +14806,92950,4,2,f +14806,93274,71,2,f +14806,93606,4,7,f +14806,96874,25,1,t +14806,98138,179,1,t +14806,98138,179,2,f +14806,98138,71,1,t +14806,98138,71,6,f +14806,98138pr0012,179,1,t +14806,98138pr0012,179,2,f +14806,99206,71,2,f +14806,99207,71,9,f +14806,99207,0,2,f +14806,99207,4,6,f +14806,99780,4,1,f +14806,99780,0,4,f +14806,99780,72,1,f +14806,99781,71,2,f +14806,99781,0,6,f +14807,2418b,33,1,f +14807,2483,33,1,f +14807,2507,33,1,f +14807,3937,0,1,f +14807,4315,15,1,f +14807,4315,4,1,f +14807,4315,0,1,f +14807,4474,33,1,f +14810,11269pr0001,47,1,f +14810,11270,42,1,f +14810,11271,179,1,f +14810,11272,148,1,f +14810,11273,148,2,f +14810,11280,4,1,f +14810,11302pat0001,36,3,f +14810,11305,179,1,f +14810,12941,0,1,f +14810,2780,0,1,t +14810,2780,0,8,f +14810,32039,0,4,f +14810,32062,4,6,f +14810,32138,71,2,f +14810,32523,0,1,f +14810,32526,0,2,f +14810,3705,0,1,f +14810,3713,71,3,f +14810,3713,71,1,t +14810,43857,71,1,f +14810,4519,71,3,f +14810,48989,71,1,f +14810,53451,179,2,t +14810,53451,179,4,f +14810,53585,0,1,f +14810,59443,0,1,f +14810,64276,72,2,f +14810,64727,71,1,f +14810,6558,1,2,f +14810,74261,72,6,f +14810,87083,72,2,f +14810,90607,0,2,f +14810,90608,72,4,f +14810,90616,0,2,f +14810,90623,0,1,f +14810,90639,4,2,f +14810,90641,57,5,f +14810,90650,4,2,f +14810,90652,179,2,f +14810,90661,179,2,f +14810,92222,148,2,f +14810,93571,0,3,f +14810,93575,4,1,f +14810,98141,179,2,f +14810,98313,4,4,f +14810,98570pat01,15,1,f +14810,98577,72,3,f +14810,98578,148,2,f +14811,3299,0,25,f +14813,3002,378,1,f +14813,3005,8,4,f +14813,3010,8,1,f +14813,3031,7,1,f +14813,3040b,378,2,f +14813,3040b,8,4,f +14813,3040b,7,4,f +14813,3298,378,2,f +14813,3660,7,2,f +14813,3665,7,4,f +14813,3700,378,2,f +14813,40378,378,2,f +14813,40379,378,1,f +14813,x158,378,1,f +14814,2444,0,1,f +14814,2476a,71,4,f +14814,2577,0,8,f +14814,2780,0,1,t +14814,2780,0,2,f +14814,3001,0,2,f +14814,3002,70,2,f +14814,3007,0,2,f +14814,3010,70,1,f +14814,30181,0,1,f +14814,30283,72,1,f +14814,3031,70,3,f +14814,30367b,320,2,f +14814,30382,70,1,f +14814,3039,320,6,f +14814,3069b,72,1,t +14814,3069b,72,2,f +14814,32018,0,4,f +14814,32074c01,0,1,f +14814,3749,19,1,t +14814,3749,19,6,f +14814,3832,72,2,f +14814,3832,70,2,f +14814,41669,57,1,f +14814,4286,320,6,f +14814,4288153,320,1,f +14814,43093,1,1,t +14814,43093,1,2,f +14814,47430,320,2,f +14814,47431,320,2,f +14814,47432,72,2,f +14814,47452,72,2,f +14814,47454,320,2,f +14814,47455,0,10,f +14814,47456,132,2,f +14814,47457,0,2,f +14814,47457,135,8,f +14814,50657pb02,135,1,f +14814,50659c01pb02,320,1,f +14814,53613,132,1,f +14814,54175,0,2,f +14814,54176,0,4,f +14814,54177,135,1,f +14814,54291,320,1,f +14814,57028c02,0,1,f +14814,6222,70,2,f +14814,6232,70,2,f +14814,bb153pr0011,320,1,f +14815,604c01,4,6,f +14815,604c01,15,6,f +14817,6632,7,50,f +14818,cwindow02,4,1,f +14818,cwindow02,1,1,f +14818,cwindow02,14,1,f +14818,cwindow02,15,1,f +14820,10199,10,1,f +14820,11170,4,2,f +14820,11335,29,1,f +14820,12744,71,1,f +14820,13586,15,1,f +14820,16087,29,2,f +14820,2302,4,2,f +14820,3437,191,2,f +14820,3437,27,3,f +14820,3437,4,2,f +14820,4066,29,3,f +14820,40666,4,1,f +14820,44524,226,2,f +14820,47551,15,1,f +14820,51262,226,1,f +14820,58086,70,1,f +14820,61649,5,1,f +14820,61896,484,1,f +14820,6510,2,1,f +14820,6510,73,1,f +14820,6510,10,1,f +14820,6510,25,1,f +14820,74965,10,1,f +14820,75121,73,1,f +14820,75723,15,1,f +14820,90265,15,2,f +14820,98233,4,1,f +14820,98459,70,2,f +14820,98460,70,4,f +14824,2419,0,4,f +14824,2569,42,2,f +14824,2580c01,0,2,f +14824,2607,4,2,f +14824,2730,4,2,f +14824,2983,7,2,f +14824,3001,4,10,f +14824,30022,14,1,f +14824,3003,4,8,f +14824,3004,4,8,f +14824,30212,8,4,f +14824,3027,0,4,f +14824,3069b,7,2,f +14824,3069bp52,15,1,f +14824,3069bp61,15,1,f +14824,3069bp68,15,1,f +14824,32013,1,2,f +14824,32034,7,4,f +14824,32069,0,2,f +14824,3298,4,2,f +14824,3647,7,1,t +14824,3647,7,3,f +14824,3648a,7,6,f +14824,3650c,7,2,f +14824,3679,7,2,f +14824,3680,1,2,f +14824,3702,4,2,f +14824,3703,0,2,f +14824,3705,0,2,f +14824,3706,0,2,f +14824,3707,0,2,f +14824,3708,0,2,f +14824,3737,0,2,f +14824,3738,4,2,f +14824,3743,7,2,f +14824,3933,0,2,f +14824,3934,0,2,f +14824,3941,4,4,f +14824,4019,7,2,f +14824,4185,7,2,f +14824,4285b,0,2,f +14824,4519,0,2,f +14824,4589,42,2,f +14824,4716,0,2,f +14824,5306bc378,0,2,f +14824,6538b,7,4,f +14824,6553,7,1,f +14824,6579,0,6,f +14824,6580,14,6,f +14824,6587,8,2,f +14824,6588,14,2,f +14824,6589,7,4,f +14824,6630,7,1,f +14824,73092,0,2,f +14824,73129,7,4,f +14824,85543,15,2,f +14824,85543,15,3,t +14824,85544,4,2,f +14824,9244,7,2,f +14824,bb1238,9999,1,f +14825,3021,15,2,f +14825,3068b,29,1,f +14825,4865b,322,3,f +14825,6231,322,2,f +14825,93160,15,1,f +14828,11203,72,1,f +14828,11477,15,4,f +14828,15068,15,6,f +14828,15068,19,2,f +14828,15207,72,2,f +14828,15303,36,2,f +14828,15400,72,1,f +14828,15535,72,1,f +14828,17485pr0001,71,1,f +14828,17486,71,2,f +14828,17576pr0001,15,1,f +14828,2412b,72,2,f +14828,2412b,14,3,f +14828,2412b,15,4,f +14828,2420,15,4,f +14828,2431,15,2,f +14828,2444,15,2,f +14828,2654,47,1,f +14828,2654,71,1,f +14828,2780,0,4,f +14828,2877,72,5,f +14828,3004,15,2,f +14828,3020,72,2,f +14828,3020,15,3,f +14828,3020,71,1,f +14828,3023,14,4,f +14828,3023,71,11,f +14828,3023,15,4,f +14828,3024,71,8,f +14828,3032,15,1,f +14828,3034,72,1,f +14828,3034,15,5,f +14828,3035,15,1,f +14828,30350b,72,1,f +14828,30363,15,2,f +14828,30372pr1001,40,1,f +14828,30383,72,2,f +14828,3039,72,1,f +14828,30526,71,1,f +14828,3068b,191,1,f +14828,3068b,15,2,f +14828,3069b,71,4,f +14828,3069b,15,2,f +14828,3070b,72,2,f +14828,32000,14,2,f +14828,3460,72,2,f +14828,3623,15,2,f +14828,3626cpr1515,78,1,f +14828,3665,72,2,f +14828,3666,15,2,f +14828,3710,72,2,f +14828,3710,15,5,f +14828,3747b,15,2,f +14828,3794b,15,4,f +14828,3795,15,1,f +14828,3894,71,2,f +14828,41769,15,2,f +14828,41770,15,2,f +14828,4274,1,4,f +14828,4274,71,2,f +14828,44728,72,2,f +14828,4510,191,2,f +14828,4510,15,6,f +14828,48336,15,4,f +14828,48336,71,6,f +14828,4864b,40,1,f +14828,4871,72,2,f +14828,52501,15,2,f +14828,54200,71,4,f +14828,54200,15,4,f +14828,60470a,71,8,f +14828,60478,0,2,f +14828,6141,42,6,f +14828,62462,15,2,f +14828,63864,72,2,f +14828,63965,0,2,f +14828,6636,72,2,f +14828,85984,15,4,f +14828,85984,72,1,f +14828,88283,0,1,f +14828,92593,15,2,f +14828,92738,0,1,f +14828,92946,15,4,f +14828,970c00pr0728,484,1,f +14828,973pr2788c01,28,1,f +14828,98100,0,2,f +14828,98100pr1002,484,1,f +14828,98138,182,2,f +14828,99207,0,4,f +14828,99781,15,2,f +14830,48253,135,2,f +14830,60176,72,2,f +14830,60895,72,1,f +14830,60896,72,2,f +14830,60899,25,2,f +14830,60901,42,1,f +14830,60905,25,1,f +14830,60930,135,1,f +14830,62386,25,2,f +14832,3470,2,10,f +14833,3020,15,1,f +14833,3020,0,1,f +14833,3023,0,1,f +14833,3070b,36,1,t +14833,3070b,36,2,f +14833,3070b,34,2,f +14833,3070b,34,1,t +14833,3666,0,1,f +14833,3956,0,1,f +14834,2432,1,2,f +14834,2436,1,2,f +14834,2460,0,1,f +14834,2555,1,1,f +14834,2569,71,1,f +14834,2780,0,1,t +14834,2780,0,3,f +14834,3020,15,1,f +14834,3022,27,3,f +14834,3032,1,1,f +14834,30361pr0001,1,1,f +14834,30391,0,2,f +14834,3069b,27,2,f +14834,32140,1,2,f +14834,32524,27,2,f +14834,3710,4,3,f +14834,3713,4,1,t +14834,3713,4,4,f +14834,3937,4,1,f +14834,3941,1,2,f +14834,3942c,4,1,f +14834,4085c,4,2,f +14834,41747,0,1,f +14834,41747pr0005,27,1,f +14834,41748,0,1,f +14834,41748pr0005,27,1,f +14834,41769,1,1,f +14834,41770,1,1,f +14834,4274,71,1,t +14834,4274,71,4,f +14834,43093,1,4,f +14834,44728,27,4,f +14834,4519,71,1,f +14834,4528,27,2,f +14834,4591,4,1,f +14834,4740,15,2,f +14834,4740,1,2,f +14834,47457,1,1,f +14834,47715,1,1,f +14834,48989,71,1,f +14834,55982,4,4,f +14834,56891,0,2,f +14834,60485,71,2,f +14834,6134,0,1,f +14834,61409,27,2,f +14834,6141,0,2,f +14834,6141,0,1,t +14834,61678,27,2,f +14834,6180pr0001,27,1,f +14834,87768pat0001,78,1,f +14834,88062pr0001,78,1,f +14834,88064pr0001,15,1,f +14834,88065pr0001,27,2,f +14834,88066,47,1,f +14834,970c00pr0162,15,1,f +14834,970c99pr0001,1,1,f +14834,973pr1529c01,15,1,f +14834,973pr1552c01,15,1,f +14835,11477,4,2,f +14835,15712,71,1,f +14835,18868b01,46,1,f +14835,19981pr0055,46,1,f +14835,20482,297,1,t +14835,20482,70,1,t +14835,20482,70,1,f +14835,20482,297,1,f +14835,2412b,4,1,f +14835,26047,0,3,f +14835,2723,71,1,f +14835,28301,84,1,f +14835,3021,71,1,f +14835,3021,19,2,f +14835,3021,4,1,f +14835,3023,4,1,f +14835,3023,19,1,f +14835,3024,4,1,f +14835,3024,4,1,t +14835,3068bpr0306,4,1,f +14835,33291,191,1,f +14835,33291,10,1,t +14835,33291,10,1,f +14835,33291,191,1,t +14835,3623,71,1,f +14835,3623,19,2,f +14835,3941,46,1,f +14835,41879a,84,1,f +14835,43898,80,1,f +14835,60474,72,1,f +14835,61252,4,1,f +14835,6141,70,1,t +14835,6141,70,1,f +14835,63868,0,2,f +14835,85861,71,1,t +14835,85861,71,3,f +14835,85984,4,1,f +14835,87994,71,1,t +14835,87994,71,1,f +14835,88704,0,1,f +14835,973pr3554c01,84,1,f +14835,98138,0,1,t +14835,98138,0,1,f +14836,14769,29,1,f +14836,30153,41,1,f +14836,3032,19,1,f +14836,3062b,47,1,f +14836,3062b,46,6,f +14836,3245c,30,1,f +14836,33291,191,2,f +14836,3710,26,1,f +14836,3795,31,1,f +14836,3852b,322,1,f +14836,4032a,15,1,f +14836,4032a,14,1,f +14836,4536,29,1,f +14836,87544,15,1,f +14836,92410,30,1,f +14836,93094,5,1,f +14837,11215,71,1,f +14837,11458,15,8,f +14837,11458,72,4,f +14837,15573,15,1,f +14837,2412b,72,1,f +14837,2450,15,4,f +14837,3005,15,2,f +14837,3021,0,2,f +14837,3021,71,3,f +14837,3022,15,3,f +14837,3023,72,1,f +14837,3023,19,1,f +14837,3023,320,2,f +14837,30367cpr1003,15,1,f +14837,30370pr1000,15,1,f +14837,30602,71,1,f +14837,3069b,320,4,f +14837,3626cpr1317,78,1,f +14837,3665,15,2,f +14837,3710,71,1,f +14837,3747b,15,1,f +14837,3941,71,4,f +14837,4032a,15,4,f +14837,43719,15,2,f +14837,48336,0,4,f +14837,54200,40,1,f +14837,54200,40,1,t +14837,60470a,71,4,f +14837,60897,72,2,f +14837,61184,71,8,f +14837,6141,45,1,t +14837,6141,45,4,f +14837,6141,72,4,f +14837,6141,72,1,t +14837,6587,28,4,f +14837,85861,15,4,f +14837,85861,15,1,t +14837,90194,320,2,f +14837,92738,0,1,f +14837,92946,15,2,f +14837,970c00pr0581,25,1,f +14837,973pr0990c01,25,1,f +14838,2412b,14,2,f +14838,2412b,1,2,f +14838,2420,14,2,f +14838,2420,0,2,f +14838,2420,73,2,f +14838,2730,1,2,f +14838,2744,14,2,f +14838,2780,0,1,t +14838,2780,0,7,f +14838,298c02,15,3,f +14838,298c02,15,1,t +14838,3002,1,2,f +14838,3003,1,5,f +14838,3004,1,5,f +14838,3009,0,2,f +14838,3010,1,1,f +14838,3020,0,1,f +14838,3020,73,6,f +14838,3021,15,3,f +14838,3022,0,8,f +14838,3023,0,4,f +14838,3023,73,6,f +14838,3024,15,4,f +14838,3034,73,1,f +14838,30363,1,2,f +14838,3039,1,1,f +14838,3040b,1,2,f +14838,3068b,73,1,f +14838,3176,1,1,f +14838,32013,15,1,f +14838,32014,1,4,f +14838,32016,73,4,f +14838,32034,15,4,f +14838,32039,0,1,f +14838,32062,0,8,f +14838,32064a,1,7,f +14838,32064a,14,2,f +14838,32126,7,4,f +14838,32270,7,2,f +14838,32551,14,1,f +14838,32556,7,4,f +14838,3298,1,2,f +14838,3460,14,2,f +14838,3482,15,1,f +14838,3623,15,2,f +14838,3648b,7,1,f +14838,3649,7,1,f +14838,3660,1,5,f +14838,3665,1,2,f +14838,3666,73,4,f +14838,3673,7,3,f +14838,3700,73,2,f +14838,3700,14,2,f +14838,3701,1,4,f +14838,3705,0,6,f +14838,3706,0,2,f +14838,3707,0,1,f +14838,3710,0,2,f +14838,3710,14,6,f +14838,3713,7,4,f +14838,3713,7,1,t +14838,3747b,1,2,f +14838,3749,19,2,f +14838,3795,73,2,f +14838,3795,1,2,f +14838,3894,1,4,f +14838,3933,1,1,f +14838,3934,1,1,f +14838,3941,14,4,f +14838,3942c,14,1,f +14838,4032a,15,2,f +14838,4070,1,2,f +14838,41677,73,2,f +14838,41753,8,1,f +14838,41764,73,2,f +14838,41765,73,2,f +14838,4286,0,2,f +14838,4286,14,2,f +14838,4287,1,2,f +14838,43093,1,8,f +14838,4477,1,2,f +14838,44799,0,1,f +14838,4519,7,4,f +14838,6111,0,1,f +14838,6141,0,2,f +14838,6141,0,1,t +14838,6141,15,1,t +14838,6141,15,2,f +14838,6536,8,2,f +14838,6558,0,2,f +14838,6587,8,2,f +14838,6628,0,2,f +14838,73983,1,2,f +14838,rb00166,4,1,f +14838,rb00170,0,4,f +14839,23306,383,1,f +14839,2335,8,1,f +14839,2397,7,1,f +14839,2412b,7,1,f +14839,2431,8,1,f +14839,2432,19,2,f +14839,2432,0,1,f +14839,2540,0,4,f +14839,2555,8,3,f +14839,2561,0,2,f +14839,3001,19,1,f +14839,3003,19,2,f +14839,3003,15,1,f +14839,30031,0,1,f +14839,3005,19,2,f +14839,3010,19,2,f +14839,30165,320,1,f +14839,3020,0,1,f +14839,3021,8,1,f +14839,3022,320,1,f +14839,3023,320,3,f +14839,3034,8,1,f +14839,30367a,19,1,f +14839,30374,41,1,f +14839,3062b,19,1,f +14839,3068bpb0043,6,1,f +14839,32123b,7,1,f +14839,32123b,7,1,t +14839,3626bpst,19,2,f +14839,3626bpx104,14,1,f +14839,3901,366,1,f +14839,3937,320,1,f +14839,3937,7,1,f +14839,3938,0,2,f +14839,3941,19,3,f +14839,3957a,19,5,f +14839,3958,6,1,f +14839,4032a,15,3,f +14839,4070,7,4,f +14839,4081b,0,2,f +14839,4095,320,2,f +14839,41769,320,2,f +14839,41770,320,2,f +14839,41862,320,1,f +14839,4213,7,1,f +14839,4519,0,1,f +14839,4625,8,1,f +14839,4735,8,4,f +14839,50231,6,1,f +14839,6019,8,1,f +14839,6141,36,1,f +14839,6141,34,1,f +14839,6141,8,1,t +14839,6141,8,4,f +14839,6141,34,1,t +14839,6141,36,1,t +14839,970c00,6,1,f +14839,970x027,19,2,f +14839,973pb0002c01,19,2,f +14839,973px156c01,6,1,f +14841,10048,84,1,f +14841,11303,272,1,f +14841,11458,72,2,f +14841,11477,0,2,f +14841,11477,15,2,f +14841,11955,4,1,f +14841,14418,71,2,f +14841,15207,71,1,f +14841,15462,28,1,f +14841,15535,72,2,f +14841,15573,1,2,f +14841,15672,15,2,f +14841,15712,1,2,f +14841,20455,47,2,f +14841,21166,27,1,f +14841,21173,27,1,f +14841,21175,27,1,f +14841,21362,27,1,f +14841,2412b,72,6,f +14841,2420,71,4,f +14841,2431,70,4,f +14841,2431,0,2,f +14841,2431,1,1,f +14841,2444,15,4,f +14841,2445,72,2,f +14841,2540,1,2,f +14841,2654,46,2,f +14841,2736,71,2,f +14841,2780,0,1,f +14841,3001,70,2,f +14841,3004,4,1,f +14841,3010,71,2,f +14841,30162,72,1,f +14841,3020,71,1,f +14841,3021,14,2,f +14841,3022,1,4,f +14841,3023,70,4,f +14841,3023,1,2,f +14841,3023,15,9,f +14841,3024,36,2,f +14841,3031,71,4,f +14841,3032,15,2,f +14841,30374,0,1,f +14841,30374,70,2,f +14841,30395,72,1,f +14841,3069b,71,2,f +14841,3070b,1,2,f +14841,32013,72,2,f +14841,32014,0,2,f +14841,32015,70,2,f +14841,32016,70,2,f +14841,32034,71,2,f +14841,32054,0,2,f +14841,32062,4,2,f +14841,32062,0,4,f +14841,32064a,0,2,f +14841,32123b,71,2,f +14841,32556,19,4,f +14841,33057,484,1,f +14841,33299a,71,2,f +14841,3460,1,1,f +14841,3623,0,2,f +14841,3626cpr1518,84,1,f +14841,3626cpr1700,78,1,f +14841,3665,1,4,f +14841,3665,15,4,f +14841,3666,272,3,f +14841,3666,15,2,f +14841,3666,71,1,f +14841,3701,15,1,f +14841,3705,0,3,f +14841,3829c01,14,1,f +14841,3894,1,2,f +14841,3960,0,1,f +14841,4006,0,1,f +14841,4032a,0,2,f +14841,4070,71,2,f +14841,4079,70,1,f +14841,4081b,0,2,f +14841,4162,15,2,f +14841,41678,0,1,f +14841,4176,47,1,f +14841,4274,71,2,f +14841,43093,1,6,f +14841,44375bpr0001b,47,2,f +14841,4598,1,1,f +14841,4871,1,1,f +14841,52031,1,1,f +14841,55981,71,4,f +14841,59900,35,2,f +14841,59900,33,1,f +14841,60474,0,1,f +14841,60483,0,1,f +14841,6070,1,4,f +14841,61184,71,2,f +14841,6141,0,6,f +14841,61780,70,2,f +14841,62462,70,2,f +14841,62462,0,2,f +14841,64567,0,1,f +14841,75c07,0,1,f +14841,85984,1,3,f +14841,87552,1,2,f +14841,87580,70,2,f +14841,87609,1,2,f +14841,88072,72,1,f +14841,91988,0,2,f +14841,92402,0,4,f +14841,92585,1,2,f +14841,92593,71,2,f +14841,970c00,272,1,f +14841,970c00pr0886,72,1,f +14841,973pr3055c01,15,1,f +14841,973pr3060c01,272,1,f +14841,98067pr0007,27,1,f +14841,98068pr0007,27,1,f +14841,98069pr0007,27,1,f +14841,98138,47,2,f +14841,99206,1,2,f +14841,99207,71,2,f +14841,99780,71,2,f +14842,2356,0,1,f +14842,2412b,72,1,f +14842,2412b,36,1,f +14842,2780,0,6,f +14842,2780,0,1,t +14842,3001,14,1,f +14842,3020,0,1,f +14842,3031,72,1,f +14842,3062b,14,2,f +14842,32123b,14,8,f +14842,32123b,14,1,t +14842,32140,72,2,f +14842,3623,14,2,f +14842,3702,71,2,f +14842,3702,0,2,f +14842,3707,0,2,f +14842,3713,71,2,f +14842,3713,71,1,t +14842,4162,0,2,f +14842,41862,0,2,f +14842,43093,1,8,f +14842,43093,1,1,t +14842,47715,72,1,f +14842,50943,71,1,f +14842,50950,0,4,f +14842,52031,85,1,f +14842,52107,0,2,f +14842,55978,0,4,f +14842,56145,0,4,f +14842,61069,85,2,f +14842,61765,9999,1,f +14842,6249,72,2,f +14842,63965,0,2,f +14842,88930,0,1,f +14844,10055pr0001,226,1,f +14844,10056pr0001,308,1,f +14844,10065,70,1,f +14844,11153,0,8,f +14844,11215,0,2,f +14844,11908,0,1,f +14844,14306,70,2,f +14844,14310,70,1,f +14844,14769,326,1,f +14844,2357,0,10,f +14844,2412b,72,9,f +14844,2420,0,10,f +14844,2420,72,2,f +14844,2420,70,2,f +14844,2431,308,9,f +14844,2431,70,8,f +14844,2449,0,2,f +14844,2454a,72,2,f +14844,2489,308,2,f +14844,2555,0,16,f +14844,2566,0,2,f +14844,2570,148,3,f +14844,2587,148,1,f +14844,2654,72,10,f +14844,2780,0,12,f +14844,2780,0,3,t +14844,2817,0,2,f +14844,3001,70,1,f +14844,3002,70,1,f +14844,3003,0,2,f +14844,3004,70,2,f +14844,3004,0,3,f +14844,3010,70,1,f +14844,30134,0,2,f +14844,30136,308,8,f +14844,30136,70,6,f +14844,30150,70,1,f +14844,30153,47,1,f +14844,3020,0,2,f +14844,3020,70,2,f +14844,3021,0,5,f +14844,3021,72,3,f +14844,3022,72,12,f +14844,3022,0,8,f +14844,3023,0,2,f +14844,3023,72,6,f +14844,3023,70,18,f +14844,30237b,0,2,f +14844,3024,0,2,t +14844,3024,0,6,f +14844,30357,0,4,f +14844,30374,0,5,f +14844,3039,0,4,f +14844,3039,70,2,f +14844,3040b,70,4,f +14844,3040b,0,3,f +14844,3040b,308,2,f +14844,3045,0,2,f +14844,3062b,72,3,f +14844,3062b,0,4,f +14844,3068b,19,2,f +14844,3069b,70,2,f +14844,3069b,308,4,f +14844,3070b,0,1,t +14844,3070b,0,2,f +14844,3070b,70,2,f +14844,3070b,70,1,t +14844,32013,72,2,f +14844,32013,0,9,f +14844,32016,0,4,f +14844,32034,0,6,f +14844,32039,0,2,f +14844,32062,4,24,f +14844,32064a,72,4,f +14844,32073,71,2,f +14844,32124,0,1,f +14844,32530,72,1,f +14844,3298,0,4,f +14844,3460,308,2,f +14844,3460,72,2,f +14844,3622,0,1,f +14844,3623,72,9,f +14844,3626cpr0980,28,2,f +14844,3626cpr0988,78,1,f +14844,3626cpr0992,78,1,f +14844,3626cpr0993,78,1,f +14844,3626cpr1262,1000,1,f +14844,3626cpr1263,1000,2,f +14844,3626cpr1265,78,1,f +14844,3666,70,1,f +14844,3673,71,2,f +14844,3673,71,1,t +14844,3678b,0,4,f +14844,3700,70,2,f +14844,3705,0,3,f +14844,3708,0,2,f +14844,3709,0,4,f +14844,3710,72,8,f +14844,3710,70,5,f +14844,3737,0,3,f +14844,3747b,0,4,f +14844,3794b,70,23,f +14844,3795,0,5,f +14844,3832,0,4,f +14844,3844,378,2,f +14844,3846pr0006,72,14,f +14844,3941,72,6,f +14844,3941,70,5,f +14844,3942c,72,1,f +14844,40234,71,1,f +14844,4032a,70,4,f +14844,4032a,70,1,t +14844,4085c,72,2,f +14844,4085c,0,5,f +14844,4151,72,1,f +14844,41539,0,1,f +14844,41677,72,4,f +14844,41747,0,1,f +14844,41748,0,1,f +14844,41769,0,2,f +14844,41770,0,2,f +14844,41879a,308,1,f +14844,4286,72,2,f +14844,4287,0,18,f +14844,43093,1,4,f +14844,4342,19,1,f +14844,43720,0,1,f +14844,43721,0,1,f +14844,44676,72,4,f +14844,4488,0,4,f +14844,4497,148,2,f +14844,4519,71,3,f +14844,4588,72,3,f +14844,47404,0,2,f +14844,476,0,1,f +14844,4790,70,1,f +14844,48723,70,1,f +14844,48729b,72,3,f +14844,48729b,72,2,t +14844,50231,320,1,f +14844,50231,378,2,f +14844,50950,0,4,f +14844,53451,179,6,f +14844,53451,179,3,t +14844,53454,148,6,f +14844,53705,148,2,t +14844,54200,72,1,f +14844,54200,0,1,t +14844,54200,70,8,f +14844,54200,72,1,t +14844,54200,0,2,f +14844,54200,70,3,t +14844,55706,72,2,f +14844,59443,0,18,f +14844,59900,72,12,f +14844,59900,70,2,f +14844,60169,72,6,f +14844,6019,72,7,f +14844,60475b,0,4,f +14844,60478,72,2,f +14844,60481,0,1,f +14844,60481,308,4,f +14844,60596,0,1,f +14844,60621,308,1,f +14844,60752,179,1,f +14844,6091,72,8,f +14844,61184,71,4,f +14844,6133,72,2,f +14844,6141,72,3,t +14844,6141,72,11,f +14844,61485,0,1,f +14844,6222,72,1,f +14844,62462,0,1,f +14844,62808,72,1,f +14844,63864,0,3,f +14844,63868,72,6,f +14844,63965,70,1,f +14844,63965,72,1,f +14844,64645,308,1,f +14844,64647,182,4,f +14844,64647,182,2,t +14844,64651,308,2,f +14844,6628,0,8,f +14844,71015,378,1,f +14844,85984,0,1,f +14844,85984,0,1,t +14844,87081,72,3,f +14844,87087,72,8,f +14844,87580,72,3,f +14844,87994,70,1,f +14844,88072,72,14,f +14844,88283,308,1,f +14844,88289,308,1,f +14844,92280,0,4,f +14844,92338,72,2,f +14844,92946,0,6,f +14844,93231,70,1,f +14844,93273,70,1,f +14844,93273,0,2,f +14844,93594,179,4,f +14844,93606,0,2,f +14844,95227,308,3,f +14844,95228,40,2,f +14844,95343,70,1,f +14844,95673,179,2,f +14844,96874,25,1,t +14844,970c00,308,2,f +14844,970c00,72,1,f +14844,970c00pr0350,28,1,f +14844,970c00pr0353,71,1,f +14844,970c00pr0554,326,3,f +14844,973pr2063c01,308,2,f +14844,973pr2078c01,326,1,f +14844,973pr2079c01,320,1,f +14844,973pr2109c01,308,1,f +14844,973pr2443c01,378,1,f +14844,973pr2444c01,378,1,f +14844,973pr2445c01,378,1,f +14844,973pr2446c01,72,1,f +14844,98138,297,1,f +14844,98138,297,1,t +14844,98141,0,6,f +14844,98347,148,4,f +14844,98370,179,2,f +14845,2412b,383,2,f +14845,2413,15,2,f +14845,2420,14,2,f +14845,2421,0,2,f +14845,2432,73,1,f +14845,2433,0,2,f +14845,2445,1,1,f +14845,2540,0,2,f +14845,3020,0,1,f +14845,3022,0,1,f +14845,3022,15,2,f +14845,3023,0,1,f +14845,3024,0,2,f +14845,3034,0,1,f +14845,30540,7,2,f +14845,30541,0,2,f +14845,30602pb002,4,1,f +14845,30608,0,1,f +14845,3069b,40,1,f +14845,3069b,73,3,f +14845,3069bpr0101,7,1,f +14845,3626bpb0048,14,1,f +14845,3626bpb0053,14,1,f +14845,3660,0,2,f +14845,3665,15,2,f +14845,3666,1,2,f +14845,3710,4,1,f +14845,3933,25,1,f +14845,3934,25,1,f +14845,3958,0,1,f +14845,41334,0,1,f +14845,41747,15,1,f +14845,41747pb002,15,1,f +14845,41748,15,1,f +14845,41748pb002,15,1,f +14845,41764,15,2,f +14845,41765,15,2,f +14845,41769,1,1,f +14845,41769,0,3,f +14845,41769,15,1,f +14845,41770,1,1,f +14845,41770,15,1,f +14845,41770,0,3,f +14845,42023,7,4,f +14845,4276b,7,2,f +14845,4488,0,2,f +14845,4871,15,1,f +14845,6140,7,2,f +14845,6141,34,2,f +14845,6141,34,1,t +14845,6141,36,2,f +14845,6141,36,1,t +14845,6239px2,73,1,f +14845,73590c02a,0,1,f +14845,970c00,0,1,f +14845,970x026,14,1,f +14845,973pb0056c01,15,1,f +14845,973pr0805c01,15,1,f +14846,3700,4,4,f +14846,3701,4,4,f +14846,3702,4,4,f +14846,3709,4,2,f +14846,3738,4,2,f +14846,3894,4,4,f +14847,2039,4,2,f +14847,2042c02,14,1,f +14847,2046,4,1,f +14847,2048,4,1,f +14847,3003,1,2,f +14847,3004,14,1,f +14847,3010,14,2,f +14847,3021,14,2,f +14847,3021,4,1,f +14847,3029,4,1,f +14847,3036,4,1,f +14847,3068b,15,2,f +14847,3068bpx72,15,1,f +14847,3068pb26,15,1,f +14847,3068pb36,15,1,f +14847,3334,2,1,f +14847,3633,4,1,f +14847,3852a,6,1,f +14847,3899,1,2,f +14847,3980c01,14,1,f +14847,4222a,450,2,f +14847,4223,450,1,f +14847,4429,4,1,f +14847,4532,14,1,f +14847,4536,4,2,f +14847,4610c01,4,1,f +14847,4727,2,2,f +14847,4728,14,1,f +14847,4728,1,1,f +14847,fab5c,9999,1,f +14847,x638,14,2,f +14848,46281,230,1,f +14848,47912,52,1,f +14848,clikits081,73,1,f +14849,880002.3stk01,9999,1,t +14852,tplan06,89,1,f +14854,3004,14,1,f +14854,3005pe1,14,2,f +14854,3005pe1,14,1,t +14854,3020,8,1,f +14854,3021,8,1,f +14854,3298,14,1,f +14854,3660,14,1,f +14854,3710,14,1,f +14854,3747b,8,1,f +14855,3002a,4,1,f +14855,3003,4,2,f +14855,3004,4,9,f +14855,3004,1,14,f +14855,3005,1,4,f +14855,3005,4,20,f +14855,3008,1,4,f +14855,3008,4,6,f +14855,3009,4,4,f +14855,3009,1,3,f +14855,3010,4,4,f +14855,3010,1,11,f +14855,3021,0,1,f +14855,3021,4,2,f +14855,3022,0,2,f +14855,3023,0,2,f +14855,3032,4,1,f +14855,3068a,15,8,f +14855,3081cc01,15,4,f +14855,3144,15,1,f +14855,3185,15,5,f +14855,3297,4,6,f +14855,3297,1,8,f +14855,3298,1,3,f +14855,3298,4,2,f +14855,3299,4,1,f +14855,3299,1,2,f +14855,32bc01,15,2,f +14855,3300,4,2,f +14855,3300,1,1,f +14855,3307,1,5,f +14855,3581,4,2,f +14855,3581,1,2,f +14855,3582,14,4,f +14855,374p01,2,1,f +14855,gtfruit,2,1,f +14857,4079,14,4,f +14857,4176,47,2,f +14857,4228,46,1,f +14858,10201,0,1,f +14858,11062,15,1,f +14858,12825,71,3,f +14858,12825,0,3,f +14858,15207,71,1,f +14858,18759,71,2,f +14858,2343,47,1,f +14858,2357,272,2,f +14858,2357,70,2,f +14858,2357,71,4,f +14858,2357,0,2,f +14858,2412b,15,1,f +14858,2412b,80,4,f +14858,2420,19,11,f +14858,2420,72,1,f +14858,2420,15,1,f +14858,2431,15,2,f +14858,2431,71,8,f +14858,2431,0,7,f +14858,2432,0,6,f +14858,2445,15,1,f +14858,2456,15,1,f +14858,2540,19,3,f +14858,2546pat0001,4,2,f +14858,2780,0,2,t +14858,2780,0,6,f +14858,2817,71,1,f +14858,2921,71,2,f +14858,2921,70,4,f +14858,298c02,0,1,t +14858,298c02,0,1,f +14858,3001,71,2,f +14858,3001,70,3,f +14858,3001,28,3,f +14858,3001,0,1,f +14858,3001,72,2,f +14858,3002,72,3,f +14858,3003,272,1,f +14858,3003,28,3,f +14858,3004,15,11,f +14858,3004,0,2,f +14858,3004,4,2,f +14858,3004,272,7,f +14858,3004,19,13,f +14858,3004,70,32,f +14858,30044,15,1,f +14858,30044,19,3,f +14858,3005,19,2,f +14858,3005,33,2,f +14858,3005,70,37,f +14858,3005,15,4,f +14858,3005,71,3,f +14858,3005,379,43,f +14858,3005,0,20,f +14858,3005,182,2,f +14858,30055,0,3,f +14858,30055,15,2,f +14858,3008,15,6,f +14858,3008,70,42,f +14858,3008,72,1,f +14858,3009,0,10,f +14858,3009,70,32,f +14858,3009,71,8,f +14858,3009,15,5,f +14858,3009,19,4,f +14858,3009,379,54,f +14858,3010,0,6,f +14858,3010,272,6,f +14858,3010,379,62,f +14858,3010,70,9,f +14858,3010,19,3,f +14858,30106,47,1,f +14858,30134,0,1,f +14858,30134,70,1,f +14858,30136,71,7,f +14858,30136,72,22,f +14858,30150,70,1,f +14858,3020,15,1,f +14858,3020,1,1,f +14858,3020,71,5,f +14858,3020,70,1,f +14858,3020,72,3,f +14858,3020,19,1,f +14858,3020,0,5,f +14858,3021,0,2,f +14858,3021,71,1,f +14858,3021,72,4,f +14858,3022,4,1,f +14858,3022,0,4,f +14858,3022,71,5,f +14858,3023,15,10,f +14858,3023,28,4,f +14858,3023,70,20,f +14858,3023,71,9,f +14858,3023,19,11,f +14858,3023,0,20,f +14858,3023,320,6,f +14858,3024,28,4,f +14858,3024,0,29,f +14858,3024,73,6,f +14858,3024,1,7,f +14858,3024,73,1,t +14858,3024,71,13,f +14858,3024,1,1,t +14858,3024,0,4,t +14858,3024,15,2,t +14858,3024,15,10,f +14858,3024,28,1,t +14858,3024,71,3,t +14858,3027,0,1,f +14858,3027,71,3,f +14858,3028,71,2,f +14858,3034,71,4,f +14858,30340,15,1,f +14858,3035,71,3,f +14858,3036,71,2,f +14858,3037,0,2,f +14858,3039,320,1,f +14858,3040b,70,4,f +14858,3040b,15,6,f +14858,3040b,72,6,f +14858,30414,15,4,f +14858,30586,71,4,f +14858,3062b,46,1,f +14858,3062b,72,9,f +14858,3065,34,1,f +14858,3068b,73,14,f +14858,3068b,28,2,f +14858,3068b,72,17,f +14858,3068b,19,11,f +14858,3068b,320,2,f +14858,3069b,1,3,f +14858,3069b,484,8,f +14858,3069b,72,34,f +14858,3069b,71,21,f +14858,3069b,4,1,f +14858,3069b,15,17,f +14858,3069bpr0099,15,2,f +14858,3069bpr0100,2,1,f +14858,3070b,71,3,t +14858,3070b,70,1,t +14858,3070b,19,20,f +14858,3070b,15,5,f +14858,3070b,1,1,t +14858,3070b,72,10,f +14858,3070b,1,4,f +14858,3070b,71,8,f +14858,3070b,72,3,t +14858,3070b,19,3,t +14858,3070b,70,7,f +14858,3070b,15,2,t +14858,3176,0,2,f +14858,32002,72,2,f +14858,32002,72,1,t +14858,32028,71,20,f +14858,32054,0,1,f +14858,32124,0,3,f +14858,32474,4,1,f +14858,3307,71,1,f +14858,33183,10,2,f +14858,33183,10,1,t +14858,33291,191,2,t +14858,33291,10,2,t +14858,33291,10,9,f +14858,33291,70,12,f +14858,33291,5,1,t +14858,33291,191,7,f +14858,33291,70,2,t +14858,33291,5,8,f +14858,33320,72,1,f +14858,33320,14,1,f +14858,3460,70,1,f +14858,3460,72,10,f +14858,3460,71,11,f +14858,3622,0,2,f +14858,3622,71,6,f +14858,3622,19,2,f +14858,3622,15,2,f +14858,3622,70,8,f +14858,3623,0,1,f +14858,3623,71,8,f +14858,3623,70,2,f +14858,3626b,47,2,f +14858,3626bpr0001,14,4,f +14858,3633,0,3,f +14858,3659,71,5,f +14858,3660,71,2,f +14858,3665,0,4,f +14858,3666,19,12,f +14858,3666,320,1,f +14858,3666,71,15,f +14858,3666,72,9,f +14858,3666,0,3,f +14858,3666,70,8,f +14858,3675,0,2,f +14858,3678b,0,6,f +14858,3700,0,4,f +14858,3700,70,5,f +14858,3710,320,5,f +14858,3710,73,1,f +14858,3710,15,1,f +14858,3710,72,24,f +14858,3710,19,3,f +14858,3710,71,10,f +14858,3741,2,1,f +14858,3741,2,1,t +14858,3742,14,1,t +14858,3742,14,3,f +14858,3747b,71,1,f +14858,3794a,320,5,f +14858,3794a,72,21,f +14858,3794a,71,19,f +14858,3794a,19,8,f +14858,3795,72,2,f +14858,3795,71,7,f +14858,3830,71,2,f +14858,3831,71,2,f +14858,3832,19,2,f +14858,3832,71,2,f +14858,3832,15,1,f +14858,3852b,191,1,f +14858,3857,2,2,f +14858,3899,14,1,f +14858,3899,47,1,f +14858,3899,4,1,f +14858,3937,0,1,f +14858,3941,15,1,f +14858,3957a,71,3,f +14858,3958,0,2,f +14858,40234,71,1,f +14858,4032a,0,2,f +14858,4032a,484,3,f +14858,4070,15,10,f +14858,4070,70,16,f +14858,4081b,0,1,f +14858,4150,15,1,f +14858,4150pr0001,15,1,f +14858,41539,28,3,f +14858,4162,70,3,f +14858,4162,72,10,f +14858,4175,71,3,f +14858,41879a,85,1,f +14858,4216,379,48,f +14858,42446,71,1,f +14858,4274,71,1,t +14858,4274,71,1,f +14858,4282,72,1,f +14858,4286,72,4,f +14858,4286,71,2,f +14858,4286,2,4,f +14858,43093,1,1,f +14858,4345b,4,3,f +14858,4346,47,1,f +14858,4346,4,2,f +14858,43888,72,2,f +14858,4445,320,2,f +14858,4445,0,3,f +14858,4460b,320,2,f +14858,44728,71,1,f +14858,4477,0,2,f +14858,4490,0,2,f +14858,4510,71,1,f +14858,4528,179,1,f +14858,4529,15,1,f +14858,4536,15,1,f +14858,4594,47,1,f +14858,4599b,71,1,f +14858,4599b,0,2,f +14858,4719,2,1,f +14858,4740,15,1,f +14858,4740,72,1,f +14858,4740,2,1,f +14858,47905,72,1,f +14858,4865b,40,1,f +14858,4865b,4,1,f +14858,48729b,71,1,t +14858,48729b,71,2,f +14858,48729b,0,2,f +14858,48729b,0,1,t +14858,51739,71,1,f +14858,54200,71,1,t +14858,54200,4,2,t +14858,54200,85,1,t +14858,54200,0,5,f +14858,54200,4,4,f +14858,54200,40,1,f +14858,54200,85,1,f +14858,54200,71,2,f +14858,54200,40,1,t +14858,54200,0,1,t +14858,57895,47,1,f +14858,58181,40,2,f +14858,59900,2,2,f +14858,59900,70,4,f +14858,59900,71,4,f +14858,59900,46,1,f +14858,6019,15,4,f +14858,6019,25,1,f +14858,60478,0,4,f +14858,60479,15,3,f +14858,60481,0,28,f +14858,60581,15,1,f +14858,60592,19,15,f +14858,60592,15,1,f +14858,60593,15,19,f +14858,60594,15,1,f +14858,60594,19,2,f +14858,60596,15,5,f +14858,60596,70,3,f +14858,60601,47,16,f +14858,60602,47,19,f +14858,60603,47,3,f +14858,60614,72,2,f +14858,60616a,47,1,f +14858,60623,2,2,f +14858,60623,0,4,f +14858,60806,0,1,f +14858,6081,288,2,f +14858,60897,15,1,f +14858,60897,1,2,f +14858,60897,71,6,f +14858,6091,15,8,f +14858,6091,0,3,f +14858,6091,72,12,f +14858,6091,1,2,f +14858,6091,320,2,f +14858,6111,72,3,f +14858,6134,15,1,f +14858,6141,27,4,t +14858,6141,0,38,f +14858,6141,14,6,f +14858,6141,2,6,f +14858,6141,46,1,f +14858,6141,2,1,t +14858,6141,1,2,f +14858,6141,4,1,t +14858,6141,14,1,t +14858,6141,4,2,f +14858,6141,27,15,f +14858,6141,71,3,t +14858,6141,1,1,t +14858,6141,85,4,f +14858,6141,85,1,t +14858,6141,72,1,t +14858,6141,72,24,f +14858,6141,0,2,t +14858,6141,46,1,t +14858,6141,71,12,f +14858,6191,19,1,f +14858,6191,0,1,f +14858,6231,71,11,f +14858,62462,15,1,f +14858,6251pr0003,84,1,f +14858,6266,0,7,f +14858,62810,484,1,f +14858,63864,71,26,f +14858,63864,0,1,f +14858,63864,15,3,f +14858,63965,71,1,f +14858,64567,0,5,f +14858,64644,0,2,f +14858,64647,57,1,f +14858,64647,57,1,t +14858,64648,25,1,f +14858,6541,19,2,f +14858,6541,70,2,f +14858,6541,71,2,f +14858,6636,15,6,f +14858,6636,71,29,f +14858,6636,70,2,f +14858,70973,179,1,f +14858,73983,71,18,f +14858,75c09,0,2,f +14858,85974,70,1,f +14858,86035,15,1,f +14858,86035,1,1,f +14858,87079,72,5,f +14858,87079,71,1,f +14858,87079,15,1,f +14858,87087,72,6,f +14858,87087,0,1,f +14858,87087,15,6,f +14858,87087,71,2,f +14858,87544,15,2,f +14858,87552,15,3,f +14858,87552,47,4,f +14858,87580,19,1,f +14858,87580,73,2,f +14858,87580,0,2,f +14858,87620,0,4,f +14858,88286,308,1,f +14858,88292,15,4,f +14858,88293,15,2,f +14858,88930,0,1,f +14858,91501,19,1,f +14858,92099,28,1,f +14858,92107,28,1,f +14858,92410,71,1,f +14858,92438,71,3,f +14858,92586pr0002,484,1,f +14858,92593,72,2,f +14858,92593,71,6,f +14858,92593,15,3,f +14858,92690,71,1,f +14858,92851,47,2,f +14858,92926,72,1,f +14858,92946,72,6,f +14858,93160,15,3,f +14858,93160,15,1,t +14858,970c00,1,1,f +14858,970c00,320,1,f +14858,970c00,71,1,f +14858,973pr1573c01,15,1,f +14858,973pr1580c01,15,1,f +14858,973pr1617c01,2,1,f +14858,973pr1633c01,4,1,f +14858,98560,320,7,f +14858,99774,15,2,f +14859,2412b,0,2,f +14859,2412b,0,1,t +14859,2420,73,2,f +14859,2540,0,2,f +14859,298c02,71,2,f +14859,298c02,71,3,t +14859,3021,73,1,f +14859,3023,72,1,f +14859,3040b,1,2,f +14859,3710,1,1,f +14859,3710,73,1,f +14859,3794a,71,1,f +14859,4070,1,2,f +14859,4733,72,1,f +14859,6141,57,1,f +14859,6141,57,4,t +14861,2362a,33,1,f +14861,2412b,0,2,f +14861,2419,15,2,f +14861,2433,0,2,f +14861,2434,0,1,f +14861,2444,15,2,f +14861,2445,0,1,f +14861,2446,8,1,f +14861,2447,42,2,f +14861,2447,42,1,t +14861,2458,0,1,f +14861,2458,15,6,f +14861,2507,33,1,f +14861,2508,15,1,f +14861,2540,15,1,f +14861,2540,0,1,f +14861,2555,15,2,f +14861,2555,0,1,f +14861,2569,42,2,f +14861,2593,0,6,f +14861,2607,0,1,f +14861,298c02,15,1,f +14861,298c02,15,1,t +14861,3001,0,1,f +14861,3003,15,2,f +14861,3003,0,1,f +14861,30034,15,1,f +14861,30035,15,1,f +14861,30037,15,1,f +14861,30038,8,1,f +14861,3005,0,2,f +14861,3009,15,2,f +14861,3020,0,4,f +14861,3021,15,6,f +14861,3021,0,2,f +14861,3022,15,5,f +14861,3022,0,8,f +14861,3023,0,2,f +14861,3023,15,3,f +14861,3024,15,1,f +14861,3034,15,2,f +14861,3037,15,1,f +14861,3039,15,2,f +14861,3039,0,3,f +14861,3039p15,15,1,f +14861,3062b,33,2,f +14861,3068b,15,2,f +14861,3068b,0,2,f +14861,3068bp10,15,2,f +14861,3149c01,0,1,f +14861,3185,15,2,f +14861,3403c01,15,1,f +14861,3475b,15,2,f +14861,3626bp69,14,2,f +14861,3660,0,2,f +14861,3665,0,2,f +14861,3665,15,2,f +14861,3673,7,2,f +14861,3706,0,1,f +14861,3709,0,1,f +14861,3710,0,3,f +14861,3710,15,2,f +14861,3730,0,1,f +14861,3747b,15,1,f +14861,3747b,0,1,f +14861,3830,0,2,f +14861,3831,0,2,f +14861,3832,15,4,f +14861,3838,0,2,f +14861,3935,15,1,f +14861,3936,15,1,f +14861,3937,0,2,f +14861,3938,15,2,f +14861,3941,42,1,f +14861,3960,33,1,f +14861,3960,36,1,f +14861,3960,42,1,f +14861,4032a,0,1,f +14861,4081b,0,1,f +14861,4150,15,1,f +14861,4275b,15,4,f +14861,4276b,15,4,f +14861,4286,15,4,f +14861,4315,15,1,f +14861,4360,15,1,f +14861,4504,0,4,f +14861,4531,15,2,f +14861,4589,42,4,f +14861,4598,0,1,f +14861,4732,15,1,f +14861,4740,42,11,f +14861,4746,0,1,f +14861,4865a,15,1,f +14861,6118,0,2,f +14861,6141,42,1,t +14861,6141,42,1,f +14861,6259,33,2,f +14861,73092,0,1,f +14861,970x026,7,2,f +14861,973pb0004c01,15,1,f +14861,973px133c01,15,1,f +14862,11055,71,2,f +14862,11055,15,1,f +14862,11090,0,4,f +14862,11211,2,2,f +14862,11303,4,1,f +14862,11458,72,2,f +14862,11477,4,2,f +14862,11477,72,4,f +14862,14769,15,2,f +14862,15068,0,1,f +14862,15712,72,2,f +14862,18654,72,2,f +14862,18654,72,1,t +14862,18674,15,1,f +14862,2412b,0,2,f +14862,2412b,4,1,t +14862,2412b,4,1,f +14862,2432,4,1,f +14862,2445,0,1,f +14862,2446,4,1,f +14862,2447,40,1,t +14862,2447,40,1,f +14862,24490,9999,1,f +14862,2460,72,1,f +14862,2496,0,2,f +14862,2540,0,7,f +14862,2653,71,2,f +14862,2655,71,2,f +14862,2780,0,2,f +14862,2780,0,1,t +14862,2817,4,1,f +14862,3001,71,1,f +14862,3002,1,1,f +14862,3006,71,2,f +14862,3009,4,1,f +14862,3010,2,3,f +14862,30157,72,2,f +14862,30169,0,1,f +14862,3020,19,1,f +14862,3020,2,1,f +14862,3020,72,1,f +14862,3021,0,2,f +14862,3022,1,4,f +14862,3023,14,3,f +14862,3023,0,2,f +14862,3031,0,1,f +14862,30374,15,1,f +14862,3040b,19,1,f +14862,30414,72,1,f +14862,3062b,14,4,f +14862,3069b,36,2,f +14862,3069b,72,1,f +14862,3069b,15,1,f +14862,3070b,15,2,t +14862,3070b,15,4,f +14862,3626bpr0389,14,1,f +14862,3626cpr1580,14,1,f +14862,3660,71,2,f +14862,3660,4,4,f +14862,3666,0,1,f +14862,3666,4,1,f +14862,3666,2,3,f +14862,3710,14,1,f +14862,3741,2,1,f +14862,3741,2,1,t +14862,3795,15,2,f +14862,3795,4,1,f +14862,3795,2,3,f +14862,3821,4,1,f +14862,3822,4,1,f +14862,3829c01,4,1,f +14862,3941,15,1,f +14862,3957a,15,1,f +14862,4032a,2,1,f +14862,4032a,4,1,f +14862,4286,2,4,f +14862,4599b,14,1,t +14862,4599b,14,1,f +14862,52031,15,1,f +14862,54200,36,1,t +14862,54200,47,2,f +14862,54200,36,2,f +14862,54200,47,1,t +14862,55981,0,5,f +14862,56891,0,5,f +14862,6019,0,4,f +14862,60219,72,1,f +14862,604547,0,1,f +14862,604548,0,1,f +14862,604549,0,1,f +14862,604550,0,1,f +14862,604551,0,1,f +14862,604552,0,1,f +14862,604553,0,1,f +14862,604614,0,1,f +14862,604615,0,1,f +14862,60470a,2,3,f +14862,60475b,71,2,f +14862,63965,0,3,f +14862,85984pr0143,72,1,f +14862,87994,0,1,t +14862,87994,0,2,f +14862,88072,2,2,f +14862,88930,15,1,f +14862,92583,40,1,f +14862,93274,72,1,f +14862,970x021,2,2,f +14862,973pr3240c01,15,2,f +14862,98138,46,1,t +14862,98138,46,6,f +14862,98282,15,2,f +14862,99780,72,2,f +14863,15523pr0003,14,1,f +14863,16360,25,1,f +14863,16709pat01,321,1,f +14863,20546,70,1,f +14863,88646,0,1,f +14863,99464,85,1,f +14864,2780,0,16,f +14864,2905,72,8,f +14864,2905,4,2,f +14864,2905,0,2,f +14864,3021,0,1,f +14864,3021,4,1,f +14864,3023,4,1,f +14864,32000,71,1,f +14864,32002,72,2,f +14864,32016,0,4,f +14864,32034,0,1,f +14864,32054,0,2,f +14864,32062,4,10,f +14864,32073,71,11,f +14864,32073,71,1,t +14864,32123b,71,18,f +14864,32140,0,4,f +14864,32271,0,8,f +14864,32278,72,2,f +14864,32291,0,1,f +14864,32316,0,2,f +14864,32449,0,4,f +14864,32524,72,2,f +14864,32526,4,2,f +14864,3665,0,1,f +14864,3701,72,1,f +14864,3705,0,6,f +14864,3707,0,2,f +14864,3713,71,5,f +14864,3713,4,5,f +14864,3794b,0,2,f +14864,41669,57,2,f +14864,41669,36,2,f +14864,41678,0,2,f +14864,4274,71,2,f +14864,43093,1,8,f +14864,43857,4,4,f +14864,44309,0,2,f +14864,44352,0,1,f +14864,44352,4,1,f +14864,44353,4,1,f +14864,44353,0,1,f +14864,4519,71,8,f +14864,47755,0,1,f +14864,55978,0,2,f +14864,56145,0,4,f +14864,61409,4,2,f +14864,6141,47,2,f +14864,61678,0,3,f +14864,62462,71,1,f +14864,62462,4,1,f +14864,6536,0,10,f +14864,6558,1,12,f +14864,6629,4,1,f +14864,6629,72,3,f +14864,6632,4,2,f +14864,6632,72,2,f +14864,8167cdb01,89,1,f +14868,2420,7,8,f +14868,3023,7,16,f +14868,3024,7,16,f +14868,3460,7,8,f +14868,3623,7,8,f +14868,3666,7,8,f +14868,3710,7,16,f +14868,4477,7,4,f +14870,265bc01,14,6,f +14870,3065,46,2,f +14870,3065,34,2,f +14870,3065,36,2,f +14872,3001,1,14,f +14872,3001,4,14,f +14872,3001,0,6,f +14872,3001,14,14,f +14872,3001,15,12,f +14872,3001pr1,14,1,f +14872,3002,14,6,f +14872,3002,0,4,f +14872,3002,4,6,f +14872,3002,1,6,f +14872,3002,15,6,f +14872,3003,14,14,f +14872,3003,4,14,f +14872,3003,47,2,f +14872,3003,0,8,f +14872,3003,1,14,f +14872,3003,15,12,f +14872,3003pe1,14,2,f +14872,3006,4,2,f +14872,3007,1,2,f +14872,3007,14,2,f +14872,3185,14,6,f +14872,3471,2,2,f +14872,3483,0,8,f +14872,3596pb03,15,1,f +14872,4130,14,2,f +14872,4131,4,2,f +14872,4132,14,4,f +14872,4133,4,4,f +14872,4201,2,1,f +14872,4202,4,1,f +14872,4204,2,1,f +14872,4594,47,1,f +14872,4727,2,2,f +14872,4728,4,1,f +14872,4728,14,1,f +14872,4730,1,1,f +14872,4743,1,1,f +14872,4743,4,1,f +14872,4744,4,1,f +14872,4744,14,1,f +14872,4745,14,1,f +14872,4747,4,1,f +14872,4748,4,1,f +14872,7039,4,8,f +14872,7049b,0,4,f +14872,bfp001,9999,1,f +14872,bfp002,9999,1,f +14873,2357,7,2,f +14873,2420,0,15,f +14873,2420,7,7,f +14873,2431,2,3,f +14873,2431,0,2,f +14873,2444,0,3,f +14873,2445,0,2,f +14873,2449,7,2,f +14873,2450,0,2,f +14873,2450,2,2,f +14873,2717,15,2,f +14873,2719,7,1,f +14873,2730,2,2,f +14873,2730,0,6,f +14873,2736,7,4,f +14873,2744,7,2,f +14873,2744,2,2,f +14873,2744,0,6,f +14873,2780,0,41,f +14873,2780,0,2,t +14873,2817,0,2,f +14873,2819,7,1,f +14873,2825,7,4,f +14873,2825,0,8,f +14873,2853,7,1,f +14873,2854,8,2,f +14873,2905,0,5,f +14873,2905,7,2,f +14873,298c03,7,1,t +14873,298c03,7,1,f +14873,3002,0,1,f +14873,3020,2,3,f +14873,3021,0,2,f +14873,3021,7,1,f +14873,3022,0,2,f +14873,3023,2,9,f +14873,3023,0,34,f +14873,3023,7,18,f +14873,3024,0,17,f +14873,3024,0,1,t +14873,3030,0,1,f +14873,3032,0,1,f +14873,3040b,0,2,f +14873,3040b,7,2,f +14873,3068b,2,2,f +14873,3068b,0,3,f +14873,3069b,7,2,f +14873,3069b,2,2,f +14873,3069b,0,2,f +14873,3070b,0,4,f +14873,3070b,0,1,t +14873,32000,0,3,f +14873,32000,7,2,f +14873,32001,0,8,f +14873,32002,8,1,t +14873,32002,8,24,f +14873,32009,2,8,f +14873,32013,0,8,f +14873,32014,0,4,f +14873,32015,0,6,f +14873,32015,2,4,f +14873,32016,0,8,f +14873,32016,2,4,f +14873,32017,7,2,f +14873,32017,0,6,f +14873,32018,0,1,f +14873,32019,0,6,f +14873,32020,15,6,f +14873,32021,0,1,f +14873,32023,0,1,f +14873,32028,2,4,f +14873,32028,0,8,f +14873,32034,7,3,f +14873,32034,2,4,f +14873,32034,0,7,f +14873,32039,0,4,f +14873,32039,7,2,f +14873,32054,0,2,f +14873,32060,15,1,f +14873,32062,0,23,f +14873,32062,0,1,t +14873,3298,0,3,f +14873,3460,2,1,f +14873,3460,7,7,f +14873,3460,0,12,f +14873,3482,0,1,f +14873,3483,0,1,f +14873,3623,7,18,f +14873,3623,2,6,f +14873,3623,0,16,f +14873,3647,7,1,t +14873,3647,7,13,f +14873,3648b,7,11,f +14873,3649,7,1,f +14873,3660,7,4,f +14873,3665,0,10,f +14873,3665,7,4,f +14873,3666,0,33,f +14873,3666,7,11,f +14873,3666,2,2,f +14873,3673,7,2,f +14873,3700,0,16,f +14873,3700,7,4,f +14873,3701,7,5,f +14873,3701,0,11,f +14873,3701,2,4,f +14873,3702,0,6,f +14873,3702,7,4,f +14873,3702,2,6,f +14873,3703,7,2,f +14873,3703,0,8,f +14873,3705,2,4,f +14873,3705,0,29,f +14873,3706,0,20,f +14873,3707,0,10,f +14873,3708,0,1,f +14873,3708,2,1,f +14873,3709,7,7,f +14873,3709,0,6,f +14873,3710,2,10,f +14873,3710,7,22,f +14873,3710,0,19,f +14873,3713,7,30,f +14873,3713,7,1,t +14873,3737,2,7,f +14873,3737,0,9,f +14873,3747b,0,2,f +14873,3749,7,34,f +14873,3794a,7,2,f +14873,3794a,2,2,f +14873,3794a,0,5,f +14873,3795,2,1,f +14873,3832,2,2,f +14873,3832,0,1,f +14873,3894,0,11,f +14873,3894,2,1,f +14873,3895,0,4,f +14873,3895,7,2,f +14873,3941,7,6,f +14873,4019,7,8,f +14873,4032a,7,4,f +14873,4032a,8,6,f +14873,4070,0,4,f +14873,4081b,7,2,f +14873,4111545,9999,1,t +14873,4162,7,4,f +14873,4175,0,2,f +14873,4185,7,4,f +14873,4261,7,4,f +14873,4262,0,8,f +14873,4265b,7,38,f +14873,4265b,7,1,t +14873,4273b,7,2,f +14873,4274,7,1,t +14873,4274,7,6,f +14873,4286,7,2,f +14873,4286,0,6,f +14873,4286,2,2,f +14873,4287,2,4,f +14873,4287,7,14,f +14873,4287,0,4,f +14873,4477,0,3,f +14873,4477,2,4,f +14873,4477,7,5,f +14873,4519,0,24,f +14873,5306bc015,0,1,f +14873,5306bc020,0,1,f +14873,5306bc036,0,1,f +14873,5306bc046,0,1,f +14873,6141,7,4,f +14873,6141,7,1,t +14873,6180,0,1,f +14873,6536,2,4,f +14873,6536,7,9,f +14873,6536,0,16,f +14873,6538b,0,8,f +14873,6538b,7,22,f +14873,6538b,2,7,f +14873,6539,7,1,f +14873,6541,0,8,f +14873,6542a,8,2,f +14873,6553,0,6,f +14873,6553,7,2,f +14873,6558,0,17,f +14873,6564,7,2,f +14873,6564,0,4,f +14873,6565,0,4,f +14873,6565,7,2,f +14873,6573,8,1,f +14873,6575,7,2,f +14873,6585,0,1,f +14873,6587,8,14,f +14873,6589,7,19,f +14873,6592,7,1,f +14873,6594,0,2,f +14873,6595,15,2,f +14873,6629,0,2,f +14873,6629,2,4,f +14873,6629,7,2,f +14873,6630,7,1,f +14873,6632,0,12,f +14873,6632,7,4,f +14873,6632,15,3,f +14873,6636,0,4,f +14873,6641,7,1,f +14873,6642,8,1,f +14873,6643,8,6,f +14873,6644,0,4,f +14873,71427c01,7,1,f +14873,73983,2,4,f +14873,73983,0,4,f +14873,75535,15,1,f +14873,75535,0,2,f +14873,75c03,14,2,f +14873,75c03,14,1,t +14873,75c10,8,2,f +14873,75c15,8,2,f +14873,76019,15,2,f +14873,8479bar01,9999,1,f +14873,8479stk01,9999,1,t +14873,879,7,2,f +14873,9244,7,1,f +14873,flex08c05l,7,2,f +14873,flex08c12l,7,2,f +14873,flex08c20l,7,2,f +14874,15573,19,2,f +14874,15573,14,1,f +14874,15712,71,2,f +14874,2357,19,2,f +14874,2412b,70,3,f +14874,2420,19,1,f +14874,2654,70,1,f +14874,2817,0,3,f +14874,2877,70,5,f +14874,3001,28,13,f +14874,3004,19,2,f +14874,3004,28,2,f +14874,3005,19,4,f +14874,3005,14,1,f +14874,3010,28,1,f +14874,3020,19,1,f +14874,3020,0,1,f +14874,3020,70,2,f +14874,3021,14,1,f +14874,3021,70,1,f +14874,3022,72,1,f +14874,3023,0,1,f +14874,3023,70,3,f +14874,3024,19,6,f +14874,3024,15,1,f +14874,3024,70,4,f +14874,3024,28,1,f +14874,3024,72,2,f +14874,3024,71,4,f +14874,3024,0,2,f +14874,3024,14,1,f +14874,3031,70,1,f +14874,3032,70,1,f +14874,30480ps0,297,1,f +14874,3070b,19,2,f +14874,3070b,71,2,f +14874,3070b,72,1,f +14874,3070b,70,2,f +14874,3176,72,1,f +14874,3176,14,1,f +14874,32028,14,1,f +14874,32316,0,2,f +14874,3623,19,2,f +14874,3659,308,2,f +14874,3660,70,1,f +14874,3665,70,2,f +14874,3673,71,6,f +14874,3700,70,2,f +14874,3710,19,2,f +14874,3710,70,5,f +14874,3795,19,1,f +14874,3957b,80,3,f +14874,3960,28,1,f +14874,4081b,14,2,f +14874,41769,70,1,f +14874,41770,70,1,f +14874,43722,70,1,f +14874,43723,70,1,f +14874,4490,19,1,f +14874,4733,71,1,f +14874,48336,0,1,f +14874,4865b,19,2,f +14874,54200,47,2,f +14874,54200,70,4,f +14874,54200,19,6,f +14874,54200,14,1,f +14874,60470b,0,1,f +14874,60474,71,1,f +14874,60481,70,2,f +14874,60897,70,2,f +14874,6141,70,2,f +14874,6141,1,1,f +14874,6141,14,5,f +14874,6141,179,1,f +14874,6141,4,2,f +14874,6141,15,2,f +14874,85080,19,6,f +14874,87079,70,1,f +14874,87087,70,4,f +14874,87994,70,2,f +14874,92438,28,1,f +14874,970c00,297,1,f +14874,973pr1987c01,297,1,f +14874,98138pr0010,179,2,f +14875,2412b,0,2,f +14875,2419,72,1,f +14875,2420,72,6,f +14875,2431,15,1,f +14875,2444,71,1,f +14875,2447,0,1,t +14875,2458,71,2,f +14875,2462,15,2,f +14875,2540,0,2,f +14875,2555,72,14,f +14875,2723,0,1,f +14875,2780,0,17,f +14875,298c02,4,2,f +14875,298c02,4,1,t +14875,3001,72,1,f +14875,30031,72,2,f +14875,30033,15,2,f +14875,3004,72,2,f +14875,3007,0,2,f +14875,3010,72,4,f +14875,3020,72,2,f +14875,3022,1,3,f +14875,3023,0,11,f +14875,3032,15,1,f +14875,3038,15,4,f +14875,3039,0,1,f +14875,3039pr0013,15,1,f +14875,3040b,15,4,f +14875,3048b,0,5,f +14875,3062b,36,1,f +14875,3069b,72,1,f +14875,3069b,15,9,f +14875,32000,4,2,f +14875,32000,0,4,f +14875,32002,72,2,f +14875,32002,72,1,t +14875,32028,71,2,f +14875,32034,71,1,f +14875,32062,4,2,f +14875,32271,0,2,f +14875,32291,0,2,f +14875,3460,72,2,f +14875,3665,72,2,f +14875,3673,71,2,f +14875,3673,71,1,t +14875,3700,71,2,f +14875,3701,0,5,f +14875,3705,0,2,f +14875,3710,72,4,f +14875,3713,71,2,t +14875,3713,71,10,f +14875,3794b,4,2,f +14875,3795,0,1,f +14875,3832,71,8,f +14875,3894,72,5,f +14875,3895,71,2,f +14875,40244,0,4,f +14875,4032a,1,4,f +14875,40490,0,1,f +14875,41747,15,3,f +14875,41748,15,3,f +14875,41751,33,1,f +14875,42446,72,4,f +14875,4274,71,4,f +14875,4274,71,1,t +14875,4285b,15,4,f +14875,43093,1,2,f +14875,44676,0,2,f +14875,4519,71,2,f +14875,4589,72,8,f +14875,4589,34,6,f +14875,50943,72,3,f +14875,50950,15,6,f +14875,54200,36,1,t +14875,54200,36,2,f +14875,54200,33,1,t +14875,54200,33,2,f +14875,54200,15,6,f +14875,54200,15,1,t +14875,55013,72,4,f +14875,57028c01,71,1,f +14875,57796,0,1,f +14875,60483,72,2,f +14875,60484,71,1,f +14875,6087,0,2,f +14875,61069,15,2,f +14875,6112,15,2,f +14875,6141,57,10,f +14875,6141,34,1,t +14875,6141,34,8,f +14875,6141,57,1,t +14875,61482,71,1,t +14875,61482,71,1,f +14875,6222,15,1,f +14875,6232,71,2,f +14875,6233,0,2,f +14875,62462,0,4,f +14875,63965,0,2,f +14875,64711,0,8,f +14875,6536,4,4,f +14875,6541,0,4,f +14875,6553,72,1,f +14875,6558,1,5,f +14875,6587,72,2,f +14875,6628,0,1,f +14875,6632,4,2,f +14875,6636,15,2,f +14875,85941,33,2,f +14875,85943,72,1,f +14877,3011,15,2,f +14877,31041,297,1,f +14877,31042,135,1,f +14877,31061,15,3,f +14877,3437,117,1,f +14877,40005,45,1,f +14877,4066,117,2,f +14877,4066,5,2,f +14877,4066,114,1,f +14877,4066,15,5,f +14877,42001,297,3,f +14877,42077,117,2,f +14877,45124,120,1,f +14877,4672,212,1,f +14877,47555,379,1,f +14877,48036,297,1,f +14877,48247,5,1,f +14877,4895,212,2,f +14877,51262,29,2,f +14877,51288,26,4,f +14877,51695,29,4,f +14877,51697,29,4,f +14877,51708,212,1,f +14877,51725,29,1,f +14877,52024,29,3,f +14877,52025,26,3,f +14877,52716,5,1,f +14877,6394,212,1,f +14877,6478,26,3,f +14877,6490,120,3,f +14877,6490,29,1,f +14877,6510,45,2,f +14877,6510,43,1,f +14877,6510,34,2,f +14877,6510,5,1,f +14877,6511,15,1,f +14877,75115pr0008,379,1,f +14877,76317,15,1,f +14878,104,383,2,f +14878,2348b,47,2,f +14878,2349a,0,2,f +14878,2357,4,2,f +14878,2357,7,6,f +14878,2357,0,2,f +14878,2362a,47,2,f +14878,2412b,14,2,f +14878,2412b,383,4,f +14878,2412b,0,2,f +14878,2412b,7,14,f +14878,2420,4,5,f +14878,2420,7,15,f +14878,2420,15,2,f +14878,2420,0,22,f +14878,2431,4,2,f +14878,2431,7,11,f +14878,2431,0,11,f +14878,2432,7,2,f +14878,2432,0,3,f +14878,2436,7,4,f +14878,2444,0,4,f +14878,2445,7,1,f +14878,2449,0,2,f +14878,2450,0,4,f +14878,2454a,4,1,f +14878,2456,0,2,f +14878,2465,7,1,f +14878,2486,7,1,f +14878,2540,7,1,f +14878,2555,7,4,f +14878,2555,0,6,f +14878,2714a,7,9,f +14878,2719,7,3,f +14878,2780,0,26,f +14878,2815,0,1,f +14878,2877,0,10,f +14878,2880,0,2,f +14878,298c03,7,1,t +14878,298c03,7,6,f +14878,3001,4,2,f +14878,3002,7,5,f +14878,3002,0,1,f +14878,3004,1,2,f +14878,3004,4,6,f +14878,3004,7,18,f +14878,3004,0,19,f +14878,3004,15,1,f +14878,3005,7,4,f +14878,3005,0,4,f +14878,3005,4,10,f +14878,3005,1,4,f +14878,30073,0,1,f +14878,30074,0,1,f +14878,3008,7,3,f +14878,3008,4,1,f +14878,3009,4,4,f +14878,3009,0,3,f +14878,3009,7,1,f +14878,3010,4,3,f +14878,3010,0,13,f +14878,3010,1,2,f +14878,3010,7,3,f +14878,3010,14,2,f +14878,3010,15,2,f +14878,3020,7,9,f +14878,3020,0,8,f +14878,3020,14,4,f +14878,3020,4,2,f +14878,3021,0,13,f +14878,3021,1,6,f +14878,3021,7,13,f +14878,3022,7,7,f +14878,3022,0,11,f +14878,3022,15,2,f +14878,3022,4,3,f +14878,3022,1,11,f +14878,3022,14,5,f +14878,3023,15,5,f +14878,3023,7,48,f +14878,3023,4,17,f +14878,3023,1,14,f +14878,3023,0,34,f +14878,3023,14,4,f +14878,3024,0,24,f +14878,3024,15,4,f +14878,3024,7,37,f +14878,3024,4,14,f +14878,3024,15,1,t +14878,3029,7,1,f +14878,3030,0,3,f +14878,3030,14,1,f +14878,3031,0,6,f +14878,3031,14,2,f +14878,3031,7,2,f +14878,3032,0,1,f +14878,3033,7,1,f +14878,3034,4,1,f +14878,3034,1,2,f +14878,3034,0,5,f +14878,3034,7,7,f +14878,3035,0,1,f +14878,3035,7,1,f +14878,3035,1,1,f +14878,3037,0,2,f +14878,3038,14,1,f +14878,3040b,1,2,f +14878,3040p33,0,3,f +14878,3062b,47,1,f +14878,3062b,7,16,f +14878,3062b,4,1,f +14878,3063b,4,10,f +14878,3063b,0,30,f +14878,3068b,14,6,f +14878,3068b,7,5,f +14878,3069b,1,2,f +14878,3069b,7,10,f +14878,3069b,4,3,f +14878,3069b,14,16,f +14878,3069b,0,12,f +14878,3070b,0,1,t +14878,3070b,0,4,f +14878,3070b,4,2,f +14878,3070b,4,1,t +14878,3176,7,2,f +14878,32003,0,6,f +14878,32004a,7,6,f +14878,3298,0,2,f +14878,3460,0,11,f +14878,3460,4,2,f +14878,3460,1,2,f +14878,3460,7,7,f +14878,3622,4,4,f +14878,3622,0,16,f +14878,3623,1,3,f +14878,3623,4,4,f +14878,3623,7,18,f +14878,3623,14,1,f +14878,3623,0,32,f +14878,3623,15,2,f +14878,3647,7,2,f +14878,3660,4,4,f +14878,3660,7,3,f +14878,3660,0,1,f +14878,3665,0,10,f +14878,3665,7,18,f +14878,3666,7,11,f +14878,3666,4,4,f +14878,3666,1,2,f +14878,3666,0,15,f +14878,3700,7,9,f +14878,3700,0,6,f +14878,3700,4,1,f +14878,3701,0,2,f +14878,3701,4,1,f +14878,3703,0,8,f +14878,3703,7,2,f +14878,3705,0,2,f +14878,3706,0,4,f +14878,3707,0,5,f +14878,3708,0,1,f +14878,3709,14,1,f +14878,3710,0,28,f +14878,3710,1,6,f +14878,3710,7,24,f +14878,3710,4,9,f +14878,3710,15,8,f +14878,3710,14,4,f +14878,3713,7,19,f +14878,3713,7,1,t +14878,3737,0,1,f +14878,3738,14,2,f +14878,3743,7,1,f +14878,3747b,0,6,f +14878,3749,7,4,f +14878,3794a,7,2,f +14878,3794a,0,7,f +14878,3795,0,10,f +14878,3795,7,3,f +14878,3832,0,8,f +14878,3832,7,4,f +14878,3849,8,2,f +14878,3853,7,1,f +14878,3856,4,2,f +14878,3895,0,4,f +14878,3899,1,2,f +14878,3899,15,1,f +14878,3937,0,4,f +14878,3937,1,4,f +14878,3938,0,1,f +14878,3938,1,4,f +14878,3941,0,1,f +14878,3941,7,26,f +14878,3957a,7,10,f +14878,3957a,1,2,f +14878,3958,0,1,f +14878,3959,7,2,f +14878,3960,7,4,f +14878,3962a,0,1,f +14878,4032a,7,8,f +14878,4032a,0,1,f +14878,4034,47,1,f +14878,4070,4,15,f +14878,4070,0,14,f +14878,4070,7,4,f +14878,4081b,7,12,f +14878,4081b,0,6,f +14878,4085c,0,17,f +14878,4085c,15,1,f +14878,4085c,4,2,f +14878,4085c,7,11,f +14878,4150,0,1,f +14878,4151a,7,1,f +14878,4175,7,16,f +14878,4181,4,1,f +14878,4183,47,1,f +14878,4185,7,4,f +14878,4207,7,1,f +14878,4215b,0,6,f +14878,4261,7,2,f +14878,4265b,7,12,f +14878,4265b,7,1,t +14878,4274,7,1,t +14878,4274,7,26,f +14878,4275b,0,2,f +14878,4275b,14,4,f +14878,4276b,14,4,f +14878,4287,0,6,f +14878,4315,0,2,f +14878,4349,7,2,f +14878,4477,7,4,f +14878,4477,0,7,f +14878,4477,4,1,f +14878,4515,0,1,f +14878,4531,0,2,f +14878,4599a,4,1,f +14878,4599a,0,2,f +14878,4599a,1,2,f +14878,4599a,15,1,f +14878,4623,0,2,f +14878,4697a,7,8,f +14878,4697b,7,1,t +14878,4735,7,5,f +14878,4740,7,2,f +14878,4854,7,8,f +14878,4864a,0,2,f +14878,4864a,47,2,f +14878,4865a,41,3,f +14878,4865a,7,6,f +14878,4871,0,1,f +14878,55295,8,1,f +14878,55297,8,1,f +14878,55298,8,1,f +14878,55299,8,1,f +14878,55300,8,1,f +14878,556,7,1,f +14878,6005,0,4,f +14878,6019,7,24,f +14878,6019,0,12,f +14878,6019,4,5,f +14878,6019,15,5,f +14878,6060,0,16,f +14878,6081,0,11,f +14878,6081,7,2,f +14878,6091,7,26,f +14878,6091,4,4,f +14878,6091,0,20,f +14878,6111,7,2,f +14878,6111,0,1,f +14878,6134,4,3,f +14878,6140,7,1,f +14878,6141,7,37,f +14878,6141,14,4,f +14878,6141,36,6,f +14878,6141,14,1,t +14878,6141,7,1,t +14878,6141,1,2,f +14878,6141,0,1,t +14878,6141,46,1,t +14878,6141,1,1,t +14878,6141,46,33,f +14878,6141,36,1,t +14878,6141,0,8,f +14878,6154,4,1,f +14878,6155,4,1,f +14878,6180,0,2,f +14878,6231,7,2,f +14878,6251,0,1,f +14878,6267,47,1,f +14878,6538a,7,1,f +14878,6541,4,4,f +14878,6553,7,2,f +14878,6556,4,1,f +14878,6564,4,2,f +14878,6565,4,2,f +14878,6589,7,3,f +14878,6632,0,2,f +14878,71075,383,6,f +14878,71076,383,4,f +14878,71128,383,6,f +14878,71182,383,2,f +14878,71183,383,4,f +14878,71184,383,4,f +14879,12602,14,1,f +14879,13533,71,2,f +14879,13609,0,1,f +14879,13778,15,1,f +14879,13780,10,1,f +14879,13832,10,1,f +14879,13884,10,1,f +14879,15211,14,1,f +14879,15793,1,1,f +14879,2301,10,2,f +14879,3437,15,4,f +14879,3437,1,2,f +14879,3437,4,4,f +14879,3437,10,2,f +14879,3437,0,2,f +14879,3437,25,2,f +14879,3437,27,2,f +14879,40666,72,2,f +14879,40666,1,1,f +14879,45141,179,1,f +14879,47408,4,2,f +14879,51708,179,1,f +14879,73241,14,1,f +14879,98252,27,2,f +14882,10247,71,2,f +14882,15573,15,5,f +14882,2540,0,4,f +14882,298c02,15,1,f +14882,298c02,15,1,t +14882,3021,71,1,f +14882,3022,15,1,f +14882,3022,72,2,f +14882,3023,15,2,f +14882,3023,320,1,f +14882,3069b,40,1,f +14882,3069b,320,2,f +14882,3070b,15,1,f +14882,3070b,15,1,t +14882,3623,71,2,f +14882,3626c,320,2,f +14882,3665,15,3,f +14882,3666,320,1,f +14882,3710,15,1,f +14882,3957a,0,2,f +14882,4032a,72,1,f +14882,4081b,72,4,f +14882,41769,15,2,f +14882,41770,15,2,f +14882,44676,15,4,f +14882,4477,15,1,f +14882,54200,40,2,f +14882,54200,40,1,t +14882,6141,0,2,f +14882,6141,0,1,t +14882,6141,179,1,t +14882,6141,179,1,f +14882,63864,15,1,f +14884,3482,7,4,f +14884,3483,0,8,f +14884,3700,0,2,f +14884,3706,0,2,f +14884,458,7,4,f +14884,468c03,7,1,f +14884,498,0,2,f +14884,7039,4,4,f +14884,766c96,7,1,f +14884,wheel2a,4,4,f +14884,x469bopen,0,1,f +14885,10227,288,1,f +14885,11090,0,7,f +14885,11476,71,2,f +14885,11610,0,1,f +14885,11891,71,1,f +14885,12939,71,2,f +14885,14226c11,0,1,t +14885,14226c11,0,1,f +14885,14769,70,1,f +14885,15068,322,1,f +14885,15207,71,2,f +14885,15461,0,1,f +14885,15535,19,1,f +14885,15573,70,2,f +14885,15712,70,2,f +14885,16577,15,2,f +14885,18575,0,1,f +14885,20690pr0001,84,1,f +14885,20691pr0003,84,1,f +14885,21787,84,1,f +14885,22873,25,1,f +14885,2343,179,1,f +14885,2412b,25,2,f +14885,2412b,70,1,f +14885,2431,19,1,f +14885,2431,27,2,f +14885,2431,70,5,f +14885,2456,72,1,f +14885,2456,15,1,f +14885,2654,47,6,f +14885,2654pr0002,19,1,f +14885,2780,0,4,f +14885,2780,0,1,t +14885,3001,71,2,f +14885,3003,72,6,f +14885,3003,320,1,f +14885,30031,71,1,f +14885,3004,15,2,f +14885,3004,322,2,f +14885,3005,378,10,f +14885,3005,320,6,f +14885,3007,71,2,f +14885,3008,71,6,f +14885,3009,14,4,f +14885,3009,70,1,f +14885,30091,72,1,f +14885,30093,10,1,f +14885,3010,14,1,f +14885,30134,70,1,f +14885,30137,70,5,f +14885,30150,84,1,f +14885,30153,34,1,f +14885,30153,36,1,f +14885,3020,70,1,f +14885,3020,72,2,f +14885,3020,27,3,f +14885,3020,0,2,f +14885,3021,15,2,f +14885,3021,72,2,f +14885,3022,1,5,f +14885,3022,4,1,f +14885,3022,322,1,f +14885,3022,15,1,f +14885,3022,72,2,f +14885,3023,1,4,f +14885,30236,72,2,f +14885,30237a,70,1,f +14885,30238,0,1,f +14885,3029,1,1,f +14885,3033,72,1,f +14885,3034,70,1,f +14885,3034,15,2,f +14885,3034,72,2,f +14885,3035,1,1,f +14885,30357,15,4,f +14885,30357,70,1,f +14885,3036,72,1,f +14885,3039,71,2,f +14885,3040b,288,10,f +14885,3040b,322,2,f +14885,3046a,72,3,f +14885,30503,1,1,f +14885,3062b,15,2,f +14885,3062b,320,2,f +14885,3062b,297,1,f +14885,3062b,71,3,f +14885,3068bpr0270,15,1,f +14885,3176,71,1,f +14885,32059,27,1,f +14885,32064a,72,4,f +14885,32123b,71,2,f +14885,32123b,71,2,t +14885,32270,0,2,f +14885,3245b,15,3,f +14885,3298,71,8,f +14885,3460,72,2,f +14885,3460,15,1,f +14885,3622,15,4,f +14885,3626cpr1741,78,1,f +14885,3626cpr1746,30,1,f +14885,3626cpr1751,78,1,f +14885,3626cpr1752,1000,1,f +14885,3659,72,2,f +14885,3660,15,1,f +14885,3660,70,4,f +14885,3665,72,2,f +14885,3665,320,2,f +14885,3678b,72,7,f +14885,3678b,320,2,f +14885,3700,71,7,f +14885,3701,72,1,f +14885,3710,15,1,f +14885,3710,0,2,f +14885,3710,72,1,f +14885,3737,0,1,f +14885,3747a,72,2,f +14885,3749,19,1,f +14885,3795,25,2,f +14885,3795,1,1,f +14885,3829c01,15,1,f +14885,3894,0,2,f +14885,3900,71,1,f +14885,3940b,0,1,f +14885,3941,70,2,f +14885,4162,72,2,f +14885,41767,72,2,f +14885,42023,322,2,f +14885,4274,71,1,f +14885,4274,71,1,t +14885,43093,1,1,f +14885,43722,27,1,f +14885,43723,27,1,f +14885,44375a,0,1,f +14885,4528,0,1,f +14885,4738a,84,1,f +14885,4739a,84,1,f +14885,4740,0,1,f +14885,47406,27,1,f +14885,47457,15,5,f +14885,4865a,15,1,f +14885,50943,179,1,f +14885,51739,27,1,f +14885,54200,288,6,f +14885,54200,288,3,t +14885,55236,288,1,f +14885,59275,27,2,f +14885,59900,182,1,f +14885,60219,27,1,f +14885,60475b,71,1,f +14885,60481,320,2,f +14885,60596,0,2,f +14885,60621,71,1,f +14885,60623,70,1,f +14885,6063,72,1,f +14885,61072,179,2,f +14885,61252,72,1,f +14885,6141,4,1,t +14885,6141,27,3,f +14885,6141,14,1,t +14885,6141,182,2,f +14885,6141,4,1,f +14885,6141,72,2,t +14885,6141,182,1,t +14885,6141,27,1,t +14885,6141,72,4,f +14885,6141,70,1,t +14885,6141,14,1,f +14885,6141,70,1,f +14885,62360,47,1,f +14885,62808,297,1,t +14885,62808,297,1,f +14885,63965,0,1,f +14885,64647,182,3,f +14885,64647,182,2,t +14885,6541,71,1,f +14885,6636,70,2,f +14885,6636,1,2,f +14885,75c22,0,1,f +14885,75c22,0,1,t +14885,85080,320,21,f +14885,85080,15,12,f +14885,85984,72,9,f +14885,87079,72,5,f +14885,87087,71,2,f +14885,87544,47,4,f +14885,87580,70,2,f +14885,87585,70,1,f +14885,87585,70,1,t +14885,88072,72,6,f +14885,88930,0,1,f +14885,90509,322,2,f +14885,90981,15,1,f +14885,92099,72,1,f +14885,92107,72,1,f +14885,92290,297,1,f +14885,92290,297,1,t +14885,92438,1,1,f +14885,92585,4,1,f +14885,93160,15,1,t +14885,93160,15,1,f +14885,96874,25,1,t +14885,970c00,288,1,f +14885,970c00,320,1,f +14885,970c00,272,1,f +14885,970c00pr0923,85,1,f +14885,973pr3100c01,27,1,f +14885,973pr3105c01,288,1,f +14885,973pr3126c01,85,1,f +14885,973pr3127c01,272,1,f +14885,98100,0,1,f +14885,98138,71,2,f +14885,98138,71,1,t +14885,98283,72,11,f +14885,98283,320,10,f +14886,3003,47,1,f +14886,3006,14,1,f +14886,3021,14,1,f +14886,3034,4,5,f +14886,3062a,14,4,f +14886,3068b,14,1,f +14886,3137c01,0,1,f +14886,3139,0,2,f +14886,3480,7,1,f +14886,3481,14,1,f +14887,3004,15,6,f +14887,3004,0,4,f +14887,3020,0,3,f +14887,30488c01,15,1,f +14887,30492,2,1,f +14887,3412cdb01,89,1,f +14887,3626bpr0001,14,1,f +14887,3901,0,1,f +14887,4282,2,1,f +14887,6056,7,2,f +14887,72824p01,15,1,f +14887,970c00,1,1,f +14887,973pb0124c01,15,1,f +14888,2335,14,1,f +14888,2343,47,2,f +14888,2357,4,2,f +14888,2357,7,2,f +14888,2436,0,1,f +14888,2454a,4,4,f +14888,2456,0,1,f +14888,2460,7,1,f +14888,2465,7,2,f +14888,2465,0,2,f +14888,2508,7,1,f +14888,2512,14,1,f +14888,2617,8,1,f +14888,2642,8,1,f +14888,298c04,15,1,t +14888,298c04,15,1,f +14888,3001,7,2,f +14888,3001,15,3,f +14888,3001,0,4,f +14888,3002,15,1,f +14888,3003,4,8,f +14888,3004,7,2,f +14888,3004,4,12,f +14888,3008,7,3,f +14888,3010,0,1,f +14888,3010,7,2,f +14888,30134,0,1,f +14888,30180,7,1,f +14888,30187c01,14,1,f +14888,3020,0,2,f +14888,3022,0,4,f +14888,3023,42,2,f +14888,3023,0,5,f +14888,3024,42,3,f +14888,3036,0,8,f +14888,3062b,4,2,f +14888,3062b,36,2,f +14888,3062b,46,2,f +14888,3068bp70,15,1,f +14888,3069bp06,15,2,f +14888,3069bp08,15,1,f +14888,3069bpr0099,15,3,f +14888,3069bpr0100,2,2,f +14888,3185,4,7,f +14888,32083,0,4,f +14888,3298,4,2,f +14888,3622,4,2,f +14888,3624,4,2,f +14888,3626bp02,14,2,f +14888,3626bp03,14,1,f +14888,3626bp04,14,1,f +14888,3626bp05,14,1,f +14888,3626bpx17,14,1,f +14888,3626bpx18,14,1,f +14888,3795,0,5,f +14888,3898,15,1,f +14888,3900,15,1,f +14888,3901,0,1,f +14888,3901,6,1,f +14888,3941,4,30,f +14888,3957a,4,1,f +14888,3962b,8,1,f +14888,4070,7,2,f +14888,4079,4,2,f +14888,4085c,14,2,f +14888,4150p02,14,3,f +14888,4286,4,2,f +14888,4345b,15,1,f +14888,4346p03,15,1,f +14888,4449,7,1,f +14888,4449,0,1,f +14888,4449,6,2,f +14888,4485,4,1,f +14888,4528,0,1,f +14888,4599a,15,2,f +14888,4733,15,1,f +14888,4740,42,2,f +14888,4865a,15,4,f +14888,6014b,15,2,f +14888,6015,0,2,f +14888,6093,0,1,f +14888,6111,0,2,f +14888,6111,7,1,f +14888,6112,7,1,f +14888,6141,15,1,t +14888,6141,34,2,f +14888,6141,34,1,t +14888,6141,15,2,f +14888,6157,7,1,f +14888,6160c01,4,8,f +14888,970c00,4,1,f +14888,970c00,15,2,f +14888,970c00,0,1,f +14888,970c00,8,2,f +14888,970c00,7,1,f +14888,973p70c01,6,1,f +14888,973p83c01,14,1,f +14888,973px28c01,15,1,f +14888,973px30c01,1,1,f +14888,973px32c01,1,1,f +14888,973px37c01,1,1,f +14888,973px3c01,15,1,f +14889,12825,14,6,f +14889,2420,15,2,f +14889,2431,70,2,f +14889,2450,308,2,f +14889,2654,15,4,f +14889,3001,70,1,f +14889,3004,70,3,f +14889,3020,70,3,f +14889,3020,15,3,f +14889,3021,70,6,f +14889,3021,15,1,f +14889,3022,0,1,f +14889,3022,15,1,f +14889,3022,14,1,f +14889,3023,19,2,f +14889,3023,70,5,f +14889,3023,15,2,f +14889,3024,70,1,t +14889,3024,70,2,f +14889,30363,70,1,f +14889,3040b,70,2,f +14889,3040b,15,2,f +14889,30503,70,2,f +14889,3068b,70,2,f +14889,3069b,15,2,f +14889,3069b,14,2,f +14889,3070b,14,2,f +14889,3070b,14,1,t +14889,3623,70,4,f +14889,3660,308,2,f +14889,3665,70,4,f +14889,3665,15,2,f +14889,3710,70,4,f +14889,3710,15,2,f +14889,3747b,70,2,f +14889,3794b,70,3,f +14889,3795,70,1,f +14889,4070,70,2,f +14889,41532,0,2,f +14889,41769,70,2,f +14889,41770,70,2,f +14889,4286,70,2,f +14889,43093,1,2,f +14889,44301a,14,2,f +14889,44301a,15,4,f +14889,44302a,14,6,f +14889,44302a,0,4,f +14889,44567a,14,2,f +14889,48336,0,2,f +14889,48336,14,2,f +14889,49668,15,3,f +14889,49668,0,4,f +14889,50950,308,2,f +14889,53451,0,7,f +14889,53451,0,1,t +14889,54200,70,4,f +14889,54200,70,1,t +14889,60470b,15,2,f +14889,6091,14,2,f +14889,61252,14,4,f +14889,6141,0,2,f +14889,6141,41,1,t +14889,6141,0,1,t +14889,6141,41,2,f +14889,63868,0,3,f +14889,6536,0,2,f +14889,6541,0,2,f +14889,73983,0,4,f +14889,92692,0,1,f +14889,99781,71,2,f +14890,11170,1,1,f +14890,11197,191,1,f +14890,11198,322,1,f +14890,15986,5,1,f +14890,15987,14,1,f +14890,15989,10,1,f +14890,15991,14,1,f +14890,15995,15,1,f +14890,15996,15,1,f +14890,2302,5,2,f +14890,3437,5,1,f +14890,3437,484,1,f +14890,3437,191,1,f +14890,4066,5,1,f +14890,40666,0,1,f +14890,40666,1,1,f +14890,74730,1,1,f +14890,76371,1,1,f +14890,76371,14,1,f +14890,76371,15,1,f +14890,98223,10,1,f +14890,98223,4,1,f +14890,98224,27,1,f +14890,98252,27,1,f +14891,2412b,4,6,f +14891,2431,15,2,f +14891,2555,4,4,f +14891,2730,4,2,f +14891,2780,0,120,f +14891,2780,0,7,t +14891,2817,0,2,f +14891,2819,71,1,f +14891,2825,71,2,f +14891,3023,47,2,f +14891,3034,0,1,f +14891,30374,71,2,f +14891,3068b,0,2,f +14891,3068b,71,1,f +14891,3069bpr0101,71,1,f +14891,3070b,4,2,f +14891,3070b,4,1,t +14891,32002,72,1,t +14891,32002,72,2,f +14891,32009,15,5,f +14891,32009,4,2,f +14891,32009,71,8,f +14891,32013,4,4,f +14891,32014,15,8,f +14891,32014,0,2,f +14891,32015,4,2,f +14891,32018,15,2,f +14891,32034,15,1,f +14891,32034,4,15,f +14891,32034,0,2,f +14891,32039,0,4,f +14891,32039,4,2,f +14891,32054,4,42,f +14891,32056,4,4,f +14891,32056,71,4,f +14891,32062,0,17,f +14891,32072,14,6,f +14891,32073,71,29,f +14891,32123b,71,7,t +14891,32123b,71,11,f +14891,32140,15,5,f +14891,32140,72,4,f +14891,32140,71,4,f +14891,32140,4,4,f +14891,32184,4,8,f +14891,32184,0,17,f +14891,32269,71,3,f +14891,32270,71,4,f +14891,32271,15,4,f +14891,32278,72,2,f +14891,32278,15,6,f +14891,32291,71,11,f +14891,32316,72,8,f +14891,32316,71,3,f +14891,32348,0,2,f +14891,32449,0,2,f +14891,32523,0,4,f +14891,32523,4,8,f +14891,32523,71,8,f +14891,32524,71,24,f +14891,32524,15,1,f +14891,32524,4,5,f +14891,32524,71,2,t +14891,32525,71,1,f +14891,32525,4,8,f +14891,32526,4,10,f +14891,32526,71,8,f +14891,32527,15,1,f +14891,32528,15,1,f +14891,32534,4,3,f +14891,32535,4,3,f +14891,32556,71,9,f +14891,3647,71,2,t +14891,3647,71,3,f +14891,3648b,71,2,f +14891,3673,71,2,f +14891,3673,71,2,t +14891,3705,0,25,f +14891,3705,0,1,t +14891,3706,0,5,f +14891,3707,0,1,f +14891,3710,4,2,f +14891,3713,71,37,f +14891,3713,71,8,t +14891,3737,0,2,f +14891,3743,71,1,f +14891,3749,19,8,f +14891,3794a,0,2,f +14891,40490,71,5,f +14891,40490,15,1,f +14891,40490,4,3,f +14891,40490,72,4,f +14891,41239,4,12,f +14891,41239,71,4,f +14891,4162,15,2,f +14891,4162,4,2,f +14891,41669,33,2,f +14891,41677,4,8,f +14891,41678,4,2,f +14891,41678,71,1,f +14891,4185,71,4,f +14891,42003,4,8,f +14891,42003,0,1,f +14891,4274,71,44,f +14891,4274,71,4,t +14891,43093,1,4,t +14891,43093,1,57,f +14891,4349,0,1,f +14891,43857,71,2,f +14891,44294,71,14,f +14891,4519,71,2,t +14891,4519,71,44,f +14891,4716,0,2,f +14891,47712,4,1,f +14891,47713,4,1,f +14891,48989,71,11,f +14891,50163,72,1,f +14891,54200,15,4,f +14891,55976,0,4,f +14891,56145,15,4,f +14891,59426,72,4,f +14891,6141,36,2,f +14891,6141,33,2,t +14891,6141,33,4,f +14891,6141,57,4,f +14891,6141,46,1,t +14891,6141,36,1,t +14891,6141,57,3,t +14891,6141,46,1,f +14891,6179,4,4,f +14891,6180,15,1,f +14891,6536,0,10,f +14891,6536,15,4,f +14891,6536,4,10,f +14891,6538b,0,2,f +14891,6538b,4,51,f +14891,6538b,71,4,f +14891,6538b,72,2,f +14891,6541,4,4,f +14891,6558,0,55,f +14891,6558,0,3,t +14891,6629,71,2,f +14891,6632,4,4,f +14891,75c06,0,2,f +14891,8289stk01,9999,1,t +14894,132a,0,4,f +14894,carbasemia,7,1,f +14894,m3001,1,10,f +14894,m3001,4,9,f +14894,m3001,14,2,f +14894,m3003,4,2,f +14894,m3003,14,3,f +14894,m3003,1,2,f +14895,3032,15,1,f +14895,3068bpb0373,15,1,f +14895,3068bpb0409,15,1,f +14895,3068bpb0410,15,1,f +14895,3068bpb0411,15,1,f +14895,3068bpb0412,15,1,f +14895,3068bpb0414,15,1,f +14896,2610,14,1,f +14896,30367b,4,1,f +14896,3957a,15,1,f +14896,44676,1,1,f +14896,59275,25,2,f +14898,2913cx1,1,1,f +14898,bb93,7,1,f +14899,2412b,7,1,f +14899,2412b,4,6,f +14899,2418b,33,1,f +14899,2419,0,2,f +14899,2420,0,4,f +14899,2446,4,1,f +14899,2447,42,1,t +14899,2447,42,1,f +14899,2516,0,1,f +14899,3005,0,4,f +14899,3022,0,4,f +14899,3023,7,1,f +14899,3039,7,1,f +14899,3068b,7,1,f +14899,3068bp51,0,1,f +14899,3475b,0,4,f +14899,3626bp66,14,1,f +14899,3838,0,1,f +14899,3937,0,1,f +14899,4855,4,4,f +14899,6141,33,1,f +14899,6141,33,1,t +14899,6141,0,4,f +14899,970x021,0,1,f +14899,973p66c01,1,1,f +14900,32279,15,1,f +14900,32279,0,1,f +14900,32280,1,1,f +14900,32280,4,1,f +14900,tech016a,9999,1,f +14900,tech017a,9999,1,f +14902,3941,42,1,f +14902,3943b,72,1,f +14902,4032a,72,1,f +14902,4032a,71,1,f +14902,4095,71,1,f +14902,4285b,72,1,f +14902,43898,72,1,f +14902,54200,46,4,f +14902,60474,71,1,f +14902,6141,46,3,f +14903,11214,72,4,f +14903,11305,297,2,f +14903,11458,72,2,f +14903,11946,2,1,f +14903,11947,2,1,f +14903,14181,71,1,f +14903,15068,0,1,f +14903,15303,35,3,f +14903,15400,72,2,f +14903,15462,28,2,f +14903,15573,297,1,f +14903,15619,2,1,f +14903,15712,72,3,f +14903,18950,34,1,f +14903,18962,19,1,f +14903,2419,72,1,f +14903,2540,0,2,f +14903,2780,0,10,f +14903,3002,72,2,f +14903,3004,70,1,f +14903,30173b,297,1,f +14903,3020,72,2,f +14903,3022,1,1,f +14903,3023,2,2,f +14903,30374,0,4,f +14903,3040b,28,2,f +14903,32001,71,1,f +14903,32018,0,2,f +14903,32039,0,2,f +14903,32054,4,2,f +14903,32072,0,4,f +14903,32123b,71,2,f +14903,32140,71,2,f +14903,32294,0,2,f +14903,32523,0,2,f +14903,32526,72,2,f +14903,3626cpr1366,14,1,f +14903,3626cpr1574,14,1,f +14903,3660,0,1,f +14903,3666,0,1,f +14903,3666,19,1,f +14903,3706,0,2,f +14903,3710,70,2,f +14903,3713,71,4,f +14903,3795,0,1,f +14903,3795,2,1,f +14903,4032a,85,3,f +14903,4070,72,2,f +14903,41677,72,4,f +14903,4274,1,3,f +14903,4286,72,4,f +14903,43712,2,1,f +14903,44294,71,2,f +14903,44676,0,2,f +14903,44728,0,2,f +14903,4519,71,1,f +14903,4740,2,1,f +14903,47456,72,2,f +14903,47758,0,1,f +14903,48729b,72,1,f +14903,53451,297,16,f +14903,55976,0,2,f +14903,56145,297,4,f +14903,59443,72,2,f +14903,60470a,15,2,f +14903,60752,28,2,f +14903,61183,19,1,f +14903,6141,47,4,f +14903,6141,85,2,f +14903,61481,0,2,f +14903,62462,0,2,f +14903,6266,15,1,f +14903,64567,297,2,f +14903,64567,15,1,f +14903,76766,0,1,f +14903,85940,0,2,f +14903,85984pr0002,72,1,f +14903,87580,85,1,f +14903,87747,179,2,f +14903,92280,71,2,f +14903,92338,297,1,f +14903,92947,19,4,f +14903,93273,2,1,f +14903,970c00pr0764,2,1,f +14903,970c00pr0802,85,1,f +14903,973pr2849c01,2,1,f +14903,973pr2902c01,14,1,f +14903,98137,297,2,f +14903,98313,0,4,f +14905,2347,14,1,f +14905,3314,0,1,f +14905,3317,14,1,f +14905,784,14,1,f +14906,11089,15,1,f +14906,11090,15,1,f +14906,11097,297,1,f +14906,11215,15,1,f +14906,11233pr0002,71,1,f +14906,11477,15,4,f +14906,13549,41,1,f +14906,14417,72,9,f +14906,14418,71,4,f +14906,14704,71,5,f +14906,15068,15,4,f +14906,15068pr0002,15,1,f +14906,15208,19,4,f +14906,15571,0,1,f +14906,15755,9999,1,t +14906,2540,15,2,f +14906,2877,15,1,f +14906,3021,71,1,f +14906,3022,15,7,f +14906,3023,15,10,f +14906,3040b,15,2,f +14906,3623,15,8,f +14906,3626cpr1134,71,1,f +14906,3660,15,1,f +14906,3795,15,1,f +14906,4081b,15,2,f +14906,42023,15,2,f +14906,4287,15,2,f +14906,47456,15,1,f +14906,49668,179,6,f +14906,50950,15,2,f +14906,54200,15,1,t +14906,54200,15,1,f +14906,6005,15,2,f +14906,6091,15,2,f +14906,61252,71,1,f +14906,6141,71,2,f +14906,6141,71,1,t +14906,85984,15,2,f +14906,92690,297,1,f +14906,92747,41,1,f +14906,970c00pr0436,71,1,f +14906,973pr2234c01,320,1,f +14906,98138,41,1,t +14906,98138,41,1,f +14906,98138,179,1,t +14906,98138,179,2,f +14906,99780,71,3,f +14906,99781,15,2,f +14908,2437,41,1,f +14908,2513,15,1,f +14908,30027,15,4,f +14908,30028,0,4,f +14908,3023,0,2,f +14908,3024,36,2,f +14908,3024,15,2,f +14908,3024,46,2,f +14908,3034,7,1,f +14908,3626bp02,14,1,f +14908,3710,0,3,f +14908,3829c01,7,1,f +14908,4211,15,1,f +14908,4485,15,1,f +14908,4600,0,2,f +14908,6141,33,2,f +14908,6141,33,1,t +14908,970c00,0,1,f +14908,973px9c01,0,1,f +14910,2412b,15,1,f +14910,2540,15,1,f +14910,30141,8,1,f +14910,30150,6,1,f +14910,30154,0,1,f +14910,30162,0,1,f +14910,30167,6,1,f +14910,3020,7,1,f +14910,3021,0,1,f +14910,3040b,19,2,f +14910,30464,2,1,f +14910,3626bpa3,14,1,f +14910,3641,0,2,f +14910,3841,8,1,f +14910,4085c,15,2,f +14910,4600,0,1,f +14910,4624,1,2,f +14910,970c00,0,1,f +14910,973pb0391c01,19,1,f +14912,2431,72,2,f +14912,2460,72,1,f +14912,298c02,71,1,t +14912,298c02,71,1,f +14912,3002,70,1,f +14912,30104,72,2,f +14912,3022,72,1,f +14912,3023,70,3,f +14912,30275,70,1,f +14912,3034,72,1,f +14912,3035,72,2,f +14912,30364,0,2,f +14912,30365,72,2,f +14912,30374,0,3,f +14912,3040b,70,2,f +14912,3048c,297,2,f +14912,32123b,71,1,t +14912,32123b,71,2,f +14912,3626bpr0389,14,1,f +14912,3626bpr0511,378,2,f +14912,3700,72,4,f +14912,3702,0,2,f +14912,3705,0,1,f +14912,3710,71,4,f +14912,3713,4,1,t +14912,3713,4,2,f +14912,3737,0,1,f +14912,3749,19,4,f +14912,3937,72,1,f +14912,3941,71,1,f +14912,41530,71,3,f +14912,41753,72,1,t +14912,41879a,70,1,f +14912,43899,71,1,f +14912,4460b,70,4,f +14912,4733,72,1,f +14912,47759,70,1,f +14912,60477,308,4,f +14912,60747,80,1,f +14912,60750,484,1,f +14912,60751,132,2,f +14912,60752,135,1,f +14912,6091,72,2,f +14912,6134,71,1,f +14912,61747,320,1,f +14912,6222,70,4,f +14912,64567,71,1,f +14912,85544,1,1,f +14912,970x199,70,2,f +14912,973pr1321c01,72,1,f +14912,973pr1349c01,70,2,f +14913,777p06,15,1,f +14913,777p10,15,1,f +14913,777p11,15,1,f +14913,777p12,15,1,f +14913,777px8,15,1,f +14914,58247,0,1,f +14915,2456,15,2,f +14915,2540,15,2,f +14915,2555,15,2,f +14915,298c02,4,1,t +14915,298c02,4,2,f +14915,3004,15,2,f +14915,3005,15,4,f +14915,3008,1,1,f +14915,3009,1,2,f +14915,30162,0,1,f +14915,30180,15,2,f +14915,30180,7,4,f +14915,3023,15,1,f +14915,3024,46,4,f +14915,3032,7,2,f +14915,3039p23,15,2,f +14915,3069b,7,1,f +14915,3069bp08,15,1,f +14915,3298,7,2,f +14915,3310stk01,9999,1,t +14915,3622,15,6,f +14915,3626bp04,14,1,f +14915,3626bp05,14,1,f +14915,3678b,7,4,f +14915,3679,7,2,f +14915,3680,0,2,f +14915,3747a,15,4,f +14915,3794a,7,2,f +14915,3795,7,1,f +14915,3867,2,1,f +14915,3899,15,1,f +14915,3901,0,1,f +14915,4070,1,6,f +14915,4079,4,2,f +14915,4215b,41,2,f +14915,4349,7,2,f +14915,4476b,1,4,f +14915,4477,1,1,f +14915,4485,1,1,f +14915,4510,0,2,f +14915,4515,15,1,f +14915,4872,41,2,f +14915,6141,36,1,t +14915,6141,36,2,f +14915,6187,1,2,f +14915,72826,9999,1,t +14915,970c00,0,1,f +14915,970c00,7,1,f +14915,973p28c01,0,1,f +14915,973p73c01,2,1,f +14917,3001,15,4,f +14917,3001,4,2,f +14917,3001,14,2,f +14917,3001,29,4,f +14917,3001,27,2,f +14917,3002,29,4,f +14917,3002,27,4,f +14917,3002,14,2,f +14917,3003,29,8,f +14917,3003,27,4,f +14917,3003,15,4,f +14917,3003,14,4,f +14917,3004,15,4,f +14917,3004,27,4,f +14917,3004,29,6,f +14917,3004,14,4,f +14917,3005,29,4,f +14917,3005,27,2,f +14917,3005,14,4,f +14917,3010,27,2,f +14917,3010,14,2,f +14917,3010,15,2,f +14917,30153,45,2,f +14917,3037,4,6,f +14917,3040b,4,6,f +14917,33125,484,1,f +14917,33291,191,1,t +14917,33291,10,1,t +14917,33291,5,1,t +14917,33291,191,5,f +14917,33291,5,5,f +14917,33291,10,5,f +14917,33303,15,4,f +14917,3470,27,1,f +14917,3626cpr0891,14,1,f +14917,3626cpr0892,14,1,f +14917,3710,29,3,f +14917,3741,2,1,t +14917,3741,2,2,f +14917,3852b,191,1,f +14917,3899,45,2,f +14917,4079,4,2,f +14917,4094b,45,1,f +14917,4719,322,1,f +14917,60598,85,1,f +14917,60599,85,1,f +14917,60608,15,2,f +14917,60623,15,1,f +14917,6141,45,1,t +14917,6141,27,1,t +14917,6141,27,3,f +14917,6141,45,3,f +14917,6251pr0003,84,1,f +14917,6256,29,1,f +14917,759528c01,5,1,f +14917,759532,29,3,f +14917,759533,29,2,f +14917,85974,484,1,f +14917,87990,70,1,f +14917,91405,10,1,f +14917,92851,47,2,f +14917,93092,5,1,f +14917,970c00,15,1,f +14917,970c00,4,1,f +14917,973pr1585c01,25,1,f +14917,973pr2001c01,85,1,f +14917,98549,15,1,f +14918,2421,0,1,f +14918,3020,27,4,f +14918,3021,71,2,f +14918,3069b,15,1,f +14918,3660,15,1,f +14918,3710,72,2,f +14918,42023,15,4,f +14918,43722,15,1,f +14918,43723,15,1,f +14918,44661,15,1,f +14918,4488,71,1,f +14918,54200,40,1,t +14918,54200,40,2,f +14918,6141,34,1,f +14918,6141,36,1,t +14918,6141,34,1,t +14918,6141,36,1,f +14918,93606,15,1,f +14923,12602,14,2,f +14923,2300,14,1,f +14923,2301,14,2,f +14923,2302,1,2,f +14923,2312c01,1,1,f +14923,3011,73,2,f +14923,3011,10,3,f +14923,3011,14,3,f +14923,3011,4,4,f +14923,3011,1,3,f +14923,3011,27,1,f +14923,31062,14,1,f +14923,31191,4,1,f +14923,31193,1,1,f +14923,3437,27,3,f +14923,3437,73,6,f +14923,3437,4,12,f +14923,3437,10,9,f +14923,3437,14,9,f +14923,3437,1,9,f +14923,3437pe1,14,2,f +14923,3966,10,2,f +14923,4066,14,2,f +14923,4066,73,2,f +14923,4197,1,1,f +14923,4199,4,1,f +14923,4199,10,1,f +14923,4543,14,1,f +14923,4544,4,1,f +14923,47511pr0002c01,1,1,f +14923,61310,10,1,f +14923,61649,4,1,f +14923,6496,10,1,f +14923,6510,73,1,f +14923,6514,4,1,f +14923,90265,14,1,f +14924,2540,0,2,f +14924,3004,70,2,f +14924,3005,4,1,f +14924,3005pr0003,15,2,f +14924,3020,70,3,f +14924,3022,14,2,f +14924,3023,0,6,f +14924,3023,71,1,f +14924,3024,14,1,f +14924,3040b,15,2,f +14924,3040b,70,4,f +14924,3040b,14,1,f +14924,3298,70,1,f +14924,3660,70,4,f +14924,3665,70,2,f +14924,3710,0,1,f +14924,3710,14,1,f +14924,3710,70,1,f +14924,3794b,70,1,f +14924,3794b,14,2,f +14924,3794b,71,1,f +14924,43722,0,1,f +14924,43723,0,1,f +14924,54200,15,1,t +14924,54200,15,2,f +14924,6091,4,1,f +14924,6141,14,4,f +14924,6141,14,1,t +14924,63868,15,2,f +14926,12825,71,1,f +14926,12825,0,4,f +14926,2339,308,2,f +14926,2339,4,2,f +14926,2417,2,2,f +14926,2420,19,2,f +14926,2423,2,2,f +14926,2431,70,3,f +14926,2432,70,3,f +14926,2450,0,2,f +14926,2453a,4,4,f +14926,2454a,0,6,f +14926,2458,4,3,f +14926,2462,71,2,f +14926,2540,19,2,f +14926,2654,4,1,f +14926,2714a,0,1,f +14926,2736,71,4,f +14926,2780,0,3,t +14926,2780,0,11,f +14926,3001,320,1,f +14926,3001,70,6,f +14926,3001,4,6,f +14926,3002,0,2,f +14926,3003,0,3,f +14926,3005,4,4,f +14926,3007,0,2,f +14926,3009,4,6,f +14926,3009,19,6,f +14926,30099,4,2,f +14926,3010,72,2,f +14926,3010,288,2,f +14926,30136,72,6,f +14926,30136,70,70,f +14926,30137,70,19,f +14926,30173b,297,3,f +14926,30173b,0,2,f +14926,30173b,135,3,f +14926,30175,179,1,f +14926,30176,2,2,f +14926,30177,4,1,f +14926,30177,15,1,f +14926,3020,70,3,f +14926,3020,19,6,f +14926,3020,14,3,f +14926,3021,0,6,f +14926,3022,1,1,f +14926,3022,19,2,f +14926,3022,14,4,f +14926,3023,72,4,f +14926,3023,25,2,f +14926,3023,27,2,f +14926,3023,19,19,f +14926,3023,0,6,f +14926,3023,320,2,f +14926,3030,0,4,f +14926,3031,19,6,f +14926,3032,0,6,f +14926,3034,1,10,f +14926,3034,19,1,f +14926,3035,1,2,f +14926,3035,19,17,f +14926,30357,72,2,f +14926,3036,28,2,f +14926,3036,0,2,f +14926,30367b,288,6,f +14926,3037,320,2,f +14926,30374,297,3,f +14926,30374,71,1,f +14926,30387,14,3,f +14926,30407,0,4,f +14926,3040b,320,4,f +14926,30553,0,2,f +14926,30586,4,12,f +14926,3062b,4,7,f +14926,3062b,70,5,f +14926,3068b,320,14,f +14926,3068b,28,23,f +14926,3069b,308,2,f +14926,3069b,4,14,f +14926,3069b,0,6,f +14926,32000,0,2,f +14926,32001,0,2,f +14926,32016,0,4,f +14926,32018,72,6,f +14926,32062,0,1,f +14926,32064a,320,2,f +14926,32123b,14,1,t +14926,32123b,14,1,f +14926,32138,0,4,f +14926,32531,0,2,f +14926,32556,19,4,f +14926,3460,0,12,f +14926,3460,4,6,f +14926,3622,19,6,f +14926,3622,4,4,f +14926,3623,14,2,f +14926,3623,0,4,f +14926,3626bpr0744,14,1,f +14926,3626bpr0747,14,1,f +14926,3626bpr0748,14,1,f +14926,3626bpr0781,0,1,f +14926,3626bpr0782,14,1,f +14926,3665,4,2,f +14926,3666,4,4,f +14926,3666,71,7,f +14926,3675,0,2,f +14926,3700,4,2,f +14926,3700,14,3,f +14926,3701,0,1,f +14926,3701,70,2,f +14926,3702,0,2,f +14926,3709,15,6,f +14926,3709,72,1,f +14926,3710,320,5,f +14926,3710,19,12,f +14926,3710,1,2,f +14926,3710,4,2,f +14926,3747b,4,6,f +14926,3794a,70,2,f +14926,3794a,15,1,f +14926,3795,70,7,f +14926,3832,0,2,f +14926,3894,0,1,f +14926,3894,71,2,f +14926,3895,0,2,f +14926,3937,72,12,f +14926,3940b,0,1,f +14926,3941,272,2,f +14926,3941,70,15,f +14926,4032a,19,15,f +14926,4150,297,1,f +14926,4150,27,2,f +14926,4150,15,2,f +14926,41532,0,1,f +14926,41535,288,2,f +14926,4162,0,8,f +14926,41764,191,2,f +14926,41765,191,2,f +14926,4274,71,9,f +14926,4274,71,2,t +14926,4286,0,10,f +14926,43093,1,6,f +14926,43710,320,1,f +14926,43711,320,1,f +14926,43722,25,4,f +14926,43723,25,4,f +14926,43898,15,1,f +14926,44301a,71,4,f +14926,4460b,308,2,f +14926,44728,0,21,f +14926,4477,4,10,f +14926,4497,135,1,f +14926,4519,71,2,f +14926,4599b,71,2,f +14926,4623,0,1,f +14926,4740,0,6,f +14926,4740,15,2,f +14926,47455,0,4,f +14926,47507,72,4,f +14926,47759,320,2,f +14926,48169,72,4,f +14926,48171,72,4,f +14926,4865a,4,4,f +14926,4871,14,1,f +14926,48723,70,3,f +14926,48729b,72,2,f +14926,48729b,72,1,t +14926,48989,71,8,f +14926,50373,25,2,f +14926,50950,320,4,f +14926,52501,72,1,f +14926,53451,297,2,t +14926,53451,297,10,f +14926,53562,0,2,f +14926,53705,132,1,f +14926,53989,0,6,f +14926,54200,297,12,f +14926,54200,70,6,f +14926,54200,4,2,f +14926,54200,320,20,f +14926,54200,297,2,t +14926,54200,70,1,t +14926,54200,320,2,t +14926,54200,4,1,t +14926,55013,72,1,f +14926,57895pr0001,47,2,f +14926,57895pr0002,47,2,f +14926,57895pr0003,47,2,f +14926,57909a,72,1,f +14926,59233pat0001,41,1,f +14926,59426,72,2,f +14926,59900,297,6,f +14926,59900,0,10,f +14926,60169,72,1,f +14926,60474,0,6,f +14926,60477,0,4,f +14926,60479,0,2,f +14926,60596,4,6,f +14926,6091,320,2,f +14926,61053,0,1,f +14926,6106,0,10,f +14926,6108,70,6,f +14926,6126b,182,6,f +14926,6126b,57,2,f +14926,6134,4,12,f +14926,6141,27,1,t +14926,6141,297,65,f +14926,6141,29,12,f +14926,6141,297,7,t +14926,6141,27,1,f +14926,6141,29,1,t +14926,6141,4,2,f +14926,6141,0,19,f +14926,6141,15,2,t +14926,6141,0,4,t +14926,6141,4,1,t +14926,6141,15,8,f +14926,6231,4,4,f +14926,62462,0,1,f +14926,62711,0,1,f +14926,62743,191,8,f +14926,63868,0,2,f +14926,63965,70,1,f +14926,63965,297,1,f +14926,64225,320,2,f +14926,64275,25,2,f +14926,64567,71,1,f +14926,64567,0,2,f +14926,64647,57,4,f +14926,64647,57,1,t +14926,64727,71,2,f +14926,64727,297,1,f +14926,6541,4,1,f +14926,6553,72,2,f +14926,6587,28,2,f +14926,6628,0,3,f +14926,6636,4,4,f +14926,6636,28,9,f +14926,6636,70,8,f +14926,73983,14,12,f +14926,85543,15,1,f +14926,85546,14,2,f +14926,85959pat0001,36,1,f +14926,87079pr0008,15,1,f +14926,87087,0,16,f +14926,87747,297,7,f +14926,88292,0,8,f +14926,92280,0,4,f +14926,92338,297,1,f +14926,92582,0,1,f +14926,92690,297,3,f +14926,92691,15,1,f +14926,92692,0,2,f +14926,92946,4,2,f +14926,93055,297,1,f +14926,93057pr0001,0,1,f +14926,93058,297,1,t +14926,93058,297,2,f +14926,93059,19,1,f +14926,93061,15,1,t +14926,93061,15,6,f +14926,93062c01,15,4,f +14926,93065pr0001,15,1,f +14926,93067pr01,15,1,f +14926,93068pr0001,15,1,f +14926,93069,15,1,f +14926,93070pr0002,191,1,f +14926,93072pr0001,72,1,f +14926,93160,15,1,f +14926,93271pr0001,15,1,f +14926,93763pr0003,15,1,f +14926,95753pat0001,4,1,f +14926,970c00,0,1,f +14926,970c00pr0190,15,1,f +14926,970c00pr0203,4,1,f +14926,970c00pr0220,4,1,f +14926,970c00pr0238,0,1,f +14926,973pr1715c01,15,1,f +14926,973pr1741c01,0,1,f +14926,973pr1742c01,4,1,f +14926,973pr1750c01,4,1,f +14926,973pr1806c01,0,1,f +14927,2470,6,2,f +14927,2546,8,1,f +14927,3626bpr0001,14,1,f +14927,3795,0,1,f +14927,3839b,7,1,f +14927,4590,1,1,f +14927,4623,1,1,f +14927,4738a,6,1,f +14927,4739a,6,1,f +14927,6124,21,1,f +14927,6131,1,1,f +14927,6132,15,1,f +14927,6141,33,1,f +14927,6141,34,1,f +14927,6157,0,1,f +14927,970c00,1,1,f +14927,973p46c02,1,1,f +14928,2352,4,1,f +14928,2456,14,2,f +14928,3001,1,12,f +14928,3001,4,13,f +14928,3001,14,12,f +14928,3001,0,6,f +14928,3001,15,12,f +14928,3001pr1,14,1,f +14928,3002,14,6,f +14928,3002,0,4,f +14928,3002,4,6,f +14928,3002,15,6,f +14928,3002,1,6,f +14928,3003,15,38,f +14928,3003,0,20,f +14928,3003,14,34,f +14928,3003,4,40,f +14928,3003,1,36,f +14928,3003pe1,14,2,f +14928,3006,14,2,f +14928,3185,14,4,f +14928,3483,0,4,f +14928,4130,4,1,f +14928,4131,14,1,f +14928,4132,4,2,f +14928,4133,14,2,f +14928,4180c02,0,2,f +14928,4204,2,1,f +14928,4727,2,4,f +14928,4728,4,2,f +14928,4728,15,2,f +14928,4743,1,1,f +14928,4744,4,1,f +14928,6007,8,1,f +14928,bfp001,9999,1,f +14929,2431,4,1,f +14929,2555,0,1,f +14929,2586p30,15,2,f +14929,3004,7,2,f +14929,3004,7,1,t +14929,3010,7,1,f +14929,3021,1,1,f +14929,3023,4,3,f +14929,3024,33,1,f +14929,3036,2,1,f +14929,3040b,7,2,f +14929,3062b,14,2,f +14929,3069b,4,1,f +14929,3626bp3k,14,1,f +14929,3659,4,1,f +14929,3710,7,1,f +14929,3794a,4,1,f +14929,3957a,0,1,f +14929,4213,7,1,f +14929,4286,7,4,f +14929,4497,6,2,f +14929,4589,14,1,f +14929,4625,4,1,f +14929,4735,0,2,f +14929,4738a,6,1,f +14929,4739a,6,1,f +14929,57503,334,1,f +14929,57504,334,1,f +14929,57505,334,1,f +14929,57506,334,1,f +14929,6019,0,1,f +14929,6030,4,1,f +14929,6141,4,1,t +14929,6141,4,2,f +14929,87695,15,2,f +14929,87696,15,1,f +14929,970c03pb01,14,1,f +14929,973pb0063c01,14,1,f +14935,3005pta,15,3,f +14935,3005ptb,15,3,f +14935,3005ptc,15,2,f +14935,3005ptd,15,2,f +14935,3005pte,15,3,f +14935,3005ptf,15,2,f +14935,3005ptg,15,2,f +14935,3005pth,15,2,f +14935,3005pti,15,3,f +14935,3005ptj,15,2,f +14935,3005ptk,15,2,f +14935,3005ptl,15,2,f +14935,3005ptm,15,2,f +14935,3005ptn,15,2,f +14935,3005pto,15,2,f +14935,3005ptp,15,2,f +14935,3005ptq,15,1,f +14935,3005ptr,15,2,f +14935,3005pts,15,2,f +14935,3005ptt,15,2,f +14935,3005ptu,15,2,f +14935,3005ptv,15,1,f +14935,3005ptw,15,1,f +14935,3005ptx,15,1,f +14935,3005pty,15,1,f +14935,3005ptz,15,1,f +14938,26562,15,1,f +14938,3626cpr1919,78,1,f +14938,88646pr0002,15,1,f +14938,970c00pr1051,0,1,f +14938,973pr3383c01,15,1,f +14938,99930,70,1,f +14939,2412b,15,1,f +14939,298c02,15,1,f +14939,3010,15,1,f +14939,3020,4,1,f +14939,3021,4,1,f +14939,3022,4,2,f +14939,3022,15,1,f +14939,3023,4,1,f +14939,3024,36,2,f +14939,3024,46,2,f +14939,3024,47,2,f +14939,3034,4,1,f +14939,3183a,4,1,f +14939,3626apr0001,14,2,f +14939,3633,15,2,f +14939,3641,0,10,f +14939,3710,15,2,f +14939,3710,4,5,f +14939,3788,4,1,f +14939,3794a,15,1,f +14939,3821,15,1,f +14939,3822,15,1,f +14939,3823,41,1,f +14939,3829c01,15,1,f +14939,3962a,0,1,f +14939,4006,0,1,f +14939,4070,4,2,f +14939,4070,0,2,f +14939,4081b,15,2,f +14939,4085b,15,2,f +14939,4208,0,1,f +14939,4209,15,1,f +14939,4211,4,1,f +14939,4213,15,1,f +14939,4214,15,1,f +14939,4485,4,2,f +14939,4522,0,1,f +14939,4600,7,2,f +14939,4624,15,6,f +14939,4629c01,1,1,f +14939,6141,47,2,f +14939,817c02,1,1,f +14939,970c00,4,2,f +14939,973p14c01,15,2,f +14939,rb00164,0,1,f +14940,14226c11,0,1,f +14940,2518,2,4,f +14940,2536,6,6,f +14940,2546p01,4,1,f +14940,2563,6,1,f +14940,2566,6,1,f +14940,3010,15,2,f +14940,30108,15,2,f +14940,30115,0,1,f +14940,30136,6,8,f +14940,30162,0,1,f +14940,30217,14,1,f +14940,30218,15,1,f +14940,30220,462,2,f +14940,3030,2,1,f +14940,3031,5,1,f +14940,30385,383,1,f +14940,3068px15,15,1,f +14940,33051,10,1,f +14940,33051,2,1,f +14940,33121,4,1,f +14940,33122,462,1,f +14940,33129,15,1,f +14940,3741,2,1,f +14940,3742,5,3,f +14940,3742,5,1,t +14940,3830,5,1,f +14940,3831,5,1,f +14940,3849,15,1,f +14940,3899,1,1,f +14940,3899,14,1,f +14940,3941,6,9,f +14940,4032a,2,1,f +14940,4738a,6,1,f +14940,4739a,6,1,f +14940,476,15,1,f +14940,4794b,462,2,f +14940,556,1,1,f +14940,57503,334,1,f +14940,57504,334,1,f +14940,57505,334,1,f +14940,57506,334,1,f +14940,6083,14,2,f +14940,6111,14,2,f +14940,6112,6,2,f +14940,6112,15,1,f +14940,6141,36,2,f +14940,6162,18,4,f +14940,6178,14,2,f +14940,6179,14,1,f +14940,6255,2,1,f +14940,6256,14,1,f +14940,71155,0,1,f +14940,beltent2,5,1,f +14940,pouch03,17,1,f +14940,pouch07,13,1,f +14940,towel,15,1,f +14940,x66px10,5,1,f +14945,3004,15,1,f +14945,3004,8,1,f +14945,3004pr20,15,1,f +14945,3010,4,1,f +14945,3021,0,1,f +14945,3022,15,1,f +14945,3023,4,1,f +14945,3023,4,1,t +14945,3039,4,1,f +14945,3298,4,1,f +14945,3660,8,1,f +14948,3626bpr0645,14,1,f +14948,74188,4,1,f +14948,86035,4,1,f +14948,87079pr0053,15,1,f +14948,970c00,1,1,f +14948,973pr2371c01,15,1,f +14949,11089,71,2,f +14949,11097,297,2,f +14949,11097,41,2,f +14949,11098,41,2,f +14949,11100,71,2,f +14949,11100,0,2,f +14949,11127,41,2,f +14949,11211,71,1,f +14949,11214,72,4,f +14949,11233pr0002,71,1,f +14949,11289,41,1,f +14949,11458,72,2,f +14949,11476,71,2,f +14949,11477,308,8,f +14949,12550pr0002,0,1,f +14949,12825,71,2,f +14949,12825,0,2,f +14949,12825,4,3,f +14949,13547,4,2,f +14949,13548,308,2,f +14949,15071,0,1,f +14949,15083pr0002,28,1,f +14949,15090,179,1,f +14949,15091,41,1,f +14949,15092,72,2,f +14949,15107,41,9,f +14949,15461,0,2,f +14949,15535,72,5,f +14949,15571,0,1,f +14949,15573,71,2,f +14949,16659pr0001,31,1,f +14949,16768pat0001,4,1,f +14949,2412b,179,12,f +14949,2431,41,11,f +14949,2445,0,1,f +14949,2456,70,1,f +14949,2458,72,2,f +14949,2639,72,4,f +14949,2654,71,1,f +14949,2730,0,6,f +14949,2780,0,22,f +14949,298c02,1,2,f +14949,30000,72,2,f +14949,3001,70,1,f +14949,3003,70,5,f +14949,30031,71,1,f +14949,30153,41,2,f +14949,3020,70,8,f +14949,3020,25,1,f +14949,3020,73,2,f +14949,3021,72,2,f +14949,3021,70,2,f +14949,3022,70,4,f +14949,3023,57,1,f +14949,3023,41,5,f +14949,30236,0,1,f +14949,3024,41,5,f +14949,3029,0,1,f +14949,3032,70,2,f +14949,3034,70,4,f +14949,30350b,70,2,f +14949,3036,70,3,f +14949,30374,41,4,f +14949,3039,70,4,f +14949,3039pr0014,0,1,f +14949,3040b,308,4,f +14949,30414,1,2,f +14949,30526,72,4,f +14949,30602,41,8,f +14949,3062b,41,3,f +14949,3069b,308,2,f +14949,3069b,73,3,f +14949,3069bpr0070,0,1,f +14949,32000,71,3,f +14949,32001,71,2,f +14949,32016,71,2,f +14949,32054,71,4,f +14949,32073,71,1,f +14949,32084,308,1,f +14949,32123b,14,4,f +14949,32187,71,2,f +14949,32524,1,2,f +14949,32556,19,2,f +14949,32557,71,2,f +14949,3298,70,2,f +14949,3626cpr1130,0,1,f +14949,3626cpr1134,71,1,f +14949,3626cpr1423,28,1,f +14949,3626cpr1435,31,1,f +14949,3659,308,1,f +14949,3665,70,6,f +14949,3666,71,1,f +14949,3700,1,2,f +14949,3701,70,4,f +14949,3710,73,7,f +14949,3713,4,2,f +14949,3747b,70,8,f +14949,3794b,14,1,f +14949,3795,4,1,f +14949,3795,308,4,f +14949,3832,72,1,f +14949,3894,0,1,f +14949,3895,72,8,f +14949,3899,47,1,f +14949,3943b,72,1,f +14949,4006,0,1,f +14949,40244,0,1,f +14949,4032a,1,7,f +14949,40490,0,2,f +14949,41747,308,2,f +14949,41748,308,2,f +14949,41751,41,4,f +14949,41862,308,4,f +14949,42022,41,8,f +14949,42610,71,3,f +14949,4274,1,1,f +14949,4285,71,2,f +14949,4286,70,8,f +14949,43093,1,4,f +14949,4349,0,1,f +14949,44224,72,4,f +14949,44225,71,4,f +14949,44728,0,2,f +14949,4497,179,1,f +14949,4522,0,1,f +14949,47455,72,2,f +14949,47457,308,4,f +14949,47994,0,7,f +14949,48169,72,2,f +14949,48171,72,2,f +14949,50304,72,3,f +14949,50305,72,3,f +14949,51000,308,2,f +14949,53451,0,5,f +14949,53585,0,2,f +14949,54200,73,4,f +14949,55981,71,2,f +14949,57909b,72,5,f +14949,59900,182,1,f +14949,6020,0,1,f +14949,60219,72,4,f +14949,60470a,0,1,f +14949,60477,308,2,f +14949,60478,72,2,f +14949,60596,0,1,f +14949,60621,308,1,f +14949,6063,321,2,f +14949,60897,1,4,f +14949,6091,70,16,f +14949,61184,71,2,f +14949,6126b,57,2,f +14949,61409,0,12,f +14949,61409,25,2,f +14949,6179,0,1,f +14949,62360,41,1,f +14949,62462,0,1,f +14949,63864,4,2,f +14949,63965,0,1,f +14949,64276,0,2,f +14949,6558,1,12,f +14949,6564,71,1,f +14949,6565,71,1,f +14949,6587,28,1,f +14949,72454,72,4,f +14949,73983,71,4,f +14949,76764,179,1,f +14949,76766,0,1,f +14949,85984,71,1,f +14949,87079,70,3,f +14949,87083,72,2,f +14949,87552,41,8,f +14949,87559,308,8,f +14949,87697,0,1,f +14949,87747,179,8,f +14949,90612,0,6,f +14949,90652,308,1,f +14949,92013,308,3,f +14949,92013,41,6,f +14949,92280,0,2,f +14949,92690,297,2,f +14949,92842,0,2,f +14949,92950,72,2,f +14949,93606,308,1,f +14949,95199,0,1,f +14949,96874,25,1,t +14949,970c00pr0663,4,2,f +14949,970c00pr0674,72,1,f +14949,970d00pr0665,28,1,f +14949,970d00pr0667,19,1,f +14949,970d00pr0670,72,1,f +14949,973pr2666c01,4,1,f +14949,973pr2670c01,4,1,f +14949,973pr2672c01,28,1,f +14949,973pr2674c01,19,1,f +14949,973pr2677c01,72,1,f +14949,973pr2687c01,72,1,f +14949,98138,41,14,f +14949,98138pr0023,182,2,f +14949,98577,72,1,f +14949,98585,41,1,f +14949,99021,72,7,f +14949,99206,71,4,f +14949,99207,71,4,f +14949,99781,71,1,f +14950,2357,15,2,f +14950,2441,0,1,f +14950,2444,4,2,f +14950,2445,0,5,f +14950,2454a,15,7,f +14950,2513,4,1,f +14950,2730,15,2,f +14950,2952,7,2,f +14950,2982c01,1,1,f +14950,2983,7,2,f +14950,2984,4,1,f +14950,2985,4,1,f +14950,2986,4,1,f +14950,3001,15,1,f +14950,3003,0,2,f +14950,3004,15,11,f +14950,3005,15,1,f +14950,3008,15,2,f +14950,3021,4,1,f +14950,3022,4,1,f +14950,3023,4,1,f +14950,3024,47,2,f +14950,3036,4,1,f +14950,3065,36,1,f +14950,3068b,0,1,f +14950,3068b,1,1,f +14950,3068b,7,1,f +14950,3068b,4,1,f +14950,3068b,15,1,f +14950,32062,0,1,f +14950,3297,0,2,f +14950,3460,4,1,f +14950,3623,0,2,f +14950,3641,0,4,f +14950,3647,7,1,f +14950,3647,7,1,t +14950,3650c,7,1,f +14950,3673,7,4,f +14950,3675,0,2,f +14950,3700,15,4,f +14950,3700,0,2,f +14950,3702,15,1,f +14950,3705,0,2,f +14950,3707,0,1,f +14950,3709,0,4,f +14950,3710,0,4,f +14950,3713,7,1,t +14950,3713,7,4,f +14950,3755,15,5,f +14950,3788,4,1,f +14950,3795,0,3,f +14950,3829c01,4,1,f +14950,3857,2,1,f +14950,3894,15,1,f +14950,3895,15,1,f +14950,3901,0,1,f +14950,3941,0,1,f +14950,3956,0,1,f +14950,3960,15,1,f +14950,4032a,0,2,f +14950,4161,0,8,f +14950,41752,8,1,t +14950,41752,8,1,f +14950,4185,7,1,f +14950,4275b,0,2,f +14950,4282,0,1,f +14950,4286,4,2,f +14950,4531,0,2,f +14950,4624,14,4,f +14950,47899c01,4,1,f +14950,4865a,4,1,f +14950,5306bc069,0,1,f +14950,5306bc162,0,2,f +14950,6035,15,1,f +14950,6064,2,1,f +14950,6093,0,1,f +14950,6159,4,2,f +14950,6538b,7,1,f +14950,6553,14,1,f +14950,6587,8,1,f +14950,6589,7,2,f +14950,71082,47,1,f +14950,71128,383,1,f +14950,71509,0,4,t +14950,85545,1,2,f +14950,970c00,4,1,f +14950,973c01,15,1,f +14950,bin01,0,1,f +14950,x157,15,5,f +14952,11055,4,1,f +14952,2343,47,2,f +14952,2362a,40,1,f +14952,2412b,72,6,f +14952,2412b,71,2,f +14952,2420,72,4,f +14952,2431,14,5,f +14952,2431,71,2,f +14952,2431,0,2,f +14952,2431,72,3,f +14952,2439,71,1,f +14952,2445,71,1,f +14952,2453a,15,1,f +14952,2453a,71,1,f +14952,2454a,71,1,f +14952,2456,4,1,f +14952,2465,4,1,f +14952,2496,0,4,f +14952,2540,71,1,f +14952,2542,70,1,t +14952,2542,70,1,f +14952,2736,71,1,f +14952,298c02,15,1,t +14952,298c02,15,1,f +14952,3002,15,2,f +14952,3003,0,4,f +14952,3004,4,13,f +14952,3004,0,2,f +14952,3004,71,4,f +14952,3004,15,11,f +14952,3005,0,6,f +14952,3005,14,4,f +14952,3005,4,8,f +14952,3009,71,3,f +14952,3009,15,8,f +14952,3009,4,10,f +14952,3009,14,1,f +14952,3009,0,3,f +14952,3010,4,9,f +14952,3010,0,1,f +14952,3010,14,1,f +14952,3010,15,1,f +14952,30179,14,2,f +14952,3020,72,1,f +14952,3020,71,3,f +14952,3020,4,1,f +14952,3021,14,2,f +14952,3022,14,2,f +14952,3023,14,18,f +14952,3023,46,4,f +14952,3023,72,3,f +14952,3024,46,3,f +14952,3024,182,5,f +14952,30256,71,1,f +14952,3027,0,1,f +14952,3027,72,2,f +14952,3032,72,1,f +14952,3033,14,1,f +14952,3035,1,1,f +14952,3035,71,2,f +14952,3036,72,1,f +14952,3037,0,4,f +14952,30383,72,2,f +14952,3040b,0,10,f +14952,3040bpr0003,71,1,f +14952,30414,72,2,f +14952,30414,1,1,f +14952,30414,4,1,f +14952,30552,71,2,f +14952,3062b,4,1,f +14952,3062b,1,6,f +14952,3062b,2,1,f +14952,3069b,72,2,f +14952,3069b,14,3,f +14952,3069b,0,1,f +14952,3070b,0,2,f +14952,3070b,0,1,t +14952,3070b,1,2,t +14952,32000,71,1,f +14952,32054,4,1,f +14952,32062,4,1,f +14952,3245b,14,1,f +14952,3297,15,1,f +14952,3622,4,4,f +14952,3623,14,2,f +14952,3623,72,2,f +14952,3624,0,1,f +14952,3626bpr0216,14,1,f +14952,3626bpr0387,14,1,f +14952,3626bpr0389,14,1,f +14952,3626bpr0498,14,1,f +14952,3626bpr0892,14,1,f +14952,3633,72,3,f +14952,3660,4,3,f +14952,3665,14,6,f +14952,3666,72,6,f +14952,3666,14,6,f +14952,3675,0,4,f +14952,3710,0,2,f +14952,3710,71,2,f +14952,3710,14,6,f +14952,3741,2,1,t +14952,3741,2,1,f +14952,3742,15,1,t +14952,3742,15,3,f +14952,3794b,71,1,f +14952,3795,4,1,f +14952,3795,14,6,f +14952,3795,72,1,f +14952,3829c01,4,1,f +14952,3832,72,2,f +14952,3865,72,3,f +14952,3901,0,1,f +14952,3941,70,1,f +14952,3941,19,2,f +14952,3957a,71,1,t +14952,3957a,71,1,f +14952,3958,14,1,f +14952,4006,0,1,f +14952,4070,71,3,f +14952,4070,15,2,f +14952,4070,4,1,f +14952,4079,14,4,f +14952,4079,4,6,f +14952,4083,15,1,f +14952,4150p02,14,2,f +14952,41879a,71,1,f +14952,4215b,40,8,f +14952,42445,71,2,f +14952,42511,1,2,f +14952,4360,0,1,f +14952,44302a,71,4,f +14952,4449,70,1,f +14952,4460b,4,2,f +14952,4488,71,4,f +14952,4510,71,2,f +14952,4510,72,2,f +14952,4510,0,2,f +14952,4522,0,1,f +14952,46303,71,2,f +14952,4719,4,1,f +14952,4740,71,1,f +14952,48336,71,2,f +14952,4865a,0,1,f +14952,48729a,72,1,f +14952,48729a,72,1,t +14952,50745,14,4,f +14952,52031,14,1,f +14952,52501,14,1,f +14952,54200,14,2,f +14952,54200,47,2,f +14952,54200,47,1,t +14952,54200,14,1,t +14952,54200,36,1,t +14952,54200,36,2,f +14952,57895,40,3,f +14952,59349,71,1,f +14952,59349,4,2,f +14952,59349,47,1,f +14952,59349,15,2,f +14952,60031stk01,9999,1,t +14952,6014b,71,4,f +14952,6019,4,2,f +14952,6019,14,1,f +14952,6019,15,2,f +14952,60475a,15,2,f +14952,60476,0,1,f +14952,60478,4,2,f +14952,60478,72,2,f +14952,60593,15,2,f +14952,60594,15,4,f +14952,60596,15,4,f +14952,60602,47,2,f +14952,60603,47,6,f +14952,60616a,40,3,f +14952,60700,0,4,f +14952,60806,0,2,f +14952,6093,70,1,f +14952,61068,14,1,f +14952,6112,4,1,f +14952,61409,72,4,f +14952,6141,71,2,f +14952,6141,14,1,t +14952,6141,182,1,t +14952,6141,71,1,t +14952,6141,4,1,f +14952,6141,0,1,t +14952,6141,14,2,f +14952,6141,4,1,t +14952,6141,182,2,f +14952,6141,0,2,f +14952,6179,14,2,f +14952,64453,40,3,f +14952,6536,0,1,f +14952,6553,71,1,f +14952,6636,4,1,f +14952,6636,14,4,f +14952,6636,72,4,f +14952,85984,0,1,f +14952,85984,0,1,t +14952,86035,4,1,f +14952,86035,1,1,f +14952,92851,47,2,f +14952,970c00,71,2,f +14952,970c00,0,1,f +14952,970c00,2,1,f +14952,973pr1163c01,272,1,f +14952,973pr1173c01,4,1,f +14952,973pr1196c01,15,1,f +14952,973pr1271c01,15,1,f +14953,2420,15,8,f +14953,3023,15,16,f +14953,3024,15,16,f +14953,3460,15,8,f +14953,3623,15,8,f +14953,3666,15,8,f +14953,3710,15,16,f +14953,4477,15,4,f +14956,10288,308,1,f +14956,11213,71,1,f +14956,11303,320,1,f +14956,11477,72,2,f +14956,15064,179,2,f +14956,15391,15,1,f +14956,15392,72,3,f +14956,15403,0,2,f +14956,15411,0,2,f +14956,2540,72,7,f +14956,2780,0,1,f +14956,3023,70,2,f +14956,30238,179,2,f +14956,30608,19,1,f +14956,3062b,42,4,f +14956,3069bpr0139,40,1,f +14956,32034,0,1,f +14956,32062,4,6,f +14956,32123b,71,1,f +14956,32192,72,3,f +14956,3626cpr1605,14,1,f +14956,3626cpr1607,14,1,f +14956,3660,320,3,f +14956,3705,0,1,f +14956,3709,0,1,f +14956,3937,72,2,f +14956,4032a,0,8,f +14956,4175,72,3,f +14956,42446,72,1,f +14956,44126,379,3,f +14956,44676,379,4,f +14956,4599b,0,1,f +14956,4733,72,2,f +14956,4740,36,1,f +14956,54200,297,4,f +14956,55981,297,1,f +14956,6134,71,2,f +14956,6141,42,5,f +14956,6141,182,1,f +14956,6553,0,3,f +14956,85984,0,4,f +14956,92747,41,1,f +14956,92946,0,4,f +14956,970c00pr0805,272,1,f +14956,970d00pr0806,179,1,f +14956,973pr2909c01,272,1,f +14956,973pr2910c01,191,1,f +14956,98313,320,3,f +14957,27bc01,4,1,f +14957,29bc01,4,1,f +14957,3081bc01,4,1,f +14957,3087bc01,4,1,f +14957,31bc01,4,1,f +14957,32bc01,4,1,f +14957,453bc01,4,1,f +14957,604c01,4,1,f +14957,645bc01,4,1,f +14957,646bc01,4,1,f +14960,2780,0,6,f +14960,32062,4,2,f +14960,42003,72,1,f +14960,43093,1,1,f +14960,4519,71,1,f +14960,45749,72,2,f +14960,47306,72,1,f +14960,47312,72,1,f +14960,48989,71,1,f +14960,53543,72,4,f +14960,53544,135,1,f +14960,53545,72,1,f +14960,53546,27,1,f +14960,53548,72,2,f +14960,54821,135,4,f +14960,57528,135,2,f +14960,57536,42,1,f +14960,57569,72,2,f +14960,57702,41,1,f +14960,60176,27,5,f +14960,60911,27,1,f +14960,60923,135,1,f +14960,60930,135,2,f +14960,61054,27,4,f +14960,62233,135,1,f +14960,6558,1,2,f +14961,1256stk01,9999,1,t +14961,194cx1,0,1,f +14961,194cx1,2,1,f +14961,2412b,0,3,f +14961,2412b,36,2,f +14961,2420,4,2,f +14961,2431,4,1,f +14961,2432,14,1,f +14961,2446,4,1,f +14961,2447,0,1,f +14961,2456,14,2,f +14961,2465,14,2,f +14961,2513,4,1,f +14961,3002,14,2,f +14961,3002,15,2,f +14961,30027a,15,4,f +14961,30028,0,4,f +14961,3003,15,2,f +14961,3004,15,6,f +14961,3005,4,2,f +14961,3006,15,1,f +14961,3009,15,2,f +14961,30145,15,2,f +14961,30187a,15,1,f +14961,30187c01,15,1,t +14961,30189,15,1,f +14961,30190,15,1,f +14961,3020,4,1,f +14961,3020,7,2,f +14961,3021,7,1,f +14961,3022,4,1,f +14961,3022,7,2,f +14961,3023,0,1,f +14961,30237a,15,4,f +14961,3024,46,3,f +14961,3029,7,1,f +14961,3029,14,2,f +14961,3034,15,1,f +14961,30343c01,15,3,f +14961,3040p04,7,2,f +14961,3062b,4,1,f +14961,3070b,36,1,t +14961,3070b,36,3,f +14961,3245b,15,2,f +14961,3622,7,1,f +14961,3622,0,10,f +14961,3623,4,2,f +14961,3626bp04,14,1,f +14961,3626bp05,14,1,f +14961,3710,7,1,f +14961,3741,2,3,f +14961,3741,2,1,t +14961,3742,4,3,f +14961,3742,14,1,t +14961,3742,15,1,t +14961,3742,4,1,t +14961,3742,15,3,f +14961,3742,14,3,f +14961,3747a,15,2,f +14961,3788,4,1,f +14961,3794a,7,3,f +14961,3795,14,2,f +14961,3795,4,2,f +14961,3821,4,1,f +14961,3822,4,1,f +14961,3829c01,7,1,f +14961,3836,6,1,f +14961,3852b,6,1,f +14961,3901,0,1,f +14961,4070,15,4,f +14961,4070,0,4,f +14961,4212b,0,1,f +14961,4485,4,1,t +14961,4523,7,1,f +14961,4599a,4,1,f +14961,4599a,7,2,f +14961,4623,14,1,f +14961,51595p02,2,2,f +14961,6014a,15,2,f +14961,6015,0,3,f +14961,6111,14,2,f +14961,6112,7,2,f +14961,6141,4,1,t +14961,6141,14,1,f +14961,6141,14,1,t +14961,6141,4,1,f +14961,6157,7,2,f +14961,6238,47,1,f +14961,970c00,7,1,f +14961,970c00,0,1,f +14961,973p70c01,6,1,f +14961,973pb0242c01,15,1,f +14962,4755,15,2,f +14962,4757,15,3,f +14962,4758,15,4,f +14963,11477,2,4,f +14963,2437,40,1,f +14963,2877,72,2,f +14963,2926,0,2,f +14963,3010,2,2,f +14963,3020,27,1,f +14963,30374,0,1,f +14963,3795,2,2,f +14963,4006,0,2,f +14963,4070,2,4,f +14963,44301a,72,2,f +14963,60470b,2,3,f +14963,92409,0,4,f +14963,93595,0,4,f +14963,98138,36,2,f +14963,98138,179,4,f +14965,2419,7,1,f +14965,2555,0,2,f +14965,3022,0,1,f +14965,3069bp54,7,1,f +14965,3298p6u,7,1,f +14965,3626bp6v,1,1,f +14965,3710,0,1,f +14965,3795,7,1,f +14965,3937,7,1,f +14965,3938,0,1,f +14965,3957a,7,2,f +14965,3959,0,1,f +14965,4285b,0,1,f +14965,4589,42,2,f +14965,4859,7,1,f +14965,970c00pb021,0,1,f +14965,973px132c01,7,1,f +14967,3001,7,14,f +14967,3002,7,8,f +14967,3003,7,12,f +14967,3004,7,8,f +14967,3005,7,4,f +14967,3006,7,1,f +14967,3007,7,1,f +14967,3008,7,2,f +14967,3009,7,4,f +14967,3010,7,4,f +14967,3622,7,4,f +14969,3001a,47,1,f +14969,3002a,14,2,f +14969,3004,47,3,f +14969,3005,0,4,f +14969,3020,14,4,f +14969,3020,0,2,f +14969,3021,14,2,f +14969,3023,0,4,f +14969,3023,14,1,f +14969,3024,47,2,f +14969,3032,0,3,f +14969,3063b,14,2,f +14969,3137c01,0,2,f +14969,3139,0,4,f +14972,10247,14,3,f +14972,11211,4,2,f +14972,11477,15,4,f +14972,11477,71,4,f +14972,2412b,272,2,f +14972,2412b,71,4,f +14972,2412b,4,2,f +14972,2412b,4,1,t +14972,2415,71,1,f +14972,2431,0,4,f +14972,2431,14,3,f +14972,2432,72,2,f +14972,2432,4,1,f +14972,2445,0,5,f +14972,2479,0,1,f +14972,2540,4,1,f +14972,2780,0,1,t +14972,2780,0,2,f +14972,3001,14,2,f +14972,3001,4,1,f +14972,3003,4,1,f +14972,3003,14,2,f +14972,3004,72,2,f +14972,3004,272,1,f +14972,3004,14,2,f +14972,3005,14,2,f +14972,3009,14,1,f +14972,3010,14,2,f +14972,30165,0,1,f +14972,30165,14,4,f +14972,3020,15,2,f +14972,3020,71,2,f +14972,3020,0,4,f +14972,3021,72,7,f +14972,3021,14,1,f +14972,3022,15,2,f +14972,3022,14,2,f +14972,3022,71,5,f +14972,3023,272,4,f +14972,3023,72,5,f +14972,3023,15,4,f +14972,3023,14,12,f +14972,3024,14,2,f +14972,3024,14,1,t +14972,3024,47,2,f +14972,3024,47,1,t +14972,3034,72,2,f +14972,30363,0,2,f +14972,3039,272,1,f +14972,3040b,14,3,f +14972,3069b,15,6,f +14972,3069bpr0101,71,1,f +14972,3070b,15,4,f +14972,3070b,15,1,t +14972,32013,71,2,f +14972,32028,0,4,f +14972,32064b,71,2,f +14972,3460,71,2,f +14972,3464,15,1,f +14972,3622,71,2,f +14972,3660,14,2,f +14972,3666,272,1,f +14972,3666,14,4,f +14972,3666,15,4,f +14972,3673,71,1,t +14972,3673,71,1,f +14972,3679,71,1,f +14972,3680,0,1,f +14972,3700,0,2,f +14972,3710,71,3,f +14972,3710,14,10,f +14972,3710,0,4,f +14972,3747b,71,1,f +14972,3749,19,4,f +14972,3794b,14,3,f +14972,3795,71,3,f +14972,3960,71,1,f +14972,4032a,72,4,f +14972,4070,71,4,f +14972,4162,0,4,f +14972,42610,71,2,f +14972,43710,14,2,f +14972,43711,14,2,f +14972,43719,14,1,f +14972,43722,14,3,f +14972,43722,0,1,f +14972,43723,14,3,f +14972,43723,0,1,f +14972,44728,15,4,f +14972,4519,71,2,f +14972,48336,71,6,f +14972,48729a,0,1,f +14972,48729a,0,1,t +14972,51739,0,2,f +14972,54383,15,1,f +14972,54384,15,1,f +14972,55982,71,4,f +14972,58090,0,4,f +14972,59895,0,1,f +14972,59895,0,1,t +14972,59900,0,2,f +14972,60470a,71,5,f +14972,60474,71,2,f +14972,60477,14,2,f +14972,60478,14,2,f +14972,60478,71,8,f +14972,61409,72,2,f +14972,61409,14,4,f +14972,6141,34,1,f +14972,6141,0,14,f +14972,6141,36,1,f +14972,6141,0,1,t +14972,6141,57,1,t +14972,6141,34,1,t +14972,6141,57,2,f +14972,6141,36,1,t +14972,6231,72,4,f +14972,6553,0,2,f +14972,6636,272,2,f +14972,85984,0,2,f +14972,87083,72,1,f +14972,87580,71,2,f +14972,91988,71,1,f +14972,92279,40,1,f +14972,92280,0,7,f +14972,92409,0,2,f +14972,92593,72,1,f +14972,92946,14,2,f +14972,99206,71,1,f +14972,99207,71,4,f +14972,99780,0,5,f +14973,3001a,47,5,f +14973,3001a,1,10,f +14973,3001a,14,10,f +14973,3001a,0,5,f +14973,3001a,4,60,f +14973,3001a,15,60,f +14973,3002a,47,2,f +14973,3002a,0,2,f +14973,3002a,1,3,f +14973,3002a,4,12,f +14973,3002a,14,3,f +14973,3002a,15,12,f +14973,3003,0,5,f +14973,3003,15,20,f +14973,3003,47,5,f +14973,3003,1,5,f +14973,3003,4,20,f +14973,3003,14,5,f +14973,3005,47,2,f +14973,3005,1,3,f +14973,3005,14,3,f +14973,3005,4,15,f +14973,3005,0,2,f +14973,3005,15,15,f +14973,3006,4,6,f +14973,3006,15,6,f +14973,3007,4,6,f +14973,3007,15,6,f +14973,3008a,15,3,f +14973,3009a,15,3,f +14973,3034a,15,6,f +14973,3035a,15,6,f +14973,3036a,15,4,f +14973,3037,1,8,f +14973,3039,1,8,f +14973,3041,1,2,f +14973,3043,1,2,f +14973,3062c,1,2,f +14973,3062c,4,10,f +14973,3062c,15,10,f +14973,3062c,14,2,f +14973,3063b,4,20,f +14973,3063b,47,10,f +14973,3063b,15,20,f +14973,3063b,0,4,f +14973,3063b,1,4,f +14973,3063b,14,4,f +14973,3065,14,3,f +14973,3065,47,2,f +14973,3065,4,10,f +14973,3065,1,3,f +14973,3065,15,10,f +14973,3065,0,2,f +14973,700ex,2,2,f +14973,712a,15,2,f +14973,713a,15,2,f +14973,820,15,1,f +14973,821,15,1,f +14973,822ac01,4,1,f +14973,wood04,9999,1,f +14975,33022,4,2,f +14975,33025,17,1,f +14975,72058,-1,1,f +14975,x10,4,1,f +14975,x11,79,1,f +14975,x15,17,1,f +14975,x16,17,1,f +14975,x17,4,1,f +14976,11289,41,1,f +14976,2419,272,1,f +14976,2421,0,1,f +14976,2446,15,1,f +14976,2447,40,1,f +14976,2447,40,1,t +14976,2460,71,1,f +14976,2479,0,1,f +14976,298c02,15,2,f +14976,298c02,15,1,t +14976,3003,272,1,f +14976,3023,15,1,f +14976,3023,71,1,f +14976,3024,36,1,f +14976,3034,15,1,f +14976,3626cpr0499,14,1,f +14976,3666,272,3,f +14976,3666,72,2,f +14976,3839b,72,1,f +14976,44661,15,1,f +14976,4488,71,1,f +14976,54200,33,1,t +14976,54200,33,2,f +14976,76766,71,1,f +14976,87087,71,2,f +14976,90194,15,1,f +14976,92280,71,2,f +14976,970c00pr0293,272,1,f +14976,973pr1947bc01,272,1,f +14977,122c01,0,3,f +14977,2348a,41,1,f +14977,2349a,15,1,f +14977,298c02,15,1,t +14977,298c02,15,1,f +14977,3004,14,1,f +14977,3020,0,1,f +14977,3021,0,1,f +14977,3022,0,1,f +14977,3023,7,1,f +14977,3023,14,5,f +14977,3024,36,4,f +14977,3024,47,2,f +14977,3034,0,2,f +14977,3068b,14,1,f +14977,3070bp08,15,2,f +14977,3070bp08,15,1,t +14977,3464,4,2,f +14977,3623,14,4,f +14977,3626apr0001,14,1,f +14977,3641,0,4,f +14977,3710,14,6,f +14977,3710,15,1,f +14977,3730,0,1,f +14977,3731,14,1,f +14977,3787,14,1,f +14977,3788,14,2,f +14977,3794a,7,1,f +14977,3794a,0,3,f +14977,3821,14,1,f +14977,3822,14,1,f +14977,3823,41,2,f +14977,3829c01,0,1,f +14977,3842b,0,1,f +14977,3937,0,1,f +14977,3938,0,1,f +14977,4081a,14,2,f +14977,4084,0,4,f +14977,4214,15,1,f +14977,4480c01,1,1,f +14977,4859,14,1,f +14977,6141,36,2,f +14977,970c00,15,1,f +14977,973p14c01,15,1,f +14978,3002a,14,12,f +14978,3003,0,3,f +14978,3003,14,12,f +14978,3003,15,1,f +14978,3004,14,183,f +14978,3004,15,3,f +14978,3004,0,9,f +14978,3005,14,71,f +14978,3005,4,2,f +14978,3008,14,15,f +14978,3009,14,29,f +14978,3010,14,30,f +14978,3020,15,3,f +14978,3020,7,2,f +14978,3020,0,9,f +14978,3021,7,6,f +14978,3022,15,2,f +14978,3022,0,6,f +14978,3022,14,6,f +14978,3022,7,4,f +14978,3023,15,2,f +14978,3023,7,4,f +14978,3023,0,6,f +14978,3023,4,1,f +14978,3024,7,8,f +14978,3032,14,2,f +14978,3032,7,6,f +14978,3034,7,2,f +14978,3036,4,1,f +14978,3039,0,9,f +14978,3039,15,3,f +14978,3040b,4,2,f +14978,3062a,14,6,f +14978,3069b,0,3,f +14978,3069b,14,3,f +14978,3069b,15,1,f +14978,3087c,4,6,f +14978,3176,4,2,f +14978,3185,0,2,f +14978,3307,14,8,f +14978,3308,14,6,f +14978,3460,14,2,f +14978,3581,14,2,f +14978,3596,15,1,f +14978,3622,14,62,f +14978,3623,4,6,f +14978,3623,7,2,f +14978,3626apr0001,14,14,f +14978,3633,4,2,f +14978,3644,4,2,f +14978,3659,14,3,f +14978,3660,15,2,f +14978,3660,0,6,f +14978,3660,14,12,f +14978,3665,0,24,f +14978,3665,14,8,f +14978,3673,7,2,f +14978,3684,14,6,f +14978,3685,14,4,f +14978,3700,4,2,f +14978,3700,14,3,f +14978,3710,7,4,f +14978,3795,7,8,f +14978,3830,14,8,f +14978,3831,14,8,f +14978,3840,7,14,f +14978,3842a,7,4,f +14978,3843,0,1,f +14978,3843,15,1,f +14978,3843,7,1,f +14978,3843,4,1,f +14978,3844,7,10,f +14978,3846,7,9,f +14978,3847a,7,5,f +14978,3848,7,5,f +14978,3849,7,4,f +14978,3857,2,1,f +14978,3865,2,4,f +14978,56823c50,0,1,f +14978,73037,14,1,f +14978,970c00,1,8,f +14978,970c00,4,2,f +14978,970c00,0,2,f +14978,970c00,15,2,f +14978,973c01,15,2,f +14978,973c02,4,2,f +14978,973c07,1,8,f +14978,973c18,0,2,f +14980,27bc01,4,1,f +14980,3004,15,20,f +14980,3004,0,23,f +14980,3005,15,10,f +14980,3005,0,4,f +14980,3008,15,2,f +14980,3009,15,13,f +14980,3020,1,53,f +14980,3021,1,9,f +14980,3022,1,2,f +14980,3023,0,12,f +14980,3024,47,6,f +14980,3024,1,6,f +14980,3036,15,2,f +14980,3062a,0,2,f +14980,3081bc01,4,2,f +14980,33bc01,4,1,f +14980,646bc01,4,1,f +14980,664pb01,0,1,f +14980,820,15,1,f +14980,821,15,1,f +14980,822ac01,4,1,f +14980,ftoakh,2,1,f +14981,2340,14,1,f +14981,2376,0,1,f +14981,2412b,14,2,f +14981,2420,14,2,f +14981,2466,14,4,f +14981,2654,0,2,f +14981,2730,14,2,f +14981,2745,14,2,f +14981,2780,0,29,f +14981,2793c01,14,1,f +14981,2797c02,14,1,f +14981,2817,14,1,f +14981,2819,7,1,f +14981,2825,7,4,f +14981,3001,7,1,f +14981,3003,7,1,f +14981,3004,7,4,f +14981,3022,14,7,f +14981,3022,7,3,f +14981,3022,0,2,f +14981,3023,14,8,f +14981,3024,36,1,f +14981,3031,14,1,f +14981,3039,14,2,f +14981,3040b,7,2,f +14981,3068b,14,1,f +14981,32000,7,2,f +14981,32002,8,2,t +14981,32008,0,2,f +14981,32013,14,2,f +14981,32013,7,6,f +14981,32014,14,2,f +14981,32014,7,3,f +14981,32015,14,6,f +14981,32016,14,2,f +14981,32017,0,6,f +14981,32037,0,1,f +14981,32038,14,1,f +14981,32039,0,1,f +14981,32062,0,16,f +14981,3482,0,2,f +14981,3483,0,2,f +14981,3623,14,1,f +14981,3650c,7,1,f +14981,3660,7,1,f +14981,3665,7,2,f +14981,3666,14,1,t +14981,3666,14,1,f +14981,3673,7,3,f +14981,3700,7,2,f +14981,3700,14,15,f +14981,3703,14,10,f +14981,3703,0,2,f +14981,3705,0,13,f +14981,3706,0,10,f +14981,3707,0,4,f +14981,3709,0,2,f +14981,3709,14,6,f +14981,3709,14,1,t +14981,3710,14,2,f +14981,3713,7,1,t +14981,3713,7,3,f +14981,3737,0,1,f +14981,3747b,0,1,f +14981,3749,7,8,f +14981,3749,7,2,t +14981,3894,14,7,f +14981,3941,14,2,f +14981,4019,7,2,f +14981,4150,0,2,f +14981,4185,7,2,t +14981,4265b,7,28,f +14981,4265b,7,1,t +14981,4274,7,7,f +14981,4274,7,1,t +14981,4287,14,1,f +14981,4519,0,1,f +14981,4716,0,1,f +14981,5102c13,7,1,f +14981,5102c18,7,1,f +14981,5102c20,1,1,f +14981,5102c24,1,1,f +14981,6041,0,4,f +14981,6259,14,4,f +14981,6536,7,11,f +14981,6536,14,4,f +14981,6538b,7,1,f +14981,6553,7,11,f +14981,6553,14,2,f +14981,6558,0,8,f +14981,6585,14,1,f +14981,6587,8,6,f +14981,6589,7,4,f +14981,6629,0,4,f +14981,6629,14,2,f +14981,6632,14,12,f +14981,6632,0,2,f +14981,6632,7,2,f +14981,73129,7,1,f +14981,75215,7,1,f +14981,75535,14,2,f +14981,75974,1,1,f +14981,75c15,14,1,f +14981,75c21,14,1,f +14981,bb1237,9999,1,f +14981,bb145c07,14,1,f +14981,tech002,9999,1,f +14982,13285pr01,25,2,f +14982,2412b,36,1,f +14982,2420,1,4,f +14982,2431,71,4,f +14982,2436,0,4,f +14982,2444,15,4,f +14982,2445,15,1,f +14982,2449,71,1,f +14982,2454a,72,3,f +14982,2460,4,2,f +14982,2540,15,12,f +14982,2571,15,6,f +14982,2730,15,2,f +14982,2780,0,10,f +14982,2780,0,1,t +14982,2876,15,4,f +14982,2905,71,2,f +14982,3001,15,2,f +14982,3003,71,2,f +14982,3004,15,5,f +14982,3005,15,2,f +14982,3008,15,2,f +14982,3009,15,4,f +14982,3010,15,5,f +14982,30165,72,2,f +14982,30180,15,2,f +14982,3021,72,3,f +14982,3023,15,27,f +14982,30237a,71,2,f +14982,30249,15,2,f +14982,3028,71,2,f +14982,3032,15,1,f +14982,3034,15,2,f +14982,3035,71,3,f +14982,3035,72,2,f +14982,30350b,72,1,f +14982,30408pr0001,0,1,f +14982,30408px2,15,4,f +14982,3040b,71,6,f +14982,3045,71,2,f +14982,30592,71,2,f +14982,3062b,72,7,f +14982,3063b,15,4,f +14982,3068b,15,3,f +14982,3069bpr0070,0,1,f +14982,32000,71,4,f +14982,32018,15,3,f +14982,32056,15,4,f +14982,32059,71,2,f +14982,32062,4,5,f +14982,32064b,72,4,f +14982,32073,71,4,f +14982,32086,40,1,f +14982,32123b,14,8,f +14982,32123b,14,3,t +14982,32140,71,2,f +14982,32192,0,2,f +14982,32250,72,2,f +14982,32269,71,2,f +14982,32270,0,1,f +14982,32316,15,2,f +14982,32498,71,2,f +14982,3297,15,2,f +14982,3460,71,3,f +14982,3623,15,6,f +14982,3626b,0,5,f +14982,3647,71,1,f +14982,3647,71,1,t +14982,3650c,71,1,f +14982,3659,15,4,f +14982,3665,15,3,f +14982,3666,72,4,f +14982,3702,71,1,f +14982,3705,0,9,f +14982,3706,0,1,f +14982,3710,71,16,f +14982,3713,71,3,f +14982,3713,71,1,t +14982,3747b,15,1,f +14982,3754,71,1,f +14982,3794a,72,9,f +14982,3795,15,4,f +14982,3894,15,1,f +14982,3937,72,1,f +14982,4032a,71,3,f +14982,4070,15,6,f +14982,4079,1,2,f +14982,41531,15,6,f +14982,41677,4,2,f +14982,42003,72,4,f +14982,4274,1,4,f +14982,4274,1,1,t +14982,4286,15,6,f +14982,4287,15,4,f +14982,43093,1,4,f +14982,43337,15,4,f +14982,44728,71,5,f +14982,4477,15,4,f +14982,4519,71,7,f +14982,45590,0,2,f +14982,45677,15,3,f +14982,4589,42,10,f +14982,4716,0,1,f +14982,4740,33,5,f +14982,47905,72,6,f +14982,48336,71,1,f +14982,50304,15,2,f +14982,50305,15,2,f +14982,51739,15,2,f +14982,54200,36,4,f +14982,57028c01,4,2,f +14982,57796,0,2,f +14982,57899,0,2,f +14982,58247,0,2,f +14982,6005,15,16,f +14982,6019,71,12,f +14982,6081,15,3,f +14982,6134,0,1,f +14982,6141,57,1,t +14982,6141,182,1,t +14982,6141,182,3,f +14982,6141,57,4,f +14982,6536,15,2,f +14982,6538b,71,1,f +14982,6541,71,8,f +14982,6553,71,3,f +14982,6558,0,4,f +14982,6572,4,2,f +14982,6636,15,6,f +14982,75c03,71,1,t +14982,75c03,71,2,f +14982,970c00,0,1,f +14982,970x026,15,4,f +14982,973pr0520c01,15,4,f +14982,973pr1148c01,0,1,f +14984,46296,236,1,f +14984,clikits018,41,1,f +14984,clikits084,143,1,f +14984,clikits107,143,1,f +14986,132a,0,10,f +14986,242c01,4,14,f +14986,3001a,14,3,f +14986,3002a,14,5,f +14986,3003,47,1,f +14986,3003,14,1,f +14986,3003,0,1,f +14986,3004,47,1,f +14986,3004,1,2,f +14986,3004p50,4,1,f +14986,3005,14,4,f +14986,3009,1,2,f +14986,3009,0,2,f +14986,3009,47,1,f +14986,3009p01,1,1,f +14986,3010,0,2,f +14986,3010,47,1,f +14986,3010,1,2,f +14986,3020,4,1,f +14986,3020,1,1,f +14986,3020,0,1,f +14986,3022,14,1,f +14986,3022,1,1,f +14986,3022,0,2,f +14986,3023,0,2,f +14986,3023,14,2,f +14986,3026,4,1,f +14986,3030,14,1,f +14986,3034,4,2,f +14986,3035,0,1,f +14986,3037,14,3,f +14986,3039,47,1,f +14986,3062a,0,1,f +14986,3149c01,4,1,f +14986,3176,4,1,f +14986,3315,4,2,f +14986,3324c01,4,3,f +14986,3404ac01,0,2,f +14986,3433,14,1,f +14986,3597,4,1,f +14986,498,0,2,f +14986,56823,0,1,f +14986,586c01,14,1,f +14986,7049b,0,6,f +14986,709,1,1,f +14986,711,1,1,f +14986,799c800,0,1,f +14986,801a,1,1,f +14986,802a,1,1,f +14986,804,0,1,f +14987,2654,72,1,f +14987,3004,14,2,f +14987,3022,14,1,f +14987,3626bpr0750,15,1,f +14987,3841,72,1,f +14987,4621844,9999,1,f +14987,4621845,9999,1,f +14987,4621846,9999,1,f +14987,4621847,9999,1,f +14987,4621848,9999,1,f +14987,64567,71,1,f +14987,87747,15,2,f +14987,92547pr0007,0,1,f +14987,92691,297,1,f +14987,93062c01,15,2,f +14987,93609,15,2,f +14987,93761pr0002,15,1,f +14987,94351pr0003,0,1,f +14989,2412b,14,2,f +14989,2412b,0,2,f +14989,2418b,33,1,f +14989,2420,14,4,f +14989,2555,0,2,f +14989,2593,14,2,f +14989,2605c01,0,2,f +14989,30014,0,2,f +14989,3010,14,2,f +14989,3022,14,4,f +14989,3069bps9,14,1,f +14989,3298,0,4,f +14989,3460,14,1,f +14989,3612,14,6,f +14989,3612,0,2,f +14989,3622,14,2,f +14989,3626bpx114,14,1,f +14989,3666,14,1,f +14989,3673,7,2,f +14989,37,383,2,f +14989,3700,14,10,f +14989,3737,0,2,f +14989,3749,7,4,f +14989,3937,0,1,f +14989,4101599,1,1,f +14989,412,57,4,f +14989,4150pa0,14,1,f +14989,4220,14,2,f +14989,4221,0,4,f +14989,4477,14,2,f +14989,4623,0,2,f +14989,4732,0,2,f +14989,57467,383,2,f +14989,59275,1,2,f +14989,6041,57,4,f +14989,6043,14,4,f +14989,6064,2,1,f +14989,6088,15,1,f +14989,6090,0,1,f +14989,970x001,1,1,f +14989,973px170c01,15,1,f +14990,6124,45,1,f +14990,x844px2,89,1,f +14991,2447,41,1,f +14991,2584,0,1,f +14991,2585,7,1,f +14991,2610,14,2,f +14991,30091,7,1,f +14991,30162,8,2,f +14991,30191,7,1,f +14991,30192,8,2,f +14991,30193,8,2,f +14991,30194,8,2,f +14991,30228,8,2,f +14991,30229,8,2,f +14991,3834,15,1,f +14991,3837,8,2,f +14991,3962b,0,2,f +14991,4349,7,1,f +14991,4714,15,1,f +14991,4715,15,2,f +14991,56823,0,1,f +14991,6117,7,1,f +14991,6158,0,1,f +14992,2412a,7,1,f +14992,2415,7,1,f +14992,2421,0,1,f +14992,2432,15,1,f +14992,2445,15,1,f +14992,2446,1,1,f +14992,2447,41,1,f +14992,298c02,4,2,f +14992,298c02,4,1,t +14992,3020,15,1,f +14992,3022,7,1,f +14992,3022,15,1,f +14992,3139,0,3,f +14992,3464,47,1,f +14992,3479,4,1,f +14992,3626apr0001,14,2,f +14992,3933,15,1,f +14992,3934,15,1,f +14992,3962b,0,1,f +14992,4485,4,1,f +14992,4488,7,1,f +14992,4600,7,1,f +14992,4624,7,2,f +14992,4859,4,2,f +14992,4864a,15,2,f +14992,970c00,4,1,f +14992,970c00,1,1,f +14992,973p0ac01,1,1,f +14992,973p16c01,15,1,f +14994,2780,0,2,f +14994,32054,0,2,f +14994,32062,0,2,f +14994,32174,27,7,f +14994,4274,71,1,f +14994,4274,71,1,t +14994,43093,1,2,f +14994,4519,71,3,f +14994,47297,272,2,f +14994,47306,272,2,f +14994,47312,72,1,f +14994,47313,57,1,f +14994,48729a,0,2,f +14994,50898,27,4,f +14994,53543,272,2,f +14994,53544,272,2,f +14994,53548,272,2,f +14994,53549,272,2,f +14994,53564,272,1,f +14994,57523c01,135,1,f +14994,57525,4,9,f +14994,57530,272,1,f +14994,57539,135,1,f +14994,57540,135,2,f +14994,57545,135,1,f +14994,57702,41,1,f +14994,58176,143,1,f +14994,6536,27,1,f +14996,2470,6,2,f +14996,2555,0,3,f +14996,2570,8,2,f +14996,2586p4b,7,1,f +14996,3626bpx97,14,1,f +14996,3794a,0,1,f +14996,3795,0,2,f +14996,3839b,0,1,f +14996,3844,0,1,f +14996,3847,8,1,f +14996,4085c,0,2,f +14996,4497,0,1,f +14996,4600,0,1,f +14996,6141,7,2,f +14996,970x026,7,1,f +14996,973p4bc02,4,1,f +15002,10183,47,1,f +15002,12892pr0001,191,1,f +15002,3626bpb0914,14,1,f +15002,88646,0,1,f +15002,970c00pb243,191,1,f +15002,973pr2318c01,191,1,f +15002,98374pr0001,70,1,f +15003,12041,15,1,f +15003,3437,72,2,f +15003,3437,28,1,f +15003,42025pb03,4,1,f +15003,4375,179,1,f +15003,45141,135,1,f +15003,47202apr0007,25,1,f +15003,51269,71,1,f +15003,54805,25,1,f +15003,59181,71,1,f +15003,59187,72,1,f +15003,59351,14,1,f +15003,61197,72,1,f +15003,6469,72,2,f +15003,64771,14,1,f +15003,64772,14,1,f +15003,89813,14,1,f +15005,3626bpx32,14,1,f +15005,4485,4,1,t +15005,4485,4,1,f +15005,970x001,4,1,f +15005,973px64c01,15,1,f +15007,3830,7,2,f +15007,3830,1,2,f +15007,3831,7,2,f +15007,3831,1,2,f +15008,260pb01,4,1,f +15008,260pb01,0,1,f +15008,27bc01,15,2,f +15008,3005,15,8,f +15008,3005,1,3,f +15008,3008a06,15,1,f +15008,3035a,15,2,f +15008,3036a,15,2,f +15008,3063b,47,2,f +15008,3063b,1,1,f +15008,3065,15,13,f +15008,3065,1,8,f +15008,33bc01,15,2,f +15008,713a,15,2,f +15008,723,80,2,f +15008,x1104,47,1,f +15011,2780,0,1,f +15011,2905,4,2,f +15011,32002,8,2,f +15011,32123b,7,6,f +15011,32310pb05,4,1,f +15011,32316,0,2,f +15011,3705,0,1,f +15011,3706,0,2,f +15011,3749,7,4,f +15011,4288,0,4,f +15011,6536,4,1,f +15011,6536,0,2,f +15011,6553,0,2,f +15011,6628,0,2,f +15011,78c02,179,1,f +15011,rb00167,0,4,t +15011,rb00167,0,2,f +15012,2441,0,1,f +15012,30027b,15,4,f +15012,30028,0,4,f +15012,3022,4,2,f +15012,3062b,47,1,f +15012,3070bpr0007,71,1,t +15012,3070bpr0007,71,1,f +15012,3623,4,2,f +15012,3626bpr0314,14,1,f +15012,3788,15,1,f +15012,3829c01,4,1,f +15012,3957a,15,1,f +15012,4449,0,1,f +15012,44674,15,1,f +15012,4485,1,1,f +15012,4599b,71,1,f +15012,47457,15,1,f +15012,48336,71,1,f +15012,4865a,4,1,f +15012,59900,33,1,f +15012,6141,33,1,f +15012,6141,33,1,t +15012,970c00,15,1,f +15012,973pr1239c01,15,1,f +15013,3003,15,1,f +15013,3021,14,1,f +15013,3022,15,1,f +15013,3022,4,1,f +15013,3062b,4,2,f +15013,3062b,15,1,f +15013,3298,0,1,f +15013,3660,0,1,f +15013,3794a,0,1,f +15015,10201,71,6,f +15015,11211,71,2,f +15015,11215,71,1,f +15015,11477,70,9,f +15015,13547,15,4,f +15015,14417,72,9,f +15015,14418,71,5,f +15015,14704,71,4,f +15015,14769pr1003,15,2,f +15015,15068,15,6,f +15015,15068,288,1,f +15015,15068,484,11,f +15015,22889,15,1,f +15015,2654,19,6,f +15015,2654,29,1,f +15015,3020,15,1,f +15015,3020,19,2,f +15015,3021,70,1,f +15015,3021,28,2,f +15015,3022,484,3,f +15015,3022,15,9,f +15015,3023,25,3,f +15015,3023,70,7,f +15015,3023,15,4,f +15015,3023,0,3,f +15015,3023,2,2,f +15015,3024,14,1,t +15015,3024,70,13,f +15015,3024,70,1,t +15015,3024,14,2,f +15015,30357,70,2,f +15015,3068b,70,2,f +15015,3068b,15,1,f +15015,3176,14,1,f +15015,3623,19,9,f +15015,3665,14,3,f +15015,3665,70,4,f +15015,3679,71,1,f +15015,3680,15,1,f +15015,3710,0,2,f +15015,3710,484,4,f +15015,43722,28,1,f +15015,43722,25,1,f +15015,43723,28,1,f +15015,43723,25,1,f +15015,44728,2,2,f +15015,47456,14,1,f +15015,48336,0,6,f +15015,4871,19,1,f +15015,4871,70,1,f +15015,51739,15,1,f +15015,54200,14,3,f +15015,54200,484,2,f +15015,54200,484,1,t +15015,54200,14,1,t +15015,57909b,72,1,f +15015,60897,0,6,f +15015,6091,70,2,f +15015,63868,72,4,f +15015,85984,0,1,f +15015,85984,28,1,f +15015,85984,2,1,f +15015,92013,0,1,f +15015,93604,70,1,f +15015,98138pr0008,15,2,f +15015,98138pr0008,15,1,t +15015,99206,71,1,f +15015,99206,0,2,f +15015,99780,15,8,f +15016,2780,0,6,f +15016,32062,0,6,f +15016,32073,0,1,f +15016,32123b,7,10,f +15016,32165,0,2,f +15016,32166,2,2,f +15016,32167,0,2,f +15016,32168,14,2,f +15016,32168,0,1,f +15016,32170,22,1,f +15016,32172,3,2,f +15016,32172,19,1,f +15016,32172,0,2,f +15016,32172,22,1,f +15016,32173,14,2,f +15016,32173,0,4,f +15016,32173,8,4,f +15016,32174,0,4,f +15016,32174,22,5,f +15016,32174,19,4,f +15016,32174,3,5,f +15016,32177,0,2,f +15016,3647,19,1,f +15016,3647,22,2,f +15016,3647,0,2,f +15016,3649,2,1,f +15016,3705,0,2,f +15016,3706,0,2,f +15016,3713,7,1,f +15016,4519,0,1,f +15016,4716,0,1,f +15016,6587,8,4,f +15016,x209,40,1,f +15016,x209pb08,14,1,f +15017,2496,0,2,f +15017,2655,7,2,f +15017,2877,4,2,f +15017,3020,0,1,f +15017,3021,0,1,f +15017,3039,47,1,f +15017,6141,46,1,f +15020,2446,8,1,f +15020,30088,8,1,f +15020,30090,33,1,t +15020,30090,33,1,f +15020,30091,8,1,f +15020,3626bpau,14,1,f +15020,59275,0,2,f +15020,970c00pb033,272,1,f +15020,973pb0071c02,272,1,f +15023,10247,72,2,f +15023,10247,0,4,f +15023,11203,72,1,f +15023,11477,71,5,f +15023,11538pr0002,71,1,f +15023,12825,72,6,f +15023,13349,72,3,f +15023,13971,71,4,f +15023,15068,72,1,f +15023,15303,36,3,f +15023,15400,72,2,f +15023,15462,28,1,f +15023,17774pr0001,71,1,f +15023,2357,72,4,f +15023,2412b,179,3,f +15023,2420,71,2,f +15023,2639,72,1,f +15023,2654,72,1,f +15023,2654,57,4,f +15023,2780,0,8,f +15023,2780,0,2,t +15023,2877,71,6,f +15023,3002,0,1,f +15023,3002,71,1,f +15023,3003,72,2,f +15023,3003,0,4,f +15023,3004,72,2,f +15023,3005,71,2,f +15023,3009,72,1,f +15023,3020,72,8,f +15023,3020,71,6,f +15023,3021,4,1,f +15023,3021,0,2,f +15023,3021,71,1,f +15023,3021,72,6,f +15023,3022,19,4,f +15023,3022,0,1,f +15023,3022,1,2,f +15023,3023,28,19,f +15023,3029,0,1,f +15023,3031,71,1,f +15023,3034,71,10,f +15023,3035,72,1,f +15023,30355,71,1,f +15023,30356,71,1,f +15023,30359b,0,2,f +15023,3038,71,4,f +15023,3039,72,2,f +15023,3040b,72,4,f +15023,3045,71,1,f +15023,30503,71,4,f +15023,30526,71,1,f +15023,30541,0,6,f +15023,3062b,19,2,f +15023,3068b,72,8,f +15023,3069b,70,1,f +15023,3069b,71,1,f +15023,3069b,46,2,f +15023,3069bpr0070,0,1,f +15023,3070b,71,1,t +15023,3070b,71,2,f +15023,32000,72,2,f +15023,32054,4,1,f +15023,32059,71,4,f +15023,32062,4,2,f +15023,32064b,4,9,f +15023,32073,71,2,f +15023,32123b,71,1,t +15023,32123b,71,2,f +15023,32184,0,2,f +15023,32316,1,1,f +15023,3245c,71,2,f +15023,3298,70,1,f +15023,3622,72,4,f +15023,3623,71,4,f +15023,3623,0,3,f +15023,3626cpr1445,78,1,f +15023,3626cpr1455,19,1,f +15023,3626cpr1461,78,1,f +15023,3660,72,2,f +15023,3665,71,3,f +15023,3666,71,2,f +15023,3666,72,4,f +15023,3666,0,6,f +15023,3700,19,9,f +15023,3701,71,2,f +15023,3710,72,7,f +15023,3710,71,3,f +15023,3713,71,4,f +15023,3713,71,1,t +15023,3794b,72,6,f +15023,3832,72,1,f +15023,3894,0,1,f +15023,3941,71,8,f +15023,3942c,71,4,f +15023,4006,0,1,f +15023,4081b,72,2,f +15023,41747,72,1,f +15023,41747,71,1,f +15023,41748,72,1,f +15023,41748,71,1,f +15023,41764,72,1,f +15023,41765,72,1,f +15023,41765,71,1,f +15023,41767,72,1,f +15023,41768,72,2,f +15023,41769,71,4,f +15023,41770,71,3,f +15023,42610,71,1,f +15023,4274,71,1,f +15023,4274,71,1,t +15023,43093,1,1,f +15023,43093,1,1,t +15023,43713,71,2,f +15023,44302a,0,6,f +15023,44676,72,6,f +15023,44728,0,4,f +15023,47397,71,4,f +15023,47398,71,4,f +15023,47457,72,1,f +15023,47753,72,2,f +15023,4865b,71,2,f +15023,4871,71,3,f +15023,48933,71,1,f +15023,50373,71,1,f +15023,52107,71,2,f +15023,54200,0,1,f +15023,54200,0,1,t +15023,54384,71,1,f +15023,59426,72,2,f +15023,59443,72,3,f +15023,60485,71,2,f +15023,60849,0,1,t +15023,60849,0,2,f +15023,61409,0,1,f +15023,6141,36,4,f +15023,6141,36,2,t +15023,6179,72,3,f +15023,6231,71,2,f +15023,6233,0,4,f +15023,62462,71,2,f +15023,62810,71,1,f +15023,63965,0,1,t +15023,63965,0,4,f +15023,6541,72,8,f +15023,6541,14,2,f +15023,6541,71,3,f +15023,6558,1,4,f +15023,6564,71,1,f +15023,6565,71,1,f +15023,6632,72,2,f +15023,6636,71,1,f +15023,75050stk01,9999,1,f +15023,85984,71,2,f +15023,87079,71,3,f +15023,87079,70,1,f +15023,87083,72,4,f +15023,87087,19,4,f +15023,90194,72,2,f +15023,92279,40,1,f +15023,92280,71,2,f +15023,92738,0,2,f +15023,93273,71,6,f +15023,93606,71,2,f +15023,96874,25,1,t +15023,970c00pr0478,4,1,f +15023,970c00pr0680,19,1,f +15023,970c00pr0696,71,1,f +15023,973pr2290c01,4,1,f +15023,973pr2700c01,28,1,f +15023,973pr2728c01,71,1,f +15023,99207,71,4,f +15023,99780,72,4,f +15023,99781,71,2,f +15024,18836pr0001a,297,1,f +15024,18959pr0001,15,1,f +15024,3626cpr1552,14,1,f +15024,88646,0,1,f +15024,93247,297,1,f +15024,970c00pr0760,14,1,f +15024,973pr2844c01,15,1,f +15025,3004,4,50,f +15026,12825,4,5,f +15026,2420,0,4,f +15026,2420,14,8,f +15026,2420,72,4,f +15026,2654,29,1,f +15026,2654pr0005,29,1,f +15026,30367b,15,33,f +15026,30367b,297,1,f +15026,3045,71,4,f +15026,3045,70,3,f +15026,3045,1,1,f +15026,3068b,29,1,f +15026,3068b,1,1,f +15026,3068b,71,2,f +15026,3068b,70,1,f +15026,3068bpr0202,29,1,f +15026,3665,4,1,f +15026,3899,14,1,f +15026,4150,15,1,f +15026,4150,29,2,f +15026,4733,72,4,f +15026,4733,0,4,f +15026,54200,4,1,t +15026,54200,4,5,f +15026,59900,14,7,f +15026,6141,14,1,t +15026,6141,14,1,f +15026,64776pat0001,0,1,f +15026,85861,15,16,f +15026,85861,15,1,t +15026,92585,4,1,f +15027,3034,7,2,f +15027,3034,8,1,f +15027,3245bp01,0,1,f +15027,3795,8,1,f +15027,4707c01,7,1,f +15027,70026,7,1,f +15027,73697,7,1,f +15027,766c01,7,1,f +15027,767,8,3,f +15028,3626bpr0950,14,1,f +15028,88646,0,1,f +15028,970c00pr0319,15,1,f +15028,973pr2031c01,0,1,f +15028,99246pr0001,0,1,f +15028,99252pr0001,0,1,f +15028,99257pr0001,4,1,f +15030,11303,28,1,f +15030,11477,27,6,f +15030,15068pr0009,27,1,f +15030,15100,0,1,f +15030,15712,71,2,f +15030,19220,0,1,f +15030,23443,0,4,f +15030,23444,0,1,f +15030,23447,182,2,f +15030,2412b,72,1,f +15030,2445,0,1,f +15030,2447,40,1,f +15030,2447,40,1,t +15030,2569,0,1,f +15030,2780,0,1,t +15030,2780,0,1,f +15030,3001,0,1,f +15030,3003,19,1,f +15030,3010,27,3,f +15030,30157,72,2,f +15030,3020,71,3,f +15030,3022,14,3,f +15030,30228,72,1,f +15030,3023,36,2,f +15030,3031,27,1,f +15030,3031,71,2,f +15030,30385,33,1,f +15030,30395,72,1,f +15030,30396,14,1,f +15030,3068b,1,2,f +15030,3069b,27,4,f +15030,3176,72,1,f +15030,3176,14,1,f +15030,32013,14,3,f +15030,32028,72,4,f +15030,32062,4,2,f +15030,32073,71,1,f +15030,32123b,14,1,t +15030,32123b,14,1,f +15030,32187,71,1,f +15030,3460,0,2,f +15030,3626cpr1580,14,1,f +15030,3626cpr1662,14,1,f +15030,3660,27,6,f +15030,3665,27,2,f +15030,3666,72,2,f +15030,3666,27,1,f +15030,3700,71,1,f +15030,3710,0,4,f +15030,3829c01,1,1,f +15030,3833,15,1,f +15030,3838,14,1,f +15030,3958,27,1,f +15030,41532,0,1,f +15030,4287,72,2,f +15030,43093,1,2,f +15030,44728,0,2,f +15030,4479,0,1,f +15030,4716,71,1,f +15030,48336,0,4,f +15030,48729b,0,4,f +15030,48729b,0,1,t +15030,52031,27,1,f +15030,54200,27,1,t +15030,54200,27,2,f +15030,55981,71,4,f +15030,56891,0,4,f +15030,58176,182,2,f +15030,59443,14,2,f +15030,59900,71,1,f +15030,60219,72,1,f +15030,60475b,27,2,f +15030,60481,27,2,f +15030,60897,27,4,f +15030,6111,72,2,f +15030,61252,72,4,f +15030,6140,0,1,f +15030,6158,72,1,f +15030,74698,0,1,f +15030,85984,72,2,f +15030,87079,0,1,f +15030,87552,41,2,f +15030,87994,0,1,t +15030,87994,0,4,f +15030,92280,0,4,f +15030,92583,41,1,f +15030,93274,72,1,f +15030,970c00,379,1,f +15030,970c00pr1057,326,1,f +15030,973pr3388c01,326,1,f +15030,973pr3389c01,326,1,f +15030,98138,47,1,t +15030,98138,46,4,f +15030,98138,47,4,f +15030,98138,46,1,t +15030,98282,72,4,f +15030,99780,0,2,f +15031,2362b,15,1,f +15031,2412b,72,7,f +15031,2431,15,1,f +15031,2436,15,4,f +15031,2555,72,8,f +15031,2654,15,1,f +15031,2714a,0,6,f +15031,2780,0,1,t +15031,2780,0,4,f +15031,30031,0,1,f +15031,3004,1,3,f +15031,3005,1,2,f +15031,3009,1,1,f +15031,3010,15,1,f +15031,30136,72,3,f +15031,3020,72,1,f +15031,3021,15,2,f +15031,3022,1,5,f +15031,3023,15,1,f +15031,3023,1,4,f +15031,3032,1,2,f +15031,3034,15,1,f +15031,3036,15,1,f +15031,30363,1,2,f +15031,30377,71,1,f +15031,30377,71,1,t +15031,30384,40,1,f +15031,3039,15,1,f +15031,30540,15,4,f +15031,30541,0,2,f +15031,30552,0,2,f +15031,30602,1,2,f +15031,3062b,36,2,f +15031,3062b,4,2,f +15031,3062b,42,13,f +15031,3068b,15,2,f +15031,3069b,15,2,f +15031,32001,1,2,f +15031,32018,15,2,f +15031,32054,71,4,f +15031,32062,4,4,f +15031,32064a,15,2,f +15031,32072,0,1,f +15031,32270,0,2,f +15031,32278,72,4,f +15031,32291,72,2,f +15031,32316,72,2,f +15031,32474,27,2,f +15031,32523,15,6,f +15031,32526,72,6,f +15031,32532,15,1,f +15031,3623,72,4,f +15031,3626bpr0463,14,1,f +15031,3626bpr0487,14,1,f +15031,3650c,71,1,f +15031,3660,1,2,f +15031,3665,1,2,f +15031,3666,15,1,f +15031,3701,15,1,f +15031,3706,0,1,f +15031,3707,0,2,f +15031,3709,15,2,f +15031,3710,15,3,f +15031,3713,71,13,f +15031,3713,71,1,t +15031,3737,0,2,f +15031,3794a,15,2,f +15031,3795,1,2,f +15031,3839b,15,2,f +15031,3894,1,2,f +15031,3941,0,1,f +15031,40239,71,1,f +15031,4032a,4,1,f +15031,4032a,15,1,f +15031,4070,15,1,f +15031,4070,1,2,f +15031,4081b,1,1,f +15031,4085c,15,1,f +15031,4150,15,2,f +15031,4150,0,1,f +15031,41747,1,3,f +15031,41748,1,3,f +15031,4185,27,2,f +15031,42023,15,2,f +15031,42060,1,3,f +15031,42061,1,3,f +15031,4285b,15,2,f +15031,4287,15,2,f +15031,43093,1,5,f +15031,43337,15,2,f +15031,4349,0,1,f +15031,44661,15,2,f +15031,44728,72,1,f +15031,44772,0,1,f +15031,4519,71,1,f +15031,45677,1,1,f +15031,45705,40,1,f +15031,4588,72,2,f +15031,4697b,71,1,t +15031,4697b,71,2,f +15031,47406,15,1,f +15031,48336,1,2,f +15031,48729a,0,2,f +15031,50923,72,4,f +15031,53982,85,1,f +15031,53989,15,2,f +15031,53992,0,2,f +15031,54120,0,1,f +15031,54200,15,5,f +15031,55013,72,1,f +15031,56145,0,6,f +15031,57910,72,4,f +15031,58176,36,2,f +15031,59426,72,7,f +15031,59443,0,2,f +15031,60470a,15,1,f +15031,60474,15,2,f +15031,61409,72,4,f +15031,61409,27,2,f +15031,6141,34,1,t +15031,6141,72,1,t +15031,6141,36,1,t +15031,6141,34,4,f +15031,6141,27,1,t +15031,6141,72,6,f +15031,6141,27,2,f +15031,6141,36,3,f +15031,61485,0,1,f +15031,63965,0,9,f +15031,6558,1,26,f +15031,6589,19,2,f +15031,6629,72,4,f +15031,6636,15,3,f +15031,8118stk01,9999,1,t +15031,970c00,15,1,f +15031,970x199,25,1,f +15031,973pr1291c01,15,1,f +15031,973pr1361c01,25,1,f +15032,tray01,4,1,f +15034,2357,71,8,f +15034,2420,71,3,f +15034,2907,71,1,f +15034,3003,0,2,f +15034,3004,71,4,f +15034,3006,0,1,f +15034,3010,71,4,f +15034,3020,0,1,f +15034,3020,71,3,f +15034,3022,0,1,f +15034,3022,71,1,f +15034,3023,71,2,f +15034,3023,0,4,f +15034,3024,0,1,f +15034,3024,71,2,f +15034,3039,71,3,f +15034,3040b,71,1,f +15034,3040b,0,1,f +15034,3045,71,4,f +15034,3048c,71,4,f +15034,32062,0,2,f +15034,3660,0,2,f +15034,3666,71,4,f +15034,3710,71,5,f +15034,3941,71,1,f +15034,61903,71,1,f +15035,3626apr0001,14,4,f +15035,3844,0,1,f +15035,3844,8,2,f +15035,3846p45,7,2,f +15035,3847,8,2,f +15035,3876,8,1,f +15035,4497,6,1,f +15035,4498,6,1,f +15035,4499,6,1,f +15035,4503,0,1,f +15035,87692,4,1,f +15035,87693,4,1,t +15035,87694,4,1,t +15035,970c00,0,2,f +15035,970x026,1,2,f +15035,973p40c01,1,1,f +15035,973p40c03,4,1,f +15035,973p42c01,4,1,f +15035,973p43c01,1,1,f +15036,3004,15,1,f +15036,3004,7,2,f +15036,3004p90,15,3,f +15036,3005,7,2,f +15036,3005,15,4,f +15036,3010,15,4,f +15036,3010ap04,15,4,f +15036,3020,7,7,f +15036,3021,7,4,f +15036,3022,7,7,f +15036,3022,15,1,f +15036,3023,15,4,f +15036,3023,7,4,f +15036,3024,36,14,f +15036,3024,14,2,f +15036,3024,7,2,f +15036,3029,7,2,f +15036,3032,7,1,f +15036,3032,15,4,f +15036,3032,33,1,f +15036,3034,15,1,f +15036,3034,7,3,f +15036,3039,7,1,f +15036,3039p23,7,1,f +15036,3039p34,7,1,f +15036,3039p34,15,2,f +15036,3062b,34,3,f +15036,3062b,36,5,f +15036,3069b,15,4,f +15036,3298,15,2,f +15036,3298p90,15,1,f +15036,3298p90,7,1,f +15036,3460,15,1,f +15036,3460,7,6,f +15036,3479,15,7,f +15036,3612,7,8,f +15036,3613,7,1,f +15036,3622,15,4,f +15036,3623,7,6,f +15036,3623,14,2,f +15036,3626apr0001,14,2,f +15036,3665,7,2,f +15036,3666,7,6,f +15036,3666,15,2,f +15036,3679,7,1,f +15036,3680,7,1,f +15036,3702,7,2,f +15036,3707,0,3,f +15036,3710,15,6,f +15036,3710,7,11,f +15036,3713,7,6,f +15036,3747a,7,4,f +15036,3795,15,1,f +15036,3795,7,1,f +15036,3829c01,15,1,f +15036,3829c01,7,2,f +15036,3830,15,2,f +15036,3830,7,2,f +15036,3831,15,2,f +15036,3831,7,2,f +15036,3832,7,1,f +15036,3837,8,1,f +15036,3838,14,1,f +15036,3838,4,1,f +15036,3839a,7,1,f +15036,3839b,0,3,f +15036,3839b,7,2,f +15036,3842a,4,1,f +15036,3842a,14,1,f +15036,3853,15,2,f +15036,3856,15,4,f +15036,3900,0,1,f +15036,3933a,7,1,f +15036,3934a,7,1,f +15036,3935,7,4,f +15036,3936,7,4,f +15036,3937,15,2,f +15036,3937,7,1,f +15036,3938,7,1,f +15036,3938,15,2,f +15036,3939,33,1,f +15036,3940b,0,7,f +15036,3941,15,2,f +15036,3941,7,3,f +15036,3942a,0,2,f +15036,3942a,15,2,f +15036,3942a,7,3,f +15036,3943b,0,2,f +15036,3956,7,1,f +15036,3956,15,4,f +15036,3957a,7,3,f +15036,3957a,0,3,f +15036,3958,7,1,f +15036,3959,7,2,f +15036,3959,0,2,f +15036,3960,7,2,f +15036,3962a,0,1,f +15036,3963,0,2,f +15036,4006,0,1,f +15036,4032a,0,3,f +15036,4070,7,4,f +15036,4081a,15,4,f +15036,4081a,7,4,f +15036,4085a,15,2,f +15036,4089,7,1,f +15036,4175,7,4,f +15036,4175,0,2,f +15036,4220,7,1,f +15036,4221,7,2,f +15036,4229,7,2,f +15036,4285a,7,1,f +15036,4288,0,6,f +15036,4360,0,1,f +15036,792c02,7,2,f +15036,970c00,14,1,f +15036,970c00,4,1,f +15036,973p90c02,4,1,f +15036,973p90c04,14,1,f +15037,468c01,1,1,f +15039,2431,0,3,f +15039,2445,15,3,f +15039,2540,19,3,f +15039,3003,14,10,f +15039,3003,27,10,f +15039,3003,4,10,f +15039,3003,25,10,f +15039,30136,70,9,f +15039,30165,70,9,f +15039,3021,70,3,f +15039,3023,70,3,f +15039,3024,0,3,f +15039,3062b,15,1,f +15039,3068b,70,1,f +15039,3068bpb0383,73,1,f +15039,3069b,4,2,f +15039,3069b,27,2,f +15039,3069b,25,2,f +15039,3069b,14,2,f +15039,3070b,70,3,f +15039,3070b,70,1,t +15039,33122,42,1,f +15039,3471pat0001,10,1,f +15039,3659,70,6,f +15039,3795,0,3,f +15039,4081b,19,6,f +15039,48336,0,3,f +15039,54200,0,3,f +15039,54200,0,1,t +15039,54200,70,1,t +15039,54200,70,3,f +15039,6019,0,6,f +15039,60478,0,3,f +15039,64776pat0001,0,1,f +15039,85861,15,6,f +15039,85861,15,1,t +15039,87580,70,6,f +15039,92585,4,1,f +15041,16542,7,1,f +15041,2342,4,1,f +15041,2342,0,1,f +15041,2348b,41,2,f +15041,2349a,15,2,f +15041,2412b,14,1,f +15041,2421,0,1,f +15041,2432,0,2,f +15041,2433,0,1,f +15041,2435,2,1,f +15041,2436,15,1,f +15041,2439,8,1,f +15041,2446,4,1,f +15041,2446,0,1,f +15041,2447,41,2,f +15041,2453a,1,6,f +15041,2454a,1,2,f +15041,2460,1,1,f +15041,2479,0,1,f +15041,2483,41,1,f +15041,2486,14,3,f +15041,2493b,15,3,f +15041,2494,47,3,f +15041,298c02,15,2,f +15041,298c02,0,2,f +15041,298c05,0,2,f +15041,3001,4,2,f +15041,3004,15,2,f +15041,3004,1,5,f +15041,3005,15,6,f +15041,3005,1,6,f +15041,3008,1,1,f +15041,3009,1,6,f +15041,3010,1,8,f +15041,3020,7,1,f +15041,3020,15,5,f +15041,3020,0,2,f +15041,3021,0,3,f +15041,3022,7,1,f +15041,3022,15,1,f +15041,3022,0,1,f +15041,3023,0,3,f +15041,3023,14,1,f +15041,3023,15,8,f +15041,3023,1,3,f +15041,3024,33,4,f +15041,3024,46,8,f +15041,3024,1,3,f +15041,3024,36,12,f +15041,3024,15,4,f +15041,3024,7,2,f +15041,3033,1,1,f +15041,3034,4,1,f +15041,3036,15,2,f +15041,3039p23,15,1,f +15041,3040b,1,16,f +15041,3040p02,0,1,f +15041,3062b,4,1,f +15041,3068bp66,15,1,f +15041,3069b,15,2,f +15041,3070b,0,1,f +15041,3070b,34,2,f +15041,3070b,36,1,f +15041,3070b,15,4,f +15041,3139,0,2,f +15041,3176,1,1,f +15041,3297,15,1,f +15041,3460,7,2,f +15041,3460,15,1,f +15041,3596pb19,15,1,f +15041,3622,1,4,f +15041,3623,15,7,f +15041,3623,1,3,f +15041,3626apr0001,14,4,f +15041,3641,0,4,f +15041,3660,1,7,f +15041,3665,1,5,f +15041,3666,1,4,f +15041,3666,7,2,f +15041,3679,7,1,f +15041,3680,0,1,f +15041,3710,1,2,f +15041,3710,15,8,f +15041,3710,7,1,f +15041,3730,0,2,f +15041,3731,4,1,f +15041,3788,15,4,f +15041,3794a,7,1,f +15041,3794a,15,4,f +15041,3794a,4,2,f +15041,3795,0,2,f +15041,3795,7,2,f +15041,3795,15,2,f +15041,3821,1,2,f +15041,3822,1,2,f +15041,3823,41,2,f +15041,3829c01,7,2,f +15041,3838,15,1,f +15041,3937,7,1,f +15041,3938,7,1,f +15041,3957a,7,2,f +15041,3959,4,1,f +15041,3963,15,1,f +15041,4079,14,1,f +15041,4079,7,1,f +15041,4081b,15,3,f +15041,4081b,14,1,f +15041,4083,1,1,f +15041,4084,0,4,f +15041,4085b,7,1,f +15041,4085b,1,1,f +15041,4162,7,2,f +15041,4208,0,2,f +15041,4209pb01,15,2,f +15041,4212b,15,1,f +15041,4214,15,2,f +15041,4215apx3,15,1,f +15041,4286,15,2,f +15041,4287,15,1,f +15041,4315,15,1,f +15041,4447,15,2,f +15041,4448,47,6,f +15041,4477,1,3,f +15041,4485,4,3,f +15041,4488,15,1,f +15041,4589,4,1,f +15041,4599a,4,1,f +15041,4600,0,5,f +15041,4623,1,2,f +15041,4624,15,8,f +15041,4624,7,2,f +15041,4740,7,1,f +15041,4740,8,1,f +15041,4741,15,2,f +15041,4855,7,1,f +15041,4856a,15,1,f +15041,4858,15,1,f +15041,4859,1,1,f +15041,4859,7,1,f +15041,4864a,41,2,f +15041,4865a,1,1,f +15041,4871,7,3,f +15041,4873,7,2,f +15041,56823,0,2,f +15041,6100p02,7,1,f +15041,6141,0,2,f +15041,6141,36,8,f +15041,6141,47,2,f +15041,73194c01,15,1,f +15041,970c00,4,3,f +15041,970x026,14,1,f +15041,973c11,0,1,f +15041,973p13c01,4,3,f +15042,10188stk01,9999,1,t +15042,14210,0,1,t +15042,14210,0,1,f +15042,2339,0,2,f +15042,2357,71,29,f +15042,2357,72,29,f +15042,2362b,71,19,f +15042,2412b,0,18,f +15042,2412b,36,7,f +15042,2412b,72,30,f +15042,2420,72,28,f +15042,2431,72,25,f +15042,2431pr0017,14,2,f +15042,2432,71,1,f +15042,2436,0,6,f +15042,2444,0,2,f +15042,2445,0,2,f +15042,2445,71,13,f +15042,2449,72,4,f +15042,2450,72,4,f +15042,2454a,71,12,f +15042,2454a,0,7,f +15042,2456,71,28,f +15042,2456,72,22,f +15042,2458,72,4,f +15042,2462,71,4,f +15042,2465,71,2,f +15042,2489,72,4,f +15042,2496,0,2,f +15042,2512,71,1,f +15042,2540,72,14,f +15042,2555,0,1,f +15042,2555,72,23,f +15042,2569,42,8,f +15042,2570,135,1,f +15042,2585,71,1,f +15042,2654,72,4,f +15042,2654,19,14,f +15042,2655,71,2,f +15042,2780,0,16,f +15042,2780,0,2,t +15042,2817,0,5,f +15042,2877,72,28,f +15042,2877,0,9,f +15042,298c02,4,1,t +15042,298c02,71,2,t +15042,298c02,71,2,f +15042,298c02,4,4,f +15042,3001,71,45,f +15042,3001,72,22,f +15042,3002,72,9,f +15042,3002,71,52,f +15042,3003,72,25,f +15042,3003,71,43,f +15042,30033,0,2,f +15042,3004,70,8,f +15042,3004,72,69,f +15042,3004,0,38,f +15042,3004,71,86,f +15042,3004,320,3,f +15042,3005,0,28,f +15042,3005,70,12,f +15042,3005,72,33,f +15042,3005,320,1,f +15042,30055,0,4,f +15042,3007,71,25,f +15042,3008,71,12,f +15042,3008,0,5,f +15042,3009,71,18,f +15042,3009,72,5,f +15042,3009,0,5,f +15042,30099,0,2,f +15042,3010,71,29,f +15042,3010,72,36,f +15042,3010,15,7,f +15042,3010,0,7,f +15042,30134,0,2,f +15042,30136,70,8,f +15042,30145,71,11,f +15042,3020,0,3,f +15042,3020,1,2,f +15042,3020,71,76,f +15042,3020,72,74,f +15042,3021,72,58,f +15042,3021,71,72,f +15042,3021,0,5,f +15042,3022,71,63,f +15042,3022,72,37,f +15042,3022,0,1,f +15042,3023,320,8,f +15042,3023,71,46,f +15042,3023,72,60,f +15042,3023,0,26,f +15042,3024,72,16,f +15042,3024,72,5,t +15042,3029,71,1,f +15042,3030,0,3,f +15042,3030,71,33,f +15042,30303,71,1,f +15042,3031,72,3,f +15042,3031,0,1,f +15042,3031,71,9,f +15042,3032,0,2,f +15042,3032,71,1,f +15042,3032,72,3,f +15042,3033,71,4,f +15042,3034,71,39,f +15042,3034,0,4,f +15042,3035,71,11,f +15042,3035,72,7,f +15042,3035,0,3,f +15042,30355,0,3,f +15042,30355,71,19,f +15042,30356,71,20,f +15042,30356,0,2,f +15042,30357,72,4,f +15042,3036,0,1,f +15042,3036,71,3,f +15042,30361c,288,2,f +15042,30361dps1,15,1,f +15042,30361dps5,0,1,f +15042,30362,15,2,f +15042,30362,0,2,f +15042,30366ps1,40,1,f +15042,30367b,0,1,f +15042,30367cpr0003,0,1,f +15042,30367cpr0006,71,1,f +15042,30368,0,1,f +15042,3037,0,2,f +15042,30374,41,1,f +15042,30374,42,1,f +15042,30374,36,1,f +15042,30374,0,3,f +15042,30375,15,1,f +15042,30375,72,2,f +15042,30376,15,1,f +15042,30377,15,2,f +15042,30377,0,2,t +15042,30377,15,1,t +15042,30377,0,5,f +15042,30381,70,1,f +15042,30381,0,1,f +15042,30383,72,2,f +15042,30386,71,16,f +15042,3039,0,7,f +15042,3039,71,31,f +15042,3039pr0014,0,6,f +15042,30408pr0002,15,4,f +15042,30409,70,1,f +15042,3040b,0,30,f +15042,3040b,71,19,f +15042,3040b,72,24,f +15042,3040bpr0003,71,2,f +15042,30414,72,22,f +15042,30480,297,1,f +15042,30480,0,1,f +15042,30503,0,3,f +15042,30503,71,13,f +15042,30504,0,1,f +15042,30504,71,7,f +15042,30561,4,2,f +15042,30562,72,11,f +15042,30565,72,7,f +15042,30602,14,2,f +15042,3062b,0,8,f +15042,3062b,72,14,f +15042,3062b,272,7,f +15042,3062b,70,3,f +15042,3062b,320,14,f +15042,3062b,42,28,f +15042,3063b,71,8,f +15042,3063b,0,4,f +15042,3068b,72,28,f +15042,3068b,272,3,f +15042,3069b,72,16,f +15042,3069b,40,18,f +15042,3069bpr0086,71,11,f +15042,3070b,0,4,t +15042,3070b,0,12,f +15042,3070bpr0007,71,1,t +15042,3070bpr0007,71,1,f +15042,32000,72,12,f +15042,32001,0,4,f +15042,32002,72,2,t +15042,32002,72,8,f +15042,32009,0,2,f +15042,32012,72,1,f +15042,32013,320,3,f +15042,32014,0,4,f +15042,32015,0,6,f +15042,32034,0,3,f +15042,32039,0,6,f +15042,32054,71,4,f +15042,32062,4,16,f +15042,32064b,72,14,f +15042,32073,71,6,f +15042,32123b,71,38,f +15042,32123b,71,5,t +15042,32184,0,4,f +15042,32187,71,4,f +15042,32200,0,3,f +15042,32250,0,2,f +15042,32270,0,6,f +15042,32316,14,2,f +15042,32316,0,2,f +15042,32449,0,3,f +15042,32523,1,2,f +15042,32523,72,2,f +15042,32525,0,1,f +15042,32530,72,3,f +15042,3297,71,5,f +15042,3298,71,5,f +15042,33299a,71,1,f +15042,3456,71,16,f +15042,3456,0,2,f +15042,3460,0,4,f +15042,3460,320,7,f +15042,3460,72,2,f +15042,3460,71,12,f +15042,3622,0,22,f +15042,3622,72,55,f +15042,3622,71,14,f +15042,3623,0,6,f +15042,3623,72,25,f +15042,3623,71,8,f +15042,3626b,0,4,f +15042,3626bpr0263,78,1,f +15042,3626bpr0342,78,2,f +15042,3626bpr0378,78,1,f +15042,3626bpr0402,71,1,f +15042,3626bpr0455,78,1,f +15042,3626bpr0513,78,2,f +15042,3626bpr0552,71,1,f +15042,3626bpr0635,78,3,f +15042,3647,72,3,t +15042,3647,72,5,f +15042,3648b,72,1,f +15042,3650c,71,1,f +15042,3660,71,37,f +15042,3665,0,28,f +15042,3665,72,22,f +15042,3665,71,13,f +15042,3666,72,2,f +15042,3666,0,10,f +15042,3666,71,13,f +15042,3666,320,3,f +15042,3673,71,2,t +15042,3673,71,4,f +15042,3678b,71,13,f +15042,3679,71,11,f +15042,3680,0,11,f +15042,3700,71,7,f +15042,3700,70,3,f +15042,3701,70,3,f +15042,3705,0,11,f +15042,3706,0,2,f +15042,3707,0,2,f +15042,3708,0,2,f +15042,3709,15,8,f +15042,3710,15,2,f +15042,3710,71,22,f +15042,3710,0,4,f +15042,3710,72,32,f +15042,3713,4,9,f +15042,3713,4,3,t +15042,3737,0,1,f +15042,3738,72,5,f +15042,3743,15,3,f +15042,3747b,71,7,f +15042,3749,19,2,f +15042,3794a,0,24,f +15042,3794a,320,5,f +15042,3795,71,38,f +15042,3795,0,3,f +15042,3795,72,3,f +15042,3830,70,4,f +15042,3831,70,4,f +15042,3832,0,4,f +15042,3832,70,2,f +15042,3901,71,1,f +15042,3901,19,1,f +15042,3901,70,2,f +15042,3937,72,22,f +15042,3938,15,1,f +15042,3941,41,4,f +15042,3941,272,6,f +15042,3941,4,2,f +15042,3941,72,6,f +15042,3942c,71,1,f +15042,3943b,72,1,f +15042,3957a,0,2,f +15042,3957a,71,3,f +15042,3960pr13,40,1,f +15042,3961,72,1,f +15042,4032a,4,3,f +15042,4032a,72,12,f +15042,4032a,0,7,f +15042,4032b,1,9,f +15042,40490,72,2,f +15042,4070,72,2,f +15042,4070,320,45,f +15042,4079,0,11,f +15042,4081b,72,2,f +15042,4081b,4,1,f +15042,4150,4,3,f +15042,4150,71,1,f +15042,4151b,72,2,f +15042,41539,71,10,f +15042,41539,0,1,f +15042,4162,71,2,f +15042,4162,72,6,f +15042,41677,71,1,f +15042,41678,72,5,f +15042,4175,0,1,f +15042,4215b,40,4,f +15042,4274,1,3,t +15042,4274,1,17,f +15042,4286,70,2,f +15042,4287,70,2,f +15042,43093,1,9,f +15042,43337,72,5,f +15042,4349,0,1,f +15042,43722,72,16,f +15042,43857,0,2,f +15042,43892,19,1,f +15042,43898,72,2,f +15042,43898,70,1,f +15042,43898,0,2,f +15042,44294,71,1,f +15042,44301a,72,2,f +15042,44302a,72,4,f +15042,44375a,71,1,f +15042,44568,71,4,f +15042,4460b,71,4,f +15042,4460b,0,2,f +15042,44728,4,2,f +15042,4477,0,4,f +15042,4477,70,5,f +15042,4477,71,9,f +15042,4477,72,2,f +15042,4497,0,2,f +15042,4519,71,5,f +15042,4530,19,2,f +15042,4595,0,2,f +15042,4716,71,1,f +15042,4733,72,2,f +15042,47397,0,1,f +15042,47398,0,1,f +15042,4740,0,2,f +15042,4740,72,2,f +15042,4742,72,3,f +15042,47905,0,1,f +15042,48183,72,2,f +15042,4854,0,1,f +15042,4854,72,1,f +15042,4864b,71,2,f +15042,4865b,0,6,f +15042,48729a,0,2,t +15042,48729a,0,7,f +15042,48989,71,1,f +15042,50231,4,2,f +15042,50231,0,2,f +15042,50231,70,1,f +15042,50304,71,8,f +15042,50305,71,8,f +15042,50451,15,1,f +15042,50950,14,1,f +15042,50990a,71,2,f +15042,51739,72,8,f +15042,51739,71,8,f +15042,52107,0,8,f +15042,53586,135,1,f +15042,53989,0,3,f +15042,54200,72,23,f +15042,54200,0,27,f +15042,54200,33,2,t +15042,54200,72,4,t +15042,54200,33,16,f +15042,54200,0,7,t +15042,55013,72,4,f +15042,55236,70,5,f +15042,55295,0,1,f +15042,55296,0,1,f +15042,55297,0,1,f +15042,55298,0,1,f +15042,55299,0,1,f +15042,55300,0,1,f +15042,56823c100,0,2,f +15042,57028c01,71,1,f +15042,57796,72,1,f +15042,57899,0,5,f +15042,57900,0,2,f +15042,58247,0,5,f +15042,59233pat0001,41,2,f +15042,59349,0,3,f +15042,59426,72,2,f +15042,59443,71,5,f +15042,59900,15,1,f +15042,6019,0,17,f +15042,6020,0,2,f +15042,60470a,71,1,f +15042,60471,71,8,f +15042,60474,0,13,f +15042,60477,0,4,f +15042,60478,71,2,f +15042,6111,71,2,f +15042,6111,0,1,f +15042,6112,0,2,f +15042,6112,70,8,f +15042,6134,0,21,f +15042,6140,71,2,f +15042,6141,4,3,t +15042,6141,42,1,t +15042,6141,80,2,f +15042,6141,0,5,t +15042,6141,57,29,f +15042,6141,47,5,t +15042,6141,42,4,f +15042,6141,15,2,t +15042,6141,57,6,t +15042,6141,80,1,t +15042,6141,15,5,f +15042,6141,4,4,f +15042,6141,36,1,t +15042,6141,47,36,f +15042,6141,36,1,f +15042,6141,0,18,f +15042,61482,71,1,f +15042,61482,71,1,t +15042,61485,0,5,f +15042,6177,0,2,f +15042,61780,72,3,f +15042,6179,0,3,f +15042,6182,71,2,f +15042,6222,72,3,f +15042,6231,0,2,f +15042,6233,71,2,f +15042,62462,71,8,f +15042,6259,72,2,f +15042,63965,71,8,f +15042,64567,383,3,f +15042,64567,71,4,f +15042,6536,14,1,f +15042,6541,4,6,f +15042,6541,72,5,f +15042,6558,1,1,f +15042,6587,72,7,f +15042,6588,47,1,f +15042,6636,72,9,f +15042,6636,71,3,f +15042,6636,70,17,f +15042,6636,15,6,f +15042,73590c02a,0,1,f +15042,758c02,71,1,f +15042,78c02,179,1,t +15042,78c02,179,3,f +15042,78c06,179,3,f +15042,970c00,70,1,f +15042,970c00,0,6,f +15042,970c00,15,1,f +15042,970c00,72,1,f +15042,970c00,19,1,f +15042,970c00,297,1,f +15042,970c00,4,2,f +15042,970c00pr0033,70,1,f +15042,970c00pr0113,19,1,f +15042,970x026,15,4,f +15042,973c32,70,1,f +15042,973pr0510c01,15,1,f +15042,973pr0520c01,15,4,f +15042,973pr0530c01,19,1,f +15042,973pr1264c01,4,2,f +15042,973pr1267c01,72,1,f +15042,973pr1331c01,0,1,f +15042,973pr1332c01,15,1,f +15042,973pr1339c01,297,1,f +15042,973pr1418c01,0,1,f +15042,973pr1420c01,0,2,f +15042,973pr1422c01,0,1,f +15042,973pr1437c01,0,1,f +15042,973pr1469c01,0,1,f +15043,11203,72,3,f +15043,11437,4,1,f +15043,11438,4,1,f +15043,11691pr0002,0,1,f +15043,2412b,297,1,f +15043,2412b,71,3,f +15043,2444,0,2,f +15043,2570,148,1,f +15043,2817,4,1,f +15043,2921,0,2,f +15043,3001,0,1,f +15043,3003,28,2,f +15043,3020,4,3,f +15043,3020,72,6,f +15043,3021,288,7,f +15043,3022,71,1,f +15043,3023,28,12,f +15043,3030,70,1,f +15043,3034,72,3,f +15043,3037,0,1,f +15043,30374,71,1,f +15043,30383,71,2,f +15043,3044c,4,1,f +15043,3048c,297,2,f +15043,30553,72,2,f +15043,3070b,0,1,f +15043,3070b,0,1,t +15043,32062,4,1,f +15043,32064a,0,14,f +15043,32192,0,2,f +15043,3626cpr1084,0,1,f +15043,3626cpr1085,0,1,f +15043,3626cpr1118,297,1,f +15043,3701,70,2,f +15043,3706,0,3,f +15043,3710,72,3,f +15043,3713,4,2,f +15043,3713,4,1,t +15043,3747b,0,2,f +15043,4032a,1,2,f +15043,4150,297,4,f +15043,4150,4,1,f +15043,41677,71,2,f +15043,41769,288,4,f +15043,41770,288,4,f +15043,41879a,0,1,f +15043,43093,1,2,f +15043,43887,0,1,f +15043,4460b,0,2,f +15043,44674,15,2,f +15043,4495b,288,2,f +15043,4497,148,1,f +15043,4498,4,1,f +15043,47455,72,2,f +15043,47457,297,8,f +15043,47905,0,1,f +15043,48169,72,2,f +15043,48170,72,2,f +15043,48336,297,2,f +15043,48496,0,2,f +15043,4865b,4,2,f +15043,48933,297,2,f +15043,50950,288,4,f +15043,50950,297,8,f +15043,51739,288,2,f +15043,53451,0,6,f +15043,53451,0,1,t +15043,53562,0,2,f +15043,54200,0,1,f +15043,54200,0,1,t +15043,54200,297,1,t +15043,54200,297,2,f +15043,54821,10,1,f +15043,57908,72,1,f +15043,60897,4,4,f +15043,6091,0,4,f +15043,6141,34,2,t +15043,6141,34,8,f +15043,63868,0,4,f +15043,63965,297,2,f +15043,64275,179,2,f +15043,64276,0,1,f +15043,64567,0,1,f +15043,64567,0,1,t +15043,64728,4,1,f +15043,6587,28,2,f +15043,73983,19,4,f +15043,90194,15,1,f +15043,92013,0,3,f +15043,92593,71,2,f +15043,92692,0,2,f +15043,93055,297,1,t +15043,93055,297,1,f +15043,93059,4,1,f +15043,93071pr0003,297,1,f +15043,93072pr0005,297,1,f +15043,93274,72,4,f +15043,970c00pr0425,0,1,f +15043,970c00pr0428,297,1,f +15043,973pr2187c01,72,1,f +15043,973pr2192c01,0,1,f +15043,973pr2222c01,297,1,f +15043,98128,148,1,f +15043,98132,297,2,f +15043,98133,297,1,f +15043,98135,297,6,f +15043,98137,297,2,f +15043,98138,297,6,f +15043,98138,297,1,t +15043,98313,297,8,f +15044,2586p4f,7,2,f +15044,30103,0,4,f +15044,30105,0,1,f +15044,30106,47,1,f +15044,3626bpr0895,15,1,f +15044,3844,0,1,f +15044,3846p4f,7,2,f +15044,3847,8,1,f +15044,3849,6,1,f +15044,3896,0,1,f +15044,3957a,36,1,f +15044,4332,6,1,f +15044,4495b,14,1,f +15044,4495b,4,1,f +15044,4497,6,1,f +15044,4498,6,1,f +15044,4499,6,1,f +15044,59,383,1,f +15044,6122,0,1,f +15044,6123,8,1,f +15044,6124,36,1,f +15044,6126a,57,2,f +15044,6260,15,1,f +15044,6265,15,2,f +15044,6266,15,2,f +15044,87692,4,1,f +15044,87693,4,1,f +15044,87694,4,1,f +15045,11476,71,1,f +15045,14704,71,2,f +15045,15571,4,2,f +15045,15712,297,2,f +15045,18394pat0001,36,1,f +15045,18649,71,1,f +15045,19857pat0002,0,1,f +15045,22890,72,2,f +15045,2540,4,2,f +15045,3020,4,1,f +15045,3022,4,1,f +15045,3040b,4,2,f +15045,30552,71,1,f +15045,3626cpr1365,14,1,f +15045,47905,4,1,f +15045,4871,14,1,f +15045,49668,4,2,f +15045,54200,320,1,t +15045,54200,320,1,f +15045,54200,182,1,t +15045,54200,182,2,f +15045,60471,4,1,f +15045,6141,45,1,f +15045,6141,25,1,t +15045,6141,45,1,t +15045,6141,25,2,f +15045,63868,71,1,f +15045,85959pat0003,36,2,f +15045,93058b,297,2,f +15045,93058b,297,2,t +15045,970c00pr0889,0,1,f +15045,973pr9990c01,0,1,f +15045,98313,297,2,f +15046,2877,0,1,f +15046,298c03,0,1,f +15046,3020,15,1,f +15046,3022,0,2,f +15046,3023,15,2,f +15046,3023,7,2,f +15046,3024,33,2,f +15046,3024,15,4,f +15046,3024,46,2,f +15046,3024,36,4,f +15046,3068bp06,15,1,f +15046,3069b,15,1,f +15046,3069bpb001,15,1,f +15046,3070b,33,2,f +15046,3626bpr0001,14,1,f +15046,3710,15,2,f +15046,3788,15,2,f +15046,3794a,15,1,f +15046,3821,0,1,f +15046,3822,0,1,f +15046,3823,41,1,f +15046,3829c01,7,1,f +15046,4032a,0,2,f +15046,4070,15,2,f +15046,4083,0,1,f +15046,4212b,15,1,f +15046,4213,15,1,f +15046,4214,15,1,f +15046,4485,15,1,f +15046,4589,1,2,f +15046,4600,0,2,f +15046,4865a,15,1,f +15046,6014a,15,4,f +15046,6015,0,4,f +15046,6141,46,2,f +15046,970c00,0,1,f +15046,973pb0091c01,0,1,f +15047,2730,0,2,f +15047,3702,0,4,f +15047,3703,0,2,f +15047,3895,0,2,f +15048,3020,14,2,f +15048,3022,0,1,f +15048,3023,14,1,f +15048,3024,36,1,f +15048,3039,14,1,f +15048,3069b,14,1,f +15048,3069bpr0099,15,3,f +15048,3464,4,3,f +15048,3626apr0001,14,2,f +15048,3641,0,3,f +15048,3660,4,1,f +15048,3842a,4,1,f +15048,4345ap03,14,1,f +15048,4346p03,14,1,f +15048,4480c01,14,1,f +15048,4530,6,1,f +15048,6141,46,1,f +15048,8,4,1,f +15048,970c00,1,1,f +15048,970c00,4,1,f +15048,973c01,1,1,f +15048,973pb0035c01,4,1,f +15049,2343,7,4,f +15049,2357,15,19,f +15049,2375,4,1,f +15049,2399,15,1,f +15049,2412b,15,2,f +15049,2412b,4,4,f +15049,2420,15,10,f +15049,2421,0,1,f +15049,2431,15,1,f +15049,2431,7,1,f +15049,2431,14,4,f +15049,2432,7,1,f +15049,2433,0,1,f +15049,2436,15,1,f +15049,2437,41,1,f +15049,2440p69,0,1,f +15049,2441,0,1,f +15049,2446,15,2,f +15049,2447,41,3,f +15049,2453a,15,8,f +15049,2454a,15,23,f +15049,2460,0,1,f +15049,2465,15,2,f +15049,2479,7,1,f +15049,2484c01,4,2,f +15049,2486,4,5,f +15049,2493a,0,15,f +15049,2494,47,15,f +15049,2513,15,1,f +15049,2524,6,1,f +15049,2555,15,2,f +15049,2555,7,5,f +15049,2569,7,1,f +15049,2569,4,1,f +15049,298c02,4,7,f +15049,298c02,7,1,f +15049,298c03,7,1,f +15049,3001,7,1,f +15049,3003,7,1,f +15049,3004,7,2,f +15049,3004,14,2,f +15049,3004,15,23,f +15049,3004pc0,15,1,f +15049,3005,15,18,f +15049,3005,47,1,f +15049,3005,7,1,f +15049,3008,15,7,f +15049,3008,0,2,f +15049,3009,15,7,f +15049,3010,15,9,f +15049,3010,0,8,f +15049,3020,7,6,f +15049,3020,15,3,f +15049,3021,0,1,f +15049,3021,15,2,f +15049,3021,7,1,f +15049,3022,15,1,f +15049,3022,0,1,f +15049,3023,14,2,f +15049,3023,0,6,f +15049,3023,15,12,f +15049,3023,7,10,f +15049,3024,15,14,f +15049,3024,34,1,f +15049,3024,0,2,f +15049,3024,46,2,f +15049,3024,36,5,f +15049,3024,7,2,f +15049,3024,4,1,f +15049,3024,14,2,f +15049,3030,0,2,f +15049,3033,7,1,f +15049,3033,0,1,f +15049,3033,15,5,f +15049,3034,0,2,f +15049,3035,7,2,f +15049,3039,15,2,f +15049,3039pc5,7,1,f +15049,3039px14,15,1,f +15049,3040b,15,14,f +15049,3062b,7,2,f +15049,3068bpb0002,7,1,f +15049,3068bpx18,7,1,f +15049,3069b,0,2,f +15049,3069b,14,6,f +15049,3069bp02,7,2,f +15049,3069bp80,15,1,f +15049,3069bpr0016,15,2,f +15049,3070b,36,3,f +15049,3070b,36,1,t +15049,3070b,33,4,f +15049,3070b,46,2,f +15049,3070b,34,1,t +15049,3070b,4,3,f +15049,3070b,34,1,f +15049,309p03,2,1,f +15049,3176,0,1,f +15049,3188,15,1,f +15049,3189,15,1,f +15049,3460,0,3,f +15049,3460,15,1,f +15049,3464,47,2,f +15049,3622,15,3,f +15049,3623,15,8,f +15049,3623,7,1,f +15049,3624,15,1,f +15049,3626bp03,14,1,f +15049,3626bp04,14,2,f +15049,3626bp7e,14,1,f +15049,3626bpx11,14,1,f +15049,3641,0,6,f +15049,3660,15,3,f +15049,3665,15,9,f +15049,3666,0,1,f +15049,3666,15,3,f +15049,3679,7,4,f +15049,3680,7,2,f +15049,3680,14,2,f +15049,3710,15,8,f +15049,3710,0,4,f +15049,3741,2,4,f +15049,3742,14,12,f +15049,3788,15,3,f +15049,3794a,14,1,f +15049,3794a,0,2,f +15049,3794a,7,1,f +15049,3794a,15,2,f +15049,3795,0,1,f +15049,3795,14,2,f +15049,3821,0,1,f +15049,3822,0,1,f +15049,3823,41,1,f +15049,3829c01,4,2,f +15049,3837,8,1,f +15049,3841,8,1,f +15049,3857,2,1,f +15049,3899,4,3,f +15049,3901,0,1,f +15049,3937,15,1,f +15049,3937,7,2,f +15049,3938,15,2,f +15049,3938,7,2,f +15049,3941,14,1,f +15049,3941,7,1,f +15049,3957a,7,1,f +15049,3962a,0,2,f +15049,3963,7,1,f +15049,4006,0,1,f +15049,4032a,7,2,f +15049,4033,0,4,f +15049,4070,15,4,f +15049,4079,14,5,f +15049,4081b,0,1,f +15049,4081b,7,2,f +15049,4083,4,1,f +15049,4085c,0,1,f +15049,4085c,15,9,f +15049,4095,15,1,f +15049,4162,0,2,f +15049,4215a,0,2,f +15049,4275b,0,1,f +15049,4276b,0,1,f +15049,4285a,1,1,f +15049,4286,7,1,f +15049,4315,15,1,f +15049,4447,0,4,f +15049,4448,47,4,f +15049,4449,0,1,f +15049,4474,41,1,f +15049,4477,0,3,f +15049,4477,15,1,f +15049,4479,7,1,f +15049,4480c01,15,1,f +15049,4485,15,2,f +15049,4485pb01,0,1,f +15049,4488,0,1,f +15049,4522,0,1,f +15049,4531,4,1,f +15049,4589,7,2,f +15049,4595,7,2,f +15049,4599a,0,2,f +15049,4599a,4,2,f +15049,4623,15,1,f +15049,4623,0,1,f +15049,4624,15,4,f +15049,4733,7,1,f +15049,4735,15,1,f +15049,4735,7,1,f +15049,4740,15,1,f +15049,4740,8,1,f +15049,47899c01,0,3,f +15049,4854,15,1,f +15049,4855,15,2,f +15049,4858pb01,15,1,f +15049,4859,0,2,f +15049,4865a,15,6,f +15049,4865a,7,1,f +15049,4871,15,2,f +15049,6014a,15,4,f +15049,6015,0,4,f +15049,6016,7,5,f +15049,6019,15,2,f +15049,6019,0,2,f +15049,6019,7,1,f +15049,6020,8,2,f +15049,6111,15,1,f +15049,6141,34,1,t +15049,6141,47,2,f +15049,6141,46,3,f +15049,6141,33,2,f +15049,6141,36,3,f +15049,6141,46,1,t +15049,6141,36,1,t +15049,6141,34,1,f +15049,6398stk01,9999,1,t +15049,970c00,0,3,f +15049,970c00,7,2,f +15049,973pr0145c01,15,1,f +15049,973px20c01,0,1,f +15049,973px67c01,0,1,f +15049,973px9c01,0,2,f +15050,11257pr0001,326,1,f +15050,3626bpr1066,326,1,f +15050,88001,72,1,f +15050,88646,0,1,f +15050,970c00pr0400,326,1,f +15050,973pr2164c01,326,1,f +15051,6216a,7,1,f +15052,23186,0,1,f +15052,26562,15,1,f +15052,3626cpr1920,92,1,f +15052,88646pr0002,15,1,f +15052,970c00pr1053,0,1,f +15052,973pr3376c01,15,1,f +15053,2460,7,2,f +15053,3001,0,4,f +15053,3004,15,4,f +15053,3006,7,12,f +15053,3007,4,2,f +15053,3009,15,4,f +15053,3020,4,26,f +15053,3020,2,2,f +15053,3021,0,8,f +15053,3022,7,4,f +15053,3023,0,16,f +15053,30488,7,2,f +15053,30488c01,0,5,f +15053,30488c01,15,5,f +15053,30489,2,12,f +15053,30493,0,2,f +15053,3068b,2,46,f +15053,3403c01,0,2,f +15053,3626bp03,14,2,f +15053,3626bpr0001,14,6,f +15053,3626bpx101,14,2,f +15053,3626bpx33,14,2,f +15053,3678a,15,4,f +15053,3700,7,4,f +15053,3701,7,4,f +15053,3795,15,14,f +15053,3901,6,4,f +15053,3901,19,4,f +15053,3901,0,2,f +15053,3957a,15,8,f +15053,4176,15,20,f +15053,4204,2,2,f +15053,4282,15,2,f +15053,4476b,15,4,f +15053,4485,15,1,f +15053,4485,1,1,f +15053,4495b,4,4,f +15053,4599a,4,4,f +15053,6019,14,8,f +15053,6636,15,2,f +15053,72824p01,15,4,f +15053,72824pr01,15,1,f +15053,85543,15,2,t +15053,85543,15,2,f +15053,970c00,1,5,f +15053,970c00,15,5,f +15053,970c00,0,2,f +15053,973pb0083c01,8,1,f +15053,973pb0083c02,1,1,f +15053,973pb0126c01,15,1,f +15053,973pb0244c01,15,1,f +15053,973pb0245c01,15,1,f +15053,973pb0246c01,15,1,f +15053,973pb0254c01,15,1,f +15053,973pb0365c01,2,1,f +15053,973pb0367c01,2,1,f +15053,973pb0368c01,2,1,f +15053,973pb0369c01,2,1,f +15053,973pb0370c01,2,1,f +15053,bb68,0,2,f +15055,2340,0,1,f +15055,2420,15,2,f +15055,3004,15,1,f +15055,3005,15,1,f +15055,3020,0,2,f +15055,3020,15,3,f +15055,3021,0,1,f +15055,3022,15,1,f +15055,3023,47,2,f +15055,3023,15,5,f +15055,3023,0,1,f +15055,3024,15,2,f +15055,3033,0,1,f +15055,3034,15,1,f +15055,3040b,0,2,f +15055,30503,0,2,f +15055,30503,15,2,f +15055,3298,0,1,f +15055,3666,0,1,f +15055,3700,15,1,f +15055,3794a,15,4,f +15055,3794a,0,4,f +15055,3795,15,5,f +15055,3832,1,1,f +15055,3832,0,1,f +15055,41769,0,1,f +15055,41769,15,1,f +15055,41770,15,1,f +15055,41770,0,1,f +15055,43722,15,1,f +15055,43723,15,1,f +15055,4589,71,3,f +15055,6141,57,3,f +15055,6141,0,3,f +15055,6541,15,2,f +15057,11214,72,3,f +15057,11478,71,2,f +15057,11946,0,2,f +15057,11947,0,2,f +15057,12799,72,1,f +15057,19074,9999,1,f +15057,2412b,14,1,f +15057,2780,0,1,t +15057,2780,0,24,f +15057,3069b,47,2,f +15057,32002,19,2,f +15057,32002,19,1,t +15057,32015,0,4,f +15057,32016,71,2,f +15057,32034,0,2,f +15057,32039,0,1,f +15057,32054,0,3,f +15057,32062,4,8,f +15057,32065,0,1,f +15057,32073,71,1,f +15057,32123b,71,6,f +15057,32123b,71,1,t +15057,32138,71,1,f +15057,32140,14,1,f +15057,32184,71,2,f +15057,32316,0,4,f +15057,32524,71,2,f +15057,32525,71,2,f +15057,32525,0,1,f +15057,32526,0,2,f +15057,3708,0,2,f +15057,3713,71,8,f +15057,3713,71,1,t +15057,3894,0,1,f +15057,41239,14,1,f +15057,41677,0,2,f +15057,42003,14,2,f +15057,42003,0,1,f +15057,43093,1,7,f +15057,43093,1,1,t +15057,44294,71,1,f +15057,4519,71,3,f +15057,48989,71,1,f +15057,55976,0,4,f +15057,55982,71,2,f +15057,56145,0,4,f +15057,57585,71,1,f +15057,60483,71,3,f +15057,61070,0,1,f +15057,61071,0,1,f +15057,62462,71,1,f +15057,6553,71,1,f +15057,6558,1,10,f +15057,6587,28,1,f +15057,6629,71,2,f +15057,87080,0,1,f +15057,87080,14,1,f +15057,87083,72,1,f +15057,87086,14,1,f +15057,87086,0,1,f +15059,2419,0,1,f +15059,2420,4,4,f +15059,2420,0,2,f +15059,2446,4,1,f +15059,2447,40,1,f +15059,2447,40,1,t +15059,2456,0,1,f +15059,2555,4,2,f +15059,2723,0,2,f +15059,3001,4,6,f +15059,3002,0,1,f +15059,3003,4,2,f +15059,3004,0,1,f +15059,3006,4,1,f +15059,3020,4,2,f +15059,3021,0,2,f +15059,3021,4,4,f +15059,3022,4,1,f +15059,3023,4,4,f +15059,30357,0,2,f +15059,3040b,4,2,f +15059,3068b,15,2,f +15059,3068b,4,6,f +15059,3069b,15,2,f +15059,3069b,0,1,f +15059,3069b,4,5,f +15059,3070b,0,1,t +15059,3070b,0,1,f +15059,32000,4,3,f +15059,3460,4,2,f +15059,3623,4,2,f +15059,3626bpr0369,15,1,f +15059,3666,0,1,f +15059,3708,0,1,f +15059,3710,4,2,f +15059,3710,0,4,f +15059,3737,0,1,f +15059,3794a,4,9,f +15059,3795,0,1,f +15059,3832,0,1,f +15059,4070,4,1,f +15059,4081b,4,2,f +15059,41539,0,1,f +15059,4162,15,1,f +15059,41767,4,3,f +15059,41768,4,3,f +15059,42022,0,2,f +15059,4286,4,1,f +15059,43722,4,4,f +15059,43723,4,4,f +15059,44126,4,1,f +15059,44301a,0,4,f +15059,44302a,4,4,f +15059,44567a,0,1,f +15059,44728,0,2,f +15059,4477,0,2,f +15059,4510,0,2,f +15059,4623,4,4,f +15059,47715,0,1,f +15059,4865a,4,4,f +15059,50950,4,6,f +15059,54200,0,2,f +15059,54200,4,5,f +15059,55982,71,4,f +15059,58090,0,4,f +15059,6231,4,2,f +15059,6636,4,6,f +15059,6636,0,1,f +15059,75535,0,2,f +15062,2780,0,138,f +15062,32054,0,2,f +15062,32073,71,6,f +15062,32140,0,4,f +15062,32192,0,16,f +15062,32271,14,12,f +15062,32278,14,4,f +15062,32316,14,34,f +15062,32316,0,18,f +15062,32449,14,8,f +15062,32523,14,34,f +15062,32524,14,5,f +15062,32525,14,2,f +15062,32525,0,9,f +15062,32526,14,6,f +15062,3705,0,4,f +15062,3706,0,8,f +15062,40490,14,8,f +15062,41239,14,20,f +15062,43093,1,4,f +15062,44294,71,6,f +15062,64782,0,3,f +15062,6558,1,86,f +15067,132a,0,4,f +15067,3001a,47,4,f +15067,3001a,1,3,f +15067,3001a,4,24,f +15067,3001a,0,8,f +15067,3001a,14,5,f +15067,3001a,15,30,f +15067,3002a,15,8,f +15067,3002a,14,2,f +15067,3002a,4,8,f +15067,3003,4,12,f +15067,3003,0,1,f +15067,3003,15,16,f +15067,3004,14,2,f +15067,3004,47,2,f +15067,3004,1,2,f +15067,3004,0,4,f +15067,3004,4,8,f +15067,3004,15,16,f +15067,3005,14,2,f +15067,3007,15,2,f +15067,3008,4,2,f +15067,3010,4,2,f +15067,3010,15,2,f +15067,3030,1,2,f +15067,3035,1,1,f +15067,3081cc01,4,2,f +15067,3579,15,1,f +15067,3581,15,2,f +15067,3582,1,2,f +15067,453cc01,4,2,f +15067,604c01,4,1,f +15067,700ed,2,1,f +15067,7039,4,4,f +15067,7049b,0,2,f +15067,7930,4,1,f +15068,3068bpr0006,15,1,f +15068,3626bpr1020,14,1,f +15068,4449,70,1,f +15068,88646,0,1,f +15068,95674,0,1,f +15068,970c00,0,1,f +15068,973pr2115c01,0,1,f +15069,18866,15,1,f +15069,24794,4,1,f +15069,30153,45,1,f +15069,3626cpr1884,78,1,f +15069,88646,0,1,f +15069,95351pr0006,2,1,f +15069,973pr3323c01,78,1,f +15070,2300,4,1,f +15070,3011,14,2,f +15070,3011,10,2,f +15070,3011,27,2,f +15070,3011,4,2,f +15070,3011,1,2,f +15070,3011,25,2,f +15070,3437,14,9,f +15070,3437,1,6,f +15070,3437,4,6,f +15070,3437,10,6,f +15070,3437,25,6,f +15070,3437,27,6,f +15070,40666,1,2,f +15070,40666,4,2,f +15070,87084,4,2,f +15070,87084,14,2,f +15075,2362a,33,1,f +15075,2412b,0,2,f +15075,2419,15,2,f +15075,2433,0,2,f +15075,2434,0,1,f +15075,2444,15,2,f +15075,2445,0,1,f +15075,2446,8,1,f +15075,2447,42,2,f +15075,2458,15,6,f +15075,2458,0,1,f +15075,2507,33,1,f +15075,2508,15,1,f +15075,2540,15,1,f +15075,2540,0,1,f +15075,2555,15,2,f +15075,2555,0,1,f +15075,2569,42,2,f +15075,2593,0,6,f +15075,2607,0,1,f +15075,298c02,15,1,f +15075,3001,0,1,f +15075,3003,15,2,f +15075,3003,0,1,f +15075,30034,15,1,f +15075,30035,15,1,f +15075,30037,15,1,f +15075,30038,8,1,f +15075,3005,0,2,f +15075,3009,15,2,f +15075,3020,0,4,f +15075,3021,0,2,f +15075,3021,15,6,f +15075,3022,0,7,f +15075,3022,15,5,f +15075,3023,15,3,f +15075,3023,0,2,f +15075,3024,15,1,f +15075,3034,15,2,f +15075,3037,15,1,f +15075,3039,15,2,f +15075,3039,0,3,f +15075,3039p15,15,1,f +15075,3062b,33,2,f +15075,3068b,0,2,f +15075,3068b,15,2,f +15075,3068bp10,15,2,f +15075,3149c01,0,1,f +15075,3185,15,2,f +15075,3403c01,15,1,f +15075,3475b,15,2,f +15075,3626bp69,14,2,f +15075,3660,0,2,f +15075,3665,0,2,f +15075,3665,15,2,f +15075,3673,7,2,f +15075,3706,0,1,f +15075,3709,0,1,f +15075,3710,15,2,f +15075,3710,0,3,f +15075,3730,0,1,f +15075,3747b,15,1,f +15075,3747b,0,1,f +15075,3830,0,2,f +15075,3831,0,2,f +15075,3832,15,4,f +15075,3838,0,2,f +15075,3935,15,1,f +15075,3936,15,1,f +15075,3937,0,2,f +15075,3938,15,2,f +15075,3941,42,1,f +15075,3960,33,1,f +15075,3960,36,1,f +15075,3960,42,1,f +15075,4032a,0,1,f +15075,4081b,0,1,f +15075,4150,15,1,f +15075,4275b,15,4,f +15075,4276b,15,4,f +15075,4286,15,4,f +15075,4315,15,1,f +15075,4360,15,1,f +15075,4504,0,4,f +15075,4531,15,2,f +15075,4589,42,4,f +15075,4598,0,1,f +15075,4732,15,1,f +15075,4740,42,11,f +15075,4746,0,1,f +15075,4865a,15,1,f +15075,6118,0,2,f +15075,6141,42,1,f +15075,6259,33,2,f +15075,73092,0,1,f +15075,970x026,7,2,f +15075,973pb0004c01,15,1,f +15075,973px133c01,15,1,f +15077,46296,43,1,f +15077,46296,57,1,f +15077,51027,43,1,f +15077,51036,43,1,f +15077,51675,57,3,f +15077,51675,43,3,f +15077,51675,46,3,f +15077,51686,35,1,f +15077,53657,230,3,f +15077,53657,29,5,f +15077,53657,118,2,f +15077,53658,41,2,f +15077,53658,230,10,f +15077,53660,182,1,f +15077,clikits013pb04,182,2,f +15077,clikits028,35,2,f +15077,clikits028,118,2,f +15077,clikits037,9,2,f +15077,clikits038,35,2,f +15077,clikits038,43,2,f +15077,clikits087pb01,43,1,f +15077,clikits111,47,1,f +15077,clikits114,462,1,f +15077,clikits115,13,1,f +15077,clikits122,46,3,f +15077,clikits122,57,3,f +15077,clikits122,43,3,f +15077,clikits135pb01,29,1,f +15077,clikits135pb02,230,2,f +15077,clikits142pb02,29,2,f +15077,clikits174,230,1,f +15077,clikits192,35,5,f +15081,2357,15,2,f +15081,2454a,15,3,f +15081,2465,15,2,f +15081,2984,4,1,f +15081,2985,4,1,f +15081,3001,15,1,f +15081,3002,15,1,f +15081,3004,15,11,f +15081,3009,15,1,f +15081,3010,25,2,f +15081,3020,15,2,f +15081,3021,15,2,f +15081,3022,15,1,f +15081,3062b,47,1,f +15081,3065,47,1,f +15081,32064b,7,2,f +15081,3298,25,8,f +15081,3622,15,4,f +15081,3700,15,1,f +15081,3710,25,4,f +15081,3747b,25,5,f +15081,3755,15,5,f +15081,3795,25,2,f +15081,3857,7,1,f +15081,3941,15,2,f +15081,3956,7,4,f +15081,3960,15,2,f +15081,4032a,15,2,f +15081,4150,4,1,f +15081,4589,15,2,f +15081,6141,47,2,f +15081,75535,15,1,f +15082,46281,46,2,f +15082,46281,45,2,f +15082,clikits005,45,2,f +15082,clikits005,46,2,f +15082,clikits037,25,2,f +15082,clikits037,5,2,f +15082,clikits081,5,2,f +15082,clikits081,462,2,f +15084,11259pr0001,0,1,f +15084,3069bpr0004,0,1,f +15084,3626bpr1058,14,1,f +15084,61482,71,1,f +15084,88646,0,1,f +15084,970c00,272,1,f +15084,973pr2156c01,272,1,f +15085,3020,7,2,f +15085,3021,7,1,f +15085,3023,7,2,f +15085,3024,36,2,f +15085,3024,7,2,f +15085,3035,7,1,f +15085,3039p34,7,1,f +15085,3062a,34,1,f +15085,3298p90,7,1,f +15085,3460,7,1,f +15085,3475a,7,2,f +15085,3479,7,1,f +15085,3623,7,2,f +15085,3626apr0001,14,1,f +15085,3794a,7,1,f +15085,3795,7,3,f +15085,3829c01,7,2,f +15085,3838,15,1,f +15085,3839a,7,1,f +15085,3842a,15,1,f +15085,3935,7,2,f +15085,3936,7,2,f +15085,3957a,7,1,f +15085,3959,7,1,f +15085,3963,7,2,f +15085,970c00,15,1,f +15085,973p90c05,15,1,f +15086,10201,71,4,f +15086,11091,0,2,f +15086,11092,179,2,f +15086,11097,179,1,f +15086,11098,308,2,f +15086,11100,0,2,f +15086,11106,179,2,f +15086,11127,41,1,f +15086,11211,71,2,f +15086,11477,326,2,f +15086,11477,72,2,f +15086,12550pr0005,0,1,f +15086,12825,0,3,f +15086,13361pr0001,308,1,f +15086,13361pr0002,72,1,f +15086,13361pr0003,0,1,f +15086,13548,308,4,f +15086,2335,0,2,f +15086,2412b,70,13,f +15086,2417,320,2,f +15086,2423,320,2,f +15086,2432,70,2,f +15086,2445,70,1,f +15086,2456,70,2,f +15086,2540,72,4,f +15086,2817,71,1,f +15086,298c02,1,1,t +15086,298c02,1,2,f +15086,3001,321,5,f +15086,30031,71,1,f +15086,3004,321,4,f +15086,3007,0,2,f +15086,3008,70,1,f +15086,3010,70,1,f +15086,30165,72,2,f +15086,3020,70,8,f +15086,3020,71,1,f +15086,3021,71,2,f +15086,3022,70,4,f +15086,3023,321,19,f +15086,30237a,72,1,f +15086,3031,72,1,f +15086,3034,70,1,f +15086,3036,2,1,f +15086,3036,0,1,f +15086,30367c,0,8,f +15086,30374,70,10,f +15086,30374,36,2,f +15086,3039,71,2,f +15086,30414,72,2,f +15086,3048c,72,1,f +15086,30602,0,6,f +15086,3062b,41,4,f +15086,3068b,0,2,f +15086,3068b,1,1,f +15086,3069b,308,2,f +15086,3070b,0,1,t +15086,3070b,0,2,f +15086,3176,0,4,f +15086,32000,72,4,f +15086,32028,0,4,f +15086,32062,4,1,f +15086,32474,0,4,f +15086,32530,72,1,f +15086,3298,70,2,f +15086,33085,14,7,f +15086,33183,10,1,t +15086,33183,10,4,f +15086,3623,70,8,f +15086,3623,71,2,f +15086,3626cpr1133,0,1,f +15086,3626cpr1204,308,1,f +15086,3626cpr1205,72,1,f +15086,3626cpr1206,0,1,f +15086,3660,308,2,f +15086,3665,70,8,f +15086,3666,72,1,f +15086,3673,71,1,t +15086,3673,71,3,f +15086,3678b,0,2,f +15086,3700,71,4,f +15086,3701,0,2,f +15086,3701,72,1,f +15086,3706,0,3,f +15086,3713,4,1,t +15086,3713,4,2,f +15086,3747b,0,2,f +15086,3794b,70,1,f +15086,3795,72,4,f +15086,3795,321,4,f +15086,3941,0,8,f +15086,3958,0,1,f +15086,4032a,308,16,f +15086,4032a,1,1,f +15086,4150,0,2,f +15086,4162,0,2,f +15086,41677,4,2,f +15086,41879a,308,1,f +15086,43710,0,3,f +15086,43711,0,3,f +15086,44567a,71,1,f +15086,44728,0,10,f +15086,47455,72,2,f +15086,47457,72,1,f +15086,48170,72,2,f +15086,48172,0,1,f +15086,49668,179,2,f +15086,50943,72,2,f +15086,50950,321,2,f +15086,52501,72,2,f +15086,53454,36,1,t +15086,53454,36,1,f +15086,53585,0,1,f +15086,54383,0,1,f +15086,54384,0,1,f +15086,57028c04,71,1,f +15086,57539pat0004,47,2,f +15086,57796,72,1,f +15086,57908,72,2,f +15086,57909a,72,2,f +15086,58176,33,6,f +15086,59426,72,1,f +15086,59443,4,2,f +15086,60470b,0,2,f +15086,60471,0,1,f +15086,60474,0,1,f +15086,6063,321,2,f +15086,60849,0,1,t +15086,60849,0,1,f +15086,61184,71,6,f +15086,6141,36,2,f +15086,6141,36,1,t +15086,6141,41,2,t +15086,6141,41,12,f +15086,61485,0,1,f +15086,63864,72,2,f +15086,64276,0,1,f +15086,64567,0,1,t +15086,64567,0,1,f +15086,6585,0,1,f +15086,6587,28,4,f +15086,6589,19,2,f +15086,6589,19,1,t +15086,6636,70,2,f +15086,70008stk01,9999,1,t +15086,73983,0,3,f +15086,87079,4,1,f +15086,87079,72,2,f +15086,87081,72,2,f +15086,87083,72,2,f +15086,87559,0,4,f +15086,87747,0,2,f +15086,87747,0,1,t +15086,88289,308,1,f +15086,88293,0,4,f +15086,88930,321,4,f +15086,92013,0,6,f +15086,92233,0,2,f +15086,92280,0,4,f +15086,92593,72,2,f +15086,92593,0,2,f +15086,92946,0,14,f +15086,92947,4,5,f +15086,92947,71,2,f +15086,93274,72,4,f +15086,93606,308,2,f +15086,96874,25,1,t +15086,970c00pr0446,0,1,f +15086,970c00pr0450,72,1,f +15086,970d16,0,1,f +15086,973pr1400c01,0,1,f +15086,973pr2243c01,0,1,f +15086,973pr2354c01,308,1,f +15086,973pr2355c01,72,1,f +15086,98138,41,1,t +15086,98138,1,1,t +15086,98138,1,4,f +15086,98138,179,10,f +15086,98138,41,3,f +15086,98138,179,2,t +15086,98313,70,8,f +15086,98560,0,4,f +15086,98567,0,1,f +15086,98835,321,4,f +15086,99207,71,14,f +15086,99780,0,1,f +15086,99780,72,4,f +15086,99781,71,4,f +15087,3021,1,1,f +15087,3021,4,1,f +15087,3039,47,1,f +15087,3660,14,1,f +15087,3747b,14,1,f +15087,4070,4,2,f +15087,4070,4,1,t +15087,4589,34,2,f +15087,4589,34,1,t +15087,4859,1,1,f +15088,2435,2,1,f +15088,2543,4,1,f +15088,3004,0,3,f +15088,3004,4,2,t +15088,3004,4,5,f +15088,3005,15,1,f +15088,3005,14,1,f +15088,3005,1,1,f +15088,3010,72,1,f +15088,30150,70,1,f +15088,3020,72,2,f +15088,3040b,4,2,f +15088,3045,4,2,f +15088,3622,4,2,f +15088,3626bpr0270,14,1,f +15088,3633,0,1,f +15088,3659,4,1,f +15088,4032b,70,1,f +15088,6126a,57,1,f +15088,6132,15,1,f +15088,970c00,71,1,f +15088,973c02,4,1,f +15092,14226c11,0,1,f +15092,2335,0,1,f +15092,2335pr13,4,10,f +15092,2412b,71,4,f +15092,2420,72,1,f +15092,2420,0,15,f +15092,2445,0,4,f +15092,2446,0,1,f +15092,2456,72,54,f +15092,2456,72,1,t +15092,2489,70,1,f +15092,2569,72,2,f +15092,2587pr0017,320,1,f +15092,2587pr0018,0,1,f +15092,2587pr0019,0,1,f +15092,2723,0,1,f +15092,2877,4,36,f +15092,3001,72,7,f +15092,3003,320,7,f +15092,30031,0,2,f +15092,3004,72,22,f +15092,30041,0,1,f +15092,30042,0,1,f +15092,30043,71,1,f +15092,3005,72,8,f +15092,3005,320,8,f +15092,30055,70,3,f +15092,3008,72,9,f +15092,3009,72,15,f +15092,3010,72,16,f +15092,3020,72,2,f +15092,3021,0,8,f +15092,3022,0,6,f +15092,3023,0,17,f +15092,30236,72,25,f +15092,30274,71,1,f +15092,3030,0,1,f +15092,3032,71,3,f +15092,3033,0,5,f +15092,3034,0,6,f +15092,3035,0,2,f +15092,3035,72,2,f +15092,30357,72,4,f +15092,3036,0,1,f +15092,30377,0,2,f +15092,3039,72,16,f +15092,3045,72,4,f +15092,3062b,71,10,f +15092,3065,36,9,f +15092,3068b,320,5,f +15092,3069b,72,4,f +15092,32013,0,1,f +15092,32039,0,2,f +15092,32059,71,1,f +15092,32062,4,1,f +15092,32073,71,1,f +15092,32123b,71,1,t +15092,32123b,71,2,f +15092,3298,0,2,f +15092,3308,72,4,f +15092,3403,71,1,f +15092,3404,71,1,f +15092,3622,72,26,f +15092,3623,0,12,f +15092,3626bpr0465,78,1,f +15092,3626bpr0466,78,1,f +15092,3626bpr0468,78,1,f +15092,3626bpr0470a,78,1,f +15092,3626bpr0489,15,1,f +15092,3659,72,4,f +15092,3660,72,10,f +15092,3665,71,8,f +15092,3666,72,7,f +15092,3675,0,2,f +15092,3676,72,6,f +15092,3684,72,2,f +15092,3700,4,3,f +15092,3705,0,1,f +15092,3710,320,8,f +15092,3749,19,1,f +15092,3794a,4,1,f +15092,3795,0,3,f +15092,3830,71,3,f +15092,3831,71,1,t +15092,3831,71,3,f +15092,3837,0,1,f +15092,3844,320,1,f +15092,3848,0,1,f +15092,3941,0,4,f +15092,3941,72,13,f +15092,3943b,72,2,f +15092,3957a,0,1,f +15092,3958,72,1,f +15092,4033,0,2,f +15092,4081b,72,2,f +15092,4095,0,1,f +15092,4151b,0,1,f +15092,41539,0,6,f +15092,41764,72,1,f +15092,41765,72,1,f +15092,41767,72,24,f +15092,41768,72,24,f +15092,41769,0,2,f +15092,41770,0,2,f +15092,4274,71,1,t +15092,4274,71,1,f +15092,43093,1,1,f +15092,43337,71,6,f +15092,4460a,4,2,f +15092,4460a,0,2,f +15092,4477,0,14,f +15092,4495b,4,1,f +15092,45301,72,1,f +15092,4599a,71,2,f +15092,48336,0,3,f +15092,48489,320,1,f +15092,4864b,71,1,f +15092,48723,70,1,f +15092,50303,0,1,f +15092,50304,0,1,f +15092,50305,0,1,f +15092,50950,72,2,f +15092,54095,71,1,f +15092,56410,47,1,f +15092,6005,0,4,f +15092,6019,71,9,f +15092,6020,0,2,f +15092,6081,71,2,f +15092,6093,70,1,f +15092,6111,320,4,f +15092,6112,72,16,f +15092,6126a,57,2,f +15092,6141,0,1,t +15092,6141,57,1,t +15092,6141,57,2,f +15092,6141,0,15,f +15092,6222,0,2,f +15092,6231,71,4,f +15092,6259,71,4,f +15092,6636,0,25,f +15092,73590c02a,0,1,f +15092,970c00,0,3,f +15092,970c00,272,1,f +15092,970c00pr0109,70,1,f +15092,973c08,0,3,f +15092,973pr1260c01,14,1,f +15092,973pr1261c01,272,1,f +15093,132a,0,4,f +15093,3001a,4,14,f +15093,3001a,0,4,f +15093,3001a,14,2,f +15093,3002a,4,2,f +15093,3003,4,8,f +15093,3004,4,6,f +15093,3005,4,2,f +15093,3006,4,3,f +15093,3008,4,2,f +15093,3009,4,2,f +15093,3010,4,2,f +15093,3020,15,2,f +15093,3022,1,2,f +15093,3023,14,6,f +15093,3034,7,8,f +15093,3149c01,7,1,f +15093,3187,4,1,f +15093,3404ac01,15,1,f +15093,3705,79,1,f +15093,3706,79,2,f +15093,3707,79,2,f +15093,3708,79,1,f +15093,3709c,7,5,f +15093,569,4,4,f +15093,570,1,3,f +15093,572,14,2,f +15093,584,4,8,f +15093,700ed,7,1,f +15093,7039,4,4,f +15093,7049b,15,4,f +15093,bb301,80,2,f +15093,rb00164,0,1,f +15094,2456,1,1,f +15094,3001,4,2,f +15094,3002,4,2,f +15094,3003,14,2,f +15094,3003pe2,14,2,f +15094,4728,15,1,f +15094,4744px2,2,1,f +15097,132a,7,2,f +15097,3020,0,1,f +15097,36,7,2,f +15097,393c48,15,1,f +15097,458,7,2,f +15097,7039b,4,2,f +15097,7049b,15,1,f +15097,715a,4,2,f +15097,wheel1b,4,2,f +15097,x579c02,1,1,f +15098,610p01,2,2,f +15099,122c01,7,2,f +15099,3004,47,1,f +15099,3021,0,1,f +15099,3021,15,3,f +15099,3023,15,1,f +15099,3034,15,1,f +15099,3034,0,1,f +15099,3039,47,1,f +15099,3039,0,1,f +15099,3062a,33,1,f +15099,3624,15,1,f +15099,3626apr0001,14,1,f +15099,3641,0,4,f +15099,3787,15,2,f +15099,970c00,0,1,f +15099,973c18,0,1,f +15100,2670,7,4,f +15100,2671,7,2,f +15100,2672,7,4,f +15100,2681,0,10,f +15100,2889,7,1,f +15100,2890,7,1,f +15100,2891,7,1,f +15100,2892,7,1,f +15100,3710,7,30,f +15102,2339,71,4,f +15102,2357,71,2,f +15102,2357,72,8,f +15102,2431,0,4,f +15102,2444,71,2,f +15102,2446,4,1,f +15102,2446,2,1,f +15102,2449,72,2,f +15102,2454a,71,3,f +15102,2458,71,2,f +15102,2462,71,3,f +15102,2587pb04,4,1,f +15102,2743,71,2,f +15102,2780,0,2,t +15102,2780,0,6,f +15102,30000,71,1,f +15102,3001,72,1,f +15102,3002,72,1,f +15102,3003,4,2,f +15102,3003,72,41,f +15102,3003,71,6,f +15102,3004,72,10,f +15102,3004,71,9,f +15102,30045,0,2,f +15102,3005,36,2,f +15102,3005,71,7,f +15102,3005,46,2,f +15102,3007,71,1,f +15102,3010,71,4,f +15102,30104,72,2,f +15102,30134,70,1,f +15102,30145,71,18,f +15102,30153,36,1,f +15102,30153,33,1,f +15102,30153,34,1,f +15102,30153,41,1,f +15102,30153,42,1,f +15102,30176,2,12,f +15102,3020,72,1,f +15102,3020,15,1,f +15102,3020,2,1,f +15102,3021,0,2,f +15102,3022,14,2,f +15102,3022,0,3,f +15102,3022,71,2,f +15102,3023,0,10,f +15102,3023,71,4,f +15102,3023,70,1,f +15102,3028,0,1,f +15102,3028,73,1,f +15102,30293,70,2,f +15102,30294,70,2,f +15102,3033,0,1,f +15102,3033,71,1,f +15102,3034,71,1,f +15102,3035,72,1,f +15102,3036,70,1,f +15102,3040b,71,2,f +15102,3048c,2,2,f +15102,3048c,112,5,f +15102,3062b,112,11,f +15102,3062b,47,1,f +15102,30645,0,2,f +15102,30645,72,1,f +15102,30645,70,2,f +15102,3068b,0,4,f +15102,3069b,71,2,f +15102,32000,71,1,f +15102,32002,72,1,t +15102,32002,72,2,f +15102,32013,71,1,f +15102,32028,71,2,f +15102,32054,14,1,f +15102,32062,0,2,f +15102,32064b,0,2,f +15102,32123b,71,1,t +15102,32123b,71,3,f +15102,32269,71,3,f +15102,32449,71,1,f +15102,3245b,71,3,f +15102,32530,0,1,f +15102,3298,71,2,f +15102,3307,71,1,f +15102,3308,15,1,f +15102,3308,71,1,f +15102,33320,2,1,f +15102,3460,71,1,f +15102,3460,2,2,f +15102,3460,0,3,f +15102,3623,0,2,f +15102,3623,72,2,f +15102,3626bpb0217,14,1,f +15102,3626bpb0220,14,1,f +15102,3626bpb0223,14,1,f +15102,3626bpr0190,15,1,f +15102,3626bpr0348,14,1,f +15102,3660,72,2,f +15102,3660,71,8,f +15102,3665,72,2,f +15102,3678b,71,4,f +15102,3684,72,2,f +15102,3700,71,3,f +15102,3700,4,2,f +15102,3701,71,1,f +15102,3702,71,1,f +15102,3702,0,2,f +15102,3705,0,2,f +15102,3706,0,1,f +15102,3710,71,2,f +15102,3713,71,1,t +15102,3713,71,5,f +15102,3737,0,2,f +15102,3749,19,1,f +15102,3794a,71,2,f +15102,3848,0,4,f +15102,3848,70,1,f +15102,3895,71,1,f +15102,3941,47,2,f +15102,3957a,0,1,f +15102,4032a,0,2,f +15102,4032b,4,4,f +15102,40344c01,71,1,f +15102,4085c,0,2,f +15102,4162,4,2,f +15102,4162,0,4,f +15102,41669,15,2,f +15102,41669,36,2,f +15102,42023,4,2,f +15102,42074,2,6,f +15102,4282,72,1,f +15102,4282,71,2,f +15102,4286,2,2,f +15102,44294,71,2,f +15102,4460a,15,2,f +15102,4460a,71,2,f +15102,4477,70,2,f +15102,4488,71,2,f +15102,4489b,70,2,f +15102,4495a,112,1,f +15102,4497,42,1,f +15102,4497,0,1,f +15102,4509,72,1,f +15102,4510,72,1,f +15102,4589,15,2,f +15102,4589,71,4,f +15102,4738a,70,1,f +15102,4739a,70,1,f +15102,4740,57,1,f +15102,48487,4,1,f +15102,48488,2,1,f +15102,48490,71,2,f +15102,48493,0,1,f +15102,48494pb02,151,1,f +15102,48494pb04,151,1,f +15102,48495,137,1,f +15102,48495,14,1,f +15102,48496,2,3,f +15102,50231,70,1,f +15102,6066,71,1,f +15102,6083,70,2,f +15102,6111,72,2,f +15102,6126a,57,3,f +15102,6132,71,1,f +15102,6222,70,2,f +15102,6249,71,1,f +15102,6538b,2,6,f +15102,6538b,71,1,f +15102,6553,2,6,f +15102,6558,0,2,f +15102,6628,0,4,f +15102,75c07,72,1,f +15102,8780stk01,9999,1,t +15102,970x154,0,1,f +15102,970x199,2,1,f +15102,970x199,70,1,f +15102,970x199,4,1,f +15102,973c34,4,1,f +15102,973pb0347c01,0,1,f +15102,973pb0352c01,2,1,f +15102,973pb0353c01,70,1,f +15102,kkc51,9999,1,t +15102,kkc73,9999,1,t +15102,kkc77,9999,1,t +15103,3626bpb0143,6,1,f +15103,3626bpb0144,6,1,f +15103,3626bpb0145,6,1,f +15103,45522,19,3,f +15103,973bpb143c01,110,1,f +15103,973bpb144c01,1,1,f +15103,973bpb145c01,1,1,f +15103,bbcard14,9999,1,f +15103,bbcard22,9999,1,f +15103,bbcard24gl,9999,1,f +15103,x494cx1,110,1,f +15103,x494cx1,1,2,f +15104,2412b,7,1,f +15104,2419,7,1,f +15104,2446,0,1,f +15104,2447,34,1,f +15104,2447,34,1,t +15104,2540,0,2,f +15104,298c03,7,1,t +15104,298c03,7,2,f +15104,3023,0,1,f +15104,3068bp69,0,1,f +15104,3626bp69,14,1,f +15104,3795,4,1,f +15104,3838,0,1,f +15104,4032a,7,1,f +15104,4588,7,2,f +15104,4589,4,2,f +15104,4735,0,2,f +15104,4859,7,1,f +15104,970x001,2,1,f +15104,973p69c01,15,1,f +15105,2352,4,1,f +15105,2456,4,2,f +15105,2456,14,2,f +15105,3001,2,8,f +15105,3001,1,10,f +15105,3001,0,4,f +15105,3001,15,10,f +15105,3001,14,8,f +15105,3001,4,12,f +15105,3001p08,14,1,f +15105,3002,4,8,f +15105,3002,2,4,f +15105,3002,0,2,f +15105,3002,14,6,f +15105,3002,1,4,f +15105,3002,15,2,f +15105,3003,4,16,f +15105,3003,15,6,f +15105,3003,1,10,f +15105,3003,0,4,f +15105,3003,14,10,f +15105,3003,2,10,f +15105,3003pe2,14,2,f +15105,3007,14,2,f +15105,3007,4,2,f +15105,30076,1,1,f +15105,30077,14,2,f +15105,30078,4,1,f +15105,3483,0,4,f +15105,4132,4,2,f +15105,4133,14,2,f +15105,4202,2,1,f +15105,4727,2,2,f +15105,4728,1,1,f +15105,4728,14,1,f +15105,4744px13,2,1,f +15105,4744px4,4,1,f +15105,600,14,1,f +15105,6214px2,2,1,f +15105,6215,2,4,f +15105,6215,4,4,f +15105,6216,2,1,f +15105,6232,14,1,f +15105,6235,4,1,f +15105,6248,4,4,f +15107,10201,0,3,f +15107,11002,0,3,f +15107,11291,15,1,f +15107,15068,15,1,f +15107,2412b,71,2,f +15107,2412b,0,2,f +15107,2431,15,4,f +15107,2434,0,1,f +15107,2540,71,2,f +15107,298c02,4,1,t +15107,298c02,4,1,f +15107,3010,0,1,f +15107,3020,15,7,f +15107,3020,14,1,f +15107,3020,71,2,f +15107,3021,72,1,f +15107,3022,0,1,f +15107,3022,4,4,f +15107,3023,15,4,f +15107,30374,71,2,f +15107,3069b,71,1,f +15107,3070b,36,2,f +15107,3070b,36,1,t +15107,3245c,15,2,f +15107,3460,15,4,f +15107,3710,14,1,f +15107,3710,72,3,f +15107,3795,72,4,f +15107,44728,4,2,f +15107,4599b,71,1,f +15107,4599b,71,1,t +15107,50951,0,6,f +15107,54200,40,1,t +15107,54200,40,2,f +15107,60212,14,1,f +15107,60475b,15,2,f +15107,6141,72,3,f +15107,6141,57,1,t +15107,6141,72,1,t +15107,6141,182,3,f +15107,88930,15,4,f +15107,93273,14,1,f +15107,93274,14,1,f +15107,93593,71,6,f +15107,93604,15,1,f +15108,1090ba,9999,1,f +15108,1090bbc,9999,1,f +15108,1090bd,9999,1,f +15108,1090be,9999,1,f +15108,1090boc,9999,1,f +15109,3001,14,2,f +15109,3001,1,1,f +15109,3001,15,1,f +15109,3003,1,1,f +15109,4727,2,2,f +15109,4729,14,1,f +15109,4744pb14,4,1,f +15109,6215,4,2,f +15109,6248,4,1,f +15110,10928,72,2,f +15110,14769,158,1,f +15110,14769pr1027,158,1,f +15110,16965,0,1,f +15110,18395,158,1,f +15110,18585,0,1,f +15110,18590,0,1,f +15110,18591,47,1,f +15110,18592,158,1,f +15110,20568pat01,272,1,f +15110,2654,0,1,f +15110,3001,0,1,f +15110,30173b,158,2,f +15110,3021,272,4,f +15110,30602,272,2,f +15110,3626cpr1681,0,1,f +15110,3848,148,1,f +15110,3957a,0,1,f +15110,43712,272,1,f +15110,43713,272,1,f +15110,6141,158,2,f +15110,64644,0,1,f +15110,87087,0,2,f +15110,87994,0,1,f +15110,92338,179,1,f +15110,93058,297,2,f +15110,973pr3018c01,272,1,f +15110,98139,148,1,f +15110,99780,0,3,f +15110,99781,0,3,f +15111,32062,0,6,f +15111,32173,8,2,f +15111,32174,15,10,f +15111,32174,57,1,f +15111,32270,7,1,f +15111,3737,0,1,f +15111,3749,19,4,f +15111,44135,8,1,f +15111,44136,8,1,f +15111,44138,183,2,f +15111,44139,8,1,f +15111,44140,183,1,f +15111,44145,179,1,f +15111,44148,8,2,f +15111,44247,8,1,f +15111,44807,183,1,f +15111,44819,135,2,f +15111,4519,7,3,f +15111,45749,8,2,f +15111,6538b,8,1,f +15111,kraataund,150,1,f +15113,11476,0,2,f +15113,14769pr1035,15,1,f +15113,15208,15,3,f +15113,15208,0,1,f +15113,2412b,15,2,f +15113,24246,15,2,f +15113,24246,15,1,t +15113,2431,1,1,f +15113,2921,0,2,f +15113,3022,0,2,f +15113,3023,1,5,f +15113,3031,1,1,f +15113,3032,0,1,f +15113,32474pr1001,15,2,f +15113,3623,0,2,f +15113,3710,4,1,f +15113,4081b,72,4,f +15113,44728,1,1,f +15113,4735,0,2,f +15113,60478,72,6,f +15113,60594,0,3,f +15113,6141,1,4,f +15113,6141,1,1,t +15113,62113,72,3,f +15113,63868,1,4,f +15113,85984,15,4,f +15113,92280,0,2,f +15113,92585,4,1,f +15113,93273,1,1,f +15113,98138,33,1,t +15113,98138,36,1,t +15113,98138,33,2,f +15113,98138,36,2,f +15113,99780,72,2,f +15115,2543,4,1,f +15115,3626bpr0001,14,1,f +15115,6132,15,1,f +15115,970x026,4,1,f +15115,973c02,4,1,f +15116,2458,71,1,f +15116,30385,42,1,f +15116,32013,72,2,f +15116,32015,71,1,f +15116,32062,4,2,f +15116,3298,72,3,f +15116,43898,72,1,f +15116,64783,72,2,f +15116,64784pat01,42,1,f +15116,64785,72,1,f +15117,2447,46,1,f +15117,3626bpr0738,14,1,f +15117,87781,0,1,f +15117,87993,148,1,f +15117,87994,36,1,f +15117,88646,0,1,f +15117,970d12,0,1,f +15117,973pb0805c01,0,1,f +15118,12825,71,8,f +15118,12825,0,2,f +15118,15207,72,6,f +15118,2412b,71,6,f +15118,2420,71,6,f +15118,2431,27,2,f +15118,2436,0,4,f +15118,2456,72,1,f +15118,2540,72,2,f +15118,2540,0,5,f +15118,2569,72,2,f +15118,2654,72,8,f +15118,2780,0,1,t +15118,2780,0,29,f +15118,2817,0,2,f +15118,298c02,71,5,f +15118,298c02,71,1,t +15118,30000,71,1,f +15118,3001,27,2,f +15118,3003,72,6,f +15118,3003,0,2,f +15118,30036,72,1,f +15118,3004,27,7,f +15118,3005,72,2,f +15118,3007,0,1,f +15118,30095,72,1,f +15118,3010,27,2,f +15118,30150,70,1,f +15118,3020,27,1,f +15118,3020,72,6,f +15118,3021,71,1,f +15118,3022,25,4,f +15118,3022,71,1,f +15118,3022,15,3,f +15118,3023,72,11,f +15118,30236,0,4,f +15118,3027,72,4,f +15118,3030,72,1,f +15118,3031,27,3,f +15118,30325,1,3,f +15118,30359b,0,2,f +15118,3036,72,1,f +15118,30374,42,2,f +15118,30377,0,2,f +15118,30377,0,1,t +15118,30385,33,2,f +15118,30385,42,3,f +15118,3039,72,4,f +15118,30394,25,1,f +15118,30395,72,1,f +15118,3039pr0002,15,1,f +15118,3039pr0013,15,1,f +15118,3040b,42,10,f +15118,3045,72,1,f +15118,3046a,72,4,f +15118,30503,72,2,f +15118,3062b,14,1,f +15118,3062b,27,4,f +15118,3062b,71,2,f +15118,30648,0,4,f +15118,30663,71,2,f +15118,3068b,15,1,f +15118,3069b,27,32,f +15118,3069b,0,9,f +15118,3069bpr0101,71,1,f +15118,3176,0,1,f +15118,3185,0,5,f +15118,32012,14,1,f +15118,32018,0,2,f +15118,32125,71,1,f +15118,32126,71,2,f +15118,32184,0,1,f +15118,32192,4,2,f +15118,32249,0,2,f +15118,32278,27,2,f +15118,3245b,72,4,f +15118,32523,71,1,f +15118,32523,27,2,f +15118,32525,27,1,f +15118,32530,0,10,f +15118,32532,0,1,f +15118,32556,19,6,f +15118,33172,25,2,f +15118,33183,10,2,f +15118,3460,15,2,f +15118,3623,71,1,f +15118,3626bpr0558,14,1,f +15118,3626bpr0559,14,1,f +15118,3626bpr0560,14,1,f +15118,3660,0,4,f +15118,3660,27,1,f +15118,3665,72,2,f +15118,3666,27,2,f +15118,3678b,71,2,f +15118,3678b,72,2,f +15118,3679,71,1,f +15118,3680,0,1,f +15118,3684,72,7,f +15118,3684,27,4,f +15118,3700,72,4,f +15118,3701,72,1,f +15118,3702,0,4,f +15118,3705,0,2,f +15118,3707,0,1,f +15118,3710,27,13,f +15118,3731,0,4,f +15118,3738,72,2,f +15118,3747b,72,2,f +15118,3749,19,8,f +15118,3794a,0,2,f +15118,3794a,71,4,f +15118,3837,0,1,f +15118,3841,72,1,f +15118,3937,71,2,f +15118,3940b,0,3,f +15118,3941,27,2,f +15118,3941,71,4,f +15118,3942c,72,2,f +15118,3962b,0,2,f +15118,40244,0,4,f +15118,4070,71,4,f +15118,4080,27,1,f +15118,4080,25,1,f +15118,4081b,0,5,f +15118,4083,0,1,f +15118,4085c,71,4,f +15118,4151b,72,2,f +15118,4175,72,2,f +15118,42446,72,2,f +15118,42610,71,2,f +15118,4274,71,8,f +15118,4274,71,1,t +15118,4282,0,2,f +15118,43093,1,12,f +15118,4345b,71,2,f +15118,4346,71,2,f +15118,43898,47,1,f +15118,44294,71,1,f +15118,44302a,71,2,f +15118,44567b,71,3,f +15118,44728,71,4,f +15118,44809,0,2,f +15118,4599b,14,1,f +15118,4599b,0,1,t +15118,4599b,14,1,t +15118,4599b,0,4,f +15118,4735,71,4,f +15118,48002,0,4,f +15118,48336,71,2,f +15118,50943,71,2,f +15118,52031,27,2,f +15118,54200,25,1,t +15118,54200,72,1,t +15118,54200,47,2,f +15118,54200,27,1,t +15118,54200,47,1,t +15118,54200,25,4,f +15118,54200,27,5,f +15118,54200,0,4,f +15118,54200,72,2,f +15118,54200,0,1,t +15118,55982,71,4,f +15118,56145,0,1,f +15118,56823c50,0,1,f +15118,57520,0,1,f +15118,58176,182,4,f +15118,58827,0,8,f +15118,59443,71,3,f +15118,59521,27,1,f +15118,59900,72,1,f +15118,60470a,0,1,f +15118,60474,0,1,f +15118,60592,15,8,f +15118,60601,40,8,f +15118,61184,71,6,f +15118,6134,71,1,f +15118,6134,0,1,f +15118,61409,27,7,f +15118,6141,0,4,f +15118,6141,0,1,t +15118,6141,47,20,f +15118,6141,47,1,t +15118,61485,0,1,f +15118,6187,0,3,f +15118,6232,72,2,f +15118,62462,25,6,f +15118,62700,135,4,f +15118,63965,0,1,f +15118,64728,4,4,f +15118,6536,0,4,f +15118,6541,0,2,f +15118,6587,72,3,f +15118,6636,72,4,f +15118,6636,71,3,f +15118,6636,0,8,f +15118,75c49,0,1,f +15118,78c14,0,2,f +15118,85049pat01,42,1,f +15118,85204,72,1,f +15118,85205,72,1,f +15118,85546,14,1,f +15118,970c00pr0122,1,3,f +15118,973pr1432c01,71,2,f +15118,973pr1433c01,71,1,f +15119,3626bpr0645,14,1,f +15119,74188,4,1,f +15119,86035,4,1,f +15119,87079pr0043,15,1,f +15119,970c00,1,1,f +15119,973pr2144c01,15,1,f +15121,3002a,47,4,f +15121,3004,47,8,f +15121,3004,15,6,f +15121,3004p60,15,5,f +15121,3005,15,4,f +15121,3005,47,2,f +15121,3008,15,3,f +15121,3009,15,2,f +15121,3009pt1,15,1,f +15121,3010,47,3,f +15121,3010,15,6,f +15121,3021,7,2,f +15121,3023,4,4,f +15121,3023,14,8,f +15121,3030,7,1,f +15121,3032,7,1,f +15121,3036,7,1,f +15121,3068b,15,4,f +15121,3069b,15,4,f +15121,3497,2,1,f +15121,3579,15,1,f +15121,7930,14,1,f +15121,x454pb01,15,1,f +15122,2420,15,2,f +15122,3002,15,1,f +15122,3003,15,1,f +15122,3004,15,2,f +15122,3004,0,1,f +15122,3004p51,14,1,f +15122,3005,15,3,f +15122,3021,14,1,f +15122,3022,0,1,f +15122,3023,15,3,f +15122,3024,14,2,f +15122,3039,15,1,f +15122,3040b,15,6,f +15122,3665,15,5,f +15122,4032a,14,1,f +15122,6141,47,2,f +15122,6141,47,1,t +15123,5306bc036,0,1,f +15124,2431,15,1,f +15124,3021,0,1,f +15124,3024,4,1,f +15124,3623,4,2,f +15124,3623,71,1,f +15124,3710,15,1,f +15124,43722,71,1,f +15124,43723,71,1,f +15124,54200,40,1,t +15124,54200,40,1,f +15124,54200,4,1,t +15124,54200,4,1,f +15125,11153,191,4,f +15125,11211,4,1,f +15125,11291,191,2,f +15125,11477,0,2,f +15125,11477,191,4,f +15125,15068,0,2,f +15125,15068,191,1,f +15125,15712,71,2,f +15125,18671,72,1,f +15125,18746,191,1,f +15125,18973pr0002,40,1,f +15125,18974,191,4,f +15125,18975,72,2,f +15125,18976,0,4,f +15125,18977,0,4,f +15125,18978a,0,4,t +15125,18978b,0,4,f +15125,2412b,71,1,f +15125,2420,0,2,f +15125,2420,15,2,f +15125,2431,191,4,f +15125,2446,179,1,f +15125,2447,40,1,f +15125,2447,40,1,t +15125,30029,0,1,f +15125,3003,0,1,f +15125,3020,71,3,f +15125,3020,0,4,f +15125,3021,72,2,f +15125,3022,191,4,f +15125,3022,2,2,f +15125,3023,4,6,f +15125,3023,191,8,f +15125,3023,40,1,f +15125,3024,25,1,t +15125,3024,25,3,f +15125,30357,191,4,f +15125,30357,0,2,f +15125,3039,71,2,f +15125,3040b,191,2,f +15125,3068b,0,2,f +15125,3069b,0,5,f +15125,3070b,191,4,f +15125,3070b,191,1,t +15125,32124,0,2,f +15125,3622,0,2,f +15125,3623,0,2,f +15125,3626cpr0499,14,1,f +15125,3665,71,2,f +15125,3666,72,1,f +15125,3710,2,1,f +15125,3710,191,3,f +15125,3749,19,4,f +15125,3795,191,2,f +15125,3829c01,0,1,f +15125,4006,0,1,f +15125,43722,71,1,f +15125,43723,71,1,f +15125,48336,71,1,f +15125,4865a,0,2,f +15125,50949,0,1,f +15125,50950,0,2,f +15125,51739,71,1,f +15125,54200,191,2,f +15125,54200,191,1,t +15125,59900,25,3,f +15125,6141,1,6,f +15125,6141,71,4,f +15125,6141,71,1,t +15125,6141,1,1,t +15125,6231,0,2,f +15125,75909stk01,9999,1,f +15125,85984,191,1,f +15125,85984,15,1,f +15125,85984,0,1,f +15125,85984,4,2,f +15125,87609,191,1,f +15125,93606,0,1,f +15125,970x026,15,1,f +15125,973pr2964c01,15,1,f +15125,98138,15,2,f +15125,98138,15,1,t +15125,99207,71,4,f +15125,99781,15,1,f +15126,32015,0,2,f +15126,32062,4,4,f +15126,43093,1,1,f +15126,54821,4,1,f +15126,59443,0,1,f +15126,64275,179,2,f +15126,64727,4,2,f +15126,6553,0,1,f +15126,87837,0,2,f +15126,90608,4,1,f +15126,90609,72,7,f +15126,90611,0,4,f +15126,90612,0,4,f +15126,90617,0,17,f +15126,90622,4,6,f +15126,90623,0,1,f +15126,90625,4,1,f +15126,90630,0,1,f +15126,90638,0,2,f +15126,90638pr0023,0,1,f +15126,90639,27,3,f +15126,90640,0,14,f +15126,90641,179,4,f +15126,90652,0,1,f +15126,92215,148,1,f +15126,92217,148,1,f +15126,92221,179,2,f +15126,92222,27,6,f +15126,92223,0,1,f +15126,92232,27,1,f +15126,92234,27,5,f +15126,92235pat0002,0,2,f +15126,93571,0,2,f +15127,2340,15,2,f +15127,2345,15,2,f +15127,2346,0,8,f +15127,2357,15,4,f +15127,2357,0,4,f +15127,2419,15,6,f +15127,2446,14,2,f +15127,2447,33,2,f +15127,2462,15,2,f +15127,2462,0,2,f +15127,2486,15,1,f +15127,298c02,15,2,f +15127,298c04,15,2,f +15127,3001,0,4,f +15127,3003,0,3,f +15127,3004,15,6,f +15127,3004p03,15,1,f +15127,3005,15,2,f +15127,3009,15,3,f +15127,3020,0,2,f +15127,3020,15,1,f +15127,3022,15,4,f +15127,3023,0,5,f +15127,3023,15,9,f +15127,3024,15,8,f +15127,3024,33,2,f +15127,3028,15,2,f +15127,3039,15,1,f +15127,3040b,15,2,f +15127,3068b,15,1,f +15127,3069bp25,15,2,f +15127,3482,15,8,f +15127,3626apr0001,14,2,f +15127,3639,0,1,f +15127,3640,0,1,f +15127,3660,15,1,f +15127,3660,0,2,f +15127,3665,15,4,f +15127,3666,0,1,f +15127,3666,15,2,f +15127,3749,7,8,f +15127,3794a,15,2,f +15127,3795,0,2,f +15127,3795,15,1,f +15127,3838,14,2,f +15127,3839b,0,1,f +15127,3894,15,4,f +15127,3956,15,1,f +15127,3957a,0,2,f +15127,3960,15,4,f +15127,4032a,0,1,f +15127,4070,15,2,f +15127,4081b,0,2,f +15127,4275b,15,2,f +15127,4276b,15,2,f +15127,4286,15,2,f +15127,4349,15,2,f +15127,4474,33,1,f +15127,4477,15,1,f +15127,4479,0,4,f +15127,4595,0,2,f +15127,4598,0,1,f +15127,4623,15,2,f +15127,4625,15,1,f +15127,4730,0,4,f +15127,4735,0,4,f +15127,4735,15,6,f +15127,4740,0,6,f +15127,6141,15,2,f +15127,6141,36,6,f +15127,6141,33,4,f +15127,6141,46,4,f +15127,970c00,14,2,f +15127,973p6ec01,15,2,f +15130,11203,29,2,f +15130,11211,15,1,f +15130,11212,71,1,f +15130,11403pr0001c01,5,1,f +15130,11477,26,3,f +15130,11477,15,3,f +15130,11816pr0002,78,1,f +15130,12939,19,2,f +15130,15395,4,1,f +15130,15396,4,1,f +15130,15533,84,2,f +15130,2343,47,2,f +15130,2432,71,4,f +15130,2447,47,1,t +15130,2447,47,1,f +15130,3001,19,1,f +15130,3004,19,6,f +15130,3005,19,1,f +15130,3009,19,1,f +15130,30171,26,1,f +15130,3020,19,1,f +15130,3020,71,1,f +15130,30237a,19,1,f +15130,30357,29,2,f +15130,3040b,71,4,f +15130,3045,71,2,f +15130,3062b,33,1,f +15130,3068b,72,1,f +15130,3069bpr0100,2,1,f +15130,3070b,15,1,f +15130,3070b,15,1,t +15130,3245b,19,2,f +15130,33291,4,1,t +15130,33291,4,1,f +15130,33291,10,1,t +15130,33291,10,4,f +15130,3464,15,2,f +15130,3659,19,1,f +15130,3795,15,1,f +15130,3941,15,2,f +15130,4032a,4,1,f +15130,4150p02,14,3,f +15130,59895,0,2,f +15130,59900,33,1,f +15130,60474,15,1,f +15130,60475b,15,1,f +15130,6141,47,1,t +15130,6141,47,1,f +15130,6190,4,1,f +15130,6231,15,2,f +15130,87585,70,1,f +15130,91501,15,2,f +15130,92255,226,1,f +15130,92456pr0019c01,78,1,f +15130,95344,28,1,f +15130,95344,28,1,t +15130,98138,46,1,f +15130,98138,46,1,t +15130,98138pr0024a,179,1,t +15130,98138pr0024a,179,1,f +15130,98283,84,2,f +15130,98397,71,1,f +15131,2412b,0,8,f +15131,2412b,72,9,f +15131,2412b,71,188,f +15131,2431,1,8,f +15131,2431,0,2,f +15131,2436,15,30,f +15131,2444,14,24,f +15131,2444,0,7,f +15131,2445,0,26,f +15131,2445,71,61,f +15131,2450,4,2,f +15131,2456,71,2,f +15131,2456,0,1,f +15131,2540,71,100,f +15131,2543,15,1,f +15131,2555,72,185,f +15131,2555,72,4,t +15131,2653,71,64,f +15131,2654,71,3,f +15131,2654,182,15,f +15131,2743,72,14,f +15131,2780,0,5,t +15131,2780,0,128,f +15131,2817,4,6,f +15131,2877,72,18,f +15131,3001,72,31,f +15131,3002,71,5,f +15131,3004,15,6,f +15131,3008,72,3,f +15131,3010,0,4,f +15131,3010,2,2,f +15131,30135,72,1,f +15131,3020,4,14,f +15131,3020,72,36,f +15131,3021,0,10,f +15131,3021,71,46,f +15131,3022,4,16,f +15131,3023,0,8,f +15131,3023,28,93,f +15131,3023,72,14,f +15131,3028,72,6,f +15131,3028,71,7,f +15131,3029,72,5,f +15131,3029,71,23,f +15131,3031,19,3,f +15131,3032,15,2,f +15131,3032,0,2,f +15131,3032,71,2,f +15131,3032,72,2,f +15131,3033,72,2,f +15131,3034,71,8,f +15131,3034,72,38,f +15131,3035,71,3,f +15131,3035,72,8,f +15131,3036,71,1,f +15131,30360,71,7,f +15131,30368,0,1,f +15131,30374,36,1,f +15131,30375,72,1,f +15131,30376,72,1,f +15131,30377,72,1,t +15131,30377,72,1,f +15131,30382,0,4,f +15131,3039,71,14,f +15131,3040b,71,7,f +15131,30414,72,1,f +15131,30503,72,14,f +15131,30504,72,2,f +15131,3062bpr37,41,1,f +15131,3062bpr40,72,1,f +15131,3069b,0,6,f +15131,3176,0,8,f +15131,32001,0,51,f +15131,32018,0,8,f +15131,32054,4,8,f +15131,32059,71,2,f +15131,32064b,71,13,f +15131,32073,71,1,f +15131,32278,0,8,f +15131,32316,4,8,f +15131,3245c,71,19,f +15131,32523,1,6,f +15131,32555,14,6,f +15131,3460,19,41,f +15131,3460,72,21,f +15131,3622,14,12,f +15131,3623,71,35,f +15131,3626bpr0639,71,1,f +15131,3626bpr0721,78,1,f +15131,3626cpr0822,15,1,f +15131,3665,71,2,f +15131,3666,71,53,f +15131,3666,0,8,f +15131,3673,71,2,f +15131,3673,71,1,t +15131,3678b,72,2,f +15131,3700,0,8,f +15131,3701,0,8,f +15131,3705,0,7,f +15131,3709,4,9,f +15131,3710,72,49,f +15131,3710,4,21,f +15131,3710,0,8,f +15131,3738,4,2,f +15131,3747b,71,4,f +15131,3794b,72,23,f +15131,3794b,71,96,f +15131,3795,71,6,f +15131,3832,0,14,f +15131,3832,15,5,f +15131,3839b,71,8,f +15131,3894,72,16,f +15131,3894,0,12,f +15131,3895,72,32,f +15131,3937,0,2,f +15131,3941,71,14,f +15131,3958,71,1,f +15131,4032a,1,10,f +15131,4032a,72,31,f +15131,4081b,72,1,f +15131,4151b,72,2,f +15131,41539,71,6,f +15131,4162,0,2,f +15131,41769,71,11,f +15131,41770,71,11,f +15131,42022,0,8,f +15131,42445,47,2,f +15131,42446,71,1,f +15131,4274,1,3,t +15131,4274,1,32,f +15131,4282,72,22,f +15131,4287,71,4,f +15131,4287,0,24,f +15131,43093,1,11,f +15131,4445,71,4,f +15131,4460b,72,2,f +15131,44728,72,4,f +15131,4477,72,18,f +15131,4510,15,2,f +15131,4510,0,2,f +15131,47397,71,53,f +15131,47397,72,9,f +15131,47398,71,53,f +15131,47398,72,9,f +15131,47457,72,4,f +15131,4854,15,1,f +15131,48729a,72,1,t +15131,48729b,72,1,f +15131,49668,135,1,f +15131,50231,0,1,f +15131,50304,71,1,f +15131,50305,71,1,f +15131,50950,0,8,f +15131,51739,71,7,f +15131,52107,0,37,f +15131,54200,71,1,t +15131,54200,71,1,f +15131,54383,71,34,f +15131,54384,71,34,f +15131,57899,0,3,f +15131,58247,0,1,f +15131,59230,72,1,f +15131,59230,72,1,t +15131,59426,72,2,f +15131,59900,72,1,f +15131,60470a,0,4,f +15131,60478,72,97,f +15131,60479,71,57,f +15131,60481,71,2,f +15131,6106,71,6,f +15131,6111,15,2,f +15131,6134,4,2,f +15131,6141,72,104,f +15131,6141,41,1,t +15131,6141,36,8,f +15131,6141,41,3,f +15131,6141,70,1,t +15131,6141,36,1,t +15131,6141,72,5,t +15131,6141,70,2,f +15131,6178,71,12,f +15131,6232,71,2,f +15131,63864,71,26,f +15131,64567,80,1,f +15131,6558,1,30,f +15131,6636,71,49,f +15131,6636,0,2,f +15131,73983,1,22,f +15131,73983,0,6,f +15131,75c08,71,2,f +15131,85970,0,8,f +15131,85984,72,26,f +15131,87079,71,94,f +15131,87087,71,1,f +15131,87570pr0001,378,1,f +15131,90498,0,1,f +15131,92099,72,10,f +15131,92280,4,24,f +15131,92280,0,2,f +15131,92438,71,6,f +15131,92593,71,31,f +15131,970c00,72,1,f +15131,970c00,0,1,f +15131,970x194,14,1,f +15131,970x199,70,1,f +15131,973pr1469c01,0,1,f +15131,973pr1618c01,14,1,f +15131,973pr1817c01,72,1,f +15131,973pr1877c01,71,1,f +15134,2654,46,1,f +15134,3022,0,1,f +15134,30374,297,1,f +15134,3065,40,2,f +15134,3626cpr0872,0,1,f +15134,4497,148,1,f +15134,63965,70,1,f +15134,64567,297,1,f +15134,970c00pr0323,0,1,f +15134,973pr1904c01,0,1,f +15134,98133pr0009,0,1,f +15134,98141,297,1,f +15134,98343pr0002,297,1,f +15134,98354pr0017,40,1,f +15135,2343,297,1,f +15135,2343,297,1,t +15135,3031,70,1,f +15135,3062b,70,4,f +15135,3062b,70,1,t +15135,33057,484,1,f +15135,4032a,0,1,f +15135,4589,70,1,t +15135,4589,70,8,f +15135,6256,82,1,f +15136,2362a,52,2,f +15136,2431,0,1,f +15136,2444,0,1,f +15136,2496,0,2,f +15136,2555,85,2,f +15136,2655,71,2,f +15136,298c02,71,1,f +15136,298c02,71,1,t +15136,3001,0,1,f +15136,3002,15,1,f +15136,3003,114,4,f +15136,3005,114,1,f +15136,3010,15,1,f +15136,30145,15,4,f +15136,30153,45,1,f +15136,30256,379,1,f +15136,3035,15,1,f +15136,30362,0,1,f +15136,3066,45,2,f +15136,3066,129,4,f +15136,3068bpb0060,15,1,f +15136,3069bp02,71,1,f +15136,3069bpb041,15,1,f +15136,3069bpr0055,15,1,f +15136,3070bp01,14,1,f +15136,3070bp01,14,1,t +15136,32054,0,1,f +15136,33016,115,1,f +15136,33025,115,1,f +15136,3626b,47,1,f +15136,3666,0,1,f +15136,3679,71,1,f +15136,3680,0,1,f +15136,3741,2,1,f +15136,3741,2,1,t +15136,3742,5,3,f +15136,3742,5,1,t +15136,3794a,71,2,f +15136,3795,85,1,f +15136,3813,0,1,f +15136,3852b,118,1,f +15136,3937,5,1,f +15136,3940b,85,1,f +15136,3956,379,1,f +15136,4081b,0,1,f +15136,4215978,9999,1,f +15136,4222a,118,1,f +15136,4523,26,1,f +15136,4589,42,4,f +15136,47116,379,1,f +15136,47122,117,1,f +15136,47376,45,2,f +15136,4740,42,2,f +15136,4740,383,2,f +15136,4740,0,2,f +15136,47683,383,1,f +15136,47689,11,1,f +15136,47905,0,1,f +15136,6081,85,2,f +15136,6124,42,2,f +15136,6134,115,1,f +15136,6141,14,2,f +15136,6141,42,1,t +15136,6141,42,8,f +15136,6180,15,1,f +15136,6190,0,1,t +15136,6190,0,1,f +15136,6199,52,1,f +15136,6203,5,1,f +15136,6541,0,1,f +15136,6636,0,1,f +15136,x14,115,1,f +15136,x1904cx1,15,2,f +15138,3003,0,3,f +15138,30340,2,1,f +15138,30385,34,1,f +15138,3626cpr1049,78,1,f +15138,3957a,0,1,f +15138,4081b,0,1,f +15138,4360,0,1,f +15138,58176,35,1,f +15138,59900,71,2,f +15138,6141,34,1,t +15138,6141,34,2,f +15138,72326pr0002,10,1,f +15138,970x028,85,1,f +15138,973pr2140c01,288,1,f +15140,2420,15,2,f +15140,2453a,15,2,f +15140,2454a,15,3,f +15140,2465,15,1,f +15140,2518,2,4,f +15140,2540,7,1,f +15140,2610,14,3,f +15140,298c02,15,2,f +15140,3004,4,4,f +15140,3004,15,1,f +15140,3008,4,1,f +15140,3009,15,3,f +15140,3023,7,2,f +15140,3023,15,2,f +15140,3023,4,3,f +15140,3027,14,1,f +15140,3028,14,1,f +15140,3034,1,1,f +15140,3622,15,2,f +15140,3626bp03,14,1,f +15140,3626bp04,14,1,f +15140,3626bpb0175,14,1,f +15140,3666,4,1,f +15140,3899,47,2,f +15140,3901,0,1,f +15140,3957a,15,2,f +15140,4085c,7,6,f +15140,4095,4,1,f +15140,4095,15,2,f +15140,4215a,15,1,f +15140,4282,15,1,f +15140,4485,1,1,f +15140,4495a,1,2,f +15140,4596,7,6,f +15140,4599a,14,1,f +15140,4599a,4,1,f +15140,4623,15,2,f +15140,476,15,2,f +15140,476,4,1,f +15140,4865a,15,3,f +15140,6020,0,1,f +15140,6075,1,1,f +15140,6075,4,1,f +15140,6075,15,1,f +15140,6093,4,1,f +15140,6595stk01,9999,1,f +15140,970c00,4,1,f +15140,970c00,15,1,f +15140,970x026,14,1,f +15140,973c11,0,1,f +15140,973pb0061c01,14,1,f +15140,973pb0128c01,15,1,f +15140,x66px11,47,1,f +15140,x66px7,47,1,f +15140,x66px8,47,1,f +15141,32533,36,1,f +15141,47304,0,1,f +15142,3005,114,4,f +15142,3659,5,3,f +15142,3958,4,1,f +15142,4728,45,4,f +15142,54821,178,1,f +15143,3001,1,1,f +15143,3004,73,1,f +15143,3021,73,4,f +15143,3023,47,2,f +15143,3065,47,1,f +15143,3660,1,1,f +15143,3710,73,2,f +15143,3747b,1,1,f +15143,3794a,0,2,f +15143,4589,0,1,f +15143,6141,36,1,t +15143,6141,15,1,t +15143,6141,34,1,f +15143,6141,15,1,f +15143,6141,36,1,f +15143,6141,34,1,t +15144,11211,4,1,f +15144,12622,0,1,f +15144,15207,321,2,f +15144,2412b,71,2,f +15144,2431,19,2,f +15144,2431pr0017,14,4,f +15144,2431pr0028,72,1,f +15144,2431pr0061,72,1,f +15144,2432,14,1,f +15144,2512,71,1,f +15144,2877,72,1,f +15144,3001,71,3,f +15144,3001,4,3,f +15144,3001,2,2,f +15144,3001,27,2,f +15144,3001,321,3,f +15144,3001,14,2,f +15144,3001,25,2,f +15144,3003,14,2,f +15144,3003,27,2,f +15144,3003,2,2,f +15144,3003,25,2,f +15144,3003,4,2,f +15144,3003,71,3,f +15144,3004,14,2,f +15144,3004,25,2,f +15144,3004,0,1,f +15144,3004,19,6,f +15144,3004,4,2,f +15144,3004,2,2,f +15144,3004,321,6,f +15144,3004,27,2,f +15144,3010,19,3,f +15144,3010,2,2,f +15144,3010,28,1,f +15144,3022,25,1,f +15144,3023,19,1,f +15144,30236,71,2,f +15144,30293,72,1,f +15144,30294,72,1,f +15144,30386,0,2,f +15144,30387,14,2,f +15144,30389b,0,1,f +15144,30395,72,1,f +15144,30396,0,1,f +15144,3040b,4,2,f +15144,3040b,2,4,f +15144,3040b,14,2,f +15144,30592,71,1,f +15144,3069b,19,1,f +15144,3069b,36,2,f +15144,3245c,0,1,f +15144,3464,15,1,f +15144,3622,2,2,f +15144,3626bpr0388,14,1,f +15144,3666,19,1,f +15144,3710,19,4,f +15144,3710,0,1,f +15144,3795,2,1,f +15144,3795,71,1,f +15144,3795,72,2,f +15144,3823,47,1,f +15144,3829c01,71,1,f +15144,3833,4,1,f +15144,3837,72,1,f +15144,3841,72,1,f +15144,3942c,25,1,f +15144,3958,0,1,f +15144,4079b,70,2,f +15144,4083,0,1,f +15144,59895,0,1,f +15144,59900,182,2,f +15144,6014b,71,4,f +15144,6020,0,1,f +15144,64448,14,2,f +15144,6636,19,2,f +15144,74698,0,1,f +15144,87081,0,1,f +15144,87697,0,4,f +15144,89523,19,1,f +15144,92338,72,1,f +15144,93273,72,2,f +15144,96874,25,1,t +15144,970c00,25,1,f +15144,973pr1182c01,25,1,f +15144,98283,84,4,f +15144,98283,28,4,f +15144,98288,4,1,f +15146,3626bpr1055,27,1,f +15146,72326pr0003,72,1,f +15146,88646,0,1,f +15146,95199,0,1,f +15146,970c00pr0393,72,1,f +15146,973pr2153c01,72,1,f +15146,99254,72,1,f +15147,120317,9999,1,f +15150,765c15,7,1,f +15150,765c96,7,1,f +15153,10247,71,1,f +15153,11203,29,1,f +15153,11477,5,4,f +15153,11477,85,4,f +15153,11618,26,1,f +15153,11618,26,1,t +15153,12939,15,1,f +15153,13770,297,1,f +15153,14769,297,1,f +15153,14769,30,2,f +15153,14769,14,2,f +15153,15571,297,1,f +15153,15745,45,3,f +15153,18853,29,1,t +15153,18853,29,1,f +15153,18853,30,1,t +15153,18853,30,1,f +15153,18920,179,1,t +15153,18920,179,1,f +15153,18970,297,1,f +15153,20482,47,1,t +15153,20482,47,4,f +15153,23988,297,1,f +15153,23988,297,1,t +15153,2453b,15,1,f +15153,2460,15,1,f +15153,24668,226,1,f +15153,25131,9999,1,t +15153,30153,41,1,f +15153,30176,2,2,f +15153,3020,5,1,f +15153,3020,19,1,f +15153,3020,15,4,f +15153,3022,71,1,f +15153,3023,46,1,f +15153,3023,85,5,f +15153,3031,19,1,f +15153,3040bpr0003,71,1,f +15153,30613,15,1,f +15153,33243,31,2,f +15153,33291,5,5,f +15153,33291,5,1,t +15153,33322,297,1,t +15153,33322,297,1,f +15153,3666,2,1,f +15153,3710,2,2,f +15153,3852b,322,1,f +15153,3899,45,1,f +15153,4032a,15,1,f +15153,44728,15,1,f +15153,4495b,5,1,f +15153,50950,297,2,f +15153,54200,41,2,f +15153,54200,41,1,t +15153,54200,297,4,f +15153,54200,297,1,t +15153,59900,129,1,f +15153,59900,1002,1,f +15153,60583b,15,2,f +15153,60897,71,2,f +15153,6141,27,4,f +15153,6141,41,1,t +15153,6141,46,1,t +15153,6141,46,2,f +15153,6141,41,2,f +15153,6141,27,1,t +15153,87079,30,1,f +15153,88072,19,1,f +15153,91988,19,2,f +15153,93094,5,1,f +15153,93094,5,1,t +15153,98138pr0018,84,1,t +15153,98138pr0018,84,1,f +15154,2352,4,2,f +15154,2456,14,2,f +15154,2456,15,2,f +15154,2456,4,2,f +15154,2577,1,4,f +15154,3001,1,20,f +15154,3001,0,8,f +15154,3001,14,26,f +15154,3001,4,26,f +15154,3001,15,22,f +15154,3001pr1,14,1,f +15154,3002,15,6,f +15154,3002,4,8,f +15154,3002,1,6,f +15154,3002,0,4,f +15154,3002,14,8,f +15154,3003,0,8,f +15154,3003,15,28,f +15154,3003,14,30,f +15154,3003,4,30,f +15154,3003,1,22,f +15154,3003pe2,14,2,f +15154,3003pe2,15,2,f +15154,3006,14,2,f +15154,3007,4,2,f +15154,3185,15,8,f +15154,3334,2,1,f +15154,3471,2,1,f +15154,3483,0,6,f +15154,4130,4,2,f +15154,4131,15,2,f +15154,4132,4,4,f +15154,4133,15,4,f +15154,4180c02,0,3,f +15154,4202,14,1,f +15154,4727,2,6,f +15154,4728,14,2,f +15154,4728,4,2,f +15154,4728,1,2,f +15154,4730,1,1,f +15154,4743,14,1,f +15154,4744pb07,2,1,f +15154,4744pb07,4,1,f +15154,4744pb07,14,1,f +15154,4744pb11,2,1,f +15154,4744pb12,4,1,f +15154,4744pb12,14,1,f +15154,4745,4,1,f +15154,6007,8,1,f +15156,265bc01,14,2,f +15156,2723pr01,15,2,f +15156,3021,0,6,f +15156,3022,0,7,f +15156,3023,0,10,f +15156,3036,14,3,f +15156,3039,14,5,f +15156,3040b,14,6,f +15156,3069b,14,7,f +15156,3460,0,8,f +15156,3461,0,4,f +15156,3482,0,4,f +15156,3623,0,6,f +15156,3634,0,4,f +15156,3647,7,4,f +15156,3648a,7,8,f +15156,3650a,7,1,f +15156,3665,14,6,f +15156,3666,0,8,f +15156,3673,7,8,f +15156,3700,14,12,f +15156,3701,14,7,f +15156,3702,14,4,f +15156,3703,14,8,f +15156,3705,0,2,f +15156,3706,0,4,f +15156,3707,0,3,f +15156,3708,0,2,f +15156,3709,0,4,f +15156,3710,0,8,f +15156,3711a,0,42,f +15156,3713,7,10,f +15156,3737,0,2,f +15156,3738,0,2,f +15156,3743,7,2,f +15156,3749,7,4,f +15156,3795,0,8,f +15156,3830,14,1,f +15156,3831,14,1,f +15156,3873,0,94,f +15156,3894,14,6,f +15156,3895,14,3,f +15156,4019,7,4,f +15156,4032a,0,2,f +15156,4143,7,2,f +15156,4185,7,2,f +15156,4261,7,2,f +15156,4262,0,8,f +15156,4265a,7,6,f +15156,4274,7,4,f +15156,4477,0,2,f +15156,4519,0,2,f +15156,4716,7,6,f +15156,6216b,7,2,f +15156,766c96,7,6,f +15156,rb00168,0,3,f +15156,rb00170,0,3,f +15156,x1161cx1,0,2,f +15156,x1162,47,1,f +15156,x1163,1,1,f +15156,x1164,0,1,f +15157,3002,2,1,f +15157,3003,2,2,f +15157,3003,4,1,f +15157,3020,14,1,f +15157,3020,0,2,f +15157,3034,0,1,f +15157,3039,42,1,f +15157,3298p1b,4,1,f +15157,3747b,2,1,f +15157,3795,0,1,f +15158,11477,26,1,f +15158,11618,322,1,t +15158,11618,322,1,f +15158,15573,70,1,f +15158,18852pr0001,15,2,f +15158,18855,323,1,f +15158,2420,19,1,f +15158,2654,71,1,f +15158,2877,14,2,f +15158,3004,19,3,f +15158,3005,19,2,f +15158,3010,19,2,f +15158,30176,2,1,f +15158,3020,27,1,f +15158,3020,30,2,f +15158,3023,19,2,f +15158,3036,27,1,f +15158,3040b,19,1,f +15158,3062b,41,1,f +15158,33172,25,1,f +15158,33183,10,1,t +15158,33183,10,1,f +15158,33291,10,2,f +15158,33291,26,3,f +15158,33291,10,1,t +15158,33291,26,1,t +15158,3633,15,1,f +15158,3822,15,1,f +15158,4599b,14,1,f +15158,4599b,14,1,t +15158,48336,14,1,f +15158,60470a,15,1,f +15158,60897,71,2,f +15158,6141,4,3,f +15158,6141,4,1,t +15158,93092,5,1,f +15158,98283,84,2,f +15158,98387pr0001,15,1,f +15159,273,0,25,f +15160,10314,71,6,f +15160,2357,72,2,f +15160,2412b,72,10,f +15160,2412b,14,4,f +15160,2419,72,1,f +15160,2420,72,4,f +15160,2431,72,4,f +15160,2449,71,4,f +15160,2450,70,4,f +15160,2454ps5,0,1,f +15160,2465,0,2,f +15160,2730,15,2,f +15160,2780,0,1,t +15160,2780,0,7,f +15160,2877,72,4,f +15160,3001,71,2,f +15160,3001,0,7,f +15160,3002,15,1,f +15160,3003,71,3,f +15160,3004,0,9,f +15160,3008,71,6,f +15160,3009,72,4,f +15160,3010,71,8,f +15160,30135,1,1,f +15160,30177,15,1,f +15160,3020,70,1,f +15160,3020,71,7,f +15160,3021,72,3,f +15160,3022,72,2,f +15160,3023,71,5,f +15160,30236,19,2,f +15160,3029,72,2,f +15160,3031,71,1,f +15160,3032,72,3,f +15160,3034,0,1,f +15160,30355,71,1,f +15160,30356,71,1,f +15160,30359b,72,4,f +15160,30363,72,1,f +15160,30364,71,2,f +15160,30367b,72,1,f +15160,3037,71,2,f +15160,30375,80,1,f +15160,30376,80,1,f +15160,30377,80,1,t +15160,30377,80,2,f +15160,30387,71,2,f +15160,3039,70,4,f +15160,30414,15,4,f +15160,3045,15,2,f +15160,3048c,70,1,f +15160,30503,72,2,f +15160,30553,72,2,f +15160,3062b,15,4,f +15160,3062b,72,8,f +15160,3063b,71,18,f +15160,3068b,71,2,f +15160,3069b,71,2,f +15160,3069b,72,1,f +15160,3069bpa2,72,1,f +15160,3190,72,1,f +15160,3191,72,1,f +15160,32028,15,1,f +15160,32062,0,4,f +15160,32064a,19,10,f +15160,32074c01,0,1,f +15160,32192,72,4,f +15160,3297,71,2,f +15160,3298,71,2,f +15160,3460,72,3,f +15160,3622,71,2,f +15160,3626b,0,1,f +15160,3626b,15,2,f +15160,3626bpr0001,78,1,f +15160,3626bpr0001,70,1,f +15160,3665,72,6,f +15160,3666,72,2,f +15160,3678b,15,1,f +15160,3684,72,2,f +15160,3684,71,3,f +15160,3700,71,4,f +15160,3701,15,2,f +15160,3705,0,1,f +15160,3710,72,11,f +15160,3747b,72,8,f +15160,3749,19,1,f +15160,3795,72,5,f +15160,3795,19,2,f +15160,3894,71,8,f +15160,3937,72,12,f +15160,3937,378,4,f +15160,3938,15,2,f +15160,3941,0,2,f +15160,3956,71,8,f +15160,40244,19,2,f +15160,40490,0,2,f +15160,41539,71,2,f +15160,4162,71,2,f +15160,41669,0,2,f +15160,41747,71,1,f +15160,41747,72,2,f +15160,41748,72,2,f +15160,41748,71,1,f +15160,41749,378,2,f +15160,41749,70,2,f +15160,41750,70,2,f +15160,41750,378,2,f +15160,41766,72,2,f +15160,41766,70,12,f +15160,41769,19,1,f +15160,41769,72,3,f +15160,41770,19,1,f +15160,41770,72,3,f +15160,41881,40,1,f +15160,42022,72,2,f +15160,42023,378,2,f +15160,4274,71,1,t +15160,4274,71,4,f +15160,4286,72,2,f +15160,43093,1,9,f +15160,43337,378,2,f +15160,43337,72,2,f +15160,4349,0,3,f +15160,4360,0,1,f +15160,43722,71,2,f +15160,43723,71,2,f +15160,44375a,71,1,f +15160,4445,378,2,f +15160,44567b,71,2,f +15160,44568,71,4,f +15160,44569,19,4,f +15160,44570,71,4,f +15160,44728,15,2,f +15160,4477,19,2,f +15160,4519,71,4,f +15160,4532,71,2,f +15160,4533,72,2,f +15160,4588,72,2,f +15160,4589,80,1,f +15160,4589,19,4,f +15160,4589,182,4,f +15160,4599a,71,4,f +15160,4735,71,4,f +15160,4740,71,2,f +15160,4740,57,7,f +15160,47457,71,3,f +15160,47905,72,4,f +15160,48092,71,8,f +15160,48336,0,5,f +15160,4865a,0,1,f +15160,48729a,80,1,f +15160,48729a,80,1,t +15160,50304,71,1,f +15160,50305,71,1,f +15160,54200,72,2,f +15160,6003,19,2,f +15160,6091,72,4,f +15160,6106,71,2,f +15160,6134,71,14,f +15160,6141,57,3,f +15160,6141,57,1,t +15160,6141,80,1,t +15160,6141,80,1,f +15160,6141,15,1,t +15160,6141,15,2,f +15160,6179,0,1,f +15160,6538b,0,2,f +15160,6541,71,4,f +15160,6587,72,6,f +15160,6632,15,2,f +15160,6636,378,6,f +15160,6636,72,2,f +15160,76110c01,71,1,f +15160,95120,72,4,f +15160,970c00,1,1,f +15160,970x192,71,1,f +15160,970x194,70,1,f +15160,973pr1246c01,71,1,f +15160,973pr1254c01,1,1,f +15160,973pr1255c01,70,1,f +15160,x50px1,2,1,f +15161,3004,4,2,f +15161,3004,14,1,f +15161,3005,1,1,f +15161,3031,0,1,f +15161,3062a,7,1,f +15161,3062a,14,1,f +15161,3137c01,0,1,f +15161,3626apr0001,14,6,f +15161,3633,0,2,f +15161,3641,0,2,f +15161,3795,0,1,f +15161,3839a,0,1,f +15161,3844,7,4,f +15161,3846p47,7,4,f +15161,3847a,7,4,f +15161,3848,7,2,f +15161,3896,8,2,f +15161,970c00,4,1,f +15161,970x021,7,2,f +15161,970x021,0,4,f +15161,973p47c01,4,6,f +15162,2432,13,1,f +15162,2433,0,1,f +15162,2610,14,1,f +15162,3004,7,1,f +15162,3020,7,1,f +15162,3024,13,2,f +15162,3024,13,1,t +15162,3626bp02,14,1,f +15162,3666,13,2,f +15162,3666,13,1,t +15162,3794a,15,1,f +15162,3829c01,15,1,f +15162,3937,15,1,f +15162,3938,7,1,f +15162,4854,15,1,f +15162,4855,15,1,f +15162,4859,13,1,f +15162,4871,15,1,f +15162,6093,0,1,f +15162,970c00,15,1,f +15162,973pb0018c01,13,1,f +15163,11153,70,4,f +15163,11211,19,2,f +15163,11477,19,1,f +15163,11477,70,10,f +15163,14417,72,2,f +15163,14418,71,2,f +15163,14769,19,4,f +15163,14769pr1003,15,2,f +15163,15068,19,1,f +15163,15208,19,2,f +15163,15573,28,4,f +15163,18649,0,1,f +15163,2420,70,4,f +15163,2423,2,2,f +15163,2431,308,2,f +15163,2654,70,2,f +15163,3020,70,2,f +15163,3020,19,1,f +15163,3022,4,2,f +15163,3022,19,2,f +15163,3022,70,4,f +15163,3023,19,9,f +15163,3023,70,18,f +15163,3024,70,1,t +15163,3024,70,1,f +15163,30414,19,1,f +15163,30565,27,4,f +15163,3068b,28,1,f +15163,3069b,308,10,f +15163,33291,31,4,f +15163,33291,31,1,t +15163,33291,191,2,f +15163,33291,191,1,t +15163,3623,70,2,f +15163,3679,71,1,f +15163,3680,15,1,f +15163,3710,70,2,f +15163,3795,70,2,f +15163,44301a,72,3,f +15163,44301b,0,2,f +15163,44302a,72,2,f +15163,44302a,0,2,f +15163,44728,70,6,f +15163,49668,19,2,f +15163,60471,15,1,f +15163,6141,19,2,f +15163,6141,19,1,t +15163,63868,70,4,f +15163,73983,19,4,f +15163,85984,70,3,f +15163,85984,19,2,f +15163,87087,70,4,f +15163,93273,70,6,f +15163,99206,15,4,f +15163,99207,0,1,f +15163,99780,15,1,f +15163,99781,71,2,f +15167,15515,27,2,f +15167,24911,71,1,f +15167,3011,484,1,f +15167,3011,27,1,f +15167,3437,484,3,f +15167,4066,484,2,f +15167,54246,15,1,f +15167,64402,14,1,f +15167,88692,191,1,f +15167,98233,10,1,f +15167,98233,70,1,f +15169,2412b,0,3,f +15169,2420,2,2,f +15169,2431,15,2,f +15169,2445,72,1,f +15169,2458,71,4,f +15169,3001,4,1,f +15169,3004,70,1,f +15169,3004,19,2,f +15169,3004,2,4,f +15169,3005,2,2,f +15169,3005,71,2,f +15169,3010,71,1,f +15169,3020,2,2,f +15169,3020,0,3,f +15169,3021,71,1,f +15169,3022,15,2,f +15169,3023,2,5,f +15169,3023,71,2,f +15169,3023,70,5,f +15169,3023,47,2,f +15169,3023,4,2,f +15169,3024,2,8,f +15169,3024,70,2,f +15169,3024,71,2,f +15169,3024,47,2,f +15169,3032,71,1,f +15169,3032,2,1,f +15169,3034,2,6,f +15169,3035,71,1,f +15169,3036,71,1,f +15169,3040b,71,2,f +15169,30414,0,2,f +15169,30648,0,4,f +15169,30663,71,1,f +15169,3068b,71,3,f +15169,3068b,2,2,f +15169,3069b,14,2,f +15169,3069b,15,4,f +15169,3069b,19,2,f +15169,3070b,36,1,t +15169,3070b,36,2,f +15169,3070b,15,1,t +15169,3070b,15,2,f +15169,3460,71,2,f +15169,3460,2,3,f +15169,3623,15,4,f +15169,3623,2,2,f +15169,3660,2,2,f +15169,3665,2,2,f +15169,3666,70,2,f +15169,3710,71,2,f +15169,3710,0,2,f +15169,3795,72,1,f +15169,4070,70,2,f +15169,4081b,72,2,f +15169,4085c,0,4,f +15169,4162,2,1,f +15169,41769,2,2,f +15169,41770,2,2,f +15169,4286,2,2,f +15169,48336,0,2,f +15169,50950,15,2,f +15169,50950,71,2,f +15169,54200,71,2,f +15169,54200,47,1,t +15169,54200,71,1,t +15169,54200,182,1,t +15169,54200,47,4,f +15169,54200,182,2,f +15169,55981,71,4,f +15169,58181,47,1,f +15169,6141,72,1,t +15169,6141,19,4,f +15169,6141,182,1,t +15169,6141,182,4,f +15169,6141,19,2,t +15169,6141,72,2,f +15170,2335pb005,4,1,f +15170,2431,8,1,f +15170,2449,4,4,f +15170,2489,6,2,f +15170,2540,0,2,f +15170,2555,4,3,f +15170,2561,6,1,f +15170,2566,0,2,f +15170,2570,6,2,f +15170,2625,19,2,f +15170,2625,7,1,f +15170,2626,0,1,f +15170,2626,4,3,f +15170,2654,19,6,f +15170,3001,4,2,f +15170,3004,0,3,f +15170,30041,19,1,f +15170,30042,19,1,f +15170,3005,4,2,f +15170,3009,4,2,f +15170,3010,4,2,f +15170,3010,0,6,f +15170,30132,8,1,f +15170,30132,8,1,t +15170,30136,6,8,f +15170,30153,36,1,f +15170,30153,46,1,f +15170,30153,33,1,f +15170,30153,34,1,f +15170,30154,0,1,f +15170,30162,8,1,f +15170,3021,4,1,f +15170,30219,0,1,f +15170,3022,0,1,f +15170,3023,7,5,f +15170,30237a,8,3,f +15170,3032,19,2,f +15170,3036,7,1,f +15170,3040b,0,4,f +15170,3040b,4,1,f +15170,30414,7,1,f +15170,30540,4,1,f +15170,30552,0,1,f +15170,3062b,46,2,f +15170,3062b,0,6,f +15170,3062b,4,8,f +15170,30663,6,1,f +15170,3069b,8,1,f +15170,32059,7,1,f +15170,32062,0,1,f +15170,32064b,7,1,f +15170,3298,0,1,f +15170,3626bpb0169,14,2,f +15170,3626bpx127,14,1,f +15170,3633,4,6,f +15170,3665,0,8,f +15170,3679,7,1,f +15170,3680,0,1,f +15170,3700,0,3,f +15170,3794a,4,1,f +15170,3795,19,2,f +15170,3849,0,1,f +15170,3878,0,1,f +15170,3958,19,1,f +15170,4070,19,2,f +15170,4095,0,1,f +15170,4150,0,2,f +15170,4162,0,2,f +15170,4189434pb01,9999,1,t +15170,4189434pb02,9999,1,t +15170,4189434pb03,9999,1,t +15170,4274,7,3,f +15170,4274,7,1,t +15170,4286,0,4,f +15170,43898px2,8,2,f +15170,4495b,4,2,f +15170,4498,6,1,f +15170,4740,0,2,f +15170,4794b,6,2,f +15170,6019,0,1,f +15170,6111,4,2,f +15170,6125,4,1,f +15170,6141,0,6,f +15170,6141,0,1,t +15170,6538b,6,1,f +15170,970c00,8,1,f +15170,970c00,0,2,f +15170,973pb0273c01,8,2,f +15170,973px181c01,0,1,f +15170,sail7416,19,1,f +15172,3010,1,2,f +15172,3035,1,1,f +15172,3062b,4,2,f +15172,3633,14,2,f +15172,4327,14,1,f +15172,4424,14,1,f +15172,fab9e,9999,1,f +15174,2432,14,1,f +15174,2496,0,2,f +15174,2655,71,2,f +15174,30089,0,1,f +15174,3020,14,1,f +15174,30256,15,1,f +15174,3068bpr0136,72,1,f +15174,3626cpr0498,14,1,f +15174,4449,70,1,f +15174,4449,0,1,f +15174,4865a,47,2,f +15174,6141,0,1,t +15174,6141,0,1,f +15174,61976,70,1,f +15174,62810,484,1,f +15174,85984,14,1,f +15174,87087,71,1,f +15174,970c00,1,1,f +15174,973pr1170c01,4,1,f +15175,2335p30,15,1,f +15175,2335p31,15,1,f +15175,2343,14,1,f +15175,2453a,0,4,f +15175,2518,2,4,f +15175,2526,14,1,t +15175,2526,14,1,f +15175,2530,8,1,t +15175,2530,8,2,f +15175,2542,4,2,f +15175,2543,1,1,f +15175,2544,0,1,f +15175,2544,6,1,f +15175,2547,8,1,f +15175,2548,8,1,f +15175,2551,6,1,f +15175,2561,6,1,f +15175,2562,6,1,f +15175,3004,0,2,f +15175,3005,0,4,f +15175,3010,0,2,f +15175,3020,7,3,f +15175,3023,7,4,f +15175,3028,14,1,f +15175,3062b,14,1,f +15175,3623,7,2,f +15175,3626bp44,14,1,f +15175,3626bp48,14,1,f +15175,3626bp49,14,1,f +15175,3666,0,2,f +15175,3710,7,1,f +15175,3794a,0,4,f +15175,3795,0,2,f +15175,3839b,0,2,f +15175,3849,0,1,f +15175,3937,0,2,f +15175,3938,0,2,f +15175,3957a,0,1,f +15175,4738a,6,1,f +15175,4739a,6,1,f +15175,57503,334,1,f +15175,57504,334,1,f +15175,57505,334,1,f +15175,57506,334,1,f +15175,970c00,0,1,f +15175,970c00,15,1,f +15175,970c00,7,1,f +15175,973p33c01,14,1,f +15175,973p34c01,1,1,f +15175,973pb0206c01,15,1,f +15178,281,14,1,f +15178,3002,4,1,f +15178,3002,14,1,f +15178,3003,4,1,f +15178,3003,14,2,f +15178,3004,14,1,f +15178,3009,4,2,f +15178,3010,4,6,f +15178,3010,0,5,f +15178,3031,14,1,f +15178,3032,4,1,f +15178,3036,0,1,f +15178,3888ac01,14,1,f +15178,691,4,1,f +15178,692,4,1,f +15178,fab1a,9999,1,f +15179,14417,72,2,f +15179,14418,71,2,f +15179,14704,71,2,f +15179,14769pr1002,15,1,f +15179,14769pr1003,15,1,f +15179,15208,15,1,f +15179,15456,0,2,f +15179,3020,320,1,f +15179,3022,4,4,f +15179,3023,0,2,f +15179,3024,320,1,t +15179,3024,320,4,f +15179,3039,4,2,f +15179,3040b,4,2,f +15179,3710,4,2,f +15179,3794b,320,1,f +15179,3937,4,1,f +15179,44728,0,2,f +15179,48729a,0,2,f +15179,48729a,0,1,t +15179,49668,0,4,f +15179,54200,0,1,t +15179,54200,0,2,f +15179,54200,320,8,f +15179,54200,182,1,t +15179,54200,320,1,t +15179,54200,182,7,f +15179,61252,4,6,f +15179,6134,0,1,f +15179,87087,0,2,f +15179,92692,0,2,f +15179,93273,4,2,f +15179,99780,0,1,f +15181,2446,0,1,f +15181,2446,15,1,f +15181,2543,4,1,f +15181,30177,4,1,f +15181,3624,0,1,f +15181,3626bpb0018,14,1,f +15181,3626bpr0001,14,3,f +15181,3626bpx7,14,1,f +15181,3838,15,1,f +15181,3838,0,1,f +15181,970c00,15,1,f +15181,970c00,0,2,f +15181,970c00,1,1,f +15181,970x026,4,1,f +15181,973p30c01,14,1,f +15181,973p90c03,0,1,f +15181,973p90c05,15,1,f +15181,973pb0035c01,4,1,f +15181,973pb0240c01,4,1,f +15182,3004,14,4,f +15182,3004p0a,14,1,f +15182,3020,14,1,f +15182,3021,0,1,f +15182,3021,14,1,f +15182,3039,4,1,f +15182,3660,14,1,f +15184,6573,8,10,f +15185,3011,2,4,f +15185,3011pb08,14,1,f +15185,3437,14,4,f +15185,3437,2,2,f +15185,3437,1,1,f +15185,4253,14,1,f +15185,4883c02,1,1,f +15185,dupfig001,9999,2,f +15185,dupfig015,9999,1,f +15185,dupfig035,9999,2,f +15185,duphalfarch,14,2,f +15185,x978,1,1,f +15185,x978,14,1,f +15185,x979,14,1,f +15185,x979pb01,1,1,f +15185,x988,4,1,f +15186,2412b,4,5,f +15186,2413,0,1,f +15186,2431,7,2,f +15186,2453a,18,2,f +15186,2456,18,2,f +15186,2540,4,2,f +15186,2547,8,1,f +15186,2548,8,1,f +15186,3001,0,1,f +15186,3003,7,1,f +15186,30031,8,1,f +15186,3004,18,6,f +15186,3009,0,2,f +15186,30162,8,1,f +15186,30292,8,1,f +15186,30340,25,1,f +15186,3035,7,1,f +15186,3036,8,2,f +15186,3037px7,8,1,f +15186,30602pb002,25,1,f +15186,30608,0,1,f +15186,3062b,0,4,f +15186,3297px17,18,1,f +15186,3626bpb0053,14,1,f +15186,3626bpr0216,14,1,f +15186,3679,7,1,f +15186,3680,0,1,f +15186,3701,0,2,f +15186,3747a,14,1,f +15186,3794a,8,2,f +15186,3795,7,2,f +15186,3865,18,1,f +15186,3956,0,1,f +15186,3957a,7,2,f +15186,3962b,0,1,f +15186,4079,4,1,f +15186,41855,25,1,f +15186,42022,4,2,f +15186,42022pb01,25,2,f +15186,42023,14,2,f +15186,4349,0,1,f +15186,4476b,0,4,f +15186,4485,15,1,f +15186,4495b,4,1,f +15186,60169,7,1,f +15186,6019,0,4,f +15186,6020,0,2,f +15186,6075,25,1,f +15186,6141,0,1,t +15186,6141,0,2,f +15186,6141,7,1,t +15186,6141,7,1,f +15186,6736stk01,9999,1,t +15186,892pb10,14,1,f +15186,970c00pb010,1,1,f +15186,970x026,14,1,f +15186,973pb0057c01,4,1,f +15186,973pr0805c01,15,1,f +15187,2431,0,4,f +15187,2431,288,10,f +15187,2540,72,18,f +15187,3010,71,4,f +15187,3020,288,6,f +15187,3020,72,4,f +15187,3021,288,2,f +15187,3022,0,4,f +15187,3023,320,18,f +15187,3023,288,10,f +15187,3023,71,16,f +15187,3023,28,10,f +15187,3023,72,9,f +15187,3024,71,14,f +15187,3024,72,24,f +15187,3029,72,1,f +15187,3034,0,3,f +15187,3035,71,5,f +15187,3068b,71,4,f +15187,3070b,71,10,f +15187,3070b,71,1,t +15187,3460,71,2,f +15187,3623,71,14,f +15187,3659,71,2,f +15187,3666,71,2,f +15187,3666,288,4,f +15187,3710,71,10,f +15187,3794b,15,2,f +15187,3794b,0,6,f +15187,3795,71,2,f +15187,3795,0,13,f +15187,3832,72,3,f +15187,3832,0,9,f +15187,3832,15,1,f +15187,3937,72,2,f +15187,3958,71,2,f +15187,4162,71,2,f +15187,4162,0,3,f +15187,4162pr0022,0,1,f +15187,41769,288,1,f +15187,41770,288,1,f +15187,43337,71,6,f +15187,4589,0,2,f +15187,4865a,71,2,f +15187,54200,71,1,t +15187,54200,71,12,f +15187,6019,0,9,f +15187,6134,15,2,f +15187,6141,15,24,f +15187,6141,15,1,t +15187,6231,71,4,f +15187,63864,0,4,f +15187,73983,71,2,f +15188,2444,4,1,f +15188,2460,0,2,f +15188,2780,0,2,f +15188,43093,1,2,f +15188,47430,4,2,f +15188,47431,28,2,f +15188,47432,4,2,f +15188,47452,4,2,f +15188,47454,28,2,f +15188,47455,72,10,f +15188,47457,4,6,f +15188,47458,4,2,f +15188,47472pb01,4,1,f +15188,50602,137,2,f +15188,50623,137,1,f +15188,50629,137,2,f +15188,50653pb01,297,1,f +15188,50660c01pb01,4,1,f +15188,bb153pb08,28,1,f +15189,2479,7,1,f +15189,3003,4,1,f +15189,3020,14,2,f +15189,3034,14,1,f +15189,3039,4,2,f +15189,30474pb05,14,1,f +15189,3298,4,1,f +15189,3460,4,2,f +15189,3660,4,2,f +15189,3666,4,2,f +15189,3747b,4,1,f +15189,3795,14,1,f +15189,4729,4,1,f +15190,2420,72,5,f +15190,2420,71,3,f +15190,2420,2,2,f +15190,2431,71,4,f +15190,2445,0,3,f +15190,3003,72,1,f +15190,3004,71,6,f +15190,3020,70,5,f +15190,3020,71,7,f +15190,3021,72,5,f +15190,3021,2,3,f +15190,3021,71,12,f +15190,3023,71,6,f +15190,3023,72,5,f +15190,3023,2,4,f +15190,3023,47,3,f +15190,3024,71,26,f +15190,3024,47,35,f +15190,3024,1,2,f +15190,3024,72,13,f +15190,3024,14,2,f +15190,3024,2,2,f +15190,3024,4,4,f +15190,3028,0,4,f +15190,3069b,14,1,f +15190,3069b,0,7,f +15190,3069b,71,2,f +15190,3069b,4,5,f +15190,3070b,0,2,f +15190,3070b,4,3,f +15190,3070b,71,8,f +15190,33291,10,7,f +15190,3622,72,2,f +15190,3623,71,8,f +15190,3623,0,1,f +15190,3623,72,4,f +15190,3710,71,9,f +15190,3710,15,5,f +15190,3710,2,4,f +15190,3794b,2,9,f +15190,3794b,71,6,f +15190,3795,19,2,f +15190,4070,71,2,f +15190,4162,0,6,f +15190,4162pr0027,0,1,f +15190,4162pr89,0,1,f +15190,44301a,72,3,f +15190,54200,14,1,f +15190,6141,70,5,f +15190,6141,80,1,f +15190,63864,71,2,f +15190,6636,71,2,f +15190,73983,71,1,f +15190,87079,71,5,f +15190,87580,2,1,f +15191,2456,14,1,f +15191,3001,0,2,f +15191,3001,7,2,f +15191,3001,2,2,f +15191,3001,1,2,f +15191,3001,25,4,f +15191,3001,14,2,f +15191,3001,15,2,f +15191,3002,7,2,f +15191,3002,1,2,f +15191,3002,4,2,f +15191,3002,0,2,f +15191,3002,14,2,f +15191,3002,15,2,f +15191,3002,25,2,f +15191,3003,15,4,f +15191,3003,0,4,f +15191,3003,4,4,f +15191,3003,7,6,f +15191,3003,25,6,f +15191,3003,2,4,f +15191,3003,1,4,f +15191,3003,14,4,f +15191,3004,7,8,f +15191,3004,15,6,f +15191,3004,14,8,f +15191,3004,2,4,f +15191,3004,4,6,f +15191,3004,0,6,f +15191,3004,25,8,f +15191,3004,1,8,f +15191,3005,4,8,f +15191,3005,0,8,f +15191,3005,2,6,f +15191,3005,15,6,f +15191,3005,1,8,f +15191,3005pe2,8,1,f +15191,3005pe3,8,1,f +15191,3005px2,14,2,f +15191,3008,7,2,f +15191,3009,1,2,f +15191,3010,0,2,f +15191,3010,14,2,f +15191,3010,25,2,f +15191,3010p01,14,1,f +15191,3020,25,2,f +15191,3020,7,2,f +15191,3021,1,2,f +15191,3021,25,2,f +15191,3022,1,2,f +15191,3040b,2,2,f +15191,3040b,25,4,f +15191,3040b,7,2,f +15191,3665,25,4,f +15191,3665,7,2,f +15191,3665,2,2,f +15191,3957a,1,1,f +15191,4495b,14,1,f +15193,2412b,72,3,f +15193,2436,14,2,f +15193,298c02,0,1,f +15193,298c02,0,1,t +15193,3003,14,1,f +15193,3020,0,1,f +15193,3020,14,2,f +15193,3022,14,1,f +15193,3023,14,4,f +15193,3024,14,4,f +15193,30602,40,1,f +15193,3068b,72,1,f +15193,3068b,14,1,f +15193,3069b,14,2,f +15193,32028,14,1,f +15193,3641,0,6,f +15193,3679,71,1,f +15193,3680,0,1,f +15193,3710,14,1,f +15193,3795,0,1,f +15193,4070,14,4,f +15193,44301a,14,1,f +15193,44302a,72,3,f +15193,44567a,72,2,f +15193,44728,14,1,f +15193,4589,0,1,f +15193,4624,71,6,f +15193,51739,14,2,f +15193,54200,14,2,f +15193,54200,36,2,f +15193,6091,14,4,f +15193,6141,71,2,f +15193,6141,71,1,t +15193,6157,72,3,f +15194,2780,0,16,f +15194,32002,8,3,f +15194,32013,135,4,f +15194,32017,7,1,f +15194,32039,484,1,f +15194,32062,0,9,f +15194,32063,7,4,f +15194,32065,7,1,f +15194,32174,14,2,f +15194,32174,484,5,f +15194,32174,4,2,f +15194,32177,8,1,f +15194,32201,135,2,f +15194,32249,484,2,f +15194,32250,484,2,f +15194,32270,7,1,f +15194,32271,135,2,f +15194,32278,135,1,f +15194,32278,8,1,f +15194,32291,0,1,f +15194,32310,484,1,f +15194,32310,135,2,f +15194,32348,135,2,f +15194,32449,25,2,f +15194,32449,8,2,f +15194,32449,135,4,f +15194,32505,14,1,f +15194,32552,462,1,f +15194,32576,14,2,f +15194,32579,7,1,f +15194,3705,0,4,f +15194,3706,0,4,f +15194,3713,7,3,f +15194,3749,19,5,f +15194,41669,135,1,f +15194,41670,4,2,f +15194,41677,484,2,f +15194,41678,0,3,f +15194,41752,8,1,f +15194,42003,7,4,f +15194,4274,7,5,f +15194,43093,1,1,f +15194,44033,484,4,f +15194,44136,8,1,f +15194,44137,4,1,f +15194,44139,8,1,f +15194,44140,179,1,f +15194,44809,14,2,f +15194,44810,4,1,f +15194,44811,179,1,f +15194,44812,179,1,f +15194,4519,7,12,f +15194,45749,7,4,f +15194,6141,36,3,f +15194,6536,8,2,f +15194,6536,484,1,f +15194,6538b,135,1,f +15194,6553,0,2,f +15194,6558,0,3,f +15194,6628,0,4,f +15194,6629,0,1,f +15194,6632,25,2,f +15194,6632,484,4,f +15194,6632,135,2,f +15194,85543,15,2,f +15194,85546,14,2,f +15195,33080,15,1,f +15199,15499,484,1,f +15199,19949,4,1,f +15199,19951,15,1,f +15199,24068pr0001,4,1,f +15199,33322,297,1,f +15199,3626cpr1827,14,1,f +15199,88646,0,1,f +15199,973pr3216c01,4,1,f +15200,32062,0,6,f +15200,32173,8,2,f +15200,32174,57,1,f +15200,32174,15,10,f +15200,32270,7,1,f +15200,3737,0,1,f +15200,3749,19,4,f +15200,44135,8,1,f +15200,44136,8,1,f +15200,44138,183,2,f +15200,44139,8,1,f +15200,44140,183,1,f +15200,44145,179,1,f +15200,44148,8,2,f +15200,44247,8,1,f +15200,44807,183,1,f +15200,44819,135,2,f +15200,4519,7,3,f +15200,45749,8,2,f +15200,6538b,8,1,f +15200,kraataund,22,1,f +15201,3626bp05,14,1,f +15201,4449,6,1,f +15201,4485,0,1,f +15201,970c00,0,1,f +15201,973px79ac01,15,1,f +15202,3020,0,2,f +15202,458,7,6,f +15202,501a,0,1,f +15202,502,7,4,f +15202,73090a,0,2,f +15202,867,0,2,f +15202,x461,0,2,f +15203,45517,0,1,f +15204,2415,7,2,f +15204,3034,15,1,f +15204,30389b,7,2,f +15204,30407,15,2,f +15204,3139,0,2,f +15204,3464,47,2,f +15204,3795,25,1,f +15204,4617b,0,1,f +15204,6232,15,1,f +15204,6239,15,1,f +15204,js008,-1,1,f +15205,2359p01,7,2,f +15205,2360p01,7,2,f +15205,2361p01,7,2,f +15205,80547pb01,7,2,f +15206,3003,15,1,f +15206,3003pe1,15,1,f +15206,3004,15,2,f +15206,3020,15,1,f +15206,3021,15,1,f +15206,3023,0,2,f +15206,3023,0,1,t +15206,3660,15,1,f +15206,3710,0,1,f +15207,3001,4,3,f +15207,3001,1,1,f +15207,3003,0,4,f +15207,3003,4,2,f +15207,3003,1,2,f +15207,3003pe1,14,1,f +15207,3004,1,2,f +15207,3004,4,5,f +15207,3004,0,2,f +15207,3004,14,4,f +15207,3034,4,1,f +15208,3005,15,4,f +15208,3010,15,3,f +15208,3031,4,1,f +15208,3031,15,1,f +15208,3659,5,1,f +15208,4088,26,1,f +15208,42409,52,1,f +15208,4589,36,2,f +15208,4589,15,1,f +15208,6126a,57,2,f +15208,6141,0,2,f +15208,6141,0,1,t +15208,6182,15,1,f +15212,3626bpr0282,14,1,f +15212,3834,15,1,f +15212,3835,0,1,f +15212,3835,0,1,t +15212,970c00,0,1,f +15212,973pr1187c01,0,1,f +15213,3703,4,4,f +15213,3895,4,4,f +15215,2343,47,2,f +15215,2431,4,2,f +15215,2431,70,2,f +15215,2439,72,3,f +15215,2445,72,1,f +15215,2453a,15,2,f +15215,2456,72,1,f +15215,2456,1,2,f +15215,2456,19,6,f +15215,2489,70,1,f +15215,2495,4,1,f +15215,2496,0,3,f +15215,3001,14,6,f +15215,3001,1,8,f +15215,3001,72,6,f +15215,3001,19,1,f +15215,3001,4,12,f +15215,3002,4,13,f +15215,3002,1,3,f +15215,3002,72,2,f +15215,3002,70,2,f +15215,3002,71,6,f +15215,3002,14,2,f +15215,3002,19,2,f +15215,3003,2,1,f +15215,3003,1,2,f +15215,3003,19,25,f +15215,3003,4,13,f +15215,3003,73,2,f +15215,3004,1,3,f +15215,3004,4,7,f +15215,3004,2,5,f +15215,3004,14,1,f +15215,3004,19,6,f +15215,3004,15,1,f +15215,3004,73,79,f +15215,3004,27,13,f +15215,3005,19,6,f +15215,3005,1,6,f +15215,3005,182,10,f +15215,3005,114,10,f +15215,3005,73,35,f +15215,3005,4,3,f +15215,3005,27,6,f +15215,30055,70,3,f +15215,3006,4,3,f +15215,3007,15,1,f +15215,3007,19,7,f +15215,3008,1,1,f +15215,3008,15,4,f +15215,3009,72,1,f +15215,3009,27,3,f +15215,3009,1,1,f +15215,3010,4,2,f +15215,3010,27,10,f +15215,3010,14,4,f +15215,3010,15,1,f +15215,3010,1,9,f +15215,3010,72,4,f +15215,3010,73,13,f +15215,30150,70,2,f +15215,30165,4,1,f +15215,30176,2,4,f +15215,3020,72,2,f +15215,3022,19,2,f +15215,3022,14,1,f +15215,30222,42,4,f +15215,3030,72,6,f +15215,3030,2,1,f +15215,3031,72,2,f +15215,3031,2,1,f +15215,3032,72,2,f +15215,3034,72,1,f +15215,3035,72,3,f +15215,3036,72,2,f +15215,30367b,15,3,f +15215,30367b,14,3,f +15215,30367b,4,2,f +15215,3037,15,2,f +15215,3037,4,8,f +15215,30374,41,2,f +15215,3038,72,12,f +15215,3040b,72,2,f +15215,3040b,4,8,f +15215,3044b,72,3,f +15215,3045,4,4,f +15215,3045,72,4,f +15215,3062b,19,3,f +15215,3062b,2,4,f +15215,3062b,14,7,f +15215,3062b,72,2,f +15215,3062b,70,2,f +15215,3068b,19,4,f +15215,3068b,72,2,f +15215,3069b,15,4,f +15215,3069b,72,1,f +15215,3069b,1,6,f +15215,3069b,19,1,f +15215,3069b,70,2,f +15215,3069bpr0099,15,4,f +15215,33051,10,2,f +15215,33085,14,2,f +15215,33125,484,2,f +15215,33172,25,3,f +15215,33183,10,3,f +15215,33183,10,1,t +15215,3460,1,1,f +15215,3460,15,4,f +15215,3622,2,4,f +15215,3622,15,2,f +15215,3622,14,2,f +15215,3622,4,2,f +15215,3622,27,22,f +15215,3622,1,2,f +15215,3626bpr0387,14,1,f +15215,3666,15,4,f +15215,3741,2,2,f +15215,3742,5,1,t +15215,3742,15,3,f +15215,3742,5,3,f +15215,3742,15,1,t +15215,3830,1,4,f +15215,3831,1,4,f +15215,3832,72,2,f +15215,3836,70,1,f +15215,3899,4,2,f +15215,3941,19,52,f +15215,3961,25,1,f +15215,4032a,19,2,f +15215,4079,4,2,f +15215,4079,14,2,f +15215,4079,1,2,f +15215,41334,0,1,f +15215,4150,19,2,f +15215,4162,1,3,f +15215,42511,1,1,f +15215,4345b,4,3,f +15215,4346,15,3,f +15215,43898,72,1,f +15215,43898,70,2,f +15215,4445,72,3,f +15215,4495b,272,2,f +15215,4728,14,1,f +15215,59349,47,3,f +15215,60474,15,1,f +15215,60474,14,1,f +15215,60583a,15,2,f +15215,60592,15,20,f +15215,60592,0,12,f +15215,60594,0,1,f +15215,60594,15,1,f +15215,60596,15,3,f +15215,60596,0,5,f +15215,60608,14,2,f +15215,60608,15,2,f +15215,60616a,47,4,f +15215,60623,14,1,f +15215,60623,0,2,f +15215,60623,15,1,f +15215,6091,1,16,f +15215,6091,15,16,f +15215,6141,25,2,t +15215,6141,27,2,t +15215,6141,14,2,f +15215,6141,29,1,t +15215,6141,27,4,f +15215,6141,0,1,t +15215,6141,25,6,f +15215,6141,1,2,f +15215,6141,0,5,f +15215,6141,1,1,t +15215,6141,14,1,t +15215,6141,15,1,t +15215,6141,15,2,f +15215,6141,4,2,f +15215,6141,4,1,t +15215,6141,29,2,f +15215,6254,191,2,f +15215,63965,70,3,f +15215,6636,70,6,f +15215,73983,15,1,f +15215,87087,15,4,f +15215,970c00,1,1,f +15215,973pr1244c01,73,1,f +15216,194cx1,7,2,f +15216,200,0,1,f +15216,202,1,1,f +15216,2348b,41,1,f +15216,2349a,15,1,f +15216,2357,15,2,f +15216,2412b,1,1,f +15216,2412b,4,1,f +15216,2412b,0,1,f +15216,2420,1,2,f +15216,2420,4,3,f +15216,2420,14,2,f +15216,2420,15,1,f +15216,2422,4,3,f +15216,2428,4,1,f +15216,2432,15,2,f +15216,2435,2,1,f +15216,2436,15,1,f +15216,2436,4,2,f +15216,2436,1,3,f +15216,2436,0,2,f +15216,2441,0,3,f +15216,2444,1,1,f +15216,2445,0,2,f +15216,2453a,0,1,f +15216,2453a,1,2,f +15216,2453a,15,4,f +15216,2453a,7,1,f +15216,2454a,15,13,f +15216,2454a,0,2,f +15216,2458,1,2,f +15216,2460,1,2,f +15216,2474,7,3,f +15216,2475,1,3,f +15216,2476a,1,2,f +15216,2486,4,12,f +15216,2493a,7,2,f +15216,2494,47,2,f +15216,2498,73,9,f +15216,298c02,15,2,f +15216,3003,14,1,f +15216,3004,15,35,f +15216,3004,0,4,f +15216,3004,14,8,f +15216,3004p60,15,2,f +15216,3005,0,2,f +15216,3005,15,21,f +15216,3005,14,4,f +15216,3008,0,1,f +15216,3009,14,1,f +15216,3009,15,5,f +15216,3009,0,1,f +15216,3010,0,1,f +15216,3010,15,4,f +15216,3010,14,1,f +15216,3010pb029,0,1,f +15216,3020,4,1,f +15216,3020,1,2,f +15216,3020,14,4,f +15216,3020,15,4,f +15216,3021,14,2,f +15216,3021,0,3,f +15216,3022,1,2,f +15216,3022,14,2,f +15216,3022,0,3,f +15216,3022,15,1,f +15216,3022,4,5,f +15216,3023,15,11,f +15216,3023,14,1,f +15216,3023,1,3,f +15216,3023,7,4,f +15216,3023,0,3,f +15216,3023,4,7,f +15216,3024,46,9,f +15216,3024,1,3,f +15216,3024,4,6,f +15216,3024,7,2,f +15216,3024,36,9,f +15216,3024,0,2,f +15216,3024,15,12,f +15216,3024,14,4,f +15216,3027,4,2,f +15216,3030,7,2,f +15216,3031,15,2,f +15216,3033,7,8,f +15216,3033,0,1,f +15216,3033,15,2,f +15216,3033,1,1,f +15216,3034,0,1,f +15216,3036,0,1,f +15216,3039,15,2,f +15216,3039p32,15,1,f +15216,3040b,15,4,f +15216,3040b,1,2,f +15216,3044p37,7,1,f +15216,3062b,14,3,f +15216,3062b,0,4,f +15216,3062b,4,2,f +15216,3068b,15,4,f +15216,3068bp01,15,1,f +15216,3068bp02,15,1,f +15216,3068bp22,15,1,f +15216,3068bp23,15,1,f +15216,3068bp60,15,2,f +15216,3068bpt1,15,1,f +15216,3069b,15,3,f +15216,3069b,14,1,f +15216,3070b,4,1,f +15216,3070b,14,1,f +15216,3070b,15,1,f +15216,3460,0,2,f +15216,3460,14,6,f +15216,3460,7,1,f +15216,3460,1,2,f +15216,3464,47,2,f +15216,3622,14,1,f +15216,3622,15,8,f +15216,3623,1,6,f +15216,3623,15,2,f +15216,3623,4,5,f +15216,3623,0,4,f +15216,3626apr0001,14,5,f +15216,3641,0,20,f +15216,3660,15,1,f +15216,3660,14,2,f +15216,3665,1,2,f +15216,3666,15,2,f +15216,3666,4,1,f +15216,3666,7,1,f +15216,3666,1,2,f +15216,3710,15,5,f +15216,3710,14,6,f +15216,3710,4,1,f +15216,3741,2,4,f +15216,3742,15,2,t +15216,3742,15,6,f +15216,3742,4,6,f +15216,3742,4,2,t +15216,3788,0,2,f +15216,3788,4,4,f +15216,3788,1,2,f +15216,3794a,0,1,f +15216,3794a,7,1,f +15216,3821,0,1,f +15216,3821,4,1,f +15216,3821,1,1,f +15216,3821pb04,15,1,f +15216,3822,1,1,f +15216,3822,0,1,f +15216,3822,4,1,f +15216,3822pb04,15,1,f +15216,3823,41,3,f +15216,3823,47,1,f +15216,3829c01,4,1,f +15216,3829c01,0,1,f +15216,3829c01,15,2,f +15216,3830,14,1,f +15216,3830,15,1,f +15216,3831,15,1,f +15216,3831,14,1,f +15216,3836,6,1,f +15216,3852a,6,2,f +15216,3901,0,1,f +15216,3901,6,1,f +15216,3941,0,1,f +15216,3941p01,7,1,f +15216,4006,0,1,f +15216,4070,1,4,f +15216,4070,15,10,f +15216,4083,1,2,f +15216,4085b,15,4,f +15216,4085b,4,2,f +15216,4085b,0,2,f +15216,4085b,1,2,f +15216,4213,15,2,f +15216,4214,15,3,f +15216,4217,15,10,f +15216,4282,4,1,f +15216,4477,1,1,f +15216,4477,14,4,f +15216,4477,15,2,f +15216,4477,0,3,f +15216,4480c01,4,1,f +15216,4485,1,1,f +15216,4522,0,1,f +15216,4530,0,2,f +15216,4599a,4,1,f +15216,4599a,7,1,f +15216,4600,0,2,f +15216,4624,7,6,f +15216,4624,15,12,f +15216,4629c01,1,1,f +15216,4732,0,1,f +15216,47899c01,0,1,f +15216,4859,15,3,f +15216,4864a,1,2,f +15216,4865a,15,6,f +15216,4865a,4,5,f +15216,6100p04,7,2,f +15216,6141,36,2,f +15216,6141,47,8,f +15216,6141,0,6,f +15216,73590c01a,15,2,f +15216,73590c01a,0,2,f +15216,970c00,1,3,f +15216,970c00,0,1,f +15216,970c00,7,1,f +15216,973p22c01,0,1,f +15216,973p60c01,15,1,f +15216,973pb0201c01,15,1,f +15216,973px61c02,15,1,f +15216,973px62c01,15,1,f +15216,s004,-1,1,f +15217,3626bpr0701,14,1,f +15217,62810,0,1,f +15217,87994,0,1,f +15217,88646,0,1,f +15217,91049,0,2,f +15217,970c00pr0169,27,1,f +15217,973pr1664c01,27,1,f +15219,11477,19,1,f +15219,11610,19,2,f +15219,14769,30,1,f +15219,15470,70,1,t +15219,15470,29,2,f +15219,15470,70,1,f +15219,15470,29,1,t +15219,15745,45,2,f +15219,18853,191,1,f +15219,18853,191,1,t +15219,18854,45,1,f +15219,18854,45,1,t +15219,2357,15,4,f +15219,2423,85,1,f +15219,24883pr0001,4,1,f +15219,3004,19,1,f +15219,3004,30,2,f +15219,3010,15,1,f +15219,3020,15,1,f +15219,3021,5,1,f +15219,3022,29,1,f +15219,3023,85,1,f +15219,3023,19,1,f +15219,3023,15,2,f +15219,3031,27,1,f +15219,3036,322,1,f +15219,30367c,297,1,f +15219,3039,41,1,f +15219,3040b,19,1,f +15219,3062b,19,3,f +15219,3069b,29,3,f +15219,33291,31,1,t +15219,33291,31,1,f +15219,33291,5,2,f +15219,33291,191,1,t +15219,33291,5,1,t +15219,33291,191,3,f +15219,3659,15,1,f +15219,3899,45,1,f +15219,3937,15,1,f +15219,3941,15,1,f +15219,4032a,19,1,f +15219,4865b,41,4,f +15219,59900,129,2,f +15219,6134,15,1,f +15219,6141,41,2,f +15219,6141,45,3,f +15219,6141,41,1,t +15219,6141,45,1,t +15219,64644,297,2,f +15219,85984,29,2,f +15219,87580,322,1,f +15219,92593,15,2,f +15219,93092,30,1,f +15220,2343,47,2,f +15220,2432,13,2,f +15220,2436,15,1,f +15220,2445,7,1,f +15220,2453a,15,4,f +15220,2540,7,1,f +15220,2571,41,2,f +15220,2926,7,6,f +15220,298c02,15,1,f +15220,3002,7,1,f +15220,3003,15,1,f +15220,3004,15,5,f +15220,3004pc0,15,1,f +15220,3005,15,4,f +15220,30055,13,6,f +15220,30055,15,1,f +15220,3008,7,1,f +15220,3010,15,2,f +15220,3020,7,3,f +15220,3020,15,2,f +15220,3022,15,1,f +15220,3023,7,2,f +15220,3024,7,2,f +15220,3027,74,2,f +15220,3029,74,4,f +15220,3040p32,7,1,f +15220,3068b,15,2,f +15220,3068pb50,15,1,f +15220,3069bp13,15,1,f +15220,3139,0,12,f +15220,3403c01,15,1,f +15220,3455,15,2,f +15220,3460,15,1,f +15220,3622px1,15,1,f +15220,3626bp02,14,3,f +15220,3626bp03,14,2,f +15220,3666,15,6,f +15220,3700,15,1,f +15220,3710,7,1,f +15220,3730,7,2,f +15220,3731,7,3,f +15220,3741,2,3,f +15220,3742,14,3,t +15220,3742,14,9,f +15220,3747b,15,2,f +15220,3749,7,1,f +15220,3795,15,2,f +15220,3829c01,15,1,f +15220,3899,5,2,f +15220,3899,13,4,f +15220,3901,0,1,f +15220,3941,15,1,f +15220,3957a,15,5,f +15220,3960,13,1,f +15220,3960pb007,15,1,f +15220,4079,5,4,f +15220,4461,13,2,f +15220,4477,15,1,f +15220,4485,1,1,f +15220,4495b,2,2,f +15220,4495b,14,1,f +15220,4495b,5,2,f +15220,4530,6,1,f +15220,4536,14,2,f +15220,4589,34,1,f +15220,4589,46,1,f +15220,4589,7,2,f +15220,4624,15,12,f +15220,57503,334,2,f +15220,57504,334,2,f +15220,57505,334,2,f +15220,57506,334,2,f +15220,6091,15,6,f +15220,6093,0,1,f +15220,6093,4,1,f +15220,6141,47,2,f +15220,6183,15,4,f +15220,6199,13,1,f +15220,6200,5,2,f +15220,6251,15,1,f +15220,6254,15,2,f +15220,63965,15,1,f +15220,92410,15,2,f +15220,970c00,13,1,f +15220,970c00,1,1,f +15220,970c00,0,1,f +15220,970x001,14,2,f +15220,973pb0018c01,13,1,f +15220,973pb0038c01,13,1,f +15220,973pr1190c01,0,1,f +15220,973pr1204c01,15,1,f +15220,973px34c01,15,1,f +15222,30089,0,1,f +15222,3626cpr0388,14,1,f +15222,3833,14,1,f +15222,3899,45,1,f +15222,3962b,0,1,f +15222,59363,70,1,f +15222,86035,27,1,f +15222,970c00,25,1,f +15222,970c00,2,1,f +15222,970c00,1,1,f +15222,973pb1082c01,25,1,f +15222,973pb1083c01,15,1,f +15222,973pb1084c01,25,1,f +15223,2412b,80,1,f +15223,2780,0,1,t +15223,2780,0,1,f +15223,2850a,47,1,f +15223,2851,14,1,f +15223,2852,71,1,f +15223,2853,14,2,f +15223,2905,0,2,f +15223,3069b,15,1,f +15223,32002,72,1,t +15223,32002,72,8,f +15223,32009,0,2,f +15223,32013,0,2,f +15223,32016,71,2,f +15223,32034,0,1,f +15223,32039,0,1,f +15223,32062,0,7,f +15223,32073,71,7,f +15223,32123b,14,2,f +15223,32123b,14,1,t +15223,32123b,71,11,f +15223,32123b,71,1,t +15223,32140,1,3,f +15223,32184,0,4,f +15223,32250,1,2,f +15223,32269,71,1,f +15223,32270,71,1,f +15223,32271,72,2,f +15223,32291,0,3,f +15223,32348,1,2,f +15223,32449,0,2,f +15223,32449,1,3,f +15223,32523,0,1,f +15223,32524,72,2,f +15223,32526,1,2,f +15223,32556,71,1,f +15223,33299a,0,3,f +15223,3648b,71,1,f +15223,3705,0,1,f +15223,3706,0,1,f +15223,3711a,0,20,f +15223,3711a,0,1,t +15223,3713,71,15,f +15223,3713,71,1,t +15223,3737,0,1,f +15223,3749,19,4,f +15223,4019,71,1,f +15223,41669,1,2,f +15223,41678,0,1,f +15223,4274,71,4,f +15223,4274,71,1,t +15223,43093,1,5,f +15223,43857,0,1,f +15223,44294,71,5,f +15223,4519,71,10,f +15223,6141,57,2,f +15223,6141,57,1,t +15223,6141,36,1,t +15223,6141,36,2,f +15223,6536,1,5,f +15223,6538b,0,5,f +15223,6558,0,6,f +15223,6581,0,4,f +15223,6582,15,4,f +15223,6587,72,2,f +15223,6632,0,8,f +15223,75535,1,1,f +15223,76138,71,1,f +15223,78c03,179,2,f +15223,78c04,179,1,f +15225,bb92,1,1,f +15226,2432,4,1,f +15226,2445,7,1,f +15226,2486,4,1,f +15226,2547,8,1,f +15226,2548,8,1,f +15226,2610,14,1,f +15226,2614,0,1,f +15226,3003,7,1,f +15226,3004,7,3,f +15226,3010,7,1,f +15226,3035,7,1,f +15226,3626bp7e,14,1,f +15226,4081b,4,1,f +15226,4485,1,1,f +15226,56823,0,1,f +15226,6141,7,1,f +15226,970c00,15,1,f +15226,973p73c01,2,1,f +15228,10197,72,2,f +15228,10247,71,1,f +15228,10928,72,3,f +15228,11214,72,17,f +15228,11478,71,4,f +15228,11954,73,6,f +15228,14720,71,3,f +15228,15100,71,25,f +15228,15458,0,4,f +15228,15462,70,4,f +15228,16511,71,1,f +15228,18575,19,3,f +15228,18575,0,2,f +15228,18651,0,2,f +15228,18654,72,9,f +15228,18654,72,1,t +15228,18945,73,4,f +15228,18945,0,10,f +15228,18946,4,4,f +15228,18947,72,2,f +15228,18948,15,3,f +15228,18976,15,2,f +15228,18977,0,2,f +15228,22961,308,8,f +15228,24116,0,1,f +15228,24316,70,6,f +15228,2780,0,214,f +15228,2780,0,4,t +15228,27940,72,3,f +15228,3020,0,1,f +15228,3069b,0,2,f +15228,31511,71,1,f +15228,32002,19,3,f +15228,32002,19,2,t +15228,32005a,0,4,f +15228,32013,0,8,f +15228,32013,15,1,f +15228,32015,0,2,f +15228,32016,0,4,f +15228,32017,14,4,f +15228,32034,0,4,f +15228,32054,71,24,f +15228,32056,71,4,f +15228,32062,4,1,t +15228,32062,4,36,f +15228,32063,0,4,f +15228,32065,15,3,f +15228,32073,14,7,f +15228,32123b,71,6,f +15228,32123b,71,1,t +15228,32140,0,22,f +15228,32184,0,8,f +15228,32192,73,1,f +15228,32199,0,1,f +15228,32270,0,3,f +15228,32271,73,2,f +15228,32278,0,11,f +15228,32291,72,5,f +15228,32316,73,6,f +15228,32316,0,4,f +15228,32316,71,13,f +15228,32348,0,3,f +15228,32449,15,10,f +15228,32494,71,1,f +15228,32523,0,31,f +15228,32523,4,4,f +15228,32523pr0001,15,1,f +15228,32524,4,1,f +15228,32524,73,11,f +15228,32524,72,15,f +15228,32525,73,4,f +15228,32525,0,9,f +15228,32526,72,12,f +15228,32526,73,4,f +15228,32556,19,7,f +15228,32905,71,2,f +15228,33299a,71,1,f +15228,3648b,72,2,f +15228,3666,0,1,f +15228,3673,71,11,f +15228,3673,71,1,t +15228,3705,0,9,f +15228,3706,4,5,f +15228,3707,0,2,f +15228,3713,4,20,f +15228,3713,4,2,t +15228,3737,4,3,f +15228,3749,19,15,f +15228,40490,4,4,f +15228,40490,15,4,f +15228,41239,71,7,f +15228,41239,4,1,f +15228,41239,73,4,f +15228,41677,0,6,f +15228,41678,4,2,f +15228,42003,71,9,f +15228,4274,1,8,f +15228,4274,1,1,t +15228,43093,1,37,f +15228,43857,4,1,f +15228,44294,71,11,f +15228,44809,71,1,f +15228,4519,71,14,f +15228,48989,71,6,f +15228,55013,72,2,f +15228,55615,71,2,f +15228,55982,15,2,f +15228,56908,71,1,f +15228,58090,0,2,f +15228,58120,71,1,f +15228,59426,72,3,f +15228,59443,0,26,f +15228,60483,71,18,f +15228,60484,72,16,f +15228,60485,14,1,f +15228,61184,71,2,f +15228,61903,71,2,f +15228,62462,71,6,f +15228,63869,71,5,f +15228,64391,0,1,f +15228,64393,73,3,f +15228,64393,0,1,f +15228,64394,73,1,f +15228,64680,73,1,f +15228,64681,73,3,f +15228,64681,0,1,f +15228,64683,0,1,f +15228,64782,0,5,f +15228,64782,73,4,f +15228,6536,72,26,f +15228,6536,4,3,f +15228,6553,72,1,f +15228,6558,1,106,f +15228,6589,19,2,f +15228,6628,0,14,f +15228,6641,4,2,f +15228,76244,15,1,f +15228,87079,0,2,f +15228,87080,0,1,f +15228,87082,71,12,f +15228,87083,72,6,f +15228,87086,0,1,f +15228,87408,0,1,f +15228,87751,179,2,f +15228,92906,72,1,f +15228,92907,0,4,f +15228,94925,71,1,f +15228,98138,36,1,f +15228,98138,34,1,f +15228,98138,34,1,t +15228,98138,36,1,t +15228,99008,19,4,f +15228,99207,0,2,f +15228,99773,71,8,f +15229,2339,0,7,f +15229,2339,71,2,f +15229,2343,297,1,f +15229,2357,71,2,f +15229,2419,72,1,f +15229,2420,4,2,f +15229,2431,72,1,f +15229,2431,70,11,f +15229,2445,4,2,f +15229,2449,72,4,f +15229,2450,72,4,f +15229,2453a,71,2,f +15229,2454a,72,8,f +15229,2489,70,1,f +15229,2528,0,1,f +15229,2540,0,1,f +15229,2555,4,4,f +15229,2560,0,1,f +15229,2564,0,1,f +15229,2566,0,2,f +15229,2570,70,1,f +15229,2653,71,6,f +15229,2736,71,1,f +15229,3001,15,2,f +15229,3002,71,4,f +15229,3003,71,2,f +15229,3004,0,14,f +15229,3004,71,17,f +15229,3004,70,1,f +15229,3004,72,2,f +15229,30044,70,2,f +15229,30044,320,6,f +15229,30045,0,8,f +15229,3005,72,10,f +15229,3005,0,10,f +15229,3005,71,13,f +15229,3009,71,1,f +15229,30099,320,8,f +15229,3010,0,8,f +15229,3010,71,2,f +15229,30136,70,13,f +15229,30137,70,3,f +15229,30150,70,1,f +15229,30153,36,1,f +15229,30153,33,1,f +15229,30153,46,1,f +15229,3020,0,2,f +15229,3021,70,1,f +15229,3022,70,1,f +15229,3022,4,1,f +15229,3023,320,12,f +15229,3023,19,2,f +15229,3023,72,1,f +15229,3024,71,4,f +15229,3024,72,10,f +15229,30246,71,2,f +15229,30273,80,1,f +15229,30275,70,1,f +15229,3028,72,2,f +15229,3029,72,1,f +15229,3031,71,1,f +15229,3032,70,1,f +15229,3032,71,2,f +15229,3033,272,2,f +15229,3033,72,4,f +15229,3034,19,1,f +15229,3036,272,1,f +15229,3036,70,1,f +15229,30374,0,1,f +15229,3039,0,8,f +15229,3039,72,4,f +15229,3040b,70,2,f +15229,3040b,72,8,f +15229,3048c,297,5,f +15229,3048c,320,8,f +15229,30565,272,2,f +15229,3062b,72,19,f +15229,3069b,0,1,f +15229,3070b,0,1,t +15229,3070b,0,4,f +15229,32000,72,6,f +15229,32013,0,1,f +15229,32014,72,2,f +15229,32039,4,2,f +15229,32064b,72,8,f +15229,32073,71,1,f +15229,32123b,71,1,t +15229,32123b,71,4,f +15229,3245b,71,4,f +15229,32474,0,2,f +15229,32523,71,1,f +15229,32530,72,2,f +15229,3298,72,1,f +15229,33057,484,1,f +15229,3307,71,2,f +15229,33320,2,1,f +15229,3403,71,1,f +15229,3404,71,1,f +15229,3455,0,2,f +15229,3460,0,1,f +15229,3460,4,2,f +15229,3622,71,3,f +15229,3622,72,2,f +15229,3626bpr0325,14,1,f +15229,3626bpr0434,14,1,f +15229,3626bpr0459,14,1,f +15229,3626bpr0494,15,4,f +15229,3633,0,2,f +15229,3659,320,6,f +15229,3659,71,2,f +15229,3660,320,1,f +15229,3660,0,8,f +15229,3665,70,2,f +15229,3665,320,2,f +15229,3666,72,1,f +15229,3673,71,6,f +15229,3673,71,2,t +15229,3678b,272,2,f +15229,3684,0,1,f +15229,3700,70,1,f +15229,3706,0,3,f +15229,3710,71,4,f +15229,3710,320,2,f +15229,3710,0,2,f +15229,3710,70,2,f +15229,3713,71,1,t +15229,3713,71,1,f +15229,3794a,4,6,f +15229,3795,70,2,f +15229,3844,80,2,f +15229,3846pr24,71,1,f +15229,3847,135,2,f +15229,3937,71,1,f +15229,3937,4,2,f +15229,3941,70,6,f +15229,3957a,0,1,f +15229,3958,70,1,f +15229,40234,71,1,f +15229,4032b,71,1,f +15229,40379,21,2,f +15229,4085c,0,6,f +15229,4085c,4,2,f +15229,4162,272,2,f +15229,41753,72,1,t +15229,42448,0,2,f +15229,4286,0,3,f +15229,4287,72,2,f +15229,43093,1,3,f +15229,4424,70,1,f +15229,4460a,70,4,f +15229,4460a,320,2,f +15229,4460a,272,4,f +15229,4477,71,1,f +15229,4477,72,1,f +15229,4490,0,2,f +15229,4495b,4,1,f +15229,4497,135,1,f +15229,4498,70,1,f +15229,4510,0,2,f +15229,4519,71,2,f +15229,4589,15,12,f +15229,4599a,0,1,f +15229,4738a,70,2,f +15229,4739a,70,1,f +15229,47847pat0003,135,2,f +15229,4790,70,1,f +15229,48002,0,1,f +15229,4871,4,1,f +15229,53451,15,1,t +15229,53451,15,8,f +15229,53452,0,1,f +15229,54200,0,2,f +15229,54200,72,17,f +15229,54200,4,4,f +15229,54821,135,2,f +15229,55706pat0003,0,2,f +15229,57503,334,1,f +15229,57504,334,1,f +15229,57505,334,1,f +15229,57506,334,1,f +15229,59229,72,2,f +15229,59230,15,8,f +15229,59230,15,1,t +15229,59231pr0001,72,4,f +15229,59232,135,2,f +15229,59233pat0001,41,2,f +15229,59901,8,1,f +15229,60115,15,4,f +15229,60169,71,1,f +15229,6019,0,2,f +15229,6020,0,1,f +15229,6066,0,1,f +15229,6066,71,2,f +15229,6082,72,1,f +15229,6091,320,4,f +15229,6111,71,1,f +15229,6112,0,2,f +15229,6126a,57,2,f +15229,6132,15,1,f +15229,6134,4,2,f +15229,6134,0,1,f +15229,6141,1,2,f +15229,6266,15,8,f +15229,6538b,4,4,f +15229,6541,15,2,f +15229,6636,0,10,f +15229,75c10,0,4,f +15229,75c10,0,1,t +15229,85544,4,1,f +15229,970x026,71,3,f +15229,973pr1318c01,272,2,f +15229,973pr1321c01,72,1,f +15230,15469,322,1,f +15230,298c02,14,2,f +15230,3023,14,1,f +15230,3023,0,1,f +15230,3031,2,1,f +15230,32062,4,1,f +15230,4032a,25,1,f +15230,4032a,85,1,f +15230,4032a,0,3,f +15230,4032a,14,4,f +15230,48336,0,1,f +15230,4865b,40,4,f +15230,59900,0,1,f +15230,60470b,14,2,f +15230,60478,15,4,f +15230,6266,0,2,f +15230,63868,0,2,f +15230,98138pr0026,15,2,f +15232,3020,15,1,f +15232,3020,1,1,f +15232,30602,15,1,f +15232,3710,1,1,f +15232,3829c01,1,1,f +15232,4623,15,1,f +15232,6120,72,1,t +15232,6120,72,2,f +15233,10052,71,1,f +15233,11100,297,2,f +15233,11127,41,4,f +15233,11213,322,1,f +15233,15395,27,1,f +15233,15573,71,6,f +15233,15712,71,2,f +15233,18031,179,1,t +15233,18031,179,1,f +15233,18986,47,1,f +15233,19119,2,1,f +15233,2412b,320,4,f +15233,2431,272,6,f +15233,3022,72,1,f +15233,30565,2,4,f +15233,3062b,70,1,f +15233,3068bpr0201,15,1,f +15233,33291,26,1,t +15233,33291,31,3,f +15233,33291,31,1,t +15233,33291,26,3,f +15233,33320,297,4,f +15233,3626b,71,1,f +15233,3626bpr0001,14,1,f +15233,3795,2,2,f +15233,3844,71,1,f +15233,4032a,72,1,f +15233,4081b,71,4,f +15233,44301b,72,4,f +15233,44302b,72,4,f +15233,4495b,297,1,f +15233,4719,191,1,f +15233,4733,0,1,f +15233,48092,71,4,f +15233,58176,41,4,f +15233,6141,71,1,t +15233,6141,71,4,f +15233,6141,0,1,t +15233,6141,0,8,f +15233,63965,71,1,f +15233,64807,71,1,f +15233,87580,71,2,f +15233,87990,226,1,f +15233,92586pr0001,84,1,f +15233,92593,272,2,f +15233,92851,47,2,f +15233,92947,71,2,f +15233,970c00,71,1,f +15233,970c00,0,1,f +15233,973c47,71,1,f +15233,973pr1783c01,4,1,f +15233,98138pr0018,84,1,t +15233,98138pr0018,84,1,f +15235,0687b1,9999,1,f +15235,2420,7,8,f +15235,2817,7,2,f +15235,2982c01,1,1,f +15235,3069b,1,4,f +15235,32000,8,2,f +15235,32014,1,4,f +15235,32017,7,2,f +15235,32034,1,2,f +15235,32039,7,6,f +15235,32054,1,4,f +15235,32056,7,4,f +15235,32060,7,1,f +15235,32062,0,2,f +15235,32065,0,4,f +15235,32123b,7,2,f +15235,32137,33,4,f +15235,32138,14,2,f +15235,32184,1,2,f +15235,32250,1,2,f +15235,32269,7,1,f +15235,32449,1,2,f +15235,3634,0,2,f +15235,3705,0,5,f +15235,3706,0,2,f +15235,3707,0,1,f +15235,6035,15,1,f +15235,6536,7,4,f +15235,6538b,7,6,f +15235,6553,7,2,f +15235,6588,14,1,f +15235,6629,0,2,f +15235,6630,7,1,f +15235,6632,7,2,f +15235,71128,383,1,f +15235,9244,7,2,f +15235,9793b1,9999,1,f +15236,3003,6,2,f +15236,3004,6,2,f +15236,30176,2,3,f +15236,3020,6,1,f +15236,30238,7,1,f +15236,3665,6,2,f +15236,4287,6,2,f +15237,3704,0,2,f +15237,3705,0,6,f +15237,3706,0,6,f +15237,3707,0,6,f +15237,3708,0,6,f +15237,3737,0,6,f +15237,4519,0,2,f +15240,2335,7,2,f +15240,2335ps1,7,4,f +15240,2357,2,2,f +15240,2376,0,2,f +15240,2412b,22,13,f +15240,2412b,4,1,f +15240,2412b,25,4,f +15240,2412b,8,24,f +15240,2413,7,3,f +15240,2420,1,2,f +15240,2420,0,14,f +15240,2420,25,12,f +15240,2431ps1,8,12,f +15240,2432,0,1,f +15240,2432,7,1,f +15240,2436,25,8,f +15240,2436,0,12,f +15240,2450,0,4,f +15240,2450,2,12,f +15240,2458,19,8,f +15240,2460,15,2,f +15240,2465,19,2,f +15240,2516,15,1,f +15240,2540,6,3,f +15240,2540,15,3,f +15240,2540,2,1,f +15240,2540,19,13,f +15240,2555,7,14,f +15240,2555,6,2,f +15240,2555,15,4,f +15240,2593,7,2,f +15240,2654,0,2,f +15240,2736,7,2,f +15240,2780,0,4,f +15240,2854,8,2,f +15240,2877,7,23,f +15240,298c03,0,4,f +15240,298c05,0,2,t +15240,3001,19,15,f +15240,3001,0,8,f +15240,3002,0,1,f +15240,3003,19,18,f +15240,3003,0,4,f +15240,30034,0,2,f +15240,3004,14,2,f +15240,3004,25,4,f +15240,3004px5,2,2,f +15240,3005,7,2,f +15240,3007,0,2,f +15240,3009,0,6,f +15240,30145,19,6,f +15240,30151a,14,2,f +15240,30165,0,10,f +15240,30165,25,8,f +15240,30170,8,2,t +15240,30170,8,2,f +15240,30171,7,2,f +15240,30194,8,2,f +15240,3020,2,1,f +15240,3020,0,2,f +15240,3020,8,11,f +15240,30209,8,2,f +15240,3021,25,1,f +15240,3021,7,9,f +15240,3021,4,3,f +15240,3022,0,5,f +15240,3022,7,3,f +15240,3022,19,2,f +15240,3023,4,4,f +15240,3023,6,6,f +15240,3023,7,29,f +15240,30237a,19,3,f +15240,3024,2,12,f +15240,3031,0,6,f +15240,3031,25,4,f +15240,3032,19,2,f +15240,3032,0,6,f +15240,3032,25,4,f +15240,3034,19,2,f +15240,30357,7,2,f +15240,30359a,57,12,f +15240,30360,25,2,f +15240,30360,8,2,f +15240,30361aps1,15,1,f +15240,30362,15,2,f +15240,30364,7,8,f +15240,30365,8,8,f +15240,30367a,25,2,f +15240,30367apr01,15,1,f +15240,30371,19,1,f +15240,30377,7,4,f +15240,30377,7,1,t +15240,30383,8,6,f +15240,3039,2,1,f +15240,3039,0,7,f +15240,3039,25,6,f +15240,30407,14,6,f +15240,3040b,25,8,f +15240,30410,6,1,f +15240,30475,6,1,f +15240,3048c,1,2,f +15240,3049b,7,2,f +15240,3062b,7,48,f +15240,3062b,2,16,f +15240,3063b,2,2,f +15240,3068b,0,4,f +15240,3068b,2,8,f +15240,3068b,25,5,f +15240,3068bps3,0,4,f +15240,3069b,2,1,f +15240,3070b,22,1,t +15240,3070b,22,2,f +15240,32015,8,2,f +15240,32062,0,2,f +15240,32123b,7,2,f +15240,32123b,7,1,t +15240,3298ps0,1,1,f +15240,3298px8,25,2,f +15240,3460,8,4,f +15240,3623,1,2,f +15240,3626bps0,14,1,f +15240,3626bps9,14,1,f +15240,3626bpsb,15,1,f +15240,3626bpsd,14,1,f +15240,3660,1,1,f +15240,3660,0,6,f +15240,3660,25,4,f +15240,3666,7,2,f +15240,3700,0,4,f +15240,3709,0,2,f +15240,3710,25,8,f +15240,3710,7,2,f +15240,3710,0,8,f +15240,3747a,25,2,f +15240,3794a,7,2,f +15240,3794a,0,1,f +15240,3794a,1,2,f +15240,3795,7,4,f +15240,3795,0,4,f +15240,3821ps1,1,1,f +15240,3822ps1,1,1,f +15240,3849,8,3,f +15240,3894,7,2,f +15240,3935,7,2,f +15240,3936,7,2,f +15240,3937,8,4,f +15240,3940b,0,2,f +15240,3941,7,6,f +15240,3941,1,6,f +15240,3942c,22,2,f +15240,3942c,7,2,f +15240,3943b,25,2,f +15240,3943b,2,2,f +15240,4032a,8,2,f +15240,4070,2,4,f +15240,4070,0,16,f +15240,4085c,7,2,f +15240,4085c,0,8,f +15240,4150ps1,7,2,f +15240,4213,2,8,f +15240,4282,19,10,f +15240,4285b,0,2,f +15240,4286,1,1,f +15240,4315,2,8,f +15240,4495a,15,1,f +15240,4495a,0,2,f +15240,4495a,14,1,f +15240,4495a,1,1,f +15240,4495a,2,1,f +15240,4519,0,2,f +15240,4589,8,2,f +15240,4590,7,8,f +15240,4599a,0,3,f +15240,4623,7,2,f +15240,4735,6,6,f +15240,4740,15,2,f +15240,4740,6,1,f +15240,4855,7,2,f +15240,4859,8,1,f +15240,4859,1,1,f +15240,4865a,25,2,f +15240,4865a,2,2,f +15240,4865a,47,1,f +15240,4865a,1,3,f +15240,4871,1,1,f +15240,50231,6,1,f +15240,55295,8,2,f +15240,55296,8,2,f +15240,55297,8,2,f +15240,55298,8,2,f +15240,55299,8,2,f +15240,55300,8,2,f +15240,6019,1,4,f +15240,6019,15,3,f +15240,6019,8,8,f +15240,6069,2,4,f +15240,6117,7,4,f +15240,6134,4,4,f +15240,6141,46,3,f +15240,6141,0,6,f +15240,6141,7,1,t +15240,6141,0,2,t +15240,6141,46,3,t +15240,6141,7,1,f +15240,6222,8,6,f +15240,6231,7,2,f +15240,6248,7,4,f +15240,6564,25,1,f +15240,6564,2,1,f +15240,6565,25,1,f +15240,6565,2,1,f +15240,71076,383,1,f +15240,75c19,0,2,f +15240,75c29,0,2,f +15240,75c34,0,2,f +15240,970c00,8,1,f +15240,970c00,6,1,f +15240,970c00,19,1,f +15240,970c00,0,1,f +15240,973px58c01,19,1,f +15240,973px59c01,19,1,f +15240,973px82ac01,19,1,f +15240,973px83c01,1,1,f +15240,x162,8,1,f +15241,11267,308,2,f +15241,11477,71,2,f +15241,12825,72,6,f +15241,14395,71,4,f +15241,14707,71,3,f +15241,14769,71,2,f +15241,15207,70,6,f +15241,15332,0,3,f +15241,15446,0,1,f +15241,15727,179,1,f +15241,15738pat01,84,1,f +15241,15738pat01pr002,84,1,f +15241,16640pr0003,326,1,f +15241,16640pr0005,326,1,f +15241,17980,179,1,f +15241,18383,72,1,f +15241,19141,308,2,f +15241,2357,71,16,f +15241,2357,72,6,f +15241,2412b,0,23,f +15241,2412b,297,1,f +15241,2420,70,2,f +15241,2420,72,3,f +15241,2431,308,2,f +15241,2431,0,5,f +15241,2431,72,1,f +15241,2445,71,1,f +15241,2454a,71,6,f +15241,2456,2,1,f +15241,2456,70,1,f +15241,2458,19,1,f +15241,2486,72,1,f +15241,2489,308,3,f +15241,2496,0,2,f +15241,2540,72,6,f +15241,2736,71,2,f +15241,2780,0,8,f +15241,2817,71,1,f +15241,2819,0,1,f +15241,2825,4,1,f +15241,2877,71,37,f +15241,2921,70,4,f +15241,2921,71,6,f +15241,298c02,71,1,f +15241,298c02,14,1,f +15241,30000,71,4,f +15241,3001,71,6,f +15241,3001,70,7,f +15241,3001,0,3,f +15241,3002,70,2,f +15241,3003,0,4,f +15241,3003,72,2,f +15241,3004,14,8,f +15241,3004,72,2,f +15241,30043,0,2,f +15241,3005,71,20,f +15241,3005,0,4,f +15241,3009,71,14,f +15241,3010,0,1,f +15241,3010,71,15,f +15241,30162,72,2,f +15241,30173a,179,4,f +15241,3020,70,3,f +15241,3020,0,4,f +15241,3021,72,2,f +15241,3021,70,3,f +15241,3021,2,1,f +15241,3022,72,7,f +15241,3022,2,3,f +15241,3023,19,8,f +15241,3023,4,2,f +15241,3023,2,2,f +15241,3023,72,14,f +15241,3023,0,4,f +15241,3023,70,4,f +15241,30236,71,4,f +15241,3024,0,4,f +15241,3024,70,5,f +15241,3024,19,1,f +15241,3024,2,8,f +15241,3024,36,4,f +15241,3027,0,2,f +15241,3029,72,2,f +15241,3029,0,2,f +15241,3030,0,1,f +15241,3032,72,3,f +15241,30332,0,1,f +15241,3034,0,1,f +15241,3035,0,1,f +15241,3035,70,1,f +15241,3035,72,4,f +15241,30350b,0,5,f +15241,30350b,70,1,f +15241,30367c,4,1,f +15241,3037,71,1,f +15241,3037,70,1,f +15241,3039,71,3,f +15241,3040b,71,12,f +15241,3062b,70,30,f +15241,3062b,2,1,f +15241,30663,0,3,f +15241,3068b,0,9,f +15241,3068b,70,9,f +15241,3069b,28,3,f +15241,3069b,72,5,f +15241,3069b,19,1,f +15241,3070b,0,6,f +15241,3176,0,2,f +15241,32013,0,1,f +15241,32034,0,1,f +15241,32064b,0,1,f +15241,32123b,71,1,f +15241,32270,0,2,f +15241,32348,0,2,f +15241,32449,0,2,f +15241,3245c,72,3,f +15241,3245c,71,7,f +15241,32532,71,2,f +15241,3456,0,2,f +15241,3456,72,1,f +15241,3460,72,2,f +15241,3622,71,11,f +15241,3623,72,4,f +15241,3623,2,2,f +15241,3626cpr0903,78,1,f +15241,3626cpr1452,0,2,f +15241,3660,71,9,f +15241,3660,0,2,f +15241,3665,71,2,f +15241,3666,72,7,f +15241,3666,70,1,f +15241,3666,19,2,f +15241,3666,71,1,f +15241,3673,71,8,f +15241,3678b,71,5,f +15241,3679,71,2,f +15241,3680,0,2,f +15241,3700,4,2,f +15241,3700,0,1,f +15241,3701,71,1,f +15241,3702,71,4,f +15241,3705,0,2,f +15241,3706,0,1,f +15241,3708,0,1,f +15241,3710,71,1,f +15241,3710,72,2,f +15241,3710,70,2,f +15241,3710,19,3,f +15241,3710,2,1,f +15241,3710,0,2,f +15241,3713,4,3,f +15241,3747b,72,1,f +15241,3794b,320,1,f +15241,3794b,2,1,f +15241,3795,72,4,f +15241,3830,71,2,f +15241,3831,71,2,f +15241,3832,70,3,f +15241,3832,0,1,f +15241,3895,72,4,f +15241,3941,4,1,f +15241,4079,288,1,f +15241,4150p02,14,2,f +15241,4151,72,3,f +15241,4162,70,2,f +15241,4162,0,6,f +15241,4162,72,1,f +15241,41669,4,2,f +15241,41677,15,1,f +15241,41879a,19,1,f +15241,42511,1,1,f +15241,4274,1,8,f +15241,4286,71,2,f +15241,43722,14,1,f +15241,43722,0,3,f +15241,43723,0,5,f +15241,43888,484,1,f +15241,44375a,71,1,f +15241,4460b,71,2,f +15241,4519,71,1,f +15241,4599b,0,3,f +15241,4697b,71,2,f +15241,4740,0,5,f +15241,48336,2,8,f +15241,48336,0,5,f +15241,50859b,0,1,f +15241,50860,0,1,f +15241,50861,0,2,f +15241,50862,71,2,f +15241,54200,0,2,f +15241,54200,71,8,f +15241,59349,72,1,f +15241,59900,71,1,f +15241,59900,36,1,f +15241,60169,72,1,f +15241,6020,70,2,f +15241,60479,0,1,f +15241,60481,71,5,f +15241,6063,72,1,f +15241,60897,4,1,f +15241,6091,70,6,f +15241,6111,71,4,f +15241,6112,71,2,f +15241,6141,36,2,f +15241,6141,34,1,f +15241,6141,297,4,f +15241,6141,42,10,f +15241,6141,179,12,f +15241,6180,0,1,f +15241,6187,0,3,f +15241,6232,19,1,f +15241,6232,71,2,f +15241,62462,4,2,f +15241,63868,0,4,f +15241,64644,0,1,f +15241,6541,2,2,f +15241,6541,0,2,f +15241,6541,14,4,f +15241,6541,72,5,f +15241,6553,72,1,f +15241,6629,4,1,f +15241,6636,72,4,f +15241,6636,0,4,f +15241,73983,72,2,f +15241,75c03,70,2,f +15241,87079,70,4,f +15241,87079,0,1,f +15241,87083,72,1,f +15241,87087,71,8,f +15241,87087,72,11,f +15241,87552,71,15,f +15241,87580,71,1,f +15241,87580,2,1,f +15241,88072,0,2,f +15241,88292,0,4,f +15241,88393,72,4,f +15241,88811,179,2,f +15241,89519,148,1,f +15241,90258,72,2,f +15241,92099,72,1,f +15241,92107,72,1,f +15241,95199,72,2,f +15241,95347,0,7,f +15241,96874,25,1,t +15241,970c00pr0682,326,2,f +15241,970c00pr0684,326,1,f +15241,970c00pr0685,326,1,f +15241,970c00pr0692,0,1,f +15241,973pr2708c01,0,2,f +15241,973pr2710c01,326,1,f +15241,973pr2711c01,326,1,f +15241,973pr2713c01,0,1,f +15241,973pr2719c01,0,1,f +15241,98138,41,1,f +15241,98138,179,4,f +15241,98139,148,1,f +15241,98139,297,1,f +15241,98283,72,4,f +15241,98560,71,6,f +15241,99781,71,1,f +15242,12825,0,1,f +15242,2412b,80,1,f +15242,2460,0,1,f +15242,3001,0,2,f +15242,3022,0,2,f +15242,3036,72,1,f +15242,30374,70,2,f +15242,3626bpr0697,14,1,f +15242,3626bpr0771,14,1,f +15242,3626bpr0945,14,1,f +15242,3937,0,2,f +15242,3938,0,2,f +15242,3940b,0,3,f +15242,3941,0,2,f +15242,3957a,80,2,f +15242,3960,15,1,f +15242,4150,15,2,f +15242,43723,0,1,f +15242,43898,80,1,f +15242,4589,80,1,f +15242,4740,71,6,f +15242,48729b,0,2,f +15242,60474,15,1,f +15242,6141,36,2,f +15242,6141,46,2,f +15242,6222,0,1,f +15242,64644,0,1,f +15242,87079,0,2,f +15242,87580,0,3,f +15242,87618,71,1,f +15242,90370pr0001,0,2,f +15242,93219pr0005,0,1,f +15242,93563,27,1,f +15242,970c00pr0401,272,1,f +15242,970c00pr0402,0,1,f +15242,970c00pr0403,15,1,f +15242,973pr2180c01,15,1,f +15242,973pr2181c01,15,1,f +15242,973pr2183c01,0,1,f +15242,99242,0,1,f +15243,3626bpr1096,14,1,f +15243,87994,179,1,f +15243,88646pr0001,15,1,f +15243,970c00pr0011,15,1,f +15243,973pr2203c01,15,1,f +15243,98385,308,1,f +15243,99250pr0001,4,1,f +15247,104,383,2,f +15247,2357,1,2,f +15247,2357,15,2,f +15247,2362b,15,2,f +15247,2412b,383,4,f +15247,2412b,7,5,f +15247,2420,7,2,f +15247,2420,1,2,f +15247,2420,4,6,f +15247,2420,15,4,f +15247,2431,7,2,f +15247,2431,4,2,f +15247,2432,15,4,f +15247,2432,7,2,f +15247,2432,4,2,f +15247,2436,7,3,f +15247,2449,0,2,f +15247,2450,15,2,f +15247,2453a,15,2,f +15247,2456,0,1,f +15247,2486,15,1,f +15247,2540,0,2,f +15247,2540,15,2,f +15247,2540,7,2,f +15247,2555,15,4,f +15247,2555,7,2,f +15247,2694,47,1,f +15247,2711,0,4,f +15247,2714a,7,2,f +15247,2730,7,1,f +15247,2780,0,4,f +15247,2819,7,1,f +15247,298c03,7,2,f +15247,2995,0,4,f +15247,2996,15,4,f +15247,3001,1,1,f +15247,3002,15,2,f +15247,3003,0,5,f +15247,3003,7,2,f +15247,3003,4,2,f +15247,3004,0,2,f +15247,3004,4,2,f +15247,3004,1,5,f +15247,3004,7,1,f +15247,3004,15,4,f +15247,3005,7,6,f +15247,3005,15,6,f +15247,3008,0,2,f +15247,3008,15,2,f +15247,3009,15,4,f +15247,3009,4,2,f +15247,3010,4,2,f +15247,3010,7,2,f +15247,3010,15,1,f +15247,3020,1,1,f +15247,3020,15,2,f +15247,3020,4,2,f +15247,3020,0,4,f +15247,3021,15,2,f +15247,3021,14,4,f +15247,3021,4,6,f +15247,3021,7,4,f +15247,3021,0,1,f +15247,3022,4,8,f +15247,3022,14,2,f +15247,3022,15,4,f +15247,3022,1,1,f +15247,3022,7,6,f +15247,3023,0,5,f +15247,3023,4,5,f +15247,3023,7,9,f +15247,3023,15,22,f +15247,3024,7,6,f +15247,3024,15,14,f +15247,3024,4,2,f +15247,3031,15,1,f +15247,3032,7,2,f +15247,3033,15,1,f +15247,3034,15,1,f +15247,3034,4,1,f +15247,3034,0,3,f +15247,3034,7,5,f +15247,3035,7,1,f +15247,3039,15,2,f +15247,3039pc1,0,1,f +15247,3040b,7,2,f +15247,3040p33,0,2,f +15247,3062b,7,10,f +15247,3062b,1,1,f +15247,3068b,7,1,f +15247,3069b,14,4,f +15247,3069b,1,2,f +15247,3069b,4,2,f +15247,3069b,15,4,f +15247,3069b,7,4,f +15247,3070b,7,2,f +15247,3297,15,1,f +15247,3460,4,1,f +15247,3460,15,3,f +15247,3622,15,2,f +15247,3622,4,2,f +15247,3622,7,2,f +15247,3623,4,2,f +15247,3623,14,4,f +15247,3623,7,4,f +15247,3623,15,4,f +15247,3647,7,2,f +15247,3660,7,1,f +15247,3660,0,9,f +15247,3665,4,2,f +15247,3665,0,2,f +15247,3665,7,2,f +15247,3665,1,2,f +15247,3666,4,2,f +15247,3666,7,4,f +15247,3666,0,5,f +15247,3666,15,6,f +15247,3685,15,2,f +15247,3700,1,2,f +15247,3700,0,3,f +15247,3700,7,4,f +15247,3701,0,2,f +15247,3702,0,2,f +15247,3706,0,5,f +15247,3709,15,1,f +15247,3709,0,2,f +15247,3710,0,1,f +15247,3710,7,6,f +15247,3710,4,1,f +15247,3710,1,3,f +15247,3710,15,6,f +15247,3713,7,9,f +15247,3737,0,1,f +15247,3743,7,1,f +15247,3747b,0,8,f +15247,3749,7,5,f +15247,3794a,7,4,f +15247,3795,4,3,f +15247,3795,0,1,f +15247,3795,15,2,f +15247,3832,4,2,f +15247,3832,0,3,f +15247,3832,7,1,f +15247,3855,47,6,f +15247,3894,0,2,f +15247,3895,0,2,f +15247,3937,0,1,f +15247,3937,1,2,f +15247,3937,4,4,f +15247,3938,1,2,f +15247,3938,4,4,f +15247,3938,0,1,f +15247,3941,15,1,f +15247,3957a,1,2,f +15247,3957a,7,4,f +15247,4032a,0,1,f +15247,4032a,7,1,f +15247,4033,4,2,f +15247,4033,15,4,f +15247,4070,15,16,f +15247,4070,0,2,f +15247,4070,4,4,f +15247,4081b,7,2,f +15247,4081b,4,2,f +15247,4081b,15,2,f +15247,4085c,15,2,f +15247,4085c,7,6,f +15247,4150,7,1,f +15247,4150p01,15,1,f +15247,4162,15,4,f +15247,4162,4,2,f +15247,4175,7,5,f +15247,4175,4,2,f +15247,4181,15,1,f +15247,4182,15,1,f +15247,4183,47,2,f +15247,4185,7,5,f +15247,4213,15,3,f +15247,4261,7,2,f +15247,4265b,7,15,f +15247,4274,7,20,f +15247,4275b,14,4,f +15247,4276b,14,4,f +15247,4282,0,1,f +15247,4286,4,2,f +15247,4286,15,2,f +15247,4287,0,4,f +15247,4442,7,4,f +15247,4460b,15,2,f +15247,4460b,4,2,f +15247,4477,4,1,f +15247,4477,15,2,f +15247,4477,0,2,f +15247,4519,0,2,f +15247,4625,15,3,f +15247,4865a,15,6,f +15247,6005,15,2,f +15247,6005,4,6,f +15247,6016,7,1,f +15247,6019,0,1,f +15247,6019,7,24,f +15247,6091,15,2,f +15247,6091,7,4,f +15247,6091,4,6,f +15247,6140,7,1,f +15247,6141,47,5,f +15247,6141,36,5,f +15247,6141,4,3,f +15247,6141,15,7,f +15247,6141,7,20,f +15247,6141,46,5,f +15247,63965,15,1,f +15247,6538b,7,2,f +15247,6541,7,3,f +15247,6541,4,2,f +15247,6587,8,2,f +15247,6589,7,4,f +15247,6636,7,3,f +15247,71075,383,4,f +15247,71076,383,4,f +15247,71128,383,4,f +15247,71182,383,2,f +15247,71183,383,4,f +15247,71184,383,4,f +15247,rb00168,0,3,f +15249,14226c31,0,1,f +15249,2357,71,4,f +15249,2431,70,3,f +15249,2431,72,1,f +15249,2445,72,4,f +15249,2445,70,2,f +15249,2449,308,4,f +15249,2453a,71,1,f +15249,2454a,71,2,f +15249,2458,72,4,f +15249,2570,70,1,f +15249,2653,0,4,f +15249,2654,0,2,f +15249,2714a,71,1,f +15249,2780,0,2,f +15249,2780,0,2,t +15249,3001,70,2,f +15249,3003,71,2,f +15249,3003,72,2,f +15249,3004,71,7,f +15249,30045,0,1,f +15249,3005,72,14,f +15249,3005,0,14,f +15249,3005,71,15,f +15249,30055,0,6,f +15249,3008,0,2,f +15249,3008,71,3,f +15249,3010,71,2,f +15249,30136,308,12,f +15249,3020,70,1,f +15249,3021,71,1,f +15249,3021,70,2,f +15249,3022,72,1,f +15249,3023,320,1,f +15249,3023,70,1,f +15249,30237a,72,2,f +15249,30273,80,1,f +15249,3030,288,2,f +15249,3033,72,1,f +15249,3034,70,2,f +15249,3035,72,3,f +15249,30374,70,2,f +15249,30385,82,1,f +15249,3039,272,6,f +15249,3040b,71,2,f +15249,3045,272,4,f +15249,3048c,297,3,f +15249,3062b,70,1,f +15249,3070b,72,1,f +15249,3070b,72,1,t +15249,32000,72,2,f +15249,32062,4,1,f +15249,32524,0,4,f +15249,32556,19,4,f +15249,3307,71,1,f +15249,3308,0,2,f +15249,3455,71,2,f +15249,3460,308,13,f +15249,3460,72,3,f +15249,3581,71,1,f +15249,3626bpr0458,14,1,f +15249,3626bpr0500,14,1,f +15249,3626bpr0511,378,3,f +15249,3666,0,1,f +15249,3666,72,2,f +15249,3673,71,1,f +15249,3673,71,1,t +15249,3684,308,4,f +15249,3688,272,1,f +15249,3700,72,1,f +15249,3710,72,1,f +15249,3710,70,3,f +15249,3710,272,1,f +15249,3713,4,2,f +15249,3713,4,1,t +15249,3795,70,4,f +15249,3844,80,1,f +15249,3846pr24,71,1,f +15249,3847,135,1,f +15249,3848,72,1,f +15249,40241,70,1,f +15249,4032a,70,1,f +15249,4070,320,16,f +15249,41539,72,2,f +15249,4162,71,1,f +15249,41753,72,1,t +15249,43093,1,2,f +15249,43899,71,3,f +15249,4444,71,1,f +15249,4460b,308,8,f +15249,4495b,272,1,f +15249,4495b,82,1,f +15249,4495b,378,4,f +15249,4498,70,1,f +15249,4510,0,2,f +15249,4733,72,1,f +15249,47456,132,5,f +15249,48729a,0,2,f +15249,48729a,0,1,t +15249,49668,135,15,f +15249,52501,72,1,f +15249,53451,15,2,t +15249,53451,15,4,f +15249,53457,320,1,f +15249,54200,288,2,f +15249,54200,288,1,t +15249,55817,132,4,f +15249,59900,4,2,f +15249,60169,72,2,f +15249,60475a,71,1,f +15249,6066,71,1,f +15249,60751,134,1,f +15249,60751,132,2,f +15249,60752,135,1,f +15249,60752,134,1,f +15249,6111,70,2,f +15249,61184,71,2,f +15249,6126a,57,2,f +15249,6141,0,11,f +15249,6141,0,3,t +15249,61482,71,1,t +15249,61482,71,1,f +15249,61747,320,1,f +15249,6182,71,2,f +15249,61856p40,72,1,f +15249,62408,148,1,f +15249,6249,72,2,f +15249,63965,0,1,f +15249,6536,72,1,f +15249,6541,72,4,f +15249,6541,0,4,f +15249,6636,70,9,f +15249,85545,1,1,f +15249,970x026,71,2,f +15249,970x199,70,3,f +15249,973pr1318c01,272,1,f +15249,973pr1321c01,72,1,f +15249,973pr1349c01,70,2,f +15249,973pr1352c01,72,1,f +15252,2736,71,1,f +15252,2736,71,1,t +15252,3021,15,1,f +15252,3070b,15,1,t +15252,3070b,15,1,f +15252,32034,0,1,f +15252,32064b,15,2,f +15252,3623,4,1,f +15252,3626bpb0117,14,1,f +15252,3707,0,1,f +15252,4195285,89,1,f +15252,43373,25,1,f +15252,43374,15,1,f +15252,43702,25,1,f +15252,45522,4,1,f +15252,6232,4,1,f +15252,970c00,4,1,f +15252,973bpb157c01,4,1,f +15254,2046,0,1,f +15254,2343,47,1,f +15254,2345,0,4,f +15254,2357,0,1,f +15254,2357,7,2,f +15254,2362a,0,1,f +15254,2397,1,1,f +15254,2431,7,2,f +15254,2449,0,1,f +15254,2453a,0,4,f +15254,2462,7,2,f +15254,2470,6,2,f +15254,2488,0,1,f +15254,2540,7,1,f +15254,2586p4b,7,1,f +15254,3004,0,6,f +15254,3004,7,7,f +15254,3004,6,1,f +15254,3005,0,13,f +15254,3005,7,9,f +15254,3010,7,2,f +15254,3010,0,1,f +15254,3020,4,1,f +15254,3021,4,1,f +15254,3023,6,1,f +15254,3023,4,1,f +15254,3023,7,4,f +15254,3023,1,1,f +15254,3023,0,1,f +15254,3024,0,2,f +15254,3024,7,3,f +15254,3034,7,1,f +15254,3036,7,1,f +15254,3039,7,1,f +15254,3040b,7,1,f +15254,3048c,0,3,f +15254,3068bp40,15,1,f +15254,3069b,7,2,f +15254,3307,0,2,f +15254,3308,0,2,f +15254,3308pb01,0,1,f +15254,3334,2,1,f +15254,3581,0,2,f +15254,3622,0,2,f +15254,3622,7,3,f +15254,3626bpr0001,14,1,f +15254,3626bpx96,14,1,f +15254,3626bpx97,14,1,f +15254,3659,7,1,f +15254,3660,7,5,f +15254,3665,7,2,f +15254,3665,0,6,f +15254,3666,7,1,f +15254,3710,1,1,f +15254,3710,0,1,f +15254,3710,7,1,f +15254,3794a,0,1,f +15254,3795,0,3,f +15254,3830,0,2,f +15254,3831,0,2,f +15254,3844,0,1,f +15254,3957a,0,1,f +15254,4070,0,1,f +15254,4070,7,2,f +15254,4081b,7,1,f +15254,4081b,0,2,f +15254,4085c,0,3,f +15254,4162,7,1,f +15254,4286,0,2,f +15254,4444,0,1,f +15254,4444pb03,0,1,f +15254,4493c01pb01,6,1,f +15254,4497,6,2,f +15254,4524,0,1,f +15254,4529,0,1,f +15254,4589,7,1,f +15254,4589,0,2,f +15254,4600,0,1,f +15254,4738a,6,1,f +15254,4739a,6,1,f +15254,6019,1,2,f +15254,6020,6,1,f +15254,6066,7,3,f +15254,6082,8,1,f +15254,6083,8,1,f +15254,6105,6,2,f +15254,6121,4,1,f +15254,6122,0,1,f +15254,6123,8,1,f +15254,6124,21,1,f +15254,6125,4,1,f +15254,6126a,57,3,f +15254,6131,1,1,f +15254,6132,15,1,f +15254,6133,4,2,f +15254,6141,34,4,f +15254,6141,36,2,f +15254,87685,4,1,f +15254,87686,4,1,f +15254,87687,4,1,f +15254,970c00,0,1,f +15254,970c00,1,1,f +15254,970c00,7,1,f +15254,973p46c02,1,1,f +15254,973p4bc02,4,1,f +15254,973pb0105c02,4,1,f +15254,x376px1,14,1,f +15256,2397,72,1,f +15256,2412b,25,9,f +15256,2432,71,1,f +15256,2432,15,1,f +15256,2446,15,3,f +15256,2447,82,1,t +15256,2447,82,3,f +15256,2456,72,2,f +15256,2466,182,1,f +15256,2540,71,3,f +15256,2573,25,6,f +15256,2654,71,2,f +15256,2780,0,30,f +15256,2780,0,4,t +15256,2817,71,2,f +15256,2905,0,8,f +15256,298c02,15,1,t +15256,298c02,15,2,f +15256,3004,71,4,f +15256,30041,0,1,f +15256,30042,0,1,f +15256,3006,15,2,f +15256,3008,15,3,f +15256,3008,0,1,f +15256,3009,15,7,f +15256,3010,15,2,f +15256,30153,42,6,f +15256,30180,15,1,f +15256,3020,15,3,f +15256,3022,71,1,f +15256,3022,72,12,f +15256,3023,25,9,f +15256,30236,0,2,f +15256,3031,72,1,f +15256,3033,72,1,f +15256,3034,0,1,f +15256,3034,15,6,f +15256,3034,72,13,f +15256,3035,72,1,f +15256,30350b,0,4,f +15256,30359b,72,2,f +15256,3036,71,1,f +15256,3037,15,2,f +15256,3039pr0002,15,1,f +15256,3040b,0,2,f +15256,3040b,25,2,f +15256,3045,15,2,f +15256,30503,72,2,f +15256,30503,0,2,f +15256,30553,71,6,f +15256,3069b,15,4,f +15256,3069b,33,4,f +15256,3069bpr0086,71,1,f +15256,3069bpr0090,72,1,f +15256,3069bpr0101,71,2,f +15256,32002,72,7,f +15256,32002,72,3,t +15256,32009,71,4,f +15256,32013,0,5,f +15256,32013,72,2,f +15256,32014,0,6,f +15256,32015,71,4,f +15256,32018,72,2,f +15256,32028,15,2,f +15256,32034,71,1,f +15256,32039,71,6,f +15256,32054,4,6,f +15256,32056,0,2,f +15256,32062,4,10,f +15256,32064b,0,2,f +15256,32064b,71,4,f +15256,32064b,14,4,f +15256,32073,71,4,f +15256,32123b,14,2,t +15256,32123b,14,14,f +15256,32138,71,2,f +15256,32174,0,7,f +15256,32192,72,2,f +15256,32199,72,1,f +15256,32271,72,1,f +15256,32278,72,3,f +15256,32316,71,2,f +15256,32348,1,2,f +15256,32449,15,4,f +15256,32476,0,6,f +15256,32525,72,2,f +15256,32526,71,4,f +15256,33243,15,6,f +15256,3460,71,2,f +15256,3460,15,3,f +15256,3623,15,2,f +15256,3626bpr0136,14,1,f +15256,3626bpr0233,14,1,f +15256,3626bpr0250,14,1,f +15256,3665,0,2,f +15256,3666,71,6,f +15256,3666,15,3,f +15256,3700,15,4,f +15256,3701,15,1,f +15256,3702,71,2,f +15256,3703,0,4,f +15256,3705,0,7,f +15256,3706,0,4,f +15256,3707,0,4,f +15256,3708,0,3,f +15256,3710,71,2,f +15256,3710,15,2,f +15256,3710,72,1,f +15256,3713,4,28,f +15256,3713,4,3,t +15256,3795,72,2,f +15256,3795,15,2,f +15256,3832,72,1,f +15256,3895,71,2,f +15256,3937,15,1,f +15256,3941,72,1,f +15256,3959,72,2,f +15256,40340,0,1,f +15256,40379,27,2,f +15256,40490,0,2,f +15256,4081b,0,2,f +15256,40902,0,2,f +15256,41239,71,2,f +15256,41530,71,2,f +15256,41531,0,1,f +15256,4162,71,1,f +15256,41747,15,2,f +15256,41748,15,2,f +15256,41769,0,1,f +15256,41770,0,1,f +15256,41854,72,1,f +15256,42022,15,2,f +15256,4274,1,3,t +15256,4274,1,11,f +15256,4282,72,2,f +15256,4285b,15,6,f +15256,4286,15,4,f +15256,4287,71,2,f +15256,43093,1,11,f +15256,43337,15,2,f +15256,43719,72,1,f +15256,43898,15,2,f +15256,44135,72,1,f +15256,44294,71,12,f +15256,44302a,72,1,f +15256,44567a,72,3,f +15256,44567a,71,7,f +15256,44728,15,1,f +15256,44728,0,2,f +15256,44728,71,6,f +15256,4477,0,2,f +15256,4519,71,8,f +15256,45677,15,2,f +15256,45705,182,2,f +15256,4589,42,8,f +15256,4589,33,6,f +15256,4716,71,1,f +15256,47397,0,1,f +15256,47398,0,1,f +15256,47905,72,2,f +15256,48183,71,1,f +15256,48336,0,4,f +15256,48496,0,1,f +15256,4865a,15,1,f +15256,50304,0,2,f +15256,50305,0,2,f +15256,50923,72,1,f +15256,52031,15,1,f +15256,53543,0,1,f +15256,54096,15,2,f +15256,54271,148,1,f +15256,54821,143,3,f +15256,55615,71,4,f +15256,57539,25,1,f +15256,57906,27,1,f +15256,58843,15,2,f +15256,58844pat0001,34,2,f +15256,58845,34,2,f +15256,58846,0,2,f +15256,58947,182,2,f +15256,59426,72,1,f +15256,59443,71,6,f +15256,6091,0,2,f +15256,6091,15,2,f +15256,6111,15,3,f +15256,6118,25,2,f +15256,6134,71,1,f +15256,6141,182,3,t +15256,6141,33,1,t +15256,6141,182,8,f +15256,6141,33,2,f +15256,6179,71,4,f +15256,6187,0,1,f +15256,6558,0,3,f +15256,6587,72,1,f +15256,6629,72,2,f +15256,6632,0,2,f +15256,73983,72,4,f +15256,78c04,179,6,f +15256,78c04,179,1,t +15256,970x194,15,3,f +15256,973pr1317c01,15,3,f +15257,3004,0,3,f +15257,3020,0,1,f +15257,3022,0,5,f +15257,3023,0,1,f +15257,3660,0,2,f +15257,3794b,0,3,f +15257,3795,71,1,f +15257,4070,0,2,f +15257,44302a,0,1,f +15257,44567a,0,1,f +15257,50950,0,2,f +15257,54200,0,3,f +15259,2420,0,2,f +15259,2450,28,1,f +15259,2555,0,3,f +15259,2654,71,1,f +15259,3003,19,1,f +15259,30033,0,1,f +15259,30141,72,1,f +15259,30162,72,1,f +15259,3021,70,1,f +15259,3023,19,1,f +15259,30385,297,1,f +15259,33057,484,1,f +15259,3623,70,1,f +15259,3626bpr0753a,14,1,f +15259,3841,72,1,f +15259,3899,4,1,f +15259,4032a,19,1,f +15259,4733,0,1,f +15259,47753pr20,272,1,f +15259,47759pr0004,272,1,f +15259,48729b,71,7,f +15259,48729b,71,1,t +15259,53989,0,6,f +15259,6141,297,2,f +15259,6141,297,1,t +15259,61780,70,1,f +15259,62810,0,1,f +15259,64647,57,1,t +15259,64647,57,1,f +15259,87747,0,1,f +15259,970c00,28,1,f +15259,973pr1721ac01,19,1,f +15260,2868b,0,1,f +15260,2871a,0,2,f +15260,3004,0,1,f +15260,5306b,0,1,f +15260,5306c01,8,1,f +15260,6035,15,1,f +15260,70358,0,1,f +15260,70931,0,1,f +15260,71128,383,1,f +15260,74746,8,8,f +15260,74747,8,16,f +15261,2452,0,1,f +15261,2695,14,2,f +15261,2696,0,2,f +15261,2780,0,2,f +15261,2825,14,6,f +15261,2853,7,2,f +15261,2904,0,1,f +15261,2905,14,2,f +15261,3021,14,1,f +15261,3023,7,1,f +15261,3069b,7,1,f +15261,32002,8,2,f +15261,32002,8,1,t +15261,32009,0,2,f +15261,32017,14,2,f +15261,32039,0,4,f +15261,32056,0,2,f +15261,32062,0,2,f +15261,32073,0,1,f +15261,32123b,7,10,f +15261,32123b,7,1,t +15261,3298,14,1,f +15261,3701,0,1,f +15261,3705,0,9,f +15261,3706,0,1,f +15261,3713,7,2,f +15261,3713,7,1,t +15261,3749,7,2,f +15261,4274,7,1,t +15261,4274,7,2,f +15261,4276b,0,1,f +15261,4519,0,5,f +15261,4865a,0,1,f +15261,6141,46,1,t +15261,6141,46,1,f +15261,6536,0,7,f +15261,6536,14,1,f +15261,6558,0,2,f +15261,6632,7,2,f +15261,73129,7,1,f +15261,75535,14,1,f +15261,78c07,0,2,f +15262,11272,148,1,f +15262,11289,41,1,f +15262,11302pat0003,15,2,f +15262,15339,179,1,f +15262,15341,15,2,f +15262,15343,15,2,f +15262,15345,15,1,f +15262,15353,25,1,f +15262,15354,25,1,f +15262,15354,4,1,f +15262,15355,0,2,f +15262,15361,41,2,f +15262,2780,0,2,f +15262,30552,0,2,f +15262,30553,0,2,f +15262,3069bpr0136,41,1,f +15262,32002,19,2,f +15262,32054,0,2,f +15262,32062,4,2,f +15262,3626c,1,1,f +15262,41531,15,1,f +15262,4274,71,1,f +15262,43093,1,5,f +15262,4519,71,1,f +15262,4740,57,1,f +15262,48729b,0,2,f +15262,58176,182,1,f +15262,59443,0,1,f +15262,59900,182,2,f +15262,60115,0,1,f +15262,60484,0,1,f +15262,61184,71,2,f +15262,61252,72,1,f +15262,85940,0,1,f +15262,86208,72,1,f +15262,90608,0,2,f +15262,90609,0,1,f +15262,90611,72,1,f +15262,90612,0,1,f +15262,90617,72,3,f +15262,90625,0,1,f +15262,90639pr0027,179,1,f +15262,90640,148,2,f +15262,90641,15,5,f +15262,92222,148,3,f +15262,92233,148,2,f +15262,93571,0,3,f +15262,95199,72,1,f +15262,98138pr0019,15,1,f +15262,98313,15,4,f +15262,98567,0,1,f +15262,98597,148,2,f +15263,2470,6,2,f +15263,3020,0,1,f +15263,3069b,0,1,f +15263,3626bpr0001,14,1,f +15263,3795,0,1,f +15263,3839b,0,1,f +15263,3846p4h,7,1,f +15263,3847,8,1,f +15263,3896,8,1,f +15263,4085c,0,3,f +15263,4495b,14,1,f +15263,4497,6,1,f +15263,4600,7,1,f +15263,4738a,6,1,f +15263,4739a,6,1,f +15263,6141,36,1,t +15263,6141,46,1,t +15263,6141,36,2,f +15263,6141,46,2,f +15263,970c00,1,1,f +15263,973px138c01,4,1,f +15265,14pb03,15,1,f +15265,15,1,2,f +15265,15,4,2,f +15265,15,0,3,f +15265,17,4,4,f +15265,17,0,3,f +15265,3001a,1,2,f +15265,3004,47,4,f +15265,3004,0,1,f +15265,3005,15,8,f +15265,3008,1,2,f +15265,3010,15,2,f +15265,3010,14,3,f +15265,3010,47,1,f +15265,3010,1,1,f +15265,3010pb035e,1,1,f +15265,3020,14,3,f +15265,3023,14,8,f +15265,3029,1,1,f +15265,3029,7,1,f +15265,3029,15,1,f +15265,3031,1,1,f +15265,3046a,1,2,f +15265,3137c01,0,3,f +15265,3139,0,6,f +15265,3624,1,2,f +15265,3624,0,3,f +15265,3625,0,2,f +15265,3626a,14,7,f +15266,11213,71,1,f +15266,11458,72,2,f +15266,11477,72,3,f +15266,15310pr0001,0,2,f +15266,15391,0,2,f +15266,15392,72,2,f +15266,15392,72,1,t +15266,2654,71,1,f +15266,2780,0,1,t +15266,2780,0,3,f +15266,2817,71,1,f +15266,2877,71,3,f +15266,3020,0,1,f +15266,3021,72,1,f +15266,3022,0,1,f +15266,3023,72,4,f +15266,3034,0,1,f +15266,30374,71,2,f +15266,3040b,71,2,f +15266,30561,4,2,f +15266,32054,0,1,f +15266,32064a,72,1,f +15266,32073,71,1,f +15266,32270,0,1,f +15266,3626c,0,2,f +15266,3626cpr1318,78,1,f +15266,3626cpr1363,78,1,f +15266,3660,0,1,f +15266,3673,71,1,f +15266,3673,71,1,t +15266,3679,71,1,f +15266,3680,0,1,f +15266,3700,0,3,f +15266,3710,72,3,f +15266,4079b,0,1,f +15266,43898,72,1,f +15266,4740,36,1,f +15266,50231,4,2,f +15266,59443,72,1,f +15266,59900,36,3,f +15266,59900,72,1,f +15266,60483,72,1,f +15266,61184,71,3,f +15266,6141,36,1,t +15266,6141,36,11,f +15266,62462,71,3,f +15266,64644,0,3,f +15266,85984,71,1,f +15266,85984,72,1,f +15266,87083,72,1,f +15266,92280,71,1,f +15266,93273,0,1,f +15266,970c00,4,2,f +15266,970c00pr0583,0,2,f +15266,973pr0810c01,4,2,f +15266,973pr0811c01,0,2,f +15266,99206,15,1,f +15266,99781,71,3,f +15267,2432,14,1,f +15267,30027b,14,4,f +15267,30028,0,4,f +15267,30602,14,1,f +15267,3626bpb0038,15,1,f +15267,41855,14,1,f +15267,41861c01,7,1,f +15267,41862,1,1,f +15267,41875,6,1,f +15267,4600,0,1,f +15267,x351,4,1,f +15269,10247,71,1,f +15269,11203,72,1,f +15269,11211,71,2,f +15269,11289,57,1,f +15269,11291,4,1,f +15269,11477,0,4,f +15269,11477,179,2,f +15269,13731,0,4,f +15269,14518,0,1,f +15269,14769,0,2,f +15269,15068,0,3,f +15269,15207,4,1,f +15269,15392,72,2,f +15269,15403,0,2,f +15269,15706,0,2,f +15269,18663,47,1,f +15269,18958,179,1,f +15269,18987,0,1,f +15269,19185,0,1,f +15269,2340,0,2,f +15269,2412b,0,2,f +15269,2412b,179,6,f +15269,2419,28,3,f +15269,2420,15,2,f +15269,2420,4,2,f +15269,2420,0,2,f +15269,2436,14,2,f +15269,2445,72,1,f +15269,2446,4,1,f +15269,2450,0,2,f +15269,2456,72,2,f +15269,2458,4,1,f +15269,2540,14,2,f +15269,2780,0,4,f +15269,2877,0,4,f +15269,3003,15,1,f +15269,3004,72,4,f +15269,3008,0,2,f +15269,3009,72,1,f +15269,30090,41,1,f +15269,30093,288,2,f +15269,3010,0,1,f +15269,3010,71,2,f +15269,3020,0,2,f +15269,3020,4,1,f +15269,3020,28,2,f +15269,3021,4,1,f +15269,3021,15,1,f +15269,3023,14,2,f +15269,3023,4,2,f +15269,3023,0,4,f +15269,30236,72,2,f +15269,30236,0,2,f +15269,30237b,15,1,f +15269,3030,28,1,f +15269,3034,4,2,f +15269,3036,4,1,f +15269,30377,71,2,f +15269,3039,72,1,f +15269,3040b,14,2,f +15269,3040b,72,8,f +15269,30414,14,2,f +15269,3046a,0,4,f +15269,3062b,4,6,f +15269,30663,71,1,f +15269,3068b,288,2,f +15269,3069b,72,3,f +15269,3070b,288,6,f +15269,32000,15,4,f +15269,32000,0,2,f +15269,32064a,0,1,f +15269,32532,71,1,f +15269,3298,15,1,f +15269,3298,72,1,f +15269,3622,1,2,f +15269,3623,14,2,f +15269,3623,0,4,f +15269,3623,72,2,f +15269,3626bpr1070,78,1,f +15269,3626cpr1285,0,1,f +15269,3626cpr1622,78,1,f +15269,3660,72,5,f +15269,3660,15,1,f +15269,3666,72,2,f +15269,3666,14,10,f +15269,3673,71,2,f +15269,3676,72,2,f +15269,3700,0,2,f +15269,3701,71,4,f +15269,3707,0,3,f +15269,3710,71,2,f +15269,3710,4,2,f +15269,3710,14,3,f +15269,3710,0,3,f +15269,3747a,0,1,f +15269,3829c01,14,1,f +15269,3838,14,1,f +15269,4032a,71,1,f +15269,4032a,288,1,f +15269,4079,14,1,f +15269,4081b,4,2,f +15269,42023,72,2,f +15269,4274,1,1,f +15269,4274,71,2,f +15269,44676,0,2,f +15269,44676,72,2,f +15269,4477,0,2,f +15269,4497,179,1,f +15269,4519,71,2,f +15269,48336,71,1,f +15269,48336,4,2,f +15269,4865a,15,2,f +15269,50950,72,4,f +15269,51739,0,2,f +15269,54200,4,4,f +15269,54200,0,2,f +15269,54383,0,1,f +15269,54383,72,2,f +15269,54384,0,1,f +15269,54384,72,2,f +15269,55706,0,1,f +15269,57539,179,2,f +15269,58176,182,2,f +15269,58846,0,2,f +15269,59275,0,2,f +15269,59443,14,1,f +15269,59900,70,2,f +15269,59900,297,2,f +15269,59900,40,4,f +15269,6003,72,2,f +15269,60169,72,1,f +15269,60219,72,2,f +15269,6041,0,1,f +15269,6091,0,2,f +15269,61184,71,2,f +15269,6141,71,6,f +15269,6141,1000,8,f +15269,6141,182,1,f +15269,61482,71,1,f +15269,62810,0,1,f +15269,63864,14,2,f +15269,64567,0,4,f +15269,6541,14,4,f +15269,6541,71,2,f +15269,6553,72,1,f +15269,6558,1,6,f +15269,85984,0,1,f +15269,85984,15,5,f +15269,87079,72,2,f +15269,87087,0,4,f +15269,87580,4,2,f +15269,87587pr0001,72,1,f +15269,87611,72,1,f +15269,87615,0,1,f +15269,87752,40,1,f +15269,87991,14,1,f +15269,88072,19,1,f +15269,88930,0,1,f +15269,90258,72,7,f +15269,92280,0,4,f +15269,92290,297,1,f +15269,92946,0,2,f +15269,92947,15,17,f +15269,93273,0,2,f +15269,93606,0,2,f +15269,970c00,0,1,f +15269,970c00,72,1,f +15269,970c00,2,1,f +15269,970x026,4,1,f +15269,973pr2168c01,25,1,f +15269,973pr2922c01,72,1,f +15269,973pr2929c01,0,1,f +15269,973pr2933c01,4,1,f +15269,98138,71,2,f +15269,98721,0,1,f +15270,3003,4,1,f +15270,3004,4,1,f +15270,3007,4,1,f +15270,3009,14,2,f +15270,3039,47,1,f +15270,3460,7,4,f +15270,3461,7,1,f +15270,3462,4,1,f +15270,3660,4,3,f +15270,3660,14,1,f +15270,3795,14,1,f +15271,2431,71,2,f +15271,3003,71,1,f +15271,3005,2,1,f +15271,3021,72,2,f +15271,3023,2,1,f +15271,3031,1,1,f +15271,3040b,70,2,f +15271,3069b,2,1,f +15271,3298,72,1,f +15271,3660,70,1,f +15271,3710,25,1,f +15271,3747b,71,1,f +15271,3794b,15,1,f +15271,4070,2,1,f +15271,41769,0,1,f +15271,41770,0,1,f +15271,4589,14,1,f +15271,54200,0,2,f +15271,87087,15,2,f +15272,14728c50,0,1,f +15272,2335p30,15,1,f +15272,2343,14,2,f +15272,2357,15,10,f +15272,2376,0,4,f +15272,2419,0,1,f +15272,2420,15,4,f +15272,2420,0,4,f +15272,2431,4,1,f +15272,2431,0,1,f +15272,2432,0,1,f +15272,2449,0,12,f +15272,2452,0,2,f +15272,2453a,15,1,f +15272,2462,0,2,f +15272,2462,14,6,f +15272,2489,6,4,f +15272,2518,2,4,f +15272,2524,6,2,f +15272,2525px1,15,1,f +15272,2526,14,1,t +15272,2526,14,2,f +15272,2526,1,2,f +15272,2526,1,1,t +15272,2527,4,3,f +15272,2528pb02,15,1,f +15272,2530,8,4,f +15272,2536,6,6,f +15272,2538b,0,1,f +15272,2540,4,1,f +15272,2540,0,2,f +15272,2540,7,3,f +15272,2543,4,1,f +15272,2544,0,3,f +15272,2544,6,1,f +15272,2545,0,2,f +15272,2551,6,1,f +15272,2552px3,7,1,f +15272,2554,6,4,f +15272,2555,0,10,f +15272,2555,15,1,f +15272,2561,6,5,f +15272,2562,6,1,f +15272,2563,6,1,f +15272,2566,0,1,f +15272,2566,2,1,f +15272,2625,15,1,f +15272,2626,0,1,f +15272,2626,15,1,f +15272,2654,0,6,f +15272,3002,0,1,f +15272,3003,0,1,f +15272,3003,14,4,f +15272,3004,0,5,f +15272,3004,14,12,f +15272,3004,15,24,f +15272,3005,0,2,f +15272,3005,14,18,f +15272,3005,15,15,f +15272,3008,15,1,f +15272,3009,15,4,f +15272,3010,15,9,f +15272,3010,14,2,f +15272,3020,7,2,f +15272,3020,0,4,f +15272,3021,0,1,f +15272,3022,0,5,f +15272,3022,1,2,f +15272,3022,7,4,f +15272,3023,0,8,f +15272,3023,4,1,f +15272,3023,7,4,f +15272,3023,14,1,f +15272,3024,15,4,f +15272,3024,0,1,t +15272,3024,0,6,f +15272,3024,15,1,t +15272,3028,7,1,f +15272,3029,0,3,f +15272,3030,4,1,f +15272,3030,0,1,f +15272,3030,7,2,f +15272,3032,4,1,f +15272,3032,15,1,f +15272,3033,7,1,f +15272,3034,0,5,f +15272,3035,0,2,f +15272,3036,7,2,f +15272,3036,0,3,f +15272,3040b,4,2,f +15272,3062b,14,6,f +15272,3062b,2,1,f +15272,3062b,0,22,f +15272,3068b,15,1,f +15272,3127,7,1,f +15272,3185,0,3,f +15272,3307,14,14,f +15272,3403,0,3,f +15272,3404,0,3,f +15272,3455,14,4,f +15272,3460,0,3,f +15272,3581,14,4,f +15272,3622,14,1,f +15272,3622,15,4,f +15272,3626bp35,14,3,f +15272,3626bp43,14,1,f +15272,3626bp44,14,1,f +15272,3626bp48,14,1,f +15272,3626bpb0096,14,1,f +15272,3626bpr0001,14,2,f +15272,3633,14,6,f +15272,3660,0,1,f +15272,3660,14,1,f +15272,3665,14,8,f +15272,3665,4,2,f +15272,3665,0,6,f +15272,3666,0,7,f +15272,3666,15,1,f +15272,3666,7,1,f +15272,3666,4,2,f +15272,3679,7,1,f +15272,3680,0,1,f +15272,3700,15,2,f +15272,3710,15,1,f +15272,3710,4,1,f +15272,3710,0,8,f +15272,3747a,15,2,f +15272,3794a,15,1,f +15272,3794a,0,3,f +15272,3794a,14,3,f +15272,3811,1,1,f +15272,3832,0,3,f +15272,3835,7,1,f +15272,3849,0,1,f +15272,3849,6,1,f +15272,3957a,0,4,f +15272,3958,15,1,f +15272,3958,7,1,f +15272,3959,0,2,f +15272,4032a,2,1,f +15272,4032a,0,3,f +15272,4032a,6,3,f +15272,4035,0,1,f +15272,4070,14,2,f +15272,4070,15,3,f +15272,4070,0,3,f +15272,4081b,0,2,f +15272,4085c,14,1,f +15272,4085c,4,4,f +15272,4085c,0,4,f +15272,4085c,15,3,f +15272,4151a,0,1,f +15272,4213,0,3,f +15272,4213,4,2,f +15272,4275b,0,2,f +15272,4276b,0,2,f +15272,4315,0,2,f +15272,4315,4,2,f +15272,4318,0,1,f +15272,4319,0,3,f +15272,4444,15,8,f +15272,4444p06,15,2,f +15272,4444p07,15,1,f +15272,4477,0,1,f +15272,4477,7,1,f +15272,4477,4,3,f +15272,4490,0,2,f +15272,4495b,14,1,f +15272,4495b,4,1,f +15272,4497,0,3,f +15272,4504,0,2,f +15272,4589,4,2,f +15272,4589,14,4,f +15272,4589,0,6,f +15272,4600,0,2,f +15272,4623,0,2,f +15272,4624,6,4,f +15272,4625,0,1,f +15272,4733,0,1,f +15272,4738a,6,2,f +15272,4739a,6,2,f +15272,476,0,2,f +15272,4865a,4,1,f +15272,4871,0,1,f +15272,56823c30,0,1,f +15272,57503,334,3,f +15272,57504,334,3,f +15272,57505,334,3,f +15272,57506,334,3,f +15272,6016,6,1,f +15272,6019,0,1,f +15272,6020,6,4,f +15272,6044,14,6,f +15272,6067,0,1,f +15272,6091,4,2,f +15272,6091,0,2,f +15272,6104,0,1,f +15272,6141,46,4,f +15272,6141,14,1,t +15272,6141,46,1,t +15272,6141,14,8,f +15272,73037,0,1,f +15272,73590c01a,0,1,f +15272,84943,8,3,f +15272,87692,15,1,f +15272,87693,15,1,t +15272,87694,15,1,t +15272,970c00,1,2,f +15272,970c00,0,1,f +15272,970c00,15,5,f +15272,970c00,7,1,f +15272,973p31c01,14,2,f +15272,973p32c01,14,1,f +15272,973p33c01,14,1,f +15272,973p3bc01,15,1,f +15272,973p3sc01,15,1,f +15272,973pb0206c01,15,3,f +15272,sailbb24,15,1,f +15272,sailbb28,19,1,f +15272,sailbb29,19,1,f +15272,sailbb30,19,1,f +15274,29770,320,1,f +15274,3024,0,1,f +15274,3626cpr9991,84,1,f +15274,61482,71,1,f +15274,88646,0,1,f +15274,970c00,272,1,f +15274,973pr3675c01,272,1,f +15274,98138pr0061,14,1,f +15275,10190,15,4,f +15275,11090,297,4,f +15275,11211,15,2,f +15275,11291,14,1,f +15275,11477,14,2,f +15275,11477,26,4,f +15275,12897,27,1,f +15275,15068,14,3,f +15275,15068pr0011,14,1,f +15275,18031,297,1,f +15275,18868b01,46,2,f +15275,19981pr0049,46,1,f +15275,21445,0,2,f +15275,2432,14,1,f +15275,2436,14,1,f +15275,2540,15,6,f +15275,26045,15,1,f +15275,2654,0,1,f +15275,28959,15,2,f +15275,3020,14,1,f +15275,3022,26,1,f +15275,3022,14,2,f +15275,3023,14,4,f +15275,3023,0,2,f +15275,3024,36,1,t +15275,3024,15,1,t +15275,3024,15,4,f +15275,3024,36,2,f +15275,3062b,15,4,f +15275,3070b,14,1,t +15275,3070b,14,2,f +15275,32064a,15,2,f +15275,3626cpr1991,78,1,f +15275,3941,46,3,f +15275,4032a,0,2,f +15275,4032a,15,1,f +15275,4590,71,2,f +15275,4624,14,1,t +15275,4624,14,2,f +15275,50950,14,2,f +15275,54200,14,1,t +15275,54200,14,2,f +15275,54200,182,4,f +15275,54200,182,1,t +15275,59895,0,2,f +15275,6141,46,1,t +15275,6141,45,1,t +15275,6141,46,6,f +15275,6141,45,2,f +15275,93590,14,1,f +15275,970c00pr1113,1,1,f +15275,973pr3544c01,321,1,f +15275,99780,14,2,f +15275,99781,0,4,f +15276,22670,383,1,f +15276,2339,0,2,f +15276,2357,0,3,f +15276,2445,0,1,f +15276,2453a,19,1,f +15276,2454a,19,6,f +15276,3003,0,3,f +15276,3004,0,15,f +15276,3004,8,1,f +15276,3005,19,8,f +15276,3005,0,4,f +15276,3005,8,2,f +15276,3007,0,2,f +15276,3008,0,2,f +15276,30127,15,4,f +15276,30127,15,1,t +15276,30127,1,1,t +15276,30127,1,1,f +15276,3022,19,1,f +15276,3022,7,1,f +15276,3023,19,6,f +15276,3023,8,2,f +15276,30236,7,2,f +15276,30237a,7,2,f +15276,30238,42,1,f +15276,30240,8,1,f +15276,30374,6,1,f +15276,30374,15,1,f +15276,30374,7,1,f +15276,3039,8,1,f +15276,3040b,8,7,f +15276,3040b,19,8,f +15276,3044c,0,4,f +15276,30614,378,1,f +15276,3062b,15,1,f +15276,3062b,19,4,f +15276,3068b,15,5,f +15276,3068b,0,4,f +15276,3069b,7,9,f +15276,32064a,19,4,f +15276,3245b,19,1,f +15276,3307,19,1,f +15276,3308,8,4,f +15276,3581,19,1,f +15276,3622,8,8,f +15276,3626bpb0009,14,1,f +15276,3626bph1,14,1,f +15276,3660,0,3,f +15276,3665,7,6,f +15276,3678a,15,1,f +15276,3794a,7,1,f +15276,3830,19,2,f +15276,3831,19,2,f +15276,40233,0,1,f +15276,40240,366,1,f +15276,40241,6,1,f +15276,4201,8,1,f +15276,4204,8,1,f +15276,4332,6,1,f +15276,50231px1,0,2,f +15276,6108,8,1,f +15276,6126a,57,5,f +15276,62808,383,2,f +15276,62808,7,4,f +15276,970c00,7,2,f +15276,973c09,15,1,f +15276,973px146c01,7,2,f +15277,14728c100,0,1,f +15277,14728c35,0,1,f +15277,2335,1,6,f +15277,2335p04,15,1,f +15277,2339,0,2,f +15277,2343,14,1,f +15277,2357,1,2,f +15277,2362a,0,2,f +15277,2419,0,1,f +15277,2420,0,2,f +15277,2422,0,1,f +15277,2431,0,8,f +15277,2432,0,1,f +15277,2449,1,2,f +15277,2452,0,3,f +15277,2462,0,4,f +15277,2525p32,15,1,f +15277,2526,4,1,t +15277,2526,4,3,f +15277,2526,14,1,t +15277,2526,14,1,f +15277,2527,4,2,f +15277,2528pb02,15,1,f +15277,2529,15,4,f +15277,2530,8,4,f +15277,2537a,0,1,f +15277,2538,0,3,f +15277,2539,8,1,f +15277,2540,0,6,f +15277,2541,6,1,f +15277,2544,0,3,f +15277,2546,14,1,f +15277,2555,0,2,f +15277,2557c03,6,1,f +15277,2559c03,6,1,f +15277,2560,6,1,f +15277,2561,6,2,f +15277,2562,6,3,f +15277,2564,0,1,f +15277,3001,0,5,f +15277,3003,0,3,f +15277,3004,0,3,f +15277,3004,1,2,f +15277,3005,1,4,f +15277,3005,0,3,f +15277,3009,1,1,f +15277,3010,15,2,f +15277,3010,0,1,f +15277,3010,1,4,f +15277,3020,0,6,f +15277,3022,0,3,f +15277,3022,14,1,f +15277,3022,0,3,t +15277,3023,15,8,f +15277,3023,1,2,f +15277,3023,0,13,f +15277,3024,0,4,f +15277,3030,0,2,f +15277,3034,0,3,f +15277,3039,1,2,f +15277,3040b,0,6,f +15277,3040b,14,4,f +15277,3062b,0,12,f +15277,3068bp30,15,1,f +15277,3184,0,6,f +15277,3298,14,1,f +15277,3455,0,1,f +15277,3460,0,9,f +15277,3622,0,1,f +15277,3622,1,2,f +15277,3623,0,7,f +15277,3626apb07,14,1,f +15277,3626apr0001,14,3,f +15277,3633,0,4,f +15277,3660,0,4,f +15277,3660,14,2,f +15277,3666,14,3,f +15277,3666,0,10,f +15277,3684,1,2,f +15277,3700,0,1,f +15277,3710,0,16,f +15277,3710,1,2,f +15277,3747a,0,2,f +15277,3794a,0,3,f +15277,3794a,14,2,f +15277,3795,1,2,f +15277,3849,0,1,f +15277,3853,14,2,f +15277,3935,0,2,f +15277,3936,0,2,f +15277,3937,14,1,f +15277,3938,14,1,f +15277,3957a,0,1,f +15277,3959,0,2,f +15277,4070,1,2,f +15277,4081b,14,1,f +15277,4081b,0,3,f +15277,4085b,0,4,f +15277,4085b,7,2,f +15277,4208,0,1,f +15277,4209,6,1,f +15277,4213,0,1,f +15277,4286,14,6,f +15277,4286,0,6,f +15277,4287,0,2,f +15277,4315,0,1,f +15277,4460a,1,4,f +15277,4475,14,1,f +15277,4477,0,10,f +15277,4490,1,2,f +15277,4504,0,3,f +15277,4531,0,1,f +15277,4589,14,13,f +15277,4590,0,1,f +15277,4600,0,4,f +15277,4623,0,6,f +15277,4624,6,1,t +15277,4624,6,8,f +15277,4738b,6,1,f +15277,4739b,6,1,f +15277,4790,6,1,f +15277,4844,0,1,f +15277,4865a,0,3,f +15277,57503,334,2,f +15277,57504,334,2,f +15277,57505,334,2,f +15277,57506,334,2,f +15277,6141,46,2,f +15277,84943,8,2,f +15277,87692,14,1,f +15277,87693,14,1,t +15277,87694,14,1,t +15277,970c00,15,4,f +15277,973p3rc01,15,1,f +15277,973pb0204c01,15,3,f +15277,sailbb20,15,1,f +15277,sailbb21,15,1,f +15277,sailbb22,15,1,f +15279,30153,36,1,f +15279,30153,46,1,f +15279,30153,42,1,f +15279,30153,33,1,f +15279,30153,41,1,f +15279,30385,82,1,f +15279,4738a,70,1,f +15279,4739a,70,1,f +15283,2421,0,2,f +15283,2456,4,1,f +15283,2456,15,2,f +15283,2456,14,1,f +15283,2456,1,2,f +15283,2877,72,2,f +15283,3001,4,7,f +15283,3001,15,7,f +15283,3001,14,7,f +15283,3001,1,7,f +15283,3001,70,3,f +15283,3001,25,3,f +15283,3001,0,2,f +15283,3001,2,2,f +15283,3001,71,3,f +15283,3001,27,3,f +15283,3002,14,6,f +15283,3002,1,6,f +15283,3002,2,3,f +15283,3002,0,3,f +15283,3002,4,6,f +15283,3002,15,6,f +15283,3003,4,18,f +15283,3003,27,12,f +15283,3003,14,18,f +15283,3003,1,18,f +15283,3003,70,12,f +15283,3003,15,18,f +15283,3003,2,6,f +15283,3003,71,12,f +15283,3003,0,6,f +15283,3003,25,12,f +15283,3004,4,12,f +15283,3004,1,12,f +15283,3004,27,5,f +15283,3004,15,12,f +15283,3004,0,6,f +15283,3004,70,5,f +15283,3004,25,5,f +15283,3004,71,5,f +15283,3004,14,12,f +15283,3004,2,6,f +15283,3005,0,4,f +15283,3005,1,8,f +15283,3005,14,8,f +15283,3005,15,8,f +15283,3005,4,8,f +15283,3005,2,4,f +15283,3005pe1,15,10,f +15283,3007,4,1,f +15283,3007,1,1,f +15283,3007,14,1,f +15283,3007,15,1,f +15283,3008,14,1,f +15283,3008,1,2,f +15283,3008,15,2,f +15283,3008,4,1,f +15283,3009,1,3,f +15283,3009,15,3,f +15283,3009,4,2,f +15283,3009,14,2,f +15283,3010,1,5,f +15283,3010,14,5,f +15283,3010,70,4,f +15283,3010,0,2,f +15283,3010,4,5,f +15283,3010,25,4,f +15283,3010,27,4,f +15283,3010,71,4,f +15283,3010,15,5,f +15283,3010,2,2,f +15283,3020,14,2,f +15283,3020,4,2,f +15283,3020,1,2,f +15283,3020,71,2,f +15283,3020,15,2,f +15283,3021,71,2,f +15283,3022,15,4,f +15283,3022,1,4,f +15283,3022,14,4,f +15283,3022,4,4,f +15283,3029,2,2,f +15283,3034,71,4,f +15283,3034,14,2,f +15283,3037,0,6,f +15283,3039,0,8,f +15283,3039,47,4,f +15283,3040b,0,8,f +15283,3062b,72,4,f +15283,3065,33,2,f +15283,3065,36,2,f +15283,3065,47,4,f +15283,3297,4,4,f +15283,3298,1,4,f +15283,3298,4,6,f +15283,33303,15,2,f +15283,3455,15,2,f +15283,3622,1,4,f +15283,3622,4,4,f +15283,3622,14,4,f +15283,3622,15,4,f +15283,3622,2,2,f +15283,3622,0,2,f +15283,3626bpr0498,14,1,f +15283,3641,0,4,f +15283,3659,71,6,f +15283,3659,15,4,f +15283,3660,70,4,f +15283,3660,71,2,f +15283,3660,14,4,f +15283,3710,1,2,f +15283,3710,4,4,f +15283,3710,14,4,f +15283,3710,15,4,f +15283,3747b,1,2,f +15283,3795,4,2,f +15283,3823,47,2,f +15283,3957a,0,2,f +15283,4070,15,4,f +15283,4083,0,2,f +15283,42022,14,4,f +15283,4286,4,8,f +15283,4485,1,1,f +15283,4488,0,2,f +15283,4600,71,2,f +15283,4624,71,4,f +15283,4727,10,4,f +15283,4728,4,4,f +15283,55295,0,1,f +15283,55296,0,1,f +15283,55297,0,1,f +15283,55298,0,1,f +15283,55299,0,1,f +15283,55300,0,1,f +15283,6014b,15,4,f +15283,6015,0,4,f +15283,60598,4,2,f +15283,60599,15,1,f +15283,60608,14,4,f +15283,60623,14,1,f +15283,6141,46,4,f +15283,6141,36,4,f +15283,6141,46,1,t +15283,6141,33,4,f +15283,6141,34,4,f +15283,6141,33,1,t +15283,6141,34,1,t +15283,6141,36,1,t +15283,6157,0,2,f +15283,6215,0,2,f +15283,6215,2,2,f +15283,970c00,2,1,f +15283,973pr1271c01,15,1,f +15287,2352,1,1,f +15287,2357,15,2,f +15287,2412b,334,2,f +15287,2412b,4,3,f +15287,2412b,0,3,f +15287,2412b,15,6,f +15287,2420,15,2,f +15287,2422,14,4,f +15287,2431p12,15,1,f +15287,2432,1,1,f +15287,2432,0,3,f +15287,2432,14,1,f +15287,2432,15,4,f +15287,2432,4,1,f +15287,2444,1,2,f +15287,2445,0,2,f +15287,2450,7,2,f +15287,2453a,15,8,f +15287,2454a,15,4,f +15287,2456,15,2,f +15287,2456,7,2,f +15287,2458,7,4,f +15287,2458,4,6,f +15287,2458,1,2,f +15287,2465,0,2,f +15287,2540,15,1,f +15287,2555,0,1,f +15287,2569,0,1,f +15287,2582,15,4,f +15287,2625,0,1,f +15287,2654,7,1,f +15287,2877,0,7,f +15287,2921,14,2,f +15287,298c02,14,2,f +15287,3001,0,2,f +15287,3002,7,4,f +15287,3003,4,1,f +15287,3003,7,4,f +15287,3003,0,1,f +15287,3003,15,7,f +15287,30033,0,1,f +15287,3004,7,3,f +15287,3004,0,1,f +15287,3004,1,1,f +15287,3004,15,1,f +15287,3004pb010,15,1,f +15287,3005,36,2,f +15287,3005,33,2,f +15287,3005,15,2,f +15287,3005,34,2,f +15287,3005,4,2,f +15287,3006,15,1,f +15287,30062,0,1,f +15287,30062,14,1,f +15287,3007,0,2,f +15287,30082,8,1,f +15287,3009,7,1,f +15287,3009,0,2,f +15287,3010,15,9,f +15287,3010,1,2,f +15287,30145,15,4,f +15287,30151a,4,1,f +15287,30152pat0001,0,1,f +15287,30180,1,1,f +15287,30181,15,5,f +15287,30194,8,1,f +15287,3020,7,1,f +15287,3020,15,3,f +15287,3020,14,1,f +15287,30208,334,1,f +15287,30209,15,1,f +15287,3021,14,2,f +15287,30211,8,2,f +15287,3022,1,1,f +15287,3022,7,1,f +15287,3022,0,1,f +15287,3022,4,2,f +15287,3022,14,3,f +15287,3022,15,2,f +15287,30228,8,1,f +15287,3023,14,6,f +15287,3023,42,3,f +15287,3023,7,4,f +15287,3023,15,2,f +15287,3023,1,2,f +15287,30237a,14,7,f +15287,3024,36,1,f +15287,3024,34,1,f +15287,30249,15,4,f +15287,3028,0,1,f +15287,30283,0,4,f +15287,30285,15,6,f +15287,30286,8,1,f +15287,3029,0,1,f +15287,30292,33,2,f +15287,30296,7,2,f +15287,3030,7,1,f +15287,3034,15,1,f +15287,30342,8,1,f +15287,30343c01,15,1,f +15287,30351c01,15,1,f +15287,30354,36,1,f +15287,3037,15,5,f +15287,3037,1,1,f +15287,30385,62,1,f +15287,3039,0,1,f +15287,3039,15,8,f +15287,3039,1,2,f +15287,3039p15,15,1,f +15287,3039p23,15,1,f +15287,3039pc2,15,1,f +15287,3039pc5,7,1,f +15287,3039pr0005,15,1,f +15287,3040b,33,2,f +15287,3040p01,0,1,f +15287,3040p04,7,1,f +15287,3062b,34,1,f +15287,3062b,36,1,f +15287,3062b,4,1,f +15287,3068b,15,1,f +15287,3068bpx27,15,1,f +15287,3069bp13,15,2,f +15287,3069bpc2,14,1,f +15287,3070bpr0007,7,2,f +15287,3297,15,2,f +15287,3460,0,1,f +15287,3460,15,2,f +15287,3585,0,1,f +15287,3586,0,1,f +15287,3613,14,1,f +15287,3614b,7,1,f +15287,3623,15,4,f +15287,3623,7,2,f +15287,3626bpr0126,14,1,f +15287,3626bpx24,14,2,f +15287,3626bpx42,14,1,f +15287,3639,0,1,f +15287,3640,0,1,f +15287,3666,0,1,f +15287,3666,15,3,f +15287,3679,7,2,f +15287,3701,1,2,f +15287,3710,15,3,f +15287,3710,7,3,f +15287,3794a,7,1,f +15287,3795,14,1,f +15287,3795,15,2,f +15287,3795,7,1,f +15287,3811,19,1,f +15287,3829c01,7,1,f +15287,3830,15,2,f +15287,3831,15,2,f +15287,3832,0,4,f +15287,3833,15,2,f +15287,3839b,7,1,f +15287,3870,7,3,f +15287,3894,15,1,f +15287,3937,15,2,f +15287,3937,0,4,f +15287,3938,0,2,f +15287,3941,4,1,f +15287,3957a,15,1,f +15287,3959,7,1,f +15287,3962b,0,1,f +15287,3963,7,1,f +15287,4032a,0,1,f +15287,4070,1,8,f +15287,4081b,7,2,f +15287,4081b,14,2,f +15287,4085c,1,4,f +15287,4215b,15,1,f +15287,4217,1,2,f +15287,4275b,0,2,f +15287,4276b,7,2,f +15287,4286,0,2,f +15287,4360,0,2,f +15287,4445,7,2,f +15287,4476b,1,4,f +15287,4485,15,1,f +15287,4589,0,2,f +15287,4589,36,1,f +15287,4599a,0,3,f +15287,4599a,4,1,f +15287,4623,7,2,f +15287,4623,14,3,f +15287,4625,7,4,f +15287,4735,0,1,f +15287,4740,0,2,f +15287,4740,42,2,f +15287,4854,14,1,f +15287,4856a,0,1,f +15287,4859,15,2,f +15287,4859,7,1,f +15287,4865a,0,2,f +15287,4872,33,2,f +15287,5102c13,0,1,f +15287,55295,8,1,f +15287,55296,8,1,f +15287,55297,8,1,f +15287,55298,8,1,f +15287,55299,8,1,f +15287,55300,8,1,f +15287,6014a,15,4,f +15287,6015,0,4,f +15287,6019,15,1,f +15287,6019,0,4,f +15287,6048a,0,3,f +15287,6069,15,2,f +15287,6087,14,2,f +15287,6111,0,1,f +15287,6112,0,1,f +15287,6134,4,4,f +15287,6140,0,1,f +15287,6141,34,2,f +15287,6141,42,9,f +15287,6141,36,6,f +15287,6152,33,1,f +15287,6152,15,1,f +15287,6157,7,2,f +15287,6217,0,2,f +15287,6230,0,6,f +15287,6232,1,2,f +15287,6239,15,1,f +15287,6456stk01,9999,1,t +15287,6456stk02,9999,1,t +15287,6583,14,2,f +15287,6583,7,2,f +15287,6636,0,4,f +15287,71965,0,2,f +15287,71966,15,1,f +15287,73983,1,2,f +15287,75535,14,2,f +15287,769,334,1,f +15287,78c14,14,2,f +15287,970c00,4,2,f +15287,970c00,0,1,f +15287,970x002,15,1,f +15287,973pb0026c01,15,1,f +15287,973pb0059c01,4,2,f +15287,973px24c01,15,1,f +15289,2412b,320,2,f +15289,2555,72,5,f +15289,298c02,71,6,f +15289,298c02,71,1,t +15289,3001,72,1,f +15289,3020,71,1,f +15289,3021,71,1,f +15289,3023,71,3,f +15289,3023,72,5,f +15289,3024,47,4,f +15289,3031,72,2,f +15289,3032,71,1,f +15289,30375,72,4,f +15289,3040b,71,4,f +15289,3068b,72,1,f +15289,3069b,320,1,f +15289,3070b,71,1,t +15289,3070b,71,1,f +15289,3298,71,1,f +15289,3665,71,4,f +15289,3710,71,1,f +15289,3794b,320,5,f +15289,3795,71,3,f +15289,3937,0,3,f +15289,3938,71,3,f +15289,4070,71,4,f +15289,4150,71,2,f +15289,4287,71,1,f +15289,43710,71,2,f +15289,43711,71,2,f +15289,43898,72,2,f +15289,44728,72,2,f +15289,4589,0,1,f +15289,4623,0,1,f +15289,4697b,71,1,t +15289,4697b,71,2,f +15289,4740,72,4,f +15289,47905,72,1,f +15289,48336,71,1,f +15289,54200,71,3,f +15289,54200,71,1,t +15289,60470a,71,3,f +15289,63965,0,1,f +15290,2456,4,1,f +15290,3001,14,1,f +15290,3001,4,1,f +15290,3001pr1,14,1,f +15290,3002,4,2,f +15290,3003,0,1,f +15290,3003,14,2,f +15290,3003,15,3,f +15290,3003,1,2,f +15290,3003,4,4,f +15290,3003pe2,14,2,f +15290,3006,1,2,f +15290,4130,14,1,f +15290,4131,4,1,f +15290,4132,14,1,f +15290,4133,4,1,f +15291,22119,4,1,f +15291,2902,0,1,f +15291,2903,15,1,f +15291,3001,1,1,f +15291,3001,15,4,f +15291,3003,1,4,f +15291,3004,1,100,f +15291,3004,2,100,f +15291,3004,14,100,f +15291,3004,4,100,f +15291,30145,1,4,f +15291,3031,14,4,f +15291,3032,14,2,f +15291,32001,14,2,f +15291,32064b,0,4,f +15291,32073,71,2,f +15291,32348,1,1,f +15291,32449,0,1,f +15291,32556,71,2,f +15291,3647,71,3,f +15291,3648b,14,4,f +15291,3649,4,4,f +15291,3701,1,4,f +15291,3706,0,2,f +15291,3707,0,1,f +15291,3713,71,3,f +15291,3749,19,3,f +15291,3811,15,4,f +15291,3895,1,4,f +15291,3956,1,1,f +15291,4282,14,2,f +15291,49785,9999,1,f +15291,53447,9999,1,f +15291,6309,15,4,f +15291,6309p09,15,1,f +15291,6309p0b,15,4,f +15291,6309p0c,15,4,f +15291,6309p0e,15,2,f +15291,6309p0g,15,2,f +15291,6309p0h,15,1,f +15291,6309p0t,15,1,f +15291,6309p0v,15,4,f +15291,6309p0w,15,4,f +15291,6309p0y,15,2,f +15291,6309p10,15,2,f +15291,6309p11,15,1,f +15291,6309pb001,15,3,f +15291,6309pb002,15,3,f +15291,6309pb003,15,3,f +15291,6309pb004,15,3,f +15291,6309pb005,15,3,f +15291,6309pb006,15,3,f +15291,6309pb007,15,3,f +15291,6309pb008,15,3,f +15291,6309pb009,15,3,f +15291,6309pb010,15,3,f +15291,6309pb011,15,3,f +15291,6309pb012,15,3,f +15291,6309pb013,15,4,f +15291,6309pb015,15,4,f +15291,6309pb018,15,2,f +15291,71082,47,1,f +15291,75535,4,1,f +15291,bin03,1,1,f +15291,cre001,9999,1,f +15291,cre003,9999,1,f +15292,2345,0,2,f +15292,2401,0,2,f +15292,2412b,14,1,f +15292,2419,0,3,f +15292,2420,14,2,f +15292,2432,0,1,f +15292,2446,0,2,f +15292,2447,0,2,f +15292,298c01,0,4,f +15292,298c02,0,4,f +15292,3001,0,2,f +15292,3003,0,4,f +15292,3004,0,7,f +15292,3004p05,0,2,f +15292,3008,0,7,f +15292,3009,0,1,f +15292,3010,0,1,f +15292,3020,0,5,f +15292,3020,14,3,f +15292,3021,0,4,f +15292,3022,0,7,f +15292,3022,14,1,f +15292,3023,14,2,f +15292,3023,0,15,f +15292,3024,0,4,f +15292,3024,36,6,f +15292,3033,0,1,f +15292,3034,0,3,f +15292,3037,0,1,f +15292,3039p10,0,2,f +15292,3039p33,0,1,f +15292,3040b,0,6,f +15292,3040p01,0,4,f +15292,3062b,0,4,f +15292,3062b,36,2,f +15292,3068b,0,6,f +15292,3068bp00,0,2,f +15292,3068bp07,14,2,f +15292,3069b,0,1,f +15292,3297,0,1,f +15292,3298,0,3,f +15292,3460,0,2,f +15292,3460,14,4,f +15292,3623,0,4,f +15292,3626apr0001,14,2,f +15292,3641,0,4,f +15292,3660,0,6,f +15292,3665,0,2,f +15292,3666,14,1,f +15292,3701,0,5,f +15292,3710,0,6,f +15292,3747b,0,1,f +15292,3787,0,2,f +15292,3794a,14,2,f +15292,3794a,0,2,f +15292,3795,0,1,f +15292,3830,0,2,f +15292,3831,0,2,f +15292,3832,0,6,f +15292,3838,0,2,f +15292,3839b,0,3,f +15292,3895,0,1,f +15292,3935,0,1,f +15292,3936,0,1,f +15292,3937,0,4,f +15292,3938,0,4,f +15292,3940b,0,3,f +15292,3943b,14,2,f +15292,3957a,36,2,f +15292,3959,0,2,f +15292,3963,0,4,f +15292,4032a,14,4,f +15292,4070,14,2,f +15292,4070,0,6,f +15292,4081b,0,2,f +15292,4229,0,4,f +15292,4282,0,1,f +15292,4286,0,4,f +15292,4315,0,1,f +15292,4349,0,4,f +15292,4474,46,1,f +15292,4590,0,7,f +15292,4595,0,2,f +15292,4596,0,1,f +15292,4596,14,2,f +15292,4598,0,2,f +15292,4600,0,2,f +15292,4623,0,6,f +15292,4624,14,4,f +15292,4730,0,10,f +15292,4735,0,2,f +15292,4740,0,2,f +15292,4858p01,0,1,f +15292,4865a,0,4,f +15292,4871,0,3,f +15292,6141,14,4,f +15292,6141,36,8,f +15292,73590c01b,14,2,f +15292,73983,0,4,f +15292,970c00,0,2,f +15292,973p52c01,0,2,f +15294,2458,19,1,f +15294,3001,19,4,f +15294,3002,19,7,f +15294,3004,19,13,f +15294,3005,19,4,f +15294,3023,19,8,f +15294,3024,19,2,f +15294,3024,19,1,t +15294,3030,0,2,f +15294,3032,71,2,f +15294,3032,19,1,f +15294,30374,19,1,f +15294,3069b,19,8,f +15294,3070b,19,2,f +15294,3070b,19,1,t +15294,3794b,19,9,f +15294,4162,0,3,f +15294,4162pb020,0,1,f +15294,59900,19,1,f +15294,6541,19,2,f +15294,6636,19,2,f +15294,6636,71,4,f +15295,2446,8,1,f +15295,2447,42,1,f +15295,2447,42,1,t +15295,3069bp50,15,1,f +15295,3298p10,15,1,f +15295,3626bp64,47,1,f +15295,3795,0,1,f +15295,3935,15,1,f +15295,3936,15,1,f +15295,3959,0,1,f +15295,4349,15,2,f +15295,4596,0,3,f +15295,4598,0,1,f +15295,4740,42,1,f +15295,6141,33,1,t +15295,6141,15,1,t +15295,6141,42,1,t +15295,6141,42,1,f +15295,6141,15,1,f +15295,6141,33,3,f +15295,970c00pb019,15,1,f +15295,973p63c02,15,1,f +15296,6551c01,7,1,f +15298,2340,15,2,f +15298,2412b,72,1,t +15298,2412b,72,6,f +15298,2431,4,6,f +15298,2436,4,2,f +15298,2444,71,1,f +15298,2445,15,1,f +15298,2446,1,2,f +15298,2447,40,1,t +15298,2447,40,2,f +15298,2465,15,2,f +15298,2479,0,1,f +15298,2540,0,2,f +15298,2584,0,1,f +15298,2585,0,1,f +15298,2654,4,1,f +15298,3004,15,1,f +15298,3005,15,2,f +15298,3010,4,2,f +15298,30162,72,1,t +15298,30162,72,1,f +15298,30194,72,1,f +15298,3020,0,4,f +15298,3021,14,1,f +15298,3021,4,7,f +15298,3022,15,5,f +15298,3023,4,5,f +15298,3034,71,2,f +15298,3035,4,1,f +15298,30350b,72,1,f +15298,3036,71,1,f +15298,30372,40,1,f +15298,30383,71,8,f +15298,3039,15,2,f +15298,3039,14,1,f +15298,30395,72,1,f +15298,30407,72,8,f +15298,3040b,15,2,f +15298,30540,0,1,f +15298,30592,71,1,f +15298,3068b,15,1,f +15298,3069bpr0101,71,1,f +15298,32028,71,1,f +15298,3460,72,4,f +15298,3623,0,1,f +15298,3626bpr0282,14,1,f +15298,3626bpr0314,14,1,f +15298,3626bpr0389,14,1,f +15298,3660,15,5,f +15298,3666,4,5,f +15298,3673,71,1,t +15298,3673,71,1,f +15298,3710,72,11,f +15298,3795,15,1,f +15298,3833,4,1,f +15298,3959,72,2,f +15298,3962b,0,1,f +15298,4070,15,2,f +15298,4070,4,2,f +15298,4132,4,2,f +15298,41747,4,2,f +15298,41748,4,2,f +15298,41764,15,1,f +15298,41765,15,1,f +15298,41769,4,3,f +15298,41770,4,3,f +15298,41855,4,3,f +15298,43337,15,2,f +15298,4345b,15,2,f +15298,4346,15,2,f +15298,43898,0,1,f +15298,44301a,72,2,f +15298,4449,71,1,f +15298,44567a,71,1,f +15298,4488,71,2,f +15298,4589,71,2,f +15298,4617b,0,1,f +15298,4714,15,1,f +15298,4715,15,2,f +15298,47407,4,1,f +15298,48336,15,12,f +15298,4854,4,1,f +15298,4856a,15,1,f +15298,4870,71,1,f +15298,48729a,72,1,t +15298,48729a,72,1,f +15298,48933,15,1,f +15298,50943,71,2,f +15298,50944pr0001,0,4,f +15298,50950,15,2,f +15298,50950,4,4,f +15298,51011,0,4,f +15298,52501,15,2,f +15298,54200,33,8,f +15298,54200,4,2,f +15298,56823c50,0,1,f +15298,6019,72,6,f +15298,6070,40,3,f +15298,6091,4,8,f +15298,6141,71,5,f +15298,6141,34,1,f +15298,6141,36,1,t +15298,6141,34,1,t +15298,6141,36,1,f +15298,6141,46,2,f +15298,6141,71,2,t +15298,6141,46,1,t +15298,6153b,15,1,f +15298,6239,15,1,f +15298,970c00,25,1,f +15298,970c00,15,2,f +15298,973pr1160c01,1,1,f +15298,973pr1250c01,15,2,f +15299,12825,0,4,f +15299,2412b,4,2,f +15299,2412b,0,1,f +15299,2654,0,3,f +15299,2780,0,2,f +15299,3005,0,2,f +15299,3020,4,3,f +15299,3021,72,1,f +15299,3023,4,4,f +15299,3023,0,9,f +15299,3024,0,4,f +15299,3034,72,2,f +15299,30350b,0,1,f +15299,30374,41,1,f +15299,30374,71,1,f +15299,3039,320,1,f +15299,30553,0,1,f +15299,3069b,71,4,f +15299,32013,4,2,f +15299,32059,0,2,f +15299,32064b,0,4,f +15299,3666,4,2,f +15299,3701,0,2,f +15299,3710,0,3,f +15299,3942c,71,2,f +15299,4032a,4,2,f +15299,4032a,0,5,f +15299,43713,0,1,f +15299,43719,4,1,f +15299,43857,71,2,f +15299,4519,71,2,f +15299,47753,0,1,f +15299,48336,4,3,f +15299,4871,0,1,f +15299,51739,0,2,f +15299,59443,0,3,f +15299,60481,0,2,f +15299,6141,41,2,f +15299,63868,0,4,f +15299,63965,71,2,f +15299,64567,15,1,f +15299,6541,4,2,f +15299,6558,1,2,f +15299,72454,0,1,f +15299,85984,0,5,f +15299,87580,0,1,f +15299,92081,0,1,f +15299,92582,0,1,f +15299,92946,0,4,f +15299,98100,71,2,f +15299,98100pr0004,71,1,f +15299,99207,0,4,f +15299,99781,0,2,f +15300,3004,0,1,f +15300,3004,1,4,f +15300,3004p0b,14,1,f +15300,3021,15,1,f +15300,3022,1,1,f +15300,3022,15,1,f +15300,3039,1,1,f +15301,10907,272,2,f +15301,10907,320,1,f +15301,10908pr0005,272,2,f +15301,10908pr0006,320,1,f +15301,11476,71,1,f +15301,11477,0,2,f +15301,14395,71,2,f +15301,14716,71,2,f +15301,14769,72,2,f +15301,15207,0,2,f +15301,15391,0,2,f +15301,15392,72,6,f +15301,15403,0,4,f +15301,15470,179,1,f +15301,15573,72,4,f +15301,15573,14,8,f +15301,15573,15,2,f +15301,15712,71,8,f +15301,15712,72,2,f +15301,18649,0,4,f +15301,18654,72,1,f +15301,18663,47,1,f +15301,19888,4,1,f +15301,2343,47,2,f +15301,2412b,179,2,f +15301,2412b,0,2,f +15301,2412b,36,2,f +15301,2419,72,1,f +15301,2420,0,1,f +15301,2431,72,7,f +15301,2431,71,1,f +15301,2432,0,2,f +15301,2454a,71,2,f +15301,2540,0,2,f +15301,2569,71,1,f +15301,2653,0,6,f +15301,2780,0,2,f +15301,3002,0,1,f +15301,3003,71,2,f +15301,3004,71,5,f +15301,3004,0,1,f +15301,3005,71,16,f +15301,3005,72,12,f +15301,3009,0,1,f +15301,3009,72,2,f +15301,3010,71,6,f +15301,30136,72,2,f +15301,30153,33,1,f +15301,3020,72,2,f +15301,3020,71,4,f +15301,3021,0,1,f +15301,3021,71,1,f +15301,3021,28,2,f +15301,3021,72,2,f +15301,3023,28,1,f +15301,3023,19,2,f +15301,3023,46,3,f +15301,3023,0,2,f +15301,3023,71,14,f +15301,3024,36,2,f +15301,3024,72,4,f +15301,3024,0,1,f +15301,3032,72,4,f +15301,3033,72,2,f +15301,3034,71,1,f +15301,30350b,41,2,f +15301,30357,72,2,f +15301,3038,71,2,f +15301,3039,41,6,f +15301,30414,19,2,f +15301,30562,41,6,f +15301,3062b,36,6,f +15301,3062b,47,1,f +15301,3062b,33,3,f +15301,3062b,4,1,f +15301,3062b,41,3,f +15301,3069b,41,7,f +15301,3069b,28,2,f +15301,3069b,73,1,f +15301,3176,71,4,f +15301,32028,4,4,f +15301,32028,72,2,f +15301,32062,0,2,f +15301,32064a,71,2,f +15301,3245b,15,1,f +15301,3297,71,1,f +15301,3298,71,1,f +15301,3460,0,1,f +15301,3622,72,2,f +15301,3622,0,2,f +15301,3626cpr0961,78,1,f +15301,3626cpr1660,78,1,f +15301,3626cpr1667,57,2,f +15301,3626cpr1674,47,1,f +15301,3665,0,1,f +15301,3665,71,2,f +15301,3666,28,1,f +15301,3666,71,2,f +15301,3710,71,1,f +15301,3795,71,1,f +15301,3795,28,1,f +15301,3830,71,2,f +15301,3831,71,2,f +15301,3832,72,1,f +15301,3839b,72,1,f +15301,3895,71,2,f +15301,3937,0,1,f +15301,4032a,71,2,f +15301,4274,1,2,f +15301,4286,71,2,f +15301,43093,1,2,f +15301,4460b,72,6,f +15301,4460b,71,2,f +15301,44676,41,4,f +15301,4536,15,2,f +15301,4599b,4,1,f +15301,4599b,71,1,f +15301,46212,41,8,f +15301,48092,71,8,f +15301,4865b,41,3,f +15301,48729b,0,2,f +15301,50950,72,4,f +15301,54200,71,2,f +15301,54200,72,2,f +15301,57894,72,4,f +15301,57895,41,11,f +15301,6003,72,10,f +15301,60474,71,1,f +15301,60478,0,4,f +15301,60596,71,7,f +15301,60897,71,1,f +15301,6111,72,3,f +15301,6112,71,7,f +15301,61184,71,2,f +15301,61252,72,2,f +15301,6134,0,1,f +15301,61409,0,1,f +15301,61409,4,4,f +15301,6141,36,8,f +15301,6141,0,6,f +15301,6141,41,20,f +15301,6141,33,3,f +15301,6141,15,1,f +15301,61485,71,2,f +15301,62810,0,1,f +15301,63864,71,1,f +15301,63868,4,2,f +15301,64567,71,2,f +15301,6541,72,2,f +15301,6558,1,1,f +15301,6564,71,1,f +15301,6565,71,1,f +15301,6632,72,4,f +15301,6636,14,4,f +15301,6636,28,1,f +15301,6636,0,4,f +15301,6636,72,2,f +15301,72475,41,1,f +15301,73983,71,3,f +15301,75904,71,1,f +15301,75c08,71,2,f +15301,85984,4,4,f +15301,85984,72,5,f +15301,85984,0,1,f +15301,87079,15,1,f +15301,87079,72,4,f +15301,87081,0,1,f +15301,87552,41,1,f +15301,87620,71,2,f +15301,87926,71,1,f +15301,87989,212,1,f +15301,88283,226,1,f +15301,92099,72,1,f +15301,92280,0,1,f +15301,92280,71,4,f +15301,92410,15,1,f +15301,92950,71,1,f +15301,93061,15,1,f +15301,93140,15,1,f +15301,93252,297,1,f +15301,95199,72,2,f +15301,96874,25,1,t +15301,970c00,272,1,f +15301,970c00pr0843,320,1,f +15301,970c00pr0850,15,2,f +15301,970c00pr0855,148,1,f +15301,973pr2994c01,272,1,f +15301,973pr2995c01,320,1,f +15301,973pr3007c01,15,2,f +15301,973pr3015c01,148,1,f +15301,98313,0,2,f +15301,99780,72,1,f +15301,99781,71,1,f +15302,11090,19,8,f +15302,11211,19,4,f +15302,11477,179,3,f +15302,14418,71,1,f +15302,14769pr1003,15,2,f +15302,15068,0,1,f +15302,15209,15,1,f +15302,2780,0,1,f +15302,2780,0,1,t +15302,3004,4,1,f +15302,3020,0,3,f +15302,3020,28,1,f +15302,3023,28,1,t +15302,3023,28,4,f +15302,3700,19,3,f +15302,4081b,19,1,f +15302,44728,19,2,f +15302,48336,19,4,f +15302,4871,19,1,f +15302,53451,0,1,t +15302,53451,179,1,t +15302,53451,0,6,f +15302,53451,179,6,f +15302,54200,28,1,t +15302,54200,28,6,f +15302,54200,40,3,f +15302,54200,40,1,t +15302,60478,0,2,f +15302,61252,0,2,f +15302,6628,0,1,t +15302,6628,0,1,f +15302,87580,28,1,f +15302,87747,179,1,t +15302,87747,179,2,f +15303,11211,19,4,f +15303,11477,28,16,f +15303,11477,19,12,f +15303,15068,19,20,f +15303,2357,19,8,f +15303,2412b,19,45,f +15303,2436,71,12,f +15303,3004,19,18,f +15303,3004,71,1,f +15303,3005,19,5,f +15303,3005,71,5,f +15303,3009,19,4,f +15303,3023,28,10,f +15303,3023,19,21,f +15303,3023,40,9,f +15303,3024,71,2,f +15303,3024,19,1,t +15303,3024,19,3,f +15303,3024,28,26,f +15303,3024,28,1,t +15303,3024,71,1,t +15303,3035,71,10,f +15303,3036,71,2,f +15303,3068b,72,4,f +15303,3069b,19,20,f +15303,3069b,28,27,f +15303,3069b,40,27,f +15303,3070b,71,1,f +15303,3070b,71,1,t +15303,3070b,28,1,t +15303,3070b,40,1,t +15303,3070b,19,21,f +15303,3070b,28,12,f +15303,3070b,19,1,t +15303,3070b,40,18,f +15303,3460,71,3,f +15303,3622,19,6,f +15303,3623,71,4,f +15303,3623,19,10,f +15303,3666,19,3,f +15303,3710,71,9,f +15303,3710,28,18,f +15303,3710,19,4,f +15303,3830,71,1,f +15303,3831,71,1,f +15303,3832,0,4,f +15303,4070,71,2,f +15303,4162,0,3,f +15303,4162pr0037,0,1,f +15303,54200,19,1,t +15303,54200,19,9,f +15303,60481,71,4,f +15303,6141,19,1,t +15303,6141,19,2,f +15303,63864,72,2,f +15303,6636,0,2,f +15303,73983,71,2,f +15303,87079,72,8,f +15303,87087,71,7,f +15303,87580,71,2,f +15303,96874,25,1,t +15305,2432,0,1,f +15305,2456,1,2,f +15305,3001,6,2,f +15305,3001,0,2,f +15305,3001,14,2,f +15305,3001,4,2,f +15305,3001,1,4,f +15305,3001p0a,14,1,f +15305,3002,14,4,f +15305,3002,1,4,f +15305,3002,4,4,f +15305,3002,0,2,f +15305,3003,0,4,f +15305,3003,4,4,f +15305,3003,14,4,f +15305,3003,6,4,f +15305,3003,1,4,f +15305,3004,6,6,f +15305,3004,1,6,f +15305,3004,14,6,f +15305,3004,0,2,f +15305,3004,4,6,f +15305,3004p0a,14,1,f +15305,3005pe1,4,2,f +15305,3005pe1,14,2,f +15305,3009,1,2,f +15305,3010,1,4,f +15305,3010,6,4,f +15305,3010,4,2,f +15305,3010,14,4,f +15305,3020,14,2,f +15305,3020,4,2,f +15305,3020,1,2,f +15305,3021,4,2,f +15305,30285,15,4,f +15305,3034,1,2,f +15305,30341,4,1,f +15305,3039,14,4,f +15305,3039,1,4,f +15305,3039,4,4,f +15305,3039,6,4,f +15305,30391,0,4,f +15305,3298p11,1,2,f +15305,33303,15,4,f +15305,3660,14,2,f +15305,3660,6,4,f +15305,3660,4,4,f +15305,3660,1,4,f +15305,3747b,14,2,f +15305,3795,14,2,f +15305,3857,2,2,f +15305,4132,4,1,f +15305,4133,15,1,f +15305,4286,14,2,f +15305,4727,2,2,f +15305,4728,4,1,f +15305,4728,14,1,f +15305,600,15,1,f +15305,6064,2,1,f +15305,6235,4,1,f +15305,6249,4,2,f +15305,6255,2,1,f +15305,cre001,9999,1,f +15305,cre003,9999,1,f +15307,2444,72,1,f +15307,2540,72,2,f +15307,298c02,4,1,t +15307,298c02,4,2,f +15307,3001,27,1,f +15307,3003,27,2,f +15307,3008,0,4,f +15307,3020,27,9,f +15307,3022,72,2,f +15307,3023,27,4,f +15307,3035,0,1,f +15307,30374,0,1,f +15307,30374,52,1,f +15307,30602,85,4,f +15307,3062b,71,4,f +15307,3069b,72,2,f +15307,32474,4,2,f +15307,33085,14,1,f +15307,3676,72,2,f +15307,3700,72,2,f +15307,3710,4,1,f +15307,3747b,72,3,f +15307,3795,72,5,f +15307,4032a,71,6,f +15307,40378,27,1,f +15307,40379,27,1,f +15307,4081b,27,2,f +15307,4150,27,3,f +15307,41747,27,2,f +15307,41748,27,2,f +15307,44567a,72,2,f +15307,44728,27,6,f +15307,44728,71,14,f +15307,4589,52,1,f +15307,47455,72,2,f +15307,47753,27,1,f +15307,48171,72,2,f +15307,48172,0,1,f +15307,48729b,0,2,f +15307,48729b,0,1,t +15307,49668,27,2,f +15307,50947,72,4,f +15307,52501,72,2,f +15307,53989,0,2,f +15307,57909a,72,5,f +15307,6019,297,1,f +15307,60470a,0,5,f +15307,60471,0,2,f +15307,60474,72,2,f +15307,60478,0,16,f +15307,6091,72,4,f +15307,6091,27,2,f +15307,61184,71,1,f +15307,61406pat0007,2,1,f +15307,61409,288,4,f +15307,61409,72,10,f +15307,61409,27,6,f +15307,6141,85,5,f +15307,6141,85,1,t +15307,61485,0,1,f +15307,61678,27,6,f +15307,62361,27,4,f +15307,63965,297,1,f +15307,73983,0,6,f +15307,85984,85,5,f +15307,87081,0,1,f +15307,87552,27,4,f +15307,87618,0,2,f +15307,87747,15,2,f +15307,88930,27,1,f +15307,90611,27,2,f +15307,92013,0,5,f +15307,92280,378,2,f +15307,92946,27,4,f +15307,92947,71,2,f +15307,93273,72,6,f +15307,93274,27,2,f +15307,93606,71,2,f +15307,9455stk01,9999,1,t +15307,98138,71,9,f +15307,98138,71,1,t +15307,98347,297,1,f +15308,x124,0,1,f +15309,2357,1,1,f +15309,2357,14,1,f +15309,2357,15,1,f +15309,2357,4,1,f +15309,2357,2,4,f +15309,2420,14,1,f +15309,2420,15,1,f +15309,2420,1,1,f +15309,2420,4,1,f +15309,2431,27,24,f +15309,2555,0,2,f +15309,3004,27,36,f +15309,3008,2,4,f +15309,3010,27,12,f +15309,3022,71,2,f +15309,3023,71,16,f +15309,30374,71,1,f +15309,3048c,71,1,f +15309,3062b,0,1,f +15309,3068b,2,1,f +15309,3068b,71,1,f +15309,3068b,0,1,f +15309,3068bpr0143,15,1,f +15309,3068bpr0144,15,1,f +15309,3068bpr0145,15,1,f +15309,3068bpr0148,15,1,f +15309,3069b,27,4,f +15309,3069b,71,16,f +15309,3070b,27,1,t +15309,3070b,27,4,f +15309,3622,27,12,f +15309,3794a,72,1,f +15309,3811,2,1,f +15309,4006,0,2,f +15309,4733,0,2,f +15309,48729a,0,1,t +15309,48729b,0,2,f +15309,53451,4,2,f +15309,53451,4,1,t +15309,54200,0,1,f +15309,54200,0,1,t +15309,59900,71,4,f +15309,6111,2,8,f +15309,6141,47,32,f +15309,6141,47,1,t +15309,64776pat0001,0,1,f +15309,85861,15,1,f +15309,85861,15,1,t +15309,85863pr0008,1,3,f +15309,85863pr0009,14,3,f +15309,85863pr0010,4,3,f +15309,85863pr0011,15,3,f +15309,template01,9999,1,t +15311,11153,0,2,f +15311,15445,72,1,f +15311,2432,15,1,f +15311,2446pr0012,0,1,f +15311,2447,40,1,f +15311,2447,40,1,t +15311,2780,0,1,t +15311,2780,0,1,f +15311,298c02,0,2,f +15311,298c02,0,1,t +15311,3023,72,2,f +15311,3034,15,1,f +15311,30602,0,1,f +15311,3176,0,1,f +15311,32059,0,1,f +15311,3626cpr1338,179,1,f +15311,3700,72,1,f +15311,3937,15,2,f +15311,4081b,15,4,f +15311,41769,15,1,f +15311,41770,15,1,f +15311,42610,71,1,f +15311,59900,36,2,f +15311,59900,40,2,f +15311,6134,0,2,f +15311,61409,0,2,f +15311,6141,33,1,f +15311,6141,33,1,t +15311,6141,36,1,t +15311,6141,36,1,f +15311,85984,15,2,f +15311,970c63pr0609,272,1,f +15311,973pr2554c01,272,1,f +15312,251,0,1,f +15312,3004,0,5,f +15312,3004,1,4,f +15312,3004,15,3,f +15312,3020,1,3,f +15312,3020,0,2,f +15312,3021,0,1,f +15312,3021,1,2,f +15312,3022,0,1,f +15312,3022,1,2,f +15312,3023,0,3,f +15312,3023,1,5,f +15312,3023,15,3,f +15312,3024,1,2,f +15312,3031,0,1,f +15312,3032,1,1,f +15312,3040b,0,2,f +15312,3062b,1,4,f +15312,3623,1,2,f +15312,3626apr0001,14,4,f +15312,3659,0,1,f +15312,3665,0,2,f +15312,3666,1,2,f +15312,3679,7,1,f +15312,3710,1,1,f +15312,3794a,1,1,f +15312,3844,8,1,f +15312,3846p4h,7,1,f +15312,3847a,8,1,f +15312,3848,6,1,f +15312,3849,6,1,f +15312,3896,0,1,f +15312,3937,1,1,f +15312,3938,1,1,f +15312,3957a,1,1,f +15312,4085b,1,3,f +15312,4275a,1,2,f +15312,4276a,1,2,f +15312,4444,0,2,f +15312,4488,0,4,f +15312,4489a,6,4,f +15312,4491a,0,1,f +15312,4493c01pb02,0,2,f +15312,4495b,4,2,f +15312,4495b,14,1,f +15312,4497,6,2,f +15312,4498,6,1,f +15312,4499,6,1,f +15312,4503,8,1,f +15312,4504,1,2,f +15312,4505,0,1,f +15312,4507,1,2,f +15312,4524,1,2,f +15312,4732,1,1,f +15312,75998pr0007,15,3,f +15312,87692,4,1,f +15312,87693,4,1,t +15312,87694,4,1,t +15312,970c00,4,1,f +15312,970x026,4,2,f +15312,970x026,1,1,f +15312,973p40c03,4,1,f +15312,973p42c01,4,1,f +15312,973p46c02,7,1,f +15312,973px138c01,4,1,f +15313,996ac01,4,4,f +15313,996ac01,1,4,f +15313,x466,15,2,f +15313,x869b,15,1,f +15313,x870a,0,1,f +15313,x871a,47,1,f +15314,3711a,0,70,f +15315,132a,0,4,f +15315,3003,4,4,f +15315,3004,4,12,f +15315,3004p50,4,1,f +15315,3005,4,2,f +15315,3005,1,2,f +15315,3009,4,2,f +15315,3009,47,1,f +15315,3010,47,1,f +15315,3020,4,7,f +15315,3022,47,2,f +15315,3022,4,5,f +15315,3022,0,2,f +15315,3028,4,1,f +15315,3037,4,4,f +15315,3039,4,2,f +15315,3045,4,2,f +15315,3062a,1,1,f +15315,3149c01,4,1,f +15315,3176,4,1,f +15315,3188,4,2,f +15315,3189,4,2,f +15315,3190,4,1,f +15315,3191,4,1,f +15315,7039,4,4,f +15315,7049b,15,1,f +15315,709,4,1,f +15315,711,4,1,f +15315,799c800,15,1,f +15315,801,4,1,f +15315,802,4,1,f +15315,806,4,1,f +15315,850,14,1,f +15315,851b,14,1,f +15317,3069bpf2,15,1,f +15317,3069bpf3,14,1,f +15317,3069bpf4,15,1,f +15317,3070bpb043,14,1,f +15317,3070bpb044,15,1,f +15317,3070bpb044,14,1,f +15317,3070bpf0,15,2,f +15317,3070bpf3,14,1,f +15317,4150pb031,14,1,f +15317,4150pb032,15,1,f +15317,4150pf0,14,1,f +15317,scl003,4,1,f +15317,scl004,4,1,f +15317,scl005,4,1,f +15320,2412b,4,1,f +15320,2420,7,2,f +15320,2444,0,2,f +15320,2654pb01,0,2,f +15320,2711,4,4,f +15320,2730,0,2,f +15320,2743,4,2,f +15320,2780,0,12,f +15320,2815,0,2,f +15320,2825,4,14,f +15320,2850a,7,2,f +15320,2851,8,2,f +15320,2852,7,2,f +15320,2853,7,2,f +15320,2903,15,2,f +15320,2904,4,1,f +15320,2905,4,7,f +15320,2905,0,2,f +15320,2905,7,1,f +15320,2909c03,0,2,f +15320,3020,0,2,f +15320,3021,4,1,f +15320,3021,0,1,f +15320,3022,4,1,f +15320,3022,0,1,f +15320,3023,7,2,f +15320,3023,0,4,f +15320,3024,0,2,f +15320,3031,0,1,f +15320,3068b,0,1,f +15320,3068b,4,1,f +15320,3068b,15,1,f +15320,3069b,4,1,f +15320,3070b,36,1,t +15320,3070b,36,2,f +15320,3460,15,2,f +15320,3623,4,2,f +15320,3647,7,2,f +15320,3648a,7,1,f +15320,3650c,7,1,f +15320,3651,7,2,f +15320,3666,15,4,f +15320,3700,7,4,f +15320,3700,4,1,f +15320,3701,7,1,f +15320,3702,4,2,f +15320,3703,4,2,f +15320,3704,0,8,f +15320,3705,0,8,f +15320,3706,0,8,f +15320,3707,0,2,f +15320,3709,7,1,f +15320,3709,4,1,f +15320,3710,0,1,f +15320,3710,7,1,f +15320,3711a,0,1,t +15320,3711a,0,30,f +15320,3713,7,1,t +15320,3713,7,9,f +15320,3738,4,1,f +15320,3749,7,11,f +15320,3894,4,2,f +15320,3937,4,1,f +15320,3938,4,1,f +15320,4019,7,1,f +15320,4185,7,3,f +15320,4263,4,8,f +15320,4265b,7,32,f +15320,4265b,7,1,t +15320,4273b,7,6,f +15320,4274,7,12,f +15320,4274,7,1,t +15320,4275b,0,2,f +15320,4276b,0,2,f +15320,4519,0,7,f +15320,4855,4,1,f +15320,4865a,0,1,f +15320,6141,46,1,t +15320,6141,46,4,f +15320,6536,7,7,f +15320,6538a,7,5,f +15320,6541,0,2,f +15320,6541,4,2,f +15320,6553,7,4,f +15320,6558,0,2,f +15320,6575,7,6,f +15320,6587,8,4,f +15320,6589,7,2,f +15320,6596,0,2,f +15320,73129,7,2,f +15320,75c04,8,1,f +15320,75c04,8,1,t +15321,1850pr0001,15,1,f +15321,747p01c01,15,1,f +15321,747pb03c01,15,1,f +15321,747pb06c01,15,1,f +15321,bb134pb01c01,15,1,f +15321,bb139pb02c01,15,1,f +15321,bb140pb01c01,15,1,f +15321,bb140pb06c01,15,1,f +15326,122c02,0,3,f +15326,2342,4,1,f +15326,2348a,47,2,f +15326,2349a,15,2,f +15326,298c02,15,2,f +15326,3003,15,1,f +15326,3020,4,1,f +15326,3021,15,2,f +15326,3022,15,4,f +15326,3022,0,1,f +15326,3023,0,3,f +15326,3023,4,2,f +15326,3023,1,4,f +15326,3023,15,2,f +15326,3024,15,2,f +15326,3024,1,4,f +15326,3024,46,2,f +15326,3062b,15,1,f +15326,3068b,15,1,f +15326,3069b,15,1,f +15326,3069b,1,4,f +15326,3070b,36,2,f +15326,3623,1,2,f +15326,3623,15,1,f +15326,3626apr0001,14,1,f +15326,3641,0,2,f +15326,3666,15,2,f +15326,3666,1,2,f +15326,3710,15,1,f +15326,3710,1,4,f +15326,3730,0,1,f +15326,3731,15,1,f +15326,3787,4,1,f +15326,3788,1,2,f +15326,3794a,15,1,f +15326,3794a,4,4,f +15326,3795,4,1,f +15326,3821,1,1,f +15326,3822,1,1,f +15326,3823,47,1,f +15326,3829c01,1,2,f +15326,3838,14,1,f +15326,3842b,4,1,f +15326,3937,15,1,f +15326,3937,1,1,f +15326,3938,0,1,f +15326,3938,1,1,f +15326,4070,15,2,f +15326,4070,1,2,f +15326,4081a,4,2,f +15326,4081a,7,1,f +15326,4081a,1,2,f +15326,4084,0,4,f +15326,4212b,15,1,f +15326,4276b,4,2,f +15326,4315,15,2,f +15326,4485,15,1,f +15326,4599a,4,1,f +15326,4715,15,1,f +15326,4854,15,1,f +15326,4855,15,1,f +15326,4859,1,1,f +15326,4859,15,2,f +15326,4862,47,4,f +15326,4863,1,2,f +15326,4864a,47,1,f +15326,4865a,1,1,f +15326,4866,41,1,f +15326,4871,15,1,f +15326,6141,46,1,f +15326,6141,0,2,f +15326,6141,36,2,f +15326,6141,47,2,f +15326,6141,46,1,t +15326,970c00,4,1,f +15326,973c02,4,1,f +15328,2412b,15,1,t +15328,2412b,15,1,f +15328,2540,15,1,f +15328,3020,15,1,f +15328,3039,33,1,f +15328,3641,0,4,f +15328,3679,7,1,f +15328,3680,0,1,f +15328,4349,8,1,t +15328,4349,8,1,f +15328,4600,0,2,f +15328,4624,14,4,f +15328,4740,42,1,t +15328,4740,42,1,f +15329,11089,0,2,f +15329,11164pat02,41,1,f +15329,11270,42,1,f +15329,11288,1,1,f +15329,2654,4,1,f +15329,2780,0,1,t +15329,2780,0,5,f +15329,32002,19,2,f +15329,32002,19,1,t +15329,32015,0,6,f +15329,32039,0,4,f +15329,32123b,14,1,t +15329,32123b,14,4,f +15329,32138,0,1,f +15329,32184,71,2,f +15329,32271,0,2,f +15329,32316,1,2,f +15329,32523,0,5,f +15329,32526,0,2,f +15329,32556,19,2,f +15329,4032a,1,1,f +15329,40379,14,4,f +15329,41677,1,2,f +15329,4274,1,4,f +15329,4274,1,1,t +15329,43093,1,6,f +15329,4519,71,5,f +15329,50923,72,2,f +15329,53451,14,5,f +15329,53451,14,1,t +15329,53562,0,4,f +15329,55615,71,1,f +15329,6553,0,3,f +15329,6558,1,3,f +15329,6587,28,4,f +15329,74261,72,4,f +15329,85543,15,1,f +15329,87082,0,1,f +15329,87083,72,1,f +15329,90611,0,5,f +15329,90617,72,6,f +15329,90622,0,3,f +15329,90623,0,1,f +15329,90639,1,4,f +15329,90641,42,4,f +15329,90641,1,5,f +15329,90652,0,1,f +15329,90661,0,1,f +15329,92218,1,2,f +15329,92234,0,1,f +15329,93571,0,6,f +15329,98135,14,4,f +15329,98570pat01,15,1,f +15329,98577,72,3,f +15329,98588pat0002,148,8,f +15329,98590,0,1,f +15329,99773,0,1,f +15331,10247,71,2,f +15331,11211,19,2,f +15331,11267,308,2,f +15331,11477,308,2,f +15331,11641,148,1,f +15331,14395,71,1,f +15331,14417,72,2,f +15331,14716,71,5,f +15331,14769,4,1,f +15331,14769,70,1,f +15331,14769pr1051,297,1,f +15331,15068,70,8,f +15331,15207,72,3,f +15331,15210,15,1,f +15331,15395,15,1,f +15331,15470,29,3,f +15331,15571,297,2,f +15331,15573,72,8,f +15331,15573,28,4,f +15331,15573,73,2,f +15331,15706,72,4,f +15331,16577,71,2,f +15331,20312,308,1,f +15331,20313,308,1,f +15331,2343,297,1,f +15331,2357,72,5,f +15331,2357,71,14,f +15331,2420,71,16,f +15331,2431,72,1,f +15331,2431,30,4,f +15331,2432,70,2,f +15331,2445,72,2,f +15331,2445,70,1,f +15331,2449,71,1,f +15331,2449,72,2,f +15331,2449,4,4,f +15331,2453b,71,2,f +15331,2456,71,2,f +15331,2460,72,2,f +15331,2462,70,2,f +15331,24946,321,1,f +15331,24946,15,5,f +15331,24947,15,2,f +15331,24947,85,2,f +15331,24947,14,2,f +15331,2508,0,1,f +15331,25516,297,1,f +15331,26104,15,1,f +15331,26371pr07,27,1,f +15331,26371pr08,27,1,f +15331,26371pr09,27,1,f +15331,26393pr05,4,1,f +15331,26464pr01,308,1,f +15331,2654,0,5,f +15331,2780,0,4,f +15331,2817,0,2,f +15331,3001,84,2,f +15331,3001,71,1,f +15331,3001,72,2,f +15331,3002,71,6,f +15331,3003,4,2,f +15331,3003,84,1,f +15331,3003,71,6,f +15331,3004,0,1,f +15331,3004,84,2,f +15331,3004,70,4,f +15331,3004,15,1,f +15331,3004,71,42,f +15331,3005,71,10,f +15331,3008,71,1,f +15331,3009,71,9,f +15331,3010,72,1,f +15331,3010,71,8,f +15331,30136,72,10,f +15331,30150,84,1,f +15331,30151b,47,1,f +15331,30153,34,6,f +15331,30157,72,1,f +15331,3020,72,9,f +15331,3020,70,3,f +15331,3020,28,3,f +15331,3021,70,4,f +15331,3021,72,2,f +15331,3022,70,4,f +15331,3023,71,23,f +15331,3023,288,1,f +15331,3023,70,6,f +15331,3024,72,4,f +15331,30249,70,2,f +15331,30293,72,3,f +15331,30294,72,3,f +15331,3030,72,1,f +15331,3031,71,3,f +15331,3032,72,2,f +15331,3033,72,3,f +15331,3034,70,3,f +15331,3035,2,1,f +15331,3035,70,1,f +15331,3035,19,1,f +15331,30350b,84,4,f +15331,3036,72,4,f +15331,30367c,14,2,f +15331,30367c,15,2,f +15331,30367c,85,2,f +15331,3038,71,4,f +15331,30390a,72,1,f +15331,3040b,71,4,f +15331,3040b,72,9,f +15331,3045,72,3,f +15331,30565,28,2,f +15331,3062b,71,31,f +15331,3062b,297,1,f +15331,3062b,320,2,f +15331,3068b,71,11,f +15331,3068bpr0296,84,2,f +15331,3069b,72,16,f +15331,3069b,297,24,f +15331,3069b,308,3,f +15331,3070b,72,3,f +15331,3070b,70,2,f +15331,3176,288,2,f +15331,32000,70,3,f +15331,32059,72,2,f +15331,32062,4,1,f +15331,32064a,0,1,f +15331,32293,4,2,f +15331,32530,72,3,f +15331,3460,72,6,f +15331,3622,71,8,f +15331,3622,72,1,f +15331,3623,71,4,f +15331,3623,0,3,f +15331,3623,72,2,f +15331,3633,297,1,f +15331,3659,71,2,f +15331,3660,71,6,f +15331,3665,70,4,f +15331,3665,71,19,f +15331,3666,71,8,f +15331,3673,71,3,f +15331,3700,4,2,f +15331,3700,72,12,f +15331,3710,72,5,f +15331,3710,71,13,f +15331,3710,70,2,f +15331,3795,28,1,f +15331,3795,72,2,f +15331,3829c01,71,1,f +15331,3832,2,1,f +15331,3832,70,1,f +15331,3832,72,1,f +15331,3898,15,1,f +15331,3940b,0,2,f +15331,4032a,70,1,f +15331,40378,297,6,f +15331,4070,70,4,f +15331,4081b,71,1,f +15331,4162,70,2,f +15331,4162,15,1,f +15331,43093,1,2,f +15331,4345b,71,4,f +15331,43888,297,4,f +15331,4424,70,1,f +15331,44568,71,1,f +15331,4460b,71,2,f +15331,44728,70,2,f +15331,4528,179,1,f +15331,45590,0,1,f +15331,46212,47,2,f +15331,48092,71,2,f +15331,48336,297,2,f +15331,48336,0,6,f +15331,4865b,28,4,f +15331,50747,0,1,f +15331,54200,297,10,f +15331,59443,71,1,f +15331,59900,4,3,f +15331,59900,297,2,f +15331,59900,0,4,f +15331,6003,72,2,f +15331,6019,0,4,f +15331,60208,70,1,f +15331,60470a,71,2,f +15331,60474,72,2,f +15331,60475b,72,4,f +15331,60475b,71,2,f +15331,60476,0,2,f +15331,60598,71,1,f +15331,60614,72,2,f +15331,60808,71,7,f +15331,60897,72,6,f +15331,6111,71,1,f +15331,6126b,182,2,f +15331,61409,15,1,f +15331,6141,71,10,f +15331,6141,19,3,f +15331,6141,0,1,f +15331,6141,297,2,f +15331,6179,72,1,f +15331,6183,70,1,f +15331,62113,0,1,f +15331,6231,72,1,f +15331,63864,15,1,f +15331,63864,72,9,f +15331,63965,0,7,f +15331,6541,15,1,f +15331,6541,70,2,f +15331,6541,72,3,f +15331,6558,1,2,f +15331,6628,0,2,f +15331,6636,72,1,f +15331,85861,297,3,f +15331,85941,47,1,f +15331,85941,71,1,f +15331,85975,15,1,f +15331,85984,70,2,f +15331,87079,71,2,f +15331,87079,30,1,f +15331,87083,72,1,f +15331,87087,19,8,f +15331,87087,72,2,f +15331,87552,71,3,f +15331,87580,72,3,f +15331,87580,73,1,f +15331,87585,70,2,f +15331,90195,71,7,f +15331,92410,71,2,f +15331,92593,28,2,f +15331,92946,72,4,f +15331,92947,297,1,f +15331,92950,71,1,f +15331,93273,70,1,f +15331,96874,25,1,t +15331,98138pr0035,179,2,f +15331,98283,28,15,f +15331,98284,0,1,f +15331,99207,71,21,f +15332,2348a,47,1,f +15332,2349a,0,1,f +15332,2493b,15,1,f +15332,2494,47,1,f +15332,298c02,7,2,f +15332,3001,0,7,f +15332,3002,0,1,f +15332,3003,0,4,f +15332,3004,15,1,f +15332,3004,0,21,f +15332,3004,4,11,f +15332,3004p06,15,1,f +15332,3005,4,4,f +15332,3005,15,2,f +15332,3005,0,6,f +15332,3006,0,3,f +15332,3007,0,2,f +15332,3008,0,4,f +15332,3008,4,4,f +15332,3009,4,2,f +15332,3009,0,6,f +15332,3010,4,2,f +15332,3010,0,1,f +15332,3020,15,2,f +15332,3020,0,2,f +15332,3022,0,3,f +15332,3023,4,2,f +15332,3023,0,20,f +15332,3024,15,1,f +15332,3024,0,5,f +15332,3027,7,3,f +15332,3028,7,2,f +15332,3029,7,2,f +15332,3030,0,2,f +15332,3030,7,2,f +15332,3033,0,3,f +15332,3034,0,2,f +15332,3034,7,4,f +15332,3039p23,15,1,f +15332,3039p32,15,2,f +15332,3068b,0,1,f +15332,3068bp08,7,2,f +15332,3069b,15,3,f +15332,3069b,4,11,f +15332,3069b,0,3,f +15332,3069bp06,7,2,f +15332,3228b,7,4,f +15332,3242,7,2,f +15332,3460,7,2,f +15332,3622,0,6,f +15332,3623,0,7,f +15332,3624,4,1,f +15332,3626apr0001,14,2,f +15332,3633,4,14,f +15332,3641,0,4,f +15332,3660,0,4,f +15332,3665,0,4,f +15332,3679,7,1,f +15332,3680,0,1,f +15332,3710,0,9,f +15332,3788,15,2,f +15332,3795,7,1,f +15332,3821,15,1,f +15332,3822,15,1,f +15332,3823,47,2,f +15332,3829c01,15,1,f +15332,3832,7,1,f +15332,3855,47,1,f +15332,3857,7,1,f +15332,3901,6,1,f +15332,3937,4,2,f +15332,3938,4,2,f +15332,3956,0,1,f +15332,3958,0,2,f +15332,4023,0,2,f +15332,4033,15,1,f +15332,4070,15,4,f +15332,4070,4,4,f +15332,4079,14,1,f +15332,4079,4,1,f +15332,4162,4,2,f +15332,4166,8,5,f +15332,4175,0,3,f +15332,4178,0,1,f +15332,4180c01,0,2,f +15332,4212b,15,1,f +15332,4275a,0,4,f +15332,4276a,0,4,f +15332,4287,0,4,f +15332,4315,0,1,f +15332,4476b,0,4,f +15332,4477,15,1,f +15332,4477,0,4,f +15332,4477,14,4,f +15332,4510,7,12,f +15332,4589,4,4,f +15332,4589,7,2,f +15332,4600,7,2,f +15332,4624,7,4,f +15332,4865a,4,2,f +15332,4872,47,2,f +15332,6141,36,2,f +15332,6141,46,2,f +15332,7284,15,1,f +15332,73092,0,2,f +15332,73194c01,15,1,f +15332,970c00,1,2,f +15332,973c18,0,1,f +15332,973p18c01,1,1,f +15333,2431,320,2,f +15333,2555,15,1,f +15333,2555,320,2,f +15333,2926,0,1,f +15333,3021,72,2,f +15333,30414,0,1,f +15333,3626bpr0494,15,1,f +15333,3665,0,2,f +15333,3794a,15,1,f +15333,4095,0,1,f +15333,43899,72,2,f +15333,4489b,70,2,f +15333,59228,15,1,f +15333,59229,72,1,f +15333,59230,15,2,f +15333,60115,15,1,f +15333,6266,15,2,f +15334,3626bpa3,14,1,f +15334,3844,0,1,f +15334,3848,0,1,f +15334,48494pb05,151,1,f +15334,970x154,0,1,f +15334,973pb0347c01,0,1,f +15335,10201,71,1,f +15335,2412b,0,1,f +15335,30028,0,4,f +15335,3020,0,2,f +15335,3021,15,1,f +15335,3022,0,1,f +15335,3023,71,3,f +15335,3023,0,2,f +15335,3024,71,2,f +15335,3024,182,1,t +15335,3024,71,1,t +15335,3024,182,2,f +15335,3068b,0,1,f +15335,3069b,14,1,f +15335,3666,0,2,f +15335,3710,0,3,f +15335,3795,15,2,f +15335,4600,71,2,f +15335,50950,0,2,f +15335,54200,47,6,f +15335,54200,47,1,t +15335,61409,0,2,f +15335,6141,71,2,f +15335,6141,71,1,t +15335,74967,15,4,f +15335,98138,36,2,f +15335,98138,36,1,t +15335,99780,72,1,f +15335,99781,71,1,f +15336,2357,0,1,f +15336,2401,4,1,f +15336,2409,33,1,f +15336,2412b,0,2,f +15336,2412b,4,5,f +15336,2418b,33,1,f +15336,2420,0,1,f +15336,2431,0,10,f +15336,2431,4,2,f +15336,2446,47,1,f +15336,2446,4,1,f +15336,2446p50,4,1,f +15336,2447,42,2,f +15336,2449,0,2,f +15336,2452,0,1,f +15336,2452,4,1,f +15336,2453a,0,2,f +15336,2454a,0,2,f +15336,2456,0,1,f +15336,2540,4,1,f +15336,2540,0,1,f +15336,2552p02,0,1,f +15336,2555,0,1,f +15336,2569,33,3,f +15336,2681,0,1,f +15336,298c02,4,6,f +15336,3003,0,5,f +15336,3004,0,13,f +15336,3005,0,1,f +15336,3008,0,2,f +15336,3009,0,3,f +15336,3009,4,2,f +15336,3020,4,1,f +15336,3020,0,4,f +15336,3021,0,5,f +15336,3021,4,1,f +15336,3022,0,6,f +15336,3022,4,3,f +15336,3023,0,10,f +15336,3023,4,3,f +15336,3024,0,2,f +15336,3029,0,2,f +15336,3031,4,1,f +15336,3034,4,1,f +15336,3035,0,1,f +15336,3039,0,2,f +15336,3068b,7,1,f +15336,3068bp51,0,1,f +15336,3069b,4,4,f +15336,3069b,0,5,f +15336,3069bp017,0,2,f +15336,3069bp21,0,2,f +15336,3069bp28,0,5,f +15336,3070b,0,2,f +15336,3176,0,2,f +15336,3460,0,1,f +15336,3475b,0,2,f +15336,3623,0,1,f +15336,3623,4,1,f +15336,3626bp63,0,1,f +15336,3626bp66,14,1,f +15336,3626bp67,14,1,f +15336,3641,0,6,f +15336,3660,0,1,f +15336,3666,0,4,f +15336,3684,0,2,f +15336,3700,4,2,f +15336,3707,0,2,f +15336,3710,0,4,f +15336,3710,4,2,f +15336,3747b,0,1,f +15336,3794a,4,4,f +15336,3795,0,2,f +15336,3830,0,1,f +15336,3831,0,1,f +15336,3832,0,2,f +15336,3838,0,2,f +15336,3839b,0,2,f +15336,3935,0,2,f +15336,3936,0,2,f +15336,3937,0,1,f +15336,3940b,0,2,f +15336,3941,0,1,f +15336,3941,4,1,f +15336,3959,0,1,f +15336,4032a,4,5,f +15336,4032a,0,1,f +15336,4081b,4,2,f +15336,4085c,0,4,f +15336,4162,0,3,f +15336,4215b,33,1,f +15336,4276b,0,2,f +15336,4282,0,1,f +15336,4285b,0,2,f +15336,4345b,0,1,f +15336,4346px15,0,1,f +15336,4477,0,1,f +15336,4477,4,2,f +15336,4589,33,11,f +15336,4591,0,1,f +15336,4591,4,1,f +15336,4595,0,2,f +15336,4596,0,4,f +15336,4597,0,1,f +15336,4598,0,1,f +15336,4600,0,3,f +15336,4623,0,1,f +15336,4624,7,6,f +15336,4730,0,2,f +15336,4740,42,1,f +15336,4740,33,6,f +15336,4746,0,1,f +15336,4859,4,1,f +15336,6019,0,1,f +15336,6082,8,2,f +15336,6083,8,2,f +15336,6140,4,2,f +15336,6141,42,2,f +15336,73590c01a,0,1,f +15336,73983,0,3,f +15336,970c00pb019,4,1,f +15336,970x021,0,2,f +15336,973p63c01,4,1,f +15336,973p66c01,1,2,f +15337,11602pr0001b,15,1,f +15337,11618,322,1,f +15337,2423,2,1,f +15337,2431,29,1,f +15337,2921,70,1,f +15337,3005,84,1,f +15337,3031,2,1,f +15337,3039,26,1,f +15337,3040b,26,1,f +15337,3245c,19,1,f +15337,33291,10,1,f +15337,33291,191,3,f +15337,3622,19,1,f +15337,3665,70,1,f +15337,3710,70,1,f +15337,60481,19,1,f +15337,6141,41,2,f +15337,6256,29,1,f +15337,87580,27,2,f +15337,88292,84,1,f +15338,3626bpr0736,14,1,f +15338,41334,272,1,f +15338,64648,378,1,f +15338,88646,0,1,f +15338,93222,0,1,f +15338,93223,15,1,f +15338,93229,0,1,f +15338,970c00,191,1,f +15338,973pr1707c01,73,1,f +15340,2412b,1,16,f +15340,2431,8,16,f +15340,2432,4,2,f +15340,2450,0,4,f +15340,2465,1,2,f +15340,2524,6,1,f +15340,2780,0,2,f +15340,2876,7,2,f +15340,3001,4,19,f +15340,3002,1,4,f +15340,3003,0,39,f +15340,3004,19,33,f +15340,3006,15,6,f +15340,3008,1,13,f +15340,3009,0,19,f +15340,3010,7,13,f +15340,30116pr03,7,4,f +15340,30194,8,1,f +15340,3020,0,4,f +15340,30201,7,4,f +15340,3021,1,2,f +15340,3022,8,16,f +15340,3023,4,25,f +15340,30237a,1,3,f +15340,3028,8,2,f +15340,30303,7,4,f +15340,3031,0,3,f +15340,3032,8,6,f +15340,3034,8,15,f +15340,3035,7,10,f +15340,30355,7,2,f +15340,30356,7,2,f +15340,30357,19,6,f +15340,30359a,8,2,f +15340,3036,7,1,f +15340,30361aps1,15,1,f +15340,30362,15,2,f +15340,30364,8,4,f +15340,30365,0,4,f +15340,30366ps0,7,2,f +15340,30367apr01,15,1,f +15340,3037,7,8,f +15340,30373,7,1,f +15340,3039,1,3,f +15340,3039pc0,8,2,f +15340,3039pr0008,0,1,f +15340,30409,6,1,f +15340,3040b,1,20,f +15340,30480,142,1,f +15340,30483pr01,6,1,f +15340,30485ps0,40,1,f +15340,3062b,19,21,f +15340,3062b,8,6,f +15340,3063b,7,4,f +15340,3068b,4,4,f +15340,3069bpr0086,7,2,f +15340,3188,7,1,f +15340,3189,7,1,f +15340,32059,8,1,f +15340,3298,7,1,f +15340,3456,7,6,f +15340,3460,19,6,f +15340,3622,8,10,f +15340,3623,6,18,f +15340,3626bpr0342,14,1,f +15340,3626bpr0378,14,1,f +15340,3626bps3,14,1,f +15340,3665,0,2,f +15340,3666,1,2,f +15340,3666,7,8,f +15340,3679,7,3,f +15340,3680,4,3,f +15340,3701,1,3,f +15340,3710,0,8,f +15340,3747a,8,18,f +15340,3794a,0,5,f +15340,3795,19,5,f +15340,3832,7,6,f +15340,3839b,1,1,f +15340,3894,15,2,f +15340,3901,6,1,f +15340,3901,19,1,f +15340,3933,7,9,f +15340,3934,7,7,f +15340,3937,19,4,f +15340,3938,0,3,f +15340,3940b,0,4,f +15340,3957a,7,4,f +15340,3958,8,4,f +15340,4032a,6,1,f +15340,4070,8,10,f +15340,4079,0,1,f +15340,4081b,0,2,f +15340,4085c,1,4,f +15340,4150pr0022,7,6,f +15340,4150ps3,0,1,f +15340,4150ps8,0,4,f +15340,4162,7,4,f +15340,4213,8,9,f +15340,4285b,7,1,f +15340,4315,7,4,f +15340,4345b,7,1,f +15340,4346ps1,7,1,f +15340,4349,0,1,f +15340,4360,0,1,f +15340,4477,0,4,f +15340,4599a,7,2,f +15340,4625,15,5,f +15340,4729,15,1,f +15340,4855,7,2,f +15340,4859,8,1,f +15340,4865a,47,4,f +15340,55295,8,1,f +15340,55296,8,1,f +15340,55297,8,1,f +15340,55298,8,1,f +15340,55299,8,1,f +15340,55300,8,1,f +15340,6069,8,1,f +15340,6070,41,1,f +15340,6106,8,6,f +15340,6134,0,1,f +15340,6141,47,6,f +15340,6141,0,4,f +15340,6141,42,6,f +15340,6141,0,1,t +15340,6141,47,1,t +15340,6232,4,6,f +15340,6564,7,3,f +15340,6565,7,3,f +15340,6636,0,4,f +15340,78c28,9,1,f +15340,970c00,15,1,f +15340,970c00,142,1,f +15340,970c00,6,1,f +15340,970c00pr0033,1,1,f +15340,970c02pb03,19,1,f +15340,973c13,6,1,f +15340,973ps3c01,15,1,f +15340,973ps5c01,0,1,f +15340,973px160c01,142,1,f +15340,973px86c01,15,1,f +15345,2431,72,5,f +15345,2444,71,2,f +15345,2449,71,3,f +15345,2450,70,4,f +15345,2456,72,3,f +15345,2458,71,4,f +15345,2460,72,1,f +15345,2555,320,1,f +15345,2570,72,1,f +15345,2577,71,4,f +15345,2654,19,7,f +15345,2780,0,18,f +15345,3009,70,4,f +15345,3010,70,8,f +15345,30165,71,3,f +15345,3020,70,6,f +15345,3023,19,3,f +15345,3031,72,2,f +15345,3032,72,3,f +15345,30332,70,2,f +15345,3035,72,4,f +15345,30367b,134,4,f +15345,30367b,320,2,f +15345,30367b,71,1,f +15345,30374,72,5,f +15345,30374,70,1,f +15345,30388,320,1,f +15345,3039,71,2,f +15345,3040b,320,2,f +15345,3040b,72,3,f +15345,30414,71,16,f +15345,30483pr01,70,1,f +15345,30553,72,1,f +15345,3062b,33,4,f +15345,32000,72,10,f +15345,32013,72,2,f +15345,32018,72,3,f +15345,32062,0,2,f +15345,32064b,71,2,f +15345,32073,71,2,f +15345,32074c01,0,1,f +15345,32123b,71,6,f +15345,32123b,71,1,t +15345,32125,71,1,f +15345,32316,72,2,f +15345,32333,0,2,f +15345,32474,19,3,f +15345,32529,71,2,f +15345,32532,72,2,f +15345,3460,70,12,f +15345,3626b,0,2,f +15345,3660,70,1,f +15345,3678b,71,1,f +15345,3702,71,4,f +15345,3705,0,2,f +15345,3707,0,1,f +15345,3710,71,10,f +15345,3713,71,2,f +15345,3747b,70,5,f +15345,3794a,72,2,f +15345,3795,72,2,f +15345,3830,19,12,f +15345,3831,19,12,f +15345,3942c,71,1,f +15345,4079,0,2,f +15345,41531,320,1,f +15345,4162,70,8,f +15345,4162,71,1,f +15345,41747,70,1,f +15345,41748,70,1,f +15345,41752,8,1,f +15345,41769,72,4,f +15345,41770,72,4,f +15345,41855,320,3,f +15345,41862,135,4,f +15345,41879a,19,1,f +15345,41880,378,1,f +15345,42022,72,4,f +15345,42023,72,18,f +15345,42060,70,3,f +15345,42061,70,3,f +15345,42608,71,2,f +15345,4274,71,1,t +15345,4274,71,1,f +15345,4282,71,1,f +15345,4286,19,4,f +15345,43093,1,4,f +15345,4349,0,2,f +15345,43898,41,1,f +15345,44567a,72,1,f +15345,4477,70,8,f +15345,4497,0,1,f +15345,4519,71,3,f +15345,4589,320,4,f +15345,4589,71,1,f +15345,4589,135,4,f +15345,47397,70,2,f +15345,47398,70,2,f +15345,48933pb02,71,1,f +15345,48933pb03,71,1,f +15345,50995pr04,15,2,f +15345,51217pb01,70,1,f +15345,6112,70,2,f +15345,6141,135,1,t +15345,6141,41,2,f +15345,6141,41,1,t +15345,6141,135,1,f +15345,6179,70,2,f +15345,6249,71,1,f +15345,6538b,70,5,f +15345,6553,72,3,f +15345,6587,72,2,f +15345,6628,0,2,f +15345,6636,70,2,f +15345,7260ledc01,0,1,f +15345,76110c04,0,1,f +15345,85543,15,2,f +15345,970c00,70,2,f +15345,970x026,15,2,f +15345,973c32,70,2,f +15345,973pb0117gc01,15,2,f +15345,973px158c01,19,1,f +15346,3001,1,1,f +15346,3003,1,1,f +15346,3010,1,1,f +15346,3021,14,2,f +15346,3022,14,1,f +15346,3039,47,1,f +15346,3062b,15,2,f +15346,3665,1,2,f +15346,3747b,1,1,f +15346,4070,4,2,f +15346,6564,4,1,f +15346,6565,4,1,f +15347,10197,72,1,f +15347,2343,297,1,f +15347,2417,2,1,f +15347,2423,2,3,f +15347,2570,148,1,f +15347,2780,0,1,t +15347,2780,0,1,f +15347,30136,70,2,f +15347,30137,70,1,f +15347,30153,46,1,f +15347,30153,36,1,f +15347,30153,34,1,f +15347,3022,2,1,f +15347,30273,80,1,f +15347,30374,0,1,f +15347,3040b,72,1,f +15347,3062b,70,3,f +15347,3068b,1,2,f +15347,32059,2,1,f +15347,32062,4,1,f +15347,33051,10,1,f +15347,33183,10,1,f +15347,33183,10,1,t +15347,3622,72,1,f +15347,3626cpr0645,14,1,f +15347,3626cpr0933,14,1,f +15347,3626cpr1223,14,1,f +15347,3626cpr1224,14,1,f +15347,3700,72,2,f +15347,3710,2,2,f +15347,3794b,19,3,f +15347,3795,70,1,f +15347,3844,0,1,f +15347,3844,80,1,f +15347,3846pr0004b,71,1,f +15347,3846pr0005,71,1,f +15347,4070,70,1,f +15347,4489b,70,2,f +15347,4495b,1,1,f +15347,4495b,297,1,f +15347,4497,179,1,f +15347,4738a,70,1,f +15347,4739a,70,1,f +15347,48336,19,1,f +15347,48493,0,1,f +15347,53454,148,1,f +15347,53705,148,1,t +15347,59232,179,1,f +15347,59443,70,3,f +15347,59900,71,2,f +15347,60475b,72,2,f +15347,60897,1,4,f +15347,61184,71,2,f +15347,6141,297,1,t +15347,6141,297,2,f +15347,6157,0,1,f +15347,63965,70,2,f +15347,76764,179,1,t +15347,76764,179,1,f +15347,92586pr0001,84,1,f +15347,970c00,0,2,f +15347,970x026,72,2,f +15347,973pr0090c01,72,1,f +15347,973pr2392c01,72,1,f +15347,973pr2394c01,0,1,f +15347,973pr2395c01,0,1,f +15347,98138,297,6,f +15347,98138,297,1,t +15348,10247,72,2,f +15348,11211,71,2,f +15348,15392,72,1,t +15348,15392,72,1,f +15348,15397,0,2,f +15348,15403,0,1,f +15348,15712,71,1,f +15348,18677,71,2,f +15348,2412b,72,3,f +15348,2420,14,2,f +15348,2431,71,2,f +15348,2432,14,1,f +15348,2780,0,1,t +15348,2780,0,2,f +15348,3020,72,2,f +15348,3021,0,4,f +15348,3022,72,2,f +15348,3023,14,3,f +15348,30367c,71,2,f +15348,30383,14,2,f +15348,30387,71,2,f +15348,3069b,71,2,f +15348,3069b,40,1,f +15348,3626cpr1594,15,1,f +15348,3710,71,1,f +15348,43722,71,3,f +15348,43723,71,3,f +15348,44302a,72,3,f +15348,44567b,71,1,f +15348,4865b,71,1,f +15348,50950,71,2,f +15348,54200,71,4,f +15348,54200,71,1,t +15348,57900pr0001,15,1,f +15348,6141,72,1,t +15348,6141,36,3,f +15348,6141,36,1,t +15348,6141,72,2,f +15348,92280,71,1,f +15348,92738,0,1,f +15348,970c00pr0794,15,1,f +15348,973pr2892c01,15,1,f +15348,99206,71,1,f +15348,99207,0,5,f +15349,2736,7,4,f +15349,2780,0,30,f +15349,32002,8,4,f +15349,32054,0,10,f +15349,32123b,7,10,f +15349,32138,0,4,f +15349,32556,7,10,f +15349,3673,7,10,f +15349,3713,7,10,f +15349,3749,19,10,f +15349,4274,7,4,f +15349,43093,1,10,f +15349,6558,0,10,f +15349,6628,0,4,f +15350,298c02,7,2,f +15350,3626apr0001,14,1,f +15350,3838,4,1,f +15350,3842b,4,1,f +15350,4588,7,4,f +15350,4588,36,2,f +15350,4590,0,4,f +15350,4598,7,1,f +15350,4735,0,1,f +15350,4740,34,2,f +15350,73590c01a,46,2,f +15350,970c00,4,1,f +15350,973p90c02,4,1,f +15351,14210,15,1,f +15351,2377,72,2,f +15351,2377,71,10,f +15351,2412b,0,8,f +15351,2420,71,4,f +15351,2431,72,2,f +15351,2431pr0028,72,1,f +15351,2436,71,3,f +15351,2445,72,1,f +15351,2465,0,1,f +15351,2486,0,2,f +15351,2540,1,6,f +15351,2540,72,4,f +15351,2780,0,1,t +15351,2780,0,6,f +15351,2877,72,10,f +15351,2926,0,2,f +15351,30000,72,2,f +15351,3001,1,2,f +15351,3003,1,1,f +15351,3004,72,7,f +15351,3008,0,4,f +15351,3009,71,2,f +15351,3010,4,1,f +15351,3020,72,2,f +15351,3021,1,1,f +15351,3022,1,2,f +15351,3022,4,2,f +15351,3023,72,3,f +15351,3023,0,2,f +15351,3023,71,4,f +15351,3023,4,2,f +15351,30238,33,1,f +15351,30238,36,1,f +15351,30240,15,5,f +15351,30258,14,2,f +15351,3027,71,1,f +15351,3031,72,2,f +15351,3034,71,1,f +15351,30357,72,4,f +15351,3037,1,1,f +15351,30374,0,4,f +15351,3039,1,2,f +15351,3040b,1,2,f +15351,30517,0,2,f +15351,30552,72,4,f +15351,30553,71,4,f +15351,30554a,71,8,f +15351,30608,0,1,f +15351,3068bpb0008,15,1,f +15351,3069b,71,2,f +15351,3069bp21,0,1,f +15351,3070b,34,1,t +15351,3070b,36,1,t +15351,3070b,34,1,f +15351,3070b,36,1,f +15351,32083,71,4,f +15351,32271,72,2,f +15351,3228c,71,6,f +15351,32316,0,2,f +15351,32523,0,4,f +15351,3624,320,1,f +15351,3626bpb0200,78,1,f +15351,3626bpb0203,78,1,f +15351,3626bpr0314,78,1,f +15351,3626bpx125,4,1,f +15351,3666,71,2,f +15351,3673,71,1,t +15351,3673,71,4,f +15351,3700,1,2,f +15351,3794a,1,4,f +15351,3795,72,4,f +15351,3795,71,1,f +15351,3900,15,1,f +15351,3958,72,3,f +15351,3962b,72,1,f +15351,3963,71,2,f +15351,40240,70,1,f +15351,4035,72,4,f +15351,4036,40,4,f +15351,4070,72,8,f +15351,4079,4,3,f +15351,4085c,71,8,f +15351,4150pr0022,71,3,f +15351,4162,72,4,f +15351,41752,8,1,f +15351,4282,72,1,f +15351,4589,36,4,f +15351,4862,40,16,f +15351,4863,71,2,f +15351,48723,71,1,f +15351,48724,71,1,f +15351,48729a,72,4,f +15351,48729b,72,2,f +15351,48729b,72,1,t +15351,50254,0,4,f +15351,6019,15,2,f +15351,6141,36,1,t +15351,6141,36,6,f +15351,6141,46,4,f +15351,6141,46,1,t +15351,6141,34,1,t +15351,6141,34,3,f +15351,6628,0,4,f +15351,85543,15,2,f +15351,970c00,272,1,f +15351,970c00,0,1,f +15351,970c00,378,1,f +15351,970c63pb01,272,1,f +15351,973pb0320c02,272,1,f +15351,973pb0321c01,0,1,f +15351,973pb0325c01,4,1,f +15351,973pb0326c01,378,1,f +15353,3001a,0,2,f +15353,3001a,1,7,f +15353,3001a,14,3,f +15353,3001a,4,22,f +15353,3001a,15,25,f +15353,3002a,15,4,f +15353,3002a,14,2,f +15353,3002a,4,2,f +15353,3002a,1,2,f +15353,3003,15,12,f +15353,3003,1,2,f +15353,3003,4,12,f +15353,3003,0,3,f +15353,3003,14,2,f +15353,3004,0,5,f +15353,3004,14,4,f +15353,3004,15,4,f +15353,3004,4,4,f +15353,3004,1,1,f +15353,3005,14,2,f +15353,3007,4,2,f +15353,3009,15,2,f +15353,3010,4,2,f +15353,3010,15,2,f +15353,3081cc01,4,2,f +15353,3579,4,1,f +15353,3581,15,2,f +15353,3582,1,2,f +15353,453cc01,4,2,f +15353,700ed,2,1,f +15353,7930,1,1,f +15357,23306,383,2,f +15357,3022,8,3,f +15357,30368,0,1,f +15357,30374,36,3,f +15357,30374,0,1,f +15357,30381,0,2,f +15357,30566,8,3,f +15357,3626bpr0815,0,1,f +15357,3626bps7,7,1,f +15357,3626bpx34,14,1,f +15357,4142686pb1,9999,1,f +15357,4142686pb2,9999,1,f +15357,4142686pb3,9999,1,f +15357,50231,0,3,f +15357,970c00,0,3,f +15357,973pr1340c01,0,1,f +15357,973ps7c01,0,1,f +15357,973px71c01,0,1,f +15359,2343,34,1,f +15359,2357,0,2,f +15359,2362b,0,2,f +15359,2431,0,1,f +15359,2453a,0,1,f +15359,2454a,0,1,f +15359,2540,272,1,f +15359,2653,0,2,f +15359,3003,379,2,f +15359,3004,379,5,f +15359,3004,0,6,f +15359,3005,8,6,f +15359,3005pe2,7,1,f +15359,3005pe3,7,1,f +15359,3009,0,1,f +15359,30153,36,1,f +15359,30153,52,1,f +15359,30154,0,1,f +15359,30185c01,0,1,f +15359,3020,8,2,f +15359,3020,272,1,f +15359,3020,379,3,f +15359,3021,379,1,f +15359,3022,272,3,f +15359,3022,8,1,f +15359,3022,379,4,f +15359,3023,8,1,f +15359,3023,379,3,f +15359,30238,42,1,f +15359,3024,379,2,f +15359,3031,0,1,f +15359,3035,8,2,f +15359,30357,379,2,f +15359,3037,0,2,f +15359,3039,8,8,f +15359,3039ph1,19,1,f +15359,3040b,8,3,f +15359,3040b,0,4,f +15359,3045,272,3,f +15359,3045,8,1,f +15359,30504,8,1,f +15359,3062b,0,18,f +15359,3062b,379,6,f +15359,3062b,36,1,f +15359,3069b,0,3,f +15359,3069bpx41,15,1,f +15359,3069bpx44,7,1,f +15359,3070b,0,2,f +15359,3070b,0,1,t +15359,32028,0,4,f +15359,3297,0,1,f +15359,3300,0,1,f +15359,3455,0,3,f +15359,3460,272,2,f +15359,3623,379,4,f +15359,3623,7,2,f +15359,3626bph1,14,1,f +15359,3626bpr0190,15,2,f +15359,3626bpx146,14,1,f +15359,3626bpx150,47,1,f +15359,3660,379,8,f +15359,3665,379,2,f +15359,3666,379,2,f +15359,3666,272,1,f +15359,3684,0,2,f +15359,3688,0,1,f +15359,3710,379,3,f +15359,3794a,0,2,f +15359,3795,379,3,f +15359,3830,0,1,f +15359,3831,0,1,f +15359,3937,7,3,f +15359,3938,0,1,f +15359,3958,8,1,f +15359,40232,8,2,f +15359,40233,0,1,f +15359,41539,8,2,f +15359,4215b,0,2,f +15359,44301a,8,2,f +15359,44302a,0,2,f +15359,44567a,8,1,f +15359,4460a,0,2,f +15359,44728,7,1,f +15359,4490,8,2,f +15359,4530,19,1,f +15359,4589,33,1,f +15359,4589,42,2,f +15359,4735,0,2,f +15359,4865a,0,2,f +15359,6126a,57,2,f +15359,6134,4,2,f +15359,6141,36,1,t +15359,6141,36,1,f +15359,6141,34,1,t +15359,6141,34,3,f +15359,6179,8,1,f +15359,6183,0,1,f +15359,970c00,1,1,f +15359,970c00,0,1,f +15359,973pb0266c01,378,1,f +15359,973pb0267c01,0,1,f +15360,11477,1,6,f +15360,11610,0,1,f +15360,14417,72,1,f +15360,14704,71,3,f +15360,14769pr1003,15,2,f +15360,15068,4,1,f +15360,18649,0,1,f +15360,24246,15,1,t +15360,24246,15,6,f +15360,2736,71,2,f +15360,298c02,71,2,f +15360,298c02,71,1,t +15360,3004,0,8,f +15360,3022,0,4,f +15360,3023,14,2,f +15360,3024,14,1,t +15360,3024,1,1,t +15360,3024,14,1,f +15360,3024,1,1,f +15360,32064a,72,2,f +15360,32474,0,1,f +15360,3794b,15,1,f +15360,4032a,70,4,f +15360,44728,14,3,f +15360,4865b,47,2,f +15360,49668,191,1,f +15360,6091,0,4,f +15360,61252,14,2,f +15360,6141,36,1,t +15360,6141,36,1,f +15360,63868,1,2,f +15360,85984,0,3,f +15360,87087,0,2,f +15360,87609,0,1,f +15360,99206,0,2,f +15360,99780,4,1,f +15361,30556,8,1,f +15361,30598,1,1,f +15361,30601pb04,8,1,f +15361,30602pb012,8,1,f +15361,racerbase,8,1,f +15361,rb00168,0,2,f +15362,2412b,72,6,f +15362,2431,15,1,f +15362,2436,15,1,f +15362,30055,72,2,f +15362,3010,15,4,f +15362,30162,72,1,f +15362,3020,72,1,f +15362,3022,14,2,f +15362,3036,15,1,f +15362,3038,15,2,f +15362,3069b,46,2,f +15362,3070b,36,2,f +15362,3190,72,1,f +15362,3191,72,1,f +15362,3245b,15,2,f +15362,3623,15,2,f +15362,3624,15,1,f +15362,3626bpr0410,14,1,f +15362,3626bpr0411,14,1,f +15362,3665,15,4,f +15362,3710,0,3,f +15362,3710,1,3,f +15362,3794a,0,1,f +15362,3795,15,1,f +15362,3829c01,71,1,f +15362,3959,0,1,f +15362,4079,14,1,f +15362,41334,0,1,f +15362,4176,40,1,f +15362,4349,72,1,f +15362,44728,71,2,f +15362,4488,0,4,f +15362,4532,15,2,f +15362,4533,15,2,f +15362,4740,71,1,f +15362,4864b,40,1,f +15362,50745,72,4,f +15362,52031,15,1,f +15362,52037,72,1,f +15362,52501,15,2,f +15362,54200,33,8,f +15362,6014b,71,4,f +15362,6015,0,4,f +15362,6112,15,2,f +15362,6141,4,1,t +15362,6141,46,1,f +15362,6141,4,1,f +15362,6141,46,1,t +15362,6636,15,3,f +15362,970c00,72,1,f +15362,970c00,0,1,f +15362,973pr1188c01,0,1,f +15362,973pr1197c01,15,1,f +15363,10197,72,4,f +15363,10201,0,4,f +15363,11091,320,4,f +15363,11094,0,1,f +15363,11096,297,1,f +15363,11097,297,2,f +15363,11097,41,1,f +15363,11098,297,2,f +15363,11098,41,1,f +15363,11100,71,2,f +15363,11100,25,6,f +15363,11127,182,1,f +15363,11127,41,1,f +15363,11153,320,4,f +15363,11203,72,13,f +15363,11214,72,2,f +15363,11215,71,1,f +15363,11302pat0001,36,5,f +15363,11334,320,6,f +15363,11458,72,4,f +15363,11833,36,6,f +15363,12825,4,2,f +15363,12825,297,6,f +15363,12825,71,2,f +15363,13547,484,2,f +15363,14769,297,4,f +15363,15068,0,4,f +15363,15083pr0003,72,1,f +15363,15084pr0002,19,1,f +15363,15084pr0003,25,1,f +15363,15086,297,1,f +15363,15092,72,3,f +15363,15107,41,1,f +15363,15279,326,2,f +15363,15365pat0001,1,2,f +15363,15571,191,1,f +15363,16656pr0001,320,1,f +15363,16656pr0002,4,1,f +15363,16656pr0003,4,1,f +15363,16659pr0002,15,1,f +15363,16768pat0001,4,1,f +15363,16770,41,8,f +15363,2335,71,6,f +15363,2335,1,2,f +15363,2357,19,4,f +15363,2412b,297,3,f +15363,2412b,72,11,f +15363,2412b,71,1,f +15363,2420,28,4,f +15363,2420,4,2,f +15363,2423,320,4,f +15363,2431,0,10,f +15363,2431,19,4,f +15363,2431,41,8,f +15363,2432,72,1,f +15363,2445,4,1,f +15363,2450,19,10,f +15363,2460,0,2,f +15363,2460,72,1,f +15363,2479,0,2,f +15363,2540,19,8,f +15363,2540,71,6,f +15363,2566,0,2,f +15363,2653,71,4,f +15363,2654,71,2,f +15363,2654,57,2,f +15363,2730,0,10,f +15363,2780,0,48,f +15363,298c02,4,2,f +15363,3001,4,4,f +15363,3002,0,2,f +15363,3003,72,1,f +15363,3004,71,6,f +15363,3004,19,2,f +15363,3005,19,6,f +15363,3007,0,1,f +15363,3008,19,6,f +15363,3010,19,2,f +15363,30157,72,1,f +15363,30165,72,1,f +15363,30176,2,4,f +15363,3020,70,10,f +15363,3020,0,4,f +15363,3020,19,3,f +15363,3021,72,2,f +15363,3021,14,2,f +15363,3021,4,5,f +15363,3022,72,9,f +15363,3022,70,3,f +15363,3023,71,25,f +15363,3023,57,3,f +15363,3023,36,16,f +15363,3030,0,1,f +15363,3031,0,3,f +15363,3031,70,3,f +15363,3032,0,2,f +15363,3034,72,5,f +15363,3035,70,3,f +15363,30367b,297,2,f +15363,30374,297,4,f +15363,30374,41,2,f +15363,30374,70,1,f +15363,3038,72,2,f +15363,30383,72,8,f +15363,3039,14,1,f +15363,3040b,19,14,f +15363,3049d,191,1,f +15363,30526,71,2,f +15363,30552,0,1,f +15363,30565,70,12,f +15363,3062b,71,2,f +15363,3068b,0,6,f +15363,3068b,19,4,f +15363,3069b,19,4,f +15363,3069b,28,2,f +15363,3069b,41,2,f +15363,3176,0,4,f +15363,32000,0,1,f +15363,32001,71,8,f +15363,32001,0,8,f +15363,32001,4,4,f +15363,32009,72,2,f +15363,32016,0,4,f +15363,32018,0,2,f +15363,32028,72,1,f +15363,32054,4,8,f +15363,32054,0,5,f +15363,32059,0,2,f +15363,32062,4,8,f +15363,32063,0,4,f +15363,32064b,72,13,f +15363,32072,0,2,f +15363,32138,71,2,f +15363,32271,72,4,f +15363,32278,4,4,f +15363,32316,72,2,f +15363,32524,71,6,f +15363,32525,4,4,f +15363,32526,71,4,f +15363,32556,19,8,f +15363,33291,191,4,f +15363,3626cpr1419,15,1,f +15363,3626cpr1422,72,1,f +15363,3626cpr1424,25,1,f +15363,3626cpr1428,320,1,f +15363,3626cpr1430,19,1,f +15363,3626cpr1432,4,1,f +15363,3626cpr1433,320,1,f +15363,3660,0,7,f +15363,3665,0,2,f +15363,3666,320,4,f +15363,3666,72,2,f +15363,3666,70,1,f +15363,3673,71,12,f +15363,3678b,71,8,f +15363,3678bpr0044,4,1,f +15363,3700,72,2,f +15363,3701,4,2,f +15363,3702,4,2,f +15363,3702,71,2,f +15363,3705,0,9,f +15363,3710,71,12,f +15363,3710,4,4,f +15363,3713,71,4,f +15363,3749,19,3,f +15363,3794b,320,5,f +15363,3795,28,4,f +15363,3830,71,2,f +15363,3831,71,2,f +15363,3832,4,2,f +15363,3832,70,4,f +15363,3839b,0,1,f +15363,3894,72,2,f +15363,3942c,72,2,f +15363,3958,71,5,f +15363,4032a,14,17,f +15363,41239,0,6,f +15363,4162,70,2,f +15363,4162,71,5,f +15363,41677,4,2,f +15363,41678,72,2,f +15363,41769,70,1,f +15363,41769,320,1,f +15363,41770,320,1,f +15363,41770,70,1,f +15363,41879a,4,1,f +15363,42448,0,2,f +15363,42610,71,8,f +15363,4274,1,18,f +15363,43093,1,10,f +15363,43712,484,1,f +15363,43712,4,4,f +15363,43719,484,1,f +15363,43722,484,2,f +15363,43722,0,1,f +15363,43723,0,1,f +15363,43723,484,2,f +15363,43898,47,2,f +15363,43898,72,2,f +15363,43903,0,2,f +15363,4445,0,2,f +15363,44661,0,2,f +15363,44676,19,8,f +15363,44728,14,7,f +15363,44728,0,2,f +15363,45301,320,1,f +15363,4600,0,1,f +15363,4697b,71,3,f +15363,4733,0,1,f +15363,4740,36,2,f +15363,4740,72,2,f +15363,4740,14,2,f +15363,47456,484,2,f +15363,48092,19,12,f +15363,48336,71,1,f +15363,4868b,320,2,f +15363,4869,71,2,f +15363,48989,71,2,f +15363,50304,28,1,f +15363,50304,4,1,f +15363,50305,4,1,f +15363,50305,28,1,f +15363,50373,4,1,f +15363,50950,308,8,f +15363,50950,4,8,f +15363,51739,4,1,f +15363,52501,72,4,f +15363,53451,179,2,f +15363,53454,41,4,f +15363,54200,71,4,f +15363,54200,19,4,f +15363,54200,36,2,f +15363,54200,4,2,f +15363,54200,308,6,f +15363,54383,72,2,f +15363,54384,72,2,f +15363,55013,72,2,f +15363,55615,71,4,f +15363,55981,71,2,f +15363,56904,71,4,f +15363,57906,191,8,f +15363,59443,4,2,f +15363,59443,72,4,f +15363,59900,36,2,f +15363,59900,182,5,f +15363,60470a,4,2,f +15363,60470a,0,2,f +15363,60471,71,1,f +15363,60475a,71,4,f +15363,60478,0,2,f +15363,60478,72,2,f +15363,60479,0,4,f +15363,60484,0,6,f +15363,60897,71,4,f +15363,61184,71,2,f +15363,6126b,57,2,f +15363,61409,484,6,f +15363,61409,4,8,f +15363,6141,297,10,f +15363,6141,34,1,f +15363,6141,71,12,f +15363,6141,36,3,f +15363,6141,57,8,f +15363,6222,71,4,f +15363,62462,0,2,f +15363,62462,320,1,f +15363,62462,71,1,f +15363,63868,71,2,f +15363,63965,297,2,f +15363,64225,320,1,f +15363,64567,297,2,f +15363,64644,308,3,f +15363,64647,182,16,f +15363,64799,71,3,f +15363,6536,71,2,f +15363,6536,4,8,f +15363,6541,4,4,f +15363,6541,72,2,f +15363,6558,1,16,f +15363,6587,28,4,f +15363,6628,0,4,f +15363,6636,72,4,f +15363,73983,0,8,f +15363,75937,179,2,f +15363,76766,71,1,f +15363,85543,15,2,f +15363,85544,4,2,f +15363,85546,14,2,f +15363,85943,72,2,f +15363,85959pat0003,36,4,f +15363,85984,19,18,f +15363,85984,4,4,f +15363,87083,72,2,f +15363,87580,0,1,f +15363,90258,72,2,f +15363,91988,72,1,f +15363,92217,297,2,f +15363,92220,41,2,f +15363,92220,191,6,f +15363,92338,297,2,f +15363,92690,297,8,f +15363,92692,0,2,f +15363,92947,19,10,f +15363,92947,71,4,f +15363,93273,71,5,f +15363,93273,320,6,f +15363,95753pat0005,25,13,f +15363,96874,25,1,t +15363,970c00pr0662,72,1,f +15363,970c00pr0666,25,1,f +15363,970c00pr0669,320,1,f +15363,970c00pr0671,19,1,f +15363,970d00pr0661,15,1,f +15363,973pr2663c01,15,1,f +15363,973pr2664c01,272,1,f +15363,973pr2673c01,25,1,f +15363,973pr2676c01,4,2,f +15363,973pr2679c01,19,1,f +15363,973pr2685c01,4,1,f +15363,98138,36,8,f +15363,98138,41,10,f +15363,98138,71,2,f +15363,98138,182,9,f +15363,98138pr0023,182,5,f +15363,98141,297,1,f +15363,98283,28,14,f +15363,98313,297,2,f +15363,98564,148,8,f +15363,99009,71,2,f +15363,99010,0,2,f +15363,99207,71,8,f +15364,2376,0,3,f +15364,2412b,0,23,f +15364,2412b,14,21,f +15364,2412b,71,5,f +15364,2412b,25,1,f +15364,2419,4,2,f +15364,2431,4,3,f +15364,2431,72,7,f +15364,2431pr0028,72,2,f +15364,2432,14,15,f +15364,2434,0,2,f +15364,2436,0,2,f +15364,2437,40,1,f +15364,2441,0,2,f +15364,2445,4,1,f +15364,2454b,15,2,f +15364,2454b,14,4,f +15364,2456,14,1,f +15364,2456,2,1,f +15364,2540,2,2,f +15364,2569,71,1,f +15364,2569,71,1,t +15364,2584,0,1,f +15364,2585,71,1,f +15364,2654,4,1,f +15364,2730,0,2,f +15364,2866,14,2,f +15364,2871b,0,4,f +15364,2877,14,22,f +15364,2877,0,4,f +15364,2878,0,10,f +15364,2922,0,1,f +15364,2926,0,2,f +15364,298c02,1,2,f +15364,298c02,1,1,t +15364,30000,71,2,f +15364,3001,71,3,f +15364,3002,14,1,f +15364,30027b,15,8,f +15364,30028,0,8,f +15364,30036,72,2,f +15364,3004,4,3,f +15364,3004,2,4,f +15364,30042,72,1,f +15364,30043,71,2,f +15364,3005,2,8,f +15364,3005,14,4,f +15364,3007,0,1,f +15364,3008,72,4,f +15364,3008,0,2,f +15364,3009,14,8,f +15364,3010,72,1,f +15364,3010,2,4,f +15364,30133,4,1,f +15364,3020,15,1,f +15364,3020,71,4,f +15364,3020,1,12,f +15364,3021,4,4,f +15364,3022,14,13,f +15364,3023,36,2,f +15364,3023,71,21,f +15364,3023,46,3,f +15364,30258,0,2,f +15364,3028,72,3,f +15364,3030,0,1,f +15364,3031,72,2,f +15364,3032,0,2,f +15364,3032,72,7,f +15364,3035,1,1,f +15364,30373,0,1,f +15364,3039,0,4,f +15364,30395,72,1,f +15364,30414,14,8,f +15364,30554b,0,1,f +15364,30592,71,1,f +15364,30663,0,1,f +15364,3069b,1,1,f +15364,3069b,4,1,f +15364,3069b,15,3,f +15364,3069b,182,2,f +15364,3176,14,2,f +15364,32028,0,3,f +15364,32062,4,1,f +15364,32124,1,4,f +15364,3245b,4,2,f +15364,3307,4,2,f +15364,3455,0,4,f +15364,3622,71,4,f +15364,3622,15,2,f +15364,3622,1,2,f +15364,3623,71,4,f +15364,3624,1,1,f +15364,3626bpr0282,14,1,f +15364,3626bpr0314,14,1,f +15364,3626bpr0646,14,1,f +15364,3626cpr0649,14,1,f +15364,3633,72,8,f +15364,3659,4,5,f +15364,3666,72,1,f +15364,3666,15,1,f +15364,3666,4,1,f +15364,3666,2,2,f +15364,3673,71,4,f +15364,3673,71,1,t +15364,3700,72,2,f +15364,3706,0,5,f +15364,3710,71,5,f +15364,3710,2,6,f +15364,3710,1,1,f +15364,3710,15,1,f +15364,3738,71,9,f +15364,3795,72,10,f +15364,3821,1,1,f +15364,3821,4,1,f +15364,3821,15,1,f +15364,3822,15,1,f +15364,3822,4,1,f +15364,3822,1,1,f +15364,3829c01,14,3,f +15364,3832,0,4,f +15364,3833,4,2,f +15364,3839b,72,1,f +15364,3894,72,1,f +15364,3899,4,1,f +15364,3899,14,1,f +15364,3937,14,5,f +15364,3941,14,6,f +15364,3962b,0,1,f +15364,4025,14,5,f +15364,4032a,71,6,f +15364,4079,1,3,f +15364,4083,14,4,f +15364,4150,14,2,f +15364,4150pr0022,71,4,f +15364,4162,72,10,f +15364,4175,14,2,f +15364,4176,40,1,f +15364,4282,72,2,f +15364,43337,0,4,f +15364,44300,0,1,f +15364,44375a,15,2,f +15364,4445,0,4,f +15364,44567a,0,2,f +15364,44728,72,2,f +15364,44728,15,2,f +15364,44728,1,2,f +15364,4488,0,4,f +15364,45406,14,2,f +15364,45677,15,1,f +15364,45677,0,1,f +15364,46103,47,2,f +15364,4623,14,2,f +15364,47457,71,4,f +15364,47507,72,1,f +15364,48336,0,2,f +15364,4865b,15,1,f +15364,4865b,1,3,f +15364,4872,40,3,f +15364,50745,72,2,f +15364,51739,0,2,f +15364,52031,4,1,f +15364,52036,72,2,f +15364,52501,72,2,f +15364,53400,72,16,f +15364,53401,72,8,f +15364,53403,72,1,f +15364,53406,72,1,f +15364,54200,15,1,t +15364,54200,15,2,f +15364,54200,1,1,t +15364,54200,182,1,t +15364,54200,1,2,f +15364,54200,47,2,f +15364,54200,46,1,t +15364,54200,46,6,f +15364,54200,182,2,f +15364,54200,47,1,t +15364,56823c50,0,1,f +15364,57051,383,10,f +15364,57783,41,1,f +15364,57878,0,20,f +15364,57999,0,8,f +15364,58123a,71,1,f +15364,59349,14,4,f +15364,59349,4,8,f +15364,59900,72,2,f +15364,6014b,71,8,f +15364,6020,71,2,f +15364,60212,15,2,f +15364,60212,1,1,f +15364,60212,0,1,f +15364,60219,0,2,f +15364,60470a,71,2,f +15364,60474,14,3,f +15364,60475a,14,8,f +15364,60475a,72,8,f +15364,60479,71,4,f +15364,60481,15,2,f +15364,60481,0,2,f +15364,60581,4,1,f +15364,60594,14,4,f +15364,60614,72,8,f +15364,6063,72,1,f +15364,60700,0,8,f +15364,6091,72,2,f +15364,6091,4,2,f +15364,6111,2,6,f +15364,61252,14,2,f +15364,6134,0,5,f +15364,6141,36,8,f +15364,6141,182,2,f +15364,6141,47,2,t +15364,6141,182,1,t +15364,6141,47,6,f +15364,6141,36,3,t +15364,61485,0,1,f +15364,62462,25,2,f +15364,63965,71,8,f +15364,64022,72,16,f +15364,64227,71,1,f +15364,64228,71,1,f +15364,6583,14,4,f +15364,6587,28,4,f +15364,6636,14,4,f +15364,6636,72,4,f +15364,7939stk01,9999,1,t +15364,86035,4,1,f +15364,87079,71,6,f +15364,87087,0,6,f +15364,87574,0,1,f +15364,87580,72,7,f +15364,87609,4,1,f +15364,87619,72,2,f +15364,87620,14,4,f +15364,87926,15,4,f +15364,88393,4,4,f +15364,91992,0,2,f +15364,91994,0,6,f +15364,92086,2,2,f +15364,92339,72,1,f +15364,92340,0,1,f +15364,970c00,1,4,f +15364,973pr1183c01,25,2,f +15364,973pr1244c01,73,1,f +15364,973pr1580c01,15,1,f +15365,2356,0,1,f +15365,2357,14,2,f +15365,2362a,47,1,f +15365,2412b,0,2,f +15365,2412b,36,4,f +15365,2412b,7,8,f +15365,2420,0,4,f +15365,2420,14,2,f +15365,2431,8,8,f +15365,2431,14,6,f +15365,2436,14,1,f +15365,2444,0,7,f +15365,2445,7,2,f +15365,2445,0,4,f +15365,2445,8,2,f +15365,2449,14,2,f +15365,2456,14,2,f +15365,2456,0,2,f +15365,2540,8,6,f +15365,2540,4,1,f +15365,2555,0,2,f +15365,2653,0,1,f +15365,2654,47,2,f +15365,2736,7,1,f +15365,2780,0,1,t +15365,2780,0,8,f +15365,2819,7,1,f +15365,2825,0,2,f +15365,2877,14,2,f +15365,2904,0,1,f +15365,30000,8,2,f +15365,3001,0,2,f +15365,3002,7,2,f +15365,3003,14,2,f +15365,3004,14,12,f +15365,3005,14,2,f +15365,3009,14,7,f +15365,3010,8,2,f +15365,3010,14,5,f +15365,30136,14,2,f +15365,30165,0,3,f +15365,3020,4,2,f +15365,3020,0,6,f +15365,3020,8,9,f +15365,3021,0,3,f +15365,3021,4,4,f +15365,3021,7,2,f +15365,3022,0,4,f +15365,3022,14,3,f +15365,3022,8,3,f +15365,3023,14,14,f +15365,3023,0,10,f +15365,3023,47,2,f +15365,3024,14,5,f +15365,3027,0,2,f +15365,3028,0,2,f +15365,3030,0,1,f +15365,3030,14,1,f +15365,3034,14,3,f +15365,3034,8,1,f +15365,3035,8,1,f +15365,3035,0,1,f +15365,3035,14,1,f +15365,3036,0,1,f +15365,30367a,14,2,f +15365,30374,8,1,f +15365,30383,14,2,f +15365,30383,8,6,f +15365,3040b,0,2,f +15365,30414,0,2,f +15365,30505,0,4,f +15365,30553,0,2,f +15365,30592,7,2,f +15365,30602,8,2,f +15365,3062b,4,4,f +15365,3068b,0,8,f +15365,3068b,8,4,f +15365,3068b,14,2,f +15365,3069b,8,6,f +15365,3069b,57,2,f +15365,3069b,0,13,f +15365,3069b,14,5,f +15365,3070b,0,1,t +15365,3070b,14,8,f +15365,3070b,14,1,t +15365,3070b,0,6,f +15365,3176,14,2,f +15365,32001,0,2,f +15365,32005b,8,4,f +15365,32013,0,6,f +15365,32018,0,2,f +15365,32039,0,2,f +15365,32054,8,4,f +15365,32062,0,15,f +15365,32064a,14,8,f +15365,32073,7,3,f +15365,32123b,7,11,f +15365,32123b,7,1,t +15365,32140,0,4,f +15365,32192,7,2,f +15365,32449,7,2,f +15365,32449,0,2,f +15365,32523,7,8,f +15365,32526,0,4,f +15365,32530,8,3,f +15365,32531,7,2,f +15365,3298,14,2,f +15365,3298,0,1,f +15365,3460,8,3,f +15365,3622,8,2,f +15365,3623,0,4,f +15365,3623,4,2,f +15365,3623,14,4,f +15365,3647,7,1,f +15365,3660,14,8,f +15365,3660,0,4,f +15365,3660,8,12,f +15365,3666,14,5,f +15365,3666,0,6,f +15365,3684,14,2,f +15365,3700,7,2,f +15365,3701,7,2,f +15365,3705,0,2,f +15365,3706,0,6,f +15365,3708,0,2,f +15365,3710,8,8,f +15365,3710,0,5,f +15365,3713,7,1,t +15365,3713,7,1,f +15365,3749,19,17,f +15365,3794a,14,4,f +15365,3795,14,1,f +15365,3832,0,1,f +15365,3832,14,3,f +15365,3894,0,6,f +15365,3895,8,2,f +15365,3895,0,2,f +15365,3937,7,4,f +15365,4070,0,2,f +15365,4081b,0,4,f +15365,4085c,8,2,f +15365,4162,0,2,f +15365,4162,14,2,f +15365,41669,135,2,f +15365,41677,0,2,f +15365,41749,14,1,f +15365,41750,14,1,f +15365,41752,8,1,t +15365,41764,8,2,f +15365,41765,8,2,f +15365,41767,14,2,f +15365,41768,14,2,f +15365,41769,14,1,f +15365,41770,14,1,f +15365,41893,0,4,f +15365,41896,7,4,f +15365,42022,14,2,f +15365,42023,8,6,f +15365,4215b,47,2,f +15365,4274,1,8,f +15365,4274,1,1,t +15365,4286,14,4,f +15365,43712,14,1,f +15365,43722,8,3,f +15365,43723,8,3,f +15365,44126,8,2,f +15365,44292,7,4,f +15365,44301a,14,2,f +15365,44302a,8,2,f +15365,44302a,14,6,f +15365,44308,0,4,f +15365,44567a,14,4,f +15365,4460a,14,4,f +15365,44728,14,2,f +15365,4477,8,4,f +15365,4477,14,3,f +15365,4510,0,2,f +15365,4519,7,5,f +15365,45677,14,2,f +15365,46413,14,2,f +15365,4864b,0,1,f +15365,4865a,8,2,f +15365,6041,4,1,f +15365,6060,8,8,f +15365,6070,40,2,f +15365,6081,14,3,f +15365,6081,0,2,f +15365,6091,8,2,f +15365,6091,0,8,f +15365,6111,14,3,f +15365,6111,0,1,f +15365,6134,7,4,f +15365,6140,8,2,f +15365,6141,57,6,f +15365,6141,7,14,f +15365,6141,14,1,t +15365,6141,7,1,t +15365,6141,14,8,f +15365,6141,57,1,t +15365,6141,36,1,t +15365,6141,36,2,f +15365,6178,14,1,f +15365,6191,0,6,f +15365,6191,14,8,f +15365,6536,0,2,f +15365,6558,0,18,f +15365,6571,0,4,f +15365,6572,7,8,f +15365,6628,0,4,f +15365,6632,0,2,f +15365,6636,0,4,f +15365,6636,14,7,f +15365,6636,8,6,f +15365,71509,0,1,f +15365,71509,0,3,t +15365,73590c02a,7,2,f +15365,73983,14,4,f +15365,75535,14,2,f +15365,76537,14,4,f +15365,78c02,179,2,f +15368,92743pr0002,19,1,f +15368,970c00,28,1,f +15368,973pr1740c01,308,1,f +15372,2458,15,2,f +15372,3005,462,2,f +15372,30132,8,1,f +15372,30132,8,1,t +15372,30136,6,2,f +15372,30153,33,1,t +15372,30153,33,1,f +15372,30153,46,1,t +15372,30153,46,1,f +15372,30157,6,1,f +15372,30367a,14,1,f +15372,3069b,15,1,f +15372,32000,7,2,f +15372,32083,0,1,f +15372,32529,7,2,f +15372,3626bpr0190,15,1,f +15372,3626bpx127,14,1,f +15372,3666,7,2,f +15372,3731,0,1,f +15372,3795,8,2,f +15372,3878,0,1,f +15372,3957a,0,1,f +15372,4286,15,4,f +15372,4495b,14,1,f +15372,4589,14,1,t +15372,4589,14,1,f +15372,4740,14,2,f +15372,6141,0,2,t +15372,6141,0,1,f +15372,6260,15,1,f +15372,6265,15,2,f +15372,6265,15,1,t +15372,6266,15,1,t +15372,6266,15,2,f +15372,970c00,8,1,f +15372,973px181c01,0,1,f +15374,2145,4,1,f +15374,2356,2,1,f +15374,2456,14,1,f +15374,2456,15,1,f +15374,264,1,2,f +15374,2661,9999,1,f +15374,3001,14,3,f +15374,3001,1,1,f +15374,3003,15,4,f +15374,3003,1,3,f +15374,3003,4,2,f +15374,3003pe0,15,2,f +15374,3007,14,1,f +15374,3010,15,6,f +15374,30145,14,4,f +15374,30147,7,1,f +15374,30155,8,4,f +15374,3032,14,1,f +15374,3032,1,1,f +15374,3035,15,1,f +15374,3035,1,1,f +15374,33006,4,1,f +15374,33009,4,1,f +15374,33013pb01,15,1,f +15374,33013pb02,15,1,t +15374,33254b,9999,1,f +15374,33303,14,1,f +15374,33325,4,1,f +15374,33326pb01,4,1,f +15374,3483,0,4,f +15374,3622,15,2,f +15374,3633,15,2,f +15374,3941,15,3,f +15374,4088,15,1,f +15374,4165cdb01,89,1,f +15374,4335,1,1,f +15374,4433,14,1,f +15374,4434,14,1,f +15374,4461,4,1,f +15374,4523,1,1,f +15374,4727,2,2,f +15374,4728,1,1,f +15374,4728,4,1,f +15374,6182,14,2,f +15374,6182,15,2,f +15374,6187,0,2,f +15374,6203,4,1,f +15374,6212,2,1,f +15374,6249,7,2,f +15374,6252,1,1,f +15374,6253,15,1,f +15374,787c01,14,2,f +15375,11055,0,1,f +15375,11090,0,1,f +15375,11476,71,3,f +15375,11477,272,4,f +15375,14682,297,2,f +15375,15064,158,1,f +15375,15068,4,1,f +15375,15068,378,1,f +15375,15209,158,1,f +15375,15362,297,2,f +15375,15573,70,1,f +15375,15619,272,1,f +15375,15706,0,2,f +15375,15712,0,4,f +15375,15712,297,4,f +15375,18575,0,2,f +15375,18587,71,2,f +15375,18588,0,2,f +15375,18649,0,1,f +15375,19857pat0004,0,1,f +15375,19858pat0002,42,1,f +15375,19861pr0001,42,1,f +15375,19861pr0002,42,1,f +15375,20612,40,1,f +15375,2412b,297,1,f +15375,2456,70,1,f +15375,2780,0,4,f +15375,3001,72,1,f +15375,30031,72,1,f +15375,3010,72,1,f +15375,30173b,158,2,f +15375,3020,72,3,f +15375,3021,0,1,f +15375,3021,272,1,f +15375,3021,72,1,f +15375,3022,19,2,f +15375,3023,25,4,f +15375,3023,42,1,f +15375,3039,0,2,f +15375,3040b,0,2,f +15375,3184,0,1,f +15375,32000,19,1,f +15375,32000,4,1,f +15375,32002,19,8,f +15375,32063,71,2,f +15375,32123b,71,2,f +15375,32449,0,3,f +15375,32524,72,4,f +15375,33078,4,1,f +15375,3626bpr0745,14,1,f +15375,3626cpr1688,42,1,f +15375,3701,0,4,f +15375,3705,0,4,f +15375,3710,70,2,f +15375,3713,4,2,f +15375,3749,19,2,f +15375,3849,0,1,f +15375,3895,72,2,f +15375,3937,71,2,f +15375,4070,70,2,f +15375,4081b,0,2,f +15375,41747,0,1,f +15375,41748,0,1,f +15375,41751,0,1,f +15375,4595,0,1,f +15375,48729b,72,2,f +15375,49668,0,1,f +15375,53451,4,2,f +15375,53451,0,3,f +15375,53451,158,2,f +15375,54200,158,4,f +15375,54200,182,4,f +15375,56145,297,2,f +15375,57539,179,1,f +15375,59443,72,2,f +15375,60478,72,4,f +15375,61072,0,1,f +15375,61252,72,4,f +15375,6134,0,2,f +15375,6141,70,5,f +15375,6141,297,16,f +15375,61481,0,2,f +15375,63868,0,1,f +15375,64644,0,1,f +15375,64867,70,2,f +15375,6558,1,10,f +15375,85984pr0002,72,1,f +15375,87747,0,1,f +15375,87994,297,1,f +15375,92690,297,1,f +15375,93059,85,1,f +15375,93095,15,1,f +15375,970c00pr0879,0,1,f +15375,970x268pr001,42,1,f +15375,973pr3032c01,0,1,f +15375,973pr3043c01,85,1,f +15375,98132,0,1,f +15375,98137,297,2,f +15375,98138,182,1,f +15375,98141,297,1,f +15375,99207,71,4,f +15376,10247,71,4,f +15376,10928,72,6,f +15376,11211,4,1,f +15376,11214,72,7,f +15376,11458,72,2,f +15376,11478,0,3,f +15376,13770,297,1,f +15376,13971,71,4,f +15376,14720,71,1,f +15376,14769,71,2,f +15376,15100,0,7,f +15376,15535,19,1,f +15376,15571,71,4,f +15376,15573,2,12,f +15376,15573,71,4,f +15376,15573,15,1,f +15376,15712,4,1,f +15376,17485,14,2,f +15376,18651,0,6,f +15376,2357,71,6,f +15376,2357,0,4,f +15376,2412b,71,6,f +15376,2431,2,34,f +15376,2431,72,1,f +15376,2431,0,3,f +15376,2431,15,3,f +15376,2431,14,2,f +15376,2445,0,4,f +15376,2458,72,2,f +15376,2458,71,4,f +15376,2458,15,4,f +15376,2654,46,2,f +15376,2654,72,16,f +15376,2730,71,1,f +15376,2780,0,193,f +15376,2825,4,2,f +15376,2825,71,2,f +15376,3001,71,18,f +15376,3001,72,4,f +15376,3001,14,9,f +15376,3002,71,4,f +15376,3003,0,12,f +15376,3003,71,4,f +15376,3003,72,1,f +15376,3004,14,4,f +15376,3004,15,1,f +15376,3004,71,12,f +15376,3004,2,1,f +15376,30044,6,1,f +15376,30046,297,1,f +15376,3005,14,4,f +15376,3005,4,2,f +15376,3006,1,6,f +15376,3008,71,6,f +15376,3008,0,4,f +15376,3009,0,10,f +15376,3009,14,5,f +15376,3009,1,3,f +15376,3009,71,8,f +15376,3009,72,4,f +15376,3010,0,8,f +15376,3010,14,2,f +15376,3010,71,8,f +15376,3010,72,3,f +15376,3020,0,16,f +15376,3020,71,2,f +15376,3020,15,2,f +15376,3021,4,1,f +15376,3021,0,2,f +15376,3022,72,1,f +15376,3022,2,1,f +15376,3022,4,1,f +15376,3022,1,2,f +15376,3023,14,1,f +15376,3023,4,5,f +15376,3023,1,6,f +15376,3023,15,2,f +15376,3023,0,6,f +15376,3024,15,2,f +15376,3024,2,4,f +15376,3030,72,2,f +15376,3031,72,1,f +15376,3032,2,2,f +15376,3032,4,1,f +15376,3032,0,2,f +15376,3034,0,3,f +15376,3034,71,5,f +15376,3034,14,9,f +15376,3036,72,2,f +15376,3036,0,2,f +15376,3037,0,2,f +15376,3039,0,5,f +15376,3039,2,3,f +15376,3039,72,4,f +15376,3040b,0,2,f +15376,3040b,15,1,f +15376,30414,71,2,f +15376,3046a,0,6,f +15376,3046a,72,4,f +15376,3065,33,8,f +15376,3068b,4,1,f +15376,3068b,1,10,f +15376,3068b,71,2,f +15376,3068b,15,2,f +15376,3069b,2,6,f +15376,3069b,71,7,f +15376,3069b,14,1,f +15376,3069b,0,2,f +15376,3069b,72,3,f +15376,3069b,1,6,f +15376,3070b,4,2,f +15376,3176,15,3,f +15376,32000,0,4,f +15376,32000,71,2,f +15376,32000,4,1,f +15376,32009,0,4,f +15376,32013,4,20,f +15376,32013,0,10,f +15376,32016,0,2,f +15376,32034,4,2,f +15376,32034,71,9,f +15376,32039,71,1,f +15376,32039,0,4,f +15376,32054,71,10,f +15376,32062,4,28,f +15376,32062,0,24,f +15376,32063,0,1,f +15376,32064a,0,48,f +15376,32064a,71,12,f +15376,32073,71,20,f +15376,32123b,71,2,f +15376,32138,71,4,f +15376,32140,4,3,f +15376,32140,1,8,f +15376,32140,0,5,f +15376,32271,0,1,f +15376,32271,72,6,f +15376,32278,71,4,f +15376,32278,4,21,f +15376,32278,1,8,f +15376,32278,0,18,f +15376,32291,4,4,f +15376,32316,71,2,f +15376,32316,4,11,f +15376,32316,0,9,f +15376,32348,4,4,f +15376,32449,4,4,f +15376,32449,0,2,f +15376,3245b,71,14,f +15376,32523,0,2,f +15376,32523,71,2,f +15376,32523,4,3,f +15376,32523,2,5,f +15376,32524,0,8,f +15376,32524,1,4,f +15376,32524,4,3,f +15376,32524,71,4,f +15376,32525,0,8,f +15376,32525,4,2,f +15376,32525,71,1,f +15376,32525,72,4,f +15376,32526,0,4,f +15376,32526,71,2,f +15376,32526,2,2,f +15376,32526,72,6,f +15376,32529,0,4,f +15376,32532,0,1,f +15376,32556,19,6,f +15376,33172,25,1,f +15376,33183,10,1,f +15376,33299a,71,1,f +15376,3456,0,3,f +15376,3460,2,4,f +15376,3460,71,1,f +15376,3460,0,1,f +15376,3622,14,4,f +15376,3626cpr0891,14,1,f +15376,3626cpr1580,14,3,f +15376,3648b,72,14,f +15376,3649,71,3,f +15376,3665,14,8,f +15376,3666,72,2,f +15376,3666,2,6,f +15376,3666,14,2,f +15376,3673,7,20,f +15376,3700,1,6,f +15376,3700,72,2,f +15376,3700,14,36,f +15376,3700,4,1,f +15376,3701,0,2,f +15376,3701,71,2,f +15376,3702,0,2,f +15376,3703,0,4,f +15376,3703,7,2,f +15376,3705,0,10,f +15376,3706,0,7,f +15376,3707,0,2,f +15376,3708,0,3,f +15376,3710,72,2,f +15376,3710,2,11,f +15376,3710,0,5,f +15376,3713,4,6,f +15376,3713,71,6,f +15376,3737,0,2,f +15376,3749,19,24,f +15376,3795,72,1,f +15376,3795,2,2,f +15376,3823,47,2,f +15376,3832,1,6,f +15376,3832,72,2,f +15376,3894,0,2,f +15376,3895,72,2,f +15376,3941,14,2,f +15376,3941,71,8,f +15376,3942c,14,2,f +15376,3958,0,1,f +15376,3958,2,1,f +15376,3958,4,1,f +15376,4032a,2,2,f +15376,40490,1,4,f +15376,40490,0,2,f +15376,40490,4,5,f +15376,40490,71,6,f +15376,40490,2,1,f +15376,4079,4,2,f +15376,41239,4,3,f +15376,41239,72,8,f +15376,41539,0,1,f +15376,4162,0,4,f +15376,4162,2,2,f +15376,4162,71,6,f +15376,41677,0,1,f +15376,41677,71,2,f +15376,41678,0,3,f +15376,41767,0,1,f +15376,41768,0,1,f +15376,41769,71,2,f +15376,41769,72,2,f +15376,41770,71,2,f +15376,41770,72,2,f +15376,4185,14,2,f +15376,42003,4,6,f +15376,42003,0,2,f +15376,4274,1,4,f +15376,43093,1,49,f +15376,43857,0,1,f +15376,44294,71,3,f +15376,44309,0,1,f +15376,4477,71,1,f +15376,4519,71,35,f +15376,45677,0,4,f +15376,4742,72,2,f +15376,4865a,0,6,f +15376,48989,71,4,f +15376,49668,191,1,f +15376,50950,71,2,f +15376,54200,288,4,f +15376,54200,182,2,f +15376,54200,47,2,f +15376,54200,71,2,f +15376,54200,46,2,f +15376,55615,71,4,f +15376,55982,71,11,f +15376,56145,71,1,f +15376,58090,0,2,f +15376,59443,71,20,f +15376,59443,0,10,f +15376,59443,4,16,f +15376,60483,72,2,f +15376,60483,71,8,f +15376,60484,71,4,f +15376,60484,0,3,f +15376,60581,15,4,f +15376,6091,14,2,f +15376,6111,71,10,f +15376,6111,0,12,f +15376,6112,71,3,f +15376,6112,0,1,f +15376,61252,14,1,f +15376,61254,0,4,f +15376,61409,4,2,f +15376,6141,14,2,f +15376,6141,4,1,f +15376,6141,297,1,f +15376,6178,71,8,f +15376,61903,71,1,f +15376,6192,72,2,f +15376,6205,0,2,f +15376,6231,0,4,f +15376,62462,14,4,f +15376,64178,71,1,f +15376,64648,179,1,f +15376,64782,4,2,f +15376,64782,0,1,f +15376,64782,2,3,f +15376,6541,71,4,f +15376,6553,71,4,f +15376,6558,1,69,f +15376,6629,0,5,f +15376,6629,1,4,f +15376,6629,4,1,f +15376,6629,71,2,f +15376,6632,4,8,f +15376,6632,0,3,f +15376,6636,14,8,f +15376,6636,0,6,f +15376,72454,72,1,f +15376,78c18,179,1,f +15376,86035,27,1,f +15376,87079,14,18,f +15376,87079,0,18,f +15376,87079,1,12,f +15376,87079,71,5,f +15376,87081,70,1,f +15376,87082,71,3,f +15376,87083,72,2,f +15376,87087,4,2,f +15376,87087,14,2,f +15376,87544,0,34,f +15376,87544,2,61,f +15376,87552,14,18,f +15376,87580,2,1,f +15376,87580,0,4,f +15376,87990,308,1,f +15376,92402,0,9,f +15376,93160,15,1,f +15376,93273,2,2,f +15376,970c00,4,1,f +15376,970c00,1,1,f +15376,973c01,15,2,f +15376,98138pr0008,15,4,f +15376,98285,0,4,f +15376,98585,71,1,f +15376,99008,19,3,f +15376,99780,0,2,f +15377,11211,15,4,f +15377,11477,15,3,f +15377,15573,71,2,f +15377,2421,0,1,f +15377,2431,1,1,f +15377,3004,1,1,f +15377,3020,1,1,f +15377,3022,15,1,f +15377,3023,15,4,f +15377,30602,40,2,f +15377,3070b,14,1,t +15377,3070b,14,2,f +15377,3176,1,1,f +15377,3460,0,4,f +15377,3460,15,1,f +15377,3679,71,1,f +15377,3680,0,1,f +15377,3747b,1,1,f +15377,4081b,71,4,f +15377,4150,72,1,f +15377,43722,1,1,f +15377,44728,15,1,f +15377,4488,71,1,f +15377,54200,15,1,f +15377,54200,15,1,t +15377,6140,0,2,f +15377,61409,1,2,f +15377,98138,182,1,t +15377,98138,182,3,f +15380,12708pr01,47,2,f +15380,2432,4,1,f +15380,3004,4,1,f +15380,3020,4,1,f +15380,3020,71,1,f +15380,3022,15,2,f +15380,3023,4,2,f +15380,3023,47,2,f +15380,3023,71,1,f +15380,3062b,14,1,f +15380,3069b,4,2,f +15380,3069b,33,1,f +15380,32028,72,1,f +15380,3743,15,1,f +15380,3794b,15,2,f +15380,44375a,15,1,f +15380,4599b,14,1,f +15380,4600,71,2,f +15380,4624,15,4,f +15380,63868,15,1,f +15380,87414,0,4,f +15381,3023,72,2,f +15381,3024,70,1,t +15381,3024,70,2,f +15381,4733,71,1,f +15381,4740,28,2,f +15381,4740,28,1,t +15381,6141,47,2,f +15381,6141,47,1,t +15381,93273,70,2,f +15385,10197,72,1,f +15385,11164pat01,46,1,f +15385,11268,320,2,f +15385,11270,35,1,f +15385,11272,148,1,f +15385,11287,320,1,f +15385,11302pat0001,36,2,f +15385,32062,4,2,f +15385,32062,4,1,t +15385,32073,71,1,f +15385,43093,1,1,t +15385,43093,1,1,f +15385,53451,4,4,f +15385,53451,4,2,t +15385,59443,4,2,f +15385,62462,0,1,f +15385,64727,4,1,t +15385,64727,4,1,f +15385,87841,0,2,f +15385,87846,0,2,f +15385,90611,0,3,f +15385,90617,0,6,f +15385,90625,0,1,f +15385,90639pr0024,57,1,f +15385,90641,0,5,f +15385,90652,320,1,f +15385,92220,57,4,f +15385,92233,0,1,f +15385,93575,0,1,f +15385,98570pat01,15,1,f +15385,98603,148,1,f +15386,2357,85,4,f +15386,2412b,0,1,t +15386,2412b,0,2,f +15386,3001ph0,85,1,f +15386,3002,85,1,f +15386,3005,85,8,f +15386,3009,47,6,f +15386,3010,85,2,f +15386,3020,85,1,f +15386,3022,85,1,f +15386,3023,85,1,f +15386,3032,85,1,f +15386,3034,0,1,f +15386,3065,47,8,f +15386,3139,0,4,f +15386,3622,85,4,f +15386,3710,85,3,f +15386,44674,0,1,f +15386,44728,85,1,f +15386,4600,71,2,f +15386,4624,85,4,f +15386,6215,85,2,f +15387,15439,0,1,f +15387,27989,84,1,f +15387,3626cpr2032,14,1,f +15387,88646,0,1,f +15387,90388pr0003,0,1,f +15387,970c00pr1117,0,1,f +15387,973pr3543c01,0,1,f +15388,cloth02,1,1,f +15389,10247,0,6,f +15389,11089,0,4,f +15389,11090,72,4,f +15389,11094,0,2,f +15389,11096,297,2,f +15389,11097,297,1,f +15389,11098,41,2,f +15389,11127,182,1,f +15389,11127,41,1,f +15389,11153,25,12,f +15389,11214,72,2,f +15389,11399,15,2,f +15389,11477,15,6,f +15389,11946,25,1,f +15389,11947,25,1,f +15389,12549pr0006,15,1,f +15389,13809pr0002,28,1,f +15389,14417,72,1,f +15389,14704,71,2,f +15389,14769pr1012,4,3,f +15389,15068,25,6,f +15389,15071,0,1,f +15389,15083pr0001,15,1,f +15389,15083pr0005,71,1,f +15389,15084pr0006,484,1,f +15389,15084pr0007,484,1,f +15389,15090,179,1,f +15389,15208,15,1,f +15389,15535,72,2,f +15389,15571,15,1,f +15389,15571,25,4,f +15389,15672,15,8,f +15389,15712,71,1,f +15389,15712,297,2,f +15389,16768pat0001,4,1,f +15389,16968,71,2,f +15389,18394pat0001,36,2,f +15389,18396pat0001,4,2,f +15389,18398pr0004,297,1,f +15389,18651,0,2,f +15389,18654,72,6,f +15389,2357,15,2,f +15389,2412b,25,4,f +15389,2420,71,8,f +15389,2465,0,3,f +15389,2655,71,1,f +15389,2723,0,4,f +15389,2736,71,4,f +15389,2780,0,23,f +15389,2817,0,2,f +15389,3001,25,6,f +15389,3001,15,2,f +15389,3003,0,2,f +15389,3004,25,2,f +15389,3004,15,3,f +15389,3005,25,2,f +15389,3008,15,2,f +15389,3009,25,3,f +15389,3010,25,4,f +15389,3020,25,7,f +15389,3021,71,6,f +15389,3022,72,2,f +15389,3023,182,4,f +15389,3023,15,13,f +15389,30236,15,1,f +15389,3024,41,3,f +15389,3024,182,8,f +15389,3027,0,2,f +15389,3031,72,2,f +15389,3031,15,1,f +15389,3035,0,1,f +15389,30350a,4,1,f +15389,3036,0,1,f +15389,30363,15,1,f +15389,30374,0,1,f +15389,30374,41,2,f +15389,3039,15,1,f +15389,3039,25,8,f +15389,3039pr0014,0,1,f +15389,3039pr0015,0,1,f +15389,3040b,15,2,f +15389,3049b,0,1,f +15389,3062b,41,3,f +15389,3068b,25,2,f +15389,3069b,36,2,f +15389,3069b,25,1,f +15389,32000,0,4,f +15389,32005a,0,2,f +15389,32013,71,2,f +15389,32034,15,1,f +15389,32039,71,3,f +15389,32054,0,2,f +15389,32062,4,2,f +15389,32073,71,6,f +15389,32123b,71,4,f +15389,32138,0,4,f +15389,32291,72,4,f +15389,32316,0,2,f +15389,32348,25,2,f +15389,32523,72,2,f +15389,32524,72,4,f +15389,32525,0,2,f +15389,32531,71,1,f +15389,32556,19,7,f +15389,3298,25,1,f +15389,3460,15,2,f +15389,3464,72,1,f +15389,3626cpr1124,212,1,f +15389,3626cpr1418,15,1,f +15389,3626cpr1583,71,1,f +15389,3626cpr1611,484,1,f +15389,3626cpr1612,484,1,f +15389,3660,25,3,f +15389,3665,25,6,f +15389,3666,25,12,f +15389,3673,71,10,f +15389,3700,72,8,f +15389,3701,0,10,f +15389,3706,0,1,f +15389,3707,0,2,f +15389,3710,25,13,f +15389,3713,71,16,f +15389,3738,0,4,f +15389,3747b,15,3,f +15389,3795,25,1,f +15389,3829c01,0,3,f +15389,3832,0,1,f +15389,3894,15,1,f +15389,3895,0,3,f +15389,3941,25,2,f +15389,3960,0,1,f +15389,4006,0,1,f +15389,4032a,71,5,f +15389,40490,15,2,f +15389,4081b,15,8,f +15389,41530,25,2,f +15389,4162,0,4,f +15389,41669,15,3,f +15389,4175,0,2,f +15389,41879a,288,1,f +15389,42003,72,2,f +15389,42023,15,2,f +15389,4282,72,1,f +15389,4286,0,2,f +15389,43093,1,2,f +15389,4345b,71,2,f +15389,4346,71,2,f +15389,4349,0,4,f +15389,43710,25,2,f +15389,43711,25,2,f +15389,43722,25,4,f +15389,43723,25,4,f +15389,44728,25,8,f +15389,4477,0,2,f +15389,4519,71,1,f +15389,45301,25,1,f +15389,45677,25,2,f +15389,45677pr0002,25,1,f +15389,4697b,71,1,f +15389,4740,57,1,f +15389,48336,15,5,f +15389,4865a,71,1,f +15389,48989,71,2,f +15389,49668,15,2,f +15389,50304,25,1,f +15389,50305,25,1,f +15389,51739,25,5,f +15389,53451,179,6,f +15389,53451,15,2,f +15389,54200,25,4,f +15389,54200,15,2,f +15389,55981,71,4,f +15389,57519,0,2,f +15389,57585,71,1,f +15389,59229,179,2,f +15389,59426,72,2,f +15389,59443,71,2,f +15389,59900,182,6,f +15389,6014b,71,2,f +15389,6020,0,1,f +15389,60475b,0,2,f +15389,60477,15,2,f +15389,60479,0,2,f +15389,60483,71,4,f +15389,60897,0,4,f +15389,6112,15,4,f +15389,61252,25,4,f +15389,6157,71,1,f +15389,62462,0,2,f +15389,63082,71,1,f +15389,63869,71,2,f +15389,64644,0,1,f +15389,6558,1,2,f +15389,6628,0,2,f +15389,86038,15,1,f +15389,87079,25,10,f +15389,87083,72,2,f +15389,87580,15,1,f +15389,87697,0,2,f +15389,87747,15,6,f +15389,88292,15,6,f +15389,88323,0,22,f +15389,88323,72,22,f +15389,88811,179,2,f +15389,89201,0,4,f +15389,91988,0,1,f +15389,95199,72,2,f +15389,96874,25,1,t +15389,970c00pr0663,4,1,f +15389,970c00pr0801,484,1,f +15389,970c00pr0811,484,1,f +15389,970d00pr0819,71,1,f +15389,970d19pr0659,15,1,f +15389,973pr2465c01,28,1,f +15389,973pr2660c01,71,1,f +15389,973pr2680c01,4,1,f +15389,973pr2872c01,71,1,f +15389,973pr2904c01,484,2,f +15389,98138,182,6,f +15389,98138,33,2,f +15389,98138,41,3,f +15389,98138pr0023,182,1,f +15389,99207,0,9,f +15389,99780,72,4,f +15389,99780,0,3,f +15389,99781,15,2,f +15389,99781,0,8,f +15390,2994,15,4,f +15390,6578,0,4,f +15391,3626bpr0568,14,1,f +15391,62696,308,1,f +15391,64644,297,1,f +15391,970c00,1,1,f +15391,973pr1449c01,0,1,f +15395,107pr0001,15,1,f +15395,3034,15,1,f +15395,3036,7,1,f +15395,3062a,47,8,f +15395,x1721,14,2,f +15396,30602,112,2,f +15396,4259582,89,1,f +15396,4259592,89,1,f +15396,4259999,9999,1,f +15396,43093,1,1,f +15396,4740,0,1,t +15396,4740,0,1,f +15396,47430,112,2,f +15396,47431,72,2,f +15396,47432,72,2,f +15396,47452,71,2,f +15396,47454,71,2,f +15396,47455,73,10,f +15396,47456,112,4,f +15396,47457,112,2,f +15396,47458,112,4,f +15396,47460,134,1,f +15396,47474,72,1,f +15396,47477c01pb06,112,1,f +15396,50616,134,1,f +15396,8809cape,7,1,f +15396,bb153pb06,112,1,f +15396,rb00190,89,1,f +15397,263,0,2,f +15397,x515,14,2,f +15397,x564,4,2,f +15398,14226c11,0,1,t +15398,14226c11,0,2,f +15398,2335,0,7,f +15398,2357,70,2,f +15398,2431,308,3,f +15398,2431,70,5,f +15398,2449,0,4,f +15398,2489,308,1,f +15398,2527,70,2,f +15398,2530,72,6,f +15398,2530,72,5,t +15398,2540,72,10,f +15398,2543,308,1,f +15398,2562,70,2,f +15398,2566,0,3,f +15398,2654,19,14,f +15398,2780,0,4,t +15398,2780,0,17,f +15398,2817,0,4,f +15398,3001,0,4,f +15398,3002,0,2,f +15398,3003,0,24,f +15398,3003,15,2,f +15398,30044,71,6,f +15398,30046,297,6,f +15398,3005,0,32,f +15398,3007,71,1,f +15398,3009,0,4,f +15398,3010,70,3,f +15398,30126,72,1,f +15398,30126,72,1,t +15398,30134,0,2,f +15398,30136,0,30,f +15398,30150,70,1,f +15398,30154,72,1,f +15398,3020,72,11,f +15398,3020,70,2,f +15398,3022,72,14,f +15398,3023,0,17,f +15398,3023,72,6,f +15398,30237a,72,1,f +15398,3024,4,4,f +15398,3028,72,2,f +15398,3037,72,3,f +15398,30374,70,1,f +15398,3039,71,2,f +15398,3040b,0,2,f +15398,30504,72,2,f +15398,3062b,72,32,f +15398,3068b,70,15,f +15398,3068bpr0167,19,1,f +15398,3069b,308,3,f +15398,3070bpr0058,272,1,t +15398,3070bpr0058,272,1,f +15398,32013,0,20,f +15398,32016,71,1,f +15398,32034,0,18,f +15398,32062,4,11,f +15398,32064b,71,1,f +15398,32530,0,1,f +15398,3460,0,7,f +15398,3622,0,8,f +15398,3623,70,8,f +15398,3626b,0,1,f +15398,3626bpr0789,78,1,f +15398,3626bpr0801,78,1,f +15398,3626bpr0804,78,1,f +15398,3626bpr0864,19,1,f +15398,3626bpr0873,78,1,f +15398,3626bpr0874,71,1,f +15398,3659,0,16,f +15398,3660,0,5,f +15398,3666,72,4,f +15398,3678b,0,1,f +15398,37,72,1,t +15398,37,72,1,f +15398,3700,71,4,f +15398,3701,70,4,f +15398,3705,0,11,f +15398,3708,0,1,f +15398,3710,72,3,f +15398,3737,0,3,f +15398,3738,71,1,f +15398,3795,70,1,f +15398,3795,72,10,f +15398,3832,72,2,f +15398,3832,0,4,f +15398,3849,0,1,f +15398,3937,72,3,f +15398,3938,0,4,f +15398,3941,0,8,f +15398,3956,71,6,f +15398,3957b,0,2,f +15398,4032a,71,8,f +15398,4081b,72,2,f +15398,4081b,0,2,f +15398,4085c,0,2,f +15398,4085c,71,4,f +15398,41539,72,1,f +15398,41767,0,2,f +15398,41768,0,2,f +15398,4274,1,3,f +15398,4274,1,1,t +15398,4282,0,2,f +15398,4286,0,18,f +15398,4286,70,4,f +15398,43093,1,3,f +15398,44294,71,12,f +15398,44301a,72,2,f +15398,44302a,72,2,f +15398,4477,0,4,f +15398,4510,71,1,f +15398,4519,71,1,f +15398,4667292,9999,1,t +15398,4697b,71,1,f +15398,4697b,71,1,t +15398,4735,0,2,f +15398,47397,72,2,f +15398,47398,72,2,f +15398,4740,0,3,f +15398,4790b,70,1,f +15398,47994,0,2,f +15398,47996,0,2,f +15398,48002,0,3,f +15398,4865b,72,4,f +15398,48729b,71,1,t +15398,48729b,71,3,f +15398,50451,15,1,f +15398,54200,70,2,f +15398,54200,70,1,t +15398,59363,0,1,f +15398,59426,72,2,f +15398,59443,0,8,f +15398,59900,297,5,f +15398,59900,0,22,f +15398,59900,182,3,f +15398,60169,72,1,f +15398,60479,71,3,f +15398,60596,0,1,f +15398,60623,70,1,f +15398,6134,71,3,f +15398,6141,72,31,f +15398,6141,72,3,t +15398,6266,0,6,f +15398,63864,71,4,f +15398,63868,71,4,f +15398,63965,0,3,f +15398,64644,297,1,f +15398,64644,308,2,f +15398,64645,0,1,f +15398,64647,0,1,t +15398,64647,57,1,t +15398,64647,0,2,f +15398,64647,57,2,f +15398,64648,179,1,f +15398,64651,0,1,f +15398,64991,0,4,f +15398,6558,1,2,f +15398,6628,0,24,f +15398,6636,70,3,f +15398,73983,72,4,f +15398,75347,0,3,f +15398,84943,148,2,f +15398,85651,0,2,f +15398,85984,72,8,f +15398,87081,72,2,f +15398,87081,0,1,f +15398,88292,0,10,f +15398,92946,72,2,f +15398,95221pr0001,0,1,f +15398,95222pr0002,272,1,f +15398,95226,308,1,f +15398,95226,72,1,f +15398,95227,0,3,f +15398,95228,40,2,f +15398,95229,0,2,f +15398,95348,0,1,f +15398,95348,308,2,f +15398,95354,0,1,f +15398,95401,19,1,f +15398,95404pr0001,71,1,f +15398,96714,0,1,f +15398,970c00,71,2,f +15398,970c00,308,2,f +15398,970c00pr0217,70,1,f +15398,970d13,72,1,f +15398,973c14,0,1,f +15398,973pr0972c01,272,1,f +15398,973pr1770c01,308,1,f +15398,973pr1789c01,71,1,f +15398,973pr1811c01,72,1,f +15398,973pr1909c01,72,1,f +15398,973pr1910c01,71,1,f +15398,98800pr0001,47,1,f +15399,132a,0,2,f +15399,3003pt1,1,1,f +15399,3004,1,1,f +15399,3004,47,2,f +15399,3010,47,1,f +15399,3020,1,1,f +15399,3021,1,4,f +15399,3021,4,2,f +15399,3024,1,2,f +15399,3034,1,1,f +15399,3062a,0,1,f +15399,3137c01,0,1,f +15399,3139,0,2,f +15399,3183b,4,1,f +15399,3314,4,1,f +15399,3317,1,1,f +15399,7039,4,2,f +15399,7049b,0,1,f +15399,784,4,1,f +15400,2431,26,1,f +15400,30103,0,1,f +15400,3032,19,1,f +15400,3040b,30,2,f +15400,33291,10,1,f +15400,33291,26,2,f +15400,3626c,25,1,f +15400,3626cpr0895,15,1,f +15400,3900,15,1,f +15400,48729b,0,1,f +15400,60478,0,2,f +15400,60596,15,1,f +15400,60623,0,1,f +15400,6141,182,1,f +15400,93092,5,1,f +15400,98138pr0013,15,1,f +15401,2420,27,2,f +15401,2436,27,1,f +15401,2817,0,1,f +15401,3020,85,1,f +15401,3022,27,1,f +15401,3023,27,2,f +15401,3023,85,1,f +15401,3024,27,2,f +15401,3048c,85,2,f +15401,30553,85,1,f +15401,32062,0,1,f +15401,32064b,85,4,f +15401,3710,85,2,f +15401,3749,19,2,f +15401,3960,85,1,f +15401,4286,85,2,f +15401,43898,15,1,f +15401,44301a,27,1,f +15401,44302a,85,4,f +15401,44567a,27,4,f +15401,4740,42,1,f +15401,47674,52,1,f +15401,47675,85,1,f +15401,47676,85,1,f +15401,49668,15,2,f +15401,54200,85,1,f +15401,54200,15,2,f +15401,6141,42,2,f +15401,6141,42,1,t +15401,6141,0,2,f +15401,6141,0,1,t +15402,3960,7,2,f +15402,3961,7,1,f +15402,4285a,7,2,f +15404,22253,80,4,f +15404,2730,0,3,f +15404,2780,0,43,f +15404,2815,0,2,f +15404,2825,0,1,f +15404,2850a,47,4,f +15404,3023,0,2,f +15404,3068b,0,2,f +15404,32002,8,5,f +15404,32009,0,8,f +15404,32013,0,10,f +15404,32015,7,1,f +15404,32016,0,6,f +15404,32017,0,2,f +15404,32018,0,10,f +15404,32034,0,1,f +15404,32039,0,12,f +15404,32054,1,14,f +15404,32054,0,4,f +15404,32062,0,20,f +15404,32064b,0,1,f +15404,32065,0,1,f +15404,32068,0,2,f +15404,32068,4,2,f +15404,32073,0,3,f +15404,32123b,7,13,f +15404,32140,0,7,f +15404,32174,4,1,f +15404,32175,0,2,f +15404,32180,0,4,f +15404,32184,0,8,f +15404,32188,4,1,f +15404,32189,4,1,f +15404,32190,4,2,f +15404,32191,4,2,f +15404,32192,4,1,f +15404,32199,179,2,f +15404,32209,15,3,f +15404,32235,179,2,f +15404,32249,0,4,f +15404,32249,4,2,f +15404,32250,0,2,f +15404,32251,0,2,f +15404,32271,0,4,f +15404,32278,0,2,f +15404,32288c02,0,1,f +15404,32291,4,1,f +15404,32310,0,1,f +15404,32310,4,1,f +15404,32316,4,4,f +15404,32324,7,4,f +15404,32333,0,2,f +15404,32449,4,4,f +15404,3460,0,8,f +15404,3647,15,1,f +15404,3648b,1,1,f +15404,3666,0,2,f +15404,3700,0,6,f +15404,3705,0,17,f +15404,3706,0,2,f +15404,3707,0,3,f +15404,3708,0,2,f +15404,3709,0,4,f +15404,3710,0,4,f +15404,3713,7,15,f +15404,3713,1,4,f +15404,3737,0,8,f +15404,3749,7,21,f +15404,3894,0,1,f +15404,3895,0,1,f +15404,4019,4,2,f +15404,4185,4,2,f +15404,4519,0,14,f +15404,6536,0,10,f +15404,6538b,0,7,f +15404,6558,0,21,f +15404,6587,8,6,f +15404,6589,14,4,f +15404,6628,0,2,f +15404,6632,0,14,f +15404,6632,4,4,f +15404,6636,0,3,f +15404,71509,0,1,f +15404,75535,0,1,f +15404,78c03,179,4,f +15404,78c07,179,6,f +15404,rb00168,0,1,f +15407,22667,4,1,t +15407,22667,4,2,f +15407,2343,297,4,f +15407,2357,15,2,f +15407,2431,70,4,f +15407,2431,320,2,f +15407,2453a,19,2,f +15407,2453a,70,4,f +15407,2454a,72,4,f +15407,2460,72,1,f +15407,2460,0,2,f +15407,2489,308,1,f +15407,2555,4,2,f +15407,2780,0,1,t +15407,2780,0,1,f +15407,2877,72,2,f +15407,2921,70,3,f +15407,3001,15,3,f +15407,3001,320,3,f +15407,3002,71,2,f +15407,3003,19,3,f +15407,3004,84,19,f +15407,3004,320,10,f +15407,3004,19,3,f +15407,30044,15,1,f +15407,30046,297,2,f +15407,3005,320,6,f +15407,3005,19,2,f +15407,3005,84,22,f +15407,3008,84,3,f +15407,3008,19,1,f +15407,3009,84,5,f +15407,3009,19,2,f +15407,3010,19,2,f +15407,30136,308,8,f +15407,30136,70,19,f +15407,30137,70,10,f +15407,3020,0,1,f +15407,3020,28,1,f +15407,3021,72,1,f +15407,3022,71,1,f +15407,3022,19,2,f +15407,3023,72,2,f +15407,3032,71,2,f +15407,3034,28,6,f +15407,3035,0,1,f +15407,3035,71,1,f +15407,30350c,70,2,f +15407,3036,2,2,f +15407,3037,320,21,f +15407,30374,19,1,f +15407,30374,71,1,f +15407,30374,0,2,f +15407,30374,71,1,t +15407,30374,70,1,f +15407,3038,320,9,f +15407,3039,72,5,f +15407,3040b,320,14,f +15407,30414,84,2,f +15407,3044b,72,5,f +15407,3045,72,2,f +15407,3045,320,8,f +15407,3046a,320,6,f +15407,30504,72,2,f +15407,3062b,36,4,f +15407,3068b,320,2,f +15407,3068bpr0184,71,1,f +15407,3068bpr0185,19,1,f +15407,3069b,73,19,f +15407,3069b,71,1,f +15407,3069b,25,6,f +15407,3069bpr0113,19,2,f +15407,3176,71,2,f +15407,32013,0,2,f +15407,32064b,0,2,f +15407,32530,0,2,f +15407,3298,320,8,f +15407,3300,72,4,f +15407,3307,84,3,f +15407,33125,484,1,f +15407,33320,2,1,f +15407,3455,19,1,f +15407,3456,72,1,f +15407,3622,84,13,f +15407,3626bpr0703,78,1,f +15407,3626bpr0713,78,1,f +15407,3626bpr0714,78,1,f +15407,3626bpr0715,78,1,f +15407,3626bpr0716,78,1,f +15407,3626bpr0717,78,1,f +15407,3665,84,10,f +15407,3666,70,6,f +15407,3673,71,2,f +15407,3673,71,1,t +15407,3675,320,2,f +15407,3678bpr0010b,0,1,f +15407,3679,71,2,f +15407,3680,71,2,f +15407,37,72,2,f +15407,3701,72,2,f +15407,3710,71,3,f +15407,3741,2,1,t +15407,3741,2,2,f +15407,3742,15,1,t +15407,3742,15,3,f +15407,3742,4,1,t +15407,3742,4,3,f +15407,3749,19,1,t +15407,3749,19,1,f +15407,3795,70,4,f +15407,3899,4,2,f +15407,40233,0,1,f +15407,40251,484,1,f +15407,4032a,2,1,f +15407,4079,70,2,f +15407,4150,71,1,f +15407,41539,72,4,f +15407,43093,1,1,t +15407,43093,1,1,f +15407,4332,0,1,f +15407,4519,71,1,f +15407,4523,70,2,f +15407,4528,135,2,f +15407,4533,15,1,f +15407,4536,15,2,f +15407,4589,2,4,f +15407,4589,46,10,f +15407,4599b,71,1,f +15407,4738a,70,1,f +15407,4739a,70,1,f +15407,4740,15,4,f +15407,47457,15,3,f +15407,4871,0,1,f +15407,48729a,72,1,t +15407,48729b,72,2,f +15407,54200,72,4,f +15407,54200,72,2,t +15407,60581,15,2,f +15407,60583a,84,3,f +15407,60592,19,3,f +15407,60593,288,1,f +15407,60594,15,3,f +15407,60594,19,3,f +15407,60598,15,3,f +15407,60601,47,1,f +15407,60602,47,1,f +15407,60607,15,6,f +15407,60608,73,12,f +15407,6064,28,2,f +15407,6108,70,1,f +15407,6141,297,27,f +15407,6141,297,2,t +15407,6182,84,1,f +15407,6231,15,3,f +15407,62361,15,1,f +15407,62462,320,3,f +15407,6256,191,1,f +15407,62810,484,1,f +15407,64390,70,1,f +15407,64647,57,6,f +15407,64647,57,1,t +15407,6541,19,1,f +15407,6636,28,3,f +15407,85975,320,1,f +15407,87079,70,4,f +15407,87087,0,3,f +15407,87552,0,2,f +15407,87580,28,4,f +15407,87621pr01,92,1,f +15407,88289,308,2,f +15407,88292,84,4,f +15407,89523,28,1,f +15407,92081,308,1,f +15407,92082,0,1,f +15407,92083,484,1,f +15407,92084pr0002,72,1,f +15407,92084pr0003,15,1,f +15407,92410,25,2,f +15407,970c00,0,2,f +15407,970c00,71,1,f +15407,970c00pr0177,320,1,f +15407,970c00pr0179,84,1,f +15407,973pr1674c01,272,1,f +15407,973pr1675c01,71,1,f +15407,973pr1676c01,19,1,f +15407,973pr1677c01,378,1,f +15407,973pr1678c01,0,1,f +15407,973pr1679c01,0,1,f +15408,2458,14,2,f +15408,2460,4,2,f +15408,2479,7,2,f +15408,30000,8,8,f +15408,3001,4,18,f +15408,3001,0,4,f +15408,3001,14,18,f +15408,3002,14,4,f +15408,3002,4,4,f +15408,3003,14,4,f +15408,3003,4,4,f +15408,3004,14,18,f +15408,3004,4,18,f +15408,3005,14,12,f +15408,3005,4,16,f +15408,3006,14,5,f +15408,3006,4,5,f +15408,3007,4,4,f +15408,3008,14,8,f +15408,3008,4,8,f +15408,3009,4,24,f +15408,3009,14,24,f +15408,3010,14,42,f +15408,3010,4,42,f +15408,3020,7,8,f +15408,3021,7,6,f +15408,3022,7,6,f +15408,3031,7,2,f +15408,3032,7,4,f +15408,3034,7,6,f +15408,3035,7,4,f +15408,3039,14,12,f +15408,3039,47,6,f +15408,3039,4,4,f +15408,3040b,4,16,f +15408,3040b,14,4,f +15408,3062b,7,10,f +15408,3063b,14,8,f +15408,3081cc01,15,4,f +15408,3149c01,7,6,f +15408,3297,4,12,f +15408,3298,4,4,f +15408,3299,4,8,f +15408,3300,4,4,f +15408,3307,4,3,f +15408,3324c01,7,2,f +15408,3403c01,4,2,f +15408,3460,7,8,f +15408,3483,0,12,f +15408,3622,4,18,f +15408,3622,14,18,f +15408,3626bp02,14,4,f +15408,3626bp03,14,2,f +15408,3626bp04,14,2,f +15408,3634,0,2,f +15408,3639,7,2,f +15408,3640,7,2,f +15408,3660,4,14,f +15408,3660,14,8,f +15408,3665,14,8,f +15408,3665,4,4,f +15408,3666,7,4,f +15408,3700,0,10,f +15408,3700,4,12,f +15408,3702,4,6,f +15408,3707,0,4,f +15408,3710,7,8,f +15408,3747a,14,8,f +15408,3747a,4,2,f +15408,3749,7,6,f +15408,3795,7,4,f +15408,3823,47,2,f +15408,3857,7,1,f +15408,3857,2,1,f +15408,3901,6,2,f +15408,3901,0,2,f +15408,3937,7,2,f +15408,3938,7,2,f +15408,3941,7,8,f +15408,4275b,7,6,f +15408,4276b,7,6,f +15408,4485,4,2,f +15408,4485,1,2,f +15408,4864b,47,8,f +15408,6007,8,2,t +15408,6093,0,2,f +15408,6093,6,2,f +15408,6248,4,14,f +15408,6249,8,8,f +15408,73983,7,6,f +15408,970c00,15,2,f +15408,970c00,4,2,f +15408,970c00,0,2,f +15408,970c00,1,2,f +15408,973pr1204c01,15,2,f +15408,973pr1245c01,1,2,f +15408,973px18c01,15,2,f +15408,973px34c01,15,2,f +15409,122c01,7,3,f +15409,3004,4,5,f +15409,3005,4,3,f +15409,3005,47,2,f +15409,3010,4,4,f +15409,3010pb035u,4,1,f +15409,3020,4,1,f +15409,3021,4,3,f +15409,3022,4,3,f +15409,3023,4,4,f +15409,3024,7,1,f +15409,3030,4,1,f +15409,3035,4,1,f +15409,3039,4,1,f +15409,3062a,33,2,f +15409,3062a,7,2,f +15409,3087c,4,1,f +15409,3183a,4,1,f +15409,3184,4,1,f +15409,3581,4,2,f +15409,3582,7,2,f +15409,3626apr0001,14,1,f +15409,3626bpr0001,14,1,f +15409,3641,0,6,f +15409,3710,4,1,f +15409,3787,4,1,f +15409,3788,4,2,f +15409,3794a,4,1,f +15409,3823,47,1,f +15409,3834,0,1,f +15409,3835,7,1,f +15409,420,7,1,f +15409,421,7,1,f +15409,69c01,14,1,f +15409,970c00,0,1,f +15409,973c18,0,1,f +15409,rb00166,0,1,f +15414,3034,15,8,f +15414,3228a,1,16,f +15414,3231,1,1,f +15415,2439,8,1,f +15415,2458,4,1,f +15415,2496,14,2,f +15415,2736,7,1,f +15415,3004,0,4,f +15415,3020,8,2,f +15415,3020,0,1,f +15415,3022,4,5,f +15415,3023,0,1,f +15415,30552,8,1,f +15415,30553,8,1,f +15415,32013,0,2,f +15415,32014,4,1,f +15415,32034,0,1,f +15415,32062,0,3,f +15415,32064a,4,5,f +15415,33303,0,1,f +15415,3626bpb0165,14,1,f +15415,3700,0,1,f +15415,3708,4,1,f +15415,3710,0,1,f +15415,3737,0,1,f +15415,3754pb05,4,1,f +15415,3832,8,2,f +15415,3839b,0,1,f +15415,3958,8,1,f +15415,42511,1,1,f +15415,43373,25,1,f +15415,43374,15,1,f +15415,43702pr0001,25,3,f +15415,4519,7,1,f +15415,4740,7,1,f +15415,6232,4,2,f +15415,973bpb179c01,110,1,f +15415,x494cx1,110,1,f +15416,3647,7,50,f +15416,3650a,7,8,f +15416,4019,7,10,f +15417,11090,0,1,f +15417,11477,272,3,f +15417,14417,72,2,f +15417,14704,71,2,f +15417,15064,158,1,f +15417,15619,272,1,f +15417,15619,272,1,t +15417,15706,0,2,f +15417,15712,0,4,f +15417,2540,0,2,f +15417,30173b,158,2,f +15417,30173b,179,1,f +15417,3022,27,1,f +15417,3022,0,1,f +15417,3023,272,1,f +15417,3623,272,1,f +15417,3626cpr1688,42,1,f +15417,4871,0,1,f +15417,51739,272,1,f +15417,52107,0,1,f +15417,54200,158,1,t +15417,54200,158,4,f +15417,6141,0,1,f +15417,6141,0,1,t +15417,6141,158,1,t +15417,6141,158,3,f +15417,63868,0,1,f +15417,87747,0,2,f +15417,87747,0,1,t +15417,93059,85,1,f +15417,970x268pr001,42,1,f +15417,973pr3043c01,85,1,f +15417,98137,158,2,f +15418,11127,41,1,f +15418,11233pr0003,71,1,f +15418,12825,71,3,f +15418,2412b,71,1,f +15418,2654,72,1,f +15418,30031,0,1,f +15418,3020,72,1,f +15418,3021,4,1,f +15418,3023,320,2,f +15418,3044c,72,1,f +15418,3049d,0,1,f +15418,3626cpr1137,71,1,f +15418,3794b,0,1,f +15418,3795,71,1,f +15418,3937,71,1,f +15418,4085c,72,2,f +15418,43719,72,1,f +15418,4871,72,1,f +15418,54200,72,2,f +15418,54200,72,1,t +15418,60470a,15,1,f +15418,6134,4,1,f +15418,6141,36,1,t +15418,6141,36,4,f +15418,92691,15,1,f +15418,970c00pr0436,71,1,f +15418,973pr2237c01,71,1,f +15418,98141,179,2,f +15418,99774,72,2,f +15418,99780,0,1,f +15419,2780,0,6,f +15419,2780,0,1,t +15419,32002,72,1,t +15419,32002,72,2,f +15419,32056,0,6,f +15419,32062,4,7,f +15419,32073,71,2,f +15419,32123b,71,2,f +15419,32123b,71,1,t +15419,32140,0,2,f +15419,32173,0,2,f +15419,32177,0,2,f +15419,32184,0,1,f +15419,32250,0,6,f +15419,32291,71,1,f +15419,32316,0,1,f +15419,32523,71,1,f +15419,3706,0,1,f +15419,3708,0,1,f +15419,3713,71,2,f +15419,3713,71,1,t +15419,41671,0,2,f +15419,41677,0,10,f +15419,41678,71,2,f +15419,42003,0,5,f +15419,43093,1,5,f +15419,44294,71,1,f +15419,4519,71,11,f +15419,45749,0,2,f +15419,47298,0,2,f +15419,47330,0,1,f +15419,50923,72,5,f +15419,53562,0,2,f +15419,53568,0,1,f +15419,53585,0,2,f +15419,53586,179,2,f +15419,55013,72,2,f +15419,57543,179,2,f +15419,57565,0,2,f +15419,57575,0,1,f +15419,57585,71,1,f +15419,59426,72,1,f +15419,59443,0,2,f +15419,60176,0,14,f +15419,60483,72,1,f +15419,60918,0,1,f +15419,60934pat0001,0,2,f +15419,61053,0,2,f +15419,62386,0,2,f +15419,64262,57,1,f +15419,64272,0,2,f +15419,64276,0,2,f +15419,6536,1,2,f +15419,6553,71,4,f +15419,6558,1,3,f +15419,6587,28,2,f +15419,6632,71,3,f +15419,87083,72,4,f +15419,87825pat0002,0,2,f +15420,3009,335,50,f +15421,84599,71,1,f +15423,3626bpr0702,14,1,f +15423,88646,0,1,f +15423,90370pr0001,0,1,f +15423,90370pr0001,0,1,t +15423,90396,84,1,f +15423,970c00pr0171,5,1,f +15423,973pr1665c01,29,1,f +15425,606p33,2,2,f +15426,33051,10,1,f +15426,33172,25,1,f +15426,33183,10,1,f +15426,33207p01,15,1,f +15426,6176,5,1,f +15427,x946,0,2,f +15428,30153,46,1,t +15428,30153,46,1,f +15428,30153,33,1,t +15428,30153,36,1,t +15428,30153,36,1,f +15428,30153,33,1,f +15428,30238,0,1,f +15428,4738a,70,1,f +15428,4739a,70,1,f +15429,17485,14,2,f +15429,2421,0,1,f +15429,2446,15,1,f +15429,2447,40,1,t +15429,2447,40,1,f +15429,2460,72,1,f +15429,2479,0,1,f +15429,298c02,14,1,t +15429,298c02,14,2,f +15429,3004,272,2,f +15429,3010,272,1,f +15429,30157,72,2,f +15429,3020,15,2,f +15429,3021,71,1,f +15429,3023,272,1,f +15429,3024,33,4,f +15429,3024,33,1,t +15429,30361c,14,2,f +15429,30367c,14,2,f +15429,3040b,15,4,f +15429,3062b,72,2,f +15429,3460,15,1,f +15429,3626cpr0914,14,1,f +15429,3660,15,1,f +15429,4032a,14,4,f +15429,44661,15,1,f +15429,4488,71,1,f +15429,48336,71,1,f +15429,54200,272,1,t +15429,54200,272,2,f +15429,60470a,15,1,f +15429,6636,0,2,f +15429,970c00,272,1,f +15429,973pr1947bc01,272,1,f +15429,98138,46,2,f +15429,98138,46,1,t +15432,2343,1,1,f +15432,2357,19,4,f +15432,2420,73,8,f +15432,2420,72,10,f +15432,2431,73,11,f +15432,2432,19,2,f +15432,2445,0,1,f +15432,2449,19,4,f +15432,2458,71,2,f +15432,2554,0,2,f +15432,2564,0,1,f +15432,2566,0,1,f +15432,2817,0,1,f +15432,30000,71,1,f +15432,3001,19,1,f +15432,3001,71,4,f +15432,3001,0,1,f +15432,3002,19,2,f +15432,3002,320,2,f +15432,3003,0,4,f +15432,3004,0,2,f +15432,3004,19,12,f +15432,30044,320,3,f +15432,30046,134,3,f +15432,3007,0,2,f +15432,3008,0,1,f +15432,3008,19,2,f +15432,3009,0,2,f +15432,30099,19,6,f +15432,3010,19,5,f +15432,30103,0,1,f +15432,30104,0,1,f +15432,30126,72,1,t +15432,30126,72,1,f +15432,30136,19,4,f +15432,30152pat0001,0,1,f +15432,30154,72,1,f +15432,3020,14,2,f +15432,3020,70,4,f +15432,3021,0,3,f +15432,3022,19,4,f +15432,3023,72,14,f +15432,3023,73,16,f +15432,30237a,71,4,f +15432,3024,73,4,f +15432,3024,72,6,f +15432,3027,72,1,f +15432,3031,70,1,f +15432,3034,0,1,f +15432,30355,72,1,f +15432,30356,72,1,f +15432,30374,0,1,f +15432,30374,70,1,f +15432,3039,320,3,f +15432,3039,72,2,f +15432,3040b,19,4,f +15432,3040b,320,4,f +15432,3040b,72,8,f +15432,30414,72,2,f +15432,3044b,19,2,f +15432,3062b,19,12,f +15432,3062b,47,5,f +15432,3062b,320,46,f +15432,3062b,0,5,f +15432,3068b,73,8,f +15432,3068bp30,15,1,f +15432,3068bpr0131,15,1,f +15432,3069b,73,8,f +15432,3069bpr0055,15,1,f +15432,32013,0,1,f +15432,32073,71,1,f +15432,32123b,71,1,t +15432,32123b,71,4,f +15432,32324,71,1,f +15432,32530,0,2,f +15432,33009,4,1,f +15432,3455,19,2,f +15432,3460,320,3,f +15432,3581,19,2,f +15432,3622,19,12,f +15432,3623,320,7,f +15432,3623,73,18,f +15432,3626bpb0253,78,1,f +15432,3626bpr0427,78,1,f +15432,3659,320,1,f +15432,3660,19,2,f +15432,3665,19,4,f +15432,3666,320,4,f +15432,3673,71,2,f +15432,3673,71,1,t +15432,3700,0,9,f +15432,3705,0,2,f +15432,3710,0,9,f +15432,3710,73,5,f +15432,3710,70,2,f +15432,3710,320,2,f +15432,3710,72,3,f +15432,3747a,0,5,f +15432,3794a,0,4,f +15432,3795,70,1,f +15432,3830,71,2,f +15432,3831,71,2,f +15432,3832,19,2,f +15432,3832,72,2,f +15432,3846p45,71,2,f +15432,3846pb19,71,2,f +15432,3849,0,3,f +15432,3937,1,2,f +15432,3941,0,1,f +15432,3957a,19,4,f +15432,4070,0,2,f +15432,4085c,0,2,f +15432,40902,0,1,f +15432,4151,0,1,f +15432,41532,0,4,f +15432,41539,71,1,f +15432,41769,0,3,f +15432,41770,0,3,f +15432,4274,1,1,f +15432,4274,1,1,t +15432,43093,1,1,f +15432,4332,0,1,f +15432,43892,19,2,f +15432,43894,0,2,f +15432,4424,73,2,f +15432,44302a,0,3,f +15432,4460a,19,4,f +15432,4477,72,2,f +15432,4477,0,6,f +15432,4477,19,2,f +15432,4490,19,12,f +15432,4528,135,1,f +15432,4589,182,2,f +15432,4599a,0,1,f +15432,4623,0,4,f +15432,4740,334,4,f +15432,4740,47,4,f +15432,4740,0,2,f +15432,4790,70,1,f +15432,47980,0,1,f +15432,47981,72,2,f +15432,47986,0,1,f +15432,47988,72,1,f +15432,47994,0,4,f +15432,47996,0,2,f +15432,48002,0,4,f +15432,48005,0,1,f +15432,4865a,0,4,f +15432,6060,320,2,f +15432,6091,320,4,f +15432,6112,0,2,f +15432,6126a,41,1,f +15432,6134,71,2,f +15432,6141,60,1,t +15432,6141,15,1,t +15432,6141,57,1,f +15432,6141,57,1,t +15432,6141,15,4,f +15432,6141,320,4,f +15432,6141,320,1,t +15432,6141,60,4,f +15432,6182,19,2,f +15432,6231,0,2,f +15432,6628,0,1,f +15432,6636,0,3,f +15432,970c00,72,2,f +15432,973pb0400c01,72,2,f +15432,x1558px1,14,3,f +15433,2412b,0,2,f +15433,2458,72,1,f +15433,3002,4,2,f +15433,3020,0,1,f +15433,3021,25,1,f +15433,3034,0,1,f +15433,3039,4,1,f +15433,3040b,4,2,f +15433,30603,0,1,f +15433,3710,25,1,f +15433,3747b,4,1,f +15433,3795,25,2,f +15433,3937,4,1,f +15433,4081b,0,2,f +15433,43722,25,1,f +15433,43723,25,1,f +15433,6041,0,1,f +15433,6070,40,1,f +15433,6134,0,1,f +15433,6141,36,1,t +15433,6141,36,1,f +15433,6141,34,1,f +15433,6141,34,1,t +15435,2420,14,2,f +15435,2431,14,2,f +15435,2450,14,8,f +15435,2536,7,1,f +15435,2712,0,1,f +15435,2712,7,1,f +15435,2717,1,2,f +15435,2730,14,2,f +15435,2736,7,2,f +15435,2743,14,2,f +15435,2743,0,2,f +15435,2744,14,4,f +15435,2780,0,61,f +15435,2815,0,4,f +15435,2817,0,1,f +15435,2825,14,3,f +15435,2825,0,2,f +15435,2905,0,4,f +15435,3004,7,12,f +15435,3022,14,1,f +15435,3023,14,8,f +15435,3023,0,9,f +15435,3044c,4,2,f +15435,3048c,0,2,f +15435,3068b,0,1,f +15435,3069b,14,7,f +15435,3070b,14,9,f +15435,32000,0,1,f +15435,32001,0,2,f +15435,32002,8,6,f +15435,32005b,8,1,f +15435,32009,14,2,f +15435,32013,7,12,f +15435,32015,7,2,f +15435,32018,7,4,f +15435,32039,7,2,f +15435,32054,0,8,f +15435,32054,1,16,f +15435,32062,0,9,f +15435,3460,7,8,f +15435,3460,14,10,f +15435,3483,0,4,f +15435,3623,7,4,f +15435,3623,14,4,f +15435,3666,0,6,f +15435,3666,7,3,f +15435,3666,14,7,f +15435,3673,7,9,f +15435,3700,14,8,f +15435,3701,2,2,f +15435,3701,14,3,f +15435,3701,0,2,f +15435,3701,4,2,f +15435,3701,7,5,f +15435,3702,14,5,f +15435,3703,7,4,f +15435,3703,14,16,f +15435,3705,0,10,f +15435,3706,0,3,f +15435,3707,0,3,f +15435,3708,0,3,f +15435,3709,1,1,f +15435,3709,7,1,f +15435,3710,14,4,f +15435,3710,0,3,f +15435,3713,7,12,f +15435,3736,7,1,f +15435,3737,0,3,f +15435,3738,14,2,f +15435,3749,7,18,f +15435,3794a,1,4,f +15435,3832,14,1,f +15435,3894,14,6,f +15435,3895,14,2,f +15435,3933,0,1,f +15435,3934,0,1,f +15435,4019,7,1,f +15435,4032a,14,2,f +15435,4032a,0,2,f +15435,4150,0,4,f +15435,4162,7,2,f +15435,4162,14,2,f +15435,4185,14,4,f +15435,4265b,7,19,f +15435,4274,7,4,f +15435,4275b,0,2,f +15435,4282,0,6,f +15435,4287,0,2,f +15435,4460a,7,4,f +15435,4477,14,1,f +15435,4519,0,7,f +15435,4531,0,2,f +15435,4859,22,1,f +15435,6248,15,4,f +15435,6536,7,9,f +15435,6538b,7,14,f +15435,6541,14,4,f +15435,6553,7,2,f +15435,6558,0,14,f +15435,6585,1,1,f +15435,6587,8,4,f +15435,6589,7,7,f +15435,6628,0,1,f +15435,6629,0,8,f +15435,6632,14,2,f +15435,6632,0,4,f +15435,6636,7,3,f +15435,75535,14,6,f +15435,75c19,14,2,f +15435,8277stk01,9999,1,t +15435,85544,4,2,f +15437,3626cpr0994,78,1,f +15437,64803pr0001,28,1,f +15437,970c00,378,1,f +15437,973pr2015c01,378,1,f +15438,3149c01,4,2,f +15438,3324c01,4,1,f +15440,33021,25,2,f +15440,33022,4,2,f +15440,33023,1,2,f +15440,scalatote,4,1,f +15440,x10,14,1,f +15440,x1390c04,4,1,f +15440,x1401,25,1,f +15440,x1401,27,1,f +15440,x16,14,1,f +15441,11609,484,1,f +15441,3003,5,1,f +15441,3021,322,1,f +15441,3022,19,1,f +15441,3023,322,2,f +15441,3023,29,4,f +15441,30357,29,1,f +15441,3040b,288,4,f +15441,3069bpr0055,15,1,f +15441,33291,4,5,f +15441,3688,2,1,f +15441,3899,45,1,f +15441,4032a,70,1,f +15441,4032a,15,1,f +15441,4286,2,4,f +15441,59900,26,1,f +15441,6141,297,5,f +15442,12651,4,3,f +15442,13247,484,1,f +15442,15983,1,1,f +15442,16685,14,1,f +15442,18520,71,1,f +15442,18527,191,1,f +15442,19802,15,1,f +15442,20678,46,1,f +15442,20706,71,1,f +15442,21308,15,1,f +15442,2301,14,1,f +15442,24911,71,1,f +15442,31042,179,1,f +15442,3437,226,2,f +15442,3437,73,1,f +15442,3437,27,2,f +15442,4066,191,2,f +15442,40666,72,2,f +15442,40666,73,2,f +15442,40666,14,2,f +15442,47510pr0005,73,1,f +15442,51269,71,1,f +15442,6510,5,1,f +15442,75115pr0002,2,1,f +15442,75121,4,1,f +15442,76371pr0020,15,1,f +15442,92002,4,1,f +15442,93353,191,1,f +15442,98233,73,1,f +15444,2723,294,4,f +15444,3004,4,1,f +15444,3021,72,2,f +15444,3022,72,2,f +15444,32056,0,2,f +15444,32526,0,2,f +15444,3660,4,1,f +15444,3705,0,4,f +15444,3706,0,2,f +15444,3708,0,1,f +15444,3713,71,6,f +15444,3713,71,1,t +15444,3795,25,1,f +15444,40341,179,2,f +15444,42003,0,4,f +15444,43093,1,2,f +15444,43719,0,1,f +15444,43722,25,1,f +15444,43723,25,1,f +15444,44674,25,1,f +15444,45677,0,1,f +15444,47715,72,1,f +15444,50943,80,1,f +15444,50948,0,1,f +15444,50950,0,2,f +15444,6141,72,1,t +15444,6141,4,1,t +15444,6141,72,2,f +15444,6141,4,2,f +15444,6538b,0,3,f +15444,6558,0,2,f +15444,6579,0,4,f +15444,6580,71,4,f +15448,20596pr0001,28,1,f +15448,3626cpr1735,71,1,f +15448,87997pr0003,15,2,f +15448,88646,0,1,f +15448,970c00pr0917,15,1,f +15448,973pr3120c01,288,1,f +15450,14728c100,0,1,f +15450,2420,0,2,f +15450,2711,14,4,f +15450,2730,0,2,f +15450,2780,0,18,f +15450,2825,7,15,f +15450,2856c01,7,1,f +15450,2857,0,4,f +15450,2900,8,16,f +15450,3022,0,4,f +15450,3023,14,3,f +15450,3023,0,11,f +15450,3024,14,2,f +15450,3069b,7,2,f +15450,3460,0,2,f +15450,3647,7,3,f +15450,3648a,7,2,f +15450,3650c,7,2,f +15450,3651,7,4,f +15450,3666,14,2,f +15450,3666,0,2,f +15450,3673,7,7,f +15450,3700,0,8,f +15450,3700,14,4,f +15450,3701,0,8,f +15450,3701,14,2,f +15450,3702,0,2,f +15450,3702,14,4,f +15450,3703,14,4,f +15450,3703,0,2,f +15450,3704,0,2,f +15450,3705,0,6,f +15450,3706,0,4,f +15450,3707,0,6,f +15450,3708,0,3,f +15450,3709,0,3,f +15450,3709,14,2,f +15450,3710,0,8,f +15450,3710,14,8,f +15450,3713,7,12,f +15450,3737,0,4,f +15450,3738,14,4,f +15450,3743,7,1,f +15450,3749,7,12,f +15450,3795,14,2,f +15450,3894,14,2,f +15450,3894,0,4,f +15450,3895,0,2,f +15450,3895,14,2,f +15450,3941,46,1,f +15450,4019,7,2,f +15450,4032a,7,1,f +15450,4143,7,3,f +15450,4150,7,1,f +15450,4185,7,4,f +15450,4261,7,2,f +15450,4263,7,2,f +15450,4265a,7,25,f +15450,4266,15,4,f +15450,4274,7,12,f +15450,4442,7,3,f +15450,4519,0,4,f +15450,4716,0,2,f +15450,70496,0,1,f +15450,71509,0,1,t +15450,71509,0,2,f +15450,75c05,8,1,f +15450,75c06,8,1,f +15450,75c14,8,2,f +15450,flex08c07l,7,2,f +15450,flex08c09l,7,1,f +15450,flex08c11l,7,4,f +15450,flex08c13l,7,1,f +15450,flex08c19l,7,2,f +15453,3005,15,1,f +15453,3020,15,4,f +15453,3021,15,4,f +15453,3021,4,1,f +15453,3022,47,2,f +15453,3022,15,6,f +15453,3023,47,5,f +15453,3023,15,19,f +15453,3024,15,1,f +15453,3034,4,2,f +15453,3034,15,4,f +15453,3040b,15,2,f +15453,3139,0,3,f +15453,3464,4,3,f +15453,3480,7,2,f +15453,3481,4,2,f +15453,3665,15,2,f +15453,3666,15,2,f +15453,3710,4,2,f +15453,3710,15,3,f +15453,3794a,4,1,f +15453,3794a,15,5,f +15453,3795,15,2,f +15453,3832,15,1,f +15453,8,15,3,f +15455,2357,19,14,f +15455,2420,71,18,f +15455,2420,0,8,f +15455,2456,19,4,f +15455,2465,19,4,f +15455,3001,19,6,f +15455,3003,19,5,f +15455,3003,70,12,f +15455,30044,70,3,f +15455,3020,70,2,f +15455,3023,14,3,f +15455,3023,2,3,f +15455,3023,4,3,f +15455,3023,182,2,f +15455,3023,70,9,f +15455,3023,1,3,f +15455,30238,1,1,f +15455,30238,4,1,f +15455,3031,0,1,f +15455,3031,2,4,f +15455,3040b,19,4,f +15455,3062b,0,16,f +15455,3068b,70,29,f +15455,3068b,320,1,f +15455,3068bpr0142,15,1,f +15455,3068bpr0143,15,1,f +15455,3068bpr0179,19,1,f +15455,3068bpr0180,71,1,f +15455,3068bpr0181,15,1,f +15455,3068bpr0182,72,2,f +15455,3069b,70,7,f +15455,33320,14,1,f +15455,33320,2,1,f +15455,3455,19,1,f +15455,3460,72,1,f +15455,3626b,47,4,f +15455,3659,71,8,f +15455,3705,0,1,f +15455,3794b,72,2,f +15455,3794b,71,2,f +15455,3832,2,8,f +15455,3941,47,1,f +15455,3942c,378,5,f +15455,3943b,378,1,f +15455,3958,72,19,f +15455,3958,19,1,f +15455,4006,0,1,f +15455,4162,71,2,f +15455,44375a,71,1,f +15455,4495b,4,1,f +15455,4495b,14,1,f +15455,4495b,2,1,f +15455,4495b,1,1,f +15455,4865a,19,10,f +15455,59900,46,1,f +15455,59900,36,1,f +15455,59900,33,1,f +15455,59900,34,1,f +15455,59900,378,1,t +15455,59900,378,10,f +15455,6141,1,3,f +15455,6141,4,1,t +15455,6141,4,3,f +15455,6141,2,3,f +15455,6141,2,1,t +15455,6141,14,1,t +15455,6141,1,1,t +15455,6141,14,3,f +15455,6251,308,1,f +15455,6259,19,2,f +15455,63965,70,4,f +15455,64776pat0001,0,1,f +15455,6636,71,2,f +15455,6881b,71,1,f +15455,85863pr0043,4,1,f +15455,85863pr0044,2,1,f +15455,85863pr0045,14,1,f +15455,85863pr0046,1,1,f +15455,85863pr0047,320,1,f +15455,85863pr0048,72,1,f +15455,85863pr0049,72,1,f +15455,85863pr0050,72,1,f +15455,85863pr0051,72,1,f +15455,87087,19,2,f +15455,87580,2,1,f +15455,87580,71,12,f +15455,87580,1,1,f +15455,87580,4,1,f +15455,87580,72,12,f +15455,87580,14,1,f +15455,90498,72,4,f +15455,91501,19,8,f +15458,2339,71,2,f +15458,2357,71,4,f +15458,2417,288,2,f +15458,2445,72,1,f +15458,2446,297,1,f +15458,2454a,71,4,f +15458,2456,71,1,f +15458,2540,72,2,f +15458,2570,70,2,f +15458,2587pr0021,297,1,f +15458,2594,82,1,f +15458,2654,0,1,f +15458,3001,71,3,f +15458,3002,70,1,f +15458,3003,71,1,f +15458,3004,71,6,f +15458,3005,71,8,f +15458,3008,71,2,f +15458,3010,71,4,f +15458,30136,72,8,f +15458,30137,72,2,f +15458,30176,2,2,f +15458,3020,70,1,f +15458,3020,72,4,f +15458,3023,72,5,f +15458,30274,71,1,f +15458,3028,70,1,f +15458,3028,72,3,f +15458,3029,1,1,f +15458,3030,70,1,f +15458,3031,70,1,f +15458,3032,72,1,f +15458,3033,288,3,f +15458,30381,0,1,f +15458,3039,272,3,f +15458,3040b,0,2,f +15458,3040b,71,14,f +15458,3045,272,2,f +15458,3048c,297,2,f +15458,30526,71,2,f +15458,30553,72,2,f +15458,32000,72,4,f +15458,32034,0,2,f +15458,32039,0,1,f +15458,32073,71,1,f +15458,3245b,71,2,f +15458,32530,72,1,f +15458,3307,71,4,f +15458,3308,71,1,f +15458,33322,297,1,f +15458,33322,297,1,t +15458,3622,71,2,f +15458,3626bpr0494,15,2,f +15458,3626bpr0496,0,1,f +15458,3626bpr0499,14,1,f +15458,3626bpr0567,14,1,f +15458,3626bpr0579,14,1,f +15458,3626bpr0580,14,1,f +15458,3659,71,10,f +15458,3660,0,4,f +15458,3660,71,15,f +15458,3665,71,10,f +15458,3666,272,4,f +15458,3673,71,2,f +15458,3673,71,1,t +15458,3678b,72,2,f +15458,3678bpr0005,1,1,f +15458,3679,71,1,f +15458,3680,0,1,f +15458,3700,0,3,f +15458,3701,72,1,f +15458,3706,0,1,f +15458,3710,272,3,f +15458,3713,4,1,t +15458,3713,4,1,f +15458,3749,19,1,f +15458,3794a,0,6,f +15458,3795,72,1,f +15458,3844,80,1,f +15458,3846pr24,71,1,f +15458,3847,135,1,f +15458,3848,70,2,f +15458,4019,71,1,f +15458,4070,71,18,f +15458,4274,1,2,f +15458,4274,1,1,t +15458,4286,71,8,f +15458,4286,70,2,f +15458,4286,0,4,f +15458,43899,71,2,f +15458,44567a,71,2,f +15458,4460b,71,6,f +15458,4477,70,1,f +15458,4495b,297,2,f +15458,4497,0,1,f +15458,4589,272,3,f +15458,48336,71,2,f +15458,48723,70,1,f +15458,48729a,72,1,t +15458,48729a,72,2,f +15458,50231,0,1,f +15458,54200,72,2,t +15458,54200,72,12,f +15458,59,334,1,f +15458,59228,15,1,f +15458,59229,72,1,f +15458,59230,0,1,t +15458,59230,15,1,t +15458,59230,0,2,f +15458,59230,15,4,f +15458,59231pr0001,72,1,f +15458,59232,179,1,f +15458,59900,4,3,f +15458,60115,15,2,f +15458,60115,0,1,f +15458,60169,72,2,f +15458,6066,71,2,f +15458,6082,72,2,f +15458,6112,71,2,f +15458,61184,71,3,f +15458,6126a,57,2,f +15458,6141,72,1,t +15458,6141,72,2,f +15458,61485,0,2,f +15458,61780,70,1,f +15458,62537pr0001,4,1,f +15458,6266,15,4,f +15458,6266,0,2,f +15458,63868,71,2,f +15458,63965,0,1,f +15458,64647,272,1,f +15458,64807,70,1,f +15458,6585,0,1,f +15458,6587,72,1,f +15458,6589,19,2,f +15458,6636,70,2,f +15458,970c00pr0125,297,1,f +15458,970d08,1,1,f +15458,970x026,71,1,f +15458,973pr1321c01,72,1,f +15458,973pr1379c01,4,1,f +15458,973pr1471c01,297,1,f +15458,973pr1472c01,1,1,f +15460,45464,52,1,f +15460,clikits006pb03,15,1,f +15460,clikits037,22,1,f +15460,clikits078,22,1,f +15462,11602pr0001b,15,1,f +15462,3022,27,1,f +15462,87580,322,1,f +15463,10201,71,1,f +15463,11458,72,1,f +15463,11477,0,1,f +15463,11477,71,2,f +15463,14137,0,4,f +15463,2412b,179,15,f +15463,2420,0,1,f +15463,2432,72,1,f +15463,2450,379,2,f +15463,2780,0,8,f +15463,30153,45,2,f +15463,3020,72,3,f +15463,3022,71,2,f +15463,3023,71,3,f +15463,30374,35,2,f +15463,30374,71,1,f +15463,30374,41,2,f +15463,3062b,0,2,f +15463,32000,72,1,f +15463,32000,71,2,f +15463,32062,0,4,f +15463,32064b,72,4,f +15463,32123b,71,1,t +15463,32123b,71,8,f +15463,32140,0,2,f +15463,32271,72,4,f +15463,3622,71,1,f +15463,3626cpr0926,78,1,f +15463,3666,71,4,f +15463,3708,0,2,f +15463,3710,72,2,f +15463,3713,71,4,f +15463,3713,71,1,t +15463,3737,0,1,f +15463,3794b,72,4,f +15463,3839b,71,2,f +15463,41854,72,12,f +15463,4274,1,1,t +15463,4274,71,22,f +15463,4274,1,2,f +15463,4274,71,1,t +15463,43093,1,4,f +15463,48336,71,12,f +15463,50923,72,4,f +15463,54200,379,16,f +15463,58247,0,1,f +15463,59900,182,3,f +15463,60470a,0,13,f +15463,60481,0,1,f +15463,60897,0,2,f +15463,61184,71,1,f +15463,61409,0,2,f +15463,6141,0,12,f +15463,6141,0,1,t +15463,62462,0,4,f +15463,63965,0,2,f +15463,64567,71,2,f +15463,64567,80,1,t +15463,64567,71,1,t +15463,64567,80,4,f +15463,6536,0,2,f +15463,6541,71,2,f +15463,87083,72,1,f +15463,87566pr02,72,1,f +15463,87567pr02,72,1,f +15463,87568pr02l,72,2,f +15463,87568pr02r,72,2,f +15463,87569pr02,15,2,f +15463,88517,47,1,f +15463,93273,72,1,f +15463,93274,0,2,f +15463,93571,0,4,f +15463,93606,72,1,f +15463,970c00pr0576,28,1,f +15463,973pr0290c01,19,1,f +15463,98138pr0021,45,1,t +15463,98138pr0021,45,1,f +15463,98347,148,8,f +15463,99021,72,2,f +15463,99207,71,2,f +15463,99780,0,3,f +15463,99781,71,2,f +15463,99930,484,1,f +15465,2555,7,1,f +15465,2823,0,2,f +15465,30162,8,1,f +15465,30172,15,1,f +15465,30193,8,1,f +15465,30193,8,1,t +15465,3024,46,1,f +15465,3032,6,1,f +15465,30390b,7,1,f +15465,3626bpa1,14,1,f +15465,3633,4,2,f +15465,3710,0,1,f +15465,4070,0,2,f +15465,4083,0,1,f +15465,4274,7,1,f +15465,4274,7,1,t +15465,4617b,6,1,f +15465,4623,4,1,f +15465,4733,7,1,f +15465,6141,8,1,t +15465,6141,8,8,f +15465,970c00,0,1,f +15465,973px184c01,8,1,f +15466,2413,15,2,f +15466,2420,72,2,f +15466,2431,15,1,f +15466,2431,72,1,f +15466,2437,40,1,f +15466,3003,0,1,f +15466,3005,72,1,f +15466,3010,15,2,f +15466,3020,15,3,f +15466,3020,4,1,f +15466,3021,71,1,f +15466,3021,72,4,f +15466,3022,71,1,f +15466,3023,0,5,f +15466,3024,72,2,f +15466,3024,15,1,f +15466,3039pc5,71,1,f +15466,3040b,15,2,f +15466,3068b,4,1,f +15466,3070b,4,1,t +15466,3070b,14,1,f +15466,3070b,4,1,f +15466,3070b,15,1,t +15466,3070b,14,1,t +15466,3070b,15,3,f +15466,3460,71,1,f +15466,3623,72,3,f +15466,3666,72,1,f +15466,3679,7,2,f +15466,3680,15,2,f +15466,3710,15,3,f +15466,3710,72,1,f +15466,3794a,15,1,f +15466,3795,71,2,f +15466,3937,71,1,f +15466,4079,6,3,f +15466,4162,72,1,f +15466,41769,15,4,f +15466,41770,15,4,f +15466,4282,71,1,f +15466,44301a,15,2,f +15466,44302a,15,2,f +15466,4449,73,1,f +15466,4449,0,1,f +15466,44571,15,4,f +15466,4477,15,1,f +15466,4477,72,1,f +15466,44822,15,4,f +15466,4854,71,2,f +15466,4855,71,2,f +15466,4856a,72,2,f +15466,4858,15,1,f +15466,4859,15,1,f +15466,4859,72,1,f +15466,4861,15,1,f +15466,4862,40,12,f +15466,4863,15,6,f +15466,4865a,15,2,f +15466,4865a,4,2,f +15466,4867,15,1,f +15466,4868b,15,2,f +15466,4869,71,2,f +15466,4870c02,71,3,f +15466,4871,71,1,f +15466,6134,0,1,f +15466,6141,47,1,f +15466,6141,47,1,t +15466,6141,34,1,t +15466,6141,15,1,t +15466,6141,36,1,t +15466,6141,36,1,f +15466,6141,15,2,f +15466,6141,34,1,f +15466,6636,15,2,f +15466,73983,72,4,f +15467,14728c125,0,1,f +15467,2335,2,8,f +15467,2335p30,15,1,f +15467,2339,15,4,f +15467,2339,0,4,f +15467,2343,14,1,f +15467,2357,1,2,f +15467,2357,4,2,f +15467,2357,7,2,f +15467,2357,0,12,f +15467,2357,15,2,f +15467,2420,15,4,f +15467,2420,0,6,f +15467,2420,7,2,f +15467,2431,7,19,f +15467,2431,0,6,f +15467,2432,0,2,f +15467,2452,0,3,f +15467,2460,7,1,f +15467,2465,0,1,f +15467,2479,0,1,f +15467,2489,6,1,f +15467,2525p31,15,2,f +15467,2526,6,1,f +15467,2527,4,4,f +15467,2528pb01,0,2,f +15467,2529,14,2,f +15467,2530,8,8,f +15467,2530,8,1,t +15467,2537a,0,2,f +15467,2538b,0,4,f +15467,2539,8,2,f +15467,2540,0,9,f +15467,2540,7,1,f +15467,2540,15,3,f +15467,2541,6,4,f +15467,2542,6,2,f +15467,2543,1,3,f +15467,2543,4,2,f +15467,2544,6,1,f +15467,2544,0,2,f +15467,2546p01,4,1,f +15467,2547,8,1,f +15467,2548,8,1,f +15467,2550c01,6,1,f +15467,2551,6,1,f +15467,2555,0,2,f +15467,2555,7,1,f +15467,2557c02,6,1,f +15467,2559c02,6,1,f +15467,2560,6,3,f +15467,2561,6,5,f +15467,2562,6,1,t +15467,2562,6,4,f +15467,2564,0,1,f +15467,2566,1,2,f +15467,3001,1,3,f +15467,3001,0,9,f +15467,3002,0,4,f +15467,3003,0,14,f +15467,3004,15,4,f +15467,3004,1,1,f +15467,3004,4,8,f +15467,3004,7,2,f +15467,3004,0,28,f +15467,3005,0,22,f +15467,3005,15,2,f +15467,3005,1,2,f +15467,3005,4,2,f +15467,3008,0,2,f +15467,3008,4,5,f +15467,3008,1,3,f +15467,3009,0,1,f +15467,3010,4,4,f +15467,3010,7,10,f +15467,3010,0,3,f +15467,3020,7,3,f +15467,3020,4,9,f +15467,3020,0,2,f +15467,3021,0,8,f +15467,3022,15,2,f +15467,3022,7,3,f +15467,3022,0,2,f +15467,3023,7,8,f +15467,3023,0,4,f +15467,3023,4,5,f +15467,3023,15,8,f +15467,3024,7,6,f +15467,3024,0,7,f +15467,3024,15,2,f +15467,3024,4,1,f +15467,3029,7,1,f +15467,3030,7,1,f +15467,3031,1,1,f +15467,3034,0,1,f +15467,3034,7,5,f +15467,3035,7,1,f +15467,3036,7,1,f +15467,3037,0,1,f +15467,3038,15,2,f +15467,3038,0,2,f +15467,3039,0,6,f +15467,3040b,4,4,f +15467,3040b,15,4,f +15467,3040b,0,10,f +15467,3043,0,1,f +15467,3048c,4,2,f +15467,3062b,7,28,f +15467,3062b,0,4,f +15467,3068bp30,15,1,f +15467,3069b,14,8,f +15467,3069b,7,8,f +15467,3127,7,1,f +15467,3176,4,1,f +15467,3184,0,14,f +15467,3403,0,4,f +15467,3404,0,1,f +15467,3460,0,22,f +15467,3460,15,2,f +15467,3460,7,1,f +15467,3460,4,1,f +15467,3622,0,8,f +15467,3622,7,12,f +15467,3622,4,2,f +15467,3623,15,4,f +15467,3623,7,1,f +15467,3623,4,1,f +15467,3623,0,14,f +15467,3626b,0,1,f +15467,3626bp35,14,3,f +15467,3626bp40,14,1,f +15467,3626bp43,14,1,f +15467,3626bp47,14,1,f +15467,3626bp48,14,1,f +15467,3626bp49,14,2,f +15467,3659,4,2,f +15467,3659,0,13,f +15467,3659,7,2,f +15467,3660,0,2,f +15467,3665,0,16,f +15467,3666,0,6,f +15467,3666,7,3,f +15467,3666,15,2,f +15467,3684,0,2,f +15467,3700,0,1,f +15467,3710,0,10,f +15467,3710,4,4,f +15467,3710,7,2,f +15467,3710,15,6,f +15467,3747a,0,3,f +15467,3747a,4,2,f +15467,3747a,15,2,f +15467,3794a,4,2,f +15467,3794a,0,6,f +15467,3795,7,1,f +15467,3795,0,4,f +15467,3795,4,5,f +15467,3830,0,4,f +15467,3831,0,4,f +15467,3832,0,1,f +15467,3832,7,5,f +15467,3849,0,2,f +15467,3853,15,1,f +15467,3861b,15,2,f +15467,3933,0,1,f +15467,3933,15,1,f +15467,3933,7,1,f +15467,3934,0,1,f +15467,3934,15,1,f +15467,3934,7,1,f +15467,3935,7,1,f +15467,3936,7,1,f +15467,3957a,7,4,f +15467,3957a,0,1,f +15467,4032a,1,2,f +15467,4032a,6,1,f +15467,4070,4,2,f +15467,4081b,0,4,f +15467,4083,0,1,f +15467,4085c,7,8,f +15467,4085c,0,10,f +15467,4088,15,1,f +15467,4162,7,9,f +15467,4213,7,2,f +15467,4215ap30,15,1,f +15467,4276b,0,3,f +15467,4282,7,2,f +15467,4286,15,6,f +15467,4286,4,1,f +15467,4286,0,8,f +15467,4287,0,2,f +15467,4287,15,2,f +15467,4345b,7,1,f +15467,4346,0,1,f +15467,4445,0,2,f +15467,4477,15,1,f +15467,4477,0,25,f +15467,4477,7,2,f +15467,4490,0,4,f +15467,4504,0,3,f +15467,4589,0,1,f +15467,4589,46,2,f +15467,4589,1,2,f +15467,4589,15,6,f +15467,4590,0,1,f +15467,4623,0,12,f +15467,4625,7,2,f +15467,4735,0,2,f +15467,4738a,6,1,f +15467,4739a,6,1,f +15467,4790,6,1,f +15467,4844,0,2,f +15467,4854,0,1,f +15467,4864a,4,2,f +15467,4864a,0,2,f +15467,4865a,0,16,f +15467,56823c50,0,1,f +15467,57503,334,2,f +15467,57504,334,2,f +15467,57505,334,2,f +15467,57506,334,2,f +15467,6019,7,2,f +15467,6019,0,9,f +15467,6020,6,1,f +15467,6067,0,1,f +15467,6091,15,10,f +15467,6091,0,4,f +15467,6104,15,1,f +15467,6141,1,1,t +15467,6141,1,4,f +15467,6141,46,1,t +15467,6141,46,4,f +15467,70001pb02,0,1,f +15467,73037,7,1,f +15467,73590c01a,0,5,f +15467,84943,8,4,f +15467,970c00,1,3,f +15467,970c00,7,1,f +15467,970c00,0,1,f +15467,970c00,15,3,f +15467,970d01,0,1,f +15467,973c09,15,1,f +15467,973p31c01,14,1,f +15467,973p32c01,14,2,f +15467,973p33c01,14,1,f +15467,973p34c01,1,2,f +15467,973p36c01,0,1,f +15467,973p38c01,15,1,f +15467,973p3bc01,15,1,f +15467,sailbb06,15,1,f +15467,sailbb07,15,2,f +15467,sailbb15,15,2,f +15467,sailbb31,15,1,f +15468,3651,7,75,f +15469,10247,72,4,f +15469,10247,71,6,f +15469,11153,70,1,f +15469,11458,72,5,f +15469,12825,0,1,f +15469,13196pr0001,321,1,f +15469,13198pr0001,308,1,f +15469,13971,71,8,f +15469,14187pr0001,484,2,f +15469,14498,9999,1,t +15469,2343,47,1,f +15469,2357,70,16,f +15469,2357,19,1,f +15469,2412b,0,10,f +15469,2412b,72,5,f +15469,2419,72,2,f +15469,2419,28,3,f +15469,2431,70,4,f +15469,2431,71,2,f +15469,2540,72,2,f +15469,2780,0,35,f +15469,2780,0,4,t +15469,2817,4,3,f +15469,3001,70,3,f +15469,3001,19,2,f +15469,3002,19,4,f +15469,3003,71,1,f +15469,3003,70,2,f +15469,30031,72,1,f +15469,30055,0,3,f +15469,3008,19,3,f +15469,3009,28,3,f +15469,3010,19,6,f +15469,30136,70,23,f +15469,3020,72,8,f +15469,3020,70,6,f +15469,3020,0,1,f +15469,3020,28,1,f +15469,3021,71,8,f +15469,3021,72,10,f +15469,3023,0,11,f +15469,3023,70,3,f +15469,30237b,71,2,f +15469,3024,19,5,f +15469,3024,19,1,t +15469,3030,70,2,f +15469,3030,72,1,f +15469,3031,70,1,f +15469,3031,71,1,f +15469,3032,0,1,f +15469,3033,72,6,f +15469,3034,71,4,f +15469,3034,70,5,f +15469,3034,72,5,f +15469,30350b,70,22,f +15469,30357,70,2,f +15469,3036,28,2,f +15469,30361dps1,15,1,f +15469,30362,15,2,f +15469,30363,70,2,f +15469,30367cpr0006,71,1,f +15469,3039,19,6,f +15469,3040b,28,2,f +15469,3040b,70,2,f +15469,30414,0,4,f +15469,30565,28,2,f +15469,3062b,36,4,f +15469,3062b,70,10,f +15469,3068b,320,4,f +15469,3068b,288,4,f +15469,3068b,70,19,f +15469,3068b,28,2,f +15469,3068bpr0166,71,1,f +15469,3069b,28,6,f +15469,32013,0,12,f +15469,32016,0,4,f +15469,32028,0,10,f +15469,32062,4,5,f +15469,3245c,19,2,f +15469,32532,71,3,f +15469,3298,71,1,f +15469,33057,484,1,f +15469,3460,71,3,f +15469,3460,70,5,f +15469,3622,19,2,f +15469,3623,72,14,f +15469,3626cpr0655,78,1,f +15469,3626cpr1231,84,1,f +15469,3660,72,1,f +15469,3665,71,2,f +15469,3665,72,2,f +15469,3666,0,10,f +15469,3673,71,1,t +15469,3673,71,6,f +15469,3679,71,2,f +15469,3680,0,2,f +15469,3700,72,6,f +15469,3701,0,1,f +15469,3702,0,2,f +15469,3705,0,2,f +15469,3710,71,3,f +15469,3710,0,7,f +15469,3710,70,3,f +15469,3738,0,2,f +15469,3794a,72,2,f +15469,3794a,70,2,f +15469,3795,28,18,f +15469,3894,71,1,f +15469,3895,72,4,f +15469,3899,47,1,f +15469,3957b,0,2,f +15469,3957b,0,1,t +15469,4032a,70,3,f +15469,4032a,0,4,f +15469,4151b,28,1,f +15469,4162,70,15,f +15469,4162,71,2,f +15469,4162,72,4,f +15469,41678,0,1,f +15469,41769,70,2,f +15469,41770,70,2,f +15469,41879a,321,1,f +15469,42023,72,2,f +15469,42446,71,1,f +15469,42446,71,1,t +15469,4274,1,1,t +15469,4274,71,2,f +15469,4274,71,1,t +15469,4274,1,16,f +15469,4282,71,1,f +15469,4286,70,36,f +15469,4287,0,2,f +15469,43093,1,4,f +15469,43708,70,2,f +15469,44294,71,4,f +15469,4460b,19,2,f +15469,4477,72,4,f +15469,4477,0,2,f +15469,4477,70,2,f +15469,4497,148,1,f +15469,4519,71,8,f +15469,4528,0,1,f +15469,4529,0,1,f +15469,4595,0,1,f +15469,47397,70,4,f +15469,47398,70,4,f +15469,47457,72,14,f +15469,48729b,72,1,t +15469,48729b,72,2,f +15469,53454,148,1,f +15469,53454,148,1,t +15469,53585,0,2,f +15469,54200,0,1,t +15469,54200,72,9,f +15469,54200,72,1,t +15469,54200,0,1,f +15469,54383,28,1,f +15469,54384,28,1,f +15469,58247,0,1,f +15469,59426,72,2,f +15469,59443,0,6,f +15469,59900,0,3,f +15469,60169,72,1,f +15469,60475a,71,1,f +15469,60483,72,1,f +15469,60596,72,1,f +15469,60621,308,1,f +15469,6091,70,2,f +15469,6091,0,9,f +15469,6108,19,1,f +15469,61184,71,2,f +15469,6141,72,15,f +15469,6141,297,1,t +15469,6141,72,3,t +15469,6141,297,7,f +15469,6141,182,1,t +15469,6141,182,4,f +15469,61780,72,1,f +15469,6191,70,8,f +15469,6232,19,2,f +15469,6254,321,1,f +15469,6266,0,1,t +15469,6266,0,6,f +15469,63868,72,7,f +15469,63965,72,6,f +15469,63965,72,2,t +15469,64648,179,1,f +15469,6558,1,6,f +15469,6587,28,3,f +15469,6628,0,8,f +15469,6632,0,1,f +15469,6636,70,2,f +15469,6636,28,5,f +15469,73983,0,2,f +15469,75839,19,1,f +15469,75937,0,1,f +15469,75c28,70,1,t +15469,75c28,70,1,f +15469,84943,148,1,f +15469,85984,0,1,f +15469,87079,71,2,f +15469,87079,70,10,f +15469,87580,0,4,f +15469,90258,72,2,f +15469,91988,70,6,f +15469,92950,19,5,f +15469,93571,0,2,f +15469,95228,40,1,f +15469,96874,25,1,t +15469,970c00,308,1,f +15469,970c00,19,1,f +15469,970c00pr0521,78,1,f +15469,973c61,321,1,f +15469,973pr2397c01,70,1,f +15469,973pr2398c01,78,1,f +15469,973pr2399c01,308,1,f +15469,98109pr01c01,326,1,f +15469,98112pr01,326,1,f +15469,98285,71,11,f +15469,98286,71,11,f +15469,98560,28,6,f +15469,99781,71,4,f +15470,10178pr0001a,42,1,f +15470,10178pr0002,52,1,f +15470,10178pr0003,57,1,f +15470,10178pr0004,36,1,f +15470,10178pr0006,34,1,f +15470,10178pr0007,41,1,f +15470,10197,72,6,f +15470,10288,308,6,f +15470,10301pr0001,308,2,f +15470,10304pr0001,0,1,f +15470,10677pr0001,308,3,f +15470,11153,378,6,f +15470,12825,72,1,f +15470,12825,71,2,f +15470,13731,378,4,f +15470,2339,72,8,f +15470,2357,71,5,f +15470,2362b,71,9,f +15470,2412b,72,4,f +15470,2412b,70,1,f +15470,2419,0,2,f +15470,2420,71,13,f +15470,2431,320,2,f +15470,2432,70,1,f +15470,2449,4,2,f +15470,2453a,71,2,f +15470,2454a,71,2,f +15470,2454a,70,1,f +15470,2458,72,11,f +15470,2460,71,1,f +15470,2462,71,13,f +15470,2476a,28,1,f +15470,2780,0,4,f +15470,2780,0,2,t +15470,3001,72,2,f +15470,3002,72,5,f +15470,3003,72,12,f +15470,30044,70,17,f +15470,30045,0,10,f +15470,3005,71,13,f +15470,3007,71,2,f +15470,3009,72,3,f +15470,3009,320,2,f +15470,30099,72,2,f +15470,3010,378,1,f +15470,30103,0,2,f +15470,30132,72,1,f +15470,30132,72,1,t +15470,30134,70,1,f +15470,30136,308,6,f +15470,30136,72,62,f +15470,30145,71,7,f +15470,30153,34,1,f +15470,30153,36,1,f +15470,30153,46,1,f +15470,30153,33,1,f +15470,30153,47,1,f +15470,30162,72,2,f +15470,30163,0,1,f +15470,3020,28,14,f +15470,3020,71,2,f +15470,3022,0,2,f +15470,3022,72,5,f +15470,3023,28,1,f +15470,3023,378,1,f +15470,3023,70,9,f +15470,3023,320,2,f +15470,3023,36,2,f +15470,3023,484,1,f +15470,30238,1000,1,f +15470,3024,72,2,f +15470,30246,71,1,f +15470,3032,71,1,f +15470,3032,70,1,f +15470,3034,72,1,f +15470,3034,71,3,f +15470,3035,72,2,f +15470,30367b,71,2,f +15470,30374,71,6,f +15470,30374,70,1,f +15470,3039,71,9,f +15470,3039,72,2,f +15470,3040b,71,12,f +15470,3045,4,2,f +15470,30503,70,3,f +15470,30503,72,2,f +15470,30565,28,3,f +15470,3062b,36,1,f +15470,3062b,15,2,f +15470,3068b,320,2,f +15470,3068bpr0139a,19,1,f +15470,3069b,19,2,f +15470,3069b,71,13,f +15470,3070b,70,1,t +15470,3070b,15,6,f +15470,3070b,15,1,t +15470,3070b,70,3,f +15470,32013,0,1,f +15470,32018,72,1,f +15470,32054,0,1,f +15470,32062,4,7,f +15470,32064a,72,2,f +15470,32291,0,2,f +15470,32316,72,2,f +15470,32523,71,1,f +15470,32524,71,1,f +15470,32556,19,1,f +15470,3298,0,4,f +15470,33061,34,1,f +15470,33211,70,2,f +15470,33215,0,2,f +15470,33320,2,1,f +15470,3622,71,4,f +15470,3623,19,2,f +15470,3626bpr1031,70,2,f +15470,3626cpr1014,14,1,f +15470,3626cpr1015,1000,1,f +15470,3626cpr1033,14,1,f +15470,3626cpr1037,1000,1,f +15470,3659,71,15,f +15470,3660,72,8,f +15470,3665,72,12,f +15470,3673,71,1,t +15470,3673,71,4,f +15470,3678bpr0033,320,1,f +15470,3700,71,24,f +15470,3701,72,2,f +15470,3703,0,2,f +15470,3710,70,12,f +15470,3713,4,1,f +15470,3713,4,1,t +15470,3737,0,1,f +15470,3749,19,3,f +15470,3795,70,2,f +15470,3829c01,0,1,f +15470,3830,72,2,f +15470,3831,72,2,f +15470,3937,0,1,f +15470,3941,72,4,f +15470,3941,71,8,f +15470,3942c,0,9,f +15470,3943b,0,1,f +15470,3960pr0012,1000,1,f +15470,40234,1000,1,f +15470,40243,72,8,f +15470,40244,19,1,f +15470,4032a,4,2,f +15470,40490,72,1,f +15470,40620,71,2,f +15470,41334,72,1,f +15470,4162,72,2,f +15470,4185,71,2,f +15470,42448,0,2,f +15470,42450,0,1,f +15470,4274,71,3,t +15470,4274,71,10,f +15470,43093,1,1,f +15470,43121,0,1,f +15470,43337,40,1,f +15470,4341,0,1,f +15470,4460b,72,4,f +15470,4519,71,6,f +15470,4623,71,5,f +15470,4738a,70,1,f +15470,4739a,70,1,f +15470,4740pr0001a,4,1,f +15470,47759,70,1,f +15470,47847,72,1,f +15470,4865a,71,2,f +15470,48723,70,1,f +15470,48729b,0,1,t +15470,48729b,72,1,f +15470,48729b,0,1,f +15470,48729b,72,1,t +15470,50943,71,1,f +15470,50950,72,2,f +15470,53451,15,2,t +15470,53451,15,16,f +15470,53585,0,8,f +15470,54200,47,4,f +15470,54200,47,1,t +15470,55981,71,4,f +15470,59426,72,1,f +15470,59443,70,3,f +15470,59443,71,6,f +15470,59900,15,1,f +15470,59900,297,4,f +15470,59900,33,1,f +15470,59900,0,11,f +15470,60169,72,1,f +15470,60471,0,3,f +15470,60476,71,2,f +15470,60583b,71,8,f +15470,60596,0,1,f +15470,60621,71,1,f +15470,6063,72,1,f +15470,6064,28,1,f +15470,60808,71,2,f +15470,60897,0,2,f +15470,6108,71,1,f +15470,6111,71,1,f +15470,61184,71,1,f +15470,6134,4,1,f +15470,6141,297,1,t +15470,6141,182,2,f +15470,6141,19,37,f +15470,6141,297,4,f +15470,6141,19,7,t +15470,6141,182,1,t +15470,61482,71,1,t +15470,61482,71,1,f +15470,6191,320,2,f +15470,6222,70,1,f +15470,6232,71,2,f +15470,6233,0,4,f +15470,62361,378,4,f +15470,62462,71,1,f +15470,6265,15,1,t +15470,63864,72,6,f +15470,63864,378,4,f +15470,63965,0,8,f +15470,64644,308,8,f +15470,64647,57,1,t +15470,64647,57,2,f +15470,64798,0,1,f +15470,6541,72,8,f +15470,6558,1,3,f +15470,6587,28,4,f +15470,6632,71,2,f +15470,6636,70,1,f +15470,71155,0,1,f +15470,73983,71,2,f +15470,75904,71,1,f +15470,85984,15,1,f +15470,85984,72,2,f +15470,85984,71,4,f +15470,87079,70,1,f +15470,87083,72,1,f +15470,87421,71,24,f +15470,87580,72,9,f +15470,89201,0,4,f +15470,89523,72,5,f +15470,89523,28,8,f +15470,92099,72,1,f +15470,92107,72,1,f +15470,92950,71,2,f +15470,93160,15,1,f +15470,93274,71,1,f +15470,93274,72,1,f +15470,93549pat01,47,1,f +15470,93550,179,1,f +15470,94161,70,7,f +15470,9468stk01,9999,1,t +15470,95188,0,4,f +15470,95199,72,2,f +15470,95225,0,1,f +15470,95674,71,1,f +15470,96874,25,1,t +15470,970c00,308,2,f +15470,970c00pr0363,0,1,f +15470,970c00pr0367,379,1,f +15470,970d15,378,1,f +15470,973pr2084c01,71,1,f +15470,973pr2100c01,0,1,f +15470,973pr2124c01,320,1,f +15470,973pr2125c01,2,1,f +15470,98283,71,25,f +15470,98370,148,1,f +15470,98560,72,10,f +15475,2420,2,2,f +15475,2555,72,2,f +15475,2780,0,2,f +15475,2780,0,1,t +15475,3020,71,3,f +15475,3021,70,1,f +15475,3021,2,1,f +15475,3022,0,2,f +15475,3023,2,15,f +15475,3024,2,2,f +15475,30374,0,1,f +15475,30383,72,2,f +15475,30553,0,1,f +15475,30602,0,1,f +15475,3298,0,1,f +15475,3623,2,5,f +15475,3665,2,4,f +15475,3666,2,1,f +15475,3700,70,2,f +15475,3700,0,2,f +15475,3710,2,2,f +15475,40379,0,1,f +15475,4070,2,4,f +15475,4081b,71,2,f +15475,4085c,72,2,f +15475,41769,0,2,f +15475,41770,0,2,f +15475,44301a,0,4,f +15475,44302a,70,5,f +15475,44567a,0,2,f +15475,49668,15,10,f +15475,50950,0,2,f +15475,53451,15,6,f +15475,53451,15,1,t +15475,54200,0,1,t +15475,54200,0,5,f +15475,60471,71,1,f +15475,6141,57,2,f +15475,6141,57,1,t +15476,10201,15,1,f +15476,12825,0,1,f +15476,12825,71,9,f +15476,14210,0,1,f +15476,14226c11,0,1,f +15476,15207,70,2,f +15476,2039,0,1,f +15476,2335,0,4,f +15476,2357,72,7,f +15476,2412b,72,4,f +15476,2412b,19,2,f +15476,2412b,0,5,f +15476,2420,2,4,f +15476,2420,0,2,f +15476,2420,70,10,f +15476,2431,15,4,f +15476,2431,70,2,f +15476,2431,288,10,f +15476,2432,0,2,f +15476,2435,2,1,f +15476,2436,71,1,f +15476,2437,47,1,f +15476,2440,72,2,f +15476,2445,15,5,f +15476,2453b,70,9,f +15476,2456,71,1,f +15476,2654,47,2,f +15476,2780,0,1,t +15476,2780,0,4,f +15476,3001,0,1,f +15476,3001,72,3,f +15476,3002,71,1,f +15476,3002,72,1,f +15476,3003,72,2,f +15476,3003,0,1,f +15476,3004,72,9,f +15476,3004,71,1,f +15476,3004,19,1,f +15476,3004,73,35,f +15476,3004,0,3,f +15476,3004,15,6,f +15476,30044,288,4,f +15476,30046,297,4,f +15476,3005,272,4,f +15476,3005,72,3,f +15476,3005,19,2,f +15476,3005,73,46,f +15476,3005,70,9,f +15476,30055,0,2,f +15476,30056,0,1,f +15476,3008,15,4,f +15476,3009,72,2,f +15476,3010,73,11,f +15476,3010,272,3,f +15476,30136,70,3,f +15476,30157,71,2,f +15476,30165,72,2,f +15476,3020,70,8,f +15476,3020,15,8,f +15476,3020,71,3,f +15476,3020,19,2,f +15476,3020,0,1,f +15476,3020,72,3,f +15476,3021,72,1,f +15476,3021,15,8,f +15476,3021,2,4,f +15476,3021,70,6,f +15476,3021,19,2,f +15476,3021,71,1,f +15476,3022,71,2,f +15476,3022,2,2,f +15476,3022,19,5,f +15476,3022,70,10,f +15476,3022,72,7,f +15476,3022,15,5,f +15476,3023,15,18,f +15476,3023,272,5,f +15476,3023,14,1,f +15476,3023,73,23,f +15476,3023,70,33,f +15476,3023,72,2,f +15476,3023,1,1,f +15476,3023,19,4,f +15476,3023,2,5,f +15476,3024,2,12,f +15476,3024,19,2,f +15476,3024,46,3,f +15476,3024,4,1,f +15476,3024,73,19,f +15476,3024,25,1,f +15476,3024,70,17,f +15476,3024,182,7,f +15476,3024,15,1,f +15476,3030,15,6,f +15476,3030,72,1,f +15476,3031,15,4,f +15476,3032,19,1,f +15476,3032,0,1,f +15476,3033,72,1,f +15476,3034,15,10,f +15476,3035,15,4,f +15476,3036,28,1,f +15476,30374,0,6,f +15476,3039,272,1,f +15476,3040b,71,2,f +15476,3040b,70,4,f +15476,3040b,73,14,f +15476,30414,72,2,f +15476,3062b,0,12,f +15476,3062b,70,4,f +15476,3062b,19,18,f +15476,3062b,71,7,f +15476,3065,47,1,f +15476,3068b,15,1,f +15476,3068b,288,3,f +15476,3068b,272,2,f +15476,3068b,28,12,f +15476,3069b,4,1,f +15476,3069b,378,3,f +15476,3069b,320,9,f +15476,3069b,15,1,f +15476,3069b,308,22,f +15476,3069b,2,1,f +15476,3069b,71,2,f +15476,3069b,272,1,f +15476,3069b,28,13,f +15476,3069b,47,3,f +15476,3070b,4,1,t +15476,3070b,320,1,t +15476,3070b,320,5,f +15476,3070b,25,1,f +15476,3070b,15,1,t +15476,3070b,15,39,f +15476,3070b,2,1,f +15476,3070b,272,3,t +15476,3070b,4,3,f +15476,3070b,2,1,t +15476,3070b,272,37,f +15476,3070b,25,1,t +15476,32000,72,4,f +15476,32028,71,4,f +15476,32028,28,15,f +15476,32059,15,6,f +15476,3245c,15,4,f +15476,3460,72,1,f +15476,3460,15,4,f +15476,3460,70,6,f +15476,3471,2,1,f +15476,3623,2,5,f +15476,3623,70,18,f +15476,3623,71,2,f +15476,3623,14,1,f +15476,3623,4,2,f +15476,3623,15,9,f +15476,3626c,47,4,f +15476,3626cpr0388,14,1,f +15476,3626cpr0389,14,1,f +15476,3626cpr0579,14,1,f +15476,3626cpr0645,14,1,f +15476,3626cpr0677,14,1,f +15476,3626cpr0791,14,1,f +15476,3626cpr0892,14,1,f +15476,3626cpr0893,14,1,f +15476,3659,308,1,f +15476,3665,70,8,f +15476,3665,71,2,f +15476,3665,73,8,f +15476,3665,0,1,f +15476,3666,73,5,f +15476,3666,15,2,f +15476,3666,0,1,f +15476,3666,70,8,f +15476,3700,70,3,f +15476,3710,73,11,f +15476,3710,14,1,f +15476,3710,19,2,f +15476,3710,15,11,f +15476,3710,70,11,f +15476,3710,272,6,f +15476,3710,2,4,f +15476,3794b,15,6,f +15476,3794b,14,1,f +15476,3794b,1,1,f +15476,3794b,4,1,f +15476,3794b,2,4,f +15476,3794b,71,2,f +15476,3794b,19,4,f +15476,3795,70,10,f +15476,3795,15,7,f +15476,3795,72,4,f +15476,3829c01,71,1,f +15476,3832,70,3,f +15476,3835,0,1,f +15476,3836,70,1,f +15476,3837,0,2,f +15476,3899,4,1,f +15476,3901,71,1,f +15476,3937,15,4,f +15476,3938,71,4,f +15476,3958,15,2,f +15476,3962b,0,1,f +15476,4070,71,8,f +15476,4070,19,2,f +15476,4070,47,2,f +15476,4070,70,11,f +15476,4081b,4,3,f +15476,4085c,0,2,f +15476,4085c,4,10,f +15476,41334,72,1,f +15476,41539,15,4,f +15476,41879a,19,1,f +15476,41879a,71,1,f +15476,41879a,272,1,f +15476,4274,1,7,f +15476,4274,1,1,t +15476,4282,15,2,f +15476,4287,71,2,f +15476,4287,15,16,f +15476,43722,15,2,f +15476,43723,15,1,f +15476,43898,0,1,f +15476,4460b,72,2,f +15476,44728,19,9,f +15476,4528,0,1,f +15476,4530,28,1,f +15476,4536,15,2,f +15476,4599b,0,1,f +15476,46303,71,1,f +15476,4733,71,1,f +15476,4733,0,3,f +15476,4735,0,4,f +15476,4740,0,7,f +15476,47407,15,6,f +15476,48336,0,8,f +15476,49668,15,1,f +15476,50950,272,2,f +15476,51739,15,3,f +15476,52107,14,1,f +15476,54200,272,1,t +15476,54200,14,1,f +15476,54200,72,2,f +15476,54200,15,8,f +15476,54200,47,4,f +15476,54200,4,1,t +15476,54200,47,1,t +15476,54200,14,1,t +15476,54200,72,1,t +15476,54200,70,5,t +15476,54200,4,6,f +15476,54200,272,4,f +15476,54200,15,2,t +15476,54200,70,20,f +15476,54821,4,1,f +15476,55295,0,1,f +15476,55296,0,1,f +15476,55297,0,1,f +15476,55298,0,1,f +15476,55299,0,1,f +15476,55300,0,1,f +15476,56902,71,4,f +15476,59230,71,2,f +15476,59230,71,1,t +15476,59900,182,3,f +15476,59900,297,1,f +15476,59900,2,2,f +15476,6005,0,2,f +15476,6019,71,6,f +15476,60470b,71,4,f +15476,60470b,0,4,f +15476,60478,71,9,f +15476,60479,15,8,f +15476,60594,288,6,f +15476,60596,288,1,f +15476,60607,297,10,f +15476,60623,4,1,f +15476,6091,15,4,f +15476,6091,19,4,f +15476,6117,72,1,f +15476,6124,42,1,f +15476,61254,0,4,f +15476,6134,0,2,f +15476,6141,70,1,t +15476,6141,36,3,f +15476,6141,4,3,f +15476,6141,46,3,f +15476,6141,34,3,f +15476,6141,4,2,t +15476,6141,19,1,t +15476,6141,36,1,t +15476,6141,0,12,f +15476,6141,70,18,f +15476,6141,47,1,t +15476,6141,34,1,t +15476,6141,15,6,f +15476,6141,46,1,t +15476,6141,15,1,t +15476,6141,0,2,t +15476,6141,47,2,f +15476,6141,19,5,f +15476,61678,19,2,f +15476,61780,72,1,f +15476,6231,71,2,f +15476,6251pr0003,84,1,f +15476,62711,0,1,f +15476,62810,484,1,f +15476,62930,47,1,f +15476,63864,0,4,f +15476,63965,0,3,f +15476,64567,71,1,f +15476,64644,0,2,f +15476,6541,19,2,f +15476,6541,71,2,f +15476,6636,272,2,f +15476,6636,28,4,f +15476,6636,15,1,f +15476,6936,297,1,f +15476,85080,15,8,f +15476,85984,15,4,f +15476,85984,72,2,f +15476,86035,320,1,f +15476,87079,71,1,f +15476,87079,15,6,f +15476,87079,378,1,f +15476,87087,15,3,f +15476,87087,0,1,f +15476,87552,71,2,f +15476,87580,0,2,f +15476,87580,15,2,f +15476,87620,15,4,f +15476,88283,308,1,f +15476,88293,15,4,f +15476,90509,14,4,f +15476,91988,71,1,f +15476,92084pr0001,70,1,f +15476,92099,72,3,f +15476,92280,71,11,f +15476,92410,71,1,f +15476,92438,15,4,f +15476,93273,19,5,f +15476,95343,70,1,f +15476,95344,297,1,t +15476,95344,297,1,f +15476,96874,25,1,t +15476,970c00,308,1,f +15476,970c00,28,1,f +15476,970c00,0,1,f +15476,970c00,272,1,f +15476,970c00,2,1,f +15476,973pr1163c01,272,1,f +15476,973pr1446c01,4,1,f +15476,973pr1575c01,0,1,f +15476,973pr1576c01,72,1,f +15476,973pr1617c01,2,1,f +15476,973pr1633c01,4,1,f +15476,973pr1772c01,10,1,f +15476,973pr1800c01,73,1,f +15476,98138,33,1,t +15476,98138,33,2,f +15476,98138,46,1,t +15476,98138,36,3,f +15476,98138,71,2,t +15476,98138,36,1,t +15476,98138,71,7,f +15476,98138,47,2,f +15476,98138,47,1,t +15476,98138,46,4,f +15476,98283,28,40,f +15476,98284,0,1,f +15477,2412b,0,1,f +15477,2421,0,1,f +15477,2431,2,1,f +15477,2446,8,1,f +15477,2447,0,1,f +15477,2447,0,1,t +15477,298c02,14,1,f +15477,298c02,14,1,t +15477,3004,14,1,f +15477,3004,0,2,f +15477,3020,0,1,f +15477,3020,4,1,f +15477,30363,2,1,f +15477,3623,8,2,f +15477,3626bpx90,14,1,f +15477,3660,8,1,f +15477,3829c01,7,1,f +15477,4488,7,1,f +15477,4856a,0,1,f +15477,4859,8,1,f +15477,6141,36,1,t +15477,6141,34,1,f +15477,6141,34,1,t +15477,6141,36,1,f +15477,970c00,0,1,f +15477,973px143c01,0,1,f +15478,3001mib,15,14,f +15478,3007mia,15,3,f +15478,3062a,14,2,f +15478,3297mia,2,1,f +15478,997c02,4,1,f +15478,m3001,47,2,f +15478,m3001,14,4,f +15478,m3003,14,1,f +15478,m3003,15,15,f +15478,m3003,47,6,f +15478,m3003,0,2,f +15478,m3003,1,1,f +15478,x146c02,4,3,f +15478,x147c02,4,1,f +15478,x149a,4,1,f +15479,3001apb04,15,5,f +15479,3020,15,1,f +15479,3020,7,1,f +15479,3021,15,4,f +15479,3021,7,5,f +15479,3022,7,1,f +15479,3022,4,1,f +15479,3022,15,2,f +15479,3023,4,1,f +15479,3023,47,1,f +15479,3034,15,2,f +15479,3034,7,6,f +15479,3139,0,3,f +15479,3464,4,3,f +15479,3474,7,1,f +15479,3475a,15,2,f +15479,3585,7,1,f +15479,3586,7,1,f +15479,8,7,3,f +15479,bb96,15,1,f +15482,45449,13,1,f +15482,45451,45,1,f +15482,45499,47,1,f +15482,clikits016pb02,41,1,f +15485,2412b,80,2,f +15485,2420,4,2,f +15485,2431,72,1,f +15485,2736,71,2,f +15485,2780,0,1,t +15485,2780,0,21,f +15485,3003,4,1,f +15485,3005,27,3,f +15485,3020,0,7,f +15485,3031,0,1,f +15485,3032,72,2,f +15485,3038,0,2,f +15485,30414,72,1,f +15485,3062b,72,4,f +15485,3069b,27,5,f +15485,32000,71,8,f +15485,32013,0,2,f +15485,32016,4,2,f +15485,32039,71,3,f +15485,32056,71,3,f +15485,32062,4,1,f +15485,32073,71,4,f +15485,32123b,71,2,f +15485,32123b,71,1,t +15485,32140,4,2,f +15485,32184,0,2,f +15485,32291,0,4,f +15485,32316,0,2,f +15485,32526,0,4,f +15485,32527,27,1,f +15485,32528,27,1,f +15485,32534,27,1,f +15485,32535,27,1,f +15485,3666,0,7,f +15485,3703,72,2,f +15485,3705,0,1,f +15485,3706,0,2,f +15485,3708,0,2,f +15485,3710,72,2,f +15485,3710,4,2,f +15485,3713,71,1,t +15485,3713,71,6,f +15485,3749,19,3,f +15485,3795,0,2,f +15485,3894,0,2,f +15485,40490,0,1,f +15485,41677,0,2,f +15485,41753,72,1,f +15485,42023,0,2,f +15485,4274,71,1,t +15485,4274,71,2,f +15485,43093,1,6,f +15485,43857,0,4,f +15485,44352,27,1,f +15485,44353,27,1,f +15485,44728,0,2,f +15485,4519,71,2,f +15485,47715,72,1,f +15485,50943,80,1,f +15485,52031,27,1,f +15485,52107,0,2,f +15485,52501,72,3,f +15485,54200,72,2,f +15485,54200,182,2,f +15485,55976,0,4,f +15485,56145,0,4,f +15485,6141,47,6,f +15485,6141,4,1,t +15485,6141,47,1,t +15485,6141,4,4,f +15485,6192,27,1,f +15485,6538b,72,1,f +15485,6553,0,2,f +15485,6558,0,10,f +15485,6632,0,2,f +15485,78c05,179,2,f +15485,85545,1,1,f +15486,2357,0,2,f +15486,2397,72,1,f +15486,2412b,72,3,f +15486,2555,4,2,f +15486,2780,0,1,t +15486,2780,0,3,f +15486,30000,71,2,f +15486,3004,71,2,f +15486,3022,72,2,f +15486,3023,0,11,f +15486,30361c,0,1,f +15486,30367b,0,1,f +15486,30374,0,1,f +15486,3049b,379,4,f +15486,3049b,272,4,f +15486,30526,71,1,f +15486,30552,0,1,f +15486,30553,0,3,f +15486,30603,0,2,f +15486,32001,71,3,f +15486,32013,0,3,f +15486,32015,71,1,f +15486,32016,0,1,f +15486,32039,0,1,f +15486,32054,71,3,f +15486,32062,4,3,f +15486,32062,0,1,f +15486,32123b,71,1,t +15486,32123b,71,3,f +15486,32140,0,2,f +15486,32551,71,2,f +15486,3623,71,2,f +15486,3673,71,2,f +15486,3673,71,1,t +15486,3700,72,4,f +15486,3701,72,2,f +15486,3705,0,3,f +15486,3706,0,2,f +15486,3709,72,2,f +15486,3747b,71,1,f +15486,3749,19,3,f +15486,3794a,71,2,f +15486,3895,71,1,f +15486,40002,47,1,f +15486,4070,71,2,f +15486,41532,0,2,f +15486,41677,0,4,f +15486,41678,71,1,f +15486,41767,0,1,f +15486,41768,0,1,f +15486,4210,71,1,f +15486,4210,71,1,t +15486,424,0,1,f +15486,424,0,1,t +15486,4274,71,1,f +15486,4274,71,1,t +15486,4286,272,2,f +15486,43093,1,2,f +15486,4349,72,1,f +15486,4360,0,1,f +15486,43710,0,1,f +15486,43711,0,1,f +15486,4589,36,1,f +15486,4589,71,1,f +15486,4589,0,1,f +15486,47432,72,2,f +15486,47452,72,4,f +15486,47455,28,8,f +15486,47757,272,2,f +15486,48169,72,2,f +15486,48170,72,2,f +15486,48172,0,1,f +15486,48336,0,1,f +15486,48729a,72,2,f +15486,53983pat0001,0,1,f +15486,53984,135,2,f +15486,53988pat03,143,1,f +15486,53989,135,2,f +15486,54605,47,1,f +15486,6019,0,2,f +15486,6070,272,2,f +15486,6134,0,1,f +15486,6141,36,1,f +15486,6141,36,1,t +15486,6141,71,1,f +15486,6141,71,1,t +15486,6153b,272,2,f +15486,6191,0,1,f +15486,6536,0,1,f +15486,6538b,27,1,f +15486,6553,71,1,f +15486,6558,0,4,f +15486,6589,71,2,f +15486,6629,72,2,f +15486,6636,72,2,f +15486,78c02,179,2,f +15486,78c02,179,1,t +15486,78c08,179,1,f +15488,11289,40,1,f +15488,14720,71,1,f +15488,15339,148,1,f +15488,15341,14,2,f +15488,15343,14,2,f +15488,15346,14,1,f +15488,15353,27,1,f +15488,15354,4,1,f +15488,15354,25,1,f +15488,15355,0,2,f +15488,15361,35,2,f +15488,2780,0,20,f +15488,30374,35,3,f +15488,3069bpr0136,41,1,f +15488,32002,19,2,f +15488,32054,0,2,f +15488,32062,4,2,f +15488,32123b,14,4,f +15488,32140,0,2,f +15488,32270,0,1,f +15488,32278,72,1,f +15488,32316,72,2,f +15488,32523,14,5,f +15488,3626c,4,1,f +15488,42003,14,6,f +15488,43093,1,6,f +15488,43898,72,1,f +15488,4519,71,5,f +15488,4740,42,1,f +15488,48729b,0,4,f +15488,54821,35,1,f +15488,55013,72,1,f +15488,57520,0,1,f +15488,58176,35,8,f +15488,60115,0,1,f +15488,60484,0,4,f +15488,61184,71,8,f +15488,61252,72,1,f +15488,6558,1,14,f +15488,6629,0,2,f +15488,87082,0,1,f +15488,90609,0,2,f +15488,90612,0,2,f +15488,90616,0,3,f +15488,90617,72,3,f +15488,90622,0,2,f +15488,90630,0,3,f +15488,90639,14,7,f +15488,90639pr0028,179,2,f +15488,90640,148,7,f +15488,92233,148,1,f +15488,93571,0,7,f +15488,95199,72,1,f +15488,98138pr0019,15,1,f +15488,98313,14,6,f +15488,98564,35,2,f +15488,98567,0,1,f +15488,98577,72,5,f +15488,98590,0,3,f +15488,98592,148,4,f +15488,98597,148,2,f +15488,99009,71,1,f +15488,99010,0,1,f +15490,27c01,4,2,f +15490,3001a,15,2,f +15490,3001a,47,1,f +15490,3001a,4,5,f +15490,3004,15,4,f +15490,3009,15,2,f +15490,3010,15,2,f +15490,3010,4,2,f +15490,3010pb035u,4,2,f +15490,3020,15,1,f +15490,3020,4,2,f +15490,3022,4,1,f +15490,3023,4,4,f +15490,3023a,15,2,f +15490,3024,4,2,f +15490,3030,4,2,f +15490,3031,15,1,f +15490,3032,15,1,f +15490,3035a,15,1,f +15490,3037,47,3,f +15490,3081cc01,4,1,f +15490,3137c01,0,6,f +15490,3139,0,12,f +15490,3183b,15,1,f +15490,3184,15,1,f +15491,11214,72,5,f +15491,11478,0,5,f +15491,11946,15,3,f +15491,11947,15,3,f +15491,13971,71,1,f +15491,15100,0,6,f +15491,15462,70,1,f +15491,15790,0,1,f +15491,18352,72,1,f +15491,18575,19,3,f +15491,18651,0,1,f +15491,18654,72,1,t +15491,18654,72,1,f +15491,22961,71,4,f +15491,24116,72,1,f +15491,24316,70,1,f +15491,2736,71,2,f +15491,2780,0,1,t +15491,2780,0,15,f +15491,27940,72,1,f +15491,2825,0,1,f +15491,2850b,71,2,f +15491,2851,14,2,f +15491,2852,71,2,f +15491,2853,14,2,f +15491,2854,19,1,f +15491,29041,9999,1,f +15491,32002,19,1,t +15491,32002,19,1,f +15491,32013,15,2,f +15491,32016,0,1,f +15491,32017,71,1,f +15491,32034,0,3,f +15491,32039,0,3,f +15491,32054,0,3,f +15491,32062,4,5,f +15491,32063,15,1,f +15491,32073,71,2,f +15491,32123b,71,1,t +15491,32123b,71,4,f +15491,32140,15,4,f +15491,32184,0,2,f +15491,32192,4,4,f +15491,32270,0,4,f +15491,32291,0,1,f +15491,32293,0,2,f +15491,32523,15,2,f +15491,32523pr0001,15,1,f +15491,32525,0,2,f +15491,32526,15,1,f +15491,32556,19,1,f +15491,3705,0,6,f +15491,3706,0,1,f +15491,3713,71,3,f +15491,3713,71,1,t +15491,3749,19,2,f +15491,41677,0,11,f +15491,42610,71,2,f +15491,4274,1,3,f +15491,4274,1,1,t +15491,43093,1,5,f +15491,44294,14,1,f +15491,4519,71,4,f +15491,57585,71,1,f +15491,59426,72,2,f +15491,59443,0,2,f +15491,60483,0,4,f +15491,60484,0,1,f +15491,61254,0,1,f +15491,61800,15,1,f +15491,63869,0,1,f +15491,64391,15,1,f +15491,64683,15,1,f +15491,6536,15,6,f +15491,6558,1,11,f +15491,6589,19,1,f +15491,6628,0,2,f +15491,75c09,0,2,f +15491,87080,15,1,f +15491,87082,4,1,f +15491,87083,72,1,f +15491,87086,15,1,f +15491,92409,0,2,f +15491,99012,72,2,f +15493,2412b,1,2,f +15493,3021,71,1,f +15493,3022,15,1,f +15493,3023,1,1,f +15493,3023,46,1,f +15493,30237a,71,1,f +15493,3710,15,1,f +15493,3795,72,1,f +15493,3829c01,14,1,f +15493,3839b,72,1,f +15493,3962b,0,1,f +15493,4083,15,1,f +15493,44674,15,1,f +15493,44728,1,1,f +15493,54200,33,1,t +15493,54200,33,4,f +15493,6014b,71,4,f +15493,60212,15,1,f +15493,60700,0,4,f +15493,6157,71,2,f +15497,11816pr0003,78,1,f +15497,2453a,19,2,f +15497,3004,322,6,f +15497,3004,19,8,f +15497,3004,320,6,f +15497,3004,26,8,f +15497,3004,323,14,f +15497,3004,27,4,f +15497,3004,2,4,f +15497,3004,272,4,f +15497,3004,191,6,f +15497,3004,29,4,f +15497,3005,29,6,f +15497,3005,272,4,f +15497,3005,322,6,f +15497,3005,19,8,f +15497,3005,191,6,f +15497,3005,2,6,f +15497,3005,323,6,f +15497,3005,27,6,f +15497,3005,320,6,f +15497,3005,26,6,f +15497,3009,19,2,f +15497,3010,191,4,f +15497,3010,272,3,f +15497,3010,27,4,f +15497,3010,19,4,f +15497,3010,29,2,f +15497,3010,322,4,f +15497,3010,320,2,f +15497,3010,2,2,f +15497,3010,26,4,f +15497,30136,484,14,f +15497,3040b,29,4,f +15497,3040b,19,4,f +15497,3040b,320,4,f +15497,3040b,272,4,f +15497,3040b,322,4,f +15497,3040b,26,6,f +15497,3040b,191,4,f +15497,3069b,15,2,f +15497,33243,272,4,f +15497,33243,27,2,f +15497,33243,29,2,f +15497,3665,320,4,f +15497,3665,322,4,f +15497,3665,19,4,f +15497,60477,320,4,f +15497,60477,272,4,f +15497,60481,323,4,f +15497,60481,26,4,f +15497,60592,15,4,f +15497,60593,15,2,f +15497,60594,15,2,f +15497,60596,15,1,f +15497,60608,15,4,f +15497,60623,15,1,f +15497,6178pr0005,15,1,f +15497,6182,15,2,f +15497,63864,15,2,f +15497,92256,70,1,f +15497,92456pr0034c01,78,1,f +15497,92820pr0007c01,379,1,f +15498,2362a,0,1,f +15498,2420,0,2,f +15498,2458,4,8,f +15498,2540,0,1,f +15498,2555,4,2,f +15498,2586p4b,7,2,f +15498,3001,1,1,f +15498,3004,1,6,f +15498,3004,0,2,f +15498,3005,4,2,f +15498,3005,7,4,f +15498,3010,0,1,f +15498,3020,0,2,f +15498,3020,1,1,f +15498,3021,1,2,f +15498,3021,4,1,f +15498,3022,1,4,f +15498,3022,0,5,f +15498,3023,0,7,f +15498,3023,4,2,f +15498,3024,1,4,f +15498,3031,0,1,f +15498,3039,1,2,f +15498,3040b,4,2,f +15498,3040b,0,4,f +15498,3048c,0,2,f +15498,3062b,1,1,f +15498,3298,0,1,f +15498,3626bpx96,14,1,f +15498,3626bpx97,14,1,f +15498,3665,0,2,f +15498,3666,4,4,f +15498,3684,1,2,f +15498,3700,0,4,f +15498,3700,1,4,f +15498,3710,0,3,f +15498,3747a,0,2,f +15498,3795,1,1,f +15498,3795,4,2,f +15498,3795,0,1,f +15498,3832,1,2,f +15498,3839b,0,2,f +15498,3844,0,1,f +15498,3847,8,1,f +15498,3847,8,1,t +15498,3849,8,1,f +15498,4070,0,2,f +15498,4070,14,2,f +15498,4085c,0,4,f +15498,4275b,4,2,f +15498,4287,0,2,f +15498,4477,0,4,f +15498,4477,4,2,f +15498,4488,0,4,f +15498,4489,6,4,f +15498,4495b,4,1,f +15498,4495b,14,1,f +15498,4497,6,1,f +15498,4626,0,2,f +15498,6019,1,1,f +15498,6122,0,1,f +15498,6123,8,1,f +15498,6126a,57,2,f +15498,6133,4,2,f +15498,6141,15,4,f +15498,6141,15,1,t +15498,87685,14,1,f +15498,87686,14,1,f +15498,87687,14,1,f +15498,970x021,0,1,f +15498,970x026,7,1,f +15498,973p4bc02,4,1,f +15498,973pb0105c02,4,1,f +15501,3004,1,4,f +15501,3004,14,4,f +15501,3009,1,1,f +15501,3020,14,2,f +15501,3035,1,1,f +15501,3062b,4,2,f +15501,3068bpb0034,15,1,f +15501,3622,1,4,f +15501,3633,14,2,f +15501,3865,2,1,f +15501,3957a,0,2,f +15501,4434,14,1,f +15501,4495b,4,1,f +15501,4495b,14,1,f +15503,bslot16,2,1,f +15503,bslot16,1,1,f +15503,bslot16,14,1,f +15503,bslot16,15,1,f +15503,bslot16,4,1,f +15505,2431pr0077,15,1,f +15505,3002,1,1,f +15505,3032,7,1,f +15505,3039p12,0,1,f +15505,3068b,15,1,f +15505,3068bpt1,15,1,f +15505,3626bp04,14,1,f +15505,3962b,0,1,f +15505,4070,7,2,f +15505,4081b,15,2,f +15505,4485,0,1,f +15505,4864b,41,1,f +15505,6141,34,1,t +15505,6141,34,1,f +15505,6141,36,1,f +15505,6141,36,1,t +15505,73983,15,1,f +15505,970c00,0,1,f +15505,973pr1245c01,1,1,f +15506,14728c100,0,1,f +15506,2431,2,2,f +15506,2815,0,2,f +15506,3069b,0,4,f +15506,3069b,4,4,f +15506,3127,7,1,f +15506,32012,1,1,f +15506,32123b,7,1,f +15506,32123b,7,2,t +15506,32342c01,2,1,f +15506,3482,14,2,f +15506,3634,0,2,f +15506,3648b,7,2,f +15506,3701,14,2,f +15506,3703,14,2,f +15506,3707,0,1,f +15506,3709,0,4,f +15506,3710,0,3,f +15506,3713,7,2,t +15506,3713,7,3,f +15506,3736,7,1,f +15506,3737,0,1,f +15506,3749,7,2,t +15506,3749,7,1,f +15506,4185,7,2,f +15506,43362c01,7,1,f +15506,5306bc020,0,1,f +15506,6035,15,1,f +15506,6538b,7,1,f +15507,12825,71,19,f +15507,13731,72,2,f +15507,2357,72,4,f +15507,2420,272,4,f +15507,2431,72,2,f +15507,2431,272,5,f +15507,2431,0,12,f +15507,2445,71,3,f +15507,2445,72,2,f +15507,2460,0,1,f +15507,2540,0,6,f +15507,2654,71,12,f +15507,2730,71,4,f +15507,2780,0,2,t +15507,2780,0,34,f +15507,3001,0,2,f +15507,3001,72,3,f +15507,3002,0,4,f +15507,3003,320,6,f +15507,3004,320,4,f +15507,3005,71,3,f +15507,3007,19,1,f +15507,3010,19,1,f +15507,3020,72,14,f +15507,3021,320,13,f +15507,3021,272,23,f +15507,3022,71,23,f +15507,3023,72,2,f +15507,3023,0,19,f +15507,3023,19,2,f +15507,3023,71,5,f +15507,30237b,0,2,f +15507,3029,72,2,f +15507,3029,71,6,f +15507,3030,72,4,f +15507,3031,71,3,f +15507,3032,71,2,f +15507,3034,72,5,f +15507,3035,72,6,f +15507,30363,0,2,f +15507,30374,35,2,f +15507,30374,71,1,f +15507,30374,36,1,f +15507,30374,41,3,f +15507,30375,19,1,f +15507,30375pr0001,19,1,f +15507,30376,19,2,f +15507,30377,19,2,f +15507,30378,19,1,f +15507,30378pr0001,19,1,f +15507,3039,320,2,f +15507,3039,272,2,f +15507,3040b,71,7,f +15507,3040b,272,2,f +15507,3045,71,2,f +15507,30503,71,2,f +15507,30503,72,2,f +15507,3068b,272,2,f +15507,3068b,71,10,f +15507,3068b,0,6,f +15507,3069b,71,3,f +15507,3070b,320,1,t +15507,3070b,320,2,f +15507,3176,71,2,f +15507,32000,71,6,f +15507,32009,72,1,f +15507,32018,72,6,f +15507,32039,4,4,f +15507,32054,0,6,f +15507,32062,4,4,f +15507,32064b,72,4,f +15507,32064b,320,6,f +15507,32073,71,2,f +15507,32123b,14,16,f +15507,32123b,14,2,t +15507,32184,0,2,f +15507,32249,0,2,f +15507,32291,0,2,f +15507,32316,71,5,f +15507,32449,72,1,f +15507,32523,72,2,f +15507,32524,72,1,f +15507,32526,72,2,f +15507,32556,19,4,f +15507,3298,71,2,f +15507,3298,0,1,f +15507,3456,72,2,f +15507,3460,71,4,f +15507,3623,272,13,f +15507,3626bpr0514,78,1,f +15507,3626bpr0569,78,1,f +15507,3626cpr1004,78,1,f +15507,3647,72,4,f +15507,3647,72,1,t +15507,3660,71,44,f +15507,3665,71,22,f +15507,3666,320,2,f +15507,3666,272,15,f +15507,3675,71,2,f +15507,3700,0,8,f +15507,3705,0,2,f +15507,3706,0,3,f +15507,3707,0,2,f +15507,3710,272,8,f +15507,3710,0,8,f +15507,3713,71,2,f +15507,3713,71,1,t +15507,3747b,71,2,f +15507,3794b,272,24,f +15507,3794b,320,4,f +15507,3795,71,2,f +15507,3795,320,2,f +15507,3795,0,2,f +15507,3832,72,3,f +15507,3957b,71,2,f +15507,4006,0,1,f +15507,4032a,72,2,f +15507,4070,320,10,f +15507,4085c,72,4,f +15507,41532,0,4,f +15507,4162,320,2,f +15507,4162,272,2,f +15507,41678,71,4,f +15507,41767,72,1,f +15507,41768,72,1,f +15507,41769,72,5,f +15507,41769,272,3,f +15507,41770,72,5,f +15507,41770,272,3,f +15507,42023,0,6,f +15507,42114,383,1,f +15507,42610,71,8,f +15507,4274,1,1,t +15507,4274,1,14,f +15507,43093,1,6,f +15507,43712,72,1,f +15507,43713,71,1,f +15507,43722,72,2,f +15507,43723,72,2,f +15507,43898,272,2,f +15507,44567a,72,6,f +15507,4477,72,6,f +15507,4510,72,6,f +15507,4519,71,1,f +15507,4522,0,1,f +15507,45301,72,1,f +15507,4588,72,4,f +15507,4595,71,1,f +15507,4599b,71,1,f +15507,47397,71,1,f +15507,47398,71,1,f +15507,4740,42,2,f +15507,47905,19,1,f +15507,48336,19,3,f +15507,50231,320,1,f +15507,50304,71,2,f +15507,50305,71,2,f +15507,50745,320,1,f +15507,50747,47,2,f +15507,50950,272,6,f +15507,50955,71,1,f +15507,50956,71,1,f +15507,52107,0,1,f +15507,54200,71,3,f +15507,54200,272,1,t +15507,54200,320,10,f +15507,54200,272,9,f +15507,54200,320,1,t +15507,54200,71,1,t +15507,54383,272,2,f +15507,54383,72,5,f +15507,54384,72,5,f +15507,54384,272,2,f +15507,55013,72,2,f +15507,57519,0,2,f +15507,58176,143,12,f +15507,58176,36,4,f +15507,58247,0,2,f +15507,59230,19,2,f +15507,6019,0,4,f +15507,60208,71,2,f +15507,60471,0,6,f +15507,60475b,0,4,f +15507,60478,72,11,f +15507,60479,71,1,f +15507,60481,71,2,f +15507,60483,71,2,f +15507,6091,72,8,f +15507,6091,320,10,f +15507,6108,71,1,f +15507,61183,70,1,f +15507,61184,71,12,f +15507,61409,72,14,f +15507,6141,46,1,t +15507,6141,46,4,f +15507,6141,57,1,t +15507,6141,19,1,t +15507,6141,182,16,f +15507,6141,19,4,f +15507,6141,57,3,f +15507,6141,182,1,t +15507,61678,272,11,f +15507,61780,72,1,f +15507,6180,272,8,f +15507,6233,71,2,f +15507,62462,0,24,f +15507,63864,71,2,f +15507,63868,0,6,f +15507,64179,71,2,f +15507,64567,80,5,f +15507,6541,0,20,f +15507,6553,71,2,f +15507,6558,1,13,f +15507,6564,0,1,f +15507,6565,0,1,f +15507,6587,28,2,f +15507,6628,0,2,f +15507,6632,1,4,f +15507,6636,272,18,f +15507,6636,0,4,f +15507,6636,72,4,f +15507,72454,72,2,f +15507,85543,15,2,f +15507,85984,72,4,f +15507,85984,71,19,f +15507,87079,0,8,f +15507,87079,272,4,f +15507,87083,72,2,f +15507,87566pr01,72,1,f +15507,87567pr01,72,1,f +15507,87568pr01l,72,2,f +15507,87568pr01r,72,2,f +15507,87569pr01,19,2,f +15507,90202,0,1,f +15507,91988,71,2,f +15507,92738,0,1,f +15507,93273,71,2,f +15507,93606,71,4,f +15507,95226,308,1,f +15507,96874,25,1,t +15507,970c00,28,1,f +15507,970c00,0,2,f +15507,973pr1358ac01,0,1,f +15507,973pr1461c01,0,1,f +15507,973pr2092c01,320,1,f +15507,98263,71,1,f +15507,99780,72,2,f +15509,3020,8,4,f +15509,3021,8,4,f +15509,3022,8,4,f +15509,3023,8,4,f +15509,3029,8,2,f +15509,3031,8,2,f +15509,3032,8,2,f +15509,3034,8,2,f +15509,3035,8,2,f +15509,3036,8,2,f +15509,3460,8,2,f +15509,3623,8,2,f +15509,3666,8,2,f +15509,3710,8,2,f +15509,3795,8,2,f +15509,3832,8,2,f +15509,4477,8,2,f +15513,2339,0,2,f +15513,2343,14,1,f +15513,2357,7,2,f +15513,2432,8,1,f +15513,2453a,7,2,f +15513,2465,7,1,f +15513,2465,0,1,f +15513,3003,7,2,f +15513,3003,8,2,f +15513,3004,0,6,f +15513,3004,7,7,f +15513,3005,7,4,f +15513,3008,7,1,f +15513,3008,0,1,f +15513,30152pat0001,52,1,f +15513,3023,8,1,f +15513,30236,8,2,f +15513,30238,42,1,f +15513,30240,7,1,f +15513,30374,7,1,f +15513,3040b,0,4,f +15513,3040b,7,16,f +15513,30614,378,1,f +15513,3062b,36,2,f +15513,3062b,0,8,f +15513,3062b,46,1,f +15513,3062b,33,1,f +15513,3062b,8,4,f +15513,3068b,19,3,f +15513,3068bp40,15,1,f +15513,3069b,19,1,f +15513,33009px2,4,1,f +15513,3308,0,6,f +15513,33320,2,1,f +15513,3455,0,2,f +15513,3622,7,6,f +15513,3626bpb0009,14,1,f +15513,3626bphb,21,1,f +15513,3626bpx99,7,1,f +15513,3665,0,2,f +15513,3684,8,4,f +15513,3710,7,1,f +15513,3794a,0,1,f +15513,3795,0,1,f +15513,3830,0,2,f +15513,3831,0,2,f +15513,3899,14,1,f +15513,3937,0,3,f +15513,3938,7,3,f +15513,40234,7,1,f +15513,40240,366,1,f +15513,40241,6,1,f +15513,40242,7,1,f +15513,4032a,7,1,f +15513,4085c,7,4,f +15513,4201,8,1,f +15513,4204,8,1,f +15513,4213,8,1,f +15513,4215bpx1,6,1,f +15513,4337,14,1,f +15513,4341,0,1,f +15513,4460a,8,2,f +15513,4530,0,1,f +15513,4625,8,1,f +15513,4865a,0,4,f +15513,4865a,7,1,f +15513,50231,0,1,f +15513,50231px1,0,1,f +15513,6091,0,2,f +15513,6126a,57,2,f +15513,6141,57,1,t +15513,6141,57,7,f +15513,6141,34,1,f +15513,6141,34,1,t +15513,62808,7,2,f +15513,970c00,7,2,f +15513,970c00pb002,0,1,f +15513,973px146c01,7,1,f +15513,973px148c01,0,1,f +15513,973px150c01,7,1,f +15514,2447,40,1,f +15514,2447,40,1,t +15514,3626bpb0428,14,1,f +15514,87781,15,1,f +15514,87993,135,1,f +15514,87994,41,1,f +15514,88646,0,1,f +15514,970c00pb060,15,1,f +15514,973pr1540c01,15,1,f +15515,3020,1,4,f +15515,3021,1,2,f +15515,3022,1,4,f +15515,3023,1,2,f +15515,3029,1,2,f +15515,3032,1,2,f +15515,3034,1,2,f +15515,3035,1,2,f +15515,3036,1,2,f +15515,3460,1,2,f +15515,3623,1,2,f +15515,3666,1,2,f +15515,3710,1,2,f +15515,3795,1,2,f +15515,3832,1,2,f +15516,16542,7,1,f +15516,2341,4,4,f +15516,2412b,4,4,f +15516,2420,4,2,f +15516,2420,0,4,f +15516,2431,4,6,f +15516,2431,7,1,f +15516,2433,14,2,f +15516,2436,0,1,f +15516,2445,4,1,f +15516,2445,0,1,f +15516,2447,41,1,f +15516,2540,15,1,f +15516,2555,4,2,f +15516,2736,7,1,f +15516,2877,0,1,f +15516,3004,4,1,f +15516,3020,0,1,f +15516,3021,0,1,f +15516,3021,15,1,f +15516,3022,0,1,f +15516,3022,4,1,f +15516,3023,4,2,f +15516,3023,0,6,f +15516,3023,15,1,f +15516,3024,46,2,f +15516,3024,4,2,f +15516,3024,15,1,f +15516,3024,36,2,f +15516,3024,33,2,f +15516,3032,0,2,f +15516,3032,4,1,f +15516,3039,4,1,f +15516,3069b,15,2,f +15516,3069b,0,2,f +15516,3069b,4,2,f +15516,3070b,36,2,f +15516,3070b,33,3,f +15516,3070b,0,2,f +15516,3149c01,4,1,f +15516,3403c01,4,1,f +15516,3491,0,1,f +15516,3623,4,2,f +15516,3626b,0,1,f +15516,3626bp03,14,1,f +15516,3626bp05,14,1,f +15516,3660,4,1,f +15516,3665,4,8,f +15516,3666,7,1,f +15516,3666,4,2,f +15516,3709,0,1,f +15516,3710,4,4,f +15516,3710,0,4,f +15516,3710,15,1,f +15516,3794a,4,4,f +15516,3795,7,1,f +15516,3795,4,1,f +15516,3823,41,1,f +15516,3829c01,4,2,f +15516,3832,0,1,f +15516,3834,15,2,f +15516,3835,0,1,f +15516,3838,14,1,f +15516,4032a,4,1,f +15516,4079,4,1,f +15516,4083,15,2,f +15516,4085c,4,6,f +15516,4207,15,4,f +15516,4208,0,1,f +15516,4209,4,1,f +15516,4213,4,1,f +15516,4214,4,1,f +15516,4276b,0,2,f +15516,4532,4,1,f +15516,4533,7,1,f +15516,4599a,15,2,f +15516,4600,7,3,f +15516,4859,4,1,f +15516,4865a,41,1,f +15516,6014a,15,6,f +15516,6015,0,6,f +15516,6019,7,2,f +15516,6087,0,1,f +15516,6112,7,2,f +15516,6141,14,2,f +15516,6141,0,2,f +15516,6141,33,2,f +15516,6158,0,1,f +15516,73983,0,2,f +15516,970c00,0,1,f +15516,970c00,7,1,f +15516,973p29c01,7,1,f +15516,973px121c01,0,1,f +15518,298c02,0,2,f +15518,298c02,0,2,t +15518,3004,15,2,f +15518,3021,15,1,f +15518,3298,4,1,f +15518,3660,15,1,f +15518,4286,15,2,f +15520,2432,15,1,f +15520,2444,15,1,f +15520,2446,72,1,f +15520,2447,40,1,t +15520,2447,40,1,f +15520,3001,4,1,f +15520,3004,72,1,f +15520,3010,4,2,f +15520,30151a,41,2,f +15520,30162,72,1,f +15520,3023,15,1,f +15520,30237a,4,2,f +15520,30248,72,1,f +15520,3031,72,1,f +15520,30361c,4,2,f +15520,30363,15,1,f +15520,30364,15,2,f +15520,30365,0,2,f +15520,30372,40,1,f +15520,30592,72,1,f +15520,30644,0,1,f +15520,3069b,33,2,f +15520,3069bpr0101,71,1,f +15520,32062,0,2,f +15520,3626bpr0279,14,1,f +15520,3666,15,2,f +15520,3673,71,1,t +15520,3673,71,1,f +15520,3747a,4,1,f +15520,3835,0,1,f +15520,3962b,0,1,f +15520,4070,4,2,f +15520,41532,0,2,f +15520,41770,15,1,f +15520,4286,4,6,f +15520,4345b,0,2,f +15520,4346,15,2,f +15520,43713,0,2,f +15520,4589,14,5,f +15520,4589,71,2,f +15520,4599a,14,1,f +15520,4617b,72,1,f +15520,48183,15,2,f +15520,54200,34,1,f +15520,54200,36,1,f +15520,6112,0,2,f +15520,6126a,41,2,f +15520,6239,15,1,f +15520,7238stk01,9999,1,t +15520,970c00,0,1,f +15520,973pr1667c01,0,1,f +15521,2222,484,1,f +15521,3437,191,1,f +15521,4066,70,4,f +15521,40666,10,2,f +15521,44524,19,1,f +15521,4662,0,1,f +15521,60777,1,1,f +15521,88764pb01,484,1,f +15521,88784,15,1,f +15521,88784,484,1,f +15521,89187,0,1,f +15521,89831,484,1,f +15523,2357,0,2,f +15523,2362a,7,2,f +15523,2412b,0,2,f +15523,2432,7,1,f +15523,2444,0,2,f +15523,2446,15,1,f +15523,2446,14,1,f +15523,2447,42,1,f +15523,2462,7,2,f +15523,2508,0,1,f +15523,2528pb01,0,1,f +15523,2540,0,1,f +15523,2544,6,1,f +15523,2550c01,6,1,f +15523,2555,14,2,f +15523,2620,41,1,f +15523,2744,7,2,f +15523,2815,0,2,f +15523,2926,0,1,f +15523,2952,0,2,f +15523,2994,14,2,f +15523,30027a,15,2,f +15523,30028,0,2,f +15523,3009,7,2,f +15523,3020,0,2,f +15523,3020,7,1,f +15523,3022,0,1,f +15523,3022,7,1,f +15523,3023,7,4,f +15523,3023,0,2,f +15523,3024,34,1,f +15523,3024,36,3,f +15523,3032,7,1,f +15523,3035,7,2,f +15523,3039pr0005,15,1,f +15523,32002,8,2,f +15523,32002,8,1,t +15523,3460,7,2,f +15523,3623,7,2,f +15523,3623,14,2,f +15523,3626bpx19,14,1,f +15523,3626bpx55,14,1,f +15523,3665,7,2,f +15523,3666,7,2,f +15523,3700,7,2,f +15523,3706,0,2,f +15523,3708,0,1,f +15523,3709,14,2,f +15523,3710,7,2,f +15523,3710,14,1,f +15523,3713,7,4,f +15523,3730,0,1,f +15523,3749,7,2,f +15523,3794a,7,1,f +15523,3795,7,1,f +15523,3829c01,14,2,f +15523,3896,0,1,f +15523,3901,0,1,f +15523,3937,7,2,f +15523,3938,0,2,f +15523,3941,7,1,f +15523,3960p03,15,2,f +15523,4070,7,6,f +15523,4105569,22,1,f +15523,4150,15,1,f +15523,4185,14,3,f +15523,4265b,7,1,t +15523,4265b,7,3,f +15523,4274,7,1,f +15523,4274,7,1,t +15523,4286,7,2,f +15523,4315,7,1,f +15523,4460a,7,2,f +15523,4477,7,2,f +15523,4485,1,1,f +15523,4506,2,1,f +15523,4746,0,1,f +15523,4864a,7,1,f +15523,4868a,14,2,f +15523,4869,7,2,f +15523,57467,383,2,f +15523,6019,0,5,f +15523,6041,14,1,f +15523,6070,41,2,f +15523,6119,57,1,f +15523,6126a,57,2,f +15523,6133,4,2,f +15523,6141,42,1,t +15523,6141,42,4,f +15523,6578,0,2,f +15523,73590c02b,14,1,f +15523,85546,14,2,f +15523,970c00,1,1,f +15523,970c00,15,1,f +15523,973px39c01,2,1,f +15523,973px91c01,15,1,f +15524,21,47,1,f +15524,242c01,4,4,f +15524,3010,47,1,f +15524,3010pb035e,14,1,f +15524,3020,14,2,f +15524,3021,4,2,f +15524,3022,4,1,f +15524,3034,14,1,f +15524,3035,14,2,f +15524,3037,14,1,f +15524,3145,14,1,f +15524,3149c01,4,1,f +15524,3436,14,1,f +15524,3483,0,4,f +15524,3639,4,1,f +15524,3640,4,1,f +15524,7049b,0,2,f +15525,3003,14,2,f +15525,3004,14,2,f +15525,3009,0,4,f +15525,3010,14,4,f +15525,3020,14,2,f +15525,3034,4,1,f +15525,3068pb22,15,1,f +15525,3865,2,1,f +15525,3957a,7,1,f +15525,4222a,4,2,f +15525,4536,4,2,f +15525,92410,14,1,f +15525,fab3d,9999,1,f +15525,fab4c,9999,1,f +15525,fab7f,9999,1,f +15526,2436,15,2,f +15526,2496,0,2,f +15526,2655,7,2,f +15526,3020,15,1,f +15526,3020,4,1,f +15526,3039,4,1,f +15526,4083,0,1,f +15526,4865a,41,1,f +15526,6141,42,1,t +15526,6141,36,2,f +15526,6141,42,2,f +15526,6141,36,1,t +15527,4266,15,2,f +15527,4267,0,2,f +15528,32203,14,4,f +15528,32203,0,4,f +15528,32205,0,2,f +15528,32205,14,1,f +15528,32207,8,3,f +15528,32209,15,2,f +15528,32214,14,1,f +15528,32219,0,3,f +15528,32221,8,6,f +15528,32229,0,2,f +15528,32242,14,2,f +15528,32242,0,2,f +15528,32246,0,2,f +15528,32246,14,5,f +15528,32247,0,2,f +15528,3708,15,1,f +15528,zbb013,22,15,f +15528,zbb014,7,9,f +15528,zbb015,0,7,f +15528,zbb015,14,4,f +15528,zbb018,14,2,f +15529,3001,14,1,f +15529,3001,4,2,f +15529,3002,4,2,f +15529,3002,14,2,f +15529,3003,4,6,f +15529,3003,47,1,f +15529,3003,14,2,f +15529,3004,14,6,f +15529,3004,4,20,f +15529,3004p06,14,1,f +15529,3005,14,14,f +15529,3005,4,20,f +15529,3007,4,1,f +15529,3008,4,4,f +15529,3009,4,14,f +15529,3010,14,2,f +15529,3010,4,14,f +15529,3020,4,1,f +15529,3020,14,2,f +15529,3020,0,1,f +15529,3022,0,1,f +15529,3023,4,6,f +15529,3023,14,4,f +15529,3024,34,1,f +15529,3024,36,2,f +15529,3024,14,2,f +15529,3027,0,1,f +15529,3031,0,1,f +15529,3032,4,1,f +15529,3033,0,2,f +15529,3034,0,2,f +15529,3037,0,10,f +15529,3038,0,8,f +15529,3039,4,4,f +15529,3039,0,8,f +15529,3040b,0,4,f +15529,3040b,4,6,f +15529,3040b,14,4,f +15529,3041,0,3,f +15529,3043,0,1,f +15529,3045,0,12,f +15529,3046a,0,12,f +15529,3048c,0,2,f +15529,3049b,0,1,f +15529,3062b,0,8,f +15529,3062b,15,8,f +15529,3069b,14,4,f +15529,3081cc01,15,2,f +15529,3185,15,6,f +15529,3298,15,1,f +15529,3460,4,2,f +15529,3470,2,1,f +15529,3471,2,1,f +15529,3581,4,2,f +15529,3622,4,16,f +15529,3623,14,2,f +15529,3626apr0001,14,2,f +15529,3633,4,4,f +15529,3641,0,4,f +15529,3644,15,2,f +15529,3660,14,4,f +15529,3660,4,4,f +15529,3665,4,8,f +15529,3666,4,2,f +15529,3679,7,2,f +15529,3680,0,2,f +15529,3710,14,6,f +15529,3710,4,2,f +15529,3741,2,4,f +15529,3742,1,6,f +15529,3742,14,2,t +15529,3742,1,2,t +15529,3742,14,6,f +15529,3787,14,1,f +15529,3788,14,1,f +15529,3795,14,2,f +15529,3821,14,1,f +15529,3822,14,1,f +15529,3823,47,1,f +15529,3829c01,14,1,f +15529,3832,0,1,f +15529,3836,6,1,f +15529,3837,8,1,f +15529,3839b,0,1,f +15529,3853,15,4,f +15529,3854,4,4,f +15529,3855,47,2,f +15529,3856,15,4,f +15529,3857,7,1,f +15529,3861b,15,1,f +15529,3899,1,2,f +15529,3901,6,1,f +15529,3941,15,2,f +15529,3942b,0,1,f +15529,3958,4,1,f +15529,4070,14,4,f +15529,4079,15,4,f +15529,4083,0,1,f +15529,4085b,0,2,f +15529,4162,14,2,f +15529,4175,0,3,f +15529,4211,14,1,f +15529,4213,0,1,f +15529,4214,0,1,f +15529,4275a,14,4,f +15529,4276a,14,2,f +15529,4286,1,4,f +15529,4286,15,2,f +15529,4347,15,2,f +15529,4445,0,6,f +15529,4447,15,2,f +15529,4448,47,2,f +15529,4449,6,1,f +15529,4528,0,1,f +15529,4529,0,1,f +15529,4530,0,1,f +15529,4531,14,2,f +15529,4533,4,1,f +15529,4534,14,1,f +15529,4535,4,1,f +15529,4536,4,2,f +15529,4600,7,2,f +15529,4624,7,4,f +15529,47899c01,15,1,f +15529,6141,46,2,f +15529,69c01,14,2,f +15529,73194c01,15,1,f +15529,92410,14,2,f +15529,970c00,0,1,f +15529,970c00,4,1,f +15529,973c01,15,1,f +15529,973c07,1,1,f +15530,1516cdb01,9999,1,t +15530,3001,4,2,f +15530,3033,4,2,f +15530,3979c02,4,2,f +15530,4222a,450,2,f +15530,4327,14,1,f +15530,4793,14,1,f +15530,4794a,366,2,f +15530,787c02,4,4,f +15530,fab3d,9999,1,f +15530,fab5c,9999,1,f +15530,fabbc1,4,1,f +15530,fabca2,450,1,f +15530,u9206c01,1,1,f +15531,3001,85,1,f +15533,2913cx1,1,1,f +15533,bb93,7,1,f +15535,3297,4,24,f +15535,3298,4,10,f +15535,3299,4,8,f +15535,3300,4,4,f +15535,3675,4,4,f +15536,4350c02,7,1,f +15538,10172,297,1,f +15538,10830pat0001,0,1,f +15538,11062,15,1,f +15538,11090,297,1,f +15538,11187,70,8,f +15538,11211,71,6,f +15538,11303,4,1,f +15538,11477,72,4,f +15538,11833,71,2,f +15538,12885,0,2,f +15538,13251,308,1,f +15538,13786pr0002,484,1,f +15538,14418,71,8,f +15538,14719,71,12,f +15538,14719,4,2,f +15538,14769,72,1,f +15538,14769pr0001,15,1,f +15538,14769pr1010,0,1,f +15538,15207,70,1,f +15538,15207,71,5,f +15538,15254,19,3,f +15538,15254,72,2,f +15538,15279,10,1,f +15538,15332,0,2,f +15538,15379,0,12,f +15538,15379,0,1,t +15538,15395,4,1,f +15538,15395,320,1,f +15538,15429,72,4,f +15538,15470,179,1,t +15538,15470,179,2,f +15538,15530,272,1,f +15538,15533,84,21,f +15538,15535,4,6,f +15538,15535,72,7,f +15538,15573,0,25,f +15538,15573,297,1,f +15538,15573,71,66,f +15538,15573,28,4,f +15538,15573,19,2,f +15538,15573,15,2,f +15538,15573,72,2,f +15538,15573,2,3,f +15538,15573,70,3,f +15538,15573,320,2,f +15538,15712,0,3,f +15538,16577,72,1,f +15538,18674,15,2,f +15538,18920,179,1,t +15538,18920,179,2,f +15538,20193,15,1,f +15538,2357,70,7,f +15538,2412b,80,4,f +15538,2412b,0,2,f +15538,2412b,72,3,f +15538,2417,288,1,f +15538,2417,2,1,f +15538,2420,70,6,f +15538,2420,71,5,f +15538,2420,72,5,f +15538,2423,2,1,f +15538,2431,0,6,f +15538,2431,19,3,f +15538,2431,71,24,f +15538,2431,288,11,f +15538,2454b,19,4,f +15538,2456,0,2,f +15538,2489,308,1,f +15538,2540,0,2,f +15538,2639,72,1,f +15538,2654,0,1,f +15538,2736,71,8,f +15538,2780,0,2,t +15538,2780,0,6,f +15538,2877,70,20,f +15538,2921,70,6,f +15538,2921,71,6,f +15538,298c02,71,1,f +15538,298c02,71,1,t +15538,3003,15,1,f +15538,3004,212,67,f +15538,3004,70,28,f +15538,3004,72,6,f +15538,3004,272,27,f +15538,3004,71,3,f +15538,3004,73,15,f +15538,3004,15,2,f +15538,3004,19,8,f +15538,30044,15,2,f +15538,3005,70,8,f +15538,3005,1,2,f +15538,3005,272,23,f +15538,3005,84,2,f +15538,3005,19,16,f +15538,3005,73,24,f +15538,3005,182,2,f +15538,3008,72,2,f +15538,3008,19,3,f +15538,3009,84,6,f +15538,3009,71,3,f +15538,3009,19,6,f +15538,3009,72,6,f +15538,3010,70,3,f +15538,3010,272,25,f +15538,3010,71,8,f +15538,3010,19,5,f +15538,3010,73,19,f +15538,30126,72,1,t +15538,30126,72,2,f +15538,30134,0,1,f +15538,30134,70,1,f +15538,3020,71,4,f +15538,3020,0,1,f +15538,3020,72,9,f +15538,3020,15,2,f +15538,3021,71,4,f +15538,3021,72,2,f +15538,3021,0,6,f +15538,3022,0,6,f +15538,3022,15,6,f +15538,3022,84,12,f +15538,3022,70,2,f +15538,3022,19,1,f +15538,3022,71,13,f +15538,3023,1,6,f +15538,3023,272,12,f +15538,3023,72,16,f +15538,3023,46,1,f +15538,3023,4,1,f +15538,3023,2,1,f +15538,3023,70,15,f +15538,3023,15,2,f +15538,3023,19,2,f +15538,3023,71,55,f +15538,3023,212,6,f +15538,3023,0,2,f +15538,30237b,15,2,f +15538,30237b,71,1,f +15538,3024,297,1,t +15538,3024,297,1,f +15538,3024,71,12,f +15538,3024,15,17,f +15538,3024,70,2,t +15538,3024,0,2,t +15538,3024,71,2,t +15538,3024,73,1,t +15538,3024,73,3,f +15538,3024,0,14,f +15538,3024,46,1,t +15538,3024,272,6,f +15538,3024,1,5,f +15538,3024,28,1,t +15538,3024,272,1,t +15538,3024,15,3,t +15538,3024,70,6,f +15538,3024,1,1,t +15538,3024,46,1,f +15538,3024,28,8,f +15538,3032,71,1,f +15538,3032,72,1,f +15538,3033,72,1,f +15538,30340,15,1,f +15538,3035,72,2,f +15538,30350b,72,1,f +15538,3036,72,2,f +15538,30374,71,1,f +15538,30374,15,2,f +15538,30374,70,2,f +15538,30374,297,4,f +15538,3040b,72,6,f +15538,30414,15,1,f +15538,3062b,72,6,f +15538,3062b,19,2,f +15538,3062b,46,6,f +15538,3062b,15,1,f +15538,3065,36,3,f +15538,3068b,2,4,f +15538,3068b,70,8,f +15538,3068b,28,8,f +15538,3068b,0,5,f +15538,3068b,71,2,f +15538,3068b,72,27,f +15538,3068b,15,7,f +15538,3068bpr0197,28,1,f +15538,3068bpr0201,15,4,f +15538,3068bpr0215,28,1,f +15538,3068bpr0219b,19,1,f +15538,3068bpr0241,15,1,f +15538,3069b,19,2,f +15538,3069b,4,1,f +15538,3069b,71,3,f +15538,3069b,272,8,f +15538,3069b,72,18,f +15538,3069b,15,6,f +15538,3069b,0,10,f +15538,3069b,70,3,f +15538,3069b,1,2,f +15538,3069b,28,10,f +15538,3069b,2,6,f +15538,3069bpr0055,15,1,f +15538,3069bpr0099,15,4,f +15538,3069bpr0100,2,1,f +15538,3070b,71,11,f +15538,3070b,15,1,t +15538,3070b,0,3,t +15538,3070b,1,1,t +15538,3070b,19,2,f +15538,3070b,0,13,f +15538,3070b,1,1,f +15538,3070b,19,1,t +15538,3070b,288,1,t +15538,3070b,71,2,t +15538,3070b,15,5,f +15538,3070b,288,3,f +15538,3176,71,3,f +15538,3176,72,1,f +15538,32028,70,8,f +15538,32028,71,4,f +15538,32028,72,18,f +15538,32062,0,10,f +15538,32062,4,8,f +15538,32064a,72,2,f +15538,3245c,72,6,f +15538,32529,0,1,f +15538,3297,0,3,f +15538,33291,10,2,t +15538,33291,5,1,f +15538,33291,31,1,f +15538,33291,26,2,t +15538,33291,10,5,f +15538,33291,31,1,t +15538,33291,26,6,f +15538,33291,5,1,t +15538,3456,72,3,f +15538,3460,72,13,f +15538,3460,0,1,f +15538,3460,19,3,f +15538,3460,71,6,f +15538,3622,19,6,f +15538,3622,73,18,f +15538,3622,72,4,f +15538,3622,71,6,f +15538,3623,19,2,f +15538,3623,288,1,f +15538,3623,72,8,f +15538,3623,15,8,f +15538,3623,71,11,f +15538,3626c,15,2,f +15538,3626c,47,1,f +15538,3626cpr0001,14,6,f +15538,3648b,72,1,f +15538,3659,71,4,f +15538,3660,0,3,f +15538,3660,72,3,f +15538,3660,19,1,f +15538,3665,72,7,f +15538,3666,70,9,f +15538,3666,0,2,f +15538,3666,72,22,f +15538,3666,19,2,f +15538,3666,71,19,f +15538,3666,272,2,f +15538,3673,71,1,t +15538,3673,71,1,f +15538,3679,71,3,f +15538,3680,0,3,f +15538,3700,71,4,f +15538,3700,72,2,f +15538,3710,0,9,f +15538,3710,70,2,f +15538,3710,72,11,f +15538,3710,15,3,f +15538,3710,71,16,f +15538,3741,2,1,f +15538,3741,2,1,t +15538,3795,70,4,f +15538,3795,71,6,f +15538,3795,15,2,f +15538,3795,0,3,f +15538,3811,70,1,f +15538,3830,0,1,f +15538,3831,0,1,f +15538,3832,71,1,f +15538,3836,70,1,f +15538,3839b,0,3,f +15538,3899,47,1,f +15538,3901,71,1,f +15538,3940b,0,2,f +15538,3941,70,1,f +15538,3957b,0,4,f +15538,3960,70,1,f +15538,40240,70,1,f +15538,4032a,19,2,f +15538,4032a,71,3,f +15538,4032a,72,5,f +15538,4032a,308,2,f +15538,4070,15,4,f +15538,4070,70,8,f +15538,4070,72,8,f +15538,4079b,70,2,f +15538,4081b,71,3,f +15538,41334,72,1,f +15538,41539,72,2,f +15538,4161,0,6,f +15538,4162,71,3,f +15538,4162,72,4,f +15538,4162,272,7,f +15538,4216,15,14,f +15538,42446,0,1,t +15538,42446,0,1,f +15538,4274,71,5,f +15538,4274,71,3,t +15538,4282,72,2,f +15538,4286,15,4,f +15538,4286,4,4,f +15538,4345b,15,1,f +15538,4345b,71,1,f +15538,4346,71,1,f +15538,4346,47,1,f +15538,44294,71,1,f +15538,4449,0,1,f +15538,44728,0,1,f +15538,4477,71,4,f +15538,4510,72,4,f +15538,4510,71,1,f +15538,4529,0,1,f +15538,4533,15,1,f +15538,4536,15,4,f +15538,4599b,71,1,f +15538,4599b,0,2,t +15538,4599b,15,3,f +15538,4599b,15,1,t +15538,4599b,0,7,f +15538,4599b,71,1,t +15538,4733,71,1,f +15538,4735,0,2,f +15538,4740,72,1,f +15538,4740,47,2,f +15538,4740,15,4,f +15538,4740,0,3,f +15538,47905,71,1,f +15538,48336,71,1,f +15538,4865b,71,1,f +15538,4865b,47,1,f +15538,48729b,0,1,t +15538,48729b,0,2,f +15538,54200,0,1,t +15538,54200,72,9,f +15538,54200,71,4,f +15538,54200,71,1,t +15538,54200,72,1,t +15538,54200,0,4,f +15538,57895,47,3,f +15538,57895pr0006,47,2,f +15538,58181,40,2,f +15538,58380,15,1,f +15538,59443,70,12,f +15538,59443,71,1,f +15538,59900,46,2,f +15538,59900,0,5,f +15538,59900,70,1,f +15538,59900,297,6,f +15538,6041,0,1,f +15538,60470b,0,2,f +15538,60474,297,2,f +15538,60474,0,1,f +15538,60475b,84,2,f +15538,60475b,0,6,f +15538,60478,0,3,f +15538,60479,71,7,f +15538,60481,71,1,f +15538,60581,0,2,f +15538,60592,0,9,f +15538,60592,15,17,f +15538,60593,70,1,f +15538,60593,15,8,f +15538,60593,0,3,f +15538,60594,0,3,f +15538,60594,15,5,f +15538,60594,70,1,f +15538,60596,70,7,f +15538,60596,212,3,f +15538,60601,47,26,f +15538,60602,47,12,f +15538,60603,47,7,f +15538,60603pr0002,47,1,f +15538,60614,72,2,f +15538,60616b,47,2,f +15538,60623,0,2,f +15538,60797c02,0,1,f +15538,60897,15,5,f +15538,60897,1,2,f +15538,61252,0,1,f +15538,61252,1,2,f +15538,6141,14,1,t +15538,6141,14,1,f +15538,6141,4,3,f +15538,6141,0,1,t +15538,6141,19,1,t +15538,6141,15,2,t +15538,6141,15,4,f +15538,6141,297,1,t +15538,6141,1,2,t +15538,6141,1,3,f +15538,6141,0,3,f +15538,6141,4,2,t +15538,6141,297,3,f +15538,6141,19,4,f +15538,61506,70,1,f +15538,61780,70,1,f +15538,62113,0,3,f +15538,6231,15,1,f +15538,62361,70,1,f +15538,62462,70,1,f +15538,6266,0,1,t +15538,6266,0,1,f +15538,62810,28,1,f +15538,63864,71,12,f +15538,63864,72,8,f +15538,63864,70,12,f +15538,63864,4,6,f +15538,63965,70,1,f +15538,64644,0,13,f +15538,6541,72,9,f +15538,6541,0,1,f +15538,6628,0,2,f +15538,6636,72,7,f +15538,6636,28,8,f +15538,6636,0,3,f +15538,6636,71,24,f +15538,6636,70,1,f +15538,73983,71,2,f +15538,85861,0,17,f +15538,85861,0,2,t +15538,85974,84,1,f +15538,85975,15,1,f +15538,85984,72,7,f +15538,85984,0,3,f +15538,86500,288,2,f +15538,87079,0,1,f +15538,87079,70,1,f +15538,87079,71,8,f +15538,87087,71,3,f +15538,87087,0,6,f +15538,87552,71,1,f +15538,87552,47,2,f +15538,87580,71,3,f +15538,87618,0,1,f +15538,87994,71,1,f +15538,87994,71,1,t +15538,88072,0,1,f +15538,88072,15,1,f +15538,91988,72,1,f +15538,91988,71,10,f +15538,92107,72,4,f +15538,92280,0,4,f +15538,92410,15,1,f +15538,92410,71,2,f +15538,92438,72,1,f +15538,92593,71,9,f +15538,92690,70,1,f +15538,92690,71,1,f +15538,92746,19,1,f +15538,92926,72,1,f +15538,93273,272,3,f +15538,93575,72,7,f +15538,93606,72,3,f +15538,96874,25,1,t +15538,970c00,4,1,f +15538,970c00,308,1,f +15538,970c00,272,1,f +15538,970c00,28,1,f +15538,970c00,19,1,f +15538,970c00,15,1,f +15538,973pr0080c01,4,1,f +15538,973pr1163c01,272,1,f +15538,973pr1857c01,1,1,f +15538,973pr2500c01,1,1,f +15538,973pr2557c01,73,1,f +15538,973pr2867c01,379,1,f +15538,98100,15,2,f +15538,98100,484,1,f +15538,98138,71,2,f +15538,98138,71,1,t +15538,98138pr0013,15,3,f +15538,98138pr0013,15,2,t +15538,98138pr0018,84,3,f +15538,98138pr0018,84,2,t +15538,98283,84,64,f +15538,98283,72,19,f +15538,98283,71,4,f +15538,98385,0,1,f +15538,99206,71,2,f +15538,99207,0,6,f +15538,99207,4,3,f +15538,99780,72,4,f +15538,99780,2,8,f +15538,99780,71,2,f +15538,99781,71,4,f +15538,99781,0,1,f +15539,19052,47,1,f +15542,11399,15,1,f +15542,15332,71,2,f +15542,18677,71,1,f +15542,18937,15,1,f +15542,19220,0,1,f +15542,2412b,72,2,f +15542,2431,1,2,f +15542,2431pr0077,15,4,f +15542,2432,72,1,f +15542,2446,0,1,f +15542,2447,47,1,f +15542,2460,0,1,f +15542,2653,71,2,f +15542,3003,72,2,f +15542,30153,34,1,f +15542,30237b,1,2,f +15542,3034,27,1,f +15542,30414,72,1,f +15542,3068b,72,1,f +15542,3068bpr0281,71,1,f +15542,3069b,46,4,f +15542,3069b,36,3,f +15542,3069b,33,1,f +15542,3185,0,1,f +15542,3245c,1,2,f +15542,3622,15,2,f +15542,3624,1,1,f +15542,3626cpr0933,14,1,f +15542,3626cpr1145,14,1,f +15542,3666,1,3,f +15542,3666,15,1,f +15542,3795,1,1,f +15542,3829c01,1,1,f +15542,4079,1,1,f +15542,48336,71,4,f +15542,50859b,0,1,f +15542,50860,25,1,f +15542,50861,0,2,f +15542,50862,71,2,f +15542,52031,1,1,f +15542,55981,71,4,f +15542,60594,15,2,f +15542,6140,71,1,f +15542,61482,71,1,f +15542,62113,72,2,f +15542,87079pr0066,72,1,f +15542,87079pr0115,1,2,f +15542,92402,0,4,f +15542,92583,47,1,f +15542,93273,0,4,f +15542,93273,71,1,f +15542,970c00,1,1,f +15542,970c00,71,1,f +15542,973pr3485c01,15,1,f +15542,973pr3627,212,1,f +15543,12825,14,1,f +15543,12825,71,3,f +15543,22667,27,1,t +15543,22667,27,1,f +15543,2419,25,2,f +15543,2431,308,2,f +15543,2432,14,2,f +15543,2436,71,1,f +15543,2449,25,8,f +15543,2453b,70,2,f +15543,2453b,71,1,f +15543,2454a,72,4,f +15543,2654,47,2,f +15543,2654,1,6,f +15543,2817,71,2,f +15543,3001,71,2,f +15543,3003,272,1,f +15543,3003,71,1,f +15543,3004,25,8,f +15543,3004,71,6,f +15543,3004,1,6,f +15543,3005,1,2,f +15543,3005,71,3,f +15543,3005,25,9,f +15543,3010,25,4,f +15543,3010,1,2,f +15543,3010,71,5,f +15543,30145,71,4,f +15543,30176,2,2,f +15543,3020,25,2,f +15543,3020,70,5,f +15543,3021,19,2,f +15543,3021,72,5,f +15543,3022,4,4,f +15543,30222,42,1,f +15543,3023,27,1,f +15543,3023,1,6,f +15543,3023,4,8,f +15543,3024,15,1,f +15543,3032,19,5,f +15543,3033,19,1,f +15543,3034,72,1,f +15543,3035,72,1,f +15543,30357,4,4,f +15543,30367b,14,2,f +15543,30367b,288,1,f +15543,30367b,4,2,f +15543,30374,15,2,f +15543,30374,0,1,f +15543,3039,25,2,f +15543,3040b,71,2,f +15543,3048c,25,10,f +15543,30552,0,1,f +15543,3062b,1,2,f +15543,3062b,19,3,f +15543,3068b,70,2,f +15543,3068b,15,2,f +15543,3068b,25,3,f +15543,3069b,1,1,f +15543,3069b,73,7,f +15543,3069b,71,2,f +15543,3069bpr0086,71,1,f +15543,32028,71,2,f +15543,32062,0,2,f +15543,32316,15,1,f +15543,3245c,71,6,f +15543,32530,0,2,f +15543,32556,19,1,f +15543,3308,72,1,f +15543,33183,10,2,f +15543,33183,10,2,t +15543,3622,25,2,f +15543,3622,1,2,f +15543,3659,4,1,f +15543,3660,72,2,f +15543,3660,25,4,f +15543,3665,25,2,f +15543,3665,1,1,f +15543,3665,72,2,f +15543,3666,4,2,f +15543,3666,25,4,f +15543,3673,71,2,f +15543,3673,71,1,t +15543,3678b,71,6,f +15543,3679,71,2,f +15543,3680,1,2,f +15543,3685,71,2,f +15543,3700,0,1,f +15543,3710,70,3,f +15543,3794b,0,1,f +15543,3794b,2,1,f +15543,3795,70,2,f +15543,3795,19,5,f +15543,3830,1,1,f +15543,3830,4,4,f +15543,3831,4,4,f +15543,3831,1,1,f +15543,3832,4,1,f +15543,3899,47,2,f +15543,3937,72,2,f +15543,3941,1,1,f +15543,3942c,1,1,f +15543,3957b,15,1,f +15543,3961,25,1,f +15543,4032a,15,1,f +15543,4032a,70,1,f +15543,4079,1,1,f +15543,4085c,1,2,f +15543,4085c,15,1,f +15543,4150,0,2,f +15543,41879a,4,1,f +15543,4286,71,2,f +15543,43093,1,1,f +15543,4345b,4,1,f +15543,4346,47,1,f +15543,43898,4,1,f +15543,43898,1,2,f +15543,4460b,25,8,f +15543,4522,0,1,f +15543,4589,70,1,f +15543,4738a,70,2,f +15543,4740,0,4,f +15543,4740pr0004a,29,2,f +15543,47905,19,1,f +15543,4790b,70,1,f +15543,48336,4,5,f +15543,4864bpr16,47,2,f +15543,4865a,40,1,f +15543,4865b,0,1,f +15543,52107,4,3,f +15543,54200,71,6,f +15543,54200,25,16,f +15543,54200,73,4,f +15543,54200,71,1,t +15543,54200,73,1,t +15543,54200,25,1,t +15543,54383,25,4,f +15543,54384,25,4,f +15543,54872pr0010,14,1,f +15543,54873pr0007,78,1,f +15543,58176,36,1,f +15543,60339pr0002,19,1,f +15543,60340,4,1,f +15543,60471,0,1,f +15543,60474,72,1,f +15543,60581,25,2,f +15543,60583a,0,1,f +15543,60592,70,2,f +15543,6091,1,2,f +15543,6134,0,1,f +15543,6140,15,1,f +15543,6141,46,1,f +15543,6141,41,2,f +15543,6141,46,1,t +15543,6141,179,2,t +15543,6141,41,1,t +15543,6141,0,2,f +15543,6141,25,1,t +15543,6141,1,1,t +15543,6141,25,15,f +15543,6141,179,5,f +15543,6141,1,1,f +15543,6141,297,4,f +15543,6141,15,1,t +15543,6141,27,4,f +15543,6141,297,2,t +15543,6148,2,5,f +15543,61485,0,1,f +15543,6187,14,4,f +15543,6256,191,1,f +15543,63864,15,2,f +15543,64390,70,1,f +15543,64644,308,2,f +15543,64644,0,1,f +15543,64647,57,1,t +15543,64647,57,2,f +15543,64767pr0001,378,1,f +15543,6541,0,4,f +15543,6628,0,1,f +15543,73983,4,8,f +15543,87087,72,1,f +15543,87552,4,1,f +15543,87580,272,1,f +15543,87580,73,6,f +15543,92280,4,12,f +15543,92947,19,1,f +15543,92950,1,2,f +15543,92950,71,3,f +15543,970c00,378,1,f +15543,970c00pr0108,78,1,f +15543,973c11,14,1,f +15543,973pr1983c01,78,1,f +15543,973pr2009c01,19,1,f +15543,98549,15,1,f +15544,2436,15,2,f +15544,30016,15,1,f +15544,3003,15,1,f +15544,3004,15,4,f +15544,3008,5,1,f +15544,3010,1,3,f +15544,3010,15,3,f +15544,30111a,74,1,f +15544,3020,15,1,f +15544,3031,15,1,f +15544,3039,14,1,f +15544,3062b,36,1,f +15544,3062b,15,2,f +15544,3062b,47,2,f +15544,3062b,34,1,f +15544,3068b,15,4,f +15544,3069bpr0099,15,2,f +15544,3307,13,4,f +15544,3659,5,2,f +15544,3741,2,2,f +15544,3741,2,1,t +15544,3742,14,2,t +15544,3742,14,6,f +15544,3855,47,1,f +15544,3899,47,2,f +15544,3940b,15,2,f +15544,4150,15,2,f +15544,4161pb01,74,1,f +15544,45,383,1,f +15544,4589,15,2,f +15544,6141,47,2,f +15544,6141,47,1,t +15544,6161,20,1,f +15544,6165,15,1,f +15544,6178,13,2,f +15544,6179,15,1,f +15544,6179,5,1,f +15544,6179,13,1,f +15544,6180,5,1,f +15544,6182,13,2,f +15544,6182,15,2,f +15544,6183,13,4,f +15544,6184,5,1,f +15544,6186,14,1,f +15544,6187,5,2,f +15544,6190,74,1,f +15544,6191,15,1,f +15544,6192,5,2,f +15544,6197b,5,1,f +15544,6198,5,2,f +15544,6203,15,1,f +15544,6215,5,2,f +15544,6255,2,2,f +15544,6256,1,2,f +15544,6556,1,1,f +15544,bel001,74,1,f +15544,bel001a,74,1,f +15544,bel001b,74,1,f +15544,bel001c,74,1,f +15544,bel001d,74,1,f +15544,belvfem12,9999,1,f +15544,belvfem20,9999,1,f +15544,belvmale6,9999,1,f +15544,belvmale9,9999,1,f +15544,belvskirt02,15,1,f +15544,crutch,8,2,f +15544,legcast,15,1,f +15544,pouch07,15,2,f +15545,15712,72,4,f +15545,2412b,25,4,f +15545,3005,0,2,f +15545,3070b,25,2,f +15545,3794b,0,1,f +15545,3839b,0,4,f +15545,4070,72,1,f +15545,4733,0,1,f +15545,52107,0,1,f +15545,54200,40,1,f +15545,54200,0,1,f +15545,6141,15,1,f +15545,64567,71,4,f +15550,2339,2,1,f +15550,2357,272,6,f +15550,2431,1,4,f +15550,2453a,288,2,f +15550,2454a,2,2,f +15550,2542,70,2,f +15550,2555,0,2,f +15550,3001,73,3,f +15550,3003,73,2,f +15550,3004,2,1,f +15550,3004,73,12,f +15550,3004,72,2,f +15550,3005,2,3,f +15550,3007,272,1,f +15550,30093,34,1,f +15550,3010,73,2,f +15550,30157,71,1,f +15550,30169,4,1,f +15550,3020,70,1,f +15550,3020,1,2,f +15550,3022,0,1,f +15550,3023,1,6,f +15550,3023,288,2,f +15550,3024,72,4,f +15550,3032,1,1,f +15550,3036,1,2,f +15550,30383,72,2,f +15550,3039,272,4,f +15550,3039,73,1,f +15550,3040b,33,6,f +15550,30608,0,1,f +15550,3062b,272,2,f +15550,3065,33,4,f +15550,3068b,71,1,f +15550,3069b,71,4,f +15550,3070b,72,1,t +15550,3070b,72,2,f +15550,32064b,288,3,f +15550,33121,191,1,f +15550,3455,1,1,f +15550,3460,2,2,f +15550,3460,272,1,f +15550,3626bpb0170,78,1,f +15550,3626bpb0245,71,1,f +15550,3626bpr0420,78,1,f +15550,3626bpr0421,78,1,f +15550,3626bpr0427,78,1,f +15550,3659,73,4,f +15550,3665,272,2,f +15550,3666,2,1,f +15550,37,383,2,f +15550,3700,1,3,f +15550,3705,0,1,f +15550,3710,1,1,f +15550,3738,1,2,f +15550,3795,1,1,f +15550,3795,2,1,f +15550,3830,72,1,f +15550,3831,72,1,f +15550,3898,41,1,f +15550,3937,71,1,f +15550,40233,0,1,f +15550,40239,320,1,f +15550,40240,484,1,f +15550,40242,288,1,f +15550,40251,70,1,f +15550,41677,0,1,f +15550,43719,72,2,f +15550,43899,73,1,f +15550,44302a,72,2,f +15550,4460a,1,2,f +15550,4589,34,7,f +15550,4855,70,2,f +15550,51345pr01,288,1,f +15550,53389,379,1,f +15550,59275,25,2,f +15550,6086,0,1,f +15550,6126a,34,3,f +15550,6134,1,1,f +15550,6141,57,2,f +15550,6141,57,1,t +15550,6538b,2,1,f +15550,6587,72,5,f +15550,970c00,72,2,f +15550,970x021,78,1,f +15550,970x140,78,1,f +15550,973pb0111c01,288,1,f +15550,973pb0122c01,28,1,f +15550,973pb0337c01,4,1,f +15550,973pr0907c01,72,2,f +15551,3020,2,1,f +15551,3040b,72,2,f +15551,3847,148,1,f +15551,3847,148,2,t +15551,3941,71,1,f +15551,54200,72,1,f +15551,54200,72,2,t +15552,3001a,14,9,f +15552,3001a,1,8,f +15552,3001a,0,7,f +15552,3001a,4,24,f +15552,3001a,15,10,f +15552,3002a,1,2,f +15552,3002a,4,2,f +15552,3002a,15,4,f +15552,3003,15,8,f +15552,3003,4,8,f +15552,3003,1,2,f +15552,3003,14,4,f +15552,3004,15,8,f +15552,3081cc01,4,3,f +15552,3579,4,1,f +15552,3581,15,2,f +15552,3582,1,2,f +15552,453cc01,4,1,f +15552,700ed,2,1,f +15552,7930,1,1,f +15553,11090,0,1,f +15553,11153,19,8,f +15553,11212,72,4,f +15553,11215,0,8,f +15553,11458,72,1,f +15553,11477,80,4,f +15553,11477,15,4,f +15553,11477,288,8,f +15553,11477,71,2,f +15553,12825,14,2,f +15553,13547,0,4,f +15553,14769pr0004,71,2,f +15553,15068,15,18,f +15553,15573,71,29,f +15553,15920,9999,1,f +15553,16280,15,1,f +15553,16681,9999,1,f +15553,2343,47,2,f +15553,2412b,297,1,f +15553,2412b,70,8,f +15553,2412b,0,6,f +15553,2412b,179,8,f +15553,2420,70,10,f +15553,2431,15,4,f +15553,2431,0,2,f +15553,2431,288,28,f +15553,2432,71,2,f +15553,24607,40,2,f +15553,2540,19,2,f +15553,2540,72,1,f +15553,2736,71,1,f +15553,2741,0,1,f +15553,2780,0,2,t +15553,2780,0,26,f +15553,2817,0,2,f +15553,298c02,15,1,t +15553,298c02,15,1,f +15553,3002,0,3,f +15553,3004,288,6,f +15553,3004,19,5,f +15553,3004,70,12,f +15553,3005,15,2,f +15553,3005,288,12,f +15553,3005,28,6,f +15553,3009,70,4,f +15553,3010,288,11,f +15553,3010,0,1,f +15553,30151a,47,1,f +15553,3020,288,13,f +15553,3020,19,8,f +15553,3020,0,4,f +15553,3021,71,10,f +15553,3021,288,6,f +15553,3022,70,4,f +15553,3023,288,38,f +15553,3023,40,6,f +15553,3023,71,6,f +15553,3023,19,18,f +15553,3023,0,4,f +15553,3023,70,4,f +15553,3024,182,2,t +15553,3024,4,2,f +15553,3024,70,4,f +15553,3024,19,8,f +15553,3024,70,1,t +15553,3024,0,8,f +15553,3024,40,1,t +15553,3024,0,2,t +15553,3024,40,2,f +15553,3024,288,22,f +15553,3024,4,1,t +15553,3024,288,3,t +15553,3024,47,1,t +15553,3024,47,2,f +15553,3024,182,4,f +15553,3024,19,2,t +15553,3024,71,2,t +15553,3024,71,8,f +15553,3032,72,1,f +15553,3034,71,1,f +15553,3035,0,3,f +15553,3035,15,1,f +15553,30350b,72,1,f +15553,30367c,72,1,f +15553,30374,0,1,f +15553,30374,71,2,f +15553,30414,4,1,f +15553,30414,288,6,f +15553,3068b,70,1,f +15553,3068b,4,1,f +15553,3068b,19,6,f +15553,3068b,288,4,f +15553,3069b,40,2,f +15553,3069b,72,6,f +15553,3069b,19,6,f +15553,3069bpr0090,72,1,f +15553,3070b,28,14,f +15553,3070b,71,4,f +15553,3070b,71,1,t +15553,3070b,19,22,f +15553,3070b,288,12,f +15553,3070b,36,4,f +15553,3070b,0,1,f +15553,3070b,0,1,t +15553,3070b,19,3,t +15553,3070b,36,2,t +15553,3070b,70,2,f +15553,3070b,70,1,t +15553,3070b,15,2,t +15553,3070b,288,3,t +15553,3070b,28,1,t +15553,3070b,15,18,f +15553,3176,288,2,f +15553,32000,0,4,f +15553,32013,72,1,f +15553,32028,72,6,f +15553,32123b,71,1,t +15553,32123b,14,4,f +15553,32123b,14,1,t +15553,32123b,71,2,f +15553,32523,80,4,f +15553,3456,71,1,f +15553,3460,0,5,f +15553,3623,15,1,f +15553,3623,0,4,f +15553,3623,70,3,f +15553,3623,288,18,f +15553,3660,288,4,f +15553,3665,0,7,f +15553,3666,71,6,f +15553,3666,288,8,f +15553,3666,15,1,f +15553,3700,71,2,f +15553,3710,19,7,f +15553,3710,0,8,f +15553,3710,288,6,f +15553,3794b,70,2,f +15553,3832,19,5,f +15553,3832,72,5,f +15553,3894,0,4,f +15553,3895,1,4,f +15553,3895,0,2,f +15553,3937,72,2,f +15553,3941,41,1,f +15553,4032a,72,2,f +15553,4070,72,6,f +15553,4081b,0,4,f +15553,4150,288,2,f +15553,4162,71,1,f +15553,4162,72,5,f +15553,4162,0,1,f +15553,42446,70,2,f +15553,42446,70,1,t +15553,4274,1,8,f +15553,4274,1,1,t +15553,43093,1,1,t +15553,43093,1,2,f +15553,4342,84,1,f +15553,44309,0,4,f +15553,4460b,288,4,f +15553,44728,72,1,f +15553,4510,72,3,f +15553,4735,0,2,f +15553,4740,71,2,f +15553,4740,47,4,f +15553,48336,4,2,f +15553,48724,0,1,f +15553,53451,0,1,t +15553,53451,0,4,f +15553,54200,288,14,f +15553,54200,14,1,f +15553,54200,28,1,t +15553,54200,191,1,t +15553,54200,4,2,f +15553,54200,288,1,t +15553,54200,14,1,t +15553,54200,15,2,t +15553,54200,19,2,f +15553,54200,28,4,f +15553,54200,15,8,f +15553,54200,19,1,t +15553,54200,191,1,f +15553,54200,4,1,t +15553,56145,71,4,f +15553,56898,0,1,f +15553,56904,15,1,f +15553,59349,71,1,f +15553,60476,15,2,f +15553,60478,0,10,f +15553,60479,0,4,f +15553,60581,40,2,f +15553,6081,288,1,f +15553,6091,19,26,f +15553,6091,288,4,f +15553,6091,70,8,f +15553,6091,15,10,f +15553,6111,72,2,f +15553,61184,71,1,f +15553,6134,0,5,f +15553,6141,297,2,f +15553,6141,80,4,f +15553,6141,0,8,f +15553,6141,0,2,t +15553,6141,47,1,t +15553,6141,4,1,f +15553,6141,47,2,f +15553,6141,4,1,t +15553,6141,297,1,t +15553,6141,80,3,t +15553,6191,288,2,f +15553,6191pr0001,288,12,f +15553,62360,288,4,f +15553,62462,80,13,f +15553,62701,179,4,f +15553,63864,15,2,f +15553,63864,72,4,f +15553,63864,288,10,f +15553,63868,0,6,f +15553,63965,70,1,f +15553,6541,0,12,f +15553,6558,1,11,f +15553,6636,19,2,f +15553,73983,288,4,f +15553,76766,71,4,f +15553,87079,15,12,f +15553,87079,72,2,f +15553,87083,72,4,f +15553,87087,0,6,f +15553,87087,288,24,f +15553,87544,40,2,f +15553,91884,179,2,f +15553,91988,70,2,f +15553,92280,0,4,f +15553,92280,4,2,f +15553,93273,19,2,f +15553,93555,179,2,f +15553,93555,179,1,t +15553,93604,288,2,f +15553,96874,25,1,t +15553,98138,71,2,t +15553,98138,182,1,t +15553,98138,71,2,f +15553,98138,182,2,f +15553,98138pr0012,179,3,f +15553,98138pr0012,179,1,t +15553,99206,0,8,f +15553,99207,4,4,f +15553,99207,0,4,f +15553,99780,0,3,f +15553,99781,71,1,f +15554,3001a,1,21,f +15554,3001a,15,21,f +15554,3001a,47,21,f +15554,3001a,4,21,f +15554,3001a,14,21,f +15554,3001a,0,21,f +15555,32062,0,2,f +15555,32073,0,2,f +15555,3705,0,2,f +15555,3706,0,2,f +15555,3707,0,2,f +15555,3708,0,2,f +15555,3737,0,2,f +15555,4519,0,2,f +15555,6538b,7,2,f +15557,2654,0,1,f +15557,3004,15,4,f +15557,3004,25,5,f +15557,3021,0,2,f +15557,3021,25,1,f +15557,3023,25,4,f +15557,3023,0,2,f +15557,30237b,15,2,f +15557,3024,25,4,f +15557,30374,15,1,f +15557,3039,25,1,f +15557,3040b,0,2,f +15557,3298,25,1,f +15557,3665,0,2,f +15557,3747b,25,1,f +15557,4085c,25,2,f +15557,4286,0,1,f +15557,43722,25,2,f +15557,43723,25,2,f +15557,4740,15,2,f +15557,54200,0,1,t +15557,54200,0,3,f +15557,6019,0,4,f +15557,60478,0,4,f +15557,6141,0,1,t +15557,6141,0,2,f +15557,87087,15,2,f +15557,87580,15,2,f +15558,2421,0,2,f +15558,3139,0,6,f +15558,4488,4,2,f +15558,4624,7,6,f +15558,4868a,15,2,f +15558,4869,0,2,f +15558,4870,7,3,f +15561,3062b,14,1,t +15561,3062b,14,1,f +15561,33078,4,2,t +15561,33078,4,1,f +15561,3626cpr0893,14,1,f +15561,3834,320,1,f +15561,3834,320,1,t +15561,4599b,14,1,f +15561,4599b,14,2,t +15561,48729b,72,1,t +15561,48729b,72,1,f +15561,970c00pr0408,0,1,f +15561,973pr2189c01,0,1,f +15562,18031,148,1,f +15562,22385,33,1,f +15562,22408,179,1,f +15562,3626cpr1782,14,1,f +15562,3626cpr1785,179,1,f +15562,3844,179,1,f +15562,3846,71,1,f +15562,41879a,71,1,f +15562,4589,4,1,f +15562,4740,4,1,f +15562,47905,4,1,f +15562,48729b,0,2,f +15562,76764,179,1,f +15562,85861,71,2,f +15562,973pr3151c01,71,1,f +15562,98385,70,1,f +15563,10314,15,2,f +15563,10830pat0001,0,1,f +15563,2431,27,1,f +15563,2431,0,2,f +15563,298c02,0,2,f +15563,298c02,0,1,t +15563,3005,15,1,f +15563,3020,71,1,f +15563,3021,85,1,f +15563,3021,15,2,f +15563,3022,71,5,f +15563,3023,15,7,f +15563,3023,33,26,f +15563,3023,71,5,f +15563,3023,27,1,f +15563,3023,2,1,f +15563,3024,71,8,f +15563,3024,33,4,f +15563,3028,71,2,f +15563,3031,27,1,f +15563,30357,15,2,f +15563,3036,71,1,f +15563,30367c,0,2,f +15563,3045,71,4,f +15563,30602,40,1,f +15563,3069b,2,1,f +15563,3069b,71,1,f +15563,3069b,27,2,f +15563,3070b,36,13,f +15563,3070b,27,1,t +15563,3070b,2,1,t +15563,3070b,27,13,f +15563,3070b,36,1,t +15563,3460,27,3,f +15563,3623,15,1,f +15563,3623,2,1,f +15563,3660,15,1,f +15563,3660,71,1,f +15563,3666,15,1,f +15563,3666,71,1,f +15563,3710,27,3,f +15563,3710,2,1,f +15563,3795,15,1,f +15563,3957b,80,2,f +15563,4081b,15,2,f +15563,4081b,71,4,f +15563,4162,71,1,f +15563,41769,15,1,f +15563,41770,15,1,f +15563,4287,71,2,f +15563,44661,15,1,f +15563,4589,80,2,f +15563,4599b,71,3,f +15563,4733,15,1,f +15563,4740,0,2,f +15563,4865a,0,2,f +15563,49668,15,2,f +15563,50950,27,3,f +15563,51739,15,1,f +15563,54200,85,1,t +15563,54200,27,1,t +15563,54200,71,1,t +15563,54200,0,1,t +15563,54200,85,2,f +15563,54200,71,2,f +15563,54200,27,10,f +15563,54200,0,4,f +15563,60478,71,2,f +15563,60481,15,2,f +15563,6141,0,12,f +15563,6141,85,1,t +15563,6141,85,6,f +15563,6141,41,1,t +15563,6141,41,9,f +15563,6141,0,1,t +15563,86035,15,1,f +15563,87079,71,12,f +15563,92280,71,2,f +15564,2419,1,1,f +15564,3020,1,1,f +15564,3023,1,3,f +15564,3024,72,2,f +15564,3024,72,1,t +15564,3034,1,1,f +15564,30374,15,2,f +15564,30503,15,2,f +15564,30602,40,1,f +15564,3069b,15,4,f +15564,3070b,4,3,f +15564,3070b,4,1,t +15564,3460,4,2,f +15564,3794a,15,4,f +15564,4081b,72,2,f +15564,4286,15,3,f +15564,4488,71,1,f +15564,49668,0,2,f +15564,54200,40,2,f +15564,54200,40,1,t +15564,6019,4,2,f +15566,2431,15,1,f +15566,2431,4,1,f +15566,3004,15,3,f +15566,3005,15,5,f +15566,3009,4,2,f +15566,3010,4,3,f +15566,3023,15,4,f +15566,3033,4,1,f +15566,3460,4,2,f +15566,3622,15,2,f +15566,3622,4,3,f +15566,3666,4,3,f +15566,3710,15,3,f +15566,3710,4,4,f +15566,4477,4,1,f +15566,4477,15,1,f +15566,48336,4,2,f +15566,60470a,15,2,f +15566,6636,15,1,f +15566,6636,4,7,f +15567,2357,313,20,f +15567,2357,320,4,f +15567,2357,70,8,f +15567,2357,15,6,f +15567,2412b,0,3,f +15567,2412b,15,18,f +15567,2412b,71,4,f +15567,2420,70,4,f +15567,2420,0,2,f +15567,2431,313,3,f +15567,2431,70,2,f +15567,2432,70,24,f +15567,2445,70,10,f +15567,2456,0,1,f +15567,2508,15,2,f +15567,2540,15,2,f +15567,2555,71,2,f +15567,2566,0,2,f +15567,2584,70,1,f +15567,2585,71,1,f +15567,2654,0,25,f +15567,2877,15,8,f +15567,298c04,15,1,t +15567,298c04,15,2,f +15567,3001,313,4,f +15567,3001,70,4,f +15567,3001,320,2,f +15567,3001,15,1,f +15567,3003,313,2,f +15567,3004,15,6,f +15567,3004,70,4,f +15567,3004,0,3,f +15567,3004,313,2,f +15567,3005,15,8,f +15567,3005,70,8,f +15567,3005,320,2,f +15567,3005,313,4,f +15567,3007,15,14,f +15567,3007,313,1,f +15567,3007,71,30,f +15567,3008,15,1,f +15567,3009,313,2,f +15567,3009,70,2,f +15567,3010,313,9,f +15567,3010,15,5,f +15567,30192,72,1,f +15567,3020,15,1,f +15567,3020,70,2,f +15567,3020,320,1,f +15567,3020,313,2,f +15567,3020,25,2,f +15567,3022,313,4,f +15567,3022,15,3,f +15567,3022,320,1,f +15567,3023,25,4,f +15567,3023,15,35,f +15567,3023,71,62,f +15567,30256,15,1,f +15567,3028,320,9,f +15567,3029,320,1,f +15567,3034,15,14,f +15567,3034,71,30,f +15567,3034,70,5,f +15567,3035,15,6,f +15567,3035,70,2,f +15567,3037,320,2,f +15567,30374,0,4,f +15567,30374,15,2,f +15567,30383,72,4,f +15567,3040b,15,2,f +15567,30602,320,1,f +15567,30602,25,2,f +15567,3062b,0,3,f +15567,3069b,313,11,f +15567,3069b,70,6,f +15567,3069b,40,2,f +15567,3070b,70,4,f +15567,3070b,34,1,t +15567,3070b,70,1,t +15567,3070b,34,1,f +15567,3070b,36,1,f +15567,3070b,313,1,t +15567,3070b,36,1,t +15567,3070b,313,2,f +15567,32002,72,1,t +15567,32002,72,2,f +15567,32028,15,2,f +15567,3245b,15,8,f +15567,32474,15,1,f +15567,3460,15,1,f +15567,3622,70,2,f +15567,3660,313,2,f +15567,3665,313,16,f +15567,3666,15,2,f +15567,3666,70,5,f +15567,3684,0,2,f +15567,3710,15,17,f +15567,3710,0,2,f +15567,3743,15,6,f +15567,3747b,313,2,f +15567,3747b,320,1,f +15567,3749,19,1,f +15567,3794b,15,7,f +15567,3794b,70,7,f +15567,3832,70,12,f +15567,3937,15,2,f +15567,3938,70,22,f +15567,3941,0,1,f +15567,4070,15,14,f +15567,4081b,15,2,f +15567,4085c,0,1,f +15567,4162,313,4,f +15567,42023,320,10,f +15567,42023,313,14,f +15567,4286,313,2,f +15567,4287,320,10,f +15567,4287,313,16,f +15567,43337,313,24,f +15567,43337,70,2,f +15567,43720,320,2,f +15567,43721,320,2,f +15567,43722,70,2,f +15567,43722,15,1,f +15567,43723,70,2,f +15567,43723,15,1,f +15567,44301a,15,2,f +15567,44302a,15,3,f +15567,44302a,70,3,f +15567,4445,320,6,f +15567,44728,72,8,f +15567,4477,70,12,f +15567,4510,15,2,f +15567,4588,70,2,f +15567,4589,15,6,f +15567,4589,70,10,f +15567,4599b,15,10,f +15567,4623,15,2,f +15567,47405,320,2,f +15567,4865a,313,2,f +15567,4865a,15,4,f +15567,56823c100,0,1,f +15567,60032,15,17,f +15567,60601,40,17,f +15567,6091,25,4,f +15567,6111,313,12,f +15567,6111,320,4,f +15567,6141,47,2,f +15567,6141,47,1,t +15567,6141,0,11,f +15567,6141,46,1,t +15567,6141,46,6,f +15567,6141,0,1,t +15567,6180,70,1,f +15567,62462,0,1,f +15567,6632,15,2,f +15567,6636,71,60,f +15567,6636,313,3,f +15567,6636,15,28,f +15567,85080,0,2,f +15567,85080,313,2,f +15567,89648,15,2,f +15567,89649,40,2,f +15570,2456,14,2,f +15570,3001,14,2,f +15570,3001,4,2,f +15570,3001,1,2,f +15570,3002,4,2,f +15570,3002,14,2,f +15570,3003,1,2,f +15570,3003,4,2,f +15570,3003,15,2,f +15570,3003,14,2,f +15570,3003pe2,14,2,f +15570,30145,4,1,f +15570,4727,2,1,f +15570,4728,4,1,f +15570,4744px1,6,1,f +15570,4744px2,4,1,f +15570,6215,2,2,f +15570,6216,2,1,f +15571,2412b,15,1,f +15571,2415,71,3,f +15571,2432,1,1,f +15571,2445,0,1,f +15571,3001,15,1,f +15571,3004,4,1,f +15571,3010,272,3,f +15571,3021,4,1,f +15571,3023,272,4,f +15571,3023,71,2,f +15571,3023,46,1,f +15571,3034,71,2,f +15571,3069bpr0101,71,1,f +15571,3464,15,3,f +15571,3623,15,2,f +15571,3626bpr0498,14,1,f +15571,3626bpr0649,14,1,f +15571,3666,15,3,f +15571,3666,272,1,f +15571,3710,15,1,f +15571,3710,272,4,f +15571,3747b,15,1,f +15571,3794b,15,3,f +15571,3901,70,1,f +15571,3956,71,2,f +15571,41769,272,2,f +15571,41770,272,2,f +15571,4449,70,1,f +15571,44571,15,2,f +15571,47397,15,1,f +15571,47398,15,1,f +15571,47457,4,1,f +15571,48183,15,1,f +15571,4854,72,2,f +15571,4855,72,2,f +15571,4856a,15,1,f +15571,4858,15,1,f +15571,4861,15,1,f +15571,4865a,15,3,f +15571,4868b,71,2,f +15571,4869,71,2,f +15571,48933,15,1,f +15571,50950,272,2,f +15571,54200,272,1,t +15571,54200,272,2,f +15571,54383,15,1,f +15571,54384,15,1,f +15571,57783,40,1,f +15571,59895,0,3,f +15571,60032,15,2,f +15571,60479,15,2,f +15571,60601,40,8,f +15571,61345,15,3,f +15571,6141,34,1,t +15571,6141,36,1,f +15571,6141,36,1,t +15571,6141,34,1,f +15571,6239,15,1,f +15571,62810,484,1,f +15571,6636,272,1,f +15571,95120,15,2,f +15571,970c00,72,1,f +15571,970c00,0,1,f +15571,973pr1166c01,272,1,f +15571,973pr1238c01,0,1,f +15572,160ac01,4,1,f +15572,160ac02,4,1,f +15572,3001a,0,8,f +15572,3003,0,4,f +15572,3004,0,6,f +15572,3005,0,8,f +15572,3005,47,2,f +15572,3009,0,6,f +15572,3010,0,1,f +15572,3010pb001,0,2,f +15572,3021,0,2,f +15572,3022,14,1,f +15572,3022,0,1,f +15572,3027,0,1,f +15572,3032,0,2,f +15572,3037,0,4,f +15572,3040a,0,2,f +15572,3087cc01,4,2,f +15572,7049b,0,2,f +15572,wheel2a,4,4,f +15574,3024,14,1,f +15574,3024,14,1,t +15574,4070,15,1,f +15574,4070,14,3,f +15574,47905,71,1,f +15574,54200,15,1,f +15574,54200,40,1,f +15574,54200,15,1,t +15574,54200,40,1,t +15574,6141,72,1,t +15574,6141,15,1,t +15574,6141,182,2,f +15574,6141,182,1,t +15574,6141,72,5,f +15574,6141,15,3,f +15574,64567,71,2,f +15574,64567,71,1,t +15575,11211,19,1,f +15575,15571,297,1,f +15575,15573,297,1,f +15575,3040b,72,2,f +15575,3040b,320,2,f +15575,37,297,2,f +15575,43722,72,1,f +15575,43723,72,1,f +15575,4497,179,2,f +15575,60470b,0,1,f +15575,60897,15,4,f +15575,6141,0,1,f +15575,63965,72,1,f +15575,92690,297,1,f +15575,93059,297,1,f +15575,98139,297,1,f +15575,98141,297,1,f +15575,98283,71,1,f +15576,2412b,0,1,f +15576,2420,7,4,f +15576,2420,4,2,f +15576,2431,0,4,f +15576,2444,0,2,f +15576,2654,7,1,f +15576,2695,15,4,f +15576,2696,0,4,f +15576,2711,0,2,f +15576,2715,0,1,f +15576,2716,47,1,f +15576,2717,0,1,f +15576,2744,4,2,f +15576,2780,0,2,t +15576,2780,0,17,f +15576,2790,7,1,f +15576,2791,7,1,f +15576,2792,0,1,f +15576,2817,0,2,f +15576,2819,7,1,f +15576,2850a,7,1,f +15576,2851,8,1,f +15576,2852,7,1,f +15576,2853,7,1,f +15576,2905,7,6,f +15576,2952,0,1,f +15576,2994,15,1,f +15576,30000,8,5,f +15576,30000,1,2,f +15576,3001,4,1,f +15576,3023,0,2,f +15576,3039pc1,0,1,f +15576,3068b,4,1,f +15576,3069b,7,1,f +15576,3070b,14,1,t +15576,3070b,14,2,f +15576,32001,0,1,f +15576,32002,8,1,t +15576,32002,8,12,f +15576,3482,7,1,f +15576,3483,0,1,f +15576,3623,0,2,f +15576,3647,7,1,t +15576,3647,7,3,f +15576,3648a,7,3,f +15576,3650c,7,1,f +15576,3651,7,7,f +15576,3660,0,3,f +15576,3665,0,2,f +15576,3666,1,8,f +15576,3666,0,2,f +15576,3673,7,2,f +15576,3700,4,6,f +15576,3700,0,2,f +15576,3701,7,4,f +15576,3701,1,2,f +15576,3704,0,3,f +15576,3705,0,4,f +15576,3706,0,6,f +15576,3707,0,3,f +15576,3709,1,2,f +15576,3709,4,8,f +15576,3709,0,2,f +15576,3710,4,4,f +15576,3710,1,1,f +15576,3710,0,4,f +15576,3713,7,1,t +15576,3713,7,5,f +15576,3749,7,10,f +15576,3795,4,1,f +15576,3795,1,4,f +15576,3894,7,2,f +15576,3894,4,3,f +15576,3894,0,4,f +15576,3894,1,4,f +15576,3933,0,1,f +15576,3934,0,1,f +15576,3937,4,1,f +15576,3938,4,1,f +15576,3956,0,1,f +15576,4032a,7,1,f +15576,4185,7,2,f +15576,4261,7,2,f +15576,4265b,7,12,f +15576,4273b,7,2,f +15576,4274,7,2,f +15576,4285b,0,1,f +15576,4442,0,1,f +15576,4477,0,2,f +15576,4519,0,2,f +15576,4589,14,1,f +15576,4716,0,1,f +15576,6069,4,1,f +15576,6141,34,1,f +15576,6141,36,1,t +15576,6141,36,1,f +15576,6141,34,1,t +15576,6536,7,2,f +15576,6538b,7,2,f +15576,6541,0,2,f +15576,6541,4,2,f +15576,6553,7,2,f +15576,6578,0,1,f +15576,6587,8,4,f +15576,6588,7,1,f +15576,6589,7,2,f +15576,6629,4,6,f +15576,75c12,8,2,f +15576,tech012,9999,1,f +15577,102703uk,9999,1,t +15577,2530,8,2,f +15577,2543,4,1,f +15577,2544,6,1,f +15577,2562,6,1,f +15577,3068bp30,15,1,f +15577,3626apb03,14,1,f +15577,3626apr0001,14,1,f +15577,970c00,4,1,f +15577,970c00,7,1,f +15577,973p31c01,14,1,f +15577,973p34c01,1,1,f +15580,2456,1,1,f +15580,3001,14,1,f +15580,3001,4,1,f +15580,3001,1,1,f +15580,3001pr1,14,1,f +15580,3002,14,2,f +15580,3003,1,1,f +15580,3003,15,2,f +15580,3003,4,2,f +15580,3003,0,2,f +15580,3003,14,1,f +15580,3003pe1,14,2,f +15580,4130,4,1,f +15580,4131,15,1,f +15580,4132,4,1,f +15580,4133,15,1,f +15580,4202,2,1,f +15581,2780,0,11,f +15581,30028,0,18,f +15581,32002,8,9,f +15581,32013,135,6,f +15581,32013,0,2,f +15581,32014,0,1,f +15581,32015,0,1,f +15581,32016,0,1,f +15581,32039,0,3,f +15581,32062,0,22,f +15581,32073,0,1,f +15581,32123b,7,39,f +15581,32184,0,1,f +15581,32184,135,2,f +15581,32209,0,6,f +15581,32269,0,1,f +15581,32270,0,8,f +15581,32498,0,6,f +15581,32525,0,4,f +15581,32526,0,2,f +15581,32526,135,2,f +15581,33299a,135,2,f +15581,3650c,0,4,f +15581,3705,0,4,f +15581,3706,0,2,f +15581,3708,0,1,f +15581,3713,0,2,f +15581,3749,7,6,f +15581,41662,0,1,f +15581,41669,135,1,f +15581,41669,33,2,f +15581,41677,0,4,f +15581,41681,135,1,f +15581,41752,8,1,f +15581,41753,8,1,f +15581,4177936,89,1,f +15581,4232,33,1,f +15581,4232rc,33,1,f +15581,4232sc,0,1,f +15581,4274,7,3,f +15581,43093,0,8,f +15581,44374,135,12,f +15581,4519,0,5,f +15581,4589,135,2,f +15581,6141,0,2,f +15581,6536,0,6,f +15581,6538b,0,1,f +15581,6558,0,4,f +15581,6589,0,6,f +15581,6628,0,1,f +15581,71509,0,4,f +15581,75535,0,1,f +15581,75c18,179,2,f +15581,78c02,179,1,f +15581,78c07,179,1,f +15581,78c10,0,1,f +15581,85545,1,1,f +15581,x165c05,47,2,f +15581,x400c12,47,2,f +15582,2815,0,12,f +15582,3001,4,8,f +15582,3001,1,8,f +15582,3021,0,8,f +15582,3460,0,8,f +15582,3460,4,8,f +15582,3482,7,12,f +15582,3483,0,8,f +15582,3623,0,12,f +15582,3623,4,12,f +15582,3634,0,4,f +15582,3647,7,50,f +15582,3648a,7,14,f +15582,3649,7,8,f +15582,3650,7,8,f +15582,3651,7,50,f +15582,3652,7,4,f +15582,3666,0,8,f +15582,3666,4,8,f +15582,3673,7,150,f +15582,3679,7,20,f +15582,3680,1,20,f +15582,3700,1,24,f +15582,3700,4,24,f +15582,3701,4,16,f +15582,3701,1,24,f +15582,3702,1,4,f +15582,3702,4,6,f +15582,3703,4,4,f +15582,3703,1,8,f +15582,3705,0,30,f +15582,3706,0,24,f +15582,3707,0,14,f +15582,3708,0,14,f +15582,3709,4,8,f +15582,3709,0,12,f +15582,3710,0,12,f +15582,3710,4,12,f +15582,3711a,0,350,f +15582,3713,7,60,f +15582,3736,7,4,f +15582,3737,0,14,f +15582,3738,0,8,f +15582,3738,4,4,f +15582,3743,7,12,f +15582,3795,4,8,f +15582,3894,4,4,f +15582,3894,1,4,f +15582,3895,1,4,f +15582,3895,4,4,f +15582,3937,1,12,f +15582,3938,1,12,f +15582,3956,1,8,f +15582,4019,7,10,f +15582,4032a,4,8,f +15582,4143,7,30,f +15582,4185,7,16,f +15582,4204,2,3,f +15582,4265a,7,150,f +15582,4350c02,7,2,f +15582,4716,7,10,f +15582,56823,0,1,f +15582,6216b,7,2,f +15582,73071,7,2,f +15582,73090a,4,2,f +15582,766c96,7,6,f +15582,9244,7,8,f +15582,rb00167,0,30,f +15582,rb00169,0,40,f +15582,rb00170,0,30,f +15583,3001a,47,1,f +15583,3001a,4,1,f +15583,3001a,14,1,f +15583,3002a,14,2,f +15583,3003,47,1,f +15583,3003,4,1,f +15583,3004,14,3,f +15583,3004,47,1,f +15583,3005,4,2,f +15583,3010,1,2,f +15583,3010p30,14,3,f +15583,3010pb035e,1,1,f +15583,3020,14,1,f +15583,3021,4,3,f +15583,3022,14,1,f +15583,3035,4,1,f +15583,3039,47,1,f +15583,3040a,4,2,f +15583,3062a,0,1,f +15583,3137c01,0,1,f +15583,3137c02,0,8,f +15583,3139,0,2,f +15583,3149c01,4,2,f +15583,3315,4,1,f +15583,784,4,1,f +15583,7b,0,16,f +15583,966,1,1,f +15583,966a,1,1,f +15583,967,1,1,f +15585,30089b,0,1,f +15585,3626cpr0386,14,1,f +15585,3626cpr0388,14,1,f +15585,3626cpr0892,14,1,f +15585,3898,15,1,f +15585,4449,71,1,f +15585,4528,0,1,f +15585,6093,19,1,f +15585,852766,9999,1,f +15585,92081,308,1,f +15585,970c00,15,1,f +15585,970c00,25,1,f +15585,970c00,0,1,f +15585,973pr1184c01,0,1,f +15585,973pr1196c01,15,1,f +15585,973pr1585c01,25,1,f +15586,702,1,5,f +15586,702,4,5,f +15586,702,14,5,f +15586,702,15,5,f +15587,10201,4,1,f +15587,10928,72,1,f +15587,11211,4,3,f +15587,11458,72,4,f +15587,11477,4,2,f +15587,11477,191,1,f +15587,11477,70,6,f +15587,12618,0,2,f +15587,13548,308,2,f +15587,13548,1,2,f +15587,13548,71,2,f +15587,13770,297,1,f +15587,13965,0,5,f +15587,14395,70,4,f +15587,14413,0,12,f +15587,14719,71,4,f +15587,14769,4,3,f +15587,14769pr1039,4,2,f +15587,15064,308,2,f +15587,15068,4,5,f +15587,15068,0,5,f +15587,15070,297,4,f +15587,15208,19,2,f +15587,15462,28,1,f +15587,15571,0,2,f +15587,15573,72,5,f +15587,15672,1,2,f +15587,15672,0,2,f +15587,15712,72,8,f +15587,16577,72,2,f +15587,16968,0,1,f +15587,18031,148,1,f +15587,18651,0,2,f +15587,18654,72,1,t +15587,18654,72,2,f +15587,18984,0,1,f +15587,20482,297,2,f +15587,20482,297,1,t +15587,20612,40,1,f +15587,22380,191,1,f +15587,22385,0,2,f +15587,22385pr0010,33,1,f +15587,22385pr0017,35,1,f +15587,22385pr0018,33,1,f +15587,22385pr0019,57,1,f +15587,22385pr0020,57,1,f +15587,22385pr0021,57,1,f +15587,22387,0,8,f +15587,22388,297,32,f +15587,22388,57,5,f +15587,22388,297,7,t +15587,22388,57,1,t +15587,22388,179,1,t +15587,22388,179,3,f +15587,22390,179,1,f +15587,22391,179,3,f +15587,22391,272,2,f +15587,22395,179,1,f +15587,22400,179,1,f +15587,22401,179,1,f +15587,22407,57,1,f +15587,22408,179,3,f +15587,22411,320,1,f +15587,22425,0,2,f +15587,22483,57,1,f +15587,2343,297,2,f +15587,2357,70,2,f +15587,23861,148,2,f +15587,24093pr0001,70,1,f +15587,24093pr0002a,182,1,f +15587,24093pr0005,34,1,f +15587,24097,179,2,f +15587,24101,179,1,f +15587,24104,179,1,f +15587,24128,179,1,f +15587,2412b,72,2,f +15587,24133pr0001,4,1,f +15587,24133pr04,0,1,f +15587,2419,72,2,f +15587,2420,71,4,f +15587,2420,72,6,f +15587,2431,0,1,f +15587,2431,308,11,f +15587,24324,70,1,f +15587,24324,297,2,f +15587,2445,72,2,f +15587,2446,15,1,f +15587,2446,4,1,f +15587,24482,0,22,f +15587,24482,15,1,f +15587,2450,72,1,f +15587,2456,72,7,f +15587,2458,72,4,f +15587,2458,4,1,f +15587,2460,0,2,f +15587,2462,72,2,f +15587,2540,1,1,f +15587,2571,182,4,f +15587,2730,71,1,f +15587,2780,0,25,f +15587,2780,0,5,t +15587,2817,4,4,f +15587,2877,0,2,f +15587,2921,71,2,f +15587,298c02,1,1,t +15587,298c02,4,2,f +15587,298c02,1,1,f +15587,298c02,4,1,t +15587,30000,72,1,f +15587,3001,0,4,f +15587,3002,72,4,f +15587,3002,0,6,f +15587,3003,0,10,f +15587,3004,70,20,f +15587,3005,182,6,f +15587,3005,72,2,f +15587,3007,4,2,f +15587,3007,0,1,f +15587,3008,72,8,f +15587,3009,72,2,f +15587,3009,0,14,f +15587,3010,15,2,f +15587,3010,0,3,f +15587,30134,0,2,f +15587,30150,70,1,f +15587,3020,70,2,f +15587,3020,0,2,f +15587,3020,4,1,f +15587,3022,0,2,f +15587,3022,70,3,f +15587,3022,72,3,f +15587,3023,0,2,f +15587,3023,25,2,f +15587,3023,70,2,f +15587,3023,72,7,f +15587,3023,2,1,f +15587,30236,0,1,f +15587,30237b,4,4,f +15587,30237b,0,4,f +15587,30238,4,1,f +15587,3024,70,4,f +15587,3024,70,1,t +15587,3030,72,4,f +15587,3031,0,3,f +15587,3032,15,1,f +15587,3032,72,1,f +15587,3034,4,5,f +15587,3035,70,1,f +15587,3036,72,1,f +15587,3036,71,1,f +15587,30374,14,1,f +15587,30375,1,1,f +15587,30381,0,1,f +15587,3040b,182,12,f +15587,3040b,0,27,f +15587,30414,4,1,f +15587,3046a,72,2,f +15587,30503,320,2,f +15587,30526,72,2,f +15587,3062b,70,4,f +15587,3062b,41,1,f +15587,3062b,42,1,f +15587,3062b,308,6,f +15587,3068b,0,2,f +15587,3068b,4,2,f +15587,3069b,0,1,f +15587,3069b,4,2,f +15587,3069bpr0070,0,2,f +15587,3069bpr0159,19,1,f +15587,3069bpr0161,19,1,f +15587,3069bpr0167,19,1,f +15587,32009,4,3,f +15587,32013,4,3,f +15587,32013,0,1,f +15587,32018,0,9,f +15587,32054,71,2,f +15587,32062,4,1,f +15587,32064a,1,6,f +15587,32123b,71,1,t +15587,32123b,71,2,f +15587,32187,179,1,f +15587,32270,0,1,f +15587,32316,4,1,f +15587,32324,71,1,f +15587,32474,4,1,f +15587,32474,0,2,f +15587,32498,0,1,f +15587,33085,14,1,f +15587,33299a,0,1,f +15587,33320,14,1,f +15587,3460,4,1,f +15587,3622,71,7,f +15587,3622,0,2,f +15587,3623,0,2,f +15587,3626cpr1780,14,1,f +15587,3626cpr1783,14,1,f +15587,3626cpr1784,14,1,f +15587,3626cpr1795,15,1,f +15587,3626cpr1797,4,1,f +15587,3626cpr1798,4,2,f +15587,3626cpr1822,4,1,f +15587,3648b,72,2,f +15587,3659,308,2,f +15587,3660,70,13,f +15587,3665,308,5,f +15587,3666,1,1,f +15587,3666,0,1,f +15587,3666,25,3,f +15587,3678b,72,1,f +15587,3679,71,1,f +15587,3680,4,1,f +15587,3700,4,7,f +15587,3701,72,7,f +15587,3702,71,2,f +15587,3702,4,6,f +15587,3705,4,2,f +15587,3706,0,1,f +15587,3707,0,2,f +15587,3710,272,4,f +15587,3710,0,3,f +15587,3710,4,10,f +15587,3713,4,2,f +15587,3713,4,2,t +15587,3737,4,2,f +15587,3747b,72,1,f +15587,3749,19,2,f +15587,3795,308,3,f +15587,3795,1,2,f +15587,3795,0,2,f +15587,3795,72,1,f +15587,3795,70,1,f +15587,3894,71,2,f +15587,3894,4,1,f +15587,3895,72,1,f +15587,3899,4,1,f +15587,3957a,15,1,f +15587,40234,71,1,f +15587,4032a,0,2,f +15587,4032a,14,1,f +15587,4032a,72,1,f +15587,40490,0,1,f +15587,4070,4,4,f +15587,4081b,14,2,f +15587,41747,0,1,f +15587,41748,0,1,f +15587,41879a,0,1,f +15587,42003,0,1,f +15587,42610,71,1,f +15587,4274,1,4,f +15587,4274,1,1,t +15587,4286,4,4,f +15587,43093,1,9,f +15587,4341,0,1,f +15587,4345b,71,1,f +15587,4346,4,1,f +15587,43857,4,1,f +15587,4460b,72,5,f +15587,44728,14,1,f +15587,44728,4,6,f +15587,4519,71,1,f +15587,4529,0,1,f +15587,4598,0,1,f +15587,46212,182,8,f +15587,4697b,71,1,t +15587,4697b,71,1,f +15587,4733,71,1,f +15587,4735,71,2,f +15587,4738a,179,1,f +15587,4739a,57,1,f +15587,48336,4,2,f +15587,4865a,1,2,f +15587,48729b,57,1,t +15587,48729b,57,4,f +15587,49668,0,4,f +15587,50231,0,1,f +15587,50860,272,1,f +15587,50950,272,1,f +15587,51739,4,1,f +15587,53451,4,5,f +15587,53451,25,7,f +15587,53451,28,17,f +15587,53451,25,2,t +15587,53451,0,2,f +15587,53451,28,2,t +15587,53451,4,2,t +15587,53451,0,1,t +15587,54200,308,4,f +15587,54200,191,3,f +15587,54200,182,23,f +15587,54200,308,1,t +15587,54200,191,1,t +15587,54200,182,4,t +15587,54821,4,2,f +15587,55982,71,3,f +15587,59443,4,4,f +15587,59900,15,1,f +15587,59900,57,4,f +15587,59900,297,4,f +15587,59900,0,1,f +15587,60169,182,2,f +15587,6020,70,1,f +15587,60470b,71,2,f +15587,60474,4,2,f +15587,60477,1,2,f +15587,60483,71,2,f +15587,60485,14,1,f +15587,60594,0,2,f +15587,60596,0,1,f +15587,60621,148,1,f +15587,6081,4,1,f +15587,60849,71,1,t +15587,60849,71,2,f +15587,60897,71,4,f +15587,6106,0,1,f +15587,6111,0,2,f +15587,6112,0,2,f +15587,61184,71,2,f +15587,61252,1,1,f +15587,61403,4,1,f +15587,61406pat0006,0,4,f +15587,61409,1,2,f +15587,61409,72,2,f +15587,6141,0,1,f +15587,6141,57,11,f +15587,6141,57,1,t +15587,6141,297,2,t +15587,6141,297,14,f +15587,6141,0,1,t +15587,6141,4,2,f +15587,6141,4,2,t +15587,61485,15,1,f +15587,61780,72,1,f +15587,62113,0,2,f +15587,62113,72,2,f +15587,6232,4,1,f +15587,62462,71,1,f +15587,62537pr0003b,4,1,f +15587,63864,0,6,f +15587,63868,71,1,f +15587,63868,14,1,f +15587,63868,1,3,f +15587,63965,0,2,f +15587,64276,0,1,f +15587,64567,15,1,t +15587,64567,71,1,t +15587,64567,0,3,t +15587,64567,15,1,f +15587,64567,71,1,f +15587,64567,0,7,f +15587,64644,297,4,f +15587,64647,182,2,t +15587,64647,182,4,f +15587,64727,4,2,f +15587,64867,182,4,f +15587,6541,72,2,f +15587,6553,0,1,f +15587,6558,1,5,f +15587,6585,0,1,f +15587,6587,28,1,f +15587,6589,19,3,f +15587,6636,70,3,f +15587,6636,0,2,f +15587,72454,0,1,f +15587,75937,0,1,f +15587,85080,15,4,f +15587,85861,182,14,f +15587,85861,0,1,t +15587,85861,182,4,t +15587,85861,0,10,f +15587,85943,72,1,f +15587,85984,72,4,f +15587,85984,70,1,f +15587,86038,320,1,f +15587,87079,0,5,f +15587,87083,72,2,f +15587,87087,0,1,f +15587,87421,0,2,f +15587,87544,182,10,f +15587,87544,71,3,f +15587,87580,320,7,f +15587,87580,272,1,f +15587,87620,72,28,f +15587,87747,15,9,f +15587,87747,15,1,t +15587,87846,0,1,f +15587,87846,4,1,f +15587,87994,0,1,t +15587,87994,0,3,f +15587,89523,4,1,f +15587,89523,72,4,f +15587,91405,72,1,f +15587,92013,308,1,f +15587,92099,72,1,f +15587,92107,72,1,f +15587,92280,0,2,f +15587,92438,72,3,f +15587,92593,72,8,f +15587,92690,297,3,f +15587,92947,4,2,f +15587,92950,0,2,f +15587,93555,179,2,f +15587,93555,179,1,t +15587,95342pr0001,15,1,f +15587,96874,25,1,t +15587,970c00pr0936,72,1,f +15587,970c00pr0939,71,1,f +15587,970c00pr0940,72,1,f +15587,970c00pr0946,4,1,f +15587,970c00pr0947,0,2,f +15587,970d30pr0944,4,1,f +15587,973pb2298c01,4,1,f +15587,973pr3149c01,72,1,f +15587,973pr3152c01,71,2,f +15587,973pr3161c01,4,1,f +15587,973pr3162c01,0,1,f +15587,973pr3195c01,4,1,f +15587,98138,1,2,f +15587,98138,71,3,t +15587,98138,71,5,f +15587,98138,320,1,t +15587,98138,1,1,t +15587,98138,36,1,f +15587,98138,320,2,f +15587,98138,36,1,t +15587,98283,72,9,f +15587,98313,179,2,f +15587,98313,0,8,f +15587,98564,148,2,f +15587,98585,71,2,f +15587,99021,72,1,f +15587,99206,4,6,f +15587,99207,0,6,f +15587,99781,71,2,f +15588,11477,85,4,f +15588,14704,71,2,f +15588,14769pr1001,15,1,f +15588,18649,0,4,f +15588,22667,4,1,f +15588,22667,27,1,t +15588,22667,4,1,t +15588,22667,27,1,f +15588,2412b,85,4,f +15588,2736,71,2,f +15588,2921,0,2,f +15588,3022,0,3,f +15588,3023,30,4,f +15588,32064a,0,2,f +15588,32474pr1001,15,2,f +15588,3665,30,2,f +15588,3705,0,1,f +15588,3937,0,1,f +15588,3941,85,2,f +15588,4735,0,2,f +15588,49668,0,2,f +15588,54200,85,2,f +15588,54200,85,1,t +15588,60474,0,1,f +15588,60897,71,4,f +15588,6134,4,1,f +15588,6141,15,1,t +15588,6141,15,8,f +15588,63868,72,4,f +15588,64951,30,1,f +15588,85984,85,4,f +15588,90202,0,1,f +15589,2431,42,2,f +15589,2447,47,1,t +15589,2447,47,1,f +15589,3021,0,1,f +15589,3023,28,1,f +15589,3176,320,1,f +15589,3626cpr1155,14,1,f +15589,3794b,71,1,f +15589,4081b,0,1,f +15589,4595,71,1,f +15589,47905,71,1,f +15589,49668,288,2,f +15589,53451,27,1,t +15589,53451,0,4,f +15589,53451,27,1,f +15589,53451,0,1,t +15589,54200,27,1,t +15589,54200,27,1,f +15589,60478,0,1,f +15589,6141,36,1,t +15589,6141,36,2,f +15589,87781,10,1,f +15589,95199,72,1,f +15589,970c00pr0464,10,1,f +15589,973pr2298c01,71,1,f +15589,98313,320,1,f +15590,3001a,47,21,f +15591,13791pr0001,70,1,f +15591,3626cpr1247a,14,1,f +15591,4497,70,1,f +15591,6025,0,1,f +15591,88646,0,1,f +15591,93160,15,1,f +15591,970c03pr0532,14,1,f +15591,973pr2419c01,14,1,f +15593,3070bpr0063,0,3,f +15593,3070bpr0064,0,2,f +15593,3070bpr0065,0,2,f +15593,3070bpr0066,0,2,f +15593,3070bpr0067,0,3,f +15593,3070bpr0068,0,2,f +15593,3070bpr0069,0,2,f +15593,3070bpr0070,0,2,f +15593,3070bpr0071,0,3,f +15593,3070bpr0072,0,2,f +15593,3070bpr0073,0,2,f +15593,3070bpr0074,0,2,f +15593,3070bpr0075,0,2,f +15593,3070bpr0076,0,3,f +15593,3070bpr0077,0,3,f +15593,3070bpr0078,0,2,f +15593,3070bpr0079,0,2,f +15593,3070bpr0080,0,2,f +15593,3070bpr0081,0,2,f +15593,3070bpr0082,0,2,f +15593,3070bpr0083,0,2,f +15593,3070bpr0084,0,2,f +15593,3070bpr0085,0,2,f +15593,3070bpr0086,0,2,f +15593,3070bpr0087,0,2,f +15593,3070bpr0088,0,2,f +15593,3070bpr0130,0,2,f +15593,3070bpr0131,0,2,f +15593,3070bpr0132,0,2,f +15593,3070bpr0143,0,2,f +15593,3070bpr0144,0,2,f +15595,10314,288,2,f +15595,11610,19,1,f +15595,15068,288,6,f +15595,15470,29,1,f +15595,15470,70,1,f +15595,15470,29,1,t +15595,15470,70,1,t +15595,15573,19,1,f +15595,15573,4,1,f +15595,15712,4,4,f +15595,18674,15,1,f +15595,2431,288,2,f +15595,2435,2,1,f +15595,3003,4,1,f +15595,3004,288,2,f +15595,3020,288,2,f +15595,3020,4,2,f +15595,3021,15,2,f +15595,3022,0,1,f +15595,3023,47,4,f +15595,3023,288,8,f +15595,3023,15,5,f +15595,3023,4,10,f +15595,3024,297,6,f +15595,3024,4,2,f +15595,3024,0,3,f +15595,3024,191,1,f +15595,3024,29,1,f +15595,3024,0,1,t +15595,3024,191,1,t +15595,3024,27,1,f +15595,3024,4,1,t +15595,3024,29,1,t +15595,3024,297,1,t +15595,3024,27,1,t +15595,3031,4,2,f +15595,3034,15,1,f +15595,30374,297,2,f +15595,3062b,4,2,f +15595,3062b,15,6,f +15595,3065,47,2,f +15595,3070b,191,1,t +15595,3070b,191,1,f +15595,3070b,27,1,f +15595,3070b,27,1,t +15595,3070b,4,5,f +15595,3070b,29,1,t +15595,3070b,4,1,t +15595,3070b,29,1,f +15595,3184,0,2,f +15595,33291,10,1,f +15595,33291,31,1,t +15595,33291,10,1,t +15595,33291,31,1,f +15595,3460,4,2,f +15595,3633,297,2,f +15595,3666,4,4,f +15595,3710,4,4,f +15595,3788,4,7,f +15595,3795,4,2,f +15595,3795,15,2,f +15595,3900,15,1,f +15595,3941,70,1,f +15595,3941,4,2,f +15595,4032a,288,1,f +15595,4032a,4,1,f +15595,4600,0,7,f +15595,4740,82,1,f +15595,48336,297,2,f +15595,4865a,4,2,f +15595,49668,19,1,f +15595,54200,15,2,f +15595,54200,15,1,t +15595,60474,15,1,f +15595,60592,4,6,f +15595,60601,47,6,f +15595,6091,4,1,f +15595,61252,19,1,f +15595,61409,0,2,f +15595,6141,297,11,f +15595,6141,2,2,f +15595,6141,4,1,t +15595,6141,0,4,f +15595,6141,297,1,t +15595,6141,15,13,f +15595,6141,15,1,t +15595,6141,0,1,t +15595,6141,4,12,f +15595,6141,2,1,t +15595,6254,15,1,f +15595,63082,0,3,f +15595,63965,0,1,f +15595,88930,288,2,f +15595,93274,4,1,f +15595,93595,0,14,f +15595,98138,47,1,t +15595,98138,47,3,f +15595,98138pr0013,15,2,f +15595,98138pr0013,15,1,t +15595,98138pr0018,84,2,f +15595,98138pr0018,84,1,t +15595,99207,0,1,f +15595,99780,4,1,f +15596,2446,4,1,f +15596,2447,41,1,f +15596,2542,6,1,f +15596,2610,14,1,f +15596,3004,4,2,f +15596,3022,7,1,f +15596,3069b,4,2,f +15596,3626bp7e,14,1,f +15596,4855,4,2,f +15596,4859,4,2,f +15596,970c00,1,1,f +15596,973p73c01,2,1,f +15598,2397,72,1,f +15598,2431,0,1,f +15598,3004,0,1,f +15598,30055,0,2,f +15598,3010,0,1,f +15598,3023,70,1,f +15598,3032,72,1,f +15598,3622,0,2,f +15598,3626bpr0389,14,1,f +15598,3626bpr0500,14,1,f +15598,3626bpr0541,14,1,f +15598,3710,70,2,f +15598,3795,0,1,f +15598,3844,148,1,f +15598,3844,80,1,f +15598,3846pr0001a,71,1,f +15598,3846pr0002,71,1,f +15598,3847,135,1,f +15598,3847,148,1,f +15598,4488,71,2,f +15598,4489b,70,2,f +15598,4497,0,1,f +15598,54200,297,2,f +15598,54200,288,4,f +15598,54200,288,1,t +15598,54200,297,1,t +15598,60470a,71,1,f +15598,60475a,288,2,f +15598,62113,0,1,f +15598,64644,308,1,f +15598,64647,57,1,t +15598,64647,4,1,t +15598,64647,4,1,f +15598,64647,57,1,f +15598,75998pr0001,0,1,f +15598,89520,80,1,f +15598,89522,297,1,f +15598,89524,148,1,f +15598,970c00,0,1,f +15598,970c00pr0155,71,1,f +15598,970x026,71,1,f +15598,973pr1623c01,72,1,f +15598,973pr1625c01,288,1,f +15598,973pr1628c01,71,1,f +15599,18759,71,2,f +15599,22667,4,1,t +15599,22667,4,2,f +15599,2335,4,2,f +15599,2335,15,2,f +15599,2343,297,1,f +15599,2357,70,2,f +15599,2357,71,8,f +15599,2412b,70,1,f +15599,2420,70,2,f +15599,2423,2,4,f +15599,2431,308,31,f +15599,2431,72,10,f +15599,2431,71,4,f +15599,2449,4,2,f +15599,2453a,4,2,f +15599,2453a,15,2,f +15599,2453a,0,2,f +15599,2465,71,2,f +15599,2489,308,1,f +15599,2490pr0004,4,1,f +15599,2490pr0006,0,1,f +15599,2540,4,2,f +15599,2540,15,2,f +15599,2586pr0004,71,1,f +15599,2587pr0023,179,1,f +15599,2587pr0026,0,1,f +15599,2780,0,2,t +15599,2780,0,4,f +15599,2877,72,4,f +15599,2877,71,6,f +15599,2921,71,2,f +15599,3001,70,8,f +15599,3003,70,5,f +15599,3004,288,2,f +15599,3004,0,5,f +15599,3004,70,2,f +15599,3004,15,1,f +15599,30044,70,8,f +15599,30046,0,2,f +15599,30046,297,8,f +15599,3005,0,4,f +15599,3005,33,1,f +15599,3005,288,20,f +15599,3005,71,44,f +15599,30055,70,1,f +15599,30056,70,1,f +15599,3010,72,6,f +15599,3010,71,15,f +15599,30136,308,6,f +15599,30136,70,3,f +15599,30136,71,23,f +15599,3020,72,6,f +15599,3020,2,4,f +15599,3020,4,2,f +15599,3020,70,4,f +15599,3021,70,1,f +15599,3021,71,2,f +15599,3022,15,1,f +15599,3022,19,1,f +15599,3022,70,1,f +15599,3023,70,23,f +15599,3023,28,1,f +15599,3023,15,6,f +15599,3023,4,2,f +15599,3023,72,6,f +15599,3023,0,1,f +15599,3023,71,4,f +15599,30237b,70,2,f +15599,3024,36,10,f +15599,3024,46,10,f +15599,3024,72,4,f +15599,3024,70,12,f +15599,3024,71,32,f +15599,3030,70,1,f +15599,3030,72,4,f +15599,3031,70,3,f +15599,3031,72,4,f +15599,3032,4,2,f +15599,3032,0,2,f +15599,3032,15,2,f +15599,3034,70,1,f +15599,3035,70,2,f +15599,3035,2,2,f +15599,3036,2,2,f +15599,3036,70,3,f +15599,3037,4,18,f +15599,3037,70,4,f +15599,30374,70,6,f +15599,3039,4,11,f +15599,3039,71,6,f +15599,3039,70,1,f +15599,3039,0,2,f +15599,3040b,288,4,f +15599,3040b,4,6,f +15599,3040b,71,4,f +15599,30414,71,4,f +15599,3045,4,20,f +15599,3045,0,4,f +15599,3048c,288,1,f +15599,3048c,4,1,f +15599,3049b,4,2,f +15599,30503,2,4,f +15599,30503,72,12,f +15599,3062b,70,61,f +15599,3062b,72,40,f +15599,3062b,71,48,f +15599,3068b,19,2,f +15599,3068bpr0194,19,1,f +15599,3068bpr0197,28,1,f +15599,3069b,70,1,f +15599,3069b,19,8,f +15599,3069b,72,1,f +15599,3069b,320,20,f +15599,3069b,308,7,f +15599,3069b,15,2,f +15599,3069b,71,12,f +15599,3069b,4,3,f +15599,3070b,15,1,t +15599,3070b,15,1,f +15599,3070b,72,20,f +15599,3070b,72,5,t +15599,3185,0,2,f +15599,32064a,72,1,f +15599,3245b,15,4,f +15599,3245b,4,2,f +15599,33009,70,1,f +15599,3307,71,2,f +15599,3308,72,1,f +15599,3308,71,1,f +15599,33291,191,4,f +15599,33291,70,12,f +15599,33291,5,4,f +15599,33291,70,3,t +15599,33291,5,2,t +15599,33291,191,2,t +15599,33320,70,4,f +15599,33320,2,1,f +15599,33322,297,1,f +15599,33322,297,1,t +15599,3460,70,4,f +15599,3622,71,64,f +15599,3622,70,2,f +15599,3623,0,2,f +15599,3623,15,2,f +15599,3626bpr0348,14,1,f +15599,3626bpr0600,14,1,f +15599,3626bpr0645,14,1,f +15599,3626bpr0679,14,1,f +15599,3626cpr0389,14,1,f +15599,3626cpr0411,14,1,f +15599,3626cpr0580,14,1,f +15599,3626cpr0677,14,1,f +15599,3626cpr0893,14,1,f +15599,3659,71,7,f +15599,3660,71,6,f +15599,3665,70,6,f +15599,3665,71,6,f +15599,3666,4,2,f +15599,3666,70,8,f +15599,3666,15,2,f +15599,3678bpr0009,4,1,f +15599,3678bpr0030,378,1,f +15599,3685,4,8,f +15599,3700,72,14,f +15599,3700,71,2,f +15599,3710,70,25,f +15599,3710,72,8,f +15599,3710,71,20,f +15599,3710,4,2,f +15599,3747b,70,1,f +15599,3794a,70,10,f +15599,3830,72,4,f +15599,3831,72,4,f +15599,3832,72,8,f +15599,3832,2,5,f +15599,3844,80,2,f +15599,3846pr0001a,71,4,f +15599,3846pr0003,71,3,f +15599,3847,179,1,f +15599,3847,148,1,f +15599,3849,179,1,f +15599,3849,0,1,f +15599,3937,71,2,f +15599,3937,72,1,f +15599,40234,71,1,f +15599,4032a,19,1,f +15599,4032a,72,2,f +15599,4032a,15,2,f +15599,4032a,70,3,f +15599,4032a,484,4,f +15599,4035,71,2,f +15599,4070,19,2,f +15599,4070,70,20,f +15599,4081b,72,16,f +15599,41879a,70,1,f +15599,4216,379,14,f +15599,4282,15,3,f +15599,4286,70,2,f +15599,4287,70,2,f +15599,4287,288,2,f +15599,4342,366,1,f +15599,43888,70,4,f +15599,44126,15,4,f +15599,44126,4,4,f +15599,4460b,4,6,f +15599,4460b,0,4,f +15599,4460b,15,4,f +15599,4477,72,8,f +15599,4477,70,4,f +15599,4490,71,4,f +15599,4495b,297,4,f +15599,4495b,0,2,f +15599,4495b,4,5,f +15599,4495b,288,2,f +15599,4496,70,1,f +15599,4497,179,2,f +15599,4503,80,1,f +15599,4505,308,1,f +15599,4623,15,1,f +15599,4733,15,1,f +15599,4733,0,1,f +15599,4740,4,1,f +15599,4740,72,1,f +15599,47905,72,4,f +15599,4865b,72,1,f +15599,50231,320,1,f +15599,53705,148,2,f +15599,54200,71,20,f +15599,54200,14,1,t +15599,54200,4,12,f +15599,54200,72,12,f +15599,54200,4,2,t +15599,54200,70,22,f +15599,54200,14,1,f +15599,54200,72,2,t +15599,54200,288,1,t +15599,54200,288,4,f +15599,54200,71,2,t +15599,54200,70,4,t +15599,59232,179,1,f +15599,59363,70,1,f +15599,59900,70,6,f +15599,59900,4,1,f +15599,59900,72,1,f +15599,59900,71,2,f +15599,60481,70,12,f +15599,60481,4,2,f +15599,60583b,84,2,f +15599,6112,70,2,f +15599,6134,0,1,f +15599,6134,71,2,f +15599,6141,179,1,t +15599,6141,70,3,t +15599,6141,80,3,t +15599,6141,36,1,f +15599,6141,72,2,t +15599,6141,36,1,t +15599,6141,19,1,t +15599,6141,80,6,f +15599,6141,297,4,t +15599,6141,72,12,f +15599,6141,70,12,f +15599,6141,179,1,f +15599,6141,19,1,f +15599,6141,297,44,f +15599,6141,0,1,t +15599,6141,0,1,f +15599,62361,71,5,f +15599,6256,191,1,f +15599,63864,72,10,f +15599,63868,0,2,f +15599,63965,70,1,t +15599,63965,70,2,f +15599,64390,70,2,f +15599,64644,308,10,f +15599,64647,288,1,f +15599,64647,288,1,t +15599,64647,4,1,f +15599,64647,4,1,t +15599,64807,308,1,f +15599,6541,0,8,f +15599,71015,334,1,f +15599,73983,71,8,f +15599,73983,72,4,f +15599,75998pr0001,0,1,f +15599,75998pr0007,15,1,f +15599,76768,70,10,f +15599,87079,72,3,f +15599,87079,70,4,f +15599,87087,71,30,f +15599,87580,28,2,f +15599,87580,70,7,f +15599,87580,71,1,f +15599,87580,4,2,f +15599,87620,72,4,f +15599,87620,71,24,f +15599,88283,0,1,f +15599,89520,0,1,f +15599,89522,297,2,f +15599,89524,179,1,f +15599,89524,148,1,f +15599,92950,71,4,f +15599,93609,15,2,f +15599,93609,15,1,t +15599,95228,40,2,f +15599,95343,70,1,f +15599,95344,28,1,f +15599,95344,28,1,t +15599,970c00pr0153,320,1,f +15599,970c00pr0154,0,1,f +15599,970c00pr0155,71,1,f +15599,970x026,71,2,f +15599,973pr1452c01,28,1,f +15599,973pr1622c01,4,2,f +15599,973pr1626c01,0,1,f +15599,973pr1628c01,71,1,f +15599,973pr1633c01,4,1,f +15599,973pr1722ac01,15,1,f +15599,973pr1994c01,378,1,f +15599,973pr1995c01,4,1,f +15599,98560,4,4,f +15600,2357,313,20,f +15600,2357,15,6,f +15600,2357,70,8,f +15600,2357,320,4,f +15600,2377,15,17,f +15600,2412b,15,18,f +15600,2412b,0,3,f +15600,2412b,71,4,f +15600,2420,70,4,f +15600,2420,0,2,f +15600,2431,313,3,f +15600,2431,70,2,f +15600,2432,70,24,f +15600,2445,70,10,f +15600,2456,0,1,f +15600,2508,15,2,f +15600,2540,15,2,f +15600,2555,71,2,f +15600,2566,0,2,f +15600,2584,70,1,f +15600,2585,71,1,f +15600,2634c02,15,2,f +15600,2654,0,25,f +15600,2877,15,8,f +15600,298c04,15,2,f +15600,298c04,15,1,t +15600,3001,15,1,f +15600,3001,70,4,f +15600,3001,313,4,f +15600,3001,320,2,f +15600,3003,313,2,f +15600,3004,70,4,f +15600,3004,0,3,f +15600,3004,313,2,f +15600,3004,15,6,f +15600,3005,313,4,f +15600,3005,320,2,f +15600,3005,70,8,f +15600,3005,15,8,f +15600,3007,71,30,f +15600,3007,313,1,f +15600,3007,15,14,f +15600,3008,15,1,f +15600,3009,313,2,f +15600,3009,70,2,f +15600,3010,15,5,f +15600,3010,313,9,f +15600,30192,72,1,f +15600,3020,70,2,f +15600,3020,15,1,f +15600,3020,313,2,f +15600,3020,320,1,f +15600,3020,25,2,f +15600,3022,15,3,f +15600,3022,320,1,f +15600,3022,313,4,f +15600,3023,15,35,f +15600,3023,25,4,f +15600,3023,71,62,f +15600,30256,15,1,f +15600,3028,320,9,f +15600,3029,320,1,f +15600,3034,71,30,f +15600,3034,15,14,f +15600,3034,70,5,f +15600,3035,70,2,f +15600,3035,15,6,f +15600,3037,320,2,f +15600,30374,15,2,f +15600,30374,0,4,f +15600,30383,72,4,f +15600,3040b,15,2,f +15600,30602,320,1,f +15600,30602,25,2,f +15600,3062b,0,3,f +15600,3063b,0,2,f +15600,3063b,313,2,f +15600,3069b,313,11,f +15600,3069b,70,6,f +15600,3069b,40,2,f +15600,3070b,70,4,f +15600,3070b,313,1,t +15600,3070b,34,1,t +15600,3070b,313,2,f +15600,3070b,36,1,f +15600,3070b,70,1,t +15600,3070b,36,1,t +15600,3070b,34,1,f +15600,32002,72,1,t +15600,32002,72,2,f +15600,32028,15,2,f +15600,3245b,15,8,f +15600,32474,15,1,f +15600,3460,15,1,f +15600,3622,70,2,f +15600,3660,313,2,f +15600,3665,313,16,f +15600,3666,15,2,f +15600,3666,70,5,f +15600,3684,0,2,f +15600,3710,15,17,f +15600,3710,0,2,f +15600,3743,15,6,f +15600,3747b,313,2,f +15600,3747b,320,1,f +15600,3749,19,1,f +15600,3794a,15,7,f +15600,3794a,70,7,f +15600,3832,70,12,f +15600,3937,15,2,f +15600,3938,70,22,f +15600,3941,0,1,f +15600,4070,15,14,f +15600,4081b,15,2,f +15600,4085c,0,1,f +15600,4162,313,4,f +15600,42023,320,10,f +15600,42023,313,14,f +15600,4286,313,2,f +15600,4287,313,16,f +15600,4287,320,10,f +15600,43337,70,2,f +15600,43337,313,24,f +15600,43720,320,2,f +15600,43721,320,2,f +15600,43722,70,2,f +15600,43722,15,1,f +15600,43723,70,2,f +15600,43723,15,1,f +15600,44301a,15,2,f +15600,44302a,15,3,f +15600,44302a,70,3,f +15600,4445,320,6,f +15600,44728,72,8,f +15600,4477,70,12,f +15600,4510,15,2,f +15600,4588,70,2,f +15600,4589,70,10,f +15600,4589,15,6,f +15600,4599a,15,10,f +15600,4623,15,2,f +15600,47405,320,2,f +15600,4862,40,17,f +15600,4865a,15,4,f +15600,4865a,313,2,f +15600,56823c28,0,1,f +15600,6091,25,4,f +15600,6111,313,12,f +15600,6111,320,4,f +15600,6141,47,1,t +15600,6141,0,11,f +15600,6141,47,2,f +15600,6141,46,6,f +15600,6141,46,1,t +15600,6141,0,1,t +15600,6180,70,1,f +15600,6632,15,2,f +15600,6636,71,60,f +15600,6636,15,28,f +15600,6636,313,3,f +15600,75535,0,1,f +15601,2335,15,1,f +15601,2377,4,2,f +15601,2412b,15,6,f +15601,2431,72,2,f +15601,2460,14,4,f +15601,2476a,71,6,f +15601,2540,14,2,f +15601,2569,0,1,f +15601,2569,0,1,t +15601,2610,14,2,f +15601,2780,0,1,t +15601,2780,0,2,f +15601,298c02,15,1,f +15601,298c02,15,1,t +15601,3002,4,2,f +15601,3009,4,4,f +15601,3010,4,4,f +15601,30162,72,1,f +15601,30194,72,1,f +15601,3020,4,1,f +15601,3022,15,4,f +15601,3022,71,2,f +15601,3023,46,2,f +15601,3023,15,4,f +15601,30236,15,1,f +15601,30237a,4,4,f +15601,3024,46,1,t +15601,3024,46,4,f +15601,3032,72,1,f +15601,30332,0,2,f +15601,30340,15,2,f +15601,30350b,72,2,f +15601,30367b,4,2,f +15601,3037,4,1,f +15601,30374,15,2,f +15601,3038,4,2,f +15601,3062b,14,2,f +15601,30663,0,3,f +15601,3069b,33,2,f +15601,3139,0,12,f +15601,32039,71,2,f +15601,32062,4,4,f +15601,32064b,72,6,f +15601,3622,4,2,f +15601,3626bpr0279,14,1,f +15601,3626bpr0386,14,1,f +15601,3626bpr0389,14,1,f +15601,3660,72,1,f +15601,3679,71,1,f +15601,3680,15,1,f +15601,3700,4,2,f +15601,3705,0,1,f +15601,3709,0,4,f +15601,3710,15,5,f +15601,3713,71,2,f +15601,3713,71,1,t +15601,3794a,71,3,f +15601,3795,15,1,f +15601,3832,15,1,f +15601,3834,15,2,f +15601,3834,80,1,f +15601,3835,0,2,f +15601,3849,0,1,f +15601,3937,15,1,f +15601,3959,71,1,f +15601,3962b,0,1,f +15601,4032a,4,8,f +15601,4079,14,2,f +15601,4085c,4,2,f +15601,4151b,72,2,f +15601,41539,72,4,f +15601,41677,71,2,f +15601,4185,14,2,f +15601,42022,4,2,f +15601,4274,1,2,f +15601,4274,1,1,t +15601,4285b,72,4,f +15601,4289,15,1,f +15601,43093,1,2,f +15601,43337,4,3,f +15601,4349,0,1,f +15601,44126,4,2,f +15601,44294,71,2,f +15601,44567a,0,1,f +15601,4477,71,1,f +15601,44809,71,2,f +15601,45406,4,1,f +15601,4589,14,4,f +15601,4599a,14,2,f +15601,46103,41,1,f +15601,4623,15,2,f +15601,4624,15,12,f +15601,4740,15,2,f +15601,48092,4,8,f +15601,4862,41,2,f +15601,4870,71,6,f +15601,50943,71,2,f +15601,50950,4,2,f +15601,53586,135,2,f +15601,54200,33,4,f +15601,55013,72,2,f +15601,55817,4,2,f +15601,57915,0,1,f +15601,59426,72,2,f +15601,6003,72,2,f +15601,6019,15,4,f +15601,6112,4,2,f +15601,6117,72,1,f +15601,6134,4,1,f +15601,6141,36,1,t +15601,6141,46,1,f +15601,6141,36,1,f +15601,6141,34,1,f +15601,6141,46,1,t +15601,6141,34,1,t +15601,6179,71,1,f +15601,63965,4,1,f +15601,6538b,71,2,f +15601,6541,4,2,f +15601,6589,71,2,f +15601,970c00,0,3,f +15601,973pr1187c01,0,3,f +15602,122c01,0,2,f +15602,3004,15,1,f +15602,3004prc,15,1,f +15602,3010,15,1,f +15602,3020,4,1,f +15602,3022,0,1,f +15602,3023,4,2,f +15602,3024,4,2,f +15602,3024,33,3,f +15602,3024,36,2,f +15602,3024,46,2,f +15602,3032,4,1,f +15602,3034,4,2,f +15602,3068bp52,15,1,f +15602,3623,4,2,f +15602,3626apr0001,14,2,f +15602,3641,0,4,f +15602,3660,4,2,f +15602,3710,4,9,f +15602,3710,15,3,f +15602,3794a,15,3,f +15602,3821,15,1,f +15602,3822,15,1,f +15602,3823,41,1,f +15602,3829c01,0,1,f +15602,3901,6,1,f +15602,4070,15,2,f +15602,4211,4,2,f +15602,4213,4,2,f +15602,4215a,15,2,f +15602,4215ap66,15,2,f +15602,4315,4,2,f +15602,4530,0,1,f +15602,4714,15,1,f +15602,4715,15,2,f +15602,970c00,1,1,f +15602,970c00,15,1,f +15602,973c01,1,1,f +15602,973p24c01,15,1,f +15605,14417,72,1,f +15605,14704,71,5,f +15605,15068,71,1,f +15605,15209,15,1,f +15605,15456,71,2,f +15605,22890,72,1,f +15605,2412b,297,2,f +15605,3004,71,4,f +15605,3022,71,3,f +15605,3023,70,4,f +15605,30236,0,1,f +15605,30374,71,1,f +15605,3039,70,2,f +15605,3069b,72,3,f +15605,3659,71,1,f +15605,4274,71,1,t +15605,4274,71,1,f +15605,4495b,4,1,f +15605,4871,71,1,f +15605,48729b,0,1,t +15605,48729b,0,1,f +15605,53454,148,2,f +15605,54200,70,1,t +15605,54200,71,4,f +15605,54200,71,1,t +15605,54200,70,2,f +15605,59900,179,1,f +15605,59900,179,1,t +15605,60474,72,3,f +15605,62462,70,1,f +15605,63868,70,1,f +15605,6628,0,1,f +15605,85861,0,1,t +15605,85861,0,3,f +15605,87620,71,2,f +15605,88072,0,1,f +15605,98138pr0008,15,1,t +15605,98138pr0008,15,2,f +15605,98283,72,3,f +15605,99206,0,1,f +15605,99207,71,1,f +15606,2340,15,1,f +15606,2348b,33,1,f +15606,2349a,15,1,f +15606,2399,15,2,f +15606,2412b,7,4,f +15606,2420,7,2,f +15606,2420,0,2,f +15606,2431,15,4,f +15606,2431,0,4,f +15606,2431pr0077,15,1,f +15606,2432,4,1,f +15606,2432,14,2,f +15606,2433,0,1,f +15606,2436,0,1,f +15606,2437,41,1,f +15606,2444,15,2,f +15606,2446,15,2,f +15606,2447,41,2,f +15606,2460,7,1,f +15606,2479,0,1,f +15606,2507,41,1,f +15606,2508,7,1,f +15606,2555,15,7,f +15606,2610,14,1,f +15606,2654,7,2,f +15606,2780,0,2,f +15606,2823,15,2,f +15606,2873,15,2,f +15606,2926,7,1,f +15606,298c02,4,2,f +15606,3001,0,3,f +15606,3002,15,1,f +15606,3004,15,2,f +15606,3008,15,1,f +15606,3020,15,4,f +15606,3020,4,1,f +15606,3020,7,3,f +15606,3021,15,2,f +15606,3022,15,1,f +15606,3022,14,2,f +15606,3023,4,1,f +15606,3023,15,10,f +15606,3023,0,6,f +15606,3024,15,6,f +15606,3024,36,3,f +15606,3024,46,1,f +15606,3024,33,1,f +15606,3034,7,2,f +15606,3037,15,1,f +15606,3039,15,2,f +15606,3039pc3,7,1,f +15606,3039pc5,7,1,f +15606,3040b,15,2,f +15606,3068b,15,4,f +15606,3069b,0,1,f +15606,3069b,15,3,f +15606,3070b,36,4,f +15606,3070b,14,2,f +15606,3070b,33,1,f +15606,3070b,7,2,f +15606,3070b,15,1,f +15606,3070b,4,1,f +15606,3070b,46,4,f +15606,3176,0,1,f +15606,3297,7,2,f +15606,3460,0,1,f +15606,3623,0,5,f +15606,3623,15,2,f +15606,3626bp04,14,3,f +15606,3641,0,2,f +15606,3665,15,1,f +15606,3666,0,2,f +15606,3666,15,2,f +15606,3673,7,1,f +15606,3710,0,3,f +15606,3710,15,6,f +15606,3730,7,1,f +15606,3747a,15,1,f +15606,3788,15,1,f +15606,3794a,15,2,f +15606,3794a,0,3,f +15606,3795,0,2,f +15606,3795,7,2,f +15606,3795,15,1,f +15606,3821,15,1,f +15606,3822,15,1,f +15606,3829c01,4,2,f +15606,3962b,0,1,f +15606,4032a,7,1,f +15606,4070,7,2,f +15606,4081b,15,2,f +15606,4081b,4,2,f +15606,4085c,4,2,f +15606,4162,0,2,f +15606,4211,15,1,f +15606,4213,15,1,f +15606,4287,15,2,f +15606,4287,7,2,f +15606,4315,15,5,f +15606,4477,7,2,f +15606,4477,0,2,f +15606,4485,15,1,f +15606,4533,41,1,f +15606,4589,15,2,f +15606,4589,4,2,f +15606,4599a,4,2,f +15606,4617b,0,1,f +15606,4623,15,3,f +15606,4624,15,2,f +15606,4854,7,2,f +15606,4854,14,1,f +15606,4855,14,1,f +15606,4855,7,2,f +15606,4859,15,1,f +15606,4859,0,3,f +15606,4859,14,1,f +15606,4864a,15,11,f +15606,4865a,15,6,f +15606,4871,14,1,f +15606,55295,8,1,f +15606,55296,8,1,f +15606,55297,8,1,f +15606,55298,8,1,f +15606,55299,8,1,f +15606,55300,8,1,f +15606,6014a,15,4,f +15606,6015,0,4,f +15606,6019,4,1,f +15606,6141,34,1,f +15606,6141,36,3,f +15606,6141,46,2,f +15606,6152,15,1,f +15606,6153a,15,1,f +15606,6157,0,2,f +15606,6541,15,1,f +15606,6545stk01,9999,1,t +15606,6636,14,2,f +15606,92410,15,1,f +15606,970c00,0,3,f +15606,973px9c01,0,3,f +15608,41855,73,2,f +15608,41855pb11,73,1,f +15608,43093,1,1,f +15608,4740,47,1,f +15608,4740,47,1,t +15608,47430,73,2,f +15608,47431,73,2,f +15608,47432,73,2,f +15608,47452,71,2,f +15608,47454,71,2,f +15608,47455,15,10,f +15608,47456,73,4,f +15608,47458,73,6,f +15608,47460,134,1,f +15608,47471,73,1,f +15608,47474,71,1,f +15608,47477c01pb01,73,1,f +15608,47501,73,4,f +15608,48080,89,1,f +15608,bb153pb02,71,1,f +15608,kkc01,89,1,f +15608,kkc04,89,1,f +15608,kkc06,89,1,f +15609,11055,71,1,f +15609,11090,0,1,f +15609,11153,320,2,f +15609,11214,72,6,f +15609,11458,72,6,f +15609,11477,4,4,f +15609,11477,158,1,f +15609,11477,272,2,f +15609,13269,72,1,f +15609,14704,71,5,f +15609,14769,297,2,f +15609,15068,272,1,f +15609,15068,288,2,f +15609,15209,158,2,f +15609,15391,0,2,f +15609,15392,72,2,f +15609,15456,0,1,f +15609,15462,28,2,f +15609,15535,19,1,f +15609,15573,272,2,f +15609,15619,320,1,f +15609,15619,272,1,f +15609,15712,72,2,f +15609,16965,0,1,f +15609,18395,158,1,f +15609,18396pat0002,272,2,f +15609,18575,19,1,f +15609,18585,0,1,f +15609,18590,0,1,f +15609,18591,47,1,f +15609,18592,297,1,f +15609,18649,0,1,f +15609,18654,72,2,f +15609,19857pat0002,0,1,f +15609,19858pat0002,42,1,f +15609,19859pat0002,42,1,f +15609,19861pr0002,42,1,f +15609,20566pat02,148,1,f +15609,20612,40,1,f +15609,20643,272,1,f +15609,2412b,297,8,f +15609,2419,72,3,f +15609,2419,0,1,f +15609,2436,71,2,f +15609,2456,0,1,f +15609,2489,70,2,f +15609,2540,71,1,f +15609,2540,72,5,f +15609,2654,4,2,f +15609,2780,0,6,f +15609,2877,0,4,f +15609,298c02,4,2,f +15609,3004,19,1,f +15609,3009,72,1,f +15609,3010,72,1,f +15609,3010,71,2,f +15609,30162,297,2,f +15609,30173b,0,2,f +15609,30173b,297,5,f +15609,30173b,158,1,f +15609,3020,4,2,f +15609,3020,19,2,f +15609,3020,72,3,f +15609,3021,272,1,f +15609,3022,70,7,f +15609,3023,4,14,f +15609,3023,42,2,f +15609,3023,288,2,f +15609,3032,72,1,f +15609,3033,72,1,f +15609,30362,0,2,f +15609,3049c,0,1,f +15609,30526,71,1,f +15609,30602,72,2,f +15609,3068bpr0166,71,1,f +15609,3176,71,10,f +15609,32002,19,4,f +15609,32009,0,4,f +15609,32054,71,4,f +15609,32054,4,6,f +15609,32062,4,2,f +15609,32064a,71,2,f +15609,32123b,14,1,f +15609,32140,0,4,f +15609,32184,4,1,f +15609,32198,19,1,f +15609,32270,0,4,f +15609,32278,72,2,f +15609,32449,4,2,f +15609,32498,0,1,f +15609,32523,0,2,f +15609,32524,0,1,f +15609,32532,71,1,f +15609,33057,484,1,f +15609,3460,72,3,f +15609,3623,72,2,f +15609,3626cpr1365,14,1,f +15609,3626cpr1688,42,1,f +15609,3626cpr1691,42,1,f +15609,3626cpr1694,14,1,f +15609,3666,71,2,f +15609,3700,72,4,f +15609,3701,4,1,f +15609,3702,4,2,f +15609,3705,0,1,f +15609,3707,0,6,f +15609,3710,320,6,f +15609,3713,4,4,f +15609,3738,72,1,f +15609,3749,19,1,f +15609,3899,4,1,f +15609,3943b,72,4,f +15609,3960,72,1,f +15609,4032a,72,1,f +15609,4032a,4,6,f +15609,4070,70,12,f +15609,4085c,0,12,f +15609,41530,179,2,f +15609,41747,72,1,f +15609,41748,72,1,f +15609,41749,320,2,f +15609,41750,320,2,f +15609,41769,71,1,f +15609,41770,71,1,f +15609,42003,14,1,f +15609,42003,71,2,f +15609,4274,71,2,f +15609,43093,1,2,f +15609,4345b,71,2,f +15609,4346,47,2,f +15609,43712,72,1,f +15609,43713,72,1,f +15609,43857,71,1,f +15609,44568,71,1,f +15609,44570,72,1,f +15609,44728,72,2,f +15609,4497,0,1,f +15609,45301,320,2,f +15609,4588,72,3,f +15609,4598,0,1,f +15609,4740,41,3,f +15609,4871,72,2,f +15609,48729b,0,1,f +15609,48933,288,2,f +15609,48989,71,3,f +15609,50304,72,2,f +15609,50305,72,2,f +15609,50745,4,4,f +15609,50943,320,4,f +15609,50950,288,2,f +15609,53451,4,3,f +15609,53451,179,4,f +15609,53451,158,1,f +15609,54200,158,1,f +15609,54200,288,4,f +15609,55615,71,1,f +15609,57909b,308,2,f +15609,59426,72,1,f +15609,59900,297,2,f +15609,60208,320,2,f +15609,60470a,0,1,f +15609,60478,72,6,f +15609,60481,71,2,f +15609,60483,0,2,f +15609,60581,71,2,f +15609,61409,70,2,f +15609,6141,72,12,f +15609,6141,4,8,f +15609,6141,47,4,f +15609,6141,297,14,f +15609,61780,70,1,f +15609,62113,0,2,f +15609,6239,4,2,f +15609,63864,71,2,f +15609,63868,0,8,f +15609,63868,70,2,f +15609,63869,71,2,f +15609,64567,71,4,f +15609,64567,297,1,f +15609,6558,1,8,f +15609,6587,28,3,f +15609,6589,19,2,f +15609,6628,0,4,f +15609,74261,72,2,f +15609,78c02,179,2,f +15609,78c18,179,2,f +15609,85940,0,2,f +15609,85943,72,5,f +15609,87083,72,4,f +15609,87408,0,2,f +15609,87580,71,2,f +15609,87580,272,1,f +15609,88072,0,2,f +15609,88290,308,1,f +15609,90612,0,2,f +15609,92593,71,1,f +15609,92690,70,1,f +15609,92947,4,2,f +15609,93055,297,2,f +15609,93059,85,1,f +15609,93059,297,3,f +15609,93059,320,1,f +15609,93273,320,4,f +15609,93571,72,2,f +15609,94531,47,1,f +15609,96874,25,1,t +15609,970c00pr0874,326,1,f +15609,970c00pr0889,0,1,f +15609,970x268pr001,42,1,f +15609,973pr3033c01,0,1,f +15609,973pr3037c01,378,1,f +15609,973pr3039c01,272,1,f +15609,973pr3041c01,85,1,f +15609,98137,297,2,f +15609,98138,36,1,f +15609,98138,41,1,f +15609,98139,179,1,f +15609,98141,297,2,f +15609,98141,158,2,f +15609,99207,0,6,f +15609,99780,72,4,f +15609,99780,0,5,f +15609,99781,71,4,f +15610,3626cpb1351,212,1,f +15610,59233pat0001,41,2,f +15610,970c11pb23,0,1,f +15610,973pb2021c01,72,1,f +15611,122c01,7,2,f +15611,3002a,15,1,f +15611,3020,15,1,f +15611,3021,14,3,f +15611,3023,14,1,f +15611,3034,4,1,f +15611,3034,14,1,f +15611,3039,47,1,f +15611,3624,4,1,f +15611,3626apr0001,14,1,f +15611,3641,0,4,f +15611,3787,14,2,f +15611,970c00,1,1,f +15611,973p60c01,15,1,f +15614,2412b,0,1,f +15614,2436,7,1,f +15614,2540,0,1,f +15614,30027b,7,4,f +15614,30028,0,4,f +15614,3004,14,1,f +15614,3004,14,1,t +15614,3020,8,2,f +15614,3021,0,1,f +15614,3021,0,1,t +15614,3021,14,2,f +15614,3023,14,2,f +15614,3023,47,2,f +15614,3062b,7,2,f +15614,3665,7,2,f +15614,3795,8,1,f +15614,41855,14,1,f +15614,4589,7,2,f +15614,4600,0,2,f +15614,6141,36,1,f +15614,6141,36,1,t +15614,6141,46,1,t +15614,6141,46,2,f +15615,10884,27,2,f +15615,11098,179,1,f +15615,11122pr0003,297,1,f +15615,11126,14,1,f +15615,11127,41,6,f +15615,11767,72,1,f +15615,13361pr0003,0,1,f +15615,13548,308,4,f +15615,2654,0,1,f +15615,2780,0,2,f +15615,3003,70,2,f +15615,3004,4,2,f +15615,30136,308,2,f +15615,30137,70,4,f +15615,3022,71,2,f +15615,3023,0,1,f +15615,30367b,4,1,f +15615,30374,0,1,f +15615,30374,70,1,f +15615,3039,70,4,f +15615,3040b,71,1,f +15615,3062b,41,2,f +15615,32123b,71,3,f +15615,32124,70,2,f +15615,33085,14,2,f +15615,3626cpr1206,0,1,f +15615,3700,71,4,f +15615,3710,28,2,f +15615,3958,28,1,f +15615,3960,28,2,f +15615,4032a,14,2,f +15615,4070,70,4,f +15615,4740,0,4,f +15615,48336,14,1,f +15615,53451,4,10,f +15615,53454,148,2,f +15615,54200,72,1,f +15615,54821pat0003,41,1,f +15615,55236,27,2,f +15615,59900,35,4,f +15615,60470b,14,1,f +15615,60474,308,1,f +15615,60897,0,2,f +15615,61072,179,1,f +15615,6141,41,2,f +15615,64567,0,2,f +15615,87083,72,3,f +15615,87620,28,4,f +15615,92690,71,1,f +15615,92947,70,4,f +15615,970c00pr0569,0,1,f +15615,973pr2480c01,71,1,f +15615,98138,41,1,f +15616,23306,383,1,f +15616,23306,383,1,t +15616,3004,0,4,f +15616,3020,8,1,f +15616,3036,8,1,f +15616,30374,42,1,f +15616,30408px2,15,1,f +15616,30528,0,1,f +15616,3624,8,1,f +15616,3626b,14,1,f +15616,3626bpr0001,14,1,f +15616,3626bpr0635,14,1,f +15616,3710,0,1,f +15616,3901,19,1,f +15616,4349,0,1,f +15616,6141,57,1,f +15616,6141,57,1,t +15616,6583,0,2,f +15616,970c00,0,1,f +15616,970c00,8,1,f +15616,970x026,15,1,f +15616,973pr0520c01,15,1,f +15616,973ps2c02,0,1,f +15616,973psqc01,8,1,f +15617,2470,6,2,f +15617,2555,0,2,f +15617,2926,4,1,f +15617,30000,8,1,f +15617,30173a,7,1,f +15617,30175,0,1,f +15617,3020,0,2,f +15617,3022,7,1,f +15617,3062b,7,2,f +15617,3626bpx8,14,1,f +15617,3700,7,2,f +15617,3839b,4,1,f +15617,4286,6,2,f +15617,4529,0,2,f +15617,6134,4,1,f +15617,970x021,0,1,f +15617,973px14c01,4,1,f +15619,132a,0,2,f +15619,3002a,14,3,f +15619,3003,47,1,f +15619,3004,0,2,f +15619,3004,14,1,f +15619,3007,14,1,f +15619,3020,14,1,f +15619,3021,14,3,f +15619,3021,0,2,f +15619,3022,14,7,f +15619,3023,14,4,f +15619,3030,0,2,f +15619,3034,14,3,f +15619,3034,0,1,f +15619,3062a,0,1,f +15619,3460,0,1,f +15619,3461,7,1,f +15619,3481,14,1,f +15619,3482,4,2,f +15619,3587,14,1,f +15619,3660,0,6,f +15619,3700b,0,2,f +15619,3707,79,1,f +15620,2352,4,1,f +15620,3001,4,4,f +15620,3001,15,4,f +15620,3001,14,3,f +15620,3001,1,4,f +15620,3001pr1,14,1,f +15620,3002,15,2,f +15620,3002,0,2,f +15620,3002,4,2,f +15620,3002,14,2,f +15620,3002,1,2,f +15620,3003,1,4,f +15620,3003,0,2,f +15620,3003,15,4,f +15620,3003,14,8,f +15620,3003,4,4,f +15620,3003pe1,14,2,f +15620,3006,14,2,f +15620,3185,4,4,f +15620,3483,0,4,f +15620,4130,4,1,f +15620,4131,15,1,f +15620,4132,4,1,f +15620,4133,15,1,f +15620,4180c02,0,2,f +15620,4204,2,1,f +15620,bfp002,9999,1,f +15622,2456,4,2,f +15622,2456,15,8,f +15622,2456,1,8,f +15622,2456,14,2,f +15622,3001,1,44,f +15622,3001,2,22,f +15622,3001,14,32,f +15622,3001,0,14,f +15622,3001,4,32,f +15622,3001,15,44,f +15622,3001,25,8,f +15622,3002,15,28,f +15622,3002,1,28,f +15622,3002,2,8,f +15622,3002,0,14,f +15622,3002,25,8,f +15622,3002,4,16,f +15622,3002,14,16,f +15622,3003,15,104,f +15622,3003,2,52,f +15622,3003,0,36,f +15622,3003,25,24,f +15622,3003,4,62,f +15622,3003,1,104,f +15622,3003,14,62,f +15622,3004,4,74,f +15622,3004,25,24,f +15622,3004,2,52,f +15622,3004,1,102,f +15622,3004,0,52,f +15622,3004,14,74,f +15622,3004,15,104,f +15622,3004p0b,14,2,f +15622,3005,14,50,f +15622,3005,4,56,f +15622,3005,25,24,f +15622,3005,2,44,f +15622,3005,0,42,f +15622,3005,1,66,f +15622,3005,15,66,f +15622,3005pe1,14,4,f +15622,3007,15,8,f +15622,3007,1,8,f +15622,3007,14,2,f +15622,3007,4,2,f +15622,3008,14,2,f +15622,3008,1,14,f +15622,3008,4,2,f +15622,3008,15,14,f +15622,3009,14,16,f +15622,3009,15,14,f +15622,3009,4,16,f +15622,3009,1,14,f +15622,3010,1,22,f +15622,3010,15,28,f +15622,3010,14,18,f +15622,3010,4,18,f +15622,3010,25,8,f +15622,3010,2,8,f +15622,3010p01,14,2,f +15622,3039,0,6,f +15622,3039,14,6,f +15622,3040b,14,4,f +15622,3040b,0,6,f +15622,3297,15,6,f +15622,3297,4,12,f +15622,3298,4,10,f +15622,3298,15,6,f +15622,3622,1,14,f +15622,3622,15,14,f +15622,3622,14,16,f +15622,3622,4,18,f +15622,3622,25,8,f +15622,3622,2,8,f +15622,3660,0,4,f +15622,3660,14,4,f +15622,3665,0,4,f +15622,3665,14,4,f +15622,3747b,4,4,f +15622,4286,4,4,f +15622,4286,15,4,f +15622,4287,15,4,f +15622,4287,4,4,f +15624,3001,15,1,f +15624,3001,0,6,f +15624,3002,0,11,f +15624,3003,0,2,f +15624,3003,15,16,f +15624,3004,4,6,f +15624,3004,0,40,f +15624,3004,15,16,f +15624,3005,15,6,f +15624,3005,4,2,f +15624,3005,0,36,f +15624,3006,0,5,f +15624,3007,0,16,f +15624,3007,4,2,f +15624,3007,15,1,f +15624,3008,4,3,f +15624,3008,0,6,f +15624,3009,4,3,f +15624,3009,0,3,f +15624,3010,4,1,f +15624,3010,0,11,f +15624,3020,15,4,f +15624,3020,7,3,f +15624,3020,0,12,f +15624,3020,14,2,f +15624,3020,4,2,f +15624,3021,14,3,f +15624,3021,0,21,f +15624,3022,14,6,f +15624,3022,0,18,f +15624,3022,4,2,f +15624,3023,14,11,f +15624,3023,4,3,f +15624,3023,15,22,f +15624,3023,0,68,f +15624,3024,14,6,f +15624,3024,15,10,f +15624,3024,7,26,f +15624,3024,4,2,f +15624,3024,0,26,f +15624,3030,0,3,f +15624,3032,0,3,f +15624,3032,4,1,f +15624,3033,0,1,f +15624,3034,0,42,f +15624,3034,4,4,f +15624,3035,4,1,f +15624,3035,0,1,f +15624,3036,4,2,f +15624,3039,0,1,f +15624,3039,4,12,f +15624,3040b,4,8,f +15624,3040b,0,10,f +15624,3043,4,1,f +15624,3044c,0,3,f +15624,3044c,4,1,f +15624,3062b,7,52,f +15624,3063b,0,8,f +15624,3070b,0,38,f +15624,3070b,0,1,t +15624,3149c01,0,1,f +15624,3176,0,6,f +15624,32062,0,1,f +15624,3324c01,0,2,f +15624,3460,0,45,f +15624,3460,15,18,f +15624,3482,7,1,f +15624,3622,0,6,f +15624,3623,15,6,f +15624,3623,0,20,f +15624,3623,14,8,f +15624,3626b,14,1,f +15624,3633,0,26,f +15624,3651,7,2,f +15624,3659,0,1,f +15624,3660,4,4,f +15624,3660,15,8,f +15624,3660,0,6,f +15624,3666,0,18,f +15624,3666,15,20,f +15624,3666,4,2,f +15624,3679,7,1,f +15624,3680,4,1,f +15624,3700,0,6,f +15624,3705,0,1,f +15624,3709,4,4,f +15624,3710,14,5,f +15624,3710,15,18,f +15624,3710,0,24,f +15624,3710,4,3,f +15624,3713,7,1,t +15624,3713,7,15,f +15624,3737,0,3,f +15624,3738,4,2,f +15624,3749,7,1,f +15624,3794a,7,12,f +15624,3795,15,1,f +15624,3795,7,4,f +15624,3795,0,21,f +15624,4070,14,16,f +15624,4191767,89,1,f +15624,rb00164,0,1,f +15625,3032,15,1,f +15625,3068bpb0409,15,1,f +15625,3068bpb0410,15,1,f +15625,3068bpb0411,15,1,f +15625,3068bpb0481,15,1,f +15625,3068bpb0482,15,1,f +15625,3068bpb0483,15,1,f +15628,32062,0,1,f +15628,32174,0,1,f +15628,32476,320,2,f +15628,32506,0,2,f +15628,43093,1,1,f +15628,44036,191,2,f +15628,4519,7,1,f +15628,47296,191,3,f +15628,47313,57,1,f +15628,47330,320,1,f +15628,55095pr0001,15,1,f +15630,3626bpr1065,14,1,f +15630,3878pr0002,0,1,f +15630,88646,0,1,f +15630,93549pat02,47,1,f +15630,970c00pr0399,0,1,f +15630,973pr2163c01,0,1,f +15632,193au,15,2,f +15632,21,47,1,f +15632,3001a,0,6,f +15632,3001a,4,2,f +15632,3003,15,3,f +15632,3003,4,5,f +15632,3004,4,34,f +15632,3004,0,14,f +15632,3004,15,3,f +15632,3004,14,2,f +15632,3005,0,2,f +15632,3005,4,12,f +15632,3008,0,2,f +15632,3008,4,2,f +15632,3009,0,16,f +15632,3009,4,7,f +15632,3009,47,2,f +15632,3010,0,10,f +15632,3010,4,9,f +15632,3020,14,1,f +15632,3020,0,2,f +15632,3020,15,7,f +15632,3022,15,4,f +15632,3023,15,1,f +15632,3024,4,4,f +15632,3027,0,2,f +15632,3028,0,1,f +15632,3030,0,1,f +15632,3031,4,1,f +15632,3033,0,1,f +15632,3034,15,3,f +15632,3035,15,1,f +15632,3036,0,1,f +15632,3037,0,2,f +15632,3039,15,4,f +15632,3039,4,3,f +15632,3039,47,2,f +15632,3040b,0,10,f +15632,3062a,34,3,f +15632,3062a,36,3,f +15632,3069b,15,12,f +15632,3081cc01,14,8,f +15632,3144,79,1,f +15632,3183a,15,1,f +15632,3184,15,1,f +15632,3359,0,1,f +15632,3460,7,4,f +15632,3461,7,1,f +15632,3462,15,1,f +15632,3475b,7,4,f +15632,3480,7,3,f +15632,3481,4,4,f +15632,3579,4,1,f +15632,3596,15,1,f +15632,3624,15,3,f +15632,3626apr0001,14,5,f +15632,3633,14,11,f +15632,3645p02,1,1,f +15632,3659,4,2,f +15632,3660,4,8,f +15632,3660,15,7,f +15632,3838,7,1,f +15632,420,14,1,f +15632,7930,14,1,f +15632,970c00,15,5,f +15632,973c07,1,5,f +15633,14226c41,0,1,f +15633,2335,0,2,f +15633,2339,0,6,f +15633,2343,47,1,f +15633,2357,15,2,f +15633,2412b,72,23,f +15633,2412b,297,3,f +15633,2419,72,2,f +15633,2420,72,4,f +15633,2431,71,8,f +15633,2432,2,1,f +15633,2436,4,1,f +15633,2444,0,6,f +15633,2445,72,6,f +15633,2454a,0,4,f +15633,2456,71,2,f +15633,2456,0,5,f +15633,2460,72,5,f +15633,2476a,71,5,f +15633,2540,72,11,f +15633,2555,0,9,f +15633,2566,0,4,f +15633,2654,71,11,f +15633,2730,0,2,f +15633,2780,0,2,t +15633,2780,0,17,f +15633,3001,0,5,f +15633,3001,15,1,f +15633,3002,0,3,f +15633,30029,0,1,f +15633,3003,0,11,f +15633,3004,0,30,f +15633,30041,72,1,f +15633,30042,72,1,f +15633,30043,71,1,f +15633,3005,0,14,f +15633,3007,0,2,f +15633,30095,72,2,f +15633,30099,0,6,f +15633,3010,0,5,f +15633,3010,72,16,f +15633,30103,0,5,f +15633,30104,72,2,f +15633,30132,72,3,f +15633,30132,72,1,t +15633,30145,0,4,f +15633,30151a,47,1,f +15633,30152pat0001,0,1,f +15633,30153,33,1,f +15633,30162,72,8,f +15633,30173a,71,1,f +15633,3020,72,6,f +15633,3021,0,2,f +15633,3021,4,2,f +15633,30214,47,1,f +15633,3022,14,4,f +15633,3022,0,3,f +15633,30229,72,1,f +15633,3023,72,24,f +15633,3023,14,3,f +15633,30237a,0,6,f +15633,3028,71,2,f +15633,3030,0,3,f +15633,3031,15,1,f +15633,3031,0,1,f +15633,3032,72,3,f +15633,3032,2,1,f +15633,3033,71,3,f +15633,3034,15,1,f +15633,3034,0,5,f +15633,30355,0,1,f +15633,30356,0,1,f +15633,3036,72,4,f +15633,30374,0,1,f +15633,30377,0,1,t +15633,30377,0,10,f +15633,30383,71,2,f +15633,3039,0,5,f +15633,3040b,0,12,f +15633,3045,4,2,f +15633,30464,2,1,f +15633,3048c,0,1,f +15633,30503,15,4,f +15633,30504,72,8,f +15633,30526,72,6,f +15633,30536,40,1,f +15633,30540,71,2,f +15633,30541,0,2,f +15633,30553,72,6,f +15633,30562,71,4,f +15633,3062b,0,4,f +15633,3062b,47,5,f +15633,3062b,41,2,f +15633,3063b,0,2,f +15633,3068b,71,32,f +15633,3068bpr0136,72,2,f +15633,3069bpr0101,71,1,f +15633,3070b,15,3,f +15633,3070b,0,1,t +15633,3070b,15,1,t +15633,3070b,0,3,f +15633,3070bpr0007,71,1,t +15633,3070bpr0007,71,1,f +15633,32000,71,10,f +15633,32002,72,1,t +15633,32002,72,2,f +15633,32009,0,2,f +15633,32018,72,4,f +15633,32062,4,1,f +15633,32073,71,1,f +15633,32074c01,72,1,f +15633,32140,72,2,f +15633,32270,0,2,f +15633,32324,0,1,f +15633,32333,0,2,f +15633,32556,71,2,f +15633,3298,72,3,f +15633,3307,0,2,f +15633,3403,0,2,f +15633,3404,0,2,f +15633,3622,0,9,f +15633,3626bpr0347,78,1,f +15633,3626bpr0471,15,1,f +15633,3626bpr0472,78,1,f +15633,3626bpr0473,78,1,f +15633,3626bpr0474,78,1,f +15633,3626bpr0476,78,1,f +15633,3626bpr0479,78,1,f +15633,3626cpr0468,42,1,f +15633,3648b,71,2,f +15633,3660,0,5,f +15633,3660,15,2,f +15633,3665,0,6,f +15633,3666,71,5,f +15633,3679,71,6,f +15633,3680,0,6,f +15633,3700,14,4,f +15633,3700,72,3,f +15633,3701,71,2,f +15633,3702,71,3,f +15633,3706,0,1,f +15633,3707,0,1,f +15633,3708,0,1,f +15633,3709,0,1,f +15633,3710,0,10,f +15633,3713,71,1,t +15633,3713,71,3,f +15633,3737,0,1,f +15633,3747b,0,6,f +15633,3794a,2,1,f +15633,3794a,71,14,f +15633,3795,71,12,f +15633,3878,0,1,f +15633,3895,0,6,f +15633,3899,47,1,f +15633,3901,0,1,f +15633,3937,72,9,f +15633,3938,4,1,f +15633,3940b,0,1,f +15633,3941,72,11,f +15633,3941,15,1,f +15633,3942c,0,1,f +15633,3960pr0017a,0,1,f +15633,40234,70,1,f +15633,40243,71,16,f +15633,40244,0,4,f +15633,4032a,15,3,f +15633,4032b,4,1,f +15633,4032b,2,1,f +15633,4032b,71,4,f +15633,40386,0,2,f +15633,4070,15,4,f +15633,4083,0,1,f +15633,4085c,4,3,f +15633,4095,0,5,f +15633,41334,0,1,f +15633,4151,72,7,f +15633,4162,0,6,f +15633,41747,0,5,f +15633,41748,0,5,f +15633,41879a,85,1,f +15633,4274,1,16,f +15633,4274,1,1,t +15633,4287,71,2,f +15633,43121,71,1,f +15633,43337,0,2,f +15633,4360,0,2,f +15633,43712,4,1,f +15633,43719,2,1,f +15633,43751,0,1,f +15633,43898,0,1,f +15633,44032,71,4,f +15633,44126,0,1,f +15633,44294,71,2,f +15633,44300,71,4,f +15633,44567a,72,2,f +15633,44568,15,4,f +15633,44570,71,2,f +15633,44572,0,2,f +15633,4460a,0,4,f +15633,44661,14,1,f +15633,44676,0,2,f +15633,44728,72,5,f +15633,4477,0,4,f +15633,4515,0,2,f +15633,4589,72,5,f +15633,4589,46,7,f +15633,4589,15,3,f +15633,4589,36,6,f +15633,4599a,71,2,f +15633,46667,72,1,f +15633,4716,0,2,f +15633,4733,71,2,f +15633,4733,15,3,f +15633,4735,71,2,f +15633,4736,0,1,f +15633,47397,0,3,f +15633,47398,0,3,f +15633,4742,72,1,f +15633,47457,191,1,f +15633,47457,0,4,f +15633,47753,0,2,f +15633,47843,0,2,f +15633,47844,47,2,f +15633,47847pat0001,143,2,f +15633,47905,72,2,f +15633,48092,71,4,f +15633,48288,72,3,f +15633,48336,0,6,f +15633,4854,0,2,f +15633,4855,15,2,f +15633,4865a,71,10,f +15633,4871,15,3,f +15633,48729a,72,10,f +15633,49668,191,7,f +15633,49668,0,7,f +15633,49668,0,2,t +15633,50231,14,1,f +15633,50950,4,2,f +15633,52040,71,4,f +15633,54200,46,12,f +15633,54200,0,9,f +15633,55295,0,1,f +15633,55296,0,1,f +15633,55297,0,1,f +15633,55298,0,1,f +15633,55299,0,1,f +15633,55300,0,1,f +15633,55704,0,1,f +15633,55706,0,2,f +15633,55707a,0,1,f +15633,55707e,0,2,f +15633,56619,0,1,f +15633,56630,0,1,f +15633,58181,40,2,f +15633,58827,0,6,f +15633,6019,72,8,f +15633,6020,71,2,f +15633,6046,0,3,f +15633,6082,72,5,f +15633,6112,71,1,f +15633,6126a,57,8,f +15633,6134,71,8,f +15633,6140,0,2,f +15633,6141,46,1,t +15633,6141,41,2,f +15633,6141,46,24,f +15633,6141,41,1,t +15633,6179,71,8,f +15633,6180,0,1,f +15633,6190,72,1,f +15633,6231,71,4,f +15633,6232,15,2,f +15633,63965,15,1,f +15633,6538b,71,3,f +15633,6541,72,14,f +15633,6558,0,2,f +15633,6564,0,2,f +15633,6564,15,1,f +15633,6565,0,2,f +15633,6565,15,1,f +15633,6587,72,1,f +15633,6588,47,2,f +15633,6636,0,6,f +15633,6636,71,8,f +15633,71155,0,1,f +15633,73590c02a,15,1,f +15633,75c31,0,1,f +15633,76110c01,71,1,f +15633,7783stk01,9999,1,t +15633,85973,0,1,f +15633,970c00,71,1,f +15633,970c00,0,1,f +15633,970c00,72,1,f +15633,970c00,272,1,f +15633,970c00,1,1,f +15633,970x021,2,1,f +15633,973c06,1,2,f +15633,973pr0986c01,272,1,f +15633,973pr1274c01,0,1,f +15633,973pr1275c01,0,1,f +15633,973pr1278c01,0,1,f +15633,973pr1279c01,4,1,f +15633,98721,0,3,f +15634,30375,27,1,f +15634,30377,3,2,f +15634,30530,27,1,f +15634,x117px2,3,1,f +15635,18018,179,1,f +15635,3437,14,1,f +15635,47517,0,1,f +15635,51703,182,1,f +15635,57052,0,1,f +15635,98930,4,1,f +15637,273,0,50,f +15637,3482,4,6,f +15637,3483,0,6,f +15637,3705,79,2,f +15637,3706,79,2,f +15637,3707,79,2,f +15637,3708,79,2,f +15637,3709a,7,6,f +15637,569,4,6,f +15637,570,1,2,f +15637,572,14,1,f +15637,9244a,4,2,f +15637,pinpw2,80,4,f +15637,x148,4,10,f +15639,2412b,0,1,f +15639,2420,4,1,f +15639,2446,0,1,f +15639,2447,42,1,t +15639,2447,42,1,f +15639,2466p68,42,1,f +15639,2569,42,1,f +15639,3023,4,1,f +15639,3039p10,0,1,f +15639,3069bp68,15,1,f +15639,3626apr0001,14,1,f +15639,3838,0,1,f +15639,3839b,4,1,f +15639,3937,4,2,f +15639,3938,0,2,f +15639,3962a,0,1,f +15639,4081b,4,2,f +15639,4085c,4,1,f +15639,4288,0,4,f +15639,4589,42,4,f +15639,4590,0,1,f +15639,4600,0,2,f +15639,4624,7,4,f +15639,4732,4,1,f +15639,4740,42,2,f +15639,970x026,15,1,f +15639,973p68c01,4,1,f +15640,18805,484,1,f +15640,19011,84,1,f +15640,19013,71,1,f +15640,19520,322,1,f +15640,3437,27,2,f +15640,47511pr0003,15,1,f +15640,6497,15,1,f +15640,6510,4,1,f +15640,6510,10,1,f +15640,87084,10,2,f +15640,98233,70,1,f +15641,2780,0,11,f +15641,2780,0,1,t +15641,2825,0,3,f +15641,2905,72,2,f +15641,2905,0,2,f +15641,32002,72,1,f +15641,32002,72,1,t +15641,32062,0,14,f +15641,32073,71,2,f +15641,32174,72,9,f +15641,32174,71,2,f +15641,32174,0,12,f +15641,32177,72,2,f +15641,32184,135,1,f +15641,32209,15,1,f +15641,32270,0,4,f +15641,32271,0,4,f +15641,32278,148,1,f +15641,32475,72,2,f +15641,32506,179,2,f +15641,32523,72,1,f +15641,32525,0,1,f +15641,32556,71,2,f +15641,33299a,0,2,f +15641,3705,0,6,f +15641,3713,71,3,f +15641,40490,0,2,f +15641,41668,0,2,f +15641,41669,135,10,f +15641,41669,0,10,f +15641,41669,36,2,f +15641,41678,0,2,f +15641,43093,1,14,f +15641,43558,148,1,f +15641,43857,0,1,f +15641,44033,179,1,f +15641,44138,0,1,f +15641,44140,148,2,f +15641,44148,72,6,f +15641,4519,71,13,f +15641,45749,72,2,f +15641,47295,179,1,f +15641,47296,72,2,f +15641,47296,320,4,f +15641,47297,0,2,f +15641,47297,320,2,f +15641,47298,178,2,f +15641,47299,179,3,f +15641,47299,178,2,f +15641,47300,72,5,f +15641,47305,320,1,f +15641,47306,0,1,f +15641,47310,178,2,f +15641,47310,0,2,f +15641,47311,320,2,f +15641,47312,72,1,f +15641,47313,42,1,f +15641,48253,179,2,f +15641,49423,178,1,f +15641,53069,178,1,f +15641,53070,179,2,f +15641,6553,71,2,f +15641,6558,0,11,f +15641,6587,72,3,f +15641,6632,72,3,f +15642,265bc01,14,6,f +15642,3065,46,2,f +15642,3065,36,2,f +15642,3065,34,2,f +15643,54690,0,3,f +15645,10928,72,6,f +15645,11214,72,18,f +15645,11478,0,6,f +15645,11954,1,4,f +15645,13971,71,1,f +15645,14720,71,1,f +15645,15100,0,2,f +15645,15458,15,2,f +15645,15462,28,11,f +15645,16511,71,1,f +15645,18575,19,6,f +15645,18654,72,3,t +15645,18654,72,12,f +15645,18938,0,1,f +15645,18939,71,1,f +15645,18946,4,11,f +15645,18947,72,4,f +15645,18948,15,6,f +15645,19159,0,1,f +15645,19540,0,4,f +15645,20874,9999,1,t +15645,21474,0,1,f +15645,21478,0,1,f +15645,2431,1,2,f +15645,2637,71,4,f +15645,2637,71,1,t +15645,2780,0,4,t +15645,2780,0,185,f +15645,3020,72,4,f +15645,3021,1,6,f +15645,30292,272,1,f +15645,30374,0,2,f +15645,32000,0,4,f +15645,32002,19,2,t +15645,32002,19,4,f +15645,32009,1,2,f +15645,32009,15,2,f +15645,32013,15,2,f +15645,32015,71,2,f +15645,32015,15,2,f +15645,32034,0,3,f +15645,32039,0,9,f +15645,32054,0,36,f +15645,32054,71,50,f +15645,32062,4,15,f +15645,32063,0,16,f +15645,32073,71,14,f +15645,32123b,71,3,t +15645,32123b,71,26,f +15645,32123b,14,2,f +15645,32123b,14,1,t +15645,32126,1,2,f +15645,32138,0,2,f +15645,32140,71,16,f +15645,32140,1,6,f +15645,32184,71,3,f +15645,32198,19,4,f +15645,32270,0,5,f +15645,32271,15,2,f +15645,32278,1,40,f +15645,32278,72,5,f +15645,32316,0,8,f +15645,32449,15,8,f +15645,32523,15,5,f +15645,32523,1,17,f +15645,32523,0,1,f +15645,32524,72,4,f +15645,32524,15,1,f +15645,32524,1,27,f +15645,32525,72,8,f +15645,32525,0,3,f +15645,32525,1,5,f +15645,32526,15,5,f +15645,32526,72,18,f +15645,32526,1,7,f +15645,32556,19,15,f +15645,32557,0,4,f +15645,33299a,71,4,f +15645,3623,15,2,f +15645,3648b,72,4,f +15645,3673,71,1,t +15645,3673,71,16,f +15645,3705,0,10,f +15645,3706,0,11,f +15645,3707,0,3,f +15645,3713,71,20,f +15645,3713,71,4,t +15645,3737,0,2,f +15645,40490,71,7,f +15645,41239,15,3,f +15645,41239,72,20,f +15645,41677,15,2,f +15645,41678,71,4,f +15645,4185,71,4,f +15645,42003,0,10,f +15645,42610,71,28,f +15645,4274,71,2,t +15645,4274,71,14,f +15645,43093,1,39,f +15645,44294,71,3,f +15645,44809,0,5,f +15645,4519,71,40,f +15645,4716,71,2,f +15645,48989,71,11,f +15645,53586,179,1,f +15645,55013,72,5,f +15645,55615,71,2,f +15645,55982,71,2,f +15645,57519,0,4,f +15645,59426,72,4,f +15645,59443,0,4,f +15645,59443,4,12,f +15645,60483,72,23,f +15645,60484,72,2,f +15645,60484,71,12,f +15645,60485,71,2,f +15645,61409,72,8,f +15645,6141,47,1,t +15645,6141,182,2,f +15645,6141,47,3,f +15645,6141,182,1,t +15645,61510,71,1,f +15645,61903,71,1,f +15645,62462,71,3,f +15645,62462,14,1,f +15645,63869,71,14,f +15645,64178,71,2,f +15645,64179,71,2,f +15645,6536,71,8,f +15645,6558,1,129,f +15645,6587,28,6,f +15645,6589,19,4,f +15645,6628,0,4,f +15645,6629,1,4,f +15645,6632,1,6,f +15645,6632,0,4,f +15645,6641,4,2,f +15645,76244,15,2,f +15645,87079,15,2,f +15645,87080,1,6,f +15645,87083,72,14,f +15645,87086,1,5,f +15645,87408,0,3,f +15645,87994,71,2,f +15645,87994,71,1,t +15645,88323,72,90,f +15645,92693,71,1,f +15645,92907,0,6,f +15645,94925,71,3,f +15645,99008,19,5,f +15645,99499,71,1,f +15645,99773,0,2,f +15645,99773,72,2,f +15646,10646,9999,1,t +15646,11797,4,1,f +15646,12825,1,4,f +15646,12825,1,1,t +15646,13731,1,2,f +15646,15207,19,2,f +15646,18759,72,2,f +15646,2412b,25,6,f +15646,2419,1,2,f +15646,2419,71,2,f +15646,2420,1,2,f +15646,2431,71,2,f +15646,2432,1,2,f +15646,2445,72,2,f +15646,2450,71,6,f +15646,2456,1,2,f +15646,2458,19,4,f +15646,2653,71,6,f +15646,2654,71,9,f +15646,2780,0,4,f +15646,2780,0,1,t +15646,2817,71,2,f +15646,2877,71,11,f +15646,3001,1,2,f +15646,3001,72,2,f +15646,3004,1,4,f +15646,3008,72,4,f +15646,30088,0,1,f +15646,3010,72,2,f +15646,3020,72,1,f +15646,3020,1,4,f +15646,3021,1,5,f +15646,3021,71,5,f +15646,3022,1,5,f +15646,3022,71,2,f +15646,3023,15,2,f +15646,3023,182,14,f +15646,3023,71,4,f +15646,3028,72,1,f +15646,30286,182,1,f +15646,3032,19,1,f +15646,3032,71,2,f +15646,30350b,72,1,f +15646,30355,72,1,f +15646,30356,72,1,f +15646,30365,71,2,f +15646,30374,41,1,f +15646,30374,35,1,f +15646,3039,1,6,f +15646,3039,71,3,f +15646,3040b,1,4,f +15646,30410,70,1,f +15646,30414,0,4,f +15646,30503,71,6,f +15646,3062b,41,2,f +15646,3068b,0,2,f +15646,3069b,1,6,f +15646,3070b,25,4,f +15646,3070b,71,1,t +15646,3070b,25,2,t +15646,3070b,71,2,f +15646,32013,1,4,f +15646,32028,71,3,f +15646,3460,71,2,f +15646,3622,25,4,f +15646,3623,1,8,f +15646,3626cpr1005,15,1,f +15646,3626cpr1006,78,1,f +15646,3626cpr1007,78,1,f +15646,3660,1,2,f +15646,3660,72,2,f +15646,3665,1,2,f +15646,3666,1,2,f +15646,3676,72,2,f +15646,3700,72,2,f +15646,3702,71,2,f +15646,3710,71,7,f +15646,3710,19,2,f +15646,3747b,1,2,f +15646,3747b,71,18,f +15646,3794b,1,4,f +15646,3795,72,2,f +15646,3795,71,2,f +15646,3795,1,2,f +15646,3901,484,1,f +15646,3941,46,1,f +15646,4162,1,2,f +15646,41751,71,1,f +15646,41767,72,2,f +15646,41768,72,2,f +15646,41769,1,4,f +15646,41770,1,4,f +15646,42021,71,1,f +15646,42023,72,2,f +15646,42060,1,2,f +15646,42061,1,2,f +15646,4286,1,4,f +15646,4287,1,2,f +15646,43722,1,1,f +15646,43723,1,1,f +15646,4477,72,2,f +15646,4477,1,8,f +15646,4589,25,12,f +15646,4623,72,1,f +15646,4733,72,2,f +15646,47457,1,1,f +15646,48336,1,1,f +15646,4865b,72,2,f +15646,50231,70,2,f +15646,51739,71,2,f +15646,51739,72,6,f +15646,52107,0,8,f +15646,54200,182,4,f +15646,54200,47,1,t +15646,54200,47,2,f +15646,54200,182,1,t +15646,54383,71,4,f +15646,54384,71,4,f +15646,55013,72,1,f +15646,56908,1,1,f +15646,58176,143,2,f +15646,60476,71,2,f +15646,60479,71,2,f +15646,60481,71,2,f +15646,61184,71,2,f +15646,6141,72,2,f +15646,6141,71,8,f +15646,6141,182,3,t +15646,6141,182,8,f +15646,6141,42,1,t +15646,6141,72,1,t +15646,6141,71,4,t +15646,6141,42,4,f +15646,61678,1,6,f +15646,61780,72,2,f +15646,6222,71,1,f +15646,63868,71,2,f +15646,64567,80,2,f +15646,6636,1,4,f +15646,73983,0,8,f +15646,75c20,1,4,f +15646,75c20,1,1,t +15646,85984,1,3,f +15646,87580,71,4,f +15646,88930,71,2,f +15646,92280,71,6,f +15646,92743pr0001,19,1,f +15646,92946,1,2,f +15646,92947,71,4,f +15646,93273,1,3,f +15646,93606,71,12,f +15646,95354,1,1,f +15646,96874,25,1,t +15646,970c00,72,1,f +15646,970c00,19,1,f +15646,970c00,70,1,f +15646,973pr1739c01,28,1,f +15646,973pr1802c01,19,1,f +15646,973pr2091c01,4,1,f +15646,973pr2095c01,19,1,f +15646,98102,47,3,f +15646,98119pr0001,308,1,f +15648,3068b,15,100,f +15650,2420,4,2,f +15650,2420,14,4,f +15650,2711,0,2,f +15650,2712,7,1,f +15650,2717,0,2,f +15650,2736,7,6,f +15650,2740c01,0,1,f +15650,2743,14,12,f +15650,2744,14,10,f +15650,3003,7,1,f +15650,3003,14,1,f +15650,3004,7,1,f +15650,3004,4,1,f +15650,3004,14,3,f +15650,3010,14,1,f +15650,3020,7,2,f +15650,3020,14,6,f +15650,3021,14,19,f +15650,3022,14,2,f +15650,3023,4,4,f +15650,3023,14,14,f +15650,3023,7,8,f +15650,3030,14,2,f +15650,3040b,14,9,f +15650,3040b,4,3,f +15650,3062b,36,1,f +15650,3065,36,1,f +15650,3065,34,1,f +15650,32005a,0,3,f +15650,3460,14,16,f +15650,3482,14,4,f +15650,3483,0,4,f +15650,3585,14,1,f +15650,3586,14,1,f +15650,3622,7,2,f +15650,3622,4,1,f +15650,3622,14,4,f +15650,3623,14,18,f +15650,3647,7,4,f +15650,3648a,7,1,f +15650,3651,7,24,f +15650,3652,7,1,f +15650,3660,7,1,f +15650,3665,14,5,f +15650,3666,14,10,f +15650,3666,4,3,f +15650,3673,7,6,f +15650,3700,14,13,f +15650,3700,7,2,f +15650,3701,7,2,f +15650,3701,14,7,f +15650,3702,14,8,f +15650,3702,7,4,f +15650,3703,14,18,f +15650,3704,0,3,f +15650,3705,0,9,f +15650,3706,0,10,f +15650,3707,0,3,f +15650,3708,0,3,f +15650,3710,14,16,f +15650,3710,7,2,f +15650,3710,4,2,f +15650,3713,7,14,f +15650,3737,0,5,f +15650,3749,7,5,f +15650,3794a,14,7,f +15650,3795,14,5,f +15650,3894,7,4,f +15650,3894,14,9,f +15650,3895,14,4,f +15650,4019,7,3,f +15650,4185,7,2,f +15650,4261,7,8,f +15650,4265a,7,43,f +15650,4273b,7,20,f +15650,4274,7,9,f +15650,4286,14,1,f +15650,4287,14,5,f +15650,4442,0,4,f +15650,4442,7,2,f +15650,4459,0,62,f +15650,4477,14,4,f +15650,4519,0,20,f +15650,9244,7,2,f +15650,tech011,9999,1,f +15651,2412b,72,2,f +15651,2420,0,4,f +15651,2431,72,2,f +15651,2431,320,8,f +15651,2432,0,2,f +15651,2445,0,1,f +15651,2555,72,4,f +15651,2569,71,1,f +15651,2584,0,1,f +15651,2585,0,1,f +15651,2654,47,6,f +15651,2730,0,4,f +15651,2780,0,14,f +15651,3001,72,1,f +15651,3003,320,3,f +15651,3004,71,1,f +15651,3007,0,3,f +15651,3010,15,1,f +15651,3010,72,2,f +15651,30171,0,1,f +15651,3020,72,2,f +15651,3022,19,1,f +15651,3023,72,1,f +15651,3023,15,7,f +15651,30236,71,1,f +15651,3031,320,3,f +15651,3032,19,1,f +15651,3034,19,2,f +15651,3034,320,2,f +15651,3034,0,4,f +15651,3035,0,4,f +15651,3039,320,4,f +15651,30395,72,1,f +15651,30407,72,2,f +15651,3040b,320,2,f +15651,30663,0,1,f +15651,3069b,71,1,f +15651,3070b,15,6,f +15651,32013,72,2,f +15651,32039,0,10,f +15651,32209,72,4,f +15651,32271,72,4,f +15651,3245b,72,4,f +15651,32531,0,2,f +15651,33057,484,2,f +15651,3308,15,1,f +15651,3460,72,1,f +15651,3623,19,2,f +15651,3626bpr0441,14,1,f +15651,3659,71,2,f +15651,3660,320,10,f +15651,3665,72,2,f +15651,3700,320,2,f +15651,3700,0,6,f +15651,3700,72,4,f +15651,3700,19,1,f +15651,3706,0,2,f +15651,3707,0,6,f +15651,3709,0,3,f +15651,3713,71,10,f +15651,3737,0,2,f +15651,3747b,320,4,f +15651,3747b,72,8,f +15651,3749,19,1,f +15651,3795,320,2,f +15651,3832,72,3,f +15651,3937,71,2,f +15651,3962b,0,1,f +15651,4079,71,1,f +15651,4081b,0,2,f +15651,4085c,71,2,f +15651,4085c,72,2,f +15651,4150,71,2,f +15651,41677,0,2,f +15651,4175,72,3,f +15651,4176,40,2,f +15651,42022,320,2,f +15651,42023,320,2,f +15651,42610,71,1,f +15651,4274,71,1,t +15651,4274,71,1,f +15651,43093,1,6,f +15651,44567a,72,2,f +15651,44728,0,2,f +15651,4477,0,1,f +15651,4515,19,1,f +15651,4519,71,1,f +15651,47457,71,1,f +15651,50943,71,1,f +15651,50950,320,4,f +15651,54125pb01,0,1,f +15651,54125pb01,484,1,f +15651,54125pb02,69,1,f +15651,54470,9999,1,t +15651,56823,0,1,f +15651,6134,0,2,f +15651,6141,71,1,t +15651,6141,71,8,f +15651,6141,46,1,t +15651,6141,46,4,f +15651,6581,0,4,f +15651,6582,71,4,f +15651,6632,72,2,f +15651,970c00,0,1,f +15651,973pb0181c01,72,1,f +15653,132a,7,4,f +15653,36,7,2,f +15653,7039b,4,4,f +15653,715a,4,2,f +15654,3299,0,10,f +15654,3300,0,10,f +15654,3675,0,24,f +15655,2420,0,2,f +15655,2420,14,6,f +15655,2431pt0,15,1,f +15655,2444,0,3,f +15655,2445,14,1,f +15655,2569,0,1,f +15655,2715,4,1,f +15655,2716,47,1,f +15655,2717,4,2,f +15655,2719,7,3,f +15655,2730,14,2,f +15655,2780,0,60,f +15655,2817,0,2,f +15655,2825,14,2,f +15655,2850a,7,6,f +15655,2851,8,6,f +15655,2852,7,6,f +15655,2853,7,2,f +15655,2854,7,2,f +15655,3002,0,1,f +15655,3004,0,1,f +15655,3005,14,2,f +15655,3021,14,4,f +15655,3021,4,2,f +15655,3021,0,4,f +15655,3022,0,1,f +15655,3023,0,3,f +15655,3023,14,13,f +15655,3023,7,2,f +15655,3024,14,2,f +15655,3031,14,2,f +15655,3069b,7,2,f +15655,3460,0,3,f +15655,3460,14,1,f +15655,3623,14,3,f +15655,3623,0,4,f +15655,3647,7,3,f +15655,3648a,7,2,f +15655,3650a,7,1,f +15655,3666,0,7,f +15655,3673,7,4,f +15655,3700,7,4,f +15655,3700,0,6,f +15655,3700,14,2,f +15655,3701,0,15,f +15655,3701,14,2,f +15655,3702,0,6,f +15655,3702,14,10,f +15655,3703,14,2,f +15655,3703,0,2,f +15655,3704,0,5,f +15655,3705,0,3,f +15655,3706,0,2,f +15655,3707,0,2,f +15655,3708,0,3,f +15655,3709,0,3,f +15655,3710,0,13,f +15655,3710,7,4,f +15655,3713,7,10,f +15655,3737,0,3,f +15655,3738,14,3,f +15655,3743,7,1,f +15655,3749,7,5,f +15655,3795,0,3,f +15655,3894,0,3,f +15655,3895,14,7,f +15655,3941,46,1,f +15655,3958,14,1,f +15655,4019,7,3,f +15655,4032a,14,1,f +15655,4070,14,2,f +15655,4085c,14,1,f +15655,4143,7,4,f +15655,4150,14,2,f +15655,4150p01,15,4,f +15655,4162,0,1,f +15655,4185,7,1,f +15655,4261,7,2,f +15655,4265a,7,15,f +15655,4266,15,4,f +15655,4267,0,4,f +15655,4273b,7,2,f +15655,4274,7,6,f +15655,4286,0,2,f +15655,4477,14,4,f +15655,4864apx5,15,2,f +15655,73071,7,1,f +15655,9244,7,1,f +15655,tech006,9999,1,f +15657,2335p30,15,1,f +15657,2357,7,2,f +15657,2420,0,1,f +15657,2518,2,2,f +15657,2530,8,1,f +15657,2542,6,2,f +15657,2543,1,1,f +15657,2544,6,1,f +15657,2551,4,1,f +15657,2555,7,1,f +15657,2562,6,2,f +15657,2586p30,15,2,f +15657,3004,0,4,f +15657,3010,7,1,f +15657,3020,7,2,f +15657,3022,1,1,f +15657,3022,7,1,f +15657,3023,0,2,f +15657,3023,7,2,f +15657,3024,7,5,f +15657,3039,7,1,f +15657,3040b,7,4,f +15657,3040b,4,2,f +15657,3062b,4,4,f +15657,3068b,4,2,f +15657,3068bp30,15,1,f +15657,3069b,1,1,f +15657,3623,7,4,f +15657,3626bp3j,14,2,f +15657,3626bp3k,14,1,f +15657,3626bp48,14,1,f +15657,3626bp49,14,1,f +15657,3679,7,1,f +15657,3680,0,1,f +15657,3710,7,1,f +15657,3794a,7,3,f +15657,3794a,0,1,f +15657,3794a,14,2,f +15657,3794a,4,1,f +15657,3795,4,1,f +15657,3795,7,1,f +15657,3839b,4,2,f +15657,3867,2,1,f +15657,3941,0,1,f +15657,3957a,0,2,f +15657,4032a,4,1,f +15657,4032a,0,2,f +15657,4070,7,2,f +15657,4085c,0,3,f +15657,4150p30,15,1,f +15657,4286,4,2,f +15657,4287,7,2,f +15657,4318,0,1,f +15657,4319,0,1,f +15657,4497,6,4,f +15657,4589,14,6,f +15657,4590,0,2,f +15657,4738a,6,1,f +15657,4739a,6,1,f +15657,4865a,0,2,f +15657,57503,334,1,f +15657,57504,334,1,f +15657,57505,334,1,f +15657,57506,334,1,f +15657,6019,7,2,f +15657,6019,0,2,f +15657,6025,0,2,f +15657,6026,2,1,f +15657,6027,2,1,f +15657,6028,2,1,f +15657,6030,4,1,f +15657,6082,8,1,f +15657,6091,7,3,f +15657,6126a,57,1,f +15657,6141,4,4,f +15657,6141,36,1,f +15657,6141,33,2,f +15657,6141,0,2,f +15657,6148,2,2,f +15657,87695,15,4,f +15657,87696,15,2,f +15657,970c00,0,1,f +15657,970c00,7,1,f +15657,970c03pb01,14,3,f +15657,973p33c01,14,1,f +15657,973p34c01,1,1,f +15657,973pb0062c01,14,2,f +15657,973pb0063c01,14,1,f +15657,sailbb01,15,1,f +15659,2412b,72,4,f +15659,2431,15,2,f +15659,2436,15,2,f +15659,298c05,71,3,f +15659,298c05,71,1,t +15659,3002,15,1,f +15659,3003,71,1,f +15659,3020,15,4,f +15659,3020,71,1,f +15659,3022,71,2,f +15659,3023,27,3,f +15659,3023,71,2,f +15659,3034,15,1,f +15659,30363,15,2,f +15659,3039,15,2,f +15659,3062b,15,4,f +15659,3068b,15,1,f +15659,3660,15,1,f +15659,3666,320,1,f +15659,3678b,15,4,f +15659,3700,15,1,f +15659,3710,320,2,f +15659,3794b,15,3,f +15659,3794b,320,4,f +15659,3832,71,1,f +15659,4070,15,2,f +15659,4081b,15,4,f +15659,4274,1,1,t +15659,4274,1,1,f +15659,43719,15,2,f +15659,44728,15,2,f +15659,4589,320,2,f +15659,48336,19,2,f +15659,54200,40,4,f +15659,54200,15,7,f +15659,54200,40,1,t +15659,54200,15,1,t +15659,54383,15,1,f +15659,54384,15,1,f +15659,60478,15,1,f +15659,6141,47,1,t +15659,6141,47,4,f +15659,62462,320,2,f +15659,63868,15,5,f +15659,63965,0,2,f +15661,2450,1,2,f +15661,2496,0,1,f +15661,2655,7,1,f +15661,3021,14,1,f +15661,3039,47,1,f +15661,3710,2,1,f +15661,6141,34,1,f +15661,6141,36,1,f +15661,6215,4,1,f +15664,3942a,0,2,f +15664,3943b,0,2,f +15664,3963,0,2,f +15665,264,14,1,f +15665,3004,14,1,f +15665,3957a,0,1,f +15665,4328,1,1,f +15665,4362acx1,14,1,f +15665,4440,1,1,f +15665,4461,14,1,f +15665,4466,4,1,f +15665,4467,4,1,f +15665,fab12a,9999,1,f +15665,fabaj1,14,6,f +15665,fabaj3,4,1,f +15669,3001,1,18,f +15669,3001,15,18,f +15669,3001,14,16,f +15669,3001,0,12,f +15669,3001,4,16,f +15669,3002,4,10,f +15669,3002,1,12,f +15669,3002,14,10,f +15669,3002,0,8,f +15669,3002,15,12,f +15669,3003,1,24,f +15669,3003,14,20,f +15669,3003,0,16,f +15669,3003,4,20,f +15669,3003,15,24,f +15669,3004,14,48,f +15669,3004,0,40,f +15669,3004,4,48,f +15669,3004,15,56,f +15669,3004,1,56,f +15669,3005,1,46,f +15669,3005,4,38,f +15669,3005,14,38,f +15669,3005,15,46,f +15669,3005,0,32,f +15669,3009,14,6,f +15669,3009,15,8,f +15669,3009,4,6,f +15669,3009,0,4,f +15669,3009,1,8,f +15669,3010,15,38,f +15669,3010,14,32,f +15669,3010,4,32,f +15669,3010,1,38,f +15669,3010,0,28,f +15669,3622,14,12,f +15669,3622,4,12,f +15669,3622,0,10,f +15669,3622,15,16,f +15669,3622,1,16,f +15671,3004,0,1,f +15671,3020,47,1,f +15671,3022,15,1,f +15671,3023,0,8,f +15671,3024,4,1,f +15671,3024,0,4,f +15671,3031,15,1,f +15671,3032,0,1,f +15671,3039,0,2,f +15671,3040b,0,2,f +15671,3460,7,6,f +15671,3461,7,1,f +15671,3462,0,1,f +15671,3480,7,1,f +15671,3481,15,1,f +15671,3626apr0001,14,1,f +15671,3660,0,3,f +15671,3660,15,3,f +15671,3665,15,2,f +15671,3666,7,2,f +15671,3710,0,2,f +15671,3710,15,3,f +15671,3795,0,1,f +15671,3821p02,15,1,f +15671,3822p02,15,1,f +15671,3823,47,1,f +15671,3832,0,1,f +15671,3842a,15,1,f +15671,970c00,0,1,f +15671,973pb0079c01,0,1,f +15672,2419,7,1,f +15672,2420,19,2,f +15672,2421,7,1,f +15672,30170,0,1,t +15672,30170,0,1,f +15672,30171,6,1,f +15672,3022,0,1,f +15672,3034,7,1,f +15672,3626bpa5,14,1,f +15672,3641,0,2,f +15672,3795,19,1,f +15672,4488,0,1,f +15672,4600,7,1,f +15672,4624,7,2,f +15672,4859,0,1,f +15672,4865a,47,1,f +15672,4871,19,1,f +15672,970c00,0,1,f +15672,973pa5c01,6,1,f +15673,11256,226,1,f +15673,3626bpr1059,14,1,f +15673,3678bpr0016b,323,1,f +15673,88646,0,1,f +15673,90398,82,1,f +15673,973pr2157c01,323,1,f +15674,2335p01,15,1,f +15674,2348b,33,2,f +15674,2349a,15,2,f +15674,2413,4,1,f +15674,2433,0,1,f +15674,2446,0,1,f +15674,2508,0,1,f +15674,2610,14,1,f +15674,2926,0,1,f +15674,298c03,1,1,f +15674,30086,14,1,f +15674,30088,4,1,f +15674,30090,33,1,f +15674,30091,15,1,f +15674,3010,15,1,f +15674,3020,15,1,f +15674,3020,0,2,f +15674,3022,7,3,f +15674,3023,15,3,f +15674,3024,46,2,f +15674,3024,36,2,f +15674,3034,0,1,f +15674,3037,15,1,f +15674,3069b,0,1,f +15674,3139,0,2,f +15674,3626bp04,14,1,f +15674,3626bpx11,14,1,f +15674,3710,15,3,f +15674,3730,7,1,f +15674,3794a,7,1,f +15674,3821,15,1,f +15674,3822,15,1,f +15674,3823,41,1,f +15674,3829c01,1,1,f +15674,3957a,15,1,f +15674,4032a,4,1,f +15674,4085c,1,1,f +15674,4211,4,2,f +15674,4214,15,1,f +15674,4215b,15,2,f +15674,4315,15,1,f +15674,4485,1,2,f +15674,4600,0,2,f +15674,4624,15,2,f +15674,59275,1,2,f +15674,6014a,15,4,f +15674,6015,0,4,f +15674,6141,7,1,f +15674,6141,7,1,t +15674,6556stk01,9999,1,t +15674,970c00,1,1,f +15674,970x023,0,1,f +15674,973px96c01,1,1,f +15674,973px98c01,15,1,f +15676,2412b,15,1,f +15676,3003,1,1,f +15676,3005,4,84,f +15676,3005,70,20,f +15676,3005,2,35,f +15676,3005,0,48,f +15676,3005,27,40,f +15676,3005,72,26,f +15676,3005,14,56,f +15676,3005,15,38,f +15676,3005,73,52,f +15676,3005,1,77,f +15676,3005,5,19,f +15676,3005,25,47,f +15676,30367b,15,2,f +15676,3040b,4,8,f +15676,3044b,4,4,f +15676,3176,1,1,f +15676,3176,0,1,f +15676,3660,1,1,f +15676,3710,4,2,f +15676,3839b,0,1,f +15676,3867,47,2,f +15676,3937,15,1,f +15676,3938,15,1,f +15676,3957a,0,1,f +15676,3960,0,2,f +15676,4032a,0,1,f +15676,4070,1,1,f +15676,42022,0,2,f +15676,4286,4,2,f +15676,4286,0,2,f +15676,47905,0,2,f +15676,49668,15,8,f +15676,6141,0,3,f +15676,6141,4,1,t +15676,6141,42,2,f +15676,6141,4,2,f +15676,6141,0,1,t +15676,6141,80,1,t +15676,6141,80,2,f +15676,6141,42,1,t +15678,3004,4,2,f +15678,3004,2,2,f +15678,3004pt1,14,1,f +15678,3022,4,1,f +15678,3039,15,1,f +15678,30488c01,15,1,f +15678,30492,2,1,f +15678,3069b,2,1,f +15678,3832,2,1,f +15678,4033,15,1,f +15678,72824p01,15,1,f +15679,12602,14,2,f +15679,13358,0,2,f +15679,13535,0,1,f +15679,16686,70,2,f +15679,16856,72,1,f +15679,17478,4,1,f +15679,21028,1,1,f +15679,21029,0,1,f +15679,21046,15,1,f +15679,25140,4,1,f +15679,3011,14,2,f +15679,31465,14,2,f +15679,3437,72,4,f +15679,4066,212,4,f +15679,40666,484,1,f +15679,40666,71,4,f +15679,6474,71,8,f +15679,6490,1,1,f +15679,75115pr0023,1,1,f +15679,76371,322,4,f +15679,98233,15,2,f +15680,2431,4,1,f +15680,2431,0,1,f +15680,2431,15,2,f +15680,2436,15,1,f +15680,3004,15,2,f +15680,3020,4,1,f +15680,3020,0,1,f +15680,3020,15,4,f +15680,3021,15,2,f +15680,3021,0,2,f +15680,3022,15,1,f +15680,3023,15,3,f +15680,3024,4,2,f +15680,3024,15,2,f +15680,3031,4,2,f +15680,3069b,15,2,f +15680,3070b,14,2,f +15680,3622,15,2,f +15680,3710,15,4,f +15680,3710,0,1,f +15680,3710,4,2,f +15680,3788,15,2,f +15680,3795,15,1,f +15680,3832,15,1,f +15680,4070,15,4,f +15680,45677,15,1,f +15680,4600,0,2,f +15680,50944pr0001,0,4,f +15680,50951,0,4,f +15680,54200,15,6,f +15680,54200,182,2,f +15680,88930,0,2,f +15681,10830pat0001,0,1,f +15681,2412b,72,2,f +15681,2412b,71,3,f +15681,2420,73,2,f +15681,2421,0,1,f +15681,2431,71,2,f +15681,2432,72,1,f +15681,2436,71,2,f +15681,2540,0,2,f +15681,2654,4,2,f +15681,2654,47,1,f +15681,2921,71,2,f +15681,3001,4,3,f +15681,3004,378,2,f +15681,3004,71,2,f +15681,3005,71,2,f +15681,3007,14,1,f +15681,3009,72,4,f +15681,3009,4,4,f +15681,30192,72,1,f +15681,3020,378,1,f +15681,3020,71,6,f +15681,3022,71,2,f +15681,3022,72,3,f +15681,3023,73,3,f +15681,30236,71,1,f +15681,3031,73,1,f +15681,3036,0,1,f +15681,30367b,72,2,f +15681,3038,71,4,f +15681,30414,71,2,f +15681,3068b,71,1,f +15681,3069b,73,3,f +15681,3070b,73,1,f +15681,3070b,73,1,t +15681,32028,323,2,f +15681,32123b,71,1,t +15681,32123b,71,1,f +15681,3678b,323,1,f +15681,3678bpr0013a,323,1,f +15681,3678bpr0023a,71,1,f +15681,3684,71,1,f +15681,3710,73,1,f +15681,3795,4,1,f +15681,3832,1,1,f +15681,3942c,14,2,f +15681,4150,15,1,f +15681,44676,72,2,f +15681,4488,71,1,f +15681,4589,36,4,f +15681,4599b,0,1,f +15681,4623,0,2,f +15681,4624,71,4,f +15681,4624,71,1,t +15681,4740,42,2,f +15681,47457,323,2,f +15681,48729b,0,1,t +15681,48729b,0,1,f +15681,50303,0,2,f +15681,50951,0,4,f +15681,51739,71,1,f +15681,52501,72,2,f +15681,54200,72,4,f +15681,54200,72,1,t +15681,59230,0,1,f +15681,59230,0,1,t +15681,59895,0,4,f +15681,6019,72,1,f +15681,61184,71,3,f +15681,6141,36,4,f +15681,6141,36,1,t +15681,6141,47,1,t +15681,6141,47,4,f +15681,6157,0,4,f +15681,6636,71,2,f +15681,85940,0,2,f +15681,87079,71,1,f +15681,87079,4,1,f +15681,87087,71,4,f +15681,87616,72,2,f +15681,93590,378,2,f +15681,93590,73,1,f +15681,93591pr0009,73,1,f +15681,93595pr0001,0,4,f +15681,93595pr0001,0,1,t +15681,93597pr0002,73,1,f +15682,2540,0,3,f +15682,3020,0,1,f +15682,3023,42,3,f +15682,3062b,0,6,f +15682,6019,0,3,f +15683,2420,14,4,f +15683,2436,14,1,f +15683,2444,0,6,f +15683,2444,14,2,f +15683,2452,14,2,f +15683,2717,1,1,f +15683,2730,14,2,f +15683,2730,0,2,f +15683,2744,14,2,f +15683,2780,0,1,t +15683,2780,0,48,f +15683,2793c01,14,3,f +15683,2797c02,14,1,f +15683,2819,7,1,f +15683,2825,14,4,f +15683,2825,0,4,f +15683,2825,7,7,f +15683,2850a,7,6,f +15683,2851,8,6,f +15683,2852,7,6,f +15683,2853,7,8,f +15683,2854,8,2,f +15683,2905,14,2,f +15683,2905,7,1,f +15683,2995,0,4,f +15683,2996,14,4,f +15683,3004,7,1,f +15683,3005,14,2,f +15683,3021,14,10,f +15683,3021,0,2,f +15683,3022,7,4,f +15683,3022,0,1,f +15683,3023,0,4,f +15683,3023,14,10,f +15683,3023,7,9,f +15683,3069b,7,2,f +15683,3069b,14,2,f +15683,32000,0,4,f +15683,32000,14,2,f +15683,32000,7,10,f +15683,32001,7,1,f +15683,32001,14,3,f +15683,32002,8,8,f +15683,32002,8,1,t +15683,32009,14,4,f +15683,32013,0,2,f +15683,32013,14,2,f +15683,32015,0,2,f +15683,32017,14,3,f +15683,32017,7,2,f +15683,32030,0,1,f +15683,32034,7,3,f +15683,32039,0,2,f +15683,32054,0,2,f +15683,32062,0,9,f +15683,32123b,7,46,f +15683,32123b,7,1,t +15683,3245b,7,2,f +15683,3623,14,6,f +15683,3647,7,1,t +15683,3647,7,4,f +15683,3649,7,1,f +15683,3650c,7,2,f +15683,3665,14,4,f +15683,3666,7,1,f +15683,3666,14,1,f +15683,3666,0,1,f +15683,3673,7,1,f +15683,3700,14,8,f +15683,3700,0,2,f +15683,3701,7,3,f +15683,3702,0,2,f +15683,3702,14,4,f +15683,3703,14,4,f +15683,3703,0,2,f +15683,3705,0,11,f +15683,3706,0,15,f +15683,3707,0,12,f +15683,3709,7,1,f +15683,3709,14,2,f +15683,3709,0,4,f +15683,3710,7,1,f +15683,3710,14,7,f +15683,3713,7,12,f +15683,3713,7,1,t +15683,3737,0,3,f +15683,3747b,14,2,f +15683,3749,7,12,f +15683,3794a,7,2,f +15683,3894,0,4,f +15683,3894,14,2,f +15683,3895,0,2,f +15683,3935,14,1,f +15683,3936,14,1,f +15683,3941,46,1,f +15683,4019,7,5,f +15683,4032a,14,1,f +15683,4081b,14,2,f +15683,4150,14,1,f +15683,4263,0,2,f +15683,4274,7,2,f +15683,4274,7,1,t +15683,4519,0,13,f +15683,4697b,7,3,f +15683,4859,14,4,f +15683,5102,1,1,f +15683,5102,0,1,f +15683,6091,14,2,f +15683,6141,14,12,f +15683,6141,7,1,t +15683,6141,14,1,t +15683,6141,7,2,f +15683,6180,14,1,f +15683,6536,14,2,f +15683,6536,7,16,f +15683,6536,0,12,f +15683,6538b,7,3,f +15683,6553,7,2,f +15683,6558,0,17,f +15683,6573,8,2,f +15683,6583,14,2,f +15683,6587,8,2,f +15683,6589,7,7,f +15683,6632,0,10,f +15683,6632,14,6,f +15683,6632,7,9,f +15683,6636,0,1,f +15683,6641,7,2,f +15683,75215,7,2,f +15683,75535,0,4,f +15683,75535,14,2,f +15683,75974,1,1,f +15683,75c05,8,2,f +15683,9244,7,1,f +15684,15496pr0003,4,1,f +15684,16709pat01,321,1,f +15684,16802pr0002,14,1,f +15684,88646,0,1,f +15684,973pr2984c01,321,1,f +15684,99464,27,1,f +15686,3001,1,4,f +15686,3460,4,2,f +15686,3482,7,4,f +15686,3483,0,4,f +15686,3623,4,4,f +15686,3647,7,6,f +15686,3648a,7,3,f +15686,3649,7,2,f +15686,3650a,7,2,f +15686,3651,7,8,f +15686,3652,7,1,f +15686,3666,4,2,f +15686,3673,7,20,f +15686,3679,7,8,f +15686,3680,1,8,f +15686,3700,1,12,f +15686,3701,1,12,f +15686,3702,1,2,f +15686,3702,4,1,f +15686,3703,1,4,f +15686,3705,0,4,f +15686,3706,0,4,f +15686,3707,0,2,f +15686,3708,0,2,f +15686,3709,4,4,f +15686,3710,4,4,f +15686,3713,7,20,f +15686,3736,7,1,f +15686,3737,0,2,f +15686,3738,4,2,f +15686,3743,7,4,f +15686,3795,4,4,f +15686,3894,1,2,f +15686,3895,1,2,f +15686,3937,1,4,f +15686,3938,1,4,f +15686,3956,1,1,f +15686,4143,7,2,f +15686,4185,7,2,f +15686,4204,2,1,f +15686,56823c75,0,1,f +15686,73090a,4,1,f +15686,9244,7,1,f +15686,case1030c01,9999,1,f +15686,rb00169,0,5,f +15687,2447,36,1,f +15687,2447,36,1,t +15687,2555,72,2,f +15687,2780,0,2,f +15687,2780,0,1,t +15687,298c02,1,1,f +15687,298c02,1,1,t +15687,3010,15,1,f +15687,3031,0,1,f +15687,3069b,15,1,f +15687,3069b,36,1,f +15687,3069b,33,1,f +15687,32000,15,2,f +15687,3626bpr0563,14,1,f +15687,3666,0,2,f +15687,3710,0,1,f +15687,3747b,72,1,f +15687,3795,0,1,f +15687,3838,0,1,f +15687,3937,71,1,f +15687,3956,0,1,f +15687,3959,15,2,f +15687,4085c,71,2,f +15687,41767,15,1,f +15687,41768,15,1,f +15687,4274,71,1,t +15687,4274,71,2,f +15687,43337,15,2,f +15687,4360,0,1,f +15687,43713,15,1,f +15687,44661,15,1,f +15687,4589,34,2,f +15687,4589,36,1,f +15687,48183,0,1,f +15687,4854,15,1,f +15687,48933,15,1,f +15687,54200,36,1,f +15687,54200,33,1,t +15687,54200,36,1,t +15687,54200,33,1,f +15687,54383,15,1,f +15687,54384,15,1,f +15687,58176,36,1,f +15687,58176,33,1,f +15687,5981stk01,9999,1,t +15687,61184,71,2,f +15687,6134,0,1,f +15687,6141,34,1,t +15687,6141,34,2,f +15687,6233,0,1,f +15687,64393,15,1,f +15687,64681,15,1,f +15687,6541,71,2,f +15687,6558,1,2,f +15687,85940,0,2,f +15687,85948pr0001,27,1,f +15687,87781,72,1,f +15687,89762,33,1,f +15687,970c00pr0127,72,1,f +15687,970c00pr0131,0,1,f +15687,973pr1490c01,72,1,f +15687,973pr1574c01,0,1,f +15688,10201,0,1,f +15688,10201,15,1,f +15688,10247,0,2,f +15688,10907,0,1,f +15688,10907,320,1,f +15688,10908pr0006,320,1,f +15688,10908pr0012,0,1,f +15688,10928,72,2,f +15688,11153,272,4,f +15688,11211,71,2,f +15688,11214,72,2,f +15688,11215,71,1,f +15688,11399,72,2,f +15688,11458,72,1,f +15688,11476,71,1,f +15688,11477,272,2,f +15688,13547,0,2,f +15688,14210,0,1,f +15688,14395,0,2,f +15688,14417,72,2,f +15688,15068,72,1,f +15688,15068,0,3,f +15688,15068,272,4,f +15688,15100,0,2,f +15688,15207,14,2,f +15688,15210,72,3,f +15688,15391,0,1,f +15688,15392,72,3,f +15688,15403,0,14,f +15688,15535,72,2,f +15688,15573,4,2,f +15688,15706,0,2,f +15688,15712,72,2,f +15688,15712,0,1,f +15688,18654,72,1,f +15688,18677,71,2,f +15688,18986,47,1,f +15688,22889,0,1,f +15688,2412b,71,4,f +15688,2412b,36,3,f +15688,2412b,14,3,f +15688,2415,71,1,f +15688,2420,0,2,f +15688,2420,14,4,f +15688,2420,70,2,f +15688,2420,71,2,f +15688,24299,72,4,f +15688,24307,72,4,f +15688,2431,72,4,f +15688,2431,4,1,f +15688,2431,70,3,f +15688,2431,14,1,f +15688,2432,71,6,f +15688,2432,15,1,f +15688,2441,0,1,f +15688,2449,0,2,f +15688,2450,72,2,f +15688,24593pr0001,71,1,f +15688,2462,72,2,f +15688,2486,72,6,f +15688,2508,0,1,f +15688,2540,71,1,f +15688,25508,320,1,f +15688,2569,71,1,f +15688,2654,46,3,f +15688,2654,19,1,f +15688,2780,0,12,f +15688,2825,71,3,f +15688,30000,15,1,f +15688,3001,72,2,f +15688,3001,0,1,f +15688,30028,0,4,f +15688,3003,71,1,f +15688,3004,19,3,f +15688,3004,15,5,f +15688,3004,272,2,f +15688,3004,0,2,f +15688,3005,14,4,f +15688,3005,0,4,f +15688,3005,71,2,f +15688,3005,15,2,f +15688,3005,72,4,f +15688,3005,25,2,f +15688,3010,15,6,f +15688,3010,272,2,f +15688,3020,71,7,f +15688,3020,72,3,f +15688,3020,272,2,f +15688,3020,0,6,f +15688,3021,0,2,f +15688,3021,71,3,f +15688,3021,72,4,f +15688,3022,320,2,f +15688,3022,15,3,f +15688,3022,0,5,f +15688,3023,46,13,f +15688,3023,0,4,f +15688,3023,15,3,f +15688,3023,14,4,f +15688,3023,4,1,f +15688,3023,25,3,f +15688,3023,72,8,f +15688,3023,71,4,f +15688,30237b,15,3,f +15688,3024,71,5,f +15688,3024,182,3,f +15688,30261,15,1,f +15688,3028,72,1,f +15688,3031,72,1,f +15688,3032,72,1,f +15688,3032,272,1,f +15688,30350b,72,6,f +15688,3036,71,1,f +15688,30374,0,2,f +15688,30374,41,1,f +15688,30377,72,3,f +15688,3038,15,2,f +15688,3039,0,2,f +15688,3040b,0,2,f +15688,30503,0,2,f +15688,30504,0,2,f +15688,30602,272,1,f +15688,3062b,41,3,f +15688,3062b,4,1,f +15688,3062b,36,3,f +15688,3068b,19,3,f +15688,3068b,0,3,f +15688,3068b,72,1,f +15688,3069b,272,2,f +15688,3069b,71,2,f +15688,3069b,15,5,f +15688,3069b,0,2,f +15688,3069bpr0030,72,1,f +15688,3069bpr0101,71,1,f +15688,3070b,47,2,f +15688,3070b,4,1,f +15688,3176,71,1,f +15688,32000,72,1,f +15688,32000,15,1,f +15688,32001,71,1,f +15688,32018,0,2,f +15688,32028,0,2,f +15688,32054,71,1,f +15688,32062,4,1,f +15688,32064a,72,2,f +15688,32123b,14,2,f +15688,32140,0,1,f +15688,32270,0,2,f +15688,32316,0,1,f +15688,32324,71,2,f +15688,3245b,71,1,f +15688,3245b,15,1,f +15688,32531,71,1,f +15688,3298,272,2,f +15688,3460,0,2,f +15688,3464,72,1,f +15688,3622,14,2,f +15688,3622,0,2,f +15688,3622,15,1,f +15688,3623,0,4,f +15688,3623,272,10,f +15688,3623,15,3,f +15688,3626cpr0961,78,1,f +15688,3626cpr1467,78,1,f +15688,3626cpr1627,78,1,f +15688,3626cpr1634,70,1,f +15688,3626cpr1651,272,1,f +15688,3626cpr1661,78,1,f +15688,3665,72,2,f +15688,3666,15,1,f +15688,3666,0,1,f +15688,3666,272,2,f +15688,3666,72,2,f +15688,3673,71,1,f +15688,3679,71,2,f +15688,3680,4,1,f +15688,3680,15,1,f +15688,3700,19,3,f +15688,3700,0,4,f +15688,3701,71,2,f +15688,3702,71,1,f +15688,3705,0,1,f +15688,3709,71,1,f +15688,3710,14,1,f +15688,3710,71,4,f +15688,3710,72,5,f +15688,3713,4,1,f +15688,3747b,15,2,f +15688,3795,0,1,f +15688,3795,71,2,f +15688,3821,14,1,f +15688,3822,14,1,f +15688,3823,47,1,f +15688,3829c01,71,1,f +15688,3894,72,1,f +15688,3894,0,2,f +15688,3895,72,2,f +15688,3899,47,1,f +15688,3937,0,2,f +15688,3937,4,1,f +15688,3938,71,1,f +15688,3941,0,1,f +15688,3957a,71,1,f +15688,4006,0,1,f +15688,4032a,72,1,f +15688,4032a,4,1,f +15688,4079,15,1,f +15688,4081b,0,1,f +15688,4081b,4,2,f +15688,41539,72,1,f +15688,41749,272,1,f +15688,41750,272,1,f +15688,41769,0,2,f +15688,41770,0,2,f +15688,42003,4,1,f +15688,42023,72,2,f +15688,4274,1,9,f +15688,4286,72,2,f +15688,43093,1,3,f +15688,43722,71,1,f +15688,43722,272,3,f +15688,43723,71,1,f +15688,43723,272,3,f +15688,4449,0,1,f +15688,4449,70,1,f +15688,4449,2,1,f +15688,44661,72,2,f +15688,44728,72,2,f +15688,4477,72,2,f +15688,4488,0,2,f +15688,4490,15,1,f +15688,4519,71,1,f +15688,4533,15,2,f +15688,45705,33,1,f +15688,4590,72,1,f +15688,4599b,4,1,f +15688,4624,71,6,f +15688,4740,41,1,f +15688,4740,45,2,f +15688,4740,71,1,f +15688,47406,0,1,f +15688,47407,0,1,f +15688,47456,272,1,f +15688,47456,0,2,f +15688,47457,72,2,f +15688,47457,71,1,f +15688,47753,272,2,f +15688,47759,72,1,f +15688,48336,0,6,f +15688,4865a,15,1,f +15688,48729b,72,1,f +15688,50304,272,1,f +15688,50305,272,1,f +15688,50950,272,6,f +15688,51739,0,1,f +15688,51739,272,5,f +15688,51739,72,2,f +15688,52107,0,4,f +15688,54200,36,6,f +15688,54200,15,1,f +15688,54383,0,1,f +15688,54384,0,1,f +15688,59349,15,4,f +15688,59426,72,1,f +15688,59443,71,2,f +15688,59895,0,7,f +15688,60212,14,3,f +15688,60478,72,2,f +15688,60479,72,1,f +15688,60596,15,1,f +15688,60616a,40,1,f +15688,60897,71,2,f +15688,6091,71,2,f +15688,6091,0,2,f +15688,6134,71,2,f +15688,61409,72,6,f +15688,61409,0,4,f +15688,6141,45,2,f +15688,6141,71,2,f +15688,6141,27,4,f +15688,6141,41,3,f +15688,6141,46,12,f +15688,6141,36,5,f +15688,6157,0,2,f +15688,6179,0,1,f +15688,62885,0,1,f +15688,63082,71,1,f +15688,63864,0,6,f +15688,63864,71,2,f +15688,63868,72,2,f +15688,64567,71,2,f +15688,6541,72,3,f +15688,6558,1,2,f +15688,6587,28,2,f +15688,6589,19,1,f +15688,6636,71,4,f +15688,72475,40,3,f +15688,73983,71,2,f +15688,74967,71,4,f +15688,75902pr0004,4,1,f +15688,85984,72,6,f +15688,85984,14,2,f +15688,85984,0,6,f +15688,85984,71,2,f +15688,85984,15,4,f +15688,87079,70,2,f +15688,87079,72,2,f +15688,87079,0,1,f +15688,87083,72,1,f +15688,87087,71,2,f +15688,87994,0,1,f +15688,88283,308,1,f +15688,88930,0,2,f +15688,90258,72,1,f +15688,90396,84,1,f +15688,90398pr0011,0,1,f +15688,92099,72,1,f +15688,92280,0,2,f +15688,92410,71,2,f +15688,92593,72,3,f +15688,92593,0,5,f +15688,92907,71,2,f +15688,92946,72,6,f +15688,92950,71,2,f +15688,93273,72,3,f +15688,93273,272,2,f +15688,93274,72,1,f +15688,93274,71,1,f +15688,93274,0,4,f +15688,93606,272,4,f +15688,95199,72,1,f +15688,95225,70,1,f +15688,96874,25,1,t +15688,970c00,0,2,f +15688,970c00,272,1,f +15688,970c00,379,2,f +15688,970c00pr0843,320,1,f +15688,970c00pr1046,0,1,f +15688,973pr2985c01,272,1,f +15688,973pr3351c01,0,1,f +15688,973pr3357c01,320,1,f +15688,973pr3359c01,0,1,f +15688,98138,36,4,f +15688,98138,47,6,f +15688,98138,71,4,f +15688,98283,72,11,f +15688,98286,71,1,f +15688,99206,0,2,f +15688,99780,72,6,f +15688,99780,0,2,f +15688,99781,71,2,f +15689,11055,14,1,f +15689,14413,15,2,f +15689,14716,4,4,f +15689,15254,71,2,f +15689,15254,15,1,f +15689,15332,297,1,f +15689,20309,19,1,f +15689,2419,1,2,f +15689,2431,70,4,f +15689,2431,15,4,f +15689,2432,72,2,f +15689,2453b,29,2,f +15689,2454a,71,4,f +15689,2454b,30,2,f +15689,2462,71,4,f +15689,26597,71,2,f +15689,28327,15,2,f +15689,2877,15,4,f +15689,3001,15,4,f +15689,3001,29,2,f +15689,3001,1,3,f +15689,3001,2,2,f +15689,3001,4,4,f +15689,3001,85,4,f +15689,3002,27,2,f +15689,3002,70,2,f +15689,3003,25,4,f +15689,3003,70,4,f +15689,3004,14,19,f +15689,3004,272,4,f +15689,3004,158,4,f +15689,3004,84,4,f +15689,3004,25,2,f +15689,3004,321,4,f +15689,3004,29,3,f +15689,30044,288,2,f +15689,30046,0,2,f +15689,3005,14,9,f +15689,3005,272,4,f +15689,3005,29,6,f +15689,3005,378,2,f +15689,3005,27,10,f +15689,3008,14,5,f +15689,3010,29,10,f +15689,3010,288,4,f +15689,3010,30,10,f +15689,3010,26,4,f +15689,3010,226,4,f +15689,30136,31,4,f +15689,30165,272,2,f +15689,3020,15,3,f +15689,3020,19,2,f +15689,3020,212,2,f +15689,3022,15,2,f +15689,3023,15,4,f +15689,30236,15,3,f +15689,3027,27,1,f +15689,3028,70,1,f +15689,3029,322,1,f +15689,3029,2,2,f +15689,3029,15,1,f +15689,3029,72,1,f +15689,3029,0,1,f +15689,3037,4,17,f +15689,3039,41,2,f +15689,3039,0,6,f +15689,3039,4,4,f +15689,3040b,4,2,f +15689,3045,0,2,f +15689,30505,0,4,f +15689,3062b,4,4,f +15689,3062b,70,4,f +15689,3062b,27,2,f +15689,3065,34,4,f +15689,3065,41,2,f +15689,3065,45,4,f +15689,3069b,191,4,f +15689,3069b,15,2,f +15689,3245b,15,4,f +15689,3245c,1,6,f +15689,3245c,10,4,f +15689,33243,27,2,f +15689,33243,484,4,f +15689,33243,191,4,f +15689,33291,212,3,f +15689,33291,10,3,f +15689,33291,26,3,f +15689,33303,15,1,f +15689,3622,14,20,f +15689,3622,5,4,f +15689,3659,5,2,f +15689,3660,71,2,f +15689,3665,71,2,f +15689,3675,378,4,f +15689,3678b,1,4,f +15689,3710,15,2,f +15689,3710,321,3,f +15689,3795,70,2,f +15689,3957a,15,1,f +15689,3958,19,1,f +15689,41539,2,1,f +15689,46212,41,4,f +15689,4865b,27,2,f +15689,59900,41,4,f +15689,59900,14,2,f +15689,59900,25,2,f +15689,60476,15,2,f +15689,60479,0,1,f +15689,60583b,71,2,f +15689,60592,272,3,f +15689,60592,322,6,f +15689,60592,2,2,f +15689,60592,4,3,f +15689,60592,15,6,f +15689,60593,15,4,f +15689,60594,15,2,f +15689,60596,14,1,f +15689,60596,29,1,f +15689,60596,72,1,f +15689,60598,15,2,f +15689,60601,47,6,f +15689,60601,41,6,f +15689,60601,46,2,f +15689,60601,15,3,f +15689,60602,47,4,f +15689,60603,41,2,f +15689,60608,14,4,f +15689,60616a,41,2,f +15689,60616a,47,1,f +15689,60623,73,1,f +15689,6141,297,8,f +15689,6141,4,2,f +15689,6141,1,2,f +15689,6182,71,2,f +15689,6231,4,4,f +15689,64799,15,2,f +15689,87580,2,2,f +15689,87620,1,4,f +15689,87620,71,16,f +15689,92589,148,1,f +15689,92950,19,4,f +15689,96874,25,1,f +15689,98283,378,8,f +15690,tplan02,89,1,f +15691,3022,2,7,f +15691,3024,2,2,f +15691,30367b,14,2,f +15691,3039,2,7,f +15691,4032a,14,4,f +15691,43898,14,2,f +15691,48336,2,7,f +15691,48336,14,2,f +15691,48729b,0,1,t +15691,48729b,0,2,f +15691,60470a,2,7,f +15691,60470a,14,2,f +15691,6141,4,6,f +15691,6141,4,1,t +15692,32039,0,2,f +15692,32062,4,2,f +15692,32373,179,2,f +15692,4274,71,1,t +15692,4274,71,1,f +15692,43093,1,2,f +15692,48989,71,1,f +15692,53562pat0006,0,2,f +15692,53585,0,2,f +15692,60902,0,2,f +15692,64276,0,1,f +15692,90605,4,1,f +15692,90607,0,2,f +15692,90609,72,4,f +15692,90617,0,6,f +15692,90626,0,1,f +15692,90639,57,1,f +15692,90639pr0022,57,1,f +15692,90640,0,2,f +15692,90640pr0021,57,3,f +15692,90641,179,3,f +15692,90652,179,2,f +15692,92218,179,1,f +15692,92231,148,1,f +15692,92234,0,2,f +15692,92235pat0002,0,3,f +15692,93571,0,3,f +15695,13965,70,1,f +15695,15395,15,1,f +15695,15672,70,1,f +15695,22667,26,1,f +15695,2423,2,1,f +15695,30089,0,1,f +15695,3023,70,1,f +15695,3031,2,1,f +15695,3062b,2,1,f +15695,33291,191,2,f +15695,4032a,19,1,f +15695,6126b,41,1,f +15695,6141,15,1,f +15695,6141,47,1,f +15695,98388pr0004,27,1,f +15696,4697b,7,25,f +15697,32203,2,3,f +15697,32242,2,2,f +15697,32242,0,4,f +15697,32246,0,1,f +15697,32246,2,2,f +15697,zbb013,22,6,f +15697,zbb014,7,2,f +15697,zbb015,0,2,f +15697,zbb018,14,1,f +15698,14pb04,15,1,f +15698,2343,7,2,f +15698,2412b,4,4,f +15698,2421,0,1,f +15698,2431,0,1,f +15698,2432,7,2,f +15698,2435,2,2,f +15698,2437,41,1,f +15698,2446px2,15,1,f +15698,2447,0,1,f +15698,2460,7,1,f +15698,2479,0,1,f +15698,2484c01,4,2,f +15698,2513p02,15,1,f +15698,2540,8,3,f +15698,2620,41,1,f +15698,298c02,15,3,f +15698,3001,15,2,f +15698,3003,0,2,f +15698,3003,2,2,f +15698,3003,15,1,f +15698,3003,7,3,f +15698,3004,15,1,f +15698,3004,4,1,f +15698,3004pb008,0,2,f +15698,3005,0,4,f +15698,3006,15,1,f +15698,3008pb002,0,2,f +15698,3009p17,15,4,f +15698,3010,15,2,f +15698,3010pb003,15,1,f +15698,3010pb003,0,1,f +15698,3010pb003,4,1,f +15698,3010pb020,4,2,f +15698,3010px1,0,1,f +15698,3020,15,1,f +15698,3022,4,2,f +15698,3022,0,2,f +15698,3024,33,2,f +15698,3031,0,1,f +15698,3039p12,0,1,f +15698,3039pb020,0,1,f +15698,3040b,33,2,f +15698,3040b,15,1,f +15698,3062b,33,2,f +15698,3068b,4,1,f +15698,3068bp70,15,1,f +15698,3068bpx25,4,1,f +15698,3298,0,1,f +15698,3460,0,4,f +15698,3471,2,2,f +15698,3626bp04,14,3,f +15698,3626bp05,14,1,f +15698,3660,15,3,f +15698,3710,15,1,f +15698,3710,4,2,f +15698,3741,2,4,f +15698,3742,4,3,t +15698,3823,41,2,f +15698,3829c01,7,1,f +15698,3829c01,15,1,f +15698,3829c01,1,1,f +15698,3900p01,15,1,f +15698,3962b,0,1,f +15698,4070,4,2,f +15698,4079,7,3,f +15698,4083,15,1,f +15698,4212b,15,1,f +15698,4212b,4,1,f +15698,4212b,0,1,f +15698,4213,4,1,f +15698,4214,4,1,f +15698,4315,15,1,f +15698,4349,0,1,f +15698,4485,1,1,f +15698,4485,4,1,f +15698,4485pb01,0,1,f +15698,4488,4,1,f +15698,4589,7,1,f +15698,4594,41,1,f +15698,4871,15,1,f +15698,6014a,15,12,f +15698,6015,0,12,f +15698,6064,2,1,f +15698,6079,14,4,f +15698,610p01,2,1,f +15698,612p01,2,1,f +15698,6140,7,2,f +15698,6141,36,1,f +15698,6157,0,2,f +15698,6157,7,2,f +15698,649pb03,15,1,f +15698,6564,4,1,f +15698,6565,4,1,f +15698,71137,383,2,f +15698,739p01,15,1,f +15698,80039,15,1,f +15698,80045,15,1,f +15698,970c00,0,2,f +15698,970c00,7,1,f +15698,970c00,1,1,f +15698,973p28c01,0,1,f +15698,973p73c01,2,1,f +15698,973px67c01,0,1,f +15698,973px9c01,0,1,f +15702,b11idea2,9999,1,f +15703,298c02,0,2,f +15703,3004,7,2,f +15703,3010,7,2,f +15703,3020,1,3,f +15703,3021,1,1,f +15703,3023,7,3,f +15703,3023,1,1,f +15703,3024,7,2,f +15703,3068b,7,1,f +15703,3069bp06,1,2,f +15703,3069bp25,1,1,f +15703,3188,1,1,f +15703,3189,1,1,f +15703,3626apr0001,14,1,f +15703,3666,1,2,f +15703,3747a,7,3,f +15703,3794a,0,1,f +15703,3795,7,1,f +15703,3838,14,1,f +15703,3842b,14,1,f +15703,3933a,1,1,f +15703,3934a,1,1,f +15703,3937,7,1,f +15703,3938,0,1,f +15703,3957a,36,2,f +15703,3957a,46,2,f +15703,3963,7,2,f +15703,4070,7,2,f +15703,4081a,1,4,f +15703,4085b,7,2,f +15703,4275a,1,2,f +15703,4276a,1,2,f +15703,4315,7,1,f +15703,4474,46,1,f +15703,4475,1,1,f +15703,4589,46,4,f +15703,4590,7,1,f +15703,4591,0,1,f +15703,4732,7,1,f +15703,4733,7,1,f +15703,4735,0,4,f +15703,4740,36,2,f +15703,4746,7,1,f +15703,73590c01a,0,2,f +15703,970c00,14,1,f +15703,973p90c04,14,1,f +15704,3034,7,2,f +15704,3228b,7,2,f +15704,3242e,7,1,f +15704,3245bp02,0,1,f +15704,4168,7,1,f +15704,4169,7,1,f +15704,4707c02,7,1,f +15704,70026,7,1,f +15704,767,8,2,f +15704,bb81c01,7,2,f +15704,decbase,8,1,f +15704,x466,7,1,f +15705,700ed,2,1,f +15705,700ed,14,1,f +15708,200,0,1,f +15708,202,0,1,f +15708,2357,0,2,f +15708,2401,1,2,f +15708,2409,57,2,f +15708,2412b,1,2,f +15708,2412b,15,5,f +15708,2412b,0,3,f +15708,2419,0,2,f +15708,2419,1,2,f +15708,2420,0,2,f +15708,2428,0,1,f +15708,2431,0,2,f +15708,2432,0,2,f +15708,2433,0,2,f +15708,2440p67,1,1,f +15708,2444,1,1,f +15708,2445,1,1,f +15708,2446,15,3,f +15708,2452,0,1,f +15708,2453a,0,2,f +15708,2454a,0,2,f +15708,2460,0,1,f +15708,2465,1,2,f +15708,2466,57,1,f +15708,2516,0,2,f +15708,2540,0,1,f +15708,2552p01,15,1,f +15708,2555,0,4,f +15708,2569,57,1,f +15708,2582,57,4,f +15708,2607,1,1,f +15708,2609,15,2,f +15708,2653,0,2,f +15708,2654,1,2,f +15708,2680,0,1,f +15708,2713,15,2,f +15708,2817,0,5,f +15708,2852,7,2,f +15708,2880,0,2,f +15708,298c02,15,9,f +15708,3003,1,2,f +15708,3003,15,2,f +15708,3004,1,2,f +15708,3004,0,1,f +15708,3009,1,1,f +15708,3010,1,2,f +15708,3020,0,2,f +15708,3022,1,3,f +15708,3022,0,3,f +15708,3023,0,10,f +15708,3023,1,4,f +15708,3023,15,2,f +15708,3030,1,1,f +15708,3031,0,2,f +15708,3032,0,1,f +15708,3034,1,1,f +15708,3034,0,1,f +15708,3039pc8,15,2,f +15708,3040b,1,2,f +15708,3062b,15,2,f +15708,3068bp61,1,2,f +15708,3069b,1,3,f +15708,3069bp06,15,2,f +15708,3069bp13,15,4,f +15708,3069bp61,15,3,f +15708,3149c01,1,3,f +15708,3184,0,2,f +15708,32005a,0,2,f +15708,3298p61,1,2,f +15708,3315,0,2,f +15708,3403c01,0,1,f +15708,3460,0,1,f +15708,3597,0,2,f +15708,3623,1,1,f +15708,3626bp61,14,1,f +15708,3626bp62,14,1,f +15708,3626bp65,14,1,f +15708,3665,1,2,f +15708,3666,0,2,f +15708,3673,7,11,f +15708,3679,7,2,f +15708,3680,0,2,f +15708,3700,15,4,f +15708,3708,0,2,f +15708,3710,0,7,f +15708,3710,1,2,f +15708,3730,1,1,f +15708,3731,1,1,f +15708,3747b,1,2,f +15708,3794a,15,1,f +15708,3794a,1,4,f +15708,3795,0,1,f +15708,3795,1,1,f +15708,3832,1,4,f +15708,3832,0,1,f +15708,3838,15,3,f +15708,3839b,0,1,f +15708,3857,15,1,f +15708,3938,15,1,f +15708,3940b,0,1,f +15708,3940b,15,1,f +15708,3941,1,3,f +15708,3941,15,4,f +15708,3941,57,6,f +15708,3942b,0,2,f +15708,3943b,0,2,f +15708,3957a,57,5,f +15708,3957a,0,2,f +15708,4081b,0,2,f +15708,4085c,0,1,f +15708,4085c,1,4,f +15708,4229,0,1,f +15708,4275b,0,1,f +15708,4276b,0,1,f +15708,4276b,15,2,f +15708,4285a,0,1,f +15708,4286,1,1,f +15708,4315,1,4,f +15708,4476b,0,2,f +15708,4477,0,1,f +15708,4510,0,4,f +15708,4531,15,1,f +15708,4589,57,3,f +15708,4590,0,1,f +15708,4590,1,1,f +15708,4591,0,2,f +15708,4595,0,1,f +15708,4596,0,2,f +15708,4598,15,1,f +15708,4623,15,2,f +15708,4623,1,2,f +15708,4733,0,2,f +15708,4740,57,2,f +15708,4740,15,2,f +15708,4864a,15,1,f +15708,4865a,1,1,f +15708,4871,0,4,f +15708,6111,0,1,f +15708,6112,1,1,f +15708,6117,57,3,f +15708,6118,15,10,f +15708,6119,57,3,f +15708,6120,57,6,f +15708,6141,57,3,f +15708,6141,15,8,f +15708,73092,0,3,f +15708,970x023,0,3,f +15708,973p61c01,0,1,f +15708,973p62c01,0,2,f +15711,14210,15,1,f +15711,2357,71,2,f +15711,2412b,14,10,f +15711,2412b,70,8,f +15711,2412b,71,3,f +15711,2432,71,1,f +15711,2444,71,4,f +15711,2445,72,2,f +15711,2453a,70,4,f +15711,2458,71,2,f +15711,2465,71,1,f +15711,2493b,71,7,f +15711,2494,40,7,f +15711,2540,72,2,f +15711,2654,15,2,f +15711,2780,0,1,t +15711,2780,0,10,f +15711,2817,0,1,f +15711,2877,14,1,f +15711,298c02,1,1,t +15711,298c02,1,1,f +15711,3001,0,1,f +15711,3003,71,12,f +15711,3004,71,7,f +15711,3004,0,4,f +15711,3005,14,4,f +15711,3005,71,4,f +15711,3006,71,1,f +15711,30089,0,1,f +15711,3009,70,1,f +15711,3009,71,2,f +15711,30094,0,1,f +15711,3010,70,2,f +15711,30136,70,27,f +15711,30137,70,11,f +15711,30145,71,6,f +15711,3020,72,12,f +15711,3020,71,1,f +15711,3022,72,4,f +15711,3022,14,6,f +15711,3023,72,11,f +15711,30236,0,8,f +15711,30238,33,1,f +15711,30240,15,1,f +15711,30340,0,2,f +15711,3035,72,2,f +15711,3036,72,2,f +15711,30375,14,4,f +15711,3039,72,2,f +15711,30390b,71,1,f +15711,3044b,71,2,f +15711,30552,72,4,f +15711,30553,71,4,f +15711,30554a,71,8,f +15711,30565,72,4,f +15711,30608,70,1,f +15711,3062b,47,1,f +15711,3062b,14,1,f +15711,3063b,72,4,f +15711,3068b,71,3,f +15711,3069b,72,3,f +15711,3070b,14,1,t +15711,3070b,14,2,f +15711,32073,71,1,f +15711,32123b,71,1,f +15711,32123b,71,1,t +15711,32192,0,4,f +15711,32316,0,4,f +15711,32348,1,8,f +15711,32530,0,8,f +15711,3298,71,8,f +15711,3307,70,3,f +15711,3455,71,1,f +15711,3460,70,2,f +15711,3626bpb0201,78,1,f +15711,3626bpr0043,78,1,f +15711,3626bpr0325,78,1,f +15711,3626bpr0387,78,1,f +15711,3626bpx125,4,1,f +15711,3633,0,2,f +15711,3660,71,2,f +15711,3665,70,4,f +15711,3665,71,4,f +15711,3666,72,8,f +15711,3700,70,4,f +15711,3706,0,1,f +15711,3709,0,1,f +15711,3710,72,1,f +15711,3710,0,2,f +15711,3747b,71,2,f +15711,3794a,0,8,f +15711,3795,0,6,f +15711,3811,1,1,f +15711,3829c01,71,1,f +15711,3832,70,1,f +15711,3832,71,2,f +15711,3839b,15,1,f +15711,3901,70,1,f +15711,3937,0,1,f +15711,3938,71,1,f +15711,3940b,72,4,f +15711,3941,70,32,f +15711,3941,0,1,f +15711,3942c,14,1,f +15711,3958,1,1,f +15711,3960px2,52,2,f +15711,40234,72,1,f +15711,40240,70,1,f +15711,40251,484,1,f +15711,4150,0,4,f +15711,41539,72,4,f +15711,4162,72,12,f +15711,4274,71,1,t +15711,4274,71,4,f +15711,4282,72,1,f +15711,4285b,72,1,f +15711,4286,71,4,f +15711,4287,71,2,f +15711,43713,14,2,f +15711,43719,0,2,f +15711,44661,14,1,f +15711,4519,71,8,f +15711,4589,36,1,f +15711,4589,71,4,f +15711,4623,70,2,f +15711,4733,0,1,f +15711,48723,71,2,f +15711,48724,71,1,f +15711,48729a,72,8,f +15711,48729a,72,1,t +15711,6020,0,1,f +15711,6126a,52,3,f +15711,6141,36,1,t +15711,6141,0,1,t +15711,6141,0,3,f +15711,6141,36,1,f +15711,6238,40,1,f +15711,6553,0,4,f +15711,6558,0,4,f +15711,6585,0,1,f +15711,6589,71,3,f +15711,970c00,0,1,f +15711,970c00,378,1,f +15711,970c00,272,2,f +15711,970c63pb01,272,1,f +15711,973pb0310c01,73,1,f +15711,973pb0325c01,4,1,f +15711,973pb0326c01,378,1,f +15711,973pb0332c01,379,1,f +15711,973pr0986c01,272,1,f +15713,122c01,0,4,f +15713,2435,2,1,f +15713,2456,15,2,f +15713,2456,14,2,f +15713,2456,1,2,f +15713,2493b,4,2,f +15713,2494,47,2,f +15713,2508,15,1,f +15713,3001,1,4,f +15713,3001,14,4,f +15713,3001,4,2,f +15713,3001,15,4,f +15713,3002,4,4,f +15713,3002,1,6,f +15713,3002,14,6,f +15713,3002,15,8,f +15713,3003,4,4,f +15713,3003,0,4,f +15713,3003,1,6,f +15713,3003,14,6,f +15713,3003,15,8,f +15713,3004,1,20,f +15713,3004,15,28,f +15713,3004,4,12,f +15713,3004,47,4,f +15713,3004,14,16,f +15713,3004,0,8,f +15713,3005,47,4,f +15713,3005,1,20,f +15713,3005,0,8,f +15713,3005,4,14,f +15713,3005,15,20,f +15713,3005,14,16,f +15713,3008,4,2,f +15713,3008,15,4,f +15713,3008,1,4,f +15713,3008,14,4,f +15713,3009,14,6,f +15713,3009,4,2,f +15713,3009,1,6,f +15713,3009,0,2,f +15713,3009,15,8,f +15713,3010,1,12,f +15713,3010,14,12,f +15713,3010,0,4,f +15713,3010,15,16,f +15713,3010,4,8,f +15713,3010p08,4,1,f +15713,3010p09,4,1,f +15713,3020,4,2,f +15713,3021,4,2,f +15713,3022,4,2,f +15713,3030,4,1,f +15713,3031,4,1,f +15713,3032,4,1,f +15713,3034,4,4,f +15713,3035,4,2,f +15713,3036,4,1,f +15713,3039,47,2,f +15713,3039,14,4,f +15713,3040b,14,4,f +15713,3062b,34,2,f +15713,3062b,36,2,f +15713,3062b,33,2,f +15713,3081cc01,4,2,f +15713,3149c01,4,1,f +15713,3183c,15,1,f +15713,3297,4,16,f +15713,3298,4,10,f +15713,3299,4,6,f +15713,3300,4,4,f +15713,3307,15,2,f +15713,3403c01,0,1,f +15713,3460,4,2,f +15713,3471,2,1,f +15713,3483,0,4,f +15713,3622,14,12,f +15713,3622,15,20,f +15713,3622,4,8,f +15713,3622,1,12,f +15713,3622,0,4,f +15713,3626bpr0001,14,2,f +15713,3633,14,4,f +15713,3641,0,8,f +15713,3659,15,2,f +15713,3660,14,4,f +15713,3665,14,4,f +15713,3666,4,2,f +15713,3679,7,1,f +15713,3680,0,1,f +15713,3710,4,2,f +15713,3741,2,3,f +15713,3742,1,3,f +15713,3742,4,3,f +15713,3742,1,1,t +15713,3742,15,3,f +15713,3742,4,1,t +15713,3742,15,1,t +15713,3788,4,2,f +15713,3795,4,2,f +15713,3821,4,1,f +15713,3822,4,1,f +15713,3823,47,2,f +15713,3829c01,15,1,f +15713,3853,4,4,f +15713,3854,14,4,f +15713,3855,47,2,f +15713,3856,2,4,f +15713,3857,2,1,f +15713,3861b,4,2,f +15713,3901,6,1,f +15713,3957a,1,2,f +15713,3958,4,1,f +15713,3960p04,15,1,f +15713,4079,14,2,f +15713,4212b,15,1,f +15713,4286,14,2,f +15713,4287,14,2,f +15713,4477,4,2,f +15713,4530,6,1,f +15713,6007,8,1,f +15713,7039,4,4,f +15713,7049b,0,2,f +15713,970c00,7,1,f +15713,970c00,4,1,f +15713,973c01,1,1,f +15713,973px62c02,15,1,f +15714,2780,0,30,f +15714,2905,1,7,f +15714,2905,4,7,f +15714,32002,8,2,t +15714,32002,8,20,f +15714,32009,8,4,f +15714,32009,1,2,f +15714,32009,4,2,f +15714,32013,8,8,f +15714,32039,8,6,f +15714,32054,0,4,f +15714,32056,4,2,f +15714,32056,1,2,f +15714,32062,15,4,f +15714,32062,0,20,f +15714,32063,4,1,f +15714,32063,1,1,f +15714,32073,0,10,f +15714,32123b,7,20,f +15714,32123b,7,2,t +15714,32138,0,2,f +15714,32172,1,2,f +15714,32172,4,2,f +15714,32174,8,4,f +15714,32177,8,4,f +15714,32184,8,2,f +15714,32209,15,2,f +15714,32250,8,4,f +15714,32250,1,2,f +15714,32250,4,2,f +15714,32269,7,2,f +15714,32271,4,1,f +15714,32271,1,1,f +15714,32278,8,4,f +15714,32291,1,2,f +15714,32291,4,2,f +15714,32291,8,6,f +15714,32348,4,3,f +15714,32348,1,3,f +15714,32449,8,8,f +15714,32449,1,4,f +15714,32449,4,4,f +15714,32498,7,2,f +15714,32506,15,2,f +15714,32523,1,1,f +15714,32523,4,1,f +15714,32524,4,1,f +15714,32524,1,1,f +15714,32524,8,4,f +15714,32525,8,12,f +15714,32526,1,2,f +15714,32526,4,2,f +15714,32527,148,2,f +15714,32528,148,2,f +15714,32556,7,10,f +15714,32557,1,1,f +15714,32557,4,1,f +15714,3673,7,12,f +15714,3705,0,22,f +15714,3706,0,2,f +15714,3707,0,6,f +15714,3713,7,14,f +15714,3713,7,4,t +15714,3737,0,2,f +15714,3749,15,22,f +15714,40386,8,2,f +15714,40490,8,4,f +15714,41662,1,2,f +15714,41662,4,2,f +15714,41665,4,6,f +15714,41665,1,6,f +15714,41668,4,4,f +15714,41668,1,4,f +15714,41669,15,4,f +15714,41669,34,4,f +15714,41670,8,4,f +15714,41677,0,4,f +15714,41678,4,9,f +15714,41678,1,9,f +15714,41679,8,24,f +15714,41680,0,12,f +15714,41681,8,8,f +15714,41681,1,2,f +15714,41681,4,2,f +15714,41752,8,4,f +15714,41753,8,2,f +15714,42074,15,8,f +15714,4519,0,52,f +15714,6536,8,2,f +15714,6538b,4,4,f +15714,6538b,1,4,f +15714,6558,0,48,f +15714,6575,8,2,f +15714,6575,0,2,f +15714,6587,8,4,f +15714,6628,0,28,f +15714,75c13,148,2,f +15714,75c29,148,4,f +15714,78c13,148,4,f +15714,85543,15,8,f +15714,85544,10,6,f +15717,3811,2,1,f +15719,3004,15,1,f +15719,3004p0b,14,1,f +15719,3022,0,1,f +15719,3040b,4,2,f +15719,3040b,15,2,f +15719,3044b,4,1,f +15719,3660,4,1,f +15720,3626cpr0754,14,1,f +15720,3834,320,1,f +15720,3834,320,2,t +15720,3899,4,2,t +15720,3899,4,1,f +15720,970c00pr0282,191,1,f +15720,973pr1919c01,191,1,f +15722,2412b,1,2,f +15722,30027a,15,4,f +15722,30028,0,4,f +15722,3626bp69,14,1,f +15722,3700,15,1,f +15722,3795,15,1,f +15722,3829c01,15,1,f +15722,3937,15,1,f +15722,3938,0,1,f +15722,3960,42,1,f +15722,3962b,0,1,f +15722,4485,1,1,f +15722,6141,36,1,t +15722,6141,0,1,f +15722,6141,36,1,f +15722,6141,0,1,t +15722,6157,0,2,f +15722,970c00,15,1,f +15722,973px176c01,15,1,f +15723,2357,4,2,f +15723,2377,15,2,f +15723,2412b,71,4,f +15723,2413,4,2,f +15723,2431,4,1,f +15723,2437,40,1,f +15723,2444,15,2,f +15723,2458,15,2,f +15723,2524,71,1,f +15723,2780,0,1,t +15723,2780,0,2,f +15723,3003,71,1,f +15723,3004,72,1,f +15723,3005,15,2,f +15723,3020,4,2,f +15723,3022,4,2,f +15723,3023,4,2,f +15723,3034,0,1,f +15723,30363,4,2,f +15723,3037,72,2,f +15723,3040b,72,2,f +15723,30414,15,2,f +15723,3068b,72,2,f +15723,3069bpc4,72,1,f +15723,3070b,71,1,f +15723,3070b,4,2,f +15723,3070b,71,1,t +15723,3070b,1,1,t +15723,3070b,4,1,t +15723,3070b,1,1,f +15723,32000,15,2,f +15723,32064b,72,2,f +15723,3460,4,2,f +15723,3623,4,2,f +15723,3659,15,1,f +15723,3660,15,2,f +15723,3700,4,4,f +15723,3706,0,1,f +15723,3710,4,2,f +15723,3794a,15,2,f +15723,3937,71,1,f +15723,3938,0,1,f +15723,41764,72,2,f +15723,41765,72,2,f +15723,41769,4,3,f +15723,41770,4,3,f +15723,4286,72,2,f +15723,43719,4,2,f +15723,4449,4,1,f +15723,4449,14,1,f +15723,44571,72,1,f +15723,44822,4,1,f +15723,4617b,0,2,f +15723,47456,72,2,f +15723,47457,72,2,f +15723,47501,0,2,f +15723,48183,4,3,f +15723,4854,72,1,f +15723,4855,72,2,f +15723,4856a,72,1,f +15723,4856a,15,1,f +15723,4858pb05,15,1,f +15723,4861,72,1,f +15723,4862,40,2,f +15723,4865a,15,3,f +15723,4867pb19,72,1,f +15723,4871,72,1,f +15723,6141,47,1,f +15723,6141,47,1,t +15723,6141,34,1,f +15723,6141,36,1,t +15723,6141,36,2,f +15723,6141,34,1,t +15723,6536,71,1,f +15723,6541,72,2,f +15723,6628,0,1,f +15723,85543,15,3,t +15723,85543,15,1,f +15725,122c01,0,2,f +15725,3004,14,1,f +15725,3020,0,1,f +15725,3021,0,1,f +15725,3023,0,1,f +15725,3023,14,1,f +15725,3031,14,1,f +15725,3062a,0,2,f +15725,3315,14,1,f +15725,3433,14,1,f +15725,3626apr0001,14,1,f +15725,3641,0,4,f +15725,3829c01,14,1,f +15725,3833,4,1,f +15725,3840,14,1,f +15725,970c00,0,1,f +15725,973c07,1,1,f +15728,2536,0,2,f +15728,2850a,47,1,f +15728,2851,14,1,f +15728,2852,7,1,f +15728,2853,14,2,f +15728,2905,4,2,f +15728,2994,4,2,f +15728,32002,8,4,f +15728,32009,4,1,f +15728,32013,4,4,f +15728,32056,4,2,f +15728,32062,0,1,f +15728,32073,0,1,f +15728,32123b,7,2,f +15728,32193,0,2,f +15728,3706,0,2,f +15728,3713,7,2,f +15728,3749,7,2,f +15728,4519,0,2,f +15728,6536,7,2,f +15728,6558,0,1,f +15728,6578,0,2,f +15728,75c08,4,2,f +15729,2230,1,1,f +15729,2231,1,1,f +15729,3437,2,1,f +15729,4066pb178,19,1,f +15729,61649,14,1,f +15729,64939,14,1,f +15729,6510,4,1,f +15729,74201,4,1,f +15729,98465,1,1,f +15731,2339,19,2,f +15731,2357,19,2,f +15731,2412b,71,5,f +15731,2420,0,8,f +15731,2431,72,4,f +15731,2432,71,1,f +15731,2445,0,1,f +15731,2445,320,1,f +15731,2445,72,2,f +15731,2446,0,2,f +15731,2447,40,2,f +15731,2447,40,1,t +15731,2449,320,2,f +15731,2456,19,1,f +15731,2456,0,1,f +15731,2462,0,2,f +15731,2479,0,1,f +15731,2540,72,1,f +15731,2555,71,2,f +15731,2569,72,2,f +15731,2584,0,1,f +15731,2585,0,1,f +15731,2780,0,35,f +15731,2907,71,1,f +15731,3001,19,7,f +15731,3002,19,2,f +15731,3003,19,2,f +15731,3004,320,2,f +15731,3004,19,16,f +15731,3005,19,1,f +15731,3008,72,1,f +15731,3008,320,2,f +15731,3009,19,4,f +15731,30099,19,2,f +15731,3010,71,2,f +15731,3010,19,3,f +15731,3010,320,2,f +15731,30104,72,2,f +15731,30145,15,2,f +15731,30171,0,2,f +15731,30187c,320,1,f +15731,30187c07,320,1,t +15731,30189,320,1,f +15731,30190,71,1,f +15731,3020,19,1,f +15731,3020,0,2,f +15731,3020,71,2,f +15731,3021,71,2,f +15731,3021,72,2,f +15731,3021,0,1,f +15731,3022,72,4,f +15731,3022,71,1,f +15731,3022,19,3,f +15731,3023,71,1,f +15731,3023,72,6,f +15731,3023,320,13,f +15731,3024,71,1,f +15731,3028,72,1,f +15731,30304,72,1,f +15731,30332,0,1,f +15731,3034,72,3,f +15731,3035,0,1,f +15731,30363,19,1,f +15731,30367b,19,1,f +15731,30367b,27,1,f +15731,3037,320,5,f +15731,3039,320,1,f +15731,3039,19,2,f +15731,3039,71,2,f +15731,30395,72,1,f +15731,3040b,320,2,f +15731,3040b,19,2,f +15731,30414,19,2,f +15731,30553,0,2,f +15731,30592,72,1,f +15731,3068b,19,5,f +15731,3069b,71,2,f +15731,3069b,19,2,f +15731,3070b,36,2,f +15731,32000,19,6,f +15731,32002,72,2,f +15731,32009,72,4,f +15731,32013,72,4,f +15731,32013,0,3,f +15731,32017,72,2,f +15731,32018,72,4,f +15731,32039,0,13,f +15731,32054,0,7,f +15731,32062,4,7,f +15731,32064b,72,1,f +15731,32064b,15,1,f +15731,32123b,71,6,f +15731,32140,72,2,f +15731,32271,72,6,f +15731,32316,27,1,f +15731,32530,72,1,f +15731,32531,0,2,f +15731,32532,0,3,f +15731,32551,71,1,f +15731,3307,19,2,f +15731,3460,0,8,f +15731,3460,71,2,f +15731,3460,1,1,f +15731,3623,19,2,f +15731,3623,71,1,f +15731,3623,0,1,f +15731,3626bpr0440,14,1,f +15731,3626bpr0441,14,1,f +15731,3626bpr0443,71,1,f +15731,3626bpx332,14,1,f +15731,3660,0,8,f +15731,3660,19,3,f +15731,3666,19,9,f +15731,3666,15,3,f +15731,3666,320,9,f +15731,3673,71,4,f +15731,3679,71,1,f +15731,3680,0,1,f +15731,3684,19,1,f +15731,3700,1,2,f +15731,3701,1,4,f +15731,3705,0,7,f +15731,3706,0,8,f +15731,3707,0,9,f +15731,3708,0,2,f +15731,3709,72,8,f +15731,3710,320,3,f +15731,3710,71,1,f +15731,3710,19,7,f +15731,3710,72,8,f +15731,3713,71,4,f +15731,3737,0,1,f +15731,3749,19,3,f +15731,3795,1,1,f +15731,3795,71,1,f +15731,3832,71,1,f +15731,3832,72,2,f +15731,3832,19,6,f +15731,3839b,0,1,f +15731,3839b,71,2,f +15731,3937,71,1,f +15731,3938,0,1,f +15731,3941,27,3,f +15731,3958,72,1,f +15731,3960,0,1,f +15731,3962b,0,2,f +15731,4079,71,2,f +15731,4085c,0,5,f +15731,4162,19,4,f +15731,4162,72,4,f +15731,41677,0,6,f +15731,41747,320,2,f +15731,41747,19,1,f +15731,41748,320,2,f +15731,41748,19,1,f +15731,4175,72,2,f +15731,41751,19,1,f +15731,41751,40,2,f +15731,41751,320,4,f +15731,41764,0,1,f +15731,41765,0,1,f +15731,41767,19,2,f +15731,41768,19,2,f +15731,41769,4,1,f +15731,41769,72,1,f +15731,41770,72,1,f +15731,41770,0,4,f +15731,41770,4,1,f +15731,42003,72,2,f +15731,42021,0,1,f +15731,42022,19,2,f +15731,42022,320,4,f +15731,42023,0,4,f +15731,4215b,47,2,f +15731,4215b,19,2,f +15731,42610,71,4,f +15731,4274,71,7,f +15731,4282,72,2,f +15731,4282,0,9,f +15731,4286,19,5,f +15731,4286,15,2,f +15731,43093,1,16,f +15731,4328,71,1,f +15731,4345b,71,2,f +15731,4346,71,2,f +15731,4360,0,1,f +15731,43898,0,1,f +15731,44294,71,1,f +15731,44301a,0,2,f +15731,4445,320,2,f +15731,44675,71,2,f +15731,44728,71,6,f +15731,4477,19,1,f +15731,4477,72,10,f +15731,4519,71,11,f +15731,45301,320,2,f +15731,4589,42,1,f +15731,4599a,0,1,f +15731,4623,71,1,f +15731,47397,0,1,f +15731,47398,0,1,f +15731,4740,33,1,f +15731,47457,72,1,f +15731,48336,0,2,f +15731,50950,320,4,f +15731,51011,0,4,f +15731,53451,15,12,f +15731,54472,9999,1,t +15731,56823c75,0,1,f +15731,6014b,71,2,f +15731,6015,0,3,f +15731,6019,71,2,f +15731,6070,40,4,f +15731,6111,0,6,f +15731,6112,72,4,f +15731,6141,46,2,f +15731,6141,36,10,f +15731,6538b,27,3,f +15731,6538b,0,19,f +15731,6564,320,1,f +15731,6565,320,1,f +15731,6587,72,2,f +15731,6632,71,1,f +15731,71155,0,1,f +15731,73590c02a,0,1,f +15731,73983,72,8,f +15731,78c10,0,2,f +15731,970c00,0,4,f +15731,973pb0177c01,72,2,f +15731,973pb0178c01,0,1,f +15731,973pb0179c01,72,1,f +15731,973pb0181c01,72,1,f +15731,daptera1,288,1,f +15731,datrex1,4,1,f +15732,30173a,0,3,f +15732,30175,8,2,f +15732,30177,0,1,f +15732,3022,15,3,f +15732,30569,15,3,f +15732,3626bpx39,14,1,f +15732,3626bpx5,14,1,f +15732,3626bpx7,14,1,f +15732,4142691pb1,9999,1,f +15732,4142691pb2,9999,1,f +15732,4142691pb3,9999,1,f +15732,970c00,8,1,f +15732,970c00,0,2,f +15732,973px11c01,0,1,f +15732,973px16c02,4,1,f +15732,973px99c01,4,1,f +15734,14149,4,30,f +15736,2340,15,2,f +15736,2412b,4,2,f +15736,2412b,4,1,t +15736,2432,1,1,f +15736,2436,1,2,f +15736,2446,0,1,f +15736,2447,41,1,t +15736,2447,41,1,f +15736,2496,0,1,f +15736,2540,0,1,f +15736,2655,7,1,f +15736,3002,15,1,f +15736,3021,15,1,f +15736,3039,15,1,f +15736,3479,15,1,f +15736,3626bpr0001,14,1,f +15736,3795,0,1,f +15736,970c00,4,1,f +15736,973c02,4,1,f +15737,2432,14,1,f +15737,2441,4,1,f +15737,2446,15,1,f +15737,2447,41,1,f +15737,3004,4,1,f +15737,3020,4,2,f +15737,3022,14,1,f +15737,3024,4,2,f +15737,3298p56,4,1,f +15737,3623,14,2,f +15737,3626apr0001,14,1,f +15737,3641,0,4,f +15737,3660,4,1,f +15737,3710,14,1,f +15737,3829c01,4,1,f +15737,3839b,0,1,f +15737,4624,14,4,f +15737,4865a,4,2,f +15737,970c00,15,1,f +15737,973p0bc01,15,1,f +15739,2412b,7,1,f +15739,3003,2,2,f +15739,3020,4,1,f +15739,3022,14,1,f +15739,3039,47,1,f +15739,3747b,2,1,f +15739,3957a,15,1,f +15739,4032a,7,1,f +15740,2412b,15,1,f +15740,2436,1,1,f +15740,2437,41,1,f +15740,2555,14,2,f +15740,2610,14,1,f +15740,3020,1,1,f +15740,3020,15,1,f +15740,3021,1,3,f +15740,3023,7,1,f +15740,3023,15,2,f +15740,3023,4,2,f +15740,3024,15,2,f +15740,3037,15,1,f +15740,3070b,4,2,f +15740,3070b,36,2,f +15740,3070b,46,2,f +15740,3623,15,4,f +15740,3623,4,2,f +15740,3626bp03,14,1,f +15740,3710,15,2,f +15740,3788,15,1,f +15740,3821,15,1,f +15740,3822,15,1,f +15740,3829c01,14,1,f +15740,3832,0,1,f +15740,3901,6,1,f +15740,4211,15,1,f +15740,4213,15,2,f +15740,4315,15,2,f +15740,4477,1,2,f +15740,4600,0,2,f +15740,476,15,1,f +15740,4864a,15,4,f +15740,4864ap04,15,2,f +15740,6014a,14,4,f +15740,6015,0,4,f +15740,6075,4,1,f +15740,63965,15,1,f +15740,970x026,14,1,f +15740,973c11,15,1,f +15740,rb00167,0,1,t +15740,rb00167,0,1,f +15740,x66px7,47,1,f +15741,2441,0,1,f +15741,3022,1,2,f +15741,3623,1,2,f +15741,3829c01,14,1,f +15741,4624,71,4,f +15741,4624,71,1,t +15741,87414,0,4,f +15742,2456,14,2,f +15742,2456,1,2,f +15742,2456,15,2,f +15742,2456,4,2,f +15742,3001,15,10,f +15742,3001,73,3,f +15742,3001,4,11,f +15742,3001,0,6,f +15742,3001,14,10,f +15742,3001,1,6,f +15742,3001,71,5,f +15742,3001,27,4,f +15742,3001,25,5,f +15742,3001,2,6,f +15742,3002,4,3,f +15742,3002,1,8,f +15742,3002,15,6,f +15742,3002,0,2,f +15742,3002,27,2,f +15742,3002,71,4,f +15742,3002,2,2,f +15742,3002,25,2,f +15742,3002,73,4,f +15742,3002,14,6,f +15742,3003,73,12,f +15742,3003,27,16,f +15742,3003,0,19,f +15742,3003,36,1,f +15742,3003,4,15,f +15742,3003,1,15,f +15742,3003,15,17,f +15742,3003,2,19,f +15742,3003,25,9,f +15742,3003,14,22,f +15742,3003,71,17,f +15742,3004,2,16,f +15742,3004,25,9,f +15742,3004,15,25,f +15742,3004,71,11,f +15742,3004,14,25,f +15742,3004,0,12,f +15742,3004,4,25,f +15742,3004,1,25,f +15742,3004,73,4,f +15742,3004,27,14,f +15742,3005,0,14,f +15742,3005,4,18,f +15742,3005,15,18,f +15742,3005,1,18,f +15742,3005,2,6,f +15742,3005,71,6,f +15742,3005,14,18,f +15742,3005pe1,14,6,f +15742,3005pe1,2,2,f +15742,3007,4,2,f +15742,3007,1,2,f +15742,3007,14,2,f +15742,3008,1,2,f +15742,3009,14,1,f +15742,3009,1,2,f +15742,3009,71,4,f +15742,3009,15,2,f +15742,3009,4,4,f +15742,3010,0,3,f +15742,3010,15,4,f +15742,3010,71,2,f +15742,3010,2,2,f +15742,3010,73,2,f +15742,3010,14,4,f +15742,3010,4,3,f +15742,3010p01,14,1,f +15742,3020,71,2,f +15742,3020,15,4,f +15742,3020,1,2,f +15742,3020,0,2,f +15742,3020,25,2,f +15742,3020,4,2,f +15742,3020,2,2,f +15742,3020,14,2,f +15742,3021,4,2,f +15742,3021,15,3,f +15742,3021,1,5,f +15742,3021,14,2,f +15742,3021,2,2,f +15742,3021,25,2,f +15742,3022,14,6,f +15742,3022,4,4,f +15742,3022,15,6,f +15742,3022,1,4,f +15742,3022,0,2,f +15742,3022,2,2,f +15742,3034,4,1,f +15742,3034,14,1,f +15742,3037,4,4,f +15742,3039,14,2,f +15742,3039,4,10,f +15742,3039,2,2,f +15742,3039,15,6,f +15742,3039,1,2,f +15742,3039,33,2,f +15742,3040b,2,2,f +15742,3040b,71,2,f +15742,3040b,1,4,f +15742,3040b,15,4,f +15742,3040b,4,7,f +15742,3040b,25,6,f +15742,3040b,14,2,f +15742,3041,4,1,f +15742,3043,4,1,f +15742,3065,33,3,f +15742,3065,36,4,f +15742,3298,15,2,f +15742,3298,4,4,f +15742,3298,1,2,f +15742,3622,14,2,f +15742,3622,71,2,f +15742,3622,1,2,f +15742,3622,0,2,f +15742,3622,4,2,f +15742,3622,2,4,f +15742,3622,15,2,f +15742,3660,15,4,f +15742,3660,4,1,f +15742,3660,2,2,f +15742,3660,1,2,f +15742,3665,15,2,f +15742,3665,14,2,f +15742,3665,2,2,f +15742,3665,71,2,f +15742,3665,1,2,f +15742,3665,4,2,f +15742,3665,25,4,f +15742,3710,4,11,f +15742,3710,1,3,f +15742,3747b,1,1,f +15742,3795,15,2,f +15742,3795,14,2,f +15742,3795,4,2,f +15742,3795,1,1,f +15742,4286,1,2,f +15742,4286,4,4,f +15742,4287,1,4,f +15742,4287,15,2,f +15742,4287,4,2,f +15743,2343,71,4,f +15743,2413,15,2,f +15743,2419,4,2,f +15743,2431,14,4,f +15743,2431,41,6,f +15743,2432,71,7,f +15743,2445,4,3,f +15743,2456,1,3,f +15743,2456,4,2,f +15743,2456,15,9,f +15743,2458,4,4,f +15743,2460,4,4,f +15743,2495,4,1,f +15743,2496,0,1,f +15743,2654,1,4,f +15743,3001,25,20,f +15743,3001,15,19,f +15743,3001,73,20,f +15743,3001,1,20,f +15743,3001,2,21,f +15743,3001,71,20,f +15743,3001,4,20,f +15743,3001,14,20,f +15743,3001,27,20,f +15743,3002,1,4,f +15743,3002,27,4,f +15743,3002,14,4,f +15743,3002,25,4,f +15743,3002,73,4,f +15743,3002,4,15,f +15743,3002,2,4,f +15743,3002,15,7,f +15743,3003,4,20,f +15743,3003,70,11,f +15743,3003,15,20,f +15743,3003,25,25,f +15743,3003,14,20,f +15743,3003,1,20,f +15743,3003,2,29,f +15743,3003,27,21,f +15743,3003,73,20,f +15743,3004,71,4,f +15743,3004,70,12,f +15743,3004,73,10,f +15743,3004,4,28,f +15743,3004,1,34,f +15743,3004,15,51,f +15743,3004,27,10,f +15743,3004,19,8,f +15743,3004,2,10,f +15743,3004,14,21,f +15743,3004,25,33,f +15743,3004pr0003,15,4,f +15743,3005,27,20,f +15743,3005,25,25,f +15743,3005,15,10,f +15743,3005,4,20,f +15743,3005,1,20,f +15743,3005,73,20,f +15743,3005,70,16,f +15743,3005pr0003,2,4,f +15743,3005pr0003,14,8,f +15743,3005pr0003,15,6,f +15743,3007,15,3,f +15743,3008,15,4,f +15743,3009,1,3,f +15743,3009,25,2,f +15743,3009,4,3,f +15743,3009,14,2,f +15743,3010,25,10,f +15743,3010,73,11,f +15743,3010,1,10,f +15743,3010,2,10,f +15743,3010,4,10,f +15743,3010,14,18,f +15743,3010,71,4,f +15743,3010,15,4,f +15743,30150,70,2,f +15743,30176,2,6,f +15743,3020,19,4,f +15743,3020,2,14,f +15743,3020,1,7,f +15743,3020,14,4,f +15743,3020,25,5,f +15743,3021,1,8,f +15743,3021,4,7,f +15743,3021,19,4,f +15743,3021,14,10,f +15743,3022,4,12,f +15743,3022,2,4,f +15743,3022,71,8,f +15743,3022,15,4,f +15743,3022,1,7,f +15743,3022,14,8,f +15743,3023,73,8,f +15743,3023,25,6,f +15743,3023,0,12,f +15743,3023,14,4,f +15743,3023,71,4,f +15743,30237b,71,4,f +15743,3028,10,11,f +15743,3029,1,3,f +15743,3029,0,3,f +15743,3029,4,3,f +15743,3030,72,3,f +15743,3030,1,2,f +15743,3031,10,2,f +15743,3031,4,6,f +15743,3031,1,4,f +15743,3031,14,2,f +15743,3032,14,3,f +15743,3032,0,2,f +15743,3034,4,2,f +15743,3034,14,4,f +15743,3034,2,3,f +15743,3035,0,5,f +15743,30367b,0,4,f +15743,3039,0,4,f +15743,3039,2,4,f +15743,30395,72,4,f +15743,3040b,14,7,f +15743,3040b,4,6,f +15743,3040b,25,4,f +15743,3040b,1,4,f +15743,3040b,15,8,f +15743,3062b,70,8,f +15743,3062b,71,25,f +15743,3065,47,4,f +15743,3065,41,4,f +15743,3068b,1,7,f +15743,3068b,25,11,f +15743,3068b,71,4,f +15743,3068b,73,4,f +15743,3068b,4,5,f +15743,3068b,14,8,f +15743,3069b,0,5,f +15743,3069b,4,4,f +15743,32125,71,2,f +15743,32530,4,4,f +15743,3298,4,4,f +15743,33291,5,19,f +15743,33291,191,24,f +15743,3460,15,3,f +15743,3460,0,8,f +15743,3622,4,4,f +15743,3622,1,4,f +15743,3623,71,4,f +15743,3624,1,1,f +15743,3626cpr0891,14,8,f +15743,3626cpr0892,14,8,f +15743,3660,25,4,f +15743,3665,14,12,f +15743,3666,14,4,f +15743,3666,70,8,f +15743,3666,73,5,f +15743,3666,25,3,f +15743,3679,71,4,f +15743,3680,0,4,f +15743,3700,15,4,f +15743,3710,2,6,f +15743,3710,25,10,f +15743,3710,4,4,f +15743,3710,0,11,f +15743,3710,14,4,f +15743,3731,71,5,f +15743,3747b,14,4,f +15743,3794b,19,4,f +15743,3795,4,2,f +15743,3795,71,2,f +15743,3823,47,2,f +15743,3829c01,15,6,f +15743,3901,28,1,f +15743,3941,1,4,f +15743,3941,46,4,f +15743,3957a,1,4,f +15743,3958,1,3,f +15743,3960,15,4,f +15743,4032a,4,4,f +15743,4079,4,5,f +15743,4150p02,14,2,f +15743,4460a,1,2,f +15743,44728,14,4,f +15743,4477,4,4,f +15743,4477,0,2,f +15743,4477,71,2,f +15743,4490,15,4,f +15743,4490,19,4,f +15743,4594,47,2,f +15743,4600,0,20,f +15743,4624,71,12,f +15743,4624,15,28,f +15743,4719,15,2,f +15743,4719,4,2,f +15743,4727,10,12,f +15743,4864b,47,4,f +15743,4865b,14,6,f +15743,54200,14,8,f +15743,54200,71,4,f +15743,54200,19,10,f +15743,54200,2,8,f +15743,54200,15,4,f +15743,57895,47,4,f +15743,59349,47,1,f +15743,59363,226,1,f +15743,60474,1,2,f +15743,60592,15,6,f +15743,60596,15,3,f +15743,60596,14,3,f +15743,60596,4,5,f +15743,60598,4,2,f +15743,60616a,47,5,f +15743,60623,15,2,f +15743,6064,2,4,f +15743,61252,4,4,f +15743,6132,71,1,f +15743,6141,4,10,f +15743,6141,25,8,f +15743,6141,15,8,f +15743,6141,27,6,f +15743,6141,0,5,f +15743,6141,14,10,f +15743,6215,71,4,f +15743,6215,1,4,f +15743,6215,14,5,f +15743,6231,14,4,f +15743,62696,484,1,f +15743,62696,320,1,f +15743,62711,0,1,f +15743,62810,308,1,f +15743,62810,484,1,f +15743,63082,71,6,f +15743,73590c03a,0,2,f +15743,75347,15,1,f +15743,85974,70,2,f +15743,86035,4,1,f +15743,86035,25,1,f +15743,86035,27,1,f +15743,86035,1,1,f +15743,87087,71,4,f +15743,87414,0,40,f +15743,87580,10,4,f +15743,87580,0,4,f +15743,87580,2,4,f +15743,88072,14,4,f +15743,88283,308,1,f +15743,88286,308,1,f +15743,92438,10,3,f +15743,92438,1,1,f +15743,92842,0,2,f +15743,92851,47,8,f +15743,92950,71,6,f +15743,96874,25,4,t +15743,970c00,25,2,f +15743,970c00,70,1,f +15743,970c00,272,2,f +15743,970c00,15,1,f +15743,970c00,2,2,f +15743,970c00,72,2,f +15743,970c00,4,2,f +15743,970c00,288,1,f +15743,970c00,1,2,f +15743,970x026,14,1,f +15743,973c07,1,1,f +15743,973pr1173c01,4,1,f +15743,973pr1240c01,1,1,f +15743,973pr1440c01,1,1,f +15743,973pr1444c01,14,1,f +15743,973pr1446c01,4,1,f +15743,973pr1479c01,15,1,f +15743,973pr1480c01,15,1,f +15743,973pr1485c01,4,1,f +15743,973pr1517c01,73,1,f +15743,973pr1580c01,15,1,f +15743,973pr1585c01,25,1,f +15743,973pr1617c01,2,1,f +15743,973pr1627c01,15,1,f +15743,973pr1720c01,15,1,f +15743,973pr1859c01,15,1,f +15743,98560,4,4,f +15743,98560,15,2,f +15745,3006,15,5,f +15745,3006,4,5,f +15745,3006,1,5,f +15745,3006,14,5,f +15745,3006,0,5,f +15746,31022,15,3,f +15746,31023,15,3,f +15746,31032,72,1,f +15746,31035,14,1,f +15746,31041,297,1,f +15746,3437,27,8,f +15746,3437,2,4,f +15746,3437,4,2,f +15746,3437,484,4,f +15746,3437,14,12,f +15746,4066,1,1,f +15746,40666,1,1,f +15746,40666,2,2,f +15746,41169c01,71,1,f +15746,42026,0,1,f +15746,44524,72,1,f +15746,44594,71,1,f +15746,47444c01,1,1,f +15746,47448,4,1,f +15746,47451,72,1,f +15746,47510pr0002,212,1,f +15746,47511pr0001,15,1,f +15746,47533,72,1,f +15746,4828,4,1,f +15746,48835,71,1,f +15746,51260,4,2,f +15746,51261,4,1,f +15746,51262,72,1,f +15746,51269,71,1,f +15746,51288,70,1,f +15746,51383,4,6,f +15746,51385,191,3,f +15746,53916,4,1,f +15746,57892,484,1,f +15746,58086,70,1,f +15746,61310,72,2,f +15746,61896,1,2,f +15746,63716,85,1,f +15746,6394,4,3,f +15746,6478,1,2,f +15746,6479,15,1,f +15746,6510,14,1,f +15746,6510,2,1,f +15746,75115pr0009,378,1,f +15746,75720,15,1,f +15746,75721,15,1,f +15746,75722,92,1,f +15746,75723,484,1,f +15746,75724,15,2,f +15746,75726,92,2,f +15746,92938,1,1,f +15746,98460,15,8,f +15747,2357,7,2,f +15747,2357,19,4,f +15747,2397,2,1,f +15747,2412b,25,2,f +15747,2412b,4,4,f +15747,2412b,14,16,f +15747,2431,0,2,f +15747,2432,1,1,f +15747,2444,15,4,f +15747,2446pb16,0,1,f +15747,2446pb17,1,1,f +15747,2446pb18,0,1,f +15747,2446pb19,27,1,f +15747,2447,0,2,f +15747,2447,46,2,f +15747,2456,19,1,f +15747,2460,4,2,f +15747,2465,19,2,f +15747,2540,2,1,f +15747,2540,0,9,f +15747,2555,7,3,f +15747,2654,7,2,f +15747,2736,7,15,f +15747,2780,0,1,t +15747,2780,0,63,f +15747,2921,4,4,f +15747,3001,19,3,f +15747,3003,7,2,f +15747,3003,19,36,f +15747,3005,0,4,f +15747,3005,19,1,f +15747,30136,0,17,f +15747,30137,7,10,f +15747,3021,0,12,f +15747,3022,4,11,f +15747,3022,19,2,f +15747,3023,1,1,f +15747,3023,0,6,f +15747,3023,2,1,f +15747,3023,14,21,f +15747,3024,7,4,f +15747,30258,14,4,f +15747,3034,0,4,f +15747,3039,19,4,f +15747,3039,8,1,f +15747,30414,7,2,f +15747,30602pb018,0,1,f +15747,30603pb13,0,1,f +15747,3062b,0,4,f +15747,3068b,14,6,f +15747,3069bpx56,1,1,f +15747,3069bpx57,1,1,f +15747,32013,14,4,f +15747,32014,0,3,f +15747,32015,19,1,f +15747,32016,6,2,f +15747,32028,14,1,f +15747,32039,4,5,f +15747,32054,0,2,f +15747,32056,0,1,f +15747,32062,0,1,f +15747,32073,7,9,f +15747,32123b,7,1,f +15747,32123b,7,1,t +15747,32192,7,2,f +15747,32249,14,1,f +15747,32293,0,3,f +15747,32316,0,2,f +15747,32348,14,2,f +15747,32524,7,3,f +15747,32525,14,2,f +15747,32530,8,4,f +15747,33299a,7,8,f +15747,3460,19,2,f +15747,3460,0,6,f +15747,3623,7,4,f +15747,3626bpb0163,14,1,f +15747,3626bpb0179,14,1,f +15747,3626bpb0180,0,1,f +15747,3626bpb0240,14,1,f +15747,3660,7,4,f +15747,3666,0,2,f +15747,3673,7,6,f +15747,3673,7,1,t +15747,3684,7,4,f +15747,3700,7,6,f +15747,3706,0,1,f +15747,3710,4,3,f +15747,3737,0,1,f +15747,3749,19,6,f +15747,3795,0,2,f +15747,3832,0,4,f +15747,3894,7,4,f +15747,3941,4,2,f +15747,3957a,0,4,f +15747,3957a,15,4,f +15747,4032a,19,3,f +15747,4070,0,9,f +15747,4081b,4,2,f +15747,4081b,14,2,f +15747,4081b,73,2,f +15747,4081b,0,2,f +15747,4085c,4,1,f +15747,41752,8,1,f +15747,41854,25,1,f +15747,41854,73,1,f +15747,41854pb11,0,1,f +15747,41854pb12,73,1,f +15747,41855,1,1,f +15747,41855pb06,27,1,f +15747,41864,0,4,f +15747,42022,0,12,f +15747,42938,8,17,f +15747,42941,8,2,f +15747,42942,8,2,f +15747,44674,0,1,f +15747,44674,25,1,f +15747,44773,8,4,f +15747,44775,14,6,f +15747,4495a,1,2,f +15747,4495a,4,2,f +15747,4519,7,6,f +15747,4589,14,2,f +15747,4589,4,2,f +15747,4600,0,2,f +15747,5313,8,2,f +15747,5313a,8,2,f +15747,6014b,14,2,f +15747,6014b,4,2,f +15747,6015,0,4,f +15747,6112,8,2,f +15747,6141,4,8,f +15747,6141,14,2,t +15747,6141,36,2,t +15747,6141,34,4,f +15747,6141,34,2,t +15747,6141,36,6,f +15747,6141,4,2,t +15747,6141,14,16,f +15747,6232,8,8,f +15747,6538b,36,6,f +15747,6558,0,2,f +15747,6628,0,1,f +15747,6636,8,6,f +15747,6636,14,4,f +15747,6636,0,2,t +15747,6636,0,8,f +15747,75535,4,1,f +15747,75c12,14,2,f +15747,75c40,14,1,f +15747,78c16,179,2,f +15747,85543,15,5,f +15747,x351,8,2,f +15747,x351,4,2,f +15749,2723pr0001,0,1,f +15749,2780,0,1,t +15749,2780,0,1,f +15749,2815,0,4,f +15749,2817,71,1,f +15749,2877,72,2,f +15749,3001,4,1,f +15749,3003,0,3,f +15749,3005,72,2,f +15749,3020,72,2,f +15749,3021,85,9,f +15749,3040b,85,2,f +15749,3045,85,2,f +15749,3049b,4,2,f +15749,3068b,72,2,f +15749,32062,4,2,f +15749,32123b,14,1,f +15749,32123b,14,1,t +15749,32192,0,1,f +15749,3622,72,2,f +15749,3700,15,3,f +15749,3702,4,1,f +15749,3713,4,1,f +15749,3713,4,1,t +15749,3934bpr0001,85,1,f +15749,3937,4,2,f +15749,3941,4,1,f +15749,3961,85,1,f +15749,4032a,0,3,f +15749,4150pr0004,71,1,f +15749,41769,85,2,f +15749,41770,85,2,f +15749,4185,71,4,f +15749,41879a,1,1,f +15749,43093,1,1,f +15749,44375a,85,1,f +15749,44728,72,2,f +15749,4477,0,1,f +15749,47456,72,4,f +15749,50950,85,4,f +15749,50950,72,4,f +15749,54821,14,3,f +15749,54821,14,1,t +15749,55013,72,2,f +15749,57909a,72,4,f +15749,60474,0,3,f +15749,6134,4,2,f +15749,6141,85,1,t +15749,6141,36,2,f +15749,6141,85,2,f +15749,6141,36,1,t +15749,62233,179,1,f +15749,62712,85,2,f +15749,64251,72,2,f +15749,6553,72,1,f +15749,6587,28,1,f +15749,75347,15,1,f +15749,78c18,179,1,f +15749,85984,0,2,f +15749,87083,72,1,f +15749,87769pr0001,27,1,f +15749,87785,4,1,f +15749,87926,85,4,f +15749,88059pr0001,85,1,f +15749,973pr1532c01,1,1,f +15750,2431,70,20,f +15750,2526,297,1,f +15750,2526,1,4,f +15750,2526,4,1,f +15750,2528,0,1,f +15750,2528pr0001,0,1,f +15750,2530,72,2,f +15750,2543,288,2,f +15750,2543,1,1,f +15750,2545pr0001,0,3,f +15750,2561,70,4,f +15750,2562,70,4,f +15750,3070b,0,8,f +15750,3626bpr0270,14,1,f +15750,3626bpr0325,14,1,f +15750,3626bpr0389,14,1,f +15750,3626bpr0410,14,1,f +15750,3626bpr0411,14,1,f +15750,3626bpr0541,14,1,f +15750,3626bpr0564,14,1,f +15750,3626bpr0567,14,1,f +15750,3626bpr0568,14,1,f +15750,62696,308,1,f +15750,64647,4,1,f +15750,6636,70,4,f +15750,970c00,288,1,f +15750,970c00,70,1,f +15750,970c00,15,5,f +15750,970c00,1,1,f +15750,970c00,0,1,f +15750,970d09,0,1,f +15750,973pr1438c01,15,1,f +15750,973pr1439c01,70,1,f +15750,973pr1440c01,1,1,f +15750,973pr1441c01,4,3,f +15750,973pr1442c01,0,1,f +15750,973pr1445c01,272,1,f +15750,973pr1449c01,0,1,f +15751,2399,1,1,f +15751,2432,4,1,f +15751,2437,41,2,f +15751,2540,7,1,f +15751,2569,4,1,f +15751,298c02,7,1,t +15751,298c02,7,1,f +15751,3004,1,1,f +15751,3004,15,1,f +15751,3009,15,2,f +15751,3009pb003,1,2,f +15751,3021,0,1,f +15751,3023,1,1,f +15751,30235,0,2,f +15751,3626bp04,14,2,f +15751,3829c01,14,2,f +15751,4081b,15,2,f +15751,4083,0,1,f +15751,4485,0,2,f +15751,4858pb02,15,1,f +15751,6014a,15,8,f +15751,6015,0,8,f +15751,6019,7,1,f +15751,6141,33,2,f +15751,6141,33,1,t +15751,970c00,0,2,f +15751,973pb0249c01,4,1,f +15751,973px67c01,0,1,f +15757,2420,15,2,f +15757,2433,1,2,f +15757,2436,15,1,f +15757,2446,0,1,f +15757,2447,41,1,f +15757,2484c01,4,2,f +15757,3020,15,1,f +15757,3021,1,1,f +15757,3023,4,2,f +15757,3039,1,1,f +15757,3062b,1,2,f +15757,3068bp83,4,1,f +15757,3626apr0001,14,1,f +15757,3641,0,2,f +15757,3665,4,2,f +15757,3787,4,1,f +15757,3829c01,1,1,f +15757,3839b,7,1,f +15757,4083,1,1,f +15757,4084,0,2,f +15757,4531,4,2,f +15757,4589,7,2,f +15757,4624,15,4,f +15757,4732,15,1,f +15757,970c00,15,1,f +15757,973p0bc01,15,1,f +15759,11477,70,1,f +15759,11477,322,1,f +15759,22667,27,1,f +15759,2423,5,1,f +15759,26090pr0001,322,1,f +15759,30153,47,1,f +15759,3020,2,1,f +15759,33291,191,1,f +15759,3665,70,2,f +15759,54200,41,1,f +15759,87580,70,1,f +15760,10247,72,1,f +15760,11153,28,17,f +15760,11211,71,1,f +15760,11477,70,8,f +15760,12825,0,2,f +15760,12825,15,1,f +15760,12825,70,2,f +15760,13285pr0002,0,1,f +15760,14395,19,4,f +15760,15207,320,2,f +15760,15535,72,1,f +15760,16877,70,1,f +15760,17978,19,3,f +15760,18131,326,1,f +15760,18134,326,1,f +15760,2357,71,2,f +15760,2357,19,8,f +15760,2412b,71,4,f +15760,2412b,72,3,f +15760,2420,1,2,f +15760,2420,28,4,f +15760,2431,320,3,f +15760,2431,72,1,f +15760,2460,71,2,f +15760,2489,72,1,f +15760,2540,0,1,f +15760,2569,0,1,t +15760,2569,0,2,f +15760,2653,71,3,f +15760,2654,47,10,f +15760,2780,0,1,t +15760,2780,0,1,f +15760,2819,71,1,f +15760,2877,19,20,f +15760,2877,72,3,f +15760,298c02,0,1,f +15760,298c02,0,1,t +15760,3001,19,2,f +15760,3001,28,2,f +15760,3001,71,2,f +15760,3003,19,7,f +15760,3003,320,2,f +15760,3004,70,3,f +15760,3005,72,2,f +15760,3005,19,21,f +15760,3005,71,2,f +15760,3005,70,1,f +15760,3008,0,2,f +15760,3009,19,5,f +15760,3010,19,2,f +15760,3010,72,3,f +15760,3010,28,3,f +15760,3020,320,1,f +15760,3020,92,5,f +15760,3020,28,3,f +15760,3022,71,1,f +15760,3022,72,3,f +15760,3023,19,24,f +15760,3023,71,24,f +15760,3023,320,5,f +15760,30237b,19,9,f +15760,3024,320,1,f +15760,3024,320,1,t +15760,30304,72,1,f +15760,3031,70,1,f +15760,3032,71,1,f +15760,3034,28,3,f +15760,3035,92,4,f +15760,3035,28,4,f +15760,30374,297,2,f +15760,30374,41,2,f +15760,3039,19,2,f +15760,3039,0,1,f +15760,30408pr0005,15,1,f +15760,3040b,19,5,f +15760,3040b,72,1,f +15760,3040b,320,6,f +15760,3040b,71,1,f +15760,30562,19,1,f +15760,30565,92,4,f +15760,30586,71,2,f +15760,3062b,19,4,f +15760,3062b,320,4,f +15760,3062b,47,2,f +15760,3062b,36,3,f +15760,3062b,72,1,f +15760,3068b,72,1,f +15760,3068b,70,2,f +15760,3069b,40,2,f +15760,3069b,320,11,f +15760,3070b,70,1,t +15760,3070b,72,1,f +15760,3070b,70,2,f +15760,3070b,72,1,t +15760,32013,15,6,f +15760,32028,28,2,f +15760,32034,15,1,f +15760,32062,0,2,f +15760,32064b,72,4,f +15760,32530,72,1,f +15760,3307,19,3,f +15760,3622,15,4,f +15760,3622,71,1,f +15760,3623,71,1,f +15760,3626cpr1149,78,1,f +15760,3626cpr1368,78,1,f +15760,3626cpr1403,78,1,f +15760,3626cpr1444,78,1,f +15760,3665,15,1,f +15760,3666,28,1,f +15760,3700,71,4,f +15760,3700,0,2,f +15760,3706,0,1,f +15760,3710,28,8,f +15760,3710,72,1,f +15760,3710,19,9,f +15760,3710,70,2,f +15760,3794b,70,1,f +15760,3794b,320,3,f +15760,3795,19,1,f +15760,3795,71,1,f +15760,3795,72,1,f +15760,3829c01,0,1,f +15760,3899,47,1,f +15760,3901,71,1,f +15760,3901,70,1,f +15760,3941,19,2,f +15760,4032a,15,1,f +15760,4079,70,2,f +15760,4079,0,2,f +15760,41539,28,2,f +15760,4162,320,2,f +15760,4175,28,1,f +15760,42446,71,1,t +15760,42446,71,1,f +15760,42610,71,1,f +15760,4274,71,7,f +15760,4274,71,1,t +15760,44728,71,2,f +15760,4477,320,2,f +15760,4477,72,2,f +15760,4519,71,1,f +15760,4536,15,2,f +15760,4599b,0,1,t +15760,4599b,0,1,f +15760,47545pr0001,378,1,f +15760,48092,15,2,f +15760,4865b,71,9,f +15760,4865b,15,1,f +15760,4868b,71,1,f +15760,4868b,72,2,f +15760,50950,320,1,f +15760,54200,70,4,f +15760,54200,0,1,t +15760,54200,320,1,t +15760,54200,320,4,f +15760,54200,70,1,t +15760,54200,0,2,f +15760,55013,72,2,f +15760,57585,71,2,f +15760,57899,0,1,f +15760,59900,15,1,f +15760,59900,70,1,f +15760,59900,71,5,f +15760,59900,297,1,f +15760,60475a,71,3,f +15760,60478,72,4,f +15760,60808,19,5,f +15760,60897,72,1,f +15760,6091,19,1,f +15760,61252,297,4,f +15760,61252,71,7,f +15760,61409,72,4,f +15760,6141,179,1,t +15760,6141,41,1,t +15760,6141,179,2,f +15760,6141,71,4,f +15760,6141,0,4,f +15760,6141,41,1,f +15760,6141,0,1,t +15760,6141,47,6,f +15760,6141,71,2,t +15760,6141,47,2,t +15760,62360,47,1,f +15760,63965,71,6,f +15760,64567,80,2,t +15760,64567,0,1,t +15760,64567,71,1,t +15760,64567,71,3,f +15760,64567,80,2,f +15760,64567,0,1,f +15760,64644,0,1,f +15760,73983,19,7,f +15760,75c12,179,1,f +15760,75c20,71,1,t +15760,75c20,71,2,f +15760,85080,0,2,f +15760,85984,72,1,f +15760,87087,19,6,f +15760,87087,15,1,f +15760,87087,72,6,f +15760,87544,71,1,f +15760,87552,71,3,f +15760,87580,0,2,f +15760,87618,71,1,f +15760,88072,15,3,f +15760,91501,71,2,f +15760,92410,71,1,f +15760,92582,71,2,f +15760,92593,71,1,f +15760,92690,70,5,f +15760,92690,297,1,f +15760,92691,15,1,f +15760,92738,0,3,f +15760,92746,19,1,f +15760,92947,71,2,f +15760,93273,326,4,f +15760,95198,19,1,f +15760,96874,25,1,t +15760,970c00,72,3,f +15760,970c00pr0625,272,1,f +15760,970c00pr0650,15,1,f +15760,970c00pr0679,15,1,f +15760,970c00pr0687,19,1,f +15760,970c00pr0691,322,1,f +15760,973pr2301c01,0,1,f +15760,973pr2648c01,15,1,f +15760,973pr2698c01,15,1,f +15760,973pr2699c01,308,1,f +15760,973pr2716c01,0,3,f +15760,973pr2717c01,84,1,f +15760,98138,41,1,t +15760,98138,41,2,f +15760,98138,36,1,t +15760,98138,297,4,f +15760,98138,36,4,f +15760,98138,297,2,t +15761,32203,14,3,f +15761,32205,14,2,f +15761,32207,8,2,f +15761,32216,14,2,f +15761,32218,0,1,f +15761,32229,0,1,f +15761,zbb013,22,6,f +15761,zbb014,7,4,f +15761,zbb015,14,4,f +15761,zbb018,14,2,f +15764,12809,4,1,f +15764,3011,191,1,f +15764,3011,484,2,f +15764,31164,2,1,f +15764,3437,19,2,f +15764,3437,2,1,f +15764,51708,70,1,f +15764,51725pr05,15,1,f +15764,88784,0,1,f +15765,1854stk01,9999,1,t +15765,2343,47,2,f +15765,2357,15,3,f +15765,2453a,15,1,f +15765,3003,1,1,f +15765,3004,15,9,f +15765,3005,15,5,f +15765,3009,15,2,f +15765,3010,15,6,f +15765,3020,15,1,f +15765,3023,1,2,f +15765,3023,15,4,f +15765,3024,15,5,f +15765,3030,15,1,f +15765,3037,4,6,f +15765,3038,4,1,f +15765,3039,4,14,f +15765,3040b,4,3,f +15765,3041,4,4,f +15765,3043,4,1,f +15765,3069b,14,1,f +15765,3069bpr0099,15,2,f +15765,3070bp03,14,1,f +15765,3070bp03,14,1,t +15765,3081cc01,1,2,f +15765,3596,15,1,f +15765,3622,15,9,f +15765,3623,15,1,f +15765,3626bp02,14,1,f +15765,3626bpr0001,14,1,f +15765,3633,7,1,f +15765,3665,15,1,f +15765,3666,15,1,f +15765,3676,15,1,f +15765,3710,15,4,f +15765,3741,2,1,t +15765,3741,2,2,f +15765,3742,14,2,t +15765,3742,14,6,f +15765,3795,15,1,f +15765,3795,1,1,f +15765,3832,15,1,f +15765,3852b,6,1,f +15765,3867,2,1,f +15765,3899,4,2,f +15765,3941,14,1,f +15765,3960p01,15,1,f +15765,4032a,7,1,f +15765,4070,15,1,f +15765,4079,1,2,f +15765,4079,14,2,f +15765,4081b,15,3,f +15765,4085c,15,1,f +15765,4095,15,1,f +15765,4345b,7,1,f +15765,4346,7,1,f +15765,4445,4,4,f +15765,4447,15,4,f +15765,4448,47,4,f +15765,4477,15,1,f +15765,4485,4,1,f +15765,6093,0,1,f +15765,6141,46,1,t +15765,6141,46,4,f +15765,73312,1,1,f +15765,970c00,4,2,f +15765,973c01,15,1,f +15765,973px18c01,15,1,f +15766,30374,70,1,f +15766,41879a,0,1,f +15766,4274,1,1,t +15766,4274,1,3,f +15766,4643673,9999,1,f +15766,4643674,9999,1,f +15766,4643675,9999,1,f +15766,4643676,9999,1,f +15766,4643677,9999,1,f +15766,54200,70,2,f +15766,54200,70,1,t +15766,59229,72,1,f +15766,60481,308,2,f +15766,92338,0,3,f +15766,92690,71,1,f +15766,92947,71,1,f +15766,973pr1888c01,0,1,f +15766,98136,297,1,f +15766,98141,85,2,f +15766,98145pr0002,0,1,f +15767,48379c01,72,1,f +15767,basketball01,9999,1,f +15767,basketball02r,14,1,f +15767,mcsport3,-1,1,f +15769,2780,0,5,f +15769,2907,71,1,f +15769,32062,0,1,f +15769,32174,72,7,f +15769,32270,71,1,f +15769,32482,288,1,f +15769,3706,0,1,f +15769,41669,36,2,f +15769,43093,1,3,f +15769,4519,71,4,f +15769,47296,72,2,f +15769,47299,179,2,f +15769,47306,288,1,f +15769,50899,179,1,f +15769,50899pr0002,179,1,f +15769,50900,72,1,f +15769,50901,72,1,f +15769,50903,14,1,f +15769,50919,179,2,f +15769,50920,288,2,f +15769,50921,288,1,f +15769,50922,288,1,f +15769,50923,72,1,f +15769,50925,288,1,f +15769,50926,179,1,f +15769,50933,288,1,f +15769,50935pat01,288,2,f +15770,14210,2,2,f +15770,2357,71,1,f +15770,2417,2,1,f +15770,2431,71,1,f +15770,2446,4,1,f +15770,2454a,0,2,f +15770,2456,72,3,f +15770,2462,71,1,f +15770,2488,70,1,f +15770,2587pb04,4,1,f +15770,3001,72,3,f +15770,3002,72,3,f +15770,3003,72,2,f +15770,3003,15,2,f +15770,3004,71,7,f +15770,3004,72,6,f +15770,3004,70,2,f +15770,3004,112,3,f +15770,30041,0,1,f +15770,30042,0,1,f +15770,3005,72,3,f +15770,3005,71,5,f +15770,3005,15,2,f +15770,3008,72,1,f +15770,3009,70,1,f +15770,3009,71,1,f +15770,30169,0,3,f +15770,30176,2,3,f +15770,3022,15,1,f +15770,3022,0,1,f +15770,30237a,15,2,f +15770,3028,2,2,f +15770,30293,70,1,f +15770,30294,70,1,f +15770,3032,71,1,f +15770,3040b,71,5,f +15770,30488c01,0,1,f +15770,3068b,71,2,f +15770,3176,0,2,f +15770,3245b,71,2,f +15770,3308,71,1,f +15770,3455,0,2,f +15770,3460,0,1,f +15770,3622,72,2,f +15770,3622,71,7,f +15770,3623,71,4,f +15770,3626bpb0217,14,1,f +15770,3626bpb0220,14,1,f +15770,3660,71,2,f +15770,3665,112,1,f +15770,3684,71,2,f +15770,3710,0,2,f +15770,3710,484,10,f +15770,3795,71,3,f +15770,3795,2,1,f +15770,3832,2,2,f +15770,3848,0,1,f +15770,3957a,15,2,f +15770,3958,2,1,f +15770,4085c,71,1,f +15770,4286,15,2,f +15770,4460b,15,2,f +15770,4490,71,2,f +15770,4495a,112,2,f +15770,4497,0,5,f +15770,4589,71,1,f +15770,4589,0,7,f +15770,48487,4,1,f +15770,48493,0,1,f +15770,48494pb04,151,1,f +15770,48495,137,1,f +15770,6019,0,11,f +15770,6082,70,1,f +15770,6126a,57,2,f +15770,62808,383,1,t +15770,62808,383,1,f +15770,6541,112,1,f +15770,6587,72,1,f +15770,970x154,0,1,f +15770,970x199,4,1,f +15770,973c34,4,1,f +15770,973pb0347c01,0,1,f +15770,kkc26,9999,1,t +15770,kkc56,9999,1,t +15770,kkc69,9999,1,t +15771,2335,0,1,f +15771,2357,15,10,f +15771,2412b,297,22,f +15771,2412b,14,2,f +15771,2419,0,4,f +15771,2420,19,4,f +15771,2431,14,4,f +15771,2431,0,2,f +15771,2432,15,2,f +15771,2444,15,2,f +15771,2445,0,7,f +15771,2453a,15,2,f +15771,2454a,15,2,f +15771,2540,19,1,f +15771,2555,15,2,f +15771,2723,0,1,f +15771,2780,0,1,t +15771,2780,0,10,f +15771,2877,72,2,f +15771,2877,15,14,f +15771,3002,15,1,f +15771,3003,15,1,f +15771,3009,15,4,f +15771,30145,15,5,f +15771,30173a,297,4,f +15771,3020,15,1,f +15771,3021,19,1,f +15771,3021,0,2,f +15771,3022,15,3,f +15771,3022,14,2,f +15771,3023,320,9,f +15771,3023,15,3,f +15771,3024,320,10,f +15771,30249,15,6,f +15771,30292,40,2,f +15771,3030,0,1,f +15771,3031,0,5,f +15771,3034,19,1,f +15771,30357,0,4,f +15771,30363,320,6,f +15771,30365,72,4,f +15771,30374,70,2,f +15771,3037b,0,2,f +15771,30383,14,2,f +15771,30389c,72,4,f +15771,30389c,0,4,f +15771,3045,15,4,f +15771,3049b,320,8,f +15771,3062b,36,2,f +15771,3062b,33,4,f +15771,3068b,0,2,f +15771,3068b,320,11,f +15771,3069b,15,1,f +15771,3069bpb078d,14,1,f +15771,32002,72,4,f +15771,32002,72,1,t +15771,32009,72,2,f +15771,32013,0,2,f +15771,32018,15,2,f +15771,32018,72,8,f +15771,32034,71,1,f +15771,32054,71,2,f +15771,32062,4,10,f +15771,32064b,320,19,f +15771,32123b,14,3,f +15771,32123b,14,2,t +15771,32174,0,1,f +15771,32192,0,12,f +15771,32199,4,2,f +15771,32270,0,2,f +15771,32556,71,2,f +15771,32558pat0001,4,2,f +15771,3622,15,2,f +15771,3622,14,2,f +15771,3623,15,2,f +15771,3626bpr0491,14,1,f +15771,3647,71,4,f +15771,3647,71,2,t +15771,3648b,71,1,f +15771,3649,71,2,f +15771,3666,19,1,f +15771,3700,14,2,f +15771,3705,0,14,f +15771,3706,0,3,f +15771,3707,0,4,f +15771,3709,0,2,f +15771,3710,320,7,f +15771,3710,0,4,f +15771,3713,4,2,t +15771,3713,4,6,f +15771,3738,0,2,f +15771,3794a,320,1,f +15771,3795,0,14,f +15771,3795,15,9,f +15771,3832,0,5,f +15771,3894,15,2,f +15771,3937,14,1,f +15771,3941,0,4,f +15771,3958,0,1,f +15771,40244,0,2,f +15771,4085c,0,4,f +15771,4150,15,2,f +15771,4151b,0,2,f +15771,4151b,19,2,f +15771,4162,15,4,f +15771,42022,14,2,f +15771,42022,0,2,f +15771,4274,1,4,f +15771,4274,71,2,t +15771,4274,71,8,f +15771,4274,1,1,t +15771,4286,14,2,f +15771,4287,15,2,f +15771,43093,1,7,f +15771,4345b,0,1,f +15771,4346,47,1,f +15771,43708,320,12,f +15771,44302a,14,2,f +15771,44728,0,2,f +15771,4476b,15,6,f +15771,4519,71,2,f +15771,4588,72,2,f +15771,4589,36,6,f +15771,4589,42,2,f +15771,47757,0,2,f +15771,4865a,15,2,f +15771,48729a,72,2,f +15771,50923,72,1,f +15771,50943,71,1,f +15771,50955,0,1,f +15771,50956,0,1,f +15771,50967,14,2,f +15771,53981,0,1,f +15771,53983pat0001,0,2,f +15771,53984,135,2,f +15771,53988,135,1,f +15771,53989,135,2,f +15771,54200,14,4,f +15771,57028c01,4,3,f +15771,57796,0,3,f +15771,57906,297,4,f +15771,6005,0,16,f +15771,6019,15,4,f +15771,6106,0,2,f +15771,6134,0,1,f +15771,6141,71,8,f +15771,6141,33,6,f +15771,6141,33,2,t +15771,6141,71,1,t +15771,6536,0,2,f +15771,6538b,14,3,f +15771,6538b,4,4,f +15771,6538b,0,2,f +15771,6541,15,4,f +15771,6553,0,10,f +15771,6587,72,2,f +15771,6636,15,2,f +15771,6636,0,3,f +15771,8107stk01,9999,1,t +15771,970c00,0,1,f +15771,973pr1312c01,85,1,f +15772,2470,6,2,f +15772,2540,4,1,f +15772,2555,4,1,f +15772,2586p4g,7,1,f +15772,3023,4,2,f +15772,3626bpx73,14,1,f +15772,3794a,7,1,f +15772,3795,0,2,f +15772,3839b,4,1,f +15772,3847,8,1,f +15772,4070,0,2,f +15772,4085c,7,2,f +15772,4497,6,1,f +15772,4600,7,1,f +15772,6122,0,1,f +15772,6126a,57,2,f +15772,970c00pb015,0,1,f +15772,973px120c01,0,1,f +15774,11090,297,1,f +15774,30173b,0,1,f +15774,30173b,179,1,f +15774,3626bpr0744,14,1,f +15774,970c00,4,1,f +15774,973pr2476c01,4,1,f +15774,98132,297,1,f +15774,98133,4,1,f +15774,98141,297,1,f +15777,2817,0,3,f +15777,3032,15,1,f +15777,3034,71,1,f +15777,3039,71,1,f +15777,3062b,19,4,f +15777,32530,0,2,f +15777,32556,71,1,f +15777,3673,71,1,t +15777,3673,71,1,f +15777,3706,0,2,f +15777,3794a,71,2,f +15777,47576,70,4,f +15777,48492,73,1,f +15777,48723,70,1,f +15777,6019,0,1,t +15777,6019,0,1,f +15777,6231,0,2,f +15779,12825,71,2,f +15779,2420,72,5,f +15779,2431,14,2,f +15779,2431,288,13,f +15779,2432,71,1,f +15779,2436,0,1,f +15779,2444,72,4,f +15779,2445,0,1,f +15779,2449,288,2,f +15779,2456,4,1,f +15779,2526,0,1,f +15779,2570,148,1,f +15779,2653,71,4,f +15779,2780,0,7,f +15779,3001,71,1,f +15779,3002,71,2,f +15779,3003,72,2,f +15779,3004,72,3,f +15779,3005,288,4,f +15779,3008,71,2,f +15779,3020,71,2,f +15779,3020,72,2,f +15779,3021,72,5,f +15779,3022,19,5,f +15779,3023,71,7,f +15779,3024,33,1,f +15779,3024,47,2,f +15779,3030,72,1,f +15779,3031,72,1,f +15779,3032,71,1,f +15779,3034,72,2,f +15779,3035,14,1,f +15779,30350b,72,1,f +15779,30375,0,1,f +15779,30376,0,1,f +15779,30377,0,1,t +15779,30377,0,1,f +15779,3040b,288,2,f +15779,30414,72,1,f +15779,3068b,288,5,f +15779,3068bpr0166,71,1,f +15779,3069b,14,2,f +15779,3069b,72,1,f +15779,32000,4,3,f +15779,32013,71,4,f +15779,32028,72,2,f +15779,32059,72,2,f +15779,32062,4,1,f +15779,32064b,0,4,f +15779,32140,71,2,f +15779,32523,4,1,f +15779,3623,71,2,f +15779,3626bpr0783,378,1,f +15779,3626bpr0784,15,1,f +15779,3626bpr0785,78,1,f +15779,3660,72,2,f +15779,3666,14,2,f +15779,3666,288,4,f +15779,37,72,2,f +15779,3700,71,2,f +15779,3705,0,2,f +15779,3706,0,1,f +15779,3707,0,2,f +15779,3710,71,5,f +15779,3713,4,5,f +15779,3713,4,1,t +15779,3795,72,2,f +15779,3941,46,4,f +15779,3942c,72,2,f +15779,3957a,71,2,f +15779,3958,72,1,f +15779,4032a,14,5,f +15779,41531,14,2,f +15779,41677,1,2,f +15779,41677,72,2,f +15779,41747,288,1,f +15779,41748,288,1,f +15779,41751,72,1,f +15779,41767,72,3,f +15779,41768,72,3,f +15779,42022,288,2,f +15779,42023,72,8,f +15779,4286,72,2,f +15779,43093,1,4,f +15779,43898pr02,72,1,f +15779,44126,72,1,f +15779,44301a,4,4,f +15779,44302a,14,4,f +15779,44676,72,8,f +15779,44728,0,3,f +15779,4477,14,2,f +15779,4510,19,2,f +15779,4519,71,2,f +15779,45301,72,1,f +15779,47397,288,2,f +15779,47398,288,2,f +15779,4742,72,2,f +15779,47994,0,1,f +15779,48336,71,1,f +15779,48723,72,2,f +15779,48729a,0,1,f +15779,48729b,0,4,f +15779,48729b,0,1,t +15779,50304,288,2,f +15779,50305,288,2,f +15779,50950,288,8,f +15779,52031,288,4,f +15779,54200,288,8,f +15779,54200,36,1,t +15779,54200,288,2,t +15779,54200,36,2,f +15779,55013,72,2,f +15779,57899,0,1,f +15779,58247,0,1,f +15779,59230,0,1,f +15779,59230,0,1,t +15779,59443,70,5,f +15779,59443,14,1,f +15779,59900,0,1,f +15779,60208,72,4,f +15779,60474,72,4,f +15779,60474,14,2,f +15779,60478,72,6,f +15779,60478,14,8,f +15779,60483,71,1,f +15779,60594,72,1,f +15779,60849,0,2,f +15779,6091,288,6,f +15779,61409,72,2,f +15779,6141,36,1,t +15779,6141,182,1,t +15779,6141,182,7,f +15779,6141,0,1,f +15779,6141,0,1,t +15779,6141,36,8,f +15779,61780,72,1,f +15779,62113,0,1,f +15779,62360,47,1,f +15779,63864,71,2,f +15779,64644,0,6,f +15779,6541,71,5,f +15779,6558,1,2,f +15779,6564,71,1,f +15779,6565,71,1,f +15779,6587,28,4,f +15779,6632,14,4,f +15779,85080,288,4,f +15779,85941,288,4,f +15779,85984,0,1,f +15779,85984,14,1,f +15779,87081,72,2,f +15779,87087,72,2,f +15779,87572,70,1,f +15779,92593,72,2,f +15779,92738,0,2,f +15779,970c04pr0205,25,1,f +15779,970c88pr0204,70,1,f +15779,970x194,72,1,f +15779,973pr1743c01,0,1,f +15779,973pr1744c01,25,1,f +15779,973pr1745c01,320,1,f +15782,2339,71,4,f +15782,2420,72,2,f +15782,2431,379,1,f +15782,2566,0,3,f +15782,2586pr0002,71,1,f +15782,3003,71,6,f +15782,3004,71,8,f +15782,3005,70,4,f +15782,3005,71,4,f +15782,3005,72,2,f +15782,3006,71,1,f +15782,3009,71,3,f +15782,3010,72,3,f +15782,30104,0,2,f +15782,30165,0,2,f +15782,3022,72,3,f +15782,3023,0,4,f +15782,30237a,72,7,f +15782,30246,0,1,f +15782,3027,0,3,f +15782,3030,288,3,f +15782,3031,72,2,f +15782,3034,72,2,f +15782,3035,72,1,f +15782,30350b,72,4,f +15782,3036,0,1,f +15782,30374,70,1,f +15782,3039,72,6,f +15782,3040b,71,2,f +15782,3040b,72,1,f +15782,3048c,297,6,f +15782,32000,71,6,f +15782,32039,71,1,f +15782,32062,0,3,f +15782,32073,71,1,f +15782,32123b,71,1,t +15782,32123b,71,6,f +15782,3245b,71,6,f +15782,32530,72,2,f +15782,3307,71,2,f +15782,3308,72,1,f +15782,3455,71,2,f +15782,3622,71,2,f +15782,3623,70,6,f +15782,3647,71,1,t +15782,3647,71,2,f +15782,3659,72,2,f +15782,3665,72,4,f +15782,3666,70,1,f +15782,3666,72,1,f +15782,3673,71,1,t +15782,3673,71,2,f +15782,3688,379,4,f +15782,3700,0,4,f +15782,3702,0,2,f +15782,3706,0,2,f +15782,3710,72,1,f +15782,3713,71,2,f +15782,3713,71,1,t +15782,3737,0,2,f +15782,3743,71,1,f +15782,3747b,72,4,f +15782,3795,0,3,f +15782,3846pr22,297,1,f +15782,3848,0,1,f +15782,41669,297,4,f +15782,4185,70,4,f +15782,42003,71,1,f +15782,42448,0,2,f +15782,4274,71,2,f +15782,4274,71,1,t +15782,4287,71,2,f +15782,43899,72,1,f +15782,4495b,2,1,f +15782,4495b,4,1,f +15782,4497,0,1,f +15782,4589,70,1,f +15782,47847pat0003,135,4,f +15782,48336,0,4,f +15782,48723,70,1,f +15782,49668,135,6,f +15782,53451,15,1,t +15782,53451,15,4,f +15782,53457,135,2,f +15782,54170,75,1,f +15782,54178,135,2,f +15782,59426,72,1,f +15782,6066,71,2,f +15782,6108,71,2,f +15782,6111,72,3,f +15782,6112,70,1,f +15782,6126a,57,2,f +15782,6538b,72,2,f +15782,6541,0,4,f +15782,6553,0,2,f +15782,6558,0,1,f +15784,2039,110,1,f +15784,2357,74,1,f +15784,2873,74,1,f +15784,3004,74,1,f +15784,3005,74,2,f +15784,3010,20,1,f +15784,30151a,47,1,f +15784,30152pat0001,52,1,f +15784,30153,47,2,f +15784,30153,36,4,f +15784,30153,34,2,f +15784,30153,46,1,f +15784,30153,33,1,f +15784,30153,57,1,f +15784,3021,110,2,f +15784,30374,15,2,f +15784,3062b,15,4,f +15784,3068bpx17,15,1,f +15784,33051,4,2,f +15784,33061,47,1,f +15784,33213,18,1,f +15784,33215,129,1,f +15784,33217,52,1,f +15784,33229,110,1,f +15784,33240,18,1,f +15784,33320,34,1,f +15784,33322,34,1,t +15784,33322,36,1,f +15784,33322,34,1,f +15784,33322,36,1,t +15784,3794a,15,2,f +15784,3942c,18,2,f +15784,3956,4,1,f +15784,3957a,15,1,f +15784,4032a,15,1,f +15784,4201,20,1,f +15784,4315,74,1,f +15784,4429,34,1,f +15784,4460b,15,2,f +15784,4495b,4,1,f +15784,4589,42,1,f +15784,4589,46,2,f +15784,4599a,15,2,f +15784,4738a,47,1,f +15784,4739a,47,1,f +15784,4740,383,2,f +15784,4865a,15,2,f +15784,6162,20,1,f +15784,6179,4,1,f +15784,6182,15,5,f +15784,6201px1,0,1,f +15784,6231,15,4,f +15784,6942,34,1,f +15784,xleash3,4,1,f +15785,3001a,4,21,f +15786,12694,73,1,f +15786,3437,1,1,f +15786,62941pr0008,4,1,f +15787,2446,1,1,f +15787,30090,41,1,f +15787,30091,25,1,f +15787,3626bpb0426,14,1,f +15787,59275,25,2,f +15787,88646,0,1,f +15787,970x106,1,1,f +15787,973pr1538c01,1,1,f +15790,12897,27,1,f +15790,3626bpr1175,14,1,f +15790,46303,27,1,f +15790,88646,0,1,f +15790,970c153pr0492,321,1,f +15790,973pr2326c01,321,1,f +15791,3005,1,2,f +15791,3010,1,11,f +15791,3010,14,2,f +15791,3021,14,1,f +15791,3024,1,1,f +15791,3069bpr0099,15,3,f +15791,3081cc01,14,1,f +15791,3298,0,3,f +15791,3460,1,1,f +15791,3622,14,1,f +15791,3622,1,2,f +15791,3623,1,1,f +15791,3623,14,1,f +15791,3624,0,1,f +15791,3626apr0001,14,2,f +15791,3675,0,4,f +15791,3710,1,1,f +15791,3865,7,1,f +15791,4161,0,2,f +15791,4345ap03,14,1,f +15791,4346p03,14,1,f +15791,4530,6,1,f +15791,4719,4,1,f +15791,6141,47,2,f +15791,6689stk01,9999,1,t +15791,73194c01,14,1,f +15791,92851,47,2,f +15791,970c00,0,1,f +15791,970c00,1,1,f +15791,973pb0035c01,4,1,f +15791,973px62c02,15,1,f +15792,2362a,47,1,f +15792,2412b,15,1,f +15792,2412b,72,13,f +15792,2431,72,1,f +15792,2437,40,1,f +15792,2447,40,1,t +15792,2447,40,1,f +15792,2454a,4,14,f +15792,2456,0,2,f +15792,2460,15,1,f +15792,2486,15,2,f +15792,2569,0,2,f +15792,2569,0,1,t +15792,3003,15,2,f +15792,3004,4,7,f +15792,3004,15,3,f +15792,3006,0,5,f +15792,3007,4,1,f +15792,3008,4,4,f +15792,3009,15,1,f +15792,3009,0,3,f +15792,3010,0,4,f +15792,30145,4,4,f +15792,30162,72,2,f +15792,30179,0,1,f +15792,30181,0,1,f +15792,30194,72,1,f +15792,3020,0,1,f +15792,3020,72,2,f +15792,3020,4,5,f +15792,3022,72,2,f +15792,3022,15,4,f +15792,3023,4,2,f +15792,3023,46,2,f +15792,30237a,4,2,f +15792,30237a,71,2,f +15792,3024,4,2,f +15792,30365,0,1,f +15792,3039pr0001,15,1,f +15792,3039pr0002,15,1,f +15792,3039pr0005,15,1,f +15792,30400,0,1,f +15792,3040b,33,2,f +15792,3040bpr0003,71,1,f +15792,30553,71,1,f +15792,3062b,14,2,f +15792,3062b,34,1,f +15792,3062b,36,2,f +15792,3068bpb0074,4,1,f +15792,3069bp02,71,1,f +15792,3069bp80,15,1,f +15792,3070b,14,1,t +15792,3070b,14,1,f +15792,32028,0,1,f +15792,32039,0,1,f +15792,32064b,71,1,f +15792,3455,4,1,f +15792,3626bpb0196,14,1,f +15792,3626bpr0325,14,1,f +15792,3626bpr0387,14,1,f +15792,3701,4,2,f +15792,3706,0,1,f +15792,3754,4,1,f +15792,3754,40,1,f +15792,3794a,4,1,f +15792,3829c01,14,1,f +15792,3834,15,3,f +15792,3835,0,3,f +15792,3837,0,1,f +15792,3838,14,2,f +15792,3846,14,2,f +15792,3867,72,1,f +15792,3957a,15,1,f +15792,3959,71,1,f +15792,3962b,0,2,f +15792,3963,15,1,f +15792,4070,4,4,f +15792,4079,15,1,f +15792,4083,15,1,f +15792,4085c,4,8,f +15792,41532,0,2,f +15792,42022,15,2,f +15792,4207,15,1,f +15792,4286,0,2,f +15792,43337,4,4,f +15792,4349,72,1,f +15792,4360,0,1,f +15792,43857,14,1,f +15792,43898,15,1,f +15792,44301a,15,1,f +15792,44728,72,2,f +15792,4533,15,2,f +15792,45677px1,4,1,f +15792,4599a,14,2,f +15792,4740,36,1,f +15792,4865a,4,3,f +15792,4865a,40,1,f +15792,4872,40,2,f +15792,50450,14,1,f +15792,50745,72,4,f +15792,51595,72,1,f +15792,51858,15,1,f +15792,52036,72,1,f +15792,52038,72,2,f +15792,52501,4,2,f +15792,54200,36,2,f +15792,54200,33,6,f +15792,54200,46,6,f +15792,57894,0,2,f +15792,57895,40,2,f +15792,58181,40,5,f +15792,6014b,15,4,f +15792,6015,0,4,f +15792,6020,0,1,f +15792,6111,0,3,f +15792,6112,4,4,f +15792,6117,72,1,f +15792,6157,0,2,f +15792,6158,72,1,f +15792,6212,0,1,f +15792,6232,4,2,f +15792,6936,71,1,f +15792,7240stk01,9999,1,t +15792,75535,0,1,f +15792,76041c02,0,1,f +15792,92410,4,2,f +15792,970c00,0,3,f +15792,973pr1187c01,0,1,f +15792,973pr1667c01,0,2,f +15793,2421,0,2,f +15793,2456,4,1,f +15793,2456,14,1,f +15793,2456,15,2,f +15793,2456,1,2,f +15793,2877,72,4,f +15793,3001,14,7,f +15793,3001,71,3,f +15793,3001,2,2,f +15793,3001,70,3,f +15793,3001,4,7,f +15793,3001,27,3,f +15793,3001,0,2,f +15793,3001,1,7,f +15793,3001,15,7,f +15793,3001,25,3,f +15793,3002,0,3,f +15793,3002,1,6,f +15793,3002,15,6,f +15793,3002,2,3,f +15793,3002,14,6,f +15793,3002,4,6,f +15793,3003,0,6,f +15793,3003,71,12,f +15793,3003,14,18,f +15793,3003,1,18,f +15793,3003,70,12,f +15793,3003,15,18,f +15793,3003,25,12,f +15793,3003,2,6,f +15793,3003,27,12,f +15793,3003,4,18,f +15793,3004,15,12,f +15793,3004,0,6,f +15793,3004,25,5,f +15793,3004,27,5,f +15793,3004,1,12,f +15793,3004,4,12,f +15793,3004,71,5,f +15793,3004,14,12,f +15793,3004,2,6,f +15793,3004,70,5,f +15793,3005,1,8,f +15793,3005,4,8,f +15793,3005,15,8,f +15793,3005,2,4,f +15793,3005,0,4,f +15793,3005,14,8,f +15793,3005pe1,15,10,f +15793,3007,14,1,f +15793,3007,1,1,f +15793,3007,4,1,f +15793,3007,15,1,f +15793,3008,14,1,f +15793,3008,1,2,f +15793,3008,15,2,f +15793,3008,4,1,f +15793,3009,4,2,f +15793,3009,1,3,f +15793,3009,14,2,f +15793,3009,15,3,f +15793,3010,70,4,f +15793,3010,0,2,f +15793,3010,1,5,f +15793,3010,2,2,f +15793,3010,15,5,f +15793,3010,71,4,f +15793,3010,14,5,f +15793,3010,4,5,f +15793,3010,25,4,f +15793,3010,27,4,f +15793,3020,14,2,f +15793,3020,15,2,f +15793,3020,1,2,f +15793,3020,71,2,f +15793,3020,4,2,f +15793,3021,71,2,f +15793,3022,14,4,f +15793,3022,1,4,f +15793,3022,4,4,f +15793,3022,15,4,f +15793,3029,2,2,f +15793,3034,71,4,f +15793,3034,14,2,f +15793,3037,0,6,f +15793,3039,47,4,f +15793,3039,0,8,f +15793,3040b,0,8,f +15793,3062b,72,4,f +15793,3065,36,2,f +15793,3065,47,4,f +15793,3065,33,2,f +15793,3297,4,4,f +15793,3298,4,6,f +15793,3298,1,4,f +15793,33303,15,2,f +15793,3455,15,2,f +15793,3622,15,4,f +15793,3622,14,4,f +15793,3622,4,4,f +15793,3622,0,2,f +15793,3622,1,4,f +15793,3622,2,2,f +15793,3659,15,4,f +15793,3659,71,6,f +15793,3660,14,4,f +15793,3660,71,2,f +15793,3660,70,4,f +15793,3710,14,4,f +15793,3710,4,4,f +15793,3710,15,4,f +15793,3710,1,2,f +15793,3747b,1,2,f +15793,3795,4,2,f +15793,3823,47,2,f +15793,3957a,0,2,f +15793,4070,15,4,f +15793,4083,0,2,f +15793,42022,14,4,f +15793,4286,4,8,f +15793,4488,0,2,f +15793,4600,71,2,f +15793,4624,71,4,f +15793,4624,71,1,t +15793,4727,10,4,f +15793,4728,4,4,f +15793,55295,0,1,f +15793,55296,0,1,f +15793,55297,0,1,f +15793,55298,0,1,f +15793,55299,0,1,f +15793,55300,0,1,f +15793,6014b,15,4,f +15793,60598,4,2,f +15793,60599,15,1,f +15793,60608,14,4,f +15793,60623,14,1,f +15793,6141,33,1,t +15793,6141,46,1,t +15793,6141,34,4,f +15793,6141,46,4,f +15793,6141,36,6,f +15793,6141,34,1,t +15793,6141,33,4,f +15793,6141,36,1,t +15793,6157,0,2,f +15793,6215,0,2,f +15793,6215,2,2,f +15793,87414,0,4,f +15793,87697,0,4,f +15794,10039,0,1,f +15794,11002,0,1,f +15794,2431,15,1,f +15794,2436,14,1,f +15794,3005,15,2,f +15794,3010,15,1,f +15794,30192stk01,9999,1,t +15794,3020,14,1,f +15794,3020,0,1,f +15794,3022,1,1,f +15794,3023,0,1,f +15794,3023,14,2,f +15794,3024,15,1,t +15794,3024,15,4,f +15794,3034,72,1,f +15794,3069b,15,2,f +15794,3069b,4,2,f +15794,3297,15,1,f +15794,50951,0,4,f +15794,51739,15,1,f +15794,54200,15,2,f +15794,54200,14,2,f +15794,54200,15,1,t +15794,54200,14,1,t +15794,60212,15,1,f +15794,61409,0,2,f +15794,6141,0,2,f +15794,6141,36,1,t +15794,6141,36,2,f +15794,6141,0,1,t +15794,6231,14,2,f +15794,93274,14,1,f +15794,93595,0,4,f +15794,98835pr0004,15,1,f +15797,11477,0,1,f +15797,15712,0,4,f +15797,30173b,0,1,f +15797,3024,0,2,f +15797,3070b,0,1,f +15797,3623,0,1,f +15797,3666,0,1,f +15797,4081b,0,4,f +15797,4733,0,2,f +15797,47905,0,1,f +15797,53451,179,2,f +15797,54200,0,1,f +15797,54200,72,4,f +15797,59900,0,1,f +15797,6133,0,2,f +15797,6141,36,1,f +15799,3003,14,1,f +15799,3004,4,2,f +15799,3004,0,1,f +15799,3004p0b,14,1,f +15799,3010,4,1,f +15799,3021,72,1,f +15799,3022,4,1,f +15799,3022,71,1,f +15799,3039,4,3,f +15799,3665,4,1,f +15799,6141,15,1,f +15799,6141,15,4,t +15802,10201,4,3,f +15802,11477,4,13,f +15802,14417,72,6,f +15802,14418,71,6,f +15802,14704,71,1,f +15802,15208,15,3,f +15802,15573,4,7,f +15802,15712,320,8,f +15802,15712,15,2,f +15802,2450,320,8,f +15802,3003,71,1,f +15802,3004,4,2,f +15802,3005,4,2,f +15802,3020,320,6,f +15802,3020,19,3,f +15802,3021,4,8,f +15802,3022,19,2,f +15802,3022,4,4,f +15802,3023,320,9,f +15802,3024,320,1,t +15802,3024,320,2,f +15802,30383,72,4,f +15802,3068b,320,3,f +15802,3070b,4,2,f +15802,3070b,4,1,t +15802,3623,19,4,f +15802,3623,4,3,f +15802,3660,19,2,f +15802,3747b,19,3,f +15802,4081b,4,5,f +15802,41769,320,1,f +15802,41770,320,1,f +15802,4287,4,2,f +15802,43719,4,1,f +15802,43722,4,3,f +15802,43723,4,3,f +15802,44301a,4,8,f +15802,44302a,72,12,f +15802,44674,4,1,f +15802,48336,4,3,f +15802,50950,4,4,f +15802,51739,320,3,f +15802,53451,0,1,t +15802,53451,0,12,f +15802,54200,0,1,t +15802,54200,0,11,f +15802,54383,320,3,f +15802,54384,320,3,f +15802,57909b,72,2,f +15802,58176,35,2,f +15802,60470b,0,3,f +15802,60478,71,2,f +15802,60897,4,4,f +15802,61252,72,2,f +15802,6126b,182,2,f +15802,85984,4,3,f +15802,87747,0,1,t +15802,87747,0,4,f +15802,92013,4,2,f +15802,99207,0,2,f +15803,22667,5,2,t +15803,22667,5,2,f +15803,3005,34,1,f +15803,3005,45,1,f +15803,3005,46,1,f +15803,30218,17,1,f +15803,30222,45,1,f +15803,3031,25,1,f +15803,3065,41,1,f +15803,33007,5,1,f +15803,33085,14,1,f +15803,33121,4,1,f +15803,33291,41,2,t +15803,33291,41,1,f +15803,3899,45,2,f +15803,6186,11,1,f +15803,6186,118,1,f +15805,2341,7,2,f +15805,2412b,7,5,f +15805,2412b,1,2,f +15805,2419,0,1,f +15805,2420,7,2,f +15805,2420,1,6,f +15805,2420,0,4,f +15805,2431,1,7,f +15805,2431,0,2,f +15805,2486,7,1,f +15805,2540,7,4,f +15805,2540,1,1,f +15805,2540,0,2,f +15805,2555,7,2,f +15805,2569,7,1,f +15805,2695,7,6,f +15805,2696,0,6,f +15805,2719,7,3,f +15805,2819,7,1,f +15805,298c03,7,3,f +15805,298c03,7,1,t +15805,3003,0,1,f +15805,3004,0,1,f +15805,3005,0,2,f +15805,3007,0,1,f +15805,3009,0,2,f +15805,3009,1,2,f +15805,3010,7,1,f +15805,3010,0,1,f +15805,3020,7,5,f +15805,3020,0,1,f +15805,3020,1,10,f +15805,3021,0,3,f +15805,3021,1,2,f +15805,3021,7,3,f +15805,3022,0,1,f +15805,3023,4,4,f +15805,3023,7,3,f +15805,3023,1,16,f +15805,3023,0,6,f +15805,3024,1,11,f +15805,3024,4,2,f +15805,3032,0,1,f +15805,3034,1,1,f +15805,3034,4,1,f +15805,3034,0,1,f +15805,3035,0,2,f +15805,3036,7,1,f +15805,3039pc4,0,1,f +15805,3040b,4,2,f +15805,3040b,0,1,f +15805,3040p33,0,1,f +15805,3062b,7,2,f +15805,3063b,1,6,f +15805,3063b,4,2,f +15805,3068b,7,2,f +15805,3069b,1,3,f +15805,3069b,0,4,f +15805,3070b,1,6,f +15805,3070b,1,1,t +15805,3070b,0,1,t +15805,3070b,0,2,f +15805,3460,1,2,f +15805,3460,0,2,f +15805,3622,0,3,f +15805,3622,7,4,f +15805,3623,1,3,f +15805,3623,7,2,f +15805,3623,0,5,f +15805,3623,4,2,f +15805,3647,7,1,f +15805,3647,7,1,t +15805,3665,1,2,f +15805,3666,0,8,f +15805,3666,7,2,f +15805,3673,7,2,f +15805,3678a,4,2,f +15805,3700,0,4,f +15805,3700,7,2,f +15805,3701,0,2,f +15805,3705,0,1,f +15805,3706,0,3,f +15805,3710,4,4,f +15805,3710,0,4,f +15805,3710,1,4,f +15805,3713,7,2,f +15805,3743,7,1,f +15805,3749,7,3,f +15805,3794a,4,2,f +15805,3794a,7,2,f +15805,3794a,1,1,f +15805,3795,1,2,f +15805,3795,0,3,f +15805,3832,0,2,f +15805,3937,0,1,f +15805,3937,7,3,f +15805,3938,0,1,f +15805,3938,7,1,f +15805,3957a,7,4,f +15805,4032a,0,1,f +15805,4070,1,6,f +15805,4081b,7,2,f +15805,4081b,1,8,f +15805,4085c,7,2,f +15805,4085c,1,1,f +15805,4150,7,1,f +15805,4175,7,2,f +15805,4261,7,2,f +15805,4262,7,3,f +15805,4265b,7,1,t +15805,4265b,7,2,f +15805,4274,7,1,t +15805,4274,7,4,f +15805,4282,0,2,f +15805,4286,4,2,f +15805,4287,0,4,f +15805,4287,1,2,f +15805,4315,1,1,f +15805,4349,7,2,f +15805,4477,0,1,f +15805,4623,7,2,f +15805,4857,1,1,f +15805,4865a,4,2,f +15805,5541stk01,9999,1,t +15805,6005,1,10,f +15805,6019,0,4,f +15805,6019,7,4,f +15805,6091,4,4,f +15805,6091,1,10,f +15805,6091,0,2,f +15805,6134,4,2,f +15805,6140,7,2,f +15805,6141,7,1,t +15805,6141,0,1,t +15805,6141,46,1,t +15805,6141,36,4,f +15805,6141,46,4,f +15805,6141,7,20,f +15805,6141,36,1,t +15805,6141,0,11,f +15805,6180,4,1,f +15805,6541,7,2,f +15805,6541,0,1,f +15805,6541,1,2,f +15805,6589,7,1,f +15805,71075,383,6,f +15805,71076,383,4,f +15805,71128,383,2,f +15805,9244,7,1,f +15806,132a,0,4,f +15806,3035,4,1,f +15806,3297mia,47,6,f +15806,3298mia,4,4,f +15806,carbasemia,7,1,f +15806,m3001,4,2,f +15806,m3001,14,23,f +15806,m3001,47,2,f +15806,m3003,47,2,f +15806,m3003,14,2,f +15807,210,2,2,f +15807,3001,7,4,f +15807,3002a,7,6,f +15807,3003,0,6,f +15807,3003,7,16,f +15807,3004,7,89,f +15807,3004,15,2,f +15807,3004,0,10,f +15807,3005,7,86,f +15807,3009,7,23,f +15807,3010,7,11,f +15807,3020,7,4,f +15807,3021,0,3,f +15807,3021,7,8,f +15807,3022,7,5,f +15807,3023,0,4,f +15807,3023,15,2,f +15807,3023,7,5,f +15807,3024,7,9,f +15807,3024,0,11,f +15807,3030,7,2,f +15807,3031,7,2,f +15807,3032,0,1,f +15807,3033,0,1,f +15807,3035,7,2,f +15807,3039,7,1,f +15807,3040b,7,15,f +15807,3062b,7,34,f +15807,3068b,0,3,f +15807,3308,7,1,f +15807,3460,7,3,f +15807,3581,7,1,f +15807,3622,7,25,f +15807,3623,7,4,f +15807,3623,0,10,f +15807,3626apr0001,14,12,f +15807,3644,0,1,f +15807,3660,0,15,f +15807,3660,7,3,f +15807,3665,0,6,f +15807,3665,7,15,f +15807,3666,0,2,f +15807,3666,7,4,f +15807,3673,7,3,f +15807,3676,0,4,f +15807,3684,7,2,f +15807,3700,7,5,f +15807,3700,0,2,f +15807,3710,0,5,f +15807,3710,7,6,f +15807,3747a,7,2,f +15807,3830,7,2,f +15807,3830,0,2,f +15807,3831,7,2,f +15807,3831,0,2,f +15807,3832,7,3,f +15807,3844,8,4,f +15807,3846p4g,7,4,f +15807,3846p4h,7,4,f +15807,3847a,8,7,f +15807,3848,0,4,f +15807,3849,6,4,f +15807,3849,8,2,f +15807,3857,2,1,f +15807,3896,0,4,f +15807,3957a,0,4,f +15807,3958,7,2,f +15807,4070,7,4,f +15807,4081a,0,3,f +15807,4085a,7,7,f +15807,4162,0,1,f +15807,4282,7,2,f +15807,4287,7,2,f +15807,4444,7,25,f +15807,4444p01,7,2,f +15807,4444p02,7,3,f +15807,4460a,7,1,f +15807,4477,7,1,f +15807,4477,0,2,f +15807,4490,7,4,f +15807,4491a,0,1,f +15807,4491a,4,1,f +15807,4491a,14,1,f +15807,4491a,15,1,f +15807,4493c01pb02,0,2,f +15807,4495a,14,7,f +15807,4495a,4,6,f +15807,4497,6,4,f +15807,4498,6,4,f +15807,4499,6,4,f +15807,4503,8,4,f +15807,4524,1,4,f +15807,4623,7,1,f +15807,56823c30,0,1,f +15807,56823c75,0,1,f +15807,73037,7,1,f +15807,75998pr0007,15,2,f +15807,87692,1,1,f +15807,87692,4,1,f +15807,87692,15,1,f +15807,87692,14,1,f +15807,87693,15,1,t +15807,87693,4,1,t +15807,87693,1,1,t +15807,87693,14,1,t +15807,87694,15,1,t +15807,87694,4,1,t +15807,87694,14,1,t +15807,87694,1,1,t +15807,970x026,4,6,f +15807,970x026,1,6,f +15807,973p40c01,4,2,f +15807,973p40c03,4,2,f +15807,973p42c01,4,4,f +15807,973px138c01,4,4,f +15808,3062a,14,2,f +15808,x878cx1,1,1,f +15808,x879cx1,1,1,f +15810,2555,72,1,f +15810,2780,0,1,t +15810,2780,0,7,f +15810,2877,71,4,f +15810,3001,27,6,f +15810,3003,1,1,f +15810,30031,0,1,f +15810,3004,27,1,f +15810,3020,1,3,f +15810,3021,0,5,f +15810,3022,27,2,f +15810,3023,27,2,f +15810,30325,80,1,f +15810,30374,0,1,f +15810,30385,182,1,f +15810,3039,27,4,f +15810,32013,1,2,f +15810,32034,1,2,f +15810,32062,4,5,f +15810,32064b,71,4,f +15810,32192,72,2,f +15810,32316,27,1,f +15810,32524,71,1,f +15810,32526,1,1,f +15810,32556,19,1,f +15810,3626bpr0561,14,1,f +15810,3648b,72,1,f +15810,3673,71,1,t +15810,3673,71,6,f +15810,3701,1,2,f +15810,3710,27,2,f +15810,3747b,72,1,f +15810,3794b,1,1,f +15810,3795,71,1,f +15810,3941,1,1,f +15810,40490,1,2,f +15810,4081b,27,2,f +15810,41678,71,1,f +15810,42003,71,1,f +15810,4274,1,1,t +15810,4274,1,2,f +15810,4519,71,4,f +15810,47455,0,4,f +15810,48170,72,4,f +15810,48172,0,2,f +15810,4854,0,1,f +15810,4865a,71,2,f +15810,4868b,71,2,f +15810,4871,0,1,f +15810,48933,1,1,f +15810,50745,27,2,f +15810,53989,0,2,f +15810,54200,182,8,f +15810,54200,182,1,t +15810,57539,135,1,f +15810,57909a,72,2,f +15810,58176,182,1,f +15810,59443,14,1,f +15810,59900,1,3,f +15810,60208,1,1,f +15810,60470a,71,2,f +15810,61184,71,2,f +15810,6126a,41,1,f +15810,61409,27,6,f +15810,6141,27,3,f +15810,6141,47,1,t +15810,6141,47,4,f +15810,6141,27,1,t +15810,6153b,27,2,f +15810,61795,135,2,f +15810,62712,72,2,f +15810,63864,27,6,f +15810,63868,71,2,f +15810,64713,1,1,f +15810,64783,0,2,f +15810,64784pat02,182,1,f +15810,6541,1,2,f +15810,6558,1,2,f +15810,6587,28,1,f +15810,8189stk01,9999,1,t +15810,85940,0,4,f +15810,85961,80,1,f +15810,86500,33,1,f +15810,87079,71,2,f +15810,87081,1,1,f +15810,87083,72,1,f +15810,87087,71,2,f +15810,87580,72,1,f +15810,87777,80,1,f +15810,87780,182,1,f +15810,88323,80,2,f +15810,970c00pr0149a,71,1,f +15810,973pr1581c01,71,1,f +15811,3002,15,1,f +15811,3003,15,1,f +15811,3004,15,2,f +15811,3021,0,1,f +15811,3039,4,1,f +15811,3040b,4,1,f +15811,3065,36,1,f +15811,3794a,4,1,t +15811,3794a,4,1,f +15811,6124,34,2,t +15811,6124,34,1,f +15813,11211,4,3,f +15813,24307,15,4,f +15813,2458,4,1,f +15813,2479,0,1,f +15813,30028,0,4,f +15813,3003,4,1,f +15813,3004,29,3,f +15813,3005,29,2,f +15813,3020,4,1,f +15813,3023,5,1,f +15813,3023,27,1,f +15813,3039,4,1,f +15813,3040b,320,4,f +15813,3623,4,2,f +15813,3659,29,1,f +15813,3710,29,2,f +15813,3710,4,1,f +15813,3795,2,1,f +15813,3795,72,1,f +15813,4865b,0,1,f +15813,50950,320,2,f +15813,50950,4,2,f +15813,60481,5,2,f +15813,6157,0,2,f +15813,64225,320,1,f +15813,74967,15,4,f +15813,85984,4,2,f +15813,87552,47,1,f +15813,92950,29,1,f +15813,98138pr0075,15,1,t +15813,98138pr0075,15,2,f +15814,2039,15,1,f +15814,22667,4,4,f +15814,22667,27,4,f +15814,22667,4,1,t +15814,22667,27,1,t +15814,2343,71,12,f +15814,2357,71,23,f +15814,2412b,72,3,f +15814,2412b,80,7,f +15814,2420,0,3,f +15814,2420,71,29,f +15814,2420,19,10,f +15814,2423,2,2,f +15814,2431,0,11,f +15814,2431,71,23,f +15814,2431,15,2,f +15814,2431pr0032,70,3,f +15814,2436,71,1,f +15814,2445,71,6,f +15814,2449,320,4,f +15814,2456,71,8,f +15814,2465,71,1,f +15814,2489,70,2,f +15814,2555,71,9,f +15814,2555,0,20,f +15814,2780,0,1,t +15814,2780,0,2,f +15814,2877,72,7,f +15814,298c02,0,1,f +15814,298c02,0,1,t +15814,3001,288,5,f +15814,3001,71,3,f +15814,3002,71,1,f +15814,3003,288,3,f +15814,3003,0,2,f +15814,3003,71,5,f +15814,3004,19,5,f +15814,3004,28,4,f +15814,3004,71,32,f +15814,3004,288,14,f +15814,3004,320,4,f +15814,30044,15,3,f +15814,30046,0,3,f +15814,3005,71,26,f +15814,3005,288,13,f +15814,3005,320,12,f +15814,3005,378,35,f +15814,3005,70,2,f +15814,3008,19,6,f +15814,3008,378,50,f +15814,3008,71,29,f +15814,30088,0,2,f +15814,3009,19,2,f +15814,3009,71,28,f +15814,3010,19,2,f +15814,3010,0,6,f +15814,3010,378,41,f +15814,3010,288,23,f +15814,3010,71,17,f +15814,30126,72,4,f +15814,30126,72,2,t +15814,30133,4,1,f +15814,30134,0,2,f +15814,30136,72,15,f +15814,30150,70,2,f +15814,30154,72,2,f +15814,30179,72,5,f +15814,30179,15,2,f +15814,3020,71,9,f +15814,3020,15,3,f +15814,3020,0,3,f +15814,3021,71,5,f +15814,3021,0,7,f +15814,3021,72,3,f +15814,3022,71,5,f +15814,3022,72,3,f +15814,3022,70,9,f +15814,3023,19,33,f +15814,3023,71,51,f +15814,3023,72,2,f +15814,3023,15,4,f +15814,3023,0,12,f +15814,30236,19,2,f +15814,3024,4,2,f +15814,3024,15,14,f +15814,3024,1,4,f +15814,3024,72,3,f +15814,3024,320,4,f +15814,3024,0,13,f +15814,3024,71,36,f +15814,3024,19,29,f +15814,3028,0,1,f +15814,3029,71,4,f +15814,3031,71,2,f +15814,3033,71,4,f +15814,3034,0,2,f +15814,3034,72,7,f +15814,3034,71,9,f +15814,3035,0,4,f +15814,3037,0,2,f +15814,30374,0,4,f +15814,30377,0,5,t +15814,30377,0,13,f +15814,3039,0,2,f +15814,3039,71,2,f +15814,3039,72,2,f +15814,3040b,0,5,f +15814,3040b,71,6,f +15814,3040b,72,2,f +15814,30414,15,2,f +15814,3045,71,8,f +15814,3045,0,3,f +15814,3046a,0,1,f +15814,3048c,71,2,f +15814,3062b,320,4,f +15814,3062b,2,2,f +15814,3062b,14,2,f +15814,3062b,71,46,f +15814,3062b,70,4,f +15814,3062b,0,16,f +15814,3062b,272,4,f +15814,3062b,15,4,f +15814,3062b,1,2,f +15814,3062b,46,4,f +15814,3062b,4,5,f +15814,30663,0,4,f +15814,3068b,15,1,f +15814,3068b,19,13,f +15814,3068b,71,6,f +15814,3068b,320,6,f +15814,3068b,28,16,f +15814,3068b,72,12,f +15814,3069b,73,27,f +15814,3069b,72,24,f +15814,3069b,19,5,f +15814,3069b,15,28,f +15814,3069b,70,8,f +15814,3069b,71,55,f +15814,3069bpr0055,15,4,f +15814,3070b,4,1,f +15814,3070b,15,3,f +15814,3070b,71,37,f +15814,3070b,0,2,t +15814,3070b,15,1,t +15814,3070b,0,26,f +15814,3070b,71,5,t +15814,3070b,72,3,f +15814,3070b,72,1,t +15814,3070b,4,1,t +15814,32028,15,6,f +15814,32028,71,24,f +15814,32059,15,1,f +15814,32123b,71,6,f +15814,32123b,71,2,t +15814,3298,71,2,f +15814,3299,4,1,f +15814,33051,10,3,f +15814,3308,72,2,f +15814,33085,14,3,f +15814,33125,484,2,f +15814,33172,25,3,f +15814,33183,10,3,f +15814,3455,19,2,f +15814,3455,72,1,f +15814,3456,71,2,f +15814,3460,71,14,f +15814,3460,0,3,f +15814,3622,378,54,f +15814,3622,71,23,f +15814,3622,19,6,f +15814,3623,0,4,f +15814,3623,71,14,f +15814,3626b,47,1,f +15814,3626bpr0001,14,4,f +15814,3633,0,1,f +15814,3659,72,1,f +15814,3660,71,10,f +15814,3665,19,4,f +15814,3665,15,6,f +15814,3665,71,10,f +15814,3666,0,6,f +15814,3666,15,2,f +15814,3666,71,12,f +15814,3676,72,2,f +15814,3678b,0,24,f +15814,3679,71,2,f +15814,3680,15,2,f +15814,3700,72,1,f +15814,3700,70,4,f +15814,3700,19,4,f +15814,3710,71,28,f +15814,3710,320,6,f +15814,3710,15,3,f +15814,3710,0,5,f +15814,3710,19,14,f +15814,3741,2,3,f +15814,3742,15,1,t +15814,3742,4,6,f +15814,3742,15,3,f +15814,3742,4,2,t +15814,3747b,15,1,f +15814,3794a,320,3,f +15814,3794a,71,2,f +15814,3795,72,6,f +15814,3795,71,8,f +15814,3795,19,2,f +15814,3832,71,9,f +15814,3835,0,2,f +15814,3836,70,1,f +15814,3837,0,2,f +15814,3854,15,8,f +15814,3857,2,2,f +15814,3878,0,1,f +15814,3900,71,1,f +15814,3937,378,7,f +15814,3957a,71,4,f +15814,3960,320,1,f +15814,40234,71,1,f +15814,4032a,70,2,f +15814,4035,15,4,f +15814,4070,70,8,f +15814,4070,15,8,f +15814,4070,4,1,f +15814,4070,71,24,f +15814,4070,72,13,f +15814,4079,14,2,f +15814,4085c,0,3,f +15814,4085c,71,4,f +15814,4095,0,2,f +15814,4150pr0001,15,2,f +15814,4162,71,13,f +15814,4162,15,1,f +15814,41677,71,1,f +15814,41879a,70,1,f +15814,4216,378,56,f +15814,4216,15,25,f +15814,4274,1,4,f +15814,4274,1,1,t +15814,4282,71,3,f +15814,4282,72,8,f +15814,4287,71,4,f +15814,4287,15,2,f +15814,4345b,4,4,f +15814,4346,15,4,f +15814,4445,0,3,f +15814,44728,0,4,f +15814,4477,71,9,f +15814,4485,4,1,f +15814,4490,0,1,f +15814,4522,0,11,f +15814,4589,72,1,f +15814,4599a,71,2,f +15814,4733,15,2,f +15814,4733,72,1,f +15814,4735,0,4,f +15814,4740,15,1,f +15814,4740,72,2,f +15814,47905,71,3,f +15814,48336,71,3,f +15814,4864b,15,2,f +15814,4865a,47,2,f +15814,4865a,0,3,f +15814,54200,70,10,f +15814,54200,272,1,t +15814,54200,25,2,f +15814,54200,71,3,t +15814,54200,72,2,f +15814,54200,288,2,f +15814,54200,14,1,t +15814,54200,272,2,f +15814,54200,70,3,t +15814,54200,15,2,f +15814,54200,14,4,f +15814,54200,288,1,t +15814,54200,72,1,t +15814,54200,71,40,f +15814,54200,25,1,t +15814,54200,15,2,t +15814,54383,71,3,f +15814,54384,71,3,f +15814,57895,47,4,f +15814,59362,70,1,f +15814,59363,70,1,f +15814,6005,15,4,f +15814,6005,1,4,f +15814,6020,0,3,f +15814,60470a,0,1,f +15814,60479,0,4,f +15814,60479,71,5,f +15814,60481,0,9,f +15814,60481,71,7,f +15814,60592,15,11,f +15814,60594,15,6,f +15814,60596,0,3,f +15814,60601,47,11,f +15814,60603,47,2,f +15814,60616a,47,3,f +15814,60623,0,2,f +15814,60623,15,1,f +15814,6091,4,1,f +15814,6091,320,2,f +15814,6111,71,5,f +15814,6126a,57,2,f +15814,6134,71,7,f +15814,6141,71,10,f +15814,6141,27,4,f +15814,6141,29,6,f +15814,6141,29,1,t +15814,6141,70,10,f +15814,6141,14,4,t +15814,6141,14,7,f +15814,6141,72,2,f +15814,6141,0,4,t +15814,6141,27,1,t +15814,6141,1,1,t +15814,6141,70,3,t +15814,6141,71,2,t +15814,6141,1,4,f +15814,6141,0,18,f +15814,6141,72,1,t +15814,61780,70,3,f +15814,61780,72,3,f +15814,6179,15,2,f +15814,62113,0,5,f +15814,6251pr0002,15,1,f +15814,6266,0,37,f +15814,6541,72,5,f +15814,6632,71,3,f +15814,6636,15,1,f +15814,6636,0,9,f +15814,6636,71,36,f +15814,73983,19,4,f +15814,73983,15,12,f +15814,73983,72,4,f +15814,73983,71,14,f +15814,970c00,378,1,f +15814,970c00,379,1,f +15814,970c00,1,1,f +15814,973c01,15,1,f +15814,973pr1155c01,19,1,f +15814,973pr1184c01,0,1,f +15814,973pr1244c01,73,1,f +15815,2346,0,4,f +15815,2412b,14,2,f +15815,2413,1,2,f +15815,2419,2,2,f +15815,2432,14,2,f +15815,2446px3,4,1,f +15815,2447,41,1,f +15815,2449,4,2,f +15815,2456,4,1,f +15815,2458,1,1,f +15815,2460,1,1,f +15815,2479,7,1,f +15815,2577,4,2,f +15815,30000,8,2,f +15815,3001,4,4,f +15815,3001,15,2,f +15815,3001,1,2,f +15815,3001,2,2,f +15815,3001,14,2,f +15815,3002,15,2,f +15815,3002,1,2,f +15815,3002,4,2,f +15815,3003,15,2,f +15815,3003,1,4,f +15815,3003,4,4,f +15815,3003,2,2,f +15815,3003,14,2,f +15815,3004,15,10,f +15815,3004,0,2,f +15815,3004,1,10,f +15815,3004,14,6,f +15815,3004,2,4,f +15815,3004,4,16,f +15815,3005,14,6,f +15815,3005,15,6,f +15815,3005,1,8,f +15815,3005,4,12,f +15815,3005pe1,4,2,f +15815,3005pe1,2,2,f +15815,3008,1,2,f +15815,3008,4,2,f +15815,3009,4,2,f +15815,3009,14,2,f +15815,3010,1,6,f +15815,3010,4,10,f +15815,3010,15,4,f +15815,3010,14,4,f +15815,3010p01,4,1,f +15815,3010p02,15,2,f +15815,3020,1,2,f +15815,3020,2,2,f +15815,3021,2,2,f +15815,3022,2,2,f +15815,3022,1,2,f +15815,3028,1,1,f +15815,3032,1,2,f +15815,3036,1,1,f +15815,3062b,14,4,f +15815,3149c01,1,1,f +15815,3297,1,8,f +15815,3297px1,1,4,f +15815,3298,1,6,f +15815,3298p11,1,4,f +15815,3299,1,3,f +15815,3300,1,4,f +15815,3460,1,2,f +15815,3483,0,2,f +15815,3622,14,4,f +15815,3622,1,4,f +15815,3622,15,2,f +15815,3622,4,4,f +15815,3626bpx19,14,1,f +15815,3626bpx55,14,1,f +15815,3633,14,4,f +15815,3679,7,1,f +15815,3680,1,1,f +15815,3710,1,2,f +15815,3730,1,1,f +15815,3731,1,1,f +15815,3741,2,2,f +15815,3742,14,4,f +15815,3742,4,4,f +15815,3747b,1,4,f +15815,3794a,14,2,f +15815,3795,1,2,f +15815,3823,41,1,f +15815,3829c01,14,1,f +15815,3853,1,2,f +15815,3854,15,4,f +15815,3856,2,4,f +15815,3861b,1,1,f +15815,3867,2,1,f +15815,3957a,14,2,f +15815,3960p03,15,1,f +15815,3962b,0,1,f +15815,4079,14,2,f +15815,4175,14,2,f +15815,4286,1,4,f +15815,4287,1,4,f +15815,4460a,4,2,f +15815,4476b,7,2,f +15815,4495b,2,2,f +15815,6041,0,1,f +15815,6064,2,1,f +15815,6131,2,1,f +15815,6183,14,1,f +15815,6215,2,4,f +15815,6248,7,6,f +15815,6249,8,2,f +15815,6564,4,1,f +15815,6565,4,1,f +15815,970c00,1,1,f +15815,970c00,4,1,f +15815,973px33c01,15,1,f +15815,973px39c01,2,1,f +15816,3001a,15,3,f +15816,3001a,1,7,f +15816,3001a,14,4,f +15816,3001a,0,1,f +15816,3001a,4,10,f +15816,3002,4,6,f +15816,3002,0,1,f +15816,3002,15,2,f +15816,3002,1,6,f +15816,3002,14,1,f +15816,3003,15,3,f +15816,3003,0,1,f +15816,3003,14,2,f +15816,3003,1,1,f +15816,3003,4,6,f +15816,3004,47,2,f +15816,3004,1,6,f +15816,3004,15,9,f +15816,3004,14,12,f +15816,3004,0,4,f +15816,3004,4,4,f +15816,3005,0,4,f +15816,3005,15,4,f +15816,3005,14,8,f +15816,3005,4,4,f +15816,3005,1,2,f +15816,3008,1,2,f +15816,3008,0,2,f +15816,3008,14,2,f +15816,3008,15,2,f +15816,3009,1,6,f +15816,3009,15,4,f +15816,3009,0,2,f +15816,3009,14,4,f +15816,3009,4,2,f +15816,3010,47,2,f +15816,3010,1,6,f +15816,3010,14,4,f +15816,3010,15,3,f +15816,3010,0,2,f +15816,3010,4,1,f +15816,3020,1,1,f +15816,3020,4,4,f +15816,3021,1,1,f +15816,3021,4,2,f +15816,3022,4,1,f +15816,3022,1,1,f +15816,3030,1,1,f +15816,3031,4,1,f +15816,3032,1,1,f +15816,3032,4,1,f +15816,3034,4,2,f +15816,3034,1,2,f +15816,3035,4,1,f +15816,3035,1,2,f +15816,3036,1,1,f +15816,3039,4,2,f +15816,3039,47,2,f +15816,3137c01,0,2,f +15816,3144,79,1,f +15816,3149c01,4,1,f +15816,3183a,4,1,f +15816,3184,4,1,f +15816,3297,4,4,f +15816,3298,4,4,f +15816,3299,4,2,f +15816,3300,4,2,f +15816,3307,14,2,f +15816,3403c01,4,1,f +15816,3471,2,1,f +15816,3483,0,6,f +15816,3581,15,2,f +15816,3581,4,4,f +15816,3582,1,4,f +15816,3622,15,4,f +15816,3622,14,5,f +15816,3622,0,2,f +15816,3633,4,4,f +15816,3641,0,4,f +15816,3644,4,2,f +15816,3660,4,2,f +15816,3710,1,1,f +15816,3741,2,2,f +15816,3742,15,1,t +15816,3742,4,1,t +15816,3742,4,3,f +15816,3742,15,3,f +15816,3795,4,1,f +15816,3823,47,1,f +15816,3853,4,4,f +15816,3854,15,8,f +15816,3856,2,8,f +15816,3857,2,1,f +15816,3861b,4,2,f +15816,4207,14,1,f +15816,7039,4,4,f +15816,7049b,0,2,f +15817,8891,9999,1,f +15818,2793c01,14,1,f +15819,2570,8,2,f +15819,30273,8,1,f +15819,3031,2,2,f +15819,3039,8,1,f +15819,32064b,7,1,f +15819,3403,0,1,f +15819,3404,0,1,f +15819,3626bpx68,14,1,f +15819,3846p4e,7,1,f +15819,4070,0,2,f +15819,4498,6,1,f +15819,970c00pb014,0,1,f +15819,973px115c01,8,1,f +15820,3038,1,8,f +15820,3040a,1,9,f +15820,3042,1,2,f +15820,3044a,1,2,f +15821,2346,0,4,f +15821,2347,14,1,f +15821,2348b,33,1,f +15821,2349a,14,1,f +15821,2383,15,2,f +15821,2384pb01,79,1,f +15821,2384pb06,79,1,f +15821,2420,0,4,f +15821,2432,14,1,f +15821,2436,14,1,f +15821,2486,0,2,f +15821,2500c01,15,2,f +15821,2508,0,1,f +15821,298c02,14,1,f +15821,298c02,14,1,t +15821,3003,0,1,f +15821,3004,0,1,f +15821,3004,14,1,f +15821,3005,14,10,f +15821,3020,0,4,f +15821,3021,14,1,f +15821,3022,0,2,f +15821,3023,0,2,f +15821,3023,14,4,f +15821,3024,0,2,f +15821,3030,14,1,f +15821,3031,14,2,f +15821,3044c,0,1,f +15821,3068b,0,1,f +15821,3069bp09,15,1,f +15821,3139,0,4,f +15821,3298,14,1,f +15821,3314,0,1,f +15821,3317,14,1,f +15821,3460,14,2,f +15821,3482,14,4,f +15821,3626apr0001,14,2,f +15821,3639,0,1,f +15821,3640,0,1,f +15821,3660,0,1,f +15821,3665,14,4,f +15821,3666,0,2,f +15821,3679,7,1,f +15821,3680,0,1,f +15821,3700,0,4,f +15821,3706,0,2,f +15821,3710,14,2,f +15821,3710,0,1,f +15821,3730,0,1,f +15821,3794a,0,1,f +15821,3794a,14,1,f +15821,3821,14,1,f +15821,3822,14,1,f +15821,3829c01,0,1,f +15821,3835,0,1,f +15821,3836,6,1,f +15821,3837,8,1,f +15821,3839b,0,1,f +15821,3841,0,1,f +15821,3901,0,1,f +15821,4032a,14,4,f +15821,4070,14,2,f +15821,4081b,14,4,f +15821,4085b,14,2,f +15821,4085b,0,4,f +15821,4175,0,2,f +15821,4175,14,1,f +15821,4214,14,1,f +15821,4265a,7,4,f +15821,4265a,7,1,t +15821,4477,14,2,f +15821,4485,4,1,f +15821,4589,0,2,f +15821,4594,47,1,f +15821,4600,0,2,f +15821,4624,14,4,f +15821,4760c01,14,1,f +15821,4767,15,1,f +15821,4771,15,1,f +15821,4773,36,5,t +15821,4773,46,4,t +15821,4773,46,7,f +15821,4773,33,5,t +15821,4854,14,1,f +15821,4865a,14,5,f +15821,4871,14,1,f +15821,5306bc015,0,1,f +15821,6141,47,2,f +15821,6141,36,4,f +15821,6141,0,2,f +15821,970c00,1,2,f +15821,973p27c01,1,1,f +15821,973pb0201c01,15,1,f +15822,45452,230,1,f +15822,46277,13,1,f +15822,clikits004,9,2,f +15822,clikits005,143,2,f +15822,clikits037,29,1,f +15823,23306,383,1,f +15823,2357,72,6,f +15823,2412b,72,2,f +15823,2412b,1,4,f +15823,2412b,0,4,f +15823,2420,14,2,f +15823,2431,15,7,f +15823,2450,71,4,f +15823,2462,15,2,f +15823,2540,4,4,f +15823,2555,0,2,f +15823,2577,0,2,f +15823,2637,71,8,f +15823,2780,0,16,f +15823,2877,71,8,f +15823,298c02,15,2,f +15823,3001,15,2,f +15823,3001,0,8,f +15823,3002,14,3,f +15823,3002,71,2,f +15823,3003,0,1,f +15823,3003,1,4,f +15823,3004,0,4,f +15823,3004,19,3,f +15823,3005,71,2,f +15823,3010,71,5,f +15823,3020,1,4,f +15823,3020,0,1,f +15823,3020,14,2,f +15823,3020,72,3,f +15823,30208,15,2,f +15823,3021,72,6,f +15823,3021,71,1,f +15823,3022,1,8,f +15823,3022,71,2,f +15823,3022,14,4,f +15823,3023,72,6,f +15823,3023,1,2,f +15823,3028,0,2,f +15823,30283,71,1,f +15823,3029,0,4,f +15823,3031,0,1,f +15823,3031,72,4,f +15823,3032,72,4,f +15823,3033,72,1,f +15823,3034,4,3,f +15823,3035,72,1,f +15823,30359b,72,2,f +15823,3036,0,2,f +15823,30361cpr1,15,1,f +15823,30363,1,2,f +15823,30364,72,8,f +15823,30365,71,8,f +15823,30366ps1,40,1,f +15823,30367bpr0007,15,1,f +15823,30368,0,1,f +15823,30370ps1,15,1,f +15823,30372pr0001,40,1,f +15823,30373,72,2,f +15823,30374,36,1,f +15823,3039,72,1,f +15823,3039pr0008,0,1,f +15823,3040b,71,2,f +15823,3040b,1,4,f +15823,3045,71,2,f +15823,3046a,72,2,f +15823,30503,0,8,f +15823,30565,72,2,f +15823,3068b,15,1,f +15823,3068b,0,3,f +15823,3068bpr0071,19,2,f +15823,3069b,0,3,f +15823,3298,0,1,f +15823,3460,4,2,f +15823,3623,0,2,f +15823,3626bp69,14,1,f +15823,3626bps6,71,1,f +15823,3660,0,2,f +15823,3660,71,6,f +15823,3666,14,1,f +15823,3666,72,5,f +15823,3679,71,1,f +15823,3680,4,1,f +15823,3701,0,3,f +15823,3708,0,2,f +15823,3710,72,7,f +15823,3747a,71,6,f +15823,3794a,2,1,f +15823,3794a,0,2,f +15823,3795,72,8,f +15823,3832,71,4,f +15823,3933,72,1,f +15823,3934,72,1,f +15823,3937,71,1,f +15823,3938,0,1,f +15823,3940b,0,3,f +15823,3958,71,1,f +15823,3960ps2,72,1,f +15823,4070,15,2,f +15823,4085c,4,2,f +15823,4150,71,3,f +15823,4150ps5,71,2,f +15823,4162,1,8,f +15823,4286,71,16,f +15823,4345b,15,1,f +15823,4346px4,71,1,f +15823,4589,15,2,f +15823,4599a,0,4,f +15823,48336,19,1,f +15823,4871,71,4,f +15823,50231,0,1,f +15823,6112,71,2,f +15823,6141,36,6,f +15823,6141,4,4,f +15823,6141,4,1,t +15823,6141,36,1,t +15823,6179,0,1,f +15823,6222,71,2,f +15823,6222,72,8,f +15823,6222,14,2,f +15823,6232,71,6,f +15823,6233,0,2,f +15823,6249,72,4,f +15823,6259,71,4,f +15823,6564,15,3,f +15823,6565,15,3,f +15823,6636,1,18,f +15823,76385,72,2,f +15823,970c00,0,1,f +15823,970x199,25,1,f +15823,973pr1301c01,25,1,f +15823,973ps7c01,0,1,f +15824,11211,71,7,f +15824,11476,71,2,f +15824,11477,0,10,f +15824,2357,0,2,f +15824,2420,0,8,f +15824,3004,72,2,f +15824,3004,0,4,f +15824,3010,72,1,f +15824,3020,0,2,f +15824,3021,72,3,f +15824,3021,25,4,f +15824,3022,2,4,f +15824,3022,0,1,f +15824,3022,72,4,f +15824,3023,25,4,f +15824,3023,72,6,f +15824,3024,29,1,t +15824,3024,29,1,f +15824,3039,0,3,f +15824,30503,0,4,f +15824,3069b,0,9,f +15824,3069b,25,4,f +15824,33291,10,1,t +15824,33291,10,1,f +15824,3660,0,6,f +15824,3794b,0,1,f +15824,4070,0,6,f +15824,49668,15,2,f +15824,49668,0,8,f +15824,54200,72,1,t +15824,54200,72,2,f +15824,54200,25,16,f +15824,54200,25,1,t +15824,60475a,0,2,f +15824,60478,0,8,f +15824,6141,29,1,f +15824,6141,29,1,t +15824,85984,72,2,f +15824,85984,0,2,f +15824,92280,71,4,f +15824,92946,0,2,f +15824,93273,72,2,f +15824,93274,0,1,f +15824,98138pr0008,15,1,t +15824,98138pr0008,15,2,f +15824,99206,0,2,f +15827,3001,1,1,f +15827,3003,4,1,f +15827,3004,4,4,f +15827,3004,1,4,f +15827,3004,14,2,f +15827,3004,47,2,f +15827,3004p51,14,1,f +15827,3005,14,2,f +15827,3005,1,2,f +15827,3010,4,2,f +15827,3020,4,2,f +15827,3021,4,2,f +15827,3022,4,1,f +15827,3034,4,2,f +15827,3039,47,2,f +15827,3039,1,2,f +15827,3040b,1,2,f +15827,3137c01,0,2,f +15827,3480,0,1,f +15827,3481,4,1,f +15827,3641,0,4,f +15827,3660,4,2,f +15828,2460,0,1,f +15828,2479,0,1,f +15828,2555,71,4,f +15828,3003,0,1,f +15828,3022,15,2,f +15828,3023,0,1,f +15828,3024,15,2,f +15828,3626bpr0751a,15,1,f +15828,3839b,72,1,f +15828,4032a,71,2,f +15828,4150,15,2,f +15828,43722,85,1,f +15828,43723,85,1,f +15828,44728,72,2,f +15828,53989,15,4,f +15828,87747,15,4,f +15828,92691,15,4,f +15828,92692,0,2,f +15828,93061,15,2,f +15828,93061,15,1,t +15828,93062c01,15,2,f +15828,93271pr0001,15,1,f +15830,2352,4,2,f +15830,2456,1,2,f +15830,2456,15,2,f +15830,2456,4,2,f +15830,2456,14,2,f +15830,2574,4,1,f +15830,2577,1,4,f +15830,2746,4,1,f +15830,3001,14,26,f +15830,3001,0,20,f +15830,3001,15,38,f +15830,3001,4,38,f +15830,3001,1,38,f +15830,3001p11,4,1,f +15830,3001pr1,14,1,f +15830,3002,4,6,f +15830,3002,0,4,f +15830,3002,14,6,f +15830,3002,1,6,f +15830,3002,15,6,f +15830,3003,4,44,f +15830,3003,0,16,f +15830,3003,15,42,f +15830,3003,14,22,f +15830,3003,1,44,f +15830,3003pe1,4,2,f +15830,3003pe1,14,2,f +15830,3003pe2,15,2,f +15830,3003pe4,15,2,f +15830,3006,1,2,f +15830,3007,4,2,f +15830,3185,4,8,f +15830,3470,2,1,f +15830,3483,0,8,f +15830,3857,14,3,f +15830,4130,4,2,f +15830,4131,15,2,f +15830,4132,4,3,f +15830,4133,15,3,f +15830,4727,2,4,f +15830,4728,1,1,f +15830,4728,14,1,f +15830,4728,15,1,f +15830,4728,4,1,f +15830,4730,1,1,f +15830,4743,1,1,f +15830,4744pb15,14,1,f +15830,4745,14,1,f +15830,4747,4,1,f +15830,4748,4,1,f +15830,6007,8,1,f +15830,6853,4,6,f +15830,7039,4,6,f +15830,7049b,0,3,f +15830,bfp001,9999,2,f +15830,bfp002,9999,2,f +15832,2460,1,1,f +15832,2479,7,1,f +15832,3001,4,1,f +15832,3001,15,1,f +15832,3001,14,1,f +15832,3001,1,1,f +15832,3002,14,2,f +15832,3002,4,2,f +15832,3003,0,2,f +15832,3003,14,4,f +15832,3003,15,2,f +15832,3003,1,2,f +15832,3003,4,4,f +15832,3004,1,8,f +15832,3004,4,8,f +15832,3004,15,6,f +15832,3004,0,4,f +15832,3004,14,8,f +15832,3005,15,6,f +15832,3005,1,6,f +15832,3005,14,6,f +15832,3005,4,6,f +15832,3005,0,4,f +15832,3005pe1,2,2,f +15832,3009,14,2,f +15832,3009,4,2,f +15832,3010,1,2,f +15832,3010,4,4,f +15832,3010,14,4,f +15832,3010,15,2,f +15832,30183,1,1,f +15832,3020,4,2,f +15832,3022,4,2,f +15832,3034,1,2,f +15832,3062b,14,4,f +15832,3297,4,1,f +15832,3297px18,4,1,f +15832,3298,4,2,f +15832,3298p13,4,2,f +15832,3299,4,2,f +15832,3300,4,2,f +15832,3483,0,4,f +15832,3622,14,4,f +15832,3622,4,4,f +15832,3626bpx19,14,1,f +15832,3633,15,2,f +15832,3660,4,2,f +15832,3665,4,2,f +15832,3666,1,2,f +15832,3710,4,2,f +15832,3747b,1,2,f +15832,3795,1,2,f +15832,3823,47,1,f +15832,3829c01,4,1,f +15832,3853,1,2,f +15832,3854,14,4,f +15832,3861b,1,1,f +15832,3865,2,1,f +15832,3957a,15,1,f +15832,4079,4,1,f +15832,4286,1,2,f +15832,4287,1,2,f +15832,4485,15,1,f +15832,4495b,2,1,f +15832,6248,4,4,f +15832,6249,8,2,f +15832,6564,14,1,f +15832,6565,14,1,f +15832,970c00,2,1,f +15832,973px39c01,2,1,f +15833,2376,0,1,f +15833,2512,14,1,f +15833,2584,4,1,f +15833,2585,0,1,f +15833,3010px1,4,1,f +15833,3037pr0005,4,1,f +15833,3039pb012,14,1,f +15833,3127,7,1,f +15833,3314,0,1,f +15833,3317,14,1,f +15833,56823,0,2,f +15833,73037,4,1,f +15833,784,14,1,f +15834,3001,2,2,f +15834,3001,15,2,f +15834,3001,4,2,f +15834,3001,1,2,f +15834,3001,14,2,f +15834,3001,0,2,f +15834,3002,2,2,f +15834,3002,1,2,f +15834,3002,4,2,f +15834,3002,0,2,f +15834,3002,15,4,f +15834,3002,14,4,f +15834,3003,1,6,f +15834,3003,14,6,f +15834,3003,33,8,f +15834,3003,15,8,f +15834,3003,36,8,f +15834,3003,2,6,f +15834,3003,4,6,f +15834,3003,0,6,f +15834,3004,1,6,f +15834,3004,2,8,f +15834,3004,0,10,f +15834,3004,4,6,f +15834,3004,14,8,f +15834,3004,15,10,f +15834,3005,4,8,f +15834,3005,15,8,f +15834,3005,1,8,f +15834,3005,0,8,f +15834,3005pe1,14,2,f +15834,3010,14,2,f +15834,3010,15,2,f +15834,3010,2,2,f +15834,3020,15,2,f +15834,3020,0,2,f +15834,3021,15,2,f +15834,3022,0,2,f +15834,3022,15,2,f +15834,3039,36,2,f +15834,3039,33,2,f +15834,3040b,14,2,f +15834,3065,33,6,f +15834,3065,36,6,f +15834,3665,14,2,f +15836,11153,14,2,f +15836,11477,14,2,f +15836,11477,15,4,f +15836,15068,14,2,f +15836,15068,0,4,f +15836,15712,0,4,f +15836,18671,72,2,f +15836,18677,71,2,f +15836,22961,71,1,f +15836,2412b,14,4,f +15836,2431,71,2,f +15836,2458,14,2,f +15836,2654,47,2,f +15836,2780,0,3,f +15836,2780,0,1,t +15836,3004,72,2,f +15836,3004,15,2,f +15836,3005,14,4,f +15836,3009,14,1,f +15836,3010,72,4,f +15836,3020,0,3,f +15836,3022,14,2,f +15836,3023,72,4,f +15836,3023,15,2,f +15836,3023,36,3,f +15836,3023,14,4,f +15836,3024,182,1,t +15836,3024,14,8,f +15836,3024,14,1,t +15836,3024,182,4,f +15836,3040b,0,2,f +15836,30663,71,1,f +15836,3068b,272,2,f +15836,32054,4,2,f +15836,32062,4,1,f +15836,32123b,14,1,t +15836,32123b,14,8,f +15836,32138,0,2,f +15836,32140,14,1,f +15836,3298,71,1,f +15836,3460,0,1,f +15836,3665,15,2,f +15836,3666,14,2,f +15836,3666,15,4,f +15836,3700,71,2,f +15836,3703,71,2,f +15836,3705,0,2,f +15836,3710,14,2,f +15836,3710,15,2,f +15836,3737,0,1,f +15836,3743,0,1,f +15836,3795,72,6,f +15836,3894,72,2,f +15836,42003,4,1,f +15836,4274,1,5,f +15836,4274,1,1,t +15836,4287,72,2,f +15836,43093,1,3,f +15836,43710,15,1,f +15836,43711,15,1,f +15836,44728,71,1,f +15836,4477,72,1,f +15836,4477,14,1,f +15836,48336,0,4,f +15836,50950,72,4,f +15836,54200,15,2,f +15836,54200,15,1,t +15836,54383,15,1,f +15836,54384,15,1,f +15836,55982,71,4,f +15836,58090,0,4,f +15836,58181,40,1,f +15836,59443,4,2,f +15836,60470a,71,2,f +15836,60478,15,2,f +15836,6141,179,1,t +15836,6141,179,10,f +15836,6141,47,4,f +15836,6141,47,1,t +15836,6232,14,2,f +15836,62361,14,4,f +15836,62462,15,2,f +15836,63864,15,2,f +15836,63868,71,2,f +15836,6564,14,1,f +15836,6565,14,1,f +15836,6636,0,3,f +15836,6636,15,3,f +15836,85984,14,2,f +15836,88072,15,2,f +15836,93274,72,2,f +15836,93606,15,2,f +15836,93606,0,1,f +15836,98285,71,1,f +15836,98286,0,1,f +15836,99207,0,4,f +15836,99780,14,2,f +15837,2418b,42,1,f +15837,2419,7,2,f +15837,2540,0,2,f +15837,2569,42,4,f +15837,30034,0,2,f +15837,30035,0,1,f +15837,3004,4,4,f +15837,30062,0,1,f +15837,3010,0,4,f +15837,30117,42,2,f +15837,30117pb01,7,1,f +15837,30117pb05,7,1,f +15837,30119,7,4,f +15837,30120p02,7,1,f +15837,30121,0,1,f +15837,3021,0,4,f +15837,3022,4,1,f +15837,3023,4,3,f +15837,3023,0,4,f +15837,3031,4,2,f +15837,3034,7,4,f +15837,3035,0,4,f +15837,3069bp51,0,1,f +15837,3403,4,1,f +15837,3404,4,1,f +15837,3622,7,4,f +15837,3626bpb0248,42,1,f +15837,3794a,0,4,f +15837,3937,0,5,f +15837,3938,7,4,f +15837,3940b,0,4,f +15837,3960,0,2,f +15837,4070,4,4,f +15837,4079,4,1,f +15837,4150,0,1,f +15837,4151a,0,1,f +15837,4345b,0,1,f +15837,4346,42,1,f +15837,4349,0,1,f +15837,4589,0,4,f +15837,4589,42,1,f +15837,4590,0,4,f +15837,6141,42,9,f +15837,6222,7,1,f +15837,6999stk01,9999,1,t +15837,6999stk02,9999,1,t +15837,73590c02a,0,2,f +15837,970c07pb01,1,1,f +15837,973pb0077c01,7,1,f +15837,ufomask,9999,1,t +15839,2357,7,2,f +15839,2412b,0,2,f +15839,2418bpb01,34,1,f +15839,2420,7,6,f +15839,2431,7,4,f +15839,2458,7,1,f +15839,2462,0,2,f +15839,2463,14,2,f +15839,2516,0,2,f +15839,2582pb09,34,2,f +15839,2598,34,1,f +15839,2607,7,2,f +15839,2609,0,2,f +15839,2873,0,1,f +15839,30000,8,1,f +15839,3001,1,1,f +15839,3001,14,6,f +15839,3002,7,1,f +15839,3003,7,1,f +15839,3004,1,5,f +15839,3005,15,2,f +15839,3008,14,4,f +15839,3009,0,5,f +15839,3010,14,7,f +15839,3020,1,1,f +15839,3020,0,2,f +15839,30200,0,1,f +15839,30202,8,1,f +15839,3021,0,2,f +15839,3023,7,1,f +15839,3023,1,6,f +15839,3029,0,1,f +15839,3034,7,1,f +15839,30385,383,1,f +15839,3039,7,3,f +15839,3039pb001,14,3,f +15839,3062b,14,2,f +15839,3062b,34,6,f +15839,3068b,14,2,f +15839,3068bp00,0,1,f +15839,3068bp51,0,2,f +15839,3068bpx14,0,3,f +15839,3069b,0,7,f +15839,3069bp21,0,2,f +15839,3069bpap,14,4,f +15839,32062,0,10,f +15839,3298,7,2,f +15839,3298pb001,14,1,f +15839,3307,14,2,f +15839,3622,4,4,f +15839,3626bpb0092,14,1,f +15839,3626bpb0093,14,1,f +15839,3626bpb0094,14,1,f +15839,3626bpx46,14,1,f +15839,3633,14,2,f +15839,3660,0,1,f +15839,3666,0,1,f +15839,3666,7,1,f +15839,3710,14,3,f +15839,3710,7,1,f +15839,3749,7,4,f +15839,3794a,14,4,f +15839,3795,0,1,f +15839,3795,14,1,f +15839,3933,7,1,f +15839,3934,7,1,f +15839,3935,0,1,f +15839,3936,0,1,f +15839,3937,7,2,f +15839,3941,7,3,f +15839,4032a,0,10,f +15839,4286,0,6,f +15839,4315,0,2,f +15839,4345b,34,3,f +15839,4346,34,3,f +15839,4474,34,2,f +15839,4590,0,5,f +15839,4623,0,5,f +15839,4625,7,4,f +15839,4857,14,1,f +15839,4861,14,1,f +15839,4864b,14,2,f +15839,4865a,0,7,f +15839,5102,7,2,f +15839,57467,383,2,f +15839,59275,0,6,f +15839,59275,7,2,f +15839,6032,14,2,f +15839,6039,0,8,f +15839,6040,14,2,f +15839,6041,34,5,f +15839,6042,14,11,f +15839,6061,14,2,f +15839,6063,0,2,f +15839,6090,42,3,f +15839,6091,0,2,f +15839,6106,7,2,f +15839,6141,57,8,f +15839,6219,7,2,f +15839,71128,383,2,f +15839,71594,34,2,f +15839,71966,61,3,f +15839,73092,0,4,f +15839,970x023,0,2,f +15839,970x026,1,1,f +15839,970x026,6,1,f +15839,973pb0047c01,1,1,f +15839,973pb0048c01,8,1,f +15839,973pb0115c01,1,1,f +15839,973pb0116c01,1,1,f +15841,45463,15,1,f +15841,clikits025,43,1,f +15841,clikits110,383,1,f +15841,clikits119,89,1,f +15842,11211,71,2,f +15842,11477,4,6,f +15842,11477,14,2,f +15842,14704,71,1,f +15842,15397,0,1,f +15842,15573,4,2,f +15842,2412b,72,4,f +15842,2431,4,1,f +15842,2460,0,1,f +15842,2479,0,1,f +15842,2496,0,3,f +15842,2540,14,1,f +15842,2655,71,3,f +15842,2877,15,3,f +15842,3001,71,1,f +15842,30165,72,1,f +15842,3020,14,5,f +15842,3022,72,3,f +15842,3023,4,2,f +15842,3023,14,2,f +15842,3024,14,1,t +15842,3024,14,13,f +15842,3034,4,1,f +15842,30383,72,2,f +15842,30395,72,1,f +15842,3040b,4,2,f +15842,30553,72,2,f +15842,3070b,15,4,f +15842,3070b,15,1,t +15842,3176,14,1,f +15842,3460,0,4,f +15842,3623,72,2,f +15842,3666,14,3,f +15842,3673,71,1,f +15842,3673,71,1,t +15842,3710,14,4,f +15842,3710,4,3,f +15842,3747a,14,1,f +15842,3795,72,3,f +15842,3821,15,1,f +15842,3822,15,1,f +15842,43722,4,1,f +15842,43723,4,1,f +15842,44676,72,1,f +15842,44728,72,1,f +15842,50373,14,2,f +15842,51739,72,1,f +15842,51739,4,1,f +15842,54200,40,1,t +15842,54200,14,1,t +15842,54200,40,8,f +15842,54200,14,2,f +15842,6141,36,1,f +15842,6141,36,1,t +15842,6141,72,2,f +15842,6141,72,1,t +15842,6141,34,1,f +15842,6141,34,1,t +15842,63864,72,2,f +15842,6541,4,1,f +15842,74698,0,1,f +15842,85984,4,1,f +15842,87087,71,2,f +15842,92842,0,1,f +15842,98138,71,1,t +15842,98138,71,3,f +15842,99206,0,1,f +15842,99780,71,2,f +15842,99781,0,2,f +15845,6578,0,5,f +15845,6579,0,2,f +15845,x600,72,1,f +15845,x601,15,2,f +15845,x602,15,2,f +15845,x603,4,1,f +15845,x604,71,4,f +15845,x604,25,3,f +15845,x605,14,2,f +15845,x605,71,4,f +15845,x605pb01,25,3,f +15845,x606pb01,25,3,f +15845,x607,14,3,f +15846,11476,71,4,f +15846,15541pat0001,1,2,f +15846,17876,15,1,f +15846,30150,70,1,f +15846,30222,42,1,f +15846,30293,41,1,f +15846,30294,41,1,f +15846,3030,72,2,f +15846,3034,71,2,f +15846,30385,80,1,f +15846,3626c,1,1,f +15846,3626cpr1395b,14,1,f +15846,3626cpr1410,14,1,f +15846,3841,72,1,f +15846,3899,4,2,f +15846,4528,0,1,f +15846,4740,0,1,f +15846,60478,72,4,f +15846,6141,57,1,f +15846,64648,179,2,f +15846,6636,72,2,f +15846,93273,71,4,f +15846,970c00pr0645,1,2,f +15846,973pr2641c01,25,1,f +15846,973pr2661c01,25,1,f +15847,11211,71,5,f +15847,11476,71,2,f +15847,11477,71,2,f +15847,11477,14,4,f +15847,14769,71,2,f +15847,14769,0,1,f +15847,2420,19,4,f +15847,2420,14,2,f +15847,2420,71,2,f +15847,3003,19,3,f +15847,3004,70,3,f +15847,3020,70,1,f +15847,3020,19,1,f +15847,3021,14,1,f +15847,3021,71,3,f +15847,3022,70,6,f +15847,3023,19,4,f +15847,3023,71,5,f +15847,3023,4,2,f +15847,3024,70,4,f +15847,30350b,70,1,f +15847,3039,71,1,f +15847,3039,70,4,f +15847,3069b,14,1,f +15847,3622,70,4,f +15847,3660,71,1,f +15847,3660,70,4,f +15847,3665,70,4,f +15847,41769,70,3,f +15847,41770,70,3,f +15847,43722,28,1,f +15847,43723,28,1,f +15847,44375a,0,1,f +15847,48336,14,1,f +15847,4871,71,1,f +15847,54200,28,6,f +15847,60470b,14,1,f +15847,60478,14,2,f +15847,60478,71,4,f +15847,6091,4,2,f +15847,61252,14,2,f +15847,6233,0,1,f +15847,73983,19,4,f +15847,85984,70,4,f +15847,85984,71,2,f +15847,85984,19,2,f +15847,93273,19,2,f +15847,98138pr0008,15,2,f +15847,99206,71,3,f +15849,13249,72,1,f +15849,13250,72,2,f +15849,13731,72,2,f +15849,2420,71,2,f +15849,2431,0,6,f +15849,2432,0,2,f +15849,2445,71,2,f +15849,2654,47,8,f +15849,2780,0,2,f +15849,2780,0,1,t +15849,2817,71,1,f +15849,3001,1,1,f +15849,3003,0,4,f +15849,3004,71,6,f +15849,3009,0,2,f +15849,3010,0,2,f +15849,3021,72,2,f +15849,3023,0,5,f +15849,3023,71,8,f +15849,30236,0,1,f +15849,3030,72,2,f +15849,3031,0,1,f +15849,3034,71,1,f +15849,3035,71,1,f +15849,30374,0,1,f +15849,30374,36,1,f +15849,3068b,71,3,f +15849,3068b,0,2,f +15849,3069b,0,5,f +15849,32000,71,1,f +15849,32530,72,2,f +15849,3298,72,2,f +15849,3622,72,2,f +15849,3623,72,2,f +15849,3626cpr0759,78,1,f +15849,3626cpr1044,78,1,f +15849,3626cpr1232,0,1,f +15849,3666,272,1,f +15849,3666,0,4,f +15849,3700,0,1,f +15849,3710,272,6,f +15849,3794b,72,2,f +15849,3795,0,1,f +15849,3832,72,1,f +15849,3937,72,2,f +15849,4070,1,2,f +15849,4162,0,3,f +15849,41747,71,2,f +15849,41748,71,2,f +15849,41749,71,1,f +15849,41750,71,1,f +15849,41764,71,1,f +15849,41765,71,1,f +15849,41769,272,1,f +15849,41770,272,1,f +15849,4274,71,1,f +15849,4274,71,1,t +15849,4282,0,2,f +15849,43722,71,1,f +15849,43723,71,1,f +15849,44570,72,1,f +15849,48336,0,2,f +15849,4865a,0,6,f +15849,50950,272,1,f +15849,54200,272,1,t +15849,54200,182,1,t +15849,54200,182,8,f +15849,54200,272,10,f +15849,58247,0,2,f +15849,59900,0,2,f +15849,60470a,71,3,f +15849,60478,72,6,f +15849,60592,0,2,f +15849,60897,71,2,f +15849,61184,71,2,f +15849,6134,0,2,f +15849,6141,36,1,t +15849,6141,36,3,f +15849,6180,272,1,f +15849,6231,71,2,f +15849,63864,72,6,f +15849,63965,72,1,f +15849,64567,80,1,t +15849,64567,80,2,f +15849,64802,148,2,f +15849,6541,4,2,f +15849,6636,71,1,f +15849,85984,71,2,f +15849,87610pr0003,148,2,f +15849,92582,0,2,f +15849,92583,40,1,f +15849,92761pr0002,0,1,t +15849,92761pr0002,0,1,f +15849,970x194,72,2,f +15849,973pr2402c01,0,2,f +15849,973pr2403c01,4,1,f +15849,99207,71,2,f +15850,11609,484,1,f +15850,2420,4,1,f +15850,2420,2,1,f +15850,3020,70,1,f +15850,3020,30,1,f +15850,3040b,71,4,f +15850,30414,72,1,f +15850,3069bpr0055,15,1,f +15850,3070b,15,2,f +15850,33291,70,1,f +15850,33291,26,2,f +15850,3659,71,1,f +15850,3710,30,1,f +15850,6141,19,1,f +15850,6141,57,1,f +15850,64647,57,1,f +15850,93089pr0001b,484,1,f +15850,98283,84,1,f +15851,3039,8,2,f +15851,30459pb02,379,1,f +15851,40373pb02,7,2,f +15851,40374pb02,7,2,f +15851,40375,379,2,f +15851,40378,379,1,f +15851,40379,379,2,f +15851,40382c01pb02,379,1,f +15851,40385,8,1,f +15851,40390,379,1,f +15851,40393,379,2,f +15851,40395,379,1,f +15851,40396,379,1,f +15851,6027,4,1,f +15851,6127,379,1,f +15851,6128,379,1,f +15851,x158,379,1,f +15855,26213,73,1,f +15855,3626cpr1881,73,1,f +15855,87693pr0001,297,1,f +15855,88646,0,1,f +15855,973pr3320c01,73,1,f +15855,98376pr0002,1,1,f +15855,98383,297,1,f +15856,10113,1,1,f +15856,10247,0,1,f +15856,12622,0,1,f +15856,15395,320,2,f +15856,15623pr0002,71,1,f +15856,15624,72,2,f +15856,15625pr0002,72,1,f +15856,15626pr0002,71,1,f +15856,15627,321,3,f +15856,2412b,0,3,f +15856,2412b,36,1,f +15856,2431,14,1,f +15856,2431,71,3,f +15856,2431pr0028,72,1,f +15856,2432,1,1,f +15856,2437,40,1,f +15856,2454b,1,2,f +15856,2456,0,3,f +15856,2877,71,1,f +15856,3001,1,2,f +15856,3001,2,1,f +15856,3001,27,1,f +15856,3002,1,1,f +15856,3003,2,1,f +15856,3003,14,1,f +15856,3004,27,2,f +15856,3004,1,3,f +15856,3007,0,1,f +15856,3010,72,6,f +15856,3010,1,1,f +15856,30103,0,2,f +15856,30192,72,1,f +15856,3020,14,1,f +15856,3020,72,1,f +15856,30237a,14,5,f +15856,30275,4,1,f +15856,3031,0,1,f +15856,3031,72,1,f +15856,30367b,4,2,f +15856,30374,0,1,f +15856,3039,27,2,f +15856,3039pr0015,0,1,f +15856,30592,71,1,f +15856,3062b,36,1,f +15856,3062b,34,1,f +15856,30663,71,1,f +15856,3069b,46,4,f +15856,3626cpr0896,78,1,f +15856,3626cpr0898,15,1,f +15856,3626cpr1371,78,1,f +15856,3700,0,1,f +15856,3829c01,14,1,f +15856,3941,46,1,f +15856,3941,27,2,f +15856,3957a,0,2,f +15856,3962b,0,1,f +15856,4079,4,1,f +15856,4079,0,1,f +15856,41854,0,1,f +15856,4349,0,1,f +15856,43898,1,1,f +15856,47457,1,1,f +15856,47847,72,1,f +15856,47905,0,1,f +15856,50950,0,2,f +15856,56630,1,1,f +15856,6014b,14,4,f +15856,60481,71,10,f +15856,60596,14,1,f +15856,60603pr0001,41,1,f +15856,60621,71,1,f +15856,6126b,182,2,f +15856,61409,0,2,f +15856,61409,1,2,f +15856,6190,4,1,f +15856,62113,0,2,f +15856,6232,4,1,f +15856,63868,0,1,f +15856,64728,4,1,f +15856,64798,2,1,f +15856,6583,14,2,f +15856,87079,72,2,f +15856,87079pr0062,1,1,f +15856,87697,0,4,f +15856,93273,0,2,f +15856,95229,0,1,f +15856,970c00,85,1,f +15856,970x021,2,1,f +15856,970x023,71,1,f +15856,973pr1949bc01,4,1,f +15856,973pr2149c01,71,1,f +15856,973pr2150c01,85,1,f +15856,98721,0,1,t +15856,98721,0,1,f +15856,99464,14,1,f +15856,99930,0,1,f +15857,2376,0,1,f +15857,2877,70,1,f +15857,3004,15,4,f +15857,3020,15,1,f +15857,3021,15,1,f +15857,3022,15,2,f +15857,30377,0,1,f +15857,30377,0,1,t +15857,3039,15,2,f +15857,3040b,15,2,f +15857,3623,4,1,f +15857,3660,15,2,f +15857,3794b,15,3,f +15857,3794b,0,1,f +15857,3941,0,1,f +15857,3957a,0,1,f +15857,4589,25,1,f +15857,54200,15,2,f +15857,54200,15,1,t +15857,54200,4,1,t +15857,54200,4,2,f +15857,59230,0,1,f +15857,59230,0,1,t +15857,60474,0,1,f +15857,60478,15,2,f +15857,6141,4,1,t +15857,6141,0,4,f +15857,6141,0,1,t +15857,6141,4,1,f +15857,87087,15,6,f +15858,32171pb002,0,1,f +15858,32569,379,1,f +15858,32576,379,2,f +15858,32577,15,1,f +15858,32578,15,1,f +15858,32579,8,1,f +15858,40507,15,1,f +15859,2446pr0014,15,1,f +15859,29309,15,1,f +15859,29310,71,1,f +15859,3626cpr2098,30,1,f +15859,72326,15,1,f +15859,88646,0,1,f +15859,970c00pr1176,30,1,f +15859,973pr3679c01,30,1,f +15860,2357,0,4,f +15860,2412b,80,6,f +15860,2412b,0,1,f +15860,2420,0,10,f +15860,2420,80,8,f +15860,2431,72,1,f +15860,2432,4,3,f +15860,2436,71,2,f +15860,2445,0,1,f +15860,2456,0,4,f +15860,2460,72,2,f +15860,2540,72,1,f +15860,2654,0,1,f +15860,2654,46,1,f +15860,2736,71,1,f +15860,2780,0,2,t +15860,2780,0,10,f +15860,3001,72,1,f +15860,3002,4,2,f +15860,3002,0,1,f +15860,3003,25,2,f +15860,3003,0,3,f +15860,30033,0,1,f +15860,3004,25,3,f +15860,3004,0,9,f +15860,3005,272,4,f +15860,3006,0,1,f +15860,3008,80,2,f +15860,30145,0,2,f +15860,30157,71,2,f +15860,30162,72,1,f +15860,3020,4,2,f +15860,3020,25,2,f +15860,3020,72,1,f +15860,3021,15,3,f +15860,3021,72,3,f +15860,3021,1,2,f +15860,3022,0,3,f +15860,3023,4,6,f +15860,3023,25,8,f +15860,3023,36,4,f +15860,3024,36,1,f +15860,3024,46,2,f +15860,3024,80,14,f +15860,30258,72,2,f +15860,3032,72,2,f +15860,3032,0,1,f +15860,3035,72,4,f +15860,30374,0,4,f +15860,30377,0,1,t +15860,30377,0,4,f +15860,30383,0,3,f +15860,3039,80,3,f +15860,3039pr0014,0,1,f +15860,30414,1,2,f +15860,30526,1,2,f +15860,30608,0,1,f +15860,3062b,15,8,f +15860,3068b,4,1,f +15860,3068b,80,2,f +15860,3069b,4,1,f +15860,3069b,72,4,f +15860,3069bpb078c,15,1,f +15860,3069bpr0070,0,2,f +15860,3070b,4,1,t +15860,3070b,4,2,f +15860,32000,72,6,f +15860,32000,4,2,f +15860,32002,72,1,f +15860,32002,72,1,t +15860,32015,0,2,f +15860,32028,71,2,f +15860,32054,4,1,f +15860,32054,71,4,f +15860,32062,4,1,f +15860,32064b,0,2,f +15860,32123b,71,1,t +15860,32123b,71,3,f +15860,32125,71,2,f +15860,32126,71,1,f +15860,32192,72,2,f +15860,32316,72,2,f +15860,32530,0,2,f +15860,32531,0,1,f +15860,32532,272,2,f +15860,32556,19,2,f +15860,3455,0,2,f +15860,3622,4,3,f +15860,3626bpr0410,14,1,f +15860,3626bpr0538,14,1,f +15860,3626bpr0551,14,1,f +15860,3660,25,1,f +15860,3666,0,2,f +15860,3673,71,1,f +15860,3673,71,1,t +15860,3684b,0,2,f +15860,3700,72,1,f +15860,3700,1,1,f +15860,3702,272,2,f +15860,3706,0,3,f +15860,3709,72,2,f +15860,3710,25,5,f +15860,3710,0,4,f +15860,3713,4,1,t +15860,3713,4,1,f +15860,3737,0,1,f +15860,3747b,0,1,f +15860,3749,19,5,f +15860,3794a,0,1,f +15860,3795,72,1,f +15860,3829c01,4,1,f +15860,3894,0,6,f +15860,3937,15,1,f +15860,3941,0,4,f +15860,4032a,72,1,f +15860,4070,0,4,f +15860,4081b,0,1,f +15860,4081b,72,2,f +15860,41334,0,1,f +15860,4150,0,5,f +15860,41539,72,1,f +15860,41677,72,2,f +15860,41752,72,1,f +15860,41769,80,1,f +15860,41769,272,1,f +15860,41770,80,1,f +15860,41770,272,1,f +15860,42446,72,1,f +15860,4274,1,1,f +15860,4274,1,1,t +15860,4282,0,2,f +15860,43093,1,5,f +15860,4360,0,2,f +15860,43712,25,2,f +15860,44126,272,1,f +15860,44126,0,1,f +15860,44568,71,1,f +15860,44728,0,6,f +15860,4515,71,2,f +15860,4519,71,1,f +15860,4589,0,2,f +15860,4589,4,4,f +15860,4589,71,2,f +15860,4589,36,3,f +15860,4589,42,2,f +15860,4599a,0,1,f +15860,4617b,0,1,f +15860,4623,72,2,f +15860,4871,0,1,f +15860,48729a,0,1,t +15860,48729a,0,3,f +15860,50950,0,4,f +15860,50950,80,2,f +15860,52031,272,1,f +15860,53451,0,6,f +15860,53451,0,1,t +15860,53989,135,6,f +15860,54200,47,1,t +15860,54200,36,2,t +15860,54200,36,8,f +15860,54200,80,4,f +15860,54200,47,2,f +15860,55981,80,1,f +15860,55982,0,4,f +15860,56823c50,0,1,f +15860,57565,0,4,f +15860,57585,71,2,f +15860,57906,0,3,f +15860,58090,0,4,f +15860,58827,0,2,f +15860,6019,4,2,f +15860,6020,0,2,f +15860,6046,0,2,f +15860,60471,71,1,f +15860,60475a,71,4,f +15860,60483,71,2,f +15860,60849,0,3,f +15860,61069,72,2,f +15860,61184,71,6,f +15860,6134,1,1,f +15860,61409,72,4,f +15860,6141,47,1,t +15860,6141,4,1,t +15860,6141,57,4,f +15860,6141,4,2,f +15860,6141,47,2,f +15860,6141,57,2,t +15860,61510,71,2,f +15860,61678,80,4,f +15860,61678,0,3,f +15860,6232,72,1,f +15860,62360,47,1,f +15860,62361,80,4,f +15860,6239,0,1,f +15860,62462,15,2,f +15860,62694,40,1,f +15860,62698,0,1,f +15860,62700,135,4,f +15860,62701,135,4,f +15860,62810,0,1,f +15860,62931,72,1,f +15860,6541,71,4,f +15860,6541,0,4,f +15860,6553,0,3,f +15860,6558,1,2,f +15860,6583,0,1,f +15860,6636,80,4,f +15860,85543,15,1,f +15860,970c00pr0117,25,1,f +15860,970c00pr0118,272,1,f +15860,973pr1384c01,25,2,f +15860,973pr1386c01,272,1,f +15860,agtidcard,9999,1,t +15861,32073,0,1,f +15861,32174,0,6,f +15861,32556,7,1,f +15861,3706,0,2,f +15861,41659,2,2,f +15861,41665,2,2,f +15861,41666,7,2,f +15861,41667,7,1,f +15861,41668,2,2,f +15861,41669,36,2,f +15861,41670,27,4,f +15861,41671pat0002,2,1,f +15861,41672,0,2,f +15861,41752,8,1,f +15861,42042,7,1,f +15861,42042und,4,1,f +15861,42074,15,2,f +15861,4519,0,5,f +15861,6628,0,2,f +15861,85544,10,1,f +15863,10193,212,1,f +15863,10199,1,1,f +15863,10199,10,1,f +15863,10888,71,1,f +15863,11169,10,2,f +15863,11198,322,1,f +15863,14294,322,1,f +15863,15515,322,1,f +15863,15965,27,1,f +15863,16375,85,2,f +15863,16375,322,1,f +15863,20678,41,1,f +15863,20820,15,1,f +15863,2302,14,2,f +15863,25139,78,1,f +15863,3011,29,2,f +15863,3011,15,1,f +15863,31110,1,2,f +15863,31213,191,1,f +15863,3437,15,2,f +15863,3437,71,1,f +15863,3437,484,1,f +15863,3437pb044,29,1,f +15863,3664,10,1,f +15863,4066,5,4,f +15863,40666,4,1,f +15863,40666,15,2,f +15863,40666,73,1,f +15863,47394pb148,212,1,f +15863,61649,4,1,f +15863,6474,14,2,f +15863,6474,29,2,f +15863,6510,25,1,f +15863,6510,14,1,f +15863,6510,10,1,f +15863,6510,73,1,f +15863,72211,29,1,f +15863,72217,15,1,f +15863,76371,4,2,f +15863,90265,15,1,f +15863,98225,29,4,f +15863,98233,15,1,f +15863,98238,85,1,f +15863,98252,5,2,f +15863,99771,14,1,f +15863,99771,212,1,f +15864,30170,72,1,f +15864,30171,70,1,f +15864,30374,36,2,f +15864,30381,0,1,f +15864,3626bpr0449,78,1,f +15864,3626bpr0492,78,1,f +15864,3626bpr0815,0,1,f +15864,4006,0,1,f +15864,40233,28,1,f +15864,4070,72,2,f +15864,41879a,19,1,f +15864,50231,0,1,f +15864,58247,0,1,f +15864,64567,80,1,f +15864,74188,72,3,f +15864,970c00,0,1,f +15864,970x199,70,1,f +15864,973pr1325c01,19,1,f +15864,973pr1326c01,19,1,f +15864,973pr1340c01,0,1,f +15865,3003,4,3,f +15865,3004,47,2,f +15865,3005,15,2,f +15865,3008,0,2,f +15865,3010,0,2,f +15865,3020,0,2,f +15865,3020,15,1,f +15865,3021,15,5,f +15865,3029,15,1,f +15865,3037,47,1,f +15865,3037,4,6,f +15865,3039,4,3,f +15865,3040a,15,4,f +15865,3045,4,2,f +15865,3139,0,3,f +15865,3460,0,4,f +15865,3464,4,3,f +15865,3479,7,2,f +15865,3480,7,1,f +15865,3481,15,1,f +15865,3660,0,6,f +15865,3660,15,1,f +15865,8,7,3,f +15868,58123a,71,1,f +15869,2412b,0,2,f +15869,2555,15,2,f +15869,3004,15,2,f +15869,30162,72,1,f +15869,3021,72,1,f +15869,3022,0,1,f +15869,3022,15,2,f +15869,3023,0,4,f +15869,3024,71,2,f +15869,3031,71,1,f +15869,3069b,15,2,f +15869,3623,71,2,f +15869,3710,15,4,f +15869,3794a,71,1,f +15869,3937,72,4,f +15869,3938,0,4,f +15869,4070,71,2,f +15869,4095,71,2,f +15869,42023,15,2,f +15869,43722,15,1,f +15869,43723,15,1,f +15869,44728,15,1,f +15869,4589,72,4,f +15869,54200,71,4,f +15869,54200,15,1,t +15869,54200,0,1,t +15869,54200,15,4,f +15869,54200,0,4,f +15869,54200,71,1,t +15869,54383,15,1,f +15869,54384,15,1,f +15869,6141,57,2,f +15869,6141,57,1,t +15869,6141,72,2,f +15869,6141,72,1,t +15870,13393pr0001,84,1,f +15870,3040b,70,1,f +15870,3688,2,1,f +15870,60474,15,1,f +15872,11089,0,3,f +15872,11153,25,3,f +15872,11477,0,4,f +15872,14417,72,2,f +15872,14418,71,2,f +15872,15068,0,2,f +15872,15208,15,1,f +15872,15209,15,2,f +15872,2420,72,2,f +15872,30173b,179,2,f +15872,3022,4,1,f +15872,3023,25,2,f +15872,3024,25,1,t +15872,3024,25,3,f +15872,30552,0,3,f +15872,3710,25,2,f +15872,3749,19,1,f +15872,4081b,0,5,f +15872,43722,0,3,f +15872,44302a,72,3,f +15872,47458,4,1,f +15872,48336,0,1,f +15872,57585,71,1,f +15872,60474,0,2,f +15872,60897,25,1,f +15872,63868,0,2,f +15872,85861,71,1,t +15872,85861,71,2,f +15872,98138pr0027,15,1,t +15872,98138pr0027,15,2,f +15872,99207,71,1,f +15872,99781,71,1,f +15873,2586p4d,15,1,f +15873,3004,15,1,f +15873,3023,15,1,f +15873,3626bpx122,14,1,f +15873,3849,8,1,t +15873,3849,8,1,f +15873,4491b,4,1,f +15873,4495a,1,1,f +15873,59,383,1,f +15873,71015,334,1,f +15873,75998pr0007,15,1,f +15873,970c00,1,1,f +15873,973p4ec01,4,1,f +15874,2780,0,9,f +15874,2780,0,1,t +15874,32002,72,1,t +15874,32002,72,2,f +15874,32062,4,2,f +15874,43093,1,2,f +15874,47306,4,1,f +15874,47328,4,2,f +15874,49423,135,1,f +15874,53543,25,2,f +15874,53545,4,1,f +15874,53547,25,1,f +15874,53548,4,2,f +15874,53549,25,2,f +15874,57563,25,4,f +15874,59443,4,1,f +15874,60176,4,2,f +15874,61054,4,4,f +15874,64251,72,2,f +15874,64262,57,1,f +15874,64275,135,2,f +15874,64276,72,1,f +15874,64277c01,297,1,f +15874,64292,4,2,f +15874,64297,182,1,f +15874,64299,135,1,f +15874,64322pat0002,4,1,f +15874,64889pr0001,135,1,f +15874,6558,1,4,f +15875,2046,0,1,f +15875,2357,7,2,f +15875,2412b,15,2,f +15875,2431,0,2,f +15875,2444,0,2,f +15875,2456,0,1,f +15875,2489,6,1,f +15875,2508,7,2,f +15875,2516,0,1,f +15875,2526,14,2,f +15875,2546,8,1,f +15875,2555,7,5,f +15875,2569,57,2,f +15875,2586p4f,7,2,f +15875,2588,21,1,f +15875,2654,7,2,f +15875,2695,0,1,f +15875,2815,0,12,f +15875,2921,0,2,f +15875,2983,7,1,f +15875,3004,0,2,f +15875,3004,1,6,f +15875,3005,7,2,f +15875,3005,0,3,f +15875,30055,0,2,f +15875,3008,0,2,f +15875,3009,0,1,f +15875,3009,7,5,f +15875,30094,7,1,f +15875,3010,0,6,f +15875,30103,0,1,f +15875,30104,8,2,f +15875,30133,0,1,f +15875,30136,6,5,f +15875,30137,6,1,f +15875,30140,6,2,f +15875,3020,7,3,f +15875,3021,1,4,f +15875,3022,1,1,f +15875,3022,15,2,f +15875,3023,1,6,f +15875,3024,7,1,f +15875,3034,1,2,f +15875,3037,0,2,f +15875,3039pr0005,15,1,f +15875,3040b,0,4,f +15875,3069bp03,7,1,f +15875,32001,0,2,f +15875,32002,8,4,f +15875,3455,0,5,f +15875,3460,1,2,f +15875,3622,0,4,f +15875,3623,7,1,f +15875,3624,0,2,f +15875,3626b,0,1,f +15875,3626bpr0895,15,1,f +15875,3626bpx54,14,1,f +15875,3626bpx78,14,1,f +15875,3666,0,1,f +15875,3666,1,7,f +15875,3673,7,4,f +15875,3675,0,2,f +15875,37,383,2,f +15875,3701,0,1,f +15875,3702,0,2,f +15875,3707,0,6,f +15875,3708,0,3,f +15875,3709,1,1,f +15875,3710,1,7,f +15875,3713,7,3,f +15875,3730,7,3,f +15875,3738,7,2,f +15875,3794a,1,2,f +15875,3795,1,5,f +15875,3829c01,15,2,f +15875,3895,0,4,f +15875,3937,1,2,f +15875,3938,0,2,f +15875,3940b,1,1,f +15875,3941,1,3,f +15875,3941,0,6,f +15875,3942c,14,1,f +15875,3960,0,1,f +15875,3960p02,1,1,f +15875,4032a,4,2,f +15875,4032a,15,2,f +15875,4070,1,1,f +15875,4081b,1,4,f +15875,4085c,1,4,f +15875,4185,6,15,f +15875,4265b,7,4,f +15875,4266,0,1,f +15875,4274,7,5,f +15875,4286,0,2,f +15875,4349,0,1,f +15875,4444,0,2,f +15875,4449,6,1,f +15875,4589,57,3,f +15875,4742,1,1,f +15875,4854,0,2,f +15875,59,383,1,f +15875,6066,0,1,f +15875,6070,41,2,f +15875,6111,0,2,f +15875,6124,36,1,f +15875,6126a,57,3,f +15875,6131,1,1,f +15875,6133,0,2,f +15875,6141,57,2,f +15875,6260,15,1,f +15875,6265,15,2,f +15875,6266,15,2,f +15875,6564,0,1,f +15875,6565,0,1,f +15875,6575,7,2,f +15875,6587,8,2,f +15875,71128,383,2,f +15875,71342,334,2,f +15875,85545,1,2,f +15875,970c00,15,1,f +15875,970c00,8,2,f +15875,973c09,15,1,f +15875,973p28c01,0,1,f +15875,973px90c01,0,1,f +15876,2412b,72,2,f +15876,2412b,4,5,f +15876,2431,14,3,f +15876,2432,179,8,f +15876,2456,72,1,f +15876,2540,0,2,f +15876,2555,288,2,f +15876,2654,0,2,f +15876,2780,0,2,f +15876,2780,0,1,t +15876,298c02,14,1,t +15876,298c02,14,3,f +15876,3003,15,1,f +15876,30088,179,1,f +15876,3009,4,2,f +15876,30150,70,1,f +15876,30153,33,1,f +15876,30153,36,1,f +15876,30153,47,1,f +15876,3020,72,3,f +15876,3021,71,1,f +15876,3021,4,1,f +15876,3022,15,1,f +15876,3022,14,2,f +15876,3023,19,1,f +15876,3032,19,1,f +15876,3034,4,4,f +15876,30367b,14,2,f +15876,30602,46,5,f +15876,3062b,14,2,f +15876,30663,0,2,f +15876,32039,4,2,f +15876,32064b,4,2,f +15876,32073,71,1,f +15876,32123b,14,2,f +15876,32123b,14,1,t +15876,32530,4,2,f +15876,33078,0,2,f +15876,33121,320,1,f +15876,3626bpr0761,36,1,f +15876,3626bpr0764,14,1,f +15876,3648b,72,1,f +15876,3660,72,12,f +15876,3666,4,2,f +15876,3700,72,2,f +15876,3701,72,4,f +15876,3710,15,2,f +15876,3713,71,1,t +15876,3713,71,2,f +15876,3737,0,1,f +15876,3749,19,2,f +15876,3795,14,1,f +15876,3832,14,1,f +15876,4032a,1,2,f +15876,4032a,14,1,f +15876,4081b,15,2,f +15876,4150,4,2,f +15876,41531,4,4,f +15876,4289,72,1,f +15876,44728,72,4,f +15876,4589,182,1,f +15876,4623,72,2,f +15876,4738a,297,1,f +15876,4739a,297,1,f +15876,47455,0,2,f +15876,47755,0,4,f +15876,48169,72,2,f +15876,48170,4,2,f +15876,48729b,72,1,f +15876,48729b,72,1,t +15876,50950,4,2,f +15876,53989,0,4,f +15876,54200,4,2,f +15876,54200,4,1,t +15876,55013,72,2,f +15876,55236,288,2,f +15876,57909a,72,1,f +15876,58176,36,2,f +15876,59275,14,2,f +15876,59275,14,2,t +15876,59443,14,1,f +15876,60208,72,3,f +15876,60219,72,4,f +15876,6041,179,2,f +15876,60470a,4,3,f +15876,60474,15,1,f +15876,60474,14,2,f +15876,60478,72,7,f +15876,60481,71,2,f +15876,61184,71,2,f +15876,61409,4,2,f +15876,6141,46,1,t +15876,6141,34,1,t +15876,6141,36,1,t +15876,6141,297,2,f +15876,6141,36,1,f +15876,6141,46,8,f +15876,6141,34,1,f +15876,6141,297,1,t +15876,63864,4,2,f +15876,63864,72,2,f +15876,64450,0,2,f +15876,64713,179,1,f +15876,6558,1,2,f +15876,6564,4,1,f +15876,6565,4,1,f +15876,6587,28,1,f +15876,6636,72,2,f +15876,7984stk01,9999,1,f +15876,86500,4,2,f +15876,87079,4,2,f +15876,87580,4,3,f +15876,87620,4,2,f +15876,87751,179,2,f +15876,87754,71,1,f +15876,89159,46,1,f +15876,89522,135,1,f +15876,89522,135,1,t +15876,89917,133,1,f +15876,92013,72,1,f +15876,92280,0,8,f +15876,92290,297,1,f +15876,92580,46,1,f +15876,92692,0,1,f +15876,92943pr0001,72,1,f +15876,92946,4,10,f +15876,92947,15,4,f +15876,92947,19,1,f +15876,92947,4,1,f +15876,970c00pr0198,72,1,f +15876,970c00pr0199,72,1,f +15876,973pr1734c01,72,1,f +15876,973pr1735c01,72,1,f +15876,98313,179,5,f +15878,2335p30,15,1,f +15878,2339,7,2,f +15878,2357,7,2,f +15878,2458,15,1,f +15878,2458,7,2,f +15878,2489,6,4,f +15878,2530,8,1,f +15878,2542,4,1,f +15878,2544,0,1,f +15878,2605c01,0,2,f +15878,2654,0,2,f +15878,3001,14,2,f +15878,3002,14,2,f +15878,3003,14,1,f +15878,3004,7,3,f +15878,3004,15,2,f +15878,30048,0,1,f +15878,3009,7,2,f +15878,3010,7,2,f +15878,3010,15,1,f +15878,3020,7,1,f +15878,3023,15,1,f +15878,3023,14,1,f +15878,3023,4,2,f +15878,3024,7,1,f +15878,3031,0,1,f +15878,3040b,7,8,f +15878,3040b,15,6,f +15878,3068b,7,1,f +15878,3069b,7,1,f +15878,3460,15,1,f +15878,3622,15,1,f +15878,3626bp39,14,1,f +15878,3626bpr0895,15,1,f +15878,3659,15,2,f +15878,3665,15,4,f +15878,3666,15,1,f +15878,3700,7,2,f +15878,3701,0,2,f +15878,3710,0,2,f +15878,3710,14,1,f +15878,3713,7,1,f +15878,3749,7,4,f +15878,3794a,7,1,f +15878,3849,0,1,f +15878,3865,1,1,f +15878,4085c,14,2,f +15878,4286,15,2,f +15878,4460a,7,6,f +15878,4519,0,1,f +15878,4589,0,1,f +15878,4589,15,4,f +15878,4738a,6,1,f +15878,4739a,6,1,f +15878,57503,334,1,f +15878,57504,334,1,f +15878,57505,334,1,f +15878,57506,334,1,f +15878,6082,8,1,f +15878,6126a,57,3,f +15878,6141,36,1,t +15878,6141,36,4,f +15878,6148,2,2,f +15878,6260,15,1,f +15878,6265,15,2,f +15878,6266,15,2,f +15878,970d01,0,1,f +15878,973p39c01,1,1,f +15881,29540,2,6,f +15881,29540,1,6,f +15881,29540,4,8,f +15881,29540,14,12,f +15881,29541,4,11,f +15881,29541,14,11,f +15881,29541,1,9,f +15881,29541,2,9,f +15881,71727,4,8,f +15881,sbb04,4,4,f +15883,11153,25,2,f +15883,13349,72,1,f +15883,14769,72,2,f +15883,15571,25,1,f +15883,15573,0,4,f +15883,15573,72,4,f +15883,17013pb02,72,1,f +15883,18277,72,1,f +15883,2412b,72,2,f +15883,2450,0,6,f +15883,3020,72,1,f +15883,3021,72,5,f +15883,3021,0,6,f +15883,3022,0,3,f +15883,3022,72,2,f +15883,3023,0,2,f +15883,3024,72,2,f +15883,3024,4,2,f +15883,3032,72,1,f +15883,30367c,179,2,f +15883,30503,72,2,f +15883,30602,40,1,f +15883,3069b,72,1,f +15883,3069b,71,2,f +15883,3070b,0,2,f +15883,3070b,25,4,f +15883,32028,72,4,f +15883,3460,0,1,f +15883,3660,72,3,f +15883,3666,4,1,f +15883,3710,0,2,f +15883,3832,0,1,f +15883,3941,72,2,f +15883,4032a,0,6,f +15883,4032a,72,10,f +15883,4070,72,2,f +15883,41747,15,1,f +15883,41747,72,1,f +15883,41748,72,1,f +15883,41748,15,1,f +15883,41767,72,1,f +15883,41768,72,1,f +15883,41769,0,1,f +15883,41770,0,1,f +15883,41879pb003,320,1,f +15883,43722,15,1,f +15883,43723,15,1,f +15883,44728,72,6,f +15883,4477,72,1,f +15883,47397,0,1,f +15883,47398,0,1,f +15883,4740,72,4,f +15883,50950,25,1,f +15883,54383,0,1,f +15883,54384,0,1,f +15883,58176,36,2,f +15883,6106,71,2,f +15883,6141,36,4,f +15883,63864,72,2,f +15883,73983,72,4,f +15883,87087,72,4,f +15883,87580,72,2,f +15883,973pb1818c01,320,1,f +15883,98138,179,2,f +15883,99781,71,1,f +15884,bb398,89,1,f +15885,2412b,72,3,f +15885,2926,0,1,f +15885,3021,4,2,f +15885,3021,1,1,f +15885,3024,36,2,f +15885,3024,36,1,t +15885,30374,0,2,f +15885,30377,0,1,t +15885,30377,0,2,f +15885,3176,4,1,f +15885,3795,0,1,f +15885,4070,1,4,f +15885,44674,1,1,f +15885,4600,0,2,f +15885,4624,71,4,f +15885,48336,71,4,f +15885,4865a,19,1,f +15885,48729b,72,4,f +15885,48729b,72,1,t +15885,6014b,71,2,f +15885,60897,0,2,f +15885,61409,4,2,f +15885,6141,72,2,f +15885,6141,46,1,t +15885,6141,46,1,f +15885,6141,72,1,t +15885,87414,0,2,f +15885,87552,40,2,f +15885,87697,0,2,f +15885,99207,4,1,f +15887,3004,2,4,f +15887,3004,4,2,f +15887,3021,4,1,f +15887,6141,42,2,f +15887,6141,42,1,t +15892,2412b,15,2,f +15892,2540,19,4,f +15892,2609b,0,1,f +15892,3023,47,1,f +15892,3023,15,3,f +15892,3023,7,1,f +15892,30374,15,4,f +15892,3062b,15,4,f +15892,3069b,33,1,f +15892,3069bps4,15,2,f +15892,3069bps5,15,2,f +15892,3623,379,1,f +15892,3623,19,1,f +15892,3700,7,1,f +15892,3710,379,2,f +15892,3710,15,1,f +15892,3710,320,1,f +15892,3794a,320,1,f +15892,3794a,15,1,f +15892,4032a,7,2,f +15892,4274,7,1,f +15892,4274,7,1,t +15892,4589,379,2,f +15892,4623,0,2,f +15892,4733,0,1,f +15892,4740,47,1,f +15892,4854,0,1,t +15892,4854,0,2,f +15892,4871,0,2,f +15892,4871,0,1,t +15892,6019,7,2,f +15892,6019,15,8,f +15892,6091,379,2,f +15892,6141,7,1,t +15892,6141,7,5,f +15892,6538b,15,4,f +15892,6636,0,2,t +15892,6636,0,4,f +15893,3626cpb1072,0,1,f +15893,970c00,0,1,f +15893,973pr2167c01,0,1,f +15894,11090,72,7,f +15894,11203,72,1,f +15894,11211,19,8,f +15894,14720,71,1,f +15894,15068,19,26,f +15894,15462,28,1,f +15894,15540,19,2,f +15894,15540,72,1,f +15894,15573,19,9,f +15894,15573,71,1,f +15894,15625,19,6,f +15894,15672,19,1,f +15894,15712,0,1,f +15894,17630,308,1,f +15894,17979,19,1,f +15894,18575,0,2,f +15894,18587,71,2,f +15894,18588,72,2,f +15894,19159,0,2,f +15894,19232pr0001,70,2,f +15894,19232pr0002,308,1,f +15894,2412b,19,9,f +15894,2419,28,3,f +15894,2420,71,6,f +15894,2431,19,2,f +15894,2432,71,1,f +15894,2445,72,2,f +15894,2450,19,2,f +15894,2476a,71,2,f +15894,2540,0,1,f +15894,2561,70,2,f +15894,2570,148,1,f +15894,2653,71,4,f +15894,2780,0,24,f +15894,3001,15,1,f +15894,30031,72,1,f +15894,3004,4,1,f +15894,3005,14,2,f +15894,3005,72,4,f +15894,3009,28,2,f +15894,3010,19,4,f +15894,3010,71,1,f +15894,30150,70,1,f +15894,30157,70,4,f +15894,3020,28,7,f +15894,3021,71,4,f +15894,3022,70,4,f +15894,3022,19,4,f +15894,3023,28,8,f +15894,30236,72,1,f +15894,3029,71,1,f +15894,3031,19,1,f +15894,3032,72,1,f +15894,3032,19,1,f +15894,3037,71,1,f +15894,30374,41,1,f +15894,30374,71,7,f +15894,3039,19,2,f +15894,3040b,19,2,f +15894,3040b,72,2,f +15894,30414,0,7,f +15894,30565,19,4,f +15894,3068b,19,2,f +15894,3069bpr0070,0,1,f +15894,3176,72,1,f +15894,32014,72,4,f +15894,32054,4,1,f +15894,32062,4,10,f +15894,32062,0,1,f +15894,32123b,14,6,f +15894,32184,71,2,f +15894,32523,15,1,f +15894,32524,14,1,f +15894,32531,71,2,f +15894,32556,19,2,f +15894,3460,70,2,f +15894,3460,19,4,f +15894,3460,0,2,f +15894,3622,72,2,f +15894,3623,4,2,f +15894,3626cpr1629,92,1,f +15894,3665,19,8,f +15894,3666,72,11,f +15894,3673,71,2,f +15894,3700,70,2,f +15894,3701,72,4,f +15894,3706,0,2,f +15894,3708,0,2,f +15894,3710,28,3,f +15894,3710,70,1,f +15894,3710,19,6,f +15894,3713,4,1,f +15894,3795,19,5,f +15894,3832,19,2,f +15894,3839b,0,1,f +15894,3894,71,2,f +15894,3895,71,2,f +15894,3937,72,1,f +15894,3942c,72,2,f +15894,3958,19,1,f +15894,4032a,0,2,f +15894,41531,71,4,f +15894,41532,0,2,f +15894,4162,72,2,f +15894,41677,71,3,f +15894,4274,1,12,f +15894,43093,1,7,f +15894,43710,19,1,f +15894,43711,19,1,f +15894,44570,71,1,f +15894,44676,19,2,f +15894,44728,70,5,f +15894,4477,72,2,f +15894,4595,71,1,f +15894,47456,72,1,f +15894,47457,72,2,f +15894,47507,72,1,f +15894,47759,72,1,f +15894,48336,71,7,f +15894,4865b,41,1,f +15894,4871,72,1,f +15894,48729b,72,1,f +15894,50950,72,2,f +15894,54200,71,2,f +15894,54383,28,2,f +15894,54384,28,2,f +15894,58247,0,1,f +15894,59900,72,9,f +15894,60208,72,4,f +15894,60477,19,6,f +15894,60483,71,1,f +15894,60484,14,2,f +15894,60485,71,1,f +15894,6111,72,4,f +15894,6134,71,1,f +15894,6141,35,31,f +15894,6141,179,17,f +15894,6141,47,2,f +15894,6182,71,1,f +15894,63864,28,4,f +15894,63868,72,2,f +15894,63869,0,2,f +15894,63965,70,1,f +15894,64567,80,1,f +15894,6536,72,4,f +15894,6541,15,4,f +15894,6558,1,2,f +15894,6587,28,4,f +15894,6629,72,4,f +15894,6632,71,2,f +15894,6632,0,2,f +15894,85943,72,5,f +15894,85984,19,14,f +15894,87079,72,2,f +15894,87087,0,3,f +15894,87087,72,2,f +15894,87752,40,2,f +15894,88293,19,2,f +15894,88646,71,1,f +15894,90630,0,2,f +15894,92280,71,2,f +15894,92280,0,2,f +15894,92946,72,2,f +15894,92950,19,3,f +15894,93273,71,2,f +15894,93571,72,4,f +15894,96874,25,1,t +15894,970c00pr0720,72,1,f +15894,970c00pr0781,70,2,f +15894,970c00pr0783,308,1,f +15894,973pr2769c01,326,1,f +15894,973pr2871c01,70,2,f +15894,973pr2873c01,308,1,f +15894,98138,179,2,f +15894,99206,71,6,f +15894,99207,71,1,f +15894,99780,72,2,f +15895,2780,0,2,f +15895,32013,0,1,f +15895,32039,0,1,f +15895,32062,0,2,f +15895,32073,0,1,f +15895,32173,19,2,f +15895,32174,0,6,f +15895,32269,7,1,f +15895,32270,7,3,f +15895,32474,0,1,f +15895,32475,6,2,f +15895,32489,6,1,f +15895,32553,7,1,f +15895,32554,57,1,f +15895,32560,179,2,f +15895,3706,0,1,f +15895,3713,7,2,f +15895,42003,0,1,f +15895,43557,19,2,f +15895,43558,179,1,f +15895,43559,179,2,f +15895,43615,6,1,f +15895,44036,179,2,f +15895,4519,0,1,t +15895,4519,0,4,f +15896,2301,4,2,f +15896,3011,2,1,f +15896,31021,15,1,f +15896,31333,15,1,f +15896,3437,484,2,f +15896,3437,14,1,f +15896,3437,73,1,f +15896,3437,15,2,f +15896,3437,27,2,f +15896,3437,4,2,f +15896,3437,2,2,f +15896,4066,14,2,f +15896,40666,73,2,f +15896,40666,25,1,f +15896,4066pb425,73,1,f +15896,58057pr03,15,1,f +15896,61649,14,1,f +15896,6510,25,1,f +15896,6510,10,1,f +15896,87653,70,1,f +15896,98223,27,1,f +15896,98224,1,1,f +15896,dupcat1pb01,484,1,f +15897,22667,26,1,f +15897,22667,26,1,t +15897,2431,70,1,f +15897,30137,70,1,f +15897,3021,15,2,f +15897,30414,19,1,f +15897,3062b,70,4,f +15897,33051,10,1,f +15897,33085,14,1,f +15897,33172,25,1,f +15897,4738a,70,1,f +15897,54200,15,1,t +15897,54200,15,2,f +15898,3001a,0,2,f +15898,3004,47,24,f +15898,3004,4,8,f +15898,3005,4,16,f +15898,3008p04,4,2,f +15898,3010,4,6,f +15898,3020,7,4,f +15898,3020,14,6,f +15898,3021,7,2,f +15898,3021,14,4,f +15898,3021,4,12,f +15898,3023,7,2,f +15898,3027,7,2,f +15898,7049b,15,2,f +15898,737ac01,4,1,f +15898,737ac02,4,1,f +15898,wheel2b,4,4,f +15899,2419,1,1,f +15899,3001,4,2,f +15899,3004,14,6,f +15899,3004,1,2,f +15899,3004,4,4,f +15899,3005pe1,4,2,f +15899,3010,4,2,f +15899,3020,1,2,f +15899,3022,1,2,f +15899,3039,47,1,f +15899,3298p19,14,2,f +15899,3626bpx19,14,1,f +15899,3747b,14,2,f +15899,3795,1,1,f +15899,3957a,15,1,f +15899,4286,14,4,f +15899,4485,4,1,f +15899,970c00,2,1,f +15899,973px33c01,15,1,f +15903,2437,41,1,f +15903,3823,41,2,f +15903,3829c01,15,2,f +15903,3829c01,4,2,f +15903,4079,14,2,f +15903,4079,4,2,f +15903,4594,47,1,f +15903,6070,41,1,f +15903,6238,33,1,f +15905,122c01,0,2,f +15905,3001,1,1,f +15905,3001,14,2,f +15905,3004,1,2,f +15905,3004,15,26,f +15905,3004p06,4,1,f +15905,3005,4,2,f +15905,3005,15,22,f +15905,3005,1,1,f +15905,3008,15,5,f +15905,3009,1,6,f +15905,3009,15,3,f +15905,3010,1,1,f +15905,3010,15,4,f +15905,3020,14,1,f +15905,3020,4,1,f +15905,3020,47,1,f +15905,3022,4,2,f +15905,3023,4,3,f +15905,3024,36,2,f +15905,3024,47,2,f +15905,3031,14,1,f +15905,3032,14,1,f +15905,3033,15,1,f +15905,3036,15,1,f +15905,3038,4,11,f +15905,3039,4,8,f +15905,3039pb015,1,1,f +15905,3041,4,2,f +15905,3043,4,1,f +15905,3062b,47,2,f +15905,3062b,4,3,f +15905,3063b,15,4,f +15905,3068b,14,3,f +15905,3069bpr0099,15,3,f +15905,3070b,4,3,f +15905,3081cc01,4,2,f +15905,3307,15,4,f +15905,3460,15,1,f +15905,3581,15,2,f +15905,3582,14,2,f +15905,3622,1,3,f +15905,3622,15,14,f +15905,3625,0,1,f +15905,3626a,47,1,f +15905,3626apr0001,14,2,f +15905,3641,0,4,f +15905,3665,15,1,f +15905,3679,7,1,f +15905,3680,14,1,f +15905,3710,0,4,f +15905,3741,2,4,f +15905,3742,4,4,f +15905,3742,15,4,f +15905,3742,14,4,f +15905,3778,2,1,f +15905,3788,4,2,f +15905,3821,4,1,f +15905,3822,4,1,f +15905,3823,47,2,f +15905,3829c01,4,1,f +15905,3832,15,1,f +15905,3853,4,1,f +15905,3855,47,1,f +15905,3856,14,2,f +15905,3899,47,2,f +15905,3900,0,1,f +15905,3901,0,1,f +15905,3941,0,4,f +15905,3957a,4,1,f +15905,3960p04,15,1,f +15905,4070,4,4,f +15905,4079,14,5,f +15905,4212b,0,1,f +15905,4213,0,1,f +15905,4217,15,2,f +15905,4218,47,4,f +15905,4218,1,3,f +15905,4315,0,1,f +15905,4345ap03,14,1,f +15905,4346p03,14,1,f +15905,4347,4,1,f +15905,4445,4,12,f +15905,4447,15,2,f +15905,4448,47,2,f +15905,4478p03,2,1,f +15905,6141,36,2,f +15905,6374stk01,9999,1,t +15905,73312,4,1,f +15905,970c00,4,1,f +15905,970c00,7,1,f +15905,973c07,1,1,f +15905,973p01c02,15,1,f +15907,10201,0,1,f +15907,2412b,0,13,f +15907,2412b,71,4,f +15907,2420,14,2,f +15907,2431,14,4,f +15907,2431,72,2,f +15907,2432,4,3,f +15907,2639,14,1,f +15907,2730,0,2,f +15907,2877,0,2,f +15907,2926,0,4,f +15907,298c02,4,2,f +15907,298c02,4,1,t +15907,3001,72,2,f +15907,3003,14,1,f +15907,3004,14,2,f +15907,30043,0,1,f +15907,3007,14,1,f +15907,3010,2,3,f +15907,3020,14,5,f +15907,3020,0,3,f +15907,3021,70,2,f +15907,3022,2,4,f +15907,3023,72,1,f +15907,3023,36,2,f +15907,3024,182,2,f +15907,30293,72,2,f +15907,30294,72,2,f +15907,3031,72,1,f +15907,3032,71,1,f +15907,3034,0,1,f +15907,3034,14,2,f +15907,30363,14,4,f +15907,30365,72,2,f +15907,30388,14,4,f +15907,30391,0,4,f +15907,30414,15,1,f +15907,30553,72,1,f +15907,3068b,71,2,f +15907,3069b,36,2,f +15907,3069b,2,1,f +15907,3069b,182,1,f +15907,3176,14,2,f +15907,32073,71,1,f +15907,3245c,14,3,f +15907,3298,71,1,f +15907,3460,0,4,f +15907,3622,71,2,f +15907,3626cpr0933,14,1,f +15907,3626cpr0955,14,1,f +15907,3660,2,2,f +15907,3666,71,4,f +15907,3666,2,7,f +15907,3673,71,1,t +15907,3673,71,4,f +15907,3710,4,2,f +15907,3710,1,1,f +15907,3710,0,2,f +15907,3710,2,2,f +15907,3710,71,2,f +15907,3713,4,1,t +15907,3713,4,1,f +15907,3749,19,1,f +15907,3795,71,2,f +15907,3795,4,1,f +15907,3821,2,1,f +15907,3822,2,1,f +15907,3823,40,1,f +15907,3829c01,4,1,f +15907,3841,72,1,f +15907,3899,14,1,f +15907,3958,14,1,f +15907,4032a,72,1,f +15907,4085c,0,6,f +15907,41532,0,1,f +15907,41539,72,1,f +15907,4176,40,1,f +15907,4286,72,4,f +15907,44301a,0,2,f +15907,44301a,4,2,f +15907,44302a,0,2,f +15907,44728,0,4,f +15907,44728,1,4,f +15907,4488,0,2,f +15907,45677,14,1,f +15907,4589,182,2,f +15907,47457,71,2,f +15907,47508,0,1,f +15907,48336,4,4,f +15907,4865b,14,2,f +15907,50745,72,2,f +15907,52031,0,1,f +15907,52031,2,1,f +15907,52107,4,2,f +15907,54200,2,4,f +15907,54200,47,2,f +15907,54200,47,1,t +15907,54200,2,1,t +15907,54200,72,2,f +15907,54200,72,1,t +15907,55981,71,5,f +15907,58176,182,4,f +15907,59443,70,1,f +15907,6014b,71,10,f +15907,61184,71,2,f +15907,6141,297,1,t +15907,6141,297,8,f +15907,61485,0,1,f +15907,61678,0,2,f +15907,61678,14,4,f +15907,6191,14,2,f +15907,6249,71,2,f +15907,64713,179,1,f +15907,64728,4,1,f +15907,6636,4,2,f +15907,6636,71,1,f +15907,6636,14,2,f +15907,84954,40,1,f +15907,85984,2,2,f +15907,85984,0,3,f +15907,86035,4,1,f +15907,87058,71,1,f +15907,87079,2,1,f +15907,87079,14,3,f +15907,87079,0,2,f +15907,87081,72,1,f +15907,87544,2,2,f +15907,87552,40,2,f +15907,87609,2,3,f +15907,87617,0,2,f +15907,87620,14,2,f +15907,87697,0,10,f +15907,91988,72,1,f +15907,92280,71,2,f +15907,92582,4,1,f +15907,92593,72,1,f +15907,970c00,28,1,f +15907,970c00,379,1,f +15907,973pr0250c01,320,1,f +15907,973pr2037c01,272,1,f +15907,98138,47,1,f +15907,98138,47,1,t +15907,98289,179,1,f +15909,12622,0,1,f +15909,15068,0,1,f +15909,2412b,14,1,f +15909,2431pr0017,14,1,f +15909,3001,28,4,f +15909,3001,19,4,f +15909,3002,4,2,f +15909,3003,19,2,f +15909,3003,14,1,f +15909,3003,28,2,f +15909,3020,70,1,f +15909,3022,14,1,f +15909,30386,14,2,f +15909,30387,14,1,f +15909,3039,0,2,f +15909,30394,0,1,f +15909,30395,72,1,f +15909,30396,0,1,f +15909,3062b,321,8,f +15909,30663,71,1,f +15909,3622,14,2,f +15909,3626cpr0389,14,1,f +15909,3829c01,1,1,f +15909,3833,4,1,f +15909,3837,72,1,f +15909,4006,0,1,f +15909,4079,70,1,f +15909,4083,0,1,f +15909,4175,71,2,f +15909,47905,71,2,f +15909,59900,57,1,f +15909,6014b,14,4,f +15909,60477,14,2,f +15909,6126b,41,1,f +15909,64450,0,1,f +15909,74698,0,1,f +15909,87580,72,2,f +15909,87697,0,4,f +15909,92280,71,2,f +15909,92582,71,2,f +15909,93273,14,2,f +15909,970c00,25,1,f +15909,973pr1182c01,25,1,f +15911,11198,322,2,f +15911,11335,4,2,f +15911,11345,322,1,f +15911,11371,484,1,f +15911,12057,15,1,f +15911,12061,484,1,f +15911,12651,1,2,f +15911,13355,0,1,f +15911,13607,321,1,f +15911,14013,71,1,f +15911,14923,191,1,f +15911,15319,71,1,f +15911,15320,71,1,f +15911,15454pr0001,321,1,f +15911,15580,191,14,f +15911,15582,15,1,f +15911,15894,15,2,f +15911,15899,4,1,f +15911,15954,27,1,f +15911,15965,27,1,f +15911,15994,484,1,f +15911,16087,4,2,f +15911,16236,191,1,f +15911,16874,15,3,f +15911,2206,15,3,f +15911,23230,25,1,f +15911,3011,4,2,f +15911,31023,15,1,f +15911,31041,25,1,f +15911,31110,4,4,f +15911,31110,14,2,f +15911,3437,10,2,f +15911,3437,14,5,f +15911,3437,191,5,f +15911,3437,27,7,f +15911,3626cpr1205,15,1,f +15911,40666,14,4,f +15911,40666,70,2,f +15911,40666,4,1,f +15911,40666,1,2,f +15911,40666,10,2,f +15911,4196,10,2,f +15911,44524,10,2,f +15911,44524,4,3,f +15911,47510pr0001,29,1,f +15911,47511pr0003,15,1,f +15911,58057pr01,19,1,f +15911,58086,70,2,f +15911,61310,10,2,f +15911,61649,4,1,f +15911,61896,484,2,f +15911,63710pr0013,19,1,f +15911,6474,4,6,f +15911,6497,15,1,f +15911,6510,10,2,f +15911,6510,25,2,f +15911,75121,15,1,f +15911,76371,14,4,f +15911,76371,4,12,f +15911,87651,308,2,f +15911,89406,15,1,f +15911,92094,4,1,f +15911,92328,92,2,f +15911,92938,1,1,f +15911,98239,2,2,f +15911,98460,70,8,f +15912,10183,40,1,f +15912,20598pat01,0,1,f +15912,88646,0,1,f +15912,970c00pr0912,0,1,f +15912,973pr0972c01,0,1,f +15914,3626bpr0387,14,1,f +15914,41334,0,1,f +15914,970c00,1,1,f +15914,973pr1244c01,73,1,f +15916,45464,52,1,f +15916,clikits078,22,1,f +15916,clikits108,45,1,f +15917,3021,15,1,f +15917,3022,322,2,f +15917,3023,15,3,f +15917,3069b,322,4,f +15917,3069bpr0055,15,1,f +15917,3794b,15,1,f +15918,10201,1,1,f +15918,11477,1,1,f +15918,11477,14,2,f +15918,11477,4,2,f +15918,15068,4,2,f +15918,15573,0,1,f +15918,15573,4,1,f +15918,16770,1,2,f +15918,18051pr0002,1,1,f +15918,18868b01,46,2,f +15918,19981pr0059,46,1,f +15918,21445,0,4,f +15918,2420,15,4,f +15918,2540,1,2,f +15918,26047,0,4,f +15918,28317,1,1,f +15918,30028,0,4,f +15918,3020,15,1,f +15918,3020,14,1,f +15918,3021,4,3,f +15918,3021,72,1,f +15918,3023,1,4,f +15918,3023,4,2,f +15918,30340,14,1,f +15918,3069b,14,2,f +15918,3666,4,1,f +15918,3710,1,1,f +15918,3710,4,2,f +15918,3794b,15,2,f +15918,3941,46,2,f +15918,4032a,72,1,f +15918,4032a,15,1,f +15918,4032a,0,1,f +15918,4599b,0,1,t +15918,4599b,0,2,f +15918,4697b,71,1,f +15918,4697b,71,1,t +15918,49668,15,2,f +15918,54200,0,2,f +15918,54200,0,1,t +15918,54200,47,1,t +15918,54200,4,1,t +15918,54200,41,1,t +15918,54200,1,1,t +15918,54200,4,1,f +15918,54200,41,1,f +15918,54200,1,2,f +15918,54200,47,2,f +15918,59900,0,2,f +15918,61252,71,4,f +15918,74967,4,4,f +15918,85861,0,1,t +15918,85861,0,4,f +15918,85861,14,3,f +15918,85861,71,4,f +15918,85861,14,1,t +15918,87087,4,2,f +15918,93273,1,2,f +15918,970c00pr1123,1,1,f +15918,973pr3499c01,1,1,f +15920,2921,0,2,f +15920,30141,8,1,f +15920,30147,8,1,f +15920,30150,6,1,f +15920,30157,8,2,f +15920,30162,8,1,f +15920,3023,14,1,f +15920,3034,8,1,f +15920,3626bpx127,14,1,f +15920,3829c01,14,1,f +15920,3878,0,1,f +15920,42610,7,4,f +15920,43719,0,1,f +15920,4865a,47,1,f +15920,51011,0,4,f +15920,6141,0,1,f +15920,6141,46,1,t +15920,6141,46,2,f +15920,6141,0,1,t +15920,970c00,8,1,f +15920,973px181c01,0,1,f +15922,2341,71,1,f +15922,2412b,320,3,f +15922,2431,71,3,f +15922,2445,72,1,f +15922,2450,71,2,f +15922,2555,71,2,f +15922,2877,71,2,f +15922,3010,71,1,f +15922,30162,72,4,f +15922,3021,72,3,f +15922,3023,72,1,f +15922,3024,72,2,f +15922,3040b,71,1,f +15922,3062b,72,4,f +15922,3710,71,5,f +15922,3795,72,1,f +15922,3941,47,1,f +15922,4081b,71,2,f +15922,4162,320,2,f +15922,41769,71,5,f +15922,41770,71,5,f +15922,42446,72,2,f +15922,4286,71,5,f +15922,43722,71,1,f +15922,43723,71,1,f +15922,47397,71,2,f +15922,47398,71,2,f +15922,47457,4,1,f +15922,54383,71,2,f +15922,54384,71,2,f +15922,61184,71,2,f +15922,6141,41,5,f +15922,6141,41,1,t +15922,6141,19,1,t +15922,6141,71,1,t +15922,6141,19,2,f +15922,6141,71,4,f +15922,6636,71,2,f +15923,3001a,15,1,f +15923,3001a,4,2,f +15923,3001a,1,1,f +15923,3003,1,2,f +15923,3003,4,2,f +15923,3003,14,1,f +15923,3003,15,1,f +15923,3003,0,2,f +15923,3003pe1,14,1,f +15923,3004,14,2,f +15923,3004,0,2,f +15923,3004,15,1,f +15923,3004,1,2,f +15923,3004,47,1,f +15923,3004,4,4,f +15923,3005,14,2,f +15923,3007,4,1,f +15923,3020,4,1,f +15923,3021,4,1,f +15923,3137c01,0,2,f +15923,3641,0,4,f +15925,2362a,15,2,f +15925,2432,7,1,f +15925,2445,15,1,f +15925,2446,4,2,f +15925,2447,41,1,t +15925,2447,41,2,f +15925,2458,15,1,f +15925,2460,0,1,f +15925,2479,7,1,f +15925,2483,41,1,f +15925,2610,14,2,f +15925,2744,7,2,f +15925,2823,15,2,f +15925,298c02,0,1,f +15925,298c02,4,1,t +15925,298c02,4,2,f +15925,298c02,0,1,t +15925,3003,15,1,f +15925,3004,15,1,f +15925,3005,15,5,f +15925,3020,1,1,f +15925,3022,7,1,f +15925,3023,0,2,f +15925,3023,15,2,f +15925,3023,1,1,f +15925,3024,36,1,f +15925,3024,15,8,f +15925,3032,15,1,f +15925,3035,1,1,f +15925,3035,15,1,f +15925,3068b,15,1,f +15925,3069b,15,4,f +15925,3069bp02,7,1,f +15925,3070b,15,1,f +15925,3070b,15,1,t +15925,3176,0,1,f +15925,3460,4,2,f +15925,3622,15,1,f +15925,3623,15,1,f +15925,3626bp04,14,1,f +15925,3626bpr0001,14,2,f +15925,3660,15,1,f +15925,3660,4,2,f +15925,3666,4,2,f +15925,3666,1,1,f +15925,3679,7,1,f +15925,3680,15,1,f +15925,3710,15,3,f +15925,3710,4,2,f +15925,3710,1,1,f +15925,3747b,4,2,f +15925,3794a,4,1,f +15925,3794a,15,4,f +15925,3795,4,2,f +15925,3901,0,1,f +15925,3937,15,1,f +15925,3938,1,1,f +15925,4081b,0,1,f +15925,4081b,15,3,f +15925,4085c,4,1,f +15925,4162,15,2,f +15925,4208,0,1,f +15925,4209pb01,15,1,f +15925,4215a,41,1,f +15925,4262,0,1,f +15925,4286,15,4,f +15925,4287,15,2,f +15925,4315,15,1,f +15925,4360,0,1,f +15925,4477,15,2,f +15925,4477,1,1,f +15925,4477,4,2,f +15925,4477,0,4,f +15925,4590,15,1,f +15925,4590,0,1,f +15925,4617b,0,1,f +15925,476,4,1,f +15925,4856a,15,1,f +15925,4858,15,1,f +15925,4859,15,1,f +15925,4868a,15,2,f +15925,4869,7,2,f +15925,56823,0,1,f +15925,6140,0,2,f +15925,6141,46,1,t +15925,6141,34,1,t +15925,6141,36,3,f +15925,6141,34,2,f +15925,6141,36,1,t +15925,6141,46,4,f +15925,6342stk01,9999,1,t +15925,63965,4,2,f +15925,73590c01a,15,1,f +15925,970c00,4,2,f +15925,970x026,14,1,f +15925,973c11,0,1,f +15925,973p0ac04,4,2,f +15925,x66px8,47,1,f +15926,3003,15,1,f +15926,3004,15,1,f +15926,3004px22,15,1,f +15926,3010,47,2,f +15926,3010pb031,15,8,f +15926,3031,4,1,f +15926,3032,4,4,f +15926,3137c01,0,8,f +15926,3139,0,16,f +15926,3183b,4,4,f +15926,3184,4,3,f +15928,x469bc,7,1,f +15930,2335,14,1,f +15930,2335,4,1,f +15930,2335,15,2,f +15930,2436,4,4,f +15930,2444,71,6,f +15930,2780,0,1,t +15930,2780,0,14,f +15930,30027b,0,8,f +15930,30028,0,8,f +15930,3023,4,4,f +15930,3024,4,4,f +15930,3034,0,2,f +15930,3034,71,2,f +15930,30374,15,1,f +15930,3068b,15,2,f +15930,3068b,71,1,f +15930,3069b,4,6,f +15930,32073,71,2,f +15930,32316,71,4,f +15930,3623,4,6,f +15930,3794b,4,14,f +15930,3794b,0,4,f +15930,40490,71,1,f +15930,4162,15,2,f +15930,4274,71,1,t +15930,4274,71,4,f +15930,43093,1,4,f +15930,43857,71,1,f +15930,50950,4,2,f +15930,54200,4,1,t +15930,54200,4,12,f +15930,59443,71,4,f +15930,6141,0,1,t +15930,6141,0,1,f +15930,6141,14,1,t +15930,6141,14,1,f +15930,6157,0,4,f +15930,61678,4,2,f +15930,6179,15,1,f +15930,63965,15,3,f +15930,64700,4,1,f +15930,86501,72,1,f +15931,3034,8,2,f +15931,3062a,0,2,f +15931,3795,8,2,f +15931,767,8,6,f +15931,x878cx2,7,1,f +15931,x879cx2,7,1,f +15932,15976,0,2,f +15932,16770,182,4,f +15932,18575,0,2,f +15932,19049,42,1,f +15932,19050,42,1,f +15932,20473,57,1,f +15932,24148,42,1,f +15932,24165,0,4,f +15932,24188,148,1,f +15932,24189,148,1,f +15932,24190,0,1,f +15932,24316,70,1,f +15932,25528,148,1,f +15932,25531,0,1,f +15932,25534,40,2,f +15932,2780,0,2,f +15932,30553,72,4,f +15932,32015,0,4,f +15932,32039,0,6,f +15932,32062,4,18,f +15932,32072,0,1,f +15932,32123b,71,2,f +15932,32184,0,2,f +15932,32270,0,3,f +15932,41532,0,4,f +15932,41669,57,2,f +15932,41678,0,4,f +15932,43093,1,2,f +15932,44294,71,1,f +15932,4519,71,2,f +15932,50923,72,2,f +15932,53451,25,6,f +15932,53585,0,1,f +15932,60483,0,1,f +15932,64276,484,2,f +15932,74261,72,2,f +15932,87083,72,1,f +15932,90609,57,4,f +15932,90617,72,2,f +15932,90640,0,5,f +15932,93571,0,5,f +15932,98577,72,1,f +15932,98603s02pr0022,0,1,f +15933,11055,15,1,f +15933,11211,15,5,f +15933,11407pr0108,27,1,f +15933,11477,191,2,f +15933,11477,85,4,f +15933,11610,19,1,f +15933,11816pr0001,84,1,f +15933,11816pr0011,78,1,f +15933,11833,191,1,f +15933,11833,47,1,f +15933,14769,322,2,f +15933,14769,85,2,f +15933,14769,15,1,f +15933,14769pr0009,15,1,f +15933,15068,191,2,f +15933,15068,15,8,f +15933,15254,15,3,f +15933,15254,19,2,f +15933,15395,15,1,f +15933,15470,29,1,t +15933,15470,29,1,f +15933,15712,71,3,f +15933,16577,15,2,f +15933,18853,29,1,t +15933,18853,29,1,f +15933,18854,45,1,t +15933,18854,45,1,f +15933,18980,27,2,f +15933,20482,47,1,f +15933,20482,47,1,t +15933,22667,26,3,f +15933,22667,26,2,t +15933,22888,15,2,f +15933,22888,27,1,f +15933,2343,47,2,f +15933,2357,85,2,f +15933,2357,15,1,f +15933,23969,41,1,f +15933,2412b,72,10,f +15933,2420,15,2,f +15933,2420,27,2,f +15933,2423,2,8,f +15933,2431,5,3,f +15933,2449,15,2,f +15933,2453b,15,4,f +15933,2453b,19,2,f +15933,2454a,15,2,f +15933,25269pr02,2,1,t +15933,25269pr02,2,1,f +15933,2540,71,1,f +15933,2540,4,1,f +15933,2654,47,1,f +15933,2654,4,1,f +15933,27507,5,2,f +15933,27976,191,1,f +15933,27976,322,1,f +15933,28321,0,1,f +15933,28387,322,2,f +15933,28466,191,1,f +15933,30000,71,1,f +15933,3001,25,2,f +15933,3001,85,4,f +15933,3001,15,2,f +15933,3002,27,2,f +15933,3002,15,2,f +15933,3003,15,1,f +15933,3003,25,2,f +15933,3004,15,14,f +15933,3004,322,3,f +15933,3004,85,4,f +15933,3004,19,6,f +15933,3004,5,1,f +15933,3005,15,4,f +15933,3005,41,4,f +15933,3005,85,8,f +15933,3005,72,1,f +15933,3005,19,2,f +15933,3009,15,1,f +15933,3009,25,1,f +15933,3009,19,1,f +15933,30093,288,1,f +15933,3010,27,2,f +15933,3010,15,2,f +15933,30136,84,7,f +15933,30136,19,6,f +15933,30137,84,4,f +15933,30151b,47,1,f +15933,30176,2,6,f +15933,3020,85,3,f +15933,3020,15,4,f +15933,3020,191,1,f +15933,3020,27,3,f +15933,3021,27,1,f +15933,3021,85,3,f +15933,3022,191,1,f +15933,3022,71,1,f +15933,3023,19,5,f +15933,3023,5,2,f +15933,3023,15,6,f +15933,3023,322,1,f +15933,3023,27,5,f +15933,30237b,15,2,f +15933,3024,15,3,f +15933,3024,25,1,t +15933,3024,15,2,t +15933,3024,27,2,t +15933,3024,25,2,f +15933,3024,27,4,f +15933,3027,27,1,f +15933,3030,19,2,f +15933,3031,27,1,f +15933,3032,27,2,f +15933,3032,19,1,f +15933,3032,322,2,f +15933,3034,15,3,f +15933,3035,322,1,f +15933,3035,19,1,f +15933,30357,19,2,f +15933,3036,27,1,f +15933,3040b,19,2,f +15933,3040b,72,1,f +15933,30562,47,2,f +15933,30565,322,4,f +15933,3062b,15,1,f +15933,3062b,27,2,f +15933,3068b,27,1,f +15933,3068b,15,2,f +15933,3068b,5,2,f +15933,3068bpr0255,15,1,f +15933,3069b,25,1,f +15933,3069b,191,5,f +15933,3069b,322,1,f +15933,3069b,5,6,f +15933,3069b,47,5,f +15933,3069b,85,1,f +15933,3069b,15,1,f +15933,3069bpr0100,2,1,f +15933,3070b,5,6,f +15933,3070b,5,2,t +15933,32062,4,1,f +15933,32064a,71,1,f +15933,33183,10,5,f +15933,33183,10,3,t +15933,33243,191,2,f +15933,33243,15,2,f +15933,33291,31,4,f +15933,33291,10,7,f +15933,33291,31,3,t +15933,33291,5,3,t +15933,33291,5,17,f +15933,33291,25,3,t +15933,33291,4,10,f +15933,33291,4,2,t +15933,33291,10,2,t +15933,33291,25,18,f +15933,3460,15,2,f +15933,3622,15,3,f +15933,3623,19,2,f +15933,3623,15,2,f +15933,3626cpr1296a,14,1,f +15933,3659,15,1,f +15933,3666,85,1,f +15933,3666,25,2,f +15933,3700,19,2,f +15933,3700,0,4,f +15933,3710,5,2,f +15933,3710,19,3,f +15933,3710,15,1,f +15933,3710,191,1,f +15933,3710,322,2,f +15933,3794b,15,4,f +15933,3795,25,2,f +15933,3795,27,2,f +15933,3795,71,2,f +15933,3941,4,3,f +15933,3941,85,1,f +15933,4032a,19,1,f +15933,4032a,15,2,f +15933,4032a,322,2,f +15933,4070,71,1,f +15933,4175,191,1,f +15933,43888,84,4,f +15933,44728,71,1,f +15933,4476b,15,1,f +15933,4495b,5,2,f +15933,45590,0,1,f +15933,4599b,71,1,f +15933,4599b,71,1,t +15933,4740,71,4,f +15933,48092,322,2,f +15933,48092,85,4,f +15933,48092,15,6,f +15933,4865b,322,2,f +15933,52107,15,1,f +15933,54200,47,1,t +15933,54200,322,2,f +15933,54200,72,1,t +15933,54200,72,1,f +15933,54200,322,1,t +15933,54200,47,2,f +15933,59349,19,1,f +15933,59349,41,1,f +15933,6003,322,2,f +15933,6020,71,3,f +15933,60475b,71,2,f +15933,60481,15,2,f +15933,60583b,15,2,f +15933,60594,72,2,f +15933,60614,72,2,f +15933,60800a,5,2,f +15933,60897,27,1,f +15933,6091,322,2,f +15933,61252,72,1,f +15933,6141,322,5,f +15933,6141,27,1,t +15933,6141,4,4,f +15933,6141,71,2,t +15933,6141,158,5,f +15933,6141,322,2,t +15933,6141,71,4,f +15933,6141,1,1,t +15933,6141,70,1,f +15933,6141,4,1,t +15933,6141,27,4,f +15933,6141,158,1,t +15933,6141,1,2,f +15933,6141,41,3,t +15933,6141,41,12,f +15933,6141,70,1,t +15933,6179,5,1,f +15933,6254,191,1,f +15933,63965,71,1,f +15933,63965,15,2,f +15933,64648,25,1,f +15933,6636,5,3,f +15933,72824,25,1,f +15933,85080,15,4,f +15933,85080,322,4,f +15933,85861,15,1,t +15933,85861,15,1,f +15933,87079,15,1,f +15933,87079,25,2,f +15933,87079,0,1,f +15933,87087,70,3,f +15933,87552,19,2,f +15933,87552,41,9,f +15933,87580,322,1,f +15933,87994,15,1,t +15933,87994,15,1,f +15933,88072,71,2,f +15933,88293,191,2,f +15933,91405,322,1,f +15933,92456pr0214c01,84,1,f +15933,92456pr0215c01,78,1,f +15933,92820pr0009c01,322,1,f +15933,93092,191,1,f +15933,93352,308,1,f +15933,95347,27,2,f +15933,96874,25,1,f +15933,98138,15,1,f +15933,98138,41,1,t +15933,98138,41,3,f +15933,98138,15,1,t +15933,98138pr0024a,179,1,f +15933,98138pr0024a,179,1,t +15933,98549,71,1,f +15933,99207,15,2,f +15933,99780,71,2,f +15935,2431,0,1,f +15935,2432,72,1,f +15935,2446,15,1,f +15935,2447,82,1,t +15935,2447,82,1,f +15935,2456,71,1,f +15935,2456,15,1,f +15935,2540,25,8,f +15935,2654,0,1,f +15935,2780,0,2,f +15935,2780,0,1,t +15935,30000,72,2,f +15935,3002,72,4,f +15935,3004,72,4,f +15935,30153,42,3,f +15935,3020,15,1,f +15935,3020,71,3,f +15935,3021,71,1,f +15935,3021,72,12,f +15935,3022,71,1,f +15935,3023,71,4,f +15935,3023,72,3,f +15935,30283,0,1,f +15935,3034,0,1,f +15935,3035,0,1,f +15935,30374,71,1,f +15935,30377,0,1,t +15935,30377,0,4,f +15935,30383,72,3,f +15935,30388,0,1,f +15935,3040b,0,4,f +15935,30505,0,2,f +15935,30540,71,4,f +15935,30541,0,4,f +15935,30553,0,1,f +15935,3062b,72,4,f +15935,3068b,0,2,f +15935,3070b,15,2,f +15935,3070b,15,1,t +15935,3176,72,2,f +15935,32000,71,2,f +15935,32013,15,1,f +15935,32018,72,1,f +15935,32054,71,1,f +15935,32062,4,1,f +15935,32125,71,1,f +15935,32531,0,1,f +15935,3626bpr0335,14,1,f +15935,3647,71,1,t +15935,3647,71,1,f +15935,3673,71,4,f +15935,3700,0,3,f +15935,3702,71,2,f +15935,3710,15,2,f +15935,3794a,72,1,f +15935,3832,72,1,f +15935,3832,15,1,f +15935,3839b,0,1,f +15935,3894,0,5,f +15935,3941,42,2,f +15935,3942c,0,1,f +15935,4032a,72,2,f +15935,40340,0,1,f +15935,40378,27,2,f +15935,4070,72,4,f +15935,4150,0,6,f +15935,41532,0,1,f +15935,41747,0,1,f +15935,41748,0,1,f +15935,41767,72,1,f +15935,41768,72,1,f +15935,41769,0,1,f +15935,41770,0,1,f +15935,41862,71,1,f +15935,41883,182,1,f +15935,4274,1,14,f +15935,4274,1,1,t +15935,43093,1,4,f +15935,44676,15,4,f +15935,4477,0,1,f +15935,4589,33,2,f +15935,4589,42,17,f +15935,4716,0,1,f +15935,4740,42,3,f +15935,47457,15,1,f +15935,48336,15,1,f +15935,48336,71,1,f +15935,4865a,15,1,f +15935,50304,0,2,f +15935,50305,0,2,f +15935,50955,0,1,f +15935,50956,0,1,f +15935,53451,4,1,t +15935,53451,4,2,f +15935,54200,36,2,f +15935,54200,27,2,f +15935,57906,27,3,f +15935,58843,15,1,f +15935,58844pat0001,34,2,f +15935,58845,34,2,f +15935,58846,0,4,f +15935,59426,72,1,f +15935,6019,72,2,f +15935,6019,0,2,f +15935,6106,0,2,f +15935,6118,25,4,f +15935,6141,182,2,f +15935,6141,182,1,t +15935,6141,42,2,f +15935,6141,42,1,t +15935,6636,15,3,f +15935,73983,0,2,f +15935,970x194,15,1,f +15935,973pr1317c01,15,1,f +15938,2352,4,2,f +15938,2456,14,2,f +15938,2456,15,2,f +15938,2456,4,2,f +15938,2577,1,4,f +15938,3001,4,48,f +15938,3001,0,14,f +15938,3001,1,38,f +15938,3001,14,30,f +15938,3001,15,20,f +15938,3001p11,4,1,f +15938,3001pr1,14,1,f +15938,3002,14,8,f +15938,3002,0,4,f +15938,3002,15,6,f +15938,3002,4,12,f +15938,3002,1,12,f +15938,3003,15,30,f +15938,3003,14,42,f +15938,3003,0,18,f +15938,3003,1,48,f +15938,3003,4,64,f +15938,3003pe1,4,2,f +15938,3003pe1,14,2,f +15938,3003pe2,15,2,f +15938,3003pe4,15,2,f +15938,3003pe5,15,2,f +15938,3006,1,2,f +15938,3185,14,8,f +15938,3470,2,1,f +15938,3483,0,4,f +15938,3997,4,1,f +15938,4130,4,2,f +15938,4131,14,2,f +15938,4132,4,3,f +15938,4133,14,3,f +15938,4180c02,0,2,f +15938,4204,2,1,f +15938,4727,2,4,f +15938,4728,15,2,f +15938,4728,1,2,f +15938,4730,1,1,f +15938,4743,14,1,f +15938,4744,1,1,f +15938,4744,4,2,f +15938,4744pr0001,0,1,f +15938,4744pr0002,4,1,f +15938,4745,14,1,f +15938,6007,8,1,f +15938,fabhook,4,1,f +15939,2432,19,1,f +15939,2446pb04,4,1,f +15939,2447,40,1,t +15939,2447,40,1,f +15939,2540,0,1,f +15939,30027b,19,4,f +15939,30028,0,4,f +15939,30028,0,1,t +15939,3023,19,2,f +15939,30602pb006,4,1,f +15939,30603,0,2,f +15939,3626bpb0166,8,1,f +15939,41854pb3,19,1,f +15939,41861c01,7,1,f +15939,44675,19,1,f +15939,44728,8,2,f +15939,45179,8,1,f +15939,6141,4,4,f +15939,6141,4,1,t +15939,6157,0,1,f +15939,x351,8,1,f +15940,2357,1,4,f +15940,2357,4,2,f +15940,2420,15,4,f +15940,3004,15,7,f +15940,3004,4,30,f +15940,3004,2,16,f +15940,3004,14,25,f +15940,3005,15,1,f +15940,3009,14,6,f +15940,3009,2,4,f +15940,3009,1,4,f +15940,3009,4,7,f +15940,3010,2,4,f +15940,3010,4,5,f +15940,3010,14,5,f +15940,3023,4,8,f +15940,3030,2,2,f +15940,3068bpr0163,15,1,f +15940,3626bpr0891,14,1,f +15940,3666,4,2,f +15940,3710,4,4,f +15940,3795,72,1,f +15940,3832,2,1,f +15940,3833,4,1,f +15940,3899,14,1,f +15940,3900,71,1,f +15940,4287,72,2,f +15940,6141,80,1,f +15940,62462,15,1,f +15940,87087,15,2,f +15940,970c00,1,1,f +15940,973pr1580c01,15,1,f +15940,pcl004,9999,2,f +15941,2335pr02,15,1,f +15941,2343,14,1,f +15941,2412b,7,2,f +15941,2412b,0,3,f +15941,2412b,1,2,f +15941,2431,7,4,f +15941,2431,15,2,f +15941,2431,2,3,f +15941,2432,4,1,f +15941,2437,40,1,f +15941,2445,7,3,f +15941,2446px5,2,1,f +15941,2447,42,1,f +15941,2456,8,3,f +15941,2456px1,15,1,f +15941,2460,14,4,f +15941,2476a,1,4,f +15941,2540,0,2,f +15941,2555,15,2,f +15941,2654,15,4,f +15941,2780,0,16,f +15941,30000,2,2,f +15941,30000,1,2,f +15941,30000,8,4,f +15941,3001,14,8,f +15941,3001,15,2,f +15941,3001,0,9,f +15941,3002,14,1,f +15941,3003,0,6,f +15941,3003px2,15,1,f +15941,3004,7,10,f +15941,3004,1,1,f +15941,3006,7,2,f +15941,3009,15,1,f +15941,3010,2,2,f +15941,30104,8,1,f +15941,30157,7,2,f +15941,30170,0,1,f +15941,30171,1,1,f +15941,30182,15,1,f +15941,3020,15,2,f +15941,3020,4,1,f +15941,3021,1,1,f +15941,3023,42,2,f +15941,3023,4,1,f +15941,30236,8,4,f +15941,3024,36,2,f +15941,3024,42,2,f +15941,30285,15,4,f +15941,3029,0,1,f +15941,3029,14,1,f +15941,30292,14,4,f +15941,3030,15,1,f +15941,30322,4,1,f +15941,30322,1,1,f +15941,3034,7,2,f +15941,30364,8,2,f +15941,30365,7,2,f +15941,3037,15,1,f +15941,30388,7,1,f +15941,30389a,7,1,f +15941,3039,42,4,f +15941,30391,0,4,f +15941,30395,8,1,f +15941,30396,4,1,f +15941,30400,0,1,f +15941,3040b,42,8,f +15941,30414,7,2,f +15941,30414,2,1,f +15941,30498,8,1,f +15941,3062b,4,4,f +15941,3062b,14,4,f +15941,3068b,7,2,f +15941,3069b,15,2,f +15941,32059,15,1,f +15941,32316,14,4,f +15941,32316,4,4,f +15941,3622,1,2,f +15941,3622,7,4,f +15941,3626bp03,14,1,f +15941,3626bp6f,14,1,f +15941,3626bpb0031,14,1,f +15941,3626bpr0001,14,1,f +15941,3660,7,5,f +15941,3666,2,4,f +15941,3666,15,1,f +15941,3684,7,6,f +15941,3700,15,8,f +15941,3710,1,4,f +15941,3749,7,8,f +15941,3795,4,2,f +15941,3829c01,4,1,f +15941,3829c01,7,2,f +15941,3832,0,2,f +15941,3937,0,2,f +15941,3938,7,2,f +15941,3941,15,1,f +15941,3941,57,6,f +15941,3942c,0,2,f +15941,3957a,15,1,f +15941,3958,2,2,f +15941,4032a,15,1,f +15941,4032a,2,1,f +15941,4032a,4,1,f +15941,4079,4,1,f +15941,4079,7,1,f +15941,4162,8,4,f +15941,4176,41,1,f +15941,43337,2,2,f +15941,4349,4,1,f +15941,4477,1,2,f +15941,4485,4,1,f +15941,4485,0,1,f +15941,4530,2,1,f +15941,4599a,4,3,f +15941,55295,0,1,f +15941,55296,0,1,f +15941,55297,0,1,f +15941,55298,0,1,f +15941,55299,0,1,f +15941,55300,0,1,f +15941,6019,7,2,f +15941,6019,0,8,f +15941,6081,7,2,f +15941,6126a,57,2,f +15941,6140,15,2,f +15941,6141,57,17,f +15941,6141,42,2,f +15941,6141,42,1,t +15941,6141,57,3,t +15941,6152,33,1,f +15941,6187,0,1,f +15941,6259,6,8,f +15941,6564,15,1,f +15941,6564,2,1,f +15941,6564,1,3,f +15941,6565,15,1,f +15941,6565,2,1,f +15941,6565,1,3,f +15941,6581,0,8,f +15941,6582,7,4,f +15941,6582,15,4,f +15941,6583,7,1,f +15941,75535,4,4,f +15941,75535,14,4,f +15941,970c00,1,1,f +15941,970c00,2,2,f +15941,970x026,8,1,f +15941,973pb0013c01,15,1,f +15941,973pb0022c01,15,1,f +15941,973pr1190c01,0,1,f +15941,973px130c01,15,1,f +15941,rb00168,0,3,t +15941,rb00168,0,4,f +15942,2357,70,6,f +15942,2376,0,1,f +15942,2397,72,1,f +15942,2431,308,11,f +15942,2489,308,1,f +15942,2555,288,1,f +15942,2555,72,1,f +15942,2570,148,1,f +15942,2817,71,1,f +15942,2877,70,2,f +15942,2926,0,1,f +15942,3003,14,3,f +15942,3003,72,4,f +15942,3004,28,10,f +15942,3004,71,1,f +15942,3004,72,5,f +15942,30044,71,6,f +15942,30046,0,3,f +15942,3005,70,29,f +15942,3005,19,4,f +15942,3005,72,18,f +15942,3007,19,1,f +15942,3008,70,5,f +15942,3009,28,3,f +15942,3010,70,12,f +15942,30136,28,41,f +15942,30176,2,1,f +15942,3020,70,2,f +15942,3020,0,1,f +15942,3020,14,4,f +15942,3020,28,3,f +15942,3023,71,2,f +15942,3023,28,5,f +15942,30273,148,1,f +15942,3032,70,1,f +15942,3033,19,2,f +15942,3034,19,6,f +15942,3034,70,6,f +15942,3034,72,5,f +15942,30350b,70,6,f +15942,30367b,72,1,f +15942,30374,70,2,f +15942,30374,2,1,f +15942,3039,19,10,f +15942,3039,72,5,f +15942,30395,72,1,f +15942,3040b,72,2,f +15942,3040b,19,8,f +15942,3040b,28,12,f +15942,3062b,71,19,f +15942,3062b,15,3,f +15942,3062b,70,8,f +15942,3069b,308,8,f +15942,3069b,72,4,f +15942,3070b,72,1,t +15942,3070b,72,2,f +15942,32028,14,2,f +15942,32072,0,2,f +15942,32123b,14,5,f +15942,32123b,14,1,t +15942,3245b,71,2,f +15942,3298,70,4,f +15942,33051,10,2,f +15942,3307,19,1,f +15942,33299a,0,1,f +15942,3460,19,2,f +15942,3460,72,4,f +15942,3622,71,3,f +15942,3626bpr0541,14,1,f +15942,3626bpr0566,14,1,f +15942,3626bpr0751b,14,1,f +15942,3626bpr0752b,14,1,f +15942,3626bpr0754b,14,1,f +15942,3626bpr0755b,14,1,f +15942,3648b,72,1,f +15942,3659,72,6,f +15942,3660,70,7,f +15942,3666,72,4,f +15942,3666,70,4,f +15942,3678bpb035,73,1,f +15942,3679,71,2,f +15942,3680,1,1,f +15942,3680,15,1,f +15942,3684,72,4,f +15942,3700,72,2,f +15942,3700,14,1,f +15942,3705,0,4,f +15942,3710,70,15,f +15942,3713,4,2,f +15942,3713,4,1,t +15942,3737,0,1,f +15942,3738,14,1,f +15942,3738,0,1,f +15942,3749,19,1,f +15942,3794b,71,9,f +15942,3795,70,3,f +15942,3830,70,1,f +15942,3831,70,1,f +15942,3832,0,1,f +15942,3832,70,1,f +15942,3844,148,2,f +15942,3846pr0002,71,2,f +15942,3847,148,1,f +15942,3848,148,1,f +15942,3941,70,1,f +15942,3941,71,2,f +15942,4032a,484,9,f +15942,4151b,72,1,f +15942,41539,72,1,f +15942,41539,19,4,f +15942,4162,72,4,f +15942,41879a,70,1,f +15942,4207,70,1,f +15942,42610,71,1,f +15942,4287,70,4,f +15942,43093,1,2,f +15942,43888,70,4,f +15942,4460b,72,4,f +15942,4460b,70,16,f +15942,4477,72,8,f +15942,4489b,70,2,f +15942,4496,70,2,f +15942,4498,70,1,f +15942,4505,308,1,f +15942,4523,70,1,f +15942,4733,72,1,f +15942,4740,14,1,f +15942,48336,71,4,f +15942,48723,70,1,f +15942,49668,179,3,f +15942,52107,0,2,f +15942,56823c50,0,1,f +15942,57503,334,1,f +15942,57504,334,1,f +15942,57505,334,1,f +15942,57506,334,1,f +15942,59363,484,1,f +15942,59426,72,1,f +15942,59443,71,3,f +15942,59900,2,1,f +15942,59900,19,1,f +15942,60470a,0,4,f +15942,60474,71,1,f +15942,60475a,71,8,f +15942,60478,71,12,f +15942,60481,308,16,f +15942,60583b,0,1,f +15942,6108,70,4,f +15942,6111,71,1,f +15942,6141,27,1,t +15942,6141,27,4,f +15942,6141,14,1,t +15942,6141,0,6,f +15942,6141,0,2,t +15942,6141,4,2,f +15942,6141,70,1,f +15942,6141,70,1,t +15942,6141,14,2,f +15942,6141,4,1,t +15942,61485,0,1,f +15942,61510,71,1,f +15942,6231,71,4,f +15942,62462,0,2,f +15942,63864,72,4,f +15942,63868,14,8,f +15942,64390,70,1,f +15942,64644,308,1,f +15942,64647,272,1,f +15942,64647,272,1,t +15942,64951,70,1,f +15942,6541,71,2,f +15942,73983,72,1,f +15942,75998pr0003,71,1,f +15942,85970,19,8,f +15942,85984,19,10,f +15942,87081,72,1,f +15942,87601,70,2,f +15942,87621pr02,92,1,f +15942,88072,0,1,f +15942,88283,28,1,f +15942,92099,72,1,f +15942,92107,72,1,f +15942,92280,0,4,f +15942,92438,10,2,f +15942,92950,72,5,f +15942,94161,70,4,f +15942,95229,70,4,f +15942,95341pr01,15,2,f +15942,95342pr0001,28,1,f +15942,95342pr0001,15,2,f +15942,95343,70,2,f +15942,95344,70,1,t +15942,95344,70,2,f +15942,970c00,0,4,f +15942,970c00,70,1,f +15942,973pr1624c01,72,1,f +15942,973pr1625c01,288,2,f +15942,973pr1723c01,73,1,f +15942,973pr1724ac01,378,1,f +15942,973pr1725bc01,19,1,f +15944,12825,71,1,f +15944,3004,71,1,f +15944,3021,72,1,f +15944,3062b,72,2,f +15944,3794b,72,2,f +15944,3839b,71,1,f +15944,41769,71,1,f +15944,41770,71,1,f +15944,4286,71,1,f +15944,90194,71,1,f +15946,16542,14,1,f +15946,2340,15,2,f +15946,2412b,72,2,f +15946,2412b,15,7,f +15946,2444,15,1,f +15946,2445,0,1,f +15946,2445,72,2,f +15946,2446,15,1,f +15946,2447,40,2,f +15946,2447,40,2,t +15946,2465,71,2,f +15946,2479,0,1,f +15946,2516,14,1,f +15946,2555,71,2,f +15946,2584,0,1,f +15946,2585,71,1,f +15946,2877,71,2,f +15946,298c02,4,2,f +15946,298c02,4,1,t +15946,3001,1,5,f +15946,3002,14,1,f +15946,3005,4,2,f +15946,3005,71,2,f +15946,3009,4,1,f +15946,3010,14,2,f +15946,3010,72,1,f +15946,30162,72,1,f +15946,3020,4,2,f +15946,3020,71,2,f +15946,3021,72,1,f +15946,3021,14,2,f +15946,3022,4,2,f +15946,3023,14,3,f +15946,3023,46,3,f +15946,3023,15,2,f +15946,3024,36,6,f +15946,3024,34,2,f +15946,3024,15,2,f +15946,3030,15,2,f +15946,3031,72,1,f +15946,3032,72,2,f +15946,30332,0,1,f +15946,30374,14,5,f +15946,3039,15,2,f +15946,30395,72,1,f +15946,3039pr0005,15,2,f +15946,3039pr0013,15,1,f +15946,3040b,4,4,f +15946,30414,15,2,f +15946,30552,71,1,f +15946,30592,72,1,f +15946,30602,4,1,f +15946,3062b,41,20,f +15946,3062b,14,3,f +15946,3069b,33,2,f +15946,3069b,15,1,f +15946,3069bpr0090,72,1,f +15946,3069bpr0101,71,1,f +15946,3070bpr0007,71,1,f +15946,3070bpr0007,71,1,t +15946,3139,0,6,f +15946,32126,71,1,f +15946,32532,71,1,f +15946,3623,4,9,f +15946,3626bpr0314,14,1,f +15946,3626bpr0386,14,1,f +15946,3626bpr0389,14,1,f +15946,3665,4,6,f +15946,3666,0,2,f +15946,3666,4,5,f +15946,3666,71,2,f +15946,3673,71,1,f +15946,3673,71,1,t +15946,3710,15,8,f +15946,3749,19,1,f +15946,3795,15,4,f +15946,3821,4,1,f +15946,3822,4,1,f +15946,3829c01,14,1,f +15946,3834,15,2,f +15946,3835,0,2,f +15946,3838,14,1,f +15946,3937,15,1,f +15946,3960,15,1,f +15946,3962b,0,2,f +15946,4079,14,3,f +15946,4085c,71,2,f +15946,4176,41,1,f +15946,42023,15,4,f +15946,42023,4,2,f +15946,4274,1,4,f +15946,4274,1,1,t +15946,4282,15,1,f +15946,44126,15,2,f +15946,4445,4,2,f +15946,44568,71,1,f +15946,44569,4,1,f +15946,44728,72,4,f +15946,4488,71,4,f +15946,45677,4,1,f +15946,4589,14,1,f +15946,4599b,14,2,f +15946,4624,71,6,f +15946,47457,15,2,f +15946,4865a,47,2,f +15946,4870,71,2,f +15946,50745,72,4,f +15946,50943,71,4,f +15946,50950,71,2,f +15946,50950,15,4,f +15946,51739,15,1,f +15946,52031,15,1,f +15946,52107,14,1,f +15946,52501,72,2,f +15946,54200,15,2,f +15946,54200,15,1,t +15946,54200,4,1,t +15946,54200,4,4,f +15946,54384,15,1,f +15946,56890,0,4,f +15946,57587,4,1,f +15946,6014b,15,4,f +15946,60169,72,2,f +15946,60219,72,3,f +15946,60471,71,1,f +15946,60479,4,2,f +15946,60583a,4,4,f +15946,60601,41,8,f +15946,6081,72,1,f +15946,60849,14,4,f +15946,6112,72,2,f +15946,6134,71,1,f +15946,61345,4,4,f +15946,61409,4,6,f +15946,6141,46,1,t +15946,6141,33,2,t +15946,6141,15,4,f +15946,6141,33,7,f +15946,6141,46,2,f +15946,6141,15,1,t +15946,61483,71,1,f +15946,6158,72,1,f +15946,62743,0,4,f +15946,63864,4,2,f +15946,7206stk01,9999,1,t +15946,87611,72,1,f +15946,87612,41,1,f +15946,87613,4,1,f +15946,87615,4,1,f +15946,87616,4,1,f +15946,970c00,0,3,f +15946,973pr1187c01,0,3,f +15947,29540,2,6,f +15947,29540,1,6,f +15947,29540,4,8,f +15947,29540,14,8,f +15947,29540pb01,14,4,f +15947,29541,2,9,f +15947,29541,4,11,f +15947,29541,14,9,f +15947,29541,1,9,f +15947,29541pb01,14,2,f +15947,71727,4,8,f +15947,sbb04,4,4,f +15948,2300,10,2,f +15948,23146,1,1,f +15948,3011,484,2,f +15948,3011,191,4,f +15948,31165,4,1,f +15948,3437,10,6,f +15948,3437,41,2,f +15948,40666,484,2,f +15948,4672,4,1,f +15948,6510,14,1,f +15948,6510,25,1,f +15948,89467,70,1,f +15948,92016,9999,1,f +15948,92019,9999,1,f +15949,2412b,80,1,f +15949,2540,72,3,f +15949,30000,72,2,f +15949,3020,0,1,f +15949,3020,72,1,f +15949,3021,4,1,f +15949,3022,0,2,f +15949,3023,72,2,f +15949,30648,0,4,f +15949,3068b,0,1,f +15949,3795,0,1,f +15949,3795,72,1,f +15949,44728,72,1,f +15949,45677,0,1,f +15949,50943,80,2,f +15949,50948,0,1,f +15949,51377,80,4,f +15949,6141,47,2,f +15949,6141,47,1,t +15952,2335p44,4,1,f +15952,2339,7,8,f +15952,2345,0,7,f +15952,2345p03,0,1,f +15952,2357,0,4,f +15952,2357,7,3,f +15952,2362a,7,2,f +15952,2362a,0,1,f +15952,2431,7,1,f +15952,2432,0,2,f +15952,2462,7,4,f +15952,2540,0,2,f +15952,2546,8,1,f +15952,2570,8,1,f +15952,2588,21,1,f +15952,3003,0,1,f +15952,3003,7,2,f +15952,3004,7,25,f +15952,3004,0,8,f +15952,3004,15,1,f +15952,3005,7,18,f +15952,3005,0,5,f +15952,3008,7,1,f +15952,3009,0,1,f +15952,3009,7,2,f +15952,3010,0,3,f +15952,3023,15,1,f +15952,3023,0,4,f +15952,3023,7,12,f +15952,3029,0,1,f +15952,3031,4,1,f +15952,3032,0,2,f +15952,3040b,7,2,f +15952,3069b,7,5,f +15952,3308,7,3,f +15952,3455,0,1,f +15952,3622,7,6,f +15952,3626b,0,1,f +15952,3626bp35,14,2,f +15952,3626bp49,14,1,f +15952,3660,7,1,f +15952,3660,0,1,f +15952,3665,7,2,f +15952,3665,0,2,f +15952,3666,4,1,f +15952,3666,7,1,f +15952,3710,4,1,f +15952,3710,0,1,f +15952,3710,7,4,f +15952,3795,4,2,f +15952,3795,0,2,f +15952,3830,7,2,f +15952,3831,7,2,f +15952,3846p44,7,1,f +15952,3847a,8,1,f +15952,3848,6,1,f +15952,3849,8,3,f +15952,3857,1,1,f +15952,3959,0,3,f +15952,4070,0,3,f +15952,4085c,0,2,f +15952,4085c,7,4,f +15952,4162,7,2,f +15952,4213,0,2,f +15952,4315,0,2,f +15952,4460a,7,2,f +15952,4460a,0,2,f +15952,4490,0,4,f +15952,4495b,4,2,f +15952,4497,6,1,f +15952,4505,6,2,f +15952,4505,0,1,f +15952,4524,4,2,f +15952,4524,0,1,f +15952,4589,46,3,f +15952,4738a,6,1,f +15952,4739a,6,1,f +15952,6020,0,2,f +15952,6044,0,4,f +15952,6066,0,1,f +15952,6082,8,1,f +15952,6083,8,1,f +15952,6141,14,4,f +15952,73983,7,2,f +15952,970x021,0,1,f +15952,970x026,7,2,f +15952,973c09,15,1,f +15952,973p44c01,6,1,f +15952,973p44c02,6,2,f +15953,6377,8,6,f +15956,14226c41,0,1,f +15956,3003,15,20,f +15956,3005,15,20,f +15956,3062b,15,1,t +15956,3062b,15,4,f +15956,3062b,41,4,f +15956,3679,71,5,f +15956,3680,15,5,f +15956,3857,15,2,f +15956,44301a,4,2,f +15956,44302a,4,2,f +15956,6141,36,3,f +15956,6141,182,4,f +15956,6141,41,1,t +15956,6141,182,1,t +15956,6141,15,1,t +15956,6141,46,3,f +15956,6141,46,1,t +15956,6141,41,6,f +15956,6141,34,4,f +15956,6141,34,1,t +15956,6141,15,6,f +15956,6141,36,1,t +15957,2694,47,1,f +15957,2695,7,11,f +15957,2696,0,11,f +15957,2815,0,1,f +15957,298c03,7,3,f +15957,298c03,7,1,t +15957,3001,15,3,f +15957,3001,7,4,f +15957,3002,15,1,f +15957,3002,0,2,f +15957,3002,7,8,f +15957,3003,15,2,f +15957,3004,1,2,f +15957,3004,7,2,f +15957,3004,0,2,f +15957,3004,15,10,f +15957,3005,15,4,f +15957,3005,1,2,f +15957,3005,7,6,f +15957,3008,15,1,f +15957,3008,1,1,f +15957,3008,7,1,f +15957,3009,7,3,f +15957,3009,15,2,f +15957,3009,1,1,f +15957,3010,15,5,f +15957,3010,0,2,f +15957,3020,15,7,f +15957,3020,7,5,f +15957,3020,0,1,f +15957,3021,15,11,f +15957,3021,0,2,f +15957,3021,7,4,f +15957,3021,4,5,f +15957,3022,0,5,f +15957,3022,15,1,f +15957,3022,1,1,f +15957,3023,7,7,f +15957,3023,1,1,t +15957,3023,4,5,f +15957,3023,0,12,f +15957,3023,1,4,f +15957,3023,15,16,f +15957,3024,47,2,f +15957,3024,36,4,f +15957,3024,7,1,t +15957,3024,15,2,f +15957,3024,46,4,f +15957,3024,7,12,f +15957,3024,0,2,f +15957,3030,15,2,f +15957,3035,15,2,f +15957,3036,15,1,f +15957,3037,7,6,f +15957,3039,7,4,f +15957,3039,15,1,f +15957,3039p32,15,1,f +15957,3040b,7,6,f +15957,3040b,1,2,f +15957,3062b,7,12,f +15957,3063b,15,8,f +15957,3063b,1,2,f +15957,3069b,15,4,f +15957,3069b,0,2,f +15957,3069b,0,1,t +15957,3070b,0,6,f +15957,3070b,7,1,t +15957,3070b,0,1,t +15957,3070b,7,2,f +15957,3298,4,1,f +15957,3403,0,1,f +15957,3404,0,1,f +15957,3460,0,4,f +15957,3460,7,2,f +15957,3460,15,6,f +15957,3622,1,4,f +15957,3622,15,6,f +15957,3622,0,2,f +15957,3623,4,2,f +15957,3623,0,2,f +15957,3623,15,8,f +15957,3623,7,6,f +15957,3647,7,2,f +15957,3650a,7,1,f +15957,3660,7,22,f +15957,3660,15,1,f +15957,3665,7,4,f +15957,3665,15,4,f +15957,3666,15,5,f +15957,3666,0,2,f +15957,3666,7,3,f +15957,3666,4,1,f +15957,3673,7,6,f +15957,3700,0,9,f +15957,3700,7,1,f +15957,3700,15,1,f +15957,3701,15,1,f +15957,3701,0,8,f +15957,3702,0,2,f +15957,3703,0,2,f +15957,3705,0,3,f +15957,3706,0,2,f +15957,3707,0,1,f +15957,3708,0,3,f +15957,3709,4,2,f +15957,3709,15,1,f +15957,3710,0,13,f +15957,3710,15,2,f +15957,3710,4,7,f +15957,3710,7,2,f +15957,3713,7,8,f +15957,3713,7,1,t +15957,3743,7,1,f +15957,3749,7,3,f +15957,3794a,7,9,f +15957,3794a,15,3,f +15957,3795,15,3,f +15957,3795,1,1,f +15957,3795,7,1,f +15957,3895,0,2,f +15957,3937,7,5,f +15957,3937,0,5,f +15957,3937,15,2,f +15957,3938,0,6,f +15957,3938,4,4,f +15957,3938,15,2,f +15957,3941,7,14,f +15957,3957a,15,2,f +15957,3957a,7,2,f +15957,3959,7,2,f +15957,4032a,7,6,f +15957,4035,15,2,f +15957,4036,47,2,f +15957,4070,15,2,f +15957,4070,0,4,f +15957,4070,7,6,f +15957,4081a,7,4,f +15957,4143,7,3,f +15957,4175,7,6,f +15957,4181p06,15,1,f +15957,4182p06,15,1,f +15957,4183,47,2,f +15957,4185,7,2,f +15957,4213,15,2,f +15957,4215ap04,15,1,f +15957,4215ap05,15,1,f +15957,4215ap06,15,1,f +15957,4215ap07,15,1,f +15957,4261,7,2,f +15957,4265a,7,1,t +15957,4265a,7,18,f +15957,4273b,7,1,f +15957,4274,7,1,t +15957,4274,7,6,f +15957,4275b,4,6,f +15957,4276b,4,6,f +15957,4315,15,2,f +15957,4349,7,2,f +15957,4442,7,3,f +15957,4459,0,1,t +15957,4459,0,20,f +15957,4477,4,1,f +15957,4477,15,5,f +15957,4477,0,6,f +15957,4623,15,2,f +15957,4873,7,1,f +15957,5580stk01,9999,1,t +15957,6141,47,6,f +15957,6141,46,2,t +15957,6141,7,17,f +15957,6141,0,8,f +15957,6141,7,1,t +15957,6141,46,10,f +15957,6141,0,1,t +15957,73590c01a,46,2,f +15957,rb00168,0,1,f +15957,rb00168,0,1,t +15960,5011,0,1,f +15961,3811,2,1,f +15962,32062,0,6,f +15962,32173,8,2,f +15962,32174,0,10,f +15962,32174,57,1,f +15962,32270,7,1,f +15962,3737,0,1,f +15962,3749,19,4,f +15962,44135,8,1,f +15962,44136,8,1,f +15962,44138,0,2,f +15962,44139,8,1,f +15962,44140,0,1,f +15962,44146,135,1,f +15962,44148,8,2,f +15962,44247,8,1,f +15962,44807,0,1,f +15962,4519,7,3,f +15962,45425,135,2,f +15962,45749,8,2,f +15962,6538b,8,1,f +15962,kraataund,148,1,f +15963,10220stk01,9999,1,f +15963,10220stk02,9999,1,f +15963,12825,4,4,f +15963,12825,71,17,f +15963,15207,70,1,f +15963,2343,71,1,f +15963,2357,4,6,f +15963,2412b,19,4,f +15963,2420,15,8,f +15963,2420,0,11,f +15963,2420,19,1,f +15963,2431,320,13,f +15963,2431,15,21,f +15963,2436,4,1,f +15963,2436,15,2,f +15963,2445,4,1,f +15963,2445,0,6,f +15963,2456,4,3,f +15963,2456,0,1,f +15963,2540,15,6,f +15963,2540,25,8,f +15963,2654,47,3,f +15963,2780,0,16,f +15963,2780,0,2,t +15963,2819,71,1,f +15963,298c02,0,1,t +15963,298c02,0,1,f +15963,3001,15,2,f +15963,3001,4,1,f +15963,3002,4,3,f +15963,3004,4,13,f +15963,3004,15,3,f +15963,3004,71,6,f +15963,3004,19,16,f +15963,3005,15,16,f +15963,3005,4,18,f +15963,3005,320,6,f +15963,3005,19,5,f +15963,3006,0,1,f +15963,3007,15,2,f +15963,3008,0,2,f +15963,3009,4,7,f +15963,3010,19,5,f +15963,3010,15,1,f +15963,30157,72,1,f +15963,3020,4,7,f +15963,3020,0,22,f +15963,3021,19,6,f +15963,3021,4,4,f +15963,3021,71,2,f +15963,3022,4,9,f +15963,3022,72,9,f +15963,3022,15,11,f +15963,3023,71,17,f +15963,3023,15,19,f +15963,3023,19,11,f +15963,3023,4,18,f +15963,3023,320,4,f +15963,3024,15,2,t +15963,3024,320,1,t +15963,3024,320,14,f +15963,3024,19,18,f +15963,3024,19,1,t +15963,3024,15,36,f +15963,3024,0,14,f +15963,3024,4,1,t +15963,3024,4,8,f +15963,3024,0,1,t +15963,3028,71,4,f +15963,3029,0,4,f +15963,3031,71,3,f +15963,3033,72,1,f +15963,3034,4,2,f +15963,3035,15,3,f +15963,3035,0,1,f +15963,30357,4,6,f +15963,30357,0,2,f +15963,30377,71,1,t +15963,30377,71,8,f +15963,3039,71,5,f +15963,3040b,15,2,f +15963,30414,0,8,f +15963,30552,71,1,f +15963,3062b,70,1,f +15963,3068b,73,20,f +15963,3068b,71,2,f +15963,3068b,0,11,f +15963,3068b,15,12,f +15963,3069b,0,3,f +15963,3069b,73,8,f +15963,3069b,4,14,f +15963,3069b,71,9,f +15963,3069b,36,2,f +15963,3069b,15,20,f +15963,3070b,15,1,t +15963,3070b,71,3,f +15963,3070b,71,1,t +15963,3070b,15,8,f +15963,3070bpr0007,71,1,t +15963,3070bpr0007,71,1,f +15963,32000,14,2,f +15963,32018,72,6,f +15963,32028,4,3,f +15963,32054,4,1,f +15963,32062,4,1,f +15963,32123b,14,2,t +15963,32123b,14,9,f +15963,32316,71,4,f +15963,3245b,19,6,f +15963,33061,34,1,f +15963,33183,10,1,t +15963,33183,10,1,f +15963,3460,4,11,f +15963,3460,71,4,f +15963,3622,19,4,f +15963,3622,4,10,f +15963,3623,19,1,f +15963,3623,0,4,f +15963,3623,71,5,f +15963,3623,4,24,f +15963,3660,4,32,f +15963,3665,19,2,f +15963,3666,320,13,f +15963,3666,19,2,f +15963,3700,0,2,f +15963,3700,15,2,f +15963,3701,70,2,f +15963,3705,0,4,f +15963,3710,15,9,f +15963,3710,0,12,f +15963,3710,19,5,f +15963,3710,4,8,f +15963,3731,71,2,f +15963,3747b,72,2,f +15963,3749,19,1,f +15963,3794a,19,9,f +15963,3794a,4,2,f +15963,3795,72,2,f +15963,3795,15,1,f +15963,3830,4,4,f +15963,3831,4,4,f +15963,3832,71,3,f +15963,3852b,191,1,f +15963,3937,15,6,f +15963,3938,0,2,f +15963,4032a,71,4,f +15963,4035,19,2,f +15963,4070,71,11,f +15963,4070,15,2,f +15963,4070,47,2,f +15963,4081b,15,8,f +15963,4150,15,1,f +15963,4150pr0001,15,1,f +15963,4162,4,4,f +15963,4162,320,2,f +15963,4162,19,4,f +15963,41747,15,2,f +15963,41748,15,2,f +15963,4175,4,2,f +15963,4185,71,1,f +15963,42022,15,2,f +15963,42610,71,1,f +15963,4274,71,12,f +15963,4274,71,1,t +15963,4287,15,1,f +15963,43722,15,1,f +15963,43723,15,1,f +15963,43898,80,4,f +15963,44126,15,6,f +15963,44568,71,1,f +15963,44570,15,1,f +15963,4460b,0,2,f +15963,44728,15,11,f +15963,4477,15,5,f +15963,44809,71,1,f +15963,4519,71,2,f +15963,4528,135,1,f +15963,4533,15,1,f +15963,4740,71,1,f +15963,47905,19,2,f +15963,48336,71,5,f +15963,4865a,19,3,f +15963,4865b,71,3,f +15963,49668,46,2,f +15963,50950,15,4,f +15963,51739,14,1,f +15963,54200,15,1,t +15963,54200,4,14,f +15963,54200,15,6,f +15963,54200,4,1,t +15963,56898,0,4,f +15963,56904,15,4,f +15963,59443,71,4,f +15963,59900,42,1,f +15963,60032,19,2,f +15963,6005,15,2,f +15963,60470b,0,4,f +15963,60471,15,3,f +15963,60478,0,23,f +15963,60479,15,3,f +15963,60479,4,7,f +15963,60481,15,2,f +15963,60581,47,11,f +15963,6060,15,2,f +15963,60602,47,1,f +15963,6081,15,4,f +15963,60849,71,3,f +15963,60849,71,1,t +15963,60897,15,6,f +15963,60897,72,4,f +15963,6091,15,6,f +15963,6091,320,6,f +15963,61252,4,2,f +15963,6134,15,4,f +15963,61409,72,2,f +15963,6141,70,1,t +15963,6141,182,8,f +15963,6141,72,7,f +15963,6141,80,13,f +15963,6141,70,8,f +15963,6141,80,1,t +15963,6141,182,2,t +15963,6141,72,3,t +15963,61678,4,4,f +15963,61678,15,26,f +15963,6231,19,4,f +15963,62462,80,2,f +15963,63864,4,6,f +15963,63864,15,6,f +15963,63965,71,2,f +15963,6541,0,1,f +15963,6636,15,11,f +15963,6636,19,2,f +15963,6936,297,1,f +15963,73590c03a,0,2,f +15963,73983,4,4,f +15963,73983,19,2,f +15963,75c08,71,2,f +15963,75c09,0,2,f +15963,85080,4,8,f +15963,85544,4,1,f +15963,85984,15,17,f +15963,87079,14,1,f +15963,87079,4,4,f +15963,87079,15,13,f +15963,87087,15,6,f +15963,87087,4,22,f +15963,87544,47,5,f +15963,87580,28,2,f +15963,87618,71,2,f +15963,87620,4,2,f +15963,88072,15,1,f +15963,88930,15,4,f +15963,92410,15,1,f +15963,92950,4,2,f +15963,94318,25,1,f +15963,95120,15,2,f +15963,97122,9999,6,f +15964,2357,15,2,f +15964,3001,15,12,f +15964,3002,15,6,f +15964,3003,15,10,f +15964,3004,15,8,f +15964,3005,15,6,f +15964,3006,15,1,f +15964,3007,15,1,f +15964,3008,15,2,f +15964,3009,15,4,f +15964,3010,15,6,f +15964,3622,15,4,f +15966,2335,14,2,f +15966,2335p43,1,1,f +15966,2339,7,3,t +15966,2339,14,2,f +15966,2339,7,2,f +15966,2345,7,10,f +15966,2345p02,7,2,f +15966,3002,7,2,f +15966,3004,15,1,f +15966,3004,0,1,f +15966,3004,7,66,f +15966,3005,7,49,f +15966,3005,0,2,f +15966,3008,7,4,f +15966,3009,7,5,f +15966,3010,7,11,f +15966,3020,7,3,f +15966,3020,2,3,f +15966,3021,7,6,f +15966,3021,0,1,f +15966,3021,2,4,f +15966,3022,2,2,f +15966,3022,7,1,t +15966,3022,0,3,f +15966,3023,15,1,f +15966,3023,7,4,t +15966,3023,7,12,f +15966,3023,0,3,f +15966,3024,0,1,f +15966,3024,7,11,f +15966,3030,0,2,f +15966,3031,7,1,f +15966,3032,7,2,f +15966,3033,7,1,f +15966,3034,2,5,f +15966,3034,7,2,f +15966,3034,0,2,f +15966,3037,0,7,f +15966,3039,0,4,f +15966,3040b,0,5,f +15966,3041,0,1,f +15966,3043,0,2,f +15966,3045,0,2,f +15966,3062b,7,9,f +15966,3455,7,3,f +15966,3460,0,1,f +15966,3460,7,1,f +15966,3622,7,8,f +15966,3623,7,9,f +15966,3626apr0001,14,6,f +15966,3660,7,2,f +15966,3660,0,6,f +15966,3665,7,6,f +15966,3665,7,1,t +15966,3665,0,1,f +15966,3666,2,2,f +15966,3666,7,1,f +15966,3673,7,3,f +15966,3685,0,4,f +15966,3688,0,1,f +15966,3700,0,2,f +15966,3700,7,7,f +15966,3709,0,2,f +15966,3710,7,9,f +15966,3710,0,2,f +15966,3794a,7,1,f +15966,3795,2,1,f +15966,3795,7,1,f +15966,3830,7,4,f +15966,3831,7,4,f +15966,3832,7,1,t +15966,3844,0,2,f +15966,3846p45,7,1,f +15966,3846p46,7,1,f +15966,3847,8,2,f +15966,3848,6,1,f +15966,3849,6,2,f +15966,3896,0,2,f +15966,3941,7,2,f +15966,3957a,0,3,f +15966,3958,7,2,f +15966,4032a,7,8,f +15966,4070,7,2,f +15966,4085b,7,1,f +15966,4161,0,1,f +15966,4162,7,1,f +15966,4282,2,1,f +15966,4287,0,3,f +15966,4444,7,9,f +15966,4444p03,14,1,f +15966,4445,0,2,f +15966,4460a,7,2,f +15966,4477,7,2,t +15966,4490,7,8,f +15966,4491a,4,1,f +15966,4491a,1,1,f +15966,4493c01pb02,0,1,f +15966,4495a,1,2,f +15966,4497,6,2,f +15966,4498,6,2,f +15966,4499,6,2,f +15966,4503,8,1,f +15966,4503,0,1,f +15966,4524,0,1,f +15966,4524,1,1,f +15966,56823c50,0,1,f +15966,75998pr0007,15,1,f +15966,87692,1,1,f +15966,87692,4,1,f +15966,87693,4,1,t +15966,87693,1,1,t +15966,87694,1,1,t +15966,87694,4,1,t +15966,970c00,0,4,f +15966,970x021,0,2,f +15966,973p40c01,1,1,f +15966,973p40c01,0,1,f +15966,973p43c01,1,4,f +15967,16542,7,1,f +15967,2412a,15,1,f +15967,2412a,2,1,f +15967,2420,15,2,f +15967,2436,15,1,f +15967,2436,2,1,f +15967,2460,0,2,f +15967,2465,15,2,f +15967,2584,7,1,f +15967,2585,0,1,f +15967,2736,7,1,f +15967,2877,15,2,f +15967,298c03,0,1,f +15967,298c03,0,1,t +15967,3004,15,1,f +15967,3005,4,2,f +15967,3009,15,2,f +15967,3010,15,1,f +15967,3020,4,1,f +15967,3021,2,1,f +15967,3022,15,1,f +15967,3022,0,1,f +15967,3022,4,2,f +15967,3023,0,4,f +15967,3023,4,2,f +15967,3023,15,3,f +15967,3023,2,2,f +15967,3024,47,2,f +15967,3024,15,1,f +15967,3034,15,2,f +15967,3034,0,1,f +15967,3070b,36,1,t +15967,3070b,36,2,f +15967,3460,15,2,f +15967,3460,2,4,f +15967,3491,0,1,f +15967,3626bpr0001,14,1,f +15967,3660,15,2,f +15967,3660p01,15,1,f +15967,3666,4,2,f +15967,3666,15,2,f +15967,3709,0,1,f +15967,3710,4,6,f +15967,3710,2,3,f +15967,3738,0,1,f +15967,3821,15,1,f +15967,3822,15,1,f +15967,3823,41,1,f +15967,3829c01,4,1,f +15967,3956,15,1,f +15967,4032a,4,3,f +15967,4032a,7,1,f +15967,4211,4,1,f +15967,4213,15,1,f +15967,4214,15,1,f +15967,4445,15,4,f +15967,4485,4,1,f +15967,4590,0,1,f +15967,4600,0,4,f +15967,4854,15,1,f +15967,4864a,15,1,f +15967,4865a,15,2,f +15967,6014a,7,8,f +15967,6015,0,8,f +15967,6019,15,1,f +15967,6141,7,1,t +15967,6141,7,4,f +15967,6594stk01,9999,1,t +15967,970c00,2,1,f +15967,973px130c01,15,1,f +15968,12825,72,1,f +15968,2357,71,1,f +15968,2412b,72,3,f +15968,2420,71,1,f +15968,2431,70,2,f +15968,2431,71,3,f +15968,2540,0,2,f +15968,2780,0,2,f +15968,2780,0,1,t +15968,3001,15,4,f +15968,3003,19,1,f +15968,3003,71,1,f +15968,3003,15,2,f +15968,3004,25,1,f +15968,3004,15,19,f +15968,3004,19,1,f +15968,3004,71,10,f +15968,30043,0,2,f +15968,3005,2,4,f +15968,3005,15,10,f +15968,3008,4,3,f +15968,3009,15,21,f +15968,3009,71,9,f +15968,3010,15,9,f +15968,3020,2,2,f +15968,3020,72,3,f +15968,3020,15,2,f +15968,3021,71,11,f +15968,3022,71,2,f +15968,3022,14,1,f +15968,3022,4,2,f +15968,3022,2,2,f +15968,3023,71,3,f +15968,3023,15,10,f +15968,3023,2,1,f +15968,3024,15,3,f +15968,3024,19,4,f +15968,3033,15,1,f +15968,3034,70,1,f +15968,30340,15,1,f +15968,3037,272,22,f +15968,3038,272,17,f +15968,3039,272,17,f +15968,3039,2,2,f +15968,3039,71,1,f +15968,3040b,2,4,f +15968,3041,272,7,f +15968,3044b,272,4,f +15968,3046a,272,12,f +15968,3049b,272,2,f +15968,3062b,70,3,f +15968,3062b,71,8,f +15968,3062b,46,1,f +15968,3069b,71,2,f +15968,3069b,15,3,f +15968,3069b,4,1,f +15968,3069b,19,18,f +15968,3069bpr0099,15,2,f +15968,32062,4,2,f +15968,3455,71,1,f +15968,3460,19,2,f +15968,3460,4,9,f +15968,3622,71,6,f +15968,3622,4,4,f +15968,3622,15,16,f +15968,3623,19,4,f +15968,3623,4,5,f +15968,3623,15,2,f +15968,3660,2,2,f +15968,3665,2,8,f +15968,3665,15,15,f +15968,3665,71,3,f +15968,3666,15,2,f +15968,3710,70,2,f +15968,3710,15,2,f +15968,3832,15,2,f +15968,3832,19,5,f +15968,3857,10,2,f +15968,3941,70,2,f +15968,3957a,0,1,f +15968,4032a,2,2,f +15968,4070,0,4,f +15968,4081b,71,1,f +15968,4081b,14,4,f +15968,4150,14,1,f +15968,4162,4,1,f +15968,4286,2,6,f +15968,43898,15,1,f +15968,4445,272,10,f +15968,4477,15,3,f +15968,4599b,71,2,f +15968,4599b,0,1,f +15968,4623,72,1,f +15968,4697b,71,1,t +15968,4697b,71,1,f +15968,4740,0,1,f +15968,48336,71,1,f +15968,4865a,0,5,f +15968,4865a,4,2,f +15968,53989,135,1,f +15968,54200,70,1,t +15968,54200,46,1,f +15968,54200,46,1,t +15968,54200,70,4,f +15968,59443,71,3,f +15968,59900,19,4,f +15968,59900,4,1,f +15968,59900,14,1,f +15968,59900,72,2,f +15968,6019,0,3,f +15968,60478,72,1,f +15968,60592,19,3,f +15968,60594,19,3,f +15968,60596,19,1,f +15968,60601,47,3,f +15968,60603,47,1,f +15968,60608,15,6,f +15968,60623,15,1,f +15968,60806,15,1,f +15968,6091,15,2,f +15968,6111,71,2,f +15968,6111,15,9,f +15968,6141,25,1,t +15968,6141,27,1,t +15968,6141,71,8,f +15968,6141,4,13,f +15968,6141,25,1,f +15968,6141,4,1,t +15968,6141,0,7,f +15968,6141,14,7,f +15968,6141,27,4,f +15968,6141,14,1,t +15968,6141,71,1,t +15968,6141,0,1,t +15968,6541,4,2,f +15968,6541,71,2,f +15968,6636,19,3,f +15968,6636,71,8,f +15969,2654,72,1,f +15969,2877,0,1,f +15969,2926,0,1,f +15969,3002,4,1,f +15969,30136,70,2,f +15969,3020,4,4,f +15969,3020,72,1,f +15969,3021,72,1,f +15969,3022,0,1,f +15969,3023,70,1,f +15969,3023,4,2,f +15969,3024,4,4,f +15969,3034,4,2,f +15969,3039,4,1,f +15969,30602,4,1,f +15969,3069b,70,2,f +15969,3829c01,15,1,f +15969,4079,70,1,f +15969,4624,15,2,f +15969,54200,4,2,f +15969,6014b,71,2,f +15969,6141,47,2,f +15969,6157,71,1,f +15969,87087,4,2,f +15969,87414,0,2,f +15969,87697,0,2,f +15969,88072,72,1,f +15970,3626bpr0815,0,1,f +15970,3837,72,1,f +15970,50231,4,1,f +15970,6141,15,1,t +15970,6141,15,1,f +15970,95678pr03,15,1,f +15970,970c00,4,1,f +15970,973pr2003c01,4,1,f +15974,132a,0,4,f +15974,242c01,4,4,f +15974,3001a,4,1,f +15974,3003,0,1,f +15974,3003,4,1,f +15974,3004,4,8,f +15974,3004p50,4,1,f +15974,3005,1,2,f +15974,3007,4,2,f +15974,3009,47,1,f +15974,3009,4,4,f +15974,3009p01,4,1,f +15974,3010,4,3,f +15974,3010,47,1,f +15974,3020,4,4,f +15974,3021,4,2,f +15974,3022,4,5,f +15974,3023,4,4,f +15974,3039,4,2,f +15974,3062a,1,1,f +15974,3137c01,0,1,f +15974,3139,0,2,f +15974,3149c01,4,1,f +15974,3183b,4,1,f +15974,3184,4,1,f +15974,3188,4,1,f +15974,3189,4,1,f +15974,3404ac01,4,1,f +15974,7049b,0,1,f +15974,709,4,1,f +15974,711,4,3,f +15974,799c800,0,1,f +15974,801,4,1,f +15974,802,4,1,f +15974,806,4,1,f +15974,850,14,1,f +15974,851a,14,1,f +15974,852,14,1,f +15975,23306,71,1,f +15975,30173b,0,1,f +15975,3626cpr0747,14,1,f +15975,63965,297,1,f +15975,970c00,15,1,f +15975,973pr2681c01,15,1,f +15975,98132,179,1,f +15975,98133,15,1,f +15975,98139,297,1,f +15976,30381,320,1,f +15976,3626cpr1603,14,1,f +15976,4740pr0004b,52,2,f +15976,64647,57,1,f +15976,970c00pr0804,320,1,f +15976,973pr2906c01,85,1,f +15976,98383,297,1,f +15977,2456,15,2,f +15977,2456,1,2,f +15977,2456,14,2,f +15977,2456,4,2,f +15977,3001,14,12,f +15977,3001,0,6,f +15977,3001,1,12,f +15977,3001,15,12,f +15977,3001,4,12,f +15977,3001,2,6,f +15977,3002,4,6,f +15977,3002,0,4,f +15977,3002,14,6,f +15977,3002,2,4,f +15977,3002,15,6,f +15977,3002,1,6,f +15977,3003,4,20,f +15977,3003,1,20,f +15977,3003,14,20,f +15977,3003,0,10,f +15977,3003,2,10,f +15977,3003,15,20,f +15977,3004,2,14,f +15977,3004,1,30,f +15977,3004,14,30,f +15977,3004,4,30,f +15977,3004,15,30,f +15977,3004,0,14,f +15977,3005,0,10,f +15977,3005,14,20,f +15977,3005,15,20,f +15977,3005,4,20,f +15977,3005,1,20,f +15977,3005,2,6,f +15977,3008,14,2,f +15977,3008,1,2,f +15977,3008,4,2,f +15977,3008,15,2,f +15977,3009,15,4,f +15977,3009,14,4,f +15977,3009,1,4,f +15977,3009,4,4,f +15977,3010,0,12,f +15977,3010,15,20,f +15977,3010,14,20,f +15977,3010,2,10,f +15977,3010,1,20,f +15977,3010,4,20,f +15977,3622,15,6,f +15977,3622,4,6,f +15977,3622,1,6,f +15977,3622,2,2,f +15977,3622,14,6,f +15977,3622,0,4,f +15978,2496,0,2,f +15978,3022,2,1,f +15978,3022,4,1,f +15978,3023,2,1,f +15978,3023,14,1,f +15978,3069b,4,1,f +15978,3070b,14,1,t +15978,3070b,2,1,t +15978,3070b,2,1,f +15978,3070b,14,1,f +15978,3794b,2,1,f +15978,3794b,4,1,f +15978,42511,1,1,f +15978,46303,71,1,f +15979,3032,15,1,f +15979,3068bpb0606,15,1,f +15979,3068bpb0607,15,1,f +15979,3068bpb0608,15,1,f +15979,3068bpb0609,15,1,f +15979,3068bpb0610,15,1,f +15979,3068bpb0611,15,1,f +15981,122c01,7,4,f +15981,3003,15,2,f +15981,3004,15,2,f +15981,3004p06,15,2,f +15981,3004p20,1,2,f +15981,3004p90,15,1,f +15981,3008,15,3,f +15981,3009,15,2,f +15981,3020,7,2,f +15981,3022,7,2,f +15981,3023,7,2,f +15981,3028,15,1,f +15981,3034,7,2,f +15981,3039,1,6,f +15981,3039p23,15,1,f +15981,3039p34,15,1,f +15981,3062b,34,6,f +15981,3062b,1,2,f +15981,3062b,36,4,f +15981,3062b,7,1,f +15981,3460,1,4,f +15981,3460,15,2,f +15981,3622,15,2,f +15981,3626apr0001,14,4,f +15981,3639,7,1,f +15981,3640,7,1,f +15981,3702,15,1,f +15981,3794a,7,5,f +15981,3795,7,1,f +15981,3795,1,2,f +15981,3795,15,2,f +15981,3829c01,7,4,f +15981,3835,0,1,f +15981,3838,14,2,f +15981,3838,4,2,f +15981,3839b,7,2,f +15981,3842a,4,2,f +15981,3842a,14,2,f +15981,3941,1,16,f +15981,3947a,7,1,f +15981,3956,15,2,f +15981,3957a,1,4,f +15981,3957a,7,2,f +15981,3959,0,3,f +15981,3959,7,2,f +15981,3960,7,2,f +15981,3962a,0,2,f +15981,3963,7,2,f +15981,4032a,0,2,f +15981,4079,1,2,f +15981,4081a,7,4,f +15981,4081a,15,4,f +15981,4085a,15,2,f +15981,4085a,7,6,f +15981,4089,7,2,f +15981,4162,15,1,f +15981,4175,7,1,f +15981,4175,1,2,f +15981,4285a,7,4,f +15981,4286,15,8,f +15981,4288,0,8,f +15981,4315,15,2,f +15981,4345a,7,1,f +15981,4345a,1,2,f +15981,4346,7,1,f +15981,4346,1,2,f +15981,4349,0,1,f +15981,4360,0,1,f +15981,4474,33,2,f +15981,4476a,1,8,f +15981,4477,15,5,f +15981,4479,0,1,f +15981,6141,36,2,f +15981,970c00,4,2,f +15981,970c00,14,2,f +15981,973p90c02,4,2,f +15981,973p90c04,14,2,f +15983,2460,8,1,f +15983,2540,8,2,f +15983,3020,8,1,f +15983,3020,3,1,f +15983,3023,3,1,t +15983,3023,3,2,f +15983,3039,42,1,f +15983,3298,3,1,f +15983,3839b,0,1,f +15983,4617b,0,1,f +15985,3626bpr0001,14,1,f +15985,3901,0,1,f +15985,970c00,15,1,f +15985,973c07,1,1,f +15987,2412b,0,1,f +15987,3010,1,1,f +15987,3020,0,2,f +15987,3021,15,4,f +15987,3022,71,1,f +15987,3023,1,2,f +15987,3024,182,2,f +15987,3034,72,2,f +15987,3062b,71,4,f +15987,3065,47,2,f +15987,3068b,1,1,f +15987,3069b,14,1,f +15987,32028,0,2,f +15987,3623,15,2,f +15987,3710,1,1,f +15987,4032a,71,1,f +15987,4081b,71,2,f +15987,44728,15,2,f +15987,4589,71,2,f +15987,4600,0,2,f +15987,4623,15,2,f +15987,4624,71,4,f +15987,54200,1,4,f +15987,54200,1,1,t +15987,54200,71,2,f +15987,60212,15,1,f +15987,6141,47,2,f +15987,6141,47,1,t +15987,87414,0,4,f +15989,11215,0,2,f +15989,11458,72,2,f +15989,15533,84,8,f +15989,18787,179,1,f +15989,18788,179,1,f +15989,18789,322,1,f +15989,18792,70,1,f +15989,19727pr0004,15,1,f +15989,19729pr0001,308,1,f +15989,19729pr0002,15,1,f +15989,19729pr0006,2,1,f +15989,19729pr0012,25,1,f +15989,19730,179,2,f +15989,19734,2,1,f +15989,24007,14,1,f +15989,2420,0,4,f +15989,2420,2,21,f +15989,2431,33,3,f +15989,2431,84,6,f +15989,2456,70,4,f +15989,2456,2,2,f +15989,2780,0,2,f +15989,3001,2,4,f +15989,3001,70,15,f +15989,3001,84,5,f +15989,3001,19,4,f +15989,3001,288,7,f +15989,3003,2,15,f +15989,3003,34,15,f +15989,3003,84,30,f +15989,3003,70,37,f +15989,3003,33,11,f +15989,3004,19,4,f +15989,3004,84,13,f +15989,3004,70,20,f +15989,3004pr0014,84,2,f +15989,3005,84,18,f +15989,3007,19,1,f +15989,30157,72,1,f +15989,3020,4,2,f +15989,3020,70,14,f +15989,3020,19,3,f +15989,3021,15,2,f +15989,3022,19,4,f +15989,3022,15,3,f +15989,3022,0,2,f +15989,3022,70,34,f +15989,3022,1,1,f +15989,3023,46,2,f +15989,3023,2,6,f +15989,3023,33,2,f +15989,3023,15,1,f +15989,3023,1,4,f +15989,3023,182,1,f +15989,3023,70,7,f +15989,30237b,70,4,f +15989,3024,70,2,f +15989,3024,25,2,f +15989,3024,182,5,f +15989,3024,46,3,f +15989,3024,14,1,f +15989,3029,2,2,f +15989,3031,70,1,f +15989,3032,70,1,f +15989,3033,25,1,f +15989,3034,70,5,f +15989,3035,19,1,f +15989,3039,33,2,f +15989,3068b,15,1,f +15989,3068bpr0236,84,1,f +15989,3069b,2,2,f +15989,3069b,33,4,f +15989,3069b,84,2,f +15989,3070b,70,6,f +15989,3070b,25,4,f +15989,3070b,288,29,f +15989,3070b,191,4,f +15989,3176,0,2,f +15989,32000,72,1,f +15989,32062,4,1,f +15989,32064a,2,1,f +15989,32523,4,1,f +15989,32526,0,3,f +15989,32556,19,1,f +15989,33183,10,1,f +15989,33183,191,1,f +15989,33291,10,6,f +15989,33291,4,2,f +15989,33291,70,20,f +15989,33291,191,2,f +15989,33291,31,4,f +15989,3623,2,8,f +15989,3623,14,1,f +15989,3673,71,2,f +15989,3701,19,2,f +15989,3708,0,2,f +15989,3710,1,4,f +15989,3795,1,1,f +15989,3795,70,5,f +15989,3958,25,1,f +15989,3958,2,4,f +15989,4032a,0,3,f +15989,41539,84,3,f +15989,41539,2,1,f +15989,42003,72,1,f +15989,4216,19,2,f +15989,4274,1,4,f +15989,43093,1,2,f +15989,44728,2,11,f +15989,4697b,0,2,f +15989,4727,10,8,f +15989,4733,70,2,f +15989,4738a,84,1,f +15989,4739a,84,1,f +15989,48336,2,2,f +15989,54200,182,2,f +15989,59900,182,2,f +15989,60115,15,1,f +15989,6019,14,1,f +15989,60470a,2,2,f +15989,60475b,84,2,f +15989,60478,70,2,f +15989,60478,14,1,f +15989,6112,84,4,f +15989,6112,70,8,f +15989,6141,33,1,f +15989,6141,85,4,f +15989,6141,27,6,f +15989,6179,19,1,f +15989,62462,70,1,f +15989,6266,15,2,f +15989,63864,14,1,f +15989,64644,308,3,f +15989,6541,71,6,f +15989,6541,70,4,f +15989,6558,1,2,f +15989,87079,25,2,f +15989,87087,70,22,f +15989,87580,19,3,f +15989,87580,10,12,f +15989,87580,70,7,f +15989,87580,84,18,f +15989,87580,0,4,f +15989,92438,1,1,f +15989,92438,2,2,f +15989,93061,15,2,f +15989,95343,71,1,f +15989,95344,28,1,f +15989,96874,25,1,t +15989,970c00,179,1,f +15989,970c00,85,1,f +15989,973pr2819c01,321,1,f +15989,973pr3096c01,378,1,f +15989,98138pr0018,84,2,f +15989,98283,84,6,f +15989,99780,72,3,f +15989,99781,0,1,f +15991,3002a,15,15,f +15991,3002a,14,15,f +15991,3002a,4,15,f +15991,3002a,1,15,f +15991,3002a,0,8,f +15991,3002a,47,7,f +15992,3626bpr0647,14,1,f +15992,4342,19,1,f +15992,4530,0,1,f +15992,4530,0,1,t +15992,970c00,15,1,f +15992,973pr1576c01,72,1,f +15994,10563,71,1,f +15994,18018,179,1,f +15994,18806,4,1,f +15994,3011,4,1,f +15994,3437,25,1,f +15994,3437,4,2,f +15994,3437,14,1,f +15994,40666,15,1,f +15994,47517,0,1,f +15994,51703,182,2,f +15994,58497,0,1,f +15994,58498,0,1,f +15994,87702,4,1,f +15994,92004,71,1,f +15994,92005,4,1,f +15994,92006,71,1,f +15994,92007,4,1,f +15994,92925,71,1,f +15996,3001a,47,1,f +15996,3002a,14,2,f +15996,3003,14,1,f +15996,3004,47,2,f +15996,3010,1,2,f +15996,3010p30,14,2,f +15996,3020,14,1,f +15996,3021,0,2,f +15996,3023,14,2,f +15996,3023,0,2,f +15996,3035,14,1,f +15996,3035,1,1,f +15996,3037,47,1,f +15996,3062a,4,2,f +15996,3062a,0,3,f +15996,3062a,15,2,f +15996,3137c01,0,3,f +15996,3137c02,0,1,f +15996,3139,0,6,f +15996,3183b,14,1,f +15996,3184,1,1,f +15996,3430c02,0,1,f +15996,7b,0,2,f +15997,2343,14,2,f +15997,2357,7,4,f +15997,2460,8,1,f +15997,2460,15,1,f +15997,2555,6,1,f +15997,2566,0,2,f +15997,3022,6,1,f +15997,3024,8,2,f +15997,30374,6,1,f +15997,30374,0,1,f +15997,3040b,7,2,f +15997,30504,6,1,f +15997,3062b,6,4,f +15997,3062b,19,1,f +15997,3068bp40,15,1,f +15997,3460,19,2,f +15997,3626bph1,14,1,f +15997,3665,0,2,f +15997,3676,0,1,f +15997,3679,7,1,f +15997,3680,0,1,f +15997,3794a,0,2,f +15997,40232,15,1,f +15997,40233,0,1,f +15997,4150,0,1,f +15997,4151a,8,1,f +15997,4864b,7,2,f +15997,50231px1,0,1,f +15997,6126a,57,2,f +15997,6131,0,1,f +15997,6177px1,14,1,f +15997,6248,4,1,f +15997,6248,7,1,f +15997,970c00,7,1,f +15997,973px153c01,7,1,f +15999,23306,383,2,f +15999,2339,6,4,f +15999,2412b,7,6,f +15999,2413,7,1,f +15999,2419,2,1,f +15999,2419,484,1,f +15999,2420,2,2,f +15999,2420,15,8,f +15999,2431,4,4,f +15999,2431,2,2,f +15999,2431,15,2,f +15999,2431pr0027,15,2,f +15999,2432,19,2,f +15999,2445,15,4,f +15999,2456,8,1,f +15999,2489,6,1,f +15999,2540,8,1,f +15999,2654,19,4,f +15999,2736,7,4,f +15999,2877,4,8,f +15999,298c02,14,1,f +15999,298c02,14,1,t +15999,3001,8,1,f +15999,3003,1,1,f +15999,3004,8,7,f +15999,3004,15,9,f +15999,3004,6,8,f +15999,3004,19,2,f +15999,3005,19,4,f +15999,3005,15,8,f +15999,30093,2,7,f +15999,3010,19,2,f +15999,3010,15,5,f +15999,30136,0,1,f +15999,30176,2,2,f +15999,3020,2,1,f +15999,3020,4,7,f +15999,3020,19,1,f +15999,3020,15,1,f +15999,3020,6,1,f +15999,3021,8,1,f +15999,3021,19,2,f +15999,3022,8,1,f +15999,3022,15,6,f +15999,3022,4,2,f +15999,3023,19,4,f +15999,3023,7,6,f +15999,3023,6,3,f +15999,3023,4,5,f +15999,3031,2,2,f +15999,3031,8,4,f +15999,3032,8,2,f +15999,3032,484,3,f +15999,3032,15,2,f +15999,3034,15,1,f +15999,30355,15,2,f +15999,30356,15,2,f +15999,30359b,8,4,f +15999,30360,15,4,f +15999,30361aps1,15,1,f +15999,30362,15,2,f +15999,30364,7,2,f +15999,30367apr01,15,1,f +15999,30367b,15,1,f +15999,3037,2,2,f +15999,3037,15,2,f +15999,30370ps2,15,1,f +15999,30372,15,1,f +15999,30372pr0001,40,1,f +15999,30374,6,1,f +15999,30374,42,2,f +15999,30389b,0,1,f +15999,3039,8,4,f +15999,3039pr0008,0,1,f +15999,3040b,6,14,f +15999,3040b,15,4,f +15999,30414,1,2,f +15999,30503,484,2,f +15999,30503,2,2,f +15999,30526,1,2,f +15999,30553,0,2,f +15999,3062b,6,4,f +15999,3068b,6,1,f +15999,3068b,7,1,f +15999,3068b,4,4,f +15999,3068bpr0071,19,2,f +15999,3069b,19,1,f +15999,3069bp0f,8,1,f +15999,3176,4,1,f +15999,32000,7,18,f +15999,32123b,7,1,t +15999,32123b,7,2,f +15999,32124,1,1,f +15999,32269,7,1,f +15999,32556,7,8,f +15999,3298,6,4,f +15999,3307,6,3,f +15999,3460,19,2,f +15999,3460,4,2,f +15999,3622,6,2,f +15999,3623,6,4,f +15999,3623,4,12,f +15999,3626bps3,14,1,f +15999,3648b,7,1,f +15999,3659,19,4,f +15999,3660,19,1,f +15999,3660,7,8,f +15999,3665,19,2,f +15999,3665,15,2,f +15999,3666,15,1,f +15999,3666,7,2,f +15999,3666,4,13,f +15999,3666,19,6,f +15999,3700,14,1,f +15999,3701,0,2,f +15999,3706,0,1,f +15999,3707,0,1,f +15999,3710,19,3,f +15999,3710,7,4,f +15999,3710,4,4,f +15999,3710,6,2,f +15999,3710,15,1,f +15999,3713,7,4,f +15999,3747a,15,1,f +15999,3794a,4,3,f +15999,3794a,1,2,f +15999,3795,8,1,f +15999,3795,15,1,f +15999,3830,15,2,f +15999,3830,19,4,f +15999,3831,15,2,f +15999,3831,19,4,f +15999,3899,15,1,f +15999,3901,19,1,f +15999,3937,8,1,f +15999,3941,19,5,f +15999,3941,7,4,f +15999,3941,6,1,f +15999,3961pb02,6,1,f +15999,4032a,0,7,f +15999,40373,378,2,f +15999,4085c,8,7,f +15999,4162,15,4,f +15999,4162,4,2,f +15999,41747,7,1,f +15999,41748,7,1,f +15999,41752,8,1,t +15999,41769,15,2,f +15999,41769,19,1,f +15999,41770,15,2,f +15999,41770,19,1,f +15999,41879a,19,1,f +15999,41880,378,1,f +15999,42446,8,1,f +15999,42446,15,4,f +15999,4287,15,4,f +15999,43093,1,4,f +15999,43712,15,2,f +15999,43713,7,1,f +15999,43719,4,1,f +15999,44300,8,1,f +15999,44568,7,1,f +15999,44571,15,1,f +15999,4477,15,4,f +15999,4519,7,11,f +15999,4529,0,1,f +15999,4589,7,5,f +15999,4716,7,1,f +15999,4740,57,4,f +15999,4740,8,4,f +15999,4865a,19,3,f +15999,4865a,15,2,f +15999,4871,15,1,f +15999,6134,0,1,f +15999,6141,47,1,t +15999,6141,47,4,f +15999,6141,57,5,f +15999,6141,57,1,t +15999,6141,8,1,t +15999,6141,8,6,f +15999,6183,19,2,f +15999,6215,6,1,f +15999,6231,19,2,f +15999,6538b,8,10,f +15999,6541,7,4,f +15999,6553,0,2,f +15999,6588,47,1,f +15999,6628,0,8,f +15999,6636,19,4,f +15999,6636,4,2,f +15999,73983,2,6,f +15999,75535,7,1,f +15999,76385,0,2,f +15999,85543,15,6,f +15999,970c00,8,1,f +15999,973px158c01,19,1,f +15999,973px320c01,378,1,f +16000,36,7,2,f +16000,650,79,1,f +16000,7049b,15,2,f +16000,715,4,2,f +16003,33051,10,1,f +16003,33172,25,1,f +16003,33183,10,1,f +16003,33183,10,1,t +16003,4424,70,1,f +16004,2335p30,15,1,f +16004,2357,7,1,f +16004,2423,2,2,f +16004,2489,6,1,f +16004,2530,8,1,f +16004,2544,0,1,f +16004,2562,6,1,f +16004,3003,7,1,f +16004,3004,7,1,f +16004,3032,14,2,f +16004,3626bp49,14,1,f +16004,3957a,0,1,f +16004,4070,7,1,f +16004,970c00,7,1,f +16004,973p34c01,1,1,f +16005,3034a,15,1,f +16005,712a,15,2,f +16005,713a,15,2,f +16006,30374,36,1,f +16006,30408px5,0,1,f +16006,3626b,0,2,f +16006,3626bpr0515a,71,1,f +16006,44360,15,1,f +16006,58247,0,2,f +16006,6090,0,1,f +16006,64567,80,1,f +16006,74188,72,3,f +16006,970c00,0,1,f +16006,970d07,0,1,f +16006,970x194,15,1,f +16006,973pr1342c01,0,1,f +16006,973pr1344c01,15,1,f +16006,973pr1365c01,0,1,f +16007,2357,72,4,f +16007,2453a,19,2,f +16007,3005,71,1,f +16007,3008,72,1,f +16007,3009,71,3,f +16007,30136,71,6,f +16007,3020,71,1,f +16007,3023,72,4,f +16007,30238,0,1,f +16007,3036,72,1,f +16007,30374,70,1,f +16007,30374,0,1,f +16007,3041,378,1,f +16007,3048c,378,2,f +16007,3069b,72,1,f +16007,3069bpr0113,19,1,f +16007,33009,0,1,f +16007,3307,71,1,f +16007,3307,19,1,f +16007,3622,72,4,f +16007,3626bpr0703,78,1,f +16007,3626bpr0704,78,1,f +16007,3665,19,4,f +16007,3666,71,1,f +16007,3700,72,2,f +16007,3794a,70,2,f +16007,40233,0,1,f +16007,40239,19,1,f +16007,41879a,19,1,f +16007,4332,70,1,f +16007,43745pr0001,78,1,f +16007,50231,0,1,f +16007,55013,72,1,f +16007,59443,4,1,f +16007,59900,378,2,f +16007,59900,72,2,f +16007,60475a,0,1,f +16007,6141,297,1,t +16007,6141,297,1,f +16007,64647,57,2,f +16007,64647,57,1,t +16007,87087,19,2,f +16007,87580,70,1,f +16007,970c00,0,2,f +16007,973pr1671c01,72,1,f +16007,973pr1672c01,0,1,f +16007,973pr1673c01,19,1,f +16008,3068ap01,15,1,f +16008,3245ap01,15,1,f +16008,7852,1,1,f +16008,bb93c16,15,1,f +16008,sw12v1righta,1,1,f +16009,45449,118,2,f +16009,45452,43,2,f +16009,clikits004,13,2,f +16009,clikits005,230,2,f +16010,3001a,47,1,f +16010,3004,4,6,f +16010,3004,1,10,f +16010,3005,1,2,f +16010,3005,4,4,f +16010,3007,4,2,f +16010,3009,1,7,f +16010,3010,0,1,f +16010,3010,1,12,f +16010,3010,4,10,f +16010,3010pb035u,0,1,f +16010,3020,4,2,f +16010,3020,14,4,f +16010,3021,4,2,f +16010,3022,0,2,f +16010,3022,4,2,f +16010,3022,7,2,f +16010,3023,4,3,f +16010,3023,7,1,f +16010,3023,0,2,f +16010,3033,1,1,f +16010,3034,14,4,f +16010,3034,0,1,f +16010,3035,4,1,f +16010,3035,0,1,f +16010,3062a,14,6,f +16010,3068a,7,16,f +16010,3081cc01,15,2,f +16010,3137c01,0,2,f +16010,3139,0,4,f +16010,3185,4,2,f +16010,3190,1,1,f +16010,3191,1,1,f +16010,3297,4,8,f +16010,3298,4,4,f +16010,3299,4,2,f +16010,32bc01,15,1,f +16010,3300,4,3,f +16010,3308,4,2,f +16010,374p02,2,1,f +16010,7039,4,1,f +16010,7049b,0,1,f +16010,gtpine,2,1,f +16011,2046,13,1,f +16011,2343,47,2,f +16011,2412b,7,1,f +16011,2420,15,2,f +16011,2423,2,1,f +16011,2431,15,4,f +16011,2432,15,1,f +16011,2432,7,1,f +16011,2436,0,2,f +16011,2437,41,1,f +16011,2441,0,1,f +16011,2453a,15,5,f +16011,2454a,15,5,f +16011,2493c01,15,2,f +16011,2513,0,1,f +16011,2518,2,4,f +16011,2536,6,6,f +16011,2540,15,1,f +16011,2546p01,4,1,f +16011,2563,6,1,f +16011,2566,6,1,f +16011,298c02,15,1,f +16011,3003,7,1,f +16011,3004,15,3,f +16011,3005,15,9,f +16011,3008,15,1,f +16011,3020,7,1,f +16011,3020,15,1,f +16011,3022,7,1,f +16011,3023,15,2,f +16011,3023,13,3,f +16011,3023,7,3,f +16011,3024,13,5,f +16011,3024,7,1,f +16011,3024,46,2,f +16011,3027,15,1,f +16011,3031,15,1,f +16011,3032,15,1,f +16011,3035,7,1,f +16011,3036,7,1,f +16011,3062b,15,4,f +16011,3062b,0,1,f +16011,3069b,7,2,f +16011,3069bpr0099,15,3,f +16011,3070b,36,2,f +16011,3070b,7,2,f +16011,3185,13,2,f +16011,3307,15,1,f +16011,3455,15,4,f +16011,3622,15,1,f +16011,3623,7,2,f +16011,3623,13,3,f +16011,3626b,47,1,f +16011,3626bp03,14,1,f +16011,3626bp04,14,1,f +16011,3626bp07,14,1,f +16011,3626bpb0175,14,1,f +16011,3641,0,4,f +16011,3659,15,4,f +16011,3665,15,2,f +16011,3666,13,2,f +16011,3666,7,4,f +16011,3679,7,2,f +16011,3680,15,2,f +16011,3710,0,1,f +16011,3710,15,4,f +16011,3710,7,1,f +16011,3741,2,5,f +16011,3742,14,2,t +16011,3742,4,3,t +16011,3742,14,6,f +16011,3742,4,9,f +16011,3747a,15,1,f +16011,3755,15,1,f +16011,3788,0,1,f +16011,3794a,7,2,f +16011,3794a,15,1,f +16011,3795,15,1,f +16011,3821,0,1,f +16011,3822,0,1,f +16011,3829c01,15,1,f +16011,3899,13,2,f +16011,3901,6,1,f +16011,3901,0,1,f +16011,3941,15,1,f +16011,3957a,15,1,f +16011,3960pb001,15,1,f +16011,4032a,2,1,f +16011,4079,13,2,f +16011,4345b,15,1,f +16011,4346p03,15,1,f +16011,4477,7,1,f +16011,4528,0,1,f +16011,4532,15,2,f +16011,4533,14,1,f +16011,4536,14,2,f +16011,4590,7,1,f +16011,4599a,13,1,f +16011,4624,15,4,f +16011,6002,47,2,f +16011,6003,15,3,f +16011,6059,47,2,f +16011,6060,15,4,f +16011,6091,7,3,f +16011,6092px2,17,1,f +16011,6093,6,1,f +16011,6093,0,1,f +16011,6141,0,8,f +16011,6141,15,4,f +16011,6141,46,3,f +16011,73194c01,15,1,f +16011,970c00,15,1,f +16011,970c00,0,1,f +16011,970x001,14,1,f +16011,970x026,14,1,f +16011,973c11,0,1,f +16011,973pb0017c01,15,1,f +16011,973pr1190c01,0,1,f +16011,973px23c01,13,1,f +16012,2346,0,4,f +16012,2420,15,2,f +16012,2780,0,14,f +16012,2790,7,1,f +16012,2791,7,1,f +16012,2792,0,1,f +16012,2817,0,1,f +16012,2825,14,2,f +16012,2825,0,4,f +16012,3023,15,8,f +16012,3482,14,4,f +16012,3647,7,3,f +16012,3648a,7,1,f +16012,3650a,7,2,f +16012,3651,7,4,f +16012,3666,15,4,f +16012,3673,7,1,f +16012,3700,15,7,f +16012,3701,15,4,f +16012,3702,15,4,f +16012,3704,0,1,f +16012,3705,0,3,f +16012,3706,0,3,f +16012,3707,0,1,f +16012,3709,15,2,f +16012,3710,15,6,f +16012,3713,7,7,f +16012,3737,0,1,f +16012,3738,15,2,f +16012,3749,7,7,f +16012,3795,15,2,f +16012,3894,15,4,f +16012,3895,15,2,f +16012,4185,7,1,f +16012,4261,7,2,f +16012,4442,0,1,f +16012,4519,0,1,f +16013,2412b,15,2,f +16013,2412b,71,6,f +16013,2412b,4,4,f +16013,2419,1,1,f +16013,2450,1,2,f +16013,2540,15,4,f +16013,2780,0,2,t +16013,2780,0,14,f +16013,3001,15,4,f +16013,3003,1,1,f +16013,3004,15,14,f +16013,3020,71,2,f +16013,3020,15,1,f +16013,3020,1,2,f +16013,3020,0,2,f +16013,3021,0,3,f +16013,3022,1,1,f +16013,3022,14,4,f +16013,3022,15,5,f +16013,3022,0,1,f +16013,3023,1,2,f +16013,3023,15,1,f +16013,3023,0,3,f +16013,3034,15,1,f +16013,30359b,0,4,f +16013,30367b,0,2,f +16013,30383,15,2,f +16013,30503,0,4,f +16013,30552,0,2,f +16013,30602,15,1,f +16013,3069b,4,2,f +16013,32000,0,1,f +16013,32001,1,1,f +16013,32009,71,2,f +16013,32018,72,2,f +16013,32054,71,4,f +16013,32062,4,3,f +16013,32062,0,6,f +16013,32064b,71,20,f +16013,32123b,14,5,f +16013,32123b,14,2,t +16013,32140,0,2,f +16013,32174,72,4,f +16013,32192,72,4,f +16013,32316,0,1,f +16013,32475,72,2,f +16013,32530,0,2,f +16013,3298,1,2,f +16013,3622,71,2,f +16013,3626bpr0452,14,1,f +16013,3700,1,4,f +16013,3701,15,3,f +16013,3705,0,4,f +16013,3708,0,1,f +16013,3710,15,2,f +16013,3738,1,1,f +16013,3832,15,6,f +16013,3941,0,5,f +16013,3941,71,1,f +16013,3956,1,1,f +16013,40244,0,4,f +16013,40902,71,2,f +16013,41532,0,2,f +16013,41747,4,2,f +16013,41748,4,1,f +16013,41749,15,1,f +16013,41750,15,1,f +16013,41764,4,2,f +16013,41765,4,1,f +16013,43093,1,10,f +16013,4349,0,1,f +16013,44302a,15,2,f +16013,44728,0,2,f +16013,45301,15,3,f +16013,45705,15,3,f +16013,4589,14,3,f +16013,47406,15,3,f +16013,47454,72,2,f +16013,47455,15,6,f +16013,47456,135,2,f +16013,47753,0,2,f +16013,47905,72,2,f +16013,48169,15,4,f +16013,48170,71,4,f +16013,48336,0,1,f +16013,4861,15,2,f +16013,48933,1,4,f +16013,53982,4,1,f +16013,53983pat0002,135,3,f +16013,53989,135,8,f +16013,54200,4,2,f +16013,56145,0,1,f +16013,57028c01,4,1,f +16013,57796,0,1,f +16013,57906,4,2,f +16013,57908,72,1,f +16013,57909a,72,4,f +16013,59812,15,1,f +16013,6019,15,2,f +16013,6070,40,1,f +16013,6141,182,1,t +16013,6141,34,2,f +16013,6141,34,1,t +16013,6141,57,4,f +16013,6538b,71,1,f +16013,6538b,4,1,f +16013,6538b,14,2,f +16013,6539,4,1,f +16013,6553,0,2,f +16013,6587,72,5,f +16013,78c15,135,2,f +16013,970x026,15,1,f +16013,973pr1311c01,15,1,f +16014,32013,7,1,f +16014,32062,0,2,f +16014,32073,0,1,f +16014,32174,0,4,f +16014,32269,7,1,f +16014,32270,7,3,f +16014,32475,0,2,f +16014,32476,8,2,f +16014,32482,8,4,f +16014,32489,0,1,f +16014,32506,0,2,f +16014,32553,7,1,f +16014,32554,34,1,f +16014,32566,0,1,f +16014,3706,0,1,f +16014,3713,7,2,f +16014,4519,0,2,f +16014,6553,7,1,f +16014,gbiocd2001,89,1,f +16015,17351pr0001,29,1,f +16015,33051,10,1,f +16015,3626cpr1476,14,1,f +16015,88646,0,1,f +16015,970c00pr0711,29,1,f +16015,973pr2745c01,29,1,f +16016,3005,4,40,f +16016,3005,1,40,f +16016,3005,14,40,f +16016,3005,15,40,f +16018,3626bpr0645,14,1,f +16018,74188,4,1,f +16018,86035,4,1,f +16018,87079pr0042,15,1,f +16018,970c00,1,1,f +16018,973pr2136c01,15,1,f +16020,2346,0,4,f +16020,2412b,0,3,f +16020,2419,15,1,f +16020,2444,15,5,f +16020,2446,1,1,f +16020,2447,33,1,f +16020,2458,15,2,f +16020,298c02,15,3,f +16020,3020,15,1,f +16020,3021,0,1,f +16020,3022,0,5,f +16020,3022,15,2,f +16020,3023,0,1,f +16020,3032,0,1,f +16020,3039p05,15,1,f +16020,3044c,0,2,f +16020,3045,15,2,f +16020,3069b,15,1,f +16020,3482,15,4,f +16020,3626apr0001,14,1,f +16020,3639,0,2,f +16020,3640,0,2,f +16020,3679,7,2,f +16020,3680,15,2,f +16020,3700,15,2,f +16020,3706,0,1,f +16020,3710,15,2,f +16020,3749,7,4,f +16020,3794a,0,1,f +16020,3795,0,1,f +16020,3838,1,1,f +16020,3839b,0,1,f +16020,3900,0,1,f +16020,3937,0,1,f +16020,3937,15,1,f +16020,3938,15,1,f +16020,3938,0,1,f +16020,3957a,0,2,f +16020,3962b,0,1,f +16020,4070,0,2,f +16020,4085c,15,6,f +16020,4286,15,2,f +16020,4589,0,2,f +16020,4590,0,2,f +16020,4598,15,1,f +16020,4733,0,1,f +16020,4740,33,1,f +16020,4865a,15,1,f +16020,4871,15,1,f +16020,6141,36,2,f +16020,6141,33,2,f +16020,970c00,1,1,f +16020,973p6cc01,15,1,f +16022,458,0,4,f +16022,wheel2a,4,4,f +16024,2456,1,2,f +16024,2456,4,1,f +16024,2456,15,2,f +16024,2456,14,1,f +16024,2877,71,4,f +16024,3001,0,3,f +16024,3001,1,6,f +16024,3001,2,3,f +16024,3001,14,6,f +16024,3001,4,6,f +16024,3001,25,4,f +16024,3001,15,6,f +16024,3001,27,4,f +16024,3002,15,6,f +16024,3002,1,6,f +16024,3002,14,6,f +16024,3002,4,6,f +16024,3002,0,3,f +16024,3002,2,3,f +16024,3003,27,8,f +16024,3003,2,8,f +16024,3003,14,16,f +16024,3003,0,8,f +16024,3003,4,16,f +16024,3003,15,16,f +16024,3003,25,8,f +16024,3003,1,16,f +16024,3004,0,6,f +16024,3004,27,4,f +16024,3004,1,12,f +16024,3004,15,12,f +16024,3004,4,12,f +16024,3004,2,6,f +16024,3004,25,4,f +16024,3004,14,12,f +16024,3004p0b,14,2,f +16024,3005,4,8,f +16024,3005,1,8,f +16024,3005,14,4,f +16024,3005,2,4,f +16024,3005,15,4,f +16024,3005,0,4,f +16024,3005pe1,15,4,f +16024,3005pe1,14,4,f +16024,3007,14,1,f +16024,3007,1,1,f +16024,3007,15,1,f +16024,3007,4,1,f +16024,3008,14,1,f +16024,3008,15,2,f +16024,3008,4,1,f +16024,3008,1,2,f +16024,3009,14,2,f +16024,3009,4,2,f +16024,3009,15,3,f +16024,3009,1,3,f +16024,3010,4,3,f +16024,3010,0,2,f +16024,3010,2,2,f +16024,3010,14,3,f +16024,3010,1,3,f +16024,3010,15,3,f +16024,3020,14,2,f +16024,3020,4,4,f +16024,3021,1,2,f +16024,3021,4,2,f +16024,3021,0,2,f +16024,3022,0,2,f +16024,3022,15,4,f +16024,3022,4,2,f +16024,3023,4,4,f +16024,3023,14,4,f +16024,3028,10,1,f +16024,3034,4,2,f +16024,3037,1,8,f +16024,3037,4,4,f +16024,3039,0,4,f +16024,3039,1,4,f +16024,3039,14,2,f +16024,3039,4,4,f +16024,3040b,4,4,f +16024,3040b,0,4,f +16024,3040b,1,2,f +16024,3040b,14,4,f +16024,3062b,15,6,f +16024,33303,15,2,f +16024,3622,2,2,f +16024,3622,14,4,f +16024,3622,0,2,f +16024,3622,15,4,f +16024,3622,4,4,f +16024,3622,1,4,f +16024,3659,15,2,f +16024,3660,15,2,f +16024,3660,1,2,f +16024,3660,14,4,f +16024,3665,14,4,f +16024,3666,1,2,f +16024,3710,1,4,f +16024,3795,4,2,f +16024,3823,47,2,f +16024,3839b,71,1,f +16024,3957a,15,1,f +16024,4132,4,2,f +16024,4495b,4,1,f +16024,4600,0,2,f +16024,4624,71,4,f +16024,6014b,15,4,f +16024,60476,0,2,f +16024,60599,4,1,f +16024,60608,15,4,f +16024,60623,15,1,f +16024,60700,0,4,f +16024,6141,4,4,f +16024,6141,4,1,t +16024,6157,71,2,f +16024,87414,0,4,f +16025,3626bpr0778,14,1,f +16025,88646,0,1,f +16025,93224pr0001,191,1,f +16025,93225,0,1,f +16025,970x026,191,1,f +16025,973pr1765c01,191,1,f +16026,3022,2,40,f +16027,2412b,14,1,f +16027,2445,1,4,f +16027,2639,72,4,f +16027,3003,73,4,f +16027,3003,19,4,f +16027,3003,27,4,f +16027,3003,320,4,f +16027,3005,72,4,f +16027,30093,2,8,f +16027,30136,72,4,f +16027,30162,72,3,f +16027,3020,1,2,f +16027,3022,72,4,f +16027,3023,71,1,f +16027,3023,4,1,f +16027,3035,72,1,f +16027,30385,42,8,f +16027,3040b,72,4,f +16027,3045,72,4,f +16027,3062b,34,8,f +16027,30663,71,2,f +16027,3068b,2,1,f +16027,3068bpr0175,15,6,f +16027,3068bpr0176,15,6,f +16027,3068bpr0177,15,6,f +16027,3068bpr0178,15,6,f +16027,3068bpr0183,15,1,f +16027,3069b,33,12,f +16027,3070b,25,2,f +16027,3070b,15,2,f +16027,3070b,14,2,f +16027,3070b,15,1,t +16027,3070b,4,1,t +16027,3070b,4,2,f +16027,3070b,14,1,t +16027,3070b,25,1,t +16027,32474,0,1,f +16027,3456,272,2,f +16027,3623,1,4,f +16027,3710,1,16,f +16027,3794b,72,8,f +16027,3795,72,2,f +16027,3957a,1,4,f +16027,4006,0,1,f +16027,4085c,72,1,f +16027,4282,272,16,f +16027,4477,1,20,f +16027,4733,72,4,f +16027,4740,14,1,f +16027,4740,4,1,f +16027,49668,15,1,f +16027,54200,40,4,f +16027,54200,40,1,t +16027,54200,72,2,f +16027,54200,72,1,t +16027,59900,1,4,f +16027,6019,25,2,f +16027,6019,14,2,f +16027,6019,4,2,f +16027,6019,15,2,f +16027,60475a,71,8,f +16027,6141,71,1,t +16027,6141,25,1,f +16027,6141,41,1,t +16027,6141,25,1,t +16027,6141,41,8,f +16027,6141,71,1,f +16027,62462,1,4,f +16027,64567,71,8,f +16027,64776pat0001,0,1,f +16027,85861,15,1,f +16027,85861,15,1,t +16027,85863pr0042,297,1,f +16027,87580,72,13,f +16027,87580,1,8,f +16027,92290,297,1,f +16032,2470,6,2,f +16032,2546,8,1,f +16032,3626bpr0001,14,1,f +16032,3795,0,1,f +16032,3839b,7,1,f +16032,4590,1,1,f +16032,4623,1,1,f +16032,4738a,6,1,f +16032,4739a,6,1,f +16032,6124,21,1,f +16032,6131,1,1,f +16032,6132,15,1,f +16032,6141,34,1,f +16032,6141,33,1,f +16032,6157,0,1,f +16032,970c00,1,1,f +16032,973p46c02,1,1,f +16033,2420,0,1,f +16033,2524,6,1,f +16033,2526,14,1,f +16033,2526,1,1,f +16033,2530,8,2,f +16033,2544,0,1,f +16033,2545,0,1,f +16033,2561,6,1,f +16033,2562,6,1,f +16033,3001,7,1,f +16033,3002,7,2,f +16033,3023,7,1,f +16033,3032,14,2,f +16033,3062b,4,1,f +16033,3626bp44,14,1,f +16033,3626bpr0001,14,1,f +16033,4085c,7,2,f +16033,4085c,0,1,f +16033,6064,2,1,f +16033,6126a,57,1,f +16033,970c00,15,2,f +16033,973pb0206c01,15,2,f +16035,3003,0,2,f +16035,3003pe2,15,1,f +16035,3004,0,1,f +16035,3004,15,2,f +16035,3021,15,1,f +16035,3023,0,1,f +16035,3660,15,1,f +16035,3710,7,1,f +16036,122c01,0,2,f +16036,3004,0,3,f +16036,3004,15,2,f +16036,3020,15,2,f +16036,3021,0,1,f +16036,3023,15,5,f +16036,3024,0,3,f +16036,3024,46,3,f +16036,3024,33,3,f +16036,3024,15,4,f +16036,3024,36,1,f +16036,3069b,0,1,f +16036,3069bpb001,15,2,f +16036,3070b,15,4,f +16036,3070b,0,1,f +16036,3460,15,1,f +16036,3464,4,2,f +16036,3623,15,2,f +16036,3624,15,1,f +16036,3626apr0001,14,2,f +16036,3641,0,6,f +16036,3710,0,1,f +16036,3794a,15,3,f +16036,3821,0,1,f +16036,3822,0,1,f +16036,3823,47,1,f +16036,3829c01,1,1,f +16036,3832,0,1,f +16036,3842a,15,1,f +16036,3853,0,1,f +16036,3856,15,2,f +16036,4070,0,2,f +16036,4079,1,1,f +16036,4175,1,1,f +16036,4211,15,1,f +16036,4213,0,2,f +16036,4215ap18,47,2,f +16036,4315,0,1,f +16036,4480c01,7,1,f +16036,4483p01,47,1,f +16036,4625,0,1,f +16036,970c00,0,2,f +16036,973pb0079c01,0,1,f +16036,973pb0091c01,0,1,f +16037,2412b,71,2,f +16037,2420,71,4,f +16037,2447,36,1,t +16037,2447,36,1,f +16037,2540,0,3,f +16037,2540,14,1,f +16037,3001,0,1,f +16037,3004,0,1,f +16037,3020,71,1,f +16037,3021,0,5,f +16037,3021,14,1,f +16037,3021,71,4,f +16037,3022,0,3,f +16037,3022,71,4,f +16037,3023,320,5,f +16037,3023,25,2,f +16037,3023,0,4,f +16037,30367b,0,1,f +16037,30377,0,4,f +16037,30377,0,1,t +16037,3068b,320,1,f +16037,3069b,14,2,f +16037,3623,320,6,f +16037,3660,71,3,f +16037,3794b,320,2,f +16037,4032a,14,3,f +16037,4032a,0,4,f +16037,4085c,0,6,f +16037,41747,0,1,f +16037,41748,0,1,f +16037,41764,71,1,f +16037,41765,71,1,f +16037,43713,0,1,f +16037,43719,0,2,f +16037,43722,25,1,f +16037,43722,0,3,f +16037,43723,0,3,f +16037,43723,25,1,f +16037,44301a,71,4,f +16037,44302a,71,4,f +16037,47455,0,2,f +16037,47753,0,1,f +16037,47759,0,1,f +16037,48170,72,2,f +16037,48172,0,1,f +16037,48336,0,9,f +16037,4871,0,1,f +16037,49668,179,6,f +16037,49668,0,2,f +16037,49668,15,4,f +16037,50231,0,1,f +16037,50950,320,4,f +16037,51739,320,4,f +16037,53451,15,9,f +16037,53451,179,1,t +16037,53451,179,6,f +16037,53989,0,8,f +16037,54200,71,2,f +16037,54200,0,1,t +16037,54200,0,4,f +16037,54200,71,1,t +16037,6019,71,6,f +16037,60470a,0,8,f +16037,60478,71,2,f +16037,60478,0,6,f +16037,6091,0,4,f +16037,61409,14,2,f +16037,6141,179,4,f +16037,6141,25,2,f +16037,6141,34,1,t +16037,6141,25,1,t +16037,6141,15,8,f +16037,6141,179,1,t +16037,6141,14,1,t +16037,6141,34,2,f +16037,61678,14,2,f +16037,63868,71,2,f +16037,73983,71,4,f +16037,85942,72,1,f +16037,85984,14,2,f +16037,87620,0,2,f +16037,87747,15,1,t +16037,87747,15,1,f +16037,92280,0,6,f +16037,92692,0,4,f +16040,30173b,0,3,f +16040,3070b,1,1,f +16040,32014,0,1,f +16040,3623,1,2,f +16040,4081b,1,2,f +16040,4697b,71,2,f +16040,4733,0,2,f +16040,48729b,0,2,f +16040,54200,33,2,f +16040,54200,1,4,f +16040,6141,71,2,f +16040,6141,1,3,f +16040,98313,1,2,f +16041,122c01,0,6,f +16041,210,2,1,f +16041,3001a,1,2,f +16041,3001a,4,1,f +16041,3002a,14,1,f +16041,3004,4,47,f +16041,3004,47,2,f +16041,3004,14,5,f +16041,3004,1,2,f +16041,3005,4,38,f +16041,3008,4,7,f +16041,3009,4,15,f +16041,3010,4,10,f +16041,3010ap04,4,1,f +16041,3010pb035e,4,2,f +16041,3020,14,1,f +16041,3020,4,6,f +16041,3021,4,1,f +16041,3022,14,1,f +16041,3022,4,2,f +16041,3022,0,1,f +16041,3023,4,14,f +16041,3023,0,1,f +16041,3024,4,8,f +16041,3027,0,3,f +16041,3030,0,4,f +16041,3030,4,1,f +16041,3031,4,1,f +16041,3034,4,6,f +16041,3036,0,1,f +16041,3040a,0,1,f +16041,3062a,14,2,f +16041,3062a,0,2,f +16041,3062a,33,2,f +16041,3069a,0,3,f +16041,3081cc01,15,1,f +16041,3144,79,1,f +16041,3149c01,4,1,f +16041,3183a,4,1,f +16041,3184,4,1,f +16041,3185,4,3,f +16041,3470,2,1,f +16041,3581,4,6,f +16041,3582,15,2,f +16041,3596,15,1,f +16041,3622,4,17,f +16041,3626apr0001,14,4,f +16041,3633,7,4,f +16041,3641,0,12,f +16041,3644,47,4,f +16041,3659,4,4,f +16041,3660,4,4,f +16041,3665,4,6,f +16041,3666,4,2,f +16041,3673,7,2,f +16041,3679,7,1,f +16041,3680,4,1,f +16041,3700,4,2,f +16041,3710,4,8,f +16041,3788,4,6,f +16041,3795,4,1,f +16041,3795,0,2,f +16041,3795,1,1,f +16041,3823,47,1,f +16041,3830,4,2,f +16041,3831,4,2,f +16041,3832,0,2,f +16041,3834,0,4,f +16041,3835,7,1,f +16041,3837,8,1,f +16041,3838,7,1,f +16041,3841,8,1,f +16041,3853,15,2,f +16041,3854,15,4,f +16041,3857,2,1,f +16041,3861b,15,2,f +16041,397,2,1,f +16041,420,14,2,f +16041,421,14,1,f +16041,590stk01,9999,1,t +16041,7284,15,1,f +16041,970c00,0,4,f +16041,973c18,0,4,f +16042,2357,0,2,f +16042,2362b,0,2,f +16042,2453a,4,2,f +16042,2540,0,3,f +16042,2540,15,2,f +16042,2654,4,1,f +16042,3004,0,3,f +16042,30055,15,1,f +16042,30173b,0,1,f +16042,30173b,297,1,f +16042,30176,2,2,f +16042,3021,70,2,f +16042,3022,4,1,f +16042,3023,19,2,f +16042,30367b,0,1,f +16042,3040b,72,4,f +16042,3048c,0,5,f +16042,3062b,0,1,f +16042,3068b,15,1,f +16042,3068bpr0187,15,1,f +16042,32013,71,2,f +16042,32039,0,1,f +16042,32062,4,1,f +16042,32530,72,2,f +16042,32556,19,1,f +16042,3626cpr0895,15,2,f +16042,3666,70,1,f +16042,3700,4,1,f +16042,3710,19,4,f +16042,3795,28,2,f +16042,3795,70,4,f +16042,3795,72,1,f +16042,3829c01,4,1,f +16042,3848,72,1,f +16042,3941,0,1,f +16042,4286,0,2,f +16042,4287,0,2,f +16042,43898,15,1,f +16042,44674,15,2,f +16042,4497,135,1,f +16042,4497,308,1,f +16042,4519,71,1,f +16042,4599b,0,2,f +16042,4600,71,2,f +16042,4623,72,1,f +16042,50943,72,1,f +16042,53705,132,1,f +16042,54200,70,1,t +16042,54200,70,2,f +16042,54200,0,1,t +16042,54200,0,6,f +16042,6014b,15,4,f +16042,6019,72,2,f +16042,60474,0,1,f +16042,60475a,0,10,f +16042,60700,0,4,f +16042,61184,71,2,f +16042,6141,0,3,f +16042,6141,85,2,f +16042,6141,15,6,f +16042,6141,85,1,t +16042,6141,15,1,t +16042,6141,0,1,t +16042,61485,0,1,f +16042,63965,15,2,f +16042,64644,297,2,f +16042,64647,57,1,t +16042,64647,57,3,f +16042,73983,19,2,f +16042,87087,4,4,f +16042,88289,308,1,f +16042,92691,15,3,f +16042,93061,15,1,t +16042,93609,15,1,t +16042,93609,15,4,f +16043,11478,0,4,f +16043,15362,0,6,f +16043,15367,0,2,f +16043,15462,28,3,f +16043,15976,0,2,f +16043,18575,0,2,f +16043,18651,0,3,f +16043,19049,42,1,f +16043,19050,57,1,f +16043,19086,72,1,f +16043,20252,42,4,f +16043,20473,42,3,f +16043,20473,148,1,f +16043,24188,148,2,f +16043,24189,148,1,f +16043,24190,0,1,f +16043,25528,148,1,f +16043,25532,297,1,f +16043,25534,42,2,f +16043,2780,0,12,f +16043,32002,19,1,f +16043,32015,0,4,f +16043,32039,0,4,f +16043,32062,4,8,f +16043,32072,0,1,f +16043,32123b,71,9,f +16043,32140,0,2,f +16043,32270,0,3,f +16043,32316,72,1,f +16043,32348,0,4,f +16043,32524,0,2,f +16043,32557,0,1,f +16043,3706,0,2,f +16043,3713,71,1,f +16043,41669,42,8,f +16043,4274,71,3,f +16043,43093,1,2,f +16043,44294,71,1,f +16043,4519,71,2,f +16043,48989,71,2,f +16043,50923,72,4,f +16043,53551,179,4,f +16043,53585,0,4,f +16043,60483,0,2,f +16043,64276,0,9,f +16043,6558,1,7,f +16043,6587,28,3,f +16043,74261,0,4,f +16043,87083,72,4,f +16043,87747,0,4,f +16043,87846,297,2,f +16043,90616,0,2,f +16043,90617,42,4,f +16043,90640,0,6,f +16043,93571,0,10,f +16043,98577,72,6,f +16043,98604,0,1,f +16045,2412b,57,2,f +16045,2419,14,1,f +16045,2446,0,1,f +16045,2447,42,1,f +16045,2654,15,1,f +16045,3034,0,1,f +16045,30363,14,1,f +16045,3626bpb0046,14,1,f +16045,3665,14,4,f +16045,3829c01,7,1,f +16045,4070,0,2,f +16045,4286,0,2,f +16045,4859,0,1,f +16045,6126a,57,2,f +16045,970x026,14,1,f +16045,973pb0051c01,15,1,f +16047,3022,70,4,f +16047,3040b,2,8,f +16047,4032a,2,1,f +16047,4286,2,4,f +16047,4589,2,1,f +16047,6124,42,1,f +16047,6141,36,2,f +16047,6141,33,1,f +16047,6141,36,1,t +16047,6141,46,1,t +16047,6141,33,1,t +16047,6141,46,1,f +16050,2412b,15,1,f +16050,2540,15,1,f +16050,3020,15,1,f +16050,3039,33,1,f +16050,3641,0,4,f +16050,3679,7,1,f +16050,3680,0,1,f +16050,4349,8,1,f +16050,4600,0,2,f +16050,4624,14,4,f +16050,4740,42,1,f +16051,60895,72,1,f +16051,60896,0,2,f +16051,60900,0,2,f +16051,62386,72,2,f +16051,64251,72,2,f +16051,64262,57,1,f +16051,64263pat0002,0,2,f +16051,64319,0,1,f +16052,12061,484,1,f +16052,12062,308,1,f +16052,3437,2,1,f +16052,3437,14,1,f +16052,3437,10,2,f +16052,47510pr0004,4,1,f +16052,75723,15,1,f +16052,88379,70,1,f +16054,3020,7,16,f +16054,3021,7,12,f +16054,3022,7,16,f +16054,3034,7,4,f +16054,3795,7,4,f +16054,3832,7,4,f +16055,11946,25,1,f +16055,11947,25,1,f +16055,11957,0,2,f +16055,13074,9999,1,f +16055,14696,0,1,t +16055,14696,0,39,f +16055,2780,0,1,t +16055,2780,0,17,f +16055,2825,0,2,f +16055,2850b,71,2,f +16055,2851,14,2,f +16055,2852,71,2,f +16055,2853,14,2,f +16055,2909c03,0,2,f +16055,3020,0,1,f +16055,3022,71,2,f +16055,32009,0,3,f +16055,32016,0,2,f +16055,32039,0,2,f +16055,32054,0,6,f +16055,32062,4,5,f +16055,32064b,0,3,f +16055,32073,71,2,f +16055,32123b,71,1,t +16055,32123b,71,9,f +16055,32140,0,2,f +16055,32140,71,3,f +16055,32192,72,1,f +16055,32269,0,1,f +16055,32271,25,2,f +16055,32278,0,1,f +16055,32291,71,1,f +16055,32316,0,1,f +16055,32333,71,2,f +16055,32348,0,5,f +16055,32523,0,2,f +16055,32525,71,2,f +16055,32556,19,1,f +16055,32557,71,1,f +16055,33299a,71,4,f +16055,3623,0,2,f +16055,3649,71,1,f +16055,3706,0,2,f +16055,3707,0,1,f +16055,3713,71,9,f +16055,3900,71,2,f +16055,41678,0,2,f +16055,4274,71,1,f +16055,4274,71,1,t +16055,43093,1,7,f +16055,44294,71,6,f +16055,44567a,0,1,f +16055,4519,71,16,f +16055,45677,25,1,f +16055,47753,0,1,f +16055,55013,72,1,f +16055,59443,71,2,f +16055,60471,0,1,f +16055,60483,71,7,f +16055,62462,71,1,f +16055,62462,0,2,f +16055,63869,71,1,f +16055,64394,25,1,f +16055,64680,25,1,f +16055,6536,0,6,f +16055,6558,1,18,f +16055,6589,19,1,f +16055,6589,19,1,t +16055,6629,0,2,f +16055,76537,14,1,f +16055,78c06,179,1,f +16055,78c06,179,1,t +16055,78c11,179,1,t +16055,78c11,179,1,f +16055,87080,25,1,f +16055,87082,71,2,f +16055,87083,72,3,f +16055,87086,25,1,f +16055,88517,72,2,f +16055,92907,0,1,f +16055,94925,71,3,f +16055,99773,0,4,f +16056,4094a,4,1,f +16056,63965,4,1,f +16056,fab7b,9999,1,f +16056,fabad3c01,14,1,f +16059,23306,383,1,f +16059,2342,14,1,f +16059,2362b,7,1,f +16059,2412b,4,4,f +16059,2420,7,2,f +16059,2420,8,4,f +16059,2431,14,5,f +16059,2431,7,1,f +16059,2431,4,2,f +16059,2431pr0027,7,2,f +16059,2445,7,1,f +16059,2456,4,1,f +16059,2555,0,1,f +16059,2654,0,12,f +16059,2877,7,6,f +16059,298c01,0,2,f +16059,3001,0,4,f +16059,3003,0,4,f +16059,3004,1,2,f +16059,3004,4,2,f +16059,3005,7,4,f +16059,3009,7,3,f +16059,3009,8,2,f +16059,3010,7,2,f +16059,30180,7,1,f +16059,3020,4,2,f +16059,3020,0,1,f +16059,3021,19,1,f +16059,3022,4,1,f +16059,3022,0,1,f +16059,3022,8,1,f +16059,3023,1,1,f +16059,3023,8,2,f +16059,3029,7,1,f +16059,3031,7,2,f +16059,3032,7,1,f +16059,3034,19,1,f +16059,3035,4,3,f +16059,30355,7,2,f +16059,30356,7,2,f +16059,30359a,8,4,f +16059,30360,7,4,f +16059,30361aps1,15,1,f +16059,30362,15,2,f +16059,30364,8,8,f +16059,30365,7,8,f +16059,30367apr01,15,1,f +16059,3037,8,2,f +16059,3037,7,2,f +16059,30370ps2,15,1,f +16059,30370ps4,15,1,f +16059,30372pr0001,40,1,f +16059,30374,41,1,f +16059,3039,7,4,f +16059,3039pr0008,0,1,f +16059,3040b,7,6,f +16059,3046a,7,2,f +16059,3062b,7,2,f +16059,3068b,14,2,f +16059,3068b,4,4,f +16059,3068bpr0071,19,2,f +16059,3069b,19,1,f +16059,3069b,14,1,f +16059,3069b,7,1,f +16059,3069bpr0086,7,3,f +16059,3298,8,2,f +16059,3622,8,2,f +16059,3623,7,2,f +16059,3626bp03,14,1,f +16059,3626bp35,14,1,f +16059,3626bps3,14,1,f +16059,3660,8,6,f +16059,3665,7,3,f +16059,3666,4,2,f +16059,3710,19,5,f +16059,3710,8,1,f +16059,3730,0,2,f +16059,3731,0,2,f +16059,3747a,7,2,f +16059,3747a,8,2,f +16059,3794a,4,2,f +16059,3941,7,8,f +16059,3941,57,4,f +16059,4032a,0,4,f +16059,4070,0,2,f +16059,4085c,14,6,f +16059,4213,8,1,f +16059,4286,7,4,f +16059,4287,7,4,f +16059,4485,19,1,f +16059,4589,46,2,f +16059,4589,7,4,f +16059,4625,7,2,f +16059,4740,8,4,f +16059,4854,7,2,f +16059,4854,8,3,f +16059,4855,7,2,f +16059,4857,7,1,f +16059,4859,8,1,f +16059,4871,7,1,f +16059,55295,0,1,f +16059,55296,0,1,f +16059,55297,0,1,f +16059,55298,0,1,f +16059,55299,0,1,f +16059,55300,0,1,f +16059,6069ps1,7,1,f +16059,6120,7,1,f +16059,6141,7,1,t +16059,6141,7,1,f +16059,6564,7,2,f +16059,6565,7,2,f +16059,73590c02a,7,1,f +16059,76385,8,2,f +16059,970c00,19,1,f +16059,970x027,25,2,f +16059,973pr1301c01,25,2,f +16059,973psac01,19,1,f +16060,2446,2,1,f +16060,2447,41,1,f +16060,2540,4,1,f +16060,30027a,15,4,f +16060,30028,0,4,f +16060,3022,4,1,f +16060,3062b,0,2,f +16060,3069bpt1,15,1,f +16060,3626bp03,14,1,f +16060,3795,2,1,f +16060,3829c01,4,1,f +16060,6157,0,2,f +16060,6187,0,1,f +16060,970c00,15,1,f +16060,973pb0101c01,15,1,f +16064,3003,1,1,f +16064,30248,8,1,f +16064,30285,14,10,f +16064,30322,1,1,f +16064,30365,7,1,f +16064,30391,0,10,f +16064,30619,14,1,f +16064,30620,0,1,f +16064,30621,0,1,f +16064,30622,14,2,f +16064,30624,0,1,f +16064,30626,0,1,f +16064,30627,14,1,f +16064,3062b,42,4,f +16064,30632,0,1,f +16064,30633pb04,40,1,f +16064,30640,0,1,f +16064,30642,0,1,f +16064,30644,8,1,f +16064,30647,0,2,f +16064,30649px1,40,1,f +16064,30663,7,1,f +16064,32324,14,1,f +16064,3475b,0,2,f +16064,3962b,8,1,f +16064,40620,383,2,f +16064,4083,14,3,f +16064,40996,42,3,f +16064,4328,7,1,f +16064,4617b,0,1,f +16064,4729,14,1,f +16064,4740,42,2,f +16064,6215,7,1,f +16064,6239px3,14,1,f +16064,js004,9999,1,f +16064,js018,9999,1,f +16065,2412b,72,2,f +16065,2431,15,4,f +16065,2437,41,1,f +16065,2540,71,1,f +16065,298c02,0,1,t +16065,298c02,0,1,f +16065,3005,15,2,f +16065,3010,4,1,f +16065,3010,15,1,f +16065,3021,0,2,f +16065,3023,33,2,f +16065,3023,15,1,f +16065,3069b,15,2,f +16065,3070bpr0007,71,1,f +16065,3070bpr0007,71,1,t +16065,32028,0,1,f +16065,3626bpr0314,14,1,f +16065,3710,15,2,f +16065,3821,4,1,f +16065,3822,4,1,f +16065,3829c01,4,1,f +16065,3901,0,1,f +16065,41855,4,1,f +16065,4449,71,1,f +16065,4532,4,2,f +16065,4533,15,2,f +16065,45677,15,1,f +16065,48183,4,1,f +16065,50745,15,4,f +16065,52036,15,1,f +16065,52038,15,2,f +16065,52501,15,2,f +16065,54200,36,2,f +16065,54200,33,2,f +16065,54200,46,3,f +16065,6014b,15,4,f +16065,6015,0,4,f +16065,6157,72,2,f +16065,7902stk01,9999,1,t +16065,970c00,15,1,f +16065,973pr1241c01,15,1,f +16066,3004,4,2,f +16066,3005,2,2,f +16066,3023,2,5,f +16066,3023,4,4,f +16066,3024,4,1,f +16066,3024,2,2,f +16066,3710,4,1,f +16066,3710,2,1,f +16066,6141,0,3,f +16067,2335p30,15,1,f +16067,2357,7,1,f +16067,2423,2,2,f +16067,2489,6,1,f +16067,2530,8,1,f +16067,2544,0,1,f +16067,2562,6,1,f +16067,3003,7,1,f +16067,3004,7,1,f +16067,3032,14,2,f +16067,3626bp49,14,1,f +16067,3957a,0,1,f +16067,4070,7,1,f +16067,970c00,7,1,f +16067,973p34c01,1,1,f +16069,15,0,2,f +16069,164c01,0,1,f +16069,17,0,2,f +16069,185c01,0,1,f +16069,3004,15,3,f +16069,3008,15,2,f +16069,3010,47,2,f +16069,3010,15,2,f +16069,3020,15,1,f +16069,3021,15,4,f +16069,3023,15,6,f +16069,3024,15,2,f +16069,3024,1,2,f +16069,3032,15,1,f +16069,3038,47,4,f +16069,3040a,47,2,f +16069,3040a,15,2,f +16069,3063b,15,2,f +16069,314.1stk01,9999,1,t +16069,3298,15,3,f +16069,3624,15,2,f +16069,3626a,14,2,f +16069,3705,79,1,f +16069,997c01,0,1,f +16069,x148,4,1,f +16069,x149,4,1,f +16070,case8,4,1,f +16071,2412b,72,12,f +16071,2420,71,4,f +16071,2420,4,4,f +16071,2420,1,4,f +16071,2420,15,4,f +16071,2431,71,2,f +16071,2431,4,2,f +16071,2431,15,2,f +16071,2431,0,2,f +16071,2431,1,2,f +16071,2432,14,8,f +16071,2877,15,6,f +16071,2877,71,14,f +16071,2877,0,8,f +16071,2877,4,6,f +16071,2878c01,0,6,f +16071,2920,0,2,f +16071,2921,0,4,f +16071,2921,15,4,f +16071,2921,71,4,f +16071,2921,4,4,f +16071,3004,4,2,f +16071,3004,1,2,f +16071,3004,15,2,f +16071,3004,71,2,f +16071,3005,14,8,f +16071,3008,71,2,f +16071,3009,4,2,f +16071,3009,15,2,f +16071,3009,71,2,f +16071,3009,1,2,f +16071,3010,15,4,f +16071,3010,4,4,f +16071,3010,71,4,f +16071,3010,14,8,f +16071,3010,1,4,f +16071,3020,14,2,f +16071,3020,72,1,f +16071,3020,71,1,f +16071,3023,14,12,f +16071,3023,0,8,f +16071,3024,14,8,f +16071,3027,0,2,f +16071,3031,14,2,f +16071,3032,15,1,f +16071,3032,4,1,f +16071,3032,14,2,f +16071,3032,1,1,f +16071,3032,71,1,f +16071,3035,71,1,f +16071,3035,1,1,f +16071,3035,4,1,f +16071,3035,15,1,f +16071,3062b,0,4,f +16071,3068b,71,1,f +16071,3069b,4,2,f +16071,3069b,71,4,f +16071,3069b,1,2,f +16071,3069b,15,2,f +16071,32001,14,2,f +16071,32028,0,4,f +16071,32062,4,2,f +16071,3298,14,4,f +16071,3460,0,8,f +16071,3665,14,8,f +16071,3666,15,4,f +16071,3666,1,4,f +16071,3666,14,8,f +16071,3666,4,4,f +16071,3709,0,4,f +16071,3710,14,4,f +16071,3710,0,4,f +16071,3710,71,4,f +16071,3738,14,1,f +16071,3795,71,2,f +16071,3795,72,2,f +16071,3795,14,4,f +16071,3795,0,2,f +16071,3795,4,1,f +16071,3795,15,1,f +16071,3795,1,1,f +16071,3829c01,14,4,f +16071,4022,0,2,f +16071,4025,0,2,f +16071,4032a,72,2,f +16071,4162,14,8,f +16071,4162,71,2,f +16071,4175,14,8,f +16071,4282,71,2,f +16071,4477,71,4,f +16071,4864b,14,16,f +16071,6087,0,8,f +16071,6187,0,2,f +16071,6636,71,2,f +16071,6636,15,2,f +16071,6636,1,2,f +16071,6636,4,2,f +16071,6636,0,2,f +16071,73092,0,2,f +16073,32002,72,1,f +16073,32013,0,1,f +16073,32054,0,1,f +16073,32174,72,1,f +16073,32175,191,2,f +16073,32316,0,1,f +16073,32524,0,1,f +16073,3673,71,1,f +16073,3705,0,1,f +16073,3713,71,1,f +16073,43093,1,1,f +16073,44807,0,1,f +16073,47296,191,1,f +16073,47296,72,1,f +16073,47300,72,2,f +16073,50899,179,1,f +16073,50900,0,1,f +16073,50901,0,1,f +16073,50903,14,1,f +16073,50919,191,1,f +16073,50923,72,2,f +16073,6558,0,2,f +16074,1,15,1,f +16074,3003,4,1,f +16074,3004,0,11,f +16074,3004,15,6,f +16074,3005,4,1,f +16074,3007,15,1,f +16074,3008,0,7,f +16074,3009,0,4,f +16074,3010,0,8,f +16074,3022,0,1,f +16074,3023,0,4,f +16074,3024,0,1,f +16074,3030,0,2,f +16074,3034,0,1,f +16074,3040a,0,2,f +16074,3068a,15,2,f +16074,3068a,4,4,f +16074,3068a,0,5,f +16074,3069a,4,2,f +16074,3069a,15,5,f +16074,3069a,14,3,f +16074,3069a,0,7,f +16074,3070a,15,5,f +16074,3070a,0,5,f +16075,3297,4,80,f +16075,3298,4,40,f +16075,3299,4,30,f +16075,3300,4,15,f +16075,3675,4,15,f +16076,15207,70,1,f +16076,15573,272,2,f +16076,15573,70,3,f +16076,15712,72,6,f +16076,2412b,0,7,f +16076,2420,15,1,f +16076,2431,72,6,f +16076,2431,4,3,f +16076,2496,0,2,f +16076,2540,72,5,f +16076,30031,71,1,f +16076,3004,4,1,f +16076,3004,378,14,f +16076,3004,15,29,f +16076,3004,272,2,f +16076,3005,15,12,f +16076,3005,378,14,f +16076,3005,72,4,f +16076,3009,72,2,f +16076,3009,15,2,f +16076,30099,272,2,f +16076,3010,378,3,f +16076,3010,72,5,f +16076,30134,0,1,f +16076,30151a,47,1,f +16076,30162,72,1,f +16076,3020,71,2,f +16076,3020,70,1,f +16076,3021,71,1,f +16076,3022,72,3,f +16076,3023,4,3,f +16076,3023,378,5,f +16076,3023,15,7,f +16076,3023,72,8,f +16076,3024,15,1,t +16076,3024,19,1,t +16076,3024,15,6,f +16076,3024,19,2,f +16076,3032,71,3,f +16076,30357,72,1,f +16076,3040b,14,4,f +16076,3040b,4,6,f +16076,3040bpr0003,71,1,f +16076,30414,15,2,f +16076,30503,72,1,f +16076,3062b,46,2,f +16076,3062b,272,4,f +16076,3068b,0,3,f +16076,3068bpr0139a,19,1,f +16076,3068bpr0201,15,2,f +16076,3069b,0,2,f +16076,3069bpr0099,15,2,f +16076,3070b,72,1,t +16076,3070b,2,1,t +16076,3070b,2,1,f +16076,3070b,72,5,f +16076,32028,72,12,f +16076,33051,4,1,f +16076,33085,14,1,f +16076,33291,10,10,f +16076,33291,10,1,t +16076,3460,71,1,f +16076,3623,0,2,f +16076,3626bpr0677,14,1,f +16076,3626cpr1234,14,1,f +16076,3660,0,2,f +16076,3665,15,3,f +16076,3666,71,1,f +16076,3666,15,5,f +16076,3710,72,5,f +16076,3710,19,2,f +16076,3710,15,9,f +16076,3710,272,2,f +16076,3795,70,1,f +16076,3795,71,4,f +16076,3937,1,1,f +16076,4032a,0,2,f +16076,4032a,4,1,f +16076,4081b,1,2,f +16076,4081b,72,4,f +16076,41879a,1,1,f +16076,42446,72,1,f +16076,4286,272,2,f +16076,4345b,4,1,f +16076,4346,47,1,f +16076,4595,0,1,f +16076,4740,0,3,f +16076,4740,4,1,f +16076,47905,71,1,f +16076,54200,40,1,f +16076,54200,40,1,t +16076,54200,15,6,f +16076,54200,2,1,t +16076,54200,15,1,t +16076,54200,2,1,f +16076,57895,47,1,f +16076,58181,40,2,f +16076,59349,47,1,f +16076,59900,33,1,f +16076,59900,0,2,f +16076,60475b,0,2,f +16076,60478,72,9,f +16076,60592,19,14,f +16076,60594,19,2,f +16076,60596,19,5,f +16076,60601,47,14,f +16076,60603,47,2,f +16076,60616a,47,2,f +16076,60623,70,2,f +16076,60897,0,4,f +16076,6106,71,2,f +16076,6111,15,2,f +16076,61252,14,3,f +16076,6134,71,1,f +16076,6141,47,1,t +16076,6141,179,2,t +16076,6141,0,8,f +16076,6141,14,1,t +16076,6141,179,15,f +16076,6141,47,2,f +16076,6141,15,6,f +16076,6141,15,1,t +16076,6141,14,8,f +16076,6141,0,1,t +16076,6179,72,2,f +16076,6231,70,2,f +16076,63868,14,2,f +16076,63965,0,1,f +16076,64644,0,10,f +16076,6636,72,2,f +16076,73983,72,2,f +16076,73983,15,2,f +16076,85974,484,1,f +16076,85975,297,1,f +16076,86035,1,1,f +16076,87087,0,3,f +16076,87552,47,3,f +16076,87580,72,2,f +16076,88072,19,1,f +16076,88292,15,2,f +16076,92438,71,2,f +16076,92593,0,3,f +16076,970c00,272,1,f +16076,973pr1479c01,15,1,f +16076,973pr1576c01,72,1,f +16076,98138,320,4,f +16076,98138,320,1,t +16076,99206,0,3,f +16076,99207,4,2,f +16077,2431,14,1,f +16077,3010,4,2,f +16077,30194,72,1,f +16077,3037,4,1,f +16077,3062b,4,3,f +16077,3626bpr0389,14,1,f +16077,3795,72,1,f +16077,3834,15,1,f +16077,3835,0,1,t +16077,3835,0,1,f +16077,4070,4,1,f +16077,4085c,4,1,t +16077,4085c,4,4,f +16077,4599a,14,1,t +16077,4599a,14,1,f +16077,4740,72,1,t +16077,4740,72,1,f +16077,6117,72,1,f +16077,6126a,57,1,f +16077,6141,71,1,t +16077,6141,71,2,f +16077,970c00,0,1,f +16077,973pr1187c01,0,1,f +16078,10247,71,2,f +16078,11089,15,1,f +16078,11097,41,1,f +16078,11098,297,1,f +16078,11098,41,1,f +16078,11127,41,2,f +16078,11127,182,1,f +16078,11203,15,5,f +16078,11211,19,7,f +16078,11213,71,1,f +16078,11214,72,2,f +16078,11458,72,2,f +16078,11476,71,1,f +16078,11477,15,3,f +16078,11477,308,2,f +16078,12550pr0002,0,1,f +16078,13549,41,2,f +16078,15068,179,10,f +16078,15068,308,2,f +16078,15068,15,6,f +16078,15070,15,10,f +16078,15071,0,2,f +16078,15092,72,3,f +16078,15100,0,3,f +16078,15208,19,10,f +16078,15535,72,4,f +16078,15540,72,2,f +16078,15571,15,2,f +16078,15573,320,1,f +16078,15712,297,2,f +16078,15712,4,2,f +16078,16770,41,12,f +16078,18392pr0002,70,1,f +16078,18392pr0006,297,1,f +16078,18392pr0007,15,1,f +16078,18394pat0001,36,2,f +16078,18395,191,2,f +16078,18398pr0003,297,1,f +16078,18575,0,1,f +16078,18651,0,2,f +16078,18674,15,1,f +16078,18677,71,6,f +16078,2412b,70,3,f +16078,2419,15,2,f +16078,2420,4,2,f +16078,2431,72,2,f +16078,2460,15,2,f +16078,2540,0,1,f +16078,2654,72,2,f +16078,2654,71,2,f +16078,2780,0,22,f +16078,2817,4,2,f +16078,3001,15,1,f +16078,3003,71,1,f +16078,30031,72,3,f +16078,3004,0,8,f +16078,3010,72,1,f +16078,30136,308,2,f +16078,30153,41,2,f +16078,3020,71,2,f +16078,3020,70,8,f +16078,3021,15,10,f +16078,3022,70,4,f +16078,3023,41,12,f +16078,3023,15,2,f +16078,3023,308,14,f +16078,3024,1,8,f +16078,30363,15,1,f +16078,30374,15,2,f +16078,3062b,41,5,f +16078,3069b,0,1,f +16078,3176,72,4,f +16078,32000,72,5,f +16078,32013,4,2,f +16078,32054,71,3,f +16078,32062,0,2,f +16078,32064a,71,2,f +16078,32073,71,2,f +16078,32123b,71,2,f +16078,32140,72,4,f +16078,32192,4,2,f +16078,32198,19,2,f +16078,32270,0,1,f +16078,32316,15,2,f +16078,3245b,72,2,f +16078,32556,19,2,f +16078,3298,72,1,f +16078,3622,15,2,f +16078,3623,70,2,f +16078,3623,71,2,f +16078,3626cpr1130,0,1,f +16078,3626cpr1585,70,1,f +16078,3626cpr1599,15,1,f +16078,3626cpr1600,15,1,f +16078,3648b,72,1,f +16078,3665,72,2,f +16078,3666,71,3,f +16078,3666,15,7,f +16078,3673,71,2,f +16078,3700,70,1,f +16078,3705,0,1,f +16078,3709,0,3,f +16078,3710,0,8,f +16078,3713,71,5,f +16078,3795,70,4,f +16078,3937,4,1,f +16078,3938,71,1,f +16078,3941,41,8,f +16078,4032a,1,3,f +16078,40490,0,2,f +16078,40490,72,2,f +16078,41669,15,2,f +16078,41747,72,1,f +16078,41748,72,1,f +16078,41769,70,1,f +16078,41770,70,1,f +16078,41854,308,1,f +16078,42022,72,2,f +16078,4274,1,7,f +16078,4287,15,2,f +16078,4287,72,2,f +16078,43093,1,6,f +16078,43857,71,2,f +16078,44728,19,14,f +16078,4733,0,1,f +16078,4740,57,1,f +16078,47455,72,6,f +16078,48169,72,2,f +16078,48169,41,2,f +16078,48170,41,6,f +16078,48172,0,1,f +16078,48336,0,1,f +16078,48336,19,2,f +16078,4871,15,1,f +16078,48729b,72,1,f +16078,48933,15,4,f +16078,49668,179,4,f +16078,50923,72,1,f +16078,50950,72,2,f +16078,51739,15,1,f +16078,53451,179,7,f +16078,54200,15,1,f +16078,54200,308,4,f +16078,54383,72,1,f +16078,54384,72,1,f +16078,55981,71,2,f +16078,57909b,308,2,f +16078,59443,72,1,f +16078,59900,71,5,f +16078,59900,182,5,f +16078,60470a,4,1,f +16078,60470a,71,2,f +16078,60478,72,2,f +16078,60478,15,4,f +16078,60484,72,1,f +16078,60581,72,1,f +16078,6091,15,2,f +16078,6091,72,2,f +16078,61072,0,1,f +16078,61184,71,4,f +16078,61409,72,3,f +16078,61409,4,1,f +16078,6141,179,8,f +16078,6141,33,8,f +16078,61485,0,1,f +16078,62462,71,1,f +16078,63864,0,2,f +16078,63868,15,2,f +16078,63965,70,1,f +16078,64225,15,4,f +16078,64647,182,2,f +16078,64713,179,1,f +16078,6541,0,1,f +16078,6553,71,2,f +16078,6558,1,2,f +16078,6587,28,1,f +16078,6636,70,4,f +16078,73983,15,4,f +16078,74261,72,1,f +16078,85543,15,1,f +16078,85940,0,2,f +16078,85984,15,11,f +16078,85984,0,1,f +16078,87079,15,2,f +16078,87083,72,1,f +16078,87087,15,4,f +16078,87618,71,1,f +16078,87747,0,2,f +16078,88072,15,3,f +16078,89201,0,2,f +16078,92013,41,1,f +16078,92233,15,1,f +16078,92280,71,5,f +16078,92690,297,2,f +16078,93095,15,1,f +16078,93273,72,3,f +16078,93273,15,5,f +16078,93604pr0002,179,1,f +16078,93609,15,1,f +16078,970c00pr0663,4,1,f +16078,970c00pr0784,15,1,f +16078,970c00pr0785,70,1,f +16078,970c00pr0800,15,1,f +16078,973pr2670c01,4,1,f +16078,973pr2876c01,15,1,f +16078,973pr2877c01,70,1,f +16078,973pr2898c01,15,1,f +16078,98138,41,6,f +16078,98138pr0023,182,1,f +16078,98141,297,2,f +16078,98567,0,1,f +16078,98578,148,2,f +16078,99206,71,10,f +16078,99207,71,12,f +16078,99780,72,6,f +16078,99781,0,1,f +16079,2291,14,1,f +16079,2300pb012,15,1,f +16079,3011,14,1,f +16079,3011,10,1,f +16079,31041,25,1,f +16079,31465,4,4,f +16079,3437,10,2,f +16079,4066,14,2,f +16079,40666,4,1,f +16079,40666,15,1,f +16079,40666,10,1,f +16079,4066pb191,14,1,f +16079,4066pb324,70,1,f +16079,4066pb387,15,1,f +16079,4066pb423,15,2,f +16079,4196,4,1,f +16079,4198pb17,14,1,f +16079,45141,179,1,f +16079,47394pb078,9999,1,f +16079,47394pb114,9999,1,f +16079,4911,15,1,f +16079,4912,5,1,f +16079,57888,27,2,f +16079,58498c01,0,2,f +16079,60773,484,1,f +16079,6461,15,1,f +16079,6474pb28,71,1,f +16079,6510,73,1,f +16079,88760,0,1,f +16079,88762c01pb06,0,2,f +16079,89849,15,1,f +16079,92014pb01,4,1,f +16079,92094,14,1,f +16079,93353,14,1,f +16079,95463,72,1,f +16079,98218,4,2,f +16079,dupmc3pb02,73,1,f +16080,3811,1,1,f +16081,2345,71,6,f +16081,2357,72,4,f +16081,2357,15,2,f +16081,2419,72,2,f +16081,2420,71,4,f +16081,2431,308,8,f +16081,2431,0,1,f +16081,2445,70,2,f +16081,2449,308,6,f +16081,2456,70,2,f +16081,2462,71,10,f +16081,2489,308,2,f +16081,2540,72,4,f +16081,2555,0,1,f +16081,2566,0,2,f +16081,2586px14,71,1,f +16081,2587pr19,135,1,f +16081,2587pr21,297,1,f +16081,2654,19,4,f +16081,2780,0,2,t +16081,2780,0,12,f +16081,3001,72,5,f +16081,3002,72,6,f +16081,3002,70,1,f +16081,3003,71,12,f +16081,3003,70,2,f +16081,3004,15,1,f +16081,3004,71,8,f +16081,3004,72,39,f +16081,30043,0,2,f +16081,3005,70,28,f +16081,3005,71,4,f +16081,30055,0,4,f +16081,30056,0,6,f +16081,3009,70,1,f +16081,3009,71,6,f +16081,30093,288,6,f +16081,30099,308,4,f +16081,3010,71,4,f +16081,3010,72,12,f +16081,30103,0,1,f +16081,30106,47,1,f +16081,30134,70,1,f +16081,30136,70,4,f +16081,3020,72,2,f +16081,3020,70,5,f +16081,3023,0,2,f +16081,3023,15,1,f +16081,30237a,70,8,f +16081,30238,0,1,f +16081,30246,71,2,f +16081,3027,72,1,f +16081,30273,80,1,f +16081,3028,72,2,f +16081,3029,72,4,f +16081,3030,72,4,f +16081,3030,70,4,f +16081,3031,72,3,f +16081,3033,288,2,f +16081,3035,72,2,f +16081,3037,70,2,f +16081,30374,0,1,f +16081,30381,70,1,f +16081,3039,72,4,f +16081,30390b,71,2,f +16081,3040b,288,12,f +16081,3040b,70,4,f +16081,3040b,72,8,f +16081,30414,0,2,f +16081,3045,72,2,f +16081,3048c,0,2,f +16081,30503,72,6,f +16081,30503,288,4,f +16081,3062b,36,1,f +16081,3068b,70,4,f +16081,3069b,70,2,f +16081,32013,71,2,f +16081,32054,0,2,f +16081,32062,4,2,f +16081,3245b,71,20,f +16081,32474,0,2,f +16081,32530,72,4,f +16081,33057,484,1,f +16081,3455,71,2,f +16081,3460,72,2,f +16081,3460,308,11,f +16081,3622,71,8,f +16081,3622,70,16,f +16081,3626bpr0250,14,1,f +16081,3626bpr0348,14,1,f +16081,3626bpr0411,14,1,f +16081,3626bpr0433,14,1,f +16081,3626bpr0511,378,2,f +16081,3626bpr0577,378,1,f +16081,3626bpr0578,378,1,f +16081,3660,71,6,f +16081,3660,0,8,f +16081,3665,0,2,f +16081,3665,72,18,f +16081,3665,71,8,f +16081,3666,0,2,f +16081,3678bpr0006,70,1,f +16081,3684,72,4,f +16081,3700,71,30,f +16081,3710,70,5,f +16081,3747b,72,10,f +16081,3794a,70,8,f +16081,3794a,0,3,f +16081,3795,70,6,f +16081,3795,72,3,f +16081,3830,70,8,f +16081,3831,70,8,f +16081,3832,70,6,f +16081,3844,80,1,f +16081,3846pr24,71,1,f +16081,3847,135,1,f +16081,3941,0,3,f +16081,3942c,72,2,f +16081,4070,0,4,f +16081,4085c,0,2,f +16081,41769,70,2,f +16081,41770,70,2,f +16081,4286,72,6,f +16081,43093,1,4,f +16081,43337,71,1,f +16081,43899,72,1,f +16081,44358,70,2,f +16081,4460b,72,20,f +16081,4460b,308,14,f +16081,4460b,71,8,f +16081,4491b,72,1,f +16081,4497,308,2,f +16081,4503,80,1,f +16081,4589,34,1,f +16081,4589,42,1,f +16081,47847,72,8,f +16081,47990,72,1,f +16081,48492,272,1,f +16081,49668,320,16,f +16081,53451,15,5,t +16081,53451,15,47,f +16081,54200,72,13,f +16081,54200,288,4,f +16081,54200,288,3,t +16081,54200,72,3,t +16081,59232,135,1,f +16081,59233pat0002,42,1,f +16081,59900,70,34,f +16081,6019,72,5,f +16081,6020,0,2,f +16081,60474,72,2,f +16081,60478,71,4,f +16081,60479,71,1,f +16081,60596,0,1,f +16081,60621,71,1,f +16081,60639c03pr01,378,1,f +16081,60639c03pr01,28,1,f +16081,60640,28,1,f +16081,60640,378,1,f +16081,60641,378,1,f +16081,60641,28,1,f +16081,60642c03pr01,28,1,f +16081,60642c03pr01,378,1,f +16081,6066,308,2,f +16081,60671pr0003,378,1,f +16081,60671pr0004,28,1,f +16081,60674,308,2,f +16081,60751,132,2,f +16081,60752,135,4,f +16081,6082,72,3,f +16081,6083,72,2,f +16081,6108,71,2,f +16081,6111,72,2,f +16081,6112,0,3,f +16081,6123,72,2,f +16081,6126a,182,4,f +16081,6141,71,1,t +16081,6141,71,4,f +16081,61856p40,72,1,f +16081,62808,72,2,f +16081,64644,0,1,f +16081,6636,70,3,f +16081,71015,334,1,f +16081,71015,70,1,f +16081,75998pr0007,15,1,f +16081,85959pat0001,36,2,f +16081,86038,70,2,f +16081,970c00pr0126,272,1,f +16081,970x026,71,3,f +16081,970x199,70,3,f +16081,973pr0430c01,272,2,f +16081,973pr1318c01,272,1,f +16081,973pr1349c01,70,1,f +16081,973pr1352c01,72,1,f +16081,973pr1473c01,72,1,f +16081,973pr1474c01,70,1,f +16081,973pr1475c01,272,1,f +16084,45449,230,2,f +16084,45451,230,2,f +16084,45452,230,4,f +16084,45462,20,2,f +16084,45463,52,2,f +16084,45463,20,2,f +16084,45463,236,4,f +16084,45464,52,2,f +16084,46277,230,2,f +16084,46277,13,2,f +16084,46286,236,4,f +16084,46286,52,4,f +16084,46296,52,2,f +16084,46296,45,2,f +16084,51027,143,2,f +16084,51686,1006,2,f +16084,clikits001pb10,230,2,f +16084,clikits004,143,2,f +16084,clikits004,9,2,f +16084,clikits005,143,4,f +16084,clikits006pb04,236,2,f +16084,clikits040,41,2,f +16084,clikits084,143,2,f +16084,clikits087pb02,52,1,f +16084,clikits087pb03,52,1,f +16084,clikits107pb01,143,2,f +16084,clikits112pb01,52,1,f +16084,clikits112pb02,52,1,f +16084,clikits114,45,2,f +16084,clikits115,13,2,f +16085,3650c,7,50,f +16086,3001a,15,1,f +16086,3002a,15,3,f +16086,3002a,4,5,f +16086,3003,0,4,f +16086,3004,0,1,f +16086,3004,15,8,f +16086,3004,4,6,f +16086,3005,4,4,f +16086,3005,15,5,f +16086,3008,15,3,f +16086,3009,0,8,f +16086,3009,15,9,f +16086,3010,15,13,f +16086,3010,0,3,f +16086,3010,47,2,f +16086,3020,15,3,f +16086,3020,0,5,f +16086,3021,0,2,f +16086,3022,0,16,f +16086,3023,15,13,f +16086,3023,14,4,f +16086,3023,0,48,f +16086,3024,14,2,f +16086,3024,15,12,f +16086,3024,4,8,f +16086,3024,0,14,f +16086,3030,0,2,f +16086,3034,15,1,f +16086,3034,0,3,f +16086,3035,0,2,f +16086,3035,15,2,f +16086,3036,0,2,f +16086,3036,15,1,f +16086,3037,15,4,f +16086,3037,47,2,f +16086,3040a,15,3,f +16086,3040a,0,8,f +16086,3062a,47,3,f +16086,3062a,14,2,f +16086,3063b,15,8,f +16086,3063b,4,8,f +16086,3087c,14,2,f +16086,3460,15,2,f +16086,3460,0,3,f +16086,3482,4,1,f +16086,35,15,5,f +16086,36,0,5,f +16086,3660a,15,3,f +16086,3706,79,1,f +16086,7049b,0,5,f +16086,x148,4,3,f +16087,53989,148,1,f +16087,64727,191,2,f +16087,90609,72,3,f +16087,90611,0,1,f +16087,90617,0,4,f +16087,90625,0,1,f +16087,90639pr0017,34,1,f +16087,90641,0,4,f +16087,90652,191,1,f +16087,90661,0,2,f +16087,92199,191,1,f +16087,92201,0,1,f +16087,92220,191,3,f +16087,92223,0,1,f +16087,92229,0,1,f +16087,93277,191,1,f +16087,93575,0,1,f +16088,30194,72,1,f +16088,3626bpr0282,14,1,f +16088,3834,15,1,f +16088,970c00,0,1,f +16088,973pr1187c01,0,1,f +16090,32270,7,25,f +16091,2569,7,2,f +16091,2569,57,4,f +16091,2569,0,2,f +16091,2569,4,2,f +16091,298c01,0,2,f +16091,298c02,4,2,f +16091,298c02,14,2,f +16091,298c02,0,2,f +16091,298c02,15,2,f +16091,3957a,57,2,f +16091,3957a,7,2,f +16091,3957a,4,2,f +16091,3957a,15,2,f +16091,3957a,0,2,f +16091,4735,7,3,f +16091,4735,15,3,f +16091,4735,0,3,f +16092,30370ps3,15,1,f +16092,3626cpr1317,78,1,f +16092,970c00pr0476,25,1,f +16092,973pr2289c01,25,1,f +16093,75974,1,2,f +16095,2357,14,2,f +16095,2431pt0,15,1,f +16095,2444,0,4,f +16095,2569,0,1,f +16095,2714a,0,2,f +16095,2715,4,1,f +16095,2716,47,1,f +16095,2717,4,1,f +16095,2719,7,3,f +16095,2780,0,24,f +16095,2850a,7,2,f +16095,2851,8,2,f +16095,2852,7,2,f +16095,2853,7,2,f +16095,2854,7,1,f +16095,2857,0,4,f +16095,3004,0,1,f +16095,3022,14,2,f +16095,3023,14,6,f +16095,3024,14,4,f +16095,3029,14,1,f +16095,3040b,0,4,f +16095,3069b,14,2,f +16095,3460,14,4,f +16095,3623,14,6,f +16095,3647,7,1,f +16095,3648a,7,1,f +16095,3651,7,4,f +16095,3666,0,4,f +16095,3666,14,4,f +16095,3673,7,4,f +16095,3700,14,6,f +16095,3700,0,1,f +16095,3701,0,2,f +16095,3701,14,9,f +16095,3702,14,4,f +16095,3703,14,2,f +16095,3704,0,2,f +16095,3705,0,4,f +16095,3706,0,5,f +16095,3707,0,3,f +16095,3708,0,1,f +16095,3709,14,2,f +16095,3710,14,1,f +16095,3710,0,2,f +16095,3713,7,9,f +16095,3737,0,1,f +16095,3743,7,1,f +16095,3749,7,2,f +16095,3894,14,5,f +16095,3894,0,1,f +16095,3895,14,2,f +16095,3933,14,2,f +16095,3934,14,2,f +16095,4019,7,1,f +16095,4070,14,2,f +16095,4085c,14,1,f +16095,4143,7,2,f +16095,4150p01,15,2,f +16095,4185,7,1,f +16095,4261,7,2,f +16095,4265a,7,17,f +16095,4266,15,4,f +16095,4273b,7,8,f +16095,4274,7,10,f +16095,4286,14,2,f +16095,4519,0,2,f +16095,4864apt4,15,2,f +16095,73129,7,2,f +16095,tech006,9999,1,f +16097,20844,15,1,f +16098,2436,19,1,f +16098,2540,71,2,f +16098,2555,0,2,f +16098,3023,71,2,f +16098,3023,2,4,f +16098,3024,2,1,f +16098,30383,19,2,f +16098,3039,2,2,f +16098,3040b,2,2,f +16098,3710,2,2,f +16098,3794a,0,1,f +16098,3839b,2,2,f +16098,3937,2,2,f +16098,3938,71,2,f +16098,3957a,71,1,f +16098,4085c,0,1,f +16098,44302a,2,4,f +16098,44302a,19,2,f +16098,44567a,19,4,f +16098,47674,47,1,f +16098,47675,2,1,f +16098,47676,2,1,f +16098,47905,0,2,f +16098,6141,4,2,f +16098,6141,36,2,f +16098,6141,36,1,t +16098,6141,4,1,t +16098,73983,2,2,f +16100,11477,1,2,f +16100,14769pr1048,15,1,f +16100,15209,15,1,f +16100,2420,1,2,f +16100,2496,0,1,f +16100,2655,71,1,f +16100,3003,14,4,f +16100,3023,14,2,f +16100,3031,1,1,f +16100,30367c,0,3,f +16100,3069bp02,71,1,f +16100,32474pr1001,15,1,f +16100,3623,1,2,f +16100,3710,1,1,f +16100,4083,0,1,f +16100,43898,0,2,f +16100,44728,72,2,f +16100,44728,1,1,f +16100,48729b,71,1,f +16100,48729b,71,1,t +16100,53451,14,4,f +16100,53451,14,1,t +16100,60478,71,2,f +16100,60897,0,2,f +16100,6141,36,3,f +16100,6141,36,1,t +16100,6141,14,1,t +16100,6141,14,3,f +16100,63868,1,2,f +16100,75937,0,1,f +16100,85080,0,2,f +16100,85861,71,1,t +16100,85861,71,1,f +16100,85984,4,1,f +16100,87580,1,2,f +16100,87618,71,1,f +16100,92947,0,4,f +16100,98313,0,4,f +16100,99780,0,1,f +16101,2357,8,1,f +16101,2377,0,17,f +16101,2412b,0,15,f +16101,2431,4,8,f +16101,2432,0,2,f +16101,2436,4,2,f +16101,2456,0,6,f +16101,2540,0,5,f +16101,2555,0,8,f +16101,2868b,0,1,f +16101,2871a,0,2,f +16101,2877,1,10,f +16101,2877,4,10,f +16101,2878c01,0,14,f +16101,2920,0,10,f +16101,2921,4,10,f +16101,2921,2,8,f +16101,2921,0,12,f +16101,3001,0,3,f +16101,3004,8,1,f +16101,3004,0,29,f +16101,3005,4,12,f +16101,3005,2,8,f +16101,3009,1,2,f +16101,3009,4,2,f +16101,3009,0,2,f +16101,3010,4,2,f +16101,3010,0,7,f +16101,30133,4,1,f +16101,30136,2,6,f +16101,3020,8,2,f +16101,3020,0,7,f +16101,3021,7,4,f +16101,3021,0,2,f +16101,3021,8,2,f +16101,3022,6,1,f +16101,3023,47,10,f +16101,3023,4,14,f +16101,3023,0,3,f +16101,30236,4,2,f +16101,30237a,1,10,f +16101,3027,0,1,f +16101,3028,0,1,f +16101,3028,8,1,f +16101,3031,0,4,f +16101,3031,7,1,f +16101,3032,4,1,f +16101,3034,8,5,f +16101,3034,0,2,f +16101,3036,8,1,f +16101,30363,0,2,f +16101,30364,0,2,f +16101,30365,0,2,f +16101,3037,0,6,f +16101,30374,0,3,f +16101,3040b,0,8,f +16101,30414,0,2,f +16101,3062b,8,2,f +16101,3062b,0,20,f +16101,3062b,7,4,f +16101,3068b,0,1,f +16101,3068b,4,2,f +16101,3069b,4,4,f +16101,3069bp0a,0,2,f +16101,3069bpa1,0,2,f +16101,32028,0,12,f +16101,32064a,15,1,f +16101,32083,0,9,f +16101,3297,0,6,f +16101,3455,0,4,f +16101,3622,4,2,f +16101,3623,8,1,f +16101,3623,14,2,f +16101,3623,0,8,f +16101,3624,320,1,f +16101,3624,1,1,f +16101,3626bp07,14,1,f +16101,3626bpr0001,14,2,f +16101,3626bpr0126,14,1,f +16101,3626bpr0270,14,1,f +16101,3660,0,4,f +16101,3666,2,18,f +16101,3666,4,5,f +16101,3678a,0,6,f +16101,3710,4,5,f +16101,3710,14,1,f +16101,3710,2,2,f +16101,3795,7,6,f +16101,3795,0,6,f +16101,3795,8,2,f +16101,3832,7,1,f +16101,3861b,2,2,f +16101,3861b,4,1,f +16101,3900,15,1,f +16101,3901,6,1,f +16101,3941,6,36,f +16101,3960,0,1,f +16101,4022,0,10,f +16101,4025,0,5,f +16101,4032a,0,1,f +16101,4035,2,14,f +16101,4036,41,14,f +16101,4070,8,4,f +16101,4070,1,4,f +16101,4070,0,3,f +16101,4079,6,5,f +16101,4175,0,12,f +16101,41879a,0,1,f +16101,4215b,0,5,f +16101,4286,0,2,f +16101,4287,0,2,f +16101,4349,0,1,f +16101,4449,4,1,f +16101,4449,7,1,f +16101,4460a,0,6,f +16101,4477,0,2,f +16101,4477,14,2,f +16101,4477,4,2,f +16101,4485,2,1,f +16101,4490,8,1,f +16101,4510,0,4,f +16101,4529,0,1,f +16101,4530,0,1,f +16101,4589,14,1,f +16101,4589,0,4,f +16101,4623,0,1,f +16101,4862,41,13,f +16101,4865a,0,2,f +16101,4865b,0,2,f +16101,5306bc036,0,1,f +16101,5306c01,8,1,f +16101,60169,7,2,f +16101,6019,0,6,f +16101,6020,0,1,f +16101,6035,15,1,f +16101,6093,0,1,f +16101,6111,0,2,f +16101,6112,0,4,f +16101,6112,4,2,f +16101,6141,7,4,f +16101,6141,0,8,f +16101,6141,42,2,f +16101,6141,34,1,f +16101,6141,8,13,f +16101,6141,36,6,f +16101,6187,7,2,f +16101,63965,0,11,f +16101,6583,8,2,f +16101,6583,0,4,f +16101,6584,0,3,f +16101,6587,8,1,f +16101,70358,0,1,f +16101,71128,383,2,f +16101,73092,0,10,f +16101,74746,8,8,f +16101,74747,8,16,f +16101,970c00,1,1,f +16101,970c00,4,1,f +16101,970c00,7,1,f +16101,970c00,272,1,f +16101,973p22c01,0,1,f +16101,973p72c01,15,1,f +16101,973pb0008c01,272,1,f +16101,973pb0009c01,15,1,f +16101,973pb0017c01,15,1,f +16104,2555,7,1,f +16104,2823,0,2,f +16104,30162,8,1,f +16104,30172,15,1,f +16104,30193,8,1,f +16104,30193,8,1,t +16104,3024,46,1,f +16104,3032,6,1,f +16104,30390b,7,1,f +16104,3626bpa1,14,1,f +16104,3633,4,2,f +16104,3710,0,1,f +16104,4070,0,2,f +16104,4083,0,1,f +16104,4274,7,1,f +16104,4274,7,1,t +16104,4617b,6,1,f +16104,4623,4,1,f +16104,4733,7,1,f +16104,6141,8,8,f +16104,6141,8,1,t +16104,970c00,0,1,f +16104,973px184c01,8,1,f +16106,2343,47,2,f +16106,2420,70,2,f +16106,30176,2,2,f +16106,3040b,70,4,f +16106,33009,26,1,f +16106,33291,191,2,f +16106,33291,5,1,f +16106,3832,2,1,f +16106,3957b,15,2,f +16106,4495b,5,2,f +16106,6141,15,2,f +16106,6256,191,2,f +16107,122c01,0,3,f +16107,2336p35,1,1,f +16107,2340,1,2,f +16107,2342,1,1,f +16107,2342,7,4,f +16107,298c02,7,4,f +16107,3004,1,1,f +16107,3005,1,6,f +16107,3020,1,1,f +16107,3020,0,2,f +16107,3021,1,4,f +16107,3022,1,2,f +16107,3023,1,3,f +16107,3024,46,2,f +16107,3034,1,1,f +16107,3039,1,1,f +16107,3040b,1,2,f +16107,3068b,1,3,f +16107,3069bp25,7,2,f +16107,3069bp25,1,1,f +16107,3070b,36,1,f +16107,3626apr0001,14,1,f +16107,3633,1,2,f +16107,3639,1,1,f +16107,3640,1,1,f +16107,3794a,7,2,f +16107,3794a,1,2,f +16107,3795,1,1,f +16107,3838,14,1,f +16107,3842b,14,1,f +16107,3959,0,2,f +16107,3960,7,1,f +16107,4070,1,2,f +16107,4084,0,6,f +16107,4162,1,4,f +16107,4349,7,2,f +16107,4477,1,2,f +16107,4588,36,1,f +16107,4589,36,2,f +16107,4589,46,2,f +16107,4589,0,9,f +16107,4595,0,1,f +16107,4596,1,1,f +16107,4598,1,1,f +16107,4740,46,2,f +16107,4746,7,2,f +16107,6141,36,4,f +16107,970c00,14,1,f +16107,973p90c04,14,1,f +16108,2341,4,4,f +16108,2346,0,2,f +16108,2347,14,1,f +16108,2348b,33,1,f +16108,2349a,0,1,f +16108,2420,14,2,f +16108,2433,0,2,f +16108,2484c01,4,1,f +16108,2508,0,1,f +16108,251,0,1,f +16108,2512,14,1,f +16108,2873,4,14,f +16108,2877,4,4,f +16108,2878c01,0,4,f +16108,2920,0,2,f +16108,2921,4,4,f +16108,298c02,0,3,f +16108,298c02,0,1,t +16108,3002,0,2,f +16108,3004,4,2,f +16108,3020,14,3,f +16108,3020,0,3,f +16108,3020,4,1,f +16108,3021,14,1,f +16108,3021,0,1,f +16108,3022,0,2,f +16108,3022,14,1,f +16108,3023,0,3,f +16108,3023,4,1,f +16108,3034,4,2,f +16108,3062b,0,2,f +16108,3065,47,2,f +16108,3069b,0,5,f +16108,3070b,14,1,t +16108,3070b,0,2,f +16108,3070b,14,2,f +16108,3070b,0,1,t +16108,3314,0,1,f +16108,3317,14,1,f +16108,3482,14,2,f +16108,3626bpr0001,14,1,f +16108,3666,4,4,f +16108,3666,14,2,f +16108,3666,0,2,f +16108,3679,7,2,f +16108,3680,14,1,f +16108,3700,4,2,f +16108,3706,0,1,f +16108,3710,0,1,f +16108,3710,4,4,f +16108,3710,14,1,f +16108,3730,0,1,f +16108,3747a,4,1,f +16108,3795,0,2,f +16108,3823,47,1,f +16108,3829c01,0,1,f +16108,3836,6,1,f +16108,3837,8,1,f +16108,3959,0,1,f +16108,4022,0,2,f +16108,4025,0,2,f +16108,4032a,14,1,f +16108,4070,14,2,f +16108,4084,0,2,f +16108,4085c,14,1,f +16108,4085c,0,2,f +16108,4093c,7,1,f +16108,4265a,7,2,f +16108,4265a,7,1,t +16108,4275b,14,1,f +16108,4275b,0,2,f +16108,4276b,14,2,f +16108,4287,14,2,f +16108,4315,4,14,f +16108,4477,4,2,f +16108,4485,1,1,f +16108,4504,14,1,f +16108,4531,14,1,f +16108,4531,0,2,f +16108,4594,47,1,f +16108,4600,0,1,f +16108,4624,14,2,f +16108,4625,0,1,f +16108,4626,0,1,f +16108,4865a,14,1,f +16108,6014a,14,2,f +16108,6015,0,2,f +16108,6141,46,1,t +16108,6141,47,1,t +16108,6141,46,2,f +16108,6141,47,2,f +16108,73092,0,2,f +16108,970c00,1,1,f +16108,973pb0201c01,15,1,f +16110,redbox02,9999,1,f +16111,2780,0,2,f +16111,2817,0,1,f +16111,32002,8,5,f +16111,32009,2,2,f +16111,32015,2,1,f +16111,32017,2,2,f +16111,32017,0,1,f +16111,32039,0,4,f +16111,32054,0,2,f +16111,32056,0,2,f +16111,32062,0,1,f +16111,32068,7,2,f +16111,32123b,7,4,f +16111,3705,0,4,f +16111,3706,0,1,f +16111,3707,0,1,f +16111,3737,0,3,f +16111,4079,0,1,f +16111,4288,0,2,f +16111,4519,0,1,f +16111,6141,14,4,f +16111,6536,2,2,f +16111,6536,0,2,f +16111,6538b,7,2,f +16111,6558,0,2,f +16111,6589,7,2,f +16111,75535,0,4,f +16111,75c12,15,3,f +16113,2780,0,6,f +16113,2780,0,1,t +16113,32013,0,2,f +16113,32014,0,2,f +16113,32034,15,2,f +16113,32054,71,2,f +16113,32062,4,4,f +16113,32073,71,2,f +16113,32140,72,2,f +16113,32184,15,3,f +16113,32316,71,1,f +16113,32523,71,2,f +16113,3705,0,2,f +16113,3713,71,1,t +16113,3713,71,2,f +16113,4274,71,12,f +16113,4274,71,1,t +16113,43093,1,15,f +16113,50923,72,4,f +16113,53585,0,1,f +16113,53585,4,2,f +16113,53989,179,6,f +16113,54821,297,1,f +16113,60483,72,4,f +16113,60484,0,2,f +16113,64275,179,2,f +16113,64276,0,10,f +16113,6558,1,3,f +16113,6587,28,8,f +16113,90607,0,1,f +16113,90608,71,2,f +16113,90609,0,3,f +16113,90612,0,3,f +16113,90613,0,6,f +16113,90615,71,2,f +16113,90617,0,2,f +16113,90622,0,3,f +16113,90623,0,1,f +16113,90639,297,7,f +16113,90639pr0013,34,2,f +16113,90652,148,5,f +16113,92199,15,1,f +16113,92201,297,1,f +16113,92216,148,1,f +16113,92218,179,7,f +16113,92222,148,4,f +16113,92223,0,2,f +16113,92224,297,1,f +16113,92233,297,2,f +16113,92235,179,8,f +16113,93277,15,1,f +16113,93571,0,6,f +16113,93575,0,1,f +16114,10201,71,2,f +16114,15068,25,2,f +16114,15068,0,1,f +16114,15207,25,2,f +16114,18654,72,1,t +16114,18654,72,2,f +16114,2412b,0,1,f +16114,2420,25,2,f +16114,2431,0,2,f +16114,2437,40,1,f +16114,2446,15,1,f +16114,2447,40,1,f +16114,2447,40,1,t +16114,28326,25,2,f +16114,28326,0,2,f +16114,3001,0,3,f +16114,3004,25,1,f +16114,30157,72,2,f +16114,3020,71,1,f +16114,3021,0,1,f +16114,3022,25,1,f +16114,3023,4,5,f +16114,3069b,15,1,f +16114,3070b,25,1,t +16114,3070b,25,2,f +16114,32028,72,1,f +16114,3626cpr1966,14,1,f +16114,3710,15,3,f +16114,3710,25,2,f +16114,3795,0,1,f +16114,3829c01,1,1,f +16114,4349,4,8,f +16114,45677,15,1,f +16114,4590,72,1,f +16114,50949,0,1,f +16114,52036,72,1,f +16114,55981,297,4,f +16114,60477,15,2,f +16114,60478,0,2,f +16114,61409,0,4,f +16114,85984,0,1,f +16114,87079,15,1,f +16114,92280,71,2,f +16114,92402,0,4,f +16114,93273,15,1,f +16114,93274,0,2,f +16114,970c00,25,1,f +16114,973pr2874c01,0,1,f +16114,98138,36,1,t +16114,98138,47,2,f +16114,98138,36,2,f +16114,98138,47,1,t +16114,98138,46,1,t +16114,98138,46,2,f +16115,2456,4,2,f +16115,2456,15,2,f +16115,3001,15,4,f +16115,3001,4,4,f +16115,3001,14,2,f +16115,3001,1,4,f +16115,3002,1,4,f +16115,3002,15,4,f +16115,3002,0,2,f +16115,3002,4,4,f +16115,3002,14,2,f +16115,3003,15,16,f +16115,3003,36,4,f +16115,3003,2,4,f +16115,3003,33,4,f +16115,3003,0,8,f +16115,3003,4,16,f +16115,3003,1,16,f +16115,3003,14,11,f +16115,3004,14,12,f +16115,3004,2,10,f +16115,3004,8,10,f +16115,3004,15,24,f +16115,3004,4,22,f +16115,3004,1,22,f +16115,3004,0,12,f +16115,3005,15,14,f +16115,3005,33,4,f +16115,3005,1,14,f +16115,3005,4,14,f +16115,3005,2,8,f +16115,3005,0,10,f +16115,3005pe1,14,2,f +16115,3005pe2,8,1,f +16115,3005pe3,8,1,f +16115,3009,14,2,f +16115,3009,4,4,f +16115,3009,15,4,f +16115,3009,1,2,f +16115,3010,8,2,f +16115,3010,4,4,f +16115,3010,14,2,f +16115,3010,1,4,f +16115,3010,0,2,f +16115,3010,2,2,f +16115,3010,15,4,f +16115,3010p01,14,1,f +16115,3020,2,2,f +16115,3020,15,2,f +16115,3020,14,2,f +16115,3020,4,2,f +16115,3020,1,2,f +16115,3021,14,2,f +16115,3021,1,2,f +16115,3021,8,2,f +16115,3021,4,2,f +16115,3021,15,2,f +16115,3021,2,2,f +16115,3022,14,4,f +16115,3022,1,4,f +16115,3022,2,2,f +16115,3022,8,2,f +16115,3022,15,4,f +16115,3022,4,4,f +16115,3039,8,2,f +16115,3039,15,4,f +16115,3039,4,2,f +16115,3039,1,4,f +16115,3039,47,2,f +16115,3039,33,2,f +16115,3040b,15,4,f +16115,3040b,8,2,f +16115,3040b,1,4,f +16115,3040b,4,4,f +16115,3065,47,8,f +16115,3065,33,8,f +16115,3065,36,8,f +16115,3066,36,2,f +16115,3298,4,4,f +16115,3298,15,4,f +16115,3298,1,2,f +16115,3622,8,2,f +16115,3622,2,2,f +16115,3660,15,2,f +16115,3660,1,2,f +16115,3660,4,2,f +16115,3665,15,4,f +16115,3665,4,4,f +16115,3665,1,4,f +16115,3665,8,2,f +16115,3710,15,2,f +16115,3710,1,2,f +16115,3710,4,2,f +16115,3747b,1,2,f +16115,3795,4,2,f +16115,3795,15,2,f +16115,3795,1,2,f +16115,4286,4,4,f +16115,4286,15,4,f +16115,4286,1,4,f +16115,4286,8,2,f +16115,4287,8,2,f +16115,4287,4,4,f +16115,4287,15,4,f +16115,4287,1,4,f +16117,3705,0,2,f +16117,52261,0,1,f +16118,2431,15,2,f +16118,2437,41,1,f +16118,3003,15,1,f +16118,3004,4,1,f +16118,3004,15,2,f +16118,3010,15,2,f +16118,3021,15,1,f +16118,3022,15,1,f +16118,3023,4,2,f +16118,3023,15,1,f +16118,3024,15,5,f +16118,3034,15,1,f +16118,3038,15,2,f +16118,3039pc4,0,1,f +16118,3069b,15,2,f +16118,3070b,15,3,f +16118,3139,0,6,f +16118,3460,15,1,f +16118,3585,15,1,f +16118,3586,15,1,f +16118,3623,15,5,f +16118,3624,0,1,f +16118,3626apr0001,14,2,f +16118,3660,15,2,f +16118,3666,15,4,f +16118,3679,7,1,f +16118,3680,7,1,f +16118,3710,15,6,f +16118,3794a,15,1,f +16118,3901,0,1,f +16118,3935,15,1,f +16118,3936,15,1,f +16118,4079,4,4,f +16118,4162,15,1,f +16118,4282,15,1,f +16118,4449,0,1,f +16118,4477,15,1,f +16118,4477,4,2,f +16118,4624,7,6,f +16118,4625,15,4,f +16118,4854,15,4,f +16118,4855,15,2,f +16118,4856a,15,2,f +16118,4857,15,4,f +16118,4858,15,1,f +16118,4859,15,2,f +16118,4859,4,1,f +16118,4861,15,1,f +16118,4862,41,12,f +16118,4863,15,6,f +16118,4864a,15,2,f +16118,4865a,15,2,f +16118,4865a,4,1,f +16118,4867,15,1,f +16118,4868a,15,2,f +16118,4869,7,2,f +16118,4870,7,3,f +16118,6141,34,1,f +16118,6141,36,3,f +16118,970c00,7,1,f +16118,970c00,0,1,f +16118,973p18c01,1,1,f +16118,973px189c01,0,1,f +16119,10884,27,2,f +16119,11618,191,1,t +16119,11618,191,1,f +16119,14736pr0001,484,1,f +16119,3020,27,1,f +16119,3023,27,4,f +16119,30565,2,2,f +16119,3069b,26,1,f +16119,33085,14,1,f +16119,33291,5,4,f +16119,33291,5,1,t +16119,3706,0,1,f +16119,3709,0,1,f +16119,3794b,19,5,f +16119,3941,70,4,f +16119,4081b,26,2,f +16119,6141,27,2,f +16119,6141,27,1,t +16119,88704,2,1,t +16119,88704,2,1,f +16119,92946,19,2,f +16119,92947,19,2,f +16122,609p01,7,2,f +16123,22670,334,1,f +16123,3004,26,1,f +16123,3005,15,2,f +16123,30077,15,3,f +16123,3009,26,1,f +16123,30151a,47,1,f +16123,30153,143,2,f +16123,3031,26,1,f +16123,3307,15,4,f +16123,33176,143,4,f +16123,33216,45,2,f +16123,33227,15,1,f +16123,3852b,191,1,f +16123,3940b,26,1,f +16123,3957a,29,1,f +16123,4088,15,1,f +16123,4202,226,1,f +16123,4207,191,1,f +16123,44728,29,1,f +16123,4495b,5,1,f +16123,4589,29,3,f +16123,4623,29,1,f +16123,47117,45,1,f +16123,6141,34,1,t +16123,6141,34,1,f +16123,6179,15,1,f +16123,6182,15,4,f +16123,6205,5,1,f +16123,6250pr01,484,1,f +16123,62808,60,2,f +16123,75347,26,1,f +16123,x1488px1,15,1,f +16123,x1488px2,15,1,f +16123,x15,191,1,f +16124,10170,84,1,f +16124,11211,71,1,f +16124,11477,2,2,f +16124,11477,27,2,f +16124,11610,19,2,f +16124,13786pr0002,484,1,f +16124,15396,4,1,f +16124,15470,70,1,f +16124,15470,29,1,f +16124,15573,15,2,f +16124,18922,226,1,f +16124,2431,15,1,f +16124,2431,29,2,f +16124,2446,4,1,f +16124,2447,47,1,f +16124,2456,2,1,f +16124,2456,322,1,f +16124,3001,191,1,f +16124,3001,29,1,f +16124,3001,322,1,f +16124,3003,27,2,f +16124,3003,84,1,f +16124,3003,2,4,f +16124,30031,72,2,f +16124,3005,191,1,f +16124,3005,5,1,f +16124,3005,29,1,f +16124,3005,70,1,f +16124,3005pr0006,73,1,f +16124,3005pr17,27,1,f +16124,3010,5,1,f +16124,3010,29,1,f +16124,30145,15,2,f +16124,30150,84,1,f +16124,3020,71,1,f +16124,3037,26,2,f +16124,3039pr62,71,1,f +16124,3040b,26,2,f +16124,3062b,36,1,f +16124,3245cpr0002,19,1,f +16124,33051,4,1,f +16124,33057,484,1,f +16124,33085,14,2,f +16124,33125,484,1,f +16124,33172,25,2,f +16124,33183,10,2,f +16124,33291,4,3,f +16124,33291,10,1,f +16124,33291,5,4,f +16124,33291,191,1,f +16124,3464,15,2,f +16124,3626cpr0893,14,1,f +16124,3626cpr1614,14,1,f +16124,3741,2,2,f +16124,3795,71,2,f +16124,4176,47,1,f +16124,4342,84,1,f +16124,44728,71,1,f +16124,4536,15,2,f +16124,4865a,19,4,f +16124,4865a,15,1,f +16124,4865b,41,2,f +16124,50950,27,3,f +16124,50950,72,2,f +16124,50950,15,3,f +16124,57895,47,2,f +16124,59895,0,2,f +16124,59900,36,1,f +16124,60596,15,2,f +16124,60599,15,1,f +16124,60616a,47,1,f +16124,61780,70,1,f +16124,6179pr0012,15,1,f +16124,6180,29,1,f +16124,6182,15,1,f +16124,6183,15,1,f +16124,62696,484,1,f +16124,64648,179,1,f +16124,87079,71,1,f +16124,87079pr0065,15,1,f +16124,87552,15,1,f +16124,87580,15,4,f +16124,87580,10,1,f +16124,87990,70,1,f +16124,92410,191,2,f +16124,93092,30,1,f +16124,95228,34,1,f +16124,970c00,2,1,f +16124,970c00,85,1,f +16124,973pr2923c01,29,1,f +16124,973pr2924c01,15,1,f +16125,10113,1,1,f +16125,11211,71,1,f +16125,12622,0,1,f +16125,13608,179,1,f +16125,14226c11,0,1,f +16125,14301,71,1,f +16125,14417,72,2,f +16125,14704,71,2,f +16125,14769pr1050,14,2,f +16125,15068,71,2,f +16125,15082,0,2,f +16125,15624,72,1,f +16125,15627,1,1,f +16125,16968,0,1,f +16125,19220,0,1,f +16125,21845,1,1,f +16125,22886,73,4,f +16125,22889,0,1,f +16125,2412b,36,2,f +16125,2412b,71,1,f +16125,2412b,14,2,f +16125,2412b,85,4,f +16125,2431pr0017,14,1,f +16125,2432,1,2,f +16125,24593,85,1,f +16125,2569,42,1,f +16125,2817,4,1,f +16125,2877,15,2,f +16125,3001,85,2,f +16125,3001,73,1,f +16125,3003,73,1,f +16125,3003,2,1,f +16125,3004,4,2,f +16125,3007,0,1,f +16125,30076,0,1,f +16125,3010,27,3,f +16125,3010,0,1,f +16125,30103,0,1,f +16125,3020,0,3,f +16125,3023,36,2,f +16125,3023,46,2,f +16125,30237b,14,2,f +16125,3031,72,1,f +16125,3032,0,1,f +16125,3034,1,1,f +16125,30385,35,1,f +16125,3039,4,3,f +16125,3039pr0013,15,1,f +16125,3039pr0015,0,1,f +16125,30592,71,1,f +16125,30602,33,1,f +16125,30602,10,3,f +16125,30602,0,1,f +16125,3062b,0,2,f +16125,3065,46,1,f +16125,3068bpr0293a,0,1,f +16125,3068bpr0294a,27,1,f +16125,3069b,33,3,f +16125,3069bpr0101,71,1,f +16125,3626cpr0896,78,1,f +16125,3626cpr0937,78,1,f +16125,3626cpr1767,78,1,f +16125,3700,1,1,f +16125,3710,1,1,f +16125,3795,14,1,f +16125,3957b,0,1,f +16125,4079,1,1,f +16125,41854,0,1,f +16125,42022,35,2,f +16125,4349,0,1,f +16125,44728,0,1,f +16125,4595,0,1,f +16125,4740,33,1,f +16125,4740,35,1,f +16125,48336,1,2,f +16125,4865b,27,1,f +16125,50231,4,1,f +16125,50950,0,2,f +16125,59900,182,1,f +16125,59900,35,1,f +16125,6014b,71,4,f +16125,60219,27,1,f +16125,60478,72,3,f +16125,60481,212,3,f +16125,60603pr0001,41,1,f +16125,6118,148,4,f +16125,61409,0,4,f +16125,6190,4,1,f +16125,6232,4,1,f +16125,72326,27,1,f +16125,87079pr0090,0,1,f +16125,87081,0,1,f +16125,87580,1,1,f +16125,87580,14,1,f +16125,87580,85,1,f +16125,87697,0,4,f +16125,88930pr0007,27,1,f +16125,92220,179,3,f +16125,92946,72,2,f +16125,93273,27,2,f +16125,93274,14,1,f +16125,970c00,2,1,f +16125,970x021,1,1,f +16125,970x023,71,1,f +16125,973pr1957c01,1,1,f +16125,973pr2149c01,71,1,f +16125,973pr3404c01,85,1,f +16125,98100,71,1,f +16125,98721,0,1,t +16125,98721,0,1,f +16125,98726,0,1,f +16128,2446,8,1,f +16128,2570,8,1,f +16128,2586p4c,7,1,f +16128,2587,8,1,f +16128,2594,0,1,f +16128,3004,0,2,f +16128,3023,0,2,f +16128,3622,0,1,f +16128,3626bpx120,14,1,f +16128,3847a,8,2,f +16128,3849,6,1,f +16128,4070,0,2,f +16128,4491b,4,1,f +16128,4493c01pb02,0,1,f +16128,4495b,4,1,f +16128,87685,4,1,f +16128,87686,4,1,f +16128,87687,4,1,f +16128,970x021,0,1,f +16128,973p40c01,0,1,f +16129,30183,8,1,f +16129,3039,378,4,f +16129,3040b,7,4,f +16129,3665,7,4,f +16129,3700,8,2,f +16129,3794a,19,2,f +16129,3795,8,1,f +16129,40379,378,1,f +16129,40396,378,1,f +16129,4274,7,1,f +16129,4589,0,10,f +16129,4733,19,1,f +16129,6141,0,4,f +16129,x158,378,1,f +16130,11258,1,1,f +16130,11459pat01,4,1,f +16130,3626bpr1057,14,1,f +16130,88646,0,1,f +16130,970c00pr0395,1,1,f +16130,973pr2155c01,15,1,f +16132,10928,72,6,f +16132,11214,72,2,f +16132,11438,182,1,f +16132,11458,72,4,f +16132,11477,321,1,f +16132,11477,308,8,f +16132,13548,1,2,f +16132,14769pr1031,4,2,f +16132,14769pr1032,4,2,f +16132,15070,297,2,f +16132,15208,15,1,f +16132,15209,15,4,f +16132,15404,182,1,f +16132,15461,0,6,f +16132,15462,28,1,f +16132,15573,72,3,f +16132,15573,297,2,f +16132,16770,182,2,f +16132,16968,0,1,f +16132,18651,0,8,f +16132,19858pat0004,42,1,f +16132,19859pat0006,182,1,f +16132,22380,272,1,f +16132,22385pr0029,35,1,f +16132,22385pr0046,57,1,f +16132,22388,179,1,f +16132,22388,297,1,t +16132,22388,297,8,f +16132,22388,179,1,t +16132,22391,272,2,f +16132,22393,179,1,f +16132,22408,179,1,f +16132,22411,0,1,f +16132,22495,148,1,f +16132,23861,36,1,f +16132,24093pr0002a,182,1,f +16132,24097,179,1,f +16132,24108,57,1,f +16132,2412b,297,6,f +16132,24324,297,1,f +16132,24377,4,2,f +16132,24482,0,6,f +16132,24482,0,1,t +16132,2450,308,2,f +16132,2458,71,1,f +16132,2476a,71,8,f +16132,2540,1,1,f +16132,2730,0,2,f +16132,2736,71,1,f +16132,2780,0,30,f +16132,2780,0,3,t +16132,30136,70,6,f +16132,30157,71,8,f +16132,3020,70,8,f +16132,3021,0,3,f +16132,3022,72,4,f +16132,3023,72,1,f +16132,3023,308,16,f +16132,30246,0,1,f +16132,3033,72,1,f +16132,3035,72,1,f +16132,30375,1,1,f +16132,3040b,308,2,f +16132,3068b,72,1,f +16132,3069b,308,2,f +16132,3069bpr0161,19,1,f +16132,3184,0,1,f +16132,32000,72,8,f +16132,32002,19,1,f +16132,32002,19,1,t +16132,32014,0,1,f +16132,32018,0,4,f +16132,32064a,4,4,f +16132,32064a,71,3,f +16132,32123b,14,6,f +16132,32123b,71,2,f +16132,32123b,71,1,t +16132,32123b,14,1,t +16132,32187,179,1,f +16132,32278,4,4,f +16132,32291,4,2,f +16132,32316,4,5,f +16132,32474pr1003,4,1,f +16132,32474pr1004,4,2,f +16132,32523,72,8,f +16132,32526,0,4,f +16132,32529,0,4,f +16132,32532,71,1,f +16132,32556,19,6,f +16132,3622,0,4,f +16132,3623,71,4,f +16132,3623,4,7,f +16132,3626cpr1782,14,1,f +16132,3626cpr1820,4,1,f +16132,3626cpr1855,4,1,f +16132,3666,70,2,f +16132,3673,71,2,f +16132,3673,71,1,t +16132,3701,0,1,f +16132,3705,4,1,f +16132,3710,4,1,f +16132,3849,0,2,f +16132,3937,0,5,f +16132,3958,72,1,f +16132,4070,70,2,f +16132,4081b,0,4,f +16132,4081b,1,2,f +16132,4085c,0,2,f +16132,41530,182,6,f +16132,41769,0,1,f +16132,41770,0,1,f +16132,42610,71,1,f +16132,4274,71,1,t +16132,4274,71,8,f +16132,4286,0,4,f +16132,43093,1,2,f +16132,44728,71,1,f +16132,4477,4,2,f +16132,4495b,0,2,f +16132,4495b,4,2,f +16132,47456,308,1,f +16132,48493,0,2,f +16132,48729b,57,1,t +16132,48729b,57,4,f +16132,49668,15,2,f +16132,50860,272,1,f +16132,50943,72,4,f +16132,50950,272,1,f +16132,53451,0,4,f +16132,53451,0,1,t +16132,54200,272,2,f +16132,54200,272,1,t +16132,59900,297,2,f +16132,6019,1,1,f +16132,60475b,0,8,f +16132,60477,308,10,f +16132,60481,308,6,f +16132,60483,0,2,f +16132,60483,71,1,f +16132,60484,72,6,f +16132,60596,0,1,f +16132,60621,148,1,f +16132,6066,308,2,f +16132,60752,179,2,f +16132,60849,71,2,f +16132,60849,71,1,t +16132,61072,179,2,f +16132,6134,71,5,f +16132,61409,72,2,f +16132,6141,297,3,t +16132,6141,57,1,t +16132,6141,297,14,f +16132,6141,57,3,f +16132,63868,321,1,f +16132,63868,1,1,f +16132,64647,182,1,t +16132,64647,182,2,f +16132,64712,0,6,f +16132,64867pr0001,182,4,f +16132,6558,1,17,f +16132,85861,0,2,t +16132,85861,0,6,f +16132,85975,297,2,f +16132,85984,308,4,f +16132,86038,320,1,f +16132,87620,0,2,f +16132,87994,0,2,f +16132,87994,0,1,t +16132,88289,308,2,f +16132,90201,0,1,f +16132,90630,0,2,f +16132,92690,297,1,f +16132,93273,308,4,f +16132,970c00pr0938,71,1,f +16132,970c00pr0948,0,1,f +16132,973pr3151c01,71,1,f +16132,973pr3192c01,4,1,f +16132,973pr3253c01,4,1,f +16132,98313,179,2,f +16132,98313,0,4,f +16132,99021,72,3,f +16132,99207,0,5,f +16132,99781,0,4,f +16132,99781,71,2,f +16133,2456,4,2,f +16133,2456,15,2,f +16133,3001,14,2,f +16133,3001,15,4,f +16133,3001,1,4,f +16133,3001,4,4,f +16133,3002,15,4,f +16133,3002,1,4,f +16133,3002,14,2,f +16133,3002,0,2,f +16133,3002,4,4,f +16133,3003,14,11,f +16133,3003,2,4,f +16133,3003,36,4,f +16133,3003,1,16,f +16133,3003,4,16,f +16133,3003,15,16,f +16133,3003,33,4,f +16133,3003,0,8,f +16133,3004,0,12,f +16133,3004,8,10,f +16133,3004,15,24,f +16133,3004,4,22,f +16133,3004,1,22,f +16133,3004,14,12,f +16133,3004,2,10,f +16133,3005,4,14,f +16133,3005,1,14,f +16133,3005,0,10,f +16133,3005,2,8,f +16133,3005,33,4,f +16133,3005,15,14,f +16133,3005pe1,14,2,f +16133,3005pe2,8,1,f +16133,3005pe3,8,1,f +16133,3009,4,4,f +16133,3009,14,2,f +16133,3009,15,4,f +16133,3009,1,2,f +16133,3010,4,4,f +16133,3010,15,4,f +16133,3010,8,2,f +16133,3010,1,4,f +16133,3010,2,2,f +16133,3010,0,2,f +16133,3010,14,2,f +16133,3010p01,14,1,f +16133,3020,1,2,f +16133,3020,15,2,f +16133,3020,2,2,f +16133,3020,4,2,f +16133,3020,14,2,f +16133,3021,1,2,f +16133,3021,2,2,f +16133,3021,4,2,f +16133,3021,14,2,f +16133,3021,15,2,f +16133,3021,8,2,f +16133,3022,4,4,f +16133,3022,14,4,f +16133,3022,2,2,f +16133,3022,1,4,f +16133,3022,8,2,f +16133,3022,15,4,f +16133,3039,1,4,f +16133,3039,47,2,f +16133,3039,15,4,f +16133,3039,8,2,f +16133,3039,33,2,f +16133,3039,4,2,f +16133,3040b,15,4,f +16133,3040b,8,2,f +16133,3040b,4,4,f +16133,3040b,1,4,f +16133,3065,33,8,f +16133,3065,47,8,f +16133,3065,36,8,f +16133,3066,36,2,f +16133,3298,15,4,f +16133,3298,4,4,f +16133,3298,1,2,f +16133,3622,8,2,f +16133,3622,2,2,f +16133,3660,1,2,f +16133,3660,4,2,f +16133,3660,15,2,f +16133,3665,4,4,f +16133,3665,1,4,f +16133,3665,8,2,f +16133,3665,15,4,f +16133,3710,4,2,f +16133,3710,1,2,f +16133,3710,15,2,f +16133,3747b,1,2,f +16133,3795,4,2,f +16133,3795,15,2,f +16133,3795,1,2,f +16133,4286,8,2,f +16133,4286,15,4,f +16133,4286,1,4,f +16133,4286,4,4,f +16133,4287,1,4,f +16133,4287,15,4,f +16133,4287,8,2,f +16133,4287,4,4,f +16135,30150,70,1,f +16135,3062b,14,3,f +16135,4589,72,4,f +16135,6126a,57,2,f +16135,6126a,57,1,t +16136,2412b,72,4,f +16136,2420,14,4,f +16136,2436,71,1,f +16136,30027b,71,6,f +16136,30028,0,6,f +16136,3010,14,1,f +16136,3020,14,1,f +16136,3065,40,2,f +16136,3706,0,1,f +16136,3795,72,2,f +16136,3959,71,2,f +16136,4600,0,3,f +16136,48336,0,3,f +16136,6019,14,2,f +16136,6141,47,4,f +16136,6233,0,2,f +16137,1788stk01,9999,1,t +16137,2335p30,15,1,f +16137,2343,14,1,f +16137,2345,7,1,f +16137,2345pb01,7,1,f +16137,2420,0,2,f +16137,2453a,4,1,f +16137,2489,6,1,f +16137,2525p31,15,1,f +16137,2526,1,1,f +16137,2527,4,1,f +16137,2528pb01,0,1,f +16137,2530,8,2,f +16137,2536,6,5,f +16137,2540,0,2,f +16137,2540,7,1,f +16137,2542,6,1,f +16137,2542,4,1,f +16137,2543,4,1,f +16137,2555,4,1,f +16137,2561,6,1,f +16137,2562,6,2,f +16137,2563,6,1,f +16137,2566,1,1,f +16137,2566,2,1,f +16137,2577,14,2,f +16137,2586p30,15,1,f +16137,3002,7,2,f +16137,3004,0,1,f +16137,3004,7,3,f +16137,3005,0,2,f +16137,3005,7,1,f +16137,3010,7,3,f +16137,3023,7,2,f +16137,3023,6,2,f +16137,3024,0,1,f +16137,3024,36,1,f +16137,3028,7,1,f +16137,3031,0,1,f +16137,3032,7,1,f +16137,3035,14,1,f +16137,3040b,7,4,f +16137,3062b,7,6,f +16137,3062b,2,1,f +16137,3068b,14,1,f +16137,3069b,0,2,f +16137,3070b,7,2,f +16137,3334,1,1,f +16137,3403,0,1,f +16137,3404,0,1,f +16137,3455,0,1,f +16137,3622,7,1,f +16137,3623,6,1,f +16137,3626bp3j,14,1,f +16137,3626bp3k,14,1,f +16137,3626bp46,14,1,f +16137,3626bp48,14,1,f +16137,3666,0,1,f +16137,3701,0,2,f +16137,3749,7,4,f +16137,3849,6,1,f +16137,3899,15,1,f +16137,3941,1,1,f +16137,3941,4,1,f +16137,3941,6,6,f +16137,3957a,0,3,f +16137,4032a,1,1,f +16137,4032a,6,1,f +16137,4032a,0,1,f +16137,4032a,2,1,f +16137,4081b,4,1,f +16137,4085c,0,2,f +16137,4085c,7,2,f +16137,4150p30,15,1,f +16137,4162,14,2,f +16137,4287,0,1,f +16137,4319,0,1,f +16137,4460a,7,1,f +16137,4497,0,1,f +16137,4529,0,1,f +16137,4531,0,1,f +16137,4735,0,1,f +16137,4738a,6,1,f +16137,4739a,6,1,f +16137,4864a,7,1,f +16137,4865a,7,1,f +16137,4871,7,1,f +16137,57503,334,1,f +16137,57504,334,1,f +16137,57505,334,1,f +16137,57506,334,1,f +16137,6019,0,1,f +16137,6020,6,1,f +16137,6021,4,1,f +16137,6025,0,1,f +16137,6026,2,1,f +16137,6027,2,1,f +16137,6028,2,1,f +16137,6030,4,1,f +16137,6072,0,1,f +16137,6082,8,1,f +16137,6126a,57,1,f +16137,6141,46,1,t +16137,6141,15,2,f +16137,6141,15,1,t +16137,6141,46,2,f +16137,6148,2,7,f +16137,84943,8,1,f +16137,87695,15,2,f +16137,87696,15,1,f +16137,970c00,1,1,f +16137,970c03pb01,14,2,f +16137,970d01,0,1,f +16137,973p33c01,14,1,f +16137,973p3ac01,14,1,f +16137,973pb0062c01,14,1,f +16137,973pb0063c01,14,1,f +16139,10169,0,2,f +16139,10201,0,1,f +16139,10247,0,2,f +16139,11203,72,2,f +16139,11208,71,4,f +16139,11209,0,4,f +16139,11211,71,1,f +16139,11211,14,8,f +16139,11211,19,3,f +16139,11211,4,2,f +16139,11215,0,1,f +16139,11476,71,2,f +16139,11477,2,4,f +16139,13790,72,1,t +16139,13790,72,1,f +16139,14716,0,2,f +16139,14719,71,2,f +16139,14769,27,1,f +16139,15068,71,1,f +16139,15207,25,1,f +16139,15395,26,1,f +16139,15470,29,1,t +16139,15470,70,2,f +16139,15470,29,2,f +16139,15470,70,1,t +16139,15496,15,2,f +16139,15522pr0002,1,1,f +16139,15523pr0002,14,1,f +16139,15527pr0002,14,1,f +16139,15573,25,6,f +16139,15573,72,22,f +16139,15573,70,8,f +16139,15655pr0001,84,1,f +16139,15661pr0002,14,1,f +16139,15666pr0001,14,1,f +16139,15672,15,4,f +16139,15712,70,3,f +16139,15712,72,1,f +16139,15712,71,2,f +16139,15745,45,2,f +16139,16360,4,1,f +16139,16709pat01,321,1,f +16139,16816,27,1,f +16139,18671,72,1,f +16139,18759,72,2,f +16139,20398pr0001,27,1,f +16139,21791,85,1,f +16139,22667,4,1,t +16139,22667,4,3,f +16139,2357,71,4,f +16139,2357,19,1,f +16139,2357,14,11,f +16139,2357,0,8,f +16139,2412b,71,12,f +16139,2412b,0,16,f +16139,2412b,179,2,f +16139,2420,15,4,f +16139,2423,27,1,f +16139,2431,4,1,f +16139,2431,1,1,f +16139,2431,71,14,f +16139,2431,484,1,f +16139,2431,41,12,f +16139,2431,0,2,f +16139,2431,85,4,f +16139,2431,25,3,f +16139,2445,70,2,f +16139,2453a,14,7,f +16139,2454a,15,2,f +16139,2454a,71,1,f +16139,2456,0,9,f +16139,2496,0,2,f +16139,2540,1,2,f +16139,2653,71,7,f +16139,2654,1,4,f +16139,2921,25,4,f +16139,2926,0,2,f +16139,298c02,15,1,t +16139,298c02,15,1,f +16139,3001,14,3,f +16139,3001,0,10,f +16139,3001,2,1,f +16139,3001,71,1,f +16139,3001,85,3,f +16139,3001,25,1,f +16139,3001,19,4,f +16139,3002,0,1,f +16139,3002,19,5,f +16139,3002,4,7,f +16139,3002,14,1,f +16139,3002,71,1,f +16139,3002,73,10,f +16139,3003,4,8,f +16139,3003,14,1,f +16139,3003,0,3,f +16139,3004,1,1,f +16139,3004,14,25,f +16139,3004,73,33,f +16139,3004,15,4,f +16139,3004,71,9,f +16139,3004,19,9,f +16139,3004,0,10,f +16139,3004,30,3,f +16139,3004,72,4,f +16139,3004,85,6,f +16139,3005,15,4,f +16139,3005,0,10,f +16139,3005,72,2,f +16139,3005,19,1,f +16139,3005,1,2,f +16139,3005,73,4,f +16139,3005,2,2,f +16139,3005,182,2,f +16139,3005,71,3,f +16139,3005,33,2,f +16139,3005,14,14,f +16139,3005,52,2,f +16139,3005,484,2,f +16139,3005,26,2,f +16139,3005pr0006,73,4,f +16139,3005pr0012,70,7,f +16139,3005pr17,27,4,f +16139,3006,14,2,f +16139,3007,14,6,f +16139,3007,15,10,f +16139,3008,71,1,f +16139,3008,14,21,f +16139,3008,19,2,f +16139,3009,14,1,f +16139,3009,71,1,f +16139,3009,19,2,f +16139,3010,14,15,f +16139,3010,272,1,f +16139,3010,72,2,f +16139,3010,25,3,f +16139,3010,19,5,f +16139,3010,73,14,f +16139,30153,33,2,f +16139,3020,72,2,f +16139,3020,25,3,f +16139,3020,0,3,f +16139,3020,71,25,f +16139,3020,4,1,f +16139,3020,484,6,f +16139,3020,70,1,f +16139,3021,71,4,f +16139,3021,85,2,f +16139,3021,72,4,f +16139,3021,2,2,f +16139,3021,322,2,f +16139,3021,272,4,f +16139,3021,19,4,f +16139,3021,25,4,f +16139,3022,4,3,f +16139,3022,71,9,f +16139,3022,484,1,f +16139,3022,14,3,f +16139,3022,72,4,f +16139,3023,1,4,f +16139,3023,73,6,f +16139,3023,4,1,f +16139,3023,85,3,f +16139,3023,47,2,f +16139,3023,15,14,f +16139,3023,71,15,f +16139,3023,484,3,f +16139,3023,25,4,f +16139,3023,2,4,f +16139,3024,1,6,f +16139,3024,71,3,t +16139,3024,33,1,t +16139,3024,4,2,f +16139,3024,0,2,f +16139,3024,4,1,t +16139,3024,33,6,f +16139,3024,73,1,t +16139,3024,2,2,f +16139,3024,73,2,f +16139,3024,2,1,t +16139,3024,29,2,f +16139,3024,36,4,f +16139,3024,46,10,f +16139,3024,15,6,f +16139,3024,29,1,t +16139,3024,46,2,t +16139,3024,70,1,t +16139,3024,1,1,t +16139,3024,0,1,t +16139,3024,71,9,f +16139,3024,15,2,t +16139,3024,70,2,f +16139,3024,36,1,t +16139,3028,71,2,f +16139,3029,71,2,f +16139,3031,0,1,f +16139,3031,71,6,f +16139,3032,71,5,f +16139,3032,379,2,f +16139,3033,72,2,f +16139,3033,71,2,f +16139,3034,19,1,f +16139,3034,72,6,f +16139,3034,71,1,f +16139,3034,0,4,f +16139,3035,1,1,f +16139,3035,71,2,f +16139,30350b,1,3,f +16139,3036,71,2,f +16139,3037,484,120,f +16139,30374,14,1,f +16139,3039,484,19,f +16139,3039pr0019,2,2,f +16139,3039pr62,71,1,f +16139,3040b,484,14,f +16139,3040b,2,2,f +16139,30414,4,2,f +16139,30414,71,2,f +16139,3045,484,20,f +16139,3062b,47,2,f +16139,3062b,272,3,f +16139,3062b,72,12,f +16139,3062b,2,2,f +16139,3062b,322,4,f +16139,3062b,484,2,f +16139,3062b,41,2,f +16139,3062b,0,1,f +16139,3062bpr0005,4,4,f +16139,3062bpr0006,15,4,f +16139,3065,47,4,f +16139,3068b,15,3,f +16139,3068b,72,5,f +16139,3068b,71,13,f +16139,3068b,84,8,f +16139,3068b,70,1,f +16139,3068bpr0201,15,2,f +16139,3068bpr0257,71,3,f +16139,3068bpr0258,191,3,f +16139,3068bpr0259,4,3,f +16139,3068bpr0260,29,3,f +16139,3069b,25,1,f +16139,3069b,15,3,f +16139,3069b,14,2,f +16139,3069b,36,3,f +16139,3069b,71,16,f +16139,3069b,1,2,f +16139,3069b,33,1,f +16139,3069b,484,2,f +16139,3069b,4,7,f +16139,3069b,0,4,f +16139,3069bp02,71,2,f +16139,3069bpr0137,71,2,f +16139,3069bpr0146,322,2,f +16139,3069bpr0147,31,2,f +16139,3070b,71,8,f +16139,3070b,70,2,f +16139,3070b,25,1,t +16139,3070b,272,1,t +16139,3070b,25,2,f +16139,3070b,70,1,t +16139,3070b,272,2,f +16139,3070b,71,4,t +16139,3176,71,2,f +16139,3185,0,1,f +16139,32028,72,11,f +16139,32028,2,2,f +16139,32028,71,2,f +16139,32056,0,1,f +16139,32123b,71,1,t +16139,32123b,71,1,f +16139,32124,0,1,f +16139,32124,15,1,f +16139,3245b,19,3,f +16139,3245b,14,2,f +16139,3245c,0,1,f +16139,3245cpr0004,4,3,f +16139,3298,0,1,f +16139,33051,4,2,f +16139,33051,10,1,f +16139,33078,4,4,f +16139,33085,14,3,f +16139,33172,25,1,f +16139,33183,10,3,f +16139,33183,10,1,t +16139,3460,71,5,f +16139,3460,0,2,f +16139,3460,19,1,f +16139,3460,72,2,f +16139,3622,15,2,f +16139,3622,0,4,f +16139,3622,19,1,f +16139,3622,14,1,f +16139,3622,73,38,f +16139,3623,2,2,f +16139,3623,15,6,f +16139,3623,0,4,f +16139,3623,71,12,f +16139,3623,19,1,f +16139,3626b,47,2,f +16139,3660,73,2,f +16139,3660,71,4,f +16139,3660,0,12,f +16139,3660,25,3,f +16139,3665,30,2,f +16139,3665,72,2,f +16139,3665,0,1,f +16139,3666,15,3,f +16139,3666,72,4,f +16139,3666,71,9,f +16139,3666,1,1,f +16139,3666,2,5,f +16139,3666,19,1,f +16139,3666,14,2,f +16139,3666,0,1,f +16139,3673,71,2,t +16139,3673,71,3,f +16139,3678b,72,2,f +16139,3680,1,1,f +16139,3680,0,1,f +16139,3700,19,2,f +16139,3701,0,2,f +16139,3710,4,2,f +16139,3710,72,4,f +16139,3710,2,3,f +16139,3710,19,2,f +16139,3710,73,7,f +16139,3710,71,24,f +16139,3710,25,1,f +16139,3710,70,2,f +16139,3710,15,3,f +16139,3710,272,1,f +16139,3747b,0,13,f +16139,3794b,15,3,f +16139,3794b,71,9,f +16139,3795,70,1,f +16139,3795,19,1,f +16139,3795,0,6,f +16139,3795,73,2,f +16139,3795,71,7,f +16139,3795,25,3,f +16139,3821,71,1,f +16139,3822,71,1,f +16139,3829c01,15,1,f +16139,3832,72,2,f +16139,3832,71,1,f +16139,3832,19,1,f +16139,3937,14,1,f +16139,3937,4,1,f +16139,3937,1,1,f +16139,3942c,15,1,f +16139,3957a,71,2,f +16139,3958,71,1,f +16139,40234,71,1,f +16139,4070,15,2,f +16139,4070,0,8,f +16139,4070,1,2,f +16139,4085c,0,2,f +16139,4162,2,2,f +16139,4162,15,2,f +16139,4162,1,3,f +16139,4162,71,8,f +16139,41769,0,1,f +16139,41769,1,1,f +16139,41770,1,1,f +16139,41770,0,1,f +16139,42446,72,2,f +16139,4282,73,2,f +16139,4282,72,1,f +16139,4287,14,2,f +16139,43093,1,1,f +16139,4332,70,1,f +16139,44728,1,4,f +16139,4477,19,1,f +16139,4477,71,5,f +16139,4477,72,2,f +16139,4477,15,3,f +16139,4490,19,1,f +16139,4510,72,2,f +16139,4594,47,2,f +16139,4595,0,2,f +16139,4599b,71,1,t +16139,4599b,71,1,f +16139,4599b,0,1,t +16139,4599b,0,2,f +16139,4697b,71,1,f +16139,4697b,71,1,t +16139,47457,71,2,f +16139,47905,0,4,f +16139,48336,71,6,f +16139,48336,0,2,f +16139,4865a,14,1,f +16139,4865a,15,4,f +16139,4865a,71,5,f +16139,4865a,47,2,f +16139,4865a,2,2,f +16139,4865a,4,1,f +16139,4865a,19,8,f +16139,4865a,1,2,f +16139,48729b,71,1,t +16139,48729b,71,2,f +16139,53451,0,1,t +16139,53451,0,2,f +16139,54200,5,2,f +16139,54200,1,1,t +16139,54200,27,2,t +16139,54200,27,8,f +16139,54200,14,3,f +16139,54200,4,1,t +16139,54200,2,2,f +16139,54200,25,1,t +16139,54200,25,2,f +16139,54200,14,2,t +16139,54200,0,1,t +16139,54200,15,15,f +16139,54200,73,1,t +16139,54200,0,4,f +16139,54200,4,2,f +16139,54200,73,4,f +16139,54200,15,4,t +16139,54200,5,1,t +16139,54200,1,4,f +16139,54200,2,1,t +16139,59349,14,11,f +16139,59349,71,3,f +16139,59349,41,2,f +16139,59900,4,3,f +16139,59900,14,3,f +16139,59900,40,3,f +16139,59900,15,4,f +16139,59900,25,2,f +16139,6019,1,3,f +16139,6019,14,2,f +16139,60475a,73,1,f +16139,60475b,14,2,f +16139,60478,0,4,f +16139,60479,0,2,f +16139,60581,72,19,f +16139,60594,0,1,f +16139,60596,72,4,f +16139,60596,71,9,f +16139,60614,72,2,f +16139,60616a,1,2,f +16139,60616a,41,7,f +16139,60797c01,72,2,f +16139,60849,71,3,f +16139,60849,0,2,f +16139,60849,71,2,t +16139,60849,0,2,t +16139,6091,2,3,f +16139,61252,15,2,f +16139,61252,4,2,f +16139,61252,19,2,f +16139,6134,15,3,f +16139,6141,71,4,f +16139,6141,71,2,t +16139,6141,179,7,f +16139,6141,41,1,t +16139,6141,27,3,t +16139,6141,15,21,f +16139,6141,0,1,t +16139,6141,27,6,f +16139,6141,14,3,t +16139,6141,85,3,f +16139,6141,72,2,t +16139,6141,1,3,f +16139,6141,85,2,t +16139,6141,179,1,t +16139,6141,15,3,t +16139,6141,72,4,f +16139,6141,0,4,f +16139,6141,41,2,f +16139,6141,1,2,t +16139,6141,14,6,f +16139,61482,71,1,f +16139,61482,71,1,t +16139,61678,2,3,f +16139,6179,0,1,f +16139,6180,322,1,f +16139,6190,322,2,f +16139,62113,0,1,f +16139,6215,2,3,f +16139,6231,71,2,f +16139,6231,1,4,f +16139,6231,19,8,f +16139,62701,179,1,f +16139,63864,15,1,f +16139,63864,0,1,f +16139,63864,71,3,f +16139,63868,0,2,f +16139,6541,72,2,f +16139,6541,71,3,f +16139,6636,272,1,f +16139,6636,15,2,f +16139,6636,1,3,f +16139,6636,71,15,f +16139,6636,72,1,f +16139,73983,19,6,f +16139,73983,72,2,f +16139,76766,71,1,f +16139,85941,41,1,f +16139,85984,0,2,f +16139,85984,70,2,f +16139,85984,85,2,f +16139,85984,71,28,f +16139,85984,25,1,f +16139,85984,72,1,f +16139,86208,71,1,f +16139,87079,2,1,f +16139,87079,0,3,f +16139,87079,25,1,f +16139,87079,484,5,f +16139,87079,15,1,f +16139,87079,71,1,f +16139,87079,72,4,f +16139,87079,1,8,f +16139,87087,15,4,f +16139,87087,71,2,f +16139,87087,0,2,f +16139,87544,272,4,f +16139,87544,71,3,f +16139,87552,41,11,f +16139,87552,0,1,f +16139,87552,71,48,f +16139,87580,71,10,f +16139,87580,15,1,f +16139,87580,4,6,f +16139,87580,2,4,f +16139,87609,0,1,f +16139,87609,71,1,f +16139,87994,71,2,t +16139,87994,0,1,t +16139,87994,71,2,f +16139,87994,0,1,f +16139,88072,71,2,f +16139,88292,84,1,f +16139,88646,71,12,f +16139,91501,15,2,f +16139,91501,71,8,f +16139,91988,71,9,f +16139,92262,15,1,f +16139,92263,15,1,f +16139,92280,0,3,f +16139,92339,72,3,f +16139,92438,71,2,f +16139,92438,379,6,f +16139,92583,41,2,f +16139,92593,272,6,f +16139,92593,0,8,f +16139,93092,30,1,f +16139,93095,15,1,f +16139,93274,71,2,f +16139,93274,0,1,f +16139,93274,72,3,f +16139,96874,25,1,t +16139,970c00,73,1,f +16139,970c00,272,1,f +16139,970c00,72,1,f +16139,970c00pr0636,1,1,f +16139,970x001,14,1,f +16139,973pr2604c01,15,1,f +16139,973pr2605c01,27,1,f +16139,973pr3047c01,1,1,f +16139,973pr3048c01,272,1,f +16139,973pr3049c01,323,1,f +16139,98138,320,2,t +16139,98138,320,4,f +16139,98138,1,5,f +16139,98138,179,1,t +16139,98138,27,1,f +16139,98138,1,2,t +16139,98138,179,15,f +16139,98138,15,6,f +16139,98138,15,2,t +16139,98138,71,11,f +16139,98138,71,3,t +16139,98138,27,1,t +16139,98138pr0013,15,4,f +16139,98138pr0013,15,1,t +16139,98138pr0017,29,4,f +16139,98138pr0017,29,1,t +16139,98138pr0018,84,4,f +16139,98138pr0018,84,1,t +16139,98138pr0022,84,1,t +16139,98138pr0022,84,6,f +16139,98138pr0035,179,4,f +16139,98138pr0035,179,1,t +16139,98281,15,1,f +16139,98282,0,2,f +16139,98283,84,8,f +16139,99206,71,5,f +16139,99207,71,4,f +16139,99780,71,1,f +16139,99781,0,2,f +16139,99781,71,3,f +16140,10247,15,1,f +16140,11203pr0012,191,1,f +16140,11618,191,1,t +16140,11618,322,1,f +16140,11618,322,1,t +16140,11618,191,1,f +16140,15395,4,1,f +16140,15573,15,3,f +16140,15573,27,2,f +16140,18852pr0001,15,2,f +16140,20482,47,2,f +16140,20482,47,1,t +16140,22667,26,1,f +16140,22667,26,1,t +16140,22888,27,1,f +16140,23969,322,2,f +16140,24131,191,1,f +16140,24131,191,1,t +16140,24131,26,1,f +16140,24131,26,1,t +16140,2453b,15,2,f +16140,2456,30,1,f +16140,3010,30,1,f +16140,3020,30,1,f +16140,3022,15,1,f +16140,3023,322,1,f +16140,30367c,4,1,f +16140,3039pr0020,15,1,f +16140,3062b,322,2,f +16140,3069bpr0100,2,1,f +16140,3069bpr0158,323,1,f +16140,33172,25,2,f +16140,33183,10,2,f +16140,33183,10,1,t +16140,33291,4,1,t +16140,33291,4,2,f +16140,3795,191,2,f +16140,3795,27,1,f +16140,60583b,15,2,f +16140,60800a,5,2,f +16140,6232,19,1,f +16140,63965,15,1,f +16140,87580,322,1,f +16140,92950,15,1,f +16140,93273,322,1,f +16140,98138pr0024a,179,1,f +16140,98138pr0024a,179,1,t +16141,12825,72,3,f +16141,2412b,297,1,f +16141,2419,72,1,f +16141,2444,71,2,f +16141,2445,0,1,f +16141,2654,4,2,f +16141,2817,0,2,f +16141,3003,28,2,f +16141,30031,0,1,f +16141,3004,0,2,f +16141,3005,19,1,f +16141,30173b,297,3,f +16141,30176,2,1,f +16141,3020,72,1,f +16141,3021,19,1,f +16141,3022,72,1,f +16141,3023,71,6,f +16141,30237b,72,1,f +16141,3034,72,1,f +16141,30602,4,1,f +16141,3062b,72,6,f +16141,3068b,71,2,f +16141,3068b,27,1,f +16141,3176,72,2,f +16141,32449,0,4,f +16141,3623,0,2,f +16141,3626cpr0745,14,1,f +16141,3626cpr0869,27,1,f +16141,3660,4,1,f +16141,3665,72,2,f +16141,3666,72,2,f +16141,3673,71,1,t +16141,3673,71,2,f +16141,3678b,72,2,f +16141,3679,71,1,f +16141,3680,0,1,f +16141,3700,72,1,f +16141,3710,72,2,f +16141,3794b,4,1,f +16141,3937,0,1,f +16141,41747,4,1,f +16141,41748,4,1,f +16141,42610,71,2,f +16141,43093,1,4,f +16141,43722,72,1,f +16141,43723,72,1,f +16141,44728,72,2,f +16141,4519,71,2,f +16141,47720,0,1,f +16141,47753pr0004,27,1,f +16141,48336,0,2,f +16141,48336,4,1,f +16141,50950,4,2,f +16141,50950,288,2,f +16141,51011,0,2,f +16141,53451,15,2,f +16141,53451,15,1,t +16141,54200,72,1,t +16141,54200,72,4,f +16141,55981,71,2,f +16141,59900,4,2,f +16141,60470b,2,1,f +16141,60897,0,2,f +16141,61184,71,1,f +16141,61252,4,6,f +16141,6134,4,1,f +16141,61406pat0007,288,1,f +16141,61678,2,2,f +16141,61678,27,2,f +16141,63868,14,2,f +16141,6632,72,2,f +16141,6636,4,2,f +16141,89201,0,2,f +16141,92280,4,2,f +16141,970c00pr0269,27,1,f +16141,970c00pr0276,0,1,f +16141,973pr1894c01,27,1,f +16141,973pr1898c01,0,1,f +16141,98132,179,1,f +16141,98133pr0004,0,1,f +16141,98134,297,1,f +16141,98136,27,2,f +16141,98136,52,1,f +16141,98137,297,2,f +16141,98139,297,1,f +16141,98141,297,2,f +16141,98153pr0002,27,1,f +16141,98283,28,7,f +16141,99781,71,2,f +16143,2431,15,1,f +16143,2458,1,2,f +16143,3005,70,2,f +16143,3005,70,1,t +16143,30136,70,6,f +16143,3038,15,2,f +16143,3795,15,1,f +16143,92950,1,1,f +16145,23306,383,1,f +16145,2419,6,2,f +16145,2436,6,2,f +16145,2456,0,1,f +16145,2555,7,3,f +16145,2569,8,2,f +16145,3001,6,1,f +16145,30031,0,1,f +16145,3004,7,3,f +16145,3020,6,3,f +16145,3020,19,1,f +16145,3023,1,1,f +16145,3035,8,2,f +16145,30365,0,2,f +16145,30374,42,1,f +16145,30383,19,2,f +16145,3040b,6,2,f +16145,3063b,8,2,f +16145,3626bpr0342,14,1,f +16145,3626bpr0635,14,1,f +16145,3660,0,3,f +16145,3794a,8,1,f +16145,3832,19,1,f +16145,3901,6,1,f +16145,3901,19,1,f +16145,3941,19,2,f +16145,4162,8,1,f +16145,4497,0,1,f +16145,4855,0,1,f +16145,4865a,8,2,f +16145,6152,6,1,f +16145,6583,6,2,f +16145,970c00,6,1,f +16145,970c00,0,1,f +16145,973ps2c01,0,1,f +16145,973ps4c01,15,1,f +16146,2431,1,1,f +16146,2432,15,1,f +16146,2540,15,1,f +16146,3005,41,2,f +16146,3010,7,2,f +16146,30136,8,4,f +16146,30157,8,2,f +16146,3020,1,1,f +16146,3020,15,1,f +16146,3021,15,2,f +16146,3022,15,2,f +16146,3023,15,1,f +16146,3023,1,4,f +16146,30236,0,1,f +16146,3024,46,4,f +16146,3024,36,4,f +16146,3032,0,1,f +16146,3032,1,3,f +16146,3035,7,2,f +16146,30365,8,2,f +16146,30383,8,2,f +16146,3069b,15,2,f +16146,3069b,0,3,f +16146,3297,15,1,f +16146,3460,15,2,f +16146,3483,0,4,f +16146,3622,1,2,f +16146,3626bp03,14,1,f +16146,3626bp05,14,1,f +16146,3626bpa3,14,1,f +16146,3626bpr0001,14,2,f +16146,3626bpx19,14,1,f +16146,3665,7,2,f +16146,3666,1,1,f +16146,3666,0,1,f +16146,3710,15,6,f +16146,3795,15,2,f +16146,3795,0,2,f +16146,3829c01,0,1,f +16146,3855,41,7,f +16146,3901,0,2,f +16146,3901,6,2,f +16146,3901,19,1,f +16146,4085c,7,2,f +16146,4162,7,4,f +16146,4176,41,2,f +16146,4282,7,1,f +16146,4287,7,2,f +16146,4349,0,2,f +16146,4485,15,1,f +16146,6112,1,2,f +16146,6248,7,4,f +16146,6556,15,7,f +16146,72824p01,15,1,f +16146,970c00,0,1,f +16146,970c00,1,5,f +16146,973c01,15,5,f +16146,973c12,2,1,f +16148,3004,0,2,f +16148,30043,0,2,f +16148,3070b,36,2,f +16148,3070b,36,1,t +16148,3626bpr0445,14,1,f +16148,41747,15,1,f +16148,41748,15,1,f +16148,4360,0,2,f +16148,4588,72,1,f +16148,4589,36,1,f +16148,4623,0,2,f +16148,50304,15,1,f +16148,50305,15,1,f +16148,52107,0,1,f +16148,53981,73,1,f +16148,6141,36,1,f +16148,6141,36,1,t +16148,970x026,15,1,f +16148,973pr1232c01,15,1,f +16151,10201,71,2,f +16151,11090,19,1,f +16151,11097,297,1,f +16151,11103,297,1,f +16151,11129pr0003,320,1,f +16151,11477,71,2,f +16151,11477,308,2,f +16151,14417,72,9,f +16151,14418,71,4,f +16151,14704,71,5,f +16151,14769,71,2,f +16151,15068,19,4,f +16151,15068pr0001,19,1,f +16151,15070,15,2,f +16151,15208,15,4,f +16151,2540,19,1,f +16151,3003,19,1,f +16151,3005,19,4,f +16151,3020,15,1,f +16151,3020,19,2,f +16151,3021,70,1,f +16151,3022,19,4,f +16151,3023,28,10,f +16151,3024,19,4,f +16151,3024,19,1,t +16151,30374,41,1,f +16151,3069b,19,2,f +16151,3070b,0,1,t +16151,3070b,0,1,f +16151,3623,70,2,f +16151,3623,19,4,f +16151,3626cpr1121,19,1,f +16151,3660,19,2,f +16151,3794b,19,1,f +16151,3795,19,1,f +16151,4032a,4,1,f +16151,43892,19,1,f +16151,44728,71,2,f +16151,48336,15,1,f +16151,49668,19,2,f +16151,50950,308,4,f +16151,50950,19,4,f +16151,60470a,4,1,f +16151,6091,71,2,f +16151,6091,19,4,f +16151,85984,15,1,f +16151,88292,19,4,f +16151,92747,41,1,f +16151,970c02pr0430,19,1,f +16151,973pr2224c01,1,1,f +16151,98138,41,1,f +16151,98138,41,1,t +16151,99780,0,4,f +16152,4774cu,15,1,f +16153,2431,14,4,f +16153,2780,0,16,f +16153,2815,0,4,f +16153,3001,4,2,f +16153,3020,2,4,f +16153,3022,2,4,f +16153,3023,15,8,f +16153,3069b,14,2,f +16153,32001,15,6,f +16153,32039,14,2,f +16153,32062,4,4,f +16153,32064b,14,4,f +16153,32073,71,2,f +16153,32123b,14,16,f +16153,33299a,71,1,f +16153,3460,15,4,f +16153,3647,72,4,f +16153,3648b,72,2,f +16153,3649,71,2,f +16153,3650c,71,2,f +16153,3666,15,4,f +16153,3673,7,10,f +16153,3700,4,4,f +16153,3701,4,4,f +16153,3702,4,4,f +16153,3703,4,6,f +16153,3705,0,2,f +16153,3706,0,2,f +16153,3707,0,2,f +16153,3709,15,2,f +16153,3710,15,4,f +16153,3713,71,16,f +16153,3737,0,2,f +16153,3749,19,10,f +16153,3894,4,4,f +16153,3941,14,4,f +16153,4185,71,4,f +16153,44294,71,2,f +16153,4519,71,2,f +16153,62462,14,2,f +16153,6536,14,2,f +16153,6558,1,2,f +16153,6587,28,2,f +16153,73090a,0,1,f +16153,85546,14,2,f +16153,87083,72,2,f +16156,18816,322,1,f +16156,18823,1,1,f +16156,19419,4,1,f +16156,19423,25,1,f +16156,20715,14,1,f +16156,20794,27,1,f +16156,20854,14,1,f +16156,21112,14,1,f +16156,21273,73,1,f +16156,21274,85,1,f +16156,2312c02,14,1,f +16156,3011,321,2,f +16156,98223,14,2,f +16156,98233,4,2,f +16157,6378,8,6,f +16158,2341,15,1,f +16158,2357,15,2,f +16158,2362a,41,1,f +16158,2412b,15,1,f +16158,2412b,0,2,f +16158,2420,15,2,f +16158,2421,7,1,f +16158,2431,4,1,f +16158,2431,0,1,f +16158,2431p12,15,1,f +16158,2432,1,1,f +16158,2432,15,1,f +16158,2436,1,1,f +16158,2437,41,1,f +16158,2446,15,3,f +16158,2447,0,1,f +16158,2447,41,2,f +16158,2450,7,1,f +16158,2453a,15,5,f +16158,2454a,15,9,f +16158,2460,1,1,f +16158,2479,7,1,f +16158,2483,41,1,f +16158,2486,0,1,f +16158,2540,0,1,f +16158,2540,7,1,f +16158,2540,15,1,f +16158,2547,8,1,f +16158,2548,8,1,f +16158,2555,7,2,f +16158,2555,15,3,f +16158,2555,0,2,f +16158,2569,4,2,f +16158,2610,14,2,f +16158,2625,15,1,f +16158,2625,0,2,f +16158,2626,0,1,f +16158,2654,7,2,f +16158,2877,0,2,f +16158,298c02,4,4,f +16158,298c02,15,4,f +16158,3001,0,2,f +16158,3001,7,1,f +16158,3002,7,2,f +16158,3003,1,3,f +16158,3003,7,2,f +16158,3004,7,9,f +16158,3004,15,10,f +16158,3004,1,6,f +16158,3004pc0,15,1,f +16158,3005,7,17,f +16158,3005,15,7,f +16158,3005,47,1,f +16158,30055,0,3,f +16158,3008,7,2,f +16158,3008,0,1,f +16158,3008,15,1,f +16158,3009,15,5,f +16158,3009,0,2,f +16158,3010,0,2,f +16158,3010,15,3,f +16158,3010,7,5,f +16158,3020,15,2,f +16158,3020,7,3,f +16158,3020,1,3,f +16158,3021,1,1,f +16158,3022,1,2,f +16158,3023,4,2,f +16158,3023,7,1,f +16158,3023,15,5,f +16158,3023,0,7,f +16158,3024,7,6,f +16158,3024,34,1,f +16158,3024,36,3,f +16158,3024,0,1,f +16158,3024,46,11,f +16158,3024,15,11,f +16158,3029,7,1,f +16158,3030,7,1,f +16158,3031,0,1,f +16158,3031,7,1,f +16158,3032,7,1,f +16158,3033,15,4,f +16158,3033,0,1,f +16158,3034,7,1,f +16158,3035,0,2,f +16158,3037,7,1,f +16158,3039,7,1,f +16158,3039px14,15,1,f +16158,3040b,15,15,f +16158,3040b,0,3,f +16158,3040p04,7,2,f +16158,3062b,7,1,f +16158,3062b,14,4,f +16158,3068bpx18,7,1,f +16158,3069b,7,1,f +16158,3069bp02,7,1,f +16158,3069bp0b,15,1,f +16158,3069bp80,15,1,f +16158,3069bpr0016,15,4,f +16158,3069bpr0100,2,1,f +16158,3069bpx35,15,1,f +16158,3070b,7,1,f +16158,3070b,36,3,f +16158,3070b,7,1,t +16158,3070b,46,2,f +16158,3070b,36,1,t +16158,3185,7,3,f +16158,3297,0,3,f +16158,3297p10,15,1,f +16158,3298,0,2,f +16158,3298,1,1,f +16158,3455,7,1,f +16158,3460,0,4,f +16158,3464,47,4,f +16158,3622,7,2,f +16158,3622,0,2,f +16158,3622,15,6,f +16158,3623,15,2,f +16158,3623,7,2,f +16158,3623,4,2,f +16158,3626bp02,14,1,f +16158,3626bp03,14,1,f +16158,3626bp04,14,5,f +16158,3626bpx11,14,1,f +16158,3633,7,1,f +16158,3641,0,8,f +16158,3660,0,5,f +16158,3660,15,4,f +16158,3660,1,1,f +16158,3660,7,3,f +16158,3665,15,2,f +16158,3665,0,8,f +16158,3665,7,4,f +16158,3666,0,1,f +16158,3666,15,3,f +16158,3666,7,3,f +16158,3675,0,2,f +16158,3679,7,3,f +16158,3680,0,3,f +16158,3710,7,5,f +16158,3710,15,1,f +16158,3710,4,1,f +16158,3741,2,2,f +16158,3742,4,6,f +16158,3742,4,2,t +16158,3747b,0,1,f +16158,3788,7,1,f +16158,3794a,14,4,f +16158,3794a,7,3,f +16158,3794a,4,3,f +16158,3795,1,1,f +16158,3821,7,1,f +16158,3822,7,1,f +16158,3823,41,1,f +16158,3829c01,7,1,f +16158,3829c01,0,1,f +16158,3832,0,1,f +16158,3867,2,1,f +16158,3899,15,1,f +16158,3899,47,1,f +16158,3900,15,1,f +16158,3901,0,2,f +16158,3937,1,2,f +16158,3938,1,2,f +16158,3941,15,1,f +16158,3959,7,1,f +16158,3962a,0,2,f +16158,3963,7,1,f +16158,4033,7,4,f +16158,4070,7,3,f +16158,4070,0,4,f +16158,4079,1,4,f +16158,4083,0,2,f +16158,4085c,0,1,f +16158,4085c,7,6,f +16158,4085c,15,1,f +16158,4095,0,1,f +16158,4150,15,1,f +16158,4162,4,1,f +16158,4213,7,3,f +16158,4214,7,1,f +16158,4215b,15,1,f +16158,4275b,7,1,f +16158,4276b,15,1,f +16158,4285b,7,1,f +16158,4286,15,2,f +16158,4286,0,4,f +16158,4287,7,2,f +16158,4315,7,1,f +16158,4315,0,1,f +16158,4318,7,1,f +16158,4345b,7,1,f +16158,4346,7,1,f +16158,4349,4,2,f +16158,4360,7,1,f +16158,4477,0,3,f +16158,4478p01,2,1,f +16158,4480c01,15,2,f +16158,4485,0,1,f +16158,4485,15,1,f +16158,4488,0,1,f +16158,4589,7,6,f +16158,4595,0,1,f +16158,4596,7,2,f +16158,4623,15,2,f +16158,4624,15,4,f +16158,4625,7,1,f +16158,4697b,7,2,f +16158,4735,0,1,f +16158,4740,33,3,f +16158,4864a,7,1,f +16158,4865a,15,2,f +16158,4865a,1,2,f +16158,6016,0,5,f +16158,6019,1,1,f +16158,6020,0,2,f +16158,6093,0,1,f +16158,6111,15,1,f +16158,6140,15,3,f +16158,6141,36,4,f +16158,6141,33,10,f +16158,6141,0,1,f +16158,6141,0,1,t +16158,6141,34,1,f +16158,6141,34,1,t +16158,6157,0,2,f +16158,6159,0,4,f +16158,6160c01,0,6,f +16158,73194c02,0,2,f +16158,73983,4,1,f +16158,970c00,15,1,f +16158,970c00,0,7,f +16158,973pr0145c01,15,1,f +16158,973px18c01,15,1,f +16158,973px20c01,0,1,f +16158,973px67c01,0,2,f +16158,973px9c01,0,3,f +16162,11127,41,1,f +16162,12825,71,1,f +16162,15071,0,1,f +16162,30031,0,1,f +16162,30374,70,1,f +16162,3062b,0,1,f +16162,4733,0,1,f +16162,4740pr0003,35,1,f +16162,53451,27,3,f +16162,53454,148,1,f +16162,54200,71,2,f +16162,59900,71,1,f +16162,87747,179,4,f +16162,92690,71,1,f +16165,3626bpb0743,14,1,f +16165,88646pr0001,15,1,f +16165,93216,179,1,f +16165,970c00pb168,15,1,f +16165,973pr2204c01,15,1,f +16165,99250pr0001,4,1,f +16165,99930,0,1,f +16166,2412b,15,12,f +16166,2432,14,4,f +16166,2437,40,1,f +16166,2440,15,1,f +16166,2441,0,1,f +16166,2465,15,2,f +16166,2654,71,4,f +16166,2780,0,2,f +16166,2780,0,1,t +16166,30027b,15,4,f +16166,30028,0,4,f +16166,3004,15,6,f +16166,3004,1,4,f +16166,3010,15,2,f +16166,3020,4,9,f +16166,3020,1,2,f +16166,3021,15,2,f +16166,3021,1,2,f +16166,3022,4,5,f +16166,3022,71,4,f +16166,3023,15,7,f +16166,3024,36,2,f +16166,3024,71,2,f +16166,3024,46,2,f +16166,3034,71,3,f +16166,30355,71,1,f +16166,30356,71,1,f +16166,3036,2,1,f +16166,30360,15,2,f +16166,3039,72,2,f +16166,3039pr0013,15,1,f +16166,30503,71,2,f +16166,3068b,1,5,f +16166,3068b,15,4,f +16166,3069bpr0090,72,1,f +16166,3069bpr0101,71,1,f +16166,3183c,71,1,f +16166,32000,72,4,f +16166,32013,14,1,f +16166,32018,71,2,f +16166,32062,0,2,f +16166,32062,4,1,f +16166,32083,15,6,f +16166,32138,71,2,f +16166,32187,71,2,f +16166,3245b,15,2,f +16166,32556,19,1,f +16166,3460,15,4,f +16166,3660,15,4,f +16166,3666,71,2,f +16166,3679,71,1,f +16166,3680,0,1,f +16166,3709,72,1,f +16166,3710,15,5,f +16166,3710,1,6,f +16166,3794b,1,1,f +16166,3795,1,8,f +16166,3829c01,1,1,f +16166,3832,72,3,f +16166,3938,4,1,f +16166,3941,71,1,f +16166,3962b,0,1,f +16166,4019,71,2,f +16166,4032a,72,4,f +16166,4079,14,7,f +16166,4079,1,2,f +16166,4162,1,4,f +16166,42610,71,2,f +16166,43093,1,2,f +16166,43337,14,2,f +16166,44302a,72,3,f +16166,4449,70,1,f +16166,44567a,0,3,f +16166,4519,71,1,f +16166,4589,182,1,f +16166,4624,71,6,f +16166,47397,71,1,f +16166,47398,71,1,f +16166,47457,15,1,f +16166,4870,71,2,f +16166,50304,15,1,f +16166,50305,15,1,f +16166,51011,0,2,f +16166,54383,71,1,f +16166,54384,71,1,f +16166,58827,72,1,f +16166,59895,0,6,f +16166,60219,1,6,f +16166,60475a,15,2,f +16166,60601,41,20,f +16166,61345,15,10,f +16166,6141,36,2,f +16166,6141,34,1,t +16166,6141,36,1,t +16166,6141,34,1,f +16166,6141,47,1,f +16166,6141,47,1,t +16166,61483,71,1,f +16166,6231,14,2,f +16166,6238,14,1,f +16166,62462,0,1,f +16166,62462,14,2,f +16166,63965,15,1,f +16166,6628,0,1,f +16166,85984,15,4,f +16166,87079,15,4,f +16166,87082,71,1,f +16166,87611,1,1,f +16166,87612,41,1,f +16166,87613,15,1,f +16166,87614,1,1,f +16166,87615,1,1,f +16166,87616,1,1,f +16167,10199,10,1,f +16167,11170,4,2,f +16167,11198,322,1,f +16167,15945,29,1,f +16167,15947,29,1,f +16167,15950,191,1,f +16167,15954,27,1,f +16167,15958,191,1,f +16167,15962,27,1,f +16167,16874,15,1,f +16167,2302,25,2,f +16167,2302,5,2,f +16167,3011,25,2,f +16167,3011,191,2,f +16167,3437,29,4,f +16167,3437,4,2,f +16167,3437,10,4,f +16167,3437,27,2,f +16167,3437,5,4,f +16167,3437,191,2,f +16167,3437,322,4,f +16167,3437,484,2,f +16167,4066,29,2,f +16167,4066,5,2,f +16167,40666,27,2,f +16167,40666,4,2,f +16167,47510pr0001,29,1,f +16167,61649,5,1,f +16167,61649,4,1,f +16167,6497,15,1,f +16167,6510,25,1,f +16167,6510,5,1,f +16167,6510,4,1,f +16167,89406,70,1,f +16167,90265,15,2,f +16167,98223,27,1,f +16167,98223,25,1,f +16167,98252,27,2,f +16168,14210,15,1,f +16168,2362a,47,2,f +16168,2412b,8,4,f +16168,2419,8,1,f +16168,2445,19,1,f +16168,2454a,8,1,f +16168,2456,19,1,f +16168,2540,19,6,f +16168,2555,8,1,t +16168,2555,8,2,f +16168,2921,15,4,f +16168,298c02,7,1,t +16168,298c02,7,2,f +16168,3001,8,4,f +16168,3001,19,1,f +16168,3002,19,1,f +16168,3003,8,1,f +16168,3005,8,5,f +16168,30055,0,2,f +16168,30089,0,1,f +16168,3009,8,2,f +16168,3009,19,3,f +16168,3010,15,1,f +16168,3010,19,3,f +16168,30152pat0001,0,1,f +16168,30179,8,1,f +16168,3020,0,1,f +16168,3020,8,2,f +16168,3021,15,2,f +16168,3023,19,1,f +16168,30238,33,1,f +16168,30238,0,1,f +16168,30238,57,1,f +16168,30238,36,1,f +16168,30238,42,1,f +16168,30240,15,1,f +16168,3031,15,1,f +16168,3033,8,1,f +16168,3034,0,1,f +16168,30377,7,2,f +16168,30377,7,1,t +16168,3039pr0001,15,2,f +16168,3040bpr0003,7,1,f +16168,30414,15,1,f +16168,30565,0,2,f +16168,30608,484,1,f +16168,3062b,36,2,f +16168,3062b,8,1,f +16168,3062b,34,3,f +16168,30650,47,1,f +16168,3068bpb0019,8,1,f +16168,3068bpb0020,1,1,f +16168,3068bpb0021,15,1,f +16168,3069b,7,3,f +16168,3069bp80,15,3,f +16168,3188,7,1,f +16168,3189,7,1,f +16168,3245b,8,2,f +16168,3626bpb0195,14,1,f +16168,3626bpr0314,14,1,f +16168,3626bpx102,10,1,f +16168,3626bpx116,14,1,f +16168,3626bpx117,14,1,f +16168,3626bpx125,4,1,f +16168,3660,0,1,f +16168,3660,19,6,f +16168,3666,8,1,f +16168,3679,7,2,f +16168,3680,1,2,f +16168,3700,19,2,f +16168,3707,0,3,f +16168,3738,7,1,f +16168,3747a,8,4,f +16168,3794a,0,2,f +16168,3795,8,2,f +16168,3795,0,3,f +16168,3832,0,1,f +16168,3867,7,2,f +16168,3899,47,1,f +16168,3901,6,1,f +16168,3901,8,1,f +16168,3937,0,1,f +16168,3937,15,1,f +16168,3937,8,2,f +16168,3938,7,4,f +16168,3940b,0,6,f +16168,3941,7,3,f +16168,3941,19,16,f +16168,3941,15,2,f +16168,40251,25,1,f +16168,4083,15,2,f +16168,4150,15,1,f +16168,4150,7,1,f +16168,4162,0,2,f +16168,4215b,47,2,f +16168,4216,8,6,f +16168,4851stk01,9999,1,t +16168,4864b,7,2,f +16168,6056,8,2,f +16168,6141,8,4,f +16168,6141,47,1,t +16168,6141,36,1,f +16168,6141,8,1,t +16168,6141,34,1,t +16168,6141,36,1,t +16168,6141,47,2,f +16168,6141,34,1,f +16168,6160c04,7,1,f +16168,6180,0,1,f +16168,6232,19,2,f +16168,6259,7,1,f +16168,6636,19,1,f +16168,73983,7,1,f +16168,76041c02,7,1,f +16168,970c00,0,1,f +16168,970c00,272,2,f +16168,970c00,8,1,f +16168,970c07pb02,1,1,f +16168,970c36pb01,10,1,f +16168,973c11,14,1,f +16168,973pb0190c01,4,1,f +16168,973pb0285c01,2,1,f +16168,973pb0291c01,7,1,f +16168,973pb0334c01,379,1,f +16168,973px155c01,10,1,f +16168,x225pb01,10,1,f +16170,11010,334,1,f +16170,11010,334,2,t +16170,11477,15,4,f +16170,13965,15,2,f +16170,15672,15,2,f +16170,15745,45,1,f +16170,15745,41,1,f +16170,19119,2,3,f +16170,2423,27,1,f +16170,3008,19,2,f +16170,30153,47,2,f +16170,30176,2,2,f +16170,3023,15,4,f +16170,3024,15,6,f +16170,3024,15,1,t +16170,3028,15,1,f +16170,3030,15,1,f +16170,3038,15,2,f +16170,3045,15,2,f +16170,33291,31,8,f +16170,33291,5,1,t +16170,33291,31,1,t +16170,33291,5,3,f +16170,33291,10,7,f +16170,33291,10,1,t +16170,3626bpr0649,14,1,f +16170,3626cpr0893,14,1,f +16170,3626cpr1760,14,1,f +16170,3665,15,2,f +16170,3666,15,2,f +16170,3678b,15,1,f +16170,3742,15,1,t +16170,3742,15,3,f +16170,3878,0,1,f +16170,4510,15,1,f +16170,50950,15,2,f +16170,59363,0,1,f +16170,59363,226,1,f +16170,59363,70,1,f +16170,59900,15,2,f +16170,62810,84,1,f +16170,62810,0,1,f +16170,62810,14,1,f +16170,6636,15,2,f +16170,87087,15,4,f +16170,970c00,0,1,f +16170,973pr1443c01,15,1,f +16170,973pr2308c01,0,1,f +16170,98560,15,2,f +16170,99780,71,1,f +16171,2357,4,2,f +16171,2415,7,1,f +16171,2420,0,2,f +16171,2431,1,2,f +16171,2431,14,2,f +16171,2431,0,2,f +16171,2454a,14,2,f +16171,2454a,1,2,f +16171,2465,4,1,f +16171,2572,47,2,f +16171,2711,0,2,f +16171,2817,4,2,f +16171,2825,0,2,f +16171,2856c01,7,1,f +16171,2952,7,2,f +16171,3004,4,4,f +16171,3004,0,4,f +16171,3005,4,2,f +16171,3008,4,2,f +16171,3009,1,2,f +16171,3009,14,2,f +16171,3010,4,2,f +16171,3021,0,2,f +16171,3023,0,2,f +16171,3040b,4,2,f +16171,3065,46,1,f +16171,3065,33,1,f +16171,3065,36,1,f +16171,3065,34,1,f +16171,3068b,15,2,f +16171,3068bp18,15,1,f +16171,3068bpb0016,15,1,f +16171,3069b,4,2,f +16171,3069b,1,2,f +16171,3069b,15,2,f +16171,3069b,7,2,f +16171,3069b,14,2,f +16171,3069b,0,2,f +16171,3139,0,1,f +16171,3299,0,1,f +16171,3460,0,2,f +16171,3464,47,1,f +16171,3482,7,2,f +16171,3482,14,2,f +16171,3483,0,2,f +16171,3623,0,4,f +16171,3647,7,3,f +16171,3666,0,2,f +16171,3679,7,1,f +16171,3680,0,1,f +16171,3710,0,2,f +16171,3738,0,2,f +16171,3794a,0,2,f +16171,4032a,0,2,f +16171,4070,0,2,f +16171,4150,15,2,f +16171,4162,0,2,f +16171,41753,8,3,f +16171,4286,4,2,f +16171,4287,4,2,f +16171,6002,47,2,f +16171,71128,383,1,f +16171,85544,4,2,f +16171,85545,1,2,f +16171,rb00170,0,4,f +16174,3004,47,1,f +16174,3004,0,4,f +16174,3004,1,1,f +16174,3005,1,2,f +16174,3005,0,4,f +16174,3010,1,2,f +16174,3020,0,3,f +16174,3021,1,1,f +16174,3021,0,2,f +16174,3022,0,1,f +16174,3022,7,6,f +16174,3023,0,15,f +16174,3023,1,4,f +16174,3023,7,10,f +16174,3024,7,2,f +16174,3024,1,2,f +16174,3024,0,8,f +16174,3031,0,2,f +16174,3034,0,1,f +16174,3034,1,1,f +16174,3037,0,2,f +16174,3039,1,3,f +16174,3040a,0,10,f +16174,3043,1,1,f +16174,3045,0,2,f +16174,3045,1,2,f +16174,3049b,1,1,f +16174,3062a,14,4,f +16174,3062a,15,4,f +16174,3063b,0,2,f +16174,3065,36,1,f +16174,3068b,1,1,f +16174,3068b,0,1,f +16174,3069a,1,1,f +16174,3460,7,2,f +16174,3475a,7,2,f +16174,3634b,0,2,f +16174,3639,4,1,f +16174,3640,4,1,f +16174,3660a,1,3,f +16174,3700b,0,4,f +16174,3705,79,2,f +16174,3706,79,1,f +16174,3709a,7,2,f +16174,569,4,2,f +16174,x148,4,4,f +16175,11164pat01,35,1,f +16175,11270,35,1,f +16175,11282,288,1,f +16175,32062,4,5,f +16175,3749,19,2,f +16175,43093,1,1,f +16175,53551,148,4,f +16175,53562,70,2,f +16175,55236,70,2,f +16175,55236,288,3,f +16175,59443,70,4,f +16175,87747,15,2,f +16175,87747,15,1,t +16175,90608,0,4,f +16175,90612,0,1,f +16175,90617,72,4,f +16175,90626,0,1,f +16175,90640,35,4,f +16175,90641,288,2,f +16175,90652,288,1,f +16175,92233,70,2,f +16175,93571,0,3,f +16175,98313,288,3,f +16175,98570pat01,15,1,f +16175,98571,148,2,f +16175,98578,148,2,f +16175,98603,148,1,f +16176,2780,0,8,f +16176,2780,0,1,t +16176,32034,71,2,f +16176,32039,0,5,f +16176,32056,0,8,f +16176,32062,4,19,f +16176,32073,71,1,f +16176,32123b,71,8,f +16176,32123b,71,1,t +16176,32523,72,2,f +16176,32525,72,1,f +16176,3706,0,1,f +16176,3713,71,1,t +16176,3713,71,4,f +16176,3749,19,1,f +16176,41669,25,2,f +16176,41678,71,1,f +16176,4274,1,1,t +16176,4274,1,2,f +16176,43093,1,9,f +16176,4519,71,5,f +16176,45749,0,2,f +16176,47300,72,2,f +16176,47330,0,1,f +16176,48989,71,1,f +16176,50923,72,2,f +16176,53544,25,2,f +16176,53545,0,1,f +16176,53585,0,2,f +16176,53586,25,2,f +16176,54272,0,2,f +16176,54821,42,1,f +16176,55013,72,2,f +16176,57539,25,2,f +16176,59443,72,2,f +16176,60176,0,6,f +16176,60483,72,2,f +16176,60930,179,1,f +16176,61054,72,2,f +16176,61801,25,2,f +16176,62386,25,2,f +16176,64262,57,1,f +16176,64272,0,2,f +16176,64275,25,2,f +16176,64276,0,1,f +16176,64292,25,2,f +16176,64311,0,2,f +16176,6536,0,1,f +16176,6558,1,2,f +16176,6587,28,2,f +16176,6629,72,2,f +16176,6632,71,2,f +16176,87082,71,2,f +16176,87083,72,1,f +16176,87820,0,3,f +16176,87831,25,1,f +16177,3069bpr0099,15,1,f +16177,33291,5,1,t +16177,33291,5,1,f +16177,3794b,27,1,f +16177,3941,27,1,f +16177,4345b,15,1,f +16177,4346,15,1,f +16177,54200,29,1,t +16177,54200,29,2,f +16178,32007,15,4,f +16178,680c01,0,2,f +16179,3001a,47,1,f +16179,3004,4,2,f +16179,3004,47,2,f +16179,3005,4,4,f +16179,3010,4,7,f +16179,3010pb035e,4,1,f +16179,3023,4,4,f +16179,3024,1,2,f +16179,3029,4,1,f +16179,3030,4,1,f +16179,3037,4,1,f +16179,3137c01,0,1,f +16179,3137c02,0,2,f +16179,3139,0,2,f +16179,3149c01,4,1,f +16179,3188,4,1,f +16179,3189,4,1,f +16179,420,14,1,f +16179,421,14,1,f +16179,7b,0,4,f +16181,14210,15,1,f +16181,2039,8,2,f +16181,2357,8,4,f +16181,2412b,383,1,f +16181,2412b,36,2,f +16181,2420,0,2,f +16181,2431,7,2,f +16181,2431,2,2,f +16181,2431,15,1,f +16181,2436,19,4,f +16181,2436,1,3,f +16181,2437,40,4,f +16181,2439,8,2,f +16181,2445,7,1,f +16181,2453a,8,2,f +16181,2454a,8,2,f +16181,2458,7,1,f +16181,2555,8,2,f +16181,2921,0,2,f +16181,30027b,15,4,f +16181,30027b,7,4,f +16181,30028,0,8,f +16181,30029,7,1,f +16181,30029,15,1,f +16181,3004,1,1,f +16181,3004,4,1,f +16181,3005,8,2,f +16181,3009,0,1,f +16181,3010,0,1,f +16181,3010,15,1,f +16181,3021,0,4,f +16181,3022,19,2,f +16181,3022,4,1,f +16181,3022,15,1,f +16181,3023,8,3,f +16181,3023,46,2,f +16181,30238,36,1,f +16181,3024,15,2,f +16181,3024,19,4,f +16181,3029,7,1,f +16181,3031,15,1,f +16181,3031,19,1,f +16181,3032,7,2,f +16181,30367b,4,1,f +16181,3037,0,3,f +16181,30374,6,1,f +16181,3068b,15,2,f +16181,3068b,19,1,f +16181,3069b,36,1,f +16181,3069b,15,2,f +16181,3069b,33,1,f +16181,3069bpb032,19,1,f +16181,3070b,36,2,f +16181,3070b,46,4,f +16181,32013,7,2,f +16181,32014,0,1,f +16181,32062,0,1,f +16181,3626bpb0046,14,1,f +16181,3626bpb0181,14,1,f +16181,3626bpr0370,4,1,f +16181,3666,15,2,f +16181,3666,19,4,f +16181,3666,1,2,f +16181,3673,7,2,f +16181,3673,7,1,t +16181,3700,8,2,f +16181,3710,15,7,f +16181,3710,19,4,f +16181,3713,7,1,f +16181,3713,7,1,t +16181,3788,19,2,f +16181,3788,15,2,f +16181,3794a,4,1,f +16181,3829c01,7,2,f +16181,3941,4,1,f +16181,40379,8,2,f +16181,4070,4,2,f +16181,41334,8,1,f +16181,42448,7,2,f +16181,43337,19,2,f +16181,43337,15,2,f +16181,4485,0,1,f +16181,45677,15,3,f +16181,4733,8,2,f +16181,4735,7,2,f +16181,4740,8,2,f +16181,4740,7,2,f +16181,6081,15,1,f +16181,6141,7,2,f +16181,6141,46,2,f +16181,6141,46,1,t +16181,6141,7,1,t +16181,6157,7,4,f +16181,6179,19,1,f +16181,6251,0,1,f +16181,6636,8,2,f +16181,970c00,0,1,f +16181,970c00,378,1,f +16181,970c00,1,1,f +16181,973pb0112c01,4,1,f +16181,973pb0287c01,8,1,f +16181,973pb0354c01,272,1,f +16182,14418,71,2,f +16182,14769pr1001,15,1,f +16182,15456,0,2,f +16182,3020,72,1,f +16182,3023,71,2,f +16182,3039,0,3,f +16182,3048c,297,4,f +16182,3069b,72,4,f +16182,32474pr1001,15,2,f +16182,3660,71,2,f +16182,3679,71,1,f +16182,3680,15,1,f +16182,3700,72,3,f +16182,3747b,0,1,f +16182,4032a,0,1,f +16182,4032a,0,1,t +16182,4274,71,1,t +16182,4274,71,2,f +16182,47458,0,2,f +16182,48336,0,2,f +16182,4871,72,1,f +16182,49668,0,2,f +16182,54200,71,4,f +16182,54200,0,1,t +16182,54200,0,2,f +16182,54200,71,1,t +16182,60474,72,1,f +16182,60478,72,2,f +16182,60897,72,3,f +16182,6091,72,4,f +16182,61252,0,6,f +16182,6141,15,4,f +16182,6141,15,1,t +16182,73983,0,1,f +16183,2420,70,6,f +16183,3004,19,2,f +16183,3004,70,5,f +16183,3005,70,1,f +16183,3005,71,2,f +16183,3005,19,2,f +16183,3005,0,1,f +16183,3010,70,2,f +16183,3023,0,2,f +16183,3023,15,1,f +16183,3032,70,2,f +16183,30363,0,3,f +16183,3665,70,1,f +16183,4070,0,1,f +16183,4161,0,2,f +16183,54200,72,3,f +16183,54200,15,2,f +16183,6141,46,1,f +16183,6141,70,6,f +16183,6141,15,13,f +16183,87079,0,1,f +16185,48500,15,5,f +16185,48501,15,5,f +16185,48502,15,5,f +16185,48503,15,5,f +16185,48504,15,5,f +16185,48505,15,5,f +16185,48506,15,5,f +16185,48507,15,5,f +16185,48508,15,5,f +16185,48509,15,5,f +16185,48510,15,4,f +16185,48511,15,5,f +16185,48512,15,5,f +16185,48513,15,4,f +16185,48514,15,4,f +16185,48515,15,4,f +16185,48555,15,4,f +16185,48556,15,4,f +16185,48657,15,8,f +16185,48658,15,8,f +16185,48659,15,4,f +16185,48660,15,4,f +16185,48661,15,4,f +16185,48662,15,4,f +16185,48663,15,8,f +16185,48665,15,8,f +16185,48725,15,8,f +16185,48726,15,8,f +16185,48727,15,8,f +16185,48728,15,8,f +16185,48733,15,8,f +16185,48734,15,8,f +16185,48735,15,8,f +16185,48736,15,8,f +16185,48752,15,8,f +16185,48753,15,8,f +16185,48754,15,8,f +16185,48755,15,8,f +16185,48757,15,4,f +16185,48758,15,4,f +16185,48759,15,4,f +16185,48760,15,4,f +16185,48772,15,4,f +16185,48773,15,4,f +16185,48774,15,4,f +16185,48775,15,4,f +16185,48776,15,4,f +16185,48777,15,4,f +16185,48778,15,4,f +16185,48779,15,4,f +16185,48780,15,4,f +16185,48781,15,4,f +16185,48782,15,4,f +16185,48783,15,4,f +16185,48784,15,8,f +16185,48785,15,8,f +16185,48786,15,8,f +16185,48787,15,8,f +16185,6309,15,24,f +16185,6851,15,4,f +16187,2432,6,2,f +16187,2540,8,1,f +16187,2653,0,4,f +16187,2654,7,5,f +16187,3001,19,2,f +16187,3004,19,4,f +16187,3022,7,2,f +16187,3023,19,2,f +16187,3031,7,1,f +16187,30357,19,2,f +16187,30365,7,2,f +16187,3037,8,1,f +16187,30375,19,6,f +16187,30375ps3,19,1,f +16187,30376,19,7,f +16187,30377,19,14,f +16187,30378,19,7,f +16187,30383,8,2,f +16187,3039,6,6,f +16187,3040b,8,4,f +16187,30505,6,2,f +16187,32028,2,2,f +16187,32059,8,1,f +16187,3298,0,1,f +16187,3666,7,1,f +16187,3700,8,4,f +16187,3795,19,2,f +16187,3832,7,1,f +16187,3832,8,4,f +16187,3849,8,2,f +16187,3957a,7,4,f +16187,4070,7,6,f +16187,4274,1,4,f +16187,4286,7,2,f +16187,4349,8,2,f +16187,4349,0,6,f +16187,4735,8,1,f +16187,4740,6,1,f +16187,4740,19,4,f +16187,6141,47,1,f +16187,6141,57,6,f +16187,6152px1,6,1,f +16188,3626cpb0780,78,1,f +16188,62810,308,1,f +16188,970c00,288,1,f +16188,973pb1221c01,10,1,f +16189,3001,4,1,f +16189,3002,14,3,f +16189,3002,4,4,f +16189,3003,4,3,f +16189,3003pe1,14,1,f +16189,3007,4,1,f +16190,2456,4,25,f +16190,2456,1,25,f +16190,3001,2,25,f +16190,3001,4,25,f +16190,3001,1,25,f +16190,3001,14,25,f +16190,3002,4,100,f +16190,3002,1,100,f +16190,3003,14,50,f +16190,3003,4,50,f +16190,3003,2,50,f +16190,3003,1,50,f +16190,3031,0,25,f +16190,3035,1,24,f +16190,3865,2,25,f +16190,3867,2,25,f +16190,4204,72,25,f +16193,32373,179,2,f +16193,64727,85,1,f +16193,90609,0,2,f +16193,90611,0,2,f +16193,90617,0,4,f +16193,90625,0,1,f +16193,90639pr0004,148,1,f +16193,90640,14,2,f +16193,90641,14,2,f +16193,90650,14,1,f +16193,90652,148,1,f +16193,90661,14,2,f +16193,92199,85,1,f +16193,92201,14,1,f +16193,92202,14,1,f +16193,92206,148,2,f +16193,92208,14,1,f +16193,92210,148,1,f +16193,93277,85,1,f +16193,93571,0,1,f +16193,93575,14,1,f +16196,2376,0,1,f +16196,2431,85,3,f +16196,2436,1,1,f +16196,2445,0,1,f +16196,2447,36,1,f +16196,2447,36,1,t +16196,2476a,71,2,f +16196,2540,0,2,f +16196,2555,72,2,f +16196,2780,0,8,f +16196,2780,0,1,t +16196,3001,14,1,f +16196,30031,72,2,f +16196,3007,0,1,f +16196,3008,0,4,f +16196,3010,0,1,f +16196,3021,0,2,f +16196,3021,70,1,f +16196,3023,71,5,f +16196,30350b,72,1,f +16196,3036,72,1,f +16196,30360,0,2,f +16196,30388,14,1,f +16196,30389c,0,1,f +16196,3039,71,1,f +16196,3039,70,1,f +16196,30395,72,1,f +16196,30396,14,1,f +16196,3040b,70,2,f +16196,30414,72,1,f +16196,30554b,0,2,f +16196,3069bpr0100,2,2,f +16196,32018,0,2,f +16196,32474,0,2,f +16196,32532,0,1,f +16196,3298,0,2,f +16196,3626bpr0563,14,1,f +16196,3660,70,3,f +16196,3665,70,2,f +16196,3710,72,1,f +16196,3737,0,2,f +16196,3747b,72,2,f +16196,3829c01,14,1,f +16196,3838,0,1,f +16196,3941,71,1,f +16196,3942c,85,2,f +16196,3959,71,2,f +16196,3963,71,1,f +16196,4006,0,1,f +16196,4032a,1,1,f +16196,4032a,14,6,f +16196,4085c,71,4,f +16196,4286,70,1,f +16196,4286,85,4,f +16196,4287,70,1,f +16196,44676,0,2,f +16196,45677,0,1,f +16196,48336,1,1,f +16196,4864b,71,2,f +16196,4864b,40,1,f +16196,50943,72,2,f +16196,50949,0,2,f +16196,52031,85,1,f +16196,53451,14,2,f +16196,53451,14,1,t +16196,54200,72,2,f +16196,54200,85,6,f +16196,54200,47,1,t +16196,54200,47,2,f +16196,54200,85,1,t +16196,54200,46,2,f +16196,54200,72,1,t +16196,54200,46,1,t +16196,55981,71,2,f +16196,58176,182,2,f +16196,59426,72,2,f +16196,59443,71,2,f +16196,5982stk01,9999,1,t +16196,59900,0,2,f +16196,59900,52,2,f +16196,59900,71,2,f +16196,61069,85,2,f +16196,61072,135,2,f +16196,61184,71,2,f +16196,61409,72,6,f +16196,61409,0,2,f +16196,6141,42,3,f +16196,6141,36,1,t +16196,6141,42,1,t +16196,6141,36,1,f +16196,6141,182,4,f +16196,6141,34,1,t +16196,6141,182,1,t +16196,6141,34,1,f +16196,6238,46,1,f +16196,63864,71,4,f +16196,64727,71,2,f +16196,6541,14,10,f +16196,6583,0,1,f +16196,85947pr0002,71,1,f +16196,87079,1,1,f +16196,87781,72,1,f +16196,970c00pr0127,72,1,f +16196,970c00pr0131,0,1,f +16196,973pr1490c01,72,1,f +16196,973pr1575c01,0,1,f +16197,2421,0,1,f +16197,2450,4,2,f +16197,3002,7,1,f +16197,30132,8,1,f +16197,30165,8,1,f +16197,30167,6,1,f +16197,3020,4,1,f +16197,3022,8,1,f +16197,3034,4,1,f +16197,3039,8,1,f +16197,3626bpa3,14,1,f +16197,3641,0,2,f +16197,3795,7,1,f +16197,3829c01,7,1,f +16197,4133393,9999,1,t +16197,4488,7,1,f +16197,4600,0,1,f +16197,4624,7,2,f +16197,970c00,0,1,f +16197,973pb0391c01,19,1,f +16199,2357,19,12,f +16199,2412b,71,8,f +16199,2420,1,2,f +16199,2420,71,10,f +16199,2432,72,1,f +16199,2437,40,1,f +16199,2439,72,1,f +16199,2445,72,3,f +16199,2456,19,11,f +16199,2465,19,1,f +16199,2555,72,2,f +16199,2780,0,2,f +16199,2780,0,1,t +16199,3001,19,19,f +16199,3002,19,8,f +16199,3003,19,9,f +16199,3004,19,56,f +16199,3004,72,10,f +16199,3004,0,2,f +16199,3005,19,18,f +16199,3005,1,2,f +16199,3007,19,3,f +16199,3008,19,25,f +16199,3008,72,6,f +16199,3009,19,11,f +16199,3009,15,4,f +16199,3010,19,29,f +16199,3010,72,22,f +16199,3020,15,7,f +16199,3020,1,2,f +16199,3020,72,3,f +16199,3021,71,2,f +16199,3023,1,8,f +16199,3023,72,10,f +16199,3023,19,21,f +16199,3024,1,4,f +16199,3030,0,3,f +16199,3031,71,5,f +16199,3033,4,1,f +16199,3034,72,3,f +16199,3037,0,16,f +16199,30374,0,2,f +16199,3038,0,10,f +16199,3039,0,17,f +16199,3040b,0,4,f +16199,3040b,72,4,f +16199,3045,0,24,f +16199,3046a,0,12,f +16199,3062b,71,28,f +16199,3062b,46,2,f +16199,3062b,15,10,f +16199,3068b,4,2,f +16199,3069b,71,61,f +16199,3069b,4,2,f +16199,3070b,36,1,t +16199,3070b,0,12,f +16199,3070b,0,1,t +16199,3070b,15,18,f +16199,3070b,36,2,f +16199,3070b,15,1,t +16199,3070b,71,16,f +16199,3070b,71,1,t +16199,3185,0,7,f +16199,32000,4,4,f +16199,32028,71,18,f +16199,3297,0,23,f +16199,3298,0,7,f +16199,3455,19,1,f +16199,3455,15,1,f +16199,3460,72,8,f +16199,3622,19,48,f +16199,3623,72,8,f +16199,3623,1,4,f +16199,3633,72,4,f +16199,3665,19,18,f +16199,3666,19,6,f +16199,3666,1,4,f +16199,3675,0,2,f +16199,3700,71,2,f +16199,3710,71,10,f +16199,3710,15,5,f +16199,3794a,320,56,f +16199,3795,15,5,f +16199,3795,0,3,f +16199,3795,1,2,f +16199,3832,71,2,f +16199,3854,15,16,f +16199,3857,72,3,f +16199,3861b,4,1,f +16199,3861b,15,1,f +16199,3941,72,1,f +16199,4032a,71,8,f +16199,4070,15,8,f +16199,4070,71,113,f +16199,4162,71,19,f +16199,4274,1,4,f +16199,4274,1,1,t +16199,4282,71,4,f +16199,43337,71,5,f +16199,4445,0,24,f +16199,44728,72,4,f +16199,4477,71,5,f +16199,4488,71,4,f +16199,4510,71,13,f +16199,45677,1,1,f +16199,4589,2,6,f +16199,4589,72,6,f +16199,4740,72,1,f +16199,50745,72,4,f +16199,50950,72,4,f +16199,54200,72,1,t +16199,54200,1,1,t +16199,54200,1,6,f +16199,54200,182,2,f +16199,54200,46,2,f +16199,54200,72,8,f +16199,54200,46,1,t +16199,54200,182,1,t +16199,6014b,15,4,f +16199,6015,0,4,f +16199,6111,19,26,f +16199,6141,34,8,f +16199,6141,0,1,t +16199,6141,14,1,t +16199,6141,14,4,f +16199,6141,71,2,f +16199,6141,34,1,t +16199,6141,0,2,f +16199,6141,71,1,t +16199,6231,71,4,f +16199,6556,15,8,f +16199,6636,4,2,f +16201,3297,4,27,f +16201,3298,4,8,f +16201,3299,4,6,f +16201,3300,4,2,f +16203,2780,0,6,f +16203,2825,0,2,f +16203,2994,7,2,f +16203,32009,25,1,f +16203,32013,8,2,f +16203,32015,0,2,f +16203,32015,7,6,f +16203,32039,0,2,f +16203,32054,4,4,f +16203,32062,0,5,f +16203,32073,0,3,f +16203,32140,8,2,f +16203,32140,25,1,f +16203,32165,25,1,f +16203,32278,25,1,f +16203,32278,8,2,f +16203,32291,0,5,f +16203,32310,148,1,f +16203,32316,0,2,f +16203,32316,25,2,f +16203,32527,25,1,f +16203,32527,148,1,f +16203,32528,25,1,f +16203,32528,148,1,f +16203,32534,148,1,f +16203,32535,148,1,f +16203,32556,7,1,f +16203,32557,0,2,f +16203,32558,4,2,f +16203,3706,0,1,f +16203,3707,0,1,f +16203,3713,7,2,f +16203,3749,7,10,f +16203,4519,0,2,f +16203,6553,0,1,f +16203,6558,0,20,f +16203,6578,0,2,f +16203,6587,8,2,f +16203,6594,0,2,f +16203,6595,7,2,f +16203,78c02,179,6,f +16203,78c17,179,2,f +16203,motor6a,8,1,f +16203,x209,0,1,f +16204,2340,0,2,f +16204,2412b,72,8,f +16204,2431,14,1,f +16204,2431,4,2,f +16204,2446,4,2,f +16204,2447,40,1,t +16204,2447,40,2,f +16204,2569,14,2,f +16204,2610,14,2,f +16204,2780,0,1,t +16204,2780,0,4,f +16204,3001,14,6,f +16204,3004,4,1,f +16204,3006,4,2,f +16204,3007,14,2,f +16204,3008,0,2,f +16204,3023,15,1,f +16204,3032,72,2,f +16204,30358,71,2,f +16204,30640,72,2,f +16204,30647,14,2,f +16204,3069b,0,2,f +16204,3069bpr0101,71,2,f +16204,3298,4,4,f +16204,3298,72,2,f +16204,33299a,0,1,f +16204,3460,14,1,f +16204,3622,0,2,f +16204,3626bpr0387,14,1,f +16204,3626bpr0389,14,1,f +16204,3701,4,2,f +16204,41862,71,1,f +16204,42022,4,2,f +16204,4282,0,1,f +16204,4286,4,2,f +16204,43121,71,2,f +16204,44126,4,4,f +16204,4445,0,1,f +16204,44675,71,2,f +16204,44822,0,4,f +16204,4589,0,2,f +16204,46413,40,2,f +16204,46413,4,2,f +16204,47397,4,1,f +16204,47398,4,1,f +16204,48064c01,14,1,f +16204,48336,0,1,f +16204,48729a,72,2,f +16204,50821c01,4,2,f +16204,52040,72,1,f +16204,52668,0,1,f +16204,54200,46,2,f +16204,6112,15,1,f +16204,970c00,2,2,f +16204,973pb0196c01,2,2,f +16206,3001,14,1,f +16206,3001,15,1,f +16206,3002,15,1,f +16206,3003,15,1,f +16206,3004,14,6,f +16206,3004,15,3,f +16206,3004,1,4,f +16206,3004,0,2,f +16206,3005px2,14,2,f +16206,3009,14,1,f +16206,3010,14,5,f +16206,3010,1,1,f +16206,3020,4,2,f +16206,3021,4,2,f +16206,3022,4,2,f +16206,3028,2,1,f +16206,3035,4,1,f +16206,3039,47,1,f +16206,3039,14,1,f +16206,3040b,14,2,f +16206,3622,14,2,f +16206,3622,15,2,f +16206,3660,14,2,f +16206,3665,14,2,f +16206,4727,2,1,f +16206,4728,1,1,f +16206,6182,1,2,f +16206,82249,15,1,f +16212,3003,15,1,f +16212,3021,15,1,f +16212,3023,15,1,f +16212,3024,15,1,f +16212,3039,15,1,f +16212,3062b,15,2,f +16212,3070b,15,2,f +16212,3700,15,1,f +16212,3794a,15,1,f +16212,3794a,2,1,f +16212,6141,0,1,f +16213,2420,4,6,f +16213,2431,0,2,f +16213,2431,4,6,f +16213,2436,0,5,f +16213,2555,72,6,f +16213,2780,0,5,f +16213,2780,0,1,t +16213,3002,4,1,f +16213,3004,4,4,f +16213,3004,72,4,f +16213,3005,72,2,f +16213,3005,4,6,f +16213,3009,72,1,f +16213,3009,4,5,f +16213,3010,19,3,f +16213,3010,0,2,f +16213,3020,19,4,f +16213,3020,72,3,f +16213,3020,4,10,f +16213,3021,4,6,f +16213,3022,72,4,f +16213,3022,19,2,f +16213,3022,4,9,f +16213,3023,320,26,f +16213,3023,19,3,f +16213,3024,320,8,f +16213,3031,72,2,f +16213,3032,72,1,f +16213,3034,72,1,f +16213,30365,0,2,f +16213,3039,4,2,f +16213,3040b,4,4,f +16213,3040b,19,2,f +16213,3044b,4,1,f +16213,3049b,4,1,f +16213,30503,4,2,f +16213,3068b,14,1,f +16213,3068b,0,4,f +16213,3069b,0,1,f +16213,32000,4,2,f +16213,32028,72,1,f +16213,32059,4,1,f +16213,32140,0,1,f +16213,32348,4,4,f +16213,3460,4,5,f +16213,3460,19,1,f +16213,3622,4,2,f +16213,3623,4,10,f +16213,3660,19,2,f +16213,3660,4,1,f +16213,3665,4,2,f +16213,3665,72,2,f +16213,3666,320,10,f +16213,3666,72,2,f +16213,3673,71,1,t +16213,3673,71,1,f +16213,3700,0,1,f +16213,3701,4,2,f +16213,3702,4,4,f +16213,3705,0,4,f +16213,3710,72,2,f +16213,3710,320,19,f +16213,3713,71,6,f +16213,3713,71,1,t +16213,3747b,19,2,f +16213,3794b,25,7,f +16213,3795,0,1,f +16213,3795,4,2,f +16213,3832,19,2,f +16213,3832,4,1,f +16213,3942c,4,1,f +16213,40378,14,2,f +16213,40379,14,6,f +16213,4070,70,6,f +16213,4081b,14,4,f +16213,4162,320,9,f +16213,41669,42,2,f +16213,41747,4,1,f +16213,41748,4,1,f +16213,41769,4,1,f +16213,41770,4,1,f +16213,4274,1,1,t +16213,4274,1,1,f +16213,43093,1,6,f +16213,43710,320,3,f +16213,43711,320,3,f +16213,43857,4,2,f +16213,44301a,4,6,f +16213,44302a,71,4,f +16213,44728,4,2,f +16213,4589,14,1,f +16213,4589,182,2,f +16213,47455,0,9,f +16213,48169,72,5,f +16213,48170,4,6,f +16213,48171,72,3,f +16213,48172,0,2,f +16213,48336,4,5,f +16213,4871,72,2,f +16213,49668,15,22,f +16213,50950,320,10,f +16213,51739,72,2,f +16213,53451,15,1,t +16213,53451,14,1,t +16213,53451,15,6,f +16213,53451,14,4,f +16213,54200,4,6,f +16213,54200,4,1,t +16213,54200,320,8,f +16213,54200,320,1,t +16213,54200,14,7,f +16213,54200,14,1,t +16213,54869,36,1,f +16213,57909a,72,3,f +16213,6019,4,2,f +16213,6019,71,6,f +16213,60470a,0,3,f +16213,60478,72,4,f +16213,60479,4,4,f +16213,6111,4,2,f +16213,6126a,57,1,f +16213,6141,4,1,t +16213,6141,25,1,t +16213,6141,42,2,f +16213,6141,25,2,f +16213,6141,42,1,t +16213,6141,4,4,f +16213,6541,0,8,f +16213,6558,1,2,f +16213,6564,4,3,f +16213,6565,4,3,f +16213,6587,72,2,f +16213,6628,0,4,f +16213,92013,72,3,f +16213,sailbb38,320,2,f +16214,2337,40,1,f +16214,2357,6,2,f +16214,2362b,8,4,f +16214,2412b,6,7,f +16214,2419,7,1,f +16214,2445,7,1,f +16214,2454ps5,0,1,f +16214,2458,7,4,f +16214,2516,0,2,f +16214,2555,1,2,f +16214,2620,40,1,f +16214,2780,0,2,f +16214,2817,4,1,f +16214,3001,14,2,f +16214,3002,4,2,f +16214,3002,0,2,f +16214,3003,1,2,f +16214,3004,0,4,f +16214,3008,7,6,f +16214,30180,6,2,f +16214,3020,8,7,f +16214,3020,2,2,f +16214,3021,1,1,f +16214,3023,0,3,f +16214,3035,7,2,f +16214,30355,7,1,f +16214,30356,7,1,f +16214,30363,2,2,f +16214,3037,7,4,f +16214,3037,6,2,f +16214,30374,7,2,f +16214,3039,2,16,f +16214,3039,7,1,f +16214,3040b,2,8,f +16214,3045,7,2,f +16214,3069bpr0086,7,5,f +16214,32013,7,2,f +16214,32016,7,4,f +16214,32062,0,4,f +16214,3298,6,4,f +16214,3626b,0,1,f +16214,3666,0,3,f +16214,3684,2,4,f +16214,3702,15,2,f +16214,3707,0,1,f +16214,3710,2,3,f +16214,3795,0,1,f +16214,3832,2,1,f +16214,3894,1,2,f +16214,3958,7,2,f +16214,4070,57,2,f +16214,4286,6,2,f +16214,4287,8,4,f +16214,4315,7,1,f +16214,4349,0,1,f +16214,4740,57,5,f +16214,6003,19,2,f +16214,6106,0,2,f +16214,6111,15,2,f +16214,970x025,7,1,f +16214,973pb0282c01,7,1,f +16214,x50px1,2,1,f +16215,2412b,72,1,f +16215,2488,0,1,f +16215,2540,72,1,f +16215,2555,0,1,f +16215,30031,0,1,f +16215,30104,72,1,f +16215,30171,0,1,f +16215,3023,320,1,f +16215,3069b,19,1,f +16215,3626bpr0440,14,1,f +16215,3794a,19,2,f +16215,3794a,72,2,f +16215,3795,0,1,f +16215,3937,0,1,f +16215,3941,0,1,f +16215,44674,320,2,f +16215,44675,19,1,f +16215,4589,72,2,f +16215,4599a,0,1,f +16215,4740,33,1,f +16215,48729a,0,1,f +16215,54125pb02,0,1,f +16215,6014b,71,4,f +16215,6015,0,4,f +16215,6134,71,1,f +16215,6157,72,2,f +16215,970c00,0,1,f +16215,973pb0180c01,72,1,f +16218,32062,0,1,f +16218,32174,72,1,f +16218,32476,0,2,f +16218,32506,0,2,f +16218,32551,135,1,f +16218,43093,1,2,f +16218,4519,71,1,f +16218,47296,72,3,f +16218,47313,57,1,f +16218,47330,0,1,f +16218,55095pr0001,15,1,f +16221,10197,0,2,f +16221,11055,15,1,f +16221,11214,72,9,f +16221,11946,15,1,f +16221,11947,15,1,f +16221,15458,0,1,f +16221,15462,70,10,f +16221,16511,71,1,f +16221,24119,0,2,f +16221,2780,0,1,t +16221,2780,0,39,f +16221,3069b,4,1,f +16221,3069b,1,1,f +16221,32013,0,5,f +16221,32016,0,4,f +16221,32039,71,2,f +16221,32054,0,11,f +16221,32054,4,9,f +16221,32056,71,4,f +16221,32062,4,4,f +16221,32073,14,1,f +16221,32123b,71,12,f +16221,32123b,71,1,t +16221,32138,71,2,f +16221,32278,71,4,f +16221,32291,72,2,f +16221,32316,15,2,f +16221,32316,0,3,f +16221,32523,27,2,f +16221,32523,72,5,f +16221,32523pr0001,15,1,f +16221,32524,15,2,f +16221,32526,27,6,f +16221,32526,0,9,f +16221,3713,4,1,t +16221,3713,4,14,f +16221,3749,19,4,f +16221,40490,72,4,f +16221,41239,27,2,f +16221,41669,47,2,f +16221,41678,4,4,f +16221,4185,15,12,f +16221,42003,0,4,f +16221,43093,1,18,f +16221,4519,71,5,f +16221,57519,15,4,f +16221,58120,71,2,f +16221,58122,71,1,f +16221,58123a,71,1,f +16221,59426,72,4,f +16221,59443,0,4,f +16221,60483,72,3,f +16221,60484,0,3,f +16221,60485,71,1,f +16221,63869,71,3,f +16221,64391,15,1,f +16221,64391,27,1,f +16221,64683,27,1,f +16221,64683,15,1,f +16221,6536,71,6,f +16221,6558,1,26,f +16221,75c04,0,2,f +16221,75c04,0,1,t +16221,75c13,0,1,f +16221,87082,71,2,f +16221,88323,0,74,f +16222,10113,0,1,f +16222,15427pr0001,0,1,f +16222,15442,15,1,f +16222,15443,70,1,f +16222,15557pr0001,484,1,f +16222,15851pat01,0,1,f +16222,16691pr0001,15,1,f +16222,2445,71,1,f +16222,2456,71,4,f +16222,3001,71,2,f +16222,3002,71,2,f +16222,3007,14,2,f +16222,3007,71,1,f +16222,3008,14,1,f +16222,3010,71,3,f +16222,3022,0,3,f +16222,3028,71,1,f +16222,3029,71,1,f +16222,3037,71,9,f +16222,3068b,0,6,f +16222,3069b,0,6,f +16222,3626bpr0902,78,1,f +16222,3626cpr0893,14,1,f +16222,3626cpr0896,78,1,f +16222,3626cpr0933,14,1,f +16222,3626cpr1325,14,1,f +16222,3626cpr1326,14,1,f +16222,3626cpr1328,14,1,f +16222,3626cpr1341,14,1,f +16222,3626cpr1342,84,1,f +16222,3794b,0,12,f +16222,3844,80,1,f +16222,4079b,4,9,f +16222,60479,71,1,f +16222,87990,70,1,f +16222,88393,4,2,f +16222,970c00,15,1,f +16222,970c00,72,1,f +16222,970c00,0,2,f +16222,970c00pr0296,4,1,f +16222,970c00pr0605,25,1,f +16222,970c00pr0628,0,1,f +16222,970c01pr0610,15,1,f +16222,970x026,72,1,f +16222,973pr0100c01,72,1,f +16222,973pr1958c01b,4,1,f +16222,973pr1961c01,0,1,f +16222,973pr2538c01,25,1,f +16222,973pr2543c01,321,1,f +16222,973pr2544c01,0,1,f +16222,973pr2555c01,72,1,f +16222,973pr2556c01,15,1,f +16222,973pr2590c01,0,1,f +16222,98725pr0001,0,1,f +16223,3001,14,1,f +16223,3001,0,1,f +16223,3002,14,1,f +16223,3003,0,3,f +16223,3003,14,3,f +16223,3003pe1,14,1,f +16223,3004,14,3,f +16223,3004,0,4,f +16223,3039,47,1,f +16223,3461,14,1,f +16223,3462,4,1,f +16225,2436,15,2,f +16225,2496,0,2,f +16225,2655,7,2,f +16225,30148,0,1,f +16225,3020,15,1,f +16225,3020,4,1,f +16225,3039,4,1,f +16225,3626bpb0038,15,1,f +16225,3626bpr0126,14,1,f +16225,3626bpx32,14,1,f +16225,4083,0,1,f +16225,41875,6,1,f +16225,4485,1,1,f +16225,4485,0,1,f +16225,4865a,41,1,f +16225,6141,36,2,f +16225,6141,42,2,f +16225,6141,42,1,t +16225,6141,36,1,t +16225,970c00,1,1,f +16225,970c00,6,1,f +16225,970c00,0,1,f +16225,973pb0050c01,14,1,f +16225,973px64c01,15,1,f +16225,973px65c01,15,1,f +16228,3004,14,1,f +16228,3020,1,1,f +16228,3020,4,1,f +16228,3021,4,1,f +16228,3022,14,1,f +16228,3022,4,1,f +16228,3039,47,1,f +16228,3710,1,2,f +16228,4871,14,1,f +16229,2878c01,0,4,f +16229,2920,0,2,f +16229,3795,0,2,f +16229,4022,0,2,f +16229,4025,0,2,f +16229,4093a,0,1,f +16229,73092,0,2,f +16230,2528pr0004,0,1,f +16230,2530,297,1,f +16230,3626bpr1018,14,1,f +16230,64647,15,1,f +16230,88646,0,1,f +16230,970d09,0,1,f +16230,973pb1245c01,4,1,f +16231,31022,15,3,f +16231,31023,15,3,f +16231,31041,5,1,f +16231,31042,135,1,f +16231,31066,1,1,f +16231,3437,191,2,f +16231,4066,191,3,f +16231,44524,4,1,f +16231,47510pr0003c01,29,1,f +16231,4886,5,2,f +16231,4890,5,1,f +16231,4891,25,1,f +16231,4892,15,1,f +16231,4893,15,1,f +16231,4911,15,1,f +16231,4912,5,1,f +16231,51260,191,2,f +16231,51261,191,1,f +16231,51262,226,2,f +16231,51383,191,2,f +16231,51385,4,2,f +16231,53916,191,1,f +16231,60773,484,1,f +16231,61257,14,2,f +16231,6472,4,1,f +16231,6473,4,1,f +16231,6478,212,4,f +16231,6490,226,3,f +16231,6496,1,1,f +16231,6497,15,2,f +16231,6510,4,1,f +16231,6510,25,1,f +16231,6510,2,3,f +16231,6511,191,1,f +16231,75113pr0008,212,1,f +16231,75115pr0009,378,1,f +16231,75737,4,1,f +16231,76338,27,2,f +16231,85610,15,1,f +16231,85951,15,4,f +16231,85960,15,1,f +16231,85964,27,1,f +16231,86106,73,1,f +16231,92937,5,1,f +16231,98457,15,2,f +16233,2736,7,1,f +16233,2780,0,74,f +16233,2780,0,1,t +16233,2825,0,12,f +16233,32009,6,16,f +16233,32013,135,7,f +16233,32013,0,4,f +16233,32016,0,2,f +16233,32034,0,16,f +16233,32034,135,1,f +16233,32039,0,1,f +16233,32054,0,30,f +16233,32056,0,4,f +16233,32062,0,31,f +16233,32073,7,18,f +16233,32123b,7,1,t +16233,32123b,7,2,f +16233,32140,135,1,f +16233,32184,6,24,f +16233,32184,0,4,f +16233,32184,135,2,f +16233,32192,0,2,f +16233,32201,179,4,f +16233,32202,179,2,f +16233,32270,0,8,f +16233,32278,0,1,f +16233,32278,6,2,f +16233,32291,0,2,f +16233,32291,135,4,f +16233,32316,0,4,f +16233,32348,0,1,f +16233,32449,135,2,f +16233,32523,6,2,f +16233,32524,135,4,f +16233,32524,6,8,f +16233,32525,6,8,f +16233,32526,6,4,f +16233,32526,135,4,f +16233,32526,0,2,f +16233,32527,6,3,f +16233,32528,6,3,f +16233,32534,6,1,f +16233,32535,6,1,f +16233,3647,7,1,t +16233,3647,7,4,f +16233,3673,7,4,f +16233,3673,7,1,t +16233,3705,0,31,f +16233,3706,0,4,f +16233,3713,7,24,f +16233,3713,0,12,f +16233,3713,0,1,t +16233,3713,7,1,t +16233,3737,0,2,f +16233,3749,19,20,f +16233,4019,7,4,f +16233,40490,135,2,f +16233,40490,0,2,f +16233,41660,179,4,f +16233,41669,36,4,f +16233,41677,0,16,f +16233,41677,135,2,f +16233,41752,8,1,t +16233,42003,135,11,f +16233,42003,0,6,f +16233,4274,7,8,f +16233,4274,7,1,t +16233,43093,1,4,f +16233,43857,6,2,f +16233,44033,179,2,f +16233,44556,8,2,f +16233,4519,7,43,f +16233,45274,179,4,f +16233,6536,135,8,f +16233,6536,0,9,f +16233,6538b,0,2,f +16233,6538b,7,30,f +16233,6538b,135,1,f +16233,6558,0,31,f +16233,6587,8,32,f +16233,6628,0,4,f +16233,6629,6,3,f +16233,6632,135,4,f +16233,6632,0,10,f +16233,71509,0,1,t +16233,71509,0,3,f +16233,78c04,179,4,f +16236,2431,14,1,f +16236,2780,0,7,f +16236,2817,4,1,f +16236,3139,0,2,f +16236,32009,1,2,f +16236,32013,7,1,f +16236,32014,4,6,f +16236,32015,7,2,f +16236,32016,0,2,f +16236,32034,14,2,f +16236,32034,1,2,f +16236,32039,7,2,f +16236,32062,0,12,f +16236,32072,15,1,f +16236,32073,7,2,f +16236,32123b,7,5,f +16236,32138,0,1,f +16236,32140,8,1,f +16236,32209,15,4,f +16236,32269,0,1,f +16236,32271,14,4,f +16236,32474,4,1,f +16236,32524,7,1,f +16236,32526,7,1,f +16236,32579,7,1,f +16236,33299a,7,1,f +16236,3647,7,2,f +16236,3648b,7,1,f +16236,3649,7,1,f +16236,3673,7,1,f +16236,3700,7,2,f +16236,3705,0,3,f +16236,3706,4,4,f +16236,3706,0,2,f +16236,3707,0,2,f +16236,3708,4,2,f +16236,3713,7,6,f +16236,3749,19,4,f +16236,3894,7,1,f +16236,41662,1,2,f +16236,41677,0,2,f +16236,42073c02,8,1,f +16236,4274,7,1,t +16236,4274,7,2,f +16236,43093,1,3,f +16236,44294,7,1,f +16236,44790,1,1,f +16236,44791,14,1,f +16236,44844,179,1,f +16236,44847,0,2,f +16236,44848,0,5,f +16236,44849,1,1,f +16236,44850,14,1,f +16236,44851,14,1,f +16236,44852,15,1,f +16236,4519,7,4,f +16236,4522,0,1,f +16236,45590,0,1,f +16236,6536,0,2,f +16236,6536,7,2,f +16236,6538b,4,4,f +16236,6538b,7,2,f +16236,6558,0,6,f +16236,6587,8,2,f +16236,6629,8,2,f +16236,75c11,4,2,f +16236,rb00183,7,1,f +16237,3648b,7,50,f +16238,4143,7,4,f +16238,73071,7,1,f +16242,3034,15,1,t +16242,3034,15,9,f +16242,3228a,1,16,f +16242,3228a,1,2,t +16243,10055pr0001,70,1,f +16243,11429pr0003,308,1,f +16243,13206pr0003,308,1,f +16243,13965,70,4,f +16243,14413,71,2,f +16243,15490pr0001,70,1,f +16243,15597pr0001,19,1,f +16243,2339,70,3,f +16243,2357,19,2,f +16243,2417,288,1,f +16243,2419,288,3,f +16243,2420,19,4,f +16243,2423,326,3,f +16243,2449,70,2,f +16243,2450,19,3,f +16243,2489,70,1,f +16243,2586pr0010,71,2,f +16243,2780,0,1,t +16243,2780,0,3,f +16243,2817,0,1,f +16243,3003,28,2,f +16243,3004,71,2,f +16243,3004,308,3,f +16243,3004,19,2,f +16243,3005,19,6,f +16243,30055,0,2,f +16243,3008,19,1,f +16243,3009,28,3,f +16243,3010,19,3,f +16243,30136,70,11,f +16243,30137,70,2,f +16243,30153,34,1,f +16243,3020,19,1,f +16243,3022,19,3,f +16243,3023,19,6,f +16243,3023,308,6,f +16243,3023,326,4,f +16243,3024,19,4,f +16243,3024,19,2,t +16243,30357,70,6,f +16243,30381,288,2,f +16243,3040b,308,6,f +16243,3045,71,1,f +16243,30565,288,5,f +16243,3062b,70,9,f +16243,3069b,19,5,f +16243,32000,19,4,f +16243,3245c,19,4,f +16243,32557,0,1,f +16243,3460,0,2,f +16243,3622,70,2,f +16243,3623,71,2,f +16243,3623,19,2,f +16243,3626cpr1003,78,3,f +16243,3626cpr1312,84,2,f +16243,3626cpr1316,78,1,f +16243,3660,70,3,f +16243,3673,71,1,t +16243,3673,71,3,f +16243,3700,70,4,f +16243,3710,70,3,f +16243,3832,70,1,f +16243,3941,70,5,f +16243,4032a,484,1,f +16243,4070,70,1,f +16243,4274,1,2,f +16243,4274,1,1,t +16243,4286,70,1,f +16243,4491b,72,1,f +16243,4497,148,1,f +16243,4498,70,2,f +16243,4865b,28,1,f +16243,4865b,19,3,f +16243,50231,320,1,f +16243,54200,326,1,t +16243,54200,326,3,f +16243,55236,288,1,f +16243,59900,70,1,f +16243,60481,71,3,f +16243,60481,308,7,f +16243,60752,179,1,f +16243,60897,71,2,f +16243,61184,71,1,f +16243,61252,19,2,f +16243,6141,70,2,t +16243,6141,34,1,t +16243,6141,34,1,f +16243,6141,71,3,f +16243,6141,71,1,t +16243,6141,70,9,f +16243,61485,0,1,f +16243,6231,19,10,f +16243,63864,28,4,f +16243,6541,19,2,f +16243,6587,28,1,f +16243,73983,19,4,f +16243,85863,71,1,f +16243,87079,70,1,f +16243,87081,70,1,f +16243,87994,70,1,f +16243,88288pat0001,297,1,t +16243,88288pat0001,297,1,f +16243,88292,71,3,f +16243,89523,19,1,f +16243,92220,148,2,f +16243,93231,70,3,f +16243,93273,70,1,f +16243,970c00pr0455,308,3,f +16243,970c00pr0577,84,2,f +16243,970c00pr0580,72,1,f +16243,973pr2505c01,308,2,f +16243,973pr2506c01,70,3,f +16243,973pr2511c01,326,1,f +16243,98370,179,1,f +16243,98560,308,1,f +16244,11098,179,1,f +16244,11106,179,1,f +16244,13361pr0002,72,1,f +16244,2423,326,1,f +16244,30374,70,1,f +16244,3626cpr1205,72,1,f +16244,4497,297,1,f +16244,92747,41,1,f +16244,970c00pr0450,72,1,f +16244,973pr2355c01,72,1,f +16244,98138,41,3,f +16245,3937,1,1,f +16245,4032b,4,1,f +16245,4498,70,1,f +16245,4499,70,1,f +16245,60474,15,1,f +16245,6134,71,1,f +16249,2357,15,4,f +16249,2357,7,8,f +16249,2431,0,3,f +16249,2432,0,6,f +16249,2458,15,2,f +16249,2496,0,2,f +16249,2655,7,2,f +16249,2926,7,2,f +16249,2927,0,4,f +16249,298c02,7,1,t +16249,298c02,7,2,f +16249,3001,8,1,f +16249,3003,7,4,f +16249,3003,15,14,f +16249,3004,378,3,f +16249,3004,8,2,f +16249,3004,7,4,f +16249,3004,19,8,f +16249,3005,8,3,f +16249,3005,19,2,f +16249,3008px5,15,2,f +16249,3010,7,2,f +16249,3010,19,1,f +16249,30103,0,1,f +16249,30137,6,3,f +16249,30145,19,4,f +16249,30157,7,1,f +16249,3020,0,1,f +16249,3022,378,2,f +16249,3023,0,3,f +16249,3023,378,2,f +16249,3031,8,1,f +16249,3032,0,1,f +16249,3034,19,1,f +16249,3035,8,1,f +16249,3036,8,3,f +16249,3040b,19,6,f +16249,3040b,7,2,f +16249,3044c,19,2,f +16249,3062b,6,1,f +16249,3062b,378,4,f +16249,3062b,47,6,f +16249,3068b,8,2,f +16249,3068bpb0014,378,2,f +16249,3069bpb006,7,1,f +16249,3069bph0,8,4,f +16249,3069bpx39,33,1,f +16249,32064a,7,1,f +16249,3228c,7,2,f +16249,3307,19,4,f +16249,3622,19,4,f +16249,3626bph1,14,1,f +16249,3626bpr0374,14,1,f +16249,3665,8,2,f +16249,3665,7,4,f +16249,3665,15,4,f +16249,3666,6,2,f +16249,3679,7,2,f +16249,3680,0,2,f +16249,3700,7,4,f +16249,3710,0,5,f +16249,3710,378,1,f +16249,3710,8,2,f +16249,3794a,378,7,f +16249,3795,8,1,f +16249,3795,19,1,f +16249,3795,6,3,f +16249,3830,7,1,f +16249,3831,7,1,f +16249,3942c,378,1,f +16249,3943b,378,1,f +16249,40232,0,1,f +16249,40232,15,1,f +16249,40233,0,1,f +16249,40234,15,1,f +16249,40238,0,1,f +16249,40250pr01,6,1,f +16249,4162,0,2,f +16249,41879a,6,1,f +16249,41879a,0,1,f +16249,4201,8,2,f +16249,4204,8,1,f +16249,42109,19,2,f +16249,4213,0,1,f +16249,4286,19,4,f +16249,4345b,0,2,f +16249,4346px7,378,2,f +16249,4589,0,8,f +16249,4625,0,1,f +16249,4865a,6,6,f +16249,57503,334,3,f +16249,57504,334,3,f +16249,57505,334,3,f +16249,57506,334,3,f +16249,6083,8,1,f +16249,6108,19,2,f +16249,6126a,57,2,f +16249,6141,15,1,t +16249,6141,15,6,f +16249,6231,6,2,f +16249,62808,60,2,f +16249,970c00,19,1,f +16249,973pb0118c01,0,1,f +16249,973pb0119c01,4,1,f +16249,973px152c01,1,1,f +16250,2439,8,4,f +16250,4740,8,4,f +16251,11097,41,1,f +16251,11100,71,2,f +16251,12825,71,2,f +16251,16659pr0001,31,1,f +16251,3626cpr1435,31,1,f +16251,60752,179,1,f +16251,970c00pr0674,72,1,f +16251,973pr2687c01,72,1,f +16251,98138,41,1,f +16255,2780,0,1,f +16255,2780,0,1,t +16255,3001,0,1,f +16255,3010,72,1,f +16255,3021,15,1,f +16255,3021,0,1,f +16255,3022,25,2,f +16255,3023,0,2,f +16255,3023,15,1,f +16255,3024,25,1,f +16255,3031,0,1,f +16255,3032,0,1,f +16255,3034,15,1,f +16255,3068b,0,1,f +16255,32018,0,2,f +16255,3460,72,1,f +16255,3460,0,2,f +16255,3666,72,2,f +16255,3700,14,1,f +16255,3707,0,2,f +16255,3710,25,1,f +16255,3713,71,4,f +16255,3713,71,1,t +16255,3794b,25,3,f +16255,4081b,72,1,f +16255,41749,0,1,f +16255,41750,0,1,f +16255,43710,0,1,f +16255,43711,0,1,f +16255,43722,72,1,f +16255,43722,0,1,f +16255,43723,0,1,f +16255,43723,72,1,f +16255,44301a,0,2,f +16255,4868b,25,2,f +16255,49668,15,4,f +16255,50950,25,2,f +16255,53451,15,2,f +16255,53451,15,1,t +16255,54200,25,2,f +16255,54200,25,1,t +16255,55982,0,4,f +16255,58090,0,4,f +16255,60471,0,2,f +16255,61678,25,1,f +16255,87941,72,1,f +16255,87943,4,1,f +16255,87944,72,1,f +16255,88496,72,1,f +16256,3299,4,25,f +16257,11089,15,5,f +16257,11090,0,2,f +16257,11097,41,1,f +16257,11098,297,1,f +16257,11098,41,1,f +16257,11127,41,1,f +16257,11153,15,1,f +16257,11272,148,2,f +16257,11458,72,1,f +16257,11476,71,2,f +16257,11477,0,1,f +16257,13349,72,1,f +16257,13361pr0005,0,1,f +16257,13547,484,4,f +16257,13548,308,2,f +16257,13971,71,3,f +16257,15068,0,2,f +16257,15083pr0001,15,1,f +16257,15083pr0003,72,1,f +16257,15090,179,1,f +16257,15091,41,1,f +16257,15367,0,4,f +16257,16768pat0001,4,1,f +16257,16770,41,6,f +16257,2420,28,6,f +16257,2450,0,2,f +16257,2450,15,1,f +16257,2450,484,8,f +16257,2540,72,3,f +16257,2654,72,4,f +16257,2780,0,2,t +16257,2780,0,3,f +16257,3001,4,3,f +16257,3003,28,1,f +16257,30031,72,1,f +16257,30136,484,2,f +16257,30153,41,7,f +16257,3020,15,1,f +16257,3020,484,1,f +16257,3020,0,7,f +16257,3022,484,5,f +16257,3023,41,6,f +16257,3023,484,3,f +16257,3023,73,4,f +16257,3024,182,2,f +16257,3024,182,1,t +16257,3034,71,1,f +16257,3040b,28,2,f +16257,30414,15,3,f +16257,30602,41,4,f +16257,32000,71,3,f +16257,32039,71,4,f +16257,32062,0,7,f +16257,32064b,0,1,f +16257,32123b,71,8,f +16257,32123b,71,3,t +16257,32184,0,1,f +16257,32192,72,1,f +16257,32269,0,2,f +16257,32270,0,1,f +16257,32348,41,4,f +16257,32525,72,2,f +16257,3626cpr1206,0,1,f +16257,3626cpr1418,15,1,f +16257,3626cpr1422,72,1,f +16257,3660,308,1,f +16257,3666,28,11,f +16257,3673,71,1,t +16257,3673,71,2,f +16257,3701,15,2,f +16257,3703,0,2,f +16257,3707,0,1,f +16257,3710,73,6,f +16257,3713,71,2,f +16257,3713,71,1,t +16257,3794b,484,1,f +16257,3794b,28,2,f +16257,3795,72,4,f +16257,3795,308,1,f +16257,3937,0,2,f +16257,3938,0,1,f +16257,3961,28,2,f +16257,4032a,308,8,f +16257,41747,28,1,f +16257,41748,28,1,f +16257,42022,72,2,f +16257,42022,41,6,f +16257,4274,1,2,t +16257,4274,1,5,f +16257,43093,1,8,f +16257,43722,484,3,f +16257,43723,484,3,f +16257,44728,0,8,f +16257,4519,71,7,f +16257,4733,72,2,f +16257,47455,0,4,f +16257,47456,484,4,f +16257,48169,41,4,f +16257,48170,72,4,f +16257,49668,15,2,f +16257,49668,179,2,f +16257,50923,72,4,f +16257,50950,308,2,f +16257,53451,179,3,t +16257,53451,179,8,f +16257,53451,15,1,t +16257,53451,15,4,f +16257,53585,0,2,f +16257,54200,308,1,t +16257,54200,182,1,t +16257,54200,308,4,f +16257,54200,182,2,f +16257,59443,72,2,f +16257,59900,0,1,f +16257,6003,2,1,f +16257,60475a,72,2,f +16257,60478,15,2,f +16257,60483,71,2,f +16257,60897,0,8,f +16257,6091,72,2,f +16257,61184,71,4,f +16257,61254,0,3,f +16257,6134,0,1,f +16257,61409,484,2,f +16257,6141,179,3,t +16257,6141,179,12,f +16257,6141,1,2,f +16257,6232,71,2,f +16257,63868,15,1,f +16257,64567,0,1,f +16257,64567,15,1,t +16257,64567,0,1,t +16257,64567,15,1,f +16257,6541,19,2,f +16257,6558,1,3,f +16257,6587,28,2,f +16257,75937,179,2,f +16257,86038,15,1,f +16257,87083,72,2,f +16257,87580,71,1,f +16257,87747,15,2,f +16257,87747,15,1,t +16257,92013,308,2,f +16257,92220,41,11,f +16257,92946,0,2,f +16257,93606,484,1,f +16257,970c00pr0662,72,1,f +16257,970c00pr0663,4,1,f +16257,970d19pr0659,15,1,f +16257,973pr2660c01,71,1,f +16257,973pr2664c01,272,1,f +16257,973pr2671c01,4,1,f +16257,98138,41,4,f +16257,98138,41,1,t +16257,98138pr0023,182,1,t +16257,98138pr0023,182,1,f +16257,98286,71,1,f +16257,98397,71,1,f +16257,98585,484,2,f +16257,99206,71,4,f +16257,99207,71,8,f +16257,99780,0,2,f +16257,99781,71,2,f +16258,3037,0,14,f +16258,3038,0,4,f +16258,3039,0,8,f +16258,3040b,0,4,f +16258,3041,0,4,f +16258,3043,0,3,f +16258,3044b,0,4,f +16258,3045,0,8,f +16258,3046a,0,8,f +16260,3001,4,50,f +16261,27bc01,4,1,f +16261,29bc01,4,1,f +16261,3081bc01,4,1,f +16261,3087bc01,4,1,f +16261,31bc01,4,1,f +16261,32bc01,4,1,f +16261,453bc01,4,1,f +16261,604c01,4,1,f +16261,645bc01,4,1,f +16261,646bc01,4,1,f +16263,272,15,1,f +16263,3001a,1,2,f +16263,3001a,15,3,f +16263,3003,14,2,f +16263,3004,15,1,f +16263,3004,4,1,f +16263,3004,14,2,f +16263,3005,14,8,f +16263,3005,15,1,f +16263,3008,4,2,f +16263,3009,4,7,f +16263,3010,15,5,f +16263,3010,14,6,f +16263,3010,4,5,f +16263,3021,1,1,f +16263,3021,4,1,f +16263,3022,4,2,f +16263,3022,1,1,f +16263,3022,15,3,f +16263,3031,14,2,f +16263,3031,4,1,f +16263,3032,14,1,f +16263,3032,15,1,f +16263,3037,4,1,f +16263,3039,1,2,f +16263,3039,15,2,f +16263,3040b,14,6,f +16263,3040b,15,1,f +16263,3062a,14,3,f +16263,3062a,4,3,f +16263,3063b,47,4,f +16263,3068b,15,2,f +16263,3068b,14,8,f +16263,3068b,4,2,f +16263,3069b,14,6,f +16263,3069b,15,6,f +16263,3069b,4,2,f +16263,3298,15,1,f +16263,3460,15,3,f +16263,3612,15,2,f +16263,3612,1,2,f +16263,3613,15,2,f +16263,3613,1,2,f +16263,3614b,14,4,f +16263,3622,4,1,f +16263,3623,15,3,f +16263,3659,14,6,f +16263,3659,4,2,f +16263,3660,15,2,f +16263,3665,15,1,f +16263,3665,14,4,f +16263,3666,15,6,f +16263,3710,14,2,f +16263,3710,15,2,f +16263,3710,4,1,f +16263,3741,2,6,f +16263,3742,15,18,f +16263,3742,15,2,t +16263,3754,4,12,f +16263,3755,4,8,f +16263,3761,6,2,f +16263,3762,47,2,f +16263,3794a,15,1,f +16263,3794a,14,2,f +16263,3795a,6,2,f +16263,3830,4,1,f +16263,3831,15,1,f +16263,3852a,6,1,f +16263,3857,15,1,f +16263,670,6,1,f +16263,671,4,1,f +16263,678,4,2,f +16263,679,6,2,f +16263,685,14,1,f +16263,685p01,14,1,f +16263,685px3,14,1,f +16263,69c01,15,1,f +16263,792c03,1,1,f +16263,792c03,15,1,f +16263,792c04,14,1,f +16263,x196,4,1,f +16263,x196,0,2,f +16263,x467c12,0,1,f +16264,2542,15,1,f +16264,64951,70,1,f +16265,2357,7,1,f +16265,2423,2,2,f +16265,2543,4,1,f +16265,2546p01,4,1,f +16265,2547,8,1,f +16265,2548,8,1,f +16265,2562,6,1,f +16265,3003,7,1,f +16265,3004,7,1,f +16265,3032,14,2,f +16265,3062b,14,1,f +16265,3626apb04,14,1,f +16265,3849,0,1,f +16265,4070,7,1,f +16265,4495a,15,1,f +16265,4529,0,1,f +16265,57503,334,1,f +16265,57504,334,1,f +16265,57505,334,1,f +16265,57506,334,1,f +16265,970c00,1,1,f +16265,973p31c01,14,1,f +16266,2780,0,40,f +16266,32009,0,2,f +16266,32013,14,2,f +16266,32013,0,4,f +16266,32015,14,4,f +16266,32016,14,2,f +16266,32034,14,1,f +16266,32034,0,2,f +16266,32039,0,2,f +16266,32054,14,8,f +16266,32056,0,4,f +16266,32062,0,11,f +16266,32065,0,2,f +16266,32068,0,4,f +16266,32069,0,2,f +16266,32073,0,1,f +16266,32123b,7,7,f +16266,32138,0,8,f +16266,32140,0,18,f +16266,32180,0,4,f +16266,32184,0,4,f +16266,32188,148,1,f +16266,32189,148,1,f +16266,32202,179,2,f +16266,32209,0,2,f +16266,32235,179,2,f +16266,32269,7,2,f +16266,32270,7,6,f +16266,32271,36,2,f +16266,32278,0,6,f +16266,32278,8,1,f +16266,32288c01,0,1,f +16266,32291,7,2,f +16266,32291,0,2,f +16266,32310,148,3,f +16266,32348,0,2,f +16266,32449,0,4,f +16266,32523,7,2,f +16266,32523,14,2,f +16266,32524,7,5,f +16266,32525,0,2,f +16266,32525,8,1,f +16266,32525,14,1,f +16266,32526,0,2,f +16266,32527,14,2,f +16266,32528,14,2,f +16266,32534,14,1,f +16266,32535,14,1,f +16266,32557,14,3,f +16266,32557,0,2,f +16266,3705,0,12,f +16266,3706,0,2,f +16266,3707,0,3,f +16266,3708,0,1,f +16266,3713,7,7,f +16266,3737,0,2,f +16266,3749,7,12,f +16266,4019,7,4,f +16266,41669,42,2,f +16266,41671,148,4,f +16266,41677,7,4,f +16266,41678,0,8,f +16266,41753,8,2,t +16266,4274,7,3,f +16266,43473,9999,1,t +16266,4519,0,10,f +16266,6536,0,6,f +16266,6538b,36,1,f +16266,6538b,14,2,f +16266,6538b,0,2,f +16266,6538b,7,2,f +16266,6553,0,2,f +16266,6558,0,39,f +16266,6587,8,6,f +16266,6594,0,4,f +16266,6595,7,4,f +16266,6628,0,4,f +16266,6629,0,2,f +16266,85545,15,1,f +16266,rb00170,0,2,t +16266,rb00170,0,2,f +16267,2421,0,1,f +16267,2496,0,1,f +16267,2655,71,1,f +16267,298c02,71,1,t +16267,298c02,71,1,f +16267,30132,72,1,f +16267,30132,72,1,t +16267,30162,72,2,f +16267,30170,72,1,t +16267,30170,72,1,f +16267,30171,70,1,f +16267,3023,320,3,f +16267,3626bpr0753a,14,1,f +16267,3710,320,3,f +16267,3794b,71,1,f +16267,3795,0,1,f +16267,41769,72,1,f +16267,41770,72,1,f +16267,44661,0,1,f +16267,4488,0,1,f +16267,47457,71,1,f +16267,48183,72,1,f +16267,4865a,40,1,f +16267,6141,72,2,f +16267,6141,72,1,t +16267,970c00,28,1,f +16267,973pr1732c01,308,1,f +16268,73090b,0,2,f +16269,2417,2,2,f +16269,2435,2,1,f +16269,2536,6,5,f +16269,2546p01,4,1,f +16269,2563,6,1,f +16269,2566,2,1,f +16269,3471,2,1,f +16269,3741,2,8,f +16269,3741,2,1,t +16269,3742,1,8,f +16269,3742,14,8,f +16269,3742,13,8,f +16269,3742,15,8,f +16269,3957a,15,2,f +16269,4032a,2,1,f +16269,4495a,1,1,f +16269,4495a,14,1,f +16269,6064,2,3,f +16269,6065,2,1,f +16269,6079,15,4,f +16269,6148,2,4,f +16269,6255,2,4,f +16270,2421,0,1,f +16270,2432,8,1,f +16270,2450,7,2,f +16270,3001,0,1,f +16270,3004,19,2,f +16270,30132,8,1,f +16270,30135,6,1,f +16270,30162,8,1,f +16270,30165,8,1,f +16270,3020,19,1,f +16270,3023,19,1,f +16270,3298,19,1,f +16270,3626bpx134,14,1,f +16270,4081b,7,2,f +16270,4488,7,1,f +16270,4854,8,1,f +16270,6091,0,2,f +16270,6141,47,2,f +16270,970c00,7,1,f +16270,973px190c01,6,1,f +16271,32062,0,1,f +16271,32062,0,1,t +16271,32174,72,6,f +16271,32533pb143,21,1,f +16271,32553,72,1,f +16271,32554,42,1,f +16271,32567pb01,320,1,f +16271,41668,320,2,f +16271,43093,1,1,t +16271,43093,1,6,f +16271,47295,320,1,f +16271,47300,72,4,f +16271,47304,179,1,f +16271,6553,0,1,f +16271,6558,0,1,t +16271,6558,0,1,f +16273,3004,15,1,f +16273,30133,4,1,f +16273,30133,4,2,t +16273,33172,25,1,f +16273,33172,25,1,t +16273,3626c,15,1,f +16273,3878,0,1,f +16273,973c09,15,1,f +16274,11618,31,1,f +16274,11618,31,2,t +16274,13336pr0001,27,1,f +16274,2412b,19,1,t +16274,2412b,19,2,f +16274,30137,70,2,f +16274,3020,14,1,f +16274,30218,15,1,f +16274,3023,70,2,f +16274,30239,2,1,f +16274,3031,19,1,f +16274,3032,322,1,f +16274,30350b,70,1,f +16274,30357,19,2,f +16274,3710,14,1,f +16274,3794b,2,2,f +16274,3795,19,1,f +16274,59900,70,4,f +16274,59900,70,1,t +16274,60478,14,2,f +16274,6141,45,2,t +16274,6141,45,3,f +16274,64644,297,4,f +16274,64644,297,1,t +16275,777p01,15,1,f +16275,777p03,15,1,f +16275,777p10,15,1,f +16275,777p11,15,1,f +16275,777p12,15,1,f +16275,777p14,15,1,f +16277,2335px14,7,2,f +16277,2412b,1,13,f +16277,2431,6,1,f +16277,2653,7,3,f +16277,2921,19,2,f +16277,30000,8,6,f +16277,3003,1,3,f +16277,3004,0,8,f +16277,3009,19,1,f +16277,3010,8,6,f +16277,3020,7,2,f +16277,3021,1,4,f +16277,3022,1,9,f +16277,3023,19,3,f +16277,3028,0,2,f +16277,30283,7,4,f +16277,3029,0,4,f +16277,3031,7,3,f +16277,3036,0,2,f +16277,30363,1,3,f +16277,30364,8,8,f +16277,30365,7,8,f +16277,30366ps1,40,1,f +16277,30373,8,2,f +16277,30374,8,2,f +16277,3039,7,9,f +16277,30408pr0001,0,1,f +16277,30503,0,8,f +16277,3062b,7,8,f +16277,3062b,41,3,f +16277,32028,14,2,f +16277,32074c01,0,1,f +16277,3455,8,2,f +16277,3626b,6,1,f +16277,3660,0,8,f +16277,3666,1,6,f +16277,3701,0,6,f +16277,3710,1,4,f +16277,3747a,7,4,f +16277,3795,8,5,f +16277,3832,7,4,f +16277,3960,7,2,f +16277,4085c,7,4,f +16277,4150ps5,7,2,f +16277,41753,8,1,t +16277,4213,0,2,f +16277,4215b,33,1,f +16277,4274,7,1,t +16277,4274,7,2,f +16277,4315,7,1,f +16277,4445,8,4,f +16277,4477,1,14,f +16277,4589,0,1,f +16277,4625,19,1,f +16277,4740,33,2,f +16277,4871,7,4,f +16277,6141,36,1,t +16277,6141,36,6,f +16277,6232,19,4,f +16277,6636,7,1,f +16277,76110c01,7,1,f +16277,970c00,0,1,f +16277,973pr1148c01,0,1,f +16277,rb00170,0,3,t +16277,rb00170,0,1,f +16278,2780,0,2,f +16278,32062,0,1,f +16278,32123b,7,4,f +16278,32165,0,1,f +16278,32167,14,2,f +16278,32168,14,2,f +16278,32170,0,1,f +16278,32171pb031,0,1,f +16278,32171pb044,19,1,f +16278,32172,0,2,f +16278,32173,14,2,f +16278,32174,0,4,f +16278,32174,14,1,f +16278,32175,0,2,f +16278,32176,14,1,f +16278,32177,0,2,f +16278,32194,0,1,f +16278,3647,0,2,f +16278,3713,7,1,f +16278,3749,7,4,f +16278,4519,0,1,f +16278,4617b,14,2,f +16278,6553,14,1,f +16278,6587,8,2,f +16278,x209pb08,14,1,f +16284,15527pr0002,14,1,f +16284,3069bpr0010,72,1,f +16284,88646,0,1,f +16284,970c00,73,1,f +16284,973pr2604c01,15,1,f +16284,98138pr0022,84,1,f +16286,3003,4,1,f +16286,3003,15,1,f +16286,3004,0,4,f +16286,3022,0,4,f +16286,3023,0,2,f +16286,3039,1,4,f +16286,3612,15,2,f +16286,3612,4,2,f +16286,3613,15,2,f +16286,3613,4,2,f +16286,3614a,14,4,f +16286,3660a,1,4,f +16286,685px3,14,1,f +16286,685px4,14,1,f +16286,792c03,15,1,f +16286,792c03,4,1,f +16286,bb15b,0,1,f +16286,bb15b,7,1,f +16286,rb00166,15,1,f +16287,2335pw1,15,1,f +16287,2343,47,1,f +16287,2357,0,2,f +16287,2357,7,4,f +16287,2397,0,1,f +16287,2400,0,4,f +16287,2445,0,1,f +16287,2453a,0,4,f +16287,2454a,0,7,f +16287,2470,0,2,f +16287,2488,0,1,f +16287,2527,6,1,f +16287,2530,8,1,t +16287,2530,8,3,f +16287,2540,0,4,f +16287,2546,4,4,f +16287,2555,0,8,f +16287,2926,0,1,f +16287,3001,7,1,f +16287,3002,7,2,f +16287,3004,7,24,f +16287,3004,15,1,f +16287,3004,6,1,f +16287,3004,0,5,f +16287,30041,0,2,f +16287,30042,0,2,f +16287,3005,7,8,f +16287,3005,6,10,f +16287,3005,0,4,f +16287,30055,7,2,f +16287,30055,0,6,f +16287,3007,7,2,f +16287,3008,1,1,f +16287,3008,0,1,f +16287,3009,1,2,f +16287,3010,7,2,f +16287,3010,0,1,f +16287,30132,8,1,t +16287,30132,8,5,f +16287,30133,0,2,f +16287,30133,15,3,f +16287,30134,0,1,f +16287,30135,1,3,f +16287,30136,6,148,f +16287,30137,6,93,f +16287,30139,6,2,f +16287,30140,6,23,f +16287,30141,8,10,f +16287,3020,0,10,f +16287,3020,7,1,f +16287,3021,4,1,f +16287,3021,0,4,f +16287,3022,4,1,f +16287,3023,0,9,f +16287,3023,6,2,f +16287,3023,15,3,f +16287,3024,4,1,f +16287,3024,0,2,f +16287,3027,4,2,f +16287,3028,0,1,f +16287,3029,0,2,f +16287,3031,0,1,f +16287,3033,0,1,f +16287,3034,0,2,f +16287,3035,0,1,f +16287,3036,0,4,f +16287,3036,4,2,f +16287,3040b,7,3,f +16287,3062b,7,8,f +16287,3069b,7,4,f +16287,3069b,4,2,f +16287,3069bp03,7,1,f +16287,3069bpw1,15,1,f +16287,3176,0,1,f +16287,3455,7,1,f +16287,3460,0,3,f +16287,3581,6,4,f +16287,3581,7,2,f +16287,3596,15,2,f +16287,3622,7,2,f +16287,3622,0,2,f +16287,3622,4,2,f +16287,3623,0,1,f +16287,3623,4,1,f +16287,3626bp39,14,2,f +16287,3626bp42,14,3,f +16287,3626bp62,14,1,f +16287,3626bpx23,14,1,f +16287,3626bpx28,14,1,f +16287,3626bpx29,14,1,f +16287,3626bpx30,14,1,f +16287,3629,15,1,f +16287,3629,6,2,f +16287,3629,1,2,f +16287,3629pw1,1,1,f +16287,3644,0,2,f +16287,3666,0,2,f +16287,3666,4,1,f +16287,3679,7,1,f +16287,3680,4,1,f +16287,3684,7,4,f +16287,3710,0,6,f +16287,3710,4,2,f +16287,3794a,4,2,f +16287,3795,4,1,f +16287,3795,0,4,f +16287,3832,0,1,f +16287,3853,6,2,f +16287,3854,1,4,f +16287,3856,7,4,f +16287,3857,19,4,f +16287,3861b,7,1,f +16287,3878,0,1,f +16287,3941,6,1,f +16287,3958,0,1,f +16287,4070,0,4,f +16287,4070,7,2,f +16287,4071,7,1,f +16287,4085c,0,1,f +16287,4213,0,4,f +16287,4275b,0,3,f +16287,4276b,0,3,f +16287,4282,0,1,f +16287,4286,0,6,f +16287,4460a,7,4,f +16287,4477,4,1,f +16287,4477,0,2,f +16287,4489,0,2,f +16287,4491b,0,1,f +16287,4491b,6,1,f +16287,4493c01pb01,6,1,f +16287,4493c01pb02,0,1,f +16287,4611,0,1,f +16287,4623,0,4,f +16287,4625,0,4,f +16287,4865a,1,4,f +16287,4865a,7,7,f +16287,4865a,4,4,f +16287,57503,334,1,f +16287,57504,334,1,f +16287,57505,334,1,f +16287,57506,334,1,f +16287,6020,0,4,f +16287,6039,0,1,f +16287,6064,2,5,f +16287,6082,7,2,f +16287,6083,7,1,f +16287,6126a,57,6,f +16287,6141,0,2,f +16287,6141,0,1,t +16287,6157,0,1,f +16287,6231,0,4,f +16287,63965,15,1,f +16287,6636,0,2,f +16287,6762stk01,9999,1,t +16287,71342,334,1,f +16287,75998pr0007,15,1,f +16287,84943,8,1,f +16287,87695,15,2,f +16287,87696,15,1,t +16287,970c00,1,6,f +16287,970c00,8,1,f +16287,970c00,0,2,f +16287,970c00,7,1,f +16287,973px41c01,1,1,f +16287,973px42c01,1,3,f +16287,973px43c01,1,2,f +16287,973px53c01,6,1,f +16287,973px54c01,0,1,f +16287,973px55c01,2,1,f +16287,973px56c01,4,1,f +16288,3020,15,1,f +16288,3022,15,1,f +16288,3023,4,1,f +16288,3024,15,2,f +16288,3039,40,1,f +16288,3062b,15,2,f +16288,3622,1,2,f +16288,3623,15,1,f +16288,3660,1,1,f +16288,3710,4,1,f +16288,4286,1,2,f +16288,6141,36,1,f +16288,6141,36,1,t +16289,30089,0,1,f +16289,30162,72,1,f +16289,3626bpr0647,14,1,f +16289,3626bpr0677,14,1,f +16289,3626cpr0001,14,1,f +16289,3962b,0,1,f +16289,59363,70,1,f +16289,62810,484,1,f +16289,86035,4,1,f +16289,970c00,25,1,f +16289,970c00,4,1,f +16289,970c00,71,1,f +16289,973pb0953c01,272,1,f +16289,973pb0954c01,15,1,f +16289,973pb0955c01,2,1,f +16290,3062a,34,2,f +16290,3062a,36,2,f +16290,3298p90,7,1,f +16290,3430c03,7,1,f +16290,3839a,7,1,f +16290,3957a,7,1,f +16290,3959,7,2,f +16293,2412b,0,1,f +16293,2419,0,1,f +16293,2496,0,1,f +16293,2655,7,1,f +16293,3004,15,1,f +16293,3004pb010,15,2,f +16293,3020,0,1,f +16293,3039,33,1,f +16293,3039,15,1,f +16294,11103,297,1,f +16294,11127,182,1,f +16294,11129pr0006,28,1,f +16294,16768pat0001,4,1,f +16294,30173b,297,2,f +16294,3626cpr1293,70,1,f +16294,50231,320,1,f +16294,6141,46,1,f +16294,61482,71,1,f +16294,62810,0,1,f +16294,64567,0,1,f +16294,88646,71,4,f +16294,970c00,272,1,f +16294,98132,297,1,f +16294,98133,2,1,f +16294,98279,28,1,f +16296,10201,15,1,f +16296,10201,71,1,f +16296,11609,191,2,t +16296,11609,191,5,f +16296,11640pr0001,323,1,f +16296,11816pr0002,78,1,f +16296,11920,9999,1,t +16296,2343,47,1,f +16296,2357,15,2,f +16296,2412b,72,2,f +16296,2412b,15,4,f +16296,2431,322,2,f +16296,2431,15,2,f +16296,2449,85,2,f +16296,3001,15,1,f +16296,3003,85,2,f +16296,3004,191,4,f +16296,3004,15,8,f +16296,3009,322,4,f +16296,3009,15,5,f +16296,30153,36,1,f +16296,3020,0,1,f +16296,3020,15,5,f +16296,3021,85,6,f +16296,3023,30,4,f +16296,3023,72,4,f +16296,3023,29,4,f +16296,3024,30,2,f +16296,3024,30,1,t +16296,3038,15,2,f +16296,3039,30,4,f +16296,3062b,322,7,f +16296,3062b,15,4,f +16296,3062b,47,1,f +16296,3069b,85,2,f +16296,3069b,322,4,f +16296,3245c,30,2,f +16296,33322,297,2,t +16296,33322,297,1,f +16296,3666,85,4,f +16296,3666,26,3,f +16296,3679,71,1,f +16296,3680,0,1,f +16296,3700,0,4,f +16296,3741,2,1,f +16296,3741,2,1,t +16296,3742,4,3,f +16296,3742,4,1,t +16296,3794b,0,4,f +16296,3795,0,1,f +16296,3795,29,1,f +16296,3852b,191,1,f +16296,3940b,0,1,f +16296,3941,15,1,f +16296,3957b,0,1,f +16296,3958,19,1,f +16296,4536,29,1,f +16296,4740,71,2,f +16296,59230,0,1,f +16296,59230,0,1,t +16296,59349,15,1,f +16296,60476,15,2,f +16296,60481,85,2,f +16296,60581,15,1,f +16296,6108,30,2,f +16296,61252,15,5,f +16296,6141,45,1,t +16296,6141,297,1,f +16296,6141,41,2,t +16296,6141,45,2,f +16296,6141,71,2,f +16296,6141,41,4,f +16296,6141,71,1,t +16296,6141,29,1,t +16296,6141,29,4,f +16296,6141,297,1,t +16296,61485,0,1,f +16296,6215,15,6,f +16296,63868,71,5,f +16296,75c12,4,1,f +16296,87079,191,4,f +16296,89523,85,1,f +16296,90370pr0001,0,1,t +16296,90370pr0001,0,1,f +16296,91405,19,1,f +16296,92255,226,1,f +16296,92410,15,1,f +16296,92456pr0026c01,78,1,f +16296,92692,15,1,f +16296,92818pr0004c01,31,1,f +16296,92946,15,4,f +16296,93273,0,1,f +16296,98138,46,4,f +16296,98138,46,2,t +16296,98560,30,4,f +16296,99784,45,1,f +16297,19084,179,1,f +16297,21046,15,1,f +16297,2302,25,2,f +16297,3437,27,2,f +16297,3437,484,4,f +16297,40666,70,1,f +16297,40666,10,2,f +16297,44524,1,1,f +16298,2340,4,2,f +16298,2357,4,16,f +16298,2357,71,4,f +16298,2412b,71,2,f +16298,2412b,0,21,f +16298,2420,71,6,f +16298,2420,4,6,f +16298,2420,72,2,f +16298,2431,71,2,f +16298,2431,4,5,f +16298,2432,4,2,f +16298,2444,0,1,f +16298,2444,72,2,f +16298,2445,72,2,f +16298,2446,4,5,f +16298,2447,40,2,f +16298,2456,72,7,f +16298,2460,15,6,f +16298,2465,4,6,f +16298,2495,4,1,f +16298,2496,0,1,f +16298,2555,0,2,f +16298,2780,0,9,f +16298,2921,14,1,f +16298,2994,0,4,f +16298,3001,72,3,f +16298,3001,4,13,f +16298,3002,71,2,f +16298,3002,1,4,f +16298,3002,4,5,f +16298,30029,0,1,f +16298,3003,4,6,f +16298,3004,4,16,f +16298,3004,71,2,f +16298,3004,0,1,f +16298,3006,4,4,f +16298,3008,71,3,f +16298,3008,4,5,f +16298,3009,4,5,f +16298,3010,4,10,f +16298,3010,0,3,f +16298,30157,71,3,f +16298,30183,15,1,f +16298,3020,0,7,f +16298,3020,71,2,f +16298,3020,4,5,f +16298,3020,72,2,f +16298,3021,71,2,f +16298,3021,72,1,f +16298,3021,4,2,f +16298,3022,4,2,f +16298,3022,1,4,f +16298,3022,72,2,f +16298,3023,4,6,f +16298,3023,0,2,f +16298,3023,36,2,f +16298,3023,72,2,f +16298,3023,71,6,f +16298,3024,4,6,f +16298,30285,71,12,f +16298,3031,4,2,f +16298,3031,0,2,f +16298,3032,4,2,f +16298,3032,14,2,f +16298,3034,71,2,f +16298,3034,4,7,f +16298,3035,4,4,f +16298,30357,4,10,f +16298,3036,4,1,f +16298,3040b,4,2,f +16298,30414,1,3,f +16298,30414,4,16,f +16298,30540,0,2,f +16298,30602,4,4,f +16298,3062b,14,2,f +16298,3063b,4,12,f +16298,30648,0,12,f +16298,30663,0,1,f +16298,3068b,4,4,f +16298,3068b,15,2,f +16298,3068b,71,27,f +16298,3069b,4,2,f +16298,3069b,71,4,f +16298,3069b,0,4,f +16298,3069bpr0085,15,2,f +16298,3070b,4,6,f +16298,32001,71,3,f +16298,32013,0,2,f +16298,32028,71,4,f +16298,32056,0,2,f +16298,32123b,71,9,f +16298,32123b,15,2,f +16298,32316,0,4,f +16298,3245b,4,2,f +16298,32523,0,4,f +16298,32530,4,2,f +16298,33299a,0,1,f +16298,3460,0,1,f +16298,3460,4,9,f +16298,3460,71,9,f +16298,3622,4,6,f +16298,3623,4,8,f +16298,3623,71,4,f +16298,3626bp7b,14,1,f +16298,3626bpr0369,15,1,f +16298,3626bpr0370,4,4,f +16298,3660,0,2,f +16298,3660,71,4,f +16298,3666,72,1,f +16298,3666,71,2,f +16298,3666,4,10,f +16298,3700,0,1,f +16298,3701,0,6,f +16298,3702,4,2,f +16298,3703,0,2,f +16298,3705,0,1,f +16298,3707,0,2,f +16298,3709,14,3,f +16298,3710,71,5,f +16298,3710,4,4,f +16298,3710,72,1,f +16298,3710,1,3,f +16298,3713,71,3,f +16298,3737,0,1,f +16298,3738,14,2,f +16298,3747b,4,2,f +16298,3749,19,2,f +16298,3754,0,1,f +16298,3794a,4,8,f +16298,3794a,14,2,f +16298,3794a,72,7,f +16298,3795,4,10,f +16298,3795,15,1,f +16298,3795,0,4,f +16298,3795,71,2,f +16298,3795,14,6,f +16298,3829c01,15,1,f +16298,3839b,0,2,f +16298,3937,4,2,f +16298,3938,0,2,f +16298,3939,4,1,f +16298,4070,4,2,f +16298,4070,0,2,f +16298,4079,0,2,f +16298,4083,0,3,f +16298,41539,71,1,f +16298,4162,4,4,f +16298,4162,15,1,f +16298,4204,72,2,f +16298,42446,72,2,f +16298,4274,71,5,f +16298,4282,72,2,f +16298,4282,4,6,f +16298,43093,1,2,f +16298,43337,4,1,f +16298,43719,4,3,f +16298,43722,4,1,f +16298,43722,72,1,f +16298,43723,72,1,f +16298,43723,4,1,f +16298,44126,4,3,f +16298,44301a,4,4,f +16298,44302a,4,4,f +16298,44302a,0,2,f +16298,4449,14,1,f +16298,4449,4,2,f +16298,44567a,0,2,f +16298,44728,4,2,f +16298,4477,4,6,f +16298,4477,71,8,f +16298,4485,4,1,f +16298,4510,4,1,f +16298,4515,4,1,f +16298,4532,71,2,f +16298,4532,4,4,f +16298,4533,0,4,f +16298,4533,71,2,f +16298,4589,71,2,f +16298,4599a,0,2,f +16298,4600,71,4,f +16298,4624,71,8,f +16298,47720,0,2,f +16298,47759,0,1,f +16298,48288,4,6,f +16298,4864b,4,2,f +16298,4864b,0,2,f +16298,4865a,4,4,f +16298,50373,4,1,f +16298,50950,4,6,f +16298,54200,47,4,f +16298,54200,182,2,f +16298,54200,36,4,f +16298,55295,0,1,f +16298,55296,0,1,f +16298,55297,0,1,f +16298,55298,0,1,f +16298,55299,0,1,f +16298,55300,0,1,f +16298,6081,4,22,f +16298,6081,0,2,f +16298,6091,4,2,f +16298,6091,71,4,f +16298,6111,4,4,f +16298,6112,4,1,f +16298,6140,0,2,f +16298,6141,36,2,f +16298,6141,71,6,f +16298,6180,4,1,f +16298,6183,71,2,f +16298,6215,71,4,f +16298,6215,4,2,f +16298,6232,72,2,f +16298,6536,71,1,f +16298,6541,4,6,f +16298,6553,71,2,f +16298,6578,0,4,f +16298,6587,72,1,f +16298,6636,71,4,f +16298,6636,4,4,f +16298,76385,4,2,f +16298,970c00,4,6,f +16298,973c02,4,1,f +16298,973c31,4,5,f +16299,11618,31,1,t +16299,11618,31,1,f +16299,11816pr0005,78,1,f +16299,2343,297,1,f +16299,2412b,70,2,f +16299,2423,2,2,f +16299,2431,0,2,f +16299,2453b,15,2,f +16299,3001,322,2,f +16299,3002,0,2,f +16299,3004,19,4,f +16299,3004,191,4,f +16299,30173b,179,1,f +16299,30173b,179,1,t +16299,3020,30,2,f +16299,3021,19,1,f +16299,3023,30,4,f +16299,3023,15,4,f +16299,3023,19,2,f +16299,30237b,15,1,f +16299,3024,320,1,t +16299,3024,320,1,f +16299,3035,70,1,f +16299,3062b,47,1,f +16299,3068b,29,2,f +16299,3069b,26,2,f +16299,3070b,29,4,f +16299,3070b,0,2,f +16299,3070b,29,1,t +16299,3070b,0,1,t +16299,32028,0,4,f +16299,3460,30,1,f +16299,3626c,0,1,f +16299,3665,5,2,f +16299,3794b,28,1,f +16299,3795,19,5,f +16299,3830,15,1,f +16299,3831,15,1,f +16299,4286,26,2,f +16299,57895pr0001,47,1,f +16299,59900,33,1,f +16299,59900,70,1,f +16299,60596,15,1,f +16299,6141,15,1,t +16299,6141,15,1,f +16299,6141,33,1,t +16299,6141,33,2,f +16299,6636,15,1,f +16299,87079,191,1,f +16299,87552,47,4,f +16299,87580,0,3,f +16299,87994,70,1,f +16299,92258,0,1,f +16299,92456pr0047c01,78,1,f +16299,92819pr0002b,15,1,f +16299,93092,30,1,f +16299,98130,72,1,f +16299,98138,297,1,f +16299,98138,297,1,t +16300,3008a,15,3,f +16300,3008a,1,3,f +16300,3008a,0,3,f +16300,3008a,47,3,f +16300,3008a,14,3,f +16300,3008a,4,3,f +16300,3009a,14,6,f +16300,3009a,1,6,f +16300,3009a,4,6,f +16300,3009a,15,6,f +16300,3009a,47,6,f +16300,3009a,0,6,f +16301,700ed,2,1,f +16301,700ed,14,1,f +16302,2377,0,2,f +16302,2412b,0,5,f +16302,2436,7,2,f +16302,2449,0,2,f +16302,2456,0,5,f +16302,2540,0,2,f +16302,2878c01,0,2,f +16302,2920,0,2,f +16302,3001,0,1,f +16302,3009,0,2,f +16302,3022,7,4,f +16302,3023,7,2,f +16302,3023,0,1,f +16302,3035,0,1,f +16302,30367b,0,1,f +16302,3058b,0,1,f +16302,3455,0,2,f +16302,3678a,0,4,f +16302,3710,7,3,f +16302,3794a,0,1,f +16302,3795,0,1,f +16302,3839b,0,4,f +16302,4022,0,2,f +16302,4070,0,3,f +16302,4095,0,2,f +16302,4589,14,1,f +16302,6019,0,4,f +16302,6636,0,2,f +16302,73092,0,2,f +16303,2479,7,1,f +16303,3009,4,2,f +16303,3034,15,2,f +16303,3038,1,2,f +16303,3039,47,1,f +16303,3039,1,2,f +16303,3039,15,1,f +16303,3795,15,1,f +16303,4287,4,2,f +16303,4861,1,1,f +16303,6232,15,1,f +16304,3069bpr0100,2,1,f +16304,93092,5,1,f +16304,98138,297,1,t +16304,98138,297,1,f +16305,2555,0,1,f +16305,3003,15,1,f +16305,3005,0,2,f +16305,3010,15,2,f +16305,3010p15,14,1,f +16305,3020,15,1,f +16305,3022,1,1,f +16305,3022,2,1,f +16305,30235,1,1,f +16305,3028,2,1,f +16305,3031,15,1,f +16305,3037pr0005,15,1,f +16305,3039p12,0,1,f +16305,3626bp04,14,1,f +16305,3823,41,1,f +16305,3829c01,7,1,f +16305,3837,8,1,f +16305,3957a,0,1,f +16305,3962b,0,1,f +16305,4083,1,1,f +16305,4215bp71,15,2,f +16305,4485,1,1,f +16305,4533,15,1,f +16305,4740,33,1,f +16305,4864apx15,33,2,f +16305,4871,15,1,f +16305,55295,8,1,f +16305,55296,8,1,f +16305,55297,8,1,f +16305,55298,8,1,f +16305,55299,8,1,f +16305,55300,8,1,f +16305,6014,15,4,f +16305,6015,0,4,f +16305,6064,2,1,f +16305,92410,4,1,f +16305,970c00,7,1,f +16305,973pb0269c01,7,1,f +16308,30173a,148,1,f +16308,30174,72,1,f +16308,30175,72,1,f +16308,3626bpr0739,14,1,f +16308,88646,0,1,f +16308,970c00pr0188,320,1,f +16308,973pr1710c01,320,1,f +16309,2335,15,1,f +16309,2340,15,2,f +16309,2357,0,8,f +16309,2408p01,42,2,f +16309,2412b,0,3,f +16309,2412b,15,11,f +16309,2418a,42,6,f +16309,2420,0,6,f +16309,2420,15,2,f +16309,2432,15,1,f +16309,2434,0,2,f +16309,2436,0,1,f +16309,2436,15,1,f +16309,2440p69,0,2,f +16309,2443,0,2,f +16309,2446,0,5,f +16309,2447,42,5,f +16309,2449,0,4,f +16309,2452,0,2,f +16309,2456,0,3,f +16309,2458,0,3,f +16309,2462,0,2,f +16309,2465,0,1,f +16309,2466,42,4,f +16309,2500c01,15,2,f +16309,2516,15,2,f +16309,2540,0,1,f +16309,2552p02,0,1,f +16309,2569,42,7,f +16309,2681,0,2,f +16309,3001,15,2,f +16309,3001,0,1,f +16309,3003,0,3,f +16309,3004,0,9,f +16309,3005,15,2,f +16309,3005,0,2,f +16309,3007,15,1,f +16309,3008,0,2,f +16309,3009,0,1,f +16309,3010,0,4,f +16309,3020,0,2,f +16309,3022,0,6,f +16309,3023,0,4,f +16309,3023,15,2,f +16309,3024,36,2,f +16309,3030,0,1,f +16309,3034,0,3,f +16309,3036,0,1,f +16309,3039,0,2,f +16309,3039p10,0,3,f +16309,3040p01,0,1,f +16309,3069bp68,15,2,f +16309,3298,15,2,f +16309,3298,0,3,f +16309,3460,0,4,f +16309,3479,0,6,f +16309,3623,15,2,f +16309,3626apr0001,14,5,f +16309,3633,15,2,f +16309,3641,0,4,f +16309,3660,0,4,f +16309,3665,0,2,f +16309,3666,0,3,f +16309,3666,15,2,f +16309,3700,0,3,f +16309,3710,0,6,f +16309,3710,15,1,f +16309,3747b,15,2,f +16309,3747b,0,2,f +16309,3795,0,4,f +16309,3829c01,0,1,f +16309,3830,0,4,f +16309,3831,0,4,f +16309,3838,0,5,f +16309,3839b,0,11,f +16309,3933,0,2,f +16309,3934,0,2,f +16309,3937,0,4,f +16309,3938,15,2,f +16309,3940b,0,7,f +16309,3940b,15,4,f +16309,3956,0,2,f +16309,3956,15,2,f +16309,3959,15,1,f +16309,3959,0,4,f +16309,3960,42,2,f +16309,3961,0,2,f +16309,3963,15,2,f +16309,4032a,15,6,f +16309,4070,0,6,f +16309,4081b,0,2,f +16309,4085c,0,5,f +16309,4150p04,15,1,f +16309,4151,0,3,f +16309,4161,0,2,f +16309,4162,0,1,f +16309,4175,0,1,f +16309,4213,0,1,f +16309,4275b,15,6,f +16309,4276b,0,6,f +16309,4282,0,1,f +16309,4287,0,2,f +16309,4315,0,1,f +16309,4345b,15,2,f +16309,4346p60,0,2,f +16309,4349,0,2,f +16309,4360,15,1,f +16309,4476b,15,3,f +16309,4531,0,2,f +16309,4589,34,4,f +16309,4589,36,10,f +16309,4589,42,10,f +16309,4589,15,4,f +16309,4591,15,2,f +16309,4595,0,2,f +16309,4596,15,2,f +16309,4598,0,1,f +16309,4600,0,2,f +16309,4624,15,4,f +16309,4740,42,7,f +16309,4760c01,0,1,f +16309,4771,0,1,f +16309,4773,36,6,f +16309,4784,0,1,f +16309,4859,0,3,f +16309,5306b,0,1,f +16309,6019,15,4,f +16309,6099p02,0,1,f +16309,6141,42,2,f +16309,6141,36,2,f +16309,73590c01a,15,2,f +16309,970x026,15,5,f +16309,973p51c01,15,5,f +16311,2362a,7,2,f +16311,2413,0,4,f +16311,2419,0,1,f +16311,2458,8,2,f +16311,2526,15,1,f +16311,2555,0,4,f +16311,2695,0,1,f +16311,3003,7,1,f +16311,3004,8,1,f +16311,30136,8,2,f +16311,30141,8,4,f +16311,30155,8,2,f +16311,30157,8,1,f +16311,30162,0,1,f +16311,30170,0,1,f +16311,30170,0,1,t +16311,30171,6,1,f +16311,3020,15,1,f +16311,3020,7,1,f +16311,3020,0,1,f +16311,3022,7,1,f +16311,3023,0,1,f +16311,3023,47,2,f +16311,3024,8,6,f +16311,3031,8,1,f +16311,3068bpx21,19,1,f +16311,3298,0,1,f +16311,3483,0,2,f +16311,3587,0,1,f +16311,3626bpa7,14,1,f +16311,3673,7,1,f +16311,3710,0,2,f +16311,4081b,0,2,f +16311,4617b,6,1,f +16311,4733,0,1,f +16311,6058,7,1,f +16311,6126a,57,2,f +16311,6141,7,4,f +16311,6141,4,5,f +16311,6141,4,1,t +16311,6141,7,1,t +16311,970c00,7,1,f +16311,973pa7c01,19,1,f +16314,11112pr0003,35,1,f +16314,11126,2,1,f +16314,11127,41,7,f +16314,11458,72,2,f +16314,11767,72,1,f +16314,12551pr0005,308,1,f +16314,13731,326,2,f +16314,2780,0,1,t +16314,2780,0,2,f +16314,3004,28,1,f +16314,30157,71,1,f +16314,30176,2,4,f +16314,3020,320,3,f +16314,3021,4,3,f +16314,3022,2,4,f +16314,3023,326,1,f +16314,3023,36,1,f +16314,3023,71,2,f +16314,3031,2,1,f +16314,30374,41,1,f +16314,3040b,72,6,f +16314,3048c,288,2,f +16314,3626cpr1143,308,1,f +16314,3678b,71,2,f +16314,3795,72,3,f +16314,3832,1,2,f +16314,3940b,72,1,f +16314,4032a,4,2,f +16314,4081b,27,2,f +16314,4085c,4,8,f +16314,42060,326,1,f +16314,42061,326,1,f +16314,4286,71,2,f +16314,4287,0,1,f +16314,4497,148,1,f +16314,53451,15,1,t +16314,53451,15,5,f +16314,59900,36,2,f +16314,60481,308,2,f +16314,6108,71,2,f +16314,6117,72,2,f +16314,64567,0,1,f +16314,64567,0,1,t +16314,87747,15,1,t +16314,87747,179,1,t +16314,87747,179,2,f +16314,87747,15,3,f +16314,92947,19,1,f +16314,93273,326,4,f +16314,970c00pr0438,70,1,f +16314,973pr2248c01,70,1,f +16315,12825,7,4,f +16315,2343,47,1,f +16315,2357,0,10,f +16315,2357,7,10,f +16315,2357,15,5,f +16315,2412b,14,1,f +16315,2420,7,7,f +16315,2420,15,3,f +16315,2432,14,2,f +16315,2433,0,1,f +16315,2439,8,2,f +16315,2446,15,1,f +16315,2453a,7,4,f +16315,2454a,7,4,f +16315,2454a,15,4,f +16315,2456,7,2,f +16315,2458,7,2,f +16315,2466,57,4,f +16315,2468,57,1,f +16315,2489,6,2,f +16315,2529,2,2,f +16315,2536,6,5,f +16315,2540,7,1,f +16315,2550c01,6,1,f +16315,2551,6,1,f +16315,2563,6,1,f +16315,2566,2,1,f +16315,2569,42,2,f +16315,2654,0,6,f +16315,2714a,7,1,f +16315,2817,0,1,f +16315,2921,0,1,f +16315,298c02,15,1,t +16315,298c02,15,1,f +16315,3003,7,6,f +16315,30033,8,1,f +16315,3004,0,5,f +16315,3004,7,36,f +16315,3004,15,7,f +16315,30044,4,4,f +16315,30046,0,4,f +16315,30048,0,1,f +16315,3005,15,9,f +16315,3005,0,11,f +16315,3008,15,3,f +16315,3008,7,1,f +16315,3009,15,1,f +16315,3009,7,6,f +16315,3009,0,3,f +16315,3010,7,7,f +16315,3010,15,2,f +16315,3021,7,1,f +16315,3022,0,1,f +16315,3022,14,2,f +16315,3023,7,3,f +16315,3023,14,1,f +16315,3024,0,1,f +16315,3024,7,1,f +16315,3031,7,1,f +16315,3032,7,1,f +16315,3034,8,3,f +16315,3035,7,3,f +16315,3036,7,1,f +16315,3040b,7,3,f +16315,3062b,7,4,f +16315,3069bp52,15,2,f +16315,3149c01,7,1,f +16315,32001,7,2,f +16315,32002,8,1,t +16315,32002,8,1,f +16315,3403c01,0,1,f +16315,3460,8,3,f +16315,3460,7,1,f +16315,3622,15,8,f +16315,3622,7,7,f +16315,3622,0,5,f +16315,3623,7,1,f +16315,3623,15,1,f +16315,3626bp63,0,1,f +16315,3626bpr0895,15,1,f +16315,3626bpx19,14,1,f +16315,3626bpx55,14,1,f +16315,3659,0,1,f +16315,3659,15,4,f +16315,3700,1,3,f +16315,3705,0,2,f +16315,3709,7,1,f +16315,3710,7,4,f +16315,3710,0,1,f +16315,3710,15,2,f +16315,3713,7,1,t +16315,3713,7,3,f +16315,3737,0,2,f +16315,3749,7,1,f +16315,3755,15,1,f +16315,3794a,7,4,f +16315,3795,14,1,f +16315,3829c01,4,1,f +16315,3830,7,4,f +16315,3830,0,1,f +16315,3831,0,1,f +16315,3831,7,4,f +16315,3832,7,1,f +16315,3853,4,1,f +16315,3857,1,1,f +16315,3861b,4,3,f +16315,3867,1,2,f +16315,3901,0,1,f +16315,3935,7,1,f +16315,3936,7,1,f +16315,3937,0,1,f +16315,3938,0,1,f +16315,3940b,0,4,f +16315,3941,0,1,f +16315,3941,57,1,f +16315,3941,7,2,f +16315,3956,7,1,f +16315,3957a,0,2,f +16315,3960p03,15,1,f +16315,4032a,2,1,f +16315,4070,0,1,f +16315,4070,7,1,f +16315,4070,15,3,f +16315,4071,0,1,f +16315,4079,7,1,f +16315,4085c,7,9,f +16315,4150,0,5,f +16315,4161,0,1,f +16315,4162,4,1,f +16315,4185,14,2,f +16315,4229,14,3,f +16315,4265b,7,1,t +16315,4265b,7,3,f +16315,4286,0,2,f +16315,4477,7,1,f +16315,4485,1,1,f +16315,4497,6,1,f +16315,4502w,14,1,f +16315,4505,6,1,f +16315,4515,8,2,f +16315,4588,0,4,f +16315,4589,57,6,f +16315,4589,46,3,f +16315,4598,0,1,f +16315,4599a,0,4,f +16315,4611,8,1,f +16315,4697a,7,1,f +16315,4733,0,1,f +16315,4735,7,2,f +16315,4740,8,2,f +16315,4742,1,2,f +16315,4862,47,2,f +16315,4863,7,1,f +16315,4865a,7,5,f +16315,59,383,1,f +16315,6019,0,4,f +16315,6020,6,1,f +16315,6030,4,1,f +16315,6032,14,1,f +16315,6037,0,1,f +16315,6041,14,1,f +16315,6082,8,3,f +16315,6083,8,4,f +16315,6088,15,1,f +16315,6090,33,1,f +16315,6111,7,1,f +16315,6112,0,1,f +16315,6117,7,1,f +16315,6119,57,1,f +16315,6120,57,2,f +16315,6122,0,1,f +16315,6123,8,1,f +16315,6124,21,1,f +16315,6126a,57,10,f +16315,6141,14,1,t +16315,6141,4,6,f +16315,6141,42,1,t +16315,6141,14,16,f +16315,6141,4,1,t +16315,6141,0,3,f +16315,6141,57,4,f +16315,6141,57,1,t +16315,6141,42,16,f +16315,6141,0,1,t +16315,6148,2,4,f +16315,6231,7,2,f +16315,6233,0,1,f +16315,6260,15,1,f +16315,6265,15,2,f +16315,6266,15,2,f +16315,6538a,7,1,f +16315,73590c02b,14,1,f +16315,85545,1,2,f +16315,85546,14,1,f +16315,970c00,15,1,f +16315,970c00,1,1,f +16315,973px39c01,2,1,f +16315,973px91c01,15,1,f +16316,18827pr0001,72,1,f +16316,3626cpr1538,14,1,f +16316,88646,0,1,f +16316,95199,0,2,f +16316,970c00pr0749,0,1,f +16316,973c45,0,1,f +16316,99254pr0001,72,1,f +16317,11055,71,4,f +16317,14769,71,1,f +16317,15391,0,4,f +16317,15392,72,4,f +16317,15392,72,1,t +16317,2412b,72,7,f +16317,2419,71,2,f +16317,2445,71,1,f +16317,2449,71,2,f +16317,2540,15,4,f +16317,2653,71,3,f +16317,2654,72,6,f +16317,2877,0,1,f +16317,3004,71,6,f +16317,3020,15,1,f +16317,3022,15,2,f +16317,3022,72,2,f +16317,3023,4,6,f +16317,3023,40,6,f +16317,3024,4,1,t +16317,3024,4,2,f +16317,30408pr0008,15,4,f +16317,3040b,71,2,f +16317,30414,0,1,f +16317,3068b,71,1,f +16317,32000,71,2,f +16317,32054,0,2,f +16317,3626cpr1149,78,2,f +16317,3626cpr1556,78,2,f +16317,3679,71,1,f +16317,3680,15,1,f +16317,3710,71,3,f +16317,3795,71,2,f +16317,3795,72,2,f +16317,3832,72,1,f +16317,3839b,71,2,f +16317,51739,71,4,f +16317,59900,36,2,f +16317,60481,71,6,f +16317,61184,71,2,f +16317,6141,36,12,f +16317,6141,15,2,f +16317,6141,36,1,t +16317,6141,15,1,t +16317,61780,72,1,f +16317,6541,71,2,f +16317,85984,71,1,f +16317,87552,71,5,f +16317,87620,71,4,f +16317,970c00pr0735,15,4,f +16317,973pr2795c01,15,4,f +16318,14226c11,0,1,f +16318,2343,47,1,f +16318,2357,7,2,f +16318,2357,484,3,f +16318,2362b,7,1,f +16318,2412b,383,2,f +16318,2420,73,2,f +16318,2431,0,3,f +16318,2431,73,1,f +16318,2431,15,4,f +16318,2432,0,1,f +16318,2445,19,1,f +16318,2453a,484,2,f +16318,2454a,484,8,f +16318,2454pb001,7,2,f +16318,2529,6,6,f +16318,2582,73,1,f +16318,2926,7,2,f +16318,3001,8,2,f +16318,3002,484,1,f +16318,3004,8,7,f +16318,3004,484,2,f +16318,3004,19,2,f +16318,3004,7,8,f +16318,3004,73,2,f +16318,3005,484,2,f +16318,3005,19,5,f +16318,3005,73,2,f +16318,3008,484,2,f +16318,3009,484,2,f +16318,3010,484,1,f +16318,3010,7,1,f +16318,3010,8,3,f +16318,30134,6,1,f +16318,30137,15,2,f +16318,30176,2,2,f +16318,3020,8,4,f +16318,3020,73,3,f +16318,3021,73,5,f +16318,3023,73,5,f +16318,3023,8,1,f +16318,30238,0,1,f +16318,3024,73,2,f +16318,3024,0,2,f +16318,3024,36,3,f +16318,3029,0,1,f +16318,3031,0,1,f +16318,3032,73,1,f +16318,3034,19,2,f +16318,3034,0,3,f +16318,3037,8,6,f +16318,30374,7,1,f +16318,30374,6,1,f +16318,3038,8,1,f +16318,3039,8,1,f +16318,3040b,73,2,f +16318,3040b,8,1,f +16318,30414,7,1,f +16318,3043,0,1,f +16318,3045,8,2,f +16318,3062b,19,4,f +16318,3062b,378,2,f +16318,3062b,73,2,f +16318,3062b,47,1,f +16318,3069b,0,4,f +16318,3069b,15,1,f +16318,3069b,73,3,f +16318,3069bp0g,19,1,f +16318,3069bpr0055,15,3,f +16318,3070bpx8,0,1,f +16318,3070bpx8,0,1,t +16318,3188,73,1,f +16318,3189,73,1,f +16318,32028,7,3,f +16318,32530,8,2,f +16318,33009,4,1,f +16318,33009,73,1,f +16318,3460,0,1,f +16318,3622,19,2,f +16318,3626bpb0009,14,1,f +16318,3626bph1,14,1,f +16318,3626bpr0245,14,1,f +16318,3665,0,1,f +16318,3665,73,4,f +16318,3666,15,1,f +16318,3666,73,3,f +16318,3666,7,2,f +16318,3679,7,1,f +16318,3680,0,1,f +16318,3710,0,2,f +16318,3710,73,3,f +16318,3710,7,5,f +16318,3795,73,4,f +16318,3829c01,7,1,f +16318,3830,7,2,f +16318,3831,7,2,f +16318,3853,19,3,f +16318,3861b,6,1,f +16318,3899,4,1,f +16318,3901,366,1,f +16318,3940b,6,1,f +16318,3958,73,1,f +16318,3958,15,1,f +16318,40232,15,1,f +16318,40233,0,1,f +16318,40240,366,1,f +16318,4032a,7,1,f +16318,4070,73,2,f +16318,4070,7,3,f +16318,41539,8,4,f +16318,41539,19,1,f +16318,4176,47,1,f +16318,4284,47,1,f +16318,4286,8,2,f +16318,4287,7,4,f +16318,43337,7,2,f +16318,4449,7,1,f +16318,4449,0,1,f +16318,4460a,7,2,f +16318,4528,0,1,f +16318,4623,0,2,f +16318,4625,73,1,f +16318,4865a,0,2,f +16318,50231px1,0,1,f +16318,6014b,15,4,f +16318,6015,0,4,f +16318,6081,73,1,f +16318,6091,7,2,f +16318,6141,36,1,t +16318,6141,46,1,t +16318,6141,47,1,t +16318,6141,46,3,f +16318,6141,36,1,f +16318,6141,47,2,f +16318,6141,0,4,f +16318,6141,0,1,t +16318,6249,7,1,f +16318,970c00,6,1,f +16318,970c00,7,2,f +16318,973pb0011c01,6,1,f +16318,973pb0110c01,4,1,f +16318,973px151c01,1,1,f +16320,3002a,14,3,f +16320,3003,0,3,f +16320,3004,0,34,f +16320,3004,14,2,f +16320,3004,4,14,f +16320,3004,1,4,f +16320,3005,0,24,f +16320,3005,14,2,f +16320,3005,4,4,f +16320,3005,1,20,f +16320,3008,1,6,f +16320,3008,14,6,f +16320,3008,0,4,f +16320,3009,14,4,f +16320,3009,1,6,f +16320,3009,4,2,f +16320,3009,0,5,f +16320,3010,0,4,f +16320,3010,47,1,f +16320,3010,14,1,f +16320,3020,7,12,f +16320,3021,7,4,f +16320,3022,15,1,f +16320,3022,4,1,f +16320,3022,0,5,f +16320,3023,14,6,f +16320,3023,0,16,f +16320,3027,7,2,f +16320,3029,14,1,f +16320,303,0,1,f +16320,3032,7,2,f +16320,3034,0,1,f +16320,3034,15,20,f +16320,3035,0,1,f +16320,3035,14,1,f +16320,3036,0,1,f +16320,3037,0,6,f +16320,3040a,0,16,f +16320,3062a,0,4,f +16320,3087c,14,2,f +16320,3137c01,0,2,f +16320,3139,0,4,f +16320,3184,14,1,f +16320,3218,4,1,f +16320,3228a,1,8,f +16320,3229a,1,16,f +16320,3230a,1,16,f +16320,3443c02,0,1,f +16320,3488,0,12,f +16320,429c01,0,2,f +16320,458,0,9,f +16320,564c01,0,1,f +16320,699,0,1,f +16320,7049b,0,1,f +16320,735,4,3,f +16320,735,1,3,f +16320,736c02,0,3,f +16320,772p01,47,18,f +16320,trainsig2,4,1,f +16320,wheel2a,4,8,f +16320,wheel2a,0,1,f +16320,x466c11,15,1,f +16320,x489,4,1,f +16320,x946,0,2,f +16321,27bc01,15,1,f +16321,29bc01,15,1,f +16321,3081bc01,15,1,f +16321,3087bc01,15,1,f +16321,31bc01,15,1,f +16321,33bc01,15,1,f +16321,453bc01,15,1,f +16321,604c01,15,1,f +16321,645bc01,15,1,f +16321,646bc01,15,1,f +16323,11211,19,2,f +16323,11476,71,2,f +16323,15501,484,1,f +16323,15501,484,1,t +16323,18904,288,1,f +16323,18905pr0001,288,1,f +16323,18906,288,1,f +16323,19220,0,1,f +16323,2423,2,1,f +16323,2431,272,2,f +16323,2476a,15,1,f +16323,298c02,14,1,t +16323,298c02,14,2,f +16323,3001,71,1,f +16323,30115,4,1,f +16323,30136,70,2,f +16323,30137,70,5,f +16323,30162,72,1,f +16323,30176,2,1,f +16323,30238,4,1,f +16323,3031,2,1,f +16323,3039,71,1,f +16323,3062b,70,4,f +16323,3068b,70,1,f +16323,3069bpr0100,2,2,f +16323,3626cpr1091,14,1,f +16323,3626cpr1580,14,1,f +16323,3626cpr1623,14,1,f +16323,3626cpr1662,14,1,f +16323,3666,0,2,f +16323,3710,70,2,f +16323,3837,72,1,f +16323,4079b,15,1,f +16323,41334,0,1,f +16323,41334,72,1,f +16323,4274,1,1,t +16323,4274,1,1,f +16323,4285b,72,1,f +16323,43713,15,1,f +16323,43719,272,1,f +16323,4598,0,1,f +16323,4871,15,1,f +16323,58176,33,2,f +16323,60897,15,2,f +16323,6141,46,1,f +16323,6141,46,1,t +16323,6141,27,1,t +16323,6141,27,1,f +16323,61482,71,1,f +16323,61482,71,1,t +16323,64567,0,1,t +16323,64567,0,1,f +16323,85984pr0001,15,1,f +16323,87585,70,2,f +16323,87990,308,1,f +16323,88072,72,1,f +16323,92590,28,1,f +16323,92842,0,1,f +16323,970c00,272,2,f +16323,970c00,379,1,f +16323,970c00,28,1,f +16323,973pr2879c01,19,1,f +16323,973pr2880c01,15,1,f +16323,973pr2931c01,19,1,f +16323,973pr2935c01,15,1,f +16323,98279,28,1,f +16325,10247,72,8,f +16325,10247,71,4,f +16325,11090,72,2,f +16325,11203,72,2,f +16325,11211,71,1,f +16325,11214,72,6,f +16325,11458,72,4,f +16325,11476,71,2,f +16325,11477,72,6,f +16325,13547,0,2,f +16325,15303,35,3,f +16325,15400,72,2,f +16325,15462,28,2,f +16325,15535,72,3,f +16325,15712,72,6,f +16325,15712,71,2,f +16325,20904pr0001,15,1,f +16325,20908,0,2,f +16325,20954pr0001,72,1,f +16325,20954pr0002,0,1,f +16325,21699,36,1,f +16325,2357,0,4,f +16325,23709,0,1,f +16325,23813,0,1,f +16325,23901,0,1,f +16325,2412b,179,13,f +16325,2419,72,4,f +16325,2420,71,2,f +16325,2420,0,2,f +16325,2431,0,2,f +16325,2432,0,1,f +16325,2445,72,2,f +16325,2450,72,2,f +16325,2456,4,2,f +16325,2460,71,4,f +16325,2476a,28,4,f +16325,2476a,71,2,f +16325,2653,0,3,f +16325,2653,71,3,f +16325,2654,0,16,f +16325,2654,71,8,f +16325,2780,0,40,f +16325,2817,71,2,f +16325,2877,71,4,f +16325,2877,0,5,f +16325,3001,19,2,f +16325,3001,4,2,f +16325,3001,72,2,f +16325,3004,72,4,f +16325,3009,72,4,f +16325,3020,71,3,f +16325,3020,72,14,f +16325,3020,0,1,f +16325,3020,4,2,f +16325,3021,72,7,f +16325,3021,71,10,f +16325,3022,0,4,f +16325,3022,72,12,f +16325,3023,36,26,f +16325,3023,71,5,f +16325,3023,72,2,f +16325,3024,72,8,f +16325,3029,72,1,f +16325,3030,71,2,f +16325,30304,15,1,f +16325,3032,72,4,f +16325,3032,71,1,f +16325,3033,72,6,f +16325,3034,72,2,f +16325,3034,71,1,f +16325,3035,72,6,f +16325,30381,0,1,f +16325,3040b,72,8,f +16325,30414,71,2,f +16325,30503,72,20,f +16325,3062b,71,2,f +16325,3062b,72,2,f +16325,3065,40,3,f +16325,3068b,71,2,f +16325,3069b,71,8,f +16325,3069bpr0070,0,1,f +16325,32002,19,2,f +16325,32009,0,4,f +16325,32013,0,2,f +16325,32018,72,2,f +16325,32028,72,1,f +16325,32028,0,2,f +16325,32028,71,4,f +16325,32054,4,12,f +16325,32054,0,2,f +16325,32054,71,4,f +16325,32056,71,2,f +16325,32062,4,4,f +16325,32062,0,4,f +16325,32140,0,4,f +16325,32523,72,2,f +16325,32524,0,1,f +16325,32526,72,2,f +16325,32532,0,4,f +16325,32555,0,2,f +16325,32556,19,4,f +16325,33299a,71,4,f +16325,3460,0,3,f +16325,3460,71,2,f +16325,3622,71,4,f +16325,3623,72,6,f +16325,3623,71,10,f +16325,3626cpr1149,78,1,f +16325,3626cpr1709,78,1,f +16325,3626cpr1801,78,1,f +16325,3626cpr1802,78,1,f +16325,3626cpr1803,70,1,f +16325,3626cpr1805,0,1,f +16325,3660,72,6,f +16325,3665,72,4,f +16325,3666,28,2,f +16325,3666,72,8,f +16325,3666,71,4,f +16325,3678b,72,2,f +16325,3700,71,4,f +16325,3701,72,10,f +16325,3701,71,2,f +16325,3701,4,8,f +16325,3702,0,8,f +16325,3702,71,4,f +16325,3703,71,4,f +16325,3706,0,4,f +16325,3708,0,2,f +16325,3710,71,13,f +16325,3710,72,10,f +16325,3747b,72,5,f +16325,3795,72,2,f +16325,3830,71,4,f +16325,3831,71,4,f +16325,3894,72,2,f +16325,3895,71,2,f +16325,3937,71,2,f +16325,3941,4,4,f +16325,3958,72,1,f +16325,4032a,4,4,f +16325,40490,0,8,f +16325,4070,0,4,f +16325,4085c,0,2,f +16325,41677,72,4,f +16325,41678,71,1,f +16325,41767,0,5,f +16325,41768,0,5,f +16325,41769,71,2,f +16325,41769,72,12,f +16325,41770,71,2,f +16325,41770,72,12,f +16325,42003,72,2,f +16325,42022,72,2,f +16325,4274,1,10,f +16325,4274,71,4,f +16325,4286,72,8,f +16325,4287,72,6,f +16325,43093,1,8,f +16325,43713,72,2,f +16325,43722,72,3,f +16325,43723,72,3,f +16325,43857,4,3,f +16325,4477,72,4,f +16325,4510,72,2,f +16325,4510,71,1,f +16325,4697b,71,1,f +16325,47397,72,10,f +16325,47398,72,10,f +16325,4740,36,2,f +16325,48336,71,5,f +16325,48336,0,4,f +16325,50304,72,1,f +16325,50305,72,1,f +16325,51739,72,2,f +16325,52031,72,2,f +16325,52501,72,2,f +16325,54200,71,2,f +16325,54200,47,4,f +16325,54200,72,4,f +16325,54200,0,2,f +16325,54383,71,5,f +16325,54383,72,2,f +16325,54384,72,2,f +16325,54384,71,5,f +16325,56145,71,2,f +16325,58247,0,1,f +16325,59900,71,4,f +16325,6019,0,1,f +16325,60219,72,2,f +16325,60470a,71,2,f +16325,60479,71,4,f +16325,60479,0,4,f +16325,60483,71,2,f +16325,60849,0,2,f +16325,6091,71,4,f +16325,6134,0,2,f +16325,61409,0,2,f +16325,61409,72,2,f +16325,6141,36,18,f +16325,6141,179,22,f +16325,6179,72,11,f +16325,6180,71,2,f +16325,6231,71,4,f +16325,63864,71,4,f +16325,63868,0,12,f +16325,63965,71,4,f +16325,64567,148,1,f +16325,64799,71,2,f +16325,6558,1,6,f +16325,6587,28,2,f +16325,6628,0,2,f +16325,6636,72,1,f +16325,6636,0,4,f +16325,85984,0,3,f +16325,85984,72,10,f +16325,87079,72,14,f +16325,87081,72,4,f +16325,87083,72,2,f +16325,87087,72,2,f +16325,87087,0,4,f +16325,87580,71,8,f +16325,87580,72,2,f +16325,87609,0,1,f +16325,87620,72,4,f +16325,88072,71,2,f +16325,88072,0,4,f +16325,92099,0,1,f +16325,92107,72,1,f +16325,92280,0,2,f +16325,92593,72,7,f +16325,92738,0,2,f +16325,93095,0,1,f +16325,93274,71,2,f +16325,96874,25,1,t +16325,970c00,72,1,f +16325,970c00,0,2,f +16325,970c00pr0954,15,1,f +16325,970c00pr0957,0,1,f +16325,970c00pr0959,0,1,f +16325,973pr3158c01,0,2,f +16325,973pr3165c01,15,1,f +16325,973pr3170c01,0,1,f +16325,973pr3171c01,72,1,f +16325,973pr3173c01,0,1,f +16325,98138,36,2,f +16325,98286,71,4,f +16325,99206,71,2,f +16325,99207,71,2,f +16326,10509pr0003,15,1,f +16326,11477,25,4,f +16326,15207,27,2,f +16326,15462,28,1,f +16326,15535,19,2,f +16326,15573,27,1,f +16326,15790,0,1,f +16326,18031,148,1,f +16326,18306,72,1,f +16326,20690pr0001,84,1,f +16326,20691pr0002,84,1,f +16326,20693pr01,25,1,f +16326,21787,84,1,f +16326,2343,297,1,f +16326,2412b,25,1,f +16326,2415,71,2,f +16326,2431,27,3,f +16326,2445,25,1,f +16326,2654,47,1,f +16326,2654pr0002,19,2,f +16326,2723,71,1,f +16326,298c02,15,1,t +16326,298c02,15,1,f +16326,3002,4,1,f +16326,3020,27,3,f +16326,3022,27,2,f +16326,3023,47,2,f +16326,3023,322,2,f +16326,3023,15,4,f +16326,3034,322,4,f +16326,30367c,25,1,f +16326,30565,322,6,f +16326,30565,27,2,f +16326,3065,47,3,f +16326,3068bpr0268,15,1,f +16326,3176,71,2,f +16326,3464,15,2,f +16326,3626cpr1708,78,1,f +16326,3626cpr1742,0,1,f +16326,3666,27,6,f +16326,3666,322,2,f +16326,3700,15,2,f +16326,3795,25,1,f +16326,3832,71,1,f +16326,41531,27,1,f +16326,43713,27,1,f +16326,47457,15,1,f +16326,4865b,27,2,f +16326,4871,27,2,f +16326,50231,85,1,f +16326,50950,27,2,f +16326,51739,27,1,f +16326,59895,0,2,f +16326,60169,71,1,f +16326,6091,27,2,f +16326,61072,179,3,f +16326,61184,71,2,f +16326,6141,4,1,t +16326,6141,4,2,f +16326,6141,36,1,f +16326,6141,27,2,f +16326,6141,14,1,t +16326,6141,14,4,f +16326,6141,36,1,t +16326,6141,34,1,f +16326,6141,70,2,f +16326,6141,70,1,t +16326,6141,34,1,t +16326,6141,27,1,t +16326,6180,322,2,f +16326,6239,322,1,f +16326,87544,71,2,f +16326,88072,71,2,f +16326,92593,0,2,f +16326,92690,71,1,f +16326,970c00,320,1,f +16326,970c00,1,1,f +16326,973pr3062c01,27,1,f +16326,973pr3101c01,1,1,f +16327,15407,148,1,f +16327,15573,272,1,f +16327,15712,71,1,f +16327,2432,72,1,f +16327,3020,1,1,f +16327,30375,1,1,f +16327,3626cpr1786,14,1,f +16327,41879a,1,1,f +16327,4522,0,1,f +16327,4865b,57,1,f +16327,4870,71,2,f +16327,48729b,72,3,f +16327,6091,1,1,f +16327,61252,1,1,f +16327,74967,0,4,f +16327,92746,84,1,f +16327,973pr3153c01,1,1,f +16330,2412b,72,2,f +16330,2419,0,2,f +16330,2420,0,8,f +16330,2431,0,2,f +16330,2555,4,2,f +16330,2555,0,4,f +16330,2825,0,1,f +16330,30000,71,2,f +16330,3002,0,2,f +16330,3004,0,5,f +16330,30088,0,4,f +16330,30162,72,4,f +16330,3022,0,4,f +16330,3023,320,6,f +16330,3023,71,1,f +16330,3039,0,4,f +16330,3048c,0,2,f +16330,3049b,0,4,f +16330,3049b,320,5,f +16330,30505,0,2,f +16330,30526,72,1,f +16330,30553,0,1,f +16330,30603,0,2,f +16330,32000,71,2,f +16330,32001,71,3,f +16330,32062,4,1,f +16330,32140,0,2,f +16330,32187,71,1,f +16330,32316,0,2,f +16330,3298,0,5,f +16330,3673,71,1,t +16330,3673,71,4,f +16330,3684,0,2,f +16330,3700,72,2,f +16330,3705,0,2,f +16330,3706,0,1,f +16330,3709,72,5,f +16330,3710,71,2,f +16330,3713,71,1,t +16330,3713,71,1,f +16330,3738,0,1,f +16330,3747a,71,1,f +16330,3794a,72,2,f +16330,3940b,0,1,f +16330,3941,0,4,f +16330,3943b,0,2,f +16330,40002,47,1,f +16330,4081b,71,1,f +16330,41532,0,1,f +16330,41678,71,1,f +16330,4274,71,2,f +16330,4274,71,1,t +16330,43093,1,3,f +16330,43708,0,2,f +16330,4460a,0,4,f +16330,44728,71,3,f +16330,4589,72,1,f +16330,4589,36,10,f +16330,4733,0,1,f +16330,47335pat0001,320,1,f +16330,4740,72,1,f +16330,47432,72,2,f +16330,47452,72,4,f +16330,47455,320,8,f +16330,47757,0,2,f +16330,48169,72,2,f +16330,48170,72,2,f +16330,48172,0,1,f +16330,48336,0,4,f +16330,48729a,72,2,f +16330,50745,0,1,f +16330,53984,135,2,f +16330,53988pat03,36,1,f +16330,53989,135,2,f +16330,54605,47,1,f +16330,6019,0,3,f +16330,6134,0,1,f +16330,6141,71,1,f +16330,6141,71,1,t +16330,63965,0,1,f +16330,6536,0,1,f +16330,6538b,72,1,f +16330,6541,71,2,f +16330,6558,0,2,f +16330,6636,0,2,f +16330,7702stk01,9999,1,t +16331,4092,0,1,f +16332,3700,0,50,f +16333,3001,4,2,f +16333,3002,1,2,f +16333,3003,1,15,f +16333,3003,4,2,f +16333,3004,14,4,f +16333,3004,1,1,f +16333,3004,4,4,f +16333,3027,14,1,f +16333,3029,1,2,f +16333,3032,14,2,f +16333,3032,4,2,f +16333,3036,1,1,f +16333,3068pb33,15,1,f +16333,3068pb34,15,1,f +16333,3334,2,2,f +16333,3497,2,1,f +16333,3633,14,4,f +16333,3633,4,2,f +16333,3741,2,2,f +16333,3742,4,3,f +16333,3742,15,1,t +16333,3742,4,1,t +16333,3742,15,3,f +16333,3795,4,1,f +16333,3795,14,1,f +16333,3899,1,2,f +16333,3899,14,1,f +16333,3957a,0,2,f +16333,3979c01,14,2,f +16333,3979c02,4,2,f +16333,3980c02,1,4,f +16333,4094a,14,1,f +16333,4094a,4,1,f +16333,4095,14,1,f +16333,4222a,450,1,f +16333,4237,14,1,f +16333,4237,4,1,f +16333,4238,14,1,f +16333,4238,4,1,f +16333,4429,4,1,f +16333,4495a,2,1,f +16333,4495a,1,1,f +16333,4750,14,2,f +16333,4779,14,2,f +16333,4782,1,4,f +16333,4783,4,2,f +16333,4784,14,1,f +16333,4874c01,4,1,f +16333,4876,14,1,f +16333,63965,4,1,f +16333,787c01,1,2,f +16333,787c02,14,1,f +16333,fab12h,9999,1,f +16333,fab3g,9999,1,f +16333,fab5e,9999,1,f +16333,fab8f,9999,1,f +16336,2488,0,1,f +16336,3004,19,1,f +16336,3004,28,1,f +16336,3005,1,4,f +16336,3005,15,2,f +16336,3005,0,1,f +16336,3021,70,1,f +16336,3022,19,1,f +16336,3023,72,2,f +16336,3024,19,1,f +16336,3024,1,8,f +16336,3069b,0,2,f +16336,3622,0,2,f +16336,3623,1,2,f +16336,3794a,19,2,f +16336,3941,72,1,f +16336,4070,0,2,f +16336,4070,70,1,f +16336,4081b,19,2,f +16336,41747,288,2,f +16336,41748,288,2,f +16336,41854,72,2,f +16336,4286,1,2,f +16336,4460b,0,2,f +16336,4733,1,4,f +16336,54200,1,3,f +16336,6005,15,2,f +16336,6141,71,1,f +16336,6541,1,1,f +16338,11272,148,1,f +16338,11338,4,1,f +16338,11338,148,2,f +16338,11356pr0001,288,1,f +16338,13699pr0001,326,1,f +16338,2780,0,2,f +16338,2780,0,1,t +16338,32062,4,5,f +16338,32123b,71,1,t +16338,32123b,71,1,f +16338,4519,71,1,f +16338,53551,148,4,f +16338,53562,0,2,f +16338,53585,0,1,f +16338,59443,70,4,f +16338,74261,72,2,f +16338,87747,179,7,f +16338,87747,179,1,t +16338,87846,288,1,f +16338,90609,0,2,f +16338,90609,326,4,f +16338,90612,0,2,f +16338,90617,72,4,f +16338,90622,0,2,f +16338,90623,0,1,f +16338,90641,288,5,f +16338,90652,288,1,f +16338,90652,148,2,f +16338,93571,0,2,f +16338,93575,326,2,f +16338,98577,72,1,f +16338,98603s01pr0007,148,1,f +16341,2419,7,1,f +16341,2555,0,2,f +16341,3022,0,1,f +16341,3069bp54,7,1,f +16341,3298p6u,7,1,f +16341,3626bp6v,1,1,f +16341,3710,0,1,f +16341,3795,7,1,f +16341,3937,7,1,f +16341,3938,0,1,f +16341,3957a,7,2,f +16341,3959,0,1,f +16341,4285b,0,1,f +16341,4589,42,2,f +16341,4859,7,1,f +16341,970c00pb021,0,1,f +16341,973px132c01,7,1,f +16342,32073,71,1,f +16342,32174,71,3,f +16342,3713,71,2,t +16342,3713,71,2,f +16342,41668,15,2,f +16342,41669,143,2,f +16342,42003,71,2,f +16342,44817,135,2,f +16342,4519,71,2,f +16342,4519,71,1,t +16342,47296,72,1,f +16342,47301,15,1,f +16342,47311,15,2,f +16342,50921,15,1,f +16342,50923,72,2,f +16342,6558,0,2,f +16342,6558,0,1,t +16344,2439,72,1,f +16344,2446,15,2,f +16344,2446,1,1,f +16344,2446,4,1,f +16344,2447,40,2,f +16344,2447,40,2,t +16344,2447,0,2,t +16344,2447,0,2,f +16344,2495,4,1,f +16344,2496,0,3,f +16344,2540,15,1,f +16344,30089,0,1,f +16344,30162,72,1,f +16344,30187c06,1,2,f +16344,30187c06,15,2,f +16344,30608,0,1,f +16344,3062b,4,2,f +16344,3069b,46,4,f +16344,3624,0,2,f +16344,3624,320,1,f +16344,3626bpr0001,14,31,f +16344,3833,4,4,f +16344,3834,15,3,f +16344,3834,80,1,f +16344,3835,0,1,f +16344,3836,70,2,f +16344,3837,72,2,f +16344,3838,14,1,f +16344,3841,72,1,f +16344,3898,15,1,f +16344,3900,15,4,f +16344,3901,70,3,f +16344,3901,0,3,f +16344,3901,0,3,t +16344,3942c,14,2,f +16344,3942c,15,2,f +16344,3962b,0,4,f +16344,4006,0,1,f +16344,41334,72,1,f +16344,4150p02,14,1,f +16344,42511,1,1,f +16344,4349,0,1,f +16344,4449,70,1,f +16344,4449,0,3,f +16344,4449,71,1,f +16344,4485,4,1,f +16344,4485,0,2,f +16344,4485,1,1,t +16344,4522,0,1,f +16344,4528,0,1,f +16344,4530,0,1,f +16344,4599a,4,2,f +16344,4714,15,1,f +16344,4719,4,3,f +16344,4740,72,1,f +16344,48812,70,2,f +16344,55295,0,1,f +16344,55296,0,1,f +16344,55297,0,1,f +16344,55298,0,1,f +16344,55299,0,1,f +16344,55300,0,1,f +16344,59275,0,2,f +16344,6093,0,2,f +16344,6093,70,1,f +16344,6141,4,2,f +16344,6141,46,3,f +16344,6141,36,8,f +16344,6141,33,5,f +16344,6254,15,1,f +16344,92851,47,6,f +16344,970c00,0,4,f +16344,970c00,71,5,f +16344,970c00,72,4,f +16344,970c00,15,8,f +16344,970c00,1,6,f +16344,970c00,4,2,f +16344,970c00,19,1,f +16344,970x026,14,1,f +16344,973pb0323c02,0,1,f +16344,973pr0805c01,15,1,f +16344,973pr1155c01,19,1,f +16344,973pr1156c01,1,2,f +16344,973pr1163c01,272,1,f +16344,973pr1169c01,73,1,f +16344,973pr1183c01,25,4,f +16344,973pr1184c01,0,1,f +16344,973pr1187c01,0,4,f +16344,973pr1188c01,0,4,f +16344,973pr1190c01,0,1,f +16344,973pr1196c01,15,1,f +16344,973pr1197c01,15,1,f +16344,973pr1201c01,15,2,f +16344,973pr1204c01,15,1,f +16344,973pr1238c01,0,2,f +16344,973pr1239c01,15,2,f +16344,973pr1241c01,15,1,f +16345,32013,15,1,f +16345,32015,15,2,f +16345,32062,0,2,f +16345,32140,0,2,f +16345,32174,0,1,f +16345,32474,0,1,f +16345,32523,0,1,f +16345,32576,15,2,f +16345,41660,15,1,f +16345,41669,41,2,f +16345,42042,7,1,f +16345,42042und,15,1,f +16345,42074,15,2,f +16345,43093,0,1,t +16345,43093,0,2,f +16345,4519,0,2,f +16345,6536,0,1,f +16345,6553,0,2,f +16345,6558,0,2,f +16346,2352,14,2,f +16346,3001,4,28,f +16346,3001,14,32,f +16346,3001,0,24,f +16346,3001,15,34,f +16346,3001,1,32,f +16346,3001pr1,14,1,f +16346,3002,1,8,f +16346,3002,0,4,f +16346,3002,14,8,f +16346,3002,15,8,f +16346,3002,4,8,f +16346,3003,4,26,f +16346,3003,15,28,f +16346,3003,47,2,f +16346,3003,14,26,f +16346,3003,1,28,f +16346,3003,0,20,f +16346,3003pe1,14,2,f +16346,3006,4,2,f +16346,3007,14,2,f +16346,3185,4,6,f +16346,3471,2,2,f +16346,3483,0,8,f +16346,4130,14,3,f +16346,4131,4,3,f +16346,4132,14,4,f +16346,4133,4,4,f +16346,4180c02,0,4,f +16346,4202,4,1,f +16346,4204,2,1,f +16346,4727,2,2,f +16346,4728,4,1,f +16346,4728,14,1,f +16346,4730,1,1,f +16346,4743,1,1,f +16346,4743,4,1,f +16346,4744,4,1,f +16346,4744,14,1,f +16346,4745,14,1,f +16346,4747,4,1,f +16346,4748,4,1,f +16346,bfp001,9999,1,f +16346,bfp002,9999,1,f +16348,32205,0,2,f +16348,32208,0,1,f +16348,32208,2,1,f +16348,32209,15,2,f +16348,32213,0,1,f +16348,32214,2,2,f +16348,32218,2,1,f +16348,32221,8,2,f +16348,3708,15,1,f +16348,zbb013,22,8,f +16348,zbb014,7,3,f +16348,zbb015,2,2,f +16348,zbb022,0,3,f +16349,2436,14,1,f +16349,3069bpr0085,15,1,f +16349,3794a,14,2,f +16349,3957a,15,1,f +16349,4083,14,1,f +16349,4589,182,1,f +16349,54200,182,2,f +16351,2350a,14,3,f +16351,2350a,4,3,f +16351,2351,0,6,f +16351,2431,14,4,f +16351,2431,7,4,f +16351,2431,4,4,f +16351,2448,33,12,f +16351,2458,14,3,f +16351,2460,4,3,f +16351,2466,33,12,f +16351,2468,33,8,f +16351,2479,7,6,f +16351,2815,0,6,f +16351,3032,7,6,f +16351,3065,33,16,f +16351,3067,33,6,f +16351,3068b,7,4,f +16351,3068b,4,4,f +16351,3068b,14,4,f +16351,3069b,4,4,f +16351,3069b,7,4,f +16351,3069b,14,4,f +16351,3070b,4,5,f +16351,3070b,14,5,f +16351,3070b,7,5,f +16351,3127,7,3,f +16351,3176,4,6,f +16351,3183a,4,3,f +16351,3184,4,3,f +16351,3228b,7,24,f +16351,3403c01,4,3,f +16351,3673,7,12,f +16351,3704,0,6,f +16351,3705,0,6,f +16351,3706,0,6,f +16351,3707,0,6,f +16351,3708,0,6,f +16351,3730,4,3,f +16351,3731,4,3,f +16351,3736,7,6,f +16351,3737,0,6,f +16351,3830,14,4,f +16351,3830,4,4,f +16351,3830,7,4,f +16351,3831,7,4,f +16351,3831,14,4,f +16351,3831,4,4,f +16351,4070,7,6,f +16351,4070,4,6,f +16351,4070,14,6,f +16351,4162,7,4,f +16351,4162,4,4,f +16351,4162,14,4,f +16351,4185,7,6,f +16351,4265b,7,13,f +16351,4519,0,6,f +16351,4590,4,2,f +16351,4590,14,2,f +16351,4590,7,2,f +16351,73037,4,3,f +16351,73129,7,6,f +16351,73983,7,2,f +16351,73983,4,2,f +16351,73983,14,2,f +16351,85546,0,6,f +16351,rb00164,0,1,f +16352,3001a,14,4,f +16352,3001a,1,8,f +16352,3001a,4,18,f +16352,3001a,0,8,f +16352,3003,14,4,f +16352,3003,1,6,f +16352,3003,0,3,f +16352,3003,4,8,f +16352,3004,4,4,f +16352,3004,0,2,f +16352,3006,4,2,f +16352,3007,4,3,f +16352,3009,4,4,f +16352,3009,47,3,f +16352,3022,4,1,f +16352,3027,0,1,f +16352,3033,4,1,f +16352,3036,4,1,f +16352,3036,0,1,f +16352,3062a,14,2,f +16352,35,4,4,f +16352,36,0,4,f +16352,3612,4,2,f +16352,3612,1,2,f +16352,3613,1,2,f +16352,3613,4,2,f +16352,3614a,14,4,f +16352,685p01,14,1,f +16352,685px4,14,1,f +16352,7049b,0,4,f +16352,792c03,4,1,f +16352,792c03,1,1,f +16352,x196,0,1,f +16352,x197,6,1,f +16352,x407,4,1,f +16353,2446,15,1,f +16353,2447,40,1,f +16353,30187b,15,1,f +16353,30187c06,15,1,t +16353,30189,15,1,f +16353,30190,15,1,f +16353,3022,1,1,f +16353,3626bpr0351,14,1,f +16353,3710,15,1,f +16353,3900,15,1,f +16353,3962b,0,1,f +16353,4085c,0,2,f +16353,54200,33,3,f +16353,54200,33,1,t +16353,54200,36,1,f +16353,54200,46,1,f +16353,6014b,15,2,f +16353,6015,0,3,f +16353,970c00,0,1,f +16353,973pr1186c01,0,1,f +16355,2780,0,2,t +16355,2780,0,4,f +16355,2825,0,2,f +16355,30374,0,1,f +16355,32002,72,1,t +16355,32002,72,4,f +16355,32013,135,2,f +16355,32039,0,4,f +16355,32062,0,25,f +16355,32072,0,1,f +16355,32072,72,2,f +16355,32073,71,3,f +16355,32123b,71,2,t +16355,32123b,71,7,f +16355,32138,0,4,f +16355,32174,72,3,f +16355,32175,0,4,f +16355,32175,179,10,f +16355,32177,0,2,f +16355,32184,0,3,f +16355,32291,0,2,f +16355,32310,0,2,f +16355,32316,0,1,f +16355,32316,72,1,f +16355,32348,0,6,f +16355,32449,72,2,f +16355,32523,135,3,f +16355,32557,0,1,f +16355,33299a,135,3,f +16355,3705,0,2,f +16355,3708,0,1,f +16355,3713,71,3,t +16355,3713,71,8,f +16355,41669,135,10,f +16355,41669,0,2,f +16355,41677,0,12,f +16355,41677,135,6,f +16355,41677,72,2,f +16355,41678,135,2,f +16355,42003,0,4,f +16355,42074,179,2,f +16355,43093,1,5,f +16355,44036,179,3,f +16355,44294,71,1,f +16355,44807,179,2,f +16355,4519,71,15,f +16355,45749,0,4,f +16355,47296,72,1,f +16355,47298,0,2,f +16355,47298,179,2,f +16355,47326pat03,0,6,f +16355,47330,0,1,f +16355,47332,0,1,f +16355,48729a,57,2,f +16355,50858,179,1,f +16355,50858,0,2,f +16355,50898,72,1,f +16355,50899pr0002,135,1,f +16355,50900,0,1,f +16355,50901,0,1,f +16355,50903,14,1,f +16355,6141,1000,1,t +16355,6141,21,1,f +16355,6536,0,1,f +16355,6538b,0,2,f +16355,6553,71,2,f +16355,6553,0,2,f +16355,6558,0,12,f +16355,6632,135,4,f +16355,78c02,179,2,f +16355,78c04,179,1,f +16356,10197,72,1,f +16356,10928,72,2,f +16356,11153,1,2,f +16356,11211,71,4,f +16356,11213,71,2,f +16356,11215,71,2,f +16356,11476,71,1,f +16356,11476,15,2,f +16356,11477,308,2,f +16356,11477,72,2,f +16356,11833,57,1,f +16356,12618,0,1,f +16356,13608,179,2,f +16356,14769,71,1,f +16356,14769pr1030,71,3,f +16356,14769pr1031,4,2,f +16356,14769pr1032,4,1,f +16356,15064,308,2,f +16356,15068,72,4,f +16356,15068,308,1,f +16356,15092,72,1,f +16356,15391,71,2,f +16356,15392,72,3,f +16356,15458,72,2,f +16356,15462,28,4,f +16356,15535,4,3,f +16356,15573,272,3,f +16356,15672,1,2,f +16356,15712,71,11,f +16356,15712,1,1,f +16356,16968,0,1,f +16356,16968,71,1,f +16356,18352,72,2,f +16356,18587,71,2,f +16356,18588,72,2,f +16356,18651,0,6,f +16356,18654,72,1,f +16356,18671,272,3,f +16356,18674,72,1,f +16356,22380,272,1,f +16356,22380,191,1,f +16356,22380,2,1,f +16356,22385,1,4,f +16356,22385,179,1,f +16356,22385pr0016,57,1,f +16356,22385pr0024,47,1,f +16356,22385pr0039,36,1,f +16356,22385pr0048,57,1,f +16356,22385pr0049,57,1,f +16356,22387,272,4,f +16356,22388,179,8,f +16356,22388,57,6,f +16356,22391,272,2,f +16356,22392,15,2,f +16356,22393,179,1,f +16356,22394,179,1,f +16356,22395,179,1,f +16356,22407,57,2,f +16356,22408,179,3,f +16356,22425,0,1,f +16356,22484,57,3,f +16356,22487,179,1,f +16356,23405,1,4,f +16356,2357,1,4,f +16356,23860,179,1,f +16356,23861,148,1,f +16356,24078,71,1,f +16356,24093pr0003,52,1,f +16356,24097,179,2,f +16356,24101,179,1,f +16356,24104,179,1,f +16356,24108,33,1,f +16356,24108,57,1,f +16356,24128,179,1,f +16356,2412b,272,9,f +16356,2412b,57,5,f +16356,24133pr0002,4,1,f +16356,24133pr0003,4,1,f +16356,2419,1,2,f +16356,2420,71,2,f +16356,2431,1,2,f +16356,2432,72,1,f +16356,2432,1,2,f +16356,24324,297,1,f +16356,24375,0,64,f +16356,2445,72,1,f +16356,2449,71,4,f +16356,2450,72,8,f +16356,2453b,71,2,f +16356,2454a,71,4,f +16356,2454b,1,2,f +16356,2460,71,1,f +16356,2462,71,8,f +16356,2540,71,14,f +16356,2569,57,2,f +16356,2654,72,14,f +16356,2654,57,1,f +16356,2723,71,1,f +16356,2730,0,2,f +16356,2780,0,17,f +16356,2817,71,1,f +16356,2877,71,1,f +16356,3001,71,2,f +16356,3003,72,4,f +16356,3003,272,2,f +16356,3004,272,6,f +16356,3009,1,2,f +16356,3010,71,2,f +16356,30137,71,2,f +16356,30180,71,1,f +16356,3020,71,6,f +16356,3020,0,1,f +16356,3020,1,1,f +16356,3021,272,6,f +16356,3021,72,2,f +16356,3022,72,4,f +16356,3022,71,5,f +16356,3023,1,18,f +16356,3023,70,2,f +16356,3023,72,8,f +16356,30236,72,4,f +16356,30237b,72,2,f +16356,3028,72,1,f +16356,3029,1,1,f +16356,30292,57,2,f +16356,30292pr0001,57,1,f +16356,3031,72,4,f +16356,3032,71,1,f +16356,3034,72,4,f +16356,3034,71,2,f +16356,3034,0,1,f +16356,3035,72,2,f +16356,30350b,57,2,f +16356,30374,57,4,f +16356,3040b,71,8,f +16356,3040b,1,2,f +16356,3040b,272,4,f +16356,30414,1,2,f +16356,30503,71,2,f +16356,30526,72,2,f +16356,30540,71,2,f +16356,30540,1,2,f +16356,30541,0,4,f +16356,30553,71,1,f +16356,3062b,72,2,f +16356,3062b,1,8,f +16356,3065,47,1,f +16356,3068b,0,1,f +16356,3068b,272,4,f +16356,3069b,72,2,f +16356,3069b,1,4,f +16356,3069bpr0160,19,1,f +16356,3070bpr0157,15,1,f +16356,3070bpr0160,71,1,f +16356,32013,72,5,f +16356,32015,71,2,f +16356,32018,71,2,f +16356,32039,71,5,f +16356,32054,71,4,f +16356,32059,71,2,f +16356,32062,4,4,f +16356,32064a,0,2,f +16356,32064a,72,2,f +16356,32073,71,2,f +16356,32123b,14,9,f +16356,32184,71,2,f +16356,32187,179,4,f +16356,32270,0,1,f +16356,32278,72,2,f +16356,32523,1,6,f +16356,32524,72,4,f +16356,3298,272,2,f +16356,33057,484,1,f +16356,3460,71,2,f +16356,3622,1,6,f +16356,3622,71,2,f +16356,3626cpr1781,14,1,f +16356,3626cpr1782,14,1,f +16356,3626cpr1784,14,1,f +16356,3626cpr1785,179,1,f +16356,3626cpr1790,179,1,f +16356,3626cpr1798,4,1,f +16356,3660,72,2,f +16356,3660,1,2,f +16356,3665,72,6,f +16356,3666,272,2,f +16356,3666,71,2,f +16356,3673,71,2,f +16356,3679,71,2,f +16356,3680,1,2,f +16356,3700,72,2,f +16356,3700,14,1,f +16356,3701,1,6,f +16356,3702,71,2,f +16356,3705,0,5,f +16356,3706,4,2,f +16356,3707,0,1,f +16356,3709,71,1,f +16356,3710,1,3,f +16356,3710,272,1,f +16356,3713,4,7,f +16356,3713,71,12,f +16356,3747b,71,2,f +16356,3749,19,2,f +16356,3795,0,1,f +16356,3795,72,1,f +16356,3829c01,71,1,f +16356,3832,71,2,f +16356,3894,1,2,f +16356,3898,15,1,f +16356,3899,47,1,f +16356,3900,71,1,f +16356,3941,57,8,f +16356,3941,14,2,f +16356,3956,1,1,f +16356,4006,0,1,f +16356,4032a,71,25,f +16356,4032a,4,1,f +16356,4070,1,4,f +16356,4081b,0,4,f +16356,4083,14,1,f +16356,41239,71,2,f +16356,4162,272,4,f +16356,4162,71,4,f +16356,4175,71,2,f +16356,41854,308,1,f +16356,41862,71,2,f +16356,42003,72,2,f +16356,42610,71,2,f +16356,4274,1,9,f +16356,4274,71,4,f +16356,4282,71,3,f +16356,4282,72,6,f +16356,4286,1,4,f +16356,4287,71,2,f +16356,43093,1,9,f +16356,4345b,71,1,f +16356,4345b,1,2,f +16356,4346,47,1,f +16356,4346,71,2,f +16356,43719,57,2,f +16356,43857,71,2,f +16356,44676,272,2,f +16356,44728,72,4,f +16356,4497,0,1,f +16356,4522,0,1,f +16356,4528,179,1,f +16356,4588,72,1,f +16356,4590,72,1,f +16356,4598,1,4,f +16356,4599b,1,1,f +16356,4599b,4,1,f +16356,4740,57,2,f +16356,47457,72,1,f +16356,47457,71,4,f +16356,47457,15,2,f +16356,47457,308,1,f +16356,48336,4,1,f +16356,4865b,57,8,f +16356,48729b,71,2,f +16356,53451,15,2,f +16356,53451,4,6,f +16356,54200,71,4,f +16356,54200,72,2,f +16356,54200,308,2,f +16356,54200,272,4,f +16356,55013,72,1,f +16356,57028c01,71,1,f +16356,57520,0,10,f +16356,57796,72,1,f +16356,59349,1,2,f +16356,59426,72,6,f +16356,59443,0,1,f +16356,59443,72,5,f +16356,59900,57,5,f +16356,59900,71,2,f +16356,60169,57,2,f +16356,60470b,0,1,f +16356,60477,272,2,f +16356,60481,71,8,f +16356,60483,72,6,f +16356,60485,71,1,f +16356,60583b,71,2,f +16356,60596,72,1,f +16356,60621,148,1,f +16356,60897,71,4,f +16356,6111,72,1,f +16356,6112,71,2,f +16356,6118,148,2,f +16356,61409,1,4,f +16356,61409,72,4,f +16356,6141,57,28,f +16356,6141,71,32,f +16356,6190,72,1,f +16356,6222,72,2,f +16356,6232,72,2,f +16356,62462,15,1,f +16356,62462,179,1,f +16356,63868,72,2,f +16356,63965,71,1,f +16356,64728,4,1,f +16356,64867,182,1,f +16356,6558,1,10,f +16356,6575,72,1,f +16356,6587,28,2,f +16356,6632,72,2,f +16356,6636,71,2,f +16356,6636,72,2,f +16356,72454,0,1,f +16356,73983,1,4,f +16356,75937,179,1,f +16356,76766,1,2,f +16356,76766,71,2,f +16356,87079,71,1,f +16356,87083,72,3,f +16356,87544,272,12,f +16356,87552,1,8,f +16356,87552,41,1,f +16356,87580,272,1,f +16356,87620,72,4,f +16356,88072,71,3,f +16356,88323,72,64,f +16356,90195,71,1,f +16356,92582,71,1,f +16356,92593,71,4,f +16356,92690,71,1,f +16356,92947,71,2,f +16356,92950,15,2,f +16356,93062c02,179,2,f +16356,95199,72,2,f +16356,96874,25,1,t +16356,970c00pr0937,72,1,f +16356,970c00pr0938,71,1,f +16356,970c00pr0940,72,1,f +16356,970c00pr0947,0,1,f +16356,973pr3150c01,72,1,f +16356,973pr3151c01,71,1,f +16356,973pr3162c01,0,1,f +16356,98302,72,2,f +16356,98313,1,2,f +16356,98989,71,1,f +16356,99206,0,4,f +16356,99206,71,4,f +16356,99207,0,2,f +16356,99207,71,3,f +16356,99780,71,6,f +16356,99781,0,2,f +16357,2420,0,4,f +16357,2420,7,2,f +16357,2420,14,2,f +16357,2421,0,1,f +16357,2431,7,1,f +16357,2431,4,1,f +16357,2436,0,1,f +16357,2445,4,2,f +16357,2446,15,1,f +16357,2447,41,1,f +16357,2460,0,2,f +16357,2479,7,1,f +16357,2483,41,1,f +16357,2486,4,2,f +16357,298c02,15,1,f +16357,298c02,14,2,t +16357,298c02,14,2,f +16357,298c02,15,1,t +16357,3004,7,1,f +16357,3004,0,1,f +16357,3005,0,2,f +16357,3010,0,3,f +16357,3010,7,1,f +16357,3020,4,1,f +16357,3021,7,1,f +16357,3022,0,1,f +16357,3022,4,3,f +16357,3022,7,1,f +16357,3023,0,5,f +16357,3023,7,2,f +16357,3023,4,2,f +16357,3035,7,1,f +16357,3039,0,1,f +16357,3062b,4,4,f +16357,3062b,7,2,f +16357,3068b,0,1,f +16357,3069b,0,1,f +16357,3069b,7,2,f +16357,3070b,34,1,t +16357,3070b,34,1,f +16357,3070b,36,4,f +16357,3070b,36,4,t +16357,3176,0,1,f +16357,3298,7,2,f +16357,3460,14,1,f +16357,3460,4,1,f +16357,3460,7,2,f +16357,3623,4,2,f +16357,3626apr0001,14,2,f +16357,3641,0,6,f +16357,3660,0,1,f +16357,3666,0,2,f +16357,3666,7,2,f +16357,3709,7,1,f +16357,3710,0,2,f +16357,3710,7,2,f +16357,3710,4,1,f +16357,3738,7,1,f +16357,3747a,0,1,f +16357,3747a,7,2,f +16357,3787,0,1,f +16357,3794a,14,2,f +16357,3794a,7,1,f +16357,3794a,0,1,f +16357,3821p03,0,1,f +16357,3822p03,0,1,f +16357,3823,41,1,f +16357,3829c01,4,1,f +16357,3832,7,1,f +16357,3839b,0,1,f +16357,3937,7,1,f +16357,3937,0,1,f +16357,3938,0,1,f +16357,3938,7,1,f +16357,3957a,7,2,f +16357,4070,4,2,f +16357,4081b,4,2,f +16357,4081b,0,2,f +16357,4084,0,6,f +16357,4085b,0,2,f +16357,4162,7,2,f +16357,4175,0,1,f +16357,4213,0,1,f +16357,4286,0,3,f +16357,4315,0,1,f +16357,4349,7,2,f +16357,4485,4,1,f +16357,4488,4,1,f +16357,4600,0,3,f +16357,4600,7,3,f +16357,4624,15,12,f +16357,4625,0,1,f +16357,4859,0,2,f +16357,4873,14,2,f +16357,6141,46,6,f +16357,6141,15,2,f +16357,6141,7,1,f +16357,6141,7,1,t +16357,970c00,4,2,f +16357,973p14c01,15,2,f +16360,10201,71,2,f +16360,11211,4,1,f +16360,11289,41,1,f +16360,12752,9999,1,f +16360,12825,15,3,f +16360,13561,9999,1,f +16360,14210,0,1,f +16360,15207,0,2,f +16360,2412b,72,5,f +16360,2419,15,1,f +16360,2421,0,1,t +16360,2421,0,1,f +16360,2423,2,2,f +16360,2431,71,1,f +16360,2432,70,1,f +16360,2432,72,2,f +16360,2445,0,1,f +16360,2445,15,1,f +16360,2446,15,1,f +16360,2447,40,3,f +16360,2447,40,2,t +16360,2456,4,2,f +16360,2456,19,1,f +16360,2465,19,1,f +16360,2479,0,1,f +16360,2780,0,1,f +16360,2780,0,1,t +16360,298c02,1,2,f +16360,298c02,1,1,t +16360,3001,72,4,f +16360,3003,272,2,f +16360,3003,19,2,f +16360,3004,15,2,f +16360,3004,272,8,f +16360,3004,71,5,f +16360,3004,72,6,f +16360,3008,71,8,f +16360,3008,19,3,f +16360,3009,72,2,f +16360,3009,19,6,f +16360,3010,0,2,f +16360,3010,71,7,f +16360,3010,15,3,f +16360,30136,19,16,f +16360,30151a,47,1,f +16360,30153,33,1,f +16360,30171,0,2,f +16360,30173b,297,1,t +16360,30173b,297,1,f +16360,3020,1,3,f +16360,3021,71,4,f +16360,3021,14,1,f +16360,3022,1,2,f +16360,3023,70,3,f +16360,3023,46,2,f +16360,3023,15,2,f +16360,3023,71,16,f +16360,3023,36,4,f +16360,3024,71,8,f +16360,3024,71,2,t +16360,3024,182,2,f +16360,3024,36,4,f +16360,3024,46,1,t +16360,3024,46,2,f +16360,30248,72,1,f +16360,30292,41,2,f +16360,3031,19,3,f +16360,3032,0,2,f +16360,3032,71,1,f +16360,3034,70,5,f +16360,30350b,4,2,f +16360,30363,71,12,f +16360,30374,15,6,f +16360,30374,36,6,f +16360,30385,297,1,f +16360,3039,272,4,f +16360,3040b,15,2,f +16360,3040b,72,2,f +16360,30414,19,2,f +16360,30592,71,1,f +16360,3062b,70,4,f +16360,3069b,33,15,f +16360,3069b,28,2,f +16360,3069b,46,2,f +16360,3070b,36,1,f +16360,3070b,36,1,t +16360,3070b,34,1,f +16360,3070b,34,1,t +16360,32000,72,1,f +16360,32062,0,1,f +16360,3460,71,2,f +16360,3622,72,3,f +16360,3623,0,2,f +16360,3626cpr0411,14,1,f +16360,3626cpr0499,14,1,f +16360,3626cpr1086,14,1,f +16360,3626cpr1091,14,1,f +16360,3626cpr1145,14,1,f +16360,3626cpr1147,14,1,f +16360,3660,71,2,f +16360,3660,272,2,f +16360,3665,15,6,f +16360,3666,15,7,f +16360,3666,4,9,f +16360,3700,72,1,f +16360,3710,4,5,f +16360,3710,71,2,f +16360,3710,15,1,f +16360,3747b,72,6,f +16360,3794b,71,1,f +16360,3794b,15,1,f +16360,3795,72,1,f +16360,3795,4,2,f +16360,3795,15,2,f +16360,3795,71,3,f +16360,3829c01,14,2,f +16360,3941,15,1,f +16360,3941,19,22,f +16360,3958,72,1,f +16360,3962b,0,1,f +16360,40490,72,1,f +16360,4079,70,1,f +16360,4079,14,2,f +16360,41334,72,1,f +16360,4150pr0001,15,1,f +16360,4162,15,2,f +16360,4176,41,1,f +16360,4274,1,6,f +16360,4274,1,1,t +16360,4349,0,1,f +16360,43713,15,1,f +16360,43719,15,1,f +16360,44567a,0,2,f +16360,44661,15,1,f +16360,44728,1,4,f +16360,4477,0,2,f +16360,4488,71,9,f +16360,4740,47,1,f +16360,47457,72,3,f +16360,47753,15,1,f +16360,47998,15,2,f +16360,48092,19,2,f +16360,48336,71,10,f +16360,48336,19,2,f +16360,48336,2,2,f +16360,4865a,72,2,f +16360,4865a,71,3,f +16360,50745,15,4,f +16360,50745,4,4,f +16360,50950,0,2,f +16360,52031,15,1,f +16360,52031,4,1,f +16360,52037,72,1,f +16360,52107,71,5,f +16360,57895,47,2,f +16360,6003,72,2,f +16360,6014b,71,8,f +16360,60470a,71,1,f +16360,60476,71,6,f +16360,60478,71,4,f +16360,60581,72,2,f +16360,60581,272,3,f +16360,60581,40,1,f +16360,60583b,272,6,f +16360,60596,19,3,f +16360,60616a,47,1,f +16360,6091,71,4,f +16360,6112,71,3,f +16360,6141,70,2,f +16360,6141,71,2,t +16360,6141,46,1,t +16360,6141,71,5,f +16360,6141,70,1,t +16360,6141,46,1,f +16360,61482,71,1,f +16360,61482,71,1,t +16360,6179,28,1,f +16360,62113,72,1,f +16360,6256,82,1,f +16360,62930,47,1,f +16360,63864,0,2,f +16360,64567,71,1,f +16360,64567,71,1,t +16360,6636,71,1,f +16360,6636,0,2,f +16360,72454,15,1,f +16360,85863,71,2,f +16360,85984,71,6,f +16360,85984,72,2,f +16360,86035,0,1,f +16360,87079,272,3,f +16360,87079,72,2,f +16360,87079,15,3,f +16360,87079,71,2,f +16360,87087,19,2,f +16360,87552,41,6,f +16360,87580,71,4,f +16360,87609,15,2,f +16360,87697,0,8,f +16360,91405,72,1,f +16360,92081,0,1,f +16360,92099,15,1,f +16360,92280,71,5,f +16360,92583,40,1,f +16360,92585,4,1,f +16360,92593,71,2,f +16360,92593,15,1,f +16360,96874,25,1,t +16360,970c00,0,2,f +16360,970c00pr0293,272,1,f +16360,970c00pr0406,272,3,f +16360,973pr1947bc01,272,1,f +16360,973pr2190c01,73,3,f +16360,973pr2196c01,72,2,f +16360,98138,33,2,f +16360,98138,33,1,t +16360,98835,72,1,f +16361,2958pb028,0,3,f +16361,2958pb029,0,3,f +16361,30374,70,8,f +16361,32062,0,4,f +16361,3626bpr0251,14,4,f +16361,3626bpr0433,14,8,f +16361,3626bpr0434,14,2,f +16361,3626bpr0435,14,8,f +16361,4095,0,1,f +16361,4095,70,1,f +16361,4497,80,8,f +16361,4697b,71,2,f +16361,48495,82,2,f +16361,48495,80,8,f +16361,50231,272,1,f +16361,50231,4,1,f +16361,53450,82,2,f +16361,53450,132,20,f +16361,53451,15,44,f +16361,53705,132,12,f +16361,6126a,57,4,f +16361,64567,71,4,f +16361,970c00,272,11,f +16361,970x026,4,11,f +16361,973pr1212c01,72,11,f +16361,973pr1215c01,272,11,f +16361,chessboard,9999,1,f +16361,g577stor,9999,1,f +16361,vik028,9999,1,f +16361,vik029,9999,1,f +16361,vik030,9999,2,f +16361,vik031,9999,2,f +16361,vik036,9999,2,f +16361,vik037,9999,2,f +16362,3068pb01,15,1,f +16362,3068pb02,15,1,f +16362,3068pb22,15,1,f +16362,4231,1,1,f +16362,fab2c,9999,1,f +16362,fabef1,1,1,f +16362,fabeh8,366,1,f +16363,2456,14,1,f +16363,3001,4,1,f +16363,3001,0,1,f +16363,3001,14,2,f +16363,3002,4,2,f +16363,3003,4,2,f +16363,3003,14,4,f +16363,3003,15,2,f +16363,3003pe2,14,2,f +16363,4727,2,1,f +16363,4728,15,1,f +16363,4744,1,1,f +16363,4744pr0002,4,1,f +16363,6213p02,4,1,f +16363,6215,1,2,f +16364,2654,72,1,f +16364,3004,15,2,f +16364,30173a,135,1,f +16364,30177,15,1,f +16364,3022,15,1,f +16364,3626bpr0747,14,1,f +16364,4497,148,1,f +16364,4621829,9999,1,f +16364,4621830,9999,1,f +16364,4621831,9999,1,f +16364,4621832,9999,1,f +16364,4621833,9999,1,f +16364,63965,0,1,f +16364,92547pr0003,73,1,f +16364,93058,297,2,f +16364,970c00pr0190,15,1,f +16364,973pr1715c01,15,1,f +16367,2421,7,2,f +16367,2445,1,2,f +16367,3003,14,3,f +16367,3020,14,3,f +16367,3039,47,1,f +16367,3065,47,2,f +16367,3298,14,1,f +16367,3641,0,2,f +16367,3747a,14,1,f +16367,3795,1,1,f +16367,3795,14,1,f +16367,3832,1,1,f +16367,4488,7,2,f +16367,4600,7,1,f +16367,4624,14,2,f +16368,2340,4,2,f +16368,2340,15,2,f +16368,2419,0,3,f +16368,2419,15,1,f +16368,2432,15,1,f +16368,2462,15,6,f +16368,2465,4,4,f +16368,2540,0,2,f +16368,2625,15,2,f +16368,2626,4,2,f +16368,2654,0,6,f +16368,298c04,15,4,f +16368,3001,1,1,f +16368,3003,4,2,f +16368,3004,15,4,f +16368,3004,14,1,f +16368,3008,15,2,f +16368,3008p25,15,6,f +16368,3009,4,8,f +16368,3009,7,4,f +16368,3009p25,15,6,f +16368,3009p26,15,6,f +16368,3010,15,1,f +16368,3010,4,1,f +16368,3020,14,1,f +16368,3021,15,4,f +16368,3021,0,1,f +16368,3022,15,2,f +16368,3023,15,5,f +16368,3024,0,2,f +16368,3024,15,4,f +16368,3030,0,1,f +16368,3032,15,2,f +16368,3035,0,1,f +16368,3036,15,1,f +16368,3039,47,2,f +16368,3068bp67,15,4,f +16368,3069b,4,6,f +16368,3070b,34,1,f +16368,3070b,36,1,f +16368,3139,0,8,f +16368,3455,15,1,f +16368,3456,15,2,f +16368,3460,0,2,f +16368,3460,15,4,f +16368,3622,4,2,f +16368,3622,15,2,f +16368,3623,0,6,f +16368,3623,15,6,f +16368,3660,4,2,f +16368,3660p02,15,2,f +16368,3665,4,2,f +16368,3666,7,2,f +16368,3666,15,2,f +16368,3676,15,2,f +16368,3710,0,1,f +16368,3710,15,2,f +16368,3795,0,1,f +16368,3795,15,2,f +16368,3795,1,1,f +16368,3830,4,2,f +16368,3830,15,2,f +16368,3831,15,2,f +16368,3831,4,2,f +16368,4289,15,1,f +16368,4477,0,2,f +16368,4477,15,8,f +16368,4599a,15,1,f +16368,4624,7,4,f +16368,4624,14,4,f +16368,6081,15,6,f +16368,6091,15,10,f +16368,6141,46,1,f +16368,6141,15,12,f +16368,6141,0,8,f +16369,12602,4,2,f +16369,16874,15,1,f +16369,3437,191,1,f +16369,3437,10,2,f +16369,61649,14,1,f +16369,63871,4,2,f +16369,75121,4,1,f +16369,88360,28,1,f +16369,98459,70,1,f +16375,11211,71,1,f +16375,11211,4,2,f +16375,11303,1,1,f +16375,11477,15,1,f +16375,14226c11,0,1,f +16375,15068,15,2,f +16375,15573,72,3,f +16375,15712,71,2,f +16375,19220,0,1,f +16375,2447,40,1,t +16375,2447,40,2,f +16375,2456,72,1,f +16375,2458,71,1,f +16375,2486,14,1,f +16375,3002,15,1,f +16375,30031,72,2,f +16375,3021,2,1,f +16375,3023,33,1,f +16375,3023,46,1,f +16375,3023,14,1,f +16375,3039,15,1,f +16375,3040bpr0003,71,1,f +16375,3062b,72,1,f +16375,3062b,14,2,f +16375,3062b,33,1,f +16375,3070bpr0007,71,1,t +16375,3070bpr0007,71,1,f +16375,3622,15,1,f +16375,3626cpr0754,14,1,f +16375,3626cpr0920,14,1,f +16375,3626cpr1087,14,1,f +16375,3626cpr1580,14,1,f +16375,3710,4,1,f +16375,3832,72,1,f +16375,3834,320,2,f +16375,3834,82,1,f +16375,3835,0,1,f +16375,3838,14,2,f +16375,4006,0,1,f +16375,4083,0,1,f +16375,4349,4,1,f +16375,44674,4,2,f +16375,44728,15,1,f +16375,4599b,14,1,t +16375,4599b,14,3,f +16375,4740,72,2,f +16375,4740,2,1,f +16375,59900,182,2,f +16375,6014b,15,4,f +16375,60897,14,2,f +16375,6126b,182,2,f +16375,6141,72,1,t +16375,6141,72,1,f +16375,6157,71,2,f +16375,6158,72,2,f +16375,62462,71,1,f +16375,64647,182,1,t +16375,64647,182,2,f +16375,85984,15,1,f +16375,87087,15,1,f +16375,87697,0,4,f +16375,92280,4,1,f +16375,92926,2,1,f +16375,970c00,0,1,f +16375,970c00,1,1,f +16375,970c00pr0408,0,2,f +16375,973pr1244c01,73,1,f +16375,973pr2188c01,0,2,f +16375,973pr2249c01,15,1,f +16376,3004,2,1,f +16376,3004,19,3,f +16376,3005,19,1,f +16376,3005,2,2,f +16376,3021,19,1,f +16376,3023,2,2,f +16376,3023,19,2,f +16376,3031,70,1,f +16376,3039,2,2,f +16376,3622,2,1,f +16376,3623,2,1,f +16376,3660,19,2,f +16376,3665,19,1,f +16376,3665,2,5,f +16376,4070,2,2,f +16376,4286,2,2,f +16376,54200,2,6,f +16376,54200,2,1,t +16376,6141,0,2,f +16376,6141,0,1,t +16380,2412b,0,2,f +16380,2431,0,2,f +16380,2456,14,2,f +16380,2458,14,1,f +16380,2654,0,2,f +16380,3010,14,1,f +16380,3020,14,1,f +16380,3031,14,1,f +16380,3040b,14,2,f +16380,3298pb002,4,1,f +16380,3666,0,1,f +16380,3710,0,2,f +16380,3747b,14,2,f +16380,3829c01,14,1,f +16380,4081b,4,2,f +16380,4617b,0,1,f +16380,6141,15,2,f +16380,6141,46,2,f +16382,87993,15,1,f +16382,87994,35,1,f +16382,88646,0,1,f +16382,970x199,71,1,f +16382,973pr1945bc01,71,1,f +16382,98365pr0001,71,1,f +16383,3004,0,1,f +16383,3004,15,1,f +16383,3004p0b,14,1,f +16383,3010,14,1,f +16383,3021,4,1,f +16383,3022,0,1,f +16383,3039,15,2,f +16384,3041,0,10,f +16384,3043,0,10,f +16384,3044b,0,6,f +16384,3045,0,18,f +16384,3048c,0,4,f +16385,2039,15,1,f +16385,22667,27,2,f +16385,22667,27,1,t +16385,2339,272,2,f +16385,2357,272,4,f +16385,2357,71,3,f +16385,2357,72,3,f +16385,2357,19,9,f +16385,2357,70,3,f +16385,2362b,15,20,f +16385,2412b,80,4,f +16385,2420,71,10,f +16385,2420,0,6,f +16385,2420,19,4,f +16385,2420,70,4,f +16385,2420,72,11,f +16385,2431,15,1,f +16385,2431,71,23,f +16385,2431,70,5,f +16385,2431,72,1,f +16385,2439,71,1,f +16385,2456,71,2,f +16385,2540,71,1,f +16385,2546,72,4,f +16385,2780,0,2,f +16385,2780,0,1,t +16385,2877,71,2,f +16385,2877,72,2,f +16385,2921,71,4,f +16385,3001,71,12,f +16385,3001,70,4,f +16385,3002,71,2,f +16385,3002,70,2,f +16385,3003,0,5,f +16385,3003,272,4,f +16385,3004,320,30,f +16385,3004,72,25,f +16385,3004,19,12,f +16385,3004,272,39,f +16385,3004,73,25,f +16385,3004,70,1,f +16385,3004,71,12,f +16385,30044,15,10,f +16385,30046,0,10,f +16385,3005,320,10,f +16385,3005,272,12,f +16385,3005,19,4,f +16385,3005,72,2,f +16385,3005,71,6,f +16385,3005,15,16,f +16385,30055,70,2,f +16385,3006,70,2,f +16385,3007,71,1,f +16385,3008,70,21,f +16385,3008,19,20,f +16385,3008,71,29,f +16385,3009,70,16,f +16385,3009,71,12,f +16385,3009,19,14,f +16385,3010,71,3,f +16385,3010,272,19,f +16385,3010,19,2,f +16385,3010,70,10,f +16385,30134,70,1,f +16385,30136,72,28,f +16385,30136,70,17,f +16385,30179,0,5,f +16385,3020,15,5,f +16385,3020,71,10,f +16385,3020,72,3,f +16385,3020,70,7,f +16385,3020,19,2,f +16385,3020,0,2,f +16385,3021,14,2,f +16385,3021,71,1,f +16385,3021,15,4,f +16385,3021,19,10,f +16385,3021,72,5,f +16385,3022,72,2,f +16385,3022,15,4,f +16385,3022,71,1,f +16385,3022,70,4,f +16385,3023,15,28,f +16385,3023,73,8,f +16385,3023,36,9,f +16385,3023,71,18,f +16385,3023,70,2,f +16385,3023,72,3,f +16385,3023,19,20,f +16385,3023,320,20,f +16385,3024,272,9,f +16385,3024,70,7,f +16385,3024,15,24,f +16385,3024,71,27,f +16385,3024,320,34,f +16385,3024,73,2,f +16385,3024,0,2,f +16385,3024,19,4,f +16385,3024,72,9,f +16385,3024,36,27,f +16385,3028,72,1,f +16385,3029,72,7,f +16385,3030,72,6,f +16385,3032,72,3,f +16385,3034,72,1,f +16385,3034,15,6,f +16385,3034,71,1,f +16385,3034,70,3,f +16385,3035,0,2,f +16385,3036,0,6,f +16385,30374,0,2,f +16385,30383,72,2,f +16385,3062b,272,2,f +16385,3062b,72,14,f +16385,3062b,46,4,f +16385,3062b,70,25,f +16385,3062b,19,8,f +16385,3062b,71,6,f +16385,3068b,71,2,f +16385,3068b,72,45,f +16385,3069b,19,4,f +16385,3069b,15,17,f +16385,3069b,72,51,f +16385,3069b,73,10,f +16385,3069b,70,45,f +16385,3069b,71,20,f +16385,3069b,14,14,f +16385,3070b,15,36,f +16385,3070b,19,1,t +16385,3070b,70,11,f +16385,3070b,71,36,f +16385,3070b,14,2,t +16385,3070b,14,14,f +16385,3070b,19,3,f +16385,3070b,70,3,t +16385,3070b,72,3,t +16385,3070b,72,44,f +16385,3070b,15,3,t +16385,3070b,71,5,t +16385,32028,71,6,f +16385,3307,19,1,f +16385,3308,272,1,f +16385,33320,72,5,f +16385,3455,19,1,f +16385,3460,0,4,f +16385,3460,19,8,f +16385,3460,15,2,f +16385,3460,71,8,f +16385,3622,19,4,f +16385,3622,70,11,f +16385,3622,71,10,f +16385,3623,15,2,f +16385,3623,19,9,f +16385,3623,71,2,f +16385,3623,72,2,f +16385,3626b,47,1,f +16385,3626bpr0001,14,3,f +16385,3633,72,6,f +16385,3660,19,6,f +16385,3665,70,16,f +16385,3666,70,5,f +16385,3666,71,5,f +16385,3666,320,2,f +16385,3666,19,4,f +16385,3666,72,6,f +16385,3666,0,2,f +16385,3679,71,8,f +16385,3680,71,4,f +16385,3680,0,4,f +16385,3700,0,4,f +16385,3710,19,4,f +16385,3710,70,2,f +16385,3710,15,10,f +16385,3710,320,10,f +16385,3710,72,13,f +16385,3710,0,4,f +16385,3710,71,4,f +16385,3710,272,2,f +16385,3747b,15,2,f +16385,3747b,19,2,f +16385,3794a,15,5,f +16385,3794a,272,2,f +16385,3794a,71,4,f +16385,3794a,19,4,f +16385,3795,70,2,f +16385,3795,71,1,f +16385,3795,19,2,f +16385,3795,72,2,f +16385,3832,70,3,f +16385,3832,72,2,f +16385,3832,0,2,f +16385,3832,71,1,f +16385,3836,70,1,f +16385,3857,2,2,f +16385,3899,14,1,f +16385,3899,4,1,f +16385,3899,47,1,f +16385,3901,71,1,f +16385,3937,72,4,f +16385,3940b,0,2,f +16385,3957a,15,2,f +16385,3958,72,2,f +16385,40251,70,1,f +16385,4032a,14,2,f +16385,4070,15,2,f +16385,4070,320,20,f +16385,4070,70,60,f +16385,4070,71,2,f +16385,4085c,71,2,f +16385,4132,15,5,f +16385,4133,15,5,f +16385,41539,0,4,f +16385,4162,71,3,f +16385,4162,15,1,f +16385,4162,72,5,f +16385,4274,1,1,t +16385,4274,1,2,f +16385,43888,272,4,f +16385,43898,15,2,f +16385,44301a,15,5,f +16385,44301a,72,2,f +16385,44302a,71,5,f +16385,44302a,72,4,f +16385,4460b,320,36,f +16385,4477,0,2,f +16385,4477,15,3,f +16385,4530,28,1,f +16385,4599a,71,1,f +16385,4599a,0,2,f +16385,4719,4,1,f +16385,4733,0,2,f +16385,4735,0,2,f +16385,4740,0,4,f +16385,4740,15,1,f +16385,4740,71,1,f +16385,50745,15,5,f +16385,54200,15,2,f +16385,54200,72,8,f +16385,54200,272,2,f +16385,54200,70,20,f +16385,54383,72,4,f +16385,54384,72,4,f +16385,57895,47,5,f +16385,6091,15,16,f +16385,6091,71,16,f +16385,6091,14,14,f +16385,6091,320,16,f +16385,6106,0,2,f +16385,6120,15,11,f +16385,6134,71,4,f +16385,6141,71,1,t +16385,6141,0,8,f +16385,6141,0,1,t +16385,6141,71,4,f +16385,6141,72,17,f +16385,6141,72,4,t +16385,6141,19,1,t +16385,6141,19,2,f +16385,6141,70,4,t +16385,6141,70,18,f +16385,6180,71,1,f +16385,6182,19,12,f +16385,6182,71,8,f +16385,6231,71,4,f +16385,6231,15,10,f +16385,6541,15,2,f +16385,6636,72,3,f +16385,6636,15,2,f +16385,6636,19,6,f +16385,6636,70,10,f +16385,6636,71,21,f +16385,73194c01,71,1,f +16385,73312,0,1,f +16385,75c10,0,2,f +16385,92851,47,2,f +16385,970c00,15,1,f +16385,970c00,4,1,f +16385,970c00,71,1,f +16385,973c01,15,1,f +16385,973pr1169c01,73,1,f +16385,973pr1192c01,0,1,f +16386,2412b,25,3,f +16386,2450,0,4,f +16386,2540,72,2,f +16386,2654,0,1,f +16386,30035,0,1,f +16386,3020,25,2,f +16386,3022,25,3,f +16386,3023,72,4,f +16386,3023,25,1,f +16386,30361c,0,1,f +16386,30414,0,1,f +16386,30503,0,2,f +16386,30553,0,1,f +16386,3068b,0,1,f +16386,3069bpb078a,25,1,f +16386,32054,0,6,f +16386,32062,4,5,f +16386,32064b,72,4,f +16386,32174,0,3,f +16386,32174,25,2,f +16386,32192,0,2,f +16386,3709,0,1,f +16386,3710,25,1,f +16386,3794a,0,3,f +16386,3956,0,1,f +16386,40379,25,3,f +16386,4185,25,2,f +16386,43710,0,1,f +16386,43711,0,1,f +16386,44567a,0,1,f +16386,4519,71,2,f +16386,4588,135,1,f +16386,4589,182,1,f +16386,47298,0,2,f +16386,47457,135,1,f +16386,47755,25,1,f +16386,47757,0,3,f +16386,48729a,72,1,t +16386,48729a,72,2,f +16386,53984,135,2,f +16386,53988,135,1,f +16386,53989,135,5,f +16386,57908,72,2,f +16386,57909a,72,3,f +16386,57910,72,2,f +16386,6141,0,2,f +16386,6141,182,1,f +16386,6141,0,1,t +16386,6141,182,1,t +16386,6553,0,3,f +16388,2654,27,1,f +16388,3004,27,2,f +16388,3022,27,1,f +16388,3626cpr0869,27,1,f +16388,3848,297,1,f +16388,3957a,0,1,f +16388,4643621,9999,1,f +16388,4643622,9999,1,f +16388,4643623,9999,1,f +16388,4643624,9999,1,f +16388,4643625,9999,1,f +16388,53451,15,1,t +16388,53451,15,1,f +16388,58176,35,1,f +16388,92338,0,1,f +16388,970c00pr0269,27,1,f +16388,973pr1894c01,27,1,f +16388,98136,27,1,f +16388,98153pr0002,27,1,f +16388,98342pr0001,27,1,f +16388,98354pr0003,85,1,f +16391,2486,4,6,f +16391,3185,15,10,f +16391,3186,15,2,f +16391,3187,15,2,f +16391,3596p01,15,1,f +16391,3596pb03,15,1,f +16391,3957a,15,8,f +16391,4495a,1,2,f +16391,4495a,4,2,f +16391,4495a,14,2,f +16391,4495a,2,2,f +16392,11055,4,9,f +16392,12825,0,8,f +16392,14728c125,0,1,f +16392,14728c35,0,2,f +16392,2335p30,15,2,f +16392,2343,14,2,f +16392,2357,0,6,f +16392,2357,15,4,f +16392,2420,0,6,f +16392,2420,14,2,f +16392,2431,0,10,f +16392,2445,0,1,f +16392,2445,14,1,f +16392,2449,0,2,f +16392,2449,14,4,f +16392,2452,0,5,f +16392,2462,0,4,f +16392,2465,15,2,f +16392,2489,6,1,f +16392,2525p31,15,2,f +16392,2526,6,1,f +16392,2527,4,4,f +16392,2528pb01,0,1,f +16392,2529,15,8,f +16392,2530,8,9,f +16392,2530,8,1,t +16392,2537a,0,2,f +16392,2538a,0,3,f +16392,2539,8,2,f +16392,2540,0,13,f +16392,2541,6,4,f +16392,2542,4,2,f +16392,2543,1,3,f +16392,2543,4,3,f +16392,2544,6,1,f +16392,2544,0,1,f +16392,2546p01,4,1,f +16392,2550c01,6,1,f +16392,2551,6,1,f +16392,2554,6,4,f +16392,2557c03,6,1,f +16392,2559c03,6,1,f +16392,2560,6,3,f +16392,2561,6,3,f +16392,2562,6,6,f +16392,2564,0,1,f +16392,2566,0,3,f +16392,3001,0,10,f +16392,3003,0,6,f +16392,3004,15,6,f +16392,3004,0,17,f +16392,3005,0,23,f +16392,3008,0,10,f +16392,3009,0,11,f +16392,3010,15,4,f +16392,3010,0,11,f +16392,3010,14,2,f +16392,3020,7,3,f +16392,3020,0,4,f +16392,3020,14,1,f +16392,3021,0,7,f +16392,3022,0,10,f +16392,3022,14,1,f +16392,3023,7,4,f +16392,3023,0,1,t +16392,3023,0,28,f +16392,3023,14,6,f +16392,3024,14,1,f +16392,3024,0,11,f +16392,3028,7,1,f +16392,3030,7,1,f +16392,3031,0,4,f +16392,3033,7,2,f +16392,3034,0,2,f +16392,3034,7,1,f +16392,3035,0,1,f +16392,3036,7,2,f +16392,3037,0,2,f +16392,3038,0,2,f +16392,3039,0,1,f +16392,3040b,14,10,f +16392,3040b,0,10,f +16392,3048c,14,1,f +16392,3062b,0,24,f +16392,3068bp30,15,2,f +16392,3069b,0,11,f +16392,3127,7,1,f +16392,3184,0,12,f +16392,3455,14,2,f +16392,3455,0,3,f +16392,3460,0,1,t +16392,3460,7,1,f +16392,3460,0,12,f +16392,3581,0,4,f +16392,3622,15,2,f +16392,3622,0,17,f +16392,3623,7,4,f +16392,3623,14,4,f +16392,3623,0,15,f +16392,3626bp35,14,4,f +16392,3626bp40,14,2,f +16392,3626bp47,14,1,f +16392,3626bp49,14,2,f +16392,3633,0,6,f +16392,3659,0,7,f +16392,3660,0,6,f +16392,3665,0,10,f +16392,3665,14,6,f +16392,3666,7,2,f +16392,3666,14,1,f +16392,3666,0,22,f +16392,3684,0,4,f +16392,3700,14,2,f +16392,3700,0,1,f +16392,3710,7,1,f +16392,3710,14,3,f +16392,3710,0,15,f +16392,3747a,0,2,f +16392,3747a,14,1,f +16392,3794a,14,1,f +16392,3794a,0,2,f +16392,3795,7,2,f +16392,3795,0,4,f +16392,3832,7,4,f +16392,3848,6,2,f +16392,3849,0,1,f +16392,3853,14,6,f +16392,3856,4,4,f +16392,3933a,0,1,f +16392,3934a,0,1,f +16392,3935,0,2,f +16392,3936,0,2,f +16392,3937,0,4,f +16392,3937,14,1,f +16392,3938,14,5,f +16392,3957a,0,3,f +16392,3959,0,2,f +16392,4032a,0,3,f +16392,4070,0,6,f +16392,4081b,0,6,f +16392,4081b,14,1,f +16392,4081b,0,1,t +16392,4085b,0,8,f +16392,4085b,7,12,f +16392,4088,14,3,f +16392,4208,0,1,f +16392,4209,6,1,f +16392,4213,7,2,f +16392,4213,0,4,f +16392,4276b,14,1,f +16392,4282,0,1,f +16392,4282,7,2,f +16392,4286,14,16,f +16392,4286,0,2,f +16392,4287,14,4,f +16392,4287,15,2,f +16392,4315,7,4,f +16392,4315,0,2,f +16392,4475,14,1,f +16392,4477,14,2,f +16392,4477,0,30,f +16392,4504,0,4,f +16392,4507,0,1,f +16392,4589,0,11,f +16392,4589,14,12,f +16392,4590,0,1,f +16392,4600,0,8,f +16392,4623,0,10,f +16392,4624,6,16,f +16392,4728,14,2,f +16392,4735,0,1,f +16392,4738b,6,2,f +16392,4790,6,1,f +16392,4844,0,2,f +16392,4854,0,1,f +16392,4859,14,1,f +16392,4865a,0,4,f +16392,56823c50,0,1,f +16392,57503,334,4,f +16392,57504,334,4,f +16392,57505,334,4,f +16392,57506,334,4,f +16392,6141,14,1,t +16392,6141,0,33,f +16392,6141,46,13,f +16392,6141,14,3,f +16392,73590c01a,0,1,f +16392,84943,8,4,f +16392,970c00,1,2,f +16392,970c00,7,1,f +16392,970c00,15,4,f +16392,970d01,0,1,f +16392,973c11,14,1,f +16392,973p31c01,14,2,f +16392,973p32c01,14,2,f +16392,973p34c01,1,2,f +16392,973p36c01,0,1,f +16392,973p38c01,15,1,f +16392,sailbb04,15,2,f +16392,sailbb05,15,2,f +16392,sailbb23,15,1,f +16393,10052,71,1,f +16393,10113,0,1,f +16393,11477,0,2,f +16393,11477,272,14,f +16393,11477,71,2,f +16393,15068,272,1,f +16393,15341,179,3,f +16393,15427pr0001,0,1,f +16393,15428pr0001,0,1,f +16393,15535,72,1,f +16393,15573,272,4,f +16393,15573,0,2,f +16393,15706,322,8,f +16393,15712,71,5,f +16393,16770,41,8,f +16393,18601,72,1,f +16393,18649,0,6,f +16393,18651,0,2,f +16393,18868a,41,1,f +16393,19981pr0001,41,1,f +16393,19981pr0002,41,1,f +16393,19981pr0003,41,1,f +16393,21445,0,2,f +16393,21845,0,1,f +16393,2412b,272,4,f +16393,2412b,179,9,f +16393,2419,71,2,f +16393,2540,71,5,f +16393,2540,0,3,f +16393,298c02,71,1,f +16393,298c02,71,1,t +16393,30028,0,4,f +16393,3003,71,2,f +16393,3005,272,2,f +16393,3020,322,1,f +16393,3020,14,1,f +16393,3020,0,2,f +16393,3020,272,2,f +16393,3021,322,6,f +16393,3021,71,6,f +16393,3022,72,3,f +16393,3023,0,4,f +16393,3023,19,1,f +16393,3045,71,2,f +16393,3069b,322,10,f +16393,3069bpr0153,0,1,f +16393,3070b,182,1,t +16393,3070b,182,1,f +16393,32064a,71,2,f +16393,3626cpr0896,78,1,f +16393,3626cpr1644,14,1,f +16393,3626cpr1765,78,1,f +16393,3675,272,2,f +16393,3701,71,1,f +16393,3710,272,1,f +16393,3710,322,1,f +16393,3937,14,1,f +16393,3938,0,1,f +16393,3941,41,1,f +16393,4286,322,2,f +16393,4287,71,2,f +16393,44567a,71,1,f +16393,44676,272,2,f +16393,4477,72,1,f +16393,4595,71,1,f +16393,4600,0,1,f +16393,4740,182,2,f +16393,4865b,41,4,f +16393,48729b,72,1,t +16393,48729b,72,1,f +16393,49668,0,2,f +16393,50231,72,1,f +16393,54200,182,1,f +16393,54200,182,1,t +16393,54200,272,1,t +16393,54200,41,1,t +16393,54200,71,14,f +16393,54200,41,2,f +16393,54200,272,2,f +16393,54200,71,1,t +16393,6019,0,2,f +16393,60476,71,2,f +16393,60477,72,2,f +16393,6091,272,2,f +16393,6131,72,1,f +16393,61409,71,5,f +16393,6141,72,3,f +16393,6141,72,2,t +16393,62360,41,2,f +16393,63868,0,5,f +16393,63965,70,1,f +16393,6553,0,2,f +16393,6632,71,2,f +16393,74967,0,4,f +16393,85984,0,2,f +16393,87580,272,1,f +16393,88072,71,1,f +16393,92747pr0002,52,1,f +16393,92747pr0003,52,1,f +16393,92747pr0004,52,1,f +16393,92747pr0005,52,1,f +16393,92747pr0006,52,1,f +16393,96874,25,1,t +16393,970c00,72,2,f +16393,970c00pr0628,0,1,f +16393,973pr2053c01,72,1,f +16393,973pr2590c01,0,1,f +16393,973pr2922c01,72,1,f +16393,98138,41,1,t +16393,98138,52,1,t +16393,98138,41,14,f +16393,98138,52,1,f +16393,98397,71,2,f +16393,98721,0,3,f +16393,98721,0,2,t +16393,99207,0,1,f +16393,99780,72,1,f +16393,99781,0,1,f +16394,11214,72,5,f +16394,11946,15,3,f +16394,11947,15,3,f +16394,12799,72,1,f +16394,15100,0,4,f +16394,18948,15,3,f +16394,24924,9999,1,f +16394,2723,0,4,f +16394,2780,0,1,t +16394,2780,0,32,f +16394,32002,19,1,t +16394,32002,19,1,f +16394,32009,0,2,f +16394,32009,15,2,f +16394,32013,15,2,f +16394,32015,15,4,f +16394,32054,0,5,f +16394,32056,0,2,f +16394,32056,27,2,f +16394,32062,4,6,f +16394,32073,71,5,f +16394,32140,15,2,f +16394,32140,0,4,f +16394,32271,71,2,f +16394,32278,15,2,f +16394,32316,15,4,f +16394,32523,15,2,f +16394,32523,0,2,f +16394,32526,0,6,f +16394,32526,15,3,f +16394,3706,0,3,f +16394,3708,0,2,f +16394,3713,71,1,t +16394,3713,71,7,f +16394,41669,33,1,f +16394,41669,36,1,f +16394,41677,0,2,f +16394,4274,71,1,t +16394,4274,71,2,f +16394,43093,1,2,f +16394,44294,14,1,f +16394,44309,0,4,f +16394,4519,71,6,f +16394,56145,27,4,f +16394,60483,71,2,f +16394,6141,33,1,t +16394,6141,33,2,f +16394,63869,0,1,f +16394,6536,15,4,f +16394,6536,0,6,f +16394,6558,1,18,f +16394,6632,0,1,f +16394,98138,47,2,f +16394,98138,47,1,t +16395,30106,47,1,f +16395,30153,42,1,t +16395,30153,42,1,f +16395,3941,70,1,f +16395,4032a,4,1,f +16395,60474,0,1,f +16396,12023,15,1,f +16396,3437,27,1,f +16396,3437,41,1,f +16396,3437,73,1,f +16396,54651,0,1,f +16397,2412b,383,2,f +16397,2450,4,2,f +16397,2456,4,2,f +16397,2456,14,2,f +16397,3001,14,6,f +16397,3001,15,8,f +16397,3001,1,6,f +16397,3001,22,4,f +16397,3001,0,8,f +16397,3001,25,4,f +16397,3001,4,10,f +16397,3002,1,4,f +16397,3002,0,4,f +16397,3002,15,6,f +16397,3002,25,2,f +16397,3002,4,6,f +16397,3002,14,4,f +16397,3003,22,6,f +16397,3003,4,16,f +16397,3003,8,4,f +16397,3003,0,12,f +16397,3003,15,12,f +16397,3003,25,6,f +16397,3003,14,12,f +16397,3003,1,12,f +16397,3004,4,16,f +16397,3004,25,6,f +16397,3004,8,6,f +16397,3004,15,12,f +16397,3004,22,6,f +16397,3004,14,12,f +16397,3004,1,12,f +16397,3004,0,12,f +16397,3004p0b,14,1,f +16397,3005,14,22,f +16397,3005,0,18,f +16397,3005,4,22,f +16397,3005,1,22,f +16397,3005,15,18,f +16397,3005pe1,8,2,f +16397,3007,15,2,f +16397,3008,14,2,f +16397,3008,4,2,f +16397,3008,1,2,f +16397,3009,4,2,f +16397,3009,1,2,f +16397,3009,22,2,f +16397,3009,0,2,f +16397,3009,15,2,f +16397,3010,15,4,f +16397,3010,1,4,f +16397,3010,0,6,f +16397,3010,14,4,f +16397,3010,22,4,f +16397,3010,25,4,f +16397,3010,4,6,f +16397,3020,14,2,f +16397,3020,15,2,f +16397,3020,22,2,f +16397,3020,4,2,f +16397,3020,25,2,f +16397,3020,0,2,f +16397,3020,1,2,f +16397,3021,4,4,f +16397,3021,1,4,f +16397,3021,15,4,f +16397,3021,14,4,f +16397,3021,0,2,f +16397,3022,1,4,f +16397,3022,14,4,f +16397,3022,22,4,f +16397,3022,8,4,f +16397,3022,15,4,f +16397,3022,25,4,f +16397,3022,4,4,f +16397,3022,0,4,f +16397,3039,22,2,f +16397,3040b,4,4,f +16397,3040b,25,4,f +16397,3040b,0,4,f +16397,3665,25,4,f +16397,3665,22,4,f +16397,3665,4,4,f +16397,3665,0,4,f +16397,3839b,0,1,f +16397,4286,8,2,f +16397,4287,8,2,f +16397,4740,42,2,f +16397,73590c02b,14,2,f +16399,298c02,71,2,f +16399,298c02,71,1,t +16399,4274,71,1,f +16399,4274,71,1,t +16399,4589,72,4,f +16399,4697b,71,1,t +16399,4697b,71,4,f +16399,4733,72,1,f +16399,6141,72,4,f +16399,6141,72,1,t +16399,64567,71,4,f +16403,122c02,0,1,f +16403,2346,0,2,f +16403,2440,14,1,f +16403,2452,0,1,f +16403,3020,1,1,f +16403,3022,0,3,f +16403,3023,1,2,f +16403,3023,47,2,f +16403,3023,15,1,f +16403,3034,1,1,f +16403,3062b,7,4,f +16403,3482,15,2,f +16403,3626apr0001,14,1,f +16403,3660,15,2,f +16403,3700,0,2,f +16403,3705,0,1,f +16403,3710,15,5,f +16403,3823,47,1,f +16403,3829c01,1,1,f +16403,3833,4,1,f +16403,3938,14,1,f +16403,4070,1,2,f +16403,4084,0,2,f +16403,4213,15,1,f +16403,4214,15,1,f +16403,4276b,0,1,f +16403,4589,0,1,f +16403,6141,47,2,f +16403,6141,46,2,f +16403,970c00,0,1,f +16403,973c02,4,1,f +16404,10201,0,1,f +16404,11153,0,2,f +16404,11211,15,1,f +16404,11458,72,2,f +16404,14682,71,2,f +16404,14704,71,1,f +16404,14769,4,1,f +16404,15068,14,5,f +16404,15207,14,6,f +16404,18892,0,4,f +16404,18899pat0001,4,1,f +16404,2412b,72,1,f +16404,2431,72,1,f +16404,2431,0,2,f +16404,2431,1,3,f +16404,2456,14,2,f +16404,2465,72,2,f +16404,2730,0,2,f +16404,2780,0,5,f +16404,2877,70,2,f +16404,298c02,1,2,f +16404,30000,71,2,f +16404,3001,71,3,f +16404,3001,72,2,f +16404,3002,72,1,f +16404,30022,14,2,f +16404,3004,288,2,f +16404,3008,14,1,f +16404,30150,84,1,f +16404,3020,0,3,f +16404,3021,14,4,f +16404,3022,14,3,f +16404,30228,72,1,f +16404,3023,71,12,f +16404,3024,36,2,f +16404,3024,182,4,f +16404,3029,72,1,f +16404,3032,0,1,f +16404,3034,0,4,f +16404,3035,70,1,f +16404,3036,72,1,f +16404,30363,14,1,f +16404,30364,14,2,f +16404,30365,71,2,f +16404,30388,14,4,f +16404,30414,14,7,f +16404,3068b,71,9,f +16404,3069b,182,4,f +16404,3069b,15,1,f +16404,3069b,14,2,f +16404,3070b,47,2,f +16404,3070bpr0007,71,1,f +16404,32002,19,4,f +16404,32017,71,2,f +16404,32028,0,2,f +16404,3622,14,2,f +16404,3623,72,2,f +16404,3626cpr0914,14,1,f +16404,3626cpr0955,14,1,f +16404,3666,71,4,f +16404,3673,71,5,f +16404,3702,0,2,f +16404,3710,0,9,f +16404,3710,1,2,f +16404,3710,14,1,f +16404,3743,0,1,f +16404,3795,14,1,f +16404,3795,0,2,f +16404,3795,1,1,f +16404,3821,1,1,f +16404,3822,1,1,f +16404,3823,40,1,f +16404,3829c01,15,1,f +16404,3833,4,1,f +16404,3836,70,1,f +16404,3837,72,1,f +16404,3899,4,1,f +16404,4162,72,2,f +16404,4176,40,1,f +16404,43093,1,1,f +16404,4519,71,1,f +16404,45677,14,1,f +16404,4590,72,1,f +16404,52031,1,1,f +16404,52501,0,1,f +16404,55981,71,4,f +16404,6014b,71,6,f +16404,60478,0,2,f +16404,60484,72,2,f +16404,61252,0,3,f +16404,61409,0,8,f +16404,61485,0,1,f +16404,6179,14,1,f +16404,62462,71,1,f +16404,63864,71,4,f +16404,64644,0,2,f +16404,64728,4,2,f +16404,6628,0,1,f +16404,6636,1,6,f +16404,73983,1,2,f +16404,84954,40,1,f +16404,85543,15,1,f +16404,85984,1,2,f +16404,85984,0,5,f +16404,87079,71,5,f +16404,87081,0,1,f +16404,87609,1,2,f +16404,87697,0,6,f +16404,88930,0,2,f +16404,90202,0,1,f +16404,91347,72,4,f +16404,92402,0,4,f +16404,92715c01,72,1,f +16404,92947,4,1,f +16404,93273,0,1,f +16404,93273,14,1,f +16404,93606,14,1,f +16404,970c00,28,1,f +16404,970c00,272,1,f +16404,973pr0250c01,320,1,f +16404,973pr2885c01,25,1,f +16404,98138,46,4,f +16404,98138,36,2,f +16404,98280,71,3,f +16404,98282,0,6,f +16404,98283,28,2,f +16404,98283,378,2,f +16404,98283,72,2,f +16404,98285,0,1,f +16404,98286,71,1,f +16404,98287,71,6,f +16406,30033,0,1,f +16406,30367b,0,2,f +16406,32034,0,1,f +16406,32062,4,2,f +16406,3941,0,1,f +16406,4032a,15,1,f +16406,40379,0,8,f +16406,43898,0,1,f +16406,4589,15,4,f +16406,53451,15,1,t +16406,53451,15,4,f +16406,53989,0,8,f +16406,6141,4,1,t +16406,6141,42,1,t +16406,6141,42,2,f +16406,6141,4,5,f +16406,6587,28,1,f +16406,87748pr0001,36,1,f +16407,2357,19,2,f +16407,2412b,72,2,f +16407,2420,72,4,f +16407,2431,15,12,f +16407,2431,288,4,f +16407,2444,19,4,f +16407,2445,15,4,f +16407,2730,15,4,f +16407,2780,0,1,t +16407,2780,0,10,f +16407,2817,0,4,f +16407,2877,15,5,f +16407,3001,71,1,f +16407,3004,27,1,f +16407,3010,320,2,f +16407,3020,71,6,f +16407,3020,320,1,f +16407,3021,15,1,f +16407,3022,72,4,f +16407,3023,72,2,f +16407,3023,320,11,f +16407,3024,19,2,f +16407,30324,15,2,f +16407,3035,320,2,f +16407,3035,71,1,f +16407,30357,320,2,f +16407,30361c,0,2,f +16407,30361c,15,2,f +16407,30361cpr1,15,1,f +16407,30362,15,2,f +16407,30363,14,1,f +16407,30367b,14,1,f +16407,30367bpr0007,15,1,f +16407,3038,15,2,f +16407,30384,40,3,f +16407,3039,19,1,f +16407,3039ps5,0,2,f +16407,3040b,19,2,f +16407,3040b,15,2,f +16407,30414,15,2,f +16407,3048c,71,1,f +16407,3062b,33,2,f +16407,3062b,0,4,f +16407,3068b,320,4,f +16407,3068bps4,15,1,f +16407,3176,320,4,f +16407,32002,72,1,t +16407,32002,72,4,f +16407,32013,72,4,f +16407,32039,71,2,f +16407,32054,72,6,f +16407,32123b,71,1,t +16407,32123b,71,2,f +16407,32184,15,4,f +16407,32439apb02,320,2,f +16407,32474,4,4,f +16407,32523,15,2,f +16407,3298,15,1,f +16407,3460,320,2,f +16407,3626b,0,3,f +16407,3648b,71,1,f +16407,3659,15,4,f +16407,3660,15,1,f +16407,3666,15,2,f +16407,3679,71,1,f +16407,3680,0,1,f +16407,3700,72,2,f +16407,3705,0,3,f +16407,3707,0,3,f +16407,3708,0,1,f +16407,3710,15,3,f +16407,3710,72,3,f +16407,3710,71,1,f +16407,3713,71,6,f +16407,3713,71,1,t +16407,3737,0,2,f +16407,3747b,71,1,f +16407,3794a,71,1,f +16407,3794a,14,2,f +16407,3795,71,1,f +16407,3830,320,3,f +16407,3831,320,3,f +16407,3832,15,1,f +16407,3849,0,2,f +16407,3937,15,7,f +16407,3938,0,7,f +16407,3939,15,2,f +16407,3939ps1,40,1,f +16407,3939ps2,40,1,f +16407,3941,72,8,f +16407,3957a,0,3,f +16407,3958,71,1,f +16407,4019,71,5,f +16407,4032a,72,3,f +16407,40490,15,2,f +16407,4070,0,4,f +16407,4150,71,1,f +16407,4150pr0002,19,2,f +16407,41531,0,2,f +16407,4162,15,4,f +16407,41732,4,1,f +16407,41747pb018,15,1,f +16407,41748pb018,15,1,f +16407,41752,8,1,f +16407,41769,320,2,f +16407,41770,320,2,f +16407,42023,15,4,f +16407,4287,15,2,f +16407,4287,0,4,f +16407,43093,1,6,f +16407,43337,15,2,f +16407,4349,0,2,f +16407,43720,15,1,f +16407,43721,15,1,f +16407,43722,15,3,f +16407,43723,15,3,f +16407,4445,320,2,f +16407,44728,15,2,f +16407,4477,72,2,f +16407,4477,71,2,f +16407,4519,71,10,f +16407,4589,41,3,f +16407,4589,72,4,f +16407,4623,71,1,f +16407,4716,71,1,f +16407,47397,15,5,f +16407,47398,15,5,f +16407,4740,57,2,f +16407,48183,288,1,f +16407,50304,15,1,f +16407,50304,320,1,f +16407,50305,15,1,f +16407,50305,320,1,f +16407,50995pr0004,15,3,f +16407,51739,320,2,f +16407,54200,15,4,f +16407,6111,15,2,f +16407,6141,41,1,t +16407,6141,41,4,f +16407,6141,72,1,t +16407,6141,72,2,f +16407,6179,15,2,f +16407,6232,14,1,f +16407,6536,15,4,f +16407,6538b,72,3,f +16407,6558,0,6,f +16407,6587,72,2,f +16407,6588,47,1,f +16407,6628,0,4,f +16407,6636,19,2,f +16407,85543,15,3,f +16407,970c00,379,3,f +16407,973pr1099c01,15,3,f +16409,2570,70,1,f +16409,2586pr0004,71,2,f +16409,30273,80,1,f +16409,33172,308,1,f +16409,3626bpr0325,14,1,f +16409,3626bpr0567,14,1,f +16409,3626bpr0645,14,2,f +16409,3626bpr0649,14,1,f +16409,3844,80,2,f +16409,3846pr0001a,71,2,f +16409,3847,135,1,f +16409,4495b,4,1,f +16409,4497,135,1,f +16409,4498,70,1,f +16409,4503,80,2,f +16409,50231,4,1,f +16409,59232,179,1,f +16409,6123,72,1,f +16409,6126a,182,1,f +16409,64647,4,2,f +16409,970c00pr0155,71,1,f +16409,970x026,71,4,f +16409,973pr1622c01,4,2,f +16409,973pr1623c01,72,2,f +16409,973pr1628c01,71,1,f +16410,3001,70,1,f +16410,30136,19,1,f +16410,3020,15,1,f +16410,3037,26,1,f +16410,3062b,19,2,f +16410,33291,10,2,f +16410,33291,10,1,t +16410,3710,15,1,f +16410,4070,70,2,f +16410,6141,4,1,t +16410,6141,4,4,f +16410,64644,308,2,f +16411,45462,118,4,f +16411,45462,52,4,f +16411,45463,41,8,f +16411,45463,118,6,f +16411,45464,41,4,f +16411,45464,47,2,f +16411,45474,118,6,f +16411,45481,41,2,f +16411,46296,47,6,f +16411,clikits011,43,1,f +16411,clikits011,41,1,f +16411,clikits012,47,2,f +16411,clikits025,41,4,f +16411,clikits040,41,2,f +16411,clikits061,41,3,f +16411,clikits061,383,3,f +16411,clikits062,383,2,f +16411,clikits062,41,2,f +16411,clikits102,89,2,f +16411,clikits202,383,1,f +16411,clikits202,41,1,f +16411,clikits214,89,2,f +16411,clikits215,89,2,f +16412,30173b,179,1,f +16412,88646,71,4,f +16414,2496,0,1,f +16414,2496,0,1,t +16414,2655,14,1,t +16414,2655,14,1,f +16414,3004,15,1,f +16414,3020,4,1,f +16414,3021,1,2,f +16414,3021,4,1,f +16414,3022,4,1,f +16414,3039,47,1,f +16414,3039,15,1,f +16415,3003,1,1,f +16415,3004,15,1,f +16415,3021,14,1,f +16415,3039,47,1,f +16415,3660,1,2,f +16415,3795,4,1,f +16415,6141,34,1,t +16415,6141,36,1,f +16415,6141,34,1,f +16415,6141,36,1,t +16416,3020,15,1,f +16416,3022,15,1,f +16416,3023,15,1,f +16416,3062b,0,2,f +16416,3298p54,15,1,f +16416,3626apr0001,14,1,f +16416,3641,0,4,f +16416,3710,15,1,f +16416,3829c01,0,1,f +16416,3839b,0,1,f +16416,3842b,15,1,f +16416,4286,15,2,f +16416,4589,0,2,f +16416,4600,0,2,f +16416,4624,15,4,f +16416,4732,15,1,f +16416,4859,15,1,f +16416,6141,36,2,f +16416,970c00,0,1,f +16416,973c18,0,1,f +16420,3004,0,2,f +16420,30043,0,2,f +16420,30088,0,2,f +16420,30374,0,2,f +16420,32000,0,1,f +16420,32062,4,1,f +16420,3626b,0,1,f +16420,4360,0,2,f +16420,43710,0,1,f +16420,43711,0,1,f +16420,52107,0,1,f +16420,53984,135,2,f +16420,53988,135,1,f +16420,54200,72,4,f +16420,6141,36,1,f +16421,23306,71,2,f +16421,2339,71,8,f +16421,2339,19,2,f +16421,2341,71,4,f +16421,2357,19,2,f +16421,2357,71,8,f +16421,2362a,47,11,f +16421,2420,0,1,f +16421,2420,19,3,f +16421,2431,1,2,f +16421,2431,2,2,f +16421,2431pr0032,70,4,f +16421,2445,0,2,f +16421,2445,72,1,f +16421,2453a,71,4,f +16421,2453a,72,4,f +16421,2454a,72,14,f +16421,2454a,19,4,f +16421,2465,19,1,f +16421,2465,0,1,f +16421,2489,70,2,f +16421,2555,19,1,f +16421,2555,0,6,f +16421,2566,0,1,f +16421,2570,70,1,f +16421,2586,71,1,f +16421,2587,135,1,f +16421,2877,71,17,f +16421,3003,71,8,f +16421,3003,70,1,f +16421,3004,19,5,f +16421,3004,72,12,f +16421,3004,71,35,f +16421,3004,70,10,f +16421,30044,70,4,f +16421,30046,0,5,f +16421,3005,19,17,f +16421,3005,182,4,f +16421,3005,33,4,f +16421,3005,72,4,f +16421,3005,71,13,f +16421,3009,71,1,f +16421,3009,19,2,f +16421,3010,19,7,f +16421,3010,71,2,f +16421,30103,0,1,f +16421,30106,47,1,f +16421,30126,72,1,f +16421,30126,72,1,t +16421,30152pat0001,0,1,f +16421,30153,41,1,f +16421,30154,72,1,f +16421,30176,2,2,f +16421,30181,0,3,f +16421,3020,70,6,f +16421,3020,19,1,f +16421,3020,71,4,f +16421,3021,71,6,f +16421,3021,1,1,f +16421,3022,71,2,f +16421,3022,0,3,f +16421,3022,1,1,f +16421,3022,70,1,f +16421,3023,0,19,f +16421,3023,70,1,f +16421,3023,47,3,f +16421,3023,19,5,f +16421,3023,71,7,f +16421,3024,19,1,f +16421,3024,72,2,f +16421,30246,19,4,f +16421,3027,72,5,f +16421,3027,0,1,f +16421,30274,71,2,f +16421,3028,0,2,f +16421,3032,2,1,f +16421,3032,72,1,f +16421,3034,70,2,f +16421,3035,0,2,f +16421,3036,0,2,f +16421,30374,19,1,f +16421,30374,70,1,f +16421,30374,0,1,f +16421,30374,71,1,f +16421,30383,72,1,f +16421,3039,2,1,f +16421,3039,71,4,f +16421,3039,19,2,f +16421,3040b,19,4,f +16421,3040b,72,2,f +16421,3045,72,2,f +16421,3048c,0,2,f +16421,3048c,378,7,f +16421,3048c,71,3,f +16421,30553,0,1,f +16421,30562,19,6,f +16421,30562,71,2,f +16421,30565,72,2,f +16421,3062b,70,37,f +16421,3062b,72,25,f +16421,3062b,19,8,f +16421,3068b,2,2,f +16421,3068b,4,1,f +16421,3068b,15,1,f +16421,3068b,0,1,f +16421,3068bpr0131,15,1,f +16421,3069b,19,9,f +16421,3069b,71,9,f +16421,3069bpr0055,15,1,f +16421,3069bpr0107,72,1,f +16421,3070b,19,1,t +16421,3070b,19,1,f +16421,3245b,19,4,f +16421,3245b,72,12,f +16421,3245b,71,14,f +16421,32474,0,2,f +16421,32474,4,1,f +16421,32530,0,1,f +16421,33009,4,1,f +16421,33061,33,1,f +16421,33061,34,1,f +16421,3307,0,2,f +16421,3308,71,2,f +16421,33175,4,1,f +16421,33175,1,1,f +16421,33291,5,1,t +16421,33291,5,3,f +16421,3455,19,2,f +16421,3455,71,2,f +16421,3460,0,8,f +16421,3460,19,2,f +16421,3622,72,2,f +16421,3623,71,4,f +16421,3626b,71,1,f +16421,3626bpr0190,15,1,f +16421,3626bpr0505,378,2,f +16421,3633,0,1,f +16421,3659,19,1,f +16421,3659,72,6,f +16421,3660,19,4,f +16421,3665,71,6,f +16421,3666,71,4,f +16421,3666,72,5,f +16421,3666,0,3,f +16421,3673,71,1,f +16421,3679,71,6,f +16421,3680,0,6,f +16421,3710,19,7,f +16421,3710,0,1,f +16421,3710,70,2,f +16421,3710,72,5,f +16421,3741,2,1,f +16421,3741,2,1,t +16421,3755,71,2,f +16421,3794a,19,2,f +16421,3794a,71,2,f +16421,3795,0,1,f +16421,3795,71,4,f +16421,3795,70,1,f +16421,3795,72,1,f +16421,3830,71,6,f +16421,3830,19,2,f +16421,3831,19,2,f +16421,3831,71,6,f +16421,3832,0,1,f +16421,3848,132,2,f +16421,3861b,70,1,f +16421,3899,45,1,f +16421,3937,71,4,f +16421,3938,71,1,f +16421,3938,0,1,f +16421,3941,19,3,f +16421,3942c,85,1,f +16421,3942c,378,8,f +16421,3943b,378,5,f +16421,3959,72,4,f +16421,40232,15,1,f +16421,40232,0,1,f +16421,40241,70,1,f +16421,40242,71,1,f +16421,4032a,71,2,f +16421,4032a,4,2,f +16421,4070,70,8,f +16421,4070,19,2,f +16421,4070,4,2,f +16421,4070,71,2,f +16421,4079,70,1,f +16421,4081b,72,1,f +16421,4085c,0,6,f +16421,4150,71,2,f +16421,41539,0,2,f +16421,41539,72,2,f +16421,4162,72,2,f +16421,4215b,70,1,f +16421,4332,0,2,f +16421,4345b,0,1,f +16421,4346,47,1,f +16421,4460b,71,3,f +16421,4503,135,1,f +16421,4589,46,1,f +16421,4589,182,4,f +16421,4589,29,1,f +16421,4589,378,6,f +16421,4589,15,2,f +16421,4589,36,1,f +16421,4623,71,1,f +16421,4735,0,1,f +16421,4738a,70,1,f +16421,4739a,70,1,f +16421,47457,297,1,f +16421,47543,378,3,f +16421,48336,19,2,f +16421,4864b,71,18,f +16421,4864b,47,2,f +16421,4865a,19,11,f +16421,48729a,72,2,f +16421,50687,72,1,f +16421,54200,72,18,f +16421,54383,0,1,f +16421,54384,0,1,f +16421,58181,47,4,f +16421,59228,0,2,f +16421,59233pat0001,41,1,f +16421,59349,72,1,f +16421,6019,15,4,f +16421,6091,71,2,f +16421,6111,0,3,f +16421,6111,72,2,f +16421,6111,71,1,f +16421,6112,71,1,f +16421,6126a,57,9,f +16421,6133,0,4,f +16421,6134,71,2,f +16421,6141,57,2,f +16421,6141,47,1,t +16421,6141,15,2,f +16421,6141,47,3,f +16421,6141,71,16,f +16421,6141,72,1,f +16421,6141,57,1,t +16421,6141,71,2,t +16421,6141,4,4,f +16421,6141,0,3,t +16421,6141,0,16,f +16421,6182,71,1,f +16421,6182,19,3,f +16421,6231,19,6,f +16421,6255,2,2,f +16421,6256,82,1,f +16421,6536,71,1,f +16421,6541,0,1,f +16421,6587,72,1,f +16421,6636,378,4,f +16421,6932,297,1,f +16421,73983,19,3,f +16421,73983,71,2,f +16421,73983,72,1,f +16421,973c47,71,1,f +16422,4186,7,1,f +16424,11208,71,4,f +16424,11209,0,4,f +16424,11477,321,12,f +16424,14520,72,2,f +16424,15573,321,4,f +16424,15573,0,4,f +16424,15573,19,2,f +16424,15712,71,5,f +16424,3004,321,4,f +16424,3004,4,1,f +16424,3005,47,2,f +16424,3021,321,6,f +16424,3022,15,1,f +16424,3023,71,3,f +16424,3023,72,1,f +16424,3023,47,6,f +16424,3023,321,10,f +16424,3023,70,2,f +16424,3024,321,1,t +16424,3024,321,6,f +16424,3031,70,1,f +16424,3034,72,1,f +16424,30374,71,2,f +16424,3039,47,3,f +16424,3040b,321,2,f +16424,3065,47,2,f +16424,3069b,15,2,f +16424,3069b,14,2,f +16424,3069b,19,2,f +16424,3070b,321,1,t +16424,3070b,321,2,f +16424,32028,321,4,f +16424,3460,71,2,f +16424,3710,321,10,f +16424,3710,71,2,f +16424,3832,0,1,f +16424,40252stk01,9999,1,f +16424,4081b,71,2,f +16424,4600,0,2,f +16424,50950,321,2,f +16424,54200,71,1,t +16424,54200,71,2,f +16424,6141,179,1,t +16424,6141,179,2,f +16424,85984,19,2,f +16424,85984,321,1,f +16424,90397,15,1,f +16424,93273,71,1,f +16424,98138,47,2,f +16424,98138,71,2,f +16424,98138,47,1,t +16424,98138,71,1,t +16424,98282,321,4,f +16427,11198,322,1,f +16427,12659,4,1,f +16427,14294,322,1,f +16427,15211,14,1,f +16427,16685,4,1,f +16427,22881,27,1,f +16427,2302,26,2,f +16427,2302,191,1,f +16427,2302,322,1,f +16427,2302,4,2,f +16427,24806,14,1,f +16427,3011,322,3,f +16427,3011,14,3,f +16427,3011,191,2,f +16427,3011,4,3,f +16427,3011,27,3,f +16427,3011,25,3,f +16427,34277,14,2,f +16427,3437,14,5,f +16427,3437,191,4,f +16427,3437,322,5,f +16427,3437,5,2,f +16427,3437,484,2,f +16427,3437,85,2,f +16427,3437,25,5,f +16427,3437,4,5,f +16427,3437,27,5,f +16427,3437pr0044,322,1,f +16427,3437pr0052,25,1,f +16427,40554,14,1,f +16427,4066,191,2,f +16427,44524,27,2,f +16427,47510pr0005,73,1,f +16427,47511pr0004,71,1,f +16427,58057pr03,15,1,f +16427,61649,14,1,f +16427,61649,5,1,f +16427,6474,4,3,f +16427,6510,25,1,f +16427,6510,10,2,f +16427,6510,5,1,f +16427,6510,4,2,f +16427,6510,14,2,f +16427,76371,4,2,f +16427,76371,14,2,f +16427,76371,25,2,f +16427,76371pr0017,15,1,f +16427,76371pr0020,15,1,f +16427,76371pr0037,15,1,f +16427,90265,15,2,f +16427,95485,0,1,f +16427,98223,27,1,f +16427,98223,4,1,f +16427,98223,85,1,f +16427,98224,4,1,f +16427,98224,25,2,f +16427,98224,27,1,f +16427,98233,191,1,f +16446,11203,71,1,f +16446,11211,19,1,f +16446,11476,0,2,f +16446,11477,28,1,f +16446,11477,288,2,f +16446,15068,288,3,f +16446,15071,0,1,f +16446,15391,0,4,f +16446,15392,72,2,t +16446,15392,72,6,f +16446,15403,0,1,f +16446,15573,72,1,f +16446,15706,72,2,f +16446,2412b,288,3,f +16446,2420,28,2,f +16446,24201,71,2,f +16446,24299,72,1,f +16446,24307,72,1,f +16446,2432,72,3,f +16446,2780,0,1,t +16446,2780,0,1,f +16446,28362,84,2,f +16446,30136,28,2,f +16446,3021,0,1,f +16446,3021,71,1,f +16446,3021,28,1,f +16446,3023,19,2,f +16446,3040b,28,4,f +16446,30602,288,1,f +16446,3069b,28,1,f +16446,32013,72,1,f +16446,3626cpr1322,78,1,f +16446,3626cpr1709,78,1,f +16446,3626cpr1856,78,1,f +16446,3626cpr2348,70,1,f +16446,3700,72,1,f +16446,3795,71,2,f +16446,3957a,0,1,f +16446,4032a,0,3,f +16446,41677,0,1,f +16446,4599b,0,3,f +16446,4599b,0,1,t +16446,46304,15,2,f +16446,46304,15,1,t +16446,51739,0,4,f +16446,54200,28,1,t +16446,54200,40,2,f +16446,54200,40,1,t +16446,54200,28,1,f +16446,59900,0,1,f +16446,60474,71,1,f +16446,60849,0,1,t +16446,60849,0,2,f +16446,60897,71,2,f +16446,6091,28,1,f +16446,61409,0,2,f +16446,6141,36,1,t +16446,6141,36,12,f +16446,63965,72,2,f +16446,87555,72,1,f +16446,87555,28,1,f +16446,92280,71,2,f +16446,970c00pr1125,70,1,f +16446,970c00pr1161,72,2,f +16446,970c00pr1163,19,1,f +16446,973pr3557c01,72,1,f +16446,973pr3621c01,308,1,f +16446,973pr3622c01,19,1,f +16446,973pr3623c01,19,1,f +16446,99780,72,4,f +16446,99781,71,2,f +16462,11091,297,2,f +16462,11477,71,1,f +16462,14418,71,1,f +16462,15070,297,1,f +16462,15362,297,1,f +16462,18651,0,1,f +16462,18654,72,1,f +16462,24316,70,1,f +16462,2736,71,1,f +16462,2780,0,1,f +16462,32039,0,2,f +16462,32184,0,1,f +16462,3705,0,2,f +16462,41677,72,1,f +16462,48729b,0,2,f +16462,50923,72,2,f +16462,61252,71,1,f +16462,6141,41,1,f +16462,92907,71,2,f +16462,93571,0,2,f +16462,95344,297,1,f +16462,99021,72,1,f +16463,15450,1,4,f +16463,16686,321,2,f +16463,20678,57,3,f +16463,21996,321,2,f +16463,21997,27,2,f +16463,22881,27,2,f +16463,23972pr0021,71,1,f +16463,25549,322,2,f +16463,26276,321,1,f +16463,3437,10,1,f +16463,3437,14,1,f +16463,3437,19,1,f +16463,4066,41,2,f +16463,40666,19,1,f +16463,40666,73,2,f +16463,6474,14,3,f +16463,98223,1,2,f +16463,98223,73,1,f +16463,98233,73,2,f +16463,98252,27,2,f +16465,15064,0,4,f +16465,15362,0,1,f +16465,48729b,0,1,f +16465,53451,0,1,f +16465,53451,15,2,f +16465,58176,182,1,f +16465,90611,35,2,f +16465,90640,10,1,f +16465,93571,0,5,f +16465,98590,0,1,f +16466,11211,2,5,f +16466,11213,15,3,f +16466,11477,14,1,f +16466,13547,14,4,f +16466,14769,0,1,f +16466,14769,25,2,f +16466,14769pr1066,15,1,f +16466,14769pr1066,15,1,t +16466,14769pr1067,15,1,f +16466,15068,14,2,f +16466,15068,191,8,f +16466,15100,0,2,f +16466,15573,14,5,f +16466,18653,15,4,f +16466,18653,14,1,f +16466,18858,0,1,f +16466,18980,4,1,f +16466,18980,15,1,f +16466,22472c03pb05,84,1,f +16466,24078,10,1,f +16466,2412b,71,10,f +16466,2420,4,2,f +16466,2420,191,4,f +16466,24201,191,20,f +16466,24201,14,8,f +16466,2431,15,1,f +16466,2431,191,4,f +16466,24316,70,2,f +16466,25214,25,2,f +16466,25214,14,2,f +16466,25269,4,1,t +16466,25269,4,2,f +16466,25269,15,2,t +16466,25269,15,12,f +16466,2654,71,7,f +16466,26603,15,1,f +16466,2780,0,1,t +16466,2780,0,6,f +16466,29666,15,2,f +16466,29862,15,1,f +16466,29863,15,1,f +16466,3003,29,1,f +16466,3004,158,1,f +16466,3005,4,2,f +16466,3005,14,1,f +16466,3010,15,2,f +16466,3020,212,3,f +16466,3020,71,1,f +16466,3021,15,5,f +16466,3021,191,2,f +16466,3021,1,4,f +16466,3021,29,3,f +16466,3021,4,2,f +16466,3022,4,2,f +16466,3022,14,1,f +16466,3022,322,2,f +16466,3023,1,3,f +16466,3023,4,4,f +16466,3023,14,2,f +16466,3023,191,11,f +16466,3023,158,1,f +16466,3024,15,8,f +16466,3024,322,2,t +16466,3024,14,2,f +16466,3024,14,1,t +16466,3024,4,2,f +16466,3024,15,3,t +16466,3024,4,1,t +16466,3024,322,8,f +16466,3031,15,1,f +16466,3031,4,1,f +16466,3032,4,1,f +16466,3032,15,1,f +16466,30357,15,3,f +16466,3036,71,1,f +16466,3039,14,2,f +16466,3039,191,4,f +16466,30414,73,5,f +16466,30565,15,3,f +16466,3062b,71,8,f +16466,3068b,191,2,f +16466,3069b,191,1,f +16466,3069b,4,1,f +16466,3069b,14,2,f +16466,3069b,15,6,f +16466,3069bpr0177,15,1,f +16466,3070b,15,4,f +16466,3070b,191,6,f +16466,3070b,15,2,t +16466,3070b,191,1,t +16466,32000,72,2,f +16466,32013,25,1,f +16466,32013,14,1,f +16466,32028,191,8,f +16466,32028,14,8,f +16466,32064a,14,2,f +16466,32123b,14,1,t +16466,32123b,14,4,f +16466,32807,4,2,f +16466,33051,2,1,f +16466,33078,4,4,f +16466,33078,4,1,t +16466,3456,28,1,f +16466,3460,14,4,f +16466,3623,4,4,f +16466,3623,191,2,f +16466,3623,14,2,f +16466,3626cpr2123,78,1,f +16466,3626cpr2124,78,1,f +16466,3626cpr2125,78,1,f +16466,3626cpr2126,78,1,f +16466,3660,191,1,f +16466,3665,14,1,f +16466,3666,191,2,f +16466,3666,14,1,f +16466,3666,71,2,f +16466,3666,4,2,f +16466,3666,85,2,f +16466,3701,14,2,f +16466,3710,15,1,f +16466,3794b,15,6,f +16466,3795,15,1,f +16466,3795,4,4,f +16466,3829c01,71,1,f +16466,3901,0,1,f +16466,3937,71,2,f +16466,3941,47,4,f +16466,40240,0,1,f +16466,4079,1,1,f +16466,4081b,15,1,f +16466,42023,14,1,f +16466,4282,71,1,f +16466,43093,1,6,f +16466,43710,191,2,f +16466,43711,191,2,f +16466,43857,14,2,f +16466,45677,15,1,f +16466,48336,15,1,f +16466,48729a,4,6,f +16466,48729a,4,1,t +16466,49668,15,3,f +16466,52107,71,2,f +16466,52107,191,8,f +16466,58176,5,1,f +16466,6005,191,2,f +16466,6005,14,1,f +16466,6041,4,2,f +16466,60474,15,5,f +16466,60474,191,1,f +16466,60475b,14,1,f +16466,6091,191,10,f +16466,6091,14,7,f +16466,6091,15,2,f +16466,6134,71,2,f +16466,6141,71,1,t +16466,6141,4,1,t +16466,6141,4,7,f +16466,6141,71,4,f +16466,62462,14,2,f +16466,62462,25,4,f +16466,62810,0,1,f +16466,64644,297,1,f +16466,64799,15,1,f +16466,6541,14,4,f +16466,6558,1,2,f +16466,72454,14,1,f +16466,76766,71,2,f +16466,85861,15,1,t +16466,85861,15,10,f +16466,85984,14,2,f +16466,85984,15,10,f +16466,86500,191,1,f +16466,87079,379,2,f +16466,87079pr0098,19,1,f +16466,87079pr0099,15,1,f +16466,87079pr0100,19,1,f +16466,87083,72,1,f +16466,87087,73,6,f +16466,87087,191,2,f +16466,87552,71,1,f +16466,87580,15,1,f +16466,88293,191,4,f +16466,88646,71,8,f +16466,88930,14,2,f +16466,92593,14,2,f +16466,92950,15,1,f +16466,92950,191,1,f +16466,93604,15,1,f +16466,96874,25,1,f +16466,970c00,0,1,f +16466,970c00pr1193,19,1,f +16466,970c00pr1194,72,1,f +16466,970d00pr1195,30,1,f +16466,973pr3668c01,84,1,f +16466,973pr3669c01,4,1,f +16466,973pr3670c01,0,1,f +16466,973pr3671c01,85,1,f +16466,98138,36,16,f +16466,98138,15,1,t +16466,98138,15,1,f +16466,98138,36,2,t +16466,98138pr0047,179,1,t +16466,98138pr0047,179,1,f +16466,98138pr0067,15,1,t +16466,98138pr0067,15,2,f +16466,98138pr0068,29,2,f +16466,98138pr0068,29,1,t +16466,98138pr0069,73,2,f +16466,98138pr0069,73,1,t +16466,98138pr0070,45,1,t +16466,98138pr0070,45,2,f +16466,99206,15,12,f +16466,99206,71,6,f +16480,18986,47,1,f +16480,3062b,4,2,f +16480,3626cpr1915,212,1,f +16480,4081b,71,1,f +16480,4697b,0,1,t +16480,4697b,0,1,f +16480,6141,80,1,t +16480,6141,80,2,f +16480,64567,0,1,f +16480,64567,0,1,t +16480,88704,0,1,f +16480,970c00,73,1,f +16480,973pr3371c01,73,1,f +16480,98138,182,1,f +16480,98138,182,1,t +16480,98313,1,1,f +16480,98375,179,1,f +16480,98375,179,1,t +16480,99781,71,1,f +16482,10884,27,1,f +16482,10884,2,1,f +16482,11407pr0104,4,1,f +16482,11816pr0108,84,1,f +16482,13965,70,2,f +16482,14769,4,1,f +16482,14769,19,2,f +16482,14769,27,1,f +16482,14769,70,2,f +16482,15068,19,1,f +16482,15068,322,1,f +16482,15068,71,1,f +16482,15395,308,3,f +16482,15571,72,1,f +16482,15573,27,1,f +16482,16577,70,1,f +16482,18674,72,2,f +16482,18838,70,1,f +16482,18853,15,1,t +16482,18853,15,1,f +16482,18866,15,1,f +16482,18980,30,1,f +16482,22888,10,1,f +16482,23969,41,2,f +16482,2417,2,2,f +16482,2423,2,2,f +16482,2431,322,2,f +16482,2454a,70,2,f +16482,28705,0,1,f +16482,29769,15,1,f +16482,3003,70,2,f +16482,3003,19,2,f +16482,3010,19,6,f +16482,30136,308,4,f +16482,30136,84,3,f +16482,30136,72,6,f +16482,30153,45,1,f +16482,30153,34,2,f +16482,30176,2,2,f +16482,3020,72,2,f +16482,3021,322,1,f +16482,3022,72,1,f +16482,3022,71,2,f +16482,3022,2,3,f +16482,3023,15,2,f +16482,3023,70,7,f +16482,3023,41,1,f +16482,3028,28,1,f +16482,3031,2,1,f +16482,3032,70,2,f +16482,3036,19,1,f +16482,30374,70,2,f +16482,3039,2,2,f +16482,3039,72,2,f +16482,3039,41,3,f +16482,3039,70,1,f +16482,3040b,71,4,f +16482,3040b,308,2,f +16482,3062b,19,1,f +16482,3065,41,1,f +16482,3245b,71,2,f +16482,32530,72,1,f +16482,33085,14,1,f +16482,33291,10,2,f +16482,33291,10,1,t +16482,33291,5,6,f +16482,33291,5,2,t +16482,3460,19,1,f +16482,3622,71,1,f +16482,3626b,70,1,f +16482,3626cpr1296a,14,1,f +16482,3659,19,2,f +16482,3666,70,1,f +16482,3795,70,2,f +16482,3941,85,1,f +16482,3941,70,2,f +16482,3941,19,1,f +16482,4032a,70,2,f +16482,40378,70,1,f +16482,41149stk01,9999,1,f +16482,4274,71,1,f +16482,4274,71,1,t +16482,43093,1,1,f +16482,4460b,19,4,f +16482,47457,19,1,f +16482,54200,5,1,t +16482,54200,72,2,f +16482,54200,41,1,t +16482,54200,41,1,f +16482,54200,5,4,f +16482,54200,72,1,t +16482,59900,297,1,f +16482,6003,322,1,f +16482,60475b,84,2,f +16482,60475b,72,1,f +16482,60478,28,1,f +16482,60481,72,1,f +16482,60594,70,2,f +16482,6091,322,2,f +16482,6141,27,2,t +16482,6141,57,1,t +16482,6141,27,7,f +16482,6141,25,1,t +16482,6141,57,2,f +16482,6141,179,1,f +16482,6141,25,2,f +16482,6141,179,1,t +16482,62462,70,1,f +16482,63864,70,2,f +16482,63868,71,1,f +16482,64644,297,2,f +16482,64647,182,2,t +16482,64647,182,2,f +16482,64648,179,2,f +16482,87079,19,2,f +16482,87580,19,1,f +16482,87585,70,1,t +16482,87585,70,1,f +16482,87994,71,1,t +16482,87994,71,1,f +16482,88072,19,2,f +16482,92456pr0210c01,84,1,f +16482,92590,28,1,f +16482,98138,15,2,f +16482,98138,15,1,t +16482,98138pr0064,27,1,f +16482,98138pr0064,27,1,t +16482,98560,19,5,f +16482,98560,71,2,f +16490,2412a,2,2,f +16490,2421,0,1,f +16490,2432,15,1,f +16490,2446,4,1,f +16490,2447,41,1,f +16490,2460,15,1,f +16490,2479,0,1,f +16490,298c02,0,2,f +16490,298c02,0,1,t +16490,3004,15,1,f +16490,3022,15,1,f +16490,3022,7,1,f +16490,3023,0,1,f +16490,3040b,15,1,f +16490,3070b,36,1,f +16490,3176,7,1,f +16490,3626bpr0001,14,1,f +16490,3660,15,1,f +16490,3666,15,3,f +16490,3794a,7,1,f +16490,3795,2,1,f +16490,3839b,0,1,f +16490,4162,15,2,f +16490,4488,4,1,f +16490,4859,15,2,f +16490,6140,4,2,f +16490,970c00,2,1,f +16490,973px130c01,15,1,f +16492,11211,4,1,f +16492,11213,71,1,f +16492,11399,72,2,f +16492,11477,72,2,f +16492,14417,72,3,f +16492,14704,71,1,f +16492,15068,71,1,f +16492,15207,71,2,f +16492,15207,72,3,f +16492,16178pr01,4,1,f +16492,18671,14,2,f +16492,18899pat0001,4,1,f +16492,21709,14,1,f +16492,23969,71,4,f +16492,2412b,0,5,f +16492,2412b,71,1,f +16492,2431,71,1,f +16492,24316,70,1,f +16492,2432,71,3,f +16492,2445,71,3,f +16492,2458,72,2,f +16492,2498,1,4,f +16492,2508,0,1,f +16492,2578a,14,2,f +16492,2654,71,3,f +16492,2877,0,2,f +16492,2877,72,1,f +16492,298c02,1,1,t +16492,298c02,1,2,f +16492,30000,71,2,f +16492,3002,72,1,f +16492,3004,1,2,f +16492,3010,70,1,f +16492,30157,70,2,f +16492,3020,0,3,f +16492,3020,71,4,f +16492,3021,72,4,f +16492,3021,71,3,f +16492,30228,72,1,f +16492,3023,28,5,f +16492,30237b,1,6,f +16492,3024,71,1,t +16492,3024,71,2,f +16492,3024,36,1,t +16492,3024,36,2,f +16492,3024,182,1,t +16492,3024,182,4,f +16492,30259,71,1,f +16492,3032,14,1,f +16492,30357,0,2,f +16492,30357,14,2,f +16492,3036,0,1,f +16492,3037,1,1,f +16492,30374,71,2,f +16492,30386,14,1,f +16492,30387,14,2,f +16492,3040b,14,2,f +16492,3040b,1,2,f +16492,30414,19,3,f +16492,3062b,71,3,f +16492,3068b,14,3,f +16492,3069b,72,2,f +16492,3069b,14,2,f +16492,32123b,71,1,f +16492,32123b,71,1,t +16492,32124,70,2,f +16492,32524,0,2,f +16492,3460,14,2,f +16492,3626cpr0914,14,1,f +16492,3626cpr1580,14,1,f +16492,3666,0,1,f +16492,3666,1,1,f +16492,3666,14,1,f +16492,3673,71,4,f +16492,3673,71,1,t +16492,3710,19,4,f +16492,3710,70,3,f +16492,3795,72,3,f +16492,3821,1,1,f +16492,3822,1,1,f +16492,3829c01,71,1,f +16492,3836,70,1,f +16492,3837,72,1,f +16492,3894,14,1,f +16492,4006,0,1,f +16492,4081b,72,2,f +16492,4151b,72,1,f +16492,4176,40,1,f +16492,4274,1,2,f +16492,4274,1,1,t +16492,4282,0,1,f +16492,44302a,0,2,f +16492,44567a,1,2,f +16492,44568,71,4,f +16492,4488,0,4,f +16492,4740,72,2,f +16492,47973,72,1,f +16492,4865b,71,1,f +16492,51739,72,1,f +16492,52031,1,1,f +16492,52501,0,2,f +16492,54200,14,1,t +16492,54200,47,2,f +16492,54200,47,1,t +16492,54200,14,2,f +16492,55013,72,1,f +16492,55981,71,8,f +16492,58176,182,4,f +16492,6014b,71,4,f +16492,60897,71,4,f +16492,6141,4,1,t +16492,6141,25,6,f +16492,6141,70,1,t +16492,6141,47,2,f +16492,6141,15,6,f +16492,6141,70,4,f +16492,6141,15,1,t +16492,6141,25,1,t +16492,6141,47,1,t +16492,6141,4,2,f +16492,61485,0,1,f +16492,63082,0,1,f +16492,64450,0,1,f +16492,6636,14,1,f +16492,6636,1,3,f +16492,85080,14,2,f +16492,85984,0,2,f +16492,87079,14,2,f +16492,87552,40,2,f +16492,87580,71,2,f +16492,87609,14,1,f +16492,87697,0,4,f +16492,89201,0,4,f +16492,91988,71,1,f +16492,92092,72,4,f +16492,92099,72,2,f +16492,92280,0,2,f +16492,92402,0,4,f +16492,970c00,28,1,f +16492,970c00,272,1,f +16492,973pr2885c01,25,1,f +16492,973pr2913c01,25,1,f +16492,98138,182,1,t +16492,98138,36,2,f +16492,98138,71,1,t +16492,98138,182,2,f +16492,98138,36,1,t +16492,98138,71,4,f +16492,98282,0,4,f +16492,98283,320,5,f +16492,98549,71,1,f +16492,99780,72,4,f +16498,15712,70,4,f +16498,24458,297,1,f +16498,30137,70,1,f +16498,30173b,0,2,f +16498,31509,4,2,f +16498,3460,4,1,f +16498,3626cpr1367,14,1,f +16498,3626cpr1642,14,1,f +16498,3666,19,2,f +16498,3710,19,2,f +16498,3795,72,3,f +16498,60897,0,2,f +16498,6141,4,2,t +16498,6141,297,2,t +16498,6141,4,2,f +16498,6141,297,4,f +16498,62810,484,1,f +16498,63965,297,1,f +16498,63965,70,1,f +16498,87580,28,4,f +16498,92593,0,1,f +16498,93069,15,1,f +16498,93273,72,1,f +16498,970c00pr0763,1,1,f +16498,970c00pr0880,15,1,f +16498,973pr2848c01,1,1,f +16498,973pr3031c01,15,1,f +16498,98139,297,1,f +16510,15391,15,2,f +16510,15392,72,1,t +16510,15392,72,2,f +16510,15573,14,2,f +16510,24201,71,2,f +16510,2540,72,4,f +16510,29721,15,1,f +16510,3020,4,1,f +16510,3021,71,1,f +16510,3023,321,3,f +16510,3024,47,1,t +16510,3024,47,4,f +16510,30385,45,1,f +16510,3070bpr0171,10,1,t +16510,3070bpr0171,10,1,f +16510,4081b,71,2,f +16510,44661pr0002,72,1,f +16510,44676,85,2,f +16510,44676,4,2,f +16510,4733,15,1,f +16510,4865b,41,1,f +16510,50950,321,2,f +16510,54200,85,1,t +16510,54200,35,4,f +16510,54200,35,1,t +16510,54200,85,2,f +16510,60897,10,2,f +16510,6141,35,1,t +16510,6141,46,2,f +16510,6141,46,1,t +16510,6141,35,2,f +16510,85984pr0010,321,1,f +16510,87580,0,1,f +16510,98138,182,1,t +16510,98138,182,2,f +16510,99780,71,4,f +16516,10124,4,1,f +16516,10124,27,1,f +16516,10126,4,1,f +16516,10126,27,1,f +16516,10127,4,1,f +16516,10127,27,1,f +16516,10154,27,1,f +16516,10154,4,1,f +16516,10247,0,3,f +16516,11090,72,4,f +16516,11212,72,12,f +16516,11455,0,1,f +16516,13269,288,3,f +16516,13269,0,2,f +16516,14704,71,4,f +16516,14769,14,2,f +16516,15068,288,1,f +16516,15100,0,3,f +16516,15392,72,1,t +16516,15392,72,6,f +16516,15403,320,6,f +16516,15712,320,8,f +16516,18575,0,1,f +16516,18587,14,1,f +16516,18588,72,1,f +16516,18654,19,1,t +16516,18654,19,4,f +16516,21709,28,1,f +16516,23187,288,1,f +16516,23444,0,1,f +16516,2357,72,2,f +16516,23969,71,1,f +16516,2412b,71,3,f +16516,2412b,320,6,f +16516,24201,71,8,f +16516,2431,4,1,f +16516,2431,2,1,f +16516,2432,71,1,f +16516,2458,19,2,f +16516,2515,85,4,f +16516,2515,0,2,f +16516,2736,71,2,f +16516,2780,0,9,f +16516,2780,0,2,t +16516,2877,72,2,f +16516,298c02,71,1,t +16516,298c02,71,2,f +16516,29932,27,1,f +16516,29936,4,1,f +16516,30000,72,2,f +16516,3001,4,5,f +16516,3003,71,1,f +16516,3009,2,1,f +16516,3009,320,1,f +16516,3020,0,2,f +16516,3021,288,2,f +16516,3022,2,3,f +16516,3022,4,3,f +16516,3023,320,6,f +16516,3023,47,2,f +16516,3023,14,9,f +16516,3028,72,2,f +16516,3032,72,2,f +16516,30363,72,4,f +16516,30367c,4,2,f +16516,30526,71,1,f +16516,3062b,71,12,f +16516,3069b,0,1,f +16516,32000,71,6,f +16516,32054,71,4,f +16516,32062,4,7,f +16516,32140,72,1,f +16516,32278,72,4,f +16516,32291,72,2,f +16516,3626cpr2142,4,1,f +16516,3626cpr2143,27,1,f +16516,3666,2,4,f +16516,3666,4,1,f +16516,3666,288,2,f +16516,3701,72,1,f +16516,3713,71,1,t +16516,3713,71,1,f +16516,3795,28,1,f +16516,3832,0,1,f +16516,3941,14,2,f +16516,4032a,71,2,f +16516,4070,71,2,f +16516,41862,71,1,f +16516,4274,71,1,t +16516,4274,71,4,f +16516,4286,2,2,f +16516,43093,1,6,f +16516,44676,2,1,f +16516,44728,0,14,f +16516,4477,71,1,f +16516,45590,0,3,f +16516,47457,14,4,f +16516,47457,4,2,f +16516,476,0,1,f +16516,50943,72,1,f +16516,55013,72,1,f +16516,55976,0,1,f +16516,56145,4,1,f +16516,6005,320,2,f +16516,60470a,71,1,f +16516,60470a,0,1,f +16516,6112,71,2,f +16516,61409,4,6,f +16516,6141,19,12,f +16516,6141,71,6,f +16516,6141,19,1,t +16516,6141,71,1,t +16516,6141,2,12,f +16516,6141,2,1,t +16516,6232,15,1,f +16516,62462,14,1,f +16516,62462,71,1,f +16516,6249,71,4,f +16516,63869,0,1,f +16516,63965,72,2,f +16516,6628,0,1,f +16516,85943,72,3,f +16516,85974pr0005,0,1,f +16516,85984,71,6,f +16516,87079,25,2,f +16516,87083,72,1,f +16516,92099,0,2,f +16516,92107,72,2,f +16516,92582,71,1,f +16516,93273,4,2,f +16516,93273,2,3,f +16516,96874,25,1,f +16516,970c00,0,1,f +16516,970c00pr1206,15,1,f +16516,973pr3695,0,1,f +16516,973pr3696c01,15,1,f +16516,98138,47,1,t +16516,98138,47,4,f +16516,99021,72,2,f +16516,99207,71,17,f +16516,99780,2,2,f +16524,2357,19,2,f +16524,2456,1,4,f +16524,3001,4,4,f +16524,3002,4,2,f +16524,3002,1,5,f +16524,3004,19,3,f +16524,3004,4,4,f +16524,3004,0,2,f +16524,3004,15,4,f +16524,3004,1,4,f +16524,3005,0,2,f +16524,3005,4,2,f +16524,3005,15,4,f +16524,3005,1,4,f +16524,3010,19,6,f +16524,3010,4,2,f +16524,3622,0,2,f +16524,3622,1,4,f +16524,3622,4,4,f +16524,3622,15,4,f +16524,3622,19,2,f +16524,91405,15,1,f +16540,10113,0,1,f +16540,10247,72,1,f +16540,15573,0,1,f +16540,18587,14,1,f +16540,18588,72,1,f +16540,24144,0,1,f +16540,2460,4,1,f +16540,28551,2,1,f +16540,29249,85,1,f +16540,30103,0,1,f +16540,3022,72,1,f +16540,3023,0,1,f +16540,3069b,4,2,f +16540,3069b,0,1,f +16540,3069b,15,2,f +16540,3626cpr9997,15,1,f +16540,42446,0,2,f +16540,42446,0,1,t +16540,43719,0,1,f +16540,48336,0,2,f +16540,60474,14,2,f +16540,6141,35,1,t +16540,6141,15,1,t +16540,6141,35,14,f +16540,6141,15,1,f +16540,6266,0,2,f +16540,6266,0,1,t +16540,6587,28,1,f +16540,87580,0,1,f +16540,970c00pr1171,85,1,f +16540,973pr3634,85,1,f +16540,98138,15,1,f +16540,98138,15,1,t +16540,98721,0,1,t +16540,98721,0,1,f +16540,99780,0,1,f +16550,10928,72,2,f +16550,11090,297,2,f +16550,11100,15,2,f +16550,11203,0,1,f +16550,11399,19,1,f +16550,11458,70,4,f +16550,11476,15,1,f +16550,11477,158,2,f +16550,11477,85,4,f +16550,11605,70,1,f +16550,11816pr0021,78,1,f +16550,11816pr0027,78,1,f +16550,14718,30,2,f +16550,14769pr1017,30,1,f +16550,15070,297,11,f +16550,15082,0,2,f +16550,15369,297,1,f +16550,15392,70,1,t +16550,15392,70,1,f +16550,15535,19,2,f +16550,15712,297,1,f +16550,17485,14,2,f +16550,18654,19,2,f +16550,18654,19,1,t +16550,18969,15,3,f +16550,18969,31,4,f +16550,19206pr0001,31,1,f +16550,20105,19,1,f +16550,20379pr0005,85,1,f +16550,22667,26,1,t +16550,22667,26,2,f +16550,22961,308,5,f +16550,23443,0,3,f +16550,23989,15,2,f +16550,24093,70,1,f +16550,2420,19,2,f +16550,24316,70,1,f +16550,2432,14,1,f +16550,24324,70,1,f +16550,24947,14,2,f +16550,25269,19,1,t +16550,25269,19,2,f +16550,25892,30,1,f +16550,2653,0,2,f +16550,2654,52,1,f +16550,2736,71,2,f +16550,2780,0,3,t +16550,2780,0,4,f +16550,28628a,179,1,f +16550,28628a,179,1,t +16550,28849pr0044,158,1,f +16550,28870,297,4,f +16550,3003,30,1,f +16550,3004,30,2,f +16550,3005,19,4,f +16550,3010,30,2,f +16550,30153,52,2,f +16550,3020,70,1,f +16550,3020,15,2,f +16550,3022,27,1,f +16550,3022,70,3,f +16550,3023,70,4,f +16550,3024,297,1,f +16550,3024,30,2,t +16550,3024,297,1,t +16550,3024,30,8,f +16550,3031,19,1,f +16550,30367c,70,1,f +16550,30367c,297,2,f +16550,30374,14,1,f +16550,30385,143,3,f +16550,30526,71,1,f +16550,3068b,212,1,f +16550,3068bpr0331,19,1,f +16550,3069b,85,4,f +16550,3069b,15,1,f +16550,3069bpr0188,35,1,f +16550,3176,15,1,f +16550,3176,14,1,f +16550,31920,9999,1,f +16550,32000,19,4,f +16550,32005a,0,2,f +16550,32013,297,2,f +16550,32014,0,1,f +16550,32028,14,2,f +16550,32034,308,1,f +16550,32059,19,1,f +16550,32062,4,9,f +16550,32064a,14,2,f +16550,32123b,14,3,f +16550,32123b,14,3,t +16550,32138,0,2,f +16550,32202,297,2,f +16550,32291,71,1,f +16550,32449,14,4,f +16550,32474pr1013,85,2,f +16550,32523,15,1,f +16550,33291,27,1,t +16550,33291,212,4,f +16550,33291,212,1,t +16550,33291,27,2,f +16550,3626c,143,1,f +16550,3665,30,2,f +16550,3666,19,1,f +16550,3666,30,1,f +16550,3666,70,3,f +16550,3673,71,4,f +16550,3673,71,2,t +16550,3700,70,3,f +16550,3705,0,1,f +16550,3710,70,2,f +16550,3743,0,2,f +16550,3749,19,4,f +16550,3839b,0,1,f +16550,3960,15,1,f +16550,4032a,15,2,f +16550,40378,297,2,f +16550,41669,143,1,f +16550,41677,15,2,f +16550,41678,0,1,f +16550,41764,85,1,f +16550,41765,85,1,f +16550,41769,70,1,f +16550,41770,70,1,f +16550,4274,71,1,t +16550,4274,71,2,f +16550,4287,70,4,f +16550,43093,1,1,f +16550,4345b,4,1,f +16550,4346,4,1,f +16550,43898,15,2,f +16550,4519,71,1,f +16550,4590,72,1,f +16550,4697b,71,2,f +16550,4697b,71,1,t +16550,47406,30,1,f +16550,47457,15,1,f +16550,48336,297,2,f +16550,4871,30,1,f +16550,48723,297,1,f +16550,48729b,0,2,f +16550,48729b,0,1,t +16550,50950,85,2,f +16550,50950,30,2,f +16550,59426,72,1,f +16550,59443,70,6,f +16550,6005,85,4,f +16550,60478,70,2,f +16550,60897,70,7,f +16550,6091,19,2,f +16550,61184,71,2,f +16550,6141,27,6,f +16550,6141,27,1,t +16550,61780,70,1,f +16550,62462,297,2,f +16550,63864,85,4,f +16550,6536,14,2,f +16550,6553,0,2,f +16550,6558,1,2,f +16550,6628,0,2,f +16550,75937,15,3,f +16550,85861,297,1,t +16550,85861,0,2,f +16550,85861,0,1,t +16550,85861,297,2,f +16550,87079,14,1,f +16550,87087,30,4,f +16550,87580,4,1,f +16550,87580,19,1,f +16550,87620,30,4,f +16550,87751,297,1,f +16550,87994,15,2,f +16550,87994,15,1,t +16550,91988,70,2,f +16550,92280,0,2,f +16550,92456pr0115,78,1,f +16550,92456pr0116,78,1,f +16550,92820pr0110,379,1,f +16550,93273,19,2,f +16550,98138,41,2,f +16550,98138,41,1,t +16550,98138,52,2,t +16550,98138,52,5,f +16550,98138pr0034,52,1,f +16550,98138pr0034,52,1,t +16550,98138pr0051,297,1,f +16550,98138pr0051,297,1,t +16550,98138pr0073,0,1,f +16550,98138pr0073,0,1,t +16550,99207,4,2,f +16579,10113,308,1,f +16579,18031,179,1,f +16579,19185,308,1,f +16579,3626cpr2106,78,1,f +16579,970c00pr1219,288,1,f +16579,973pr0019c01,78,1,f +16589,11153,4,2,f +16589,11208,71,2,f +16589,11209,0,2,f +16589,15573,71,1,f +16589,2412b,0,2,f +16589,2432,0,1,f +16589,3004,72,1,f +16589,3021,0,1,f +16589,3023,4,3,f +16589,3031,4,1,f +16589,3034,72,1,f +16589,3626cpr1663,14,1,f +16589,4081b,4,2,f +16589,4865b,40,1,f +16589,50943,71,1,f +16589,50946,0,1,f +16589,50951,0,2,f +16589,6081,4,1,f +16589,6141,0,1,f +16589,6157,71,1,f +16589,62810,0,1,f +16589,64799,0,1,f +16589,93594,179,2,f +16589,970c00,72,1,f +16589,973pr2500c01,1,1,f +16589,98138,47,2,f +16589,98138,47,1,t +16591,10113,0,1,f +16591,10187,179,4,f +16591,10314,0,4,f +16591,10677pr0003,70,1,f +16591,11211,71,2,f +16591,11211,0,2,f +16591,11458,72,6,f +16591,11476,0,1,f +16591,13547,0,2,f +16591,13731,0,4,f +16591,14769,0,4,f +16591,15068,0,3,f +16591,15100,0,6,f +16591,15392,72,2,f +16591,15403,0,2,f +16591,15461,0,4,f +16591,15535,72,3,f +16591,15573,70,4,f +16591,22385,0,4,f +16591,23969,71,1,f +16591,2412b,71,2,f +16591,2419,0,1,f +16591,2420,0,8,f +16591,24201,71,2,f +16591,24246,71,2,f +16591,2431,72,2,f +16591,24316,70,4,f +16591,2432,71,2,f +16591,2456,322,1,f +16591,25214,148,6,f +16591,2653,0,4,f +16591,2654,52,1,f +16591,2654,71,6,f +16591,26601,72,2,f +16591,27145,14,1,f +16591,2730,71,4,f +16591,2780,0,2,f +16591,28779,0,2,f +16591,28782,46,1,f +16591,29384,70,1,f +16591,29453,14,1,f +16591,3001,4,3,f +16591,3003,29,1,f +16591,3010,14,1,f +16591,3010,72,1,f +16591,30136,71,6,f +16591,3020,19,2,f +16591,3020,72,1,f +16591,3021,0,8,f +16591,3022,71,1,f +16591,3023,27,2,f +16591,3023,72,16,f +16591,3023,4,7,f +16591,3023,0,23,f +16591,3031,0,1,f +16591,3031,72,2,f +16591,30361,0,2,f +16591,3037,70,1,f +16591,30414,71,2,f +16591,30426,0,1,f +16591,3049c,71,3,f +16591,3062b,71,2,f +16591,3062bpr0008,0,1,f +16591,3068b,0,1,f +16591,3068b,70,3,f +16591,3069b,46,2,f +16591,3069b,36,2,f +16591,3069b,191,2,f +16591,30995,70,1,f +16591,31509,0,2,f +16591,32000,0,4,f +16591,32054,71,2,f +16591,32064a,14,4,f +16591,32123b,71,4,f +16591,32187,71,2,f +16591,32291,0,2,f +16591,32807,0,10,f +16591,3623,72,4,f +16591,3623,14,4,f +16591,3626cpr2102,78,1,f +16591,3626cpr2146,320,2,f +16591,3626cpr2178,70,1,f +16591,3626cpr9998,78,1,f +16591,3660,0,2,f +16591,3666,0,6,f +16591,3700,4,4,f +16591,3701,72,4,f +16591,3702,0,3,f +16591,3703,15,2,f +16591,3705,0,2,f +16591,3707,0,1,f +16591,3710,71,2,f +16591,3710,0,7,f +16591,3713,4,4,f +16591,3713,71,3,f +16591,3747a,72,4,f +16591,3795,0,1,f +16591,3795,72,4,f +16591,3829c01,4,1,f +16591,3941,4,2,f +16591,3956,71,2,f +16591,4032a,15,2,f +16591,4032a,0,2,f +16591,41669,47,1,f +16591,4274,71,18,f +16591,43093,1,10,f +16591,43121,0,1,f +16591,43722,0,2,f +16591,43723,0,2,f +16591,44224,72,4,f +16591,44225,71,4,f +16591,44728,72,8,f +16591,4477,1,4,f +16591,47455,0,8,f +16591,47755,0,1,f +16591,48170,72,8,f +16591,48336,0,2,f +16591,48729b,0,2,f +16591,50303,0,1,f +16591,50304,4,1,f +16591,50305,4,1,f +16591,50950,0,2,f +16591,52031,0,1,f +16591,54200,46,2,f +16591,54200,0,10,f +16591,54200,36,2,f +16591,54383,4,1,f +16591,54384,4,1,f +16591,55976,0,4,f +16591,56145,4,4,f +16591,59426,72,4,f +16591,59900,0,4,f +16591,60484,0,4,f +16591,60897,0,1,f +16591,6091,72,2,f +16591,61409,71,2,f +16591,6141,71,8,f +16591,6141,179,8,f +16591,6231,0,4,f +16591,63868,72,4,f +16591,63965,71,2,f +16591,64728,4,1,f +16591,6558,1,22,f +16591,85984,71,2,f +16591,85984,0,4,f +16591,87079,0,1,f +16591,87620,0,2,f +16591,92593,72,8,f +16591,92946,0,4,f +16591,92947,71,1,f +16591,93274,72,1,f +16591,93606,0,4,f +16591,95199,0,1,f +16591,96874,25,1,f +16591,970c00,0,1,f +16591,970c00,272,1,f +16591,970c00pr1210,320,2,f +16591,970x037pr1177,78,1,f +16591,973pr3642c01,4,1,f +16591,973pr3650,0,1,f +16591,973pr3703c01,320,2,f +16591,98100,0,2,f +16591,98138,46,2,f +16591,98138,47,6,f +16591,98138,36,3,f +16591,98138,34,1,f +16591,98138pr0044,14,1,f +16591,98721,0,2,f +16591,99206,71,1,f +16591,99206,0,10,f +16591,99207,71,7,f +16591,99563,0,11,f +16591,99780,72,7,f +16591,99781,0,4,f +16597,10183,57,1,f +16597,11211,19,1,f +16597,12892,27,1,f +16597,13608,179,1,f +16597,15672,4,2,f +16597,15712,71,1,f +16597,18987,272,1,f +16597,18990,47,1,f +16597,2343,27,1,f +16597,24151,85,1,f +16597,2431,4,1,f +16597,24326,71,2,f +16597,2460,4,1,f +16597,2540,4,1,f +16597,30028,0,4,f +16597,3022,14,2,f +16597,3023,72,1,f +16597,30367c,25,1,f +16597,30426,272,1,f +16597,30426,272,1,t +16597,3070b,27,1,t +16597,3070b,27,1,f +16597,30947,41,2,f +16597,32556,19,1,f +16597,3626cpr2067,272,1,f +16597,3626cpr2068,27,1,f +16597,3626cpr2072,57,2,f +16597,3829c01,71,2,f +16597,41879a,71,1,f +16597,41879a,25,1,f +16597,43722,0,1,f +16597,43723,0,1,f +16597,44661,15,1,f +16597,4624,71,1,t +16597,4624,15,2,f +16597,4624,71,2,f +16597,4697b,71,2,f +16597,4697b,71,1,t +16597,4733,71,1,f +16597,4865b,35,1,f +16597,59895,0,4,f +16597,59900,179,2,f +16597,60897,72,6,f +16597,6141,35,1,f +16597,6141,35,1,t +16597,62462,4,1,f +16597,72454,4,1,f +16597,74967,15,2,f +16597,74967,71,2,f +16597,85861,14,1,f +16597,85861,14,1,t +16597,85984,85,1,f +16597,85984,4,1,f +16597,85984pr0007,4,1,f +16597,89522,378,1,f +16597,89522,378,1,t +16597,92280,4,2,f +16597,92842,0,1,f +16597,93273,85,2,f +16597,973pr3610c01,71,1,f +16597,973pr3611c01,85,1,f +16597,98721,0,1,f +16597,98721,0,1,t +16597,99206,71,1,f +16597,99207,25,1,f +16597,99781,0,1,f +16606,15573,15,2,f +16606,15712,14,2,f +16606,2420,15,4,f +16606,24201,71,4,f +16606,24299,15,2,f +16606,24307,15,2,f +16606,3021,72,1,f +16606,3022,4,1,f +16606,3022,15,3,f +16606,3023,14,2,f +16606,3023,71,1,f +16606,3023,0,1,f +16606,3023,378,2,f +16606,3024,15,1,f +16606,30367c,40,1,f +16606,3070b,4,1,f +16606,59900,0,2,f +16606,61409,15,4,f +16606,6141,182,4,f +16606,87580,15,1,f +16606,87994,0,2,f +16606,98100,71,2,f +16606,98138,40,1,f +16606,99206,71,2,f +16606,99207,71,2,f +16615,298c02,15,2,f +16615,3005,14,2,f +16615,30541,0,2,f +16615,4032a,14,1,f +16615,4274,1,1,f +16615,43337,40,2,f +16615,43898,14,2,f +16615,44302a,0,2,f +16615,44567a,0,1,f +16615,49668,0,1,f +16615,6141,0,3,f +16615,87081,0,2,f +16615,87620,14,2,f +16617,298c02,15,2,f +16617,3021,14,2,f +16617,3022,0,4,f +16617,30357,4,4,f +16617,30565,4,4,f +16617,30602,4,1,f +16617,3660,4,2,f +16617,4150,14,2,f +16617,6141,14,4,f +16617,6141,1,2,f +16617,73983,0,2,f +16626,10928,72,1,f +16626,11214,72,12,f +16626,11478,0,9,f +16626,11946,15,2,f +16626,11946,25,2,f +16626,11946,272,3,f +16626,11947,15,2,f +16626,11947,25,2,f +16626,11947,272,3,f +16626,11954,4,8,f +16626,14226c11,0,1,t +16626,14226c11,0,3,f +16626,14720,71,2,f +16626,15100,72,21,f +16626,15458,272,10,f +16626,15458,72,5,f +16626,15458,15,2,f +16626,15462,70,4,f +16626,15470,15,1,f +16626,15470,15,1,t +16626,15712,0,8,f +16626,17485,14,4,f +16626,18575,19,1,f +16626,18575,0,1,f +16626,18591,4,1,f +16626,18651,0,7,f +16626,18654,179,2,t +16626,18654,179,20,f +16626,18944,272,4,f +16626,18945,15,2,f +16626,18946,4,1,f +16626,18948,15,3,f +16626,18990,47,2,f +16626,22961,71,4,f +16626,24116,272,2,f +16626,24116,15,6,f +16626,2431,15,2,f +16626,24316,70,2,f +16626,24947,14,2,f +16626,2654,15,1,f +16626,2780,0,5,t +16626,2780,0,216,f +16626,27940,72,1,f +16626,2825,71,4,f +16626,3020,15,6,f +16626,3022,0,3,f +16626,3022,15,1,f +16626,3023,15,4,f +16626,30367c,15,4,f +16626,30367c,14,2,f +16626,30374,0,4,f +16626,30552,72,2,f +16626,30553,0,4,f +16626,3069b,15,2,f +16626,32002,19,3,t +16626,32002,19,20,f +16626,32013,71,2,f +16626,32039,0,14,f +16626,32054,71,27,f +16626,32056,0,2,f +16626,32062,4,31,f +16626,32063,15,3,f +16626,32072,14,4,f +16626,32073,71,7,f +16626,32123b,14,20,f +16626,32123b,14,3,t +16626,32126,15,2,f +16626,32140,15,8,f +16626,32140,0,2,f +16626,32184,0,8,f +16626,32198,19,2,f +16626,32250,4,4,f +16626,32250,14,2,f +16626,32270,0,11,f +16626,32278,4,3,f +16626,32278,272,3,f +16626,32278,72,6,f +16626,32291,71,7,f +16626,32316,15,8,f +16626,32316,4,17,f +16626,32316,72,5,f +16626,32449,0,8,f +16626,32523,2,1,f +16626,32523,25,4,f +16626,32523,15,14,f +16626,32523pr0001,15,1,f +16626,32524,0,3,f +16626,32524,72,3,f +16626,32524,15,9,f +16626,32525,272,2,f +16626,32525,72,11,f +16626,32526,0,14,f +16626,32526,15,8,f +16626,32526,72,1,f +16626,32556,19,3,f +16626,32905,71,2,f +16626,3648b,72,2,f +16626,3673,71,9,f +16626,3673,71,1,t +16626,3701,15,1,f +16626,3705,0,18,f +16626,3706,4,7,f +16626,3710,15,2,f +16626,3713,71,21,f +16626,3713,71,3,t +16626,3749,19,1,f +16626,3941,1,4,f +16626,4032a,14,4,f +16626,4032a,15,2,f +16626,40490,15,10,f +16626,40490,4,7,f +16626,41239,15,5,f +16626,41239,4,9,f +16626,4162,15,1,f +16626,41677,15,12,f +16626,41678,71,2,f +16626,42003,71,15,f +16626,42610,71,5,f +16626,4274,71,3,t +16626,4274,71,57,f +16626,4289,15,1,f +16626,43093,1,50,f +16626,43857,0,9,f +16626,44294,14,4,f +16626,4519,71,21,f +16626,48496,0,3,f +16626,48729b,0,1,t +16626,48729b,0,4,f +16626,48989,71,11,f +16626,50951,0,5,f +16626,54200,36,1,t +16626,54200,34,1,f +16626,54200,36,1,f +16626,54200,34,1,t +16626,55013,72,2,f +16626,57585,71,1,f +16626,59426,72,3,f +16626,59443,72,1,f +16626,59443,4,15,f +16626,59807,14,2,f +16626,59900,182,1,f +16626,6041,0,3,f +16626,60483,71,8,f +16626,60484,72,7,f +16626,60485,71,4,f +16626,61409,72,6,f +16626,6141,4,4,f +16626,6141,47,2,f +16626,6141,47,1,t +16626,6141,4,1,t +16626,61903,71,4,f +16626,62462,15,9,f +16626,63869,0,6,f +16626,64179,71,2,f +16626,64449,15,2,f +16626,64782,2,2,f +16626,6536,4,24,f +16626,6536,15,8,f +16626,6536,0,8,f +16626,6558,1,119,f +16626,6589,19,8,f +16626,6632,15,10,f +16626,6632,0,4,f +16626,87080,272,1,f +16626,87082,71,1,f +16626,87083,72,3,f +16626,87086,272,1,f +16626,87408,0,2,f +16626,93550,179,2,t +16626,93550,179,2,f +16626,94925,71,3,f +16626,98138,25,4,f +16626,98138,25,1,t +16626,98138pr0024a,179,1,t +16626,98138pr0024a,179,1,f +16626,98989,71,2,f +16626,99008,19,5,f +16626,99009,71,1,f +16626,99010,0,1,f +16626,99012,72,3,f +16626,99773,0,7,f +16649,10197,72,2,f +16649,11214,72,2,f +16649,11215,71,1,f +16649,11477,288,4,f +16649,11477,71,8,f +16649,13195pr0001,326,1,f +16649,14769,71,2,f +16649,15068,288,2,f +16649,15068,0,1,f +16649,15303,35,3,f +16649,15400,72,2,f +16649,18651,0,6,f +16649,18654,72,2,f +16649,18654,72,1,t +16649,18671,72,4,f +16649,18675pr0002,40,1,f +16649,2412b,19,2,f +16649,2420,72,4,f +16649,24201,71,2,f +16649,2431,288,4,f +16649,2450,0,2,f +16649,2450,71,8,f +16649,2639,72,2,f +16649,2654,41,2,f +16649,2780,0,6,f +16649,2780,0,2,t +16649,28809,71,8,f +16649,29421,9999,1,f +16649,3004,0,1,f +16649,3009,72,1,f +16649,3020,72,2,f +16649,3021,71,2,f +16649,3022,0,1,f +16649,3023,71,2,f +16649,3023,19,2,f +16649,3023,288,19,f +16649,3024,72,1,t +16649,3024,72,4,f +16649,30361pr1001,15,1,f +16649,30362,15,2,f +16649,30367cpr1001,179,1,f +16649,30374,35,1,f +16649,30414,288,2,f +16649,3062b,72,2,f +16649,3062b,36,2,f +16649,3069b,40,2,f +16649,32000,72,2,f +16649,32016,71,4,f +16649,32028,72,2,f +16649,32054,0,2,f +16649,32054,71,4,f +16649,32062,4,2,f +16649,32064a,0,6,f +16649,32140,72,2,f +16649,32184,0,2,f +16649,3298,0,1,f +16649,3666,288,3,f +16649,3666,72,3,f +16649,3701,72,2,f +16649,3708,4,1,f +16649,3710,288,2,f +16649,3832,71,1,f +16649,4032a,72,2,f +16649,4032a,0,4,f +16649,41677,72,2,f +16649,41678,72,2,f +16649,41769,71,2,f +16649,41770,71,2,f +16649,41879a,19,1,f +16649,42003,71,2,f +16649,4287,288,2,f +16649,43722,288,2,f +16649,43723,288,2,f +16649,43857,71,2,f +16649,4510,71,4,f +16649,50304,71,2,f +16649,50304,288,2,f +16649,50305,71,2,f +16649,50305,288,2,f +16649,50950,288,2,f +16649,50950,0,2,f +16649,54200,71,2,f +16649,54200,71,1,t +16649,54383,72,1,f +16649,54384,72,1,f +16649,59900,0,2,f +16649,6005,71,6,f +16649,60219,72,1,f +16649,60470b,0,2,f +16649,60478,0,2,f +16649,6141,34,1,t +16649,6141,34,2,f +16649,63864,71,2,f +16649,63965,0,2,f +16649,64567,80,1,t +16649,64567,80,1,f +16649,6553,72,4,f +16649,6558,1,2,f +16649,85984,0,1,f +16649,85984,71,4,f +16649,87552,40,1,f +16649,87580,19,1,f +16649,92280,71,4,f +16649,93273,71,2,f +16649,93606,72,2,f +16649,973pr3847c01,19,1,f +16649,99207,4,1,f +16649,99780,71,1,f +16649,99781,0,5,f +16653,11458,72,2,f +16653,11477,72,3,f +16653,15068,71,5,f +16653,15391,0,4,f +16653,15392,72,7,f +16653,15403,0,2,f +16653,18671,72,1,f +16653,2412b,72,1,f +16653,2432,72,1,f +16653,28168pr0001,0,2,f +16653,3020,0,2,f +16653,3022,0,2,f +16653,3023,28,7,f +16653,30386,71,2,f +16653,30387,71,2,f +16653,30408pr0007,15,2,f +16653,3626cpr1149,78,4,f +16653,3710,71,3,f +16653,3795,71,2,f +16653,3941,72,2,f +16653,3957a,0,2,f +16653,4032a,72,3,f +16653,43093,1,2,f +16653,44302a,72,6,f +16653,44728,0,1,f +16653,4865b,40,1,f +16653,51739,72,1,f +16653,54200,71,2,f +16653,61409,0,2,f +16653,6141,36,14,f +16653,92280,71,3,f +16653,92582,71,2,f +16653,970c00pr0719,15,2,f +16653,970c00pr1119,0,2,f +16653,973pr2767c01,15,2,f +16653,973pr3624c01,0,2,f +16653,98138,71,2,f +16653,99207,71,3,f +16653,99780,0,1,f +16653,99781,71,3,f +16674,15068,0,1,f +16674,2817,0,2,f +16674,3021,4,1,f +16674,32013,72,1,f +16674,32073,71,1,f +16674,33299a,0,1,f +16674,3626cpr1651,272,1,f +16674,3673,71,1,f +16674,42610,71,1,f +16674,50859b,179,1,f +16674,50860,0,1,f +16674,50861,0,2,f +16674,50862,4,2,f +16674,59900,33,1,f +16674,61184,71,1,f +16674,75902pr0004,4,1,f +16674,85984,0,1,f +16674,88072,0,1,f +16674,88072,4,1,f +16674,92409,0,1,f +16674,970c00,272,1,f +16674,973pr2985c01,272,1,f +16678,10201,0,6,f +16678,11211,15,1,f +16678,11211,0,8,f +16678,11212,0,2,f +16678,11476,0,6,f +16678,11477,2,4,f +16678,14704,71,6,f +16678,14718,4,1,f +16678,15068,2,4,f +16678,15068,0,2,f +16678,15068,288,8,f +16678,15395,0,1,f +16678,15573,1,14,f +16678,15573,14,2,f +16678,15573,2,3,f +16678,15573,15,1,f +16678,15573,0,33,f +16678,15573,4,5,f +16678,15573,72,7,f +16678,15672,15,2,f +16678,15672,0,12,f +16678,15672,1,8,f +16678,15706,70,6,f +16678,15712,0,10,f +16678,18649,0,3,f +16678,18654,0,1,f +16678,18674,15,1,f +16678,20482,297,1,f +16678,22890,72,1,f +16678,2420,71,4,f +16678,2420,4,2,f +16678,24201,71,5,f +16678,2431,1,2,f +16678,2437,40,1,f +16678,2445,4,2,f +16678,2460,0,2,f +16678,2508,0,4,f +16678,2569,0,2,f +16678,26047,0,2,f +16678,2654,47,4,f +16678,26603,0,3,f +16678,2780,0,2,f +16678,2877,71,2,f +16678,2926,0,1,f +16678,3001,1,3,f +16678,3001,4,1,f +16678,3002,15,2,f +16678,3003,0,1,f +16678,30031,0,3,f +16678,3004,14,1,f +16678,3004,1,2,f +16678,3004,0,4,f +16678,3005,14,1,f +16678,3005,1,4,f +16678,3005,4,4,f +16678,3005,288,2,f +16678,3005,0,1,f +16678,3005,71,6,f +16678,3010,71,1,f +16678,3010,4,3,f +16678,3010,0,1,f +16678,3020,71,2,f +16678,3020,4,3,f +16678,3020,288,3,f +16678,3020,0,12,f +16678,3020,1,3,f +16678,3021,70,1,f +16678,3021,1,1,f +16678,3021,0,10,f +16678,3021,71,14,f +16678,3021,15,2,f +16678,3022,72,9,f +16678,3022,15,2,f +16678,3022,70,1,f +16678,3022,71,3,f +16678,3022,14,1,f +16678,3022,0,1,f +16678,3023,40,6,f +16678,3023,14,3,f +16678,3023,4,13,f +16678,3023,71,8,f +16678,3023,1,6,f +16678,3023,288,6,f +16678,3023,33,4,f +16678,3023,0,20,f +16678,3023,47,1,f +16678,3024,297,4,f +16678,3024,14,2,f +16678,3024,1,1,f +16678,3024,4,3,f +16678,3024,71,4,f +16678,3024,0,7,f +16678,3024,33,1,f +16678,3024,46,2,f +16678,3027,72,1,f +16678,3029,71,1,f +16678,3031,15,1,f +16678,3031,71,6,f +16678,3034,1,3,f +16678,3034,0,1,f +16678,30361c,15,1,f +16678,30367c,0,1,f +16678,3037,71,1,f +16678,30374,297,4,f +16678,30377,15,1,f +16678,30414,1,4,f +16678,3065,33,2,f +16678,3065,47,3,f +16678,3065,40,6,f +16678,3068b,288,3,f +16678,3068b,0,3,f +16678,3069b,33,3,f +16678,3069b,0,5,f +16678,3069b,70,40,f +16678,3069b,4,6,f +16678,3069b,15,6,f +16678,3069b,72,3,f +16678,3070b,14,4,f +16678,3070b,1,4,f +16678,3070b,288,2,f +16678,3070b,70,80,f +16678,3176,4,2,f +16678,32001,4,1,f +16678,32028,0,2,f +16678,32062,4,2,f +16678,3228c,71,11,f +16678,32474,0,4,f +16678,33291,2,2,f +16678,3460,0,4,f +16678,3460,4,2,f +16678,3460,1,6,f +16678,3460,15,2,f +16678,3622,15,1,f +16678,3622,1,5,f +16678,3623,14,1,f +16678,3623,0,9,f +16678,3623,15,7,f +16678,3623,1,8,f +16678,3623,71,6,f +16678,3665,15,1,f +16678,3666,15,4,f +16678,3666,0,3,f +16678,3666,1,2,f +16678,3666,71,4,f +16678,3666,288,4,f +16678,3679,71,2,f +16678,3680,4,1,f +16678,3680,0,1,f +16678,3700,0,3,f +16678,3702,0,2,f +16678,3705,0,4,f +16678,3709,71,3,f +16678,3710,1,8,f +16678,3710,4,7,f +16678,3710,14,2,f +16678,3710,71,8,f +16678,3710,15,6,f +16678,3710,72,6,f +16678,3710,0,12,f +16678,3738,72,1,f +16678,3795,70,3,f +16678,3795,15,1,f +16678,3795,0,5,f +16678,3832,0,1,f +16678,3832,1,1,f +16678,3839b,0,1,f +16678,3937,0,7,f +16678,3958,72,15,f +16678,4032b,4,1,f +16678,4070,71,1,f +16678,4070,4,6,f +16678,4070,0,6,f +16678,4070,14,3,f +16678,4081b,15,4,f +16678,4081b,0,4,f +16678,4162,71,4,f +16678,41677,4,2,f +16678,42446,0,1,f +16678,4274,1,1,f +16678,43898,0,1,f +16678,44728,4,1,f +16678,4477,71,4,f +16678,4533,71,2,f +16678,45677,0,1,f +16678,4600,71,7,f +16678,4600,0,6,f +16678,47755,0,1,f +16678,47905,0,7,f +16678,47905,378,2,f +16678,48336,297,1,f +16678,4865b,14,1,f +16678,4871,0,2,f +16678,50254,4,13,f +16678,50254,0,14,f +16678,50950,288,4,f +16678,54200,1,3,f +16678,54200,15,5,f +16678,54200,71,20,f +16678,54200,0,10,f +16678,54200,33,2,f +16678,57999,4,2,f +16678,57999,0,6,f +16678,58176,36,2,f +16678,58176,33,4,f +16678,59900,297,2,f +16678,60475b,0,2,f +16678,60478,0,2,f +16678,60478,14,1,f +16678,60593,0,1,f +16678,60897,14,16,f +16678,60897,0,15,f +16678,61252,297,1,f +16678,6134,4,1,f +16678,6134,70,6,f +16678,61409,15,2,f +16678,6141,1,1,f +16678,6141,33,5,f +16678,6141,47,2,f +16678,6141,80,2,f +16678,6141,0,24,f +16678,6141,4,6,f +16678,6141,15,2,f +16678,6141,297,2,f +16678,6141,14,1,f +16678,6179,0,6,f +16678,63864,0,8,f +16678,63868,0,4,f +16678,63965,14,2,f +16678,6541,15,4,f +16678,73983,72,2,f +16678,85861,297,2,f +16678,85861,0,8,f +16678,85984,0,14,f +16678,85984,1,7,f +16678,87079,1,4,f +16678,87079,71,1,f +16678,87087,15,4,f +16678,87552,14,1,f +16678,87580,0,1,f +16678,88072,71,1,f +16678,88704,0,1,f +16678,92280,0,2,f +16678,92410,71,2,f +16678,92593,72,5,f +16678,92692,0,1,f +16678,93273,0,2,f +16678,93555,179,6,f +16678,93559,15,2,f +16678,96874,25,2,f +16678,98138,1,1,f +16678,98138,47,2,f +16678,98138,36,3,f +16678,98138,71,2,f +16678,98138,4,1,f +16678,99206,0,1,f +16678,99563,0,2,f +16678,99780,0,6,f +16689,17630,308,1,f +16689,30374,41,1,f +16689,3626cpr1629,92,1,f +16689,64567,80,1,f +16689,970c00pr0720,72,1,f +16689,973pr2769c01,326,1,f +16691,10113,0,1,f +16691,10197,72,2,f +16691,10201,0,1,f +16691,10928,72,4,f +16691,11055,4,1,f +16691,11090,70,6,f +16691,11203,72,6,f +16691,11211,71,6,f +16691,11211,19,6,f +16691,11212,72,10,f +16691,11214,72,9,f +16691,11215,71,2,f +16691,11289,40,1,f +16691,11458,0,10,f +16691,11476,71,1,f +16691,11477,0,12,f +16691,13731,0,6,f +16691,14417,72,4,f +16691,14418,71,4,f +16691,14704,71,4,f +16691,14769,0,6,f +16691,15068,0,7,f +16691,15392,72,1,t +16691,15392,72,6,f +16691,15403,0,6,f +16691,15573,71,6,f +16691,15573,2,2,f +16691,15712,72,10,f +16691,17486,71,2,f +16691,18649,0,1,f +16691,18674,72,4,f +16691,18759,72,8,f +16691,18980,0,2,f +16691,19159,0,1,f +16691,2357,72,2,f +16691,2412b,71,5,f +16691,2412b,4,2,f +16691,2412b,0,1,f +16691,2419,0,2,f +16691,24201,0,6,f +16691,2432,70,1,f +16691,2445,0,2,f +16691,2540,72,2,f +16691,2654,72,4,f +16691,2654,0,2,f +16691,26599,71,1,f +16691,26604,19,2,f +16691,27145,14,1,t +16691,27145,14,1,f +16691,27151,272,1,f +16691,27151,272,1,t +16691,2780,0,2,t +16691,2780,0,12,f +16691,2817,0,1,f +16691,28432pr0002,320,1,f +16691,28551,2,1,f +16691,2877,19,1,f +16691,29249,85,1,f +16691,29709,70,1,f +16691,298c02,71,1,t +16691,298c02,4,1,f +16691,298c02,4,1,t +16691,298c02,71,2,f +16691,29924,4,1,f +16691,29927,72,1,f +16691,3002,0,2,f +16691,3003,0,2,f +16691,3005,0,8,f +16691,3008,71,2,f +16691,3010,70,2,f +16691,3010,29,2,f +16691,30132,72,1,t +16691,30132,72,1,f +16691,30153,46,2,f +16691,3020,0,8,f +16691,3021,0,6,f +16691,3022,70,4,f +16691,3023,47,24,f +16691,3028,0,1,f +16691,3031,72,3,f +16691,30361,72,5,f +16691,30374,71,1,f +16691,30374,0,1,f +16691,3040b,28,2,f +16691,30414,72,4,f +16691,30426,0,1,f +16691,3062b,47,1,f +16691,3068b,0,1,f +16691,3069b,70,1,f +16691,30886,0,1,f +16691,3176,0,4,f +16691,32013,0,1,f +16691,32016,71,6,f +16691,32054,71,4,f +16691,32062,4,1,f +16691,32064a,72,6,f +16691,32187,179,3,f +16691,32523,0,2,f +16691,32807,0,6,f +16691,33426,2,1,f +16691,3460,4,2,f +16691,3460,71,2,f +16691,3460,72,2,f +16691,3623,70,2,f +16691,3623,0,2,f +16691,3626cpr2138,78,1,f +16691,3626cpr2150,78,1,f +16691,3626cpr2160,84,1,f +16691,3626cpr2162,84,1,f +16691,3626cpr2166,15,1,f +16691,3626cpr9996,78,1,f +16691,3660,0,2,f +16691,3666,0,10,f +16691,3676,72,2,f +16691,3701,71,10,f +16691,3702,0,6,f +16691,3703,71,2,f +16691,3706,4,3,f +16691,3710,28,5,f +16691,3710,71,6,f +16691,3743,0,6,f +16691,3747a,0,6,f +16691,3749,19,5,f +16691,3795,0,2,f +16691,3795,28,4,f +16691,3894,0,2,f +16691,3937,71,2,f +16691,3937,0,1,f +16691,3938,71,2,f +16691,3938,0,1,f +16691,4032a,70,2,f +16691,4032a,484,11,f +16691,4070,70,2,f +16691,4162,0,4,f +16691,41767,0,1,f +16691,41768,0,1,f +16691,41769,0,5,f +16691,41770,0,5,f +16691,42023,72,2,f +16691,42610,71,1,f +16691,4274,1,2,t +16691,4274,1,17,f +16691,43093,1,2,f +16691,43121,0,1,f +16691,4349,0,1,f +16691,43710,0,2,f +16691,43711,0,2,f +16691,43719,0,1,f +16691,43898,47,1,f +16691,44224,72,4,f +16691,44225,71,4,f +16691,44300,0,2,f +16691,44676,0,2,f +16691,44728,72,8,f +16691,45705,40,1,f +16691,47455,0,3,f +16691,47457,72,3,f +16691,47753,0,6,f +16691,48169,72,3,f +16691,48171,72,3,f +16691,48336,0,2,f +16691,4865b,41,1,f +16691,50955,0,1,f +16691,50956,0,1,f +16691,51739,0,1,f +16691,52107,28,2,f +16691,54200,71,1,t +16691,54200,0,4,f +16691,54200,0,1,t +16691,54200,71,4,f +16691,55236,70,4,f +16691,55236,2,4,f +16691,58176,179,2,f +16691,59426,72,1,f +16691,59443,14,1,f +16691,60477,0,4,f +16691,60479,0,2,f +16691,61184,71,2,f +16691,61409,0,6,f +16691,61409,72,8,f +16691,6141,41,1,f +16691,6141,36,1,t +16691,6141,179,1,t +16691,6141,46,2,t +16691,6141,46,23,f +16691,6141,36,4,f +16691,6141,41,1,t +16691,6141,179,20,f +16691,6190,72,2,f +16691,62462,71,2,f +16691,63864,28,2,f +16691,63868,72,6,f +16691,63965,71,2,f +16691,63965,72,2,f +16691,64225,0,3,f +16691,6553,72,2,f +16691,6558,1,13,f +16691,6587,28,2,f +16691,6628,0,4,f +16691,6636,28,2,f +16691,71155,0,1,f +16691,73983,72,2,f +16691,75937,0,1,f +16691,78c14,0,2,f +16691,85984,0,2,f +16691,85984,71,5,f +16691,87079,0,2,f +16691,87087,72,2,f +16691,87087,71,2,f +16691,87580,0,2,f +16691,92280,71,8,f +16691,92593,72,2,f +16691,92946,0,4,f +16691,92947,0,1,f +16691,93273,0,4,f +16691,93274,71,2,f +16691,93606,0,2,f +16691,96874,25,1,f +16691,970c00,0,2,f +16691,970c00,272,1,f +16691,970c00pr1171,85,1,f +16691,970c00pr1205,288,1,f +16691,970c00pr1223,0,1,f +16691,973pr3634,85,1,f +16691,973pr3650,0,1,f +16691,973pr3692c01,288,1,f +16691,973pr3712c01,212,1,f +16691,973pr3725c01,272,1,f +16691,973pr3726c01,0,1,f +16691,98100,0,1,f +16691,98138,71,1,t +16691,98138,71,5,f +16691,98721,0,1,t +16691,98721,0,2,f +16691,99021,72,2,f +16691,99206,71,16,f +16691,99206,0,2,f +16691,99207,0,13,f +16691,99563,0,9,f +16691,99780,72,1,f +16722,12618,15,1,f +16722,15208,15,1,f +16722,15209,15,2,f +16722,15209,2,2,f +16722,15501,15,1,f +16722,15501,15,1,t +16722,15573,71,1,f +16722,15712,72,4,f +16722,18031,179,1,f +16722,22411,15,1,f +16722,2412b,15,2,f +16722,24151,2,1,f +16722,24326,71,2,f +16722,298c02,15,1,f +16722,298c02,15,1,t +16722,30028,0,6,f +16722,3020,15,1,f +16722,3022,28,1,f +16722,3023,27,3,f +16722,3023,47,1,f +16722,30367c,47,1,f +16722,3069b,2,2,f +16722,33172,70,1,f +16722,3626cpr2075,78,1,f +16722,3626cpr2084,71,1,f +16722,3829c01,0,1,f +16722,4070,47,4,f +16722,41879a,1,1,f +16722,41879a,2,1,f +16722,44661,47,3,f +16722,4590,15,1,f +16722,4624,71,2,f +16722,4624,71,1,t +16722,4740,28,1,f +16722,54200,47,1,t +16722,54200,47,8,f +16722,59895,0,2,f +16722,6126b,182,2,f +16722,6141,47,1,t +16722,6141,47,2,f +16722,74967,71,6,f +16722,86208,72,2,f +16722,91884,179,1,f +16722,92691,15,1,f +16722,973pr3614,4,1,f +16722,973pr3625c01,71,1,f +16722,98725pr0001,0,1,f +16722,99207,71,6,f +16728,11092,297,1,f +16728,11438,297,1,f +16728,11476,71,1,f +16728,15070,14,4,f +16728,15573,297,1,f +16728,15712,4,4,f +16728,23186,0,1,f +16728,24151,28,1,f +16728,2432,70,1,f +16728,24326,71,2,f +16728,2540,71,1,f +16728,27925,297,4,f +16728,29050pr0001,4,1,f +16728,30028,0,6,f +16728,3003,72,1,f +16728,30043,71,1,f +16728,3022,28,2,f +16728,3022,4,1,f +16728,3023,72,2,f +16728,3062b,41,3,f +16728,3626cpr2079,78,1,f +16728,3626cpr2080,1,1,f +16728,3710,19,1,f +16728,3829c01,71,2,f +16728,3839b,72,1,f +16728,4006,179,1,f +16728,41879a,1,1,f +16728,41879a,4,1,f +16728,4624,71,2,f +16728,47755,4,1,f +16728,54200,82,1,t +16728,54200,82,6,f +16728,54200,40,2,f +16728,59895,0,2,f +16728,60474,72,1,f +16728,60478,28,4,f +16728,6141,41,6,f +16728,6141,41,1,t +16728,74967,71,6,f +16728,85984,14,1,f +16728,973pr3617c01,4,1,f +16728,973pr3618c01,1,1,f +16728,98138,45,1,f +16728,98138,41,1,f +16728,98138,34,1,f +16728,98138,46,1,f +16728,98138,182,1,f +16728,98138,45,1,t +16728,98138,41,1,t +16728,98138,182,1,t +16728,98138,46,1,t +16728,98313,297,5,f +16728,98397,71,1,f +16728,99207,0,1,f +16728,99780,4,1,f +16730,10187,179,1,t +16730,10187,179,2,f +16730,10201,0,2,f +16730,10305pr0001,4,1,f +16730,11477,1,2,f +16730,18980,1,1,f +16730,19888,85,1,t +16730,19888,85,1,f +16730,2432,70,1,f +16730,24326,71,2,f +16730,2540,72,2,f +16730,25893,47,1,f +16730,25893,47,1,t +16730,30028,0,4,f +16730,3003,71,1,f +16730,3005,4,2,f +16730,3022,28,2,f +16730,3023,70,3,f +16730,3024,71,1,t +16730,3024,71,4,f +16730,3068b,1,1,f +16730,3069b,4,1,f +16730,3626cpr2076,0,1,f +16730,3626cpr2081,78,1,f +16730,3829c01,71,1,f +16730,41854,85,1,f +16730,41879a,85,1,f +16730,41879a,1,1,f +16730,42444,0,1,f +16730,43722,1,1,f +16730,43723,1,1,f +16730,44676,272,4,f +16730,4624,71,1,t +16730,4624,71,4,f +16730,4740,41,2,f +16730,4740pr0004b,52,1,f +16730,54200,46,2,f +16730,54200,272,1,t +16730,54200,272,4,f +16730,54200,46,1,t +16730,59895,0,4,f +16730,59900,182,2,f +16730,6091,4,2,f +16730,72454,72,1,f +16730,74967,71,4,f +16730,85984,85,1,f +16730,85984pr0008,1,1,f +16730,85984pr0143,72,1,f +16730,973pr3619c01,14,1,f +16730,973pr9997,4,1,f +16730,98100,71,1,f +16730,98138,41,1,t +16730,98138,41,2,f +16730,99780,4,2,f +16730,99781,71,2,f +16732,11408pr0100c01,78,1,f +16732,11816pr0005,78,1,f +16732,13547,15,2,f +16732,14014pr0005,78,1,f +16732,14718,71,1,f +16732,14769,0,1,f +16732,14769,191,4,f +16732,14769,19,1,f +16732,14769pr1070,19,2,f +16732,15254,19,2,f +16732,15533,84,1,f +16732,15573,71,4,f +16732,20482,47,1,f +16732,20482,47,1,t +16732,2343,47,2,f +16732,2357,19,2,f +16732,23969,41,1,f +16732,2412b,19,6,f +16732,2412b,70,4,f +16732,2412b,71,3,f +16732,2415,71,1,f +16732,2423,2,4,f +16732,2431,4,1,f +16732,2431,71,1,f +16732,2453b,19,4,f +16732,2456,19,2,f +16732,25269pr03,19,1,t +16732,25269pr03,19,4,f +16732,26490,320,1,f +16732,29773,9999,1,f +16732,3001,71,2,f +16732,3001,19,1,f +16732,30028,0,2,f +16732,3004,19,3,f +16732,3004,15,1,f +16732,3004,71,4,f +16732,3008,19,1,f +16732,3009,19,2,f +16732,3010,19,4,f +16732,30137,70,1,f +16732,30179,15,1,f +16732,3020,70,2,f +16732,3020,4,2,f +16732,3021,191,3,f +16732,3022,70,2,f +16732,3023,15,2,f +16732,3023,4,1,f +16732,30237b,19,1,f +16732,3024,15,10,f +16732,3024,15,2,t +16732,3034,15,1,f +16732,30374,71,1,f +16732,3039,4,1,f +16732,3039pr0020,15,1,f +16732,3045,4,2,f +16732,3062b,15,1,f +16732,3062b,26,4,f +16732,3068b,15,3,f +16732,3069b,2,2,f +16732,3069bpr0100,2,1,f +16732,3069bpr0130,322,1,f +16732,3070b,71,1,t +16732,3070b,71,2,f +16732,3070b,4,1,t +16732,3070b,4,8,f +16732,3245b,15,2,f +16732,32807,4,4,f +16732,33183,10,2,f +16732,33183,10,1,t +16732,33291,10,8,f +16732,33291,4,1,t +16732,33291,191,2,t +16732,33291,4,2,f +16732,33291,10,2,t +16732,33291,191,14,f +16732,3464,15,1,f +16732,3622,19,2,f +16732,3633,15,3,f +16732,3660,26,4,f +16732,3660,71,2,f +16732,3665,19,2,f +16732,3666,19,1,f +16732,3710,15,2,f +16732,3710,19,4,f +16732,3795,2,2,f +16732,3795,71,1,f +16732,3823,47,1,f +16732,3900,71,1,f +16732,3941,70,2,f +16732,4032a,15,4,f +16732,4162,15,2,f +16732,4274,71,1,f +16732,4274,71,1,t +16732,4286,19,2,f +16732,4599b,71,1,f +16732,4599b,71,1,t +16732,4600,0,1,f +16732,4865b,47,1,f +16732,50950,26,4,f +16732,54200,14,1,t +16732,54200,14,1,f +16732,59895,0,1,t +16732,59895,0,1,f +16732,59900,34,1,f +16732,60212,15,1,f +16732,60481,19,4,f +16732,60594,26,2,f +16732,60594,15,1,f +16732,60608,15,4,f +16732,60614,30,2,f +16732,60616a,47,1,f +16732,60808,19,2,f +16732,6091,15,12,f +16732,6091,2,4,f +16732,61183,0,1,f +16732,61409,72,1,f +16732,6141,36,2,f +16732,6141,36,1,t +16732,6141,0,4,f +16732,6141,0,1,t +16732,6190,4,1,f +16732,62462,15,1,f +16732,74967,71,2,f +16732,87079,15,1,f +16732,87079,191,1,f +16732,87079,2,1,f +16732,87087,15,2,f +16732,87087,19,4,f +16732,87544,15,1,f +16732,87580,71,2,f +16732,87580,15,2,f +16732,87585,70,1,t +16732,87585,70,1,f +16732,88292,19,4,f +16732,91405,31,1,f +16732,92258,0,1,f +16732,92438,31,1,f +16732,92456pr0094c01,78,1,f +16732,92593,71,2,f +16732,92818pr0002c01,26,1,f +16732,92950,19,1,f +16732,93095,15,1,f +16732,98138,71,1,t +16732,98138,71,1,f +16732,98283,84,1,f +16732,99207,0,1,f +16741,10247,15,2,f +16741,11211,15,3,f +16741,11213,322,1,f +16741,11215,15,1,f +16741,11477,15,5,f +16741,11816pr0002,78,1,f +16741,11816pr0017,78,1,f +16741,13548,15,2,f +16741,13965,70,2,f +16741,14418,71,4,f +16741,14716,15,2,f +16741,14719,15,3,f +16741,14769,71,1,f +16741,14769pr1056,15,2,f +16741,15068,15,3,f +16741,15068pr0012,15,1,f +16741,15207,15,1,f +16741,15208,15,1,f +16741,15470,29,1,f +16741,15535,72,2,f +16741,15571,323,1,f +16741,15571,297,1,f +16741,15875pr0105c01,288,1,f +16741,15875pr0106c01,322,1,f +16741,16577,15,1,f +16741,16770,41,6,f +16741,18394pat0002,1003,2,f +16741,18649,71,2,f +16741,18674,322,2,f +16741,18674,15,1,f +16741,18844,226,1,f +16741,18980,30,2,f +16741,19641,15,1,f +16741,22388,41,7,f +16741,22390,323,1,f +16741,22888,15,3,f +16741,22890,72,4,f +16741,2343,47,2,f +16741,2357,31,3,f +16741,2357,15,1,f +16741,2357,2,1,f +16741,23969,41,2,f +16741,23986,5,1,f +16741,24080,484,1,f +16741,2420,15,4,f +16741,2420,2,1,f +16741,2423,15,4,f +16741,2423,2,2,f +16741,2431,41,13,f +16741,2431,15,1,f +16741,2432,70,2,f +16741,2453b,15,3,f +16741,2454a,323,2,f +16741,2454a,15,4,f +16741,2465,15,1,f +16741,25893,47,1,f +16741,28387,323,1,f +16741,28825,73,1,f +16741,28920,297,1,f +16741,3001,322,2,f +16741,3001,15,2,f +16741,3002,15,2,f +16741,3003,15,4,f +16741,3003,31,2,f +16741,3004,323,8,f +16741,3004,26,1,f +16741,3004,15,12,f +16741,3005,322,4,f +16741,3005,41,21,f +16741,3005,2,1,f +16741,3008,15,2,f +16741,3009,15,1,f +16741,3010,15,7,f +16741,30145,15,3,f +16741,30151b,47,1,f +16741,30153,41,1,f +16741,30153,33,1,f +16741,30153,45,6,f +16741,3020,322,7,f +16741,3020,2,1,f +16741,3020,15,6,f +16741,3021,70,2,f +16741,3021,15,4,f +16741,3022,2,2,f +16741,3022,70,5,f +16741,3022,19,1,f +16741,3022,15,3,f +16741,3023,15,14,f +16741,3023,26,2,f +16741,3023,272,3,f +16741,3023,322,1,f +16741,3023,323,2,f +16741,3023,31,6,f +16741,3023,41,34,f +16741,3023,19,2,f +16741,3024,15,6,f +16741,3024,41,8,f +16741,3024,322,2,f +16741,3024,46,4,f +16741,3033,15,1,f +16741,3034,15,2,f +16741,3035,15,1,f +16741,30363,15,1,f +16741,30367c,15,1,f +16741,30367c,41,1,f +16741,30374,41,8,f +16741,3038,15,2,f +16741,30385,143,1,f +16741,3039,41,11,f +16741,3039,31,4,f +16741,3039,15,1,f +16741,3040b,15,8,f +16741,3040b,2,1,f +16741,3065,47,1,f +16741,3065,41,10,f +16741,3065,45,3,f +16741,3068b,15,2,f +16741,3068b,322,1,f +16741,3069b,322,2,f +16741,3069b,15,3,f +16741,3069b,323,3,f +16741,3069bpr0168,70,1,f +16741,3070b,15,2,f +16741,3176,70,3,f +16741,32013,15,1,f +16741,32062,4,2,f +16741,32123b,14,1,f +16741,3245b,15,3,f +16741,32474pr1009,15,4,f +16741,33172,25,1,f +16741,33183,70,2,f +16741,33183,10,1,f +16741,33291,212,3,f +16741,3460,26,2,f +16741,3622,71,2,f +16741,3622,323,2,f +16741,3623,15,2,f +16741,3626b,15,4,f +16741,3659,15,3,f +16741,3660,15,5,f +16741,3665,15,5,f +16741,3666,15,3,f +16741,3666,30,1,f +16741,3666,73,2,f +16741,3673,71,1,f +16741,3700,71,1,f +16741,3710,30,2,f +16741,3710,15,2,f +16741,3738,15,1,f +16741,3747a,15,2,f +16741,3794b,15,7,f +16741,3795,15,4,f +16741,3795,322,1,f +16741,3795,30,3,f +16741,3822,15,1,f +16741,3832,71,1,f +16741,3937,15,1,f +16741,3941,41,1,f +16741,40243,323,8,f +16741,4032a,15,2,f +16741,4032a,70,1,f +16741,4162,322,4,f +16741,4162,15,3,f +16741,41769,15,1,f +16741,42409,41,2,f +16741,43093,1,1,f +16741,4460b,15,2,f +16741,4460b,31,4,f +16741,44728,15,1,f +16741,4519,71,2,f +16741,46212,41,12,f +16741,4733,15,2,f +16741,47847,1003,2,f +16741,48336,15,1,f +16741,4865b,322,1,f +16741,4871,15,1,f +16741,50949,272,6,f +16741,50950,322,2,f +16741,54200,15,8,f +16741,54200,41,16,f +16741,54200,322,2,f +16741,58176,41,4,f +16741,59443,14,3,f +16741,59900,15,4,f +16741,59900,41,3,f +16741,60475b,15,6,f +16741,60477,15,1,f +16741,60478,15,6,f +16741,60481,70,1,f +16741,6081,15,2,f +16741,60897,1,8,f +16741,60897,70,1,f +16741,6091,15,3,f +16741,61184,71,1,f +16741,6126b,1003,1,f +16741,6134,71,1,f +16741,6141,1,5,f +16741,6141,15,3,f +16741,6141,27,4,f +16741,61485,15,1,f +16741,6182,15,2,f +16741,6231,15,1,f +16741,6254,27,1,f +16741,63864,322,4,f +16741,64644,297,4,f +16741,73983,15,2,f +16741,73983,71,2,f +16741,87079,15,2,f +16741,87079,26,3,f +16741,87079,322,1,f +16741,87087,71,4,f +16741,87544,47,1,f +16741,87552,41,4,f +16741,87580,322,1,f +16741,87580,30,2,f +16741,87580,26,2,f +16741,87580,15,1,f +16741,87580,71,7,f +16741,88072,15,3,f +16741,88930,15,1,f +16741,89522,25,1,f +16741,91405,15,1,f +16741,92438,15,1,f +16741,92438,323,1,f +16741,92456pr0211c01,323,1,f +16741,92456pr0212c01,78,1,f +16741,92474,41,2,f +16741,92593,71,3,f +16741,92950,15,3,f +16741,93095,30,2,f +16741,96874,25,1,f +16741,98100,15,2,f +16741,98138,41,5,f +16741,98138,14,2,f +16741,98138,15,8,f +16741,98138pr0066,15,1,f +16742,11618,31,1,f +16742,11618,85,1,t +16742,11618,31,1,t +16742,11618,85,1,f +16742,14769pr1063,15,1,f +16742,15745,45,1,f +16742,18674,322,2,f +16742,20482,47,1,f +16742,20482,47,1,t +16742,28920,297,1,f +16742,29446,84,1,f +16742,3004,15,4,f +16742,3010,15,1,f +16742,3032,27,1,f +16742,3062b,46,4,f +16742,3062b,322,1,f +16742,3062b,85,1,f +16742,33291,31,1,t +16742,33291,31,1,f +16742,3666,322,1,f +16742,3666,5,1,f +16742,3795,5,1,f +16742,3852b,322,1,f +16742,4032a,15,1,f +16742,41302stk01,9999,1,f +16742,4274,71,1,f +16742,4274,71,1,t +16742,4865b,41,1,f +16742,50950,5,2,f +16742,6041,0,1,f +16742,60475b,15,2,f +16742,60478,15,1,f +16742,60581,15,1,f +16742,6254,15,1,f +16742,6256,14,1,f +16742,85080,15,2,f +16742,87580,85,1,f +16742,93160,15,1,t +16742,93160,15,1,f +16742,98138pr0056,84,1,f +16742,98138pr0056,84,1,t +16742,99207,0,1,f +16745,11477,15,1,f +16745,11478,71,2,f +16745,13971,71,2,f +16745,14418,71,4,f +16745,14419,72,2,f +16745,15092,72,2,f +16745,15100,0,1,f +16745,15460,72,1,f +16745,22385pr0018,33,1,f +16745,22385pr0029,35,1,f +16745,22385pr0030,47,1,f +16745,22385pr0031,36,1,f +16745,22385pr0032,46,1,f +16745,22388,57,2,f +16745,22388,57,1,t +16745,22401,179,1,f +16745,24201,71,1,f +16745,24246,15,2,f +16745,24246,15,1,t +16745,2446,15,1,f +16745,2540,25,2,f +16745,27167,15,1,f +16745,27168,72,1,f +16745,27255,71,1,f +16745,27257,57,1,t +16745,27257,57,1,f +16745,2780,0,1,f +16745,2780,0,1,t +16745,28192,15,4,f +16745,3023,15,2,f +16745,3023,25,1,f +16745,3024,15,1,t +16745,3024,15,2,f +16745,3068bpr0314,15,1,f +16745,32000,15,2,f +16745,32002,19,4,f +16745,32002,19,1,t +16745,32062,0,6,f +16745,3626cpr1783,14,1,f +16745,41678,71,2,f +16745,42610,71,2,f +16745,43093,1,2,f +16745,44676,15,2,f +16745,50923,72,2,f +16745,54200,15,1,t +16745,54200,15,2,f +16745,59900,179,1,f +16745,6141,179,1,f +16745,6141,179,1,t +16745,6541,71,1,f +16745,85861,15,1,t +16745,85861,15,1,f +16745,85984,15,2,f +16745,92582,25,1,f +16745,93575,179,2,f +16745,970c00pr1156,15,1,f +16745,973pr3606c01,15,1,f +16745,99773,71,2,f +16745,99784,57,1,t +16745,99784,57,1,f +16747,11211,15,2,f +16747,11609,14,1,t +16747,11609,14,1,f +16747,11618,85,1,t +16747,11618,85,1,f +16747,14769pr1063,15,1,f +16747,15254,15,1,f +16747,15573,85,1,f +16747,15672,15,2,f +16747,18653,5,2,f +16747,2412b,15,2,f +16747,2458,15,2,f +16747,2540,0,1,f +16747,2817,0,1,f +16747,30013,71,1,f +16747,3020,0,1,f +16747,3022,27,1,f +16747,3023,15,2,f +16747,3023,5,2,f +16747,3034,0,1,f +16747,30377,0,1,t +16747,30377,0,1,f +16747,3039,14,2,f +16747,3062b,15,1,f +16747,3062b,322,2,f +16747,33291,31,4,f +16747,33291,31,1,t +16747,3666,322,2,f +16747,3795,27,3,f +16747,3957a,15,1,f +16747,4495b,5,1,f +16747,4865b,322,2,f +16747,50950,14,2,f +16747,54200,5,1,t +16747,54200,5,4,f +16747,6141,2,5,f +16747,6141,2,1,t +16747,6256,5,1,f +16747,87079,14,1,f +16747,87580,322,1,f +16747,93160,15,1,t +16747,93160,15,2,f +16747,98138pr0056,84,1,t +16747,98138pr0056,84,1,f +16747,99207,0,1,f +16748,11609,14,2,f +16748,11609,14,1,t +16748,11618,322,1,t +16748,11618,322,1,f +16748,14769pr1063,15,1,f +16748,15207,14,1,f +16748,22888,27,1,f +16748,2496,0,2,f +16748,3010,15,1,f +16748,3023,322,2,f +16748,3023,5,2,f +16748,3034,0,1,f +16748,3037,14,1,f +16748,3062b,15,4,f +16748,3297,15,2,f +16748,33291,31,2,f +16748,33291,31,1,t +16748,3623,27,2,f +16748,3666,5,1,f +16748,3957a,15,1,f +16748,42511,85,1,f +16748,4286,322,2,f +16748,4286,15,2,f +16748,4495b,5,1,f +16748,50950,322,2,f +16748,6256,5,1,f +16748,87079,14,1,f +16748,87087,15,2,f +16748,92950,15,2,f +16748,93088pr0003,15,1,f +16748,93160,15,1,f +16748,93160,15,1,t +16748,98138pr0056,84,1,t +16748,98138pr0056,84,1,f +16748,99207,0,1,f +16749,10314,15,1,f +16749,11618,31,1,t +16749,11618,31,1,f +16749,11816pr0005,78,1,f +16749,18674,15,4,f +16749,18742,84,1,f +16749,18853,191,1,t +16749,18853,191,1,f +16749,18853,29,1,t +16749,18853,29,1,f +16749,18854,45,1,f +16749,18854,45,1,t +16749,20482,47,1,t +16749,20482,47,4,f +16749,22888,158,1,f +16749,2456,272,1,f +16749,26047,0,2,f +16749,26603,15,1,f +16749,29121,379,1,f +16749,29171,297,1,t +16749,29171,297,1,f +16749,3003,272,1,f +16749,3004,272,2,f +16749,3004,158,1,f +16749,3005,15,2,f +16749,30089,0,1,f +16749,3010,272,2,f +16749,3020,31,1,f +16749,3022,0,2,f +16749,3023,85,1,f +16749,3023,71,3,f +16749,3024,47,1,t +16749,3024,47,3,f +16749,3062b,0,1,f +16749,3068b,15,3,f +16749,3069b,26,1,f +16749,3176,85,2,f +16749,3245b,15,1,f +16749,33291,26,2,f +16749,33291,26,1,t +16749,33291,31,1,t +16749,33291,31,2,f +16749,33291,191,1,t +16749,33291,191,6,f +16749,3460,0,2,f +16749,3666,15,1,f +16749,3710,15,1,f +16749,3741,2,1,t +16749,3741,2,2,f +16749,3795,31,1,f +16749,3852b,322,1,f +16749,4094b,272,1,f +16749,43888,15,2,f +16749,4733,71,2,f +16749,4740,70,1,f +16749,4865b,40,1,f +16749,50950,85,2,f +16749,54200,0,1,t +16749,54200,0,8,f +16749,59349,31,1,f +16749,60897,15,2,f +16749,61252,71,1,f +16749,75937,0,1,f +16749,87580,26,1,f +16749,87618,0,1,f +16749,87994,0,1,t +16749,87994,0,1,f +16749,92258,0,1,f +16749,92456pr0061c01,78,1,f +16749,92818pr0001c01,272,1,f +16750,11816pr0006,78,1,f +16750,14769pr0009,15,1,f +16750,15068,322,1,f +16750,15396,31,1,f +16750,18854,52,1,t +16750,18854,52,1,f +16750,20482,47,1,f +16750,20482,47,1,t +16750,21445,0,1,f +16750,23969,26,2,f +16750,24111pr0001,19,1,f +16750,2654,15,1,f +16750,29161,27,2,f +16750,30162,72,1,f +16750,3020,30,2,f +16750,3021,71,1,f +16750,3023,71,1,f +16750,3023,27,1,f +16750,3023,0,1,f +16750,3023,19,3,f +16750,3031,30,1,f +16750,30565,322,2,f +16750,3062b,15,3,f +16750,3062b,41,1,f +16750,3068b,25,1,f +16750,3069b,25,1,f +16750,3176,27,2,f +16750,3464,15,2,f +16750,3710,15,2,f +16750,3794b,15,3,f +16750,3795,322,1,f +16750,3900,15,1,f +16750,4032a,71,1,f +16750,41539,19,1,f +16750,4495b,2,1,f +16750,4624,71,1,f +16750,4624,71,1,t +16750,48336,71,1,f +16750,4865b,15,1,f +16750,4865b,47,1,f +16750,59895,0,2,f +16750,59900,26,1,f +16750,60470a,71,1,f +16750,60475b,71,1,f +16750,60481,15,4,f +16750,6091,27,2,f +16750,6141,46,1,t +16750,6141,41,1,t +16750,6141,41,5,f +16750,6141,46,2,f +16750,63965,15,1,f +16750,87087,15,1,f +16750,87414,0,1,f +16750,90397,27,1,f +16750,90397pr0001b,15,1,f +16750,92254pr0003,320,1,f +16750,92456pr0070c01,78,1,f +16750,92819pr0002a,27,1,f +16750,98138pr0056,84,1,f +16750,98138pr0056,84,1,t +16750,98397,71,1,f +16750,99780,15,1,f +16751,11203pr0015,19,1,f +16751,11253,0,1,f +16751,11253,0,1,t +16751,11816pr0003,78,1,f +16751,18674,72,2,f +16751,18854,45,1,t +16751,18854,45,1,f +16751,18855,323,1,f +16751,19220,0,1,f +16751,23969,19,2,f +16751,2496,0,2,f +16751,2655,71,2,f +16751,29008,9999,1,f +16751,298c02,71,1,t +16751,298c02,71,2,f +16751,3004,30,1,f +16751,3008,30,1,f +16751,30162,72,4,f +16751,3020,0,2,f +16751,3022,19,1,f +16751,3022,27,1,f +16751,3023,15,1,f +16751,3023,5,2,f +16751,3034,5,1,f +16751,3035,19,2,f +16751,30350b,41,1,f +16751,3068b,15,1,f +16751,3069b,321,2,f +16751,3176,5,2,f +16751,3700,15,2,f +16751,3710,5,2,f +16751,3899,5,1,f +16751,4274,71,1,t +16751,4274,71,2,f +16751,43898pr1004,15,1,f +16751,4536,15,1,f +16751,4733,15,4,f +16751,48336,0,1,f +16751,48336,15,1,f +16751,604547,321,1,f +16751,604548,321,1,f +16751,604549,321,1,f +16751,604550,321,1,f +16751,604551,321,1,f +16751,604552,321,1,f +16751,604553,321,1,f +16751,604614,321,1,f +16751,604615,321,1,f +16751,60470a,0,1,f +16751,60475b,0,4,f +16751,60897,71,3,f +16751,61252,72,3,f +16751,6141,35,1,t +16751,6141,35,1,f +16751,6141,46,1,t +16751,6141,45,6,f +16751,6141,41,1,t +16751,6141,46,5,f +16751,6141,45,1,t +16751,6141,41,2,f +16751,6179,15,1,f +16751,63868,0,1,f +16751,85984,15,3,f +16751,87580,321,2,f +16751,92256,70,1,f +16751,92410,30,1,f +16751,92456pr0085c01,78,1,f +16751,92820pr0011c01,30,1,f +16753,11618,322,1,t +16753,11618,322,1,f +16753,11618,26,1,t +16753,11618,26,1,f +16753,11816pr0002,78,1,f +16753,14769,30,2,f +16753,15395,26,1,f +16753,15470,29,1,t +16753,15470,15,1,f +16753,15470,29,1,f +16753,15573,71,1,f +16753,15712,15,1,f +16753,15745,45,1,f +16753,20482,47,1,f +16753,22667,26,1,t +16753,22667,26,1,f +16753,23969,41,2,f +16753,2412b,71,1,f +16753,2453b,15,2,f +16753,2456,15,1,f +16753,2460,15,1,f +16753,28920,297,1,f +16753,3003,15,1,f +16753,3004,29,1,f +16753,3004,322,1,f +16753,3005,15,2,f +16753,3005,71,2,f +16753,3005pr0006,73,1,f +16753,3010,15,2,f +16753,30151b,47,2,f +16753,30179,15,1,f +16753,3021,19,1,f +16753,3021,30,1,f +16753,3023,19,2,f +16753,3024,73,1,f +16753,3024,19,5,f +16753,3024,272,1,t +16753,3024,272,1,f +16753,3024,73,1,t +16753,3024,19,1,t +16753,3024,30,1,f +16753,3024,30,1,t +16753,3032,30,1,f +16753,3039,322,1,f +16753,3045,322,2,f +16753,3062b,70,1,f +16753,3069b,29,1,f +16753,3069bpt0178,15,1,f +16753,3070bpr0007,71,1,f +16753,3176,322,2,f +16753,3176,29,1,f +16753,33291,191,1,f +16753,33291,31,1,t +16753,33291,191,1,t +16753,33291,31,1,f +16753,33291,26,1,f +16753,33291,26,1,t +16753,3666,26,2,f +16753,3710,26,1,f +16753,3710,30,2,f +16753,3795,30,1,f +16753,3795,322,1,f +16753,3899,5,1,f +16753,3941,323,2,f +16753,4070,0,2,f +16753,4345b,15,1,f +16753,4346,47,1,f +16753,4529,15,1,f +16753,4533,41,1,f +16753,4599b,71,1,t +16753,4599b,71,1,f +16753,4865b,41,1,f +16753,57895pr0009,47,1,f +16753,59900,15,1,f +16753,60474,15,1,f +16753,60478,15,1,f +16753,6141,71,1,f +16753,6141,27,1,f +16753,6141,71,1,t +16753,6141,297,1,t +16753,6141,297,1,f +16753,6141,27,1,t +16753,85861,15,1,t +16753,85861,15,1,f +16753,87580,0,1,f +16753,87994,70,1,t +16753,87994,70,1,f +16753,92255,226,1,f +16753,92410,15,1,f +16753,92456pr0062c01,78,1,f +16753,92818pr0002c01,26,1,f +16753,98138,15,1,f +16753,98387pr0001,15,1,f +16754,10201,0,1,f +16754,11213,191,1,f +16754,11477,26,2,f +16754,11618,191,1,t +16754,11618,191,1,f +16754,11640pr0004,321,1,f +16754,11816pr0001,84,1,f +16754,14716,15,2,f +16754,15573,26,1,f +16754,15712,71,1,f +16754,16577,26,1,f +16754,18674,15,1,f +16754,22888,27,1,f +16754,2449,323,2,f +16754,3004,30,2,f +16754,3004,26,4,f +16754,3005,26,4,f +16754,30137,84,1,f +16754,3020,191,1,f +16754,3020,0,1,f +16754,3023,30,4,f +16754,3023,0,2,f +16754,3031,27,1,f +16754,3035,27,1,f +16754,3068bpr0138,15,1,f +16754,3069b,191,3,f +16754,3176,191,2,f +16754,33291,191,8,f +16754,33291,191,1,t +16754,3460,15,1,f +16754,3666,0,1,f +16754,3700,0,2,f +16754,3710,191,1,f +16754,3710,0,1,f +16754,4740,71,2,f +16754,59900,71,1,f +16754,60471,0,1,f +16754,60481,323,2,f +16754,6091,26,2,f +16754,6141,42,1,t +16754,6141,41,1,t +16754,6141,42,3,f +16754,6141,41,3,f +16754,6141,45,2,f +16754,6141,45,1,t +16754,61485,15,1,f +16754,64644,71,1,f +16754,85861,0,1,t +16754,85861,0,3,f +16754,90370pr0005,0,1,t +16754,90370pr0005,0,2,f +16754,92456pr0060c01,84,1,f +16754,92582,0,1,f +16754,92818pr0006c01,323,1,f +16754,93352,308,1,f +16754,98388pr0007,321,1,f +16754,99781,0,1,f +16755,11203pr0012,191,1,f +16755,11203pr0013,29,1,f +16755,11203pr0015,19,1,f +16755,11211,71,1,f +16755,11403pr0005c01,379,1,f +16755,11477,191,2,f +16755,11477,322,2,f +16755,11609,191,1,t +16755,11609,191,1,f +16755,11610,5,1,f +16755,11618,191,1,t +16755,11618,191,1,f +16755,11816pr0002,78,1,f +16755,15573,27,1,f +16755,15745,41,1,f +16755,18674,72,1,f +16755,18854,45,1,t +16755,18854,45,1,f +16755,18892,0,2,f +16755,20482,47,1,f +16755,20482,47,1,t +16755,23969,47,1,f +16755,23969,322,4,f +16755,23969,19,2,f +16755,2412b,71,3,f +16755,24131,322,1,f +16755,24131,322,1,t +16755,2420,191,2,f +16755,2431,71,1,f +16755,2431,4,1,f +16755,2445,71,1,f +16755,2453b,15,2,f +16755,2456,15,1,f +16755,24947,4,1,f +16755,2495,4,1,f +16755,2496,0,1,f +16755,3003,30,1,f +16755,3003,15,2,f +16755,3005,15,1,f +16755,3008,30,2,f +16755,3009,15,1,f +16755,3010,30,1,f +16755,30179,15,1,f +16755,3020,72,1,f +16755,3020,19,1,f +16755,3021,71,1,f +16755,3021,0,2,f +16755,3022,19,2,f +16755,3022,29,1,f +16755,3022,191,1,f +16755,3023,0,3,f +16755,30237b,15,2,f +16755,3029,27,1,f +16755,3031,19,1,f +16755,3032,322,1,f +16755,30367c,4,1,f +16755,3037,30,3,f +16755,30374,15,1,f +16755,3039pr0020,15,1,f +16755,30414,71,2,f +16755,3069b,322,1,f +16755,3069b,191,1,f +16755,3069b,4,1,f +16755,3069bpr0055,15,1,f +16755,3069bpr0100,2,1,f +16755,3069bpr0158,323,1,f +16755,3069bpt0178,15,1,f +16755,30956,9999,1,f +16755,32028,71,2,f +16755,33291,191,6,f +16755,33291,4,1,f +16755,33291,4,1,t +16755,33291,191,1,t +16755,3622,71,1,f +16755,3622,30,2,f +16755,3623,30,2,f +16755,3626c,27,1,f +16755,3660,15,4,f +16755,3666,322,2,f +16755,3666,191,1,f +16755,3666,15,3,f +16755,3710,191,2,f +16755,3741,2,1,t +16755,3741,2,1,f +16755,3795,322,2,f +16755,3937,15,1,f +16755,4081b,71,2,f +16755,4176,47,1,f +16755,4345b,4,1,f +16755,4346,4,1,f +16755,43888,15,2,f +16755,44728,71,1,f +16755,4495b,4,1,f +16755,50745,322,4,f +16755,52031,322,1,f +16755,54200,47,2,f +16755,54200,47,1,t +16755,54200,15,2,f +16755,54200,15,1,t +16755,58380,15,1,f +16755,58381,15,1,f +16755,59349,47,1,f +16755,6014b,15,4,f +16755,60581,15,1,f +16755,60581,191,2,f +16755,60616a,47,1,f +16755,6134,71,1,f +16755,6141,46,2,f +16755,6141,2,1,f +16755,6141,2,1,t +16755,6141,46,1,t +16755,6179,71,2,f +16755,63965,15,1,f +16755,6636,30,1,f +16755,85984,15,1,f +16755,85984,71,1,f +16755,87079,30,1,f +16755,87079,15,2,f +16755,87087,71,1,f +16755,87544,191,2,f +16755,87552,47,2,f +16755,87580,322,1,f +16755,87580,4,1,f +16755,87580,27,1,f +16755,87609,15,1,f +16755,87697,0,4,f +16755,92099,15,1,f +16755,92107,322,1,f +16755,92255,226,1,f +16755,92456pr0099c01,78,1,f +16755,92593,30,2,f +16755,93095,191,2,f +16755,98138,36,2,f +16755,98138,36,1,t +16755,98138pr0024a,179,1,f +16755,98138pr0024a,179,1,t +16755,98283,84,4,f +16756,11212,71,2,f +16756,11403pr0008c01,85,1,f +16756,11408pr0101c01,84,1,f +16756,11476,71,5,f +16756,11641,15,1,f +16756,11816pr0006,78,1,f +16756,14014pr0001,84,1,f +16756,14716,85,8,f +16756,15068,2,2,f +16756,15210,15,1,f +16756,15573,71,1,f +16756,18674,322,1,f +16756,20482,47,1,t +16756,20482,47,2,f +16756,22667,26,1,t +16756,22667,26,1,f +16756,22888,5,2,f +16756,2343,47,2,f +16756,23969,41,2,f +16756,2412b,15,2,f +16756,2431,85,1,f +16756,2431,25,2,f +16756,2431,15,2,f +16756,2432,4,1,f +16756,2432,1,1,f +16756,2449,85,6,f +16756,2453a,85,6,f +16756,2496,85,1,f +16756,2496,0,1,f +16756,26490,379,1,f +16756,2654,26,1,f +16756,3001,15,1,f +16756,3001,85,1,f +16756,3001,322,1,f +16756,3003,5,1,f +16756,3003,322,2,f +16756,3004,72,3,f +16756,3004,5,1,f +16756,3004,85,10,f +16756,3004,15,2,f +16756,3004,322,8,f +16756,3005,85,1,f +16756,3010,322,2,f +16756,3010,71,1,f +16756,30136,71,2,f +16756,30150,84,1,f +16756,30151b,47,1,f +16756,30179,15,2,f +16756,3020,191,2,f +16756,3021,191,1,f +16756,3022,71,2,f +16756,3022,85,1,f +16756,3023,191,7,f +16756,3023,25,3,f +16756,3023,322,1,f +16756,3023,85,6,f +16756,30237b,15,1,f +16756,3024,25,2,t +16756,3024,71,2,f +16756,3024,25,2,f +16756,3024,71,1,t +16756,30261,15,1,f +16756,3027,19,1,f +16756,3032,2,1,f +16756,3034,71,1,f +16756,30340,14,2,f +16756,3035,71,1,f +16756,30350a,0,1,f +16756,30361c,4,1,f +16756,30367c,4,1,f +16756,3039,71,1,f +16756,3039pr0020,15,1,f +16756,30414,72,1,f +16756,30414,0,1,f +16756,30414,71,1,f +16756,30562,47,2,f +16756,30586,71,2,f +16756,3062b,4,1,f +16756,3062b,33,1,f +16756,3069bpr0100,2,1,f +16756,3069bpr0130,322,1,f +16756,3185,15,1,f +16756,31922,297,1,f +16756,31922,179,1,f +16756,32013,72,1,f +16756,32064a,15,1,f +16756,32316,0,2,f +16756,3245b,71,3,f +16756,32474,27,1,f +16756,32474,4,1,f +16756,33243,85,6,f +16756,33291,10,1,t +16756,33291,4,3,t +16756,33291,5,1,t +16756,33291,5,2,f +16756,33291,4,8,f +16756,33291,191,1,f +16756,33291,10,2,f +16756,33291,191,1,t +16756,3460,71,1,f +16756,3460,15,1,f +16756,3623,191,8,f +16756,3626cpr1296a,14,1,f +16756,3660,15,1,f +16756,3673,71,1,t +16756,3673,71,10,f +16756,3678b,72,1,f +16756,3710,25,8,f +16756,3710,5,1,f +16756,3710,71,5,f +16756,3794b,15,2,f +16756,3795,25,1,f +16756,3795,19,2,f +16756,3957a,15,1,f +16756,4032a,71,2,f +16756,4070,15,1,f +16756,41539,19,1,f +16756,41749,191,1,f +16756,41750,191,1,f +16756,4274,1,1,t +16756,4274,1,1,f +16756,4460b,15,2,f +16756,4519,71,1,f +16756,4533,72,2,f +16756,4599b,15,1,f +16756,4599b,15,1,t +16756,46212,47,2,f +16756,46212,85,3,f +16756,46303,71,1,f +16756,4719,4,1,f +16756,4740,15,1,f +16756,48092,322,2,f +16756,48336,0,1,f +16756,4865b,15,1,f +16756,50950,191,2,f +16756,50950,85,2,f +16756,54200,322,1,t +16756,54200,322,2,f +16756,54200,85,1,t +16756,54200,85,1,f +16756,57895,47,2,f +16756,60476,71,2,f +16756,60581,15,1,f +16756,60581,47,2,f +16756,60592,15,2,f +16756,6141,322,1,t +16756,6141,322,1,f +16756,6141,179,1,t +16756,6141,14,1,f +16756,6141,2,1,t +16756,6141,179,2,f +16756,6141,14,1,t +16756,6141,2,2,f +16756,6179,15,1,f +16756,62113,72,1,f +16756,6231,15,2,f +16756,6232,72,1,f +16756,62462,71,4,f +16756,62810,308,1,f +16756,63864,19,2,f +16756,63965,71,1,f +16756,63965,15,2,f +16756,6541,72,2,f +16756,6541,0,1,f +16756,6636,321,3,f +16756,72824,15,1,f +16756,72824,25,1,f +16756,85975,297,1,f +16756,87079,15,1,f +16756,87544,47,2,f +16756,87552,47,7,f +16756,87580,15,2,f +16756,91405,19,1,f +16756,92257,320,1,f +16756,92410,71,2,f +16756,92456pr0100c01,78,1,f +16756,92851,47,2,f +16756,92950,85,2,f +16756,93091,26,1,f +16756,93216,15,1,f +16756,93273,85,1,f +16756,93273,71,2,f +16756,98138,71,1,t +16756,98138,71,2,f +16756,98138,52,1,t +16756,98138,46,1,f +16756,98138,46,1,t +16756,98138,52,1,f +16756,98397,71,1,f +16756,99207,15,1,f +16757,10247,0,1,f +16757,10314,29,2,f +16757,11211,71,1,f +16757,11458,15,2,f +16757,11476,15,1,f +16757,11477,322,2,f +16757,11477,2,2,f +16757,11477,26,1,f +16757,11618,322,1,t +16757,11618,322,1,f +16757,11816pr0002,78,1,f +16757,11816pr0101,78,1,f +16757,11816pr0102,78,1,f +16757,14413,15,2,f +16757,14719,19,2,f +16757,14769,0,1,f +16757,14769,71,1,f +16757,14769,27,1,f +16757,15068,322,1,f +16757,15254,15,2,f +16757,15470,70,1,f +16757,15470,29,1,t +16757,15470,29,2,f +16757,15470,70,1,t +16757,15535,0,1,f +16757,16985pr0105c01,323,1,f +16757,18674,15,1,f +16757,18852pr0001,15,1,f +16757,20309,19,1,f +16757,20482,47,1,t +16757,20482,47,1,f +16757,20877,226,1,f +16757,21229,26,2,f +16757,22667,26,1,t +16757,22667,26,1,f +16757,22885,5,2,f +16757,22888,19,1,f +16757,23186,19,1,f +16757,2357,0,1,f +16757,2357,15,6,f +16757,23969,41,1,f +16757,2412b,71,1,f +16757,2420,26,2,f +16757,2420,15,2,f +16757,2420,27,2,f +16757,2420,19,2,f +16757,2423,2,4,f +16757,2431,19,11,f +16757,2431,15,2,f +16757,2445,15,2,f +16757,2453b,15,6,f +16757,2454a,15,16,f +16757,2460,0,1,f +16757,2496,0,1,f +16757,25269pr01,19,1,t +16757,25269pr01,19,4,f +16757,2540,71,1,f +16757,2540,19,1,f +16757,26490,15,1,f +16757,2780,0,1,t +16757,2780,0,4,f +16757,28327,15,2,f +16757,28466,31,2,f +16757,28809,71,2,f +16757,28920,297,1,f +16757,3001,15,5,f +16757,3003,15,2,f +16757,3004,15,24,f +16757,3004,5,2,f +16757,3004,323,3,f +16757,3005,19,6,f +16757,3005,45,5,f +16757,3005,15,20,f +16757,3008,15,11,f +16757,3010,31,1,f +16757,3010,15,16,f +16757,30179,15,9,f +16757,3020,323,2,f +16757,3020,19,2,f +16757,3020,71,2,f +16757,3020,15,1,f +16757,3020,191,2,f +16757,3020,31,3,f +16757,3020,27,2,f +16757,3020,26,2,f +16757,3021,71,1,f +16757,3021,27,1,f +16757,3021,15,1,f +16757,3021,30,1,f +16757,3022,27,1,f +16757,3022,322,1,f +16757,3022,71,1,f +16757,3022,14,2,f +16757,3023,15,2,f +16757,3023,27,2,f +16757,3023,41,1,f +16757,3023,47,1,f +16757,3023,26,4,f +16757,3023,71,2,f +16757,3023,322,5,f +16757,3023,30,1,f +16757,3023,0,2,f +16757,30237b,15,1,f +16757,3024,19,1,t +16757,3024,19,1,f +16757,3024,26,1,t +16757,3024,26,1,f +16757,3027,19,1,f +16757,3031,10,1,f +16757,3032,19,1,f +16757,3034,19,4,f +16757,3037,322,3,f +16757,3039,322,2,f +16757,3040b,15,4,f +16757,3040b,322,8,f +16757,3045,0,2,f +16757,3045,322,10,f +16757,3062b,15,12,f +16757,3062b,46,2,f +16757,3062b,19,6,f +16757,3062b,34,1,f +16757,3065,47,2,f +16757,3068b,191,3,f +16757,3068b,322,1,f +16757,3068b,29,3,f +16757,3068b,71,2,f +16757,3068b,15,2,f +16757,3068b,19,1,f +16757,3068b,4,1,f +16757,3068bpr0255,15,1,f +16757,3069b,47,1,f +16757,3069b,72,1,f +16757,3069b,15,2,f +16757,3069b,191,1,f +16757,3069b,26,4,f +16757,3069b,322,1,f +16757,3069b,19,6,f +16757,3069bpr0158,323,1,f +16757,3069bpt0178,15,1,f +16757,3070b,26,2,f +16757,3070b,26,1,t +16757,3070b,19,2,f +16757,3070b,19,1,t +16757,32524,15,2,f +16757,3297,322,5,f +16757,33172,25,1,f +16757,33183,10,1,t +16757,33183,10,2,f +16757,33291,31,1,t +16757,33291,191,12,f +16757,33291,31,2,f +16757,33291,4,1,t +16757,33291,5,1,t +16757,33291,26,1,t +16757,33291,26,2,f +16757,33291,4,14,f +16757,33291,191,4,t +16757,33291,5,3,f +16757,33303,15,2,f +16757,3460,19,2,f +16757,3460,27,1,f +16757,3460,26,5,f +16757,3623,19,1,f +16757,3623,26,2,f +16757,3660,15,3,f +16757,3666,322,3,f +16757,3666,26,4,f +16757,3673,71,1,t +16757,3673,71,2,f +16757,3679,71,1,f +16757,3680,15,1,f +16757,3710,27,1,f +16757,3710,26,2,f +16757,3741,2,1,f +16757,3742,4,1,t +16757,3742,4,3,f +16757,3794b,15,1,f +16757,3795,27,1,f +16757,3795,15,1,f +16757,3830,15,2,f +16757,3831,15,2,f +16757,3852b,322,1,f +16757,3894,15,2,f +16757,3900,71,1,f +16757,3941,15,3,f +16757,4032a,19,2,f +16757,4162,322,1,f +16757,4162,26,2,f +16757,4282,19,1,f +16757,4282,26,2,f +16757,4286,323,2,f +16757,4287,15,2,f +16757,4345b,15,1,f +16757,4346,4,1,f +16757,43888,15,6,f +16757,44728,15,2,f +16757,4533,41,1,f +16757,4536,29,1,f +16757,4595,71,1,f +16757,4599b,0,1,t +16757,4599b,71,1,f +16757,4599b,71,1,t +16757,4599b,0,1,f +16757,46212,47,2,f +16757,4740,15,1,f +16757,54200,322,2,f +16757,54200,322,1,t +16757,57895,47,2,f +16757,57895pr0009,47,6,f +16757,59349,15,5,f +16757,59900,26,1,f +16757,59900,46,1,f +16757,60032,15,2,f +16757,60478,71,2,f +16757,60581,41,1,f +16757,60616a,47,2,f +16757,60623,15,1,f +16757,6091,27,2,f +16757,6112,15,2,f +16757,61252,72,1,f +16757,6141,0,1,t +16757,6141,2,7,f +16757,6141,297,1,t +16757,6141,0,15,f +16757,6141,70,1,t +16757,6141,1,1,f +16757,6141,19,1,t +16757,6141,70,2,f +16757,6141,2,1,t +16757,6141,19,1,f +16757,6141,297,1,f +16757,6141,4,1,f +16757,6141,4,1,t +16757,6141,71,2,f +16757,6141,1,1,t +16757,6141,71,1,t +16757,6180,5,1,f +16757,6182,15,1,f +16757,62698,85,1,f +16757,63868,71,1,f +16757,63868,15,2,f +16757,6636,71,1,f +16757,6636,15,1,f +16757,85984,323,4,f +16757,85984,15,2,f +16757,87079,15,1,f +16757,87079,26,4,f +16757,87079,0,1,f +16757,87079,322,2,f +16757,87087,71,3,f +16757,87580,26,1,f +16757,87994,71,1,t +16757,87994,71,1,f +16757,90195,19,2,f +16757,92255,226,1,f +16757,92410,15,1,f +16757,92410,71,1,f +16757,92438,10,2,f +16757,92438,31,2,f +16757,92438,19,2,f +16757,92456pr0107c01,78,1,f +16757,92593,19,11,f +16757,92692,15,1,f +16757,92815pr0101c01,78,1,f +16757,92816pr0100c01,78,1,f +16757,92818pr0001c01,272,1,f +16757,92950,5,1,f +16757,93082,73,1,f +16757,93092,191,1,f +16757,93095,15,3,f +16757,93216,15,1,f +16757,95188,322,2,f +16757,96874,25,1,f +16757,98138,71,1,t +16757,98138,36,1,f +16757,98138,36,1,t +16757,98138,71,8,f +16757,99781,71,1,f +16760,12825,0,4,f +16760,15573,15,2,f +16760,2412b,0,1,f +16760,2412b,320,4,f +16760,2431,72,2,f +16760,2431,71,2,f +16760,2436,0,2,f +16760,2444,72,6,f +16760,2489,72,1,f +16760,2780,0,3,f +16760,2817,71,1,f +16760,2877,0,1,f +16760,3003,0,1,f +16760,3004,71,1,f +16760,3005,320,2,f +16760,3005,71,2,f +16760,3010,72,2,f +16760,3020,15,3,f +16760,3020,0,1,f +16760,3020,320,2,f +16760,3021,71,4,f +16760,3022,0,1,f +16760,3023,15,2,f +16760,3023,0,3,f +16760,30259,71,4,f +16760,3031,0,1,f +16760,3032,15,1,f +16760,3034,15,2,f +16760,30375pr01,308,1,f +16760,30377,308,1,f +16760,30602,40,1,f +16760,3069b,15,1,f +16760,3069b,27,1,f +16760,32064b,72,1,f +16760,3245c,15,2,f +16760,3622,15,1,f +16760,3623,15,2,f +16760,3623,72,1,f +16760,3626cpr0525,78,1,f +16760,3710,320,2,f +16760,3794b,320,2,f +16760,3794b,72,7,f +16760,3795,15,2,f +16760,3941,0,4,f +16760,3941,72,5,f +16760,4032a,72,5,f +16760,4081b,0,3,f +16760,41769,15,1,f +16760,41770,15,1,f +16760,42687,308,1,f +16760,4287,15,2,f +16760,43093,1,4,f +16760,44294,71,1,f +16760,4460b,15,1,f +16760,44728,15,1,f +16760,4740,72,2,f +16760,4740,33,3,f +16760,50304,15,1,f +16760,50305,15,1,f +16760,54200,15,4,f +16760,54200,15,1,t +16760,54200,71,2,f +16760,54200,71,1,t +16760,58247,0,2,f +16760,59230,308,1,f +16760,59230,308,1,t +16760,59900,0,3,f +16760,6005,71,2,f +16760,60470b,15,2,f +16760,60478,71,12,f +16760,60481,15,1,f +16760,61189pr0011,15,1,f +16760,6141,36,1,t +16760,6141,0,2,f +16760,6141,36,2,f +16760,6141,0,1,t +16760,6231,71,2,f +16760,63864,320,3,f +16760,63868,72,4,f +16760,63965,0,2,f +16760,6541,72,2,f +16760,6636,71,2,f +16760,73983,72,4,f +16760,85984,72,4,f +16760,87087,0,3,f +16760,92947,71,1,f +16760,970c00pr0309,15,1,f +16760,973pr2008c01,15,1,f +16760,98103pr0001,308,1,f +16760,98285,71,1,f +16760,98286,71,1,f +16761,11272,148,1,f +16761,11833,0,1,f +16761,14719,71,2,f +16761,14719,0,2,f +16761,15535,72,3,f +16761,17485,71,1,f +16761,18990,47,1,f +16761,22961,71,2,f +16761,2412b,297,2,f +16761,2431,41,6,f +16761,2449,0,6,f +16761,2454a,0,2,f +16761,2654,71,1,f +16761,2730,0,2,f +16761,2736,71,1,f +16761,2780,0,2,f +16761,2877,72,8,f +16761,3004,0,11,f +16761,3005,0,3,f +16761,3020,72,7,f +16761,3023,71,2,f +16761,3023,72,1,f +16761,3030,72,1,f +16761,3035,0,1,f +16761,30367c,0,2,f +16761,30374,35,1,f +16761,30374,41,1,f +16761,30374,36,6,f +16761,30410,70,1,f +16761,30503,71,1,f +16761,30562,71,1,f +16761,30565,0,4,f +16761,3068b,72,3,f +16761,3069b,41,2,f +16761,32002,19,4,f +16761,32013,72,2,f +16761,32039,0,5,f +16761,32062,4,2,f +16761,32073,71,1,f +16761,32123b,14,4,f +16761,32449,72,2,f +16761,3245c,0,2,f +16761,32523,0,2,f +16761,3622,72,3,f +16761,3626cpr1517,78,1,f +16761,3626cpr1724,0,1,f +16761,3626cpr2133,78,1,f +16761,3660,0,3,f +16761,3666,0,4,f +16761,3673,71,1,f +16761,3700,71,1,f +16761,3705,0,2,f +16761,3706,4,2,f +16761,3710,72,3,f +16761,3738,0,1,f +16761,3901,484,1,f +16761,3943b,72,1,f +16761,4032a,72,6,f +16761,4070,71,2,f +16761,44375b,47,1,f +16761,4519,14,2,f +16761,4740,45,4,f +16761,48092,71,19,f +16761,4871,71,1,f +16761,59443,0,2,f +16761,60483,71,4,f +16761,60485,71,1,f +16761,6063,72,2,f +16761,6141,36,6,f +16761,64567,80,3,f +16761,6632,71,4,f +16761,87081,0,1,f +16761,92280,0,2,f +16761,92761pr0002,0,1,f +16761,970c00pr0510,19,1,f +16761,970c00pr0729,70,1,f +16761,970c00pr0908,0,1,f +16761,973pr1802c01,19,1,f +16761,973pr2095c01,19,1,f +16761,973pr3095c01,0,1,f +16764,11458,72,4,f +16764,11476,71,1,f +16764,15573,321,1,f +16764,15712,1,1,f +16764,18651,0,4,f +16764,22388,179,1,t +16764,22388,179,2,f +16764,22402,321,1,f +16764,2723,0,4,f +16764,28192,272,4,f +16764,30031,71,1,f +16764,3020,25,1,f +16764,3022,71,1,f +16764,3031,1,1,f +16764,32013,1,4,f +16764,32449,72,2,f +16764,3626cpr1817,179,1,f +16764,3849,179,1,f +16764,60471,25,1,f +16764,87083,72,2,f +16764,89520,1,1,f +16764,970c00pr0968,71,1,f +16764,973pr3190c01,71,1,f +16764,98585,57,2,f +16781,10113,0,1,f +16781,10314,70,1,f +16781,10314,4,3,f +16781,11090,72,2,f +16781,11211,71,2,f +16781,11212,72,2,f +16781,11212,71,2,f +16781,11214,72,2,f +16781,11327,326,2,f +16781,11329,326,4,f +16781,11458,70,2,f +16781,11477,72,4,f +16781,11477,4,2,f +16781,11477,0,2,f +16781,13564,15,2,f +16781,13564,15,1,t +16781,13695,15,1,f +16781,13785,0,1,f +16781,14682,71,2,f +16781,14704,71,2,f +16781,15068,71,1,f +16781,15082,0,2,f +16781,15100,0,4,f +16781,15392,72,1,t +16781,15392,72,2,f +16781,15403,0,2,f +16781,15413,0,4,f +16781,15573,71,4,f +16781,15573,72,3,f +16781,15573,0,2,f +16781,15672,71,2,f +16781,15712,72,1,f +16781,15712,70,6,f +16781,15712,0,2,f +16781,22885,71,3,f +16781,23444,0,1,f +16781,2357,71,2,f +16781,2412b,70,4,f +16781,2412b,36,2,f +16781,2412b,71,6,f +16781,2412b,72,3,f +16781,2412b,4,2,f +16781,2412b,0,1,f +16781,2431,70,4,f +16781,2432,71,1,f +16781,2458,4,4,f +16781,2540,71,1,f +16781,2654,0,2,f +16781,2654,46,1,f +16781,26603,0,1,f +16781,26603,15,1,f +16781,27145,14,1,t +16781,27145,14,1,f +16781,2736,71,1,f +16781,2780,0,8,f +16781,2780,0,2,t +16781,2819,0,1,f +16781,2877,72,1,f +16781,29949,326,1,f +16781,29952,326,1,f +16781,29959,326,1,f +16781,3001,70,1,f +16781,3001,4,1,f +16781,3003,4,1,f +16781,30031,72,1,f +16781,3004,70,2,f +16781,3004,14,2,f +16781,3004,1,2,f +16781,3005,4,4,f +16781,3005,70,2,f +16781,3005,71,1,f +16781,3006,15,1,f +16781,3007,14,1,f +16781,3009,19,1,f +16781,30093,288,1,f +16781,3010,1,2,f +16781,30150,84,2,f +16781,3020,72,2,f +16781,3020,15,1,f +16781,3021,4,2,f +16781,3021,70,6,f +16781,3022,71,1,f +16781,3022,1,1,f +16781,3023,4,9,f +16781,3023,15,1,f +16781,3023,46,1,f +16781,3023,2,1,f +16781,30236,72,1,f +16781,3024,36,1,t +16781,3024,36,4,f +16781,3027,72,1,f +16781,3034,72,3,f +16781,30377,72,1,f +16781,30377,72,1,t +16781,3039,71,1,f +16781,3040b,71,2,f +16781,30426,0,1,f +16781,3062b,71,2,f +16781,3068b,191,1,f +16781,3069b,71,1,f +16781,3069b,70,1,f +16781,3070b,4,1,t +16781,3070b,4,2,f +16781,30823,9999,1,f +16781,32000,71,4,f +16781,32028,71,1,f +16781,32054,4,2,f +16781,32062,4,2,f +16781,32064a,2,4,f +16781,32316,0,2,f +16781,32474pr0002,0,1,f +16781,32526,72,4,f +16781,32807,4,2,f +16781,33320,2,2,f +16781,3460,4,1,f +16781,3460,72,1,f +16781,3623,72,2,f +16781,3623,4,2,f +16781,3626cpr2145,15,1,f +16781,3626cpr2165,84,1,f +16781,3626cpr9996,78,1,f +16781,3660,4,1,f +16781,3660,72,4,f +16781,3665,321,3,f +16781,3665,4,1,f +16781,3665,72,2,f +16781,3666,72,8,f +16781,3666,4,4,f +16781,3701,19,2,f +16781,3703,71,2,f +16781,3705,0,5,f +16781,3710,4,5,f +16781,3710,0,4,f +16781,3713,71,2,t +16781,3713,71,8,f +16781,3749,19,1,f +16781,3795,4,1,f +16781,3795,14,1,f +16781,3841,72,1,f +16781,3958,72,2,f +16781,4176,40,1,f +16781,4274,71,1,t +16781,4274,71,4,f +16781,43093,1,2,f +16781,43713,0,1,f +16781,43719,4,1,f +16781,44728,72,6,f +16781,45590,0,2,f +16781,47755,72,1,f +16781,48169,72,1,f +16781,50943,179,1,f +16781,50950,0,2,f +16781,52031,15,1,f +16781,52031,4,1,f +16781,53451,28,1,t +16781,53451,28,8,f +16781,53585,0,2,f +16781,54200,0,1,t +16781,54200,71,1,f +16781,54200,71,1,t +16781,54200,0,4,f +16781,56145,71,4,f +16781,59426,72,4,f +16781,59443,72,2,f +16781,59443,0,6,f +16781,6027,326,1,f +16781,60470a,0,1,f +16781,60483,72,2,f +16781,60484,71,2,f +16781,60594,72,1,f +16781,60621,71,2,f +16781,60849,0,1,t +16781,60849,0,2,f +16781,60897,0,2,f +16781,6091,72,2,f +16781,6091,70,2,f +16781,61072,179,2,f +16781,61252,0,2,f +16781,6140,0,1,f +16781,6141,71,1,t +16781,6141,179,4,f +16781,6141,46,1,f +16781,6141,14,8,f +16781,6141,71,2,f +16781,6141,179,1,t +16781,6141,14,1,t +16781,6141,46,1,t +16781,62462,0,3,f +16781,63864,70,2,f +16781,63864pr0009,28,5,f +16781,63965,72,1,f +16781,64728,4,1,f +16781,6558,1,4,f +16781,6587,28,2,f +16781,6628,0,5,f +16781,6636,72,1,f +16781,6636pr0014,28,3,f +16781,72454,0,1,f +16781,85546,14,4,f +16781,85861,71,1,t +16781,85861,71,1,f +16781,87087,4,4,f +16781,92338,179,2,f +16781,92947,71,2,f +16781,93160,15,1,t +16781,93160,15,1,f +16781,93563,0,1,f +16781,93606,0,1,f +16781,96874,25,1,t +16781,970c00,0,2,f +16781,970c00pr1211,15,1,f +16781,973pr3650,0,1,f +16781,973pr3701c01,15,1,f +16781,973pr3731c01,84,1,f +16781,98100,71,1,f +16781,98138,320,1,t +16781,98138,47,5,f +16781,98138,47,2,t +16781,98138,320,2,f +16781,98139,179,1,t +16781,98139,179,2,f +16781,98282,321,1,f +16781,98282,4,1,f +16781,98282,72,2,f +16781,98721,0,1,t +16781,98721,0,1,f +16781,99206,71,2,f +16781,99207,71,6,f +16781,99780,72,1,f +16781,99780,0,3,f +16781,99780,4,2,f +16791,10113,0,1,f +16791,11215,84,2,f +16791,11477,84,41,f +16791,14704,71,1,f +16791,15456,71,1,f +16791,17114,72,1,f +16791,18587,71,2,f +16791,18588,72,2,f +16791,19220,0,1,f +16791,2420,84,6,f +16791,2456,70,1,f +16791,24593,84,4,f +16791,27145,14,1,t +16791,27145,14,1,f +16791,2780,0,1,f +16791,28420,226,1,f +16791,3001,70,1,f +16791,3002,70,2,f +16791,3020,70,11,f +16791,3021,72,7,f +16791,3022,70,6,f +16791,3022,84,3,f +16791,3022,19,3,f +16791,3022,14,2,f +16791,3023,70,12,f +16791,3023,4,9,f +16791,3032,70,1,f +16791,3034,72,3,f +16791,3040b,84,4,f +16791,3040bpr0001,84,1,f +16791,3040bpr0002,84,1,f +16791,30426,0,1,f +16791,3070b,15,1,t +16791,3070b,15,2,f +16791,32064a,2,2,f +16791,3460,70,2,f +16791,3623,70,6,f +16791,3623,72,2,f +16791,3626cpr2106,78,1,f +16791,3626cpr2243,92,1,f +16791,3666,0,2,f +16791,3666,70,4,f +16791,3700,0,1,f +16791,3710,70,5,f +16791,3747a,70,2,f +16791,3795,70,7,f +16791,3937,84,10,f +16791,3958,70,1,f +16791,4032a,84,67,f +16791,44728,70,4,f +16791,44728,0,8,f +16791,44728,4,8,f +16791,4600,84,1,f +16791,47455,0,2,f +16791,48169,72,2,f +16791,48171,72,2,f +16791,54200,70,8,f +16791,54200,70,1,t +16791,57909b,308,2,f +16791,60470a,84,8,f +16791,60474,84,5,f +16791,60478,84,16,f +16791,6091,84,9,f +16791,6134,70,10,f +16791,6141,84,81,f +16791,6141,84,4,t +16791,6141,15,2,f +16791,6141,15,1,t +16791,6222,70,1,f +16791,64867,84,7,f +16791,6587,28,2,f +16791,74261,0,2,f +16791,85984,70,2,f +16791,92013,308,5,f +16791,93274,0,8,f +16791,970c00,1,1,f +16791,970c00,0,1,f +16791,973pr3650,0,1,f +16791,973pr3829c01,1,1,f +16791,98721,0,1,f +16791,98721,0,1,t +16794,11212,71,1,f +16794,15395,0,1,f +16794,15672,72,1,f +16794,15712,0,1,f +16794,3004,72,2,f +16794,3021,15,1,f +16794,3024,15,1,f +16794,3024,71,1,f +16794,3024,15,1,t +16794,3024,71,1,t +16794,30367c,71,1,f +16794,3622,71,2,f +16794,3623,71,1,f +16794,3623,72,1,f +16794,4032a,484,2,f +16794,4032a,0,1,f +16794,54200,71,1,t +16794,54200,71,2,f +16794,59900,0,2,f +16794,60478,0,1,f +16794,6091,72,3,f +16794,6141,0,1,t +16794,6141,71,1,t +16794,6141,71,3,f +16794,6141,0,3,f +16794,63864,15,1,f +16794,85861,15,1,t +16794,85861,15,2,f +16794,87087,71,4,f +16794,87087,0,3,f +16794,88811,179,1,t +16794,88811,179,4,f +16794,98138pr0008,15,2,f +16794,98138pr0008,15,1,t +16796,11055,4,1,f +16796,11253,4,1,t +16796,11253,0,1,t +16796,11253,4,1,f +16796,11253,0,1,f +16796,11458,85,2,f +16796,11477,85,5,f +16796,14682,297,2,f +16796,15207,15,1,f +16796,15207,85,2,f +16796,15303,35,3,f +16796,15400,72,2,f +16796,15573,297,1,f +16796,15573,71,1,f +16796,15672,85,6,f +16796,15712,72,2,f +16796,18977,0,5,f +16796,2412b,297,4,f +16796,2420,27,2,f +16796,2420,85,4,f +16796,24299,85,1,f +16796,24307,85,1,f +16796,2431,71,2,f +16796,2431,15,1,f +16796,2432,71,2,f +16796,2445,0,2,f +16796,2456,0,1,f +16796,2654,19,2,f +16796,2654,0,9,f +16796,27145,14,1,t +16796,27145,14,1,f +16796,2780,0,1,t +16796,2780,0,8,f +16796,28551,2,1,f +16796,28777,85,1,f +16796,28778,320,1,f +16796,28798,4,1,f +16796,28809,71,4,f +16796,29028,14,1,f +16796,298c02,0,2,f +16796,298c02,15,1,t +16796,298c02,15,1,f +16796,298c02,0,1,t +16796,3002,72,3,f +16796,3005,71,2,f +16796,3008,71,1,f +16796,3010,70,2,f +16796,30136,71,4,f +16796,30157,72,2,f +16796,3020,85,3,f +16796,3020,14,2,f +16796,3020,71,3,f +16796,3020,27,3,f +16796,3021,0,2,f +16796,3021,85,7,f +16796,3021,15,3,f +16796,3022,85,4,f +16796,3022,71,2,f +16796,3022,4,2,f +16796,3023,85,14,f +16796,3023,27,4,f +16796,3023,0,2,f +16796,3023,15,2,f +16796,3024,0,1,t +16796,3024,36,1,t +16796,3024,36,2,f +16796,3024,0,2,f +16796,3032,85,2,f +16796,3034,71,5,f +16796,3034,85,2,f +16796,30374,71,1,f +16796,30383,15,2,f +16796,30414,85,4,f +16796,3068b,15,1,f +16796,3068bpr0315,15,2,f +16796,3069b,27,2,f +16796,3069b,15,1,f +16796,3069b,71,4,f +16796,3069bpr0001,15,2,f +16796,3070b,27,2,f +16796,3070b,85,1,t +16796,3070b,27,1,t +16796,3070b,85,2,f +16796,32001,71,1,f +16796,32063,71,8,f +16796,32474,0,1,f +16796,32523,72,4,f +16796,3460,71,2,f +16796,3626cpr2157,15,1,f +16796,3626cpr2166,15,1,f +16796,3626cpr6174165,85,1,f +16796,3660,85,8,f +16796,3665,27,2,f +16796,3666,85,1,f +16796,3673,71,16,f +16796,3673,71,1,t +16796,3710,85,10,f +16796,3710,14,2,f +16796,3710,71,2,f +16796,3710,0,2,f +16796,3710,27,5,f +16796,3794b,15,1,f +16796,3795,72,7,f +16796,3829c01,15,1,f +16796,3958,0,3,f +16796,4070,71,2,f +16796,4162,85,2,f +16796,4274,1,1,t +16796,4274,1,8,f +16796,4274,71,2,f +16796,4274,71,1,t +16796,4286,27,2,f +16796,4349,0,1,f +16796,43857,71,4,f +16796,44302a,15,2,f +16796,44728,15,12,f +16796,4697b,71,1,t +16796,4697b,71,1,f +16796,4740,72,2,f +16796,48336,297,3,f +16796,48729b,72,1,f +16796,48729b,72,1,t +16796,52031,27,1,f +16796,54200,71,10,f +16796,54200,71,1,t +16796,55981,297,5,f +16796,57783,40,1,f +16796,59900,297,2,f +16796,60478,71,2,f +16796,60479,71,2,f +16796,60849,297,1,t +16796,60849,297,8,f +16796,61409,297,4,f +16796,6141,0,1,t +16796,6141,0,2,f +16796,62462,297,2,f +16796,63864,85,3,f +16796,63868,0,2,f +16796,64567,71,1,f +16796,64567,71,1,t +16796,6636,72,4,f +16796,6636,85,6,f +16796,6636,27,1,f +16796,85546,14,4,f +16796,85940,0,4,f +16796,85984,72,2,f +16796,85984,71,6,f +16796,85984,85,2,f +16796,87079,85,7,f +16796,87079,15,1,f +16796,92280,71,5,f +16796,92583,40,1,f +16796,93220pr0003,15,1,f +16796,95342,297,1,f +16796,95343,4,1,f +16796,970c00pr1171,85,1,f +16796,970c00pr1187,85,1,f +16796,973pr3639c01,85,1,f +16796,973pr3698c01,85,1,f +16796,973pr3720c01,0,1,f +16796,98138,297,5,f +16796,98138,47,1,t +16796,98138,47,2,f +16796,98138,297,1,t +16796,98138pr0045,0,1,t +16796,98138pr0045,0,4,f +16796,98282,85,4,f +16796,98721,14,1,f +16796,98721,14,1,t +16796,99781,0,8,f +16802,10113,0,1,f +16802,10201,0,1,f +16802,11259pr0002,0,1,f +16802,11477,4,1,f +16802,11477,2,1,f +16802,14417,72,1,f +16802,14418,71,1,f +16802,14716,71,4,f +16802,14769pr0006,84,1,f +16802,14769pr0011,14,2,f +16802,15071,0,1,f +16802,15535,72,2,f +16802,15712,15,1,f +16802,18649,0,1,f +16802,2412b,71,2,f +16802,2431,15,1,f +16802,2431pr0017,14,2,f +16802,2446pr0006,4,1,f +16802,2447,40,1,t +16802,2447,40,1,f +16802,2456,71,1,f +16802,2540,15,1,f +16802,2540,72,2,f +16802,27145,14,1,t +16802,27145,14,1,f +16802,2926,0,1,f +16802,3004,0,2,f +16802,3004,71,2,f +16802,3005,2,2,f +16802,3009,320,1,f +16802,3010,2,2,f +16802,3010,320,2,f +16802,3010,72,2,f +16802,30151b,42,1,f +16802,3021,4,1,f +16802,3021,2,1,f +16802,3021,72,2,f +16802,3022,4,1,f +16802,3022,2,2,f +16802,3023,15,3,f +16802,3023,71,2,f +16802,3024,15,1,t +16802,3024,4,1,f +16802,3024,4,1,t +16802,3024,15,4,f +16802,3024,2,1,t +16802,3024,2,3,f +16802,3024,28,1,t +16802,3024,72,2,f +16802,3024,72,1,t +16802,3024,28,2,f +16802,3029,0,1,f +16802,3030,72,1,f +16802,3032,0,1,f +16802,3039,72,1,f +16802,30426,0,1,f +16802,3068bpr0019,15,1,f +16802,3069b,15,1,f +16802,32028,28,6,f +16802,32039,0,2,f +16802,32123b,14,1,t +16802,32123b,14,2,f +16802,32530,0,2,f +16802,3460,0,1,f +16802,3626cpr2092,78,1,f +16802,3626cpr2095,19,1,f +16802,3626cpr2097,78,1,f +16802,3626cpr2106,78,1,f +16802,3666,71,2,f +16802,3666,72,1,f +16802,3705,0,1,f +16802,3709,71,1,f +16802,3710,2,2,f +16802,3710,0,4,f +16802,3710,71,5,f +16802,3713,71,1,t +16802,3713,71,2,f +16802,3899,15,1,f +16802,4032a,19,3,f +16802,4070,320,4,f +16802,4162,0,1,f +16802,4274,1,1,t +16802,4274,1,2,f +16802,43888,72,1,f +16802,4519,71,2,f +16802,4624,71,1,t +16802,4624,71,2,f +16802,4740,0,1,f +16802,47905,71,1,f +16802,50859b,0,1,f +16802,50861,0,2,f +16802,50862,71,2,f +16802,52107,15,1,f +16802,60470a,15,3,f +16802,60581,15,2,f +16802,60593,0,2,f +16802,60594,0,1,f +16802,60897,71,1,f +16802,60897,15,1,f +16802,61252,0,1,f +16802,6141,46,1,f +16802,6141,46,1,t +16802,6154,4,1,f +16802,6155,71,1,f +16802,6187,14,1,f +16802,6254,27,1,f +16802,6541,15,1,f +16802,6636,320,2,f +16802,6636,71,2,f +16802,85984,15,4,f +16802,87079,71,2,f +16802,87087,72,2,f +16802,87414,0,2,f +16802,87618,0,1,f +16802,87994,0,1,t +16802,87994,0,1,f +16802,88072,0,1,f +16802,88072,72,1,f +16802,88930,4,1,f +16802,88930,2,1,f +16802,89536,15,1,f +16802,92474,47,1,f +16802,92593,15,2,f +16802,92946,72,4,f +16802,93061,72,1,t +16802,93061,72,1,f +16802,970c00,0,2,f +16802,970c00pr1175,379,1,f +16802,973pr3635,15,1,f +16802,973pr3650,0,1,f +16802,973pr3654c01,14,1,f +16802,98138,46,1,t +16802,98138,47,1,f +16802,98138,47,1,t +16802,98138,182,4,f +16802,98138,182,1,t +16802,98138,46,1,f +16802,98283,28,1,f +16802,98721,0,1,t +16802,98721,0,2,f +16802,99780,72,6,f +16806,14294,14,1,f +16806,14721,4,2,f +16806,18012,71,1,f +16806,22881,27,1,f +16806,23742,25,1,f +16806,23973pr0022,73,1,f +16806,24781pr0001,27,1,f +16806,24789pr0001,321,1,f +16806,25149,46,1,f +16806,3437,25,2,f +16806,3437,191,3,f +16806,35025,0,1,f +16806,40666,4,1,f +16806,40666,191,1,f +16806,51703,182,1,f +16806,6474,25,2,f +16806,92009,15,1,f +16806,92011,321,1,f +16809,13965,70,3,f +16809,15279,27,2,f +16809,15395,4,1,f +16809,15470,70,1,f +16809,15470,70,1,t +16809,15745,41,1,f +16809,18674,322,1,f +16809,19119,2,1,f +16809,22888,10,2,f +16809,2343,47,2,f +16809,2357,70,1,f +16809,2417,10,2,f +16809,2420,70,1,f +16809,2423,27,1,f +16809,3005,70,1,f +16809,3020,70,1,f +16809,3023,308,3,f +16809,3023,2,3,f +16809,3023,28,1,f +16809,3023,19,1,f +16809,30367c,4,1,f +16809,30565,27,1,f +16809,3069b,28,1,f +16809,3069b,19,1,f +16809,3069bpr0055,15,1,f +16809,3069bpr0168,70,1,f +16809,3070b,73,1,t +16809,3070b,73,1,f +16809,3070b,4,1,t +16809,3070b,4,4,f +16809,33291,191,2,f +16809,33291,2,1,t +16809,33291,26,1,t +16809,33291,5,3,f +16809,33291,4,8,f +16809,33291,25,2,f +16809,33291,10,1,t +16809,33291,2,6,f +16809,33291,5,1,t +16809,33291,4,1,t +16809,33291,25,1,t +16809,33291,191,1,t +16809,33291,26,3,f +16809,33291,10,3,f +16809,3460,70,1,f +16809,3626cpr0891,14,1,f +16809,3626cpr1296a,14,1,f +16809,3626cpr1614,14,1,f +16809,3957a,15,1,f +16809,4032a,15,2,f +16809,4032a,19,2,f +16809,41539,2,1,f +16809,4286,70,1,f +16809,43898,71,1,f +16809,4733,15,2,f +16809,4740,41,1,f +16809,49668,15,2,f +16809,49668,191,1,f +16809,54200,73,1,t +16809,54200,73,3,f +16809,59900,71,1,f +16809,60481,308,3,f +16809,60897,25,1,f +16809,6141,10,2,f +16809,6141,10,1,t +16809,6141,4,1,t +16809,6141,4,3,f +16809,62810,84,1,f +16809,6541,19,1,f +16809,85861,71,2,f +16809,85861,71,1,t +16809,87580,4,5,f +16809,87580,15,4,f +16809,87580,71,1,f +16809,87580,70,2,f +16809,87990,308,1,f +16809,87994,70,1,t +16809,87994,70,1,f +16809,95228,34,1,f +16809,970c00,85,1,f +16809,970c00,272,1,f +16809,973pr3017c01,29,1,f +16809,973pr3434c01,212,1,f +16809,98138,15,1,f +16809,98138,15,1,t +16809,98138pr0017,29,2,t +16809,98138pr0017,29,1,f +16809,98138pr0018,84,1,t +16809,98138pr0018,84,1,f +16809,98138pr0050,19,1,f +16809,98138pr0050,19,1,t +16809,98382pr0001,84,1,f +16810,11127,41,2,f +16810,11208,71,4,f +16810,11209,0,4,f +16810,11458,15,1,f +16810,11477,321,4,f +16810,11477,26,2,f +16810,11816pr0007,78,1,f +16810,14769,4,1,f +16810,15392,72,1,t +16810,15392,72,1,f +16810,15403,0,1,f +16810,15571,26,2,f +16810,15573,14,2,f +16810,15573,26,3,f +16810,22388,41,1,t +16810,22388,41,7,f +16810,22888,191,1,f +16810,2420,0,2,f +16810,2420,4,1,f +16810,26597,71,1,f +16810,29478,0,1,f +16810,29721,15,1,f +16810,3004,321,1,f +16810,3005,41,1,f +16810,3022,26,1,f +16810,3023,71,1,f +16810,3023,41,9,f +16810,3023,321,2,f +16810,30237b,71,1,f +16810,3024,4,1,t +16810,3024,4,1,f +16810,3024,72,1,t +16810,3024,72,1,f +16810,3035,0,1,f +16810,30383,72,2,f +16810,3065,41,1,f +16810,3069b,72,1,f +16810,3069bpr0179,4,1,f +16810,3070b,0,1,t +16810,3070b,0,2,f +16810,3070bpr0175,322,1,t +16810,3070bpr0175,322,1,f +16810,32474,191,2,f +16810,3659,72,1,f +16810,3665,72,2,f +16810,3666,0,3,f +16810,3673,71,1,t +16810,3673,71,1,f +16810,3710,71,1,f +16810,3710,26,3,f +16810,3795,72,1,f +16810,41769,0,2,f +16810,41770,0,2,f +16810,43898,47,1,f +16810,44302a,72,2,f +16810,44675,0,1,f +16810,44728,72,1,f +16810,4488,71,6,f +16810,4624,71,1,t +16810,4624,71,2,f +16810,4697b,71,1,t +16810,4697b,71,1,f +16810,4733,15,1,f +16810,47758,0,1,f +16810,48336,71,2,f +16810,51739,26,1,f +16810,61252,322,2,f +16810,6141,72,6,f +16810,6141,35,1,t +16810,6141,35,2,f +16810,6141,72,2,t +16810,6636,71,1,f +16810,85861,15,1,t +16810,85861,15,1,f +16810,87087,4,1,f +16810,87087,71,2,f +16810,87087,321,4,f +16810,88289,4,1,f +16810,88704,179,1,f +16810,92456pr0205c01,78,1,f +16810,92820pr0101c01,0,1,f +16810,92946,0,6,f +16810,93160,15,1,t +16810,93160,15,1,f +16810,93274,72,1,f +16810,93609,41,1,f +16810,93609,41,1,t +16810,98138,71,1,f +16810,98138,71,1,t +16810,98138pr0054,14,1,f +16810,98283,84,2,f +16813,10113,0,1,f +16813,10170,84,2,f +16813,11090,15,3,f +16813,11208,71,4,f +16813,11209,0,4,f +16813,11215,0,3,f +16813,11476,71,3,f +16813,14716,71,12,f +16813,14719,19,4,f +16813,14769,25,4,f +16813,15207,27,2,f +16813,15210,15,2,f +16813,15254,70,2,f +16813,15530,272,1,f +16813,15535,0,3,f +16813,15573,71,4,f +16813,15573,72,8,f +16813,15573,70,2,f +16813,15573,0,4,f +16813,15672,70,4,f +16813,15672,71,10,f +16813,15712,15,5,f +16813,15712,71,6,f +16813,15712,0,9,f +16813,15712,72,2,f +16813,17485,71,2,f +16813,18759,71,2,f +16813,19220,0,2,f +16813,20309,0,2,f +16813,20482,47,1,f +16813,21268,71,1,f +16813,21778,0,1,f +16813,2357,72,8,f +16813,2357,70,6,f +16813,23969,47,2,f +16813,2412b,71,6,f +16813,2412b,179,1,f +16813,2431,71,2,f +16813,2431,484,2,f +16813,2431,73,10,f +16813,2445,0,2,f +16813,2449,71,10,f +16813,2453b,70,8,f +16813,2453b,71,20,f +16813,2456,70,3,f +16813,2456,71,1,f +16813,2456,72,8,f +16813,2462,70,6,f +16813,2476a,28,1,f +16813,2496,0,2,f +16813,25269pr02,2,2,f +16813,2540,0,6,f +16813,26047,0,4,f +16813,2653,71,4,f +16813,2654,19,4,f +16813,2654,47,2,f +16813,26603,212,2,f +16813,27145,25,1,f +16813,27145,14,1,f +16813,27186,226,1,f +16813,28144,0,1,f +16813,28432pr0002,320,1,f +16813,28551,2,1,f +16813,2877,71,2,f +16813,29292,85,1,f +16813,29384,70,1,f +16813,29453,14,1,f +16813,29924,4,1,f +16813,3001,72,9,f +16813,3001,15,2,f +16813,3002,15,2,f +16813,3003,28,2,f +16813,3003,71,2,f +16813,3004,71,4,f +16813,3004,378,4,f +16813,3004,70,37,f +16813,30043,71,1,f +16813,30044,71,4,f +16813,3005,72,28,f +16813,3005,0,12,f +16813,3005,71,2,f +16813,3005,378,6,f +16813,3005,15,2,f +16813,3005,70,34,f +16813,3005pr0006,73,2,f +16813,3005pr17,27,2,f +16813,3007,71,2,f +16813,3007,15,2,f +16813,3008,71,3,f +16813,3008,70,2,f +16813,30089,4,1,f +16813,30089,0,3,f +16813,3009,70,30,f +16813,3009,0,4,f +16813,3009,72,22,f +16813,30093,288,1,f +16813,3010,73,2,f +16813,3010,70,54,f +16813,3010,72,2,f +16813,30115,71,1,f +16813,30136,484,2,f +16813,30136,71,36,f +16813,3020,19,4,f +16813,3020,73,4,f +16813,3020,28,2,f +16813,3020,0,2,f +16813,3020,15,1,f +16813,3020,72,2,f +16813,3020,71,3,f +16813,3021,71,14,f +16813,3022,70,2,f +16813,3022,19,1,f +16813,3022,71,4,f +16813,3023,72,4,f +16813,3023,70,6,f +16813,3023,378,3,f +16813,3023,28,8,f +16813,3023,0,4,f +16813,3023,73,6,f +16813,3023,71,18,f +16813,30236,72,5,f +16813,3024,70,13,f +16813,3024,73,4,f +16813,3024,71,10,f +16813,3024,182,4,f +16813,3027,72,2,f +16813,3030,72,3,f +16813,3031,72,1,f +16813,3032,15,1,f +16813,3032,71,1,f +16813,3033,71,2,f +16813,3033,72,2,f +16813,3034,70,2,f +16813,3034,0,2,f +16813,30340,0,2,f +16813,30340,15,1,f +16813,3035,15,1,f +16813,3035,72,2,f +16813,3036,0,4,f +16813,3036,72,1,f +16813,3037,70,1,f +16813,30385,143,1,f +16813,3040b,15,2,f +16813,3040b,70,28,f +16813,30414,71,2,f +16813,30426,0,1,f +16813,30503,72,4,f +16813,30565,0,2,f +16813,30586,71,2,f +16813,3062b,42,1,f +16813,3062b,71,10,f +16813,3062b,36,1,f +16813,3062b,34,1,f +16813,3068b,73,1,f +16813,3068b,72,2,f +16813,3068b,4,2,f +16813,3068bpr0020,379,1,f +16813,3069b,36,1,f +16813,3069b,28,4,f +16813,3069b,378,4,f +16813,3069b,33,1,f +16813,3069b,15,12,f +16813,3069bp02,71,2,f +16813,3069bpr0030,72,1,f +16813,3069bpr0030,15,1,f +16813,30700,288,1,f +16813,3070b,36,6,f +16813,3070b,71,2,f +16813,3070b,28,2,f +16813,3070b,34,4,f +16813,3070bpr0166,71,6,f +16813,30931,0,1,f +16813,3176,0,4,f +16813,32002,19,2,f +16813,32016,0,2,f +16813,32028,71,25,f +16813,32062,4,4,f +16813,32064a,320,2,f +16813,32124,0,1,f +16813,3245b,19,1,f +16813,3245b,71,6,f +16813,3245c,378,4,f +16813,3245c,0,2,f +16813,33078,4,2,f +16813,33243,0,4,f +16813,3456,72,3,f +16813,3460,0,4,f +16813,3622,70,26,f +16813,3622,71,6,f +16813,3623,0,1,f +16813,3623,378,9,f +16813,3623,71,4,f +16813,3623,70,4,f +16813,3623,72,4,f +16813,3626b,71,1,f +16813,3626cpr1698,78,1,f +16813,3626cpr2092,78,1,f +16813,3626cpr2119,78,1,f +16813,3626cpr2138,78,1,f +16813,3626cpr2150,78,1,f +16813,3626cpr2162,84,1,f +16813,3626cpr2170,78,1,f +16813,3626cpr2171,70,1,f +16813,3626cpr2172,84,1,f +16813,3626cpr6173634,85,1,f +16813,3626cpr9996,78,1,f +16813,3626cpr9997,15,1,f +16813,3660,70,10,f +16813,3660,71,1,f +16813,3665,73,6,f +16813,3665,70,4,f +16813,3666,72,4,f +16813,3666,71,13,f +16813,3666,73,4,f +16813,3666,320,4,f +16813,3666,70,2,f +16813,3666,0,4,f +16813,3675,0,2,f +16813,3678b,0,2,f +16813,3685,15,2,f +16813,3700,71,2,f +16813,3710,0,2,f +16813,3710,320,2,f +16813,3710,70,6,f +16813,3710,71,4,f +16813,3795,28,2,f +16813,3795,70,2,f +16813,3795,71,1,f +16813,3829c01,0,1,f +16813,3832,70,1,f +16813,3832,19,1,f +16813,3832,0,2,f +16813,3832,71,1,f +16813,3839b,71,10,f +16813,3958,70,1,f +16813,3958,72,2,f +16813,3958,71,1,f +16813,4032a,0,2,f +16813,4070a,73,2,f +16813,4079,70,1,f +16813,4081b,27,2,f +16813,41539,72,1,f +16813,4161,0,3,f +16813,4162,70,1,f +16813,4162,71,6,f +16813,4175,0,8,f +16813,4176,47,1,f +16813,4286,15,1,f +16813,4332,70,1,f +16813,4360,0,3,f +16813,44301a,71,10,f +16813,4460b,71,4,f +16813,4460b,72,4,f +16813,4477,71,4,f +16813,4488,71,4,f +16813,4510,0,1,f +16813,4510,71,4,f +16813,4533,41,1,f +16813,4536,15,2,f +16813,4590,71,2,f +16813,4599b,71,2,f +16813,4697b,0,2,f +16813,4733,72,2,f +16813,4735,0,2,f +16813,4740,4,1,f +16813,4740,71,5,f +16813,47905,4,1,f +16813,48336,71,2,f +16813,48336,72,2,f +16813,48336,15,1,f +16813,4865b,19,1,f +16813,48729b,72,4,f +16813,49668,179,20,f +16813,50745,73,4,f +16813,54200,14,2,f +16813,54200,73,2,f +16813,54200,15,23,f +16813,54200,25,2,f +16813,54383,72,2,f +16813,54384,72,2,f +16813,57895,158,4,f +16813,59349,47,2,f +16813,59900,0,8,f +16813,59900,71,4,f +16813,6003,72,2,f +16813,60032,15,2,f +16813,60475b,71,4,f +16813,60478,72,2,f +16813,60478,14,8,f +16813,60478,70,2,f +16813,60481,15,6,f +16813,60481,0,8,f +16813,60581,72,2,f +16813,60592,0,23,f +16813,60593,0,4,f +16813,60594,72,2,f +16813,60596,0,1,f +16813,60596,71,8,f +16813,60601,47,8,f +16813,60602,47,4,f +16813,60614,72,4,f +16813,60616a,47,4,f +16813,60623,0,1,f +16813,60897,72,2,f +16813,60897,71,2,f +16813,6091,15,2,f +16813,6111,0,2,f +16813,6112,70,9,f +16813,61252,15,3,f +16813,61252,71,4,f +16813,61409,71,4,f +16813,6141,0,1,f +16813,6141,47,8,f +16813,6141,71,24,f +16813,6141,46,1,f +16813,61482,71,2,f +16813,6187,320,6,f +16813,6190,72,2,f +16813,6231,15,6,f +16813,63868,71,2,f +16813,63965,72,1,f +16813,64644,71,21,f +16813,6636,27,4,f +16813,6636,15,2,f +16813,6636,71,2,f +16813,85984,0,13,f +16813,85984,73,2,f +16813,85984,15,11,f +16813,87079,19,3,f +16813,87079,484,1,f +16813,87079,15,1,f +16813,87079,70,1,f +16813,87079,71,2,f +16813,87079,72,6,f +16813,87081,0,1,f +16813,87087,73,8,f +16813,87087,378,4,f +16813,87087,19,4,f +16813,87421,71,4,f +16813,87421,70,10,f +16813,87544,0,2,f +16813,87544,47,1,f +16813,87559,0,2,f +16813,87580,71,2,f +16813,87580,19,6,f +16813,87620,72,8,f +16813,87989,27,2,f +16813,87990,84,1,f +16813,88072,19,1,f +16813,88072,71,2,f +16813,88293,0,2,f +16813,88393,71,8,f +16813,91988,71,1,f +16813,91988,19,1,f +16813,92262,15,1,f +16813,92263,15,1,f +16813,92410,15,2,f +16813,92583,47,1,f +16813,92593,72,4,f +16813,92947,71,2,f +16813,93274,71,1,f +16813,96874,25,1,f +16813,970c00,71,1,f +16813,970c00,0,3,f +16813,970c00pr1209,0,1,f +16813,970c00pr1214,15,1,f +16813,970c00pr1229,15,1,f +16813,970c00pr1231,25,5,f +16813,970x037pr1177,78,1,f +16813,973c17,71,1,f +16813,973pr3642c01,4,1,f +16813,973pr3650,0,1,f +16813,973pr3716c01,15,1,f +16813,973pr3737c01,15,1,f +16813,973pr3739c01,25,1,f +16813,973pr3740c01,25,1,f +16813,973pr3741c01,25,1,f +16813,973pr3743c01,25,1,f +16813,973pr3762c01,272,2,f +16813,973pr3791c01,25,1,f +16813,973pr3820c01,72,1,f +16813,98138,40,2,f +16813,98138,71,3,f +16813,98138pr0022,84,2,f +16813,98284,0,1,f +16813,98560,0,2,f +16813,98560,72,4,f +16813,98560,15,1,f +16813,98721,0,2,f +16813,99780,72,6,f +16813,99780,71,12,f +16814,10113,297,1,f +16814,10113,272,1,f +16814,10113,0,1,f +16814,10247,72,7,f +16814,11203,72,4,f +16814,11211,71,17,f +16814,11213,71,1,f +16814,11214,72,2,f +16814,11458,72,4,f +16814,11477,14,3,f +16814,11477,0,2,f +16814,13731,72,2,f +16814,13731,0,4,f +16814,14413,0,12,f +16814,14704,71,2,f +16814,15068,0,2,f +16814,15303,182,3,f +16814,15392,72,6,f +16814,15400,72,2,f +16814,15403,71,2,f +16814,15403,0,4,f +16814,15461,0,1,f +16814,15462,70,1,f +16814,15535,4,3,f +16814,15571,72,2,f +16814,15573,0,1,f +16814,15573,14,4,f +16814,15672,71,2,f +16814,15706,0,6,f +16814,15712,71,3,f +16814,15712,14,2,f +16814,15712,0,4,f +16814,18653,25,1,f +16814,18654,72,4,f +16814,18975,72,1,f +16814,18987,1,1,f +16814,21849,46,1,f +16814,22385,0,1,f +16814,2343,47,1,f +16814,2357,72,3,f +16814,2412b,71,4,f +16814,2412b,179,4,f +16814,2412b,14,5,f +16814,24135,25,1,f +16814,2419,0,1,f +16814,2420,0,12,f +16814,24299,0,2,f +16814,24299,72,3,f +16814,24299,4,1,f +16814,24307,0,2,f +16814,24307,4,1,f +16814,24307,72,3,f +16814,2431,0,3,f +16814,2431,72,1,f +16814,24316,70,1,f +16814,2445,72,2,f +16814,2445,71,2,f +16814,2450,28,1,f +16814,2453b,72,2,f +16814,2453b,0,2,f +16814,2454a,0,2,f +16814,2540,25,2,f +16814,2540,71,1,f +16814,25972,0,1,f +16814,2654,72,10,f +16814,26601,72,4,f +16814,26697,272,1,f +16814,27145,14,1,f +16814,27145,25,1,f +16814,27147,15,1,f +16814,27149,0,1,f +16814,27150,0,1,f +16814,27151,0,1,f +16814,27325,15,1,f +16814,2780,0,23,f +16814,28779,0,2,f +16814,28809,71,2,f +16814,29161,25,2,f +16814,298c02,4,1,f +16814,3001,0,2,f +16814,3001,4,7,f +16814,3003,4,1,f +16814,3003,72,3,f +16814,3003,2,1,f +16814,3004,72,5,f +16814,3004,1,4,f +16814,3004,0,7,f +16814,3004,28,10,f +16814,3004,19,4,f +16814,3005,72,13,f +16814,3007,0,1,f +16814,3008,19,2,f +16814,3009,0,5,f +16814,3009,71,1,f +16814,3010,1,1,f +16814,3010,70,2,f +16814,3010,0,2,f +16814,3010,28,4,f +16814,3010,72,1,f +16814,30103,0,2,f +16814,30194,72,2,f +16814,3020,72,15,f +16814,3021,2,2,f +16814,3021,72,3,f +16814,3022,0,7,f +16814,3022,14,8,f +16814,3022,4,4,f +16814,3022,71,6,f +16814,3023,72,9,f +16814,3023,41,8,f +16814,3023,14,9,f +16814,3023,0,4,f +16814,3024,14,4,f +16814,3024,71,4,f +16814,3029,0,2,f +16814,3030,72,3,f +16814,3031,0,1,f +16814,3031,72,2,f +16814,3032,72,1,f +16814,3032,71,2,f +16814,3032,0,1,f +16814,3034,25,2,f +16814,3034,1,4,f +16814,3036,72,1,f +16814,30361,15,2,f +16814,30363,0,2,f +16814,30367c,4,2,f +16814,3037,72,1,f +16814,30377,71,2,f +16814,3038,0,2,f +16814,3039,70,1,f +16814,3039,0,4,f +16814,3040b,28,2,f +16814,3040b,71,2,f +16814,30414,71,8,f +16814,30426,272,1,f +16814,30426,0,1,f +16814,3045,14,2,f +16814,3049c,0,2,f +16814,30503,72,4,f +16814,30503,0,4,f +16814,30526,71,3,f +16814,3062b,71,2,f +16814,3068b,14,2,f +16814,3068b,0,1,f +16814,3068b,71,6,f +16814,3068b,72,4,f +16814,3068b,73,4,f +16814,3068bpr0293a,0,1,f +16814,3069b,41,2,f +16814,3069b,0,4,f +16814,3069b,14,2,f +16814,3069b,46,14,f +16814,3069b,4,3,f +16814,3069b,31,3,f +16814,3069b,71,1,f +16814,30728,78,1,f +16814,31567,0,2,f +16814,32000,72,5,f +16814,32000,4,2,f +16814,32001,0,1,f +16814,32002,19,14,f +16814,32039,71,1,f +16814,32062,4,5,f +16814,32064a,14,2,f +16814,32073,71,1,f +16814,32123b,14,2,f +16814,32192,0,4,f +16814,32270,0,5,f +16814,32278,72,2,f +16814,32316,0,9,f +16814,3245c,0,2,f +16814,32523,72,2,f +16814,32524,71,1,f +16814,3460,72,5,f +16814,3622,0,2,f +16814,3623,14,5,f +16814,3623,0,6,f +16814,3623,72,2,f +16814,3626b,15,3,f +16814,3626cpr2147,78,1,f +16814,3626cpr2156,78,1,f +16814,3626cpr2182,323,1,f +16814,3626cpr9998,78,1,f +16814,3660,14,1,f +16814,3660,25,6,f +16814,3660,72,2,f +16814,3665,28,4,f +16814,3665,72,12,f +16814,3666,25,2,f +16814,3666,0,1,f +16814,3666,14,2,f +16814,3666,19,1,f +16814,3673,71,2,f +16814,3676,25,4,f +16814,3679,71,1,f +16814,3680,0,1,f +16814,3700,0,3,f +16814,3700,71,3,f +16814,3700,14,1,f +16814,3701,72,2,f +16814,3703,0,1,f +16814,3705,0,2,f +16814,3706,0,2,f +16814,3709,0,1,f +16814,3709,72,2,f +16814,3710,25,2,f +16814,3710,72,9,f +16814,3710,1,5,f +16814,3710,28,1,f +16814,3713,71,7,f +16814,3737,0,1,f +16814,3747a,71,4,f +16814,3747a,0,2,f +16814,3795,0,1,f +16814,3795,72,2,f +16814,3795,28,1,f +16814,3829c01,15,1,f +16814,3832,14,2,f +16814,3832,72,4,f +16814,3894,71,1,f +16814,3899,14,1,f +16814,3937,0,2,f +16814,3937,72,1,f +16814,3941,70,1,f +16814,3941,14,2,f +16814,3958,72,1,f +16814,4032a,72,1,f +16814,4032a,1,4,f +16814,40490,0,2,f +16814,4081b,72,2,f +16814,4150,72,1,f +16814,41530,25,1,f +16814,4162,71,4,f +16814,41678,0,1,f +16814,41747,14,1,f +16814,41748,14,1,f +16814,41769,4,1,f +16814,41770,4,1,f +16814,41862,71,14,f +16814,41879a,0,1,f +16814,42022,14,2,f +16814,42023,72,2,f +16814,42023,0,4,f +16814,4287,0,2,f +16814,43093,1,8,f +16814,43121,71,1,f +16814,43722,14,1,f +16814,43722,0,1,f +16814,43723,0,1,f +16814,43723,14,1,f +16814,43898,14,2,f +16814,44301a,72,4,f +16814,44567a,0,2,f +16814,4476b,0,2,f +16814,4477,0,2,f +16814,4519,71,3,f +16814,45301,0,2,f +16814,4588,15,2,f +16814,4599b,71,2,f +16814,47397,4,1,f +16814,47398,4,1,f +16814,47847,28,2,f +16814,47905,72,1,f +16814,48336,71,1,f +16814,4871,0,1,f +16814,50303,0,2,f +16814,50304,4,1,f +16814,50305,4,1,f +16814,50943,72,1,f +16814,51739,71,1,f +16814,52107,14,1,f +16814,54200,14,2,f +16814,54200,36,2,f +16814,54384,72,1,f +16814,57520,0,2,f +16814,59349,0,3,f +16814,59426,72,1,f +16814,59443,14,3,f +16814,59443,0,1,f +16814,59900,15,2,f +16814,6005,14,1,f +16814,6014b,71,6,f +16814,60471,71,6,f +16814,60477,15,2,f +16814,60479,4,4,f +16814,60483,0,2,f +16814,60596,0,2,f +16814,60621,71,2,f +16814,6082,28,1,f +16814,6111,0,1,f +16814,61184,71,4,f +16814,6134,71,2,f +16814,6134,0,1,f +16814,6140,0,4,f +16814,6141,41,3,f +16814,6141,46,2,f +16814,6141,4,10,f +16814,6141,0,5,f +16814,6141,72,2,f +16814,6141,179,14,f +16814,6141,36,1,f +16814,6141,47,3,f +16814,61485,0,1,f +16814,6157,71,3,f +16814,62462,4,1,f +16814,63864,14,1,f +16814,63864,2,2,f +16814,63868,0,2,f +16814,64644,71,2,f +16814,6558,1,4,f +16814,6585,0,1,f +16814,6589,19,2,f +16814,6628,0,2,f +16814,6632,14,1,f +16814,6636,0,1,f +16814,72454,0,2,f +16814,73983,71,2,f +16814,85984,71,4,f +16814,85984,0,12,f +16814,87079,73,5,f +16814,87081,72,5,f +16814,87081,15,1,f +16814,87087,14,2,f +16814,87087,72,2,f +16814,87580,4,2,f +16814,87697,0,6,f +16814,87994,15,3,f +16814,88323,72,14,f +16814,89522,4,2,f +16814,89523,72,2,f +16814,90194,0,1,f +16814,90258,72,3,f +16814,90370pr0005,0,1,f +16814,92280,0,2,f +16814,93095,0,1,f +16814,93273,0,8,f +16814,93273,14,4,f +16814,95347,14,1,f +16814,96874,25,1,f +16814,970c00,379,1,f +16814,970c00,0,2,f +16814,970c00pr1208,15,1,f +16814,970c00pr1213,14,1,f +16814,970x106,1,1,f +16814,973pr3650,0,1,f +16814,973pr3702c01,297,1,f +16814,973pr3704c01,15,1,f +16814,973pr3707c01,1,1,f +16814,973pr3719c01,272,1,f +16814,973pr9999c01,0,1,f +16814,973prc01,71,1,f +16814,98138,41,8,f +16814,98138pr0008,15,2,f +16814,98560,28,2,f +16814,98721,0,2,f +16814,99207,71,4,f +16814,99563,0,3,f +16814,99780,72,4,f +16814,99780,71,1,f +16821,10197,0,2,f +16821,10197,72,1,f +16821,11214,72,8,f +16821,11946,15,1,f +16821,11946,25,2,f +16821,11947,25,2,f +16821,11947,15,1,f +16821,15100,0,11,f +16821,15462,70,2,f +16821,16091,71,2,f +16821,18575,19,1,f +16821,18651,0,5,f +16821,18654,0,1,t +16821,18654,0,11,f +16821,18654,72,1,t +16821,18654,72,4,f +16821,18940,71,1,f +16821,18942,72,1,f +16821,18948,15,2,f +16821,22961,71,6,f +16821,2780,0,3,t +16821,2780,0,94,f +16821,27938,72,1,f +16821,27940,72,2,f +16821,3024,47,1,t +16821,3024,47,2,f +16821,32002,19,1,t +16821,32002,19,1,f +16821,32009,25,2,f +16821,32013,1,1,f +16821,32013,0,6,f +16821,32013,15,6,f +16821,32015,0,2,f +16821,32016,0,2,f +16821,32017,0,1,f +16821,32034,0,1,f +16821,32034,25,2,f +16821,32039,0,2,f +16821,32039,71,3,f +16821,32054,71,9,f +16821,32056,0,2,f +16821,32062,4,23,f +16821,32073,71,13,f +16821,32123b,14,1,t +16821,32123b,14,2,f +16821,32123b,71,1,t +16821,32123b,71,6,f +16821,32126,15,2,f +16821,32140,25,10,f +16821,32140,1,3,f +16821,32184,71,4,f +16821,32184,0,2,f +16821,32249,0,2,f +16821,32270,0,3,f +16821,32316,1,3,f +16821,32316,25,7,f +16821,32348,25,1,f +16821,32449,15,4,f +16821,32449,72,2,f +16821,32523,0,2,f +16821,32523,15,6,f +16821,32523pr0001,15,1,f +16821,32524,15,1,f +16821,32524,0,8,f +16821,32524,71,5,f +16821,32525,25,2,f +16821,32525,0,1,f +16821,32525,71,4,f +16821,32526,15,2,f +16821,32526,0,3,f +16821,32526,25,2,f +16821,32556,19,4,f +16821,33299a,0,2,f +16821,3705,0,3,f +16821,3706,4,2,f +16821,3713,4,1,t +16821,3713,4,2,f +16821,3749,19,18,f +16821,40490,15,2,f +16821,41239,1,7,f +16821,41677,0,14,f +16821,41678,0,5,f +16821,42003,72,3,f +16821,4274,71,11,f +16821,4274,71,3,t +16821,43093,1,38,f +16821,43857,71,2,f +16821,44294,71,2,f +16821,44294,14,3,f +16821,4519,71,10,f +16821,48989,71,6,f +16821,53585,0,1,f +16821,55013,72,1,f +16821,55981,0,6,f +16821,55982,0,4,f +16821,56891,0,4,f +16821,58090,0,6,f +16821,59443,0,1,f +16821,60483,25,7,f +16821,60483,72,8,f +16821,60483,0,2,f +16821,60484,0,8,f +16821,60485,71,2,f +16821,61903,71,1,f +16821,63869,0,6,f +16821,64179,71,4,f +16821,64782,71,8,f +16821,6536,0,9,f +16821,6536,71,4,f +16821,6536,25,9,f +16821,6553,72,2,f +16821,6558,1,30,f +16821,6629,25,6,f +16821,6632,0,2,f +16821,6632,1,9,f +16821,6632,71,4,f +16821,85940,0,1,f +16821,87082,0,2,f +16821,87082,71,3,f +16821,87083,72,2,f +16821,92907,71,1,f +16821,92907,0,1,f +16821,98138,47,1,t +16821,98138,36,6,f +16821,98138,36,1,t +16821,98138,47,2,f +16821,99021,72,8,f +16842,11215,0,1,f +16842,11458,0,2,f +16842,13349,72,1,f +16842,15571,72,1,f +16842,15573,70,3,f +16842,15712,72,1,f +16842,18651,0,2,f +16842,18927,288,1,f +16842,23984,15,2,f +16842,23984,148,1,f +16842,24201,71,2,f +16842,30031,72,1,f +16842,30165,0,1,f +16842,3022,19,1,f +16842,3023,28,2,f +16842,3626cpr1561,14,1,f +16842,4495b,0,1,f +16842,59443,72,2,f +16842,6019,0,2,f +16842,60897,25,1,f +16842,61409,484,2,f +16842,6141,25,1,f +16842,61800,484,2,f +16842,63965,70,1,f +16842,95354,0,1,f +16842,970d00pr9999,70,1,f +16877,20691pr0005,84,1,f +16877,21042pr0001,84,1,f +16878,3020,4,1,f +16878,3023,4,14,f +16878,3024,46,4,f +16878,3034,4,2,f +16878,3034,7,2,f +16878,3035,7,1,f +16878,3069b,7,2,f +16878,3460,4,4,f +16878,3482,7,6,f +16878,3634,0,6,f +16878,3647,7,2,f +16878,3648a,7,1,f +16878,3650b,7,1,f +16878,3651,7,4,f +16878,3666,4,4,f +16878,3673,7,2,f +16878,3700,4,8,f +16878,3701,4,7,f +16878,3702,4,4,f +16878,3703,4,4,f +16878,3705,0,2,f +16878,3706,0,2,f +16878,3707,0,1,f +16878,3709,7,1,f +16878,3710,4,4,f +16878,3713,7,8,f +16878,3736,7,1,f +16878,3737,0,2,f +16878,3738,7,1,f +16878,3743,7,1,f +16878,3749,7,8,f +16878,3894,4,4,f +16878,3895,4,4,f +16878,4185,7,1,f +16878,4261,7,2,f +16878,4442,7,3,f +16878,4459,0,16,f +16878,9244,7,1,f +16883,20954pr0002,0,1,f +16883,3626cpr9988,78,1,f +16883,970c00,0,1,f +16883,973pr9981c01,0,1,f +16921,3626cpr1515,78,1,f +16921,3960pr0018,52,1,f +16921,4740pr0004b,52,2,f +16921,92081,0,1,f +16921,970c00pr1021,15,1,f +16921,973pr3295c01,0,1,f +16924,30374,41,2,f +16924,3626cpr1995,78,1,f +16924,970c00,0,1,f +16924,973pr3503c01,0,1,f +16924,98385,0,1,f +16927,10201,71,1,f +16927,11215,71,1,f +16927,11458,15,2,f +16927,11477,15,2,f +16927,15392,72,2,f +16927,15392,72,2,t +16927,15403,0,2,f +16927,18654,72,1,t +16927,18654,72,4,f +16927,2412b,179,1,f +16927,2420,1,4,f +16927,24201,71,2,f +16927,2431,15,3,f +16927,28809,71,2,f +16927,29267pr0109,15,1,f +16927,3020,71,2,f +16927,3021,72,1,f +16927,3022,71,3,f +16927,3023,1,3,f +16927,3023,14,4,f +16927,3069b,1,2,f +16927,32123b,71,4,f +16927,32123b,71,1,t +16927,3460,15,2,f +16927,3623,71,2,f +16927,3626b,15,4,f +16927,3626cpr1905,78,1,f +16927,3710,15,3,f +16927,3710,72,2,f +16927,41769,15,1,f +16927,41770,15,1,f +16927,4274,1,1,t +16927,4274,1,4,f +16927,4871,72,2,f +16927,51739,72,1,f +16927,54200,1,2,f +16927,54200,40,1,t +16927,54200,40,4,f +16927,54200,15,2,f +16927,54200,15,1,t +16927,54200,1,1,t +16927,59900,71,6,f +16927,61184,71,4,f +16927,6141,36,4,f +16927,6141,36,1,t +16927,64799,15,1,f +16927,73983,15,2,f +16927,85861,0,4,f +16927,85861,0,1,t +16927,87580,72,1,f +16927,92738,0,1,f +16927,970c00pr1169,272,1,f +16927,973pr3632c01,272,1,f +16927,98138,182,4,f +16927,98138,182,1,t +16927,99780,72,1,f +16927,99781,71,1,f +16932,10113,297,1,f +16932,10113,4,1,f +16932,11253,297,1,t +16932,11253,297,2,f +16932,21845,2,1,f +16932,27145,85,1,t +16932,27145,85,1,f +16932,3626cpr2106,78,1,f +16932,3626cpr9996,78,1,f +16932,56630pat0002,82,1,f +16932,970c00,15,1,f +16932,970d00pr1261,14,1,f +16932,973pr3759c01,15,1,f +16932,973pr3799c01,1,1,f +16938,19981pr0060,46,1,f +16938,3626cpr1627,78,1,f +16938,50231,4,1,f +16938,62696,226,1,f +16938,970c00pr0768,4,1,f +16938,973pr2941c01,1,1,f +16939,11477,27,5,f +16939,14417,72,5,f +16939,14418,71,1,f +16939,14704,71,4,f +16939,3020,70,1,f +16939,3021,27,2,f +16939,3024,14,5,f +16939,3024,14,1,t +16939,3039,70,2,f +16939,47759,70,2,f +16939,47905,14,1,f +16939,98138,19,3,f +16939,98138,19,1,t +16939,98138pr0008,15,1,t +16939,98138pr0008,15,2,f +16943,11610,19,1,f +16943,14769pr0004,71,1,f +16943,14769pr1040,15,1,f +16943,15395,0,1,f +16943,18746,191,1,f +16943,2432,14,1,f +16943,2566,0,1,f +16943,29161,25,2,f +16943,30089,0,1,f +16943,30090,41,1,f +16943,3022,19,1,f +16943,3023,1,1,f +16943,33078,4,1,f +16943,3626cpr0001,14,1,f +16943,3795,15,1,f +16943,3842b,1,1,f +16943,3899,4,1,f +16943,3957b,15,1,f +16943,3960,191,1,f +16943,4449,70,1,f +16943,4495a,4,1,f +16943,54200,19,1,t +16943,54200,19,1,f +16943,6254,15,1,f +16943,64648,179,1,f +16943,73983,1,1,f +16943,86035,27,1,f +16943,87580,0,1,f +16943,87618,0,1,f +16943,87994,71,1,f +16943,88704,0,1,f +16943,95343,70,1,f +16943,95344,28,1,f +16943,970c00,322,1,f +16943,973pr1479c01,15,1,f +16943,99784,47,1,f +17033,11211,71,2,f +17033,11477,72,2,f +17033,11833,71,1,f +17033,15392,72,2,t +17033,15392,72,2,f +17033,15403,0,2,f +17033,15573,71,1,f +17033,18649,0,2,f +17033,2412b,71,4,f +17033,24299,0,1,f +17033,24307,0,1,f +17033,2431,0,2,f +17033,2654,71,2,f +17033,3003,71,1,f +17033,3020,71,1,f +17033,3021,0,4,f +17033,3022,71,1,f +17033,3023,0,2,f +17033,3023,4,2,f +17033,3024,71,1,t +17033,3024,71,2,f +17033,3031,72,1,f +17033,3070b,36,1,t +17033,3070b,36,2,f +17033,3623,71,2,f +17033,3626cpr1149,78,1,f +17033,3665,71,2,f +17033,3710,72,3,f +17033,3960,71,1,f +17033,3960pr13,40,1,f +17033,4032a,0,1,f +17033,41769,0,1,f +17033,41770,0,1,f +17033,43722,71,1,f +17033,43723,71,1,f +17033,44728,0,3,f +17033,4740,72,1,f +17033,4871,71,1,f +17033,50304,71,1,f +17033,50305,71,1,f +17033,54200,71,1,t +17033,54200,71,4,f +17033,60470a,0,2,f +17033,60474,71,1,f +17033,60478,71,2,f +17033,6091,71,2,f +17033,6141,36,6,f +17033,6141,36,1,t +17033,85984,71,2,f +17033,85984pr0006,72,1,f +17033,87556pr0006,0,1,f +17033,92593,71,2,f +17033,92738,0,1,f +17033,970c00pr0583,0,1,f +17033,973pr3573c01,0,1,f +17033,99207,71,1,f +17036,11477,0,2,f +17036,15392,72,2,f +17036,15392,72,2,t +17036,15403,0,2,f +17036,15573,0,1,f +17036,16497pr0003,0,1,f +17036,23443,0,2,f +17036,2412b,80,1,f +17036,2877,72,1,f +17036,3020,72,2,f +17036,3021,0,2,f +17036,3023,36,1,f +17036,3024,0,1,t +17036,3024,0,8,f +17036,3031,0,1,f +17036,30350a,0,2,f +17036,3045,0,4,f +17036,3070b,41,1,t +17036,3070b,41,2,f +17036,3623,72,2,f +17036,3626cpr1363,78,1,f +17036,3665,0,3,f +17036,3666,72,1,f +17036,3795,0,2,f +17036,4070,0,2,f +17036,44302a,72,1,f +17036,4460b,0,1,f +17036,44728,72,4,f +17036,47457,71,1,f +17036,48336,71,2,f +17036,54200,0,4,f +17036,54200,40,1,f +17036,54200,0,1,t +17036,54200,40,1,t +17036,54383,0,1,f +17036,54384,0,1,f +17036,6141,36,4,f +17036,6141,36,1,t +17036,85984,0,3,f +17036,92280,71,2,f +17036,92582,0,1,f +17036,92593,0,2,f +17036,92738,0,1,f +17036,970c00pr0583,0,1,f +17036,973pr0300c01,0,1,f +17036,99206,15,1,f +17049,11291,72,2,f +17049,11477,72,6,f +17049,15068,72,4,f +17049,15573,72,2,f +17049,15672,0,2,f +17049,18651,0,1,f +17049,18972,40,1,f +17049,18974,72,4,f +17049,18975,72,2,f +17049,18976,14,4,f +17049,18977,0,4,f +17049,18979a,0,4,f +17049,18979b,0,4,f +17049,18980,0,1,f +17049,2420,0,6,f +17049,2420,72,4,f +17049,24201,0,2,f +17049,24299,14,1,f +17049,24307,14,1,f +17049,24309,0,1,f +17049,2431,72,2,f +17049,2446,0,1,f +17049,2447,47,1,t +17049,2447,47,1,f +17049,2540,0,2,f +17049,30029,0,1,f +17049,3003,14,3,f +17049,3004,15,2,f +17049,3005,0,2,f +17049,3020,72,1,f +17049,3021,0,5,f +17049,3022,71,4,f +17049,3023,19,13,f +17049,3023,72,2,f +17049,3024,0,4,f +17049,3024,72,4,f +17049,3024,72,1,t +17049,3024,0,1,t +17049,30377,0,1,t +17049,30377,0,2,f +17049,30414,71,2,f +17049,3069b,36,2,f +17049,3069b,72,5,f +17049,30844,9999,1,f +17049,32064a,4,3,f +17049,3460,71,2,f +17049,3623,0,4,f +17049,3626cpr1147,14,1,f +17049,3678b,0,1,f +17049,3700,1,1,f +17049,3710,72,4,f +17049,3749,19,4,f +17049,3829c01,0,1,f +17049,4006,0,1,f +17049,4070,72,2,f +17049,4162,72,2,f +17049,44728,14,1,f +17049,50950,72,4,f +17049,54200,40,4,f +17049,54200,72,6,f +17049,54200,40,1,t +17049,54200,72,1,t +17049,6141,14,6,f +17049,6141,14,1,t +17049,6231,0,6,f +17049,6636,0,2,f +17049,85861,71,1,t +17049,85861,71,2,f +17049,85984,0,1,f +17049,85984,72,5,f +17049,87079,72,3,f +17049,93273,72,3,f +17049,970c00pr1248,0,1,f +17049,973pr3772c01,0,1,f +17049,98138,71,4,f +17049,98138,71,1,t +17049,99206,0,3,f +17049,99207,71,6,f +17049,99780,0,4,f +17064,11476,0,2,f +17064,15068,0,2,f +17064,22885,71,14,f +17064,24299,0,1,f +17064,24307,0,1,f +17064,2431,0,5,f +17064,2431,19,1,f +17064,2431pr0093,14,1,f +17064,26603,0,2,f +17064,3003,29,1,f +17064,3003,14,2,f +17064,3004,0,2,f +17064,3010pr0009,0,1,f +17064,3020,0,4,f +17064,3021,0,2,f +17064,3022,0,3,f +17064,3023,14,2,f +17064,3023,0,2,f +17064,3031,0,3,f +17064,3032,0,1,f +17064,30414,0,1,f +17064,3069b,0,2,f +17064,32028,0,4,f +17064,3710,14,1,f +17064,3941,4,2,f +17064,4032a,72,1,f +17064,54200,0,6,f +17064,54200,0,1,t +17064,87079,0,5,f +17064,87079pr0124,0,1,f +17064,92593,0,8,f +17064,98138,1000,1,t +17064,98138,1000,2,f +17064,98721,0,1,f +17064,98721,0,1,t +17064,99780,14,2,f +17064,99781,0,3,f +17065,11211,71,4,f +17065,18789,322,1,f +17065,19727pr0006,4,2,f +17065,19729pr0006,2,1,f +17065,19729pr0012,25,1,f +17065,2431,70,4,f +17065,2431,84,1,f +17065,2456,70,13,f +17065,2654,33,2,f +17065,26599,71,1,f +17065,2921,84,1,f +17065,3001,4,10,f +17065,3001,70,12,f +17065,3001,19,1,f +17065,3001,28,6,f +17065,3003,15,1,f +17065,3003,70,1,f +17065,3003,33,1,f +17065,3003,84,7,f +17065,3004,84,2,f +17065,3004pr0014,84,2,f +17065,3005,84,4,f +17065,30145,15,3,f +17065,3020,72,4,f +17065,3020,70,1,f +17065,3020,4,1,f +17065,3022,15,3,f +17065,3023,4,8,f +17065,3023,72,4,f +17065,3023,29,1,f +17065,3024,15,17,f +17065,3024,4,7,f +17065,3031,4,4,f +17065,3034,72,11,f +17065,30414,15,4,f +17065,3062b,27,4,f +17065,3068b,1,1,f +17065,3068bpr0236,84,1,f +17065,3069b,84,2,f +17065,3069b,2,2,f +17065,32028,28,4,f +17065,33183,191,1,f +17065,33183,10,1,f +17065,33291,10,4,f +17065,33291,70,4,f +17065,34102,2,1,f +17065,3673,71,2,f +17065,3701,70,2,f +17065,3710,4,4,f +17065,3710,72,2,f +17065,3710,70,2,f +17065,3795,15,1,f +17065,3958,1,12,f +17065,4032a,14,6,f +17065,4032a,0,2,f +17065,4216,15,4,f +17065,60475b,84,1,f +17065,60478,70,1,f +17065,6141,15,6,f +17065,87580,72,14,f +17065,87580,84,6,f +17065,87580,28,4,f +17065,970c00,70,1,f +17065,973pr3096c01,378,1,f +17065,98138pr0071,179,1,f +17065,99780,70,4,f +17066,11215,0,1,f +17066,15535,72,1,f +17066,15573,70,26,f +17066,15573,72,2,f +17066,18787,297,1,f +17066,18789,322,1,f +17066,19723,322,1,f +17066,19729pr0001,308,1,f +17066,19729pr0007,29,1,f +17066,19729pr0023,320,1,f +17066,22961,308,2,f +17066,2357,320,4,f +17066,24316,70,4,f +17066,2431pr0083,320,1,f +17066,2445,320,2,f +17066,2456,320,2,f +17066,27507,71,4,f +17066,27925,71,6,f +17066,27928,70,24,f +17066,28809,71,10,f +17066,3001,71,3,f +17066,3001,25,15,f +17066,3003,308,12,f +17066,3003,320,39,f +17066,3003,71,23,f +17066,3005,0,2,f +17066,3010,72,2,f +17066,3010,320,1,f +17066,3020,71,3,f +17066,3020,25,1,f +17066,3020,0,1,f +17066,3022,320,2,f +17066,3022,25,1,f +17066,3022,0,1,f +17066,3022,71,3,f +17066,3023,72,4,f +17066,3023,0,4,f +17066,3024,28,2,f +17066,3024,320,8,f +17066,3024,182,4,f +17066,3024,4,2,f +17066,3024,46,1,f +17066,3031,71,1,f +17066,3039,25,4,f +17066,3069b,182,1,f +17066,3069b,297,2,f +17066,3069b,320,2,f +17066,3069b,71,3,f +17066,3069b,0,2,f +17066,3070b,36,2,f +17066,3070b,320,1,f +17066,3070b,72,1,f +17066,32000,14,2,f +17066,32001,71,1,f +17066,32064a,320,4,f +17066,32123b,14,1,f +17066,3622,70,2,f +17066,3623,320,2,f +17066,3673,71,2,f +17066,3700,0,2,f +17066,3700,70,2,f +17066,3701,72,2,f +17066,3710,70,2,f +17066,3710,320,6,f +17066,3710,71,1,f +17066,3958,320,7,f +17066,3958,308,3,f +17066,3958,25,2,f +17066,3958,71,4,f +17066,54200,71,2,f +17066,60592,0,2,f +17066,60592,70,2,f +17066,6141,71,2,f +17066,6141,15,10,f +17066,6141,36,2,f +17066,6232,72,2,f +17066,63864,0,1,f +17066,63864,25,2,f +17066,64644,308,1,f +17066,6558,1,2,f +17066,6587,28,1,f +17066,6636,71,12,f +17066,85984,70,4,f +17066,87580,71,17,f +17066,87580,320,15,f +17066,87580,70,9,f +17066,91501,71,4,f +17066,970c00,322,1,f +17066,970c00pr0851,29,1,f +17066,973pr2819c01,321,1,f +17066,973pr3008c01,29,1,f +17067,10247,15,2,f +17067,11214,72,1,f +17067,15391,70,2,f +17067,15392,72,2,f +17067,18671,72,1,f +17067,18787,72,1,f +17067,18789,30,1,f +17067,19723,179,1,f +17067,19727pr0007,70,1,f +17067,19727pr0013,0,1,f +17067,19729pr0001,308,1,f +17067,19729pr0005,25,2,f +17067,19730,179,1,f +17067,2357,73,2,f +17067,24445,15,1,f +17067,2456,73,13,f +17067,2456,70,2,f +17067,26603,0,1,f +17067,26965,4,1,f +17067,3001,70,6,f +17067,3001,71,2,f +17067,3001,73,28,f +17067,3001,84,4,f +17067,3001,15,5,f +17067,3003,143,8,f +17067,3003,15,9,f +17067,3003,0,4,f +17067,3003,71,2,f +17067,3003,73,43,f +17067,3004,15,1,f +17067,3004,73,6,f +17067,3004pr0016,15,1,f +17067,3004pr0019,0,2,f +17067,3005,1,3,f +17067,3005,27,3,f +17067,3007,15,2,f +17067,3010,70,2,f +17067,3020,70,9,f +17067,3020,4,2,f +17067,3020,0,1,f +17067,3020,15,2,f +17067,3021,0,1,f +17067,3022,15,1,f +17067,3022,70,3,f +17067,3022,71,9,f +17067,3022,73,4,f +17067,3022,84,3,f +17067,3023,47,1,f +17067,3023,0,4,f +17067,3023,73,20,f +17067,3024,15,4,f +17067,3024,2,6,f +17067,3024,71,4,f +17067,3024,4,6,f +17067,3024,70,1,f +17067,3024,0,3,f +17067,3028,15,3,f +17067,3031,71,1,f +17067,3033,71,1,f +17067,3034,15,3,f +17067,3035,15,2,f +17067,3036,1,2,f +17067,3036,15,1,f +17067,3068b,212,32,f +17067,3068b,15,1,f +17067,`3069bpr0180,297,1,f +17067,3070bpr0150,15,1,f +17067,32028,71,2,f +17067,32064a,71,3,f +17067,33183,10,2,f +17067,33291,10,2,f +17067,3673,71,2,f +17067,3700,70,8,f +17067,3706,0,1,f +17067,3794b,15,2,f +17067,3795,70,1,f +17067,3795,73,1,f +17067,3795,71,2,f +17067,3832,70,1,f +17067,3958,212,5,f +17067,3958,84,1,f +17067,4032a,15,1,f +17067,4032a,0,4,f +17067,4070,15,2,f +17067,4216,70,2,f +17067,42446,15,1,f +17067,4342,19,1,f +17067,4697b,0,2,f +17067,4738a,84,1,f +17067,4739a,84,1,f +17067,48336,71,1,f +17067,4865b,1,2,f +17067,60470a,84,5,f +17067,6141,1,7,f +17067,6141,15,4,f +17067,6141,36,8,f +17067,6179,1,1,f +17067,62113,84,5,f +17067,63868,0,4,f +17067,64644,308,4,f +17067,73983,0,4,f +17067,87079,70,2,f +17067,87087,0,2,f +17067,87580,70,1,f +17067,87580,73,33,f +17067,87580,320,1,f +17067,87580,15,5,f +17067,87580,71,7,f +17067,87580,84,6,f +17067,970c00,85,1,f +17067,973pr2819c01,321,1,f +17067,99780,72,1,f +17067,99781,15,1,f +17068,10288,308,1,f +17068,11211,71,1,f +17068,15573,72,3,f +17068,15573,70,2,f +17068,18651,0,1,f +17068,18787,297,1,f +17068,18791,70,2,f +17068,19723,179,1,f +17068,19727pr0008,29,1,f +17068,19729pr0012,25,1,f +17068,19729pr9999,35,3,f +17068,20482,47,4,f +17068,23969,0,2,f +17068,2420,72,2,f +17068,2420,2,18,f +17068,24246,2,8,f +17068,2431,84,11,f +17068,2431,70,4,f +17068,25269,2,8,f +17068,25767pr0003,85,1,f +17068,2654,33,2,f +17068,2780,0,4,f +17068,28809,71,2,f +17068,2921,84,2,f +17068,29272,0,1,f +17068,3001,84,4,f +17068,3001,19,2,f +17068,3001,70,15,f +17068,3001,288,16,f +17068,3003,19,1,f +17068,3003,34,4,f +17068,3003,70,33,f +17068,3004,84,4,f +17068,3004pr0014,84,2,f +17068,3005,84,4,f +17068,3005,70,1,f +17068,3009,84,2,f +17068,3009,70,3,f +17068,3010,70,1,f +17068,30145,70,6,f +17068,3020,1,2,f +17068,3020,70,22,f +17068,3020,288,7,f +17068,3021,29,2,f +17068,3022,0,1,f +17068,3022,19,1,f +17068,3022,29,1,f +17068,3022,70,24,f +17068,3022,84,2,f +17068,3023,70,2,f +17068,3023,0,3,f +17068,3023,19,2,f +17068,3024,28,4,f +17068,3024,46,3,f +17068,3024,40,2,f +17068,3024,4,4,f +17068,3024,182,2,f +17068,3027,1,2,f +17068,3028,288,4,f +17068,3030,70,4,f +17068,3031,70,1,f +17068,3036,1,5,f +17068,30374,14,1,f +17068,3062b,27,6,f +17068,3065,34,8,f +17068,3068bpr0236,84,1,f +17068,3069b,70,6,f +17068,3070b,288,12,f +17068,32000,70,4,f +17068,32028,28,4,f +17068,32123b,14,1,f +17068,33291,212,3,f +17068,33291,70,6,f +17068,3460,70,8,f +17068,3460,72,2,f +17068,3626b,36,1,f +17068,3626b,47,1,f +17068,3626c,41,1,f +17068,3626cpr2187,34,1,f +17068,3700,19,1,f +17068,3710,72,5,f +17068,3710,70,2,f +17068,3832,70,1,f +17068,3958,84,1,f +17068,3958,2,2,f +17068,3958,70,2,f +17068,4032a,0,4,f +17068,4070,19,2,f +17068,41879a,308,1,f +17068,4216,70,7,f +17068,4216,29,2,f +17068,44728,2,4,f +17068,4697b,0,3,f +17068,4727,10,3,f +17068,4733,0,1,f +17068,4738a,84,1,f +17068,4739a,84,1,f +17068,48336,2,4,f +17068,59443,4,1,f +17068,60470a,2,4,f +17068,6141,15,4,f +17068,6141,71,4,f +17068,6141,70,3,f +17068,6141,36,1,f +17068,6141,1000,1,f +17068,6231,19,2,f +17068,64644,308,2,f +17068,6541,4,1,f +17068,6587,28,1,f +17068,6636,84,4,f +17068,85861,0,1,f +17068,87580,70,4,f +17068,87580,84,12,f +17068,87580,19,4,f +17068,87580,2,34,f +17068,87580,1,2,f +17068,87580,71,1,f +17068,96874,25,1,f +17068,970c00,70,1,f +17068,973pr3096c01,378,1,f +17068,98138,35,2,f +17068,98283,84,8,f +17068,99780,70,6,f +17069,15573,25,2,f +17069,15573,70,8,f +17069,15712,70,2,f +17069,18787,322,1,f +17069,18791,70,1,f +17069,18920,179,1,f +17069,19727pr0020,322,1,f +17069,19729pr0001,308,1,f +17069,19729pr0003,2,1,f +17069,19729pr0004,0,1,f +17069,19729pr0005,25,1,f +17069,19729pr0012,25,1,f +17069,19732,0,1,f +17069,2431,84,8,f +17069,2456,2,2,f +17069,2456,15,5,f +17069,2456,72,2,f +17069,2456,70,2,f +17069,2639,15,1,f +17069,29918,0,1,f +17069,3001,15,11,f +17069,3001,72,2,f +17069,3001,19,8,f +17069,3001,70,20,f +17069,3001,288,3,f +17069,3003,70,46,f +17069,3003,19,13,f +17069,3003,15,8,f +17069,3003,322,5,f +17069,3003,72,9,f +17069,3003,34,5,f +17069,3003pr0035,72,1,f +17069,3004,70,17,f +17069,3004,19,4,f +17069,3004,84,12,f +17069,3004pr0014,84,6,f +17069,3005,1,1,f +17069,3005,84,23,f +17069,3005,70,4,f +17069,3005,27,1,f +17069,3006,15,9,f +17069,3006,70,2,f +17069,3008,72,2,f +17069,3008,70,2,f +17069,3008,15,2,f +17069,3009,19,6,f +17069,3010,70,2,f +17069,30145,15,2,f +17069,30145,70,2,f +17069,3020,4,4,f +17069,3020,72,5,f +17069,3020,70,13,f +17069,3021,322,1,f +17069,3022,72,5,f +17069,3022,15,2,f +17069,3022,84,1,f +17069,3022,70,11,f +17069,3023,0,1,f +17069,3023,322,2,f +17069,3023,70,25,f +17069,30237b,19,2,f +17069,30237b,70,4,f +17069,3024,46,7,f +17069,3024,4,2,f +17069,3024,0,4,f +17069,3024,15,3,f +17069,3024,2,2,f +17069,3024,182,9,f +17069,3028,72,2,f +17069,3028,10,4,f +17069,3029,72,2,f +17069,3031,70,2,f +17069,3032,72,2,f +17069,3036,1,2,f +17069,3039,25,2,f +17069,3039,33,11,f +17069,30414,19,2,f +17069,3062b,27,8,f +17069,3065,40,4,f +17069,3068b,25,2,f +17069,3068b,15,2,f +17069,3068b,70,10,f +17069,3068bpr0236,84,3,f +17069,3069b,25,2,f +17069,3069b,72,2,f +17069,3069b,0,1,f +17069,3069b,84,4,f +17069,3070b,15,1,f +17069,3070b,28,1,f +17069,3070b,0,2,f +17069,32028,19,4,f +17069,3245b,19,2,f +17069,33051,4,1,f +17069,33183,10,2,f +17069,33183,191,2,f +17069,33291,15,4,f +17069,33291,191,1,f +17069,33291,70,28,f +17069,33291,10,5,f +17069,3460,70,3,f +17069,3460,72,4,f +17069,3623,0,1,f +17069,3710,70,8,f +17069,3710,19,4,f +17069,3795,70,4,f +17069,3795,15,1,f +17069,3830,84,2,f +17069,3830,70,6,f +17069,3831,70,6,f +17069,3831,84,2,f +17069,3832,70,2,f +17069,3958,10,2,f +17069,3958,19,1,f +17069,3958,72,3,f +17069,4032a,0,9,f +17069,4070,70,4,f +17069,4216,19,2,f +17069,44728,70,6,f +17069,44728,2,4,f +17069,4510,71,2,f +17069,4727,10,2,f +17069,4738a,84,2,f +17069,4739a,84,2,f +17069,47457,308,4,f +17069,60478,0,1,f +17069,6141,27,1,f +17069,63864,0,1,f +17069,63868,0,1,f +17069,64644,308,5,f +17069,64648,25,1,f +17069,64648,179,1,f +17069,6636,70,5,f +17069,6636,84,2,f +17069,6636,0,2,f +17069,85861,0,3,f +17069,85984,70,12,f +17069,87079,72,1,f +17069,87552,40,29,f +17069,87580,0,3,f +17069,87580,72,4,f +17069,87580,84,3,f +17069,87580,15,27,f +17069,87580,2,11,f +17069,87580,322,17,f +17069,87580,19,1,f +17069,88072,70,4,f +17069,88704,70,1,f +17069,96874,25,1,f +17069,970c00,85,1,f +17069,970c00,297,1,f +17069,970c00,179,1,f +17069,973pr2819c01,321,1,f +17069,973pr2820c01,321,1,f +17069,973pr3096c01,378,1,f +17069,98283,28,6,f +17071,11476,320,2,f +17071,15573,320,2,f +17071,22885,71,14,f +17071,2420,320,2,f +17071,2431,0,1,f +17071,2431,191,1,f +17071,2431,320,3,f +17071,2431pr0096,320,1,f +17071,3003,29,1,f +17071,3003,25,2,f +17071,3005,320,6,f +17071,3020,320,2,f +17071,3022,320,3,f +17071,3023,191,2,f +17071,3023,320,2,f +17071,3031,320,3,f +17071,3032,0,1,f +17071,3068b,320,4,f +17071,3069b,320,3,f +17071,3069bpr0195,320,1,f +17071,3070b,191,2,f +17071,3070b,72,2,f +17071,3070b,191,1,t +17071,3070b,320,1,t +17071,3070b,72,1,t +17071,3070b,320,6,f +17071,3070bpr0178,41,1,t +17071,3070bpr0178,41,2,f +17071,32028,320,1,f +17071,3710,191,2,f +17071,3941,27,2,f +17071,4032a,4,1,f +17071,4070,320,8,f +17071,4070a,191,6,f +17071,85984,320,2,f +17071,87079,320,2,f +17071,87079pr0124,0,1,f +17071,88930pr0011,191,1,f +17071,92593,191,1,f +17071,92593,0,1,f +17084,11476,14,2,f +17084,15068,320,1,f +17084,15571,85,2,f +17084,22385,85,2,f +17084,22885,71,14,f +17084,24299,14,1,f +17084,24307,14,1,f +17084,2431,0,1,f +17084,2431,84,1,f +17084,2431,85,4,f +17084,26603,14,2,f +17084,26603,85,2,f +17084,3003,29,1,f +17084,3003,71,2,f +17084,3010pr0010,85,1,f +17084,3020,85,1,f +17084,3021,14,2,f +17084,3022,85,3,f +17084,3022,14,1,f +17084,3023,320,1,f +17084,3023,14,4,f +17084,3023,85,6,f +17084,3024,320,1,t +17084,3024,320,2,f +17084,3031,85,4,f +17084,3032,0,1,f +17084,30414,85,1,f +17084,3069b,85,4,f +17084,32028,14,2,f +17084,3665,320,1,f +17084,3710,14,2,f +17084,3941,71,2,f +17084,4032a,72,1,f +17084,54200,320,1,t +17084,54200,14,1,t +17084,54200,14,6,f +17084,54200,320,1,f +17084,6091,320,1,f +17084,87079,85,2,f +17084,87079pr0124,0,1,f +17084,92593,0,1,f +17084,92593,85,5,f +17084,98138pr0060,0,1,t +17084,98138pr0060,0,2,f +17084,98721,14,1,t +17084,98721,14,1,f +17084,99206,320,1,f +17084,99781,14,3,f +17085,11476,2,2,f +17085,11477,70,2,f +17085,15068,70,3,f +17085,15068,14,2,f +17085,22885,71,14,f +17085,2431,0,1,f +17085,2431,19,2,f +17085,3003,29,1,f +17085,3003,71,2,f +17085,3010pr0011,4,1,f +17085,3021,14,1,f +17085,3022,2,3,f +17085,3022,70,1,f +17085,3023,4,6,f +17085,3023,70,5,f +17085,3023,19,6,f +17085,3024,70,1,t +17085,3024,70,4,f +17085,3031,14,1,f +17085,3031,70,1,f +17085,3031,2,1,f +17085,3032,0,1,f +17085,30340,0,2,f +17085,30414,4,1,f +17085,3069b,70,1,f +17085,3069b,19,4,f +17085,3069b,0,1,f +17085,3070b,0,2,f +17085,3070b,0,1,t +17085,32028,70,1,f +17085,3710,19,1,f +17085,3710,14,2,f +17085,3710,0,1,f +17085,3710,2,1,f +17085,3710,4,4,f +17085,3941,71,2,f +17085,4032a,72,1,f +17085,43722,14,1,f +17085,43723,14,1,f +17085,85984,70,2,f +17085,85984,19,2,f +17085,87079,14,1,f +17085,87079,70,4,f +17085,87079pr0124,0,1,f +17085,92593,0,1,f +17085,98138pr0060,0,2,f +17085,98138pr0060,0,1,t +17085,99206,70,2,f +17086,11153,2,6,f +17086,11476,15,2,f +17086,11477,2,8,f +17086,14719,15,2,f +17086,22885,71,14,f +17086,2420,2,2,f +17086,2431,0,1,f +17086,2431,15,1,f +17086,2431pr0094,15,1,f +17086,25269,2,10,f +17086,25269,2,1,t +17086,3003,71,2,f +17086,3003,29,1,f +17086,3004,85,2,f +17086,3004pr0025,191,1,f +17086,3005,85,2,f +17086,3010,85,2,f +17086,3010pr0012,85,1,f +17086,3020,2,1,f +17086,3020,14,2,f +17086,3020,85,1,f +17086,3021,15,2,f +17086,3022,2,4,f +17086,3023,2,14,f +17086,3023,15,5,f +17086,3023,4,2,f +17086,3023,85,2,f +17086,3023,191,2,f +17086,3024,15,2,f +17086,3024,2,6,f +17086,3024,15,1,t +17086,3024,2,1,t +17086,3024,212,1,t +17086,3024,212,2,f +17086,3031,0,1,f +17086,3031,85,1,f +17086,3031,2,1,f +17086,3032,0,1,f +17086,3069b,2,2,f +17086,3069b,15,1,f +17086,3069b,191,2,f +17086,3070b,15,1,t +17086,3070b,15,2,f +17086,3623,2,1,f +17086,3710,14,1,f +17086,3710,2,8,f +17086,3941,71,2,f +17086,4032a,72,1,f +17086,4070,2,1,f +17086,54200,2,7,f +17086,54200,2,1,t +17086,6005,2,1,f +17086,6091,2,5,f +17086,85984,15,2,f +17086,85984,2,2,f +17086,87079pr0124,0,1,f +17086,92593,0,1,f +17086,98138pr0060,0,1,t +17086,98138pr0060,0,2,f +17086,99206,15,2,f +17087,11476,70,2,f +17087,22885,71,14,f +17087,2420,70,2,f +17087,2431,0,1,f +17087,2431,19,1,f +17087,3003,25,2,f +17087,3003,29,1,f +17087,3004,272,2,f +17087,3010,272,1,f +17087,3010pr0013,272,1,f +17087,3010pr0014,15,1,f +17087,3020,70,1,f +17087,3021,272,2,f +17087,3022,272,3,f +17087,3023,70,1,f +17087,3023,0,2,f +17087,3023,272,2,f +17087,3023,19,2,f +17087,3024,272,1,t +17087,3024,272,4,f +17087,3031,70,1,f +17087,3031,272,2,f +17087,3032,0,1,f +17087,3069b,272,4,f +17087,3069b,28,2,f +17087,3070b,272,1,t +17087,3070b,272,2,f +17087,3070b,28,2,f +17087,3070b,28,1,t +17087,32028,28,1,f +17087,3710,28,1,f +17087,3710,70,1,f +17087,3941,14,2,f +17087,4032a,15,1,f +17087,63868,70,1,f +17087,75902pr0004,4,1,f +17087,85984,19,2,f +17087,87079,272,4,f +17087,87079pr0121,272,1,f +17087,87079pr0124,0,1,f +17087,92593,0,1,f +17087,92593,272,1,f +17087,98138pr0060,0,2,f +17087,98138pr0060,0,1,t +17088,11476,0,2,f +17088,11477,484,9,f +17088,15068,484,9,f +17088,22885,71,14,f +17088,2420,0,2,f +17088,24246,71,1,t +17088,24246,71,2,f +17088,2431,484,1,f +17088,2431,0,2,f +17088,2431,19,1,f +17088,3003,25,2,f +17088,3003,29,1,f +17088,3004,0,1,f +17088,3005,72,4,f +17088,3020,72,1,f +17088,3020,0,1,f +17088,3020,19,1,f +17088,3020,484,5,f +17088,3021,1,1,f +17088,3021,19,2,f +17088,3022,72,2,f +17088,3022,0,1,f +17088,3022,484,2,f +17088,3023,0,2,f +17088,3023,484,5,f +17088,3023,72,4,f +17088,3024,0,1,t +17088,3024,484,4,f +17088,3024,484,1,t +17088,3024,0,4,f +17088,3031,19,1,f +17088,3032,0,1,f +17088,30374,0,2,f +17088,3069b,0,4,f +17088,3069bpr0196,72,2,f +17088,3070b,484,1,t +17088,3070b,484,1,f +17088,3070b,0,1,t +17088,3070b,0,2,f +17088,3245cpr0118,72,1,f +17088,3623,484,6,f +17088,3710,484,8,f +17088,3941,14,1,f +17088,4032a,15,1,f +17088,4032a,4,2,f +17088,43722,484,1,f +17088,6091,484,8,f +17088,63864,19,1,f +17088,87079,484,1,f +17088,87079pr0124,0,1,f +17088,92593,19,1,f +17088,92593,0,3,f +17088,93606,484,2,f +17088,98138pr0060,0,2,f +17088,98138pr0060,0,1,t +17088,99206,0,4,f +17088,99781,0,2,f +17089,22885,71,14,f +17089,2431,0,1,f +17089,2431,2,5,f +17089,3003,71,2,f +17089,3003,29,1,f +17089,3004,85,2,f +17089,3010,2,2,f +17089,3010pr0015,2,1,f +17089,3010pr0015b,2,1,f +17089,3022,85,1,f +17089,3023,2,6,f +17089,3024,0,1,t +17089,3024,0,4,f +17089,3031,2,2,f +17089,3031,85,1,f +17089,3031,0,2,f +17089,3032,0,1,f +17089,3070b,2,2,f +17089,3070b,2,1,t +17089,3710,2,1,f +17089,3710,0,2,f +17089,3937,2,2,f +17089,3941,4,2,f +17089,4032a,2,5,f +17089,54200,0,1,t +17089,54200,0,18,f +17089,54200,2,1,t +17089,54200,2,2,f +17089,6134,2,2,f +17089,85984,2,6,f +17089,87079pr0124,0,1,f +17089,92593,2,1,f +17089,92593,0,1,f +17089,98138pr0060,0,2,f +17089,98138pr0060,0,1,t +17090,11153,70,2,f +17090,11476,14,2,f +17090,11477,70,4,f +17090,11477,226,4,f +17090,15068,70,10,f +17090,18674,70,1,f +17090,22885,71,14,f +17090,2420,70,2,f +17090,2431,19,1,f +17090,3003,25,2,f +17090,3003,29,1,f +17090,3005,70,1,f +17090,3010,226,1,f +17090,3010pr0017,226,1,f +17090,3020,70,1,f +17090,3021,19,2,f +17090,3022,70,7,f +17090,3023,70,5,f +17090,3023,14,2,f +17090,3023,19,4,f +17090,3024,226,1,t +17090,3024,226,4,f +17090,3024,70,1,t +17090,3024,19,2,f +17090,3024,19,1,t +17090,3024,70,2,f +17090,3031,14,1,f +17090,3031,19,1,f +17090,3036,0,1,f +17090,30414,4,2,f +17090,3068b,70,2,f +17090,3069b,0,2,f +17090,3070b,19,2,f +17090,3070b,19,1,t +17090,33291,4,1,f +17090,33291,4,1,t +17090,3623,70,4,f +17090,3710,14,4,f +17090,3710,70,4,f +17090,3937,70,1,f +17090,3941,15,1,f +17090,4032a,14,1,f +17090,4032a,1,3,f +17090,4740,70,1,f +17090,54200,70,1,t +17090,54200,70,1,f +17090,6091,70,2,f +17090,6134,70,1,f +17090,6141,14,2,f +17090,6141,14,1,t +17090,63864,70,2,f +17090,6636,0,2,f +17090,85984,70,1,f +17090,87079,19,1,f +17090,87079pr0124,0,1,f +17090,87580,0,2,f +17090,87994,10,1,t +17090,87994,10,1,f +17090,88930pr0012,226,4,f +17090,92593,19,1,f +17090,98138pr0060,0,1,t +17090,98138pr0060,0,2,f +17090,99206,70,4,f +17090,99206,15,6,f +17091,11476,484,2,f +17091,11477,484,1,f +17091,11477,1,2,f +17091,15068,484,8,f +17091,15573,484,2,f +17091,15573,1,1,f +17091,15672,70,4,f +17091,22885,71,14,f +17091,2420,484,2,f +17091,2431,0,1,f +17091,25269,15,1,t +17091,25269,15,2,f +17091,3001,70,1,f +17091,3003,25,2,f +17091,3003,29,1,f +17091,3004,1,2,f +17091,3005,1,2,f +17091,3020,272,1,f +17091,3020,484,2,f +17091,3020,70,2,f +17091,3022,70,2,f +17091,3023,272,2,f +17091,3023,484,5,f +17091,3024,1,1,t +17091,3024,14,2,f +17091,3024,14,1,t +17091,3024,1,2,f +17091,3031,14,2,f +17091,3032,0,1,f +17091,30414,1,1,f +17091,3069b,1,4,f +17091,3069b,484,5,f +17091,3245cpr0120,14,1,f +17091,3623,1,2,f +17091,3710,484,7,f +17091,3710,14,1,f +17091,3941,71,2,f +17091,4032a,14,1,f +17091,49668,1,2,f +17091,49668,484,2,f +17091,54200,308,1,t +17091,54200,84,4,f +17091,54200,84,1,t +17091,54200,308,2,f +17091,85984,1,1,f +17091,85984,484,4,f +17091,87079pr0124,0,1,f +17091,92593,0,1,f +17091,92593,484,2,f +17091,98138pr0060,0,1,t +17091,98138pr0060,0,2,f +17091,99206,1,2,f +17091,99780,70,1,f +17094,15207,72,8,f +17094,18787,179,1,f +17094,18792,70,2,f +17094,19723,484,1,f +17094,19729pr0001,308,1,f +17094,19729pr0002,15,2,f +17094,2357,70,2,f +17094,2357,71,4,f +17094,24007,14,1,f +17094,2420,2,26,f +17094,2420,72,20,f +17094,2456,71,2,f +17094,2456,72,11,f +17094,2465,72,1,f +17094,2736,71,3,f +17094,2780,0,3,f +17094,3001,2,4,f +17094,3001,72,23,f +17094,3001,71,2,f +17094,3001,288,6,f +17094,3001,70,15,f +17094,3002,72,4,f +17094,3003,70,10,f +17094,3003,72,12,f +17094,3003,34,8,f +17094,3003,71,6,f +17094,3003,19,2,f +17094,3004,72,14,f +17094,3004,288,8,f +17094,3004,70,3,f +17094,3005,72,2,f +17094,3010,72,10,f +17094,3020,288,4,f +17094,3020,72,8,f +17094,3020,70,4,f +17094,3021,72,1,f +17094,3021,70,2,f +17094,3022,70,5,f +17094,3022,72,32,f +17094,3023,288,6,f +17094,30237b,70,1,f +17094,3024,288,24,f +17094,3024,182,2,f +17094,3024,70,2,f +17094,3024,25,1,f +17094,3024,14,1,f +17094,3024,46,2,f +17094,3030,72,3,f +17094,3032,72,5,f +17094,3034,288,6,f +17094,3036,2,2,f +17094,30414,288,4,f +17094,3068b,288,2,f +17094,3069b,2,9,f +17094,3070b,288,30,f +17094,3070b,14,2,f +17094,3070b,25,2,f +17094,32013,0,1,f +17094,32015,0,2,f +17094,33291,31,2,f +17094,33291,191,2,f +17094,34091,484,1,f +17094,3460,72,3,f +17094,3622,71,7,f +17094,3623,71,2,f +17094,3623,14,1,f +17094,3623,2,4,f +17094,3700,71,4,f +17094,3710,288,7,f +17094,3710,19,1,f +17094,3710,72,1,f +17094,3795,2,2,f +17094,3795,72,5,f +17094,3832,72,1,f +17094,3958,2,1,f +17094,41539,72,1,f +17094,4162,71,4,f +17094,44728,2,4,f +17094,4697b,0,1,f +17094,4727,10,2,f +17094,4733,0,1,f +17094,4738a,84,1,f +17094,4739a,84,1,f +17094,54200,288,16,f +17094,59900,179,1,f +17094,60115,15,2,f +17094,60476,71,4,f +17094,60478,288,4,f +17094,60478,14,1,f +17094,6111,72,2,f +17094,61184,71,1,f +17094,61252,14,1,f +17094,6141,10,1,f +17094,6141,322,1,f +17094,6141,36,4,f +17094,6266,15,4,f +17094,63864,14,1,f +17094,63864,288,2,f +17094,64644,308,2,f +17094,85984,288,2,f +17094,87079,72,12,f +17094,87087,70,4,f +17094,87087,288,20,f +17094,87580,2,15,f +17094,87580,72,48,f +17094,91405,72,2,f +17094,92438,2,1,f +17094,93061,15,4,f +17094,93160,15,1,f +17094,96874,25,1,f +17094,970c00,484,1,f +17094,973pr2819c01,321,1,f +17095,11055pr02,15,1,f +17095,11153,0,2,f +17095,11153,4,2,f +17095,11211,71,1,f +17095,11215,0,1,f +17095,11477,4,1,f +17095,15068,4,1,f +17095,15068,0,1,f +17095,15573,0,3,f +17095,15573,4,2,f +17095,15712,72,2,f +17095,18649,0,1,f +17095,18976,0,4,f +17095,18977,0,4,f +17095,19220,0,1,f +17095,2431,15,1,f +17095,2431,4,2,f +17095,2431,0,3,f +17095,2432,15,1,f +17095,2446,15,1,f +17095,2446,0,1,f +17095,2447,40,1,t +17095,2447,40,2,f +17095,2780,0,1,f +17095,2780,0,1,t +17095,30029,0,1,f +17095,3004,71,1,f +17095,3005,4,3,f +17095,3020,0,1,f +17095,3020,72,3,f +17095,3020,4,1,f +17095,3021,0,2,f +17095,3022,0,1,f +17095,3023,0,2,f +17095,3023,4,5,f +17095,3024,4,1,t +17095,3024,0,3,f +17095,3024,0,1,t +17095,3024,4,3,f +17095,3029,71,1,f +17095,30357,0,2,f +17095,30374,71,1,f +17095,3068b,0,1,f +17095,3069b,4,2,f +17095,3069bpr0030,15,1,f +17095,3070b,4,3,f +17095,3070b,36,1,f +17095,3070b,36,1,t +17095,3070b,4,1,t +17095,30895,9999,1,f +17095,32000,15,2,f +17095,32013,14,1,f +17095,32062,4,1,f +17095,32064a,0,2,f +17095,32123b,71,1,t +17095,32123b,71,4,f +17095,3623,0,2,f +17095,3623,4,2,f +17095,3626bpr0389,14,1,f +17095,3710,4,4,f +17095,3710,15,3,f +17095,3713,71,1,t +17095,3713,71,4,f +17095,3794b,15,2,f +17095,3795,0,2,f +17095,3829c01,4,1,f +17095,4006,0,1,f +17095,4070,15,1,f +17095,4274,1,1,t +17095,4274,1,10,f +17095,4286,15,1,f +17095,43722,0,1,f +17095,43723,0,1,f +17095,44294,71,2,f +17095,48336,4,1,f +17095,4865b,0,2,f +17095,4865b,15,2,f +17095,54200,4,1,t +17095,54200,15,4,f +17095,54200,15,1,t +17095,54200,4,2,f +17095,60470a,0,2,f +17095,60481,71,3,f +17095,60897,4,1,f +17095,6141,71,1,t +17095,6141,71,4,f +17095,63864,4,2,f +17095,6541,0,4,f +17095,6541,4,3,f +17095,6541,15,4,f +17095,6636,15,1,f +17095,85984,4,2,f +17095,85984,15,1,f +17095,87079,0,1,f +17095,87087,0,2,f +17095,87552,0,2,f +17095,87552,4,1,f +17095,87552,71,3,f +17095,87618,0,1,f +17095,90194,15,1,f +17095,90194,4,1,f +17095,970c00pr1249,4,1,f +17095,973pr3773c01,4,1,f +17095,98138,182,1,t +17095,98138,0,1,f +17095,98138,36,1,t +17095,98138,34,1,f +17095,98138,0,1,t +17095,98138,36,1,f +17095,98138,34,1,t +17095,98138,182,2,f +17095,99780,0,1,f +17096,10201,14,1,f +17096,10928,72,1,f +17096,11213,71,1,f +17096,11253,4,1,f +17096,11291,4,2,f +17096,11458,0,4,f +17096,11477,71,2,f +17096,11477,4,8,f +17096,11477,0,6,f +17096,14395,72,2,f +17096,15068,71,2,f +17096,15070,0,2,f +17096,15535,4,5,f +17096,15573,0,3,f +17096,15573,71,5,f +17096,15712,71,1,f +17096,15790,0,1,f +17096,18651,0,1,f +17096,18674,72,1,f +17096,18674,4,2,f +17096,18973,40,1,f +17096,18974,4,4,f +17096,18975,72,2,f +17096,18976,179,4,f +17096,18977,0,4,f +17096,18978,179,1,f +17096,2412b,71,4,f +17096,2412b,4,5,f +17096,2419,0,1,f +17096,2419,4,1,f +17096,2420,72,2,f +17096,24299,4,2,f +17096,24307,4,2,f +17096,2431,0,1,f +17096,2446,15,1,f +17096,2447,40,1,f +17096,2453b,4,3,f +17096,2654,0,4,f +17096,26601,4,2,f +17096,2780,0,7,f +17096,2817,0,2,f +17096,2877,15,1,f +17096,28809,71,4,f +17096,29119,4,1,f +17096,29120,4,1,f +17096,3001,4,2,f +17096,30029,0,1,f +17096,3003,71,1,f +17096,3004,71,3,f +17096,3004,72,3,f +17096,3004,0,2,f +17096,3004,4,1,f +17096,3005,71,6,f +17096,3005,72,2,f +17096,3005,4,2,f +17096,30099,72,2,f +17096,30099,4,2,f +17096,3010,15,2,f +17096,3010,71,5,f +17096,30136,71,3,f +17096,3020,15,3,f +17096,3021,72,1,f +17096,3021,4,3,f +17096,3023,72,8,f +17096,3023,0,8,f +17096,3023,4,11,f +17096,3024,4,6,f +17096,3027,72,2,f +17096,3028,72,1,f +17096,3031,15,1,f +17096,3033,71,4,f +17096,3039,4,2,f +17096,3039,72,2,f +17096,3040b,71,2,f +17096,3040b,72,6,f +17096,30414,4,1,f +17096,30414,71,2,f +17096,3062b,71,7,f +17096,3068b,71,2,f +17096,3068b,0,1,f +17096,3070b,4,4,f +17096,3070b,71,4,f +17096,3070bpr0007,71,2,f +17096,30899,9999,1,f +17096,32000,72,2,f +17096,32064a,14,1,f +17096,32123b,14,1,f +17096,32270,0,1,f +17096,3245b,4,4,f +17096,32498,0,1,f +17096,32524,72,1,f +17096,32526,72,1,f +17096,32807,4,4,f +17096,33299a,0,1,f +17096,3460,0,2,f +17096,3460,72,3,f +17096,3622,4,2,f +17096,3623,4,2,f +17096,3626cpr1662,14,1,f +17096,3626cpr1783,14,1,f +17096,3626cpr1965,14,1,f +17096,3626cpr2113,14,1,f +17096,3660,72,1,f +17096,3660,14,1,f +17096,3666,14,1,f +17096,3666,4,1,f +17096,3678b,71,1,f +17096,3679,71,1,f +17096,3680,4,1,f +17096,3700,4,8,f +17096,3701,72,2,f +17096,3706,0,2,f +17096,3710,0,1,f +17096,3710,71,1,f +17096,3710,15,1,f +17096,3710,4,7,f +17096,3713,4,3,f +17096,3738,71,1,f +17096,3743,0,1,f +17096,3749,19,4,f +17096,3795,0,2,f +17096,3795,15,2,f +17096,3821,4,1,f +17096,3822,4,1,f +17096,3829c01,0,1,f +17096,3832,71,2,f +17096,3937,71,2,f +17096,3938,71,2,f +17096,3940b,0,1,f +17096,3941,2,1,f +17096,3941,4,1,f +17096,4006,179,1,f +17096,4032a,0,1,f +17096,4032a,14,4,f +17096,4032a,71,6,f +17096,4070,14,2,f +17096,4070,72,4,f +17096,4081b,71,2,f +17096,41239,0,1,f +17096,4185,14,1,f +17096,43093,1,1,f +17096,43722,71,1,f +17096,43723,71,1,f +17096,44294,71,2,f +17096,4595,0,1,f +17096,47456,0,1,f +17096,47457,15,1,f +17096,47905,0,1,f +17096,48336,0,1,f +17096,4865b,72,1,f +17096,54200,4,5,f +17096,54200,0,2,f +17096,55013,72,1,f +17096,59349,4,2,f +17096,59443,72,2,f +17096,60479,4,2,f +17096,60481,4,4,f +17096,60484,72,1,f +17096,60581,15,2,f +17096,6060,4,2,f +17096,60897,0,2,f +17096,6106,71,1,f +17096,6111,71,3,f +17096,6141,14,16,f +17096,6141,0,12,f +17096,6141,36,1,f +17096,6231,0,2,f +17096,62462,4,1,f +17096,62696,308,1,f +17096,63864,15,1,f +17096,63864,4,2,f +17096,64567,71,1,f +17096,6558,1,4,f +17096,6589,19,2,f +17096,6636,0,3,f +17096,6636,4,2,f +17096,73590c03b,14,2,f +17096,85546,14,2,f +17096,85861,71,5,f +17096,85984,14,4,f +17096,85984,0,2,f +17096,85984,15,2,f +17096,86035,4,1,f +17096,87079,4,1,f +17096,87079,71,5,f +17096,87083,72,2,f +17096,87544,47,2,f +17096,87990,226,1,f +17096,87994,71,2,f +17096,88072,4,1,f +17096,88930,0,2,f +17096,92947,4,4,f +17096,93273,4,1,f +17096,93606,0,1,f +17096,93606,4,1,f +17096,96874,25,1,f +17096,970c00,15,2,f +17096,970c00,0,2,f +17096,973pr3403c01,15,1,f +17096,973pr3769c01,15,1,f +17096,973pr3795c01,4,2,f +17096,99206,15,2,f +17096,99780,0,12,f +17096,99780,4,2,f +17097,10202,71,2,f +17097,11055,4,1,f +17097,11055,0,1,f +17097,11055,15,2,f +17097,11055pr02,15,1,f +17097,11153,2,6,f +17097,11153,72,2,f +17097,11153,0,4,f +17097,11211,19,2,f +17097,11211,15,1,f +17097,11211,4,3,f +17097,11215,0,2,f +17097,11253,297,1,f +17097,11402,0,1,f +17097,11458,72,11,f +17097,11476,71,2,f +17097,11477,0,8,f +17097,11477,15,4,f +17097,11477,71,4,f +17097,14226c11,0,2,f +17097,14704,71,4,f +17097,14716,15,2,f +17097,14769,15,1,f +17097,14769,14,2,f +17097,14769,71,1,f +17097,15068,15,2,f +17097,15068,71,3,f +17097,15071,0,1,f +17097,15210,72,3,f +17097,15456,0,4,f +17097,15535,72,5,f +17097,15573,71,4,f +17097,15573,14,1,f +17097,15573,0,3,f +17097,15573,2,2,f +17097,15573,4,1,f +17097,15712,4,2,f +17097,15712,71,1,f +17097,15712,72,2,f +17097,18575,0,1,f +17097,18649,0,2,f +17097,18976,0,2,f +17097,18976,2,8,f +17097,18977,0,10,f +17097,18979,179,2,f +17097,2357,15,4,f +17097,2412b,179,4,f +17097,2420,2,2,f +17097,2431,15,1,f +17097,2431,0,1,f +17097,2431,72,1,f +17097,2431,14,1,f +17097,2431,2,9,f +17097,2432,72,2,f +17097,2432,71,2,f +17097,2432,0,4,f +17097,2445,71,2,f +17097,2446,0,1,f +17097,2446,15,1,f +17097,2447,40,2,f +17097,2453b,0,2,f +17097,2454a,15,4,f +17097,2456,15,2,f +17097,2465,0,1,f +17097,2465,15,2,f +17097,2486,72,6,f +17097,2496,0,4,f +17097,25269,2,4,f +17097,25386,19,1,f +17097,2540,72,2,f +17097,2540,2,1,f +17097,26047,0,2,f +17097,2654,71,1,f +17097,2655,71,4,f +17097,2780,0,4,f +17097,2817,0,2,f +17097,2921,0,1,f +17097,298c02,0,1,f +17097,30029,0,2,f +17097,3003,0,3,f +17097,3003,71,2,f +17097,3004,4,1,f +17097,3004,15,18,f +17097,3004,71,2,f +17097,3004,0,3,f +17097,3005,15,2,f +17097,3006,71,1,f +17097,3008,19,2,f +17097,3008,15,2,f +17097,3008,71,2,f +17097,3009,15,2,f +17097,3009,19,2,f +17097,3010,15,1,f +17097,30134,0,1,f +17097,30145,71,3,f +17097,3020,72,2,f +17097,3020,0,5,f +17097,3020,15,1,f +17097,3020,71,1,f +17097,3021,71,2,f +17097,3021,0,4,f +17097,3021,2,6,f +17097,3022,15,1,f +17097,3022,0,2,f +17097,3022,19,2,f +17097,3022,2,1,f +17097,3022,71,7,f +17097,3023,0,9,f +17097,3023,2,7,f +17097,3023,71,21,f +17097,3023,15,7,f +17097,3023,4,1,f +17097,30237b,0,4,f +17097,30237b,15,2,f +17097,3024,71,7,f +17097,3024,0,7,f +17097,3030,71,4,f +17097,3032,15,1,f +17097,3034,15,1,f +17097,3034,2,1,f +17097,3035,15,2,f +17097,30357,0,4,f +17097,30374,71,2,f +17097,30374,0,1,f +17097,30377,71,1,f +17097,30377,15,2,f +17097,3039pr0013,15,1,f +17097,3040b,0,2,f +17097,3040b,15,1,f +17097,30503,71,2,f +17097,30503,2,2,f +17097,30553,0,2,f +17097,30565,71,3,f +17097,3062b,0,2,f +17097,3062b,4,1,f +17097,3068b,15,4,f +17097,3068b,0,2,f +17097,3068b,2,4,f +17097,3069b,0,2,f +17097,3069b,71,2,f +17097,3069b,4,7,f +17097,3069b,2,3,f +17097,3069b,15,6,f +17097,3069bpr0030,15,2,f +17097,3069bpr0101,71,1,f +17097,3069bpr0155,14,4,f +17097,3070b,2,6,f +17097,3070b,72,1,f +17097,3185,0,7,f +17097,32013,0,5,f +17097,32015,0,1,f +17097,32034,0,2,f +17097,32039,71,1,f +17097,32039,0,1,f +17097,32054,0,1,f +17097,32062,4,7,f +17097,32064a,0,5,f +17097,32073,71,1,f +17097,32123b,71,10,f +17097,32192,0,1,f +17097,32198,19,1,f +17097,32270,0,1,f +17097,3245b,4,4,f +17097,32530,0,1,f +17097,3298,4,6,f +17097,3298,15,8,f +17097,33078,4,1,f +17097,33299a,71,1,f +17097,3456,71,1,f +17097,3460,71,2,f +17097,3622,71,4,f +17097,3622,2,2,f +17097,3623,25,1,f +17097,3623,71,2,f +17097,3623,15,4,f +17097,3623,0,2,f +17097,3623,72,1,f +17097,3623,2,2,f +17097,3626bpr0389,14,1,f +17097,3626bpr0645,14,1,f +17097,3626bpr0649,14,1,f +17097,3626cpr1146,14,1,f +17097,3626cpr1579,14,1,f +17097,3626cpr1614,14,1,f +17097,3626cpr1771,14,1,f +17097,3626cpr1966,14,1,f +17097,3648b,72,2,f +17097,3660,0,1,f +17097,3666,0,1,f +17097,3666,15,3,f +17097,3673,71,1,f +17097,3678b,15,2,f +17097,3700,72,2,f +17097,3705,0,3,f +17097,3707,0,1,f +17097,3709,15,1,f +17097,3710,2,3,f +17097,3710,0,4,f +17097,3710,71,3,f +17097,3713,71,8,f +17097,3738,15,3,f +17097,3749,19,1,f +17097,3795,0,4,f +17097,3829c01,71,2,f +17097,3832,72,4,f +17097,3832,15,2,f +17097,3832,71,4,f +17097,3832,0,1,f +17097,3940b,0,1,f +17097,3941,41,1,f +17097,3941,15,4,f +17097,3960,191,1,f +17097,4006,0,1,f +17097,4032a,0,1,f +17097,4070,0,1,f +17097,4070,15,1,f +17097,4079,14,1,f +17097,4081b,0,1,f +17097,41539,71,1,f +17097,4162,2,4,f +17097,4162,71,2,f +17097,4162,0,1,f +17097,41677,0,2,f +17097,4175,0,1,f +17097,4274,1,10,f +17097,4274,71,2,f +17097,4286,4,2,f +17097,43093,1,1,f +17097,4349,4,2,f +17097,4349,0,1,f +17097,43722,0,2,f +17097,43723,0,2,f +17097,44294,71,4,f +17097,44567a,71,2,f +17097,44728,2,2,f +17097,44728,71,1,f +17097,4476b,0,4,f +17097,4519,71,2,f +17097,4533,71,2,f +17097,4599b,4,1,f +17097,4599b,14,1,f +17097,4599b,0,1,f +17097,4733,71,2,f +17097,4740,0,1,f +17097,47905,0,1,f +17097,48092,15,5,f +17097,48336,2,6,f +17097,48336,71,1,f +17097,4865b,71,4,f +17097,4865b,15,1,f +17097,4865b,0,4,f +17097,48729b,72,4,f +17097,51739,0,4,f +17097,51739,71,2,f +17097,54200,14,3,f +17097,54200,0,3,f +17097,54200,71,2,f +17097,58846,4,1,f +17097,59349,0,2,f +17097,59426,72,1,f +17097,60470a,71,4,f +17097,60470a,0,4,f +17097,60471,71,1,f +17097,60474,71,1,f +17097,60475b,71,6,f +17097,60476,15,3,f +17097,60477,0,2,f +17097,60481,15,2,f +17097,60581,71,2,f +17097,60581,15,5,f +17097,60596,15,1,f +17097,60897,25,1,f +17097,60897,15,2,f +17097,60897,71,2,f +17097,6091,2,1,f +17097,6111,0,2,f +17097,61252,71,5,f +17097,61252,0,2,f +17097,61409,72,4,f +17097,6141,0,8,f +17097,6141,46,3,f +17097,6141,1,1,f +17097,6141,47,22,f +17097,61485,0,1,f +17097,6179,0,1,f +17097,6180,0,1,f +17097,6231,15,2,f +17097,6231,0,8,f +17097,62810,308,1,f +17097,63864,14,2,f +17097,63864,0,1,f +17097,63965,71,2,f +17097,63965,15,2,f +17097,63965,0,1,f +17097,64644,0,1,f +17097,64644,297,1,f +17097,6541,71,8,f +17097,6541,72,1,f +17097,6541,0,8,f +17097,6553,0,1,f +17097,6632,71,2,f +17097,6636,15,1,f +17097,6636,0,4,f +17097,73590c03a,0,1,f +17097,76766,0,1,f +17097,85984,4,1,f +17097,86035,15,1,f +17097,86035,71,1,f +17097,86035,0,1,f +17097,87079,4,1,f +17097,87079,71,2,f +17097,87079,0,3,f +17097,87083,72,1,f +17097,87087,15,2,f +17097,87544,71,2,f +17097,87544,15,2,f +17097,87552,0,6,f +17097,87552,15,6,f +17097,87552,71,4,f +17097,87990,84,1,f +17097,87994,71,7,f +17097,87994,0,1,f +17097,88072,0,1,f +17097,88286,308,1,f +17097,90194,71,4,f +17097,90258,72,4,f +17097,90498,0,1,f +17097,92410,0,2,f +17097,92438,71,1,f +17097,92582,71,1,f +17097,92690,71,1,f +17097,92947,0,2,f +17097,93606,71,2,f +17097,95188,4,2,f +17097,95347,0,2,f +17097,96874,25,1,f +17097,970c00,15,1,f +17097,970c00,0,3,f +17097,970c00,19,1,f +17097,970c00,272,1,f +17097,970c00pr1255,15,2,f +17097,973pr1801c01,25,1,f +17097,973pr2913c01,25,1,f +17097,973pr3425c01,4,1,f +17097,973pr3687c01,15,2,f +17097,973pr3771c01,15,1,f +17097,973pr3849c01,0,2,f +17097,98138,34,2,f +17097,98138,71,1,f +17097,98138,36,1,f +17097,98138,182,2,f +17097,98138,46,3,f +17097,98138,47,2,f +17097,98313,0,1,f +17097,98385,70,1,f +17097,98549,15,2,f +17097,98834,0,1,f +17097,99780,0,2,f +17097,99780,72,1,f +17097,99780,15,2,f +17097,99930,308,1,f +17128,11211,0,2,f +17128,11211,15,2,f +17128,11477,15,8,f +17128,11477,0,8,f +17128,14719,15,8,f +17128,14719,0,8,f +17128,14769,1,12,f +17128,14769,4,12,f +17128,15068,0,42,f +17128,15068,15,42,f +17128,15470,297,1,f +17128,15470,179,1,f +17128,15573,0,8,f +17128,15672,15,8,f +17128,2357,15,8,f +17128,2357,0,8,f +17128,2431,15,64,f +17128,2431,0,64,f +17128,2431,71,24,f +17128,2458,72,6,f +17128,26604,19,96,f +17128,2877,0,6,f +17128,2877,15,6,f +17128,3002,71,8,f +17128,3003,320,2,f +17128,3003,272,2,f +17128,3003,15,17,f +17128,3003,0,17,f +17128,3004,71,8,f +17128,3005,71,4,f +17128,3005,15,4,f +17128,3005,0,4,f +17128,3007,71,8,f +17128,3010,71,8,f +17128,3021,15,2,f +17128,3021,0,2,f +17128,3022,320,25,f +17128,3022,71,9,f +17128,3022,15,15,f +17128,3022,0,14,f +17128,3023,0,39,f +17128,3023,320,3,f +17128,3023,71,32,f +17128,3023,272,53,f +17128,3023,15,39,f +17128,3024,272,18,f +17128,3024,71,44,f +17128,3024,0,22,f +17128,3024,15,24,f +17128,3024,320,20,f +17128,3068b,320,6,f +17128,3068b,272,6,f +17128,3069b,15,68,f +17128,3069b,0,68,f +17128,32028,0,4,f +17128,32028,15,4,f +17128,3245b,15,2,f +17128,3245c,0,2,f +17128,3460,71,8,f +17128,3622,71,4,f +17128,3623,71,40,f +17128,3700,19,6,f +17128,3794b,15,8,f +17128,3832,71,2,f +17128,4032a,1,12,f +17128,4032a,4,12,f +17128,4733,15,4,f +17128,4733,0,4,f +17128,4740,0,1,f +17128,4740,15,1,f +17128,49668,0,4,f +17128,49668,15,4,f +17128,60479,71,16,f +17128,6111,71,12,f +17128,6112,71,12,f +17128,6141,2,4,f +17128,6141,179,27,f +17128,6141,297,27,f +17128,85861,15,3,f +17128,85861,0,3,f +17128,85984,15,6,f +17128,85984,0,6,f +17128,87079,71,4,f +17128,87580,320,2,f +17128,87580,272,2,f +17128,87580,15,32,f +17128,87580,0,32,f +17128,87994,71,4,f +17128,91405,72,8,f +17128,92593,71,16,f +17128,92946,0,8,f +17128,92947,0,10,f +17128,92947,15,10,f +17128,96874,25,1,f +17128,98100,0,8,f +17128,98100,15,8,f +17128,99206,15,4,f +17128,99206,0,4,f +17128,99780,0,12,f +17128,99780,15,12,f +17134,11211,71,1,f +17134,11477,326,2,f +17134,11598,148,1,f +17134,13754,148,1,f +17134,13965,70,2,f +17134,15462,70,1,f +17134,15619,4,1,f +17134,15619,4,1,t +17134,15705,308,1,f +17134,2357,72,1,f +17134,24316,70,1,f +17134,24484,148,1,f +17134,24586,148,1,f +17134,24588,148,1,f +17134,2654,36,1,f +17134,28587,134,1,f +17134,28652,72,1,f +17134,3002,71,1,f +17134,30093,288,2,f +17134,30115,4,5,f +17134,30136,70,4,f +17134,30173b,179,1,f +17134,30236,71,2,f +17134,30374,0,1,f +17134,3040b,308,3,f +17134,3062b,70,3,f +17134,3622,72,3,f +17134,3626cpr1365,14,1,f +17134,3705,0,1,f +17134,3709,72,1,f +17134,3710,70,2,f +17134,3941,4,1,f +17134,4286,70,3,f +17134,4460b,70,2,f +17134,4497,148,1,f +17134,54200,36,1,t +17134,54200,308,1,t +17134,54200,308,2,f +17134,54200,36,2,f +17134,6003,27,1,f +17134,60474,308,1,f +17134,60475b,0,1,f +17134,60483,71,3,f +17134,60897,70,3,f +17134,6141,0,1,t +17134,6141,0,4,f +17134,64799,0,1,f +17134,6541,71,1,f +17134,92690,148,1,f +17172,11211,15,2,f +17172,11289,41,1,f +17172,11477,71,2,f +17172,2421,0,1,f +17172,2431pr0028,72,1,f +17172,2446,15,1,f +17172,2447,40,1,t +17172,2447,40,1,f +17172,2460,71,1,f +17172,2479,0,1,f +17172,3004,1,1,f +17172,3023,15,1,f +17172,3031,15,1,f +17172,3034,15,1,f +17172,3460,72,2,f +17172,3623,0,1,f +17172,3626cpr2141,14,1,f +17172,3660,15,1,f +17172,3666,71,4,f +17172,3839b,72,1,f +17172,4360,0,1,f +17172,44661,15,1,f +17172,4488,71,1,f +17172,4599b,15,1,t +17172,4599b,15,1,f +17172,54200,33,1,t +17172,54200,33,2,f +17172,60475b,1,2,f +17172,61409,72,2,f +17172,6141,36,1,t +17172,6141,46,1,f +17172,6141,46,1,t +17172,6141,36,2,f +17172,76766,1,1,f +17172,90194,72,1,f +17172,92280,71,2,f +17172,970c00,272,1,f +17172,973pr3694,272,1,f +17181,11090,0,2,f +17181,11090,297,1,f +17181,15532,0,1,f +17181,15619,1,1,f +17181,15619,4,1,f +17181,15705,308,1,f +17181,20568pat01,272,1,f +17181,20643,272,1,f +17181,3626cpr1365,14,1,f +17181,3626cpr1367,14,1,f +17181,3626cpr1688,42,1,f +17181,3626cpr9987,0,1,f +17181,4697b,0,2,f +17181,53451,0,1,f +17181,62810,484,1,f +17181,64567,0,1,f +17181,64567,297,1,f +17181,75902,0,1,f +17181,87747,0,1,f +17181,87994,297,2,f +17181,92690,297,1,f +17181,970c00pr0761,4,1,f +17181,970c00pr0763,1,1,f +17181,970x268pr001,85,2,f +17181,973pr2846c01,4,1,f +17181,973pr2848c01,1,1,f +17181,973pr9979c01,85,1,f +17181,973pr9991,85,1,f +17181,98139,297,2,f +17181,98139,148,1,f +17181,98141,158,2,f +17190,11211,71,1,f +17190,11215,71,1,f +17190,11458,72,2,f +17190,11477,15,2,f +17190,11477,71,2,f +17190,11477,14,2,f +17190,15573,71,2,f +17190,15712,71,2,f +17190,17485,71,2,f +17190,17485,14,2,f +17190,2412b,71,2,f +17190,2420,15,2,f +17190,2780,0,4,f +17190,2780,0,1,t +17190,2877,72,2,f +17190,3020,71,1,f +17190,3022,15,2,f +17190,3024,14,2,f +17190,3024,14,1,t +17190,30367c,15,2,f +17190,30370pr0126,15,1,f +17190,32000,72,2,f +17190,32028,72,1,f +17190,32523,71,2,f +17190,3626cpr1441,78,1,f +17190,3710,72,1,f +17190,3795,72,1,f +17190,3839b,71,1,f +17190,4032a,72,2,f +17190,4032a,15,4,f +17190,4032a,71,2,f +17190,43719,14,1,f +17190,50950,15,2,f +17190,54200,40,2,f +17190,54200,40,1,t +17190,59900,36,2,f +17190,61184,71,4,f +17190,6141,71,1,t +17190,6141,71,2,f +17190,6141,182,1,t +17190,6141,182,2,f +17190,64644,15,10,f +17190,6541,4,2,f +17190,87083,72,2,f +17190,92738,0,1,f +17190,970c00pr1132,272,1,f +17190,973pr3633c01,272,1,f +17190,99207,71,3,f +17190,99207,15,2,f +17194,11153,14,2,f +17194,11215,0,2,f +17194,11476,71,6,f +17194,11477,14,2,f +17194,11477,71,2,f +17194,11833,71,4,f +17194,13731,71,2,f +17194,13731,15,2,f +17194,15068,14,5,f +17194,15303,36,4,f +17194,15400,72,2,f +17194,15456,71,1,f +17194,15535,72,1,f +17194,15573,484,1,f +17194,15573,71,2,f +17194,15573,14,2,f +17194,15672,71,2,f +17194,15712,70,2,f +17194,15712,71,34,f +17194,16091,71,2,f +17194,18651,0,1,f +17194,18671,71,4,f +17194,18674,72,2,f +17194,18759,71,2,f +17194,18986,47,1,f +17194,23948,71,8,f +17194,2412b,0,2,f +17194,2412b,71,1,f +17194,2420,72,2,f +17194,2420,71,2,f +17194,24299,15,1,f +17194,24307,15,1,f +17194,2431,71,2,f +17194,2431,15,2,f +17194,2458,14,2,f +17194,2460,71,1,f +17194,2540,15,2,f +17194,2540,72,1,f +17194,2540,71,4,f +17194,2654,72,2,f +17194,2654,47,6,f +17194,26604,19,2,f +17194,2780,0,16,f +17194,2853,71,3,f +17194,2877,71,2,f +17194,2877,72,1,f +17194,29035pr2051,15,1,f +17194,2921,71,2,f +17194,29282pr2093,148,1,f +17194,30000,15,2,f +17194,3003,14,2,f +17194,3005,379,2,f +17194,3009,72,1,f +17194,3020,72,4,f +17194,3021,15,2,f +17194,3021,71,2,f +17194,3021,72,2,f +17194,3022,14,5,f +17194,3022,72,1,f +17194,3022,15,5,f +17194,3023,15,4,f +17194,3023,14,4,f +17194,3023,36,2,f +17194,3023,272,2,f +17194,3023,72,5,f +17194,3023,28,6,f +17194,3023,40,5,f +17194,3024,40,2,f +17194,3031,72,4,f +17194,3032,15,1,f +17194,3034,71,1,f +17194,30361cpr1012,72,1,f +17194,30367cpr1010,40,1,f +17194,3037,71,2,f +17194,30370pr0007,15,1,f +17194,30374,71,10,f +17194,30374,15,2,f +17194,30374,0,1,f +17194,30375,72,2,f +17194,30383,379,2,f +17194,30387,14,2,f +17194,3039,72,2,f +17194,30395,72,1,f +17194,30396,0,1,f +17194,30408pr0007,15,1,f +17194,30414,14,2,f +17194,3045,71,2,f +17194,30552,71,3,f +17194,3062b,72,8,f +17194,3068b,71,2,f +17194,3068b,15,2,f +17194,3070b,72,8,f +17194,3070b,272,1,f +17194,30863,40,1,f +17194,3176,71,1,f +17194,32013,71,16,f +17194,32028,72,2,f +17194,32028,0,1,f +17194,32034,71,8,f +17194,32054,4,1,f +17194,32062,4,8,f +17194,32072,0,3,f +17194,32123b,14,2,f +17194,32138,71,1,f +17194,32270,0,1,f +17194,32324,71,2,f +17194,32524,71,2,f +17194,3460,71,1,f +17194,3460,15,1,f +17194,3623,71,2,f +17194,3626cpr1149,78,1,f +17194,3626cpr1441,78,1,f +17194,3660,72,4,f +17194,3665,72,2,f +17194,3666,71,3,f +17194,3673,71,4,f +17194,3700,71,3,f +17194,3702,71,2,f +17194,3709,379,2,f +17194,3710,72,8,f +17194,3710,15,1,f +17194,3795,72,5,f +17194,3795,15,1,f +17194,3894,0,1,f +17194,3895,71,2,f +17194,3957b,70,2,f +17194,4006,179,1,f +17194,4032a,71,1,f +17194,4032a,72,8,f +17194,4070,71,4,f +17194,4079,0,1,f +17194,4081b,71,2,f +17194,42610,71,1,f +17194,4274,1,4,f +17194,4274,71,24,f +17194,4286,71,2,f +17194,4287,15,2,f +17194,43093,1,1,f +17194,43719,14,1,f +17194,43722,15,1,f +17194,43722,14,2,f +17194,43723,15,1,f +17194,43723,14,2,f +17194,44302a,0,2,f +17194,44676,15,2,f +17194,44728,71,2,f +17194,44728,72,4,f +17194,4733,71,8,f +17194,47397,15,1,f +17194,47398,15,1,f +17194,4740,45,2,f +17194,47457,71,1,f +17194,48336,71,1,f +17194,4865b,40,1,f +17194,4865b,14,1,f +17194,4865b,71,2,f +17194,48729b,72,16,f +17194,52036,72,1,f +17194,54200,71,16,f +17194,54200,14,2,f +17194,54383,71,1,f +17194,54384,71,1,f +17194,55013,72,2,f +17194,58247,0,1,f +17194,59443,71,8,f +17194,59443,4,2,f +17194,59900,15,2,f +17194,59900,4,4,f +17194,60471,0,1,f +17194,60474,14,2,f +17194,60474,379,2,f +17194,60485,71,11,f +17194,60849,0,1,f +17194,60897,72,2,f +17194,60897,14,2,f +17194,61184,71,2,f +17194,61252,71,8,f +17194,61252,72,2,f +17194,61409,0,1,f +17194,6141,46,4,f +17194,6141,14,4,f +17194,6141,72,21,f +17194,6179,15,1,f +17194,6222,71,4,f +17194,6231,71,2,f +17194,6232,19,1,f +17194,6233,71,2,f +17194,62462,71,1,f +17194,6259,15,4,f +17194,63082,71,1,f +17194,63864,14,2,f +17194,63868,71,3,f +17194,6636,71,2,f +17194,74698,0,1,f +17194,75937,0,4,f +17194,85984,72,1,f +17194,85984,71,2,f +17194,85984pr0006,72,1,f +17194,86500,15,2,f +17194,87079,14,1,f +17194,87081,72,2,f +17194,87580,71,9,f +17194,87609,15,2,f +17194,87994,70,4,f +17194,90194,72,1,f +17194,91501,71,2,f +17194,92107,72,1,f +17194,92582,71,5,f +17194,92593,71,4,f +17194,92738,0,2,f +17194,92947,0,4,f +17194,93274,72,4,f +17194,93555,179,8,f +17194,93609,15,2,f +17194,96874,25,1,f +17194,970c00pr0719,15,1,f +17194,970c00pr1132,272,1,f +17194,970c00pr1225,15,1,f +17194,970c00pr1226,272,1,f +17194,973pr2767c01,15,1,f +17194,973pr3568c01,272,1,f +17194,973pr3733c01,15,1,f +17194,973pr3734c01,272,1,f +17194,98285,71,2,f +17194,98286,71,2,f +17194,99021,72,1,f +17194,99206,71,2,f +17194,99207,0,1,f +17194,99563,71,3,f +17194,99780,71,4,f +17194,99781,0,1,f +17202,14418,71,2,f +17202,14419,72,2,f +17202,14704,71,2,f +17202,15068,4,2,f +17202,15092,72,2,f +17202,15100,0,1,f +17202,15460,72,1,f +17202,15535,4,1,f +17202,15571,4,2,f +17202,22385pr0003,46,1,f +17202,22385pr0038,35,1,f +17202,22385pr0053,47,1,f +17202,22385pr0054,33,1,f +17202,22385pr0055,36,1,f +17202,22388,57,2,f +17202,22388,57,1,t +17202,22400,179,1,f +17202,22411,320,1,f +17202,2446,4,1,f +17202,27167,4,1,f +17202,27168,72,1,f +17202,27255,71,1,f +17202,2780,0,1,t +17202,2780,0,1,f +17202,2817,4,2,f +17202,3023,4,2,f +17202,3023,25,5,f +17202,3023,320,2,f +17202,3039,4,2,f +17202,3068bpr0312,4,1,f +17202,32062,0,2,f +17202,3300,4,1,f +17202,3626cpr1780,14,1,f +17202,3707,0,1,f +17202,3943b,72,1,f +17202,41678,71,2,f +17202,43093,1,1,f +17202,44728,71,2,f +17202,50923,72,2,f +17202,54200,4,1,t +17202,54200,4,2,f +17202,87580,320,2,f +17202,92582,25,1,f +17202,93575,179,2,f +17202,970c00pr1155,4,1,f +17202,973pr3605c01,4,1,f +17202,98578,57,1,f +17215,41169c01,71,1,f +17215,42030,0,1,f +17215,47423,27,2,f +17215,54008pr0001,15,1,f +17215,54009pr0001,15,1,f +17227,10201,0,1,f +17227,10247,71,1,f +17227,10312,191,1,f +17227,11211,0,2,f +17227,11295,14,2,f +17227,14417,72,2,f +17227,14419,72,2,f +17227,14704,71,2,f +17227,15068,191,3,f +17227,15068,14,2,f +17227,15303,36,2,f +17227,15391,0,2,f +17227,15392,72,2,f +17227,15400,72,1,f +17227,15573,297,1,f +17227,15672,0,4,f +17227,15712,0,4,f +17227,15712,320,6,f +17227,17010,148,2,f +17227,18041,297,1,f +17227,18646,28,2,f +17227,18674,322,2,f +17227,20482,0,1,f +17227,2412b,0,9,f +17227,2412b,297,1,f +17227,2419,320,1,f +17227,2420,0,1,f +17227,24201,0,2,f +17227,24299,14,1,f +17227,24307,14,1,f +17227,2445,71,1,f +17227,2450,72,2,f +17227,2450,320,1,f +17227,2540,72,8,f +17227,2653,71,4,f +17227,2654,72,2,f +17227,2654,0,1,f +17227,26603,0,3,f +17227,27925,297,4,f +17227,298c02,0,1,f +17227,3002,71,3,f +17227,3003,14,1,f +17227,3004,71,2,f +17227,3005,4,1,f +17227,3020,72,3,f +17227,3021,1,1,f +17227,3021,4,1,f +17227,3022,320,2,f +17227,3023,322,4,f +17227,3023,191,9,f +17227,3023,0,3,f +17227,3023,4,4,f +17227,30237b,71,1,f +17227,3024,36,2,f +17227,3024,46,1,f +17227,3030,0,1,f +17227,3031,0,1,f +17227,30367c,0,2,f +17227,30367c,47,1,f +17227,3037,0,2,f +17227,3039,191,1,f +17227,3039,0,4,f +17227,3039,4,1,f +17227,3040b,71,2,f +17227,3040b,320,5,f +17227,30602,41,2,f +17227,3062b,0,1,f +17227,3062b,4,1,f +17227,3176,4,2,f +17227,32028,15,2,f +17227,32064a,14,2,f +17227,32124,0,2,f +17227,32187,0,2,f +17227,3623,72,4,f +17227,3666,71,2,f +17227,3700,4,1,f +17227,3701,14,2,f +17227,3705,4,1,f +17227,3705,0,1,f +17227,3709,72,2,f +17227,3710,4,3,f +17227,3710,14,3,f +17227,3710,2,4,f +17227,3749,19,1,f +17227,3795,0,1,f +17227,3832,0,1,f +17227,4006,0,1,f +17227,4032a,71,2,f +17227,4070,47,2,f +17227,4162,15,2,f +17227,42023,191,2,f +17227,4274,71,1,f +17227,44568,71,1,f +17227,44728,14,4,f +17227,44728,0,2,f +17227,4510,15,2,f +17227,4533,71,1,f +17227,4599b,4,1,f +17227,4740,41,6,f +17227,4740,82,1,f +17227,4740,52,2,f +17227,4740,0,2,f +17227,47456,0,1,f +17227,47457,4,1,f +17227,47457,297,2,f +17227,47759,72,1,f +17227,48336,297,1,f +17227,4865b,0,1,f +17227,50747,47,1,f +17227,51739,14,2,f +17227,54200,84,4,f +17227,54200,4,4,f +17227,55982,0,1,f +17227,60474,84,2,f +17227,60475b,71,1,f +17227,6091,191,4,f +17227,61252,0,5,f +17227,61409,72,2,f +17227,6141,4,3,f +17227,6141,41,7,f +17227,6141,52,2,f +17227,6215,4,1,f +17227,6232,71,1,f +17227,63864,71,2,f +17227,63864,4,2,f +17227,6558,1,2,f +17227,6641,4,1,f +17227,75937,0,1,f +17227,76766,1,1,f +17227,87544,47,2,f +17227,87552,71,2,f +17227,92099,72,2,f +17227,92410,71,1,f +17227,93273,191,4,f +17227,93274,0,2,f +17227,93606,14,2,f +17227,98585,0,2,f +17227,99206,0,4,f +17227,99207,71,4,f +17227,99780,72,2,f +17230,10052,0,1,f +17230,11203,72,2,f +17230,11211,4,1,f +17230,11477,308,1,f +17230,11477,1,1,f +17230,11477,0,2,f +17230,11833,0,2,f +17230,13965,70,1,f +17230,14395,70,2,f +17230,14704,71,1,f +17230,15100,0,2,f +17230,15391,0,3,f +17230,15392,72,5,f +17230,15403,0,2,f +17230,15456,71,1,f +17230,15535,4,2,f +17230,15571,72,1,f +17230,15712,71,1,f +17230,18166,0,1,f +17230,18277,72,1,f +17230,18575,0,1,f +17230,18587,14,1,f +17230,18588,0,1,f +17230,19159,0,1,f +17230,2357,70,2,f +17230,2412b,179,3,f +17230,2417,2,2,f +17230,2423,326,1,f +17230,3001,72,1,f +17230,3003,308,2,f +17230,30093,288,1,f +17230,30136,308,2,f +17230,30157,71,2,f +17230,30162,72,1,f +17230,3020,72,2,f +17230,3021,14,2,f +17230,3022,2,1,f +17230,3023,70,2,f +17230,3023,19,3,f +17230,30237b,70,1,f +17230,3031,27,2,f +17230,30565,2,1,f +17230,3068b,70,1,f +17230,3069b,0,2,f +17230,32187,71,4,f +17230,32593,0,1,f +17230,32809,72,1,f +17230,3460,71,1,f +17230,3460,4,2,f +17230,3626cpr2199,78,1,f +17230,3626cpr2200,30,1,f +17230,3660,72,1,f +17230,3666,0,3,f +17230,3713,71,1,f +17230,3795,72,3,f +17230,3832,72,1,f +17230,4150,72,1,f +17230,41769,0,1,f +17230,41770,0,1,f +17230,41879a,272,1,f +17230,42446,71,1,f +17230,43722,72,1,f +17230,43723,72,1,f +17230,4740,72,2,f +17230,47407,0,2,f +17230,47457,71,1,f +17230,47759,70,1,f +17230,4865a,4,2,f +17230,48933,72,1,f +17230,51739,4,5,f +17230,54200,0,2,f +17230,54200,4,4,f +17230,54200,71,3,f +17230,54383,71,1,f +17230,54383,1,1,f +17230,54384,71,1,f +17230,59900,0,1,f +17230,60478,72,2,f +17230,6106,71,4,f +17230,61252,72,1,f +17230,6141,182,8,f +17230,6141,47,1,f +17230,6141,41,16,f +17230,63864,70,2,f +17230,64567,71,1,f +17230,6636,25,1,f +17230,72454,72,2,f +17230,85861,0,2,f +17230,85861,71,4,f +17230,85984pr0002,72,1,f +17230,86208,72,1,f +17230,87083,72,1,f +17230,87087,0,5,f +17230,87752,40,1,f +17230,88072,71,2,f +17230,92280,71,2,f +17230,92946,72,2,f +17230,93273,71,1,f +17230,95199,0,2,f +17230,95199,72,1,f +17230,970c00,0,1,f +17230,970c00pr1252,320,1,f +17230,973pr3775c01,288,1,f +17230,973pr3776c01,320,1,f +17230,973pr3778c01,70,1,f +17230,99206,71,3,f +17236,11303,272,1,f +17236,15068pr0015,15,1,f +17236,23950,15,2,f +17236,2412b,0,1,f +17236,2431,33,1,f +17236,2441,0,1,f +17236,30028,0,4,f +17236,3021,1,1,f +17236,3022,71,2,f +17236,3023,0,3,f +17236,3024,1,2,f +17236,3024,36,2,f +17236,3024,36,1,t +17236,3024,1,1,t +17236,3623,1,2,f +17236,3626cpr1578,14,1,f +17236,3710,15,3,f +17236,3829c01,1,1,f +17236,3900,71,1,f +17236,4083,0,1,f +17236,54200,46,1,t +17236,54200,46,2,f +17236,59900,14,2,f +17236,60212,15,2,f +17236,60897,15,2,f +17236,61482,71,1,f +17236,61482,71,1,t +17236,74967,71,4,f +17236,93273,72,1,f +17236,93274,71,1,f +17236,970c00,272,1,f +17236,973pr3627,212,1,f +17236,98138,33,3,f +17236,98138,33,1,t +17256,11477,191,2,f +17256,14704,71,6,f +17256,15068pr0013,191,1,f +17256,15092,72,2,f +17256,15100,0,1,f +17256,15460,72,1,f +17256,15571,72,1,f +17256,15672,191,4,f +17256,18759,72,2,f +17256,22380,191,1,f +17256,22385,71,1,f +17256,22385pr0010,33,1,f +17256,22385pr0039,36,1,f +17256,22385pr0040,46,1,f +17256,22385pr0070,35,1,f +17256,22385pr076,47,1,f +17256,22388,57,2,f +17256,22395,179,1,f +17256,22890,72,2,f +17256,24101,179,1,f +17256,24104,179,1,f +17256,24128,191,1,f +17256,26601,72,2,f +17256,27167,191,1,f +17256,27168,72,1,f +17256,27255,71,1,f +17256,27259,57,1,f +17256,2780,0,1,f +17256,2817,71,1,f +17256,28192,72,2,f +17256,3003,71,1,f +17256,3023,25,1,f +17256,3024,191,2,f +17256,3062b,57,2,f +17256,32054,71,1,f +17256,32062,0,2,f +17256,3622,72,2,f +17256,3623,191,2,f +17256,3626cpr1784,14,1,f +17256,4081b,72,2,f +17256,41678,71,2,f +17256,43093,1,1,f +17256,50923,72,2,f +17256,50950,191,2,f +17256,54200,71,2,f +17256,54200,72,4,f +17256,59426,72,1,f +17256,60849,71,2,f +17256,85861,71,2,f +17256,85984,191,2,f +17256,92582,25,1,f +17256,93575,179,2,f +17256,99781,71,3,f +17277,10197,0,1,f +17277,10201,70,1,f +17277,11403pr0102c01,272,1,f +17277,11458,4,2,f +17277,11568pr0003,30,1,f +17277,11641,148,1,f +17277,11816pr0109,78,1,f +17277,14419,72,1,f +17277,14704,71,1,f +17277,14769,191,1,f +17277,15068,71,2,f +17277,15070,27,3,f +17277,15100,0,1,f +17277,15254,71,1,f +17277,15427,70,1,f +17277,15470,297,2,t +17277,15470,297,4,f +17277,15535,4,2,f +17277,18674,70,2,f +17277,20482,297,1,t +17277,20482,297,1,f +17277,22667,27,1,t +17277,22667,27,3,f +17277,22888,2,2,f +17277,23969,71,2,f +17277,2417,85,2,f +17277,2420,0,2,f +17277,2420,27,1,f +17277,24204,70,1,f +17277,2431,70,2,f +17277,24599,321,1,f +17277,2489,308,1,f +17277,2654,4,1,f +17277,26603,15,1,f +17277,2723,0,2,f +17277,2736,71,1,f +17277,2780,0,4,f +17277,2780,0,2,t +17277,2815,0,2,f +17277,28809,70,6,f +17277,28849pr0042,158,1,f +17277,3004,72,1,f +17277,3004,191,2,f +17277,30044,70,1,f +17277,30046,297,1,f +17277,3005,71,1,f +17277,3005,33,1,f +17277,30068pr0012,47,1,f +17277,30136,19,2,f +17277,30153,45,4,f +17277,3020,0,1,f +17277,3020,70,2,f +17277,3021,19,1,f +17277,3022,71,1,f +17277,3023,27,4,f +17277,3023,70,3,f +17277,3024,321,1,t +17277,3024,321,2,f +17277,3032,72,1,f +17277,3034,70,1,f +17277,3034,2,1,f +17277,30350a,70,1,f +17277,3036,2,1,f +17277,30374,0,1,f +17277,30565,2,1,f +17277,3062b,19,5,f +17277,3062b,46,1,f +17277,3068b,84,2,f +17277,3069bpr0130,322,1,f +17277,3069bpr0188,35,1,f +17277,3070b,15,1,f +17277,3070b,15,1,t +17277,31918,9999,1,f +17277,32034,4,1,f +17277,32123b,71,6,f +17277,32123b,71,1,t +17277,32316,4,2,f +17277,32474,4,1,f +17277,33051,4,1,f +17277,33291,30,2,t +17277,33291,10,3,f +17277,33291,30,5,f +17277,33291,10,2,t +17277,3623,321,2,f +17277,3626b,84,1,f +17277,3659,19,3,f +17277,3666,85,2,f +17277,3700,71,1,f +17277,3705,4,1,f +17277,3706,0,1,f +17277,3794b,15,1,f +17277,3795,191,1,f +17277,3960pr0019,41,1,f +17277,4032a,70,2,f +17277,4081b,321,2,f +17277,41677,0,2,f +17277,4185,72,2,f +17277,4274,71,1,f +17277,4274,71,1,t +17277,44294,71,1,f +17277,48092,84,1,f +17277,48336,19,1,f +17277,50950,10,3,f +17277,50950,158,2,f +17277,50950,321,4,f +17277,54200,85,1,t +17277,54200,321,1,t +17277,54200,321,2,f +17277,54200,71,4,f +17277,54200,85,2,f +17277,54200,71,2,t +17277,59900,297,4,f +17277,60481,71,3,f +17277,6091,27,1,f +17277,6141,85,1,t +17277,6141,85,6,f +17277,6231,71,1,f +17277,64644,297,3,f +17277,64647,182,1,f +17277,64647,182,1,t +17277,6541,72,2,f +17277,85984,323,1,f +17277,87079,72,1,f +17277,87079,191,1,f +17277,87087,19,3,f +17277,87994,297,2,f +17277,87994,297,1,t +17277,88072,70,1,f +17277,88292,19,4,f +17277,92456pr0219c01,78,1,f +17277,93092,191,1,f +17277,93273,70,1,f +17277,98138,15,3,f +17277,98138,1,1,f +17277,98138,27,3,f +17277,98138,15,2,t +17277,98138,27,2,t +17277,98138,1,1,t +17277,98138pr0024a,179,2,f +17277,98138pr0024a,179,1,t +17277,98138pr0073,0,1,t +17277,98138pr0073,0,1,f +17277,98138pr0074,84,3,f +17277,98138pr0074,84,1,t +17277,98283,84,4,f +17291,15571,321,1,f +17291,18031,179,1,f +17291,18649,0,1,f +17291,22380,1,1,f +17291,22393,57,1,f +17291,22402,57,1,f +17291,2412b,272,1,f +17291,2412b,57,2,f +17291,3626cpr1782,14,1,f +17291,3839b,72,1,f +17291,4497,179,1,f +17291,60470b,71,2,f +17291,76764,179,1,f +17291,970c00pr1140,118,1,f +17291,973pr3582c01,71,1,f +17291,99781,71,1,f +17323,14418,71,2,f +17323,14419,72,2,f +17323,14704,71,2,f +17323,15092,72,2,f +17323,15100,0,1,f +17323,15460,72,1,f +17323,15672,321,4,f +17323,22380,272,1,f +17323,22385pr0024,47,1,f +17323,22385pr0056,35,1,f +17323,22385pr0057,33,1,f +17323,22385pr0058,36,1,f +17323,22385pr0059,46,1,f +17323,22388,57,1,t +17323,22388,57,3,f +17323,22393,179,1,f +17323,26601,72,2,f +17323,27167,272,1,f +17323,27168,72,1,f +17323,27255,71,1,f +17323,2780,0,1,f +17323,2780,0,1,t +17323,27934,57,1,t +17323,27934,57,1,f +17323,28192,272,2,f +17323,29059,272,1,f +17323,3023,272,2,f +17323,3023,321,2,f +17323,3023,25,3,f +17323,3024,272,1,t +17323,3024,272,2,f +17323,3039,272,2,f +17323,3070b,321,2,f +17323,3070b,321,1,t +17323,32062,0,2,f +17323,3626cpr1782,14,1,f +17323,3660,72,2,f +17323,41678,71,2,f +17323,43093,1,2,f +17323,50923,72,2,f +17323,54200,321,1,t +17323,54200,272,6,f +17323,54200,321,4,f +17323,54200,272,1,t +17323,6141,179,1,t +17323,6141,179,1,f +17323,6541,72,1,f +17323,85984,321,2,f +17323,92582,25,1,f +17323,93575,179,2,f +17323,970c00pr1154,1,1,f +17323,973pr3604c01,1,1,f +17323,99780,72,1,f +17323,99781,71,1,f +17324,11476,71,2,f +17324,2654,57,1,f +17324,27255,71,1,f +17324,3068b,272,1,f +17325,11476,71,1,f +17325,11477,2,1,f +17325,14418,71,3,f +17325,14419,72,2,f +17325,14704,71,2,f +17325,15092,72,2,f +17325,15100,0,1,f +17325,15303,57,2,f +17325,15400,72,1,f +17325,15460,72,1,f +17325,15672,27,2,f +17325,20252,57,2,f +17325,22380,2,1,f +17325,22385,71,1,f +17325,22385pr0006,47,1,f +17325,22385pr0034,36,1,f +17325,22385pr0035,33,1,f +17325,22385pr0036,46,1,f +17325,22385pr0037,35,1,f +17325,22388,57,3,f +17325,22388,57,2,t +17325,22394,179,1,f +17325,2654,72,1,f +17325,26601,72,2,f +17325,27167,2,1,f +17325,27168,72,1,f +17325,27255,71,1,f +17325,27263,27,2,f +17325,2736,71,1,f +17325,2780,0,1,t +17325,2780,0,1,f +17325,29063,2,1,f +17325,3022,2,2,f +17325,3023,2,2,f +17325,3023,25,3,f +17325,3023,27,2,f +17325,3039,2,2,f +17325,32062,0,2,f +17325,3626cpr1781,14,1,f +17325,3710,2,1,f +17325,41678,71,2,f +17325,43093,1,1,f +17325,50923,72,2,f +17325,53454,57,1,t +17325,53454,57,2,f +17325,54200,2,1,t +17325,54200,2,2,f +17325,60470b,2,1,f +17325,61409,72,2,f +17325,85984,27,2,f +17325,90194,71,1,f +17325,92280,71,1,f +17325,92582,25,1,f +17325,93575,179,2,f +17325,970c00pr1157,2,1,f +17325,973pr3607c01,2,1,f +17325,98397,71,1,f +17325,99207,0,1,f +17326,11458,72,6,f +17326,11477,272,2,f +17326,11477,25,4,f +17326,14682,71,2,f +17326,15068,72,2,f +17326,15461,0,2,f +17326,15462,70,1,f +17326,15712,72,4,f +17326,18041,179,1,t +17326,18041,179,1,f +17326,18671,272,2,f +17326,20482,297,2,f +17326,20482,297,1,t +17326,22385,15,2,f +17326,22385pr0065,47,1,f +17326,22392,72,2,f +17326,22401,57,1,f +17326,22408,179,1,f +17326,22410,148,2,f +17326,22483,57,1,f +17326,24078,71,1,f +17326,24122,0,2,f +17326,2412b,71,2,f +17326,24201,71,4,f +17326,24316,70,2,f +17326,2446,15,1,f +17326,2654,71,1,f +17326,26601,272,4,f +17326,27256,41,1,f +17326,27257,57,1,t +17326,27257,57,2,f +17326,27263,15,2,f +17326,27263,272,4,f +17326,2780,0,4,f +17326,2780,0,1,t +17326,28350,179,1,f +17326,28376,85,1,f +17326,2853,71,2,f +17326,28598,179,2,f +17326,28809,71,2,f +17326,28978,72,2,f +17326,2921,71,2,f +17326,3004,272,2,f +17326,3005,272,2,f +17326,3005,72,2,f +17326,3020,272,2,f +17326,3022,71,1,f +17326,3023,272,3,f +17326,3023,25,3,f +17326,3024,15,1,t +17326,3024,15,2,f +17326,30350b,72,1,f +17326,30374,0,2,f +17326,30381,85,1,f +17326,3039,272,2,f +17326,3069b,15,2,f +17326,3070bpr0156,15,1,t +17326,3070bpr0156,15,1,f +17326,32002,19,1,t +17326,32002,19,1,f +17326,32013,25,1,f +17326,32062,4,1,f +17326,32064a,0,2,f +17326,32124,0,2,f +17326,32449,15,3,f +17326,32531,71,1,f +17326,33299a,0,2,f +17326,3460,71,2,f +17326,3622,71,2,f +17326,3626cpr1783,14,1,f +17326,3626cpr1785,179,1,f +17326,3626cpr2062,0,1,f +17326,3660,71,2,f +17326,3665,71,2,f +17326,3700,72,1,f +17326,3701,71,2,f +17326,3705,0,1,f +17326,3710,15,1,f +17326,3710,272,4,f +17326,3795,15,1,f +17326,3830,72,2,f +17326,3831,72,2,f +17326,3844,15,1,f +17326,3894,72,2,f +17326,3941,57,2,f +17326,3957a,57,2,f +17326,41531,148,2,f +17326,41769,15,2,f +17326,41770,15,2,f +17326,4274,1,2,f +17326,4274,1,1,t +17326,4287,72,2,f +17326,43719,272,1,f +17326,4519,71,1,f +17326,4740,57,2,f +17326,48336,71,2,f +17326,48729b,71,1,t +17326,48729b,71,3,f +17326,50304,272,1,f +17326,50305,272,1,f +17326,54200,25,1,t +17326,54200,25,2,f +17326,59900,179,2,f +17326,59900,57,2,f +17326,60471,25,1,f +17326,60474,71,2,f +17326,60475b,71,2,f +17326,60476,0,2,f +17326,61184,71,2,f +17326,6141,57,4,f +17326,6141,57,1,t +17326,63965,71,2,f +17326,64644,0,1,f +17326,6541,15,2,f +17326,6558,1,2,f +17326,6636,25,2,f +17326,73983,0,2,f +17326,85861,15,1,t +17326,85861,15,3,f +17326,87580,272,1,f +17326,92946,0,2,f +17326,93062c02,179,2,f +17326,970c00pr1127,71,1,f +17326,973pr3559c01,71,1,f +17326,973pr3593c01,72,1,f +17326,98834,15,2,f +17336,11476,15,1,f +17336,2432,15,1,f +17336,2435,2,1,f +17336,2441,0,1,f +17336,3020,27,1,f +17336,3022,71,1,f +17336,3062b,41,1,f +17336,3068bpr0245,14,1,f +17336,3069b,33,1,f +17336,3622,4,2,f +17336,3626bpr0645,14,1,f +17336,3829c01,15,1,f +17336,3834,15,1,f +17336,44674,4,2,f +17336,4599b,14,1,f +17336,4624,15,4,f +17336,59900,182,1,f +17336,60478,71,2,f +17336,6126b,182,1,f +17336,87414,0,4,f +17336,970c00,0,1,f +17336,973pr2189c01,0,1,f +17336,99206,4,1,f +17349,10197,0,2,f +17349,11303,28,1,f +17349,11476,71,2,f +17349,11477,320,2,f +17349,13793,72,1,f +17349,15068,320,3,f +17349,15303,36,4,f +17349,15400,72,2,f +17349,15573,14,2,f +17349,15573,320,10,f +17349,18651,0,1,f +17349,18654,72,2,f +17349,19888,379,1,f +17349,21778,0,1,f +17349,22889,0,1,f +17349,23930,15,4,f +17349,24122,0,2,f +17349,2412b,72,3,f +17349,2412b,320,4,f +17349,2412b,14,1,f +17349,2420,0,14,f +17349,2420,72,2,f +17349,2431pr0017,14,1,f +17349,2432,0,2,f +17349,2432,14,1,f +17349,2540,72,2,f +17349,2654,47,4,f +17349,2654,72,4,f +17349,2654,0,1,f +17349,2780,0,2,f +17349,2853,71,3,f +17349,29450,71,1,f +17349,298c02,14,2,f +17349,3005,19,2,f +17349,3009,0,2,f +17349,3020,320,3,f +17349,3021,15,4,f +17349,3021,71,4,f +17349,3022,15,4,f +17349,3022,72,2,f +17349,3023,47,2,f +17349,3023,320,4,f +17349,3023,71,3,f +17349,3023,0,2,f +17349,3024,320,4,f +17349,3024,15,8,f +17349,3031,72,1,f +17349,3032,320,1,f +17349,3034,71,3,f +17349,3034,0,1,f +17349,30552,72,3,f +17349,30553,71,1,f +17349,3062b,14,1,f +17349,3069b,0,1,f +17349,32000,71,2,f +17349,32028,15,4,f +17349,32054,0,4,f +17349,32054,71,2,f +17349,32059,320,1,f +17349,32062,4,6,f +17349,32062,0,4,f +17349,32064a,72,6,f +17349,32064a,0,1,f +17349,32073,71,2,f +17349,32123b,14,2,f +17349,32123b,71,2,f +17349,32324,71,1,f +17349,3460,15,2,f +17349,3626cpr1363,78,1,f +17349,3626cpr1709,78,1,f +17349,3626cpr2164,70,1,f +17349,3665,1,2,f +17349,3666,72,1,f +17349,3666,320,4,f +17349,3710,0,4,f +17349,3747a,15,4,f +17349,3794b,15,2,f +17349,3795,0,1,f +17349,3795,15,4,f +17349,3795,320,2,f +17349,3899,4,1,f +17349,3941,46,2,f +17349,4006,0,1,f +17349,4070,71,2,f +17349,4081b,72,4,f +17349,41677,0,2,f +17349,41764,71,1,f +17349,41765,71,1,f +17349,4185,15,4,f +17349,42023,15,2,f +17349,4274,71,1,f +17349,4287,15,2,f +17349,4345b,71,1,f +17349,4346,71,1,f +17349,43719,0,1,f +17349,43722,15,1,f +17349,43723,15,1,f +17349,44728,72,10,f +17349,47507,72,1,f +17349,47753,320,1,f +17349,4865b,14,2,f +17349,50373,320,1,f +17349,50955,15,1,f +17349,50956,15,1,f +17349,51739,71,2,f +17349,51739,72,1,f +17349,54200,320,4,f +17349,54200,15,4,f +17349,54383,15,2,f +17349,54383,72,1,f +17349,54384,72,1,f +17349,54384,15,2,f +17349,58247,0,1,f +17349,59443,0,4,f +17349,6020,14,1,f +17349,60470a,0,2,f +17349,60471,15,2,f +17349,60483,71,2,f +17349,60897,14,4,f +17349,6141,36,1,f +17349,6141,47,2,f +17349,6141,46,2,f +17349,6141,34,1,f +17349,61678,15,4,f +17349,6179,320,1,f +17349,63864,71,2,f +17349,64567,0,2,f +17349,6541,72,2,f +17349,6553,72,3,f +17349,85984,320,8,f +17349,85984,72,3,f +17349,87580,14,2,f +17349,87994,0,2,f +17349,90194,320,1,f +17349,92279,40,1,f +17349,92280,71,2,f +17349,92593,15,2,f +17349,92738,0,1,f +17349,93095,0,1,f +17349,93273,71,2,f +17349,93606,15,4,f +17349,96874,25,1,f +17349,970c00,71,1,f +17349,970c00pr1224,2,1,f +17349,970c00pr1227,28,1,f +17349,973pr3730c01,84,1,f +17349,973pr3735c01,28,1,f +17349,98138,46,4,f +17349,98138,71,2,f +17349,99021,72,2,f +17349,99207,71,4,f +17349,99781,15,1,f +17356,10830pat0001,0,1,f +17356,11055,15,1,f +17356,15573,71,12,f +17356,19121,0,3,f +17356,20877,0,1,f +17356,2431,0,3,f +17356,2431,308,2,f +17356,24946,321,1,f +17356,24946,15,1,f +17356,24946,71,1,f +17356,2496,0,1,f +17356,2540,72,1,f +17356,3003,28,1,f +17356,3004,28,6,f +17356,30136,308,8,f +17356,3020,72,1,f +17356,3020,28,1,f +17356,3020,70,2,f +17356,3021,71,1,f +17356,3022,4,1,f +17356,3023,308,1,f +17356,3023,71,8,f +17356,3036,27,1,f +17356,3068b,71,3,f +17356,3069b,191,1,f +17356,33172,25,2,f +17356,33183,10,1,t +17356,33183,10,3,f +17356,33291,31,1,t +17356,33291,30,1,t +17356,33291,212,2,f +17356,33291,191,1,t +17356,33291,31,2,f +17356,33291,212,1,t +17356,33291,191,2,f +17356,33291,30,2,f +17356,3626bpr0677,14,1,f +17356,3626cpr1614,14,1,f +17356,3710,71,3,f +17356,3937,0,1,f +17356,3958,2,2,f +17356,4032a,19,2,f +17356,4032a,70,2,f +17356,4150,72,2,f +17356,41879a,84,1,f +17356,4345b,4,1,f +17356,4346,4,1,f +17356,58176,15,1,f +17356,59900,46,2,f +17356,6134,0,1,f +17356,6141,71,6,f +17356,6141,0,6,f +17356,6141,15,1,t +17356,6141,10,1,t +17356,6141,71,1,t +17356,6141,15,3,f +17356,6141,0,1,t +17356,6141,10,8,f +17356,85984,308,1,f +17356,85984,4,4,f +17356,87580,28,1,f +17356,87991,484,1,f +17356,93092,191,1,f +17356,95342pr0001,15,1,f +17356,970c00,322,1,f +17356,973pr2925c01,27,1,f +17356,973pr3493c01,272,1,f +17356,98283,19,12,f +17356,98288,27,1,f +17367,10201,0,1,f +17367,10830pat0001,0,1,f +17367,11055,0,2,f +17367,11090,70,3,f +17367,11211,2,2,f +17367,11408pr0102c01,78,1,f +17367,11476,71,1,f +17367,11477,158,4,f +17367,11477,70,6,f +17367,11477,272,6,f +17367,11602pr0004,191,1,f +17367,11816pr0026,84,1,f +17367,11818pr0007,78,1,f +17367,13547,71,1,f +17367,13965,272,1,f +17367,14716,71,2,f +17367,14716,0,1,f +17367,14769,71,5,f +17367,14769,85,3,f +17367,14769pr1042,27,1,f +17367,15068,272,1,f +17367,15068,85,7,f +17367,15070,27,25,f +17367,15100,0,3,f +17367,15254,71,1,f +17367,15332,71,2,f +17367,15332,70,2,f +17367,15535,19,4,f +17367,15571,71,1,f +17367,15573,70,5,f +17367,15573,0,3,f +17367,15712,14,1,f +17367,18653,272,3,f +17367,18674,70,3,f +17367,18980,85,2,f +17367,19203pr0001,308,1,f +17367,19204pr0001,320,1,f +17367,20310,70,4,f +17367,20381pr0001,26,1,f +17367,20482,70,1,t +17367,20482,70,2,f +17367,22388,45,4,t +17367,22388,45,12,f +17367,22484,72,2,f +17367,22886,71,2,f +17367,22888,2,2,f +17367,2357,70,1,f +17367,2357,71,1,f +17367,2397,0,1,f +17367,24086,84,1,f +17367,2412b,0,3,f +17367,2417,26,5,f +17367,2420,70,4,f +17367,2420,0,2,f +17367,24201,14,2,f +17367,2423,26,2,f +17367,24246,25,1,t +17367,24246,25,4,f +17367,24246,73,1,t +17367,24246,73,4,f +17367,24316,70,1,f +17367,2431pr0081,84,1,f +17367,2453b,0,1,f +17367,25214,148,1,f +17367,2540,0,2,f +17367,26047,0,1,f +17367,2654,4,3,f +17367,2780,0,1,f +17367,2780,0,1,t +17367,28387,272,1,f +17367,28809,71,4,f +17367,28849pr0045,226,1,f +17367,28849pr0046,31,1,f +17367,28849pr0047,323,1,f +17367,30000,72,1,f +17367,3003,71,3,f +17367,3003,72,3,f +17367,3004,158,7,f +17367,30044,70,2,f +17367,30046,0,2,f +17367,3005,158,7,f +17367,3005,70,1,f +17367,3005,45,6,f +17367,30068pr0012,47,1,f +17367,30099,272,1,f +17367,3010,70,3,f +17367,3010,2,3,f +17367,30153,47,1,f +17367,30153,45,5,f +17367,3020,70,3,f +17367,3020,85,1,f +17367,3020,73,2,f +17367,3020,272,2,f +17367,3021,70,1,f +17367,3023,272,3,f +17367,3023,71,7,f +17367,3023,158,11,f +17367,3023,322,1,f +17367,3024,71,1,t +17367,3024,71,2,f +17367,3024,25,1,t +17367,3024,25,2,f +17367,3024,0,10,f +17367,3024,0,3,t +17367,30259,70,1,f +17367,3028,2,2,f +17367,3029,70,1,f +17367,3030,70,1,f +17367,3031,70,1,f +17367,3034,70,2,f +17367,30340,70,1,f +17367,30350b,84,1,f +17367,30357,85,7,f +17367,30357,2,2,f +17367,30357,70,1,f +17367,30367c,0,1,f +17367,30385,35,2,f +17367,3039,71,2,f +17367,3040b,70,1,f +17367,3040b,71,2,f +17367,3045,85,2,f +17367,3062b,41,1,f +17367,3062b,0,3,f +17367,3062b,85,2,f +17367,3062b,70,2,f +17367,3065,36,3,f +17367,3068b,15,2,f +17367,3068bpr0331,19,1,f +17367,3069b,26,2,f +17367,3069b,31,1,f +17367,3069b,14,1,f +17367,3069b,323,1,f +17367,3069b,2,2,f +17367,3069b,85,2,f +17367,3069b,25,3,f +17367,3069bpr0187,35,1,f +17367,3070bpr0147,71,1,t +17367,3070bpr0147,71,1,f +17367,3176,0,1,f +17367,31875,27,1,f +17367,31921,9999,1,f +17367,32000,71,1,f +17367,32014,0,1,f +17367,32028,70,2,f +17367,32062,0,2,f +17367,32064a,72,2,f +17367,32064a,0,1,f +17367,3245c,0,2,f +17367,32474,27,2,f +17367,32474pr1013,85,3,f +17367,32530,0,2,f +17367,33057,484,1,f +17367,33183,10,1,t +17367,33183,10,2,f +17367,33291,27,4,f +17367,33291,27,1,t +17367,3460,70,1,f +17367,3622,71,1,f +17367,3622,70,4,f +17367,3623,71,1,f +17367,3623,0,1,f +17367,3623,70,1,f +17367,3623,158,2,f +17367,3665,272,4,f +17367,3700,71,4,f +17367,3700,70,2,f +17367,3705,0,1,f +17367,3710,25,2,f +17367,3710,158,3,f +17367,3710,70,4,f +17367,3710,73,4,f +17367,3749,19,4,f +17367,3795,0,2,f +17367,3832,70,1,f +17367,3835,0,1,f +17367,3846pr0007,0,1,f +17367,3899,45,1,f +17367,3900,15,1,f +17367,3937,0,3,f +17367,3941,70,1,f +17367,3958,2,1,f +17367,4032a,70,8,f +17367,40378,272,3,f +17367,40379,27,2,f +17367,40379,272,1,f +17367,4070,25,1,f +17367,4081b,0,2,f +17367,41539,2,1,f +17367,4274,71,1,t +17367,4274,71,1,f +17367,4460b,71,3,f +17367,4460b,70,3,f +17367,4460b,158,2,f +17367,44728,4,3,f +17367,4497,308,1,f +17367,4738a,84,1,f +17367,4739a,84,1,f +17367,4740,35,2,f +17367,48336,2,3,f +17367,48336,71,1,f +17367,4865b,14,2,f +17367,4865b,2,1,f +17367,48729b,0,3,t +17367,48729b,0,6,f +17367,49668,0,4,f +17367,50745,85,1,f +17367,50950,158,2,f +17367,53451,4,3,t +17367,53451,4,12,f +17367,54200,182,1,t +17367,54200,182,1,f +17367,54200,71,2,t +17367,54200,70,4,f +17367,54200,70,1,t +17367,54200,71,7,f +17367,59900,71,1,f +17367,59900,26,1,f +17367,6003,2,2,f +17367,60470a,0,1,f +17367,60470a,2,3,f +17367,60475a,73,1,f +17367,60478,0,6,f +17367,60481,70,2,f +17367,60481,71,4,f +17367,60483,0,1,f +17367,60583b,71,2,f +17367,60593,70,1,f +17367,60594,70,1,f +17367,60607,0,2,f +17367,60897,25,1,f +17367,60897,70,5,f +17367,60897,0,2,f +17367,6091,70,2,f +17367,6091,272,6,f +17367,6134,0,1,f +17367,6134,71,2,f +17367,6141,85,1,f +17367,6141,4,4,f +17367,6141,4,3,t +17367,6141,85,1,t +17367,61780,70,1,f +17367,6182,71,2,f +17367,6182,158,3,f +17367,6215,2,2,f +17367,62360,85,1,f +17367,62361,70,2,f +17367,6266,0,1,t +17367,6266,0,1,f +17367,63864,19,2,f +17367,64644,308,1,f +17367,64647,182,1,f +17367,64647,182,1,t +17367,64728,4,1,f +17367,64951,84,1,f +17367,6536,72,1,f +17367,6541,72,2,f +17367,6541,0,1,f +17367,6587,28,1,f +17367,75904,71,1,f +17367,85984,15,4,f +17367,85984,0,3,f +17367,87079,2,2,f +17367,87079,30,2,f +17367,87083,72,1,f +17367,87087,0,1,f +17367,87087,73,1,f +17367,87087,70,2,f +17367,87544,0,1,f +17367,87580,0,2,f +17367,87747,4,3,t +17367,87747,4,5,f +17367,87994,10,1,t +17367,87994,10,1,f +17367,87994,70,3,t +17367,87994,70,4,f +17367,92280,0,6,f +17367,92456pr0216c01,84,1,f +17367,92819pr0103c01,288,1,f +17367,93160,15,1,t +17367,93160,15,1,f +17367,93273,73,1,f +17367,93273,25,1,f +17367,93273,0,3,f +17367,95228,34,1,f +17367,96874,25,1,f +17367,98138,34,1,t +17367,98138,34,1,f +17367,98138,71,1,t +17367,98138,36,1,f +17367,98138,27,2,t +17367,98138,71,3,f +17367,98138,36,1,t +17367,98138,15,1,f +17367,98138,15,1,t +17367,98138,27,6,f +17367,98138pr0017,29,1,t +17367,98138pr0017,29,2,f +17367,98138pr0033,34,1,t +17367,98138pr0033,34,1,f +17367,98138pr0048,70,1,t +17367,98138pr0048,70,2,f +17367,98138pr0073,0,1,t +17367,98138pr0073,0,1,f +17367,98283,71,1,f +17367,98383,321,1,f +17367,98397,71,1,f +17367,98560,71,1,f +17367,98560,2,1,f +17367,99780,14,1,f +17367,99780,0,1,f +17367,99781,0,1,f +17370,10201,0,1,f +17370,11055,15,1,f +17370,11153,0,2,f +17370,11215,15,2,f +17370,11303,272,1,f +17370,11458,0,2,f +17370,11477,0,6,f +17370,15068,71,2,f +17370,15068,0,9,f +17370,15470,297,1,t +17370,15470,297,1,f +17370,15573,297,1,f +17370,18649,0,1,f +17370,18654,179,2,f +17370,18654,179,1,t +17370,18972,40,1,f +17370,18974,4,2,f +17370,18974,1,2,f +17370,18975,72,2,f +17370,18976,297,4,f +17370,18976,179,4,f +17370,18977,0,8,f +17370,18980,1,1,f +17370,18980,15,1,f +17370,23443,0,2,f +17370,2412b,297,4,f +17370,24151,28,1,f +17370,2420,15,2,f +17370,2420,0,4,f +17370,2420,71,4,f +17370,24299,4,2,f +17370,24307,4,2,f +17370,24308,72,1,f +17370,2446,15,1,f +17370,2446,1,1,f +17370,2447,47,2,t +17370,2447,47,2,f +17370,2540,72,1,f +17370,2877,71,2,f +17370,29119,1,1,f +17370,29120,1,1,f +17370,3001,288,1,f +17370,3001,72,1,f +17370,30029,4,1,f +17370,3004,288,6,f +17370,3005,0,8,f +17370,3020,72,1,f +17370,3020,15,2,f +17370,3021,288,1,f +17370,3021,71,3,f +17370,3022,0,2,f +17370,3022,4,1,f +17370,3023,4,4,f +17370,3023,1,4,f +17370,3023,71,2,f +17370,3023,0,3,f +17370,3024,0,2,f +17370,3024,46,6,f +17370,3024,1,2,f +17370,3024,1,1,t +17370,3024,4,2,f +17370,3024,46,1,t +17370,3024,4,1,t +17370,3024,0,1,t +17370,3032,72,2,f +17370,3035,15,1,f +17370,30357,0,2,f +17370,3065,40,1,f +17370,3069b,4,4,f +17370,3069b,1,1,f +17370,3069b,15,2,f +17370,3069b,0,3,f +17370,3070b,0,2,f +17370,3070b,1,2,f +17370,3070b,1,1,t +17370,3070b,0,1,t +17370,30897,9999,1,f +17370,30903,40,1,f +17370,32000,4,4,f +17370,3623,71,4,f +17370,3626cpr1087,14,1,f +17370,3626cpr1664,14,1,f +17370,3626cpr2088a,14,1,f +17370,3666,1,1,f +17370,3666,0,3,f +17370,3700,71,8,f +17370,3706,0,2,f +17370,3710,14,2,f +17370,3710,0,7,f +17370,3749,19,4,f +17370,3794b,15,6,f +17370,3795,0,4,f +17370,3795,4,1,f +17370,3829c01,71,2,f +17370,3937,0,6,f +17370,3938,0,1,f +17370,4006,0,1,f +17370,4032a,71,3,f +17370,4070,1,6,f +17370,4070,71,2,f +17370,4274,71,2,f +17370,4274,1,1,t +17370,4274,1,2,f +17370,4274,71,1,t +17370,43722,4,1,f +17370,43723,4,1,f +17370,48336,0,2,f +17370,4865b,40,1,f +17370,49668,15,2,f +17370,50950,0,4,f +17370,50950,4,2,f +17370,51739,15,1,f +17370,51739,1,1,f +17370,52501,0,1,f +17370,54200,47,2,f +17370,54200,46,1,t +17370,54200,15,4,f +17370,54200,15,1,t +17370,54200,0,1,t +17370,54200,0,2,f +17370,54200,1,2,f +17370,54200,1,1,t +17370,54200,46,2,f +17370,59349,15,1,f +17370,60476,0,2,f +17370,60478,0,2,f +17370,60481,4,2,f +17370,6134,0,4,f +17370,6134,71,1,f +17370,6141,72,22,f +17370,6141,36,4,f +17370,6141,72,1,t +17370,6141,36,1,t +17370,6231,0,2,f +17370,6231,71,2,f +17370,64644,297,3,f +17370,6541,4,2,f +17370,6636,15,3,f +17370,6636,0,3,f +17370,85080,15,2,f +17370,85080,0,2,f +17370,85861,71,4,f +17370,85861,71,1,t +17370,85984,0,4,f +17370,87079,0,1,f +17370,87087,4,4,f +17370,87552,71,1,f +17370,87609,72,2,f +17370,87994,0,1,f +17370,87994,0,1,t +17370,92280,0,2,f +17370,93061,72,1,t +17370,93061,72,2,f +17370,93095,0,2,f +17370,93274,71,1,f +17370,93606,1,3,f +17370,970c00,15,1,f +17370,970c00,19,1,f +17370,970c00pr1247,15,1,f +17370,973pr3282c01,15,1,f +17370,973pr3685c01,15,1,f +17370,973pr3770c01,19,1,f +17370,98138,71,1,t +17370,98138,71,2,f +17370,98282,0,4,f +17370,98560,1,1,f +17370,99207,1,2,f +17370,99780,15,2,f +17370,99780,4,2,f +17375,3004,322,5,f +17375,3004,30,5,f +17375,3004,26,5,f +17375,3005,27,5,f +17375,33291,26,5,f +17375,33291,191,5,f +17375,3957b,85,5,f +17375,4495b,5,5,f +17375,51739,27,5,f +17375,85984,15,5,f +17375,90194,15,5,f +17375,99206,71,5,f +17402,10446,14,1,f +17402,15515,322,1,f +17402,40666,25,1,f +17402,6448,14,1,f +17405,12592,0,1,f +17405,12758,14,1,f +17405,13358,0,2,f +17405,13531pr0002,1,1,f +17405,14269,15,2,f +17405,15965,27,2,f +17405,19796,0,2,f +17405,23717,191,2,f +17405,3437,484,2,f +17405,3437,27,1,f +17405,3664,321,1,f +17405,40666,10,1,f +17405,40666,1,1,f +17405,4543,4,2,f +17405,58086,70,1,f +17405,63710pr0013,19,1,f +17405,6377,72,1,f +17405,6378,72,12,f +17405,6391,72,1,f +17405,6446,25,3,f +17405,6510,10,2,f +17405,75121pr0025,4,1,f +17405,92453,321,1,f +17405,98223,10,1,f +17405,98224,10,1,f +17406,15712,1,2,f +17406,3024,1,2,f +17406,3070b,182,1,f +17406,4733,71,2,f +17406,49668,179,1,f +17406,54200,182,1,f +17406,54200,71,2,f +17406,58176,182,2,f +17406,6141,71,2,f +17406,6141,0,1,f +17406,64644,0,2,f +17407,11477,4,1,f +17407,15712,0,1,f +17407,3023,272,2,f +17407,3069b,272,2,f +17407,3070b,4,1,f +17407,3665,1,1,f +17407,3710,272,1,f +17407,4081b,1,1,f +17407,44728,1,1,f +17407,54200,272,5,f +17407,59900,71,1,f +17407,60478,1,2,f +17407,61252,1,1,f +17407,6141,4,2,f +17407,87087,1,1,f +17407,99207,1,1,f +17408,15712,71,1,f +17408,15712,70,2,f +17408,3020,0,2,f +17408,3024,70,1,f +17408,30374,0,1,f +17408,3710,72,1,f +17408,52107,0,2,f +17408,54200,182,2,f +17408,54200,70,2,f +17408,60478,0,2,f +17408,61252,0,2,f +17408,6126b,182,2,f +17408,6141,36,2,f +17408,63868,0,2,f +17408,85984,0,2,f +17408,98138,182,1,f +17408,98138pr0010,179,1,f +17408,99206,0,2,f +17409,15712,0,1,f +17409,3021,71,1,f +17409,3023,182,1,f +17409,32523,72,2,f +17409,3710,71,1,f +17409,3894,1,1,f +17409,4081b,71,3,f +17409,42610,71,2,f +17409,49668,179,1,f +17409,54200,182,1,f +17409,54200,1,2,f +17409,58176,182,2,f +17409,6558,1,3,f +17410,15573,27,2,f +17410,3020,2,1,f +17410,3021,85,2,f +17410,3032,2,1,f +17410,3036,2,1,f +17410,3062b,321,4,f +17410,3069b,29,2,f +17410,33291,5,2,f +17410,33291,10,2,f +17410,3710,29,1,f +17410,85080,15,8,f +17410,85984,29,4,f +17410,87079,2,2,f +17410,98389pr0002,19,1,f +17420,10050,-1,1,f +17420,10124,4,1,f +17420,10154,4,1,f +17420,10201,0,4,f +17420,10247,0,3,f +17420,10928,72,3,f +17420,11203,72,2,f +17420,11203,0,1,f +17420,11213,27,1,f +17420,11437,0,1,f +17420,11458,72,2,f +17420,11476,71,1,f +17420,11476,0,1,f +17420,11477,4,4,f +17420,11477,72,2,f +17420,11477,0,2,f +17420,11477,321,4,f +17420,13547,484,6,f +17420,13547,0,4,f +17420,13548,71,2,f +17420,13564,4,4,f +17420,14417,72,2,f +17420,14418,71,2,f +17420,14419,72,8,f +17420,14704,71,2,f +17420,14719,71,2,f +17420,14769pr1026,297,1,f +17420,15068,4,1,f +17420,15068,0,2,f +17420,15068,72,4,f +17420,15070,15,4,f +17420,15100,0,1,f +17420,15207,70,2,f +17420,15208,0,3,f +17420,15209,15,4,f +17420,15392,70,1,f +17420,15535,4,2,f +17420,15535,72,1,f +17420,15573,0,2,f +17420,15573,321,4,f +17420,15573,4,4,f +17420,15672,71,2,f +17420,15705,308,1,f +17420,15706,70,2,f +17420,15706,0,4,f +17420,15712,70,4,f +17420,15712,297,6,f +17420,15712,72,1,f +17420,15976,0,4,f +17420,16577,15,2,f +17420,16770,41,4,f +17420,16770,182,4,f +17420,18646,27,2,f +17420,18653,15,4,f +17420,18654,0,2,f +17420,18674,70,3,f +17420,19179,148,2,f +17420,19857pat0001,320,1,f +17420,19857pat0001,-1,1,f +17420,20105,0,1,f +17420,22385,71,1,f +17420,22385,0,11,f +17420,22888,326,2,f +17420,23443,0,2,f +17420,2357,72,8,f +17420,23986,15,1,f +17420,24122,0,1,f +17420,2412b,71,2,f +17420,2417,288,1,f +17420,2419,0,1,f +17420,2420,70,4,f +17420,2420,0,10,f +17420,2420,72,2,f +17420,24201,71,2,f +17420,24299,321,4,f +17420,24299,4,4,f +17420,24307,321,6,f +17420,24307,4,5,f +17420,24316,70,4,f +17420,2445,0,2,f +17420,24484,-1,1,f +17420,2449,70,2,f +17420,2450,72,2,f +17420,2450,28,8,f +17420,2454a,15,5,f +17420,24586,148,1,f +17420,24588,148,1,f +17420,2465,0,1,f +17420,25276,-1,1,f +17420,25277,-1,1,f +17420,26047,0,7,f +17420,2654,72,2,f +17420,26603,0,2,f +17420,27058,0,1,f +17420,27507,70,8,f +17420,2780,0,4,f +17420,28587,-1,1,f +17420,28588,4,4,f +17420,28652,72,1,f +17420,2877,15,10,f +17420,3001,4,2,f +17420,3001,322,2,f +17420,3001,0,1,f +17420,3002,72,2,f +17420,3003,71,2,f +17420,3004,321,3,f +17420,3004,4,1,f +17420,3005,15,4,f +17420,3005,72,4,f +17420,3008,70,1,f +17420,3010,71,5,f +17420,30115,4,4,f +17420,30136,70,2,f +17420,30136,84,4,f +17420,30137,70,2,f +17420,30145,71,1,f +17420,30173b,297,6,f +17420,30173b,179,6,f +17420,3020,71,1,f +17420,3020,27,2,f +17420,3020,320,1,f +17420,3020,0,4,f +17420,3021,4,1,f +17420,3021,28,2,f +17420,3021,0,8,f +17420,3021,72,2,f +17420,3021,25,2,f +17420,3022,71,3,f +17420,3022,14,1,f +17420,3022,4,5,f +17420,3022,0,3,f +17420,3022,72,1,f +17420,3022,320,3,f +17420,3023,41,4,f +17420,3023,326,9,f +17420,3023,4,10,f +17420,3023,72,2,f +17420,3023,0,14,f +17420,3023,182,4,f +17420,3023,321,12,f +17420,3023,71,4,f +17420,3024,70,2,f +17420,3024,326,4,f +17420,3024,28,4,f +17420,3028,0,2,f +17420,3030,72,3,f +17420,3032,71,2,f +17420,3032,28,2,f +17420,3034,70,2,f +17420,3034,0,7,f +17420,30350a,4,2,f +17420,30357,0,2,f +17420,3036,0,1,f +17420,30367c,71,1,f +17420,30374,0,1,f +17420,30377,0,4,f +17420,30377,308,1,f +17420,30383,72,2,f +17420,30383,0,2,f +17420,3039,0,2,f +17420,3039,72,3,f +17420,3040b,15,4,f +17420,3049c,0,4,f +17420,30503,70,2,f +17420,3062b,41,1,f +17420,3062b,72,6,f +17420,3062b,36,1,f +17420,3068b,4,1,f +17420,3069b,0,3,f +17420,3069b,71,2,f +17420,3069b,4,3,f +17420,3069b,70,2,f +17420,32000,71,4,f +17420,32013,71,3,f +17420,32028,70,1,f +17420,32034,308,3,f +17420,32062,4,1,f +17420,32064a,0,2,f +17420,32064a,71,1,f +17420,32072,0,6,f +17420,3245b,71,3,f +17420,32530,0,1,f +17420,33461,0,1,f +17420,3460,0,13,f +17420,3460,71,1,f +17420,3622,72,4,f +17420,3623,0,4,f +17420,3633,72,2,f +17420,3659,72,1,f +17420,3660,0,2,f +17420,3665,15,4,f +17420,3665,71,2,f +17420,3666,70,2,f +17420,3666,72,5,f +17420,3673,71,4,f +17420,3678b,0,2,f +17420,3700,72,7,f +17420,3701,0,2,f +17420,3705,4,1,f +17420,3709,4,1,f +17420,3709,72,1,f +17420,3710,71,2,f +17420,3710,321,5,f +17420,3710,72,6,f +17420,3710,0,6,f +17420,3710,70,7,f +17420,3710,4,5,f +17420,3747a,71,4,f +17420,3749,19,5,f +17420,3794b,15,2,f +17420,3795,321,1,f +17420,3795,0,4,f +17420,3795,70,6,f +17420,3795,72,2,f +17420,3795,27,2,f +17420,3795,28,4,f +17420,3795,4,2,f +17420,3830,70,2,f +17420,3831,70,2,f +17420,3832,70,1,f +17420,3848,148,1,f +17420,3899,47,2,f +17420,4032a,72,1,f +17420,4032a,4,1,f +17420,4032a,71,2,f +17420,40378,308,1,f +17420,40379,4,1,f +17420,40490,71,2,f +17420,4070,72,4,f +17420,4070,0,4,f +17420,4081b,72,2,f +17420,4162,71,2,f +17420,41769,0,1,f +17420,41770,0,1,f +17420,41854,4,3,f +17420,41854,321,3,f +17420,42446,70,2,f +17420,4274,71,2,f +17420,4282,72,1,f +17420,4286,71,4,f +17420,4287,70,4,f +17420,43093,1,3,f +17420,4345b,15,1,f +17420,4346,15,1,f +17420,43710,0,1,f +17420,43711,0,1,f +17420,43719,0,1,f +17420,43722,27,1,f +17420,43722,72,1,f +17420,43723,72,1,f +17420,43723,27,1,f +17420,43888,70,6,f +17420,44300,0,2,f +17420,44300,72,6,f +17420,44301a,0,2,f +17420,44301a,72,4,f +17420,44302a,72,4,f +17420,44302a,71,6,f +17420,44674,308,2,f +17420,44728,0,8,f +17420,4600,0,4,f +17420,4697b,0,2,f +17420,47397,0,2,f +17420,47398,0,2,f +17420,47455,0,4,f +17420,47456,148,2,f +17420,47457,72,1,f +17420,47458,0,4,f +17420,47847,72,2,f +17420,47905,0,2,f +17420,48169,72,2,f +17420,48171,72,4,f +17420,48172,0,1,f +17420,48336,0,2,f +17420,4865b,72,2,f +17420,48723,70,1,f +17420,48729b,0,4,f +17420,49668,0,4,f +17420,51739,0,1,f +17420,53451,4,6,f +17420,53454,148,1,f +17420,54200,41,3,f +17420,54200,70,2,f +17420,54200,4,11,f +17420,54200,0,10,f +17420,54200,182,3,f +17420,54200,321,11,f +17420,54383,0,3,f +17420,54383,27,1,f +17420,54384,0,3,f +17420,54384,27,1,f +17420,57894,0,2,f +17420,57895,15,2,f +17420,57906,33,3,f +17420,57906,182,3,f +17420,57909b,308,8,f +17420,58176,182,2,f +17420,58176,41,2,f +17420,59900,0,2,f +17420,60219,72,1,f +17420,60470a,0,4,f +17420,60471,0,2,f +17420,60477,0,12,f +17420,60478,71,2,f +17420,60479,71,2,f +17420,60481,70,2,f +17420,60897,70,4,f +17420,6106,28,6,f +17420,6141,0,8,f +17420,6141,46,1,f +17420,6141,4,10,f +17420,61482,71,1,f +17420,61780,70,2,f +17420,62361,72,1,f +17420,63868,72,2,f +17420,63965,72,1,f +17420,63965,70,1,f +17420,64567,297,1,f +17420,64567,148,7,f +17420,64647,57,2,f +17420,64727,4,2,f +17420,64727,321,1,f +17420,64799,71,1,f +17420,6541,71,4,f +17420,6541,70,4,f +17420,6558,1,2,f +17420,6628,0,2,f +17420,73983,0,2,f +17420,73983,72,2,f +17420,74261,0,2,f +17420,75904,71,2,f +17420,85861,182,1,f +17420,85861,0,14,f +17420,85861,41,4,f +17420,85861,320,2,f +17420,85863,71,2,f +17420,85984,70,1,f +17420,85984,4,4,f +17420,85984,0,6,f +17420,85984,326,2,f +17420,85984,71,4,f +17420,85984,72,6,f +17420,87079,484,1,f +17420,87079,71,2,f +17420,87087,0,2,f +17420,87544,71,3,f +17420,87544,15,1,f +17420,87580,0,2,f +17420,87580,72,1,f +17420,87620,71,4,f +17420,87620,72,4,f +17420,87994,0,2,f +17420,91501,71,2,f +17420,92013,0,2,f +17420,92280,4,2,f +17420,92593,72,2,f +17420,92690,148,1,f +17420,92946,0,2,f +17420,92947,308,1,f +17420,93273,0,1,f +17420,93274,4,2,f +17420,93571,0,2,f +17420,93606,72,1,f +17420,96874,25,1,f +17420,973pr3714c01,484,1,f +17420,98132,0,2,f +17420,98137,297,2,f +17420,98138,71,4,f +17420,98138pr0049,0,2,f +17420,98139,148,1,f +17420,98139,297,6,f +17420,98141,297,2,f +17420,98283,72,6,f +17420,98385,0,1,f +17420,99206,70,1,f +17420,99207,4,2,f +17420,99780,0,10,f +17420,99780,72,2,f +17420,99781,71,4,f +17421,10050,-1,4,f +17421,10197,72,2,f +17421,10247,4,2,f +17421,11055,4,3,f +17421,11153,2,1,f +17421,11212,72,1,f +17421,11305,-1,2,f +17421,11458,72,2,f +17421,11458,70,4,f +17421,11476,71,4,f +17421,11477,326,6,f +17421,11477,72,6,f +17421,11598,148,1,f +17421,11833,36,1,f +17421,13349,72,2,f +17421,13547,0,2,f +17421,13547,71,1,f +17421,13754,148,1,f +17421,13965,70,2,f +17421,14417,72,2,f +17421,14704,71,2,f +17421,14769,4,1,f +17421,15064,308,4,f +17421,15068,4,1,f +17421,15070,297,1,f +17421,15303,36,2,f +17421,15400,72,1,f +17421,15535,72,2,f +17421,15573,2,3,f +17421,15672,4,1,f +17421,15706,70,6,f +17421,15712,72,3,f +17421,15712,0,2,f +17421,18575,19,3,f +17421,18651,0,3,f +17421,19857pat0001,288,1,f +17421,19857pat0001,1,1,f +17421,21268,71,1,f +17421,22385,0,3,f +17421,22961,71,1,f +17421,2357,72,2,f +17421,2357,19,4,f +17421,23786,2,2,f +17421,2412b,71,1,f +17421,2417,288,1,f +17421,2419,28,2,f +17421,2420,0,2,f +17421,2420,70,4,f +17421,24201,0,2,f +17421,2423,326,2,f +17421,24316,70,2,f +17421,2432,148,1,f +17421,24458,19,1,f +17421,24484,1003,1,f +17421,2453b,70,1,f +17421,25110,148,1,f +17421,25276,-1,1,f +17421,25277,-1,1,f +17421,2540,19,4,f +17421,2540,4,1,f +17421,2654,36,6,f +17421,2780,0,2,f +17421,28587,1003,1,f +17421,28587,-1,3,f +17421,28588,4,6,f +17421,28809,4,4,f +17421,30031,71,1,f +17421,3005,70,4,f +17421,30093,288,1,f +17421,30115,4,7,f +17421,30136,70,6,f +17421,30173b,179,4,f +17421,30173b,297,2,f +17421,3020,70,4,f +17421,3020,72,10,f +17421,3021,0,3,f +17421,3021,4,4,f +17421,3022,15,4,f +17421,3023,71,20,f +17421,3023,308,15,f +17421,3024,2,2,f +17421,3032,72,3,f +17421,3034,71,3,f +17421,30350a,4,1,f +17421,30350b,72,1,f +17421,3039,72,4,f +17421,3039,70,2,f +17421,3040b,4,4,f +17421,30410,0,1,f +17421,3068b,19,1,f +17421,3070b,4,2,f +17421,32001,0,1,f +17421,32002,19,4,f +17421,32016,0,1,f +17421,32034,4,2,f +17421,32039,4,1,f +17421,32054,4,4,f +17421,32062,4,2,f +17421,32064a,2,2,f +17421,32064a,4,1,f +17421,32124,70,4,f +17421,32270,0,2,f +17421,32271,72,2,f +17421,32449,72,4,f +17421,32474,4,4,f +17421,32526,4,2,f +17421,3622,19,4,f +17421,3623,19,3,f +17421,3626cpr1366,14,1,f +17421,3626cpr1642,14,1,f +17421,3626cpr1872,14,1,f +17421,3639,72,1,f +17421,3640,72,1,f +17421,3660,0,2,f +17421,3666,27,2,f +17421,3666,0,2,f +17421,3673,71,2,f +17421,3700,4,1,f +17421,3700,72,3,f +17421,3705,0,3,f +17421,3710,72,11,f +17421,3713,71,5,f +17421,3747a,0,2,f +17421,3747a,4,1,f +17421,3749,19,4,f +17421,3795,72,4,f +17421,3894,0,6,f +17421,3941,71,2,f +17421,4032a,308,7,f +17421,4032a,4,9,f +17421,4081b,0,6,f +17421,41769,71,1,f +17421,41770,71,1,f +17421,4274,1,1,f +17421,43720,4,1,f +17421,43721,4,1,f +17421,43722,0,2,f +17421,43723,0,2,f +17421,44294,71,2,f +17421,44375bpr0001,0,1,f +17421,44676,0,4,f +17421,44728,4,6,f +17421,4497,148,1,f +17421,4519,71,4,f +17421,47456,148,8,f +17421,47457,4,7,f +17421,47753,4,2,f +17421,47759,72,4,f +17421,47847,70,2,f +17421,48336,0,1,f +17421,48933,72,2,f +17421,50950,0,4,f +17421,50950,4,6,f +17421,51739,72,3,f +17421,53451,4,9,f +17421,54200,0,2,f +17421,54200,326,3,f +17421,54383,28,2,f +17421,54383,27,2,f +17421,54384,27,2,f +17421,54384,28,2,f +17421,57585,71,1,f +17421,57909b,72,2,f +17421,59443,4,4,f +17421,6003,28,1,f +17421,6003,27,1,f +17421,6020,70,2,f +17421,60470a,4,4,f +17421,60475b,72,4,f +17421,60475b,0,4,f +17421,60478,0,2,f +17421,60478,4,2,f +17421,60483,72,2,f +17421,60599,70,2,f +17421,60897,71,4,f +17421,6091,70,4,f +17421,6141,19,3,f +17421,6141,36,9,f +17421,61800,148,4,f +17421,62361,72,1,f +17421,63864,28,2,f +17421,63868,70,2,f +17421,63868,4,2,f +17421,63965,70,6,f +17421,63965,0,2,f +17421,64448,70,3,f +17421,64567,0,4,f +17421,64567,148,2,f +17421,6541,72,2,f +17421,6553,72,2,f +17421,6558,1,5,f +17421,6587,28,4,f +17421,6629,0,1,f +17421,6632,4,2,f +17421,6636,28,2,f +17421,73983,4,5,f +17421,85943,4,2,f +17421,85984,0,3,f +17421,85984,70,1,f +17421,87083,72,2,f +17421,87580,28,1,f +17421,87747,320,6,f +17421,88072,71,2,f +17421,90194,0,5,f +17421,90641,148,4,f +17421,92013,0,2,f +17421,92280,0,8,f +17421,92690,148,1,f +17421,92692,0,3,f +17421,92946,0,14,f +17421,92947,70,3,f +17421,93069,15,1,f +17421,93273,72,1,f +17421,93273,70,2,f +17421,93274,4,2,f +17421,96874,25,1,f +17421,970c00,15,1,f +17421,973pr3681c01,0,1,f +17421,98132,0,2,f +17421,98313,297,2,f +17421,98313,148,12,f +17421,98834,0,3,f +17421,99021,72,5,f +17421,99207,71,14,f +17421,99563,0,6,f +17421,99781,0,2,f +17422,10247,71,1,f +17422,10247,0,2,f +17422,11438,0,1,f +17422,11458,72,8,f +17422,12889,320,1,f +17422,13564,4,2,f +17422,14769,71,2,f +17422,15068,272,3,f +17422,15068,0,1,f +17422,15092,72,1,f +17422,15406,0,1,f +17422,15461,0,2,f +17422,15712,297,8,f +17422,18587,71,2,f +17422,18588,0,2,f +17422,18646,28,1,f +17422,18654,72,2,f +17422,18671,272,2,f +17422,18674,70,1,f +17422,19857pat0001,-1,1,f +17422,20482,297,4,f +17422,20482,70,1,f +17422,2357,0,2,f +17422,2412b,0,2,f +17422,2420,71,2,f +17422,24201,0,2,f +17422,2431,71,2,f +17422,2456,0,1,f +17422,2456,71,2,f +17422,24586,148,1,f +17422,24588,148,1,f +17422,2460,0,1,f +17422,2476a,71,1,f +17422,25276,-1,1,f +17422,25277,-1,1,f +17422,2654,47,2,f +17422,2730,0,2,f +17422,2780,0,13,f +17422,28587,-1,1,f +17422,28588,4,4,f +17422,3001,0,2,f +17422,3002,0,3,f +17422,3003,0,2,f +17422,3004,0,4,f +17422,3010,0,2,f +17422,30136,72,1,f +17422,30173b,179,2,f +17422,30173b,297,6,f +17422,30176,2,1,f +17422,3021,15,1,f +17422,3022,14,2,f +17422,3022,72,4,f +17422,3023,36,4,f +17422,3023,72,2,f +17422,3023,28,2,f +17422,3023,41,4,f +17422,3023,4,3,f +17422,3024,36,2,f +17422,3024,28,10,f +17422,3031,71,2,f +17422,3032,0,1,f +17422,3039,272,2,f +17422,3040b,70,2,f +17422,30565,27,1,f +17422,3062b,308,1,f +17422,3068b,272,2,f +17422,3069b,272,2,f +17422,32000,72,1,f +17422,32054,4,2,f +17422,32054,71,2,f +17422,32059,28,2,f +17422,32062,4,2,f +17422,32123b,14,2,f +17422,32126,0,2,f +17422,32187,71,1,f +17422,32316,72,2,f +17422,3460,15,2,f +17422,3623,272,2,f +17422,3626cpr0893,14,1,f +17422,3639,72,4,f +17422,3640,72,4,f +17422,3660,0,4,f +17422,3679,71,4,f +17422,3680,0,4,f +17422,3701,71,8,f +17422,3705,0,1,f +17422,3710,0,1,f +17422,3710,72,4,f +17422,3795,72,1,f +17422,3795,28,4,f +17422,3894,15,1,f +17422,3894,71,1,f +17422,3960,0,2,f +17422,4081b,72,4,f +17422,4150,72,2,f +17422,4162,0,2,f +17422,4175,28,2,f +17422,41769,272,2,f +17422,41770,272,2,f +17422,41897,0,2,f +17422,4274,1,2,f +17422,43093,1,2,f +17422,43710,28,2,f +17422,43711,28,2,f +17422,43898,0,2,f +17422,44309,0,2,f +17422,44728,0,12,f +17422,4477,0,3,f +17422,4497,0,1,f +17422,47407,272,1,f +17422,47457,297,4,f +17422,47753,0,1,f +17422,47758,0,4,f +17422,48336,0,2,f +17422,51739,0,2,f +17422,54200,0,2,f +17422,54383,0,1,f +17422,54384,0,1,f +17422,56145,71,2,f +17422,56908,71,2,f +17422,59426,72,2,f +17422,59900,4,2,f +17422,6005,0,2,f +17422,60470a,0,4,f +17422,60474,0,2,f +17422,60483,72,2,f +17422,6141,72,8,f +17422,6141,41,24,f +17422,6141,46,4,f +17422,61485,0,2,f +17422,6215,71,4,f +17422,62462,0,4,f +17422,63082,71,2,f +17422,63869,71,2,f +17422,6558,1,2,f +17422,6636,0,2,f +17422,85943,72,1,f +17422,87079,0,1,f +17422,87083,72,4,f +17422,92280,71,2,f +17422,92579,41,1,f +17422,92690,70,1,f +17422,92690,148,2,f +17422,92946,0,14,f +17422,92947,71,2,f +17422,93606,72,2,f +17422,93606,0,1,f +17422,95344,297,1,f +17422,98128,0,1,f +17422,98129,297,1,f +17422,98132,0,1,f +17422,98138,297,4,f +17422,98834,0,4,f +17422,99207,0,1,f +17422,99207,71,4,f +17422,99780,72,2,f +17422,99781,0,6,f +17423,10050,-1,2,f +17423,10197,72,2,f +17423,10201,4,2,f +17423,11055,4,2,f +17423,11153,4,4,f +17423,11214,72,2,f +17423,11215,0,2,f +17423,11305,-1,2,f +17423,11458,72,1,f +17423,11477,72,2,f +17423,11477,0,2,f +17423,11477,71,2,f +17423,11477,4,2,f +17423,13731,0,2,f +17423,13754,148,4,f +17423,15462,70,3,f +17423,15712,72,4,f +17423,19857pat0001,15,1,f +17423,2423,326,1,f +17423,24299,4,1,f +17423,24307,4,1,f +17423,24482,0,6,f +17423,24484,-1,1,f +17423,24586,148,1,f +17423,24588,148,1,f +17423,25276,-1,1,f +17423,25277,-1,1,f +17423,2654,36,2,f +17423,2730,0,2,f +17423,2780,0,12,f +17423,2817,0,1,f +17423,28587,-1,1,f +17423,28588,4,4,f +17423,3003,0,2,f +17423,3005,4,2,f +17423,30093,288,1,f +17423,30115,4,3,f +17423,30173b,179,1,f +17423,3020,0,2,f +17423,3021,4,2,f +17423,3023,27,1,f +17423,3023,0,4,f +17423,3023,72,8,f +17423,3023,71,2,f +17423,3034,27,1,f +17423,30357,0,2,f +17423,30374,0,1,f +17423,3040b,71,1,f +17423,32000,4,2,f +17423,32013,0,6,f +17423,32013,4,2,f +17423,32016,0,4,f +17423,32018,72,2,f +17423,32034,4,1,f +17423,32039,4,2,f +17423,32054,4,1,f +17423,32062,4,6,f +17423,32123b,71,8,f +17423,32316,4,4,f +17423,32523,4,2,f +17423,32556,19,4,f +17423,3460,71,2,f +17423,3623,4,4,f +17423,3623,0,2,f +17423,3666,4,4,f +17423,3673,71,2,f +17423,3700,0,2,f +17423,3705,0,1,f +17423,3706,0,2,f +17423,3713,4,3,f +17423,3795,72,2,f +17423,3830,0,2,f +17423,3831,0,2,f +17423,3937,0,2,f +17423,4081b,72,2,f +17423,41239,0,2,f +17423,41769,70,2,f +17423,42610,71,1,f +17423,4274,71,6,f +17423,43093,1,5,f +17423,43710,72,2,f +17423,43711,72,2,f +17423,43722,4,1,f +17423,43723,4,1,f +17423,43857,0,2,f +17423,4460b,72,1,f +17423,47456,148,2,f +17423,50304,71,1,f +17423,50304,4,1,f +17423,50305,4,1,f +17423,50305,71,1,f +17423,50955,0,1,f +17423,50956,0,1,f +17423,53451,4,3,f +17423,53992,0,1,f +17423,54200,0,2,f +17423,54200,326,1,f +17423,56145,4,3,f +17423,57585,71,2,f +17423,59443,0,2,f +17423,60477,0,2,f +17423,60478,0,2,f +17423,60479,72,2,f +17423,60483,72,2,f +17423,60484,0,2,f +17423,60897,71,1,f +17423,6091,70,1,f +17423,6091,72,2,f +17423,6134,0,2,f +17423,6141,4,2,f +17423,6141,36,10,f +17423,6141,71,2,f +17423,6141,70,1,f +17423,61800,148,4,f +17423,62462,0,4,f +17423,63868,4,2,f +17423,64799,71,1,f +17423,6541,72,1,f +17423,6558,1,4,f +17423,6587,28,2,f +17423,6628,0,4,f +17423,73983,0,2,f +17423,85543,15,2,f +17423,92690,148,2,f +17423,93274,0,4,f +17423,973pr3714c01,484,1,f +17423,98132,0,1,f +17423,99021,72,2,f +17423,99780,4,2,f +17423,99781,0,2,f +17424,10050,-1,2,f +17424,11203,72,4,f +17424,11211,14,1,f +17424,11458,0,4,f +17424,11477,4,2,f +17424,11477,326,4,f +17424,11610,0,2,f +17424,13564,4,2,f +17424,14417,72,4,f +17424,14418,71,2,f +17424,14704,71,6,f +17424,14719,191,2,f +17424,14719,0,1,f +17424,15391,0,2,f +17424,15392,70,2,f +17424,15573,72,4,f +17424,15712,0,5,f +17424,18041,297,8,f +17424,19857pat0001,0,1,f +17424,19857pat0001,288,1,f +17424,21445,0,4,f +17424,22890,72,2,f +17424,22961,71,2,f +17424,24122,0,4,f +17424,2412b,70,4,f +17424,2431,308,2,f +17424,24484,-1,1,f +17424,2450,70,2,f +17424,2450,0,2,f +17424,24588,148,1,f +17424,2460,72,2,f +17424,25214,148,4,f +17424,25277,-1,1,f +17424,2569,0,2,f +17424,2654,70,4,f +17424,2654,52,1,f +17424,26601,72,1,f +17424,2780,0,4,f +17424,28587,1003,1,f +17424,28809,71,2,f +17424,29161,4,2,f +17424,29497,47,1,f +17424,3002,25,1,f +17424,3003,28,2,f +17424,3004,72,4,f +17424,30173b,179,2,f +17424,3020,70,2,f +17424,3020,28,3,f +17424,3021,191,2,f +17424,3021,72,1,f +17424,3022,70,5,f +17424,3022,191,2,f +17424,3023,326,3,f +17424,3023,14,2,f +17424,30236,72,2,f +17424,3024,71,4,f +17424,30259,288,2,f +17424,30375,72,1,f +17424,3039,70,1,f +17424,30503,0,1,f +17424,30526,72,2,f +17424,3062b,72,2,f +17424,3068b,191,1,f +17424,3069b,70,2,f +17424,32016,0,2,f +17424,32028,70,4,f +17424,32054,71,2,f +17424,32062,4,2,f +17424,32123b,14,2,f +17424,32124,70,2,f +17424,32140,0,2,f +17424,32192,72,2,f +17424,32291,72,2,f +17424,33320,2,1,f +17424,33590,326,2,f +17424,3623,71,4,f +17424,3623,70,4,f +17424,3626cpr1366,14,1,f +17424,3666,0,2,f +17424,3666,70,4,f +17424,3700,70,4,f +17424,3701,72,2,f +17424,3710,320,2,f +17424,3710,70,2,f +17424,3747a,70,1,f +17424,3749,19,2,f +17424,3832,70,1,f +17424,3899,4,1,f +17424,4032a,85,1,f +17424,4032a,84,1,f +17424,4070,70,2,f +17424,41677,72,2,f +17424,41769,320,1,f +17424,41770,320,1,f +17424,42003,72,2,f +17424,4282,72,2,f +17424,43093,1,4,f +17424,43713,70,1,f +17424,4488,0,1,f +17424,4519,14,2,f +17424,4590,72,2,f +17424,47397,70,1,f +17424,47398,70,1,f +17424,47456,148,1,f +17424,47457,326,1,f +17424,48336,297,2,f +17424,4871,70,1,f +17424,48729a,4,4,f +17424,50304,0,1,f +17424,50305,0,1,f +17424,50950,308,4,f +17424,54200,0,2,f +17424,55981,297,2,f +17424,56145,297,1,f +17424,57585,71,1,f +17424,59443,71,2,f +17424,59900,297,2,f +17424,6019,4,1,f +17424,60470a,4,2,f +17424,60471,71,1,f +17424,61252,297,4,f +17424,61409,72,4,f +17424,6141,179,7,f +17424,6141,47,2,f +17424,6141,36,1,f +17424,6141,52,2,f +17424,63868,0,2,f +17424,64567,148,3,f +17424,64799,0,1,f +17424,6587,28,3,f +17424,6628,0,2,f +17424,6636,70,2,f +17424,6636,326,2,f +17424,75c16,297,2,f +17424,85861,297,4,f +17424,85984,308,2,f +17424,85984pr0002,72,1,f +17424,87079,70,2,f +17424,87083,72,3,f +17424,87580,70,1,f +17424,87585,70,2,f +17424,88072,72,4,f +17424,90194,70,1,f +17424,92280,4,2,f +17424,92593,28,1,f +17424,93274,0,2,f +17424,98132,0,1,f +17424,98138,297,4,f +17424,98313,320,1,f +17424,98313,297,2,f +17424,98313,326,2,f +17424,99021,308,1,f +17424,99207,0,4,f +17424,99563,0,2,f +17424,99780,0,2,f +17424,99781,71,2,f +17425,11090,0,1,f +17425,11211,4,1,f +17425,11215,71,1,f +17425,11305,-1,2,f +17425,11439pat0003,33,1,t +17425,11439pat0003,33,2,f +17425,11476,71,1,f +17425,15068,272,2,f +17425,15068,72,2,f +17425,15092,72,4,f +17425,15392,72,2,f +17425,15392,72,1,t +17425,15403,0,2,f +17425,15462,70,2,f +17425,15573,72,1,f +17425,15712,4,2,f +17425,18649,71,2,f +17425,18651,0,2,f +17425,18654,72,2,f +17425,18654,72,1,t +17425,19857pat0001,1,1,f +17425,24484,1003,1,f +17425,2458,72,2,f +17425,24586,148,1,f +17425,25110,148,1,f +17425,25276,-1,1,f +17425,2654,36,1,f +17425,2723,0,4,f +17425,2780,0,4,f +17425,2780,0,1,t +17425,28587,-1,1,f +17425,28588,4,2,f +17425,3002,0,1,f +17425,3003,71,2,f +17425,30031,0,1,f +17425,30115,4,2,f +17425,30173b,297,1,t +17425,30173b,297,2,f +17425,3020,272,4,f +17425,3022,1,2,f +17425,3022,72,4,f +17425,3023,4,2,f +17425,3023,14,5,f +17425,3034,0,1,f +17425,30374,0,1,f +17425,30553,72,1,f +17425,30602,33,2,f +17425,32013,0,4,f +17425,32016,0,2,f +17425,32034,0,4,f +17425,32062,4,8,f +17425,32064a,72,2,f +17425,32124,1,4,f +17425,32192,0,2,f +17425,32523,4,2,f +17425,32530,0,4,f +17425,3623,0,2,f +17425,3626cpr1872,14,1,f +17425,3673,71,6,f +17425,3673,71,1,t +17425,3702,0,2,f +17425,3705,0,1,f +17425,3707,0,2,f +17425,3713,4,2,f +17425,3713,4,1,t +17425,3832,72,1,f +17425,3839b,0,4,f +17425,43093,1,5,f +17425,43722,0,1,f +17425,43723,0,1,f +17425,43903,0,1,f +17425,47456,0,1,f +17425,47755,1,2,f +17425,55978,0,2,f +17425,55981,4,3,f +17425,56145,297,2,f +17425,59443,71,1,f +17425,59900,33,2,f +17425,60470a,0,4,f +17425,61252,0,2,f +17425,6141,46,1,t +17425,6141,46,4,f +17425,61800,148,3,f +17425,63864,4,2,f +17425,63868,72,4,f +17425,85943,72,2,f +17425,92582,0,1,f +17425,93606,72,2,f +17425,93606,272,2,f +17425,98137,297,2,f +17425,98138,297,1,t +17425,98138,297,4,f +17425,99021,72,2,f +17425,99207,4,2,f +17425,99780,4,2,f +17499,15068,308,2,f +17499,15303,36,2,f +17499,15400,72,1,f +17499,15462,70,1,f +17499,18654,0,6,f +17499,21560,28,1,f +17499,21560,4,1,f +17499,21561,28,1,f +17499,22961,4,4,f +17499,24123,148,1,f +17499,26831,28,2,f +17499,2780,0,8,f +17499,27999,92,1,f +17499,28220,71,1,f +17499,28220pr0002,71,1,f +17499,3023,0,1,f +17499,3024,28,2,f +17499,30383,0,1,f +17499,30553,0,1,f +17499,32002,19,2,f +17499,32013,4,1,f +17499,32014,4,1,f +17499,32014,0,1,f +17499,32015,0,1,f +17499,32039,4,2,f +17499,32054,0,2,f +17499,32062,4,4,f +17499,32123b,71,4,f +17499,32126,0,2,f +17499,32523,0,1,f +17499,33299a,4,2,f +17499,3706,0,1,f +17499,3749,19,3,f +17499,41531,148,1,f +17499,41677,4,2,f +17499,41678,4,1,f +17499,4185,72,4,f +17499,42003,4,3,f +17499,4274,1,12,f +17499,43093,1,5,f +17499,44294,71,1,f +17499,54200,0,1,f +17499,60208,4,2,f +17499,60470a,308,2,f +17499,60483,28,2,f +17499,61409,0,1,f +17499,62360,4,2,f +17499,62462,148,1,f +17499,6536,0,2,f +17499,6558,1,5,f +17499,6632,4,1,f +17499,74261,0,4,f +17499,78c19,179,1,f +17499,87080,4,1,f +17499,87082,0,1,f +17499,87083,72,1,f +17499,87086,4,1,f +17499,90607,0,2,f +17499,90609,0,2,f +17499,90616,0,2,f +17499,90617,72,2,f +17499,90623,0,1,f +17499,90638,28,1,f +17499,90638pr0021,28,1,f +17499,90640,28,4,f +17499,90652,28,1,f +17499,90661,308,2,f +17499,93273,28,2,f +17499,93575,72,2,f +17499,98577,72,1,f +17499,99021,308,2,f +17500,15092,72,1,f +17500,15303,36,2,f +17500,15400,72,1,f +17500,18651,0,1,f +17500,20482,0,2,f +17500,22961,308,2,f +17500,24123,308,1,f +17500,2780,0,4,f +17500,27978,78,1,f +17500,28220pr0001,15,1,f +17500,28222,297,2,f +17500,28824,320,1,f +17500,28886,0,1,f +17500,32013,308,1,f +17500,32013,0,4,f +17500,32034,308,2,f +17500,32039,0,1,f +17500,32062,4,2,f +17500,32073,71,1,f +17500,32184,0,1,f +17500,32523,4,1,f +17500,34395,0,1,f +17500,3673,71,3,f +17500,3705,0,1,f +17500,3706,0,2,f +17500,3713,71,1,f +17500,41677,0,1,f +17500,42003,71,1,f +17500,4274,1,2,f +17500,43093,1,5,f +17500,4697b,297,1,f +17500,48729b,0,2,f +17500,50745,0,1,f +17500,54200,308,1,f +17500,59443,308,1,f +17500,62462,297,1,f +17500,63864,308,1,f +17500,6536,308,2,f +17500,6536,0,1,f +17500,74261,0,2,f +17500,90607,0,2,f +17500,90609,0,1,f +17500,90609,78,1,f +17500,90615,72,2,f +17500,90616,0,2,f +17500,90623,0,1,f +17500,90638,0,3,f +17500,90640,0,3,f +17500,90641,0,2,f +17500,90641,78,1,f +17500,90652,0,1,f +17500,90661,0,2,f +17500,93575,78,2,f +17500,98577,72,1,f +17580,11211,71,1,f +17580,11215,71,1,f +17580,11477,15,2,f +17580,11477,14,2,f +17580,17485,71,2,f +17580,17485,14,2,f +17580,2412b,71,1,f +17580,2540,71,2,f +17580,2780,0,4,f +17580,2780,0,1,t +17580,2877,72,2,f +17580,3020,71,1,f +17580,3022,15,3,f +17580,3024,14,1,t +17580,3024,14,2,f +17580,30367c,15,2,f +17580,30370ps3,15,1,f +17580,32000,72,2,f +17580,32028,71,1,f +17580,32523,71,2,f +17580,3626cpr1441,78,1,f +17580,3795,72,1,f +17580,3839b,71,1,f +17580,4032a,15,2,f +17580,4032a,71,2,f +17580,4032a,72,2,f +17580,43719,14,1,f +17580,50950,15,2,f +17580,54200,40,1,t +17580,54200,40,2,f +17580,61184,71,2,f +17580,6141,71,1,t +17580,6141,71,2,f +17580,64644,15,10,f +17580,64644,15,1,t +17580,6541,4,2,f +17580,6587,28,2,f +17580,92280,71,2,f +17580,92738,0,1,f +17580,970c00pr0581,25,1,f +17580,973pr0990c01,25,1,f +17580,99207,71,3,f +17594,15303,36,2,f +17594,15392,72,1,f +17594,15400,72,1,f +17594,15403,0,1,f +17594,15712,72,3,f +17594,18654,19,3,f +17594,21560,19,1,f +17594,21755,0,1,f +17594,22961,308,1,f +17594,26831,308,2,f +17594,2780,0,3,f +17594,27998,19,1,f +17594,28821,179,1,f +17594,28854,19,1,f +17594,28882,379,1,f +17594,28897,19,2,f +17594,29100,379,1,f +17594,3024,19,2,f +17594,3024,0,1,f +17594,31901,148,1,f +17594,32014,0,1,f +17594,32039,0,3,f +17594,32062,4,6,f +17594,32123b,71,1,f +17594,3713,71,1,f +17594,41669,0,1,f +17594,41677,0,1,f +17594,42003,0,1,f +17594,4274,1,6,f +17594,61409,0,1,f +17594,6141,36,2,f +17594,6141,41,1,f +17594,64567,0,1,f +17594,6536,19,1,f +17594,6558,1,1,f +17594,6587,28,3,f +17594,6632,0,1,f +17594,74261,0,4,f +17594,87994,0,1,f +17594,90607,0,2,f +17594,90609,0,2,f +17594,90615,72,2,f +17594,90616,0,2,f +17594,90623,0,1,f +17594,90639,19,1,f +17594,90639,4,1,f +17594,90640,19,1,f +17594,90641,19,2,f +17594,90652,19,1,f +17594,90661,308,2,f +17594,93273,19,2,f +17594,93575,0,2,f +17594,98577,72,1,f +17597,11212,71,1,f +17597,15070,14,3,f +17597,24299,14,1,f +17597,24307,14,1,f +17597,26604,19,4,f +17597,3005,2,1,f +17597,3021,15,5,f +17597,3022,15,2,f +17597,3023,25,2,f +17597,3024,191,1,t +17597,3024,191,3,f +17597,3040b,14,2,f +17597,3062b,27,2,f +17597,3070b,14,1,t +17597,3070b,14,2,f +17597,3622,14,1,f +17597,3622,15,4,f +17597,3623,191,2,f +17597,3623,15,3,f +17597,3878,0,1,f +17597,4070,14,2,f +17597,44302a,14,2,f +17597,44567a,14,2,f +17597,6091,14,4,f +17597,6141,4,2,f +17597,6141,4,1,t +17597,98138pr0026,15,1,t +17597,98138pr0026,15,2,f +17615,15530,272,1,f +17615,19220,0,1,f +17615,3069bpr0100,2,3,f +17615,3626cpr1662,14,1,f +17615,3626cpr1849,14,1,f +17615,41334,0,1,f +17615,61482,71,1,f +17615,64567,0,1,f +17615,92585,4,1,f +17615,970c00,272,1,f +17615,970cpr1207,4,1,f +17615,973pr3627,212,1,f +17615,973pr3700,15,1,f +17615,98138,46,1,f +17675,11476,19,2,f +17675,15068,0,4,f +17675,15068,320,2,f +17675,22885,71,14,f +17675,2420,0,1,f +17675,2431,0,1,f +17675,2431pr0095,19,1,f +17675,3003,29,1,f +17675,3003,25,2,f +17675,3004pr0026,15,1,f +17675,3005,272,2,f +17675,3010,272,1,f +17675,3020,0,2,f +17675,3020,272,1,f +17675,3020,320,1,f +17675,3021,0,4,f +17675,3022,28,2,f +17675,3022,15,2,f +17675,3022,320,1,f +17675,3022,272,1,f +17675,3023,308,4,f +17675,3023,0,5,f +17675,3023,28,2,f +17675,3024,0,1,t +17675,3024,28,1,f +17675,3024,28,1,t +17675,3024,72,2,f +17675,3024,72,1,t +17675,3024,0,4,f +17675,3031,15,1,f +17675,3032,0,1,f +17675,3068b,320,1,f +17675,3069b,15,2,f +17675,3069b,320,2,f +17675,3069b,19,1,f +17675,3069b,28,1,f +17675,3069bpr0194,15,1,f +17675,3070b,28,1,f +17675,3070b,28,1,t +17675,3070b,320,1,t +17675,3070b,320,3,f +17675,32028,0,3,f +17675,35744,72,1,f +17675,35744,72,1,t +17675,3622pr0016,15,1,f +17675,3623,0,1,f +17675,3710,19,1,f +17675,3710,272,6,f +17675,3710,15,1,f +17675,3710,320,1,f +17675,3710,0,4,f +17675,3795,0,1,f +17675,3941,1,1,f +17675,4032a,71,3,f +17675,87079pr0124,0,1,f +17675,87087,15,1,f +17675,92593,0,1,f +17675,98138,71,1,t +17675,98138,71,1,f +17675,98138pr0060,0,1,t +17675,98138pr0060,0,2,f +17675,99780,0,1,f +17676,11153,0,3,f +17676,11211,71,2,f +17676,11476,15,2,f +17676,11477,0,5,f +17676,15068,0,1,f +17676,22885,71,8,f +17676,24201,0,3,f +17676,2431,15,3,f +17676,2431,0,1,f +17676,25269,71,1,t +17676,25269,71,4,f +17676,3003,28,2,f +17676,3003,34,1,f +17676,3005,72,2,f +17676,3010,72,2,f +17676,3020,0,1,f +17676,3021,72,1,f +17676,3022,72,4,f +17676,3023,0,6,f +17676,3024,0,1,t +17676,3024,72,6,f +17676,3024,71,1,t +17676,3024,71,2,f +17676,3024,72,1,t +17676,3024,0,10,f +17676,3031,72,1,f +17676,3031,15,1,f +17676,3031,0,1,f +17676,3032,0,1,f +17676,3040b,71,1,f +17676,3040b,0,1,f +17676,3068b,72,2,f +17676,3069b,0,1,f +17676,3069b,72,2,f +17676,3069b,15,1,f +17676,3070b,15,2,f +17676,3070b,15,1,t +17676,3245cpr0119,71,1,f +17676,35744,72,1,t +17676,35744,72,1,f +17676,3623,72,2,f +17676,3623,0,4,f +17676,3710,15,1,f +17676,3710,72,3,f +17676,3941,42,1,f +17676,4032a,15,2,f +17676,47905,0,1,f +17676,50950,0,3,f +17676,54200,0,1,t +17676,54200,0,4,f +17676,85984,15,1,f +17676,87079pr0122,15,1,f +17676,87079pr0124,0,1,f +17676,87087,72,2,f +17676,92593,0,1,f +17676,98138pr0047,179,1,t +17676,98138pr0047,179,2,f +17676,98138pr0060,0,1,t +17676,98138pr0060,0,2,f +17676,99206,15,2,f +17677,10197,72,5,f +17677,10201,70,1,f +17677,10247,4,2,f +17677,10247,72,8,f +17677,11055,0,18,f +17677,11153,378,6,f +17677,11153,0,12,f +17677,11211,0,3,f +17677,11212,72,2,f +17677,11214,72,11,f +17677,11272,148,1,f +17677,11458,0,24,f +17677,11477,326,2,f +17677,11477,0,26,f +17677,11477,308,4,f +17677,13547,0,1,f +17677,13731,0,3,f +17677,13965,0,2,f +17677,14395,72,2,f +17677,14418,71,2,f +17677,14704,71,18,f +17677,14769,297,1,f +17677,15100,71,2,f +17677,15100,0,1,f +17677,15397,70,1,f +17677,15461,70,14,f +17677,15571,297,44,f +17677,15573,72,4,f +17677,15573,28,4,f +17677,15712,297,15,f +17677,15712,72,12,f +17677,18031,148,1,f +17677,18394pat0001,-1,2,f +17677,18651,0,4,f +17677,18653,72,2,f +17677,18654,71,2,f +17677,18980,71,1,f +17677,19159,0,8,f +17677,19725,47,2,f +17677,19859pat0004,47,1,f +17677,20310,297,8,f +17677,21301,70,1,f +17677,22888,0,1,f +17677,23443,71,12,f +17677,24093pr0010,70,1,f +17677,24122,0,1,f +17677,2412b,0,2,f +17677,2412b,297,3,f +17677,2420,28,10,f +17677,24201,71,2,f +17677,24299,0,2,f +17677,24307,0,2,f +17677,2431,72,18,f +17677,24324,70,1,f +17677,2445,70,4,f +17677,2456,72,2,f +17677,2526,0,1,f +17677,2540,71,18,f +17677,2544,0,2,f +17677,2562,148,1,f +17677,2566,0,1,f +17677,2654,0,2,f +17677,2654,70,12,f +17677,26601,72,20,f +17677,26603,0,2,f +17677,26604,19,8,f +17677,2723,0,1,f +17677,27263,72,10,f +17677,2730,71,1,f +17677,2780,0,56,f +17677,27940,72,2,f +17677,2817,0,1,f +17677,2825,71,2,f +17677,28979,0,2,f +17677,2921,0,2,f +17677,30000,72,9,f +17677,3001,72,1,f +17677,3001,0,7,f +17677,3002,70,2,f +17677,3003,72,4,f +17677,3003,28,3,f +17677,3003,0,4,f +17677,3004,72,4,f +17677,3004,28,4,f +17677,3004,0,3,f +17677,3004,15,3,f +17677,30044,72,4,f +17677,3006,70,1,f +17677,3008,0,2,f +17677,30093,288,3,f +17677,30099,0,6,f +17677,3010,28,3,f +17677,3010,0,4,f +17677,30136,308,32,f +17677,30145,15,1,f +17677,30154,72,1,f +17677,3020,70,2,f +17677,3020,71,3,f +17677,3020,28,8,f +17677,3020,0,2,f +17677,3021,72,1,f +17677,3021,70,11,f +17677,3021,28,9,f +17677,3021,71,2,f +17677,3021,0,2,f +17677,3022,14,2,f +17677,3022,28,10,f +17677,3022,70,6,f +17677,3022,0,2,f +17677,3022,71,3,f +17677,3023,72,58,f +17677,3023,0,9,f +17677,3023,70,5,f +17677,3024,72,13,f +17677,3024,0,4,f +17677,3030,0,3,f +17677,3031,71,2,f +17677,3032,28,1,f +17677,3034,28,3,f +17677,3034,72,2,f +17677,3035,0,2,f +17677,3035,72,2,f +17677,30367c,297,13,f +17677,30374,71,1,f +17677,30374,0,2,f +17677,30375,72,2,f +17677,30377,0,4,f +17677,30381,72,1,f +17677,30383,0,16,f +17677,3040b,308,13,f +17677,30414,72,6,f +17677,3043,0,2,f +17677,3046a,326,18,f +17677,30503,71,4,f +17677,30554b,71,2,f +17677,3062b,308,25,f +17677,3062b,46,1,f +17677,3068b,72,4,f +17677,3068b,28,1,f +17677,3069b,72,10,f +17677,3069b,378,8,f +17677,3069b,28,10,f +17677,3069b,70,16,f +17677,3069bpr0199,19,1,f +17677,3070b,72,2,f +17677,3070bpr0180,0,1,f +17677,30983,148,2,f +17677,31511,484,1,f +17677,32001,0,2,f +17677,32013,297,4,f +17677,32013,308,12,f +17677,32015,0,1,f +17677,32016,70,2,f +17677,32018,72,4,f +17677,32028,72,6,f +17677,32028,28,27,f +17677,32034,308,11,f +17677,32039,0,2,f +17677,32054,0,2,f +17677,32054,4,6,f +17677,32054,71,2,f +17677,32056,72,4,f +17677,32062,4,14,f +17677,32064a,0,7,f +17677,32073,71,1,f +17677,32123b,71,3,f +17677,32138,0,4,f +17677,32184,71,2,f +17677,32202,297,2,f +17677,32316,71,9,f +17677,3245c,0,4,f +17677,32474,71,4,f +17677,32524,72,3,f +17677,32530,72,1,f +17677,32531,71,5,f +17677,32532,0,4,f +17677,32602,0,1,f +17677,32652,28,5,f +17677,32653,28,3,f +17677,33299a,71,2,f +17677,33461,70,1,f +17677,33992,0,1,f +17677,33993,0,1,f +17677,34223,148,2,f +17677,3460,28,1,f +17677,3460,308,14,f +17677,35744,0,3,f +17677,35744,72,2,f +17677,3622,72,1,f +17677,3623,72,2,f +17677,3623,70,2,f +17677,3623,71,2,f +17677,3626cpr2263,78,1,f +17677,3626cpr2264,78,1,f +17677,3626cpr2265,78,1,f +17677,3626cpr2266,47,1,f +17677,3626cpr2268,15,1,f +17677,3626cpr2269,15,1,f +17677,3626cpr2270,47,1,f +17677,3626cpr2281,72,1,f +17677,3660,308,7,f +17677,3665,72,4,f +17677,3666,28,4,f +17677,3666,72,5,f +17677,3678bpr0060,323,1,f +17677,3701,70,6,f +17677,3702,0,8,f +17677,3703,0,4,f +17677,3705,4,7,f +17677,3705,0,4,f +17677,3706,0,9,f +17677,3707,0,1,f +17677,3708,4,2,f +17677,3709,4,1,f +17677,3709,72,2,f +17677,3710,70,11,f +17677,3710,0,5,f +17677,3710,28,9,f +17677,3710,72,25,f +17677,3737,0,6,f +17677,3738,0,1,f +17677,3795,72,2,f +17677,3795,0,1,f +17677,3795,70,5,f +17677,3832,0,3,f +17677,3832,72,1,f +17677,3849,0,2,f +17677,3894,72,4,f +17677,3941,0,24,f +17677,3941,47,7,f +17677,3957a,0,2,f +17677,4032a,72,22,f +17677,4032a,0,12,f +17677,4032a,70,7,f +17677,4070,72,6,f +17677,4081b,72,2,f +17677,4151b,28,1,f +17677,4162,70,10,f +17677,4162,72,4,f +17677,4175,28,4,f +17677,42023,0,1,f +17677,4274,1,2,f +17677,4274,71,2,f +17677,4282,0,2,f +17677,4287,72,2,f +17677,4287,0,6,f +17677,43093,1,10,f +17677,4332,0,2,f +17677,43722,70,2,f +17677,43722,28,6,f +17677,43723,70,2,f +17677,43723,28,6,f +17677,44224,72,4,f +17677,44225,71,4,f +17677,44302a,0,17,f +17677,44375b,47,1,f +17677,4445,0,2,f +17677,44567a,72,19,f +17677,4477,72,3,f +17677,4510,72,8,f +17677,4519,71,1,f +17677,4740,82,1,f +17677,4740,0,1,f +17677,47456,308,2,f +17677,47457,4,1,f +17677,4790,70,1,f +17677,47973,72,2,f +17677,48002a,0,3,f +17677,48336,297,1,f +17677,48336,0,8,f +17677,48729b,72,6,f +17677,48729b,71,12,f +17677,48989,71,3,f +17677,49668,378,6,f +17677,50303,28,1,f +17677,50304,28,1,f +17677,50305,28,1,f +17677,51739,72,1,f +17677,51739,28,1,f +17677,54200,70,26,f +17677,54200,72,52,f +17677,54200,378,5,f +17677,54200,326,10,f +17677,54200,0,3,f +17677,54200,82,2,f +17677,55013,72,2,f +17677,57909b,308,1,f +17677,59443,0,8,f +17677,59900,297,8,f +17677,59900,0,9,f +17677,59900,71,7,f +17677,6005,0,2,f +17677,60470a,308,2,f +17677,60471,0,18,f +17677,60474,308,26,f +17677,60476,0,1,f +17677,60478,0,16,f +17677,60478,70,4,f +17677,60479,72,1,f +17677,60481,308,2,f +17677,60484,71,2,f +17677,6060,0,18,f +17677,6111,0,1,f +17677,6112,72,1,f +17677,61409,0,2,f +17677,6141,297,124,f +17677,6141,0,3,f +17677,6141,71,7,f +17677,61780,72,2,f +17677,6232,72,2,f +17677,6232,15,2,f +17677,62462,71,29,f +17677,63082,0,2,f +17677,63864,326,17,f +17677,63864,308,24,f +17677,63868,0,2,f +17677,63869,0,6,f +17677,63965,72,1,f +17677,64644,71,1,f +17677,64644,297,14,f +17677,64799,71,18,f +17677,6541,72,6,f +17677,6558,1,18,f +17677,6628,0,42,f +17677,6636,72,4,f +17677,6636,326,1,f +17677,6636,28,6,f +17677,73983,72,8,f +17677,73983,0,18,f +17677,75902,72,1,f +17677,75937,0,1,f +17677,85975,297,1,f +17677,87079,70,2,f +17677,87082,71,9,f +17677,87087,0,2,f +17677,87087,19,2,f +17677,87544,0,2,f +17677,87580,71,8,f +17677,87580,70,2,f +17677,87585,70,2,f +17677,87618,0,2,f +17677,87620,72,30,f +17677,87994,297,1,f +17677,88292,0,2,f +17677,90195,72,18,f +17677,90258,72,2,f +17677,91988,70,2,f +17677,92013,308,1,f +17677,92338,297,2,f +17677,92946,72,2,f +17677,93273,308,21,f +17677,93273,72,6,f +17677,93274,71,4,f +17677,93274,0,3,f +17677,93606,308,4,f +17677,94161,70,2,f +17677,95226,28,1,f +17677,95228pr0003,47,1,f +17677,96874,25,1,f +17677,970c00,326,1,f +17677,970c00,72,1,f +17677,970c00pr1292,70,1,f +17677,970c00pr1293,0,1,f +17677,970c00pr1299,0,1,f +17677,970c00pr1302,0,1,f +17677,973pr3868c01,272,1,f +17677,973pr3869c01,70,1,f +17677,973pr3870c01,323,1,f +17677,973pr3871c01,72,1,f +17677,973pr3877c01,28,1,f +17677,973pr3878c01,71,1,f +17677,973pr3879c01,71,1,f +17677,973pr3889c01,72,1,f +17677,98138,70,6,f +17677,98313,297,2,f +17677,99206,0,13,f +17677,99206,71,10,f +17677,99207,0,2,f +17679,11092,84,2,f +17679,11153,1,2,f +17679,11214,72,2,f +17679,11215,0,1,f +17679,11476,71,1,f +17679,13547,4,4,f +17679,13731,1,2,f +17679,14769pr0007,4,4,f +17679,15068,0,2,f +17679,15068,1,1,f +17679,15207,15,2,f +17679,15672,1,4,f +17679,16968,71,2,f +17679,18976,179,2,f +17679,23187,308,1,f +17679,23448,40,1,f +17679,2412b,179,1,f +17679,2431,4,2,f +17679,2450,4,2,f +17679,2653,0,2,f +17679,2654,1,2,f +17679,27393,41,3,f +17679,29618,71,1,f +17679,3002,2,1,f +17679,30136,15,2,f +17679,3020,71,5,f +17679,3021,19,2,f +17679,3021,1,2,f +17679,3023,1,3,f +17679,3023,4,6,f +17679,30236,72,2,f +17679,3031,71,2,f +17679,30503,1,2,f +17679,30540,15,2,f +17679,30541,0,2,f +17679,3062b,41,3,f +17679,3068b,72,1,f +17679,3068b,1,2,f +17679,3069b,0,1,f +17679,32059,72,1,f +17679,32975,36,1,f +17679,3460,4,3,f +17679,3623,70,2,f +17679,3626b,71,1,f +17679,3626cpr2111,84,1,f +17679,3626cpr2112,1,1,f +17679,3660,15,2,f +17679,3666,1,2,f +17679,3700,1,4,f +17679,3700,71,4,f +17679,3710,1,3,f +17679,3832,15,2,f +17679,4162,1,3,f +17679,41769,4,1,f +17679,41770,4,1,f +17679,4282,71,1,f +17679,4287,1,2,f +17679,43713,15,1,f +17679,4477,1,3,f +17679,4510,72,2,f +17679,4865a,4,1,f +17679,50304,4,1,f +17679,50305,4,1,f +17679,6141,41,1,t +17679,6141,41,3,f +17679,6153b,15,1,f +17679,6239,1,2,f +17679,63864,4,2,f +17679,6587,28,2,f +17679,72454,15,1,f +17679,75902pr0004,4,1,f +17679,87079,1,3,f +17679,87079,4,2,f +17679,90194,4,1,f +17679,92280,15,2,f +17679,93095,0,1,f +17679,970c00,1,1,f +17679,970c00,71,1,f +17679,970c00pr1188,1,1,f +17679,973pr3585c01,1,1,f +17679,973pr3657c01,70,1,f +17679,973pr3658c01,71,1,f +17679,98138,182,1,t +17679,98138,182,4,f +17680,10247,72,2,f +17680,10928,72,5,f +17680,11090,72,2,f +17680,11153,4,2,f +17680,11203,19,1,f +17680,11211,19,2,f +17680,11214,72,2,f +17680,11477,4,2,f +17680,13547,71,2,f +17680,13971,71,4,f +17680,14417,72,2,f +17680,14418,71,2,f +17680,15068,272,6,f +17680,15535,72,2,f +17680,15672,4,2,f +17680,18575,0,1,f +17680,18587,71,1,f +17680,18588,0,1,f +17680,18651,0,1,f +17680,21560,320,2,f +17680,2412b,72,1,f +17680,2412b,179,1,f +17680,2419,272,1,f +17680,2420,72,6,f +17680,2432,70,2,f +17680,2450,320,4,f +17680,2540,72,2,f +17680,2654,182,2,f +17680,2654,72,6,f +17680,2654,33,2,f +17680,27393,41,3,f +17680,2780,0,4,f +17680,2854,19,2,f +17680,28809,4,2,f +17680,28809,71,4,f +17680,29819,4,1,f +17680,29822,272,1,f +17680,298c02,71,2,f +17680,3002,70,1,f +17680,30029,0,1,f +17680,3005,4,2,f +17680,3020,71,4,f +17680,3020,72,2,f +17680,3021,14,1,f +17680,3021,272,1,f +17680,3022,4,2,f +17680,3022,71,2,f +17680,3023,47,2,f +17680,3023,182,1,f +17680,3023,4,5,f +17680,3023,33,1,f +17680,30236,71,2,f +17680,3062b,41,3,f +17680,3062b,71,2,f +17680,3069b,0,1,f +17680,3069b,70,3,f +17680,3070b,4,4,f +17680,3070b,15,2,f +17680,3070b,320,4,f +17680,32014,0,2,f +17680,32028,71,4,f +17680,32034,0,2,f +17680,32062,4,1,f +17680,32063,71,2,f +17680,32123b,71,4,f +17680,32123b,14,6,f +17680,32184,71,1,f +17680,32249,72,2,f +17680,32316,72,1,f +17680,32807,4,2,f +17680,3460,0,2,f +17680,3623,72,4,f +17680,3623,4,2,f +17680,3626cpr0961,78,1,f +17680,3626cpr2124,78,1,f +17680,3626cpr2184,78,1,f +17680,3648b,72,1,f +17680,3665,4,4,f +17680,3666,4,2,f +17680,3666,72,2,f +17680,3673,71,4,f +17680,3700,0,2,f +17680,3705,0,2,f +17680,3710,15,4,f +17680,3747a,272,2,f +17680,3749,19,2,f +17680,3795,4,1,f +17680,3821,4,1,f +17680,3822,4,1,f +17680,3829c01,71,1,f +17680,3894,0,2,f +17680,3937,72,2,f +17680,3938,71,2,f +17680,4032a,71,7,f +17680,4162,4,2,f +17680,41769,272,3,f +17680,41770,272,3,f +17680,42610,71,2,f +17680,44728,71,4,f +17680,4519,71,3,f +17680,48336,71,3,f +17680,52501,4,1,f +17680,53585,0,2,f +17680,54200,41,2,f +17680,54200,272,12,f +17680,57909b,72,4,f +17680,60470a,0,1,f +17680,60470a,71,1,f +17680,60477,272,4,f +17680,60478,72,4,f +17680,60485,71,2,f +17680,61254,0,4,f +17680,61409,72,2,f +17680,6141,41,3,f +17680,6141,179,14,f +17680,6141,25,12,f +17680,6141,36,2,f +17680,6231,72,2,f +17680,62360,47,1,f +17680,62810,0,1,f +17680,63864,320,2,f +17680,63869,0,1,f +17680,6589,19,2,f +17680,6636,4,2,f +17680,85984,71,1,f +17680,87079,4,1,f +17680,87079,71,1,f +17680,87083,72,3,f +17680,90609,0,2,f +17680,90641,15,2,f +17680,92013,15,2,f +17680,92013,0,4,f +17680,92593,320,4,f +17680,93273pr0002,4,1,f +17680,93274,4,1,f +17680,93606,4,2,f +17680,95199,0,1,f +17680,970c00,0,1,f +17680,970c00pr1193,4,1,f +17680,970c00pr9998,272,1,f +17680,973pr3672c01,0,1,f +17680,973pr3673c01,4,1,f +17680,973pr3674c01,4,1,f +17680,98138,47,4,f +17680,98282,4,4,f +17680,98313,72,6,f +17680,98385,70,1,f +17680,99207,0,4,f +17680,99780,0,4,f +17680,99781,71,4,f +17680,99930,308,1,f +17713,2302,10,1,f +17713,2312c02,14,1,f +17713,3011,14,2,f +17713,3011,10,2,f +17713,3011,1,2,f +17713,3011,73,2,f +17713,3011,4,3,f +17713,3011,0,2,f +17713,3011,27,1,f +17713,3437,484,2,f +17713,3437,27,6,f +17713,3437,1,6,f +17713,3437,4,9,f +17713,3437,10,6,f +17713,3437,73,6,f +17713,3437,0,4,f +17713,3437,14,6,f +17713,40666,4,2,f +17713,40666,14,2,f +17713,40666,1,2,f +17713,4672,10,1,f +17713,63710pr0004c01,10,1,f +17713,6474,4,2,f +17752,11344pr0007,4,1,f +17752,2302,25,1,f +17752,98223,14,2,f +17752,98224,4,2,f +17752,98233,4,1,f +17763,11203,15,4,f +17763,11211,19,7,f +17763,11211,0,7,f +17763,11213,0,4,f +17763,11213,15,3,f +17763,11477,15,1,f +17763,14719,71,8,f +17763,15068,15,3,f +17763,15068pr0014,15,1,f +17763,15207,15,4,f +17763,15397,19,1,f +17763,15571,71,2,f +17763,15573,14,4,f +17763,15573,0,4,f +17763,15573,19,5,f +17763,22885,71,1,f +17763,23950,15,1,f +17763,2412b,15,4,f +17763,24246,15,3,f +17763,24309,15,1,f +17763,2431,15,3,f +17763,2431,0,4,f +17763,2445,15,3,f +17763,25269,71,6,f +17763,2540,14,1,f +17763,26603,15,3,f +17763,26604,0,4,f +17763,3001,15,1,f +17763,3001,19,5,f +17763,3002,15,2,f +17763,3002,19,1,f +17763,3003,0,2,f +17763,3003,15,1,f +17763,3004,0,6,f +17763,3004,15,8,f +17763,3005,19,13,f +17763,3008,19,6,f +17763,3009,19,5,f +17763,3010,0,3,f +17763,3010,15,3,f +17763,3010,19,2,f +17763,3020,19,4,f +17763,3020,15,4,f +17763,3021,15,4,f +17763,3021,19,8,f +17763,3021,72,8,f +17763,3022,14,4,f +17763,3022,15,8,f +17763,3023,0,12,f +17763,3023,15,16,f +17763,3023,14,12,f +17763,3023,19,4,f +17763,3024,19,19,f +17763,3024,15,16,f +17763,3024,40,23,f +17763,3031,14,1,f +17763,3032,19,1,f +17763,3033,0,4,f +17763,3034,15,2,f +17763,3034,19,1,f +17763,30357,19,1,f +17763,3036,0,4,f +17763,3040b,15,3,f +17763,30414,0,12,f +17763,30414,19,4,f +17763,30503,71,1,f +17763,30505,0,1,f +17763,3068b,71,4,f +17763,3068b,15,4,f +17763,3068b,72,6,f +17763,3069b,72,4,f +17763,3069b,15,3,f +17763,3069b,71,8,f +17763,3070b,15,7,f +17763,3070b,72,2,f +17763,3070b,14,3,f +17763,3070b,19,103,f +17763,3070b,40,15,f +17763,3245b,72,7,f +17763,3460,72,4,f +17763,3622,15,4,f +17763,3622,19,6,f +17763,3623,19,9,f +17763,3623,0,12,f +17763,3623,71,8,f +17763,3623,15,7,f +17763,3660,15,1,f +17763,3666,72,4,f +17763,3666,19,3,f +17763,3666,15,2,f +17763,3710,15,11,f +17763,3795,15,2,f +17763,3795,19,3,f +17763,3795,0,1,f +17763,3832,71,1,f +17763,3832,19,2,f +17763,4032a,14,4,f +17763,4070,19,2,f +17763,4070,0,23,f +17763,4162,15,1,f +17763,4162,19,1,f +17763,4162,0,8,f +17763,4162,71,1,f +17763,4162,72,3,f +17763,4162pr0050a,15,1,f +17763,4282,15,1,f +17763,43898,71,1,f +17763,44375a,71,1,f +17763,48092,15,1,f +17763,4865b,15,2,f +17763,50950,15,11,f +17763,50990b,378,1,f +17763,51739,378,2,f +17763,54200,15,3,f +17763,60479,72,2,f +17763,6081,15,2,f +17763,60897,19,1,f +17763,6141,71,1,f +17763,61678,15,10,f +17763,6177,71,1,f +17763,6179,15,1,f +17763,6231,15,5,f +17763,63864,71,4,f +17763,63864,15,7,f +17763,6636,71,8,f +17763,6636,72,1,f +17763,6636,326,1,f +17763,85984,15,6,f +17763,87079,19,3,f +17763,87079,71,3,f +17763,87079,326,6,f +17763,87079,15,2,f +17763,87087,15,7,f +17763,87580,0,4,f +17763,87609,71,1,f +17763,91501,15,2,f +17763,91988,19,1,f +17763,92593,0,7,f +17763,93606,15,6,f +17763,96874,25,1,f +17763,98138,326,1,f +17763,98138,40,3,f +17763,99206,15,7,f +17785,11153,70,2,f +17785,11408pr0103c01,0,1,f +17785,11477,0,2,f +17785,11477,158,6,f +17785,11610,0,3,f +17785,13349,4,1,f +17785,14419,72,2,f +17785,14704,71,1,f +17785,14719,0,2,f +17785,14732pr0004,321,1,f +17785,14769,158,6,f +17785,14769pr1042,27,1,f +17785,15068,322,1,f +17785,15068,158,9,f +17785,15068,10,2,f +17785,15070,27,7,f +17785,15208,0,2,f +17785,15209,0,5,f +17785,15573,72,1,f +17785,15573,70,2,f +17785,15573,158,4,f +17785,15712,297,5,f +17785,16770,0,8,f +17785,17114,0,1,f +17785,18651,0,3,f +17785,18653,0,2,f +17785,22388,41,1,t +17785,22388,35,2,f +17785,22388,35,1,t +17785,22388,41,3,f +17785,22667,26,1,t +17785,22667,26,1,f +17785,22890,72,1,f +17785,23443,0,5,f +17785,24183pr0005,212,1,f +17785,24196pr0005,158,1,f +17785,24199,26,1,f +17785,2420,4,3,f +17785,2420,27,2,f +17785,24201,26,7,f +17785,2423,85,1,f +17785,24316,70,2,f +17785,24482,0,1,f +17785,24482,0,1,t +17785,25269,322,1,t +17785,25269,322,1,f +17785,26047,0,8,f +17785,2654,26,3,f +17785,28849pr0043,31,1,f +17785,28965,15,1,f +17785,3005,33,5,f +17785,3010,72,1,f +17785,30153,35,1,f +17785,3020,72,2,f +17785,3021,4,1,f +17785,3022,27,3,f +17785,3022,0,2,f +17785,3023,0,4,f +17785,3023,72,2,f +17785,3023,158,6,f +17785,3023,4,1,f +17785,3023,1,6,f +17785,3023,27,3,f +17785,3024,72,2,f +17785,3024,26,3,f +17785,3024,26,1,t +17785,3024,72,1,t +17785,3024,0,2,f +17785,3024,0,1,t +17785,3032,70,1,f +17785,3034,72,1,f +17785,30357,4,2,f +17785,30357,2,1,f +17785,30357,158,2,f +17785,30383,0,4,f +17785,30385,35,1,f +17785,3040b,71,3,f +17785,3065,52,2,f +17785,3069b,33,1,f +17785,3069b,85,3,f +17785,3069b,26,2,f +17785,3069bpr0187,35,1,f +17785,31516,78,1,f +17785,31581,288,1,f +17785,3176,4,2,f +17785,32014,0,1,f +17785,32064a,0,4,f +17785,33291,5,1,t +17785,33291,5,2,f +17785,3622,71,1,f +17785,3623,72,2,f +17785,3659,71,2,f +17785,3678b,71,2,f +17785,3701,27,2,f +17785,3705,0,1,f +17785,3710,27,1,f +17785,3710,0,2,f +17785,3710,158,4,f +17785,3957a,0,1,f +17785,41669,33,1,f +17785,43093,1,2,f +17785,43713,4,1,f +17785,44302a,72,4,f +17785,44728,72,4,f +17785,44728,0,2,f +17785,4519,71,1,f +17785,49668,4,1,f +17785,49668,0,6,f +17785,50923,72,2,f +17785,50950,158,2,f +17785,51342pat0011,158,2,f +17785,53451,0,4,f +17785,53451,0,1,t +17785,53585,0,1,t +17785,53585,0,2,f +17785,54200,158,2,f +17785,54200,52,4,f +17785,54200,158,1,t +17785,57909b,72,1,f +17785,6003,2,1,f +17785,6005,0,2,f +17785,60470a,0,2,f +17785,60478,0,1,f +17785,60478,4,2,f +17785,60897,71,1,f +17785,6091,322,1,f +17785,6141,0,1,t +17785,6141,0,4,f +17785,6141,158,3,f +17785,6141,158,2,t +17785,63864,71,2,f +17785,64728,4,1,f +17785,6541,71,2,f +17785,85861,297,1,t +17785,85861,297,4,f +17785,87079,1,1,f +17785,87552,40,2,f +17785,87580,0,1,f +17785,87580,85,1,f +17785,87580,71,1,f +17785,87747,0,1,t +17785,87747,0,7,f +17785,87994,70,2,f +17785,87994,70,1,t +17785,88072,72,1,f +17785,88292,0,2,f +17785,90202,0,1,f +17785,90609,0,2,f +17785,90640,158,2,f +17785,92013,0,3,f +17785,92013,4,1,f +17785,92280,71,2,f +17785,92819pr0104c01,0,1,f +17785,93095,70,1,f +17785,93273,70,1,f +17785,93571,72,3,f +17785,98138,27,4,f +17785,98138,27,1,t +17785,98138pr0014,297,1,f +17785,98138pr0014,297,1,t +17785,98138pr0073,0,1,f +17785,98138pr0073,0,1,t +17785,99207,4,4,f +17785,99780,72,2,f +17785,99781,0,2,f +17793,10247,0,8,f +17793,11211,71,4,f +17793,11212,72,2,f +17793,11213,71,1,f +17793,11301,72,2,f +17793,11477,1,12,f +17793,13971,71,1,f +17793,14704,71,9,f +17793,14769,71,2,f +17793,14769,4,1,f +17793,15068,1,4,f +17793,15208,15,6,f +17793,15392,72,2,f +17793,15403,71,2,f +17793,15573,19,6,f +17793,15712,72,1,f +17793,17010,148,2,f +17793,18651,0,3,f +17793,18674,72,4,f +17793,22390,25,1,f +17793,23186,84,1,f +17793,2357,72,2,f +17793,2412b,72,2,f +17793,2420,1,5,f +17793,24201,71,2,f +17793,2431,1,2,f +17793,2431,25,2,f +17793,2431,72,1,f +17793,2450,1,4,f +17793,2450,71,2,f +17793,2540,72,2,f +17793,2654,41,6,f +17793,26603,0,1,f +17793,26604,19,4,f +17793,2780,0,9,f +17793,28959,5,4,f +17793,3001,322,1,f +17793,3003,19,1,f +17793,3009,71,2,f +17793,30136,71,1,f +17793,30137,71,2,f +17793,30157,72,4,f +17793,30162,72,2,f +17793,30173b,179,1,f +17793,3020,4,2,f +17793,3020,71,2,f +17793,3020,19,2,f +17793,3021,25,4,f +17793,3022,27,2,f +17793,3023,320,6,f +17793,3023,41,3,f +17793,3023,25,17,f +17793,3024,46,2,f +17793,3024,0,2,f +17793,3024,14,4,f +17793,3032,71,1,f +17793,3034,1,1,f +17793,3034,15,1,f +17793,3037,72,2,f +17793,3039,0,1,f +17793,3040b,19,2,f +17793,30503,71,2,f +17793,3062b,71,2,f +17793,3062b,27,2,f +17793,32001,1,2,f +17793,32064a,72,1,f +17793,32123b,14,2,f +17793,32316,1,2,f +17793,3245b,72,2,f +17793,32531,71,2,f +17793,32759,148,1,f +17793,32912,70,1,f +17793,33370,0,1,f +17793,33375,47,1,f +17793,34432,71,1,f +17793,3460,71,3,f +17793,3623,72,4,f +17793,3623,29,4,f +17793,3626cpr1467,78,1,f +17793,3626cpr2239,71,1,f +17793,3626cpr2240,321,1,f +17793,3626cpr2241,27,1,f +17793,3648b,72,2,f +17793,3666,19,8,f +17793,3701,72,3,f +17793,3702,0,2,f +17793,3709,72,2,f +17793,3710,0,2,f +17793,3738,71,2,f +17793,3747a,72,1,f +17793,3795,71,1,f +17793,3941,70,2,f +17793,4032a,4,9,f +17793,4032a,84,4,f +17793,40378,5,3,f +17793,4070a,73,1,f +17793,4162,0,2,f +17793,41767,72,1,f +17793,41768,72,1,f +17793,41769,1,3,f +17793,41770,1,3,f +17793,42446,72,2,f +17793,43093,1,1,f +17793,43722,4,2,f +17793,43722,71,1,f +17793,43722,25,3,f +17793,43722,1,2,f +17793,43723,25,3,f +17793,43723,1,2,f +17793,43723,71,1,f +17793,43723,4,2,f +17793,43898,72,2,f +17793,44302a,72,2,f +17793,44676,72,2,f +17793,44728,72,2,f +17793,44728,0,4,f +17793,4477,1,2,f +17793,4519,71,2,f +17793,47406,72,1,f +17793,47457,72,2,f +17793,47753,5,2,f +17793,47973,72,2,f +17793,48336,0,2,f +17793,48336,19,4,f +17793,48933,1,3,f +17793,50304,25,1,f +17793,50304,71,4,f +17793,50305,71,4,f +17793,50305,25,1,f +17793,50955,1,1,f +17793,50956,1,1,f +17793,51739,320,2,f +17793,54200,29,5,f +17793,54383,1,2,f +17793,54384,1,2,f +17793,60470a,14,6,f +17793,60474,4,1,f +17793,60476,0,2,f +17793,60477,71,2,f +17793,60484,72,2,f +17793,60897,71,1,f +17793,6106,71,2,f +17793,61252,0,4,f +17793,6141,52,8,f +17793,6141,4,6,f +17793,6141,29,1,f +17793,6141,72,5,f +17793,61482,71,1,f +17793,62361,72,2,f +17793,62462,4,1,f +17793,63864,25,2,f +17793,63965,0,2,f +17793,6558,1,4,f +17793,6628,0,9,f +17793,6636,25,2,f +17793,6636,71,2,f +17793,73983,0,1,f +17793,73983,15,1,f +17793,76766,71,1,f +17793,85984,25,2,f +17793,87087,15,4,f +17793,87580,72,2,f +17793,92280,4,4,f +17793,92280,71,2,f +17793,970c00,85,1,f +17793,970c00pr1102,0,2,f +17793,970c00pr1269,272,1,f +17793,973pr3796c01,71,1,f +17793,973pr3824c01,85,1,f +17793,973pr3825c01,72,1,f +17793,973pr3826c01,72,1,f +17793,98138,71,3,f +17793,98138pr0058,70,2,f +17793,99207,71,2,f +17793,99780,4,2,f +17793,99781,71,4,f +17799,3081bc01,15,15,f +17816,10048,308,1,f +17816,10201,0,1,f +17816,11291,0,1,f +17816,15068,0,2,f +17816,18868b01,46,1,f +17816,19981pr0045,46,1,f +17816,21445,71,4,f +17816,2420,0,2,f +17816,24299,0,1,f +17816,24307,0,1,f +17816,30028,0,4,f +17816,3020,71,2,f +17816,3020,0,2,f +17816,3022,0,1,f +17816,3023,40,2,f +17816,3023,36,5,f +17816,3023,0,5,f +17816,3069b,0,1,f +17816,3069b,40,2,f +17816,3941,46,1,f +17816,50947,0,2,f +17816,54200,0,1,t +17816,54200,0,2,f +17816,54200,40,1,t +17816,54200,40,4,f +17816,74967,0,4,f +17816,970c00,379,1,f +17816,973pr3500c01,0,1,f +17826,11153,0,2,f +17826,11211,15,1,f +17826,11476,71,2,f +17826,11477,0,2,f +17826,11477,1,6,f +17826,15068,1,3,f +17826,15068,0,1,f +17826,15712,0,2,f +17826,18653,0,2,f +17826,18974,1,2,f +17826,18974,0,2,f +17826,18975,72,2,f +17826,18976,0,4,f +17826,18977,0,4,f +17826,20482,0,2,f +17826,2420,0,6,f +17826,2420,1,2,f +17826,24201,0,2,f +17826,24299,0,2,f +17826,24307,0,2,f +17826,24308,0,1,f +17826,2446,1,1,f +17826,2447,40,1,f +17826,2877,71,2,f +17826,29119,1,1,f +17826,29119,0,1,f +17826,29120,1,1,f +17826,29120,0,1,f +17826,3002,72,1,f +17826,30029,0,1,f +17826,3020,0,1,f +17826,3020,1,1,f +17826,3021,19,1,f +17826,3021,0,2,f +17826,3022,15,1,f +17826,3022,1,2,f +17826,3023,0,7,f +17826,3023,19,6,f +17826,3023,1,6,f +17826,30236,19,1,f +17826,3024,0,2,f +17826,3024,25,3,f +17826,3062b,0,2,f +17826,3068b,0,2,f +17826,3069b,0,3,f +17826,3069b,1,2,f +17826,3070b,0,2,f +17826,30890,9999,1,f +17826,31936,40,1,f +17826,3623,1,4,f +17826,3623,0,2,f +17826,3626cpr1579,14,1,f +17826,3666,0,2,f +17826,3710,0,5,f +17826,3749,19,4,f +17826,3829c01,71,1,f +17826,4006,0,1,f +17826,44728,0,1,f +17826,50950,19,2,f +17826,50950,1,2,f +17826,51739,0,1,f +17826,59900,25,3,f +17826,6141,0,12,f +17826,6141,14,8,f +17826,6231,1,2,f +17826,63864,0,2,f +17826,64567,71,2,f +17826,64727,0,1,f +17826,85544,4,1,f +17826,85984,19,2,f +17826,85984,0,2,f +17826,92946,0,2,f +17826,93061,72,1,f +17826,970x023,272,1,f +17826,973pr3792c01,272,1,f +17826,98834,0,1,f +17826,99206,71,1,f +17826,99206,1,3,f +17826,99207,1,2,f +17827,11090,297,1,f +17827,11407pr0113,321,1,f +17827,11816pr0019,78,1,f +17827,14769pr1042,27,1,f +17827,15068,322,2,f +17827,15070,322,2,f +17827,15070,27,2,f +17827,15573,297,1,f +17827,19201pr0001,323,1,f +17827,22667,27,1,t +17827,22667,27,1,f +17827,2423,26,1,f +17827,2460,71,1,f +17827,2540,322,1,f +17827,28849pr0041,158,1,f +17827,28870,297,1,f +17827,3003,2,2,f +17827,3003,71,1,f +17827,3010,2,1,f +17827,30153,35,2,f +17827,30153,47,1,f +17827,3023,70,2,f +17827,3068b,322,1,f +17827,3068bpr0331,19,1,f +17827,3069bpr0187,35,1,f +17827,32062,4,1,f +17827,33057,484,1,f +17827,33183,70,1,t +17827,33183,70,1,f +17827,33291,4,1,t +17827,33291,5,2,f +17827,33291,27,1,t +17827,33291,4,1,f +17827,33291,27,2,f +17827,33291,5,1,t +17827,3460,322,2,f +17827,3626c,143,1,f +17827,43713,70,2,f +17827,43719,272,2,f +17827,47458,297,1,f +17827,6003,322,1,f +17827,60481,71,2,f +17827,6141,85,2,f +17827,6141,297,1,t +17827,6141,297,1,f +17827,6141,85,1,t +17827,6215,2,2,f +17827,6266,0,1,t +17827,6266,0,1,f +17827,64644,308,1,f +17827,87580,27,1,f +17827,88289,308,1,f +17827,92456pr0218c01,78,1,f +17827,92593,272,2,f +17827,92907,0,1,f +17827,93092,5,1,f +17827,93095,322,1,f +17827,98138,33,1,t +17827,98138,33,1,f +17827,98138pr0051,297,1,t +17827,98138pr0051,297,1,f +17827,98560,71,1,f +17848,3004,4,8,f +17848,3005,4,6,f +17848,3008,4,2,f +17848,3009,4,2,f +17848,3010,4,2,f +17849,3004,15,8,f +17849,3005,15,6,f +17849,3008,15,2,f +17849,3009,15,2,f +17849,3010,15,2,f +17850,3004,1,8,f +17850,3005,1,6,f +17850,3008,1,2,f +17850,3009,1,2,f +17850,3010,1,2,f +17851,3004,0,4,f +17851,3004,47,4,f +17851,3005,0,3,f +17851,3005,47,3,f +17851,3008,47,1,f +17851,3008,0,1,f +17851,3009,0,1,f +17851,3009,47,1,f +17851,3010,0,1,f +17851,3010,47,1,f +17907,18031,148,1,f +17907,22402,179,1,f +17907,28192,272,2,f +17907,3023,0,1,f +17907,30374,0,2,f +17907,3626cpr1786,14,1,f +17907,41879a,0,1,f +17907,44676,272,2,f +17907,59900,57,2,f +17907,61252,72,2,f +17907,64567,272,2,f +17907,89520,148,1,f +17907,973pr3435c01,0,1,f +17911,11214,72,1,f +17911,18587,71,1,f +17911,18588,72,1,f +17911,18975,72,1,f +17911,18980,71,2,f +17911,22388,57,2,f +17911,22402,57,1,f +17911,23860,179,2,f +17911,27170,85,1,f +17911,27256,41,1,f +17911,2817,0,1,f +17911,28192,272,2,f +17911,3020,1,2,f +17911,3021,72,1,f +17911,3023,72,1,f +17911,30273,1,1,f +17911,30350b,57,1,f +17911,32016,25,2,f +17911,32073,71,1,f +17911,32123b,71,4,f +17911,32556,19,2,f +17911,3626cpr1817,179,1,f +17911,3626cpr2065,379,1,f +17911,3648b,72,1,f +17911,3700,71,1,f +17911,3701,1,1,f +17911,3706,4,1,f +17911,3737,0,2,f +17911,3894,0,1,f +17911,4081b,72,2,f +17911,41531,148,2,f +17911,4185,57,2,f +17911,4497,148,1,f +17911,4519,14,1,f +17911,47905,72,1,f +17911,4865b,57,1,f +17911,54200,272,2,f +17911,54200,72,1,f +17911,59443,71,2,f +17911,59900,71,2,f +17911,60477,272,2,f +17911,60484,72,1,f +17911,6118,148,1,f +17911,61184,71,1,f +17911,61409,25,2,f +17911,6141,57,14,f +17911,6553,0,2,f +17911,6587,28,2,f +17911,85861,0,5,f +17911,87082,0,1,f +17911,87087,71,4,f +17911,93273,1,1,f +17911,970c00pr0968,71,1,f +17911,970c00pr1153,379,1,f +17911,973pr3190c01,71,1,f +17911,973pr3602c01,379,1,f +17911,99021,72,1,f +17912,10247,72,2,f +17912,11458,0,2,f +17912,11477,85,4,f +17912,14682,71,2,f +17912,14769,71,4,f +17912,15070,15,2,f +17912,15082,85,2,f +17912,15392,72,1,f +17912,16770,41,4,f +17912,18980,0,1,f +17912,22380,2,1,f +17912,22385pr0041,52,1,f +17912,22388,179,3,f +17912,22394,57,1,f +17912,22402,297,1,f +17912,22408,179,1,f +17912,22409,0,1,f +17912,22484,57,2,f +17912,22487,179,1,f +17912,2412b,297,1,f +17912,24201,0,2,f +17912,24316,70,2,f +17912,2540,72,2,f +17912,2655,71,1,f +17912,2714a,0,1,f +17912,27256,41,1,f +17912,27257,57,2,f +17912,27261,72,3,f +17912,2730,0,4,f +17912,2780,0,2,f +17912,28350,179,1,f +17912,29161,85,2,f +17912,30000,1,1,f +17912,3010,0,2,f +17912,3022,1,3,f +17912,3023,85,8,f +17912,30237b,72,2,f +17912,3031,0,1,f +17912,3039,71,2,f +17912,3040b,85,2,f +17912,3062b,41,4,f +17912,32034,0,1,f +17912,32059,72,1,f +17912,32062,0,1,f +17912,32123b,71,8,f +17912,32184,0,1,f +17912,3464,72,1,f +17912,3626cpr1781,14,1,f +17912,3626cpr1861,14,1,f +17912,3626cpr2100,379,1,f +17912,3660,85,1,f +17912,3666,85,1,f +17912,3678pr0056,0,1,f +17912,3700,19,2,f +17912,3701,1,1,f +17912,3706,0,1,f +17912,3710,28,1,f +17912,3713,71,2,f +17912,41677,72,1,f +17912,4175,72,1,f +17912,41769,72,1,f +17912,41770,72,1,f +17912,4185,41,2,f +17912,4274,1,4,f +17912,4460b,72,2,f +17912,4477,72,2,f +17912,4590,72,1,f +17912,4733,72,1,f +17912,4740pr0004b,52,1,f +17912,47457,297,1,f +17912,47847,41,1,f +17912,47905,71,1,f +17912,48336,0,2,f +17912,53451,0,2,f +17912,54200,73,6,f +17912,60470a,71,2,f +17912,60476,0,2,f +17912,60477,72,2,f +17912,60594,0,2,f +17912,60596,0,1,f +17912,60621,71,1,f +17912,60897,72,2,f +17912,61184,71,1,f +17912,6134,71,1,f +17912,6141,14,2,f +17912,6141,41,9,f +17912,6180,71,1,f +17912,62113,72,2,f +17912,63868,0,2,f +17912,63965,72,1,f +17912,64711,72,2,f +17912,64807,308,1,f +17912,87083,72,4,f +17912,87620,72,4,f +17912,87994,70,1,f +17912,88072,72,1,f +17912,92082,212,1,f +17912,92099,0,1,f +17912,92107,72,1,f +17912,92950,85,2,f +17912,93274,14,1,f +17912,970c00pr1141,72,1,f +17912,970c00pr1186,297,1,f +17912,973pr3583c01,72,1,f +17912,973pr3640c01,0,1,f +17912,973pr3651c01,321,1,f +17912,98283,72,2,f +17912,99021,72,1,f +17912,99781,0,1,f +17926,11092,85,2,f +17926,11127,41,1,f +17926,11302pat0001,52,2,f +17926,11458,72,2,f +17926,14769,85,1,f +17926,15712,0,2,f +17926,18975,72,1,f +17926,22380,191,1,f +17926,22385pr0042,46,1,f +17926,22385pr0043,236,1,f +17926,22388,41,2,t +17926,22388,41,16,f +17926,22395,57,1,f +17926,22407,57,1,f +17926,22408,179,1,f +17926,22409,0,1,f +17926,24101,179,1,f +17926,24104,179,1,f +17926,24128,179,1,f +17926,2412b,1,2,f +17926,24201,0,2,f +17926,26599,71,1,f +17926,27254,72,2,f +17926,27256,41,2,f +17926,27257,57,1,f +17926,27257,57,1,t +17926,2780,0,12,f +17926,2780,0,1,t +17926,28192,85,2,f +17926,28795,85,1,f +17926,28847,85,1,f +17926,29710,71,1,f +17926,298c02,0,2,f +17926,298c02,0,1,t +17926,30000,72,3,f +17926,3001,0,3,f +17926,3003,85,1,f +17926,3008,0,2,f +17926,3010,29,1,f +17926,3010,71,2,f +17926,3020,0,3,f +17926,3021,71,5,f +17926,3022,72,5,f +17926,3023,71,8,f +17926,3023,41,3,f +17926,30236,0,1,f +17926,3024,72,1,t +17926,3024,72,2,f +17926,30294,72,1,f +17926,3032,0,1,f +17926,3033,0,1,f +17926,3037,72,2,f +17926,30374,57,1,f +17926,30374,0,2,f +17926,3039,71,2,f +17926,3039,72,4,f +17926,3040b,72,6,f +17926,30414,14,1,f +17926,3045,85,2,f +17926,3062b,41,2,f +17926,32015,71,2,f +17926,32054,71,2,f +17926,32059,85,1,f +17926,32062,4,2,f +17926,32063,0,4,f +17926,32278,71,2,f +17926,32474pr1010,379,2,f +17926,32474pr1011,379,1,f +17926,32526,0,2,f +17926,32556,19,6,f +17926,33299a,71,2,f +17926,3622,73,4,f +17926,3626cpr1784,14,1,f +17926,3626cpr2060,379,1,f +17926,3626cpr2066,379,1,f +17926,3660,0,1,f +17926,3666,85,1,f +17926,3673,71,1,t +17926,3673,71,4,f +17926,3700,72,2,f +17926,3701,0,4,f +17926,3702,0,2,f +17926,3710,71,3,f +17926,3795,0,1,f +17926,3832,72,2,f +17926,3895,72,2,f +17926,3937,0,4,f +17926,4070,72,2,f +17926,4081b,72,2,f +17926,41879a,379,1,f +17926,4274,1,4,f +17926,4274,1,1,t +17926,43093,1,2,f +17926,44728,72,2,f +17926,47759,72,2,f +17926,54200,72,2,t +17926,54200,72,6,f +17926,59426,72,2,f +17926,60474,212,2,f +17926,60481,72,6,f +17926,6066,85,1,f +17926,61252,71,1,f +17926,6134,71,4,f +17926,6141,41,4,f +17926,6141,41,1,t +17926,62113,72,2,f +17926,63868,72,6,f +17926,64867,85,4,f +17926,85984,71,4,f +17926,87079,0,1,f +17926,87081,72,2,f +17926,92338,0,1,f +17926,92690,71,1,f +17926,93274,0,2,f +17926,970c00pr1142,72,1,f +17926,970c00pr1145,379,1,f +17926,973pr3589c01,379,2,f +17926,98585,41,4,f +17926,99206,71,1,f +17926,99207,71,4,f +17943,11203,72,4,f +17943,11211,71,2,f +17943,11214,72,4,f +17943,11272,148,4,f +17943,11458,72,2,f +17943,11477,272,8,f +17943,11477,321,2,f +17943,14417,72,3,f +17943,14419,72,2,f +17943,14704,71,6,f +17943,15092,72,12,f +17943,15207,321,4,f +17943,15462,70,2,f +17943,15571,321,1,f +17943,15672,321,6,f +17943,15712,72,2,f +17943,18587,71,3,f +17943,18588,72,3,f +17943,18654,179,2,f +17943,22380,1,1,f +17943,22385pr0063,52,1,f +17943,22385pr0064,36,1,f +17943,22385pr0073,33,1,f +17943,22388,179,12,f +17943,22391,272,2,f +17943,22392,72,2,f +17943,22393,57,1,f +17943,22408,179,1,f +17943,22409,0,1,f +17943,22889,0,2,f +17943,24078,71,1,f +17943,24108,57,1,f +17943,2412b,321,2,f +17943,2412b,272,2,f +17943,2412b,25,7,f +17943,2419,272,3,f +17943,24316,70,1,f +17943,2445,25,1,f +17943,2446,1,1,f +17943,2456,72,1,f +17943,2540,72,3,f +17943,2594,1,1,f +17943,2653,71,2,f +17943,27165,57,1,f +17943,27256,41,4,f +17943,27262,272,1,f +17943,27263,272,4,f +17943,27263,321,10,f +17943,27266,73,1,f +17943,2736,71,2,f +17943,2780,0,33,f +17943,27934,57,6,f +17943,2817,71,9,f +17943,28192,272,2,f +17943,28350,179,1,f +17943,28660,379,2,f +17943,29053,47,1,f +17943,29457,379,1,f +17943,29461,379,1,f +17943,29493,379,1,f +17943,3004,72,2,f +17943,3004,272,2,f +17943,3020,71,3,f +17943,3020,72,4,f +17943,3021,25,4,f +17943,3021,1,1,f +17943,3022,71,3,f +17943,3023,71,4,f +17943,30297,379,1,f +17943,30363,72,1,f +17943,3039,272,1,f +17943,3070bpr0155,1,1,f +17943,32013,0,2,f +17943,32015,179,2,f +17943,32016,0,2,f +17943,32034,25,2,f +17943,32054,71,4,f +17943,32062,4,2,f +17943,32064a,72,5,f +17943,32124,1,2,f +17943,32271,1,2,f +17943,32524,72,2,f +17943,32525,71,2,f +17943,32526,1,8,f +17943,32529,0,2,f +17943,32530,0,2,f +17943,32555,0,2,f +17943,3460,71,4,f +17943,3623,321,2,f +17943,3626cpr1782,14,1,f +17943,3626cpr2144,179,1,f +17943,3673,71,6,f +17943,3701,71,2,f +17943,3702,71,2,f +17943,3710,272,3,f +17943,3747a,72,2,f +17943,3749,19,2,f +17943,3795,25,2,f +17943,3894,72,1,f +17943,3895,0,2,f +17943,40490,25,6,f +17943,41239,72,2,f +17943,41678,72,2,f +17943,42003,272,2,f +17943,4274,1,20,f +17943,4282,72,2,f +17943,43093,1,4,f +17943,43710,272,3,f +17943,43711,272,3,f +17943,43722,1,1,f +17943,43723,1,1,f +17943,44567a,71,1,f +17943,44728,72,2,f +17943,4510,72,2,f +17943,4519,14,6,f +17943,4519,71,2,f +17943,4738a,179,1,f +17943,47397,272,2,f +17943,47398,272,2,f +17943,4739a,57,1,f +17943,47456,85,2,f +17943,47457,85,2,f +17943,47507,72,1,f +17943,48336,1,1,f +17943,4871,72,1,f +17943,48729b,71,2,f +17943,51739,72,1,f +17943,53451,0,4,f +17943,54200,272,2,f +17943,54200,85,2,f +17943,54200,41,4,f +17943,55982,71,2,f +17943,59232,179,1,f +17943,59426,72,1,f +17943,59443,25,1,f +17943,59443,71,1,f +17943,59900,57,4,f +17943,60208,72,3,f +17943,60470a,0,3,f +17943,60471,25,1,f +17943,60478,1,2,f +17943,60481,321,4,f +17943,60483,72,2,f +17943,6070,57,1,f +17943,61184,71,2,f +17943,61409,25,2,f +17943,6141,1,10,f +17943,6141,57,30,f +17943,61800,321,2,f +17943,63864,272,2,f +17943,64451,72,2,f +17943,6541,72,2,f +17943,6558,1,8,f +17943,6628,0,5,f +17943,6636,321,4,f +17943,76764,179,1,f +17943,85861,71,4,f +17943,85943,72,2,f +17943,85984,85,3,f +17943,85984pr0143,72,1,f +17943,87079,272,2,f +17943,87609,71,2,f +17943,88646,71,2,f +17943,92280,0,4,f +17943,93062c02,179,2,f +17943,93571,0,1,f +17943,93609,41,1,f +17943,970c00pr1140,71,1,f +17943,973pr3582c01,71,1,f +17943,98313,72,4,f +17943,98578,41,1,f +17943,99206,71,2,f +17943,99207,71,1,f +17943,99780,72,2,f +17950,11477,70,5,f +17950,15208,0,4,f +17950,2540,0,1,f +17950,3020,72,1,f +17950,3020,70,1,f +17950,3022,0,1,f +17950,3023,72,1,f +17950,3024,70,5,f +17950,3024,70,1,t +17950,3068b,72,1,f +17950,3069b,308,1,f +17950,3795,70,1,f +17950,4032a,19,1,f +17950,50950,308,4,f +17950,63868,70,1,f +17950,73983,71,4,f +17950,85984,72,1,f +17950,98138pr0008,15,2,f +17950,98138pr0008,15,1,t +17950,99206,70,1,f +17951,11203,72,1,f +17951,11458,72,1,f +17951,13349,72,2,f +17951,14395,70,2,f +17951,14417,72,4,f +17951,14419,72,4,f +17951,14704,71,6,f +17951,15082,85,2,f +17951,15303,57,3,f +17951,15392,72,1,f +17951,15400,72,2,f +17951,15571pr0001,0,1,f +17951,15573,272,4,f +17951,15712,72,1,f +17951,16770,85,3,f +17951,18587,71,1,f +17951,18588,41,1,f +17951,22380,2,1,f +17951,22385pr0031,36,1,f +17951,22385pr0072,35,1,f +17951,22391,272,2,f +17951,22392,2,2,f +17951,22394,57,1,f +17951,22408,179,1,f +17951,22410,148,1,f +17951,22483,57,1,f +17951,22484,35,2,f +17951,22487,179,1,f +17951,22890,72,2,f +17951,24078,71,1,f +17951,2412b,25,2,f +17951,2423,326,2,f +17951,2476a,28,4,f +17951,2540,71,2,f +17951,2569,71,1,f +17951,26603,19,1,f +17951,27257,57,2,f +17951,27262,272,1,f +17951,2815,0,2,f +17951,28192,72,1,f +17951,28192,272,2,f +17951,28350,179,1,f +17951,30000,72,2,f +17951,3003,71,1,f +17951,3004,72,1,f +17951,3020,72,1,f +17951,3020,272,1,f +17951,3020,70,1,f +17951,3022,70,2,f +17951,3022,27,6,f +17951,3022,71,5,f +17951,3023,72,1,f +17951,3023,71,3,f +17951,3031,0,2,f +17951,3031,70,1,f +17951,3039,72,2,f +17951,3062b,57,2,f +17951,3062b,71,1,f +17951,3069b,70,2,f +17951,3069bpr0169,15,1,f +17951,3070bpr0176,2,1,f +17951,32013,71,5,f +17951,32014,72,2,f +17951,32062,4,4,f +17951,32064a,4,1,f +17951,32064a,72,1,f +17951,32073,14,1,f +17951,32192,0,1,f +17951,32531,0,1,f +17951,3298,72,1,f +17951,3623,71,2,f +17951,3626cpr1781,14,1,f +17951,3626cpr2176,179,1,f +17951,3660,71,2,f +17951,3666,72,1,f +17951,3673,71,1,f +17951,3706,0,1,f +17951,3710,72,1,f +17951,3749,19,5,f +17951,3937,71,2,f +17951,4081b,72,2,f +17951,41530,57,2,f +17951,41677,72,3,f +17951,4185,72,2,f +17951,41862,71,2,f +17951,4286,272,4,f +17951,44567a,72,1,f +17951,4460b,72,1,f +17951,4499,70,1,f +17951,4519,71,2,f +17951,4740,72,1,f +17951,4871,71,1,f +17951,48729b,71,2,f +17951,50943,72,2,f +17951,54200,41,10,f +17951,54200,85,8,f +17951,60471,25,1,f +17951,6134,0,2,f +17951,61409,27,2,f +17951,6141,41,12,f +17951,6141,72,5,f +17951,61780,72,1,f +17951,63869,0,1,f +17951,64867,85,1,f +17951,64867,72,2,f +17951,6536,72,2,f +17951,6558,1,2,f +17951,6587,28,1,f +17951,6636,272,1,f +17951,76766,0,1,f +17951,87544,71,2,f +17951,88289,308,1,f +17951,90194,71,2,f +17951,92280,0,2,f +17951,93062c02,179,2,f +17951,970c00pr1141,72,1,f +17951,973pr3583c01,72,1,f +17951,98585,57,2,f +17951,99207,71,2,f +17951,99781,0,5,f +17952,11203,0,1,f +17952,11211,71,2,f +17952,11215,15,1,f +17952,11302pat0001,52,2,f +17952,11477,85,2,f +17952,11477,72,1,f +17952,14395,72,2,f +17952,14417,72,6,f +17952,14418,71,6,f +17952,14419,72,8,f +17952,14704,71,2,f +17952,15068,72,4,f +17952,15456,0,2,f +17952,15535,72,1,f +17952,15712,72,6,f +17952,18649,0,1,f +17952,18651,0,1,f +17952,20252,57,1,f +17952,22385pr0074,52,1,f +17952,22388,179,1,f +17952,22388,57,2,f +17952,22388,41,6,f +17952,22401,57,1,f +17952,22408,179,1,f +17952,22425,379,1,f +17952,22886,73,1,f +17952,22961,71,2,f +17952,23443,71,1,f +17952,24301pr0003,379,1,f +17952,2446,15,1,f +17952,24482,0,2,f +17952,2540,15,1,f +17952,26601,272,4,f +17952,26601,15,2,f +17952,27169,85,1,f +17952,27170,85,1,f +17952,27256,41,4,f +17952,27257,57,1,f +17952,27263,15,2,f +17952,2780,0,2,f +17952,28192,72,2,f +17952,28350,179,1,f +17952,28373,85,2,f +17952,3003,85,1,f +17952,30031,179,1,f +17952,3020,72,2,f +17952,3021,272,1,f +17952,3022,0,2,f +17952,3023,85,8,f +17952,3033,72,1,f +17952,30375,15,1,f +17952,3039,72,2,f +17952,3040b,72,2,f +17952,30602,272,1,f +17952,3062b,0,4,f +17952,3068b,73,2,f +17952,3070b,71,2,f +17952,32000,72,2,f +17952,32123b,71,2,f +17952,32474pr1011,379,2,f +17952,3460,72,1,f +17952,3626cpr1783,14,1,f +17952,3626cpr2065,379,2,f +17952,3660,0,2,f +17952,3665,72,2,f +17952,3666,85,1,f +17952,3747a,72,2,f +17952,3795,0,1,f +17952,3795,15,1,f +17952,3849,179,1,f +17952,3941,25,1,f +17952,4081b,0,2,f +17952,41239,0,2,f +17952,44728,0,1,f +17952,4697b,71,2,f +17952,4740,57,1,f +17952,47457,15,1,f +17952,47457,72,4,f +17952,47847,72,2,f +17952,4865b,0,1,f +17952,48729b,57,2,f +17952,50950,272,1,f +17952,53451,0,4,f +17952,54200,73,4,f +17952,54200,379,4,f +17952,59900,72,4,f +17952,59900,57,1,f +17952,60475b,72,2,f +17952,60478,15,5,f +17952,60897,85,2,f +17952,61252,15,3,f +17952,61252,71,2,f +17952,61409,15,4,f +17952,6141,57,3,f +17952,63868,71,1,f +17952,63965,72,4,f +17952,64567,0,2,f +17952,64644,308,2,f +17952,6541,0,4,f +17952,6558,1,2,f +17952,6636,0,1,f +17952,85861,0,2,f +17952,85861,15,1,f +17952,85863,72,2,f +17952,85975,15,4,f +17952,87083,72,1,f +17952,87544,0,2,f +17952,87747,0,2,f +17952,88289,308,1,f +17952,90202,0,1,f +17952,92593,0,3,f +17952,92593,71,1,f +17952,93273,72,1,f +17952,970c00pr1127,71,1,f +17952,970c00pr1153,379,1,f +17952,973pr3559c01,71,1,f +17952,973pr3713c01,379,1,f +17952,98283,72,2,f +17952,98313,72,4,f +17952,99207,0,2,f +17952,99780,72,2,f +17958,15211,14,1,f +17958,22881,322,1,f +17958,2302pr29047,322,1,f +17958,40666,1,1,f +17958,6474,322,1,f +17958,89398,1,2,f +17958,98233,1,1,f +17958,98252,322,2,f +17965,11476,4,3,f +17965,14719,1,2,f +17965,14719,4,2,f +17965,15573,4,2,f +17965,16770,15,2,f +17965,20482,15,2,f +17965,22885,71,28,f +17965,2420,4,2,f +17965,2431,0,2,f +17965,2431,19,1,f +17965,2431,14,1,f +17965,2431,4,3,f +17965,2431,1,2,f +17965,2431pr0200,4,1,f +17965,25893,47,2,f +17965,3003,71,4,f +17965,3003,29,2,f +17965,3005,14,6,f +17965,3010pr9998,15,2,f +17965,3010pr9999,1,2,f +17965,3020,4,2,f +17965,3020,1,2,f +17965,3022,4,3,f +17965,3022,1,2,f +17965,3023,15,2,f +17965,3023,1,2,f +17965,3023,14,2,f +17965,3023,4,6,f +17965,3023,41,2,f +17965,3023,19,2,f +17965,3024,4,2,f +17965,3031,1,4,f +17965,3031,4,3,f +17965,3032,0,2,f +17965,3068b,4,2,f +17965,3068b,1,2,f +17965,3069b,1,2,f +17965,3069b,14,2,f +17965,3069b,4,1,f +17965,3069bpr0200,4,1,f +17965,3070b,19,2,f +17965,3070b,1,2,f +17965,3070b,4,2,f +17965,3070bpr0178,41,2,f +17965,32028,4,1,f +17965,3710,14,2,f +17965,3710,1,1,f +17965,3710,19,1,f +17965,3941,71,4,f +17965,4032a,4,3,f +17965,4032a,72,1,f +17965,4070,4,12,f +17965,4070,14,2,f +17965,6141,41,2,f +17965,63868,4,1,f +17965,75902pr0004,4,1,f +17965,85984,4,2,f +17965,85984,19,2,f +17965,87079,4,2,f +17965,87079,1,2,f +17965,87079pr0414,0,2,f +17965,87079pr9999,1,1,f +17965,88930pr0200,14,1,f +17965,92593,14,1,f +17965,92593,1,1,f +17965,92593,0,2,f +17965,98138pr0060,0,2,f +17966,11211,0,1,f +17966,11476,14,1,f +17966,11477,4,2,f +17966,14719,19,2,f +17966,15068,4,4,f +17966,15208,72,2,f +17966,22885,71,28,f +17966,2420,14,4,f +17966,24299,0,1,f +17966,24307,0,1,f +17966,2431,0,4,f +17966,2431pr0202,19,1,f +17966,25893,47,1,f +17966,26603,0,2,f +17966,3003,72,2,f +17966,3003,29,2,f +17966,3003,14,2,f +17966,3004,0,4,f +17966,3005,0,2,f +17966,3010,0,2,f +17966,3010pr0201,0,1,f +17966,3010pr0202,1,1,f +17966,3020,4,3,f +17966,3020,15,2,f +17966,3021,19,2,f +17966,3021,4,1,f +17966,3022,0,3,f +17966,3022,1,2,f +17966,3023,72,2,f +17966,3023,1,3,f +17966,3023,19,2,f +17966,3023,0,2,f +17966,3031,0,5,f +17966,3031,1,1,f +17966,3032,0,2,f +17966,30414,1,1,f +17966,3068b,4,1,f +17966,3069b,14,1,f +17966,3069b,4,1,f +17966,3069b,1,2,f +17966,3069b,0,3,f +17966,3069bpr0201,0,2,f +17966,3070b,14,1,f +17966,3070b,0,2,f +17966,32028,4,2,f +17966,3300,15,2,f +17966,3710,0,3,f +17966,3710,1,5,f +17966,3710,4,1,f +17966,3941,71,2,f +17966,3941,4,2,f +17966,4032a,4,2,f +17966,4032a,72,1,f +17966,41769,4,1,f +17966,41770,4,1,f +17966,43722,4,2,f +17966,43723,4,2,f +17966,4740,57,1,f +17966,6141,46,1,f +17966,63868,14,1,f +17966,85984,0,2,f +17966,85984,19,2,f +17966,87079,19,1,f +17966,87079,0,4,f +17966,87079,4,1,f +17966,87079pr0201,0,1,f +17966,87079pr0414,0,2,f +17966,88930,0,2,f +17966,92593,19,1,f +17966,92593,0,3,f +17966,98138,15,2,f +17966,98138pr0060,0,2,f +17966,99780,14,1,f +17974,15068,72,2,f +17974,18674,72,1,f +17974,26601,72,2,f +17974,3023,72,1,f +17974,30540,71,2,f +17974,3710,72,1,f +17974,4032a,71,1,f +17974,4740,71,1,f +17974,4740pr0001b,47,1,f +17974,4871,0,2,f +17974,51739,71,2,f +17974,6636,0,4,f +17974,72454,0,2,f +17974,87580,71,1,f +17974,92582,71,2,f +17974,99207,71,1,f +17978,10928,72,3,f +17978,11153,72,2,f +17978,11203,72,2,f +17978,11211,71,3,f +17978,11290,0,4,f +17978,11302pat0001,52,2,f +17978,11476,71,3,f +17978,11477,85,1,f +17978,11477,72,1,f +17978,11833,0,3,f +17978,14413,0,2,f +17978,14418,71,2,f +17978,14769,0,2,f +17978,15070,15,2,f +17978,15092,72,2,f +17978,15303,33,3,f +17978,15392,72,4,f +17978,15400,72,2,f +17978,15403,0,4,f +17978,15573,72,2,f +17978,15573,85,2,f +17978,15712,0,6,f +17978,15712,72,6,f +17978,17346,308,1,f +17978,17485,71,2,f +17978,18031,148,1,f +17978,18651,0,2,f +17978,18980,0,2,f +17978,22385,1,1,f +17978,22385,57,1,f +17978,22385pr0032,46,1,f +17978,22385pr0060,47,1,f +17978,22385pr0061,52,1,f +17978,22385pr0062,36,1,f +17978,22385pr0070,35,1,f +17978,22388,57,5,f +17978,22388,41,15,f +17978,22391,272,1,f +17978,22400,57,1,f +17978,22401,57,1,f +17978,22408,179,2,f +17978,22409,0,1,f +17978,22410,148,2,f +17978,22411,320,1,f +17978,22885,71,3,f +17978,22889,0,1,f +17978,23861,148,1,f +17978,2412b,85,2,f +17978,2420,72,2,f +17978,2445,0,6,f +17978,2446,15,1,f +17978,2446,4,1,f +17978,24482,0,6,f +17978,2456,72,2,f +17978,2462,72,4,f +17978,24947,85,1,f +17978,2508,0,1,f +17978,2540,0,1,f +17978,2540,71,1,f +17978,2569,57,1,f +17978,26599,71,1,f +17978,26601,72,2,f +17978,27169,85,1,f +17978,27170,85,2,f +17978,27254,72,10,f +17978,27256,41,5,f +17978,27261,72,2,f +17978,27263,0,10,f +17978,27266,85,6,f +17978,2730,0,3,f +17978,2736,71,2,f +17978,2780,0,20,f +17978,2817,71,2,f +17978,2817,0,3,f +17978,28192,72,2,f +17978,28192,85,2,f +17978,28350,179,2,f +17978,28373,85,2,f +17978,28598,179,1,f +17978,28660,379,2,f +17978,28823,191,1,f +17978,28830,0,1,f +17978,3001,73,1,f +17978,3002,0,5,f +17978,3003,72,1,f +17978,30031,72,2,f +17978,3004,72,9,f +17978,3004,73,3,f +17978,3005,379,2,f +17978,3007,71,2,f +17978,3008,72,2,f +17978,30086,0,1,f +17978,3009,72,2,f +17978,3010,4,1,f +17978,3010,0,11,f +17978,30162,72,4,f +17978,3020,72,6,f +17978,3020,71,2,f +17978,3021,4,1,f +17978,3021,85,2,f +17978,3022,0,9,f +17978,3022,72,4,f +17978,3022,1,4,f +17978,3023,85,17,f +17978,30237b,70,5,f +17978,3028,0,2,f +17978,3031,0,1,f +17978,3031,72,2,f +17978,3031,1,1,f +17978,3032,72,1,f +17978,3034,85,2,f +17978,3034,272,1,f +17978,30363,72,2,f +17978,30374,41,8,f +17978,3039,72,2,f +17978,30395,72,1,f +17978,30396,0,1,f +17978,3040b,85,2,f +17978,3045,0,2,f +17978,30503,0,2,f +17978,30505,0,4,f +17978,30552,72,2,f +17978,30602,41,1,f +17978,3068b,73,1,f +17978,3069b,71,1,f +17978,3069b,0,4,f +17978,3069bpr0070,0,1,f +17978,30724,0,2,f +17978,31511,71,4,f +17978,3176,72,2,f +17978,32013,72,2,f +17978,32014,72,2,f +17978,32034,0,5,f +17978,32039,0,5,f +17978,32059,72,1,f +17978,32062,4,6,f +17978,32064a,72,10,f +17978,32123b,71,2,f +17978,32140,72,2,f +17978,32187,179,2,f +17978,32523,1,6,f +17978,32556,19,6,f +17978,32807,0,8,f +17978,3623,71,2,f +17978,3626cpr1780,14,1,f +17978,3626cpr1783,14,1,f +17978,3626cpr1862,14,1,f +17978,3626cpr2061,41,1,f +17978,3626cpr2065,379,1,f +17978,3626cpr2149,379,1,f +17978,3660,85,1,f +17978,3660,0,3,f +17978,3660,72,2,f +17978,3665,0,4,f +17978,3665,72,2,f +17978,3665,85,2,f +17978,3666,85,4,f +17978,3666,72,1,f +17978,3673,71,4,f +17978,3675,85,2,f +17978,3676,72,2,f +17978,3678b,72,2,f +17978,3700,71,8,f +17978,3700,72,2,f +17978,3701,0,3,f +17978,3705,0,2,f +17978,3706,4,2,f +17978,3706,0,2,f +17978,3710,72,1,f +17978,3710,272,1,f +17978,3710,73,2,f +17978,3713,71,4,f +17978,3737,0,1,f +17978,3747a,72,6,f +17978,3749,19,6,f +17978,3795,0,6,f +17978,3829c01,1,1,f +17978,3832,72,2,f +17978,3894,0,1,f +17978,3895,72,4,f +17978,3937,0,1,f +17978,3941,41,2,f +17978,4006,0,1,f +17978,4032a,4,1,f +17978,4032a,85,9,f +17978,4070,72,2,f +17978,4081b,14,4,f +17978,4150,72,2,f +17978,4162,72,5,f +17978,41879a,30,1,f +17978,42610,71,6,f +17978,4282,72,1,f +17978,4286,72,6,f +17978,43093,1,16,f +17978,4345b,71,1,f +17978,4346,71,1,f +17978,43710,72,1,f +17978,43711,72,1,f +17978,44301a,0,3,f +17978,44302a,72,3,f +17978,4445,0,2,f +17978,44567a,72,1,f +17978,44728,72,5,f +17978,4477,71,2,f +17978,4522,0,1,f +17978,46667,41,2,f +17978,4733,71,1,f +17978,4740,52,2,f +17978,47407,0,2,f +17978,47457,71,2,f +17978,53451,14,4,f +17978,54200,379,2,f +17978,54200,85,2,f +17978,59426,72,1,f +17978,59443,72,2,f +17978,59900,52,7,f +17978,6020,0,1,f +17978,60208,72,2,f +17978,60470a,4,2,f +17978,60470a,71,2,f +17978,60471,4,1,f +17978,60471,0,2,f +17978,60478,72,4,f +17978,60485,71,2,f +17978,60897,1,2,f +17978,60897,0,4,f +17978,6111,72,4,f +17978,6118,148,2,f +17978,61184,71,1,f +17978,6134,0,1,f +17978,61409,72,2,f +17978,6141,57,4,f +17978,6141,41,29,f +17978,6141,15,2,f +17978,61485,0,1,f +17978,6179,72,2,f +17978,64644,308,1,f +17978,64644,297,1,f +17978,64799,0,1,f +17978,64867,85,7,f +17978,64867,72,7,f +17978,6558,1,4,f +17978,6589,19,2,f +17978,73983,71,4,f +17978,74698,0,1,f +17978,75937,0,2,f +17978,76766,0,3,f +17978,85861,0,2,f +17978,85984,0,2,f +17978,86038,0,1,f +17978,86208,72,2,f +17978,87079,72,2,f +17978,87079pr0103,0,1,f +17978,87079pr0104,72,1,f +17978,87079pr0105,0,1,f +17978,87079pr0106,379,1,f +17978,87081,0,1,f +17978,87620,72,4,f +17978,87620,0,2,f +17978,92280,0,2,f +17978,92280,4,2,f +17978,92409,0,2,f +17978,92593,72,2,f +17978,93273,72,1,f +17978,93606,72,1,f +17978,95199,72,4,f +17978,96874,25,1,f +17978,970c00pr1126,72,1,f +17978,970c00pr1127,71,1,f +17978,970c00pr1146,212,1,f +17978,970c00pr1153,379,1,f +17978,970c00pr1212,379,1,f +17978,973pr3276c01,30,1,f +17978,973pr3558c01,72,1,f +17978,973pr3559c01,71,1,f +17978,973pr3592c01,191,1,f +17978,973pr3710c01,379,1,f +17978,973pr3713c01,379,1,f +17978,98263,71,1,f +17978,98283,72,2,f +17978,98302,0,2,f +17978,98313,148,15,f +17978,98585,57,2,f +17978,98834,4,3,f +17978,99206,71,5,f +17978,99207,0,1,f +17978,99780,0,2,f +17978,99780,72,5,f +17978,99781,0,4,f +17978,99784,47,1,f +17984,11153,320,1,f +17984,11211,71,2,f +17984,11610,71,1,f +17984,15207,320,2,f +17984,15573,320,5,f +17984,22888,92,2,f +17984,2412b,72,1,f +17984,2420,72,4,f +17984,2431,320,2,f +17984,2460,71,2,f +17984,2654,47,9,f +17984,27925,320,2,f +17984,298c02,0,1,f +17984,3003,320,2,f +17984,3005,320,6,f +17984,3007,71,1,f +17984,3008,0,2,f +17984,3020,92,5,f +17984,3022,320,1,f +17984,3023,0,2,f +17984,3024,72,3,f +17984,30304,72,1,f +17984,3032,71,1,f +17984,3035,92,4,f +17984,30374,41,1,f +17984,30383,72,2,f +17984,3039,320,1,f +17984,3040b,320,4,f +17984,30480ps0,297,1,f +17984,3069b,320,9,f +17984,33774,28,1,f +17984,3626cpr1444,78,1,f +17984,3626cpr1670,78,1,f +17984,3700,0,2,f +17984,3706,0,3,f +17984,3710,0,3,f +17984,3829c01,0,1,f +17984,3901,71,1,f +17984,40234,71,1,f +17984,4079,0,2,f +17984,4162,320,2,f +17984,44302a,71,2,f +17984,44728,71,2,f +17984,4477,320,2,f +17984,4865b,71,4,f +17984,4868b,72,3,f +17984,54200,0,2,f +17984,54200,320,4,f +17984,59900,70,1,f +17984,61409,72,4,f +17984,6141,0,2,f +17984,62360,47,1,f +17984,64567,80,1,f +17984,6636,72,1,f +17984,75c21,71,2,f +17984,85080,0,2,f +17984,85984,72,1,f +17984,87087,0,2,f +17984,87994,70,1,f +17984,92690,70,1,f +17984,92746,19,1,f +17984,970c00pr0650,15,1,f +17984,970c00pr0687,19,1,f +17984,970c00pr0693,297,1,f +17984,970c00pr0779,19,1,f +17984,973pr2648c01,15,1,f +17984,973pr2699c01,308,1,f +17984,973pr2870c01,19,1,f +17984,973pr3258c01,297,1,f +17984,98100,320,3,f +17994,10201,0,2,f +17994,11212,71,1,f +17994,15068,4,2,f +17994,15573,27,3,f +17994,2412b,179,1,f +17994,2431,15,2,f +17994,30028,0,4,f +17994,3004,4,1,f +17994,3020,4,1,f +17994,3023,71,1,f +17994,3023,4,1,f +17994,3034,0,1,f +17994,3623,0,1,f +17994,3623,4,2,f +17994,3795,14,1,f +17994,4600,71,2,f +17994,48336,4,1,f +17994,50943,179,1,f +17994,50947,15,4,f +17994,50950,0,3,f +17994,54200,4,2,f +17994,54200,4,1,t +17994,60470a,0,1,f +17994,6141,36,1,t +17994,6141,36,4,f +17994,74967,71,4,f +17994,92593,4,1,f +17994,93273,4,1,f +17994,99206,15,4,f +18006,11055pr0014,15,1,f +18006,15427pr0173,226,1,f +18006,15439,0,1,f +18006,15501,4,1,f +18006,15619,0,1,f +18006,16709pat03,320,1,f +18006,19220,71,1,f +18006,20398,15,1,f +18006,20482,15,1,f +18006,21778,308,1,f +18006,23186,0,1,f +18006,25386,19,1,f +18006,2544,0,1,f +18006,2562,148,2,f +18006,29575pat03,14,1,f +18006,29601,71,1,f +18006,29633,84,1,f +18006,29634,484,1,f +18006,29635,272,1,f +18006,29636,71,1,f +18006,30374,15,1,f +18006,3062bpr0014,41,1,f +18006,3070bpr0179,71,1,f +18006,31895pat02,15,1,f +18006,32765pr0002,0,1,f +18006,32859pr0152,92,1,f +18006,32887pr0001,148,1,f +18006,32892pr0001,19,1,f +18006,33026pr0001,15,1,f +18006,33078,320,1,f +18006,33647,45,1,f +18006,33682,71,1,f +18006,33710,71,1,f +18006,3626cpr2201,14,1,f +18006,3626cpr2202,14,1,f +18006,3626cpr2203,14,1,f +18006,3626cpr2204,14,1,f +18006,3626cpr2205,14,1,f +18006,3626cpr2206,14,1,f +18006,3626cpr2207,14,1,f +18006,3626cpr2208,14,1,f +18006,3626cpr2209,14,1,f +18006,3626cpr2210,14,1,f +18006,3626cpr2211,14,1,f +18006,3626cpr2212,14,1,f +18006,3626cpr2213,14,1,f +18006,3626cpr2214,14,1,f +18006,3626cpr2215,14,1,f +18006,3626cpr2216,14,1,f +18006,3678bpr0058,212,1,f +18006,3742,5,4,f +18006,3846pr0008,71,1,f +18006,41879a,72,1,f +18006,41879bpr0010,29,1,f +18006,4342,84,1,f +18006,50231,191,1,f +18006,53454,148,1,f +18006,54200pr0002,71,1,f +18006,87994,0,1,f +18006,88646,0,16,f +18006,90386,0,1,f +18006,90397pr0004,73,1,f +18006,92290,297,1,f +18006,92746,19,1,f +18006,93563,4,1,f +18006,93568pr0001,84,1,f +18006,970c00,2,1,f +18006,970c00,0,2,f +18006,970c00pr1258,14,1,f +18006,970c00pr1259,19,1,f +18006,970c00pr1260,0,1,f +18006,970c00pr1265,0,1,f +18006,970c00pr1266,15,1,f +18006,970c00pr1267,14,1,f +18006,970c00pr1268,323,1,f +18006,970c00pr1270,378,1,f +18006,970c00pr1276,15,1,f +18006,973c20,2,1,f +18006,973pr3793c01,14,1,f +18006,973pr3797c01,4,1,f +18006,973pr3798c01,15,1,f +18006,973pr3803c01,14,1,f +18006,973pr3806c01,212,1,f +18006,973pr3807c01,0,1,f +18006,973pr3808c01,15,1,f +18006,973pr3818c01,15,1,f +18006,973pr3819c01,14,1,f +18006,973pr3822c01,0,1,f +18006,973pr3823c01,323,1,f +18006,973pr3833c01,212,1,f +18006,973pr3834c01,71,1,f +18006,973pr3835c01,378,1,f +18006,973pr9993,0,1,f +18006,98370,297,1,f +18006,98381pr0001,15,1,f +18006,99249,27,1,f +18018,11403pr0001c01,5,1,f +18018,11816pr0005,78,1,f +18018,11833,47,1,f +18018,11833,191,1,f +18018,15068,322,8,f +18018,15573,27,1,f +18018,18854,52,1,t +18018,18854,52,1,f +18018,22667,27,1,f +18018,22667,27,1,t +18018,2343,47,1,f +18018,2420,85,2,f +18018,3010,322,1,f +18018,3021,27,2,f +18018,3023,72,1,f +18018,3023,85,1,f +18018,3031,15,2,f +18018,33291,5,4,f +18018,33291,5,1,t +18018,3460,5,2,f +18018,3710,15,1,f +18018,3937,15,1,f +18018,3941,85,1,f +18018,3957a,71,1,f +18018,3960,191,1,f +18018,4175,191,1,f +18018,54200,4,1,t +18018,54200,4,1,f +18018,6134,71,1,f +18018,85984,27,1,f +18018,87087,15,2,f +18018,87087,27,1,f +18018,92258,0,1,f +18018,92456pr0029c01,78,1,f +18019,18852pr0001,15,5,f +18019,2431,322,12,f +18019,26483,71,5,f +18019,3022,15,4,f +18019,3030,27,3,f +18019,3069b,322,6,f +18019,3070b,26,4,f +18019,3070b,26,1,t +18019,3666,15,4,f +18019,3710,15,6,f +18019,87580,85,9,f +18020,11610,0,2,f +18020,21019pat04,72,1,f +18020,30173b,0,2,f +18020,30177,71,1,f +18020,30381,320,1,f +18020,3626b,40,2,f +18020,3626cpr2195,71,1,f +18020,3626cpr2196,14,1,f +18020,3626cpr2197,14,1,f +18020,43887,0,1,f +18020,4498,70,1,f +18020,75902,72,1,f +18020,87990,4,1,f +18020,88290,308,1,f +18020,93231,70,1,f +18020,970c00pr1245,379,1,f +18020,970c00pr1246,191,1,f +18020,973pr3766c01,0,1,f +18020,973pr3767c01,379,1,f +18020,973pr3768c01,191,1,f +18020,98138pr0049,0,1,f +18020,98385,379,1,f +18020,99930,0,1,f +18045,10201,0,2,f +18045,10201,15,3,f +18045,10247,14,2,f +18045,10928,72,4,f +18045,11203,71,2,f +18045,11203,72,20,f +18045,11211,19,6,f +18045,11212,71,4,f +18045,11215,71,1,f +18045,11253,0,2,f +18045,11458,72,8,f +18045,11476,0,1,f +18045,11477,72,2,f +18045,13547,71,2,f +18045,13971,71,2,f +18045,14417,72,4,f +18045,14704,71,6,f +18045,15068,71,2,f +18045,15456,71,4,f +18045,15462,28,2,f +18045,15535,72,1,f +18045,15573,72,22,f +18045,15573,0,4,f +18045,15672,15,18,f +18045,15672,71,2,f +18045,15712,320,4,f +18045,15712,72,2,f +18045,18651,0,3,f +18045,18654,72,2,f +18045,18759,71,2,f +18045,2340,72,4,f +18045,2357,4,2,f +18045,2357,15,6,f +18045,2412b,320,10,f +18045,2412b,179,52,f +18045,2419,15,4,f +18045,2420,72,2,f +18045,2420,15,4,f +18045,2420,25,4,f +18045,24248,47,1,f +18045,2431,2,2,f +18045,2431,25,4,f +18045,2431,72,4,f +18045,2431,15,2,f +18045,2431,0,2,f +18045,2445,0,4,f +18045,2445,15,4,f +18045,2445,72,4,f +18045,2450,15,4,f +18045,2460,0,4,f +18045,2460,15,2,f +18045,24607,47,2,f +18045,2639,72,8,f +18045,2653,71,6,f +18045,2654,19,1,f +18045,2654,47,4,f +18045,2730,71,2,f +18045,2780,0,29,f +18045,28809,71,14,f +18045,28809,4,2,f +18045,30000,72,2,f +18045,3001,71,4,f +18045,3004,71,2,f +18045,3005,72,2,f +18045,3008,71,3,f +18045,3009,28,4,f +18045,3010,25,2,f +18045,3010,72,4,f +18045,30136,28,4,f +18045,30162,72,6,f +18045,3020,0,7,f +18045,3020,19,6,f +18045,3020,72,13,f +18045,3020,2,2,f +18045,3020,71,7,f +18045,3021,25,1,f +18045,3021,72,8,f +18045,3021,19,8,f +18045,3021,0,4,f +18045,3022,25,2,f +18045,3022,0,10,f +18045,3022,1,2,f +18045,3022,72,6,f +18045,3023,15,4,f +18045,3023,72,15,f +18045,3023,182,23,f +18045,3023,28,8,f +18045,3023,71,2,f +18045,3023,0,4,f +18045,3023,25,4,f +18045,3024,0,10,f +18045,3024,28,6,f +18045,3024,72,6,f +18045,3029,71,2,f +18045,30304,15,1,f +18045,3031,71,5,f +18045,3032,71,1,f +18045,3032,72,2,f +18045,3033,25,1,f +18045,3033,71,3,f +18045,3034,71,2,f +18045,3034,72,3,f +18045,3034,15,2,f +18045,30355,71,3,f +18045,30356,71,3,f +18045,3036,71,4,f +18045,30363,15,3,f +18045,30363,72,2,f +18045,30370pr0005,15,1,f +18045,30370pr0006,148,1,f +18045,30374,71,2,f +18045,30383,72,6,f +18045,3039pr0021,0,3,f +18045,3040b,72,4,f +18045,3040b,71,2,f +18045,3040b,0,2,f +18045,3040b,15,16,f +18045,30503,72,2,f +18045,30503,15,4,f +18045,30553,0,1,f +18045,30554b,71,1,f +18045,3062b,0,1,f +18045,3062b,70,6,f +18045,3062b,2,2,f +18045,3062b,15,4,f +18045,3068b,0,2,f +18045,3068b,15,4,f +18045,3069b,15,12,f +18045,3069b,25,4,f +18045,3069b,0,2,f +18045,3069bpr0086,71,4,f +18045,3070b,25,4,f +18045,3070b,182,1,f +18045,3070b,71,4,f +18045,3070b,15,4,f +18045,31509,0,2,f +18045,31511,71,6,f +18045,3176,72,2,f +18045,32000,72,6,f +18045,32001,71,1,f +18045,32028,14,2,f +18045,32028,179,18,f +18045,32028,15,4,f +18045,32054,71,2,f +18045,32054,0,8,f +18045,32059,71,2,f +18045,32059,72,3,f +18045,32062,0,1,f +18045,32123b,14,7,f +18045,32123b,71,2,f +18045,32124,0,2,f +18045,32126,0,1,f +18045,32187,179,6,f +18045,32198,71,8,f +18045,32348,0,2,f +18045,3245b,71,4,f +18045,32523,0,2,f +18045,32523,72,2,f +18045,32530,72,2,f +18045,32531,0,1,f +18045,32532,0,1,f +18045,3298,72,2,f +18045,3298,71,6,f +18045,33299a,71,6,f +18045,3456,71,2,f +18045,3460,71,2,f +18045,3460,4,2,f +18045,3460,72,8,f +18045,3623,71,16,f +18045,3623,15,4,f +18045,3623,72,10,f +18045,3626cpr1441,78,2,f +18045,3660,71,6,f +18045,3665,72,4,f +18045,3665,71,2,f +18045,3666,15,1,f +18045,3666,71,1,f +18045,3666,28,7,f +18045,3666,72,13,f +18045,3679,71,2,f +18045,3680,15,2,f +18045,3685,15,2,f +18045,3700,15,6,f +18045,3701,4,1,f +18045,3701,71,2,f +18045,3701,0,2,f +18045,3702,14,2,f +18045,3703,0,4,f +18045,3709,15,2,f +18045,3710,71,4,f +18045,3710,28,18,f +18045,3710,72,8,f +18045,3710,1,6,f +18045,3710,15,12,f +18045,3713,4,4,f +18045,3747a,72,1,f +18045,3749,19,2,f +18045,3795,72,2,f +18045,3795,0,2,f +18045,3795,25,3,f +18045,3795,15,1,f +18045,3795,1,2,f +18045,3823,47,1,f +18045,3832,0,2,f +18045,3832,71,2,f +18045,3832,72,2,f +18045,3894,1,1,f +18045,3894,72,6,f +18045,3937,0,8,f +18045,3937,72,8,f +18045,3937,15,2,f +18045,3938,0,3,f +18045,3938,71,2,f +18045,3938,15,2,f +18045,3941,25,2,f +18045,3957a,71,2,f +18045,3958,15,4,f +18045,4070,15,20,f +18045,4070,0,1,f +18045,4070,72,12,f +18045,41531,71,4,f +18045,4162,0,4,f +18045,4162,15,5,f +18045,41764,71,1,f +18045,41765,71,1,f +18045,41769,15,2,f +18045,41769,72,2,f +18045,41769,71,1,f +18045,41770,72,2,f +18045,41770,15,2,f +18045,41770,71,1,f +18045,4185,72,8,f +18045,41862,71,1,f +18045,4274,71,6,f +18045,4274,1,14,f +18045,4282,0,3,f +18045,4286,15,4,f +18045,4287,72,4,f +18045,43093,1,12,f +18045,43719,72,2,f +18045,43722,25,1,f +18045,43722,15,3,f +18045,43723,15,3,f +18045,43723,25,1,f +18045,44301a,72,12,f +18045,44567a,71,2,f +18045,44568,71,6,f +18045,44570,71,6,f +18045,44570,15,1,f +18045,4460b,15,4,f +18045,44676,72,10,f +18045,44728,0,1,f +18045,4477,72,1,f +18045,4477,15,4,f +18045,4510,15,5,f +18045,4595,0,1,f +18045,4599b,71,4,f +18045,4697b,0,1,f +18045,4735,71,4,f +18045,47905,71,1,f +18045,50304,71,3,f +18045,50304,25,1,f +18045,50305,25,1,f +18045,50305,71,3,f +18045,50451,0,2,f +18045,50949,0,4,f +18045,51739,15,2,f +18045,51739,72,4,f +18045,51739,25,2,f +18045,54200,72,16,f +18045,54200,0,2,f +18045,54200,15,6,f +18045,54383,71,2,f +18045,54383,15,6,f +18045,54384,15,6,f +18045,54384,71,2,f +18045,55013,72,2,f +18045,58181,72,1,f +18045,59426,72,1,f +18045,59443,0,1,f +18045,59443,72,4,f +18045,59900,179,6,f +18045,60208,71,6,f +18045,60471,71,1,f +18045,60477,15,4,f +18045,60478,72,4,f +18045,60479,71,12,f +18045,60479,15,2,f +18045,60581,47,1,f +18045,60849,0,12,f +18045,60897,0,2,f +18045,60897,72,10,f +18045,6134,0,2,f +18045,6134,71,12,f +18045,61409,15,6,f +18045,6141,179,60,f +18045,6178,15,2,f +18045,6179,72,18,f +18045,6179,15,2,f +18045,6179,71,2,f +18045,6180,71,2,f +18045,6180,15,9,f +18045,6192,72,1,f +18045,62462,0,2,f +18045,62462,71,14,f +18045,62885,0,2,f +18045,63082,71,4,f +18045,63864,25,4,f +18045,63864,0,4,f +18045,63864,72,2,f +18045,63864,15,2,f +18045,63868,71,4,f +18045,64799,14,2,f +18045,6541,14,8,f +18045,6558,1,11,f +18045,6587,28,1,f +18045,6589,19,4,f +18045,6628,0,4,f +18045,6636,15,23,f +18045,85543,15,2,f +18045,85861,71,26,f +18045,85861,0,2,f +18045,85943,72,1,f +18045,85984,15,6,f +18045,85984,25,10,f +18045,85984,72,6,f +18045,87079,71,1,f +18045,87079,0,9,f +18045,87079,25,8,f +18045,87079,15,17,f +18045,87083,72,2,f +18045,87087,0,2,f +18045,87087,71,4,f +18045,87087,15,6,f +18045,87552,47,2,f +18045,87618,0,2,f +18045,87620,72,2,f +18045,87994,0,1,f +18045,88072,72,2,f +18045,88646,15,6,f +18045,90194,72,1,f +18045,90194,15,4,f +18045,90498,0,1,f +18045,91988,71,3,f +18045,92280,0,2,f +18045,92438,71,1,f +18045,92582,0,1,f +18045,92582,71,1,f +18045,92593,272,1,f +18045,92738,0,1,f +18045,92950,15,1,f +18045,93274,0,2,f +18045,93555,179,20,f +18045,93606,0,4,f +18045,96874,25,1,f +18045,970c00pr0476,25,2,f +18045,973pr3348c01,25,2,f +18045,98138,320,2,f +18045,98138,70,4,f +18045,98138,47,4,f +18045,98286,71,2,f +18045,98397,0,1,f +18045,99206,71,2,f +18045,99207,0,4,f +18045,99780,71,6,f +18045,99781,0,4,f +18064,11476,71,2,f +18064,11477,15,6,f +18064,15068,0,5,f +18064,3003,0,3,f +18064,3020,0,1,f +18064,3022,15,5,f +18064,3023,72,1,f +18064,3040b,25,3,f +18064,3659,15,2,f +18064,3665,15,2,f +18064,3794a,14,2,f +18064,44728,0,4,f +18064,60478,0,2,f +18064,6141,25,4,f +18064,85984,0,4,f +18064,93274,72,2,f +18064,98138pr0027,15,2,f +18087,2431,15,52,f +18087,2445,15,4,f +18087,26604,19,32,f +18087,3009,15,4,f +18087,3020,15,4,f +18087,3032,15,1,f +18087,3069b,15,27,f +18087,3070b,25,7,f +18087,3070b,15,34,f +18087,3070b,2,7,f +18087,3070b,4,11,f +18087,3070b,27,11,f +18087,3626bpr0645,14,1,f +18087,3710,0,32,f +18087,3958,25,4,f +18087,3958,4,8,f +18087,3958,2,4,f +18087,3958,27,8,f +18087,3958,71,8,f +18087,4162,15,8,f +18087,4445,15,8,f +18087,970c00,320,1,f +18087,973pr2867c01,379,1,f +18087,99930,308,1,f +18099,10314,73,2,f +18099,11211,19,2,f +18099,11399,72,1,f +18099,11477,72,4,f +18099,11477,15,2,f +18099,14719,191,2,f +18099,15303,36,3,f +18099,15400,72,2,f +18099,15573,15,6,f +18099,15573,72,2,f +18099,15625,15,2,f +18099,17485pr0001,71,1,f +18099,17486,71,2,f +18099,18671,72,2,f +18099,18973,40,1,f +18099,18980,15,2,f +18099,2412b,70,1,f +18099,2412b,72,4,f +18099,2419,15,1,f +18099,2431,15,3,f +18099,2449,15,4,f +18099,2456,19,1,f +18099,2654,71,1,f +18099,2921,15,2,f +18099,3001,72,2,f +18099,3002,19,1,f +18099,3003,28,1,f +18099,3003,1,1,f +18099,3004,15,3,f +18099,3010,15,2,f +18099,3010,72,2,f +18099,30150,71,1,f +18099,3020,73,1,f +18099,3020,72,2,f +18099,3021,0,2,f +18099,3021,71,4,f +18099,3022,19,2,f +18099,3023,323,2,f +18099,3023,71,17,f +18099,3023,19,3,f +18099,3031,71,1,f +18099,3032,15,1,f +18099,3034,15,2,f +18099,3034,72,1,f +18099,3035,71,1,f +18099,3035,15,2,f +18099,30374,41,1,f +18099,3040b,71,2,f +18099,30414,71,2,f +18099,30526,71,1,f +18099,30554b,71,4,f +18099,3062b,0,5,f +18099,3068b,15,1,f +18099,3068b,72,1,f +18099,3069b,4,2,f +18099,3069b,191,3,f +18099,3069b,323,1,f +18099,32000,0,1,f +18099,32002,19,2,f +18099,32054,4,2,f +18099,32524,0,1,f +18099,32525,15,1,f +18099,3297,15,2,f +18099,3460,15,4,f +18099,3622,0,2,f +18099,3622,15,2,f +18099,3623,72,2,f +18099,3623,323,1,f +18099,3626cpr2152,92,1,f +18099,3626cpr2153,321,1,f +18099,3666,72,2,f +18099,3666,71,1,f +18099,3666,15,4,f +18099,3700,72,5,f +18099,3700,4,3,f +18099,3710,0,4,f +18099,3749,19,1,f +18099,3795,71,1,f +18099,3795,0,1,f +18099,3832,4,1,f +18099,4032a,0,6,f +18099,4070,19,2,f +18099,41532,0,4,f +18099,4162,15,2,f +18099,41747,15,1,f +18099,41748,15,1,f +18099,41769,73,1,f +18099,41770,73,1,f +18099,42021,15,1,f +18099,42023,15,2,f +18099,4274,1,2,f +18099,43722,72,1,f +18099,43723,72,1,f +18099,44302a,72,4,f +18099,47457,72,2,f +18099,4856b,15,1,f +18099,4865b,19,2,f +18099,50304,15,1,f +18099,50305,15,1,f +18099,51739,72,1,f +18099,51739,15,1,f +18099,52107,0,3,f +18099,60477,4,1,f +18099,60478,72,2,f +18099,61409,15,1,f +18099,6141,0,8,f +18099,6179,15,2,f +18099,6180,71,1,f +18099,6191,15,2,f +18099,64567,80,1,f +18099,6541,14,1,f +18099,6558,1,1,f +18099,85984,72,3,f +18099,85984,70,1,f +18099,85984pr0006,72,1,f +18099,87079,71,4,f +18099,88646,0,1,f +18099,92081,272,1,f +18099,92593,71,3,f +18099,92738,0,1,f +18099,92946,72,1,f +18099,93095,70,1,f +18099,93273,72,1,f +18099,970c00,15,1,f +18099,970c00pr1217,72,1,f +18099,973pr3715c01,326,1,f +18099,973pr9985c01,15,1,f +18099,98100pr1002,484,1,f +18099,98138,182,2,f +18099,98138pr0010,179,1,f +18099,99207,71,4,f +18099,99773,14,1,f +18122,11477,323,1,f +18122,14732pr0001,308,1,f +18122,14769,71,1,f +18122,2423,2,1,f +18122,3023,41,3,f +18122,3035,15,1,f +18122,3039,72,1,f +18122,3040b,72,2,f +18122,33291,31,2,f +18122,3710,72,1,f +18122,4460b,323,1,f +18122,6091,322,1,f +18122,6141,15,3,f +18122,6141,2,1,f +18122,6182,71,1,f +18122,64648,179,1,f +18122,87580,26,1,f +18122,98138,71,1,f +18129,10201,4,2,f +18129,298c02,4,8,f +18129,3022,4,2,f +18129,3023,4,6,f +18129,30374,4,2,f +18129,3043,4,1,f +18129,3048c,4,4,f +18129,3623,4,2,f +18129,3795,4,1,f +18129,48336,4,1,f +18129,50950,4,2,f +18129,54200,4,2,f +18129,60470a,4,1,f +18129,60478,4,4,f +18129,63868,4,4,f +18129,87087,4,6,f +18129,90194,4,1,f +18155,3811,2,2,f +18155,3811,1,1,f +18155,4186,71,1,f +18161,11055pr0014,15,1,f +18161,30374,15,1,f +18161,33682,71,1,f +18161,3626cpr2210,14,1,f +18161,41879a,72,1,f +18161,88646,0,1,f +18161,973pr3834c01,71,1,f +18169,29636,71,1,f +18169,31895pat02,15,1,f +18169,3626cpr2207,14,1,f +18169,88646,0,1,f +18169,93568pr0001,84,1,f +18169,970c00pr1260,0,1,f +18169,973pr3798c01,15,1,f +18170,29575pat03,14,1,f +18170,3626cpr2204,14,1,f +18170,88646,0,1,f +18170,970c00,2,1,f +18170,973c20,2,1,f +18174,15619,0,1,f +18174,2544,0,1,f +18174,2562,148,2,f +18174,3626cpr2208,14,1,f +18174,50231,0,1,f +18174,88646,0,1,f +18174,970c00pr1265,0,1,f +18174,973pr3807c01,0,1,f +18183,19220,71,1,f +18183,23186,0,1,f +18183,3070bpr0179,71,1,f +18183,3626cpr2216,14,1,f +18183,54200pr0002,71,1,f +18183,88646,0,1,f +18183,970c00pr1266,15,1,f +18183,973pr3818c01,15,1,f +18184,32859pr0152,92,1,f +18184,3626cpr2205,14,1,f +18184,3678bpr0058,212,1,f +18184,3846pr0008,71,1,f +18184,88646,0,1,f +18184,973pr3806c01,212,1,f +18184,98370,297,1,f +18185,29601,71,1,f +18185,33710,71,1,f +18185,3626cpr2211,14,1,f +18185,50231,191,1,f +18185,88646,0,1,f +18185,970c00pr1270,378,1,f +18185,973pr3835c01,378,1,f +18203,20398,15,1,f +18203,25386,19,1,f +18203,29635,272,1,f +18203,33078,320,1,f +18203,3626cpr2206,14,1,f +18203,88646,0,1,f +18203,970c00pr1259,19,1,f +18203,973pr3797c01,4,1,f +18203,98381pr0001,15,1,f +18221,2412b,14,2,f +18221,2412b,15,2,f +18221,2412b,7,11,f +18221,2412b,0,2,f +18221,2419,15,1,f +18221,2419,7,1,f +18221,2420,0,16,f +18221,2420,7,17,f +18221,2431,14,1,f +18221,2431,7,3,f +18221,2431,0,2,f +18221,2444,0,4,f +18221,2450,0,2,f +18221,2536,7,2,f +18221,2711,1,8,f +18221,2712,7,1,f +18221,2719,7,2,f +18221,2730,7,6,f +18221,2730,0,11,f +18221,2736,7,8,f +18221,2738,1,8,f +18221,2741,7,1,f +18221,2743,15,4,f +18221,2744,0,2,f +18221,2780,0,88,f +18221,2780,0,1,t +18221,2825,7,10,f +18221,2825,0,2,f +18221,2850a,7,8,f +18221,2851,8,8,f +18221,2852,7,8,f +18221,2853,7,2,f +18221,2854,8,3,f +18221,2905,1,8,f +18221,2907,7,4,f +18221,2909c03,8,8,f +18221,2997,0,4,f +18221,2998,15,4,f +18221,2999,7,4,f +18221,3002,0,4,f +18221,3005,0,8,f +18221,3005,7,5,f +18221,3005,15,1,f +18221,3020,0,2,f +18221,3021,0,20,f +18221,3022,15,2,f +18221,3022,4,1,f +18221,3022,0,22,f +18221,3022,7,1,f +18221,3023,7,20,f +18221,3023,15,6,f +18221,3023,14,4,f +18221,3023,0,23,f +18221,3023,47,2,f +18221,3024,0,6,f +18221,3024,36,8,f +18221,3024,7,7,f +18221,3031,15,2,f +18221,3032,15,2,f +18221,3032,7,2,f +18221,3037,15,1,f +18221,3039,15,2,f +18221,3040b,0,6,f +18221,3040b,7,8,f +18221,3040b,14,2,f +18221,3041pb001,0,2,f +18221,3043,7,2,f +18221,3048c,7,8,f +18221,3068b,0,5,f +18221,3069b,0,2,f +18221,32005a,0,4,f +18221,3297,15,3,f +18221,3460,0,15,f +18221,3460,7,3,f +18221,3460,15,3,f +18221,3460,14,6,f +18221,3482,0,1,f +18221,3483,0,1,t +18221,3483,0,1,f +18221,3622,7,3,f +18221,3622,15,1,f +18221,3622,0,6,f +18221,3623,0,22,f +18221,3623,7,8,f +18221,3623,15,6,f +18221,3647,7,7,f +18221,3647,7,1,t +18221,3648a,7,5,f +18221,3650c,7,2,f +18221,3651,7,3,f +18221,3660,15,1,f +18221,3660,0,4,f +18221,3665,7,4,f +18221,3665,0,8,f +18221,3666,0,33,f +18221,3666,7,9,f +18221,3666,15,2,f +18221,3666,14,4,f +18221,3673,7,6,f +18221,3673,7,1,t +18221,3676,0,2,f +18221,3700,7,20,f +18221,3700,0,15,f +18221,3700,15,7,f +18221,3701,7,7,f +18221,3701,0,21,f +18221,3701,14,3,f +18221,3701,15,2,f +18221,3702,0,23,f +18221,3702,7,11,f +18221,3703,7,6,f +18221,3703,0,6,f +18221,3703,15,1,f +18221,3704,0,11,f +18221,3705,0,14,f +18221,3706,0,25,f +18221,3707,0,2,f +18221,3708,0,5,f +18221,3709,0,2,f +18221,3709,7,3,f +18221,3710,14,2,f +18221,3710,7,6,f +18221,3710,0,16,f +18221,3710,15,8,f +18221,3711a,0,1,t +18221,3711a,0,21,f +18221,3713,7,19,f +18221,3713,7,1,t +18221,3737,0,4,f +18221,3738,7,2,f +18221,3738,0,12,f +18221,3743,7,4,f +18221,3747b,0,2,f +18221,3749,7,14,f +18221,3794a,0,2,f +18221,3795,0,1,f +18221,3795,15,4,f +18221,3832,0,3,f +18221,3894,0,5,f +18221,3895,0,18,f +18221,3933,0,5,f +18221,3934,0,5,f +18221,4019,7,14,f +18221,4070,0,6,f +18221,4143,7,18,f +18221,4162,0,2,f +18221,4175,14,2,f +18221,4262,0,3,f +18221,4263,0,4,f +18221,4265b,7,1,t +18221,4265b,7,62,f +18221,4273b,7,1,f +18221,4274,7,20,f +18221,4274,7,1,t +18221,4275b,0,1,f +18221,4275b,15,4,f +18221,4276b,15,4,f +18221,4276b,0,1,f +18221,4282,0,2,f +18221,4287,15,2,f +18221,4287,0,8,f +18221,4287,14,2,f +18221,4477,7,6,f +18221,4477,14,4,f +18221,4477,15,2,f +18221,4477,0,18,f +18221,4504,0,4,f +18221,4519,0,18,f +18221,4589,1,1,f +18221,4730,0,2,f +18221,6536,7,4,f +18221,6538a,7,18,f +18221,6539,7,2,f +18221,6540a,15,4,f +18221,6541,15,2,f +18221,6541,7,6,f +18221,6541,0,18,f +18221,6541,14,2,f +18221,6542a,0,4,f +18221,6543,15,1,f +18221,6549,0,1,f +18221,6553,7,16,f +18221,6558,0,20,f +18221,6573,8,3,f +18221,73983,0,52,f +18221,73983,14,2,f +18221,8880stk01,9999,1,t +18221,9244,7,6,f +18231,10201,0,1,f +18231,13971,71,4,f +18231,15456,71,1,f +18231,2540,0,1,f +18231,2817,71,2,f +18231,3004,71,1,f +18231,3005,288,2,f +18231,3020,288,1,f +18231,3021,72,1,f +18231,3022,72,1,f +18231,3023,0,2,f +18231,3065,47,2,f +18231,3068b,0,1,f +18231,3070b,0,1,t +18231,3070b,72,1,f +18231,3623,4,2,f +18231,3673,71,4,f +18231,3673,71,1,t +18231,3710,288,1,f +18231,3795,71,1,f +18231,3795,72,1,f +18231,3941,288,2,f +18231,3942c,0,1,f +18231,3956,0,1,f +18231,4032a,288,1,f +18231,4081b,0,2,f +18231,4600,0,1,f +18231,4624,71,2,f +18231,4740,0,1,f +18231,61252,0,1,f +18231,61409,72,2,f +18231,6141,0,6,f +18231,6141,0,2,t +18231,63082,0,1,f +18231,87580,4,1,f +18231,88930,0,2,f +18231,98138,46,1,t +18231,98138,46,1,f +18231,99780,72,1,f +18245,11477,71,2,f +18245,14418,71,6,f +18245,15100,0,2,f +18245,15460,72,2,f +18245,15535,72,2,f +18245,18677,71,4,f +18245,22385,71,1,f +18245,2419,1,1,f +18245,2419,72,1,f +18245,2420,25,2,f +18245,2450,1,2,f +18245,2780,0,1,t +18245,2780,0,2,f +18245,3003,15,1,f +18245,3022,15,2,f +18245,3023,71,2,f +18245,30602,47,1,f +18245,3795,1,1,f +18245,3795,25,1,f +18245,3937,71,2,f +18245,4032a,71,3,f +18245,41769,71,1,f +18245,41769,1,1,f +18245,41770,71,1,f +18245,41770,1,1,f +18245,43093,1,2,f +18245,43722,71,1,f +18245,43722,1,2,f +18245,43723,71,1,f +18245,43723,1,2,f +18245,44728,1,2,f +18245,4740,71,1,f +18245,47456,72,1,f +18245,4855,72,1,f +18245,50950,25,2,f +18245,6134,0,2,f +18245,6141,322,1,t +18245,6141,322,1,f +18245,87580,72,1,f +18245,98138,71,1,t +18245,98138,71,1,f +18274,10247,0,2,f +18274,11153,71,8,f +18274,11211,71,2,f +18274,11212,71,4,f +18274,11213,71,2,f +18274,11214,72,4,f +18274,11477,0,4,f +18274,11477,15,2,f +18274,11833,71,5,f +18274,12825,72,2,f +18274,12825,71,2,f +18274,14718,71,4,f +18274,14769,72,2,f +18274,15068,15,3,f +18274,15068,72,2,f +18274,15303,35,3,f +18274,15400,72,2,f +18274,15535,72,4,f +18274,15571,0,2,f +18274,15573,71,6,f +18274,17535pr0001,30,1,f +18274,17630,308,1,f +18274,2412b,0,2,f +18274,2412b,71,12,f +18274,2412b,72,4,f +18274,2420,72,6,f +18274,2431,14,2,f +18274,2431,4,1,f +18274,2431,71,1,f +18274,2432,70,2,f +18274,2450,72,4,f +18274,2458,72,4,f +18274,2458,71,6,f +18274,2476a,15,4,f +18274,2540,15,2,f +18274,2653,71,5,f +18274,2654,57,4,f +18274,2654,72,16,f +18274,2730,71,2,f +18274,2780,0,4,t +18274,2780,0,32,f +18274,2817,71,4,f +18274,2817,0,1,f +18274,2823,0,4,f +18274,2877,72,11,f +18274,298c02,71,2,f +18274,298c02,71,1,t +18274,30000,1,2,f +18274,3001,71,2,f +18274,3003,71,2,f +18274,3004,15,4,f +18274,3005,71,8,f +18274,3005,15,6,f +18274,3005,72,4,f +18274,3008,72,4,f +18274,3009,71,5,f +18274,3010,72,7,f +18274,30165,0,4,f +18274,3020,72,10,f +18274,3020,15,8,f +18274,3021,71,6,f +18274,3021,70,1,f +18274,3021,0,4,f +18274,3022,72,6,f +18274,3022,19,2,f +18274,3023,15,7,f +18274,3023,36,2,f +18274,3023,71,9,f +18274,3023,72,9,f +18274,30236,72,2,f +18274,30237b,15,1,f +18274,3024,47,2,f +18274,3024,4,4,f +18274,3024,41,1,f +18274,3024,41,1,t +18274,3024,71,1,t +18274,3024,72,2,t +18274,3024,15,1,t +18274,3024,15,6,f +18274,3024,72,6,f +18274,3024,47,1,t +18274,3024,4,1,t +18274,3024,71,4,f +18274,3031,15,3,f +18274,3031,72,2,f +18274,3032,71,4,f +18274,3034,72,2,f +18274,3034,4,1,f +18274,3035,72,5,f +18274,3036,72,1,f +18274,30367c,0,2,f +18274,30374,36,2,f +18274,30374,71,1,f +18274,30374,41,1,f +18274,3039,15,2,f +18274,3039,71,6,f +18274,30408pr0008,15,1,f +18274,3040b,71,2,f +18274,3040b,72,2,f +18274,3040b,15,2,f +18274,30414,71,6,f +18274,30503,15,4,f +18274,30504,15,4,f +18274,3068b,71,17,f +18274,3069b,72,4,f +18274,3069b,15,6,f +18274,3069b,191,2,f +18274,3069b,4,2,f +18274,3069b,378,6,f +18274,3069bpr0070,0,2,f +18274,3070b,72,4,f +18274,3070b,72,1,t +18274,3176,71,6,f +18274,32000,71,1,f +18274,32009,71,4,f +18274,32018,71,8,f +18274,32028,15,8,f +18274,32054,0,6,f +18274,32062,4,4,f +18274,32064b,72,2,f +18274,32123b,14,1,t +18274,32123b,14,2,f +18274,32278,72,2,f +18274,32523,4,1,f +18274,32555,0,2,f +18274,3298,72,2,f +18274,3300,15,2,f +18274,3460,15,4,f +18274,3622,15,1,f +18274,3623,15,5,f +18274,3623,4,2,f +18274,3626cpb1111,92,1,f +18274,3626cpr1149,78,1,f +18274,3626cpr1520,27,1,f +18274,3660,72,2,f +18274,3665,72,2,f +18274,3665,0,2,f +18274,3665,15,2,f +18274,3666,4,4,f +18274,3666,15,7,f +18274,3666,72,6,f +18274,3701,71,3,f +18274,3702,0,6,f +18274,3705,0,2,f +18274,3709,4,10,f +18274,3710,0,2,f +18274,3710,71,9,f +18274,3710,15,2,f +18274,3713,4,5,f +18274,3713,4,1,t +18274,3747b,71,4,f +18274,3795,71,2,f +18274,3894,72,2,f +18274,3941,71,2,f +18274,3941,182,4,f +18274,3942c,0,2,f +18274,4032a,0,4,f +18274,4032a,72,8,f +18274,4079,70,1,f +18274,4162,15,2,f +18274,4162,71,2,f +18274,41677,0,2,f +18274,41767,15,1,f +18274,41768,15,1,f +18274,41769,15,3,f +18274,41769,0,1,f +18274,41770,0,1,f +18274,41770,15,3,f +18274,42610,71,2,f +18274,4274,1,3,t +18274,4274,1,6,f +18274,4286,15,1,f +18274,4287,71,2,f +18274,43093,1,2,f +18274,43722,71,1,f +18274,43722,72,1,f +18274,43723,72,1,f +18274,43723,71,1,f +18274,44294,71,2,f +18274,44568,71,1,f +18274,44570,15,1,f +18274,44728,71,2,f +18274,4477,72,2,f +18274,4477,71,2,f +18274,45410,15,2,f +18274,45590,0,1,f +18274,4598,0,2,f +18274,4697b,71,1,f +18274,4697b,71,1,t +18274,47397,15,1,f +18274,47398,15,1,f +18274,4742,0,4,f +18274,47457,71,16,f +18274,47457,72,2,f +18274,48336,71,1,f +18274,4865b,0,2,f +18274,4865b,15,2,f +18274,4871,71,2,f +18274,48729b,0,4,f +18274,48729b,0,2,t +18274,50304,72,2,f +18274,50305,72,2,f +18274,50747pr0009,40,1,f +18274,51739,15,3,f +18274,54200,4,1,t +18274,54200,15,1,t +18274,54200,4,2,f +18274,54200,72,2,f +18274,54200,72,1,t +18274,54200,71,1,t +18274,54200,71,2,f +18274,54200,15,4,f +18274,54383,71,2,f +18274,54383,15,4,f +18274,54384,71,2,f +18274,54384,15,4,f +18274,57899,0,1,f +18274,58247,0,3,f +18274,59426,72,1,f +18274,59443,4,1,f +18274,60219,71,1,f +18274,60475b,15,2,f +18274,60477,15,4,f +18274,60477,72,4,f +18274,60478,15,2,f +18274,60478,72,8,f +18274,60479,15,3,f +18274,60481,15,8,f +18274,60594,15,1,f +18274,60614,72,2,f +18274,6091,15,4,f +18274,6106,71,4,f +18274,6111,15,2,f +18274,6141,36,2,t +18274,6141,57,4,f +18274,6141,57,1,t +18274,6141,36,14,f +18274,6141,71,2,t +18274,6141,71,4,f +18274,61780,72,1,f +18274,6179,72,3,f +18274,6180,15,4,f +18274,6191,15,2,f +18274,6232,72,2,f +18274,62462,71,4,f +18274,63864,15,8,f +18274,63868,71,10,f +18274,64567,80,1,f +18274,64567,0,5,f +18274,64567,0,2,t +18274,64567,80,1,t +18274,6541,0,8,f +18274,6558,1,5,f +18274,6587,28,5,f +18274,6636,72,2,f +18274,6636,15,2,f +18274,72454,72,2,f +18274,76766,0,4,f +18274,85080,15,2,f +18274,85941,15,1,f +18274,85984,72,8,f +18274,85984,71,9,f +18274,86500,40,1,f +18274,87079,71,3,f +18274,87079,378,4,f +18274,87079,72,4,f +18274,87081,0,4,f +18274,87081,72,1,f +18274,87083,72,1,f +18274,87571pr0003,27,1,f +18274,87580,72,1,f +18274,87926,15,2,f +18274,88072,4,1,f +18274,92099,72,1,f +18274,92107,72,1,f +18274,92279,40,1,f +18274,92280,15,2,f +18274,92582,15,2,f +18274,92738,0,1,f +18274,92947,0,2,f +18274,92950,71,3,f +18274,96874,25,1,t +18274,970c00pr0720,72,1,f +18274,970c00pr0731,191,1,f +18274,970c00pr0732,25,1,f +18274,970c00pr0735,15,1,f +18274,973pr2769c01,326,1,f +18274,973pr2791c01,191,1,f +18274,973pr2792c01,308,1,f +18274,973pr2795c01,15,1,f +18274,98138,46,8,f +18274,98138,179,1,t +18274,98138,179,2,f +18274,98138,46,3,t +18274,98286,71,4,f +18274,98287,71,2,f +18274,99207,0,2,f +18278,10197,0,2,f +18278,11214,72,12,f +18278,11478,0,2,f +18278,13971,71,1,f +18278,14720,71,2,f +18278,15100,0,8,f +18278,15413,0,4,f +18278,15462,70,2,f +18278,18575,19,4,f +18278,18651,0,3,f +18278,18654,72,8,f +18278,22961,71,5,f +18278,24116,72,1,f +18278,24116,71,2,f +18278,24316,70,2,f +18278,26287,4,1,f +18278,2736,71,2,f +18278,2780,0,87,f +18278,27940,72,1,f +18278,2825,71,2,f +18278,2850a,71,2,f +18278,2850b,71,2,f +18278,2851,14,4,f +18278,2852,71,4,f +18278,2853,14,2,f +18278,2854,19,1,f +18278,32009,0,2,f +18278,32013,71,2,f +18278,32016,1,4,f +18278,32034,0,6,f +18278,32039,0,3,f +18278,32054,0,5,f +18278,32054,71,15,f +18278,32062,4,16,f +18278,32073,71,17,f +18278,32123b,14,9,f +18278,32123b,71,4,f +18278,32140,4,1,f +18278,32140,1,4,f +18278,32140,0,6,f +18278,32184,71,5,f +18278,32184,0,7,f +18278,32192,4,4,f +18278,32270,0,6,f +18278,32278,0,2,f +18278,32278,4,2,f +18278,32291,0,2,f +18278,32293,0,1,f +18278,32316,1,1,f +18278,32316,0,4,f +18278,32316,71,9,f +18278,32348,4,3,f +18278,32523,0,8,f +18278,32523,72,2,f +18278,32523,1,3,f +18278,32523pr0001,15,3,f +18278,32524,72,4,f +18278,32524,0,6,f +18278,32525,0,2,f +18278,32526,4,2,f +18278,32526,71,2,f +18278,32526,0,4,f +18278,33299a,0,2,f +18278,3705,4,5,f +18278,3706,4,2,f +18278,3706,0,3,f +18278,3713,71,12,f +18278,3749,19,6,f +18278,40490,71,1,f +18278,40490,0,3,f +18278,41239,72,1,f +18278,41677,0,2,f +18278,41677,71,4,f +18278,4185,71,1,f +18278,42003,0,9,f +18278,42003,71,1,f +18278,42610,71,2,f +18278,4274,71,3,f +18278,43093,1,15,f +18278,44294,14,5,f +18278,4519,71,11,f +18278,48989,71,2,f +18278,56145,0,4,f +18278,57585,71,1,f +18278,59426,72,2,f +18278,59443,4,4,f +18278,60483,0,12,f +18278,60483,71,10,f +18278,60484,0,3,f +18278,60485,71,2,f +18278,6141,36,2,f +18278,6141,182,1,f +18278,61903,71,2,f +18278,62462,0,1,f +18278,62462,71,1,f +18278,63869,0,5,f +18278,64179,71,3,f +18278,6536,72,6,f +18278,6536,0,10,f +18278,6536,1,3,f +18278,6558,1,39,f +18278,6575,72,4,f +18278,6589,19,1,f +18278,6628,0,3,f +18278,6629,0,2,f +18278,76537,14,2,f +18278,78c07,179,2,f +18278,87082,71,5,f +18278,87083,72,5,f +18278,87408,0,1,f +18293,11403pr0008c01,85,1,f +18293,11609,191,1,t +18293,11609,191,1,f +18293,11816pr0017,78,1,f +18293,15573,85,2,f +18293,15712,15,2,f +18293,20482,47,1,t +18293,20482,47,1,f +18293,3032,19,1,f +18293,30374,71,1,f +18293,3040b,85,2,f +18293,30414,15,1,f +18293,3062b,1,1,f +18293,3069bpr0130,322,1,f +18293,3666,25,1,f +18293,3700,15,1,f +18293,4274,71,1,t +18293,4274,71,1,f +18293,6190,322,1,f +18293,6636,191,2,f +18293,92257,308,1,f +18293,92456pr0108c01,78,1,f +18293,92593,322,1,f +18293,98138,0,1,t +18293,98138,0,2,f +18318,11211,19,8,f +18318,11215,15,4,f +18318,11458,15,9,f +18318,11458,0,4,f +18318,11477,4,4,f +18318,11477,14,4,f +18318,11610,0,2,f +18318,11833,71,2,f +18318,14417,72,8,f +18318,14704,71,8,f +18318,15068,4,16,f +18318,15068,15,52,f +18318,15068,0,24,f +18318,15395,179,6,f +18318,15535,2,1,f +18318,15573,71,62,f +18318,15672,15,4,f +18318,15712,0,10,f +18318,15712,15,2,f +18318,15712,4,4,f +18318,18649,71,2,f +18318,18671,72,4,f +18318,18674,71,4,f +18318,18674,15,5,f +18318,18976,179,6,f +18318,20482,0,7,f +18318,20482,0,1,t +18318,20482,15,4,f +18318,20482,15,1,t +18318,22885,71,10,f +18318,22888,19,6,f +18318,22888,72,2,f +18318,2412b,15,112,f +18318,2419,71,2,f +18318,2420,14,4,f +18318,24246,71,1,t +18318,24246,71,2,f +18318,24309,0,48,f +18318,24309,15,148,f +18318,24309pr0001,15,4,f +18318,24309pr0002,15,4,f +18318,24309pr0003,15,4,f +18318,24309pr0004,15,4,f +18318,2431,15,4,f +18318,2431,0,4,f +18318,2445,71,2,f +18318,2456,15,5,f +18318,24593,71,2,f +18318,26047,0,20,f +18318,2654pr0013,71,1,f +18318,2780,0,1,t +18318,2780,0,13,f +18318,2817,71,4,f +18318,2922,148,4,f +18318,3001,71,4,f +18318,3003,19,11,f +18318,3005,15,4,f +18318,3005,0,4,f +18318,30136,71,8,f +18318,3020,72,26,f +18318,3020,1,17,f +18318,3020,15,4,f +18318,3021,0,2,f +18318,3021,14,10,f +18318,3021,19,2,f +18318,3022,6,16,f +18318,3022,71,4,f +18318,3022,15,4,f +18318,3022,0,4,f +18318,3023,72,3,f +18318,3023,0,12,f +18318,3023,1,71,f +18318,3024,15,2,f +18318,3024,297,1,t +18318,3024,15,1,t +18318,3024,297,8,f +18318,3030,72,4,f +18318,3031,2,3,f +18318,3032,71,16,f +18318,3034,19,40,f +18318,3034,0,1,f +18318,3037,71,4,f +18318,30374,15,9,f +18318,30389c,0,4,f +18318,3039,71,4,f +18318,3040b,0,4,f +18318,3040b,15,4,f +18318,30541,0,4,f +18318,30541,15,4,f +18318,30554b,25,8,f +18318,30562,72,10,f +18318,30562,15,10,f +18318,3062b,15,35,f +18318,3062b,0,19,f +18318,3068b,15,12,f +18318,3069b,15,11,f +18318,3069b,0,11,f +18318,3069b,71,8,f +18318,3069bpr0205,47,1,f +18318,3070b,15,3,f +18318,3070b,15,1,t +18318,32062,4,8,f +18318,32064a,4,8,f +18318,32064a,71,2,f +18318,32449,72,12,f +18318,3245b,19,4,f +18318,32474,191,3,f +18318,33291,71,4,f +18318,33291,71,1,t +18318,33299a,71,4,f +18318,3460,71,2,f +18318,3460,1,2,f +18318,3460,15,4,f +18318,3623,15,8,f +18318,3623,2,4,f +18318,3623,0,4,f +18318,3666,1,3,f +18318,3666,71,4,f +18318,3700,71,12,f +18318,3707,0,5,f +18318,3710,71,2,f +18318,3710,19,12,f +18318,3713,71,1,t +18318,3713,71,4,f +18318,3795,71,22,f +18318,3832,71,10,f +18318,3839b,15,2,f +18318,3937,4,4,f +18318,3941,72,9,f +18318,3943b,0,1,f +18318,3943b,15,1,f +18318,3943bpr0002,72,1,f +18318,3956,71,10,f +18318,3958,19,2,f +18318,4032a,71,4,f +18318,4032a,0,2,f +18318,4032a,15,6,f +18318,4070,72,9,f +18318,4081b,72,1,f +18318,4162,0,2,f +18318,4162,15,4,f +18318,4162pr0056,15,1,f +18318,41747,15,4,f +18318,41748,0,4,f +18318,4274,1,1,t +18318,4274,1,4,f +18318,4349,72,5,f +18318,43888,15,1,f +18318,43898,182,5,f +18318,43898,71,1,f +18318,44294,14,1,f +18318,44302a,72,8,f +18318,44375a,71,1,f +18318,44567a,71,1,f +18318,44728,19,14,f +18318,44728,72,6,f +18318,44728,71,2,f +18318,4477,15,6,f +18318,4477,19,1,f +18318,4519,14,5,f +18318,4599b,15,12,f +18318,4599b,15,1,t +18318,47457,72,4,f +18318,47457,297,2,f +18318,47543,15,2,f +18318,48092,15,12,f +18318,48336,15,8,f +18318,48336,297,4,f +18318,4865b,15,12,f +18318,48723,72,1,f +18318,48729b,72,1,t +18318,48729b,72,4,f +18318,50950,15,24,f +18318,54200,0,2,f +18318,54200,82,1,t +18318,54200,15,1,t +18318,54200,15,7,f +18318,54200,82,4,f +18318,54200,0,1,t +18318,59900,15,2,f +18318,6005,71,16,f +18318,60474,71,4,f +18318,60474,15,1,f +18318,60478,72,12,f +18318,61184,4,1,f +18318,61252,19,4,f +18318,6134,71,4,f +18318,6141,15,59,f +18318,6141,0,1,t +18318,6141,15,3,t +18318,6141,182,1,t +18318,6141,182,5,f +18318,6141,0,8,f +18318,6177,272,1,f +18318,6222,71,2,f +18318,6233,0,1,f +18318,6233,72,5,f +18318,6239,15,4,f +18318,62462,15,7,f +18318,63868,4,12,f +18318,63965,15,2,f +18318,64448,1,6,f +18318,64644,297,8,f +18318,64951,148,5,f +18318,6558,1,1,f +18318,6636,15,22,f +18318,6636,0,2,f +18318,6636pr0016,15,4,f +18318,6636pr0017,15,4,f +18318,75937,148,5,f +18318,85861,297,21,f +18318,85861,297,2,t +18318,85975,0,1,f +18318,85984,2,6,f +18318,87079,15,8,f +18318,87081,4,1,f +18318,87083,72,1,f +18318,87087,4,4,f +18318,88072,2,4,f +18318,89523,71,1,f +18318,90398pr0012,15,3,f +18318,90398pr0012,15,1,t +18318,91988,72,12,f +18318,92280,14,12,f +18318,92946,0,4,f +18318,93273,0,8,f +18318,93273,71,4,f +18318,93348,15,4,f +18318,96874,25,1,f +18318,98100,15,1,f +18318,98138,182,5,f +18318,98138,182,1,t +18318,98313,148,5,f +18318,99008,19,1,f +18318,99206,4,2,f +18318,99206,15,34,f +18318,99207,0,4,f +18318,99207,4,42,f +18318,99563,71,4,f +18318,99780,72,40,f +18318,99781,71,40,f +18322,10884,326,6,f +18322,11477,0,6,f +18322,11477,25,1,f +18322,14413,71,4,f +18322,14719,71,2,f +18322,15207,71,2,f +18322,15573,0,6,f +18322,15625,19,2,f +18322,22885,71,2,f +18322,2357,72,4,f +18322,2412b,71,11,f +18322,2412b,0,8,f +18322,2420,72,2,f +18322,2431,71,2,f +18322,2431,0,2,f +18322,2431pr0028,72,1,f +18322,2445,0,1,f +18322,2445,72,1,f +18322,2449,72,2,f +18322,2653,71,2,f +18322,2654,19,1,f +18322,27090pr0002,19,2,f +18322,27130,0,1,f +18322,2736,71,2,f +18322,2780,0,8,f +18322,2877,72,2,f +18322,298c02,71,1,f +18322,3001,14,4,f +18322,3004,72,2,f +18322,3010,27,2,f +18322,3010,71,2,f +18322,30162,72,2,f +18322,3020,19,4,f +18322,3020,72,1,f +18322,3020,2,3,f +18322,3021,25,5,f +18322,3021,1,1,f +18322,3021,72,2,f +18322,3021,71,2,f +18322,3022,19,4,f +18322,3023,72,16,f +18322,3029,71,2,f +18322,30304,72,1,f +18322,3033,19,1,f +18322,3034,71,2,f +18322,3035,71,2,f +18322,30367c,72,1,f +18322,30374,71,1,f +18322,30374,70,1,f +18322,30503,71,4,f +18322,30586,71,2,f +18322,3068bpr0287,0,1,f +18322,3069bpr0090,72,1,f +18322,32016,70,3,f +18322,32018,72,3,f +18322,32028,71,4,f +18322,32039,71,2,f +18322,32062,4,5,f +18322,32073,71,1,f +18322,32556,19,2,f +18322,3297,71,2,f +18322,3298,72,1,f +18322,3460,72,5,f +18322,3623,71,8,f +18322,3626cpr1149,78,2,f +18322,3626cpr2049,78,1,f +18322,3626cpr2050,78,1,f +18322,3665,72,2,f +18322,3666,72,1,f +18322,3666,71,6,f +18322,3666,25,2,f +18322,3701,72,1,f +18322,3703,71,1,f +18322,3705,0,1,f +18322,3707,0,1,f +18322,3710,72,6,f +18322,3710,0,2,f +18322,3895,71,1,f +18322,3937,71,1,f +18322,3941,72,4,f +18322,3941,19,1,f +18322,3957a,71,1,f +18322,3958,19,2,f +18322,4032a,72,2,f +18322,40490,72,4,f +18322,4070,72,4,f +18322,41539,72,2,f +18322,4162,71,3,f +18322,4162,72,3,f +18322,41677,72,4,f +18322,4274,71,1,f +18322,4282,19,3,f +18322,43093,1,1,f +18322,43710,72,1,f +18322,43711,72,1,f +18322,43722,71,2,f +18322,43723,71,2,f +18322,43898,72,1,f +18322,4460b,71,2,f +18322,44728,0,2,f +18322,4477,70,2,f +18322,4510,0,1,f +18322,4519,71,2,f +18322,4599a,70,3,f +18322,4740,71,2,f +18322,4865b,72,8,f +18322,50950,72,2,f +18322,52107,0,2,f +18322,54200,0,2,f +18322,54200,72,4,f +18322,58247,148,1,f +18322,58247,0,3,f +18322,59349,72,2,f +18322,59443,4,2,f +18322,59900,72,1,f +18322,59900,70,1,f +18322,60481,72,10,f +18322,60483,72,2,f +18322,60897,71,2,f +18322,6106,19,2,f +18322,6111,19,2,f +18322,6134,0,1,f +18322,6141,72,2,f +18322,6141,47,4,f +18322,6179,71,1,f +18322,6180,71,2,f +18322,6205,72,1,f +18322,6232,4,9,f +18322,62462,70,2,f +18322,62810,308,1,f +18322,63864,71,4,f +18322,63868,72,2,f +18322,64799,71,2,f +18322,6541,71,2,f +18322,6541,4,4,f +18322,6553,71,2,f +18322,6632,0,2,f +18322,6636,72,2,f +18322,75171stkpr01,9999,1,f +18322,85984,25,8,f +18322,85984pr0006,72,2,f +18322,87079,72,3,f +18322,87087,71,4,f +18322,87990,308,1,f +18322,87994,0,2,f +18322,92593,4,2,f +18322,92946,72,2,f +18322,92947,71,4,f +18322,95199,72,2,f +18322,96874,25,1,f +18322,970c00pr1135,0,1,f +18322,970c00pr1228,28,1,f +18322,970c00pr1230,19,2,f +18322,973pr3575c01,0,1,f +18322,973pr3736c01,70,1,f +18322,973pr3738c01,19,2,f +18322,98100,71,1,f +18322,98138,36,5,f +18322,98138pr0010,179,3,f +18322,99207,71,4,f +18322,99207,0,1,f +18322,99207,25,2,f +18334,30408px2,15,1,f +18334,3626b,14,1,f +18334,970x026,15,1,f +18334,973kcpr3948c01,15,1,f +18340,10201,71,2,f +18340,11153,28,2,f +18340,11212,72,1,f +18340,11295,72,1,f +18340,11477,19,6,f +18340,11477,72,4,f +18340,15068,72,1,f +18340,15207,72,2,f +18340,15307pr0001,308,1,f +18340,18646,28,2,f +18340,18674,70,2,f +18340,23786,326,1,f +18340,2412b,72,2,f +18340,2420,72,2,f +18340,2431,484,1,f +18340,2445,70,1,f +18340,26139,70,1,f +18340,2653,71,2,f +18340,2654,0,6,f +18340,2654,47,8,f +18340,3005,72,6,f +18340,3020,28,4,f +18340,3020,484,2,f +18340,3021,72,3,f +18340,3022,484,1,f +18340,3022,70,1,f +18340,3023,71,6,f +18340,3024,19,2,f +18340,3034,70,3,f +18340,3034,19,1,f +18340,3035,72,1,f +18340,3036,70,1,f +18340,30367c,70,1,f +18340,3039,72,3,f +18340,3039,19,3,f +18340,3040b,28,2,f +18340,3040b,19,12,f +18340,3062b,484,2,f +18340,3069b,28,4,f +18340,3176,71,2,f +18340,32028,28,2,f +18340,32184,71,1,f +18340,3626cpr1149,78,1,f +18340,3626cpr2179,78,1,f +18340,3626cpr2180,484,1,f +18340,3666,72,2,f +18340,3678b,28,2,f +18340,3700,70,6,f +18340,3710,70,3,f +18340,3749,19,4,f +18340,3795,70,3,f +18340,3795,72,1,f +18340,3941,47,8,f +18340,3956,0,4,f +18340,3957b,70,2,f +18340,40378,484,2,f +18340,40379,484,4,f +18340,41532,0,2,f +18340,41678,71,2,f +18340,41749,28,2,f +18340,41750,28,2,f +18340,41769,72,1,f +18340,41770,72,1,f +18340,4274,71,4,f +18340,43722,28,2,f +18340,43723,28,2,f +18340,44302a,72,2,f +18340,4519,71,2,f +18340,48092,19,2,f +18340,48336,0,1,f +18340,48729b,72,4,f +18340,51739,70,1,f +18340,52501,72,3,f +18340,53451,15,6,f +18340,53454,148,1,f +18340,54200,19,8,f +18340,54200,28,2,f +18340,54383,72,3,f +18340,54384,72,3,f +18340,6003,19,4,f +18340,60470a,71,7,f +18340,60483,72,2,f +18340,61190c,72,4,f +18340,6141,0,2,f +18340,6141,19,4,f +18340,61482,71,2,f +18340,6180,70,1,f +18340,6231,72,2,f +18340,63586,72,4,f +18340,63965,0,1,f +18340,63965,70,2,f +18340,64567,0,1,f +18340,64802,378,1,f +18340,6583,28,2,f +18340,6636,70,2,f +18340,6636,19,1,f +18340,75c14,70,1,f +18340,75c18,70,1,f +18340,85861,320,6,f +18340,85984,28,1,f +18340,85984pr0006,72,1,f +18340,87610pr0001a,378,1,f +18340,87752,484,2,f +18340,92593,71,2,f +18340,92738,0,2,f +18340,970c00,308,1,f +18340,970c00pr0632,308,1,f +18340,970c00pr1235,71,1,f +18340,970x312pr1234,70,1,f +18340,973c63,308,1,f +18340,973pr1620c01,15,1,f +18340,973pr3749c01,84,1,f +18340,973pr3751c01,71,1,f +18340,99780,72,6,f +18348,14226c11,0,1,f +18348,3003,15,1,f +18348,3003,0,1,f +18348,3020,4,1,f +18348,3021,0,1,f +18348,3021,15,1,f +18348,3022,2,1,f +18348,3023,15,2,f +18348,3031,4,1,f +18348,3039,0,1,f +18348,3069b,0,1,f +18348,3070b,15,1,f +18348,3307,15,2,f +18348,3660,0,2,f +18348,3710,4,2,f +18348,3794b,15,1,f +18348,3795,15,1,f +18348,3795,2,1,f +18348,42023,4,4,f +18348,6091,15,1,f +18348,6141,4,4,f +18348,85984,0,1,f +18351,17774pr0002,118,1,f +18351,3626cpr9990,118,1,f +18351,92738,0,1,f +18351,970c00,4,1,f +18351,973pr9983c01,118,1,f +18360,11477,272,1,f +18360,15391,71,1,f +18360,15392,72,1,f +18360,15573,72,1,f +18360,15712,71,1,f +18360,18677,71,2,f +18360,18976,179,2,f +18360,22388,179,1,f +18360,22388,57,2,f +18360,22402,321,1,f +18360,2432,1,1,f +18360,2540,72,1,f +18360,2817,71,1,f +18360,30031,72,1,f +18360,3020,272,1,f +18360,3022,1,2,f +18360,30273,1,1,f +18360,30375,1,1,f +18360,32073,14,1,f +18360,32123b,71,2,f +18360,32187,179,2,f +18360,3626cpr1817,179,1,f +18360,3673,7,2,f +18360,4497,6,1,f +18360,47456,272,1,f +18360,48729b,57,2,f +18360,50950,272,1,f +18360,60897,25,1,f +18360,61252,1,4,f +18360,6141,57,3,f +18360,64647,57,1,f +18360,92946,1,4,f +18360,970c00pr0968,71,1,f +18360,973pr3190c01,71,1,f +18360,98313,1,1,f +18360,99207,1,1,f +18362,3001,378,1,f +18400,11476,71,2,f +18400,11477,72,1,f +18400,11477,272,8,f +18400,15573,272,2,f +18400,2412b,71,4,f +18400,3069b,72,4,f +18400,32028,0,1,f +18400,3666,72,4,f +18400,4032a,72,2,f +18400,48336,72,2,f +18400,54200,72,1,f +18400,60470b,71,2,f +18400,90194,72,1,f +18400,99780,72,1,f +18402,11211,71,2,f +18402,11253,297,1,t +18402,11253,297,1,f +18402,11477,25,6,f +18402,11477,0,2,f +18402,15573,0,1,f +18402,18973,40,1,f +18402,18974,25,4,f +18402,18975,72,2,f +18402,18976,179,4,f +18402,18977,0,4,f +18402,18980,25,2,f +18402,18980,0,1,f +18402,22888,72,1,f +18402,2357,71,2,f +18402,2412b,72,1,f +18402,2420,15,2,f +18402,24299,0,1,f +18402,24299,25,2,f +18402,24307,25,2,f +18402,24307,0,1,f +18402,2446,15,1,f +18402,2447,47,1,f +18402,2447,47,1,t +18402,25269,25,1,t +18402,25269,25,2,f +18402,26047,0,1,f +18402,29117,179,1,f +18402,29119,25,1,f +18402,29120,25,1,f +18402,3001,15,1,f +18402,30029,0,1,f +18402,3004,0,2,f +18402,3021,1,1,f +18402,3022,25,1,f +18402,3022,71,2,f +18402,3023,25,4,f +18402,3023,0,7,f +18402,3023,47,1,f +18402,3024,25,1,t +18402,3024,0,1,t +18402,3024,0,2,f +18402,3024,25,6,f +18402,30357,15,2,f +18402,30377,0,1,f +18402,30377,0,1,t +18402,30602,40,1,f +18402,30602,0,1,f +18402,3062b,0,2,f +18402,3069b,25,1,f +18402,3070b,0,1,t +18402,3070b,0,2,f +18402,3070b,25,1,t +18402,3070b,25,2,f +18402,3460,71,2,f +18402,3623,1,2,f +18402,3626cpr1665,14,1,f +18402,3666,25,2,f +18402,3678b,72,1,f +18402,3710,0,1,f +18402,3749,19,4,f +18402,3795,0,1,f +18402,3829c01,71,1,f +18402,3899,4,1,f +18402,3937,71,2,f +18402,3938,0,1,f +18402,3941,71,1,f +18402,4006,0,1,f +18402,4079,0,1,f +18402,41854,25,1,f +18402,43722,25,1,f +18402,43723,25,1,f +18402,44728,4,2,f +18402,50949,0,1,f +18402,50950,0,4,f +18402,50950,25,2,f +18402,54200,25,2,f +18402,54200,0,2,f +18402,54200,0,1,t +18402,54200,25,1,t +18402,60478,0,1,f +18402,6134,71,1,f +18402,6141,47,2,f +18402,6141,1,2,f +18402,6141,1,1,t +18402,6141,47,1,t +18402,6179,15,1,f +18402,6231,0,2,f +18402,62810,308,1,f +18402,6636,25,2,f +18402,85861,0,1,t +18402,85861,0,6,f +18402,85984,0,2,f +18402,87079,25,2,f +18402,93606,25,1,f +18402,970c00,19,1,f +18402,973pr3684c01,0,1,f +18402,99206,0,3,f +18402,99207,15,4,f +18417,11458,15,2,f +18417,15535,4,2,f +18417,15573,15,4,f +18417,18674,15,1,f +18417,22885,71,2,f +18417,2412b,272,3,f +18417,26603,15,1,f +18417,2780,0,1,t +18417,2780,0,2,f +18417,3020,71,1,f +18417,3021,15,2,f +18417,3022,15,2,f +18417,3022,1,1,f +18417,3023,71,2,f +18417,3023,15,2,f +18417,30236,15,1,f +18417,3024,15,1,t +18417,3024,15,2,f +18417,3069bpr0185,272,1,f +18417,3070b,71,1,f +18417,3070b,71,1,t +18417,32064a,15,2,f +18417,32316,15,2,f +18417,3941,4,1,f +18417,4032a,15,2,f +18417,4274,1,1,t +18417,4274,71,4,f +18417,4274,1,2,f +18417,4274,71,1,t +18417,43093,1,2,f +18417,4697b,71,2,f +18417,4697b,71,1,t +18417,48729b,71,1,f +18417,48729b,71,1,t +18417,54200,15,4,f +18417,54200,15,1,t +18417,60474,71,1,f +18417,6081,15,2,f +18417,6091,15,4,f +18417,6141,179,2,f +18417,6141,179,1,t +18417,6587,28,1,f +18417,75937,15,1,f +18417,85984,15,3,f +18417,86500pr0003,179,1,f +18417,98138,71,1,f +18417,98138,71,1,t +18428,11211,0,1,f +18428,11212,71,2,f +18428,11477,71,1,f +18428,11610,19,1,f +18428,11640,4,1,f +18428,14719,15,10,f +18428,14719,71,2,f +18428,15068,19,6,f +18428,15068,71,2,f +18428,15573,71,1,f +18428,15672,4,8,f +18428,15712,71,2,f +18428,2357,72,2,f +18428,2357,19,10,f +18428,2412b,72,3,f +18428,2420,19,4,f +18428,2420,15,4,f +18428,2423,2,3,f +18428,2431,0,1,f +18428,2431,15,10,f +18428,2432,71,2,f +18428,2453b,19,2,f +18428,2454a,19,4,f +18428,2465,19,2,f +18428,2496,0,2,f +18428,2654,0,1,f +18428,3004,0,2,f +18428,3004,72,2,f +18428,3005,0,10,f +18428,3005,19,1,f +18428,3009,19,2,f +18428,3009,4,6,f +18428,3010,19,1,f +18428,3010,72,4,f +18428,30153,46,1,f +18428,3020,71,1,f +18428,3020,15,4,f +18428,3020,19,1,f +18428,3020,72,7,f +18428,3021,71,2,f +18428,3022,71,1,f +18428,3022,15,1,f +18428,3022,19,2,f +18428,3023,25,2,f +18428,3023,15,1,f +18428,3023,71,2,f +18428,3024,19,1,t +18428,3024,19,5,f +18428,30340,14,1,f +18428,3035,1,2,f +18428,3037,4,4,f +18428,3039,71,1,f +18428,3039,4,4,f +18428,3040b,4,4,f +18428,3040b,72,2,f +18428,3045,4,4,f +18428,30504,2,1,f +18428,3062b,71,9,f +18428,3068b,1,2,f +18428,3068b,71,1,f +18428,3069b,0,2,f +18428,33057,484,1,f +18428,33183,10,2,f +18428,33291,10,12,f +18428,3622,19,1,f +18428,3626bpr0645,14,1,f +18428,3626cpr1635,14,1,f +18428,3633,0,7,f +18428,3666,15,2,f +18428,3700,0,1,f +18428,3710,19,2,f +18428,3710,70,1,f +18428,3900,15,2,f +18428,3941,0,1,f +18428,3957a,15,1,f +18428,3960,191,1,f +18428,4032a,72,2,f +18428,4032a,1,4,f +18428,4070,72,2,f +18428,41539,71,2,f +18428,41539,2,1,f +18428,41879a,30,1,f +18428,42511,27,1,f +18428,4740,71,1,f +18428,48336,71,2,f +18428,4865b,19,2,f +18428,49668,191,1,f +18428,54200,4,7,f +18428,54200,15,3,f +18428,54200,71,3,f +18428,54200,4,1,t +18428,54200,15,1,t +18428,54200,71,1,t +18428,59363,70,1,f +18428,60474,320,1,f +18428,60594,15,2,f +18428,60596,15,1,f +18428,60623,272,1,f +18428,60897,19,1,f +18428,6141,72,1,t +18428,6141,15,1,f +18428,6141,15,1,t +18428,6141,1,8,f +18428,6141,14,2,f +18428,6141,182,4,f +18428,6141,27,17,f +18428,6141,72,6,f +18428,6141,1,1,t +18428,6141,182,1,t +18428,6179,1,2,f +18428,6231,19,4,f +18428,6254,15,1,f +18428,63864,25,2,f +18428,64727,2,4,f +18428,85984,72,2,f +18428,87079,0,1,f +18428,87087,19,2,f +18428,87552,0,1,f +18428,87580,19,1,f +18428,87991,19,1,f +18428,88646,71,1,f +18428,92280,71,2,f +18428,92438,71,1,f +18428,92593,15,4,f +18428,92593,72,6,f +18428,92593,71,3,f +18428,970c00,272,1,f +18428,973pr1479c01,15,1,f +18428,973pr3017c01,29,1,f +18428,98138,71,3,f +18428,98138,71,1,t +18428,98283,72,8,f +18428,98283,71,2,f +18428,99207,71,1,f +18428,99207,25,2,f +18429,11477,272,2,f +18429,14719,4,2,f +18429,14719,272,8,f +18429,15068,15,8,f +18429,15070,15,1,f +18429,15395,2,2,f +18429,15395,15,1,f +18429,15712,0,1,f +18429,18920,179,1,f +18429,20877,484,1,f +18429,2357,73,4,f +18429,2357,15,5,f +18429,2412b,71,8,f +18429,2420,72,2,f +18429,2420,27,2,f +18429,2423,2,1,f +18429,2431,14,2,f +18429,2431,70,4,f +18429,2431,84,1,f +18429,2431,41,2,f +18429,2431,272,9,f +18429,2437,40,1,f +18429,2453b,15,1,f +18429,2454a,15,8,f +18429,2465,15,2,f +18429,298c02,4,1,f +18429,3004,73,14,f +18429,3004,70,2,f +18429,3004,15,1,f +18429,3005,47,2,f +18429,3005,70,1,f +18429,3005,15,4,f +18429,3008,15,2,f +18429,3009,15,4,f +18429,3010,15,2,f +18429,3010,73,1,f +18429,3020,27,1,f +18429,3020,2,1,f +18429,3020,14,1,f +18429,3020,70,2,f +18429,3020,4,1,f +18429,3020,15,10,f +18429,3021,15,1,f +18429,3022,19,2,f +18429,3023,41,2,f +18429,3023,71,1,f +18429,3023,4,1,f +18429,3023,14,2,f +18429,3023,27,6,f +18429,3023,15,11,f +18429,3023,0,2,f +18429,3034,70,2,f +18429,3035,72,2,f +18429,3035,2,1,f +18429,3062b,70,2,f +18429,3062b,71,7,f +18429,3062b,0,1,f +18429,3062b,46,1,f +18429,3065,47,4,f +18429,3069b,14,1,f +18429,3069b,4,1,f +18429,33291,212,2,f +18429,33291,191,2,f +18429,33291,4,5,f +18429,34337,15,4,f +18429,3460,70,2,f +18429,3623,15,1,f +18429,3626bpr0677,14,1,f +18429,3626cpr0893,14,1,f +18429,3660,15,2,f +18429,3660,70,2,f +18429,3665,15,4,f +18429,3666,70,4,f +18429,3666,272,1,f +18429,3666,72,2,f +18429,3700,70,1,f +18429,3710,2,1,f +18429,3710,73,2,f +18429,3710,27,2,f +18429,3710,4,1,f +18429,3710,70,3,f +18429,3794b,15,1,f +18429,3795,15,3,f +18429,3829c01,15,1,f +18429,3942c,2,2,f +18429,3958,0,1,f +18429,3960,272,1,f +18429,4032a,70,8,f +18429,4070,27,2,f +18429,4079,4,2,f +18429,41539,2,1,f +18429,41539,72,2,f +18429,4162,272,2,f +18429,4162,70,7,f +18429,41770,2,1,f +18429,41879a,321,1,f +18429,4274,71,1,f +18429,4490,19,1,f +18429,4599b,71,2,f +18429,46212,47,3,f +18429,4733,19,1,f +18429,48729b,71,1,f +18429,52107,15,1,f +18429,54200,15,1,f +18429,54200,19,3,f +18429,54200,2,4,f +18429,54200,47,1,f +18429,59349,47,1,f +18429,59900,4,1,f +18429,60212,0,2,f +18429,60596,70,2,f +18429,60616a,47,2,f +18429,6141,47,3,f +18429,6141,4,2,f +18429,6141,27,9,f +18429,6141,72,4,f +18429,6141,46,1,f +18429,6141,0,3,f +18429,6157,0,2,f +18429,63965,70,1,f +18429,64644,0,1,f +18429,64727,2,2,f +18429,6541,4,1,f +18429,6636,14,2,f +18429,6636,71,4,f +18429,73590c03b,14,1,f +18429,85984,27,1,f +18429,85984,15,2,f +18429,85984,0,1,f +18429,86035,27,1,f +18429,87079,0,1,f +18429,87087,70,1,f +18429,87414,0,4,f +18429,87544,47,3,f +18429,87552,15,3,f +18429,87994,0,1,f +18429,88646,71,2,f +18429,92099,72,1,f +18429,92280,71,2,f +18429,92438,72,1,f +18429,92593,4,2,f +18429,92593,272,11,f +18429,92593,15,1,f +18429,92690,71,1,f +18429,93273,15,2,f +18429,93274,27,1,f +18429,970c00,85,1,f +18429,973pr1801c01,25,1,f +18429,973pr3424c01,30,1,f +18429,98138pr0008,15,2,f +18429,98283,84,8,f +18429,99207,4,2,f +18429,99207,71,1,f +18429,99780,0,6,f +18429,99781,15,2,f +18430,10314,14,1,f +18430,11303,1,1,f +18430,11458,15,2,f +18430,14719,71,12,f +18430,15068,1,3,f +18430,15068,322,2,f +18430,15068,71,8,f +18430,15068,14,2,f +18430,15395,322,1,f +18430,15397,0,2,f +18430,15573,1,1,f +18430,15573,71,4,f +18430,15712,0,2,f +18430,18674,70,1,f +18430,20310,15,4,f +18430,20482,297,1,f +18430,21445,0,1,f +18430,2357,15,30,f +18430,2357,71,6,f +18430,2412b,0,4,f +18430,2412b,71,8,f +18430,2417,2,1,f +18430,2420,14,4,f +18430,24201,0,2,f +18430,2423,2,1,f +18430,2431,322,2,f +18430,2431,71,15,f +18430,2432,71,2,f +18430,2453b,15,6,f +18430,2454a,15,8,f +18430,2465,15,2,f +18430,27186,308,1,f +18430,2780,0,1,f +18430,2877,14,1,f +18430,2877,70,3,f +18430,28809,71,2,f +18430,298c02,14,1,f +18430,3001,71,3,f +18430,3002,71,2,f +18430,3004,71,8,f +18430,3004,15,10,f +18430,3005,15,12,f +18430,3005,1,2,f +18430,3005,71,4,f +18430,3008,15,6,f +18430,3008,4,2,f +18430,3009,15,10,f +18430,3010,71,7,f +18430,3010,15,6,f +18430,30134,70,1,f +18430,30136,71,3,f +18430,3020,1,2,f +18430,3020,0,5,f +18430,3020,14,3,f +18430,3020,70,8,f +18430,3020,71,4,f +18430,3021,72,4,f +18430,3022,71,3,f +18430,3022,1,3,f +18430,3023,72,4,f +18430,3023,47,5,f +18430,3023,15,2,f +18430,3023,182,2,f +18430,3023,70,6,f +18430,3023,4,1,f +18430,3023,28,2,f +18430,3024,14,3,f +18430,3024,70,6,f +18430,3024,15,7,f +18430,3031,1,1,f +18430,3034,19,1,f +18430,30340,14,1,f +18430,3035,19,1,f +18430,3036,70,1,f +18430,30363,320,1,f +18430,3037,72,1,f +18430,3037,4,13,f +18430,30374,71,1,f +18430,3039,4,10,f +18430,3039,320,8,f +18430,3039,272,4,f +18430,3040b,15,2,f +18430,3040b,4,2,f +18430,3040b,71,2,f +18430,3062b,46,1,f +18430,3062b,70,8,f +18430,3062b,71,4,f +18430,3062b,15,27,f +18430,3065,47,2,f +18430,3068b,19,3,f +18430,3068b,320,4,f +18430,3068b,14,3,f +18430,3068bpr0292,70,1,f +18430,3069b,15,2,f +18430,3069b,14,7,f +18430,3069b,28,2,f +18430,3069bpr0099,15,1,f +18430,3176,0,1,f +18430,32028,71,8,f +18430,3245b,15,4,f +18430,33291,10,18,f +18430,33291,297,3,f +18430,3460,19,1,f +18430,3622,14,2,f +18430,3622,19,4,f +18430,3623,0,3,f +18430,3623,71,4,f +18430,3626bpr0677,14,1,f +18430,3626cpr1147,14,1,f +18430,3626cpr1675,14,1,f +18430,3659,15,2,f +18430,3666,322,1,f +18430,3666,0,3,f +18430,3666,1,2,f +18430,3666,15,5,f +18430,3675,4,2,f +18430,3676,15,2,f +18430,3700,19,1,f +18430,3710,1,3,f +18430,3710,14,2,f +18430,3710,72,4,f +18430,3794b,15,1,f +18430,3795,15,2,f +18430,3795,2,1,f +18430,3823,40,1,f +18430,3829c01,4,1,f +18430,3835,0,1,f +18430,3899,4,1,f +18430,3941,0,2,f +18430,4032a,0,7,f +18430,4032a,72,5,f +18430,4070,1,3,f +18430,4081b,71,2,f +18430,41539,2,2,f +18430,41539,19,4,f +18430,4162,71,1,f +18430,41879a,1,1,f +18430,43093,1,1,f +18430,4490,0,1,f +18430,4528,0,1,f +18430,4599b,71,1,f +18430,4624,71,4,f +18430,4740,0,1,f +18430,47457,1,2,f +18430,48336,71,1,f +18430,4865b,28,1,f +18430,4865b,40,1,f +18430,48729b,0,2,f +18430,54200,70,3,f +18430,54200,14,6,f +18430,54200,322,4,f +18430,54200,15,6,f +18430,59900,72,2,f +18430,6003,2,1,f +18430,60470a,0,1,f +18430,60475b,71,1,f +18430,60477,4,2,f +18430,60478,0,2,f +18430,60581,15,3,f +18430,60592,70,1,f +18430,60593,28,13,f +18430,60596,28,2,f +18430,60602,47,13,f +18430,60616a,47,1,f +18430,60623,14,1,f +18430,6091,14,2,f +18430,61252,14,1,f +18430,6141,29,9,f +18430,6141,0,4,f +18430,6141,15,4,f +18430,6141,25,3,f +18430,6141,4,6,f +18430,6141,46,1,f +18430,6141,71,6,f +18430,6157,0,2,f +18430,6182,19,1,f +18430,6231,1,2,f +18430,62930,47,1,f +18430,63864,14,4,f +18430,63965,0,1,f +18430,64647,182,1,f +18430,6636,70,3,f +18430,87079,4,2,f +18430,87079,72,1,f +18430,87079,1,2,f +18430,87087,72,2,f +18430,87414,0,4,f +18430,87552,0,1,f +18430,87580,71,4,f +18430,87580,28,5,f +18430,87580,2,1,f +18430,87580,15,1,f +18430,88646,71,3,f +18430,91501,71,1,f +18430,92438,19,2,f +18430,92593,71,21,f +18430,92950,15,3,f +18430,93160,15,1,f +18430,93273,15,1,f +18430,93274,14,1,f +18430,96874,25,1,f +18430,970c00,73,1,f +18430,970c00,28,1,f +18430,973pr2875c01,2,1,f +18430,973pr3427c01,84,1,f +18430,973pr3432c01,15,1,f +18430,98138,36,2,f +18430,98138pr0012,179,1,f +18430,98281,4,1,f +18430,98283,72,3,f +18430,99207,71,4,f +18430,99780,15,4,f +18430,99930,0,1,f +18431,11153,1,6,f +18431,11153,322,1,f +18431,11215,0,15,f +18431,11458,0,4,f +18431,11477,15,2,f +18431,11477,322,2,f +18431,11477,71,2,f +18431,11477,1,4,f +18431,13548,1,2,f +18431,14769,71,1,f +18431,15068,15,1,f +18431,15068,1,6,f +18431,15461,0,4,f +18431,15573,72,8,f +18431,15672,1,2,f +18431,15712,1,2,f +18431,18352,72,1,f +18431,18649,0,6,f +18431,18654,179,5,f +18431,18671,71,4,f +18431,19212,40,1,f +18431,22484,72,1,f +18431,22961,71,3,f +18431,24014,71,2,f +18431,2412b,179,5,f +18431,2412b,15,2,f +18431,2420,191,2,f +18431,2420,1,4,f +18431,24316,70,4,f +18431,25214,148,2,f +18431,2654,72,2,f +18431,2730,15,2,f +18431,2736,71,2,f +18431,2780,0,19,f +18431,27925,1,2,f +18431,2877,0,4,f +18431,28809,71,8,f +18431,298c02,1,1,f +18431,3001,71,3,f +18431,3002,4,2,f +18431,3003,1,3,f +18431,3004,15,1,f +18431,3004,1,6,f +18431,3004,72,3,f +18431,3010,71,2,f +18431,3021,1,4,f +18431,3022,71,3,f +18431,3022,1,2,f +18431,3023,0,5,f +18431,3023,2,2,f +18431,3023,14,2,f +18431,3023,1,8,f +18431,3024,0,2,f +18431,3024,1,14,f +18431,3024,182,2,f +18431,3029,0,1,f +18431,3032,71,2,f +18431,3034,15,1,f +18431,3035,1,1,f +18431,30357,0,2,f +18431,3040b,1,4,f +18431,30414,72,1,f +18431,3062b,14,8,f +18431,3062b,4,1,f +18431,3068b,1,12,f +18431,3068b,72,5,f +18431,3069b,1,10,f +18431,3069b,191,3,f +18431,3069bpr0101,71,1,f +18431,3070b,1,4,f +18431,3070b,322,1,f +18431,3070b,15,2,f +18431,32000,0,2,f +18431,32005a,0,2,f +18431,32013,0,2,f +18431,32013,15,2,f +18431,32015,1,2,f +18431,32016,15,2,f +18431,32028,0,1,f +18431,32034,0,1,f +18431,32054,4,2,f +18431,32062,4,6,f +18431,32064a,4,1,f +18431,32123b,14,4,f +18431,32126,1,2,f +18431,32184,0,2,f +18431,32270,0,2,f +18431,32316,0,2,f +18431,32526,71,2,f +18431,32530,72,4,f +18431,32531,0,2,f +18431,32532,71,1,f +18431,3460,72,2,f +18431,3622,1,2,f +18431,3623,0,10,f +18431,3623,1,14,f +18431,3665,72,6,f +18431,3666,1,3,f +18431,3700,71,2,f +18431,3701,72,1,f +18431,3702,0,1,f +18431,3705,0,3,f +18431,3706,4,2,f +18431,3710,15,1,f +18431,3710,0,2,f +18431,3710,322,1,f +18431,3710,1,11,f +18431,3749,19,3,f +18431,3795,71,4,f +18431,3795,191,1,f +18431,3832,0,1,f +18431,3895,71,2,f +18431,3937,71,4,f +18431,3937,1,4,f +18431,3938,0,8,f +18431,3958,72,1,f +18431,4006,179,1,f +18431,4032a,72,4,f +18431,4070,14,6,f +18431,4070,72,10,f +18431,4162,15,2,f +18431,4162,0,1,f +18431,4162,1,3,f +18431,41678,0,1,f +18431,41747,1,1,f +18431,41748,1,1,f +18431,41854,191,4,f +18431,42003,71,1,f +18431,4286,0,2,f +18431,43093,1,4,f +18431,43722,1,2,f +18431,43723,1,2,f +18431,44728,1,4,f +18431,44728,0,5,f +18431,4477,15,1,f +18431,4519,71,4,f +18431,4599b,4,1,f +18431,47407,272,1,f +18431,50950,1,2,f +18431,54200,1,4,f +18431,54200,47,2,f +18431,54200,72,4,f +18431,54200,322,1,f +18431,54200,15,1,f +18431,55978,0,4,f +18431,56145,15,4,f +18431,59443,71,4,f +18431,59443,0,2,f +18431,60470a,0,2,f +18431,60477,1,2,f +18431,60478,1,2,f +18431,60479,0,2,f +18431,60481,1,2,f +18431,60897,1,4,f +18431,6111,4,1,f +18431,61409,1,4,f +18431,6141,41,6,f +18431,6141,72,10,f +18431,61678,15,1,f +18431,6232,14,2,f +18431,62361,1,6,f +18431,62701,15,4,f +18431,63864,15,1,f +18431,63868,0,2,f +18431,64453,40,1,f +18431,6541,1,6,f +18431,6541,15,1,f +18431,6541,322,1,f +18431,6558,1,7,f +18431,6628,0,2,f +18431,6636,72,6,f +18431,85861,71,3,f +18431,85984,1,14,f +18431,85984,15,1,f +18431,87079,15,1,f +18431,87079,1,10,f +18431,87083,72,2,f +18431,87087,1,14,f +18431,87087,4,2,f +18431,87620,72,2,f +18431,88930,0,3,f +18431,92280,71,6,f +18431,93095,0,3,f +18431,93273,72,1,f +18431,93606,15,1,f +18431,93606,1,4,f +18431,96874,25,1,f +18431,98138,36,2,f +18431,98138,182,4,f +18431,98138,47,6,f +18431,98138,71,3,f +18431,99206,71,4,f +18431,99207,71,2,f +18431,99780,0,1,f +18431,99780,71,2,f +18431,99781,1,8,f +18432,11153,72,1,f +18432,15070,297,2,f +18432,15071,0,1,f +18432,15392,72,1,f +18432,15403,71,1,f +18432,15461,0,1,f +18432,15573,72,3,f +18432,21778,0,1,f +18432,22886,14,2,f +18432,2357,72,1,f +18432,2412b,179,2,f +18432,2412b,71,1,f +18432,24144,0,1,f +18432,2420,1,3,f +18432,2445,72,1,f +18432,2453b,71,2,f +18432,2454b,1,2,f +18432,2780,0,1,f +18432,28809,71,2,f +18432,3002,72,1,f +18432,3003,1,1,f +18432,3004,72,1,f +18432,3004,1,2,f +18432,3004,2,1,f +18432,3004,71,1,f +18432,3005,28,2,f +18432,3010,1,1,f +18432,3020,71,1,f +18432,3021,1,2,f +18432,3021,71,1,f +18432,3022,1,1,f +18432,3022,71,2,f +18432,3022,2,3,f +18432,3023,1,5,f +18432,3023,71,2,f +18432,3024,72,2,f +18432,3024,1,2,f +18432,3028,72,1,f +18432,30374,52,1,f +18432,3039,2,2,f +18432,3062b,4,1,f +18432,3069b,25,1,f +18432,3069bpr0100,2,6,f +18432,3070b,1,1,f +18432,32000,14,2,f +18432,32000,72,1,f +18432,32316,4,1,f +18432,32643,15,3,f +18432,3460,1,1,f +18432,3623,14,3,f +18432,3626cpr2000,4,1,f +18432,3626cpr2314,78,1,f +18432,3626cpr2353,78,1,f +18432,3666,71,3,f +18432,3666,72,3,f +18432,3673,71,1,f +18432,3705,4,1,f +18432,3710,1,2,f +18432,4070,4,1,f +18432,4079,14,1,f +18432,4274,71,1,f +18432,4286,1,2,f +18432,4345b,71,1,f +18432,4346,14,1,f +18432,44728,0,1,f +18432,50859b,179,1,f +18432,50860,27,1,f +18432,50861,0,2,f +18432,50862,297,2,f +18432,57895,47,2,f +18432,59349,47,1,f +18432,60169,52,1,f +18432,60479,71,1,f +18432,60596,1,3,f +18432,60616a,47,1,f +18432,60897,0,1,f +18432,6112,72,1,f +18432,61252,71,1,f +18432,6141,46,4,f +18432,6141,27,2,f +18432,6141,52,2,f +18432,6141,179,2,f +18432,62810,28,1,f +18432,6536,0,1,f +18432,6541,1,4,f +18432,6587,28,1,f +18432,6632,0,1,f +18432,73983,1,1,f +18432,73983,71,1,f +18432,85984,71,1,f +18432,85984,2,3,f +18432,85984,1,1,f +18432,85984,72,3,f +18432,87079,1,3,f +18432,87087,72,6,f +18432,87580,71,1,f +18432,90981,15,1,f +18432,92593,72,1,f +18432,93606,72,1,f +18432,95344,72,1,f +18432,970c00,28,1,f +18432,970c00,72,1,f +18432,970c00pr1104,272,1,f +18432,973pr2503c01,0,1,f +18432,973pr3500c01,0,1,f +18432,973pr3916c01,4,1,f +18432,98138,36,2,f +18432,98138,40,1,f +18432,98283,28,3,f +18432,98560,1,3,f +18432,99207,1,4,f +18433,10201,71,4,f +18433,10247,0,2,f +18433,10907,320,1,f +18433,11092,179,2,f +18433,11477,288,2,f +18433,11833,0,2,f +18433,14210,15,1,f +18433,14704,71,2,f +18433,15068,15,10,f +18433,15068,288,4,f +18433,15254,15,1,f +18433,15391,0,2,f +18433,15392,72,2,f +18433,15712,72,2,f +18433,18587,71,1,f +18433,18588,72,1,f +18433,18649,0,1,f +18433,18651,0,1,f +18433,18976,179,4,f +18433,18977,0,4,f +18433,18986,47,1,f +18433,22385,71,8,f +18433,2412b,0,4,f +18433,2420,15,8,f +18433,2431,14,1,f +18433,2431,288,4,f +18433,2654,71,3,f +18433,2654,0,2,f +18433,26603,15,2,f +18433,2780,0,8,f +18433,2817,0,6,f +18433,3001,19,1,f +18433,3003,72,1,f +18433,3005,14,2,f +18433,3009,72,1,f +18433,3010,14,3,f +18433,3020,72,3,f +18433,3020,288,1,f +18433,3021,71,3,f +18433,3022,15,4,f +18433,3023,0,4,f +18433,3023,14,2,f +18433,3023,288,1,f +18433,3023,15,2,f +18433,30237b,71,2,f +18433,3024,36,2,f +18433,3024,72,2,f +18433,3034,15,4,f +18433,3062b,41,3,f +18433,3068b,19,3,f +18433,3068b,70,2,f +18433,3069b,19,1,f +18433,3069b,15,8,f +18433,3069bpr0137,71,1,f +18433,3070b,288,4,f +18433,32028,71,2,f +18433,32123b,71,2,f +18433,32187,71,1,f +18433,32270,0,1,f +18433,32526,72,1,f +18433,32643,15,3,f +18433,3456,71,1,f +18433,3460,72,4,f +18433,3460,14,2,f +18433,34664,288,1,f +18433,3622,15,2,f +18433,3623,322,2,f +18433,3623,15,2,f +18433,3623,72,4,f +18433,3626c,41,1,f +18433,3626cpr1977,78,1,f +18433,3626cpr2000,4,1,f +18433,3626cpr2348,70,1,f +18433,3665,15,4,f +18433,3666,71,1,f +18433,3666,15,3,f +18433,3700,0,1,f +18433,3702,15,2,f +18433,3710,0,4,f +18433,37201,320,1,f +18433,3749,19,4,f +18433,3795,19,1,f +18433,3829c01,71,1,f +18433,4032a,72,4,f +18433,4070,0,2,f +18433,4081b,0,2,f +18433,41769,0,2,f +18433,41770,0,2,f +18433,43722,72,2,f +18433,43723,72,2,f +18433,44567a,72,2,f +18433,44728,72,4,f +18433,44728,4,2,f +18433,4510,15,2,f +18433,4697b,71,1,f +18433,48336,71,5,f +18433,4865b,19,3,f +18433,52031,15,2,f +18433,54383,288,2,f +18433,54384,288,2,f +18433,59900,52,1,f +18433,60470a,0,6,f +18433,60470a,71,4,f +18433,60471,0,2,f +18433,60478,72,8,f +18433,6081,72,1,f +18433,6091,71,4,f +18433,6141,179,1,f +18433,6141,41,3,f +18433,6141,52,16,f +18433,61780,70,2,f +18433,63864,15,2,f +18433,63864,288,2,f +18433,63869,0,1,f +18433,64567,0,1,f +18433,6628,0,2,f +18433,6636,71,3,f +18433,85861,0,1,f +18433,85984,14,8,f +18433,85984,15,2,f +18433,87079,15,4,f +18433,87079,85,1,f +18433,87083,72,1,f +18433,88072,0,2,f +18433,88930,15,4,f +18433,90194,0,2,f +18433,90981,15,1,f +18433,92099,72,1,f +18433,92583,40,1,f +18433,92593,15,4,f +18433,93274,15,2,f +18433,93274,0,2,f +18433,970c00,288,1,f +18433,970c00,72,1,f +18433,970c00pr1104,272,1,f +18433,970c00pr1357,320,1,f +18433,973pr3895c01,0,1,f +18433,973pr3916c01,4,1,f +18433,973pr3964c01,320,1,f +18433,973pr3965c01,0,1,f +18433,98138,182,2,f +18433,98138,47,2,f +18433,98138,36,2,f +18433,98138,34,2,f +18433,98282,15,4,f +18433,98313,70,1,f +18433,99207,71,6,f +18433,99563,0,1,f +18438,3024,72,900,f +18438,3024,0,900,f +18438,3024,15,900,f +18438,3024,14,900,f +18438,3024,71,900,f +18438,4186,71,1,f +18438,96874,25,1,t +18439,10113,0,1,f +18439,10928,72,1,f +18439,15391,70,2,f +18439,15392,72,2,f +18439,15462,70,1,f +18439,15573,70,2,f +18439,15790,0,1,f +18439,16091,71,1,f +18439,17979,308,1,f +18439,2412b,70,1,f +18439,24144,0,1,f +18439,2431,71,1,f +18439,25214,4,1,f +18439,2654,72,3,f +18439,26599,71,1,f +18439,2877,72,2,f +18439,30031,71,1,f +18439,3004,378,1,f +18439,3004,71,2,f +18439,3005,378,1,f +18439,3010,71,1,f +18439,30151b,42,3,f +18439,30192,72,1,f +18439,3022,71,1,f +18439,3022,0,2,f +18439,3023,72,4,f +18439,3023,42,3,f +18439,3023,4,1,f +18439,3024,14,1,f +18439,3031,71,1,f +18439,3035,71,1,f +18439,30361,72,1,f +18439,30377,0,4,f +18439,3062b,72,2,f +18439,3068b,14,1,f +18439,3068b,72,1,f +18439,3068b,19,1,f +18439,3069b,19,2,f +18439,32034,308,1,f +18439,32062,4,1,f +18439,32064a,72,2,f +18439,32187,0,1,f +18439,32824,0,1,f +18439,32888,70,1,f +18439,3626b,25,3,f +18439,3626cpr2095,19,1,f +18439,3626cpr2106,78,1,f +18439,3700,71,1,f +18439,3710,72,1,f +18439,3710,14,2,f +18439,3749,19,1,f +18439,3795,308,2,f +18439,3839b,0,2,f +18439,4081b,0,2,f +18439,4332,70,2,f +18439,44728,72,1,f +18439,4588,72,2,f +18439,4595,0,1,f +18439,50946,0,2,f +18439,54200,0,1,f +18439,59443,0,1,f +18439,59900,71,2,f +18439,59900,42,2,f +18439,60471,71,2,f +18439,60481,71,1,f +18439,60849,0,2,f +18439,6126b,182,2,f +18439,6141,42,3,f +18439,6141,36,1,f +18439,6141,71,7,f +18439,6141,34,1,f +18439,6187,14,1,f +18439,63868,308,1,f +18439,63965,0,1,f +18439,6553,0,2,f +18439,85861,0,3,f +18439,85984,19,1,f +18439,87083,72,1,f +18439,87087,72,1,f +18439,87087,378,1,f +18439,92582,71,2,f +18439,92593,72,1,f +18439,92842,0,1,f +18439,970c00,0,1,f +18439,970c00pr1175,379,1,f +18439,973pr1961c01,0,1,f +18439,973pr3837c01,70,1,f +18439,98138,40,2,f +18439,99207,0,3,f +18439,99781,71,1,f +18440,10113,0,1,f +18440,10126,0,1,f +18440,10127,0,1,f +18440,10201,0,1,f +18440,11090,0,2,f +18440,11476,15,1,f +18440,11477,72,2,f +18440,11833,0,1,f +18440,14181,0,1,f +18440,15082,0,2,f +18440,15100,0,2,f +18440,15207,72,2,f +18440,15462,70,1,f +18440,15535,28,2,f +18440,15672,28,2,f +18440,15712,0,6,f +18440,15790,0,1,f +18440,16091,71,5,f +18440,18587,71,1,f +18440,18588,0,1,f +18440,18671,72,1,f +18440,19159,0,1,f +18440,22889,0,1,f +18440,22961,71,1,f +18440,2412b,179,4,f +18440,2415,71,1,f +18440,2437,40,1,f +18440,24593,71,2,f +18440,2486,72,2,f +18440,2540,0,1,f +18440,26599,71,1,f +18440,27145,14,1,f +18440,27328,-1,2,f +18440,2780,0,4,f +18440,2817,71,1,f +18440,28251,78,1,f +18440,28252,78,1,f +18440,3003,0,1,f +18440,30031,72,1,f +18440,3010,72,2,f +18440,3020,72,1,f +18440,3020,0,5,f +18440,3022,25,9,f +18440,3023,4,1,f +18440,3023,1,1,f +18440,3023,25,1,f +18440,30236,71,2,f +18440,3024,71,6,f +18440,3031,71,2,f +18440,3031,0,2,f +18440,30367c,71,3,f +18440,30374,71,3,f +18440,30377,72,1,f +18440,3040b,0,2,f +18440,30426,0,1,f +18440,3062b,72,4,f +18440,3069b,0,2,f +18440,3069bpr0155,14,1,f +18440,3070b,71,1,f +18440,30931,0,1,f +18440,31511,0,1,f +18440,32015,0,1,f +18440,32016,71,1,f +18440,32039,0,2,f +18440,32062,4,2,f +18440,32064a,0,1,f +18440,32123b,71,2,f +18440,32524,0,2,f +18440,32556,19,2,f +18440,32807,0,2,f +18440,33827,78,1,f +18440,3460,71,3,f +18440,3464,72,1,f +18440,3626cpr2248,78,1,f +18440,3626cpr9996,78,1,f +18440,3660,71,2,f +18440,3665,0,4,f +18440,3665,72,2,f +18440,3673,71,11,f +18440,3676,72,4,f +18440,3700,72,2,f +18440,3703,0,2,f +18440,3706,4,1,f +18440,3709,0,1,f +18440,3710,25,8,f +18440,3713,4,2,f +18440,3713,71,4,f +18440,3795,72,1,f +18440,3829c01,71,1,f +18440,3941,0,1,f +18440,3941,42,3,f +18440,4070,71,4,f +18440,4083,0,1,f +18440,41854,0,1,f +18440,42610,71,4,f +18440,4274,1,7,f +18440,43093,1,2,f +18440,43898,80,2,f +18440,44676,25,2,f +18440,4477,72,6,f +18440,4519,71,2,f +18440,4590,72,1,f +18440,4697b,71,1,f +18440,4740,0,3,f +18440,4740,71,3,f +18440,4740,28,4,f +18440,47720,0,1,f +18440,48729b,72,1,f +18440,50943,179,1,f +18440,50949,0,1,f +18440,50951,0,2,f +18440,55981,0,4,f +18440,55982,71,2,f +18440,56891,0,6,f +18440,58176,179,6,f +18440,60219,0,2,f +18440,60470a,0,2,f +18440,60474,0,1,f +18440,60478,0,2,f +18440,60485,71,1,f +18440,6070,25,6,f +18440,60897,4,2,f +18440,6126b,182,1,f +18440,6141,42,16,f +18440,6141,179,24,f +18440,6153b,25,1,f +18440,6190,72,1,f +18440,6249,72,1,f +18440,63869,0,2,f +18440,64644,297,1,f +18440,6536,71,2,f +18440,6541,72,4,f +18440,6587,28,1,f +18440,85861,297,9,f +18440,85984,0,2,f +18440,85984,71,1,f +18440,85984,4,1,f +18440,87079,0,1,f +18440,87994,0,2,f +18440,92593,71,6,f +18440,93273,25,2,f +18440,96874,25,1,f +18440,970c00,0,1,f +18440,970c00pr1273,28,1,f +18440,973pr3650,0,1,f +18440,973pr3843c01,78,1,f +18440,98138,47,4,f +18440,98585,42,4,f +18440,98721,0,2,f +18440,99780,72,1,f +18440,99781,0,1,f +18441,10113,0,1,f +18441,10247,71,4,f +18441,10314,70,2,f +18441,10928,72,2,f +18441,11212,15,1,f +18441,11214,72,2,f +18441,11291,72,1,f +18441,11458,0,6,f +18441,11477,0,2,f +18441,14181,0,1,f +18441,14418,71,4,f +18441,15068,0,1,f +18441,15068,71,1,f +18441,15092,72,1,f +18441,15100,0,4,f +18441,15392,72,2,f +18441,15403,0,2,f +18441,15462,70,6,f +18441,15530,272,1,f +18441,15535,72,1,f +18441,15712,0,2,f +18441,18587,71,1,f +18441,18588,72,1,f +18441,18651,0,2,f +18441,18654,72,2,f +18441,18671,14,1,f +18441,18671,72,2,f +18441,18674,71,2,f +18441,19220,0,1,f +18441,23443,0,4,f +18441,2357,191,2,f +18441,2412b,72,7,f +18441,2412b,0,2,f +18441,2412b,70,2,f +18441,2420,72,4,f +18441,24201,0,4,f +18441,24316,70,1,f +18441,2449,0,1,f +18441,2449,191,1,f +18441,2450,0,1,f +18441,2450,15,1,f +18441,2486,72,2,f +18441,2654,72,1,f +18441,2654,19,2,f +18441,26603,72,1,f +18441,27145,14,1,f +18441,2723,0,4,f +18441,2730,0,1,f +18441,2780,0,15,f +18441,28144,0,1,f +18441,2817,0,2,f +18441,28216,72,1,f +18441,28779,0,2,f +18441,298c02,71,2,f +18441,3001,19,1,f +18441,3002,4,2,f +18441,3002,0,4,f +18441,3004,191,1,f +18441,3004,19,2,f +18441,3005,72,2,f +18441,3006,71,1,f +18441,3008,0,2,f +18441,3010,72,2,f +18441,3010,191,3,f +18441,30132,72,2,f +18441,30150,70,1,f +18441,30162,72,1,f +18441,30165,72,2,f +18441,3020,70,3,f +18441,3020,0,1,f +18441,3020,71,1,f +18441,3021,15,1,f +18441,3021,191,2,f +18441,3022,19,1,f +18441,3022,72,2,f +18441,3023,70,3,f +18441,3023,15,3,f +18441,3023,46,1,f +18441,3023,0,2,f +18441,3023,484,4,f +18441,3023,72,4,f +18441,3023,71,2,f +18441,3024,191,1,f +18441,3024,0,1,f +18441,3024,70,2,f +18441,3031,0,1,f +18441,3031,72,1,f +18441,3032,72,1,f +18441,3039,70,1,f +18441,30414,0,5,f +18441,30426,0,1,f +18441,3068b,0,2,f +18441,3068b,72,1,f +18441,30886,0,2,f +18441,31509,0,1,f +18441,3176,71,3,f +18441,3176,72,2,f +18441,32000,0,2,f +18441,32000,72,2,f +18441,32002,19,6,f +18441,32039,71,2,f +18441,32064a,15,3,f +18441,32064a,0,3,f +18441,32072,0,2,f +18441,32073,71,2,f +18441,32123b,71,4,f +18441,32270,0,1,f +18441,32271,0,4,f +18441,32316,0,1,f +18441,32449,14,2,f +18441,32523,72,2,f +18441,32526,0,1,f +18441,32526,15,1,f +18441,32530,72,2,f +18441,32530,0,2,f +18441,32557,71,2,f +18441,32807,0,2,f +18441,33676,72,1,f +18441,3460,15,2,f +18441,3622,72,2,f +18441,3623,191,3,f +18441,3623,70,2,f +18441,3626cpr2172,84,1,f +18441,3626cpr2194,78,1,f +18441,3626cpr2287,78,1,f +18441,3626cpr2289,70,1,f +18441,3660,72,1,f +18441,3660,0,1,f +18441,3665,191,1,f +18441,3678b,15,1,f +18441,3700,4,3,f +18441,3700,71,1,f +18441,3700,70,1,f +18441,3700,0,4,f +18441,3701,0,2,f +18441,3702,71,2,f +18441,3706,0,2,f +18441,3710,72,1,f +18441,3710,0,4,f +18441,3710,1,2,f +18441,3713,71,11,f +18441,3795,0,1,f +18441,3829c01,71,1,f +18441,3839b,0,1,f +18441,3894,15,1,f +18441,3894,0,1,f +18441,3900,71,1,f +18441,3941,0,3,f +18441,4032a,72,1,f +18441,4070,15,1,f +18441,41539,72,1,f +18441,41677,72,4,f +18441,4175,71,1,f +18441,4185,70,2,f +18441,42022,15,1,f +18441,4274,71,8,f +18441,4274,1,8,f +18441,43093,1,6,f +18441,44294,71,1,f +18441,4460b,15,1,f +18441,4460b,0,1,f +18441,44728,0,1,f +18441,4477,15,1,f +18441,4477,70,1,f +18441,4477,72,2,f +18441,4519,71,4,f +18441,4533,72,1,f +18441,46667,72,1,f +18441,4740,72,2,f +18441,4740,0,4,f +18441,47457,71,1,f +18441,47507,72,1,f +18441,48336,0,1,f +18441,48336,15,1,f +18441,53451,179,4,f +18441,54200,72,3,f +18441,54200,36,4,f +18441,55013,72,3,f +18441,55976,0,4,f +18441,55978,0,2,f +18441,56145,71,4,f +18441,56145,4,2,f +18441,57539pat0002,47,2,f +18441,58176,182,6,f +18441,59900,72,2,f +18441,60470a,0,1,f +18441,60470a,15,1,f +18441,60478,0,2,f +18441,60479,0,2,f +18441,60483,0,2,f +18441,60581,47,2,f +18441,60583b,0,1,f +18441,60583b,15,1,f +18441,60594,0,1,f +18441,60603,52,1,f +18441,6070,46,1,f +18441,60897,0,2,f +18441,6091,15,2,f +18441,61184,71,2,f +18441,6141,179,6,f +18441,6141,46,2,f +18441,6141,52,12,f +18441,62113,72,1,f +18441,6231,70,3,f +18441,62462,0,1,f +18441,62462,15,1,f +18441,63864,15,1,f +18441,63864,0,2,f +18441,63868,0,6,f +18441,63868,15,2,f +18441,63869,0,2,f +18441,64727,71,6,f +18441,6536,0,1,f +18441,6536,15,1,f +18441,6541,72,2,f +18441,6558,1,5,f +18441,6564,0,1,f +18441,6565,0,1,f +18441,6583,72,1,f +18441,6628,0,4,f +18441,6632,4,2,f +18441,6632,71,4,f +18441,6636,15,1,f +18441,6636,72,1,f +18441,6636,0,3,f +18441,78c03,179,1,f +18441,85861,71,8,f +18441,85973,0,1,f +18441,85984,0,3,f +18441,85984,72,1,f +18441,85984,15,1,f +18441,85984,191,1,f +18441,87079,15,1,f +18441,87083,72,2,f +18441,87087,191,1,f +18441,87552,0,4,f +18441,87990,308,1,f +18441,87994,71,1,f +18441,87994,70,1,f +18441,88646,0,2,f +18441,88646,15,1,f +18441,88704,0,1,f +18441,92280,0,1,f +18441,92280,4,2,f +18441,92410,191,3,f +18441,92593,71,1,f +18441,92593,72,1,f +18441,93274,72,1,f +18441,93606,72,1,f +18441,95199,72,1,f +18441,96874,25,1,f +18441,970c00,0,3,f +18441,973pr3650,0,1,f +18441,973pr3852c01,72,1,f +18441,973pr3894c01,272,2,f +18441,98138,47,3,f +18441,98138,0,4,f +18441,98721,0,2,f +18441,99206,71,2,f +18441,99563,0,1,f +18441,99780,0,2,f +18441,99781,15,1,f +18441,99781,0,1,f +18442,10113,0,1,f +18442,10247,72,12,f +18442,11090,72,2,f +18442,11153,0,10,f +18442,11211,71,2,f +18442,11212,71,2,f +18442,11477,72,4,f +18442,11477,0,18,f +18442,13349,72,2,f +18442,13731,0,4,f +18442,13971,4,2,f +18442,14769,14,3,f +18442,14769pr1079,15,1,f +18442,15068,0,5,f +18442,15303,57,3,f +18442,15400,72,2,f +18442,15456,0,1,f +18442,15535,72,4,f +18442,15573,19,8,f +18442,15573,4,4,f +18442,15573,0,1,f +18442,15712,72,2,f +18442,16968,71,2,f +18442,18575,0,2,f +18442,18587,71,1,f +18442,18588,0,1,f +18442,18653,0,2,f +18442,18671,72,2,f +18442,18938,0,2,f +18442,18939,71,2,f +18442,21849pr0003,46,1,f +18442,22385,0,14,f +18442,22885,71,4,f +18442,22889,0,1,f +18442,2412b,70,2,f +18442,2412b,71,10,f +18442,2412b,0,4,f +18442,2412b,4,2,f +18442,2412b,72,6,f +18442,2419,72,9,f +18442,2420,71,2,f +18442,24201,71,6,f +18442,24299,0,1,f +18442,24307,0,1,f +18442,2431,72,2,f +18442,2431,0,6,f +18442,2449,0,2,f +18442,2460,72,2,f +18442,2653,0,4,f +18442,2654,46,4,f +18442,2654,15,1,f +18442,2654,182,3,f +18442,27145,14,1,f +18442,2780,0,17,f +18442,2877,72,12,f +18442,28798,4,1,f +18442,28830,0,1,f +18442,29384,70,1,f +18442,29453,14,1,f +18442,298c02,71,2,f +18442,298c02,15,1,f +18442,3001,1,4,f +18442,3001,0,4,f +18442,3001,15,2,f +18442,3002,0,3,f +18442,3003,1,2,f +18442,30031,72,1,f +18442,3004,71,2,f +18442,3004,4,2,f +18442,3004,0,4,f +18442,3004,1,6,f +18442,3005,182,4,f +18442,3005,0,6,f +18442,3005,71,6,f +18442,3007,71,1,f +18442,3008,72,2,f +18442,3009,0,3,f +18442,3010,72,1,f +18442,3020,0,7,f +18442,3020,72,7,f +18442,3020,1,1,f +18442,3021,72,8,f +18442,3021,0,3,f +18442,3021,71,2,f +18442,3021,70,3,f +18442,3022,1,3,f +18442,3022,15,2,f +18442,3022,71,3,f +18442,3022,70,1,f +18442,3022,0,4,f +18442,3023,71,4,f +18442,3023,0,22,f +18442,3023,36,1,f +18442,3023,70,6,f +18442,30236,0,1,f +18442,3024,72,4,f +18442,3024,4,6,f +18442,3024,0,22,f +18442,3030,0,2,f +18442,3031,0,2,f +18442,3031,72,1,f +18442,3032,0,4,f +18442,3034,0,1,f +18442,3035,72,2,f +18442,3035,71,1,f +18442,3035,0,2,f +18442,30355,0,1,f +18442,30356,0,1,f +18442,30374,71,2,f +18442,30377,72,4,f +18442,3038,0,4,f +18442,3039,70,1,f +18442,3039,0,2,f +18442,3040b,72,2,f +18442,30414,0,2,f +18442,30414,71,1,f +18442,30426,0,1,f +18442,3045,0,2,f +18442,3046a,0,2,f +18442,30504,0,2,f +18442,3068b,72,2,f +18442,3069b,72,5,f +18442,3069b,0,4,f +18442,3069b,4,5,f +18442,3070b,72,8,f +18442,3070b,0,4,f +18442,32000,72,2,f +18442,32000,15,4,f +18442,32000,14,4,f +18442,32028,4,4,f +18442,32028,72,4,f +18442,32054,4,8,f +18442,32062,4,2,f +18442,32064a,4,2,f +18442,32123b,71,2,f +18442,32138,71,1,f +18442,32187,71,2,f +18442,32474,71,2,f +18442,32531,71,3,f +18442,3298,72,1,f +18442,33514,4,1,f +18442,33845,0,1,f +18442,3460,1,2,f +18442,3460,0,4,f +18442,3460,4,4,f +18442,3622,72,2,f +18442,3622,0,2,f +18442,3623,0,20,f +18442,3623,14,6,f +18442,3626cpr2102,78,1,f +18442,3626cpr2157,15,1,f +18442,3626cpr9998,78,1,f +18442,3665,15,2,f +18442,3665,0,8,f +18442,3665,14,2,f +18442,3666,0,16,f +18442,3666,71,7,f +18442,3675,0,2,f +18442,3700,4,3,f +18442,3700,0,2,f +18442,3703,71,1,f +18442,3705,4,1,f +18442,3707,4,1,f +18442,3709,15,1,f +18442,3710,14,2,f +18442,3710,4,4,f +18442,3710,1,2,f +18442,3710,0,14,f +18442,3710,72,3,f +18442,3738,71,1,f +18442,3794b,15,2,f +18442,3795,0,4,f +18442,3795,4,1,f +18442,3795,15,1,f +18442,3832,0,1,f +18442,3958,0,2,f +18442,4032a,0,2,f +18442,4032a,14,1,f +18442,4070,71,4,f +18442,4070,72,4,f +18442,4081b,4,2,f +18442,4162,72,2,f +18442,41677,72,2,f +18442,41747,0,1,f +18442,41748,0,1,f +18442,41769,0,1,f +18442,41770,0,1,f +18442,4185,72,4,f +18442,41854,0,1,f +18442,42023,72,2,f +18442,42060,0,1,f +18442,42061,0,1,f +18442,4274,71,7,f +18442,4274,1,6,f +18442,4286,4,1,f +18442,4286,0,1,f +18442,4286,72,2,f +18442,43093,1,6,f +18442,43722,0,1,f +18442,43722,72,1,f +18442,43723,72,1,f +18442,43723,0,1,f +18442,43857,71,1,f +18442,44224,72,2,f +18442,44225,71,2,f +18442,44294,71,1,f +18442,44301a,71,6,f +18442,44302a,72,6,f +18442,44728,71,4,f +18442,44728,72,6,f +18442,4477,0,2,f +18442,4477,72,2,f +18442,4510,4,2,f +18442,4600,0,2,f +18442,4624,71,4,f +18442,4740,52,2,f +18442,4742,72,2,f +18442,47458,0,1,f +18442,47720,0,1,f +18442,48336,71,1,f +18442,4865b,0,8,f +18442,50304,72,1,f +18442,50304,0,1,f +18442,50305,0,1,f +18442,50305,72,1,f +18442,50950,0,2,f +18442,50955,0,1,f +18442,50956,0,1,f +18442,51739,71,4,f +18442,54200,46,2,f +18442,54200,4,1,f +18442,54200,0,1,f +18442,54383,0,2,f +18442,54384,0,2,f +18442,55013,72,2,f +18442,59443,0,4,f +18442,59443,71,2,f +18442,59443,4,3,f +18442,59895,0,4,f +18442,59900,80,4,f +18442,60219,0,5,f +18442,60477,0,8,f +18442,60478,72,2,f +18442,60478,71,2,f +18442,60479,0,2,f +18442,60594,72,1,f +18442,6106,0,8,f +18442,6111,0,2,f +18442,61409,72,12,f +18442,6141,72,10,f +18442,6141,46,4,f +18442,6141,182,7,f +18442,6141,4,12,f +18442,6179,0,6,f +18442,6231,0,8,f +18442,62462,71,2,f +18442,63864,72,8,f +18442,63868,72,2,f +18442,63868,71,2,f +18442,63965,15,1,f +18442,63965,71,2,f +18442,6541,14,2,f +18442,6541,4,6,f +18442,6541,15,2,f +18442,6541,1,4,f +18442,6558,1,9,f +18442,6589,19,2,f +18442,6636,72,4,f +18442,85861,71,4,f +18442,85940,0,2,f +18442,85984,70,1,f +18442,85984,72,9,f +18442,85984,0,5,f +18442,87079,0,4,f +18442,87079,70,1,f +18442,87083,72,1,f +18442,87407,71,2,f +18442,88646,0,2,f +18442,88930,0,1,f +18442,90194,72,2,f +18442,92280,71,4,f +18442,92584,0,2,f +18442,92593,71,1,f +18442,92692,15,1,f +18442,92947,0,2,f +18442,92950,0,2,f +18442,93273,0,3,f +18442,93274,72,2,f +18442,96874,25,1,f +18442,970c00,0,1,f +18442,970c00pr1290,0,1,f +18442,970x037pr1177,78,1,f +18442,973pr3642c01,4,1,f +18442,973pr3650,0,1,f +18442,973pr3866c01,0,1,f +18442,98100,71,4,f +18442,98138,46,10,f +18442,98138,47,4,f +18442,98138,52,2,f +18442,98138,34,3,f +18442,98138,36,8,f +18442,98285,71,1,f +18442,98286,71,1,f +18442,98375,179,1,f +18442,98721,0,1,f +18442,99206,0,4,f +18442,99207,71,18,f +18442,99563,0,13,f +18442,99781,71,5,f +18458,3626cpr2213,14,1,f +18458,88646,0,1,f +18458,90397pr0004,73,1,f +18458,92746,19,1,f +18458,970c00,0,1,f +18458,973pr3822c01,0,1,f +18459,15439,0,1,f +18459,32765pr0002,0,1,f +18459,3626cpr2203,14,1,f +18459,88646,0,1,f +18459,970c00pr1258,14,1,f +18459,973pr3793c01,14,1,f +18460,29633,84,1,f +18460,33026pr0001,15,1,f +18460,3626cpr2215,14,1,f +18460,88646,0,1,f +18460,970c00pr1268,323,1,f +18460,973pr3823c01,323,1,f +18462,21778,308,1,f +18462,3626cpr2212,14,1,f +18462,88646,0,1,f +18462,92290,297,1,f +18462,970c00pr1267,14,1,f +18462,973pr3819c01,14,1,f +18463,15501,4,1,f +18463,16709pat03,320,1,f +18463,32887pr0001,148,1,f +18463,3626cpr2201,14,1,f +18463,53454,148,1,f +18463,87994,0,1,f +18463,88646,0,1,f +18463,93563,4,1,f +18463,973pr3803c01,14,1,f +18464,32892pr0001,19,1,f +18464,3626cpr2209,14,1,f +18464,4342,84,1,f +18464,88646,0,1,f +18464,90386,0,1,f +18464,970c00,0,1,f +18464,973pr3808c01,15,1,f +18466,20482,15,1,f +18466,29634,484,1,f +18466,3062bpr0014,41,1,f +18466,3626cpr2214,14,1,f +18466,88646,0,1,f +18466,970c00pr1276,15,1,f +18466,973pr9993,0,1,f +18467,11203,72,3,f +18467,11211,71,1,f +18467,11215,0,2,f +18467,11289,40,1,f +18467,11477,72,2,f +18467,11477,71,8,f +18467,14769,0,1,f +18467,15068,71,3,f +18467,15068,484,10,f +18467,15391,0,1,f +18467,15392,72,3,f +18467,15403,0,2,f +18467,15535,72,3,f +18467,15535pr0001,72,4,f +18467,15573,484,4,f +18467,15672,71,2,f +18467,15712,0,2,f +18467,15712,71,4,f +18467,20952pr0001,15,1,f +18467,20953pr0001,15,1,f +18467,21777,308,1,f +18467,21778,0,1,f +18467,22961,308,2,f +18467,2340,484,4,f +18467,23443,71,2,f +18467,2412b,179,10,f +18467,2420,84,4,f +18467,24201,0,2,f +18467,2431,484,4,f +18467,2431,71,2,f +18467,2432,70,2,f +18467,24593,71,8,f +18467,2476a,71,4,f +18467,2540,0,2,f +18467,26601,71,2,f +18467,2780,0,3,f +18467,2877,0,4,f +18467,30000,71,1,f +18467,3003,72,1,f +18467,3003,28,4,f +18467,3009,0,3,f +18467,3010,71,1,f +18467,30137,70,2,f +18467,3020,71,2,f +18467,3021,72,4,f +18467,3022,484,2,f +18467,3022,0,3,f +18467,3022,71,7,f +18467,3023,484,4,f +18467,3023,72,7,f +18467,3023,0,4,f +18467,30236,72,1,f +18467,3032,71,1,f +18467,30374,0,1,f +18467,3039,71,3,f +18467,3062b,72,3,f +18467,3069b,0,1,f +18467,3069b,47,1,f +18467,3070b,47,2,f +18467,3070b,71,4,f +18467,3070b,484,4,f +18467,3070bpr0152,15,1,f +18467,32039,14,1,f +18467,32054,0,2,f +18467,32056,71,4,f +18467,32062,4,4,f +18467,32123b,71,2,f +18467,32474,71,1,f +18467,3622,72,2,f +18467,3623,71,4,f +18467,3626cpr1149,78,1,f +18467,3626cpr1778,78,1,f +18467,3626cpr1807,70,1,f +18467,3626cpr1945,28,1,f +18467,3665,70,2,f +18467,3665,71,2,f +18467,3700,71,2,f +18467,3701,71,4,f +18467,3705,0,4,f +18467,3705,4,1,f +18467,3707,4,4,f +18467,3709,71,4,f +18467,3709,0,4,f +18467,3710,72,9,f +18467,3713,4,3,f +18467,3738,71,2,f +18467,3749,19,2,f +18467,3795,0,3,f +18467,3832,484,4,f +18467,4032a,19,12,f +18467,4032a,0,1,f +18467,4032a,71,1,f +18467,41677,0,4,f +18467,41769,71,2,f +18467,41770,71,2,f +18467,42446,0,1,f +18467,4274,71,2,f +18467,44294,71,1,f +18467,44568,71,2,f +18467,44570,72,2,f +18467,44676,72,2,f +18467,44728,72,2,f +18467,4740,182,4,f +18467,47457,72,1,f +18467,48336,71,4,f +18467,4871,71,3,f +18467,54200,71,2,f +18467,56145,179,8,f +18467,58247,0,2,f +18467,59900,179,4,f +18467,60470a,71,1,f +18467,60471,71,3,f +18467,60474,84,8,f +18467,60474,71,4,f +18467,60475b,71,1,f +18467,60478,0,4,f +18467,61184,71,2,f +18467,6141,46,6,f +18467,6141,179,22,f +18467,6141,0,8,f +18467,6222,71,8,f +18467,6259,72,8,f +18467,63864,71,4,f +18467,63868,70,6,f +18467,64567,0,2,f +18467,6587,28,5,f +18467,72454,0,1,f +18467,85984,72,4,f +18467,87994,0,1,f +18467,87994,71,2,f +18467,90258,72,4,f +18467,92280,71,10,f +18467,92582,0,3,f +18467,92582,71,1,f +18467,95199,0,1,f +18467,96874,25,1,f +18467,970c00,0,1,f +18467,970c00,308,1,f +18467,970c00pr0932,28,1,f +18467,970c00pr0954,15,1,f +18467,973pr3145c01,71,1,f +18467,973pr3174c01,84,1,f +18467,973pr3262c01,15,1,f +18467,973pr3521c01,326,1,f +18467,98138,46,2,f +18467,98138pr0010,179,1,f +18467,99021,72,1,f +18467,99207,0,2,f +18467,99207,71,2,f +18467,99781,0,1,f +18468,10197,72,6,f +18468,10247,4,1,f +18468,11203pr0001,0,3,f +18468,11458,72,6,f +18468,11477,72,2,f +18468,11478,0,2,f +18468,13548,28,8,f +18468,14395,72,2,f +18468,15068,71,2,f +18468,15068,19,8,f +18468,15307pr0001,308,1,f +18468,15391,0,3,f +18468,15392,72,4,f +18468,15456,71,1,f +18468,15462,70,2,f +18468,15535,19,2,f +18468,15573,19,4,f +18468,15672,28,2,f +18468,20105,0,1,f +18468,23949,19,7,f +18468,2412b,36,6,f +18468,2412b,72,22,f +18468,2420,72,6,f +18468,2431,320,2,f +18468,2432,72,2,f +18468,2445,0,3,f +18468,2456,19,2,f +18468,2653,71,8,f +18468,2654,0,1,f +18468,2654,72,4,f +18468,2654,70,1,f +18468,26599,71,1,f +18468,2780,0,5,f +18468,28809,71,16,f +18468,3004,71,2,f +18468,3004,19,3,f +18468,3008,19,2,f +18468,3009,28,3,f +18468,30099,72,2,f +18468,3010,0,2,f +18468,3020,28,10,f +18468,3021,19,2,f +18468,3022,19,8,f +18468,3022,72,8,f +18468,3022,320,2,f +18468,3022,0,2,f +18468,3023,70,6,f +18468,3023,71,15,f +18468,3023,484,12,f +18468,3031,70,4,f +18468,3031,72,1,f +18468,3031,19,1,f +18468,3032,71,2,f +18468,3034,28,5,f +18468,3034,71,1,f +18468,3034,72,3,f +18468,3035,72,1,f +18468,3035,19,1,f +18468,30363,72,8,f +18468,3040b,28,4,f +18468,30553,0,3,f +18468,30586,71,2,f +18468,3068b,72,2,f +18468,3069b,320,4,f +18468,3069b,191,1,f +18468,3070b,320,2,f +18468,32000,0,3,f +18468,32000,72,4,f +18468,32002,19,4,f +18468,32013,72,6,f +18468,32017,71,2,f +18468,32062,0,12,f +18468,32064a,71,6,f +18468,32064a,4,6,f +18468,32123b,14,8,f +18468,32140,71,1,f +18468,32192,72,6,f +18468,32270,0,1,f +18468,32271,72,6,f +18468,32278,72,2,f +18468,32449,72,12,f +18468,32556,19,8,f +18468,3460,72,4,f +18468,3460,320,5,f +18468,3622,72,1,f +18468,3623,72,2,f +18468,3626cpr2169,4,2,f +18468,3626cpr2251,78,1,f +18468,3626cpr2290,78,1,f +18468,3660,19,6,f +18468,3666,28,11,f +18468,3666,72,1,f +18468,3673,71,8,f +18468,3700,0,2,f +18468,3701,0,2,f +18468,3706,0,6,f +18468,3710,71,3,f +18468,3710,4,1,f +18468,3710,0,2,f +18468,3710,19,4,f +18468,3713,71,6,f +18468,3795,72,1,f +18468,3795,70,20,f +18468,3832,0,2,f +18468,3832,19,4,f +18468,3832,70,2,f +18468,3895,72,4,f +18468,3899,47,2,f +18468,4032a,0,4,f +18468,4032a,4,3,f +18468,40379,0,5,f +18468,40379,484,5,f +18468,4070,72,8,f +18468,4151b,72,2,f +18468,41539,72,4,f +18468,4162,19,4,f +18468,4162,320,4,f +18468,4162,72,2,f +18468,4162,0,2,f +18468,4274,1,12,f +18468,43093,1,9,f +18468,43722,191,4,f +18468,43723,191,4,f +18468,44294,71,1,f +18468,44728,72,20,f +18468,4510,0,2,f +18468,4599b,0,3,f +18468,47457,72,1,f +18468,48336,0,6,f +18468,48729b,71,2,f +18468,53451,15,16,f +18468,54200,19,2,f +18468,55013,72,1,f +18468,59349,182,2,f +18468,59426,72,1,f +18468,59443,4,1,f +18468,60475b,0,4,f +18468,60478,72,4,f +18468,60849,14,4,f +18468,6141,72,29,f +18468,6141,0,11,f +18468,6141,36,11,f +18468,6141,182,16,f +18468,6232,71,2,f +18468,62810,71,1,f +18468,62810,308,1,f +18468,63868,14,2,f +18468,64225,0,2,f +18468,64225,320,2,f +18468,6558,1,2,f +18468,6636,28,8,f +18468,6636,72,4,f +18468,75937,0,4,f +18468,85861,14,4,f +18468,85984,28,16,f +18468,87079,72,5,f +18468,87083,72,3,f +18468,87087,72,4,f +18468,87087,19,12,f +18468,87544,0,4,f +18468,87552,70,8,f +18468,87580,71,1,f +18468,87620,28,4,f +18468,88704,70,2,f +18468,88704,0,2,f +18468,92099,72,1,f +18468,92107,28,1,f +18468,92582,0,3,f +18468,92738,0,1,f +18468,93160,15,1,f +18468,93273,70,2,f +18468,95343,4,1,f +18468,95344,0,1,f +18468,96874,25,1,f +18468,970c00pr0632,308,1,f +18468,970c00pr0960,0,1,f +18468,970c00pr1273,320,2,f +18468,970c00pr1278,148,1,f +18468,973c63,308,1,f +18468,973pr3175c01,308,1,f +18468,973pr3840c01,320,2,f +18468,973pr3841c01,148,1,f +18468,98138,25,6,f +18468,98313,320,13,f +18468,98313,0,13,f +18468,99207,0,12,f +18468,99780,4,4,f +18468,99781,0,4,f +18479,10201,0,1,f +18479,10201,15,18,f +18479,10247,71,12,f +18479,10928,72,1,f +18479,11090,0,1,f +18479,11090,15,6,f +18479,11090,72,1,f +18479,11090,297,8,f +18479,11153,72,2,f +18479,11153,25,2,f +18479,11211,4,6,f +18479,11211,71,8,f +18479,11213,322,1,f +18479,11303,28,1,f +18479,11458,0,2,f +18479,11476,15,4,f +18479,11476,71,4,f +18479,11477,72,3,f +18479,11477,25,5,f +18479,11610,19,1,f +18479,13564,72,1,f +18479,14181,73,8,f +18479,14417,72,6,f +18479,14418,71,2,f +18479,14704,71,6,f +18479,14718,19,6,f +18479,14769,15,20,f +18479,15068,72,3,f +18479,15068,27,1,f +18479,15068,15,8,f +18479,15207,70,1,f +18479,15456,0,6,f +18479,15461,0,4,f +18479,15462,70,8,f +18479,15470,29,1,f +18479,15535,4,1,f +18479,15571,15,2,f +18479,15573,71,12,f +18479,15573,4,1,f +18479,15573,72,3,f +18479,15573,272,24,f +18479,15712,15,24,f +18479,18575,19,1,f +18479,18649,0,11,f +18479,18651,0,6,f +18479,18654,70,1,f +18479,18671,19,4,f +18479,19121,297,6,f +18479,21268,72,1,f +18479,23443,71,1,f +18479,23948,71,7,f +18479,24121,14,4,f +18479,2412b,71,3,f +18479,2420,26,1,f +18479,2420,15,2,f +18479,2420,2,3,f +18479,2420,27,2,f +18479,24201,0,4,f +18479,2423,2,1,f +18479,2431,72,2,f +18479,2431,15,11,f +18479,2432,19,1,f +18479,2445,15,5,f +18479,2449,19,72,f +18479,2454a,19,2,f +18479,2456,19,5,f +18479,2458,15,1,f +18479,2458,19,8,f +18479,2460,15,2,f +18479,25214,15,2,f +18479,25269,19,8,f +18479,25269,25,8,f +18479,25386,19,1,f +18479,2540,25,1,f +18479,2540,73,16,f +18479,2540,72,1,f +18479,25516,297,6,f +18479,26047,15,6,f +18479,26047,0,6,f +18479,26287,71,6,f +18479,2654,15,1,f +18479,26597,15,4,f +18479,26604,19,2,f +18479,26604,73,24,f +18479,2780,0,20,f +18479,2854,19,8,f +18479,28809,71,2,f +18479,28959,5,1,f +18479,3001,15,2,f +18479,3001,19,18,f +18479,3001,70,9,f +18479,3001,71,8,f +18479,3001,72,1,f +18479,3002,1,3,f +18479,3003,19,6,f +18479,3003,15,6,f +18479,3004,15,5,f +18479,3004,19,20,f +18479,3004,72,2,f +18479,3004,2,1,f +18479,3007,0,4,f +18479,3008,19,12,f +18479,30089,0,1,f +18479,3009,19,2,f +18479,3009,15,1,f +18479,3010,15,7,f +18479,3010,19,6,f +18479,30136,71,69,f +18479,30157,70,4,f +18479,3020,72,4,f +18479,3020,19,27,f +18479,3020,272,1,f +18479,3020,25,1,f +18479,3021,70,28,f +18479,3021,72,1,f +18479,3021,0,1,f +18479,3021,2,1,f +18479,3022,25,1,f +18479,3022,72,13,f +18479,3022,0,4,f +18479,3022,15,39,f +18479,3022,4,40,f +18479,30222,42,1,f +18479,3023,0,1,f +18479,3023,72,18,f +18479,3023,25,5,f +18479,3023,15,13,f +18479,3023,2,8,f +18479,3023,1,24,f +18479,3023,19,38,f +18479,3023,71,18,f +18479,30237b,15,12,f +18479,3024,2,2,f +18479,3024,15,14,f +18479,3024,0,4,f +18479,3024,72,7,f +18479,3031,15,1,f +18479,3031,72,2,f +18479,3034,71,4,f +18479,3034,70,12,f +18479,3034,15,4,f +18479,3035,2,1,f +18479,3036,2,12,f +18479,30363,71,1,f +18479,30374,71,5,f +18479,30374,15,8,f +18479,3039,72,3,f +18479,3039,71,1,f +18479,3039pr62,71,1,f +18479,3040b,25,2,f +18479,3040b,272,2,f +18479,3040b,72,2,f +18479,30414,0,1,f +18479,3045,272,2,f +18479,30552,71,6,f +18479,30553,15,7,f +18479,3062b,4,2,f +18479,3062b,14,24,f +18479,3062b,15,10,f +18479,3068b,19,1,f +18479,3068b,72,6,f +18479,3068b,71,13,f +18479,3068b,4,32,f +18479,3068bpr0342,272,12,f +18479,3069b,5,1,f +18479,3069b,0,2,f +18479,3069b,19,1,f +18479,3069b,15,40,f +18479,3069b,25,3,f +18479,3069bpr0198,15,2,f +18479,3070b,19,2,f +18479,3070b,5,1,f +18479,3070b,14,8,f +18479,31511,71,1,f +18479,3176,14,2,f +18479,32001,71,1,f +18479,32028,15,4,f +18479,32034,71,2,f +18479,32054,4,1,f +18479,32062,4,13,f +18479,32064a,72,12,f +18479,32064a,15,1,f +18479,32123b,14,20,f +18479,32125,71,4,f +18479,32140,27,2,f +18479,32184,71,4,f +18479,32198,19,1,f +18479,32235,15,6,f +18479,32270,0,1,f +18479,32498,0,1,f +18479,32523,14,5,f +18479,32525,15,2,f +18479,32532,0,6,f +18479,32939,14,6,f +18479,3298,71,12,f +18479,33078,4,1,f +18479,33243,72,2,f +18479,33291,10,12,f +18479,33291,5,12,f +18479,3460,1,6,f +18479,3460,72,2,f +18479,3622,72,2,f +18479,3623,25,1,f +18479,3626cpr1635,14,1,f +18479,3626cpr1675,14,1,f +18479,3626cpr1769,14,1,f +18479,3626cpr1776,14,1,f +18479,3626cpr1786,14,1,f +18479,3626cpr1964,14,1,f +18479,3626cpr1967,14,1,f +18479,3648b,72,2,f +18479,3660,27,1,f +18479,3660,15,1,f +18479,3665,15,2,f +18479,3665,72,1,f +18479,3666,71,4,f +18479,3666,72,2,f +18479,3673,71,1,f +18479,3700,19,20,f +18479,3700,71,8,f +18479,3701,71,3,f +18479,3701,19,6,f +18479,3702,71,3,f +18479,3703,71,4,f +18479,3705,0,8,f +18479,3706,0,1,f +18479,3707,0,1,f +18479,3709,71,1,f +18479,3710,72,5,f +18479,3710,14,2,f +18479,3710,73,8,f +18479,3710,19,6,f +18479,3710,1,14,f +18479,3710,2,6,f +18479,3710,15,24,f +18479,3713,4,2,f +18479,3747a,15,1,f +18479,3749,19,7,f +18479,3794b,15,2,f +18479,3795,19,42,f +18479,3795,15,12,f +18479,3832,72,5,f +18479,3832,71,2,f +18479,3839b,72,1,f +18479,3895,0,2,f +18479,3937,4,16,f +18479,3957a,15,2,f +18479,3957a,71,2,f +18479,3960,15,1,f +18479,40379,15,4,f +18479,40379,25,1,f +18479,40379,73,48,f +18479,40490,0,3,f +18479,4070,25,4,f +18479,4070,0,1,f +18479,4070,15,2,f +18479,4081b,72,2,f +18479,4081b,27,2,f +18479,4085c,72,2,f +18479,4162,72,4,f +18479,41677,15,3,f +18479,41770,5,2,f +18479,41879a,30,1,f +18479,41879a,2,1,f +18479,41879a,321,1,f +18479,42610,71,6,f +18479,4274,1,24,f +18479,4282,0,2,f +18479,4286,272,24,f +18479,4287,72,3,f +18479,4287,15,2,f +18479,43093,1,10,f +18479,43722,27,2,f +18479,43723,27,2,f +18479,44294,71,1,f +18479,44302a,0,1,f +18479,4445,71,2,f +18479,44567a,14,6,f +18479,44728,71,4,f +18479,44728,15,1,f +18479,4495b,297,2,f +18479,4519,71,4,f +18479,4733,15,1,f +18479,4735,71,9,f +18479,47457,72,8,f +18479,47905,15,1,f +18479,48336,0,12,f +18479,48336,2,1,f +18479,4865b,47,1,f +18479,49668,15,1,f +18479,50304,19,4,f +18479,50305,19,4,f +18479,50950,15,2,f +18479,51739,15,1,f +18479,54200,29,1,f +18479,54200,25,3,f +18479,54200,72,2,f +18479,55982,71,4,f +18479,59363,84,1,f +18479,59426,72,2,f +18479,59443,71,7,f +18479,59443,14,7,f +18479,59900,297,10,f +18479,59900,25,1,f +18479,59900,15,10,f +18479,6005,72,1,f +18479,6005,2,2,f +18479,60208,71,1,f +18479,60470a,71,12,f +18479,60471,15,6,f +18479,60475b,72,4,f +18479,60477,272,24,f +18479,60478,15,16,f +18479,60897,10,2,f +18479,60897,0,2,f +18479,60897,71,12,f +18479,6106,71,4,f +18479,6106,19,4,f +18479,61184,71,2,f +18479,61252,71,12,f +18479,6134,1,16,f +18479,6141,46,96,f +18479,6141,15,12,f +18479,6141,297,1,f +18479,6141,71,24,f +18479,61485,71,1,f +18479,61678,15,2,f +18479,6179,73,11,f +18479,6179,71,2,f +18479,6179,15,4,f +18479,62462,4,6,f +18479,62462,15,1,f +18479,6249,72,4,f +18479,63864,2,5,f +18479,63868,15,12,f +18479,64225,27,1,f +18479,64225,15,4,f +18479,64567,71,2,f +18479,64647,297,24,f +18479,64807,15,1,f +18479,6541,72,4,f +18479,6541,2,2,f +18479,6558,1,2,f +18479,6564,71,8,f +18479,6565,71,8,f +18479,6587,28,6,f +18479,6628,0,2,f +18479,6632,1,7,f +18479,6632,0,6,f +18479,6636,272,24,f +18479,6636,71,4,f +18479,6636,72,4,f +18479,76244,15,1,f +18479,85861,0,2,f +18479,85984,15,25,f +18479,85984,5,2,f +18479,85984,72,2,f +18479,85984pr0143,72,1,f +18479,87079,15,16,f +18479,87079,28,12,f +18479,87081,0,2,f +18479,87082,0,6,f +18479,87083,72,5,f +18479,87087,72,5,f +18479,87544,71,2,f +18479,87580,71,5,f +18479,87609,1,2,f +18479,87620,15,2,f +18479,87747,0,1,f +18479,87990,84,1,f +18479,87994,71,12,f +18479,87994,297,2,f +18479,88072,19,18,f +18479,89201,0,4,f +18479,90396,0,1,f +18479,92280,0,2,f +18479,92409,0,6,f +18479,92582,0,1,f +18479,92582,15,1,f +18479,92584,2,4,f +18479,92950,72,1,f +18479,93095,19,2,f +18479,93273,15,3,f +18479,94925,71,2,f +18479,96874,25,1,f +18479,970c00,308,1,f +18479,970c00,28,1,f +18479,970c00,272,1,f +18479,970c00,326,1,f +18479,973pr1801c01,25,1,f +18479,973pr1857c01,1,1,f +18479,973pr3045c01,321,1,f +18479,973pr3424c01,30,1,f +18479,973pr3425c01,4,1,f +18479,973pr3433c01,29,1,f +18479,973pr3434c01,212,1,f +18479,98138,297,24,f +18479,98138,36,1,f +18479,98138,34,1,f +18479,98138pr0027,15,10,f +18479,98282,73,25,f +18479,99009,71,1,f +18479,99010,0,1,f +18479,99206,15,14,f +18479,99206,71,1,f +18479,99207,0,2,f +18479,99207,71,26,f +18479,99773,0,1,f +18479,99780,15,1,f +18479,99780,71,54,f +18479,99780,0,1,f +18479,99784,71,4,f +18479,99930,308,1,f +18480,10201,71,4,f +18480,10247,4,2,f +18480,11090,15,2,f +18480,11211,71,2,f +18480,11211,4,3,f +18480,11214,72,3,f +18480,11272,148,1,f +18480,11305,179,1,f +18480,11833,272,2,f +18480,14417,72,4,f +18480,14418,71,2,f +18480,14704,71,2,f +18480,14769,15,2,f +18480,15064,15,2,f +18480,15068,72,3,f +18480,15070,15,4,f +18480,15100,0,2,f +18480,15208,15,2,f +18480,15392,72,2,f +18480,15403,0,2,f +18480,15571,72,2,f +18480,15573,25,4,f +18480,15672,15,2,f +18480,15790,0,1,f +18480,18646,71,1,f +18480,18671,72,2,f +18480,21560,179,2,f +18480,23186,308,1,f +18480,23187,308,1,f +18480,2415,71,1,f +18480,2420,71,4,f +18480,24201,0,2,f +18480,24309,15,1,f +18480,24314,47,2,f +18480,2432,70,1,f +18480,24593pr0002,0,1,f +18480,2654,72,1,f +18480,2723,71,1,f +18480,27261,15,1,f +18480,2780,0,1,f +18480,2817,71,2,f +18480,2926,0,1,f +18480,3001,71,1,f +18480,3002,4,1,f +18480,3005,15,2,f +18480,3005,71,4,f +18480,30132,72,2,f +18480,30170,72,1,f +18480,30171,70,1,f +18480,3020,0,3,f +18480,3020,28,2,f +18480,3020,71,2,f +18480,3021,19,1,f +18480,3021,72,4,f +18480,3022,72,6,f +18480,3022,322,1,f +18480,3023,28,13,f +18480,3023,182,6,f +18480,3023,272,4,f +18480,30236,0,1,f +18480,3031,72,1,f +18480,3034,19,2,f +18480,3035,28,2,f +18480,30381,272,1,f +18480,3049d,15,2,f +18480,30565,28,4,f +18480,3068b,72,1,f +18480,3069b,0,4,f +18480,3069b,15,2,f +18480,32054,71,1,f +18480,32064a,14,1,f +18480,32064a,72,2,f +18480,33243,15,1,f +18480,3464,72,1,f +18480,3622,0,2,f +18480,3623,15,1,f +18480,3623,72,4,f +18480,3626cpr1874,78,1,f +18480,3626cpr1905,78,1,f +18480,3666,0,2,f +18480,3700,1,2,f +18480,3701,0,4,f +18480,3705,4,1,f +18480,3710,0,5,f +18480,3747a,0,1,f +18480,3795,0,2,f +18480,3941,71,1,f +18480,3941,14,2,f +18480,3961,71,1,f +18480,4032a,0,1,f +18480,4032a,19,2,f +18480,4070,71,2,f +18480,41531,71,1,f +18480,41769,72,1,f +18480,41770,72,1,f +18480,43722,72,1,f +18480,43723,72,1,f +18480,4865b,47,1,f +18480,4871,71,2,f +18480,49668,15,4,f +18480,50231,272,1,f +18480,50955,28,1,f +18480,50956,28,1,f +18480,54200,15,4,f +18480,54200,182,2,f +18480,54200,36,2,f +18480,60474,0,1,f +18480,60474,15,1,f +18480,60478,15,2,f +18480,60897,71,2,f +18480,6091,28,2,f +18480,61184,71,2,f +18480,6141,179,6,f +18480,63864,72,6,f +18480,64225,15,1,f +18480,75902pr0011,72,1,f +18480,85984,71,2,f +18480,85984,28,4,f +18480,85984,0,5,f +18480,85984pr0143,72,1,f +18480,87079,72,2,f +18480,87083,72,3,f +18480,88072,0,1,f +18480,92593,28,4,f +18480,92907,0,2,f +18480,95673,179,1,f +18480,970c00,308,1,f +18480,970c00pr1297,4,1,f +18480,973pr3872c01,4,1,f +18480,973pr3873c01,326,1,f +18480,98138,320,2,f +18480,99206,71,2,f +18480,99780,72,2,f +18480,99781,0,4,f +18480,99781,71,2,f +18483,10288,308,1,f +18483,11211,71,3,f +18483,11399,72,3,f +18483,11476,71,15,f +18483,15068,71,3,f +18483,15068,0,3,f +18483,15303,36,4,f +18483,15400,72,3,f +18483,15712,0,4,f +18483,18651,0,1,f +18483,18671,72,6,f +18483,19888,0,1,f +18483,21849,40,3,f +18483,22885,71,3,f +18483,2357,0,6,f +18483,2412b,36,17,f +18483,2431,72,3,f +18483,2445,0,6,f +18483,2540,72,2,f +18483,26047,0,3,f +18483,26140,0,1,f +18483,27255,71,4,f +18483,2780,0,12,f +18483,28555,41,2,f +18483,2877,0,3,f +18483,30170,72,1,f +18483,30171,15,1,f +18483,3020,0,6,f +18483,3020,72,4,f +18483,3021,0,17,f +18483,3022,72,14,f +18483,3022,1,3,f +18483,3023,36,24,f +18483,3023,0,14,f +18483,3031,72,3,f +18483,3034,0,9,f +18483,3034,1,3,f +18483,30374,41,1,f +18483,30374,36,2,f +18483,30374,0,3,f +18483,30377,0,6,f +18483,30381,0,1,f +18483,3039,72,1,f +18483,30552,0,3,f +18483,3068b,0,6,f +18483,3069b,27,3,f +18483,3176,71,4,f +18483,32000,71,6,f +18483,32059,72,12,f +18483,32062,0,3,f +18483,32064a,72,31,f +18483,32270,0,1,f +18483,3460,1,3,f +18483,3623,72,3,f +18483,3626cpr1671,19,1,f +18483,3626cpr1942,92,1,f +18483,3626cpr2217,148,1,f +18483,3666,72,9,f +18483,3700,4,1,f +18483,3700,0,6,f +18483,3701,27,3,f +18483,3710,27,9,f +18483,3710,72,3,f +18483,3795,19,3,f +18483,3795,72,3,f +18483,3957a,47,1,f +18483,3960,0,1,f +18483,3960,47,1,f +18483,4032a,72,2,f +18483,4032a,0,3,f +18483,40490,0,6,f +18483,4085c,72,2,f +18483,4162,1,3,f +18483,41769,72,6,f +18483,41769,1,9,f +18483,41769,0,6,f +18483,41770,72,3,f +18483,41879a,28,1,f +18483,4274,71,19,f +18483,43093,1,1,f +18483,43898,0,1,f +18483,44302a,72,3,f +18483,4519,71,4,f +18483,47398,0,18,f +18483,47398,72,6,f +18483,48336,4,3,f +18483,51739,72,9,f +18483,51739,1,12,f +18483,54384,0,6,f +18483,58247,0,1,f +18483,59426,72,6,f +18483,59900,36,3,f +18483,60477,72,6,f +18483,60483,72,1,f +18483,60849,0,4,f +18483,60897,0,2,f +18483,61409,1,6,f +18483,6141,36,2,f +18483,61482,71,1,f +18483,62113,0,1,f +18483,63868,72,2,f +18483,64567,80,1,f +18483,64567,0,2,f +18483,6541,72,6,f +18483,75937,0,2,f +18483,85984,0,1,f +18483,85984pr0006,72,2,f +18483,87079,0,3,f +18483,87079,71,3,f +18483,87544,0,2,f +18483,87552,71,1,f +18483,92280,71,6,f +18483,92692,0,1,f +18483,93273,71,3,f +18483,93606,0,3,f +18483,96874,25,1,f +18483,970c00pr0717,0,1,f +18483,970c00pr1288,148,1,f +18483,973pr2766c01,0,1,f +18483,973pr3862c01,148,1,f +18483,973pr3863c01,19,1,f +18483,98138,36,4,f +18483,98385,70,1,f +18483,99206,71,3,f +18483,99207,0,6,f +18484,10201,71,3,f +18484,10247,71,2,f +18484,10928,72,2,f +18484,11127,41,5,f +18484,11212,71,2,f +18484,11212,0,6,f +18484,11214,72,2,f +18484,11215,0,2,f +18484,11272,148,1,f +18484,11476,0,2,f +18484,11477,71,2,f +18484,11477,72,2,f +18484,13349,72,2,f +18484,13547,0,10,f +18484,15068,14,1,f +18484,15068,72,4,f +18484,15068,28,2,f +18484,15068,320,2,f +18484,15071,0,1,f +18484,15303,41,4,f +18484,15400,72,2,f +18484,15461,0,8,f +18484,15462,70,1,f +18484,15573,297,1,f +18484,15712,0,1,f +18484,18654,72,2,f +18484,18671,72,6,f +18484,18674,72,2,f +18484,18980,320,2,f +18484,20482,297,1,f +18484,23186,308,1,f +18484,2357,320,10,f +18484,23950,72,2,f +18484,24122,0,1,f +18484,2412b,71,5,f +18484,2412b,297,8,f +18484,2412b,0,2,f +18484,2412b,72,5,f +18484,2420,19,2,f +18484,2420,72,2,f +18484,2420,0,2,f +18484,2420,71,8,f +18484,24201,0,4,f +18484,24201,71,4,f +18484,2431,72,2,f +18484,2432,71,1,f +18484,2432,72,1,f +18484,2445,72,2,f +18484,2450,28,8,f +18484,2540,72,1,f +18484,2639,72,2,f +18484,2654,47,3,f +18484,26601,72,14,f +18484,26603,0,1,f +18484,2780,0,6,f +18484,28326,0,2,f +18484,2853,71,3,f +18484,298c02,71,1,f +18484,30000,72,2,f +18484,3004,71,5,f +18484,3005,0,4,f +18484,3009,72,2,f +18484,3010,72,1,f +18484,3010,0,2,f +18484,3010,27,1,f +18484,30192,71,2,f +18484,30194,72,1,f +18484,3020,72,3,f +18484,3020,0,3,f +18484,3020,71,4,f +18484,3020,320,7,f +18484,3021,28,14,f +18484,3021,72,3,f +18484,3021,14,1,f +18484,3021,71,7,f +18484,3022,71,2,f +18484,3022,72,2,f +18484,3022,320,4,f +18484,3023,28,2,f +18484,3023,19,6,f +18484,3023,0,12,f +18484,3023,71,3,f +18484,3031,14,1,f +18484,3031,71,2,f +18484,3031,72,8,f +18484,3033,71,1,f +18484,3034,0,4,f +18484,3034,71,1,f +18484,3035,72,4,f +18484,30357,72,6,f +18484,30357,0,2,f +18484,3036,28,1,f +18484,3036,72,1,f +18484,30375,308,1,f +18484,30376,484,1,f +18484,30377,484,1,f +18484,30378,484,1,f +18484,3039,72,1,f +18484,30408pr0007,15,1,f +18484,3040b,71,2,f +18484,30503,71,2,f +18484,30503,72,2,f +18484,30503,320,6,f +18484,30552,0,5,f +18484,30602,0,1,f +18484,3062b,320,10,f +18484,3068b,0,1,f +18484,3069b,71,2,f +18484,3069b,72,4,f +18484,3070b,19,1,f +18484,32013,0,8,f +18484,32028,72,2,f +18484,32039,71,1,f +18484,32054,0,6,f +18484,32062,4,1,f +18484,32123b,71,5,f +18484,32324,71,1,f +18484,32532,71,1,f +18484,32555,0,6,f +18484,3297,72,2,f +18484,3460,72,4,f +18484,3460,71,4,f +18484,3460,0,6,f +18484,3622,72,2,f +18484,3623,320,2,f +18484,3623,71,8,f +18484,3623,72,2,f +18484,3626cpr1149,78,1,f +18484,3626cpr1943,92,1,f +18484,3626cpr1944,92,1,f +18484,3626cpr2230,484,1,f +18484,3665,72,2,f +18484,3666,0,6,f +18484,3666,320,2,f +18484,3666,72,2,f +18484,3701,19,2,f +18484,3701,72,2,f +18484,3702,71,2,f +18484,3702,0,4,f +18484,3703,72,2,f +18484,3703,71,4,f +18484,3706,0,1,f +18484,3707,0,2,f +18484,3710,0,10,f +18484,3710,320,1,f +18484,3710,28,2,f +18484,3710,71,6,f +18484,3713,71,3,f +18484,3749,19,2,f +18484,3795,71,3,f +18484,3832,71,4,f +18484,3839b,0,4,f +18484,3937,0,4,f +18484,3943b,0,1,f +18484,4006,0,1,f +18484,4032a,0,9,f +18484,4032a,15,2,f +18484,4162,72,4,f +18484,41669,71,4,f +18484,41677,71,1,f +18484,41747,72,1,f +18484,41748,72,1,f +18484,41769,0,2,f +18484,41770,0,2,f +18484,41879a,19,1,f +18484,42022,72,2,f +18484,4274,71,37,f +18484,4287,0,4,f +18484,43093,1,10,f +18484,43722,28,1,f +18484,43723,28,1,f +18484,44294,71,1,f +18484,44302a,0,4,f +18484,44568,71,2,f +18484,4477,71,4,f +18484,4510,72,2,f +18484,4519,71,8,f +18484,45705pr0003,47,1,f +18484,4599b,0,1,f +18484,4733,71,1,f +18484,4740,41,5,f +18484,47507,72,1,f +18484,4865b,14,1,f +18484,48933,72,2,f +18484,50304,72,2,f +18484,50305,72,2,f +18484,50747,41,2,f +18484,50950,0,2,f +18484,50950,71,2,f +18484,50955,72,1,f +18484,51739,14,1,f +18484,51739,71,2,f +18484,54200,72,6,f +18484,54200,0,1,f +18484,54383,320,5,f +18484,54383,71,5,f +18484,54384,320,5,f +18484,54384,71,5,f +18484,58247,0,1,f +18484,59230,19,1,f +18484,59443,0,6,f +18484,59443,71,2,f +18484,59900,0,1,f +18484,60471,0,1,f +18484,60474,0,1,f +18484,60475b,0,1,f +18484,60478,0,2,f +18484,60479,72,4,f +18484,60483,71,1,f +18484,60484,0,2,f +18484,60897,0,2,f +18484,6111,71,2,f +18484,61252,71,1,f +18484,6134,0,4,f +18484,61409,72,6,f +18484,61409,0,4,f +18484,6141,41,10,f +18484,6141,42,2,f +18484,6179,71,2,f +18484,62462,71,1,f +18484,62462,148,2,f +18484,63864,71,2,f +18484,6541,71,2,f +18484,6558,1,12,f +18484,6632,72,1,f +18484,6632,0,3,f +18484,6636,71,3,f +18484,6636,0,2,f +18484,85861,0,2,f +18484,85943,72,1,f +18484,85984,0,1,f +18484,85984,72,2,f +18484,87079,71,1,f +18484,87081,0,1,f +18484,87083,72,2,f +18484,87615,71,1,f +18484,87990,308,1,f +18484,90194,71,1,f +18484,91988,72,3,f +18484,92738,0,1,f +18484,93273,0,7,f +18484,96874,25,1,f +18484,970c00pr0719,15,1,f +18484,970c00pr1072,379,1,f +18484,970c00pr1289,288,1,f +18484,973pr2767c01,15,1,f +18484,973pr3836c01,19,1,f +18484,973pr3864c01,28,1,f +18484,973pr3865c01,28,1,f +18484,98100,0,6,f +18484,99780,72,4,f +18484,99781,71,2,f +18485,11153,320,10,f +18485,11211,71,1,f +18485,11213,71,6,f +18485,11477,320,6,f +18485,11477,27,2,f +18485,13547,15,2,f +18485,14769,15,1,f +18485,15068,15,1,f +18485,15092,72,28,f +18485,15303,35,3,f +18485,15392,72,2,f +18485,15400,72,2,f +18485,15403,0,2,f +18485,15535,72,4,f +18485,15573,320,2,f +18485,17979,320,2,f +18485,18646,15,8,f +18485,18651,0,2,f +18485,18671,72,5,f +18485,2412b,320,4,f +18485,2412b,0,4,f +18485,2412b,72,1,f +18485,2419,320,2,f +18485,2420,320,14,f +18485,24299,15,1,f +18485,24307,15,1,f +18485,2431,27,2,f +18485,2431,15,2,f +18485,24316,70,2,f +18485,2432,70,1,f +18485,2445,320,1,f +18485,2450,320,2,f +18485,2654,46,2,f +18485,2654,15,2,f +18485,2654,72,1,f +18485,2723,0,2,f +18485,2780,0,16,f +18485,2853,71,1,f +18485,28809,71,4,f +18485,3002,15,1,f +18485,3020,320,3,f +18485,3020,72,2,f +18485,3020,71,6,f +18485,3021,27,1,f +18485,3021,15,4,f +18485,3022,320,6,f +18485,3022,27,3,f +18485,3023,71,6,f +18485,3023,27,4,f +18485,3023,46,1,f +18485,3023,15,3,f +18485,3023,72,5,f +18485,3023,320,6,f +18485,3024,15,8,f +18485,3035,15,1,f +18485,30355,320,1,f +18485,30355,15,1,f +18485,30356,15,1,f +18485,30356,320,1,f +18485,30361pr1008,15,1,f +18485,30362,15,2,f +18485,30367cpr1008,320,1,f +18485,30374,41,1,f +18485,30374,71,2,f +18485,3039,70,1,f +18485,3039pr0018,0,1,f +18485,3040b,15,2,f +18485,30414,19,2,f +18485,30554a,0,1,f +18485,3068b,27,1,f +18485,3068b,320,2,f +18485,3068b,0,1,f +18485,3069b,72,1,f +18485,3069b,27,6,f +18485,3069b,15,2,f +18485,3070b,15,2,f +18485,32009,47,4,f +18485,32016,15,32,f +18485,32039,71,1,f +18485,32059,320,2,f +18485,32062,4,7,f +18485,32065,15,16,f +18485,32073,71,33,f +18485,32123b,71,56,f +18485,32124,0,4,f +18485,32184,71,2,f +18485,32291,72,2,f +18485,32316,15,6,f +18485,32524,15,2,f +18485,32555,0,2,f +18485,32557,71,2,f +18485,3460,15,2,f +18485,3623,71,2,f +18485,3623,72,4,f +18485,3626cpr1865,78,1,f +18485,3626cpr2300,78,1,f +18485,3626cpr2301,78,1,f +18485,3660,320,2,f +18485,3666,320,45,f +18485,3666,15,2,f +18485,3666,0,1,f +18485,3666,27,2,f +18485,3679,71,1,f +18485,3680,0,1,f +18485,3701,0,1,f +18485,3703,15,2,f +18485,3705,0,6,f +18485,3706,0,1,f +18485,3710,0,2,f +18485,3710,71,6,f +18485,3710,15,4,f +18485,3713,4,3,f +18485,3749,19,4,f +18485,3795,320,3,f +18485,3795,0,2,f +18485,3832,15,5,f +18485,3941,72,2,f +18485,3941,0,2,f +18485,3941,46,4,f +18485,4162,320,1,f +18485,4162,15,2,f +18485,41677,4,2,f +18485,41678,71,36,f +18485,41769,15,3,f +18485,41769,320,2,f +18485,41770,15,3,f +18485,41770,320,2,f +18485,41879a,73,1,f +18485,42003,71,6,f +18485,4274,71,8,f +18485,43712,15,1,f +18485,43722,27,1,f +18485,43723,27,1,f +18485,44294,71,4,f +18485,44300,71,1,f +18485,44567a,71,2,f +18485,45301,15,1,f +18485,4742,0,2,f +18485,47755,15,4,f +18485,48336,15,4,f +18485,4868b,71,2,f +18485,4871,15,2,f +18485,50304,15,2,f +18485,50305,15,2,f +18485,50950,320,2,f +18485,51739,27,1,f +18485,54200,320,2,f +18485,54383,320,1,f +18485,54383,15,1,f +18485,54384,15,1,f +18485,54384,320,1,f +18485,55817,320,4,f +18485,55817,15,2,f +18485,59426,72,2,f +18485,59443,4,4,f +18485,60470a,0,4,f +18485,60471,0,1,f +18485,60477,320,2,f +18485,60483,72,2,f +18485,60849,71,2,f +18485,61190c,72,4,f +18485,6141,15,8,f +18485,6141,35,8,f +18485,6141,72,6,f +18485,6179,15,2,f +18485,6180,15,9,f +18485,6180,320,6,f +18485,63586,72,4,f +18485,63864,0,2,f +18485,63864,15,6,f +18485,63864,320,6,f +18485,63868,0,2,f +18485,64567,80,1,f +18485,64802,179,1,f +18485,6536,15,8,f +18485,6541,72,2,f +18485,6558,1,34,f +18485,6575,72,4,f +18485,6587,28,2,f +18485,6636,320,6,f +18485,6636,15,11,f +18485,85543,15,2,f +18485,85984,27,3,f +18485,85984,15,4,f +18485,87079,72,1,f +18485,87610pr0002a,179,1,f +18485,87752,40,1,f +18485,87926,15,2,f +18485,88283,0,1,f +18485,88283,484,1,f +18485,91988,71,1,f +18485,92280,71,2,f +18485,92280,15,4,f +18485,92907,71,1,f +18485,93606,15,4,f +18485,96874,25,1,f +18485,970c00pr0510,19,1,f +18485,970c00pr1319,379,1,f +18485,973pr3904c01,148,1,f +18485,973pr3905c01,19,1,f +18485,973pr3906c01,73,1,f +18485,99206,71,2,f +18485,99207,71,4,f +18485,99780,72,1,f +18485,99781,0,1,f +18486,10197,0,2,f +18486,11478,0,1,f +18486,15303,36,2,f +18486,15400,72,1,f +18486,18651,0,1,f +18486,18654,15,2,f +18486,21560,15,2,f +18486,21562,15,2,f +18486,2431,0,1,f +18486,26831,15,2,f +18486,2780,0,3,f +18486,3024,15,2,f +18486,3069b,0,1,f +18486,30821,179,1,f +18486,31483,15,1,f +18486,31901,0,1,f +18486,32034,0,1,f +18486,32039,0,2,f +18486,32054,71,1,f +18486,32062,4,3,f +18486,32316,0,1,f +18486,32523,15,2,f +18486,32615,15,1,f +18486,3623,0,3,f +18486,3713,71,1,f +18486,41669,0,2,f +18486,41677,0,1,f +18486,4274,1,4,f +18486,44294,71,1,f +18486,4519,71,4,f +18486,60483,0,2,f +18486,61409,0,1,f +18486,6141,72,6,f +18486,63864pr0010,0,3,f +18486,6536,15,1,f +18486,6553,0,2,f +18486,6558,1,3,f +18486,74261,0,4,f +18486,90607,0,2,f +18486,90609,0,2,f +18486,90615,0,2,f +18486,90616,0,2,f +18486,90623,0,1,f +18486,90639,15,2,f +18486,90640,15,2,f +18486,90641,15,2,f +18486,90652,15,1,f +18486,90661,15,2,f +18486,92907,0,2,f +18486,93273,15,2,f +18486,93575,0,2,f +18486,98577,72,1,f +18493,14137,34,4,f +18493,15068,2,1,f +18493,2540,2,2,f +18493,3021,0,1,f +18493,3022,2,1,f +18493,3022,27,1,f +18493,3023,27,4,f +18493,30377,0,6,f +18493,30377,0,1,t +18493,30383,0,4,f +18493,3062b,1,1,f +18493,3062b,27,2,f +18493,3942c,1,1,f +18493,48729b,71,1,f +18493,48729b,71,1,t +18493,59900,1,1,f +18493,63965,15,1,f +18493,85984,2,2,f +18493,98138pr0026,15,1,t +18493,98138pr0026,15,2,f +18493,99207,1,2,f +18527,11203,72,2,f +18527,11212,71,2,f +18527,11476,71,2,f +18527,11477,288,1,f +18527,11610,71,2,f +18527,15397,0,1,f +18527,22484,72,2,f +18527,3005,288,1,f +18527,3023,40,1,f +18527,3070b,15,2,f +18527,3070b,40,1,f +18527,3666,72,1,f +18527,3710,14,2,f +18527,3794b,19,4,f +18527,3794b,71,2,f +18527,41747,15,1,f +18527,41748,15,1,f +18527,4733,71,2,f +18527,4865a,15,4,f +18527,50950,288,1,f +18527,54200,14,2,f +18527,54200,40,1,f +18527,6141,46,3,f +18527,6141,71,4,f +18527,99780,72,2,f +18575,11090,0,1,f +18575,11476,0,2,f +18575,11477,71,6,f +18575,15391,0,3,f +18575,15392,72,5,f +18575,15403,0,2,f +18575,15712,0,2,f +18575,18986,47,1,f +18575,23915,15,1,f +18575,2412b,71,1,f +18575,2431,71,1,f +18575,2540,72,3,f +18575,29380,0,2,f +18575,3004,0,1,f +18575,3010,71,1,f +18575,3020,71,1,f +18575,3021,72,2,f +18575,3022,15,1,f +18575,3023,19,1,f +18575,30237b,72,4,f +18575,3030,0,1,f +18575,3040b,71,4,f +18575,3062b,15,5,f +18575,3069bpr0086,71,1,f +18575,33578,272,1,f +18575,33589,15,2,f +18575,3626cpr0937,78,1,f +18575,3626cpr1149,78,3,f +18575,3660,71,2,f +18575,3710,72,2,f +18575,3795,71,1,f +18575,42610,71,2,f +18575,44676,47,2,f +18575,4599b,0,1,f +18575,48336,71,1,f +18575,48729b,71,2,f +18575,54200,36,2,f +18575,57899,0,1,f +18575,6126b,182,1,f +18575,61409,72,2,f +18575,6141,36,10,f +18575,6141,41,4,f +18575,6141,15,2,f +18575,64567,71,2,f +18575,64644,15,2,f +18575,85861,182,2,f +18575,85984,72,1,f +18575,87994,0,2,f +18575,92280,71,2,f +18575,970c00,272,1,f +18575,970c00pr0954,15,2,f +18575,970c00pr0955,15,1,f +18575,973pr3165c01,15,2,f +18575,973pr3166c01,15,1,f +18575,973pr3845c01,272,1,f +18575,99207,71,2,f +18576,11215,0,2,f +18576,11477,321,4,f +18576,15391,0,4,f +18576,15392,72,6,f +18576,15403,0,2,f +18576,15462,70,2,f +18576,15535,72,4,f +18576,15573,72,1,f +18576,15712,72,1,f +18576,24073,15,1,f +18576,2412b,71,1,f +18576,2524,70,1,f +18576,2540,72,1,f +18576,2654,321,3,f +18576,2780,0,1,f +18576,3002,71,1,f +18576,3020,72,2,f +18576,3022,71,1,f +18576,3023,71,1,f +18576,30375,72,1,f +18576,30376,72,1,f +18576,30377,72,1,f +18576,3039,0,1,f +18576,3062pr0013,72,1,f +18576,32000,72,1,f +18576,32039,71,2,f +18576,32054,0,2,f +18576,32062,4,3,f +18576,32064a,71,1,f +18576,32187,71,3,f +18576,3626cpr1934,15,1,f +18576,3660,72,1,f +18576,3747a,71,2,f +18576,3795,72,1,f +18576,3941,71,2,f +18576,4081b,71,1,f +18576,41677,0,1,f +18576,41678,0,1,f +18576,42446,71,1,f +18576,43722,321,1,f +18576,43723,321,1,f +18576,43857,71,1,f +18576,4519,71,2,f +18576,48336,0,1,f +18576,48729b,72,1,f +18576,49668,179,1,f +18576,54200,47,2,f +18576,57899,0,1,f +18576,59230,72,1,f +18576,59443,72,2,f +18576,59900,72,1,f +18576,59900,33,2,f +18576,60470a,71,3,f +18576,60483,0,1,f +18576,60897,71,2,f +18576,6141,72,1,f +18576,6141,36,14,f +18576,6141,70,2,f +18576,63965,0,2,f +18576,64644,0,4,f +18576,87087,19,2,f +18576,87570pr0002,326,1,f +18576,970c00,308,1,f +18576,970c00pr1277,226,1,f +18576,970c00pr1279,148,1,f +18576,973pr3392c01,15,1,f +18576,973pr3842c01,226,1,f +18576,973pr3848c01,148,1,f +18576,98397,71,2,f +18576,bb790Pr0001,179,1,f +18577,10201,71,2,f +18577,10247,72,4,f +18577,11153,320,2,f +18577,11215,0,4,f +18577,11476,15,1,f +18577,11477,15,4,f +18577,11477,19,2,f +18577,15392,72,2,f +18577,15403,15,2,f +18577,15672,15,6,f +18577,15672,27,2,f +18577,15712,15,2,f +18577,18651,0,2,f +18577,2412b,0,4,f +18577,2412b,320,2,f +18577,2420,27,2,f +18577,2420,1,4,f +18577,24201,71,6,f +18577,2431,15,2,f +18577,2432,71,4,f +18577,2432,19,1,f +18577,2445,72,1,f +18577,2450,320,2,f +18577,25269,19,2,f +18577,25269,15,2,f +18577,26601,15,6,f +18577,2714a,0,2,f +18577,2877,0,2,f +18577,3002,27,1,f +18577,3005,15,6,f +18577,3010,15,2,f +18577,3020,15,7,f +18577,3020,27,1,f +18577,3020,320,3,f +18577,3021,71,2,f +18577,3021,27,2,f +18577,3022,71,1,f +18577,3023,71,15,f +18577,3024,15,4,f +18577,3030,320,2,f +18577,3031,71,1,f +18577,3034,2,1,f +18577,3035,0,1,f +18577,30363,15,1,f +18577,30374,41,1,f +18577,30375,19,2,f +18577,30376,19,2,f +18577,30377,19,2,f +18577,30378,19,2,f +18577,3068b,320,2,f +18577,3069b,72,1,f +18577,3069b,320,4,f +18577,3069b,15,4,f +18577,3069b,19,2,f +18577,31511,71,2,f +18577,32064a,320,2,f +18577,3298,15,2,f +18577,33469,15,1,f +18577,3460,72,4,f +18577,3623,72,6,f +18577,3623,15,4,f +18577,3626cpr0001,321,1,f +18577,3626cpr1149,78,1,f +18577,3626cpr2242,321,1,f +18577,3666,71,10,f +18577,3666,27,2,f +18577,3673,71,4,f +18577,3710,320,10,f +18577,3795,320,1,f +18577,3795,28,3,f +18577,4006,179,1,f +18577,4070,71,4,f +18577,4085c,72,2,f +18577,41769,0,1,f +18577,41770,0,1,f +18577,42610,71,4,f +18577,4274,71,1,f +18577,4345b,71,1,f +18577,4346,71,1,f +18577,43710,15,3,f +18577,43711,15,3,f +18577,43722,15,1,f +18577,43723,15,1,f +18577,48336,72,1,f +18577,54200,47,4,f +18577,54383,320,1,f +18577,54384,320,1,f +18577,57899,0,1,f +18577,58247,0,2,f +18577,59230,19,2,f +18577,60474,320,1,f +18577,60477,15,2,f +18577,60478,15,2,f +18577,6091,15,2,f +18577,61409,15,2,f +18577,6141,179,8,f +18577,6141,36,6,f +18577,63864,71,2,f +18577,64567,80,1,f +18577,6541,19,2,f +18577,6636,320,2,f +18577,6636,15,2,f +18577,85984,15,1,f +18577,85984pr0006,72,1,f +18577,87079,15,2,f +18577,87087,0,2,f +18577,87552,0,1,f +18577,87620,71,2,f +18577,92280,15,2,f +18577,93550,179,2,f +18577,95344,0,1,f +18577,970c00pr0631,15,1,f +18577,970c00pr1306,308,1,f +18577,973pr3827c01,321,1,f +18577,973pr3828c01,15,1,f +18577,99206,15,2,f +18577,99563,71,2,f +18577,99780,72,8,f +18577,99781,0,1,f +18578,10247,15,2,f +18578,15535,0,1,f +18578,15573,71,2,f +18578,15706,0,8,f +18578,18975,72,1,f +18578,19888,0,2,f +18578,19916,0,1,f +18578,19917,0,1,f +18578,20482,0,2,f +18578,22889,0,5,f +18578,2412b,179,10,f +18578,25893,47,1,f +18578,26047,0,1,f +18578,2736,71,4,f +18578,2780,0,2,f +18578,2877,71,4,f +18578,298c02,0,1,f +18578,3003,72,1,f +18578,3005,72,2,f +18578,3020,0,4,f +18578,3020,1,5,f +18578,3021,15,2,f +18578,3023,72,5,f +18578,3024,72,1,f +18578,3024,36,12,f +18578,3031,71,8,f +18578,3032,0,1,f +18578,30363,72,2,f +18578,30374,36,2,f +18578,30376,0,1,f +18578,30377,0,1,f +18578,30381,0,1,f +18578,3062b,46,1,f +18578,3062b,36,3,f +18578,3069b,47,7,f +18578,32034,4,1,f +18578,32056,72,4,f +18578,32062,4,1,f +18578,32064a,72,2,f +18578,32124,0,3,f +18578,32140,0,1,f +18578,32184,0,2,f +18578,32270,0,1,f +18578,32316,72,2,f +18578,32807,0,6,f +18578,3626cpr1671,19,1,f +18578,3626cpr2247,78,2,f +18578,3659,71,1,f +18578,3666,72,6,f +18578,3673,71,2,f +18578,3700,71,3,f +18578,3701,72,1,f +18578,3705,4,1,f +18578,3707,0,1,f +18578,3710,15,1,f +18578,3713,71,1,f +18578,3795,72,2,f +18578,3957a,47,1,f +18578,4032a,72,3,f +18578,4070,0,7,f +18578,4085c,72,2,f +18578,41769,72,4,f +18578,41770,72,4,f +18578,4185,57,1,f +18578,43093,1,2,f +18578,43898,0,2,f +18578,44728,72,2,f +18578,4519,71,1,f +18578,45590,0,2,f +18578,4733,0,2,f +18578,4735,71,1,f +18578,4740,72,2,f +18578,4740,0,2,f +18578,47457,71,2,f +18578,48729b,0,2,f +18578,54200,0,4,f +18578,54383,72,4,f +18578,54384,72,4,f +18578,55013,72,2,f +18578,59230,0,8,f +18578,59426,72,1,f +18578,604547,179,1,f +18578,604548,179,1,f +18578,604549,179,1,f +18578,604550,179,1,f +18578,604551,179,1,f +18578,604552,179,1,f +18578,604553,179,1,f +18578,604614,179,1,f +18578,604615,179,1,f +18578,60474,72,1,f +18578,60483,71,2,f +18578,61409,71,2,f +18578,6141,148,3,f +18578,6141,36,1,f +18578,6141,57,1,f +18578,6141,47,16,f +18578,6179,72,1,f +18578,61903,71,1,f +18578,6233,0,1,f +18578,63864,71,2,f +18578,63869,0,1,f +18578,63965,72,1,f +18578,64567,80,1,f +18578,64567,297,1,f +18578,6558,1,1,f +18578,75937,0,1,f +18578,85943,72,1,f +18578,87079,4,1,f +18578,87087,71,2,f +18578,87580,72,2,f +18578,88072,72,1,f +18578,90194,15,7,f +18578,92947,0,1,f +18578,93273,0,1,f +18578,970c00pr0717,0,1,f +18578,970c00pr0718,0,1,f +18578,970c00pr1272,179,1,f +18578,973pr2697c01,0,1,f +18578,973pr2766c01,0,1,f +18578,973pr3839c01,0,1,f +18578,98138,46,1,f +18578,99207,71,2,f +18578,99781,0,2,f +18579,10197,0,4,f +18579,11214,72,5,f +18579,11478,0,2,f +18579,11610,0,2,f +18579,11946,70,2,f +18579,11947,70,2,f +18579,15068,15,4,f +18579,15100,0,2,f +18579,15100,72,12,f +18579,15303,36,2,f +18579,15400,72,1,f +18579,15462,70,3,f +18579,18651,0,10,f +18579,18654,72,7,f +18579,18654,15,1,f +18579,18976,0,1,f +18579,21560,15,3,f +18579,21561pr0009,15,1,f +18579,22961,71,2,f +18579,22961,308,2,f +18579,24116,0,3,f +18579,2431,0,1,f +18579,24316,70,4,f +18579,2654,15,2,f +18579,26831,0,2,f +18579,2780,0,53,f +18579,28220,15,4,f +18579,28809,71,2,f +18579,3024,71,2,f +18579,3070b,15,2,f +18579,31901,0,1,f +18579,32002,19,4,f +18579,32013,72,13,f +18579,32013,15,2,f +18579,32014,0,2,f +18579,32015,70,2,f +18579,32017,71,1,f +18579,32034,70,2,f +18579,32034,0,4,f +18579,32034,72,2,f +18579,32039,71,4,f +18579,32039,0,2,f +18579,32062,4,12,f +18579,32073,71,2,f +18579,32123b,71,11,f +18579,32138,0,2,f +18579,32140,72,9,f +18579,32184,70,5,f +18579,32187,0,1,f +18579,32278,70,2,f +18579,32278,0,2,f +18579,32278,72,1,f +18579,32291,72,1,f +18579,32316,72,2,f +18579,32316,70,2,f +18579,32316,19,2,f +18579,32316,0,5,f +18579,32449,15,2,f +18579,32449,72,2,f +18579,32523,19,1,f +18579,32523,72,1,f +18579,32523,70,9,f +18579,32524,0,3,f +18579,32525,0,2,f +18579,32526,0,1,f +18579,32620,15,1,f +18579,3673,71,5,f +18579,3705,4,1,f +18579,3705,0,3,f +18579,3706,0,3,f +18579,3713,71,1,f +18579,3941,72,2,f +18579,40490,71,1,f +18579,41677,72,2,f +18579,41677,0,5,f +18579,41678,71,1,f +18579,41751,70,1,f +18579,42003,0,3,f +18579,42003,72,4,f +18579,4274,1,3,f +18579,43093,1,21,f +18579,43898,72,2,f +18579,44294,14,2,f +18579,4519,71,2,f +18579,4519,14,2,f +18579,4697b,71,2,f +18579,4740,36,2,f +18579,48002a,72,2,f +18579,59426,72,1,f +18579,59443,72,4,f +18579,59443,0,8,f +18579,59900,0,1,f +18579,60470a,15,2,f +18579,60483,72,4,f +18579,63869,70,4,f +18579,64391,70,5,f +18579,64683,70,5,f +18579,6536,72,6,f +18579,6553,0,1,f +18579,6553,72,6,f +18579,6558,1,26,f +18579,74261,0,2,f +18579,78c09,0,3,f +18579,87079,70,1,f +18579,87080,70,1,f +18579,87082,71,2,f +18579,87083,72,2,f +18579,87086,70,1,f +18579,90607,0,2,f +18579,90609,0,2,f +18579,90615,72,2,f +18579,90616,0,2,f +18579,90623,0,1,f +18579,90638,15,2,f +18579,90639,0,2,f +18579,90640,0,2,f +18579,90641,15,2,f +18579,90652,15,1,f +18579,90661,15,2,f +18579,92907,0,2,f +18579,92947,0,1,f +18579,93575,0,2,f +18579,98100,0,1,f +18579,98138,0,2,f +18579,98577,72,1,f +18584,10884,2,2,f +18584,11303,28,2,f +18584,11399,72,2,f +18584,11477,72,2,f +18584,11477,2,2,f +18584,11477,1,2,f +18584,13965,70,2,f +18584,14704,72,1,f +18584,14716,71,2,f +18584,15068,27,1,f +18584,15068,0,2,f +18584,15210,0,1,f +18584,15573,297,1,f +18584,15573,71,1,f +18584,15672,28,2,f +18584,16577,72,1,f +18584,18674,72,2,f +18584,18904,288,1,f +18584,18905pr0001,288,1,f +18584,18906,288,1,f +18584,20482,0,1,f +18584,23444,0,1,f +18584,2357,191,4,f +18584,2412b,0,7,f +18584,2420,70,2,f +18584,2420,0,6,f +18584,2431,70,2,f +18584,2431,0,8,f +18584,2432,1,1,f +18584,2432,4,1,f +18584,2453b,72,1,f +18584,2460,72,1,f +18584,2488,2,1,f +18584,2540,71,1,f +18584,2569,0,1,f +18584,26047,0,6,f +18584,2653,71,4,f +18584,26597,191,2,f +18584,2736,71,4,f +18584,28326,72,2,f +18584,29109,179,1,f +18584,29110,4,1,f +18584,29112,27,2,f +18584,3001,71,2,f +18584,3001,191,2,f +18584,3002,71,2,f +18584,3002,72,3,f +18584,3003,71,2,f +18584,3003,2,1,f +18584,3004,191,5,f +18584,3004,71,2,f +18584,3005,19,3,f +18584,3005,191,5,f +18584,3005,71,1,f +18584,30089,0,2,f +18584,3010,72,6,f +18584,3010,0,2,f +18584,3010,191,2,f +18584,30136,70,3,f +18584,30137,71,2,f +18584,30153,36,1,f +18584,30157,71,3,f +18584,30176,2,6,f +18584,3020,2,1,f +18584,3020,0,1,f +18584,3020,19,1,f +18584,3021,70,2,f +18584,3022,0,1,f +18584,3022,70,2,f +18584,3022,2,2,f +18584,3023,2,4,f +18584,3023,15,1,f +18584,3023,191,2,f +18584,3023,0,3,f +18584,3023,4,1,f +18584,3024,0,4,f +18584,3024,182,2,f +18584,3024,28,1,f +18584,3028,0,1,f +18584,3031,2,1,f +18584,3032,72,2,f +18584,3032,1,2,f +18584,3034,2,1,f +18584,3040b,191,2,f +18584,3040b,19,10,f +18584,30414,4,3,f +18584,3062b,19,4,f +18584,3062b,34,2,f +18584,3068b,0,1,f +18584,3069b,36,2,f +18584,3069bpr0192,47,1,f +18584,3070b,191,2,f +18584,31990,14,2,f +18584,32000,72,1,f +18584,32064a,1,4,f +18584,3245b,72,1,f +18584,3245c,191,6,f +18584,32739,191,1,f +18584,3460,4,2,f +18584,3460,1,2,f +18584,3626cpr1537,14,1,f +18584,3626cpr1580,14,1,f +18584,3626cpr1826,14,1,f +18584,3626cpr2272,14,1,f +18584,3659,19,1,f +18584,3665,191,6,f +18584,3665,72,4,f +18584,3666,191,1,f +18584,3666,0,3,f +18584,3673,71,1,f +18584,3710,72,2,f +18584,3710,71,1,f +18584,3710,191,2,f +18584,3795,191,2,f +18584,3829c01,1,1,f +18584,3832,72,2,f +18584,3832,0,1,f +18584,3832,1,1,f +18584,4006,0,1,f +18584,4079,1,2,f +18584,4162,0,3,f +18584,4176,41,1,f +18584,4274,1,1,f +18584,4282,71,2,f +18584,4287,71,2,f +18584,4345b,71,2,f +18584,4346,71,2,f +18584,44301a,0,2,f +18584,44302a,0,2,f +18584,44728,0,2,f +18584,44728,72,2,f +18584,4477,0,3,f +18584,4510,0,2,f +18584,47456,1,2,f +18584,47847,72,1,f +18584,48336,72,6,f +18584,52031,191,1,f +18584,54200,47,2,f +18584,54200,0,4,f +18584,55981,71,6,f +18584,56891,0,6,f +18584,60475b,191,5,f +18584,60481,71,2,f +18584,60581,191,2,f +18584,60594,72,1,f +18584,60601,41,4,f +18584,6091,70,2,f +18584,6111,72,2,f +18584,6112,72,1,f +18584,61184,71,1,f +18584,61345,191,2,f +18584,6141,182,2,f +18584,6179,0,2,f +18584,6179,72,1,f +18584,61976,70,1,f +18584,63864,70,3,f +18584,63965,0,1,f +18584,64453,41,2,f +18584,6628,0,1,f +18584,6636,0,4,f +18584,6636,1,2,f +18584,85543,15,1,f +18584,85984,0,2,f +18584,85984,15,1,f +18584,87079,72,2,f +18584,87079,15,6,f +18584,87580,4,1,f +18584,87580,0,1,f +18584,87609,191,1,f +18584,87990,70,1,f +18584,87991,0,1,f +18584,88292,19,1,f +18584,92280,0,4,f +18584,92438,1,1,f +18584,92585,0,2,f +18584,92593,72,1,f +18584,92593,4,1,f +18584,93273,1,2,f +18584,93273,2,1,f +18584,970c00,272,4,f +18584,973pr3752c01,484,1,f +18584,973pr3781c01,484,1,f +18584,973pr3880c01,15,1,f +18584,973pr3888c01,15,1,f +18584,97895,14,1,f +18584,98138,46,6,f +18584,98138,47,2,f +18584,98138,15,10,f +18584,98283,28,4,f +18584,98560,72,2,f +18584,99206,15,1,f +18584,99780,2,2,f +18593,11211,4,5,f +18593,11211,19,1,f +18593,11291,15,1,f +18593,11476,15,2,f +18593,13731,0,4,f +18593,15068,15,6,f +18593,15100,0,1,f +18593,15672,71,2,f +18593,18649,71,1,f +18593,18910,15,6,f +18593,18972,40,1,f +18593,18986,47,1,f +18593,2357,15,2,f +18593,2412b,297,2,f +18593,2412b,15,4,f +18593,2420,0,2,f +18593,2420,15,2,f +18593,24201,15,1,f +18593,24299,15,1,f +18593,24299,0,1,f +18593,24307,0,1,f +18593,24307,15,1,f +18593,2431,0,1,f +18593,2431,1,2,f +18593,2431,72,2,f +18593,2431,15,4,f +18593,2446,15,1,f +18593,2447,40,1,f +18593,2654,72,4,f +18593,26604,19,2,f +18593,2780,0,2,f +18593,3004,15,4,f +18593,3009,15,1,f +18593,3020,15,2,f +18593,3020,71,1,f +18593,3020,1,4,f +18593,3021,72,2,f +18593,3022,1,3,f +18593,3022,4,2,f +18593,3023,71,4,f +18593,3023,14,10,f +18593,3023,15,2,f +18593,3024,0,2,f +18593,3029,0,1,f +18593,30350b,41,2,f +18593,3036,0,2,f +18593,30367c,71,1,f +18593,3040b,0,2,f +18593,30504,15,2,f +18593,30553,72,1,f +18593,3068b,72,1,f +18593,3068b,19,1,f +18593,3070b,71,2,f +18593,3176,0,2,f +18593,32013,72,3,f +18593,32015,0,1,f +18593,32016,71,2,f +18593,32062,4,1,f +18593,32073,71,2,f +18593,32123b,14,3,f +18593,33299a,71,1,f +18593,3460,14,2,f +18593,3623,0,6,f +18593,3626cpr1760,14,1,f +18593,3665,72,2,f +18593,3666,1,2,f +18593,3666,15,7,f +18593,3666,0,1,f +18593,3666,71,2,f +18593,3673,71,6,f +18593,3700,1,2,f +18593,3700,71,6,f +18593,3705,0,3,f +18593,3710,4,1,f +18593,3710,15,5,f +18593,3710,0,1,f +18593,3839b,15,1,f +18593,3937,72,4,f +18593,3941,72,1,f +18593,4006,0,1,f +18593,4070,15,2,f +18593,41747,15,1,f +18593,41748,15,1,f +18593,41769,15,1,f +18593,41769,0,1,f +18593,41770,0,1,f +18593,41770,15,1,f +18593,4185,57,3,f +18593,43093,1,3,f +18593,43712,15,2,f +18593,44567a,72,1,f +18593,44728,72,1,f +18593,4477,0,1,f +18593,4477,1,2,f +18593,4477,15,2,f +18593,45677,15,1,f +18593,47759,0,1,f +18593,48336,4,1,f +18593,48336,297,2,f +18593,49668,0,1,f +18593,50304,15,1,f +18593,50304,0,1,f +18593,50305,15,1,f +18593,50305,0,1,f +18593,51739,1,1,f +18593,60208,72,6,f +18593,60478,15,2,f +18593,6134,71,4,f +18593,61409,0,1,f +18593,6141,19,2,f +18593,6141,297,1,f +18593,6141,1,4,f +18593,6141,2,2,f +18593,6141,57,4,f +18593,61678,15,2,f +18593,63868,71,2,f +18593,64799,71,1,f +18593,6636,71,2,f +18593,6636,15,4,f +18593,85984,72,1,f +18593,85984pr0006,72,1,f +18593,92280,15,6,f +18593,92584,0,2,f +18593,92593,72,1,f +18593,93274,0,2,f +18593,970x026,15,1,f +18593,973pr2992c01,15,1,f +18593,98138,47,1,f +18593,99206,15,4,f +18593,99780,71,4,f +18593,99781,0,2,f +18645,15427pr0173,226,1,f +18645,33647,45,1,f +18645,3626cpr2202,14,1,f +18645,3742,5,1,t +18645,3742,5,3,f +18645,41879bpr0010,29,1,f +18645,88646,0,1,f +18645,973pr3833c01,212,1,f +18645,99249,27,1,f +18704,11211,19,1,f +18704,11291,0,1,f +18704,11303,28,1,f +18704,11477,19,2,f +18704,11477,72,2,f +18704,13269,191,1,f +18704,14719,191,2,f +18704,15208,19,4,f +18704,15379,0,2,t +18704,15379,0,44,f +18704,15397,70,1,f +18704,15712,0,4,f +18704,19220,0,1,f +18704,22885,71,1,f +18704,22885,4,1,f +18704,23444,0,1,f +18704,2357,72,2,f +18704,2412b,72,2,f +18704,2412b,0,4,f +18704,2412b,297,1,f +18704,2412b,179,4,f +18704,2431,71,1,f +18704,2431,191,3,f +18704,2431,0,2,f +18704,2432,1,1,f +18704,25269,19,2,f +18704,25269,19,1,t +18704,2540,72,1,f +18704,2653,71,2,f +18704,27186,308,1,f +18704,2780,0,1,t +18704,2780,0,2,f +18704,2815,0,2,f +18704,2877,71,1,f +18704,28809,71,2,f +18704,29109,179,1,f +18704,29109,179,1,t +18704,29111,4,1,f +18704,2926,0,2,f +18704,3001,191,1,f +18704,3003,2,1,f +18704,3004,191,1,f +18704,3004,72,2,f +18704,3005,191,2,f +18704,3008,0,2,f +18704,30089,0,1,f +18704,3009,191,2,f +18704,30136,15,4,f +18704,30150,71,1,f +18704,30153,36,1,f +18704,30157,71,1,f +18704,30176,2,6,f +18704,3020,0,1,f +18704,3020,28,2,f +18704,3020,72,3,f +18704,3020,1,3,f +18704,3021,191,3,f +18704,3021,1,1,f +18704,3022,1,3,f +18704,3022,71,1,f +18704,3023,4,2,f +18704,3023,72,4,f +18704,3023,36,2,f +18704,3023,1,1,f +18704,3023,2,8,f +18704,3023,191,3,f +18704,3031,0,1,f +18704,3040b,191,2,f +18704,3040b,72,2,f +18704,3069b,191,2,f +18704,3069b,0,1,f +18704,3069b,19,1,f +18704,3069b,14,1,f +18704,3069b,72,3,f +18704,3070b,36,2,f +18704,3070b,36,1,t +18704,32000,0,2,f +18704,32018,71,2,f +18704,32028,19,2,f +18704,32028,4,1,f +18704,32028,0,9,f +18704,32028,71,3,f +18704,32059,191,1,f +18704,32123b,14,1,t +18704,32123b,14,2,f +18704,3245b,72,4,f +18704,33057,484,1,f +18704,34100,9999,1,f +18704,34140pr01,0,1,f +18704,3460,191,2,f +18704,3622,19,2,f +18704,3622,191,2,f +18704,3626bpr0754a,14,1,f +18704,3626cpr2272,14,1,f +18704,3648b,72,4,f +18704,3666,191,1,f +18704,3673,71,2,t +18704,3673,71,3,f +18704,3700,1,2,f +18704,3710,19,2,f +18704,3710,72,5,f +18704,3749,19,2,f +18704,3795,72,3,f +18704,3795,191,1,f +18704,3795,0,1,f +18704,3823,41,1,f +18704,3829c01,1,2,f +18704,3832,0,2,f +18704,3839b,72,1,f +18704,3894,0,4,f +18704,3958,72,1,f +18704,4083,0,1,f +18704,41539,28,1,f +18704,4185,71,2,f +18704,4274,1,2,f +18704,4274,1,1,t +18704,4282,0,1,f +18704,4287,191,4,f +18704,4287,72,2,f +18704,44301a,72,2,f +18704,44674,191,1,f +18704,4528,179,1,f +18704,47457,297,1,f +18704,4865b,71,3,f +18704,49668,19,2,f +18704,54200,19,1,t +18704,54200,2,4,f +18704,54200,191,1,t +18704,54200,1,1,t +18704,54200,19,2,f +18704,54200,2,1,t +18704,54200,1,2,f +18704,54200,191,2,f +18704,55981,71,2,f +18704,56890,0,4,f +18704,56891,0,2,f +18704,6014b,71,4,f +18704,60169,72,1,f +18704,60219,72,1,f +18704,60470a,0,2,f +18704,60470a,71,1,f +18704,60475b,191,2,f +18704,60481,191,2,f +18704,61252,0,6,f +18704,61409,0,6,f +18704,6141,1,4,f +18704,6141,0,2,f +18704,6141,1,1,t +18704,6141,0,1,t +18704,6179,72,1,f +18704,6192,72,1,f +18704,63864,2,2,f +18704,63864,191,2,f +18704,63965,0,1,f +18704,64647,182,1,t +18704,64647,182,1,f +18704,6558,1,2,f +18704,6636,72,2,f +18704,72454,72,1,f +18704,85861,182,1,t +18704,85861,182,1,f +18704,85984,1,1,f +18704,85984,71,2,f +18704,87083,72,2,f +18704,87087,72,4,f +18704,87087,191,2,f +18704,87552,41,2,f +18704,87580,71,2,f +18704,87580,28,1,f +18704,88072,72,7,f +18704,92583,41,1,f +18704,92950,19,1,f +18704,93106,0,1,f +18704,970c00,272,2,f +18704,973pr3752c01,484,1,f +18704,973pr3781c01,484,1,f +18704,98138,46,4,f +18704,98138,47,2,t +18704,98138,47,5,f +18704,98138,46,1,t +18708,11211,19,4,f +18708,11211,71,6,f +18708,11215,15,1,f +18708,11215,0,2,f +18708,11215,71,1,f +18708,11476,71,4,f +18708,11477,288,2,f +18708,11477,15,2,f +18708,15068,288,4,f +18708,15068,15,4,f +18708,15391,0,4,f +18708,15392,72,4,f +18708,15712,72,6,f +18708,18649,0,2,f +18708,18858pr0001,272,1,f +18708,20243,9999,1,f +18708,2412b,71,3,f +18708,2412b,0,3,f +18708,2654,47,6,f +18708,30162,71,1,f +18708,3020,71,2,f +18708,3020,19,2,f +18708,3021,15,4,f +18708,3021,288,4,f +18708,3022,71,2,f +18708,3023,72,2,f +18708,3023,15,7,f +18708,3023,19,6,f +18708,3023,25,2,f +18708,3023,288,7,f +18708,3024,15,2,f +18708,3024,25,2,f +18708,3024,288,2,f +18708,30374,41,1,f +18708,30408pr0008,15,1,f +18708,30414,0,4,f +18708,3068b,288,2,f +18708,3068b,15,2,f +18708,3070b,71,1,f +18708,3070b,25,1,f +18708,32064a,72,4,f +18708,3623,71,4,f +18708,3626cpr1149,78,1,f +18708,3626cpr1515,78,1,f +18708,3626cpr1617,78,1,f +18708,3839b,72,2,f +18708,4006,0,1,f +18708,4081b,72,4,f +18708,41769,288,1,f +18708,41769,15,1,f +18708,41770,288,1,f +18708,41770,15,1,f +18708,43898,15,1,f +18708,43898pr1001,288,1,f +18708,4519,71,4,f +18708,4697b,71,2,f +18708,51739,288,2,f +18708,51739,15,2,f +18708,53586,179,4,f +18708,54200,15,2,f +18708,54200,288,2,f +18708,58247,0,1,f +18708,60849,71,4,f +18708,61409,72,8,f +18708,6141,36,6,f +18708,6141,72,10,f +18708,6141,35,6,f +18708,62885,0,2,f +18708,63965,72,4,f +18708,6632,72,4,f +18708,85984,19,2,f +18708,85984,0,8,f +18708,87087,72,4,f +18708,88283,0,1,f +18708,93606,288,1,f +18708,93606,15,1,f +18708,970c00pr0728,484,1,f +18708,970c00pr0735,15,1,f +18708,970c00pr0815,28,1,f +18708,973pr2788c01,28,1,f +18708,973pr2795c01,15,1,f +18708,973pr2917c01,72,1,f +18708,99206,15,1,f +18708,99206,0,3,f +18708,99207,71,4,f +18708,99780,15,4,f +18708,99780,0,9,f +18708,99780,72,5,f diff --git a/inventory_sets.csv b/inventory_sets.csv new file mode 100644 index 0000000..3f1b2b0 --- /dev/null +++ b/inventory_sets.csv @@ -0,0 +1,2847 @@ +inventory_id,set_num,quantity +35,75911-1,1 +35,75912-1,1 +39,75048-1,1 +39,75053-1,1 +50,4515-1,1 +50,4520-1,2 +50,4531-1,1 +71,7690-1,1 +71,7691-1,1 +71,7692-1,1 +71,7693-1,1 +71,7694-1,1 +71,7695-1,1 +71,7697-1,1 +81,8451-1,1 +81,8453-1,1 +87,10233-1,1 +87,88002-1,1 +87,8870-1,1 +87,8878-1,1 +87,8879-1,1 +87,8884-1,1 +104,4103-1,1 +104,4782-1,1 +122,7238-1,1 +122,7890-1,1 +122,7944-1,1 +131,7634-1,1 +131,7635-1,1 +131,7684-1,1 +251,3886-2,1 +263,7575-10,1 +263,7575-11,1 +263,7575-12,1 +263,7575-13,1 +263,7575-14,1 +263,7575-15,1 +263,7575-16,1 +263,7575-17,1 +263,7575-18,1 +263,7575-19,1 +263,7575-2,1 +263,7575-20,1 +263,7575-21,1 +263,7575-22,1 +263,7575-23,1 +263,7575-24,1 +263,7575-25,1 +263,7575-3,1 +263,7575-4,1 +263,7575-5,1 +263,7575-6,1 +263,7575-7,1 +263,7575-8,1 +263,7575-9,1 +305,6299-10,1 +305,6299-11,1 +305,6299-12,1 +305,6299-13,1 +305,6299-14,1 +305,6299-15,1 +305,6299-16,1 +305,6299-17,1 +305,6299-18,1 +305,6299-19,1 +305,6299-2,1 +305,6299-20,1 +305,6299-21,1 +305,6299-22,1 +305,6299-23,1 +305,6299-24,1 +305,6299-25,1 +305,6299-3,1 +305,6299-4,1 +305,6299-5,1 +305,6299-6,1 +305,6299-7,1 +305,6299-8,1 +305,6299-9,1 +309,4515-1,7 +309,4520-1,5 +309,4531-1,3 +311,8593-1,1 +311,8596-1,1 +398,71010-1,1 +398,71010-10,1 +398,71010-11,1 +398,71010-12,1 +398,71010-13,1 +398,71010-14,1 +398,71010-15,1 +398,71010-16,1 +398,71010-2,1 +398,71010-3,1 +398,71010-4,1 +398,71010-5,1 +398,71010-6,1 +398,71010-7,1 +398,71010-8,1 +398,71010-9,1 +473,8756-1,1 +473,8762-1,1 +500,9677-1,1 +500,9678-1,1 +500,9679-1,1 +515,3741-1,1 +515,3745-1,1 +525,7121-1,1 +525,7151-1,1 +528,6604-1,1 +528,6622-1,1 +528,6633-1,1 +561,4515-1,1 +561,4520-1,2 +580,3402-1,2 +580,3403-1,1 +580,3406-1,1 +580,3408-1,1 +580,3409-1,1 +612,4500-1,1 +612,4504-1,1 +614,9441-1,1 +614,9442-1,1 +614,9591-1,1 +695,8607-1,1 +695,8611-1,1 +695,8614-1,1 +695,8616-1,1 +695,8618-1,1 +708,4180878,1 +708,8560-1,1 +708,8564-1,1 +710,8602-1,1 +710,8606-1,1 +710,8614-1,1 +710,8615-1,1 +710,8616-1,1 +758,6712-1,1 +758,6716-1,1 +758,6755-1,1 +766,7958-10,1 +766,7958-11,1 +766,7958-12,1 +766,7958-13,1 +766,7958-14,1 +766,7958-15,1 +766,7958-16,1 +766,7958-17,1 +766,7958-18,1 +766,7958-19,1 +766,7958-2,1 +766,7958-20,1 +766,7958-21,1 +766,7958-22,1 +766,7958-23,1 +766,7958-24,1 +766,7958-25,1 +766,7958-3,1 +766,7958-4,1 +766,7958-5,1 +766,7958-6,1 +766,7958-7,1 +766,7958-8,1 +766,7958-9,1 +889,9490-1,1 +889,9492-1,1 +889,9496-1,1 +908,7030-1,1 +908,7031-1,1 +908,7032-1,1 +908,7033-1,1 +908,7034-1,1 +908,7035-1,1 +909,1557-1,1 +909,1558-1,1 +916,76029-1,1 +916,76030-1,1 +916,76031-1,1 +916,76032-1,1 +916,76038-1,1 +916,76041-1,1 +920,9674-1,1 +920,9675-1,1 +920,9676-1,1 +962,7990-1,1 +962,7991-1,1 +962,7993-1,1 +973,8870-1,1 +973,8878-1,1 +973,8879-1,1 +973,8882-1,1 +973,8884-1,1 +1130,20203-1,1 +1130,20204-1,1 +1130,20205-1,1 +1131,8762-1,1 +1131,8763-1,1 +1159,71000-1,1 +1159,71000-10,1 +1159,71000-11,1 +1159,71000-12,1 +1159,71000-13,1 +1159,71000-14,1 +1159,71000-15,1 +1159,71000-16,1 +1159,71000-2,1 +1159,71000-3,1 +1159,71000-4,1 +1159,71000-5,1 +1159,71000-6,1 +1159,71000-7,1 +1159,71000-8,1 +1159,71000-9,1 +1203,5928-1,1 +1203,5938-1,1 +1203,5988-1,1 +1205,7239-1,1 +1205,7733-1,1 +1238,6800-1,1 +1238,6818-1,1 +1238,6836-1,1 +1255,8621-1,1 +1255,8622-1,1 +1255,8623-1,1 +1268,6837-1,1 +1268,6905-1,1 +1269,8615-1,1 +1269,8617-1,1 +1269,8619-1,1 +1289,8593-1,1 +1289,8596-1,1 +1315,3740-1,1 +1315,3746-1,1 +1317,3740-1,1 +1317,3742-1,1 +1317,3745-1,1 +1323,6239-1,1 +1323,6240-1,1 +1323,6241-1,1 +1323,6242-1,1 +1323,6243-1,1 +1323,8396-1,1 +1323,8397-1,1 +1334,850842-1,1 +1334,850849-1,1 +1334,850850-1,1 +1334,850851-1,1 +1334,850949-1,1 +1334,850950-1,1 +1347,8202-1,2 +1347,8213-1,1 +1347,8226-1,1 +1347,8248-1,1 +1371,6611-1,1 +1371,6623-1,1 +1371,6624-1,1 +1373,1294-1,1 +1373,1295-1,1 +1373,1296-1,1 +1373,1297-1,1 +1401,7235-1,1 +1401,7236-1,1 +1401,7238-1,1 +1401,7241-1,1 +1418,5613-1,1 +1418,7239-1,1 +1418,7241-1,1 +1418,7906-1,1 +1418,7942-1,1 +1418,7944-1,1 +1418,7945-1,1 +1421,7869-1,1 +1421,7913-1,1 +1421,7914-1,1 +1438,8148-1,1 +1438,8149-1,1 +1438,8150-1,1 +1438,8151-1,1 +1621,8573-1,1 +1621,8574-1,1 +1634,4709-1,1 +1634,4729-1,1 +1634,4730-1,1 +1645,1958-1,1 +1645,1959-1,1 +1645,1969-1,1 +1645,1970-1,1 +1645,1971-1,1 +1649,4436-1,1 +1649,4437-1,1 +1680,8358-1,1 +1680,8359-1,1 +1680,8360-1,1 +1716,1517-1,1 +1716,1518-1,1 +1726,4200-1,1 +1726,4201-1,1 +1726,4202-1,1 +1726,4203-1,1 +1726,4204-1,1 +1732,7213-1,1 +1732,7241-1,1 +1732,7942-1,1 +1739,6807-1,1 +1739,6822-1,1 +1739,6823-1,1 +1765,4600-1,1 +1765,4604-1,1 +1765,4606-1,1 +1765,4609-1,1 +1791,7418-1,1 +1795,8560-1,1 +1795,8561-1,1 +1795,8562-1,1 +1795,8563-1,1 +1795,8564-1,1 +1795,8565-1,1 +1795,8569-1,2 +1888,4886-1,1 +1888,7280-1,1 +1888,7281-1,1 +1899,60063-10,1 +1899,60063-11,1 +1899,60063-12,1 +1899,60063-13,1 +1899,60063-14,1 +1899,60063-15,1 +1899,60063-16,1 +1899,60063-17,1 +1899,60063-18,1 +1899,60063-19,1 +1899,60063-2,1 +1899,60063-20,1 +1899,60063-21,1 +1899,60063-22,1 +1899,60063-23,1 +1899,60063-24,1 +1899,60063-25,1 +1899,60063-3,1 +1899,60063-4,1 +1899,60063-5,1 +1899,60063-6,1 +1899,60063-7,1 +1899,60063-8,1 +1899,60063-9,1 +1936,3350-1,1 +1936,3351-1,1 +1989,8827-1,1 +1989,8827-10,1 +1989,8827-11,1 +1989,8827-12,1 +1989,8827-13,1 +1989,8827-14,1 +1989,8827-15,1 +1989,8827-16,1 +1989,8827-2,1 +1989,8827-3,1 +1989,8827-4,1 +1989,8827-5,1 +1989,8827-6,1 +1989,8827-7,1 +1989,8827-8,1 +1989,8827-9,1 +2009,8354-1,1 +2009,8355-1,1 +2054,3741-1,1 +2054,3742-1,1 +2054,3743-1,1 +2103,7895-1,3 +2103,7896-1,3 +2114,9700-1,1 +2114,9750-1,1 +2114,9767-1,1 +2216,6016-1,1 +2216,6041-1,1 +2239,1374-1,1 +2239,1376-1,1 +2239,4850-1,1 +2239,4851-1,1 +2239,4852-1,1 +2258,8916-1,1 +2258,8917-1,1 +2258,8918-1,1 +2258,8919-1,1 +2258,8920-1,1 +2258,8921-1,1 +2270,3740-1,1 +2270,3742-1,1 +2270,3744-1,1 +2364,8130-1,1 +2364,8131-1,1 +2364,8132-1,1 +2364,8133-1,1 +2382,10127-1,2 +2382,3544-1,1 +2427,8587-1,1 +2427,8588-1,1 +2427,8589-1,1 +2427,8590-1,1 +2427,8591-1,1 +2427,8592-1,1 +2445,8512-1,1 +2445,8514-1,1 +2456,3800-1,1 +2456,3801-1,1 +2456,3804-1,1 +2481,4853-1,1 +2481,4857-1,1 +2488,10131-1,1 +2488,4502-1,1 +2488,4504-1,1 +2514,4443-1,1 +2514,4444-1,1 +2514,4445-1,1 +2514,4446-1,1 +2514,4447-1,1 +2514,4448-1,1 +2514,4449-1,1 +2514,4450-1,1 +2514,4451-1,1 +2514,4452-1,1 +2514,4453-1,1 +2514,4454-1,1 +2514,4455-1,1 +2514,4456-1,1 +2514,4457-1,1 +2514,4458-1,1 +2514,4459-1,1 +2514,4460-1,1 +2514,4461-1,1 +2514,4462-1,1 +2514,4463-1,1 +2514,4464-1,1 +2514,4465-1,1 +2514,4466-1,1 +2514,4467-1,1 +2514,4468-1,1 +2514,4469-1,1 +2514,4470-1,1 +2514,4471-1,1 +2514,4472-1,1 +2544,41548-1,1 +2544,41549-1,1 +2544,41550-1,1 +2559,7235-2,1 +2559,7236-2,1 +2559,7245-2,1 +2559,7741-1,1 +2577,4695-1,1 +2577,4755-1,1 +2584,75056-10,1 +2584,75056-11,1 +2584,75056-12,1 +2584,75056-13,1 +2584,75056-14,1 +2584,75056-15,1 +2584,75056-16,1 +2584,75056-17,1 +2584,75056-18,1 +2584,75056-19,1 +2584,75056-2,1 +2584,75056-20,1 +2584,75056-21,1 +2584,75056-22,1 +2584,75056-23,1 +2584,75056-24,1 +2584,75056-25,1 +2584,75056-3,1 +2584,75056-4,1 +2584,75056-5,1 +2584,75056-6,1 +2584,75056-7,1 +2584,75056-8,1 +2584,75056-9,1 +2636,7009-1,1 +2636,7029-1,1 +2636,7090-1,1 +2636,7091-1,1 +2636,7092-1,1 +2636,7093-1,1 +2636,7094-1,1 +2643,4208-1,1 +2643,4209-1,1 +2643,4427-1,1 +2648,7741-1,1 +2648,7743-1,1 +2648,7744-1,1 +2677,4512-1,1 +2677,4514-1,1 +2723,7245-2,1 +2723,7741-1,1 +2725,60041-1,1 +2725,60042-1,1 +2725,60046-1,1 +2738,4511-1,1 +2738,4513-1,1 +2793,8585-1,1 +2793,8586-1,1 +2814,2995-1,1 +2814,2996-1,1 +2836,6604-1,1 +2836,6621-1,1 +2836,6630-1,1 +2849,6325-1,1 +2849,6328-1,1 +2849,6422-1,1 +2849,6486-1,1 +2849,6564-1,1 +2849,6565-1,1 +2883,3316-10,1 +2883,3316-11,1 +2883,3316-12,1 +2883,3316-13,1 +2883,3316-14,1 +2883,3316-15,1 +2883,3316-16,1 +2883,3316-17,1 +2883,3316-18,1 +2883,3316-19,1 +2883,3316-2,1 +2883,3316-20,1 +2883,3316-21,1 +2883,3316-22,1 +2883,3316-23,1 +2883,3316-24,1 +2883,3316-25,1 +2883,3316-3,1 +2883,3316-4,1 +2883,3316-5,1 +2883,3316-6,1 +2883,3316-7,1 +2883,3316-8,1 +2883,3316-9,1 +2892,8984-1,1 +2892,8985-1,1 +2892,8986-1,1 +2892,8987-1,1 +2892,8988-1,1 +2892,8989-1,1 +2898,3070-1,1 +2898,3071-1,1 +2898,3072-1,1 +2898,3073-1,1 +2915,4705-1,1 +2915,4709-1,1 +2915,4730-1,1 +2916,6801-1,1 +2916,6822-1,1 +2916,6823-1,1 +2917,4524-10,1 +2917,4524-11,1 +2917,4524-12,1 +2917,4524-13,1 +2917,4524-14,1 +2917,4524-15,1 +2917,4524-16,1 +2917,4524-17,1 +2917,4524-18,1 +2917,4524-19,1 +2917,4524-2,1 +2917,4524-20,1 +2917,4524-21,1 +2917,4524-22,1 +2917,4524-23,1 +2917,4524-24,1 +2917,4524-25,1 +2917,4524-3,1 +2917,4524-4,1 +2917,4524-5,1 +2917,4524-6,1 +2917,4524-7,1 +2917,4524-8,1 +2917,4524-9,1 +2943,4484-1,1 +2943,4485-1,1 +2943,4486-1,1 +2943,4487-1,1 +2948,1431-1,1 +2948,1432-1,1 +2948,1433-1,1 +2948,1434-1,1 +2989,20201-1,1 +2989,20202-1,1 +3044,2065-1,1 +3044,2067-1,1 +3053,7242-1,1 +3053,7246-1,1 +3053,7248-1,1 +3092,6008-1,1 +3092,6027-1,1 +3092,6037-1,1 +3109,7238-1,1 +3109,7239-1,1 +3109,7240-1,1 +3109,7241-1,1 +3110,9497-1,1 +3110,9500-1,1 +3162,41040-10,1 +3162,41040-11,1 +3162,41040-12,1 +3162,41040-13,1 +3162,41040-14,1 +3162,41040-15,1 +3162,41040-16,1 +3162,41040-17,1 +3162,41040-18,1 +3162,41040-19,1 +3162,41040-2,1 +3162,41040-20,1 +3162,41040-21,1 +3162,41040-22,1 +3162,41040-23,1 +3162,41040-24,1 +3162,41040-25,1 +3162,41040-3,1 +3162,41040-4,1 +3162,41040-5,1 +3162,41040-6,1 +3162,41040-7,1 +3162,41040-8,1 +3162,41040-9,1 +3260,3740-1,1 +3260,3744-1,1 +3271,71007-1,1 +3271,71007-10,1 +3271,71007-11,1 +3271,71007-12,1 +3271,71007-13,1 +3271,71007-14,1 +3271,71007-15,1 +3271,71007-16,1 +3271,71007-2,1 +3271,71007-3,1 +3271,71007-4,1 +3271,71007-5,1 +3271,71007-6,1 +3271,71007-7,1 +3271,71007-8,1 +3271,71007-9,1 +3284,8562-1,1 +3284,8564-1,1 +3284,8565-1,1 +3292,8573-1,1 +3292,8574-1,1 +3292,8575-1,1 +3292,8576-1,1 +3292,8577-1,1 +3292,8578-1,1 +3309,8831-0,60 +3313,7242-1,1 +3313,7243-1,1 +3313,7248-1,1 +3313,7249-1,1 +3339,7245-1,1 +3339,7732-1,1 +3339,8401-1,1 +3343,8601-1,1 +3343,8603-1,1 +3344,9461-1,1 +3344,9462-1,1 +3344,9463-1,1 +3344,9464-1,1 +3344,9466-1,1 +3344,9467-1,1 +3344,9468-1,1 +3351,8909-1,1 +3351,8909-2,1 +3351,8909-3,1 +3351,8909-4,1 +3351,8909-5,1 +3351,8909-6,1 +3351,8909-7,1 +3351,8909-8,1 +3351,8909-9,1 +3365,fruit1-1,1 +3365,fruit2-1,1 +3365,fruit3-1,1 +3365,fruit4-1,1 +3365,fruit5-1,1 +3365,fruit6-1,1 +3365,fruit7-1,1 +3365,fruit8-1,1 +3367,1413-1,1 +3367,1414-1,1 +3367,1415-1,1 +3367,1416-1,1 +3392,8909-0,60 +3422,3404-1,1 +3435,8672-1,1 +3435,8673-1,1 +3467,3340-1,1 +3467,3341-1,1 +3467,3342-1,1 +3467,3343-1,1 +3550,8381-1,1 +3550,8382-1,1 +3574,00-2,1 +3574,00-3,1 +3574,00-4,1 +3586,8566-1,1 +3586,8567-1,1 +3586,8568-1,1 +3586,8570-1,1 +3586,8571-1,1 +3586,8572-1,1 +3621,70410-1,1 +3621,70412-1,1 +3690,7957-1,1 +3690,7961-1,1 +3691,9440-1,1 +3691,9441-1,1 +3691,9444-1,1 +3694,3741-1,1 +3694,3742-1,1 +3694,3747-1,1 +3699,8772-1,1 +3699,8774-1,1 +3705,3804-1,1 +3705,9738-1,1 +3705,9916-1,1 +3755,1528-1,1 +3755,1572-1,1 +3764,7207-1,1 +3764,7213-1,1 +3764,7241-1,1 +3764,7942-1,1 +3792,7121-1,1 +3792,7161-1,1 +3941,75000-1,1 +3941,75003-1,1 +3941,75014-1,1 +3963,8736-1,1 +3963,8737-1,1 +3963,8738-1,1 +3963,8739-1,1 +3963,8740-1,1 +3963,8741-1,1 +3989,8587-1,1 +3989,8591-1,1 +4041,41551-1,1 +4041,41552-1,1 +4041,41553-1,1 +4051,75023-10,1 +4051,75023-11,1 +4051,75023-12,1 +4051,75023-13,1 +4051,75023-14,1 +4051,75023-15,1 +4051,75023-16,1 +4051,75023-17,1 +4051,75023-18,1 +4051,75023-19,1 +4051,75023-2,1 +4051,75023-20,1 +4051,75023-21,1 +4051,75023-22,1 +4051,75023-23,1 +4051,75023-24,1 +4051,75023-25,1 +4051,75023-3,1 +4051,75023-4,1 +4051,75023-5,1 +4051,75023-6,1 +4051,75023-7,1 +4051,75023-8,1 +4051,75023-9,1 +4083,7142-1,1 +4083,7152-1,1 +4133,8804-0,60 +4187,7890-1,1 +4187,7892-1,1 +4187,7902-1,1 +4187,7903-1,1 +4261,7238-1,1 +4261,7239-1,2 +4261,7942-1,1 +4261,7944-1,1 +4261,7945-1,1 +4278,7952-10,1 +4278,7952-11,1 +4278,7952-12,1 +4278,7952-13,1 +4278,7952-14,1 +4278,7952-15,1 +4278,7952-16,1 +4278,7952-17,1 +4278,7952-18,1 +4278,7952-19,1 +4278,7952-2,1 +4278,7952-20,1 +4278,7952-21,1 +4278,7952-22,1 +4278,7952-23,1 +4278,7952-24,1 +4278,7952-25,1 +4278,7952-3,1 +4278,7952-4,1 +4278,7952-5,1 +4278,7952-6,1 +4278,7952-7,1 +4278,7952-8,1 +4278,7952-9,1 +4288,60004-1,1 +4288,850618-1,1 +4365,4335-1,1 +4365,4346-1,1 +4365,4347-1,1 +4365,4348-1,1 +4365,4349-1,1 +4394,1974-2,1 +4394,1974-3,1 +4394,1974-4,1 +4430,7235-1,1 +4430,7236-1,1 +4430,7238-1,1 +4430,7241-1,1 +4467,6824-1,1 +4467,886-1,1 +4467,889-1,1 +4536,1421-1,1 +4536,1422-1,1 +4536,1423-1,1 +4536,1424-1,1 +4553,8978-1,1 +4553,8979-1,1 +4553,8980-1,1 +4553,8981-1,1 +4553,8982-1,1 +4553,8983-1,1 +4570,4210-1,1 +4570,7736-1,1 +4570,7737-1,1 +4570,7738-1,1 +4577,8727-1,1 +4577,8728-1,1 +4643,6407-1,1 +4643,6554-1,1 +4643,6564-1,1 +4666,71008-0,60 +4718,10081-1,1 +4718,10082-1,1 +4718,10083-1,1 +4719,6900-1,1 +4739,2143-1,1 +4739,2145-1,1 +4771,7630-1,1 +4771,7633-1,1 +4771,7990-1,1 +4806,3740-1,1 +4806,3745-1,1 +4832,8782-1,1 +4832,8786-1,1 +4863,5515-1,1 +4863,5537-1,1 +4874,8581-1,1 +4874,8582-1,1 +4874,8583-1,1 +4874,8584-1,1 +4874,8585-1,1 +4874,8586-1,1 +4918,8779-1,1 +4941,75037-1,1 +4941,75038-1,1 +4941,75045-1,1 +4969,7043-1,1 +4969,7238-1,1 +4969,7239-1,1 +4969,7240-1,1 +4969,7241-1,1 +4971,41044-1,1 +4971,41045-1,1 +4971,41046-1,1 +4987,8684-1,1 +4987,8684-10,1 +4987,8684-11,1 +4987,8684-12,1 +4987,8684-13,1 +4987,8684-14,1 +4987,8684-15,1 +4987,8684-16,1 +4987,8684-2,1 +4987,8684-3,1 +4987,8684-4,1 +4987,8684-5,1 +4987,8684-6,1 +4987,8684-7,1 +4987,8684-8,1 +4987,8684-9,1 +4993,6814-1,1 +4993,6879-1,1 +4993,6898-1,1 +5039,7422-1,1 +5039,7423-1,1 +5039,7424-1,1 +5093,6271-1,1 +5097,1794-1,1 +5097,1795-1,1 +5110,5610-1,1 +5110,5612-1,1 +5110,5613-1,1 +5110,7236-1,1 +5110,7630-1,1 +5110,7942-1,1 +5114,7690-1,1 +5114,7691-1,1 +5114,7692-1,1 +5114,7693-1,1 +5114,7694-1,1 +5114,7695-1,1 +5114,7697-1,1 +5114,7699-1,1 +5133,71004-1,1 +5133,71004-10,1 +5133,71004-11,1 +5133,71004-12,1 +5133,71004-13,1 +5133,71004-14,1 +5133,71004-15,1 +5133,71004-16,1 +5133,71004-2,1 +5133,71004-3,1 +5133,71004-4,1 +5133,71004-5,1 +5133,71004-6,1 +5133,71004-7,1 +5133,71004-8,1 +5133,71004-9,1 +5137,8614-1,1 +5137,8615-1,1 +5137,8616-1,1 +5137,8617-1,1 +5137,8618-1,1 +5137,8619-1,1 +5183,8910-1,1 +5183,8911-1,1 +5183,8912-1,1 +5183,8913-1,1 +5183,8914-1,1 +5183,8915-1,1 +5195,3740-1,1 +5195,3742-1,1 +5195,3743-1,1 +5217,2854-1,1 +5217,8202-1,1 +5248,8100-1,1 +5248,8101-1,1 +5248,8102-1,1 +5248,8103-1,1 +5248,8104-1,1 +5248,8105-1,1 +5358,10158-1,2 +5358,4511-1,1 +5358,4515-1,1 +5366,71001-1,1 +5366,71001-10,1 +5366,71001-11,1 +5366,71001-12,1 +5366,71001-13,1 +5366,71001-14,1 +5366,71001-15,1 +5366,71001-16,1 +5366,71001-2,1 +5366,71001-3,1 +5366,71001-4,1 +5366,71001-5,1 +5366,71001-6,1 +5366,71001-7,1 +5366,71001-8,1 +5366,71001-9,1 +5386,8831-1,1 +5386,8831-10,1 +5386,8831-11,1 +5386,8831-12,1 +5386,8831-13,1 +5386,8831-14,1 +5386,8831-15,1 +5386,8831-16,1 +5386,8831-2,1 +5386,8831-3,1 +5386,8831-4,1 +5386,8831-5,1 +5386,8831-6,1 +5386,8831-7,1 +5386,8831-8,1 +5386,8831-9,1 +5404,7958-1,1 +5432,7410-1,1 +5432,7411-1,1 +5432,7414-1,1 +5432,7418-1,1 +5491,4512-1,1 +5491,4514-1,1 +5491,4515-1,1 +5491,4520-1,1 +5500,7308-1,1 +5500,7309-1,1 +5500,7311-1,1 +5553,8803-0,60 +5554,8804-1,1 +5554,8804-10,1 +5554,8804-11,1 +5554,8804-12,1 +5554,8804-13,1 +5554,8804-14,1 +5554,8804-15,1 +5554,8804-16,1 +5554,8804-2,1 +5554,8804-3,1 +5554,8804-4,1 +5554,8804-5,1 +5554,8804-6,1 +5554,8804-7,1 +5554,8804-8,1 +5554,8804-9,1 +5595,3344-1,1 +5595,3345-1,1 +5595,3346-1,1 +5600,75899-1,1 +5600,75908-1,1 +5600,75909-1,1 +5600,75910-1,1 +5645,8742-1,1 +5645,8743-1,1 +5645,8744-1,1 +5645,8745-1,1 +5645,8746-1,1 +5645,8747-1,1 +5675,1196-1,1 +5675,1197-1,1 +5675,1198-1,1 +5675,1199-1,1 +5740,8380-1,1 +5740,8384-1,1 +5855,7509-1,1 +5857,7208-1,1 +5857,7239-1,1 +5857,7241-1,1 +5857,7942-1,1 +5904,3177-1,1 +5904,3179-1,1 +5904,8401-1,1 +5904,8402-1,1 +5955,10049-1,1 +5955,10072-1,1 +5955,10074-1,1 +5955,10076-1,1 +5955,3804-1,1 +5955,5225-1,1 +5955,9738-1,1 +5955,9916-1,1 +5970,8929-1,1 +5970,8930-1,1 +5970,8931-1,1 +5970,8932-1,1 +5990,8106-1,1 +5990,8107-1,1 +5990,8108-1,1 +6034,7514-1,1 +6050,10132-1,1 +6050,4515-1,1 +6050,4520-1,1 +6066,4431-1,1 +6066,4432-1,1 +6066,4433-1,1 +6066,4435-1,1 +6086,4924-10,1 +6086,4924-11,1 +6086,4924-12,1 +6086,4924-13,1 +6086,4924-14,1 +6086,4924-15,1 +6086,4924-16,1 +6086,4924-17,1 +6086,4924-18,1 +6086,4924-19,1 +6086,4924-2,1 +6086,4924-20,1 +6086,4924-21,1 +6086,4924-22,1 +6086,4924-23,1 +6086,4924-24,1 +6086,4924-25,1 +6086,4924-3,1 +6086,4924-4,1 +6086,4924-5,1 +6086,4924-6,1 +6086,4924-7,1 +6086,4924-8,1 +6086,4924-9,1 +6093,1547-1,1 +6093,1596-1,1 +6093,1624-1,1 +6117,8645-1,1 +6117,8646-1,1 +6174,7979-10,1 +6174,7979-11,1 +6174,7979-12,1 +6174,7979-13,1 +6174,7979-14,1 +6174,7979-15,1 +6174,7979-16,1 +6174,7979-17,1 +6174,7979-18,1 +6174,7979-19,1 +6174,7979-2,1 +6174,7979-20,1 +6174,7979-21,1 +6174,7979-22,1 +6174,7979-23,1 +6174,7979-24,1 +6174,7979-25,1 +6174,7979-3,1 +6174,7979-4,1 +6174,7979-5,1 +6174,7979-6,1 +6174,7979-7,1 +6174,7979-8,1 +6174,7979-9,1 +6181,8008-1,1 +6181,8010-1,1 +6194,8688-1,1 +6194,8689-1,1 +6194,8941-1,1 +6194,8942-1,1 +6205,7741-1,1 +6205,7890-1,1 +6205,7942-1,1 +6241,9798-1,1 +6241,9833-2,1 +6253,1278-1,1 +6253,1279-1,1 +6253,1280-1,1 +6253,1281-1,1 +6276,8047-1,1 +6276,8065-1,1 +6276,8067-1,1 +6276,8069-1,1 +6282,7238-1,1 +6282,7906-1,1 +6282,7942-1,1 +6282,7944-1,1 +6282,7945-1,1 +6296,7236-2,1 +6296,7741-1,1 +6296,7942-1,1 +6319,2063-1,1 +6319,2065-1,1 +6319,2067-1,1 +6319,2068-1,1 +6319,2141-1,1 +6319,2142-1,1 +6330,4515-1,3 +6330,4520-1,2 +6330,4531-1,2 +6331,8721-1,1 +6331,8722-1,1 +6331,8723-1,1 +6331,8724-1,1 +6331,8725-1,1 +6331,8726-1,1 +6336,851097,1 +6336,8758-1,1 +6371,4479-1,1 +6371,7146-1,1 +6416,20206-1,1 +6416,20207-1,1 +6416,20208-1,1 +6423,8560-1,1 +6423,8561-1,1 +6423,8564-1,1 +6424,8380-1,1 +6424,8383-1,1 +6424,8384-1,1 +6424,8385-1,1 +6426,8801-1,1 +6426,8802-1,1 +6447,8925-1,1 +6447,8926-1,1 +6447,8927-1,1 +6453,3066-1,1 +6453,3067-1,1 +6453,3068-1,1 +6453,3069-1,1 +6486,8791-1,1 +6486,8795-1,1 +6514,7413-1,1 +6514,7416-1,1 +6514,7419-1,1 +6514,7420-1,1 +6530,4436-1,1 +6530,4437-1,1 +6530,4439-1,1 +6530,4441-1,1 +6544,4721-1,1 +6544,4726-1,1 +6544,4727-1,1 +6544,4731-1,1 +6544,4735-1,1 +6544,626-1,2 +6572,7115-1,1 +6572,7124-1,1 +6572,7141-1,1 +6702,7904-10,1 +6702,7904-11,1 +6702,7904-12,1 +6702,7904-13,1 +6702,7904-14,1 +6702,7904-15,1 +6702,7904-16,1 +6702,7904-17,1 +6702,7904-18,1 +6702,7904-19,1 +6702,7904-2,1 +6702,7904-20,1 +6702,7904-21,1 +6702,7904-22,1 +6702,7904-23,1 +6702,7904-24,1 +6702,7904-25,1 +6702,7904-3,1 +6702,7904-4,1 +6702,7904-5,1 +6702,7904-6,1 +6702,7904-7,1 +6702,7904-8,1 +6702,7904-9,1 +6733,5612-1,1 +6733,7245-1,1 +6733,7741-1,1 +6733,7743-1,1 +6733,7744-1,1 +6791,70168-1,1 +6791,70170-1,1 +6795,7913-1,1 +6795,7914-1,1 +6795,8085-1,1 +6839,7235-2,1 +6839,7245-2,1 +6839,7743-1,1 +6848,4169306a-1,1 +6848,4169306b-1,1 +6848,4169306c-1,1 +6871,41527-1,1 +6871,41528-1,1 +6871,41529-1,1 +6871,41530-1,1 +6871,41531-1,1 +6871,41532-1,1 +6871,41533-1,1 +6871,41534-1,1 +6871,41535-1,1 +6877,7313-1,1 +6877,7314-1,1 +6877,7315-1,1 +6877,7317-1,1 +6990,5859-1,1 +6990,5861-1,1 +6990,5862-1,1 +7051,3390-1,1 +7142,3409-1,1 +7151,3177-1,1 +7151,7241-1,1 +7151,7634-1,1 +7151,7638-1,1 +7187,3535-1,1 +7187,3536-1,1 +7187,3538-1,1 +7201,7508-1,1 +7209,7153-1,1 +7261,4701-1,1 +7261,4702-1,1 +7261,4704-1,1 +7261,4705-1,1 +7261,4706-1,1 +7261,4709-1,1 +7261,4711-1,1 +7277,41530-1,1 +7277,41531-1,1 +7277,41532-1,1 +7286,7422-1,1 +7286,7423-1,1 +7286,7424-1,1 +7348,3061-1,1 +7348,3183-1,1 +7348,3934-1,1 +7348,3936-1,1 +7363,7324-10,1 +7363,7324-11,1 +7363,7324-12,1 +7363,7324-13,1 +7363,7324-14,1 +7363,7324-15,1 +7363,7324-16,1 +7363,7324-17,1 +7363,7324-18,1 +7363,7324-19,1 +7363,7324-2,1 +7363,7324-20,1 +7363,7324-21,1 +7363,7324-22,1 +7363,7324-23,1 +7363,7324-24,1 +7363,7324-25,1 +7363,7324-3,1 +7363,7324-4,1 +7363,7324-5,1 +7363,7324-6,1 +7363,7324-7,1 +7363,7324-8,1 +7363,7324-9,1 +7391,10194-1,1 +7391,8867-1,1 +7391,8870-1,1 +7391,8878-1,1 +7391,8879-1,1 +7391,8882-1,1 +7391,8884-1,1 +7430,2155-1,1 +7430,2156-1,1 +7430,2157-1,1 +7430,2158-1,1 +7474,10000-1,1 +7474,10039-1,1 +7474,3739-1,1 +7478,8509-1,1 +7478,8510-1,1 +7482,4484-1,1 +7482,4485-1,1 +7482,4486-1,1 +7482,4487-1,1 +7487,3741-1,1 +7487,3742-1,1 +7487,3745-1,1 +7516,3741-1,1 +7516,3746-1,1 +7524,7200-1,1 +7524,7201-1,1 +7524,7203-1,1 +7524,7204-1,1 +7562,9496-1,1 +7562,9516-1,1 +7618,8102-1,1 +7618,8104-1,1 +7670,8601-1,1 +7670,8607-1,1 +7703,7000-1,1 +7703,7001-1,1 +7703,7002-1,1 +7703,7003-1,1 +7707,8587-1,1 +7707,8588-1,1 +7709,8560-1,1 +7709,8561-1,1 +7709,8563-1,1 +7743,6851-1,1 +7743,6861-2,1 +7743,6878-1,1 +7743,6887-1,1 +7745,3187-1,1 +7745,3934-1,1 +7745,3935-1,1 +7766,5620-1,1 +7766,7632-1,1 +7766,7746-1,1 +7766,7990-1,1 +7766,8401-1,1 +7774,6578-1,1 +7774,6586-1,1 +7805,70126-1,1 +7805,70128-1,1 +7805,70129-1,1 +7805,70130-1,1 +7805,70131-1,1 +7850,9509-10,1 +7850,9509-11,1 +7850,9509-12,1 +7850,9509-13,1 +7850,9509-14,1 +7850,9509-15,1 +7850,9509-16,1 +7850,9509-17,1 +7850,9509-18,1 +7850,9509-19,1 +7850,9509-2,1 +7850,9509-20,1 +7850,9509-21,1 +7850,9509-22,1 +7850,9509-23,1 +7850,9509-24,1 +7850,9509-25,1 +7850,9509-3,1 +7850,9509-4,1 +7850,9509-5,1 +7850,9509-6,1 +7850,9509-7,1 +7850,9509-8,1 +7850,9509-9,1 +7874,3431-1,1 +7881,7687-10,1 +7881,7687-11,1 +7881,7687-12,1 +7881,7687-13,1 +7881,7687-14,1 +7881,7687-15,1 +7881,7687-16,1 +7881,7687-17,1 +7881,7687-18,1 +7881,7687-19,1 +7881,7687-2,1 +7881,7687-20,1 +7881,7687-21,1 +7881,7687-22,1 +7881,7687-23,1 +7881,7687-24,1 +7881,7687-25,1 +7881,7687-3,1 +7881,7687-4,1 +7881,7687-5,1 +7881,7687-6,1 +7881,7687-7,1 +7881,7687-8,1 +7881,7687-9,1 +7902,1428-1,1 +7902,1429-1,1 +7902,1430-1,1 +7929,8684-0,60 +7933,3347-1,1 +7933,3348-1,1 +7933,3349-1,1 +7944,7279-1,1 +7944,7285-1,1 +7944,7286-1,1 +7944,7288-1,1 +7944,7741-1,1 +7971,1858-1,1 +7971,6829-1,1 +7971,6836-1,1 +8019,7075-1,1 +8019,7099-1,1 +8025,8563-1,1 +8025,8564-1,1 +8025,8565-1,1 +8071,5920-1,1 +8071,5934-1,1 +8071,5935-1,1 +8091,8603-1,1 +8091,8605-1,1 +8091,8613-1,1 +8140,4024-10,1 +8140,4024-11,1 +8140,4024-12,1 +8140,4024-13,1 +8140,4024-14,1 +8140,4024-15,1 +8140,4024-16,1 +8140,4024-17,1 +8140,4024-18,1 +8140,4024-19,1 +8140,4024-2,1 +8140,4024-20,1 +8140,4024-21,1 +8140,4024-22,1 +8140,4024-23,1 +8140,4024-24,1 +8140,4024-25,1 +8140,4024-3,1 +8140,4024-4,1 +8140,4024-5,1 +8140,4024-6,1 +8140,4024-7,1 +8140,4024-8,1 +8140,4024-9,1 +8159,79015-1,1 +8159,79016-1,1 +8159,79017-1,1 +8159,79018-1,1 +8202,10041-1,1 +8202,1252-1,1 +8202,1254-1,1 +8202,1255-1,1 +8216,4492-1,1 +8216,4494-1,1 +8216,7255-1,1 +8222,5576-1,1 +8226,6290-1,1 +8226,6291-1,1 +8226,6292-1,1 +8285,4488-1,1 +8285,4489-1,1 +8285,4490-1,1 +8285,4491-1,1 +8312,8581-1,1 +8312,8582-1,1 +8331,8770-1,1 +8331,8771-1,1 +8348,7907-10,1 +8348,7907-11,1 +8348,7907-12,1 +8348,7907-13,1 +8348,7907-14,1 +8348,7907-15,1 +8348,7907-16,1 +8348,7907-17,1 +8348,7907-18,1 +8348,7907-19,1 +8348,7907-2,1 +8348,7907-20,1 +8348,7907-21,1 +8348,7907-22,1 +8348,7907-23,1 +8348,7907-24,1 +8348,7907-25,1 +8348,7907-3,1 +8348,7907-4,1 +8348,7907-5,1 +8348,7907-6,1 +8348,7907-7,1 +8348,7907-8,1 +8348,7907-9,1 +8398,7235-2,1 +8398,7279-1,1 +8398,7285-1,1 +8398,7498-1,1 +8401,7749-1,1 +8401,8083-1,1 +8401,8084-1,1 +8425,1282-1,1 +8425,1283-1,1 +8425,1284-1,1 +8425,1285-1,1 +8440,1887-1,1 +8440,1888-1,1 +8440,1889-1,1 +8440,1890-1,1 +8465,8876-1,1 +8471,8607-1,1 +8471,8608-1,1 +8471,8609-1,1 +8471,8610-1,1 +8471,8611-1,1 +8471,8612-1,1 +8491,70000-1,1 +8491,70001-1,1 +8491,70003-1,1 +8501,8601-1,1 +8501,8604-1,1 +8501,8605-1,1 +8558,3741-1,1 +8558,3742-1,1 +8558,3744-1,1 +8585,8293-1,1 +8585,9392-1,1 +8585,9395-1,1 +8646,4526-1,1 +8646,4527-1,1 +8646,4528-1,1 +8734,71009-1,1 +8734,71009-10,1 +8734,71009-11,1 +8734,71009-12,1 +8734,71009-13,1 +8734,71009-14,1 +8734,71009-15,1 +8734,71009-16,1 +8734,71009-2,1 +8734,71009-3,1 +8734,71009-4,1 +8734,71009-5,1 +8734,71009-6,1 +8734,71009-7,1 +8734,71009-8,1 +8734,71009-9,1 +8749,8511-1,1 +8749,8513-1,1 +8759,8014-1,1 +8759,8015-1,1 +8759,8091-1,1 +8782,71005-0,60 +8820,7553-10,1 +8820,7553-11,1 +8820,7553-12,1 +8820,7553-13,1 +8820,7553-14,1 +8820,7553-15,1 +8820,7553-16,1 +8820,7553-17,1 +8820,7553-18,1 +8820,7553-19,1 +8820,7553-2,1 +8820,7553-20,1 +8820,7553-21,1 +8820,7553-22,1 +8820,7553-23,1 +8820,7553-24,1 +8820,7553-25,1 +8820,7553-3,1 +8820,7553-4,1 +8820,7553-5,1 +8820,7553-6,1 +8820,7553-7,1 +8820,7553-8,1 +8820,7553-9,1 +8837,3740-1,1 +8837,3742-1,1 +8837,3746-1,1 +8849,TRUTIE-1,1 +8849,TRUXWING-1,1 +8871,8900-1,1 +8871,8902-1,1 +8871,8905-1,1 +8885,4346-1,1 +8885,4347-1,1 +8885,4348-1,1 +8885,4349-1,1 +8909,8587-1,1 +8909,8590-1,1 +8909,8591-1,1 +8918,1062-1,1 +8918,1064-1,1 +8918,k1062b,1 +8918,pk1062,1 +8950,6605-1,1 +8950,6621-1,1 +8950,6628-1,1 +8980,8772-1,1 +8980,8783-1,1 +8997,10173-1,1 +8997,4548-1,1 +9033,71008-1,1 +9033,71008-10,1 +9033,71008-11,1 +9033,71008-12,1 +9033,71008-13,1 +9033,71008-14,1 +9033,71008-15,1 +9033,71008-16,1 +9033,71008-2,1 +9033,71008-3,1 +9033,71008-4,1 +9033,71008-5,1 +9033,71008-6,1 +9033,71008-7,1 +9033,71008-8,1 +9033,71008-9,1 +9094,8566-1,1 +9094,8567-1,1 +9123,5856-1,1 +9123,5857-1,1 +9123,5858-1,1 +9132,1290-1,1 +9132,1291-1,1 +9132,1292-1,1 +9132,1293-1,1 +9149,7104-1,1 +9149,7144-1,1 +9178,7236-1,1 +9178,7238-1,1 +9178,7890-1,1 +9178,7944-1,1 +9210,6503-1,1 +9210,6643-1,1 +9243,11905-1,1 +9253,9249-1,1 +9253,9251-1,1 +9283,9488-1,1 +9283,9489-1,1 +9283,9495-1,1 +9329,60000-1,1 +9329,60001-1,1 +9329,60002-1,1 +9381,8783-1,1 +9381,8786-1,1 +9386,41533-1,1 +9386,41534-1,1 +9386,41535-1,1 +9406,7499-1,1 +9406,7895-1,1 +9406,7937-1,1 +9406,7939-1,1 +9412,7103-1,1 +9412,7113-1,1 +9426,7638-1,1 +9426,7641-1,1 +9426,7642-1,1 +9426,7686-1,1 +9426,8402-1,1 +9471,7124-1,1 +9471,7190-1,1 +9471,7200-1,1 +9502,7891-1,1 +9502,7894-1,1 +9502,7901-1,1 +9502,7903-1,1 +9540,3219-1,1 +9540,4492-1,1 +9540,4493-1,1 +9540,4494-1,1 +9540,4495-1,1 +9599,7724-10,1 +9599,7724-11,1 +9599,7724-12,1 +9599,7724-13,1 +9599,7724-14,1 +9599,7724-15,1 +9599,7724-16,1 +9599,7724-17,1 +9599,7724-18,1 +9599,7724-19,1 +9599,7724-2,1 +9599,7724-20,1 +9599,7724-21,1 +9599,7724-22,1 +9599,7724-23,1 +9599,7724-24,1 +9599,7724-25,1 +9599,7724-3,1 +9599,7724-4,1 +9599,7724-5,1 +9599,7724-6,1 +9599,7724-7,1 +9599,7724-8,1 +9599,7724-9,1 +9620,8587-1,1 +9620,8590-1,1 +9620,8591-1,1 +9624,71010-0,20 +9657,1843-2,1 +9657,1843-3,1 +9665,8206-1,1 +9665,8426-1,1 +9665,8487-1,1 +9678,8610-1,1 +9678,8612-1,1 +9678,8615-1,1 +9678,8617-1,1 +9678,8619-1,1 +9691,6282-1,1 +9691,6283-1,1 +9700,8709-1,1 +9700,8958-1,1 +9700,8959-1,1 +9708,6212-1,1 +9709,2259-1,1 +9709,2260-1,1 +9709,2506-1,1 +9728,3740-1,1 +9728,3743-1,1 +9730,20203-1,1 +9730,20204-1,1 +9730,20205-1,1 +9749,5994-1,1 +9749,5999-1,1 +9750,10075-1,1 +9750,1374-1,1 +9750,1376-1,1 +9765,71004-0,60 +9830,4097-1,1 +9830,4099-1,1 +9905,8833-1,1 +9905,8833-10,1 +9905,8833-11,1 +9905,8833-12,1 +9905,8833-13,1 +9905,8833-14,1 +9905,8833-15,1 +9905,8833-16,1 +9905,8833-2,1 +9905,8833-3,1 +9905,8833-4,1 +9905,8833-5,1 +9905,8833-6,1 +9905,8833-7,1 +9905,8833-8,1 +9905,8833-9,1 +9925,3748-1,1 +9925,4548-1,1 +9925,5300-1,1 +9926,41016-10,1 +9926,41016-11,1 +9926,41016-12,1 +9926,41016-13,1 +9926,41016-14,1 +9926,41016-15,1 +9926,41016-16,1 +9926,41016-17,1 +9926,41016-18,1 +9926,41016-19,1 +9926,41016-2,1 +9926,41016-20,1 +9926,41016-21,1 +9926,41016-22,1 +9926,41016-23,1 +9926,41016-24,1 +9926,41016-25,1 +9926,41016-3,1 +9926,41016-4,1 +9926,41016-5,1 +9926,41016-6,1 +9926,41016-7,1 +9926,41016-8,1 +9926,41016-9,1 +9943,4865-1,1 +9943,4866-1,1 +9943,4867-1,1 +9955,4182-1,1 +9955,4183-1,1 +9960,71005-1,1 +9960,71005-10,1 +9960,71005-11,1 +9960,71005-12,1 +9960,71005-13,1 +9960,71005-14,1 +9960,71005-15,1 +9960,71005-16,1 +9960,71005-2,1 +9960,71005-3,1 +9960,71005-4,1 +9960,71005-5,1 +9960,71005-6,1 +9960,71005-7,1 +9960,71005-8,1 +9960,71005-9,1 +10024,7600-10,1 +10024,7600-11,1 +10024,7600-12,1 +10024,7600-13,1 +10024,7600-14,1 +10024,7600-15,1 +10024,7600-16,1 +10024,7600-17,1 +10024,7600-18,1 +10024,7600-19,1 +10024,7600-2,1 +10024,7600-20,1 +10024,7600-21,1 +10024,7600-22,1 +10024,7600-23,1 +10024,7600-24,1 +10024,7600-25,1 +10024,7600-3,1 +10024,7600-4,1 +10024,7600-5,1 +10024,7600-6,1 +10024,7600-7,1 +10024,7600-8,1 +10024,7600-9,1 +10028,7235-2,1 +10028,7236-2,1 +10028,7741-1,1 +10028,7890-1,1 +10028,7942-1,1 +10028,7945-1,1 +10043,7242-1,1 +10043,7733-1,1 +10043,7990-1,1 +10043,7991-1,1 +10052,71001-0,60 +10089,4056-1,1 +10089,4057-1,1 +10089,4058-1,1 +10089,4059-1,1 +10089,4060-1,1 +10089,4061-1,1 +10089,4062-1,1 +10089,4063-1,1 +10089,4064-1,1 +10089,4065-1,1 +10089,4066-1,1 +10089,4067-1,1 +10089,4068-1,1 +10089,4069-1,1 +10089,4070-1,1 +10089,4071-1,1 +10089,4072-1,1 +10089,4073-1,1 +10089,4074-1,1 +10089,4075-1,1 +10089,4076-1,1 +10089,4077-1,1 +10089,4078-1,1 +10089,4079-1,1 +10158,10020-1,1 +10158,10022-1,1 +10158,10025-1,1 +10158,4515-1,1 +10158,4520-1,2 +10158,4548-1,1 +10180,7285-1,1 +10180,7741-1,1 +10227,1475-1,1 +10227,6526-1,1 +10227,6679-1,1 +10229,4695-1,1 +10229,4750-1,1 +10229,4751-1,1 +10235,7507-1,1 +10259,9471-1,1 +10259,9474-1,1 +10273,3302-1,1 +10273,3303-1,1 +10273,3305-1,2 +10273,3306-1,1 +10273,3317-1,2 +10318,4601-1,1 +10318,4605-1,1 +10318,4609-1,1 +10391,6336-1,1 +10391,6516-1,1 +10391,6614-1,1 +10405,7422-1,1 +10405,7423-1,1 +10405,7424-1,1 +10406,1740-1,1 +10406,1741-1,1 +10406,1742-1,1 +10421,5969-1,1 +10421,5970-1,1 +10421,5971-1,1 +10421,5972-1,1 +10421,5973-1,1 +10421,5974-1,1 +10421,8399-1,1 +10421,8400-1,1 +10435,7235-1,1 +10435,7245-1,1 +10435,7743-1,1 +10481,5836-1,1 +10481,5837-1,1 +10481,5838-1,1 +10481,5850-1,1 +10515,2882-1,1 +10515,2884-1,1 +10515,2886-1,1 +10515,6407-1,1 +10561,9488-1,1 +10561,9489-1,1 +10645,7133-1,1 +10645,7143-1,1 +10645,7146-1,1 +10645,7153-1,1 +10656,7736-1,1 +10656,7737-1,1 +10656,7738-1,1 +10676,7913-1,1 +10676,7914-1,1 +10676,7957-1,1 +10770,1298-10,1 +10770,1298-11,1 +10770,1298-12,1 +10770,1298-13,1 +10770,1298-14,1 +10770,1298-15,1 +10770,1298-16,1 +10770,1298-17,1 +10770,1298-18,1 +10770,1298-19,1 +10770,1298-2,1 +10770,1298-20,1 +10770,1298-21,1 +10770,1298-22,1 +10770,1298-23,1 +10770,1298-24,1 +10770,1298-25,1 +10770,1298-3,1 +10770,1298-4,1 +10770,1298-5,1 +10770,1298-6,1 +10770,1298-7,1 +10770,1298-8,1 +10770,1298-9,1 +10779,8614-1,1 +10779,8615-1,1 +10790,3731-1,2 +10795,5370a-1,1 +10795,5370b-1,1 +10799,10176-1,1 +10806,8200-1,1 +10806,8201-1,1 +10806,8206-1,1 +10825,7574-10,1 +10825,7574-11,1 +10825,7574-12,1 +10825,7574-13,1 +10825,7574-14,1 +10825,7574-15,1 +10825,7574-16,1 +10825,7574-17,1 +10825,7574-18,1 +10825,7574-19,1 +10825,7574-2,1 +10825,7574-20,1 +10825,7574-21,1 +10825,7574-22,1 +10825,7574-23,1 +10825,7574-24,1 +10825,7574-25,1 +10825,7574-3,1 +10825,7574-4,1 +10825,7574-5,1 +10825,7574-6,1 +10825,7574-7,1 +10825,7574-8,1 +10825,7574-9,1 +10837,1498-1,1 +10837,1499-1,1 +10850,8588-1,1 +10850,8589-1,1 +10850,8592-1,1 +10921,4612-1,1 +10921,4613-1,1 +10921,4614-1,1 +10976,9798-1,1 +10976,9833-1,1 +10993,1875-1,1 +10993,1876-1,1 +10993,1877-1,1 +10995,1380-1,1 +10995,1381-1,1 +10995,1382-1,1 +10995,1383-1,1 +10997,5529-1,1 +10997,6131-1,1 +11043,8593-1,1 +11043,8596-1,1 +11050,7009-1,1 +11050,7090-1,1 +11050,7091-1,1 +11050,7092-1,1 +11050,7093-1,1 +11050,7094-1,1 +11053,70409-1,1 +11053,70411-1,1 +11075,9628-1,1 +11075,9632-1,1 +11115,4192-1,1 +11115,4193-1,1 +11116,8683-1,1 +11116,8683-10,1 +11116,8683-11,1 +11116,8683-12,1 +11116,8683-13,1 +11116,8683-14,1 +11116,8683-15,1 +11116,8683-16,1 +11116,8683-2,1 +11116,8683-3,1 +11116,8683-4,1 +11116,8683-5,1 +11116,8683-6,1 +11116,8683-7,1 +11116,8683-8,1 +11116,8683-9,1 +11143,71000-0,60 +11175,1702-1,1 +11175,1704-1,1 +11190,71002-1,1 +11190,71002-10,1 +11190,71002-11,1 +11190,71002-12,1 +11190,71002-13,1 +11190,71002-14,1 +11190,71002-15,1 +11190,71002-16,1 +11190,71002-2,1 +11190,71002-3,1 +11190,71002-4,1 +11190,71002-5,1 +11190,71002-6,1 +11190,71002-7,1 +11190,71002-8,1 +11190,71002-9,1 +11194,8799-1,1 +11194,8800-1,1 +11253,4915-1,1 +11253,4916-1,1 +11253,4917-1,1 +11253,4918-1,1 +11304,7467-1,1 +11304,7470-1,1 +11304,7471-1,1 +11317,4428-10,1 +11317,4428-11,1 +11317,4428-12,1 +11317,4428-13,1 +11317,4428-14,1 +11317,4428-15,1 +11317,4428-16,1 +11317,4428-17,1 +11317,4428-18,1 +11317,4428-19,1 +11317,4428-2,1 +11317,4428-20,1 +11317,4428-21,1 +11317,4428-22,1 +11317,4428-23,1 +11317,4428-24,1 +11317,4428-25,1 +11317,4428-3,1 +11317,4428-4,1 +11317,4428-5,1 +11317,4428-6,1 +11317,4428-7,1 +11317,4428-8,1 +11317,4428-9,1 +11325,3741-1,1 +11325,3742-1,1 +11325,3746-1,1 +11344,4481-1,1 +11344,4482-1,1 +11344,7163-1,1 +11380,8805-1,1 +11380,8805-10,1 +11380,8805-11,1 +11380,8805-12,1 +11380,8805-13,1 +11380,8805-14,1 +11380,8805-15,1 +11380,8805-16,1 +11380,8805-2,1 +11380,8805-3,1 +11380,8805-4,1 +11380,8805-5,1 +11380,8805-6,1 +11380,8805-7,1 +11380,8805-8,1 +11380,8805-9,1 +11384,3741-1,1 +11384,3744-1,1 +11418,1417-2,1 +11436,8362-1,1 +11436,8389-1,1 +11476,8531-1,1 +11476,8532-1,1 +11476,8533-1,1 +11476,8534-1,1 +11476,8535-1,1 +11476,8536-1,1 +11476,8540-1,1 +11476,8541-1,1 +11476,8542-1,1 +11491,7235-2,1 +11491,7279-1,1 +11491,7286-1,1 +11491,7741-1,1 +11550,8944-1,1 +11550,8945-1,1 +11550,8946-1,1 +11550,8947-1,1 +11550,8948-1,1 +11550,8949-1,1 +11551,8755-1,1 +11551,8756-1,1 +11551,8761-1,1 +11554,6966-1,1 +11554,7252-1,1 +11554,7259-1,1 +11605,8049-1,1 +11605,8259-1,1 +11605,8260-1,1 +11605,8293-1,1 +11608,4051-1,1 +11608,4052-1,1 +11608,4053-1,1 +11759,60050-1,1 +11759,60052-1,1 +11759,7499-1,1 +11759,7895-1,1 +11767,6825-1,1 +11767,6847-1,1 +11767,6848-2,1 +11784,71009-0,60 +11786,7877-1,1 +11786,7913-1,1 +11786,7929-1,1 +11855,7770-1,1 +11855,7771-1,1 +11855,7772-1,1 +11855,7773-1,1 +11855,7774-1,1 +11855,7775-1,1 +11855,7776-1,1 +11861,7238-1,1 +11861,7239-1,1 +11861,7240-1,1 +11861,7241-1,1 +11879,7101-1,1 +11879,7111-1,1 +11879,7131-1,1 +11935,7630-1,1 +11935,7631-1,1 +11935,7633-1,1 +11935,7685-1,1 +11966,344-1,1 +11966,346-2,1 +11966,347-1,1 +11966,603-3,1 +12000,2878-1,1 +12110,7235-2,1 +12110,7236-2,1 +12110,7741-1,1 +12110,7744-1,1 +12113,8588-1,1 +12113,8589-1,1 +12113,8592-1,1 +12121,10068-1,1 +12121,10069-1,1 +12121,10070-1,1 +12121,10079-1,1 +12121,10080-1,1 +12137,1286-1,1 +12137,1287-1,1 +12137,1288-1,1 +12137,1289-1,1 +12146,1088-1,1 +12146,1098-1,1 +12146,6572-1,1 +12222,75028-1,1 +12222,75029-1,1 +12222,75030-1,1 +12273,3740-1,1 +12273,3747-1,1 +12307,7667-1,1 +12307,7668-1,1 +12307,8017-1,1 +12322,41545-1,1 +12322,41546-1,1 +12322,41547-1,1 +12344,8833-0,60 +12346,8370-1,1 +12346,8371-1,1 +12437,8803-1,1 +12437,8803-10,1 +12437,8803-11,1 +12437,8803-12,1 +12437,8803-13,1 +12437,8803-14,1 +12437,8803-15,1 +12437,8803-16,1 +12437,8803-2,1 +12437,8803-3,1 +12437,8803-4,1 +12437,8803-5,1 +12437,8803-6,1 +12437,8803-7,1 +12437,8803-8,1 +12437,8803-9,1 +12445,8956-1,1 +12445,8957-1,1 +12445,8958-1,1 +12445,8959-1,1 +12445,8960-1,1 +12445,8961-1,1 +12465,1871-1,1 +12465,1872-1,1 +12465,1873-1,1 +12590,5573-1,1 +12590,5576-1,1 +12669,7111-1,1 +12669,7121-1,1 +12748,75031-1,1 +12748,75032-1,1 +12748,75033-1,1 +12759,7101-1,1 +12759,7111-1,1 +12759,7171-1,1 +12813,75015-1,1 +12813,75035-1,1 +12813,75043-1,1 +12830,8784-1,1 +12830,8785-1,1 +12836,4108-1,1 +12836,4109-1,2 +12836,4110-1,1 +12836,4111-1,1 +12851,2824-10,1 +12851,2824-11,1 +12851,2824-12,1 +12851,2824-13,1 +12851,2824-14,1 +12851,2824-15,1 +12851,2824-16,1 +12851,2824-17,1 +12851,2824-18,1 +12851,2824-19,1 +12851,2824-2,1 +12851,2824-20,1 +12851,2824-21,1 +12851,2824-22,1 +12851,2824-23,1 +12851,2824-24,1 +12851,2824-25,1 +12851,2824-3,1 +12851,2824-4,1 +12851,2824-5,1 +12851,2824-6,1 +12851,2824-7,1 +12851,2824-8,1 +12851,2824-9,1 +12856,1417-1,1 +12856,1418-1,1 +12856,1419-1,1 +12856,1420-1,1 +12907,6719-1,1 +12907,6720-1,1 +12907,6721-1,1 +12907,6722-1,1 +12955,7130-1,1 +12955,7150-1,1 +12999,3302-1,1 +12999,3303-1,1 +12999,3304-1,2 +12999,3305-1,2 +12999,3306-1,1 +13073,6762-1,1 +13073,6763-1,1 +13073,6764-1,1 +13083,10020-1,2 +13083,10022-1,3 +13083,10025-1,2 +13141,8733-1,1 +13141,8734-1,1 +13141,8764-1,1 +13153,3741-1,1 +13153,3747-1,1 +13238,8560-1,1 +13238,8561-1,1 +13238,8562-1,1 +13254,8259-1,1 +13254,8290-1,1 +13254,8293-1,1 +13254,8294-1,1 +13269,7142-1,1 +13269,7152-1,1 +13286,7110-1,1 +13286,7144-1,1 +13355,7235-1,1 +13355,7236-1,1 +13355,7245-1,1 +13355,7890-1,1 +13355,7902-1,1 +13355,7903-1,1 +13370,7891-1,1 +13370,7893-1,1 +13370,7894-1,1 +13370,7901-1,1 +13380,1246-1,1 +13380,1247-1,1 +13380,1248-1,1 +13380,1249-1,1 +13380,1250-1,1 +13380,1251-1,1 +13398,7890-1,1 +13398,7892-1,1 +13398,7902-1,1 +13398,7903-1,1 +13412,4415-1,1 +13412,4416-1,1 +13412,4417-1,1 +13412,4418-1,1 +13423,8583-1,1 +13423,8584-1,1 +13427,6611-1,1 +13427,6628-1,1 +13427,6629-1,1 +13447,8827-0,60 +13450,7467-1,1 +13450,7468-1,1 +13450,7469-1,1 +13450,7470-1,1 +13450,7471-1,1 +13480,71002-0,60 +13538,8727-1,1 +13538,8728-1,1 +13538,8729-1,1 +13538,8730-1,1 +13538,8731-1,1 +13538,8732-1,1 +13603,8683-0,60 +13617,7620-1,1 +13617,7621-1,1 +13617,7622-1,1 +13617,7623-1,1 +13661,7895-1,1 +13661,7896-1,2 +13696,7241-1,1 +13696,7246-1,1 +13883,4492-1,1 +13883,4494-1,1 +13883,7256-1,1 +13906,8922-1,1 +13906,8923-1,1 +13906,8924-1,1 +13907,8602-1,1 +13907,8603-1,1 +13907,8606-1,1 +13917,10013-1,1 +13917,10017-1,1 +13917,10153-1,1 +13917,3741-1,1 +13917,3742-1,1 +13917,3743-1,1 +13917,4515-1,1 +13917,4520-1,2 +13917,4548-1,1 +13925,60024-10,1 +13925,60024-11,1 +13925,60024-12,1 +13925,60024-13,1 +13925,60024-14,1 +13925,60024-15,1 +13925,60024-16,1 +13925,60024-17,1 +13925,60024-18,1 +13925,60024-19,1 +13925,60024-2,1 +13925,60024-20,1 +13925,60024-21,1 +13925,60024-22,1 +13925,60024-23,1 +13925,60024-24,1 +13925,60024-25,1 +13925,60024-3,1 +13925,60024-4,1 +13925,60024-5,1 +13925,60024-6,1 +13925,60024-7,1 +13925,60024-8,1 +13925,60024-9,1 +13941,10001-1,1 +13941,10002-1,1 +13960,8900-1,1 +13960,8901-1,1 +13960,8902-1,1 +13960,8903-1,1 +13960,8904-1,1 +13960,8905-1,1 +13992,71007-0,60 +14011,4436-1,1 +14011,7235-2,1 +14011,7279-1,1 +14011,7498-1,1 +14079,1274-1,1 +14079,1275-1,1 +14079,1276-1,1 +14079,1277-1,1 +14096,2258-1,1 +14096,2259-1,1 +14096,2519-1,1 +14127,8667-1,1 +14127,8670-1,1 +14152,6216-1,1 +14152,6293-1,1 +14154,7895-1,1 +14154,7896-1,1 +14154,7937-1,1 +14154,7939-1,1 +14174,1990-1,1 +14174,1991-1,1 +14174,1992-1,1 +14198,1431-1,1 +14198,8588-1,1 +14198,8589-1,1 +14198,8592-1,1 +14222,10121-1,2 +14222,3433-1,1 +14233,7654-1,1 +14233,7670-1,1 +14248,7914-1,1 +14248,9488-1,1 +14248,9491-1,1 +14277,3403-1,1 +14277,3418-1,1 +14277,3419-1,1 +14280,8733-1,1 +14280,8734-1,1 +14280,8764-1,1 +14328,7895-1,1 +14328,7896-1,1 +14328,7898-1,1 +14328,7997-1,1 +14390,6452-1,1 +14390,6458-1,1 +14390,6465-1,1 +14418,2878-1,1 +14442,71011-1,1 +14442,71011-10,1 +14442,71011-11,1 +14442,71011-12,1 +14442,71011-13,1 +14442,71011-14,1 +14442,71011-15,1 +14442,71011-16,1 +14442,71011-2,1 +14442,71011-3,1 +14442,71011-4,1 +14442,71011-5,1 +14442,71011-6,1 +14442,71011-7,1 +14442,71011-8,1 +14442,71011-9,1 +14465,8383-1,1 +14465,8385-1,1 +14493,6633-1,1 +14493,6653-1,1 +14493,6656-1,1 +14495,7749-1,1 +14495,8083-1,1 +14495,8089-1,1 +14498,851097,1 +14498,8736-1,1 +14498,8738-1,1 +14498,8740-1,1 +14524,8550-1,1 +14524,8553-1,1 +14524,8554-1,1 +14524,8562-1,1 +14568,8201-1,1 +14568,9478-1,1 +14568,9485-1,1 +14711,2535-1,1 +14711,2536-1,1 +14711,2537-1,1 +14711,2538-1,1 +14711,2539-1,1 +14711,2540-1,1 +14711,2541-1,1 +14711,2542-1,1 +14711,2543-1,1 +14711,2544-1,1 +14717,8024-1,1 +14717,8815-1,1 +14717,8820-1,1 +14790,851441,1 +14790,8742-1,1 +14790,8756-1,1 +14812,10024-1,1 +14812,10124-1,1 +14812,3451-1,1 +14822,4475-1,1 +14822,4476-1,1 +14822,4480-1,1 +14849,3302-1,1 +14849,3303-1,1 +14849,3305-1,2 +14849,3306-1,1 +14849,3318-1,2 +14919,2882-1,1 +14919,2884-1,1 +14919,2886-1,1 +14919,6407-1,1 +14921,4600-1,1 +14921,4604-1,1 +14921,4608-1,1 +14921,4611-1,1 +14931,7895-1,1 +14931,7896-1,1 +14931,7898-1,1 +14931,7997-1,1 +14942,3740-1,1 +14942,3742-1,1 +14942,3747-1,1 +14954,7409-1,1 +14954,7412-1,1 +14954,7415-1,1 +14954,7417-1,1 +14997,8805-0,60 +14999,8647-1,1 +14999,8648-1,1 +15010,3000-1,1 +15010,3001-1,1 +15010,3003-1,1 +15010,3005-1,1 +15019,7200-1,1 +15019,7201-1,1 +15019,7203-1,1 +15019,7204-1,1 +15033,1620-1,1 +15033,1621-1,1 +15060,8685-1,1 +15060,8686-1,1 +15060,8687-1,1 +15060,8691-1,1 +15060,8692-1,1 +15060,8693-1,1 +15080,4016-1,1 +15080,4017-1,1 +15080,4018-1,1 +15080,4019-1,1 +15155,8799-1,1 +15155,8800-1,1 +15164,4515-1,2 +15164,4519-1,1 +15164,4520-1,2 +15164,4531-1,1 +15192,7239-1,1 +15192,7245-1,1 +15192,7638-1,1 +15192,8401-1,1 +15224,2192-1,1 +15224,2193-1,1 +15224,2194-1,1 +15224,2235-1,1 +15238,20201-1,1 +15238,20202-1,1 +15238,20203-1,1 +15238,20204-1,1 +15238,20205-1,1 +15304,8688-1,1 +15304,8689-1,1 +15304,8690-1,1 +15304,8694-1,1 +15304,8695-1,1 +15304,8696-1,1 +15449,2878-1,1 +15519,6205-1,1 +15519,7252-1,1 +15519,7256-1,1 +15560,1188-1,1 +15560,1189-1,1 +15560,1190-1,1 +15560,1191-1,1 +15594,8509-1,1 +15594,8510-1,1 +15594,8511-1,1 +15594,8512-1,1 +15594,8513-1,1 +15594,8514-1,1 +15631,41527-1,1 +15631,41528-1,1 +15631,41529-1,1 +15694,7238-1,1 +15694,7239-1,1 +15694,7241-1,1 +15694,7942-1,1 +15694,7945-1,1 +15718,7131-1,1 +15718,7151-1,1 +15733,8755-1,1 +15733,8756-1,1 +15733,8761-1,1 +15744,8111-1,1 +15744,8112-1,1 +15744,8113-1,1 +15744,8114-1,1 +15744,8115-1,1 +15776,8736-1,1 +15776,8737-1,1 +15776,8738-1,1 +15776,8739-1,1 +15776,8740-1,1 +15776,8741-1,1 +15951,4816-1,1 +15951,4817-1,1 +15951,4818-1,1 +15951,4819-1,1 +15955,7770-1,1 +15955,7771-1,1 +15955,7772-1,1 +15955,7773-1,1 +15955,7774-1,1 +15955,7775-1,1 +15973,10068-1,1 +15973,10069-1,1 +15973,10070-1,1 +15980,7246-1,1 +15980,7248-1,1 +15980,7905-1,1 +15980,7990-1,1 +15990,llca21-1,1 +15990,llca22-1,1 +15990,llca23-1,1 +16023,7733-1,1 +16023,7734-1,1 +16023,7992-1,1 +16029,6581-1,1 +16029,6596-1,1 +16031,4124-10,1 +16031,4124-11,1 +16031,4124-12,1 +16031,4124-13,1 +16031,4124-14,1 +16031,4124-15,1 +16031,4124-16,1 +16031,4124-17,1 +16031,4124-18,1 +16031,4124-19,1 +16031,4124-2,1 +16031,4124-20,1 +16031,4124-21,1 +16031,4124-22,1 +16031,4124-23,1 +16031,4124-24,1 +16031,4124-25,1 +16031,4124-3,1 +16031,4124-4,1 +16031,4124-5,1 +16031,4124-6,1 +16031,4124-7,1 +16031,4124-8,1 +16031,4124-9,1 +16034,7731-1,1 +16034,7732-1,1 +16034,7733-1,1 +16034,7734-1,1 +16070,322-1,1 +16102,8057-1,1 +16102,8058-1,1 +16102,8059-1,1 +16102,8080-1,1 +16117,8621-1,1 +16117,8622-1,1 +16117,8623-1,1 +16126,8550-1,1 +16126,8551-1,1 +16126,8552-1,1 +16126,8553-1,1 +16126,8554-1,1 +16126,8555-1,1 +16126,8560-1,1 +16126,8561-1,1 +16126,8562-1,1 +16126,8563-1,1 +16126,8564-1,1 +16126,8565-1,1 +16127,10024-1,1 +16127,3451-1,1 +16131,1496-1,1 +16131,1497-1,1 +16138,3074-1,1 +16138,3075-1,1 +16138,3076-1,1 +16138,3077-1,1 +16150,3885-2,1 +16159,5969-1,1 +16159,5970-1,1 +16159,5972-1,1 +16159,5973-1,1 +16159,8400-1,1 +16180,9469-1,1 +16180,9470-1,1 +16180,9471-1,1 +16180,9472-1,1 +16180,9473-1,1 +16180,9474-1,1 +16180,9476-1,1 +16210,1790-1,1 +16210,1791-1,1 +16210,1792-1,1 +16226,3741-1,1 +16226,3743-1,1 +16254,6235-1,1 +16254,6245-1,1 +16319,20201-1,1 +16319,20202-1,1 +16337,8083-1,1 +16337,8084-1,1 +16337,8092-1,1 +16371,4855-1,1 +16371,4856-1,1 +16371,4857-1,1 +16423,71013-1,1 +16423,71013-10,1 +16423,71013-11,1 +16423,71013-12,1 +16423,71013-13,1 +16423,71013-14,1 +16423,71013-15,1 +16423,71013-16,1 +16423,71013-2,1 +16423,71013-3,1 +16423,71013-4,1 +16423,71013-5,1 +16423,71013-6,1 +16423,71013-7,1 +16423,71013-8,1 +16423,71013-9,1 +16460,71012-1,1 +16460,71012-10,1 +16460,71012-11,1 +16460,71012-12,1 +16460,71012-13,1 +16460,71012-14,1 +16460,71012-15,1 +16460,71012-16,1 +16460,71012-17,1 +16460,71012-18,1 +16460,71012-2,1 +16460,71012-3,1 +16460,71012-4,1 +16460,71012-5,1 +16460,71012-6,1 +16460,71012-7,1 +16460,71012-8,1 +16460,71012-9,1 +16593,71014-1,1 +16593,71014-10,1 +16593,71014-11,1 +16593,71014-12,1 +16593,71014-13,1 +16593,71014-14,1 +16593,71014-15,1 +16593,71014-16,1 +16593,71014-2,1 +16593,71014-3,1 +16593,71014-4,1 +16593,71014-5,1 +16593,71014-6,1 +16593,71014-7,1 +16593,71014-8,1 +16593,71014-9,1 +16594,71017-1,1 +16594,71017-10,1 +16594,71017-11,1 +16594,71017-12,1 +16594,71017-13,1 +16594,71017-14,1 +16594,71017-15,1 +16594,71017-16,1 +16594,71017-17,1 +16594,71017-18,1 +16594,71017-19,1 +16594,71017-2,1 +16594,71017-20,2 +16594,71017-3,1 +16594,71017-4,1 +16594,71017-5,1 +16594,71017-6,1 +16594,71017-7,1 +16594,71017-8,1 +16594,71017-9,1 +18701,71018-1,1 +18701,71018-10,1 +18701,71018-11,1 +18701,71018-12,1 +18701,71018-13,1 +18701,71018-14,1 +18701,71018-15,1 +18701,71018-16,1 +18701,71018-2,1 +18701,71018-3,1 +18701,71018-4,1 +18701,71018-5,1 +18701,71018-6,1 +18701,71018-7,1 +18701,71018-8,1 +18701,71018-9,1 diff --git a/lego_data.csv b/lego_data.csv new file mode 100644 index 0000000..1f73fd4 --- /dev/null +++ b/lego_data.csv @@ -0,0 +1,41793 @@ +Theme_Name,Set_Name,num_parts,year,Color,Unique_Parts +12V,Train with 12V Electric Motor,357,1969,White,7 +12V,Train with 12V Electric Motor,357,1969,Red,16 +12V,Train with 12V Electric Motor,357,1969,Light Gray,7 +12V,Train with 12V Electric Motor,357,1969,Blue,13 +12V,Train with 12V Electric Motor,357,1969,Black,19 +12V,Train with 12V Electric Motor,357,1969,Yellow,3 +12V,Train with 12V Electric Motor,357,1969,Trans-Clear,2 +12V,Steam Locomotive,114,1969,Light Gray,2 +12V,Steam Locomotive,114,1969,Trans-Clear,1 +12V,Steam Locomotive,114,1969,Yellow,1 +12V,Steam Locomotive,114,1969,Red,6 +12V,Steam Locomotive,114,1969,[No Color],1 +12V,Steam Locomotive,114,1969,Black,19 +12V,12V Motor with Accessories Pack,25,1969,Black,3 +12V,12V Motor with Accessories Pack,25,1969,Blue,3 +12V,12V Motor with Accessories Pack,25,1969,Light Gray,2 +12V,12V Motor with Accessories Pack,25,1969,Red,2 +12V,12V Motor with Accessories Pack,25,1969,White,1 +12V,12V Motor with Accessories Pack,25,1969,[No Color],1 +12V,8 Curved 12V Conducting Rails,8,1969,Blue,1 +12V,8 Straight 12V Conducting Rails,8,1969,Blue,1 +12V,Automatic Right Electric Switch,5,1969,White,3 +12V,Automatic Left Electric Switch,5,1969,White,3 +12V,Automatic Left Electric Switch,5,1969,Blue,2 +12V,Automatic Right Electric Switch,5,1969,Blue,2 +12V,Motor Bushings,4,1969,[No Color],1 +12V,12V Sleeper (Track) Contacts for Old Motor Type I and II,2,1969,Black,1 +12V,12V Rail Contact Wire with Transformer Connector,1,1969,Blue,1 +12V,12V Replacement Electric Motor,1,1969,Royal Blue,1 +12V,12V Transformer for 220V Pack,1,1969,Blue,1 +12V,12V Train Light Posts,52,1983,Black,1 +12V,12V Train Light Posts,52,1983,Dark Gray,1 +12V,12V Train Light Posts,52,1983,Light Gray,8 +12V,12V Train Light Posts,52,1983,White,1 +12V,Container Crane Depot,483,1986,Black,30 +12V,Container Crane Depot,483,1986,Blue,16 +12V,Container Crane Depot,483,1986,Dark Gray,1 +12V,Container Crane Depot,483,1986,Light Gray,27 +12V,Container Crane Depot,483,1986,Red,35 +12V,Container Crane Depot,483,1986,Trans-Clear,3 +12V,Container Crane Depot,483,1986,Trans-Red,1 +12V,Container Crane Depot,483,1986,Trans-Yellow,1 +12V,Container Crane Depot,483,1986,Yellow,3 +12V,Container Crane Depot,483,1986,White,17 +12V,Car Transport Depot,341,1986,Black,41 +12V,Car Transport Depot,341,1986,Blue,2 +12V,Car Transport Depot,341,1986,Brown,1 +12V,Car Transport Depot,341,1986,Dark Gray,1 +12V,Car Transport Depot,341,1986,Light Gray,19 +12V,Car Transport Depot,341,1986,Red,16 +12V,Car Transport Depot,341,1986,Trans-Clear,5 +12V,Car Transport Depot,341,1986,Trans-Red,1 +12V,Car Transport Depot,341,1986,Trans-Yellow,1 +12V,Car Transport Depot,341,1986,White,19 +12V,Car Transport Depot,341,1986,Yellow,3 +4 Juniors,Picture Frame and Mirror,48,1980,White,10 +4.5V,Motorized Train Set,344,1966,Light Gray,7 +4.5V,Motorized Train Set,344,1966,Red,6 +4.5V,Motorized Train Set,344,1966,Trans-Clear,3 +4.5V,Motorized Train Set,344,1966,White,4 +4.5V,Motorized Train Set,344,1966,Black,1 +4.5V,Motorized Train Set,344,1966,Blue,19 +4.5V,Starter Train Set with Motor,132,1966,White,3 +4.5V,Starter Train Set with Motor,132,1966,Blue,12 +4.5V,Starter Train Set with Motor,132,1966,Light Gray,3 +4.5V,Starter Train Set with Motor,132,1966,Red,7 +4.5V,Starter Train Set with Motor,132,1966,Trans-Clear,2 +4.5V,Starter Train Set without Motor,118,1966,White,2 +4.5V,Starter Train Set without Motor,118,1966,Blue,10 +4.5V,Starter Train Set without Motor,118,1966,Light Gray,1 +4.5V,Starter Train Set without Motor,118,1966,Red,6 +4.5V,Starter Train Set without Motor,118,1966,Trans-Clear,2 +4.5V,Small Train Set,88,1966,Blue,12 +4.5V,Small Train Set,88,1966,Light Gray,2 +4.5V,Small Train Set,88,1966,Red,4 +4.5V,Small Train Set,88,1966,Trans-Clear,1 +4.5V,Small Train Set,88,1966,White,2 +4.5V,Small Train Set,88,1966,Yellow,2 +4.5V,Locomotive with Motor,74,1966,Blue,12 +4.5V,Locomotive with Motor,74,1966,Light Gray,6 +4.5V,Locomotive with Motor,74,1966,Red,5 +4.5V,Locomotive with Motor,74,1966,Trans-Clear,1 +4.5V,Locomotive with Motor,74,1966,Black,1 +4.5V,4.5V Motor with Wheels (Large Version),27,1966,Blue,1 +4.5V,4.5V Motor with Wheels (Large Version),27,1966,Light Gray,4 +4.5V,4.5V Motor with Wheels (Large Version),27,1966,Red,3 +4.5V,4.5V Motor with Wheels (Large Version),27,1966,White,1 +4.5V,Straight Track,25,1966,Blue,1 +4.5V,Curved Track,25,1966,Blue,2 +4.5V,Curved Track,25,1966,White,1 +4.5V,Straight Track,25,1966,White,1 +4.5V,Two Train Wagons,22,1966,Blue,1 +4.5V,Two Train Wagons,22,1966,Light Gray,1 +4.5V,Two Train Wagons,22,1966,Red,3 +4.5V,Two Train Wagons,22,1966,White,1 +4.5V,4.5V Motor with Wheels (Small Version),16,1966,Blue,1 +4.5V,4.5V Motor with Wheels (Small Version),16,1966,Light Gray,3 +4.5V,4.5V Motor with Wheels (Small Version),16,1966,Red,3 +4.5V,4.5V Motor with Wheels (Small Version),16,1966,White,2 +4.5V,4.5V Motor with Wheels (Small Version),16,1966,Black,1 +4.5V,Large Train Wagon,15,1966,Light Gray,1 +4.5V,Large Train Wagon,15,1966,Red,3 +4.5V,Large Train Wagon,15,1966,White,2 +4.5V,4.5V Battery Case,1,1966,Blue,1 +4.5V,8 Curved Rails Gray 4.5v,32,1980,Dark Gray,1 +4.5V,8 Curved Rails Gray 4.5v,32,1980,Light Gray,2 +4.5V,8 Straight Rails Gray 4.5v,32,1980,Dark Gray,1 +4.5V,8 Straight Rails Gray 4.5v,32,1980,Light Gray,1 +4.5V,Left and Right Points Manual Gray 4.5v,14,1980,Black,1 +4.5V,Left and Right Points Manual Gray 4.5v,14,1980,Dark Gray,3 +4.5V,Left and Right Points Manual Gray 4.5v,14,1980,Light Gray,2 +4.5V,"Crossing, Gray 4.5v",5,1980,Dark Gray,1 +4.5V,"Crossing, Gray 4.5v",5,1980,Light Gray,1 +4.5V,Shell Tanker Wagon,120,1986,[No Color],1 +4.5V,Shell Tanker Wagon,120,1986,Black,14 +4.5V,Shell Tanker Wagon,120,1986,Blue,1 +4.5V,Shell Tanker Wagon,120,1986,Light Gray,11 +4.5V,Shell Tanker Wagon,120,1986,Red,3 +4.5V,Shell Tanker Wagon,120,1986,White,4 +4.5V,Shell Tanker Wagon,120,1986,Yellow,4 +9V,Metroliner,786,1991,Yellow,15 +9V,Metroliner,786,1991,Blue,11 +9V,Metroliner,786,1991,Black,60 +9V,Metroliner,786,1991,Red,20 +9V,Metroliner,786,1991,Trans-Clear,6 +9V,Metroliner,786,1991,Brown,4 +9V,Metroliner,786,1991,Light Gray,36 +9V,Metroliner,786,1991,Dark Gray,2 +9V,Metroliner,786,1991,Trans-Yellow,2 +9V,Metroliner,786,1991,White,27 +9V,Metro Station,605,1991,Yellow,50 +9V,Metro Station,605,1991,White,25 +9V,Metro Station,605,1991,Trans-Green,1 +9V,Metro Station,605,1991,Trans-Red,1 +9V,Metro Station,605,1991,Chrome Gold,4 +9V,Metro Station,605,1991,Trans-Yellow,1 +9V,Metro Station,605,1991,Trans-Clear,3 +9V,Metro Station,605,1991,Black,30 +9V,Metro Station,605,1991,Blue,6 +9V,Metro Station,605,1991,Brown,3 +9V,Metro Station,605,1991,Green,1 +9V,Metro Station,605,1991,Light Gray,17 +9V,Metro Station,605,1991,Red,35 +9V,Load and Haul Railroad,479,1991,Trans-Red,1 +9V,Load and Haul Railroad,479,1991,White,7 +9V,Load and Haul Railroad,479,1991,Yellow,24 +9V,Load and Haul Railroad,479,1991,Blue,13 +9V,Load and Haul Railroad,479,1991,Brown,2 +9V,Load and Haul Railroad,479,1991,Black,42 +9V,Load and Haul Railroad,479,1991,Light Gray,14 +9V,Load and Haul Railroad,479,1991,Red,34 +9V,Load and Haul Railroad,479,1991,Trans-Clear,5 +9V,Load and Haul Railroad,479,1991,Trans-Light Blue,1 +9V,Load and Haul Railroad,479,1991,Trans-Yellow,2 +9V,Load and Haul Railroad,479,1991,Dark Gray,3 +9V,Crocodile Locomotive,313,1991,White,6 +9V,Crocodile Locomotive,313,1991,Yellow,2 +9V,Crocodile Locomotive,313,1991,Blue,1 +9V,Crocodile Locomotive,313,1991,[No Color],1 +9V,Crocodile Locomotive,313,1991,Black,46 +9V,Crocodile Locomotive,313,1991,Light Gray,12 +9V,Crocodile Locomotive,313,1991,Red,25 +9V,Crocodile Locomotive,313,1991,Trans-Clear,2 +9V,Railroad Tractor Flatbed,179,1991,Black,35 +9V,Railroad Tractor Flatbed,179,1991,Blue,2 +9V,Railroad Tractor Flatbed,179,1991,Brown,1 +9V,Railroad Tractor Flatbed,179,1991,Dark Gray,1 +9V,Railroad Tractor Flatbed,179,1991,Light Gray,3 +9V,Railroad Tractor Flatbed,179,1991,Red,15 +9V,Railroad Tractor Flatbed,179,1991,Trans-Clear,4 +9V,Railroad Tractor Flatbed,179,1991,Trans-Dark Blue,1 +9V,Railroad Tractor Flatbed,179,1991,Trans-Yellow,1 +9V,Railroad Tractor Flatbed,179,1991,White,1 +9V,Railroad Tractor Flatbed,179,1991,Yellow,24 +9V,Blue Hopper Car,165,1991,Light Gray,13 +9V,Blue Hopper Car,165,1991,Blue,13 +9V,Blue Hopper Car,165,1991,Black,15 +9V,Blue Hopper Car,165,1991,Yellow,1 +9V,Blue Hopper Car,165,1991,White,4 +9V,Manual Level Crossing,115,1991,Red,12 +9V,Manual Level Crossing,115,1991,Trans-Clear,1 +9V,Manual Level Crossing,115,1991,Trans-Red,1 +9V,Manual Level Crossing,115,1991,White,4 +9V,Manual Level Crossing,115,1991,Yellow,2 +9V,Manual Level Crossing,115,1991,Black,11 +9V,Manual Level Crossing,115,1991,Blue,1 +9V,Manual Level Crossing,115,1991,Dark Gray,1 +9V,Manual Level Crossing,115,1991,Green,1 +9V,Manual Level Crossing,115,1991,Light Gray,13 +9V,Road and Rail Maintenance,76,1991,Black,5 +9V,Road and Rail Maintenance,76,1991,Blue,2 +9V,Road and Rail Maintenance,76,1991,Brown,2 +9V,Road and Rail Maintenance,76,1991,Dark Gray,3 +9V,Road and Rail Maintenance,76,1991,Light Gray,3 +9V,Road and Rail Maintenance,76,1991,Red,10 +9V,Road and Rail Maintenance,76,1991,Trans-Clear,2 +9V,Road and Rail Maintenance,76,1991,Trans-Yellow,1 +9V,Road and Rail Maintenance,76,1991,Yellow,17 +9V,Curved Rails,8,1991,Dark Gray,1 +9V,Straight Rails,8,1991,Dark Gray,1 +9V,Manual Points,6,1991,Yellow,1 +9V,Manual Points,6,1991,Dark Gray,3 +9V,Transformer and Speed Regulator,3,1991,Black,2 +9V,Transformer and Speed Regulator,3,1991,Dark Gray,1 +9V,Holiday Train,969,2006,Black,68 +9V,Holiday Train,969,2006,Blue,13 +9V,Holiday Train,969,2006,Bright Green,1 +9V,Holiday Train,969,2006,Brown,1 +9V,Holiday Train,969,2006,Chrome Silver,1 +9V,Holiday Train,969,2006,Dark Blue,3 +9V,Holiday Train,969,2006,Dark Bluish Gray,4 +9V,Holiday Train,969,2006,Dark Pink,1 +9V,Holiday Train,969,2006,Dark Red,1 +9V,Holiday Train,969,2006,Green,15 +9V,Holiday Train,969,2006,Light Bluish Gray,7 +9V,Holiday Train,969,2006,Magenta,1 +9V,Holiday Train,969,2006,Medium Blue,1 +9V,Holiday Train,969,2006,Red,30 +9V,Holiday Train,969,2006,Reddish Brown,3 +9V,Holiday Train,969,2006,Tan,1 +9V,Holiday Train,969,2006,Trans-Clear,3 +9V,Holiday Train,969,2006,Trans-Dark Blue,1 +9V,Holiday Train,969,2006,Trans-Red,1 +9V,Holiday Train,969,2006,Trans-Yellow,1 +9V,Holiday Train,969,2006,White,38 +9V,Holiday Train,969,2006,Yellow,13 +9V,Holiday Train Starter Collection,31,2006,Black,4 +9V,Holiday Train Starter Collection,31,2006,Dark Bluish Gray,2 +9V,9V Train Switching Track Collection,28,2006,Black,1 +9V,9V Train Switching Track Collection,28,2006,Dark Bluish Gray,3 +9V,9V Train Switching Track Collection,28,2006,Yellow,1 +9V,9V Train Track Starter Collection,24,2006,Black,1 +9V,9V Train Track Starter Collection,24,2006,Dark Bluish Gray,2 +Advent,Advent Calendar 1999,228,1999,Black,12 +Advent,Advent Calendar 1999,228,1999,Blue,9 +Advent,Advent Calendar 1999,228,1999,Green,6 +Advent,Advent Calendar 1999,228,1999,Light Gray,6 +Advent,Advent Calendar 1999,228,1999,Red,23 +Advent,Advent Calendar 1999,228,1999,Trans-Clear,1 +Advent,Advent Calendar 1999,228,1999,Trans-Dark Blue,1 +Advent,Advent Calendar 1999,228,1999,Trans-Green,2 +Advent,Advent Calendar 1999,228,1999,Trans-Red,1 +Advent,Advent Calendar 1999,228,1999,White,17 +Advent,Advent Calendar 1999,228,1999,Yellow,19 +Advent,24-in-1 Holiday Countdown,250,2016,Black,10 +Advent,24-in-1 Holiday Countdown,250,2016,Blue,3 +Advent,24-in-1 Holiday Countdown,250,2016,Bright Green,1 +Advent,24-in-1 Holiday Countdown,250,2016,Bright Light Orange,1 +Advent,24-in-1 Holiday Countdown,250,2016,Bright Pink,1 +Advent,24-in-1 Holiday Countdown,250,2016,Dark Bluish Gray,13 +Advent,24-in-1 Holiday Countdown,250,2016,Dark Red,1 +Advent,24-in-1 Holiday Countdown,250,2016,Dark Tan,4 +Advent,24-in-1 Holiday Countdown,250,2016,Flat Silver,1 +Advent,24-in-1 Holiday Countdown,250,2016,Green,7 +Advent,24-in-1 Holiday Countdown,250,2016,Light Bluish Gray,14 +Advent,24-in-1 Holiday Countdown,250,2016,Lime,2 +Advent,24-in-1 Holiday Countdown,250,2016,Medium Blue,1 +Advent,24-in-1 Holiday Countdown,250,2016,Orange,3 +Advent,24-in-1 Holiday Countdown,250,2016,Red,13 +Advent,24-in-1 Holiday Countdown,250,2016,Reddish Brown,10 +Advent,24-in-1 Holiday Countdown,250,2016,Tan,9 +Advent,24-in-1 Holiday Countdown,250,2016,Trans-Clear,4 +Advent,24-in-1 Holiday Countdown,250,2016,Trans-Green,1 +Advent,24-in-1 Holiday Countdown,250,2016,Trans-Light Blue,1 +Advent,24-in-1 Holiday Countdown,250,2016,Trans-Orange,1 +Advent,24-in-1 Holiday Countdown,250,2016,Trans-Red,1 +Advent,24-in-1 Holiday Countdown,250,2016,Trans-Yellow,2 +Advent,24-in-1 Holiday Countdown,250,2016,White,18 +Advent,24-in-1 Holiday Countdown,250,2016,Yellow,2 +Advent,24-in-1 Holiday Countdown,250,2016,Yellowish Green,1 +Advent Sub-Set,Advent Calendar 1999 (Day 15) Elf,12,1999,Yellow,3 +Advent Sub-Set,Advent Calendar 1999 (Day 15) Elf,12,1999,White,3 +Advent Sub-Set,Advent Calendar 1999 (Day 15) Elf,12,1999,Trans-Green,1 +Advent Sub-Set,Advent Calendar 1999 (Day 15) Elf,12,1999,Black,2 +Advent Sub-Set,Advent Calendar 1999 (Day 22) Dog with Red Hat,12,1999,Yellow,6 +Advent Sub-Set,Advent Calendar 1999 (Day 22) Dog with Red Hat,12,1999,White,1 +Advent Sub-Set,Advent Calendar 1999 (Day 6) Reindeer,12,1999,Black,3 +Advent Sub-Set,Advent Calendar 1999 (Day 6) Reindeer,12,1999,Red,5 +Advent Sub-Set,Advent Calendar 1999 (Day 22) Dog with Red Hat,12,1999,Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 1) Plane,11,1999,Black,1 +Advent Sub-Set,Advent Calendar 1999 (Day 1) Plane,11,1999,Blue,2 +Advent Sub-Set,Advent Calendar 1999 (Day 1) Plane,11,1999,Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 1) Plane,11,1999,Trans-Clear,1 +Advent Sub-Set,Advent Calendar 1999 (Day 1) Plane,11,1999,Trans-Green,1 +Advent Sub-Set,Advent Calendar 1999 (Day 1) Plane,11,1999,Trans-Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 1) Plane,11,1999,Yellow,3 +Advent Sub-Set,Advent Calendar 1999 (Day 2) Snowman,11,1999,Black,3 +Advent Sub-Set,Advent Calendar 1999 (Day 2) Snowman,11,1999,Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 2) Snowman,11,1999,White,4 +Advent Sub-Set,Advent Calendar 1999 (Day 21) Police Car,11,1999,Trans-Clear,1 +Advent Sub-Set,Advent Calendar 1999 (Day 21) Police Car,11,1999,Black,4 +Advent Sub-Set,Advent Calendar 1999 (Day 21) Police Car,11,1999,Light Gray,1 +Advent Sub-Set,Advent Calendar 1999 (Day 21) Police Car,11,1999,White,2 +Advent Sub-Set,Advent Calendar 1999 (Day 24) Santa,11,1999,White,4 +Advent Sub-Set,Advent Calendar 1999 (Day 24) Santa,11,1999,Red,4 +Advent Sub-Set,Advent Calendar 1999 (Day 24) Santa,11,1999,Light Gray,1 +Advent Sub-Set,Advent Calendar 1999 (Day 24) Santa,11,1999,Black,1 +Advent Sub-Set,Advent Calendar 1999 (Day 21) Police Car,11,1999,Trans-Dark Blue,1 +Advent Sub-Set,Advent Calendar 1999 (Day 18) Elephant,10,1999,Red,7 +Advent Sub-Set,Advent Calendar 1999 (Day 20) Cow,10,1999,Black,3 +Advent Sub-Set,Advent Calendar 1999 (Day 20) Cow,10,1999,Light Gray,1 +Advent Sub-Set,Advent Calendar 1999 (Day 20) Cow,10,1999,White,4 +Advent Sub-Set,Advent Calendar 1999 (Day 23) Police Helicopter,10,1999,Black,2 +Advent Sub-Set,Advent Calendar 1999 (Day 23) Police Helicopter,10,1999,Trans-Clear,1 +Advent Sub-Set,Advent Calendar 1999 (Day 23) Police Helicopter,10,1999,Trans-Dark Blue,1 +Advent Sub-Set,Advent Calendar 1999 (Day 23) Police Helicopter,10,1999,White,5 +Advent Sub-Set,Advent Calendar 1999 (Day 7) Plane,10,1999,Black,1 +Advent Sub-Set,Advent Calendar 1999 (Day 7) Plane,10,1999,Blue,1 +Advent Sub-Set,Advent Calendar 1999 (Day 7) Plane,10,1999,Green,1 +Advent Sub-Set,Advent Calendar 1999 (Day 7) Plane,10,1999,Light Gray,1 +Advent Sub-Set,Advent Calendar 1999 (Day 7) Plane,10,1999,Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 7) Plane,10,1999,Trans-Clear,1 +Advent Sub-Set,Advent Calendar 1999 (Day 7) Plane,10,1999,Trans-Green,1 +Advent Sub-Set,Advent Calendar 1999 (Day 7) Plane,10,1999,Trans-Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 7) Plane,10,1999,Yellow,1 +Advent Sub-Set,Advent Calendar 1999 (Day 9) Fire Engine,10,1999,Black,1 +Advent Sub-Set,Advent Calendar 1999 (Day 9) Fire Engine,10,1999,Light Gray,1 +Advent Sub-Set,Advent Calendar 1999 (Day 9) Fire Engine,10,1999,Red,4 +Advent Sub-Set,Advent Calendar 1999 (Day 9) Fire Engine,10,1999,Trans-Clear,1 +Advent Sub-Set,Advent Calendar 1999 (Day 9) Fire Engine,10,1999,Trans-Dark Blue,1 +Advent Sub-Set,Advent Calendar 1999 (Day 17) Gentleman,10,1999,Yellow,2 +Advent Sub-Set,Advent Calendar 1999 (Day 13) Hovercraft,10,1999,Blue,2 +Advent Sub-Set,Advent Calendar 1999 (Day 13) Hovercraft,10,1999,Green,2 +Advent Sub-Set,Advent Calendar 1999 (Day 13) Hovercraft,10,1999,Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 13) Hovercraft,10,1999,Trans-Clear,1 +Advent Sub-Set,Advent Calendar 1999 (Day 13) Hovercraft,10,1999,Yellow,2 +Advent Sub-Set,Advent Calendar 1999 (Day 16) Seaplane,10,1999,Blue,2 +Advent Sub-Set,Advent Calendar 1999 (Day 16) Seaplane,10,1999,Trans-Clear,1 +Advent Sub-Set,Advent Calendar 1999 (Day 16) Seaplane,10,1999,Trans-Green,1 +Advent Sub-Set,Advent Calendar 1999 (Day 16) Seaplane,10,1999,Trans-Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 16) Seaplane,10,1999,White,2 +Advent Sub-Set,Advent Calendar 1999 (Day 16) Seaplane,10,1999,Yellow,2 +Advent Sub-Set,Advent Calendar 1999 (Day 17) Gentleman,10,1999,Black,3 +Advent Sub-Set,Advent Calendar 1999 (Day 17) Gentleman,10,1999,Blue,4 +Advent Sub-Set,Advent Calendar 1999 (Day 17) Gentleman,10,1999,White,1 +Advent Sub-Set,Advent Calendar 1999 (Day 18) Elephant,10,1999,Black,1 +Advent Sub-Set,Advent Calendar 1999 (Day 12) Hippo,9,1999,Black,2 +Advent Sub-Set,Advent Calendar 1999 (Day 5) Sailboat,9,1999,Yellow,1 +Advent Sub-Set,Advent Calendar 1999 (Day 5) Sailboat,9,1999,White,1 +Advent Sub-Set,Advent Calendar 1999 (Day 12) Hippo,9,1999,Yellow,5 +Advent Sub-Set,Advent Calendar 1999 (Day 5) Sailboat,9,1999,Trans-Clear,1 +Advent Sub-Set,Advent Calendar 1999 (Day 5) Sailboat,9,1999,Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 5) Sailboat,9,1999,Light Gray,2 +Advent Sub-Set,Advent Calendar 1999 (Day 5) Sailboat,9,1999,Green,2 +Advent Sub-Set,Advent Calendar 1999 (Day 19) Sea Plane,8,1999,Blue,1 +Advent Sub-Set,Advent Calendar 1999 (Day 4) Girl,8,1999,Green,2 +Advent Sub-Set,Advent Calendar 1999 (Day 4) Girl,8,1999,Red,2 +Advent Sub-Set,Advent Calendar 1999 (Day 4) Girl,8,1999,White,1 +Advent Sub-Set,Advent Calendar 1999 (Day 4) Girl,8,1999,Yellow,2 +Advent Sub-Set,Advent Calendar 1999 (Day 8) Girl,8,1999,Yellow,2 +Advent Sub-Set,Advent Calendar 1999 (Day 19) Sea Plane,8,1999,Red,3 +Advent Sub-Set,Advent Calendar 1999 (Day 19) Sea Plane,8,1999,Trans-Clear,1 +Advent Sub-Set,Advent Calendar 1999 (Day 19) Sea Plane,8,1999,Yellow,1 +Advent Sub-Set,Advent Calendar 1999 (Day 11) Dog,8,1999,Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 11) Dog,8,1999,Black,6 +Advent Sub-Set,Advent Calendar 1999 (Day 8) Girl,8,1999,White,2 +Advent Sub-Set,Advent Calendar 1999 (Day 8) Girl,8,1999,Black,2 +Advent Sub-Set,Advent Calendar 1999 (Day 8) Girl,8,1999,Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 14) Penguin,8,1999,Black,3 +Advent Sub-Set,Advent Calendar 1999 (Day 14) Penguin,8,1999,Red,1 +Advent Sub-Set,Advent Calendar 1999 (Day 14) Penguin,8,1999,White,3 +Advent Sub-Set,Advent Calendar 1999 (Day 3) Speedboat,7,1999,Red,2 +Advent Sub-Set,Advent Calendar 1999 (Day 3) Speedboat,7,1999,Trans-Clear,1 +Advent Sub-Set,Advent Calendar 1999 (Day 3) Speedboat,7,1999,Yellow,3 +Advent Sub-Set,Advent Calendar 1999 (Day 3) Speedboat,7,1999,Blue,1 +Advent Sub-Set,Advent Calendar 1999 (Day 10) Santa Minifig,5,1999,Yellow,1 +Advent Sub-Set,Advent Calendar 1999 (Day 10) Santa Minifig,5,1999,White,1 +Advent Sub-Set,Advent Calendar 1999 (Day 10) Santa Minifig,5,1999,Red,3 +Advent Sub-Set,"Advent Calendar 2012, City (Day 8) Wall with Ski Equipment",24,2012,Red,3 +Advent Sub-Set,"Advent Calendar 2012, City (Day 8) Wall with Ski Equipment",24,2012,Medium Dark Flesh,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 8) Wall with Ski Equipment",24,2012,Light Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 8) Wall with Ski Equipment",24,2012,Dark Bluish Gray,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 8) Wall with Ski Equipment",24,2012,Trans-Dark Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 8) Wall with Ski Equipment",24,2012,Yellow,3 +Advent Sub-Set,"Advent Calendar 2012, City (Day 8) Wall with Ski Equipment",24,2012,White,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",17,2012,Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",17,2012,Trans-Dark Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",17,2012,Trans-Black,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 5) Wall with Fireman Equipment",17,2012,Black,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 5) Wall with Fireman Equipment",17,2012,Light Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 5) Wall with Fireman Equipment",17,2012,Medium Dark Flesh,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 5) Wall with Fireman Equipment",17,2012,Red,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 5) Wall with Fireman Equipment",17,2012,Yellow,4 +Advent Sub-Set,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",17,2012,Black,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",17,2012,Red,3 +Advent Sub-Set,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",17,2012,Light Bluish Gray,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",17,2012,Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",17,2012,White,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 23) Wrapped Gifts",16,2012,Blue,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 23) Wrapped Gifts",16,2012,Green,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 23) Wrapped Gifts",16,2012,White,4 +Advent Sub-Set,"Advent Calendar 2012, City (Day 23) Wrapped Gifts",16,2012,Yellow,4 +Advent Sub-Set,"Advent Calendar 2012, City (Day 3) Christmas Tree",16,2012,Green,3 +Advent Sub-Set,"Advent Calendar 2012, City (Day 3) Christmas Tree",16,2012,White,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 3) Christmas Tree",16,2012,Trans-Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 15) Wall with Safety Equipment",16,2012,Dark Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 15) Wall with Safety Equipment",16,2012,Light Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 15) Wall with Safety Equipment",16,2012,Medium Dark Flesh,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 15) Wall with Safety Equipment",16,2012,Red,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 15) Wall with Safety Equipment",16,2012,Trans-Black,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 15) Wall with Safety Equipment",16,2012,Yellow,5 +Advent Sub-Set,"Advent Calendar 2012, City (Day 3) Christmas Tree",16,2012,Trans-Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 3) Christmas Tree",16,2012,Reddish Brown,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 17) Catapult",15,2012,Light Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 17) Catapult",15,2012,Black,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 17) Catapult",15,2012,White,3 +Advent Sub-Set,"Advent Calendar 2012, City (Day 17) Catapult",15,2012,Reddish Brown,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 17) Catapult",15,2012,Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 17) Catapult",15,2012,Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 24) Santa on Snowmobile",13,2012,Light Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 24) Santa on Snowmobile",13,2012,Red,5 +Advent Sub-Set,"Advent Calendar 2012, City (Day 24) Santa on Snowmobile",13,2012,White,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 24) Santa on Snowmobile",13,2012,Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 11) Firefighter's ATV without Wheels",13,2012,Dark Bluish Gray,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 11) Firefighter's ATV without Wheels",13,2012,Light Bluish Gray,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 11) Firefighter's ATV without Wheels",13,2012,Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 11) Firefighter's ATV without Wheels",13,2012,Trans-Dark Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 11) Firefighter's ATV without Wheels",13,2012,White,3 +Advent Sub-Set,"Advent Calendar 2012, City (Day 11) Firefighter's ATV without Wheels",13,2012,Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 24) Santa on Snowmobile",13,2012,Black,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 24) Santa on Snowmobile",13,2012,Green,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 10) Wheel Dolly with Wheels",10,2012,Black,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 10) Wheel Dolly with Wheels",10,2012,Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 10) Wheel Dolly with Wheels",10,2012,White,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 21) Warning Lights and Sign",9,2012,Trans-Dark Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 21) Warning Lights and Sign",9,2012,White,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 21) Warning Lights and Sign",9,2012,Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 21) Warning Lights and Sign",9,2012,Dark Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 21) Warning Lights and Sign",9,2012,Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 13) Desk with Computer and Chair",8,2012,Tan,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 2) Chainsaw with Logs",8,2012,Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 2) Chainsaw with Logs",8,2012,Dark Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 2) Chainsaw with Logs",8,2012,Light Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 2) Chainsaw with Logs",8,2012,Orange,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 22) Santa's Sled",8,2012,Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 2) Chainsaw with Logs",8,2012,Reddish Brown,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 22) Santa's Sled",8,2012,Green,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 13) Desk with Computer and Chair",8,2012,Yellow,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 22) Santa's Sled",8,2012,Dark Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 22) Santa's Sled",8,2012,Black,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 4) Stairs and Star for Tree",8,2012,Reddish Brown,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 4) Stairs and Star for Tree",8,2012,Tan,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 13) Desk with Computer and Chair",8,2012,Black,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 13) Desk with Computer and Chair",8,2012,Reddish Brown,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 22) Santa's Sled",8,2012,Light Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 13) Desk with Computer and Chair",8,2012,White,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 4) Stairs and Star for Tree",8,2012,Trans-Neon Green,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 20) Wheelbarrow with Spade and Snow",7,2012,Black,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 20) Wheelbarrow with Spade and Snow",7,2012,White,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 20) Wheelbarrow with Spade and Snow",7,2012,Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 20) Wheelbarrow with Spade and Snow",7,2012,Dark Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 18) Dog and Hydrant",6,2012,Light Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 18) Dog and Hydrant",6,2012,Dark Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 18) Dog and Hydrant",6,2012,Red,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 18) Dog and Hydrant",6,2012,Medium Dark Flesh,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 1) Fireman with Loudhailer",5,2012,Bright Light Orange,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 1) Fireman with Loudhailer",5,2012,Dark Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 1) Fireman with Loudhailer",5,2012,Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 6) Boy with Snowball",5,2012,Bright Green,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 6) Boy with Snowball",5,2012,Dark Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 6) Boy with Snowball",5,2012,Light Bluish Gray,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 6) Boy with Snowball",5,2012,White,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 6) Boy with Snowball",5,2012,Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 9) Mechanic with Wrench",5,2012,Black,3 +Advent Sub-Set,"Advent Calendar 2012, City (Day 9) Mechanic with Wrench",5,2012,Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 9) Mechanic with Wrench",5,2012,Medium Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 12) Female Firefighter",5,2012,Black,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 12) Female Firefighter",5,2012,Bright Light Orange,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 12) Female Firefighter",5,2012,Reddish Brown,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 12) Female Firefighter",5,2012,Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 9) Mechanic with Wrench",5,2012,Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 14) Box with Burning Logs",5,2012,Reddish Brown,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 14) Box with Burning Logs",5,2012,Trans-Orange,2 +Advent Sub-Set,"Advent Calendar 2012, City (Day 16) Girl with Snowball",5,2012,Blue,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 16) Girl with Snowball",5,2012,Dark Brown,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 16) Girl with Snowball",5,2012,Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 1) Fireman with Loudhailer",5,2012,Black,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 16) Girl with Snowball",5,2012,Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 16) Girl with Snowball",5,2012,White,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 19) Firefighter with Cup",5,2012,Yellow,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 19) Firefighter with Cup",5,2012,Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 19) Firefighter with Cup",5,2012,Dark Red,1 +Advent Sub-Set,"Advent Calendar 2012, City (Day 19) Firefighter with Cup",5,2012,Bright Light Orange,2 +Adventurers,Adventurer's Accessories,27,1998,Black,8 +Adventurers,Adventurer's Accessories,27,1998,Brown,4 +Adventurers,Adventurer's Accessories,27,1998,Green,1 +Adventurers,Adventurer's Accessories,27,1998,Light Gray,1 +Adventurers,Adventurer's Accessories,27,1998,Red,1 +Adventurers,Adventurer's Accessories,27,1998,Tan,2 +Adventurers,Adventurer's Accessories,27,1998,Trans-Clear,2 +Adventurers,Adventurer's Accessories,27,1998,Trans-Red,1 +Adventurers,Adventurer's Accessories,27,1998,White,2 +Adventurers,Adventurer's Accessories,27,1998,Yellow,2 +Agents,Mission 6: Mobile Command Center,1153,2008,Trans-Green,2 +Agents,Mission 6: Mobile Command Center,1153,2008,Trans-Clear,5 +Agents,Mission 6: Mobile Command Center,1153,2008,Trans-Black,3 +Agents,Mission 6: Mobile Command Center,1153,2008,Tan,1 +Agents,Mission 6: Mobile Command Center,1153,2008,Reddish Brown,1 +Agents,Mission 6: Mobile Command Center,1153,2008,Red,11 +Agents,Mission 6: Mobile Command Center,1153,2008,Pearl Light Gray,4 +Agents,Mission 6: Mobile Command Center,1153,2008,Metallic Silver,5 +Agents,Mission 6: Mobile Command Center,1153,2008,Metallic Gold,1 +Agents,Mission 6: Mobile Command Center,1153,2008,Light Bluish Gray,95 +Agents,Mission 6: Mobile Command Center,1153,2008,Dark Orange,1 +Agents,Mission 6: Mobile Command Center,1153,2008,Dark Brown,1 +Agents,Mission 6: Mobile Command Center,1153,2008,Dark Bluish Gray,45 +Agents,Mission 6: Mobile Command Center,1153,2008,Dark Blue,37 +Agents,Mission 6: Mobile Command Center,1153,2008,Blue,3 +Agents,Mission 6: Mobile Command Center,1153,2008,Black,60 +Agents,Mission 6: Mobile Command Center,1153,2008,Trans-Light Blue,3 +Agents,Mission 6: Mobile Command Center,1153,2008,Orange,12 +Agents,Mission 6: Mobile Command Center,1153,2008,Trans-Neon Green,3 +Agents,Mission 6: Mobile Command Center,1153,2008,Trans-Orange,2 +Agents,Mission 6: Mobile Command Center,1153,2008,Trans-Red,4 +Agents,Mission 6: Mobile Command Center,1153,2008,Trans-Yellow,2 +Agents,Mission 6: Mobile Command Center,1153,2008,White,6 +Agents,Mission 6: Mobile Command Center,1153,2008,Yellow,22 +Agents,Mission 8: Volcano Base,714,2008,Yellow,6 +Agents,Mission 8: Volcano Base,714,2008,[No Color],2 +Agents,Mission 8: Volcano Base,714,2008,Black,65 +Agents,Mission 8: Volcano Base,714,2008,Blue,3 +Agents,Mission 8: Volcano Base,714,2008,Dark Blue,7 +Agents,Mission 8: Volcano Base,714,2008,Dark Bluish Gray,27 +Agents,Mission 8: Volcano Base,714,2008,Dark Brown,4 +Agents,Mission 8: Volcano Base,714,2008,Dark Orange,1 +Agents,Mission 8: Volcano Base,714,2008,Green,1 +Agents,Mission 8: Volcano Base,714,2008,Light Bluish Gray,35 +Agents,Mission 8: Volcano Base,714,2008,Lime,4 +Agents,Mission 8: Volcano Base,714,2008,Metallic Silver,8 +Agents,Mission 8: Volcano Base,714,2008,Orange,10 +Agents,Mission 8: Volcano Base,714,2008,Pearl Light Gray,5 +Agents,Mission 8: Volcano Base,714,2008,Red,12 +Agents,Mission 8: Volcano Base,714,2008,Reddish Brown,4 +Agents,Mission 8: Volcano Base,714,2008,Trans-Black,1 +Agents,Mission 8: Volcano Base,714,2008,Trans-Neon Green,2 +Agents,Mission 8: Volcano Base,714,2008,Trans-Neon Orange,2 +Agents,Mission 8: Volcano Base,714,2008,Trans-Orange,4 +Agents,Mission 8: Volcano Base,714,2008,Trans-Red,5 +Agents,Mission 8: Volcano Base,714,2008,Trans-Yellow,2 +Agents,Mission 8: Volcano Base,714,2008,White,14 +Agents,Mission 7: Deep Sea Quest,520,2008,Metallic Silver,2 +Agents,Mission 7: Deep Sea Quest,520,2008,Yellow,10 +Agents,Mission 7: Deep Sea Quest,520,2008,White,2 +Agents,Mission 7: Deep Sea Quest,520,2008,Trans-Yellow,2 +Agents,Mission 7: Deep Sea Quest,520,2008,Trans-Red,3 +Agents,Mission 7: Deep Sea Quest,520,2008,Trans-Neon Green,1 +Agents,Mission 7: Deep Sea Quest,520,2008,Trans-Light Blue,2 +Agents,Mission 7: Deep Sea Quest,520,2008,Trans-Dark Pink,1 +Agents,Mission 7: Deep Sea Quest,520,2008,Orange,6 +Agents,Mission 7: Deep Sea Quest,520,2008,Pearl Light Gray,3 +Agents,Mission 7: Deep Sea Quest,520,2008,Red,4 +Agents,Mission 7: Deep Sea Quest,520,2008,Reddish Brown,3 +Agents,Mission 7: Deep Sea Quest,520,2008,Tan,2 +Agents,Mission 7: Deep Sea Quest,520,2008,Trans-Black,2 +Agents,Mission 7: Deep Sea Quest,520,2008,Trans-Green,2 +Agents,Mission 7: Deep Sea Quest,520,2008,[No Color],1 +Agents,Mission 7: Deep Sea Quest,520,2008,Black,52 +Agents,Mission 7: Deep Sea Quest,520,2008,Trans-Clear,2 +Agents,Mission 7: Deep Sea Quest,520,2008,Dark Blue,19 +Agents,Mission 7: Deep Sea Quest,520,2008,Dark Bluish Gray,32 +Agents,Mission 7: Deep Sea Quest,520,2008,Dark Red,3 +Agents,Mission 7: Deep Sea Quest,520,2008,Light Bluish Gray,36 +Agents,Mission 7: Deep Sea Quest,520,2008,Lime,1 +Agents,Mission 7: Deep Sea Quest,520,2008,Blue,6 +Agents,Mission 5: Turbocar Chase,496,2008,Yellow,3 +Agents,Mission 5: Turbocar Chase,496,2008,Trans-Red,4 +Agents,Mission 5: Turbocar Chase,496,2008,Trans-Neon Orange,1 +Agents,Mission 5: Turbocar Chase,496,2008,Trans-Neon Green,1 +Agents,Mission 5: Turbocar Chase,496,2008,Trans-Clear,3 +Agents,Mission 5: Turbocar Chase,496,2008,Trans-Black,1 +Agents,Mission 5: Turbocar Chase,496,2008,Red,16 +Agents,Mission 5: Turbocar Chase,496,2008,Black,66 +Agents,Mission 5: Turbocar Chase,496,2008,Trans-Yellow,2 +Agents,Mission 5: Turbocar Chase,496,2008,Pearl Light Gray,3 +Agents,Mission 5: Turbocar Chase,496,2008,Orange,9 +Agents,Mission 5: Turbocar Chase,496,2008,Metallic Silver,14 +Agents,Mission 5: Turbocar Chase,496,2008,Light Bluish Gray,20 +Agents,Mission 5: Turbocar Chase,496,2008,Dark Bluish Gray,29 +Agents,Mission 5: Turbocar Chase,496,2008,Dark Blue,9 +Agents,Mission 5: Turbocar Chase,496,2008,Blue,8 +Agents,Mission 5: Turbocar Chase,496,2008,Tan,2 +Agents,Mission 5: Turbocar Chase,496,2008,White,6 +Agents,Mission 5: Turbocar Chase,496,2008,[No Color],1 +Agents,Mission 3: Gold Hunt,351,2008,Trans-Neon Green,1 +Agents,Mission 3: Gold Hunt,351,2008,Trans-Clear,1 +Agents,Mission 3: Gold Hunt,351,2008,Trans-Black,2 +Agents,Mission 3: Gold Hunt,351,2008,Yellow,10 +Agents,Mission 3: Gold Hunt,351,2008,Trans-Yellow,1 +Agents,Mission 3: Gold Hunt,351,2008,Trans-Red,2 +Agents,Mission 3: Gold Hunt,351,2008,Trans-Orange,1 +Agents,Mission 3: Gold Hunt,351,2008,[No Color],1 +Agents,Mission 3: Gold Hunt,351,2008,Black,30 +Agents,Mission 3: Gold Hunt,351,2008,Blue,4 +Agents,Mission 3: Gold Hunt,351,2008,Dark Blue,10 +Agents,Mission 3: Gold Hunt,351,2008,Red,10 +Agents,Mission 3: Gold Hunt,351,2008,Dark Tan,1 +Agents,Mission 3: Gold Hunt,351,2008,Light Bluish Gray,34 +Agents,Mission 3: Gold Hunt,351,2008,Metallic Gold,3 +Agents,Mission 3: Gold Hunt,351,2008,Metallic Silver,4 +Agents,Mission 3: Gold Hunt,351,2008,Orange,10 +Agents,Mission 3: Gold Hunt,351,2008,Pearl Light Gray,2 +Agents,Mission 3: Gold Hunt,351,2008,Dark Bluish Gray,22 +Agents,Mission 4: Speedboat Rescue,339,2008,Red,10 +Agents,Mission 4: Speedboat Rescue,339,2008,Tan,2 +Agents,Mission 4: Speedboat Rescue,339,2008,Trans-Black,1 +Agents,Mission 4: Speedboat Rescue,339,2008,Trans-Green,1 +Agents,Mission 4: Speedboat Rescue,339,2008,Trans-Neon Green,1 +Agents,Mission 4: Speedboat Rescue,339,2008,Trans-Neon Orange,2 +Agents,Mission 4: Speedboat Rescue,339,2008,Trans-Red,1 +Agents,Mission 4: Speedboat Rescue,339,2008,White,6 +Agents,Mission 4: Speedboat Rescue,339,2008,Yellow,7 +Agents,Mission 4: Speedboat Rescue,339,2008,[No Color],1 +Agents,Mission 4: Speedboat Rescue,339,2008,Black,43 +Agents,Mission 4: Speedboat Rescue,339,2008,Blue,5 +Agents,Mission 4: Speedboat Rescue,339,2008,Dark Blue,16 +Agents,Mission 4: Speedboat Rescue,339,2008,Dark Bluish Gray,21 +Agents,Mission 4: Speedboat Rescue,339,2008,Dark Brown,1 +Agents,Mission 4: Speedboat Rescue,339,2008,Green,1 +Agents,Mission 4: Speedboat Rescue,339,2008,Light Bluish Gray,32 +Agents,Mission 4: Speedboat Rescue,339,2008,Lime,1 +Agents,Mission 4: Speedboat Rescue,339,2008,Metallic Silver,1 +Agents,Mission 4: Speedboat Rescue,339,2008,Orange,7 +Agents,Mission 4: Speedboat Rescue,339,2008,Pearl Light Gray,1 +Agents,Mission 2: Swamp Raid,230,2008,Dark Blue,3 +Agents,Mission 2: Swamp Raid,230,2008,Bright Green,1 +Agents,Mission 2: Swamp Raid,230,2008,Black,28 +Agents,Mission 2: Swamp Raid,230,2008,[No Color],1 +Agents,Mission 2: Swamp Raid,230,2008,Trans-Clear,1 +Agents,Mission 2: Swamp Raid,230,2008,Trans-Black,1 +Agents,Mission 2: Swamp Raid,230,2008,Tan,1 +Agents,Mission 2: Swamp Raid,230,2008,Reddish Brown,5 +Agents,Mission 2: Swamp Raid,230,2008,Red,5 +Agents,Mission 2: Swamp Raid,230,2008,Pearl Light Gray,1 +Agents,Mission 2: Swamp Raid,230,2008,Trans-Yellow,1 +Agents,Mission 2: Swamp Raid,230,2008,Orange,8 +Agents,Mission 2: Swamp Raid,230,2008,Metallic Silver,3 +Agents,Mission 2: Swamp Raid,230,2008,Light Bluish Gray,23 +Agents,Mission 2: Swamp Raid,230,2008,Green,4 +Agents,Mission 2: Swamp Raid,230,2008,Flat Silver,1 +Agents,Mission 2: Swamp Raid,230,2008,Dark Green,4 +Agents,Mission 2: Swamp Raid,230,2008,Dark Bluish Gray,15 +Agents,Mission 2: Swamp Raid,230,2008,Yellow,2 +Agents,Mission 2: Swamp Raid,230,2008,Trans-Red,2 +Agents,Mission 2: Swamp Raid,230,2008,Trans-Orange,1 +Agents,Mission 2: Swamp Raid,230,2008,Trans-Neon Orange,3 +Agents,Mission 2: Swamp Raid,230,2008,Trans-Neon Green,1 +Agents,Mission 1: Jetpack Pursuit,87,2008,Yellow,2 +Agents,Mission 1: Jetpack Pursuit,87,2008,Trans-Red,1 +Agents,Mission 1: Jetpack Pursuit,87,2008,Trans-Neon Orange,1 +Agents,Mission 1: Jetpack Pursuit,87,2008,Trans-Clear,1 +Agents,Mission 1: Jetpack Pursuit,87,2008,Tan,2 +Agents,Mission 1: Jetpack Pursuit,87,2008,Red,1 +Agents,Mission 1: Jetpack Pursuit,87,2008,Pearl Light Gray,3 +Agents,Mission 1: Jetpack Pursuit,87,2008,Orange,5 +Agents,Mission 1: Jetpack Pursuit,87,2008,Metallic Silver,1 +Agents,Mission 1: Jetpack Pursuit,87,2008,Light Bluish Gray,12 +Agents,Mission 1: Jetpack Pursuit,87,2008,Dark Bluish Gray,6 +Agents,Mission 1: Jetpack Pursuit,87,2008,Dark Blue,3 +Agents,Mission 1: Jetpack Pursuit,87,2008,Black,24 +Agents,Aerial Defense Unit,698,2009,[No Color],1 +Agents,Aerial Defense Unit,698,2009,Black,53 +Agents,Aerial Defense Unit,698,2009,Blue,3 +Agents,Aerial Defense Unit,698,2009,Dark Blue,13 +Agents,Aerial Defense Unit,698,2009,Dark Bluish Gray,37 +Agents,Aerial Defense Unit,698,2009,Dark Brown,2 +Agents,Aerial Defense Unit,698,2009,Green,1 +Agents,Aerial Defense Unit,698,2009,Light Bluish Gray,37 +Agents,Aerial Defense Unit,698,2009,Lime,1 +Agents,Aerial Defense Unit,698,2009,Orange,3 +Agents,Aerial Defense Unit,698,2009,Pearl Light Gray,3 +Agents,Aerial Defense Unit,698,2009,Red,14 +Agents,Aerial Defense Unit,698,2009,Reddish Brown,6 +Agents,Aerial Defense Unit,698,2009,Tan,3 +Agents,Aerial Defense Unit,698,2009,Trans-Black,1 +Agents,Aerial Defense Unit,698,2009,Trans-Green,1 +Agents,Aerial Defense Unit,698,2009,Trans-Neon Orange,2 +Agents,Aerial Defense Unit,698,2009,Trans-Orange,1 +Agents,Aerial Defense Unit,698,2009,Trans-Red,2 +Agents,Aerial Defense Unit,698,2009,Trans-Yellow,1 +Agents,Aerial Defense Unit,698,2009,White,3 +Agents,Aerial Defense Unit,698,2009,Yellow,12 +Agents,Robo Attack,412,2009,[No Color],1 +Agents,Robo Attack,412,2009,Black,50 +Agents,Robo Attack,412,2009,Blue,4 +Agents,Robo Attack,412,2009,Dark Blue,8 +Agents,Robo Attack,412,2009,Dark Bluish Gray,17 +Agents,Robo Attack,412,2009,Dark Brown,2 +Agents,Robo Attack,412,2009,Dark Red,1 +Agents,Robo Attack,412,2009,Light Bluish Gray,37 +Agents,Robo Attack,412,2009,Lime,2 +Agents,Robo Attack,412,2009,Medium Blue,1 +Agents,Robo Attack,412,2009,Metallic Silver,6 +Agents,Robo Attack,412,2009,Orange,10 +Agents,Robo Attack,412,2009,Red,6 +Agents,Robo Attack,412,2009,Tan,2 +Agents,Robo Attack,412,2009,Trans-Black,1 +Agents,Robo Attack,412,2009,Trans-Clear,2 +Agents,Robo Attack,412,2009,Trans-Neon Orange,2 +Agents,Robo Attack,412,2009,Trans-Orange,1 +Agents,Robo Attack,412,2009,Trans-Red,4 +Agents,Robo Attack,412,2009,Trans-Yellow,1 +Agents,Robo Attack,412,2009,White,5 +Agents,Robo Attack,412,2009,Yellow,7 +Agents,4-Wheeling Pursuit,318,2009,Metallic Silver,1 +Agents,4-Wheeling Pursuit,318,2009,Orange,9 +Agents,4-Wheeling Pursuit,318,2009,Red,7 +Agents,4-Wheeling Pursuit,318,2009,Tan,2 +Agents,4-Wheeling Pursuit,318,2009,Trans-Clear,2 +Agents,4-Wheeling Pursuit,318,2009,Trans-Neon Green,1 +Agents,4-Wheeling Pursuit,318,2009,Trans-Red,2 +Agents,4-Wheeling Pursuit,318,2009,Trans-Yellow,2 +Agents,4-Wheeling Pursuit,318,2009,White,8 +Agents,4-Wheeling Pursuit,318,2009,Yellow,13 +Agents,4-Wheeling Pursuit,318,2009,Black,33 +Agents,4-Wheeling Pursuit,318,2009,Blue,1 +Agents,4-Wheeling Pursuit,318,2009,Dark Blue,8 +Agents,4-Wheeling Pursuit,318,2009,Dark Bluish Gray,13 +Agents,4-Wheeling Pursuit,318,2009,Dark Red,1 +Agents,4-Wheeling Pursuit,318,2009,Green,2 +Agents,4-Wheeling Pursuit,318,2009,Light Bluish Gray,27 +Agents,4-Wheeling Pursuit,318,2009,Lime,3 +Agents,River Heist,202,2009,Red,5 +Agents,River Heist,202,2009,Trans-Yellow,1 +Agents,River Heist,202,2009,Yellow,4 +Agents,River Heist,202,2009,Dark Orange,1 +Agents,River Heist,202,2009,Green,3 +Agents,River Heist,202,2009,Light Bluish Gray,25 +Agents,River Heist,202,2009,Lime,4 +Agents,River Heist,202,2009,Metallic Gold,1 +Agents,River Heist,202,2009,Orange,8 +Agents,River Heist,202,2009,Pearl Dark Gray,1 +Agents,River Heist,202,2009,Medium Blue,3 +Agents,River Heist,202,2009,Pearl Light Gray,2 +Agents,River Heist,202,2009,Black,24 +Agents,River Heist,202,2009,Blue,3 +Agents,River Heist,202,2009,Dark Blue,4 +Agents,River Heist,202,2009,Dark Bluish Gray,13 +Agents,Gold Tooth's Getaway,67,2009,Black,11 +Agents,Gold Tooth's Getaway,67,2009,Blue,1 +Agents,Gold Tooth's Getaway,67,2009,Dark Blue,4 +Agents,Gold Tooth's Getaway,67,2009,Dark Bluish Gray,1 +Agents,Gold Tooth's Getaway,67,2009,Light Bluish Gray,8 +Agents,Gold Tooth's Getaway,67,2009,Metallic Gold,3 +Agents,Gold Tooth's Getaway,67,2009,Orange,5 +Agents,Gold Tooth's Getaway,67,2009,Yellow,4 +Agents,Gold Tooth's Getaway,67,2009,Tan,2 +Agori,Tarduk,17,2009,Trans-Neon Orange,1 +Agori,Tarduk,17,2009,Lime,3 +Agori,Tarduk,17,2009,Dark Green,4 +Agori,Zesk,16,2009,Black,4 +Agori,Zesk,16,2009,Light Bluish Gray,1 +Agori,Zesk,16,2009,Pearl Light Gray,1 +Agori,Zesk,16,2009,Tan,2 +Agori,Zesk,16,2009,Trans-Neon Orange,1 +Agori,Berix,15,2009,Blue,2 +Agori,Berix,15,2009,Dark Blue,1 +Agori,Berix,15,2009,Medium Blue,4 +Agori,Berix,15,2009,Pearl Gold,1 +Agori,Berix,15,2009,Pearl Light Gray,1 +Agori,Berix,15,2009,Trans-Neon Green,1 +Agori,Raanu,14,2009,Dark Bluish Gray,1 +Agori,Raanu,14,2009,Dark Red,4 +Agori,Raanu,14,2009,Red,1 +Agori,Raanu,14,2009,Trans-Neon Orange,1 +Agori,Metus,14,2009,Medium Blue,1 +Agori,Metus,14,2009,Pearl Light Gray,2 +Agori,Metus,14,2009,Trans-Medium Blue,1 +Agori,Metus,14,2009,White,4 +Agori,Raanu,14,2009,Bright Light Orange,2 +Agori,Atakus,13,2009,Black,4 +Agori,Atakus,13,2009,Trans-Neon Orange,1 +Agori,Atakus,13,2009,Dark Bluish Gray,3 +Airjitzu,Airjitzu Kai Flyer,47,2015,Pearl Gold,10 +Airjitzu,Airjitzu Kai Flyer,47,2015,Red,7 +Airjitzu,Airjitzu Kai Flyer,47,2015,Reddish Brown,1 +Airjitzu,Airjitzu Kai Flyer,47,2015,Trans-Clear,1 +Airjitzu,Airjitzu Morro Flyer,47,2015,Yellowish Green,4 +Airjitzu,Airjitzu Kai Flyer,47,2015,Trans-Yellow,1 +Airjitzu,Airjitzu Morro Flyer,47,2015,Black,13 +Airjitzu,Airjitzu Morro Flyer,47,2015,Dark Green,5 +Airjitzu,Airjitzu Morro Flyer,47,2015,Flat Silver,1 +Airjitzu,Airjitzu Morro Flyer,47,2015,Green,2 +Airjitzu,Airjitzu Morro Flyer,47,2015,Pearl Gold,1 +Airjitzu,Airjitzu Morro Flyer,47,2015,Sand Green,2 +Airjitzu,Airjitzu Kai Flyer,47,2015,Trans-Orange,1 +Airjitzu,Airjitzu Morro Flyer,47,2015,Trans-Clear,1 +Airjitzu,Airjitzu Morro Flyer,47,2015,Trans-Neon Green,3 +Airjitzu,Airjitzu Kai Flyer,47,2015,Black,11 +Airjitzu,Airjitzu Kai Flyer,47,2015,Dark Bluish Gray,1 +Airjitzu,Airjitzu Kai Flyer,47,2015,Dark Brown,1 +Airjitzu,Airjitzu Cole Flyer,46,2015,Black,12 +Airjitzu,Airjitzu Cole Flyer,46,2015,Orange,2 +Airjitzu,Airjitzu Cole Flyer,46,2015,Pearl Dark Gray,2 +Airjitzu,Airjitzu Cole Flyer,46,2015,Pearl Gold,10 +Airjitzu,Airjitzu Cole Flyer,46,2015,Reddish Brown,4 +Airjitzu,Airjitzu Cole Flyer,46,2015,Trans-Clear,1 +Airjitzu,Airjitzu Cole Flyer,46,2015,Trans-Orange,1 +Airjitzu,Airjitzu Jay Flyer,46,2015,Black,10 +Airjitzu,Airjitzu Jay Flyer,46,2015,Blue,7 +Airjitzu,Airjitzu Jay Flyer,46,2015,Dark Bluish Gray,1 +Airjitzu,Airjitzu Jay Flyer,46,2015,Flat Silver,1 +Airjitzu,Airjitzu Jay Flyer,46,2015,Pearl Gold,9 +Airjitzu,Airjitzu Jay Flyer,46,2015,Trans-Dark Blue,1 +Airjitzu,Airjitzu Jay Flyer,46,2015,Trans-Light Blue,1 +Airjitzu,Airjitzu Jay Flyer,46,2015,Trans-Clear,1 +Airjitzu,Airjitzu Wrayth Flyer,43,2015,Black,12 +Airjitzu,Airjitzu Wrayth Flyer,43,2015,Dark Blue,6 +Airjitzu,Airjitzu Wrayth Flyer,43,2015,Dark Bluish Gray,1 +Airjitzu,Airjitzu Wrayth Flyer,43,2015,Flat Silver,1 +Airjitzu,Airjitzu Wrayth Flyer,43,2015,Pearl Dark Gray,2 +Airjitzu,Airjitzu Wrayth Flyer,43,2015,Pearl Gold,1 +Airjitzu,Airjitzu Wrayth Flyer,43,2015,Trans-Clear,1 +Airjitzu,Airjitzu Wrayth Flyer,43,2015,Yellowish Green,6 +Airjitzu,Airjitzu Zane Flyer,43,2015,Black,9 +Airjitzu,Airjitzu Zane Flyer,43,2015,Dark Bluish Gray,1 +Airjitzu,Airjitzu Zane Flyer,43,2015,Flat Silver,2 +Airjitzu,Airjitzu Zane Flyer,43,2015,Pearl Gold,8 +Airjitzu,Airjitzu Zane Flyer,43,2015,Trans-Clear,2 +Airjitzu,Airjitzu Zane Flyer,43,2015,Trans-Light Blue,1 +Airjitzu,Airjitzu Zane Flyer,43,2015,White,6 +Airjitzu,Airjitzu Battle Grounds,652,2016,Black,64 +Airjitzu,Airjitzu Battle Grounds,652,2016,Blue,1 +Airjitzu,Airjitzu Battle Grounds,652,2016,Dark Azure,1 +Airjitzu,Airjitzu Battle Grounds,652,2016,Dark Bluish Gray,30 +Airjitzu,Airjitzu Battle Grounds,652,2016,Dark Red,1 +Airjitzu,Airjitzu Battle Grounds,652,2016,Dark Tan,3 +Airjitzu,Airjitzu Battle Grounds,652,2016,Flat Silver,4 +Airjitzu,Airjitzu Battle Grounds,652,2016,Green,1 +Airjitzu,Airjitzu Battle Grounds,652,2016,Light Bluish Gray,34 +Airjitzu,Airjitzu Battle Grounds,652,2016,Medium Blue,1 +Airjitzu,Airjitzu Battle Grounds,652,2016,Orange,1 +Airjitzu,Airjitzu Battle Grounds,652,2016,Pearl Gold,7 +Airjitzu,Airjitzu Battle Grounds,652,2016,Red,17 +Airjitzu,Airjitzu Battle Grounds,652,2016,Reddish Brown,20 +Airjitzu,Airjitzu Battle Grounds,652,2016,Sand Green,5 +Airjitzu,Airjitzu Battle Grounds,652,2016,Tan,15 +Airjitzu,Airjitzu Battle Grounds,652,2016,Trans-Black,1 +Airjitzu,Airjitzu Battle Grounds,652,2016,Trans-Clear,4 +Airjitzu,Airjitzu Battle Grounds,652,2016,Trans-Neon Green,3 +Airjitzu,Airjitzu Battle Grounds,652,2016,White,8 +Airjitzu,Airjitzu Battle Grounds,652,2016,Yellow,1 +Airjitzu,Airjitzu Battle Grounds,652,2016,Yellowish Green,1 +Airport,Airplanes,79,1961,Blue,7 +Airport,Airplanes,79,1961,Red,5 +Airport,Airplanes,79,1961,Trans-Clear,3 +Airport,Airplanes,79,1961,White,3 +Airport,Airplanes,79,1961,Yellow,5 +Airport,Biplane,44,1967,Black,1 +Airport,Biplane,44,1967,Light Gray,3 +Airport,Biplane,44,1967,Red,11 +Airport,Biplane,44,1967,Trans-Clear,1 +Airport,Biplane,44,1967,White,1 +Airport,Jumbo Jet,117,1970,Black,9 +Airport,Jumbo Jet,117,1970,Light Gray,4 +Airport,Jumbo Jet,117,1970,Trans-Clear,1 +Airport,Jumbo Jet,117,1970,White,9 +Airport,Baggage Carts,45,1970,Black,6 +Airport,Baggage Carts,45,1970,Red,6 +Airport,Baggage Carts,45,1970,Yellow,4 +Airport,Martinair Cessna,82,1978,Black,1 +Airport,Martinair Cessna,82,1978,Light Gray,1 +Airport,Martinair Cessna,82,1978,Red,6 +Airport,Martinair Cessna,82,1978,Trans-Clear,2 +Airport,Martinair Cessna,82,1978,White,15 +Airport,Martinair DC-9,63,1978,Black,1 +Airport,Martinair DC-9,63,1978,Light Gray,8 +Airport,Martinair DC-9,63,1978,Red,5 +Airport,Martinair DC-9,63,1978,Trans-Clear,2 +Airport,Martinair DC-9,63,1978,White,12 +Airport,Sterling Airways Biplane,44,1978,Black,2 +Airport,Sterling Airways Biplane,44,1978,Light Gray,9 +Airport,Sterling Airways Biplane,44,1978,Red,2 +Airport,Sterling Airways Biplane,44,1978,Trans-Clear,2 +Airport,Sterling Airways Biplane,44,1978,White,6 +Airport,Airport,55,1984,[No Color],3 +Airport,Airport,55,1984,Blue,7 +Airport,Airport,55,1984,Fabuland Brown,3 +Airport,Airport,55,1984,Green,2 +Airport,Airport,55,1984,Light Gray,2 +Airport,Airport,55,1984,Red,6 +Airport,Airport,55,1984,White,1 +Airport,Airport,55,1984,Yellow,8 +Airport,Sports Airplane,9,1984,[No Color],1 +Airport,Sports Airplane,9,1984,Red,6 +Airport,Sports Airplane,9,1984,Yellow,2 +Airport,Airport,539,1985,Red,35 +Airport,Airport,539,1985,Trans-Clear,4 +Airport,Airport,539,1985,Trans-Dark Blue,1 +Airport,Airport,539,1985,Trans-Green,1 +Airport,Airport,539,1985,Trans-Light Blue,4 +Airport,Airport,539,1985,Trans-Red,2 +Airport,Airport,539,1985,Trans-Yellow,1 +Airport,Airport,539,1985,White,63 +Airport,Airport,539,1985,Yellow,14 +Airport,Airport,539,1985,[No Color],1 +Airport,Airport,539,1985,Black,43 +Airport,Airport,539,1985,Blue,3 +Airport,Airport,539,1985,Green,6 +Airport,Airport,539,1985,Light Gray,8 +Airport,Jet Airliner,137,1985,Blue,1 +Airport,Jet Airliner,137,1985,Brown,1 +Airport,Jet Airliner,137,1985,Light Gray,6 +Airport,Jet Airliner,137,1985,Red,9 +Airport,Jet Airliner,137,1985,Trans-Green,1 +Airport,Jet Airliner,137,1985,Trans-Light Blue,2 +Airport,Jet Airliner,137,1985,Trans-Red,1 +Airport,Jet Airliner,137,1985,White,31 +Airport,Jet Airliner,137,1985,Yellow,1 +Airport,Jet Airliner,137,1985,Black,11 +Airport,Airplane,31,1985,Trans-Clear,1 +Airport,Airplane,31,1985,Black,2 +Airport,Airplane,31,1985,Blue,12 +Airport,Airplane,31,1985,Red,2 +Airport,Airplane,31,1985,White,2 +Airport,Airplane,31,1985,Yellow,1 +Airport,Aeroplane,9,1985,Red,6 +Airport,Aeroplane,9,1985,Yellow,2 +Airport,Aeroplane,9,1985,[No Color],1 +Airport,Prop Plane,570,1988,[No Color],1 +Airport,Prop Plane,570,1988,Black,14 +Airport,Prop Plane,570,1988,Light Gray,28 +Airport,Prop Plane,570,1988,Red,7 +Airport,Prop Plane,570,1988,Trans-Green,1 +Airport,Prop Plane,570,1988,Trans-Red,2 +Airport,Prop Plane,570,1988,Yellow,32 +Airport,Aeroplane,17,2001,Black,2 +Airport,Aeroplane,17,2001,Green,1 +Airport,Aeroplane,17,2001,Light Gray,1 +Airport,Aeroplane,17,2001,Red,4 +Airport,Aeroplane,17,2001,Trans-Neon Green,1 +Airport,Aeroplane,17,2001,Yellow,3 +Airport,A.I.R. Operations HQ,174,2002,Black,11 +Airport,A.I.R. Operations HQ,174,2002,Bright Green,1 +Airport,A.I.R. Operations HQ,174,2002,Chrome Silver,1 +Airport,A.I.R. Operations HQ,174,2002,Dark Gray,4 +Airport,A.I.R. Operations HQ,174,2002,Light Gray,10 +Airport,A.I.R. Operations HQ,174,2002,Orange,10 +Airport,A.I.R. Operations HQ,174,2002,Red,5 +Airport,A.I.R. Operations HQ,174,2002,Royal Blue,1 +Airport,A.I.R. Operations HQ,174,2002,Trans-Medium Blue,4 +Airport,A.I.R. Operations HQ,174,2002,Trans-Neon Green,6 +Airport,A.I.R. Operations HQ,174,2002,Trans-Neon Orange,1 +Airport,A.I.R. Operations HQ,174,2002,Unknown,5 +Airport,A.I.R. Operations HQ,174,2002,White,29 +Airport,A.I.R. Operations HQ,174,2002,Yellow,1 +Airport,A.I.R. Patrol Jet,65,2002,Black,2 +Airport,A.I.R. Patrol Jet,65,2002,Chrome Silver,1 +Airport,A.I.R. Patrol Jet,65,2002,Dark Gray,1 +Airport,A.I.R. Patrol Jet,65,2002,Light Gray,7 +Airport,A.I.R. Patrol Jet,65,2002,Orange,4 +Airport,A.I.R. Patrol Jet,65,2002,Royal Blue,1 +Airport,A.I.R. Patrol Jet,65,2002,Trans-Neon Green,1 +Airport,A.I.R. Patrol Jet,65,2002,Unknown,2 +Airport,A.I.R. Patrol Jet,65,2002,White,21 +Airport,Twin Rotor Cargo,44,2002,White,7 +Airport,Twin Rotor Cargo,44,2002,[No Color],2 +Airport,Twin Rotor Cargo,44,2002,Black,4 +Airport,Twin Rotor Cargo,44,2002,Chrome Silver,1 +Airport,Twin Rotor Cargo,44,2002,Light Gray,4 +Airport,Twin Rotor Cargo,44,2002,Orange,3 +Airport,Twin Rotor Cargo,44,2002,Trans-Medium Blue,1 +Airport,Twin Rotor Cargo,44,2002,Trans-Neon Green,1 +Airport,Dual Turbo Prop,32,2002,Black,4 +Airport,Dual Turbo Prop,32,2002,Light Gray,5 +Airport,Dual Turbo Prop,32,2002,Orange,1 +Airport,Dual Turbo Prop,32,2002,Trans-Clear,1 +Airport,Dual Turbo Prop,32,2002,Trans-Light Blue,1 +Airport,Dual Turbo Prop,32,2002,Trans-Neon Orange,1 +Airport,Dual Turbo Prop,32,2002,Unknown,2 +Airport,Dual Turbo Prop,32,2002,Yellow,5 +Airport,Red Recon Flyer,21,2002,Red,4 +Airport,Red Recon Flyer,21,2002,Unknown,1 +Airport,Red Recon Flyer,21,2002,Trans-Neon Green,2 +Airport,Red Recon Flyer,21,2002,Light Gray,5 +Airport,Red Recon Flyer,21,2002,Black,4 +Airport,Ultralight Flyer,16,2002,Orange,1 +Airport,Ultralight Flyer,16,2002,Light Gray,2 +Airport,Ultralight Flyer,16,2002,Black,2 +Airport,Ultralight Flyer (Kabaya Promotional),16,2002,White,4 +Airport,Ultralight Flyer,16,2002,Trans-Clear,1 +Airport,Ultralight Flyer,16,2002,Unknown,1 +Airport,Ultralight Flyer,16,2002,White,4 +Airport,Ultralight Flyer (Kabaya Promotional),16,2002,Black,2 +Airport,Ultralight Flyer (Kabaya Promotional),16,2002,Light Gray,2 +Airport,Ultralight Flyer (Kabaya Promotional),16,2002,Orange,1 +Airport,Ultralight Flyer (Kabaya Promotional),16,2002,Trans-Clear,1 +Airport,Ultralight Flyer (Kabaya Promotional),16,2002,Unknown,1 +Airport,Turbo Chopper (Kabaya Promotional),13,2002,White,4 +Airport,Turbo Chopper (Kabaya Promotional),13,2002,Black,1 +Airport,Turbo Chopper,13,2002,Black,1 +Airport,Turbo Chopper,13,2002,Light Gray,2 +Airport,Turbo Chopper,13,2002,Orange,3 +Airport,Turbo Chopper,13,2002,Unknown,1 +Airport,Turbo Chopper,13,2002,White,4 +Airport,Turbo Chopper (Kabaya Promotional),13,2002,Light Gray,2 +Airport,Turbo Chopper (Kabaya Promotional),13,2002,Orange,3 +Airport,Turbo Chopper (Kabaya Promotional),13,2002,Unknown,1 +Airport,Super Glider,7,2002,White,2 +Airport,Super Glider (Kabaya Promotional),7,2002,White,2 +Airport,Super Glider (Kabaya Promotional),7,2002,Unknown,1 +Airport,Super Glider,7,2002,Black,1 +Airport,Super Glider,7,2002,Light Gray,1 +Airport,Super Glider,7,2002,Orange,1 +Airport,Super Glider (Kabaya Promotional),7,2002,Orange,1 +Airport,Super Glider (Kabaya Promotional),7,2002,Light Gray,1 +Airport,Super Glider (Kabaya Promotional),7,2002,Black,1 +Airport,Super Glider,7,2002,Unknown,1 +Airport,Passenger Plane,161,2003,Light Gray,13 +Airport,Passenger Plane,161,2003,Medium Blue,1 +Airport,Passenger Plane,161,2003,Red,6 +Airport,Passenger Plane,161,2003,Trans-Black,2 +Airport,Passenger Plane,161,2003,Trans-Clear,1 +Airport,Passenger Plane,161,2003,Trans-Green,1 +Airport,Passenger Plane,161,2003,Trans-Red,1 +Airport,Passenger Plane,161,2003,White,29 +Airport,Passenger Plane,161,2003,Yellow,4 +Airport,Passenger Plane,161,2003,[No Color],1 +Airport,Passenger Plane,161,2003,Black,7 +Airport,Passenger Plane,161,2003,Brown,1 +Airport,Passenger Plane,161,2003,Dark Blue,2 +Airport,Passenger Plane,161,2003,Dark Bluish Gray,13 +Airport,Passenger Plane,161,2003,Dark Orange,1 +Airport,Passenger Plane - SAS Version,140,2003,Medium Blue,1 +Airport,Passenger Plane - SAS Version,140,2003,Light Bluish Gray,12 +Airport,Passenger Plane - SAS Version,140,2003,Black,4 +Airport,Passenger Plane - SAS Version,140,2003,Brown,1 +Airport,Passenger Plane - SAS Version,140,2003,Dark Bluish Gray,13 +Airport,Passenger Plane - SAS Version,140,2003,Light Gray,1 +Airport,Passenger Plane - SAS Version,140,2003,Red,4 +Airport,Passenger Plane - SAS Version,140,2003,Trans-Black,2 +Airport,Passenger Plane - SAS Version,140,2003,Trans-Clear,1 +Airport,Passenger Plane - SAS Version,140,2003,Trans-Green,1 +Airport,Passenger Plane - SAS Version,140,2003,Trans-Red,1 +Airport,Passenger Plane - SAS Version,140,2003,White,27 +Airport,Passenger Plane - SAS Version,140,2003,Yellow,1 +Airport,Airplane,33,2003,Blue,1 +Airport,Airplane,33,2003,Dark Gray,1 +Airport,Airplane,33,2003,Light Gray,5 +Airport,Airplane,33,2003,Red,3 +Airport,Airplane,33,2003,Trans-Clear,2 +Airport,Airplane,33,2003,Trans-Red,1 +Airport,Airplane,33,2003,Yellow,3 +Airport,Airplane,33,2003,Trans-Green,1 +Airport,Airplane,33,2003,Black,1 +Airport,City Airport -City Logo Box,913,2004,[No Color],1 +Airport,City Airport -City Logo Box,913,2004,Black,50 +Airport,City Airport -City Logo Box,913,2004,Blue,21 +Airport,City Airport -City Logo Box,913,2004,Brown,1 +Airport,City Airport -City Logo Box,913,2004,Green,15 +Airport,City Airport -City Logo Box,913,2004,Light Bluish Gray,50 +Airport,City Airport -City Logo Box,913,2004,Red,36 +Airport,City Airport -City Logo Box,913,2004,Reddish Brown,3 +Airport,City Airport -City Logo Box,913,2004,Trans-Clear,3 +Airport,City Airport -City Logo Box,913,2004,Trans-Dark Blue,1 +Airport,City Airport -City Logo Box,913,2004,Trans-Green,2 +Airport,City Airport -City Logo Box,913,2004,Trans-Light Blue,11 +Airport,City Airport -City Logo Box,913,2004,Trans-Red,4 +Airport,City Airport -City Logo Box,913,2004,Trans-Yellow,3 +Airport,City Airport -City Logo Box,913,2004,White,76 +Airport,City Airport -City Logo Box,913,2004,Yellow,47 +Airport,City Airport -Full Size Image Box,913,2004,[No Color],1 +Airport,City Airport -Full Size Image Box,913,2004,Black,50 +Airport,City Airport -Full Size Image Box,913,2004,Blue,21 +Airport,City Airport -Full Size Image Box,913,2004,Brown,1 +Airport,City Airport -Full Size Image Box,913,2004,Green,15 +Airport,City Airport -Full Size Image Box,913,2004,Light Bluish Gray,50 +Airport,City Airport -Full Size Image Box,913,2004,Red,36 +Airport,City Airport -Full Size Image Box,913,2004,Reddish Brown,3 +Airport,City Airport -Full Size Image Box,913,2004,Trans-Clear,3 +Airport,City Airport -Full Size Image Box,913,2004,Trans-Dark Blue,1 +Airport,City Airport -Full Size Image Box,913,2004,Trans-Green,2 +Airport,City Airport -Full Size Image Box,913,2004,Trans-Light Blue,11 +Airport,City Airport -Full Size Image Box,913,2004,Trans-Red,4 +Airport,City Airport -Full Size Image Box,913,2004,Trans-Yellow,3 +Airport,City Airport -Full Size Image Box,913,2004,White,76 +Airport,City Airport -Full Size Image Box,913,2004,Yellow,47 +Airport,Motion Power,613,2006,Black,29 +Airport,Motion Power,613,2006,Blue,3 +Airport,Motion Power,613,2006,Chrome Silver,1 +Airport,Motion Power,613,2006,Dark Bluish Gray,23 +Airport,Motion Power,613,2006,Light Bluish Gray,45 +Airport,Motion Power,613,2006,Orange,6 +Airport,Motion Power,613,2006,Red,33 +Airport,Motion Power,613,2006,Tan,1 +Airport,Motion Power,613,2006,Trans-Black,1 +Airport,Motion Power,613,2006,Trans-Clear,2 +Airport,Motion Power,613,2006,Trans-Neon Orange,1 +Airport,Motion Power,613,2006,Trans-Orange,1 +Airport,Motion Power,613,2006,White,1 +Airport,Motion Power,613,2006,Yellow,1 +Airport,Passenger Plane - Aeroflot Version,161,2006,[No Color],2 +Airport,Passenger Plane - Aeroflot Version,161,2006,Black,7 +Airport,Passenger Plane - Aeroflot Version,161,2006,Brown,1 +Airport,Passenger Plane - Aeroflot Version,161,2006,Dark Blue,2 +Airport,Passenger Plane - Aeroflot Version,161,2006,Dark Bluish Gray,13 +Airport,Passenger Plane - Aeroflot Version,161,2006,Dark Orange,1 +Airport,Passenger Plane - Aeroflot Version,161,2006,Light Bluish Gray,12 +Airport,Passenger Plane - Aeroflot Version,161,2006,Light Gray,1 +Airport,Passenger Plane - Aeroflot Version,161,2006,Medium Blue,1 +Airport,Passenger Plane - Aeroflot Version,161,2006,Red,6 +Airport,Passenger Plane - Aeroflot Version,161,2006,Trans-Black,2 +Airport,Passenger Plane - Aeroflot Version,161,2006,Trans-Clear,1 +Airport,Passenger Plane - Aeroflot Version,161,2006,Trans-Green,1 +Airport,Passenger Plane - Aeroflot Version,161,2006,Trans-Red,1 +Airport,Passenger Plane - Aeroflot Version,161,2006,White,29 +Airport,Passenger Plane - Aeroflot Version,161,2006,Yellow,4 +Airport,Passenger Plane - KLM Version,137,2006,Black,4 +Airport,Passenger Plane - KLM Version,137,2006,Dark Bluish Gray,13 +Airport,Passenger Plane - KLM Version,137,2006,Light Bluish Gray,12 +Airport,Passenger Plane - KLM Version,137,2006,Light Gray,1 +Airport,Passenger Plane - KLM Version,137,2006,Medium Blue,1 +Airport,Passenger Plane - KLM Version,137,2006,Red,4 +Airport,Passenger Plane - KLM Version,137,2006,Reddish Brown,1 +Airport,Passenger Plane - KLM Version,137,2006,Trans-Black,2 +Airport,Passenger Plane - KLM Version,137,2006,Trans-Clear,1 +Airport,Passenger Plane - KLM Version,137,2006,Trans-Green,1 +Airport,Passenger Plane - KLM Version,137,2006,Trans-Red,1 +Airport,Passenger Plane - KLM Version,137,2006,White,26 +Airport,Passenger Plane - KLM Version,137,2006,Yellow,1 +Airport,Airport Building Set,309,2011,Black,10 +Airport,Airport Building Set,309,2011,Blue,9 +Airport,Airport Building Set,309,2011,Dark Bluish Gray,6 +Airport,Airport Building Set,309,2011,Dark Brown,1 +Airport,Airport Building Set,309,2011,Green,10 +Airport,Airport Building Set,309,2011,Light Bluish Gray,14 +Airport,Airport Building Set,309,2011,Lime,3 +Airport,Airport Building Set,309,2011,Medium Blue,1 +Airport,Airport Building Set,309,2011,Orange,10 +Airport,Airport Building Set,309,2011,Red,19 +Airport,Airport Building Set,309,2011,Reddish Brown,2 +Airport,Airport Building Set,309,2011,Trans-Clear,3 +Airport,Airport Building Set,309,2011,Trans-Dark Blue,1 +Airport,Airport Building Set,309,2011,Trans-Green,1 +Airport,Airport Building Set,309,2011,Trans-Light Blue,1 +Airport,Airport Building Set,309,2011,Trans-Neon Green,1 +Airport,Airport Building Set,309,2011,Trans-Neon Orange,2 +Airport,Airport Building Set,309,2011,Trans-Yellow,1 +Airport,Airport Building Set,309,2011,White,10 +Airport,Airport Building Set,309,2011,Yellow,13 +Airport,Aviation Adventures,619,2013,Black,34 +Airport,Aviation Adventures,619,2013,Blue,34 +Airport,Aviation Adventures,619,2013,Dark Blue,2 +Airport,Aviation Adventures,619,2013,Dark Bluish Gray,6 +Airport,Aviation Adventures,619,2013,Dark Brown,1 +Airport,Aviation Adventures,619,2013,Flat Silver,3 +Airport,Aviation Adventures,619,2013,Light Bluish Gray,26 +Airport,Aviation Adventures,619,2013,Metallic Silver,1 +Airport,Aviation Adventures,619,2013,Orange,1 +Airport,Aviation Adventures,619,2013,Red,6 +Airport,Aviation Adventures,619,2013,Reddish Brown,1 +Airport,Aviation Adventures,619,2013,Tan,3 +Airport,Aviation Adventures,619,2013,Trans-Black,1 +Airport,Aviation Adventures,619,2013,Trans-Green,1 +Airport,Aviation Adventures,619,2013,Trans-Neon Green,1 +Airport,Aviation Adventures,619,2013,Trans-Red,2 +Airport,Aviation Adventures,619,2013,Trans-Yellow,1 +Airport,Aviation Adventures,619,2013,White,36 +Airport,Aviation Adventures,619,2013,Yellow,22 +Airport,Red Rotors,145,2013,Black,7 +Airport,Red Rotors,145,2013,Dark Bluish Gray,6 +Airport,Red Rotors,145,2013,Flat Silver,1 +Airport,Red Rotors,145,2013,Light Bluish Gray,9 +Airport,Red Rotors,145,2013,Orange,5 +Airport,Red Rotors,145,2013,Red,18 +Airport,Red Rotors,145,2013,Tan,1 +Airport,Red Rotors,145,2013,Trans-Black,1 +Airport,Red Rotors,145,2013,Trans-Clear,1 +Airport,Red Rotors,145,2013,Trans-Yellow,2 +Airport,Red Rotors,145,2013,White,1 +Airport,Cargo Plane,1295,2014,[No Color],2 +Airport,Cargo Plane,1295,2014,Black,41 +Airport,Cargo Plane,1295,2014,Blue,12 +Airport,Cargo Plane,1295,2014,Dark Bluish Gray,7 +Airport,Cargo Plane,1295,2014,Dark Tan,2 +Airport,Cargo Plane,1295,2014,Light Bluish Gray,30 +Airport,Cargo Plane,1295,2014,Red,7 +Airport,Cargo Plane,1295,2014,Tan,6 +Airport,Cargo Plane,1295,2014,Trans-Bright Green,1 +Airport,Cargo Plane,1295,2014,Trans-Clear,1 +Airport,Cargo Plane,1295,2014,Trans-Red,1 +Airport,Cargo Plane,1295,2014,White,31 +Airport,Race Plane,88,2017,Black,18 +Airport,Race Plane,88,2017,Blue,1 +Airport,Race Plane,88,2017,Dark Blue,1 +Airport,Race Plane,88,2017,Dark Bluish Gray,2 +Airport,Race Plane,88,2017,Dark Tan,1 +Airport,Race Plane,88,2017,Green,2 +Airport,Race Plane,88,2017,Light Bluish Gray,5 +Airport,Race Plane,88,2017,Red,13 +Airport,Race Plane,88,2017,Trans-Black,1 +Airport,Race Plane,88,2017,Trans-Clear,1 +Airport,Race Plane,88,2017,White,2 +Airport,Race Plane,88,2017,Yellow,11 +Alien Conquest,Earth Defense HQ,877,2011,Trans-Bright Green,2 +Alien Conquest,Earth Defense HQ,877,2011,Trans-Black,3 +Alien Conquest,Earth Defense HQ,877,2011,Tan,1 +Alien Conquest,Earth Defense HQ,877,2011,[No Color],2 +Alien Conquest,Earth Defense HQ,877,2011,Black,24 +Alien Conquest,Earth Defense HQ,877,2011,Blue,55 +Alien Conquest,Earth Defense HQ,877,2011,Red,8 +Alien Conquest,Earth Defense HQ,877,2011,Dark Azure,5 +Alien Conquest,Earth Defense HQ,877,2011,Dark Bluish Gray,47 +Alien Conquest,Earth Defense HQ,877,2011,Dark Purple,2 +Alien Conquest,Earth Defense HQ,877,2011,Dark Tan,2 +Alien Conquest,Earth Defense HQ,877,2011,Flat Silver,1 +Alien Conquest,Earth Defense HQ,877,2011,Light Bluish Gray,52 +Alien Conquest,Earth Defense HQ,877,2011,Lime,6 +Alien Conquest,Earth Defense HQ,877,2011,White,18 +Alien Conquest,Earth Defense HQ,877,2011,Trans-Red,6 +Alien Conquest,Earth Defense HQ,877,2011,Trans-Neon Orange,2 +Alien Conquest,Earth Defense HQ,877,2011,Trans-Neon Green,4 +Alien Conquest,Earth Defense HQ,877,2011,Yellow,29 +Alien Conquest,Earth Defense HQ,877,2011,Trans-Light Blue,4 +Alien Conquest,Earth Defense HQ,877,2011,Trans-Green,2 +Alien Conquest,Earth Defense HQ,877,2011,Trans-Dark Blue,3 +Alien Conquest,Earth Defense HQ,877,2011,Trans-Clear,6 +Alien Conquest,Alien Mothership,415,2011,Trans-Light Blue,1 +Alien Conquest,Alien Mothership,415,2011,Trans-Neon Green,3 +Alien Conquest,Alien Mothership,415,2011,White,5 +Alien Conquest,Alien Mothership,415,2011,Yellow,2 +Alien Conquest,Alien Mothership,415,2011,Pearl Gold,1 +Alien Conquest,Alien Mothership,415,2011,[No Color],1 +Alien Conquest,Alien Mothership,415,2011,Black,24 +Alien Conquest,Alien Mothership,415,2011,Blue,1 +Alien Conquest,Alien Mothership,415,2011,Dark Bluish Gray,10 +Alien Conquest,Alien Mothership,415,2011,Dark Purple,2 +Alien Conquest,Alien Mothership,415,2011,Dark Tan,1 +Alien Conquest,Alien Mothership,415,2011,Flat Silver,1 +Alien Conquest,Alien Mothership,415,2011,Light Bluish Gray,20 +Alien Conquest,Alien Mothership,415,2011,Lime,9 +Alien Conquest,Alien Mothership,415,2011,Pearl Dark Gray,1 +Alien Conquest,Alien Mothership,415,2011,Red,7 +Alien Conquest,Alien Mothership,415,2011,Trans-Bright Green,2 +Alien Conquest,Alien Mothership,415,2011,Trans-Clear,1 +Alien Conquest,Jet-Copter Encounter,373,2011,Lime,4 +Alien Conquest,Jet-Copter Encounter,373,2011,Yellow,11 +Alien Conquest,Jet-Copter Encounter,373,2011,Dark Bluish Gray,25 +Alien Conquest,Jet-Copter Encounter,373,2011,Flat Silver,1 +Alien Conquest,Jet-Copter Encounter,373,2011,Black,13 +Alien Conquest,Jet-Copter Encounter,373,2011,Blue,31 +Alien Conquest,Jet-Copter Encounter,373,2011,Trans-Light Blue,2 +Alien Conquest,Jet-Copter Encounter,373,2011,Dark Azure,3 +Alien Conquest,Jet-Copter Encounter,373,2011,Trans-Dark Blue,1 +Alien Conquest,Jet-Copter Encounter,373,2011,Trans-Clear,2 +Alien Conquest,Jet-Copter Encounter,373,2011,Trans-Black,1 +Alien Conquest,Jet-Copter Encounter,373,2011,[No Color],2 +Alien Conquest,Jet-Copter Encounter,373,2011,Tan,1 +Alien Conquest,Jet-Copter Encounter,373,2011,Red,1 +Alien Conquest,Jet-Copter Encounter,373,2011,Trans-Green,2 +Alien Conquest,Jet-Copter Encounter,373,2011,Light Bluish Gray,25 +Alien Conquest,Jet-Copter Encounter,373,2011,Trans-Neon Green,3 +Alien Conquest,Jet-Copter Encounter,373,2011,Trans-Neon Orange,2 +Alien Conquest,Jet-Copter Encounter,373,2011,Trans-Red,2 +Alien Conquest,Jet-Copter Encounter,373,2011,Dark Purple,1 +Alien Conquest,UFO Abduction,210,2011,Trans-Dark Blue,1 +Alien Conquest,UFO Abduction,210,2011,Trans-Neon Green,3 +Alien Conquest,UFO Abduction,210,2011,Trans-Neon Orange,1 +Alien Conquest,UFO Abduction,210,2011,Trans-Red,1 +Alien Conquest,UFO Abduction,210,2011,White,1 +Alien Conquest,UFO Abduction,210,2011,Lime,11 +Alien Conquest,UFO Abduction,210,2011,Yellow,3 +Alien Conquest,UFO Abduction,210,2011,Light Bluish Gray,16 +Alien Conquest,UFO Abduction,210,2011,Tan,2 +Alien Conquest,UFO Abduction,210,2011,[No Color],1 +Alien Conquest,UFO Abduction,210,2011,Black,11 +Alien Conquest,UFO Abduction,210,2011,Blue,4 +Alien Conquest,UFO Abduction,210,2011,Dark Azure,3 +Alien Conquest,UFO Abduction,210,2011,Dark Bluish Gray,14 +Alien Conquest,UFO Abduction,210,2011,Dark Purple,2 +Alien Conquest,UFO Abduction,210,2011,Dark Tan,1 +Alien Conquest,UFO Abduction,210,2011,Flat Silver,1 +Alien Conquest,UFO Abduction,210,2011,Red,1 +Alien Conquest,UFO Abduction,210,2011,Reddish Brown,2 +Alien Conquest,UFO Abduction,210,2011,Sand Blue,1 +Alien Conquest,UFO Abduction,210,2011,Trans-Clear,2 +Alien Conquest,Tripod Invader,165,2011,Trans-Neon Green,3 +Alien Conquest,Tripod Invader,165,2011,Trans-Clear,1 +Alien Conquest,Tripod Invader,165,2011,Trans-Bright Green,1 +Alien Conquest,Tripod Invader,165,2011,Reddish Brown,1 +Alien Conquest,Tripod Invader,165,2011,Red,3 +Alien Conquest,Tripod Invader,165,2011,Dark Bluish Gray,8 +Alien Conquest,Tripod Invader,165,2011,Dark Blue,2 +Alien Conquest,Tripod Invader,165,2011,Flat Silver,1 +Alien Conquest,Tripod Invader,165,2011,Black,13 +Alien Conquest,Tripod Invader,165,2011,Blue,1 +Alien Conquest,Tripod Invader,165,2011,Light Bluish Gray,21 +Alien Conquest,Tripod Invader,165,2011,Lime,5 +Alien Conquest,Tripod Invader,165,2011,[No Color],1 +Alien Conquest,Tripod Invader,165,2011,Yellow,1 +Alien Conquest,Tripod Invader,165,2011,Dark Purple,2 +Alien Conquest,Tripod Invader,165,2011,White,1 +Alien Conquest,Alien Defender,104,2011,Trans-Clear,1 +Alien Conquest,Alien Defender,104,2011,Trans-Light Blue,1 +Alien Conquest,Alien Defender,104,2011,Trans-Neon Orange,1 +Alien Conquest,Alien Defender,104,2011,Trans-Red,1 +Alien Conquest,Alien Defender,104,2011,Reddish Brown,1 +Alien Conquest,Alien Defender,104,2011,Trans-Neon Green,2 +Alien Conquest,Alien Defender,104,2011,Yellow,4 +Alien Conquest,Alien Defender,104,2011,[No Color],1 +Alien Conquest,Alien Defender,104,2011,Black,4 +Alien Conquest,Alien Defender,104,2011,Blue,8 +Alien Conquest,Alien Defender,104,2011,Dark Azure,3 +Alien Conquest,Alien Defender,104,2011,Dark Bluish Gray,11 +Alien Conquest,Alien Defender,104,2011,Flat Silver,1 +Alien Conquest,Alien Defender,104,2011,Light Bluish Gray,9 +Alien Conquest,Alien Defender,104,2011,Lime,3 +Alien Conquest,Alien Defender,104,2011,Red,1 +Alien Conquest,Alien Striker,42,2011,Trans-Clear,1 +Alien Conquest,Alien Striker,42,2011,Trans-Light Blue,1 +Alien Conquest,Alien Striker,42,2011,Trans-Neon Green,1 +Alien Conquest,Alien Striker,42,2011,Lime,3 +Alien Conquest,Alien Striker,42,2011,Yellow,1 +Alien Conquest,Alien Striker,42,2011,Dark Purple,1 +Alien Conquest,Alien Striker,42,2011,Dark Bluish Gray,4 +Alien Conquest,Alien Striker,42,2011,Dark Azure,3 +Alien Conquest,Alien Striker,42,2011,Black,3 +Alien Conquest,Alien Striker,42,2011,Light Bluish Gray,3 +Alien Conquest,Alien Striker,42,2011,Red,1 +Alien Conquest,ADU Walker,34,2011,Dark Bluish Gray,3 +Alien Conquest,ADU Walker,34,2011,Yellow,3 +Alien Conquest,ADU Walker,34,2011,Trans-Neon Orange,1 +Alien Conquest,ADU Walker,34,2011,Trans-Clear,1 +Alien Conquest,ADU Walker,34,2011,Light Bluish Gray,3 +Alien Conquest,ADU Walker,34,2011,Dark Azure,3 +Alien Conquest,ADU Walker,34,2011,Blue,4 +Alien Conquest,ADU Walker,34,2011,Black,1 +Alien Conquest,Alien Conquest Battle Pack,27,2011,Flat Silver,1 +Alien Conquest,Alien Conquest Battle Pack,27,2011,Lime,2 +Alien Conquest,Alien Conquest Battle Pack,27,2011,Reddish Brown,1 +Alien Conquest,Alien Conquest Battle Pack,27,2011,Trans-Clear,1 +Alien Conquest,Alien Conquest Battle Pack,27,2011,Trans-Neon Green,1 +Alien Conquest,Alien Conquest Battle Pack,27,2011,Yellow,3 +Alien Conquest,Alien Conquest Battle Pack,27,2011,Dark Bluish Gray,1 +Alien Conquest,Alien Conquest Battle Pack,27,2011,Black,5 +Alien Conquest,Alien Conquest Battle Pack,27,2011,Dark Azure,3 +Alien Conquest,Alien Conquest Battle Pack,27,2011,Dark Blue,2 +Alien Conquest,ADU Jetpack,19,2011,Blue,3 +Alien Conquest,ADU Jetpack,19,2011,Black,1 +Alien Conquest,ADU Jetpack,19,2011,Yellow,2 +Alien Conquest,ADU Jetpack,19,2011,Trans-Neon Orange,1 +Alien Conquest,ADU Jetpack,19,2011,Trans-Clear,1 +Alien Conquest,ADU Jetpack,19,2011,Light Bluish Gray,2 +Alien Conquest,ADU Jetpack,19,2011,Dark Bluish Gray,3 +Alien Conquest,ADU Jetpack,19,2011,Dark Azure,3 +Alpha Team,Ogel Control Center,414,2001,White,2 +Alpha Team,Ogel Control Center,414,2001,Trans-Red,6 +Alpha Team,Ogel Control Center,414,2001,Trans-Neon Orange,6 +Alpha Team,Ogel Control Center,414,2001,Trans-Neon Green,1 +Alpha Team,Ogel Control Center,414,2001,Red,30 +Alpha Team,Ogel Control Center,414,2001,Dark Gray,24 +Alpha Team,Ogel Control Center,414,2001,Chrome Gold,1 +Alpha Team,Ogel Control Center,414,2001,Yellow,1 +Alpha Team,Ogel Control Center,414,2001,Blue,2 +Alpha Team,Ogel Control Center,414,2001,Black,45 +Alpha Team,Ogel Control Center,414,2001,Light Gray,19 +Alpha Team,Alpha Team Bomb Squad,191,2001,Light Gray,18 +Alpha Team,Alpha Team Bomb Squad,191,2001,[No Color],1 +Alpha Team,Alpha Team Bomb Squad,191,2001,Black,37 +Alpha Team,Alpha Team Bomb Squad,191,2001,Blue,1 +Alpha Team,Alpha Team Bomb Squad,191,2001,Dark Gray,9 +Alpha Team,Alpha Team Bomb Squad,191,2001,Green,2 +Alpha Team,Alpha Team Bomb Squad,191,2001,Red,5 +Alpha Team,Alpha Team Bomb Squad,191,2001,Trans-Dark Blue,2 +Alpha Team,Alpha Team Bomb Squad,191,2001,Trans-Neon Green,5 +Alpha Team,Alpha Team Bomb Squad,191,2001,Trans-Neon Orange,1 +Alpha Team,Alpha Team Bomb Squad,191,2001,White,8 +Alpha Team,Alpha Team Bomb Squad,191,2001,Yellow,16 +Alpha Team,Alpha Team ATV,134,2001,Trans-Dark Blue,2 +Alpha Team,Alpha Team ATV,134,2001,Yellow,17 +Alpha Team,Alpha Team ATV,134,2001,White,4 +Alpha Team,Alpha Team ATV,134,2001,Trans-Neon Green,5 +Alpha Team,Alpha Team ATV,134,2001,Red,2 +Alpha Team,Alpha Team ATV,134,2001,Orange,1 +Alpha Team,Alpha Team ATV,134,2001,Light Gray,14 +Alpha Team,Alpha Team ATV,134,2001,Dark Gray,9 +Alpha Team,Alpha Team ATV,134,2001,Blue,1 +Alpha Team,Alpha Team ATV,134,2001,Black,30 +Alpha Team,Alpha Team ATV,134,2001,[No Color],1 +Alpha Team,Alpha Team Helicopter,78,2001,[No Color],1 +Alpha Team,Alpha Team Helicopter,78,2001,Black,23 +Alpha Team,Alpha Team Helicopter,78,2001,Brown,1 +Alpha Team,Alpha Team Helicopter,78,2001,Light Gray,8 +Alpha Team,Alpha Team Helicopter,78,2001,Red,1 +Alpha Team,Alpha Team Helicopter,78,2001,Trans-Dark Blue,1 +Alpha Team,Alpha Team Helicopter,78,2001,Trans-Green,1 +Alpha Team,Alpha Team Helicopter,78,2001,Trans-Neon Green,5 +Alpha Team,Alpha Team Helicopter,78,2001,Trans-Red,2 +Alpha Team,Alpha Team Helicopter,78,2001,Yellow,9 +Alpha Team,Alpha Team Helicopter,78,2001,White,1 +Alpha Team,Alpha Team Helicopter,78,2001,Dark Gray,5 +Alpha Team,Alpha Team Cruiser,56,2001,Light Gray,8 +Alpha Team,Alpha Team Cruiser,56,2001,Purple,1 +Alpha Team,Alpha Team Cruiser,56,2001,Trans-Dark Blue,1 +Alpha Team,Alpha Team Cruiser,56,2001,Trans-Neon Green,4 +Alpha Team,Alpha Team Cruiser,56,2001,Trans-Neon Orange,1 +Alpha Team,Alpha Team Cruiser,56,2001,White,1 +Alpha Team,Alpha Team Cruiser,56,2001,Yellow,6 +Alpha Team,Alpha Team Cruiser,56,2001,[No Color],1 +Alpha Team,Alpha Team Cruiser,56,2001,Black,12 +Alpha Team,Alpha Team Cruiser,56,2001,Dark Gray,3 +Alpha Team,Ogel Command Striker,29,2001,Light Gray,3 +Alpha Team,Ogel Command Striker,29,2001,Red,3 +Alpha Team,Ogel Command Striker,29,2001,Trans-Neon Orange,2 +Alpha Team,Ogel Command Striker,29,2001,Trans-Red,1 +Alpha Team,Ogel Command Striker,29,2001,Yellow,1 +Alpha Team,Ogel Command Striker,29,2001,Black,8 +Alpha Team,Ogel Command Striker,29,2001,Chrome Gold,1 +Alpha Team,Ogel Command Striker,29,2001,Dark Gray,2 +An Unexpected Journey,The Goblin King Battle,838,2012,Light Bluish Gray,12 +An Unexpected Journey,The Goblin King Battle,838,2012,Flat Silver,5 +An Unexpected Journey,The Goblin King Battle,838,2012,Dark Tan,19 +An Unexpected Journey,The Goblin King Battle,838,2012,Dark Purple,1 +An Unexpected Journey,The Goblin King Battle,838,2012,Dark Orange,1 +An Unexpected Journey,The Goblin King Battle,838,2012,White,7 +An Unexpected Journey,The Goblin King Battle,838,2012,Dark Green,1 +An Unexpected Journey,The Goblin King Battle,838,2012,Dark Brown,14 +An Unexpected Journey,The Goblin King Battle,838,2012,Dark Bluish Gray,50 +An Unexpected Journey,The Goblin King Battle,838,2012,Blue,1 +An Unexpected Journey,The Goblin King Battle,838,2012,Black,56 +An Unexpected Journey,The Goblin King Battle,838,2012,[No Color],1 +An Unexpected Journey,The Goblin King Battle,838,2012,Red,1 +An Unexpected Journey,The Goblin King Battle,838,2012,Dark Red,2 +An Unexpected Journey,The Goblin King Battle,838,2012,Olive Green,1 +An Unexpected Journey,The Goblin King Battle,838,2012,Light Flesh,4 +An Unexpected Journey,The Goblin King Battle,838,2012,Orange,1 +An Unexpected Journey,The Goblin King Battle,838,2012,Pearl Gold,3 +An Unexpected Journey,The Goblin King Battle,838,2012,Reddish Brown,43 +An Unexpected Journey,The Goblin King Battle,838,2012,Speckle Black-Silver,1 +An Unexpected Journey,The Goblin King Battle,838,2012,Tan,7 +An Unexpected Journey,The Goblin King Battle,838,2012,Trans-Neon Green,1 +An Unexpected Journey,The Goblin King Battle,838,2012,Trans-Neon Orange,2 +An Unexpected Journey,An Unexpected Gathering,666,2012,Dark Red,2 +An Unexpected Journey,An Unexpected Gathering,666,2012,Dark Tan,6 +An Unexpected Journey,An Unexpected Gathering,666,2012,Flat Silver,2 +An Unexpected Journey,An Unexpected Gathering,666,2012,Green,40 +An Unexpected Journey,An Unexpected Gathering,666,2012,Light Bluish Gray,7 +An Unexpected Journey,An Unexpected Gathering,666,2012,Light Flesh,6 +An Unexpected Journey,An Unexpected Gathering,666,2012,Lime,1 +An Unexpected Journey,An Unexpected Gathering,666,2012,Medium Dark Flesh,10 +An Unexpected Journey,An Unexpected Gathering,666,2012,Olive Green,2 +An Unexpected Journey,An Unexpected Gathering,666,2012,Orange,2 +An Unexpected Journey,An Unexpected Gathering,666,2012,Pearl Gold,1 +An Unexpected Journey,An Unexpected Gathering,666,2012,Red,3 +An Unexpected Journey,An Unexpected Gathering,666,2012,Reddish Brown,40 +An Unexpected Journey,An Unexpected Gathering,666,2012,Tan,27 +An Unexpected Journey,An Unexpected Gathering,666,2012,Trans-Black,2 +An Unexpected Journey,An Unexpected Gathering,666,2012,Trans-Clear,2 +An Unexpected Journey,An Unexpected Gathering,666,2012,Trans-Green,1 +An Unexpected Journey,An Unexpected Gathering,666,2012,Trans-Orange,2 +An Unexpected Journey,An Unexpected Gathering,666,2012,Trans-Yellow,2 +An Unexpected Journey,An Unexpected Gathering,666,2012,White,3 +An Unexpected Journey,An Unexpected Gathering,666,2012,Yellow,1 +An Unexpected Journey,An Unexpected Gathering,666,2012,Dark Brown,5 +An Unexpected Journey,An Unexpected Gathering,666,2012,[No Color],1 +An Unexpected Journey,An Unexpected Gathering,666,2012,Black,18 +An Unexpected Journey,An Unexpected Gathering,666,2012,Bright Green,5 +An Unexpected Journey,An Unexpected Gathering,666,2012,Bright Light Orange,1 +An Unexpected Journey,An Unexpected Gathering,666,2012,Dark Bluish Gray,15 +An Unexpected Journey,An Unexpected Gathering,666,2012,Dark Green,1 +An Unexpected Journey,An Unexpected Gathering,666,2012,Dark Orange,2 +An Unexpected Journey,Attack of the Wargs,400,2012,White,7 +An Unexpected Journey,Attack of the Wargs,400,2012,Trans-Neon Orange,1 +An Unexpected Journey,Attack of the Wargs,400,2012,Pearl Dark Gray,1 +An Unexpected Journey,Attack of the Wargs,400,2012,Olive Green,1 +An Unexpected Journey,Attack of the Wargs,400,2012,Light Flesh,3 +An Unexpected Journey,Attack of the Wargs,400,2012,Green,15 +An Unexpected Journey,Attack of the Wargs,400,2012,Light Bluish Gray,18 +An Unexpected Journey,Attack of the Wargs,400,2012,Flat Silver,2 +An Unexpected Journey,Attack of the Wargs,400,2012,Dark Tan,4 +An Unexpected Journey,Attack of the Wargs,400,2012,Dark Orange,1 +An Unexpected Journey,Attack of the Wargs,400,2012,Reddish Brown,30 +An Unexpected Journey,Attack of the Wargs,400,2012,Dark Brown,10 +An Unexpected Journey,Attack of the Wargs,400,2012,Dark Bluish Gray,19 +An Unexpected Journey,Attack of the Wargs,400,2012,Dark Blue,1 +An Unexpected Journey,Attack of the Wargs,400,2012,Copper,1 +An Unexpected Journey,Attack of the Wargs,400,2012,Black,12 +An Unexpected Journey,Attack of the Wargs,400,2012,Tan,2 +An Unexpected Journey,Attack of the Wargs,400,2012,Pearl Gold,1 +An Unexpected Journey,Attack of the Wargs,400,2012,Red,3 +An Unexpected Journey,Attack of the Wargs,400,2012,Trans-Light Blue,2 +An Unexpected Journey,Attack of the Wargs,400,2012,Trans-Orange,3 +An Unexpected Journey,Barrel Escape,333,2012,Chrome Gold,1 +An Unexpected Journey,Barrel Escape,333,2012,Dark Bluish Gray,17 +An Unexpected Journey,Barrel Escape,333,2012,Dark Brown,7 +An Unexpected Journey,Barrel Escape,333,2012,Dark Orange,1 +An Unexpected Journey,Barrel Escape,333,2012,Dark Red,3 +An Unexpected Journey,Barrel Escape,333,2012,Flat Silver,1 +An Unexpected Journey,Barrel Escape,333,2012,Light Bluish Gray,5 +An Unexpected Journey,Barrel Escape,333,2012,Light Flesh,5 +An Unexpected Journey,Barrel Escape,333,2012,Medium Dark Flesh,1 +An Unexpected Journey,Barrel Escape,333,2012,Olive Green,1 +An Unexpected Journey,Barrel Escape,333,2012,Orange,1 +An Unexpected Journey,Barrel Escape,333,2012,Pearl Gold,3 +An Unexpected Journey,Barrel Escape,333,2012,Red,1 +An Unexpected Journey,Barrel Escape,333,2012,Reddish Brown,28 +An Unexpected Journey,Barrel Escape,333,2012,Speckle Black-Silver,1 +An Unexpected Journey,Barrel Escape,333,2012,Tan,23 +An Unexpected Journey,Barrel Escape,333,2012,Trans-Neon Orange,1 +An Unexpected Journey,Barrel Escape,333,2012,Trans-Orange,1 +An Unexpected Journey,Barrel Escape,333,2012,White,1 +An Unexpected Journey,Barrel Escape,333,2012,Trans-Black,1 +An Unexpected Journey,Barrel Escape,333,2012,Dark Tan,12 +An Unexpected Journey,Barrel Escape,333,2012,Black,11 +An Unexpected Journey,Barrel Escape,333,2012,Blue,1 +An Unexpected Journey,Barrel Escape,333,2012,Trans-Green,1 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Dark Tan,1 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Flat Silver,1 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Glow in Dark White,2 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Light Bluish Gray,3 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Light Flesh,4 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Medium Dark Flesh,1 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Pearl Gold,1 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Red,1 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Reddish Brown,10 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Tan,1 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,White,4 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Black,37 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Bright Light Yellow,1 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Dark Bluish Gray,12 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Dark Brown,10 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Dark Orange,1 +An Unexpected Journey,Escape from Mirkwood Spiders,298,2012,Dark Red,6 +An Unexpected Journey,Riddles for The Ring,105,2012,Chrome Gold,1 +An Unexpected Journey,Riddles for The Ring,105,2012,Dark Bluish Gray,24 +An Unexpected Journey,Riddles for The Ring,105,2012,Dark Red,1 +An Unexpected Journey,Riddles for The Ring,105,2012,Dark Tan,4 +An Unexpected Journey,Riddles for The Ring,105,2012,Flat Silver,2 +An Unexpected Journey,Riddles for The Ring,105,2012,Light Bluish Gray,4 +An Unexpected Journey,Riddles for The Ring,105,2012,Medium Dark Flesh,1 +An Unexpected Journey,Riddles for The Ring,105,2012,Reddish Brown,3 +An Unexpected Journey,Riddles for The Ring,105,2012,Tan,2 +An Unexpected Journey,Riddles for The Ring,105,2012,White,2 +An Unexpected Journey,Riddles for The Ring,105,2012,Light Flesh,1 +An Unexpected Journey,Riddles for The Ring,105,2012,Black,5 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,Black,2 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,Dark Bluish Gray,10 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,Dark Brown,1 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,Dark Green,1 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,Flat Silver,1 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,Light Bluish Gray,4 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,Light Flesh,1 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,Reddish Brown,1 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,Tan,1 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,Trans-Neon Orange,1 +An Unexpected Journey,Gandalf at Dol Guldur,31,2012,White,1 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Dark Green,3 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Dark Orange,2 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Light Flesh,1 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Olive Green,1 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Dark Bluish Gray,2 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Red,1 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Reddish Brown,9 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Tan,1 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Trans-Green,3 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Trans-Orange,1 +An Unexpected Journey,Mirkwood Elf Guard,27,2012,Dark Brown,2 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Black,2 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Blue,1 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Chrome Gold,1 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Dark Bluish Gray,1 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Dark Orange,1 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Dark Red,1 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Dark Tan,4 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Green,19 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Light Bluish Gray,3 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Light Flesh,1 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Medium Dark Flesh,1 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Pearl Gold,1 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Reddish Brown,9 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Tan,4 +An Unexpected Journey,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,130,2013,Trans-Yellow,1 +Angry Birds,King Pig’s Castle,854,2016,Dark Purple,2 +Angry Birds,King Pig’s Castle,854,2016,Dark Red,1 +Angry Birds,King Pig’s Castle,854,2016,Dark Tan,7 +Angry Birds,King Pig’s Castle,854,2016,Flat Silver,2 +Angry Birds,King Pig’s Castle,854,2016,Green,2 +Angry Birds,King Pig’s Castle,854,2016,Light Bluish Gray,51 +Angry Birds,King Pig’s Castle,854,2016,Lime,3 +Angry Birds,King Pig’s Castle,854,2016,Medium Blue,2 +Angry Birds,King Pig’s Castle,854,2016,Medium Dark Flesh,6 +Angry Birds,King Pig’s Castle,854,2016,Medium Lavender,2 +Angry Birds,King Pig’s Castle,854,2016,Orange,1 +Angry Birds,King Pig’s Castle,854,2016,Pearl Dark Gray,1 +Angry Birds,King Pig’s Castle,854,2016,Pearl Gold,15 +Angry Birds,King Pig’s Castle,854,2016,Red,8 +Angry Birds,King Pig’s Castle,854,2016,Reddish Brown,29 +Angry Birds,King Pig’s Castle,854,2016,Tan,4 +Angry Birds,King Pig’s Castle,854,2016,Trans-Clear,3 +Angry Birds,King Pig’s Castle,854,2016,Trans-Green,1 +Angry Birds,King Pig’s Castle,854,2016,Trans-Orange,1 +Angry Birds,King Pig’s Castle,854,2016,White,13 +Angry Birds,King Pig’s Castle,854,2016,Yellow,2 +Angry Birds,King Pig’s Castle,854,2016,Black,19 +Angry Birds,King Pig’s Castle,854,2016,Blue,2 +Angry Birds,King Pig’s Castle,854,2016,Bright Pink,1 +Angry Birds,King Pig’s Castle,854,2016,Dark Azure,1 +Angry Birds,King Pig’s Castle,854,2016,Dark Bluish Gray,50 +Angry Birds,King Pig’s Castle,854,2016,Dark Brown,6 +Angry Birds,King Pig’s Castle,854,2016,Dark Green,2 +Angry Birds,Piggy Pirate Ship,610,2016,Lime,3 +Angry Birds,Piggy Pirate Ship,610,2016,Light Bluish Gray,31 +Angry Birds,Piggy Pirate Ship,610,2016,Green,3 +Angry Birds,Piggy Pirate Ship,610,2016,Flat Silver,1 +Angry Birds,Piggy Pirate Ship,610,2016,Dark Bluish Gray,52 +Angry Birds,Piggy Pirate Ship,610,2016,Bright Pink,1 +Angry Birds,Piggy Pirate Ship,610,2016,Bright Green,1 +Angry Birds,Piggy Pirate Ship,610,2016,Blue,7 +Angry Birds,Piggy Pirate Ship,610,2016,White,11 +Angry Birds,Piggy Pirate Ship,610,2016,Black,35 +Angry Birds,Piggy Pirate Ship,610,2016,Yellow,10 +Angry Birds,Piggy Pirate Ship,610,2016,Trans-Orange,1 +Angry Birds,Piggy Pirate Ship,610,2016,Trans-Clear,2 +Angry Birds,Piggy Pirate Ship,610,2016,Tan,8 +Angry Birds,Piggy Pirate Ship,610,2016,Reddish Brown,45 +Angry Birds,Piggy Pirate Ship,610,2016,Red,17 +Angry Birds,Piggy Pirate Ship,610,2016,Pearl Gold,2 +Angry Birds,Piggy Pirate Ship,610,2016,Orange,2 +Angry Birds,Piggy Pirate Ship,610,2016,Medium Dark Flesh,7 +Angry Birds,Piggy Pirate Ship,610,2016,Magenta,1 +Angry Birds,Pig City Teardown,385,2016,Dark Tan,3 +Angry Birds,Pig City Teardown,385,2016,Yellow,11 +Angry Birds,Pig City Teardown,385,2016,Black,19 +Angry Birds,Pig City Teardown,385,2016,Blue,3 +Angry Birds,Pig City Teardown,385,2016,Bright Pink,2 +Angry Birds,Pig City Teardown,385,2016,Dark Bluish Gray,21 +Angry Birds,Pig City Teardown,385,2016,Dark Brown,1 +Angry Birds,Pig City Teardown,385,2016,Dark Green,3 +Angry Birds,Pig City Teardown,385,2016,Dark Orange,3 +Angry Birds,Pig City Teardown,385,2016,Flat Silver,1 +Angry Birds,Pig City Teardown,385,2016,Green,2 +Angry Birds,Pig City Teardown,385,2016,Light Bluish Gray,34 +Angry Birds,Pig City Teardown,385,2016,Lime,2 +Angry Birds,Pig City Teardown,385,2016,Medium Azure,11 +Angry Birds,Pig City Teardown,385,2016,Medium Dark Flesh,6 +Angry Birds,Pig City Teardown,385,2016,Pearl Gold,1 +Angry Birds,Pig City Teardown,385,2016,Red,11 +Angry Birds,Pig City Teardown,385,2016,Reddish Brown,16 +Angry Birds,Pig City Teardown,385,2016,Tan,6 +Angry Birds,Pig City Teardown,385,2016,Trans-Clear,1 +Angry Birds,Pig City Teardown,385,2016,Trans-Green,1 +Angry Birds,Pig City Teardown,385,2016,Trans-Yellow,1 +Angry Birds,Pig City Teardown,385,2016,White,24 +Angry Birds,Bird Island Egg Heist,282,2016,Blue,1 +Angry Birds,Bird Island Egg Heist,282,2016,Black,12 +Angry Birds,Bird Island Egg Heist,282,2016,Yellow,5 +Angry Birds,Bird Island Egg Heist,282,2016,White,3 +Angry Birds,Bird Island Egg Heist,282,2016,Tan,23 +Angry Birds,Bird Island Egg Heist,282,2016,Reddish Brown,14 +Angry Birds,Bird Island Egg Heist,282,2016,Red,1 +Angry Birds,Bird Island Egg Heist,282,2016,Medium Dark Flesh,1 +Angry Birds,Bird Island Egg Heist,282,2016,Medium Azure,3 +Angry Birds,Bird Island Egg Heist,282,2016,Magenta,3 +Angry Birds,Bird Island Egg Heist,282,2016,Lime,8 +Angry Birds,Bird Island Egg Heist,282,2016,Light Bluish Gray,19 +Angry Birds,Bird Island Egg Heist,282,2016,Dark Tan,7 +Angry Birds,Bird Island Egg Heist,282,2016,Green,7 +Angry Birds,Bird Island Egg Heist,282,2016,Flat Silver,1 +Angry Birds,Bird Island Egg Heist,282,2016,Dark Purple,3 +Angry Birds,Bird Island Egg Heist,282,2016,Dark Pink,2 +Angry Birds,Bird Island Egg Heist,282,2016,Dark Brown,5 +Angry Birds,Bird Island Egg Heist,282,2016,Dark Bluish Gray,12 +Angry Birds,Bird Island Egg Heist,282,2016,Bright Light Orange,3 +Angry Birds,Bird Island Egg Heist,282,2016,Bright Green,2 +Angry Birds,Piggy Plane Attack,168,2016,Dark Purple,2 +Angry Birds,Piggy Plane Attack,168,2016,Flat Silver,1 +Angry Birds,Piggy Plane Attack,168,2016,Green,1 +Angry Birds,Piggy Plane Attack,168,2016,Light Bluish Gray,14 +Angry Birds,Piggy Plane Attack,168,2016,Lime,1 +Angry Birds,Piggy Plane Attack,168,2016,Medium Dark Flesh,6 +Angry Birds,Piggy Plane Attack,168,2016,Red,10 +Angry Birds,Piggy Plane Attack,168,2016,Reddish Brown,12 +Angry Birds,Piggy Plane Attack,168,2016,Tan,1 +Angry Birds,Piggy Plane Attack,168,2016,Trans-Green,1 +Angry Birds,Piggy Plane Attack,168,2016,Trans-Red,1 +Angry Birds,Piggy Plane Attack,168,2016,White,10 +Angry Birds,Piggy Plane Attack,168,2016,Yellow,3 +Angry Birds,Piggy Plane Attack,168,2016,Black,9 +Angry Birds,Piggy Plane Attack,168,2016,Blue,1 +Angry Birds,Piggy Plane Attack,168,2016,Dark Bluish Gray,12 +Angry Birds,Piggy Car Escape,74,2016,Black,12 +Angry Birds,Piggy Car Escape,74,2016,Bright Pink,1 +Angry Birds,Piggy Car Escape,74,2016,Dark Bluish Gray,8 +Angry Birds,Piggy Car Escape,74,2016,Dark Pink,1 +Angry Birds,Piggy Car Escape,74,2016,Flat Silver,1 +Angry Birds,Piggy Car Escape,74,2016,Light Bluish Gray,17 +Angry Birds,Piggy Car Escape,74,2016,Lime,1 +Angry Birds,Piggy Car Escape,74,2016,Red,1 +Angry Birds,Piggy Car Escape,74,2016,Reddish Brown,7 +Angry Birds,Piggy Car Escape,74,2016,Tan,1 +Angry Birds,Piggy Car Escape,74,2016,Trans-Orange,1 +Angry Birds,Piggy Car Escape,74,2016,White,1 +Angry Birds,Piggy Car Escape,74,2016,Yellow,1 +Animals,Poodle's Little Palace,46,2013,Bright Light Orange,2 +Animals,Poodle's Little Palace,46,2013,Metallic Silver,1 +Animals,Poodle's Little Palace,46,2013,Bright Light Blue,2 +Animals,Poodle's Little Palace,46,2013,White,6 +Animals,Poodle's Little Palace,46,2013,Tan,3 +Animals,Poodle's Little Palace,46,2013,Medium Azure,1 +Animals,Poodle's Little Palace,46,2013,Magenta,1 +Animals,Poodle's Little Palace,46,2013,Green,2 +Animals,Poodle's Little Palace,46,2013,Dark Pink,1 +Animals,Poodle's Little Palace,46,2013,Bright Pink,5 +Animals,Squirrel's Tree House,41,2013,Bright Light Orange,1 +Animals,Squirrel's Tree House,41,2013,Tan,4 +Animals,Squirrel's Tree House,41,2013,Reddish Brown,7 +Animals,Squirrel's Tree House,41,2013,Medium Azure,1 +Animals,Squirrel's Tree House,41,2013,Lime,1 +Animals,Squirrel's Tree House,41,2013,Green,1 +Animals,Squirrel's Tree House,41,2013,Yellow,2 +Animals,Squirrel's Tree House,41,2013,Dark Tan,1 +Animals,Squirrel's Tree House,41,2013,Dark Pink,1 +Animals,Squirrel's Tree House,41,2013,Dark Orange,1 +Animals,Squirrel's Tree House,41,2013,Dark Brown,1 +Animals,Puppy's Playhouse,39,2013,White,3 +Animals,Puppy's Playhouse,39,2013,Tan,5 +Animals,Puppy's Playhouse,39,2013,Bright Light Orange,2 +Animals,Puppy's Playhouse,39,2013,Bright Pink,3 +Animals,Puppy's Playhouse,39,2013,Green,1 +Animals,Puppy's Playhouse,39,2013,Light Bluish Gray,1 +Animals,Puppy's Playhouse,39,2013,Lime,2 +Animals,Puppy's Playhouse,39,2013,Medium Azure,1 +Animals,Puppy's Playhouse,39,2013,Medium Dark Flesh,1 +Animals,Puppy's Playhouse,39,2013,Medium Lavender,3 +Animals,Puppy's Playhouse,39,2013,Red,1 +Animals,Bunny's Hutch,37,2013,Bright Green,1 +Animals,Bunny's Hutch,37,2013,Bright Pink,2 +Animals,Bunny's Hutch,37,2013,Green,2 +Animals,Bunny's Hutch,37,2013,Light Bluish Gray,1 +Animals,Bunny's Hutch,37,2013,Lime,1 +Animals,Bunny's Hutch,37,2013,Medium Azure,1 +Animals,Bunny's Hutch,37,2013,Medium Dark Flesh,2 +Animals,Bunny's Hutch,37,2013,Medium Lavender,3 +Animals,Bunny's Hutch,37,2013,Orange,1 +Animals,Bunny's Hutch,37,2013,Reddish Brown,1 +Animals,Bunny's Hutch,37,2013,Tan,2 +Animals,Bunny's Hutch,37,2013,Yellow,2 +Animals,Bunny's Hutch,37,2013,White,3 +Animals,Fawn's Forest,35,2013,Green,3 +Animals,Fawn's Forest,35,2013,Bright Light Orange,1 +Animals,Fawn's Forest,35,2013,White,1 +Animals,Fawn's Forest,35,2013,Reddish Brown,4 +Animals,Fawn's Forest,35,2013,Red,1 +Animals,Fawn's Forest,35,2013,Bright Pink,2 +Animals,Fawn's Forest,35,2013,Dark Brown,2 +Animals,Fawn's Forest,35,2013,Lime,1 +Animals,Fawn's Forest,35,2013,Magenta,2 +Animals,Fawn's Forest,35,2013,Medium Dark Flesh,1 +Animals,Fawn's Forest,35,2013,Tan,1 +Animals,Hedgehog's Hideaway,34,2013,Dark Red,1 +Animals,Hedgehog's Hideaway,34,2013,Yellow,1 +Animals,Hedgehog's Hideaway,34,2013,Red,1 +Animals,Hedgehog's Hideaway,34,2013,Bright Pink,2 +Animals,Hedgehog's Hideaway,34,2013,Dark Tan,1 +Animals,Hedgehog's Hideaway,34,2013,Bright Green,1 +Animals,Hedgehog's Hideaway,34,2013,Reddish Brown,1 +Animals,Hedgehog's Hideaway,34,2013,Tan,3 +Animals,Hedgehog's Hideaway,34,2013,Medium Lavender,1 +Animals,Hedgehog's Hideaway,34,2013,Lime,4 +Animals,Hedgehog's Hideaway,34,2013,Lavender,1 +Animals,Hedgehog's Hideaway,34,2013,Green,4 +Animals,Hedgehog's Hideaway,34,2013,Orange,1 +Animals,Turtle's Little Oasis,33,2013,Green,2 +Animals,Turtle's Little Oasis,33,2013,Lavender,1 +Animals,Turtle's Little Oasis,33,2013,Lime,1 +Animals,Turtle's Little Oasis,33,2013,Medium Azure,1 +Animals,Turtle's Little Oasis,33,2013,Pearl Gold,1 +Animals,Turtle's Little Oasis,33,2013,Reddish Brown,4 +Animals,Turtle's Little Oasis,33,2013,Tan,4 +Animals,Turtle's Little Oasis,33,2013,Trans-Dark Pink,1 +Animals,Turtle's Little Oasis,33,2013,White,1 +Animals,Turtle's Little Oasis,33,2013,Yellow,3 +Animals,Parrot's Perch,32,2013,Lime,2 +Animals,Parrot's Perch,32,2013,Magenta,1 +Animals,Parrot's Perch,32,2013,Red,1 +Animals,Parrot's Perch,32,2013,Reddish Brown,2 +Animals,Parrot's Perch,32,2013,Tan,3 +Animals,Parrot's Perch,32,2013,White,5 +Animals,Parrot's Perch,32,2013,Bright Pink,1 +Animals,Parrot's Perch,32,2013,Bright Light Blue,1 +Animals,Parrot's Perch,32,2013,Dark Bluish Gray,1 +Animals,Parrot's Perch,32,2013,Dark Pink,1 +Animals,Parrot's Perch,32,2013,Lavender,1 +Animals,Parrot's Perch,32,2013,Light Bluish Gray,1 +Animals,Cat's Playground,31,2013,Medium Azure,1 +Animals,Cat's Playground,31,2013,Magenta,1 +Animals,Cat's Playground,31,2013,Flat Silver,1 +Animals,Cat's Playground,31,2013,Dark Purple,1 +Animals,Cat's Playground,31,2013,Bright Pink,2 +Animals,Cat's Playground,31,2013,Bright Light Orange,3 +Animals,Cat's Playground,31,2013,Black,1 +Animals,Cat's Playground,31,2013,Medium Lavender,2 +Animals,Cat's Playground,31,2013,Tan,2 +Animals,Cat's Playground,31,2013,White,2 +Animals,Puppy Playground,62,2017,Yellow,4 +Animals,Puppy Playground,62,2017,Dark Pink,5 +Animals,Puppy Playground,62,2017,Dark Purple,2 +Animals,Puppy Playground,62,2017,Green,1 +Animals,Puppy Playground,62,2017,Lavender,1 +Animals,Puppy Playground,62,2017,Light Bluish Gray,1 +Animals,Puppy Playground,62,2017,Black,6 +Animals,Puppy Playground,62,2017,Lime,2 +Animals,Puppy Playground,62,2017,Medium Azure,4 +Animals,Puppy Playground,62,2017,Medium Dark Flesh,1 +Animals,Puppy Playground,62,2017,White,10 +Animals,Puppy Pampering,45,2017,[No Color],1 +Animals,Puppy Pampering,45,2017,Black,2 +Animals,Puppy Pampering,45,2017,Dark Pink,3 +Animals,Puppy Pampering,45,2017,Dark Purple,3 +Animals,Puppy Pampering,45,2017,Lavender,2 +Animals,Puppy Pampering,45,2017,Light Bluish Gray,1 +Animals,Puppy Pampering,45,2017,Medium Azure,4 +Animals,Puppy Pampering,45,2017,Medium Dark Flesh,2 +Animals,Puppy Pampering,45,2017,Pearl Gold,1 +Animals,Puppy Pampering,45,2017,Trans-Clear,1 +Animals,Puppy Pampering,45,2017,Trans-Dark Pink,1 +Animals,Puppy Pampering,45,2017,Trans-Light Blue,1 +Animals,Puppy Pampering,45,2017,Trans-Yellow,1 +Animals,Puppy Pampering,45,2017,White,10 +Animals,Puppy Pampering,45,2017,Yellow,1 +Animals,Puppy Pampering,45,2017,Lime,1 +Animals,Puppy Treats & Tricks,45,2017,Black,3 +Animals,Puppy Treats & Tricks,45,2017,Dark Pink,4 +Animals,Puppy Treats & Tricks,45,2017,Dark Purple,1 +Animals,Puppy Treats & Tricks,45,2017,Lavender,1 +Animals,Puppy Treats & Tricks,45,2017,Lime,2 +Animals,Puppy Treats & Tricks,45,2017,Medium Azure,4 +Animals,Puppy Treats & Tricks,45,2017,Medium Dark Flesh,1 +Animals,Puppy Treats & Tricks,45,2017,White,10 +Animals,Puppy Treats & Tricks,45,2017,Yellow,4 +Aquanauts,Neptune Discovery Lab,509,1995,Red,2 +Aquanauts,Neptune Discovery Lab,509,1995,Trans-Dark Blue,10 +Aquanauts,Neptune Discovery Lab,509,1995,Black,74 +Aquanauts,Neptune Discovery Lab,509,1995,Blue,2 +Aquanauts,Neptune Discovery Lab,509,1995,Chrome Silver,3 +Aquanauts,Neptune Discovery Lab,509,1995,Green,2 +Aquanauts,Neptune Discovery Lab,509,1995,Light Blue,1 +Aquanauts,Neptune Discovery Lab,509,1995,Trans-Neon Orange,7 +Aquanauts,Neptune Discovery Lab,509,1995,Light Gray,7 +Aquanauts,Neptune Discovery Lab,509,1995,White,2 +Aquanauts,Neptune Discovery Lab,509,1995,Yellow,69 +Aquanauts,Sea Claw 7 / Neptune III,191,1995,Black,36 +Aquanauts,Sea Claw 7 / Neptune III,191,1995,Blue,3 +Aquanauts,Sea Claw 7 / Neptune III,191,1995,Chrome Silver,3 +Aquanauts,Sea Claw 7 / Neptune III,191,1995,Green,1 +Aquanauts,Sea Claw 7 / Neptune III,191,1995,Light Gray,1 +Aquanauts,Sea Claw 7 / Neptune III,191,1995,Red,1 +Aquanauts,Sea Claw 7 / Neptune III,191,1995,Trans-Dark Blue,4 +Aquanauts,Sea Claw 7 / Neptune III,191,1995,Trans-Neon Orange,6 +Aquanauts,Sea Claw 7 / Neptune III,191,1995,White,2 +Aquanauts,Sea Claw 7 / Neptune III,191,1995,Yellow,42 +Aquanauts,Crystal Explorer Sub,167,1995,Green,1 +Aquanauts,Crystal Explorer Sub,167,1995,Light Gray,2 +Aquanauts,Crystal Explorer Sub,167,1995,Red,1 +Aquanauts,Crystal Explorer Sub,167,1995,Trans-Dark Blue,6 +Aquanauts,Crystal Explorer Sub,167,1995,White,2 +Aquanauts,Crystal Explorer Sub,167,1995,Yellow,33 +Aquanauts,Crystal Explorer Sub,167,1995,Blue,2 +Aquanauts,Crystal Explorer Sub,167,1995,Trans-Neon Orange,7 +Aquanauts,Crystal Explorer Sub,167,1995,Black,27 +Aquanauts,Crystal Explorer Sub,167,1995,Chrome Silver,3 +Aquanauts,Sea Sprint 9,32,1995,Black,8 +Aquanauts,Sea Sprint 9,32,1995,Blue,2 +Aquanauts,Sea Sprint 9,32,1995,Chrome Silver,1 +Aquanauts,Sea Sprint 9,32,1995,Trans-Dark Blue,2 +Aquanauts,Sea Sprint 9,32,1995,Trans-Neon Orange,2 +Aquanauts,Sea Sprint 9,32,1995,White,2 +Aquanauts,Sea Sprint 9,32,1995,Yellow,6 +Aquanauts,Crystal Crawler,97,1996,Green,1 +Aquanauts,Crystal Crawler,97,1996,Light Gray,2 +Aquanauts,Crystal Crawler,97,1996,Trans-Dark Blue,1 +Aquanauts,Crystal Crawler,97,1996,Trans-Neon Orange,2 +Aquanauts,Crystal Crawler,97,1996,Yellow,16 +Aquanauts,Crystal Crawler,97,1996,White,2 +Aquanauts,Crystal Crawler,97,1996,Black,12 +Aquanauts,Crystal Crawler,97,1996,Blue,3 +Aquanauts,Crystal Crawler,97,1996,Chrome Silver,2 +Aquanauts,Crystal Crawler,96,1996,Black,12 +Aquanauts,Crystal Crawler,96,1996,Blue,2 +Aquanauts,Crystal Crawler,96,1996,Chrome Silver,2 +Aquanauts,Crystal Crawler,96,1996,Green,1 +Aquanauts,Crystal Crawler,96,1996,Light Gray,2 +Aquanauts,Crystal Crawler,96,1996,Yellow,16 +Aquanauts,Crystal Crawler,96,1996,Trans-Neon Orange,2 +Aquanauts,Crystal Crawler,96,1996,Trans-Dark Blue,1 +Aquanauts,Crystal Crawler,96,1996,White,2 +Aquanauts,Paravane,16,1996,Black,3 +Aquanauts,Paravane,16,1996,Blue,2 +Aquanauts,Paravane,16,1996,Chrome Silver,1 +Aquanauts,Paravane,16,1996,White,2 +Aquanauts,Paravane,16,1996,Yellow,5 +Aquanauts,Underwater Scooter,16,1996,Black,3 +Aquanauts,Underwater Scooter,16,1996,Blue,2 +Aquanauts,Underwater Scooter,16,1996,Chrome Silver,1 +Aquanauts,Underwater Scooter,16,1996,White,2 +Aquanauts,Underwater Scooter,16,1996,Yellow,5 +Aquaraiders I,Hydro Reef Wrecker,287,1997,Yellow,7 +Aquaraiders I,Hydro Reef Wrecker,287,1997,Dark Gray,4 +Aquaraiders I,Hydro Reef Wrecker,287,1997,Black,54 +Aquaraiders I,Hydro Reef Wrecker,287,1997,Blue,4 +Aquaraiders I,Hydro Reef Wrecker,287,1997,Chrome Silver,3 +Aquaraiders I,Hydro Reef Wrecker,287,1997,Green,25 +Aquaraiders I,Hydro Reef Wrecker,287,1997,Light Gray,5 +Aquaraiders I,Hydro Reef Wrecker,287,1997,Red,1 +Aquaraiders I,Hydro Reef Wrecker,287,1997,Trans-Neon Green,9 +Aquaraiders I,Aqua Dozer,135,1997,Dark Gray,5 +Aquaraiders I,Aqua Dozer,135,1997,Green,12 +Aquaraiders I,Aqua Dozer,135,1997,Light Gray,2 +Aquaraiders I,Aqua Dozer,135,1997,Trans-Neon Green,4 +Aquaraiders I,Aqua Dozer,135,1997,Yellow,5 +Aquaraiders I,Aqua Dozer,135,1997,Chrome Silver,3 +Aquaraiders I,Aqua Dozer,135,1997,Black,28 +Aquaraiders I,Crystal Scavenger,112,1997,Dark Gray,2 +Aquaraiders I,Crystal Scavenger,112,1997,Green,9 +Aquaraiders I,Crystal Scavenger,112,1997,Trans-Neon Green,9 +Aquaraiders I,Crystal Scavenger,112,1997,[No Color],2 +Aquaraiders I,Crystal Scavenger,112,1997,Black,27 +Aquaraiders I,Crystal Scavenger,112,1997,Yellow,5 +Aquaraiders I,Crystal Scavenger,112,1997,Chrome Silver,2 +Aquaraiders I,Crystal Scavenger,112,1997,Light Gray,4 +Aquaraiders II,Aquabase Invasion,850,2007,Pearl Light Gray,1 +Aquaraiders II,Aquabase Invasion,850,2007,Red,15 +Aquaraiders II,Aquabase Invasion,850,2007,Reddish Brown,1 +Aquaraiders II,Aquabase Invasion,850,2007,Tan,2 +Aquaraiders II,Aquabase Invasion,850,2007,Trans-Black,2 +Aquaraiders II,Aquabase Invasion,850,2007,Trans-Clear,2 +Aquaraiders II,Aquabase Invasion,850,2007,Trans-Dark Blue,2 +Aquaraiders II,Aquabase Invasion,850,2007,Trans-Green,2 +Aquaraiders II,Aquabase Invasion,850,2007,Trans-Light Blue,7 +Aquaraiders II,Aquabase Invasion,850,2007,Trans-Red,2 +Aquaraiders II,Aquabase Invasion,850,2007,Trans-Yellow,2 +Aquaraiders II,Aquabase Invasion,850,2007,White,7 +Aquaraiders II,Aquabase Invasion,850,2007,Yellow,54 +Aquaraiders II,Aquabase Invasion,850,2007,[No Color],1 +Aquaraiders II,Aquabase Invasion,850,2007,Black,72 +Aquaraiders II,Aquabase Invasion,850,2007,Blue,4 +Aquaraiders II,Aquabase Invasion,850,2007,Bright Light Orange,1 +Aquaraiders II,Aquabase Invasion,850,2007,Chrome Gold,4 +Aquaraiders II,Aquabase Invasion,850,2007,Dark Blue,8 +Aquaraiders II,Aquabase Invasion,850,2007,Dark Bluish Gray,34 +Aquaraiders II,Aquabase Invasion,850,2007,Dark Red,1 +Aquaraiders II,Aquabase Invasion,850,2007,Glow In Dark Opaque,2 +Aquaraiders II,Aquabase Invasion,850,2007,Green,1 +Aquaraiders II,Aquabase Invasion,850,2007,Light Bluish Gray,31 +Aquaraiders II,Crab Crusher,582,2007,Reddish Brown,2 +Aquaraiders II,Crab Crusher,582,2007,Light Bluish Gray,22 +Aquaraiders II,Crab Crusher,582,2007,Pearl Light Gray,2 +Aquaraiders II,Crab Crusher,582,2007,Red,14 +Aquaraiders II,Crab Crusher,582,2007,Yellow,50 +Aquaraiders II,Crab Crusher,582,2007,Tan,1 +Aquaraiders II,Crab Crusher,582,2007,Trans-Clear,2 +Aquaraiders II,Crab Crusher,582,2007,Black,62 +Aquaraiders II,Crab Crusher,582,2007,Trans-Dark Blue,1 +Aquaraiders II,Crab Crusher,582,2007,Trans-Green,3 +Aquaraiders II,Crab Crusher,582,2007,Trans-Light Blue,3 +Aquaraiders II,Crab Crusher,582,2007,Trans-Neon Green,1 +Aquaraiders II,Crab Crusher,582,2007,Trans-Red,3 +Aquaraiders II,Crab Crusher,582,2007,[No Color],1 +Aquaraiders II,Crab Crusher,582,2007,White,3 +Aquaraiders II,Crab Crusher,582,2007,Blue,4 +Aquaraiders II,Crab Crusher,582,2007,Chrome Gold,4 +Aquaraiders II,Crab Crusher,582,2007,Chrome Silver,1 +Aquaraiders II,Crab Crusher,582,2007,Dark Bluish Gray,37 +Aquaraiders II,Crab Crusher,582,2007,Dark Green,4 +Aquaraiders II,Crab Crusher,582,2007,Flat Silver,1 +Aquaraiders II,Tiger Shark Attack,341,2007,Blue,1 +Aquaraiders II,Tiger Shark Attack,341,2007,Black,41 +Aquaraiders II,Tiger Shark Attack,341,2007,Trans-Light Blue,2 +Aquaraiders II,Tiger Shark Attack,341,2007,Trans-Red,1 +Aquaraiders II,Tiger Shark Attack,341,2007,White,16 +Aquaraiders II,Tiger Shark Attack,341,2007,Yellow,37 +Aquaraiders II,Tiger Shark Attack,341,2007,Dark Bluish Gray,31 +Aquaraiders II,Tiger Shark Attack,341,2007,Green,1 +Aquaraiders II,Tiger Shark Attack,341,2007,Dark Green,1 +Aquaraiders II,Tiger Shark Attack,341,2007,Flat Silver,1 +Aquaraiders II,Tiger Shark Attack,341,2007,Light Bluish Gray,29 +Aquaraiders II,Tiger Shark Attack,341,2007,Metallic Gold,1 +Aquaraiders II,Tiger Shark Attack,341,2007,Red,6 +Aquaraiders II,Tiger Shark Attack,341,2007,Tan,1 +Aquaraiders II,Tiger Shark Attack,341,2007,Trans-Black,1 +Aquaraiders II,Tiger Shark Attack,341,2007,Trans-Clear,1 +Aquaraiders II,Tiger Shark Attack,341,2007,Trans-Dark Pink,1 +Aquaraiders II,Tiger Shark Attack,341,2007,Trans-Green,2 +Aquaraiders II,The Shipwreck,245,2007,Yellow,33 +Aquaraiders II,The Shipwreck,245,2007,White,4 +Aquaraiders II,The Shipwreck,245,2007,Trans-Yellow,1 +Aquaraiders II,The Shipwreck,245,2007,Trans-Red,2 +Aquaraiders II,The Shipwreck,245,2007,Trans-Green,4 +Aquaraiders II,The Shipwreck,245,2007,Trans-Dark Blue,2 +Aquaraiders II,The Shipwreck,245,2007,Trans-Clear,4 +Aquaraiders II,The Shipwreck,245,2007,Trans-Dark Pink,1 +Aquaraiders II,The Shipwreck,245,2007,Trans-Light Blue,2 +Aquaraiders II,The Shipwreck,245,2007,Trans-Black,1 +Aquaraiders II,The Shipwreck,245,2007,Tan,3 +Aquaraiders II,The Shipwreck,245,2007,Reddish Brown,9 +Aquaraiders II,The Shipwreck,245,2007,Red,3 +Aquaraiders II,The Shipwreck,245,2007,Metallic Gold,1 +Aquaraiders II,The Shipwreck,245,2007,Light Bluish Gray,11 +Aquaraiders II,The Shipwreck,245,2007,Black,28 +Aquaraiders II,The Shipwreck,245,2007,Green,1 +Aquaraiders II,The Shipwreck,245,2007,Bright Light Orange,1 +Aquaraiders II,The Shipwreck,245,2007,Blue,4 +Aquaraiders II,The Shipwreck,245,2007,Chrome Silver,1 +Aquaraiders II,The Shipwreck,245,2007,Chrome Gold,5 +Aquaraiders II,The Shipwreck,245,2007,Dark Bluish Gray,11 +Aquaraiders II,Lobster Strike,224,2007,White,1 +Aquaraiders II,Lobster Strike,224,2007,Yellow,15 +Aquaraiders II,Lobster Strike,224,2007,Black,43 +Aquaraiders II,Lobster Strike,224,2007,Blue,1 +Aquaraiders II,Lobster Strike,224,2007,Dark Bluish Gray,5 +Aquaraiders II,Lobster Strike,224,2007,Dark Red,3 +Aquaraiders II,Lobster Strike,224,2007,Light Bluish Gray,5 +Aquaraiders II,Lobster Strike,224,2007,Red,8 +Aquaraiders II,Lobster Strike,224,2007,Tan,1 +Aquaraiders II,Lobster Strike,224,2007,Trans-Black,1 +Aquaraiders II,Lobster Strike,224,2007,Trans-Clear,2 +Aquaraiders II,Lobster Strike,224,2007,Trans-Dark Blue,1 +Aquaraiders II,Lobster Strike,224,2007,Trans-Green,1 +Aquaraiders II,Lobster Strike,224,2007,Trans-Light Blue,1 +Aquaraiders II,Lobster Strike,224,2007,Trans-Medium Blue,1 +Aquaraiders II,Lobster Strike,224,2007,Trans-Red,1 +Aquaraiders II,Lobster Strike,224,2007,Dark Blue,1 +Aquaraiders II,Angler Ambush,135,2007,Trans-Light Blue,1 +Aquaraiders II,Angler Ambush,135,2007,Trans-Green,2 +Aquaraiders II,Angler Ambush,135,2007,Red,2 +Aquaraiders II,Angler Ambush,135,2007,Light Bluish Gray,7 +Aquaraiders II,Angler Ambush,135,2007,Glow In Dark Opaque,1 +Aquaraiders II,Angler Ambush,135,2007,Dark Bluish Gray,13 +Aquaraiders II,Angler Ambush,135,2007,Dark Blue,5 +Aquaraiders II,Angler Ambush,135,2007,Chrome Gold,4 +Aquaraiders II,Angler Ambush,135,2007,Blue,7 +Aquaraiders II,Angler Ambush,135,2007,Black,19 +Aquaraiders II,Angler Ambush,135,2007,Yellow,7 +Aquaraiders II,Angler Ambush,135,2007,White,1 +Aquaraiders II,Angler Ambush,135,2007,Trans-Neon Green,1 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Reddish Brown,2 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Yellow,12 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,White,1 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Trans-Light Blue,1 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Trans-Green,3 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Trans-Dark Blue,2 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Tan,1 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Red,1 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Light Bluish Gray,4 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Dark Bluish Gray,9 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Chrome Gold,4 +Aquaraiders II,Deep Sea Treasure Hunter,79,2007,Black,15 +Aquasharks,Deep Sea Predator,104,1995,Black,29 +Aquasharks,Deep Sea Predator,104,1995,Blue,17 +Aquasharks,Deep Sea Predator,104,1995,Chrome Silver,3 +Aquasharks,Deep Sea Predator,104,1995,Dark Gray,2 +Aquasharks,Deep Sea Predator,104,1995,Green,1 +Aquasharks,Deep Sea Predator,104,1995,Light Gray,1 +Aquasharks,Deep Sea Predator,104,1995,Red,4 +Aquasharks,Deep Sea Predator,104,1995,Trans-Neon Orange,5 +Aquasharks,Deep Sea Predator,104,1995,Yellow,1 +Aquasharks,Shark Scout,28,1995,Black,8 +Aquasharks,Shark Scout,28,1995,Blue,6 +Aquasharks,Shark Scout,28,1995,Chrome Silver,1 +Aquasharks,Shark Scout,28,1995,Red,1 +Aquasharks,Shark Scout,28,1995,Trans-Neon Orange,1 +Aquasharks,Shark Scout,28,1995,Yellow,1 +Aquasharks,Super Sub,24,1999,Black,7 +Aquasharks,Super Sub,24,1999,Blue,3 +Aquasharks,Super Sub,24,1999,Chrome Silver,1 +Aquasharks,Super Sub,24,1999,Dark Gray,1 +Aquasharks,Super Sub,24,1999,Light Gray,1 +Aquasharks,Super Sub,24,1999,Trans-Dark Blue,1 +Aquasharks,Super Sub,24,1999,Yellow,5 +Aquazone,Aquazone Accessories,21,1995,Black,2 +Aquazone,Aquazone Accessories,21,1995,Blue,2 +Aquazone,Aquazone Accessories,21,1995,Chrome Silver,3 +Aquazone,Aquazone Accessories,21,1995,Dark Gray,1 +Aquazone,Aquazone Accessories,21,1995,Red,1 +Aquazone,Aquazone Accessories,21,1995,Trans-Dark Blue,1 +Aquazone,Aquazone Accessories,21,1995,Trans-Neon Orange,1 +Aquazone,Aquazone Accessories,21,1995,White,1 +Aquazone,Aquazone Accessories,21,1995,Yellow,3 +Aquazone,Aquazone Accessories,19,1998,Black,3 +Aquazone,Aquazone Accessories,19,1998,Chrome Blue,1 +Aquazone,Aquazone Accessories,19,1998,Chrome Silver,2 +Aquazone,Aquazone Accessories,19,1998,Dark Gray,4 +Aquazone,Aquazone Accessories,19,1998,Light Gray,1 +Aquazone,Aquazone Accessories,19,1998,Trans-Green,1 +Aquazone,Aquazone Accessories,19,1998,Trans-Neon Green,1 +Aquazone,Aquazone Accessories,19,1998,Yellow,2 +Architecture,1 x 1 and 1 x 2 Plates - Black (architectural hobby und modelbau version),82,1962,Black,2 +Architecture,1 x 1 and 1 x 2 Plates - Black (architectural hobby und modelbau version),82,1962,Light Gray,1 +Architecture,1 x 1 and 1 x 2 Plates - Black (architectural hobby und modelbau version),82,1962,Trans-Clear,1 +Architecture,1 x 1 and 1 x 2 Plates - Blue (architectural hobby und modelbau version),82,1962,Blue,2 +Architecture,1 x 1 and 1 x 2 Plates - Blue (architectural hobby und modelbau version),82,1962,Light Gray,1 +Architecture,1 x 1 and 1 x 2 Plates - Blue (architectural hobby und modelbau version),82,1962,Trans-Clear,1 +Architecture,1 x 1 and 1 x 2 Plates - Light Gray (architectural hobby und modelbau version),82,1962,Light Gray,3 +Architecture,1 x 1 and 1 x 2 Plates - Light Gray (architectural hobby und modelbau version),82,1962,Trans-Clear,1 +Architecture,1 x 1 and 1 x 2 Plates - Red (architectural hobby und modelbau version),82,1962,Light Gray,1 +Architecture,1 x 1 and 1 x 2 Plates - Red (architectural hobby und modelbau version),82,1962,Red,2 +Architecture,1 x 1 and 1 x 2 Plates - Red (architectural hobby und modelbau version),82,1962,Trans-Clear,1 +Architecture,1 x 1 and 1 x 2 Plates - Trans-Clear (architectural hobby und modelbau version),82,1962,Light Gray,1 +Architecture,1 x 1 and 1 x 2 Plates - Trans-Clear (architectural hobby und modelbau version),82,1962,Trans-Clear,3 +Architecture,1 x 1 and 1 x 2 Plates - White (architectural hobby und modelbau version),82,1962,Light Gray,1 +Architecture,1 x 1 and 1 x 2 Plates - White (architectural hobby und modelbau version),82,1962,Trans-Clear,1 +Architecture,1 x 1 and 1 x 2 Plates - White (architectural hobby und modelbau version),82,1962,White,2 +Architecture,1 x 1 and 1 x 2 Plates - Yellow (architectural hobby und modelbau version),82,1962,Light Gray,1 +Architecture,1 x 1 and 1 x 2 Plates - Yellow (architectural hobby und modelbau version),82,1962,Trans-Clear,1 +Architecture,1 x 1 and 1 x 2 Plates - Yellow (architectural hobby und modelbau version),82,1962,Yellow,2 +Architecture,2 x 2 Plates - Black (architectural hobby und modelbau version),42,1962,Black,1 +Architecture,2 x 2 Plates - Black (architectural hobby und modelbau version),42,1962,Light Gray,1 +Architecture,2 x 2 Plates - Black (architectural hobby und modelbau version),42,1962,Trans-Clear,1 +Architecture,2 x 2 Plates - Blue (architectural hobby und modelbau version),42,1962,Blue,1 +Architecture,2 x 2 Plates - Blue (architectural hobby und modelbau version),42,1962,Light Gray,1 +Architecture,2 x 2 Plates - Blue (architectural hobby und modelbau version),42,1962,Trans-Clear,1 +Architecture,2 x 2 Plates - Light Gray (architectural hobby und modelbau version),42,1962,Light Gray,2 +Architecture,2 x 2 Plates - Light Gray (architectural hobby und modelbau version),42,1962,Trans-Clear,1 +Architecture,2 x 2 Plates - Red (architectural hobby und modelbau version),42,1962,Light Gray,1 +Architecture,2 x 2 Plates - Red (architectural hobby und modelbau version),42,1962,Red,1 +Architecture,2 x 2 Plates - Red (architectural hobby und modelbau version),42,1962,Trans-Clear,1 +Architecture,2 x 2 Plates - Trans-Clear (architectural hobby und modelbau version),42,1962,Light Gray,1 +Architecture,2 x 2 Plates - Trans-Clear (architectural hobby und modelbau version),42,1962,Trans-Clear,2 +Architecture,2 x 2 Plates - White (architectural hobby und modelbau version),42,1962,Light Gray,1 +Architecture,2 x 2 Plates - White (architectural hobby und modelbau version),42,1962,Trans-Clear,1 +Architecture,2 x 2 Plates - White (architectural hobby und modelbau version),42,1962,White,1 +Architecture,2 x 2 Plates - Yellow (architectural hobby und modelbau version),42,1962,Light Gray,1 +Architecture,2 x 2 Plates - Yellow (architectural hobby und modelbau version),42,1962,Trans-Clear,1 +Architecture,2 x 2 Plates - Yellow (architectural hobby und modelbau version),42,1962,Yellow,1 +Architecture,2 x 3 Plates - Black (architectural hobby und modelbau version),32,1962,Black,1 +Architecture,2 x 3 Plates - Black (architectural hobby und modelbau version),32,1962,Light Gray,1 +Architecture,2 x 3 Plates - Black (architectural hobby und modelbau version),32,1962,Trans-Clear,1 +Architecture,2 x 3 Plates - Blue (architectural hobby und modelbau version),32,1962,Blue,1 +Architecture,2 x 3 Plates - Blue (architectural hobby und modelbau version),32,1962,Light Gray,1 +Architecture,2 x 3 Plates - Blue (architectural hobby und modelbau version),32,1962,Trans-Clear,1 +Architecture,2 x 3 Plates - Light Gray (architectural hobby und modelbau version),32,1962,Light Gray,2 +Architecture,2 x 3 Plates - Light Gray (architectural hobby und modelbau version),32,1962,Trans-Clear,1 +Architecture,2 x 3 Plates - Red (architectural hobby und modelbau version),32,1962,Light Gray,1 +Architecture,2 x 3 Plates - Red (architectural hobby und modelbau version),32,1962,Red,1 +Architecture,2 x 3 Plates - Red (architectural hobby und modelbau version),32,1962,Trans-Clear,1 +Architecture,2 x 3 Plates - Trans-Clear (architectural hobby und modelbau version),32,1962,Light Gray,1 +Architecture,2 x 3 Plates - Trans-Clear (architectural hobby und modelbau version),32,1962,Trans-Clear,2 +Architecture,2 x 3 Plates - White (architectural hobby und modelbau version),32,1962,Light Gray,1 +Architecture,2 x 3 Plates - White (architectural hobby und modelbau version),32,1962,Trans-Clear,1 +Architecture,2 x 3 Plates - White (architectural hobby und modelbau version),32,1962,White,1 +Architecture,2 x 3 Plates - Yellow (architectural hobby und modelbau version),32,1962,Light Gray,1 +Architecture,2 x 3 Plates - Yellow (architectural hobby und modelbau version),32,1962,Trans-Clear,1 +Architecture,2 x 3 Plates - Yellow (architectural hobby und modelbau version),32,1962,Yellow,1 +Architecture,2 x 4 Plates - Black (architectural hobby und modelbau version),26,1962,Black,1 +Architecture,2 x 4 Plates - Black (architectural hobby und modelbau version),26,1962,Light Gray,1 +Architecture,2 x 4 Plates - Black (architectural hobby und modelbau version),26,1962,Trans-Clear,1 +Architecture,2 x 4 Plates - Blue (architectural hobby und modelbau version),26,1962,Blue,1 +Architecture,2 x 4 Plates - Blue (architectural hobby und modelbau version),26,1962,Light Gray,1 +Architecture,2 x 4 Plates - Blue (architectural hobby und modelbau version),26,1962,Trans-Clear,1 +Architecture,2 x 4 Plates - Light Gray (architectural hobby und modelbau version),26,1962,Light Gray,2 +Architecture,2 x 4 Plates - Light Gray (architectural hobby und modelbau version),26,1962,Trans-Clear,1 +Architecture,2 x 4 Plates - Red (architectural hobby und modelbau version),26,1962,Light Gray,1 +Architecture,2 x 4 Plates - Red (architectural hobby und modelbau version),26,1962,Red,1 +Architecture,2 x 4 Plates - Red (architectural hobby und modelbau version),26,1962,Trans-Clear,1 +Architecture,2 x 4 Plates - Trans-Clear (architectural hobby und modelbau version),26,1962,Light Gray,1 +Architecture,2 x 4 Plates - Trans-Clear (architectural hobby und modelbau version),26,1962,Trans-Clear,2 +Architecture,2 x 4 Plates - White (architectural hobby und modelbau version),26,1962,Light Gray,1 +Architecture,2 x 4 Plates - White (architectural hobby und modelbau version),26,1962,Trans-Clear,1 +Architecture,2 x 4 Plates - White (architectural hobby und modelbau version),26,1962,White,1 +Architecture,2 x 4 Plates - Yellow (architectural hobby und modelbau version),26,1962,Light Gray,1 +Architecture,2 x 4 Plates - Yellow (architectural hobby und modelbau version),26,1962,Trans-Clear,1 +Architecture,2 x 4 Plates - Yellow (architectural hobby und modelbau version),26,1962,Yellow,1 +Architecture,Solomon R. Guggenheim Museum®,744,2017,Black,19 +Architecture,Solomon R. Guggenheim Museum®,744,2017,Dark Bluish Gray,10 +Architecture,Solomon R. Guggenheim Museum®,744,2017,Light Bluish Gray,18 +Architecture,Solomon R. Guggenheim Museum®,744,2017,Olive Green,3 +Architecture,Solomon R. Guggenheim Museum®,744,2017,Orange,1 +Architecture,Solomon R. Guggenheim Museum®,744,2017,Sand Green,2 +Architecture,Solomon R. Guggenheim Museum®,744,2017,Tan,28 +Architecture,Solomon R. Guggenheim Museum®,744,2017,Trans-Black,3 +Architecture,Solomon R. Guggenheim Museum®,744,2017,White,52 +Architecture,Solomon R. Guggenheim Museum®,744,2017,Yellow,7 +Arctic,Snowmobile,43,1998,Trans-Red,1 +Arctic,Snowmobile,43,1998,Black,10 +Arctic,Snowmobile,43,1998,Blue,5 +Arctic,Snowmobile,43,1998,Dark Gray,2 +Arctic,Snowmobile,43,1998,Green,3 +Arctic,Snowmobile,43,1998,Light Gray,2 +Arctic,Snowmobile,43,1998,Orange,5 +Arctic,Snowmobile,43,1998,Trans-Yellow,1 +Arctic,Snowmobile,43,1998,White,1 +Arctic,Snowmobile,43,1998,Yellow,3 +Arctic,Sledge,24,1998,Blue,2 +Arctic,Sledge,24,1998,Light Gray,3 +Arctic,Sledge,24,1998,Orange,1 +Arctic,Sledge,24,1998,Red,3 +Arctic,Sledge,24,1998,Yellow,3 +Arctic,Sledge,24,1998,Black,7 +Arctic,Polar Base,440,2000,Red,14 +Arctic,Polar Base,440,2000,Orange,7 +Arctic,Polar Base,440,2000,Light Gray,33 +Arctic,Polar Base,440,2000,Green,4 +Arctic,Polar Base,440,2000,Dark Gray,9 +Arctic,Polar Base,440,2000,Blue,35 +Arctic,Polar Base,440,2000,Black,50 +Arctic,Polar Base,440,2000,Trans-Clear,1 +Arctic,Polar Base,440,2000,Yellow,18 +Arctic,Polar Base,440,2000,White,28 +Arctic,Polar Base,440,2000,Trans-Red,1 +Arctic,Polar Base,440,2000,Trans-Neon Orange,1 +Arctic,Polar Base,440,2000,Trans-Neon Green,5 +Arctic,Polar Base,440,2000,Trans-Light Blue,2 +Arctic,Polar Base,440,2000,Trans-Green,1 +Arctic,Polar Base,440,2000,Trans-Dark Blue,7 +Arctic,Mobile Outpost,218,2000,Red,1 +Arctic,Mobile Outpost,218,2000,Trans-Dark Blue,3 +Arctic,Mobile Outpost,218,2000,Trans-Green,1 +Arctic,Mobile Outpost,218,2000,Trans-Neon Green,3 +Arctic,Mobile Outpost,218,2000,Trans-Neon Orange,1 +Arctic,Mobile Outpost,218,2000,Trans-Red,2 +Arctic,Mobile Outpost,218,2000,White,14 +Arctic,Mobile Outpost,218,2000,Yellow,7 +Arctic,Mobile Outpost,218,2000,[No Color],1 +Arctic,Mobile Outpost,218,2000,Black,23 +Arctic,Mobile Outpost,218,2000,Blue,15 +Arctic,Mobile Outpost,218,2000,Brown,1 +Arctic,Mobile Outpost,218,2000,Dark Gray,12 +Arctic,Mobile Outpost,218,2000,Green,4 +Arctic,Mobile Outpost,218,2000,Light Gray,17 +Arctic,Mobile Outpost,218,2000,Orange,10 +Arctic,Arctic Expedition,120,2000,[No Color],1 +Arctic,Arctic Expedition,120,2000,Black,17 +Arctic,Arctic Expedition,120,2000,Blue,15 +Arctic,Arctic Expedition,120,2000,Dark Gray,5 +Arctic,Arctic Expedition,120,2000,Green,3 +Arctic,Arctic Expedition,120,2000,Light Gray,8 +Arctic,Arctic Expedition,120,2000,Orange,5 +Arctic,Arctic Expedition,120,2000,Red,1 +Arctic,Arctic Expedition,120,2000,Trans-Red,2 +Arctic,Arctic Expedition,120,2000,Trans-Neon Green,3 +Arctic,Arctic Expedition,120,2000,Trans-Light Blue,2 +Arctic,Arctic Expedition,120,2000,Trans-Dark Blue,1 +Arctic,Arctic Expedition,120,2000,Yellow,4 +Arctic,Arctic Expedition,120,2000,White,8 +Arctic,Polar Scout,55,2000,Trans-Neon Green,1 +Arctic,Polar Scout,55,2000,Black,13 +Arctic,Polar Scout,55,2000,Blue,6 +Arctic,Polar Scout,55,2000,Dark Gray,4 +Arctic,Polar Scout,55,2000,Light Gray,7 +Arctic,Polar Scout,55,2000,Orange,3 +Arctic,Polar Scout,55,2000,Trans-Dark Blue,1 +Arctic,Polar Scout,55,2000,Trans-Light Blue,2 +Arctic,Polar Scout,55,2000,Trans-Neon Orange,2 +Arctic,Polar Scout,55,2000,Trans-Red,1 +Arctic,Polar Scout,55,2000,White,4 +Arctic,Polar Scout,55,2000,Yellow,2 +Arctic,Ice Surfer,42,2000,White,1 +Arctic,Ice Surfer,42,2000,Trans-Clear,1 +Arctic,Ice Surfer,42,2000,Orange,3 +Arctic,Ice Surfer,42,2000,Light Gray,4 +Arctic,Ice Surfer,42,2000,Green,3 +Arctic,Ice Surfer,42,2000,Dark Gray,2 +Arctic,Ice Surfer,42,2000,Blue,6 +Arctic,Ice Surfer,42,2000,Yellow,1 +Arctic,Ice Surfer,42,2000,Black,12 +Arctic,Ice Surfer,42,2000,[No Color],1 +Arctic,Polar Explorer,22,2000,Light Gray,2 +Arctic,Polar Explorer,22,2000,Red,2 +Arctic,Polar Explorer,22,2000,Black,2 +Arctic,Polar Explorer,22,2000,Trans-Light Blue,1 +Arctic,Polar Explorer,22,2000,Trans-Yellow,1 +Arctic,Polar Explorer,22,2000,Trans-Dark Blue,1 +Arctic,Polar Explorer,22,2000,White,8 +Arctic,Polar Explorer,22,2000,Yellow,1 +Arctic,Polar Explorer,22,2000,Blue,1 +Arctic,Polar Explorer,22,2000,Dark Gray,1 +Arctic,Snow Scooter,20,2000,[No Color],1 +Arctic,Snow Scooter,20,2000,Black,5 +Arctic,Snow Scooter,20,2000,Blue,2 +Arctic,Snow Scooter,20,2000,Green,3 +Arctic,Snow Scooter,20,2000,Light Gray,3 +Arctic,Snow Scooter,20,2000,Orange,1 +Arctic,Snow Scooter,20,2000,Trans-Neon Green,1 +Arctic,Snow Scooter,20,2000,Yellow,1 +Arctic,Arctic Base Camp,731,2014,Tan,1 +Arctic,Arctic Base Camp,731,2014,Trans-Black,1 +Arctic,Arctic Base Camp,731,2014,Trans-Clear,4 +Arctic,Arctic Base Camp,731,2014,Trans-Green,1 +Arctic,Arctic Base Camp,731,2014,Trans-Light Blue,7 +Arctic,Arctic Base Camp,731,2014,Trans-Orange,1 +Arctic,Arctic Base Camp,731,2014,Trans-Red,2 +Arctic,Arctic Base Camp,731,2014,Trans-Yellow,1 +Arctic,Arctic Base Camp,731,2014,White,31 +Arctic,Arctic Base Camp,731,2014,Yellow,18 +Arctic,Arctic Base Camp,731,2014,Black,47 +Arctic,Arctic Base Camp,731,2014,Blue,8 +Arctic,Arctic Base Camp,731,2014,Dark Blue,2 +Arctic,Arctic Base Camp,731,2014,Dark Bluish Gray,42 +Arctic,Arctic Base Camp,731,2014,Dark Brown,1 +Arctic,Arctic Base Camp,731,2014,Dark Tan,2 +Arctic,Arctic Base Camp,731,2014,Flat Silver,2 +Arctic,Arctic Base Camp,731,2014,Light Bluish Gray,49 +Arctic,Arctic Base Camp,731,2014,Metallic Silver,1 +Arctic,Arctic Base Camp,731,2014,Orange,38 +Arctic,Arctic Base Camp,731,2014,Red,7 +Arctic,Arctic Base Camp,731,2014,Reddish Brown,4 +Arctic,Arctic Icebreaker,712,2014,Trans-Light Blue,10 +Arctic,Arctic Icebreaker,712,2014,White,52 +Arctic,Arctic Icebreaker,712,2014,Yellow,20 +Arctic,Arctic Icebreaker,712,2014,Black,63 +Arctic,Arctic Icebreaker,712,2014,Blue,5 +Arctic,Arctic Icebreaker,712,2014,Dark Blue,3 +Arctic,Arctic Icebreaker,712,2014,Dark Bluish Gray,39 +Arctic,Arctic Icebreaker,712,2014,Dark Orange,1 +Arctic,Arctic Icebreaker,712,2014,Dark Tan,1 +Arctic,Arctic Icebreaker,712,2014,Flat Silver,2 +Arctic,Arctic Icebreaker,712,2014,Green,1 +Arctic,Arctic Icebreaker,712,2014,Light Bluish Gray,49 +Arctic,Arctic Icebreaker,712,2014,Lime,2 +Arctic,Arctic Icebreaker,712,2014,Metallic Silver,1 +Arctic,Arctic Icebreaker,712,2014,Orange,36 +Arctic,Arctic Icebreaker,712,2014,Red,7 +Arctic,Arctic Icebreaker,712,2014,Reddish Brown,10 +Arctic,Arctic Icebreaker,712,2014,Tan,1 +Arctic,Arctic Icebreaker,712,2014,Trans-Black,1 +Arctic,Arctic Icebreaker,712,2014,Trans-Clear,4 +Arctic,Arctic Icebreaker,712,2014,Trans-Green,1 +Arctic,Arctic Icebreaker,712,2014,Trans-Red,2 +Arctic,Arctic Icebreaker,712,2014,Trans-Yellow,2 +Arctic,Arctic Outpost,373,2014,Trans-Red,1 +Arctic,Arctic Outpost,373,2014,Trans-Yellow,1 +Arctic,Arctic Outpost,373,2014,White,12 +Arctic,Arctic Outpost,373,2014,Yellow,9 +Arctic,Arctic Outpost,373,2014,Black,33 +Arctic,Arctic Outpost,373,2014,Blue,4 +Arctic,Arctic Outpost,373,2014,Dark Blue,2 +Arctic,Arctic Outpost,373,2014,Dark Bluish Gray,31 +Arctic,Arctic Outpost,373,2014,Light Bluish Gray,31 +Arctic,Arctic Outpost,373,2014,Metallic Silver,1 +Arctic,Arctic Outpost,373,2014,Orange,28 +Arctic,Arctic Outpost,373,2014,Red,5 +Arctic,Arctic Outpost,373,2014,Reddish Brown,6 +Arctic,Arctic Outpost,373,2014,Trans-Clear,1 +Arctic,Arctic Outpost,373,2014,Trans-Light Blue,4 +Arctic,Arctic Outpost,373,2014,Trans-Orange,2 +Arctic,Arctic Supply Plane,372,2014,Reddish Brown,5 +Arctic,Arctic Supply Plane,372,2014,Tan,2 +Arctic,Arctic Supply Plane,372,2014,Trans-Black,1 +Arctic,Arctic Supply Plane,372,2014,Trans-Clear,1 +Arctic,Arctic Supply Plane,372,2014,Yellow,7 +Arctic,Arctic Supply Plane,372,2014,Trans-Green,2 +Arctic,Arctic Supply Plane,372,2014,Trans-Light Blue,5 +Arctic,Arctic Supply Plane,372,2014,Trans-Red,3 +Arctic,Arctic Supply Plane,372,2014,White,15 +Arctic,Arctic Supply Plane,372,2014,Black,19 +Arctic,Arctic Supply Plane,372,2014,Blue,4 +Arctic,Arctic Supply Plane,372,2014,Dark Bluish Gray,37 +Arctic,Arctic Supply Plane,372,2014,Dark Tan,1 +Arctic,Arctic Supply Plane,372,2014,Green,3 +Arctic,Arctic Supply Plane,372,2014,Light Bluish Gray,26 +Arctic,Arctic Supply Plane,372,2014,Metallic Silver,1 +Arctic,Arctic Supply Plane,372,2014,Orange,25 +Arctic,Arctic Supply Plane,372,2014,Red,5 +Arctic,Arctic Helicrane,262,2014,Tan,2 +Arctic,Arctic Helicrane,262,2014,Trans-Black,1 +Arctic,Arctic Helicrane,262,2014,Trans-Clear,1 +Arctic,Arctic Helicrane,262,2014,Trans-Green,1 +Arctic,Arctic Helicrane,262,2014,Trans-Light Blue,4 +Arctic,Arctic Helicrane,262,2014,Trans-Medium Blue,1 +Arctic,Arctic Helicrane,262,2014,Trans-Yellow,2 +Arctic,Arctic Helicrane,262,2014,White,8 +Arctic,Arctic Helicrane,262,2014,Trans-Red,1 +Arctic,Arctic Helicrane,262,2014,[No Color],1 +Arctic,Arctic Helicrane,262,2014,Black,27 +Arctic,Arctic Helicrane,262,2014,Blue,6 +Arctic,Arctic Helicrane,262,2014,Dark Bluish Gray,16 +Arctic,Arctic Helicrane,262,2014,Dark Tan,2 +Arctic,Arctic Helicrane,262,2014,Light Bluish Gray,27 +Arctic,Arctic Helicrane,262,2014,Metallic Silver,1 +Arctic,Arctic Helicrane,262,2014,Orange,21 +Arctic,Arctic Helicrane,262,2014,Red,1 +Arctic,Arctic Helicrane,262,2014,Reddish Brown,4 +Arctic,Arctic Helicrane,262,2014,Yellow,3 +Arctic,Arctic Ice Crawler,112,2014,Yellow,5 +Arctic,Arctic Ice Crawler,112,2014,Black,10 +Arctic,Arctic Ice Crawler,112,2014,Blue,2 +Arctic,Arctic Ice Crawler,112,2014,Dark Bluish Gray,12 +Arctic,Arctic Ice Crawler,112,2014,Light Bluish Gray,12 +Arctic,Arctic Ice Crawler,112,2014,Metallic Silver,1 +Arctic,Arctic Ice Crawler,112,2014,Orange,8 +Arctic,Arctic Ice Crawler,112,2014,Trans-Clear,2 +Arctic,Arctic Ice Crawler,112,2014,Trans-Light Blue,3 +Arctic,Arctic Ice Crawler,112,2014,Trans-Red,2 +Arctic,Arctic Ice Crawler,112,2014,White,4 +Arctic,Arctic Snowmobile,44,2014,Trans-Black,1 +Arctic,Arctic Snowmobile,44,2014,Orange,7 +Arctic,Arctic Snowmobile,44,2014,Metallic Silver,1 +Arctic,Arctic Snowmobile,44,2014,Light Bluish Gray,5 +Arctic,Arctic Snowmobile,44,2014,Dark Bluish Gray,8 +Arctic,Arctic Snowmobile,44,2014,Blue,2 +Arctic,Arctic Snowmobile,44,2014,Black,5 +Arctic,Arctic Snowmobile,44,2014,Trans-Light Blue,2 +Arctic,Arctic Snowmobile,44,2014,White,2 +Arctic,Arctic Snowmobile,44,2014,Yellow,1 +Arctic,Polar Accessory Set,41,2014,Light Bluish Gray,3 +Arctic,Polar Accessory Set,41,2014,Black,2 +Arctic,Polar Accessory Set,41,2014,Blue,3 +Arctic,Polar Accessory Set,41,2014,Dark Bluish Gray,4 +Arctic,Polar Accessory Set,41,2014,Flat Silver,1 +Arctic,Polar Accessory Set,41,2014,Metallic Silver,1 +Arctic,Polar Accessory Set,41,2014,Orange,2 +Arctic,Polar Accessory Set,41,2014,Red,1 +Arctic,Polar Accessory Set,41,2014,Reddish Brown,1 +Arctic,Polar Accessory Set,41,2014,Trans-Light Blue,2 +Arctic,Polar Accessory Set,41,2014,Trans-Neon Green,1 +Arctic,Polar Accessory Set,41,2014,Trans-Neon Orange,1 +Arctic,Polar Accessory Set,41,2014,White,1 +Arctic,Polar Accessory Set,41,2014,Yellow,2 +Arctic,Arctic Scout,39,2014,Black,1 +Arctic,Arctic Scout,39,2014,Blue,2 +Arctic,Arctic Scout,39,2014,Dark Bluish Gray,5 +Arctic,Arctic Scout,39,2014,Light Bluish Gray,5 +Arctic,Arctic Scout,39,2014,Orange,7 +Arctic,Arctic Scout,39,2014,Trans-Black,1 +Arctic,Arctic Scout,39,2014,Trans-Red,1 +Arctic,Arctic Scout,39,2014,Trans-Green,1 +Arctic,Arctic Scout,39,2014,Trans-Yellow,1 +Arctic,Arctic Scout,39,2014,White,3 +Arctic,Arctic Scout,39,2014,Yellow,1 +Arctic,Arctic Accessory Set,25,2014,Metallic Silver,1 +Arctic,Arctic Accessory Set,25,2014,Light Bluish Gray,2 +Arctic,Arctic Accessory Set,25,2014,Dark Gray,1 +Arctic,Arctic Accessory Set,25,2014,White,5 +Arctic,Arctic Accessory Set,25,2014,Black,2 +Arctic,Arctic Accessory Set,25,2014,Dark Bluish Gray,5 +Arctic,Arctic Accessory Set,25,2014,Trans-Light Blue,1 +Arctic,Arctic Accessory Set,25,2014,Trans-Clear,1 +Arctic,Arctic Accessory Set,25,2014,Red,1 +Arctic,Arctic Accessory Set,25,2014,Orange,2 +Arctic Technic,Arctic Rescue Base,523,1986,[No Color],2 +Arctic Technic,Arctic Rescue Base,523,1986,Black,19 +Arctic Technic,Arctic Rescue Base,523,1986,Blue,18 +Arctic Technic,Arctic Rescue Base,523,1986,Light Gray,27 +Arctic Technic,Arctic Rescue Base,523,1986,Red,24 +Arctic Technic,Arctic Rescue Base,523,1986,Trans-Dark Blue,1 +Arctic Technic,Arctic Rescue Base,523,1986,White,28 +Arctic Technic,Arctic Rescue Base,523,1986,Yellow,14 +Arctic Technic,Arctic Rescue Unit,387,1986,[No Color],2 +Arctic Technic,Arctic Rescue Unit,387,1986,Black,15 +Arctic Technic,Arctic Rescue Unit,387,1986,Blue,12 +Arctic Technic,Arctic Rescue Unit,387,1986,Light Gray,26 +Arctic Technic,Arctic Rescue Unit,387,1986,Red,16 +Arctic Technic,Arctic Rescue Unit,387,1986,Trans-Clear,1 +Arctic Technic,Arctic Rescue Unit,387,1986,White,21 +Arctic Technic,Arctic Rescue Unit,387,1986,Yellow,2 +Arctic Technic,Polar Copter,238,1986,[No Color],1 +Arctic Technic,Polar Copter,238,1986,Black,12 +Arctic Technic,Polar Copter,238,1986,Blue,1 +Arctic Technic,Polar Copter,238,1986,Light Gray,16 +Arctic Technic,Polar Copter,238,1986,Red,5 +Arctic Technic,Polar Copter,238,1986,Trans-Red,1 +Arctic Technic,Polar Copter,238,1986,White,20 +Arctic Technic,Polar Copter,238,1986,Yellow,11 +Arctic Technic,Snow Scooter,101,1986,[No Color],1 +Arctic Technic,Snow Scooter,101,1986,Black,6 +Arctic Technic,Snow Scooter,101,1986,Light Gray,13 +Arctic Technic,Snow Scooter,101,1986,Red,1 +Arctic Technic,Snow Scooter,101,1986,Trans-Clear,1 +Arctic Technic,Snow Scooter,101,1986,White,13 +Arctic Technic,Snow Scooter,101,1986,Yellow,1 +Atlantis,Portal of Atlantis,1009,2010,Green,1 +Atlantis,Portal of Atlantis,1009,2010,Dark Tan,11 +Atlantis,Portal of Atlantis,1009,2010,Dark Red,14 +Atlantis,Portal of Atlantis,1009,2010,Dark Green,2 +Atlantis,Portal of Atlantis,1009,2010,Dark Brown,1 +Atlantis,Portal of Atlantis,1009,2010,Dark Bluish Gray,52 +Atlantis,Portal of Atlantis,1009,2010,Blue,3 +Atlantis,Portal of Atlantis,1009,2010,Black,49 +Atlantis,Portal of Atlantis,1009,2010,Red,8 +Atlantis,Portal of Atlantis,1009,2010,Pearl Gold,11 +Atlantis,Portal of Atlantis,1009,2010,Lime,1 +Atlantis,Portal of Atlantis,1009,2010,Light Bluish Gray,31 +Atlantis,Portal of Atlantis,1009,2010,Pearl Light Gray,1 +Atlantis,Portal of Atlantis,1009,2010,Yellow,5 +Atlantis,Portal of Atlantis,1009,2010,White,6 +Atlantis,Portal of Atlantis,1009,2010,Trans-Yellow,3 +Atlantis,Portal of Atlantis,1009,2010,Trans-Red,5 +Atlantis,Portal of Atlantis,1009,2010,Trans-Orange,1 +Atlantis,Portal of Atlantis,1009,2010,Trans-Light Blue,2 +Atlantis,Portal of Atlantis,1009,2010,Trans-Green,1 +Atlantis,Portal of Atlantis,1009,2010,Trans-Dark Blue,4 +Atlantis,Portal of Atlantis,1009,2010,Trans-Clear,4 +Atlantis,Portal of Atlantis,1009,2010,Trans-Bright Green,2 +Atlantis,Portal of Atlantis,1009,2010,Tan,11 +Atlantis,Portal of Atlantis,1009,2010,Speckle Black-Gold,2 +Atlantis,Portal of Atlantis,1009,2010,Sand Green,3 +Atlantis,Portal of Atlantis,1009,2010,Reddish Brown,2 +Atlantis,Neptune Carrier,478,2010,Yellow,3 +Atlantis,Neptune Carrier,478,2010,White,3 +Atlantis,Neptune Carrier,478,2010,Trans-Red,1 +Atlantis,Neptune Carrier,478,2010,Tan,1 +Atlantis,Neptune Carrier,478,2010,Royal Blue,1 +Atlantis,Neptune Carrier,478,2010,Red,40 +Atlantis,Neptune Carrier,478,2010,Pearl Light Gray,2 +Atlantis,Neptune Carrier,478,2010,Trans-Green,1 +Atlantis,Neptune Carrier,478,2010,Pearl Dark Gray,1 +Atlantis,Neptune Carrier,478,2010,Lime,6 +Atlantis,Neptune Carrier,478,2010,Light Bluish Gray,18 +Atlantis,Neptune Carrier,478,2010,Glow In Dark Opaque,1 +Atlantis,Neptune Carrier,478,2010,Dark Bluish Gray,36 +Atlantis,Neptune Carrier,478,2010,Dark Blue,3 +Atlantis,Neptune Carrier,478,2010,Blue,3 +Atlantis,Neptune Carrier,478,2010,Black,29 +Atlantis,Neptune Carrier,478,2010,Trans-Bright Green,5 +Atlantis,Neptune Carrier,478,2010,Trans-Clear,3 +Atlantis,Neptune Carrier,478,2010,Pearl Gold,2 +Atlantis,Atlantis Exploration HQ,474,2010,Black,20 +Atlantis,Atlantis Exploration HQ,474,2010,Blue,3 +Atlantis,Atlantis Exploration HQ,474,2010,Dark Blue,3 +Atlantis,Atlantis Exploration HQ,474,2010,Dark Bluish Gray,41 +Atlantis,Atlantis Exploration HQ,474,2010,Dark Tan,2 +Atlantis,Atlantis Exploration HQ,474,2010,Flat Silver,1 +Atlantis,Atlantis Exploration HQ,474,2010,Light Bluish Gray,31 +Atlantis,Atlantis Exploration HQ,474,2010,Lime,3 +Atlantis,Atlantis Exploration HQ,474,2010,Pearl Dark Gray,1 +Atlantis,Atlantis Exploration HQ,474,2010,Pearl Gold,1 +Atlantis,Atlantis Exploration HQ,474,2010,Pearl Light Gray,2 +Atlantis,Atlantis Exploration HQ,474,2010,Red,31 +Atlantis,Atlantis Exploration HQ,474,2010,Tan,3 +Atlantis,Atlantis Exploration HQ,474,2010,Trans-Bright Green,4 +Atlantis,Atlantis Exploration HQ,474,2010,Trans-Green,2 +Atlantis,Atlantis Exploration HQ,474,2010,Trans-Red,2 +Atlantis,Atlantis Exploration HQ,474,2010,Trans-Yellow,1 +Atlantis,Atlantis Exploration HQ,474,2010,White,4 +Atlantis,Atlantis Exploration HQ,474,2010,Yellow,6 +Atlantis,Atlantis Exploration HQ,474,2010,Trans-Clear,1 +Atlantis,Undersea Explorer,361,2010,Trans-Clear,2 +Atlantis,Undersea Explorer,361,2010,Yellow,13 +Atlantis,Undersea Explorer,361,2010,White,2 +Atlantis,Undersea Explorer,361,2010,Black,24 +Atlantis,Undersea Explorer,361,2010,Dark Bluish Gray,22 +Atlantis,Undersea Explorer,361,2010,Dark Tan,1 +Atlantis,Undersea Explorer,361,2010,Trans-Red,3 +Atlantis,Undersea Explorer,361,2010,Light Bluish Gray,9 +Atlantis,Undersea Explorer,361,2010,Lime,5 +Atlantis,Undersea Explorer,361,2010,Pearl Light Gray,3 +Atlantis,Undersea Explorer,361,2010,Blue,3 +Atlantis,Undersea Explorer,361,2010,Red,32 +Atlantis,Undersea Explorer,361,2010,Tan,2 +Atlantis,Undersea Explorer,361,2010,Trans-Bright Green,3 +Atlantis,Gateway of the Squid,354,2010,Trans-Green,1 +Atlantis,Gateway of the Squid,354,2010,Pearl Gold,7 +Atlantis,Gateway of the Squid,354,2010,Lime,6 +Atlantis,Gateway of the Squid,354,2010,Light Bluish Gray,13 +Atlantis,Gateway of the Squid,354,2010,Green,1 +Atlantis,Gateway of the Squid,354,2010,Dark Tan,2 +Atlantis,Gateway of the Squid,354,2010,Dark Red,4 +Atlantis,Gateway of the Squid,354,2010,Dark Green,1 +Atlantis,Gateway of the Squid,354,2010,Blue,1 +Atlantis,Gateway of the Squid,354,2010,Black,37 +Atlantis,Gateway of the Squid,354,2010,Dark Bluish Gray,25 +Atlantis,Gateway of the Squid,354,2010,Yellow,3 +Atlantis,Gateway of the Squid,354,2010,White,9 +Atlantis,Gateway of the Squid,354,2010,Trans-Red,3 +Atlantis,Gateway of the Squid,354,2010,Trans-Dark Blue,2 +Atlantis,Gateway of the Squid,354,2010,Trans-Clear,1 +Atlantis,Gateway of the Squid,354,2010,Trans-Bright Green,1 +Atlantis,Gateway of the Squid,354,2010,Tan,8 +Atlantis,Gateway of the Squid,354,2010,Royal Blue,1 +Atlantis,Gateway of the Squid,354,2010,Red,8 +Atlantis,Deep Sea Striker,260,2010,Blue,2 +Atlantis,Deep Sea Striker,260,2010,Dark Bluish Gray,14 +Atlantis,Deep Sea Striker,260,2010,Light Bluish Gray,7 +Atlantis,Deep Sea Striker,260,2010,Lime,2 +Atlantis,Deep Sea Striker,260,2010,Orange,8 +Atlantis,Deep Sea Striker,260,2010,Red,7 +Atlantis,Deep Sea Striker,260,2010,Trans-Bright Green,2 +Atlantis,Deep Sea Striker,260,2010,Trans-Red,1 +Atlantis,Deep Sea Striker,260,2010,Yellow,1 +Atlantis,Deep Sea Striker,260,2010,White,3 +Atlantis,Deep Sea Striker,260,2010,Black,35 +Atlantis,Deep Sea Striker,260,2010,Trans-Clear,1 +Atlantis,Shadow Snapper,244,2010,White,2 +Atlantis,Shadow Snapper,244,2010,Yellow,2 +Atlantis,Shadow Snapper,244,2010,Black,30 +Atlantis,Shadow Snapper,244,2010,Blue,1 +Atlantis,Shadow Snapper,244,2010,Light Bluish Gray,8 +Atlantis,Shadow Snapper,244,2010,Lime,7 +Atlantis,Shadow Snapper,244,2010,Dark Bluish Gray,8 +Atlantis,Shadow Snapper,244,2010,Red,19 +Atlantis,Shadow Snapper,244,2010,Trans-Bright Green,2 +Atlantis,Shadow Snapper,244,2010,Trans-Clear,1 +Atlantis,Shadow Snapper,244,2010,Trans-Red,1 +Atlantis,Shadow Snapper,244,2010,Trans-Yellow,1 +Atlantis,Typhoon Turbo Sub,197,2010,Tan,1 +Atlantis,Typhoon Turbo Sub,197,2010,Trans-Bright Green,3 +Atlantis,Typhoon Turbo Sub,197,2010,Pearl Light Gray,2 +Atlantis,Typhoon Turbo Sub,197,2010,Pearl Gold,1 +Atlantis,Typhoon Turbo Sub,197,2010,Lime,2 +Atlantis,Typhoon Turbo Sub,197,2010,Red,28 +Atlantis,Typhoon Turbo Sub,197,2010,White,1 +Atlantis,Typhoon Turbo Sub,197,2010,Light Bluish Gray,21 +Atlantis,Typhoon Turbo Sub,197,2010,Dark Bluish Gray,20 +Atlantis,Typhoon Turbo Sub,197,2010,Yellow,1 +Atlantis,Typhoon Turbo Sub,197,2010,Blue,2 +Atlantis,Typhoon Turbo Sub,197,2010,Trans-Clear,1 +Atlantis,Typhoon Turbo Sub,197,2010,Black,13 +Atlantis,Typhoon Turbo Sub,197,2010,[No Color],2 +Atlantis,Typhoon Turbo Sub,197,2010,Trans-Yellow,1 +Atlantis,Typhoon Turbo Sub,197,2010,Trans-Red,1 +Atlantis,Typhoon Turbo Sub,197,2010,Trans-Green,1 +Atlantis,Guardian of the Deep,144,2010,Trans-Red,2 +Atlantis,Guardian of the Deep,144,2010,Yellow,9 +Atlantis,Guardian of the Deep,144,2010,Red,8 +Atlantis,Guardian of the Deep,144,2010,White,2 +Atlantis,Guardian of the Deep,144,2010,Black,38 +Atlantis,Guardian of the Deep,144,2010,[No Color],1 +Atlantis,Guardian of the Deep,144,2010,Blue,2 +Atlantis,Guardian of the Deep,144,2010,Light Bluish Gray,4 +Atlantis,Guardian of the Deep,144,2010,Trans-Bright Green,1 +Atlantis,Guardian of the Deep,144,2010,Lime,1 +Atlantis,Guardian of the Deep,144,2010,Dark Bluish Gray,5 +Atlantis,Seabed Scavenger,119,2010,Tan,4 +Atlantis,Seabed Scavenger,119,2010,Trans-Bright Green,4 +Atlantis,Seabed Scavenger,119,2010,Trans-Clear,2 +Atlantis,Seabed Scavenger,119,2010,Trans-Green,1 +Atlantis,Seabed Scavenger,119,2010,Trans-Red,1 +Atlantis,Seabed Scavenger,119,2010,Yellow,1 +Atlantis,Seabed Scavenger,119,2010,Dark Blue,3 +Atlantis,Seabed Scavenger,119,2010,[No Color],1 +Atlantis,Seabed Scavenger,119,2010,Black,7 +Atlantis,Seabed Scavenger,119,2010,Dark Bluish Gray,15 +Atlantis,Seabed Scavenger,119,2010,Light Bluish Gray,8 +Atlantis,Seabed Scavenger,119,2010,Lime,2 +Atlantis,Seabed Scavenger,119,2010,Pearl Gold,1 +Atlantis,Seabed Scavenger,119,2010,Pearl Light Gray,1 +Atlantis,Seabed Scavenger,119,2010,Red,13 +Atlantis,Monster Crab Clash,68,2010,Orange,3 +Atlantis,Monster Crab Clash,68,2010,Black,12 +Atlantis,Monster Crab Clash,68,2010,Dark Bluish Gray,5 +Atlantis,Monster Crab Clash,68,2010,Light Bluish Gray,3 +Atlantis,Monster Crab Clash,68,2010,Lime,1 +Atlantis,Monster Crab Clash,68,2010,Pearl Light Gray,1 +Atlantis,Monster Crab Clash,68,2010,Red,1 +Atlantis,Monster Crab Clash,68,2010,Trans-Bright Green,1 +Atlantis,Monster Crab Clash,68,2010,Trans-Orange,1 +Atlantis,Monster Crab Clash,68,2010,Yellow,1 +Atlantis,Wreck Raider,64,2010,Trans-Bright Green,1 +Atlantis,Wreck Raider,64,2010,Red,10 +Atlantis,Wreck Raider,64,2010,Yellow,1 +Atlantis,Wreck Raider,64,2010,Pearl Gold,1 +Atlantis,Wreck Raider,64,2010,Lime,3 +Atlantis,Wreck Raider,64,2010,Dark Bluish Gray,10 +Atlantis,Wreck Raider,64,2010,Black,4 +Atlantis,Wreck Raider,64,2010,[No Color],1 +Atlantis,Wreck Raider,64,2010,Light Bluish Gray,11 +Atlantis,Wreck Raider,64,2010,White,1 +Atlantis,Wreck Raider,64,2010,Trans-Dark Blue,1 +Atlantis,Piranha,45,2010,Red,2 +Atlantis,Piranha,45,2010,White,1 +Atlantis,Piranha,45,2010,Trans-Red,1 +Atlantis,Piranha,45,2010,Trans-Dark Blue,1 +Atlantis,Piranha,45,2010,Lime,3 +Atlantis,Piranha,45,2010,Light Bluish Gray,1 +Atlantis,Piranha,45,2010,Dark Bluish Gray,5 +Atlantis,Piranha,45,2010,Black,14 +Atlantis,Octopus,42,2010,White,3 +Atlantis,Octopus,42,2010,Trans-Red,1 +Atlantis,Octopus,42,2010,Red,2 +Atlantis,Octopus,42,2010,Dark Tan,1 +Atlantis,Octopus,42,2010,Black,7 +Atlantis,Octopus,42,2010,Trans-Neon Green,1 +Atlantis,Mini Sub,37,2010,White,1 +Atlantis,Mini Sub,37,2010,Yellow,1 +Atlantis,Mini Sub,37,2010,Red,2 +Atlantis,Mini Sub,37,2010,Lime,2 +Atlantis,Mini Sub,37,2010,Light Bluish Gray,1 +Atlantis,Mini Sub,37,2010,Dark Bluish Gray,7 +Atlantis,Mini Sub,37,2010,Black,6 +Atlantis,Mini Sub,37,2010,Trans-Yellow,1 +Atlantis,Mini Sub,37,2010,Trans-Bright Green,1 +Atlantis,Mini Sub,37,2010,Trans-Clear,2 +Atlantis,Sea Jet,24,2010,Black,4 +Atlantis,Sea Jet,24,2010,Light Bluish Gray,3 +Atlantis,Sea Jet,24,2010,Lime,2 +Atlantis,Sea Jet,24,2010,Red,1 +Atlantis,Sea Jet,24,2010,Dark Bluish Gray,6 +Atlantis,Sea Jet,24,2010,Trans-Bright Green,1 +Atlantis,Sea Jet,24,2010,Trans-Clear,1 +Atlantis,Sea Jet,24,2010,Yellow,1 +Atlantis,Manta Warrior,13,2010,Dark Bluish Gray,2 +Atlantis,Manta Warrior,13,2010,Pearl Gold,1 +Atlantis,Manta Warrior,13,2010,Dark Blue,3 +Atlantis,Manta Warrior,13,2010,Dark Green,1 +Atlantis,Manta Warrior,13,2010,Light Bluish Gray,5 +Atlantis,City of Atlantis,686,2011,Orange,4 +Atlantis,City of Atlantis,686,2011,Pearl Gold,12 +Atlantis,City of Atlantis,686,2011,Red,14 +Atlantis,City of Atlantis,686,2011,Sand Green,3 +Atlantis,City of Atlantis,686,2011,Speckle Black-Gold,1 +Atlantis,City of Atlantis,686,2011,Tan,12 +Atlantis,City of Atlantis,686,2011,Trans-Clear,1 +Atlantis,City of Atlantis,686,2011,Trans-Dark Blue,1 +Atlantis,City of Atlantis,686,2011,Trans-Green,2 +Atlantis,City of Atlantis,686,2011,Trans-Purple,1 +Atlantis,City of Atlantis,686,2011,Trans-Red,3 +Atlantis,City of Atlantis,686,2011,Trans-Yellow,3 +Atlantis,City of Atlantis,686,2011,White,40 +Atlantis,City of Atlantis,686,2011,Yellow,6 +Atlantis,City of Atlantis,686,2011,Green,2 +Atlantis,City of Atlantis,686,2011,[No Color],1 +Atlantis,City of Atlantis,686,2011,Black,18 +Atlantis,City of Atlantis,686,2011,Blue,6 +Atlantis,City of Atlantis,686,2011,Dark Bluish Gray,34 +Atlantis,City of Atlantis,686,2011,Dark Green,2 +Atlantis,City of Atlantis,686,2011,Dark Red,4 +Atlantis,City of Atlantis,686,2011,Dark Tan,4 +Atlantis,City of Atlantis,686,2011,Flat Silver,4 +Atlantis,City of Atlantis,686,2011,Light Bluish Gray,26 +Atlantis,City of Atlantis,686,2011,Metallic Gold,1 +Atlantis,Deep Sea Raider,265,2011,Dark Red,1 +Atlantis,Deep Sea Raider,265,2011,Dark Tan,1 +Atlantis,Deep Sea Raider,265,2011,[No Color],1 +Atlantis,Deep Sea Raider,265,2011,Black,12 +Atlantis,Deep Sea Raider,265,2011,Blue,2 +Atlantis,Deep Sea Raider,265,2011,Dark Bluish Gray,25 +Atlantis,Deep Sea Raider,265,2011,Dark Green,2 +Atlantis,Deep Sea Raider,265,2011,Speckle Black-Gold,1 +Atlantis,Deep Sea Raider,265,2011,Flat Silver,6 +Atlantis,Deep Sea Raider,265,2011,Light Bluish Gray,6 +Atlantis,Deep Sea Raider,265,2011,Pearl Gold,4 +Atlantis,Deep Sea Raider,265,2011,Pearl Light Gray,1 +Atlantis,Deep Sea Raider,265,2011,Red,24 +Atlantis,Deep Sea Raider,265,2011,Reddish Brown,1 +Atlantis,Deep Sea Raider,265,2011,Tan,4 +Atlantis,Deep Sea Raider,265,2011,Trans-Clear,1 +Atlantis,Deep Sea Raider,265,2011,Trans-Dark Blue,1 +Atlantis,Deep Sea Raider,265,2011,Trans-Green,1 +Atlantis,Deep Sea Raider,265,2011,Trans-Orange,1 +Atlantis,Deep Sea Raider,265,2011,Trans-Red,4 +Atlantis,Deep Sea Raider,265,2011,Trans-Yellow,4 +Atlantis,Deep Sea Raider,265,2011,White,6 +Atlantis,Deep Sea Raider,265,2011,Yellow,13 +Atlantis,Angler Attack,200,2011,White,8 +Atlantis,Angler Attack,200,2011,Speckle Black-Gold,1 +Atlantis,Angler Attack,200,2011,Yellow,5 +Atlantis,Angler Attack,200,2011,Tan,1 +Atlantis,Angler Attack,200,2011,Trans-Clear,1 +Atlantis,Angler Attack,200,2011,Trans-Dark Blue,2 +Atlantis,Angler Attack,200,2011,Trans-Green,2 +Atlantis,Angler Attack,200,2011,Flat Silver,2 +Atlantis,Angler Attack,200,2011,[No Color],1 +Atlantis,Angler Attack,200,2011,Black,21 +Atlantis,Angler Attack,200,2011,Blue,2 +Atlantis,Angler Attack,200,2011,Dark Bluish Gray,2 +Atlantis,Angler Attack,200,2011,Dark Green,14 +Atlantis,Angler Attack,200,2011,Dark Red,1 +Atlantis,Angler Attack,200,2011,Trans-Neon Green,1 +Atlantis,Angler Attack,200,2011,Dark Tan,1 +Atlantis,Angler Attack,200,2011,Green,1 +Atlantis,Angler Attack,200,2011,Light Bluish Gray,7 +Atlantis,Angler Attack,200,2011,Lime,5 +Atlantis,Angler Attack,200,2011,Pearl Gold,5 +Atlantis,Angler Attack,200,2011,Red,12 +Atlantis,Angler Attack,200,2011,Sand Green,3 +Atlantis,Angler Attack,200,2011,Trans-Red,1 +Atlantis,Angler Attack,200,2011,Trans-Yellow,1 +Atlantis,Seabed Strider,104,2011,Black,8 +Atlantis,Seabed Strider,104,2011,Dark Bluish Gray,12 +Atlantis,Seabed Strider,104,2011,Dark Tan,1 +Atlantis,Seabed Strider,104,2011,Flat Silver,2 +Atlantis,Seabed Strider,104,2011,Light Bluish Gray,4 +Atlantis,Seabed Strider,104,2011,Pearl Gold,1 +Atlantis,Seabed Strider,104,2011,Red,9 +Atlantis,Seabed Strider,104,2011,Sand Green,1 +Atlantis,Seabed Strider,104,2011,Trans-Light Blue,1 +Atlantis,Seabed Strider,104,2011,Trans-Orange,1 +Atlantis,Seabed Strider,104,2011,Trans-Red,1 +Atlantis,Seabed Strider,104,2011,Trans-Yellow,2 +Atlantis,Seabed Strider,104,2011,White,2 +Atlantis,Seabed Strider,104,2011,Yellow,4 +Atlantis,Ocean Speeder,53,2011,Trans-Yellow,1 +Atlantis,Ocean Speeder,53,2011,Yellow,4 +Atlantis,Ocean Speeder,53,2011,[No Color],1 +Atlantis,Ocean Speeder,53,2011,Black,3 +Atlantis,Ocean Speeder,53,2011,Blue,1 +Atlantis,Ocean Speeder,53,2011,Dark Bluish Gray,4 +Atlantis,Ocean Speeder,53,2011,Dark Green,2 +Atlantis,Ocean Speeder,53,2011,Dark Tan,1 +Atlantis,Ocean Speeder,53,2011,Flat Silver,2 +Atlantis,Ocean Speeder,53,2011,Light Bluish Gray,3 +Atlantis,Ocean Speeder,53,2011,Pearl Gold,1 +Atlantis,Ocean Speeder,53,2011,Red,11 +Atlantis,Ocean Speeder,53,2011,Tan,1 +Atlantis,Ocean Speeder,53,2011,Trans-Clear,1 +Atlantis,Ocean Speeder,53,2011,Trans-Green,1 +Atlantis,Ocean Speeder,53,2011,Trans-Red,2 +Avatar,Fire Nation Ship,724,2006,Trans-Neon Orange,2 +Avatar,Fire Nation Ship,724,2006,Dark Bluish Gray,34 +Avatar,Fire Nation Ship,724,2006,Black,51 +Avatar,Fire Nation Ship,724,2006,Blue,1 +Avatar,Fire Nation Ship,724,2006,Dark Blue,2 +Avatar,Fire Nation Ship,724,2006,Dark Red,8 +Avatar,Fire Nation Ship,724,2006,Light Bluish Gray,22 +Avatar,Fire Nation Ship,724,2006,Light Flesh,4 +Avatar,Fire Nation Ship,724,2006,Red,7 +Avatar,Fire Nation Ship,724,2006,Reddish Brown,5 +Avatar,Fire Nation Ship,724,2006,Tan,1 +Avatar,Fire Nation Ship,724,2006,Trans-Clear,1 +Avatar,Fire Nation Ship,724,2006,Trans-Red,1 +Avatar,Fire Nation Ship,724,2006,White,1 +Avatar,Fire Nation Ship,724,2006,Yellow,1 +Avatar,Air Temple,400,2006,Black,36 +Avatar,Air Temple,400,2006,Blue,3 +Avatar,Air Temple,400,2006,Dark Bluish Gray,25 +Avatar,Air Temple,400,2006,Dark Red,2 +Avatar,Air Temple,400,2006,Light Bluish Gray,14 +Avatar,Air Temple,400,2006,Light Flesh,3 +Avatar,Air Temple,400,2006,Red,5 +Avatar,Air Temple,400,2006,Reddish Brown,15 +Avatar,Air Temple,400,2006,Sand Green,5 +Avatar,Air Temple,400,2006,Trans-Clear,2 +Avatar,Air Temple,400,2006,Trans-Dark Blue,1 +Avatar,Air Temple,400,2006,Trans-Green,1 +Avatar,Air Temple,400,2006,Trans-Neon Orange,1 +Avatar,Air Temple,400,2006,White,6 +Avatar,Air Temple,400,2006,Yellow,1 +Avatar,Air Temple,400,2006,Tan,26 +Avatar,Air Temple,400,2006,[No Color],1 +Avengers,Quinjet Aerial Battle,748,2012,Pearl Gold,9 +Avengers,Quinjet Aerial Battle,748,2012,[No Color],1 +Avengers,Quinjet Aerial Battle,748,2012,Black,46 +Avengers,Quinjet Aerial Battle,748,2012,Blue,11 +Avengers,Quinjet Aerial Battle,748,2012,Bright Light Yellow,1 +Avengers,Quinjet Aerial Battle,748,2012,Dark Blue,7 +Avengers,Quinjet Aerial Battle,748,2012,Medium Blue,1 +Avengers,Quinjet Aerial Battle,748,2012,Dark Bluish Gray,40 +Avengers,Quinjet Aerial Battle,748,2012,Dark Orange,1 +Avengers,Quinjet Aerial Battle,748,2012,Dark Purple,1 +Avengers,Quinjet Aerial Battle,748,2012,Dark Red,4 +Avengers,Quinjet Aerial Battle,748,2012,Dark Tan,6 +Avengers,Quinjet Aerial Battle,748,2012,Green,3 +Avengers,Quinjet Aerial Battle,748,2012,Light Bluish Gray,61 +Avengers,Quinjet Aerial Battle,748,2012,Orange,1 +Avengers,Quinjet Aerial Battle,748,2012,Trans-Medium Blue,1 +Avengers,Quinjet Aerial Battle,748,2012,Trans-Light Blue,2 +Avengers,Quinjet Aerial Battle,748,2012,Trans-Black,2 +Avengers,Quinjet Aerial Battle,748,2012,Tan,5 +Avengers,Quinjet Aerial Battle,748,2012,Red,7 +Avengers,Quinjet Aerial Battle,748,2012,Yellow,9 +Avengers,Quinjet Aerial Battle,748,2012,White,12 +Avengers,Quinjet Aerial Battle,748,2012,Trans-Red,3 +Avengers,Quinjet Aerial Battle,748,2012,Trans-Purple,1 +Avengers,Quinjet Aerial Battle,748,2012,Trans-Neon Orange,1 +Avengers,Quinjet Aerial Battle,748,2012,Light Flesh,4 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Black,27 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Blue,6 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Bright Green,5 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Bright Light Yellow,1 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Dark Blue,16 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Dark Bluish Gray,27 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Dark Brown,1 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Flat Silver,1 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Green,2 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Light Bluish Gray,31 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Light Flesh,3 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Orange,1 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Pearl Dark Gray,1 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Pearl Gold,3 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Red,8 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Trans-Black,1 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Trans-Clear,1 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Trans-Dark Blue,1 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Trans-Light Blue,3 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Trans-Orange,1 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Trans-Yellow,2 +Avengers,Hulk’s Helicarrier Breakout,385,2012,White,13 +Avengers,Hulk’s Helicarrier Breakout,385,2012,Yellow,9 +Avengers,Loki's Cosmic Cube Escape,180,2012,Trans-Clear,5 +Avengers,Loki's Cosmic Cube Escape,180,2012,Trans-Light Blue,2 +Avengers,Loki's Cosmic Cube Escape,180,2012,Trans-Orange,1 +Avengers,Loki's Cosmic Cube Escape,180,2012,Trans-Red,2 +Avengers,Loki's Cosmic Cube Escape,180,2012,Light Bluish Gray,12 +Avengers,Loki's Cosmic Cube Escape,180,2012,Black,14 +Avengers,Loki's Cosmic Cube Escape,180,2012,Blue,3 +Avengers,Loki's Cosmic Cube Escape,180,2012,Dark Blue,13 +Avengers,Loki's Cosmic Cube Escape,180,2012,Dark Bluish Gray,11 +Avengers,Loki's Cosmic Cube Escape,180,2012,Dark Red,4 +Avengers,Loki's Cosmic Cube Escape,180,2012,Green,1 +Avengers,Loki's Cosmic Cube Escape,180,2012,Light Flesh,3 +Avengers,Loki's Cosmic Cube Escape,180,2012,Medium Dark Flesh,1 +Avengers,Loki's Cosmic Cube Escape,180,2012,Pearl Gold,3 +Avengers,Loki's Cosmic Cube Escape,180,2012,Red,7 +Avengers,Captain America's Avenging Cycle,71,2012,[No Color],1 +Avengers,Captain America's Avenging Cycle,71,2012,Black,6 +Avengers,Captain America's Avenging Cycle,71,2012,Blue,2 +Avengers,Captain America's Avenging Cycle,71,2012,Dark Blue,3 +Avengers,Captain America's Avenging Cycle,71,2012,Dark Bluish Gray,4 +Avengers,Captain America's Avenging Cycle,71,2012,Dark Purple,1 +Avengers,Captain America's Avenging Cycle,71,2012,Dark Red,2 +Avengers,Captain America's Avenging Cycle,71,2012,Dark Tan,2 +Avengers,Captain America's Avenging Cycle,71,2012,Flat Silver,1 +Avengers,Captain America's Avenging Cycle,71,2012,Light Bluish Gray,10 +Avengers,Captain America's Avenging Cycle,71,2012,Pearl Gold,5 +Avengers,Captain America's Avenging Cycle,71,2012,Tan,4 +Avengers,Captain America's Avenging Cycle,71,2012,Trans-Clear,1 +Avengers,Captain America's Avenging Cycle,71,2012,Trans-Dark Blue,1 +Avengers,Captain America's Avenging Cycle,71,2012,Trans-Purple,1 +Avengers,Captain America's Avenging Cycle,71,2012,Yellow,1 +Avengers,Quinjet,33,2012,Trans-Dark Blue,1 +Avengers,Quinjet,33,2012,Trans-Black,1 +Avengers,Quinjet,33,2012,Light Bluish Gray,6 +Avengers,Quinjet,33,2012,Dark Bluish Gray,4 +Avengers,Quinjet,33,2012,Black,5 +Avengers,Quinjet,33,2012,Trans-Medium Blue,1 +Avengers,Thor and the Cosmic Cube,25,2012,Black,2 +Avengers,Thor and the Cosmic Cube,25,2012,Light Flesh,1 +Avengers,Thor and the Cosmic Cube,25,2012,Bright Light Yellow,1 +Avengers,Thor and the Cosmic Cube,25,2012,Dark Blue,2 +Avengers,Thor and the Cosmic Cube,25,2012,Dark Bluish Gray,6 +Avengers,Thor and the Cosmic Cube,25,2012,Dark Tan,1 +Avengers,Thor and the Cosmic Cube,25,2012,Light Bluish Gray,6 +Avengers,Thor and the Cosmic Cube,25,2012,Red,1 +Avengers,Thor and the Cosmic Cube,25,2012,Trans-Clear,1 +Avengers,Hawkeye with Equipment,24,2012,Dark Blue,1 +Avengers,Hawkeye with Equipment,24,2012,Dark Bluish Gray,6 +Avengers,Hawkeye with Equipment,24,2012,Light Bluish Gray,3 +Avengers,Hawkeye with Equipment,24,2012,Trans-Orange,1 +Avengers,Hawkeye with Equipment,24,2012,Red,2 +Avengers,Hawkeye with Equipment,24,2012,Medium Dark Flesh,1 +Avengers,Hawkeye with Equipment,24,2012,Black,4 +Avengers,Hawkeye with Equipment,24,2012,Light Flesh,1 +Avengers,Hulk,4,2012,Bright Green,3 +Avengers,Hulk,4,2012,Black,1 +Avengers,Avenjet Space Mission,521,2016,Black,29 +Avengers,Avenjet Space Mission,521,2016,Blue,9 +Avengers,Avenjet Space Mission,521,2016,Bright Light Orange,1 +Avengers,Avenjet Space Mission,521,2016,Bright Light Yellow,1 +Avengers,Avenjet Space Mission,521,2016,Bright Pink,1 +Avengers,Avenjet Space Mission,521,2016,Dark Blue,6 +Avengers,Avenjet Space Mission,521,2016,Dark Bluish Gray,21 +Avengers,Avenjet Space Mission,521,2016,Dark Orange,1 +Avengers,Avenjet Space Mission,521,2016,Light Bluish Gray,14 +Avengers,Avenjet Space Mission,521,2016,Light Flesh,3 +Avengers,Avenjet Space Mission,521,2016,Medium Blue,1 +Avengers,Avenjet Space Mission,521,2016,Pearl Gold,6 +Avengers,Avenjet Space Mission,521,2016,Red,33 +Avengers,Avenjet Space Mission,521,2016,Reddish Brown,3 +Avengers,Avenjet Space Mission,521,2016,Trans-Black,1 +Avengers,Avenjet Space Mission,521,2016,Trans-Clear,4 +Avengers,Avenjet Space Mission,521,2016,Trans-Dark Blue,2 +Avengers,Avenjet Space Mission,521,2016,Trans-Dark Pink,2 +Avengers,Avenjet Space Mission,521,2016,Trans-Light Blue,5 +Avengers,Avenjet Space Mission,521,2016,Trans-Red,3 +Avengers,Avenjet Space Mission,521,2016,White,29 +Avengers,Avenjet Space Mission,521,2016,Yellow,8 +Avengers,Iron Skull Sub Attack,333,2016,Aqua,1 +Avengers,Iron Skull Sub Attack,333,2016,Black,40 +Avengers,Iron Skull Sub Attack,333,2016,Blue,3 +Avengers,Iron Skull Sub Attack,333,2016,Dark Bluish Gray,24 +Avengers,Iron Skull Sub Attack,333,2016,Dark Green,1 +Avengers,Iron Skull Sub Attack,333,2016,Flat Silver,1 +Avengers,Iron Skull Sub Attack,333,2016,Green,2 +Avengers,Iron Skull Sub Attack,333,2016,Light Bluish Gray,15 +Avengers,Iron Skull Sub Attack,333,2016,Light Flesh,1 +Avengers,Iron Skull Sub Attack,333,2016,Lime,1 +Avengers,Iron Skull Sub Attack,333,2016,Orange,1 +Avengers,Iron Skull Sub Attack,333,2016,Red,12 +Avengers,Iron Skull Sub Attack,333,2016,Sand Green,6 +Avengers,Iron Skull Sub Attack,333,2016,Tan,2 +Avengers,Iron Skull Sub Attack,333,2016,Trans-Black,2 +Avengers,Iron Skull Sub Attack,333,2016,Trans-Clear,1 +Avengers,Iron Skull Sub Attack,333,2016,Trans-Neon Orange,3 +Avengers,Iron Skull Sub Attack,333,2016,Trans-Orange,1 +Avengers,Iron Skull Sub Attack,333,2016,Trans-Red,5 +Avengers,Iron Skull Sub Attack,333,2016,Trans-Yellow,1 +Avengers,Iron Skull Sub Attack,333,2016,White,1 +Avengers,Iron Skull Sub Attack,333,2016,Yellow,5 +Barraki,Takadox,62,2007,Dark Bluish Gray,1 +Barraki,Takadox,62,2007,Trans-Yellow,1 +Barraki,Takadox,62,2007,Black,7 +Barraki,Takadox,62,2007,Blue,2 +Barraki,Takadox,62,2007,Dark Blue,4 +Barraki,Takadox,62,2007,Light Bluish Gray,1 +Barraki,Takadox,62,2007,Pearl Light Gray,3 +Barraki,Takadox,62,2007,Red,1 +Barraki,Takadox,62,2007,Trans-Medium Blue,4 +Barraki,Takadox,62,2007,Trans-Red,1 +Barraki,Mantax,58,2007,Trans-Yellow,1 +Barraki,Mantax,58,2007,Trans-Red,1 +Barraki,Mantax,58,2007,Pearl Light Gray,3 +Barraki,Mantax,58,2007,Light Bluish Gray,1 +Barraki,Mantax,58,2007,Red,2 +Barraki,Mantax,58,2007,Dark Bluish Gray,3 +Barraki,Mantax,58,2007,Black,16 +Barraki,Mantax,58,2007,Blue,1 +Barraki,Ehlek,54,2007,Dark Green,4 +Barraki,Ehlek,54,2007,Trans-Dark Blue,1 +Barraki,Ehlek,54,2007,Black,3 +Barraki,Ehlek,54,2007,Blue,1 +Barraki,Ehlek,54,2007,Dark Bluish Gray,2 +Barraki,Ehlek,54,2007,Light Bluish Gray,2 +Barraki,Ehlek,54,2007,Lime,4 +Barraki,Ehlek,54,2007,Pearl Light Gray,3 +Barraki,Ehlek,54,2007,Red,1 +Barraki,Ehlek,54,2007,Trans-Green,2 +Barraki,Ehlek,54,2007,Trans-Yellow,1 +Barraki,Ehlek,54,2007,White,1 +Barraki,Kalmah,53,2007,Trans-Yellow,1 +Barraki,Kalmah,53,2007,White,1 +Barraki,Kalmah,53,2007,Blue,1 +Barraki,Kalmah,53,2007,Dark Bluish Gray,1 +Barraki,Kalmah,53,2007,Dark Red,5 +Barraki,Kalmah,53,2007,Light Bluish Gray,1 +Barraki,Kalmah,53,2007,Orange,1 +Barraki,Kalmah,53,2007,Pearl Light Gray,2 +Barraki,Kalmah,53,2007,Trans-Dark Blue,1 +Barraki,Kalmah,53,2007,Trans-Orange,1 +Barraki,Kalmah,53,2007,Black,5 +Barraki,Carapar,50,2007,White,1 +Barraki,Carapar,50,2007,Trans-Yellow,1 +Barraki,Carapar,50,2007,Black,4 +Barraki,Carapar,50,2007,Pearl Light Gray,3 +Barraki,Carapar,50,2007,Light Bluish Gray,1 +Barraki,Carapar,50,2007,Dark Bluish Gray,5 +Barraki,Carapar,50,2007,Bright Light Orange,5 +Barraki,Carapar,50,2007,Blue,1 +Barraki,Carapar,50,2007,Trans-Red,1 +Barraki,Pridak,47,2007,Blue,1 +Barraki,Pridak,47,2007,Dark Bluish Gray,1 +Barraki,Pridak,47,2007,Light Bluish Gray,1 +Barraki,Pridak,47,2007,Pearl Light Gray,2 +Barraki,Pridak,47,2007,Red,1 +Barraki,Pridak,47,2007,Trans-Dark Blue,1 +Barraki,Pridak,47,2007,Trans-Yellow,1 +Barraki,Pridak,47,2007,White,6 +Barraki,Pridak,47,2007,Black,6 +Basic,Basic Building Set,619,1985,Blue,16 +Basic,Basic Building Set,619,1985,Red,34 +Basic,Basic Building Set,619,1985,Trans-Clear,5 +Basic,Basic Building Set,619,1985,White,10 +Basic,Basic Building Set,619,1985,Yellow,18 +Basic,Basic Building Set,619,1985,Green,4 +Basic,Basic Building Set,619,1985,Black,10 +Basic,Basic Building Set,578,1985,White,11 +Basic,Basic Building Set,578,1985,Light Gray,1 +Basic,Basic Building Set,578,1985,Milky White,1 +Basic,Basic Building Set,578,1985,Trans-Clear,6 +Basic,Basic Building Set,578,1985,Black,19 +Basic,Basic Building Set,578,1985,Blue,24 +Basic,Basic Building Set,578,1985,Brown,1 +Basic,Basic Building Set,578,1985,Red,50 +Basic,Basic Building Set,578,1985,Green,4 +Basic,Basic Building Set,578,1985,Yellow,21 +Basic,Basic Building Set,530,1985,Black,33 +Basic,Basic Building Set,530,1985,Yellow,43 +Basic,Basic Building Set,530,1985,Trans-Clear,4 +Basic,Basic Building Set,530,1985,White,1 +Basic,Basic Building Set,530,1985,Trans-Yellow,1 +Basic,Basic Building Set,530,1985,Trans-Red,1 +Basic,Basic Building Set,530,1985,Trans-Green,1 +Basic,Basic Building Set,530,1985,Red,50 +Basic,Basic Building Set,530,1985,Light Gray,8 +Basic,Basic Building Set,432,1985,Black,32 +Basic,Basic Building Set,432,1985,Trans-Clear,4 +Basic,Basic Building Set,432,1985,Blue,4 +Basic,Basic Building Set,432,1985,Brown,3 +Basic,Basic Building Set,432,1985,Green,3 +Basic,Basic Building Set,432,1985,Trans-Green,1 +Basic,Basic Building Set,432,1985,Trans-Red,1 +Basic,Basic Building Set,432,1985,Trans-Yellow,1 +Basic,Basic Building Set,432,1985,White,16 +Basic,Basic Building Set,432,1985,Yellow,32 +Basic,Basic Building Set,432,1985,Light Gray,4 +Basic,Basic Building Set,432,1985,Red,28 +Basic,Basic Building Set,432,1985,Dark Gray,1 +Basic,Basic Building Set,339,1985,Yellow,5 +Basic,Basic Building Set,339,1985,White,21 +Basic,Basic Building Set,339,1985,Trans-Yellow,1 +Basic,Basic Building Set,339,1985,Trans-Red,1 +Basic,Basic Building Set,339,1985,Trans-Green,1 +Basic,Basic Building Set,339,1985,Trans-Clear,4 +Basic,Basic Building Set,339,1985,Black,11 +Basic,Basic Building Set,339,1985,Blue,23 +Basic,Basic Building Set,339,1985,Green,2 +Basic,Basic Building Set,339,1985,Light Gray,16 +Basic,Basic Building Set,339,1985,Red,41 +Basic,Basic Building Set,315,1985,Yellow,11 +Basic,Basic Building Set,315,1985,Trans-Clear,2 +Basic,Basic Building Set,315,1985,Red,14 +Basic,Basic Building Set,315,1985,Green,4 +Basic,Basic Building Set,315,1985,White,6 +Basic,Basic Building Set,315,1985,[No Color],2 +Basic,Basic Building Set,315,1985,Black,7 +Basic,Basic Building Set,315,1985,Blue,6 +Basic,Basic Building Set,273,1985,Trans-Clear,3 +Basic,Basic Building Set,273,1985,Yellow,12 +Basic,Basic Building Set,273,1985,Blue,10 +Basic,Basic Building Set,273,1985,White,10 +Basic,Basic Building Set,273,1985,Red,30 +Basic,Basic Building Set,273,1985,Light Gray,1 +Basic,Basic Building Set,273,1985,Green,4 +Basic,Basic Building Set,273,1985,Brown,1 +Basic,Basic Building Set,273,1985,Black,6 +Basic,Basic Building Set,220,1985,Yellow,12 +Basic,Basic Building Set,220,1985,White,4 +Basic,Basic Building Set,220,1985,Trans-Clear,2 +Basic,Basic Building Set,220,1985,Red,13 +Basic,Basic Building Set,220,1985,Green,4 +Basic,Basic Building Set,220,1985,Black,5 +Basic,Basic Building Set,220,1985,Blue,6 +Basic,Basic Building Set,220,1985,[No Color],2 +Basic,Basic Building Set,219,1985,Light Gray,1 +Basic,Basic Building Set,219,1985,Trans-Clear,3 +Basic,Basic Building Set,219,1985,White,5 +Basic,Basic Building Set,219,1985,Yellow,10 +Basic,Basic Building Set,219,1985,Red,12 +Basic,Basic Building Set,219,1985,Brown,1 +Basic,Basic Building Set,219,1985,Black,3 +Basic,Basic Building Set,219,1985,Blue,24 +Basic,Basic Building Set,219,1985,Green,3 +Basic,Basic Set with Storage Case,215,1985,Black,3 +Basic,Basic Set with Storage Case,215,1985,Blue,24 +Basic,Basic Set with Storage Case,215,1985,Brown,1 +Basic,Basic Set with Storage Case,215,1985,Green,3 +Basic,Basic Set with Storage Case,215,1985,Light Gray,1 +Basic,Basic Set with Storage Case,215,1985,Red,12 +Basic,Basic Set with Storage Case,215,1985,Trans-Clear,3 +Basic,Basic Set with Storage Case,215,1985,White,5 +Basic,Basic Set with Storage Case,215,1985,Yellow,10 +Basic,Basic Building Set,173,1985,Green,2 +Basic,Basic Building Set,173,1985,Blue,10 +Basic,Basic Building Set,173,1985,Yellow,9 +Basic,Basic Building Set,173,1985,Black,2 +Basic,Basic Building Set,173,1985,White,5 +Basic,Basic Building Set,173,1985,Trans-Clear,4 +Basic,Basic Building Set,173,1985,Red,25 +Basic,Basic Building Set,158,1985,Yellow,10 +Basic,Basic Building Set,158,1985,White,4 +Basic,Basic Building Set,158,1985,Trans-Clear,1 +Basic,Basic Building Set,158,1985,Red,9 +Basic,Basic Building Set,158,1985,Blue,5 +Basic,Basic Building Set,158,1985,Green,3 +Basic,Basic Building Set,158,1985,Black,7 +Basic,Basic Building Set,158,1985,[No Color],2 +Basic,Special Value 96 pieces (Canadian Set),104,1985,Yellow,7 +Basic,Special Value 96 pieces (Canadian Set),104,1985,[No Color],1 +Basic,Special Value 96 pieces (Canadian Set),104,1985,Black,5 +Basic,Special Value 96 pieces (Canadian Set),104,1985,Blue,6 +Basic,Special Value 96 pieces (Canadian Set),104,1985,Green,2 +Basic,Special Value 96 pieces (Canadian Set),104,1985,Red,6 +Basic,Special Value 96 pieces (Canadian Set),104,1985,Trans-Clear,1 +Basic,Special Value 96 pieces (Canadian Set),104,1985,White,5 +Basic,Basic Set with Storage Case,103,1985,Yellow,7 +Basic,Basic Set with Storage Case,103,1985,Trans-Clear,1 +Basic,Basic Set with Storage Case,103,1985,White,5 +Basic,Basic Set with Storage Case,103,1985,[No Color],1 +Basic,Basic Set with Storage Case,103,1985,Black,5 +Basic,Basic Set with Storage Case,103,1985,Blue,5 +Basic,Basic Set with Storage Case,103,1985,Green,2 +Basic,Basic Set with Storage Case,103,1985,Red,6 +Basic,Basic Building Set,102,1985,Yellow,4 +Basic,Basic Building Set,102,1985,White,6 +Basic,Basic Building Set,102,1985,Trans-Clear,2 +Basic,Basic Building Set,102,1985,Red,8 +Basic,Basic Building Set,102,1985,Green,2 +Basic,Basic Building Set,102,1985,Blue,7 +Basic,Basic Building Set,102,1985,Black,2 +Basic,Basic Building Set,78,1985,Yellow,7 +Basic,Basic Building Set,78,1985,White,4 +Basic,Basic Building Set,78,1985,Trans-Clear,1 +Basic,Basic Building Set,78,1985,Red,6 +Basic,Basic Building Set,78,1985,Green,2 +Basic,Basic Building Set,78,1985,Blue,5 +Basic,Basic Building Set,78,1985,Black,5 +Basic,Basic Building Set,78,1985,[No Color],1 +Basic,Basic Building Set,66,1985,White,2 +Basic,Basic Building Set,66,1985,Trans-Clear,1 +Basic,Basic Building Set,66,1985,Red,10 +Basic,Basic Building Set,66,1985,Blue,4 +Basic,Basic Building Set,66,1985,Black,4 +Basic,Basic Building Set,66,1985,Yellow,5 +Basic,Basic Building Set,46,1985,Yellow,8 +Basic,Basic Building Set,46,1985,White,3 +Basic,Basic Building Set,46,1985,Red,6 +Basic,Basic Building Set,46,1985,Green,1 +Basic,Basic Building Set,46,1985,Blue,3 +Basic,Basic Building Set,46,1985,Black,2 +Basic,Basic Building Set,41,1985,Black,4 +Basic,Basic Building Set,41,1985,Blue,3 +Basic,Basic Building Set,41,1985,Red,6 +Basic,Basic Building Set,41,1985,Trans-Clear,1 +Basic,Basic Building Set,41,1985,White,2 +Basic,Basic Building Set,41,1985,Yellow,3 +Basic,Basic Building Set,36,1985,Red,6 +Basic,Basic Building Set,36,1985,Blue,3 +Basic,Basic Building Set,36,1985,Black,4 +Basic,Basic Building Set,36,1985,Yellow,4 +Basic,Basic Building Set,36,1985,White,3 +Basic,Basic Building Set,36,1985,Trans-Clear,1 +Basic,Basic Building Set,34,1985,Yellow,3 +Basic,Basic Building Set,34,1985,Trans-Clear,1 +Basic,Basic Building Set,34,1985,Red,4 +Basic,Basic Building Set,34,1985,Green,1 +Basic,Basic Building Set,34,1985,Blue,2 +Basic,Basic Building Set,34,1985,Black,4 +Basic,Basic Building Set,31,1985,Yellow,3 +Basic,Basic Building Set,31,1985,White,2 +Basic,Basic Building Set,31,1985,Red,4 +Basic,Basic Building Set,31,1985,Green,1 +Basic,Basic Building Set,31,1985,Blue,3 +Basic,Crest Basic Building Set,27,1985,Black,1 +Basic,Crest Basic Building Set,27,1985,Blue,4 +Basic,Crest Basic Building Set,27,1985,Red,3 +Basic,Crest Basic Building Set,27,1985,Yellow,4 +Basic,Basic Building Set,27,1985,Yellow,4 +Basic,Basic Building Set,27,1985,White,3 +Basic,Basic Building Set,27,1985,Red,4 +Basic,Basic Building Set,27,1985,Green,1 +Basic,Basic Building Set,27,1985,Blue,3 +Basic,Aircraft,18,2000,Blue,3 +Basic,Aircraft,18,2000,Red,2 +Basic,Aircraft,18,2000,Trans-Clear,1 +Basic,Aircraft,18,2000,Yellow,7 +Basic,Car,17,2000,Red,3 +Basic,Car,17,2000,Black,2 +Basic,Car,17,2000,Blue,3 +Basic,Car,17,2000,Trans-Clear,1 +Basic,Car,17,2000,Yellow,1 +Basic,Boat,16,2000,Red,3 +Basic,Boat,16,2000,Trans-Clear,1 +Basic,Boat,16,2000,Blue,5 +Basic,Boat,16,2000,White,1 +Basic,Boat,16,2000,Yellow,2 +Basic,Helicopter,10,2000,Blue,3 +Basic,Helicopter,10,2000,Red,3 +Basic,Helicopter,10,2000,Trans-Clear,1 +Basic,Helicopter,10,2000,Yellow,2 +Basic Model,"LEGO Building Set B, Boat",27,1983,Black,2 +Basic Model,"LEGO Building Set B, Boat",27,1983,Blue,3 +Basic Model,"LEGO Building Set B, Boat",27,1983,Red,4 +Basic Model,"LEGO Building Set B, Boat",27,1983,Yellow,2 +Basic Model,"LEGO Building Set A, Car",20,1983,Black,2 +Basic Model,"LEGO Building Set A, Car",20,1983,Red,5 +Basic Model,"LEGO Building Set A, Car",20,1983,Trans-Clear,1 +Basic Model,"LEGO Building Set A, Car",20,1983,Yellow,1 +Basic Model,"LEGO Building Set C, Helicopter",20,1983,Black,3 +Basic Model,"LEGO Building Set C, Helicopter",20,1983,Red,1 +Basic Model,"LEGO Building Set C, Helicopter",20,1983,Trans-Clear,1 +Basic Model,"LEGO Building Set C, Helicopter",20,1983,Yellow,6 +Basic Model,"LEGO Building Set D, Aircraft",20,1983,Black,2 +Basic Model,"LEGO Building Set D, Aircraft",20,1983,Blue,4 +Basic Model,"LEGO Building Set D, Aircraft",20,1983,Red,3 +Basic Model,"LEGO Building Set D, Aircraft",20,1983,Yellow,1 +Basic Model,Aircraft,12,2000,Black,1 +Basic Model,Aircraft,12,2000,Blue,2 +Basic Model,Aircraft,12,2000,Red,3 +Basic Model,Aircraft,12,2000,Trans-Clear,1 +Basic Model,Aircraft,12,2000,Trans-Green,1 +Basic Model,Aircraft,12,2000,Trans-Red,1 +Basic Model,Aircraft,12,2000,Yellow,1 +Basic Model,Ship,12,2000,Black,1 +Basic Model,Ship,12,2000,Blue,1 +Basic Model,Ship,12,2000,Red,3 +Basic Model,Ship,12,2000,Yellow,1 +Basic Model,Glider,9,2000,Yellow,1 +Basic Model,Glider,9,2000,Black,1 +Basic Model,Glider,9,2000,Blue,3 +Basic Model,Glider,9,2000,Red,2 +Basic Model,Glider,9,2000,Trans-Clear,1 +Basic Model,Helicopter,8,2000,Black,1 +Basic Model,Helicopter,8,2000,Red,3 +Basic Model,Helicopter,8,2000,Trans-Clear,1 +Basic Model,Helicopter,8,2000,Yellow,2 +Basic Model,Vehicle Transporter,264,2015,Flat Silver,1 +Basic Model,Vehicle Transporter,264,2015,Dark Bluish Gray,16 +Basic Model,Vehicle Transporter,264,2015,Blue,12 +Basic Model,Vehicle Transporter,264,2015,Black,17 +Basic Model,Vehicle Transporter,264,2015,Trans-Orange,2 +Basic Model,Vehicle Transporter,264,2015,Yellow,6 +Basic Model,Vehicle Transporter,264,2015,White,8 +Basic Model,Vehicle Transporter,264,2015,Trans-Red,1 +Basic Model,Vehicle Transporter,264,2015,Trans-Black,3 +Basic Model,Vehicle Transporter,264,2015,Red,5 +Basic Model,Vehicle Transporter,264,2015,Orange,1 +Basic Model,Vehicle Transporter,264,2015,Light Bluish Gray,15 +Basic Model,Cargo Heli,132,2015,Black,9 +Basic Model,Cargo Heli,132,2015,Light Bluish Gray,8 +Basic Model,Cargo Heli,132,2015,Red,12 +Basic Model,Cargo Heli,132,2015,Trans-Black,1 +Basic Model,Cargo Heli,132,2015,Trans-Green,1 +Basic Model,Cargo Heli,132,2015,Trans-Red,1 +Basic Model,Cargo Heli,132,2015,White,4 +Basic Model,Cargo Heli,132,2015,Yellow,11 +Basic Model,Cargo Heli,132,2015,Dark Bluish Gray,13 +Basic Model,Red Go-Kart,106,2015,Black,12 +Basic Model,Red Go-Kart,106,2015,Blue,5 +Basic Model,Red Go-Kart,106,2015,Dark Bluish Gray,2 +Basic Model,Red Go-Kart,106,2015,Red,9 +Basic Model,Red Go-Kart,106,2015,Light Bluish Gray,14 +Basic Model,Red Go-Kart,106,2015,Medium Blue,2 +Basic Model,Red Go-Kart,106,2015,Tan,1 +Basic Model,Red Go-Kart,106,2015,Trans-Yellow,1 +Basic Model,Red Go-Kart,106,2015,White,2 +Basic Model,Red Go-Kart,106,2015,Yellow,1 +Basic Model,Flower Cart,75,2015,Lime,1 +Basic Model,Flower Cart,75,2015,Magenta,1 +Basic Model,Flower Cart,75,2015,Medium Dark Flesh,1 +Basic Model,Flower Cart,75,2015,Pearl Dark Gray,1 +Basic Model,Flower Cart,75,2015,Red,3 +Basic Model,Flower Cart,75,2015,Reddish Brown,1 +Basic Model,Flower Cart,75,2015,Tan,5 +Basic Model,Flower Cart,75,2015,White,2 +Basic Model,Flower Cart,75,2015,Yellow,2 +Basic Model,Flower Cart,75,2015,Black,8 +Basic Model,Flower Cart,75,2015,Dark Bluish Gray,2 +Basic Model,Flower Cart,75,2015,Dark Brown,3 +Basic Model,Flower Cart,75,2015,Dark Tan,1 +Basic Model,Flower Cart,75,2015,Green,2 +Basic Model,Flower Cart,75,2015,Lavender,1 +Basic Model,Flower Cart,75,2015,Light Bluish Gray,1 +Basic Model,Blue Racer,67,2015,Black,1 +Basic Model,Blue Racer,67,2015,Blue,8 +Basic Model,Blue Racer,67,2015,Dark Bluish Gray,2 +Basic Model,Blue Racer,67,2015,Light Bluish Gray,3 +Basic Model,Blue Racer,67,2015,Metallic Silver,2 +Basic Model,Blue Racer,67,2015,Orange,1 +Basic Model,Blue Racer,67,2015,Red,4 +Basic Model,Blue Racer,67,2015,Trans-Red,1 +Basic Model,Blue Racer,67,2015,White,6 +Basic Model,Blue Racer,67,2015,Trans-Black,1 +Basic Model,Sea Plane,53,2015,White,6 +Basic Model,Sea Plane,53,2015,Trans-Red,1 +Basic Model,Sea Plane,53,2015,Trans-Orange,1 +Basic Model,Sea Plane,53,2015,Trans-Green,1 +Basic Model,Sea Plane,53,2015,Trans-Black,1 +Basic Model,Sea Plane,53,2015,Orange,7 +Basic Model,Sea Plane,53,2015,Light Bluish Gray,3 +Basic Model,Sea Plane,53,2015,Flat Silver,1 +Basic Model,Sea Plane,53,2015,Dark Bluish Gray,2 +Basic Model,Sea Plane,53,2015,Black,9 +Basic Model,Tractor,51,2015,Red,4 +Basic Model,Tractor,51,2015,Tan,1 +Basic Model,Tractor,51,2015,Trans-Black,1 +Basic Model,Tractor,51,2015,Trans-Red,1 +Basic Model,Tractor,51,2015,Trans-Yellow,1 +Basic Model,Tractor,51,2015,Blue,3 +Basic Model,Tractor,51,2015,Black,8 +Basic Model,Tractor,51,2015,Dark Bluish Gray,3 +Basic Model,Tractor,51,2015,Light Bluish Gray,3 +Basic Set,Automatic Binding Bricks Small Brick Set (Lego Mursten),24,1950,Bright Green,1 +Basic Set,Automatic Binding Bricks Small Brick Set (Lego Mursten),24,1950,Red,2 +Basic Set,Automatic Binding Bricks Small Brick Set (Lego Mursten),24,1950,White,2 +Basic Set,Automatic Binding Bricks Small Brick Set (Lego Mursten),24,1950,Yellow,2 +Basic Set,Super Set,615,1969,Light Gray,2 +Basic Set,Super Set,615,1969,Red,24 +Basic Set,Super Set,615,1969,Trans-Clear,6 +Basic Set,Super Set,615,1969,Yellow,9 +Basic Set,Super Set,615,1969,White,22 +Basic Set,Super Set,615,1969,Black,8 +Basic Set,Super Set,615,1969,Blue,11 +Basic Set,Super Set,615,1969,Green,3 +Basic Set,Bricks'n Motor Set,96,1969,Black,3 +Basic Set,Bricks'n Motor Set,96,1969,Blue,15 +Basic Set,Bricks'n Motor Set,96,1969,Light Gray,1 +Basic Set,Bricks'n Motor Set,96,1969,Red,5 +Basic Set,Bricks'n Motor Set,96,1969,Yellow,4 +Basic Set,Bricks'n Motor Set,96,1969,Trans-Clear,1 +Basic Set,Bricks'n Motor Set,96,1969,White,7 +Basic Set,Duplo Supplementary Bricks,39,1987,Blue,2 +Basic Set,Duplo Supplementary Bricks,39,1987,Green,3 +Basic Set,Duplo Supplementary Bricks,39,1987,Red,4 +Basic Set,Duplo Supplementary Bricks,39,1987,Yellow,4 +Basic Set,Medium Bucket,600,1999,Black,7 +Basic Set,Medium Bucket,600,1999,Blue,10 +Basic Set,Medium Bucket,600,1999,Green,7 +Basic Set,Medium Bucket,600,1999,Red,10 +Basic Set,Medium Bucket,600,1999,White,10 +Basic Set,Medium Bucket,600,1999,Yellow,10 +Basic Set,Fun and Cool Transportation,608,2001,Trans-Neon Green,2 +Basic Set,Fun and Cool Transportation,608,2001,Trans-Red,1 +Basic Set,Fun and Cool Transportation,608,2001,Trans-Yellow,1 +Basic Set,Fun and Cool Transportation,608,2001,White,14 +Basic Set,Fun and Cool Transportation,608,2001,[No Color],2 +Basic Set,Fun and Cool Transportation,608,2001,Black,12 +Basic Set,Fun and Cool Transportation,608,2001,Blue,30 +Basic Set,Fun and Cool Transportation,608,2001,Brown,4 +Basic Set,Fun and Cool Transportation,608,2001,Chrome Silver,2 +Basic Set,Fun and Cool Transportation,608,2001,Yellow,25 +Basic Set,Fun and Cool Transportation,608,2001,Dark Gray,4 +Basic Set,Fun and Cool Transportation,608,2001,Green,14 +Basic Set,Fun and Cool Transportation,608,2001,Light Gray,11 +Basic Set,Fun and Cool Transportation,608,2001,Red,34 +Basic Set,Fun and Cool Transportation,608,2001,Trans-Dark Blue,2 +Basic Set,Fun and Cool Transportation,608,2001,Trans-Green,1 +Basic Set,Building Stories w/NaNa Bird,382,2001,Chrome Silver,5 +Basic Set,Building Stories w/NaNa Bird,382,2001,Dark Gray,12 +Basic Set,Building Stories w/NaNa Bird,382,2001,Green,3 +Basic Set,Building Stories w/NaNa Bird,382,2001,Light Gray,7 +Basic Set,Building Stories w/NaNa Bird,382,2001,Red,20 +Basic Set,Building Stories w/NaNa Bird,382,2001,Tan,1 +Basic Set,Building Stories w/NaNa Bird,382,2001,Trans-Green,1 +Basic Set,Building Stories w/NaNa Bird,382,2001,Trans-Light Blue,1 +Basic Set,Building Stories w/NaNa Bird,382,2001,Trans-Yellow,1 +Basic Set,Building Stories w/NaNa Bird,382,2001,White,9 +Basic Set,Building Stories w/NaNa Bird,382,2001,Yellow,29 +Basic Set,Building Stories w/NaNa Bird,382,2001,[No Color],3 +Basic Set,Building Stories w/NaNa Bird,382,2001,Black,12 +Basic Set,Building Stories w/NaNa Bird,382,2001,Blue,20 +Basic Set,Building Stories w/NaNa Bird,382,2001,Brown,4 +Basic Set,"Buildings, Mansions and Shops",364,2001,Trans-Black,1 +Basic Set,"Buildings, Mansions and Shops",364,2001,Light Gray,3 +Basic Set,"Buildings, Mansions and Shops",364,2001,Red,28 +Basic Set,"Buildings, Mansions and Shops",364,2001,Green,13 +Basic Set,"Buildings, Mansions and Shops",364,2001,Dark Gray,2 +Basic Set,"Buildings, Mansions and Shops",364,2001,Blue,18 +Basic Set,"Buildings, Mansions and Shops",364,2001,Yellow,15 +Basic Set,"Buildings, Mansions and Shops",364,2001,White,16 +Basic Set,"Buildings, Mansions and Shops",364,2001,Black,11 +Basic Set,"Buildings, Mansions and Shops",364,2001,Trans-Red,1 +Basic Set,"Buildings, Mansions and Shops",364,2001,Trans-Neon Green,2 +Basic Set,"Buildings, Mansions and Shops",364,2001,Trans-Light Blue,1 +Basic Set,"Buildings, Mansions and Shops",364,2001,Trans-Green,1 +Basic Set,"Buildings, Mansions and Shops",364,2001,[No Color],3 +Basic Set,The Race of the Year,326,2001,Light Gray,16 +Basic Set,The Race of the Year,326,2001,Yellow,15 +Basic Set,The Race of the Year,326,2001,White,17 +Basic Set,The Race of the Year,326,2001,Trans-Neon Green,1 +Basic Set,The Race of the Year,326,2001,Trans-Light Blue,2 +Basic Set,The Race of the Year,326,2001,Red,21 +Basic Set,The Race of the Year,326,2001,Green,9 +Basic Set,The Race of the Year,326,2001,Dark Gray,10 +Basic Set,The Race of the Year,326,2001,Chrome Silver,5 +Basic Set,The Race of the Year,326,2001,Blue,9 +Basic Set,The Race of the Year,326,2001,Black,16 +Basic Set,The Race of the Year,326,2001,[No Color],3 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,Dark Gray,3 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,White,18 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,Light Gray,13 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,Red,19 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,Trans-Dark Blue,3 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,[No Color],2 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,Green,3 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,Yellow,11 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,Blue,9 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,Black,19 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,Trans-Neon Orange,1 +Basic Set,Fantastic Flyers & Cool Cars Bucket,266,2001,Chrome Silver,3 +Basic Set,Blue Creator Bucket,256,2001,White,11 +Basic Set,Blue Creator Bucket,256,2001,Dark Gray,1 +Basic Set,Blue Creator Bucket,256,2001,Green,2 +Basic Set,Blue Creator Bucket,256,2001,Light Gray,1 +Basic Set,Blue Creator Bucket,256,2001,Red,17 +Basic Set,Blue Creator Bucket,256,2001,Yellow,11 +Basic Set,Blue Creator Bucket,256,2001,Trans-Light Blue,1 +Basic Set,Blue Creator Bucket,256,2001,Trans-Clear,2 +Basic Set,Blue Creator Bucket,256,2001,Black,8 +Basic Set,Blue Creator Bucket,256,2001,Blue,16 +Basic Set,Blue Creator Bucket,256,2001,Bright Green,1 +Basic Set,Regular & Transparent Bricks Bucket,234,2001,Black,6 +Basic Set,Regular & Transparent Bricks Bucket,234,2001,White,7 +Basic Set,Regular & Transparent Bricks Bucket,234,2001,Blue,9 +Basic Set,Regular & Transparent Bricks Bucket,234,2001,Brown,2 +Basic Set,Regular & Transparent Bricks Bucket,234,2001,Green,6 +Basic Set,Regular & Transparent Bricks Bucket,234,2001,Red,7 +Basic Set,Regular & Transparent Bricks Bucket,234,2001,Trans-Dark Blue,1 +Basic Set,Regular & Transparent Bricks Bucket,234,2001,Trans-Green,2 +Basic Set,Regular & Transparent Bricks Bucket,234,2001,Trans-Red,2 +Basic Set,Regular & Transparent Bricks Bucket,234,2001,Yellow,11 +Basic Set,Adventures with Max & Tina,219,2001,Blue,3 +Basic Set,Adventures with Max & Tina,219,2001,Brown,2 +Basic Set,Adventures with Max & Tina,219,2001,Chrome Silver,2 +Basic Set,Adventures with Max & Tina,219,2001,Dark Gray,13 +Basic Set,Adventures with Max & Tina,219,2001,Green,16 +Basic Set,Adventures with Max & Tina,219,2001,[No Color],2 +Basic Set,Adventures with Max & Tina,219,2001,Trans-Dark Blue,1 +Basic Set,Adventures with Max & Tina,219,2001,Yellow,20 +Basic Set,Adventures with Max & Tina,219,2001,White,13 +Basic Set,Adventures with Max & Tina,219,2001,Trans-Green,1 +Basic Set,Adventures with Max & Tina,219,2001,Red,12 +Basic Set,Adventures with Max & Tina,219,2001,Light Gray,3 +Basic Set,Adventures with Max & Tina,219,2001,Black,9 +Basic Set,Animal Adventures Bucket,211,2001,[No Color],2 +Basic Set,Animal Adventures Bucket,211,2001,Black,9 +Basic Set,Animal Adventures Bucket,211,2001,Blue,5 +Basic Set,Animal Adventures Bucket,211,2001,Dark Gray,13 +Basic Set,Animal Adventures Bucket,211,2001,Light Gray,16 +Basic Set,Animal Adventures Bucket,211,2001,Red,9 +Basic Set,Animal Adventures Bucket,211,2001,Trans-Light Blue,1 +Basic Set,Animal Adventures Bucket,211,2001,White,12 +Basic Set,Animal Adventures Bucket,211,2001,Yellow,17 +Basic Set,Animal Adventures Bucket,211,2001,Chrome Silver,1 +Basic Set,Animal Adventures Bucket,211,2001,Green,7 +Basic Set,All Kinds of Animals / Lap Table,174,2001,Brown,6 +Basic Set,All Kinds of Animals / Lap Table,174,2001,Black,6 +Basic Set,All Kinds of Animals / Lap Table,174,2001,Yellow,15 +Basic Set,All Kinds of Animals / Lap Table,174,2001,Green,4 +Basic Set,All Kinds of Animals / Lap Table,174,2001,Red,15 +Basic Set,All Kinds of Animals / Lap Table,174,2001,White,4 +Basic Set,All Kinds of Animals / Lap Table,174,2001,[No Color],2 +Basic Set,All Kinds of Animals / Lap Table,174,2001,Blue,12 +Basic Set,Max Goes Flying,173,2001,[No Color],1 +Basic Set,Max Goes Flying,173,2001,Black,12 +Basic Set,Max Goes Flying,173,2001,Blue,6 +Basic Set,Max Goes Flying,173,2001,Chrome Silver,2 +Basic Set,Max Goes Flying,173,2001,Dark Gray,10 +Basic Set,Max Goes Flying,173,2001,Green,2 +Basic Set,Max Goes Flying,173,2001,Light Gray,7 +Basic Set,Max Goes Flying,173,2001,Red,14 +Basic Set,Max Goes Flying,173,2001,Trans-Light Blue,1 +Basic Set,Max Goes Flying,173,2001,Trans-Neon Orange,1 +Basic Set,Max Goes Flying,173,2001,Trans-Red,1 +Basic Set,Max Goes Flying,173,2001,White,11 +Basic Set,Max Goes Flying,173,2001,Yellow,14 +Basic Set,All That Drives Bucket,166,2001,Trans-Clear,1 +Basic Set,All That Drives Bucket,166,2001,Red,13 +Basic Set,All That Drives Bucket,166,2001,Green,3 +Basic Set,All That Drives Bucket,166,2001,Dark Turquoise,6 +Basic Set,All That Drives Bucket,166,2001,Dark Gray,9 +Basic Set,All That Drives Bucket,166,2001,Light Gray,7 +Basic Set,All That Drives Bucket,166,2001,Chrome Silver,1 +Basic Set,All That Drives Bucket,166,2001,Blue,2 +Basic Set,All That Drives Bucket,166,2001,Black,8 +Basic Set,All That Drives Bucket,166,2001,[No Color],1 +Basic Set,All That Drives Bucket,166,2001,Yellow,8 +Basic Set,All That Drives Bucket,166,2001,White,10 +Basic Set,All That Drives Bucket,166,2001,Trans-Neon Green,1 +Basic Set,All That Drives Bucket,166,2001,Trans-Dark Blue,1 +Basic Set,Max's Pitstop,59,2001,[No Color],1 +Basic Set,Max's Pitstop,59,2001,Black,7 +Basic Set,Max's Pitstop,59,2001,Blue,1 +Basic Set,Max's Pitstop,59,2001,Dark Gray,1 +Basic Set,Max's Pitstop,59,2001,Green,2 +Basic Set,Max's Pitstop,59,2001,Light Gray,4 +Basic Set,Max's Pitstop,59,2001,Red,7 +Basic Set,Max's Pitstop,59,2001,Trans-Neon Green,1 +Basic Set,Max's Pitstop,59,2001,White,6 +Basic Set,Max's Pitstop,59,2001,Yellow,3 +Basic Set,Spot & Friends,53,2001,Black,1 +Basic Set,Spot & Friends,53,2001,White,6 +Basic Set,Spot & Friends,53,2001,Trans-Clear,1 +Basic Set,Spot & Friends,53,2001,Red,4 +Basic Set,Spot & Friends,53,2001,Green,2 +Basic Set,Spot & Friends,53,2001,Yellow,10 +Basic Set,Spot & Friends,53,2001,Blue,4 +Basic Set,Tina's House,44,2001,[No Color],1 +Basic Set,Tina's House,44,2001,Black,2 +Basic Set,Tina's House,44,2001,Blue,6 +Basic Set,Tina's House,44,2001,Green,2 +Basic Set,Tina's House,44,2001,Red,6 +Basic Set,Tina's House,44,2001,Trans-Green,1 +Basic Set,Tina's House,44,2001,White,3 +Basic Set,Tina's House,44,2001,Yellow,5 +Basic Set,Creative Suitcase,1016,2014,Black,21 +Basic Set,Creative Suitcase,1016,2014,Blue,20 +Basic Set,Creative Suitcase,1016,2014,Dark Azure,2 +Basic Set,Creative Suitcase,1016,2014,Dark Blue,4 +Basic Set,Creative Suitcase,1016,2014,Dark Bluish Gray,11 +Basic Set,Creative Suitcase,1016,2014,Dark Green,5 +Basic Set,Creative Suitcase,1016,2014,Dark Purple,1 +Basic Set,Creative Suitcase,1016,2014,Dark Red,4 +Basic Set,Creative Suitcase,1016,2014,Dark Tan,12 +Basic Set,Creative Suitcase,1016,2014,Green,17 +Basic Set,Creative Suitcase,1016,2014,Light Bluish Gray,28 +Basic Set,Creative Suitcase,1016,2014,Lime,13 +Basic Set,Creative Suitcase,1016,2014,Orange,15 +Basic Set,Creative Suitcase,1016,2014,Red,23 +Basic Set,Creative Suitcase,1016,2014,Reddish Brown,21 +Basic Set,Creative Suitcase,1016,2014,Tan,26 +Basic Set,Creative Suitcase,1016,2014,Trans-Clear,4 +Basic Set,Creative Suitcase,1016,2014,Trans-Green,1 +Basic Set,Creative Suitcase,1016,2014,Trans-Red,1 +Basic Set,Creative Suitcase,1016,2014,White,26 +Basic Set,Creative Suitcase,1016,2014,Yellow,24 +Basic Set,Creative Building Cube,599,2014,Blue,12 +Basic Set,Creative Building Cube,599,2014,Bright Pink,4 +Basic Set,Creative Building Cube,599,2014,Dark Azure,2 +Basic Set,Creative Building Cube,599,2014,Dark Blue,3 +Basic Set,Creative Building Cube,599,2014,Dark Bluish Gray,17 +Basic Set,Creative Building Cube,599,2014,Dark Purple,3 +Basic Set,Creative Building Cube,599,2014,Dark Red,2 +Basic Set,Creative Building Cube,599,2014,Dark Tan,4 +Basic Set,Creative Building Cube,599,2014,Green,10 +Basic Set,Creative Building Cube,599,2014,Light Bluish Gray,13 +Basic Set,Creative Building Cube,599,2014,Lime,6 +Basic Set,Creative Building Cube,599,2014,Orange,14 +Basic Set,Creative Building Cube,599,2014,Red,15 +Basic Set,Creative Building Cube,599,2014,Reddish Brown,12 +Basic Set,Creative Building Cube,599,2014,Tan,20 +Basic Set,Creative Building Cube,599,2014,Trans-Clear,2 +Basic Set,Creative Building Cube,599,2014,Trans-Neon Orange,2 +Basic Set,Creative Building Cube,599,2014,White,26 +Basic Set,Creative Building Cube,599,2014,Yellow,19 +Basic Set,Creative Building Cube,599,2014,Black,25 +Basic Set,Creative Building Basket,999,2016,Black,15 +Basic Set,Creative Building Basket,999,2016,Blue,12 +Basic Set,Creative Building Basket,999,2016,Bright Green,5 +Basic Set,Creative Building Basket,999,2016,Bright Light Blue,3 +Basic Set,Creative Building Basket,999,2016,Bright Light Orange,7 +Basic Set,Creative Building Basket,999,2016,Bright Light Yellow,3 +Basic Set,Creative Building Basket,999,2016,Bright Pink,9 +Basic Set,Creative Building Basket,999,2016,Dark Azure,3 +Basic Set,Creative Building Basket,999,2016,Dark Blue,4 +Basic Set,Creative Building Basket,999,2016,Dark Bluish Gray,6 +Basic Set,Creative Building Basket,999,2016,Dark Brown,2 +Basic Set,Creative Building Basket,999,2016,Dark Green,4 +Basic Set,Creative Building Basket,999,2016,Dark Orange,7 +Basic Set,Creative Building Basket,999,2016,Dark Pink,7 +Basic Set,Creative Building Basket,999,2016,Dark Purple,8 +Basic Set,Creative Building Basket,999,2016,Dark Red,9 +Basic Set,Creative Building Basket,999,2016,Dark Tan,6 +Basic Set,Creative Building Basket,999,2016,Flat Silver,1 +Basic Set,Creative Building Basket,999,2016,Green,12 +Basic Set,Creative Building Basket,999,2016,Lavender,5 +Basic Set,Creative Building Basket,999,2016,Light Aqua,2 +Basic Set,Creative Building Basket,999,2016,Light Bluish Gray,14 +Basic Set,Creative Building Basket,999,2016,Lime,8 +Basic Set,Creative Building Basket,999,2016,Magenta,3 +Basic Set,Creative Building Basket,999,2016,Medium Azure,1 +Basic Set,Creative Building Basket,999,2016,Medium Blue,3 +Basic Set,Creative Building Basket,999,2016,Medium Dark Flesh,2 +Basic Set,Creative Building Basket,999,2016,Medium Lavender,5 +Basic Set,Creative Building Basket,999,2016,Orange,9 +Basic Set,Creative Building Basket,999,2016,Red,17 +Basic Set,Creative Building Basket,999,2016,Reddish Brown,10 +Basic Set,Creative Building Basket,999,2016,Tan,7 +Basic Set,Creative Building Basket,999,2016,Trans-Clear,7 +Basic Set,Creative Building Basket,999,2016,Trans-Dark Blue,1 +Basic Set,Creative Building Basket,999,2016,Trans-Dark Pink,2 +Basic Set,Creative Building Basket,999,2016,Trans-Light Blue,1 +Basic Set,Creative Building Basket,999,2016,Trans-Purple,2 +Basic Set,Creative Building Basket,999,2016,Trans-Red,1 +Basic Set,Creative Building Basket,999,2016,Trans-Yellow,2 +Basic Set,Creative Building Basket,999,2016,White,16 +Basic Set,Creative Building Basket,999,2016,Yellow,14 +Basic Set,Creative Building Basket,999,2016,Yellowish Green,2 +Basketball,Spin & Shoot,70,2002,Black,9 +Basketball,Spin & Shoot,70,2002,Blue,6 +Basketball,Spin & Shoot,70,2002,Dark Gray,7 +Basketball,Spin & Shoot,70,2002,Light Gray,2 +Basketball,Spin & Shoot,70,2002,Orange,1 +Basketball,Spin & Shoot,70,2002,Red,7 +Basketball,Spin & Shoot,70,2002,Tan,1 +Basketball,Spin & Shoot,70,2002,Trans-Clear,1 +Basketball,Spin & Shoot,70,2002,Violet,2 +Basketball,Spin & Shoot,70,2002,White,3 +Basketball,Spin & Shoot,70,2002,Yellow,2 +Basketball,McDonald's Sports Set Number 3 - Blue Basketball Player #22,4,2004,[No Color],1 +Basketball,McDonald's Sports Set Number 3 - Blue Basketball Player #22,4,2004,Dark Bluish Gray,1 +Basketball,McDonald's Sports Set Number 3 - Blue Basketball Player #22,4,2004,Unknown,1 +Basketball,McDonald's Sports Set Number 3 - Blue Basketball Player #22,4,2004,Yellow,1 +Basketball,McDonald's Sports Set Number 8 - Green Basketball Player #35,4,2004,[No Color],1 +Basketball,McDonald's Sports Set Number 8 - Green Basketball Player #35,4,2004,Dark Blue,1 +Basketball,McDonald's Sports Set Number 8 - Green Basketball Player #35,4,2004,Green,1 +Basketball,McDonald's Sports Set Number 8 - Green Basketball Player #35,4,2004,Yellow,1 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Trans-Neon Orange,1 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Dark Blue,2 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,[No Color],1 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Black,120 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Blue,3 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Bright Light Orange,2 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Dark Bluish Gray,45 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Dark Purple,1 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Green,7 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Light Bluish Gray,48 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Light Flesh,6 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Pearl Gold,1 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Red,10 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Reddish Brown,1 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Trans-Black,2 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Trans-Clear,7 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Trans-Dark Blue,1 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Trans-Light Blue,2 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Trans-Medium Blue,1 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Trans-Neon Green,1 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Trans-Red,1 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Trans-Yellow,3 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,White,21 +Batman,The Batcave: The Penguin and Mr. Freeze's Invasion,1090,2006,Yellow,5 +Batman,Arkham Asylum,868,2006,Trans-Red,1 +Batman,Arkham Asylum,868,2006,Trans-Yellow,3 +Batman,Arkham Asylum,868,2006,White,20 +Batman,Arkham Asylum,868,2006,Green,4 +Batman,Arkham Asylum,868,2006,Blue,3 +Batman,Arkham Asylum,868,2006,Dark Bluish Gray,45 +Batman,Arkham Asylum,868,2006,Dark Flesh,1 +Batman,Arkham Asylum,868,2006,Dark Green,1 +Batman,Arkham Asylum,868,2006,Dark Red,1 +Batman,Arkham Asylum,868,2006,Glow In Dark Trans,1 +Batman,Arkham Asylum,868,2006,Black,85 +Batman,Arkham Asylum,868,2006,Light Bluish Gray,44 +Batman,Arkham Asylum,868,2006,Light Flesh,6 +Batman,Arkham Asylum,868,2006,Pearl Gold,1 +Batman,Arkham Asylum,868,2006,Red,1 +Batman,Arkham Asylum,868,2006,Reddish Brown,19 +Batman,Arkham Asylum,868,2006,Tan,2 +Batman,Arkham Asylum,868,2006,Trans-Black,1 +Batman,Arkham Asylum,868,2006,Trans-Clear,3 +Batman,Arkham Asylum,868,2006,Trans-Dark Blue,2 +Batman,Arkham Asylum,868,2006,Trans-Light Blue,3 +Batman,Arkham Asylum,868,2006,Trans-Neon Green,1 +Batman,Arkham Asylum,868,2006,Trans-Neon Orange,1 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Trans-Neon Green,4 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Trans-Black,2 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,White,14 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Tan,1 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Pearl Gold,1 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Light Flesh,2 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Light Bluish Gray,25 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Green,1 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Dark Purple,6 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Red,3 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Dark Green,7 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Dark Bluish Gray,28 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Blue,2 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Black,79 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,[No Color],1 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Trans-Red,1 +Batman,The Batwing: The Joker's Aerial Assault,529,2006,Trans-Yellow,1 +Batman,The Batmobile: Two-Face's Escape,392,2006,Black,64 +Batman,The Batmobile: Two-Face's Escape,392,2006,Blue,1 +Batman,The Batmobile: Two-Face's Escape,392,2006,Dark Bluish Gray,44 +Batman,The Batmobile: Two-Face's Escape,392,2006,Light Flesh,3 +Batman,The Batmobile: Two-Face's Escape,392,2006,Metallic Silver,1 +Batman,The Batmobile: Two-Face's Escape,392,2006,Trans-Red,2 +Batman,The Batmobile: Two-Face's Escape,392,2006,Red,3 +Batman,The Batmobile: Two-Face's Escape,392,2006,Trans-Black,2 +Batman,The Batmobile: Two-Face's Escape,392,2006,Trans-Neon Green,2 +Batman,The Batmobile: Two-Face's Escape,392,2006,Trans-Neon Orange,1 +Batman,The Batmobile: Two-Face's Escape,392,2006,Trans-Orange,1 +Batman,The Batmobile: Two-Face's Escape,392,2006,Trans-Yellow,1 +Batman,The Batmobile: Two-Face's Escape,392,2006,White,22 +Batman,The Batmobile: Two-Face's Escape,392,2006,Yellow,4 +Batman,The Batmobile: Two-Face's Escape,392,2006,Pearl Gold,2 +Batman,The Batmobile: Two-Face's Escape,392,2006,[No Color],1 +Batman,The Batmobile: Two-Face's Escape,392,2006,Light Bluish Gray,10 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Trans-Yellow,1 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Dark Bluish Gray,29 +Batman,The Batboat: Hunt for Killer Croc,194,2006,[No Color],1 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Black,40 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Blue,1 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Dark Blue,1 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Green,3 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Light Bluish Gray,11 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Light Flesh,1 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Pearl Gold,1 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Reddish Brown,3 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Tan,2 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Trans-Black,1 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Trans-Neon Green,1 +Batman,The Batboat: Hunt for Killer Croc,194,2006,Trans-Red,1 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Trans-Neon Orange,1 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Trans-Neon Green,1 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Trans-Black,1 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Pearl Gold,2 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Light Flesh,2 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Light Bluish Gray,11 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Dark Red,2 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Dark Purple,1 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Blue,2 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Dark Bluish Gray,8 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Black,31 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,[No Color],1 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Red,1 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,White,1 +Batman,The Batman Dragster: Catwoman Pursuit,92,2006,Trans-Red,1 +Batman,Commemorative Limited Edition Batman Announcement,13,2006,Black,5 +Batman,Commemorative Limited Edition Batman Announcement,13,2006,Light Flesh,1 +Batman,Commemorative Limited Edition Batman Announcement,13,2006,Red,1 +Batman,Commemorative Limited Edition Batman Announcement,13,2006,White,3 +Batman,Commemorative Limited Edition Batman Announcement,13,2006,Dark Purple,2 +Batman,Commemorative Limited Edition Batman Announcement,13,2006,Green,1 +Batman,Arkham Asylum,1621,2017,Black,64 +Batman,Arkham Asylum,1621,2017,Bright Light Blue,1 +Batman,Arkham Asylum,1621,2017,Bright Light Yellow,1 +Batman,Arkham Asylum,1621,2017,Dark Blue,2 +Batman,Arkham Asylum,1621,2017,Dark Bluish Gray,45 +Batman,Arkham Asylum,1621,2017,Dark Green,2 +Batman,Arkham Asylum,1621,2017,Dark Orange,3 +Batman,Arkham Asylum,1621,2017,Dark Purple,2 +Batman,Arkham Asylum,1621,2017,Dark Red,5 +Batman,Arkham Asylum,1621,2017,Dark Tan,7 +Batman,Arkham Asylum,1621,2017,Flat Silver,2 +Batman,Arkham Asylum,1621,2017,Green,2 +Batman,Arkham Asylum,1621,2017,Light Bluish Gray,84 +Batman,Arkham Asylum,1621,2017,Light Flesh,8 +Batman,Arkham Asylum,1621,2017,Lime,5 +Batman,Arkham Asylum,1621,2017,Medium Blue,14 +Batman,Arkham Asylum,1621,2017,Medium Dark Flesh,5 +Batman,Arkham Asylum,1621,2017,Orange,10 +Batman,Arkham Asylum,1621,2017,Red,8 +Batman,Arkham Asylum,1621,2017,Reddish Brown,36 +Batman,Arkham Asylum,1621,2017,Sand Blue,1 +Batman,Arkham Asylum,1621,2017,Sand Green,7 +Batman,Arkham Asylum,1621,2017,Tan,13 +Batman,Arkham Asylum,1621,2017,Trans-Black,1 +Batman,Arkham Asylum,1621,2017,Trans-Clear,11 +Batman,Arkham Asylum,1621,2017,Trans-Dark Blue,1 +Batman,Arkham Asylum,1621,2017,Trans-Green,2 +Batman,Arkham Asylum,1621,2017,Trans-Light Blue,1 +Batman,Arkham Asylum,1621,2017,Trans-Medium Blue,1 +Batman,Arkham Asylum,1621,2017,Trans-Neon Green,1 +Batman,Arkham Asylum,1621,2017,Trans-Orange,1 +Batman,Arkham Asylum,1621,2017,Trans-Red,3 +Batman,Arkham Asylum,1621,2017,Trans-Yellow,1 +Batman,Arkham Asylum,1621,2017,White,36 +Batman,Arkham Asylum,1621,2017,Yellow,4 +Batman,Arkham Asylum,1621,2017,Yellowish Green,1 +Batman,The Batwing,1052,2017,Blue,11 +Batman,The Batwing,1052,2017,Black,109 +Batman,The Batwing,1052,2017,Metallic Silver,1 +Batman,The Batwing,1052,2017,Dark Bluish Gray,58 +Batman,The Batwing,1052,2017,Flat Silver,1 +Batman,The Batwing,1052,2017,Light Bluish Gray,51 +Batman,The Batwing,1052,2017,Light Flesh,3 +Batman,The Batwing,1052,2017,Orange,1 +Batman,The Batwing,1052,2017,Red,26 +Batman,The Batwing,1052,2017,Reddish Brown,8 +Batman,The Batwing,1052,2017,Tan,2 +Batman,The Batwing,1052,2017,Trans-Clear,1 +Batman,The Batwing,1052,2017,Trans-Green,1 +Batman,The Batwing,1052,2017,Trans-Neon Orange,1 +Batman,The Batwing,1052,2017,Trans-Orange,3 +Batman,The Batwing,1052,2017,Trans-Purple,2 +Batman,The Batwing,1052,2017,Trans-Red,2 +Batman,The Batwing,1052,2017,Trans-Yellow,5 +Batman,The Batwing,1052,2017,White,14 +Batman,The Batwing,1052,2017,Yellow,9 +Batman,Batcave Break-in,1042,2017,Light Flesh,4 +Batman,Batcave Break-in,1042,2017,Medium Blue,2 +Batman,Batcave Break-in,1042,2017,Orange,12 +Batman,Batcave Break-in,1042,2017,Pearl Gold,2 +Batman,Batcave Break-in,1042,2017,Red,22 +Batman,Batcave Break-in,1042,2017,Reddish Brown,5 +Batman,Batcave Break-in,1042,2017,Sand Blue,1 +Batman,Batcave Break-in,1042,2017,Tan,5 +Batman,Batcave Break-in,1042,2017,Black,103 +Batman,Batcave Break-in,1042,2017,Trans-Clear,2 +Batman,Batcave Break-in,1042,2017,Trans-Light Blue,4 +Batman,Batcave Break-in,1042,2017,Trans-Orange,1 +Batman,Batcave Break-in,1042,2017,Trans-Red,2 +Batman,Batcave Break-in,1042,2017,Trans-Yellow,3 +Batman,Batcave Break-in,1042,2017,White,13 +Batman,Batcave Break-in,1042,2017,Yellow,36 +Batman,Batcave Break-in,1042,2017,Blue,10 +Batman,Batcave Break-in,1042,2017,Dark Blue,4 +Batman,Batcave Break-in,1042,2017,Dark Bluish Gray,63 +Batman,Batcave Break-in,1042,2017,Dark Tan,10 +Batman,Batcave Break-in,1042,2017,Flat Silver,2 +Batman,Batcave Break-in,1042,2017,Green,3 +Batman,Batcave Break-in,1042,2017,Lavender,1 +Batman,Batcave Break-in,1042,2017,Light Aqua,1 +Batman,Batcave Break-in,1042,2017,Light Bluish Gray,49 +Batman,The Scuttler,774,2017,Black,85 +Batman,The Scuttler,774,2017,Trans-Yellow,2 +Batman,The Scuttler,774,2017,White,1 +Batman,The Scuttler,774,2017,Yellow,2 +Batman,The Scuttler,774,2017,Dark Tan,7 +Batman,The Scuttler,774,2017,Light Bluish Gray,32 +Batman,The Scuttler,774,2017,Green,4 +Batman,The Scuttler,774,2017,Light Flesh,3 +Batman,The Scuttler,774,2017,Medium Dark Flesh,2 +Batman,The Scuttler,774,2017,Orange,1 +Batman,The Scuttler,774,2017,Red,7 +Batman,The Scuttler,774,2017,Reddish Brown,10 +Batman,The Scuttler,774,2017,Flat Silver,3 +Batman,The Scuttler,774,2017,Tan,4 +Batman,The Scuttler,774,2017,Dark Red,1 +Batman,The Scuttler,774,2017,Dark Purple,3 +Batman,The Scuttler,774,2017,Dark Orange,1 +Batman,The Scuttler,774,2017,Dark Bluish Gray,38 +Batman,The Scuttler,774,2017,Dark Blue,3 +Batman,The Scuttler,774,2017,Trans-Light Blue,2 +Batman,The Scuttler,774,2017,Bright Pink,1 +Batman,The Scuttler,774,2017,Bright Light Blue,1 +Batman,The Scuttler,774,2017,Blue,3 +Batman,The Scuttler,774,2017,Trans-Black,2 +Batman,The Scuttler,774,2017,Trans-Clear,3 +Batman,The Scuttler,774,2017,Dark Green,2 +Batman,The Scuttler,774,2017,Trans-Red,1 +Batman,The Batmobile,580,2017,Bright Pink,1 +Batman,The Batmobile,580,2017,Dark Blue,1 +Batman,The Batmobile,580,2017,Dark Bluish Gray,22 +Batman,The Batmobile,580,2017,Dark Red,3 +Batman,The Batmobile,580,2017,Light Bluish Gray,28 +Batman,The Batmobile,580,2017,White,2 +Batman,The Batmobile,580,2017,Lime,1 +Batman,The Batmobile,580,2017,Medium Azure,1 +Batman,The Batmobile,580,2017,Orange,1 +Batman,The Batmobile,580,2017,Pearl Dark Gray,1 +Batman,The Batmobile,580,2017,Red,13 +Batman,The Batmobile,580,2017,Reddish Brown,8 +Batman,The Batmobile,580,2017,Tan,1 +Batman,The Batmobile,580,2017,Trans-Clear,2 +Batman,The Batmobile,580,2017,Trans-Green,1 +Batman,The Batmobile,580,2017,Trans-Purple,1 +Batman,The Batmobile,580,2017,Trans-Red,3 +Batman,The Batmobile,580,2017,Yellow,6 +Batman,The Batmobile,580,2017,Black,65 +Batman,The Batmobile,580,2017,Blue,3 +Batman,The Batmobile,580,2017,Light Flesh,3 +Batman,The Batmobile,580,2017,Bright Light Orange,1 +Batman,The Batmobile,580,2017,Trans-Yellow,4 +Batman,The Batmobile,580,2017,Flat Silver,2 +Batman,"Two-Face"" Double Demolition",563,2017,Dark Bluish Gray,55 +Batman,"Two-Face"" Double Demolition",563,2017,Dark Blue,2 +Batman,"Two-Face"" Double Demolition",563,2017,Bright Light Orange,11 +Batman,"Two-Face"" Double Demolition",563,2017,Blue,4 +Batman,"Two-Face"" Double Demolition",563,2017,Black,85 +Batman,"Two-Face"" Double Demolition",563,2017,Light Bluish Gray,32 +Batman,"Two-Face"" Double Demolition",563,2017,Trans-Purple,2 +Batman,"Two-Face"" Double Demolition",563,2017,Trans-Orange,1 +Batman,"Two-Face"" Double Demolition",563,2017,Trans-Clear,3 +Batman,"Two-Face"" Double Demolition",563,2017,Tan,5 +Batman,"Two-Face"" Double Demolition",563,2017,Reddish Brown,16 +Batman,"Two-Face"" Double Demolition",563,2017,Red,5 +Batman,"Two-Face"" Double Demolition",563,2017,Orange,1 +Batman,"Two-Face"" Double Demolition",563,2017,Medium Dark Flesh,1 +Batman,"Two-Face"" Double Demolition",563,2017,Light Flesh,2 +Batman,"Two-Face"" Double Demolition",563,2017,Trans-Red,1 +Batman,"Two-Face"" Double Demolition",563,2017,Flat Silver,3 +Batman,"Two-Face"" Double Demolition",563,2017,Dark Orange,1 +Batman,"Two-Face"" Double Demolition",563,2017,Dark Brown,1 +Batman,"Two-Face"" Double Demolition",563,2017,Yellow,3 +Batman,"Two-Face"" Double Demolition",563,2017,White,26 +Batman,"Two-Face"" Double Demolition",563,2017,Trans-Yellow,3 +Batman,Killer Croc Tail-Gator,459,2017,Bright Light Orange,1 +Batman,Killer Croc Tail-Gator,459,2017,Trans-Black,1 +Batman,Killer Croc Tail-Gator,459,2017,Trans-Clear,1 +Batman,Killer Croc Tail-Gator,459,2017,Trans-Red,2 +Batman,Killer Croc Tail-Gator,459,2017,Trans-Yellow,3 +Batman,Killer Croc Tail-Gator,459,2017,White,11 +Batman,Killer Croc Tail-Gator,459,2017,[No Color],1 +Batman,Killer Croc Tail-Gator,459,2017,Black,40 +Batman,Killer Croc Tail-Gator,459,2017,Yellow,6 +Batman,Killer Croc Tail-Gator,459,2017,Light Flesh,1 +Batman,Killer Croc Tail-Gator,459,2017,Dark Azure,2 +Batman,Killer Croc Tail-Gator,459,2017,Dark Bluish Gray,35 +Batman,Killer Croc Tail-Gator,459,2017,Dark Green,1 +Batman,Killer Croc Tail-Gator,459,2017,Dark Red,1 +Batman,Killer Croc Tail-Gator,459,2017,Dark Tan,4 +Batman,Killer Croc Tail-Gator,459,2017,Flat Silver,5 +Batman,Killer Croc Tail-Gator,459,2017,Green,3 +Batman,Killer Croc Tail-Gator,459,2017,Light Bluish Gray,34 +Batman,Killer Croc Tail-Gator,459,2017,Blue,5 +Batman,Killer Croc Tail-Gator,459,2017,Medium Dark Flesh,3 +Batman,Killer Croc Tail-Gator,459,2017,Olive Green,6 +Batman,Killer Croc Tail-Gator,459,2017,Orange,1 +Batman,Killer Croc Tail-Gator,459,2017,Red,26 +Batman,Killer Croc Tail-Gator,459,2017,Reddish Brown,12 +Batman,Killer Croc Tail-Gator,459,2017,Tan,3 +Batman,"Clayface"" Splat Attack",448,2017,Blue,2 +Batman,"Clayface"" Splat Attack",448,2017,Bright Light Yellow,1 +Batman,"Clayface"" Splat Attack",448,2017,Light Bluish Gray,3 +Batman,"Clayface"" Splat Attack",448,2017,Dark Bluish Gray,7 +Batman,"Clayface"" Splat Attack",448,2017,Dark Brown,2 +Batman,"Clayface"" Splat Attack",448,2017,Dark Tan,1 +Batman,"Clayface"" Splat Attack",448,2017,Flesh,1 +Batman,"Clayface"" Splat Attack",448,2017,Light Flesh,1 +Batman,"Clayface"" Splat Attack",448,2017,Medium Dark Flesh,17 +Batman,"Clayface"" Splat Attack",448,2017,Red,2 +Batman,"Clayface"" Splat Attack",448,2017,Reddish Brown,19 +Batman,"Clayface"" Splat Attack",448,2017,Tan,1 +Batman,"Clayface"" Splat Attack",448,2017,White,2 +Batman,"Clayface"" Splat Attack",448,2017,Yellow,2 +Batman,"Clayface"" Splat Attack",448,2017,Green,1 +Batman,"Clayface"" Splat Attack",448,2017,Black,13 +Batman,"The Joker"" Notorious Lowrider",431,2017,Trans-Black,2 +Batman,"The Joker"" Notorious Lowrider",431,2017,Black,20 +Batman,"The Joker"" Notorious Lowrider",431,2017,Blue,1 +Batman,"The Joker"" Notorious Lowrider",431,2017,Dark Bluish Gray,10 +Batman,"The Joker"" Notorious Lowrider",431,2017,Dark Purple,30 +Batman,"The Joker"" Notorious Lowrider",431,2017,Dark Red,1 +Batman,"The Joker"" Notorious Lowrider",431,2017,Trans-Red,1 +Batman,"The Joker"" Notorious Lowrider",431,2017,Green,1 +Batman,"The Joker"" Notorious Lowrider",431,2017,Light Bluish Gray,27 +Batman,"The Joker"" Notorious Lowrider",431,2017,Lime,10 +Batman,"The Joker"" Notorious Lowrider",431,2017,Pearl Gold,11 +Batman,"The Joker"" Notorious Lowrider",431,2017,Red,5 +Batman,"The Joker"" Notorious Lowrider",431,2017,Reddish Brown,1 +Batman,"The Joker"" Notorious Lowrider",431,2017,Tan,1 +Batman,"The Joker"" Notorious Lowrider",431,2017,White,18 +Batman,"The Joker"" Notorious Lowrider",431,2017,Trans-Bright Green,1 +Batman,"The Joker"" Notorious Lowrider",431,2017,Trans-Clear,1 +Batman,"The Joker"" Notorious Lowrider",431,2017,Yellow,6 +Batman,"Bane"" Toxic Truck Attack",365,2017,Yellow,2 +Batman,"Bane"" Toxic Truck Attack",365,2017,Trans-Neon Green,3 +Batman,"Bane"" Toxic Truck Attack",365,2017,Trans-Clear,1 +Batman,"Bane"" Toxic Truck Attack",365,2017,Trans-Black,1 +Batman,"Bane"" Toxic Truck Attack",365,2017,Tan,1 +Batman,"Bane"" Toxic Truck Attack",365,2017,Reddish Brown,1 +Batman,"Bane"" Toxic Truck Attack",365,2017,Red,6 +Batman,"Bane"" Toxic Truck Attack",365,2017,Pearl Gold,2 +Batman,"Bane"" Toxic Truck Attack",365,2017,Orange,8 +Batman,"Bane"" Toxic Truck Attack",365,2017,Metallic Silver,1 +Batman,"Bane"" Toxic Truck Attack",365,2017,Trans-Orange,1 +Batman,"Bane"" Toxic Truck Attack",365,2017,Light Bluish Gray,30 +Batman,"Bane"" Toxic Truck Attack",365,2017,Flat Silver,4 +Batman,"Bane"" Toxic Truck Attack",365,2017,Dark Tan,5 +Batman,"Bane"" Toxic Truck Attack",365,2017,Dark Bluish Gray,21 +Batman,"Bane"" Toxic Truck Attack",365,2017,Blue,3 +Batman,"Bane"" Toxic Truck Attack",365,2017,Black,53 +Batman,"Bane"" Toxic Truck Attack",365,2017,White,1 +Batman,"Bane"" Toxic Truck Attack",365,2017,Unknown,1 +Batman,"Bane"" Toxic Truck Attack",365,2017,Light Flesh,6 +Batman,The Penguin™ Arctic Roller,304,2017,Trans-Red,1 +Batman,The Penguin™ Arctic Roller,304,2017,White,18 +Batman,The Penguin™ Arctic Roller,304,2017,Yellow,2 +Batman,The Penguin™ Arctic Roller,304,2017,[No Color],1 +Batman,The Penguin™ Arctic Roller,304,2017,Black,42 +Batman,The Penguin™ Arctic Roller,304,2017,Blue,1 +Batman,The Penguin™ Arctic Roller,304,2017,Bright Light Orange,2 +Batman,The Penguin™ Arctic Roller,304,2017,Dark Bluish Gray,20 +Batman,The Penguin™ Arctic Roller,304,2017,Dark Tan,1 +Batman,The Penguin™ Arctic Roller,304,2017,Flat Silver,2 +Batman,The Penguin™ Arctic Roller,304,2017,Light Aqua,1 +Batman,The Penguin™ Arctic Roller,304,2017,Light Bluish Gray,15 +Batman,The Penguin™ Arctic Roller,304,2017,Light Flesh,1 +Batman,The Penguin™ Arctic Roller,304,2017,Metallic Gold,1 +Batman,The Penguin™ Arctic Roller,304,2017,Orange,2 +Batman,The Penguin™ Arctic Roller,304,2017,Pearl Gold,12 +Batman,The Penguin™ Arctic Roller,304,2017,Red,4 +Batman,The Penguin™ Arctic Roller,304,2017,Reddish Brown,3 +Batman,The Penguin™ Arctic Roller,304,2017,Tan,4 +Batman,The Penguin™ Arctic Roller,304,2017,Trans-Black,2 +Batman,The Penguin™ Arctic Roller,304,2017,Trans-Clear,2 +Batman,The Penguin™ Arctic Roller,304,2017,Trans-Dark Blue,2 +Batman,The Riddler Riddle Racer,253,2017,Light Bluish Gray,14 +Batman,The Riddler Riddle Racer,253,2017,Light Flesh,4 +Batman,The Riddler Riddle Racer,253,2017,Lime,1 +Batman,The Riddler Riddle Racer,253,2017,Pearl Gold,1 +Batman,The Riddler Riddle Racer,253,2017,Red,13 +Batman,The Riddler Riddle Racer,253,2017,Green,13 +Batman,The Riddler Riddle Racer,253,2017,Reddish Brown,1 +Batman,The Riddler Riddle Racer,253,2017,Tan,5 +Batman,The Riddler Riddle Racer,253,2017,Trans-Black,2 +Batman,The Riddler Riddle Racer,253,2017,Trans-Bright Green,1 +Batman,The Riddler Riddle Racer,253,2017,Trans-Clear,2 +Batman,The Riddler Riddle Racer,253,2017,Yellow,3 +Batman,The Riddler Riddle Racer,253,2017,White,13 +Batman,The Riddler Riddle Racer,253,2017,Black,16 +Batman,The Riddler Riddle Racer,253,2017,Blue,2 +Batman,The Riddler Riddle Racer,253,2017,Bright Green,1 +Batman,The Riddler Riddle Racer,253,2017,Dark Bluish Gray,13 +Batman,The Riddler Riddle Racer,253,2017,Trans-Red,3 +Batman,The Riddler Riddle Racer,253,2017,Dark Green,11 +Batman,The Riddler Riddle Racer,253,2017,Flat Silver,1 +Batman,The Riddler Riddle Racer,253,2017,Trans-Yellow,2 +Batman,The Riddler Riddle Racer,253,2017,Trans-Orange,2 +Batman,"Scarecrow"" Special Delivery",203,2017,Sand Blue,1 +Batman,"Scarecrow"" Special Delivery",203,2017,Trans-Orange,1 +Batman,"Scarecrow"" Special Delivery",203,2017,Trans-Yellow,2 +Batman,"Scarecrow"" Special Delivery",203,2017,White,17 +Batman,"Scarecrow"" Special Delivery",203,2017,Black,29 +Batman,"Scarecrow"" Special Delivery",203,2017,Dark Bluish Gray,15 +Batman,"Scarecrow"" Special Delivery",203,2017,Dark Red,4 +Batman,"Scarecrow"" Special Delivery",203,2017,Dark Tan,3 +Batman,"Scarecrow"" Special Delivery",203,2017,Green,8 +Batman,"Scarecrow"" Special Delivery",203,2017,Light Bluish Gray,18 +Batman,"Scarecrow"" Special Delivery",203,2017,Medium Dark Flesh,1 +Batman,"Scarecrow"" Special Delivery",203,2017,Lime,1 +Batman,"Scarecrow"" Special Delivery",203,2017,Yellow,6 +Batman,"Scarecrow"" Special Delivery",203,2017,Red,7 +Batman,"Scarecrow"" Special Delivery",203,2017,Blue,1 +Batman,"Scarecrow"" Special Delivery",203,2017,Tan,2 +Batman,"Scarecrow"" Special Delivery",203,2017,Trans-Black,1 +Batman,"Scarecrow"" Special Delivery",203,2017,Trans-Clear,2 +Batman,"Scarecrow"" Special Delivery",203,2017,Light Flesh,3 +Batman,"Scarecrow"" Special Delivery",203,2017,Trans-Neon Green,1 +Batman,Mr. Freeze Ice Attack,195,2017,Sand Green,3 +Batman,Mr. Freeze Ice Attack,195,2017,Tan,2 +Batman,Mr. Freeze Ice Attack,195,2017,Trans-Clear,1 +Batman,Mr. Freeze Ice Attack,195,2017,Trans-Green,1 +Batman,Mr. Freeze Ice Attack,195,2017,Trans-Light Blue,6 +Batman,Mr. Freeze Ice Attack,195,2017,Trans-Orange,2 +Batman,Mr. Freeze Ice Attack,195,2017,Trans-Red,1 +Batman,Mr. Freeze Ice Attack,195,2017,White,8 +Batman,Mr. Freeze Ice Attack,195,2017,Yellow,4 +Batman,Mr. Freeze Ice Attack,195,2017,Trans-Black,1 +Batman,Mr. Freeze Ice Attack,195,2017,Black,17 +Batman,Mr. Freeze Ice Attack,195,2017,Blue,2 +Batman,Mr. Freeze Ice Attack,195,2017,Dark Blue,2 +Batman,Mr. Freeze Ice Attack,195,2017,Dark Bluish Gray,19 +Batman,Mr. Freeze Ice Attack,195,2017,Flat Silver,1 +Batman,Mr. Freeze Ice Attack,195,2017,Light Bluish Gray,25 +Batman,Mr. Freeze Ice Attack,195,2017,Light Flesh,2 +Batman,Mr. Freeze Ice Attack,195,2017,Medium Blue,8 +Batman,Mr. Freeze Ice Attack,195,2017,Red,3 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Trans-Orange,1 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Trans-Red,1 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Yellow,4 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Sand Blue,1 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Reddish Brown,7 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Red,3 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Orange,1 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Light Bluish Gray,16 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Dark Brown,4 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Trans-Neon Green,4 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Dark Bluish Gray,16 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Black,21 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Light Flesh,1 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Trans-Green,1 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Trans-Black,1 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Tan,5 +Batman,"Scarecrow"" Fearful Face-off",140,2017,Sand Green,3 +Batman,Catwoman Catcycle Chase,138,2017,Black,20 +Batman,Catwoman Catcycle Chase,138,2017,Blue,1 +Batman,Catwoman Catcycle Chase,138,2017,Dark Bluish Gray,13 +Batman,Catwoman Catcycle Chase,138,2017,Dark Green,1 +Batman,Catwoman Catcycle Chase,138,2017,Dark Purple,12 +Batman,Catwoman Catcycle Chase,138,2017,Dark Red,1 +Batman,Catwoman Catcycle Chase,138,2017,Light Bluish Gray,15 +Batman,Catwoman Catcycle Chase,138,2017,Light Flesh,2 +Batman,Catwoman Catcycle Chase,138,2017,Medium Dark Flesh,1 +Batman,Catwoman Catcycle Chase,138,2017,Pearl Dark Gray,1 +Batman,Catwoman Catcycle Chase,138,2017,Red,1 +Batman,Catwoman Catcycle Chase,138,2017,Reddish Brown,1 +Batman,Catwoman Catcycle Chase,138,2017,Tan,1 +Batman,Catwoman Catcycle Chase,138,2017,Trans-Clear,3 +Batman,Catwoman Catcycle Chase,138,2017,Trans-Purple,1 +Batman,Catwoman Catcycle Chase,138,2017,Trans-Red,2 +Batman,Catwoman Catcycle Chase,138,2017,Trans-Yellow,1 +Batman,Catwoman Catcycle Chase,138,2017,White,5 +Batman,Catwoman Catcycle Chase,138,2017,Yellow,4 +Batman,Catwoman Catcycle Chase,138,2017,Flat Silver,4 +Batman,Catwoman Catcycle Chase,138,2017,Green,1 +Batman,The Joker Balloon Escape,123,2017,Black,14 +Batman,The Joker Balloon Escape,123,2017,Trans-Clear,2 +Batman,The Joker Balloon Escape,123,2017,Tan,4 +Batman,The Joker Balloon Escape,123,2017,Red,5 +Batman,The Joker Balloon Escape,123,2017,Yellow,8 +Batman,The Joker Balloon Escape,123,2017,Lime,3 +Batman,The Joker Balloon Escape,123,2017,White,8 +Batman,The Joker Balloon Escape,123,2017,Sand Green,2 +Batman,The Joker Balloon Escape,123,2017,Green,1 +Batman,The Joker Balloon Escape,123,2017,Flat Silver,2 +Batman,The Joker Balloon Escape,123,2017,Dark Purple,3 +Batman,The Joker Balloon Escape,123,2017,Dark Bluish Gray,10 +Batman,The Joker Balloon Escape,123,2017,Blue,4 +Batman,The Joker Balloon Escape,123,2017,Light Bluish Gray,11 +Batman,The Joker Balloon Escape,123,2017,Trans-Red,1 +Batman,The Joker Balloon Escape,123,2017,Trans-Orange,1 +Batman,The Joker Balloon Escape,123,2017,Trans-Neon Green,1 +Batman,The Joker Balloon Escape,123,2017,Trans-Green,1 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Dark Purple,4 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Dark Blue,3 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Dark Bluish Gray,2 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Flat Silver,2 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Light Bluish Gray,10 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Lime,4 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Orange,3 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Red,9 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Sand Green,1 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Tan,2 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Trans-Bright Green,2 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Black,7 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Yellow,2 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,White,3 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Trans-Neon Orange,2 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Trans-Light Blue,1 +Batman,Mighty Micros: Batman vs. Killer Moth,83,2017,Trans-Clear,1 +Batman,The Mini Batwing,80,2017,Red,3 +Batman,The Mini Batwing,80,2017,Trans-Yellow,2 +Batman,The Mini Batwing,80,2017,White,1 +Batman,The Mini Batwing,80,2017,Black,17 +Batman,The Mini Batwing,80,2017,Dark Bluish Gray,4 +Batman,The Mini Batwing,80,2017,Light Bluish Gray,4 +Batman,The Mini Batmobile,68,2017,Black,20 +Batman,The Mini Batmobile,68,2017,Yellow,1 +Batman,The Mini Batmobile,68,2017,Trans-Yellow,2 +Batman,The Mini Batmobile,68,2017,Trans-Purple,1 +Batman,The Mini Batmobile,68,2017,Red,1 +Batman,The Mini Batmobile,68,2017,Light Bluish Gray,6 +Batman,The Mini Batmobile,68,2017,Dark Bluish Gray,3 +Batman,The Joker Battle Training,49,2017,Dark Bluish Gray,3 +Batman,The Joker Battle Training,49,2017,Black,13 +Batman,The Joker Battle Training,49,2017,Dark Purple,3 +Batman,The Joker Battle Training,49,2017,Dark Tan,1 +Batman,The Joker Battle Training,49,2017,Red,2 +Batman,The Joker Battle Training,49,2017,Green,1 +Batman,The Joker Battle Training,49,2017,Yellow,2 +Batman,The Joker Battle Training,49,2017,White,4 +Batman,The Joker Battle Training,49,2017,Trans-Bright Green,1 +Batman,Disco Batman - Tears of Batman,13,2017,Light Flesh,2 +Batman,Disco Batman - Tears of Batman,13,2017,Metallic Gold,1 +Batman,Disco Batman - Tears of Batman,13,2017,Pearl Gold,2 +Batman,Disco Batman - Tears of Batman,13,2017,Red,1 +Batman,Disco Batman - Tears of Batman,13,2017,Yellow,1 +Batman,Disco Batman - Tears of Batman,13,2017,White,2 +Batman,Disco Batman - Tears of Batman,13,2017,Green,1 +Batman,Disco Batman - Tears of Batman,13,2017,Dark Purple,1 +Batman,Disco Batman - Tears of Batman,13,2017,Blue,1 +Batman,Catman™,9,2017,Black,1 +Batman,Catman™,9,2017,Bright Light Orange,2 +Batman,Catman™,9,2017,Flat Silver,1 +Batman,Catman™,9,2017,Medium Dark Flesh,1 +Batman,Catman™,9,2017,Reddish Brown,3 +Batman,Pink Power Batgirl™,8,2017,Black,1 +Batman,Glam Metal Batman™,8,2017,Flat Silver,2 +Batman,Glam Metal Batman™,8,2017,Black,5 +Batman,Glam Metal Batman™,8,2017,Light Flesh,1 +Batman,Pink Power Batgirl™,8,2017,Dark Red,1 +Batman,The Calculator™,8,2017,Black,1 +Batman,The Calculator™,8,2017,Light Bluish Gray,1 +Batman,The Calculator™,8,2017,Medium Lavender,3 +Batman,The Calculator™,8,2017,White,3 +Batman,Fairy Batman™,8,2017,Trans-Dark Pink,2 +Batman,Fairy Batman™,8,2017,Light Flesh,1 +Batman,Barbara Gordon™,8,2017,Dark Red,1 +Batman,Barbara Gordon™,8,2017,Light Bluish Gray,1 +Batman,Fairy Batman™,8,2017,Bright Pink,3 +Batman,Barbara Gordon™,8,2017,Medium Dark Flesh,1 +Batman,Barbara Gordon™,8,2017,Yellow,1 +Batman,Vacation Batman™,8,2017,Yellow,1 +Batman,Barbara Gordon™,8,2017,Black,2 +Batman,Barbara Gordon™,8,2017,Dark Blue,2 +Batman,Red Hood™,8,2017,Red,4 +Batman,Fairy Batman™,8,2017,Black,2 +Batman,Red Hood™,8,2017,Black,3 +Batman,Pink Power Batgirl™,8,2017,Medium Dark Flesh,2 +Batman,Pink Power Batgirl™,8,2017,Dark Pink,4 +Batman,Vacation Batman™,8,2017,Black,4 +Batman,Vacation Batman™,8,2017,Light Flesh,1 +Batman,Vacation Batman™,8,2017,Orange,1 +Batman,King Tut™,7,2017,Pearl Gold,1 +Batman,King Tut™,7,2017,Light Flesh,1 +Batman,King Tut™,7,2017,Green,1 +Batman,King Tut™,7,2017,Dark Red,1 +Batman,Clan of the Cave Batman™,7,2017,Medium Dark Flesh,2 +Batman,Clan of the Cave Batman™,7,2017,Reddish Brown,3 +Batman,Commissioner Gordon™,7,2017,Black,3 +Batman,Commissioner Gordon™,7,2017,Dark Bluish Gray,2 +Batman,Commissioner Gordon™,7,2017,Medium Dark Flesh,1 +Batman,Commissioner Gordon™,7,2017,White,1 +Batman,Dick Grayson™,7,2017,Blue,1 +Batman,Dick Grayson™,7,2017,Dark Blue,1 +Batman,The Mime™,7,2017,Trans-Light Blue,1 +Batman,The Mime™,7,2017,Magenta,1 +Batman,The Mime™,7,2017,Light Flesh,1 +Batman,Dick Grayson™,7,2017,Light Flesh,1 +Batman,The Mime™,7,2017,Black,2 +Batman,Dick Grayson™,7,2017,Red,1 +Batman,Lobster-Lovin’ Batman™,7,2017,Red,1 +Batman,King Tut™,7,2017,Black,1 +Batman,Nurse Harley Quinn™,7,2017,White,4 +Batman,Nurse Harley Quinn™,7,2017,Sand Blue,1 +Batman,Nurse Harley Quinn™,7,2017,Red,1 +Batman,Nurse Harley Quinn™,7,2017,Black,1 +Batman,Dick Grayson™,7,2017,Black,1 +Batman,Lobster-Lovin’ Batman™,7,2017,White,1 +Batman,Clan of the Cave Batman™,7,2017,Black,1 +Batman,Clan of the Cave Batman™,7,2017,Light Flesh,1 +Batman,Lobster-Lovin’ Batman™,7,2017,Light Flesh,1 +Batman,Lobster-Lovin’ Batman™,7,2017,Dark Red,2 +Batman,Dick Grayson™,7,2017,Yellow,1 +Batman,Dick Grayson™,7,2017,Reddish Brown,1 +Batman,Lobster-Lovin’ Batman™,7,2017,Black,2 +Batman,King Tut™,7,2017,White,1 +Batman,King Tut™,7,2017,Red,1 +Batman,The Mime™,7,2017,Dark Blue,1 +Batman,The Joker™ – Arkham Asylum,6,2017,Light Bluish Gray,1 +Batman,The Joker™ – Arkham Asylum,6,2017,Green,1 +Batman,The Joker™ – Arkham Asylum,6,2017,Black,1 +Batman,The Joker™ – Arkham Asylum,6,2017,White,1 +Batman,The Eraser™,6,2017,Flat Silver,1 +Batman,The Eraser™,6,2017,White,1 +Batman,March Harriet™,6,2017,Medium Dark Flesh,3 +Batman,March Harriet™,6,2017,Light Flesh,1 +Batman,March Harriet™,6,2017,Black,2 +Batman,The Eraser™,6,2017,Bright Pink,1 +Batman,The Eraser™,6,2017,Black,1 +Batman,The Eraser™,6,2017,Bright Light Orange,2 +Batman,The Joker™ – Arkham Asylum,6,2017,Orange,2 +Batman,Zodiac Master™,6,2017,Black,1 +Batman,Zodiac Master™,6,2017,Bright Light Blue,2 +Batman,Zodiac Master™,6,2017,Flat Silver,2 +Batman,Zodiac Master™,6,2017,Medium Blue,1 +Batman,Orca™,5,2017,Dark Red,1 +Batman,Orca™,5,2017,White,1 +Batman,Orca™,5,2017,Black,3 +Battle Vehicles,Axalara T9,694,2008,Black,19 +Battle Vehicles,Axalara T9,694,2008,Blue,2 +Battle Vehicles,Axalara T9,694,2008,Dark Bluish Gray,10 +Battle Vehicles,Axalara T9,694,2008,Light Bluish Gray,20 +Battle Vehicles,Axalara T9,694,2008,Lime,4 +Battle Vehicles,Axalara T9,694,2008,Pearl Light Gray,14 +Battle Vehicles,Axalara T9,694,2008,Red,17 +Battle Vehicles,Axalara T9,694,2008,Tan,2 +Battle Vehicles,Axalara T9,694,2008,Trans-Medium Blue,1 +Battle Vehicles,Axalara T9,694,2008,Trans-Neon Green,2 +Battle Vehicles,Axalara T9,694,2008,White,3 +Battle Vehicles,Jetrax T6,420,2008,Black,30 +Battle Vehicles,Jetrax T6,420,2008,Blue,11 +Battle Vehicles,Jetrax T6,420,2008,Dark Bluish Gray,7 +Battle Vehicles,Jetrax T6,420,2008,Dark Red,8 +Battle Vehicles,Jetrax T6,420,2008,Light Bluish Gray,14 +Battle Vehicles,Jetrax T6,420,2008,Pearl Light Gray,18 +Battle Vehicles,Jetrax T6,420,2008,Red,2 +Battle Vehicles,Jetrax T6,420,2008,Tan,1 +Battle Vehicles,Jetrax T6,420,2008,Trans-Neon Green,1 +Battle Vehicles,Jetrax T6,420,2008,Trans-Red,1 +Battle Vehicles,Jetrax T6,420,2008,White,1 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Black,30 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Blue,3 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Dark Bluish Gray,7 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Dark Red,8 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Light Bluish Gray,15 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Pearl Light Gray,17 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Red,2 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Tan,1 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Trans-Neon Green,1 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Trans-Red,1 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,White,1 +Battle Vehicles,Jetrax T6 Limited Edition,420,2008,Yellow,8 +Battle Vehicles,Rockoh T3,388,2008,Black,19 +Battle Vehicles,Rockoh T3,388,2008,Blue,2 +Battle Vehicles,Rockoh T3,388,2008,Dark Bluish Gray,15 +Battle Vehicles,Rockoh T3,388,2008,Dark Green,1 +Battle Vehicles,Rockoh T3,388,2008,Light Bluish Gray,14 +Battle Vehicles,Rockoh T3,388,2008,Lime,6 +Battle Vehicles,Rockoh T3,388,2008,Orange,4 +Battle Vehicles,Rockoh T3,388,2008,Pearl Light Gray,14 +Battle Vehicles,Rockoh T3,388,2008,Red,3 +Battle Vehicles,Rockoh T3,388,2008,Tan,1 +Battle Vehicles,Rockoh T3,388,2008,Trans-Medium Blue,1 +Battle Vehicles,Rockoh T3,388,2008,Trans-Neon Green,1 +Battle Vehicles,Rockoh T3,388,2008,Trans-Red,2 +Battle Vehicles,Rockoh T3,388,2008,White,1 +Battle Vehicles,Skopio XV-1,848,2009,Black,17 +Battle Vehicles,Skopio XV-1,848,2009,Blue,2 +Battle Vehicles,Skopio XV-1,848,2009,Bright Light Orange,5 +Battle Vehicles,Skopio XV-1,848,2009,Dark Bluish Gray,14 +Battle Vehicles,Skopio XV-1,848,2009,Dark Red,3 +Battle Vehicles,Skopio XV-1,848,2009,Light Bluish Gray,13 +Battle Vehicles,Skopio XV-1,848,2009,Orange,1 +Battle Vehicles,Skopio XV-1,848,2009,Pearl Gold,1 +Battle Vehicles,Skopio XV-1,848,2009,Pearl Light Gray,10 +Battle Vehicles,Skopio XV-1,848,2009,Red,14 +Battle Vehicles,Skopio XV-1,848,2009,Tan,2 +Battle Vehicles,Skopio XV-1,848,2009,Trans-Neon Orange,1 +Battle Vehicles,Skopio XV-1,848,2009,Yellow,1 +Battle Vehicles,Thornatus V9,438,2009,Black,26 +Battle Vehicles,Thornatus V9,438,2009,Blue,3 +Battle Vehicles,Thornatus V9,438,2009,Dark Bluish Gray,9 +Battle Vehicles,Thornatus V9,438,2009,Dark Red,7 +Battle Vehicles,Thornatus V9,438,2009,Light Bluish Gray,17 +Battle Vehicles,Thornatus V9,438,2009,Pearl Dark Gray,2 +Battle Vehicles,Thornatus V9,438,2009,Pearl Gold,1 +Battle Vehicles,Thornatus V9,438,2009,Pearl Light Gray,16 +Battle Vehicles,Thornatus V9,438,2009,Red,2 +Battle Vehicles,Thornatus V9,438,2009,Tan,12 +Battle Vehicles,Thornatus V9,438,2009,Trans-Neon Green,1 +Battle Vehicles,Baranus V7,263,2009,Red,1 +Battle Vehicles,Baranus V7,263,2009,Trans-Neon Orange,1 +Battle Vehicles,Baranus V7,263,2009,Trans-Red,1 +Battle Vehicles,Baranus V7,263,2009,Yellow,1 +Battle Vehicles,Baranus V7,263,2009,Black,28 +Battle Vehicles,Baranus V7,263,2009,Blue,2 +Battle Vehicles,Baranus V7,263,2009,Dark Bluish Gray,4 +Battle Vehicles,Baranus V7,263,2009,Dark Green,3 +Battle Vehicles,Baranus V7,263,2009,Light Bluish Gray,14 +Battle Vehicles,Baranus V7,263,2009,Lime,1 +Battle Vehicles,Baranus V7,263,2009,Orange,3 +Battle Vehicles,Baranus V7,263,2009,Pearl Dark Gray,2 +Battle Vehicles,Baranus V7,263,2009,Pearl Gold,1 +Battle Vehicles,Baranus V7,263,2009,Pearl Light Gray,10 +Battle Vehicles,Kaxium V3,251,2009,Trans-Medium Blue,1 +Battle Vehicles,Kaxium V3,251,2009,Black,22 +Battle Vehicles,Kaxium V3,251,2009,Blue,12 +Battle Vehicles,Kaxium V3,251,2009,Dark Bluish Gray,2 +Battle Vehicles,Kaxium V3,251,2009,Light Bluish Gray,13 +Battle Vehicles,Kaxium V3,251,2009,Medium Blue,1 +Battle Vehicles,Kaxium V3,251,2009,Pearl Gold,1 +Battle Vehicles,Kaxium V3,251,2009,Pearl Light Gray,12 +Battle Vehicles,Kaxium V3,251,2009,Red,1 +Battle Vehicles,Cendox V1,151,2009,Pearl Light Gray,10 +Battle Vehicles,Cendox V1,151,2009,Red,2 +Battle Vehicles,Cendox V1,151,2009,Trans-Medium Blue,1 +Battle Vehicles,Cendox V1,151,2009,Yellow,8 +Battle Vehicles,Cendox V1,151,2009,Pearl Gold,1 +Battle Vehicles,Cendox V1,151,2009,Black,12 +Battle Vehicles,Cendox V1,151,2009,Blue,3 +Battle Vehicles,Cendox V1,151,2009,Dark Bluish Gray,2 +Battle Vehicles,Cendox V1,151,2009,Dark Red,5 +Battle Vehicles,Cendox V1,151,2009,Light Bluish Gray,8 +Belville,Belville Accessories,10,1995,Dark Pink,2 +Belville,Belville Accessories,10,1995,Light Green,1 +Belville,Belville Accessories,10,1995,Light Pink,1 +Belville,Belville Accessories,10,1995,Light Violet,1 +Belville,Belville Accessories,10,1995,Light Yellow,1 +Belville,Belville Accessories,10,1995,Trans-Clear,1 +Belville,Belville Accessories,10,1995,White,1 +Belville,Belville Accessories,10,1995,Yellow,1 +Belville,Fairy Tale Accessories,25,1999,Bright Green,2 +Belville,Fairy Tale Accessories,25,1999,Chrome Silver,4 +Belville,Fairy Tale Accessories,25,1999,Light Green,1 +Belville,Fairy Tale Accessories,25,1999,Orange,1 +Belville,Fairy Tale Accessories,25,1999,Pink,3 +Belville,Fairy Tale Accessories,25,1999,Red,1 +Belville,Fairy Tale Accessories,25,1999,Trans-Dark Blue,1 +Belville,Fairy Tale Accessories,25,1999,Trans-Green,1 +Belville,Fairy Tale Accessories,25,1999,Trans-Light Blue,3 +Belville,Fairy Tale Accessories,25,1999,Trans-Neon Green,1 +Belville,Fairy Tale Accessories,25,1999,Trans-Red,2 +Belville,Fairy Tale Accessories,25,1999,White,2 +Belville,Advent Calendar 2007 Belville (Day 16) Fireplace,20,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 16) Fireplace,20,2007,Trans-Neon Orange,1 +Belville,Advent Calendar 2007 Belville (Day 16) Fireplace,20,2007,Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 16) Fireplace,20,2007,Black,1 +Belville,Advent Calendar 2007 Belville (Day 16) Fireplace,20,2007,Trans-Purple,1 +Belville,Advent Calendar 2007 Belville (Day 16) Fireplace,20,2007,Trans-Red,1 +Belville,Advent Calendar 2007 Belville (Day 16) Fireplace,20,2007,White,5 +Belville,Advent Calendar 2007 Belville (Day 16) Fireplace,20,2007,Magenta,1 +Belville,Advent Calendar 2007 Belville (Day 23) Toy Castle,17,2007,White,6 +Belville,Advent Calendar 2007 Belville (Day 23) Toy Castle,17,2007,Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 23) Toy Castle,17,2007,Glitter Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 23) Toy Castle,17,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 7) Chair and Desk Lamp,15,2007,White,4 +Belville,Advent Calendar 2007 Belville (Day 7) Chair and Desk Lamp,15,2007,Trans-Orange,1 +Belville,Advent Calendar 2007 Belville (Day 7) Chair and Desk Lamp,15,2007,Trans-Dark Pink,2 +Belville,Advent Calendar 2007 Belville (Day 7) Chair and Desk Lamp,15,2007,Glitter Trans-Dark Pink,2 +Belville,Advent Calendar 2007 Belville (Day 7) Chair and Desk Lamp,15,2007,Trans-Yellow,1 +Belville,Advent Calendar 2007 Belville (Day 2) Bed,13,2007,Glitter Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 2) Bed,13,2007,Metallic Silver,1 +Belville,Advent Calendar 2007 Belville (Day 2) Bed,13,2007,White,2 +Belville,Advent Calendar 2007 Belville (Day 2) Bed,13,2007,Trans-Orange,1 +Belville,Advent Calendar 2007 Belville (Day 2) Bed,13,2007,Trans-Medium Blue,1 +Belville,Advent Calendar 2007 Belville (Day 21) Toy Ball,13,2007,Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 21) Toy Ball,13,2007,Flat Dark Gold,1 +Belville,Advent Calendar 2007 Belville (Day 21) Toy Ball,13,2007,Glitter Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 21) Toy Ball,13,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 21) Toy Ball,13,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 2) Bed,13,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 8) Kitten,12,2007,Red,4 +Belville,Advent Calendar 2007 Belville (Day 8) Kitten,12,2007,Trans-Red,1 +Belville,Advent Calendar 2007 Belville (Day 8) Kitten,12,2007,White,1 +Belville,Advent Calendar 2007 Belville (Day 22) Festive Wreath,12,2007,Green,1 +Belville,Advent Calendar 2007 Belville (Day 22) Festive Wreath,12,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 8) Kitten,12,2007,Black,1 +Belville,Advent Calendar 2007 Belville (Day 4) Jewel Chest,11,2007,White,1 +Belville,Advent Calendar 2007 Belville (Day 4) Jewel Chest,11,2007,Trans-Clear,1 +Belville,Advent Calendar 2007 Belville (Day 4) Jewel Chest,11,2007,Trans-Dark Pink,3 +Belville,Advent Calendar 2007 Belville (Day 4) Jewel Chest,11,2007,Trans-Medium Blue,1 +Belville,Advent Calendar 2007 Belville (Day 19) Jelly and Ice Cream,10,2007,Trans-Red,1 +Belville,Advent Calendar 2007 Belville (Day 19) Jelly and Ice Cream,10,2007,White,1 +Belville,Advent Calendar 2007 Belville (Day 19) Jelly and Ice Cream,10,2007,Bright Light Orange,1 +Belville,Advent Calendar 2007 Belville (Day 19) Jelly and Ice Cream,10,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 19) Jelly and Ice Cream,10,2007,Trans-Clear,1 +Belville,Advent Calendar 2007 Belville (Day 6) Tea Set,9,2007,Dark Orange,1 +Belville,Advent Calendar 2007 Belville (Day 6) Tea Set,9,2007,Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 9) Sleigh,9,2007,Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 9) Sleigh,9,2007,Light Bluish Gray,1 +Belville,Advent Calendar 2007 Belville (Day 9) Sleigh,9,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 9) Sleigh,9,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 9) Sleigh,9,2007,Trans-Yellow,1 +Belville,Advent Calendar 2007 Belville (Day 6) Tea Set,9,2007,Metallic Gold,1 +Belville,Advent Calendar 2007 Belville (Day 10) Snowman,9,2007,Magenta,1 +Belville,Advent Calendar 2007 Belville (Day 10) Snowman,9,2007,Reddish Brown,1 +Belville,Advent Calendar 2007 Belville (Day 10) Snowman,9,2007,White,3 +Belville,Advent Calendar 2007 Belville (Day 6) Tea Set,9,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 13) Fruit Cup and Bottles,9,2007,Bright Green,1 +Belville,Advent Calendar 2007 Belville (Day 13) Fruit Cup and Bottles,9,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 13) Fruit Cup and Bottles,9,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 9) Sleigh,9,2007,White,2 +Belville,Advent Calendar 2007 Belville (Day 13) Fruit Cup and Bottles,9,2007,Trans-Yellow,2 +Belville,Advent Calendar 2007 Belville (Day 13) Fruit Cup and Bottles,9,2007,Yellow,2 +Belville,Advent Calendar 2007 Belville (Day 6) Tea Set,9,2007,Trans-Clear,1 +Belville,Advent Calendar 2007 Belville (Day 6) Tea Set,9,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 6) Tea Set,9,2007,White,1 +Belville,Advent Calendar 2007 Belville (Day 24) Christmas Tree and Presents,9,2007,Trans-Yellow,2 +Belville,Advent Calendar 2007 Belville (Day 24) Christmas Tree and Presents,9,2007,White,1 +Belville,Advent Calendar 2007 Belville (Day 24) Christmas Tree and Presents,9,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 24) Christmas Tree and Presents,9,2007,Glitter Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 24) Christmas Tree and Presents,9,2007,Bright Green,1 +Belville,Advent Calendar 2007 Belville (Day 24) Christmas Tree and Presents,9,2007,Trans-Green,1 +Belville,Advent Calendar 2007 Belville (Day 6) Tea Set,9,2007,Bright Light Orange,1 +Belville,Advent Calendar 2007 Belville (Day 13) Fruit Cup and Bottles,9,2007,Trans-Red,2 +Belville,Advent Calendar 2007 Belville (Day 14) Flowers,8,2007,Trans-Clear,1 +Belville,Advent Calendar 2007 Belville (Day 14) Flowers,8,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 3) Vanity Unit,8,2007,Bright Pink,1 +Belville,Advent Calendar 2007 Belville (Day 3) Vanity Unit,8,2007,Glitter Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 3) Vanity Unit,8,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 3) Vanity Unit,8,2007,Trans-Orange,1 +Belville,Advent Calendar 2007 Belville (Day 3) Vanity Unit,8,2007,Trans-Red,1 +Belville,Advent Calendar 2007 Belville (Day 3) Vanity Unit,8,2007,Trans-Yellow,1 +Belville,Advent Calendar 2007 Belville (Day 3) Vanity Unit,8,2007,White,2 +Belville,Advent Calendar 2007 Belville (Day 14) Flowers,8,2007,Bright Green,1 +Belville,Advent Calendar 2007 Belville (Day 14) Flowers,8,2007,Green,2 +Belville,Advent Calendar 2007 Belville (Day 14) Flowers,8,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 17) Frog Book and Jewel Case,6,2007,Trans-Clear,1 +Belville,Advent Calendar 2007 Belville (Day 5) Cat,6,2007,Blue,1 +Belville,Advent Calendar 2007 Belville (Day 5) Cat,6,2007,Red,1 +Belville,Advent Calendar 2007 Belville (Day 5) Cat,6,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 5) Cat,6,2007,White,2 +Belville,Advent Calendar 2007 Belville (Day 17) Frog Book and Jewel Case,6,2007,Green,1 +Belville,Advent Calendar 2007 Belville (Day 17) Frog Book and Jewel Case,6,2007,White,2 +Belville,Advent Calendar 2007 Belville (Day 17) Frog Book and Jewel Case,6,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 17) Frog Book and Jewel Case,6,2007,Magenta,1 +Belville,Advent Calendar 2007 Belville (Day 15) Vanity Case,5,2007,White,2 +Belville,Advent Calendar 2007 Belville (Day 18) Teddy Bear,5,2007,Reddish Brown,1 +Belville,Advent Calendar 2007 Belville (Day 15) Vanity Case,5,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 18) Teddy Bear,5,2007,Yellow,1 +Belville,Advent Calendar 2007 Belville (Day 18) Teddy Bear,5,2007,Bright Light Orange,1 +Belville,Advent Calendar 2007 Belville (Day 18) Teddy Bear,5,2007,Black,1 +Belville,Advent Calendar 2007 Belville (Day 15) Vanity Case,5,2007,Dark Pink,2 +Belville,Advent Calendar 2007 Belville (Day 11) Turret,4,2007,Bright Pink,1 +Belville,Advent Calendar 2007 Belville (Day 11) Turret,4,2007,White,2 +Belville,Advent Calendar 2007 Belville (Day 11) Turret,4,2007,Trans-Medium Blue,1 +Belville,Advent Calendar 2007 Belville (Day 12) Rabbit,3,2007,Bright Green,1 +Belville,Advent Calendar 2007 Belville (Day 12) Rabbit,3,2007,Orange,1 +Belville,Advent Calendar 2007 Belville (Day 12) Rabbit,3,2007,White,1 +Belville,Advent Calendar 2007 Belville (Day 20) Dog and Bowl,3,2007,Dark Orange,2 +Belville,Advent Calendar 2007 Belville (Day 20) Dog and Bowl,3,2007,Bright Light Orange,1 +Belville,Advent Calendar 2007 Belville (Day 1) Fairy with Wand,2,2007,Trans-Dark Pink,1 +Belville,Advent Calendar 2007 Belville (Day 1) Fairy with Wand,2,2007,Royal Blue,1 +Ben 10,Swampfire,22,2010,Dark Green,1 +Ben 10,Swampfire,22,2010,Sand Green,5 +Ben 10,Swampfire,22,2010,Red,2 +Ben 10,Spidermonkey,21,2010,Medium Blue,3 +Ben 10,ChromaStone,21,2010,Black,1 +Ben 10,ChromaStone,21,2010,Dark Blue,4 +Ben 10,ChromaStone,21,2010,Magenta,2 +Ben 10,Spidermonkey,21,2010,Blue,2 +Ben 10,Spidermonkey,21,2010,Dark Blue,3 +Ben 10,Big Chill,20,2010,Black,3 +Ben 10,Big Chill,20,2010,Dark Blue,1 +Ben 10,Big Chill,20,2010,Bright Light Blue,2 +Ben 10,Big Chill,20,2010,Blue,2 +Ben 10,Jet Ray,16,2010,Red,4 +Ben 10,Jet Ray,16,2010,Yellow,1 +Ben 10,Jet Ray,16,2010,Dark Red,3 +Ben 10,Humungousaur,14,2010,Dark Tan,1 +Ben 10,Humungousaur,14,2010,Reddish Brown,7 +Bionicle,Hau Mask - Blue Brick (Legoland California),168,2001,Black,8 +Bionicle,Hau Mask - Blue Brick (Legoland California),168,2001,Blue,18 +Bionicle,Hau Mask - Green Brick (Legoland California),168,2001,Black,8 +Bionicle,Hau Mask - Green Brick (Legoland California),168,2001,Green,18 +Bionicle,Hau Mask - Red Brick (Legoland California),168,2001,Black,8 +Bionicle,Hau Mask - Red Brick (Legoland California),168,2001,Red,18 +Bionicle,Special Masks! - 2 (Dark) Copper Color Kanohi (Legoland Billund),2,2001,Copper,2 +Bionicle,Umarak the Destroyer,190,2016,Blue,2 +Bionicle,Umarak the Destroyer,190,2016,Trans-Neon Orange,1 +Bionicle,Umarak the Destroyer,190,2016,Trans-Neon Green,6 +Bionicle,Umarak the Destroyer,190,2016,Tan,1 +Bionicle,Umarak the Destroyer,190,2016,Red,1 +Bionicle,Umarak the Destroyer,190,2016,Pearl Gold,2 +Bionicle,Umarak the Destroyer,190,2016,Pearl Dark Gray,4 +Bionicle,Umarak the Destroyer,190,2016,Light Bluish Gray,6 +Bionicle,Umarak the Destroyer,190,2016,Flat Silver,1 +Bionicle,Umarak the Destroyer,190,2016,Dark Tan,2 +Bionicle,Umarak the Destroyer,190,2016,Dark Bluish Gray,5 +Bionicle,Umarak the Destroyer,190,2016,Black,26 +Bionicle,Kopaka and Melum - Unity set,162,2016,White,10 +Bionicle,Kopaka and Melum - Unity set,162,2016,Black,14 +Bionicle,Kopaka and Melum - Unity set,162,2016,Blue,1 +Bionicle,Kopaka and Melum - Unity set,162,2016,Dark Blue,1 +Bionicle,Kopaka and Melum - Unity set,162,2016,Dark Bluish Gray,6 +Bionicle,Kopaka and Melum - Unity set,162,2016,Dark Tan,1 +Bionicle,Kopaka and Melum - Unity set,162,2016,Flat Silver,5 +Bionicle,Kopaka and Melum - Unity set,162,2016,Light Bluish Gray,12 +Bionicle,Kopaka and Melum - Unity set,162,2016,Pearl Dark Gray,3 +Bionicle,Kopaka and Melum - Unity set,162,2016,Pearl Gold,1 +Bionicle,Kopaka and Melum - Unity set,162,2016,Red,1 +Bionicle,Kopaka and Melum - Unity set,162,2016,Trans-Light Blue,8 +Bionicle,Umarak the Hunter,150,2016,Dark Bluish Gray,9 +Bionicle,Umarak the Hunter,150,2016,Bright Green,1 +Bionicle,Umarak the Hunter,150,2016,Flat Silver,3 +Bionicle,Umarak the Hunter,150,2016,Black,23 +Bionicle,Umarak the Hunter,150,2016,Pearl Dark Gray,3 +Bionicle,Umarak the Hunter,150,2016,Red,1 +Bionicle,Umarak the Hunter,150,2016,Reddish Brown,2 +Bionicle,Umarak the Hunter,150,2016,Tan,2 +Bionicle,Umarak the Hunter,150,2016,Light Bluish Gray,6 +Bionicle,Umarak the Hunter,150,2016,Trans-Bright Green,3 +Bionicle,Umarak the Hunter,150,2016,Trans-Neon Orange,1 +Bionicle,Umarak the Hunter,150,2016,Trans-Red,1 +Bionicle,Umarak the Hunter,150,2016,Dark Tan,3 +Bionicle,Umarak the Hunter,150,2016,Dark Brown,1 +Bionicle,Umarak the Hunter,150,2016,Blue,2 +Bionicle,Onua Uniter of Earth,144,2016,Black,24 +Bionicle,Onua Uniter of Earth,144,2016,Blue,2 +Bionicle,Onua Uniter of Earth,144,2016,Dark Bluish Gray,12 +Bionicle,Onua Uniter of Earth,144,2016,Dark Tan,1 +Bionicle,Onua Uniter of Earth,144,2016,Flat Silver,4 +Bionicle,Onua Uniter of Earth,144,2016,Light Bluish Gray,7 +Bionicle,Onua Uniter of Earth,144,2016,Pearl Dark Gray,2 +Bionicle,Onua Uniter of Earth,144,2016,Pearl Gold,3 +Bionicle,Onua Uniter of Earth,144,2016,Red,1 +Bionicle,Onua Uniter of Earth,144,2016,Tan,1 +Bionicle,Onua Uniter of Earth,144,2016,Trans-Clear,1 +Bionicle,Onua Uniter of Earth,144,2016,Trans-Light Blue,1 +Bionicle,Onua Uniter of Earth,144,2016,Trans-Purple,6 +Bionicle,Tahu Uniter of Fire,132,2016,Blue,2 +Bionicle,Tahu Uniter of Fire,132,2016,Dark Azure,1 +Bionicle,Tahu Uniter of Fire,132,2016,Black,13 +Bionicle,Tahu Uniter of Fire,132,2016,Trans-Red,1 +Bionicle,Tahu Uniter of Fire,132,2016,Trans-Neon Orange,7 +Bionicle,Tahu Uniter of Fire,132,2016,Trans-Light Blue,1 +Bionicle,Tahu Uniter of Fire,132,2016,Tan,1 +Bionicle,Tahu Uniter of Fire,132,2016,Reddish Brown,1 +Bionicle,Tahu Uniter of Fire,132,2016,Red,3 +Bionicle,Tahu Uniter of Fire,132,2016,Pearl Gold,7 +Bionicle,Tahu Uniter of Fire,132,2016,Pearl Dark Gray,1 +Bionicle,Tahu Uniter of Fire,132,2016,Light Bluish Gray,4 +Bionicle,Tahu Uniter of Fire,132,2016,Flat Silver,2 +Bionicle,Tahu Uniter of Fire,132,2016,Dark Tan,1 +Bionicle,Tahu Uniter of Fire,132,2016,Dark Bluish Gray,4 +Bionicle,Lava Beast,114,2016,Orange,1 +Bionicle,Lava Beast,114,2016,Black,18 +Bionicle,Lava Beast,114,2016,Blue,1 +Bionicle,Lava Beast,114,2016,Dark Bluish Gray,6 +Bionicle,Lava Beast,114,2016,Dark Orange,1 +Bionicle,Lava Beast,114,2016,Trans-Orange,1 +Bionicle,Lava Beast,114,2016,Trans-Neon Orange,3 +Bionicle,Lava Beast,114,2016,Trans-Neon Green,3 +Bionicle,Lava Beast,114,2016,Trans-Black,1 +Bionicle,Lava Beast,114,2016,Reddish Brown,1 +Bionicle,Lava Beast,114,2016,Red,1 +Bionicle,Lava Beast,114,2016,Light Bluish Gray,3 +Bionicle,Lava Beast,114,2016,Pearl Dark Gray,3 +Bionicle,Akida Creature of Water,112,2016,Dark Bluish Gray,3 +Bionicle,Akida Creature of Water,112,2016,Blue,3 +Bionicle,Akida Creature of Water,112,2016,Black,17 +Bionicle,Akida Creature of Water,112,2016,Dark Tan,1 +Bionicle,Akida Creature of Water,112,2016,Trans-Red,1 +Bionicle,Akida Creature of Water,112,2016,Pearl Dark Gray,1 +Bionicle,Akida Creature of Water,112,2016,Trans-Light Blue,4 +Bionicle,Akida Creature of Water,112,2016,Trans-Dark Blue,1 +Bionicle,Akida Creature of Water,112,2016,Red,1 +Bionicle,Akida Creature of Water,112,2016,Orange,2 +Bionicle,Akida Creature of Water,112,2016,Light Bluish Gray,12 +Bionicle,Akida Creature of Water,112,2016,Flat Silver,2 +Bionicle,Storm Beast,109,2016,White,1 +Bionicle,Storm Beast,109,2016,Blue,2 +Bionicle,Storm Beast,109,2016,Black,19 +Bionicle,Storm Beast,109,2016,Dark Blue,2 +Bionicle,Storm Beast,109,2016,Light Bluish Gray,7 +Bionicle,Storm Beast,109,2016,Pearl Dark Gray,2 +Bionicle,Storm Beast,109,2016,Red,1 +Bionicle,Storm Beast,109,2016,Reddish Brown,1 +Bionicle,Storm Beast,109,2016,Trans-Light Blue,2 +Bionicle,Storm Beast,109,2016,Trans-Neon Green,4 +Bionicle,Storm Beast,109,2016,Dark Bluish Gray,5 +Bionicle,Quake Beast,102,2016,Red,1 +Bionicle,Quake Beast,102,2016,Reddish Brown,1 +Bionicle,Quake Beast,102,2016,Trans-Neon Green,4 +Bionicle,Quake Beast,102,2016,Trans-Purple,6 +Bionicle,Quake Beast,102,2016,Black,18 +Bionicle,Quake Beast,102,2016,Blue,1 +Bionicle,Quake Beast,102,2016,Dark Bluish Gray,11 +Bionicle,Quake Beast,102,2016,Dark Purple,1 +Bionicle,Quake Beast,102,2016,Light Bluish Gray,5 +Bionicle,Quake Beast,102,2016,Lime,1 +Bionicle,Quake Beast,102,2016,Pearl Dark Gray,2 +Bionicle,Ekimu the Mask Maker,94,2016,Pearl Dark Gray,2 +Bionicle,Ekimu the Mask Maker,94,2016,Dark Bluish Gray,10 +Bionicle,Ekimu the Mask Maker,94,2016,Dark Tan,1 +Bionicle,Ekimu the Mask Maker,94,2016,Flat Silver,1 +Bionicle,Ekimu the Mask Maker,94,2016,Light Bluish Gray,5 +Bionicle,Ekimu the Mask Maker,94,2016,Trans-Neon Green,1 +Bionicle,Ekimu the Mask Maker,94,2016,Pearl Gold,5 +Bionicle,Ekimu the Mask Maker,94,2016,Red,1 +Bionicle,Ekimu the Mask Maker,94,2016,Trans-Light Blue,7 +Bionicle,Ekimu the Mask Maker,94,2016,Black,14 +Bionicle,Ekimu the Mask Maker,94,2016,Blue,2 +Bionicle,Uxar Creature of Jungle,87,2016,Light Bluish Gray,4 +Bionicle,Uxar Creature of Jungle,87,2016,Lime,1 +Bionicle,Uxar Creature of Jungle,87,2016,Pearl Dark Gray,1 +Bionicle,Uxar Creature of Jungle,87,2016,Tan,1 +Bionicle,Uxar Creature of Jungle,87,2016,Trans-Bright Green,2 +Bionicle,Uxar Creature of Jungle,87,2016,Trans-Red,1 +Bionicle,Uxar Creature of Jungle,87,2016,Yellow,3 +Bionicle,Uxar Creature of Jungle,87,2016,Blue,2 +Bionicle,Uxar Creature of Jungle,87,2016,Black,5 +Bionicle,Uxar Creature of Jungle,87,2016,Bright Green,1 +Bionicle,Uxar Creature of Jungle,87,2016,Dark Bluish Gray,6 +Bionicle,Uxar Creature of Jungle,87,2016,Flat Silver,6 +Bionicle,Pohatu Uniter of Stone,85,2016,Trans-Light Blue,1 +Bionicle,Pohatu Uniter of Stone,85,2016,Tan,1 +Bionicle,Pohatu Uniter of Stone,85,2016,Dark Tan,3 +Bionicle,Pohatu Uniter of Stone,85,2016,Reddish Brown,2 +Bionicle,Pohatu Uniter of Stone,85,2016,Red,1 +Bionicle,Pohatu Uniter of Stone,85,2016,Pearl Dark Gray,1 +Bionicle,Pohatu Uniter of Stone,85,2016,Lime,1 +Bionicle,Pohatu Uniter of Stone,85,2016,Light Bluish Gray,3 +Bionicle,Pohatu Uniter of Stone,85,2016,Flat Silver,7 +Bionicle,Pohatu Uniter of Stone,85,2016,Trans-Neon Green,4 +Bionicle,Pohatu Uniter of Stone,85,2016,Dark Bluish Gray,8 +Bionicle,Pohatu Uniter of Stone,85,2016,Blue,2 +Bionicle,Pohatu Uniter of Stone,85,2016,Dark Orange,1 +Bionicle,Pohatu Uniter of Stone,85,2016,Black,9 +Bionicle,Ketar Creature of Stone,78,2016,Flat Silver,3 +Bionicle,Ketar Creature of Stone,78,2016,Black,9 +Bionicle,Ketar Creature of Stone,78,2016,Dark Bluish Gray,4 +Bionicle,Ketar Creature of Stone,78,2016,Dark Orange,1 +Bionicle,Ketar Creature of Stone,78,2016,Dark Tan,2 +Bionicle,Ketar Creature of Stone,78,2016,Trans-Red,1 +Bionicle,Ketar Creature of Stone,78,2016,Light Bluish Gray,7 +Bionicle,Ketar Creature of Stone,78,2016,Lime,1 +Bionicle,Ketar Creature of Stone,78,2016,Pearl Dark Gray,3 +Bionicle,Ketar Creature of Stone,78,2016,Red,1 +Bionicle,Ketar Creature of Stone,78,2016,Reddish Brown,1 +Bionicle,Ketar Creature of Stone,78,2016,Trans-Neon Green,1 +Bionicle,Ketar Creature of Stone,78,2016,Tan,2 +Bionicle,Ketar Creature of Stone,78,2016,Blue,1 +Bionicle,Gali Uniter of Water,72,2016,Light Bluish Gray,3 +Bionicle,Ikir Creature of Fire,72,2016,Trans-Dark Blue,1 +Bionicle,Ikir Creature of Fire,72,2016,Trans-Neon Orange,2 +Bionicle,Ikir Creature of Fire,72,2016,Trans-Red,1 +Bionicle,Ikir Creature of Fire,72,2016,Red,1 +Bionicle,Ikir Creature of Fire,72,2016,Pearl Gold,3 +Bionicle,Ikir Creature of Fire,72,2016,Pearl Dark Gray,2 +Bionicle,Ikir Creature of Fire,72,2016,Light Bluish Gray,11 +Bionicle,Gali Uniter of Water,72,2016,Black,13 +Bionicle,Ikir Creature of Fire,72,2016,Dark Bluish Gray,5 +Bionicle,Ikir Creature of Fire,72,2016,Blue,2 +Bionicle,Ikir Creature of Fire,72,2016,Black,4 +Bionicle,Gali Uniter of Water,72,2016,Trans-Light Blue,2 +Bionicle,Gali Uniter of Water,72,2016,Trans-Dark Blue,1 +Bionicle,Gali Uniter of Water,72,2016,Blue,5 +Bionicle,Gali Uniter of Water,72,2016,Pearl Dark Gray,2 +Bionicle,Gali Uniter of Water,72,2016,Orange,1 +Bionicle,Gali Uniter of Water,72,2016,Dark Bluish Gray,4 +Bionicle,Gali Uniter of Water,72,2016,Dark Tan,1 +Bionicle,Gali Uniter of Water,72,2016,Flat Silver,8 +Bionicle,Gali Uniter of Water,72,2016,Tan,1 +Bionicle,Ikir Creature of Fire,72,2016,Flat Silver,1 +Bionicle,Lewa Uniter of Jungle,65,2016,Yellow,2 +Bionicle,Lewa Uniter of Jungle,65,2016,Black,8 +Bionicle,Lewa Uniter of Jungle,65,2016,Red,1 +Bionicle,Lewa Uniter of Jungle,65,2016,Pearl Dark Gray,1 +Bionicle,Lewa Uniter of Jungle,65,2016,Flat Silver,7 +Bionicle,Lewa Uniter of Jungle,65,2016,Dark Bluish Gray,5 +Bionicle,Lewa Uniter of Jungle,65,2016,Bright Green,2 +Bionicle,Lewa Uniter of Jungle,65,2016,Blue,2 +Bionicle,Lewa Uniter of Jungle,65,2016,Trans-Light Blue,1 +Bionicle,Terak Creature of Earth,55,2016,Light Bluish Gray,5 +Bionicle,Terak Creature of Earth,55,2016,Pearl Gold,2 +Bionicle,Terak Creature of Earth,55,2016,Red,1 +Bionicle,Terak Creature of Earth,55,2016,Trans-Red,1 +Bionicle,Terak Creature of Earth,55,2016,Flat Silver,1 +Bionicle,Terak Creature of Earth,55,2016,Dark Purple,1 +Bionicle,Terak Creature of Earth,55,2016,Black,7 +Bionicle,Terak Creature of Earth,55,2016,Blue,1 +Bionicle,Terak Creature of Earth,55,2016,Dark Bluish Gray,5 +Bionicle,Terak Creature of Earth,55,2016,Pearl Dark Gray,2 +Bionicle,Ekimu Falcon,29,2016,Black,7 +Bionicle,Ekimu Falcon,29,2016,Trans-Light Blue,1 +Bionicle,Ekimu Falcon,29,2016,Reddish Brown,1 +Bionicle,Ekimu Falcon,29,2016,Pearl Gold,4 +Bionicle,Ekimu Falcon,29,2016,Light Bluish Gray,5 +Bionicle,Ekimu Falcon,29,2016,Dark Bluish Gray,4 +Bionicle,Scorpion,19,2016,White,1 +Bionicle,Scorpion,19,2016,Trans-Orange,1 +Bionicle,Scorpion,19,2016,Trans-Bright Green,1 +Bionicle,Scorpion,19,2016,Bright Green,1 +Bionicle,Scorpion,19,2016,Black,6 +Bionicle,Bionicle 2016 Accessory Pack,5,2016,Pearl Gold,1 +Bionicle,Bionicle 2016 Accessory Pack,5,2016,Dark Bluish Gray,2 +Bionicle,Bionicle 2016 Accessory Pack,5,2016,Black,1 +Black Falcons,Knight's Castle,416,1984,Yellow,2 +Black Falcons,Knight's Castle,416,1984,Black,34 +Black Falcons,Knight's Castle,416,1984,Blue,3 +Black Falcons,Knight's Castle,416,1984,Brown,4 +Black Falcons,Knight's Castle,416,1984,Dark Gray,3 +Black Falcons,Knight's Castle,416,1984,Green,7 +Black Falcons,Knight's Castle,416,1984,Light Gray,39 +Black Falcons,Knight's Castle,416,1984,Red,16 +Black Falcons,Knight's Castle,416,1984,White,4 +Black Falcons,Catapult,83,1984,Black,20 +Black Falcons,Catapult,83,1984,Brown,1 +Black Falcons,Catapult,83,1984,Dark Gray,2 +Black Falcons,Catapult,83,1984,Green,1 +Black Falcons,Catapult,83,1984,Light Gray,3 +Black Falcons,Catapult,83,1984,White,1 +Black Falcons,Catapult,83,1984,Yellow,2 +Black Falcons,Catapult,83,1984,Blue,1 +Black Falcons,Battering Ram,240,1987,Black,36 +Black Falcons,Battering Ram,240,1987,Blue,3 +Black Falcons,Battering Ram,240,1987,Brown,5 +Black Falcons,Battering Ram,240,1987,Dark Gray,2 +Black Falcons,Battering Ram,240,1987,Green,5 +Black Falcons,Battering Ram,240,1987,Light Gray,36 +Black Falcons,Battering Ram,240,1987,Red,4 +Black Falcons,Battering Ram,240,1987,White,1 +Black Falcons,Battering Ram,240,1987,Yellow,2 +Black Falcons,Castle Guard,52,1987,Black,13 +Black Falcons,Castle Guard,52,1987,Blue,3 +Black Falcons,Castle Guard,52,1987,Brown,2 +Black Falcons,Castle Guard,52,1987,Dark Gray,1 +Black Falcons,Castle Guard,52,1987,Green,1 +Black Falcons,Castle Guard,52,1987,Light Gray,1 +Black Falcons,Castle Guard,52,1987,Red,4 +Black Falcons,Castle Guard,52,1987,White,9 +Black Falcons,Castle Guard,52,1987,Yellow,1 +Black Knights,Black Monarch's Castle,688,1988,Black,54 +Black Knights,Black Monarch's Castle,688,1988,Blue,8 +Black Knights,Black Monarch's Castle,688,1988,Brown,10 +Black Knights,Black Monarch's Castle,688,1988,Dark Gray,5 +Black Knights,Black Monarch's Castle,688,1988,Green,2 +Black Knights,Black Monarch's Castle,688,1988,Light Gray,45 +Black Knights,Black Monarch's Castle,688,1988,Red,10 +Black Knights,Black Monarch's Castle,688,1988,White,3 +Black Knights,Black Monarch's Castle,688,1988,Yellow,4 +Black Knights,Stone Bomber,22,1998,Black,9 +Black Knights,Stone Bomber,22,1998,Brown,1 +Black Knights,Stone Bomber,22,1998,Dark Gray,1 +Black Knights,Stone Bomber,22,1998,Green,1 +Black Knights,Stone Bomber,22,1998,Light Gray,3 +Black Knights,Stone Bomber,22,1998,Red,1 +Black Knights,Stone Bomber,22,1998,Yellow,1 +Blacktron I,Renegade,315,1987,Trans-Yellow,1 +Blacktron I,Renegade,315,1987,Black,79 +Blacktron I,Renegade,315,1987,Trans-Red,4 +Blacktron I,Renegade,315,1987,Yellow,17 +Blacktron I,Battrax,284,1987,Black,65 +Blacktron I,Battrax,284,1987,Light Gray,2 +Blacktron I,Battrax,284,1987,Trans-Red,4 +Blacktron I,Battrax,284,1987,Trans-Yellow,2 +Blacktron I,Battrax,284,1987,Yellow,14 +Blacktron I,Invader,159,1987,Black,54 +Blacktron I,Invader,159,1987,Light Gray,3 +Blacktron I,Invader,159,1987,Trans-Green,1 +Blacktron I,Invader,159,1987,Trans-Yellow,2 +Blacktron I,Invader,159,1987,Yellow,11 +Blacktron I,Invader,159,1987,Trans-Red,5 +Blacktron I,Meteor Monitor,32,1990,Black,10 +Blacktron I,Meteor Monitor,32,1990,Trans-Red,2 +Blacktron I,Meteor Monitor,32,1990,White,5 +Blacktron I,Meteor Monitor,32,1990,Yellow,1 +Blacktron II,Alpha Centauri Outpost,406,1991,Black,80 +Blacktron II,Alpha Centauri Outpost,406,1991,Trans-Green,1 +Blacktron II,Alpha Centauri Outpost,406,1991,Trans-Neon Green,9 +Blacktron II,Alpha Centauri Outpost,406,1991,Trans-Red,4 +Blacktron II,Alpha Centauri Outpost,406,1991,White,38 +Blacktron II,Alpha Centauri Outpost,406,1991,Yellow,1 +Blacktron II,Aerial Intruder,267,1991,Black,56 +Blacktron II,Aerial Intruder,267,1991,Trans-Neon Green,6 +Blacktron II,Aerial Intruder,267,1991,White,28 +Blacktron II,Aerial Intruder,267,1991,Yellow,1 +Blacktron II,Spectral Starguider,212,1991,Black,52 +Blacktron II,Spectral Starguider,212,1991,Light Gray,6 +Blacktron II,Spectral Starguider,212,1991,Trans-Neon Green,4 +Blacktron II,Spectral Starguider,212,1991,White,31 +Blacktron II,Spectral Starguider,212,1991,Yellow,1 +Blacktron II,Allied Avenger,100,1991,Black,31 +Blacktron II,Allied Avenger,100,1991,Trans-Neon Green,4 +Blacktron II,Allied Avenger,100,1991,White,15 +Blacktron II,Allied Avenger,100,1991,Yellow,1 +Blacktron II,Sub Orbital Guardian,75,1991,Light Gray,1 +Blacktron II,Sub Orbital Guardian,75,1991,Trans-Neon Green,6 +Blacktron II,Sub Orbital Guardian,75,1991,White,12 +Blacktron II,Sub Orbital Guardian,75,1991,Yellow,1 +Blacktron II,Sub Orbital Guardian,75,1991,Black,22 +Blacktron II,Super Nova II,42,1991,Black,17 +Blacktron II,Super Nova II,42,1991,Trans-Neon Green,4 +Blacktron II,Super Nova II,42,1991,White,9 +Blacktron II,Super Nova II,42,1991,Yellow,1 +Blacktron II,Tri-Wheeled Tyrax,38,1991,Black,15 +Blacktron II,Tri-Wheeled Tyrax,38,1991,Trans-Neon Green,3 +Blacktron II,Tri-Wheeled Tyrax,38,1991,White,9 +Blacktron II,Tri-Wheeled Tyrax,38,1991,Yellow,1 +Blacktron II,2-Pilot Craft,34,1991,Trans-Neon Green,3 +Blacktron II,2-Pilot Craft,34,1991,White,6 +Blacktron II,2-Pilot Craft,34,1991,Yellow,1 +Blacktron II,2-Pilot Craft,34,1991,Black,9 +Blacktron II,Grid Trekkor,25,1991,Black,8 +Blacktron II,Grid Trekkor,25,1991,Trans-Neon Green,4 +Blacktron II,Grid Trekkor,25,1991,White,6 +Blacktron II,Grid Trekkor,25,1991,Yellow,1 +Blacktron II,Super Model Building Instruction,1,1993,[No Color],1 +Boat,Tanker,111,1973,Blue,2 +Boat,Tanker,111,1973,Light Gray,2 +Boat,Tanker,111,1973,Red,7 +Boat,Tanker,111,1973,Trans-Clear,3 +Boat,Tanker,111,1973,White,9 +Boat,Tanker,111,1973,Yellow,3 +Boat,Tanker,111,1973,Black,6 +Boat,Ferry,82,1973,Black,4 +Boat,Ferry,82,1973,Blue,1 +Boat,Ferry,82,1973,Red,13 +Boat,Ferry,82,1973,Trans-Clear,3 +Boat,Ferry,82,1973,White,4 +Boat,Ferry,82,1973,Yellow,5 +Boat,Tug,45,1973,Black,6 +Boat,Tug,45,1973,Blue,6 +Boat,Tug,45,1973,Light Gray,1 +Boat,Tug,45,1973,Red,5 +Boat,Tug,45,1973,Trans-Clear,2 +Boat,Tug,45,1973,White,1 +Boat,Tug,45,1973,Yellow,2 +Boat,Ships - 247 elements and 1 poster,238,1985,Black,5 +Boat,Ships - 247 elements and 1 poster,238,1985,Blue,9 +Boat,Ships - 247 elements and 1 poster,238,1985,Red,7 +Boat,Ships - 247 elements and 1 poster,238,1985,Trans-Clear,2 +Boat,Ships - 247 elements and 1 poster,238,1985,Trans-Green,1 +Boat,Ships - 247 elements and 1 poster,238,1985,Trans-Red,1 +Boat,Ships - 247 elements and 1 poster,238,1985,Trans-Yellow,1 +Boat,Ships - 247 elements and 1 poster,238,1985,White,18 +Boat,Ships - 247 elements and 1 poster,238,1985,Yellow,6 +Boat,C26 Sea Cutter,193,1996,Black,5 +Boat,C26 Sea Cutter,193,1996,Blue,4 +Boat,C26 Sea Cutter,193,1996,Chrome Silver,1 +Boat,C26 Sea Cutter,193,1996,Light Gray,17 +Boat,C26 Sea Cutter,193,1996,Red,17 +Boat,C26 Sea Cutter,193,1996,Trans-Green,2 +Boat,C26 Sea Cutter,193,1996,Trans-Light Blue,3 +Boat,C26 Sea Cutter,193,1996,Trans-Red,3 +Boat,C26 Sea Cutter,193,1996,Trans-Yellow,2 +Boat,C26 Sea Cutter,193,1996,White,36 +Boat,C26 Sea Cutter,193,1996,Yellow,6 +Boat,Wave Cops,99,1996,Light Gray,11 +Boat,Wave Cops,99,1996,[No Color],1 +Boat,Wave Cops,99,1996,Black,14 +Boat,Wave Cops,99,1996,Blue,1 +Boat,Wave Cops,99,1996,Red,13 +Boat,Wave Cops,99,1996,Trans-Dark Blue,2 +Boat,Wave Cops,99,1996,Trans-Green,1 +Boat,Wave Cops,99,1996,Trans-Light Blue,2 +Boat,Wave Cops,99,1996,Trans-Red,2 +Boat,Wave Cops,99,1996,Trans-Yellow,1 +Boat,Wave Cops,99,1996,White,18 +Boat,Wave Cops,99,1996,Yellow,2 +Boat,Riptide Racer,53,1996,Black,3 +Boat,Riptide Racer,53,1996,Blue,4 +Boat,Riptide Racer,53,1996,Chrome Silver,1 +Boat,Riptide Racer,53,1996,Light Gray,1 +Boat,Riptide Racer,53,1996,Red,11 +Boat,Riptide Racer,53,1996,Trans-Green,1 +Boat,Riptide Racer,53,1996,Trans-Light Blue,2 +Boat,Riptide Racer,53,1996,Trans-Red,1 +Boat,Riptide Racer,53,1996,White,9 +Boat,Riptide Racer,53,1996,Yellow,2 +Boat,Riptide Racer,53,1996,[No Color],1 +Bohrok,Gahlok,41,2002,Black,6 +Bohrok,Gahlok,41,2002,Blue,4 +Bohrok,Gahlok,41,2002,Bright Green,1 +Bohrok,Gahlok,41,2002,Dark Gray,1 +Bohrok,Gahlok,41,2002,Light Gray,4 +Bohrok,Gahlok,41,2002,Medium Blue,1 +Bohrok,Gahlok,41,2002,Orange,1 +Bohrok,Gahlok,41,2002,Trans-Neon Orange,1 +Bohrok,Gahlok,41,2002,White,1 +Bohrok,Kohrak,41,2002,Black,6 +Bohrok,Kohrak,41,2002,Bright Green,1 +Bohrok,Kohrak,41,2002,Dark Gray,1 +Bohrok,Kohrak,41,2002,Light Gray,5 +Bohrok,Kohrak,41,2002,Medium Blue,1 +Bohrok,Kohrak,41,2002,Trans-Light Blue,1 +Bohrok,Kohrak,41,2002,White,5 +Bohrok,Lehvak,41,2002,Black,6 +Bohrok,Lehvak,41,2002,Bright Green,1 +Bohrok,Lehvak,41,2002,Dark Gray,1 +Bohrok,Lehvak,41,2002,Green,4 +Bohrok,Lehvak,41,2002,Light Gray,4 +Bohrok,Lehvak,41,2002,Lime,1 +Bohrok,Lehvak,41,2002,Red,1 +Bohrok,Lehvak,41,2002,Trans-Red,1 +Bohrok,Lehvak,41,2002,White,1 +Bohrok,Nuhvok,41,2002,Black,10 +Bohrok,Nuhvok,41,2002,Bright Green,1 +Bohrok,Nuhvok,41,2002,Dark Gray,2 +Bohrok,Nuhvok,41,2002,Light Gray,4 +Bohrok,Nuhvok,41,2002,Lime,1 +Bohrok,Nuhvok,41,2002,Trans-Neon Green,1 +Bohrok,Nuhvok,41,2002,White,1 +Bohrok,Pahrak,41,2002,Black,6 +Bohrok,Pahrak,41,2002,Bright Green,1 +Bohrok,Pahrak,41,2002,Brown,4 +Bohrok,Pahrak,41,2002,Dark Gray,1 +Bohrok,Pahrak,41,2002,Green,1 +Bohrok,Pahrak,41,2002,Light Gray,4 +Bohrok,Pahrak,41,2002,Tan,1 +Bohrok,Pahrak,41,2002,Trans-Green,1 +Bohrok,Pahrak,41,2002,White,1 +Bohrok,Tahnok,41,2002,Black,6 +Bohrok,Tahnok,41,2002,Blue,1 +Bohrok,Tahnok,41,2002,Bright Green,1 +Bohrok,Tahnok,41,2002,Dark Gray,1 +Bohrok,Tahnok,41,2002,Light Gray,4 +Bohrok,Tahnok,41,2002,Orange,1 +Bohrok,Tahnok,41,2002,Red,4 +Bohrok,Tahnok,41,2002,Trans-Dark Blue,1 +Bohrok,Tahnok,41,2002,White,1 +Bohrok Va,Kohrak Va,28,2002,Black,10 +Bohrok Va,Lehvak Va,28,2002,Black,10 +Bohrok Va,Lehvak Va,28,2002,Dark Gray,1 +Bohrok Va,Lehvak Va,28,2002,Green,3 +Bohrok Va,Lehvak Va,28,2002,Light Gray,1 +Bohrok Va,Lehvak Va,28,2002,Lime,2 +Bohrok Va,Lehvak Va,28,2002,Trans-Red,1 +Bohrok Va,Kohrak Va,28,2002,Light Gray,1 +Bohrok Va,Kohrak Va,28,2002,Trans-Light Blue,1 +Bohrok Va,Kohrak Va,28,2002,White,6 +Bohrok Va,Tahnok Va,27,2002,Yellow,1 +Bohrok Va,Pahrak Va,27,2002,Brown,3 +Bohrok Va,Pahrak Va,27,2002,Black,10 +Bohrok Va,Tahnok Va (Kabaya Promotional),27,2002,Yellow,1 +Bohrok Va,Pahrak Va,27,2002,Tan,4 +Bohrok Va,Pahrak Va,27,2002,Trans-Green,1 +Bohrok Va,Tahnok Va,27,2002,Black,10 +Bohrok Va,Tahnok Va,27,2002,Orange,2 +Bohrok Va,Tahnok Va,27,2002,Red,4 +Bohrok Va,Tahnok Va,27,2002,Trans-Dark Blue,1 +Bohrok Va,Tahnok Va (Kabaya Promotional),27,2002,Black,10 +Bohrok Va,Tahnok Va (Kabaya Promotional),27,2002,Orange,2 +Bohrok Va,Tahnok Va (Kabaya Promotional),27,2002,Red,4 +Bohrok Va,Tahnok Va (Kabaya Promotional),27,2002,Trans-Dark Blue,1 +Bohrok Va,Nuhvok Va,26,2002,Black,13 +Bohrok Va,Nuhvok Va,26,2002,Dark Gray,3 +Bohrok Va,Nuhvok Va (Kabaya Promotional),26,2002,Black,13 +Bohrok Va,Nuhvok Va (Kabaya Promotional),26,2002,Dark Gray,3 +Bohrok Va,Gahlok Va,26,2002,Blue,4 +Bohrok Va,Gahlok Va,26,2002,Medium Blue,2 +Bohrok Va,Gahlok Va,26,2002,Purple,1 +Bohrok Va,Gahlok Va,26,2002,Trans-Neon Orange,1 +Bohrok Va,Gahlok Va (Kabaya Promotional),26,2002,Blue,4 +Bohrok Va,Gahlok Va (Kabaya Promotional),26,2002,Medium Blue,2 +Bohrok Va,Nuhvok Va,26,2002,Trans-Neon Green,1 +Bohrok Va,Gahlok Va (Kabaya Promotional),26,2002,Purple,1 +Bohrok Va,Gahlok Va (Kabaya Promotional),26,2002,Trans-Neon Orange,1 +Bohrok Va,Gahlok Va (Kabaya Promotional),26,2002,Black,10 +Bohrok Va,Gahlok Va,26,2002,Black,10 +Bohrok Va,Nuhvok Va (Kabaya Promotional),26,2002,Trans-Neon Green,1 +Bohrok Va,Lehvak Va (Kabaya Promotional),25,2002,Light Gray,1 +Bohrok Va,Lehvak Va (Kabaya Promotional),25,2002,Lime,1 +Bohrok Va,Lehvak Va (Kabaya Promotional),25,2002,Trans-Red,1 +Bohrok Va,Lehvak Va (Kabaya Promotional),25,2002,Green,3 +Bohrok Va,Lehvak Va (Kabaya Promotional),25,2002,Dark Gray,1 +Bohrok Va,Lehvak Va (Kabaya Promotional),25,2002,Black,8 +Bohrok-Kal,Gahlok-Kal,42,2003,[No Color],1 +Bohrok-Kal,Gahlok-Kal,42,2003,Black,3 +Bohrok-Kal,Gahlok-Kal,42,2003,Blue,2 +Bohrok-Kal,Gahlok-Kal,42,2003,Bright Green,1 +Bohrok-Kal,Gahlok-Kal,42,2003,Dark Gray,1 +Bohrok-Kal,Gahlok-Kal,42,2003,Flat Silver,1 +Bohrok-Kal,Gahlok-Kal,42,2003,Light Gray,6 +Bohrok-Kal,Gahlok-Kal,42,2003,Metal Blue,1 +Bohrok-Kal,Gahlok-Kal,42,2003,Pearl Light Gray,3 +Bohrok-Kal,Gahlok-Kal,42,2003,Trans-Neon Orange,1 +Bohrok-Kal,Gahlok-Kal,42,2003,White,1 +Bohrok-Kal,Kohrak-Kal,42,2003,[No Color],1 +Bohrok-Kal,Kohrak-Kal,42,2003,Black,3 +Bohrok-Kal,Kohrak-Kal,42,2003,Bright Green,1 +Bohrok-Kal,Kohrak-Kal,42,2003,Dark Gray,1 +Bohrok-Kal,Kohrak-Kal,42,2003,Flat Silver,1 +Bohrok-Kal,Kohrak-Kal,42,2003,Light Gray,6 +Bohrok-Kal,Kohrak-Kal,42,2003,Pearl Light Gray,3 +Bohrok-Kal,Kohrak-Kal,42,2003,Pearl Very Light Gray,1 +Bohrok-Kal,Kohrak-Kal,42,2003,Trans-Light Blue,1 +Bohrok-Kal,Kohrak-Kal,42,2003,White,3 +Bohrok-Kal,Lehvak-Kal,42,2003,[No Color],1 +Bohrok-Kal,Lehvak-Kal,42,2003,Black,3 +Bohrok-Kal,Lehvak-Kal,42,2003,Bright Green,1 +Bohrok-Kal,Lehvak-Kal,42,2003,Dark Gray,1 +Bohrok-Kal,Lehvak-Kal,42,2003,Flat Silver,1 +Bohrok-Kal,Lehvak-Kal,42,2003,Green,2 +Bohrok-Kal,Lehvak-Kal,42,2003,Light Gray,6 +Bohrok-Kal,Lehvak-Kal,42,2003,Metallic Green,1 +Bohrok-Kal,Lehvak-Kal,42,2003,Pearl Light Gray,3 +Bohrok-Kal,Lehvak-Kal,42,2003,Trans-Red,1 +Bohrok-Kal,Lehvak-Kal,42,2003,White,1 +Bohrok-Kal,Nuhvok-Kal,42,2003,Black,5 +Bohrok-Kal,Nuhvok-Kal,42,2003,Bright Green,1 +Bohrok-Kal,Nuhvok-Kal,42,2003,Copper,1 +Bohrok-Kal,Nuhvok-Kal,42,2003,Dark Gray,1 +Bohrok-Kal,Nuhvok-Kal,42,2003,Flat Silver,1 +Bohrok-Kal,Nuhvok-Kal,42,2003,Light Gray,6 +Bohrok-Kal,Nuhvok-Kal,42,2003,Pearl Light Gray,3 +Bohrok-Kal,Nuhvok-Kal,42,2003,Royal Blue,1 +Bohrok-Kal,Nuhvok-Kal,42,2003,Trans-Neon Green,1 +Bohrok-Kal,Nuhvok-Kal,42,2003,White,1 +Bohrok-Kal,Pahrak-Kal,42,2003,[No Color],1 +Bohrok-Kal,Pahrak-Kal,42,2003,Black,3 +Bohrok-Kal,Pahrak-Kal,42,2003,Bright Green,1 +Bohrok-Kal,Pahrak-Kal,42,2003,Brown,2 +Bohrok-Kal,Pahrak-Kal,42,2003,Dark Gray,1 +Bohrok-Kal,Pahrak-Kal,42,2003,Flat Silver,1 +Bohrok-Kal,Pahrak-Kal,42,2003,Green,1 +Bohrok-Kal,Pahrak-Kal,42,2003,Light Gray,6 +Bohrok-Kal,Pahrak-Kal,42,2003,Pearl Dark Gray,1 +Bohrok-Kal,Pahrak-Kal,42,2003,Pearl Light Gray,3 +Bohrok-Kal,Pahrak-Kal,42,2003,Trans-Green,1 +Bohrok-Kal,Pahrak-Kal,42,2003,White,1 +Bohrok-Kal,Tahnok-Kal,42,2003,[No Color],1 +Bohrok-Kal,Tahnok-Kal,42,2003,Black,3 +Bohrok-Kal,Tahnok-Kal,42,2003,Bright Green,1 +Bohrok-Kal,Tahnok-Kal,42,2003,Dark Gray,1 +Bohrok-Kal,Tahnok-Kal,42,2003,Flat Dark Gold,1 +Bohrok-Kal,Tahnok-Kal,42,2003,Flat Silver,1 +Bohrok-Kal,Tahnok-Kal,42,2003,Light Gray,6 +Bohrok-Kal,Tahnok-Kal,42,2003,Pearl Light Gray,3 +Bohrok-Kal,Tahnok-Kal,42,2003,Red,2 +Bohrok-Kal,Tahnok-Kal,42,2003,Trans-Dark Blue,1 +Bohrok-Kal,Tahnok-Kal,42,2003,White,1 +Books,The LEGO Batman Movie: Chaos in Gotham City,6,2017,Dark Brown,2 +Books,The LEGO Batman Movie: Chaos in Gotham City,6,2017,Dark Green,1 +Books,The LEGO Batman Movie: Chaos in Gotham City,6,2017,Flat Silver,1 +Books,The LEGO Batman Movie: Chaos in Gotham City,6,2017,Light Flesh,2 +Brickheadz,Iron Man & Cpt. America,174,2016,Light Bluish Gray,3 +Brickheadz,Iron Man & Cpt. America,174,2016,Red,22 +Brickheadz,Iron Man & Cpt. America,174,2016,Trans-Light Blue,3 +Brickheadz,Iron Man & Cpt. America,174,2016,Tan,5 +Brickheadz,Iron Man & Cpt. America,174,2016,Black,5 +Brickheadz,Iron Man & Cpt. America,174,2016,Trans-Clear,1 +Brickheadz,Iron Man & Cpt. America,174,2016,Blue,14 +Brickheadz,Iron Man & Cpt. America,174,2016,Bright Pink,1 +Brickheadz,Iron Man & Cpt. America,174,2016,Dark Bluish Gray,1 +Brickheadz,Iron Man & Cpt. America,174,2016,White,4 +Brickheadz,Iron Man & Cpt. America,174,2016,Yellow,8 +Brickheadz,Black Panther & Dr. Strange,167,2016,Dark Bluish Gray,4 +Brickheadz,Black Panther & Dr. Strange,167,2016,Red,15 +Brickheadz,Black Panther & Dr. Strange,167,2016,Tan,7 +Brickheadz,Black Panther & Dr. Strange,167,2016,Trans-Clear,1 +Brickheadz,Black Panther & Dr. Strange,167,2016,Trans-Neon Orange,1 +Brickheadz,Black Panther & Dr. Strange,167,2016,Trans-Yellow,1 +Brickheadz,Black Panther & Dr. Strange,167,2016,White,3 +Brickheadz,Black Panther & Dr. Strange,167,2016,Yellow,7 +Brickheadz,Black Panther & Dr. Strange,167,2016,Light Bluish Gray,2 +Brickheadz,Black Panther & Dr. Strange,167,2016,Bright Pink,1 +Brickheadz,Black Panther & Dr. Strange,167,2016,Black,24 +Brickheadz,Black Panther & Dr. Strange,167,2016,Blue,7 +Brickheadz,The Joker,151,2017,Yellow,2 +Brickheadz,The Joker,151,2017,Bright Pink,1 +Brickheadz,The Joker,151,2017,Bright Light Orange,3 +Brickheadz,The Joker,151,2017,Black,6 +Brickheadz,The Joker,151,2017,Bright Light Blue,1 +Brickheadz,The Joker,151,2017,White,11 +Brickheadz,The Joker,151,2017,Dark Bluish Gray,1 +Brickheadz,The Joker,151,2017,Dark Purple,7 +Brickheadz,The Joker,151,2017,Green,17 +Brickheadz,The Joker,151,2017,Light Bluish Gray,3 +Brickheadz,The Joker,151,2017,Red,1 +Brickheadz,Black Widow,143,2017,Dark Bluish Gray,6 +Brickheadz,Black Widow,143,2017,Bright Pink,1 +Brickheadz,Black Widow,143,2017,Blue,1 +Brickheadz,Black Widow,143,2017,Black,17 +Brickheadz,Black Widow,143,2017,Dark Orange,14 +Brickheadz,Black Widow,143,2017,Light Bluish Gray,2 +Brickheadz,Black Widow,143,2017,Orange,1 +Brickheadz,Black Widow,143,2017,Red,1 +Brickheadz,Black Widow,143,2017,White,1 +Brickheadz,Black Widow,143,2017,Yellow,1 +Brickheadz,Black Widow,143,2017,Tan,6 +Brickheadz,Belle,139,2017,Bright Pink,1 +Brickheadz,Belle,139,2017,Bright Light Yellow,5 +Brickheadz,Belle,139,2017,Bright Green,1 +Brickheadz,Belle,139,2017,Blue,1 +Brickheadz,Belle,139,2017,Light Bluish Gray,1 +Brickheadz,Belle,139,2017,Black,6 +Brickheadz,Belle,139,2017,White,2 +Brickheadz,Belle,139,2017,Tan,8 +Brickheadz,Belle,139,2017,Reddish Brown,21 +Brickheadz,Belle,139,2017,Red,2 +Brickheadz,Belle,139,2017,Orange,1 +Brickheadz,Belle,139,2017,Yellow,6 +Brickheadz,Captain Armando Salazar,118,2017,Light Bluish Gray,6 +Brickheadz,Captain Armando Salazar,118,2017,Trans-Green,1 +Brickheadz,Captain Armando Salazar,118,2017,Trans-Neon Green,1 +Brickheadz,Captain Armando Salazar,118,2017,White,10 +Brickheadz,Captain Armando Salazar,118,2017,Dark Bluish Gray,12 +Brickheadz,Captain Armando Salazar,118,2017,Black,19 +Brickheadz,Captain Armando Salazar,118,2017,Flat Silver,1 +Brickheadz,Captain Armando Salazar,118,2017,Dark Tan,1 +Brickheadz,Beast,116,2017,Bright Pink,1 +Brickheadz,Beast,116,2017,Dark Blue,2 +Brickheadz,Beast,116,2017,Dark Brown,1 +Brickheadz,Beast,116,2017,Dark Orange,12 +Brickheadz,Beast,116,2017,Light Bluish Gray,2 +Brickheadz,Beast,116,2017,Medium Dark Flesh,1 +Brickheadz,Beast,116,2017,Orange,1 +Brickheadz,Beast,116,2017,Reddish Brown,5 +Brickheadz,Beast,116,2017,White,1 +Brickheadz,Beast,116,2017,Yellow,5 +Brickheadz,Beast,116,2017,Black,5 +Brickheadz,Beast,116,2017,Blue,11 +Brickheadz,Captain Jack Sparrow,109,2017,White,8 +Brickheadz,Captain Jack Sparrow,109,2017,Orange,1 +Brickheadz,Captain Jack Sparrow,109,2017,Tan,4 +Brickheadz,Captain Jack Sparrow,109,2017,Light Bluish Gray,3 +Brickheadz,Captain Jack Sparrow,109,2017,Dark Tan,5 +Brickheadz,Captain Jack Sparrow,109,2017,Dark Red,7 +Brickheadz,Captain Jack Sparrow,109,2017,Black,16 +Brickheadz,Captain Jack Sparrow,109,2017,Blue,1 +Brickheadz,Captain Jack Sparrow,109,2017,Bright Pink,1 +Brickheadz,Captain Jack Sparrow,109,2017,Dark Blue,5 +Brickheadz,Captain Jack Sparrow,109,2017,Dark Bluish Gray,2 +Brickheadz,Captain Jack Sparrow,109,2017,Dark Brown,1 +Brickheadz,Robin,101,2017,Tan,5 +Brickheadz,Robin,101,2017,Yellow,7 +Brickheadz,Robin,101,2017,Red,4 +Brickheadz,Robin,101,2017,Reddish Brown,11 +Brickheadz,Robin,101,2017,Bright Pink,1 +Brickheadz,Robin,101,2017,Black,9 +Brickheadz,Robin,101,2017,Dark Bluish Gray,1 +Brickheadz,Robin,101,2017,Green,4 +Brickheadz,Robin,101,2017,Light Bluish Gray,3 +Brickheadz,Batgirl,99,2017,Yellow,12 +Brickheadz,Batgirl,99,2017,Light Bluish Gray,3 +Brickheadz,Batgirl,99,2017,Bright Pink,1 +Brickheadz,Batgirl,99,2017,Dark Bluish Gray,1 +Brickheadz,Batgirl,99,2017,Medium Dark Flesh,1 +Brickheadz,Batgirl,99,2017,Dark Red,7 +Brickheadz,Batgirl,99,2017,Dark Purple,13 +Brickheadz,Batgirl,99,2017,Black,5 +Brickheadz,Iron Man,96,2017,Bright Light Orange,7 +Brickheadz,Iron Man,96,2017,Bright Pink,1 +Brickheadz,Iron Man,96,2017,Dark Bluish Gray,1 +Brickheadz,Iron Man,96,2017,Dark Red,18 +Brickheadz,Iron Man,96,2017,Light Bluish Gray,1 +Brickheadz,Iron Man,96,2017,Orange,1 +Brickheadz,Iron Man,96,2017,Red,1 +Brickheadz,Iron Man,96,2017,Trans-Light Blue,1 +Brickheadz,Iron Man,96,2017,Black,4 +Brickheadz,Iron Man,96,2017,Lime,1 +Brickheadz,The Hulk,93,2017,Black,9 +Brickheadz,The Hulk,93,2017,Bright Pink,1 +Brickheadz,The Hulk,93,2017,Green,14 +Brickheadz,The Hulk,93,2017,Light Bluish Gray,2 +Brickheadz,The Hulk,93,2017,Red,1 +Brickheadz,The Hulk,93,2017,Dark Purple,3 +Brickheadz,Batman,91,2017,Red,1 +Brickheadz,Batman,91,2017,Yellow,5 +Brickheadz,Batman,91,2017,Tan,1 +Brickheadz,Batman,91,2017,Light Bluish Gray,1 +Brickheadz,Batman,91,2017,Glow in Dark White,1 +Brickheadz,Batman,91,2017,Dark Bluish Gray,1 +Brickheadz,Batman,91,2017,Bright Pink,1 +Brickheadz,Batman,91,2017,Black,23 +Brickheadz,Captain America,79,2017,Light Bluish Gray,1 +Brickheadz,Captain America,79,2017,Orange,1 +Brickheadz,Captain America,79,2017,Red,1 +Brickheadz,Captain America,79,2017,Reddish Brown,7 +Brickheadz,Captain America,79,2017,Tan,3 +Brickheadz,Captain America,79,2017,White,2 +Brickheadz,Captain America,79,2017,Yellow,1 +Brickheadz,Captain America,79,2017,Dark Tan,4 +Brickheadz,Captain America,79,2017,Black,6 +Brickheadz,Captain America,79,2017,Bright Pink,1 +Brickheadz,Captain America,79,2017,Dark Blue,13 +Bricktober,Bricktober Town Hall,186,2014,Bright Green,1 +Bricktober,Bricktober Town Hall,186,2014,Dark Bluish Gray,2 +Bricktober,Bricktober Town Hall,186,2014,Green,2 +Bricktober,Bricktober Town Hall,186,2014,Light Bluish Gray,9 +Bricktober,Bricktober Town Hall,186,2014,Reddish Brown,1 +Bricktober,Bricktober Town Hall,186,2014,Sand Green,1 +Bricktober,Bricktober Town Hall,186,2014,Tan,11 +Bricktober,Bricktober Town Hall,186,2014,Trans-Clear,4 +Bricktober,Bricktober Town Hall,186,2014,Trans-Red,1 +Bricktober,Bricktober Town Hall,186,2014,White,7 +Bricktober,Bricktober Town Hall,186,2014,Blue,1 +Bricktober,Bricktober Town Hall,186,2014,Black,5 +Bricktober,Bricktober Town Hall,186,2014,Red,6 +Bricktober,Bricktober Town Hall,186,2014,Yellow,3 +Bricktober,Bricktober Fire Station,175,2014,Black,11 +Bricktober,Bricktober Fire Station,175,2014,Blue,1 +Bricktober,Bricktober Fire Station,175,2014,Bright Green,1 +Bricktober,Bricktober Fire Station,175,2014,Dark Bluish Gray,8 +Bricktober,Bricktober Fire Station,175,2014,Green,3 +Bricktober,Bricktober Fire Station,175,2014,Light Bluish Gray,8 +Bricktober,Bricktober Fire Station,175,2014,Red,12 +Bricktober,Bricktober Fire Station,175,2014,Reddish Brown,1 +Bricktober,Bricktober Fire Station,175,2014,Tan,1 +Bricktober,Bricktober Fire Station,175,2014,White,11 +Bricktober,Bricktober Fire Station,175,2014,Yellow,3 +Bricktober,Bricktober Fire Station,175,2014,Trans-Dark Blue,1 +Bricktober,Bricktober Fire Station,175,2014,Trans-Light Blue,1 +Bricktober,Bricktober Fire Station,175,2014,Trans-Yellow,1 +Bricktober,Bricktober Fire Station,175,2014,Trans-Clear,3 +Bricktober,Bricktober Theater,164,2014,Blue,1 +Bricktober,Bricktober Theater,164,2014,Green,2 +Bricktober,Bricktober Theater,164,2014,Dark Purple,1 +Bricktober,Bricktober Theater,164,2014,Dark Bluish Gray,6 +Bricktober,Bricktober Theater,164,2014,Light Bluish Gray,7 +Bricktober,Bricktober Theater,164,2014,Medium Blue,2 +Bricktober,Bricktober Theater,164,2014,Red,1 +Bricktober,Bricktober Theater,164,2014,Reddish Brown,1 +Bricktober,Bricktober Theater,164,2014,Bright Green,1 +Bricktober,Bricktober Theater,164,2014,Tan,1 +Bricktober,Bricktober Theater,164,2014,Trans-Clear,6 +Bricktober,Bricktober Theater,164,2014,Trans-Yellow,1 +Bricktober,Bricktober Theater,164,2014,White,6 +Bricktober,Bricktober Theater,164,2014,Dark Tan,3 +Bricktober,Bricktober Theater,164,2014,Black,9 +Bricktober,Bricktober Theater,164,2014,Dark Blue,4 +Bricktober,Bricktober Pizza Place,139,2014,Flat Silver,3 +Bricktober,Bricktober Pizza Place,139,2014,Black,5 +Bricktober,Bricktober Pizza Place,139,2014,Bright Green,1 +Bricktober,Bricktober Pizza Place,139,2014,Dark Bluish Gray,2 +Bricktober,Bricktober Pizza Place,139,2014,Green,3 +Bricktober,Bricktober Pizza Place,139,2014,Light Bluish Gray,5 +Bricktober,Bricktober Pizza Place,139,2014,Medium Dark Flesh,3 +Bricktober,Bricktober Pizza Place,139,2014,Orange,1 +Bricktober,Bricktober Pizza Place,139,2014,Red,6 +Bricktober,Bricktober Pizza Place,139,2014,Reddish Brown,2 +Bricktober,Bricktober Pizza Place,139,2014,Trans-Clear,4 +Bricktober,Bricktober Pizza Place,139,2014,White,6 +Bricktober,Bricktober Pizza Place,139,2014,Yellow,3 +Bricktober,Bricktober Bakery,234,2015,Black,7 +Bricktober,Bricktober Bakery,234,2015,Bright Green,1 +Bricktober,Bricktober Bakery,234,2015,Bright Pink,1 +Bricktober,Bricktober Bakery,234,2015,Dark Blue,3 +Bricktober,Bricktober Bakery,234,2015,Dark Bluish Gray,3 +Bricktober,Bricktober Bakery,234,2015,Dark Orange,1 +Bricktober,Bricktober Bakery,234,2015,Dark Red,5 +Bricktober,Bricktober Bakery,234,2015,Dark Tan,6 +Bricktober,Bricktober Bakery,234,2015,Green,4 +Bricktober,Bricktober Bakery,234,2015,Light Bluish Gray,5 +Bricktober,Bricktober Bakery,234,2015,Lime,2 +Bricktober,Bricktober Bakery,234,2015,Medium Azure,1 +Bricktober,Bricktober Bakery,234,2015,Red,1 +Bricktober,Bricktober Bakery,234,2015,Reddish Brown,3 +Bricktober,Bricktober Bakery,234,2015,Sand Blue,1 +Bricktober,Bricktober Bakery,234,2015,Sand Green,2 +Bricktober,Bricktober Bakery,234,2015,Tan,7 +Bricktober,Bricktober Bakery,234,2015,Trans-Clear,7 +Bricktober,Bricktober Bakery,234,2015,White,7 +Bricktober,Bricktober Bakery,234,2015,Yellowish Green,1 +Bricktober,Bricktober Hotel,203,2015,Black,5 +Bricktober,Bricktober Hotel,203,2015,Bright Green,1 +Bricktober,Bricktober Hotel,203,2015,Dark Bluish Gray,5 +Bricktober,Bricktober Hotel,203,2015,Dark Brown,1 +Bricktober,Bricktober Hotel,203,2015,Dark Red,1 +Bricktober,Bricktober Hotel,203,2015,Dark Tan,1 +Bricktober,Bricktober Hotel,203,2015,Green,2 +Bricktober,Bricktober Hotel,203,2015,Light Bluish Gray,8 +Bricktober,Bricktober Hotel,203,2015,Lime,1 +Bricktober,Bricktober Hotel,203,2015,Magenta,1 +Bricktober,Bricktober Hotel,203,2015,Medium Azure,1 +Bricktober,Bricktober Hotel,203,2015,Red,1 +Bricktober,Bricktober Hotel,203,2015,Reddish Brown,2 +Bricktober,Bricktober Hotel,203,2015,Sand Green,1 +Bricktober,Bricktober Hotel,203,2015,Tan,10 +Bricktober,Bricktober Hotel,203,2015,Trans-Clear,5 +Bricktober,Bricktober Hotel,203,2015,Trans-Light Blue,3 +Bricktober,Bricktober Hotel,203,2015,White,10 +Bricktober,Bricktober Train Station,180,2015,Dark Tan,3 +Bricktober,Bricktober Train Station,180,2015,Flat Silver,1 +Bricktober,Bricktober Train Station,180,2015,Green,2 +Bricktober,Bricktober Train Station,180,2015,Orange,1 +Bricktober,Bricktober Train Station,180,2015,Red,3 +Bricktober,Bricktober Train Station,180,2015,Reddish Brown,6 +Bricktober,Bricktober Train Station,180,2015,Tan,5 +Bricktober,Bricktober Train Station,180,2015,Trans-Clear,6 +Bricktober,Bricktober Train Station,180,2015,White,4 +Bricktober,Bricktober Train Station,180,2015,Yellow,3 +Bricktober,Bricktober Train Station,180,2015,Light Bluish Gray,6 +Bricktober,Bricktober Train Station,180,2015,Black,7 +Bricktober,Bricktober Train Station,180,2015,Bright Green,1 +Bricktober,Bricktober Train Station,180,2015,Dark Bluish Gray,3 +Bricktober,Bricktober Train Station,180,2015,Dark Brown,1 +Bricktober,Bricktober Train Station,180,2015,Dark Green,6 +Bricktober,Bricktober Toys R Us Store,164,2015,Black,7 +Bricktober,Bricktober Toys R Us Store,164,2015,Blue,12 +Bricktober,Bricktober Toys R Us Store,164,2015,Bright Green,1 +Bricktober,Bricktober Toys R Us Store,164,2015,Dark Bluish Gray,5 +Bricktober,Bricktober Toys R Us Store,164,2015,Flat Silver,2 +Bricktober,Bricktober Toys R Us Store,164,2015,Green,3 +Bricktober,Bricktober Toys R Us Store,164,2015,Light Bluish Gray,5 +Bricktober,Bricktober Toys R Us Store,164,2015,Lime,1 +Bricktober,Bricktober Toys R Us Store,164,2015,Red,3 +Bricktober,Bricktober Toys R Us Store,164,2015,Reddish Brown,1 +Bricktober,Bricktober Toys R Us Store,164,2015,Tan,2 +Bricktober,Bricktober Toys R Us Store,164,2015,Yellow,3 +Bricktober,Bricktober Toys R Us Store,164,2015,Trans-Clear,4 +Bricktober,Bricktober Toys R Us Store,164,2015,White,8 +Building,Windmill Set,153,1963,Blue,12 +Building,Windmill Set,153,1963,Red,8 +Building,Windmill Set,153,1963,Trans-Clear,1 +Building,Windmill Set,153,1963,White,12 +Building,Station,191,1968,Light Gray,5 +Building,Station,191,1968,Trans-Clear,1 +Building,Station,191,1968,Yellow,10 +Building,Station,191,1968,Red,5 +Building,Station,191,1968,Black,5 +Building,Station,191,1968,Green,2 +Building,Warehouse,123,1968,Black,6 +Building,Warehouse,123,1968,Blue,2 +Building,Warehouse,123,1968,Green,2 +Building,Warehouse,123,1968,Light Gray,2 +Building,Warehouse,123,1968,Red,1 +Building,Warehouse,123,1968,White,1 +Building,Warehouse,123,1968,Yellow,5 +Building,Railroad Control Tower,74,1968,Black,2 +Building,Railroad Control Tower,74,1968,Green,1 +Building,Railroad Control Tower,74,1968,Light Gray,1 +Building,Railroad Control Tower,74,1968,Yellow,6 +Building,Railroad Control Tower,74,1968,Red,4 +Building,House with Car,167,1969,Light Gray,1 +Building,House with Car,167,1969,Red,17 +Building,House with Car,167,1969,Trans-Clear,1 +Building,House with Car,167,1969,White,13 +Building,House with Car,167,1969,Black,6 +Building,House with Car,167,1969,Green,3 +Building,House with Mini Wheel Car,132,1969,Green,4 +Building,House with Mini Wheel Car,132,1969,Red,10 +Building,House with Mini Wheel Car,132,1969,Trans-Clear,1 +Building,House with Mini Wheel Car,132,1969,White,13 +Building,House with Mini Wheel Car,132,1969,Black,12 +Building,Bungalow,77,1969,Black,1 +Building,Bungalow,77,1969,Green,2 +Building,Bungalow,77,1969,Red,12 +Building,Bungalow,77,1969,White,8 +Building,Windmill,211,1976,Black,16 +Building,Windmill,211,1976,Blue,13 +Building,Windmill,211,1976,Green,1 +Building,Windmill,211,1976,Light Gray,2 +Building,Windmill,211,1976,Red,20 +Building,Windmill,211,1976,Trans-Clear,2 +Building,Windmill,211,1976,White,4 +Building,Windmill,211,1976,Yellow,8 +Building,Taxi Station,157,1976,Black,16 +Building,Taxi Station,157,1976,Blue,6 +Building,Taxi Station,157,1976,Green,2 +Building,Taxi Station,157,1976,Red,12 +Building,Taxi Station,157,1976,Trans-Clear,3 +Building,Taxi Station,157,1976,White,4 +Building,Taxi Station,157,1976,Yellow,8 +Building,Weetabix Promotional House 2,149,1976,Red,9 +Building,Weetabix Promotional House 2,149,1976,White,12 +Building,Weetabix Promotional House 2,149,1976,Black,9 +Building,Weetabix Promotional House 2,149,1976,Blue,10 +Building,Weetabix Promotional House 2,149,1976,Green,1 +Building,Weetabix Promotional House 2,149,1976,Yellow,2 +Building,Weetabix Promotional House 1,147,1976,Green,2 +Building,Weetabix Promotional House 1,147,1976,Red,8 +Building,Weetabix Promotional House 1,147,1976,Trans-Clear,2 +Building,Weetabix Promotional House 1,147,1976,White,11 +Building,Weetabix Promotional House 1,147,1976,Yellow,5 +Building,Weetabix Promotional House 1,147,1976,Black,18 +Building,Weetabix Promotional House 1,147,1976,Blue,1 +Building,Weetabix Promotional Windmill,126,1976,Green,2 +Building,Weetabix Promotional Windmill,126,1976,Red,17 +Building,Weetabix Promotional Windmill,126,1976,White,4 +Building,Weetabix Promotional Windmill,126,1976,Yellow,12 +Building,Weetabix Promotional Windmill,126,1976,Black,10 +Building,Weetabix Promotional Windmill,126,1976,Blue,4 +Building,Town House with Garden,244,1978,Black,8 +Building,Town House with Garden,244,1978,Blue,8 +Building,Town House with Garden,244,1978,Green,4 +Building,Town House with Garden,244,1978,Red,14 +Building,Town House with Garden,244,1978,White,11 +Building,Town House with Garden,244,1978,Yellow,10 +Building,House with Roof-Windows ( Velux ),152,1996,[No Color],1 +Building,House with Roof-Windows ( Velux ),152,1996,Black,1 +Building,House with Roof-Windows ( Velux ),152,1996,Blue,6 +Building,House with Roof-Windows ( Velux ),152,1996,Brown,1 +Building,House with Roof-Windows ( Velux ),152,1996,Green,2 +Building,House with Roof-Windows ( Velux ),152,1996,Light Gray,4 +Building,House with Roof-Windows ( Velux ),152,1996,Red,10 +Building,House with Roof-Windows ( Velux ),152,1996,Trans-Clear,2 +Building,House with Roof-Windows ( Velux ),152,1996,Trans-Yellow,1 +Building,House with Roof-Windows ( Velux ),152,1996,White,29 +Building,House with Roof-Windows ( Velux ),152,1996,Yellow,7 +Building,Building Bonanza,667,2004,Black,7 +Building,Building Bonanza,667,2004,Dark Bluish Gray,4 +Building,Building Bonanza,667,2004,Green,11 +Building,Building Bonanza,667,2004,Light Bluish Gray,16 +Building,Building Bonanza,667,2004,Lime,1 +Building,Building Bonanza,667,2004,Red,12 +Building,Building Bonanza,667,2004,Reddish Brown,5 +Building,Building Bonanza,667,2004,Trans-Clear,1 +Building,Building Bonanza,667,2004,Trans-Yellow,1 +Building,Building Bonanza,667,2004,White,20 +Building,Building Bonanza,667,2004,Yellow,1 +Building,Model Town House,1174,2007,Dark Red,1 +Building,Model Town House,1174,2007,Green,1 +Building,Model Town House,1174,2007,Red,6 +Building,Model Town House,1174,2007,Tan,18 +Building,Model Town House,1174,2007,Trans-Black,1 +Building,Model Town House,1174,2007,Trans-Green,1 +Building,Model Town House,1174,2007,Trans-Orange,1 +Building,Model Town House,1174,2007,Black,19 +Building,Model Town House,1174,2007,Trans-Yellow,2 +Building,Model Town House,1174,2007,White,12 +Building,Model Town House,1174,2007,Yellow,1 +Building,Model Town House,1174,2007,Trans-Red,1 +Building,Model Town House,1174,2007,Light Bluish Gray,21 +Building,Model Town House,1174,2007,Blue,11 +Building,Model Town House,1174,2007,Dark Bluish Gray,22 +Building,House,731,2007,Black,13 +Building,House,731,2007,Dark Bluish Gray,6 +Building,House,731,2007,Green,6 +Building,House,731,2007,Light Bluish Gray,24 +Building,House,731,2007,Lime,1 +Building,House,731,2007,Red,15 +Building,House,731,2007,Reddish Brown,4 +Building,House,731,2007,Trans-Green,1 +Building,House,731,2007,Trans-Yellow,1 +Building,House,731,2007,White,25 +Building,House,731,2007,Yellow,3 +Building,House,731,2007,Tan,1 +Building,House,53,2008,Black,4 +Building,House,53,2008,Dark Bluish Gray,1 +Building,House,53,2008,Green,2 +Building,House,53,2008,Light Bluish Gray,3 +Building,House,53,2008,Red,1 +Building,House,53,2008,Tan,1 +Building,House,53,2008,Trans-Clear,1 +Building,House,53,2008,White,1 +Building,House,53,2008,Yellow,3 +Building,Big Ben,4166,2016,Black,35 +Building,Big Ben,4166,2016,Blue,7 +Building,Big Ben,4166,2016,Bright Green,3 +Building,Big Ben,4166,2016,Dark Blue,4 +Building,Big Ben,4166,2016,Dark Bluish Gray,38 +Building,Big Ben,4166,2016,Dark Tan,21 +Building,Big Ben,4166,2016,Flat Silver,2 +Building,Big Ben,4166,2016,Green,4 +Building,Big Ben,4166,2016,Light Bluish Gray,31 +Building,Big Ben,4166,2016,Orange,1 +Building,Big Ben,4166,2016,Pearl Gold,6 +Building,Big Ben,4166,2016,Red,1 +Building,Big Ben,4166,2016,Reddish Brown,8 +Building,Big Ben,4166,2016,Tan,54 +Building,Big Ben,4166,2016,Trans-Black,3 +Building,Big Ben,4166,2016,Trans-Clear,6 +Building,Big Ben,4166,2016,White,9 +Building,Big Ben,4166,2016,Yellow,1 +Building Set with People,Farm Set,526,1974,Black,15 +Building Set with People,Farm Set,526,1974,Brown,1 +Building Set with People,Farm Set,526,1974,Green,2 +Building Set with People,Farm Set,526,1974,Light Gray,1 +Building Set with People,Farm Set,526,1974,Red,32 +Building Set with People,Farm Set,526,1974,Trans-Clear,6 +Building Set with People,Farm Set,526,1974,White,12 +Building Set with People,Farm Set,526,1974,Blue,21 +Building Set with People,Farm Set,526,1974,Yellow,15 +Building Set with People,Locomotive with Driver & Passenger,115,1974,Black,8 +Building Set with People,Locomotive with Driver & Passenger,115,1974,Blue,5 +Building Set with People,Locomotive with Driver & Passenger,115,1974,Brown,1 +Building Set with People,Locomotive with Driver & Passenger,115,1974,Red,14 +Building Set with People,Locomotive with Driver & Passenger,115,1974,Trans-Clear,1 +Building Set with People,Locomotive with Driver & Passenger,115,1974,Yellow,6 +Building Set with People,Windmill with Miller and his Wife,90,1974,Yellow,4 +Building Set with People,Windmill with Miller and his Wife,90,1974,Black,8 +Building Set with People,Windmill with Miller and his Wife,90,1974,Blue,4 +Building Set with People,Windmill with Miller and his Wife,90,1974,Brown,1 +Building Set with People,Windmill with Miller and his Wife,90,1974,Red,8 +Building Set with People,Windmill with Miller and his Wife,90,1974,Trans-Clear,1 +Building Set with People,Aeroplane and Pilot,89,1974,Blue,7 +Building Set with People,Aeroplane and Pilot,89,1974,Red,6 +Building Set with People,Aeroplane and Pilot,89,1974,Trans-Clear,1 +Building Set with People,Aeroplane and Pilot,89,1974,White,4 +Building Set with People,Aeroplane and Pilot,89,1974,Yellow,6 +Building Set with People,Aeroplane and Pilot,89,1974,Black,6 +Building Set with People,Family,78,1974,Black,8 +Building Set with People,Family,78,1974,Brown,1 +Building Set with People,Family,78,1974,Light Gray,1 +Building Set with People,Family,78,1974,Red,7 +Building Set with People,Family,78,1974,White,5 +Building Set with People,Family,78,1974,Yellow,6 +Building Set with People,Family,78,1974,Blue,6 +Building Set with People,Educational LEGO Building Set,683,1976,Black,8 +Building Set with People,Educational LEGO Building Set,683,1976,Blue,14 +Building Set with People,Educational LEGO Building Set,683,1976,Brown,1 +Building Set with People,Educational LEGO Building Set,683,1976,Red,20 +Building Set with People,Educational LEGO Building Set,683,1976,Trans-Clear,4 +Building Set with People,Educational LEGO Building Set,683,1976,White,11 +Building Set with People,Educational LEGO Building Set,683,1976,Yellow,10 +Building Set with People,Fire Trucks,277,1978,Black,6 +Building Set with People,Fire Trucks,277,1978,Blue,2 +Building Set with People,Fire Trucks,277,1978,Red,27 +Building Set with People,Fire Trucks,277,1978,Trans-Clear,1 +Building Set with People,Fire Trucks,277,1978,Yellow,11 +Building Set with People,Gas Station,211,1978,Black,9 +Building Set with People,Gas Station,211,1978,Blue,17 +Building Set with People,Gas Station,211,1978,Light Gray,2 +Building Set with People,Gas Station,211,1978,Red,18 +Building Set with People,Gas Station,211,1978,Trans-Clear,3 +Building Set with People,Gas Station,211,1978,White,8 +Building Set with People,Gas Station,211,1978,Yellow,10 +Building Set with People,Universal Figure Set,118,1978,Black,17 +Building Set with People,Universal Figure Set,118,1978,Blue,10 +Building Set with People,Universal Figure Set,118,1978,Brown,1 +Building Set with People,Universal Figure Set,118,1978,Green,1 +Building Set with People,Universal Figure Set,118,1978,Light Gray,1 +Building Set with People,Universal Figure Set,118,1978,Red,16 +Building Set with People,Universal Figure Set,118,1978,White,12 +Building Set with People,Universal Figure Set,118,1978,Yellow,8 +Building Set with People,Mother with Baby Carriage,46,1978,White,4 +Building Set with People,Mother with Baby Carriage,46,1978,Yellow,5 +Building Set with People,Mother with Baby Carriage,46,1978,Black,4 +Building Set with People,Mother with Baby Carriage,46,1978,Blue,7 +Building Set with People,Mother with Baby Carriage,46,1978,Red,9 +Building Set with People,LEGO People Supplementary Set,256,1980,Black,8 +Building Set with People,LEGO People Supplementary Set,256,1980,Blue,6 +Building Set with People,LEGO People Supplementary Set,256,1980,Brown,1 +Building Set with People,LEGO People Supplementary Set,256,1980,Light Gray,1 +Building Set with People,LEGO People Supplementary Set,256,1980,Red,8 +Building Set with People,LEGO People Supplementary Set,256,1980,White,4 +Building Set with People,LEGO People Supplementary Set,256,1980,Yellow,6 +Bulk Bricks,Basic Bricks,400,1995,Black,9 +Bulk Bricks,Basic Bricks,400,1995,Blue,10 +Bulk Bricks,Basic Bricks,400,1995,Red,10 +Bulk Bricks,Basic Bricks,400,1995,White,10 +Bulk Bricks,Basic Bricks,400,1995,Yellow,10 +Bulk Bricks,Flags and Posts,100,2006,Black,1 +Bulk Bricks,Flags and Posts,100,2006,Blue,1 +Bulk Bricks,Flags and Posts,100,2006,Red,1 +Bulk Bricks,Flags and Posts,100,2006,Yellow,1 +Bulk Bricks,Gray Brick Separator with Black Frame Pieces,56,2006,Black,5 +Bulk Bricks,Gray Brick Separator with Black Frame Pieces,56,2006,Dark Bluish Gray,1 +Cargo,Transport Truck,99,1967,Black,1 +Cargo,Transport Truck,99,1967,Light Gray,3 +Cargo,Transport Truck,99,1967,Red,5 +Cargo,Transport Truck,99,1967,Trans-Clear,3 +Cargo,Transport Truck,99,1967,White,3 +Cargo,Transport Truck,99,1967,Yellow,17 +Cargo,Truck with Flatbed,72,1967,Black,1 +Cargo,Truck with Flatbed,72,1967,Blue,13 +Cargo,Truck with Flatbed,72,1967,Light Gray,3 +Cargo,Truck with Flatbed,72,1967,Red,4 +Cargo,Truck with Flatbed,72,1967,Trans-Clear,3 +Cargo,Truck with Flatbed,72,1967,White,3 +Cargo,Delivery Truck,68,1967,White,2 +Cargo,Delivery Truck,68,1967,Yellow,10 +Cargo,Delivery Truck,68,1967,Black,1 +Cargo,Delivery Truck,68,1967,Blue,9 +Cargo,Delivery Truck,68,1967,Light Gray,3 +Cargo,Delivery Truck,68,1967,Red,4 +Cargo,Delivery Truck,68,1967,Trans-Clear,3 +Cargo,Maersk Line Container Truck,305,1980,Black,24 +Cargo,Maersk Line Container Truck,305,1980,Blue,1 +Cargo,Maersk Line Container Truck,305,1980,Light Gray,13 +Cargo,Maersk Line Container Truck,305,1980,Maersk Blue,22 +Cargo,Maersk Line Container Truck,305,1980,Red,2 +Cargo,Maersk Line Container Truck,305,1980,Trans-Clear,1 +Cargo,Maersk Line Container Truck,305,1980,Trans-Red,1 +Cargo,Maersk Line Container Truck,305,1980,Trans-Yellow,1 +Cargo,Maersk Line Container Truck,305,1980,Yellow,1 +Cargo,Color Line Container Lorry,184,1997,[No Color],1 +Cargo,Color Line Container Lorry,184,1997,Black,13 +Cargo,Color Line Container Lorry,184,1997,Blue,11 +Cargo,Color Line Container Lorry,184,1997,Brown,1 +Cargo,Color Line Container Lorry,184,1997,Chrome Silver,1 +Cargo,Color Line Container Lorry,184,1997,Dark Gray,1 +Cargo,Color Line Container Lorry,184,1997,Light Gray,15 +Cargo,Color Line Container Lorry,184,1997,Red,6 +Cargo,Color Line Container Lorry,184,1997,Trans-Dark Blue,1 +Cargo,Color Line Container Lorry,184,1997,Trans-Light Blue,2 +Cargo,Color Line Container Lorry,184,1997,Trans-Red,1 +Cargo,Color Line Container Lorry,184,1997,Trans-Yellow,1 +Cargo,Color Line Container Lorry,184,1997,White,21 +Cargo,Color Line Container Lorry,184,1997,Yellow,1 +Cargo,Cargo Center,246,1998,Black,32 +Cargo,Cargo Center,246,1998,Blue,13 +Cargo,Cargo Center,246,1998,Brown,3 +Cargo,Cargo Center,246,1998,Dark Gray,4 +Cargo,Cargo Center,246,1998,Green,6 +Cargo,Cargo Center,246,1998,Light Gray,17 +Cargo,Cargo Center,246,1998,Red,4 +Cargo,Cargo Center,246,1998,Trans-Clear,1 +Cargo,Cargo Center,246,1998,Trans-Light Blue,2 +Cargo,Cargo Center,246,1998,Trans-Red,1 +Cargo,Cargo Center,246,1998,Trans-Yellow,2 +Cargo,Cargo Center,246,1998,White,21 +Cargo,Cargo Center,246,1998,Yellow,15 +Cargo,Package Pick-Up,29,1998,Black,4 +Cargo,Package Pick-Up,29,1998,Green,3 +Cargo,Package Pick-Up,29,1998,Light Gray,2 +Cargo,Package Pick-Up,29,1998,Red,1 +Cargo,Package Pick-Up,29,1998,Trans-Light Blue,1 +Cargo,Package Pick-Up,29,1998,White,6 +Cargo,Package Pick-Up,29,1998,Yellow,4 +Cargo,Container Stacker,217,2007,Black,14 +Cargo,Container Stacker,217,2007,Dark Bluish Gray,15 +Cargo,Container Stacker,217,2007,Green,11 +Cargo,Container Stacker,217,2007,Light Bluish Gray,16 +Cargo,Container Stacker,217,2007,Orange,2 +Cargo,Container Stacker,217,2007,Pearl Light Gray,1 +Cargo,Container Stacker,217,2007,Red,7 +Cargo,Container Stacker,217,2007,Tan,3 +Cargo,Container Stacker,217,2007,Trans-Black,1 +Cargo,Container Stacker,217,2007,Trans-Orange,2 +Cargo,Container Stacker,217,2007,Trans-Red,1 +Cargo,Container Stacker,217,2007,Trans-Yellow,1 +Cargo,Container Stacker,217,2007,White,5 +Cargo,Container Stacker,217,2007,Yellow,5 +Cargo,Cargo Copter,272,2008,Black,29 +Cargo,Cargo Copter,272,2008,Blue,19 +Cargo,Cargo Copter,272,2008,Dark Blue,3 +Cargo,Cargo Copter,272,2008,Dark Bluish Gray,10 +Cargo,Cargo Copter,272,2008,Light Bluish Gray,26 +Cargo,Cargo Copter,272,2008,Orange,3 +Cargo,Cargo Copter,272,2008,Red,1 +Cargo,Cargo Copter,272,2008,Trans-Clear,2 +Cargo,Cargo Copter,272,2008,Trans-Orange,1 +Cargo,Cargo Copter,272,2008,Trans-Red,1 +Cargo,Cargo Copter,272,2008,Trans-Yellow,1 +Cargo,Cargo Copter,272,2008,White,12 +Cargo,Cargo Copter,272,2008,Yellow,1 +Cargo,Cargo Truck,319,2013,Black,28 +Cargo,Cargo Truck,319,2013,Blue,5 +Cargo,Cargo Truck,319,2013,Dark Bluish Gray,18 +Cargo,Cargo Truck,319,2013,Green,14 +Cargo,Cargo Truck,319,2013,Light Bluish Gray,20 +Cargo,Cargo Truck,319,2013,Medium Blue,1 +Cargo,Cargo Truck,319,2013,Orange,4 +Cargo,Cargo Truck,319,2013,Red,7 +Cargo,Cargo Truck,319,2013,Tan,2 +Cargo,Cargo Truck,319,2013,Trans-Black,1 +Cargo,Cargo Truck,319,2013,Trans-Clear,1 +Cargo,Cargo Truck,319,2013,Trans-Orange,3 +Cargo,Cargo Truck,319,2013,Trans-Red,2 +Cargo,Cargo Truck,319,2013,Trans-Yellow,1 +Cargo,Cargo Truck,319,2013,White,15 +Cargo,Cargo Truck,319,2013,Yellow,8 +Cars,Mater's Yard,16,2010,Black,2 +Cars,Mater's Yard,16,2010,Blue,1 +Cars,Mater's Yard,16,2010,Bright Green,1 +Cars,Mater's Yard,16,2010,Bright Light Orange,1 +Cars,Mater's Yard,16,2010,Dark Orange,4 +Cars,Mater's Yard,16,2010,Reddish Brown,1 +Cars,Mater's Yard,16,2010,Tan,1 +Cars,Mater's Yard,16,2010,White,1 +Cars,Tokyo International Circuit,848,2011,Green,15 +Cars,Tokyo International Circuit,848,2011,Trans-Green,1 +Cars,Tokyo International Circuit,848,2011,Light Aqua,2 +Cars,Tokyo International Circuit,848,2011,Trans-Clear,2 +Cars,Tokyo International Circuit,848,2011,Trans-Red,1 +Cars,Tokyo International Circuit,848,2011,Trans-Orange,1 +Cars,Tokyo International Circuit,848,2011,Trans-Black,1 +Cars,Tokyo International Circuit,848,2011,Tan,1 +Cars,Tokyo International Circuit,848,2011,Reddish Brown,13 +Cars,Tokyo International Circuit,848,2011,Red,40 +Cars,Tokyo International Circuit,848,2011,Medium Blue,7 +Cars,Tokyo International Circuit,848,2011,Light Bluish Gray,32 +Cars,Tokyo International Circuit,848,2011,[No Color],1 +Cars,Tokyo International Circuit,848,2011,White,48 +Cars,Tokyo International Circuit,848,2011,Black,60 +Cars,Tokyo International Circuit,848,2011,Blue,4 +Cars,Tokyo International Circuit,848,2011,Dark Bluish Gray,22 +Cars,Tokyo International Circuit,848,2011,Flat Silver,1 +Cars,Tokyo International Circuit,848,2011,Yellow,16 +Cars,Big Bentley Bust Out,743,2011,Reddish Brown,18 +Cars,Big Bentley Bust Out,743,2011,Sand Green,14 +Cars,Big Bentley Bust Out,743,2011,Tan,31 +Cars,Big Bentley Bust Out,743,2011,Trans-Clear,1 +Cars,Big Bentley Bust Out,743,2011,Trans-Red,1 +Cars,Big Bentley Bust Out,743,2011,Trans-Yellow,2 +Cars,Big Bentley Bust Out,743,2011,White,26 +Cars,Big Bentley Bust Out,743,2011,[No Color],1 +Cars,Big Bentley Bust Out,743,2011,Black,46 +Cars,Big Bentley Bust Out,743,2011,Blue,14 +Cars,Big Bentley Bust Out,743,2011,Bright Light Blue,3 +Cars,Big Bentley Bust Out,743,2011,Dark Bluish Gray,43 +Cars,Big Bentley Bust Out,743,2011,Flat Silver,3 +Cars,Big Bentley Bust Out,743,2011,Green,1 +Cars,Big Bentley Bust Out,743,2011,Yellow,1 +Cars,Big Bentley Bust Out,743,2011,Trans-Orange,1 +Cars,Big Bentley Bust Out,743,2011,Light Aqua,4 +Cars,Big Bentley Bust Out,743,2011,Light Bluish Gray,39 +Cars,Big Bentley Bust Out,743,2011,Magenta,8 +Cars,Big Bentley Bust Out,743,2011,Medium Blue,10 +Cars,Big Bentley Bust Out,743,2011,Metallic Silver,1 +Cars,Big Bentley Bust Out,743,2011,Pearl Gold,2 +Cars,Big Bentley Bust Out,743,2011,Red,14 +Cars,Flo's V8 Café,516,2011,Black,22 +Cars,Flo's V8 Café,516,2011,Light Bluish Gray,29 +Cars,Flo's V8 Café,516,2011,Medium Blue,10 +Cars,Flo's V8 Café,516,2011,Orange,2 +Cars,Flo's V8 Café,516,2011,Red,23 +Cars,Flo's V8 Café,516,2011,Reddish Brown,19 +Cars,Flo's V8 Café,516,2011,Sand Green,10 +Cars,Flo's V8 Café,516,2011,Tan,10 +Cars,Flo's V8 Café,516,2011,Trans-Clear,1 +Cars,Flo's V8 Café,516,2011,Trans-Orange,1 +Cars,Flo's V8 Café,516,2011,Trans-Red,2 +Cars,Flo's V8 Café,516,2011,White,7 +Cars,Flo's V8 Café,516,2011,Yellow,8 +Cars,Flo's V8 Café,516,2011,Blue,9 +Cars,Flo's V8 Café,516,2011,Bright Light Yellow,1 +Cars,Flo's V8 Café,516,2011,Dark Bluish Gray,21 +Cars,Flo's V8 Café,516,2011,Dark Tan,5 +Cars,Flo's V8 Café,516,2011,Flat Silver,1 +Cars,Flo's V8 Café,516,2011,Light Aqua,22 +Cars,Mack’s Team Truck,384,2011,Trans-Red,1 +Cars,Mack’s Team Truck,384,2011,White,3 +Cars,Mack’s Team Truck,384,2011,Orange,2 +Cars,Mack’s Team Truck,384,2011,Black,40 +Cars,Mack’s Team Truck,384,2011,Blue,2 +Cars,Mack’s Team Truck,384,2011,Dark Bluish Gray,4 +Cars,Mack’s Team Truck,384,2011,Green,1 +Cars,Mack’s Team Truck,384,2011,Light Bluish Gray,19 +Cars,Mack’s Team Truck,384,2011,Red,67 +Cars,Spy Jet Escape,332,2011,Reddish Brown,14 +Cars,Spy Jet Escape,332,2011,Light Bluish Gray,14 +Cars,Spy Jet Escape,332,2011,Lime,11 +Cars,Spy Jet Escape,332,2011,Magenta,6 +Cars,Spy Jet Escape,332,2011,Medium Blue,4 +Cars,Spy Jet Escape,332,2011,Orange,1 +Cars,Spy Jet Escape,332,2011,Red,16 +Cars,Spy Jet Escape,332,2011,Tan,1 +Cars,Spy Jet Escape,332,2011,Trans-Clear,1 +Cars,Spy Jet Escape,332,2011,Trans-Green,1 +Cars,Spy Jet Escape,332,2011,Trans-Orange,1 +Cars,Spy Jet Escape,332,2011,Trans-Red,3 +Cars,Spy Jet Escape,332,2011,Black,38 +Cars,Spy Jet Escape,332,2011,White,29 +Cars,Spy Jet Escape,332,2011,Yellow,3 +Cars,Spy Jet Escape,332,2011,Green,1 +Cars,Spy Jet Escape,332,2011,Dark Bluish Gray,13 +Cars,Spy Jet Escape,332,2011,Blue,3 +Cars,Ultimate Build Mater,287,2011,Sand Green,3 +Cars,Ultimate Build Mater,287,2011,Reddish Brown,34 +Cars,Ultimate Build Mater,287,2011,Red,3 +Cars,Ultimate Build Mater,287,2011,Medium Blue,4 +Cars,Ultimate Build Mater,287,2011,Yellow,3 +Cars,Ultimate Build Mater,287,2011,Dark Bluish Gray,14 +Cars,Ultimate Build Mater,287,2011,Trans-Orange,1 +Cars,Ultimate Build Mater,287,2011,White,1 +Cars,Ultimate Build Mater,287,2011,Light Bluish Gray,14 +Cars,Ultimate Build Mater,287,2011,Trans-Red,1 +Cars,Ultimate Build Mater,287,2011,Trans-Clear,1 +Cars,Ultimate Build Mater,287,2011,Trans-Bright Green,1 +Cars,Ultimate Build Mater,287,2011,Dark Orange,3 +Cars,Ultimate Build Mater,287,2011,Dark Brown,1 +Cars,Ultimate Build Mater,287,2011,Blue,2 +Cars,Ultimate Build Mater,287,2011,Black,16 +Cars,Ultimate Build Mater,287,2011,[No Color],1 +Cars,Ultimate Build Lightning McQueen,241,2011,Light Bluish Gray,10 +Cars,Ultimate Build Lightning McQueen,241,2011,Light Aqua,2 +Cars,Ultimate Build Lightning McQueen,241,2011,Flat Silver,1 +Cars,Ultimate Build Lightning McQueen,241,2011,Dark Bluish Gray,3 +Cars,Ultimate Build Lightning McQueen,241,2011,Blue,2 +Cars,Ultimate Build Lightning McQueen,241,2011,Black,20 +Cars,Ultimate Build Lightning McQueen,241,2011,Lime,1 +Cars,Ultimate Build Lightning McQueen,241,2011,Red,42 +Cars,Ultimate Build Lightning McQueen,241,2011,Tan,2 +Cars,Ultimate Build Lightning McQueen,241,2011,White,3 +Cars,Ultimate Build Lightning McQueen,241,2011,Yellow,6 +Cars,Ultimate Build Lightning McQueen,241,2011,Pearl Gold,1 +Cars,Ultimate Build Lightning McQueen,241,2011,Orange,7 +Cars,Ultimate Build Lightning McQueen,241,2011,Medium Blue,6 +Cars,Ultimate Build Francesco,195,2011,White,38 +Cars,Ultimate Build Francesco,195,2011,Yellow,2 +Cars,Ultimate Build Francesco,195,2011,Light Bluish Gray,3 +Cars,Ultimate Build Francesco,195,2011,Blue,1 +Cars,Ultimate Build Francesco,195,2011,Black,13 +Cars,Ultimate Build Francesco,195,2011,Red,24 +Cars,Ultimate Build Francesco,195,2011,Green,18 +Cars,Ultimate Build Francesco,195,2011,Dark Bluish Gray,2 +Cars,Escape at Sea,158,2011,Blue,1 +Cars,Escape at Sea,158,2011,Dark Bluish Gray,11 +Cars,Escape at Sea,158,2011,Light Aqua,4 +Cars,Escape at Sea,158,2011,Light Bluish Gray,22 +Cars,Escape at Sea,158,2011,Medium Blue,9 +Cars,Escape at Sea,158,2011,Red,5 +Cars,Escape at Sea,158,2011,Sand Green,3 +Cars,Escape at Sea,158,2011,Trans-Neon Green,1 +Cars,Escape at Sea,158,2011,Trans-Red,2 +Cars,Escape at Sea,158,2011,White,1 +Cars,Escape at Sea,158,2011,Trans-Clear,2 +Cars,Escape at Sea,158,2011,Yellow,2 +Cars,Escape at Sea,158,2011,Black,14 +Cars,Tokyo Pit Stop,142,2011,Yellow,13 +Cars,Tokyo Pit Stop,142,2011,White,7 +Cars,Tokyo Pit Stop,142,2011,Trans-Red,1 +Cars,Tokyo Pit Stop,142,2011,Trans-Clear,1 +Cars,Tokyo Pit Stop,142,2011,Tan,2 +Cars,Tokyo Pit Stop,142,2011,Green,1 +Cars,Tokyo Pit Stop,142,2011,Flat Silver,1 +Cars,Tokyo Pit Stop,142,2011,Blue,2 +Cars,Tokyo Pit Stop,142,2011,Dark Bluish Gray,3 +Cars,Tokyo Pit Stop,142,2011,Reddish Brown,2 +Cars,Tokyo Pit Stop,142,2011,Red,8 +Cars,Tokyo Pit Stop,142,2011,Black,18 +Cars,Tokyo Pit Stop,142,2011,Pearl Gold,2 +Cars,Tokyo Pit Stop,142,2011,Medium Blue,6 +Cars,Tokyo Pit Stop,142,2011,Light Bluish Gray,11 +Cars,Tokyo Pit Stop,142,2011,Light Aqua,2 +Cars,World Grand Prix Racing Rivalry,135,2011,Black,10 +Cars,World Grand Prix Racing Rivalry,135,2011,Blue,2 +Cars,World Grand Prix Racing Rivalry,135,2011,Dark Bluish Gray,8 +Cars,World Grand Prix Racing Rivalry,135,2011,Green,3 +Cars,World Grand Prix Racing Rivalry,135,2011,Light Bluish Gray,8 +Cars,World Grand Prix Racing Rivalry,135,2011,Red,20 +Cars,World Grand Prix Racing Rivalry,135,2011,Trans-Green,1 +Cars,World Grand Prix Racing Rivalry,135,2011,Trans-Red,1 +Cars,World Grand Prix Racing Rivalry,135,2011,White,13 +Cars,World Grand Prix Racing Rivalry,135,2011,Yellow,2 +Cars,Mater’s Spy Zone,113,2011,Yellow,5 +Cars,Mater’s Spy Zone,113,2011,White,2 +Cars,Mater’s Spy Zone,113,2011,Trans-Red,1 +Cars,Mater’s Spy Zone,113,2011,Medium Blue,1 +Cars,Mater’s Spy Zone,113,2011,Trans-Orange,1 +Cars,Mater’s Spy Zone,113,2011,Trans-Clear,1 +Cars,Mater’s Spy Zone,113,2011,Red,2 +Cars,Mater’s Spy Zone,113,2011,Magenta,6 +Cars,Mater’s Spy Zone,113,2011,Light Bluish Gray,11 +Cars,Mater’s Spy Zone,113,2011,Dark Bluish Gray,10 +Cars,Mater’s Spy Zone,113,2011,Trans-Dark Blue,1 +Cars,Mater’s Spy Zone,113,2011,Blue,1 +Cars,Mater’s Spy Zone,113,2011,Black,15 +Cars,Mater’s Spy Zone,113,2011,Reddish Brown,13 +Cars,Radiator Springs Classic Mater,52,2011,Trans-Clear,1 +Cars,Radiator Springs Classic Mater,52,2011,Trans-Orange,1 +Cars,Radiator Springs Classic Mater,52,2011,Dark Bluish Gray,6 +Cars,Grem,52,2011,Black,4 +Cars,Grem,52,2011,Blue,1 +Cars,Grem,52,2011,Dark Bluish Gray,1 +Cars,Grem,52,2011,Light Bluish Gray,7 +Cars,Grem,52,2011,Red,15 +Cars,Grem,52,2011,Trans-Light Blue,1 +Cars,Grem,52,2011,Trans-Red,1 +Cars,Grem,52,2011,White,1 +Cars,Grem,52,2011,Yellow,1 +Cars,Radiator Springs Classic Mater,52,2011,Black,8 +Cars,Radiator Springs Classic Mater,52,2011,Blue,1 +Cars,Radiator Springs Classic Mater,52,2011,Light Bluish Gray,2 +Cars,Radiator Springs Classic Mater,52,2011,Medium Blue,1 +Cars,Radiator Springs Classic Mater,52,2011,Reddish Brown,14 +Cars,Radiator Springs Lightning McQueen,35,2011,White,1 +Cars,Radiator Springs Lightning McQueen,35,2011,Red,10 +Cars,Radiator Springs Lightning McQueen,35,2011,Orange,2 +Cars,Radiator Springs Lightning McQueen,35,2011,Light Bluish Gray,1 +Cars,Radiator Springs Lightning McQueen,35,2011,Blue,1 +Cars,Radiator Springs Lightning McQueen,35,2011,Black,4 +Cars,Radiator Springs Lightning McQueen,35,2011,Yellow,1 +Cars,Guido,34,2011,Blue,1 +Cars,Guido,34,2011,White,2 +Cars,Guido,34,2011,Medium Blue,6 +Cars,Guido,34,2011,Light Bluish Gray,3 +Cars,Guido,34,2011,Light Aqua,2 +Cars,Guido,34,2011,Flat Silver,1 +Cars,Guido,34,2011,Dark Bluish Gray,2 +Cars,Guido,34,2011,Black,4 +Cars,Oil Rig Escape,421,2012,Yellow,22 +Cars,Oil Rig Escape,421,2012,[No Color],1 +Cars,Oil Rig Escape,421,2012,Black,38 +Cars,Oil Rig Escape,421,2012,Blue,2 +Cars,Oil Rig Escape,421,2012,Dark Bluish Gray,34 +Cars,Oil Rig Escape,421,2012,Dark Red,2 +Cars,Oil Rig Escape,421,2012,Dark Tan,1 +Cars,Oil Rig Escape,421,2012,Green,4 +Cars,Oil Rig Escape,421,2012,Light Aqua,4 +Cars,Oil Rig Escape,421,2012,Light Bluish Gray,30 +Cars,Oil Rig Escape,421,2012,Medium Blue,12 +Cars,Oil Rig Escape,421,2012,Orange,14 +Cars,Oil Rig Escape,421,2012,Red,3 +Cars,Oil Rig Escape,421,2012,Reddish Brown,4 +Cars,Oil Rig Escape,421,2012,Sand Green,5 +Cars,Oil Rig Escape,421,2012,Trans-Clear,1 +Cars,Oil Rig Escape,421,2012,Trans-Green,1 +Cars,Oil Rig Escape,421,2012,Trans-Orange,1 +Cars,Oil Rig Escape,421,2012,Trans-Red,3 +Cars,Oil Rig Escape,421,2012,Trans-Yellow,2 +Cars,Oil Rig Escape,421,2012,White,8 +Cars,Ultimate Race Set,279,2012,Dark Bluish Gray,18 +Cars,Ultimate Race Set,279,2012,Yellow,6 +Cars,Ultimate Race Set,279,2012,Dark Azure,2 +Cars,Ultimate Race Set,279,2012,[No Color],1 +Cars,Ultimate Race Set,279,2012,Black,11 +Cars,Ultimate Race Set,279,2012,Blue,11 +Cars,Ultimate Race Set,279,2012,Green,1 +Cars,Ultimate Race Set,279,2012,Light Bluish Gray,11 +Cars,Ultimate Race Set,279,2012,Red,24 +Cars,Ultimate Race Set,279,2012,Tan,1 +Cars,Ultimate Race Set,279,2012,Trans-Green,1 +Cars,Ultimate Race Set,279,2012,Trans-Red,3 +Cars,Ultimate Race Set,279,2012,White,11 +Cars,Red’s Water Rescue,198,2012,[No Color],1 +Cars,Red’s Water Rescue,198,2012,Black,10 +Cars,Red’s Water Rescue,198,2012,Blue,1 +Cars,Red’s Water Rescue,198,2012,Green,1 +Cars,Red’s Water Rescue,198,2012,Light Bluish Gray,23 +Cars,Red’s Water Rescue,198,2012,Lime,9 +Cars,Red’s Water Rescue,198,2012,Red,27 +Cars,Red’s Water Rescue,198,2012,Tan,1 +Cars,Red’s Water Rescue,198,2012,Trans-Clear,1 +Cars,Red’s Water Rescue,198,2012,Trans-Orange,2 +Cars,Red’s Water Rescue,198,2012,Trans-Red,2 +Cars,Red’s Water Rescue,198,2012,White,2 +Cars,Red’s Water Rescue,198,2012,Yellow,3 +Cars,Red’s Water Rescue,198,2012,Trans-Dark Blue,1 +Cars,Red’s Water Rescue,198,2012,Dark Bluish Gray,12 +Cars,Agent Mater’s Escape,144,2012,Trans-Red,1 +Cars,Agent Mater’s Escape,144,2012,White,3 +Cars,Agent Mater’s Escape,144,2012,Yellow,1 +Cars,Agent Mater’s Escape,144,2012,Black,18 +Cars,Agent Mater’s Escape,144,2012,Blue,2 +Cars,Agent Mater’s Escape,144,2012,Dark Bluish Gray,10 +Cars,Agent Mater’s Escape,144,2012,Light Bluish Gray,12 +Cars,Agent Mater’s Escape,144,2012,Medium Blue,1 +Cars,Agent Mater’s Escape,144,2012,Red,1 +Cars,Agent Mater’s Escape,144,2012,Reddish Brown,14 +Cars,Agent Mater’s Escape,144,2012,Sand Green,17 +Cars,Agent Mater’s Escape,144,2012,Trans-Clear,2 +Cars,Agent Mater’s Escape,144,2012,Trans-Orange,3 +Cars,Jeff Gorvette,54,2012,Light Bluish Gray,3 +Cars,Jeff Gorvette,54,2012,Yellow,9 +Cars,Jeff Gorvette,54,2012,Red,2 +Cars,Jeff Gorvette,54,2012,Trans-Green,1 +Cars,Jeff Gorvette,54,2012,Trans-Red,1 +Cars,Jeff Gorvette,54,2012,White,2 +Cars,Jeff Gorvette,54,2012,Black,7 +Cars,Jeff Gorvette,54,2012,Blue,1 +Cars,Jeff Gorvette,54,2012,Dark Bluish Gray,4 +Cars,Jeff Gorvette,54,2012,Green,1 +Cars,Finn McMissile,52,2012,Black,7 +Cars,Ivan Mater,52,2012,Light Bluish Gray,6 +Cars,Ivan Mater,52,2012,Red,1 +Cars,Ivan Mater,52,2012,Trans-Clear,1 +Cars,Ivan Mater,52,2012,Trans-Orange,1 +Cars,Ivan Mater,52,2012,Dark Bluish Gray,2 +Cars,Finn McMissile,52,2012,Blue,2 +Cars,Finn McMissile,52,2012,Light Bluish Gray,4 +Cars,Finn McMissile,52,2012,Medium Blue,11 +Cars,Finn McMissile,52,2012,Red,2 +Cars,Finn McMissile,52,2012,Trans-Clear,1 +Cars,Finn McMissile,52,2012,Trans-Neon Green,1 +Cars,Finn McMissile,52,2012,Trans-Red,1 +Cars,Finn McMissile,52,2012,White,2 +Cars,Ivan Mater,52,2012,Dark Red,2 +Cars,Ivan Mater,52,2012,Black,7 +Cars,Ivan Mater,52,2012,Blue,15 +Cars,Fransesco Bernoulli,49,2012,Green,5 +Cars,Fransesco Bernoulli,49,2012,Light Bluish Gray,2 +Cars,Fransesco Bernoulli,49,2012,Red,8 +Cars,Fransesco Bernoulli,49,2012,White,12 +Cars,Fransesco Bernoulli,49,2012,Black,4 +Cars,Fransesco Bernoulli,49,2012,Dark Bluish Gray,3 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Black,2 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Blue,1 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Bright Green,1 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Bright Light Orange,1 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Dark Orange,1 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Flat Silver,1 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Light Bluish Gray,1 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Lime,2 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Medium Azure,1 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Medium Blue,1 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Red,3 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Trans-Light Blue,1 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,White,2 +Cars,Disney • Pixar Cars™ Classic Race,29,2015,Yellow,3 +Castle,Weetabix Castle,471,1970,Black,1 +Castle,Weetabix Castle,471,1970,Blue,8 +Castle,Weetabix Castle,471,1970,Light Gray,7 +Castle,Weetabix Castle,471,1970,Red,10 +Castle,Weetabix Castle,471,1970,White,15 +Castle,Weetabix Castle,471,1970,Yellow,10 +Castle,Castle Mini Figures,15,1978,Black,2 +Castle,Castle Mini Figures,15,1978,Light Gray,3 +Castle,Castle Mini Figures,15,1978,Red,3 +Castle,Castle Mini Figures,15,1978,Yellow,1 +Castle,Castle Mini Figures,38,1984,Black,3 +Castle,Castle Mini Figures,38,1984,Blue,1 +Castle,Castle Mini Figures,38,1984,Brown,2 +Castle,Castle Mini Figures,38,1984,Dark Gray,1 +Castle,Castle Mini Figures,38,1984,Light Gray,4 +Castle,Castle Mini Figures,38,1984,Red,3 +Castle,Castle Mini Figures,38,1984,White,1 +Castle,Castle Mini Figures,38,1984,Yellow,1 +Castle,Lego Dacta Castle Set,337,1997,Black,27 +Castle,Lego Dacta Castle Set,337,1997,Blue,2 +Castle,Lego Dacta Castle Set,337,1997,Brown,10 +Castle,Lego Dacta Castle Set,337,1997,Chrome Gold,5 +Castle,Lego Dacta Castle Set,337,1997,Chrome Silver,1 +Castle,Lego Dacta Castle Set,337,1997,Dark Gray,11 +Castle,Lego Dacta Castle Set,337,1997,Glow In Dark Opaque,1 +Castle,Lego Dacta Castle Set,337,1997,Green,7 +Castle,Lego Dacta Castle Set,337,1997,Light Gray,14 +Castle,Lego Dacta Castle Set,337,1997,Red,17 +Castle,Lego Dacta Castle Set,337,1997,Trans-Clear,1 +Castle,Lego Dacta Castle Set,337,1997,Trans-Neon Orange,1 +Castle,Lego Dacta Castle Set,337,1997,Trans-Red,2 +Castle,Lego Dacta Castle Set,337,1997,White,8 +Castle,Lego Dacta Castle Set,337,1997,Yellow,8 +Castle,Castle Accessories,36,1998,Black,5 +Castle,Castle Accessories,36,1998,Brown,5 +Castle,Castle Accessories,36,1998,Chrome Silver,1 +Castle,Castle Accessories,36,1998,Dark Gray,2 +Castle,Castle Accessories,36,1998,Light Gray,2 +Castle,Castle Accessories,36,1998,Red,4 +Castle,Castle Accessories,36,1998,Trans-Clear,1 +Castle,Castle Accessories,36,1998,Trans-Neon Orange,1 +Castle,Castle Accessories,36,1998,Trans-Red,2 +Castle,Castle Accessories,36,1998,White,4 +Castle,Castle Accessories,36,1998,Yellow,1 +Castle,Castle Expander Pack,24,2000,Blue,1 +Castle,Castle Expander Pack,24,2000,Light Gray,5 +Castle,Castle Accessories,41,2002,Black,7 +Castle,Castle Accessories,41,2002,Blue,1 +Castle,Castle Accessories,41,2002,Brown,4 +Castle,Castle Accessories,41,2002,Chrome Gold,1 +Castle,Castle Accessories,41,2002,Chrome Silver,1 +Castle,Castle Accessories,41,2002,Dark Gray,7 +Castle,Castle Accessories,41,2002,Green,1 +Castle,Castle Accessories,41,2002,Light Gray,5 +Castle,Castle Accessories,41,2002,Red,3 +Castle,Castle Accessories,41,2002,White,7 +Castle,Advent Calendar 2008 Castle (Day 20) - Dinner Table,17,2008,Reddish Brown,3 +Castle,Advent Calendar 2008 Castle (Day 20) - Dinner Table,17,2008,Metallic Gold,1 +Castle,Advent Calendar 2008 Castle (Day 20) - Dinner Table,17,2008,Dark Orange,1 +Castle,Advent Calendar 2008 Castle (Day 20) - Dinner Table,17,2008,Pearl Gold,1 +Castle,Advent Calendar 2008 Castle (Day 20) - Dinner Table,17,2008,Black,1 +Castle,Advent Calendar 2008 Castle (Day 22) - Catapult,14,2008,Light Bluish Gray,1 +Castle,Advent Calendar 2008 Castle (Day 22) - Catapult,14,2008,Tan,1 +Castle,Advent Calendar 2008 Castle (Day 22) - Catapult,14,2008,Green,1 +Castle,Advent Calendar 2008 Castle (Day 22) - Catapult,14,2008,Trans-Red,1 +Castle,Advent Calendar 2008 Castle (Day 22) - Catapult,14,2008,Black,3 +Castle,Advent Calendar 2008 Castle (Day 22) - Catapult,14,2008,Red,2 +Castle,Advent Calendar 2008 Castle (Day 16) - Shelving with Bat,12,2008,Trans-Dark Blue,1 +Castle,Advent Calendar 2008 Castle (Day 16) - Shelving with Bat,12,2008,Black,3 +Castle,Advent Calendar 2008 Castle (Day 16) - Shelving with Bat,12,2008,Trans-Red,1 +Castle,Advent Calendar 2008 Castle (Day 16) - Shelving with Bat,12,2008,Trans-Neon Green,1 +Castle,Advent Calendar 2008 Castle (Day 16) - Shelving with Bat,12,2008,Trans-Green,1 +Castle,Advent Calendar 2008 Castle (Day 2) - Brick Arch with Flag and Shield,10,2008,Reddish Brown,1 +Castle,Advent Calendar 2008 Castle (Day 2) - Brick Arch with Flag and Shield,10,2008,Dark Bluish Gray,1 +Castle,Advent Calendar 2008 Castle (Day 2) - Brick Arch with Flag and Shield,10,2008,Light Bluish Gray,5 +Castle,Advent Calendar 2008 Castle (Day 2) - Brick Arch with Flag and Shield,10,2008,Metallic Gold,1 +Castle,Advent Calendar 2008 Castle (Day 12) - Container on Wheels,10,2008,Reddish Brown,2 +Castle,Advent Calendar 2008 Castle (Day 12) - Container on Wheels,10,2008,Light Bluish Gray,1 +Castle,Advent Calendar 2008 Castle (Day 12) - Container on Wheels,10,2008,Dark Blue,1 +Castle,Advent Calendar 2008 Castle (Day 12) - Container on Wheels,10,2008,Black,1 +Castle,Advent Calendar 2008 Castle (Day 15) - Cooking Pot with Snake,9,2008,Trans-Yellow,1 +Castle,Advent Calendar 2008 Castle (Day 15) - Cooking Pot with Snake,9,2008,Reddish Brown,2 +Castle,Advent Calendar 2008 Castle (Day 15) - Cooking Pot with Snake,9,2008,Trans-Red,1 +Castle,Advent Calendar 2008 Castle (Day 15) - Cooking Pot with Snake,9,2008,Red,1 +Castle,Advent Calendar 2008 Castle (Day 15) - Cooking Pot with Snake,9,2008,Black,1 +Castle,Advent Calendar 2008 Castle (Day 5) - Weapon Stand,8,2008,Black,2 +Castle,Advent Calendar 2008 Castle (Day 5) - Weapon Stand,8,2008,Dark Bluish Gray,4 +Castle,Advent Calendar 2008 Castle (Day 5) - Weapon Stand,8,2008,Dark Red,1 +Castle,Advent Calendar 2008 Castle (Day 3) - Armour Stand,8,2008,Black,1 +Castle,Advent Calendar 2008 Castle (Day 3) - Armour Stand,8,2008,Metallic Silver,1 +Castle,Advent Calendar 2008 Castle (Day 3) - Armour Stand,8,2008,Pearl Light Gray,3 +Castle,Advent Calendar 2008 Castle (Day 3) - Armour Stand,8,2008,Reddish Brown,2 +Castle,Advent Calendar 2008 Castle (Day 4) - White Skeleton with Flail,7,2008,Pearl Light Gray,1 +Castle,Advent Calendar 2008 Castle (Day 9) - Crossbow on Wheels,7,2008,Reddish Brown,2 +Castle,Advent Calendar 2008 Castle (Day 9) - Crossbow on Wheels,7,2008,Dark Blue,1 +Castle,Advent Calendar 2008 Castle (Day 9) - Crossbow on Wheels,7,2008,Black,2 +Castle,Advent Calendar 2008 Castle (Day 9) - Crossbow on Wheels,7,2008,Pearl Light Gray,1 +Castle,Advent Calendar 2008 Castle (Day 6) - Black Skeleton with Crossbow,7,2008,Reddish Brown,1 +Castle,Advent Calendar 2008 Castle (Day 6) - Black Skeleton with Crossbow,7,2008,Black,4 +Castle,Advent Calendar 2008 Castle (Day 4) - White Skeleton with Flail,7,2008,White,4 +Castle,Advent Calendar 2008 Castle (Day 18) - Maid with Broom and Rat,6,2008,Light Bluish Gray,1 +Castle,Advent Calendar 2008 Castle (Day 18) - Maid with Broom and Rat,6,2008,Reddish Brown,3 +Castle,Advent Calendar 2008 Castle (Day 18) - Maid with Broom and Rat,6,2008,Tan,1 +Castle,Advent Calendar 2008 Castle (Day 11) - Fire and Crystal,6,2008,Dark Bluish Gray,3 +Castle,Advent Calendar 2008 Castle (Day 11) - Fire and Crystal,6,2008,Metallic Gold,1 +Castle,Advent Calendar 2008 Castle (Day 11) - Fire and Crystal,6,2008,Trans-Neon Orange,1 +Castle,Advent Calendar 2008 Castle (Day 10) - Dwarf with Pick Axe,6,2008,Yellow,1 +Castle,Advent Calendar 2008 Castle (Day 10) - Dwarf with Pick Axe,6,2008,Reddish Brown,1 +Castle,Advent Calendar 2008 Castle (Day 10) - Dwarf with Pick Axe,6,2008,Metallic Gold,1 +Castle,Advent Calendar 2008 Castle (Day 11) - Fire and Crystal,6,2008,Black,1 +Castle,Advent Calendar 2008 Castle (Day 8) - Archery Target,6,2008,Light Bluish Gray,1 +Castle,Advent Calendar 2008 Castle (Day 8) - Archery Target,6,2008,Blue,1 +Castle,Advent Calendar 2008 Castle (Day 23) - Treasure Chest with Spider,6,2008,Trans-Yellow,1 +Castle,Advent Calendar 2008 Castle (Day 18) - Maid with Broom and Rat,6,2008,Yellow,1 +Castle,Advent Calendar 2008 Castle (Day 8) - Archery Target,6,2008,Reddish Brown,2 +Castle,Advent Calendar 2008 Castle (Day 10) - Dwarf with Pick Axe,6,2008,Dark Brown,1 +Castle,Advent Calendar 2008 Castle (Day 23) - Treasure Chest with Spider,6,2008,Reddish Brown,2 +Castle,Advent Calendar 2008 Castle (Day 10) - Dwarf with Pick Axe,6,2008,Dark Bluish Gray,2 +Castle,Advent Calendar 2008 Castle (Day 8) - Archery Target,6,2008,Red,1 +Castle,Advent Calendar 2008 Castle (Day 23) - Treasure Chest with Spider,6,2008,Trans-Red,1 +Castle,Advent Calendar 2008 Castle (Day 23) - Treasure Chest with Spider,6,2008,Trans-Dark Blue,1 +Castle,Advent Calendar 2008 Castle (Day 8) - Archery Target,6,2008,White,1 +Castle,Advent Calendar 2008 Castle (Day 23) - Treasure Chest with Spider,6,2008,Black,1 +Castle,Advent Calendar 2008 Castle (Day 1) - Soldier with Spear,5,2008,Dark Blue,1 +Castle,Advent Calendar 2008 Castle (Day 1) - Soldier with Spear,5,2008,Light Bluish Gray,1 +Castle,Advent Calendar 2008 Castle (Day 1) - Soldier with Spear,5,2008,Metallic Silver,1 +Castle,Advent Calendar 2008 Castle (Day 1) - Soldier with Spear,5,2008,Pearl Light Gray,1 +Castle,Advent Calendar 2008 Castle (Day 1) - Soldier with Spear,5,2008,Yellow,1 +Castle,Advent Calendar 2008 Castle (Day 7) - Castle Soldier with Sword,5,2008,Dark Bluish Gray,1 +Castle,Advent Calendar 2008 Castle (Day 7) - Castle Soldier with Sword,5,2008,Light Bluish Gray,1 +Castle,Advent Calendar 2008 Castle (Day 7) - Castle Soldier with Sword,5,2008,Metallic Silver,1 +Castle,Advent Calendar 2008 Castle (Day 7) - Castle Soldier with Sword,5,2008,Pearl Light Gray,1 +Castle,Advent Calendar 2008 Castle (Day 7) - Castle Soldier with Sword,5,2008,Yellow,1 +Castle,Advent Calendar 2008 Castle (Day 17) - Crystal Ball,5,2008,Trans-Neon Green,1 +Castle,Advent Calendar 2008 Castle (Day 21) - Troll Warrior,5,2008,Copper,1 +Castle,Advent Calendar 2008 Castle (Day 21) - Troll Warrior,5,2008,Reddish Brown,2 +Castle,Advent Calendar 2008 Castle (Day 21) - Troll Warrior,5,2008,Sand Green,1 +Castle,Advent Calendar 2008 Castle (Day 14) - Evil Witch,5,2008,Black,3 +Castle,Advent Calendar 2008 Castle (Day 14) - Evil Witch,5,2008,Trans-Light Blue,1 +Castle,Advent Calendar 2008 Castle (Day 14) - Evil Witch,5,2008,Yellow,1 +Castle,Advent Calendar 2008 Castle (Day 17) - Crystal Ball,5,2008,Black,1 +Castle,Advent Calendar 2008 Castle (Day 17) - Crystal Ball,5,2008,Red,1 +Castle,Advent Calendar 2008 Castle (Day 17) - Crystal Ball,5,2008,Reddish Brown,1 +Castle,Advent Calendar 2008 Castle (Day 17) - Crystal Ball,5,2008,Trans-Clear,1 +Castle,Advent Calendar 2008 Castle (Day 21) - Troll Warrior,5,2008,Speckle Black-Silver,1 +Castle,Advent Calendar 2008 Castle (Day 13) - Tools Storage with Frog,4,2008,Black,1 +Castle,Advent Calendar 2008 Castle (Day 13) - Tools Storage with Frog,4,2008,Dark Bluish Gray,1 +Castle,Advent Calendar 2008 Castle (Day 13) - Tools Storage with Frog,4,2008,Green,1 +Castle,Advent Calendar 2008 Castle (Day 13) - Tools Storage with Frog,4,2008,Reddish Brown,1 +Castle,Advent Calendar 2008 Castle (Day 19) - Food Basket,4,2008,Bright Green,2 +Castle,Advent Calendar 2008 Castle (Day 19) - Food Basket,4,2008,Orange,1 +Castle,Advent Calendar 2008 Castle (Day 19) - Food Basket,4,2008,Reddish Brown,1 +Castle,Advent Calendar 2008 Castle (Day 24) - Jester,4,2008,Blue,1 +Castle,Advent Calendar 2008 Castle (Day 24) - Jester,4,2008,Red,2 +Castle,Advent Calendar 2008 Castle (Day 24) - Jester,4,2008,Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 11) - Dungeon Cell Window with Handcuffs,14,2010,Light Bluish Gray,2 +Castle,Advent Calendar 2010 Kingdoms (Day 11) - Dungeon Cell Window with Handcuffs,14,2010,Dark Bluish Gray,4 +Castle,Advent Calendar 2010 Kingdoms (Day 11) - Dungeon Cell Window with Handcuffs,14,2010,Black,3 +Castle,Advent Calendar 2010 Kingdoms (Day 2) - Anvil and Forge with Sword,13,2010,Trans-Neon Orange,1 +Castle,Advent Calendar 2010 Kingdoms (Day 2) - Anvil and Forge with Sword,13,2010,Black,6 +Castle,Advent Calendar 2010 Kingdoms (Day 2) - Anvil and Forge with Sword,13,2010,Dark Bluish Gray,2 +Castle,Advent Calendar 2010 Kingdoms (Day 2) - Anvil and Forge with Sword,13,2010,Pearl Gold,1 +Castle,Advent Calendar 2010 Kingdoms (Day 2) - Anvil and Forge with Sword,13,2010,Pearl Light Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 2) - Anvil and Forge with Sword,13,2010,Reddish Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,12,2010,Reddish Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,12,2010,Trans-Green,1 +Castle,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,12,2010,Trans-Neon Orange,1 +Castle,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,12,2010,Trans-Red,1 +Castle,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,12,2010,Black,3 +Castle,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,12,2010,Dark Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,12,2010,Metallic Silver,1 +Castle,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,12,2010,Pearl Gold,1 +Castle,Advent Calendar 2010 Kingdoms (Day 3) - Weapons Rack,11,2010,Dark Bluish Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 3) - Weapons Rack,11,2010,Light Bluish Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 3) - Weapons Rack,11,2010,Pearl Dark Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 3) - Weapons Rack,11,2010,Pearl Light Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 3) - Weapons Rack,11,2010,Reddish Brown,3 +Castle,Advent Calendar 2010 Kingdoms (Day 17) - Keg with Tap,9,2010,Light Bluish Gray,2 +Castle,Advent Calendar 2010 Kingdoms (Day 17) - Keg with Tap,9,2010,Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 17) - Keg with Tap,9,2010,Dark Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 17) - Keg with Tap,9,2010,Reddish Brown,3 +Castle,Advent Calendar 2010 Kingdoms (Day 5) - Weapons Cart with Spear,9,2010,Light Bluish Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 5) - Weapons Cart with Spear,9,2010,Black,2 +Castle,Advent Calendar 2010 Kingdoms (Day 5) - Weapons Cart with Spear,9,2010,Red,1 +Castle,Advent Calendar 2010 Kingdoms (Day 5) - Weapons Cart with Spear,9,2010,Reddish Brown,2 +Castle,Advent Calendar 2010 Kingdoms (Day 15) - Jousting Dummy with Helmet and Halberd,8,2010,Pearl Dark Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 15) - Jousting Dummy with Helmet and Halberd,8,2010,Black,2 +Castle,Advent Calendar 2010 Kingdoms (Day 15) - Jousting Dummy with Helmet and Halberd,8,2010,Metallic Silver,1 +Castle,Advent Calendar 2010 Kingdoms (Day 15) - Jousting Dummy with Helmet and Halberd,8,2010,Light Bluish Gray,2 +Castle,Advent Calendar 2010 Kingdoms (Day 15) - Jousting Dummy with Helmet and Halberd,8,2010,Dark Bluish Gray,2 +Castle,Advent Calendar 2010 Kingdoms (Day 20) - Catapult,7,2010,Dark Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 8) - Throne,7,2010,Red,2 +Castle,Advent Calendar 2010 Kingdoms (Day 8) - Throne,7,2010,Reddish Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 20) - Catapult,7,2010,Dark Bluish Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 20) - Catapult,7,2010,Black,1 +Castle,Advent Calendar 2010 Kingdoms (Day 6) - Armor Rack with Plate Armor and Helmet,7,2010,Red,1 +Castle,Advent Calendar 2010 Kingdoms (Day 20) - Catapult,7,2010,Tan,1 +Castle,Advent Calendar 2010 Kingdoms (Day 6) - Armor Rack with Plate Armor and Helmet,7,2010,Reddish Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 20) - Catapult,7,2010,Light Bluish Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 20) - Catapult,7,2010,Green,1 +Castle,Advent Calendar 2010 Kingdoms (Day 6) - Armor Rack with Plate Armor and Helmet,7,2010,Dark Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 6) - Armor Rack with Plate Armor and Helmet,7,2010,Dark Tan,1 +Castle,Advent Calendar 2010 Kingdoms (Day 6) - Armor Rack with Plate Armor and Helmet,7,2010,Metallic Silver,1 +Castle,Advent Calendar 2010 Kingdoms (Day 6) - Armor Rack with Plate Armor and Helmet,7,2010,Pearl Light Gray,2 +Castle,Advent Calendar 2010 Kingdoms (Day 8) - Throne,7,2010,Pearl Gold,3 +Castle,Advent Calendar 2010 Kingdoms (Day 14) - Sword in the Stone,6,2010,Light Bluish Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 14) - Sword in the Stone,6,2010,Pearl Dark Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 22) - Owl in Tree,6,2010,Green,1 +Castle,Advent Calendar 2010 Kingdoms (Day 7) - Queen with Frog,6,2010,Black,1 +Castle,Advent Calendar 2010 Kingdoms (Day 21) - Lion Knight Scale Mail with Quiver and Crossbow,6,2010,Dark Bluish Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 21) - Lion Knight Scale Mail with Quiver and Crossbow,6,2010,Light Bluish Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 21) - Lion Knight Scale Mail with Quiver and Crossbow,6,2010,Metallic Silver,1 +Castle,Advent Calendar 2010 Kingdoms (Day 21) - Lion Knight Scale Mail with Quiver and Crossbow,6,2010,Reddish Brown,2 +Castle,Advent Calendar 2010 Kingdoms (Day 21) - Lion Knight Scale Mail with Quiver and Crossbow,6,2010,Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 22) - Owl in Tree,6,2010,Reddish Brown,2 +Castle,Advent Calendar 2010 Kingdoms (Day 22) - Owl in Tree,6,2010,White,1 +Castle,Advent Calendar 2010 Kingdoms (Day 7) - Queen with Frog,6,2010,Green,1 +Castle,Advent Calendar 2010 Kingdoms (Day 7) - Queen with Frog,6,2010,Red,2 +Castle,Advent Calendar 2010 Kingdoms (Day 7) - Queen with Frog,6,2010,Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 10) - Skeleton,6,2010,White,4 +Castle,Advent Calendar 2010 Kingdoms (Day 7) - Queen with Frog,6,2010,Pearl Gold,1 +Castle,Advent Calendar 2010 Kingdoms (Day 24) - Blue Wizard with Wand,6,2010,Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 14) - Sword in the Stone,6,2010,Dark Bluish Gray,2 +Castle,Advent Calendar 2010 Kingdoms (Day 14) - Sword in the Stone,6,2010,Green,1 +Castle,Advent Calendar 2010 Kingdoms (Day 24) - Blue Wizard with Wand,6,2010,Blue,3 +Castle,Advent Calendar 2010 Kingdoms (Day 24) - Blue Wizard with Wand,6,2010,Trans-Neon Green,1 +Castle,Advent Calendar 2010 Kingdoms (Day 24) - Blue Wizard with Wand,6,2010,White,1 +Castle,Advent Calendar 2010 Kingdoms (Day 19) - Lion Knight with Spear,5,2010,Metallic Silver,1 +Castle,Advent Calendar 2010 Kingdoms (Day 13) - Prince with Sword,5,2010,Black,1 +Castle,Advent Calendar 2010 Kingdoms (Day 19) - Lion Knight with Spear,5,2010,Red,1 +Castle,Advent Calendar 2010 Kingdoms (Day 13) - Prince with Sword,5,2010,Dark Red,2 +Castle,Advent Calendar 2010 Kingdoms (Day 4) - Dragon Knight with Flail,5,2010,Black,2 +Castle,Advent Calendar 2010 Kingdoms (Day 1) - Blacksmith with Hammer,5,2010,Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 1) - Blacksmith with Hammer,5,2010,Reddish Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 1) - Blacksmith with Hammer,5,2010,Dark Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 1) - Blacksmith with Hammer,5,2010,Black,2 +Castle,Advent Calendar 2010 Kingdoms (Day 13) - Prince with Sword,5,2010,Pearl Light Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 13) - Prince with Sword,5,2010,Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 9) - Chest with Jewels,5,2010,Trans-Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 9) - Chest with Jewels,5,2010,Trans-Red,1 +Castle,Advent Calendar 2010 Kingdoms (Day 9) - Chest with Jewels,5,2010,Trans-Clear,1 +Castle,Advent Calendar 2010 Kingdoms (Day 19) - Lion Knight with Spear,5,2010,Pearl Light Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 9) - Chest with Jewels,5,2010,Reddish Brown,2 +Castle,Advent Calendar 2010 Kingdoms (Day 4) - Dragon Knight with Flail,5,2010,Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 4) - Dragon Knight with Flail,5,2010,Pearl Light Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 4) - Dragon Knight with Flail,5,2010,Pearl Dark Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 4) - Dragon Knight with Flail,5,2010,Flat Silver,1 +Castle,Advent Calendar 2010 Kingdoms (Day 19) - Lion Knight with Spear,5,2010,Light Bluish Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 19) - Lion Knight with Spear,5,2010,Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 16) - Barmaid,4,2010,Black,2 +Castle,Advent Calendar 2010 Kingdoms (Day 16) - Barmaid,4,2010,Dark Brown,1 +Castle,Advent Calendar 2010 Kingdoms (Day 16) - Barmaid,4,2010,Yellow,1 +Castle,Advent Calendar 2010 Kingdoms (Day 18) - Cauldron,3,2010,Black,1 +Castle,Advent Calendar 2010 Kingdoms (Day 18) - Cauldron,3,2010,Bright Green,1 +Castle,Advent Calendar 2010 Kingdoms (Day 18) - Cauldron,3,2010,Dark Bluish Gray,1 +Castle,Advent Calendar 2010 Kingdoms (Day 12) - Pig with Apple,2,2010,Flesh,1 +Castle,Advent Calendar 2010 Kingdoms (Day 12) - Pig with Apple,2,2010,Bright Green,1 +Castle,Knight and Castle Building Set,145,2011,Black,4 +Castle,Knight and Castle Building Set,145,2011,Blue,2 +Castle,Knight and Castle Building Set,145,2011,Bright Green,1 +Castle,Knight and Castle Building Set,145,2011,Dark Bluish Gray,13 +Castle,Knight and Castle Building Set,145,2011,Green,7 +Castle,Knight and Castle Building Set,145,2011,Light Bluish Gray,9 +Castle,Knight and Castle Building Set,145,2011,Lime,5 +Castle,Knight and Castle Building Set,145,2011,Orange,2 +Castle,Knight and Castle Building Set,145,2011,Pearl Dark Gray,1 +Castle,Knight and Castle Building Set,145,2011,Red,9 +Castle,Knight and Castle Building Set,145,2011,Reddish Brown,4 +Castle,Knight and Castle Building Set,145,2011,Trans-Orange,2 +Castle,Knight and Castle Building Set,145,2011,Trans-Red,1 +Castle,Knight and Castle Building Set,145,2011,White,4 +Castle,Knight and Castle Building Set,145,2011,Yellow,3 +Castle,King’s Castle,999,2013,Reddish Brown,34 +Castle,King’s Castle,999,2013,Tan,4 +Castle,King’s Castle,999,2013,Trans-Black,1 +Castle,King’s Castle,999,2013,Trans-Clear,1 +Castle,King’s Castle,999,2013,Yellow,8 +Castle,King’s Castle,999,2013,White,5 +Castle,King’s Castle,999,2013,Trans-Red,1 +Castle,King’s Castle,999,2013,Trans-Orange,1 +Castle,King’s Castle,999,2013,[No Color],1 +Castle,King’s Castle,999,2013,Black,32 +Castle,King’s Castle,999,2013,Blue,19 +Castle,King’s Castle,999,2013,Chrome Gold,5 +Castle,King’s Castle,999,2013,Dark Blue,3 +Castle,King’s Castle,999,2013,Dark Bluish Gray,48 +Castle,King’s Castle,999,2013,Dark Brown,3 +Castle,King’s Castle,999,2013,Dark Tan,3 +Castle,King’s Castle,999,2013,Flat Silver,4 +Castle,King’s Castle,999,2013,Green,6 +Castle,King’s Castle,999,2013,Light Bluish Gray,38 +Castle,King’s Castle,999,2013,Metallic Gold,1 +Castle,King’s Castle,999,2013,Trans-Green,1 +Castle,King’s Castle,999,2013,Metallic Silver,2 +Castle,King’s Castle,999,2013,Orange,1 +Castle,King’s Castle,999,2013,Pearl Dark Gray,4 +Castle,King’s Castle,999,2013,Pearl Gold,8 +Castle,King’s Castle,999,2013,Red,14 +Castle,Dragon Mountain,380,2013,Black,32 +Castle,Dragon Mountain,380,2013,Blue,7 +Castle,Dragon Mountain,380,2013,Bright Green,1 +Castle,Dragon Mountain,380,2013,Chrome Gold,5 +Castle,Dragon Mountain,380,2013,Dark Bluish Gray,30 +Castle,Dragon Mountain,380,2013,Dark Brown,2 +Castle,Dragon Mountain,380,2013,Dark Green,2 +Castle,Dragon Mountain,380,2013,Dark Red,1 +Castle,Dragon Mountain,380,2013,Dark Tan,6 +Castle,Dragon Mountain,380,2013,Flat Silver,6 +Castle,Dragon Mountain,380,2013,Green,4 +Castle,Dragon Mountain,380,2013,Light Bluish Gray,24 +Castle,Dragon Mountain,380,2013,Metallic Silver,1 +Castle,Dragon Mountain,380,2013,Orange,1 +Castle,Dragon Mountain,380,2013,Pearl Dark Gray,2 +Castle,Dragon Mountain,380,2013,Pearl Gold,7 +Castle,Dragon Mountain,380,2013,Red,17 +Castle,Dragon Mountain,380,2013,Reddish Brown,14 +Castle,Dragon Mountain,380,2013,Tan,4 +Castle,Dragon Mountain,380,2013,Trans-Green,1 +Castle,Dragon Mountain,380,2013,Trans-Red,4 +Castle,Dragon Mountain,380,2013,White,5 +Castle,Dragon Mountain,380,2013,Yellow,6 +Castle,Dragon Mountain,380,2013,Trans-Neon Orange,3 +Castle,The Gatehouse Raid,247,2013,Black,20 +Castle,The Gatehouse Raid,247,2013,Trans-Orange,1 +Castle,The Gatehouse Raid,247,2013,Trans-Neon Orange,1 +Castle,The Gatehouse Raid,247,2013,[No Color],1 +Castle,The Gatehouse Raid,247,2013,Reddish Brown,7 +Castle,The Gatehouse Raid,247,2013,Red,8 +Castle,The Gatehouse Raid,247,2013,Pearl Dark Gray,3 +Castle,The Gatehouse Raid,247,2013,Pearl Gold,3 +Castle,The Gatehouse Raid,247,2013,Metallic Silver,2 +Castle,The Gatehouse Raid,247,2013,Light Bluish Gray,16 +Castle,The Gatehouse Raid,247,2013,Green,2 +Castle,The Gatehouse Raid,247,2013,Flat Silver,4 +Castle,The Gatehouse Raid,247,2013,Dark Tan,2 +Castle,The Gatehouse Raid,247,2013,Dark Brown,2 +Castle,The Gatehouse Raid,247,2013,Dark Bluish Gray,20 +Castle,The Gatehouse Raid,247,2013,Blue,6 +Castle,The Gatehouse Raid,247,2013,Yellow,4 +Castle,Gold Getaway,200,2013,Trans-Green,1 +Castle,Gold Getaway,200,2013,Black,25 +Castle,Gold Getaway,200,2013,Blue,6 +Castle,Gold Getaway,200,2013,Dark Bluish Gray,22 +Castle,Gold Getaway,200,2013,Dark Brown,1 +Castle,Gold Getaway,200,2013,Flat Silver,1 +Castle,Gold Getaway,200,2013,Green,4 +Castle,Gold Getaway,200,2013,Light Bluish Gray,10 +Castle,Gold Getaway,200,2013,Metallic Silver,2 +Castle,Gold Getaway,200,2013,Trans-Yellow,1 +Castle,Gold Getaway,200,2013,Pearl Gold,3 +Castle,Gold Getaway,200,2013,Red,10 +Castle,Gold Getaway,200,2013,Reddish Brown,15 +Castle,Gold Getaway,200,2013,Yellow,3 +Castle,Gold Getaway,200,2013,Trans-Red,1 +Castle,Gold Getaway,200,2013,Trans-Neon Orange,1 +Castle,Gold Getaway,200,2013,Pearl Dark Gray,4 +Castle,Forest Ambush,90,2013,Tan,2 +Castle,Forest Ambush,90,2013,Yellow,4 +Castle,Forest Ambush,90,2013,Trans-Yellow,1 +Castle,Forest Ambush,90,2013,Trans-Red,1 +Castle,Forest Ambush,90,2013,Trans-Green,1 +Castle,Forest Ambush,90,2013,Black,8 +Castle,Forest Ambush,90,2013,Reddish Brown,10 +Castle,Forest Ambush,90,2013,Red,1 +Castle,Forest Ambush,90,2013,Pearl Gold,4 +Castle,Forest Ambush,90,2013,Pearl Dark Gray,3 +Castle,Forest Ambush,90,2013,Metallic Silver,2 +Castle,Forest Ambush,90,2013,Light Bluish Gray,4 +Castle,Forest Ambush,90,2013,Medium Dark Flesh,1 +Castle,Forest Ambush,90,2013,Green,5 +Castle,Forest Ambush,90,2013,Flat Silver,3 +Castle,Forest Ambush,90,2013,Bright Green,2 +Castle,Forest Ambush,90,2013,Blue,3 +Castle,Forest Ambush,90,2013,Dark Bluish Gray,8 +Chamber of Secrets,Chamber of Secrets,597,2002,Yellow,6 +Chamber of Secrets,Chamber of Secrets,597,2002,Aqua,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Black,39 +Chamber of Secrets,Chamber of Secrets,597,2002,Brown,2 +Chamber of Secrets,Chamber of Secrets,597,2002,Chrome Silver,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Dark Gray,33 +Chamber of Secrets,Chamber of Secrets,597,2002,Dark Orange,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Earth Orange,2 +Chamber of Secrets,Chamber of Secrets,597,2002,Glow In Dark Opaque,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Light Gray,44 +Chamber of Secrets,Chamber of Secrets,597,2002,Red,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Sand Green,14 +Chamber of Secrets,Chamber of Secrets,597,2002,Sand Red,3 +Chamber of Secrets,Chamber of Secrets,597,2002,Tan,6 +Chamber of Secrets,Chamber of Secrets,597,2002,Trans-Clear,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Trans-Green,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Trans-Light Blue,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Trans-Neon Green,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Trans-Neon Orange,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Trans-Red,1 +Chamber of Secrets,Chamber of Secrets,597,2002,Trans-Yellow,1 +Chamber of Secrets,Chamber of Secrets,597,2002,White,5 +Chamber of Secrets,Dumbledore's Office,451,2002,Yellow,3 +Chamber of Secrets,Dumbledore's Office,451,2002,Black,26 +Chamber of Secrets,Dumbledore's Office,451,2002,Brown,6 +Chamber of Secrets,Dumbledore's Office,451,2002,Chrome Antique Brass,1 +Chamber of Secrets,Dumbledore's Office,451,2002,Dark Gray,19 +Chamber of Secrets,Dumbledore's Office,451,2002,Green,4 +Chamber of Secrets,Dumbledore's Office,451,2002,Light Gray,34 +Chamber of Secrets,Dumbledore's Office,451,2002,Purple,3 +Chamber of Secrets,Dumbledore's Office,451,2002,Red,1 +Chamber of Secrets,Dumbledore's Office,451,2002,Sand Green,11 +Chamber of Secrets,Dumbledore's Office,451,2002,Tan,18 +Chamber of Secrets,Dumbledore's Office,451,2002,Trans-Dark Blue,2 +Chamber of Secrets,Dumbledore's Office,451,2002,Trans-Green,1 +Chamber of Secrets,Dumbledore's Office,451,2002,Trans-Neon Green,1 +Chamber of Secrets,Dumbledore's Office,451,2002,Trans-Neon Orange,2 +Chamber of Secrets,Dumbledore's Office,451,2002,Trans-Purple,2 +Chamber of Secrets,Dumbledore's Office,451,2002,Trans-Red,2 +Chamber of Secrets,Dumbledore's Office,451,2002,White,3 +Chamber of Secrets,Escape from Privet Drive,282,2002,Black,23 +Chamber of Secrets,Escape from Privet Drive,282,2002,Blue,1 +Chamber of Secrets,Escape from Privet Drive,282,2002,Brown,7 +Chamber of Secrets,Escape from Privet Drive,282,2002,Chrome Silver,1 +Chamber of Secrets,Escape from Privet Drive,282,2002,Dark Gray,13 +Chamber of Secrets,Escape from Privet Drive,282,2002,Dark Orange,9 +Chamber of Secrets,Escape from Privet Drive,282,2002,Earth Orange,2 +Chamber of Secrets,Escape from Privet Drive,282,2002,Green,1 +Chamber of Secrets,Escape from Privet Drive,282,2002,Light Gray,24 +Chamber of Secrets,Escape from Privet Drive,282,2002,Medium Blue,24 +Chamber of Secrets,Escape from Privet Drive,282,2002,Red,3 +Chamber of Secrets,Escape from Privet Drive,282,2002,Sand Green,1 +Chamber of Secrets,Escape from Privet Drive,282,2002,Tan,9 +Chamber of Secrets,Escape from Privet Drive,282,2002,Trans-Clear,5 +Chamber of Secrets,Escape from Privet Drive,282,2002,Trans-Red,2 +Chamber of Secrets,Escape from Privet Drive,282,2002,Trans-Yellow,1 +Chamber of Secrets,Escape from Privet Drive,282,2002,White,8 +Chamber of Secrets,Escape from Privet Drive,282,2002,Yellow,3 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Brown,14 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Chrome Gold,4 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Dark Blue,1 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Dark Gray,14 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Earth Orange,1 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Light Gray,9 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Green,7 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Sand Green,1 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Tan,1 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Trans-Red,1 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Yellow,2 +Chamber of Secrets,Aragog in the Dark Forest,183,2002,Black,31 +Chamber of Secrets,The Dueling Club,133,2002,Tan,12 +Chamber of Secrets,The Dueling Club,133,2002,Sand Green,5 +Chamber of Secrets,The Dueling Club,133,2002,Light Gray,13 +Chamber of Secrets,The Dueling Club,133,2002,Glow In Dark Opaque,1 +Chamber of Secrets,The Dueling Club,133,2002,Dark Gray,13 +Chamber of Secrets,The Dueling Club,133,2002,Brown,3 +Chamber of Secrets,The Dueling Club,133,2002,Black,12 +Chamber of Secrets,The Dueling Club,133,2002,Green,3 +Chamber of Secrets,The Dueling Club,133,2002,Yellow,4 +Chamber of Secrets,The Dueling Club,133,2002,Trans-Neon Orange,1 +Chamber of Secrets,Quidditch Practice,131,2002,Black,11 +Chamber of Secrets,Quidditch Practice,131,2002,Tan,9 +Chamber of Secrets,Quidditch Practice,131,2002,[No Color],1 +Chamber of Secrets,Quidditch Practice,131,2002,Blue,1 +Chamber of Secrets,Quidditch Practice,131,2002,Brown,4 +Chamber of Secrets,Quidditch Practice,131,2002,Chrome Gold,1 +Chamber of Secrets,Quidditch Practice,131,2002,Dark Gray,9 +Chamber of Secrets,Quidditch Practice,131,2002,Dark Red,1 +Chamber of Secrets,Quidditch Practice,131,2002,Green,11 +Chamber of Secrets,Quidditch Practice,131,2002,Light Gray,23 +Chamber of Secrets,Quidditch Practice,131,2002,Red,11 +Chamber of Secrets,Quidditch Practice,131,2002,Trans-Dark Blue,1 +Chamber of Secrets,Quidditch Practice,131,2002,White,3 +Chamber of Secrets,Quidditch Practice,131,2002,Yellow,3 +Chamber of Secrets,Slytherin,93,2002,Brown,3 +Chamber of Secrets,Slytherin,93,2002,Dark Gray,6 +Chamber of Secrets,Slytherin,93,2002,Green,3 +Chamber of Secrets,Slytherin,93,2002,Light Gray,10 +Chamber of Secrets,Slytherin,93,2002,Tan,1 +Chamber of Secrets,Slytherin,93,2002,Trans-Clear,1 +Chamber of Secrets,Slytherin,93,2002,Trans-Dark Blue,1 +Chamber of Secrets,Slytherin,93,2002,Trans-Green,2 +Chamber of Secrets,Slytherin,93,2002,Trans-Neon Green,1 +Chamber of Secrets,Slytherin,93,2002,Trans-Neon Orange,1 +Chamber of Secrets,Slytherin,93,2002,Trans-Red,2 +Chamber of Secrets,Slytherin,93,2002,White,1 +Chamber of Secrets,Slytherin,93,2002,Black,16 +Chamber of Secrets,Slytherin,93,2002,Yellow,3 +Chamber of Secrets,Dobby's Release,71,2002,White,2 +Chamber of Secrets,Dobby's Release,71,2002,Trans-Neon Orange,1 +Chamber of Secrets,Dobby's Release,71,2002,Sand Green,3 +Chamber of Secrets,Dobby's Release,71,2002,Black,9 +Chamber of Secrets,Dobby's Release,71,2002,Light Gray,13 +Chamber of Secrets,Dobby's Release,71,2002,Dark Gray,7 +Chamber of Secrets,Dobby's Release,71,2002,Brown,3 +Chamber of Secrets,Dobby's Release,71,2002,Tan,12 +Chamber of Secrets,Dobby's Release,71,2002,Yellow,1 +Chamber of Secrets,Knockturn Alley,211,2003,Black,35 +Chamber of Secrets,Knockturn Alley,211,2003,Blue,1 +Chamber of Secrets,Knockturn Alley,211,2003,Dark Blue,6 +Chamber of Secrets,Knockturn Alley,211,2003,Dark Gray,16 +Chamber of Secrets,Knockturn Alley,211,2003,Light Gray,6 +Chamber of Secrets,Knockturn Alley,211,2003,Red,1 +Chamber of Secrets,Knockturn Alley,211,2003,Sand Blue,15 +Chamber of Secrets,Knockturn Alley,211,2003,Sand Green,1 +Chamber of Secrets,Knockturn Alley,211,2003,Tan,2 +Chamber of Secrets,Knockturn Alley,211,2003,Trans-Clear,1 +Chamber of Secrets,Knockturn Alley,211,2003,Trans-Dark Blue,1 +Chamber of Secrets,Knockturn Alley,211,2003,Trans-Green,2 +Chamber of Secrets,Knockturn Alley,211,2003,Trans-Neon Green,2 +Chamber of Secrets,Knockturn Alley,211,2003,Trans-Neon Orange,1 +Chamber of Secrets,Knockturn Alley,211,2003,Trans-Purple,1 +Chamber of Secrets,Knockturn Alley,211,2003,Trans-Red,3 +Chamber of Secrets,Knockturn Alley,211,2003,White,2 +Chamber of Secrets,Knockturn Alley,211,2003,Yellow,2 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Black,11 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Blue,1 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Brown,7 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Chrome Antique Brass,1 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Dark Gray,6 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Dark Orange,4 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Earth Orange,1 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Green,2 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Light Gray,17 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Red,3 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Sand Green,6 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Tan,2 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Trans-Clear,2 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Trans-Yellow,1 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,White,1 +Chamber of Secrets,Quality Quidditch Supplies,121,2003,Yellow,1 +Christmas,Santa with Sleigh and Reindeer,68,1977,Black,7 +Christmas,Santa with Sleigh and Reindeer,68,1977,Blue,6 +Christmas,Santa with Sleigh and Reindeer,68,1977,Red,6 +Christmas,Santa with Sleigh and Reindeer,68,1977,White,8 +Christmas,Santa with Sleigh and Reindeer,68,1977,Yellow,4 +Christmas,Winter Holiday Train,737,2016,Chrome Silver,1 +Christmas,Winter Holiday Train,737,2016,Dark Blue,4 +Christmas,Winter Holiday Train,737,2016,Dark Bluish Gray,10 +Christmas,Winter Holiday Train,737,2016,Dark Brown,1 +Christmas,Winter Holiday Train,737,2016,Dark Green,1 +Christmas,Winter Holiday Train,737,2016,Dark Purple,1 +Christmas,Winter Holiday Train,737,2016,Dark Red,3 +Christmas,Winter Holiday Train,737,2016,Dark Tan,6 +Christmas,Winter Holiday Train,737,2016,Flat Silver,1 +Christmas,Winter Holiday Train,737,2016,Green,14 +Christmas,Winter Holiday Train,737,2016,Lavender,1 +Christmas,Winter Holiday Train,737,2016,Light Bluish Gray,24 +Christmas,Winter Holiday Train,737,2016,Medium Blue,3 +Christmas,Winter Holiday Train,737,2016,Pearl Gold,13 +Christmas,Winter Holiday Train,737,2016,Medium Dark Flesh,1 +Christmas,Winter Holiday Train,737,2016,Orange,1 +Christmas,Winter Holiday Train,737,2016,Yellow,13 +Christmas,Winter Holiday Train,737,2016,Red,30 +Christmas,Winter Holiday Train,737,2016,Reddish Brown,10 +Christmas,Winter Holiday Train,737,2016,Tan,8 +Christmas,Winter Holiday Train,737,2016,Trans-Bright Green,1 +Christmas,Winter Holiday Train,737,2016,Trans-Clear,10 +Christmas,Winter Holiday Train,737,2016,Trans-Dark Blue,2 +Christmas,Winter Holiday Train,737,2016,Trans-Green,1 +Christmas,Winter Holiday Train,737,2016,Trans-Orange,1 +Christmas,Winter Holiday Train,737,2016,Trans-Red,2 +Christmas,Winter Holiday Train,737,2016,Trans-Yellow,4 +Christmas,Winter Holiday Train,737,2016,White,26 +Christmas,Winter Holiday Train,737,2016,Black,63 +Christmas,Winter Holiday Train,737,2016,Blue,12 +Christmas,Winter Holiday Train,737,2016,Bright Green,1 +Christmas,Winter Holiday Train,737,2016,Bright Light Orange,1 +Christmas,Santa,155,2016,Dark Bluish Gray,1 +Christmas,Santa,155,2016,Blue,1 +Christmas,Santa,155,2016,Tan,9 +Christmas,Santa,155,2016,Black,7 +Christmas,Santa,155,2016,Dark Green,7 +Christmas,Santa,155,2016,Pearl Gold,1 +Christmas,Santa,155,2016,Red,13 +Christmas,Santa,155,2016,Reddish Brown,3 +Christmas,Santa,155,2016,White,20 +Christmas,Santa,155,2016,Yellow,1 +Christmas,Santa,155,2016,Light Bluish Gray,1 +Christmas,Reindeer,77,2016,Blue,1 +Christmas,Reindeer,77,2016,Dark Brown,1 +Christmas,Reindeer,77,2016,Green,2 +Christmas,Reindeer,77,2016,Pearl Gold,1 +Christmas,Reindeer,77,2016,Reddish Brown,4 +Christmas,Reindeer,77,2016,Tan,3 +Christmas,Reindeer,77,2016,Red,3 +Christmas,Reindeer,77,2016,Black,6 +Christmas,Reindeer,77,2016,White,7 +Christmas,Toy Soldier,34,2016,Light Bluish Gray,1 +Christmas,Toy Soldier,34,2016,Metallic Gold,1 +Christmas,Toy Soldier,34,2016,Pearl Gold,1 +Christmas,Toy Soldier,34,2016,Red,4 +Christmas,Toy Soldier,34,2016,Reddish Brown,3 +Christmas,Toy Soldier,34,2016,Tan,3 +Christmas,Toy Soldier,34,2016,White,3 +Christmas,Toy Soldier,34,2016,Black,7 +City,Advent Calendar 2005 City (Day 24) Santa & Sled,23,2005,Yellow,2 +City,Advent Calendar 2005 City (Day 24) Santa & Sled,23,2005,White,2 +City,Advent Calendar 2005 City (Day 24) Santa & Sled,23,2005,Blue,1 +City,Advent Calendar 2005 City (Day 24) Santa & Sled,23,2005,Dark Bluish Gray,3 +City,Advent Calendar 2005 City (Day 24) Santa & Sled,23,2005,Green,2 +City,Advent Calendar 2005 City (Day 24) Santa & Sled,23,2005,Light Bluish Gray,2 +City,Advent Calendar 2005 City (Day 24) Santa & Sled,23,2005,Red,4 +City,Advent Calendar 2005 City (Day 24) Santa & Sled,23,2005,Reddish Brown,2 +City,Advent Calendar 2005 City (Day 13) Crossing Gate,13,2005,White,1 +City,Advent Calendar 2005 City (Day 13) Crossing Gate,13,2005,Light Bluish Gray,1 +City,Advent Calendar 2005 City (Day 13) Crossing Gate,13,2005,Trans-Red,1 +City,Advent Calendar 2005 City (Day 13) Crossing Gate,13,2005,Red,1 +City,Advent Calendar 2005 City (Day 13) Crossing Gate,13,2005,Black,3 +City,Advent Calendar 2005 City (Day 13) Crossing Gate,13,2005,Green,1 +City,Advent Calendar 2005 City (Day 8) Welding Tanks & Torch,12,2005,Yellow,2 +City,Advent Calendar 2005 City (Day 8) Welding Tanks & Torch,12,2005,Blue,2 +City,Advent Calendar 2005 City (Day 8) Welding Tanks & Torch,12,2005,Black,2 +City,Advent Calendar 2005 City (Day 7) Safe,12,2005,Trans-Red,1 +City,Advent Calendar 2005 City (Day 8) Welding Tanks & Torch,12,2005,Red,1 +City,Advent Calendar 2005 City (Day 7) Safe,12,2005,Trans-Neon Green,1 +City,Advent Calendar 2005 City (Day 7) Safe,12,2005,Light Bluish Gray,5 +City,Advent Calendar 2005 City (Day 7) Safe,12,2005,Dark Bluish Gray,1 +City,Advent Calendar 2005 City (Day 7) Safe,12,2005,Black,1 +City,Advent Calendar 2005 City (Day 8) Welding Tanks & Torch,12,2005,Dark Bluish Gray,1 +City,Advent Calendar 2005 City (Day 8) Welding Tanks & Torch,12,2005,Trans-Neon Orange,1 +City,Advent Calendar 2005 City (Day 16) Drill Press,11,2005,Dark Bluish Gray,3 +City,Advent Calendar 2005 City (Day 10) Wheelbarrow,11,2005,Yellow,4 +City,Advent Calendar 2005 City (Day 16) Drill Press,11,2005,Black,2 +City,Advent Calendar 2005 City (Day 16) Drill Press,11,2005,Light Bluish Gray,3 +City,Advent Calendar 2005 City (Day 16) Drill Press,11,2005,Green,3 +City,Advent Calendar 2005 City (Day 14) Signal Post,11,2005,White,1 +City,Advent Calendar 2005 City (Day 14) Signal Post,11,2005,Trans-Green,1 +City,Advent Calendar 2005 City (Day 23) Pizza Oven,11,2005,Black,2 +City,Advent Calendar 2005 City (Day 10) Wheelbarrow,11,2005,Reddish Brown,1 +City,Advent Calendar 2005 City (Day 23) Pizza Oven,11,2005,White,5 +City,Advent Calendar 2005 City (Day 14) Signal Post,11,2005,Dark Bluish Gray,1 +City,Advent Calendar 2005 City (Day 14) Signal Post,11,2005,Black,4 +City,Advent Calendar 2005 City (Day 14) Signal Post,11,2005,Trans-Red,1 +City,Advent Calendar 2005 City (Day 10) Wheelbarrow,11,2005,Black,2 +City,Advent Calendar 2005 City (Day 10) Wheelbarrow,11,2005,Dark Bluish Gray,1 +City,Advent Calendar 2005 City (Day 10) Wheelbarrow,11,2005,Light Bluish Gray,1 +City,Advent Calendar 2005 City (Day 23) Pizza Oven,11,2005,Reddish Brown,1 +City,Advent Calendar 2005 City (Day 2) Fire Hydrant Hose Airtanks,10,2005,Trans-Light Blue,1 +City,Advent Calendar 2005 City (Day 2) Fire Hydrant Hose Airtanks,10,2005,Yellow,2 +City,Advent Calendar 2005 City (Day 2) Fire Hydrant Hose Airtanks,10,2005,Black,1 +City,Advent Calendar 2005 City (Day 2) Fire Hydrant Hose Airtanks,10,2005,Dark Bluish Gray,1 +City,Advent Calendar 2005 City (Day 2) Fire Hydrant Hose Airtanks,10,2005,Light Bluish Gray,1 +City,Advent Calendar 2005 City (Day 2) Fire Hydrant Hose Airtanks,10,2005,Red,2 +City,Advent Calendar 2005 City (Day 11) Barricade,9,2005,Trans-Orange,2 +City,Advent Calendar 2005 City (Day 11) Barricade,9,2005,White,2 +City,Advent Calendar 2005 City (Day 11) Barricade,9,2005,Yellow,3 +City,Advent Calendar 2005 City (Day 19) RC Car,8,2005,Black,2 +City,Advent Calendar 2005 City (Day 5) Police Dog & Barricade,8,2005,White,2 +City,Advent Calendar 2005 City (Day 5) Police Dog & Barricade,8,2005,Trans-Dark Blue,1 +City,Advent Calendar 2005 City (Day 5) Police Dog & Barricade,8,2005,Orange,1 +City,Advent Calendar 2005 City (Day 5) Police Dog & Barricade,8,2005,Light Bluish Gray,1 +City,Advent Calendar 2005 City (Day 5) Police Dog & Barricade,8,2005,Dark Bluish Gray,1 +City,Advent Calendar 2005 City (Day 19) RC Car,8,2005,Yellow,3 +City,Advent Calendar 2005 City (Day 3) Rescue Bucket,7,2005,White,1 +City,Advent Calendar 2005 City (Day 3) Rescue Bucket,7,2005,Trans-Dark Blue,1 +City,Advent Calendar 2005 City (Day 3) Rescue Bucket,7,2005,Red,3 +City,Advent Calendar 2005 City (Day 17) Oil Barrel & Hand Truck,7,2005,Light Bluish Gray,1 +City,Advent Calendar 2005 City (Day 17) Oil Barrel & Hand Truck,7,2005,Red,2 +City,Advent Calendar 2005 City (Day 17) Oil Barrel & Hand Truck,7,2005,White,2 +City,Advent Calendar 2005 City (Day 3) Rescue Bucket,7,2005,Dark Bluish Gray,2 +City,Advent Calendar 2005 City (Day 17) Oil Barrel & Hand Truck,7,2005,Black,1 +City,Advent Calendar 2005 City (Day 17) Oil Barrel & Hand Truck,7,2005,Green,1 +City,Advent Calendar 2005 City (Day 22) Food Counter,6,2005,Trans-Clear,1 +City,Advent Calendar 2005 City (Day 12) Train Worker,6,2005,Black,1 +City,Advent Calendar 2005 City (Day 12) Train Worker,6,2005,Dark Bluish Gray,1 +City,Advent Calendar 2005 City (Day 12) Train Worker,6,2005,Orange,1 +City,Advent Calendar 2005 City (Day 12) Train Worker,6,2005,Trans-Red,1 +City,Advent Calendar 2005 City (Day 12) Train Worker,6,2005,White,1 +City,Advent Calendar 2005 City (Day 22) Food Counter,6,2005,Black,1 +City,Advent Calendar 2005 City (Day 22) Food Counter,6,2005,Trans-Black,1 +City,Advent Calendar 2005 City (Day 22) Food Counter,6,2005,White,2 +City,Advent Calendar 2005 City (Day 12) Train Worker,6,2005,Yellow,1 +City,Advent Calendar 2005 City (Day 18) Man with Radio,5,2005,Black,1 +City,Advent Calendar 2005 City (Day 18) Man with Radio,5,2005,Blue,1 +City,Advent Calendar 2005 City (Day 18) Man with Radio,5,2005,Red,1 +City,Advent Calendar 2005 City (Day 18) Man with Radio,5,2005,White,1 +City,Advent Calendar 2005 City (Day 18) Man with Radio,5,2005,Yellow,1 +City,Advent Calendar 2005 City (Day 9) Construction Worker,5,2005,Dark Bluish Gray,1 +City,Advent Calendar 2005 City (Day 6) Criminal and Buzz Saw,5,2005,White,1 +City,Advent Calendar 2005 City (Day 9) Construction Worker,5,2005,Yellow,1 +City,Advent Calendar 2005 City (Day 9) Construction Worker,5,2005,Red,1 +City,Advent Calendar 2005 City (Day 6) Criminal and Buzz Saw,5,2005,Black,1 +City,Advent Calendar 2005 City (Day 21) Pizza Chef,5,2005,White,3 +City,Advent Calendar 2005 City (Day 21) Pizza Chef,5,2005,Yellow,2 +City,Advent Calendar 2005 City (Day 6) Criminal and Buzz Saw,5,2005,Dark Bluish Gray,2 +City,Advent Calendar 2005 City (Day 15) Mechanic,5,2005,Black,1 +City,Advent Calendar 2005 City (Day 6) Criminal and Buzz Saw,5,2005,Yellow,1 +City,Advent Calendar 2005 City (Day 15) Mechanic,5,2005,Blue,2 +City,Advent Calendar 2005 City (Day 15) Mechanic,5,2005,Red,1 +City,Advent Calendar 2005 City (Day 15) Mechanic,5,2005,Yellow,1 +City,Advent Calendar 2005 City (Day 9) Construction Worker,5,2005,Orange,2 +City,Advent Calendar 2005 City (Day 4) Policeman,5,2005,Yellow,1 +City,Advent Calendar 2005 City (Day 4) Policeman,5,2005,Black,4 +City,Advent Calendar 2005 City (Day 1) Fireman,5,2005,Yellow,1 +City,Advent Calendar 2005 City (Day 1) Fireman,5,2005,White,1 +City,Advent Calendar 2005 City (Day 1) Fireman,5,2005,Black,3 +City,Advent Calendar 2005 City (Day 20) Skateboard & Helmet,4,2005,Black,1 +City,Advent Calendar 2005 City (Day 20) Skateboard & Helmet,4,2005,Blue,1 +City,Advent Calendar 2005 City (Day 20) Skateboard & Helmet,4,2005,White,1 +City,Advent Calendar 2014 City (Day 22) Christmas Tree,21,2014,Trans-Yellow,2 +City,Advent Calendar 2014 City (Day 22) Christmas Tree,21,2014,Trans-Red,1 +City,Advent Calendar 2014 City (Day 22) Christmas Tree,21,2014,Trans-Orange,1 +City,Advent Calendar 2014 City (Day 22) Christmas Tree,21,2014,Trans-Dark Blue,1 +City,Advent Calendar 2014 City (Day 22) Christmas Tree,21,2014,Reddish Brown,1 +City,Advent Calendar 2014 City (Day 22) Christmas Tree,21,2014,Green,4 +City,Advent Calendar 2014 City (Day 7) Little Shop,18,2014,Green,1 +City,Advent Calendar 2014 City (Day 7) Little Shop,18,2014,Dark Tan,1 +City,Advent Calendar 2014 City (Day 7) Little Shop,18,2014,Red,2 +City,Advent Calendar 2014 City (Day 7) Little Shop,18,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 7) Little Shop,18,2014,Lime,1 +City,Advent Calendar 2014 City (Day 7) Little Shop,18,2014,Pearl Gold,1 +City,Advent Calendar 2014 City (Day 7) Little Shop,18,2014,Reddish Brown,1 +City,Advent Calendar 2014 City (Day 7) Little Shop,18,2014,Trans-Clear,1 +City,Advent Calendar 2014 City (Day 7) Little Shop,18,2014,Trans-Red,1 +City,Advent Calendar 2014 City (Day 7) Little Shop,18,2014,White,2 +City,Advent Calendar 2014 City (Day 6) Fruit Stall,16,2014,White,2 +City,Advent Calendar 2014 City (Day 6) Fruit Stall,16,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 6) Fruit Stall,16,2014,Bright Green,1 +City,Advent Calendar 2014 City (Day 6) Fruit Stall,16,2014,Magenta,1 +City,Advent Calendar 2014 City (Day 6) Fruit Stall,16,2014,Orange,1 +City,Advent Calendar 2014 City (Day 6) Fruit Stall,16,2014,Reddish Brown,4 +City,Advent Calendar 2014 City (Day 6) Fruit Stall,16,2014,Tan,1 +City,Advent Calendar 2014 City (Day 23) Tricycle,14,2014,Red,2 +City,Advent Calendar 2014 City (Day 23) Tricycle,14,2014,Black,2 +City,Advent Calendar 2014 City (Day 21) Christmas Present and Stocking,14,2014,Red,2 +City,Advent Calendar 2014 City (Day 23) Tricycle,14,2014,White,4 +City,Advent Calendar 2014 City (Day 21) Christmas Present and Stocking,14,2014,White,4 +City,Advent Calendar 2014 City (Day 21) Christmas Present and Stocking,14,2014,Lime,2 +City,Advent Calendar 2014 City (Day 23) Tricycle,14,2014,Light Bluish Gray,2 +City,Advent Calendar 2014 City (Day 16) Santa's Snowmobile,13,2014,Trans-Dark Blue,1 +City,Advent Calendar 2014 City (Day 16) Santa's Snowmobile,13,2014,White,2 +City,Advent Calendar 2014 City (Day 16) Santa's Snowmobile,13,2014,Blue,2 +City,Advent Calendar 2014 City (Day 16) Santa's Snowmobile,13,2014,Dark Bluish Gray,2 +City,Advent Calendar 2014 City (Day 19) Turkey Dinner,11,2014,Reddish Brown,1 +City,Advent Calendar 2014 City (Day 19) Turkey Dinner,11,2014,Trans-Clear,1 +City,Advent Calendar 2014 City (Day 19) Turkey Dinner,11,2014,Tan,1 +City,Advent Calendar 2014 City (Day 19) Turkey Dinner,11,2014,Trans-Green,1 +City,Advent Calendar 2014 City (Day 17) Santa's Sled with Box,11,2014,Blue,1 +City,Advent Calendar 2014 City (Day 17) Santa's Sled with Box,11,2014,Dark Bluish Gray,1 +City,Advent Calendar 2014 City (Day 17) Santa's Sled with Box,11,2014,White,2 +City,Advent Calendar 2014 City (Day 17) Santa's Sled with Box,11,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 19) Turkey Dinner,11,2014,Dark Orange,2 +City,Advent Calendar 2014 City (Day 12) Duck with Remote Control,10,2014,Black,3 +City,Advent Calendar 2014 City (Day 12) Duck with Remote Control,10,2014,Orange,1 +City,Advent Calendar 2014 City (Day 12) Duck with Remote Control,10,2014,Red,2 +City,Advent Calendar 2014 City (Day 12) Duck with Remote Control,10,2014,Trans-Dark Blue,1 +City,Advent Calendar 2014 City (Day 2) Mailbox with Green Frog,8,2014,Pearl Gold,1 +City,Advent Calendar 2014 City (Day 2) Mailbox with Green Frog,8,2014,Red,3 +City,Advent Calendar 2014 City (Day 2) Mailbox with Green Frog,8,2014,White,2 +City,Advent Calendar 2014 City (Day 13) Burglar with Bag and Flashlight,8,2014,Black,2 +City,Advent Calendar 2014 City (Day 13) Burglar with Bag and Flashlight,8,2014,Light Bluish Gray,1 +City,Advent Calendar 2014 City (Day 13) Burglar with Bag and Flashlight,8,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 13) Burglar with Bag and Flashlight,8,2014,Trans-Red,1 +City,Advent Calendar 2014 City (Day 13) Burglar with Bag and Flashlight,8,2014,Trans-Yellow,1 +City,Advent Calendar 2014 City (Day 13) Burglar with Bag and Flashlight,8,2014,White,1 +City,Advent Calendar 2014 City (Day 13) Burglar with Bag and Flashlight,8,2014,Dark Tan,1 +City,Advent Calendar 2014 City (Day 2) Mailbox with Green Frog,8,2014,Black,1 +City,Advent Calendar 2014 City (Day 2) Mailbox with Green Frog,8,2014,Green,1 +City,Advent Calendar 2014 City (Day 24) Santa with Bag and Cookie,7,2014,Medium Dark Flesh,2 +City,Advent Calendar 2014 City (Day 24) Santa with Bag and Cookie,7,2014,Red,2 +City,Advent Calendar 2014 City (Day 24) Santa with Bag and Cookie,7,2014,White,2 +City,Advent Calendar 2014 City (Day 24) Santa with Bag and Cookie,7,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 14) Sled,7,2014,Yellow,2 +City,Advent Calendar 2014 City (Day 14) Sled,7,2014,Red,1 +City,Advent Calendar 2014 City (Day 10) Small Catapult,7,2014,White,2 +City,Advent Calendar 2014 City (Day 10) Small Catapult,7,2014,Light Bluish Gray,1 +City,Advent Calendar 2014 City (Day 10) Small Catapult,7,2014,Dark Brown,1 +City,Advent Calendar 2014 City (Day 14) Sled,7,2014,Dark Bluish Gray,1 +City,Advent Calendar 2014 City (Day 10) Small Catapult,7,2014,Dark Bluish Gray,1 +City,Advent Calendar 2014 City (Day 18) Policeman with Cup and Handcuffs,6,2014,Red,1 +City,Advent Calendar 2014 City (Day 4) Pie Stall,6,2014,Reddish Brown,2 +City,Advent Calendar 2014 City (Day 4) Pie Stall,6,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 18) Policeman with Cup and Handcuffs,6,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 18) Policeman with Cup and Handcuffs,6,2014,Blue,1 +City,Advent Calendar 2014 City (Day 18) Policeman with Cup and Handcuffs,6,2014,Dark Blue,2 +City,Advent Calendar 2014 City (Day 11) Policeman with Megaphone and Sheet Music,6,2014,Dark Blue,2 +City,Advent Calendar 2014 City (Day 11) Policeman with Megaphone and Sheet Music,6,2014,Blue,1 +City,Advent Calendar 2014 City (Day 4) Pie Stall,6,2014,Medium Dark Flesh,2 +City,Advent Calendar 2014 City (Day 11) Policeman with Megaphone and Sheet Music,6,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 11) Policeman with Megaphone and Sheet Music,6,2014,White,1 +City,Advent Calendar 2014 City (Day 11) Policeman with Megaphone and Sheet Music,6,2014,Red,1 +City,Advent Calendar 2014 City (Day 18) Policeman with Cup and Handcuffs,6,2014,Light Bluish Gray,1 +City,Advent Calendar 2014 City (Day 8) Girl on Ice Skates,6,2014,Bright Green,1 +City,Advent Calendar 2014 City (Day 8) Girl on Ice Skates,6,2014,Dark Purple,1 +City,Advent Calendar 2014 City (Day 8) Girl on Ice Skates,6,2014,Flat Silver,1 +City,Advent Calendar 2014 City (Day 8) Girl on Ice Skates,6,2014,Reddish Brown,1 +City,Advent Calendar 2014 City (Day 8) Girl on Ice Skates,6,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 9) Handcart with Bread,6,2014,Green,1 +City,Advent Calendar 2014 City (Day 9) Handcart with Bread,6,2014,Light Bluish Gray,1 +City,Advent Calendar 2014 City (Day 9) Handcart with Bread,6,2014,Medium Dark Flesh,1 +City,Advent Calendar 2014 City (Day 9) Handcart with Bread,6,2014,Reddish Brown,2 +City,Advent Calendar 2014 City (Day 1) Boy Posting Christmas Mail,5,2014,Dark Orange,1 +City,Advent Calendar 2014 City (Day 1) Boy Posting Christmas Mail,5,2014,White,2 +City,Advent Calendar 2014 City (Day 5) Girl with Croissant,5,2014,Dark Brown,1 +City,Advent Calendar 2014 City (Day 5) Girl with Croissant,5,2014,Dark Orange,1 +City,Advent Calendar 2014 City (Day 5) Girl with Croissant,5,2014,Red,1 +City,Advent Calendar 2014 City (Day 5) Girl with Croissant,5,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 1) Boy Posting Christmas Mail,5,2014,Yellow,1 +City,Advent Calendar 2014 City (Day 5) Girl with Croissant,5,2014,Green,1 +City,Advent Calendar 2014 City (Day 1) Boy Posting Christmas Mail,5,2014,Blue,1 +City,"Advent Calendar 2014 City (Day 20) Axe, Shovel and Logs",5,2014,Black,1 +City,"Advent Calendar 2014 City (Day 20) Axe, Shovel and Logs",5,2014,Dark Bluish Gray,1 +City,"Advent Calendar 2014 City (Day 20) Axe, Shovel and Logs",5,2014,Dark Brown,1 +City,Advent Calendar 2014 City (Day 3) Snowman,5,2014,Black,1 +City,Advent Calendar 2014 City (Day 3) Snowman,5,2014,Reddish Brown,1 +City,Advent Calendar 2014 City (Day 3) Snowman,5,2014,White,3 +City,"Advent Calendar 2014 City (Day 20) Axe, Shovel and Logs",5,2014,Tan,1 +City,Advent Calendar 2014 City (Day 15) Dog with Bone and Food Dish,3,2014,Bright Light Orange,1 +City,Advent Calendar 2014 City (Day 15) Dog with Bone and Food Dish,3,2014,White,1 +City,Advent Calendar 2014 City (Day 15) Dog with Bone and Food Dish,3,2014,Medium Dark Flesh,1 +City,City Advent Calendar 2016,290,2016,Black,21 +City,City Advent Calendar 2016,290,2016,Blue,2 +City,City Advent Calendar 2016,290,2016,Bright Green,1 +City,City Advent Calendar 2016,290,2016,Dark Azure,1 +City,City Advent Calendar 2016,290,2016,Dark Bluish Gray,13 +City,City Advent Calendar 2016,290,2016,Dark Brown,3 +City,City Advent Calendar 2016,290,2016,Dark Red,1 +City,City Advent Calendar 2016,290,2016,Dark Tan,2 +City,City Advent Calendar 2016,290,2016,Flat Silver,1 +City,City Advent Calendar 2016,290,2016,Green,9 +City,City Advent Calendar 2016,290,2016,Light Bluish Gray,13 +City,City Advent Calendar 2016,290,2016,Lime,3 +City,City Advent Calendar 2016,290,2016,Magenta,1 +City,City Advent Calendar 2016,290,2016,Medium Blue,1 +City,City Advent Calendar 2016,290,2016,Medium Dark Flesh,3 +City,City Advent Calendar 2016,290,2016,Metallic Gold,2 +City,City Advent Calendar 2016,290,2016,Olive Green,3 +City,City Advent Calendar 2016,290,2016,Pearl Gold,5 +City,City Advent Calendar 2016,290,2016,Red,20 +City,City Advent Calendar 2016,290,2016,Reddish Brown,10 +City,City Advent Calendar 2016,290,2016,Sand Blue,1 +City,City Advent Calendar 2016,290,2016,Trans-Black,1 +City,City Advent Calendar 2016,290,2016,Trans-Bright Green,1 +City,City Advent Calendar 2016,290,2016,Trans-Clear,4 +City,City Advent Calendar 2016,290,2016,Trans-Dark Blue,2 +City,City Advent Calendar 2016,290,2016,Trans-Light Blue,2 +City,City Advent Calendar 2016,290,2016,Trans-Orange,1 +City,City Advent Calendar 2016,290,2016,Trans-Red,3 +City,City Advent Calendar 2016,290,2016,Trans-Yellow,1 +City,City Advent Calendar 2016,290,2016,White,26 +City,City Advent Calendar 2016,290,2016,Yellow,15 +City,Dragster Transporter,334,2017,Trans-Red,2 +City,Dragster Transporter,334,2017,[No Color],1 +City,Dragster Transporter,334,2017,Black,25 +City,Dragster Transporter,334,2017,Blue,5 +City,Dragster Transporter,334,2017,Bright Light Orange,13 +City,Dragster Transporter,334,2017,Dark Blue,15 +City,Dragster Transporter,334,2017,Dark Bluish Gray,13 +City,Dragster Transporter,334,2017,Green,2 +City,Dragster Transporter,334,2017,Light Bluish Gray,39 +City,Dragster Transporter,334,2017,Pearl Dark Gray,1 +City,Dragster Transporter,334,2017,Red,9 +City,Dragster Transporter,334,2017,Reddish Brown,1 +City,Dragster Transporter,334,2017,Tan,1 +City,Dragster Transporter,334,2017,Trans-Black,2 +City,Dragster Transporter,334,2017,Trans-Clear,1 +City,Dragster Transporter,334,2017,Trans-Green,1 +City,Dragster Transporter,334,2017,Trans-Orange,4 +City,Dragster Transporter,334,2017,Trans-Yellow,1 +City,Dragster Transporter,334,2017,White,21 +City,Dragster Transporter,334,2017,Yellow,4 +City,Sweeper & Excavator,298,2017,Red,4 +City,Sweeper & Excavator,298,2017,Black,22 +City,Sweeper & Excavator,298,2017,Blue,13 +City,Sweeper & Excavator,298,2017,Dark Blue,1 +City,Sweeper & Excavator,298,2017,Dark Bluish Gray,21 +City,Sweeper & Excavator,298,2017,Dark Red,1 +City,Sweeper & Excavator,298,2017,Dark Tan,2 +City,Sweeper & Excavator,298,2017,Light Bluish Gray,29 +City,Sweeper & Excavator,298,2017,Orange,3 +City,Sweeper & Excavator,298,2017,Reddish Brown,7 +City,Sweeper & Excavator,298,2017,Tan,2 +City,Sweeper & Excavator,298,2017,Trans-Black,2 +City,Sweeper & Excavator,298,2017,Trans-Clear,2 +City,Sweeper & Excavator,298,2017,Trans-Orange,3 +City,Sweeper & Excavator,298,2017,Trans-Red,2 +City,Sweeper & Excavator,298,2017,White,1 +City,Sweeper & Excavator,298,2017,Yellow,20 +City,4x4 with Catamaran,197,2017,Dark Bluish Gray,19 +City,4x4 with Catamaran,197,2017,Dark Brown,1 +City,4x4 with Catamaran,197,2017,Flat Silver,2 +City,4x4 with Catamaran,197,2017,Green,7 +City,4x4 with Catamaran,197,2017,Light Bluish Gray,18 +City,4x4 with Catamaran,197,2017,Red,1 +City,4x4 with Catamaran,197,2017,Sand Blue,1 +City,4x4 with Catamaran,197,2017,Tan,2 +City,4x4 with Catamaran,197,2017,Trans-Black,2 +City,4x4 with Catamaran,197,2017,Trans-Clear,2 +City,4x4 with Catamaran,197,2017,Trans-Green,1 +City,4x4 with Catamaran,197,2017,Trans-Orange,3 +City,4x4 with Catamaran,197,2017,Trans-Red,2 +City,4x4 with Catamaran,197,2017,Trans-Yellow,1 +City,4x4 with Catamaran,197,2017,White,11 +City,4x4 with Catamaran,197,2017,Yellow,5 +City,4x4 with Catamaran,197,2017,Black,19 +City,4x4 with Catamaran,197,2017,Blue,7 +City,Fishing Boat,125,2017,Dark Red,6 +City,Fishing Boat,125,2017,Reddish Brown,1 +City,Fishing Boat,125,2017,Blue,2 +City,Fishing Boat,125,2017,Dark Bluish Gray,6 +City,Fishing Boat,125,2017,Black,7 +City,Fishing Boat,125,2017,Dark Tan,1 +City,Fishing Boat,125,2017,Flat Silver,1 +City,Fishing Boat,125,2017,Light Bluish Gray,10 +City,Fishing Boat,125,2017,Orange,1 +City,Fishing Boat,125,2017,Sand Blue,1 +City,Fishing Boat,125,2017,Trans-Black,1 +City,Fishing Boat,125,2017,Trans-Green,1 +City,Fishing Boat,125,2017,Trans-Red,1 +City,Fishing Boat,125,2017,Trans-Yellow,1 +City,Fishing Boat,125,2017,White,22 +City,Fishing Boat,125,2017,Yellow,7 +City,Stunt Truck,90,2017,Dark Bluish Gray,5 +City,Stunt Truck,90,2017,Trans-Clear,1 +City,Stunt Truck,90,2017,Trans-Red,1 +City,Stunt Truck,90,2017,White,7 +City,Stunt Truck,90,2017,Yellow,1 +City,Stunt Truck,90,2017,Black,14 +City,Stunt Truck,90,2017,Blue,1 +City,Stunt Truck,90,2017,Light Bluish Gray,3 +City,Stunt Truck,90,2017,Pearl Gold,1 +City,Stunt Truck,90,2017,Red,2 +City,Stunt Truck,90,2017,Trans-Black,2 +City,Stunt Truck,90,2017,Trans-Yellow,1 +City,Stunt Truck,90,2017,Orange,9 +City,Hot Rod,36,2017,Yellow,1 +City,Hot Rod,36,2017,Trans-Black,1 +City,Hot Rod,36,2017,Blue,1 +City,Hot Rod,36,2017,Dark Bluish Gray,3 +City,Hot Rod,36,2017,Flat Silver,1 +City,Hot Rod,36,2017,Light Bluish Gray,4 +City,Hot Rod,36,2017,Red,5 +City,Hot Rod,36,2017,Trans-Clear,1 +City,Hot Rod,36,2017,Black,9 +Classic,Kindergarten LEGO Set,476,1960,[No Color],1 +Classic,Kindergarten LEGO Set,476,1960,Black,6 +Classic,Kindergarten LEGO Set,476,1960,Blue,11 +Classic,Kindergarten LEGO Set,476,1960,Green,1 +Classic,Kindergarten LEGO Set,476,1960,Red,10 +Classic,Kindergarten LEGO Set,476,1960,Trans-Clear,6 +Classic,Kindergarten LEGO Set,476,1960,White,18 +Classic,Kindergarten LEGO Set,476,1960,Yellow,7 +Classic,Educational Box - Empty,1,1965,[No Color],1 +Classic,Creative Box,900,2017,Red,17 +Classic,Creative Box,900,2017,Reddish Brown,11 +Classic,Creative Box,900,2017,Tan,14 +Classic,Creative Box,900,2017,Trans-Clear,3 +Classic,Creative Box,900,2017,Trans-Green,1 +Classic,Creative Box,900,2017,Trans-Light Blue,1 +Classic,Creative Box,900,2017,Trans-Purple,2 +Classic,Creative Box,900,2017,Trans-Red,2 +Classic,Creative Box,900,2017,Trans-Yellow,2 +Classic,Creative Box,900,2017,White,18 +Classic,Creative Box,900,2017,Yellow,13 +Classic,Creative Box,900,2017,Yellowish Green,2 +Classic,Creative Box,900,2017,Black,16 +Classic,Creative Box,900,2017,Blue,12 +Classic,Creative Box,900,2017,Bright Green,2 +Classic,Creative Box,900,2017,Bright Light Orange,7 +Classic,Creative Box,900,2017,Bright Light Yellow,3 +Classic,Creative Box,900,2017,Bright Pink,7 +Classic,Creative Box,900,2017,Dark Blue,5 +Classic,Creative Box,900,2017,Dark Bluish Gray,14 +Classic,Creative Box,900,2017,Dark Brown,1 +Classic,Creative Box,900,2017,Dark Green,5 +Classic,Creative Box,900,2017,Dark Pink,4 +Classic,Creative Box,900,2017,Dark Purple,6 +Classic,Creative Box,900,2017,Dark Red,8 +Classic,Creative Box,900,2017,Dark Tan,3 +Classic,Creative Box,900,2017,Flat Silver,2 +Classic,Creative Box,900,2017,Green,13 +Classic,Creative Box,900,2017,Lavender,3 +Classic,Creative Box,900,2017,Light Aqua,2 +Classic,Creative Box,900,2017,Light Bluish Gray,14 +Classic,Creative Box,900,2017,Lime,9 +Classic,Creative Box,900,2017,Magenta,7 +Classic,Creative Box,900,2017,Medium Azure,9 +Classic,Creative Box,900,2017,Medium Blue,6 +Classic,Creative Box,900,2017,Medium Dark Flesh,4 +Classic,Creative Box,900,2017,Medium Lavender,7 +Classic,Creative Box,900,2017,Orange,9 +Classic,Creative Box,900,2017,Pearl Gold,1 +Classic,Creative Builder Box,499,2017,Dark Orange,1 +Classic,Creative Builder Box,499,2017,Red,9 +Classic,Creative Builder Box,499,2017,Reddish Brown,6 +Classic,Creative Builder Box,499,2017,Sand Green,3 +Classic,Creative Builder Box,499,2017,Tan,4 +Classic,Creative Builder Box,499,2017,Trans-Clear,3 +Classic,Creative Builder Box,499,2017,Trans-Dark Pink,1 +Classic,Creative Builder Box,499,2017,Trans-Green,1 +Classic,Creative Builder Box,499,2017,Trans-Light Blue,7 +Classic,Creative Builder Box,499,2017,Yellowish Green,1 +Classic,Creative Builder Box,499,2017,White,23 +Classic,Creative Builder Box,499,2017,Dark Green,2 +Classic,Creative Builder Box,499,2017,Black,6 +Classic,Creative Builder Box,499,2017,Blue,6 +Classic,Creative Builder Box,499,2017,Bright Green,2 +Classic,Creative Builder Box,499,2017,Bright Light Blue,2 +Classic,Creative Builder Box,499,2017,Bright Light Orange,2 +Classic,Creative Builder Box,499,2017,Bright Light Yellow,1 +Classic,Creative Builder Box,499,2017,Bright Pink,6 +Classic,Creative Builder Box,499,2017,Dark Azure,2 +Classic,Creative Builder Box,499,2017,Dark Blue,4 +Classic,Creative Builder Box,499,2017,Dark Bluish Gray,3 +Classic,Creative Builder Box,499,2017,Yellow,8 +Classic,Creative Builder Box,499,2017,Trans-Yellow,1 +Classic,Creative Builder Box,499,2017,Dark Pink,2 +Classic,Creative Builder Box,499,2017,Dark Purple,1 +Classic,Creative Builder Box,499,2017,Green,5 +Classic,Creative Builder Box,499,2017,Lavender,1 +Classic,Creative Builder Box,499,2017,Light Bluish Gray,9 +Classic,Creative Builder Box,499,2017,Lime,6 +Classic,Creative Builder Box,499,2017,Magenta,2 +Classic,Creative Builder Box,499,2017,Medium Azure,2 +Classic,Creative Builder Box,499,2017,Medium Blue,1 +Classic,Creative Builder Box,499,2017,Medium Dark Flesh,1 +Classic,Creative Builder Box,499,2017,Medium Lavender,2 +Classic,Creative Builder Box,499,2017,Orange,4 +Classic,Creative Builder Box,499,2017,Pearl Dark Gray,1 +Classic,Creative Builder Box,499,2017,Pearl Gold,2 +Classic,Blue Creative Box,78,2017,Blue,11 +Classic,Blue Creative Box,78,2017,Dark Blue,6 +Classic,Blue Creative Box,78,2017,Dark Bluish Gray,2 +Classic,Blue Creative Box,78,2017,Flat Silver,1 +Classic,Blue Creative Box,78,2017,Medium Azure,3 +Classic,Blue Creative Box,78,2017,Medium Blue,5 +Classic,Blue Creative Box,78,2017,Orange,1 +Classic,Blue Creative Box,78,2017,Trans-Clear,1 +Classic,Blue Creative Box,78,2017,Trans-Dark Blue,3 +Classic,Blue Creative Box,78,2017,White,3 +Classic,Blue Creative Box,78,2017,Yellow,2 +Classic,Blue Creative Box,78,2017,Black,1 +Classic,Green Creative Box,66,2017,Black,4 +Classic,Green Creative Box,66,2017,Dark Green,2 +Classic,Green Creative Box,66,2017,Green,9 +Classic,Green Creative Box,66,2017,Light Bluish Gray,3 +Classic,Green Creative Box,66,2017,Lime,4 +Classic,Green Creative Box,66,2017,Red,3 +Classic,Green Creative Box,66,2017,Reddish Brown,2 +Classic,Green Creative Box,66,2017,Tan,1 +Classic,Green Creative Box,66,2017,Trans-Clear,1 +Classic,Green Creative Box,66,2017,White,4 +Classic,Green Creative Box,66,2017,Yellowish Green,1 +Classic,Orange Creative Box,60,2017,Black,4 +Classic,Orange Creative Box,60,2017,Bright Light Orange,6 +Classic,Orange Creative Box,60,2017,Bright Light Yellow,2 +Classic,Orange Creative Box,60,2017,Green,1 +Classic,Orange Creative Box,60,2017,Light Bluish Gray,2 +Classic,Orange Creative Box,60,2017,Lime,1 +Classic,Orange Creative Box,60,2017,Orange,8 +Classic,Orange Creative Box,60,2017,Red,3 +Classic,Orange Creative Box,60,2017,Tan,3 +Classic,Orange Creative Box,60,2017,Trans-Clear,2 +Classic,Orange Creative Box,60,2017,White,4 +Classic,Orange Creative Box,60,2017,Yellow,3 +Classic,Red Creative Box,55,2017,Black,4 +Classic,Red Creative Box,55,2017,Bright Pink,5 +Classic,Red Creative Box,55,2017,Dark Bluish Gray,1 +Classic,Red Creative Box,55,2017,Dark Pink,2 +Classic,Red Creative Box,55,2017,Dark Red,3 +Classic,Red Creative Box,55,2017,Green,1 +Classic,Red Creative Box,55,2017,Lime,1 +Classic,Red Creative Box,55,2017,Red,9 +Classic,Red Creative Box,55,2017,Trans-Clear,1 +Classic,Red Creative Box,55,2017,White,3 +Classic Basic,Large Bulk Bucket,950,1998,Blue,8 +Classic Basic,Large Bulk Bucket,950,1998,Red,8 +Classic Basic,Large Bulk Bucket,950,1998,White,8 +Classic Basic,Large Bulk Bucket,950,1998,Yellow,8 +Classic Basic,Large Bulk Bucket,950,1998,Black,8 +Classic Basic,Brick Pack 300,812,1998,White,10 +Classic Basic,Brick Pack 300,812,1998,Red,10 +Classic Basic,Brick Pack 300,812,1998,Green,7 +Classic Basic,Brick Pack 300,812,1998,Blue,10 +Classic Basic,Brick Pack 300,812,1998,Black,9 +Classic Basic,Brick Pack 300,812,1998,Yellow,10 +Classic Basic,Super Set 200,519,1998,White,6 +Classic Basic,Super Set 200,519,1998,Trans-Clear,2 +Classic Basic,Super Set 200,519,1998,Red,25 +Classic Basic,Super Set 200,519,1998,Green,9 +Classic Basic,Super Set 200,519,1998,Black,7 +Classic Basic,Super Set 200,519,1998,Blue,12 +Classic Basic,Super Set 200,519,1998,Yellow,20 +Classic Basic,Super Set 100,509,1998,Brown,1 +Classic Basic,Super Set 100,509,1998,White,11 +Classic Basic,Super Set 100,509,1998,Black,5 +Classic Basic,Super Set 100,509,1998,Yellow,24 +Classic Basic,Super Set 100,509,1998,Red,19 +Classic Basic,Super Set 100,509,1998,Green,11 +Classic Basic,Super Set 100,509,1998,Blue,14 +Classic Basic,Big Bucket of Fun,468,1998,Dark Gray,2 +Classic Basic,Big Bucket of Fun,468,1998,Brown,1 +Classic Basic,Big Bucket of Fun,468,1998,Bright Green,1 +Classic Basic,Big Bucket of Fun,468,1998,Blue,30 +Classic Basic,Big Bucket of Fun,468,1998,Black,8 +Classic Basic,Big Bucket of Fun,468,1998,Light Gray,1 +Classic Basic,Big Bucket of Fun,468,1998,Red,25 +Classic Basic,Big Bucket of Fun,468,1998,Trans-Clear,2 +Classic Basic,Big Bucket of Fun,468,1998,White,17 +Classic Basic,Big Bucket of Fun,468,1998,Yellow,18 +Classic Basic,Big Bucket of Fun,468,1998,Green,8 +Classic Basic,Large Box of Bricks,428,1998,Green,3 +Classic Basic,Large Box of Bricks,428,1998,Red,6 +Classic Basic,Large Box of Bricks,428,1998,Yellow,6 +Classic Basic,Large Box of Bricks,428,1998,White,4 +Classic Basic,Large Box of Bricks,428,1998,Blue,6 +Classic Basic,Large Box of Bricks,428,1998,Black,3 +Classic Basic,Medium Bucket,363,1998,Dark Gray,1 +Classic Basic,Medium Bucket,363,1998,Green,7 +Classic Basic,Medium Bucket,363,1998,Light Gray,2 +Classic Basic,Medium Bucket,363,1998,White,15 +Classic Basic,Medium Bucket,363,1998,Trans-Clear,3 +Classic Basic,Medium Bucket,363,1998,Red,37 +Classic Basic,Challenger Set 300,363,1998,Brown,1 +Classic Basic,Challenger Set 300,363,1998,Blue,32 +Classic Basic,Medium Bucket,363,1998,Black,13 +Classic Basic,Medium Bucket,363,1998,Blue,14 +Classic Basic,Challenger Set 300,363,1998,Dark Gray,5 +Classic Basic,Challenger Set 300,363,1998,Green,2 +Classic Basic,Challenger Set 300,363,1998,Black,15 +Classic Basic,Medium Bucket,363,1998,Yellow,17 +Classic Basic,Challenger Set 300,363,1998,Yellow,21 +Classic Basic,Challenger Set 300,363,1998,White,12 +Classic Basic,Challenger Set 300,363,1998,Trans-Yellow,1 +Classic Basic,Challenger Set 300,363,1998,Trans-Red,1 +Classic Basic,Challenger Set 300,363,1998,Trans-Light Blue,1 +Classic Basic,Challenger Set 300,363,1998,Trans-Clear,2 +Classic Basic,Challenger Set 300,363,1998,Red,30 +Classic Basic,Challenger Set 300,363,1998,Light Gray,5 +Classic Basic,Brick Pack 100,288,1998,Black,3 +Classic Basic,Brick Pack 100,288,1998,Yellow,6 +Classic Basic,Brick Pack 100,288,1998,Blue,5 +Classic Basic,Brick Pack 100,288,1998,White,3 +Classic Basic,Brick Pack 100,288,1998,Green,3 +Classic Basic,Brick Pack 100,288,1998,Red,5 +Classic Basic,Starter Set 300,264,1998,Green,9 +Classic Basic,Starter Set 300,264,1998,Brown,1 +Classic Basic,Starter Set 300,264,1998,Blue,10 +Classic Basic,Starter Set 300,264,1998,Black,4 +Classic Basic,Medium Bucket,264,1998,Blue,8 +Classic Basic,Medium Bucket,264,1998,Yellow,11 +Classic Basic,Medium Bucket,264,1998,White,8 +Classic Basic,Medium Bucket,264,1998,Trans-Clear,1 +Classic Basic,Medium Bucket,264,1998,Red,17 +Classic Basic,Medium Bucket,264,1998,Green,6 +Classic Basic,Medium Bucket,264,1998,Black,5 +Classic Basic,Starter Set 300,264,1998,Yellow,17 +Classic Basic,Starter Set 300,264,1998,White,8 +Classic Basic,Starter Set 300,264,1998,Red,17 +Classic Basic,Challenger Set 350,244,1998,White,10 +Classic Basic,Challenger Set 350,244,1998,Trans-Light Blue,1 +Classic Basic,Challenger Set 350,244,1998,Trans-Clear,1 +Classic Basic,Challenger Set 350,244,1998,Red,21 +Classic Basic,Challenger Set 350,244,1998,Light Gray,2 +Classic Basic,Challenger Set 350,244,1998,Green,9 +Classic Basic,Challenger Set 350,244,1998,Dark Gray,1 +Classic Basic,Challenger Set 350,244,1998,Blue,25 +Classic Basic,Challenger Set 350,244,1998,Black,9 +Classic Basic,Challenger Set 350,244,1998,Yellow,24 +Classic Basic,Playdesk and Bricks,215,1998,Blue,10 +Classic Basic,Playdesk and Bricks,215,1998,Red,15 +Classic Basic,Playdesk and Bricks,215,1998,Bright Green,1 +Classic Basic,Playdesk and Bricks,215,1998,White,6 +Classic Basic,Playdesk and Bricks,215,1998,Yellow,15 +Classic Basic,Playdesk and Bricks,215,1998,Brown,1 +Classic Basic,Playdesk and Bricks,215,1998,Green,8 +Classic Basic,Playdesk and Bricks,215,1998,Black,5 +Classic Basic,Bucketful of Fun,201,1998,Blue,7 +Classic Basic,Bucketful of Fun,201,1998,Green,6 +Classic Basic,Bucketful of Fun,201,1998,Red,15 +Classic Basic,Bucketful of Fun,201,1998,Trans-Clear,1 +Classic Basic,Bucketful of Fun,201,1998,White,5 +Classic Basic,Bucketful of Fun,201,1998,Yellow,10 +Classic Basic,Bucketful of Fun,201,1998,Black,5 +Classic Basic,Challenger Set 200,155,1998,Blue,8 +Classic Basic,Challenger Set 200,155,1998,Bright Green,1 +Classic Basic,Challenger Set 200,155,1998,Green,1 +Classic Basic,Challenger Set 200,155,1998,Yellow,11 +Classic Basic,Challenger Set 200,155,1998,White,11 +Classic Basic,Challenger Set 200,155,1998,Black,3 +Classic Basic,Challenger Set 200,155,1998,Red,24 +Classic Basic,Challenger Set 200,155,1998,Trans-Clear,1 +Classic Basic,Starter Set 200,95,1998,Blue,5 +Classic Basic,Starter Set 200,95,1998,Black,4 +Classic Basic,Starter Set 200,95,1998,Green,3 +Classic Basic,Starter Set 200,95,1998,Red,7 +Classic Basic,Starter Set 200,95,1998,White,3 +Classic Basic,Starter Set 200,95,1998,Yellow,11 +Classic Basic,Challenger Set 100,65,1998,Yellow,5 +Classic Basic,Challenger Set 100,65,1998,Red,7 +Classic Basic,Challenger Set 100,65,1998,Blue,11 +Classic Basic,Challenger Set 100,65,1998,Black,6 +Classic Basic,Challenger Set 100,65,1998,Trans-Clear,1 +Classic Basic,Challenger Set 100,65,1998,White,3 +Classic Basic,Starter Set 100,53,1998,Yellow,5 +Classic Basic,Starter Set 100,53,1998,Red,4 +Classic Basic,Starter Set 100,53,1998,White,3 +Classic Basic,Starter Set 100,53,1998,Black,3 +Classic Basic,Starter Set 100,53,1998,Blue,4 +Classic Basic,Starter Set 100,53,1998,Green,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 12) Airplane,12,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 10) Steamboat,12,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 10) Steamboat,12,1998,White,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 10) Steamboat,12,1998,Red,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 10) Steamboat,12,1998,Blue,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 12) Airplane,12,1998,Trans-Red,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 12) Airplane,12,1998,Trans-Green,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 12) Airplane,12,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 12) Airplane,12,1998,Red,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 12) Airplane,12,1998,Blue,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 12) Airplane,12,1998,Black,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 10) Steamboat,12,1998,Black,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 20) Helicopter,11,1998,White,6 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 20) Helicopter,11,1998,Trans-Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 20) Helicopter,11,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 20) Helicopter,11,1998,Black,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 24) Airplane,10,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 24) Airplane,10,1998,Light Gray,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 24) Airplane,10,1998,Black,4 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 23) Truck,10,1998,White,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 23) Truck,10,1998,Trans-Dark Blue,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 24) Airplane,10,1998,White,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 23) Truck,10,1998,Light Gray,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 23) Truck,10,1998,Black,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 1) Airplane,10,1998,Red,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 1) Airplane,10,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 1) Airplane,10,1998,Yellow,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 23) Truck,10,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 1) Airplane,10,1998,Blue,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 4) Boat,10,1998,Blue,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 4) Boat,10,1998,Red,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 4) Boat,10,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 1) Airplane,10,1998,Black,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 4) Boat,10,1998,Yellow,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 5) Sailboat,10,1998,Blue,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 5) Sailboat,10,1998,Red,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 5) Sailboat,10,1998,Trans-Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 5) Sailboat,10,1998,White,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 5) Sailboat,10,1998,Yellow,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 6) Airplane,10,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 18) Blue Elf,10,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 18) Blue Elf,10,1998,White,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 18) Blue Elf,10,1998,Blue,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 6) Airplane,10,1998,White,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 6) Airplane,10,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 6) Airplane,10,1998,Black,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 6) Airplane,10,1998,Red,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 6) Airplane,10,1998,Blue,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 18) Blue Elf,10,1998,Black,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 8) Airplane,9,1998,Blue,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 8) Airplane,9,1998,Black,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 9) Whale,9,1998,Red,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 3) Boat,9,1998,Blue,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 3) Boat,9,1998,Red,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 3) Boat,9,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 3) Boat,9,1998,Trans-Green,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 3) Boat,9,1998,Trans-Red,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 3) Boat,9,1998,White,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 3) Boat,9,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 22) Police Boat,9,1998,White,5 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 22) Police Boat,9,1998,Trans-Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 22) Police Boat,9,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 22) Police Boat,9,1998,Black,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 21) Red Elf,9,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 21) Red Elf,9,1998,White,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 21) Red Elf,9,1998,Red,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 21) Red Elf,9,1998,Black,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 19) Boat,9,1998,White,4 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 19) Boat,9,1998,Trans-Dark Blue,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 19) Boat,9,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 19) Boat,9,1998,Black,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 17) Mouse,9,1998,White,4 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 17) Mouse,9,1998,Light Gray,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 9) Whale,9,1998,Blue,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 9) Whale,9,1998,Black,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 8) Airplane,9,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 8) Airplane,9,1998,White,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 15) Green Elf,9,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 15) Green Elf,9,1998,White,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 15) Green Elf,9,1998,Green,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 15) Green Elf,9,1998,Black,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 14) Airplane,9,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 14) Airplane,9,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 14) Airplane,9,1998,Red,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 14) Airplane,9,1998,Blue,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 14) Airplane,9,1998,Black,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 8) Airplane,9,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 8) Airplane,9,1998,Red,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 11) Boat,8,1998,Blue,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 7) Helicopter,8,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 7) Helicopter,8,1998,Red,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 16) Boat,8,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 16) Boat,8,1998,Red,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 16) Boat,8,1998,Blue,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 16) Boat,8,1998,Black,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 7) Helicopter,8,1998,Blue,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 11) Boat,8,1998,Trans-Clear,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 11) Boat,8,1998,Red,2 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 11) Boat,8,1998,Yellow,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 7) Helicopter,8,1998,Yellow,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 2) Santa,5,1998,White,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 2) Santa,5,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 13) Santa,5,1998,Yellow,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 13) Santa,5,1998,White,1 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 13) Santa,5,1998,Red,3 +Classic Basic,Advent Calendar 1998 Classic Basic (Day 2) Santa,5,1998,Red,3 +Classic Basic,Basic Building Set,201,2000,Black,6 +Classic Basic,Basic Building Set,201,2000,Blue,5 +Classic Basic,Basic Building Set,201,2000,Dark Gray,6 +Classic Basic,Basic Building Set,201,2000,Green,7 +Classic Basic,Basic Building Set,201,2000,Red,10 +Classic Basic,Basic Building Set,201,2000,Trans-Green,2 +Classic Basic,Basic Building Set,201,2000,Trans-Light Blue,2 +Classic Basic,Basic Building Set,201,2000,White,6 +Classic Basic,Basic Building Set,201,2000,Yellow,10 +Classic Basic,Classic Trial Box,53,2000,Black,3 +Classic Basic,Classic Trial Box,53,2000,Blue,4 +Classic Basic,Classic Trial Box,53,2000,Green,1 +Classic Basic,Classic Trial Box,53,2000,Red,4 +Classic Basic,Classic Trial Box,53,2000,White,3 +Classic Basic,Classic Trial Box,53,2000,Yellow,5 +Classic Castle,Castle,776,1978,Black,14 +Classic Castle,Castle,776,1978,Blue,2 +Classic Castle,Castle,776,1978,Brown,1 +Classic Castle,Castle,776,1978,Green,2 +Classic Castle,Castle,776,1978,Light Gray,19 +Classic Castle,Castle,776,1978,Red,13 +Classic Castle,Castle,776,1978,White,12 +Classic Castle,Castle,776,1978,Yellow,26 +Classic Castle,Castle Figures,22,1983,Black,3 +Classic Castle,Castle Figures,22,1983,Light Gray,6 +Classic Castle,Castle Figures,22,1983,Red,2 +Classic Castle,Castle Figures,22,1983,Yellow,1 +Classic Space,Galaxy Explorer,342,1979,Black,4 +Classic Space,Galaxy Explorer,342,1979,Blue,37 +Classic Space,Galaxy Explorer,342,1979,Light Gray,47 +Classic Space,Galaxy Explorer,342,1979,Red,4 +Classic Space,Galaxy Explorer,342,1979,Trans-Green,2 +Classic Space,Galaxy Explorer,342,1979,Trans-Red,2 +Classic Space,Galaxy Explorer,342,1979,Trans-Yellow,4 +Classic Space,Galaxy Explorer,342,1979,White,4 +Classic Space,Galaxy Explorer,342,1979,Yellow,2 +Classic Space,Space Command Center (Flatplate version),193,1979,Black,2 +Classic Space,Space Command Center (Flatplate version),193,1979,Blue,26 +Classic Space,Space Command Center (Flatplate version),193,1979,Light Gray,26 +Classic Space,Space Command Center (Flatplate version),193,1979,Red,4 +Classic Space,Space Command Center (Flatplate version),193,1979,Trans-Clear,1 +Classic Space,Space Command Center (Flatplate version),193,1979,Trans-Green,1 +Classic Space,Space Command Center (Flatplate version),193,1979,Trans-Red,1 +Classic Space,Space Command Center (Flatplate version),193,1979,Trans-Yellow,3 +Classic Space,Space Command Center (Flatplate version),193,1979,White,4 +Classic Space,Space Command Center (Flatplate version),193,1979,Yellow,1 +Classic Space,Alpha-1 Rocket Base,187,1979,Black,6 +Classic Space,Alpha-1 Rocket Base,187,1979,Blue,25 +Classic Space,Alpha-1 Rocket Base,187,1979,Light Gray,26 +Classic Space,Alpha-1 Rocket Base,187,1979,Red,4 +Classic Space,Alpha-1 Rocket Base,187,1979,Trans-Green,2 +Classic Space,Alpha-1 Rocket Base,187,1979,Trans-Red,2 +Classic Space,Alpha-1 Rocket Base,187,1979,Trans-Yellow,2 +Classic Space,Alpha-1 Rocket Base,187,1979,White,6 +Classic Space,Alpha-1 Rocket Base,187,1979,Yellow,3 +Classic Space,Space Command Center (Craterplate version),177,1979,White,4 +Classic Space,Space Command Center (Craterplate version),177,1979,Black,2 +Classic Space,Space Command Center (Craterplate version),177,1979,Blue,26 +Classic Space,Space Command Center (Craterplate version),177,1979,Light Gray,24 +Classic Space,Space Command Center (Craterplate version),177,1979,Red,4 +Classic Space,Space Command Center (Craterplate version),177,1979,Trans-Clear,1 +Classic Space,Space Command Center (Craterplate version),177,1979,Trans-Green,1 +Classic Space,Space Command Center (Craterplate version),177,1979,Trans-Red,1 +Classic Space,Space Command Center (Craterplate version),177,1979,Trans-Yellow,3 +Classic Space,Space Command Center (Craterplate version),177,1979,Yellow,1 +Classic Space,Command Centre (Center),177,1979,Yellow,1 +Classic Space,Command Centre (Center),177,1979,Black,2 +Classic Space,Command Centre (Center),177,1979,Blue,26 +Classic Space,Command Centre (Center),177,1979,Light Gray,24 +Classic Space,Command Centre (Center),177,1979,Red,4 +Classic Space,Command Centre (Center),177,1979,Trans-Clear,1 +Classic Space,Command Centre (Center),177,1979,Trans-Green,1 +Classic Space,Command Centre (Center),177,1979,Trans-Red,1 +Classic Space,Command Centre (Center),177,1979,Trans-Yellow,3 +Classic Space,Command Centre (Center),177,1979,White,4 +Classic Space,Space Cruiser,172,1979,Red,4 +Classic Space,Space Cruiser,172,1979,Black,3 +Classic Space,Space Cruiser,172,1979,Blue,28 +Classic Space,Space Cruiser,172,1979,Light Gray,25 +Classic Space,Space Cruiser,172,1979,Trans-Green,2 +Classic Space,Space Cruiser,172,1979,Trans-Red,1 +Classic Space,Space Cruiser,172,1979,Trans-Yellow,4 +Classic Space,Space Cruiser,172,1979,White,9 +Classic Space,Space Cruiser,172,1979,Yellow,2 +Classic Space,Space Transport,86,1979,Blue,15 +Classic Space,Space Transport,86,1979,Light Gray,24 +Classic Space,Space Transport,86,1979,Red,4 +Classic Space,Space Transport,86,1979,Trans-Green,1 +Classic Space,Space Transport,86,1979,Trans-Red,1 +Classic Space,Space Transport,86,1979,Trans-Yellow,2 +Classic Space,Space Transport,86,1979,Yellow,1 +Classic Space,Mobile Ground Tracking Station,79,1979,Light Gray,35 +Classic Space,Mobile Ground Tracking Station,79,1979,Trans-Clear,1 +Classic Space,Mobile Ground Tracking Station,79,1979,Trans-Green,1 +Classic Space,Mobile Ground Tracking Station,79,1979,Trans-Red,1 +Classic Space,Mobile Ground Tracking Station,79,1979,Trans-Yellow,1 +Classic Space,Mobile Ground Tracking Station,79,1979,White,4 +Classic Space,Mobile Ground Tracking Station,79,1979,Yellow,1 +Classic Space,Mobile Ground Tracking Station,79,1979,Black,1 +Classic Space,Mobile Rocket Launcher,77,1979,Black,4 +Classic Space,Mobile Rocket Launcher,77,1979,Light Gray,24 +Classic Space,Mobile Rocket Launcher,77,1979,Red,5 +Classic Space,Mobile Rocket Launcher,77,1979,Trans-Green,1 +Classic Space,Mobile Rocket Launcher,77,1979,Trans-Red,1 +Classic Space,Mobile Rocket Launcher,77,1979,White,6 +Classic Space,Mobile Rocket Launcher,77,1979,Yellow,1 +Classic Space,Space Shuttle,39,1979,Yellow,1 +Classic Space,Space Shuttle,39,1979,Light Gray,20 +Classic Space,Space Shuttle,39,1979,Trans-Green,1 +Classic Space,Space Shuttle,39,1979,Trans-Red,1 +Classic Space,Space Shuttle,39,1979,White,4 +Classic Space,Two-Man Scooter,39,1979,Light Gray,20 +Classic Space,Two-Man Scooter,39,1979,Trans-Green,1 +Classic Space,Two-Man Scooter,39,1979,Trans-Red,1 +Classic Space,Two-Man Scooter,39,1979,White,4 +Classic Space,Two-Man Scooter,39,1979,Yellow,1 +Classic Space,Radar Truck,29,1979,Red,4 +Classic Space,Radar Truck,29,1979,Black,1 +Classic Space,Radar Truck,29,1979,Light Gray,16 +Classic Space,Radar Truck,29,1979,Yellow,1 +Classic Space,Space Buggy,20,1979,Light Gray,9 +Classic Space,Space Buggy,20,1979,Trans-Green,1 +Classic Space,Space Buggy,20,1979,White,4 +Classic Space,Space Buggy,20,1979,Yellow,1 +Classic Space,Space Buggy,20,1979,Black,1 +Classic Space,Space Scooter,20,1979,Light Gray,10 +Classic Space,Space Scooter,20,1979,Red,4 +Classic Space,Space Scooter,20,1979,Trans-Red,1 +Classic Space,Space Scooter,20,1979,Yellow,1 +Classic Space,Space Scooter,20,1979,Trans-Dark Blue,1 +Classic Space,XT-5 and Droid,37,1988,Black,9 +Classic Space,XT-5 and Droid,37,1988,Blue,4 +Classic Space,XT-5 and Droid,37,1988,Light Gray,10 +Classic Space,XT-5 and Droid,37,1988,Trans-Green,1 +Classic Space,XT-5 and Droid,37,1988,Trans-Red,1 +Classic Space,XT-5 and Droid,37,1988,Yellow,1 +Classic Town,Trees & Flowers,18,1981,Green,3 +Classic Town,Trees & Flowers,18,1981,Red,1 +Classic Town,Trees & Flowers,18,1981,White,1 +Classic Town,Trees & Flowers,18,1981,Yellow,1 +Clikits,Cool Room Catchers,113,2003,Light Salmon,2 +Clikits,Cool Room Catchers,113,2003,Orange,1 +Clikits,Cool Room Catchers,113,2003,Trans-Bright Green,4 +Clikits,Cool Room Catchers,113,2003,Trans-Clear,6 +Clikits,Cool Room Catchers,113,2003,Trans-Dark Pink,5 +Clikits,Cool Room Catchers,113,2003,Trans-Neon Orange,9 +Clikits,Cool Room Catchers,113,2003,Trans-Yellow,7 +Clikits,Trendy Tote Sky Blue,94,2003,Chrome Silver,1 +Clikits,Trendy Tote Sky Blue,94,2003,Chrome Pink,1 +Clikits,Trendy Tote Sky Blue,94,2003,Chrome Blue,2 +Clikits,Trendy Tote Sky Blue,94,2003,Bright Light Blue,1 +Clikits,Trendy Tote Sky Blue,94,2003,Aqua,2 +Clikits,Trendy Tote Tangerine,94,2003,Trans-Bright Green,1 +Clikits,Trendy Tote Tangerine,94,2003,Yellow,4 +Clikits,Trendy Tote Tangerine,94,2003,Trans-Neon Orange,4 +Clikits,Trendy Tote Tangerine,94,2003,Trans-Dark Pink,3 +Clikits,Trendy Tote Tangerine,94,2003,Orange,2 +Clikits,Trendy Tote Tangerine,94,2003,Dark Pink,3 +Clikits,Trendy Tote Sky Blue,94,2003,Trans-Very Lt Blue,1 +Clikits,Trendy Tote Sky Blue,94,2003,Trans-Purple,3 +Clikits,Trendy Tote Sky Blue,94,2003,Trans-Light Blue,2 +Clikits,Trendy Tote Sky Blue,94,2003,Trans-Dark Pink,2 +Clikits,Trendy Tote Sky Blue,94,2003,Royal Blue,1 +Clikits,Trendy Tote Tangerine,94,2003,Light Salmon,3 +Clikits,Trendy Tote Tangerine,94,2003,Trans-Yellow,2 +Clikits,Trendy Tote Hot Pink,89,2003,Bright Pink,1 +Clikits,Trendy Tote Hot Pink,89,2003,Chrome Pink,2 +Clikits,Trendy Tote Hot Pink,89,2003,Dark Pink,6 +Clikits,Trendy Tote Hot Pink,89,2003,Trans-Dark Pink,2 +Clikits,Trendy Tote Hot Pink,89,2003,Trans-Pink,2 +Clikits,Trendy Tote Hot Pink,89,2003,Trans-Very Lt Blue,2 +Clikits,Trendy Tote Hot Pink,89,2003,Light Yellow,3 +Clikits,Trendy Tote Hot Pink,89,2003,Aqua,5 +Clikits,Jewels-n-Rings,80,2003,Trans-Dark Pink,6 +Clikits,Jewels-n-Rings,80,2003,Trans-Yellow,1 +Clikits,Jewels-n-Bands,80,2003,Trans-Medium Blue,2 +Clikits,Jewels-n-Bands,80,2003,Trans-Orange,4 +Clikits,Jewels-n-Bands,80,2003,Trans-Yellow,5 +Clikits,Jewels-n-Bands,80,2003,Yellow,1 +Clikits,Jewels-n-Bands,80,2003,Trans-Dark Pink,3 +Clikits,Jewels-n-Bands,80,2003,Trans-Clear,4 +Clikits,Jewels-n-Bands,80,2003,Trans-Bright Green,5 +Clikits,Jewels-n-Bands,80,2003,Orange,1 +Clikits,Jewels-n-Bands,80,2003,Medium Orange,2 +Clikits,Jewels-n-Bands,80,2003,Trans-Neon Orange,5 +Clikits,Jewels-n-Rings,80,2003,Chrome Pink,1 +Clikits,Jewels-n-Rings,80,2003,Light Yellow,1 +Clikits,Jewels-n-Rings,80,2003,Pink,1 +Clikits,Jewels-n-Rings,80,2003,Trans-Clear,7 +Clikits,Jewels-n-Bands,80,2003,Lime,1 +Clikits,Jewels-n-Rings,80,2003,Trans-Pink,6 +Clikits,Jewels-n-Rings,80,2003,Trans-Very Lt Blue,4 +Clikits,Jewels-n-Clips,72,2003,Trans-Clear,5 +Clikits,Jewels-n-Clips,72,2003,Trans-Dark Pink,2 +Clikits,Jewels-n-Clips,72,2003,Trans-Light Blue,9 +Clikits,Jewels-n-Clips,72,2003,Trans-Neon Green,1 +Clikits,Jewels-n-Clips,72,2003,Trans-Purple,6 +Clikits,Jewels-n-Clips,72,2003,Trans-Very Lt Blue,1 +Clikits,Jewels-n-Clips,72,2003,Chrome Silver,4 +Clikits,Jewels-n-Clips,72,2003,Light Turquoise,1 +Clikits,Jewels-n-Clips,72,2003,Aqua,1 +Clikits,Jewels-n-Clips,72,2003,Chrome Blue,1 +Clikits,Bangle Minis,32,2003,Chrome Pink,1 +Clikits,Bangle Minis,32,2003,Light Green,1 +Clikits,Bangle Minis,32,2003,Light Yellow,1 +Clikits,Bangle Minis,32,2003,Pink,1 +Clikits,Bangle Minis,32,2003,Trans-Clear,1 +Clikits,Bangle Minis,32,2003,Aqua,1 +Clikits,Bangle Minis,32,2003,Trans-Yellow,1 +Clikits,Bangle Minis,32,2003,Trans-Very Lt Blue,1 +Clikits,Bangle Minis,32,2003,Trans-Pink,5 +Clikits,Photo Minis,30,2003,Trans-Dark Pink,2 +Clikits,Photo Minis,30,2003,Trans-Yellow,4 +Clikits,Photo Minis,30,2003,Yellow,1 +Clikits,Photo Minis,30,2003,Trans-Neon Orange,3 +Clikits,Photo Minis,30,2003,Light Salmon,2 +Clikits,Photo Minis,30,2003,Orange,1 +Clikits,Photo Minis,30,2003,Royal Blue,1 +Clikits,Photo Minis,30,2003,Trans-Clear,1 +Clikits,Clikits Bracelet Sample Set,13,2003,Chrome Pink,1 +Clikits,Clikits Bracelet Sample Set,13,2003,Chrome Blue,1 +Clikits,Clikits Bracelet Sample Set,13,2003,Aqua,1 +Clikits,Clikits Bracelet Sample Set,13,2003,Trans-Yellow,1 +Clikits,Clikits Bracelet Sample Set,13,2003,Trans-Pink,1 +Clikits,Clikits Bracelet Sample Set,13,2003,Trans-Dark Pink,3 +Clikits,Clikits Bracelet Sample Set,13,2003,Medium Blue,1 +Clikits,Clikits Bracelet Sample Set,13,2003,Dark Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 11) Icons,10,2004,Trans-Dark Pink,2 +Clikits,Advent Calendar 2004 Clikits (Day 4) Ring,10,2004,White,1 +Clikits,Advent Calendar 2004 Clikits (Day 4) Ring,10,2004,Trans-Dark Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 4) Ring,10,2004,Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 4) Ring,10,2004,Light Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 11) Icons,10,2004,Trans-Light Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 11) Icons,10,2004,Trans-Purple,4 +Clikits,Advent Calendar 2004 Clikits (Day 11) Icons,10,2004,White,1 +Clikits,Advent Calendar 2004 Clikits (Day 18) Paper Clip / Hair Clip,10,2004,Aqua,2 +Clikits,Advent Calendar 2004 Clikits (Day 18) Paper Clip / Hair Clip,10,2004,Dark Pink,2 +Clikits,Advent Calendar 2004 Clikits (Day 18) Paper Clip / Hair Clip,10,2004,Sky Blue,2 +Clikits,Advent Calendar 2004 Clikits (Day 18) Paper Clip / Hair Clip,10,2004,Trans-Dark Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 18) Paper Clip / Hair Clip,10,2004,White,2 +Clikits,Advent Calendar 2004 Clikits (Day 12) Necklace,8,2004,Trans-Light Blue,3 +Clikits,Advent Calendar 2004 Clikits (Day 12) Necklace,8,2004,Trans-Purple,2 +Clikits,Advent Calendar 2004 Clikits (Day 12) Necklace,8,2004,Trans-Clear,1 +Clikits,Advent Calendar 2004 Clikits (Day 19) Picture Frame,8,2004,Royal Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 19) Picture Frame,8,2004,Trans-Clear,2 +Clikits,Advent Calendar 2004 Clikits (Day 19) Picture Frame,8,2004,Trans-Dark Pink,2 +Clikits,Advent Calendar 2004 Clikits (Day 19) Picture Frame,8,2004,Trans-Light Blue,2 +Clikits,Advent Calendar 2004 Clikits (Day 3) Hair Band,7,2004,Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 3) Hair Band,7,2004,Trans-Dark Pink,2 +Clikits,Advent Calendar 2004 Clikits (Day 3) Hair Band,7,2004,Trans-Neon Orange,2 +Clikits,Advent Calendar 2004 Clikits (Day 5) Picture Frame,6,2004,Royal Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 5) Picture Frame,6,2004,Trans-Clear,1 +Clikits,Advent Calendar 2004 Clikits (Day 5) Picture Frame,6,2004,Trans-Dark Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 5) Picture Frame,6,2004,Trans-Light Blue,2 +Clikits,Advent Calendar 2004 Clikits (Day 5) Picture Frame,6,2004,Trans-Very Lt Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 24) Carry Case,5,2004,Light Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 23) Hair Band,5,2004,Light Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 23) Hair Band,5,2004,Trans-Light Blue,2 +Clikits,Advent Calendar 2004 Clikits (Day 24) Carry Case,5,2004,White,1 +Clikits,Advent Calendar 2004 Clikits (Day 23) Hair Band,5,2004,Trans-Neon Orange,2 +Clikits,Advent Calendar 2004 Clikits (Day 24) Carry Case,5,2004,Aqua,1 +Clikits,Advent Calendar 2004 Clikits (Day 10) Hair Band,5,2004,Dark Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 10) Hair Band,5,2004,Trans-Dark Pink,2 +Clikits,Advent Calendar 2004 Clikits (Day 10) Hair Band,5,2004,Trans-Purple,2 +Clikits,Advent Calendar 2004 Clikits (Day 7) Gift Tag with Icons,4,2004,Chrome Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 7) Gift Tag with Icons,4,2004,Royal Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 7) Gift Tag with Icons,4,2004,Trans-Purple,1 +Clikits,Advent Calendar 2004 Clikits (Day 8) Hair Band,4,2004,Dark Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 8) Hair Band,4,2004,Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 8) Hair Band,4,2004,Trans-Dark Pink,2 +Clikits,Advent Calendar 2004 Clikits (Day 9) Bracelet,4,2004,Trans-Clear,1 +Clikits,Advent Calendar 2004 Clikits (Day 9) Bracelet,4,2004,Trans-Light Blue,3 +Clikits,Advent Calendar 2004 Clikits (Day 20) Hair Band,4,2004,Trans-Dark Pink,2 +Clikits,Advent Calendar 2004 Clikits (Day 2) Bracelet,4,2004,Trans-Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 2) Bracelet,4,2004,Trans-Dark Pink,2 +Clikits,Advent Calendar 2004 Clikits (Day 2) Bracelet,4,2004,Trans-Clear,1 +Clikits,Advent Calendar 2004 Clikits (Day 13) Hair Band,4,2004,Aqua,1 +Clikits,Advent Calendar 2004 Clikits (Day 13) Hair Band,4,2004,Light Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 13) Hair Band,4,2004,Trans-Light Blue,2 +Clikits,Advent Calendar 2004 Clikits (Day 14) Gift Tag with Icons,4,2004,Chrome Silver,1 +Clikits,Advent Calendar 2004 Clikits (Day 14) Gift Tag with Icons,4,2004,Light Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 14) Gift Tag with Icons,4,2004,Royal Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 14) Gift Tag with Icons,4,2004,Trans-Purple,1 +Clikits,Advent Calendar 2004 Clikits (Day 15) Ring,4,2004,Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 15) Ring,4,2004,Trans-Clear,1 +Clikits,Advent Calendar 2004 Clikits (Day 15) Ring,4,2004,Trans-Dark Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 15) Ring,4,2004,Trans-Light Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 16) Necklace,4,2004,Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 16) Necklace,4,2004,Trans-Clear,1 +Clikits,Advent Calendar 2004 Clikits (Day 16) Necklace,4,2004,Trans-Dark Pink,2 +Clikits,Advent Calendar 2004 Clikits (Day 21) Gift Tag with Icons,4,2004,Chrome Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 21) Gift Tag with Icons,4,2004,Royal Blue,1 +Clikits,Advent Calendar 2004 Clikits (Day 21) Gift Tag with Icons,4,2004,Trans-Purple,1 +Clikits,Advent Calendar 2004 Clikits (Day 21) Gift Tag with Icons,4,2004,White,1 +Clikits,Advent Calendar 2004 Clikits (Day 20) Hair Band,4,2004,Dark Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 7) Gift Tag with Icons,4,2004,Aqua,1 +Clikits,Advent Calendar 2004 Clikits (Day 20) Hair Band,4,2004,Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 1) Paper Clip / Hair Clip,3,2004,Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 1) Paper Clip / Hair Clip,3,2004,Trans-Dark Pink,2 +Clikits,Advent Calendar 2004 Clikits (Day 22) Paper Clip / Hair Clip,3,2004,Trans-Light Blue,2 +Clikits,Advent Calendar 2004 Clikits (Day 22) Paper Clip / Hair Clip,3,2004,White,1 +Clikits,Advent Calendar 2004 Clikits (Day 17) Bangle,2,2004,Trans-Dark Pink,1 +Clikits,Advent Calendar 2004 Clikits (Day 17) Bangle,2,2004,Trans-Neon Orange,1 +Clikits,Advent Calendar 2004 Clikits (Day 6) Bangle,2,2004,Aqua,1 +Clikits,Advent Calendar 2004 Clikits (Day 6) Bangle,2,2004,Trans-Light Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 10) Paper Clip,10,2005,Trans-Medium Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 10) Paper Clip,10,2005,Trans-Light Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 10) Paper Clip,10,2005,Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 10) Paper Clip,10,2005,Blue-Violet,1 +Clikits,Advent Calendar 2005 Clikits (Day 18) Bracelet,9,2005,Trans-Clear,1 +Clikits,Advent Calendar 2005 Clikits (Day 18) Bracelet,9,2005,Trans-Medium Blue,2 +Clikits,Advent Calendar 2005 Clikits (Day 18) Bracelet,9,2005,Trans-Very Lt Blue,2 +Clikits,Advent Calendar 2005 Clikits (Day 4) Icons,8,2005,Trans-Light Purple,2 +Clikits,Advent Calendar 2005 Clikits (Day 17) Icons,8,2005,Aqua,1 +Clikits,Advent Calendar 2005 Clikits (Day 17) Icons,8,2005,Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 17) Icons,8,2005,Trans-Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 17) Icons,8,2005,Trans-Very Lt Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 4) Icons,8,2005,Trans-Pink,2 +Clikits,Advent Calendar 2005 Clikits (Day 2) Hair Band,7,2005,Light Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 2) Hair Band,7,2005,Purple,1 +Clikits,Advent Calendar 2005 Clikits (Day 2) Hair Band,7,2005,Trans-Medium Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 2) Hair Band,7,2005,Trans-Purple,1 +Clikits,Advent Calendar 2005 Clikits (Day 2) Hair Band,7,2005,White,1 +Clikits,Advent Calendar 2005 Clikits (Day 13) Hair Band,7,2005,Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 15) Hair Band,7,2005,Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 13) Hair Band,7,2005,Light Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 13) Hair Band,7,2005,Trans-Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 13) Hair Band,7,2005,Trans-Light Purple,2 +Clikits,Advent Calendar 2005 Clikits (Day 15) Hair Band,7,2005,Bright Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 15) Hair Band,7,2005,Light Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 15) Hair Band,7,2005,Trans-Medium Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 15) Hair Band,7,2005,Trans-Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 11) Picture Frame,6,2005,Light Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 11) Picture Frame,6,2005,Royal Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 11) Picture Frame,6,2005,Trans-Clear,1 +Clikits,Advent Calendar 2005 Clikits (Day 11) Picture Frame,6,2005,Trans-Medium Blue,2 +Clikits,Advent Calendar 2005 Clikits (Day 11) Picture Frame,6,2005,Trans-Purple,1 +Clikits,Advent Calendar 2005 Clikits (Day 9) Hair Band,4,2005,Trans-Purple,1 +Clikits,Advent Calendar 2005 Clikits (Day 9) Hair Band,4,2005,Purple,2 +Clikits,Advent Calendar 2005 Clikits (Day 12) Gift Tag with Icons,4,2005,Royal Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 16) Gift Tag with Icons,4,2005,Chrome Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 16) Gift Tag with Icons,4,2005,Royal Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 16) Gift Tag with Icons,4,2005,Trans-Very Lt Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 16) Gift Tag with Icons,4,2005,White,1 +Clikits,Advent Calendar 2005 Clikits (Day 9) Hair Band,4,2005,White,1 +Clikits,Advent Calendar 2005 Clikits (Day 3) Necklace,4,2005,Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 3) Necklace,4,2005,Trans-Dark Pink,2 +Clikits,Advent Calendar 2005 Clikits (Day 3) Necklace,4,2005,Trans-Light Purple,1 +Clikits,Advent Calendar 2005 Clikits (Day 12) Gift Tag with Icons,4,2005,Chrome Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 12) Gift Tag with Icons,4,2005,Trans-Very Lt Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 12) Gift Tag with Icons,4,2005,White,1 +Clikits,Advent Calendar 2005 Clikits (Day 19) Necklace,4,2005,Trans-Light Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 19) Necklace,4,2005,Trans-Light Purple,1 +Clikits,Advent Calendar 2005 Clikits (Day 19) Necklace,4,2005,Trans-Medium Blue,2 +Clikits,Advent Calendar 2005 Clikits (Day 22) Hair Band,4,2005,Bright Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 22) Hair Band,4,2005,Medium Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 22) Hair Band,4,2005,Trans-Pink,2 +Clikits,Advent Calendar 2005 Clikits (Day 23) Gift Tag with Icons,4,2005,Chrome Silver,1 +Clikits,Advent Calendar 2005 Clikits (Day 23) Gift Tag with Icons,4,2005,Royal Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 23) Gift Tag with Icons,4,2005,Trans-Very Lt Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 23) Gift Tag with Icons,4,2005,White,1 +Clikits,Advent Calendar 2005 Clikits (Day 7) Trinket Box,3,2005,Trans-Medium Blue,2 +Clikits,Advent Calendar 2005 Clikits (Day 8) Magnet,3,2005,Dark Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 8) Magnet,3,2005,Trans-Dark Pink,2 +Clikits,Advent Calendar 2005 Clikits (Day 14) Ring,3,2005,Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 14) Ring,3,2005,Trans-Very Lt Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 14) Ring,3,2005,White,1 +Clikits,Advent Calendar 2005 Clikits (Day 1) Ring,3,2005,Dark Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 1) Ring,3,2005,Trans-Light Purple,1 +Clikits,Advent Calendar 2005 Clikits (Day 1) Ring,3,2005,White,1 +Clikits,Advent Calendar 2005 Clikits (Day 20) Paper Clip,3,2005,Dark Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 20) Paper Clip,3,2005,Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 20) Paper Clip,3,2005,Trans-Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 5) Bangle,3,2005,Medium Blue,1 +Clikits,Advent Calendar 2005 Clikits (Day 5) Bangle,3,2005,Trans-Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 5) Bangle,3,2005,Trans-Purple,1 +Clikits,Advent Calendar 2005 Clikits (Day 6) Magnet,3,2005,Purple,1 +Clikits,Advent Calendar 2005 Clikits (Day 6) Magnet,3,2005,Trans-Dark Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 6) Magnet,3,2005,Trans-Purple,1 +Clikits,Advent Calendar 2005 Clikits (Day 7) Trinket Box,3,2005,Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 24) Hair Grip,3,2005,Trans-Dark Pink,1 +Clikits,Advent Calendar 2005 Clikits (Day 24) Hair Grip,3,2005,White,1 +Clikits,Advent Calendar 2005 Clikits (Day 21) Bangle,2,2005,Trans-Medium Blue,2 +Clikits,Totally Tropical Decor Set,132,2006,Bright Light Orange,1 +Clikits,Totally Tropical Decor Set,132,2006,Bright Pink,5 +Clikits,Totally Tropical Decor Set,132,2006,Light Yellow,1 +Clikits,Totally Tropical Decor Set,132,2006,Lime,2 +Clikits,Totally Tropical Decor Set,132,2006,Medium Orange,1 +Clikits,Totally Tropical Decor Set,132,2006,Pink,1 +Clikits,Totally Tropical Decor Set,132,2006,Trans-Bright Green,2 +Clikits,Totally Tropical Decor Set,132,2006,Trans-Clear,1 +Clikits,Totally Tropical Decor Set,132,2006,Trans-Dark Pink,11 +Clikits,Totally Tropical Decor Set,132,2006,Trans-Light Blue,6 +Clikits,Totally Tropical Decor Set,132,2006,Trans-Neon Orange,6 +Clikits,Totally Tropical Decor Set,132,2006,Trans-Orange,2 +Clikits,Totally Tropical Decor Set,132,2006,Trans-Pink,6 +Clikits,Totally Tropical Decor Set,132,2006,Trans-Yellow,2 +Clikits,Totally Tropical Decor Set,132,2006,Very Light Orange,1 +Clikits,Totally Tropical Decor Set,132,2006,[No Color],3 +Clikits,Totally Tropical Decor Set,132,2006,Aqua,5 +Clikits,Fun Flamingo Frames 'n' More,79,2006,[No Color],1 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Aqua,4 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Bright Light Orange,1 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Bright Pink,2 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Dark Pink,1 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Light Pink,1 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Light Yellow,1 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Lime,1 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Royal Blue,2 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Trans-Bright Green,4 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Trans-Clear,2 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Trans-Dark Pink,3 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Trans-Light Blue,2 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Trans-Neon Orange,4 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Trans-Pink,6 +Clikits,Fun Flamingo Frames 'n' More,79,2006,Trans-Very Lt Blue,1 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Trans-Orange,2 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Trans-Pink,4 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Trans-Very Lt Blue,7 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Aqua,2 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Bright Pink,3 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Trans-Yellow,2 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Medium Orange,1 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Pink,1 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Trans-Bright Green,4 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Light Blue,1 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Trans-Clear,1 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Trans-Light Blue,1 +Clikits,Tropical Breeze Jewels 'n' More,73,2006,Trans-Neon Orange,3 +Clikits,Pink & Pearls Jewels 'n' More,68,2006,Light Yellow,2 +Clikits,Pink & Pearls Jewels 'n' More,68,2006,Bright Pink,1 +Clikits,Pink & Pearls Jewels 'n' More,68,2006,Dark Pink,1 +Clikits,Pink & Pearls Jewels 'n' More,68,2006,Pearl White,1 +Clikits,Pink & Pearls Jewels 'n' More,68,2006,Pink,7 +Clikits,Pink & Pearls Jewels 'n' More,68,2006,Trans-Clear,2 +Clikits,Pink & Pearls Jewels 'n' More,68,2006,Trans-Dark Pink,5 +Clikits,Pink & Pearls Jewels 'n' More,68,2006,Trans-Pink,7 +Clikits,Pink & Pearls Jewels 'n' More,68,2006,Trans-Yellow,4 +Clikits,Pink & Pearls Jewels 'n' More,68,2006,Pearl Light Gold,1 +Clikits,Pearly Pink Bracelet & Bands,63,2006,Pearl White,1 +Clikits,Pearly Pink Bracelet & Bands,63,2006,Trans-Clear,3 +Clikits,Pearly Pink Bracelet & Bands,63,2006,Trans-Pink,7 +Clikits,Pearly Pink Bracelet & Bands,63,2006,Trans-Yellow,2 +Clikits,Pearly Pink Bracelet & Bands,63,2006,White,1 +Clikits,Pearly Pink Bracelet & Bands,63,2006,Bright Pink,1 +Coast Guard,Coast Guard Station,273,1976,Black,14 +Coast Guard,Coast Guard Station,273,1976,Blue,4 +Coast Guard,Coast Guard Station,273,1976,Light Gray,4 +Coast Guard,Coast Guard Station,273,1976,Milky White,1 +Coast Guard,Coast Guard Station,273,1976,Red,14 +Coast Guard,Coast Guard Station,273,1976,Trans-Clear,3 +Coast Guard,Coast Guard Station,273,1976,White,7 +Coast Guard,Coast Guard Station,273,1976,Yellow,12 +Coast Guard,Coast Guard Station,301,1978,Black,14 +Coast Guard,Coast Guard Station,301,1978,Blue,2 +Coast Guard,Coast Guard Station,301,1978,Light Gray,5 +Coast Guard,Coast Guard Station,301,1978,Milky White,1 +Coast Guard,Coast Guard Station,301,1978,Red,14 +Coast Guard,Coast Guard Station,301,1978,Trans-Clear,3 +Coast Guard,Coast Guard Station,301,1978,Trans-Green,1 +Coast Guard,Coast Guard Station,301,1978,Trans-Red,1 +Coast Guard,Coast Guard Station,301,1978,White,17 +Coast Guard,Coast Guard Station,301,1978,Yellow,7 +Coast Guard,Coast Guard Station (Canadian Edition),284,1978,Black,15 +Coast Guard,Coast Guard Station (Canadian Edition),284,1978,Blue,2 +Coast Guard,Coast Guard Station (Canadian Edition),284,1978,Light Gray,5 +Coast Guard,Coast Guard Station (Canadian Edition),284,1978,Milky White,1 +Coast Guard,Coast Guard Station (Canadian Edition),284,1978,Red,14 +Coast Guard,Coast Guard Station (Canadian Edition),284,1978,Trans-Clear,3 +Coast Guard,Coast Guard Station (Canadian Edition),284,1978,Trans-Green,1 +Coast Guard,Coast Guard Station (Canadian Edition),284,1978,Trans-Red,1 +Coast Guard,Coast Guard Station (Canadian Edition),284,1978,White,17 +Coast Guard,Coast Guard Station (Canadian Edition),284,1978,Yellow,7 +Coast Guard,Baja Buggy,37,1996,Black,4 +Coast Guard,Baja Buggy,37,1996,Blue,2 +Coast Guard,Baja Buggy,37,1996,Light Gray,3 +Coast Guard,Baja Buggy,37,1996,Red,3 +Coast Guard,Baja Buggy,37,1996,Trans-Yellow,1 +Coast Guard,Baja Buggy,37,1996,White,7 +Coast Guard,Baja Buggy,37,1996,Yellow,3 +Coast Guard,Coast Guard HQ,217,1999,Black,24 +Coast Guard,Coast Guard HQ,217,1999,Blue,14 +Coast Guard,Coast Guard HQ,217,1999,Brown,1 +Coast Guard,Coast Guard HQ,217,1999,Dark Gray,2 +Coast Guard,Coast Guard HQ,217,1999,Green,6 +Coast Guard,Coast Guard HQ,217,1999,Light Gray,14 +Coast Guard,Coast Guard HQ,217,1999,Orange,1 +Coast Guard,Coast Guard HQ,217,1999,Red,10 +Coast Guard,Coast Guard HQ,217,1999,Trans-Clear,1 +Coast Guard,Coast Guard HQ,217,1999,Trans-Dark Blue,6 +Coast Guard,Coast Guard HQ,217,1999,Trans-Green,2 +Coast Guard,Coast Guard HQ,217,1999,Trans-Light Blue,1 +Coast Guard,Coast Guard HQ,217,1999,Trans-Neon Green,1 +Coast Guard,Coast Guard HQ,217,1999,Trans-Red,2 +Coast Guard,Coast Guard HQ,217,1999,White,30 +Coast Guard,Coast Guard HQ,217,1999,Yellow,17 +Coast Guard,Beach Buggy,28,1999,White,2 +Coast Guard,Beach Buggy,28,1999,Yellow,4 +Coast Guard,Beach Buggy,28,1999,Black,3 +Coast Guard,Beach Buggy,28,1999,Blue,3 +Coast Guard,Beach Buggy,28,1999,Dark Gray,1 +Coast Guard,Beach Buggy,28,1999,Light Gray,1 +Coast Guard,Beach Buggy,28,1999,Orange,1 +Coast Guard,Beach Buggy,28,1999,Red,3 +Coast Guard,Beach Buggy,28,1999,Trans-Neon Green,1 +Coast Guard,Coast Watch HQ,366,2003,[No Color],1 +Coast Guard,Coast Watch HQ,366,2003,Black,60 +Coast Guard,Coast Watch HQ,366,2003,Dark Blue,2 +Coast Guard,Coast Watch HQ,366,2003,Dark Gray,25 +Coast Guard,Coast Watch HQ,366,2003,Light Gray,33 +Coast Guard,Coast Watch HQ,366,2003,Orange,3 +Coast Guard,Coast Watch HQ,366,2003,Tan,3 +Coast Guard,Coast Watch HQ,366,2003,Trans-Black,5 +Coast Guard,Coast Watch HQ,366,2003,Trans-Clear,2 +Coast Guard,Coast Watch HQ,366,2003,Trans-Green,1 +Coast Guard,Coast Watch HQ,366,2003,Trans-Red,1 +Coast Guard,Coast Watch HQ,366,2003,Trans-Yellow,3 +Coast Guard,Coast Watch HQ,366,2003,White,8 +Coast Guard,Coast Watch HQ,366,2003,Yellow,43 +Coast Guard,Rescue Chopper,205,2004,Trans-Red,1 +Coast Guard,Rescue Chopper,205,2004,Trans-Yellow,1 +Coast Guard,Rescue Chopper,205,2004,White,5 +Coast Guard,Rescue Chopper,205,2004,Yellow,26 +Coast Guard,Rescue Chopper,205,2004,[No Color],1 +Coast Guard,Rescue Chopper,205,2004,Black,28 +Coast Guard,Rescue Chopper,205,2004,Blue,1 +Coast Guard,Rescue Chopper,205,2004,Dark Bluish Gray,16 +Coast Guard,Rescue Chopper,205,2004,Light Bluish Gray,19 +Coast Guard,Rescue Chopper,205,2004,Orange,3 +Coast Guard,Rescue Chopper,205,2004,Trans-Black,1 +Coast Guard,Rescue Chopper,205,2004,Trans-Green,1 +Coast Guard,Dune Patrol,37,2004,Black,8 +Coast Guard,Dune Patrol,37,2004,Dark Blue,1 +Coast Guard,Dune Patrol,37,2004,Dark Bluish Gray,2 +Coast Guard,Dune Patrol,37,2004,Trans-Red,1 +Coast Guard,Dune Patrol,37,2004,Trans-Yellow,1 +Coast Guard,Dune Patrol,37,2004,White,1 +Coast Guard,Dune Patrol,37,2004,Yellow,5 +Coast Guard,Dune Patrol,37,2004,Orange,2 +Coast Guard,Dune Patrol,37,2004,Light Bluish Gray,3 +Coast Guard,Life Guard - Quick Magic Box Promotional,38,2007,Black,1 +Coast Guard,Life Guard - Quick Magic Box Promotional,38,2007,Blue,7 +Coast Guard,Life Guard - Quick Magic Box Promotional,38,2007,Dark Bluish Gray,4 +Coast Guard,Life Guard - Quick Magic Box Promotional,38,2007,Dark Red,1 +Coast Guard,Life Guard - Quick Magic Box Promotional,38,2007,Red,4 +Coast Guard,Life Guard - Quick Magic Box Promotional,38,2007,Reddish Brown,1 +Coast Guard,Life Guard - Quick Magic Box Promotional,38,2007,Tan,1 +Coast Guard,Life Guard - Quick Magic Box Promotional,38,2007,Trans-Red,1 +Coast Guard,Life Guard - Quick Magic Box Promotional,38,2007,White,7 +Coast Guard,Life Guard - Quick Magic Box Promotional,38,2007,Yellow,5 +Coast Guard,Coast Guard Patrol,455,2013,Red,3 +Coast Guard,Coast Guard Patrol,455,2013,Orange,19 +Coast Guard,Coast Guard Patrol,455,2013,Medium Dark Flesh,1 +Coast Guard,Coast Guard Patrol,455,2013,Light Bluish Gray,17 +Coast Guard,Coast Guard Patrol,455,2013,Dark Brown,1 +Coast Guard,Coast Guard Patrol,455,2013,Dark Bluish Gray,26 +Coast Guard,Coast Guard Patrol,455,2013,Dark Blue,1 +Coast Guard,Coast Guard Patrol,455,2013,Bright Light Orange,1 +Coast Guard,Coast Guard Patrol,455,2013,Bright Green,1 +Coast Guard,Coast Guard Patrol,455,2013,Blue,15 +Coast Guard,Coast Guard Patrol,455,2013,Black,30 +Coast Guard,Coast Guard Patrol,455,2013,[No Color],1 +Coast Guard,Coast Guard Patrol,455,2013,Tan,1 +Coast Guard,Coast Guard Patrol,455,2013,Trans-Black,1 +Coast Guard,Coast Guard Patrol,455,2013,Trans-Clear,3 +Coast Guard,Coast Guard Patrol,455,2013,Trans-Green,2 +Coast Guard,Coast Guard Patrol,455,2013,Trans-Light Blue,4 +Coast Guard,Coast Guard Patrol,455,2013,Trans-Neon Green,1 +Coast Guard,Coast Guard Patrol,455,2013,Trans-Red,3 +Coast Guard,Coast Guard Patrol,455,2013,Trans-Yellow,3 +Coast Guard,Coast Guard Patrol,455,2013,White,46 +Coast Guard,Coast Guard Patrol,455,2013,Yellow,20 +Coast Guard,Coast Guard Plane,279,2013,Black,18 +Coast Guard,Coast Guard Plane,279,2013,Blue,6 +Coast Guard,Coast Guard Plane,279,2013,Dark Blue,1 +Coast Guard,Coast Guard Plane,279,2013,Dark Bluish Gray,19 +Coast Guard,Coast Guard Plane,279,2013,Dark Red,1 +Coast Guard,Coast Guard Plane,279,2013,Dark Tan,1 +Coast Guard,Coast Guard Plane,279,2013,Flat Silver,1 +Coast Guard,Coast Guard Plane,279,2013,Green,4 +Coast Guard,Coast Guard Plane,279,2013,Light Bluish Gray,16 +Coast Guard,Coast Guard Plane,279,2013,Medium Blue,1 +Coast Guard,Coast Guard Plane,279,2013,Orange,7 +Coast Guard,Coast Guard Plane,279,2013,Reddish Brown,2 +Coast Guard,Coast Guard Plane,279,2013,Sand Blue,1 +Coast Guard,Coast Guard Plane,279,2013,Tan,1 +Coast Guard,Coast Guard Plane,279,2013,Trans-Black,1 +Coast Guard,Coast Guard Plane,279,2013,Trans-Green,2 +Coast Guard,Coast Guard Plane,279,2013,Trans-Light Blue,5 +Coast Guard,Coast Guard Plane,279,2013,Trans-Red,2 +Coast Guard,Coast Guard Plane,279,2013,Trans-Yellow,1 +Coast Guard,Coast Guard Plane,279,2013,White,25 +Coast Guard,Coast Guard Plane,279,2013,Yellow,10 +Coast Guard,Coast Guard Helicopter,232,2013,Yellow,5 +Coast Guard,Coast Guard Helicopter,232,2013,Black,20 +Coast Guard,Coast Guard Helicopter,232,2013,Blue,11 +Coast Guard,Coast Guard Helicopter,232,2013,Dark Bluish Gray,19 +Coast Guard,Coast Guard Helicopter,232,2013,Dark Brown,1 +Coast Guard,Coast Guard Helicopter,232,2013,Dark Tan,1 +Coast Guard,Coast Guard Helicopter,232,2013,Light Bluish Gray,15 +Coast Guard,Coast Guard Helicopter,232,2013,Orange,10 +Coast Guard,Coast Guard Helicopter,232,2013,Red,7 +Coast Guard,Coast Guard Helicopter,232,2013,Reddish Brown,1 +Coast Guard,Coast Guard Helicopter,232,2013,Trans-Black,1 +Coast Guard,Coast Guard Helicopter,232,2013,Trans-Clear,2 +Coast Guard,Coast Guard Helicopter,232,2013,Trans-Green,1 +Coast Guard,Coast Guard Helicopter,232,2013,Trans-Light Blue,3 +Coast Guard,Coast Guard Helicopter,232,2013,Trans-Red,1 +Coast Guard,Coast Guard Helicopter,232,2013,White,28 +Coast Guard,Coast Guard 4 x 4,127,2013,Orange,6 +Coast Guard,Coast Guard 4 x 4,127,2013,Light Bluish Gray,16 +Coast Guard,Coast Guard 4 x 4,127,2013,Dark Bluish Gray,9 +Coast Guard,Coast Guard 4 x 4,127,2013,Blue,5 +Coast Guard,Coast Guard 4 x 4,127,2013,Black,8 +Coast Guard,Coast Guard 4 x 4,127,2013,Yellow,3 +Coast Guard,Coast Guard 4 x 4,127,2013,White,16 +Coast Guard,Coast Guard 4 x 4,127,2013,Trans-Yellow,1 +Coast Guard,Coast Guard 4 x 4,127,2013,Trans-Red,3 +Coast Guard,Coast Guard 4 x 4,127,2013,Trans-Orange,1 +Coast Guard,Coast Guard 4 x 4,127,2013,Trans-Light Blue,3 +Coast Guard,Coast Guard 4 x 4,127,2013,Trans-Clear,1 +Coast Guard,Seaplane,37,2013,Black,1 +Coast Guard,Seaplane,37,2013,Blue,4 +Coast Guard,Seaplane,37,2013,Dark Bluish Gray,3 +Coast Guard,Seaplane,37,2013,Light Bluish Gray,4 +Coast Guard,Seaplane,37,2013,Orange,4 +Coast Guard,Seaplane,37,2013,Trans-Green,1 +Coast Guard,Seaplane,37,2013,Trans-Red,1 +Coast Guard,Seaplane,37,2013,Trans-Yellow,1 +Coast Guard,Seaplane,37,2013,White,8 +Coast Guard,Seaplane,37,2013,Yellow,3 +Coast Guard,Surfer Rescue,31,2013,[No Color],1 +Coast Guard,Surfer Rescue,31,2013,Black,3 +Coast Guard,Surfer Rescue,31,2013,Blue,4 +Coast Guard,Surfer Rescue,31,2013,Dark Bluish Gray,5 +Coast Guard,Surfer Rescue,31,2013,Dark Orange,1 +Coast Guard,Surfer Rescue,31,2013,Light Bluish Gray,2 +Coast Guard,Surfer Rescue,31,2013,Orange,2 +Coast Guard,Surfer Rescue,31,2013,Trans-Black,1 +Coast Guard,Surfer Rescue,31,2013,White,8 +Coast Guard,Surfer Rescue,31,2013,Yellow,4 +Collectible Minifigures,Vintage Minifigure Collection Vol. 1,21,2008,Black,5 +Collectible Minifigures,Vintage Minifigure Collection Vol. 1,21,2008,Green,1 +Collectible Minifigures,Vintage Minifigure Collection Vol. 1,21,2008,Light Bluish Gray,1 +Collectible Minifigures,Vintage Minifigure Collection Vol. 1,21,2008,Red,5 +Collectible Minifigures,Vintage Minifigure Collection Vol. 1,21,2008,White,4 +Collectible Minifigures,Vintage Minifigure Collection Vol. 1,21,2008,Yellow,3 +Competition,CyberMaster,897,1998,Black,79 +Competition,CyberMaster,897,1998,[No Color],3 +Competition,CyberMaster,897,1998,Yellow,13 +Competition,CyberMaster,897,1998,Dark Gray,4 +Competition,CyberMaster,897,1998,Dark Turquoise,21 +Competition,CyberMaster,897,1998,Light Gray,21 +Competition,CyberMaster,897,1998,Trans-Light Blue,3 +Competition,CyberMaster,897,1998,White,2 +Competition,CyberMaster,896,1998,[No Color],2 +Competition,CyberMaster,896,1998,Black,79 +Competition,CyberMaster,896,1998,Dark Gray,4 +Competition,CyberMaster,896,1998,Light Gray,21 +Competition,CyberMaster,896,1998,Trans-Light Blue,3 +Competition,CyberMaster,896,1998,White,2 +Competition,CyberMaster,896,1998,Yellow,13 +Competition,CyberMaster,896,1998,Dark Turquoise,21 +Competition,Cyber Strikers,367,1998,Dark Gray,2 +Competition,Cyber Strikers,367,1998,Dark Turquoise,8 +Competition,Cyber Strikers,367,1998,Light Gray,9 +Competition,Cyber Strikers,367,1998,Purple,6 +Competition,Cyber Strikers,367,1998,White,1 +Competition,Cyber Strikers,367,1998,Yellow,5 +Competition,Spider Slayer,367,1998,Blue,1 +Competition,Spider Slayer,367,1998,Dark Gray,3 +Competition,Spider Slayer,367,1998,Dark Turquoise,6 +Competition,Spider Slayer,367,1998,Light Gray,13 +Competition,Spider Slayer,367,1998,Purple,3 +Competition,Spyder Slayer,367,1998,Yellow,4 +Competition,Spyder Slayer,367,1998,White,1 +Competition,Spyder Slayer,367,1998,Trans-Neon Green,1 +Competition,Spyder Slayer,367,1998,Red,1 +Competition,Spyder Slayer,367,1998,Purple,3 +Competition,Spyder Slayer,367,1998,Light Gray,13 +Competition,Spyder Slayer,367,1998,Dark Turquoise,7 +Competition,Spyder Slayer,367,1998,Dark Gray,3 +Competition,Spider Slayer,367,1998,White,1 +Competition,Cyber Strikers,367,1998,[No Color],2 +Competition,Cyber Strikers,367,1998,Black,36 +Competition,Spider Slayer,367,1998,Red,1 +Competition,Spyder Slayer,367,1998,Blue,1 +Competition,Spider Slayer,367,1998,Trans-Neon Green,1 +Competition,Spider Slayer,367,1998,Yellow,4 +Competition,Spyder Slayer,367,1998,[No Color],2 +Competition,Spyder Slayer,367,1998,Black,44 +Competition,Spider Slayer,367,1998,[No Color],2 +Competition,Spider Slayer,367,1998,Black,44 +Competition,Robot's Revenge,222,1998,[No Color],1 +Competition,Robot's Revenge,222,1998,Black,30 +Competition,Robot's Revenge,222,1998,Dark Gray,1 +Competition,Robot's Revenge,222,1998,Dark Turquoise,6 +Competition,Robot's Revenge,222,1998,Light Gray,10 +Competition,Robot's Revenge,222,1998,Purple,3 +Competition,Robot's Revenge,222,1998,White,2 +Competition,Robot's Revenge,222,1998,Yellow,5 +Competition,Cyber Challenge,121,1998,Light Gray,8 +Competition,Cyber Challenge,121,1998,Dark Turquoise,5 +Competition,Cyber Challenge,121,1998,Purple,2 +Competition,Cyber Challenge,121,1998,White,1 +Competition,Cyber Challenge,121,1998,Yellow,2 +Competition,Cyber Challenge,121,1998,Black,26 +Competition,Cyber Challenge,121,1998,[No Color],1 +Competition,MC vs. Stinger,118,1998,Light Gray,8 +Competition,MC vs. Stinger,118,1998,Purple,2 +Competition,MC vs. Stinger,118,1998,White,1 +Competition,MC vs. Stinger,118,1998,Yellow,2 +Competition,MC vs. Stinger,118,1998,Black,25 +Competition,MC vs. Stinger,118,1998,[No Color],1 +Competition,MC vs. Stinger,118,1998,Dark Turquoise,5 +Competition,Blast Off Chopper with Bungee Cord Power!,70,1998,Black,18 +Competition,Blast Off Chopper with Bungee Cord Power!,70,1998,Dark Gray,1 +Competition,Blast Off Chopper with Bungee Cord Power!,70,1998,Dark Turquoise,2 +Competition,Blast Off Chopper with Bungee Cord Power!,70,1998,Light Gray,4 +Competition,Blast Off Chopper with Bungee Cord Power!,70,1998,Purple,1 +Competition,Bungee Chopper,70,1998,Yellow,4 +Competition,Bungee Chopper,70,1998,White,1 +Competition,Bungee Chopper,70,1998,Purple,3 +Competition,Bungee Chopper,70,1998,Light Gray,4 +Competition,Bungee Chopper,70,1998,Dark Gray,1 +Competition,Bungee Chopper,70,1998,Black,18 +Competition,Blast Off Chopper with Bungee Cord Power!,70,1998,Yellow,4 +Competition,Blast Off Chopper with Bungee Cord Power!,70,1998,White,1 +Competition,Technic Figure Cyber Person Promotional Polybag - [Toy Fair Nuernberg Promotion 1998],1,1998,[No Color],1 +Competition,Mission Experience Pack,642,2000,Trans-Green,1 +Competition,Mission Experience Pack,642,2000,Blue,2 +Competition,Mission Experience Pack,642,2000,Dark Gray,3 +Competition,Mission Experience Pack,642,2000,Dark Turquoise,14 +Competition,Mission Experience Pack,642,2000,Light Gray,12 +Competition,Mission Experience Pack,642,2000,Yellow,7 +Competition,Mission Experience Pack,642,2000,Trans-Red,1 +Competition,Mission Experience Pack,642,2000,White,1 +Competition,Mission Experience Pack,642,2000,[No Color],1 +Competition,Mission Experience Pack,642,2000,Black,74 +Competition,Turbo Racer,392,2000,Black,45 +Competition,Turbo Racer,392,2000,Dark Gray,1 +Competition,Turbo Racer,392,2000,Dark Turquoise,7 +Competition,Turbo Racer,392,2000,Flat Silver,2 +Competition,Turbo Racer,392,2000,Light Gray,7 +Competition,Turbo Racer,392,2000,Lime,9 +Competition,Turbo Racer,392,2000,Orange,10 +Competition,Turbo Racer,392,2000,Purple,5 +Competition,Turbo Racer,392,2000,[No Color],1 +Competition,Duel Bikes,208,2000,Black,25 +Competition,Duel Bikes,208,2000,Dark Gray,1 +Competition,Duel Bikes,208,2000,Dark Turquoise,3 +Competition,Duel Bikes,208,2000,Light Gray,3 +Competition,Duel Bikes,208,2000,Lime,5 +Competition,Duel Bikes,208,2000,Orange,5 +Competition,Duel Bikes,208,2000,Purple,2 +Competition,Duel Bikes,208,2000,[No Color],3 +Constraction,The Joker,57,2012,Dark Bluish Gray,2 +Constraction,The Joker,57,2012,Bright Green,1 +Constraction,The Joker,57,2012,White,3 +Constraction,The Joker,57,2012,Black,9 +Constraction,The Joker,57,2012,Trans-Neon Orange,1 +Constraction,The Joker,57,2012,Blue,1 +Constraction,The Joker,57,2012,Dark Purple,4 +Constraction,The Joker,57,2012,Light Bluish Gray,3 +Constraction,The Joker,57,2012,Orange,3 +Constraction,The Joker,57,2012,Pearl Dark Gray,1 +Constraction,The Joker,57,2012,Red,1 +Constraction,The Joker,57,2012,Trans-Neon Green,3 +Constraction,Captain America,44,2012,White,2 +Constraction,Iron Man,44,2012,Black,7 +Constraction,Iron Man,44,2012,Flat Silver,1 +Constraction,Iron Man,44,2012,Light Bluish Gray,2 +Constraction,Iron Man,44,2012,Pearl Gold,4 +Constraction,Iron Man,44,2012,Red,8 +Constraction,Iron Man,44,2012,Trans-Light Blue,2 +Constraction,Captain America,44,2012,Black,6 +Constraction,Captain America,44,2012,Blue,4 +Constraction,Captain America,44,2012,Dark Bluish Gray,2 +Constraction,Captain America,44,2012,Flat Silver,1 +Constraction,Captain America,44,2012,Pearl Dark Gray,1 +Constraction,Captain America,44,2012,Red,4 +Constraction,Iron Man,44,2012,Dark Bluish Gray,2 +Constraction,Batman,40,2012,Pearl Dark Gray,3 +Constraction,Batman,40,2012,Light Bluish Gray,1 +Constraction,Batman,40,2012,Dark Bluish Gray,1 +Constraction,Batman,40,2012,Blue,6 +Constraction,Batman,40,2012,Black,8 +Constraction,Batman,40,2012,Light Flesh,1 +Constraction,The Hulk,39,2012,Pearl Dark Gray,2 +Constraction,The Hulk,39,2012,Blue,1 +Constraction,The Hulk,39,2012,Black,7 +Constraction,The Hulk,39,2012,Dark Bluish Gray,2 +Constraction,The Hulk,39,2012,Light Bluish Gray,1 +Constraction,The Hulk,39,2012,Lime,6 +Constraction,Green Lantern,38,2012,Light Bluish Gray,1 +Constraction,Green Lantern,38,2012,Black,5 +Constraction,Green Lantern,38,2012,Light Flesh,1 +Constraction,Green Lantern,38,2012,Dark Bluish Gray,2 +Constraction,Green Lantern,38,2012,Tan,1 +Constraction,Green Lantern,38,2012,Trans-Bright Green,2 +Constraction,Green Lantern,38,2012,White,2 +Constraction,Green Lantern,38,2012,Pearl Dark Gray,3 +Constraction,Green Lantern,38,2012,Bright Green,4 +Constraction,CHI Razar,68,2013,Red,2 +Constraction,CHI Razar,68,2013,Pearl Dark Gray,2 +Constraction,CHI Razar,68,2013,Flat Silver,2 +Constraction,CHI Razar,68,2013,Dark Purple,2 +Constraction,CHI Razar,68,2013,Dark Bluish Gray,2 +Constraction,CHI Razar,68,2013,Blue,1 +Constraction,CHI Razar,68,2013,Black,13 +Constraction,CHI Razar,68,2013,Reddish Brown,1 +Constraction,CHI Eris,67,2013,Dark Bluish Gray,2 +Constraction,CHI Eris,67,2013,Black,10 +Constraction,CHI Eris,67,2013,Blue,1 +Constraction,CHI Eris,67,2013,Light Bluish Gray,2 +Constraction,CHI Eris,67,2013,Pearl Dark Gray,1 +Constraction,CHI Eris,67,2013,Pearl Gold,3 +Constraction,CHI Eris,67,2013,Red,1 +Constraction,CHI Eris,67,2013,Trans-Dark Blue,2 +Constraction,CHI Eris,67,2013,White,6 +Constraction,CHI Cragger,65,2013,Red,2 +Constraction,CHI Cragger,65,2013,Pearl Dark Gray,5 +Constraction,CHI Cragger,65,2013,Olive Green,3 +Constraction,CHI Cragger,65,2013,Light Bluish Gray,2 +Constraction,CHI Cragger,65,2013,Flat Silver,1 +Constraction,CHI Cragger,65,2013,Dark Green,4 +Constraction,CHI Cragger,65,2013,Dark Bluish Gray,3 +Constraction,CHI Cragger,65,2013,Black,8 +Constraction,CHI Cragger,65,2013,Reddish Brown,1 +Constraction,CHI Gorzan,58,2013,Black,12 +Constraction,CHI Gorzan,58,2013,Blue,1 +Constraction,CHI Gorzan,58,2013,Dark Bluish Gray,5 +Constraction,CHI Gorzan,58,2013,Light Bluish Gray,3 +Constraction,CHI Gorzan,58,2013,Pearl Dark Gray,3 +Constraction,CHI Gorzan,58,2013,Pearl Gold,2 +Constraction,CHI Gorzan,58,2013,Red,1 +Constraction,CHI Gorzan,58,2013,Trans-Dark Blue,1 +Constraction,CHI Laval,55,2013,Black,6 +Constraction,CHI Laval,55,2013,Dark Bluish Gray,3 +Constraction,CHI Laval,55,2013,Dark Red,2 +Constraction,CHI Laval,55,2013,Light Bluish Gray,2 +Constraction,CHI Laval,55,2013,Pearl Dark Gray,4 +Constraction,CHI Laval,55,2013,Pearl Gold,6 +Constraction,CHI Laval,55,2013,Trans-Dark Blue,3 +Constraction,CHI Laval,55,2013,White,1 +Constraction,CHI Worriz,55,2013,Black,6 +Constraction,CHI Worriz,55,2013,Dark Bluish Gray,7 +Constraction,CHI Worriz,55,2013,Dark Red,1 +Constraction,CHI Worriz,55,2013,Flat Silver,3 +Constraction,CHI Worriz,55,2013,Light Bluish Gray,2 +Constraction,CHI Worriz,55,2013,Pearl Dark Gray,4 +Constraction,CHI Worriz,55,2013,Red,1 +Constraction,CHI Worriz,55,2013,Trans-Red,1 +Constraction,CHI Worriz,55,2013,White,1 +Constraction,CHI Sir Fangar,97,2014,Pearl Dark Gray,6 +Constraction,CHI Sir Fangar,97,2014,Light Bluish Gray,5 +Constraction,CHI Sir Fangar,97,2014,Dark Tan,1 +Constraction,CHI Sir Fangar,97,2014,Dark Brown,1 +Constraction,CHI Sir Fangar,97,2014,Dark Bluish Gray,6 +Constraction,CHI Sir Fangar,97,2014,Blue,3 +Constraction,CHI Sir Fangar,97,2014,Black,12 +Constraction,CHI Sir Fangar,97,2014,White,8 +Constraction,CHI Sir Fangar,97,2014,Trans-Light Blue,6 +Constraction,CHI Sir Fangar,97,2014,Red,1 +Constraction,CHI Fluminox,91,2014,Yellow,3 +Constraction,CHI Fluminox,91,2014,Black,15 +Constraction,CHI Fluminox,91,2014,Blue,2 +Constraction,CHI Fluminox,91,2014,Dark Bluish Gray,5 +Constraction,CHI Fluminox,91,2014,Dark Red,1 +Constraction,CHI Fluminox,91,2014,Dark Tan,1 +Constraction,CHI Fluminox,91,2014,Flat Silver,1 +Constraction,CHI Fluminox,91,2014,Light Bluish Gray,2 +Constraction,CHI Fluminox,91,2014,Pearl Dark Gray,1 +Constraction,CHI Fluminox,91,2014,Pearl Gold,3 +Constraction,CHI Fluminox,91,2014,Red,2 +Constraction,CHI Fluminox,91,2014,Trans-Neon Orange,5 +Constraction,CHI Fluminox,91,2014,Trans-Red,1 +Constraction,CHI Fluminox,91,2014,Trans-Yellow,1 +Constraction,CHI Vardy,68,2014,Blue,2 +Constraction,CHI Vardy,68,2014,Dark Bluish Gray,4 +Constraction,CHI Vardy,68,2014,Light Bluish Gray,3 +Constraction,CHI Vardy,68,2014,Pearl Dark Gray,3 +Constraction,CHI Vardy,68,2014,Red,1 +Constraction,CHI Vardy,68,2014,Trans-Light Blue,6 +Constraction,CHI Vardy,68,2014,White,4 +Constraction,CHI Vardy,68,2014,Dark Tan,2 +Constraction,CHI Vardy,68,2014,Black,14 +Constraction,CHI Mungus,64,2014,Blue,1 +Constraction,CHI Mungus,64,2014,Black,8 +Constraction,CHI Mungus,64,2014,Tan,1 +Constraction,CHI Mungus,64,2014,Pearl Dark Gray,5 +Constraction,CHI Mungus,64,2014,Red,1 +Constraction,CHI Mungus,64,2014,Reddish Brown,5 +Constraction,CHI Mungus,64,2014,Dark Bluish Gray,6 +Constraction,CHI Mungus,64,2014,Trans-Light Blue,5 +Constraction,CHI Mungus,64,2014,White,3 +Constraction,CHI Panthar,59,2014,Pearl Dark Gray,1 +Constraction,CHI Panthar,59,2014,Pearl Gold,7 +Constraction,CHI Panthar,59,2014,Trans-Neon Orange,2 +Constraction,CHI Panthar,59,2014,Yellow,1 +Constraction,CHI Panthar,59,2014,Black,17 +Constraction,CHI Panthar,59,2014,Dark Bluish Gray,5 +Constraction,CHI Panthar,59,2014,Flat Silver,1 +Constraction,CHI Cragger,58,2014,Black,10 +Constraction,CHI Cragger,58,2014,Dark Bluish Gray,4 +Constraction,CHI Cragger,58,2014,Dark Green,3 +Constraction,CHI Cragger,58,2014,Dark Red,1 +Constraction,CHI Cragger,58,2014,Flat Silver,1 +Constraction,CHI Cragger,58,2014,Olive Green,1 +Constraction,CHI Cragger,58,2014,Pearl Dark Gray,1 +Constraction,CHI Cragger,58,2014,Red,1 +Constraction,CHI Cragger,58,2014,Yellow,1 +Constraction,CHI Cragger,58,2014,Trans-Neon Orange,4 +Constraction,CHI Cragger,58,2014,Pearl Gold,6 +Constraction,CHI Laval,49,2014,Black,6 +Constraction,CHI Laval,49,2014,Dark Red,2 +Constraction,CHI Laval,49,2014,Dark Bluish Gray,3 +Constraction,CHI Laval,49,2014,Reddish Brown,1 +Constraction,CHI Laval,49,2014,Trans-Neon Orange,3 +Constraction,CHI Laval,49,2014,Trans-Orange,1 +Constraction,CHI Laval,49,2014,Flat Silver,1 +Constraction,CHI Laval,49,2014,Trans-Red,1 +Constraction,CHI Laval,49,2014,Yellow,1 +Constraction,CHI Laval,49,2014,Light Bluish Gray,1 +Constraction,CHI Laval,49,2014,Pearl Gold,5 +Constraction,CHI Laval,49,2014,Red,1 +Construction,Dump Truck,45,1967,Black,1 +Construction,Dump Truck,45,1967,Blue,1 +Construction,Dump Truck,45,1967,Light Gray,3 +Construction,Dump Truck,45,1967,Red,13 +Construction,Dump Truck,45,1967,Trans-Clear,3 +Construction,Dump Truck,45,1967,White,3 +Construction,Dump Truck,45,1967,Yellow,2 +Construction,Truck with Crane and Caterpillar Track,92,1969,Black,4 +Construction,Truck with Crane and Caterpillar Track,92,1969,Light Gray,7 +Construction,Truck with Crane and Caterpillar Track,92,1969,Red,22 +Construction,Truck with Crane and Caterpillar Track,92,1969,Trans-Clear,5 +Construction,Truck with Crane and Caterpillar Track,92,1969,White,3 +Construction,Truck with Crane and Caterpillar Track,92,1969,Yellow,1 +Construction,Front-End Loader,64,1970,White,1 +Construction,Front-End Loader,64,1970,Red,7 +Construction,Front-End Loader,64,1970,Black,1 +Construction,Front-End Loader,64,1970,Blue,3 +Construction,Front-End Loader,64,1970,Light Gray,1 +Construction,Front-End Loader,64,1970,Trans-Clear,4 +Construction,Front-End Loader,64,1970,Yellow,7 +Construction,Front-End Loader,56,1970,Blue,3 +Construction,Front-End Loader,56,1970,Light Gray,1 +Construction,Front-End Loader,56,1970,Red,6 +Construction,Front-End Loader,56,1970,Trans-Clear,4 +Construction,Front-End Loader,56,1970,Yellow,9 +Construction,Front-End Loader,56,1970,White,1 +Construction,Front-End Loader,56,1970,Black,1 +Construction,Truck & Payloader,59,1977,Black,3 +Construction,Truck & Payloader,59,1977,Blue,10 +Construction,Truck & Payloader,59,1977,Light Gray,3 +Construction,Truck & Payloader,59,1977,Red,3 +Construction,Truck & Payloader,59,1977,Trans-Clear,1 +Construction,Truck & Payloader,59,1977,White,1 +Construction,Truck & Payloader,59,1977,Yellow,9 +Construction,Mobile Crane,55,1978,Trans-Clear,1 +Construction,Mobile Crane,55,1978,Trans-Yellow,1 +Construction,Mobile Crane,55,1978,Yellow,14 +Construction,Forklift & Truck,55,1978,Black,4 +Construction,Forklift & Truck,55,1978,Blue,7 +Construction,Forklift & Truck,55,1978,Light Gray,5 +Construction,Forklift & Truck,55,1978,Red,2 +Construction,Forklift & Truck,55,1978,Trans-Clear,2 +Construction,Forklift & Truck,55,1978,Yellow,9 +Construction,Mobile Crane,55,1978,Black,13 +Construction,Mobile Crane,55,1978,Blue,1 +Construction,Mobile Crane,55,1978,Light Gray,3 +Construction,Mobile Crane,55,1978,Red,3 +Construction,Excavator,38,1978,Black,6 +Construction,Excavator,38,1978,Blue,1 +Construction,Excavator,38,1978,Trans-Clear,2 +Construction,Excavator,38,1978,White,3 +Construction,Excavator,38,1978,Yellow,9 +Construction,Excavator,38,1978,Light Gray,1 +Construction,Excavator,38,1978,Red,3 +Construction,Excavator,38,1978,Dark Gray,2 +Construction,Tipper Truck,32,1978,Black,7 +Construction,Tipper Truck,32,1978,Light Gray,1 +Construction,Tipper Truck,32,1978,Trans-Clear,1 +Construction,Tipper Truck,32,1978,White,1 +Construction,Tipper Truck,32,1978,Yellow,9 +Construction,Tractor,31,1978,Black,7 +Construction,Tractor,31,1978,Blue,1 +Construction,Tractor,31,1978,Dark Gray,1 +Construction,Tractor,31,1978,Light Gray,1 +Construction,Tractor,31,1978,Red,3 +Construction,Tractor,31,1978,Trans-Clear,1 +Construction,Tractor,31,1978,Yellow,9 +Construction,Excavator,362,1984,Black,23 +Construction,Excavator,362,1984,Light Gray,21 +Construction,Excavator,362,1984,Red,22 +Construction,Excavator,362,1984,Yellow,2 +Construction,Fork Lift Truck,272,1984,Black,26 +Construction,Fork Lift Truck,272,1984,Light Gray,22 +Construction,Fork Lift Truck,272,1984,Red,17 +Construction,Fork Lift Truck,272,1984,Yellow,17 +Construction,Dig 'N' Dump,128,1996,Black,17 +Construction,Dig 'N' Dump,128,1996,Blue,3 +Construction,Dig 'N' Dump,128,1996,Light Gray,9 +Construction,Dig 'N' Dump,128,1996,Red,2 +Construction,Dig 'N' Dump,128,1996,Trans-Dark Blue,1 +Construction,Dig 'N' Dump,128,1996,Trans-Light Blue,1 +Construction,Dig 'N' Dump,128,1996,Trans-Red,2 +Construction,Dig 'N' Dump,128,1996,Trans-Yellow,1 +Construction,Dig 'N' Dump,128,1996,White,4 +Construction,Dig 'N' Dump,128,1996,Yellow,26 +Construction,Construction Crew,78,1997,Black,6 +Construction,Construction Crew,78,1997,Blue,2 +Construction,Construction Crew,78,1997,Brown,1 +Construction,Construction Crew,78,1997,Dark Gray,1 +Construction,Construction Crew,78,1997,Light Gray,3 +Construction,Construction Crew,78,1997,Red,1 +Construction,Construction Crew,78,1997,Trans-Light Blue,1 +Construction,Construction Crew,78,1997,Trans-Yellow,1 +Construction,Construction Crew,78,1997,White,2 +Construction,Construction Crew,78,1997,Yellow,13 +Construction,Highway Construction,316,2000,Black,27 +Construction,Highway Construction,316,2000,Blue,10 +Construction,Highway Construction,316,2000,Brown,1 +Construction,Highway Construction,316,2000,Dark Gray,13 +Construction,Highway Construction,316,2000,Light Gray,13 +Construction,Highway Construction,316,2000,Orange,3 +Construction,Highway Construction,316,2000,Red,3 +Construction,Highway Construction,316,2000,Trans-Dark Blue,1 +Construction,Highway Construction,316,2000,Trans-Green,1 +Construction,Highway Construction,316,2000,Trans-Light Blue,1 +Construction,Highway Construction,316,2000,Trans-Neon Green,4 +Construction,Highway Construction,316,2000,Trans-Red,1 +Construction,Highway Construction,316,2000,White,15 +Construction,Highway Construction,316,2000,Yellow,31 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,Green,2 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,Light Gray,12 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,Red,1 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,Trans-Dark Blue,2 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,Trans-Green,1 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,Trans-Light Blue,1 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,Trans-Red,1 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,Yellow,16 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,[No Color],1 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,Black,12 +Construction,Busy City - Master Builders (Masterbuilders),73,2000,Dark Gray,2 +Construction,Wheeled Front Shovel,49,2000,Dark Gray,3 +Construction,Wheeled Front Shovel,49,2000,Black,8 +Construction,Wheeled Front Shovel,49,2000,Blue,1 +Construction,Wheeled Front Shovel,49,2000,Light Gray,2 +Construction,Wheeled Front Shovel,49,2000,Orange,1 +Construction,Wheeled Front Shovel,49,2000,Red,3 +Construction,Wheeled Front Shovel,49,2000,Trans-Light Blue,1 +Construction,Wheeled Front Shovel,49,2000,Trans-Neon Green,1 +Construction,Wheeled Front Shovel,49,2000,White,1 +Construction,Wheeled Front Shovel,49,2000,Yellow,12 +Construction,Mini Dump Truck,25,2000,Blue,2 +Construction,Mini Dump Truck,25,2000,Dark Gray,1 +Construction,Mini Dump Truck,25,2000,Orange,2 +Construction,Mini Dump Truck,25,2000,White,1 +Construction,Mini Dump Truck,25,2000,Yellow,6 +Construction,Mini Dump Truck,25,2000,Black,5 +Construction,Outrigger Construction Crane,67,2003,[No Color],1 +Construction,Outrigger Construction Crane,67,2003,Dark Bluish Gray,7 +Construction,Outrigger Construction Crane,67,2003,Yellow,14 +Construction,Outrigger Construction Crane,67,2003,Unknown,1 +Construction,Outrigger Construction Crane,67,2003,Trans-Neon Green,1 +Construction,Outrigger Construction Crane,67,2003,Trans-Black,2 +Construction,Outrigger Construction Crane,67,2003,Light Bluish Gray,2 +Construction,Outrigger Construction Crane,67,2003,Black,11 +Construction,Loadin' Digger,30,2003,Yellow,12 +Construction,Loadin' Digger,30,2003,Chrome Silver,1 +Construction,Loadin' Digger,30,2003,[No Color],1 +Construction,Loadin' Digger,30,2003,Black,5 +Construction,Loadin' Digger,30,2003,Dark Gray,1 +Construction,Loadin' Digger,30,2003,Light Bluish Gray,1 +Construction,Loadin' Digger,30,2003,Trans-Black,1 +Construction,Loadin' Digger,30,2003,Trans-Neon Green,1 +Construction,Dump Truck,28,2003,[No Color],1 +Construction,Dump Truck,28,2003,Black,3 +Construction,Dump Truck,28,2003,Trans-Black,1 +Construction,Dump Truck,28,2003,Light Gray,3 +Construction,Dump Truck,28,2003,Green,2 +Construction,Dump Truck,28,2003,Dark Gray,1 +Construction,Dump Truck,28,2003,Chrome Silver,1 +Construction,XXL Mobile Crane,525,2005,Red,6 +Construction,XXL Mobile Crane,525,2005,Trans-Black,2 +Construction,XXL Mobile Crane,525,2005,White,2 +Construction,XXL Mobile Crane,525,2005,[No Color],1 +Construction,XXL Mobile Crane,525,2005,Black,26 +Construction,XXL Mobile Crane,525,2005,Blue,1 +Construction,XXL Mobile Crane,525,2005,Dark Bluish Gray,42 +Construction,XXL Mobile Crane,525,2005,Light Bluish Gray,20 +Construction,XXL Mobile Crane,525,2005,Orange,2 +Construction,XXL Mobile Crane,525,2005,Yellow,50 +Construction,XXL Mobile Crane,525,2005,Tan,2 +Construction,XXL Mobile Crane,525,2005,Trans-Yellow,1 +Construction,XXL Mobile Crane,525,2005,Trans-Red,1 +Construction,XXL Mobile Crane,525,2005,Trans-Orange,3 +Construction,Construction Site,301,2005,Black,26 +Construction,Construction Site,301,2005,Blue,1 +Construction,Construction Site,301,2005,Dark Bluish Gray,20 +Construction,Construction Site,301,2005,Dark Gray,1 +Construction,Construction Site,301,2005,Light Bluish Gray,24 +Construction,Construction Site,301,2005,Orange,4 +Construction,Construction Site,301,2005,Red,2 +Construction,Construction Site,301,2005,Reddish Brown,1 +Construction,Construction Site,301,2005,Trans-Black,2 +Construction,Construction Site,301,2005,Trans-Orange,2 +Construction,Construction Site,301,2005,Yellow,38 +Construction,Construction Site,301,2005,Trans-Yellow,2 +Construction,Construction Site,301,2005,Trans-Red,1 +Construction,Dump Truck,187,2005,Orange,2 +Construction,Dump Truck,187,2005,Black,16 +Construction,Dump Truck,187,2005,Blue,3 +Construction,Dump Truck,187,2005,Dark Bluish Gray,11 +Construction,Dump Truck,187,2005,Light Bluish Gray,9 +Construction,Dump Truck,187,2005,Red,3 +Construction,Dump Truck,187,2005,Trans-Black,1 +Construction,Dump Truck,187,2005,Trans-Orange,2 +Construction,Dump Truck,187,2005,Trans-Red,1 +Construction,Dump Truck,187,2005,Trans-Yellow,1 +Construction,Dump Truck,187,2005,White,1 +Construction,Dump Truck,187,2005,Yellow,19 +Construction,Digger,128,2005,[No Color],1 +Construction,Digger,128,2005,Black,12 +Construction,Digger,128,2005,Blue,1 +Construction,Digger,128,2005,Dark Bluish Gray,15 +Construction,Digger,128,2005,Light Bluish Gray,10 +Construction,Digger,128,2005,Orange,1 +Construction,Digger,128,2005,Red,1 +Construction,Digger,128,2005,Trans-Black,1 +Construction,Digger,128,2005,Trans-Orange,1 +Construction,Digger,128,2005,Trans-Red,1 +Construction,Digger,128,2005,Trans-Yellow,1 +Construction,Digger,128,2005,White,2 +Construction,Digger,128,2005,Yellow,22 +Construction,Mini Digger,37,2005,Black,8 +Construction,Mini Digger,37,2005,Yellow,7 +Construction,Mini Digger,37,2005,Trans-Red,1 +Construction,Mini Digger,37,2005,Trans-Orange,1 +Construction,Mini Digger,37,2005,Red,1 +Construction,Mini Digger,37,2005,Orange,1 +Construction,Mini Digger,37,2005,Dark Bluish Gray,5 +Construction,Mini Digger,37,2005,Blue,1 +Construction,Mini Construction,68,2007,Black,6 +Construction,Mini Construction,68,2007,Dark Bluish Gray,5 +Construction,Mini Construction,68,2007,Light Bluish Gray,3 +Construction,Mini Construction,68,2007,Trans-Black,1 +Construction,Mini Construction,68,2007,Trans-Red,1 +Construction,Mini Construction,68,2007,Yellow,16 +Construction,Cement Mixer,44,2007,Black,5 +Construction,Cement Mixer,44,2007,Dark Bluish Gray,2 +Construction,Cement Mixer,44,2007,Light Bluish Gray,3 +Construction,Cement Mixer,44,2007,Trans-Black,1 +Construction,Cement Mixer,44,2007,Trans-Clear,1 +Construction,Cement Mixer,44,2007,Yellow,4 +Construction,Backhoe,39,2007,Black,5 +Construction,Backhoe,39,2007,Light Bluish Gray,4 +Construction,Backhoe,39,2007,Trans-Black,1 +Construction,Backhoe,39,2007,Yellow,8 +Construction,Gingerbread House,277,2015,Black,5 +Construction,Gingerbread House,277,2015,Bright Green,1 +Construction,Gingerbread House,277,2015,Bright Light Orange,2 +Construction,Gingerbread House,277,2015,Bright Pink,5 +Construction,Gingerbread House,277,2015,Dark Orange,1 +Construction,Gingerbread House,277,2015,Dark Purple,1 +Construction,Gingerbread House,277,2015,Green,2 +Construction,Gingerbread House,277,2015,Lavender,1 +Construction,Gingerbread House,277,2015,Light Aqua,1 +Construction,Gingerbread House,277,2015,Light Bluish Gray,2 +Construction,Gingerbread House,277,2015,Lime,5 +Construction,Gingerbread House,277,2015,Magenta,1 +Construction,Gingerbread House,277,2015,Medium Azure,1 +Construction,Gingerbread House,277,2015,Medium Dark Flesh,5 +Construction,Gingerbread House,277,2015,Medium Lavender,1 +Construction,Gingerbread House,277,2015,Orange,1 +Construction,Gingerbread House,277,2015,Red,4 +Construction,Gingerbread House,277,2015,Reddish Brown,6 +Construction,Gingerbread House,277,2015,Tan,3 +Construction,Gingerbread House,277,2015,Trans-Dark Blue,1 +Construction,Gingerbread House,277,2015,Trans-Dark Pink,1 +Construction,Gingerbread House,277,2015,Trans-Green,2 +Construction,Gingerbread House,277,2015,Trans-Orange,1 +Construction,Gingerbread House,277,2015,Trans-Red,1 +Construction,Gingerbread House,277,2015,Trans-Yellow,1 +Construction,Gingerbread House,277,2015,White,17 +Construction,Gingerbread House,277,2015,Yellow,1 +Construction,Bucket Wheel Excavator,3928,2016,[No Color],1 +Construction,Bucket Wheel Excavator,3928,2016,Black,23 +Construction,Bucket Wheel Excavator,3928,2016,Blue,3 +Construction,Bucket Wheel Excavator,3928,2016,Dark Blue,2 +Construction,Bucket Wheel Excavator,3928,2016,Dark Bluish Gray,26 +Construction,Bucket Wheel Excavator,3928,2016,Dark Tan,2 +Construction,Bucket Wheel Excavator,3928,2016,Light Bluish Gray,51 +Construction,Bucket Wheel Excavator,3928,2016,Orange,1 +Construction,Bucket Wheel Excavator,3928,2016,Red,9 +Construction,Bucket Wheel Excavator,3928,2016,Reddish Brown,1 +Construction,Bucket Wheel Excavator,3928,2016,Tan,7 +Construction,Bucket Wheel Excavator,3928,2016,Trans-Black,1 +Construction,Bucket Wheel Excavator,3928,2016,Trans-Clear,2 +Construction,Bucket Wheel Excavator,3928,2016,White,17 +Construction,Bucket Wheel Excavator,3928,2016,Yellow,22 +Construction,Mini Dumper,45,2016,Black,6 +Construction,Mini Dumper,45,2016,Blue,1 +Construction,Mini Dumper,45,2016,Dark Bluish Gray,3 +Construction,Mini Dumper,45,2016,Flat Silver,1 +Construction,Mini Dumper,45,2016,Light Bluish Gray,2 +Construction,Mini Dumper,45,2016,Red,1 +Construction,Mini Dumper,45,2016,Reddish Brown,2 +Construction,Mini Dumper,45,2016,Trans-Orange,1 +Construction,Mini Dumper,45,2016,White,2 +Construction,Mini Dumper,45,2016,Yellow,7 +Control Lab,Control Lab Serial Interface & Adapter,2,1995,Black,1 +Control Lab,Control Lab Serial Interface & Adapter,2,1995,Dark Gray,1 +Cowboys,Fort Legoredo,687,1996,Red,17 +Cowboys,Fort Legoredo,687,1996,Tan,1 +Cowboys,Fort Legoredo,687,1996,Trans-Clear,1 +Cowboys,Fort Legoredo,687,1996,Trans-Neon Orange,1 +Cowboys,Fort Legoredo,687,1996,White,11 +Cowboys,Fort Legoredo,687,1996,Yellow,7 +Cowboys,Fort Legoredo,687,1996,[No Color],1 +Cowboys,Fort Legoredo,687,1996,Black,64 +Cowboys,Fort Legoredo,687,1996,Blue,11 +Cowboys,Fort Legoredo,687,1996,Brown,15 +Cowboys,Fort Legoredo,687,1996,Chrome Gold,5 +Cowboys,Fort Legoredo,687,1996,Dark Gray,5 +Cowboys,Fort Legoredo,687,1996,Green,2 +Cowboys,Fort Legoredo,687,1996,Light Gray,27 +Cowboys,Gold City Junction,351,1996,Dark Gray,8 +Cowboys,Gold City Junction,351,1996,Green,5 +Cowboys,Gold City Junction,351,1996,Light Gray,20 +Cowboys,Gold City Junction,351,1996,Red,19 +Cowboys,Gold City Junction,351,1996,Tan,1 +Cowboys,Gold City Junction,351,1996,Trans-Clear,1 +Cowboys,Gold City Junction,351,1996,White,25 +Cowboys,Gold City Junction,351,1996,Yellow,6 +Cowboys,Gold City Junction,351,1996,Black,55 +Cowboys,Gold City Junction,351,1996,Blue,9 +Cowboys,Gold City Junction,351,1996,Brown,15 +Cowboys,Gold City Junction,351,1996,Chrome Gold,4 +Cowboys,Bandit's Secret Hide-Out,249,1996,[No Color],1 +Cowboys,Bandit's Secret Hide-Out,249,1996,Black,50 +Cowboys,Bandit's Secret Hide-Out,249,1996,Blue,8 +Cowboys,Bandit's Secret Hide-Out,249,1996,Brown,13 +Cowboys,Bandit's Secret Hide-Out,249,1996,Chrome Gold,5 +Cowboys,Bandit's Secret Hide-Out,249,1996,Dark Gray,8 +Cowboys,Bandit's Secret Hide-Out,249,1996,Green,4 +Cowboys,Bandit's Secret Hide-Out,249,1996,Light Gray,26 +Cowboys,Bandit's Secret Hide-Out,249,1996,Red,1 +Cowboys,Bandit's Secret Hide-Out,249,1996,Tan,1 +Cowboys,Bandit's Secret Hide-Out,249,1996,Trans-Neon Orange,1 +Cowboys,Bandit's Secret Hide-Out,249,1996,White,8 +Cowboys,Bandit's Secret Hide-Out,249,1996,Yellow,6 +Cowboys,Sheriff's Lock-Up,177,1996,Light Gray,28 +Cowboys,Sheriff's Lock-Up,177,1996,Red,2 +Cowboys,Sheriff's Lock-Up,177,1996,Tan,1 +Cowboys,Sheriff's Lock-Up,177,1996,Trans-Clear,1 +Cowboys,Sheriff's Lock-Up,177,1996,Trans-Neon Orange,1 +Cowboys,Sheriff's Lock-Up,177,1996,White,9 +Cowboys,Sheriff's Lock-Up,177,1996,Yellow,7 +Cowboys,Sheriff's Lock-Up,177,1996,Black,26 +Cowboys,Sheriff's Lock-Up,177,1996,Blue,1 +Cowboys,Sheriff's Lock-Up,177,1996,Brown,12 +Cowboys,Sheriff's Lock-Up,177,1996,Chrome Gold,4 +Cowboys,Sheriff's Lock-Up,177,1996,Dark Gray,4 +Cowboys,Sheriff's Lock-Up,177,1996,Green,3 +Cowboys,Covered Wagon,65,1996,Black,17 +Cowboys,Covered Wagon,65,1996,Blue,3 +Cowboys,Covered Wagon,65,1996,Brown,5 +Cowboys,Covered Wagon,65,1996,Dark Gray,4 +Cowboys,Covered Wagon,65,1996,Light Gray,6 +Cowboys,Covered Wagon,65,1996,White,2 +Cowboys,Covered Wagon,65,1996,Yellow,1 +Cowboys,Sheriff's Showdown,28,1996,Black,9 +Cowboys,Sheriff's Showdown,28,1996,Brown,3 +Cowboys,Sheriff's Showdown,28,1996,Dark Gray,3 +Cowboys,Sheriff's Showdown,28,1996,Green,2 +Cowboys,Sheriff's Showdown,28,1996,Light Gray,3 +Cowboys,Sheriff's Showdown,28,1996,Trans-Neon Orange,1 +Cowboys,Sheriff's Showdown,28,1996,Yellow,2 +Cowboys,Fort Legoredo,687,2002,[No Color],1 +Cowboys,Fort Legoredo,687,2002,Black,64 +Cowboys,Fort Legoredo,687,2002,Blue,11 +Cowboys,Fort Legoredo,687,2002,Brown,15 +Cowboys,Fort Legoredo,687,2002,Chrome Gold,5 +Cowboys,Fort Legoredo,687,2002,Dark Gray,5 +Cowboys,Fort Legoredo,687,2002,Green,2 +Cowboys,Fort Legoredo,687,2002,Light Gray,27 +Cowboys,Fort Legoredo,687,2002,Red,17 +Cowboys,Fort Legoredo,687,2002,Tan,1 +Cowboys,Fort Legoredo,687,2002,Trans-Clear,1 +Cowboys,Fort Legoredo,687,2002,Trans-Neon Orange,1 +Cowboys,Fort Legoredo,687,2002,White,11 +Cowboys,Fort Legoredo,687,2002,Yellow,7 +Cowboys,Sheriff's Lock-Up,176,2002,[No Color],1 +Cowboys,Sheriff's Lock-Up,176,2002,Black,26 +Cowboys,Sheriff's Lock-Up,176,2002,Blue,1 +Cowboys,Sheriff's Lock-Up,176,2002,Brown,12 +Cowboys,Sheriff's Lock-Up,176,2002,Chrome Gold,4 +Cowboys,Sheriff's Lock-Up,176,2002,Dark Gray,4 +Cowboys,Sheriff's Lock-Up,176,2002,Green,3 +Cowboys,Sheriff's Lock-Up,176,2002,Light Gray,28 +Cowboys,Sheriff's Lock-Up,176,2002,Red,2 +Cowboys,Sheriff's Lock-Up,176,2002,Tan,1 +Cowboys,Sheriff's Lock-Up,176,2002,Trans-Clear,1 +Cowboys,Sheriff's Lock-Up,176,2002,Trans-Neon Orange,1 +Cowboys,Sheriff's Lock-Up,176,2002,White,9 +Cowboys,Sheriff's Lock-Up,176,2002,Yellow,6 +Creator,Racer,21,2001,Black,3 +Creator,Racer,21,2001,Green,4 +Creator,Racer,21,2001,Light Gray,1 +Creator,Racer,21,2001,Red,1 +Creator,Racer,21,2001,Trans-Neon Green,1 +Creator,Racer,21,2001,Yellow,1 +Creator,Sea Helicopter,13,2001,Black,3 +Creator,Sea Helicopter,13,2001,Green,2 +Creator,Sea Helicopter,13,2001,Red,3 +Creator,Sea Helicopter,13,2001,Trans-Neon Green,1 +Creator,Sea Helicopter,13,2001,Yellow,1 +Creator,Ship,12,2001,Black,3 +Creator,Ship,12,2001,Green,3 +Creator,Ship,12,2001,Red,2 +Creator,Ship,12,2001,Trans-Neon Green,1 +Creator,Ship,12,2001,Yellow,1 +Creator,Advent Calendar 2002 Creator (Day 9) Space Buggy,18,2002,White,3 +Creator,Advent Calendar 2002 Creator (Day 9) Space Buggy,18,2002,Yellow,1 +Creator,Advent Calendar 2002 Creator (Day 9) Space Buggy,18,2002,Light Gray,1 +Creator,Advent Calendar 2002 Creator (Day 9) Space Buggy,18,2002,Trans-Dark Blue,1 +Creator,Advent Calendar 2002 Creator (Day 9) Space Buggy,18,2002,Trans-Neon Green,1 +Creator,Advent Calendar 2002 Creator (Day 9) Space Buggy,18,2002,Black,3 +Creator,Advent Calendar 2002 Creator (Day 9) Space Buggy,18,2002,Dark Gray,1 +Creator,Advent Calendar 2002 Creator (Day 5) Car,15,2002,Yellow,1 +Creator,Advent Calendar 2002 Creator (Day 13) Snowman,15,2002,White,4 +Creator,Advent Calendar 2002 Creator (Day 13) Snowman,15,2002,Red,2 +Creator,Advent Calendar 2002 Creator (Day 13) Snowman,15,2002,Black,3 +Creator,Advent Calendar 2002 Creator (Day 5) Car,15,2002,Black,2 +Creator,Advent Calendar 2002 Creator (Day 5) Car,15,2002,Red,2 +Creator,Advent Calendar 2002 Creator (Day 5) Car,15,2002,Trans-Clear,1 +Creator,Advent Calendar 2002 Creator (Day 5) Car,15,2002,Trans-Dark Blue,1 +Creator,Advent Calendar 2002 Creator (Day 5) Car,15,2002,White,1 +Creator,Advent Calendar 2002 Creator (Day 22) Helicopter,11,2002,Trans-Neon Green,1 +Creator,Advent Calendar 2002 Creator (Day 23) Tree,11,2002,Black,1 +Creator,Advent Calendar 2002 Creator (Day 3) Fireplace,11,2002,Black,1 +Creator,Advent Calendar 2002 Creator (Day 3) Fireplace,11,2002,Dark Gray,1 +Creator,Advent Calendar 2002 Creator (Day 3) Fireplace,11,2002,Light Gray,2 +Creator,Advent Calendar 2002 Creator (Day 3) Fireplace,11,2002,Trans-Red,1 +Creator,Advent Calendar 2002 Creator (Day 23) Tree,11,2002,Brown,1 +Creator,Advent Calendar 2002 Creator (Day 23) Tree,11,2002,Green,2 +Creator,Advent Calendar 2002 Creator (Day 23) Tree,11,2002,Trans-Red,1 +Creator,Advent Calendar 2002 Creator (Day 23) Tree,11,2002,Yellow,1 +Creator,Advent Calendar 2002 Creator (Day 8) Dog with hat,11,2002,Red,2 +Creator,Advent Calendar 2002 Creator (Day 8) Dog with hat,11,2002,White,1 +Creator,Advent Calendar 2002 Creator (Day 8) Dog with hat,11,2002,Yellow,6 +Creator,Advent Calendar 2002 Creator (Day 18) Space Shuttle,11,2002,Trans-Dark Blue,1 +Creator,Advent Calendar 2002 Creator (Day 14) Jet Ski,11,2002,Black,2 +Creator,Advent Calendar 2002 Creator (Day 14) Jet Ski,11,2002,Red,2 +Creator,Advent Calendar 2002 Creator (Day 14) Jet Ski,11,2002,Trans-Green,1 +Creator,Advent Calendar 2002 Creator (Day 14) Jet Ski,11,2002,White,2 +Creator,Advent Calendar 2002 Creator (Day 18) Space Shuttle,11,2002,Black,4 +Creator,Advent Calendar 2002 Creator (Day 18) Space Shuttle,11,2002,Light Gray,1 +Creator,Advent Calendar 2002 Creator (Day 18) Space Shuttle,11,2002,White,3 +Creator,Advent Calendar 2002 Creator (Day 22) Helicopter,11,2002,Black,2 +Creator,Advent Calendar 2002 Creator (Day 22) Helicopter,11,2002,Dark Gray,3 +Creator,Advent Calendar 2002 Creator (Day 22) Helicopter,11,2002,Dark Turquoise,3 +Creator,Advent Calendar 2002 Creator (Day 1) Squirrel,10,2002,Black,4 +Creator,Advent Calendar 2002 Creator (Day 11) Speedboat,10,2002,Red,2 +Creator,Advent Calendar 2002 Creator (Day 4) Santa,10,2002,Black,1 +Creator,Advent Calendar 2002 Creator (Day 4) Santa,10,2002,Dark Gray,2 +Creator,Advent Calendar 2002 Creator (Day 4) Santa,10,2002,Red,4 +Creator,Advent Calendar 2002 Creator (Day 4) Santa,10,2002,White,3 +Creator,Advent Calendar 2002 Creator (Day 15) Duck,10,2002,Black,1 +Creator,Advent Calendar 2002 Creator (Day 15) Duck,10,2002,Red,1 +Creator,Advent Calendar 2002 Creator (Day 15) Duck,10,2002,Yellow,5 +Creator,Advent Calendar 2002 Creator (Day 12) Reindeer,10,2002,White,6 +Creator,Advent Calendar 2002 Creator (Day 6) Penguin,10,2002,White,3 +Creator,Advent Calendar 2002 Creator (Day 6) Penguin,10,2002,Red,3 +Creator,Advent Calendar 2002 Creator (Day 20) Steamship,10,2002,Trans-Green,1 +Creator,Advent Calendar 2002 Creator (Day 6) Penguin,10,2002,Black,1 +Creator,Advent Calendar 2002 Creator (Day 11) Speedboat,10,2002,Blue,2 +Creator,Advent Calendar 2002 Creator (Day 11) Speedboat,10,2002,Trans-Clear,1 +Creator,Advent Calendar 2002 Creator (Day 11) Speedboat,10,2002,Trans-Green,1 +Creator,Advent Calendar 2002 Creator (Day 1) Squirrel,10,2002,Dark Gray,2 +Creator,Advent Calendar 2002 Creator (Day 11) Speedboat,10,2002,Yellow,2 +Creator,Advent Calendar 2002 Creator (Day 20) Steamship,10,2002,Black,2 +Creator,Advent Calendar 2002 Creator (Day 20) Steamship,10,2002,Red,1 +Creator,Advent Calendar 2002 Creator (Day 20) Steamship,10,2002,White,2 +Creator,Advent Calendar 2002 Creator (Day 21) Building,10,2002,Black,1 +Creator,Advent Calendar 2002 Creator (Day 21) Building,10,2002,Red,3 +Creator,Advent Calendar 2002 Creator (Day 21) Building,10,2002,Trans-Green,1 +Creator,Advent Calendar 2002 Creator (Day 21) Building,10,2002,Trans-Red,1 +Creator,Advent Calendar 2002 Creator (Day 21) Building,10,2002,White,3 +Creator,Advent Calendar 2002 Creator (Day 12) Reindeer,10,2002,Black,2 +Creator,Advent Calendar 2002 Creator (Day 16) Police Boat,9,2002,Black,4 +Creator,Advent Calendar 2002 Creator (Day 16) Police Boat,9,2002,Trans-Clear,1 +Creator,Advent Calendar 2002 Creator (Day 16) Police Boat,9,2002,Trans-Dark Blue,1 +Creator,Advent Calendar 2002 Creator (Day 17) Whale,9,2002,Dark Gray,3 +Creator,Advent Calendar 2002 Creator (Day 17) Whale,9,2002,Yellow,5 +Creator,Advent Calendar 2002 Creator (Day 19) Parrot,9,2002,Yellow,1 +Creator,Advent Calendar 2002 Creator (Day 19) Parrot,9,2002,Green,3 +Creator,Advent Calendar 2002 Creator (Day 19) Parrot,9,2002,Red,2 +Creator,Advent Calendar 2002 Creator (Day 16) Police Boat,9,2002,White,3 +Creator,Advent Calendar 2002 Creator (Day 24) Present,8,2002,Green,3 +Creator,Advent Calendar 2002 Creator (Day 24) Present,8,2002,Red,1 +Creator,Advent Calendar 2002 Creator (Day 10) Dinosaur,8,2002,Green,5 +Creator,Advent Calendar 2002 Creator (Day 2) Boy,1,2002,[No Color],1 +Creator,Advent Calendar 2002 Creator (Day 7) Girl,1,2002,[No Color],1 +Creator,Creator Community Builders,1690,2004,Metallic Silver,1 +Creator,Creator Community Builders,1690,2004,Black,19 +Creator,Creator Community Builders,1690,2004,White,23 +Creator,Creator Community Builders,1690,2004,Trans-Neon Green,2 +Creator,Creator Community Builders,1690,2004,Trans-Yellow,1 +Creator,Creator Community Builders,1690,2004,Trans-Red,3 +Creator,Creator Community Builders,1690,2004,Trans-Neon Orange,1 +Creator,Creator Community Builders,1690,2004,Trans-Light Blue,1 +Creator,Creator Community Builders,1690,2004,Trans-Green,3 +Creator,Creator Community Builders,1690,2004,Trans-Dark Blue,2 +Creator,Creator Community Builders,1690,2004,Reddish Brown,4 +Creator,Creator Community Builders,1690,2004,Red,38 +Creator,Creator Community Builders,1690,2004,Light Bluish Gray,15 +Creator,Creator Community Builders,1690,2004,Green,13 +Creator,Creator Community Builders,1690,2004,Yellow,28 +Creator,Creator Community Builders,1690,2004,Dark Bluish Gray,6 +Creator,Creator Community Builders,1690,2004,Bright Green,4 +Creator,Creator Community Builders,1690,2004,Blue,33 +Creator,Creator Community Builders,1184,2004,Trans-Green,2 +Creator,Creator Community Builders,1184,2004,Trans-Dark Blue,3 +Creator,Creator Community Builders,1184,2004,Trans-Clear,1 +Creator,Creator Community Builders,1184,2004,Light Bluish Gray,21 +Creator,Creator Community Builders,1184,2004,Green,11 +Creator,Creator Community Builders,1184,2004,Dark Turquoise,6 +Creator,Creator Community Builders,1184,2004,Dark Bluish Gray,12 +Creator,Creator Community Builders,1184,2004,Chrome Silver,3 +Creator,Creator Community Builders,1184,2004,Brown,2 +Creator,Creator Community Builders,1184,2004,Black,24 +Creator,Creator Community Builders,1184,2004,Trans-Light Blue,2 +Creator,Creator Community Builders,1184,2004,[No Color],3 +Creator,Creator Community Builders,1184,2004,Blue,12 +Creator,Creator Community Builders,1184,2004,Red,25 +Creator,Creator Community Builders,1184,2004,Yellow,15 +Creator,Creator Community Builders,1184,2004,White,25 +Creator,Creator Community Builders,1184,2004,Trans-Red,2 +Creator,Creator Community Builders,1184,2004,Trans-Neon Orange,1 +Creator,Creator Community Builders,1184,2004,Trans-Neon Green,2 +Creator,Advent Calendar 2004 Creator (Day 18) Racing Car,23,2004,Black,4 +Creator,Advent Calendar 2004 Creator (Day 18) Racing Car,23,2004,Light Bluish Gray,3 +Creator,Advent Calendar 2004 Creator (Day 18) Racing Car,23,2004,Trans-Black,1 +Creator,Advent Calendar 2004 Creator (Day 18) Racing Car,23,2004,Yellow,1 +Creator,Advent Calendar 2004 Creator (Day 4) Robot,19,2004,Black,2 +Creator,Advent Calendar 2004 Creator (Day 4) Robot,19,2004,Blue,3 +Creator,Advent Calendar 2004 Creator (Day 6) Ship,19,2004,Black,2 +Creator,Advent Calendar 2004 Creator (Day 6) Ship,19,2004,Blue,3 +Creator,Advent Calendar 2004 Creator (Day 6) Ship,19,2004,Medium Blue,3 +Creator,Advent Calendar 2004 Creator (Day 6) Ship,19,2004,Trans-Clear,2 +Creator,Advent Calendar 2004 Creator (Day 6) Ship,19,2004,Trans-Green,1 +Creator,Advent Calendar 2004 Creator (Day 6) Ship,19,2004,Trans-Red,1 +Creator,Advent Calendar 2004 Creator (Day 6) Ship,19,2004,White,1 +Creator,Advent Calendar 2004 Creator (Day 4) Robot,19,2004,Dark Bluish Gray,2 +Creator,Advent Calendar 2004 Creator (Day 4) Robot,19,2004,Light Bluish Gray,2 +Creator,Advent Calendar 2004 Creator (Day 4) Robot,19,2004,Medium Blue,3 +Creator,Advent Calendar 2004 Creator (Day 4) Robot,19,2004,Trans-Neon Orange,1 +Creator,Advent Calendar 2004 Creator (Day 20) Leaf Ornament,18,2004,White,2 +Creator,Advent Calendar 2004 Creator (Day 20) Leaf Ornament,18,2004,Green,1 +Creator,Advent Calendar 2004 Creator (Day 20) Leaf Ornament,18,2004,Trans-Neon Green,1 +Creator,Advent Calendar 2004 Creator (Day 20) Leaf Ornament,18,2004,Black,1 +Creator,Advent Calendar 2004 Creator (Day 7) Angel Ornament,17,2004,Yellow,2 +Creator,Advent Calendar 2004 Creator (Day 7) Angel Ornament,17,2004,White,9 +Creator,Advent Calendar 2004 Creator (Day 7) Angel Ornament,17,2004,Black,1 +Creator,Advent Calendar 2004 Creator (Day 9) Skiing Elf,16,2004,Dark Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 9) Skiing Elf,16,2004,Light Bluish Gray,2 +Creator,Advent Calendar 2004 Creator (Day 9) Skiing Elf,16,2004,Red,2 +Creator,Advent Calendar 2004 Creator (Day 9) Skiing Elf,16,2004,Trans-Neon Orange,1 +Creator,Advent Calendar 2004 Creator (Day 9) Skiing Elf,16,2004,White,1 +Creator,Advent Calendar 2004 Creator (Day 9) Skiing Elf,16,2004,Yellow,2 +Creator,Advent Calendar 2004 Creator (Day 22) Sailing Ship,16,2004,Trans-Red,1 +Creator,Advent Calendar 2004 Creator (Day 22) Sailing Ship,16,2004,White,1 +Creator,Advent Calendar 2004 Creator (Day 22) Sailing Ship,16,2004,Green,7 +Creator,Advent Calendar 2004 Creator (Day 22) Sailing Ship,16,2004,Lime,2 +Creator,Advent Calendar 2004 Creator (Day 22) Sailing Ship,16,2004,Trans-Black,1 +Creator,Advent Calendar 2004 Creator (Day 8) Van,16,2004,Black,2 +Creator,Advent Calendar 2004 Creator (Day 8) Van,16,2004,Dark Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 8) Van,16,2004,Light Bluish Gray,2 +Creator,Advent Calendar 2004 Creator (Day 8) Van,16,2004,Red,2 +Creator,Advent Calendar 2004 Creator (Day 8) Van,16,2004,Trans-Clear,1 +Creator,Advent Calendar 2004 Creator (Day 1) Elf Ornament,15,2004,Light Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 1) Elf Ornament,15,2004,White,1 +Creator,Advent Calendar 2004 Creator (Day 1) Elf Ornament,15,2004,Yellow,2 +Creator,Advent Calendar 2004 Creator (Day 1) Elf Ornament,15,2004,Black,2 +Creator,Advent Calendar 2004 Creator (Day 1) Elf Ornament,15,2004,Red,5 +Creator,Advent Calendar 2004 Creator (Day 10) Sledding Santa,14,2004,White,1 +Creator,Advent Calendar 2004 Creator (Day 16) Elf Girl,14,2004,Light Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 16) Elf Girl,14,2004,Dark Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 16) Elf Girl,14,2004,Black,1 +Creator,Advent Calendar 2004 Creator (Day 11) Goose,14,2004,White,7 +Creator,Advent Calendar 2004 Creator (Day 10) Sledding Santa,14,2004,Black,1 +Creator,Advent Calendar 2004 Creator (Day 10) Sledding Santa,14,2004,Light Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 10) Sledding Santa,14,2004,Green,2 +Creator,Advent Calendar 2004 Creator (Day 10) Sledding Santa,14,2004,Red,4 +Creator,Advent Calendar 2004 Creator (Day 16) Elf Girl,14,2004,Yellow,2 +Creator,Advent Calendar 2004 Creator (Day 16) Elf Girl,14,2004,White,1 +Creator,Advent Calendar 2004 Creator (Day 16) Elf Girl,14,2004,Red,5 +Creator,Advent Calendar 2004 Creator (Day 11) Goose,14,2004,Red,2 +Creator,Advent Calendar 2004 Creator (Day 2) Plane,13,2004,Dark Bluish Gray,2 +Creator,Advent Calendar 2004 Creator (Day 2) Plane,13,2004,Trans-Clear,1 +Creator,Advent Calendar 2004 Creator (Day 2) Plane,13,2004,White,4 +Creator,Advent Calendar 2004 Creator (Day 3) Parrot,13,2004,Black,1 +Creator,Advent Calendar 2004 Creator (Day 3) Parrot,13,2004,Blue,5 +Creator,Advent Calendar 2004 Creator (Day 3) Parrot,13,2004,White,1 +Creator,Advent Calendar 2004 Creator (Day 3) Parrot,13,2004,Yellow,2 +Creator,Advent Calendar 2004 Creator (Day 14) Helicopter,13,2004,Black,6 +Creator,Advent Calendar 2004 Creator (Day 17) Speedboat,13,2004,Black,7 +Creator,Advent Calendar 2004 Creator (Day 3) Parrot,13,2004,Medium Blue,2 +Creator,Advent Calendar 2004 Creator (Day 14) Helicopter,13,2004,Dark Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 21) Santa,13,2004,White,3 +Creator,Advent Calendar 2004 Creator (Day 19) Snowman,13,2004,Black,2 +Creator,Advent Calendar 2004 Creator (Day 17) Speedboat,13,2004,Yellow,3 +Creator,Advent Calendar 2004 Creator (Day 21) Santa,13,2004,Dark Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 14) Helicopter,13,2004,Trans-Clear,1 +Creator,Advent Calendar 2004 Creator (Day 17) Speedboat,13,2004,Trans-Neon Orange,1 +Creator,Advent Calendar 2004 Creator (Day 17) Speedboat,13,2004,Trans-Black,1 +Creator,Advent Calendar 2004 Creator (Day 14) Helicopter,13,2004,Yellow,4 +Creator,Advent Calendar 2004 Creator (Day 19) Snowman,13,2004,White,6 +Creator,Advent Calendar 2004 Creator (Day 19) Snowman,13,2004,Red,1 +Creator,Advent Calendar 2004 Creator (Day 2) Plane,13,2004,Blue,3 +Creator,Advent Calendar 2004 Creator (Day 21) Santa,13,2004,Light Bluish Gray,4 +Creator,Advent Calendar 2004 Creator (Day 21) Santa,13,2004,Red,5 +Creator,Advent Calendar 2004 Creator (Day 23) Tree,12,2004,Green,3 +Creator,Advent Calendar 2004 Creator (Day 23) Tree,12,2004,Reddish Brown,2 +Creator,Advent Calendar 2004 Creator (Day 23) Tree,12,2004,Trans-Yellow,2 +Creator,Advent Calendar 2004 Creator (Day 13) Santa Ornament,12,2004,White,3 +Creator,Advent Calendar 2004 Creator (Day 13) Santa Ornament,12,2004,Red,4 +Creator,Advent Calendar 2004 Creator (Day 13) Santa Ornament,12,2004,Dark Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 13) Santa Ornament,12,2004,Black,1 +Creator,Advent Calendar 2004 Creator (Day 13) Santa Ornament,12,2004,Light Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 24) Air Boat,9,2004,Dark Bluish Gray,1 +Creator,Advent Calendar 2004 Creator (Day 24) Air Boat,9,2004,Green,4 +Creator,Advent Calendar 2004 Creator (Day 24) Air Boat,9,2004,Trans-Black,1 +Creator,Advent Calendar 2004 Creator (Day 15) Reindeer,9,2004,Reddish Brown,5 +Creator,Advent Calendar 2004 Creator (Day 15) Reindeer,9,2004,Red,1 +Creator,Advent Calendar 2004 Creator (Day 24) Air Boat,9,2004,Trans-Neon Orange,1 +Creator,Advent Calendar 2004 Creator (Day 24) Air Boat,9,2004,Black,1 +Creator,Advent Calendar 2004 Creator (Day 12) Green Present,7,2004,Red,2 +Creator,Advent Calendar 2004 Creator (Day 12) Green Present,7,2004,Green,1 +Creator,Advent Calendar 2004 Creator (Day 5) Blue Present,7,2004,Blue,2 +Creator,Advent Calendar 2004 Creator (Day 5) Blue Present,7,2004,Medium Blue,1 +Creator,Robo Pod,64,2006,White,13 +Creator,Robo Pod,64,2006,Black,9 +Creator,Robo Pod,64,2006,Dark Bluish Gray,2 +Creator,Robo Pod,64,2006,Metallic Silver,2 +Creator,Robo Pod,64,2006,Trans-Dark Blue,4 +Creator,Aero Pod,60,2006,Blue,11 +Creator,Aero Pod,60,2006,Dark Bluish Gray,1 +Creator,Aero Pod,60,2006,Light Bluish Gray,8 +Creator,Aero Pod,60,2006,Trans-Black,2 +Creator,Aero Pod,60,2006,Trans-Dark Blue,1 +Creator,Aero Pod,60,2006,Trans-Neon Orange,1 +Creator,Aero Pod,60,2006,Trans-Yellow,2 +Creator,Aero Pod,60,2006,Yellow,10 +Creator,Aero Pod,60,2006,Black,1 +Creator,Auto Pod,56,2006,Black,5 +Creator,Auto Pod,56,2006,Orange,6 +Creator,Auto Pod,56,2006,Red,10 +Creator,Auto Pod,56,2006,Trans-Black,1 +Creator,Auto Pod,56,2006,Trans-Red,2 +Creator,Auto Pod,56,2006,Trans-Yellow,1 +Creator,Auto Pod,56,2006,Light Bluish Gray,3 +Creator,Dino Pod,55,2006,Trans-Neon Orange,1 +Creator,Dino Pod,55,2006,Black,14 +Creator,Dino Pod,55,2006,Green,7 +Creator,Dino Pod,55,2006,Lime,5 +Creator,Dino Pod,55,2006,Trans-Clear,1 +Creator,Dino Pod,55,2006,Trans-Neon Green,1 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,Black,2 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,Green,2 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,Light Bluish Gray,1 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,Red,8 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,Reddish Brown,5 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,Trans-Dark Blue,1 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,Trans-Green,1 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,Trans-Red,2 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,Trans-Yellow,1 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,White,5 +Creator,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",66,2009,Yellow,2 +Creator,Santa’s Workshop,882,2014,Green,9 +Creator,Santa’s Workshop,882,2014,Flesh,1 +Creator,Santa’s Workshop,882,2014,Flat Silver,2 +Creator,Santa’s Workshop,882,2014,Dark Tan,2 +Creator,Santa’s Workshop,882,2014,Dark Red,2 +Creator,Santa’s Workshop,882,2014,Blue,8 +Creator,Santa’s Workshop,882,2014,Dark Purple,1 +Creator,Santa’s Workshop,882,2014,Bright Green,1 +Creator,Santa’s Workshop,882,2014,Dark Azure,1 +Creator,Santa’s Workshop,882,2014,Dark Blue,1 +Creator,Santa’s Workshop,882,2014,Dark Bluish Gray,23 +Creator,Santa’s Workshop,882,2014,Dark Brown,2 +Creator,Santa’s Workshop,882,2014,Dark Green,13 +Creator,Santa’s Workshop,882,2014,Dark Orange,9 +Creator,Santa’s Workshop,882,2014,Trans-Dark Blue,1 +Creator,Santa’s Workshop,882,2014,Trans-Dark Pink,2 +Creator,Santa’s Workshop,882,2014,Lime,2 +Creator,Santa’s Workshop,882,2014,Trans-Green,1 +Creator,Santa’s Workshop,882,2014,Trans-Orange,2 +Creator,Santa’s Workshop,882,2014,Trans-Red,3 +Creator,Santa’s Workshop,882,2014,Trans-Yellow,3 +Creator,Santa’s Workshop,882,2014,White,40 +Creator,Santa’s Workshop,882,2014,Trans-Bright Green,1 +Creator,Santa’s Workshop,882,2014,Black,29 +Creator,Santa’s Workshop,882,2014,Light Aqua,1 +Creator,Santa’s Workshop,882,2014,Light Bluish Gray,25 +Creator,Santa’s Workshop,882,2014,Yellow,13 +Creator,Santa’s Workshop,882,2014,Magenta,1 +Creator,Santa’s Workshop,882,2014,Medium Azure,3 +Creator,Santa’s Workshop,882,2014,Medium Blue,1 +Creator,Santa’s Workshop,882,2014,Medium Dark Flesh,6 +Creator,Santa’s Workshop,882,2014,Orange,4 +Creator,Santa’s Workshop,882,2014,Pearl Gold,13 +Creator,Santa’s Workshop,882,2014,Red,28 +Creator,Santa’s Workshop,882,2014,Reddish Brown,36 +Creator,Santa’s Workshop,882,2014,Tan,29 +Creator,Santa’s Workshop,882,2014,Trans-Black,1 +Creator,Ice Skating,129,2014,Black,3 +Creator,Ice Skating,129,2014,Blue,2 +Creator,Ice Skating,129,2014,Dark Blue,1 +Creator,Ice Skating,129,2014,Dark Bluish Gray,1 +Creator,Ice Skating,129,2014,Dark Brown,1 +Creator,Ice Skating,129,2014,Dark Orange,1 +Creator,Ice Skating,129,2014,Dark Red,3 +Creator,Ice Skating,129,2014,Red,4 +Creator,Ice Skating,129,2014,Tan,3 +Creator,Ice Skating,129,2014,Flat Silver,2 +Creator,Ice Skating,129,2014,Trans-Clear,2 +Creator,Ice Skating,129,2014,Trans-Light Blue,1 +Creator,Ice Skating,129,2014,White,10 +Creator,Ice Skating,129,2014,Yellow,2 +Creator,Ice Skating,129,2014,Green,1 +Creator,Ice Skating,129,2014,Light Bluish Gray,2 +Creator,Ice Skating,129,2014,Medium Azure,4 +Creator,Ice Skating,129,2014,Bright Green,2 +Creator,Christmas Snow Hut Ornament,45,2014,Reddish Brown,3 +Creator,Christmas Snow Hut Ornament,45,2014,Trans-Clear,1 +Creator,Christmas Snow Hut Ornament,45,2014,Trans-Yellow,1 +Creator,Christmas Snow Hut Ornament,45,2014,White,6 +Creator,Christmas Snow Hut Ornament,45,2014,Dark Bluish Gray,1 +Creator,Christmas Snow Hut Ornament,45,2014,Bright Light Orange,1 +Creator,Christmas Snow Hut Ornament,45,2014,Flat Silver,1 +Creator,Christmas Snow Hut Ornament,45,2014,Green,2 +Creator,Christmas Snow Hut Ornament,45,2014,Red,1 +Creator,Christmas Cat Ornament,34,2014,Bright Pink,1 +Creator,Christmas Cat Ornament,34,2014,Blue,1 +Creator,Christmas Cat Ornament,34,2014,Black,8 +Creator,Christmas Cat Ornament,34,2014,White,7 +Creator,Christmas Cat Ornament,34,2014,Trans-Clear,1 +Creator,Train Ornament,25,2014,Black,3 +Creator,Train Ornament,25,2014,Bright Light Orange,1 +Creator,Train Ornament,25,2014,Light Bluish Gray,2 +Creator,Train Ornament,25,2014,Red,5 +Creator,Train Ornament,25,2014,White,4 +Creator,Carousel,2669,2017,Trans-Red,1 +Creator,Carousel,2669,2017,Yellow,17 +Creator,Carousel,2669,2017,White,73 +Creator,Carousel,2669,2017,Trans-Yellow,1 +Creator,Carousel,2669,2017,Orange,16 +Creator,Carousel,2669,2017,Black,46 +Creator,Carousel,2669,2017,Blue,11 +Creator,Carousel,2669,2017,Bright Green,2 +Creator,Carousel,2669,2017,Bright Light Blue,1 +Creator,Carousel,2669,2017,Bright Pink,3 +Creator,Carousel,2669,2017,Dark Azure,2 +Creator,Carousel,2669,2017,Dark Blue,9 +Creator,Carousel,2669,2017,Dark Bluish Gray,49 +Creator,Carousel,2669,2017,Dark Brown,2 +Creator,Carousel,2669,2017,Dark Pink,6 +Creator,Carousel,2669,2017,Dark Tan,4 +Creator,Carousel,2669,2017,Green,15 +Creator,Carousel,2669,2017,Light Bluish Gray,66 +Creator,Carousel,2669,2017,Lime,8 +Creator,Carousel,2669,2017,Magenta,1 +Creator,Carousel,2669,2017,Medium Azure,1 +Creator,Carousel,2669,2017,Medium Blue,7 +Creator,Carousel,2669,2017,Medium Dark Flesh,2 +Creator,Carousel,2669,2017,Medium Lavender,2 +Creator,Carousel,2669,2017,Olive Green,1 +Creator,Carousel,2669,2017,Pearl Gold,9 +Creator,Carousel,2669,2017,Red,13 +Creator,Carousel,2669,2017,Reddish Brown,7 +Creator,Carousel,2669,2017,Tan,35 +Creator,Carousel,2669,2017,Trans-Clear,1 +Creator,Carousel,2669,2017,Trans-Green,1 +Creator,Carousel,2669,2017,Trans-Neon Green,1 +Creator,Modular Family Villa,728,2017,Pearl Gold,2 +Creator,Modular Family Villa,728,2017,Orange,2 +Creator,Modular Family Villa,728,2017,Medium Dark Flesh,1 +Creator,Modular Family Villa,728,2017,Medium Blue,1 +Creator,Modular Family Villa,728,2017,Medium Azure,5 +Creator,Modular Family Villa,728,2017,Light Bluish Gray,33 +Creator,Modular Family Villa,728,2017,Green,7 +Creator,Modular Family Villa,728,2017,Flat Silver,1 +Creator,Modular Family Villa,728,2017,Dark Tan,7 +Creator,Modular Family Villa,728,2017,Dark Red,3 +Creator,Modular Family Villa,728,2017,Dark Brown,1 +Creator,Modular Family Villa,728,2017,Dark Bluish Gray,9 +Creator,Modular Family Villa,728,2017,Dark Blue,1 +Creator,Modular Family Villa,728,2017,Bright Pink,1 +Creator,Modular Family Villa,728,2017,Bright Green,1 +Creator,Modular Family Villa,728,2017,Blue,15 +Creator,Modular Family Villa,728,2017,Black,25 +Creator,Modular Family Villa,728,2017,Trans-Black,2 +Creator,Modular Family Villa,728,2017,Trans-Red,1 +Creator,Modular Family Villa,728,2017,Trans-Orange,2 +Creator,Modular Family Villa,728,2017,Trans-Clear,5 +Creator,Modular Family Villa,728,2017,Tan,9 +Creator,Modular Family Villa,728,2017,Reddish Brown,12 +Creator,Modular Family Villa,728,2017,Red,12 +Creator,Modular Family Villa,728,2017,Trans-Yellow,2 +Creator,Modular Family Villa,728,2017,White,32 +Creator,Modular Family Villa,728,2017,Yellow,21 +Creator,Turbo Track Racer,664,2017,Bright Light Orange,4 +Creator,Turbo Track Racer,664,2017,Green,1 +Creator,Turbo Track Racer,664,2017,Trans-Black,2 +Creator,Turbo Track Racer,664,2017,Yellow,5 +Creator,Turbo Track Racer,664,2017,Black,38 +Creator,Turbo Track Racer,664,2017,Blue,49 +Creator,Turbo Track Racer,664,2017,Dark Blue,1 +Creator,Turbo Track Racer,664,2017,Dark Bluish Gray,20 +Creator,Turbo Track Racer,664,2017,Flat Silver,3 +Creator,Turbo Track Racer,664,2017,Light Bluish Gray,27 +Creator,Turbo Track Racer,664,2017,Medium Azure,6 +Creator,Turbo Track Racer,664,2017,Orange,1 +Creator,Turbo Track Racer,664,2017,Pearl Dark Gray,1 +Creator,Turbo Track Racer,664,2017,Red,9 +Creator,Turbo Track Racer,664,2017,Reddish Brown,1 +Creator,Turbo Track Racer,664,2017,Tan,1 +Creator,Turbo Track Racer,664,2017,Trans-Clear,2 +Creator,Turbo Track Racer,664,2017,Trans-Light Blue,1 +Creator,Turbo Track Racer,664,2017,Trans-Orange,2 +Creator,Turbo Track Racer,664,2017,Trans-Red,1 +Creator,Turbo Track Racer,664,2017,White,21 +Creator,Park Street Townhouse,565,2017,Tan,10 +Creator,Park Street Townhouse,565,2017,Trans-Black,1 +Creator,Park Street Townhouse,565,2017,Trans-Clear,5 +Creator,Park Street Townhouse,565,2017,Bright Pink,1 +Creator,Park Street Townhouse,565,2017,Trans-Yellow,2 +Creator,Park Street Townhouse,565,2017,White,41 +Creator,Park Street Townhouse,565,2017,Yellow,2 +Creator,Park Street Townhouse,565,2017,Red,9 +Creator,Park Street Townhouse,565,2017,Black,46 +Creator,Park Street Townhouse,565,2017,Trans-Orange,1 +Creator,Park Street Townhouse,565,2017,Blue,3 +Creator,Park Street Townhouse,565,2017,Bright Green,3 +Creator,Park Street Townhouse,565,2017,Bright Light Blue,1 +Creator,Park Street Townhouse,565,2017,Sand Green,4 +Creator,Park Street Townhouse,565,2017,Bright Light Orange,3 +Creator,Park Street Townhouse,565,2017,Dark Azure,3 +Creator,Park Street Townhouse,565,2017,Dark Blue,4 +Creator,Park Street Townhouse,565,2017,Dark Bluish Gray,17 +Creator,Park Street Townhouse,565,2017,Dark Green,2 +Creator,Park Street Townhouse,565,2017,Dark Red,6 +Creator,Park Street Townhouse,565,2017,Dark Tan,2 +Creator,Park Street Townhouse,565,2017,Orange,2 +Creator,Park Street Townhouse,565,2017,Light Bluish Gray,25 +Creator,Park Street Townhouse,565,2017,Lime,4 +Creator,Park Street Townhouse,565,2017,Medium Blue,4 +Creator,Park Street Townhouse,565,2017,Medium Dark Flesh,3 +Creator,Park Street Townhouse,565,2017,Reddish Brown,14 +Creator,Park Street Townhouse,565,2017,Green,4 +Creator,Modular Modern Home,386,2017,White,30 +Creator,Modular Modern Home,386,2017,Yellow,8 +Creator,Modular Modern Home,386,2017,Dark Azure,1 +Creator,Modular Modern Home,386,2017,Black,13 +Creator,Modular Modern Home,386,2017,Bright Light Blue,1 +Creator,Modular Modern Home,386,2017,Bright Light Orange,1 +Creator,Modular Modern Home,386,2017,Dark Blue,7 +Creator,Modular Modern Home,386,2017,Dark Bluish Gray,7 +Creator,Modular Modern Home,386,2017,Dark Orange,1 +Creator,Modular Modern Home,386,2017,Dark Purple,1 +Creator,Modular Modern Home,386,2017,Flat Silver,1 +Creator,Modular Modern Home,386,2017,Green,10 +Creator,Modular Modern Home,386,2017,Light Bluish Gray,11 +Creator,Modular Modern Home,386,2017,Lime,9 +Creator,Modular Modern Home,386,2017,Medium Blue,4 +Creator,Modular Modern Home,386,2017,Medium Dark Flesh,2 +Creator,Modular Modern Home,386,2017,Medium Lavender,1 +Creator,Modular Modern Home,386,2017,Orange,1 +Creator,Modular Modern Home,386,2017,Red,13 +Creator,Modular Modern Home,386,2017,Reddish Brown,16 +Creator,Modular Modern Home,386,2017,Tan,4 +Creator,Modular Modern Home,386,2017,Trans-Black,1 +Creator,Modular Modern Home,386,2017,Trans-Clear,8 +Creator,Modular Modern Home,386,2017,Trans-Light Blue,2 +Creator,Modular Modern Home,386,2017,Trans-Yellow,2 +Creator,Seaplane Adventures,359,2017,Trans-Red,1 +Creator,Seaplane Adventures,359,2017,Yellow,22 +Creator,Seaplane Adventures,359,2017,Tan,7 +Creator,Seaplane Adventures,359,2017,White,20 +Creator,Seaplane Adventures,359,2017,Dark Brown,1 +Creator,Seaplane Adventures,359,2017,Trans-Green,2 +Creator,Seaplane Adventures,359,2017,Trans-Clear,3 +Creator,Seaplane Adventures,359,2017,Red,11 +Creator,Seaplane Adventures,359,2017,Trans-Orange,2 +Creator,Seaplane Adventures,359,2017,Sand Blue,1 +Creator,Seaplane Adventures,359,2017,Reddish Brown,8 +Creator,Seaplane Adventures,359,2017,Orange,1 +Creator,Seaplane Adventures,359,2017,Medium Azure,2 +Creator,Seaplane Adventures,359,2017,Lime,3 +Creator,Seaplane Adventures,359,2017,Light Bluish Gray,10 +Creator,Seaplane Adventures,359,2017,Green,2 +Creator,Seaplane Adventures,359,2017,Dark Tan,1 +Creator,Seaplane Adventures,359,2017,Black,9 +Creator,Seaplane Adventures,359,2017,Blue,3 +Creator,Seaplane Adventures,359,2017,Dark Blue,9 +Creator,Seaplane Adventures,359,2017,Dark Bluish Gray,10 +Creator,Modular Poolside Holiday,352,2017,Medium Lavender,1 +Creator,Modular Poolside Holiday,352,2017,Orange,3 +Creator,Modular Poolside Holiday,352,2017,Red,8 +Creator,Modular Poolside Holiday,352,2017,Reddish Brown,2 +Creator,Modular Poolside Holiday,352,2017,Trans-Orange,1 +Creator,Modular Poolside Holiday,352,2017,White,16 +Creator,Modular Poolside Holiday,352,2017,Yellow,4 +Creator,Modular Poolside Holiday,352,2017,Bright Pink,1 +Creator,Modular Poolside Holiday,352,2017,Tan,21 +Creator,Modular Poolside Holiday,352,2017,Black,12 +Creator,Modular Poolside Holiday,352,2017,Trans-Yellow,1 +Creator,Modular Poolside Holiday,352,2017,Blue,5 +Creator,Modular Poolside Holiday,352,2017,Bright Green,2 +Creator,Modular Poolside Holiday,352,2017,Bright Light Orange,2 +Creator,Modular Poolside Holiday,352,2017,Dark Blue,2 +Creator,Modular Poolside Holiday,352,2017,Dark Bluish Gray,12 +Creator,Modular Poolside Holiday,352,2017,Dark Orange,1 +Creator,Modular Poolside Holiday,352,2017,Dark Red,1 +Creator,Modular Poolside Holiday,352,2017,Green,4 +Creator,Modular Poolside Holiday,352,2017,Light Bluish Gray,25 +Creator,Modular Poolside Holiday,352,2017,Lime,2 +Creator,Space Shuttle Explorer,285,2017,Trans-Clear,2 +Creator,Space Shuttle Explorer,285,2017,Trans-Neon Orange,2 +Creator,Space Shuttle Explorer,285,2017,Trans-Light Blue,1 +Creator,Space Shuttle Explorer,285,2017,White,37 +Creator,Space Shuttle Explorer,285,2017,Dark Bluish Gray,15 +Creator,Space Shuttle Explorer,285,2017,Yellow,4 +Creator,Space Shuttle Explorer,285,2017,Trans-Black,2 +Creator,Space Shuttle Explorer,285,2017,Tan,4 +Creator,Space Shuttle Explorer,285,2017,Red,5 +Creator,Space Shuttle Explorer,285,2017,Pearl Gold,3 +Creator,Space Shuttle Explorer,285,2017,Light Bluish Gray,17 +Creator,Space Shuttle Explorer,285,2017,Green,1 +Creator,Space Shuttle Explorer,285,2017,Blue,9 +Creator,Space Shuttle Explorer,285,2017,Black,29 +Creator,Beachside Vacation,275,2017,Black,9 +Creator,Beachside Vacation,275,2017,Yellow,6 +Creator,Beachside Vacation,275,2017,White,24 +Creator,Beachside Vacation,275,2017,Trans-Light Blue,1 +Creator,Beachside Vacation,275,2017,Trans-Clear,5 +Creator,Beachside Vacation,275,2017,Tan,4 +Creator,Beachside Vacation,275,2017,Reddish Brown,9 +Creator,Beachside Vacation,275,2017,Red,6 +Creator,Beachside Vacation,275,2017,Orange,2 +Creator,Beachside Vacation,275,2017,Medium Dark Flesh,1 +Creator,Beachside Vacation,275,2017,Medium Blue,5 +Creator,Beachside Vacation,275,2017,Lime,5 +Creator,Beachside Vacation,275,2017,Light Bluish Gray,10 +Creator,Beachside Vacation,275,2017,Dark Tan,2 +Creator,Beachside Vacation,275,2017,Dark Brown,1 +Creator,Beachside Vacation,275,2017,Dark Bluish Gray,8 +Creator,Beachside Vacation,275,2017,Dark Blue,3 +Creator,Beachside Vacation,275,2017,Bright Pink,1 +Creator,Beachside Vacation,275,2017,Bright Light Orange,2 +Creator,Beachside Vacation,275,2017,Bright Light Blue,1 +Creator,Beachside Vacation,275,2017,Blue,2 +Creator,Beachside Vacation,275,2017,Green,2 +Creator,Robo Explorer 1,205,2017,Light Bluish Gray,21 +Creator,Robo Explorer 1,205,2017,White,3 +Creator,Robo Explorer 1,205,2017,Trans-Orange,1 +Creator,Robo Explorer 1,205,2017,Trans-Neon Green,2 +Creator,Robo Explorer 1,205,2017,Trans-Green,1 +Creator,Robo Explorer 1,205,2017,Trans-Clear,2 +Creator,Robo Explorer 1,205,2017,Reddish Brown,2 +Creator,Robo Explorer 1,205,2017,Red,2 +Creator,Robo Explorer 1,205,2017,Medium Azure,14 +Creator,Robo Explorer 1,205,2017,Dark Bluish Gray,15 +Creator,Robo Explorer 1,205,2017,Black,23 +Creator,Robo Explorer 1,205,2017,Yellow,1 +Creator,Mighty Dinosaurs,174,2017,Dark Tan,1 +Creator,Mighty Dinosaurs,174,2017,Green,16 +Creator,Mighty Dinosaurs,174,2017,Dark Green,8 +Creator,Mighty Dinosaurs,174,2017,Light Bluish Gray,5 +Creator,Mighty Dinosaurs,174,2017,Red,1 +Creator,Mighty Dinosaurs,174,2017,White,5 +Creator,Mighty Dinosaurs,174,2017,Tan,11 +Creator,Mighty Dinosaurs,174,2017,Dark Bluish Gray,9 +Creator,Mighty Dinosaurs,174,2017,Trans-Orange,2 +Creator,Mighty Dinosaurs,174,2017,Black,8 +Creator,Mighty Dinosaurs,174,2017,Dark Red,2 +Creator,Mini VW Beetle,141,2017,Yellow,1 +Creator,Mini VW Beetle,141,2017,Tan,3 +Creator,Mini VW Beetle,141,2017,White,3 +Creator,Mini VW Beetle,141,2017,Trans-Clear,5 +Creator,Mini VW Beetle,141,2017,Red,1 +Creator,Mini VW Beetle,141,2017,[No Color],1 +Creator,Mini VW Beetle,141,2017,Black,4 +Creator,Mini VW Beetle,141,2017,Dark Azure,13 +Creator,Mini VW Beetle,141,2017,Dark Bluish Gray,3 +Creator,Mini VW Beetle,141,2017,Flat Silver,1 +Creator,Mini VW Beetle,141,2017,Light Bluish Gray,10 +Creator,Mini VW Beetle,141,2017,Reddish Brown,2 +Creator,Red Racer,72,2017,White,3 +Creator,Red Racer,72,2017,Trans-Orange,1 +Creator,Red Racer,72,2017,Red,12 +Creator,Red Racer,72,2017,Light Bluish Gray,3 +Creator,Red Racer,72,2017,Flat Silver,2 +Creator,Red Racer,72,2017,Dark Bluish Gray,2 +Creator,Red Racer,72,2017,Trans-Clear,2 +Creator,Red Racer,72,2017,Blue,1 +Creator,Red Racer,72,2017,Black,7 +Creator,Blue Express,71,2017,Light Bluish Gray,3 +Creator,Blue Express,71,2017,Red,2 +Creator,Blue Express,71,2017,Trans-Clear,2 +Creator,Blue Express,71,2017,Black,12 +Creator,Blue Express,71,2017,Flat Silver,1 +Creator,Blue Express,71,2017,Blue,6 +Creator,Blue Express,71,2017,Dark Bluish Gray,6 +Creature,Mythical Creatures,588,2006,Black,16 +Creature,Mythical Creatures,588,2006,Blue,1 +Creature,Mythical Creatures,588,2006,Dark Bluish Gray,19 +Creature,Mythical Creatures,588,2006,Dark Green,12 +Creature,Mythical Creatures,588,2006,Dark Red,2 +Creature,Mythical Creatures,588,2006,Green,26 +Creature,Mythical Creatures,588,2006,Light Bluish Gray,6 +Creature,Mythical Creatures,588,2006,Lime,4 +Creature,Mythical Creatures,588,2006,Trans-Clear,1 +Creature,Mythical Creatures,588,2006,Trans-Neon Green,2 +Creature,Mythical Creatures,588,2006,Trans-Neon Orange,2 +Creature,Mythical Creatures,588,2006,Trans-Orange,1 +Creature,Mythical Creatures,588,2006,Trans-Red,1 +Creature,Mythical Creatures,588,2006,White,5 +Creature,Mythical Creatures,588,2006,Yellow,3 +Creature,Prehistoric Power,380,2006,Black,6 +Creature,Prehistoric Power,380,2006,Blue,1 +Creature,Prehistoric Power,380,2006,Dark Bluish Gray,9 +Creature,Prehistoric Power,380,2006,Dark Red,10 +Creature,Prehistoric Power,380,2006,Green,1 +Creature,Prehistoric Power,380,2006,Light Bluish Gray,3 +Creature,Prehistoric Power,380,2006,Red,35 +Creature,Prehistoric Power,380,2006,Reddish Brown,1 +Creature,Prehistoric Power,380,2006,Tan,18 +Creature,Prehistoric Power,380,2006,Trans-Neon Green,2 +Creature,Prehistoric Power,380,2006,White,1 +Creature,Mini Animals,77,2007,Reddish Brown,11 +Creature,Mini Animals,77,2007,Black,4 +Creature,Mini Animals,77,2007,Dark Bluish Gray,7 +Creature,Mini Animals,77,2007,Green,1 +Creature,Mini Animals,77,2007,Red,1 +Creature,Mini Animals,77,2007,Tan,10 +Creature,Mini Animals,77,2007,White,2 +Creature,Lion,57,2007,Dark Bluish Gray,1 +Creature,Lion,57,2007,Orange,1 +Creature,Lion,57,2007,Reddish Brown,2 +Creature,Lion,57,2007,Tan,8 +Creature,Lion,57,2007,White,2 +Creature,Lion,57,2007,Black,2 +Creature,Red Creatures,221,2015,Light Bluish Gray,4 +Creature,Red Creatures,221,2015,Red,21 +Creature,Red Creatures,221,2015,Tan,5 +Creature,Red Creatures,221,2015,Trans-Bright Green,1 +Creature,Red Creatures,221,2015,Trans-Orange,1 +Creature,Red Creatures,221,2015,White,2 +Creature,Red Creatures,221,2015,Black,5 +Creature,Red Creatures,221,2015,Dark Bluish Gray,5 +Creature,Red Creatures,221,2015,Dark Red,11 +Creature,Rainforest Animals,215,2015,Black,11 +Creature,Rainforest Animals,215,2015,Blue,4 +Creature,Rainforest Animals,215,2015,Bright Light Orange,3 +Creature,Rainforest Animals,215,2015,Dark Blue,2 +Creature,Rainforest Animals,215,2015,Dark Bluish Gray,3 +Creature,Rainforest Animals,215,2015,Yellow,3 +Creature,Rainforest Animals,215,2015,Green,11 +Creature,Rainforest Animals,215,2015,Light Bluish Gray,1 +Creature,Rainforest Animals,215,2015,Lime,8 +Creature,Rainforest Animals,215,2015,Medium Dark Flesh,1 +Creature,Rainforest Animals,215,2015,Red,8 +Creature,Rainforest Animals,215,2015,Tan,1 +Creature,Rainforest Animals,215,2015,Trans-Clear,1 +Creature,Rainforest Animals,215,2015,White,11 +Creature,Rainforest Animals,215,2015,Dark Green,2 +Creature,Turtle,33,2017,Dark Bluish Gray,1 +Creature,Turtle,33,2017,Light Bluish Gray,2 +Creature,Turtle,33,2017,Lime,2 +Creature,Turtle,33,2017,Reddish Brown,3 +Creature,Turtle,33,2017,Tan,1 +Creature,Turtle,33,2017,White,1 +Creature,Turtle,33,2017,Yellow,2 +Crusaders,King's Mountain Fortress,438,1990,Black,43 +Crusaders,King's Mountain Fortress,438,1990,Blue,3 +Crusaders,King's Mountain Fortress,438,1990,Brown,7 +Crusaders,King's Mountain Fortress,438,1990,Dark Gray,7 +Crusaders,King's Mountain Fortress,438,1990,Glow In Dark Opaque,1 +Crusaders,King's Mountain Fortress,438,1990,Green,4 +Crusaders,King's Mountain Fortress,438,1990,Light Gray,57 +Crusaders,King's Mountain Fortress,438,1990,Red,10 +Crusaders,King's Mountain Fortress,438,1990,Trans-Yellow,1 +Crusaders,King's Mountain Fortress,438,1990,White,5 +Crusaders,King's Mountain Fortress,438,1990,Yellow,4 +Crusaders,Dungeon Hunters,111,1990,Black,20 +Crusaders,Dungeon Hunters,111,1990,Blue,9 +Crusaders,Dungeon Hunters,111,1990,Brown,5 +Crusaders,Dungeon Hunters,111,1990,Dark Gray,6 +Crusaders,Dungeon Hunters,111,1990,Green,2 +Crusaders,Dungeon Hunters,111,1990,Light Gray,2 +Crusaders,Dungeon Hunters,111,1990,Red,9 +Crusaders,Dungeon Hunters,111,1990,White,4 +Crusaders,Dungeon Hunters,111,1990,Yellow,1 +Crusaders,Treasure Cart,24,1998,Black,5 +Crusaders,Treasure Cart,24,1998,Blue,1 +Crusaders,Treasure Cart,24,1998,Brown,4 +Crusaders,Treasure Cart,24,1998,Dark Gray,2 +Crusaders,Treasure Cart,24,1998,Light Gray,2 +Crusaders,Treasure Cart,24,1998,Red,1 +Crusaders,Treasure Cart,24,1998,Trans-Red,1 +Crusaders,Treasure Cart,24,1998,Trans-Yellow,1 +Crusaders,Treasure Cart,24,1998,Yellow,2 +Dark Forest,Dark Forest Fortress,469,1996,Trans-Green,1 +Dark Forest,Dark Forest Fortress,469,1996,Red,8 +Dark Forest,Dark Forest Fortress,469,1996,Light Gray,36 +Dark Forest,Dark Forest Fortress,469,1996,Green,9 +Dark Forest,Dark Forest Fortress,469,1996,Dark Gray,2 +Dark Forest,Dark Forest Fortress,469,1996,Brown,26 +Dark Forest,Dark Forest Fortress,469,1996,Blue,21 +Dark Forest,Dark Forest Fortress,469,1996,Black,71 +Dark Forest,Dark Forest Fortress,469,1996,Trans-Red,1 +Dark Forest,Dark Forest Fortress,469,1996,Trans-Yellow,1 +Dark Forest,Dark Forest Fortress,469,1996,White,9 +Dark Forest,Dark Forest Fortress,469,1996,Yellow,6 +Dark Forest,Hemlock Stronghold,220,1996,Red,13 +Dark Forest,Hemlock Stronghold,220,1996,Black,43 +Dark Forest,Hemlock Stronghold,220,1996,Blue,7 +Dark Forest,Hemlock Stronghold,220,1996,Brown,12 +Dark Forest,Hemlock Stronghold,220,1996,Dark Gray,6 +Dark Forest,Hemlock Stronghold,220,1996,Green,6 +Dark Forest,Hemlock Stronghold,220,1996,Light Gray,17 +Dark Forest,Hemlock Stronghold,220,1996,Trans-Green,1 +Dark Forest,Hemlock Stronghold,220,1996,Trans-Neon Orange,1 +Dark Forest,Hemlock Stronghold,220,1996,Trans-Red,1 +Dark Forest,Hemlock Stronghold,220,1996,Trans-Yellow,2 +Dark Forest,Hemlock Stronghold,220,1996,White,6 +Dark Forest,Hemlock Stronghold,220,1996,Yellow,5 +Dark Forest,Bandit Ambush,60,1996,Brown,12 +Dark Forest,Bandit Ambush,60,1996,Black,11 +Dark Forest,Bandit Ambush,60,1996,Yellow,2 +Dark Forest,Bandit Ambush,60,1996,Trans-Red,1 +Dark Forest,Bandit Ambush,60,1996,Trans-Neon Orange,1 +Dark Forest,Bandit Ambush,60,1996,Trans-Green,1 +Dark Forest,Bandit Ambush,60,1996,Trans-Dark Blue,1 +Dark Forest,Bandit Ambush,60,1996,Light Gray,7 +Dark Forest,Bandit Ambush,60,1996,Green,4 +Dark Forest,Bandit Ambush,60,1996,Dark Gray,2 +Desert,Pharaoh's Forbidden Ruins,720,1998,Green,6 +Desert,Pharaoh's Forbidden Ruins,720,1998,Dark Gray,29 +Desert,Pharaoh's Forbidden Ruins,720,1998,Chrome Gold,4 +Desert,Pharaoh's Forbidden Ruins,720,1998,Brown,11 +Desert,Pharaoh's Forbidden Ruins,720,1998,Blue,6 +Desert,Pharaoh's Forbidden Ruins,720,1998,Black,54 +Desert,Pharaoh's Forbidden Ruins,720,1998,Trans-Neon Orange,1 +Desert,Pharaoh's Forbidden Ruins,720,1998,Yellow,17 +Desert,Pharaoh's Forbidden Ruins,720,1998,White,19 +Desert,Pharaoh's Forbidden Ruins,720,1998,Trans-Yellow,1 +Desert,Pharaoh's Forbidden Ruins,720,1998,Trans-Neon Green,1 +Desert,Pharaoh's Forbidden Ruins,720,1998,Trans-Green,1 +Desert,Pharaoh's Forbidden Ruins,720,1998,Trans-Clear,2 +Desert,Pharaoh's Forbidden Ruins,720,1998,Tan,40 +Desert,Pharaoh's Forbidden Ruins,720,1998,Trans-Red,3 +Desert,Pharaoh's Forbidden Ruins,720,1998,Red,18 +Desert,Pharaoh's Forbidden Ruins,720,1998,Light Gray,38 +Desert,Sphinx Secret Surprise,353,1998,Trans-Clear,3 +Desert,Sphinx Secret Surprise,353,1998,Tan,28 +Desert,Sphinx Secret Surprise,353,1998,Yellow,20 +Desert,Sphinx Secret Surprise,353,1998,White,9 +Desert,Sphinx Secret Surprise,353,1998,Trans-Red,1 +Desert,Sphinx Secret Surprise,353,1998,Trans-Neon Orange,1 +Desert,Sphinx Secret Surprise,353,1998,Red,20 +Desert,Sphinx Secret Surprise,353,1998,Blue,11 +Desert,Sphinx Secret Surprise,353,1998,Brown,7 +Desert,Sphinx Secret Surprise,353,1998,Chrome Gold,4 +Desert,Sphinx Secret Surprise,353,1998,Light Gray,32 +Desert,Sphinx Secret Surprise,353,1998,Dark Gray,16 +Desert,Sphinx Secret Surprise,353,1998,Green,4 +Desert,Sphinx Secret Surprise,353,1998,Black,40 +Desert,Mummy's Tomb,258,1998,Brown,5 +Desert,Mummy's Tomb,258,1998,Blue,2 +Desert,Mummy's Tomb,258,1998,Black,33 +Desert,Mummy's Tomb,258,1998,Red,4 +Desert,Mummy's Tomb,258,1998,Light Gray,32 +Desert,Mummy's Tomb,258,1998,Dark Gray,12 +Desert,Mummy's Tomb,258,1998,Green,4 +Desert,Mummy's Tomb,258,1998,Yellow,6 +Desert,Mummy's Tomb,258,1998,White,2 +Desert,Mummy's Tomb,258,1998,Trans-Red,1 +Desert,Mummy's Tomb,258,1998,Trans-Clear,2 +Desert,Mummy's Tomb,258,1998,Tan,18 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Yellow,4 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,White,14 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Trans-Clear,2 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Trans-Neon Orange,1 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Dark Gray,8 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Green,6 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Light Gray,16 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Metallic Gold,1 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Black,29 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Red,1 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Tan,20 +Desert,Treasure Raiders set with Mummy Storage Container,196,1998,Brown,8 +Desert,Desert Expedition,195,1998,Trans-Clear,2 +Desert,Desert Expedition,195,1998,Trans-Neon Orange,1 +Desert,Desert Expedition,195,1998,White,14 +Desert,Desert Expedition,195,1998,Yellow,4 +Desert,Desert Expedition,195,1998,[No Color],1 +Desert,Desert Expedition,195,1998,Black,30 +Desert,Desert Expedition,195,1998,Brown,8 +Desert,Desert Expedition,195,1998,Dark Gray,8 +Desert,Desert Expedition,195,1998,Green,6 +Desert,Desert Expedition,195,1998,Light Gray,16 +Desert,Desert Expedition,195,1998,Red,1 +Desert,Desert Expedition,195,1998,Tan,20 +Desert,The Valley of the Kings,164,1998,Trans-Yellow,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Blue,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Black,20 +Desert,The Valley of the Kings,164,1998,Yellow,7 +Desert,The Valley of the Kings,164,1998,White,8 +Desert,The Valley of the Kings,164,1998,Tan,19 +Desert,The Valley of the Kings,164,1998,Trans-Red,1 +Desert,The Valley of the Kings,164,1998,Trans-Neon Orange,1 +Desert,The Valley of the Kings,164,1998,Trans-Neon Green,1 +Desert,The Valley of the Kings,164,1998,Trans-Clear,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Trans-Yellow,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Trans-Red,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Yellow,7 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Trans-Neon Orange,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Trans-Neon Green,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Trans-Clear,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Tan,19 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Red,6 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Metallic Gold,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Light Gray,18 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Green,1 +Desert,The Valley of the Kings,164,1998,Dark Gray,8 +Desert,The Valley of the Kings,164,1998,Green,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Brown,1 +Desert,"Treasure Tomb, TRU exclusive",164,1998,Dark Gray,8 +Desert,The Valley of the Kings,164,1998,Light Gray,18 +Desert,The Valley of the Kings,164,1998,Red,6 +Desert,"Treasure Tomb, TRU exclusive",164,1998,White,8 +Desert,The Valley of the Kings,164,1998,Black,20 +Desert,The Valley of the Kings,164,1998,Blue,1 +Desert,The Valley of the Kings,164,1998,Brown,1 +Desert,Oasis Ambush,82,1998,Black,14 +Desert,Oasis Ambush,82,1998,[No Color],1 +Desert,Oasis Ambush,82,1998,White,4 +Desert,Oasis Ambush,82,1998,Yellow,4 +Desert,Oasis Ambush,82,1998,Blue,3 +Desert,Oasis Ambush,82,1998,Brown,4 +Desert,Oasis Ambush,82,1998,Chrome Gold,4 +Desert,Oasis Ambush,82,1998,Dark Gray,3 +Desert,Oasis Ambush,82,1998,Green,4 +Desert,Oasis Ambush,82,1998,Light Gray,1 +Desert,Oasis Ambush,82,1998,Red,2 +Desert,Oasis Ambush,82,1998,Tan,12 +Desert,Adventurers Tomb,81,1998,Trans-Yellow,1 +Desert,Adventurers Tomb,81,1998,Trans-Red,1 +Desert,Adventurers Tomb,81,1998,Trans-Clear,1 +Desert,Adventurers Tomb,81,1998,Tan,5 +Desert,Adventurers Tomb,81,1998,Light Gray,12 +Desert,Adventurers Tomb,81,1998,Dark Gray,9 +Desert,Adventurers Tomb,81,1998,Brown,2 +Desert,Adventurers Tomb,81,1998,Blue,5 +Desert,Adventurers Tomb,81,1998,White,4 +Desert,Adventurers Tomb,81,1998,Red,1 +Desert,Adventurers Tomb,81,1998,Yellow,2 +Desert,Adventurers Tomb,81,1998,Black,13 +Desert,Bi-Wing Baron,70,1998,Light Gray,8 +Desert,Bi-Wing Baron,70,1998,Dark Gray,8 +Desert,Bi-Wing Baron,70,1998,Brown,2 +Desert,Bi-Wing Baron,70,1998,Trans-Clear,1 +Desert,Bi-Wing Baron,70,1998,Black,14 +Desert,Bi-Wing Baron,70,1998,White,2 +Desert,Bi-Wing Baron,70,1998,Red,1 +Desert,Bi-Wing Baron,70,1998,Tan,2 +Desert,Bi-Wing Baron,70,1998,Trans-Neon Orange,1 +Desert,Bi-Wing Baron,70,1998,Yellow,1 +Desert,Adventurers Car & Skeleton,69,1998,Trans-Red,1 +Desert,Adventurers Car & Skeleton,69,1998,Trans-Clear,1 +Desert,Adventurers Car & Skeleton,69,1998,Trans-Yellow,1 +Desert,Adventurers Car & Skeleton,69,1998,Brown,3 +Desert,Adventurers Car & Skeleton,69,1998,Tan,8 +Desert,Adventurers Car & Skeleton,69,1998,White,7 +Desert,Adventurers Car & Skeleton,69,1998,Light Gray,8 +Desert,Adventurers Car & Skeleton,69,1998,Black,10 +Desert,Adventurers Car & Skeleton,69,1998,Dark Gray,5 +Desert,Adventurers Car & Skeleton,69,1998,Green,1 +Desert,Adventurers Car & Skeleton,69,1998,Yellow,2 +Desert,Adventurers Car & Skeleton,69,1998,Red,1 +Desert,Scorpion Tracker,35,1998,Yellow,1 +Desert,Scorpion Tracker,35,1998,Black,7 +Desert,Scorpion Tracker,35,1998,Brown,2 +Desert,Scorpion Tracker,35,1998,Dark Gray,4 +Desert,Scorpion Tracker,35,1998,Light Gray,5 +Desert,Scorpion Tracker,35,1998,Tan,7 +Desert,Scorpion Tracker,35,1998,Trans-Clear,1 +Desert,Adventurers Car,24,1998,Tan,1 +Desert,Adventurers Car,24,1998,Light Gray,7 +Desert,Adventurers Car,24,1998,Dark Gray,2 +Desert,Adventurers Car,24,1998,Black,3 +Desert,Adventurers Car,24,1998,White,1 +Desert,Adventurers Car,24,1998,Yellow,1 +Desert,Slyboot Car,23,1998,Black,7 +Desert,Plane of Hurrykain,23,1998,Black,8 +Desert,Plane of Hurrykain,23,1998,Light Gray,4 +Desert,Plane of Hurrykain,23,1998,Yellow,1 +Desert,Plane of Hurrykain,23,1998,Trans-Clear,1 +Desert,Plane of Hurrykain,23,1998,Tan,2 +Desert,Slyboot Car,23,1998,Yellow,1 +Desert,Slyboot Car,23,1998,Trans-Clear,1 +Desert,Slyboot Car,23,1998,Light Gray,3 +Desert,Plane of Hurrykain,23,1998,Brown,2 +Desert,Plane of Hurrykain,23,1998,Dark Gray,1 +Desert,Slyboot Car,23,1998,Dark Gray,2 +Desert,Adventurers Car,21,1998,Light Gray,5 +Desert,Adventurers Car,21,1998,Dark Gray,1 +Desert,Adventurers Car,21,1998,Brown,1 +Desert,Adventurers Car,21,1998,Black,4 +Desert,Adventurers Aeroplane,21,1998,Yellow,1 +Desert,Adventurers Aeroplane,21,1998,Trans-Clear,1 +Desert,Adventurers Aeroplane,21,1998,Tan,3 +Desert,Adventurers Aeroplane,21,1998,Light Gray,5 +Desert,Adventurers Aeroplane,21,1998,Brown,2 +Desert,Adventurers Aeroplane,21,1998,Black,6 +Desert,Adventurers Car,21,1998,Yellow,1 +Desert,Adventurers Car,21,1998,Tan,2 +Desert,Raft of Johnse,18,1998,Brown,2 +Desert,Raft of Johnse,18,1998,Yellow,1 +Desert,Raft of Johnse,18,1998,Tan,2 +Desert,Raft of Johnse,18,1998,Light Gray,2 +Desert,Raft of Johnse,18,1998,Dark Gray,2 +Desert,Raft of Johnse,18,1998,Black,5 +Desert,King Pharaoh the Third,17,1998,Trans-Green,1 +Desert,King Pharaoh the Third,17,1998,Tan,3 +Desert,King Pharaoh the Third,17,1998,Trans-Red,1 +Desert,King Pharaoh the Third,17,1998,Light Gray,2 +Desert,King Pharaoh the Third,17,1998,Black,5 +Desert,King Pharaoh the Third,17,1998,Red,1 +Desert,King Pharaoh the Third,17,1998,Yellow,2 +Desert,Adventurer - Johnny Thunder,13,1998,Yellow,1 +Desert,Adventurer - Johnny Thunder,13,1998,Tan,1 +Desert,Adventurer - Johnny Thunder,13,1998,Light Gray,1 +Desert,Adventurer - Johnny Thunder,13,1998,Dark Gray,3 +Desert,Adventurer - Johnny Thunder,13,1998,Brown,3 +Desert,Adventurer - Johnny Thunder,13,1998,Green,1 +Desert,Adventurer - Johnny Thunder,13,1998,Black,3 +Desert,Adventurers Value Pack (TRU Exclusive),3,2001,Royal Blue,1 +Designer Sets,Land Busters,769,2003,Black,67 +Designer Sets,Land Busters,769,2003,Blue,1 +Designer Sets,Land Busters,769,2003,Dark Gray,37 +Designer Sets,Land Busters,769,2003,Flat Silver,1 +Designer Sets,Land Busters,769,2003,Light Gray,25 +Designer Sets,Land Busters,769,2003,Pearl Light Gray,1 +Designer Sets,Land Busters,769,2003,Red,6 +Designer Sets,Land Busters,769,2003,Tan,1 +Designer Sets,Land Busters,769,2003,Trans-Black,1 +Designer Sets,Land Busters,769,2003,Trans-Clear,4 +Designer Sets,Land Busters,769,2003,Trans-Neon Orange,2 +Designer Sets,Land Busters,769,2003,Yellow,61 +Designer Sets,Land Busters,769,2003,Trans-Red,2 +Designer Sets,Air Blazers,705,2003,Black,62 +Designer Sets,Air Blazers,705,2003,Blue,1 +Designer Sets,Air Blazers,705,2003,Brown,1 +Designer Sets,Air Blazers,705,2003,Chrome Silver,1 +Designer Sets,Air Blazers,705,2003,Dark Gray,15 +Designer Sets,Air Blazers,705,2003,Light Gray,36 +Designer Sets,Air Blazers,705,2003,Orange,3 +Designer Sets,Air Blazers,705,2003,Red,45 +Designer Sets,Air Blazers,705,2003,Tan,4 +Designer Sets,Air Blazers,705,2003,Trans-Black,2 +Designer Sets,Air Blazers,705,2003,Trans-Clear,1 +Designer Sets,Air Blazers,705,2003,Trans-Green,1 +Designer Sets,Air Blazers,705,2003,Trans-Red,1 +Designer Sets,Air Blazers,705,2003,White,30 +Designer Sets,Sea Riders,549,2003,Trans-Black,2 +Designer Sets,Sea Riders,549,2003,Blue,49 +Designer Sets,Sea Riders,549,2003,Black,9 +Designer Sets,Sea Riders,549,2003,Yellow,30 +Designer Sets,Sea Riders,549,2003,White,18 +Designer Sets,Sea Riders,549,2003,Tan,1 +Designer Sets,Sea Riders,549,2003,Red,4 +Designer Sets,Sea Riders,549,2003,Pearl Light Gray,1 +Designer Sets,Sea Riders,549,2003,Light Gray,31 +Designer Sets,Sea Riders,549,2003,Dark Gray,20 +Designer Sets,Ultimate Wheels (Kohl's Exclusive),517,2003,Yellow,33 +Designer Sets,Ultimate Wheels (Kohl's Exclusive),517,2003,Trans-Clear,7 +Designer Sets,Ultimate Wheels (Kohl's Exclusive),517,2003,Red,53 +Designer Sets,Ultimate Wheels (Kohl's Exclusive),517,2003,Light Gray,17 +Designer Sets,Ultimate Wheels (Kohl's Exclusive),517,2003,Dark Gray,31 +Designer Sets,Ultimate Wheels (Kohl's Exclusive),517,2003,Black,41 +Designer Sets,Ultimate Wheels (Kohl's Exclusive),517,2003,Trans-Red,1 +Designer Sets,Ultimate Wheels (Kohl's Exclusive),517,2003,White,16 +Designer Sets,Ultimate Wheels (Kohl's Exclusive),517,2003,Trans-Yellow,2 +Designer Sets,Wild Collection,487,2003,White,5 +Designer Sets,Wild Collection,487,2003,Yellow,7 +Designer Sets,Wild Collection,487,2003,Red,31 +Designer Sets,Wild Collection,487,2003,Black,32 +Designer Sets,Wild Collection,487,2003,Blue,12 +Designer Sets,Wild Collection,487,2003,Brown,14 +Designer Sets,Wild Collection,487,2003,Dark Gray,8 +Designer Sets,Wild Collection,487,2003,Dark Pink,1 +Designer Sets,Wild Collection,487,2003,Dark Red,1 +Designer Sets,Wild Collection,487,2003,Green,33 +Designer Sets,Wild Collection,487,2003,Light Gray,1 +Designer Sets,Wild Collection,487,2003,Lime,7 +Designer Sets,Wild Collection,487,2003,Medium Blue,4 +Designer Sets,Wild Collection,487,2003,Orange,13 +Designer Sets,Wild Collection,487,2003,Sand Blue,1 +Designer Sets,Wild Collection,487,2003,Trans-Clear,2 +Designer Sets,Wild Collection,487,2003,Trans-Neon Green,1 +Designer Sets,Robobots,326,2003,Chrome Silver,2 +Designer Sets,Robobots,326,2003,Medium Blue,12 +Designer Sets,Robobots,326,2003,Black,21 +Designer Sets,Robobots,326,2003,Orange,10 +Designer Sets,Robobots,326,2003,Light Gray,26 +Designer Sets,Robobots,326,2003,White,8 +Designer Sets,Robobots,326,2003,Trans-Red,2 +Designer Sets,Robobots,326,2003,Trans-Clear,2 +Designer Sets,Robobots,326,2003,Blue,37 +Designer Sets,Robobots,326,2003,Red,2 +Designer Sets,Robobots,326,2003,Dark Gray,24 +Designer Sets,Maximum Wheels,293,2003,Yellow,1 +Designer Sets,Maximum Wheels,293,2003,Black,20 +Designer Sets,Maximum Wheels,293,2003,White,17 +Designer Sets,Maximum Wheels,293,2003,Dark Gray,20 +Designer Sets,Maximum Wheels,293,2003,Light Gray,14 +Designer Sets,Maximum Wheels,293,2003,Red,53 +Designer Sets,Maximum Wheels,293,2003,Trans-Clear,5 +Designer Sets,Maximum Wheels,293,2003,Trans-Red,1 +Designer Sets,Maximum Wheels,293,2003,Trans-Yellow,1 +Designer Sets,Mini Robots,229,2003,Dark Gray,18 +Designer Sets,Mini Robots,229,2003,Green,13 +Designer Sets,Mini Robots,229,2003,Light Gray,12 +Designer Sets,Mini Robots,229,2003,Lime,5 +Designer Sets,Mini Robots,229,2003,Trans-Red,1 +Designer Sets,Mini Robots,229,2003,Yellow,15 +Designer Sets,Mini Robots,229,2003,Trans-Neon Orange,2 +Designer Sets,Mini Robots,229,2003,Trans-Green,1 +Designer Sets,Mini Robots,229,2003,Trans-Dark Blue,1 +Designer Sets,Mini Robots,229,2003,Red,17 +Designer Sets,Mini Robots,229,2003,Black,24 +Designer Sets,Mini Robots,229,2003,Orange,3 +Designer Sets,Micro Wheels,216,2003,Trans-Yellow,1 +Designer Sets,Micro Wheels,216,2003,Dark Gray,15 +Designer Sets,Micro Wheels,216,2003,Light Gray,4 +Designer Sets,Micro Wheels,216,2003,Red,1 +Designer Sets,Micro Wheels,216,2003,Trans-Clear,4 +Designer Sets,Micro Wheels,216,2003,Trans-Red,1 +Designer Sets,Micro Wheels,216,2003,Yellow,32 +Designer Sets,Micro Wheels,216,2003,Black,25 +Designer Sets,High Flyers,197,2003,Blue,14 +Designer Sets,High Flyers,197,2003,Light Gray,15 +Designer Sets,High Flyers,197,2003,Medium Blue,6 +Designer Sets,High Flyers,197,2003,Red,2 +Designer Sets,High Flyers,197,2003,Trans-Green,1 +Designer Sets,High Flyers,197,2003,Trans-Black,1 +Designer Sets,High Flyers,197,2003,Trans-Red,1 +Designer Sets,High Flyers,197,2003,Trans-Medium Blue,1 +Designer Sets,High Flyers,197,2003,White,30 +Designer Sets,High Flyers,197,2003,Black,7 +Designer Sets,High Flyers,197,2003,Trans-Dark Blue,1 +Designer Sets,High Flyers,197,2003,Trans-Yellow,1 +Designer Sets,Sky Squad,129,2003,Trans-Black,1 +Designer Sets,Sky Squad,129,2003,Trans-Clear,1 +Designer Sets,Sky Squad,129,2003,Trans-Green,1 +Designer Sets,Sky Squad,129,2003,Trans-Medium Blue,1 +Designer Sets,Sky Squad,129,2003,Trans-Neon Orange,1 +Designer Sets,Sky Squad,129,2003,Trans-Red,1 +Designer Sets,Sky Squad,129,2003,Trans-Yellow,1 +Designer Sets,Sky Squad,129,2003,White,10 +Designer Sets,Sky Squad,129,2003,Light Gray,14 +Designer Sets,Sky Squad,129,2003,Black,4 +Designer Sets,Sky Squad,129,2003,Blue,16 +Designer Sets,Sky Squad,129,2003,Medium Blue,9 +Designer Sets,Sky Squad,129,2003,Red,1 +Designer Sets,Little Creations,110,2003,Trans-Red,1 +Designer Sets,Little Creations,110,2003,Red,1 +Designer Sets,Little Creations,110,2003,Orange,1 +Designer Sets,Little Creations,110,2003,Medium Blue,7 +Designer Sets,Little Creations,110,2003,Dark Gray,1 +Designer Sets,Little Creations,110,2003,Blue,20 +Designer Sets,Little Creations,110,2003,Black,10 +Designer Sets,Little Creations,110,2003,Yellow,7 +Designer Sets,Little Creations,110,2003,White,5 +Designer Sets,Orange Fish,43,2003,Black,3 +Designer Sets,Orange Fish,43,2003,Green,3 +Designer Sets,Orange Fish,43,2003,Orange,6 +Designer Sets,Orange Fish,43,2003,Yellow,1 +Designer Sets,Orange Fish,43,2003,White,2 +Designer Sets,Orange Fish,43,2003,Red,8 +Designer Sets,Orange Fish,43,2003,Trans-Neon Green,1 +Designer Sets,Yellow Truck (Box version) - ANA Promotion,36,2003,Trans-Clear,1 +Designer Sets,Yellow Truck (Box version) - ANA Promotion,36,2003,Trans-Red,1 +Designer Sets,Yellow Truck (Box version) - ANA Promotion,36,2003,Trans-Yellow,1 +Designer Sets,Yellow Truck (Box version) - ANA Promotion,36,2003,Yellow,4 +Designer Sets,Yellow Truck (Box version) - ANA Promotion,36,2003,Black,5 +Designer Sets,Yellow Truck (Box version) - ANA Promotion,36,2003,Dark Gray,2 +Designer Sets,Yellow Truck (Box version) - ANA Promotion,36,2003,Light Gray,5 +Designer Sets,Yellow Truck (Polybag),34,2003,Black,5 +Designer Sets,Yellow Truck (Polybag),34,2003,Dark Gray,2 +Designer Sets,Yellow Truck (Polybag),34,2003,Light Gray,5 +Designer Sets,Yellow Truck (Polybag),34,2003,Trans-Clear,1 +Designer Sets,Yellow Truck (Polybag),34,2003,Trans-Red,1 +Designer Sets,Yellow Truck (Polybag),34,2003,Trans-Yellow,1 +Designer Sets,Yellow Truck (Polybag),34,2003,Yellow,4 +Designer Sets,Small Red Helicopter (Polybag),28,2003,Black,1 +Designer Sets,Small Red Helicopter (Polybag),28,2003,Dark Gray,2 +Designer Sets,Small Red Helicopter (Polybag),28,2003,Red,10 +Designer Sets,Small Red Helicopter (Polybag),28,2003,Trans-Clear,1 +Designer Sets,Small Red Helicopter (Polybag),28,2003,Trans-Yellow,1 +Designer Sets,Small Red Helicopter (Polybag),28,2003,Light Gray,4 +Designer Sets,Robots,24,2003,White,1 +Designer Sets,Robots,24,2003,Trans-Neon Orange,1 +Designer Sets,Robots,24,2003,Medium Blue,1 +Designer Sets,Robots,24,2003,Light Gray,3 +Designer Sets,Robots,24,2003,Dark Gray,1 +Designer Sets,Robots,24,2003,Blue,5 +Designer Sets,Robots,24,2003,Black,2 +Designer Sets,Robots - ANA Promotion,23,2003,Black,2 +Designer Sets,Robots - ANA Promotion,23,2003,White,1 +Designer Sets,Robots - ANA Promotion,23,2003,Trans-Neon Orange,1 +Designer Sets,Robots - ANA Promotion,23,2003,Medium Blue,1 +Designer Sets,Robots - ANA Promotion,23,2003,Light Gray,3 +Designer Sets,Robots - ANA Promotion,23,2003,Dark Gray,1 +Designer Sets,Robots - ANA Promotion,23,2003,Blue,5 +Designer Sets,Wild Hunters,630,2005,Reddish Brown,19 +Designer Sets,Wild Hunters,630,2005,Light Bluish Gray,27 +Designer Sets,Wild Hunters,630,2005,Green,14 +Designer Sets,Wild Hunters,630,2005,Dark Red,7 +Designer Sets,Wild Hunters,630,2005,Dark Orange,8 +Designer Sets,Wild Hunters,630,2005,Blue,1 +Designer Sets,Wild Hunters,630,2005,Black,27 +Designer Sets,Wild Hunters,630,2005,Dark Bluish Gray,15 +Designer Sets,Wild Hunters,630,2005,Yellow,2 +Designer Sets,Wild Hunters,630,2005,Tan,44 +Designer Sets,Wild Hunters,630,2005,Trans-Dark Blue,1 +Designer Sets,Wild Hunters,630,2005,Trans-Neon Green,1 +Designer Sets,Wild Hunters,630,2005,White,9 +Designer Sets,Ocean Odyssey,623,2005,Light Bluish Gray,17 +Designer Sets,Ocean Odyssey,623,2005,Trans-Clear,1 +Designer Sets,Ocean Odyssey,623,2005,Black,23 +Designer Sets,Ocean Odyssey,623,2005,Dark Bluish Gray,29 +Designer Sets,Ocean Odyssey,623,2005,Yellow,66 +Designer Sets,Ocean Odyssey,623,2005,Blue,1 +Designer Sets,Ocean Odyssey,623,2005,White,2 +Designer Sets,Ocean Odyssey,623,2005,Trans-Black,5 +Designer Sets,Ocean Odyssey,623,2005,Tan,1 +Designer Sets,Ocean Odyssey,623,2005,Red,4 +Designer Sets,Gear Grinders,279,2005,Red,32 +Designer Sets,Gear Grinders,279,2005,Trans-Black,7 +Designer Sets,Gear Grinders,279,2005,Trans-Clear,2 +Designer Sets,Gear Grinders,279,2005,Trans-Neon Orange,1 +Designer Sets,Gear Grinders,279,2005,Trans-Red,3 +Designer Sets,Gear Grinders,279,2005,White,2 +Designer Sets,Gear Grinders,279,2005,Tan,4 +Designer Sets,Gear Grinders,279,2005,Black,17 +Designer Sets,Gear Grinders,279,2005,Dark Bluish Gray,4 +Designer Sets,Gear Grinders,279,2005,Light Bluish Gray,7 +Designer Sets,Gear Grinders,279,2005,Metallic Silver,3 +Designer Sets,Robo Platoon,219,2005,Trans-Red,1 +Designer Sets,Robo Platoon,219,2005,Trans-Yellow,1 +Designer Sets,Robo Platoon,219,2005,Trans-Neon Orange,1 +Designer Sets,Robo Platoon,219,2005,Black,18 +Designer Sets,Robo Platoon,219,2005,Blue,12 +Designer Sets,Robo Platoon,219,2005,Chrome Silver,1 +Designer Sets,Robo Platoon,219,2005,Dark Blue,6 +Designer Sets,Robo Platoon,219,2005,Dark Bluish Gray,12 +Designer Sets,Robo Platoon,219,2005,Dark Red,4 +Designer Sets,Robo Platoon,219,2005,Light Bluish Gray,4 +Designer Sets,Robo Platoon,219,2005,Red,9 +Designer Sets,Robo Platoon,219,2005,Reddish Brown,3 +Designer Sets,Robo Platoon,219,2005,Tan,9 +Designer Sets,Lion,42,2005,Black,1 +Designer Sets,Lion,42,2005,Red,1 +Designer Sets,Lion,42,2005,White,1 +Designer Sets,Lion,42,2005,Reddish Brown,4 +Designer Sets,Lion,42,2005,Tan,13 +Designer Sets,Giraffe,37,2005,Tan,12 +Designer Sets,Giraffe,37,2005,Reddish Brown,6 +Designer Sets,Scorpion,37,2005,Black,4 +Designer Sets,Scorpion,37,2005,Dark Bluish Gray,3 +Designer Sets,Scorpion,37,2005,Light Bluish Gray,1 +Designer Sets,Scorpion,37,2005,Orange,6 +Designer Sets,Scorpion,37,2005,Trans-Red,1 +Designer Sets,Elephant (Life cereal promotion),34,2005,White,1 +Designer Sets,Elephant (Life cereal promotion),34,2005,Black,2 +Designer Sets,Elephant (Life cereal promotion),34,2005,Dark Bluish Gray,5 +Designer Sets,Elephant (Life cereal promotion),34,2005,Light Bluish Gray,10 +Designer Sets,Crab,32,2005,Dark Bluish Gray,2 +Designer Sets,Crab,32,2005,Black,5 +Designer Sets,Crab,32,2005,Orange,1 +Designer Sets,Crab,32,2005,Red,5 +Designer Sets,Crab,32,2005,Light Bluish Gray,3 +Designer Sets,Bird,28,2005,Yellow,8 +Designer Sets,Bird,28,2005,White,1 +Designer Sets,Bird,28,2005,Red,3 +Designer Sets,Bird,28,2005,Orange,2 +Designer Sets,Bird,28,2005,Black,5 +DFB Minifigures,André Schürrle (9),6,2016,Black,1 +DFB Minifigures,André Schürrle (9),6,2016,Light Flesh,1 +DFB Minifigures,André Schürrle (9),6,2016,Tan,1 +DFB Minifigures,André Schürrle (9),6,2016,White,3 +DFB Minifigures,Bastian Schweinsteiger (7),6,2016,Black,1 +DFB Minifigures,Bastian Schweinsteiger (7),6,2016,Light Flesh,1 +DFB Minifigures,Bastian Schweinsteiger (7),6,2016,Tan,1 +DFB Minifigures,Bastian Schweinsteiger (7),6,2016,White,3 +DFB Minifigures,Benedikt Höwedes (4),6,2016,Black,1 +DFB Minifigures,Benedikt Höwedes (4),6,2016,Light Flesh,1 +DFB Minifigures,Benedikt Höwedes (4),6,2016,Medium Dark Flesh,1 +DFB Minifigures,Benedikt Höwedes (4),6,2016,White,3 +DFB Minifigures,Christoph Kramer (20),6,2016,Black,1 +DFB Minifigures,Christoph Kramer (20),6,2016,Light Flesh,1 +DFB Minifigures,Christoph Kramer (20),6,2016,Medium Dark Flesh,1 +DFB Minifigures,Christoph Kramer (20),6,2016,White,3 +DFB Minifigures,Jérôme Boateng (17),6,2016,Black,2 +DFB Minifigures,Jérôme Boateng (17),6,2016,Reddish Brown,1 +DFB Minifigures,Jérôme Boateng (17),6,2016,White,3 +DFB Minifigures,Joachim Löw,6,2016,Black,1 +DFB Minifigures,Joachim Löw,6,2016,Dark Blue,2 +DFB Minifigures,Joachim Löw,6,2016,Light Flesh,1 +DFB Minifigures,Joachim Löw,6,2016,White,2 +DFB Minifigures,Manuel Neuer (1),6,2016,Black,1 +DFB Minifigures,Manuel Neuer (1),6,2016,Dark Tan,1 +DFB Minifigures,Manuel Neuer (1),6,2016,Light Flesh,1 +DFB Minifigures,Manuel Neuer (1),6,2016,White,3 +DFB Minifigures,Marco Reus (21),6,2016,Black,1 +DFB Minifigures,Marco Reus (21),6,2016,Light Flesh,1 +DFB Minifigures,Marco Reus (21),6,2016,Medium Dark Flesh,1 +DFB Minifigures,Marco Reus (21),6,2016,White,3 +DFB Minifigures,Mario Götze (19),6,2016,Black,1 +DFB Minifigures,Mario Götze (19),6,2016,Light Flesh,1 +DFB Minifigures,Mario Götze (19),6,2016,Reddish Brown,1 +DFB Minifigures,Mario Götze (19),6,2016,White,3 +DFB Minifigures,Mats Hummels (5),6,2016,Black,2 +DFB Minifigures,Mats Hummels (5),6,2016,Flesh,1 +DFB Minifigures,Mats Hummels (5),6,2016,White,3 +DFB Minifigures,Max Kruse (23),6,2016,Black,1 +DFB Minifigures,Max Kruse (23),6,2016,Dark Tan,1 +DFB Minifigures,Max Kruse (23),6,2016,Light Flesh,1 +DFB Minifigures,Max Kruse (23),6,2016,White,3 +DFB Minifigures,Mesut Özil (8),6,2016,Black,2 +DFB Minifigures,Mesut Özil (8),6,2016,Flesh,1 +DFB Minifigures,Mesut Özil (8),6,2016,White,3 +DFB Minifigures,Sami Khedira (6),6,2016,Black,2 +DFB Minifigures,Sami Khedira (6),6,2016,Flesh,1 +DFB Minifigures,Sami Khedira (6),6,2016,White,3 +DFB Minifigures,Shkodran Mustafi (2),6,2016,Black,1 +DFB Minifigures,Shkodran Mustafi (2),6,2016,Light Flesh,1 +DFB Minifigures,Shkodran Mustafi (2),6,2016,Reddish Brown,1 +DFB Minifigures,Shkodran Mustafi (2),6,2016,White,3 +DFB Minifigures,Thomas Müller (13),6,2016,Black,1 +DFB Minifigures,Thomas Müller (13),6,2016,Dark Tan,1 +DFB Minifigures,Thomas Müller (13),6,2016,Light Flesh,1 +DFB Minifigures,Thomas Müller (13),6,2016,White,3 +DFB Minifigures,Toni Kroos (18),6,2016,Black,1 +DFB Minifigures,Toni Kroos (18),6,2016,Light Flesh,1 +DFB Minifigures,Toni Kroos (18),6,2016,Medium Dark Flesh,1 +DFB Minifigures,Toni Kroos (18),6,2016,White,3 +Dimensions,Dimensions Starter Pack,265,2015,Black,27 +Dimensions,Dimensions Starter Pack,265,2015,Dark Blue,12 +Dimensions,Dimensions Starter Pack,265,2015,Dark Bluish Gray,13 +Dimensions,Dimensions Starter Pack,265,2015,Flat Silver,2 +Dimensions,Dimensions Starter Pack,265,2015,Light Bluish Gray,20 +Dimensions,Dimensions Starter Pack,265,2015,Light Flesh,2 +Dimensions,Dimensions Starter Pack,265,2015,Medium Azure,6 +Dimensions,Dimensions Starter Pack,265,2015,Orange,1 +Dimensions,Dimensions Starter Pack,265,2015,Reddish Brown,1 +Dimensions,Dimensions Starter Pack,265,2015,Tan,1 +Dimensions,Dimensions Starter Pack,265,2015,Trans-Light Blue,10 +Dimensions,Dimensions Starter Pack,265,2015,Trans-Orange,3 +Dimensions,Dimensions Starter Pack,265,2015,Trans-Purple,6 +Dimensions,Dimensions Starter Pack,265,2015,Yellow,3 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Yellow,3 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Trans-Purple,6 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Trans-Orange,3 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Trans-Light Blue,10 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Tan,1 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Orange,1 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Medium Azure,6 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Light Flesh,2 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Light Bluish Gray,20 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Flat Silver,2 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Dark Bluish Gray,13 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Dark Blue,12 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Medium Azure,6 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Light Flesh,2 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Light Bluish Gray,20 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Flat Silver,2 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Dark Bluish Gray,13 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Dark Blue,12 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Black,27 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Yellow,3 +Dimensions,Starter Pack: PS3,265,2015,Light Flesh,2 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Black,27 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Trans-Purple,6 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Trans-Orange,3 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Trans-Light Blue,10 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Tan,1 +Dimensions,LEGO® DIMENSIONS™ Wii U™ Starter Pack,265,2015,Black,27 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Orange,1 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Medium Azure,6 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Black,27 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Dark Blue,12 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Dark Bluish Gray,13 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Light Bluish Gray,20 +Dimensions,Starter Pack: PS3,265,2015,Medium Azure,6 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Light Flesh,2 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Medium Azure,6 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Orange,1 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Tan,1 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Trans-Light Blue,10 +Dimensions,Starter Pack: PS3,265,2015,Yellow,3 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Trans-Orange,3 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Trans-Purple,6 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Yellow,3 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Light Flesh,2 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Light Bluish Gray,20 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Flat Silver,2 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Dark Bluish Gray,13 +Dimensions,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,265,2015,Dark Blue,12 +Dimensions,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,265,2015,Flat Silver,2 +Dimensions,Starter Pack: PS3,265,2015,Trans-Purple,6 +Dimensions,Starter Pack: PS3,265,2015,Trans-Orange,3 +Dimensions,Starter Pack: PS3,265,2015,Trans-Light Blue,10 +Dimensions,Starter Pack: PS3,265,2015,Tan,1 +Dimensions,Starter Pack: PS3,265,2015,Reddish Brown,1 +Dimensions,Starter Pack: PS3,265,2015,Orange,1 +Dimensions,Starter Pack: PS3,265,2015,Light Bluish Gray,20 +Dimensions,Starter Pack: PS3,265,2015,Flat Silver,2 +Dimensions,Starter Pack: PS3,265,2015,Dark Bluish Gray,13 +Dimensions,Starter Pack: PS3,265,2015,Dark Blue,12 +Dimensions,Starter Pack: PS3,265,2015,Black,27 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Yellow,3 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Trans-Purple,6 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Trans-Orange,3 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Trans-Light Blue,10 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Tan,1 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ Xbox One Starter Pack,265,2015,Orange,1 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,White,1 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Trans-Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Medium Dark Flesh,2 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Light Flesh,1 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Light Bluish Gray,10 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Trans-Dark Blue,1 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Dark Bluish Gray,4 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Dark Green,4 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Dark Blue,4 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Blue,6 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Black,3 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Sand Blue,1 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Sand Green,6 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Trans-Clear,2 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Olive Green,1 +Dimensions,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,103,2015,Trans-Light Blue,7 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Red,8 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Sand Green,1 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Trans-Orange,3 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Trans-Red,1 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Yellow,2 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Pearl Gold,9 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Black,15 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Blue,1 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Dark Bluish Gray,4 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Dark Brown,1 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Light Bluish Gray,4 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Trans-Black,3 +Dimensions,LEGO® DIMENSIONS® NINJAGO™ Team Pack,98,2015,Trans-Light Blue,4 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Trans-Clear,2 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Trans-Red,1 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,White,2 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Yellow,2 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Flat Silver,1 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Dark Orange,1 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Dark Blue,2 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Bright Pink,8 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Medium Lavender,6 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Black,4 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Dark Bluish Gray,4 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Medium Blue,1 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Light Bluish Gray,8 +Dimensions,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,96,2015,Red,1 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Dark Bluish Gray,3 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Dark Brown,1 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Dark Pink,1 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Light Bluish Gray,13 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Light Flesh,1 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Medium Blue,1 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Red,2 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Trans-Black,2 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Trans-Clear,2 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Trans-Light Blue,5 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Trans-Orange,1 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,White,4 +Dimensions,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,94,2015,Black,8 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Light Bluish Gray,6 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Trans-Dark Pink,1 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Black,11 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Trans-Dark Blue,1 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Orange,1 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Light Flesh,1 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Dark Bluish Gray,1 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Dark Brown,1 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Trans-Light Blue,5 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Trans-Orange,1 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,Trans-Red,2 +Dimensions,LEGO® DIMENSIONS™ Portal® 2 Level Pack,85,2015,White,18 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Dark Red,1 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Medium Dark Flesh,3 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Red,2 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Tan,4 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Trans-Clear,1 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Trans-Light Blue,4 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Trans-Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,White,2 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Yellow,2 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Light Bluish Gray,1 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Light Flesh,1 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Green,1 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Black,3 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Bright Pink,1 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Medium Azure,5 +Dimensions,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,84,2015,Lime,11 +Dimensions,LEGO® DIMENSIONS™ Doctor Who Level Pack,82,2015,Trans-Clear,1 +Dimensions,LEGO® DIMENSIONS™ Doctor Who Level Pack,82,2015,Light Flesh,1 +Dimensions,LEGO® DIMENSIONS™ Doctor Who Level Pack,82,2015,Pearl Gold,1 +Dimensions,LEGO® DIMENSIONS™ Doctor Who Level Pack,82,2015,Trans-Red,4 +Dimensions,LEGO® DIMENSIONS™ Doctor Who Level Pack,82,2015,Trans-Light Blue,4 +Dimensions,LEGO® DIMENSIONS™ Doctor Who Level Pack,82,2015,Black,4 +Dimensions,LEGO® DIMENSIONS™ Doctor Who Level Pack,82,2015,Dark Blue,6 +Dimensions,LEGO® DIMENSIONS™ Doctor Who Level Pack,82,2015,Dark Tan,2 +Dimensions,LEGO® DIMENSIONS™ Doctor Who Level Pack,82,2015,Flat Silver,1 +Dimensions,LEGO® DIMENSIONS™ Doctor Who Level Pack,82,2015,Light Bluish Gray,15 +Dimensions,LEGO® DIMENSIONS™ Bad Cop Fun Pack,62,2015,Dark Bluish Gray,1 +Dimensions,LEGO® DIMENSIONS™ Bad Cop Fun Pack,62,2015,Light Bluish Gray,4 +Dimensions,LEGO® DIMENSIONS™ Bad Cop Fun Pack,62,2015,Trans-Black,3 +Dimensions,LEGO® DIMENSIONS™ Bad Cop Fun Pack,62,2015,Trans-Dark Blue,1 +Dimensions,LEGO® DIMENSIONS™ Bad Cop Fun Pack,62,2015,Trans-Light Blue,4 +Dimensions,LEGO® DIMENSIONS™ Bad Cop Fun Pack,62,2015,Trans-Red,2 +Dimensions,LEGO® DIMENSIONS™ Bad Cop Fun Pack,62,2015,Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Bad Cop Fun Pack,62,2015,White,3 +Dimensions,LEGO® DIMENSIONS™ Bad Cop Fun Pack,62,2015,Black,15 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Flat Silver,1 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Light Bluish Gray,2 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Pearl Dark Gray,1 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Pearl Gold,5 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Red,7 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Trans-Dark Blue,2 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Black,2 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Dark Blue,5 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Bright Light Blue,1 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,White,11 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Dark Red,1 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Dark Bluish Gray,2 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Red,1 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Blue,1 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Dark Bluish Gray,1 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Flat Silver,1 +Dimensions,LEGO® DIMENSIONS™ Nya Fun Pack,59,2015,Black,10 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Light Bluish Gray,6 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Pearl Gold,3 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Trans-Orange,4 +Dimensions,LEGO® DIMENSIONS™ Eris Fun Pack,59,2015,Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Light Aqua,1 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Dark Purple,1 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Dark Pink,2 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Bright Pink,4 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Bright Light Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Bright Light Blue,1 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Trans-Light Blue,4 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Red,1 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,White,13 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Yellowish Green,1 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Orange,1 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Medium Azure,3 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Yellow,3 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Magenta,1 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Trans-Dark Blue,1 +Dimensions,LEGO® DIMENSIONS™ Unikitty Fun Pack,58,2015,Lime,2 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Trans-Dark Blue,1 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,White,1 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Trans-Orange,3 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Tan,1 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Reddish Brown,2 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Red,2 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Pearl Gold,3 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Light Bluish Gray,4 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Dark Red,1 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Dark Brown,2 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Bright Light Orange,3 +Dimensions,LEGO® DIMENSIONS™ Laval Fun Pack,57,2015,Black,5 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Dark Red,1 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Black,6 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Dark Bluish Gray,4 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Dark Brown,2 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Light Bluish Gray,8 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Light Flesh,1 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Pearl Dark Gray,1 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Reddish Brown,4 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Tan,1 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Gimli Fun Pack,56,2015,Trans-Orange,1 +Dimensions,LEGO® DIMENSIONS™ Fun Pack Emmet,55,2015,Orange,2 +Dimensions,LEGO® DIMENSIONS™ Fun Pack Emmet,55,2015,Dark Bluish Gray,3 +Dimensions,LEGO® DIMENSIONS™ Fun Pack Emmet,55,2015,Light Bluish Gray,8 +Dimensions,LEGO® DIMENSIONS™ Fun Pack Emmet,55,2015,Trans-Clear,1 +Dimensions,LEGO® DIMENSIONS™ Fun Pack Emmet,55,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Fun Pack Emmet,55,2015,Trans-Orange,1 +Dimensions,LEGO® DIMENSIONS™ Fun Pack Emmet,55,2015,Yellow,9 +Dimensions,LEGO® DIMENSIONS™ Fun Pack Emmet,55,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ Fun Pack Emmet,55,2015,Trans-Black,2 +Dimensions,LEGO® DIMENSIONS™ Fun Pack Emmet,55,2015,Black,7 +Dimensions,LEGO® DIMENSIONS™ Cyborg™ Fun Pack,50,2015,Dark Bluish Gray,5 +Dimensions,LEGO® DIMENSIONS™ Cyborg™ Fun Pack,50,2015,Light Bluish Gray,11 +Dimensions,LEGO® DIMENSIONS™ Cyborg™ Fun Pack,50,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ Cyborg™ Fun Pack,50,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Cyborg™ Fun Pack,50,2015,Trans-Red,2 +Dimensions,LEGO® DIMENSIONS™ Cyborg™ Fun Pack,50,2015,Flat Silver,2 +Dimensions,LEGO® DIMENSIONS™ Cyborg™ Fun Pack,50,2015,Black,8 +Dimensions,LEGO® DIMENSIONS™ Jay Fun Pack,48,2015,Dark Bluish Gray,2 +Dimensions,LEGO® DIMENSIONS™ Jay Fun Pack,48,2015,Flat Silver,1 +Dimensions,LEGO® DIMENSIONS™ Jay Fun Pack,48,2015,Light Bluish Gray,2 +Dimensions,LEGO® DIMENSIONS™ Jay Fun Pack,48,2015,Pearl Gold,4 +Dimensions,LEGO® DIMENSIONS™ Jay Fun Pack,48,2015,Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Jay Fun Pack,48,2015,Trans-Light Blue,4 +Dimensions,LEGO® DIMENSIONS™ Jay Fun Pack,48,2015,Black,6 +Dimensions,LEGO® DIMENSIONS™ Jay Fun Pack,48,2015,Blue,8 +Dimensions,LEGO® DIMENSIONS™ Benny Fun Pack ,46,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Benny Fun Pack ,46,2015,Dark Bluish Gray,3 +Dimensions,LEGO® DIMENSIONS™ Benny Fun Pack ,46,2015,Blue,9 +Dimensions,LEGO® DIMENSIONS™ Benny Fun Pack ,46,2015,Light Bluish Gray,9 +Dimensions,LEGO® DIMENSIONS™ Benny Fun Pack ,46,2015,Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Zane Fun Pack,46,2015,Black,2 +Dimensions,LEGO® DIMENSIONS™ Zane Fun Pack,46,2015,Blue,4 +Dimensions,LEGO® DIMENSIONS™ Zane Fun Pack,46,2015,Flat Silver,3 +Dimensions,LEGO® DIMENSIONS™ Zane Fun Pack,46,2015,Pearl Gold,4 +Dimensions,LEGO® DIMENSIONS™ Zane Fun Pack,46,2015,Trans-Black,1 +Dimensions,LEGO® DIMENSIONS™ Zane Fun Pack,46,2015,Trans-Clear,1 +Dimensions,LEGO® DIMENSIONS™ Zane Fun Pack,46,2015,Trans-Light Blue,4 +Dimensions,LEGO® DIMENSIONS™ Zane Fun Pack,46,2015,Trans-Orange,1 +Dimensions,LEGO® DIMENSIONS™ Zane Fun Pack,46,2015,White,9 +Dimensions,LEGO® DIMENSIONS™ Benny Fun Pack ,46,2015,Trans-Yellow,2 +Dimensions,LEGO® DIMENSIONS™ Benny Fun Pack ,46,2015,Trans-Red,2 +Dimensions,LEGO® DIMENSIONS™ Zane Fun Pack,46,2015,Light Bluish Gray,4 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,Red,3 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,Pearl Gold,3 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,Olive Green,5 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,Light Bluish Gray,3 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,Dark Tan,1 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,Dark Green,5 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,Dark Bluish Gray,3 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,White,2 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,Trans-Red,1 +Dimensions,LEGO® DIMENSIONS™ Cragger Fun Pack,45,2015,Trans-Orange,3 +Dimensions,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,41,2015,Pearl Gold,1 +Dimensions,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,41,2015,Red,2 +Dimensions,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,41,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,41,2015,Trans-Red,1 +Dimensions,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,41,2015,Trans-Clear,8 +Dimensions,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,41,2015,Black,1 +Dimensions,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,41,2015,Light Bluish Gray,4 +Dimensions,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,41,2015,Light Flesh,1 +Dimensions,LEGO® DIMENSIONS™ Gollum Fun Pack,39,2015,Black,6 +Dimensions,LEGO® DIMENSIONS™ Gollum Fun Pack,39,2015,White,1 +Dimensions,LEGO® DIMENSIONS™ Gollum Fun Pack,39,2015,Trans-Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Gollum Fun Pack,39,2015,Tan,2 +Dimensions,LEGO® DIMENSIONS™ Gollum Fun Pack,39,2015,Reddish Brown,2 +Dimensions,LEGO® DIMENSIONS™ Gollum Fun Pack,39,2015,Light Bluish Gray,1 +Dimensions,LEGO® DIMENSIONS™ Gollum Fun Pack,39,2015,Dark Brown,1 +Dimensions,LEGO® DIMENSIONS™ Gollum Fun Pack,39,2015,Dark Bluish Gray,1 +Dimensions,LEGO® DIMENSIONS™ Gollum Fun Pack,39,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Gollum Fun Pack,39,2015,Flat Silver,1 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Medium Dark Flesh,1 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Lime,2 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Light Bluish Gray,3 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Flat Silver,1 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Dark Bluish Gray,1 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Bright Pink,1 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Bright Light Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,38,2015,Light Bluish Gray,1 +Dimensions,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,38,2015,Lime,1 +Dimensions,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,38,2015,Medium Blue,2 +Dimensions,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,38,2015,Pearl Gold,2 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,38,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,38,2015,Trans-Clear,2 +Dimensions,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,38,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,38,2015,Dark Bluish Gray,6 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Yellow,4 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,White,1 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Red,3 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Orange,1 +Dimensions,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,38,2015,Black,5 +Dimensions,LEGO® DIMENSIONS® Krusty Fun Pack,38,2015,Black,3 +Dimensions,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,38,2015,Blue,3 +Dimensions,LEGO® DIMENSIONS™ Legolas Fun Pack,36,2015,Trans-Light Blue,4 +Dimensions,LEGO® DIMENSIONS™ Legolas Fun Pack,36,2015,Flat Silver,2 +Dimensions,LEGO® DIMENSIONS™ Legolas Fun Pack,36,2015,Dark Brown,2 +Dimensions,LEGO® DIMENSIONS™ Legolas Fun Pack,36,2015,Bright Light Yellow,1 +Dimensions,LEGO® DIMENSIONS™ Legolas Fun Pack,36,2015,Pearl Gold,2 +Dimensions,LEGO® DIMENSIONS™ Legolas Fun Pack,36,2015,Black,5 +Dimensions,LEGO® DIMENSIONS™ Legolas Fun Pack,36,2015,Olive Green,1 +Dimensions,LEGO® DIMENSIONS™ Legolas Fun Pack,36,2015,Light Flesh,1 +Dimensions,LEGO® DIMENSIONS™ Legolas Fun Pack,36,2015,Light Bluish Gray,2 +Dimensions,LEGO® DIMENSIONS™ Legolas Fun Pack,36,2015,Reddish Brown,8 +Dimensions,LEGO® DIMENSIONS™ Bart Fun Pack,34,2015,Black,1 +Dimensions,LEGO® DIMENSIONS™ Bart Fun Pack,34,2015,Yellow,4 +Dimensions,LEGO® DIMENSIONS™ Bart Fun Pack,34,2015,Tan,3 +Dimensions,LEGO® DIMENSIONS™ Bart Fun Pack,34,2015,Reddish Brown,1 +Dimensions,LEGO® DIMENSIONS™ Bart Fun Pack,34,2015,Red,2 +Dimensions,LEGO® DIMENSIONS™ Bart Fun Pack,34,2015,Medium Lavender,1 +Dimensions,LEGO® DIMENSIONS™ Bart Fun Pack,34,2015,Light Bluish Gray,3 +Dimensions,LEGO® DIMENSIONS™ Bart Fun Pack,34,2015,Dark Tan,3 +Dimensions,LEGO® DIMENSIONS™ Bart Fun Pack,34,2015,Trans-Light Blue,3 +Dimensions,LEGO® DIMENSIONS™ Bart Fun Pack,34,2015,Dark Azure,1 +Dimensions,Michael Knight and K.I.T.T. Knight Ryder Fun Pack,54,2017,Black,15 +Dimensions,Michael Knight and K.I.T.T. Knight Ryder Fun Pack,54,2017,Dark Brown,1 +Dimensions,Michael Knight and K.I.T.T. Knight Ryder Fun Pack,54,2017,Light Bluish Gray,2 +Dimensions,Michael Knight and K.I.T.T. Knight Ryder Fun Pack,54,2017,Sand Blue,1 +Dimensions,Michael Knight and K.I.T.T. Knight Ryder Fun Pack,54,2017,Trans-Black,3 +Dimensions,Michael Knight and K.I.T.T. Knight Ryder Fun Pack,54,2017,Trans-Red,1 +Dimensions,Michael Knight and K.I.T.T. Knight Ryder Fun Pack,54,2017,Trans-Yellow,3 +Dino,Dino Defense HQ,785,2012,Dark Brown,2 +Dino,Dino Defense HQ,785,2012,Dark Red,10 +Dino,Dino Defense HQ,785,2012,Green,4 +Dino,Dino Defense HQ,785,2012,Light Bluish Gray,31 +Dino,Dino Defense HQ,785,2012,Lime,1 +Dino,Dino Defense HQ,785,2012,Medium Dark Flesh,9 +Dino,Dino Defense HQ,785,2012,Olive Green,10 +Dino,Dino Defense HQ,785,2012,Trans-Neon Green,2 +Dino,Dino Defense HQ,785,2012,Red,5 +Dino,Dino Defense HQ,785,2012,Reddish Brown,6 +Dino,Dino Defense HQ,785,2012,Tan,8 +Dino,Dino Defense HQ,785,2012,Pearl Dark Gray,1 +Dino,Dino Defense HQ,785,2012,Trans-Clear,6 +Dino,Dino Defense HQ,785,2012,Trans-Green,1 +Dino,Dino Defense HQ,785,2012,Trans-Red,1 +Dino,Dino Defense HQ,785,2012,White,3 +Dino,Dino Defense HQ,785,2012,Yellow,37 +Dino,Dino Defense HQ,785,2012,Dark Tan,2 +Dino,Dino Defense HQ,785,2012,Black,32 +Dino,Dino Defense HQ,785,2012,Blue,2 +Dino,Dino Defense HQ,785,2012,Dark Bluish Gray,31 +Dino,T-Rex Hunter,474,2012,Olive Green,2 +Dino,T-Rex Hunter,474,2012,Lime,1 +Dino,T-Rex Hunter,474,2012,Light Bluish Gray,32 +Dino,T-Rex Hunter,474,2012,Green,1 +Dino,T-Rex Hunter,474,2012,Dark Tan,1 +Dino,T-Rex Hunter,474,2012,Dark Red,4 +Dino,T-Rex Hunter,474,2012,Dark Orange,7 +Dino,T-Rex Hunter,474,2012,Dark Bluish Gray,23 +Dino,T-Rex Hunter,474,2012,Blue,6 +Dino,T-Rex Hunter,474,2012,Black,28 +Dino,T-Rex Hunter,474,2012,[No Color],1 +Dino,T-Rex Hunter,474,2012,White,6 +Dino,T-Rex Hunter,474,2012,Trans-Red,1 +Dino,T-Rex Hunter,474,2012,Trans-Neon Green,1 +Dino,T-Rex Hunter,474,2012,Trans-Green,1 +Dino,T-Rex Hunter,474,2012,Trans-Clear,3 +Dino,T-Rex Hunter,474,2012,Tan,4 +Dino,T-Rex Hunter,474,2012,Yellow,38 +Dino,T-Rex Hunter,474,2012,Reddish Brown,4 +Dino,T-Rex Hunter,474,2012,Red,6 +Dino,T-Rex Hunter,474,2012,Pearl Dark Gray,1 +Dino,Triceratops Trapper,270,2012,Dark Red,4 +Dino,Triceratops Trapper,270,2012,Light Bluish Gray,11 +Dino,Triceratops Trapper,270,2012,Lime,1 +Dino,Triceratops Trapper,270,2012,Pearl Dark Gray,1 +Dino,Triceratops Trapper,270,2012,Red,3 +Dino,Triceratops Trapper,270,2012,Reddish Brown,4 +Dino,Triceratops Trapper,270,2012,Trans-Clear,2 +Dino,Triceratops Trapper,270,2012,Trans-Neon Green,2 +Dino,Triceratops Trapper,270,2012,Trans-Red,1 +Dino,Triceratops Trapper,270,2012,White,2 +Dino,Triceratops Trapper,270,2012,Yellow,19 +Dino,Triceratops Trapper,270,2012,Dark Tan,6 +Dino,Triceratops Trapper,270,2012,Black,19 +Dino,Triceratops Trapper,270,2012,Blue,1 +Dino,Triceratops Trapper,270,2012,Dark Bluish Gray,10 +Dino,Raptor Chase,258,2012,Bright Green,1 +Dino,Raptor Chase,258,2012,Dark Red,7 +Dino,Raptor Chase,258,2012,Dark Orange,1 +Dino,Raptor Chase,258,2012,Dark Bluish Gray,17 +Dino,Raptor Chase,258,2012,Lime,2 +Dino,Raptor Chase,258,2012,Light Bluish Gray,11 +Dino,Raptor Chase,258,2012,Blue,6 +Dino,Raptor Chase,258,2012,Green,1 +Dino,Raptor Chase,258,2012,[No Color],1 +Dino,Raptor Chase,258,2012,Dark Tan,3 +Dino,Raptor Chase,258,2012,Black,14 +Dino,Raptor Chase,258,2012,Olive Green,7 +Dino,Raptor Chase,258,2012,Pearl Dark Gray,1 +Dino,Raptor Chase,258,2012,Red,4 +Dino,Raptor Chase,258,2012,Reddish Brown,7 +Dino,Raptor Chase,258,2012,Tan,1 +Dino,Raptor Chase,258,2012,Trans-Clear,2 +Dino,Raptor Chase,258,2012,Trans-Neon Green,3 +Dino,Raptor Chase,258,2012,Trans-Orange,2 +Dino,Raptor Chase,258,2012,Trans-Red,1 +Dino,Raptor Chase,258,2012,White,2 +Dino,Raptor Chase,258,2012,Yellow,24 +Dino,Ocean Interceptor,221,2012,Trans-Orange,1 +Dino,Ocean Interceptor,221,2012,White,2 +Dino,Ocean Interceptor,221,2012,Yellow,22 +Dino,Ocean Interceptor,221,2012,Trans-Neon Green,3 +Dino,Ocean Interceptor,221,2012,Pearl Dark Gray,1 +Dino,Ocean Interceptor,221,2012,Olive Green,4 +Dino,Ocean Interceptor,221,2012,Lime,1 +Dino,Ocean Interceptor,221,2012,Light Bluish Gray,13 +Dino,Ocean Interceptor,221,2012,Green,1 +Dino,Ocean Interceptor,221,2012,Dark Red,4 +Dino,Ocean Interceptor,221,2012,Dark Green,3 +Dino,Ocean Interceptor,221,2012,Dark Bluish Gray,20 +Dino,Ocean Interceptor,221,2012,Blue,3 +Dino,Ocean Interceptor,221,2012,Black,6 +Dino,Ocean Interceptor,221,2012,Trans-Clear,1 +Dino,Ocean Interceptor,221,2012,Tan,2 +Dino,Ocean Interceptor,221,2012,Reddish Brown,2 +Dino,Ocean Interceptor,221,2012,Red,8 +Dino,Tower Takedown,136,2012,Pearl Dark Gray,1 +Dino,Tower Takedown,136,2012,Red,3 +Dino,Tower Takedown,136,2012,Reddish Brown,8 +Dino,Tower Takedown,136,2012,Tan,1 +Dino,Tower Takedown,136,2012,Trans-Clear,1 +Dino,Tower Takedown,136,2012,Trans-Neon Green,1 +Dino,Tower Takedown,136,2012,Trans-Yellow,1 +Dino,Tower Takedown,136,2012,White,1 +Dino,Tower Takedown,136,2012,Yellow,12 +Dino,Tower Takedown,136,2012,Medium Dark Flesh,3 +Dino,Tower Takedown,136,2012,Black,7 +Dino,Tower Takedown,136,2012,Blue,2 +Dino,Tower Takedown,136,2012,Dark Bluish Gray,11 +Dino,Tower Takedown,136,2012,Dark Red,7 +Dino,Tower Takedown,136,2012,Dark Tan,1 +Dino,Tower Takedown,136,2012,Flat Silver,1 +Dino,Tower Takedown,136,2012,Green,1 +Dino,Tower Takedown,136,2012,Light Bluish Gray,10 +Dino,Tower Takedown,136,2012,Lime,1 +Dino,Tower Takedown,136,2012,Olive Green,2 +Dino,Ambush Attack,80,2012,Blue,2 +Dino,Ambush Attack,80,2012,Dark Bluish Gray,7 +Dino,Ambush Attack,80,2012,Dark Red,2 +Dino,Ambush Attack,80,2012,Dark Tan,3 +Dino,Ambush Attack,80,2012,Green,2 +Dino,Ambush Attack,80,2012,Light Bluish Gray,6 +Dino,Ambush Attack,80,2012,Lime,2 +Dino,Ambush Attack,80,2012,Orange,1 +Dino,Ambush Attack,80,2012,Pearl Dark Gray,1 +Dino,Ambush Attack,80,2012,Pearl Light Gray,1 +Dino,Ambush Attack,80,2012,Black,4 +Dino,Ambush Attack,80,2012,Red,1 +Dino,Ambush Attack,80,2012,Reddish Brown,3 +Dino,Ambush Attack,80,2012,Tan,1 +Dino,Ambush Attack,80,2012,Trans-Neon Green,1 +Dino,Ambush Attack,80,2012,Trans-Orange,2 +Dino,Ambush Attack,80,2012,Trans-Red,1 +Dino,Ambush Attack,80,2012,Yellow,7 +Dino 2010,Dino Air Tracker,710,2005,Dark Green,1 +Dino 2010,Dino Air Tracker,710,2005,Dark Red,23 +Dino 2010,Dino Air Tracker,710,2005,Light Bluish Gray,40 +Dino 2010,Dino Air Tracker,710,2005,White,5 +Dino 2010,Dino Air Tracker,710,2005,Red,4 +Dino 2010,Dino Air Tracker,710,2005,Tan,39 +Dino 2010,Dino Air Tracker,710,2005,Trans-Black,3 +Dino 2010,Dino Air Tracker,710,2005,Trans-Clear,1 +Dino 2010,Dino Air Tracker,710,2005,Trans-Dark Blue,1 +Dino 2010,Dino Air Tracker,710,2005,Trans-Neon Green,1 +Dino 2010,Dino Air Tracker,710,2005,Trans-Red,2 +Dino 2010,Dino Air Tracker,710,2005,Trans-Yellow,1 +Dino 2010,Dino Air Tracker,710,2005,Lime,4 +Dino 2010,Dino Air Tracker,710,2005,Yellow,3 +Dino 2010,Dino Air Tracker,710,2005,[No Color],1 +Dino 2010,Dino Air Tracker,710,2005,Black,58 +Dino 2010,Dino Air Tracker,710,2005,Blue,5 +Dino 2010,Dino Air Tracker,710,2005,Dark Bluish Gray,41 +Dino 2010,Dino Track Transport,351,2005,Dark Bluish Gray,24 +Dino 2010,Dino Track Transport,351,2005,Blue,1 +Dino 2010,Dino Track Transport,351,2005,Black,30 +Dino 2010,Dino Track Transport,351,2005,[No Color],1 +Dino 2010,Dino Track Transport,351,2005,Yellow,1 +Dino 2010,Dino Track Transport,351,2005,Tan,16 +Dino 2010,Dino Track Transport,351,2005,Light Bluish Gray,25 +Dino 2010,Dino Track Transport,351,2005,Dark Green,1 +Dino 2010,Dino Track Transport,351,2005,Dark Red,3 +Dino 2010,Dino Track Transport,351,2005,Lime,1 +Dino 2010,Dino Track Transport,351,2005,Pearl Light Gray,1 +Dino 2010,Dino Track Transport,351,2005,Red,2 +Dino 2010,Dino Track Transport,351,2005,Trans-Clear,1 +Dino 2010,Dino Track Transport,351,2005,Trans-Neon Green,1 +Dino 2010,Dino Track Transport,351,2005,Trans-Red,1 +Dino 2010,Dino Track Transport,351,2005,White,1 +Dino 2010,Dino 4WD Trapper,282,2005,Trans-Black,1 +Dino 2010,Dino 4WD Trapper,282,2005,Trans-Clear,1 +Dino 2010,Dino 4WD Trapper,282,2005,Trans-Yellow,1 +Dino 2010,Dino 4WD Trapper,282,2005,Yellow,1 +Dino 2010,Dino 4WD Trapper,282,2005,White,4 +Dino 2010,Dino 4WD Trapper,282,2005,Dark Red,13 +Dino 2010,Dino 4WD Trapper,282,2005,[No Color],1 +Dino 2010,Dino 4WD Trapper,282,2005,Black,29 +Dino 2010,Dino 4WD Trapper,282,2005,Blue,1 +Dino 2010,Dino 4WD Trapper,282,2005,Dark Bluish Gray,23 +Dino 2010,Dino 4WD Trapper,282,2005,Dark Orange,2 +Dino 2010,Dino 4WD Trapper,282,2005,Light Bluish Gray,17 +Dino 2010,Dino 4WD Trapper,282,2005,Light Purple,1 +Dino 2010,Dino 4WD Trapper,282,2005,Tan,7 +Dino 2010,Dino Buggy Chaser,78,2005,Dark Bluish Gray,5 +Dino 2010,Dino Buggy Chaser,78,2005,Black,20 +Dino 2010,Dino Buggy Chaser,78,2005,Yellow,2 +Dino 2010,Dino Buggy Chaser,78,2005,Tan,4 +Dino 2010,Dino Buggy Chaser,78,2005,Light Bluish Gray,7 +Dino 2010,Dino Buggy Chaser,78,2005,Dark Red,8 +Dino 2010,Dino Quad,39,2005,Dark Red,2 +Dino 2010,Dino Quad,39,2005,Tan,3 +Dino 2010,Dino Quad,39,2005,Light Bluish Gray,2 +Dino 2010,Dino Quad,39,2005,Black,12 +Dino 2010,Dino Quad,39,2005,Dark Bluish Gray,7 +Dino 2010,Dino Quad,39,2005,Yellow,1 +Dino 2010,Dino Quad,39,2005,Trans-Dark Blue,1 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Trans-Neon Green,2 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Trans-Red,3 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,White,6 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Black,55 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Blue,3 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Dark Bluish Gray,27 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Dark Green,1 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Dark Red,21 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Light Bluish Gray,32 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Lime,3 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Red,4 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Tan,40 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Trans-Black,3 +Dino Attack,T-1 Typhoon vs. T-Rex,579,2005,Trans-Clear,1 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Yellow,3 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Blue,1 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Dark Bluish Gray,20 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Dark Green,1 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Dark Red,4 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Light Bluish Gray,15 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Lime,2 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Pearl Light Gray,1 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Red,3 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Tan,21 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Trans-Black,1 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Trans-Neon Green,1 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Trans-Red,1 +Dino Attack,Iron Predator vs. T-Rex,273,2005,White,4 +Dino Attack,Iron Predator vs. T-Rex,273,2005,[No Color],1 +Dino Attack,Iron Predator vs. T-Rex,273,2005,Black,23 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Black,25 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Blue,1 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,[No Color],1 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Tan,8 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Trans-Black,2 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Trans-Yellow,1 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,White,5 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Yellow,1 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Dark Bluish Gray,19 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Dark Orange,1 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Dark Red,12 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Light Bluish Gray,12 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Light Purple,1 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Lime,1 +Dino Attack,Fire Hammer vs. Mutant Lizards,258,2005,Red,1 +Dino Attack,Urban Avenger vs. Raptor,78,2005,Dark Bluish Gray,4 +Dino Attack,Urban Avenger vs. Raptor,78,2005,Dark Red,8 +Dino Attack,Urban Avenger vs. Raptor,78,2005,Light Bluish Gray,7 +Dino Attack,Urban Avenger vs. Raptor,78,2005,Tan,4 +Dino Attack,Urban Avenger vs. Raptor,78,2005,Trans-Neon Green,1 +Dino Attack,Urban Avenger vs. Raptor,78,2005,Trans-Red,1 +Dino Attack,Urban Avenger vs. Raptor,78,2005,Yellow,1 +Dino Attack,Urban Avenger vs. Raptor,78,2005,Black,20 +Dino Attack,Street Sprinter vs. Mutant Lizard,38,2005,Black,11 +Dino Attack,Street Sprinter vs. Mutant Lizard,38,2005,Dark Bluish Gray,5 +Dino Attack,Street Sprinter vs. Mutant Lizard,38,2005,Dark Red,2 +Dino Attack,Street Sprinter vs. Mutant Lizard,38,2005,Light Bluish Gray,2 +Dino Attack,Street Sprinter vs. Mutant Lizard,38,2005,Tan,3 +Dino Attack,Street Sprinter vs. Mutant Lizard,38,2005,Trans-Dark Blue,1 +Dino Attack,Street Sprinter vs. Mutant Lizard,38,2005,Trans-Neon Green,1 +Dino Island,Dino Research Compound,618,2000,White,16 +Dino Island,Dino Research Compound,618,2000,Yellow,14 +Dino Island,Dino Research Compound,618,2000,Dark Gray,21 +Dino Island,Dino Research Compound,618,2000,Trans-Neon Green,1 +Dino Island,Dino Research Compound,618,2000,Brown,22 +Dino Island,Dino Research Compound,618,2000,Blue,16 +Dino Island,Dino Research Compound,618,2000,Black,49 +Dino Island,Dino Research Compound,618,2000,Dark Orange,1 +Dino Island,Dino Research Compound,618,2000,Green,15 +Dino Island,Dino Research Compound,618,2000,Light Gray,42 +Dino Island,Dino Research Compound,618,2000,Red,12 +Dino Island,Dino Research Compound,618,2000,Tan,9 +Dino Island,Dino Research Compound,618,2000,Trans-Clear,2 +Dino Island,Dino Research Compound,618,2000,Trans-Neon Orange,1 +Dino Island,Dino Research Compound,618,2000,Trans-Red,1 +Dino Island,T-Rex Transport,323,2000,Yellow,6 +Dino Island,T-Rex Transport,323,2000,Black,26 +Dino Island,T-Rex Transport,323,2000,Light Gray,26 +Dino Island,T-Rex Transport,323,2000,White,24 +Dino Island,T-Rex Transport,323,2000,Blue,5 +Dino Island,T-Rex Transport,323,2000,Brown,11 +Dino Island,T-Rex Transport,323,2000,Dark Gray,12 +Dino Island,T-Rex Transport,323,2000,Green,3 +Dino Island,T-Rex Transport,323,2000,Red,9 +Dino Island,T-Rex Transport,323,2000,Tan,6 +Dino Island,T-Rex Transport,323,2000,Trans-Clear,2 +Dino Island,T-Rex Transport,323,2000,Trans-Green,1 +Dino Island,T-Rex Transport,323,2000,Trans-Red,1 +Dino Island,Island Hopper,205,2000,White,7 +Dino Island,Island Hopper,205,2000,Black,9 +Dino Island,Island Hopper,205,2000,Blue,1 +Dino Island,Island Hopper,205,2000,Trans-Black,1 +Dino Island,Island Hopper,205,2000,Dark Gray,6 +Dino Island,Island Hopper,205,2000,Dark Orange,1 +Dino Island,Island Hopper,205,2000,Green,3 +Dino Island,Island Hopper,205,2000,Yellow,7 +Dino Island,Island Hopper,205,2000,Light Gray,18 +Dino Island,Island Hopper,205,2000,Red,14 +Dino Island,Island Hopper,205,2000,Tan,2 +Dino Island,Island Hopper,205,2000,Trans-Clear,1 +Dino Island,Island Hopper,205,2000,Trans-Yellow,1 +Dino Island,Island Hopper,205,2000,Brown,4 +Dino Island,All Terrain Trapper,191,2000,Trans-Neon Orange,1 +Dino Island,All Terrain Trapper,191,2000,White,8 +Dino Island,All Terrain Trapper,191,2000,Yellow,6 +Dino Island,All Terrain Trapper,191,2000,Green,6 +Dino Island,All Terrain Trapper,191,2000,Tan,1 +Dino Island,All Terrain Trapper,191,2000,Red,2 +Dino Island,All Terrain Trapper,191,2000,Light Gray,19 +Dino Island,All Terrain Trapper,191,2000,Dark Orange,1 +Dino Island,All Terrain Trapper,191,2000,Dark Gray,14 +Dino Island,All Terrain Trapper,191,2000,Brown,11 +Dino Island,All Terrain Trapper,191,2000,Blue,14 +Dino Island,All Terrain Trapper,191,2000,Black,21 +Dino Island,All Terrain Trapper,191,2000,Trans-Clear,1 +Dino Island,Dino Explorer,90,2000,Black,10 +Dino Island,Dino Explorer,90,2000,Yellow,3 +Dino Island,Dino Explorer,90,2000,Light Gray,10 +Dino Island,Dino Explorer,90,2000,Red,5 +Dino Island,Dino Explorer,90,2000,Green,3 +Dino Island,Dino Explorer,90,2000,Dark Gray,5 +Dino Island,Dino Explorer,90,2000,Brown,5 +Dino Island,Dino Explorer,90,2000,Blue,1 +Dino Island,Dino Explorer,90,2000,Tan,4 +Dino Island,Dino Explorer,90,2000,Trans-Clear,2 +Dino Island,Dino Explorer,90,2000,Trans-Neon Orange,1 +Dino Island,Dino Explorer,90,2000,White,4 +Dino Island,Research Glider,57,2000,Black,7 +Dino Island,Research Glider,57,2000,Brown,7 +Dino Island,Research Glider,57,2000,Dark Gray,3 +Dino Island,Research Glider,57,2000,Green,4 +Dino Island,Research Glider,57,2000,Light Gray,8 +Dino Island,Research Glider,57,2000,Red,3 +Dino Island,Research Glider,57,2000,Trans-Clear,2 +Dino Island,Research Glider,57,2000,White,2 +Dino Island,Research Glider,57,2000,Yellow,1 +Dino Island,Research Glider,57,2000,Tan,2 +Dino Island,Island Racer,50,2000,Dark Gray,8 +Dino Island,Island Racer,50,2000,Light Gray,6 +Dino Island,Island Racer,50,2000,Red,4 +Dino Island,Island Racer,50,2000,Tan,1 +Dino Island,Island Racer,50,2000,Trans-Clear,2 +Dino Island,Island Racer,50,2000,White,2 +Dino Island,Island Racer,50,2000,Yellow,2 +Dino Island,Island Racer,50,2000,Black,4 +Dino Island,Microcopter,28,2000,Red,4 +Dino Island,Microcopter,28,2000,Trans-Clear,1 +Dino Island,Microcopter,28,2000,White,4 +Dino Island,Microcopter,28,2000,Yellow,1 +Dino Island,Microcopter,28,2000,Tan,1 +Dino Island,Microcopter,28,2000,Black,3 +Dino Island,Microcopter,28,2000,Dark Gray,3 +Dino Island,Microcopter,28,2000,Green,3 +Dino Island,Microcopter,28,2000,Light Gray,3 +Dino Island,Aeroplane,25,2000,Trans-Clear,1 +Dino Island,Aeroplane,25,2000,Brown,2 +Dino Island,Aeroplane,25,2000,Black,3 +Dino Island,Aeroplane,25,2000,Dark Gray,5 +Dino Island,Aeroplane,25,2000,Tan,4 +Dino Island,Aeroplane,25,2000,Yellow,1 +Dino Island,Aeroplane,25,2000,Light Gray,4 +Dino Island,Johnny Thunder and Baby T,23,2000,Light Gray,1 +Dino Island,Johnny Thunder and Baby T,23,2000,Yellow,1 +Dino Island,Johnny Thunder & Baby T,23,2000,Black,6 +Dino Island,Johnny Thunder & Baby T,23,2000,Blue,1 +Dino Island,Johnny Thunder & Baby T,23,2000,Brown,2 +Dino Island,Johnny Thunder & Baby T,23,2000,Dark Gray,2 +Dino Island,Johnny Thunder & Baby T,23,2000,Green,1 +Dino Island,Johnny Thunder & Baby T,23,2000,Light Gray,1 +Dino Island,Johnny Thunder & Baby T,23,2000,Tan,2 +Dino Island,Johnny Thunder & Baby T,23,2000,White,3 +Dino Island,Johnny Thunder & Baby T,23,2000,Yellow,1 +Dino Island,Johnny Thunder and Baby T,23,2000,Black,6 +Dino Island,Johnny Thunder and Baby T,23,2000,Blue,1 +Dino Island,Johnny Thunder and Baby T,23,2000,Brown,2 +Dino Island,Johnny Thunder and Baby T,23,2000,Dark Gray,2 +Dino Island,Johnny Thunder and Baby T,23,2000,Green,1 +Dino Island,Johnny Thunder and Baby T,23,2000,Tan,2 +Dino Island,Johnny Thunder and Baby T,23,2000,White,3 +Dino Island,Johnny Thunder's Plane,22,2000,Brown,1 +Dino Island,Johnny Thunder's Plane,22,2000,Dark Gray,4 +Dino Island,Johnny Thunder's Plane,22,2000,Light Gray,5 +Dino Island,Johnny Thunder's Plane,22,2000,Red,3 +Dino Island,Johnny Thunder's Plane,22,2000,Tan,1 +Dino Island,Johnny Thunder's Plane,22,2000,Yellow,1 +Dino Island,Johnny Thunder's Plane,22,2000,[No Color],1 +Dino Island,Johnny Thunder's Plane,22,2000,Black,4 +Dino Island,Baby T-Rex Trap,21,2000,White,2 +Dino Island,Baby T-Rex Trap,21,2000,Yellow,2 +Dino Island,Aeroplane,21,2000,Yellow,1 +Dino Island,Aeroplane,21,2000,Light Gray,3 +Dino Island,Aeroplane,21,2000,Dark Gray,1 +Dino Island,Baby T-Rex Trap,21,2000,Tan,1 +Dino Island,Dr. Lightning's Car,21,2000,[No Color],1 +Dino Island,Dr. Lightning's Car,21,2000,Black,3 +Dino Island,Dr. Lightning's Car,21,2000,Brown,1 +Dino Island,Dr. Lightning's Car,21,2000,Dark Gray,3 +Dino Island,Dr. Lightning's Car,21,2000,Green,1 +Dino Island,Dr. Lightning's Car,21,2000,Light Gray,2 +Dino Island,Dr. Lightning's Car,21,2000,Red,1 +Dino Island,Baby T-Rex Trap,21,2000,[No Color],1 +Dino Island,Baby T-Rex Trap,21,2000,Black,1 +Dino Island,Baby T-Rex Trap,21,2000,Blue,1 +Dino Island,Baby T-Rex Trap,21,2000,Brown,1 +Dino Island,Baby T-Rex Trap,21,2000,Dark Gray,1 +Dino Island,Baby T-Rex Trap,21,2000,Green,2 +Dino Island,Aeroplane,21,2000,Brown,2 +Dino Island,Aeroplane,21,2000,Blue,4 +Dino Island,Aeroplane,21,2000,Black,5 +Dino Island,Baby T-Rex Trap,21,2000,Light Gray,2 +Dino Island,Dr. Lightning's Car,21,2000,Yellow,1 +Dino Island,Dr. Lightning's Car,21,2000,White,2 +Dino Island,Hydrofoil,19,2000,Black,2 +Dino Island,Hydrofoil,19,2000,Brown,2 +Dino Island,Hydrofoil,19,2000,Dark Orange,1 +Dino Island,Hydrofoil,19,2000,Light Gray,5 +Dino Island,Hydrofoil,19,2000,Red,4 +Dino Island,Hydrofoil,19,2000,Tan,1 +Dino Island,Hydrofoil,19,2000,Yellow,1 +Dino Island,Hydrofoil,19,2000,[No Color],1 +Dinosaurs,Baby Ankylosaurus,37,2001,Black,2 +Dinosaurs,Baby Ankylosaurus,37,2001,Dark Gray,3 +Dinosaurs,Baby Ankylosaurus,37,2001,Light Gray,3 +Dinosaurs,Baby Ankylosaurus,37,2001,Sand Green,4 +Dinosaurs,Baby Ankylosaurus,37,2001,Tan,2 +Dinosaurs,Baby Ankylosaurus (Polybag),37,2001,Black,2 +Dinosaurs,Baby Ankylosaurus (Polybag),37,2001,Dark Gray,3 +Dinosaurs,Baby Ankylosaurus (Polybag),37,2001,Light Gray,3 +Dinosaurs,Baby Ankylosaurus (Polybag),37,2001,Sand Green,4 +Dinosaurs,Baby Ankylosaurus (Polybag),37,2001,Tan,2 +Dinosaurs,Baby Brachiosaurus,31,2001,Dark Gray,3 +Dinosaurs,Baby Brachiosaurus,31,2001,Light Gray,4 +Dinosaurs,Baby Brachiosaurus,31,2001,Sand Green,7 +Dinosaurs,Baby Brachiosaurus (Polybag),31,2001,Dark Gray,3 +Dinosaurs,Baby Brachiosaurus (Polybag),31,2001,Light Gray,4 +Dinosaurs,Baby Brachiosaurus (Polybag),31,2001,Sand Green,7 +Dinosaurs,Mosasaurus,26,2001,Red,1 +Dinosaurs,Mosasaurus,26,2001,Light Gray,3 +Dinosaurs,Mosasaurus,26,2001,Dark Gray,2 +Dinosaurs,Mosasaurus,26,2001,Sand Blue,12 +Dinosaurs,Brachiosaurus,25,2001,Sand Green,12 +Dinosaurs,Brachiosaurus,25,2001,Light Gray,2 +Dinosaurs,Brachiosaurus,25,2001,Dark Gray,1 +Dinosaurs,Baby Iguanodon,23,2001,Light Gray,4 +Dinosaurs,Baby Iguanodon,23,2001,Sand Blue,8 +Dinosaurs,Baby Iguanodon (Polybag),23,2001,Dark Gray,3 +Dinosaurs,Baby Iguanodon (Polybag),23,2001,Light Gray,4 +Dinosaurs,Baby Iguanodon (Polybag),23,2001,Sand Blue,8 +Dinosaurs,Baby Iguanodon,23,2001,Dark Gray,3 +Dinosaurs,Tyrannosaurus Rex,23,2001,Dark Gray,2 +Dinosaurs,Tyrannosaurus Rex,23,2001,Light Gray,2 +Dinosaurs,Tyrannosaurus Rex,23,2001,Red,1 +Dinosaurs,Tyrannosaurus Rex,23,2001,Sand Blue,12 +Dinosaurs,Baby Dimetrodon,20,2001,Dark Gray,4 +Dinosaurs,Baby Dimetrodon (Polybag),20,2001,Sand Blue,6 +Dinosaurs,Baby Dimetrodon (Polybag),20,2001,Light Gray,3 +Dinosaurs,Baby Dimetrodon (Polybag),20,2001,Dark Gray,4 +Dinosaurs,Baby Dimetrodon,20,2001,Sand Blue,6 +Dinosaurs,Baby Dimetrodon,20,2001,Light Gray,3 +Dinosaurs,Styracosaurus,19,2001,Dark Gray,1 +Dinosaurs,Styracosaurus,19,2001,Light Gray,2 +Dinosaurs,Styracosaurus,19,2001,Sand Green,7 +Dinosaurs,Styracosaurus,19,2001,Tan,1 +Discovery,Mars Exploration Rover,861,2003,[No Color],1 +Discovery,Mars Exploration Rover,861,2003,Black,25 +Discovery,Mars Exploration Rover,861,2003,Blue,2 +Discovery,Mars Exploration Rover,861,2003,Dark Gray,21 +Discovery,Mars Exploration Rover,861,2003,Flat Silver,3 +Discovery,Mars Exploration Rover,861,2003,Light Gray,43 +Discovery,Mars Exploration Rover,861,2003,Yellow,1 +Discovery,Mars Exploration Rover,861,2003,White,5 +Discovery,Mars Exploration Rover,861,2003,Tan,6 +Discovery,Mars Exploration Rover,861,2003,Trans-Dark Blue,1 +Discovery,Mars Exploration Rover,861,2003,Very Light Gray,1 +Discovery,Space Shuttle Discovery,827,2003,Chrome Silver,1 +Discovery,Space Shuttle Discovery,827,2003,Chrome Gold,1 +Discovery,Space Shuttle Discovery,827,2003,Black,63 +Discovery,Space Shuttle Discovery,827,2003,[No Color],2 +Discovery,Space Shuttle Discovery,827,2003,Blue,1 +Discovery,Space Shuttle Discovery,827,2003,Yellow,3 +Discovery,Space Shuttle Discovery,827,2003,Dark Gray,8 +Discovery,Space Shuttle Discovery,827,2003,Light Gray,32 +Discovery,Space Shuttle Discovery,827,2003,Tan,8 +Discovery,Space Shuttle Discovery,827,2003,Trans-Black,2 +Discovery,Space Shuttle Discovery,827,2003,Trans-Neon Orange,2 +Discovery,Space Shuttle Discovery,827,2003,White,66 +Discovery,Lunar Lander,468,2003,Tan,13 +Discovery,Lunar Lander,468,2003,Trans-Black,1 +Discovery,Lunar Lander,468,2003,Trans-Clear,1 +Discovery,Lunar Lander,468,2003,Trans-Neon Orange,1 +Discovery,Lunar Lander,468,2003,White,19 +Discovery,Lunar Lander,468,2003,Yellow,1 +Discovery,Lunar Lander,468,2003,[No Color],1 +Discovery,Lunar Lander,468,2003,Black,3 +Discovery,Lunar Lander,468,2003,Blue,1 +Discovery,Lunar Lander,468,2003,Chrome Silver,1 +Discovery,Lunar Lander,468,2003,Dark Gray,31 +Discovery,Lunar Lander,468,2003,Light Gray,53 +Discovery,Mission to Mars,416,2003,Dark Blue,8 +Discovery,Mission to Mars,416,2003,Dark Gray,12 +Discovery,Mission to Mars,416,2003,Light Gray,35 +Discovery,Mission to Mars,416,2003,Red,1 +Discovery,Mission to Mars,416,2003,Sand Green,2 +Discovery,Mission to Mars,416,2003,Tan,19 +Discovery,Mission to Mars,416,2003,Trans-Clear,2 +Discovery,Mission to Mars,416,2003,Trans-Neon Orange,2 +Discovery,Mission to Mars,416,2003,White,22 +Discovery,Mission to Mars,416,2003,Yellow,3 +Discovery,Mission to Mars,416,2003,[No Color],2 +Discovery,Mission to Mars,416,2003,Black,24 +Discovery,Mission to Mars,416,2003,Blue,1 +Discovery,Mission to Mars,416,2003,Chrome Gold,1 +Discovery,Saturn V Moon Mission,176,2003,[No Color],3 +Discovery,Saturn V Moon Mission,176,2003,Black,8 +Discovery,Saturn V Moon Mission,176,2003,Blue,1 +Discovery,Saturn V Moon Mission,176,2003,Dark Gray,10 +Discovery,Saturn V Moon Mission,176,2003,Light Gray,14 +Discovery,Saturn V Moon Mission,176,2003,Tan,12 +Discovery,Saturn V Moon Mission,176,2003,Trans-Clear,4 +Discovery,Saturn V Moon Mission,176,2003,Trans-Neon Orange,1 +Discovery,Saturn V Moon Mission,176,2003,White,19 +Discovery,Saturn V Moon Mission,176,2003,Chrome Silver,1 +Discovery,International Space Station,162,2003,Trans-Black,1 +Discovery,International Space Station,162,2003,Light Gray,7 +Discovery,International Space Station,162,2003,Dark Gray,3 +Discovery,International Space Station,162,2003,Chrome Silver,1 +Discovery,International Space Station,162,2003,Black,19 +Discovery,International Space Station,162,2003,[No Color],1 +Discovery,International Space Station,162,2003,White,31 +Discovery,International Space Station,162,2003,Trans-Neon Orange,1 +Disney,The Disney Castle,4060,2016,Dark Orange,1 +Disney,The Disney Castle,4060,2016,Dark Purple,2 +Disney,The Disney Castle,4060,2016,Dark Red,4 +Disney,The Disney Castle,4060,2016,Dark Tan,21 +Disney,The Disney Castle,4060,2016,Flat Silver,5 +Disney,The Disney Castle,4060,2016,Green,5 +Disney,The Disney Castle,4060,2016,Light Bluish Gray,112 +Disney,The Disney Castle,4060,2016,Light Flesh,4 +Disney,The Disney Castle,4060,2016,Lime,2 +Disney,The Disney Castle,4060,2016,Magenta,4 +Disney,The Disney Castle,4060,2016,Medium Dark Flesh,11 +Disney,The Disney Castle,4060,2016,Medium Lavender,3 +Disney,The Disney Castle,4060,2016,Metallic Gold,1 +Disney,The Disney Castle,4060,2016,Orange,8 +Disney,The Disney Castle,4060,2016,Pearl Dark Gray,1 +Disney,The Disney Castle,4060,2016,Pearl Gold,25 +Disney,The Disney Castle,4060,2016,Red,15 +Disney,The Disney Castle,4060,2016,Reddish Brown,67 +Disney,The Disney Castle,4060,2016,Tan,60 +Disney,The Disney Castle,4060,2016,Trans-Black,1 +Disney,The Disney Castle,4060,2016,Trans-Clear,8 +Disney,The Disney Castle,4060,2016,Trans-Dark Pink,1 +Disney,The Disney Castle,4060,2016,Trans-Green,1 +Disney,The Disney Castle,4060,2016,Trans-Light Blue,1 +Disney,The Disney Castle,4060,2016,Trans-Medium Blue,1 +Disney,The Disney Castle,4060,2016,Trans-Neon Green,1 +Disney,The Disney Castle,4060,2016,Trans-Orange,2 +Disney,The Disney Castle,4060,2016,Trans-Purple,1 +Disney,The Disney Castle,4060,2016,Trans-Yellow,1 +Disney,The Disney Castle,4060,2016,White,122 +Disney,The Disney Castle,4060,2016,Yellow,17 +Disney,The Disney Castle,4060,2016,Dark Pink,1 +Disney,The Disney Castle,4060,2016,[No Color],1 +Disney,The Disney Castle,4060,2016,Black,40 +Disney,The Disney Castle,4060,2016,Blue,10 +Disney,The Disney Castle,4060,2016,Bright Green,3 +Disney,The Disney Castle,4060,2016,Bright Light Orange,3 +Disney,The Disney Castle,4060,2016,Bright Light Yellow,1 +Disney,The Disney Castle,4060,2016,Chrome Gold,1 +Disney,The Disney Castle,4060,2016,Dark Blue,30 +Disney,The Disney Castle,4060,2016,Dark Bluish Gray,38 +Disney,The Disney Castle,4060,2016,Dark Brown,1 +Disney,Maleficent,10,2016,Trans-Yellow,1 +Disney,Maleficent,10,2016,Black,5 +Disney,Maleficent,10,2016,Dark Purple,2 +Disney,Maleficent,10,2016,Pearl Gold,2 +Disney,Buzz Lightyear,8,2016,White,3 +Disney,Buzz Lightyear,8,2016,Lime,1 +Disney,Buzz Lightyear,8,2016,Trans-Clear,1 +Disney,Alice,8,2016,Black,1 +Disney,Alice,8,2016,Bright Light Yellow,1 +Disney,Alice,8,2016,Light Flesh,1 +Disney,Alice,8,2016,Medium Blue,2 +Disney,Alice,8,2016,Trans-Light Blue,1 +Disney,Alice,8,2016,White,2 +Disney,Buzz Lightyear,8,2016,Black,1 +Disney,Buzz Lightyear,8,2016,Dark Purple,1 +Disney,Genie,7,2016,Black,1 +Disney,Genie,7,2016,Pearl Gold,2 +Disney,Genie,7,2016,Medium Blue,3 +Disney,Genie,7,2016,Blue,1 +Disney,Ariel,7,2016,Black,1 +Disney,Ariel,7,2016,Green,1 +Disney,Ariel,7,2016,Light Flesh,2 +Disney,Ariel,7,2016,Red,1 +Disney,Ariel,7,2016,Trans-Dark Pink,1 +Disney,Ariel,7,2016,White,1 +Disney,Peter Pan,7,2016,Black,1 +Disney,Peter Pan,7,2016,Light Flesh,2 +Disney,Peter Pan,7,2016,Lime,2 +Disney,Peter Pan,7,2016,Pearl Gold,1 +Disney,Captain Hook,6,2016,Light Flesh,1 +Disney,Captain Hook,6,2016,Red,2 +Disney,Daisy Duck,6,2016,Black,1 +Disney,Daisy Duck,6,2016,Bright Pink,1 +Disney,Daisy Duck,6,2016,Lavender,1 +Disney,Daisy Duck,6,2016,White,3 +Disney,Donald Duck,6,2016,Black,2 +Disney,Donald Duck,6,2016,Blue,1 +Disney,Captain Hook,6,2016,Pearl Gold,1 +Disney,Aladdin,6,2016,Dark Purple,1 +Disney,Aladdin,6,2016,Flesh,1 +Disney,Aladdin,6,2016,Pearl Gold,1 +Disney,Donald Duck,6,2016,White,3 +Disney,Minnie Mouse,6,2016,Black,1 +Disney,Minnie Mouse,6,2016,Dark Pink,3 +Disney,Minnie Mouse,6,2016,Light Flesh,1 +Disney,Minnie Mouse,6,2016,White,1 +Disney,Mr. Incredible,6,2016,Black,1 +Disney,Mr. Incredible,6,2016,Light Flesh,1 +Disney,Mr. Incredible,6,2016,Red,2 +Disney,Mr. Incredible,6,2016,Tan,1 +Disney,Mr. Incredible,6,2016,White,1 +Disney,Aladdin,6,2016,White,1 +Disney,Aladdin,6,2016,Black,2 +Disney,Captain Hook,6,2016,Black,1 +Disney,Captain Hook,6,2016,Dark Red,1 +Disney,Syndrome,6,2016,Black,3 +Disney,Syndrome,6,2016,Dark Blue,1 +Disney,Syndrome,6,2016,Light Flesh,1 +Disney,Syndrome,6,2016,Orange,1 +Disney,Ursula,6,2016,Black,3 +Disney,Ursula,6,2016,Lavender,1 +Disney,Ursula,6,2016,Pearl Gold,1 +Disney,Ursula,6,2016,White,1 +Disney,Cheshire Cat,5,2016,Dark Pink,1 +Disney,Cheshire Cat,5,2016,Magenta,2 +Disney,Cheshire Cat,5,2016,Aqua,1 +Disney,Cheshire Cat,5,2016,Black,1 +Disney,Stitch,4,2016,Black,1 +Disney,Stitch,4,2016,Medium Blue,3 +Disney,Mickey Mouse,4,2016,Black,2 +Disney,Mickey Mouse,4,2016,Light Flesh,1 +Disney,Mickey Mouse,4,2016,Red,1 +Disney,Alien,4,2016,Black,1 +Disney,Alien,4,2016,Lime,1 +Disney,Alien,4,2016,Blue,2 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Dark Purple,2 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Dark Red,1 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Green,8 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Light Bluish Gray,23 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Light Flesh,4 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Lime,7 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Medium Azure,6 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Medium Blue,3 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Medium Dark Flesh,1 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Medium Lavender,5 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Orange,1 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Pearl Gold,14 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Red,4 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Reddish Brown,18 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Tan,22 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Trans-Dark Pink,2 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Trans-Green,1 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Trans-Light Blue,3 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Trans-Orange,2 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Trans-Red,2 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Trans-Yellow,2 +Disney Princess,Cinderella’s Romantic Castle,643,2014,White,49 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Yellow,1 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Trans-Clear,3 +Disney Princess,Cinderella’s Romantic Castle,643,2014,[No Color],2 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Black,2 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Blue,1 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Bright Green,2 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Bright Light Blue,6 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Bright Light Orange,1 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Bright Light Yellow,1 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Bright Pink,8 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Dark Bluish Gray,2 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Dark Brown,1 +Disney Princess,Cinderella’s Romantic Castle,643,2014,Dark Pink,7 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Trans-Medium Blue,1 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Bright Light Orange,2 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Bright Pink,6 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Dark Blue,1 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Dark Bluish Gray,1 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Tan,10 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Dark Brown,1 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Dark Pink,1 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Dark Tan,2 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Green,7 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Light Bluish Gray,15 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Light Flesh,4 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Lime,2 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Light Yellow,1 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Magenta,2 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Medium Azure,5 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Medium Dark Flesh,2 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Medium Lavender,6 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Pearl Gold,9 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Red,2 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Reddish Brown,15 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Dark Purple,8 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Trans-Clear,1 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Yellow,1 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,White,8 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Trans-Red,1 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Trans-Neon Orange,1 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,[No Color],2 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Black,4 +Disney Princess,Rapunzel’s Creativity Tower,297,2014,Bright Green,2 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Magenta,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Bright Green,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Blue,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Medium Blue,9 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Medium Lavender,4 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Light Flesh,2 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Trans-Light Blue,2 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Pearl Gold,11 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Red,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Reddish Brown,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Tan,3 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Trans-Dark Pink,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Trans-Neon Green,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Trans-Neon Orange,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Bright Light Yellow,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Bright Light Blue,4 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Bright Pink,5 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Dark Bluish Gray,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Dark Pink,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,White,32 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Orange,1 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Dark Purple,3 +Disney Princess,Cinderella’s Dream Carriage,274,2014,Green,3 +Disney Princess,Ariel’s Magical Kiss,249,2014,Black,1 +Disney Princess,Ariel’s Magical Kiss,249,2014,Yellow,1 +Disney Princess,Ariel’s Magical Kiss,249,2014,White,12 +Disney Princess,Ariel’s Magical Kiss,249,2014,Trans-Light Blue,1 +Disney Princess,Ariel’s Magical Kiss,249,2014,Trans-Dark Blue,2 +Disney Princess,Ariel’s Magical Kiss,249,2014,Trans-Clear,2 +Disney Princess,Ariel’s Magical Kiss,249,2014,Tan,5 +Disney Princess,Ariel’s Magical Kiss,249,2014,Green,6 +Disney Princess,Ariel’s Magical Kiss,249,2014,Sand Blue,1 +Disney Princess,Ariel’s Magical Kiss,249,2014,Reddish Brown,12 +Disney Princess,Ariel’s Magical Kiss,249,2014,Red,1 +Disney Princess,Ariel’s Magical Kiss,249,2014,Pearl Gold,7 +Disney Princess,Ariel’s Magical Kiss,249,2014,Medium Azure,5 +Disney Princess,Ariel’s Magical Kiss,249,2014,Magenta,6 +Disney Princess,Ariel’s Magical Kiss,249,2014,Lime,1 +Disney Princess,Ariel’s Magical Kiss,249,2014,Light Flesh,4 +Disney Princess,Ariel’s Magical Kiss,249,2014,Bright Green,4 +Disney Princess,Ariel’s Magical Kiss,249,2014,Bright Light Orange,3 +Disney Princess,Ariel’s Magical Kiss,249,2014,Dark Pink,4 +Disney Princess,Ariel’s Magical Kiss,249,2014,Dark Tan,4 +Disney Princess,Ariel’s Magical Kiss,249,2014,Bright Light Yellow,1 +Disney Princess,Ariel’s Magical Kiss,249,2014,[No Color],1 +Disney Princess,Ariel’s Magical Kiss,249,2014,Trans-Dark Pink,1 +Disney Princess,Ariel’s Magical Kiss,249,2014,Bright Pink,5 +Disney Princess,Ariel’s Magical Kiss,249,2014,Dark Blue,3 +Disney Princess,Ariel’s Magical Kiss,249,2014,Dark Bluish Gray,2 +Disney Princess,Ariel’s Magical Kiss,249,2014,Lavender,1 +Disney Princess,Ariel’s Magical Kiss,249,2014,Dark Orange,1 +Disney Princess,Ariel’s Magical Kiss,249,2014,Dark Brown,1 +Disney Princess,Merida’s Highland Games,144,2014,Bright Pink,1 +Disney Princess,Merida’s Highland Games,144,2014,[No Color],1 +Disney Princess,Merida’s Highland Games,144,2014,Black,2 +Disney Princess,Merida’s Highland Games,144,2014,Blue,1 +Disney Princess,Merida’s Highland Games,144,2014,Bright Green,2 +Disney Princess,Merida’s Highland Games,144,2014,Bright Light Orange,2 +Disney Princess,Merida’s Highland Games,144,2014,Dark Blue,1 +Disney Princess,Merida’s Highland Games,144,2014,Dark Bluish Gray,3 +Disney Princess,Merida’s Highland Games,144,2014,Dark Brown,2 +Disney Princess,Merida’s Highland Games,144,2014,Dark Orange,2 +Disney Princess,Merida’s Highland Games,144,2014,Dark Pink,1 +Disney Princess,Merida’s Highland Games,144,2014,Flat Silver,1 +Disney Princess,Merida’s Highland Games,144,2014,Green,3 +Disney Princess,Merida’s Highland Games,144,2014,Light Bluish Gray,5 +Disney Princess,Merida’s Highland Games,144,2014,Light Flesh,2 +Disney Princess,Merida’s Highland Games,144,2014,Lime,2 +Disney Princess,Merida’s Highland Games,144,2014,Medium Dark Flesh,1 +Disney Princess,Merida’s Highland Games,144,2014,Medium Lavender,3 +Disney Princess,Merida’s Highland Games,144,2014,Pearl Gold,4 +Disney Princess,Merida’s Highland Games,144,2014,Red,1 +Disney Princess,Merida’s Highland Games,144,2014,Tan,16 +Disney Princess,Merida’s Highland Games,144,2014,Trans-Bright Green,1 +Disney Princess,Merida’s Highland Games,144,2014,Trans-Dark Blue,1 +Disney Princess,Merida’s Highland Games,144,2014,Trans-Light Blue,2 +Disney Princess,Merida’s Highland Games,144,2014,Trans-Orange,2 +Disney Princess,Merida’s Highland Games,144,2014,White,5 +Disney Princess,Merida’s Highland Games,144,2014,Medium Azure,3 +Disney Princess,Merida’s Highland Games,144,2014,Reddish Brown,8 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Reddish Brown,2 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Red,1 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Pearl Gold,5 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Lime,1 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Light Flesh,2 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Light Bluish Gray,1 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Green,1 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Flat Silver,1 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Bright Green,2 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Dark Tan,4 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Dark Pink,1 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Bright Pink,3 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Bright Light Orange,1 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Medium Lavender,3 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Yellow,1 +Disney Princess,Ariel’s Amazing Treasures,77,2014,White,5 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Trans-Purple,1 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Trans-Light Blue,2 +Disney Princess,Ariel’s Amazing Treasures,77,2014,Tan,4 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Bright Pink,9 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Dark Pink,4 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Dark Purple,3 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Lavender,1 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Lime,1 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Medium Blue,1 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Pearl Gold,1 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Red,1 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,White,5 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Yellowish Green,1 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Magenta,3 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Blue,1 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Bright Green,3 +Disney Princess,Sleeping Beauty's Fairy Tale,55,2014,Bright Light Blue,3 +Disney Princess,Rapunzel's Market Visit,37,2014,Black,4 +Disney Princess,Rapunzel's Market Visit,37,2014,Bright Pink,1 +Disney Princess,Rapunzel's Market Visit,37,2014,Dark Orange,1 +Disney Princess,Rapunzel's Market Visit,37,2014,Dark Pink,2 +Disney Princess,Rapunzel's Market Visit,37,2014,Green,1 +Disney Princess,Rapunzel's Market Visit,37,2014,Lavender,1 +Disney Princess,Rapunzel's Market Visit,37,2014,Light Flesh,2 +Disney Princess,Rapunzel's Market Visit,37,2014,Light Yellow,1 +Disney Princess,Rapunzel's Market Visit,37,2014,Magenta,1 +Disney Princess,Rapunzel's Market Visit,37,2014,Medium Azure,3 +Disney Princess,Rapunzel's Market Visit,37,2014,Blue,1 +Disney Princess,Rapunzel's Market Visit,37,2014,Reddish Brown,3 +Disney Princess,Rapunzel's Market Visit,37,2014,Pearl Gold,1 +Disney Princess,Rapunzel's Market Visit,37,2014,Medium Lavender,1 +Disney Princess,Rapunzel's Market Visit,37,2014,Tan,2 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Pearl Gold,3 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Dark Bluish Gray,2 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Dark Blue,2 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Bright Pink,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Bright Light Yellow,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Bright Light Blue,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Bright Green,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Blue,3 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Dark Orange,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Dark Green,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Dark Pink,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Glitter Trans-Light Blue,3 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Green,7 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Lavender,5 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Light Aqua,11 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Light Bluish Gray,14 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Light Flesh,3 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Lime,2 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Magenta,5 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Medium Azure,18 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Medium Blue,2 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Medium Lavender,6 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Orange,3 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Red,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Reddish Brown,10 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Tan,2 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Trans-Clear,5 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Trans-Dark Blue,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Trans-Dark Pink,2 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Trans-Light Blue,21 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Trans-Medium Blue,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Trans-Yellow,1 +Disney Princess,Elsa's Magical Ice Palace,700,2017,White,93 +Disney Princess,Elsa's Magical Ice Palace,700,2017,Yellow,3 +Disney Princess,Anna's Snow Adventure,153,2017,Yellow,1 +Disney Princess,Anna's Snow Adventure,153,2017,Yellowish Green,1 +Disney Princess,Anna's Snow Adventure,153,2017,Light Bluish Gray,1 +Disney Princess,Anna's Snow Adventure,153,2017,Black,1 +Disney Princess,Anna's Snow Adventure,153,2017,Bright Green,1 +Disney Princess,Anna's Snow Adventure,153,2017,Bright Light Blue,1 +Disney Princess,Anna's Snow Adventure,153,2017,Dark Orange,1 +Disney Princess,Anna's Snow Adventure,153,2017,Dark Pink,1 +Disney Princess,Anna's Snow Adventure,153,2017,Dark Purple,2 +Disney Princess,Anna's Snow Adventure,153,2017,Dark Tan,1 +Disney Princess,Anna's Snow Adventure,153,2017,Dark Turquoise,1 +Disney Princess,Anna's Snow Adventure,153,2017,Green,4 +Disney Princess,Anna's Snow Adventure,153,2017,Light Aqua,5 +Disney Princess,Anna's Snow Adventure,153,2017,Light Flesh,2 +Disney Princess,Anna's Snow Adventure,153,2017,Lime,1 +Disney Princess,Anna's Snow Adventure,153,2017,Magenta,1 +Disney Princess,Anna's Snow Adventure,153,2017,Medium Dark Flesh,4 +Disney Princess,Anna's Snow Adventure,153,2017,Medium Lavender,1 +Disney Princess,Anna's Snow Adventure,153,2017,Pearl Gold,3 +Disney Princess,Anna's Snow Adventure,153,2017,Red,1 +Disney Princess,Anna's Snow Adventure,153,2017,Reddish Brown,12 +Disney Princess,Anna's Snow Adventure,153,2017,Tan,8 +Disney Princess,Anna's Snow Adventure,153,2017,Trans-Clear,1 +Disney Princess,Anna's Snow Adventure,153,2017,Trans-Light Blue,4 +Disney Princess,Anna's Snow Adventure,153,2017,Trans-Neon Orange,1 +Disney Princess,Anna's Snow Adventure,153,2017,Trans-Yellow,1 +Disney Princess,Anna's Snow Adventure,153,2017,White,16 +Disney Princess,Petite's Royal Stable,74,2017,Medium Azure,3 +Disney Princess,Petite's Royal Stable,74,2017,Bright Pink,1 +Disney Princess,Petite's Royal Stable,74,2017,Dark Pink,3 +Disney Princess,Petite's Royal Stable,74,2017,Green,3 +Disney Princess,Petite's Royal Stable,74,2017,Lavender,3 +Disney Princess,Petite's Royal Stable,74,2017,Light Aqua,1 +Disney Princess,Petite's Royal Stable,74,2017,Magenta,1 +Disney Princess,Petite's Royal Stable,74,2017,Trans-Purple,1 +Disney Princess,Petite's Royal Stable,74,2017,Medium Lavender,2 +Disney Princess,Petite's Royal Stable,74,2017,Pearl Gold,8 +Disney Princess,Petite's Royal Stable,74,2017,Trans-Clear,1 +Disney Princess,Petite's Royal Stable,74,2017,Trans-Dark Pink,4 +Disney Princess,Petite's Royal Stable,74,2017,Trans-Light Blue,2 +Disney Princess,Petite's Royal Stable,74,2017,Bright Light Yellow,3 +Disney Princess,Petite's Royal Stable,74,2017,Trans-Yellow,1 +Disney Princess,Petite's Royal Stable,74,2017,White,11 +Disney Princess,Berry's Kitchen,43,2017,White,4 +Disney Princess,Berry's Kitchen,43,2017,Pearl Gold,2 +Disney Princess,Berry's Kitchen,43,2017,Orange,1 +Disney Princess,Berry's Kitchen,43,2017,Medium Lavender,2 +Disney Princess,Berry's Kitchen,43,2017,Magenta,1 +Disney Princess,Berry's Kitchen,43,2017,Lime,2 +Disney Princess,Berry's Kitchen,43,2017,Light Aqua,1 +Disney Princess,Berry's Kitchen,43,2017,Tan,2 +Disney Princess,Berry's Kitchen,43,2017,Dark Purple,1 +Disney Princess,Berry's Kitchen,43,2017,Bright Green,1 +Disney Princess,Berry's Kitchen,43,2017,Green,2 +Disney Princess,Berry's Kitchen,43,2017,Reddish Brown,5 +Disney Princess,Berry's Kitchen,43,2017,Trans-Dark Pink,2 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,Earth Orange,1 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,[No Color],3 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,Black,5 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,Blue,13 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,Brown,1 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,Dark Gray,1 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,Yellow,8 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,Green,5 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,Light Gray,2 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,Red,13 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,Trans-Yellow,1 +Disney's Mickey Mouse,Mickey's Mansion,123,2000,White,7 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,[No Color],2 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,White,8 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,Dark Gray,1 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,Black,4 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,Blue,11 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,Brown,1 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,Earth Orange,1 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,Green,2 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,Light Gray,1 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,Red,16 +Disney's Mickey Mouse,Mickey's Fishing Adventure,107,2000,Yellow,11 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,Blue,8 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,[No Color],2 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,Brown,1 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,Dark Gray,1 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,Green,3 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,Light Gray,6 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,Red,10 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,Trans-Neon Orange,1 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,Black,7 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,White,1 +Disney's Mickey Mouse,Mickey's Car Garage,90,2000,Yellow,10 +Disney's Mickey Mouse,Minnie's Birthday Party,85,2000,[No Color],2 +Disney's Mickey Mouse,Minnie's Birthday Party,85,2000,Black,2 +Disney's Mickey Mouse,Minnie's Birthday Party,85,2000,Blue,9 +Disney's Mickey Mouse,Minnie's Birthday Party,85,2000,Dark Gray,1 +Disney's Mickey Mouse,Minnie's Birthday Party,85,2000,Green,3 +Disney's Mickey Mouse,Minnie's Birthday Party,85,2000,Light Gray,2 +Disney's Mickey Mouse,Minnie's Birthday Party,85,2000,Red,9 +Disney's Mickey Mouse,Minnie's Birthday Party,85,2000,Royal Blue,1 +Disney's Mickey Mouse,Minnie's Birthday Party,85,2000,White,13 +Disney's Mickey Mouse,Minnie's Birthday Party,85,2000,Yellow,10 +Disney's Mickey Mouse,Mickey's Fire Engine,27,2000,Red,7 +Disney's Mickey Mouse,Mickey's Fire Engine,27,2000,Trans-Dark Blue,1 +Disney's Mickey Mouse,Mickey's Fire Engine,27,2000,Black,5 +Disney's Mickey Mouse,Mickey's Fire Engine,27,2000,White,2 +Disney's Mickey Mouse,Mickey's Fire Engine,27,2000,Yellow,1 +Disney's Mickey Mouse,Mickey's Fire Engine,27,2000,[No Color],1 +Disney's Mickey Mouse,Mickey's Fire Engine,27,2000,Light Gray,3 +Disney's Mickey Mouse,Bridge,26,2005,Dark Bluish Gray,3 +Disney's Mickey Mouse,Bridge,26,2005,Red,4 +Disney's Mickey Mouse,Bridge,26,2005,Tan,1 +Divers,Diving Expedition Explorer,478,1997,Trans-Neon Green,1 +Divers,Diving Expedition Explorer,478,1997,Trans-Yellow,2 +Divers,Diving Expedition Explorer,478,1997,White,41 +Divers,Diving Expedition Explorer,478,1997,Yellow,23 +Divers,Diving Expedition Explorer,478,1997,Trans-Red,2 +Divers,Diving Expedition Explorer,478,1997,[No Color],2 +Divers,Diving Expedition Explorer,478,1997,Black,42 +Divers,Diving Expedition Explorer,478,1997,Blue,18 +Divers,Diving Expedition Explorer,478,1997,Brown,2 +Divers,Diving Expedition Explorer,478,1997,Chrome Gold,4 +Divers,Diving Expedition Explorer,478,1997,Dark Gray,6 +Divers,Diving Expedition Explorer,478,1997,Green,3 +Divers,Diving Expedition Explorer,478,1997,Light Gray,38 +Divers,Diving Expedition Explorer,478,1997,Red,21 +Divers,Diving Expedition Explorer,478,1997,Tan,1 +Divers,Diving Expedition Explorer,478,1997,Trans-Clear,2 +Divers,Diving Expedition Explorer,478,1997,Trans-Green,2 +Divers,Diving Expedition Explorer,478,1997,Trans-Light Blue,1 +Divers,Deep Reef Refuge,451,1997,[No Color],1 +Divers,Deep Reef Refuge,451,1997,Black,37 +Divers,Deep Reef Refuge,451,1997,Blue,21 +Divers,Deep Reef Refuge,451,1997,Brown,1 +Divers,Deep Reef Refuge,451,1997,Chrome Gold,4 +Divers,Deep Reef Refuge,451,1997,Chrome Silver,1 +Divers,Deep Reef Refuge,451,1997,Dark Gray,2 +Divers,Deep Reef Refuge,451,1997,Green,4 +Divers,Deep Reef Refuge,451,1997,Light Gray,22 +Divers,Deep Reef Refuge,451,1997,Red,14 +Divers,Deep Reef Refuge,451,1997,Tan,1 +Divers,Deep Reef Refuge,451,1997,Trans-Clear,2 +Divers,Deep Reef Refuge,451,1997,Trans-Dark Blue,1 +Divers,Deep Reef Refuge,451,1997,Trans-Green,1 +Divers,Deep Reef Refuge,451,1997,Trans-Light Blue,2 +Divers,Deep Reef Refuge,451,1997,Trans-Neon Green,1 +Divers,Deep Reef Refuge,451,1997,Trans-Red,1 +Divers,Deep Reef Refuge,451,1997,White,43 +Divers,Deep Reef Refuge,451,1997,Yellow,27 +Divers,Deep Sea Bounty,359,1997,[No Color],2 +Divers,Deep Sea Bounty,359,1997,Black,34 +Divers,Deep Sea Bounty,359,1997,Blue,12 +Divers,Deep Sea Bounty,359,1997,Tan,1 +Divers,Deep Sea Bounty,359,1997,Red,10 +Divers,Deep Sea Bounty,359,1997,Light Gray,27 +Divers,Deep Sea Bounty,359,1997,Green,2 +Divers,Deep Sea Bounty,359,1997,Trans-Dark Blue,2 +Divers,Deep Sea Bounty,359,1997,Dark Gray,15 +Divers,Deep Sea Bounty,359,1997,Chrome Silver,1 +Divers,Deep Sea Bounty,359,1997,Chrome Gold,4 +Divers,Deep Sea Bounty,359,1997,Trans-Neon Green,1 +Divers,Deep Sea Bounty,359,1997,Trans-Clear,2 +Divers,Deep Sea Bounty,359,1997,Trans-Green,1 +Divers,Deep Sea Bounty,359,1997,Trans-Light Blue,2 +Divers,Deep Sea Bounty,359,1997,Trans-Red,1 +Divers,Deep Sea Bounty,359,1997,Trans-Yellow,2 +Divers,Deep Sea Bounty,359,1997,Brown,4 +Divers,Deep Sea Bounty,359,1997,White,44 +Divers,Deep Sea Bounty,359,1997,Yellow,20 +Divers,Discovery Station,329,1997,Trans-Clear,3 +Divers,Discovery Station,329,1997,Trans-Dark Blue,1 +Divers,Discovery Station,329,1997,Trans-Light Blue,2 +Divers,Discovery Station,329,1997,Trans-Neon Green,1 +Divers,Discovery Station,329,1997,Trans-Yellow,1 +Divers,Discovery Station,329,1997,White,39 +Divers,Discovery Station,329,1997,Yellow,22 +Divers,Discovery Station,329,1997,Trans-Red,2 +Divers,Discovery Station,329,1997,Black,41 +Divers,Discovery Station,329,1997,Blue,8 +Divers,Discovery Station,329,1997,Brown,3 +Divers,Discovery Station,329,1997,Tan,1 +Divers,Discovery Station,329,1997,Chrome Gold,4 +Divers,Discovery Station,329,1997,Dark Gray,1 +Divers,Discovery Station,329,1997,Green,4 +Divers,Discovery Station,329,1997,Light Gray,37 +Divers,Discovery Station,329,1997,Red,14 +Divers,Discovery Station,329,1997,[No Color],2 +Divers,Shark Cage Cove,196,1997,Yellow,8 +Divers,Shark Cage Cove,196,1997,[No Color],2 +Divers,Shark Cage Cove,196,1997,Trans-Dark Blue,2 +Divers,Shark Cage Cove,196,1997,Trans-Green,2 +Divers,Shark Cage Cove,196,1997,Trans-Light Blue,2 +Divers,Shark Cage Cove,196,1997,Trans-Neon Green,1 +Divers,Shark Cage Cove,196,1997,Trans-Neon Orange,1 +Divers,Shark Cage Cove,196,1997,Trans-Red,1 +Divers,Shark Cage Cove,196,1997,Trans-Yellow,1 +Divers,Shark Cage Cove,196,1997,White,21 +Divers,Shark Cage Cove,196,1997,Black,9 +Divers,Shark Cage Cove,196,1997,Blue,7 +Divers,Shark Cage Cove,196,1997,Brown,3 +Divers,Shark Cage Cove,196,1997,Chrome Gold,4 +Divers,Shark Cage Cove,196,1997,Chrome Silver,2 +Divers,Shark Cage Cove,196,1997,Dark Gray,4 +Divers,Shark Cage Cove,196,1997,Green,6 +Divers,Shark Cage Cove,196,1997,Light Gray,21 +Divers,Shark Cage Cove,196,1997,Red,10 +Divers,Shark Cage Cove,196,1997,Tan,1 +Divers,Shark Cage Cove,196,1997,Trans-Clear,1 +Divers,Sting Ray Explorer,150,1997,Black,20 +Divers,Sting Ray Explorer,150,1997,Brown,2 +Divers,Sting Ray Explorer,150,1997,Chrome Silver,1 +Divers,Sting Ray Explorer,150,1997,Dark Gray,3 +Divers,Sting Ray Explorer,150,1997,Green,2 +Divers,Sting Ray Explorer,150,1997,Light Gray,9 +Divers,Sting Ray Explorer,150,1997,Red,10 +Divers,Sting Ray Explorer,150,1997,White,3 +Divers,Sting Ray Explorer,150,1997,Trans-Red,1 +Divers,Sting Ray Explorer,150,1997,Trans-Neon Green,1 +Divers,Sting Ray Explorer,150,1997,Trans-Light Blue,1 +Divers,Sting Ray Explorer,150,1997,Trans-Green,1 +Divers,Sting Ray Explorer,150,1997,Yellow,18 +Divers,Sting Ray Explorer,150,1997,Trans-Clear,2 +Divers,Sting Ray Explorer,150,1997,Tan,1 +Divers,Treasure Hunters,143,1997,Light Gray,13 +Divers,Treasure Hunters,143,1997,Red,12 +Divers,Treasure Hunters,143,1997,Tan,1 +Divers,Treasure Hunters,143,1997,Trans-Clear,2 +Divers,Treasure Hunters,143,1997,Trans-Green,2 +Divers,Treasure Hunters,143,1997,Trans-Light Blue,2 +Divers,Treasure Hunters,143,1997,Trans-Red,2 +Divers,Treasure Hunters,143,1997,Trans-Yellow,1 +Divers,Treasure Hunters,143,1997,White,19 +Divers,Treasure Hunters,143,1997,Yellow,13 +Divers,Treasure Hunters,143,1997,Trans-Neon Green,1 +Divers,Treasure Hunters,143,1997,[No Color],1 +Divers,Treasure Hunters,143,1997,Black,15 +Divers,Treasure Hunters,143,1997,Blue,7 +Divers,Treasure Hunters,143,1997,Brown,1 +Divers,Treasure Hunters,143,1997,Dark Gray,1 +Divers,Treasure Hunters,143,1997,Green,2 +Divers,Scuba Squad,76,1997,Trans-Light Blue,1 +Divers,Scuba Squad,76,1997,[No Color],1 +Divers,Scuba Squad,76,1997,Black,11 +Divers,Scuba Squad,76,1997,Blue,7 +Divers,Scuba Squad,76,1997,Light Gray,4 +Divers,Scuba Squad,76,1997,Red,4 +Divers,Scuba Squad,76,1997,Trans-Dark Blue,2 +Divers,Scuba Squad,76,1997,Trans-Red,1 +Divers,Scuba Squad,76,1997,Trans-Yellow,1 +Divers,Scuba Squad,76,1997,White,17 +Divers,Scuba Squad,76,1997,Yellow,4 +Divers,Shark Attack,58,1997,White,5 +Divers,Shark Attack,58,1997,Trans-Red,2 +Divers,Shark Attack,58,1997,Trans-Green,1 +Divers,Shark Attack,58,1997,Trans-Neon Green,1 +Divers,Shark Attack,58,1997,[No Color],1 +Divers,Shark Attack,58,1997,Black,10 +Divers,Shark Attack,58,1997,Dark Gray,2 +Divers,Shark Attack,58,1997,Trans-Light Blue,1 +Divers,Shark Attack,58,1997,Light Gray,8 +Divers,Shark Attack,58,1997,Red,8 +Divers,Shark Attack,58,1997,Trans-Clear,2 +Divers,Shark Attack,58,1997,Yellow,10 +Divers,Sea Hunter,32,1997,White,2 +Divers,Sea Hunter,32,1997,Trans-Red,1 +Divers,Sea Hunter,32,1997,Trans-Neon Green,1 +Divers,Sea Hunter,32,1997,Trans-Green,1 +Divers,Sea Hunter,32,1997,Black,3 +Divers,Sea Hunter,32,1997,Blue,2 +Divers,Sea Hunter,32,1997,Brown,2 +Divers,Sea Hunter,32,1997,Green,1 +Divers,Sea Hunter,32,1997,Red,3 +Divers,Sea Hunter,32,1997,Trans-Clear,1 +Divers,Sea Hunter,32,1997,Light Gray,10 +Divers,Sea Hunter,32,1997,Yellow,3 +Divers,Diver and Shark,17,1997,Brown,2 +Divers,Diver and Shark,17,1997,Dark Gray,1 +Divers,Diver and Shark,17,1997,Light Gray,1 +Divers,Diver and Shark,17,1997,Red,3 +Divers,Diver and Shark,17,1997,Black,1 +Divers,Diver and Shark,17,1997,Trans-Dark Blue,1 +Divers,Diver and Shark,17,1997,White,2 +Divers,Diver and Shark,17,1997,Yellow,3 +Divers,Diver and Shark,17,1997,Trans-Red,1 +Divers,Diver and Shark,17,1997,Trans-Green,1 +Divers,Deep Sea Operation Base,905,2015,Red,17 +Divers,Deep Sea Operation Base,905,2015,Black,48 +Divers,Deep Sea Operation Base,905,2015,Blue,7 +Divers,Deep Sea Operation Base,905,2015,Bright Green,1 +Divers,Deep Sea Operation Base,905,2015,Dark Blue,16 +Divers,Deep Sea Operation Base,905,2015,Dark Bluish Gray,61 +Divers,Deep Sea Operation Base,905,2015,Dark Orange,1 +Divers,Deep Sea Operation Base,905,2015,Dark Tan,2 +Divers,Deep Sea Operation Base,905,2015,Green,1 +Divers,Deep Sea Operation Base,905,2015,Light Bluish Gray,62 +Divers,Deep Sea Operation Base,905,2015,Metallic Gold,1 +Divers,Deep Sea Operation Base,905,2015,Orange,6 +Divers,Deep Sea Operation Base,905,2015,Reddish Brown,3 +Divers,Deep Sea Operation Base,905,2015,Tan,1 +Divers,Deep Sea Operation Base,905,2015,Trans-Clear,3 +Divers,Deep Sea Operation Base,905,2015,Trans-Green,2 +Divers,Deep Sea Operation Base,905,2015,Trans-Light Blue,4 +Divers,Deep Sea Operation Base,905,2015,Trans-Neon Green,1 +Divers,Deep Sea Operation Base,905,2015,Trans-Red,2 +Divers,Deep Sea Operation Base,905,2015,Trans-Yellow,1 +Divers,Deep Sea Operation Base,905,2015,White,7 +Divers,Deep Sea Operation Base,905,2015,Yellow,59 +Divers,Deep Sea Exploration Vessel,715,2015,Trans-Red,1 +Divers,Deep Sea Exploration Vessel,715,2015,Trans-Yellow,3 +Divers,Deep Sea Exploration Vessel,715,2015,White,41 +Divers,Deep Sea Exploration Vessel,715,2015,Black,54 +Divers,Deep Sea Exploration Vessel,715,2015,Blue,2 +Divers,Deep Sea Exploration Vessel,715,2015,Bright Green,1 +Divers,Deep Sea Exploration Vessel,715,2015,Dark Azure,1 +Divers,Deep Sea Exploration Vessel,715,2015,Dark Blue,3 +Divers,Deep Sea Exploration Vessel,715,2015,Dark Bluish Gray,43 +Divers,Deep Sea Exploration Vessel,715,2015,Dark Green,1 +Divers,Deep Sea Exploration Vessel,715,2015,Dark Red,8 +Divers,Deep Sea Exploration Vessel,715,2015,Dark Tan,4 +Divers,Deep Sea Exploration Vessel,715,2015,Green,2 +Divers,Deep Sea Exploration Vessel,715,2015,Light Bluish Gray,57 +Divers,Deep Sea Exploration Vessel,715,2015,Medium Dark Flesh,2 +Divers,Deep Sea Exploration Vessel,715,2015,Yellow,34 +Divers,Deep Sea Exploration Vessel,715,2015,Metallic Gold,1 +Divers,Deep Sea Exploration Vessel,715,2015,Olive Green,1 +Divers,Deep Sea Exploration Vessel,715,2015,Orange,6 +Divers,Deep Sea Exploration Vessel,715,2015,Red,10 +Divers,Deep Sea Exploration Vessel,715,2015,Reddish Brown,3 +Divers,Deep Sea Exploration Vessel,715,2015,Tan,5 +Divers,Deep Sea Exploration Vessel,715,2015,Trans-Clear,4 +Divers,Deep Sea Exploration Vessel,715,2015,Trans-Green,1 +Divers,Deep Sea Exploration Vessel,715,2015,Trans-Light Blue,4 +Divers,Deep Sea Exploration Vessel,715,2015,Trans-Neon Green,1 +Divers,Deep Sea Helicopter,386,2015,Light Bluish Gray,38 +Divers,Deep Sea Helicopter,386,2015,Pearl Gold,1 +Divers,Deep Sea Helicopter,386,2015,Red,8 +Divers,Deep Sea Helicopter,386,2015,Reddish Brown,2 +Divers,Deep Sea Helicopter,386,2015,Tan,1 +Divers,Deep Sea Helicopter,386,2015,Trans-Black,1 +Divers,Deep Sea Helicopter,386,2015,Trans-Clear,2 +Divers,Deep Sea Helicopter,386,2015,Trans-Dark Blue,1 +Divers,Deep Sea Helicopter,386,2015,Trans-Green,1 +Divers,Deep Sea Helicopter,386,2015,Trans-Light Blue,3 +Divers,Deep Sea Helicopter,386,2015,Trans-Red,1 +Divers,Deep Sea Helicopter,386,2015,Trans-Yellow,1 +Divers,Deep Sea Helicopter,386,2015,White,3 +Divers,Deep Sea Helicopter,386,2015,Yellow,27 +Divers,Deep Sea Helicopter,386,2015,Black,26 +Divers,Deep Sea Helicopter,386,2015,Blue,4 +Divers,Deep Sea Helicopter,386,2015,Dark Blue,6 +Divers,Deep Sea Helicopter,386,2015,Dark Bluish Gray,37 +Divers,Deep Sea Submarine,273,2015,Pearl Gold,1 +Divers,Deep Sea Submarine,273,2015,Metallic Gold,1 +Divers,Deep Sea Submarine,273,2015,Light Bluish Gray,11 +Divers,Deep Sea Submarine,273,2015,Flat Silver,2 +Divers,Deep Sea Submarine,273,2015,Dark Tan,4 +Divers,Deep Sea Submarine,273,2015,Dark Red,2 +Divers,Deep Sea Submarine,273,2015,Dark Bluish Gray,28 +Divers,Deep Sea Submarine,273,2015,Dark Blue,1 +Divers,Deep Sea Submarine,273,2015,Bright Light Orange,1 +Divers,Deep Sea Submarine,273,2015,Bright Green,2 +Divers,Deep Sea Submarine,273,2015,Blue,7 +Divers,Deep Sea Submarine,273,2015,Black,30 +Divers,Deep Sea Submarine,273,2015,Red,8 +Divers,Deep Sea Submarine,273,2015,Reddish Brown,2 +Divers,Deep Sea Submarine,273,2015,Trans-Clear,2 +Divers,Deep Sea Submarine,273,2015,Trans-Green,1 +Divers,Deep Sea Submarine,273,2015,Trans-Light Blue,3 +Divers,Deep Sea Submarine,273,2015,Trans-Red,3 +Divers,Deep Sea Submarine,273,2015,White,6 +Divers,Deep Sea Submarine,273,2015,Yellow,20 +Divers,Deep Sea Starter Set,90,2015,Red,4 +Divers,Deep Sea Starter Set,90,2015,Reddish Brown,1 +Divers,Deep Sea Starter Set,90,2015,Tan,1 +Divers,Deep Sea Starter Set,90,2015,Trans-Clear,2 +Divers,Deep Sea Starter Set,90,2015,Trans-Light Blue,2 +Divers,Deep Sea Starter Set,90,2015,Trans-Red,2 +Divers,Deep Sea Starter Set,90,2015,White,1 +Divers,Deep Sea Starter Set,90,2015,Yellow,6 +Divers,Deep Sea Starter Set,90,2015,Black,10 +Divers,Deep Sea Starter Set,90,2015,Dark Bluish Gray,13 +Divers,Deep Sea Starter Set,90,2015,Dark Green,2 +Divers,Deep Sea Starter Set,90,2015,Dark Tan,1 +Divers,Deep Sea Starter Set,90,2015,Light Bluish Gray,5 +Divers,Deep Sea Starter Set,90,2015,Olive Green,2 +Divers,Deep Sea Starter Set,90,2015,Orange,2 +Divers,Deep Sea Starter Set,90,2015,Pearl Gold,1 +Divers,Deep Sea Scuba Scooter,42,2015,Dark Bluish Gray,6 +Divers,Deep Sea Scuba Scooter,42,2015,Bright Green,1 +Divers,Deep Sea Scuba Scooter,42,2015,Blue,1 +Divers,Deep Sea Scuba Scooter,42,2015,Black,6 +Divers,Deep Sea Scuba Scooter,42,2015,Yellow,4 +Divers,Deep Sea Scuba Scooter,42,2015,Trans-Neon Green,1 +Divers,Deep Sea Scuba Scooter,42,2015,Trans-Light Blue,2 +Divers,Deep Sea Scuba Scooter,42,2015,Trans-Clear,1 +Divers,Deep Sea Scuba Scooter,42,2015,Tan,1 +Divers,Deep Sea Scuba Scooter,42,2015,Red,2 +Divers,Deep Sea Scuba Scooter,42,2015,Light Bluish Gray,4 +Divers,Deep Sea Scuba Scooter,42,2015,Dark Red,1 +Drome Racers,Nitro Race Team,510,2002,[No Color],1 +Drome Racers,Nitro Race Team,510,2002,Pearl Dark Gray,5 +Drome Racers,Nitro Race Team,510,2002,Red,1 +Drome Racers,Nitro Race Team,510,2002,Trans-Light Blue,1 +Drome Racers,Nitro Race Team,510,2002,Trans-Red,2 +Drome Racers,Nitro Race Team,510,2002,Black,44 +Drome Racers,Nitro Race Team,510,2002,Dark Gray,9 +Drome Racers,Nitro Race Team,510,2002,Flat Silver,5 +Drome Racers,Nitro Race Team,510,2002,Light Gray,19 +Drome Racers,Nitro Race Team,510,2002,Orange,13 +Drome Racers,Street 'n' Mud Racer,348,2002,Pearl Dark Gray,4 +Drome Racers,Street 'n' Mud Racer,348,2002,Light Gray,13 +Drome Racers,Street 'n' Mud Racer,348,2002,Flat Silver,2 +Drome Racers,Street 'n' Mud Racer,348,2002,Dark Gray,4 +Drome Racers,Street 'n' Mud Racer,348,2002,Black,39 +Drome Racers,Street 'n' Mud Racer,348,2002,[No Color],1 +Drome Racers,Street 'n' Mud Racer,348,2002,Yellow,13 +Drome Racers,Street 'n' Mud Racer,348,2002,Trans-Neon Green,1 +Drome Racers,Street 'n' Mud Racer,348,2002,Trans-Red,2 +Drome Racers,Street 'n' Mud Racer,348,2002,White,1 +Drome Racers,Duel Racers,193,2002,Medium Orange,3 +Drome Racers,Duel Racers,193,2002,Orange,10 +Drome Racers,Duel Racers,193,2002,Red,14 +Drome Racers,Duel Racers,193,2002,Trans-Black,2 +Drome Racers,Duel Racers,193,2002,Trans-Green,1 +Drome Racers,Duel Racers,193,2002,Trans-Red,2 +Drome Racers,Duel Racers,193,2002,Trans-Yellow,1 +Drome Racers,Duel Racers,193,2002,Yellow,8 +Drome Racers,Duel Racers,193,2002,White,8 +Drome Racers,Duel Racers,193,2002,Black,27 +Drome Racers,Duel Racers,193,2002,Chrome Silver,1 +Drome Racers,Duel Racers,193,2002,Dark Gray,8 +Drome Racers,Duel Racers,193,2002,Light Gray,12 +Drome Racers,Slammer G-Force,147,2002,Dark Gray,5 +Drome Racers,Slammer G-Force,147,2002,Red,6 +Drome Racers,Slammer G-Force,147,2002,Pearl Dark Gray,3 +Drome Racers,Slammer G-Force,147,2002,Light Gray,11 +Drome Racers,Slammer G-Force,147,2002,Flat Silver,1 +Drome Racers,Slammer G-Force,147,2002,Black,22 +Drome Racers,Slammer Raptor,143,2002,Dark Gray,7 +Drome Racers,Slammer Raptor,143,2002,Black,26 +Drome Racers,Slammer Raptor,143,2002,Lime,4 +Drome Racers,Slammer Raptor,143,2002,Light Gray,5 +Drome Racers,Slammer Raptor,143,2002,Green,5 +Drome Racers,Slammer Raptor,143,2002,Flat Silver,1 +Drome Racers,Nitro Burner,118,2002,Red,2 +Drome Racers,Nitro Burner,118,2002,Pearl Dark Gray,5 +Drome Racers,Nitro Burner,118,2002,Orange,7 +Drome Racers,Nitro Burner,118,2002,Light Gray,6 +Drome Racers,Nitro Burner,118,2002,Dark Gray,5 +Drome Racers,Nitro Burner,118,2002,Black,17 +Drome Racers,Nitro Burner,118,2002,Flat Silver,2 +Drome Racers,Power Crusher,86,2002,Dark Gray,4 +Drome Racers,Power Crusher,86,2002,Flat Silver,1 +Drome Racers,Power Crusher,86,2002,Light Gray,5 +Drome Racers,Power Crusher,86,2002,Orange,3 +Drome Racers,Power Crusher,86,2002,Pearl Dark Gray,2 +Drome Racers,Power Crusher,86,2002,Black,21 +Drome Racers,Storming Cobra,76,2002,Yellow,10 +Drome Racers,Storming Cobra,76,2002,Trans-Red,1 +Drome Racers,Storming Cobra,76,2002,Black,9 +Drome Racers,Storming Cobra,76,2002,Blue,1 +Drome Racers,Storming Cobra,76,2002,Trans-Neon Green,1 +Drome Racers,Storming Cobra,76,2002,Dark Gray,2 +Drome Racers,Storming Cobra,76,2002,Green,8 +Drome Racers,Storming Cobra,76,2002,Lime,11 +Drome Racers,Storming Cobra,76,2002,Red,1 +Drome Racers,Storming Cobra,76,2002,Trans-Green,1 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Trans-Green,1 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Black,12 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Blue,6 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Dark Gray,1 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Dark Red,1 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Light Gray,6 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Medium Blue,3 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Red,5 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Trans-Dark Blue,1 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Trans-Neon Orange,1 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Trans-Red,1 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Trans-Yellow,1 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,White,6 +Drome Racers,Zero Hurricane & Red Blizzard,74,2002,Yellow,2 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Yellow,7 +Drome Racers,Zero Tornado & Hot Rock,71,2002,White,1 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Trans-Neon Green,1 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Trans-Dark Blue,1 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Red,4 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Orange,2 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Medium Blue,3 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Green,4 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Dark Gray,4 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Brown,3 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Blue,1 +Drome Racers,Zero Tornado & Hot Rock,71,2002,Black,8 +Drome Racers,Maverick Sprinter & Hot Arrow,66,2002,Black,12 +Drome Racers,Maverick Sprinter & Hot Arrow,66,2002,Dark Gray,2 +Drome Racers,Maverick Sprinter & Hot Arrow,66,2002,Yellow,10 +Drome Racers,Maverick Sprinter & Hot Arrow,66,2002,White,2 +Drome Racers,Maverick Sprinter & Hot Arrow,66,2002,Trans-Neon Green,1 +Drome Racers,Maverick Sprinter & Hot Arrow,66,2002,Trans-Light Blue,1 +Drome Racers,Maverick Sprinter & Hot Arrow,66,2002,Orange,2 +Drome Racers,Maverick Sprinter & Hot Arrow,66,2002,Lime,1 +Drome Racers,Maverick Sprinter & Hot Arrow,66,2002,Light Gray,6 +Drome Racers,Maverick Sprinter & Hot Arrow,66,2002,Green,5 +Drome Racers,Nitro Pulverizer,61,2002,Black,12 +Drome Racers,Nitro Pulverizer,61,2002,Blue,8 +Drome Racers,Nitro Pulverizer,61,2002,Light Gray,3 +Drome Racers,Nitro Pulverizer,61,2002,Medium Blue,2 +Drome Racers,Nitro Pulverizer,61,2002,Dark Gray,4 +Drome Racers,Nitro Pulverizer,61,2002,Trans-Black,2 +Drome Racers,Nitro Pulverizer,61,2002,Trans-Clear,1 +Drome Racers,Nitro Pulverizer,61,2002,Yellow,6 +Drome Racers,Hot Scorcher,58,2002,Black,9 +Drome Racers,Hot Scorcher,58,2002,Dark Gray,3 +Drome Racers,Hot Scorcher,58,2002,Light Gray,4 +Drome Racers,Hot Scorcher,58,2002,Medium Orange,4 +Drome Racers,Hot Scorcher,58,2002,Orange,4 +Drome Racers,Hot Scorcher,58,2002,Red,5 +Drome Racers,Hot Scorcher,58,2002,Trans-Black,1 +Drome Racers,Hot Scorcher,58,2002,Yellow,6 +Drome Racers,Maverick Storm,31,2002,White,1 +Drome Racers,Maverick Storm,31,2002,Black,5 +Drome Racers,Maverick Storm,31,2002,Dark Gray,5 +Drome Racers,Maverick Storm,31,2002,Green,5 +Drome Racers,Maverick Storm,31,2002,Lime,1 +Drome Racers,Maverick Storm,31,2002,Red,3 +Drome Racers,Maverick Storm,31,2002,Trans-Black,1 +Drome Racers,Red Bullet,29,2002,Light Gray,1 +Drome Racers,Red Bullet,29,2002,Orange,4 +Drome Racers,Red Bullet,29,2002,Red,5 +Drome Racers,Red Bullet,29,2002,Trans-Black,1 +Drome Racers,Red Bullet,29,2002,Yellow,1 +Drome Racers,Red Bullet,29,2002,Black,4 +Drome Racers,Red Bullet,29,2002,Dark Gray,3 +Drome Racers,Flash Turbo,28,2002,Light Gray,1 +Drome Racers,Flash Turbo,28,2002,Green,3 +Drome Racers,Flash Turbo,28,2002,Black,5 +Drome Racers,Star Burst/Star Strike,28,2002,Red,3 +Drome Racers,Star Burst/Star Strike,28,2002,Trans-Light Blue,1 +Drome Racers,Star Burst/Star Strike,28,2002,Trans-Neon Orange,1 +Drome Racers,Star Burst/Star Strike,28,2002,Yellow,1 +Drome Racers,Flash Turbo,28,2002,Red,4 +Drome Racers,Flash Turbo,28,2002,Trans-Black,1 +Drome Racers,Flash Turbo,28,2002,Yellow,1 +Drome Racers,Flash Turbo,28,2002,Lime,5 +Drome Racers,Star Burst/Star Strike,28,2002,Black,5 +Drome Racers,Star Burst/Star Strike,28,2002,Blue,4 +Drome Racers,Star Burst/Star Strike,28,2002,Dark Gray,1 +Drome Racers,Star Burst/Star Strike,28,2002,Medium Blue,4 +Drome Racers,Red Monster,25,2002,Black,7 +Drome Racers,Red Monster,25,2002,Orange,2 +Drome Racers,Red Monster,25,2002,Red,5 +Drome Racers,Red Monster,25,2002,Yellow,1 +Drome Racers,Blue Power,22,2002,Yellow,1 +Drome Racers,Blue Power,22,2002,Trans-Neon Green,1 +Drome Racers,Blue Power,22,2002,Light Gray,1 +Drome Racers,Blue Power,22,2002,Light Blue,2 +Drome Racers,Blue Power,22,2002,Dark Gray,1 +Drome Racers,Blue Power,22,2002,Blue,4 +Drome Racers,Blue Power,22,2002,Black,4 +Drome Racers,Lightning Streak,19,2002,Trans-Black,1 +Drome Racers,Lightning Streak,19,2002,Yellow,4 +Drome Racers,Lightning Streak,19,2002,White,1 +Drome Racers,Lightning Streak,19,2002,Black,3 +Drome Racers,Lightning Streak,19,2002,Light Gray,1 +Drome Racers,Lightning Streak,19,2002,Orange,2 +Drome Racers,Nesquik Quicky Racer,17,2002,Yellow,4 +Drome Racers,Nesquik Quicky Racer,17,2002,White,1 +Drome Racers,Nesquik Quicky Racer,17,2002,Red,1 +Drome Racers,Nesquik Quicky Racer,17,2002,Light Gray,1 +Drome Racers,Nesquik Quicky Racer,17,2002,Brown,1 +Drome Racers,Nesquik Quicky Racer,17,2002,Blue,1 +Drome Racers,Nesquik Quicky Racer,17,2002,Black,2 +Drome Racers,Racers Turbo Pack,2,2002,Royal Blue,2 +Drome Racers,Blue Racer,31,2004,Black,5 +Drome Racers,Blue Racer,31,2004,Blue,4 +Drome Racers,Blue Racer,31,2004,Dark Bluish Gray,2 +Drome Racers,Blue Racer,31,2004,Light Bluish Gray,1 +Drome Racers,Blue Racer,31,2004,Medium Blue,2 +Drome Racers,Blue Racer,31,2004,Yellow,6 +Drome Racers,Racing Car,28,2004,Black,10 +Drome Racers,Racing Car,28,2004,Dark Bluish Gray,2 +Drome Racers,Racing Car,28,2004,Light Bluish Gray,1 +Drome Racers,Racing Car,28,2004,Yellow,3 +Drome Racers,Orange Racer,24,2004,Black,5 +Drome Racers,Orange Racer,24,2004,Dark Bluish Gray,2 +Drome Racers,Orange Racer,24,2004,Light Bluish Gray,1 +Drome Racers,Orange Racer,24,2004,Red,5 +Drome Racers,Orange Racer,24,2004,Orange,3 +Duplo,Police Station,26,1977,[No Color],3 +Duplo,Police Station,26,1977,Blue,4 +Duplo,Police Station,26,1977,Green,2 +Duplo,Police Station,26,1977,Red,1 +Duplo,Police Station,26,1977,Yellow,6 +Duplo,Miles' Space Adventures,23,2017,Black,1 +Duplo,Miles' Space Adventures,23,2017,Bright Light Orange,2 +Duplo,Miles' Space Adventures,23,2017,Dark Azure,2 +Duplo,Miles' Space Adventures,23,2017,Light Bluish Gray,1 +Duplo,Miles' Space Adventures,23,2017,Lime,2 +Duplo,Miles' Space Adventures,23,2017,Medium Blue,1 +Duplo,Miles' Space Adventures,23,2017,Orange,3 +Duplo,Miles' Space Adventures,23,2017,Red,2 +Duplo,Miles' Space Adventures,23,2017,Trans-Orange,1 +Duplo,Miles' Space Adventures,23,2017,Trans-Yellow,1 +Duplo,Miles' Space Adventures,23,2017,White,1 +Duplo,Miles' Space Adventures,23,2017,Yellow,1 +Duplo,My First Number Train,19,2017,Orange,3 +Duplo,My First Number Train,19,2017,Red,1 +Duplo,My First Number Train,19,2017,Yellow,1 +Duplo,My First Number Train,19,2017,Black,1 +Duplo,My First Number Train,19,2017,Bright Green,1 +Duplo,My First Number Train,19,2017,Dark Azure,2 +Duplo,My First Number Train,19,2017,Green,1 +Duplo,My First Number Train,19,2017,Lime,3 +Duplo,My First Number Train,19,2017,Medium Azure,4 +Duplo,My First Number Train,19,2017,Medium Lavender,1 +Duplo,My First Plane,10,2017,Blue,3 +Duplo,My First Plane,10,2017,Medium Azure,4 +Duplo,My First Plane,10,2017,Yellow,1 +Duplo,My First Bird,7,2017,Orange,1 +Duplo,My First Bird,7,2017,Red,3 +Duplo,My First Bird,7,2017,Yellow,1 +Easter,Chick,6,1985,Red,1 +Easter,Chick,6,1985,Yellow,4 +Easter,Easter Egg Hunt -2017,145,2017,Black,8 +Easter,Easter Egg Hunt -2017,145,2017,Bright Green,2 +Easter,Easter Egg Hunt -2017,145,2017,Bright Light Blue,1 +Easter,Easter Egg Hunt -2017,145,2017,Bright Light Orange,3 +Easter,Easter Egg Hunt -2017,145,2017,Dark Azure,1 +Easter,Easter Egg Hunt -2017,145,2017,Dark Blue,1 +Easter,Easter Egg Hunt -2017,145,2017,Dark Bluish Gray,3 +Easter,Easter Egg Hunt -2017,145,2017,Dark Brown,4 +Easter,Easter Egg Hunt -2017,145,2017,Dark Orange,1 +Easter,Easter Egg Hunt -2017,145,2017,Dark Tan,4 +Easter,Easter Egg Hunt -2017,145,2017,Green,1 +Easter,Easter Egg Hunt -2017,145,2017,Lavender,1 +Easter,Easter Egg Hunt -2017,145,2017,Light Bluish Gray,7 +Easter,Easter Egg Hunt -2017,145,2017,Lime,3 +Easter,Easter Egg Hunt -2017,145,2017,Medium Azure,1 +Easter,Easter Egg Hunt -2017,145,2017,Medium Dark Flesh,1 +Easter,Easter Egg Hunt -2017,145,2017,Medium Lavender,1 +Easter,Easter Egg Hunt -2017,145,2017,Orange,1 +Easter,Easter Egg Hunt -2017,145,2017,Red,4 +Easter,Easter Egg Hunt -2017,145,2017,Reddish Brown,2 +Easter,Easter Egg Hunt -2017,145,2017,Tan,2 +Easter,Easter Egg Hunt -2017,145,2017,Trans-Yellow,1 +Easter,Easter Egg Hunt -2017,145,2017,White,5 +Easter,Easter Egg Hunt -2017,145,2017,Yellow,2 +Educational and Dacta,Community Vehicles,251,1988,Black,18 +Educational and Dacta,Community Vehicles,251,1988,Blue,17 +Educational and Dacta,Community Vehicles,251,1988,Brown,1 +Educational and Dacta,Community Vehicles,251,1988,Light Gray,3 +Educational and Dacta,Community Vehicles,251,1988,Red,23 +Educational and Dacta,Community Vehicles,251,1988,Trans-Clear,3 +Educational and Dacta,Community Vehicles,251,1988,Trans-Dark Blue,1 +Educational and Dacta,Community Vehicles,251,1988,Trans-Red,1 +Educational and Dacta,Community Vehicles,251,1988,Trans-Yellow,2 +Educational and Dacta,Community Vehicles,251,1988,White,28 +Educational and Dacta,Community Vehicles,251,1988,Yellow,18 +Educational and Dacta,Creative Lego Brick Set,998,2016,Black,12 +Educational and Dacta,Creative Lego Brick Set,998,2016,Blue,13 +Educational and Dacta,Creative Lego Brick Set,998,2016,Dark Purple,4 +Educational and Dacta,Creative Lego Brick Set,998,2016,Green,13 +Educational and Dacta,Creative Lego Brick Set,998,2016,Lime,4 +Educational and Dacta,Creative Lego Brick Set,998,2016,Medium Blue,4 +Educational and Dacta,Creative Lego Brick Set,998,2016,Orange,5 +Educational and Dacta,Creative Lego Brick Set,998,2016,Red,13 +Educational and Dacta,Creative Lego Brick Set,998,2016,White,12 +Educational and Dacta,Creative Lego Brick Set,998,2016,Yellow,13 +Educational and Dacta,Crossing the River,14,2016,Blue,1 +Educational and Dacta,Crossing the River,14,2016,Bright Green,1 +Educational and Dacta,Crossing the River,14,2016,Dark Orange,1 +Educational and Dacta,Crossing the River,14,2016,Flat Silver,1 +Educational and Dacta,Crossing the River,14,2016,Lime,1 +Educational and Dacta,Crossing the River,14,2016,Orange,1 +Educational and Dacta,Crossing the River,14,2016,Reddish Brown,1 +Educational and Dacta,Crossing the River,14,2016,White,1 +eLAB,eLAB Renewable Energy Set,713,1999,Black,36 +eLAB,eLAB Renewable Energy Set,713,1999,Blue,5 +eLAB,eLAB Renewable Energy Set,713,1999,Dark Gray,5 +eLAB,eLAB Renewable Energy Set,713,1999,Green,4 +eLAB,eLAB Renewable Energy Set,713,1999,Light Gray,27 +eLAB,eLAB Renewable Energy Set,713,1999,Red,8 +eLAB,eLAB Renewable Energy Set,713,1999,White,4 +eLAB,eLAB Renewable Energy Set,713,1999,Yellow,9 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Orange,2 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Pearl Gold,11 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Red,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Reddish Brown,18 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Sand Blue,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Tan,30 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Trans-Bright Green,4 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Trans-Clear,6 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Trans-Dark Blue,2 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Trans-Dark Pink,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Trans-Green,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Yellow,3 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Trans-Light Blue,5 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Trans-Orange,2 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Trans-Purple,4 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Trans-Red,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,White,22 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Light Aqua,4 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Medium Lavender,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Medium Dark Flesh,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Medium Azure,6 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Magenta,9 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Lime,11 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Light Flesh,6 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Light Bluish Gray,41 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Lavender,10 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Green,5 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Flat Silver,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Dark Tan,6 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Dark Red,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Dark Purple,9 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Dark Pink,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Dark Brown,3 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Dark Bluish Gray,10 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Dark Blue,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Bright Pink,3 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Bright Light Orange,3 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Bright Light Blue,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Bright Green,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Blue,1 +Elves,Skyra’s Mysterious Sky Castle,813,2015,Black,21 +Elves,Skyra’s Mysterious Sky Castle,813,2015,[No Color],1 +Elves,The Elves’ Treetop Hideaway,516,2015,Dark Purple,2 +Elves,The Elves’ Treetop Hideaway,516,2015,Dark Pink,2 +Elves,The Elves’ Treetop Hideaway,516,2015,Dark Orange,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Dark Green,9 +Elves,The Elves’ Treetop Hideaway,516,2015,Dark Brown,4 +Elves,The Elves’ Treetop Hideaway,516,2015,Dark Bluish Gray,5 +Elves,The Elves’ Treetop Hideaway,516,2015,Bright Green,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Blue,2 +Elves,The Elves’ Treetop Hideaway,516,2015,[No Color],1 +Elves,The Elves’ Treetop Hideaway,516,2015,Trans-Bright Green,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Tan,18 +Elves,The Elves’ Treetop Hideaway,516,2015,Sand Green,5 +Elves,The Elves’ Treetop Hideaway,516,2015,Sand Blue,3 +Elves,The Elves’ Treetop Hideaway,516,2015,Reddish Brown,16 +Elves,The Elves’ Treetop Hideaway,516,2015,Red,2 +Elves,The Elves’ Treetop Hideaway,516,2015,Pearl Gold,7 +Elves,The Elves’ Treetop Hideaway,516,2015,Orange,2 +Elves,The Elves’ Treetop Hideaway,516,2015,Medium Lavender,7 +Elves,The Elves’ Treetop Hideaway,516,2015,Medium Dark Flesh,5 +Elves,The Elves’ Treetop Hideaway,516,2015,Medium Azure,7 +Elves,The Elves’ Treetop Hideaway,516,2015,Magenta,4 +Elves,The Elves’ Treetop Hideaway,516,2015,Lime,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Light Flesh,4 +Elves,The Elves’ Treetop Hideaway,516,2015,Light Bluish Gray,8 +Elves,The Elves’ Treetop Hideaway,516,2015,Lavender,2 +Elves,The Elves’ Treetop Hideaway,516,2015,Green,4 +Elves,The Elves’ Treetop Hideaway,516,2015,Glitter Trans-Purple,1 +Elves,The Elves’ Treetop Hideaway,516,2015,White,3 +Elves,The Elves’ Treetop Hideaway,516,2015,Bright Light Orange,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Black,26 +Elves,The Elves’ Treetop Hideaway,516,2015,Glitter Trans-Clear,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Dark Tan,2 +Elves,The Elves’ Treetop Hideaway,516,2015,Dark Red,18 +Elves,The Elves’ Treetop Hideaway,516,2015,Trans-Clear,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Trans-Dark Pink,2 +Elves,The Elves’ Treetop Hideaway,516,2015,Trans-Green,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Trans-Light Blue,2 +Elves,The Elves’ Treetop Hideaway,516,2015,Trans-Neon Green,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Trans-Orange,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Trans-Purple,1 +Elves,The Elves’ Treetop Hideaway,516,2015,Trans-Red,1 +Elves,Azari and the Magical Bakery,324,2015,Dark Bluish Gray,7 +Elves,Azari and the Magical Bakery,324,2015,Dark Brown,3 +Elves,Azari and the Magical Bakery,324,2015,Dark Orange,2 +Elves,Azari and the Magical Bakery,324,2015,Dark Purple,1 +Elves,Azari and the Magical Bakery,324,2015,Light Bluish Gray,16 +Elves,Azari and the Magical Bakery,324,2015,Dark Red,2 +Elves,Azari and the Magical Bakery,324,2015,Flat Silver,1 +Elves,Azari and the Magical Bakery,324,2015,Dark Tan,1 +Elves,Azari and the Magical Bakery,324,2015,Glitter Trans-Purple,1 +Elves,Azari and the Magical Bakery,324,2015,[No Color],1 +Elves,Azari and the Magical Bakery,324,2015,Green,2 +Elves,Azari and the Magical Bakery,324,2015,Black,8 +Elves,Azari and the Magical Bakery,324,2015,Lavender,1 +Elves,Azari and the Magical Bakery,324,2015,Light Flesh,2 +Elves,Azari and the Magical Bakery,324,2015,Lime,4 +Elves,Azari and the Magical Bakery,324,2015,Magenta,8 +Elves,Azari and the Magical Bakery,324,2015,Medium Dark Flesh,9 +Elves,Azari and the Magical Bakery,324,2015,Pearl Gold,6 +Elves,Azari and the Magical Bakery,324,2015,Reddish Brown,18 +Elves,Azari and the Magical Bakery,324,2015,Tan,17 +Elves,Azari and the Magical Bakery,324,2015,Trans-Clear,1 +Elves,Azari and the Magical Bakery,324,2015,Trans-Dark Blue,1 +Elves,Azari and the Magical Bakery,324,2015,Trans-Dark Pink,3 +Elves,Azari and the Magical Bakery,324,2015,Trans-Neon Orange,1 +Elves,Azari and the Magical Bakery,324,2015,Bright Pink,2 +Elves,Azari and the Magical Bakery,324,2015,Trans-Purple,1 +Elves,Azari and the Magical Bakery,324,2015,Trans-Red,2 +Elves,Azari and the Magical Bakery,324,2015,White,5 +Elves,Azari and the Magical Bakery,324,2015,Yellow,3 +Elves,Azari and the Magical Bakery,324,2015,Blue,1 +Elves,Azari and the Magical Bakery,324,2015,Bright Light Orange,10 +Elves,Azari and the Magical Bakery,324,2015,Trans-Orange,5 +Elves,Aira's Pegasus Sleigh,319,2015,Tan,5 +Elves,Aira's Pegasus Sleigh,319,2015,Trans-Clear,2 +Elves,Aira's Pegasus Sleigh,319,2015,Trans-Dark Pink,2 +Elves,Aira's Pegasus Sleigh,319,2015,Trans-Purple,3 +Elves,Aira's Pegasus Sleigh,319,2015,Trans-Red,1 +Elves,Aira's Pegasus Sleigh,319,2015,Trans-Yellow,1 +Elves,Aira's Pegasus Sleigh,319,2015,White,22 +Elves,Aira's Pegasus Sleigh,319,2015,Yellow,11 +Elves,Aira's Pegasus Sleigh,319,2015,Medium Lavender,11 +Elves,Aira's Pegasus Sleigh,319,2015,Medium Dark Flesh,4 +Elves,Aira's Pegasus Sleigh,319,2015,Magenta,1 +Elves,Aira's Pegasus Sleigh,319,2015,Lime,5 +Elves,Aira's Pegasus Sleigh,319,2015,Light Flesh,2 +Elves,Aira's Pegasus Sleigh,319,2015,Light Bluish Gray,16 +Elves,Aira's Pegasus Sleigh,319,2015,Light Aqua,1 +Elves,Aira's Pegasus Sleigh,319,2015,Green,1 +Elves,Aira's Pegasus Sleigh,319,2015,Flat Silver,3 +Elves,Aira's Pegasus Sleigh,319,2015,Dark Tan,1 +Elves,Aira's Pegasus Sleigh,319,2015,Dark Red,2 +Elves,Aira's Pegasus Sleigh,319,2015,Dark Purple,4 +Elves,Aira's Pegasus Sleigh,319,2015,Dark Pink,1 +Elves,Aira's Pegasus Sleigh,319,2015,Bright Light Orange,1 +Elves,Aira's Pegasus Sleigh,319,2015,Blue,1 +Elves,Aira's Pegasus Sleigh,319,2015,Black,14 +Elves,Aira's Pegasus Sleigh,319,2015,[No Color],1 +Elves,Aira's Pegasus Sleigh,319,2015,Dark Bluish Gray,12 +Elves,Aira's Pegasus Sleigh,319,2015,Medium Azure,5 +Elves,Aira's Pegasus Sleigh,319,2015,Pearl Gold,9 +Elves,Aira's Pegasus Sleigh,319,2015,Red,1 +Elves,Aira's Pegasus Sleigh,319,2015,Reddish Brown,6 +Elves,Aira's Pegasus Sleigh,319,2015,Lavender,5 +Elves,Naida's Epic Adventure Ship,312,2015,Light Aqua,3 +Elves,Naida's Epic Adventure Ship,312,2015,Light Bluish Gray,4 +Elves,Naida's Epic Adventure Ship,312,2015,Light Flesh,4 +Elves,Naida's Epic Adventure Ship,312,2015,Lime,1 +Elves,Naida's Epic Adventure Ship,312,2015,Magenta,2 +Elves,Naida's Epic Adventure Ship,312,2015,Medium Azure,14 +Elves,Naida's Epic Adventure Ship,312,2015,Medium Lavender,1 +Elves,Naida's Epic Adventure Ship,312,2015,Pearl Gold,14 +Elves,Naida's Epic Adventure Ship,312,2015,Red,1 +Elves,Naida's Epic Adventure Ship,312,2015,Reddish Brown,14 +Elves,Naida's Epic Adventure Ship,312,2015,Tan,19 +Elves,Naida's Epic Adventure Ship,312,2015,Trans-Clear,3 +Elves,Naida's Epic Adventure Ship,312,2015,Trans-Dark Blue,3 +Elves,Naida's Epic Adventure Ship,312,2015,Trans-Dark Pink,1 +Elves,Naida's Epic Adventure Ship,312,2015,Trans-Light Blue,1 +Elves,Naida's Epic Adventure Ship,312,2015,Trans-Orange,1 +Elves,Naida's Epic Adventure Ship,312,2015,Trans-Purple,2 +Elves,Naida's Epic Adventure Ship,312,2015,White,5 +Elves,Naida's Epic Adventure Ship,312,2015,[No Color],1 +Elves,Naida's Epic Adventure Ship,312,2015,Black,23 +Elves,Naida's Epic Adventure Ship,312,2015,Bright Green,2 +Elves,Naida's Epic Adventure Ship,312,2015,Dark Blue,15 +Elves,Naida's Epic Adventure Ship,312,2015,Dark Bluish Gray,3 +Elves,Naida's Epic Adventure Ship,312,2015,Dark Pink,3 +Elves,Naida's Epic Adventure Ship,312,2015,Dark Purple,4 +Elves,Naida's Epic Adventure Ship,312,2015,Green,1 +Elves,Naida's Epic Adventure Ship,312,2015,Lavender,1 +Elves,Naida's Spa Secret,248,2015,Dark Red,1 +Elves,Naida's Spa Secret,248,2015,Dark Tan,1 +Elves,Naida's Spa Secret,248,2015,Lavender,2 +Elves,Naida's Spa Secret,248,2015,Light Aqua,2 +Elves,Naida's Spa Secret,248,2015,Light Bluish Gray,21 +Elves,Naida's Spa Secret,248,2015,Light Flesh,2 +Elves,Naida's Spa Secret,248,2015,Lime,1 +Elves,Naida's Spa Secret,248,2015,Magenta,4 +Elves,Naida's Spa Secret,248,2015,Medium Azure,10 +Elves,Naida's Spa Secret,248,2015,Medium Lavender,2 +Elves,Naida's Spa Secret,248,2015,Pearl Gold,3 +Elves,Naida's Spa Secret,248,2015,Red,1 +Elves,Naida's Spa Secret,248,2015,Reddish Brown,19 +Elves,Naida's Spa Secret,248,2015,Tan,8 +Elves,Naida's Spa Secret,248,2015,Trans-Clear,4 +Elves,Naida's Spa Secret,248,2015,Trans-Dark Blue,3 +Elves,Naida's Spa Secret,248,2015,Trans-Dark Pink,4 +Elves,Naida's Spa Secret,248,2015,Trans-Green,1 +Elves,Naida's Spa Secret,248,2015,Trans-Light Blue,6 +Elves,Naida's Spa Secret,248,2015,White,5 +Elves,Naida's Spa Secret,248,2015,Blue,2 +Elves,Naida's Spa Secret,248,2015,Bright Pink,2 +Elves,Naida's Spa Secret,248,2015,Dark Purple,3 +Elves,Naida's Spa Secret,248,2015,Dark Pink,3 +Elves,Naida's Spa Secret,248,2015,Dark Green,1 +Elves,Naida's Spa Secret,248,2015,Dark Brown,3 +Elves,Naida's Spa Secret,248,2015,Dark Bluish Gray,12 +Elves,Naida's Spa Secret,248,2015,Bright Green,1 +Elves,Naida's Spa Secret,248,2015,Black,4 +Elves,Farran and the Crystal Hollow,178,2015,Trans-Yellow,1 +Elves,Farran and the Crystal Hollow,178,2015,Trans-Medium Blue,2 +Elves,Farran and the Crystal Hollow,178,2015,Trans-Light Blue,2 +Elves,Farran and the Crystal Hollow,178,2015,Trans-Green,4 +Elves,Farran and the Crystal Hollow,178,2015,Trans-Dark Pink,2 +Elves,Farran and the Crystal Hollow,178,2015,Trans-Dark Blue,1 +Elves,Farran and the Crystal Hollow,178,2015,Trans-Clear,1 +Elves,Farran and the Crystal Hollow,178,2015,Trans-Bright Green,1 +Elves,Farran and the Crystal Hollow,178,2015,Tan,6 +Elves,Farran and the Crystal Hollow,178,2015,Reddish Brown,8 +Elves,Farran and the Crystal Hollow,178,2015,Pearl Gold,3 +Elves,Farran and the Crystal Hollow,178,2015,Medium Dark Flesh,1 +Elves,Farran and the Crystal Hollow,178,2015,Magenta,2 +Elves,Farran and the Crystal Hollow,178,2015,Light Flesh,2 +Elves,Farran and the Crystal Hollow,178,2015,Light Bluish Gray,10 +Elves,Farran and the Crystal Hollow,178,2015,Lavender,2 +Elves,Farran and the Crystal Hollow,178,2015,Green,5 +Elves,Farran and the Crystal Hollow,178,2015,Dark Red,8 +Elves,Farran and the Crystal Hollow,178,2015,Lime,4 +Elves,Farran and the Crystal Hollow,178,2015,Dark Pink,1 +Elves,Farran and the Crystal Hollow,178,2015,Dark Green,2 +Elves,Farran and the Crystal Hollow,178,2015,Dark Brown,5 +Elves,Farran and the Crystal Hollow,178,2015,Dark Bluish Gray,2 +Elves,Farran and the Crystal Hollow,178,2015,Bright Light Orange,1 +Elves,Farran and the Crystal Hollow,178,2015,Black,3 +Elves,Farran and the Crystal Hollow,178,2015,Dark Purple,1 +Elves,Aira's Creative Workshop,98,2015,Red,1 +Elves,Aira's Creative Workshop,98,2015,Black,1 +Elves,Aira's Creative Workshop,98,2015,Dark Purple,3 +Elves,Aira's Creative Workshop,98,2015,Flat Silver,1 +Elves,Aira's Creative Workshop,98,2015,Green,1 +Elves,Aira's Creative Workshop,98,2015,Lavender,2 +Elves,Aira's Creative Workshop,98,2015,Light Bluish Gray,4 +Elves,Aira's Creative Workshop,98,2015,Light Flesh,2 +Elves,Aira's Creative Workshop,98,2015,Magenta,4 +Elves,Aira's Creative Workshop,98,2015,Medium Dark Flesh,1 +Elves,Aira's Creative Workshop,98,2015,Pearl Gold,5 +Elves,Aira's Creative Workshop,98,2015,Medium Lavender,4 +Elves,Aira's Creative Workshop,98,2015,White,15 +Elves,Aira's Creative Workshop,98,2015,Trans-Purple,3 +Elves,Aira's Creative Workshop,98,2015,Trans-Dark Pink,1 +Elves,Aira's Creative Workshop,98,2015,Trans-Clear,1 +Elves,Aira's Creative Workshop,98,2015,Tan,7 +Elves,Aira's Creative Workshop,98,2015,Reddish Brown,8 +Elves,Azari’s Magic Fire,27,2015,Trans-Red,1 +Elves,Azari’s Magic Fire,27,2015,Trans-Orange,2 +Elves,Azari’s Magic Fire,27,2015,Trans-Dark Pink,1 +Elves,Azari’s Magic Fire,27,2015,Reddish Brown,4 +Elves,Azari’s Magic Fire,27,2015,Red,2 +Elves,Azari’s Magic Fire,27,2015,Pearl Gold,1 +Elves,Azari’s Magic Fire,27,2015,Medium Dark Flesh,2 +Elves,Azari’s Magic Fire,27,2015,Magenta,2 +Elves,Azari’s Magic Fire,27,2015,Lavender,1 +Elves,Azari’s Magic Fire,27,2015,Dark Red,2 +Elves,Azari’s Magic Fire,27,2015,Dark Pink,1 +Elves,Azari’s Magic Fire,27,2015,Bright Light Orange,2 +Elves,Enki the Panther,14,2015,Dark Orange,1 +Elves,Enki the Panther,14,2015,Dark Pink,1 +Elves,Enki the Panther,14,2015,Dark Red,2 +Elves,Enki the Panther,14,2015,Green,1 +Elves,Enki the Panther,14,2015,Lavender,1 +Elves,Enki the Panther,14,2015,Lime,2 +Elves,Enki the Panther,14,2015,Reddish Brown,2 +Elves,Enki the Panther,14,2015,Sand Blue,1 +Elves,Enki the Panther,14,2015,Trans-Light Blue,1 +Elves,Flamy the Fox,12,2015,Trans-Orange,1 +Elves,Flamy the Fox,12,2015,Trans-Dark Pink,1 +Elves,Flamy the Fox,12,2015,Bright Light Orange,2 +Elves,Flamy the Fox,12,2015,Dark Pink,1 +Elves,Flamy the Fox,12,2015,Dark Red,1 +Elves,Flamy the Fox,12,2015,Light Bluish Gray,1 +Elves,Flamy the Fox,12,2015,Magenta,2 +Elves,Flamy the Fox,12,2015,Tan,1 +Elves,Flamy the Fox,12,2015,Trans-Dark Blue,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Lavender,2 +Elves,Magic Rescue from the Goblin Village,637,2017,Light Aqua,2 +Elves,Magic Rescue from the Goblin Village,637,2017,Yellow,5 +Elves,Magic Rescue from the Goblin Village,637,2017,Light Flesh,2 +Elves,Magic Rescue from the Goblin Village,637,2017,Lime,7 +Elves,Magic Rescue from the Goblin Village,637,2017,Magenta,5 +Elves,Magic Rescue from the Goblin Village,637,2017,Medium Azure,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Medium Blue,6 +Elves,Magic Rescue from the Goblin Village,637,2017,Medium Dark Flesh,8 +Elves,Magic Rescue from the Goblin Village,637,2017,Medium Lavender,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Orange,8 +Elves,Magic Rescue from the Goblin Village,637,2017,Pearl Dark Gray,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Red,6 +Elves,Magic Rescue from the Goblin Village,637,2017,Reddish Brown,45 +Elves,Magic Rescue from the Goblin Village,637,2017,Light Bluish Gray,34 +Elves,Magic Rescue from the Goblin Village,637,2017,Tan,4 +Elves,Magic Rescue from the Goblin Village,637,2017,Trans-Bright Green,3 +Elves,Magic Rescue from the Goblin Village,637,2017,Trans-Clear,2 +Elves,Magic Rescue from the Goblin Village,637,2017,Trans-Dark Pink,4 +Elves,Magic Rescue from the Goblin Village,637,2017,Trans-Green,3 +Elves,Magic Rescue from the Goblin Village,637,2017,Trans-Light Blue,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Trans-Orange,2 +Elves,Magic Rescue from the Goblin Village,637,2017,Trans-Red,2 +Elves,Magic Rescue from the Goblin Village,637,2017,White,5 +Elves,Magic Rescue from the Goblin Village,637,2017,Dark Blue,12 +Elves,Magic Rescue from the Goblin Village,637,2017,Yellowish Green,9 +Elves,Magic Rescue from the Goblin Village,637,2017,[No Color],1 +Elves,Magic Rescue from the Goblin Village,637,2017,Black,49 +Elves,Magic Rescue from the Goblin Village,637,2017,Bright Green,2 +Elves,Magic Rescue from the Goblin Village,637,2017,Bright Light Orange,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Bright Light Yellow,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Bright Pink,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Dark Azure,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Dark Bluish Gray,7 +Elves,Magic Rescue from the Goblin Village,637,2017,Dark Brown,3 +Elves,Magic Rescue from the Goblin Village,637,2017,Dark Green,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Dark Orange,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Dark Purple,12 +Elves,Magic Rescue from the Goblin Village,637,2017,Dark Red,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Dark Tan,1 +Elves,Magic Rescue from the Goblin Village,637,2017,Green,15 +Elves,Aira's Airship & the Amulet Chase,343,2017,[No Color],1 +Elves,Aira's Airship & the Amulet Chase,343,2017,Black,18 +Elves,Aira's Airship & the Amulet Chase,343,2017,Blue,2 +Elves,Aira's Airship & the Amulet Chase,343,2017,Bright Light Blue,2 +Elves,Aira's Airship & the Amulet Chase,343,2017,Dark Bluish Gray,3 +Elves,Aira's Airship & the Amulet Chase,343,2017,Dark Brown,2 +Elves,Aira's Airship & the Amulet Chase,343,2017,Dark Purple,9 +Elves,Aira's Airship & the Amulet Chase,343,2017,Flat Silver,1 +Elves,Aira's Airship & the Amulet Chase,343,2017,Lavender,2 +Elves,Aira's Airship & the Amulet Chase,343,2017,Light Bluish Gray,8 +Elves,Aira's Airship & the Amulet Chase,343,2017,Light Flesh,4 +Elves,Aira's Airship & the Amulet Chase,343,2017,Lime,3 +Elves,Aira's Airship & the Amulet Chase,343,2017,Magenta,1 +Elves,Aira's Airship & the Amulet Chase,343,2017,Medium Lavender,14 +Elves,Aira's Airship & the Amulet Chase,343,2017,Red,5 +Elves,Aira's Airship & the Amulet Chase,343,2017,Reddish Brown,21 +Elves,Aira's Airship & the Amulet Chase,343,2017,Sand Blue,1 +Elves,Aira's Airship & the Amulet Chase,343,2017,Tan,16 +Elves,Aira's Airship & the Amulet Chase,343,2017,Trans-Bright Green,1 +Elves,Aira's Airship & the Amulet Chase,343,2017,Trans-Light Blue,1 +Elves,Aira's Airship & the Amulet Chase,343,2017,Trans-Medium Blue,3 +Elves,Aira's Airship & the Amulet Chase,343,2017,Trans-Purple,4 +Elves,Aira's Airship & the Amulet Chase,343,2017,White,15 +Elves,Aira's Airship & the Amulet Chase,343,2017,Pearl Gold,16 +Elves,Aira's Airship & the Amulet Chase,343,2017,Yellowish Green,2 +Elves,Aira's Airship & the Amulet Chase,343,2017,Yellow,11 +Elves,The Goblin King's Evil Dragon,338,2017,Black,39 +Elves,The Goblin King's Evil Dragon,338,2017,Blue,3 +Elves,The Goblin King's Evil Dragon,338,2017,Bright Green,1 +Elves,The Goblin King's Evil Dragon,338,2017,Bright Light Blue,1 +Elves,The Goblin King's Evil Dragon,338,2017,Dark Azure,1 +Elves,The Goblin King's Evil Dragon,338,2017,Dark Bluish Gray,16 +Elves,The Goblin King's Evil Dragon,338,2017,Dark Green,1 +Elves,The Goblin King's Evil Dragon,338,2017,Dark Pink,1 +Elves,The Goblin King's Evil Dragon,338,2017,Dark Purple,3 +Elves,The Goblin King's Evil Dragon,338,2017,Green,2 +Elves,The Goblin King's Evil Dragon,338,2017,Lavender,1 +Elves,The Goblin King's Evil Dragon,338,2017,Light Bluish Gray,11 +Elves,The Goblin King's Evil Dragon,338,2017,Light Flesh,1 +Elves,The Goblin King's Evil Dragon,338,2017,Lime,8 +Elves,The Goblin King's Evil Dragon,338,2017,Magenta,6 +Elves,The Goblin King's Evil Dragon,338,2017,Medium Azure,3 +Elves,The Goblin King's Evil Dragon,338,2017,Red,12 +Elves,The Goblin King's Evil Dragon,338,2017,Reddish Brown,7 +Elves,The Goblin King's Evil Dragon,338,2017,Trans-Black,1 +Elves,The Goblin King's Evil Dragon,338,2017,Trans-Bright Green,4 +Elves,The Goblin King's Evil Dragon,338,2017,Trans-Dark Blue,3 +Elves,The Goblin King's Evil Dragon,338,2017,Trans-Light Blue,1 +Elves,The Goblin King's Evil Dragon,338,2017,Trans-Purple,2 +Elves,The Goblin King's Evil Dragon,338,2017,White,1 +Elves,The Goblin King's Evil Dragon,338,2017,Yellowish Green,13 +Elves,The Goblin King's Evil Dragon,338,2017,Pearl Gold,3 +Elves,The Capture of Sophie Jones,226,2017,[No Color],1 +Elves,The Capture of Sophie Jones,226,2017,Trans-Light Blue,1 +Elves,The Capture of Sophie Jones,226,2017,Trans-Orange,1 +Elves,The Capture of Sophie Jones,226,2017,Trans-Yellow,1 +Elves,The Capture of Sophie Jones,226,2017,White,4 +Elves,The Capture of Sophie Jones,226,2017,Yellowish Green,2 +Elves,The Capture of Sophie Jones,226,2017,Blue,1 +Elves,The Capture of Sophie Jones,226,2017,Bright Green,2 +Elves,The Capture of Sophie Jones,226,2017,Bright Light Orange,5 +Elves,The Capture of Sophie Jones,226,2017,Dark Bluish Gray,6 +Elves,The Capture of Sophie Jones,226,2017,Dark Azure,6 +Elves,The Capture of Sophie Jones,226,2017,Dark Blue,1 +Elves,The Capture of Sophie Jones,226,2017,Medium Lavender,2 +Elves,The Capture of Sophie Jones,226,2017,Trans-Dark Pink,1 +Elves,The Capture of Sophie Jones,226,2017,Dark Brown,1 +Elves,The Capture of Sophie Jones,226,2017,Dark Purple,4 +Elves,The Capture of Sophie Jones,226,2017,Flat Silver,1 +Elves,The Capture of Sophie Jones,226,2017,Green,4 +Elves,The Capture of Sophie Jones,226,2017,Light Aqua,1 +Elves,The Capture of Sophie Jones,226,2017,Light Bluish Gray,14 +Elves,The Capture of Sophie Jones,226,2017,Light Flesh,2 +Elves,The Capture of Sophie Jones,226,2017,Lime,6 +Elves,The Capture of Sophie Jones,226,2017,Medium Azure,1 +Elves,The Capture of Sophie Jones,226,2017,Medium Dark Flesh,5 +Elves,The Capture of Sophie Jones,226,2017,Black,11 +Elves,The Capture of Sophie Jones,226,2017,Pearl Dark Gray,1 +Elves,The Capture of Sophie Jones,226,2017,Pearl Gold,6 +Elves,The Capture of Sophie Jones,226,2017,Red,8 +Elves,The Capture of Sophie Jones,226,2017,Reddish Brown,14 +Elves,The Capture of Sophie Jones,226,2017,Tan,7 +Elves,The Capture of Sophie Jones,226,2017,Trans-Bright Green,1 +Elves,The Capture of Sophie Jones,226,2017,Trans-Clear,1 +Elves,The Capture of Sophie Jones,226,2017,Trans-Dark Blue,1 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Trans-Dark Blue,1 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Trans-Medium Blue,1 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Yellowish Green,1 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Light Aqua,1 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Black,2 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Dark Azure,1 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Dark Blue,2 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Dark Brown,2 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Dark Orange,1 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Dark Pink,2 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Dark Purple,1 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Green,3 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Light Bluish Gray,4 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Light Flesh,2 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Lime,5 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Magenta,1 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Medium Azure,7 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Pearl Gold,6 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Red,2 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Reddish Brown,3 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Tan,1 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Trans-Bright Green,2 +Elves,Naida's Gondola & the Goblin Thief,67,2017,Trans-Clear,1 +Elves,Elves Roblin Bag Charm,1,2017,Sand Green,1 +EV3,EV3 Expansion Set,853,2013,Blue,3 +EV3,EV3 Expansion Set,853,2013,Dark Bluish Gray,15 +EV3,EV3 Expansion Set,853,2013,Dark Brown,1 +EV3,EV3 Expansion Set,853,2013,Dark Tan,1 +EV3,EV3 Expansion Set,853,2013,Flat Silver,1 +EV3,EV3 Expansion Set,853,2013,Light Bluish Gray,42 +EV3,EV3 Expansion Set,853,2013,Red,11 +EV3,EV3 Expansion Set,853,2013,Tan,7 +EV3,EV3 Expansion Set,853,2013,Trans-Dark Blue,1 +EV3,EV3 Expansion Set,853,2013,Trans-Light Blue,3 +EV3,EV3 Expansion Set,853,2013,Trans-Neon Green,1 +EV3,EV3 Expansion Set,853,2013,Trans-Red,2 +EV3,EV3 Expansion Set,853,2013,White,5 +EV3,EV3 Expansion Set,853,2013,Yellow,2 +EV3,EV3 Expansion Set,853,2013,Black,42 +EV3,Mindstorms EV3,600,2013,Tan,4 +EV3,Mindstorms EV3,600,2013,White,14 +EV3,Mindstorms EV3,600,2013,Yellow,1 +EV3,Mindstorms EV3,600,2013,[No Color],1 +EV3,Mindstorms EV3,600,2013,Black,35 +EV3,Mindstorms EV3,600,2013,Blue,2 +EV3,Mindstorms EV3,600,2013,Dark Bluish Gray,4 +EV3,Mindstorms EV3,600,2013,Dark Tan,1 +EV3,Mindstorms EV3,600,2013,Light Bluish Gray,22 +EV3,Mindstorms EV3,600,2013,Red,18 +EV3,EV3 Core Set,546,2013,[No Color],3 +EV3,EV3 Core Set,546,2013,Black,37 +EV3,EV3 Core Set,546,2013,Blue,3 +EV3,EV3 Core Set,546,2013,Dark Bluish Gray,8 +EV3,EV3 Core Set,546,2013,Dark Tan,1 +EV3,EV3 Core Set,546,2013,Green,1 +EV3,EV3 Core Set,546,2013,Light Bluish Gray,28 +EV3,EV3 Core Set,546,2013,Red,7 +EV3,EV3 Core Set,546,2013,Tan,3 +EV3,EV3 Core Set,546,2013,Trans-Clear,1 +EV3,EV3 Core Set,546,2013,White,12 +EV3,EV3 Core Set,546,2013,Yellow,2 +EV3,EV3 Cable Pack,7,2013,Black,3 +EV3,EV3 Color Sensor,1,2013,White,1 +EV3,EV3 Gyro Sensor,1,2013,White,1 +EV3,EV3 Infrared Beacon,1,2013,White,1 +EV3,EV3 Infrared Sensor,1,2013,Light Bluish Gray,1 +EV3,EV3 Intelligent Brick,1,2013,White,1 +EV3,EV3 Large Servo Motor,1,2013,White,1 +EV3,EV3 Medium Servo Motor,1,2013,White,1 +EV3,EV3 Rechargeable DC Battery,1,2013,Dark Bluish Gray,1 +EV3,EV3 Touch Sensor,1,2013,White,1 +EV3,EV3 Ultrasonic Sensor,1,2013,White,1 +Exo-Force,Sentai Fortress,1457,2006,Red,9 +Exo-Force,Sentai Fortress,1457,2006,Reddish Brown,4 +Exo-Force,Sentai Fortress,1457,2006,Tan,1 +Exo-Force,Sentai Fortress,1457,2006,Trans-Black,4 +Exo-Force,Sentai Fortress,1457,2006,Trans-Clear,3 +Exo-Force,Sentai Fortress,1457,2006,Trans-Neon Green,2 +Exo-Force,Sentai Fortress,1457,2006,Trans-Red,4 +Exo-Force,Sentai Fortress,1457,2006,Trans-Yellow,1 +Exo-Force,Sentai Fortress,1457,2006,White,18 +Exo-Force,Sentai Fortress,1457,2006,Yellow,22 +Exo-Force,Sentai Fortress,1457,2006,Copper,3 +Exo-Force,Sentai Fortress,1457,2006,[No Color],1 +Exo-Force,Sentai Fortress,1457,2006,Black,83 +Exo-Force,Sentai Fortress,1457,2006,Blue,16 +Exo-Force,Sentai Fortress,1457,2006,Bright Green,1 +Exo-Force,Sentai Fortress,1457,2006,Dark Bluish Gray,59 +Exo-Force,Sentai Fortress,1457,2006,Dark Purple,1 +Exo-Force,Sentai Fortress,1457,2006,Flat Silver,1 +Exo-Force,Sentai Fortress,1457,2006,Light Bluish Gray,45 +Exo-Force,Sentai Fortress,1457,2006,Lime,3 +Exo-Force,Sentai Fortress,1457,2006,Medium Blue,4 +Exo-Force,Sentai Fortress,1457,2006,Orange,7 +Exo-Force,Sentai Fortress,1457,2006,Pearl Gold,2 +Exo-Force,Sentai Fortress,1457,2006,Pearl Light Gray,2 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Black,60 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Blue,1 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Dark Bluish Gray,25 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Flat Silver,1 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Light Bluish Gray,18 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Lime,3 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Pearl Gold,2 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Pearl Light Gray,3 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Red,7 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Sand Blue,1 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Trans-Black,2 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Trans-Clear,2 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Trans-Neon Green,4 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,Trans-Red,2 +Exo-Force,Bridge Walker vs. White Lightning,652,2006,White,14 +Exo-Force,Striking Venom,645,2006,Trans-Black,2 +Exo-Force,Striking Venom,645,2006,Dark Green,3 +Exo-Force,Striking Venom,645,2006,[No Color],1 +Exo-Force,Striking Venom,645,2006,Flat Silver,3 +Exo-Force,Striking Venom,645,2006,Light Bluish Gray,15 +Exo-Force,Striking Venom,645,2006,Lime,4 +Exo-Force,Striking Venom,645,2006,Pearl Gold,2 +Exo-Force,Striking Venom,645,2006,Pearl Light Gray,2 +Exo-Force,Striking Venom,645,2006,Red,2 +Exo-Force,Striking Venom,645,2006,Trans-Clear,2 +Exo-Force,Striking Venom,645,2006,Dark Bluish Gray,14 +Exo-Force,Striking Venom,645,2006,Trans-Neon Green,3 +Exo-Force,Striking Venom,645,2006,Trans-Red,3 +Exo-Force,Striking Venom,645,2006,White,1 +Exo-Force,Striking Venom,645,2006,Yellow,1 +Exo-Force,Striking Venom,645,2006,Black,38 +Exo-Force,Striking Venom,645,2006,Blue,1 +Exo-Force,Striking Venom,645,2006,Copper,3 +Exo-Force,Gate Assault,401,2006,Dark Red,4 +Exo-Force,Gate Assault,401,2006,Flat Silver,1 +Exo-Force,Gate Assault,401,2006,Lime,3 +Exo-Force,Gate Assault,401,2006,Medium Blue,1 +Exo-Force,Gate Assault,401,2006,Orange,5 +Exo-Force,Gate Assault,401,2006,Pearl Light Gray,1 +Exo-Force,Gate Assault,401,2006,Red,3 +Exo-Force,Gate Assault,401,2006,Reddish Brown,2 +Exo-Force,Gate Assault,401,2006,Tan,6 +Exo-Force,Gate Assault,401,2006,Trans-Clear,1 +Exo-Force,Gate Assault,401,2006,Trans-Red,1 +Exo-Force,Gate Assault,401,2006,White,12 +Exo-Force,Gate Assault,401,2006,Yellow,2 +Exo-Force,Gate Assault,401,2006,Trans-Black,2 +Exo-Force,Gate Assault,401,2006,Light Bluish Gray,21 +Exo-Force,Gate Assault,401,2006,Black,37 +Exo-Force,Gate Assault,401,2006,Blue,2 +Exo-Force,Gate Assault,401,2006,Copper,3 +Exo-Force,Gate Assault,401,2006,Dark Bluish Gray,30 +Exo-Force,Mobile Defense Tank,371,2006,Lime,1 +Exo-Force,Mobile Defense Tank,371,2006,Orange,15 +Exo-Force,Mobile Defense Tank,371,2006,Red,1 +Exo-Force,Mobile Defense Tank,371,2006,Trans-Black,2 +Exo-Force,Mobile Defense Tank,371,2006,Trans-Clear,1 +Exo-Force,Mobile Defense Tank,371,2006,Trans-Neon Orange,1 +Exo-Force,Mobile Defense Tank,371,2006,Trans-Red,1 +Exo-Force,Mobile Defense Tank,371,2006,White,16 +Exo-Force,Mobile Defense Tank,371,2006,Yellow,2 +Exo-Force,Mobile Defense Tank,371,2006,Blue,2 +Exo-Force,Mobile Defense Tank,371,2006,Dark Bluish Gray,16 +Exo-Force,Mobile Defense Tank,371,2006,Dark Purple,1 +Exo-Force,Mobile Defense Tank,371,2006,Black,17 +Exo-Force,Mobile Defense Tank,371,2006,Light Bluish Gray,17 +Exo-Force,Supernova,286,2006,Pearl Light Gray,1 +Exo-Force,Supernova,286,2006,Red,14 +Exo-Force,Supernova,286,2006,Trans-Black,1 +Exo-Force,Supernova,286,2006,Trans-Clear,2 +Exo-Force,Supernova,286,2006,Trans-Neon Green,1 +Exo-Force,Supernova,286,2006,Trans-Red,1 +Exo-Force,Supernova,286,2006,White,4 +Exo-Force,Supernova,286,2006,Yellow,22 +Exo-Force,Supernova,286,2006,Black,27 +Exo-Force,Supernova,286,2006,Blue,1 +Exo-Force,Supernova,286,2006,Bright Green,1 +Exo-Force,Supernova,286,2006,Dark Bluish Gray,16 +Exo-Force,Supernova,286,2006,Light Bluish Gray,12 +Exo-Force,Sonic Phantom,216,2006,Dark Bluish Gray,21 +Exo-Force,Sonic Phantom,216,2006,Lime,4 +Exo-Force,Sonic Phantom,216,2006,Pearl Light Gray,2 +Exo-Force,Sonic Phantom,216,2006,Red,1 +Exo-Force,Sonic Phantom,216,2006,Tan,2 +Exo-Force,Sonic Phantom,216,2006,Blue,1 +Exo-Force,Sonic Phantom,216,2006,Black,29 +Exo-Force,Sonic Phantom,216,2006,Light Bluish Gray,12 +Exo-Force,Sonic Phantom,216,2006,Yellow,1 +Exo-Force,Sonic Phantom,216,2006,Trans-Black,1 +Exo-Force,Sonic Phantom,216,2006,Trans-Clear,1 +Exo-Force,Sonic Phantom,216,2006,Trans-Neon Green,1 +Exo-Force,Sonic Phantom,216,2006,Trans-Red,3 +Exo-Force,Sonic Phantom,216,2006,White,1 +Exo-Force,Sonic Phantom,216,2006,Flat Silver,1 +Exo-Force,Grand Titan,196,2006,Yellow,1 +Exo-Force,Thunder Fury,196,2006,Trans-Red,2 +Exo-Force,Grand Titan,196,2006,Light Bluish Gray,11 +Exo-Force,Thunder Fury,196,2006,Red,2 +Exo-Force,Thunder Fury,196,2006,Pearl Light Gray,2 +Exo-Force,Thunder Fury,196,2006,Light Bluish Gray,15 +Exo-Force,Thunder Fury,196,2006,Dark Red,4 +Exo-Force,Thunder Fury,196,2006,Dark Bluish Gray,14 +Exo-Force,Thunder Fury,196,2006,Black,39 +Exo-Force,Thunder Fury,196,2006,Blue,1 +Exo-Force,Thunder Fury,196,2006,Trans-Clear,2 +Exo-Force,Grand Titan,196,2006,[No Color],1 +Exo-Force,Grand Titan,196,2006,Black,29 +Exo-Force,Grand Titan,196,2006,Blue,1 +Exo-Force,Grand Titan,196,2006,Bright Green,1 +Exo-Force,Grand Titan,196,2006,Dark Bluish Gray,15 +Exo-Force,Grand Titan,196,2006,Red,25 +Exo-Force,Grand Titan,196,2006,Trans-Black,1 +Exo-Force,Grand Titan,196,2006,Trans-Clear,3 +Exo-Force,Grand Titan,196,2006,Trans-Neon Green,2 +Exo-Force,Thunder Fury,196,2006,[No Color],1 +Exo-Force,Fire Vulture,176,2006,Black,33 +Exo-Force,Fire Vulture,176,2006,Dark Blue,5 +Exo-Force,Fire Vulture,176,2006,Dark Bluish Gray,14 +Exo-Force,Fire Vulture,176,2006,Dark Tan,1 +Exo-Force,Fire Vulture,176,2006,Flat Silver,2 +Exo-Force,Fire Vulture,176,2006,Light Bluish Gray,21 +Exo-Force,Fire Vulture,176,2006,Lime,1 +Exo-Force,Fire Vulture,176,2006,Pearl Light Gray,2 +Exo-Force,Fire Vulture,176,2006,Blue,1 +Exo-Force,Fire Vulture,176,2006,Trans-Medium Blue,1 +Exo-Force,Fire Vulture,176,2006,Trans-Clear,2 +Exo-Force,Fire Vulture,176,2006,Tan,1 +Exo-Force,Fire Vulture,176,2006,Sand Blue,1 +Exo-Force,Fire Vulture,176,2006,Red,2 +Exo-Force,Fire Vulture,176,2006,Trans-Red,2 +Exo-Force,Stealth Hunter,163,2006,Black,24 +Exo-Force,Stealth Hunter,163,2006,Blue,1 +Exo-Force,Stealth Hunter,163,2006,Dark Bluish Gray,8 +Exo-Force,Stealth Hunter,163,2006,Medium Blue,1 +Exo-Force,Stealth Hunter,163,2006,Red,2 +Exo-Force,Stealth Hunter,163,2006,Trans-Black,1 +Exo-Force,Stealth Hunter,163,2006,Trans-Clear,2 +Exo-Force,Stealth Hunter,163,2006,Trans-Red,2 +Exo-Force,Stealth Hunter,163,2006,White,24 +Exo-Force,Stealth Hunter,163,2006,Yellow,1 +Exo-Force,Stealth Hunter,163,2006,Light Bluish Gray,17 +Exo-Force,Stealth Hunter,163,2006,[No Color],1 +Exo-Force,Sentry,77,2006,Light Bluish Gray,3 +Exo-Force,Sentry,77,2006,Red,1 +Exo-Force,Sentry,77,2006,Light Gray,1 +Exo-Force,Sentry,77,2006,Trans-Neon Green,2 +Exo-Force,Sentry,77,2006,Dark Tan,1 +Exo-Force,Sentry,77,2006,Dark Bluish Gray,10 +Exo-Force,Sentry,77,2006,Copper,3 +Exo-Force,Sentry,77,2006,Blue,1 +Exo-Force,Sentry,77,2006,Black,15 +Exo-Force,Uplink,68,2006,[No Color],1 +Exo-Force,Uplink,68,2006,Black,14 +Exo-Force,Uplink,68,2006,Blue,1 +Exo-Force,Uplink,68,2006,Dark Bluish Gray,7 +Exo-Force,Uplink,68,2006,Dark Purple,1 +Exo-Force,Uplink,68,2006,Light Bluish Gray,6 +Exo-Force,Uplink,68,2006,Orange,5 +Exo-Force,Uplink,68,2006,Red,3 +Exo-Force,Uplink,68,2006,Yellow,1 +Exo-Force,Exo-Suit Robot,24,2006,Pearl Light Gray,2 +Exo-Force,Exo-Suit Robot,24,2006,Red,1 +Exo-Force,Exo-Suit Robot,24,2006,Trans-Red,1 +Exo-Force,Exo-Suit Robot,24,2006,Dark Bluish Gray,1 +Exo-Force,Exo-Suit Robot,24,2006,Black,10 +Exo-Force,Glider,22,2006,Medium Blue,1 +Exo-Force,Glider,22,2006,Trans-Red,3 +Exo-Force,Glider,22,2006,White,6 +Exo-Force,Glider,22,2006,Yellow,1 +Exo-Force,Takeshi Walker 2,22,2006,Bright Green,1 +Exo-Force,Takeshi Walker 2,22,2006,Dark Bluish Gray,1 +Exo-Force,Takeshi Walker 2,22,2006,Red,5 +Exo-Force,Takeshi Walker 2,22,2006,Trans-Neon Green,1 +Exo-Force,Takeshi Walker 2,22,2006,Yellow,1 +Exo-Force,Takeshi Walker 2,22,2006,Black,7 +Exo-Force,Glider,22,2006,Black,5 +Exo-Force,Glider,22,2006,Dark Bluish Gray,1 +Expert Builder,Auto Chassis,608,1977,Black,10 +Expert Builder,Auto Chassis,608,1977,Blue,13 +Expert Builder,Auto Chassis,608,1977,Light Gray,17 +Expert Builder,Auto Chassis,608,1977,Red,27 +Expert Builder,Auto Chassis,608,1977,Yellow,20 +Expert Builder,Reconnaisance Helicopter,364,1977,Yellow,22 +Expert Builder,Reconnaisance Helicopter,364,1977,Black,18 +Expert Builder,Reconnaisance Helicopter,364,1977,Blue,8 +Expert Builder,Reconnaisance Helicopter,364,1977,Light Gray,11 +Expert Builder,Reconnaisance Helicopter,364,1977,Red,14 +Expert Builder,Tractor,324,1977,Yellow,2 +Expert Builder,Tractor,324,1977,Black,13 +Expert Builder,Tractor,324,1977,Light Gray,20 +Expert Builder,Tractor,324,1977,Red,31 +Expert Builder,Tractor,324,1977,Trans-Clear,1 +Expert Builder,Fork lift truck,216,1977,Light Gray,10 +Expert Builder,Fork lift truck,216,1977,Yellow,24 +Expert Builder,Fork lift truck,216,1977,Black,8 +Expert Builder,Supplementary Set,78,1977,Black,6 +Expert Builder,Supplementary Set,78,1977,Light Gray,10 +Expert Builder,Supplementary Set,78,1977,Yellow,6 +Expert Builder,Motor,40,1977,Red,8 +Expert Builder,Motor,40,1977,Black,3 +Expert Builder,Motor,40,1977,Light Gray,8 +Expert Builder,Supplementary Set,22,1977,Black,2 +Expert Builder,Supplementary Set,22,1977,Light Gray,7 +Expert Builder,Supplementary Set,22,1977,White,1 +Expert Builder,Supplementary Set,22,1977,Yellow,4 +Expert Builder,Dragster,250,1983,Black,10 +Expert Builder,Dragster,250,1983,Blue,19 +Expert Builder,Dragster,250,1983,Light Gray,23 +Expert Builder,Dragster,250,1983,Red,6 +Expert Builder,Dragster,250,1983,White,9 +Expert Builder,Dragster,250,1983,Yellow,1 +Exploriens,Explorien Starship,658,1996,Trans-Red,1 +Exploriens,Explorien Starship,658,1996,Trans-Neon Green,8 +Exploriens,Explorien Starship,658,1996,Trans-Dark Blue,7 +Exploriens,Explorien Starship,658,1996,Trans-Clear,1 +Exploriens,Explorien Starship,658,1996,Red,1 +Exploriens,Explorien Starship,658,1996,Light Gray,11 +Exploriens,Explorien Starship,658,1996,Dark Gray,2 +Exploriens,Explorien Starship,658,1996,Blue,1 +Exploriens,Explorien Starship,658,1996,Black,56 +Exploriens,Explorien Starship,658,1996,Trans-Yellow,1 +Exploriens,Explorien Starship,658,1996,White,89 +Exploriens,Explorien Starship,658,1996,Yellow,2 +Exploriens,Android Base,268,1996,Light Gray,5 +Exploriens,Android Base,268,1996,Trans-Clear,1 +Exploriens,Android Base,268,1996,Trans-Dark Blue,4 +Exploriens,Android Base,268,1996,Trans-Neon Green,7 +Exploriens,Android Base,268,1996,Trans-Red,1 +Exploriens,Android Base,268,1996,Trans-Yellow,1 +Exploriens,Android Base,268,1996,White,67 +Exploriens,Android Base,268,1996,Yellow,2 +Exploriens,Android Base,268,1996,[No Color],5 +Exploriens,Android Base,268,1996,Black,50 +Exploriens,Android Base,268,1996,Dark Gray,3 +Exploriens,Scorpion Detector,196,1996,White,43 +Exploriens,Scorpion Detector,196,1996,Trans-Red,1 +Exploriens,Scorpion Detector,196,1996,Trans-Neon Green,7 +Exploriens,Scorpion Detector,196,1996,Yellow,1 +Exploriens,Scorpion Detector,196,1996,Trans-Dark Blue,5 +Exploriens,Scorpion Detector,196,1996,Light Gray,2 +Exploriens,Scorpion Detector,196,1996,Dark Gray,2 +Exploriens,Scorpion Detector,196,1996,Black,37 +Exploriens,Scorpion Detector,195,1996,Dark Gray,2 +Exploriens,Scorpion Detector,195,1996,Yellow,1 +Exploriens,Scorpion Detector,195,1996,White,43 +Exploriens,Scorpion Detector,195,1996,Trans-Red,1 +Exploriens,Scorpion Detector,195,1996,Trans-Neon Green,7 +Exploriens,Scorpion Detector,195,1996,Trans-Dark Blue,5 +Exploriens,Scorpion Detector,195,1996,Light Gray,2 +Exploriens,Scorpion Detector,195,1996,Black,37 +Exploriens,Nebula Outpost,156,1996,Dark Gray,2 +Exploriens,Nebula Outpost,156,1996,Light Gray,2 +Exploriens,Nebula Outpost,156,1996,Trans-Dark Blue,4 +Exploriens,Nebula Outpost,156,1996,Yellow,1 +Exploriens,Nebula Outpost,156,1996,White,24 +Exploriens,Nebula Outpost,156,1996,Trans-Neon Green,6 +Exploriens,Nebula Outpost,156,1996,Trans-Red,1 +Exploriens,Nebula Outpost,156,1996,[No Color],3 +Exploriens,Nebula Outpost,156,1996,Black,32 +Exploriens,Planetary Decoder,78,1996,Trans-Neon Green,6 +Exploriens,Planetary Decoder,78,1996,White,19 +Exploriens,Planetary Decoder,78,1996,Yellow,1 +Exploriens,Planetary Decoder,78,1996,Trans-Dark Blue,2 +Exploriens,Planetary Decoder,78,1996,Black,20 +Exploriens,Planetary Decoder,78,1996,Dark Gray,1 +Exploriens,Planetary Decoder,78,1996,Light Gray,2 +Exploriens,Planetary Decoder,78,1996,Trans-Red,1 +Exploriens,Alien Fossilizer,51,1996,[No Color],2 +Exploriens,Alien Fossilizer,51,1996,Trans-Dark Blue,1 +Exploriens,Alien Fossilizer,51,1996,Black,14 +Exploriens,Alien Fossilizer,51,1996,Dark Gray,1 +Exploriens,Alien Fossilizer,51,1996,Light Gray,2 +Exploriens,Alien Fossilizer,51,1996,Trans-Neon Green,2 +Exploriens,Alien Fossilizer,51,1996,Trans-Red,1 +Exploriens,Alien Fossilizer,51,1996,White,19 +Exploriens,Alien Fossilizer,51,1996,Yellow,1 +Exploriens,Hovertron,27,1996,White,8 +Exploriens,Hovertron,27,1996,Yellow,1 +Exploriens,Hovertron,27,1996,Trans-Neon Green,2 +Exploriens,Hovertron,27,1996,Trans-Dark Blue,1 +Exploriens,Hovertron,27,1996,Light Gray,1 +Exploriens,Hovertron,27,1996,Dark Gray,1 +Exploriens,Hovertron,27,1996,Black,7 +Exploriens,Hovertron,27,1996,[No Color],2 +Exploriens,Droid Scout,23,1996,Trans-Neon Green,3 +Exploriens,Droid Scout,23,1996,White,8 +Exploriens,Droid Scout,23,1996,Trans-Dark Blue,1 +Exploriens,Droid Scout,23,1996,Trans-Clear,1 +Exploriens,Droid Scout,23,1996,Dark Gray,1 +Exploriens,Droid Scout,23,1996,Black,4 +Extreme Team,Extreme Team Challenge,357,1998,White,14 +Extreme Team,Extreme Team Challenge,357,1998,Yellow,13 +Extreme Team,Extreme Team Challenge,357,1998,Green,4 +Extreme Team,Extreme Team Challenge,357,1998,Black,40 +Extreme Team,Extreme Team Challenge,357,1998,Blue,6 +Extreme Team,Extreme Team Challenge,357,1998,Brown,2 +Extreme Team,Extreme Team Challenge,357,1998,Chrome Silver,2 +Extreme Team,Extreme Team Challenge,357,1998,Dark Gray,7 +Extreme Team,Extreme Team Challenge,357,1998,Light Gray,34 +Extreme Team,Extreme Team Challenge,357,1998,Red,14 +Extreme Team,Extreme Team Challenge,357,1998,Trans-Light Blue,1 +Extreme Team,Extreme Team Challenge,357,1998,Trans-Neon Green,2 +Extreme Team,Extreme Team Challenge,357,1998,Trans-Red,2 +Extreme Team,Extreme Team Challenge,357,1998,Trans-Yellow,3 +Extreme Team,Drag Race Rally,291,1998,Light Gray,20 +Extreme Team,Drag Race Rally,291,1998,Black,34 +Extreme Team,Drag Race Rally,291,1998,Dark Gray,1 +Extreme Team,Drag Race Rally,291,1998,Green,5 +Extreme Team,Drag Race Rally,291,1998,Red,19 +Extreme Team,Drag Race Rally,291,1998,Blue,3 +Extreme Team,Drag Race Rally,291,1998,Trans-Clear,1 +Extreme Team,Drag Race Rally,291,1998,Trans-Dark Blue,1 +Extreme Team,Drag Race Rally,291,1998,Trans-Green,1 +Extreme Team,Drag Race Rally,291,1998,Trans-Red,1 +Extreme Team,Drag Race Rally,291,1998,Trans-Yellow,1 +Extreme Team,Drag Race Rally,291,1998,White,23 +Extreme Team,Drag Race Rally,291,1998,Yellow,13 +Extreme Team,Drag Race Rally,291,1998,Chrome Silver,1 +Extreme Team,Daredevil Flight Squad,287,1998,Black,51 +Extreme Team,Daredevil Flight Squad,287,1998,Dark Gray,1 +Extreme Team,Daredevil Flight Squad,287,1998,Green,1 +Extreme Team,Daredevil Flight Squad,287,1998,Light Gray,15 +Extreme Team,Daredevil Flight Squad,287,1998,Red,13 +Extreme Team,Daredevil Flight Squad,287,1998,Trans-Dark Blue,1 +Extreme Team,Daredevil Flight Squad,287,1998,Trans-Green,1 +Extreme Team,Daredevil Flight Squad,287,1998,Trans-Light Blue,1 +Extreme Team,Daredevil Flight Squad,287,1998,[No Color],1 +Extreme Team,Daredevil Flight Squad,287,1998,Trans-Neon Orange,2 +Extreme Team,Daredevil Flight Squad,287,1998,Trans-Red,2 +Extreme Team,Daredevil Flight Squad,287,1998,Trans-Yellow,1 +Extreme Team,Daredevil Flight Squad,287,1998,White,31 +Extreme Team,Daredevil Flight Squad,287,1998,Yellow,3 +Extreme Team,Daredevil Flight Squad,287,1998,Trans-Neon Green,6 +Extreme Team,Land Jet 7,114,1998,Light Gray,4 +Extreme Team,Land Jet 7,114,1998,Red,11 +Extreme Team,Land Jet 7,114,1998,Trans-Clear,1 +Extreme Team,Land Jet 7,114,1998,Trans-Light Blue,1 +Extreme Team,Land Jet 7,114,1998,Trans-Neon Orange,1 +Extreme Team,Land Jet 7,114,1998,White,8 +Extreme Team,Land Jet 7,114,1998,Yellow,3 +Extreme Team,Land Jet 7,114,1998,Black,21 +Extreme Team,Land Jet 7,114,1998,Blue,3 +Extreme Team,Land Jet 7,114,1998,Dark Gray,5 +Extreme Team,Land Jet 7,114,1998,Green,2 +Extreme Team,Extreme Team Racer,83,1998,Black,16 +Extreme Team,Extreme Team Racer,83,1998,Chrome Silver,2 +Extreme Team,Extreme Team Racer,83,1998,Green,1 +Extreme Team,Extreme Team Racer,83,1998,Light Gray,7 +Extreme Team,Extreme Team Racer,83,1998,Red,5 +Extreme Team,Extreme Team Racer,83,1998,Trans-Neon Green,4 +Extreme Team,Extreme Team Racer,83,1998,Yellow,5 +Extreme Team,Radical Racer,83,1998,[No Color],1 +Extreme Team,Radical Racer,83,1998,Black,10 +Extreme Team,Radical Racer,83,1998,Chrome Silver,1 +Extreme Team,Radical Racer,83,1998,Dark Orange,1 +Extreme Team,Radical Racer,83,1998,Light Gray,6 +Extreme Team,Radical Racer,83,1998,Red,14 +Extreme Team,Radical Racer,83,1998,Trans-Dark Blue,1 +Extreme Team,Radical Racer,83,1998,Trans-Neon Green,2 +Extreme Team,Radical Racer,83,1998,Trans-Red,1 +Extreme Team,Radical Racer,83,1998,Trans-Yellow,1 +Extreme Team,Radical Racer,83,1998,White,12 +Extreme Team,Radical Racer,83,1998,Yellow,1 +Extreme Team,Wind Runners,52,1998,Yellow,2 +Extreme Team,Wind Runners,52,1998,Black,15 +Extreme Team,Wind Runners,52,1998,Blue,4 +Extreme Team,Wind Runners,52,1998,Green,4 +Extreme Team,Wind Runners,52,1998,Light Gray,3 +Extreme Team,Wind Runners,52,1998,Trans-Clear,2 +Extreme Team,Wind Runners,52,1998,Trans-Neon Green,2 +Extreme Team,Wind Runners,52,1998,White,11 +Extreme Team,Speed Splash,28,1998,Black,9 +Extreme Team,Speed Splash,28,1998,Blue,1 +Extreme Team,Speed Splash,28,1998,Light Gray,4 +Extreme Team,Speed Splash,28,1998,Red,3 +Extreme Team,Speed Splash,28,1998,Trans-Neon Green,1 +Extreme Team,Speed Splash,28,1998,Yellow,2 +Extreme Team,Speed Splash,28,1998,White,2 +Extreme Team,Extreme Team Raft,20,1998,Dark Gray,1 +Extreme Team,Extreme Team Raft,20,1998,Light Gray,2 +Extreme Team,Extreme Team Raft,20,1998,Red,2 +Extreme Team,Extreme Team Raft,20,1998,Yellow,3 +Extreme Team,Extreme Team Raft,20,1998,Black,3 +Extreme Team,Extreme Team Raft,20,1998,Blue,1 +Extreme Team,Extreme Team Raft,20,1998,Brown,3 +Extreme Team,Hang-Glider,19,1998,Red,3 +Extreme Team,Hang-Glider,19,1998,Yellow,2 +Extreme Team,Hang Glider,19,1998,Black,8 +Extreme Team,Hang Glider,19,1998,Green,1 +Extreme Team,Hang Glider,19,1998,Light Gray,1 +Extreme Team,Hang Glider,19,1998,Red,3 +Extreme Team,Hang Glider,19,1998,Yellow,2 +Extreme Team,Hang-Glider,19,1998,Black,8 +Extreme Team,Hang-Glider,19,1998,Green,1 +Extreme Team,Hang-Glider,19,1998,Light Gray,1 +Extreme Team,Water Rider,30,2000,Black,5 +Extreme Team,Water Rider,30,2000,Blue,5 +Extreme Team,Water Rider,30,2000,Dark Gray,4 +Extreme Team,Water Rider,30,2000,Green,2 +Extreme Team,Water Rider,30,2000,Light Gray,2 +Extreme Team,Water Rider,30,2000,Trans-Dark Blue,2 +Extreme Team,Water Rider,30,2000,Trans-Green,1 +Extreme Team,Water Rider,30,2000,Trans-Red,1 +Extreme Team,Water Rider,30,2000,White,2 +Extreme Team,Water Rider,30,2000,Yellow,2 +Fabuland,Town Hall,135,1979,Light Gray,1 +Fabuland,Town Hall,135,1979,Green,1 +Fabuland,Town Hall,135,1979,Brown,1 +Fabuland,Town Hall,135,1979,Blue,11 +Fabuland,Town Hall,135,1979,Yellow,12 +Fabuland,Town Hall,135,1979,Red,14 +Fabuland,Town Hall,135,1979,[No Color],2 +Fabuland,Town Hall,135,1979,Black,2 +Fabuland,Town Hall with Leonard Lion & Friends,134,1979,Yellow,12 +Fabuland,Town Hall with Leonard Lion & Friends,134,1979,[No Color],2 +Fabuland,Town Hall with Leonard Lion & Friends,134,1979,Black,2 +Fabuland,Town Hall with Leonard Lion & Friends,134,1979,Blue,11 +Fabuland,Town Hall with Leonard Lion & Friends,134,1979,Brown,1 +Fabuland,Town Hall with Leonard Lion & Friends,134,1979,Green,1 +Fabuland,Town Hall with Leonard Lion & Friends,134,1979,Light Gray,1 +Fabuland,Town Hall with Leonard Lion & Friends,134,1979,Red,13 +Fabuland,Cottage,115,1979,[No Color],2 +Fabuland,Cottage,115,1979,Blue,6 +Fabuland,Cottage,115,1979,Brown,1 +Fabuland,Cottage,115,1979,Dark Gray,1 +Fabuland,Cottage,115,1979,Green,1 +Fabuland,Cathy Cat's & Morty Mouse's Cottage,115,1979,[No Color],2 +Fabuland,Cottage,115,1979,Yellow,7 +Fabuland,Cathy Cat's & Morty Mouse's Cottage,115,1979,Yellow,7 +Fabuland,Cathy Cat's & Morty Mouse's Cottage,115,1979,Blue,6 +Fabuland,Cathy Cat's & Morty Mouse's Cottage,115,1979,Brown,1 +Fabuland,Cathy Cat's & Morty Mouse's Cottage,115,1979,Dark Gray,1 +Fabuland,Cathy Cat's & Morty Mouse's Cottage,115,1979,Green,1 +Fabuland,Cathy Cat's & Morty Mouse's Cottage,115,1979,Red,8 +Fabuland,Cottage,115,1979,Red,8 +Fabuland,Service Station,84,1979,Black,1 +Fabuland,Service Station,84,1979,Blue,7 +Fabuland,Service Station,84,1979,Yellow,6 +Fabuland,Service Station,84,1979,Brown,1 +Fabuland,Service Station,84,1979,Red,5 +Fabuland,Service Station,84,1979,[No Color],2 +Fabuland,Blondi the Pig and Taxi Station,33,1979,[No Color],3 +Fabuland,Blondi the Pig and Taxi Station,33,1979,Blue,1 +Fabuland,Blondi the Pig and Taxi Station,33,1979,Green,1 +Fabuland,Blondi the Pig and Taxi Station,33,1979,Red,2 +Fabuland,Blondi the Pig and Taxi Station,33,1979,Yellow,9 +Fabuland,Taxi Station,33,1979,[No Color],3 +Fabuland,Taxi Station,33,1979,Blue,1 +Fabuland,Taxi Station,33,1979,Green,1 +Fabuland,Taxi Station,33,1979,Red,2 +Fabuland,Taxi Station,33,1979,Yellow,9 +Fabuland,Bernard Bear and Pickup Truck,27,1979,Yellow,6 +Fabuland,Bernard Bear and Pickup Truck,27,1979,Red,7 +Fabuland,Bernard Bear and Pickup Truck,27,1979,Black,2 +Fabuland,Bernard Bear and Pickup Truck,27,1979,[No Color],1 +Fabuland,Roadster,23,1979,Blue,5 +Fabuland,Roadster,23,1979,Red,1 +Fabuland,Moe Mouse's Roadster,23,1979,Blue,5 +Fabuland,Moe Mouse's Roadster,23,1979,[No Color],1 +Fabuland,Roadster,23,1979,Yellow,5 +Fabuland,Moe Mouse's Roadster,23,1979,Yellow,5 +Fabuland,Moe Mouse's Roadster,23,1979,Red,1 +Fabuland,Roadster,23,1979,[No Color],1 +Fabuland,Percy Pig's Wheelbarrow,4,1979,Red,1 +Fabuland,Percy Pig's Wheelbarrow,4,1979,Dark Gray,1 +Fabuland,Percy Pig's Wheelbarrow,4,1979,Brown,1 +Fabuland,Percy Pig's Wheelbarrow,4,1979,[No Color],1 +Fabuland,Ricky Racoon on his Scooter,2,1979,[No Color],1 +Fabuland,Ricky Racoon on his Scooter,2,1979,Red,1 +Fabuland,School Room,44,1989,Yellow,7 +Fabuland,School Room,44,1989,[No Color],4 +Fabuland,School Room,44,1989,Black,1 +Fabuland,School Room,44,1989,Blue,2 +Fabuland,School Room,44,1989,Green,2 +Fabuland,School Room,44,1989,Red,2 +Fabuland,School Room,44,1989,White,2 +Fabuland,Catherine Cat's Fun Park,42,1989,Blue,5 +Fabuland,Catherine Cat's Fun Park,42,1989,Green,2 +Fabuland,Catherine Cat's Fun Park,42,1989,Red,6 +Fabuland,Catherine Cat's Fun Park,42,1989,White,11 +Fabuland,Catherine Cat's Fun Park,42,1989,Yellow,8 +Fabuland,Catherine Cat's Fun Park,42,1989,[No Color],1 +Fabuland,Max Mouse's Carousel,22,1989,Green,2 +Fabuland,Max Mouse's Carousel,22,1989,Red,5 +Fabuland,Max Mouse's Carousel,22,1989,White,1 +Fabuland,Max Mouse's Carousel,22,1989,Yellow,7 +Fabuland,Max Mouse's Carousel,22,1989,Blue,3 +Fabuland,Max Mouse's Carousel,22,1989,[No Color],1 +Factory,White Car and Camper,38,1970,White,9 +Factory,White Car and Camper,38,1970,Black,4 +Factory,White Car and Camper,38,1970,Trans-Clear,3 +Factory,Vintage Car,36,1970,Black,6 +Factory,Vintage Car,36,1970,Trans-Clear,3 +Factory,Vintage Car,36,1970,Yellow,5 +Factory,Tow Truck,21,1970,Black,4 +Factory,Tow Truck,21,1970,Blue,1 +Factory,Tow Truck,21,1970,Red,7 +Factory,Tow Truck,21,1970,Trans-Clear,1 +Factory,Space Skulls,956,2008,Trans-Red,2 +Factory,Space Skulls,956,2008,White,48 +Factory,Space Skulls,956,2008,[No Color],1 +Factory,Space Skulls,956,2008,Blue,2 +Factory,Space Skulls,956,2008,Dark Bluish Gray,8 +Factory,Space Skulls,956,2008,Light Bluish Gray,15 +Factory,Space Skulls,956,2008,Red,8 +Factory,Space Skulls,956,2008,Black,57 +Factory,Space Skulls,956,2008,Trans-Black,1 +Factory,Space Skulls,956,2008,Trans-Neon Green,2 +Factory,Custom Car Garage,893,2008,[No Color],1 +Factory,Custom Car Garage,893,2008,Black,34 +Factory,Custom Car Garage,893,2008,Blue,2 +Factory,Custom Car Garage,893,2008,Dark Blue,1 +Factory,Custom Car Garage,893,2008,Dark Bluish Gray,39 +Factory,Custom Car Garage,893,2008,Light Bluish Gray,49 +Factory,Custom Car Garage,893,2008,Lime,1 +Factory,Custom Car Garage,893,2008,Orange,1 +Factory,Custom Car Garage,893,2008,Pearl Dark Gray,1 +Factory,Custom Car Garage,893,2008,Red,27 +Factory,Custom Car Garage,893,2008,Tan,13 +Factory,Custom Car Garage,893,2008,Medium Blue,1 +Factory,Custom Car Garage,893,2008,Trans-Black,3 +Factory,Custom Car Garage,893,2008,Trans-Clear,4 +Factory,Custom Car Garage,893,2008,Trans-Neon Orange,1 +Factory,Custom Car Garage,893,2008,Trans-Red,2 +Factory,Custom Car Garage,893,2008,Trans-Yellow,1 +Factory,Custom Car Garage,893,2008,White,25 +Factory,Custom Car Garage,893,2008,Yellow,23 +Factory,Custom Car Garage,893,2008,Reddish Brown,14 +Factory,Star Justice,884,2008,Black,14 +Factory,Star Justice,884,2008,Blue,15 +Factory,Star Justice,884,2008,Dark Bluish Gray,29 +Factory,Star Justice,884,2008,Light Bluish Gray,59 +Factory,Star Justice,884,2008,Red,2 +Factory,Star Justice,884,2008,Trans-Black,3 +Factory,Star Justice,884,2008,Trans-Dark Blue,2 +Factory,Star Justice,884,2008,Trans-Neon Green,1 +Factory,Star Justice,884,2008,Trans-Yellow,1 +Factory,Star Justice,884,2008,White,50 +Factory,Star Justice,884,2008,Yellow,3 +Fairy-Tale,The Enchanted Palace,216,1999,Trans-Yellow,1 +Fairy-Tale,The Enchanted Palace,216,1999,Dark Pink,13 +Fairy-Tale,The Enchanted Palace,216,1999,Chrome Silver,4 +Fairy-Tale,The Enchanted Palace,216,1999,Chrome Gold,4 +Fairy-Tale,The Enchanted Palace,216,1999,Brown,1 +Fairy-Tale,The Enchanted Palace,216,1999,Bright Green,3 +Fairy-Tale,The Enchanted Palace,216,1999,Blue,2 +Fairy-Tale,The Enchanted Palace,216,1999,Black,5 +Fairy-Tale,The Enchanted Palace,216,1999,Light Violet,3 +Fairy-Tale,The Enchanted Palace,216,1999,Earth Orange,1 +Fairy-Tale,The Enchanted Palace,216,1999,Glitter Trans-Dark Pink,1 +Fairy-Tale,The Enchanted Palace,216,1999,Green,4 +Fairy-Tale,The Enchanted Palace,216,1999,Light Gray,1 +Fairy-Tale,The Enchanted Palace,216,1999,Light Green,4 +Fairy-Tale,The Enchanted Palace,216,1999,Light Yellow,7 +Fairy-Tale,The Enchanted Palace,216,1999,Orange,1 +Fairy-Tale,The Enchanted Palace,216,1999,Pink,9 +Fairy-Tale,The Enchanted Palace,216,1999,Red,4 +Fairy-Tale,The Enchanted Palace,216,1999,Royal Blue,2 +Fairy-Tale,The Enchanted Palace,216,1999,Trans-Clear,5 +Fairy-Tale,The Enchanted Palace,216,1999,Trans-Dark Blue,2 +Fairy-Tale,The Enchanted Palace,216,1999,Trans-Dark Pink,1 +Fairy-Tale,The Enchanted Palace,216,1999,Trans-Green,1 +Fairy-Tale,The Enchanted Palace,216,1999,Trans-Light Blue,2 +Fairy-Tale,The Enchanted Palace,216,1999,Trans-Neon Green,1 +Fairy-Tale,The Enchanted Palace,216,1999,Trans-Neon Orange,1 +Fairy-Tale,The Enchanted Palace,216,1999,Trans-Red,1 +Fairy-Tale,The Enchanted Palace,216,1999,Unknown,4 +Fairy-Tale,The Enchanted Palace,216,1999,Violet,3 +Fairy-Tale,The Enchanted Palace,216,1999,White,22 +Fairy-Tale,Princess Rosaline's Room,67,1999,Blue,2 +Fairy-Tale,Princess Rosaline's Room,67,1999,Dark Pink,6 +Fairy-Tale,Princess Rosaline's Room,67,1999,Glitter Trans-Dark Pink,1 +Fairy-Tale,Princess Rosaline's Room,67,1999,Trans-Yellow,1 +Fairy-Tale,Princess Rosaline's Room,67,1999,Green,2 +Fairy-Tale,Princess Rosaline's Room,67,1999,Light Green,1 +Fairy-Tale,Princess Rosaline's Room,67,1999,Light Violet,1 +Fairy-Tale,Princess Rosaline's Room,67,1999,Light Yellow,3 +Fairy-Tale,Princess Rosaline's Room,67,1999,Medium Violet,1 +Fairy-Tale,Princess Rosaline's Room,67,1999,Pink,6 +Fairy-Tale,Princess Rosaline's Room,67,1999,Royal Blue,1 +Fairy-Tale,Princess Rosaline's Room,67,1999,Trans-Clear,2 +Fairy-Tale,Princess Rosaline's Room,67,1999,Trans-Dark Blue,1 +Fairy-Tale,Princess Rosaline's Room,67,1999,Trans-Dark Pink,1 +Fairy-Tale,Princess Rosaline's Room,67,1999,Trans-Red,2 +Fairy-Tale,Princess Rosaline's Room,67,1999,Chrome Silver,1 +Fairy-Tale,Princess Rosaline's Room,67,1999,White,14 +Fairy-Tale,The Royal Stable,54,1999,Black,3 +Fairy-Tale,The Royal Stable,54,1999,Blue,4 +Fairy-Tale,The Royal Stable,54,1999,Bright Green,1 +Fairy-Tale,The Royal Stable,54,1999,Brown,1 +Fairy-Tale,The Royal Stable,54,1999,Chrome Silver,1 +Fairy-Tale,The Royal Stable,54,1999,Dark Pink,6 +Fairy-Tale,The Royal Stable,54,1999,Glitter Trans-Dark Pink,1 +Fairy-Tale,The Royal Stable,54,1999,Green,5 +Fairy-Tale,The Royal Stable,54,1999,Light Violet,1 +Fairy-Tale,The Royal Stable,54,1999,Light Yellow,2 +Fairy-Tale,The Royal Stable,54,1999,Medium Green,1 +Fairy-Tale,The Royal Stable,54,1999,Orange,1 +Fairy-Tale,The Royal Stable,54,1999,Pink,3 +Fairy-Tale,The Royal Stable,54,1999,Royal Blue,1 +Fairy-Tale,The Royal Stable,54,1999,Trans-Clear,2 +Fairy-Tale,The Royal Stable,54,1999,Trans-Dark Pink,1 +Fairy-Tale,The Royal Stable,54,1999,Trans-Green,1 +Fairy-Tale,The Royal Stable,54,1999,Trans-Light Blue,2 +Fairy-Tale,The Royal Stable,54,1999,Trans-Neon Orange,1 +Fairy-Tale,The Royal Stable,54,1999,White,4 +Fairy-Tale,Witch's Cottage,42,1999,Black,6 +Fairy-Tale,Witch's Cottage,42,1999,Brown,3 +Fairy-Tale,Witch's Cottage,42,1999,Chrome Gold,4 +Fairy-Tale,Witch's Cottage,42,1999,Green,1 +Fairy-Tale,Witch's Cottage,42,1999,Light Gray,2 +Fairy-Tale,Witch's Cottage,42,1999,Light Violet,1 +Fairy-Tale,Witch's Cottage,42,1999,Red,4 +Fairy-Tale,Witch's Cottage,42,1999,Royal Blue,1 +Fairy-Tale,Witch's Cottage,42,1999,Trans-Clear,1 +Fairy-Tale,Witch's Cottage,42,1999,Trans-Green,2 +Fairy-Tale,Witch's Cottage,42,1999,Trans-Light Blue,1 +Fairy-Tale,Witch's Cottage,42,1999,Trans-Red,2 +Fairy-Tale,Witch's Cottage,42,1999,Trans-Yellow,2 +Fairy-Tale,Witch's Cottage,42,1999,Unknown,1 +Fairy-Tale,Witch's Cottage,42,1999,White,3 +Fairy-Tale,Witch's Cottage,42,1999,Yellow,1 +Fairy-Tale,Millimy the Fairy,12,1999,Yellow,1 +Fairy-Tale,Millimy the Fairy,12,1999,Pink,2 +Fairy-Tale,Millimy the Fairy,12,1999,Dark Pink,5 +Fairy-Tale,Millimy the Fairy,12,1999,Trans-Green,1 +Fairy-Tale,Millimy the Fairy,12,1999,Chrome Silver,1 +Fairy-Tale,Millimy the Fairy,12,1999,Royal Blue,1 +Fairy-Tale,King,8,1999,White,1 +Fairy-Tale,King,8,1999,Trans-Clear,1 +Fairy-Tale,King,8,1999,Chrome Silver,2 +Fairy-Tale,King,8,1999,Chrome Gold,4 +Fairy-Tale,Princess Rosaline,6,1999,Chrome Silver,1 +Fairy-Tale,Princess Rosaline,6,1999,Dark Pink,2 +Fairy-Tale,Princess Rosaline,6,1999,Trans-Clear,1 +Fairy-Tale,Princess Rosaline,6,1999,Trans-Green,1 +Fairy-Tale,Princess Rosaline,6,1999,White,1 +Fairy-Tale,Iris,5,1999,Orange,1 +Fairy-Tale,Iris,5,1999,Dark Pink,1 +Fairy-Tale,Iris,5,1999,White,1 +Fairy-Tale,Iris,5,1999,Bright Green,2 +Fairy-Tale,Prince Justin,4,1999,Chrome Silver,1 +Fairy-Tale,Prince Justin,4,1999,Trans-Dark Blue,1 +Fairy-Tale,Prince Justin,4,1999,White,2 +Fairy-Tale,Royal Summer Palace,174,2007,Bright Green,2 +Fairy-Tale,Royal Summer Palace,174,2007,Bright Pink,2 +Fairy-Tale,Royal Summer Palace,174,2007,Chrome Gold,1 +Fairy-Tale,Royal Summer Palace,174,2007,Chrome Pink,1 +Fairy-Tale,Royal Summer Palace,174,2007,Chrome Silver,1 +Fairy-Tale,Royal Summer Palace,174,2007,Dark Pink,4 +Fairy-Tale,Royal Summer Palace,174,2007,Glitter Trans-Dark Pink,4 +Fairy-Tale,Royal Summer Palace,174,2007,Green,2 +Fairy-Tale,Royal Summer Palace,174,2007,Light Bluish Gray,1 +Fairy-Tale,Royal Summer Palace,174,2007,Light Lime,1 +Fairy-Tale,Royal Summer Palace,174,2007,Light Pink,1 +Fairy-Tale,Royal Summer Palace,174,2007,Magenta,3 +Fairy-Tale,Royal Summer Palace,174,2007,Medium Orange,1 +Fairy-Tale,Royal Summer Palace,174,2007,Metallic Gold,1 +Fairy-Tale,Royal Summer Palace,174,2007,Red,3 +Fairy-Tale,Royal Summer Palace,174,2007,Reddish Brown,1 +Fairy-Tale,Royal Summer Palace,174,2007,Tan,1 +Fairy-Tale,Royal Summer Palace,174,2007,Trans-Clear,2 +Fairy-Tale,Royal Summer Palace,174,2007,Trans-Dark Pink,5 +Fairy-Tale,Royal Summer Palace,174,2007,Trans-Purple,1 +Fairy-Tale,Royal Summer Palace,174,2007,Trans-Red,1 +Fairy-Tale,Royal Summer Palace,174,2007,Trans-Yellow,2 +Fairy-Tale,Royal Summer Palace,174,2007,White,25 +Fairy-Tale,Winter Royal Stables,82,2007,Trans-Medium Blue,1 +Fairy-Tale,Winter Royal Stables,82,2007,Trans-Purple,1 +Fairy-Tale,Winter Royal Stables,82,2007,Trans-Yellow,1 +Fairy-Tale,Winter Royal Stables,82,2007,White,12 +Fairy-Tale,Winter Royal Stables,82,2007,Yellow,1 +Fairy-Tale,Winter Royal Stables,82,2007,Reddish Brown,1 +Fairy-Tale,Winter Royal Stables,82,2007,Black,4 +Fairy-Tale,Winter Royal Stables,82,2007,Bright Green,2 +Fairy-Tale,Winter Royal Stables,82,2007,Bright Pink,1 +Fairy-Tale,Winter Royal Stables,82,2007,Chrome Pink,1 +Fairy-Tale,Winter Royal Stables,82,2007,Dark Pink,3 +Fairy-Tale,Winter Royal Stables,82,2007,Dark Purple,1 +Fairy-Tale,Winter Royal Stables,82,2007,Glitter Trans-Dark Pink,3 +Fairy-Tale,Winter Royal Stables,82,2007,Magenta,1 +Fairy-Tale,Winter Royal Stables,82,2007,Medium Blue,1 +Fairy-Tale,Winter Royal Stables,82,2007,Orange,1 +Fairy-Tale,Winter Royal Stables,82,2007,Trans-Dark Pink,4 +Fairy-Tale,The Skating Princess,22,2007,Bright Green,1 +Fairy-Tale,The Skating Princess,22,2007,Bright Pink,1 +Fairy-Tale,The Skating Princess,22,2007,Chrome Pink,1 +Fairy-Tale,The Skating Princess,22,2007,Dark Pink,2 +Fairy-Tale,The Skating Princess,22,2007,Dark Purple,1 +Fairy-Tale,The Skating Princess,22,2007,Orange,1 +Fairy-Tale,The Skating Princess,22,2007,Pearl Light Gray,1 +Fairy-Tale,The Skating Princess,22,2007,Trans-Dark Pink,2 +Fairy-Tale,The Skating Princess,22,2007,Trans-Yellow,1 +Fairy-Tale,The Skating Princess,22,2007,White,6 +Fairy-Tale,The Skating Princess,22,2007,Light Bluish Gray,1 +Fantasy Era,King's Castle Siege,921,2007,Pearl Gold,2 +Fantasy Era,King's Castle Siege,921,2007,Metallic Gold,1 +Fantasy Era,King's Castle Siege,921,2007,Light Bluish Gray,56 +Fantasy Era,King's Castle Siege,921,2007,Dark Red,2 +Fantasy Era,King's Castle Siege,921,2007,Dark Green,5 +Fantasy Era,King's Castle Siege,921,2007,Dark Bluish Gray,37 +Fantasy Era,King's Castle Siege,921,2007,Dark Blue,13 +Fantasy Era,King's Castle Siege,921,2007,Chrome Gold,1 +Fantasy Era,King's Castle Siege,921,2007,Black,43 +Fantasy Era,King's Castle Siege,921,2007,[No Color],1 +Fantasy Era,King's Castle Siege,921,2007,Pearl Light Gray,4 +Fantasy Era,King's Castle Siege,921,2007,Red,1 +Fantasy Era,King's Castle Siege,921,2007,Reddish Brown,24 +Fantasy Era,King's Castle Siege,921,2007,Speckle Black-Silver,1 +Fantasy Era,King's Castle Siege,921,2007,Tan,1 +Fantasy Era,King's Castle Siege,921,2007,Trans-Dark Blue,1 +Fantasy Era,King's Castle Siege,921,2007,Trans-Green,1 +Fantasy Era,King's Castle Siege,921,2007,Trans-Neon Orange,1 +Fantasy Era,King's Castle Siege,921,2007,Trans-Red,1 +Fantasy Era,King's Castle Siege,921,2007,Trans-Yellow,1 +Fantasy Era,King's Castle Siege,921,2007,White,4 +Fantasy Era,Skeleton Ship Attack,629,2007,Black,41 +Fantasy Era,Skeleton Ship Attack,629,2007,Blue,2 +Fantasy Era,Skeleton Ship Attack,629,2007,Chrome Gold,4 +Fantasy Era,Skeleton Ship Attack,629,2007,Dark Blue,7 +Fantasy Era,Skeleton Ship Attack,629,2007,Dark Bluish Gray,30 +Fantasy Era,Skeleton Ship Attack,629,2007,Dark Gray,1 +Fantasy Era,Skeleton Ship Attack,629,2007,Dark Orange,1 +Fantasy Era,Skeleton Ship Attack,629,2007,Dark Red,10 +Fantasy Era,Skeleton Ship Attack,629,2007,Glow In Dark Opaque,1 +Fantasy Era,Skeleton Ship Attack,629,2007,Green,1 +Fantasy Era,Skeleton Ship Attack,629,2007,Light Bluish Gray,37 +Fantasy Era,Skeleton Ship Attack,629,2007,Metallic Silver,2 +Fantasy Era,Skeleton Ship Attack,629,2007,Pearl Gold,2 +Fantasy Era,Skeleton Ship Attack,629,2007,Pearl Light Gray,5 +Fantasy Era,Skeleton Ship Attack,629,2007,Red,15 +Fantasy Era,Skeleton Ship Attack,629,2007,Reddish Brown,26 +Fantasy Era,Skeleton Ship Attack,629,2007,Tan,2 +Fantasy Era,Skeleton Ship Attack,629,2007,Trans-Dark Blue,1 +Fantasy Era,Skeleton Ship Attack,629,2007,Trans-Light Blue,1 +Fantasy Era,Skeleton Ship Attack,629,2007,Trans-Neon Orange,1 +Fantasy Era,Skeleton Ship Attack,629,2007,Trans-Red,1 +Fantasy Era,Skeleton Ship Attack,629,2007,Trans-Yellow,1 +Fantasy Era,Skeleton Ship Attack,629,2007,White,9 +Fantasy Era,Skeleton Ship Attack,629,2007,Yellow,3 +Fantasy Era,Skeleton Tower,401,2007,Trans-Orange,1 +Fantasy Era,Skeleton Tower,401,2007,Black,42 +Fantasy Era,Skeleton Tower,401,2007,Blue,1 +Fantasy Era,Skeleton Tower,401,2007,Chrome Silver,1 +Fantasy Era,Skeleton Tower,401,2007,Dark Blue,4 +Fantasy Era,Skeleton Tower,401,2007,Dark Bluish Gray,13 +Fantasy Era,Skeleton Tower,401,2007,Dark Red,18 +Fantasy Era,Skeleton Tower,401,2007,Light Bluish Gray,30 +Fantasy Era,Skeleton Tower,401,2007,Metallic Silver,1 +Fantasy Era,Skeleton Tower,401,2007,Pearl Light Gray,2 +Fantasy Era,Skeleton Tower,401,2007,Red,10 +Fantasy Era,Skeleton Tower,401,2007,Reddish Brown,6 +Fantasy Era,Skeleton Tower,401,2007,Tan,1 +Fantasy Era,Skeleton Tower,401,2007,Trans-Clear,1 +Fantasy Era,Skeleton Tower,401,2007,Trans-Green,1 +Fantasy Era,Skeleton Tower,401,2007,Trans-Light Blue,1 +Fantasy Era,Skeleton Tower,401,2007,Trans-Neon Orange,3 +Fantasy Era,Skeleton Tower,401,2007,White,17 +Fantasy Era,Skeleton Tower,401,2007,Yellow,3 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Trans-Neon Orange,1 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Speckle Black-Silver,1 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Reddish Brown,3 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Pearl Light Gray,5 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Metallic Silver,2 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Dark Red,5 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Dark Bluish Gray,14 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Dark Blue,2 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Black,26 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Light Bluish Gray,6 +Fantasy Era,Skeletons' Prison Carriage,193,2007,White,10 +Fantasy Era,Skeletons' Prison Carriage,193,2007,Yellow,2 +Fantasy Era,Knights' Catapult Defense,123,2007,Speckle Black-Silver,1 +Fantasy Era,Knights' Catapult Defense,123,2007,Tan,1 +Fantasy Era,Knights' Catapult Defense,123,2007,White,6 +Fantasy Era,Knights' Catapult Defense,123,2007,Yellow,2 +Fantasy Era,Knights' Catapult Defense,123,2007,Metallic Silver,1 +Fantasy Era,Knights' Catapult Defense,123,2007,Reddish Brown,7 +Fantasy Era,Knights' Catapult Defense,123,2007,Black,18 +Fantasy Era,Knights' Catapult Defense,123,2007,Dark Blue,2 +Fantasy Era,Knights' Catapult Defense,123,2007,Dark Bluish Gray,8 +Fantasy Era,Knights' Catapult Defense,123,2007,Pearl Gold,1 +Fantasy Era,Knights' Catapult Defense,123,2007,Pearl Light Gray,4 +Fantasy Era,Knights' Catapult Defense,123,2007,Light Bluish Gray,6 +Fantasy Era,Knights' Catapult Defense,123,2007,Red,2 +Fantasy Era,The Final Joust,62,2007,Metallic Silver,1 +Fantasy Era,The Final Joust,62,2007,Black,7 +Fantasy Era,The Final Joust,62,2007,Dark Blue,4 +Fantasy Era,The Final Joust,62,2007,Dark Bluish Gray,4 +Fantasy Era,The Final Joust,62,2007,Light Bluish Gray,5 +Fantasy Era,The Final Joust,62,2007,Metallic Gold,1 +Fantasy Era,The Final Joust,62,2007,Pearl Gold,2 +Fantasy Era,The Final Joust,62,2007,Pearl Light Gray,4 +Fantasy Era,The Final Joust,62,2007,Reddish Brown,5 +Fantasy Era,The Final Joust,62,2007,White,5 +Fantasy Era,The Final Joust,62,2007,Yellow,1 +Fantasy Era,Crossbow Attack,54,2007,Black,9 +Fantasy Era,Crossbow Attack,54,2007,Dark Blue,2 +Fantasy Era,Crossbow Attack,54,2007,Dark Bluish Gray,7 +Fantasy Era,Crossbow Attack,54,2007,Light Bluish Gray,3 +Fantasy Era,Crossbow Attack,54,2007,Metallic Silver,2 +Fantasy Era,Crossbow Attack,54,2007,Red,1 +Fantasy Era,Crossbow Attack,54,2007,Pearl Gold,1 +Fantasy Era,Crossbow Attack,54,2007,Pearl Light Gray,1 +Fantasy Era,Crossbow Attack,54,2007,Reddish Brown,4 +Fantasy Era,Crossbow Attack,54,2007,Yellow,2 +Fantasy Era,Crossbow Attack,54,2007,White,5 +Fantasy Era,Medieval Market Village,1616,2009,Dark Bluish Gray,33 +Fantasy Era,Medieval Market Village,1616,2009,Dark Brown,8 +Fantasy Era,Medieval Market Village,1616,2009,Dark Green,2 +Fantasy Era,Medieval Market Village,1616,2009,Dark Orange,1 +Fantasy Era,Medieval Market Village,1616,2009,Dark Pink,1 +Fantasy Era,Medieval Market Village,1616,2009,Dark Red,3 +Fantasy Era,Medieval Market Village,1616,2009,Dark Tan,4 +Fantasy Era,Medieval Market Village,1616,2009,Flat Silver,4 +Fantasy Era,Medieval Market Village,1616,2009,Green,3 +Fantasy Era,Medieval Market Village,1616,2009,Light Bluish Gray,35 +Fantasy Era,Medieval Market Village,1616,2009,Medium Blue,4 +Fantasy Era,Medieval Market Village,1616,2009,Metallic Gold,1 +Fantasy Era,Medieval Market Village,1616,2009,Metallic Silver,2 +Fantasy Era,Medieval Market Village,1616,2009,Orange,2 +Fantasy Era,Medieval Market Village,1616,2009,Pearl Gold,5 +Fantasy Era,Medieval Market Village,1616,2009,Red,5 +Fantasy Era,Medieval Market Village,1616,2009,Reddish Brown,52 +Fantasy Era,Medieval Market Village,1616,2009,Tan,19 +Fantasy Era,Medieval Market Village,1616,2009,Trans-Clear,1 +Fantasy Era,Medieval Market Village,1616,2009,Trans-Neon Orange,2 +Fantasy Era,Medieval Market Village,1616,2009,Trans-Orange,1 +Fantasy Era,Medieval Market Village,1616,2009,Trans-Yellow,1 +Fantasy Era,Medieval Market Village,1616,2009,White,15 +Fantasy Era,Medieval Market Village,1616,2009,Yellow,9 +Fantasy Era,Medieval Market Village,1616,2009,[No Color],1 +Fantasy Era,Medieval Market Village,1616,2009,Black,64 +Fantasy Era,Medieval Market Village,1616,2009,Blue,1 +Fantasy Era,Medieval Market Village,1616,2009,Bright Green,2 +Fantasy Era,Medieval Market Village,1616,2009,Bright Light Orange,2 +Fantasy Era,Medieval Market Village,1616,2009,Bright Pink,1 +Fantasy Era,Medieval Market Village,1616,2009,Chrome Gold,4 +Fantasy Era,Medieval Market Village,1616,2009,Dark Blue,4 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Tan,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Light Bluish Gray,27 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Dark Tan,5 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Trans-Neon Green,2 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Dark Red,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Dark Orange,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Dark Green,5 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Dark Brown,9 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Dark Bluish Gray,42 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Dark Blue,5 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Chrome Gold,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Blue,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Trans-Green,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Yellow,4 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Red,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,White,5 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Trans-Red,2 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Trans-Orange,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Trans-Clear,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Speckle Black-Silver,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Sand Green,8 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Reddish Brown,34 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Black,26 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Pearl Light Gray,4 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Pearl Gold,1 +Fantasy Era,Trolls' Mountain Fortress,843,2009,Metallic Silver,3 +Fantasy Era,Drawbridge Defense,337,2009,Green,1 +Fantasy Era,Drawbridge Defense,337,2009,Light Bluish Gray,36 +Fantasy Era,Drawbridge Defense,337,2009,Metallic Gold,1 +Fantasy Era,Drawbridge Defense,337,2009,Pearl Gold,7 +Fantasy Era,Drawbridge Defense,337,2009,Pearl Light Gray,1 +Fantasy Era,Drawbridge Defense,337,2009,Red,4 +Fantasy Era,Drawbridge Defense,337,2009,Reddish Brown,13 +Fantasy Era,Drawbridge Defense,337,2009,Tan,2 +Fantasy Era,Drawbridge Defense,337,2009,Trans-Neon Orange,1 +Fantasy Era,Drawbridge Defense,337,2009,White,5 +Fantasy Era,Drawbridge Defense,337,2009,Yellow,4 +Fantasy Era,Drawbridge Defense,337,2009,Metallic Silver,1 +Fantasy Era,Drawbridge Defense,337,2009,Black,20 +Fantasy Era,Drawbridge Defense,337,2009,Blue,5 +Fantasy Era,Drawbridge Defense,337,2009,Chrome Gold,1 +Fantasy Era,Drawbridge Defense,337,2009,Dark Blue,6 +Fantasy Era,Drawbridge Defense,337,2009,Dark Bluish Gray,23 +Fantasy Era,Drawbridge Defense,337,2009,Dark Green,2 +Fantasy Era,Drawbridge Defense,337,2009,Flat Silver,1 +Fantasy Era,King's Battle Chariot,103,2009,Trans-Green,1 +Fantasy Era,King's Battle Chariot,103,2009,Chrome Gold,2 +Fantasy Era,King's Battle Chariot,103,2009,Black,5 +Fantasy Era,King's Battle Chariot,103,2009,Yellow,2 +Fantasy Era,King's Battle Chariot,103,2009,White,3 +Fantasy Era,King's Battle Chariot,103,2009,Trans-Yellow,1 +Fantasy Era,King's Battle Chariot,103,2009,Trans-Red,1 +Fantasy Era,King's Battle Chariot,103,2009,Trans-Dark Blue,1 +Fantasy Era,King's Battle Chariot,103,2009,Speckle Black-Silver,1 +Fantasy Era,King's Battle Chariot,103,2009,Sand Green,1 +Fantasy Era,King's Battle Chariot,103,2009,Reddish Brown,8 +Fantasy Era,King's Battle Chariot,103,2009,Pearl Light Gray,1 +Fantasy Era,King's Battle Chariot,103,2009,Pearl Gold,9 +Fantasy Era,King's Battle Chariot,103,2009,Metallic Silver,1 +Fantasy Era,King's Battle Chariot,103,2009,Light Bluish Gray,6 +Fantasy Era,King's Battle Chariot,103,2009,Dark Brown,1 +Fantasy Era,King's Battle Chariot,103,2009,Dark Bluish Gray,11 +Fantasy Era,King's Battle Chariot,103,2009,Dark Blue,9 +Fantasy Era,King's Battle Chariot,103,2009,Copper,1 +Fantasy Era,Battle Pack Dwarfs,45,2009,Dark Bluish Gray,5 +Fantasy Era,Battle Pack Dwarfs,45,2009,Dark Brown,3 +Fantasy Era,Battle Pack Dwarfs,45,2009,Dark Orange,1 +Fantasy Era,Battle Pack Dwarfs,45,2009,Metallic Gold,2 +Fantasy Era,Battle Pack Dwarfs,45,2009,Metallic Silver,3 +Fantasy Era,Battle Pack Dwarfs,45,2009,Reddish Brown,1 +Fantasy Era,Battle Pack Dwarfs,45,2009,Trans-Orange,1 +Fantasy Era,Battle Pack Dwarfs,45,2009,Copper,2 +Fantasy Era,Battle Pack Dwarfs,45,2009,Black,3 +Fantasy Era,Battle Pack Dwarfs,45,2009,Yellow,5 +Fantasy Era,Battle Pack Troll Warriors,36,2009,Copper,1 +Fantasy Era,Battle Pack Troll Warriors,36,2009,Dark Bluish Gray,4 +Fantasy Era,Battle Pack Troll Warriors,36,2009,Light Bluish Gray,1 +Fantasy Era,Battle Pack Troll Warriors,36,2009,Pearl Light Gray,1 +Fantasy Era,Battle Pack Troll Warriors,36,2009,Speckle Black-Silver,3 +Fantasy Era,Battle Pack Troll Warriors,36,2009,Sand Green,2 +Fantasy Era,Battle Pack Troll Warriors,36,2009,Reddish Brown,4 +Fantasy Era,Battle Pack Troll Warriors,36,2009,Pearl Dark Gray,1 +Farm,Farm Tractor,49,1963,Black,3 +Farm,Farm Tractor,49,1963,Blue,8 +Farm,Farm Tractor,49,1963,Light Gray,2 +Farm,Farm Tractor,49,1963,Red,6 +Farm,Farm Tractor,49,1963,White,1 +Farm,Tractor & Trailer,82,1964,Black,1 +Farm,Tractor & Trailer,82,1964,Blue,8 +Farm,Tractor & Trailer,82,1964,Light Gray,2 +Farm,Tractor & Trailer,82,1964,Milky White,1 +Farm,Tractor & Trailer,82,1964,Red,6 +Farm,Tractor & Trailer,82,1964,White,5 +Farm,Tractor & Trailer,82,1964,Yellow,2 +Farm,Tractor,21,1982,Black,7 +Farm,Tractor,21,1982,Blue,1 +Farm,Tractor,21,1982,Brown,1 +Farm,Tractor,21,1982,Red,5 +Farm,Tractor,21,1982,Trans-Yellow,1 +Farm,Tractor,21,1982,Yellow,1 +Farm,Tractor,347,1986,Yellow,14 +Farm,Tractor,347,1986,Black,16 +Farm,Tractor,347,1986,Blue,6 +Farm,Tractor,347,1986,Light Gray,38 +Farm,Tractor,347,1986,Red,13 +Farm,Horse Trailer,144,1986,Black,16 +Farm,Horse Trailer,144,1986,Blue,6 +Farm,Horse Trailer,144,1986,Light Gray,3 +Farm,Horse Trailer,144,1986,Red,22 +Farm,Horse Trailer,144,1986,Trans-Red,1 +Farm,Horse Trailer,144,1986,White,22 +Farm,Horse Trailer,144,1986,Yellow,2 +Farm,Horse Trailer,144,1986,Trans-Clear,4 +Farm,Farm,613,2009,Green,2 +Farm,Farm,613,2009,Light Bluish Gray,21 +Farm,Farm,613,2009,Medium Blue,1 +Farm,Farm,613,2009,Orange,1 +Farm,Farm,613,2009,Red,23 +Farm,Farm,613,2009,Reddish Brown,17 +Farm,Farm,613,2009,Tan,21 +Farm,Farm,613,2009,Trans-Black,1 +Farm,Farm,613,2009,Trans-Clear,1 +Farm,Farm,613,2009,Trans-Red,2 +Farm,Farm,613,2009,Trans-Yellow,4 +Farm,Farm,613,2009,White,8 +Farm,Farm,613,2009,Yellow,24 +Farm,Farm,613,2009,Black,48 +Farm,Farm,613,2009,Blue,24 +Farm,Farm,613,2009,Dark Bluish Gray,24 +Farm,Farm,613,2009,Dark Red,1 +Farm,Combine Harvester,364,2009,Green,19 +Farm,Combine Harvester,364,2009,Black,23 +Farm,Combine Harvester,364,2009,Blue,1 +Farm,Combine Harvester,364,2009,Dark Blue,1 +Farm,Combine Harvester,364,2009,Dark Bluish Gray,14 +Farm,Combine Harvester,364,2009,Flat Silver,1 +Farm,Combine Harvester,364,2009,Light Bluish Gray,14 +Farm,Combine Harvester,364,2009,Red,7 +Farm,Combine Harvester,364,2009,Tan,2 +Farm,Combine Harvester,364,2009,Trans-Black,2 +Farm,Combine Harvester,364,2009,Trans-Orange,1 +Farm,Combine Harvester,364,2009,Trans-Red,1 +Farm,Combine Harvester,364,2009,Trans-Yellow,2 +Farm,Combine Harvester,364,2009,White,28 +Farm,Combine Harvester,364,2009,Yellow,8 +Farm,4WD with Horse Trailer,176,2009,Black,22 +Farm,4WD with Horse Trailer,176,2009,Dark Blue,1 +Farm,4WD with Horse Trailer,176,2009,Dark Bluish Gray,5 +Farm,4WD with Horse Trailer,176,2009,Dark Orange,1 +Farm,4WD with Horse Trailer,176,2009,Light Bluish Gray,10 +Farm,4WD with Horse Trailer,176,2009,Red,8 +Farm,4WD with Horse Trailer,176,2009,Reddish Brown,3 +Farm,4WD with Horse Trailer,176,2009,Tan,1 +Farm,4WD with Horse Trailer,176,2009,Trans-Clear,4 +Farm,4WD with Horse Trailer,176,2009,Trans-Orange,2 +Farm,4WD with Horse Trailer,176,2009,Trans-Red,1 +Farm,4WD with Horse Trailer,176,2009,Trans-Yellow,1 +Farm,4WD with Horse Trailer,176,2009,White,8 +Farm,4WD with Horse Trailer,176,2009,Yellow,3 +Farm,4WD with Horse Trailer,176,2009,[No Color],1 +Farm,Tractor,77,2009,Yellow,2 +Farm,Tractor,77,2009,Black,12 +Farm,Tractor,77,2009,[No Color],1 +Farm,Tractor,77,2009,Blue,2 +Farm,Tractor,77,2009,Dark Bluish Gray,7 +Farm,Tractor,77,2009,Green,1 +Farm,Tractor,77,2009,Light Bluish Gray,5 +Farm,Tractor,77,2009,Red,10 +Farm,Tractor,77,2009,Trans-Black,1 +Farm,Tractor,77,2009,Trans-Clear,1 +Farm,Tractor,77,2009,Trans-Red,1 +Farm,Tractor,77,2009,White,5 +Farm,Farmer & Tractor,28,2009,Black,4 +Farm,Farmer & Tractor,28,2009,Light Bluish Gray,6 +Farm,Farmer & Tractor,28,2009,Green,3 +Farm,Farmer & Tractor,28,2009,Tan,1 +Farm,Farmer & Tractor,28,2009,Trans-Clear,1 +Farm,Farmer & Tractor,28,2009,White,1 +Farm,Farmer & Tractor,28,2009,Yellow,3 +Farm,Tractor with Log Loader,525,2010,Lime,6 +Farm,Tractor with Log Loader,525,2010,Reddish Brown,1 +Farm,Tractor with Log Loader,525,2010,Red,5 +Farm,Tractor with Log Loader,525,2010,Black,47 +Farm,Tractor with Log Loader,525,2010,Yellow,4 +Farm,Tractor with Log Loader,525,2010,White,4 +Farm,Tractor with Log Loader,525,2010,Trans-Yellow,1 +Farm,Tractor with Log Loader,525,2010,Trans-Orange,1 +Farm,Tractor with Log Loader,525,2010,Trans-Clear,2 +Farm,Tractor with Log Loader,525,2010,Tan,3 +Farm,Tractor with Log Loader,525,2010,Blue,5 +Farm,Tractor with Log Loader,525,2010,Dark Bluish Gray,14 +Farm,Tractor with Log Loader,525,2010,Light Bluish Gray,19 +Farm,Pig Farm & Tractor,256,2010,Trans-Red,2 +Farm,Pig Farm & Tractor,256,2010,White,8 +Farm,Pig Farm & Tractor,256,2010,Yellow,8 +Farm,Pig Farm & Tractor,256,2010,Flesh,1 +Farm,Pig Farm & Tractor,256,2010,Black,19 +Farm,Pig Farm & Tractor,256,2010,Blue,2 +Farm,Pig Farm & Tractor,256,2010,Bright Green,1 +Farm,Pig Farm & Tractor,256,2010,Dark Bluish Gray,13 +Farm,Pig Farm & Tractor,256,2010,Green,3 +Farm,Pig Farm & Tractor,256,2010,Light Bluish Gray,21 +Farm,Pig Farm & Tractor,256,2010,Lime,9 +Farm,Pig Farm & Tractor,256,2010,Orange,1 +Farm,Pig Farm & Tractor,256,2010,Red,19 +Farm,Pig Farm & Tractor,256,2010,Reddish Brown,7 +Farm,Pig Farm & Tractor,256,2010,Tan,4 +Farm,Pig Farm & Tractor,256,2010,Trans-Black,2 +Farm,Pig Farm & Tractor,256,2010,Trans-Clear,1 +Farm,Pig Farm & Tractor,256,2010,Trans-Orange,1 +Farm,Farmer,16,2010,Black,2 +Farm,Farmer,16,2010,Blue,1 +Farm,Farmer,16,2010,Dark Bluish Gray,1 +Farm,Farmer,16,2010,Flesh,1 +Farm,Farmer,16,2010,Yellow,1 +Farm,Farmer,16,2010,Tan,2 +Farm,Farmer,16,2010,Reddish Brown,1 +Farm,Farmer,16,2010,Red,3 +Farm,Farmer,16,2010,Lime,1 +Farm,Farmer,16,2010,Green,1 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,Black,44 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,[No Color],1 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,Blue,1 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,Dark Bluish Gray,5 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,Flat Silver,2 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,Light Bluish Gray,24 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,Red,44 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,Tan,1 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,Trans-Clear,1 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,Trans-Red,1 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,White,6 +Ferrari,Ferrari F1 Racer 1:10 Scale,738,2004,Yellow,1 +Ferrari,Ferrari F1 Pit Set,217,2004,Dark Bluish Gray,4 +Ferrari,Ferrari F1 Pit Set,217,2004,Light Bluish Gray,15 +Ferrari,Ferrari F1 Pit Set,217,2004,Light Gray,1 +Ferrari,Ferrari F1 Pit Set,217,2004,Red,35 +Ferrari,Ferrari F1 Pit Set,217,2004,Trans-Black,1 +Ferrari,Ferrari F1 Pit Set,217,2004,Trans-Green,1 +Ferrari,Ferrari F1 Pit Set,217,2004,Trans-Red,1 +Ferrari,Ferrari F1 Pit Set,217,2004,White,20 +Ferrari,Ferrari F1 Pit Set,217,2004,Black,18 +Ferrari,Ferrari F1 Racer 1:24 Scale,112,2004,[No Color],1 +Ferrari,Ferrari F1 Racer 1:24 Scale,112,2004,Black,18 +Ferrari,Ferrari F1 Racer 1:24 Scale,112,2004,Light Bluish Gray,6 +Ferrari,Ferrari F1 Racer 1:24 Scale,112,2004,Red,29 +Ferrari,Ferrari F1 Racer 1:24 Scale,112,2004,Trans-Black,1 +Ferrari,Ferrari F1 Racer 1:24 Scale,112,2004,Trans-Red,1 +Ferrari,Ferrari F1 Racer 1:24 Scale,112,2004,White,3 +Ferrari,M. Schumacher and R. Barrichello,13,2004,Chrome Silver,1 +Ferrari,M. Schumacher and R. Barrichello,13,2004,Dark Bluish Gray,1 +Ferrari,M. Schumacher and R. Barrichello,13,2004,Red,3 +Ferrari,M. Schumacher and R. Barrichello,13,2004,Trans-Black,1 +Ferrari,M. Schumacher and R. Barrichello,13,2004,White,3 +Ferrari,FXX,52,2012,Black,20 +Ferrari,FXX,52,2012,Light Bluish Gray,1 +Ferrari,FXX,52,2012,[No Color],1 +Ferrari,FXX,52,2012,Red,1 +Ferrari,FXX,52,2012,Blue,1 +Ferrari,Shell F1 Team,47,2012,Yellow,3 +Ferrari,Ferrari F40,47,2012,[No Color],1 +Ferrari,Ferrari F40,47,2012,Black,8 +Ferrari,Ferrari F40,47,2012,Blue,1 +Ferrari,Ferrari F40,47,2012,Dark Bluish Gray,1 +Ferrari,Ferrari F40,47,2012,Red,1 +Ferrari,Ferrari F40,47,2012,Trans-Red,1 +Ferrari,Ferrari F40,47,2012,White,10 +Ferrari,Ferrari F40,47,2012,Yellow,6 +Ferrari,Shell F1 Team,47,2012,Black,6 +Ferrari,Shell F1 Team,47,2012,[No Color],1 +Ferrari,Shell F1 Team,47,2012,Dark Bluish Gray,5 +Ferrari,Shell F1 Team,47,2012,Dark Brown,1 +Ferrari,Shell F1 Team,47,2012,Light Bluish Gray,3 +Ferrari,Shell F1 Team,47,2012,Red,4 +Ferrari,Shell F1 Team,47,2012,Reddish Brown,1 +Ferrari,Shell F1 Team,47,2012,Trans-Black,2 +Ferrari,Shell F1 Team,47,2012,Trans-Clear,3 +Ferrari,Shell F1 Team,47,2012,Trans-Yellow,1 +Ferrari,Shell F1 Team,47,2012,White,6 +Ferrari,Scuderia Ferrari Truck,40,2012,[No Color],1 +Ferrari,Scuderia Ferrari Truck,40,2012,Black,8 +Ferrari,Scuderia Ferrari Truck,40,2012,Dark Bluish Gray,1 +Ferrari,Scuderia Ferrari Truck,40,2012,Light Bluish Gray,4 +Ferrari,Scuderia Ferrari Truck,40,2012,Red,11 +Ferrari,Ferrari 150° Italia,33,2012,Red,9 +Ferrari,Ferrari 150° Italia,33,2012,White,2 +Ferrari,Ferrari 150° Italia,33,2012,Lime,1 +Ferrari,Ferrari 150° Italia,33,2012,[No Color],1 +Ferrari,Ferrari 150° Italia,33,2012,Black,6 +Ferrari,Ferrari 150° Italia,33,2012,Blue,1 +Ferrari,458 Italia,32,2012,[No Color],1 +Ferrari,458 Italia,32,2012,Yellow,10 +Ferrari,458 Italia,32,2012,Dark Bluish Gray,1 +Ferrari,458 Italia,32,2012,Red,1 +Ferrari,458 Italia,32,2012,Trans-Red,1 +Ferrari,458 Italia,32,2012,Black,4 +Ferrari,458 Italia,32,2012,White,1 +Ferrari,250 GT Berlinetta,24,2012,Black,6 +Ferrari,250 GT Berlinetta,24,2012,Dark Bluish Gray,1 +Ferrari,250 GT Berlinetta,24,2012,Red,6 +Ferrari,250 GT Berlinetta,24,2012,Trans-Clear,1 +Ferrari,250 GT Berlinetta,24,2012,White,1 +Ferrari,250 GT Berlinetta,24,2012,[No Color],1 +Ferries,Finnjet Ferry,507,1977,Blue,14 +Ferries,Finnjet Ferry,507,1977,Red,7 +Ferries,Finnjet Ferry,507,1977,Trans-Clear,5 +Ferries,Finnjet Ferry,507,1977,White,19 +Ferries,Silja Line Ferry,413,1977,Black,4 +Ferries,Silja Line Ferry,413,1977,Blue,9 +Ferries,Silja Line Ferry,413,1977,Red,1 +Ferries,Silja Line Ferry,413,1977,Trans-Clear,3 +Ferries,Silja Line Ferry,413,1977,White,22 +Ferries,Silja Line Ferry,413,1977,Yellow,3 +Ferries,Stena Line Ferry,211,1999,Black,13 +Ferries,Stena Line Ferry,211,1999,Blue,13 +Ferries,Stena Line Ferry,211,1999,Light Gray,7 +Ferries,Stena Line Ferry,211,1999,Red,16 +Ferries,Stena Line Ferry,211,1999,Trans-Dark Blue,1 +Ferries,Stena Line Ferry,211,1999,Trans-Green,1 +Ferries,Stena Line Ferry,211,1999,Trans-Red,1 +Ferries,Stena Line Ferry,211,1999,Trans-Yellow,2 +Ferries,Stena Line Ferry,211,1999,White,20 +Ferries,Stena Line Ferry,211,1999,Yellow,4 +Fire,Fire Engine,170,1964,Black,2 +Fire,Fire Engine,170,1964,Light Gray,1 +Fire,Fire Engine,170,1964,Milky White,1 +Fire,Fire Engine,170,1964,Red,15 +Fire,Fire Engine,170,1964,Trans-Clear,2 +Fire,Fire Engine,170,1964,White,2 +Fire,Fire Engine,170,1964,Yellow,4 +Fire,Fire Engine,76,1968,Black,2 +Fire,Fire Engine,76,1968,Blue,2 +Fire,Fire Engine,76,1968,Red,23 +Fire,Fire Engine,76,1968,Trans-Clear,3 +Fire,Fire Engine,76,1968,White,2 +Fire,Fire Engine,76,1968,Yellow,2 +Fire,Fire Station with Mini Cars,205,1970,Black,7 +Fire,Fire Station with Mini Cars,205,1970,Blue,1 +Fire,Fire Station with Mini Cars,205,1970,Green,2 +Fire,Fire Station with Mini Cars,205,1970,Light Gray,1 +Fire,Fire Station with Mini Cars,205,1970,Red,21 +Fire,Fire Station with Mini Cars,205,1970,Trans-Clear,4 +Fire,Fire Station with Mini Cars,205,1970,White,8 +Fire,Fire Station with Mini Cars,205,1970,Yellow,7 +Fire,Fire Truck,40,1970,Red,11 +Fire,Fire Truck,40,1970,Black,4 +Fire,Fire Truck,40,1970,Blue,1 +Fire,Fire Truck,40,1970,Trans-Clear,2 +Fire,Fire Truck,40,1970,Yellow,2 +Fire,Fire Truck,30,1970,Light Gray,1 +Fire,Fire Truck,30,1970,Red,9 +Fire,Fire Truck,30,1970,Trans-Clear,1 +Fire,Fire Truck,30,1970,Black,2 +Fire,Fire Truck,60,1976,Black,5 +Fire,Fire Truck,60,1976,Red,18 +Fire,Fire Truck,60,1976,Trans-Clear,2 +Fire,Fire Truck,60,1976,Yellow,3 +Fire,Engine Co. No. 9,337,1978,[No Color],1 +Fire,Engine Co. No. 9,337,1978,Black,15 +Fire,Engine Co. No. 9,337,1978,Blue,3 +Fire,Engine Co. No. 9,337,1978,Dark Gray,2 +Fire,Engine Co. No. 9,337,1978,Green,4 +Fire,Engine Co. No. 9,337,1978,Light Gray,5 +Fire,Engine Co. No. 9,337,1978,Milky White,1 +Fire,Engine Co. No. 9,337,1978,Red,33 +Fire,Engine Co. No. 9,337,1978,Trans-Clear,3 +Fire,Engine Co. No. 9,337,1978,Trans-Dark Blue,1 +Fire,Engine Co. No. 9,337,1978,White,7 +Fire,Engine Co. No. 9,337,1978,Yellow,8 +Fire,Fire Station,334,1978,Milky White,1 +Fire,Fire Station,334,1978,Red,27 +Fire,Fire Station,334,1978,Trans-Clear,2 +Fire,Fire Station,334,1978,Trans-Dark Blue,1 +Fire,Fire Station,334,1978,White,2 +Fire,Fire Station,334,1978,Yellow,20 +Fire,Fire Station,334,1978,Black,15 +Fire,Fire Station,334,1978,Blue,3 +Fire,Fire Station,334,1978,Dark Gray,2 +Fire,Fire Station,334,1978,Green,4 +Fire,Fire Station,334,1978,Light Gray,7 +Fire,Fire Emergency Van,65,1978,Yellow,2 +Fire,Fire Emergency Van,65,1978,Black,5 +Fire,Fire Emergency Van,65,1978,Light Gray,7 +Fire,Fire Emergency Van,65,1978,Red,19 +Fire,Fire Emergency Van,65,1978,Trans-Clear,2 +Fire,Fire Emergency Van,65,1978,Trans-Dark Blue,1 +Fire,Fire Truck and Trailer,47,1978,[No Color],1 +Fire,Fire Truck and Trailer,47,1978,Black,4 +Fire,Fire Truck and Trailer,47,1978,Light Gray,3 +Fire,Fire Truck and Trailer,47,1978,Red,13 +Fire,Fire Truck and Trailer,47,1978,Trans-Clear,1 +Fire,Fire Truck and Trailer,47,1978,Trans-Dark Blue,1 +Fire,Fire Truck and Trailer,47,1978,Yellow,4 +Fire,Fireman's Car,32,1978,Black,4 +Fire,Fireman's Car,32,1978,Light Gray,2 +Fire,Fireman's Car,32,1978,Red,10 +Fire,Fireman's Car,32,1978,Trans-Clear,2 +Fire,Fireman's Car,32,1978,Trans-Dark Blue,1 +Fire,Fireman's Car,32,1978,Yellow,1 +Fire,Fire Chief's Car,24,1978,Yellow,1 +Fire,Fire Chief's Car,24,1978,[No Color],1 +Fire,Fire Chief's Car,24,1978,Black,4 +Fire,Fire Chief's Car,24,1978,Light Gray,1 +Fire,Fire Chief's Car,24,1978,Red,5 +Fire,Fire Chief's Car,24,1978,Trans-Clear,2 +Fire,Fire Chief's Car,24,1978,Trans-Dark Blue,1 +Fire,Buster Bulldog's Fire Engine,17,1983,Black,3 +Fire,Buster Bulldog's Fire Engine,17,1983,Red,9 +Fire,Buster Bulldog's Fire Engine,17,1983,Yellow,1 +Fire,Fire Station,153,1987,[No Color],2 +Fire,Fire Station,153,1987,Black,7 +Fire,Fire Station,153,1987,Blue,2 +Fire,Fire Station,153,1987,Fabuland Brown,3 +Fire,Fire Station,153,1987,Green,3 +Fire,Fire Station,153,1987,Light Gray,1 +Fire,Fire Station,153,1987,Red,26 +Fire,Fire Station,153,1987,White,5 +Fire,Fire Station,153,1987,Yellow,9 +Fire,Fire Chief Barty Bulldog,9,1987,Black,2 +Fire,Fire Chief Barty Bulldog,9,1987,Red,4 +Fire,Fire Chief Barty Bulldog,9,1987,Yellow,1 +Fire,Fire Chief Barty Bulldog,9,1987,[No Color],1 +Fire,Fire Engine / Fire Response Unit,430,1995,Dark Gray,2 +Fire,Fire Engine / Fire Response Unit,430,1995,[No Color],3 +Fire,Fire Engine / Fire Response Unit,430,1995,Black,25 +Fire,Fire Engine / Fire Response Unit,430,1995,Blue,5 +Fire,Fire Engine / Fire Response Unit,430,1995,Light Gray,43 +Fire,Fire Engine / Fire Response Unit,430,1995,Red,27 +Fire,Fire Engine / Fire Response Unit,430,1995,Trans-Clear,1 +Fire,Fire Engine / Fire Response Unit,430,1995,Trans-Dark Blue,3 +Fire,Fire Engine / Fire Response Unit,430,1995,White,8 +Fire,Fire Engine / Fire Response Unit,430,1995,Yellow,2 +Fire,Blaze Commander,49,1995,Light Gray,3 +Fire,Blaze Commander,49,1995,Red,8 +Fire,Blaze Commander,49,1995,Trans-Dark Blue,1 +Fire,Blaze Commander,49,1995,Trans-Light Blue,2 +Fire,Blaze Commander,49,1995,Trans-Red,1 +Fire,Blaze Commander,49,1995,Trans-Yellow,1 +Fire,Blaze Commander,49,1995,White,4 +Fire,Blaze Commander,49,1995,Yellow,4 +Fire,Blaze Commander,49,1995,Black,9 +Fire,Blaze Brigade,261,1997,Black,19 +Fire,Blaze Brigade,261,1997,Blue,2 +Fire,Blaze Brigade,261,1997,Dark Gray,6 +Fire,Blaze Brigade,261,1997,Green,4 +Fire,Blaze Brigade,261,1997,Light Gray,14 +Fire,Blaze Brigade,261,1997,Red,20 +Fire,Blaze Brigade,261,1997,Trans-Clear,1 +Fire,Blaze Brigade,261,1997,Trans-Dark Blue,5 +Fire,Blaze Brigade,261,1997,Trans-Green,1 +Fire,Blaze Brigade,261,1997,Trans-Light Blue,6 +Fire,Blaze Brigade,261,1997,Trans-Red,1 +Fire,Blaze Brigade,261,1997,Trans-Yellow,1 +Fire,Blaze Brigade,261,1997,Unknown,1 +Fire,Blaze Brigade,261,1997,White,25 +Fire,Blaze Brigade,261,1997,Yellow,18 +Fire,Fire Engine,67,1997,Blue,1 +Fire,Fire Engine,67,1997,Black,8 +Fire,Fire Engine,67,1997,Yellow,5 +Fire,Fire Engine,67,1997,Light Gray,5 +Fire,Fire Engine,67,1997,Red,8 +Fire,Fire Engine,67,1997,Trans-Dark Blue,1 +Fire,Fire Engine,67,1997,Trans-Light Blue,2 +Fire,Fire Engine,67,1997,White,8 +Fire,Fire Chief,26,1997,Black,6 +Fire,Fire Chief,26,1997,Blue,1 +Fire,Fire Chief,26,1997,Red,3 +Fire,Fire Chief,26,1997,Trans-Dark Blue,1 +Fire,Fire Chief,26,1997,White,4 +Fire,Fire Chief,26,1997,Yellow,1 +Fire,Fire Chief,26,1997,Light Gray,2 +Fire,Fire Station,224,2000,Black,20 +Fire,Fire Station,224,2000,Brown,1 +Fire,Fire Station,224,2000,Dark Gray,6 +Fire,Fire Station,224,2000,Green,1 +Fire,Fire Station,224,2000,Light Gray,10 +Fire,Fire Station,224,2000,Red,22 +Fire,Fire Station,224,2000,Trans-Dark Blue,7 +Fire,Fire Station,224,2000,Trans-Green,1 +Fire,Fire Station,224,2000,Trans-Neon Green,3 +Fire,Fire Station,224,2000,Trans-Red,2 +Fire,Fire Station,224,2000,Unknown,4 +Fire,Fire Station,224,2000,White,20 +Fire,Fire Station,224,2000,Yellow,13 +Fire,Firefighter's Lift Truck,103,2000,Black,7 +Fire,Firefighter's Lift Truck,103,2000,Blue,1 +Fire,Firefighter's Lift Truck,103,2000,Dark Gray,3 +Fire,Firefighter's Lift Truck,103,2000,Light Gray,7 +Fire,Firefighter's Lift Truck,103,2000,Red,11 +Fire,Firefighter's Lift Truck,103,2000,Trans-Dark Blue,3 +Fire,Firefighter's Lift Truck,103,2000,Trans-Neon Green,2 +Fire,Firefighter's Lift Truck,103,2000,Unknown,3 +Fire,Firefighter's Lift Truck,103,2000,White,13 +Fire,Firefighter's Lift Truck,103,2000,Yellow,1 +Fire,Fire Attack Team,95,2001,[No Color],3 +Fire,Fire Attack Team,95,2001,Black,11 +Fire,Fire Attack Team,95,2001,Chrome Silver,1 +Fire,Fire Attack Team,95,2001,Dark Gray,3 +Fire,Fire Attack Team,95,2001,Green,1 +Fire,Fire Attack Team,95,2001,Light Gray,3 +Fire,Fire Attack Team,95,2001,Red,10 +Fire,Fire Attack Team,95,2001,Trans-Black,1 +Fire,Fire Attack Team,95,2001,Trans-Dark Blue,3 +Fire,Fire Attack Team,95,2001,Trans-Light Blue,2 +Fire,Fire Attack Team,95,2001,Trans-Neon Orange,2 +Fire,Fire Attack Team,95,2001,White,13 +Fire,Fire Attack Team,95,2001,Yellow,1 +Fire,Fire Response SUV,30,2001,Yellow,1 +Fire,Fire Response SUV,30,2001,[No Color],2 +Fire,Fire Response SUV,30,2001,Black,4 +Fire,Fire Response SUV,30,2001,Red,4 +Fire,Fire Response SUV,30,2001,Trans-Black,1 +Fire,Fire Response SUV,30,2001,Trans-Dark Blue,1 +Fire,Fire Response SUV,30,2001,Trans-Light Blue,1 +Fire,Fire Response SUV,30,2001,White,5 +Fire,Fire Cruiser,22,2001,[No Color],1 +Fire,Fire Cruiser,22,2001,Black,3 +Fire,Fire Cruiser,22,2001,Red,4 +Fire,Fire Cruiser,22,2001,Trans-Dark Blue,1 +Fire,Fire Cruiser,22,2001,Trans-Light Blue,1 +Fire,Fire Cruiser,22,2001,White,4 +Fire,Fire Cruiser,22,2001,Light Gray,2 +Fire,Jack Stone Red Flash Station,32,2002,[No Color],2 +Fire,Jack Stone Red Flash Station,32,2002,Black,6 +Fire,Jack Stone Red Flash Station,32,2002,Dark Gray,1 +Fire,Jack Stone Red Flash Station,32,2002,Light Gray,2 +Fire,Jack Stone Red Flash Station,32,2002,Red,7 +Fire,Jack Stone Red Flash Station,32,2002,Trans-Light Blue,1 +Fire,Jack Stone Red Flash Station,32,2002,Trans-Red,1 +Fire,Jack Stone Red Flash Station,32,2002,White,3 +Fire,Fire Squad HQ,147,2003,[No Color],3 +Fire,Fire Squad HQ,147,2003,Black,11 +Fire,Fire Squad HQ,147,2003,Dark Bluish Gray,1 +Fire,Fire Squad HQ,147,2003,Dark Gray,6 +Fire,Fire Squad HQ,147,2003,Green,1 +Fire,Fire Squad HQ,147,2003,Light Gray,3 +Fire,Fire Squad HQ,147,2003,Red,20 +Fire,Fire Squad HQ,147,2003,Trans-Black,2 +Fire,Fire Squad HQ,147,2003,Trans-Dark Blue,1 +Fire,Fire Squad HQ,147,2003,Trans-Medium Blue,3 +Fire,Fire Squad HQ,147,2003,Trans-Neon Green,1 +Fire,Fire Squad HQ,147,2003,Trans-Yellow,1 +Fire,Fire Squad HQ,147,2003,White,12 +Fire,Fire Squad HQ,147,2003,Yellow,1 +Fire,Fire Command Craft,271,2004,Black,24 +Fire,Fire Command Craft,271,2004,Blue,1 +Fire,Fire Command Craft,271,2004,Dark Bluish Gray,21 +Fire,Fire Command Craft,271,2004,Light Bluish Gray,9 +Fire,Fire Command Craft,271,2004,Orange,1 +Fire,Fire Command Craft,271,2004,Red,27 +Fire,Fire Command Craft,271,2004,Trans-Black,3 +Fire,Fire Command Craft,271,2004,Trans-Dark Blue,1 +Fire,Fire Command Craft,271,2004,Trans-Green,1 +Fire,Fire Command Craft,271,2004,Trans-Red,1 +Fire,Fire Command Craft,271,2004,Trans-Yellow,1 +Fire,Fire Command Craft,271,2004,White,16 +Fire,Fire Command Craft,271,2004,Yellow,11 +Fire,Firefighter,68,2004,[No Color],1 +Fire,Firefighter,68,2004,Black,4 +Fire,Firefighter,68,2004,Dark Bluish Gray,8 +Fire,Firefighter,68,2004,Light Bluish Gray,4 +Fire,Firefighter,68,2004,Orange,1 +Fire,Firefighter,68,2004,Red,14 +Fire,Firefighter,68,2004,Trans-Black,1 +Fire,Firefighter,68,2004,Trans-Dark Blue,1 +Fire,Firefighter,68,2004,Trans-Green,1 +Fire,Firefighter,68,2004,Trans-Red,1 +Fire,Firefighter,68,2004,White,10 +Fire,Firefighter,68,2004,Yellow,3 +Fire,Fire Station,264,2005,Yellow,11 +Fire,Fire Station,264,2005,White,23 +Fire,Fire Station,264,2005,Trans-Yellow,2 +Fire,Fire Station,264,2005,Trans-Red,3 +Fire,Fire Station,264,2005,Trans-Green,1 +Fire,Fire Station,264,2005,Trans-Dark Blue,2 +Fire,Fire Station,264,2005,Trans-Clear,1 +Fire,Fire Station,264,2005,Trans-Black,7 +Fire,Fire Station,264,2005,Red,23 +Fire,Fire Station,264,2005,Light Bluish Gray,7 +Fire,Fire Station,264,2005,Dark Bluish Gray,15 +Fire,Fire Station,264,2005,Black,30 +Fire,Fire Station,264,2005,[No Color],1 +Fire,Fire Truck,215,2005,[No Color],1 +Fire,Fire Truck,215,2005,Black,10 +Fire,Fire Truck,215,2005,Dark Bluish Gray,13 +Fire,Fire Truck,215,2005,Light Bluish Gray,8 +Fire,Fire Truck,215,2005,Metallic Silver,1 +Fire,Fire Truck,215,2005,Orange,1 +Fire,Fire Truck,215,2005,Red,23 +Fire,Fire Truck,215,2005,Tan,1 +Fire,Fire Truck,215,2005,Trans-Black,2 +Fire,Fire Truck,215,2005,Trans-Dark Blue,2 +Fire,Fire Truck,215,2005,Trans-Red,1 +Fire,Fire Truck,215,2005,Trans-Yellow,1 +Fire,Fire Truck,215,2005,White,26 +Fire,Fire Truck,215,2005,Yellow,10 +Fire,Fire Helicopter,75,2005,Black,11 +Fire,Fire Helicopter,75,2005,Dark Bluish Gray,7 +Fire,Fire Helicopter,75,2005,Light Bluish Gray,3 +Fire,Fire Helicopter,75,2005,Red,7 +Fire,Fire Helicopter,75,2005,Trans-Black,2 +Fire,Fire Helicopter,75,2005,Trans-Dark Blue,1 +Fire,Fire Helicopter,75,2005,Trans-Green,1 +Fire,Fire Helicopter,75,2005,Trans-Light Blue,2 +Fire,Fire Helicopter,75,2005,Trans-Red,1 +Fire,Fire Helicopter,75,2005,White,10 +Fire,Fire Helicopter,75,2005,Yellow,3 +Fire,Fire Helicopter,75,2005,[No Color],1 +Fire,Fire Car,47,2005,Trans-Black,1 +Fire,Fire Car,47,2005,Red,8 +Fire,Fire Car,47,2005,Light Bluish Gray,1 +Fire,Fire Car,47,2005,Dark Bluish Gray,4 +Fire,Fire Car,47,2005,Black,4 +Fire,Fire Car,47,2005,Trans-Dark Blue,1 +Fire,Fire Car,47,2005,Trans-Red,1 +Fire,Fire Car,47,2005,Trans-Yellow,1 +Fire,Fire Car,47,2005,White,8 +Fire,Fire Car,47,2005,Yellow,3 +Fire,Fire Car,32,2005,Dark Bluish Gray,1 +Fire,Fire Car,32,2005,Yellow,3 +Fire,Fire Car,32,2005,White,6 +Fire,Fire Car,32,2005,Trans-Yellow,1 +Fire,Fire Car,32,2005,Trans-Red,1 +Fire,Fire Car,32,2005,Trans-Dark Blue,1 +Fire,Fire Car,32,2005,Red,4 +Fire,Fire Car,32,2005,Black,4 +Fire,Fire Chief's Car,31,2005,Dark Bluish Gray,1 +Fire,Fire Chief's Car,31,2005,Red,4 +Fire,Fire Chief's Car,31,2005,Trans-Dark Blue,1 +Fire,Fire Chief's Car,31,2005,Trans-Red,1 +Fire,Fire Chief's Car,31,2005,Trans-Yellow,1 +Fire,Fire Chief's Car,31,2005,White,4 +Fire,Fire Chief's Car,31,2005,Yellow,2 +Fire,Fire Chief's Car,31,2005,Black,4 +Fire,Fireman,19,2005,Black,4 +Fire,Fireman,19,2005,Dark Bluish Gray,2 +Fire,Fireman,19,2005,Light Gray,1 +Fire,Fireman,19,2005,Trans-Black,1 +Fire,Fireman,19,2005,Trans-Neon Orange,1 +Fire,Fireman,19,2005,White,1 +Fire,Fireman,19,2005,Yellow,6 +Fire,Fire Truck,771,2009,Black,34 +Fire,Fire Truck,771,2009,Blue,3 +Fire,Fire Truck,771,2009,Dark Bluish Gray,17 +Fire,Fire Truck,771,2009,Light Bluish Gray,40 +Fire,Fire Truck,771,2009,Metallic Silver,1 +Fire,Fire Truck,771,2009,Pearl Dark Gray,1 +Fire,Fire Truck,771,2009,Pearl Light Gray,1 +Fire,Fire Truck,771,2009,Red,35 +Fire,Fire Truck,771,2009,Tan,7 +Fire,Fire Truck,771,2009,Trans-Clear,4 +Fire,Fire Truck,771,2009,Trans-Dark Blue,3 +Fire,Fire Truck,771,2009,Trans-Orange,2 +Fire,Fire Truck,771,2009,Trans-Red,1 +Fire,Fire Truck,771,2009,Trans-Yellow,1 +Fire,Fire Truck,771,2009,White,11 +Fire,Fire Truck,771,2009,Yellow,7 +Fire,Fire Plane,577,2015,Black,22 +Fire,Fire Plane,577,2015,Blue,5 +Fire,Fire Plane,577,2015,Dark Bluish Gray,6 +Fire,Fire Plane,577,2015,Dark Tan,1 +Fire,Fire Plane,577,2015,Light Bluish Gray,23 +Fire,Fire Plane,577,2015,Metallic Silver,1 +Fire,Fire Plane,577,2015,Red,15 +Fire,Fire Plane,577,2015,Tan,3 +Fire,Fire Plane,577,2015,Trans-Clear,1 +Fire,Fire Plane,577,2015,Trans-Green,1 +Fire,Fire Plane,577,2015,Trans-Light Blue,1 +Fire,Fire Plane,577,2015,Trans-Red,1 +Fire,Fire Plane,577,2015,White,21 +Fire,Fire Plane,577,2015,Yellow,3 +Fire,Fire Station,918,2016,Red,65 +Fire,Fire Station,918,2016,Reddish Brown,1 +Fire,Fire Station,918,2016,Tan,3 +Fire,Fire Station,918,2016,Pearl Gold,1 +Fire,Fire Station,918,2016,Trans-Black,1 +Fire,Fire Station,918,2016,Trans-Clear,2 +Fire,Fire Station,918,2016,Trans-Dark Blue,5 +Fire,Fire Station,918,2016,Trans-Light Blue,9 +Fire,Fire Station,918,2016,Trans-Orange,4 +Fire,Fire Station,918,2016,Trans-Red,3 +Fire,Fire Station,918,2016,Trans-Yellow,2 +Fire,Fire Station,918,2016,White,43 +Fire,Fire Station,918,2016,Yellow,33 +Fire,Fire Station,918,2016,Orange,1 +Fire,Fire Station,918,2016,Lime,5 +Fire,Fire Station,918,2016,Light Bluish Gray,51 +Fire,Fire Station,918,2016,Green,1 +Fire,Fire Station,918,2016,Flat Silver,1 +Fire,Fire Station,918,2016,Dark Tan,2 +Fire,Fire Station,918,2016,Dark Orange,1 +Fire,Fire Station,918,2016,Dark Bluish Gray,43 +Fire,Fire Station,918,2016,Blue,13 +Fire,Fire Station,918,2016,Black,34 +Fire,Fire Boat,411,2016,Tan,1 +Fire,Fire Boat,411,2016,Trans-Clear,1 +Fire,Fire Boat,411,2016,Trans-Dark Blue,3 +Fire,Fire Boat,411,2016,Trans-Green,1 +Fire,Fire Boat,411,2016,Trans-Light Blue,7 +Fire,Fire Boat,411,2016,Trans-Orange,2 +Fire,Fire Boat,411,2016,Trans-Red,2 +Fire,Fire Boat,411,2016,Trans-Yellow,3 +Fire,Fire Boat,411,2016,White,39 +Fire,Fire Boat,411,2016,Yellow,21 +Fire,Fire Boat,411,2016,Black,51 +Fire,Fire Boat,411,2016,Blue,7 +Fire,Fire Boat,411,2016,Dark Blue,1 +Fire,Fire Boat,411,2016,Dark Bluish Gray,25 +Fire,Fire Boat,411,2016,Dark Brown,1 +Fire,Fire Boat,411,2016,Green,4 +Fire,Fire Boat,411,2016,Light Bluish Gray,18 +Fire,Fire Boat,411,2016,Orange,1 +Fire,Fire Boat,411,2016,Red,9 +Fire,Fire Boat,411,2016,Reddish Brown,5 +Fire,Fire Engine,375,2016,Yellow,19 +Fire,Fire Engine,375,2016,Trans-Yellow,1 +Fire,Fire Engine,375,2016,Black,24 +Fire,Fire Engine,375,2016,Blue,6 +Fire,Fire Engine,375,2016,Dark Bluish Gray,26 +Fire,Fire Engine,375,2016,Green,1 +Fire,Fire Engine,375,2016,Light Bluish Gray,22 +Fire,Fire Engine,375,2016,Medium Dark Flesh,2 +Fire,Fire Engine,375,2016,White,11 +Fire,Fire Engine,375,2016,Tan,2 +Fire,Fire Engine,375,2016,Trans-Black,1 +Fire,Fire Engine,375,2016,Trans-Dark Blue,3 +Fire,Fire Engine,375,2016,Trans-Light Blue,3 +Fire,Fire Engine,375,2016,Trans-Orange,4 +Fire,Fire Engine,375,2016,Trans-Red,1 +Fire,Fire Engine,375,2016,Red,31 +Fire,Fire Utility Truck,367,2016,Trans-Dark Blue,2 +Fire,Fire Utility Truck,367,2016,Trans-Black,1 +Fire,Fire Utility Truck,367,2016,Trans-Light Blue,2 +Fire,Fire Utility Truck,367,2016,Trans-Orange,4 +Fire,Fire Utility Truck,367,2016,Trans-Red,2 +Fire,Fire Utility Truck,367,2016,Trans-Clear,1 +Fire,Fire Utility Truck,367,2016,Dark Bluish Gray,16 +Fire,Fire Utility Truck,367,2016,Blue,3 +Fire,Fire Utility Truck,367,2016,Black,20 +Fire,Fire Utility Truck,367,2016,Green,1 +Fire,Fire Utility Truck,367,2016,Light Bluish Gray,43 +Fire,Fire Utility Truck,367,2016,Medium Dark Flesh,1 +Fire,Fire Utility Truck,367,2016,Orange,1 +Fire,Fire Utility Truck,367,2016,Red,29 +Fire,Fire Utility Truck,367,2016,Reddish Brown,1 +Fire,Fire Utility Truck,367,2016,Tan,1 +Fire,Fire Utility Truck,367,2016,Trans-Yellow,1 +Fire,Fire Utility Truck,367,2016,White,26 +Fire,Fire Utility Truck,367,2016,Yellow,14 +Fire,Fire Response Unit,256,2016,Dark Blue,1 +Fire,Fire Response Unit,256,2016,Dark Bluish Gray,25 +Fire,Fire Response Unit,256,2016,Green,1 +Fire,Fire Response Unit,256,2016,Light Bluish Gray,14 +Fire,Fire Response Unit,256,2016,Olive Green,2 +Fire,Fire Response Unit,256,2016,Orange,1 +Fire,Fire Response Unit,256,2016,Red,12 +Fire,Fire Response Unit,256,2016,Reddish Brown,4 +Fire,Fire Response Unit,256,2016,Trans-Black,1 +Fire,Fire Response Unit,256,2016,Trans-Dark Blue,2 +Fire,Fire Response Unit,256,2016,Trans-Green,1 +Fire,Fire Response Unit,256,2016,Trans-Light Blue,2 +Fire,Fire Response Unit,256,2016,Trans-Orange,2 +Fire,Fire Response Unit,256,2016,Trans-Red,1 +Fire,Fire Response Unit,256,2016,Trans-Yellow,2 +Fire,Fire Response Unit,256,2016,White,12 +Fire,Fire Response Unit,256,2016,Yellow,14 +Fire,Fire Response Unit,256,2016,Black,32 +Fire,Fire Response Unit,256,2016,Blue,4 +Fire,Fire Response Unit,256,2016,Dark Azure,1 +Fire,Fire Ladder Truck,213,2016,Red,17 +Fire,Fire Ladder Truck,213,2016,Trans-Red,2 +Fire,Fire Ladder Truck,213,2016,Trans-Orange,4 +Fire,Fire Ladder Truck,213,2016,Blue,2 +Fire,Fire Ladder Truck,213,2016,Trans-Dark Blue,3 +Fire,Fire Ladder Truck,213,2016,Trans-Black,1 +Fire,Fire Ladder Truck,213,2016,Black,12 +Fire,Fire Ladder Truck,213,2016,Light Bluish Gray,18 +Fire,Fire Ladder Truck,213,2016,Trans-Light Blue,2 +Fire,Fire Ladder Truck,213,2016,Green,2 +Fire,Fire Ladder Truck,213,2016,Dark Bluish Gray,12 +Fire,Fire Ladder Truck,213,2016,Yellow,11 +Fire,Fire Ladder Truck,213,2016,White,14 +Fire,Fire Ladder Truck,213,2016,Trans-Yellow,1 +Fire,Fire Starter Set,90,2016,Light Bluish Gray,10 +Fire,Fire Starter Set,90,2016,Orange,1 +Fire,Fire Starter Set,90,2016,Red,6 +Fire,Fire Starter Set,90,2016,Reddish Brown,3 +Fire,Fire Starter Set,90,2016,Trans-Black,1 +Fire,Fire Starter Set,90,2016,Trans-Dark Blue,1 +Fire,Fire Starter Set,90,2016,Trans-Light Blue,2 +Fire,Fire Starter Set,90,2016,White,5 +Fire,Fire Starter Set,90,2016,Yellow,12 +Fire,Fire Starter Set,90,2016,Trans-Orange,3 +Fire,Fire Starter Set,90,2016,Dark Bluish Gray,6 +Fire,Fire Starter Set,90,2016,Black,11 +Fire,Fire Starter Set,90,2016,Blue,2 +Fire,Fire Starter Set,90,2016,Dark Blue,2 +Fire,Fire ATV,64,2016,Trans-Black,1 +Fire,Fire ATV,64,2016,Yellow,5 +Fire,Fire ATV,64,2016,White,3 +Fire,Fire ATV,64,2016,Trans-Yellow,1 +Fire,Fire ATV,64,2016,Trans-Red,1 +Fire,Fire ATV,64,2016,Trans-Orange,1 +Fire,Fire ATV,64,2016,Trans-Dark Blue,1 +Fire,Fire ATV,64,2016,Red,6 +Fire,Fire ATV,64,2016,Medium Dark Flesh,1 +Fire,Fire ATV,64,2016,Light Bluish Gray,6 +Fire,Fire ATV,64,2016,Dark Bluish Gray,9 +Fire,Fire ATV,64,2016,Blue,1 +Fire,Fire ATV,64,2016,Black,6 +Fire,Fire Car,53,2016,Trans-Dark Blue,1 +Fire,Fire Car,53,2016,Reddish Brown,1 +Fire,Fire Car,53,2016,Dark Bluish Gray,2 +Fire,Fire Car,53,2016,Red,9 +Fire,Fire Car,53,2016,Light Bluish Gray,3 +Fire,Fire Car,53,2016,Green,1 +Fire,Fire Car,53,2016,Trans-Yellow,1 +Fire,Fire Car,53,2016,Black,6 +Fire,Fire Car,53,2016,Yellow,4 +Fire,Fire Car,53,2016,White,6 +Fire,Fire Car,53,2016,Trans-Red,1 +Fire,Fire Car,53,2016,Trans-Orange,1 +Fire,Fire Car,32,2017,Black,4 +Fire,Fire Car,32,2017,Green,1 +Fire,Fire Car,32,2017,Light Bluish Gray,2 +Fire,Fire Car,32,2017,Lime,1 +Fire,Fire Car,32,2017,Red,3 +Fire,Fire Car,32,2017,Trans-Dark Blue,1 +Fire,Fire Car,32,2017,Trans-Light Blue,1 +Fire,Fire Car,32,2017,Trans-Orange,2 +Fire,Fire Car,32,2017,White,5 +Fire,Fire Car,32,2017,Yellow,3 +FIRST LEGO League,FIRST LEGO League Challenge 2001 - Arctic Impact,1388,2001,Black,28 +FIRST LEGO League,FIRST LEGO League Challenge 2001 - Arctic Impact,1388,2001,Blue,6 +FIRST LEGO League,FIRST LEGO League Challenge 2001 - Arctic Impact,1388,2001,Brown,1 +FIRST LEGO League,FIRST LEGO League Challenge 2001 - Arctic Impact,1388,2001,Light Gray,8 +FIRST LEGO League,FIRST LEGO League Challenge 2001 - Arctic Impact,1388,2001,Red,9 +FIRST LEGO League,FIRST LEGO League Challenge 2001 - Arctic Impact,1388,2001,Trans-Clear,1 +FIRST LEGO League,FIRST LEGO League Challenge 2001 - Arctic Impact,1388,2001,White,16 +FIRST LEGO League,FIRST LEGO League Challenge 2001 - Arctic Impact,1388,2001,Yellow,14 +FIRST LEGO League,Animal Allies,2165,2016,Black,93 +FIRST LEGO League,Animal Allies,2165,2016,Blue,24 +FIRST LEGO League,Animal Allies,2165,2016,Bright Pink,11 +FIRST LEGO League,Animal Allies,2165,2016,Dark Blue,2 +FIRST LEGO League,Animal Allies,2165,2016,Dark Bluish Gray,35 +FIRST LEGO League,Animal Allies,2165,2016,Dark Brown,1 +FIRST LEGO League,Animal Allies,2165,2016,Dark Tan,2 +FIRST LEGO League,Animal Allies,2165,2016,Flat Silver,3 +FIRST LEGO League,Animal Allies,2165,2016,Green,17 +FIRST LEGO League,Animal Allies,2165,2016,Light Bluish Gray,74 +FIRST LEGO League,Animal Allies,2165,2016,Medium Blue,1 +FIRST LEGO League,Animal Allies,2165,2016,Medium Dark Flesh,1 +FIRST LEGO League,Animal Allies,2165,2016,Olive Green,1 +FIRST LEGO League,Animal Allies,2165,2016,Orange,1 +FIRST LEGO League,Animal Allies,2165,2016,Red,37 +FIRST LEGO League,Animal Allies,2165,2016,Reddish Brown,16 +FIRST LEGO League,Animal Allies,2165,2016,Tan,26 +FIRST LEGO League,Animal Allies,2165,2016,Trans-Clear,1 +FIRST LEGO League,Animal Allies,2165,2016,Trans-Red,1 +FIRST LEGO League,Animal Allies,2165,2016,White,55 +FIRST LEGO League,Animal Allies,2165,2016,Yellow,22 +Food & Drink,Factory,233,1978,Black,26 +Food & Drink,Factory,233,1978,Blue,7 +Food & Drink,Factory,233,1978,Green,2 +Food & Drink,Factory,233,1978,Light Gray,7 +Food & Drink,Factory,233,1978,Red,20 +Food & Drink,Factory,233,1978,Trans-Clear,4 +Food & Drink,Factory,233,1978,White,13 +Food & Drink,Factory,233,1978,Yellow,7 +Food & Drink,Breezeway Cafe,194,2002,Black,9 +Food & Drink,Breezeway Cafe,194,2002,Blue,1 +Food & Drink,Breezeway Cafe,194,2002,Brown,3 +Food & Drink,Breezeway Cafe,194,2002,Green,6 +Food & Drink,Breezeway Cafe,194,2002,Light Gray,3 +Food & Drink,Breezeway Cafe,194,2002,Red,10 +Food & Drink,Breezeway Cafe,194,2002,Trans-Clear,4 +Food & Drink,Breezeway Cafe,194,2002,Trans-Red,1 +Food & Drink,Breezeway Cafe,194,2002,Trans-Yellow,2 +Food & Drink,Breezeway Cafe,194,2002,White,26 +Food & Drink,Breezeway Cafe,194,2002,Yellow,9 +Food & Drink,Pizza To Go,150,2002,[No Color],1 +Food & Drink,Pizza To Go,150,2002,Black,9 +Food & Drink,Pizza To Go,150,2002,Blue,1 +Food & Drink,Pizza To Go,150,2002,Brown,1 +Food & Drink,Pizza To Go,150,2002,Dark Gray,2 +Food & Drink,Pizza To Go,150,2002,Light Gray,5 +Food & Drink,Pizza To Go,150,2002,Red,15 +Food & Drink,Pizza To Go,150,2002,Trans-Clear,1 +Food & Drink,Pizza To Go,150,2002,Trans-Dark Blue,1 +Food & Drink,Pizza To Go,150,2002,Trans-Light Blue,1 +Food & Drink,Pizza To Go,150,2002,Trans-Yellow,1 +Food & Drink,Pizza To Go,150,2002,White,32 +Food & Drink,Pizza To Go,150,2002,Yellow,7 +Food & Drink,Chef,6,2003,Light Gray,1 +Food & Drink,Chef,6,2003,Trans-Clear,1 +Food & Drink,Chef,6,2003,White,3 +Food & Drink,Chef,6,2003,Yellow,1 +Food & Drink,Cherry - Suntory Promotional,11,2005,Black,2 +Food & Drink,Cherry - Suntory Promotional,11,2005,Lime,1 +Food & Drink,Cherry - Suntory Promotional,11,2005,Red,5 +Food & Drink,Pear - Suntory Promotional,10,2005,Black,1 +Food & Drink,Pear - Suntory Promotional,10,2005,Green,2 +Food & Drink,Pear - Suntory Promotional,10,2005,Yellow,4 +Food & Drink,Apple - Suntory Promotional,8,2005,Green,1 +Food & Drink,Apple - Suntory Promotional,8,2005,Red,4 +Food & Drink,Apple - Suntory Promotional,8,2005,Yellow,1 +Food & Drink,Melon - Suntory Promotional,8,2005,Green,5 +Food & Drink,Melon - Suntory Promotional,8,2005,Yellow,1 +Food & Drink,Orange - Suntory Promotional,7,2005,Green,1 +Food & Drink,Orange - Suntory Promotional,7,2005,Orange,4 +Food & Drink,Orange - Suntory Promotional,7,2005,Yellow,1 +Food & Drink,Mango - Suntory Promotional,6,2005,Yellow,6 +Food & Drink,Watermelon - Capespan Promotional,21,2007,Red,4 +Food & Drink,Watermelon - Capespan Promotional,21,2007,Black,1 +Food & Drink,Watermelon - Capespan Promotional,21,2007,Green,4 +Food & Drink,Cherry - Hong Kong Lego Show Promotional,11,2007,Black,2 +Food & Drink,Cherry - Hong Kong Lego Show Promotional,11,2007,Red,5 +Food & Drink,Cherry - Hong Kong Lego Show Promotional,11,2007,Lime,1 +Food & Drink,Pear - Hong Kong Lego Show Promotional,10,2007,Black,1 +Food & Drink,Pear - Hong Kong Lego Show Promotional,10,2007,Green,2 +Food & Drink,Pear - Hong Kong Lego Show Promotional,10,2007,Yellow,4 +Food & Drink,Apple - Hong Kong Lego Show Promotional,8,2007,Red,4 +Food & Drink,Apple - Hong Kong Lego Show Promotional,8,2007,Yellow,1 +Food & Drink,Melon - Hong Kong Lego Show Promotional,8,2007,Green,5 +Food & Drink,Melon - Hong Kong Lego Show Promotional,8,2007,Yellow,1 +Food & Drink,Apple - Hong Kong Lego Show Promotional,8,2007,Green,1 +Food & Drink,Grapes - Hong Kong Lego Show Promotional,7,2007,Black,2 +Food & Drink,Grapes - Hong Kong Lego Show Promotional,7,2007,Blue,2 +Food & Drink,Orange - Hong Kong Lego Show Promotional,7,2007,Green,1 +Food & Drink,Orange - Hong Kong Lego Show Promotional,7,2007,Orange,4 +Food & Drink,Orange - Hong Kong Lego Show Promotional,7,2007,Yellow,1 +Food & Drink,Mango - Hong Kong Lego Show Promotional,6,2007,Yellow,6 +Forestmen,Camouflaged Outpost,228,1987,Black,25 +Forestmen,Camouflaged Outpost,228,1987,Blue,3 +Forestmen,Camouflaged Outpost,228,1987,Brown,11 +Forestmen,Camouflaged Outpost,228,1987,Dark Gray,1 +Forestmen,Camouflaged Outpost,228,1987,Green,11 +Forestmen,Camouflaged Outpost,228,1987,Light Gray,36 +Forestmen,Camouflaged Outpost,228,1987,Red,5 +Forestmen,Camouflaged Outpost,228,1987,Yellow,5 +Forestmen,Forestmen's Crossing,210,1990,Black,19 +Forestmen,Forestmen's Crossing,210,1990,Brown,9 +Forestmen,Forestmen's Crossing,210,1990,Dark Gray,1 +Forestmen,Forestmen's Crossing,210,1990,Green,10 +Forestmen,Forestmen's Crossing,210,1990,Light Gray,26 +Forestmen,Forestmen's Crossing,210,1990,Red,5 +Forestmen,Forestmen's Crossing,210,1990,White,4 +Forestmen,Forestmen's Crossing,210,1990,Yellow,6 +Forestmen,Hay Cart with Smugglers,67,1990,Black,13 +Forestmen,Hay Cart with Smugglers,67,1990,Blue,5 +Forestmen,Hay Cart with Smugglers,67,1990,Brown,5 +Forestmen,Hay Cart with Smugglers,67,1990,Dark Gray,2 +Forestmen,Hay Cart with Smugglers,67,1990,Green,5 +Forestmen,Hay Cart with Smugglers,67,1990,Red,4 +Forestmen,Hay Cart with Smugglers,67,1990,White,3 +Forestmen,Hay Cart with Smugglers,67,1990,Yellow,2 +Forestmen,Crusader's Cart,60,1990,Black,13 +Forestmen,Crusader's Cart,60,1990,Blue,5 +Forestmen,Crusader's Cart,60,1990,Dark Gray,2 +Forestmen,Crusader's Cart,60,1990,Green,4 +Forestmen,Crusader's Cart,60,1990,Red,4 +Forestmen,Crusader's Cart,60,1990,White,3 +Forestmen,Crusader's Cart,60,1990,Yellow,2 +Forestmen,Crusader's Cart,60,1990,Brown,3 +Freestyle,Large Freestyle Playcase,698,1995,Trans-Clear,3 +Freestyle,Large Freestyle Playcase,698,1995,Red,26 +Freestyle,Large Freestyle Playcase,698,1995,Light Gray,7 +Freestyle,Large Freestyle Playcase,698,1995,Dark Gray,3 +Freestyle,Large Freestyle Playcase,698,1995,Brown,1 +Freestyle,Large Freestyle Playcase,698,1995,Blue,46 +Freestyle,Large Freestyle Playcase,698,1995,Black,12 +Freestyle,Large Freestyle Playcase,698,1995,Green,5 +Freestyle,Large Freestyle Playcase,698,1995,White,18 +Freestyle,Large Freestyle Playcase,698,1995,Yellow,25 +Freestyle,Large Freestyle Playcase,698,1995,Trans-Red,1 +Freestyle,Large Freestyle Playcase,698,1995,Trans-Yellow,1 +Freestyle,Freestyle Multibox,600,1995,Yellow,16 +Freestyle,Freestyle Multibox,600,1995,Green,7 +Freestyle,Freestyle Multibox,600,1995,Light Gray,3 +Freestyle,Freestyle Multibox,600,1995,Black,9 +Freestyle,Freestyle Multibox,600,1995,Blue,29 +Freestyle,Freestyle Multibox,600,1995,Brown,1 +Freestyle,Freestyle Multibox,600,1995,White,18 +Freestyle,Freestyle Multibox,600,1995,Trans-Light Blue,1 +Freestyle,Freestyle Multibox,600,1995,Trans-Green,1 +Freestyle,Freestyle Multibox,600,1995,Trans-Clear,2 +Freestyle,Freestyle Multibox,600,1995,Red,41 +Freestyle,Freestyle Multibox,600,1995,Dark Gray,3 +Freestyle,Extra Large Freestyle Bucket,410,1995,Red,18 +Freestyle,Extra Large Freestyle Bucket,410,1995,White,11 +Freestyle,Extra Large Freestyle Bucket,410,1995,Yellow,18 +Freestyle,Extra Large Freestyle Bucket,410,1995,Blue,13 +Freestyle,Extra Large Freestyle Bucket,410,1995,Black,5 +Freestyle,Extra Large Freestyle Bucket,410,1995,Brown,1 +Freestyle,Extra Large Freestyle Bucket,410,1995,Green,7 +Freestyle,Large Freestyle Bucket,409,1995,Light Gray,3 +Freestyle,Large Freestyle Bucket,409,1995,Brown,2 +Freestyle,Large Freestyle Bucket,409,1995,Blue,24 +Freestyle,Large Freestyle Bucket,409,1995,Black,10 +Freestyle,Large Freestyle Bucket,409,1995,Green,4 +Freestyle,Large Freestyle Bucket,409,1995,Yellow,34 +Freestyle,Large Freestyle Bucket,409,1995,White,20 +Freestyle,Large Freestyle Bucket,409,1995,Trans-Clear,1 +Freestyle,Large Freestyle Bucket,409,1995,Red,17 +Freestyle,Electric Freestyle Set,350,1995,Yellow,17 +Freestyle,Electric Freestyle Set,350,1995,White,14 +Freestyle,Electric Freestyle Set,350,1995,Red,22 +Freestyle,Electric Freestyle Set,350,1995,Black,19 +Freestyle,Electric Freestyle Set,350,1995,Blue,34 +Freestyle,Electric Freestyle Set,350,1995,Light Gray,6 +Freestyle,Electric Freestyle Set,350,1995,Trans-Red,1 +Freestyle,Electric Freestyle Set,350,1995,Trans-Clear,2 +Freestyle,Electric Freestyle Set,350,1995,Trans-Green,1 +Freestyle,Electric Freestyle Set,350,1995,Trans-Light Blue,1 +Freestyle,Girl's Freestyle Suitcase,293,1995,Trans-Clear,1 +Freestyle,Girl's Freestyle Suitcase,293,1995,Trans-Yellow,1 +Freestyle,Girl's Freestyle Suitcase,293,1995,White,29 +Freestyle,Girl's Freestyle Suitcase,293,1995,Yellow,25 +Freestyle,Girl's Freestyle Suitcase,293,1995,Light Gray,3 +Freestyle,Girl's Freestyle Suitcase,293,1995,[No Color],1 +Freestyle,Girl's Freestyle Suitcase,293,1995,Black,3 +Freestyle,Girl's Freestyle Suitcase,293,1995,Blue,10 +Freestyle,Girl's Freestyle Suitcase,293,1995,Dark Pink,9 +Freestyle,Girl's Freestyle Suitcase,293,1995,Green,3 +Freestyle,Girl's Freestyle Suitcase,293,1995,Medium Green,1 +Freestyle,Girl's Freestyle Suitcase,293,1995,Pink,10 +Freestyle,Girl's Freestyle Set,274,1995,Dark Gray,1 +Freestyle,Girl's Freestyle Set,274,1995,Yellow,25 +Freestyle,Girl's Freestyle Set,274,1995,White,21 +Freestyle,Girl's Freestyle Set,274,1995,Trans-Clear,1 +Freestyle,Girl's Freestyle Set,274,1995,Pink,7 +Freestyle,Girl's Freestyle Set,274,1995,Medium Green,2 +Freestyle,Girl's Freestyle Set,274,1995,Light Gray,1 +Freestyle,Girl's Freestyle Set,274,1995,Green,2 +Freestyle,Girl's Freestyle Set,274,1995,Dark Pink,6 +Freestyle,Girl's Freestyle Set,274,1995,Blue,9 +Freestyle,Girl's Freestyle Set,274,1995,Black,3 +Freestyle,Freestyle Playcase,254,1995,Black,6 +Freestyle,Freestyle Playcase,254,1995,Blue,13 +Freestyle,Freestyle Playcase,254,1995,Dark Gray,1 +Freestyle,Freestyle Playcase,254,1995,Green,6 +Freestyle,Freestyle Playcase,254,1995,Yellow,17 +Freestyle,Freestyle Playcase,254,1995,White,7 +Freestyle,Freestyle Playcase,254,1995,Red,20 +Freestyle,Large Freestyle Bucket,252,1995,Blue,11 +Freestyle,Large Freestyle Bucket,252,1995,Green,4 +Freestyle,Large Freestyle Bucket,252,1995,Red,17 +Freestyle,Large Freestyle Bucket,252,1995,White,6 +Freestyle,Large Freestyle Bucket,252,1995,Yellow,18 +Freestyle,Large Freestyle Bucket,252,1995,Black,5 +Freestyle,Freestyle Bricks and Plates,199,1995,Black,5 +Freestyle,Freestyle Bricks and Plates,199,1995,Blue,10 +Freestyle,Freestyle Bricks and Plates,199,1995,Yellow,15 +Freestyle,Freestyle Bricks and Plates,199,1995,Red,16 +Freestyle,Freestyle Bricks and Plates,199,1995,Green,4 +Freestyle,Freestyle Bricks and Plates,199,1995,White,9 +Freestyle,Freestyle Building Set,196,1995,Green,4 +Freestyle,Freestyle Building Set,196,1995,White,9 +Freestyle,Freestyle Building Set,196,1995,Yellow,14 +Freestyle,Freestyle Building Set,196,1995,Red,15 +Freestyle,Freestyle Building Set,196,1995,Black,5 +Freestyle,Freestyle Building Set,196,1995,Blue,10 +Freestyle,Freestyle Brick Vac Bus,142,1995,Yellow,10 +Freestyle,Freestyle Brick Vac Bus,142,1995,White,6 +Freestyle,Freestyle Brick Vac Bus,142,1995,Red,11 +Freestyle,Freestyle Brick Vac Bus,142,1995,Blue,8 +Freestyle,Freestyle Brick Vac Bus,142,1995,Black,4 +Freestyle,Freestyle Brick Vac Bus,142,1995,Green,4 +Freestyle,Small Freestyle Bucket,135,1995,Red,14 +Freestyle,Small Freestyle Bucket,135,1995,Yellow,10 +Freestyle,Small Freestyle Bucket,135,1995,Green,5 +Freestyle,Small Freestyle Bucket,135,1995,Brown,1 +Freestyle,Small Freestyle Bucket,135,1995,Blue,8 +Freestyle,Small Freestyle Bucket,135,1995,Black,3 +Freestyle,Small Freestyle Bucket,135,1995,White,6 +Freestyle,Freestyle Building Set,122,1995,Yellow,9 +Freestyle,Freestyle Building Set,122,1995,White,6 +Freestyle,Freestyle Building Set,122,1995,Red,12 +Freestyle,Freestyle Building Set,122,1995,Green,4 +Freestyle,Freestyle Building Set,122,1995,Blue,7 +Freestyle,Freestyle Building Set,122,1995,Black,4 +Freestyle,Small Freestyle Bucket,109,1995,White,6 +Freestyle,Small Freestyle Bucket,109,1995,Yellow,11 +Freestyle,Small Freestyle Bucket,109,1995,Red,14 +Freestyle,Small Freestyle Bucket,109,1995,Black,4 +Freestyle,Small Freestyle Bucket,109,1995,Blue,6 +Freestyle,Small Freestyle Bucket,109,1995,Green,4 +Freestyle,Freestyle Building Set,98,1995,Yellow,10 +Freestyle,Freestyle Building Set,98,1995,White,7 +Freestyle,Freestyle Building Set,98,1995,Red,8 +Freestyle,Freestyle Building Set,98,1995,Light Gray,2 +Freestyle,Freestyle Building Set,98,1995,Green,4 +Freestyle,Freestyle Building Set,98,1995,Blue,1 +Freestyle,Freestyle Building Set,98,1995,Black,3 +Freestyle,Freestyle Building Set,91,1995,Green,2 +Freestyle,Freestyle Building Set,91,1995,Light Gray,2 +Freestyle,Freestyle Building Set,91,1995,Red,11 +Freestyle,Freestyle Building Set,91,1995,White,5 +Freestyle,Freestyle Building Set,91,1995,Yellow,15 +Freestyle,Freestyle Building Set,91,1995,Black,1 +Freestyle,Freestyle Building Set,91,1995,Blue,7 +Freestyle,Freestyle Building Set,71,1995,Yellow,8 +Freestyle,Freestyle Building Set,71,1995,White,6 +Freestyle,Freestyle Building Set,71,1995,Black,2 +Freestyle,Freestyle Building Set,71,1995,Red,11 +Freestyle,Freestyle Building Set,71,1995,Green,3 +Freestyle,Freestyle Building Set,71,1995,Blue,4 +Freestyle,Freestyle Set,43,1995,White,2 +Freestyle,Freestyle Set,43,1995,Light Gray,1 +Freestyle,Freestyle Set,43,1995,Green,1 +Freestyle,Freestyle Set,43,1995,Black,2 +Freestyle,Freestyle Set,43,1995,Blue,5 +Freestyle,Freestyle Set,43,1995,Red,7 +Freestyle,Freestyle Set,43,1995,Yellow,1 +Freestyle,Freestyle Building Set,37,1995,Green,2 +Freestyle,Freestyle Building Set,37,1995,Black,1 +Freestyle,Freestyle Building Set,37,1995,Blue,3 +Freestyle,Freestyle Building Set,37,1995,Red,4 +Freestyle,Freestyle Building Set,37,1995,Yellow,5 +Freestyle,Freestyle Building Set,37,1995,White,4 +Freestyle,Freestyle Set,32,1995,Yellow,5 +Freestyle,Freestyle Set,32,1995,White,2 +Freestyle,Freestyle Set,32,1995,Red,9 +Freestyle,Freestyle Set,32,1995,Blue,4 +Freestyle,Freestyle Set,27,1995,Green,1 +Freestyle,Freestyle Set,27,1995,White,1 +Freestyle,Freestyle Set,27,1995,Yellow,2 +Freestyle,Freestyle Set,27,1995,Red,5 +Freestyle,Freestyle Set,27,1995,Black,1 +Freestyle,Freestyle Set,27,1995,Blue,2 +Freestyle,Freestyle Set,24,1995,White,2 +Freestyle,Freestyle Set,24,1995,Yellow,4 +Freestyle,Freestyle Set,24,1995,Red,5 +Freestyle,Freestyle Set,24,1995,Green,1 +Freestyle,Freestyle Set,24,1995,Blue,2 +Freestyle,Freestyle Set,24,1995,Black,1 +Freestyle,Freestyle Fish,21,1995,Green,1 +Freestyle,Freestyle Fish,21,1995,Red,5 +Freestyle,Freestyle Fish,21,1995,White,2 +Freestyle,Freestyle Fish,21,1995,Yellow,1 +Freestyle,Freestyle Fish,21,1995,Blue,3 +Freestyle,Freestyle Bird,18,1995,Blue,2 +Freestyle,Freestyle Bird,18,1995,Green,1 +Freestyle,Freestyle Bird,18,1995,Red,4 +Freestyle,Freestyle Bird,18,1995,White,1 +Freestyle,Freestyle Bird,18,1995,Yellow,1 +Freestyle,Freestyle Bird,18,1995,Black,1 +Freestyle,Freestyle Trial Set,11,1995,Yellow,2 +Freestyle,Freestyle Trial Set,11,1995,White,1 +Freestyle,Freestyle Trial Set,11,1995,Red,2 +Freestyle,Freestyle Trial Set,11,1995,Green,1 +Freestyle,Freestyle Trial Set,11,1995,Blue,1 +Freestyle,Freestyle Duck,11,1995,Red,2 +Freestyle,Freestyle Duck,11,1995,Green,1 +Freestyle,Freestyle Duck,11,1995,Blue,1 +Freestyle,Freestyle Duck,11,1995,Yellow,2 +Freestyle,Freestyle Duck,11,1995,White,1 +Freestyle,Freestyle Cat,9,1995,Yellow,2 +Freestyle,Freestyle Cat,9,1995,Blue,2 +Freestyle,Freestyle Cat,9,1995,Red,2 +Freestyle,Big Box Play Scape,1009,1998,Yellow,26 +Freestyle,Big Box Play Scape,1009,1998,Bright Green,1 +Freestyle,Big Box Play Scape,1009,1998,Black,12 +Freestyle,Big Box Play Scape,1009,1998,Blue,23 +Freestyle,Big Box Play Scape,1009,1998,Dark Gray,3 +Freestyle,Big Box Play Scape,1009,1998,Green,15 +Freestyle,Big Box Play Scape,1009,1998,Light Gray,3 +Freestyle,Big Box Play Scape,1009,1998,Red,28 +Freestyle,Big Box Play Scape,1009,1998,Trans-Light Blue,1 +Freestyle,Big Box Play Scape,1009,1998,White,13 +Freestyle,25th Anniversary Silver Tub,843,1998,Trans-Clear,2 +Freestyle,25th Anniversary Silver Tub,843,1998,Trans-Light Blue,1 +Freestyle,25th Anniversary Silver Tub,843,1998,White,17 +Freestyle,25th Anniversary Silver Tub,843,1998,Yellow,25 +Freestyle,25th Anniversary Silver Tub,843,1998,Black,11 +Freestyle,25th Anniversary Silver Tub,843,1998,Blue,34 +Freestyle,25th Anniversary Silver Tub,843,1998,Brown,1 +Freestyle,25th Anniversary Silver Tub,843,1998,Chrome Silver,1 +Freestyle,25th Anniversary Silver Tub,843,1998,Dark Gray,1 +Freestyle,25th Anniversary Silver Tub,843,1998,Green,14 +Freestyle,25th Anniversary Silver Tub,843,1998,Light Gray,2 +Freestyle,25th Anniversary Silver Tub,843,1998,Red,27 +Freestyle,35th Anniversary Tub,842,1998,Green,14 +Freestyle,35th Anniversary Tub,842,1998,Light Gray,2 +Freestyle,35th Anniversary Tub,842,1998,Red,27 +Freestyle,35th Anniversary Tub,842,1998,Blue,34 +Freestyle,35th Anniversary Tub,842,1998,Trans-Clear,2 +Freestyle,35th Anniversary Tub,842,1998,Trans-Light Blue,1 +Freestyle,35th Anniversary Tub,842,1998,White,17 +Freestyle,35th Anniversary Tub,842,1998,Yellow,25 +Freestyle,35th Anniversary Tub,842,1998,Brown,1 +Freestyle,35th Anniversary Tub,842,1998,Dark Gray,1 +Freestyle,35th Anniversary Tub,842,1998,Black,11 +Freestyle,Freestyle Playdesk,508,1998,Trans-Dark Blue,1 +Freestyle,Freestyle Playdesk,508,1998,White,17 +Freestyle,Freestyle Playdesk,508,1998,Yellow,27 +Freestyle,Freestyle Playdesk,508,1998,Black,10 +Freestyle,Freestyle Playdesk,508,1998,Blue,34 +Freestyle,Freestyle Playdesk,508,1998,Dark Gray,2 +Freestyle,Freestyle Playdesk,508,1998,Green,10 +Freestyle,Freestyle Playdesk,508,1998,Light Gray,1 +Freestyle,Freestyle Playdesk,508,1998,Red,23 +Freestyle,Freestyle Playdesk,508,1998,Trans-Clear,1 +Freestyle,Large Bucket,468,1998,Blue,30 +Freestyle,Large Bucket,468,1998,Black,8 +Freestyle,Large Bucket,468,1998,Bright Green,1 +Freestyle,Large Bucket,468,1998,Dark Gray,2 +Freestyle,Large Bucket,468,1998,Brown,1 +Freestyle,Large Bucket,468,1998,Green,8 +Freestyle,Large Bucket,468,1998,Light Gray,1 +Freestyle,Large Bucket,468,1998,Red,25 +Freestyle,Large Bucket,468,1998,Trans-Clear,2 +Freestyle,Large Bucket,468,1998,White,17 +Freestyle,Large Bucket,468,1998,Yellow,18 +Freestyle,Large Bulk Bucket,420,1998,Yellow,19 +Freestyle,Large Bulk Bucket,420,1998,White,8 +Freestyle,Large Bulk Bucket,420,1998,Green,10 +Freestyle,Large Bulk Bucket,420,1998,Red,14 +Freestyle,Large Bulk Bucket,420,1998,Black,6 +Freestyle,Large Bulk Bucket,420,1998,Blue,12 +Freestyle,25th Anniversary Silver Bucket,418,1998,Black,11 +Freestyle,25th Anniversary Silver Bucket,418,1998,Blue,19 +Freestyle,25th Anniversary Silver Bucket,418,1998,Chrome Silver,1 +Freestyle,25th Anniversary Silver Bucket,418,1998,Dark Gray,1 +Freestyle,25th Anniversary Silver Bucket,418,1998,Green,16 +Freestyle,25th Anniversary Silver Bucket,418,1998,Light Gray,2 +Freestyle,25th Anniversary Silver Bucket,418,1998,Red,31 +Freestyle,25th Anniversary Silver Bucket,418,1998,Trans-Clear,1 +Freestyle,25th Anniversary Silver Bucket,418,1998,White,17 +Freestyle,25th Anniversary Silver Bucket,418,1998,Yellow,19 +Freestyle,25th Anniversary Silver Bucket,418,1998,Trans-Light Blue,1 +Freestyle,35th Anniversary Bucket,417,1998,Black,11 +Freestyle,35th Anniversary Bucket,417,1998,Blue,19 +Freestyle,35th Anniversary Bucket,417,1998,Dark Gray,1 +Freestyle,35th Anniversary Bucket,417,1998,Green,16 +Freestyle,35th Anniversary Bucket,417,1998,Light Gray,2 +Freestyle,35th Anniversary Bucket,417,1998,Red,31 +Freestyle,35th Anniversary Bucket,417,1998,Yellow,19 +Freestyle,35th Anniversary Bucket,417,1998,White,17 +Freestyle,35th Anniversary Bucket,417,1998,Trans-Light Blue,1 +Freestyle,35th Anniversary Bucket,417,1998,Trans-Clear,1 +Freestyle,Cars and Planes,311,1998,Yellow,24 +Freestyle,Cars and Planes,311,1998,White,10 +Freestyle,Cars and Planes,311,1998,Trans-Light Blue,1 +Freestyle,Cars and Planes,311,1998,Trans-Clear,1 +Freestyle,Cars and Planes,311,1998,Red,24 +Freestyle,Cars and Planes,311,1998,Light Gray,1 +Freestyle,Cars and Planes,311,1998,Dark Gray,2 +Freestyle,Cars and Planes,311,1998,Green,10 +Freestyle,Cars and Planes,311,1998,Bright Green,1 +Freestyle,Cars and Planes,311,1998,Blue,24 +Freestyle,Cars and Planes,311,1998,Black,7 +Freestyle,Freestyle Playdesk,309,1998,Light Gray,1 +Freestyle,Freestyle Playdesk,309,1998,Yellow,24 +Freestyle,Freestyle Playdesk,309,1998,Red,25 +Freestyle,Freestyle Playdesk,309,1998,Black,7 +Freestyle,Freestyle Playdesk,309,1998,Blue,24 +Freestyle,Freestyle Playdesk,309,1998,Bright Green,1 +Freestyle,Freestyle Playdesk,309,1998,Dark Gray,2 +Freestyle,Freestyle Playdesk,309,1998,Trans-Clear,1 +Freestyle,Freestyle Playdesk,309,1998,White,10 +Freestyle,Freestyle Playdesk,309,1998,Trans-Light Blue,1 +Freestyle,Freestyle Playdesk,309,1998,Green,10 +Freestyle,Three Eights,182,1998,Black,4 +Freestyle,Three Eights,182,1998,Blue,5 +Freestyle,Three Eights,182,1998,Green,9 +Freestyle,Three Eights,182,1998,Red,12 +Freestyle,Three Eights,182,1998,White,3 +Freestyle,Three Eights,182,1998,Yellow,12 +Freestyle,FreeStyle Box,180,1998,Blue,15 +Freestyle,FreeStyle Box,180,1998,Dark Gray,1 +Freestyle,FreeStyle Box,180,1998,Green,5 +Freestyle,FreeStyle Box,180,1998,Light Gray,1 +Freestyle,FreeStyle Box,180,1998,Trans-Clear,1 +Freestyle,FreeStyle Box,180,1998,White,8 +Freestyle,FreeStyle Box,180,1998,Yellow,13 +Freestyle,FreeStyle Box,180,1998,Red,22 +Freestyle,FreeStyle Box,180,1998,Black,4 +Freestyle,Freestyle Trial Size,39,1998,Blue,4 +Freestyle,Freestyle Trial Size,39,1998,Green,1 +Freestyle,Freestyle Trial Size,39,1998,Red,6 +Freestyle,Freestyle Trial Size,39,1998,White,2 +Freestyle,Freestyle Trial Size,39,1998,Yellow,6 +Freestyle,Freestyle Set,38,1998,Green,1 +Freestyle,Freestyle Set,38,1998,Red,5 +Freestyle,Freestyle Set,38,1998,Trans-Clear,1 +Freestyle,Freestyle Set,38,1998,White,2 +Freestyle,Freestyle Set,38,1998,Yellow,5 +Freestyle,Freestyle Set,38,1998,Blue,5 +Freestyle,Freestyle Set,30,1998,Brown,1 +Freestyle,Freestyle Set,30,1998,Blue,2 +Freestyle,Freestyle Set,30,1998,Red,6 +Freestyle,Freestyle Set,30,1998,White,1 +Freestyle,Freestyle Set,30,1998,Yellow,5 +Freestyle,Freestyle Set,30,1998,Green,3 +Freestyle,Fantasy Bird,28,1998,Yellow,3 +Freestyle,Fantasy Bird,28,1998,White,2 +Freestyle,Fantasy Bird,28,1998,Red,5 +Freestyle,Fantasy Bird,28,1998,Green,2 +Freestyle,Fantasy Bird,28,1998,Blue,4 +Freestyle,Fantasy Boat,27,1998,Yellow,5 +Freestyle,Fantasy Boat,27,1998,White,1 +Freestyle,Fantasy Boat,27,1998,Red,6 +Freestyle,Fantasy Boat,27,1998,Green,5 +Freestyle,Fantasy Boat,27,1998,Blue,2 +Freestyle,Fantasy Boat,27,1998,Black,2 +Friends,Summer Riding Camp,1158,2012,Trans-Orange,1 +Friends,Summer Riding Camp,1158,2012,Trans-Red,1 +Friends,Summer Riding Camp,1158,2012,White,60 +Friends,Summer Riding Camp,1158,2012,Yellow,14 +Friends,Summer Riding Camp,1158,2012,Dark Pink,13 +Friends,Summer Riding Camp,1158,2012,Dark Red,8 +Friends,Summer Riding Camp,1158,2012,Dark Tan,6 +Friends,Summer Riding Camp,1158,2012,Green,7 +Friends,Summer Riding Camp,1158,2012,Light Aqua,1 +Friends,Summer Riding Camp,1158,2012,Light Bluish Gray,26 +Friends,Summer Riding Camp,1158,2012,Light Flesh,6 +Friends,Summer Riding Camp,1158,2012,Lime,13 +Friends,Summer Riding Camp,1158,2012,Medium Azure,1 +Friends,Summer Riding Camp,1158,2012,Dark Blue,1 +Friends,Summer Riding Camp,1158,2012,Medium Blue,11 +Friends,Summer Riding Camp,1158,2012,Medium Lavender,10 +Friends,Summer Riding Camp,1158,2012,[No Color],1 +Friends,Summer Riding Camp,1158,2012,Metallic Silver,1 +Friends,Summer Riding Camp,1158,2012,Orange,1 +Friends,Summer Riding Camp,1158,2012,Pearl Gold,1 +Friends,Summer Riding Camp,1158,2012,Red,10 +Friends,Summer Riding Camp,1158,2012,Reddish Brown,18 +Friends,Summer Riding Camp,1158,2012,Tan,23 +Friends,Summer Riding Camp,1158,2012,Trans-Clear,4 +Friends,Summer Riding Camp,1158,2012,Trans-Light Blue,2 +Friends,Summer Riding Camp,1158,2012,Dark Orange,4 +Friends,Summer Riding Camp,1158,2012,Dark Bluish Gray,5 +Friends,Summer Riding Camp,1158,2012,Bright Pink,7 +Friends,Summer Riding Camp,1158,2012,Bright Light Yellow,2 +Friends,Summer Riding Camp,1158,2012,Medium Dark Flesh,3 +Friends,Summer Riding Camp,1158,2012,Bright Light Orange,6 +Friends,Summer Riding Camp,1158,2012,Bright Green,3 +Friends,Summer Riding Camp,1158,2012,Blue,1 +Friends,Summer Riding Camp,1158,2012,Black,13 +Friends,Olivia’s House,733,2012,Green,4 +Friends,Olivia’s House,733,2012,Light Bluish Gray,20 +Friends,Olivia’s House,733,2012,Light Flesh,6 +Friends,Olivia’s House,733,2012,Lime,14 +Friends,Olivia’s House,733,2012,Medium Azure,3 +Friends,Olivia’s House,733,2012,Medium Blue,15 +Friends,Olivia’s House,733,2012,Medium Lavender,3 +Friends,Olivia’s House,733,2012,Metallic Silver,2 +Friends,Olivia’s House,733,2012,Orange,2 +Friends,Olivia’s House,733,2012,Red,13 +Friends,Olivia’s House,733,2012,Reddish Brown,7 +Friends,Olivia’s House,733,2012,Tan,11 +Friends,Olivia’s House,733,2012,Trans-Clear,5 +Friends,Olivia’s House,733,2012,Trans-Dark Pink,1 +Friends,Olivia’s House,733,2012,Trans-Light Blue,2 +Friends,Olivia’s House,733,2012,Trans-Purple,1 +Friends,Olivia’s House,733,2012,Trans-Yellow,2 +Friends,Olivia’s House,733,2012,White,62 +Friends,Olivia’s House,733,2012,Yellow,19 +Friends,Olivia’s House,733,2012,Magenta,7 +Friends,Olivia’s House,733,2012,Bright Light Blue,2 +Friends,Olivia’s House,733,2012,Bright Light Orange,1 +Friends,Olivia’s House,733,2012,Bright Pink,10 +Friends,Olivia’s House,733,2012,Dark Blue,1 +Friends,Olivia’s House,733,2012,Dark Bluish Gray,4 +Friends,Olivia’s House,733,2012,Dark Orange,1 +Friends,Olivia’s House,733,2012,Dark Pink,2 +Friends,Olivia’s House,733,2012,Dark Purple,1 +Friends,Olivia’s House,733,2012,Dark Red,1 +Friends,Olivia’s House,733,2012,Bright Green,6 +Friends,Olivia’s House,733,2012,Black,15 +Friends,Olivia’s House,733,2012,[No Color],1 +Friends,Heartlake Stables,424,2012,Lime,5 +Friends,Heartlake Stables,424,2012,Light Flesh,3 +Friends,Heartlake Stables,424,2012,Light Bluish Gray,5 +Friends,Heartlake Stables,424,2012,Green,4 +Friends,Heartlake Stables,424,2012,Dark Tan,1 +Friends,Heartlake Stables,424,2012,Dark Red,6 +Friends,Heartlake Stables,424,2012,Dark Pink,14 +Friends,Heartlake Stables,424,2012,Dark Orange,3 +Friends,Heartlake Stables,424,2012,Bright Pink,8 +Friends,Heartlake Stables,424,2012,Bright Light Yellow,1 +Friends,Heartlake Stables,424,2012,Bright Green,4 +Friends,Heartlake Stables,424,2012,Blue,5 +Friends,Heartlake Stables,424,2012,Black,5 +Friends,Heartlake Stables,424,2012,Metallic Silver,1 +Friends,Heartlake Stables,424,2012,Medium Blue,7 +Friends,Heartlake Stables,424,2012,Magenta,1 +Friends,Heartlake Stables,424,2012,Trans-Light Blue,1 +Friends,Heartlake Stables,424,2012,Yellow,12 +Friends,Heartlake Stables,424,2012,White,19 +Friends,Heartlake Stables,424,2012,Tan,10 +Friends,Heartlake Stables,424,2012,Reddish Brown,10 +Friends,Heartlake Stables,424,2012,Red,4 +Friends,Heartlake Stables,424,2012,Orange,2 +Friends,Heartlake Vet,371,2012,White,37 +Friends,Heartlake Vet,371,2012,Trans-Black,1 +Friends,Heartlake Vet,371,2012,Tan,10 +Friends,Heartlake Vet,371,2012,Reddish Brown,2 +Friends,Heartlake Vet,371,2012,Pearl Gold,1 +Friends,Heartlake Vet,371,2012,Orange,2 +Friends,Heartlake Vet,371,2012,Metallic Silver,1 +Friends,Heartlake Vet,371,2012,Medium Azure,4 +Friends,Heartlake Vet,371,2012,Lime,13 +Friends,Heartlake Vet,371,2012,Light Flesh,4 +Friends,Heartlake Vet,371,2012,Light Bluish Gray,6 +Friends,Heartlake Vet,371,2012,Light Aqua,10 +Friends,Heartlake Vet,371,2012,Green,2 +Friends,Heartlake Vet,371,2012,Dark Red,1 +Friends,Heartlake Vet,371,2012,Dark Pink,3 +Friends,Heartlake Vet,371,2012,Dark Orange,4 +Friends,Heartlake Vet,371,2012,Dark Brown,1 +Friends,Heartlake Vet,371,2012,Bright Pink,9 +Friends,Heartlake Vet,371,2012,Bright Light Orange,5 +Friends,Heartlake Vet,371,2012,Bright Light Blue,2 +Friends,Heartlake Vet,371,2012,Bright Green,3 +Friends,Heartlake Vet,371,2012,Black,1 +Friends,Heartlake Vet,371,2012,[No Color],1 +Friends,Heartlake Vet,371,2012,Trans-Clear,3 +Friends,Heartlake Vet,371,2012,Yellow,8 +Friends,Heartlake Vet,371,2012,Trans-Yellow,1 +Friends,Heartlake Vet,371,2012,Trans-Red,1 +Friends,Heartlake Vet,371,2012,Trans-Light Blue,2 +Friends,Heartlake Vet,371,2012,Trans-Green,1 +Friends,Adventure Camper,324,2012,Yellow,9 +Friends,Adventure Camper,324,2012,Medium Lavender,1 +Friends,Adventure Camper,324,2012,White,25 +Friends,Adventure Camper,324,2012,Trans-Red,2 +Friends,Adventure Camper,324,2012,Bright Light Orange,2 +Friends,Adventure Camper,324,2012,[No Color],1 +Friends,Adventure Camper,324,2012,Black,6 +Friends,Adventure Camper,324,2012,Bright Pink,9 +Friends,Adventure Camper,324,2012,Dark Bluish Gray,13 +Friends,Adventure Camper,324,2012,Dark Orange,1 +Friends,Adventure Camper,324,2012,Dark Pink,6 +Friends,Adventure Camper,324,2012,Green,1 +Friends,Adventure Camper,324,2012,Light Aqua,1 +Friends,Adventure Camper,324,2012,Light Bluish Gray,7 +Friends,Adventure Camper,324,2012,Light Flesh,2 +Friends,Adventure Camper,324,2012,Lime,11 +Friends,Adventure Camper,324,2012,Medium Azure,2 +Friends,Adventure Camper,324,2012,Medium Dark Flesh,2 +Friends,Adventure Camper,324,2012,Orange,1 +Friends,Adventure Camper,324,2012,Red,11 +Friends,Adventure Camper,324,2012,Reddish Brown,7 +Friends,Adventure Camper,324,2012,Tan,2 +Friends,Adventure Camper,324,2012,Trans-Clear,5 +Friends,Adventure Camper,324,2012,Trans-Orange,1 +Friends,City Park Café,244,2012,Light Bluish Gray,3 +Friends,City Park Café,244,2012,Trans-Clear,8 +Friends,City Park Café,244,2012,Tan,2 +Friends,City Park Café,244,2012,Reddish Brown,5 +Friends,City Park Café,244,2012,Red,23 +Friends,City Park Café,244,2012,Orange,1 +Friends,City Park Café,244,2012,Trans-Dark Pink,1 +Friends,City Park Café,244,2012,Metallic Silver,2 +Friends,City Park Café,244,2012,Medium Dark Flesh,3 +Friends,City Park Café,244,2012,Lime,4 +Friends,City Park Café,244,2012,Light Aqua,1 +Friends,City Park Café,244,2012,Green,2 +Friends,City Park Café,244,2012,Dark Red,3 +Friends,City Park Café,244,2012,Dark Brown,1 +Friends,City Park Café,244,2012,Dark Bluish Gray,1 +Friends,City Park Café,244,2012,Bright Pink,8 +Friends,City Park Café,244,2012,Bright Light Yellow,1 +Friends,City Park Café,244,2012,Bright Light Blue,2 +Friends,City Park Café,244,2012,Light Flesh,2 +Friends,City Park Café,244,2012,Blue,1 +Friends,City Park Café,244,2012,Black,3 +Friends,City Park Café,244,2012,[No Color],1 +Friends,City Park Café,244,2012,Yellow,13 +Friends,City Park Café,244,2012,White,31 +Friends,City Park Café,244,2012,Trans-Light Blue,1 +Friends,Butterfly Beauty Shop,240,2012,Dark Bluish Gray,2 +Friends,Butterfly Beauty Shop,240,2012,Dark Brown,1 +Friends,Butterfly Beauty Shop,240,2012,Dark Pink,2 +Friends,Butterfly Beauty Shop,240,2012,Dark Purple,5 +Friends,Butterfly Beauty Shop,240,2012,Flat Silver,1 +Friends,Butterfly Beauty Shop,240,2012,Green,1 +Friends,Butterfly Beauty Shop,240,2012,Light Aqua,2 +Friends,Butterfly Beauty Shop,240,2012,Light Bluish Gray,13 +Friends,Butterfly Beauty Shop,240,2012,Light Flesh,2 +Friends,Butterfly Beauty Shop,240,2012,Lime,2 +Friends,Butterfly Beauty Shop,240,2012,Magenta,1 +Friends,Butterfly Beauty Shop,240,2012,Medium Azure,6 +Friends,Butterfly Beauty Shop,240,2012,Medium Dark Flesh,2 +Friends,Butterfly Beauty Shop,240,2012,Medium Lavender,5 +Friends,Butterfly Beauty Shop,240,2012,Red,1 +Friends,Butterfly Beauty Shop,240,2012,Tan,2 +Friends,Butterfly Beauty Shop,240,2012,Trans-Clear,3 +Friends,Butterfly Beauty Shop,240,2012,Trans-Light Blue,4 +Friends,Butterfly Beauty Shop,240,2012,Trans-Red,1 +Friends,Butterfly Beauty Shop,240,2012,White,23 +Friends,Butterfly Beauty Shop,240,2012,Yellow,1 +Friends,Butterfly Beauty Shop,240,2012,Black,12 +Friends,Butterfly Beauty Shop,240,2012,Bright Light Orange,13 +Friends,Butterfly Beauty Shop,240,2012,Bright Pink,4 +Friends,Butterfly Beauty Shop,240,2012,Dark Blue,1 +Friends,Emma's Horse Trailer,232,2012,Light Flesh,2 +Friends,Emma's Horse Trailer,232,2012,Trans-Red,2 +Friends,Emma's Horse Trailer,232,2012,Trans-Yellow,2 +Friends,Emma's Horse Trailer,232,2012,White,19 +Friends,Emma's Horse Trailer,232,2012,Black,7 +Friends,Emma's Horse Trailer,232,2012,Bright Green,2 +Friends,Emma's Horse Trailer,232,2012,Bright Pink,7 +Friends,Emma's Horse Trailer,232,2012,Dark Pink,1 +Friends,Emma's Horse Trailer,232,2012,Dark Red,13 +Friends,Emma's Horse Trailer,232,2012,Dark Tan,3 +Friends,Emma's Horse Trailer,232,2012,Green,2 +Friends,Emma's Horse Trailer,232,2012,Light Bluish Gray,8 +Friends,Emma's Horse Trailer,232,2012,Yellow,10 +Friends,Emma's Horse Trailer,232,2012,Lime,2 +Friends,Emma's Horse Trailer,232,2012,Medium Azure,11 +Friends,Emma's Horse Trailer,232,2012,Medium Lavender,1 +Friends,Emma's Horse Trailer,232,2012,Orange,1 +Friends,Emma's Horse Trailer,232,2012,Reddish Brown,2 +Friends,Emma's Horse Trailer,232,2012,Tan,3 +Friends,Emma's Horse Trailer,232,2012,Trans-Clear,2 +Friends,Emma's Horse Trailer,232,2012,Trans-Orange,1 +Friends,Olivia’s Tree House,214,2012,Yellow,3 +Friends,Olivia’s Tree House,214,2012,Bright Light Orange,1 +Friends,Olivia’s Tree House,214,2012,Bright Light Blue,1 +Friends,Olivia’s Tree House,214,2012,Bright Green,2 +Friends,Olivia’s Tree House,214,2012,Black,1 +Friends,Olivia’s Tree House,214,2012,Reddish Brown,10 +Friends,Olivia’s Tree House,214,2012,White,4 +Friends,Olivia’s Tree House,214,2012,Trans-Yellow,1 +Friends,Olivia’s Tree House,214,2012,Trans-Red,1 +Friends,Olivia’s Tree House,214,2012,Tan,9 +Friends,Olivia’s Tree House,214,2012,Lime,2 +Friends,Olivia’s Tree House,214,2012,Red,10 +Friends,Olivia’s Tree House,214,2012,Pearl Gold,1 +Friends,Olivia’s Tree House,214,2012,Medium Lavender,2 +Friends,Olivia’s Tree House,214,2012,Medium Dark Flesh,1 +Friends,Olivia’s Tree House,214,2012,Medium Blue,4 +Friends,Olivia’s Tree House,214,2012,Light Flesh,2 +Friends,Olivia’s Tree House,214,2012,Light Bluish Gray,2 +Friends,Olivia’s Tree House,214,2012,Green,7 +Friends,Olivia’s Tree House,214,2012,Flat Silver,1 +Friends,Olivia’s Tree House,214,2012,Dark Pink,1 +Friends,Olivia’s Tree House,214,2012,Dark Blue,1 +Friends,Olivia’s Tree House,214,2012,Bright Pink,7 +Friends,Heartlake Dog Show,202,2012,Dark Red,1 +Friends,Heartlake Dog Show,202,2012,Dark Pink,6 +Friends,Heartlake Dog Show,202,2012,Dark Orange,1 +Friends,Heartlake Dog Show,202,2012,Bright Pink,3 +Friends,Heartlake Dog Show,202,2012,Bright Light Orange,2 +Friends,Heartlake Dog Show,202,2012,Bright Green,1 +Friends,Heartlake Dog Show,202,2012,Yellow,5 +Friends,Heartlake Dog Show,202,2012,White,21 +Friends,Heartlake Dog Show,202,2012,Medium Azure,5 +Friends,Heartlake Dog Show,202,2012,Trans-Light Blue,1 +Friends,Heartlake Dog Show,202,2012,Tan,3 +Friends,Heartlake Dog Show,202,2012,Red,1 +Friends,Heartlake Dog Show,202,2012,Medium Lavender,12 +Friends,Heartlake Dog Show,202,2012,Lime,7 +Friends,Heartlake Dog Show,202,2012,Light Flesh,2 +Friends,Heartlake Dog Show,202,2012,Trans-Neon Green,1 +Friends,Heartlake Dog Show,202,2012,Light Bluish Gray,5 +Friends,Heartlake Dog Show,202,2012,Green,2 +Friends,Heartlake Dog Show,202,2012,Black,4 +Friends,Heartlake Flying Club,197,2012,Trans-Red,1 +Friends,Heartlake Flying Club,197,2012,Black,1 +Friends,Heartlake Flying Club,197,2012,Bright Light Yellow,1 +Friends,Heartlake Flying Club,197,2012,[No Color],1 +Friends,Heartlake Flying Club,197,2012,Trans-Clear,1 +Friends,Heartlake Flying Club,197,2012,Yellow,11 +Friends,Heartlake Flying Club,197,2012,White,20 +Friends,Heartlake Flying Club,197,2012,Light Bluish Gray,11 +Friends,Heartlake Flying Club,197,2012,Trans-Green,1 +Friends,Heartlake Flying Club,197,2012,Tan,6 +Friends,Heartlake Flying Club,197,2012,Reddish Brown,3 +Friends,Heartlake Flying Club,197,2012,Medium Azure,4 +Friends,Heartlake Flying Club,197,2012,Magenta,3 +Friends,Heartlake Flying Club,197,2012,Light Flesh,2 +Friends,Heartlake Flying Club,197,2012,Light Aqua,4 +Friends,Heartlake Flying Club,197,2012,Green,1 +Friends,Heartlake Flying Club,197,2012,Dark Pink,1 +Friends,Heartlake Flying Club,197,2012,Dark Brown,1 +Friends,Heartlake Flying Club,197,2012,Dark Bluish Gray,2 +Friends,Heartlake Flying Club,197,2012,Bright Pink,3 +Friends,Heartlake Flying Club,197,2012,Bright Light Orange,2 +Friends,Stephanie’s Cool Convertible,148,2012,White,9 +Friends,Stephanie’s Cool Convertible,148,2012,Yellow,9 +Friends,Stephanie’s Cool Convertible,148,2012,Light Flesh,2 +Friends,Stephanie’s Cool Convertible,148,2012,Light Bluish Gray,7 +Friends,Stephanie’s Cool Convertible,148,2012,Trans-Yellow,2 +Friends,Stephanie’s Cool Convertible,148,2012,Medium Azure,10 +Friends,Stephanie’s Cool Convertible,148,2012,Magenta,1 +Friends,Stephanie’s Cool Convertible,148,2012,Medium Dark Flesh,1 +Friends,Stephanie’s Cool Convertible,148,2012,Medium Lavender,9 +Friends,Stephanie’s Cool Convertible,148,2012,Metallic Silver,1 +Friends,Stephanie’s Cool Convertible,148,2012,Pearl Gold,1 +Friends,Stephanie’s Cool Convertible,148,2012,Trans-Clear,2 +Friends,Stephanie’s Cool Convertible,148,2012,Trans-Orange,1 +Friends,Stephanie’s Cool Convertible,148,2012,Trans-Red,2 +Friends,Stephanie’s Cool Convertible,148,2012,Black,1 +Friends,Stephanie’s Cool Convertible,148,2012,Bright Light Yellow,1 +Friends,Stephanie’s Cool Convertible,148,2012,Bright Pink,15 +Friends,Stephanie’s Cool Convertible,148,2012,Dark Bluish Gray,3 +Friends,Stephanie’s Cool Convertible,148,2012,Dark Pink,3 +Friends,Stephanie’s Cool Convertible,148,2012,Green,1 +Friends,Mia's Bedroom,86,2012,Black,7 +Friends,Mia's Bedroom,86,2012,Bright Pink,5 +Friends,Mia's Bedroom,86,2012,Bright Light Orange,1 +Friends,Olivia's Invention Workshop,86,2012,Trans-Clear,1 +Friends,Olivia's Invention Workshop,86,2012,Reddish Brown,1 +Friends,Olivia's Invention Workshop,86,2012,Orange,1 +Friends,Olivia's Invention Workshop,86,2012,White,9 +Friends,Olivia's Invention Workshop,86,2012,Trans-Red,3 +Friends,Olivia's Invention Workshop,86,2012,Trans-Light Blue,1 +Friends,Olivia's Invention Workshop,86,2012,Trans-Green,2 +Friends,Olivia's Invention Workshop,86,2012,Medium Azure,4 +Friends,Olivia's Invention Workshop,86,2012,Lime,1 +Friends,Olivia's Invention Workshop,86,2012,Light Flesh,2 +Friends,Olivia's Invention Workshop,86,2012,Light Bluish Gray,4 +Friends,Olivia's Invention Workshop,86,2012,Light Aqua,1 +Friends,Olivia's Invention Workshop,86,2012,Dark Purple,6 +Friends,Olivia's Invention Workshop,86,2012,Dark Bluish Gray,3 +Friends,Olivia's Invention Workshop,86,2012,Bright Pink,4 +Friends,Olivia's Invention Workshop,86,2012,Blue,2 +Friends,Olivia's Invention Workshop,86,2012,Black,3 +Friends,Mia's Bedroom,86,2012,Yellow,1 +Friends,Mia's Bedroom,86,2012,White,13 +Friends,Mia's Bedroom,86,2012,Trans-Yellow,1 +Friends,Mia's Bedroom,86,2012,Trans-Clear,3 +Friends,Mia's Bedroom,86,2012,Tan,3 +Friends,Mia's Bedroom,86,2012,Red,1 +Friends,Mia's Bedroom,86,2012,Orange,3 +Friends,Mia's Bedroom,86,2012,Metallic Silver,1 +Friends,Mia's Bedroom,86,2012,Medium Azure,4 +Friends,Mia's Bedroom,86,2012,Magenta,4 +Friends,Mia's Bedroom,86,2012,Light Flesh,2 +Friends,Mia's Bedroom,86,2012,Light Bluish Gray,3 +Friends,Mia's Bedroom,86,2012,Green,1 +Friends,Mia's Bedroom,86,2012,Dark Red,1 +Friends,Mia's Bedroom,86,2012,Dark Bluish Gray,2 +Friends,Andrea’s Stage,83,2012,Trans-Red,1 +Friends,Andrea’s Stage,83,2012,Trans-Dark Blue,1 +Friends,Andrea’s Stage,83,2012,Trans-Clear,1 +Friends,Andrea’s Stage,83,2012,Tan,1 +Friends,Andrea’s Stage,83,2012,Red,6 +Friends,Andrea’s Stage,83,2012,Medium Lavender,3 +Friends,Andrea’s Stage,83,2012,Magenta,4 +Friends,Andrea’s Stage,83,2012,Dark Purple,1 +Friends,Andrea’s Stage,83,2012,Bright Pink,1 +Friends,Andrea’s Stage,83,2012,Bright Light Yellow,1 +Friends,Andrea’s Stage,83,2012,Black,13 +Friends,Mia’s Puppy House,83,2012,Reddish Brown,6 +Friends,Mia’s Puppy House,83,2012,Bright Light Orange,1 +Friends,Mia’s Puppy House,83,2012,Dark Blue,1 +Friends,Mia’s Puppy House,83,2012,Dark Pink,12 +Friends,Mia’s Puppy House,83,2012,Dark Red,1 +Friends,Mia’s Puppy House,83,2012,Green,3 +Friends,Mia’s Puppy House,83,2012,Light Flesh,2 +Friends,Mia’s Puppy House,83,2012,Lime,4 +Friends,Mia’s Puppy House,83,2012,Medium Blue,1 +Friends,Mia’s Puppy House,83,2012,Red,1 +Friends,Mia’s Puppy House,83,2012,Tan,5 +Friends,Mia’s Puppy House,83,2012,White,7 +Friends,Mia’s Puppy House,83,2012,Yellow,2 +Friends,Andrea’s Stage,83,2012,White,5 +Friends,Andrea’s Stage,83,2012,Trans-Yellow,1 +Friends,Emma’s Fashion Design Studio,77,2012,Lime,2 +Friends,Emma’s Fashion Design Studio,77,2012,Black,2 +Friends,Emma’s Fashion Design Studio,77,2012,Medium Azure,5 +Friends,Emma’s Fashion Design Studio,77,2012,Bright Light Orange,2 +Friends,Emma’s Fashion Design Studio,77,2012,Dark Pink,1 +Friends,Emma’s Fashion Design Studio,77,2012,Dark Purple,3 +Friends,Emma’s Fashion Design Studio,77,2012,Green,1 +Friends,Emma’s Fashion Design Studio,77,2012,Medium Blue,1 +Friends,Emma’s Fashion Design Studio,77,2012,Bright Pink,6 +Friends,Emma’s Fashion Design Studio,77,2012,Medium Lavender,1 +Friends,Emma’s Fashion Design Studio,77,2012,Red,1 +Friends,Emma’s Fashion Design Studio,77,2012,Tan,2 +Friends,Emma’s Fashion Design Studio,77,2012,Trans-Dark Pink,1 +Friends,Emma’s Fashion Design Studio,77,2012,Trans-Yellow,1 +Friends,Emma’s Fashion Design Studio,77,2012,White,13 +Friends,Emma’s Fashion Design Studio,77,2012,Yellow,1 +Friends,Stephanie’s Pet Patrol,73,2012,Bright Pink,2 +Friends,Stephanie’s Pet Patrol,73,2012,Dark Bluish Gray,1 +Friends,Stephanie’s Pet Patrol,73,2012,Dark Pink,1 +Friends,Stephanie’s Pet Patrol,73,2012,Green,2 +Friends,Stephanie’s Pet Patrol,73,2012,Light Aqua,2 +Friends,Stephanie’s Pet Patrol,73,2012,Light Bluish Gray,6 +Friends,Stephanie’s Pet Patrol,73,2012,Light Flesh,2 +Friends,Stephanie’s Pet Patrol,73,2012,Lime,5 +Friends,Stephanie’s Pet Patrol,73,2012,Black,3 +Friends,Stephanie’s Pet Patrol,73,2012,Medium Azure,2 +Friends,Stephanie’s Pet Patrol,73,2012,Orange,1 +Friends,Stephanie’s Pet Patrol,73,2012,Tan,1 +Friends,Stephanie’s Pet Patrol,73,2012,Trans-Red,1 +Friends,Stephanie’s Pet Patrol,73,2012,White,5 +Friends,Stephanie’s Pet Patrol,73,2012,Yellow,4 +Friends,Stephanie’s Pet Patrol,73,2012,Bright Green,2 +Friends,Stephanie’s Pet Patrol,73,2012,Bright Light Yellow,1 +Friends,Andrea's Bunny House,64,2012,Magenta,1 +Friends,Andrea's Bunny House,64,2012,Dark Pink,1 +Friends,Andrea's Bunny House,64,2012,Dark Brown,1 +Friends,Andrea's Bunny House,64,2012,Bright Light Orange,4 +Friends,Andrea's Bunny House,64,2012,Bright Green,1 +Friends,Andrea's Bunny House,64,2012,Medium Dark Flesh,2 +Friends,Andrea's Bunny House,64,2012,Lime,1 +Friends,Andrea's Bunny House,64,2012,Light Bluish Gray,4 +Friends,Olivia's Speedboat,64,2012,White,8 +Friends,Olivia's Speedboat,64,2012,Trans-Light Blue,3 +Friends,Olivia's Speedboat,64,2012,Trans-Clear,2 +Friends,Olivia's Speedboat,64,2012,Tan,5 +Friends,Olivia's Speedboat,64,2012,Reddish Brown,1 +Friends,Olivia's Speedboat,64,2012,Red,2 +Friends,Olivia's Speedboat,64,2012,Pearl Gold,1 +Friends,Olivia's Speedboat,64,2012,Medium Lavender,2 +Friends,Olivia's Speedboat,64,2012,Medium Blue,1 +Friends,Olivia's Speedboat,64,2012,Light Flesh,2 +Friends,Olivia's Speedboat,64,2012,Light Bluish Gray,1 +Friends,Andrea's Bunny House,64,2012,Bright Pink,3 +Friends,Olivia's Speedboat,64,2012,Dark Bluish Gray,1 +Friends,Olivia's Speedboat,64,2012,Bright Pink,4 +Friends,Olivia's Speedboat,64,2012,Bright Light Orange,4 +Friends,Olivia's Speedboat,64,2012,Blue,1 +Friends,Andrea's Bunny House,64,2012,White,12 +Friends,Andrea's Bunny House,64,2012,Trans-Light Blue,2 +Friends,Andrea's Bunny House,64,2012,Reddish Brown,1 +Friends,Andrea's Bunny House,64,2012,Red,2 +Friends,Andrea's Bunny House,64,2012,Pearl Gold,1 +Friends,Andrea's Bunny House,64,2012,Light Aqua,1 +Friends,Andrea's Bunny House,64,2012,Orange,1 +Friends,Andrea's Bunny House,64,2012,Green,4 +Friends,Olivia's Speedboat,64,2012,Dark Pink,2 +Friends,Friends Picture Frame,51,2012,Medium Blue,2 +Friends,Friends Picture Frame,51,2012,Magenta,1 +Friends,Friends Picture Frame,51,2012,Lime,3 +Friends,Friends Picture Frame,51,2012,Light Bluish Gray,1 +Friends,Friends Picture Frame,51,2012,Green,4 +Friends,Friends Picture Frame,51,2012,Bright Pink,2 +Friends,Friends Picture Frame,51,2012,Bright Light Orange,1 +Friends,Friends Picture Frame,51,2012,Bright Green,1 +Friends,Friends Picture Frame,51,2012,Red,1 +Friends,Friends Picture Frame,51,2012,White,4 +Friends,Stephanie's Outdoor Bakery,45,2012,Trans-Light Blue,1 +Friends,Stephanie's Outdoor Bakery,45,2012,Light Bluish Gray,2 +Friends,Stephanie's Outdoor Bakery,45,2012,Dark Pink,1 +Friends,Stephanie's Outdoor Bakery,45,2012,White,9 +Friends,Stephanie's Outdoor Bakery,45,2012,Trans-Clear,2 +Friends,Stephanie's Outdoor Bakery,45,2012,Bright Pink,2 +Friends,Stephanie's Outdoor Bakery,45,2012,Tan,2 +Friends,Stephanie's Outdoor Bakery,45,2012,Medium Lavender,1 +Friends,Stephanie's Outdoor Bakery,45,2012,Medium Blue,1 +Friends,Stephanie's Outdoor Bakery,45,2012,Medium Azure,1 +Friends,Stephanie's Outdoor Bakery,45,2012,Lime,3 +Friends,Stephanie's Outdoor Bakery,45,2012,Light Flesh,2 +Friends,Stephanie's Outdoor Bakery,45,2012,Bright Light Yellow,1 +Friends,Stephanie's Outdoor Bakery,45,2012,Black,1 +Friends,Stephanie's Outdoor Bakery,45,2012,Reddish Brown,2 +Friends,Emma's Splash Pool,43,2012,Black,1 +Friends,Emma's Splash Pool,43,2012,Bright Light Orange,1 +Friends,Emma's Splash Pool,43,2012,Bright Pink,5 +Friends,Emma's Splash Pool,43,2012,Green,1 +Friends,Emma's Splash Pool,43,2012,Light Flesh,2 +Friends,Emma's Splash Pool,43,2012,Lime,4 +Friends,Emma's Splash Pool,43,2012,White,7 +Friends,Emma's Splash Pool,43,2012,Trans-Light Blue,1 +Friends,Emma's Splash Pool,43,2012,Trans-Clear,1 +Friends,Emma's Splash Pool,43,2012,Reddish Brown,1 +Friends,Emma's Splash Pool,43,2012,Medium Azure,1 +Friends,Emma's Splash Pool,43,2012,Magenta,1 +Friends,Stephanie and Mailbox,41,2012,Pearl Gold,1 +Friends,Stephanie and Mailbox,41,2012,White,8 +Friends,Stephanie and Mailbox,41,2012,Reddish Brown,1 +Friends,Stephanie and Mailbox,41,2012,Red,5 +Friends,Stephanie and Mailbox,41,2012,Magenta,1 +Friends,Stephanie and Mailbox,41,2012,Lime,1 +Friends,Stephanie and Mailbox,41,2012,Light Flesh,2 +Friends,Stephanie and Mailbox,41,2012,Light Bluish Gray,1 +Friends,Stephanie and Mailbox,41,2012,Green,1 +Friends,Stephanie and Mailbox,41,2012,Dark Pink,2 +Friends,Stephanie and Mailbox,41,2012,Bright Pink,2 +Friends,Stephanie and Mailbox,41,2012,Bright Light Yellow,1 +Friends,Stephanie and Mailbox,41,2012,Black,2 +Friends,Car,32,2012,Flat Silver,1 +Friends,Car,32,2012,Black,3 +Friends,Car,32,2012,Bright Pink,2 +Friends,Car,32,2012,Dark Blue,1 +Friends,Car,32,2012,Light Bluish Gray,2 +Friends,Car,32,2012,Yellow,1 +Friends,Car,32,2012,White,4 +Friends,Car,32,2012,Trans-Clear,1 +Friends,Car,32,2012,Medium Lavender,1 +Friends,Car,32,2012,Medium Azure,2 +Friends,Car,32,2012,Light Flesh,2 +Friends,Andrea on the Beach,28,2012,Trans-Light Blue,1 +Friends,Desk,28,2012,Yellow,1 +Friends,Desk,28,2012,White,2 +Friends,Desk,28,2012,Dark Pink,2 +Friends,Desk,28,2012,Green,1 +Friends,Desk,28,2012,Light Flesh,2 +Friends,Andrea on the Beach,28,2012,Bright Light Orange,1 +Friends,Desk,28,2012,Trans-Yellow,1 +Friends,Desk,28,2012,Trans-Dark Pink,1 +Friends,Desk,28,2012,Trans-Clear,1 +Friends,Desk,28,2012,Reddish Brown,1 +Friends,Desk,28,2012,Lime,1 +Friends,Desk,28,2012,Medium Lavender,1 +Friends,Andrea on the Beach,28,2012,Trans-Dark Blue,1 +Friends,Andrea on the Beach,28,2012,Dark Pink,2 +Friends,Andrea on the Beach,28,2012,Tan,4 +Friends,Andrea on the Beach,28,2012,Pearl Gold,1 +Friends,Andrea on the Beach,28,2012,Orange,1 +Friends,Andrea on the Beach,28,2012,Medium Dark Flesh,2 +Friends,Desk,28,2012,Medium Azure,1 +Friends,Andrea on the Beach,28,2012,Lime,1 +Friends,Andrea on the Beach,28,2012,Light Aqua,1 +Friends,Andrea on the Beach,28,2012,Dark Brown,1 +Friends,Andrea on the Beach,28,2012,Dark Bluish Gray,1 +Friends,Desk,28,2012,Pearl Gold,1 +Friends,Desk,28,2012,Black,1 +Friends,Desk,28,2012,Bright Pink,2 +Friends,Skate Boarder,28,2012,Bright Light Orange,2 +Friends,Skate Boarder,28,2012,Dark Bluish Gray,1 +Friends,Skate Boarder,28,2012,Dark Pink,1 +Friends,Skate Boarder,28,2012,Dark Red,1 +Friends,Skate Boarder,28,2012,Black,1 +Friends,Skate Boarder,28,2012,Light Bluish Gray,1 +Friends,Skate Boarder,28,2012,Lime,3 +Friends,Skate Boarder,28,2012,Red,2 +Friends,Skate Boarder,28,2012,Tan,2 +Friends,Skate Boarder,28,2012,Trans-Clear,1 +Friends,Skate Boarder,28,2012,Trans-Yellow,2 +Friends,Skate Boarder,28,2012,White,1 +Friends,Skate Boarder,28,2012,Light Flesh,2 +Friends,Skate Boarder,28,2012,Green,1 +Friends,Skate Boarder,28,2012,Blue,1 +Friends,Skate Boarder,28,2012,Yellow,1 +Friends,"Advent Calendar 2012, Friends (Day 21) - Fireplace",21,2012,Bright Green,1 +Friends,"Advent Calendar 2012, Friends (Day 21) - Fireplace",21,2012,Brown,1 +Friends,"Advent Calendar 2012, Friends (Day 21) - Fireplace",21,2012,Light Bluish Gray,5 +Friends,"Advent Calendar 2012, Friends (Day 21) - Fireplace",21,2012,Red,1 +Friends,"Advent Calendar 2012, Friends (Day 21) - Fireplace",21,2012,Trans-Neon Orange,1 +Friends,"Advent Calendar 2012, Friends (Day 21) - Fireplace",21,2012,White,2 +Friends,"Advent Calendar 2012, Friends (Day 21) - Fireplace",21,2012,Black,1 +Friends,"Advent Calendar 2012, Friends (Day 7) - Friends Accessories",20,2012,Light Aqua,13 +Friends,"Advent Calendar 2012, Friends (Day 22) - Christmas Tree",18,2012,Green,3 +Friends,"Advent Calendar 2012, Friends (Day 22) - Christmas Tree",18,2012,Red,1 +Friends,"Advent Calendar 2012, Friends (Day 22) - Christmas Tree",18,2012,Trans-Yellow,1 +Friends,"Advent Calendar 2012, Friends (Day 22) - Christmas Tree",18,2012,Reddish Brown,2 +Friends,Display Stand,17,2012,Trans-Dark Pink,1 +Friends,Display Stand,17,2012,White,5 +Friends,Display Stand,17,2012,Trans-Light Blue,1 +Friends,"Advent Calendar 2012, Friends (Day 3) - Street Light with Garland",12,2012,Trans-Clear,1 +Friends,"Advent Calendar 2012, Friends (Day 3) - Street Light with Garland",12,2012,Red,1 +Friends,"Advent Calendar 2012, Friends (Day 3) - Street Light with Garland",12,2012,Light Bluish Gray,3 +Friends,"Advent Calendar 2012, Friends (Day 3) - Street Light with Garland",12,2012,Green,1 +Friends,"Advent Calendar 2012, Friends (Day 3) - Street Light with Garland",12,2012,White,4 +Friends,"Advent Calendar 2012, Friends (Day 3) - Street Light with Garland",12,2012,Trans-Yellow,1 +Friends,"Advent Calendar 2012, Friends (Day 24) - Corner Table with Beauty Accessories",11,2012,White,2 +Friends,"Advent Calendar 2012, Friends (Day 23) - Medium Blue/White Present with Letter",11,2012,Medium Blue,2 +Friends,"Advent Calendar 2012, Friends (Day 24) - Corner Table with Beauty Accessories",11,2012,Bright Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 24) - Corner Table with Beauty Accessories",11,2012,Trans-Light Blue,1 +Friends,"Advent Calendar 2012, Friends (Day 24) - Corner Table with Beauty Accessories",11,2012,Trans-Dark Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 24) - Corner Table with Beauty Accessories",11,2012,Glitter Trans-Dark Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 24) - Corner Table with Beauty Accessories",11,2012,Dark Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 24) - Corner Table with Beauty Accessories",11,2012,Black,1 +Friends,"Advent Calendar 2012, Friends (Day 23) - Medium Blue/White Present with Letter",11,2012,White,4 +Friends,"Advent Calendar 2012, Friends (Day 10) - Sled Trailer #1",10,2012,Medium Azure,2 +Friends,"Advent Calendar 2012, Friends (Day 10) - Sled Trailer #1",10,2012,Yellow,2 +Friends,"Advent Calendar 2012, Friends (Day 10) - Sled Trailer #1",10,2012,Light Bluish Gray,1 +Friends,"Advent Calendar 2012, Friends (Day 10) - Sled Trailer #1",10,2012,White,2 +Friends,"Advent Calendar 2012, Friends (Day 14) - Dog Basket with Bone",9,2012,Bright Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 2) - Sled",9,2012,White,1 +Friends,"Advent Calendar 2012, Friends (Day 2) - Sled",9,2012,Light Bluish Gray,1 +Friends,"Advent Calendar 2012, Friends (Day 2) - Sled",9,2012,Bright Pink,3 +Friends,"Advent Calendar 2012, Friends (Day 14) - Dog Basket with Bone",9,2012,White,2 +Friends,"Advent Calendar 2012, Friends (Day 14) - Dog Basket with Bone",9,2012,Medium Azure,2 +Friends,"Advent Calendar 2012, Friends (Day 8) - Table with Stool",9,2012,Yellow,2 +Friends,"Advent Calendar 2012, Friends (Day 13) - Stool and Plate with Candies",9,2012,Yellow,1 +Friends,"Advent Calendar 2012, Friends (Day 13) - Stool and Plate with Candies",9,2012,Trans-Light Blue,1 +Friends,"Advent Calendar 2012, Friends (Day 13) - Stool and Plate with Candies",9,2012,Lime,1 +Friends,"Advent Calendar 2012, Friends (Day 13) - Stool and Plate with Candies",9,2012,Bright Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 8) - Table with Stool",9,2012,Dark Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 8) - Table with Stool",9,2012,White,1 +Friends,"Advent Calendar 2012, Friends (Day 8) - Table with Stool",9,2012,Lime,2 +Friends,"Advent Calendar 2012, Friends (Day 2) - Sled",9,2012,Yellow,1 +Friends,"Advent Calendar 2012, Friends (Day 15) - Sled Trailer #2",8,2012,Lime,1 +Friends,"Advent Calendar 2012, Friends (Day 9) - Breakfast",8,2012,Medium Blue,1 +Friends,"Advent Calendar 2012, Friends (Day 9) - Breakfast",8,2012,Reddish Brown,1 +Friends,"Advent Calendar 2012, Friends (Day 9) - Breakfast",8,2012,White,1 +Friends,"Advent Calendar 2012, Friends (Day 20) - Flower Arrangement",8,2012,White,1 +Friends,"Advent Calendar 2012, Friends (Day 11) - Present for Dog",8,2012,Bright Pink,2 +Friends,"Advent Calendar 2012, Friends (Day 9) - Breakfast",8,2012,Dark Pink,2 +Friends,"Advent Calendar 2012, Friends (Day 15) - Sled Trailer #2",8,2012,Yellow,2 +Friends,"Advent Calendar 2012, Friends (Day 15) - Sled Trailer #2",8,2012,White,1 +Friends,"Advent Calendar 2012, Friends (Day 20) - Flower Arrangement",8,2012,Red,1 +Friends,"Advent Calendar 2012, Friends (Day 20) - Flower Arrangement",8,2012,Green,3 +Friends,"Advent Calendar 2012, Friends (Day 9) - Breakfast",8,2012,Bright Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 11) - Present for Dog",8,2012,White,3 +Friends,"Advent Calendar 2012, Friends (Day 11) - Present for Dog",8,2012,Lime,1 +Friends,"Advent Calendar 2012, Friends (Day 18) - Lime/White Present With Letter",8,2012,White,4 +Friends,"Advent Calendar 2012, Friends (Day 18) - Lime/White Present With Letter",8,2012,Lime,2 +Friends,"Advent Calendar 2012, Friends (Day 17) - Mailbox with Letter",8,2012,White,3 +Friends,"Advent Calendar 2012, Friends (Day 17) - Mailbox with Letter",8,2012,Lime,2 +Friends,"Advent Calendar 2012, Friends (Day 17) - Mailbox with Letter",8,2012,Dark Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 17) - Mailbox with Letter",8,2012,Bright Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 15) - Sled Trailer #2",8,2012,Light Bluish Gray,1 +Friends,"Advent Calendar 2012, Friends (Day 5) - Snowman",7,2012,Black,1 +Friends,"Advent Calendar 2012, Friends (Day 5) - Snowman",7,2012,Dark Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 5) - Snowman",7,2012,Reddish Brown,1 +Friends,"Advent Calendar 2012, Friends (Day 5) - Snowman",7,2012,White,3 +Friends,"Advent Calendar 2012, Friends (Day 16) - Basket with Broom and Snow Balls",6,2012,White,1 +Friends,"Advent Calendar 2012, Friends (Day 16) - Basket with Broom and Snow Balls",6,2012,Dark Pink,1 +Friends,"Advent Calendar 2012, Friends (Day 16) - Basket with Broom and Snow Balls",6,2012,Reddish Brown,1 +Friends,Stephanie,5,2012,Magenta,1 +Friends,Stephanie,5,2012,Light Flesh,2 +Friends,Stephanie,5,2012,Bright Light Yellow,1 +Friends,Stephanie,5,2012,Medium Azure,1 +Friends,"Advent Calendar 2012, Friends (Day 6) - Christina, Red Christmas Outfit",4,2012,Red,1 +Friends,"Advent Calendar 2012, Friends (Day 1) - Olivia, Long Sleeve Chrismas Top",4,2012,Reddish Brown,1 +Friends,"Advent Calendar 2012, Friends (Day 4) - Skis and Ski Poles",4,2012,Medium Azure,2 +Friends,"Advent Calendar 2012, Friends (Day 6) - Christina, Red Christmas Outfit",4,2012,Bright Light Yellow,1 +Friends,"Advent Calendar 2012, Friends (Day 1) - Olivia, Long Sleeve Chrismas Top",4,2012,Dark Blue,1 +Friends,"Advent Calendar 2012, Friends (Day 6) - Christina, Red Christmas Outfit",4,2012,Light Flesh,2 +Friends,"Advent Calendar 2012, Friends (Day 1) - Olivia, Long Sleeve Chrismas Top",4,2012,Light Flesh,2 +Friends,Best Friends Promotional Brick Set,2,2012,White,2 +Friends,"Advent Calendar 2012, Friends (Day 12) - Dog",1,2012,Medium Dark Flesh,1 +Friends,"Advent Calendar 2012, Friends (Day 19) - Handbag",1,2012,Light Aqua,1 +Friends,"Advent Calendar 2014, Friends (Day 23) - Christmas Tree",18,2014,Green,3 +Friends,"Advent Calendar 2014, Friends (Day 23) - Christmas Tree",18,2014,Reddish Brown,2 +Friends,"Advent Calendar 2014, Friends (Day 23) - Christmas Tree",18,2014,Trans-Dark Pink,2 +Friends,"Advent Calendar 2014, Friends (Day 23) - Christmas Tree",18,2014,White,1 +Friends,"Advent Calendar 2014, Friends (Day 24) - Present with Skates, Camera",17,2014,White,3 +Friends,"Advent Calendar 2014, Friends (Day 24) - Present with Skates, Camera",17,2014,Trans-Clear,1 +Friends,"Advent Calendar 2014, Friends (Day 24) - Present with Skates, Camera",17,2014,Lime,2 +Friends,"Advent Calendar 2014, Friends (Day 10) - Friends Kitchen Accessories",17,2014,Bright Light Orange,9 +Friends,"Advent Calendar 2014, Friends (Day 24) - Present with Skates, Camera",17,2014,Dark Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 17) - Holiday Fireplace",17,2014,Bright Light Orange,1 +Friends,"Advent Calendar 2014, Friends (Day 17) - Holiday Fireplace",17,2014,Bright Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 17) - Holiday Fireplace",17,2014,Dark Bluish Gray,3 +Friends,"Advent Calendar 2014, Friends (Day 17) - Holiday Fireplace",17,2014,Light Bluish Gray,2 +Friends,"Advent Calendar 2014, Friends (Day 17) - Holiday Fireplace",17,2014,Medium Dark Flesh,1 +Friends,"Advent Calendar 2014, Friends (Day 17) - Holiday Fireplace",17,2014,Trans-Orange,1 +Friends,"Advent Calendar 2014, Friends (Day 17) - Holiday Fireplace",17,2014,White,1 +Friends,"Advent Calendar 2014, Friends (Day 24) - Present with Skates, Camera",17,2014,Black,2 +Friends,"Advent Calendar 2014, Friends (Day 24) - Present with Skates, Camera",17,2014,Flat Silver,1 +Friends,"Advent Calendar 2014, Friends (Day 8) - Chairs",14,2014,Dark Orange,1 +Friends,"Advent Calendar 2014, Friends (Day 8) - Chairs",14,2014,Bright Pink,2 +Friends,"Advent Calendar 2014, Friends (Day 8) - Chairs",14,2014,Red,1 +Friends,"Advent Calendar 2014, Friends (Day 11) - Stove",13,2014,Dark Purple,1 +Friends,"Advent Calendar 2014, Friends (Day 11) - Stove",13,2014,Medium Azure,2 +Friends,"Advent Calendar 2014, Friends (Day 11) - Stove",13,2014,Trans-Clear,1 +Friends,"Advent Calendar 2014, Friends (Day 11) - Stove",13,2014,White,4 +Friends,"Advent Calendar 2014, Friends (Day 5) - Holiday Window Scene",13,2014,White,3 +Friends,"Advent Calendar 2014, Friends (Day 13) - Sideboard",13,2014,Black,1 +Friends,"Advent Calendar 2014, Friends (Day 13) - Sideboard",13,2014,Trans-Clear,2 +Friends,"Advent Calendar 2014, Friends (Day 5) - Holiday Window Scene",13,2014,Reddish Brown,3 +Friends,"Advent Calendar 2014, Friends (Day 5) - Holiday Window Scene",13,2014,Tan,1 +Friends,"Advent Calendar 2014, Friends (Day 13) - Sideboard",13,2014,Medium Azure,1 +Friends,"Advent Calendar 2014, Friends (Day 13) - Sideboard",13,2014,White,3 +Friends,"Advent Calendar 2014, Friends (Day 13) - Sideboard",13,2014,Dark Purple,1 +Friends,"Advent Calendar 2014, Friends (Day 13) - Sideboard",13,2014,Reddish Brown,1 +Friends,"Advent Calendar 2014, Friends (Day 11) - Stove",13,2014,Black,1 +Friends,"Advent Calendar 2014, Friends (Day 13) - Sideboard",13,2014,Yellow,1 +Friends,"Advent Calendar 2014, Friends (Day 5) - Holiday Window Scene",13,2014,Green,1 +Friends,"Advent Calendar 2014, Friends (Day 5) - Holiday Window Scene",13,2014,Medium Lavender,1 +Friends,"Advent Calendar 2014, Friends (Day 5) - Holiday Window Scene",13,2014,Pearl Gold,1 +Friends,"Advent Calendar 2014, Friends (Day 5) - Holiday Window Scene",13,2014,Red,1 +Friends,"Advent Calendar 2014, Friends (Day 15) - Sink",12,2014,Light Bluish Gray,1 +Friends,"Advent Calendar 2014, Friends (Day 15) - Sink",12,2014,Medium Azure,1 +Friends,"Advent Calendar 2014, Friends (Day 15) - Sink",12,2014,Trans-Yellow,1 +Friends,"Advent Calendar 2014, Friends (Day 14) - Goblets and Food",12,2014,Dark Orange,1 +Friends,"Advent Calendar 2014, Friends (Day 14) - Goblets and Food",12,2014,Orange,1 +Friends,"Advent Calendar 2014, Friends (Day 14) - Goblets and Food",12,2014,Tan,1 +Friends,"Advent Calendar 2014, Friends (Day 14) - Goblets and Food",12,2014,Trans-Clear,1 +Friends,"Advent Calendar 2014, Friends (Day 14) - Goblets and Food",12,2014,Trans-Dark Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 15) - Sink",12,2014,Dark Purple,1 +Friends,"Advent Calendar 2014, Friends (Day 15) - Sink",12,2014,White,2 +Friends,"Advent Calendar 2014, Friends (Day 14) - Goblets and Food",12,2014,Bright Green,1 +Friends,"Advent Calendar 2014, Friends (Day 2) - Sled",11,2014,Dark Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 2) - Sled",11,2014,Dark Purple,1 +Friends,"Advent Calendar 2014, Friends (Day 2) - Sled",11,2014,Light Bluish Gray,1 +Friends,"Advent Calendar 2014, Friends (Day 2) - Sled",11,2014,Tan,2 +Friends,"Advent Calendar 2014, Friends (Day 2) - Sled",11,2014,White,1 +Friends,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",11,2014,White,1 +Friends,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",11,2014,Magenta,1 +Friends,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",11,2014,Medium Azure,1 +Friends,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",11,2014,Medium Dark Flesh,1 +Friends,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",11,2014,Red,1 +Friends,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",11,2014,Tan,1 +Friends,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",11,2014,Trans-Yellow,1 +Friends,"Advent Calendar 2014, Friends (Day 7) - Table",11,2014,Bright Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 7) - Table",11,2014,Pearl Gold,1 +Friends,"Advent Calendar 2014, Friends (Day 7) - Table",11,2014,Red,2 +Friends,"Advent Calendar 2014, Friends (Day 7) - Table",11,2014,Reddish Brown,1 +Friends,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",11,2014,Green,1 +Friends,"Advent Calendar 2014, Friends (Day 2) - Sled",11,2014,Bright Pink,2 +Friends,"Advent Calendar 2014, Friends (Day 19) - Sofa",10,2014,Medium Lavender,4 +Friends,"Advent Calendar 2014, Friends (Day 19) - Sofa",10,2014,Reddish Brown,1 +Friends,"Advent Calendar 2014, Friends (Day 19) - Sofa",10,2014,Yellow,1 +Friends,"Advent Calendar 2014, Friends (Day 19) - Sofa",10,2014,Bright Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 22) - Large Present",8,2014,Dark Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 22) - Large Present",8,2014,Bright Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 22) - Large Present",8,2014,Red,1 +Friends,"Advent Calendar 2014, Friends (Day 21) - Radio and Cell Phone",8,2014,White,2 +Friends,"Advent Calendar 2014, Friends (Day 21) - Radio and Cell Phone",8,2014,Black,2 +Friends,"Advent Calendar 2014, Friends (Day 21) - Radio and Cell Phone",8,2014,Medium Lavender,1 +Friends,"Advent Calendar 2014, Friends (Day 22) - Large Present",8,2014,Medium Azure,1 +Friends,"Advent Calendar 2014, Friends (Day 21) - Radio and Cell Phone",8,2014,Medium Azure,1 +Friends,"Advent Calendar 2014, Friends (Day 12) - Sweets and Saucepan",7,2014,Black,1 +Friends,"Advent Calendar 2014, Friends (Day 12) - Sweets and Saucepan",7,2014,Bright Green,1 +Friends,"Advent Calendar 2014, Friends (Day 12) - Sweets and Saucepan",7,2014,Red,2 +Friends,"Advent Calendar 2014, Friends (Day 16) - Cake and Cups",6,2014,White,1 +Friends,"Advent Calendar 2014, Friends (Day 16) - Cake and Cups",6,2014,Trans-Dark Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 16) - Cake and Cups",6,2014,Dark Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 16) - Cake and Cups",6,2014,Dark Orange,1 +Friends,"Advent Calendar 2014, Friends (Day 16) - Cake and Cups",6,2014,Dark Brown,1 +Friends,"Advent Calendar 2014, Friends (Day 9) - Holiday Candle",6,2014,Dark Pink,1 +Friends,"Advent Calendar 2014, Friends (Day 9) - Holiday Candle",6,2014,Green,1 +Friends,"Advent Calendar 2014, Friends (Day 9) - Holiday Candle",6,2014,Red,1 +Friends,"Advent Calendar 2014, Friends (Day 9) - Holiday Candle",6,2014,Trans-Orange,1 +Friends,"Advent Calendar 2014, Friends (Day 9) - Holiday Candle",6,2014,White,1 +Friends,"Advent Calendar 2014, Friends (Day 3) - Gift and Basket",4,2014,White,1 +Friends,"Advent Calendar 2014, Friends (Day 4) - Deer and Tree",4,2014,Green,1 +Friends,"Advent Calendar 2014, Friends (Day 4) - Deer and Tree",4,2014,Medium Dark Flesh,1 +Friends,"Advent Calendar 2014, Friends (Day 4) - Deer and Tree",4,2014,Reddish Brown,1 +Friends,"Advent Calendar 2014, Friends (Day 4) - Deer and Tree",4,2014,White,1 +Friends,"Advent Calendar 2014, Friends (Day 6) - Ewa, Christmas Outfit",4,2014,Red,1 +Friends,"Advent Calendar 2014, Friends (Day 6) - Ewa, Christmas Outfit",4,2014,Bright Light Yellow,1 +Friends,"Advent Calendar 2014, Friends (Day 6) - Ewa, Christmas Outfit",4,2014,Light Flesh,2 +Friends,"Advent Calendar 2014, Friends (Day 1) - Mia",4,2014,Light Flesh,2 +Friends,"Advent Calendar 2014, Friends (Day 1) - Mia",4,2014,Dark Red,1 +Friends,"Advent Calendar 2014, Friends (Day 1) - Mia",4,2014,Dark Blue,1 +Friends,"Advent Calendar 2014, Friends (Day 3) - Gift and Basket",4,2014,Bright Light Orange,1 +Friends,"Advent Calendar 2014, Friends (Day 3) - Gift and Basket",4,2014,Lime,1 +Friends,"Advent Calendar 2014, Friends (Day 3) - Gift and Basket",4,2014,Medium Lavender,1 +Friends,"Advent Calendar 2014, Friends (Day 20) - White Cat",3,2014,White,1 +Friends,"Advent Calendar 2014, Friends (Day 20) - White Cat",3,2014,Medium Azure,1 +Friends,"Advent Calendar 2014, Friends (Day 20) - White Cat",3,2014,Lime,1 +Friends,Advent Calendar 2016 Friends,218,2016,Black,11 +Friends,Advent Calendar 2016 Friends,218,2016,Bright Green,2 +Friends,Advent Calendar 2016 Friends,218,2016,Bright Light Blue,1 +Friends,Advent Calendar 2016 Friends,218,2016,Bright Light Orange,4 +Friends,Advent Calendar 2016 Friends,218,2016,Bright Pink,4 +Friends,Advent Calendar 2016 Friends,218,2016,Dark Bluish Gray,1 +Friends,Advent Calendar 2016 Friends,218,2016,Dark Brown,1 +Friends,Advent Calendar 2016 Friends,218,2016,Dark Orange,1 +Friends,Advent Calendar 2016 Friends,218,2016,Dark Pink,1 +Friends,Advent Calendar 2016 Friends,218,2016,Dark Purple,6 +Friends,Advent Calendar 2016 Friends,218,2016,Dark Red,1 +Friends,Advent Calendar 2016 Friends,218,2016,Flat Silver,3 +Friends,Advent Calendar 2016 Friends,218,2016,Green,6 +Friends,Advent Calendar 2016 Friends,218,2016,Light Bluish Gray,6 +Friends,Advent Calendar 2016 Friends,218,2016,Light Flesh,4 +Friends,Advent Calendar 2016 Friends,218,2016,Magenta,6 +Friends,Advent Calendar 2016 Friends,218,2016,Medium Azure,8 +Friends,Advent Calendar 2016 Friends,218,2016,Medium Blue,1 +Friends,Advent Calendar 2016 Friends,218,2016,Medium Lavender,3 +Friends,Advent Calendar 2016 Friends,218,2016,Orange,1 +Friends,Advent Calendar 2016 Friends,218,2016,Pearl Gold,4 +Friends,Advent Calendar 2016 Friends,218,2016,Red,5 +Friends,Advent Calendar 2016 Friends,218,2016,Reddish Brown,5 +Friends,Advent Calendar 2016 Friends,218,2016,Tan,5 +Friends,Advent Calendar 2016 Friends,218,2016,Trans-Black,1 +Friends,Advent Calendar 2016 Friends,218,2016,Trans-Clear,2 +Friends,Advent Calendar 2016 Friends,218,2016,Trans-Dark Pink,2 +Friends,Advent Calendar 2016 Friends,218,2016,Trans-Light Blue,1 +Friends,Advent Calendar 2016 Friends,218,2016,Trans-Neon Orange,2 +Friends,Advent Calendar 2016 Friends,218,2016,Trans-Yellow,3 +Friends,Advent Calendar 2016 Friends,218,2016,White,32 +Friends,Stephanie's House,623,2017,Blue,1 +Friends,Stephanie's House,623,2017,Black,12 +Friends,Stephanie's House,623,2017,Medium Azure,18 +Friends,Stephanie's House,623,2017,Medium Blue,1 +Friends,Stephanie's House,623,2017,Medium Lavender,2 +Friends,Stephanie's House,623,2017,Orange,2 +Friends,Stephanie's House,623,2017,Pearl Gold,2 +Friends,Stephanie's House,623,2017,Bright Light Yellow,2 +Friends,Stephanie's House,623,2017,Red,5 +Friends,Stephanie's House,623,2017,Reddish Brown,2 +Friends,Stephanie's House,623,2017,Tan,26 +Friends,Stephanie's House,623,2017,Trans-Clear,8 +Friends,Stephanie's House,623,2017,Trans-Dark Pink,1 +Friends,Stephanie's House,623,2017,Trans-Green,1 +Friends,Stephanie's House,623,2017,Trans-Light Blue,4 +Friends,Stephanie's House,623,2017,Trans-Red,1 +Friends,Stephanie's House,623,2017,Trans-Yellow,2 +Friends,Stephanie's House,623,2017,White,59 +Friends,Stephanie's House,623,2017,Yellow,1 +Friends,Stephanie's House,623,2017,Light Bluish Gray,24 +Friends,Stephanie's House,623,2017,Bright Green,3 +Friends,Stephanie's House,623,2017,Bright Light Orange,5 +Friends,Stephanie's House,623,2017,Bright Pink,4 +Friends,Stephanie's House,623,2017,Dark Blue,1 +Friends,Stephanie's House,623,2017,Dark Bluish Gray,2 +Friends,Stephanie's House,623,2017,Dark Pink,5 +Friends,Stephanie's House,623,2017,Dark Purple,1 +Friends,Stephanie's House,623,2017,Green,4 +Friends,Stephanie's House,623,2017,Lavender,5 +Friends,Stephanie's House,623,2017,Light Aqua,6 +Friends,Stephanie's House,623,2017,Light Flesh,6 +Friends,Stephanie's House,623,2017,Lime,10 +Friends,Stephanie's House,623,2017,Magenta,19 +Friends,Heartlake Summer Pool,588,2017,Dark Pink,13 +Friends,Heartlake Summer Pool,588,2017,Dark Green,1 +Friends,Heartlake Summer Pool,588,2017,Dark Brown,1 +Friends,Heartlake Summer Pool,588,2017,Dark Bluish Gray,7 +Friends,Heartlake Summer Pool,588,2017,Black,4 +Friends,Heartlake Summer Pool,588,2017,Lavender,1 +Friends,Heartlake Summer Pool,588,2017,Green,4 +Friends,Heartlake Summer Pool,588,2017,Orange,12 +Friends,Heartlake Summer Pool,588,2017,Flat Silver,1 +Friends,Heartlake Summer Pool,588,2017,Dark Purple,12 +Friends,Heartlake Summer Pool,588,2017,Bright Pink,2 +Friends,Heartlake Summer Pool,588,2017,Blue,1 +Friends,Heartlake Summer Pool,588,2017,Bright Green,2 +Friends,Heartlake Summer Pool,588,2017,Trans-Dark Pink,1 +Friends,Heartlake Summer Pool,588,2017,Bright Light Orange,14 +Friends,Heartlake Summer Pool,588,2017,Yellowish Green,1 +Friends,Heartlake Summer Pool,588,2017,Yellow,1 +Friends,Heartlake Summer Pool,588,2017,White,50 +Friends,Heartlake Summer Pool,588,2017,Trans-Light Blue,6 +Friends,Heartlake Summer Pool,588,2017,Trans-Clear,8 +Friends,Heartlake Summer Pool,588,2017,Tan,19 +Friends,Heartlake Summer Pool,588,2017,Reddish Brown,2 +Friends,Heartlake Summer Pool,588,2017,Red,6 +Friends,Heartlake Summer Pool,588,2017,Medium Dark Flesh,5 +Friends,Heartlake Summer Pool,588,2017,Medium Azure,21 +Friends,Heartlake Summer Pool,588,2017,Magenta,1 +Friends,Heartlake Summer Pool,588,2017,Lime,20 +Friends,Heartlake Summer Pool,588,2017,Light Flesh,2 +Friends,Heartlake Summer Pool,588,2017,Light Bluish Gray,17 +Friends,Heartlake Sports Center,327,2017,Magenta,3 +Friends,Heartlake Sports Center,327,2017,Trans-Light Blue,1 +Friends,Heartlake Sports Center,327,2017,Trans-Purple,1 +Friends,Heartlake Sports Center,327,2017,Trans-Yellow,1 +Friends,Heartlake Sports Center,327,2017,White,31 +Friends,Heartlake Sports Center,327,2017,Yellow,3 +Friends,Heartlake Sports Center,327,2017,Light Flesh,2 +Friends,Heartlake Sports Center,327,2017,Light Bluish Gray,26 +Friends,Heartlake Sports Center,327,2017,Dark Azure,1 +Friends,Heartlake Sports Center,327,2017,Bright Light Orange,8 +Friends,Heartlake Sports Center,327,2017,Bright Green,1 +Friends,Heartlake Sports Center,327,2017,Blue,2 +Friends,Heartlake Sports Center,327,2017,Black,6 +Friends,Heartlake Sports Center,327,2017,Lime,1 +Friends,Heartlake Sports Center,327,2017,Medium Azure,10 +Friends,Heartlake Sports Center,327,2017,Medium Dark Flesh,3 +Friends,Heartlake Sports Center,327,2017,Orange,6 +Friends,Heartlake Sports Center,327,2017,Tan,5 +Friends,Heartlake Sports Center,327,2017,Pearl Gold,2 +Friends,Heartlake Sports Center,327,2017,Red,7 +Friends,Heartlake Sports Center,327,2017,Sand Blue,1 +Friends,Heartlake Sports Center,327,2017,Trans-Clear,10 +Friends,Heartlake Sports Center,327,2017,Trans-Dark Blue,1 +Friends,Heartlake Sports Center,327,2017,Dark Brown,1 +Friends,Heartlake Sports Center,327,2017,Dark Pink,5 +Friends,Heartlake Sports Center,327,2017,Dark Purple,17 +Friends,Heartlake Sports Center,327,2017,Dark Red,1 +Friends,Heartlake Sports Center,327,2017,Flat Silver,2 +Friends,Heartlake Sports Center,327,2017,Green,4 +Friends,Heartlake Sports Center,327,2017,Dark Bluish Gray,8 +Friends,Heartlake Pizzeria,287,2017,Tan,24 +Friends,Heartlake Pizzeria,287,2017,Trans-Clear,5 +Friends,Heartlake Pizzeria,287,2017,Trans-Green,1 +Friends,Heartlake Pizzeria,287,2017,Trans-Light Blue,1 +Friends,Heartlake Pizzeria,287,2017,Trans-Red,1 +Friends,Heartlake Pizzeria,287,2017,White,25 +Friends,Heartlake Pizzeria,287,2017,Yellow,1 +Friends,Heartlake Pizzeria,287,2017,Magenta,5 +Friends,Heartlake Pizzeria,287,2017,[No Color],1 +Friends,Heartlake Pizzeria,287,2017,Black,8 +Friends,Heartlake Pizzeria,287,2017,Bright Green,2 +Friends,Heartlake Pizzeria,287,2017,Bright Light Orange,4 +Friends,Heartlake Pizzeria,287,2017,Dark Bluish Gray,1 +Friends,Heartlake Pizzeria,287,2017,Dark Red,1 +Friends,Heartlake Pizzeria,287,2017,Lavender,2 +Friends,Heartlake Pizzeria,287,2017,Light Bluish Gray,18 +Friends,Heartlake Pizzeria,287,2017,Light Flesh,4 +Friends,Heartlake Pizzeria,287,2017,Medium Azure,1 +Friends,Heartlake Pizzeria,287,2017,Medium Dark Flesh,2 +Friends,Heartlake Pizzeria,287,2017,Medium Lavender,1 +Friends,Heartlake Pizzeria,287,2017,Red,9 +Friends,Heartlake Pizzeria,287,2017,Reddish Brown,6 +Friends,Heartlake Pizzeria,287,2017,Green,6 +Friends,Hedgehog Storage,232,2017,Tan,16 +Friends,Hedgehog Storage,232,2017,Light Bluish Gray,3 +Friends,Hedgehog Storage,232,2017,Black,1 +Friends,Hedgehog Storage,232,2017,Dark Bluish Gray,1 +Friends,Hedgehog Storage,232,2017,Dark Pink,1 +Friends,Hedgehog Storage,232,2017,Medium Azure,3 +Friends,Hedgehog Storage,232,2017,Medium Lavender,1 +Friends,Hedgehog Storage,232,2017,Reddish Brown,21 +Friends,Hedgehog Storage,232,2017,White,1 +Friends,Heartlake Gift Delivery,185,2017,[No Color],1 +Friends,Puppy Championship,185,2017,Trans-Clear,1 +Friends,Puppy Championship,185,2017,Trans-Light Blue,1 +Friends,Puppy Championship,185,2017,Trans-Yellow,1 +Friends,Puppy Championship,185,2017,White,26 +Friends,Puppy Championship,185,2017,Yellow,6 +Friends,Heartlake Gift Delivery,185,2017,Black,5 +Friends,Heartlake Gift Delivery,185,2017,Bright Light Orange,13 +Friends,Heartlake Gift Delivery,185,2017,Bright Light Yellow,1 +Friends,Heartlake Gift Delivery,185,2017,Bright Pink,2 +Friends,Heartlake Gift Delivery,185,2017,Dark Bluish Gray,2 +Friends,Heartlake Gift Delivery,185,2017,Dark Pink,1 +Friends,Heartlake Gift Delivery,185,2017,Flat Silver,1 +Friends,Heartlake Gift Delivery,185,2017,Green,3 +Friends,Heartlake Gift Delivery,185,2017,Light Aqua,1 +Friends,Heartlake Gift Delivery,185,2017,Light Bluish Gray,14 +Friends,Heartlake Gift Delivery,185,2017,Light Flesh,2 +Friends,Puppy Championship,185,2017,Medium Azure,6 +Friends,Heartlake Gift Delivery,185,2017,Medium Azure,11 +Friends,Heartlake Gift Delivery,185,2017,Medium Dark Flesh,1 +Friends,Heartlake Gift Delivery,185,2017,Medium Lavender,9 +Friends,Heartlake Gift Delivery,185,2017,Red,10 +Friends,Heartlake Gift Delivery,185,2017,Sand Blue,1 +Friends,Heartlake Gift Delivery,185,2017,Tan,5 +Friends,Heartlake Gift Delivery,185,2017,Trans-Clear,7 +Friends,Heartlake Gift Delivery,185,2017,Trans-Dark Pink,1 +Friends,Heartlake Gift Delivery,185,2017,Trans-Light Blue,1 +Friends,Heartlake Gift Delivery,185,2017,Trans-Red,1 +Friends,Heartlake Gift Delivery,185,2017,Trans-Yellow,1 +Friends,Heartlake Gift Delivery,185,2017,White,25 +Friends,Puppy Championship,185,2017,Dark Red,1 +Friends,Puppy Championship,185,2017,Green,1 +Friends,Puppy Championship,185,2017,Lavender,1 +Friends,Puppy Championship,185,2017,Light Bluish Gray,4 +Friends,Puppy Championship,185,2017,Light Flesh,2 +Friends,Puppy Championship,185,2017,Lime,4 +Friends,Puppy Championship,185,2017,Reddish Brown,1 +Friends,Heartlake Gift Delivery,185,2017,Lime,4 +Friends,Puppy Championship,185,2017,Medium Dark Flesh,1 +Friends,Puppy Championship,185,2017,[No Color],1 +Friends,Puppy Championship,185,2017,Tan,1 +Friends,Puppy Championship,185,2017,Black,15 +Friends,Puppy Championship,185,2017,Dark Pink,9 +Friends,Puppy Championship,185,2017,Dark Purple,8 +Friends,Puppy Parade,145,2017,Trans-Clear,2 +Friends,Puppy Parade,145,2017,Trans-Dark Pink,1 +Friends,Puppy Parade,145,2017,Trans-Red,1 +Friends,Puppy Parade,145,2017,White,19 +Friends,Puppy Parade,145,2017,Yellow,5 +Friends,Puppy Parade,145,2017,Dark Brown,1 +Friends,Puppy Parade,145,2017,Black,19 +Friends,Puppy Parade,145,2017,Dark Bluish Gray,1 +Friends,Puppy Parade,145,2017,Dark Pink,6 +Friends,Puppy Parade,145,2017,Dark Purple,5 +Friends,Puppy Parade,145,2017,Light Bluish Gray,1 +Friends,Puppy Parade,145,2017,Lime,2 +Friends,Puppy Parade,145,2017,Medium Azure,6 +Friends,Puppy Parade,145,2017,Medium Dark Flesh,3 +Friends,Puppy Parade,145,2017,Pearl Gold,2 +Friends,Puppy Parade,145,2017,Red,2 +Friends,Puppy Parade,145,2017,Tan,2 +Friends,Puppy Parade,145,2017,Trans-Black,1 +Friends,Olivia's Creative Lab,99,2017,[No Color],1 +Friends,Olivia's Creative Lab,99,2017,Reddish Brown,1 +Friends,Olivia's Creative Lab,99,2017,Trans-Bright Green,1 +Friends,Olivia's Creative Lab,99,2017,Trans-Dark Pink,2 +Friends,Olivia's Creative Lab,99,2017,Trans-Light Blue,2 +Friends,Olivia's Creative Lab,99,2017,Trans-Yellow,1 +Friends,Olivia's Creative Lab,99,2017,White,9 +Friends,Olivia's Creative Lab,99,2017,Tan,4 +Friends,Olivia's Creative Lab,99,2017,Black,8 +Friends,Olivia's Creative Lab,99,2017,Dark Azure,11 +Friends,Olivia's Creative Lab,99,2017,Dark Bluish Gray,3 +Friends,Olivia's Creative Lab,99,2017,Dark Pink,5 +Friends,Olivia's Creative Lab,99,2017,Light Aqua,1 +Friends,Olivia's Creative Lab,99,2017,Light Bluish Gray,4 +Friends,Olivia's Creative Lab,99,2017,Light Flesh,2 +Friends,Olivia's Creative Lab,99,2017,Lime,1 +Friends,Olivia's Creative Lab,99,2017,Medium Lavender,4 +Friends,Emma's Photo Studio,95,2017,Bright Light Orange,2 +Friends,Emma's Photo Studio,95,2017,Dark Blue,6 +Friends,Emma's Photo Studio,95,2017,Light Flesh,2 +Friends,Emma's Photo Studio,95,2017,Yellowish Green,2 +Friends,Emma's Photo Studio,95,2017,White,10 +Friends,Emma's Photo Studio,95,2017,Dark Purple,3 +Friends,Emma's Photo Studio,95,2017,Trans-Dark Pink,1 +Friends,Emma's Photo Studio,95,2017,Trans-Clear,2 +Friends,Emma's Photo Studio,95,2017,Trans-Black,1 +Friends,Emma's Photo Studio,95,2017,Sand Blue,1 +Friends,Emma's Photo Studio,95,2017,Reddish Brown,1 +Friends,Emma's Photo Studio,95,2017,Pearl Gold,1 +Friends,Emma's Photo Studio,95,2017,Light Bluish Gray,3 +Friends,Emma's Photo Studio,95,2017,Lavender,5 +Friends,Emma's Photo Studio,95,2017,Green,1 +Friends,Emma's Photo Studio,95,2017,Bright Pink,1 +Friends,Emma's Photo Studio,95,2017,Medium Azure,1 +Friends,Emma's Photo Studio,95,2017,Black,10 +Friends,Emma's Photo Studio,95,2017,Magenta,3 +Friends,Emma's Photo Studio,95,2017,Medium Dark Flesh,1 +Friends,Stephanie's Friendship Cakes,94,2017,Medium Blue,2 +Friends,Stephanie's Friendship Cakes,94,2017,Medium Lavender,6 +Friends,Stephanie's Friendship Cakes,94,2017,Pearl Gold,2 +Friends,Stephanie's Friendship Cakes,94,2017,Reddish Brown,2 +Friends,Stephanie's Friendship Cakes,94,2017,Magenta,7 +Friends,Stephanie's Friendship Cakes,94,2017,Medium Azure,6 +Friends,Stephanie's Friendship Cakes,94,2017,Tan,3 +Friends,Stephanie's Friendship Cakes,94,2017,Trans-Clear,4 +Friends,Stephanie's Friendship Cakes,94,2017,Trans-Dark Pink,1 +Friends,Stephanie's Friendship Cakes,94,2017,Bright Light Orange,1 +Friends,Stephanie's Friendship Cakes,94,2017,White,19 +Friends,Stephanie's Friendship Cakes,94,2017,Trans-Light Blue,3 +Friends,Stephanie's Friendship Cakes,94,2017,Black,2 +Friends,Stephanie's Friendship Cakes,94,2017,Bright Light Yellow,1 +Friends,Stephanie's Friendship Cakes,94,2017,Bright Pink,4 +Friends,Stephanie's Friendship Cakes,94,2017,Dark Blue,1 +Friends,Stephanie's Friendship Cakes,94,2017,Dark Pink,1 +Friends,Stephanie's Friendship Cakes,94,2017,Lavender,1 +Friends,Stephanie's Friendship Cakes,94,2017,Light Aqua,1 +Friends,Stephanie's Friendship Cakes,94,2017,Light Bluish Gray,6 +Friends,Stephanie's Friendship Cakes,94,2017,Light Flesh,2 +Friends,Stephanie's Friendship Cakes,94,2017,Lime,1 +Friends,Andrea's Musical Duet,86,2017,Trans-Neon Green,1 +Friends,Andrea's Musical Duet,86,2017,Light Aqua,3 +Friends,Andrea's Musical Duet,86,2017,Dark Brown,1 +Friends,Andrea's Musical Duet,86,2017,Dark Azure,2 +Friends,Andrea's Musical Duet,86,2017,Bright Light Orange,7 +Friends,Andrea's Musical Duet,86,2017,Black,11 +Friends,Andrea's Musical Duet,86,2017,White,5 +Friends,Andrea's Musical Duet,86,2017,Trans-Light Blue,1 +Friends,Andrea's Musical Duet,86,2017,Trans-Dark Pink,1 +Friends,Andrea's Musical Duet,86,2017,Medium Lavender,2 +Friends,Andrea's Musical Duet,86,2017,Medium Dark Flesh,3 +Friends,Andrea's Musical Duet,86,2017,Magenta,6 +Friends,Andrea's Musical Duet,86,2017,Lime,3 +Friends,Andrea's Musical Duet,86,2017,Light Bluish Gray,4 +Friends,Mia's Beach Scooter,79,2017,Dark Bluish Gray,1 +Friends,Mia's Beach Scooter,79,2017,Trans-Purple,1 +Friends,Mia's Beach Scooter,79,2017,Trans-Light Blue,2 +Friends,Mia's Beach Scooter,79,2017,Trans-Clear,2 +Friends,Mia's Beach Scooter,79,2017,Tan,3 +Friends,Mia's Beach Scooter,79,2017,Orange,2 +Friends,Mia's Beach Scooter,79,2017,Medium Lavender,2 +Friends,Mia's Beach Scooter,79,2017,Medium Dark Flesh,1 +Friends,Mia's Beach Scooter,79,2017,Medium Azure,3 +Friends,Mia's Beach Scooter,79,2017,Magenta,2 +Friends,Mia's Beach Scooter,79,2017,Lime,6 +Friends,Mia's Beach Scooter,79,2017,Light Flesh,2 +Friends,Mia's Beach Scooter,79,2017,Lavender,1 +Friends,Mia's Beach Scooter,79,2017,Green,1 +Friends,Mia's Beach Scooter,79,2017,Trans-Yellow,1 +Friends,Mia's Beach Scooter,79,2017,Dark Red,1 +Friends,Mia's Beach Scooter,79,2017,Light Bluish Gray,8 +Friends,Mia's Beach Scooter,79,2017,White,13 +Friends,Mia's Beach Scooter,79,2017,Black,4 +Friends,Friends Tic-Tac-Toe,58,2017,Dark Purple,1 +Friends,Friends Tic-Tac-Toe,58,2017,White,4 +Friends,Friends Tic-Tac-Toe,58,2017,Medium Azure,2 +Friends,Friends Tic-Tac-Toe,58,2017,Magenta,1 +Friends,Friends Tic-Tac-Toe,58,2017,Lime,1 +Friends,Friends Tic-Tac-Toe,58,2017,Light Bluish Gray,1 +Friends,Emma's Pool Slide,45,2017,Light Bluish Gray,2 +Friends,Emma's Pool Slide,45,2017,White,4 +Friends,Emma's Pool Slide,45,2017,Trans-Purple,1 +Friends,Emma's Pool Slide,45,2017,Trans-Clear,2 +Friends,Emma's Pool Slide,45,2017,Red,1 +Friends,Emma's Pool Slide,45,2017,Medium Azure,2 +Friends,Emma's Pool Slide,45,2017,Lime,5 +Friends,Emma's Pool Slide,45,2017,Light Flesh,2 +Friends,Emma's Pool Slide,45,2017,Dark Purple,3 +Friends,Emma's Pool Slide,45,2017,Dark Pink,3 +Friends,Emma's Pool Slide,45,2017,Dark Bluish Gray,1 +Friends,Emma's Pool Slide,45,2017,Bright Light Orange,3 +Friends,Emma's Pool Slide,45,2017,Black,1 +Friends,Wishing Well,33,2017,Bright Green,1 +Friends,Wishing Well,33,2017,Green,4 +Friends,Wishing Well,33,2017,Dark Purple,1 +Friends,Wishing Well,33,2017,White,1 +Friends,Wishing Well,33,2017,Tan,1 +Friends,Wishing Well,33,2017,Lime,1 +Friends,Wishing Well,33,2017,Dark Pink,1 +Friends,Wishing Well,33,2017,Bright Pink,3 +Friends,Wishing Well,33,2017,Dark Azure,1 +Friends,Gymnastic Bar,26,2017,Orange,1 +Friends,Gymnastic Bar,26,2017,Trans-Clear,1 +Friends,Gymnastic Bar,26,2017,White,3 +Friends,Gymnastic Bar,26,2017,Tan,1 +Friends,Gymnastic Bar,26,2017,Medium Azure,3 +Friends,Gymnastic Bar,26,2017,Black,1 +Friends,Gymnastic Bar,26,2017,Blue,1 +Friends,Gymnastic Bar,26,2017,Bright Light Orange,2 +Friends,Gymnastic Bar,26,2017,Dark Brown,1 +Friends,Gymnastic Bar,26,2017,Dark Purple,3 +Friends,Gymnastic Bar,26,2017,Light Bluish Gray,2 +Friends,Gymnastic Bar,26,2017,Light Flesh,2 +Friends,Bear in Ice Cave foil pack,24,2017,Trans-Light Blue,1 +Friends,Bear in Ice Cave foil pack,24,2017,Medium Azure,1 +Friends,Bear in Ice Cave foil pack,24,2017,Magenta,1 +Friends,Bear in Ice Cave foil pack,24,2017,Light Bluish Gray,3 +Friends,Bear in Ice Cave foil pack,24,2017,Green,2 +Friends,Bear in Ice Cave foil pack,24,2017,Flat Silver,1 +Friends,Bear in Ice Cave foil pack,24,2017,Dark Brown,1 +Friends,Bear in Ice Cave foil pack,24,2017,Dark Bluish Gray,3 +Friends,Bear in Ice Cave foil pack,24,2017,White,2 +Friends,Bear in Ice Cave foil pack,24,2017,Lavender,1 +Friends,Bear in Ice Cave foil pack,24,2017,Light Aqua,2 +Fright Knights,Night Lord's Castle,607,1997,Red,28 +Fright Knights,Night Lord's Castle,607,1997,Trans-Dark Blue,1 +Fright Knights,Night Lord's Castle,607,1997,Black,57 +Fright Knights,Night Lord's Castle,607,1997,Blue,2 +Fright Knights,Night Lord's Castle,607,1997,Brown,14 +Fright Knights,Night Lord's Castle,607,1997,Chrome Silver,1 +Fright Knights,Night Lord's Castle,607,1997,Dark Gray,13 +Fright Knights,Night Lord's Castle,607,1997,Green,3 +Fright Knights,Night Lord's Castle,607,1997,Light Gray,38 +Fright Knights,Night Lord's Castle,607,1997,Trans-Clear,3 +Fright Knights,Night Lord's Castle,607,1997,Trans-Green,2 +Fright Knights,Night Lord's Castle,607,1997,Trans-Neon Orange,2 +Fright Knights,Night Lord's Castle,607,1997,Trans-Red,4 +Fright Knights,Night Lord's Castle,607,1997,Trans-Yellow,1 +Fright Knights,Night Lord's Castle,607,1997,White,5 +Fright Knights,Night Lord's Castle,607,1997,Yellow,20 +Fright Knights,Witch's Magic Manor,254,1997,Light Gray,28 +Fright Knights,Witch's Magic Manor,254,1997,Green,7 +Fright Knights,Witch's Magic Manor,254,1997,Dark Gray,8 +Fright Knights,Witch's Magic Manor,254,1997,Chrome Silver,1 +Fright Knights,Witch's Magic Manor,254,1997,Black,29 +Fright Knights,Witch's Magic Manor,254,1997,Brown,7 +Fright Knights,Witch's Magic Manor,254,1997,Trans-Neon Orange,2 +Fright Knights,Witch's Magic Manor,254,1997,Trans-Green,1 +Fright Knights,Witch's Magic Manor,254,1997,Trans-Dark Blue,1 +Fright Knights,Witch's Magic Manor,254,1997,Trans-Clear,3 +Fright Knights,Witch's Magic Manor,254,1997,Red,15 +Fright Knights,Witch's Magic Manor,254,1997,Trans-Red,2 +Fright Knights,Witch's Magic Manor,254,1997,White,8 +Fright Knights,Witch's Magic Manor,254,1997,Yellow,14 +Fright Knights,Traitor Transport (with Cave),145,1997,Black,26 +Fright Knights,Traitor Transport,145,1997,Trans-Neon Orange,2 +Fright Knights,Traitor Transport,145,1997,Yellow,11 +Fright Knights,Traitor Transport,145,1997,Trans-Yellow,1 +Fright Knights,Traitor Transport,145,1997,White,1 +Fright Knights,Traitor Transport,145,1997,Dark Gray,3 +Fright Knights,Traitor Transport,145,1997,Light Gray,19 +Fright Knights,Traitor Transport,145,1997,Red,12 +Fright Knights,Traitor Transport,145,1997,Trans-Red,1 +Fright Knights,Traitor Transport (with Cave),145,1997,Yellow,11 +Fright Knights,Traitor Transport (with Cave),145,1997,White,3 +Fright Knights,Traitor Transport (with Cave),145,1997,Trans-Yellow,1 +Fright Knights,Traitor Transport (with Cave),145,1997,Trans-Red,1 +Fright Knights,Traitor Transport (with Cave),145,1997,Trans-Neon Orange,2 +Fright Knights,Traitor Transport (with Cave),145,1997,Red,12 +Fright Knights,Traitor Transport (with Cave),145,1997,Light Gray,20 +Fright Knights,Traitor Transport (with Cave),145,1997,Dark Gray,3 +Fright Knights,Traitor Transport,145,1997,Black,27 +Fright Knights,Traitor Transport,145,1997,Blue,1 +Fright Knights,Traitor Transport,145,1997,Brown,1 +Fright Knights,Traitor Transport,145,1997,Chrome Silver,1 +Fright Knights,Traitor Transport (with Cave),145,1997,Chrome Silver,1 +Fright Knights,Traitor Transport (with Cave),145,1997,Brown,1 +Fright Knights,Traitor Transport (with Cave),145,1997,Blue,1 +Fright Knights,Witch's Windship,60,1997,Black,7 +Fright Knights,Witch's Windship,60,1997,Brown,2 +Fright Knights,Witch's Windship,60,1997,Dark Gray,2 +Fright Knights,Witch's Windship,60,1997,Green,5 +Fright Knights,Witch's Windship,60,1997,Light Gray,4 +Fright Knights,Witch's Windship,60,1997,Red,7 +Fright Knights,Witch's Windship,60,1997,Trans-Clear,1 +Fright Knights,Witch's Windship,60,1997,Trans-Neon Orange,1 +Fright Knights,Witch's Windship,60,1997,Trans-Red,2 +Fright Knights,Witch's Windship,60,1997,Yellow,2 +Fright Knights,Bat Lord's Catapult,54,1997,Trans-Neon Orange,2 +Fright Knights,Bat Lord's Catapult,54,1997,Yellow,6 +Fright Knights,Bat Lord's Catapult,54,1997,Black,14 +Fright Knights,Bat Lord's Catapult,54,1997,Brown,4 +Fright Knights,Bat Lord's Catapult,54,1997,Chrome Silver,1 +Fright Knights,Bat Lord's Catapult,54,1997,Dark Gray,4 +Fright Knights,Bat Lord's Catapult,54,1997,Light Gray,4 +Fright Knights,Bat Lord's Catapult,54,1997,Red,9 +Fright Knights,Crossbow Cart,21,1997,Yellow,3 +Fright Knights,Crossbow Cart,21,1997,Light Gray,2 +Fright Knights,Crossbow Cart,21,1997,Dark Gray,2 +Fright Knights,Crossbow Cart,21,1997,Brown,3 +Fright Knights,Crossbow Cart,21,1997,Black,3 +Fright Knights,Crossbow Cart,21,1997,Red,2 +Fright Knights,Witch and Fireplace,19,1997,Brown,1 +Fright Knights,Witch and Fireplace,19,1997,Light Gray,1 +Fright Knights,Witch and Fireplace,19,1997,Red,1 +Fright Knights,Witch and Fireplace,19,1997,Trans-Clear,1 +Fright Knights,Witch and Fireplace,19,1997,Trans-Green,1 +Fright Knights,Witch and Fireplace,19,1997,Trans-Neon Orange,1 +Fright Knights,Witch and Fireplace,19,1997,Trans-Red,1 +Fright Knights,Witch and Fireplace,19,1997,Yellow,1 +Fright Knights,Fright Knights Flying Machine,19,1997,Red,3 +Fright Knights,Fright Knights Flying Machine,19,1997,Chrome Silver,1 +Fright Knights,Fright Knights Flying Machine,19,1997,Brown,1 +Fright Knights,Fright Knights Flying Machine,19,1997,Black,4 +Fright Knights,Witch and Fireplace,19,1997,Black,9 +Fright Knights,Fright Knights Flying Machine,19,1997,Yellow,2 +Fright Knights,Fright Knights Flying Machine,19,1997,Trans-Neon Orange,1 +Fright Knights,Fright Knights Flying Machine,19,1997,Trans-Clear,1 +Fright Knights,Fright Knights Flying Machine,19,1997,Light Gray,2 +Fright Knights,Fright Knights Flying Machine,19,1997,Dark Gray,1 +Fright Knights,Bat Lord,16,1997,Trans-Red,1 +Fright Knights,Bat Lord,16,1997,Trans-Neon Orange,2 +Fright Knights,Bat Lord,16,1997,Red,1 +Fright Knights,Bat Lord,16,1997,Light Gray,1 +Fright Knights,Bat Lord,16,1997,Black,7 +Fright Knights,Bat Lord,16,1997,Chrome Silver,1 +Fright Knights,Bat Lord,16,1997,Dark Gray,1 +Fright Knights,Bat Lord,16,1997,Yellow,1 +Fright Knights,Fright Force,28,1998,Black,10 +Fright Knights,Fright Force,28,1998,Brown,1 +Fright Knights,Fright Force,28,1998,Chrome Silver,1 +Fright Knights,Fright Force,28,1998,Dark Gray,3 +Fright Knights,Fright Force,28,1998,Light Gray,3 +Fright Knights,Fright Force,28,1998,Red,5 +Fright Knights,Fright Force,28,1998,Trans-Clear,1 +Fright Knights,Fright Force,28,1998,Trans-Red,1 +Fright Knights,Fright Force,28,1998,Yellow,5 +Fright Knights,Fright Knights Catapult Cart,26,1998,Black,9 +Fright Knights,Fright Knights Catapult Cart,26,1998,Brown,1 +Fright Knights,Fright Knights Catapult Cart,26,1998,Dark Gray,1 +Fright Knights,Fright Knights Catapult Cart,26,1998,Light Gray,2 +Fright Knights,Fright Knights Catapult Cart,26,1998,Red,4 +Fright Knights,Fright Knights Catapult Cart,26,1998,Yellow,2 +Fright Knights,Treasure Cart,23,1998,Dark Gray,3 +Fright Knights,Treasure Cart,23,1998,Light Gray,1 +Fright Knights,Treasure Cart,23,1998,Red,4 +Fright Knights,Treasure Cart,23,1998,Trans-Dark Blue,1 +Fright Knights,Treasure Guard,23,1998,Black,4 +Fright Knights,Treasure Cart,23,1998,Trans-Yellow,1 +Fright Knights,Treasure Cart,23,1998,Yellow,1 +Fright Knights,Treasure Cart,23,1998,Black,4 +Fright Knights,Treasure Cart,23,1998,Brown,4 +Fright Knights,Treasure Guard,23,1998,Brown,4 +Fright Knights,Treasure Guard,23,1998,Dark Gray,3 +Fright Knights,Treasure Guard,23,1998,Light Gray,1 +Fright Knights,Treasure Guard,23,1998,Red,4 +Fright Knights,Treasure Guard,23,1998,Trans-Dark Blue,1 +Fright Knights,Treasure Guard,23,1998,Trans-Yellow,1 +Fright Knights,Treasure Guard,23,1998,Yellow,1 +Fright Knights,Fright Knights Flying Machine,21,1998,Light Gray,2 +Fright Knights,Fright Knights Flying Machine,21,1998,Black,5 +Fright Knights,Fright Knights Flying Machine,21,1998,Chrome Silver,1 +Fright Knights,Fright Knights Flying Machine,21,1998,Dark Gray,1 +Fright Knights,Fright Knights Flying Machine,21,1998,Red,4 +Fright Knights,Fright Knights Flying Machine,21,1998,Trans-Neon Orange,1 +Fright Knights,Fright Knights Flying Machine,21,1998,Trans-Red,1 +Fright Knights,Fright Knights Flying Machine,21,1998,Yellow,2 +Fright Knights,Fright Knights Fire Cart,20,1998,Brown,3 +Fright Knights,Fright Knights Fire Cart,20,1998,Dark Gray,2 +Fright Knights,Fright Knights Fire Cart,20,1998,Light Gray,1 +Fright Knights,Fright Knights Fire Cart,20,1998,Red,2 +Fright Knights,Fright Knights Fire Cart,20,1998,Yellow,3 +Fright Knights,Fright Knights Fire Cart,20,1998,Trans-Neon Orange,1 +Fright Knights,Fright Knights Fire Cart,20,1998,Black,4 +Fusion,Resort Designer,262,2014,White,10 +Fusion,Resort Designer,262,2014,Tan,7 +Fusion,Resort Designer,262,2014,Sand Blue,1 +Fusion,Resort Designer,262,2014,Reddish Brown,1 +Fusion,Resort Designer,262,2014,Medium Azure,5 +Fusion,Resort Designer,262,2014,Magenta,5 +Fusion,Resort Designer,262,2014,Lime,4 +Fusion,Resort Designer,262,2014,Light Flesh,2 +Fusion,Resort Designer,262,2014,Light Aqua,3 +Fusion,Resort Designer,262,2014,Green,3 +Fusion,Resort Designer,262,2014,Dark Red,6 +Fusion,Resort Designer,262,2014,Dark Orange,1 +Fusion,Resort Designer,262,2014,Dark Blue,6 +Fusion,Resort Designer,262,2014,Bright Pink,5 +Fusion,Resort Designer,262,2014,Bright Light Orange,4 +Fusion,Town Master,256,2014,Olive Green,6 +Fusion,Town Master,256,2014,Black,11 +Fusion,Town Master,256,2014,Dark Brown,1 +Fusion,Town Master,256,2014,Light Bluish Gray,5 +Fusion,Town Master,256,2014,Medium Blue,5 +Fusion,Town Master,256,2014,Red,8 +Fusion,Town Master,256,2014,Reddish Brown,2 +Fusion,Town Master,256,2014,Sand Blue,1 +Fusion,Town Master,256,2014,Tan,6 +Fusion,Town Master,256,2014,White,4 +Fusion,Town Master,256,2014,Yellow,2 +Fusion,Create and Race,222,2014,Yellow,1 +Fusion,Create and Race,222,2014,Trans-Red,1 +Fusion,Create and Race,222,2014,White,10 +Fusion,Create and Race,222,2014,Orange,9 +Fusion,Create and Race,222,2014,Trans-Black,1 +Fusion,Create and Race,222,2014,Medium Blue,9 +Fusion,Create and Race,222,2014,Light Bluish Gray,9 +Fusion,Create and Race,222,2014,Green,10 +Fusion,Create and Race,222,2014,Flat Silver,4 +Fusion,Create and Race,222,2014,Dark Bluish Gray,7 +Fusion,Create and Race,222,2014,Black,19 +Fusion,Battle Towers,212,2014,Tan,11 +Fusion,Battle Towers,212,2014,Sand Green,1 +Fusion,Battle Towers,212,2014,Reddish Brown,7 +Fusion,Battle Towers,212,2014,Pearl Gold,1 +Fusion,Battle Towers,212,2014,Light Bluish Gray,17 +Fusion,Battle Towers,212,2014,Dark Green,6 +Fusion,Battle Towers,212,2014,Black,1 +Fusion,Battle Towers,212,2014,White,1 +Futuron,Stardefender 200,251,1987,White,39 +Futuron,Stardefender 200,251,1987,Black,22 +Futuron,Stardefender 200,251,1987,Trans-Red,5 +Futuron,Stardefender 200,251,1987,Trans-Dark Blue,3 +Futuron,Stardefender 200,251,1987,Yellow,4 +Futuron,Cosmic Laser Launcher,211,1987,Light Gray,2 +Futuron,Cosmic Laser Launcher,211,1987,Red,3 +Futuron,Cosmic Laser Launcher,211,1987,Trans-Dark Blue,5 +Futuron,Cosmic Laser Launcher,211,1987,Trans-Red,5 +Futuron,Cosmic Laser Launcher,211,1987,White,50 +Futuron,Cosmic Laser Launcher,211,1987,Yellow,4 +Futuron,Cosmic Laser Launcher,211,1987,Black,25 +Futuron,Orion II Hyperspace,162,1987,Black,23 +Futuron,Orion II Hyperspace,162,1987,White,37 +Futuron,Orion II Hyperspace,162,1987,Blue,3 +Futuron,Orion II Hyperspace,162,1987,Trans-Dark Blue,4 +Futuron,Orion II Hyperspace,162,1987,Trans-Green,1 +Futuron,Orion II Hyperspace,162,1987,Trans-Red,3 +Futuron,Orion II Hyperspace,162,1987,Yellow,4 +Futuron,Aero Module,107,1987,Blue,8 +Futuron,Aero Module,107,1987,Trans-Dark Blue,2 +Futuron,Aero Module,107,1987,Trans-Red,2 +Futuron,Aero Module,107,1987,White,27 +Futuron,Aero Module,107,1987,Yellow,1 +Futuron,Aero Module,107,1987,Black,17 +Futuron,Lunar MPV Vehicle,96,1990,Black,22 +Futuron,Lunar MPV Vehicle,96,1990,Blue,3 +Futuron,Lunar MPV Vehicle,96,1990,Light Gray,2 +Futuron,Lunar MPV Vehicle,96,1990,Trans-Dark Blue,3 +Futuron,Lunar MPV Vehicle,96,1990,Trans-Red,1 +Futuron,Lunar MPV Vehicle,96,1990,White,21 +Futuron,Lunar MPV Vehicle,96,1990,Yellow,1 +Futuron,Astro Dart,30,1990,Black,7 +Futuron,Astro Dart,30,1990,Trans-Dark Blue,2 +Futuron,Astro Dart,30,1990,Trans-Red,1 +Futuron,Astro Dart,30,1990,White,7 +Futuron,Astro Dart,30,1990,Yellow,4 +Galaxy Squad,Galactic Titan,1010,2013,[No Color],1 +Galaxy Squad,Galactic Titan,1010,2013,Black,35 +Galaxy Squad,Galactic Titan,1010,2013,Blue,3 +Galaxy Squad,Galactic Titan,1010,2013,Dark Azure,11 +Galaxy Squad,Galactic Titan,1010,2013,Dark Blue,10 +Galaxy Squad,Galactic Titan,1010,2013,Dark Bluish Gray,34 +Galaxy Squad,Galactic Titan,1010,2013,Dark Red,9 +Galaxy Squad,Galactic Titan,1010,2013,Dark Tan,3 +Galaxy Squad,Galactic Titan,1010,2013,Flat Silver,1 +Galaxy Squad,Galactic Titan,1010,2013,Light Bluish Gray,31 +Galaxy Squad,Galactic Titan,1010,2013,Lime,9 +Galaxy Squad,Galactic Titan,1010,2013,Olive Green,6 +Galaxy Squad,Galactic Titan,1010,2013,Orange,1 +Galaxy Squad,Galactic Titan,1010,2013,Red,6 +Galaxy Squad,Galactic Titan,1010,2013,Tan,4 +Galaxy Squad,Galactic Titan,1010,2013,Trans-Bright Green,1 +Galaxy Squad,Galactic Titan,1010,2013,Trans-Clear,6 +Galaxy Squad,Galactic Titan,1010,2013,Trans-Dark Pink,3 +Galaxy Squad,Galactic Titan,1010,2013,Trans-Green,1 +Galaxy Squad,Galactic Titan,1010,2013,Trans-Light Blue,1 +Galaxy Squad,Galactic Titan,1010,2013,Trans-Neon Green,4 +Galaxy Squad,Galactic Titan,1010,2013,Trans-Neon Orange,1 +Galaxy Squad,Galactic Titan,1010,2013,Trans-Purple,1 +Galaxy Squad,Galactic Titan,1010,2013,Trans-Red,3 +Galaxy Squad,Galactic Titan,1010,2013,Trans-Yellow,2 +Galaxy Squad,Galactic Titan,1010,2013,White,55 +Galaxy Squad,Galactic Titan,1010,2013,Yellow,4 +Galaxy Squad,Bug Obliterator,709,2013,Dark Bluish Gray,43 +Galaxy Squad,Bug Obliterator,709,2013,Dark Red,5 +Galaxy Squad,Bug Obliterator,709,2013,Dark Tan,3 +Galaxy Squad,Bug Obliterator,709,2013,Flat Silver,2 +Galaxy Squad,Bug Obliterator,709,2013,Light Bluish Gray,34 +Galaxy Squad,Bug Obliterator,709,2013,Lime,7 +Galaxy Squad,Bug Obliterator,709,2013,Olive Green,3 +Galaxy Squad,Bug Obliterator,709,2013,Orange,16 +Galaxy Squad,Bug Obliterator,709,2013,Pearl Dark Gray,1 +Galaxy Squad,Bug Obliterator,709,2013,Red,4 +Galaxy Squad,Bug Obliterator,709,2013,Tan,1 +Galaxy Squad,Bug Obliterator,709,2013,Trans-Bright Green,1 +Galaxy Squad,Bug Obliterator,709,2013,Trans-Clear,4 +Galaxy Squad,Bug Obliterator,709,2013,Trans-Dark Pink,1 +Galaxy Squad,Bug Obliterator,709,2013,Trans-Light Blue,2 +Galaxy Squad,Bug Obliterator,709,2013,Trans-Neon Green,1 +Galaxy Squad,Bug Obliterator,709,2013,Trans-Purple,2 +Galaxy Squad,Bug Obliterator,709,2013,Trans-Red,2 +Galaxy Squad,Bug Obliterator,709,2013,Trans-Yellow,1 +Galaxy Squad,Bug Obliterator,709,2013,White,26 +Galaxy Squad,Bug Obliterator,709,2013,Yellow,4 +Galaxy Squad,Bug Obliterator,709,2013,[No Color],1 +Galaxy Squad,Bug Obliterator,709,2013,Black,31 +Galaxy Squad,Bug Obliterator,709,2013,Blue,2 +Galaxy Squad,Hive Crawler,558,2013,Red,11 +Galaxy Squad,Hive Crawler,558,2013,Black,38 +Galaxy Squad,Hive Crawler,558,2013,Blue,4 +Galaxy Squad,Hive Crawler,558,2013,Dark Bluish Gray,21 +Galaxy Squad,Hive Crawler,558,2013,Yellow,2 +Galaxy Squad,Hive Crawler,558,2013,White,12 +Galaxy Squad,Hive Crawler,558,2013,Lime,23 +Galaxy Squad,Hive Crawler,558,2013,Trans-Red,3 +Galaxy Squad,Hive Crawler,558,2013,Trans-Neon Green,1 +Galaxy Squad,Hive Crawler,558,2013,Trans-Light Blue,3 +Galaxy Squad,Hive Crawler,558,2013,Trans-Clear,3 +Galaxy Squad,Hive Crawler,558,2013,Trans-Dark Pink,2 +Galaxy Squad,Hive Crawler,558,2013,Tan,7 +Galaxy Squad,Hive Crawler,558,2013,Reddish Brown,3 +Galaxy Squad,Hive Crawler,558,2013,Pearl Gold,3 +Galaxy Squad,Hive Crawler,558,2013,Pearl Dark Gray,1 +Galaxy Squad,Hive Crawler,558,2013,Olive Green,8 +Galaxy Squad,Hive Crawler,558,2013,Light Bluish Gray,20 +Galaxy Squad,Hive Crawler,558,2013,Dark Red,15 +Galaxy Squad,Hive Crawler,558,2013,Dark Tan,5 +Galaxy Squad,Vermin Vaporizer,504,2013,Pearl Gold,4 +Galaxy Squad,Vermin Vaporizer,504,2013,Pearl Dark Gray,1 +Galaxy Squad,Vermin Vaporizer,504,2013,White,48 +Galaxy Squad,Vermin Vaporizer,504,2013,Olive Green,3 +Galaxy Squad,Vermin Vaporizer,504,2013,Lime,4 +Galaxy Squad,Vermin Vaporizer,504,2013,Light Bluish Gray,18 +Galaxy Squad,Vermin Vaporizer,504,2013,Flat Silver,1 +Galaxy Squad,Vermin Vaporizer,504,2013,Dark Tan,3 +Galaxy Squad,Vermin Vaporizer,504,2013,Dark Red,2 +Galaxy Squad,Vermin Vaporizer,504,2013,Yellow,2 +Galaxy Squad,Vermin Vaporizer,504,2013,Trans-Red,3 +Galaxy Squad,Vermin Vaporizer,504,2013,Trans-Purple,2 +Galaxy Squad,Vermin Vaporizer,504,2013,Trans-Light Blue,3 +Galaxy Squad,Vermin Vaporizer,504,2013,Trans-Dark Pink,1 +Galaxy Squad,Vermin Vaporizer,504,2013,Trans-Dark Blue,1 +Galaxy Squad,Vermin Vaporizer,504,2013,Dark Green,11 +Galaxy Squad,Vermin Vaporizer,504,2013,Dark Bluish Gray,25 +Galaxy Squad,Vermin Vaporizer,504,2013,Bright Green,8 +Galaxy Squad,Vermin Vaporizer,504,2013,Blue,2 +Galaxy Squad,Vermin Vaporizer,504,2013,Black,25 +Galaxy Squad,Vermin Vaporizer,504,2013,[No Color],1 +Galaxy Squad,Vermin Vaporizer,504,2013,Trans-Clear,4 +Galaxy Squad,Vermin Vaporizer,504,2013,Trans-Bright Green,1 +Galaxy Squad,Vermin Vaporizer,504,2013,Tan,2 +Galaxy Squad,Vermin Vaporizer,504,2013,Red,4 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Dark Bluish Gray,39 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Orange,20 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Light Bluish Gray,23 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Flat Silver,1 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Yellow,2 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Trans-Yellow,1 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Trans-Neon Green,3 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Lime,5 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Trans-Red,1 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,[No Color],1 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Black,18 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Blue,1 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Trans-Orange,1 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Dark Red,3 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Dark Tan,1 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Red,2 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Trans-Light Blue,3 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Trans-Dark Pink,1 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Trans-Clear,4 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,White,35 +Galaxy Squad,CLS-89 Eradicator Mech,439,2013,Tan,1 +Galaxy Squad,Star Slicer,311,2013,Blue,4 +Galaxy Squad,Star Slicer,311,2013,Dark Azure,6 +Galaxy Squad,Star Slicer,311,2013,Black,24 +Galaxy Squad,Star Slicer,311,2013,Light Bluish Gray,13 +Galaxy Squad,Star Slicer,311,2013,Dark Blue,1 +Galaxy Squad,Star Slicer,311,2013,Dark Tan,3 +Galaxy Squad,Star Slicer,311,2013,Dark Red,13 +Galaxy Squad,Star Slicer,311,2013,Dark Brown,1 +Galaxy Squad,Star Slicer,311,2013,Dark Bluish Gray,21 +Galaxy Squad,Star Slicer,311,2013,[No Color],1 +Galaxy Squad,Star Slicer,311,2013,Yellow,1 +Galaxy Squad,Star Slicer,311,2013,White,12 +Galaxy Squad,Star Slicer,311,2013,Trans-Yellow,1 +Galaxy Squad,Star Slicer,311,2013,Trans-Red,2 +Galaxy Squad,Star Slicer,311,2013,Trans-Purple,2 +Galaxy Squad,Star Slicer,311,2013,Trans-Orange,2 +Galaxy Squad,Star Slicer,311,2013,Trans-Neon Orange,1 +Galaxy Squad,Star Slicer,311,2013,Trans-Neon Green,1 +Galaxy Squad,Star Slicer,311,2013,Trans-Dark Pink,2 +Galaxy Squad,Star Slicer,311,2013,Trans-Clear,3 +Galaxy Squad,Star Slicer,311,2013,Trans-Bright Green,1 +Galaxy Squad,Star Slicer,311,2013,Tan,5 +Galaxy Squad,Star Slicer,311,2013,Sand Green,1 +Galaxy Squad,Star Slicer,311,2013,Reddish Brown,1 +Galaxy Squad,Star Slicer,311,2013,Red,1 +Galaxy Squad,Star Slicer,311,2013,Pearl Gold,2 +Galaxy Squad,Star Slicer,311,2013,Pearl Dark Gray,1 +Galaxy Squad,Star Slicer,311,2013,Lime,14 +Galaxy Squad,Warp Stinger,307,2013,Trans-Clear,2 +Galaxy Squad,Warp Stinger,307,2013,Trans-Dark Pink,1 +Galaxy Squad,Warp Stinger,307,2013,Trans-Light Blue,2 +Galaxy Squad,Warp Stinger,307,2013,Trans-Neon Green,2 +Galaxy Squad,Warp Stinger,307,2013,Trans-Neon Orange,1 +Galaxy Squad,Warp Stinger,307,2013,Trans-Purple,2 +Galaxy Squad,Warp Stinger,307,2013,Trans-Red,1 +Galaxy Squad,Warp Stinger,307,2013,White,8 +Galaxy Squad,Warp Stinger,307,2013,Yellow,1 +Galaxy Squad,Warp Stinger,307,2013,Lime,10 +Galaxy Squad,Warp Stinger,307,2013,[No Color],1 +Galaxy Squad,Warp Stinger,307,2013,Black,14 +Galaxy Squad,Warp Stinger,307,2013,Blue,1 +Galaxy Squad,Warp Stinger,307,2013,Dark Bluish Gray,17 +Galaxy Squad,Warp Stinger,307,2013,Dark Brown,1 +Galaxy Squad,Warp Stinger,307,2013,Dark Red,12 +Galaxy Squad,Warp Stinger,307,2013,Dark Tan,7 +Galaxy Squad,Warp Stinger,307,2013,Light Bluish Gray,7 +Galaxy Squad,Warp Stinger,307,2013,Olive Green,3 +Galaxy Squad,Warp Stinger,307,2013,Pearl Dark Gray,1 +Galaxy Squad,Warp Stinger,307,2013,Pearl Gold,2 +Galaxy Squad,Warp Stinger,307,2013,Red,7 +Galaxy Squad,Warp Stinger,307,2013,Tan,3 +Galaxy Squad,Warp Stinger,307,2013,Trans-Bright Green,1 +Galaxy Squad,Swarm Interceptor,217,2013,Blue,1 +Galaxy Squad,Swarm Interceptor,217,2013,Trans-Bright Green,1 +Galaxy Squad,Swarm Interceptor,217,2013,Trans-Yellow,1 +Galaxy Squad,Swarm Interceptor,217,2013,Trans-Dark Pink,1 +Galaxy Squad,Swarm Interceptor,217,2013,Trans-Light Blue,1 +Galaxy Squad,Swarm Interceptor,217,2013,Black,11 +Galaxy Squad,Swarm Interceptor,217,2013,Trans-Neon Green,1 +Galaxy Squad,Swarm Interceptor,217,2013,Trans-Red,1 +Galaxy Squad,Swarm Interceptor,217,2013,White,22 +Galaxy Squad,Swarm Interceptor,217,2013,[No Color],1 +Galaxy Squad,Swarm Interceptor,217,2013,Yellow,1 +Galaxy Squad,Swarm Interceptor,217,2013,Trans-Clear,2 +Galaxy Squad,Swarm Interceptor,217,2013,Dark Azure,9 +Galaxy Squad,Swarm Interceptor,217,2013,Dark Blue,2 +Galaxy Squad,Swarm Interceptor,217,2013,Dark Bluish Gray,17 +Galaxy Squad,Swarm Interceptor,217,2013,Dark Red,3 +Galaxy Squad,Swarm Interceptor,217,2013,Flat Silver,1 +Galaxy Squad,Swarm Interceptor,217,2013,Light Bluish Gray,13 +Galaxy Squad,Swarm Interceptor,217,2013,Lime,2 +Galaxy Squad,Swarm Interceptor,217,2013,Olive Green,3 +Galaxy Squad,Swarm Interceptor,217,2013,Tan,1 +Galaxy Squad,Crater Creeper,172,2013,Light Bluish Gray,6 +Galaxy Squad,Crater Creeper,172,2013,Lime,7 +Galaxy Squad,Crater Creeper,172,2013,Olive Green,4 +Galaxy Squad,Crater Creeper,172,2013,Pearl Gold,1 +Galaxy Squad,Crater Creeper,172,2013,Tan,4 +Galaxy Squad,Crater Creeper,172,2013,Trans-Bright Green,1 +Galaxy Squad,Crater Creeper,172,2013,Trans-Clear,1 +Galaxy Squad,Crater Creeper,172,2013,Red,2 +Galaxy Squad,Crater Creeper,172,2013,Flat Silver,1 +Galaxy Squad,Crater Creeper,172,2013,Dark Tan,1 +Galaxy Squad,Crater Creeper,172,2013,Trans-Dark Blue,1 +Galaxy Squad,Crater Creeper,172,2013,Trans-Dark Pink,1 +Galaxy Squad,Crater Creeper,172,2013,Dark Bluish Gray,13 +Galaxy Squad,Crater Creeper,172,2013,Trans-Light Blue,1 +Galaxy Squad,Crater Creeper,172,2013,Trans-Purple,1 +Galaxy Squad,Crater Creeper,172,2013,Trans-Red,2 +Galaxy Squad,Crater Creeper,172,2013,White,6 +Galaxy Squad,Crater Creeper,172,2013,Yellow,1 +Galaxy Squad,Crater Creeper,172,2013,Black,13 +Galaxy Squad,Crater Creeper,172,2013,Blue,1 +Galaxy Squad,Crater Creeper,172,2013,Bright Green,2 +Galaxy Squad,Crater Creeper,172,2013,Dark Red,5 +Galaxy Squad,Crater Creeper,172,2013,Dark Green,2 +Galaxy Squad,Space Swarmer,86,2013,White,1 +Galaxy Squad,Space Swarmer,86,2013,Trans-Red,2 +Galaxy Squad,Space Swarmer,86,2013,Trans-Neon Green,1 +Galaxy Squad,Space Swarmer,86,2013,Trans-Dark Pink,1 +Galaxy Squad,Space Swarmer,86,2013,Tan,2 +Galaxy Squad,Space Swarmer,86,2013,Olive Green,3 +Galaxy Squad,Space Swarmer,86,2013,Lime,6 +Galaxy Squad,Space Swarmer,86,2013,Light Bluish Gray,4 +Galaxy Squad,Space Swarmer,86,2013,Flat Silver,2 +Galaxy Squad,Space Swarmer,86,2013,Dark Red,2 +Galaxy Squad,Space Swarmer,86,2013,Dark Bluish Gray,10 +Galaxy Squad,Space Swarmer,86,2013,Dark Azure,2 +Galaxy Squad,Space Swarmer,86,2013,Blue,1 +Galaxy Squad,Space Swarmer,86,2013,Black,8 +Galaxy Squad,Mini Mech,28,2013,Light Bluish Gray,2 +Galaxy Squad,Mini Mech,28,2013,Orange,5 +Galaxy Squad,Mini Mech,28,2013,Trans-Clear,2 +Galaxy Squad,Mini Mech,28,2013,Trans-Orange,1 +Galaxy Squad,Mini Mech,28,2013,Trans-Yellow,1 +Galaxy Squad,Mini Mech,28,2013,White,4 +Galaxy Squad,Mini Mech,28,2013,Yellow,1 +Galaxy Squad,Mini Mech,28,2013,Black,3 +Galaxy Squad,Mini Mech,28,2013,Dark Bluish Gray,2 +Galaxy Squad,Space Insectoid,27,2013,Dark Bluish Gray,1 +Galaxy Squad,Space Insectoid,27,2013,Black,4 +Galaxy Squad,Space Insectoid,27,2013,Bright Green,2 +Galaxy Squad,Space Insectoid,27,2013,Yellow,1 +Galaxy Squad,Space Insectoid,27,2013,Trans-Red,1 +Galaxy Squad,Space Insectoid,27,2013,Trans-Neon Green,1 +Galaxy Squad,Space Insectoid,27,2013,Trans-Clear,1 +Galaxy Squad,Space Insectoid,27,2013,Lime,2 +Galaxy Squad,Space Insectoid,27,2013,Light Bluish Gray,4 +Galaxy Squad,Space Insectoid,27,2013,Dark Tan,1 +Galaxy Squad,Space Insectoid,27,2013,Dark Red,2 +Galaxy Squad,Space Insectoid,27,2013,Dark Green,1 +Game,The Race to Build It Board Game,70,1999,Black,5 +Game,The Race to Build It Board Game,70,1999,Blue,6 +Game,The Race to Build It Board Game,70,1999,Green,4 +Game,The Race to Build It Board Game,70,1999,Light Gray,3 +Game,The Race to Build It Board Game,70,1999,Red,7 +Game,The Race to Build It Board Game,70,1999,Trans-Clear,2 +Game,The Race to Build It Board Game,70,1999,Trans-Green,1 +Game,The Race to Build It Board Game,70,1999,Trans-Red,1 +Game,The Race to Build It Board Game,70,1999,White,4 +Game,The Race to Build It Board Game,70,1999,Yellow,7 +Game,Iconic Chess Set,1450,2017,Black,28 +Game,Iconic Chess Set,1450,2017,Blue,2 +Game,Iconic Chess Set,1450,2017,Dark Blue,5 +Game,Iconic Chess Set,1450,2017,Dark Bluish Gray,2 +Game,Iconic Chess Set,1450,2017,Dark Red,6 +Game,Iconic Chess Set,1450,2017,Flat Silver,2 +Game,Iconic Chess Set,1450,2017,Green,1 +Game,Iconic Chess Set,1450,2017,Light Bluish Gray,19 +Game,Iconic Chess Set,1450,2017,Orange,1 +Game,Iconic Chess Set,1450,2017,Pearl Gold,2 +Game,Iconic Chess Set,1450,2017,Red,2 +Game,Iconic Chess Set,1450,2017,Tan,2 +Game,Iconic Chess Set,1450,2017,White,28 +Gas Station,Shell Tanker Truck,43,1970,Black,4 +Gas Station,Shell Tanker Truck,43,1970,Light Gray,2 +Gas Station,Shell Tanker Truck,43,1970,Red,2 +Gas Station,Shell Tanker Truck,43,1970,Trans-Clear,1 +Gas Station,Shell Tanker Truck,43,1970,Yellow,10 +Gas Station,Offshore Rig with Fuel Tanker,459,1977,Black,24 +Gas Station,Offshore Rig with Fuel Tanker,459,1977,Blue,3 +Gas Station,Offshore Rig with Fuel Tanker,459,1977,Light Gray,9 +Gas Station,Offshore Rig with Fuel Tanker,459,1977,Milky White,1 +Gas Station,Offshore Rig with Fuel Tanker,459,1977,Red,19 +Gas Station,Offshore Rig with Fuel Tanker,459,1977,Trans-Clear,5 +Gas Station,Offshore Rig with Fuel Tanker,459,1977,White,14 +Gas Station,Offshore Rig with Fuel Tanker,459,1977,Yellow,16 +Gas Station,Octan Gas Station,127,1997,Black,15 +Gas Station,Octan Gas Station,127,1997,Blue,4 +Gas Station,Octan Gas Station,127,1997,Brown,1 +Gas Station,Octan Gas Station,127,1997,Dark Gray,2 +Gas Station,Octan Gas Station,127,1997,Green,6 +Gas Station,Octan Gas Station,127,1997,Light Gray,6 +Gas Station,Octan Gas Station,127,1997,Red,10 +Gas Station,Octan Gas Station,127,1997,Trans-Light Blue,2 +Gas Station,Octan Gas Station,127,1997,Trans-Yellow,2 +Gas Station,Octan Gas Station,127,1997,White,18 +Gas Station,Octan Gas Station,127,1997,Yellow,6 +Gas Station,Rapid Response Tanker,35,2002,Black,5 +Gas Station,Rapid Response Tanker,35,2002,Blue,1 +Gas Station,Rapid Response Tanker,35,2002,Light Gray,3 +Gas Station,Rapid Response Tanker,35,2002,Orange,4 +Gas Station,Rapid Response Tanker,35,2002,Trans-Neon Orange,1 +Gas Station,Rapid Response Tanker,35,2002,Unknown,1 +Gas Station,Rapid Response Tanker,35,2002,White,7 +Gas Station,Rapid Response Tanker,35,2002,Yellow,2 +Gas Station,Quick Fix Station,103,2003,Black,13 +Gas Station,Quick Fix Station,103,2003,Dark Gray,1 +Gas Station,Quick Fix Station,103,2003,Green,4 +Gas Station,Quick Fix Station,103,2003,Light Gray,6 +Gas Station,Quick Fix Station,103,2003,Red,4 +Gas Station,Quick Fix Station,103,2003,Trans-Dark Blue,1 +Gas Station,Quick Fix Station,103,2003,Trans-Medium Blue,4 +Gas Station,Quick Fix Station,103,2003,Trans-Neon Green,2 +Gas Station,Quick Fix Station,103,2003,Trans-Yellow,1 +Gas Station,Quick Fix Station,103,2003,Unknown,2 +Gas Station,Quick Fix Station,103,2003,White,12 +Gas Station,Quick Fix Station,103,2003,Yellow,9 +Gas Station,Tanker Truck,43,2003,Black,5 +Gas Station,Tanker Truck,43,2003,Dark Gray,1 +Gas Station,Tanker Truck,43,2003,Trans-Black,1 +Gas Station,Tanker Truck,43,2003,Unknown,1 +Gas Station,Tanker Truck,43,2003,Yellow,10 +Gear,Brick Calendar,278,2017,Black,1 +Gear,Brick Calendar,278,2017,Dark Brown,1 +Gear,Brick Calendar,278,2017,Dark Red,1 +Gear,Brick Calendar,278,2017,Green,2 +Gear,Brick Calendar,278,2017,Light Bluish Gray,1 +Gear,Brick Calendar,278,2017,Lime,2 +Gear,Brick Calendar,278,2017,Orange,2 +Gear,Brick Calendar,278,2017,Red,2 +Gear,Brick Calendar,278,2017,Sand Blue,1 +Gear,Brick Calendar,278,2017,Tan,1 +Gear,Brick Calendar,278,2017,White,9 +Gear,Brick Calendar,278,2017,Yellow,1 +Gears,Gear Set with Motor,120,1970,Black,2 +Gears,Gear Set with Motor,120,1970,Blue,5 +Gears,Gear Set with Motor,120,1970,Light Gray,4 +Gears,Gear Set with Motor,120,1970,Metallic Silver,1 +Gears,Gear Set with Motor,120,1970,Milky White,4 +Gears,Gear Set with Motor,120,1970,Red,13 +Gears,Gear Set with Motor,120,1970,White,4 +Gears,Gear Set with Motor,120,1970,Yellow,3 +Gears,Gear Set,112,1970,Black,2 +Gears,Gear Set,112,1970,Blue,2 +Gears,Gear Set,112,1970,Light Gray,4 +Gears,Gear Set,112,1970,Metallic Silver,1 +Gears,Gear Set,112,1970,Milky White,4 +Gears,Gear Set,112,1970,Red,13 +Gears,Gear Set,112,1970,White,3 +Gears,Gear Set,112,1970,Yellow,3 +Gears,Gear Supplementary Set,30,1970,Blue,1 +Gears,Gear Supplementary Set,30,1970,Light Gray,1 +Gears,Gear Supplementary Set,30,1970,Metallic Silver,1 +Gears,Gear Supplementary Set,30,1970,Milky White,4 +Gears,Gear Supplementary Set,30,1970,Red,2 +Gears,Gear Supplementary Set,30,1970,Yellow,1 +Gears,Gear Farm Set,89,1975,Black,8 +Gears,Gear Farm Set,89,1975,Blue,2 +Gears,Gear Farm Set,89,1975,Light Gray,1 +Gears,Gear Farm Set,89,1975,Milky White,2 +Gears,Gear Farm Set,89,1975,Red,24 +Gears,Gear Farm Set,89,1975,Yellow,8 +Ghostbusters,Ecto1 & 2,552,2016,Black,41 +Ghostbusters,Ecto1 & 2,552,2016,Blue,3 +Ghostbusters,Ecto1 & 2,552,2016,Bright Light Orange,1 +Ghostbusters,Ecto1 & 2,552,2016,Bright Light Yellow,1 +Ghostbusters,Ecto1 & 2,552,2016,Dark Blue,1 +Ghostbusters,Ecto1 & 2,552,2016,Dark Bluish Gray,14 +Ghostbusters,Ecto1 & 2,552,2016,Dark Brown,2 +Ghostbusters,Ecto1 & 2,552,2016,Dark Tan,9 +Ghostbusters,Ecto1 & 2,552,2016,Flat Silver,1 +Ghostbusters,Ecto1 & 2,552,2016,Light Bluish Gray,36 +Ghostbusters,Ecto1 & 2,552,2016,Light Flesh,3 +Ghostbusters,Ecto1 & 2,552,2016,Metallic Silver,2 +Ghostbusters,Ecto1 & 2,552,2016,Orange,1 +Ghostbusters,Ecto1 & 2,552,2016,Pearl Dark Gray,1 +Ghostbusters,Ecto1 & 2,552,2016,Red,24 +Ghostbusters,Ecto1 & 2,552,2016,Reddish Brown,8 +Ghostbusters,Ecto1 & 2,552,2016,Tan,1 +Ghostbusters,Ecto1 & 2,552,2016,Trans-Black,4 +Ghostbusters,Ecto1 & 2,552,2016,Trans-Clear,6 +Ghostbusters,Ecto1 & 2,552,2016,Trans-Light Blue,2 +Ghostbusters,Ecto1 & 2,552,2016,Trans-Neon Orange,1 +Ghostbusters,Ecto1 & 2,552,2016,Trans-Orange,1 +Ghostbusters,Ecto1 & 2,552,2016,Trans-Red,3 +Ghostbusters,Ecto1 & 2,552,2016,Trans-Yellow,1 +Ghostbusters,Ecto1 & 2,552,2016,White,36 +Ghostbusters,Ecto1 & 2,552,2016,Yellow,6 +Glatorian,Malum,59,2009,Dark Red,8 +Glatorian,Malum,59,2009,Black,1 +Glatorian,Malum,59,2009,Blue,2 +Glatorian,Malum,59,2009,Bright Light Orange,1 +Glatorian,Malum,59,2009,Dark Bluish Gray,5 +Glatorian,Malum,59,2009,Light Bluish Gray,1 +Glatorian,Malum,59,2009,Pearl Gold,1 +Glatorian,Malum,59,2009,Pearl Light Gray,3 +Glatorian,Malum,59,2009,Red,1 +Glatorian,Malum,59,2009,Trans-Neon Orange,1 +Glatorian,Tarix,57,2009,Trans-Neon Green,1 +Glatorian,Tarix,57,2009,Black,3 +Glatorian,Tarix,57,2009,Blue,3 +Glatorian,Tarix,57,2009,Dark Blue,6 +Glatorian,Tarix,57,2009,Dark Bluish Gray,2 +Glatorian,Tarix,57,2009,Light Bluish Gray,1 +Glatorian,Tarix,57,2009,Pearl Gold,4 +Glatorian,Tarix,57,2009,Pearl Light Gray,5 +Glatorian,Tarix,57,2009,Red,1 +Glatorian,Gresh,55,2009,Blue,2 +Glatorian,Gresh,55,2009,Dark Green,6 +Glatorian,Gresh,55,2009,Lime,3 +Glatorian,Gresh,55,2009,Pearl Gold,1 +Glatorian,Gresh,55,2009,Pearl Light Gray,2 +Glatorian,Gresh,55,2009,Red,1 +Glatorian,Gresh,55,2009,Trans-Neon Orange,1 +Glatorian,Gresh,55,2009,Black,7 +Glatorian,Vorox,51,2009,Trans-Neon Orange,1 +Glatorian,Vorox,51,2009,Black,5 +Glatorian,Vorox,51,2009,Blue,2 +Glatorian,Vorox,51,2009,Dark Bluish Gray,1 +Glatorian,Vorox,51,2009,Light Bluish Gray,1 +Glatorian,Vorox,51,2009,Pearl Gold,1 +Glatorian,Vorox,51,2009,Pearl Light Gray,4 +Glatorian,Vorox,51,2009,Red,2 +Glatorian,Vorox,51,2009,Tan,9 +Glatorian,Skrall,50,2009,Black,12 +Glatorian,Skrall,50,2009,Blue,1 +Glatorian,Skrall,50,2009,Light Bluish Gray,2 +Glatorian,Skrall,50,2009,Pearl Gold,1 +Glatorian,Skrall,50,2009,Pearl Light Gray,2 +Glatorian,Skrall,50,2009,Red,5 +Glatorian,Skrall,50,2009,Tan,1 +Glatorian,Skrall,50,2009,Trans-Neon Orange,1 +Glatorian,Strakk,46,2009,Black,1 +Glatorian,Strakk,46,2009,Blue,2 +Glatorian,Strakk,46,2009,Dark Blue,4 +Glatorian,Strakk,46,2009,Dark Bluish Gray,1 +Glatorian,Strakk,46,2009,Light Bluish Gray,2 +Glatorian,Strakk,46,2009,Medium Blue,1 +Glatorian,Strakk,46,2009,Pearl Gold,1 +Glatorian,Strakk,46,2009,Pearl Light Gray,3 +Glatorian,Strakk,46,2009,Red,1 +Glatorian,Strakk,46,2009,Trans-Medium Blue,1 +Glatorian,Strakk,46,2009,White,9 +Glatorian Legends,Ackar,55,2009,Black,1 +Glatorian Legends,Ackar,55,2009,Blue,2 +Glatorian Legends,Ackar,55,2009,Dark Bluish Gray,3 +Glatorian Legends,Ackar,55,2009,Orange,4 +Glatorian Legends,Ackar,55,2009,Pearl Gold,1 +Glatorian Legends,Ackar,55,2009,Pearl Light Gray,4 +Glatorian Legends,Ackar,55,2009,Red,10 +Glatorian Legends,Ackar,55,2009,Trans-Neon Orange,1 +Glatorian Legends,Ackar,55,2009,Trans-Orange,1 +Glatorian Legends,Stronius,55,2009,Pearl Light Gray,2 +Glatorian Legends,Stronius,55,2009,Red,2 +Glatorian Legends,Stronius,55,2009,Trans-Neon Orange,1 +Glatorian Legends,Stronius,55,2009,Pearl Gold,1 +Glatorian Legends,Stronius,55,2009,Black,11 +Glatorian Legends,Stronius,55,2009,Blue,1 +Glatorian Legends,Stronius,55,2009,Dark Bluish Gray,1 +Glatorian Legends,Stronius,55,2009,Dark Red,3 +Glatorian Legends,Stronius,55,2009,Light Bluish Gray,4 +Glatorian Legends,Gelu,52,2009,Black,2 +Glatorian Legends,Gelu,52,2009,Blue,1 +Glatorian Legends,Gelu,52,2009,Dark Blue,5 +Glatorian Legends,Mata Nui,52,2009,Light Bluish Gray,1 +Glatorian Legends,Mata Nui,52,2009,Pearl Gold,1 +Glatorian Legends,Mata Nui,52,2009,Pearl Light Gray,3 +Glatorian Legends,Mata Nui,52,2009,Red,1 +Glatorian Legends,Mata Nui,52,2009,Trans-Medium Blue,1 +Glatorian Legends,Gelu,52,2009,Pearl Light Gray,5 +Glatorian Legends,Gelu,52,2009,Red,1 +Glatorian Legends,Gelu,52,2009,Trans-Medium Blue,1 +Glatorian Legends,Gelu,52,2009,White,6 +Glatorian Legends,Mata Nui,52,2009,Black,7 +Glatorian Legends,Mata Nui,52,2009,Bright Light Orange,10 +Glatorian Legends,Mata Nui,52,2009,Blue,1 +Glatorian Legends,Gelu,52,2009,Pearl Gold,1 +Glatorian Legends,Mata Nui,52,2009,Dark Bluish Gray,1 +Glatorian Legends,Vastus,52,2009,Black,7 +Glatorian Legends,Vastus,52,2009,Blue,2 +Glatorian Legends,Vastus,52,2009,Dark Bluish Gray,1 +Glatorian Legends,Vastus,52,2009,Dark Green,7 +Glatorian Legends,Vastus,52,2009,Lime,6 +Glatorian Legends,Vastus,52,2009,Pearl Gold,1 +Glatorian Legends,Vastus,52,2009,Pearl Light Gray,4 +Glatorian Legends,Vastus,52,2009,Trans-Clear,1 +Glatorian Legends,Vastus,52,2009,Trans-Neon Green,1 +Glatorian Legends,Kiina,43,2009,Pearl Light Gray,2 +Glatorian Legends,Kiina,43,2009,Red,1 +Glatorian Legends,Kiina,43,2009,Trans-Neon Green,1 +Glatorian Legends,Kiina,43,2009,Black,3 +Glatorian Legends,Kiina,43,2009,Blue,2 +Glatorian Legends,Kiina,43,2009,Dark Blue,5 +Glatorian Legends,Kiina,43,2009,Dark Bluish Gray,1 +Glatorian Legends,Kiina,43,2009,Flat Silver,1 +Glatorian Legends,Kiina,43,2009,Medium Blue,4 +Glatorian Legends,Kiina,43,2009,Pearl Gold,1 +Goblet of Fire,The Durmstrang Ship,552,2005,Red,1 +Goblet of Fire,The Durmstrang Ship,552,2005,Dark Bluish Gray,18 +Goblet of Fire,The Durmstrang Ship,552,2005,Dark Red,13 +Goblet of Fire,The Durmstrang Ship,552,2005,Light Bluish Gray,14 +Goblet of Fire,The Durmstrang Ship,552,2005,Light Flesh,2 +Goblet of Fire,The Durmstrang Ship,552,2005,Medium Blue,9 +Goblet of Fire,The Durmstrang Ship,552,2005,Pearl Light Gray,1 +Goblet of Fire,The Durmstrang Ship,552,2005,White,4 +Goblet of Fire,The Durmstrang Ship,552,2005,Chrome Antique Brass,1 +Goblet of Fire,The Durmstrang Ship,552,2005,Chrome Gold,1 +Goblet of Fire,The Durmstrang Ship,552,2005,Copper,1 +Goblet of Fire,The Durmstrang Ship,552,2005,Reddish Brown,6 +Goblet of Fire,The Durmstrang Ship,552,2005,Tan,26 +Goblet of Fire,The Durmstrang Ship,552,2005,Trans-Clear,2 +Goblet of Fire,The Durmstrang Ship,552,2005,Trans-Light Blue,1 +Goblet of Fire,The Durmstrang Ship,552,2005,Trans-Neon Orange,1 +Goblet of Fire,The Durmstrang Ship,552,2005,Trans-Orange,1 +Goblet of Fire,The Durmstrang Ship,552,2005,Yellow,2 +Goblet of Fire,The Durmstrang Ship,552,2005,Blue,4 +Goblet of Fire,The Durmstrang Ship,552,2005,Black,51 +Goblet of Fire,Graveyard Duel,551,2005,Reddish Brown,23 +Goblet of Fire,Graveyard Duel,551,2005,Sand Green,6 +Goblet of Fire,Graveyard Duel,551,2005,Tan,17 +Goblet of Fire,Graveyard Duel,551,2005,Trans-Clear,1 +Goblet of Fire,Graveyard Duel,551,2005,Trans-Neon Orange,1 +Goblet of Fire,Graveyard Duel,551,2005,Trans-Red,1 +Goblet of Fire,Graveyard Duel,551,2005,Trans-Yellow,1 +Goblet of Fire,Graveyard Duel,551,2005,White,10 +Goblet of Fire,Graveyard Duel,551,2005,Light Bluish Gray,32 +Goblet of Fire,Graveyard Duel,551,2005,[No Color],1 +Goblet of Fire,Graveyard Duel,551,2005,Black,49 +Goblet of Fire,Graveyard Duel,551,2005,Chrome Silver,1 +Goblet of Fire,Graveyard Duel,551,2005,Dark Bluish Gray,42 +Goblet of Fire,Graveyard Duel,551,2005,Dark Orange,1 +Goblet of Fire,Graveyard Duel,551,2005,Glow In Dark Opaque,1 +Goblet of Fire,Graveyard Duel,551,2005,Green,3 +Goblet of Fire,Graveyard Duel,551,2005,Light Flesh,3 +Goblet of Fire,Graveyard Duel,551,2005,Red,3 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Blue,4 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Chrome Gold,2 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Copper,1 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Tan,26 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Dark Red,13 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Light Bluish Gray,14 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Medium Blue,9 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Pearl Light Gray,1 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Red,1 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Reddish Brown,6 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Dark Bluish Gray,16 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,White,4 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Trans-Orange,1 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Trans-Neon Orange,1 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Trans-Light Blue,1 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Trans-Clear,2 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Black,50 +Goblet of Fire,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),544,2005,Yellow,2 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Black,27 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Blue,1 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Dark Bluish Gray,13 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Dark Tan,1 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Light Bluish Gray,24 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Light Flesh,3 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Pearl Gold,1 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Red,3 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Reddish Brown,9 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Sand Blue,2 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Tan,14 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Trans-Neon Orange,1 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,White,1 +Goblet of Fire,Harry and the Hungarian Horntail,265,2005,Dark Orange,10 +Goblet of Fire,Rescue from the Merpeople,177,2005,Black,7 +Goblet of Fire,Rescue from the Merpeople,177,2005,Blue,12 +Goblet of Fire,Rescue from the Merpeople,177,2005,Bright Light Orange,1 +Goblet of Fire,Rescue from the Merpeople,177,2005,Chrome Silver,1 +Goblet of Fire,Rescue from the Merpeople,177,2005,Dark Blue,6 +Goblet of Fire,Rescue from the Merpeople,177,2005,Dark Bluish Gray,11 +Goblet of Fire,Rescue from the Merpeople,177,2005,Dark Green,6 +Goblet of Fire,Rescue from the Merpeople,177,2005,Dark Orange,1 +Goblet of Fire,Rescue from the Merpeople,177,2005,Dark Red,1 +Goblet of Fire,Rescue from the Merpeople,177,2005,Dark Tan,1 +Goblet of Fire,Rescue from the Merpeople,177,2005,Green,8 +Goblet of Fire,Rescue from the Merpeople,177,2005,Light Bluish Gray,5 +Goblet of Fire,Rescue from the Merpeople,177,2005,Light Flesh,6 +Goblet of Fire,Rescue from the Merpeople,177,2005,Medium Blue,7 +Goblet of Fire,Rescue from the Merpeople,177,2005,Orange,1 +Goblet of Fire,Rescue from the Merpeople,177,2005,Red,2 +Goblet of Fire,Rescue from the Merpeople,177,2005,Trans-Neon Orange,1 +Goblet of Fire,Rescue from the Merpeople,177,2005,Trans-Light Blue,1 +Goblet of Fire,Rescue from the Merpeople,177,2005,Trans-Green,3 +Goblet of Fire,Rescue from the Merpeople,177,2005,Trans-Dark Blue,2 +Goblet of Fire,Rescue from the Merpeople,177,2005,Sand Blue,1 +Goblet of Fire,Rescue from the Merpeople,177,2005,Reddish Brown,4 +Golden Land,"The Golden Palace, Blue Box",174,2003,Violet,2 +Golden Land,"The Golden Palace, Blue Box",174,2003,White,9 +Golden Land,"The Golden Palace, Blue Box",174,2003,Pink,2 +Golden Land,"The Golden Palace, Blue Box",174,2003,Chrome Gold,7 +Golden Land,"The Golden Palace, Blue Box",174,2003,Black,1 +Golden Land,"The Golden Palace, Blue Box",174,2003,Blue,1 +Golden Land,"The Golden Palace, Blue Box",174,2003,Bright Green,7 +Golden Land,"The Golden Palace, Blue Box",174,2003,Brown,3 +Golden Land,"The Golden Palace, Blue Box",174,2003,Yellow,1 +Golden Land,"The Golden Palace, Blue Box",174,2003,Dark Pink,10 +Golden Land,"The Golden Palace, Blue Box",174,2003,Green,3 +Golden Land,"The Golden Palace, Blue Box",174,2003,Light Orange,1 +Golden Land,"The Golden Palace, Blue Box",174,2003,Magenta,6 +Golden Land,"The Golden Palace, Blue Box",174,2003,Medium Blue,3 +Golden Land,"The Golden Palace, Blue Box",174,2003,Medium Green,1 +Golden Land,"The Golden Palace, Blue Box",174,2003,Medium Orange,9 +Golden Land,"The Golden Palace, Blue Box",174,2003,Orange,8 +Golden Land,"The Golden Palace, Blue Box",174,2003,Purple,5 +Golden Land,"The Golden Palace, Blue Box",174,2003,Red,2 +Golden Land,"The Golden Palace, Blue Box",174,2003,Royal Blue,1 +Golden Land,"The Golden Palace, Blue Box",174,2003,Trans-Bright Green,1 +Golden Land,"The Golden Palace, Blue Box",174,2003,Trans-Dark Pink,5 +Golden Land,"The Golden Palace, Blue Box",174,2003,Trans-Green,7 +Golden Land,"The Golden Palace, Blue Box",174,2003,Trans-Medium Blue,1 +Golden Land,"The Golden Palace, Blue Box",174,2003,Trans-Purple,1 +Golden Land,"The Golden Palace, Blue Box",174,2003,Trans-Red,1 +Golden Land,Safran's Amazing Bazaar,96,2003,Royal Blue,1 +Golden Land,Safran's Amazing Bazaar,96,2003,Red,3 +Golden Land,Safran's Amazing Bazaar,96,2003,Trans-Purple,1 +Golden Land,Safran's Amazing Bazaar,96,2003,Purple,4 +Golden Land,Safran's Amazing Bazaar,96,2003,Pink,3 +Golden Land,Safran's Amazing Bazaar,96,2003,Medium Orange,6 +Golden Land,Safran's Amazing Bazaar,96,2003,Light Yellow,1 +Golden Land,Safran's Amazing Bazaar,96,2003,Medium Blue,1 +Golden Land,Safran's Amazing Bazaar,96,2003,Magenta,2 +Golden Land,Safran's Amazing Bazaar,96,2003,Black,3 +Golden Land,Safran's Amazing Bazaar,96,2003,Dark Pink,4 +Golden Land,Safran's Amazing Bazaar,96,2003,Chrome Silver,1 +Golden Land,Safran's Amazing Bazaar,96,2003,Chrome Gold,5 +Golden Land,Safran's Amazing Bazaar,96,2003,Brown,1 +Golden Land,Safran's Amazing Bazaar,96,2003,Orange,2 +Golden Land,Safran's Amazing Bazaar,96,2003,Earth Orange,2 +Golden Land,Safran's Amazing Bazaar,96,2003,Trans-Dark Pink,4 +Golden Land,Safran's Amazing Bazaar,96,2003,Trans-Green,4 +Golden Land,Safran's Amazing Bazaar,96,2003,Trans-Neon Orange,2 +Golden Land,Safran's Amazing Bazaar,96,2003,Trans-Red,1 +Golden Land,Safran's Amazing Bazaar,96,2003,Trans-Yellow,1 +Golden Land,Safran's Amazing Bazaar,96,2003,Violet,3 +Golden Land,Safran's Amazing Bazaar,96,2003,Yellow,1 +Golden Land,Safran's Amazing Bazaar,96,2003,Bright Green,5 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Purple,3 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Trans-Dark Pink,2 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Light Pink,1 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Trans-Purple,1 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Trans-Green,2 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Yellow,2 +Golden Land,Paprika and the Mischievous Monkey,47,2003,[No Color],1 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Blue,1 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Brown,1 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Dark Pink,4 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Green,3 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Medium Green,1 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Medium Orange,2 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Orange,1 +Golden Land,Paprika and the Mischievous Monkey,47,2003,Bright Green,1 +Golden Land,Golden Land Promo (Polybag),32,2003,Magenta,2 +Golden Land,Golden Land Promo (Polybag),32,2003,Dark Pink,4 +Golden Land,Golden Land Promo (Polybag),32,2003,Bright Green,1 +Golden Land,Golden Land Promo (Polybag),32,2003,Black,1 +Golden Land,Golden Land Promo (Polybag),32,2003,Trans-Neon Orange,1 +Golden Land,Golden Land Promo (Polybag),32,2003,Trans-Green,1 +Golden Land,Golden Land Promo (Polybag),32,2003,White,1 +Golden Land,Golden Land Promo (Polybag),32,2003,Pink,1 +Golden Land,Golden Land Promo (Polybag),32,2003,Trans-Dark Pink,3 +Golden Land,Golden Land Promo (Polybag),32,2003,Red,1 +Golden Land,Golden Land Promo (Polybag),32,2003,Purple,2 +Golden Land,Golden Land Promo (Polybag),32,2003,Orange,1 +Golden Land,Golden Land Promo (Polybag),32,2003,Trans-Purple,1 +Golden Land,Golden Land Promo (Polybag),32,2003,Medium Orange,3 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Black,1 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Blue,1 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Bright Green,7 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Brown,3 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Chrome Gold,7 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Dark Pink,10 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Green,3 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Light Orange,1 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Magenta,6 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Medium Blue,3 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Medium Green,1 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Medium Orange,9 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Orange,8 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Pink,2 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Purple,5 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Red,2 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Royal Blue,1 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Trans-Dark Pink,5 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Trans-Green,8 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Trans-Medium Blue,1 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Trans-Purple,1 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Trans-Red,1 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Violet,2 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,White,9 +Golden Land,"The Golden Palace, Purple/Silver Box",174,2004,Yellow,1 +Gravity Games,Snowboard Super Pipe,224,2003,Light Gray,9 +Gravity Games,Snowboard Super Pipe,224,2003,White,27 +Gravity Games,Snowboard Super Pipe,224,2003,Tan,1 +Gravity Games,Snowboard Super Pipe,224,2003,Red,13 +Gravity Games,Snowboard Super Pipe,224,2003,Dark Gray,2 +Gravity Games,Snowboard Super Pipe,224,2003,Yellow,6 +Gravity Games,Snowboard Super Pipe,224,2003,Green,3 +Gravity Games,Snowboard Super Pipe,224,2003,Blue,14 +Gravity Games,Snowboard Super Pipe,224,2003,Black,8 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Tan,1 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Red,10 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Medium Blue,4 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Light Gray,10 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Blue,15 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Green,2 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Black,10 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Dark Gray,2 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Yellow,6 +Gravity Games,Snowboard Boarder Cross Race,196,2003,White,14 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Trans-Medium Blue,1 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Trans-Green,1 +Gravity Games,Snowboard Boarder Cross Race,196,2003,Trans-Dark Blue,1 +Gravity Games,Skateboard Vert Park Challenge,91,2003,Tan,2 +Gravity Games,Skateboard Vert Park Challenge,91,2003,White,2 +Gravity Games,Skateboard Vert Park Challenge,91,2003,Yellow,4 +Gravity Games,Skateboard Vert Park Challenge,91,2003,[No Color],1 +Gravity Games,Skateboard Vert Park Challenge,91,2003,Black,3 +Gravity Games,Skateboard Vert Park Challenge,91,2003,Blue,4 +Gravity Games,Skateboard Vert Park Challenge,91,2003,Dark Blue,2 +Gravity Games,Skateboard Vert Park Challenge,91,2003,Dark Gray,7 +Gravity Games,Skateboard Vert Park Challenge,91,2003,Dark Tan,2 +Gravity Games,Skateboard Vert Park Challenge,91,2003,Light Gray,15 +Gravity Games,Skateboard Vert Park Challenge,91,2003,Medium Blue,1 +Gravity Games,Skateboard Vert Park Challenge,91,2003,Red,1 +Gravity Games,Snowboard Big Air Comp,81,2003,Yellow,3 +Gravity Games,Snowboard Big Air Comp,81,2003,Green,1 +Gravity Games,Snowboard Big Air Comp,81,2003,Black,5 +Gravity Games,Snowboard Big Air Comp,81,2003,Blue,7 +Gravity Games,Snowboard Big Air Comp,81,2003,Dark Blue,1 +Gravity Games,Snowboard Big Air Comp,81,2003,Dark Gray,2 +Gravity Games,Snowboard Big Air Comp,81,2003,Light Gray,5 +Gravity Games,Snowboard Big Air Comp,81,2003,Red,7 +Gravity Games,Snowboard Big Air Comp,81,2003,White,12 +Gravity Games,Skateboard Street Park,68,2003,Yellow,2 +Gravity Games,Skateboard Street Park,68,2003,White,3 +Gravity Games,Skateboard Street Park,68,2003,Trans-Clear,1 +Gravity Games,Skateboard Street Park,68,2003,Tan,1 +Gravity Games,Skateboard Street Park,68,2003,Red,4 +Gravity Games,Skateboard Street Park,68,2003,Light Gray,6 +Gravity Games,Skateboard Street Park,68,2003,Green,1 +Gravity Games,Skateboard Street Park,68,2003,Dark Gray,4 +Gravity Games,Skateboard Street Park,68,2003,Dark Blue,1 +Gravity Games,Skateboard Street Park,68,2003,Brown,3 +Gravity Games,Skateboard Street Park,68,2003,Black,2 +Gravity Games,Gravity Games Promotional Set,17,2003,Blue,1 +Gravity Games,Gravity Games Promotional Set,17,2003,Light Gray,3 +Gravity Games,Gravity Games Promotional Set,17,2003,Medium Orange,3 +Gravity Games,Gravity Games Promotional Set,17,2003,White,2 +Gravity Games,Gravity Games Promotional Set,17,2003,Yellow,1 +Gravity Games,Skateboard Bill,17,2003,Black,2 +Gravity Games,Skateboard Bill,17,2003,Brown,1 +Gravity Games,Skateboard Bill,17,2003,Green,2 +Gravity Games,Skateboard Bill,17,2003,Light Gray,4 +Gravity Games,Skateboard Bill,17,2003,Lime,1 +Gravity Games,Skateboard Bill,17,2003,Tan,1 +Gravity Games,Gravity Games Promotional Set,17,2003,Black,3 +Gravity Games,Skateboard Bill,17,2003,Yellow,1 +Gravity Games,Skateboard Bill,17,2003,White,1 +Gravity Games,Skateboarder Bill Chupa Chups Promotional,7,2003,Yellow,1 +Gravity Games,Skateboarder Bill Chupa Chups Promotional,7,2003,Light Gray,1 +Gravity Games,Skateboarder Bill Chupa Chups Promotional,7,2003,Green,2 +Gravity Games,Skateboarder Bill Chupa Chups Promotional,7,2003,Black,1 +Gravity Games,Skateboarder Bill Chupa Chups Promotional,7,2003,White,1 +Gravity Games,McDonald's Sports Set Number 7 - Gray Vest Skateboarder,5,2004,Pearl Light Gray,1 +Gravity Games,McDonald's Sports Set Number 7 - Gray Vest Skateboarder,5,2004,Tan,1 +Gravity Games,McDonald's Sports Set Number 7 - Gray Vest Skateboarder,5,2004,Dark Gray,1 +Gravity Games,McDonald's Sports Set Number 7 - Gray Vest Skateboarder,5,2004,Dark Orange,1 +Gravity Games,McDonald's Sports Set Number 7 - Gray Vest Skateboarder,5,2004,Light Bluish Gray,1 +Gravity Games,McDonald's Sports Set Number 6 - Orange Vest Snowboarder,4,2004,Black,1 +Gravity Games,McDonald's Sports Set Number 6 - Orange Vest Snowboarder,4,2004,Light Gray,1 +Gravity Games,McDonald's Sports Set Number 6 - Orange Vest Snowboarder,4,2004,Orange,1 +Gravity Games,McDonald's Sports Set Number 6 - Orange Vest Snowboarder,4,2004,Dark Bluish Gray,1 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Medium Dark Flesh,3 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Black,55 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Blue,28 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Bright Light Orange,9 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Dark Bluish Gray,38 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Dark Red,10 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Dark Tan,1 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Flat Silver,10 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Light Bluish Gray,54 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Light Flesh,1 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Lime,2 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Metallic Silver,1 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Orange,2 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Pearl Dark Gray,3 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Pearl Gold,1 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Red,10 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Reddish Brown,1 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Trans-Black,1 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Trans-Dark Blue,3 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Trans-Light Blue,6 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Trans-Orange,4 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Trans-Red,3 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Trans-Yellow,3 +Guardians of the Galaxy,The Milano Spaceship Rescue,664,2014,Yellow,6 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Trans-Neon Orange,4 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Trans-Orange,3 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Trans-Red,1 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Trans-Yellow,4 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,White,1 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Yellow,5 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Black,25 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Blue,3 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Dark Azure,4 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Dark Blue,2 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Dark Bluish Gray,37 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Dark Brown,3 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Dark Green,2 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Dark Purple,2 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Dark Red,9 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Dark Tan,2 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Flat Silver,4 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Green,1 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Light Bluish Gray,30 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Medium Azure,2 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Medium Dark Flesh,1 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Metallic Silver,1 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Orange,2 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Pearl Dark Gray,1 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Red,2 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Reddish Brown,13 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Tan,1 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Trans-Black,2 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Trans-Clear,2 +Guardians of the Galaxy,Knowhere Escape Mission,432,2014,Trans-Light Blue,3 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Medium Dark Flesh,1 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Metallic Silver,1 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Pearl Dark Gray,3 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Red,2 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Black,18 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Trans-Dark Blue,1 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Trans-Light Blue,2 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Trans-Orange,2 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Trans-Red,1 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Trans-Yellow,1 +Guardians of the Galaxy,Starblaster Showdown,195,2014,White,1 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Yellow,8 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Light Flesh,2 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Light Bluish Gray,9 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Flat Silver,1 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Dark Red,6 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Dark Bluish Gray,12 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Dark Blue,15 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Blue,1 +Guardians of the Galaxy,Starblaster Showdown,195,2014,Trans-Black,2 +Guardians of the Galaxy,Rocket Raccoon’s Warbird,145,2014,White,4 +Guardians of the Galaxy,Rocket Raccoon’s Warbird,145,2014,Flat Silver,2 +Guardians of the Galaxy,Rocket Raccoon’s Warbird,145,2014,Black,16 +Guardians of the Galaxy,Rocket Raccoon’s Warbird,145,2014,Dark Bluish Gray,29 +Guardians of the Galaxy,Rocket Raccoon’s Warbird,145,2014,Dark Red,2 +Guardians of the Galaxy,Rocket Raccoon’s Warbird,145,2014,Trans-Red,2 +Guardians of the Galaxy,Rocket Raccoon’s Warbird,145,2014,Light Bluish Gray,3 +Guardians of the Galaxy,Rocket Raccoon’s Warbird,145,2014,Orange,4 +Guardians of the Galaxy,Rocket Raccoon’s Warbird,145,2014,Red,2 +Guardians of the Galaxy,Rocket Raccoon’s Warbird,145,2014,Trans-Black,1 +Guardians of the Galaxy,Rocket Raccoon,12,2014,Black,2 +Guardians of the Galaxy,Rocket Raccoon,12,2014,Pearl Gold,1 +Guardians of the Galaxy,Rocket Raccoon,12,2014,Trans-Black,1 +Guardians of the Galaxy,Rocket Raccoon,12,2014,Reddish Brown,1 +Guardians of the Galaxy,Rocket Raccoon,12,2014,Dark Red,2 +Guardians of the Galaxy,Rocket Raccoon,12,2014,Dark Bluish Gray,5 +Guardians of the Galaxy,The Collector - San Diego Comic-Con 2014 Exclusive,8,2014,White,2 +Guardians of the Galaxy,The Collector - San Diego Comic-Con 2014 Exclusive,8,2014,Trans-Red,1 +Guardians of the Galaxy,The Collector - San Diego Comic-Con 2014 Exclusive,8,2014,Light Flesh,1 +Guardians of the Galaxy,The Collector - San Diego Comic-Con 2014 Exclusive,8,2014,Dark Red,1 +Guardians of the Galaxy,The Collector - San Diego Comic-Con 2014 Exclusive,8,2014,Black,2 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Flat Silver,1 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Pearl Dark Gray,2 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Orange,11 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Medium Dark Flesh,2 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Medium Blue,1 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Medium Azure,1 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Lime,3 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Dark Red,2 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Light Flesh,1 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Black,18 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Red,10 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Blue,20 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Bright Pink,3 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Dark Azure,1 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Dark Blue,1 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Dark Bluish Gray,35 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Dark Pink,3 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Light Bluish Gray,37 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Yellow,3 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,White,4 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Trans-Yellow,1 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Dark Purple,2 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Trans-Purple,1 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Trans-Light Blue,2 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Trans-Clear,1 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Tan,7 +Guardians of the Galaxy,The Milano vs. The Abilisk,456,2017,Reddish Brown,3 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Pearl Dark Gray,1 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Pearl Gold,6 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Red,16 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Tan,1 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Trans-Clear,4 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Trans-Light Blue,3 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Trans-Purple,2 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Trans-Red,2 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Trans-Yellow,1 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Yellow,11 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,White,3 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Metallic Gold,1 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Black,35 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Blue,3 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Bright Light Orange,7 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Dark Bluish Gray,14 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Dark Red,5 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Dark Tan,1 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Green,1 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Light Bluish Gray,19 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Medium Azure,2 +Guardians of the Galaxy,Ayesha's Revenge,304,2017,Medium Dark Flesh,2 +Guardians of the Galaxy,Ravager Attack,196,2017,Black,22 +Guardians of the Galaxy,Ravager Attack,196,2017,Blue,2 +Guardians of the Galaxy,Ravager Attack,196,2017,Dark Blue,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Dark Bluish Gray,24 +Guardians of the Galaxy,Ravager Attack,196,2017,Dark Brown,3 +Guardians of the Galaxy,Ravager Attack,196,2017,Dark Green,2 +Guardians of the Galaxy,Ravager Attack,196,2017,Light Bluish Gray,19 +Guardians of the Galaxy,Ravager Attack,196,2017,Yellow,2 +Guardians of the Galaxy,Ravager Attack,196,2017,Trans-Light Blue,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Trans-Clear,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Trans-Black,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Tan,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Reddish Brown,9 +Guardians of the Galaxy,Ravager Attack,196,2017,Red,6 +Guardians of the Galaxy,Ravager Attack,196,2017,Trans-Orange,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Orange,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Olive Green,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Medium Lavender,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Lime,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Light Flesh,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Green,3 +Guardians of the Galaxy,Ravager Attack,196,2017,Flat Silver,1 +Guardians of the Galaxy,Ravager Attack,196,2017,Dark Red,2 +Halloween,Halloween Bucket,256,1998,Black,19 +Halloween,Halloween Bucket,256,1998,Blue,6 +Halloween,Halloween Bucket,256,1998,Bright Green,1 +Halloween,Halloween Bucket,256,1998,Dark Gray,1 +Halloween,Halloween Bucket,256,1998,Green,9 +Halloween,Halloween Bucket,256,1998,Light Gray,2 +Halloween,Halloween Bucket,256,1998,Orange,13 +Halloween,Halloween Bucket,256,1998,Red,8 +Halloween,Halloween Bucket,256,1998,Trans-Light Blue,1 +Halloween,Halloween Bucket,256,1998,White,11 +Halloween,Halloween Bucket,256,1998,Yellow,16 +Halloween,Vampire and Bat,150,2016,Black,31 +Halloween,Vampire and Bat,150,2016,Dark Bluish Gray,8 +Halloween,Vampire and Bat,150,2016,Dark Purple,3 +Halloween,Vampire and Bat,150,2016,Flat Silver,1 +Halloween,Vampire and Bat,150,2016,Light Bluish Gray,12 +Halloween,Vampire and Bat,150,2016,Lime,1 +Halloween,Vampire and Bat,150,2016,Medium Lavender,3 +Halloween,Vampire and Bat,150,2016,Red,1 +Halloween,Vampire and Bat,150,2016,White,8 +Harbor,Boats,107,1961,Blue,8 +Harbor,Boats,107,1961,Red,2 +Harbor,Boats,107,1961,Trans-Clear,1 +Harbor,Boats,107,1961,White,8 +Harbor,Boats,107,1961,Yellow,1 +Harbor,Train Ferry,147,1968,Black,6 +Harbor,Train Ferry,147,1968,Blue,2 +Harbor,Train Ferry,147,1968,Light Gray,1 +Harbor,Train Ferry,147,1968,Red,4 +Harbor,Train Ferry,147,1968,Trans-Clear,1 +Harbor,Train Ferry,147,1968,White,12 +Harbor,Harbour Scene,515,1975,Black,22 +Harbor,Harbour Scene,515,1975,Blue,19 +Harbor,Harbour Scene,515,1975,Green,3 +Harbor,Harbour Scene,515,1975,Light Gray,3 +Harbor,Harbour Scene,515,1975,Red,41 +Harbor,Harbour Scene,515,1975,Royal Blue,1 +Harbor,Harbour Scene,515,1975,Trans-Clear,6 +Harbor,Harbour Scene,515,1975,White,24 +Harbor,Harbour Scene,515,1975,Yellow,13 +Harbor,Hovercraft,60,1977,Black,6 +Harbor,Hovercraft,60,1977,Light Gray,3 +Harbor,Hovercraft,60,1977,Red,5 +Harbor,Hovercraft,60,1977,Trans-Clear,2 +Harbor,Hovercraft,60,1977,White,7 +Harbor,Steamboat,64,1985,[No Color],2 +Harbor,Steamboat,64,1985,Black,1 +Harbor,Steamboat,64,1985,Blue,2 +Harbor,Steamboat,64,1985,Earth Orange,1 +Harbor,Steamboat,64,1985,Fabuland Brown,2 +Harbor,Steamboat,64,1985,Light Gray,1 +Harbor,Steamboat,64,1985,Red,8 +Harbor,Steamboat,64,1985,Yellow,8 +Harbor,RV with Speedboat,129,1986,Black,8 +Harbor,RV with Speedboat,129,1986,Blue,17 +Harbor,RV with Speedboat,129,1986,Light Gray,1 +Harbor,RV with Speedboat,129,1986,Red,12 +Harbor,RV with Speedboat,129,1986,Trans-Clear,5 +Harbor,RV with Speedboat,129,1986,Trans-Light Blue,1 +Harbor,RV with Speedboat,129,1986,Trans-Red,2 +Harbor,RV with Speedboat,129,1986,Trans-Yellow,2 +Harbor,RV with Speedboat,129,1986,White,25 +Harbor,RV with Speedboat,129,1986,Yellow,2 +Harbor,Rowboat,14,1988,[No Color],2 +Harbor,Rowboat,14,1988,Red,2 +Harbor,Rowboat,14,1988,White,3 +Harbor,Rowboat,14,1988,Yellow,4 +Harbor,Supply Ship,531,1992,Black,30 +Harbor,Supply Ship,531,1992,Dark Gray,2 +Harbor,Supply Ship,531,1992,Light Gray,42 +Harbor,Supply Ship,531,1992,Red,25 +Harbor,Supply Ship,531,1992,Trans-Green,1 +Harbor,Supply Ship,531,1992,Trans-Red,1 +Harbor,Supply Ship,531,1992,White,11 +Harbor,Supply Ship,531,1992,Yellow,1 +Harbor,Hydro Racer / Swamp Boat,46,1999,Black,14 +Harbor,Hydro Racer / Swamp Boat,46,1999,Light Gray,4 +Harbor,Hydro Racer / Swamp Boat,46,1999,Red,1 +Harbor,Hydro Racer / Swamp Boat,46,1999,White,1 +Harbor,Hydro Racer / Swamp Boat,46,1999,Yellow,5 +Harbor,Speedboat,22,1999,Black,6 +Harbor,Speedboat,22,1999,Red,6 +Harbor,Speedboat,22,1999,Trans-Dark Blue,1 +Harbor,Speedboat,22,1999,White,2 +Harbor,Speedboat,22,1999,Yellow,4 +Harbor,Hovercraft Hideout,273,2003,[No Color],1 +Harbor,Hovercraft Hideout,273,2003,Black,42 +Harbor,Hovercraft Hideout,273,2003,Blue,20 +Harbor,Hovercraft Hideout,273,2003,Brown,4 +Harbor,Hovercraft Hideout,273,2003,Dark Gray,16 +Harbor,Hovercraft Hideout,273,2003,Green,2 +Harbor,Hovercraft Hideout,273,2003,Light Gray,28 +Harbor,Hovercraft Hideout,273,2003,Red,2 +Harbor,Hovercraft Hideout,273,2003,Tan,1 +Harbor,Hovercraft Hideout,273,2003,Trans-Black,1 +Harbor,Hovercraft Hideout,273,2003,Trans-Clear,1 +Harbor,Hovercraft Hideout,273,2003,Trans-Dark Blue,1 +Harbor,Hovercraft Hideout,273,2003,Trans-Green,1 +Harbor,Hovercraft Hideout,273,2003,Trans-Red,2 +Harbor,Hovercraft Hideout,273,2003,Trans-Yellow,3 +Harbor,Hovercraft Hideout,273,2003,White,4 +Harbor,Hovercraft Hideout,273,2003,Yellow,3 +Harbor,Sea Plane,119,2004,Black,7 +Harbor,Sea Plane,119,2004,Blue,1 +Harbor,Sea Plane,119,2004,Dark Bluish Gray,19 +Harbor,Sea Plane,119,2004,Light Bluish Gray,6 +Harbor,Sea Plane,119,2004,Red,18 +Harbor,Sea Plane,119,2004,Trans-Black,2 +Harbor,Sea Plane,119,2004,Trans-Clear,1 +Harbor,Sea Plane,119,2004,Trans-Green,1 +Harbor,Sea Plane,119,2004,Trans-Red,1 +Harbor,Sea Plane,119,2004,White,13 +Harbor,Sea Plane,119,2004,Yellow,1 +Harbor,LEGO City Harbor,660,2007,[No Color],1 +Harbor,LEGO City Harbor,660,2007,Black,47 +Harbor,LEGO City Harbor,660,2007,Blue,19 +Harbor,LEGO City Harbor,660,2007,Dark Bluish Gray,39 +Harbor,LEGO City Harbor,660,2007,Green,4 +Harbor,LEGO City Harbor,660,2007,Light Bluish Gray,39 +Harbor,LEGO City Harbor,660,2007,Medium Blue,2 +Harbor,LEGO City Harbor,660,2007,Orange,2 +Harbor,LEGO City Harbor,660,2007,Red,25 +Harbor,LEGO City Harbor,660,2007,Reddish Brown,5 +Harbor,LEGO City Harbor,660,2007,Trans-Black,4 +Harbor,LEGO City Harbor,660,2007,Trans-Clear,3 +Harbor,LEGO City Harbor,660,2007,Trans-Green,2 +Harbor,LEGO City Harbor,660,2007,Trans-Orange,1 +Harbor,LEGO City Harbor,660,2007,Trans-Red,2 +Harbor,LEGO City Harbor,660,2007,Trans-Yellow,3 +Harbor,LEGO City Harbor,660,2007,White,32 +Harbor,LEGO City Harbor,660,2007,Yellow,16 +Harbor,Transport Ferry,1279,2008,Black,31 +Harbor,Transport Ferry,1279,2008,Blue,19 +Harbor,Transport Ferry,1279,2008,Dark Bluish Gray,36 +Harbor,Transport Ferry,1279,2008,Light Bluish Gray,40 +Harbor,Transport Ferry,1279,2008,Orange,9 +Harbor,Transport Ferry,1279,2008,Red,13 +Harbor,Transport Ferry,1279,2008,Tan,1 +Harbor,Transport Ferry,1279,2008,Trans-Black,1 +Harbor,Transport Ferry,1279,2008,Trans-Clear,4 +Harbor,Transport Ferry,1279,2008,Trans-Green,2 +Harbor,Transport Ferry,1279,2008,Trans-Neon Green,1 +Harbor,Transport Ferry,1279,2008,Trans-Orange,1 +Harbor,Transport Ferry,1279,2008,Trans-Red,2 +Harbor,Transport Ferry,1279,2008,Trans-Yellow,1 +Harbor,Transport Ferry,1279,2008,White,33 +Harbor,Transport Ferry,1279,2008,Yellow,17 +Harbor,Ferry,301,2016,[No Color],1 +Harbor,Ferry,301,2016,Black,19 +Harbor,Ferry,301,2016,Blue,4 +Harbor,Ferry,301,2016,Dark Bluish Gray,13 +Harbor,Ferry,301,2016,Dark Orange,1 +Harbor,Ferry,301,2016,Green,1 +Harbor,Ferry,301,2016,Light Bluish Gray,13 +Harbor,Ferry,301,2016,Red,10 +Harbor,Ferry,301,2016,Trans-Black,1 +Harbor,Ferry,301,2016,Trans-Clear,2 +Harbor,Ferry,301,2016,Trans-Green,1 +Harbor,Ferry,301,2016,Trans-Light Blue,2 +Harbor,Ferry,301,2016,Trans-Orange,1 +Harbor,Ferry,301,2016,Trans-Red,2 +Harbor,Ferry,301,2016,Trans-Yellow,1 +Harbor,Ferry,301,2016,White,26 +Harbor,Ferry,301,2016,Yellow,17 +Harry Potter,Hogwarts Express,412,2001,Black,43 +Harry Potter,Hogwarts Express,412,2001,Blue,3 +Harry Potter,Hogwarts Express,412,2001,Brown,8 +Harry Potter,Hogwarts Express,412,2001,Chrome Antique Brass,1 +Harry Potter,Hogwarts Express,412,2001,Dark Gray,16 +Harry Potter,Hogwarts Express,412,2001,Earth Orange,1 +Harry Potter,Hogwarts Express,412,2001,Green,2 +Harry Potter,Hogwarts Express,412,2001,Light Gray,16 +Harry Potter,Hogwarts Express,412,2001,Red,31 +Harry Potter,Hogwarts Express,412,2001,Tan,9 +Harry Potter,Hogwarts Express,412,2001,Trans-Clear,2 +Harry Potter,Hogwarts Express,412,2001,White,5 +Harry Potter,Hogwarts Express,412,2001,Yellow,7 +Harry Potter,Diagon Alley,2031,2011,Black,78 +Harry Potter,Diagon Alley,2031,2011,Blue,3 +Harry Potter,Diagon Alley,2031,2011,Bright Pink,1 +Harry Potter,Diagon Alley,2031,2011,Chrome Gold,4 +Harry Potter,Diagon Alley,2031,2011,Dark Blue,8 +Harry Potter,Diagon Alley,2031,2011,Dark Bluish Gray,45 +Harry Potter,Diagon Alley,2031,2011,Dark Brown,4 +Harry Potter,Diagon Alley,2031,2011,Dark Green,9 +Harry Potter,Diagon Alley,2031,2011,Dark Orange,5 +Harry Potter,Diagon Alley,2031,2011,Dark Purple,1 +Harry Potter,Diagon Alley,2031,2011,Dark Red,9 +Harry Potter,Diagon Alley,2031,2011,Dark Tan,2 +Harry Potter,Diagon Alley,2031,2011,Flat Silver,1 +Harry Potter,Diagon Alley,2031,2011,Glow In Dark Trans,1 +Harry Potter,Diagon Alley,2031,2011,Light Bluish Gray,29 +Harry Potter,Diagon Alley,2031,2011,Light Flesh,9 +Harry Potter,Diagon Alley,2031,2011,Medium Blue,1 +Harry Potter,Diagon Alley,2031,2011,Metallic Silver,1 +Harry Potter,Diagon Alley,2031,2011,Pearl Gold,8 +Harry Potter,Diagon Alley,2031,2011,Red,1 +Harry Potter,Diagon Alley,2031,2011,Reddish Brown,39 +Harry Potter,Diagon Alley,2031,2011,Sand Green,6 +Harry Potter,Diagon Alley,2031,2011,Tan,31 +Harry Potter,Diagon Alley,2031,2011,Trans-Black,1 +Harry Potter,Diagon Alley,2031,2011,Trans-Clear,2 +Harry Potter,Diagon Alley,2031,2011,Trans-Green,1 +Harry Potter,Diagon Alley,2031,2011,Trans-Neon Orange,1 +Harry Potter,Diagon Alley,2031,2011,Trans-Red,1 +Harry Potter,Diagon Alley,2031,2011,Trans-Yellow,2 +Harry Potter,Diagon Alley,2031,2011,White,50 +Harry Potter,Hogwarts,465,2011,[No Color],1 +Harry Potter,Hogwarts,465,2011,Black,11 +Harry Potter,Hogwarts,465,2011,Blue,1 +Harry Potter,Hogwarts,465,2011,Dark Bluish Gray,30 +Harry Potter,Hogwarts,465,2011,Dark Brown,1 +Harry Potter,Hogwarts,465,2011,Dark Green,3 +Harry Potter,Hogwarts,465,2011,Dark Orange,1 +Harry Potter,Hogwarts,465,2011,Dark Red,2 +Harry Potter,Hogwarts,465,2011,Dark Tan,11 +Harry Potter,Hogwarts,465,2011,Green,1 +Harry Potter,Hogwarts,465,2011,Light Bluish Gray,10 +Harry Potter,Hogwarts,465,2011,Light Flesh,6 +Harry Potter,Hogwarts,465,2011,Lime,1 +Harry Potter,Hogwarts,465,2011,Medium Dark Flesh,2 +Harry Potter,Hogwarts,465,2011,Pearl Gold,1 +Harry Potter,Hogwarts,465,2011,Red,3 +Harry Potter,Hogwarts,465,2011,Reddish Brown,17 +Harry Potter,Hogwarts,465,2011,Sand Green,7 +Harry Potter,Hogwarts,465,2011,Tan,23 +Harry Potter,Hogwarts,465,2011,Trans-Black,1 +Harry Potter,Hogwarts,465,2011,Trans-Clear,2 +Harry Potter,Hogwarts,465,2011,Trans-Dark Blue,1 +Harry Potter,Hogwarts,465,2011,Trans-Light Blue,1 +Harry Potter,Hogwarts,465,2011,Trans-Neon Orange,1 +Harry Potter,Hogwarts,465,2011,White,7 +Harry Potter,Hogwarts,465,2011,Yellow,2 +Harry Potter,The Knight Bus,281,2011,Dark Blue,1 +Harry Potter,The Knight Bus,281,2011,Dark Bluish Gray,6 +Harry Potter,The Knight Bus,281,2011,Dark Purple,12 +Harry Potter,The Knight Bus,281,2011,Dark Tan,1 +Harry Potter,The Knight Bus,281,2011,Light Bluish Gray,13 +Harry Potter,The Knight Bus,281,2011,Light Flesh,3 +Harry Potter,The Knight Bus,281,2011,Reddish Brown,7 +Harry Potter,The Knight Bus,281,2011,Tan,3 +Harry Potter,The Knight Bus,281,2011,Sand Green,1 +Harry Potter,The Knight Bus,281,2011,Black,23 +Harry Potter,The Knight Bus,281,2011,Blue,3 +Harry Potter,The Knight Bus,281,2011,Trans-Clear,5 +Harry Potter,The Knight Bus,281,2011,Trans-Red,1 +Harry Potter,The Knight Bus,281,2011,Trans-Yellow,1 +Harry Potter,The Knight Bus,281,2011,White,3 +Harry Potter,Mini Hogwarts Express,64,2011,Yellow,2 +Harry Potter,The Forbidden Forest,64,2011,Black,13 +Harry Potter,The Forbidden Forest,64,2011,Dark Bluish Gray,1 +Harry Potter,The Forbidden Forest,64,2011,Dark Green,1 +Harry Potter,The Forbidden Forest,64,2011,Dark Tan,2 +Harry Potter,The Forbidden Forest,64,2011,Green,1 +Harry Potter,The Forbidden Forest,64,2011,Light Bluish Gray,1 +Harry Potter,The Forbidden Forest,64,2011,Light Flesh,3 +Harry Potter,The Forbidden Forest,64,2011,Red,1 +Harry Potter,The Forbidden Forest,64,2011,Reddish Brown,2 +Harry Potter,The Forbidden Forest,64,2011,Tan,2 +Harry Potter,The Forbidden Forest,64,2011,Trans-Dark Blue,1 +Harry Potter,The Forbidden Forest,64,2011,Trans-Light Blue,1 +Harry Potter,The Forbidden Forest,64,2011,White,3 +Harry Potter,The Forbidden Forest,64,2011,Dark Brown,8 +Harry Potter,Mini Hogwarts Express,64,2011,Black,8 +Harry Potter,Mini Hogwarts Express,64,2011,Light Bluish Gray,1 +Harry Potter,Mini Hogwarts Express,64,2011,Red,11 +Harry Potter,Mini Hogwarts Express,64,2011,White,1 +Harry Potter,The Lab,34,2011,Black,3 +Harry Potter,The Lab,34,2011,Dark Bluish Gray,1 +Harry Potter,The Lab,34,2011,Light Flesh,1 +Harry Potter,The Lab,34,2011,Pearl Gold,1 +Harry Potter,The Lab,34,2011,Reddish Brown,3 +Harry Potter,The Lab,34,2011,Tan,3 +Harry Potter,The Lab,34,2011,Trans-Dark Blue,1 +Harry Potter,The Lab,34,2011,Trans-Green,1 +Harry Potter,The Lab,34,2011,Trans-Orange,1 +Harry Potter,The Lab,34,2011,Trans-Red,1 +Harry Potter,The Lab,34,2011,Trans-Yellow,1 +Harry Potter,The Lab,34,2011,White,2 +Harry Potter,Trolley,22,2011,Black,3 +Harry Potter,Trolley,22,2011,Dark Blue,1 +Harry Potter,Trolley,22,2011,Dark Bluish Gray,3 +Harry Potter,Trolley,22,2011,Light Bluish Gray,1 +Harry Potter,Trolley,22,2011,Light Flesh,1 +Harry Potter,Trolley,22,2011,Pearl Gold,1 +Harry Potter,Trolley,22,2011,Red,1 +Harry Potter,Trolley,22,2011,Reddish Brown,3 +Harry Potter,Trolley,22,2011,White,1 +Hero Factory,Hero Factory Accessories,6,2011,Black,1 +Hero Factory,Hero Factory Accessories,6,2011,Flat Silver,1 +Hero Factory,Hero Factory Accessories,6,2011,Pearl Dark Gray,1 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Tan,1 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Trans-Bright Green,5 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Trans-Light Blue,2 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Trans-Neon Green,2 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Unknown,1 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,White,4 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Yellow,7 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Black,23 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Blue,5 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Bright Light Blue,1 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Dark Bluish Gray,8 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Dark Brown,1 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Flat Silver,3 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Light Bluish Gray,1 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Lime,2 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Medium Azure,2 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Orange,1 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Pearl Dark Gray,1 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Pearl Gold,5 +Hero Factory,"QUEEN Beast vs. FURNO, EVO & STORMER",216,2014,Red,5 +Hero Factory,EVO XL Machine,192,2014,Trans-Black,1 +Hero Factory,EVO XL Machine,192,2014,White,1 +Hero Factory,EVO XL Machine,192,2014,Trans-Neon Green,1 +Hero Factory,EVO XL Machine,192,2014,Trans-Light Blue,1 +Hero Factory,EVO XL Machine,192,2014,Red,3 +Hero Factory,EVO XL Machine,192,2014,Trans-Bright Green,5 +Hero Factory,EVO XL Machine,192,2014,Pearl Dark Gray,5 +Hero Factory,EVO XL Machine,192,2014,Orange,1 +Hero Factory,EVO XL Machine,192,2014,Lime,1 +Hero Factory,EVO XL Machine,192,2014,Light Bluish Gray,4 +Hero Factory,EVO XL Machine,192,2014,Flat Silver,1 +Hero Factory,EVO XL Machine,192,2014,Tan,1 +Hero Factory,EVO XL Machine,192,2014,Dark Bluish Gray,8 +Hero Factory,EVO XL Machine,192,2014,Black,20 +Hero Factory,EVO XL Machine,192,2014,Blue,2 +Hero Factory,EVO XL Machine,192,2014,Yellow,8 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Bright Light Blue,1 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Black,16 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Orange,1 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Pearl Dark Gray,3 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Trans-Neon Orange,2 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Yellow,3 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,White,1 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Trans-Yellow,1 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Trans-Orange,1 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Trans-Neon Green,1 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Trans-Light Blue,1 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Red,5 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Dark Bluish Gray,6 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Medium Azure,2 +Hero Factory,SPLITTER Beast vs. FURNO & EVO,108,2014,Light Bluish Gray,7 +Hero Factory,FLYER Beast vs. BREEZ,91,2014,Flat Silver,1 +Hero Factory,FLYER Beast vs. BREEZ,91,2014,Light Bluish Gray,1 +Hero Factory,FLYER Beast vs. BREEZ,91,2014,Lime,3 +Hero Factory,FLYER Beast vs. BREEZ,91,2014,Medium Azure,2 +Hero Factory,FLYER Beast vs. BREEZ,91,2014,Trans-Orange,2 +Hero Factory,FLYER Beast vs. BREEZ,91,2014,White,1 +Hero Factory,FLYER Beast vs. BREEZ,91,2014,Yellow,4 +Hero Factory,FLYER Beast vs. BREEZ,91,2014,Black,23 +Hero Factory,FLYER Beast vs. BREEZ,91,2014,Dark Bluish Gray,2 +Hero Factory,FLYER Beast vs. BREEZ,91,2014,Red,2 +Hero Factory,ROCKA Stealth Machine,88,2014,Blue,1 +Hero Factory,ROCKA Stealth Machine,88,2014,Dark Bluish Gray,6 +Hero Factory,ROCKA Stealth Machine,88,2014,Flat Silver,1 +Hero Factory,ROCKA Stealth Machine,88,2014,Lime,2 +Hero Factory,ROCKA Stealth Machine,88,2014,Orange,1 +Hero Factory,ROCKA Stealth Machine,88,2014,Pearl Dark Gray,4 +Hero Factory,ROCKA Stealth Machine,88,2014,Tan,1 +Hero Factory,ROCKA Stealth Machine,88,2014,Pearl Gold,4 +Hero Factory,ROCKA Stealth Machine,88,2014,Red,1 +Hero Factory,ROCKA Stealth Machine,88,2014,Trans-Black,1 +Hero Factory,ROCKA Stealth Machine,88,2014,Trans-Bright Green,5 +Hero Factory,ROCKA Stealth Machine,88,2014,White,1 +Hero Factory,ROCKA Stealth Machine,88,2014,Black,17 +Hero Factory,STORMER Freeze Machine,87,2014,Trans-Orange,2 +Hero Factory,STORMER Freeze Machine,87,2014,White,8 +Hero Factory,STORMER Freeze Machine,87,2014,Pearl Dark Gray,5 +Hero Factory,STORMER Freeze Machine,87,2014,Black,16 +Hero Factory,STORMER Freeze Machine,87,2014,Blue,2 +Hero Factory,STORMER Freeze Machine,87,2014,Dark Bluish Gray,5 +Hero Factory,STORMER Freeze Machine,87,2014,Flat Silver,2 +Hero Factory,STORMER Freeze Machine,87,2014,Light Bluish Gray,3 +Hero Factory,STORMER Freeze Machine,87,2014,Orange,2 +Hero Factory,STORMER Freeze Machine,87,2014,Red,2 +Hero Factory,STORMER Freeze Machine,87,2014,Tan,1 +Hero Factory,STORMER Freeze Machine,87,2014,Trans-Light Blue,3 +Hero Factory,STORMER Freeze Machine,87,2014,Trans-Neon Orange,1 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Blue,2 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Dark Bluish Gray,4 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Dark Brown,1 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Flat Silver,3 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Lime,2 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Pearl Dark Gray,1 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Red,1 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Trans-Bright Green,1 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Trans-Light Blue,4 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Trans-Neon Green,1 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Trans-Orange,1 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,White,1 +Hero Factory,CRYSTAL Beast vs. BULK,83,2014,Black,18 +Hero Factory,FURNO Jet Machine,78,2014,Orange,1 +Hero Factory,FURNO Jet Machine,78,2014,Lime,1 +Hero Factory,FURNO Jet Machine,78,2014,Light Bluish Gray,3 +Hero Factory,FURNO Jet Machine,78,2014,Flat Silver,2 +Hero Factory,FURNO Jet Machine,78,2014,Dark Bluish Gray,2 +Hero Factory,FURNO Jet Machine,78,2014,Bright Light Blue,1 +Hero Factory,FURNO Jet Machine,78,2014,Blue,1 +Hero Factory,FURNO Jet Machine,78,2014,Black,12 +Hero Factory,FURNO Jet Machine,78,2014,Yellow,1 +Hero Factory,FURNO Jet Machine,78,2014,White,1 +Hero Factory,FURNO Jet Machine,78,2014,Trans-Red,1 +Hero Factory,FURNO Jet Machine,78,2014,Trans-Neon Orange,1 +Hero Factory,FURNO Jet Machine,78,2014,Trans-Clear,1 +Hero Factory,FURNO Jet Machine,78,2014,Trans-Black,1 +Hero Factory,FURNO Jet Machine,78,2014,Tan,1 +Hero Factory,FURNO Jet Machine,78,2014,Red,7 +Hero Factory,FURNO Jet Machine,78,2014,Pearl Dark Gray,3 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,Dark Bluish Gray,3 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,Blue,4 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,White,1 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,Trans-Light Blue,1 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,Trans-Bright Green,1 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,Lime,1 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,Red,4 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,Light Bluish Gray,3 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,Flat Silver,1 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,Black,11 +Hero Factory,TUNNELER Beast vs. SURGE,59,2014,Trans-Neon Green,1 +Hero Factory,EVO Walker,50,2014,Dark Bluish Gray,5 +Hero Factory,EVO Walker,50,2014,Flat Silver,1 +Hero Factory,EVO Walker,50,2014,Orange,2 +Hero Factory,EVO Walker,50,2014,White,1 +Hero Factory,EVO Walker,50,2014,Trans-Light Blue,2 +Hero Factory,EVO Walker,50,2014,Trans-Bright Green,2 +Hero Factory,EVO Walker,50,2014,Tan,1 +Hero Factory,EVO Walker,50,2014,Red,3 +Hero Factory,EVO Walker,50,2014,Pearl Dark Gray,3 +Hero Factory,EVO Walker,50,2014,Lime,1 +Hero Factory,EVO Walker,50,2014,Yellow,5 +Hero Factory,EVO Walker,50,2014,Black,9 +Hero Factory,JAW Beast vs. STORMER,49,2014,White,4 +Hero Factory,JAW Beast vs. STORMER,49,2014,Blue,1 +Hero Factory,JAW Beast vs. STORMER,49,2014,Dark Bluish Gray,4 +Hero Factory,JAW Beast vs. STORMER,49,2014,Dark Purple,2 +Hero Factory,JAW Beast vs. STORMER,49,2014,Flat Silver,1 +Hero Factory,JAW Beast vs. STORMER,49,2014,Red,1 +Hero Factory,JAW Beast vs. STORMER,49,2014,Black,10 +Hero Factory,JAW Beast vs. STORMER,49,2014,Trans-Light Blue,2 +Hero Factory,JAW Beast vs. STORMER,49,2014,Pearl Dark Gray,1 +Hero Factory,JAW Beast vs. STORMER,49,2014,Medium Azure,1 +Hero Factory,Hero Factory Promo,31,2014,Orange,2 +Hero Factory,Hero Factory Promo,31,2014,White,1 +Hero Factory,Hero Factory Promo,31,2014,Pearl Dark Gray,2 +Hero Factory,Hero Factory Promo,31,2014,Lime,3 +Hero Factory,Hero Factory Promo,31,2014,Light Bluish Gray,1 +Hero Factory,Hero Factory Promo,31,2014,Black,5 +Hero Factory,Hero Factory Promo,31,2014,Flat Silver,3 +Hero Factory,Hero Factory Promo,31,2014,Red,1 +Hero Factory,Hero Factory Promo,31,2014,Trans-Bright Green,1 +Heroes,Dunkan Bulk and Vapor,89,2010,Red,1 +Heroes,Dunkan Bulk and Vapor,89,2010,Trans-Medium Blue,1 +Heroes,Dunkan Bulk and Vapor,89,2010,Trans-Neon Orange,3 +Heroes,Dunkan Bulk and Vapor,89,2010,Black,13 +Heroes,Dunkan Bulk and Vapor,89,2010,Blue,8 +Heroes,Dunkan Bulk and Vapor,89,2010,Light Bluish Gray,6 +Heroes,Dunkan Bulk and Vapor,89,2010,Orange,1 +Heroes,Dunkan Bulk and Vapor,89,2010,Pearl Light Gray,11 +Heroes,Natalie Breez,19,2010,Trans-Red,1 +Heroes,Mark Surge,19,2010,Black,2 +Heroes,Mark Surge,19,2010,Blue,5 +Heroes,Mark Surge,19,2010,Flat Silver,1 +Heroes,Mark Surge,19,2010,Pearl Light Gray,1 +Heroes,Mark Surge,19,2010,Trans-Neon Green,1 +Heroes,Mark Surge,19,2010,Trans-Yellow,1 +Heroes,Natalie Breez,19,2010,Black,3 +Heroes,Natalie Breez,19,2010,Lime,5 +Heroes,Natalie Breez,19,2010,Pearl Light Gray,1 +Heroes,Natalie Breez,19,2010,Trans-Neon Orange,1 +Heroes,William Furno,19,2010,Black,2 +Heroes,William Furno,19,2010,Bright Light Orange,1 +Heroes,William Furno,19,2010,Pearl Light Gray,1 +Heroes,William Furno,19,2010,Red,5 +Heroes,William Furno,19,2010,Trans-Neon Green,2 +Heroes,Dunkan Bulk,17,2010,Pearl Light Gray,6 +Heroes,Dunkan Bulk,17,2010,Trans-Neon Orange,2 +Heroes,Jimi Stringer,17,2010,Black,8 +Heroes,Jimi Stringer,17,2010,Orange,1 +Heroes,Jimi Stringer,17,2010,Trans-Neon Orange,1 +Heroes,Jimi Stringer,17,2010,Trans-Orange,1 +Heroes,Dunkan Bulk,17,2010,Black,3 +Heroes,Preston Stormer,17,2010,Black,2 +Heroes,Preston Stormer,17,2010,Blue,1 +Heroes,Preston Stormer,17,2010,Trans-Medium Blue,2 +Heroes,Preston Stormer,17,2010,White,6 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Flat Silver,4 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Light Bluish Gray,8 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Orange,2 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Pearl Dark Gray,5 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Pearl Gold,3 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Red,2 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Tan,1 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Trans-Bright Green,4 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Trans-Light Blue,2 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Trans-Red,1 +Heroes,SURGE & ROCKA Combat Machine,187,2014,White,1 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Lime,2 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Black,23 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Blue,9 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Dark Bluish Gray,7 +Heroes,SURGE & ROCKA Combat Machine,187,2014,Dark Brown,1 +Heroes,BULK Drill Machine,111,2014,Dark Tan,1 +Heroes,BULK Drill Machine,111,2014,Trans-Light Blue,1 +Heroes,BULK Drill Machine,111,2014,Trans-Neon Green,4 +Heroes,BULK Drill Machine,111,2014,White,1 +Heroes,BULK Drill Machine,111,2014,Yellow,1 +Heroes,BULK Drill Machine,111,2014,Black,16 +Heroes,BULK Drill Machine,111,2014,Blue,4 +Heroes,BULK Drill Machine,111,2014,Dark Bluish Gray,4 +Heroes,BULK Drill Machine,111,2014,Dark Brown,1 +Heroes,BULK Drill Machine,111,2014,Flat Silver,4 +Heroes,BULK Drill Machine,111,2014,Light Bluish Gray,7 +Heroes,BULK Drill Machine,111,2014,Lime,2 +Heroes,BULK Drill Machine,111,2014,Orange,4 +Heroes,BULK Drill Machine,111,2014,Pearl Dark Gray,5 +Heroes,BULK Drill Machine,111,2014,Tan,1 +Heroes,BULK Drill Machine,111,2014,Trans-Orange,1 +Heroes,BREEZ Flea Machine,101,2014,Black,16 +Heroes,BREEZ Flea Machine,101,2014,Dark Bluish Gray,6 +Heroes,BREEZ Flea Machine,101,2014,Dark Brown,1 +Heroes,BREEZ Flea Machine,101,2014,Flat Silver,1 +Heroes,BREEZ Flea Machine,101,2014,Light Bluish Gray,9 +Heroes,BREEZ Flea Machine,101,2014,Lime,5 +Heroes,BREEZ Flea Machine,101,2014,Orange,3 +Heroes,BREEZ Flea Machine,101,2014,Pearl Dark Gray,4 +Heroes,BREEZ Flea Machine,101,2014,Red,3 +Heroes,BREEZ Flea Machine,101,2014,Trans-Light Blue,3 +Heroes,BREEZ Flea Machine,101,2014,Trans-Neon Green,2 +Heroes,BREEZ Flea Machine,101,2014,Trans-Red,1 +Heroes,BREEZ Flea Machine,101,2014,White,1 +Heroes,BREEZ Flea Machine,101,2014,Blue,2 +Heroes,BREEZ Flea Machine,101,2014,Tan,2 +Heroes,ROCKA Crawler,49,2014,Dark Brown,1 +Heroes,ROCKA Crawler,49,2014,Flat Silver,1 +Heroes,ROCKA Crawler,49,2014,Lime,2 +Heroes,ROCKA Crawler,49,2014,Orange,1 +Heroes,ROCKA Crawler,49,2014,Pearl Dark Gray,4 +Heroes,ROCKA Crawler,49,2014,Pearl Gold,5 +Heroes,ROCKA Crawler,49,2014,Tan,1 +Heroes,ROCKA Crawler,49,2014,Trans-Neon Green,2 +Heroes,ROCKA Crawler,49,2014,Trans-Red,1 +Heroes,ROCKA Crawler,49,2014,White,1 +Heroes,ROCKA Crawler,49,2014,Black,8 +Heroes,ROCKA Crawler,49,2014,Blue,1 +Heroes,ROCKA Crawler,49,2014,Dark Bluish Gray,3 +HO 1:87 Vehicles,1:87 Twenty Four Models,24,1957,Black,1 +Hobby Sets,1926 Renault,236,1975,Black,21 +Hobby Sets,1926 Renault,236,1975,Blue,14 +Hobby Sets,1926 Renault,236,1975,Red,4 +Hobby Sets,1926 Renault,236,1975,Trans-Clear,3 +Hobby Sets,1926 Renault,236,1975,White,1 +Hobby Sets,1926 Renault,236,1975,Yellow,5 +Hobby Sets,1913 Cadillac,199,1975,Black,17 +Hobby Sets,1913 Cadillac,199,1975,Red,17 +Hobby Sets,1913 Cadillac,199,1975,Trans-Clear,2 +Hobby Sets,1913 Cadillac,199,1975,Yellow,3 +Hobby Sets,Formula 1,196,1975,Black,1 +Hobby Sets,Formula 1,196,1975,Blue,23 +Hobby Sets,Formula 1,196,1975,Light Gray,1 +Hobby Sets,Formula 1,196,1975,Milky White,1 +Hobby Sets,Formula 1,196,1975,Red,2 +Hobby Sets,Formula 1,196,1975,Trans-Clear,3 +Hobby Sets,Formula 1,196,1975,Yellow,14 +Hobby Sets,U.S.S. Constellation,974,2003,Black,41 +Hobby Sets,U.S.S. Constellation,974,2003,Light Gray,10 +Hobby Sets,U.S.S. Constellation,974,2003,Red,24 +Hobby Sets,U.S.S. Constellation,974,2003,Royal Blue,1 +Hobby Sets,U.S.S. Constellation,974,2003,White,14 +Hobby Sets,U.S.S. Constellation,974,2003,Yellow,9 +Hockey,Hockey Game Set,153,2003,Black,16 +Hockey,Hockey Game Set,153,2003,Blue,1 +Hockey,Hockey Game Set,153,2003,Flat Silver,1 +Hockey,Hockey Game Set,153,2003,Green,2 +Hockey,Hockey Game Set,153,2003,Light Gray,8 +Hockey,Hockey Game Set,153,2003,Metallic Silver,1 +Hockey,Hockey Game Set,153,2003,Orange,2 +Hockey,Hockey Game Set,153,2003,Pearl Light Gray,2 +Hockey,Hockey Game Set,153,2003,Red,5 +Hockey,Hockey Game Set,153,2003,Tan,1 +Hockey,Hockey Game Set,153,2003,White,8 +Hockey,Hockey Puck Feeder,151,2003,Black,16 +Hockey,Hockey Puck Feeder,151,2003,Blue,6 +Hockey,Hockey Puck Feeder,151,2003,Dark Gray,4 +Hockey,Hockey Puck Feeder,151,2003,Flat Silver,1 +Hockey,Hockey Puck Feeder,151,2003,Light Gray,22 +Hockey,Hockey Puck Feeder,151,2003,Red,7 +Hockey,Hockey Puck Feeder,151,2003,Tan,1 +Hockey,Hockey Puck Feeder,151,2003,White,3 +Hockey,Hockey Puck Feeder,151,2003,Yellow,6 +Hockey,NHL Action Set with Stickers,56,2003,Black,11 +Hockey,NHL Action Set with Stickers,56,2003,Blue,2 +Hockey,NHL Action Set with Stickers,56,2003,Green,1 +Hockey,NHL Action Set with Stickers,56,2003,Light Gray,5 +Hockey,NHL Action Set with Stickers,56,2003,Orange,1 +Hockey,NHL Action Set with Stickers,56,2003,Pearl Light Gray,1 +Hockey,NHL Action Set with Stickers,56,2003,Red,2 +Hockey,NHL Action Set with Stickers,56,2003,Tan,1 +Hockey,NHL Action Set with Stickers,56,2003,White,8 +Hockey,Flip Shot,47,2003,Royal Blue,1 +Hockey,Flip Shot,47,2003,Tan,1 +Hockey,Flip Shot,47,2003,White,6 +Hockey,Flip Shot,47,2003,Black,9 +Hockey,Flip Shot,47,2003,Blue,5 +Hockey,Flip Shot,47,2003,Light Gray,5 +Hockey,Flip Shot,47,2003,Pearl Light Gray,1 +Hockey,Flip Shot,47,2003,Red,1 +Hockey,Slammer Goalie,46,2003,Black,12 +Hockey,Slammer Goalie,46,2003,Dark Gray,1 +Hockey,Slammer Goalie,46,2003,Light Gray,8 +Hockey,Slammer Goalie,46,2003,Pearl Light Gray,2 +Hockey,Slammer Goalie,46,2003,Royal Blue,1 +Hockey,Slammer Goalie,46,2003,White,2 +Hockey,Slammer Goalie,46,2003,Yellow,3 +Hockey,Slap Shot,46,2003,Dark Gray,1 +Hockey,Slap Shot,46,2003,Light Gray,5 +Hockey,Slap Shot,46,2003,Black,8 +Hockey,Slap Shot,46,2003,Orange,3 +Hockey,Slap Shot,46,2003,Blue,1 +Hockey,Slap Shot,46,2003,Pearl Light Gray,2 +Hockey,Slap Shot,46,2003,Royal Blue,1 +Hockey,Slap Shot,46,2003,White,7 +Hockey,Puck Passer,45,2003,Pearl Light Gray,1 +Hockey,Puck Passer,45,2003,Black,9 +Hockey,Puck Passer,45,2003,Light Gray,10 +Hockey,Puck Passer,45,2003,Red,5 +Hockey,Puck Passer,45,2003,Royal Blue,1 +Hockey,Puck Passer,45,2003,Tan,1 +Hockey,Puck Passer,45,2003,White,1 +Hockey,Hockey Promotional Set,36,2003,Dark Gray,3 +Hockey,Hockey Promotional Set,36,2003,Light Gray,1 +Hockey,Hockey Promotional Set,36,2003,Orange,2 +Hockey,Hockey Promotional Set,36,2003,Pearl Light Gray,3 +Hockey,Hockey Promotional Set,36,2003,White,2 +Hockey,Hockey Promotional Set,36,2003,Black,8 +Hockey,Slammer,28,2003,Black,9 +Hockey,Slammer,28,2003,Dark Gray,2 +Hockey,Slammer,28,2003,Light Gray,1 +Hockey,Slammer,28,2003,Yellow,4 +Hockey,Slammer Stadium,25,2003,Orange,1 +Hockey,Slammer Stadium,25,2003,Red,1 +Hockey,Slammer Stadium,25,2003,White,2 +Hockey,Slammer Stadium,25,2003,Green,1 +Hockey,Slammer Stadium,25,2003,[No Color],5 +Hockey,Slammer Stadium,25,2003,Black,1 +Hockey,Slammer Stadium,25,2003,Blue,1 +Hockey,NHL Championship Challenge,395,2004,Black,25 +Hockey,NHL Championship Challenge,395,2004,Blue,10 +Hockey,NHL Championship Challenge,395,2004,Light Bluish Gray,2 +Hockey,NHL Championship Challenge,395,2004,Red,10 +Hockey,NHL Championship Challenge,395,2004,Trans-Clear,2 +Hockey,NHL Championship Challenge,395,2004,Trans-Light Blue,1 +Hockey,NHL Championship Challenge,395,2004,White,23 +Hockey,NHL Championship Challenge,395,2004,Trans-Red,1 +Hockey,NHL Championship Challenge,395,2004,Yellow,9 +Hockey,NHL Championship Challenge,395,2004,[No Color],1 +Hockey,Street Hockey,119,2004,Dark Bluish Gray,4 +Hockey,Street Hockey,119,2004,[No Color],1 +Hockey,Street Hockey,119,2004,Black,11 +Hockey,Street Hockey,119,2004,Blue,4 +Hockey,Street Hockey,119,2004,Dark Blue,1 +Hockey,Street Hockey,119,2004,Yellow,3 +Hockey,Street Hockey,119,2004,Light Bluish Gray,7 +Hockey,Street Hockey,119,2004,Orange,1 +Hockey,Street Hockey,119,2004,Red,10 +Hockey,Street Hockey,119,2004,Reddish Brown,2 +Hockey,Street Hockey,119,2004,Tan,5 +Hockey,Street Hockey,119,2004,Trans-Yellow,1 +Hockey,Street Hockey,119,2004,White,1 +Hockey,Red & Blue Player,40,2004,Flat Silver,1 +Hockey,Red & Blue Player,40,2004,Dark Gray,3 +Hockey,Red & Blue Player,40,2004,Blue,3 +Hockey,Red & Blue Player,40,2004,Black,5 +Hockey,Red & Blue Player,40,2004,Pearl Light Gray,1 +Hockey,Red & Blue Player,40,2004,Red,5 +Hockey,Red & Blue Player,40,2004,Yellow,3 +Hockey,Red & Blue Player,40,2004,Light Gray,1 +Hockey,Red Player & Goal,33,2004,Red,8 +Hockey,Red Player & Goal,33,2004,Tan,1 +Hockey,Blue Player & Goal,33,2004,Light Gray,2 +Hockey,Blue Player & Goal,33,2004,Pearl Light Gray,1 +Hockey,Blue Player & Goal,33,2004,Yellow,3 +Hockey,Blue Player & Goal,33,2004,Tan,1 +Hockey,Blue Player & Goal,33,2004,Black,5 +Hockey,Blue Player & Goal,33,2004,Blue,6 +Hockey,Blue Player & Goal,33,2004,Dark Gray,3 +Hockey,Blue Player & Goal,33,2004,Flat Silver,1 +Hockey,Red Player & Goal,33,2004,Black,5 +Hockey,Red Player & Goal,33,2004,Dark Gray,3 +Hockey,Red Player & Goal,33,2004,Flat Silver,1 +Hockey,Red Player & Goal,33,2004,Light Gray,2 +Hockey,Red Player & Goal,33,2004,Pearl Light Gray,2 +Hockey,McDonald's Sports Set Number 4 - White Hockey Player #5,3,2004,Black,1 +Hockey,McDonald's Sports Set Number 5 - Blue Hockey Player #4,3,2004,Pearl Light Gray,1 +Hockey,McDonald's Sports Set Number 5 - Blue Hockey Player #4,3,2004,Black,2 +Hockey,McDonald's Sports Set Number 4 - White Hockey Player #5,3,2004,Pearl Light Gray,1 +Hockey,McDonald's Sports Set Number 4 - White Hockey Player #5,3,2004,Blue,1 +Holiday,American Flag with Sticker For Stars (Legoland California),62,2002,Blue,2 +Holiday,American Flag with Sticker For Stars (Legoland California),62,2002,Red,2 +Holiday,American Flag with Sticker For Stars (Legoland California),62,2002,White,2 +Holiday,Build N Buy Pumpkin (Happy) (Legoland California),31,2002,Black,1 +Holiday,Build N Buy Pumpkin (Happy) (Legoland California),31,2002,Green,3 +Holiday,Build N Buy Pumpkin (Happy) (Legoland California),31,2002,Orange,9 +Holiday,Build N Buy Pumpkin (Sad) (Legoland California),29,2002,Green,3 +Holiday,Build N Buy Pumpkin (Sad) (Legoland California),29,2002,Orange,9 +Holiday,Santa's Sleigh (Legoland California),76,2005,Blue,3 +Holiday,Santa's Sleigh (Legoland California),76,2005,Brown,16 +Holiday,Santa's Sleigh (Legoland California),76,2005,Green,1 +Holiday,Santa's Sleigh (Legoland California),76,2005,Red,3 +Holiday,Santa's Sleigh (Legoland California),76,2005,White,3 +Holiday,Santa's Sleigh (Legoland California),76,2005,Yellow,1 +Holiday,Reindeer (Legoland California),72,2005,Brown,19 +Holiday,Reindeer (Legoland California),72,2005,Light Bluish Gray,4 +Holiday,Reindeer (Legoland California),72,2005,Trans-Red,1 +Holiday,Reindeer (Legoland California),72,2005,Yellow,1 +Holiday,Reindeer (Legoland California),72,2005,Black,1 +Holiday,Sitting Santa (Legoland California),42,2005,Black,3 +Holiday,Sitting Santa (Legoland California),42,2005,Red,13 +Holiday,Sitting Santa (Legoland California),42,2005,Tan,2 +Holiday,Sitting Santa (Legoland California),42,2005,White,3 +Homemaker,Complete Living Room Set,177,1971,Black,3 +Homemaker,Complete Living Room Set,177,1971,Blue,4 +Homemaker,Complete Living Room Set,177,1971,Light Gray,1 +Homemaker,Complete Living Room Set,177,1971,Red,8 +Homemaker,Complete Living Room Set,177,1971,Trans-Clear,1 +Homemaker,Complete Living Room Set,177,1971,White,15 +Homemaker,Complete Living Room Set,177,1971,Yellow,2 +Homemaker,Complete Kitchen Set,157,1971,Trans-Clear,3 +Homemaker,Complete Kitchen Set,157,1971,White,17 +Homemaker,Complete Kitchen Set,157,1971,Yellow,2 +Homemaker,Complete Kitchen Set,157,1971,Blue,4 +Homemaker,Complete Kitchen Set,157,1971,Red,9 +Homemaker,Schoolroom,232,1982,Black,10 +Homemaker,Schoolroom,232,1982,Blue,9 +Homemaker,Schoolroom,232,1982,Green,1 +Homemaker,Schoolroom,232,1982,Light Gray,3 +Homemaker,Schoolroom,232,1982,Red,15 +Homemaker,Schoolroom,232,1982,Trans-Clear,1 +Homemaker,Schoolroom,232,1982,White,15 +Homemaker,Schoolroom,232,1982,Yellow,15 +Hospital,Ambulance,74,1970,Black,1 +Hospital,Ambulance,74,1970,Blue,1 +Hospital,Ambulance,74,1970,Light Gray,1 +Hospital,Ambulance,74,1970,Red,2 +Hospital,Ambulance,74,1970,Trans-Clear,2 +Hospital,Ambulance,74,1970,White,20 +Hospital,Ambulance,21,1970,Black,2 +Hospital,Ambulance,21,1970,Blue,1 +Hospital,Ambulance,21,1970,Trans-Clear,3 +Hospital,Ambulance,21,1970,White,6 +Hospital,Hospital,229,1976,Yellow,2 +Hospital,Hospital,229,1976,Green,2 +Hospital,Hospital,229,1976,Blue,2 +Hospital,Hospital,229,1976,Light Gray,1 +Hospital,Hospital,229,1976,Red,16 +Hospital,Hospital,229,1976,Trans-Clear,1 +Hospital,Hospital,229,1976,White,23 +Hospital,Hospital,229,1976,Black,8 +Hospital,Helicopter and Ambulance,142,1976,Black,3 +Hospital,Helicopter and Ambulance,142,1976,Blue,1 +Hospital,Helicopter and Ambulance,142,1976,Red,16 +Hospital,Helicopter and Ambulance,142,1976,Trans-Clear,4 +Hospital,Helicopter and Ambulance,142,1976,White,25 +Hospital,Helicopter and Ambulance,142,1976,Yellow,1 +Hospital,Helicopter and Ambulance,142,1976,Light Gray,2 +Hospital,Rescue Set,142,1976,Black,3 +Hospital,Rescue Set,142,1976,Blue,1 +Hospital,Rescue Set,142,1976,Light Gray,2 +Hospital,Rescue Set,142,1976,Red,16 +Hospital,Rescue Set,142,1976,Trans-Clear,4 +Hospital,Rescue Set,142,1976,White,25 +Hospital,Rescue Set,142,1976,Yellow,1 +Hospital,Red Cross Helicopter,36,1978,White,11 +Hospital,Red Cross Helicopter,36,1978,Light Gray,4 +Hospital,Red Cross Helicopter,36,1978,Red,3 +Hospital,Red Cross Helicopter,36,1978,Trans-Clear,3 +Hospital,Medic's Car,33,1978,Black,2 +Hospital,Medic's Car,33,1978,Yellow,1 +Hospital,Medic's Car,33,1978,Light Gray,1 +Hospital,Medic's Car,33,1978,Red,8 +Hospital,Medic's Car,33,1978,Trans-Clear,1 +Hospital,Medic's Car,33,1978,White,6 +Hospital,Medic's Car,33,1978,[No Color],1 +Hospital,Medic's Car,33,1978,Trans-Dark Blue,1 +Hospital,Ambulance,25,1978,White,5 +Hospital,Ambulance,25,1978,Yellow,1 +Hospital,Ambulance,25,1978,Light Gray,1 +Hospital,Ambulance,25,1978,Black,2 +Hospital,Ambulance,25,1978,Red,5 +Hospital,Ambulance,25,1978,Trans-Clear,2 +Hospital,Ambulance,25,1978,Trans-Dark Blue,1 +Hospital,Hospital,104,1979,[No Color],1 +Hospital,Hospital,104,1979,Blue,5 +Hospital,Hospital,104,1979,Red,9 +Hospital,Hospital,104,1979,Unknown,1 +Hospital,Hospital,104,1979,White,7 +Hospital,Hospital,104,1979,Yellow,6 +Hospital,Doc David's Hospital,100,1979,Blue,5 +Hospital,Doc David's Hospital,100,1979,Red,9 +Hospital,Doc David's Hospital,100,1979,Unknown,1 +Hospital,Doc David's Hospital,100,1979,White,7 +Hospital,Doc David's Hospital,100,1979,Yellow,6 +Hospital,Doc David's Hospital,100,1979,[No Color],1 +Hospital,Ambulance,78,1994,Black,6 +Hospital,Ambulance,78,1994,Blue,3 +Hospital,Ambulance,78,1994,Red,11 +Hospital,Ambulance,78,1994,Trans-Dark Blue,2 +Hospital,Ambulance,78,1994,Trans-Light Blue,2 +Hospital,Ambulance,78,1994,Trans-Red,1 +Hospital,Ambulance,78,1994,Trans-Yellow,1 +Hospital,Ambulance,78,1994,White,20 +Hospital,Ambulance,78,1994,Yellow,3 +Hospital,Hospital Ward,108,1996,Trans-Red,1 +Hospital,Hospital Ward,108,1996,[No Color],4 +Hospital,Hospital Ward,108,1996,White,21 +Hospital,Hospital Ward,108,1996,Medium Green,8 +Hospital,Hospital Ward,108,1996,Yellow,3 +Hospital,Hospital Ward,108,1996,Blue,3 +Hospital,Hospital Ward,108,1996,Chrome Silver,1 +Hospital,Hospital Ward,108,1996,Dark Gray,1 +Hospital,Hospital Ward,108,1996,Dark Pink,10 +Hospital,Hospital Ward,108,1996,Green,2 +Hospital,Hospital Ward,108,1996,Light Violet,1 +Hospital,Hospital Ward,108,1996,Pink,5 +Hospital,Hospital Ward,108,1996,Trans-Clear,4 +Hospital,Hospital Ward,108,1996,Trans-Green,1 +Hospital,Hospital Ward,105,1996,[No Color],5 +Hospital,Hospital Ward,105,1996,Chrome Silver,1 +Hospital,Hospital Ward,105,1996,Light Violet,1 +Hospital,Hospital Ward,105,1996,Medium Green,3 +Hospital,Hospital Ward,105,1996,Pink,5 +Hospital,Hospital Ward,105,1996,Trans-Clear,4 +Hospital,Hospital Ward,105,1996,Trans-Green,1 +Hospital,Hospital Ward,105,1996,Dark Gray,1 +Hospital,Hospital Ward,105,1996,Trans-Red,1 +Hospital,Hospital Ward,105,1996,White,21 +Hospital,Hospital Ward,105,1996,Yellow,4 +Hospital,Hospital Ward,105,1996,Dark Pink,10 +Hospital,Hospital Ward,105,1996,Green,2 +Hospital,Hospital Ward,105,1996,Blue,3 +Hospital,Nursery,61,1997,Blue,8 +Hospital,Nursery,61,1997,Brown,1 +Hospital,Nursery,61,1997,Chrome Silver,2 +Hospital,Nursery,61,1997,Dark Pink,5 +Hospital,Nursery,61,1997,Green,1 +Hospital,Nursery,61,1997,Light Green,1 +Hospital,Nursery,61,1997,Light Violet,2 +Hospital,Nursery,61,1997,Light Yellow,4 +Hospital,Nursery,61,1997,Pink,1 +Hospital,Nursery,61,1997,Trans-Green,1 +Hospital,Nursery,61,1997,Trans-Red,1 +Hospital,Nursery,61,1997,White,8 +Hospital,Nursery,61,1997,Yellow,3 +Hospital,Tri-motorbike,17,1999,Black,1 +Hospital,Tri-motorbike,17,1999,Blue,3 +Hospital,Tri-motorbike,17,1999,Trans-Dark Blue,1 +Hospital,Tri-motorbike,17,1999,Trans-Light Blue,1 +Hospital,Tri-motorbike,17,1999,Trans-Red,1 +Hospital,Tri-motorbike,17,1999,Trans-Yellow,1 +Hospital,Tri-motorbike,17,1999,White,5 +Hospital,Tri-motorbike,17,1999,Yellow,1 +Hospital,Ambulance Plane,183,2016,[No Color],1 +Hospital,Ambulance Plane,183,2016,Black,5 +Hospital,Ambulance Plane,183,2016,Blue,3 +Hospital,Ambulance Plane,183,2016,Bright Light Blue,1 +Hospital,Ambulance Plane,183,2016,Dark Bluish Gray,10 +Hospital,Ambulance Plane,183,2016,Light Bluish Gray,18 +Hospital,Ambulance Plane,183,2016,Lime,2 +Hospital,Ambulance Plane,183,2016,Red,12 +Hospital,Ambulance Plane,183,2016,Trans-Black,1 +Hospital,Ambulance Plane,183,2016,Trans-Dark Blue,2 +Hospital,Ambulance Plane,183,2016,Trans-Green,1 +Hospital,Ambulance Plane,183,2016,Trans-Light Blue,2 +Hospital,Ambulance Plane,183,2016,Trans-Orange,1 +Hospital,Ambulance Plane,183,2016,Trans-Red,1 +Hospital,Ambulance Plane,183,2016,Trans-Yellow,1 +Hospital,Ambulance Plane,183,2016,White,27 +Hospital,Ambulance Plane,183,2016,Yellow,5 +Hydronauts,Hydro Crystalization Station,485,1998,Chrome Blue,1 +Hydronauts,Hydro Crystalization Station,485,1998,Chrome Silver,3 +Hydronauts,Hydro Crystalization Station,485,1998,Dark Gray,9 +Hydronauts,Hydro Crystalization Station,485,1998,Light Blue,1 +Hydronauts,Hydro Crystalization Station,485,1998,Light Gray,23 +Hydronauts,Hydro Crystalization Station,485,1998,Red,9 +Hydronauts,Hydro Crystalization Station,485,1998,Trans-Green,11 +Hydronauts,Hydro Crystalization Station,485,1998,Trans-Neon Green,2 +Hydronauts,Hydro Crystalization Station,485,1998,Trans-Neon Orange,3 +Hydronauts,Hydro Crystalization Station,485,1998,Yellow,38 +Hydronauts,Hydro Crystalization Station,485,1998,Black,41 +Hydronauts,Hydro Crystalization Station,485,1998,Blue,17 +Hydronauts,Hydro Crystalization Station,485,1998,Brown,1 +Hydronauts,Hydro Search Sub,297,1998,Chrome Blue,1 +Hydronauts,Hydro Search Sub,297,1998,Chrome Silver,3 +Hydronauts,Hydro Search Sub,297,1998,Dark Gray,3 +Hydronauts,Hydro Search Sub,297,1998,Light Gray,23 +Hydronauts,Hydro Search Sub,297,1998,Trans-Neon Orange,1 +Hydronauts,Hydro Search Sub,297,1998,Red,1 +Hydronauts,Hydro Search Sub,297,1998,Trans-Green,9 +Hydronauts,Hydro Search Sub,297,1998,Trans-Neon Green,1 +Hydronauts,Hydro Search Sub,297,1998,White,1 +Hydronauts,Hydro Search Sub,297,1998,Yellow,25 +Hydronauts,Hydro Search Sub,297,1998,Black,33 +Hydronauts,Hydro Search Sub,297,1998,Blue,8 +Hydronauts,Hydro Search Sub,297,1998,Brown,1 +Hydronauts,Crystal Detector,105,1998,Black,21 +Hydronauts,Crystal Detector,105,1998,Blue,3 +Hydronauts,Crystal Detector,105,1998,Chrome Blue,1 +Hydronauts,Crystal Detector,105,1998,Chrome Silver,3 +Hydronauts,Crystal Detector,105,1998,Light Gray,10 +Hydronauts,Crystal Detector,105,1998,Trans-Green,7 +Hydronauts,Crystal Detector,105,1998,Trans-Neon Green,1 +Hydronauts,Crystal Detector,105,1998,Trans-Neon Orange,1 +Hydronauts,Crystal Detector,105,1998,Yellow,13 +Hydronauts,Crystal Detector,105,1998,Dark Gray,1 +Hydronauts,Solo Sub,25,1998,Black,6 +Hydronauts,Solo Sub,25,1998,Blue,1 +Hydronauts,Solo Sub,25,1998,Chrome Blue,1 +Hydronauts,Solo Sub,25,1998,Chrome Silver,1 +Hydronauts,Solo Sub,25,1998,Light Gray,5 +Hydronauts,Solo Sub,25,1998,Trans-Green,2 +Hydronauts,Solo Sub,25,1998,Trans-Neon Green,1 +Hydronauts,Solo Sub,25,1998,Trans-Neon Orange,1 +Hydronauts,Solo Sub,25,1998,Yellow,3 +Ice Planet 2002,Deep Freeze Defender,417,1993,Black,33 +Ice Planet 2002,Deep Freeze Defender,417,1993,Trans-Neon Orange,12 +Ice Planet 2002,Deep Freeze Defender,417,1993,Light Gray,1 +Ice Planet 2002,Deep Freeze Defender,417,1993,Blue,53 +Ice Planet 2002,Deep Freeze Defender,417,1993,White,37 +Ice Planet 2002,Deep Freeze Defender,417,1993,Yellow,3 +Ice Planet 2002,Ice Station Odyssey,345,1993,Black,65 +Ice Planet 2002,Ice Station Odyssey,345,1993,Blue,39 +Ice Planet 2002,Ice Station Odyssey,345,1993,Light Gray,3 +Ice Planet 2002,Ice Station Odyssey,345,1993,Trans-Neon Orange,12 +Ice Planet 2002,Ice Station Odyssey,345,1993,White,28 +Ice Planet 2002,Ice Station Odyssey,345,1993,Yellow,3 +Ice Planet 2002,Ice-Sat V,136,1993,Trans-Neon Orange,10 +Ice Planet 2002,Ice-Sat V,136,1993,Black,16 +Ice Planet 2002,Ice-Sat V,136,1993,Blue,25 +Ice Planet 2002,Ice-Sat V,136,1993,Light Gray,2 +Ice Planet 2002,Ice-Sat V,136,1993,White,22 +Ice Planet 2002,Ice-Sat V,136,1993,Yellow,1 +Ice Planet 2002,Blizzard Baron,83,1993,Blue,11 +Ice Planet 2002,Blizzard Baron,83,1993,Light Gray,2 +Ice Planet 2002,Blizzard Baron,83,1993,White,15 +Ice Planet 2002,Blizzard Baron,83,1993,Yellow,1 +Ice Planet 2002,Blizzard Baron,83,1993,Trans-Neon Orange,9 +Ice Planet 2002,Blizzard Baron,83,1993,Black,16 +Ice Planet 2002,Celestial Sled,55,1993,Blue,9 +Ice Planet 2002,Celestial Sled,55,1993,Black,12 +Ice Planet 2002,Celestial Sled,55,1993,White,10 +Ice Planet 2002,Celestial Sled,55,1993,Trans-Neon Orange,6 +Ice Planet 2002,Celestial Sled,55,1993,Yellow,1 +Ice Planet 2002,Ice Tunnelator,25,1993,Blue,4 +Ice Planet 2002,Ice Tunnelator,25,1993,Trans-Neon Orange,3 +Ice Planet 2002,Ice Tunnelator,25,1993,White,4 +Ice Planet 2002,Ice Tunnelator,25,1993,Yellow,1 +Ice Planet 2002,Ice Tunnelator,25,1993,Light Gray,1 +Ice Planet 2002,Ice Tunnelator,25,1993,Black,4 +Ice Planet 2002,Ice Planet Scooter,19,1999,Black,5 +Ice Planet 2002,Ice Planet Scooter,19,1999,Blue,3 +Ice Planet 2002,Ice Planet Scooter,19,1999,Trans-Neon Orange,2 +Ice Planet 2002,Ice Planet Scooter,19,1999,White,6 +Ice Planet 2002,Ice Planet Scooter,19,1999,Yellow,1 +Imperial Armada,Armada Flagship,292,1996,Black,56 +Imperial Armada,Armada Flagship,292,1996,Blue,4 +Imperial Armada,Armada Flagship,292,1996,Brown,8 +Imperial Armada,Armada Flagship,292,1996,Chrome Gold,4 +Imperial Armada,Armada Flagship,292,1996,Chrome Silver,1 +Imperial Armada,Armada Flagship,292,1996,Dark Gray,2 +Imperial Armada,Armada Flagship,292,1996,Green,4 +Imperial Armada,Armada Flagship,292,1996,Light Gray,3 +Imperial Armada,Armada Flagship,292,1996,Red,18 +Imperial Armada,Armada Flagship,292,1996,Trans-Red,1 +Imperial Armada,Armada Flagship,292,1996,White,38 +Imperial Armada,Armada Flagship,292,1996,Yellow,9 +Imperial Armada,Armada Sentry,74,1996,Black,13 +Imperial Armada,Armada Sentry,74,1996,Blue,1 +Imperial Armada,Armada Sentry,74,1996,Brown,5 +Imperial Armada,Armada Sentry,74,1996,Chrome Gold,4 +Imperial Armada,Armada Sentry,74,1996,Dark Gray,1 +Imperial Armada,Armada Sentry,74,1996,Green,4 +Imperial Armada,Armada Sentry,74,1996,Light Gray,5 +Imperial Armada,Armada Sentry,74,1996,Red,3 +Imperial Armada,Armada Sentry,74,1996,Trans-Yellow,1 +Imperial Armada,Armada Sentry,74,1996,White,8 +Imperial Armada,Armada Sentry,74,1996,Yellow,2 +Imperial Armada,Armada Flagship,291,2001,Black,55 +Imperial Armada,Armada Flagship,291,2001,Blue,4 +Imperial Armada,Armada Flagship,291,2001,Brown,8 +Imperial Armada,Armada Flagship,291,2001,Chrome Gold,4 +Imperial Armada,Armada Flagship,291,2001,Chrome Silver,1 +Imperial Armada,Armada Flagship,291,2001,Dark Gray,2 +Imperial Armada,Armada Flagship,291,2001,Green,4 +Imperial Armada,Armada Flagship,291,2001,Light Gray,3 +Imperial Armada,Armada Flagship,291,2001,Red,18 +Imperial Armada,Armada Flagship,291,2001,Trans-Red,1 +Imperial Armada,Armada Flagship,291,2001,White,38 +Imperial Armada,Armada Flagship,291,2001,Yellow,9 +Imperial Soldiers,Eldorado Fortress,515,1989,Black,43 +Imperial Soldiers,Eldorado Fortress,515,1989,Blue,1 +Imperial Soldiers,Eldorado Fortress,515,1989,Brown,12 +Imperial Soldiers,Eldorado Fortress,515,1989,Chrome Gold,4 +Imperial Soldiers,Eldorado Fortress,515,1989,Dark Gray,3 +Imperial Soldiers,Eldorado Fortress,515,1989,Green,3 +Imperial Soldiers,Eldorado Fortress,515,1989,Light Gray,18 +Imperial Soldiers,Eldorado Fortress,515,1989,Red,8 +Imperial Soldiers,Eldorado Fortress,515,1989,Trans-Clear,1 +Imperial Soldiers,Eldorado Fortress,515,1989,Trans-Yellow,1 +Imperial Soldiers,Eldorado Fortress,515,1989,White,40 +Imperial Soldiers,Eldorado Fortress,515,1989,Yellow,33 +Imperial Soldiers,Caribbean Clipper,386,1989,Black,62 +Imperial Soldiers,Caribbean Clipper,386,1989,Blue,16 +Imperial Soldiers,Caribbean Clipper,386,1989,Brown,11 +Imperial Soldiers,Caribbean Clipper,386,1989,Chrome Gold,4 +Imperial Soldiers,Caribbean Clipper,386,1989,Dark Gray,3 +Imperial Soldiers,Caribbean Clipper,386,1989,Light Gray,1 +Imperial Soldiers,Caribbean Clipper,386,1989,Red,2 +Imperial Soldiers,Caribbean Clipper,386,1989,Trans-Yellow,1 +Imperial Soldiers,Caribbean Clipper,386,1989,White,13 +Imperial Soldiers,Caribbean Clipper,386,1989,Yellow,21 +Imperial Soldiers,Sabre Island,97,1989,Brown,7 +Imperial Soldiers,Sabre Island,97,1989,Dark Gray,3 +Imperial Soldiers,Sabre Island,97,1989,Green,3 +Imperial Soldiers,Sabre Island,97,1989,Light Gray,5 +Imperial Soldiers,Sabre Island,97,1989,Red,3 +Imperial Soldiers,Sabre Island,97,1989,White,14 +Imperial Soldiers,Sabre Island,97,1989,Yellow,9 +Imperial Soldiers,Sabre Island,97,1989,Black,10 +Imperial Soldiers,Harbor Sentry,26,1989,Black,5 +Imperial Soldiers,Harbor Sentry,26,1989,Brown,3 +Imperial Soldiers,Harbor Sentry,26,1989,Dark Gray,2 +Imperial Soldiers,Harbor Sentry,26,1989,Light Gray,3 +Imperial Soldiers,Harbor Sentry,26,1989,Red,1 +Imperial Soldiers,Harbor Sentry,26,1989,White,3 +Imperial Soldiers,Harbor Sentry,26,1989,Yellow,2 +Imperial Soldiers,Lagoon Lock-Up,194,1991,Black,21 +Imperial Soldiers,Lagoon Lock-Up,194,1991,Blue,2 +Imperial Soldiers,Lagoon Lock-Up,194,1991,Brown,10 +Imperial Soldiers,Lagoon Lock-Up,194,1991,Dark Gray,4 +Imperial Soldiers,Lagoon Lock-Up,194,1991,Green,4 +Imperial Soldiers,Lagoon Lock-Up,194,1991,Light Gray,4 +Imperial Soldiers,Lagoon Lock-Up,194,1991,Red,8 +Imperial Soldiers,Lagoon Lock-Up,194,1991,Trans-Yellow,1 +Imperial Soldiers,Lagoon Lock-Up,194,1991,White,27 +Imperial Soldiers,Lagoon Lock-Up,194,1991,Yellow,13 +Imperial Soldiers,Broadside's Brig,68,1991,Black,4 +Imperial Soldiers,Broadside's Brig,68,1991,Brown,3 +Imperial Soldiers,Broadside's Brig,68,1991,Dark Gray,2 +Imperial Soldiers,Broadside's Brig,68,1991,Light Gray,4 +Imperial Soldiers,Broadside's Brig,68,1991,Red,3 +Imperial Soldiers,Broadside's Brig,68,1991,Trans-Yellow,1 +Imperial Soldiers,Broadside's Brig,68,1991,White,14 +Imperial Soldiers,Broadside's Brig,68,1991,Yellow,13 +Indians,Rapid River Village,354,1997,Tan,10 +Indians,Rapid River Village,354,1997,Red,7 +Indians,Rapid River Village,354,1997,Light Gray,26 +Indians,Rapid River Village,354,1997,Green,8 +Indians,Rapid River Village,354,1997,Dark Gray,1 +Indians,Rapid River Village,354,1997,White,11 +Indians,Rapid River Village,354,1997,Brown,17 +Indians,Rapid River Village,354,1997,Blue,9 +Indians,Rapid River Village,354,1997,Black,36 +Indians,Rapid River Village,354,1997,Yellow,6 +Indians,Rapid River Village,354,1997,Trans-Red,1 +Indians,Rapid River Village,354,1997,Trans-Neon Orange,2 +Indians,Boulder Cliff Canyon,256,1997,Black,28 +Indians,Boulder Cliff Canyon,256,1997,Blue,7 +Indians,Boulder Cliff Canyon,256,1997,Brown,14 +Indians,Boulder Cliff Canyon,256,1997,Dark Gray,1 +Indians,Boulder Cliff Canyon,256,1997,Light Gray,19 +Indians,Boulder Cliff Canyon,256,1997,Red,6 +Indians,Boulder Cliff Canyon,256,1997,Tan,8 +Indians,Boulder Cliff Canyon,256,1997,Trans-Neon Orange,2 +Indians,Boulder Cliff Canyon,256,1997,White,8 +Indians,Boulder Cliff Canyon,256,1997,Green,9 +Indians,Boulder Cliff Canyon,256,1997,Yellow,7 +Indians,Chief's Tepee,135,1997,Light Gray,10 +Indians,Chief's Tepee,135,1997,Red,5 +Indians,Chief's Tepee,135,1997,Tan,7 +Indians,Chief's Tepee,135,1997,White,5 +Indians,Chief's Tepee,135,1997,Yellow,5 +Indians,Chief's Tepee,135,1997,Black,22 +Indians,Chief's Tepee,135,1997,Blue,8 +Indians,Chief's Tepee,135,1997,Brown,6 +Indians,Chief's Tepee,135,1997,Dark Gray,1 +Indians,Chief's Tepee,135,1997,Green,3 +Indians,Chief's Tepee,135,1997,Trans-Neon Orange,2 +Indians,Raindance Ridge,73,1997,Tan,4 +Indians,Raindance Ridge,73,1997,White,4 +Indians,Raindance Ridge,73,1997,Yellow,2 +Indians,Raindance Ridge,73,1997,Black,14 +Indians,Raindance Ridge,73,1997,Blue,4 +Indians,Raindance Ridge,73,1997,Brown,6 +Indians,Raindance Ridge,73,1997,Dark Gray,1 +Indians,Raindance Ridge,73,1997,Green,6 +Indians,Raindance Ridge,73,1997,Light Gray,11 +Indians,Raindance Ridge,73,1997,Red,2 +Indians,Indian Chief,20,1997,Black,4 +Indians,Indian Chief,20,1997,Blue,2 +Indians,Indian Chief,20,1997,Brown,3 +Indians,Indian Chief,20,1997,Yellow,3 +Indians,Indian Chief,20,1997,White,2 +Indians,Indian Chief,20,1997,Tan,2 +Indians,Indian Chief,20,1997,Red,2 +Indians,Indian Kayak,18,1997,Yellow,1 +Indians,Indian Kayak,18,1997,White,1 +Indians,Indian Kayak,18,1997,Tan,2 +Indians,Indian Kayak,18,1997,Red,2 +Indians,Indian Kayak,18,1997,Light Gray,2 +Indians,Indian Kayak,18,1997,Green,1 +Indians,Indian Kayak,18,1997,Brown,2 +Indians,Indian Kayak,18,1997,Black,5 +Indians,Tribal Chief,16,1997,Black,3 +Indians,Tribal Chief,16,1997,Blue,3 +Indians,Tribal Chief,16,1997,Brown,1 +Indians,Tribal Chief,16,1997,Green,1 +Indians,Tribal Chief,16,1997,Red,1 +Indians,Tribal Chief,16,1997,Tan,2 +Indians,Tribal Chief,16,1997,White,2 +Indians,Tribal Chief,16,1997,Yellow,1 +Indians,Rapid River Village,354,2002,Black,36 +Indians,Rapid River Village,354,2002,Blue,9 +Indians,Rapid River Village,354,2002,Brown,17 +Indians,Rapid River Village,354,2002,Dark Gray,1 +Indians,Rapid River Village,354,2002,Green,8 +Indians,Rapid River Village,354,2002,Light Gray,26 +Indians,Rapid River Village,354,2002,Red,7 +Indians,Rapid River Village,354,2002,Tan,10 +Indians,Rapid River Village,354,2002,Trans-Neon Orange,2 +Indians,Rapid River Village,354,2002,Trans-Red,1 +Indians,Rapid River Village,354,2002,White,11 +Indians,Rapid River Village,354,2002,Yellow,6 +Indians,Western Picture Frame,144,2002,Black,9 +Indians,Western Picture Frame,144,2002,Blue,2 +Indians,Western Picture Frame,144,2002,Brown,15 +Indians,Western Picture Frame,144,2002,Dark Gray,1 +Indians,Western Picture Frame,144,2002,Green,1 +Indians,Western Picture Frame,144,2002,Red,4 +Indians,Western Picture Frame,144,2002,Tan,9 +Indians,Western Picture Frame,144,2002,White,4 +Indians,Western Picture Frame,144,2002,Yellow,5 +Insectoids,Arachnoid Star Base,434,1998,Black,51 +Insectoids,Arachnoid Star Base,434,1998,Blue,38 +Insectoids,Arachnoid Star Base,434,1998,Dark Gray,33 +Insectoids,Arachnoid Star Base,434,1998,Light Gray,2 +Insectoids,Arachnoid Star Base,434,1998,Trans-Clear,1 +Insectoids,Arachnoid Star Base,434,1998,Trans-Dark Blue,2 +Insectoids,Arachnoid Star Base,434,1998,Trans-Green,7 +Insectoids,Arachnoid Star Base,434,1998,Trans-Neon Green,10 +Insectoids,Arachnoid Star Base,434,1998,Yellow,1 +Insectoids,Celestial Stinger,253,1998,Red,1 +Insectoids,Celestial Stinger,253,1998,Trans-Clear,1 +Insectoids,Celestial Stinger,253,1998,Trans-Neon Green,9 +Insectoids,Celestial Stinger,253,1998,[No Color],1 +Insectoids,Celestial Stinger,253,1998,Black,36 +Insectoids,Celestial Stinger,253,1998,Blue,29 +Insectoids,Celestial Stinger,253,1998,Trans-Dark Blue,6 +Insectoids,Celestial Stinger,253,1998,Dark Gray,29 +Insectoids,Planetary Prowler,248,1998,White,1 +Insectoids,Planetary Prowler,248,1998,Trans-Neon Green,7 +Insectoids,Planetary Prowler,248,1998,[No Color],1 +Insectoids,Planetary Prowler,248,1998,Blue,28 +Insectoids,Planetary Prowler,248,1998,Dark Gray,24 +Insectoids,Planetary Prowler,248,1998,Light Gray,1 +Insectoids,Planetary Prowler,248,1998,Trans-Clear,1 +Insectoids,Planetary Prowler,248,1998,Trans-Green,4 +Insectoids,Planetary Prowler,248,1998,Black,35 +Insectoids,Bi-Wing Blaster,112,1998,Black,26 +Insectoids,Bi-Wing Blaster,112,1998,Blue,15 +Insectoids,Bi-Wing Blaster,112,1998,Dark Gray,13 +Insectoids,Bi-Wing Blaster,112,1998,Trans-Clear,1 +Insectoids,Bi-Wing Blaster,112,1998,Trans-Dark Blue,2 +Insectoids,Bi-Wing Blaster,112,1998,Trans-Neon Green,6 +Insectoids,Bi-Wing Blaster,112,1998,[No Color],1 +Insectoids,Sonic Stinger with Promotional Mask,96,1998,Black,20 +Insectoids,Sonic Stinger with Promotional Mask,96,1998,Blue,14 +Insectoids,Sonic Stinger with Promotional Mask,96,1998,Dark Gray,10 +Insectoids,Sonic Stinger with Promotional Mask,96,1998,Trans-Dark Blue,2 +Insectoids,Sonic Stinger with Promotional Mask,96,1998,Trans-Neon Green,6 +Insectoids,Sonic Stinger,95,1998,[No Color],1 +Insectoids,Sonic Stinger,95,1998,Black,19 +Insectoids,Sonic Stinger,95,1998,Blue,14 +Insectoids,Sonic Stinger,95,1998,Dark Gray,10 +Insectoids,Sonic Stinger,95,1998,Trans-Dark Blue,2 +Insectoids,Sonic Stinger,95,1998,Trans-Neon Green,6 +Insectoids,Hornet Scout,72,1998,[No Color],1 +Insectoids,Hornet Scout,72,1998,Black,17 +Insectoids,Hornet Scout,72,1998,Blue,10 +Insectoids,Hornet Scout,72,1998,Trans-Clear,1 +Insectoids,Hornet Scout,72,1998,Trans-Dark Blue,2 +Insectoids,Hornet Scout,72,1998,Trans-Neon Green,7 +Insectoids,Hornet Scout,72,1998,Dark Gray,10 +Insectoids,Cosmic Creeper,57,1998,[No Color],1 +Insectoids,Cosmic Creeper,57,1998,Black,13 +Insectoids,Cosmic Creeper,57,1998,Blue,12 +Insectoids,Cosmic Creeper,57,1998,Dark Gray,10 +Insectoids,Cosmic Creeper,57,1998,Trans-Green,2 +Insectoids,Cosmic Creeper,57,1998,Trans-Neon Green,5 +Insectoids,Space Spider,45,1998,[No Color],1 +Insectoids,Space Spider,45,1998,Black,9 +Insectoids,Space Spider,45,1998,Blue,6 +Insectoids,Space Spider,45,1998,Dark Gray,11 +Insectoids,Space Spider,45,1998,Trans-Green,2 +Insectoids,Space Spider,45,1998,Trans-Neon Green,3 +Insectoids,Beta Buzzer,32,1998,[No Color],1 +Insectoids,Beta Buzzer,32,1998,Black,7 +Insectoids,Beta Buzzer,32,1998,Blue,5 +Insectoids,Beta Buzzer,32,1998,Dark Gray,6 +Insectoids,Beta Buzzer,32,1998,Trans-Dark Blue,4 +Insectoids,Beta Buzzer,32,1998,Trans-Neon Green,4 +Insectoids,Bug Blaster,24,1998,Black,7 +Insectoids,Bug Blaster,24,1998,Blue,3 +Insectoids,Bug Blaster,24,1998,Dark Gray,5 +Insectoids,Bug Blaster,24,1998,Trans-Green,1 +Insectoids,Bug Blaster,24,1998,Trans-Neon Green,4 +Insectoids,Insectoids Combi Set (Woolworth's UK promo),3,1998,Black,1 +Insectoids,Mega Tack,23,1999,Trans-Neon Green,3 +Insectoids,Mega Tack,23,1999,Dark Gray,4 +Insectoids,Mega Tack,23,1999,Blue,3 +Insectoids,Mega Tack,23,1999,Black,7 +Insectoids,Booster,21,1999,Black,5 +Insectoids,Booster,21,1999,Blue,4 +Insectoids,Booster,21,1999,Dark Gray,3 +Insectoids,Booster,21,1999,Trans-Neon Green,4 +Insectoids,Mosquito,21,1999,Trans-Green,1 +Insectoids,Mosquito,21,1999,Trans-Neon Green,3 +Insectoids,Mosquito,21,1999,Trans-Neon Orange,1 +Insectoids,Mosquito,21,1999,Dark Gray,5 +Insectoids,Mosquito,21,1999,Black,6 +Insectoids,Mosquito,21,1999,Blue,1 +Insectoids,Zo Weevil,20,1999,Black,4 +Insectoids,Zo Weevil,20,1999,Blue,2 +Insectoids,Zo Weevil,20,1999,Dark Gray,4 +Insectoids,Zo Weevil,20,1999,Trans-Green,1 +Insectoids,Zo Weevil,20,1999,Trans-Neon Green,4 +Insectoids,Light Flyer,19,1999,Black,6 +Insectoids,Light Flyer,19,1999,Blue,3 +Insectoids,Light Flyer,19,1999,Light Gray,1 +Insectoids,Light Flyer,19,1999,Trans-Neon Green,2 +Insectoids,Light Flyer,19,1999,Trans-Clear,1 +Insectoids,Light Flyer,19,1999,Dark Gray,2 +Inventor,Record and Play,345,2003,Red,5 +Inventor,Record and Play,345,2003,Black,26 +Inventor,Record and Play,345,2003,Dark Gray,3 +Inventor,Record and Play,345,2003,Green,29 +Inventor,Record and Play,345,2003,Light Gray,9 +Inventor,Record and Play,345,2003,White,4 +Inventor,Record and Play,345,2003,Trans-Red,1 +Inventor,Record and Play,345,2003,Trans-Clear,1 +Inventor,Record and Play,345,2003,Tan,8 +Inventor,Record and Play,345,2003,Lime,14 +Inventor,Wild Windup,319,2003,White,7 +Inventor,Wild Windup,319,2003,Trans-Clear,4 +Inventor,Wild Windup,319,2003,Black,29 +Inventor,Wild Windup,319,2003,Blue,1 +Inventor,Wild Windup,319,2003,Brown,1 +Inventor,Wild Windup,319,2003,Dark Gray,16 +Inventor,Wild Windup,319,2003,Flat Silver,2 +Inventor,Wild Windup,319,2003,Light Gray,20 +Inventor,Wild Windup,319,2003,Orange,8 +Inventor,Wild Windup,319,2003,Red,28 +Inventor,Wild Windup,319,2003,Tan,1 +Inventor,Wild Windup,319,2003,Trans-Red,2 +Inventor,Wild Windup,319,2003,Trans-Yellow,1 +Inventor,Motor Movers,256,2003,Trans-Clear,3 +Inventor,Motor Movers,256,2003,Blue,1 +Inventor,Motor Movers,256,2003,Dark Gray,18 +Inventor,Motor Movers,256,2003,Light Gray,17 +Inventor,Motor Movers,256,2003,Medium Orange,4 +Inventor,Motor Movers,256,2003,Red,5 +Inventor,Motor Movers,256,2003,Trans-Black,1 +Inventor,Motor Movers,256,2003,Black,18 +Inventor,Motor Movers,256,2003,Tan,4 +Inventor,Motor Movers,256,2003,Yellow,23 +Inventor,Motor Movers,256,2003,White,2 +Inventor,Motion Madness,244,2003,Blue,26 +Inventor,Motion Madness,244,2003,Dark Gray,3 +Inventor,Motion Madness,244,2003,Light Gray,8 +Inventor,Motion Madness,244,2003,Medium Blue,12 +Inventor,Motion Madness,244,2003,Red,1 +Inventor,Motion Madness,244,2003,Tan,1 +Inventor,Motion Madness,244,2003,Black,19 +Inventor,Motion Madness,244,2003,Yellow,11 +Inventor,Motion Madness,244,2003,White,9 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Lime,3 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Olive Green,1 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Orange,1 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Red,8 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Tan,7 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Trans-Bright Green,1 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Trans-Clear,3 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Trans-Light Blue,5 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Trans-Red,1 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Trans-Yellow,1 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,White,23 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Trans-Black,1 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Glow in Dark White,1 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Yellow,5 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Black,35 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Blue,2 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Dark Bluish Gray,30 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Dark Brown,1 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Dark Green,7 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Dark Orange,1 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Dark Red,4 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Flat Silver,1 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Light Bluish Gray,28 +Iron Man,Iron Man: Malibu Mansion Attack,363,2013,Light Flesh,3 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Tan,4 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Reddish Brown,1 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Red,9 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Medium Dark Flesh,1 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Light Flesh,1 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Light Bluish Gray,13 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Green,1 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Glow in Dark White,1 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Dark Red,4 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Dark Green,4 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Dark Bluish Gray,16 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Blue,2 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Yellow,7 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Trans-Black,2 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Trans-Light Blue,2 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Trans-Red,3 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Black,19 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Trans-Yellow,1 +Iron Man,Iron Man: Extremis Sea Port Battle,194,2013,Trans-Bright Green,1 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Black,15 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Blue,2 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Dark Bluish Gray,8 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Dark Green,4 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Dark Red,4 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Flat Silver,1 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Light Bluish Gray,11 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Light Flesh,2 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Olive Green,1 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Red,1 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Trans-Light Blue,2 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Trans-Orange,2 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Trans-Red,1 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Trans-Yellow,1 +Iron Man,Iron Man vs. The Mandarin: Ultimate Showdown,91,2013,Yellow,3 +Iron Man,Iron Man vs. Fighting Drone,24,2013,Light Bluish Gray,2 +Iron Man,Iron Man vs. Fighting Drone,24,2013,Dark Red,4 +Iron Man,Iron Man vs. Fighting Drone,24,2013,Dark Bluish Gray,4 +Iron Man,Iron Man vs. Fighting Drone,24,2013,Black,4 +Iron Man,Iron Man vs. Fighting Drone,24,2013,Trans-Light Blue,2 +Iron Man,Iron Man vs. Fighting Drone,24,2013,Trans-Green,1 +Iron Man,Iron Man vs. Fighting Drone,24,2013,Trans-Bright Green,1 +Iron Man,Iron Man vs. Fighting Drone,24,2013,Light Flesh,1 +Iron Man,Gun Mounting System,16,2013,Yellow,2 +Iron Man,Gun Mounting System,16,2013,Trans-Red,1 +Iron Man,Gun Mounting System,16,2013,Reddish Brown,1 +Iron Man,Gun Mounting System,16,2013,Dark Blue,3 +Iron Man,Gun Mounting System,16,2013,Black,7 +Island Xtreme Stunts,Tower,332,2002,Orange,6 +Island Xtreme Stunts,Tower,332,2002,Medium Blue,3 +Island Xtreme Stunts,Tower,332,2002,Trans-Green,1 +Island Xtreme Stunts,Tower,332,2002,Trans-Black,3 +Island Xtreme Stunts,Tower,332,2002,Red,20 +Island Xtreme Stunts,Tower,332,2002,Trans-Red,1 +Island Xtreme Stunts,Tower,332,2002,Light Yellow,8 +Island Xtreme Stunts,Tower,332,2002,Light Gray,32 +Island Xtreme Stunts,Tower,332,2002,Green,2 +Island Xtreme Stunts,Tower,332,2002,Dark Red,1 +Island Xtreme Stunts,Tower,332,2002,Dark Gray,22 +Island Xtreme Stunts,Tower,332,2002,Bright Green,1 +Island Xtreme Stunts,Tower,332,2002,Blue,3 +Island Xtreme Stunts,Tower,332,2002,Black,40 +Island Xtreme Stunts,Tower,332,2002,Chrome Silver,1 +Island Xtreme Stunts,Tower,332,2002,Yellow,11 +Island Xtreme Stunts,Tower,332,2002,Trans-Neon Green,2 +Island Xtreme Stunts,Tower,332,2002,White,10 +Island Xtreme Stunts,Tower,332,2002,Trans-Neon Orange,1 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Dark Red,1 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Trans-Red,1 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Trans-Neon Green,2 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Trans-Black,2 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Red,8 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Orange,18 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Light Gray,11 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Yellow,9 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Chrome Silver,4 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Dark Gray,3 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Black,24 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,Blue,2 +Island Xtreme Stunts,Truck and Stunt Trikes,198,2002,White,3 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Medium Blue,1 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Orange,1 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Red,6 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Trans-Neon Green,1 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Green,1 +Island Xtreme Stunts,Skateboard Challenge,116,2002,White,2 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Yellow,5 +Island Xtreme Stunts,Skateboard Challenge,116,2002,[No Color],1 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Black,12 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Blue,2 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Bright Green,2 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Dark Gray,9 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Dark Red,1 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Light Gray,12 +Island Xtreme Stunts,Skateboard Challenge,116,2002,Light Yellow,5 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,White,12 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,Trans-Neon Orange,1 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,Orange,1 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,Medium Blue,2 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,Light Gray,7 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,Black,18 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,Blue,7 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,Dark Red,1 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,Chrome Silver,1 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,Dark Gray,4 +Island Xtreme Stunts,Wake Rider (Wave Catcher),92,2002,Yellow,2 +Island Xtreme Stunts,Beach Lookout,88,2002,Yellow,6 +Island Xtreme Stunts,Beach Lookout,88,2002,Dark Gray,8 +Island Xtreme Stunts,Beach Lookout,88,2002,[No Color],1 +Island Xtreme Stunts,Beach Lookout,88,2002,Black,14 +Island Xtreme Stunts,Beach Lookout,88,2002,Blue,1 +Island Xtreme Stunts,Beach Lookout,88,2002,Light Gray,8 +Island Xtreme Stunts,Beach Lookout,88,2002,Light Yellow,5 +Island Xtreme Stunts,Beach Lookout,88,2002,Orange,5 +Island Xtreme Stunts,Beach Lookout,88,2002,Red,6 +Island Xtreme Stunts,Beach Lookout,88,2002,White,2 +Island Xtreme Stunts,Air Chase,85,2002,Black,18 +Island Xtreme Stunts,Air Chase,85,2002,Blue,4 +Island Xtreme Stunts,Air Chase,85,2002,Trans-Red,1 +Island Xtreme Stunts,Air Chase,85,2002,Chrome Silver,1 +Island Xtreme Stunts,Air Chase,85,2002,Light Gray,5 +Island Xtreme Stunts,Air Chase,85,2002,Medium Blue,3 +Island Xtreme Stunts,Air Chase,85,2002,Orange,2 +Island Xtreme Stunts,Air Chase,85,2002,Red,2 +Island Xtreme Stunts,Air Chase,85,2002,Trans-Green,1 +Island Xtreme Stunts,Air Chase,85,2002,Yellow,4 +Island Xtreme Stunts,Air Chase,85,2002,White,14 +Island Xtreme Stunts,Air Chase,85,2002,Trans-Black,1 +Island Xtreme Stunts,Beach Cruiser,54,2002,Orange,2 +Island Xtreme Stunts,Beach Cruiser,54,2002,Red,6 +Island Xtreme Stunts,Beach Cruiser,54,2002,Light Gray,3 +Island Xtreme Stunts,Beach Cruiser,54,2002,Green,1 +Island Xtreme Stunts,Beach Cruiser,54,2002,Dark Gray,2 +Island Xtreme Stunts,Beach Cruiser,54,2002,Blue,1 +Island Xtreme Stunts,Beach Cruiser,54,2002,Black,11 +Island Xtreme Stunts,Beach Cruiser,54,2002,[No Color],1 +Island Xtreme Stunts,Beach Cruiser,54,2002,Yellow,6 +Island Xtreme Stunts,Beach Cruiser,54,2002,White,2 +Island Xtreme Stunts,Beach Cruiser,54,2002,Trans-Neon Orange,1 +Island Xtreme Stunts,Beach Cruiser,54,2002,Trans-Clear,1 +Island Xtreme Stunts,Snap's Cruiser,19,2002,Trans-Neon Orange,1 +Island Xtreme Stunts,Snap's Cruiser,19,2002,White,1 +Island Xtreme Stunts,Snap's Cruiser,19,2002,Yellow,5 +Island Xtreme Stunts,Snap's Cruiser,19,2002,Orange,2 +Island Xtreme Stunts,Snap's Cruiser,19,2002,Dark Gray,1 +Island Xtreme Stunts,Snap's Cruiser,19,2002,Black,3 +Island Xtreme Stunts,Snap's Cruiser,19,2002,Red,1 +Island Xtreme Stunts,Brickster's Trike,17,2002,Black,5 +Island Xtreme Stunts,Brickster's Trike,17,2002,Trans-Neon Orange,1 +Island Xtreme Stunts,Brickster's Trike,17,2002,Yellow,1 +Island Xtreme Stunts,Brickster's Trike,17,2002,White,1 +Island Xtreme Stunts,Brickster's Trike,17,2002,Trans-Red,1 +Island Xtreme Stunts,Brickster's Trike,17,2002,Medium Blue,1 +Island Xtreme Stunts,Brickster's Trike,17,2002,Trans-Neon Green,1 +Island Xtreme Stunts,Brickster's Trike,17,2002,Light Gray,1 +Island Xtreme Stunts,Brickster's Trike,17,2002,Blue,3 +Island Xtreme Stunts,Skateboarding Pepper,13,2002,Yellow,2 +Island Xtreme Stunts,Skateboarding Pepper,13,2002,White,1 +Island Xtreme Stunts,Skateboarding Pepper,13,2002,Red,1 +Island Xtreme Stunts,Skateboarding Pepper,13,2002,Black,3 +Island Xtreme Stunts,Skateboarding Pepper,13,2002,Blue,1 +Island Xtreme Stunts,Skateboarding Pepper,13,2002,Dark Gray,1 +Island Xtreme Stunts,Skateboarding Pepper,13,2002,Green,1 +Island Xtreme Stunts,Skateboarding Pepper,13,2002,Light Gray,1 +Island Xtreme Stunts,Xtreme Stunts Brickster Chupa Chups Promotional,4,2003,Black,1 +Island Xtreme Stunts,Xtreme Stunts Brickster Chupa Chups Promotional,4,2003,Dark Gray,1 +Island Xtreme Stunts,Xtreme Stunts Brickster Chupa Chups Promotional,4,2003,White,1 +Island Xtreme Stunts,Xtreme Stunts Brickster Chupa Chups Promotional,4,2003,Yellow,1 +Island Xtreme Stunts,Xtreme Stunts Pepper Roni Chupa Chups Promotional,4,2003,Blue,1 +Island Xtreme Stunts,Xtreme Stunts Pepper Roni Chupa Chups Promotional,4,2003,Red,1 +Island Xtreme Stunts,Xtreme Stunts Pepper Roni Chupa Chups Promotional,4,2003,White,1 +Island Xtreme Stunts,Xtreme Stunts Pepper Roni Chupa Chups Promotional,4,2003,Yellow,1 +Island Xtreme Stunts,Xtreme Stunts Snap Lockitt Chupa Chups Promotional,4,2003,Black,1 +Island Xtreme Stunts,Xtreme Stunts Snap Lockitt Chupa Chups Promotional,4,2003,White,1 +Island Xtreme Stunts,Xtreme Stunts Snap Lockitt Chupa Chups Promotional,4,2003,Yellow,2 +Islanders,Enchanted Island,439,1994,Chrome Gold,4 +Islanders,Enchanted Island,439,1994,[No Color],1 +Islanders,Enchanted Island,439,1994,Black,51 +Islanders,Enchanted Island,439,1994,Blue,5 +Islanders,Enchanted Island,439,1994,Brown,14 +Islanders,Enchanted Island,439,1994,Trans-Neon Orange,1 +Islanders,Enchanted Island,439,1994,Dark Gray,1 +Islanders,Enchanted Island,439,1994,Green,18 +Islanders,Enchanted Island,439,1994,Light Gray,50 +Islanders,Enchanted Island,439,1994,Red,20 +Islanders,Enchanted Island,439,1994,Trans-Yellow,1 +Islanders,Enchanted Island,439,1994,White,12 +Islanders,Enchanted Island,439,1994,Yellow,13 +Islanders,Forbidden Cove,222,1994,Light Gray,19 +Islanders,Forbidden Cove,222,1994,Red,12 +Islanders,Forbidden Cove,222,1994,White,6 +Islanders,Forbidden Cove,222,1994,Yellow,12 +Islanders,Forbidden Cove,222,1994,Brown,13 +Islanders,Forbidden Cove,222,1994,Dark Gray,2 +Islanders,Forbidden Cove,222,1994,Chrome Gold,4 +Islanders,Forbidden Cove,222,1994,Blue,2 +Islanders,Forbidden Cove,222,1994,Green,9 +Islanders,Forbidden Cove,222,1994,[No Color],1 +Islanders,Forbidden Cove,222,1994,Black,30 +Islanders,King Kahuka's Throne,155,1994,White,7 +Islanders,King Kahuka's Throne,155,1994,Yellow,10 +Islanders,King Kahuka's Throne,155,1994,Black,17 +Islanders,King Kahuka's Throne,155,1994,Blue,4 +Islanders,King Kahuka's Throne,155,1994,Brown,6 +Islanders,King Kahuka's Throne,155,1994,Chrome Gold,4 +Islanders,King Kahuka's Throne,155,1994,Dark Gray,2 +Islanders,King Kahuka's Throne,155,1994,Green,6 +Islanders,King Kahuka's Throne,155,1994,Light Gray,19 +Islanders,King Kahuka's Throne,155,1994,Red,11 +Islanders,King Kahuka's Throne,155,1994,Trans-Dark Blue,1 +Islanders,King Kahuka's Throne,155,1994,Trans-Neon Orange,1 +Islanders,King Kahuka's Throne,155,1994,Trans-Red,1 +Islanders,Islander Catamaran,64,1994,Trans-Dark Blue,1 +Islanders,Islander Catamaran,64,1994,Green,3 +Islanders,Islander Catamaran,64,1994,[No Color],1 +Islanders,Islander Catamaran,64,1994,Black,9 +Islanders,Islander Catamaran,64,1994,Brown,1 +Islanders,Islander Catamaran,64,1994,Light Gray,1 +Islanders,Islander Catamaran,64,1994,Red,12 +Islanders,Islander Catamaran,64,1994,White,5 +Islanders,Islander Catamaran,64,1994,Yellow,9 +Islanders,Crocodile Cage,61,1994,Brown,4 +Islanders,Crocodile Cage,61,1994,Dark Gray,1 +Islanders,Crocodile Cage,61,1994,Green,5 +Islanders,Crocodile Cage,61,1994,Light Gray,6 +Islanders,Crocodile Cage,61,1994,Red,4 +Islanders,Crocodile Cage,61,1994,White,3 +Islanders,Crocodile Cage,61,1994,Yellow,8 +Islanders,Crocodile Cage,61,1994,Trans-Neon Orange,1 +Islanders,Crocodile Cage,61,1994,Black,11 +Islanders,King Kahuka,49,1994,Black,4 +Islanders,King Kahuka,49,1994,Blue,1 +Islanders,King Kahuka,49,1994,Brown,3 +Islanders,King Kahuka,49,1994,Chrome Gold,4 +Islanders,King Kahuka,49,1994,Green,1 +Islanders,King Kahuka,49,1994,Light Gray,6 +Islanders,King Kahuka,49,1994,Red,8 +Islanders,King Kahuka,49,1994,Trans-Dark Blue,1 +Islanders,King Kahuka,49,1994,White,3 +Islanders,King Kahuka,49,1994,Yellow,5 +Islanders,Enchanted Island,445,2001,[No Color],1 +Islanders,Enchanted Island,445,2001,Black,51 +Islanders,Enchanted Island,445,2001,Blue,5 +Islanders,Enchanted Island,445,2001,Brown,14 +Islanders,Enchanted Island,445,2001,Chrome Gold,4 +Islanders,Enchanted Island,445,2001,Dark Gray,1 +Islanders,Enchanted Island,445,2001,Green,18 +Islanders,Enchanted Island,445,2001,Light Gray,50 +Islanders,Enchanted Island,445,2001,Red,20 +Islanders,Enchanted Island,445,2001,Trans-Neon Orange,1 +Islanders,Enchanted Island,445,2001,Trans-Yellow,1 +Islanders,Enchanted Island,445,2001,White,12 +Islanders,Enchanted Island,445,2001,Yellow,13 +Jumbo Bricks,JUMBO Pull Toy,9,1966,Blue,1 +Jumbo Bricks,JUMBO Pull Toy,9,1966,Red,1 +Jumbo Bricks,JUMBO Pull Toy,9,1966,White,1 +Jumbo Bricks,Pre-School Large Set,16,1968,Blue,1 +Jumbo Bricks,Pre-School Large Set,16,1968,Red,1 +Jumbo Bricks,Pre-School Large Set,16,1968,White,1 +Jumbo Bricks,Pre-School Large Set,16,1968,Yellow,1 +Jumbo Bricks,Pre-School Medium Set,8,1968,Blue,1 +Jumbo Bricks,Pre-School Medium Set,8,1968,Red,1 +Jumbo Bricks,Pre-School Medium Set,8,1968,White,1 +Jumbo Bricks,Pre-School Medium Set,8,1968,Yellow,1 +Jungle,Amazon Ancient Ruins,463,1999,Black,32 +Jungle,Amazon Ancient Ruins,463,1999,Blue,14 +Jungle,Amazon Ancient Ruins,463,1999,Brown,12 +Jungle,Amazon Ancient Ruins,463,1999,Chrome Gold,5 +Jungle,Amazon Ancient Ruins,463,1999,Chrome Silver,1 +Jungle,Amazon Ancient Ruins,463,1999,Dark Gray,18 +Jungle,Amazon Ancient Ruins,463,1999,Green,16 +Jungle,Amazon Ancient Ruins,463,1999,Light Gray,27 +Jungle,Amazon Ancient Ruins,463,1999,Red,28 +Jungle,Amazon Ancient Ruins,463,1999,Tan,8 +Jungle,Amazon Ancient Ruins,463,1999,Trans-Clear,3 +Jungle,Amazon Ancient Ruins,463,1999,Trans-Neon Orange,2 +Jungle,Amazon Ancient Ruins,463,1999,Trans-Red,1 +Jungle,Amazon Ancient Ruins,463,1999,Trans-Yellow,1 +Jungle,Amazon Ancient Ruins,463,1999,White,12 +Jungle,Amazon Ancient Ruins,463,1999,Yellow,24 +Jungle,River Expedition,318,1999,Trans-Neon Orange,1 +Jungle,River Expedition,318,1999,Trans-Green,2 +Jungle,River Expedition,318,1999,Trans-Clear,2 +Jungle,River Expedition,318,1999,Tan,3 +Jungle,River Expedition,318,1999,Red,21 +Jungle,River Expedition,318,1999,Light Gray,28 +Jungle,River Expedition,318,1999,Trans-Dark Blue,1 +Jungle,River Expedition,318,1999,Dark Gray,12 +Jungle,River Expedition,318,1999,Green,8 +Jungle,River Expedition,318,1999,Black,35 +Jungle,River Expedition,318,1999,Blue,10 +Jungle,River Expedition,318,1999,Brown,12 +Jungle,River Expedition,318,1999,Chrome Gold,1 +Jungle,River Expedition,318,1999,White,18 +Jungle,River Expedition,318,1999,Trans-Red,2 +Jungle,River Expedition,318,1999,Yellow,17 +Jungle,Expedition Balloon,173,1999,Black,16 +Jungle,Expedition Balloon,173,1999,Blue,10 +Jungle,Expedition Balloon,173,1999,Brown,6 +Jungle,Expedition Balloon,173,1999,Chrome Gold,1 +Jungle,Expedition Balloon,173,1999,Dark Gray,8 +Jungle,Expedition Balloon,173,1999,Light Gray,20 +Jungle,Expedition Balloon,173,1999,Red,5 +Jungle,Expedition Balloon,173,1999,Tan,2 +Jungle,Expedition Balloon,173,1999,Trans-Clear,2 +Jungle,Expedition Balloon,173,1999,White,4 +Jungle,Expedition Balloon,173,1999,Yellow,5 +Jungle,Expedition Balloon,173,1999,Green,3 +Jungle,Expedition Balloon,173,1999,[No Color],2 +Jungle,Spider's Secret,129,1999,Black,8 +Jungle,Spider's Secret,129,1999,Blue,6 +Jungle,Spider's Secret,129,1999,Brown,4 +Jungle,Spider's Secret,129,1999,Chrome Gold,1 +Jungle,Spider's Secret,129,1999,Chrome Silver,1 +Jungle,Spider's Secret,129,1999,Dark Gray,8 +Jungle,Spider's Secret,129,1999,Green,5 +Jungle,Spider's Secret,129,1999,Light Gray,13 +Jungle,Spider's Secret,129,1999,Red,6 +Jungle,Spider's Secret,129,1999,Tan,7 +Jungle,Spider's Secret,129,1999,Trans-Clear,1 +Jungle,Spider's Secret,129,1999,Trans-Neon Orange,1 +Jungle,Spider's Secret,129,1999,Trans-Red,1 +Jungle,Spider's Secret,129,1999,White,11 +Jungle,Spider's Secret,129,1999,Yellow,7 +Jungle,Pontoon Plane,72,1999,Trans-Red,1 +Jungle,Pontoon Plane,72,1999,Black,16 +Jungle,Pontoon Plane,72,1999,Tan,4 +Jungle,Pontoon Plane,72,1999,Red,3 +Jungle,Pontoon Plane,72,1999,White,1 +Jungle,Pontoon Plane,72,1999,Trans-Clear,1 +Jungle,Pontoon Plane,72,1999,Light Gray,8 +Jungle,Pontoon Plane,72,1999,Dark Gray,3 +Jungle,Pontoon Plane,72,1999,Brown,9 +Jungle,Pontoon Plane,72,1999,Yellow,1 +Jungle,Hidden Treasure,33,1999,Yellow,2 +Jungle,Jungle Surprise,33,1999,Black,3 +Jungle,Jungle Surprise,33,1999,Blue,1 +Jungle,Jungle Surprise,33,1999,Brown,1 +Jungle,Jungle Surprise,33,1999,Chrome Gold,1 +Jungle,Jungle Surprise,33,1999,Dark Gray,2 +Jungle,Jungle Surprise,33,1999,Green,5 +Jungle,Jungle Surprise,33,1999,Light Gray,4 +Jungle,Jungle Surprise,33,1999,Red,3 +Jungle,Jungle Surprise,33,1999,Tan,1 +Jungle,Jungle Surprise,33,1999,Trans-Neon Green,1 +Jungle,Jungle Surprise,33,1999,White,1 +Jungle,Jungle Surprise,33,1999,Yellow,2 +Jungle,Hidden Treasure,33,1999,Chrome Gold,1 +Jungle,Hidden Treasure,33,1999,Black,3 +Jungle,Hidden Treasure,33,1999,Blue,1 +Jungle,Hidden Treasure,33,1999,Brown,1 +Jungle,Hidden Treasure,33,1999,Dark Gray,2 +Jungle,Hidden Treasure,33,1999,Green,5 +Jungle,Hidden Treasure,33,1999,Light Gray,4 +Jungle,Hidden Treasure,33,1999,Red,3 +Jungle,Hidden Treasure,33,1999,Tan,1 +Jungle,Hidden Treasure,33,1999,Trans-Neon Green,1 +Jungle,Hidden Treasure,33,1999,White,1 +Jungle,Ruler of the Jungle,23,1999,Blue,4 +Jungle,Ruler of the Jungle,23,1999,Black,2 +Jungle,Ruler of the Jungle,23,1999,Brown,1 +Jungle,Ruler of the Jungle,23,1999,Green,1 +Jungle,Ruler of the Jungle,23,1999,Red,5 +Jungle,Ruler of the Jungle,23,1999,Trans-Red,1 +Jungle,Ruler of the Jungle,23,1999,Yellow,6 +Jungle,River Raft,19,1999,Brown,4 +Jungle,River Raft,19,1999,Dark Gray,3 +Jungle,River Raft,19,1999,Light Gray,1 +Jungle,River Raft,19,1999,Red,4 +Jungle,River Raft,19,1999,Tan,1 +Jungle,River Raft,19,1999,Trans-Neon Green,1 +Jungle,River Raft,19,1999,Yellow,1 +Jungle,River Raft,19,1999,Black,3 +Jungle,Jungle Mobile Lab,423,2017,Blue,13 +Jungle,Jungle Mobile Lab,423,2017,Bright Light Orange,20 +Jungle,Jungle Mobile Lab,423,2017,Dark Blue,1 +Jungle,Jungle Mobile Lab,423,2017,Dark Bluish Gray,26 +Jungle,Jungle Mobile Lab,423,2017,Dark Green,3 +Jungle,Jungle Mobile Lab,423,2017,Dark Orange,2 +Jungle,Jungle Mobile Lab,423,2017,Dark Tan,4 +Jungle,Jungle Mobile Lab,423,2017,Lime,2 +Jungle,Jungle Mobile Lab,423,2017,Flat Silver,1 +Jungle,Jungle Mobile Lab,423,2017,Light Bluish Gray,21 +Jungle,Jungle Mobile Lab,423,2017,Pearl Gold,1 +Jungle,Jungle Mobile Lab,423,2017,Red,7 +Jungle,Jungle Mobile Lab,423,2017,Reddish Brown,10 +Jungle,Jungle Mobile Lab,423,2017,Tan,6 +Jungle,Jungle Mobile Lab,423,2017,Black,37 +Jungle,Jungle Mobile Lab,423,2017,Trans-Clear,3 +Jungle,Jungle Mobile Lab,423,2017,Trans-Green,1 +Jungle,Jungle Mobile Lab,423,2017,Trans-Light Blue,3 +Jungle,Jungle Mobile Lab,423,2017,Trans-Orange,2 +Jungle,Jungle Mobile Lab,423,2017,Trans-Red,2 +Jungle,Jungle Mobile Lab,423,2017,Trans-Yellow,1 +Jungle,Jungle Mobile Lab,423,2017,White,8 +Jungle,Jungle Mobile Lab,423,2017,Yellow,6 +Jungle,Jungle Mobile Lab,423,2017,Green,12 +Jungle,Jungle Halftrack Mission,378,2017,[No Color],1 +Jungle,Jungle Halftrack Mission,378,2017,Black,31 +Jungle,Jungle Halftrack Mission,378,2017,Blue,12 +Jungle,Jungle Halftrack Mission,378,2017,Bright Light Orange,23 +Jungle,Jungle Halftrack Mission,378,2017,Dark Blue,1 +Jungle,Jungle Halftrack Mission,378,2017,Dark Bluish Gray,26 +Jungle,Jungle Halftrack Mission,378,2017,Dark Brown,1 +Jungle,Jungle Halftrack Mission,378,2017,Dark Tan,4 +Jungle,Jungle Halftrack Mission,378,2017,Flat Silver,3 +Jungle,Jungle Halftrack Mission,378,2017,Green,5 +Jungle,Jungle Halftrack Mission,378,2017,Light Bluish Gray,18 +Jungle,Jungle Halftrack Mission,378,2017,Pearl Gold,2 +Jungle,Jungle Halftrack Mission,378,2017,Red,4 +Jungle,Jungle Halftrack Mission,378,2017,Tan,12 +Jungle,Jungle Halftrack Mission,378,2017,Trans-Clear,1 +Jungle,Jungle Halftrack Mission,378,2017,Trans-Light Blue,3 +Jungle,Jungle Halftrack Mission,378,2017,Trans-Orange,2 +Jungle,Jungle Halftrack Mission,378,2017,Trans-Red,3 +Jungle,Jungle Halftrack Mission,378,2017,Trans-Yellow,1 +Jungle,Jungle Halftrack Mission,378,2017,White,1 +Jungle,Jungle Halftrack Mission,378,2017,Yellow,4 +Jungle,Jungle Halftrack Mission,378,2017,Reddish Brown,1 +Jungle,Jungle Halftrack Mission,378,2017,Dark Orange,3 +Jungle Rescue,Jungle Rescue Base,498,2014,Orange,1 +Jungle Rescue,Jungle Rescue Base,498,2014,Trans-Clear,4 +Jungle Rescue,Jungle Rescue Base,498,2014,Trans-Dark Blue,1 +Jungle Rescue,Jungle Rescue Base,498,2014,Trans-Light Blue,1 +Jungle Rescue,Jungle Rescue Base,498,2014,Trans-Neon Green,1 +Jungle Rescue,Jungle Rescue Base,498,2014,Trans-Orange,1 +Jungle Rescue,Jungle Rescue Base,498,2014,Trans-Yellow,1 +Jungle Rescue,Jungle Rescue Base,498,2014,White,18 +Jungle Rescue,Jungle Rescue Base,498,2014,Black,18 +Jungle Rescue,Jungle Rescue Base,498,2014,Blue,4 +Jungle Rescue,Jungle Rescue Base,498,2014,Bright Green,1 +Jungle Rescue,Jungle Rescue Base,498,2014,Bright Light Orange,8 +Jungle Rescue,Jungle Rescue Base,498,2014,Bright Light Yellow,1 +Jungle Rescue,Jungle Rescue Base,498,2014,Bright Pink,4 +Jungle Rescue,Jungle Rescue Base,498,2014,Dark Bluish Gray,8 +Jungle Rescue,Jungle Rescue Base,498,2014,Dark Brown,2 +Jungle Rescue,Jungle Rescue Base,498,2014,Dark Orange,4 +Jungle Rescue,Jungle Rescue Base,498,2014,Dark Pink,7 +Jungle Rescue,Jungle Rescue Base,498,2014,Dark Tan,1 +Jungle Rescue,Jungle Rescue Base,498,2014,Flat Silver,1 +Jungle Rescue,Jungle Rescue Base,498,2014,Tan,21 +Jungle Rescue,Jungle Rescue Base,498,2014,Green,15 +Jungle Rescue,Jungle Rescue Base,498,2014,Medium Azure,2 +Jungle Rescue,Jungle Rescue Base,498,2014,Light Aqua,11 +Jungle Rescue,Jungle Rescue Base,498,2014,Light Bluish Gray,28 +Jungle Rescue,Jungle Rescue Base,498,2014,Light Flesh,2 +Jungle Rescue,Jungle Rescue Base,498,2014,Lime,10 +Jungle Rescue,Jungle Rescue Base,498,2014,Magenta,4 +Jungle Rescue,Jungle Rescue Base,498,2014,Medium Dark Flesh,2 +Jungle Rescue,Jungle Rescue Base,498,2014,Medium Lavender,2 +Jungle Rescue,Jungle Rescue Base,498,2014,Yellow,1 +Jungle Rescue,Jungle Rescue Base,498,2014,Pearl Gold,2 +Jungle Rescue,Jungle Rescue Base,498,2014,Red,2 +Jungle Rescue,Jungle Rescue Base,498,2014,Reddish Brown,33 +Jungle Rescue,Jungle Rescue Base,498,2014,Sand Blue,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Reddish Brown,7 +Jungle Rescue,Jungle Bridge Rescue,365,2014,[No Color],1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Black,8 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Bright Green,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Bright Light Blue,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Bright Light Orange,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Bright Pink,2 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Dark Blue,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Dark Bluish Gray,18 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Dark Orange,4 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Dark Pink,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Dark Purple,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Dark Red,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Dark Tan,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Flat Silver,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Trans-Green,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Trans-Light Blue,2 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Trans-Purple,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Trans-Red,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Light Bluish Gray,30 +Jungle Rescue,Jungle Bridge Rescue,365,2014,White,26 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Yellow,4 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Light Flesh,2 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Lime,12 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Magenta,3 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Medium Azure,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Medium Dark Flesh,2 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Green,8 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Medium Lavender,7 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Red,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Light Aqua,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Sand Blue,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Sand Green,1 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Tan,5 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Trans-Clear,4 +Jungle Rescue,Jungle Bridge Rescue,365,2014,Trans-Yellow,1 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Magenta,4 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Medium Azure,5 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Medium Dark Flesh,1 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Medium Lavender,4 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Red,4 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Reddish Brown,23 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Sand Green,1 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Tan,15 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Trans-Clear,1 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Trans-Light Blue,1 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Trans-Yellow,1 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,White,11 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Yellow,1 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,[No Color],1 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Black,4 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Bright Green,4 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Bright Light Orange,2 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Bright Pink,1 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Dark Bluish Gray,3 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Dark Brown,2 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Dark Orange,5 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Dark Pink,3 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Dark Red,2 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Dark Tan,3 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Green,6 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Lavender,1 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Light Bluish Gray,6 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Light Flesh,2 +Jungle Rescue,Jungle Tree Sanctuary,319,2014,Lime,7 +Jungle Rescue,Jungle Falls Rescue,186,2014,Trans-Neon Green,1 +Jungle Rescue,Jungle Falls Rescue,186,2014,Blue,2 +Jungle Rescue,Jungle Falls Rescue,186,2014,Bright Green,1 +Jungle Rescue,Jungle Falls Rescue,186,2014,Bright Light Orange,2 +Jungle Rescue,Jungle Falls Rescue,186,2014,Dark Bluish Gray,15 +Jungle Rescue,Jungle Falls Rescue,186,2014,Dark Orange,2 +Jungle Rescue,Jungle Falls Rescue,186,2014,Dark Pink,2 +Jungle Rescue,Jungle Falls Rescue,186,2014,Green,6 +Jungle Rescue,Jungle Falls Rescue,186,2014,Light Bluish Gray,19 +Jungle Rescue,Jungle Falls Rescue,186,2014,Light Flesh,2 +Jungle Rescue,Jungle Falls Rescue,186,2014,Black,3 +Jungle Rescue,Jungle Falls Rescue,186,2014,Lime,4 +Jungle Rescue,Jungle Falls Rescue,186,2014,Medium Azure,3 +Jungle Rescue,Jungle Falls Rescue,186,2014,Red,1 +Jungle Rescue,Jungle Falls Rescue,186,2014,Reddish Brown,9 +Jungle Rescue,Jungle Falls Rescue,186,2014,Sand Green,1 +Jungle Rescue,Jungle Falls Rescue,186,2014,Tan,9 +Jungle Rescue,Jungle Falls Rescue,186,2014,Trans-Dark Pink,1 +Jungle Rescue,Jungle Falls Rescue,186,2014,Trans-Light Blue,4 +Jungle Rescue,Jungle Falls Rescue,186,2014,Yellow,4 +Jungle Rescue,Jungle Falls Rescue,186,2014,White,6 +Jungle Rescue,First Aid Jungle Bike,156,2014,Reddish Brown,11 +Jungle Rescue,First Aid Jungle Bike,156,2014,Tan,4 +Jungle Rescue,First Aid Jungle Bike,156,2014,Trans-Clear,2 +Jungle Rescue,First Aid Jungle Bike,156,2014,Trans-Yellow,1 +Jungle Rescue,First Aid Jungle Bike,156,2014,White,4 +Jungle Rescue,First Aid Jungle Bike,156,2014,Yellow,2 +Jungle Rescue,First Aid Jungle Bike,156,2014,Red,1 +Jungle Rescue,First Aid Jungle Bike,156,2014,Medium Lavender,1 +Jungle Rescue,First Aid Jungle Bike,156,2014,Black,7 +Jungle Rescue,First Aid Jungle Bike,156,2014,Bright Green,2 +Jungle Rescue,First Aid Jungle Bike,156,2014,Bright Light Blue,1 +Jungle Rescue,First Aid Jungle Bike,156,2014,Bright Light Orange,1 +Jungle Rescue,First Aid Jungle Bike,156,2014,Dark Bluish Gray,9 +Jungle Rescue,First Aid Jungle Bike,156,2014,Dark Orange,3 +Jungle Rescue,First Aid Jungle Bike,156,2014,Dark Pink,2 +Jungle Rescue,First Aid Jungle Bike,156,2014,Dark Tan,2 +Jungle Rescue,First Aid Jungle Bike,156,2014,Green,7 +Jungle Rescue,First Aid Jungle Bike,156,2014,Light Aqua,1 +Jungle Rescue,First Aid Jungle Bike,156,2014,Light Bluish Gray,16 +Jungle Rescue,First Aid Jungle Bike,156,2014,Light Flesh,2 +Jungle Rescue,First Aid Jungle Bike,156,2014,Lime,4 +Jungle Rescue,First Aid Jungle Bike,156,2014,Magenta,1 +Jungle Rescue,First Aid Jungle Bike,156,2014,Medium Azure,2 +Jungle Rescue,Jungle Boat,31,2014,Black,1 +Jungle Rescue,Jungle Boat,31,2014,Blue,1 +Jungle Rescue,Jungle Boat,31,2014,Bright Light Orange,1 +Jungle Rescue,Jungle Boat,31,2014,Dark Green,1 +Jungle Rescue,Jungle Boat,31,2014,Dark Pink,1 +Jungle Rescue,Jungle Boat,31,2014,Green,1 +Jungle Rescue,Jungle Boat,31,2014,Light Bluish Gray,6 +Jungle Rescue,Jungle Boat,31,2014,Light Flesh,2 +Jungle Rescue,Jungle Boat,31,2014,Lime,3 +Jungle Rescue,Jungle Boat,31,2014,Reddish Brown,1 +Jungle Rescue,Jungle Boat,31,2014,Tan,1 +Jungle Rescue,Jungle Boat,31,2014,Bright Pink,3 +Jungle Rescue,Jungle Boat,31,2014,White,4 +Juniors,Knights’ Castle,479,2014,Green,5 +Juniors,Knights’ Castle,479,2014,Trans-Orange,1 +Juniors,Knights’ Castle,479,2014,Flat Silver,2 +Juniors,Knights’ Castle,479,2014,Dark Orange,1 +Juniors,Knights’ Castle,479,2014,Black,7 +Juniors,Knights’ Castle,479,2014,Dark Azure,6 +Juniors,Knights’ Castle,479,2014,Dark Bluish Gray,19 +Juniors,Knights’ Castle,479,2014,Dark Brown,1 +Juniors,Knights’ Castle,479,2014,Blue,5 +Juniors,Knights’ Castle,479,2014,Yellow,7 +Juniors,Knights’ Castle,479,2014,White,13 +Juniors,Knights’ Castle,479,2014,Tan,3 +Juniors,Knights’ Castle,479,2014,Reddish Brown,14 +Juniors,Knights’ Castle,479,2014,Red,7 +Juniors,Knights’ Castle,479,2014,Pearl Gold,7 +Juniors,Knights’ Castle,479,2014,Pearl Dark Gray,2 +Juniors,Knights’ Castle,479,2014,Orange,5 +Juniors,Knights’ Castle,479,2014,Metallic Gold,1 +Juniors,Knights’ Castle,479,2014,Lime,4 +Juniors,Knights’ Castle,479,2014,Light Bluish Gray,18 +Juniors,Race Car Rally,349,2014,Trans-Green,1 +Juniors,Race Car Rally,349,2014,Trans-Black,1 +Juniors,Race Car Rally,349,2014,Red,19 +Juniors,Race Car Rally,349,2014,Orange,8 +Juniors,Race Car Rally,349,2014,Lime,7 +Juniors,Race Car Rally,349,2014,Light Bluish Gray,14 +Juniors,Race Car Rally,349,2014,Green,5 +Juniors,Race Car Rally,349,2014,Flat Silver,1 +Juniors,Race Car Rally,349,2014,Dark Azure,5 +Juniors,Race Car Rally,349,2014,Blue,11 +Juniors,Race Car Rally,349,2014,Trans-Clear,1 +Juniors,Race Car Rally,349,2014,Black,23 +Juniors,Race Car Rally,349,2014,White,21 +Juniors,Race Car Rally,349,2014,Dark Bluish Gray,9 +Juniors,Race Car Rally,349,2014,Trans-Orange,1 +Juniors,Race Car Rally,349,2014,Trans-Red,1 +Juniors,Race Car Rally,349,2014,Trans-Yellow,1 +Juniors,Race Car Rally,349,2014,Yellow,9 +Juniors,Pony Farm,305,2014,Dark Bluish Gray,3 +Juniors,Pony Farm,305,2014,Dark Pink,5 +Juniors,Pony Farm,305,2014,Dark Red,1 +Juniors,Pony Farm,305,2014,Dark Tan,1 +Juniors,Pony Farm,305,2014,Green,7 +Juniors,Pony Farm,305,2014,Light Bluish Gray,7 +Juniors,Pony Farm,305,2014,Lime,6 +Juniors,Pony Farm,305,2014,Magenta,4 +Juniors,Pony Farm,305,2014,Medium Azure,3 +Juniors,Pony Farm,305,2014,Medium Dark Flesh,2 +Juniors,Pony Farm,305,2014,Orange,2 +Juniors,Pony Farm,305,2014,Red,5 +Juniors,Pony Farm,305,2014,Reddish Brown,8 +Juniors,Pony Farm,305,2014,White,13 +Juniors,Pony Farm,305,2014,Yellow,8 +Juniors,Pony Farm,305,2014,Tan,10 +Juniors,Pony Farm,305,2014,Bright Green,2 +Juniors,Pony Farm,305,2014,Bright Light Orange,2 +Juniors,Pony Farm,305,2014,Bright Pink,6 +Juniors,Construction,159,2014,Trans-Red,1 +Juniors,Construction,159,2014,Trans-Orange,1 +Juniors,Construction,159,2014,Trans-Clear,1 +Juniors,Construction,159,2014,Tan,9 +Juniors,Construction,159,2014,Reddish Brown,1 +Juniors,Construction,159,2014,Red,7 +Juniors,Construction,159,2014,Orange,8 +Juniors,Construction,159,2014,Medium Dark Flesh,1 +Juniors,Construction,159,2014,Lime,3 +Juniors,Construction,159,2014,Light Bluish Gray,9 +Juniors,Construction,159,2014,Green,7 +Juniors,Construction,159,2014,Dark Tan,2 +Juniors,Construction,159,2014,Dark Bluish Gray,11 +Juniors,Construction,159,2014,Dark Azure,3 +Juniors,Construction,159,2014,Black,14 +Juniors,Construction,159,2014,White,1 +Juniors,Construction,159,2014,Yellow,9 +Juniors,Batman: Defend the Batcave,150,2014,White,1 +Juniors,Batman: Defend the Batcave,150,2014,Trans-Green,1 +Juniors,Batman: Defend the Batcave,150,2014,Trans-Black,1 +Juniors,Batman: Defend the Batcave,150,2014,Red,7 +Juniors,Batman: Defend the Batcave,150,2014,Lime,4 +Juniors,Batman: Defend the Batcave,150,2014,Light Flesh,2 +Juniors,Batman: Defend the Batcave,150,2014,Light Bluish Gray,10 +Juniors,Batman: Defend the Batcave,150,2014,Green,4 +Juniors,Batman: Defend the Batcave,150,2014,Dark Red,1 +Juniors,Batman: Defend the Batcave,150,2014,Dark Purple,2 +Juniors,Batman: Defend the Batcave,150,2014,Dark Bluish Gray,9 +Juniors,Batman: Defend the Batcave,150,2014,Dark Azure,1 +Juniors,Batman: Defend the Batcave,150,2014,Blue,12 +Juniors,Batman: Defend the Batcave,150,2014,Black,25 +Juniors,Batman: Defend the Batcave,150,2014,Trans-Red,2 +Juniors,Batman: Defend the Batcave,150,2014,Trans-Yellow,2 +Juniors,Batman: Defend the Batcave,150,2014,Trans-Orange,1 +Juniors,Batman: Defend the Batcave,150,2014,Trans-Light Blue,1 +Juniors,Batman: Defend the Batcave,150,2014,Yellow,9 +Juniors,The Princess Play Castle,149,2014,Bright Green,2 +Juniors,The Princess Play Castle,149,2014,Bright Light Orange,2 +Juniors,The Princess Play Castle,149,2014,Bright Pink,11 +Juniors,The Princess Play Castle,149,2014,Dark Pink,1 +Juniors,The Princess Play Castle,149,2014,Dark Purple,2 +Juniors,The Princess Play Castle,149,2014,Dark Tan,1 +Juniors,The Princess Play Castle,149,2014,Green,2 +Juniors,The Princess Play Castle,149,2014,Light Bluish Gray,4 +Juniors,The Princess Play Castle,149,2014,Lime,6 +Juniors,The Princess Play Castle,149,2014,Medium Azure,4 +Juniors,The Princess Play Castle,149,2014,Medium Lavender,3 +Juniors,The Princess Play Castle,149,2014,Orange,1 +Juniors,The Princess Play Castle,149,2014,Pearl Gold,8 +Juniors,The Princess Play Castle,149,2014,Reddish Brown,1 +Juniors,The Princess Play Castle,149,2014,Trans-Dark Pink,1 +Juniors,The Princess Play Castle,149,2014,Trans-Light Blue,1 +Juniors,The Princess Play Castle,149,2014,White,18 +Juniors,The Princess Play Castle,149,2014,Yellow,4 +Juniors,Police – The Big Escape,146,2014,Black,14 +Juniors,Police – The Big Escape,146,2014,Blue,8 +Juniors,Police – The Big Escape,146,2014,Dark Tan,1 +Juniors,Police – The Big Escape,146,2014,Green,3 +Juniors,Police – The Big Escape,146,2014,Light Bluish Gray,15 +Juniors,Police – The Big Escape,146,2014,Lime,1 +Juniors,Police – The Big Escape,146,2014,Medium Blue,1 +Juniors,Police – The Big Escape,146,2014,Medium Dark Flesh,1 +Juniors,Police – The Big Escape,146,2014,Red,4 +Juniors,Police – The Big Escape,146,2014,Reddish Brown,1 +Juniors,Police – The Big Escape,146,2014,Trans-Clear,1 +Juniors,Police – The Big Escape,146,2014,Trans-Dark Blue,3 +Juniors,Police – The Big Escape,146,2014,Trans-Light Blue,3 +Juniors,Police – The Big Escape,146,2014,Trans-Red,2 +Juniors,Police – The Big Escape,146,2014,Trans-Yellow,1 +Juniors,Police – The Big Escape,146,2014,White,18 +Juniors,Police – The Big Escape,146,2014,Yellow,5 +Juniors,Police – The Big Escape,146,2014,Dark Bluish Gray,11 +Juniors,Fire Emergency,123,2014,Trans-Red,1 +Juniors,Fire Emergency,123,2014,Orange,2 +Juniors,Fire Emergency,123,2014,Red,12 +Juniors,Fire Emergency,123,2014,Black,15 +Juniors,Fire Emergency,123,2014,Blue,5 +Juniors,Fire Emergency,123,2014,Dark Bluish Gray,6 +Juniors,Fire Emergency,123,2014,Green,2 +Juniors,Fire Emergency,123,2014,Light Bluish Gray,12 +Juniors,Fire Emergency,123,2014,Reddish Brown,1 +Juniors,Fire Emergency,123,2014,Trans-Clear,3 +Juniors,Fire Emergency,123,2014,Trans-Dark Blue,3 +Juniors,Fire Emergency,123,2014,Trans-Light Blue,1 +Juniors,Fire Emergency,123,2014,Trans-Orange,2 +Juniors,Fire Emergency,123,2014,White,9 +Juniors,Fire Emergency,123,2014,Yellow,10 +Juniors,Turtle Lair,107,2014,Trans-Red,1 +Juniors,Turtle Lair,107,2014,Trans-Light Blue,1 +Juniors,Turtle Lair,107,2014,Trans-Green,1 +Juniors,Turtle Lair,107,2014,Orange,1 +Juniors,Turtle Lair,107,2014,Pearl Gold,1 +Juniors,Turtle Lair,107,2014,Black,16 +Juniors,Turtle Lair,107,2014,Dark Bluish Gray,4 +Juniors,Turtle Lair,107,2014,Blue,2 +Juniors,Turtle Lair,107,2014,Red,2 +Juniors,Turtle Lair,107,2014,Reddish Brown,2 +Juniors,Turtle Lair,107,2014,Yellow,3 +Juniors,Turtle Lair,107,2014,White,3 +Juniors,Turtle Lair,107,2014,Dark Red,1 +Juniors,Turtle Lair,107,2014,Dark Tan,1 +Juniors,Turtle Lair,107,2014,Flat Silver,1 +Juniors,Turtle Lair,107,2014,Green,6 +Juniors,Turtle Lair,107,2014,Light Bluish Gray,10 +Juniors,Turtle Lair,107,2014,Lime,7 +Juniors,Turtle Lair,107,2014,Olive Green,4 +Juniors,Digger,75,2014,Trans-Neon Orange,1 +Juniors,Digger,75,2014,Yellow,11 +Juniors,Digger,75,2014,Tan,2 +Juniors,Digger,75,2014,Trans-Light Blue,1 +Juniors,Digger,75,2014,Light Bluish Gray,5 +Juniors,Digger,75,2014,Dark Tan,2 +Juniors,Digger,75,2014,Dark Bluish Gray,3 +Juniors,Digger,75,2014,Dark Azure,1 +Juniors,Digger,75,2014,Blue,1 +Juniors,Digger,75,2014,Black,10 +Juniors,Digger,75,2014,Orange,2 +Juniors,Digger,75,2014,Red,2 +Juniors,Digger,75,2014,Reddish Brown,2 +Juniors,Spider-Man: Spider-Car Pursuit,55,2014,Black,6 +Juniors,Spider-Man: Spider-Car Pursuit,55,2014,Blue,11 +Juniors,Spider-Man: Spider-Car Pursuit,55,2014,Dark Bluish Gray,1 +Juniors,Spider-Man: Spider-Car Pursuit,55,2014,White,6 +Juniors,Spider-Man: Spider-Car Pursuit,55,2014,Trans-Red,1 +Juniors,Spider-Man: Spider-Car Pursuit,55,2014,Trans-Orange,1 +Juniors,Spider-Man: Spider-Car Pursuit,55,2014,Red,5 +Juniors,Spider-Man: Spider-Car Pursuit,55,2014,Light Bluish Gray,5 +Juniors,Demolition Site,162,2017,Light Bluish Gray,10 +Juniors,Demolition Site,162,2017,Medium Dark Flesh,2 +Juniors,Demolition Site,162,2017,Orange,1 +Juniors,Demolition Site,162,2017,Red,4 +Juniors,Demolition Site,162,2017,Green,1 +Juniors,Demolition Site,162,2017,Tan,2 +Juniors,Demolition Site,162,2017,Trans-Clear,1 +Juniors,Demolition Site,162,2017,Trans-Light Blue,1 +Juniors,Demolition Site,162,2017,Trans-Orange,1 +Juniors,Demolition Site,162,2017,Trans-Red,1 +Juniors,Demolition Site,162,2017,Reddish Brown,2 +Juniors,Demolition Site,162,2017,White,4 +Juniors,Demolition Site,162,2017,Yellow,15 +Juniors,Demolition Site,162,2017,Black,19 +Juniors,Demolition Site,162,2017,Blue,5 +Juniors,Demolition Site,162,2017,Dark Bluish Gray,9 +Juniors,Demolition Site,162,2017,Trans-Yellow,1 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Bright Green,2 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Bright Light Blue,1 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Bright Light Orange,1 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Bright Light Yellow,3 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Bright Pink,3 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Dark Bluish Gray,2 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Dark Brown,1 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Flat Silver,1 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Green,2 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Light Bluish Gray,3 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Lime,7 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Magenta,12 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Medium Azure,9 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Medium Dark Flesh,6 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Orange,1 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Trans-Clear,4 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Trans-Dark Pink,1 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Light Flesh,2 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Trans-Light Blue,1 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Trans-Neon Green,1 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,White,26 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Yellow,8 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Reddish Brown,3 +Juniors,Andrea and Stephanie's Beach Holiday,141,2017,Pearl Gold,1 +Juniors,Fire Patrol Suitcase,108,2017,Tan,3 +Juniors,Fire Patrol Suitcase,108,2017,Trans-Clear,1 +Juniors,Fire Patrol Suitcase,108,2017,Trans-Dark Blue,2 +Juniors,Fire Patrol Suitcase,108,2017,Trans-Light Blue,2 +Juniors,Fire Patrol Suitcase,108,2017,Trans-Orange,2 +Juniors,Fire Patrol Suitcase,108,2017,Trans-Red,1 +Juniors,Fire Patrol Suitcase,108,2017,Trans-Yellow,1 +Juniors,Fire Patrol Suitcase,108,2017,White,5 +Juniors,Fire Patrol Suitcase,108,2017,Yellow,9 +Juniors,Fire Patrol Suitcase,108,2017,Black,12 +Juniors,Fire Patrol Suitcase,108,2017,Blue,2 +Juniors,Fire Patrol Suitcase,108,2017,Dark Azure,1 +Juniors,Fire Patrol Suitcase,108,2017,Dark Bluish Gray,4 +Juniors,Fire Patrol Suitcase,108,2017,Dark Brown,1 +Juniors,Fire Patrol Suitcase,108,2017,Dark Tan,2 +Juniors,Fire Patrol Suitcase,108,2017,Light Bluish Gray,6 +Juniors,Fire Patrol Suitcase,108,2017,Lime,1 +Juniors,Fire Patrol Suitcase,108,2017,Medium Dark Flesh,1 +Juniors,Fire Patrol Suitcase,108,2017,Orange,2 +Juniors,Fire Patrol Suitcase,108,2017,Red,9 +Juniors,Fire Patrol Suitcase,108,2017,Reddish Brown,2 +Juniors,Mia's Farm Suitcase,104,2017,Trans-Light Blue,1 +Juniors,Mia's Farm Suitcase,104,2017,Yellow,3 +Juniors,Mia's Farm Suitcase,104,2017,White,11 +Juniors,Mia's Farm Suitcase,104,2017,Trans-Clear,1 +Juniors,Mia's Farm Suitcase,104,2017,Tan,6 +Juniors,Mia's Farm Suitcase,104,2017,Reddish Brown,2 +Juniors,Mia's Farm Suitcase,104,2017,Red,5 +Juniors,Mia's Farm Suitcase,104,2017,Black,2 +Juniors,Mia's Farm Suitcase,104,2017,Bright Green,2 +Juniors,Mia's Farm Suitcase,104,2017,Dark Bluish Gray,1 +Juniors,Mia's Farm Suitcase,104,2017,Dark Pink,1 +Juniors,Mia's Farm Suitcase,104,2017,Orange,1 +Juniors,Mia's Farm Suitcase,104,2017,Dark Red,1 +Juniors,Mia's Farm Suitcase,104,2017,Green,3 +Juniors,Mia's Farm Suitcase,104,2017,Lavender,3 +Juniors,Mia's Farm Suitcase,104,2017,Light Aqua,1 +Juniors,Mia's Farm Suitcase,104,2017,Light Bluish Gray,4 +Juniors,Mia's Farm Suitcase,104,2017,Light Flesh,2 +Juniors,Mia's Farm Suitcase,104,2017,Lime,4 +Juniors,Mia's Farm Suitcase,104,2017,Magenta,5 +Juniors,Mia's Farm Suitcase,104,2017,Medium Azure,4 +Juniors,Mia's Farm Suitcase,104,2017,Medium Blue,1 +Juniors,Mia's Farm Suitcase,104,2017,Medium Dark Flesh,3 +Juniors,Mia's Farm Suitcase,104,2017,Medium Lavender,4 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Bright Light Yellow,1 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Dark Orange,1 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Dark Purple,3 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Flat Silver,1 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Glitter Trans-Light Blue,2 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Lavender,4 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Light Aqua,5 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Light Bluish Gray,1 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Light Flesh,4 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Magenta,3 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Medium Lavender,2 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Tan,1 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Trans-Clear,2 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Trans-Dark Pink,2 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Trans-Light Blue,6 +Juniors,Anna & Elsa's Frozen Playground,94,2017,White,17 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Medium Azure,5 +Juniors,Anna & Elsa's Frozen Playground,94,2017,Blue,4 +Juniors,Police Truck Chase,90,2017,Bright Light Blue,1 +Juniors,Police Truck Chase,90,2017,Dark Bluish Gray,7 +Juniors,Police Truck Chase,90,2017,Light Bluish Gray,11 +Juniors,Police Truck Chase,90,2017,Lime,1 +Juniors,Police Truck Chase,90,2017,Orange,1 +Juniors,Police Truck Chase,90,2017,Trans-Clear,2 +Juniors,Police Truck Chase,90,2017,Yellow,2 +Juniors,Police Truck Chase,90,2017,Black,8 +Juniors,Police Truck Chase,90,2017,Trans-Dark Blue,1 +Juniors,Police Truck Chase,90,2017,Trans-Green,1 +Juniors,Police Truck Chase,90,2017,Trans-Red,1 +Juniors,Police Truck Chase,90,2017,Trans-Yellow,1 +Juniors,Police Truck Chase,90,2017,White,7 +Juniors,Police Truck Chase,90,2017,Blue,11 +Juniors,Batman vs. Mr. Freeze,63,2017,Black,16 +Juniors,Batman vs. Mr. Freeze,63,2017,Blue,4 +Juniors,Batman vs. Mr. Freeze,63,2017,Dark Bluish Gray,3 +Juniors,Batman vs. Mr. Freeze,63,2017,Glitter Trans-Light Blue,1 +Juniors,Batman vs. Mr. Freeze,63,2017,Light Bluish Gray,6 +Juniors,Batman vs. Mr. Freeze,63,2017,Light Flesh,1 +Juniors,Batman vs. Mr. Freeze,63,2017,Trans-Light Blue,4 +Juniors,Batman vs. Mr. Freeze,63,2017,Yellow,1 +Juniors,Batman vs. Mr. Freeze,63,2017,Trans-Black,2 +Juniors,Batman vs. Mr. Freeze,63,2017,Red,1 +Juniors,Batman vs. Mr. Freeze,63,2017,Trans-Orange,1 +Juniors,Batman vs. Mr. Freeze,63,2017,White,6 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Black,17 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Light Gray,20 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Yellow,3 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Blue,6 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Brown,5 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Dark Gray,14 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Green,1 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Red,2 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Trans-Green,1 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Trans-Light Blue,3 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,Trans-Red,1 +Jurassic Park III,Spinosaurus Attack Studio,186,2001,White,27 +Jurassic Park III,Raptor Attack Studio,157,2001,Black,21 +Jurassic Park III,Raptor Attack Studio,157,2001,Brown,4 +Jurassic Park III,Raptor Attack Studio,157,2001,Dark Gray,16 +Jurassic Park III,Raptor Attack Studio,157,2001,Green,5 +Jurassic Park III,Raptor Attack Studio,157,2001,Light Gray,10 +Jurassic Park III,Raptor Attack Studio,157,2001,Red,3 +Jurassic Park III,Raptor Attack Studio,157,2001,Tan,3 +Jurassic Park III,Raptor Attack Studio,157,2001,Trans-Black,1 +Jurassic Park III,Raptor Attack Studio,157,2001,Trans-Clear,1 +Jurassic Park III,Raptor Attack Studio,157,2001,White,4 +Jurassic Park III,Raptor Attack Studio,157,2001,Yellow,5 +Jurassic Park III,Raptor Attack Studio,157,2001,Blue,2 +Jurassic World,Indominus rex™ Breakout,1154,2015,Light Bluish Gray,44 +Jurassic World,Indominus rex™ Breakout,1154,2015,Light Flesh,2 +Jurassic World,Indominus rex™ Breakout,1154,2015,Lime,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Red,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Reddish Brown,9 +Jurassic World,Indominus rex™ Breakout,1154,2015,Sand Blue,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Tan,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Trans-Black,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Trans-Bright Green,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Trans-Clear,7 +Jurassic World,Indominus rex™ Breakout,1154,2015,Trans-Dark Blue,2 +Jurassic World,Indominus rex™ Breakout,1154,2015,Trans-Light Blue,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Trans-Orange,3 +Jurassic World,Indominus rex™ Breakout,1154,2015,Trans-Red,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Trans-Yellow,2 +Jurassic World,Indominus rex™ Breakout,1154,2015,White,33 +Jurassic World,Indominus rex™ Breakout,1154,2015,Yellow,13 +Jurassic World,Indominus rex™ Breakout,1154,2015,Orange,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Black,51 +Jurassic World,Indominus rex™ Breakout,1154,2015,Blue,38 +Jurassic World,Indominus rex™ Breakout,1154,2015,Dark Blue,2 +Jurassic World,Indominus rex™ Breakout,1154,2015,Dark Bluish Gray,60 +Jurassic World,Indominus rex™ Breakout,1154,2015,Dark Brown,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Dark Green,4 +Jurassic World,Indominus rex™ Breakout,1154,2015,Dark Orange,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Flat Silver,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Flesh,1 +Jurassic World,Indominus rex™ Breakout,1154,2015,Green,10 +Jurassic World,T-Rex Tracker,519,2015,Medium Dark Flesh,6 +Jurassic World,T-Rex Tracker,519,2015,Lime,1 +Jurassic World,T-Rex Tracker,519,2015,Light Flesh,3 +Jurassic World,T-Rex Tracker,519,2015,Light Bluish Gray,34 +Jurassic World,T-Rex Tracker,519,2015,Flat Silver,2 +Jurassic World,T-Rex Tracker,519,2015,Blue,23 +Jurassic World,T-Rex Tracker,519,2015,Black,21 +Jurassic World,T-Rex Tracker,519,2015,[No Color],1 +Jurassic World,T-Rex Tracker,519,2015,Dark Orange,2 +Jurassic World,T-Rex Tracker,519,2015,Dark Brown,1 +Jurassic World,T-Rex Tracker,519,2015,Dark Bluish Gray,30 +Jurassic World,T-Rex Tracker,519,2015,Yellow,8 +Jurassic World,T-Rex Tracker,519,2015,Red,4 +Jurassic World,T-Rex Tracker,519,2015,Dark Blue,2 +Jurassic World,T-Rex Tracker,519,2015,White,13 +Jurassic World,T-Rex Tracker,519,2015,Trans-Yellow,3 +Jurassic World,T-Rex Tracker,519,2015,Trans-Red,1 +Jurassic World,T-Rex Tracker,519,2015,Trans-Orange,2 +Jurassic World,T-Rex Tracker,519,2015,Trans-Neon Orange,1 +Jurassic World,T-Rex Tracker,519,2015,Trans-Dark Blue,1 +Jurassic World,T-Rex Tracker,519,2015,Trans-Bright Green,1 +Jurassic World,T-Rex Tracker,519,2015,Trans-Black,2 +Jurassic World,T-Rex Tracker,519,2015,Tan,2 +Jurassic World,T-Rex Tracker,519,2015,Sand Blue,1 +Jurassic World,T-Rex Tracker,519,2015,Reddish Brown,2 +Jurassic World,T-Rex Tracker,519,2015,Orange,1 +Jurassic World,Raptor Escape,391,2015,Dark Bluish Gray,24 +Jurassic World,Raptor Escape,391,2015,Dark Brown,1 +Jurassic World,Raptor Escape,391,2015,Dark Orange,1 +Jurassic World,Raptor Escape,391,2015,Dark Tan,1 +Jurassic World,Raptor Escape,391,2015,Flat Silver,1 +Jurassic World,Raptor Escape,391,2015,Flesh,1 +Jurassic World,Raptor Escape,391,2015,Green,2 +Jurassic World,Raptor Escape,391,2015,Light Bluish Gray,27 +Jurassic World,Raptor Escape,391,2015,Lime,1 +Jurassic World,Raptor Escape,391,2015,Medium Dark Flesh,7 +Jurassic World,Raptor Escape,391,2015,Olive Green,7 +Jurassic World,Raptor Escape,391,2015,Red,2 +Jurassic World,Raptor Escape,391,2015,Reddish Brown,1 +Jurassic World,Raptor Escape,391,2015,Tan,1 +Jurassic World,Raptor Escape,391,2015,Trans-Bright Green,1 +Jurassic World,Raptor Escape,391,2015,Trans-Dark Blue,1 +Jurassic World,Raptor Escape,391,2015,Trans-Green,1 +Jurassic World,Raptor Escape,391,2015,Trans-Light Blue,1 +Jurassic World,Raptor Escape,391,2015,Trans-Orange,2 +Jurassic World,Raptor Escape,391,2015,Trans-Red,2 +Jurassic World,Raptor Escape,391,2015,Trans-Yellow,2 +Jurassic World,Raptor Escape,391,2015,White,6 +Jurassic World,Raptor Escape,391,2015,Yellow,4 +Jurassic World,Raptor Escape,391,2015,Light Flesh,1 +Jurassic World,Raptor Escape,391,2015,Black,31 +Jurassic World,Raptor Escape,391,2015,Blue,22 +Jurassic World,Raptor Escape,391,2015,Dark Blue,1 +Jurassic World,Raptor Rampage,320,2015,Red,1 +Jurassic World,Raptor Rampage,320,2015,Light Flesh,3 +Jurassic World,Raptor Rampage,320,2015,Lime,1 +Jurassic World,Raptor Rampage,320,2015,Medium Dark Flesh,1 +Jurassic World,Raptor Rampage,320,2015,Olive Green,1 +Jurassic World,Raptor Rampage,320,2015,Dark Bluish Gray,24 +Jurassic World,Raptor Rampage,320,2015,Orange,1 +Jurassic World,Raptor Rampage,320,2015,Pearl Gold,1 +Jurassic World,Raptor Rampage,320,2015,Reddish Brown,3 +Jurassic World,Raptor Rampage,320,2015,Sand Blue,1 +Jurassic World,Raptor Rampage,320,2015,Sand Green,6 +Jurassic World,Raptor Rampage,320,2015,Trans-Black,3 +Jurassic World,Raptor Rampage,320,2015,Trans-Bright Green,2 +Jurassic World,Raptor Rampage,320,2015,Light Bluish Gray,18 +Jurassic World,Raptor Rampage,320,2015,Trans-Dark Blue,2 +Jurassic World,Raptor Rampage,320,2015,Trans-Orange,2 +Jurassic World,Raptor Rampage,320,2015,Trans-Red,1 +Jurassic World,Raptor Rampage,320,2015,Trans-Yellow,1 +Jurassic World,Raptor Rampage,320,2015,Dark Blue,2 +Jurassic World,Raptor Rampage,320,2015,Yellow,5 +Jurassic World,Raptor Rampage,320,2015,Dark Tan,6 +Jurassic World,Raptor Rampage,320,2015,Dark Orange,1 +Jurassic World,Raptor Rampage,320,2015,Dark Green,2 +Jurassic World,Raptor Rampage,320,2015,White,26 +Jurassic World,Raptor Rampage,320,2015,Blue,15 +Jurassic World,Raptor Rampage,320,2015,Black,20 +Jurassic World,Dilophosaurus Ambush,246,2015,Blue,20 +Jurassic World,Dilophosaurus Ambush,246,2015,Dark Blue,4 +Jurassic World,Dilophosaurus Ambush,246,2015,Dark Bluish Gray,9 +Jurassic World,Dilophosaurus Ambush,246,2015,Dark Orange,1 +Jurassic World,Dilophosaurus Ambush,246,2015,Light Bluish Gray,19 +Jurassic World,Dilophosaurus Ambush,246,2015,Light Flesh,1 +Jurassic World,Dilophosaurus Ambush,246,2015,Lime,7 +Jurassic World,Dilophosaurus Ambush,246,2015,Medium Dark Flesh,2 +Jurassic World,Dilophosaurus Ambush,246,2015,Red,3 +Jurassic World,Dilophosaurus Ambush,246,2015,Reddish Brown,10 +Jurassic World,Dilophosaurus Ambush,246,2015,Trans-Bright Green,1 +Jurassic World,Dilophosaurus Ambush,246,2015,Tan,1 +Jurassic World,Dilophosaurus Ambush,246,2015,Trans-Yellow,1 +Jurassic World,Dilophosaurus Ambush,246,2015,Black,23 +Jurassic World,Dilophosaurus Ambush,246,2015,Dark Tan,1 +Jurassic World,Dilophosaurus Ambush,246,2015,White,10 +Jurassic World,Dilophosaurus Ambush,246,2015,Trans-Red,1 +Jurassic World,Dilophosaurus Ambush,246,2015,Trans-Dark Blue,1 +Jurassic World,Dilophosaurus Ambush,246,2015,Trans-Clear,4 +Jurassic World,Dilophosaurus Ambush,246,2015,Yellow,2 +Jurassic World,Pteranodon Capture,173,2015,Trans-Black,3 +Jurassic World,Pteranodon Capture,173,2015,Trans-Bright Green,1 +Jurassic World,Pteranodon Capture,173,2015,Trans-Red,1 +Jurassic World,Pteranodon Capture,173,2015,White,18 +Jurassic World,Pteranodon Capture,173,2015,Yellow,2 +Jurassic World,Pteranodon Capture,173,2015,Dark Bluish Gray,14 +Jurassic World,Pteranodon Capture,173,2015,Black,19 +Jurassic World,Pteranodon Capture,173,2015,Blue,24 +Jurassic World,Pteranodon Capture,173,2015,Dark Blue,1 +Jurassic World,Pteranodon Capture,173,2015,Dark Red,2 +Jurassic World,Pteranodon Capture,173,2015,Flat Silver,1 +Jurassic World,Pteranodon Capture,173,2015,Green,1 +Jurassic World,Pteranodon Capture,173,2015,Light Bluish Gray,6 +Jurassic World,Pteranodon Capture,173,2015,Light Flesh,1 +Jurassic World,Pteranodon Capture,173,2015,Lime,1 +Jurassic World,Pteranodon Capture,173,2015,Medium Dark Flesh,1 +Jurassic World,Pteranodon Capture,173,2015,Red,1 +Jurassic World,Pteranodon Capture,173,2015,Reddish Brown,2 +Jurassic World,Pteranodon Capture,173,2015,Sand Blue,3 +Jurassic World,Gallimimus Trap,29,2015,Black,3 +Jurassic World,Gallimimus Trap,29,2015,Yellow,2 +Jurassic World,Gallimimus Trap,29,2015,White,3 +Jurassic World,Gallimimus Trap,29,2015,Trans-Red,1 +Jurassic World,Gallimimus Trap,29,2015,Trans-Dark Blue,1 +Jurassic World,Gallimimus Trap,29,2015,Lime,1 +Jurassic World,Gallimimus Trap,29,2015,Light Bluish Gray,3 +Jurassic World,Gallimimus Trap,29,2015,Flat Silver,1 +Jurassic World,Gallimimus Trap,29,2015,Dark Orange,1 +Jurassic World,Gallimimus Trap,29,2015,Dark Bluish Gray,2 +Jurassic World,Gallimimus Trap,29,2015,Blue,3 +Justice League,Super Heroes Unite - Green Lantern - New York Comic-Con 2011 Exclusive,4,2011,Bright Green,1 +Justice League,Super Heroes Unite - Green Lantern - New York Comic-Con 2011 Exclusive,4,2011,Dark Brown,1 +Justice League,Super Heroes Unite - Green Lantern - New York Comic-Con 2011 Exclusive,4,2011,Dark Green,1 +Justice League,Super Heroes Unite - Green Lantern - New York Comic-Con 2011 Exclusive,4,2011,Light Flesh,1 +Justice League,Super Heroes Unite - Green Lantern - San Diego Comic-Con 2011 Exclusive,4,2011,Bright Green,1 +Justice League,Super Heroes Unite - Green Lantern - San Diego Comic-Con 2011 Exclusive,4,2011,Dark Brown,1 +Justice League,Super Heroes Unite - Green Lantern - San Diego Comic-Con 2011 Exclusive,4,2011,Dark Green,1 +Justice League,Super Heroes Unite - Green Lantern - San Diego Comic-Con 2011 Exclusive,4,2011,Light Flesh,1 +Justice League,Darkseid Invasion,543,2015,Reddish Brown,1 +Justice League,Darkseid Invasion,543,2015,Tan,2 +Justice League,Darkseid Invasion,543,2015,Trans-Clear,3 +Justice League,Darkseid Invasion,543,2015,Trans-Dark Blue,7 +Justice League,Darkseid Invasion,543,2015,Trans-Green,1 +Justice League,Darkseid Invasion,543,2015,Trans-Orange,2 +Justice League,Darkseid Invasion,543,2015,Trans-Red,5 +Justice League,Darkseid Invasion,543,2015,White,38 +Justice League,Darkseid Invasion,543,2015,Yellow,7 +Justice League,Darkseid Invasion,543,2015,Black,20 +Justice League,Darkseid Invasion,543,2015,Blue,13 +Justice League,Darkseid Invasion,543,2015,Dark Blue,1 +Justice League,Darkseid Invasion,543,2015,Dark Bluish Gray,43 +Justice League,Darkseid Invasion,543,2015,Trans-Light Blue,1 +Justice League,Darkseid Invasion,543,2015,Dark Green,2 +Justice League,Darkseid Invasion,543,2015,Flat Silver,5 +Justice League,Darkseid Invasion,543,2015,Green,3 +Justice League,Darkseid Invasion,543,2015,Light Bluish Gray,27 +Justice League,Darkseid Invasion,543,2015,Light Flesh,4 +Justice League,Darkseid Invasion,543,2015,Orange,1 +Justice League,Darkseid Invasion,543,2015,Pearl Dark Gray,2 +Justice League,Darkseid Invasion,543,2015,Pearl Gold,3 +Justice League,Darkseid Invasion,543,2015,Red,15 +Justice League,Black Manta Deep Sea Strike,386,2015,Black,53 +Justice League,Black Manta Deep Sea Strike,386,2015,Blue,3 +Justice League,Black Manta Deep Sea Strike,386,2015,Dark Bluish Gray,30 +Justice League,Black Manta Deep Sea Strike,386,2015,Dark Green,4 +Justice League,Black Manta Deep Sea Strike,386,2015,Dark Tan,3 +Justice League,Black Manta Deep Sea Strike,386,2015,Flat Silver,5 +Justice League,Black Manta Deep Sea Strike,386,2015,Glow in Dark White,1 +Justice League,Black Manta Deep Sea Strike,386,2015,Green,1 +Justice League,Black Manta Deep Sea Strike,386,2015,Light Bluish Gray,18 +Justice League,Black Manta Deep Sea Strike,386,2015,Light Flesh,2 +Justice League,Black Manta Deep Sea Strike,386,2015,Orange,1 +Justice League,Black Manta Deep Sea Strike,386,2015,Pearl Gold,2 +Justice League,Black Manta Deep Sea Strike,386,2015,Red,18 +Justice League,Black Manta Deep Sea Strike,386,2015,Reddish Brown,1 +Justice League,Black Manta Deep Sea Strike,386,2015,White,10 +Justice League,Black Manta Deep Sea Strike,386,2015,Yellow,15 +Justice League,Black Manta Deep Sea Strike,386,2015,Tan,1 +Justice League,Black Manta Deep Sea Strike,386,2015,Trans-Black,2 +Justice League,Black Manta Deep Sea Strike,386,2015,Trans-Clear,1 +Justice League,Black Manta Deep Sea Strike,386,2015,Trans-Light Blue,1 +Justice League,Black Manta Deep Sea Strike,386,2015,Trans-Neon Orange,1 +Justice League,Black Manta Deep Sea Strike,386,2015,Trans-Orange,2 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Dark Blue,1 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Dark Bluish Gray,28 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Dark Brown,1 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Dark Tan,1 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Flat Silver,2 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Light Bluish Gray,27 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Light Flesh,3 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Medium Blue,2 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Medium Dark Flesh,1 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Red,6 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Reddish Brown,4 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Tan,1 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Trans-Clear,12 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Trans-Dark Blue,1 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Trans-Light Blue,3 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Trans-Orange,1 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Trans-Red,1 +Justice League,Gorilla Grodd Goes Bananas,346,2015,White,9 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Yellow,12 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Black,42 +Justice League,Gorilla Grodd Goes Bananas,346,2015,Blue,13 +Justice League,Brainiac Attack,178,2015,Black,16 +Justice League,Brainiac Attack,178,2015,Blue,7 +Justice League,Brainiac Attack,178,2015,Bright Light Yellow,1 +Justice League,Brainiac Attack,178,2015,Dark Bluish Gray,7 +Justice League,Brainiac Attack,178,2015,Dark Tan,2 +Justice League,Brainiac Attack,178,2015,Flat Silver,2 +Justice League,Brainiac Attack,178,2015,Green,2 +Justice League,Brainiac Attack,178,2015,Light Bluish Gray,15 +Justice League,Brainiac Attack,178,2015,Light Flesh,2 +Justice League,Brainiac Attack,178,2015,Lime,3 +Justice League,Brainiac Attack,178,2015,Red,3 +Justice League,Brainiac Attack,178,2015,Tan,1 +Justice League,Brainiac Attack,178,2015,Trans-Bright Green,1 +Justice League,Brainiac Attack,178,2015,Trans-Clear,2 +Justice League,Brainiac Attack,178,2015,Trans-Dark Pink,1 +Justice League,Brainiac Attack,178,2015,Trans-Neon Green,4 +Justice League,Brainiac Attack,178,2015,Trans-Yellow,1 +Justice League,Brainiac Attack,178,2015,White,14 +Justice League,Brainiac Attack,178,2015,Yellow,4 +Justice League,Green Lantern vs. Sinestro,174,2015,Black,29 +Justice League,Green Lantern vs. Sinestro,174,2015,Blue,1 +Justice League,Green Lantern vs. Sinestro,174,2015,Dark Bluish Gray,6 +Justice League,Green Lantern vs. Sinestro,174,2015,Dark Brown,1 +Justice League,Green Lantern vs. Sinestro,174,2015,Dark Green,1 +Justice League,Green Lantern vs. Sinestro,174,2015,Dark Pink,1 +Justice League,Green Lantern vs. Sinestro,174,2015,Dark Tan,1 +Justice League,Green Lantern vs. Sinestro,174,2015,Flat Silver,1 +Justice League,Green Lantern vs. Sinestro,174,2015,Green,9 +Justice League,Green Lantern vs. Sinestro,174,2015,Light Bluish Gray,6 +Justice League,Green Lantern vs. Sinestro,174,2015,Light Flesh,2 +Justice League,Green Lantern vs. Sinestro,174,2015,Lime,2 +Justice League,Green Lantern vs. Sinestro,174,2015,Orange,2 +Justice League,Green Lantern vs. Sinestro,174,2015,Red,1 +Justice League,Green Lantern vs. Sinestro,174,2015,Trans-Bright Green,7 +Justice League,Green Lantern vs. Sinestro,174,2015,Trans-Clear,4 +Justice League,Green Lantern vs. Sinestro,174,2015,Trans-Green,1 +Justice League,Green Lantern vs. Sinestro,174,2015,Trans-Neon Green,2 +Justice League,Green Lantern vs. Sinestro,174,2015,Trans-Yellow,3 +Justice League,Green Lantern vs. Sinestro,174,2015,White,10 +Justice League,Green Lantern vs. Sinestro,174,2015,Yellow,13 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Blue,2 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Black,31 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Unknown,1 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Pearl Light Gray,2 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Dark Blue,1 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Bright Green,1 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Chrome Silver,1 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,White,5 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Dark Bluish Gray,46 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Dark Brown,3 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Dark Green,4 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Dark Orange,3 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Dark Red,8 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Dark Tan,13 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Green,2 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Light Bluish Gray,31 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Light Flesh,4 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Pearl Gold,4 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Red,2 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Reddish Brown,10 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Sand Green,3 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Tan,16 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Trans-Black,1 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Trans-Clear,3 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Trans-Light Blue,1 +Kingdom of the Crystal Skull,Temple of the Crystal Skull,929,2008,Trans-Red,1 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Yellow,14 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Sand Green,4 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Reddish Brown,11 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Red,3 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Pearl Light Gray,1 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Pearl Gold,1 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Light Flesh,6 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Light Bluish Gray,42 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Dark Tan,5 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Dark Green,6 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,White,47 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Dark Brown,2 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Dark Bluish Gray,25 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Dark Blue,14 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Blue,3 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Black,27 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Trans-Green,1 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Trans-Clear,3 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Trans-Black,3 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Tan,5 +Kingdom of the Crystal Skull,Peril in Peru,625,2008,Trans-Red,1 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Dark Brown,2 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Dark Green,12 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Dark Red,1 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Dark Tan,5 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Green,3 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Light Bluish Gray,34 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Light Flesh,4 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Pearl Light Gray,2 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Red,8 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Reddish Brown,10 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Sand Green,4 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Tan,6 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Trans-Black,2 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Trans-Dark Blue,1 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Trans-Red,2 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Trans-Yellow,2 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,White,3 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Yellow,3 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Black,29 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Blue,3 +Kingdom of the Crystal Skull,Jungle Cutter,515,2008,Dark Bluish Gray,19 +Kingdom of the Crystal Skull,River Chase,233,2008,Dark Tan,2 +Kingdom of the Crystal Skull,River Chase,233,2008,Trans-Clear,1 +Kingdom of the Crystal Skull,River Chase,233,2008,Trans-Black,1 +Kingdom of the Crystal Skull,River Chase,233,2008,Tan,6 +Kingdom of the Crystal Skull,River Chase,233,2008,Sand Green,3 +Kingdom of the Crystal Skull,River Chase,233,2008,Reddish Brown,15 +Kingdom of the Crystal Skull,River Chase,233,2008,Dark Green,9 +Kingdom of the Crystal Skull,River Chase,233,2008,Red,2 +Kingdom of the Crystal Skull,River Chase,233,2008,Light Flesh,4 +Kingdom of the Crystal Skull,River Chase,233,2008,Light Bluish Gray,15 +Kingdom of the Crystal Skull,River Chase,233,2008,Dark Bluish Gray,24 +Kingdom of the Crystal Skull,River Chase,233,2008,Dark Brown,3 +Kingdom of the Crystal Skull,River Chase,233,2008,Green,2 +Kingdom of the Crystal Skull,River Chase,233,2008,[No Color],1 +Kingdom of the Crystal Skull,River Chase,233,2008,Black,12 +Kingdom of the Crystal Skull,River Chase,233,2008,Blue,1 +Kingdom of the Crystal Skull,River Chase,233,2008,Bright Green,1 +Kingdom of the Crystal Skull,River Chase,233,2008,Trans-Red,1 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Sand Green,1 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Red,1 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Light Bluish Gray,7 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Green,1 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Dark Orange,3 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Dark Green,2 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Dark Brown,1 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Reddish Brown,4 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Trans-Clear,1 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Dark Bluish Gray,19 +Kingdom of the Crystal Skull,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,114,2008,Black,3 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Pearl Light Gray,2 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Pearl Gold,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Light Bluish Gray,7 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Green,2 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Dark Tan,2 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Dark Red,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Dark Orange,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Bright Light Orange,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Light Flesh,3 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Red,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Black,8 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Reddish Brown,8 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Dark Blue,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Dark Bluish Gray,8 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Dark Brown,2 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Tan,3 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Trans-Green,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Trans-Orange,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Trans-Red,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Trans-Yellow,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,White,1 +Kingdom of the Crystal Skull,Jungle Duel,91,2008,Yellow,2 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Dark Bluish Gray,6 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Black,7 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Trans-Black,1 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Reddish Brown,4 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Light Flesh,1 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Light Bluish Gray,3 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Green,1 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Dark Tan,1 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Dark Green,3 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Dark Brown,1 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Trans-Yellow,1 +Kingdom of the Crystal Skull,Jungle Cruiser,83,2008,Trans-Red,1 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Black,18 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Dark Blue,1 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Dark Bluish Gray,22 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Dark Brown,3 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Dark Tan,1 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Flesh,1 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Green,2 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Light Bluish Gray,12 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Light Flesh,2 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Metallic Silver,1 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Pearl Gold,3 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Reddish Brown,9 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Tan,3 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Trans-Clear,1 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Trans-Green,1 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Trans-Neon Orange,1 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,Trans-Yellow,1 +Kingdom of the Crystal Skull,Chauchilla Cemetery Battle,188,2009,White,4 +Kingdoms,King's Castle,932,2010,Pearl Dark Gray,7 +Kingdoms,King's Castle,932,2010,Pearl Gold,6 +Kingdoms,King's Castle,932,2010,Pearl Light Gray,3 +Kingdoms,King's Castle,932,2010,Red,16 +Kingdoms,King's Castle,932,2010,Reddish Brown,30 +Kingdoms,King's Castle,932,2010,Trans-Dark Blue,1 +Kingdoms,King's Castle,932,2010,Trans-Green,1 +Kingdoms,King's Castle,932,2010,Trans-Neon Orange,1 +Kingdoms,King's Castle,932,2010,Trans-Red,1 +Kingdoms,King's Castle,932,2010,Trans-Yellow,1 +Kingdoms,King's Castle,932,2010,White,4 +Kingdoms,King's Castle,932,2010,Yellow,9 +Kingdoms,King's Castle,932,2010,[No Color],1 +Kingdoms,King's Castle,932,2010,Black,24 +Kingdoms,King's Castle,932,2010,Blue,1 +Kingdoms,King's Castle,932,2010,Chrome Gold,2 +Kingdoms,King's Castle,932,2010,Dark Bluish Gray,37 +Kingdoms,King's Castle,932,2010,Dark Brown,2 +Kingdoms,King's Castle,932,2010,Dark Green,2 +Kingdoms,King's Castle,932,2010,Dark Red,2 +Kingdoms,King's Castle,932,2010,Dark Tan,1 +Kingdoms,King's Castle,932,2010,Flat Silver,1 +Kingdoms,King's Castle,932,2010,Green,5 +Kingdoms,King's Castle,932,2010,Light Bluish Gray,41 +Kingdoms,King's Castle,932,2010,Metallic Gold,1 +Kingdoms,King's Castle,932,2010,Metallic Silver,2 +Kingdoms,Prison Tower Rescue,365,2010,Flat Silver,1 +Kingdoms,Prison Tower Rescue,365,2010,Light Bluish Gray,14 +Kingdoms,Prison Tower Rescue,365,2010,Metallic Gold,1 +Kingdoms,Prison Tower Rescue,365,2010,Metallic Silver,3 +Kingdoms,Prison Tower Rescue,365,2010,Pearl Dark Gray,6 +Kingdoms,Prison Tower Rescue,365,2010,Pearl Gold,4 +Kingdoms,Prison Tower Rescue,365,2010,Pearl Light Gray,2 +Kingdoms,Prison Tower Rescue,365,2010,Red,3 +Kingdoms,Prison Tower Rescue,365,2010,Reddish Brown,29 +Kingdoms,Prison Tower Rescue,365,2010,Trans-Dark Blue,1 +Kingdoms,Prison Tower Rescue,365,2010,Trans-Green,1 +Kingdoms,Prison Tower Rescue,365,2010,Trans-Orange,2 +Kingdoms,Prison Tower Rescue,365,2010,Trans-Red,1 +Kingdoms,Prison Tower Rescue,365,2010,White,5 +Kingdoms,Prison Tower Rescue,365,2010,Dark Green,8 +Kingdoms,Prison Tower Rescue,365,2010,Yellow,6 +Kingdoms,Prison Tower Rescue,365,2010,Trans-Neon Orange,1 +Kingdoms,Prison Tower Rescue,365,2010,Black,31 +Kingdoms,Prison Tower Rescue,365,2010,Dark Bluish Gray,28 +Kingdoms,Prison Tower Rescue,365,2010,Dark Brown,2 +Kingdoms,Prison Tower Rescue,365,2010,Dark Orange,1 +Kingdoms,Outpost Attack,193,2010,Red,5 +Kingdoms,Outpost Attack,193,2010,Dark Brown,1 +Kingdoms,Outpost Attack,193,2010,Dark Green,4 +Kingdoms,Outpost Attack,193,2010,Light Bluish Gray,13 +Kingdoms,Outpost Attack,193,2010,Metallic Silver,2 +Kingdoms,Outpost Attack,193,2010,Pearl Light Gray,1 +Kingdoms,Outpost Attack,193,2010,Yellow,4 +Kingdoms,Outpost Attack,193,2010,White,1 +Kingdoms,Outpost Attack,193,2010,Trans-Neon Orange,1 +Kingdoms,Outpost Attack,193,2010,Reddish Brown,14 +Kingdoms,Outpost Attack,193,2010,Pearl Dark Gray,2 +Kingdoms,Outpost Attack,193,2010,Pearl Gold,2 +Kingdoms,Outpost Attack,193,2010,Dark Bluish Gray,12 +Kingdoms,Outpost Attack,193,2010,Black,14 +Kingdoms,Outpost Attack,193,2010,Green,1 +Kingdoms,Knight's Showdown,61,2010,Dark Brown,2 +Kingdoms,Knight's Showdown,61,2010,Dark Green,3 +Kingdoms,Knight's Showdown,61,2010,Light Bluish Gray,4 +Kingdoms,Knight's Showdown,61,2010,Metallic Silver,1 +Kingdoms,Knight's Showdown,61,2010,Pearl Dark Gray,3 +Kingdoms,Knight's Showdown,61,2010,Pearl Gold,1 +Kingdoms,Knight's Showdown,61,2010,Dark Tan,1 +Kingdoms,Knight's Showdown,61,2010,Reddish Brown,5 +Kingdoms,Knight's Showdown,61,2010,Black,5 +Kingdoms,Knight's Showdown,61,2010,Yellow,2 +Kingdoms,Knight's Showdown,61,2010,Tan,1 +Kingdoms,Knight's Showdown,61,2010,Pearl Light Gray,1 +Kingdoms,Knight's Showdown,61,2010,Red,2 +Kingdoms,Knight's Showdown,61,2010,Dark Bluish Gray,5 +Kingdoms,Prison Carriage Rescue,50,2010,Dark Green,3 +Kingdoms,Prison Carriage Rescue,50,2010,Light Bluish Gray,7 +Kingdoms,Prison Carriage Rescue,50,2010,Trans-Neon Orange,1 +Kingdoms,Prison Carriage Rescue,50,2010,Black,10 +Kingdoms,Prison Carriage Rescue,50,2010,Dark Bluish Gray,3 +Kingdoms,Prison Carriage Rescue,50,2010,Dark Brown,1 +Kingdoms,Prison Carriage Rescue,50,2010,Yellow,3 +Kingdoms,Prison Carriage Rescue,50,2010,Reddish Brown,3 +Kingdoms,Prison Carriage Rescue,50,2010,Red,1 +Kingdoms,Prison Carriage Rescue,50,2010,Metallic Silver,2 +Kingdoms,Prison Carriage Rescue,50,2010,Pearl Dark Gray,3 +Kingdoms,Prison Carriage Rescue,50,2010,Pearl Gold,2 +Kingdoms,Prison Carriage Rescue,50,2010,Pearl Light Gray,1 +Kingdoms,Battle Pack Dragon Knights,37,2010,Pearl Light Gray,2 +Kingdoms,Battle Pack Dragon Knights,37,2010,Reddish Brown,2 +Kingdoms,Battle Pack Dragon Knights,37,2010,Trans-Orange,1 +Kingdoms,Battle Pack Dragon Knights,37,2010,Yellow,3 +Kingdoms,Battle Pack Dragon Knights,37,2010,Black,5 +Kingdoms,Battle Pack Dragon Knights,37,2010,Dark Green,3 +Kingdoms,Battle Pack Dragon Knights,37,2010,Dark Bluish Gray,1 +Kingdoms,Battle Pack Dragon Knights,37,2010,Dark Brown,1 +Kingdoms,Battle Pack Dragon Knights,37,2010,Flat Silver,1 +Kingdoms,Battle Pack Dragon Knights,37,2010,Light Bluish Gray,1 +Kingdoms,Battle Pack Dragon Knights,37,2010,Pearl Dark Gray,4 +Kingdoms,Battle Pack Lion Knights,36,2010,Yellow,4 +Kingdoms,Battle Pack Lion Knights,36,2010,Trans-Orange,1 +Kingdoms,Battle Pack Lion Knights,36,2010,Reddish Brown,2 +Kingdoms,Battle Pack Lion Knights,36,2010,Red,4 +Kingdoms,Attack Wagon,36,2010,Dark Bluish Gray,2 +Kingdoms,Battle Pack Lion Knights,36,2010,Pearl Light Gray,2 +Kingdoms,Battle Pack Lion Knights,36,2010,Metallic Silver,3 +Kingdoms,Attack Wagon,36,2010,Black,9 +Kingdoms,Battle Pack Lion Knights,36,2010,Flat Silver,1 +Kingdoms,Battle Pack Lion Knights,36,2010,Light Bluish Gray,5 +Kingdoms,Battle Pack Lion Knights,36,2010,Dark Brown,1 +Kingdoms,Battle Pack Lion Knights,36,2010,Dark Bluish Gray,2 +Kingdoms,Attack Wagon,36,2010,Yellow,1 +Kingdoms,Attack Wagon,36,2010,Trans-Neon Orange,1 +Kingdoms,Attack Wagon,36,2010,Reddish Brown,2 +Kingdoms,Attack Wagon,36,2010,Pearl Light Gray,2 +Kingdoms,Attack Wagon,36,2010,Pearl Gold,1 +Kingdoms,Attack Wagon,36,2010,Pearl Dark Gray,1 +Kingdoms,Attack Wagon,36,2010,Light Bluish Gray,1 +Kingdoms,Attack Wagon,36,2010,Dark Green,2 +Kingdoms,Attack Wagon,36,2010,Dark Brown,1 +Kingdoms,Target Practice,31,2010,Black,4 +Kingdoms,Target Practice,31,2010,Bright Green,1 +Kingdoms,Target Practice,31,2010,Dark Brown,1 +Kingdoms,Target Practice,31,2010,Dark Green,1 +Kingdoms,Target Practice,31,2010,Dark Orange,1 +Kingdoms,Target Practice,31,2010,Green,2 +Kingdoms,Target Practice,31,2010,Light Bluish Gray,1 +Kingdoms,Target Practice,31,2010,Metallic Silver,1 +Kingdoms,Target Practice,31,2010,Pearl Light Gray,1 +Kingdoms,Target Practice,31,2010,Red,2 +Kingdoms,Target Practice,31,2010,Reddish Brown,8 +Kingdoms,Target Practice,31,2010,Trans-Neon Orange,1 +Kingdoms,Target Practice,31,2010,Yellow,2 +Kingdoms,Court Jester,22,2010,White,4 +Kingdoms,Court Jester,22,2010,Yellow,1 +Kingdoms,Court Jester,22,2010,Reddish Brown,2 +Kingdoms,Court Jester,22,2010,Red,7 +Kingdoms,Court Jester,22,2010,Pearl Gold,1 +Kingdoms,Court Jester,22,2010,Blue,1 +Kingdoms,Wizard,19,2010,Black,3 +Kingdoms,Wizard,19,2010,Dark Bluish Gray,1 +Kingdoms,Wizard,19,2010,Dark Brown,1 +Kingdoms,Wizard,19,2010,Dark Green,4 +Kingdoms,Wizard,19,2010,Dark Tan,1 +Kingdoms,Wizard,19,2010,Reddish Brown,3 +Kingdoms,Wizard,19,2010,Trans-Green,2 +Kingdoms,Wizard,19,2010,Trans-Red,1 +Kingdoms,Wizard,19,2010,Trans-Yellow,1 +Kingdoms,Wizard,19,2010,Yellow,1 +Kingdoms,Kingdoms Joust,1574,2012,Black,26 +Kingdoms,Kingdoms Joust,1574,2012,Bright Light Orange,2 +Kingdoms,Kingdoms Joust,1574,2012,Chrome Gold,1 +Kingdoms,Kingdoms Joust,1574,2012,Dark Bluish Gray,33 +Kingdoms,Kingdoms Joust,1574,2012,Dark Brown,7 +Kingdoms,Kingdoms Joust,1574,2012,Dark Green,8 +Kingdoms,Kingdoms Joust,1574,2012,Dark Orange,1 +Kingdoms,Kingdoms Joust,1574,2012,Dark Pink,1 +Kingdoms,Kingdoms Joust,1574,2012,Dark Red,3 +Kingdoms,Kingdoms Joust,1574,2012,Dark Tan,5 +Kingdoms,Kingdoms Joust,1574,2012,Earth Orange,1 +Kingdoms,Kingdoms Joust,1574,2012,Flat Silver,7 +Kingdoms,Kingdoms Joust,1574,2012,Green,7 +Kingdoms,Kingdoms Joust,1574,2012,Light Bluish Gray,44 +Kingdoms,Kingdoms Joust,1574,2012,Medium Dark Flesh,1 +Kingdoms,Kingdoms Joust,1574,2012,Metallic Silver,3 +Kingdoms,Kingdoms Joust,1574,2012,Pearl Dark Gray,3 +Kingdoms,Kingdoms Joust,1574,2012,Pearl Gold,6 +Kingdoms,Kingdoms Joust,1574,2012,Red,34 +Kingdoms,Kingdoms Joust,1574,2012,Reddish Brown,56 +Kingdoms,Kingdoms Joust,1574,2012,Sand Blue,1 +Kingdoms,Kingdoms Joust,1574,2012,Sand Green,2 +Kingdoms,Kingdoms Joust,1574,2012,Tan,7 +Kingdoms,Kingdoms Joust,1574,2012,Trans-Black,1 +Kingdoms,Kingdoms Joust,1574,2012,Trans-Dark Blue,1 +Kingdoms,Kingdoms Joust,1574,2012,Trans-Red,2 +Kingdoms,Kingdoms Joust,1574,2012,Trans-Yellow,1 +Kingdoms,Kingdoms Joust,1574,2012,White,21 +Kingdoms,Kingdoms Joust,1574,2012,Yellow,10 +Knights Kingdom I,King Leo's Castle,539,2000,Green,2 +Knights Kingdom I,King Leo's Castle,539,2000,Dark Gray,24 +Knights Kingdom I,King Leo's Castle,539,2000,Chrome Silver,1 +Knights Kingdom I,King Leo's Castle,539,2000,Chrome Gold,5 +Knights Kingdom I,King Leo's Castle,539,2000,Black,45 +Knights Kingdom I,King Leo's Castle,539,2000,Trans-Clear,2 +Knights Kingdom I,King Leo's Castle,539,2000,Blue,14 +Knights Kingdom I,King Leo's Castle,539,2000,Brown,14 +Knights Kingdom I,King Leo's Castle,539,2000,Yellow,7 +Knights Kingdom I,King Leo's Castle,539,2000,White,10 +Knights Kingdom I,King Leo's Castle,539,2000,Trans-Neon Orange,1 +Knights Kingdom I,King Leo's Castle,539,2000,Trans-Green,2 +Knights Kingdom I,King Leo's Castle,539,2000,Tan,4 +Knights Kingdom I,King Leo's Castle,539,2000,Red,15 +Knights Kingdom I,King Leo's Castle,539,2000,Light Gray,38 +Knights Kingdom I,King Leo's Castle,538,2000,Chrome Silver,1 +Knights Kingdom I,King Leo's Castle,538,2000,Black,46 +Knights Kingdom I,King Leo's Castle,538,2000,Blue,14 +Knights Kingdom I,King Leo's Castle,538,2000,Brown,14 +Knights Kingdom I,King Leo's Castle,538,2000,Chrome Gold,5 +Knights Kingdom I,King Leo's Castle,538,2000,Dark Gray,24 +Knights Kingdom I,King Leo's Castle,538,2000,Green,2 +Knights Kingdom I,King Leo's Castle,538,2000,Red,15 +Knights Kingdom I,King Leo's Castle,538,2000,Tan,4 +Knights Kingdom I,King Leo's Castle,538,2000,Trans-Clear,2 +Knights Kingdom I,King Leo's Castle,538,2000,Trans-Green,2 +Knights Kingdom I,King Leo's Castle,538,2000,Trans-Neon Orange,1 +Knights Kingdom I,King Leo's Castle,538,2000,White,10 +Knights Kingdom I,King Leo's Castle,538,2000,Yellow,7 +Knights Kingdom I,King Leo's Castle,538,2000,Light Gray,38 +Knights Kingdom I,Bull's Attack,315,2000,Light Gray,22 +Knights Kingdom I,Bull's Attack,315,2000,Red,19 +Knights Kingdom I,Bull's Attack,315,2000,Trans-Neon Orange,1 +Knights Kingdom I,Bull's Attack,315,2000,White,2 +Knights Kingdom I,Bull's Attack,315,2000,Yellow,5 +Knights Kingdom I,Bull's Attack,315,2000,Dark Gray,22 +Knights Kingdom I,Bull's Attack,315,2000,Green,2 +Knights Kingdom I,Bull's Attack,315,2000,Black,40 +Knights Kingdom I,Bull's Attack,315,2000,Brown,9 +Knights Kingdom I,Bull's Attack,315,2000,Chrome Silver,1 +Knights Kingdom I,Royal Joust,103,2000,Trans-Dark Blue,1 +Knights Kingdom I,Royal Joust,103,2000,Trans-Clear,1 +Knights Kingdom I,Royal Joust,103,2000,Tan,2 +Knights Kingdom I,Royal Joust,103,2000,Red,8 +Knights Kingdom I,Royal Joust,103,2000,Green,2 +Knights Kingdom I,Royal Joust,103,2000,Dark Gray,6 +Knights Kingdom I,Guarded Treasury,103,2000,Black,11 +Knights Kingdom I,Guarded Treasury,103,2000,Blue,3 +Knights Kingdom I,Guarded Treasury,103,2000,Brown,2 +Knights Kingdom I,Guarded Treasury,103,2000,Chrome Silver,1 +Knights Kingdom I,Guarded Treasury,103,2000,Dark Gray,10 +Knights Kingdom I,Royal Joust,103,2000,Yellow,4 +Knights Kingdom I,Guarded Treasury,103,2000,Light Gray,13 +Knights Kingdom I,Royal Joust,103,2000,White,5 +Knights Kingdom I,Royal Joust,103,2000,Light Gray,11 +Knights Kingdom I,Guarded Treasury,103,2000,Red,1 +Knights Kingdom I,Guarded Treasury,103,2000,Tan,4 +Knights Kingdom I,Guarded Treasury,103,2000,Trans-Yellow,1 +Knights Kingdom I,Guarded Treasury,103,2000,Yellow,2 +Knights Kingdom I,Royal Joust,103,2000,Chrome Silver,1 +Knights Kingdom I,Royal Joust,103,2000,Chrome Gold,1 +Knights Kingdom I,Royal Joust,103,2000,Brown,4 +Knights Kingdom I,Royal Joust,103,2000,Blue,5 +Knights Kingdom I,Royal Joust,103,2000,Black,16 +Knights Kingdom I,Royal Joust,103,2000,Trans-Yellow,1 +Knights Kingdom I,Royal Joust,103,2000,Trans-Green,1 +Knights Kingdom I,Guarded Treasury,103,2000,Green,1 +Knights Kingdom I,Catapult Crusher,56,2000,Dark Gray,8 +Knights Kingdom I,Catapult Crusher,56,2000,Light Gray,4 +Knights Kingdom I,Catapult Crusher,56,2000,White,2 +Knights Kingdom I,Catapult Crusher,56,2000,Yellow,1 +Knights Kingdom I,Catapult Crusher,56,2000,Red,5 +Knights Kingdom I,Catapult Crusher,56,2000,Black,8 +Knights Kingdom I,Catapult Crusher,56,2000,Brown,4 +Knights Kingdom I,Catapult Crusher,56,2000,Chrome Silver,1 +Knights Kingdom I,Knight's Catapult,50,2000,Chrome Silver,1 +Knights Kingdom I,Knight's Catapult,50,2000,Blue,3 +Knights Kingdom I,Knight's Catapult,50,2000,Dark Gray,7 +Knights Kingdom I,Knight's Catapult,50,2000,Light Gray,5 +Knights Kingdom I,Knight's Catapult,50,2000,Red,4 +Knights Kingdom I,Knight's Catapult,50,2000,Tan,1 +Knights Kingdom I,Knight's Catapult,50,2000,Yellow,2 +Knights Kingdom I,Knight's Catapult,50,2000,Brown,4 +Knights Kingdom I,Knight's Catapult,50,2000,Black,8 +Knights Kingdom I,Rebel Chariot,49,2000,Yellow,2 +Knights Kingdom I,Rebel Chariot,49,2000,White,2 +Knights Kingdom I,Rebel Chariot,49,2000,Red,5 +Knights Kingdom I,Rebel Chariot,49,2000,Light Gray,2 +Knights Kingdom I,Rebel Chariot,49,2000,Dark Gray,7 +Knights Kingdom I,Rebel Chariot,49,2000,Brown,5 +Knights Kingdom I,Rebel Chariot,49,2000,Black,11 +Knights Kingdom I,Rebel Chariot,49,2000,Blue,1 +Knights Kingdom I,Dungeon,39,2000,Green,1 +Knights Kingdom I,Dungeon,39,2000,Light Gray,5 +Knights Kingdom I,Dungeon,39,2000,Trans-Dark Blue,1 +Knights Kingdom I,Dungeon,39,2000,Trans-Green,1 +Knights Kingdom I,Dungeon,39,2000,Trans-Neon Green,1 +Knights Kingdom I,Dungeon,39,2000,Trans-Neon Orange,1 +Knights Kingdom I,Dungeon,39,2000,Trans-Red,1 +Knights Kingdom I,Dungeon,39,2000,White,4 +Knights Kingdom I,Dungeon,39,2000,Yellow,1 +Knights Kingdom I,Dungeon,39,2000,Brown,2 +Knights Kingdom I,Dungeon,39,2000,Black,6 +Knights Kingdom I,Dungeon,39,2000,Blue,2 +Knights Kingdom I,Dungeon,39,2000,Chrome Silver,1 +Knights Kingdom I,Dungeon,39,2000,Dark Gray,5 +Knights Kingdom I,Axe Cart,28,2000,Brown,4 +Knights Kingdom I,Axe Cart,28,2000,Dark Gray,3 +Knights Kingdom I,Axe Cart,28,2000,Light Gray,5 +Knights Kingdom I,Axe Cart,28,2000,Red,4 +Knights Kingdom I,Axe Cart,28,2000,Yellow,1 +Knights Kingdom I,Axe Cart,28,2000,Black,4 +Knights Kingdom I,Fire Attack,24,2000,Dark Gray,1 +Knights Kingdom I,Fire Cart,24,2000,Black,5 +Knights Kingdom I,Fire Attack,24,2000,Yellow,1 +Knights Kingdom I,Fire Attack,24,2000,Trans-Neon Orange,1 +Knights Kingdom I,Fire Attack,24,2000,Red,4 +Knights Kingdom I,Fire Attack,24,2000,Light Gray,4 +Knights Kingdom I,Fire Cart,24,2000,Brown,2 +Knights Kingdom I,Fire Cart,24,2000,Yellow,1 +Knights Kingdom I,Fire Cart,24,2000,Trans-Neon Orange,1 +Knights Kingdom I,Fire Cart,24,2000,Red,4 +Knights Kingdom I,Fire Cart,24,2000,Light Gray,4 +Knights Kingdom I,Fire Cart,24,2000,Dark Gray,1 +Knights Kingdom I,Fire Attack,24,2000,Black,5 +Knights Kingdom I,Fire Attack,24,2000,Brown,2 +Knights Kingdom I,Catapult,23,2000,Black,4 +Knights Kingdom I,Catapult,23,2000,Brown,2 +Knights Kingdom I,Catapult,23,2000,Dark Gray,2 +Knights Kingdom I,Catapult,23,2000,Green,1 +Knights Kingdom I,Catapult,23,2000,Light Gray,4 +Knights Kingdom I,Catapult,23,2000,Red,4 +Knights Kingdom I,Catapult,23,2000,Yellow,1 +Knights Kingdom I,King Leo's Cart,22,2000,Yellow,1 +Knights Kingdom I,King Leo's Cart,22,2000,Dark Gray,1 +Knights Kingdom I,King Leo's Cart,22,2000,Light Gray,5 +Knights Kingdom I,King Leo's Cart,22,2000,Trans-Green,1 +Knights Kingdom I,King Leo's Cart,22,2000,Trans-Red,1 +Knights Kingdom I,King Leo's Cart,22,2000,Brown,2 +Knights Kingdom I,King Leo's Cart,22,2000,Blue,2 +Knights Kingdom I,King Leo's Cart,22,2000,Black,1 +Knights Kingdom I,King Leo's Cart,22,2000,Chrome Gold,1 +Knights Kingdom I,King Leo,21,2000,Yellow,2 +Knights Kingdom I,King Leo,21,2000,Dark Gray,5 +Knights Kingdom I,King Leo,21,2000,Chrome Silver,1 +Knights Kingdom I,King Leo,21,2000,Chrome Gold,1 +Knights Kingdom I,King Leo,21,2000,Blue,2 +Knights Kingdom I,King Leo,21,2000,Light Gray,5 +Knights Kingdom I,King Leo,21,2000,Black,1 +Knights Kingdom I,King Leo,21,2000,White,3 +Knights Kingdom I,Crossbows,16,2000,Black,4 +Knights Kingdom I,Crossbows,16,2000,Brown,1 +Knights Kingdom I,Crossbows,16,2000,Dark Gray,4 +Knights Kingdom I,Crossbows,16,2000,Green,1 +Knights Kingdom I,Crossbows,16,2000,Yellow,1 +Knights Kingdom I,Crossbows,16,2000,Light Gray,2 +Knights Kingdom I,Dragon Rider,15,2000,Black,7 +Knights Kingdom I,Defense Archer,15,2000,Yellow,1 +Knights Kingdom I,Dragon Rider,15,2000,Trans-Neon Orange,2 +Knights Kingdom I,Defense Archer,15,2000,Green,1 +Knights Kingdom I,Dragon Rider,15,2000,White,2 +Knights Kingdom I,Dragon Rider,15,2000,Yellow,1 +Knights Kingdom I,Defense Archer,15,2000,Dark Gray,4 +Knights Kingdom I,Defense Archer,15,2000,Brown,1 +Knights Kingdom I,Defense Archer,15,2000,Light Gray,2 +Knights Kingdom I,Defense Archer,15,2000,Black,3 +Knights Kingdom I,Dragon Rider,15,2000,Light Gray,1 +Knights Kingdom I,Dragon Rider,15,2000,Dark Gray,1 +Knights Kingdom I,Dragon Rider,15,2000,Chrome Silver,1 +Knights Kingdom I,Royal King's Castle,871,2006,[No Color],1 +Knights Kingdom I,Royal King's Castle,871,2006,Black,61 +Knights Kingdom I,Royal King's Castle,871,2006,Blue,9 +Knights Kingdom I,Royal King's Castle,871,2006,Chrome Gold,5 +Knights Kingdom I,Royal King's Castle,871,2006,Chrome Silver,1 +Knights Kingdom I,Royal King's Castle,871,2006,Dark Bluish Gray,25 +Knights Kingdom I,Royal King's Castle,871,2006,Flat Silver,1 +Knights Kingdom I,Royal King's Castle,871,2006,Glow In Dark Trans,1 +Knights Kingdom I,Royal King's Castle,871,2006,Green,2 +Knights Kingdom I,Royal King's Castle,871,2006,Light Bluish Gray,39 +Knights Kingdom I,Royal King's Castle,871,2006,Metallic Gold,1 +Knights Kingdom I,Royal King's Castle,871,2006,Pearl Gold,1 +Knights Kingdom I,Royal King's Castle,871,2006,Pearl Light Gray,2 +Knights Kingdom I,Royal King's Castle,871,2006,Red,11 +Knights Kingdom I,Royal King's Castle,871,2006,Reddish Brown,19 +Knights Kingdom I,Royal King's Castle,871,2006,Speckle Black-Silver,2 +Knights Kingdom I,Royal King's Castle,871,2006,Tan,4 +Knights Kingdom I,Royal King's Castle,871,2006,Trans-Clear,1 +Knights Kingdom I,Royal King's Castle,871,2006,Trans-Dark Blue,1 +Knights Kingdom I,Royal King's Castle,871,2006,Trans-Light Blue,1 +Knights Kingdom I,Royal King's Castle,871,2006,Trans-Neon Orange,2 +Knights Kingdom I,Royal King's Castle,871,2006,Trans-Red,1 +Knights Kingdom I,Royal King's Castle,871,2006,White,13 +Knights Kingdom I,Royal King's Castle,871,2006,Yellow,9 +Knights Kingdom II,Castle of Morcia,658,2004,Flat Silver,1 +Knights Kingdom II,Castle of Morcia,658,2004,Flat Dark Gold,1 +Knights Kingdom II,Castle of Morcia,658,2004,Dark Red,10 +Knights Kingdom II,Castle of Morcia,658,2004,Dark Purple,5 +Knights Kingdom II,Castle of Morcia,658,2004,Dark Bluish Gray,15 +Knights Kingdom II,Castle of Morcia,658,2004,Copper,1 +Knights Kingdom II,Castle of Morcia,658,2004,Chrome Gold,5 +Knights Kingdom II,Castle of Morcia,658,2004,Blue-Violet,12 +Knights Kingdom II,Castle of Morcia,658,2004,Blue,2 +Knights Kingdom II,Castle of Morcia,658,2004,Black,64 +Knights Kingdom II,Castle of Morcia,658,2004,[No Color],5 +Knights Kingdom II,Castle of Morcia,658,2004,Green,6 +Knights Kingdom II,Castle of Morcia,658,2004,Light Bluish Gray,37 +Knights Kingdom II,Castle of Morcia,658,2004,Medium Blue,5 +Knights Kingdom II,Castle of Morcia,658,2004,Metal Blue,1 +Knights Kingdom II,Castle of Morcia,658,2004,Red,6 +Knights Kingdom II,Castle of Morcia,658,2004,Reddish Brown,9 +Knights Kingdom II,Castle of Morcia,658,2004,Tan,4 +Knights Kingdom II,Castle of Morcia,658,2004,Trans-Neon Green,1 +Knights Kingdom II,Castle of Morcia,658,2004,Trans-Neon Orange,1 +Knights Kingdom II,Castle of Morcia,658,2004,Trans-Red,1 +Knights Kingdom II,Castle of Morcia,658,2004,Very Light Bluish Gray,5 +Knights Kingdom II,Castle of Morcia,658,2004,White,22 +Knights Kingdom II,Castle of Morcia,658,2004,Yellow,8 +Knights Kingdom II,Citadel of Orlan,443,2004,Green,14 +Knights Kingdom II,Citadel of Orlan,443,2004,[No Color],4 +Knights Kingdom II,Citadel of Orlan,443,2004,Black,30 +Knights Kingdom II,Citadel of Orlan,443,2004,Blue-Violet,3 +Knights Kingdom II,Citadel of Orlan,443,2004,Dark Bluish Gray,20 +Knights Kingdom II,Citadel of Orlan,443,2004,Light Bluish Gray,51 +Knights Kingdom II,Citadel of Orlan,443,2004,Medium Blue,1 +Knights Kingdom II,Citadel of Orlan,443,2004,Metal Blue,1 +Knights Kingdom II,Citadel of Orlan,443,2004,Red,10 +Knights Kingdom II,Citadel of Orlan,443,2004,Reddish Brown,16 +Knights Kingdom II,Citadel of Orlan,443,2004,Tan,1 +Knights Kingdom II,Citadel of Orlan,443,2004,Trans-Clear,2 +Knights Kingdom II,Citadel of Orlan,443,2004,Trans-Dark Blue,1 +Knights Kingdom II,Citadel of Orlan,443,2004,Trans-Green,1 +Knights Kingdom II,Citadel of Orlan,443,2004,Trans-Light Blue,1 +Knights Kingdom II,Citadel of Orlan,443,2004,Trans-Neon Green,2 +Knights Kingdom II,Citadel of Orlan,443,2004,Trans-Neon Orange,2 +Knights Kingdom II,Citadel of Orlan,443,2004,Trans-Red,3 +Knights Kingdom II,Citadel of Orlan,443,2004,Trans-Yellow,1 +Knights Kingdom II,Citadel of Orlan,443,2004,Very Light Bluish Gray,2 +Knights Kingdom II,Citadel of Orlan,443,2004,White,6 +Knights Kingdom II,Citadel of Orlan,443,2004,Yellow,7 +Knights Kingdom II,The Grand Tournament,321,2004,Copper,1 +Knights Kingdom II,The Grand Tournament,321,2004,White,11 +Knights Kingdom II,The Grand Tournament,321,2004,Very Light Bluish Gray,2 +Knights Kingdom II,The Grand Tournament,321,2004,Light Bluish Gray,20 +Knights Kingdom II,The Grand Tournament,321,2004,Trans-Neon Orange,1 +Knights Kingdom II,The Grand Tournament,321,2004,Tan,2 +Knights Kingdom II,The Grand Tournament,321,2004,Reddish Brown,1 +Knights Kingdom II,The Grand Tournament,321,2004,Dark Bluish Gray,12 +Knights Kingdom II,The Grand Tournament,321,2004,Dark Red,7 +Knights Kingdom II,The Grand Tournament,321,2004,Flat Silver,1 +Knights Kingdom II,The Grand Tournament,321,2004,Medium Blue,12 +Knights Kingdom II,The Grand Tournament,321,2004,Red,1 +Knights Kingdom II,The Grand Tournament,321,2004,Chrome Gold,5 +Knights Kingdom II,The Grand Tournament,321,2004,Blue-Violet,5 +Knights Kingdom II,The Grand Tournament,321,2004,Black,31 +Knights Kingdom II,The Grand Tournament,321,2004,[No Color],5 +Knights Kingdom II,The Grand Tournament,321,2004,Trans-Clear,1 +Knights Kingdom II,The Grand Tournament,321,2004,Yellow,3 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Trans-Clear,1 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Trans-Neon Orange,1 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Very Light Bluish Gray,1 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Black,34 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Red,2 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Yellow,2 +Knights Kingdom II,Vladek's Siege Engine,192,2004,[No Color],2 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Chrome Gold,1 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Dark Bluish Gray,8 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Dark Red,10 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Light Bluish Gray,1 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Reddish Brown,1 +Knights Kingdom II,Vladek's Siege Engine,192,2004,Tan,1 +Knights Kingdom II,Knights' Castle Wall,178,2004,Metal Blue,1 +Knights Kingdom II,Knights' Castle Wall,178,2004,Medium Blue,6 +Knights Kingdom II,Knights' Castle Wall,178,2004,Green,6 +Knights Kingdom II,Knights' Castle Wall,178,2004,Dark Bluish Gray,15 +Knights Kingdom II,Knights' Castle Wall,178,2004,Black,9 +Knights Kingdom II,Knights' Castle Wall,178,2004,Blue-Violet,4 +Knights Kingdom II,Knights' Castle Wall,178,2004,Chrome Gold,1 +Knights Kingdom II,Knights' Castle Wall,178,2004,Red,5 +Knights Kingdom II,Knights' Castle Wall,178,2004,Copper,1 +Knights Kingdom II,Knights' Castle Wall,178,2004,Yellow,4 +Knights Kingdom II,Knights' Castle Wall,178,2004,Very Light Bluish Gray,3 +Knights Kingdom II,Knights' Castle Wall,178,2004,Trans-Neon Orange,1 +Knights Kingdom II,Knights' Castle Wall,178,2004,Light Bluish Gray,17 +Knights Kingdom II,Border Ambush,177,2004,Trans-Neon Orange,1 +Knights Kingdom II,Border Ambush,177,2004,Reddish Brown,6 +Knights Kingdom II,Border Ambush,177,2004,Red,5 +Knights Kingdom II,Border Ambush,177,2004,Yellow,2 +Knights Kingdom II,Border Ambush,177,2004,Metal Blue,1 +Knights Kingdom II,Border Ambush,177,2004,Light Bluish Gray,19 +Knights Kingdom II,Border Ambush,177,2004,Green,7 +Knights Kingdom II,Border Ambush,177,2004,Dark Orange,1 +Knights Kingdom II,Border Ambush,177,2004,Dark Bluish Gray,9 +Knights Kingdom II,Border Ambush,177,2004,Chrome Silver,1 +Knights Kingdom II,Border Ambush,177,2004,Blue-Violet,4 +Knights Kingdom II,Border Ambush,177,2004,Black,17 +Knights Kingdom II,Border Ambush,177,2004,[No Color],3 +Knights Kingdom II,Border Ambush,177,2004,Very Light Bluish Gray,1 +Knights Kingdom II,Border Ambush,177,2004,White,7 +Knights Kingdom II,"Vladek (USA version with 6 Cards, Target Promo)",54,2004,Dark Bluish Gray,3 +Knights Kingdom II,"Vladek (USA version with 6 Cards, Target Promo)",54,2004,Red,2 +Knights Kingdom II,"Vladek (USA version with 6 Cards, Target Promo)",54,2004,Dark Red,1 +Knights Kingdom II,"Vladek (USA version with 6 Cards, Target Promo)",54,2004,Black,10 +Knights Kingdom II,"Vladek (USA version with 6 Cards, Target Promo)",54,2004,Trans-Clear,1 +Knights Kingdom II,"Vladek (USA version with 6 Cards, Target Promo)",54,2004,Royal Blue,7 +Knights Kingdom II,"Vladek (USA version with 6 Cards, Target Promo)",54,2004,Blue,1 +Knights Kingdom II,"Rascus (USA version with 6 Cards, Target Promo)",52,2004,Trans-Clear,1 +Knights Kingdom II,"Rascus (USA version with 6 Cards, Target Promo)",52,2004,Yellow,1 +Knights Kingdom II,"Santis (USA version with 6 Cards, Target Promo)",52,2004,Blue,1 +Knights Kingdom II,"Santis (USA version with 6 Cards, Target Promo)",52,2004,Dark Bluish Gray,4 +Knights Kingdom II,"Santis (USA version with 6 Cards, Target Promo)",52,2004,Dark Tan,1 +Knights Kingdom II,"Santis (USA version with 6 Cards, Target Promo)",52,2004,Metal Blue,1 +Knights Kingdom II,"Santis (USA version with 6 Cards, Target Promo)",52,2004,Red,11 +Knights Kingdom II,"Santis (USA version with 6 Cards, Target Promo)",52,2004,Royal Blue,7 +Knights Kingdom II,"Rascus (USA version with 6 Cards, Target Promo)",52,2004,Green,10 +Knights Kingdom II,"Santis (USA version with 6 Cards, Target Promo)",52,2004,Trans-Clear,1 +Knights Kingdom II,"Rascus (USA version with 6 Cards, Target Promo)",52,2004,Royal Blue,7 +Knights Kingdom II,"Rascus (USA version with 6 Cards, Target Promo)",52,2004,Blue,1 +Knights Kingdom II,"Rascus (USA version with 6 Cards, Target Promo)",52,2004,Dark Bluish Gray,4 +Knights Kingdom II,"Rascus (USA version with 6 Cards, Target Promo)",52,2004,Dark Red,1 +Knights Kingdom II,Vladek (USA version with 3 Cards),51,2004,Black,10 +Knights Kingdom II,"Jayko (USA version with 6 Cards, Target Promo)",51,2004,Light Bluish Gray,4 +Knights Kingdom II,Vladek (USA version with 3 Cards),51,2004,Royal Blue,4 +Knights Kingdom II,"Jayko (USA version with 6 Cards, Target Promo)",51,2004,Copper,1 +Knights Kingdom II,"Jayko (USA version with 6 Cards, Target Promo)",51,2004,Blue,1 +Knights Kingdom II,"Jayko (USA version with 6 Cards, Target Promo)",51,2004,Royal Blue,7 +Knights Kingdom II,"Jayko (USA version with 6 Cards, Target Promo)",51,2004,Trans-Clear,1 +Knights Kingdom II,"Jayko (USA version with 6 Cards, Target Promo)",51,2004,White,1 +Knights Kingdom II,Vladek (USA version with 3 Cards),51,2004,Trans-Clear,1 +Knights Kingdom II,Vladek (USA version with 3 Cards),51,2004,Red,2 +Knights Kingdom II,Vladek (USA version with 3 Cards),51,2004,Dark Bluish Gray,3 +Knights Kingdom II,Vladek (USA version with 3 Cards),51,2004,Blue,1 +Knights Kingdom II,"Jayko (USA version with 6 Cards, Target Promo)",51,2004,Medium Blue,10 +Knights Kingdom II,Vladek (USA version with 3 Cards),51,2004,Dark Red,1 +Knights Kingdom II,Rascus (USA version with 3 Cards),49,2004,Dark Bluish Gray,4 +Knights Kingdom II,Rascus (USA version with 3 Cards),49,2004,Dark Red,1 +Knights Kingdom II,Rascus (USA version with 3 Cards),49,2004,Green,10 +Knights Kingdom II,Rascus (USA version with 3 Cards),49,2004,Royal Blue,4 +Knights Kingdom II,Rascus (USA version with 3 Cards),49,2004,Trans-Clear,1 +Knights Kingdom II,Rascus (USA version with 3 Cards),49,2004,Yellow,1 +Knights Kingdom II,Santis (USA version with 3 Cards),49,2004,Blue,1 +Knights Kingdom II,Santis (USA version with 3 Cards),49,2004,Dark Bluish Gray,4 +Knights Kingdom II,Santis (USA version with 3 Cards),49,2004,Dark Tan,1 +Knights Kingdom II,Santis (USA version with 3 Cards),49,2004,Metal Blue,1 +Knights Kingdom II,Santis (USA version with 3 Cards),49,2004,Red,11 +Knights Kingdom II,Santis (USA version with 3 Cards),49,2004,Royal Blue,4 +Knights Kingdom II,Santis (USA version with 3 Cards),49,2004,Trans-Clear,1 +Knights Kingdom II,Rascus (USA version with 3 Cards),49,2004,Blue,1 +Knights Kingdom II,Jayko (USA version with 3 Cards),48,2004,Light Bluish Gray,4 +Knights Kingdom II,Jayko (USA version with 3 Cards),48,2004,Copper,1 +Knights Kingdom II,Jayko (USA version with 3 Cards),48,2004,Blue,1 +Knights Kingdom II,"Danju (USA version with 6 Cards, Target Promo)",48,2004,Trans-Clear,1 +Knights Kingdom II,"Danju (USA version with 6 Cards, Target Promo)",48,2004,Yellow,1 +Knights Kingdom II,Vladek (European version without Cards),48,2004,Trans-Clear,1 +Knights Kingdom II,Vladek (European version without Cards),48,2004,Royal Blue,1 +Knights Kingdom II,"Danju (USA version with 6 Cards, Target Promo)",48,2004,Royal Blue,6 +Knights Kingdom II,Vladek (European version without Cards),48,2004,Dark Red,1 +Knights Kingdom II,Vladek (European version without Cards),48,2004,Dark Bluish Gray,2 +Knights Kingdom II,Jayko (USA version with 3 Cards),48,2004,Medium Blue,10 +Knights Kingdom II,Jayko (USA version with 3 Cards),48,2004,Royal Blue,4 +Knights Kingdom II,"Danju (USA version with 6 Cards, Target Promo)",48,2004,[No Color],1 +Knights Kingdom II,"Danju (USA version with 6 Cards, Target Promo)",48,2004,Flat Dark Gold,1 +Knights Kingdom II,Vladek (European version without Cards),48,2004,Blue,1 +Knights Kingdom II,"Danju (USA version with 6 Cards, Target Promo)",48,2004,Dark Purple,9 +Knights Kingdom II,"Danju (USA version with 6 Cards, Target Promo)",48,2004,Blue,1 +Knights Kingdom II,Vladek (European version without Cards),48,2004,Black,10 +Knights Kingdom II,Vladek (European version without Cards),48,2004,Red,3 +Knights Kingdom II,Jayko (USA version with 3 Cards),48,2004,Trans-Clear,1 +Knights Kingdom II,"Danju (USA version with 6 Cards, Target Promo)",48,2004,Light Bluish Gray,4 +Knights Kingdom II,Jayko (USA version with 3 Cards),48,2004,White,1 +Knights Kingdom II,Santis (European version without Cards),46,2004,Blue,1 +Knights Kingdom II,Santis (European version without Cards),46,2004,Dark Bluish Gray,3 +Knights Kingdom II,Santis (European version without Cards),46,2004,Dark Tan,2 +Knights Kingdom II,Santis (European version without Cards),46,2004,Metal Blue,1 +Knights Kingdom II,Santis (European version without Cards),46,2004,Royal Blue,1 +Knights Kingdom II,Santis (European version without Cards),46,2004,Trans-Clear,1 +Knights Kingdom II,Rascus (European version without Cards),46,2004,Blue,1 +Knights Kingdom II,Rascus (European version without Cards),46,2004,Dark Red,1 +Knights Kingdom II,Rascus (European version without Cards),46,2004,Dark Bluish Gray,4 +Knights Kingdom II,Santis (European version without Cards),46,2004,Red,11 +Knights Kingdom II,Rascus (European version without Cards),46,2004,Yellow,1 +Knights Kingdom II,Rascus (European version without Cards),46,2004,Trans-Clear,1 +Knights Kingdom II,Rascus (European version without Cards),46,2004,Green,10 +Knights Kingdom II,Rascus (European version without Cards),46,2004,Royal Blue,1 +Knights Kingdom II,Danju (USA version with 3 Cards),45,2004,[No Color],1 +Knights Kingdom II,Jayko (European version without Cards),45,2004,Royal Blue,1 +Knights Kingdom II,Jayko (European version without Cards),45,2004,Pearl Light Gold,1 +Knights Kingdom II,Jayko (European version without Cards),45,2004,Trans-Clear,1 +Knights Kingdom II,Jayko (European version without Cards),45,2004,Light Bluish Gray,3 +Knights Kingdom II,Jayko (European version without Cards),45,2004,White,1 +Knights Kingdom II,Danju (USA version with 3 Cards),45,2004,Flat Dark Gold,1 +Knights Kingdom II,Danju (USA version with 3 Cards),45,2004,Blue,1 +Knights Kingdom II,Danju (USA version with 3 Cards),45,2004,Dark Purple,9 +Knights Kingdom II,Danju (USA version with 3 Cards),45,2004,Light Bluish Gray,4 +Knights Kingdom II,Danju (USA version with 3 Cards),45,2004,Royal Blue,3 +Knights Kingdom II,Jayko (European version without Cards),45,2004,Copper,1 +Knights Kingdom II,Jayko (European version without Cards),45,2004,Blue,1 +Knights Kingdom II,Danju (USA version with 3 Cards),45,2004,Trans-Clear,1 +Knights Kingdom II,Danju (USA version with 3 Cards),45,2004,Yellow,1 +Knights Kingdom II,Jayko (European version without Cards),45,2004,Medium Blue,10 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, US",44,2004,[No Color],1 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, US",44,2004,Black,1 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, US",44,2004,Blue-Violet,7 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, US",44,2004,Copper,2 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, US",44,2004,Dark Bluish Gray,3 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, US",44,2004,Light Bluish Gray,2 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, US",44,2004,Medium Blue,1 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, US",44,2004,Royal Blue,3 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, US",44,2004,Light Gray,1 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, US",44,2004,Blue,1 +Knights Kingdom II,Vladek Encounter,42,2004,White,2 +Knights Kingdom II,Vladek Encounter,42,2004,Yellow,2 +Knights Kingdom II,Danju (European version without Cards),42,2004,Yellow,1 +Knights Kingdom II,Danju (European version without Cards),42,2004,Trans-Clear,1 +Knights Kingdom II,Danju (European version without Cards),42,2004,Light Bluish Gray,4 +Knights Kingdom II,Danju (European version without Cards),42,2004,Flat Dark Gold,1 +Knights Kingdom II,Danju (European version without Cards),42,2004,Dark Purple,9 +Knights Kingdom II,Danju (European version without Cards),42,2004,Blue,1 +Knights Kingdom II,Danju (European version without Cards),42,2004,[No Color],1 +Knights Kingdom II,Vladek Encounter,42,2004,[No Color],3 +Knights Kingdom II,Vladek Encounter,42,2004,Black,14 +Knights Kingdom II,Vladek Encounter,42,2004,Dark Bluish Gray,1 +Knights Kingdom II,Vladek Encounter,42,2004,Dark Purple,5 +Knights Kingdom II,Vladek Encounter,42,2004,Dark Red,2 +Knights Kingdom II,Vladek Encounter,42,2004,Flat Dark Gold,1 +Knights Kingdom II,Vladek Encounter,42,2004,Light Bluish Gray,3 +Knights Kingdom II,Vladek Encounter,42,2004,Red,1 +Knights Kingdom II,Vladek Encounter,42,2004,Very Light Bluish Gray,1 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, European",41,2004,Blue,1 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, European",41,2004,Blue-Violet,7 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, European",41,2004,Black,1 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, European",41,2004,Royal Blue,1 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, European",41,2004,Medium Blue,1 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, European",41,2004,Light Gray,1 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, European",41,2004,Light Bluish Gray,2 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, European",41,2004,Dark Bluish Gray,3 +Knights Kingdom II,"King Mathias (Series 1) Limited Edition with Map and Cape, European",41,2004,Copper,2 +Knights Kingdom II,Knights' Kingdom Value Pack 8770 and 8771 with Foam Helmet,3,2004,[No Color],1 +Knights Kingdom II,Knights' Kingdom Value Pack 8772 and 8774 with Foam Helmet,3,2004,[No Color],1 +Knights Kingdom II,Knights' Kingdom Value Pack 3 (with bonus water bottle),3,2004,Royal Blue,1 +Knights Kingdom II,Knights' Kingdom Value Pack 2 (with bonus water bottle),3,2004,Royal Blue,1 +Knights Kingdom II,Knights' Kingdom Value Pack 1 (with bonus water bottle),3,2004,Royal Blue,1 +Knights Kingdom II,The Grand Tournament Limited Edition Value Pack,3,2004,[No Color],2 +Knights Kingdom II,Mistlands Tower,437,2006,Speckle DBGray-Silver,1 +Knights Kingdom II,Mistlands Tower,437,2006,Speckle Black-Copper,1 +Knights Kingdom II,Mistlands Tower,437,2006,Speckle Black-Silver,1 +Knights Kingdom II,Mistlands Tower,437,2006,Yellow,5 +Knights Kingdom II,Mistlands Tower,437,2006,Tan,1 +Knights Kingdom II,Mistlands Tower,437,2006,Trans-Neon Orange,3 +Knights Kingdom II,Mistlands Tower,437,2006,White,9 +Knights Kingdom II,Mistlands Tower,437,2006,[No Color],1 +Knights Kingdom II,Mistlands Tower,437,2006,Black,44 +Knights Kingdom II,Mistlands Tower,437,2006,Chrome Blue,1 +Knights Kingdom II,Mistlands Tower,437,2006,Chrome Gold,5 +Knights Kingdom II,Mistlands Tower,437,2006,Dark Blue,1 +Knights Kingdom II,Mistlands Tower,437,2006,Dark Bluish Gray,39 +Knights Kingdom II,Mistlands Tower,437,2006,Dark Green,4 +Knights Kingdom II,Mistlands Tower,437,2006,Dark Red,2 +Knights Kingdom II,Mistlands Tower,437,2006,Flat Dark Gold,1 +Knights Kingdom II,Mistlands Tower,437,2006,Light Bluish Gray,50 +Knights Kingdom II,Mistlands Tower,437,2006,Pearl Gold,4 +Knights Kingdom II,Mistlands Tower,437,2006,Pearl Light Gray,6 +Knights Kingdom II,Mistlands Tower,437,2006,Red,5 +Knights Kingdom II,Mistlands Tower,437,2006,Reddish Brown,17 +Knights Kingdom II,Mistlands Tower,437,2006,Sand Blue,2 +Knights Kingdom II,Battle at the Pass,377,2006,[No Color],1 +Knights Kingdom II,Battle at the Pass,377,2006,Black,27 +Knights Kingdom II,Battle at the Pass,377,2006,Copper,1 +Knights Kingdom II,Battle at the Pass,377,2006,Dark Bluish Gray,21 +Knights Kingdom II,Battle at the Pass,377,2006,Dark Green,4 +Knights Kingdom II,Battle at the Pass,377,2006,Flat Silver,1 +Knights Kingdom II,Battle at the Pass,377,2006,Green,2 +Knights Kingdom II,Battle at the Pass,377,2006,Light Bluish Gray,22 +Knights Kingdom II,Battle at the Pass,377,2006,Pearl Dark Gray,1 +Knights Kingdom II,Battle at the Pass,377,2006,Pearl Gold,2 +Knights Kingdom II,Battle at the Pass,377,2006,Pearl Light Gray,5 +Knights Kingdom II,Battle at the Pass,377,2006,Red,1 +Knights Kingdom II,Battle at the Pass,377,2006,Reddish Brown,13 +Knights Kingdom II,Battle at the Pass,377,2006,Speckle Black-Silver,2 +Knights Kingdom II,Battle at the Pass,377,2006,Speckle DBGray-Silver,1 +Knights Kingdom II,Battle at the Pass,377,2006,Tan,2 +Knights Kingdom II,Battle at the Pass,377,2006,Trans-Light Blue,1 +Knights Kingdom II,Battle at the Pass,377,2006,Trans-Neon Orange,3 +Knights Kingdom II,Battle at the Pass,377,2006,Trans-Red,1 +Knights Kingdom II,Battle at the Pass,377,2006,Very Light Bluish Gray,1 +Knights Kingdom II,Battle at the Pass,377,2006,White,4 +Knights Kingdom II,Battle at the Pass,377,2006,Yellow,16 +Knights Kingdom II,Gargoyle Bridge,234,2006,Trans-Neon Orange,1 +Knights Kingdom II,Gargoyle Bridge,234,2006,White,1 +Knights Kingdom II,Gargoyle Bridge,234,2006,Red,1 +Knights Kingdom II,Gargoyle Bridge,234,2006,Black,20 +Knights Kingdom II,Gargoyle Bridge,234,2006,Dark Bluish Gray,22 +Knights Kingdom II,Gargoyle Bridge,234,2006,Dark Green,1 +Knights Kingdom II,Gargoyle Bridge,234,2006,Green,1 +Knights Kingdom II,Gargoyle Bridge,234,2006,Light Bluish Gray,25 +Knights Kingdom II,Gargoyle Bridge,234,2006,Pearl Gold,3 +Knights Kingdom II,Gargoyle Bridge,234,2006,Pearl Light Gray,4 +Knights Kingdom II,Gargoyle Bridge,234,2006,Reddish Brown,8 +Knights Kingdom II,Gargoyle Bridge,234,2006,Sand Blue,2 +Knights Kingdom II,Gargoyle Bridge,234,2006,Speckle Black-Copper,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Speckle Black-Silver,2 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Speckle DBGray-Silver,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Tan,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Trans-Neon Orange,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Very Light Bluish Gray,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,White,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Yellow,4 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Black,25 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Blue,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Dark Bluish Gray,10 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Dark Flesh,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Dark Green,3 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Flat Silver,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Light Bluish Gray,20 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Metallic Silver,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Pearl Dark Gray,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Pearl Light Gray,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Red,1 +Knights Kingdom II,Rogue Knight Battleship,153,2006,Reddish Brown,9 +Knights Kingdom II,King Jayko,130,2006,Pearl Light Gray,2 +Knights Kingdom II,King Jayko,130,2006,Black,12 +Knights Kingdom II,King Jayko,130,2006,Blue,1 +Knights Kingdom II,King Jayko,130,2006,Dark Blue,2 +Knights Kingdom II,King Jayko,130,2006,Dark Bluish Gray,6 +Knights Kingdom II,King Jayko,130,2006,Flat Silver,1 +Knights Kingdom II,King Jayko,130,2006,Light Bluish Gray,11 +Knights Kingdom II,King Jayko,130,2006,Pearl Gold,3 +Knights Kingdom II,King Jayko,130,2006,Pearl Light Gold,2 +Knights Kingdom II,King Jayko,130,2006,Reddish Brown,4 +Knights Kingdom II,King Jayko,130,2006,Sand Blue,1 +Knights Kingdom II,King Jayko,130,2006,Speckle DBGray-Silver,1 +Knights Kingdom II,King Jayko,130,2006,Tan,1 +Knights Kingdom II,King Jayko,130,2006,Trans-Neon Orange,1 +Knights Kingdom II,King Jayko,130,2006,Very Light Bluish Gray,3 +Knights Kingdom II,Lord Vladek,112,2006,Dark Bluish Gray,5 +Knights Kingdom II,Lord Vladek,112,2006,Black,13 +Knights Kingdom II,Lord Vladek,112,2006,Blue,1 +Knights Kingdom II,Lord Vladek,112,2006,Light Bluish Gray,1 +Knights Kingdom II,Lord Vladek,112,2006,Pearl Light Gray,3 +Knights Kingdom II,Lord Vladek,112,2006,Reddish Brown,7 +Knights Kingdom II,Lord Vladek,112,2006,Speckle Black-Silver,2 +Knights Kingdom II,Lord Vladek,112,2006,Tan,1 +Knights Kingdom II,Lord Vladek,112,2006,Trans-Neon Orange,1 +Knights Kingdom II,Lord Vladek,112,2006,Dark Red,10 +Knights Kingdom II,Karzon,44,2006,Black,9 +Knights Kingdom II,Karzon,44,2006,Blue,1 +Knights Kingdom II,Karzon,44,2006,Copper,1 +Knights Kingdom II,Karzon,44,2006,Dark Bluish Gray,2 +Knights Kingdom II,Karzon,44,2006,Pearl Light Gray,1 +Knights Kingdom II,Karzon,44,2006,Sand Blue,5 +Knights Kingdom II,Karzon,44,2006,Speckle Black-Copper,3 +Knights Kingdom II,Sir Kentis,42,2006,Black,3 +Knights Kingdom II,Sir Kentis,42,2006,Blue,1 +Knights Kingdom II,Sir Kentis,42,2006,Dark Green,3 +Knights Kingdom II,Sir Kentis,42,2006,Dark Tan,3 +Knights Kingdom II,Sir Kentis,42,2006,Light Bluish Gray,2 +Knights Kingdom II,Sir Kentis,42,2006,Pearl Gold,1 +Knights Kingdom II,Sir Kentis,42,2006,Pearl Light Gray,5 +Knights Kingdom II,Sir Kentis,42,2006,Sand Blue,1 +Knights Kingdom II,Sir Kentis,42,2006,Speckle DBGray-Silver,2 +Knights Kingdom II,Sir Adric,40,2006,Black,2 +Knights Kingdom II,Sir Adric,40,2006,Blue,1 +Knights Kingdom II,Sir Adric,40,2006,Dark Bluish Gray,4 +Knights Kingdom II,Sir Adric,40,2006,Light Bluish Gray,1 +Knights Kingdom II,Sir Adric,40,2006,Pearl Light Gray,5 +Knights Kingdom II,Sir Adric,40,2006,Red,4 +Knights Kingdom II,Sir Adric,40,2006,Speckle DBGray-Silver,2 +Knights Kingdom II,Sir Adric,40,2006,White,1 +Knights Kingdom II,Dracus,38,2006,Black,10 +Knights Kingdom II,Dracus,38,2006,Blue,1 +Knights Kingdom II,Dracus,38,2006,Bright Light Orange,5 +Knights Kingdom II,Dracus,38,2006,Pearl Light Gray,2 +Lamborghini,Lamborghini Gallardo LP 560-4,740,2009,[No Color],1 +Lamborghini,Lamborghini Gallardo LP 560-4,740,2009,Black,69 +Lamborghini,Lamborghini Gallardo LP 560-4,740,2009,Blue,1 +Lamborghini,Lamborghini Gallardo LP 560-4,740,2009,Dark Bluish Gray,16 +Lamborghini,Lamborghini Gallardo LP 560-4,740,2009,Light Bluish Gray,14 +Lamborghini,Lamborghini Gallardo LP 560-4,740,2009,Metallic Silver,1 +Lamborghini,Lamborghini Gallardo LP 560-4,740,2009,Trans-Red,1 +Lamborghini,Lamborghini Gallardo LP 560-4,740,2009,White,2 +Lamborghini,Lamborghini Gallardo LP 560-4,740,2009,Yellow,48 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,[No Color],1 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Black,74 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Blue,41 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Dark Blue,10 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Dark Bluish Gray,12 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Light Bluish Gray,16 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Metallic Silver,1 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Orange,1 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Pearl Light Gray,1 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Red,2 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Trans-Clear,1 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Trans-Dark Blue,3 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Trans-Red,2 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,White,27 +Lamborghini,Gallardo LP 560-4 Polizia,800,2010,Yellow,2 +Last Crusade,Motorcycle Chase,79,2008,Black,13 +Last Crusade,Motorcycle Chase,79,2008,Dark Bluish Gray,12 +Last Crusade,Motorcycle Chase,79,2008,Dark Brown,1 +Last Crusade,Motorcycle Chase,79,2008,Dark Tan,3 +Last Crusade,Motorcycle Chase,79,2008,Light Bluish Gray,7 +Last Crusade,Motorcycle Chase,79,2008,Light Flesh,3 +Last Crusade,Motorcycle Chase,79,2008,Red,3 +Last Crusade,Motorcycle Chase,79,2008,Reddish Brown,5 +Last Crusade,Motorcycle Chase,79,2008,Tan,6 +Last Crusade,Motorcycle Chase,79,2008,White,2 +Last Crusade,Venice Canal Chase,420,2009,Light Bluish Gray,34 +Last Crusade,Venice Canal Chase,420,2009,Bright Light Yellow,1 +Last Crusade,Venice Canal Chase,420,2009,Dark Blue,1 +Last Crusade,Venice Canal Chase,420,2009,Dark Bluish Gray,20 +Last Crusade,Venice Canal Chase,420,2009,Dark Brown,1 +Last Crusade,Venice Canal Chase,420,2009,Dark Red,1 +Last Crusade,Venice Canal Chase,420,2009,Dark Tan,8 +Last Crusade,Venice Canal Chase,420,2009,Flesh,2 +Last Crusade,Venice Canal Chase,420,2009,Trans-Red,1 +Last Crusade,Venice Canal Chase,420,2009,Light Flesh,2 +Last Crusade,Venice Canal Chase,420,2009,Red,9 +Last Crusade,Venice Canal Chase,420,2009,Reddish Brown,22 +Last Crusade,Venice Canal Chase,420,2009,Tan,13 +Last Crusade,Venice Canal Chase,420,2009,Trans-Clear,1 +Last Crusade,Venice Canal Chase,420,2009,Trans-Green,1 +Last Crusade,Venice Canal Chase,420,2009,Black,14 +Last Crusade,Venice Canal Chase,420,2009,Blue,9 +Last Crusade,Venice Canal Chase,420,2009,White,11 +Last Crusade,Venice Canal Chase,420,2009,Yellow,1 +Last Crusade,Fighter Plane Attack,383,2009,Dark Bluish Gray,24 +Last Crusade,Fighter Plane Attack,383,2009,Dark Brown,1 +Last Crusade,Fighter Plane Attack,383,2009,Dark Tan,3 +Last Crusade,Fighter Plane Attack,383,2009,Green,4 +Last Crusade,Fighter Plane Attack,383,2009,Light Bluish Gray,39 +Last Crusade,Fighter Plane Attack,383,2009,Light Flesh,3 +Last Crusade,Fighter Plane Attack,383,2009,Red,19 +Last Crusade,Fighter Plane Attack,383,2009,Reddish Brown,9 +Last Crusade,Fighter Plane Attack,383,2009,Tan,3 +Last Crusade,Fighter Plane Attack,383,2009,[No Color],1 +Last Crusade,Fighter Plane Attack,383,2009,White,37 +Last Crusade,Fighter Plane Attack,383,2009,Yellow,3 +Last Crusade,Fighter Plane Attack,383,2009,Trans-Black,5 +Last Crusade,Fighter Plane Attack,383,2009,Black,20 +Last Crusade,Fighter Plane Attack,383,2009,Blue,6 +Launch Command,Shuttle Launch Pad,564,1995,Trans-Dark Blue,2 +Launch Command,Shuttle Launch Pad,564,1995,Red,30 +Launch Command,Shuttle Launch Pad,564,1995,Light Gray,53 +Launch Command,Shuttle Launch Pad,564,1995,Trans-Green,1 +Launch Command,Shuttle Launch Pad,564,1995,Green,3 +Launch Command,Shuttle Launch Pad,564,1995,Dark Gray,6 +Launch Command,Shuttle Launch Pad,564,1995,Chrome Gold,1 +Launch Command,Shuttle Launch Pad,564,1995,Blue,3 +Launch Command,Shuttle Launch Pad,564,1995,Black,38 +Launch Command,Shuttle Launch Pad,564,1995,[No Color],2 +Launch Command,Shuttle Launch Pad,564,1995,Trans-Light Blue,1 +Launch Command,Shuttle Launch Pad,564,1995,Trans-Red,2 +Launch Command,Shuttle Launch Pad,564,1995,Trans-Yellow,1 +Launch Command,Shuttle Launch Pad,564,1995,White,46 +Launch Command,Shuttle Launch Pad,564,1995,Yellow,22 +Launch Command,Shuttle Transcon 2,346,1995,Trans-Dark Blue,2 +Launch Command,Shuttle Transcon 2,346,1995,Black,26 +Launch Command,Shuttle Transcon 2,346,1995,Blue,24 +Launch Command,Shuttle Transcon 2,346,1995,Chrome Gold,1 +Launch Command,Shuttle Transcon 2,346,1995,Dark Gray,6 +Launch Command,Shuttle Transcon 2,346,1995,Light Gray,38 +Launch Command,Shuttle Transcon 2,346,1995,Red,5 +Launch Command,Shuttle Transcon 2,346,1995,Trans-Green,2 +Launch Command,Shuttle Transcon 2,346,1995,Trans-Light Blue,2 +Launch Command,Shuttle Transcon 2,346,1995,Trans-Red,2 +Launch Command,Shuttle Transcon 2,346,1995,Trans-Yellow,2 +Launch Command,Shuttle Transcon 2,346,1995,White,47 +Launch Command,Shuttle Transcon 2,346,1995,Yellow,10 +Launch Command,Launch Response Unit,181,1995,Trans-Red,2 +Launch Command,Launch Response Unit,181,1995,Trans-Yellow,2 +Launch Command,Launch Response Unit,181,1995,White,34 +Launch Command,Launch Response Unit,181,1995,Yellow,1 +Launch Command,Launch Response Unit,181,1995,Black,19 +Launch Command,Launch Response Unit,181,1995,Blue,9 +Launch Command,Launch Response Unit,181,1995,Light Gray,15 +Launch Command,Launch Response Unit,181,1995,Red,6 +Launch Command,Launch Response Unit,181,1995,Trans-Dark Blue,2 +Launch Command,Launch Response Unit,181,1995,Trans-Green,1 +Launch Command,Launch Response Unit,181,1995,Trans-Light Blue,5 +Launch Command,Launch Evac 1,122,1995,Yellow,4 +Launch Command,Launch Evac 1,122,1995,White,19 +Launch Command,Launch Evac 1,122,1995,Trans-Yellow,1 +Launch Command,Launch Evac 1,122,1995,Red,10 +Launch Command,Launch Evac 1,122,1995,Trans-Red,2 +Launch Command,Launch Evac 1,122,1995,Trans-Light Blue,2 +Launch Command,Launch Evac 1,122,1995,Trans-Dark Blue,1 +Launch Command,Launch Evac 1,122,1995,Light Gray,17 +Launch Command,Launch Evac 1,122,1995,Blue,2 +Launch Command,Launch Evac 1,122,1995,Black,8 +Launch Command,Moon Walker,34,1995,Black,2 +Launch Command,Moon Walker,34,1995,Blue,2 +Launch Command,Moon Walker,34,1995,Chrome Gold,1 +Launch Command,Moon Walker,34,1995,Light Gray,5 +Launch Command,Moon Walker,34,1995,Red,1 +Launch Command,Moon Walker,34,1995,Trans-Dark Blue,1 +Launch Command,Moon Walker,34,1995,Trans-Yellow,1 +Launch Command,Moon Walker,34,1995,White,11 +Launch Command,Moon Walker,34,1995,Yellow,1 +Learning,Denken mit Lego (Thinking with Lego 900pcs),901,1972,[No Color],1 +Learning,Denken mit Lego (Thinking with Lego 900pcs),901,1972,Black,1 +Learning,Denken mit Lego (Thinking with Lego 900pcs),901,1972,Blue,1 +Learning,Denken mit Lego (Thinking with Lego 900pcs),901,1972,Red,1 +Learning,Denken mit Lego (Thinking with Lego 900pcs),901,1972,White,1 +Learning,Denken mit Lego (Thinking with Lego 900pcs),901,1972,Yellow,1 +Learning,Denken mit Lego (Thinking with Lego 250pcs),250,1972,[No Color],1 +Learning,Denken mit Lego (Thinking with Lego 250pcs),250,1972,Black,1 +Learning,Denken mit Lego (Thinking with Lego 250pcs),250,1972,Blue,1 +Learning,Denken mit Lego (Thinking with Lego 250pcs),250,1972,Red,1 +Learning,Denken mit Lego (Thinking with Lego 250pcs),250,1972,White,1 +Learning,Denken mit Lego (Thinking with Lego 250pcs),250,1972,Yellow,1 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Black,5 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Blue,1 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Bright Green,1 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Dark Bluish Gray,10 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Green,1 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Light Bluish Gray,5 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Lime,1 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Medium Blue,1 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Pearl Gold,1 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Red,1 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Tan,1 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Trans-Black,2 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,White,20 +Learning,"Building My SG - Reflect, Celebrate, Inspire",243,2015,Yellow,2 +Legend Beasts,Crocodile Legend Beast,120,2014,Black,2 +Legend Beasts,Crocodile Legend Beast,120,2014,Dark Bluish Gray,9 +Legend Beasts,Crocodile Legend Beast,120,2014,Dark Green,5 +Legend Beasts,Crocodile Legend Beast,120,2014,Flat Silver,1 +Legend Beasts,Crocodile Legend Beast,120,2014,Light Bluish Gray,6 +Legend Beasts,Crocodile Legend Beast,120,2014,Olive Green,9 +Legend Beasts,Crocodile Legend Beast,120,2014,Pearl Gold,2 +Legend Beasts,Crocodile Legend Beast,120,2014,Red,3 +Legend Beasts,Crocodile Legend Beast,120,2014,Tan,1 +Legend Beasts,Crocodile Legend Beast,120,2014,Trans-Light Blue,3 +Legend Beasts,Crocodile Legend Beast,120,2014,White,2 +Legend Beasts,Lion Legend Beast,119,2014,Dark Bluish Gray,1 +Legend Beasts,Lion Legend Beast,119,2014,Dark Brown,2 +Legend Beasts,Lion Legend Beast,119,2014,Dark Red,1 +Legend Beasts,Lion Legend Beast,119,2014,Dark Tan,1 +Legend Beasts,Lion Legend Beast,119,2014,Light Bluish Gray,7 +Legend Beasts,Lion Legend Beast,119,2014,Pearl Gold,2 +Legend Beasts,Lion Legend Beast,119,2014,Red,2 +Legend Beasts,Lion Legend Beast,119,2014,Reddish Brown,2 +Legend Beasts,Lion Legend Beast,119,2014,Tan,21 +Legend Beasts,Lion Legend Beast,119,2014,White,5 +Legend Beasts,Lion Legend Beast,119,2014,Trans-Light Blue,3 +Legend Beasts,Lion Legend Beast,119,2014,Black,2 +Legend Beasts,Lion Legend Beast,119,2014,Blue,1 +Legend Beasts,Wolf Legend Beast,109,2014,White,24 +Legend Beasts,Wolf Legend Beast,109,2014,Trans-Light Blue,3 +Legend Beasts,Wolf Legend Beast,109,2014,Tan,1 +Legend Beasts,Wolf Legend Beast,109,2014,Pearl Gold,2 +Legend Beasts,Wolf Legend Beast,109,2014,Light Bluish Gray,9 +Legend Beasts,Wolf Legend Beast,109,2014,Flat Silver,2 +Legend Beasts,Wolf Legend Beast,109,2014,Dark Red,1 +Legend Beasts,Wolf Legend Beast,109,2014,Dark Bluish Gray,1 +Legend Beasts,Wolf Legend Beast,109,2014,Black,1 +Legend Beasts,Wolf Legend Beast,109,2014,[No Color],1 +Legend Beasts,Gorilla Legend Beast,107,2014,[No Color],2 +Legend Beasts,Gorilla Legend Beast,107,2014,Black,10 +Legend Beasts,Gorilla Legend Beast,107,2014,Dark Bluish Gray,3 +Legend Beasts,Gorilla Legend Beast,107,2014,Dark Brown,5 +Legend Beasts,Gorilla Legend Beast,107,2014,Dark Tan,1 +Legend Beasts,Gorilla Legend Beast,107,2014,Flat Silver,1 +Legend Beasts,Gorilla Legend Beast,107,2014,Light Bluish Gray,2 +Legend Beasts,Gorilla Legend Beast,107,2014,Pearl Gold,1 +Legend Beasts,Gorilla Legend Beast,107,2014,Reddish Brown,11 +Legend Beasts,Gorilla Legend Beast,107,2014,Trans-Light Blue,2 +Legend Beasts,Gorilla Legend Beast,107,2014,Tan,8 +Legend Beasts,Eagle Legend Beast,103,2014,Yellow,3 +Legend Beasts,Eagle Legend Beast,103,2014,White,15 +Legend Beasts,Eagle Legend Beast,103,2014,Trans-Light Blue,2 +Legend Beasts,Eagle Legend Beast,103,2014,Reddish Brown,1 +Legend Beasts,Eagle Legend Beast,103,2014,Pearl Gold,3 +Legend Beasts,Eagle Legend Beast,103,2014,Light Bluish Gray,5 +Legend Beasts,Eagle Legend Beast,103,2014,Dark Bluish Gray,3 +Legend Beasts,Eagle Legend Beast,103,2014,Dark Blue,7 +Legend Beasts,Eagle Legend Beast,103,2014,Bright Light Blue,2 +Legend Beasts,Eagle Legend Beast,103,2014,Black,4 +Legends of Chima,The Lion CHI Temple,1257,2013,Black,39 +Legends of Chima,The Lion CHI Temple,1257,2013,Pearl Gold,14 +Legends of Chima,The Lion CHI Temple,1257,2013,Orange,1 +Legends of Chima,The Lion CHI Temple,1257,2013,Olive Green,15 +Legends of Chima,The Lion CHI Temple,1257,2013,Medium Dark Flesh,4 +Legends of Chima,The Lion CHI Temple,1257,2013,Medium Blue,1 +Legends of Chima,The Lion CHI Temple,1257,2013,Lime,1 +Legends of Chima,The Lion CHI Temple,1257,2013,Light Bluish Gray,42 +Legends of Chima,The Lion CHI Temple,1257,2013,Green,6 +Legends of Chima,The Lion CHI Temple,1257,2013,Flat Silver,2 +Legends of Chima,The Lion CHI Temple,1257,2013,Dark Tan,3 +Legends of Chima,The Lion CHI Temple,1257,2013,Dark Red,4 +Legends of Chima,The Lion CHI Temple,1257,2013,Dark Green,5 +Legends of Chima,The Lion CHI Temple,1257,2013,Dark Brown,8 +Legends of Chima,The Lion CHI Temple,1257,2013,Dark Bluish Gray,56 +Legends of Chima,The Lion CHI Temple,1257,2013,Dark Blue,3 +Legends of Chima,The Lion CHI Temple,1257,2013,Bright Light Orange,19 +Legends of Chima,The Lion CHI Temple,1257,2013,Yellow,5 +Legends of Chima,The Lion CHI Temple,1257,2013,Trans-Light Blue,14 +Legends of Chima,The Lion CHI Temple,1257,2013,[No Color],1 +Legends of Chima,The Lion CHI Temple,1257,2013,Bright Light Blue,2 +Legends of Chima,The Lion CHI Temple,1257,2013,Blue,14 +Legends of Chima,The Lion CHI Temple,1257,2013,Red,7 +Legends of Chima,The Lion CHI Temple,1257,2013,Reddish Brown,23 +Legends of Chima,The Lion CHI Temple,1257,2013,Tan,7 +Legends of Chima,The Lion CHI Temple,1257,2013,Trans-Clear,3 +Legends of Chima,The Lion CHI Temple,1257,2013,Trans-Dark Blue,2 +Legends of Chima,The Lion CHI Temple,1257,2013,Trans-Medium Blue,1 +Legends of Chima,The Lion CHI Temple,1257,2013,Trans-Neon Orange,1 +Legends of Chima,The Lion CHI Temple,1257,2013,Trans-Red,3 +Legends of Chima,The Lion CHI Temple,1257,2013,White,23 +Legends of Chima,Worriz’s Combat Lair,657,2013,Yellow,1 +Legends of Chima,Worriz’s Combat Lair,657,2013,[No Color],1 +Legends of Chima,Worriz’s Combat Lair,657,2013,Black,58 +Legends of Chima,Worriz’s Combat Lair,657,2013,Blue,3 +Legends of Chima,Worriz’s Combat Lair,657,2013,Bright Light Blue,2 +Legends of Chima,Worriz’s Combat Lair,657,2013,Dark Bluish Gray,60 +Legends of Chima,Worriz’s Combat Lair,657,2013,Dark Red,10 +Legends of Chima,Worriz’s Combat Lair,657,2013,Flat Silver,3 +Legends of Chima,Worriz’s Combat Lair,657,2013,Light Bluish Gray,60 +Legends of Chima,Worriz’s Combat Lair,657,2013,Orange,1 +Legends of Chima,Worriz’s Combat Lair,657,2013,Pearl Gold,3 +Legends of Chima,Worriz’s Combat Lair,657,2013,Red,18 +Legends of Chima,Worriz’s Combat Lair,657,2013,Reddish Brown,1 +Legends of Chima,Worriz’s Combat Lair,657,2013,Tan,3 +Legends of Chima,Worriz’s Combat Lair,657,2013,Trans-Light Blue,2 +Legends of Chima,Worriz’s Combat Lair,657,2013,Trans-Red,5 +Legends of Chima,Worriz’s Combat Lair,657,2013,White,19 +Legends of Chima,The Croc Swamp Hideout,645,2013,White,4 +Legends of Chima,The Croc Swamp Hideout,645,2013,Trans-Red,5 +Legends of Chima,The Croc Swamp Hideout,645,2013,Trans-Orange,1 +Legends of Chima,The Croc Swamp Hideout,645,2013,Trans-Neon Orange,1 +Legends of Chima,The Croc Swamp Hideout,645,2013,Trans-Light Blue,4 +Legends of Chima,The Croc Swamp Hideout,645,2013,Trans-Dark Blue,2 +Legends of Chima,The Croc Swamp Hideout,645,2013,Tan,7 +Legends of Chima,The Croc Swamp Hideout,645,2013,Reddish Brown,26 +Legends of Chima,The Croc Swamp Hideout,645,2013,Red,9 +Legends of Chima,The Croc Swamp Hideout,645,2013,Pearl Gold,6 +Legends of Chima,The Croc Swamp Hideout,645,2013,Pearl Dark Gray,1 +Legends of Chima,The Croc Swamp Hideout,645,2013,Orange,2 +Legends of Chima,The Croc Swamp Hideout,645,2013,Olive Green,14 +Legends of Chima,The Croc Swamp Hideout,645,2013,Light Bluish Gray,27 +Legends of Chima,The Croc Swamp Hideout,645,2013,Flat Silver,4 +Legends of Chima,The Croc Swamp Hideout,645,2013,Dark Tan,3 +Legends of Chima,The Croc Swamp Hideout,645,2013,Dark Red,2 +Legends of Chima,The Croc Swamp Hideout,645,2013,Dark Green,17 +Legends of Chima,The Croc Swamp Hideout,645,2013,Dark Brown,5 +Legends of Chima,The Croc Swamp Hideout,645,2013,Bright Light Orange,4 +Legends of Chima,The Croc Swamp Hideout,645,2013,Blue,2 +Legends of Chima,The Croc Swamp Hideout,645,2013,Black,34 +Legends of Chima,The Croc Swamp Hideout,645,2013,Dark Bluish Gray,40 +Legends of Chima,The Croc Swamp Hideout,645,2013,Yellow,2 +Legends of Chima,Cragger’s Command Ship,607,2013,Reddish Brown,4 +Legends of Chima,Cragger’s Command Ship,607,2013,Red,28 +Legends of Chima,Cragger’s Command Ship,607,2013,Pearl Gold,6 +Legends of Chima,Cragger’s Command Ship,607,2013,Pearl Dark Gray,1 +Legends of Chima,Cragger’s Command Ship,607,2013,Orange,2 +Legends of Chima,Cragger’s Command Ship,607,2013,Olive Green,26 +Legends of Chima,Cragger’s Command Ship,607,2013,Lime,4 +Legends of Chima,Cragger’s Command Ship,607,2013,Light Bluish Gray,22 +Legends of Chima,Cragger’s Command Ship,607,2013,Flat Silver,4 +Legends of Chima,Cragger’s Command Ship,607,2013,Dark Tan,1 +Legends of Chima,Cragger’s Command Ship,607,2013,Dark Red,1 +Legends of Chima,Cragger’s Command Ship,607,2013,Dark Green,12 +Legends of Chima,Cragger’s Command Ship,607,2013,Dark Bluish Gray,20 +Legends of Chima,Cragger’s Command Ship,607,2013,Bright Light Orange,1 +Legends of Chima,Cragger’s Command Ship,607,2013,Black,30 +Legends of Chima,Cragger’s Command Ship,607,2013,White,3 +Legends of Chima,Cragger’s Command Ship,607,2013,Trans-Light Blue,4 +Legends of Chima,Cragger’s Command Ship,607,2013,Trans-Red,9 +Legends of Chima,Cragger’s Command Ship,607,2013,Trans-Dark Blue,1 +Legends of Chima,Cragger’s Command Ship,607,2013,Tan,4 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Trans-Dark Blue,1 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Trans-Clear,1 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Tan,1 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Reddish Brown,16 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Red,6 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Orange,1 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Olive Green,1 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Light Bluish Gray,16 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Green,1 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Flat Silver,5 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Dark Tan,1 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Dark Red,2 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Dark Brown,11 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Dark Bluish Gray,32 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Yellow,1 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Bright Green,1 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Blue,4 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Black,56 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Trans-Red,3 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Trans-Light Blue,4 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,[No Color],1 +Legends of Chima,Gorzan’s Gorilla Striker,503,2013,Dark Azure,8 +Legends of Chima,Laval's Royal Fighter,416,2013,Black,23 +Legends of Chima,Laval's Royal Fighter,416,2013,Blue,4 +Legends of Chima,Laval's Royal Fighter,416,2013,Bright Light Orange,11 +Legends of Chima,Laval's Royal Fighter,416,2013,Dark Blue,1 +Legends of Chima,Laval's Royal Fighter,416,2013,Dark Bluish Gray,26 +Legends of Chima,Laval's Royal Fighter,416,2013,Dark Brown,1 +Legends of Chima,Laval's Royal Fighter,416,2013,Dark Red,1 +Legends of Chima,Laval's Royal Fighter,416,2013,Dark Tan,8 +Legends of Chima,Laval's Royal Fighter,416,2013,Light Bluish Gray,14 +Legends of Chima,Laval's Royal Fighter,416,2013,Olive Green,4 +Legends of Chima,Laval's Royal Fighter,416,2013,Red,9 +Legends of Chima,Laval's Royal Fighter,416,2013,Reddish Brown,7 +Legends of Chima,Laval's Royal Fighter,416,2013,Tan,17 +Legends of Chima,Laval's Royal Fighter,416,2013,Trans-Clear,1 +Legends of Chima,Laval's Royal Fighter,416,2013,Trans-Dark Blue,2 +Legends of Chima,Laval's Royal Fighter,416,2013,Trans-Light Blue,3 +Legends of Chima,Laval's Royal Fighter,416,2013,Trans-Red,1 +Legends of Chima,Laval's Royal Fighter,416,2013,White,6 +Legends of Chima,Laval's Royal Fighter,416,2013,Yellow,4 +Legends of Chima,Laval's Royal Fighter,416,2013,Pearl Gold,2 +Legends of Chima,Laval's Royal Fighter,416,2013,[No Color],1 +Legends of Chima,Razar’s CHI Raider,412,2013,Blue,2 +Legends of Chima,Razar’s CHI Raider,412,2013,Medium Blue,2 +Legends of Chima,Razar’s CHI Raider,412,2013,Lime,1 +Legends of Chima,Razar’s CHI Raider,412,2013,Light Bluish Gray,14 +Legends of Chima,Razar’s CHI Raider,412,2013,Tan,1 +Legends of Chima,Razar’s CHI Raider,412,2013,Green,1 +Legends of Chima,Razar’s CHI Raider,412,2013,Flat Silver,4 +Legends of Chima,Razar’s CHI Raider,412,2013,Dark Tan,3 +Legends of Chima,Razar’s CHI Raider,412,2013,Dark Red,7 +Legends of Chima,Razar’s CHI Raider,412,2013,Dark Purple,6 +Legends of Chima,Razar’s CHI Raider,412,2013,Reddish Brown,1 +Legends of Chima,Razar’s CHI Raider,412,2013,Dark Green,4 +Legends of Chima,Razar’s CHI Raider,412,2013,Dark Bluish Gray,31 +Legends of Chima,Razar’s CHI Raider,412,2013,Bright Light Blue,2 +Legends of Chima,Razar’s CHI Raider,412,2013,Black,48 +Legends of Chima,Razar’s CHI Raider,412,2013,[No Color],1 +Legends of Chima,Razar’s CHI Raider,412,2013,Red,4 +Legends of Chima,Razar’s CHI Raider,412,2013,Pearl Gold,3 +Legends of Chima,Razar’s CHI Raider,412,2013,Yellow,3 +Legends of Chima,Razar’s CHI Raider,412,2013,White,6 +Legends of Chima,Razar’s CHI Raider,412,2013,Trans-Red,1 +Legends of Chima,Razar’s CHI Raider,412,2013,Trans-Light Blue,3 +Legends of Chima,Razar’s CHI Raider,412,2013,Trans-Dark Blue,2 +Legends of Chima,Razar’s CHI Raider,412,2013,Trans-Clear,1 +Legends of Chima,Razar’s CHI Raider,412,2013,Dark Blue,2 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Dark Blue,15 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Reddish Brown,1 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Red,1 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Pearl Light Gray,1 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Pearl Gold,2 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Lime,1 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Trans-Dark Blue,2 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Trans-Black,1 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Light Bluish Gray,9 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Flat Silver,2 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Dark Red,1 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Dark Bluish Gray,14 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Trans-Light Blue,4 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Dark Azure,4 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Yellow,11 +Legends of Chima,Eris' Eagle Interceptor,345,2013,White,22 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Trans-Red,3 +Legends of Chima,Eris' Eagle Interceptor,345,2013,[No Color],1 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Black,23 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Blue,15 +Legends of Chima,Eris' Eagle Interceptor,345,2013,Bright Light Blue,2 +Legends of Chima,Equila's Ultra Striker,340,2013,Dark Blue,10 +Legends of Chima,Equila's Ultra Striker,340,2013,Bright Light Blue,3 +Legends of Chima,Equila's Ultra Striker,340,2013,Dark Azure,1 +Legends of Chima,Equila's Ultra Striker,340,2013,Dark Bluish Gray,8 +Legends of Chima,Equila's Ultra Striker,340,2013,Flat Silver,2 +Legends of Chima,Equila's Ultra Striker,340,2013,Pearl Gold,3 +Legends of Chima,Equila's Ultra Striker,340,2013,Red,6 +Legends of Chima,Equila's Ultra Striker,340,2013,Trans-Black,1 +Legends of Chima,Equila's Ultra Striker,340,2013,Black,15 +Legends of Chima,Equila's Ultra Striker,340,2013,Trans-Clear,1 +Legends of Chima,Equila's Ultra Striker,340,2013,Trans-Light Blue,3 +Legends of Chima,Equila's Ultra Striker,340,2013,Blue,24 +Legends of Chima,Equila's Ultra Striker,340,2013,White,25 +Legends of Chima,Equila's Ultra Striker,340,2013,Yellow,15 +Legends of Chima,Equila's Ultra Striker,340,2013,Light Bluish Gray,18 +Legends of Chima,Equila's Ultra Striker,340,2013,Trans-Orange,1 +Legends of Chima,Wakz' Pack Tracker,295,2013,Red,8 +Legends of Chima,Wakz' Pack Tracker,295,2013,Trans-Light Blue,2 +Legends of Chima,Wakz' Pack Tracker,295,2013,Trans-Red,2 +Legends of Chima,Wakz' Pack Tracker,295,2013,White,6 +Legends of Chima,Wakz' Pack Tracker,295,2013,Yellow,1 +Legends of Chima,Wakz' Pack Tracker,295,2013,Black,22 +Legends of Chima,Wakz' Pack Tracker,295,2013,Pearl Gold,2 +Legends of Chima,Wakz' Pack Tracker,295,2013,Light Bluish Gray,37 +Legends of Chima,Wakz' Pack Tracker,295,2013,Flat Silver,4 +Legends of Chima,Wakz' Pack Tracker,295,2013,Dark Tan,1 +Legends of Chima,Wakz' Pack Tracker,295,2013,Dark Red,9 +Legends of Chima,Wakz' Pack Tracker,295,2013,Dark Bluish Gray,27 +Legends of Chima,Wakz' Pack Tracker,295,2013,Bright Light Blue,1 +Legends of Chima,Wakz' Pack Tracker,295,2013,Blue,3 +Legends of Chima,Wakz' Pack Tracker,295,2013,Tan,2 +Legends of Chima,Lennox' Lion Attack,229,2013,Light Bluish Gray,11 +Legends of Chima,Lennox' Lion Attack,229,2013,Dark Tan,3 +Legends of Chima,Lennox' Lion Attack,229,2013,Trans-Clear,1 +Legends of Chima,Lennox' Lion Attack,229,2013,Dark Bluish Gray,14 +Legends of Chima,Lennox' Lion Attack,229,2013,Blue,2 +Legends of Chima,Lennox' Lion Attack,229,2013,Black,21 +Legends of Chima,Lennox' Lion Attack,229,2013,Dark Brown,3 +Legends of Chima,Lennox' Lion Attack,229,2013,Bright Light Orange,11 +Legends of Chima,Lennox' Lion Attack,229,2013,Trans-Red,1 +Legends of Chima,Lennox' Lion Attack,229,2013,Trans-Light Blue,2 +Legends of Chima,Lennox' Lion Attack,229,2013,Trans-Dark Blue,1 +Legends of Chima,Lennox' Lion Attack,229,2013,White,5 +Legends of Chima,Lennox' Lion Attack,229,2013,Tan,13 +Legends of Chima,Lennox' Lion Attack,229,2013,Reddish Brown,8 +Legends of Chima,Lennox' Lion Attack,229,2013,Red,2 +Legends of Chima,Lennox' Lion Attack,229,2013,Pearl Gold,1 +Legends of Chima,Lennox' Lion Attack,229,2013,Olive Green,1 +Legends of Chima,Eglor's Twin Bike,224,2013,Black,25 +Legends of Chima,Eglor's Twin Bike,224,2013,Blue,4 +Legends of Chima,Eglor's Twin Bike,224,2013,Bright Light Blue,1 +Legends of Chima,Eglor's Twin Bike,224,2013,Dark Azure,1 +Legends of Chima,Eglor's Twin Bike,224,2013,Trans-Red,2 +Legends of Chima,Eglor's Twin Bike,224,2013,Dark Blue,7 +Legends of Chima,Eglor's Twin Bike,224,2013,Trans-Light Blue,5 +Legends of Chima,Eglor's Twin Bike,224,2013,Trans-Dark Blue,2 +Legends of Chima,Eglor's Twin Bike,224,2013,Dark Purple,1 +Legends of Chima,Eglor's Twin Bike,224,2013,Red,1 +Legends of Chima,Eglor's Twin Bike,224,2013,Dark Bluish Gray,11 +Legends of Chima,Eglor's Twin Bike,224,2013,Pearl Gold,3 +Legends of Chima,Eglor's Twin Bike,224,2013,Metallic Silver,1 +Legends of Chima,Eglor's Twin Bike,224,2013,White,11 +Legends of Chima,Eglor's Twin Bike,224,2013,Yellow,4 +Legends of Chima,Eglor's Twin Bike,224,2013,Dark Red,3 +Legends of Chima,Eglor's Twin Bike,224,2013,Dark Tan,1 +Legends of Chima,Eglor's Twin Bike,224,2013,Flat Silver,4 +Legends of Chima,Eglor's Twin Bike,224,2013,Light Bluish Gray,16 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Red,6 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Orange,1 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Olive Green,11 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Light Bluish Gray,13 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Flat Silver,1 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Dark Red,4 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Dark Green,1 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Dark Brown,1 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Dark Bluish Gray,9 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Blue,2 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Black,10 +Legends of Chima,Crawley’s Claw Ripper,138,2013,White,2 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Trans-Red,1 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Trans-Light Blue,2 +Legends of Chima,Crawley’s Claw Ripper,138,2013,Tan,4 +Legends of Chima,Razcal's Glider,108,2013,Black,25 +Legends of Chima,Razcal's Glider,108,2013,White,2 +Legends of Chima,Razcal's Glider,108,2013,Trans-Red,2 +Legends of Chima,Razcal's Glider,108,2013,Trans-Light Blue,1 +Legends of Chima,Razcal's Glider,108,2013,Reddish Brown,1 +Legends of Chima,Razcal's Glider,108,2013,Red,1 +Legends of Chima,Razcal's Glider,108,2013,Light Bluish Gray,8 +Legends of Chima,Razcal's Glider,108,2013,Green,1 +Legends of Chima,Razcal's Glider,108,2013,Flat Silver,1 +Legends of Chima,Razcal's Glider,108,2013,Blue,1 +Legends of Chima,Razcal's Glider,108,2013,Dark Bluish Gray,6 +Legends of Chima,Razcal's Glider,108,2013,Dark Purple,4 +Legends of Chima,Razcal's Glider,108,2013,Dark Red,5 +Legends of Chima,Legends of Chima Minifigure Accessory Set,42,2013,Trans-Light Blue,3 +Legends of Chima,Legends of Chima Minifigure Accessory Set,42,2013,Black,6 +Legends of Chima,Legends of Chima Minifigure Accessory Set,42,2013,Bright Light Blue,2 +Legends of Chima,Legends of Chima Minifigure Accessory Set,42,2013,Flat Silver,3 +Legends of Chima,Legends of Chima Minifigure Accessory Set,42,2013,Light Bluish Gray,6 +Legends of Chima,Legends of Chima Minifigure Accessory Set,42,2013,Reddish Brown,1 +Legends of Chima,Legends of Chima Minifigure Accessory Set,42,2013,Tan,3 +Legends of Chima,Legends of Chima Minifigure Accessory Set,42,2013,Pearl Gold,5 +Legends of Chima,Legends of Chima Minifigure Accessory Set,42,2013,Trans-Red,1 +Legends of Chima,Legends of Chima Minifigure Accessory Set,42,2013,White,5 +Legends of Chima,Winzar's Pack Patrol,38,2013,Light Bluish Gray,8 +Legends of Chima,Winzar's Pack Patrol,38,2013,Red,2 +Legends of Chima,Winzar's Pack Patrol,38,2013,Trans-Light Blue,1 +Legends of Chima,Winzar's Pack Patrol,38,2013,Trans-Red,1 +Legends of Chima,Winzar's Pack Patrol,38,2013,White,2 +Legends of Chima,Winzar's Pack Patrol,38,2013,Black,4 +Legends of Chima,Winzar's Pack Patrol,38,2013,Dark Bluish Gray,8 +Legends of Chima,Winzar's Pack Patrol,38,2013,Dark Red,1 +Legends of Chima,Winzar's Pack Patrol,38,2013,Flat Silver,1 +Legends of Chima,Razcal's Double-Crosser,36,2013,Trans-Red,1 +Legends of Chima,Razcal's Double-Crosser,36,2013,Dark Bluish Gray,5 +Legends of Chima,Razcal's Double-Crosser,36,2013,Dark Red,1 +Legends of Chima,Razcal's Double-Crosser,36,2013,Flat Silver,1 +Legends of Chima,Razcal's Double-Crosser,36,2013,Light Bluish Gray,2 +Legends of Chima,Razcal's Double-Crosser,36,2013,Trans-Light Blue,2 +Legends of Chima,Razcal's Double-Crosser,36,2013,Black,11 +Legends of Chima,Ewar's Acro-Fighter,33,2013,White,8 +Legends of Chima,Ewar's Acro-Fighter,33,2013,Trans-Light Blue,2 +Legends of Chima,Ewar's Acro-Fighter,33,2013,Dark Bluish Gray,2 +Legends of Chima,Ewar's Acro-Fighter,33,2013,Light Bluish Gray,1 +Legends of Chima,Ewar's Acro-Fighter,33,2013,Pearl Gold,1 +Legends of Chima,Ewar's Acro-Fighter,33,2013,Yellow,2 +Legends of Chima,Ewar's Acro-Fighter,33,2013,Tan,1 +Legends of Chima,Ewar's Acro-Fighter,33,2013,Blue,2 +Legends of Chima,Ewar's Acro-Fighter,33,2013,Bright Light Blue,2 +Legends of Chima,Ewar's Acro-Fighter,33,2013,Dark Blue,2 +Legends of Chima,Leonidas' Jungle Dragster,30,2013,Black,5 +Legends of Chima,Leonidas' Jungle Dragster,30,2013,Orange,1 +Legends of Chima,Leonidas' Jungle Dragster,30,2013,Reddish Brown,1 +Legends of Chima,Leonidas' Jungle Dragster,30,2013,Tan,4 +Legends of Chima,Leonidas' Jungle Dragster,30,2013,Trans-Light Blue,2 +Legends of Chima,Leonidas' Jungle Dragster,30,2013,White,1 +Legends of Chima,Leonidas' Jungle Dragster,30,2013,Light Bluish Gray,2 +Legends of Chima,Leonidas' Jungle Dragster,30,2013,Dark Bluish Gray,3 +Legends of Chima,Leonidas' Jungle Dragster,30,2013,Bright Light Orange,2 +Legends of Chima,Crug's Swamp Jet,23,2013,Light Bluish Gray,2 +Legends of Chima,Crug's Swamp Jet,23,2013,Olive Green,2 +Legends of Chima,Crug's Swamp Jet,23,2013,Red,5 +Legends of Chima,Crug's Swamp Jet,23,2013,Reddish Brown,2 +Legends of Chima,Crug's Swamp Jet,23,2013,Tan,1 +Legends of Chima,Crug's Swamp Jet,23,2013,Dark Brown,2 +Legends of Chima,Crug's Swamp Jet,23,2013,Dark Bluish Gray,2 +Legends of Chima,Crug's Swamp Jet,23,2013,White,1 +Legends of Chima,Crug's Swamp Jet,23,2013,Trans-Light Blue,1 +Legends of Chima,Ewar,15,2013,Trans-Light Blue,2 +Legends of Chima,Ewar,15,2013,White,4 +Legends of Chima,Razcal Promo Minifigure,15,2013,Trans-Red,1 +Legends of Chima,Razcal Promo Minifigure,15,2013,Trans-Light Blue,1 +Legends of Chima,Razcal Promo Minifigure,15,2013,Pearl Gold,1 +Legends of Chima,Razcal Promo Minifigure,15,2013,Pearl Dark Gray,1 +Legends of Chima,Razcal Promo Minifigure,15,2013,Flat Silver,1 +Legends of Chima,Razcal Promo Minifigure,15,2013,Black,7 +Legends of Chima,Ewar,15,2013,Bright Light Blue,2 +Legends of Chima,Ewar,15,2013,Flat Silver,1 +Legends of Chima,Ewar,15,2013,Light Bluish Gray,2 +Legends of Chima,Ewar,15,2013,Pearl Gold,1 +Legends of Chima,Crawley,11,2013,Trans-Red,2 +Legends of Chima,Crawley,11,2013,White,1 +Legends of Chima,Crawley,11,2013,Black,1 +Legends of Chima,Crawley,11,2013,Olive Green,4 +Legends of Chima,Crawley,11,2013,Trans-Green,1 +Legends of Chima,Crawley,11,2013,Trans-Light Blue,1 +Legends of Chima,King Crominus’ Rescue,861,2015,Dark Red,11 +Legends of Chima,King Crominus’ Rescue,861,2015,Dark Tan,7 +Legends of Chima,King Crominus’ Rescue,861,2015,Flat Silver,4 +Legends of Chima,King Crominus’ Rescue,861,2015,Green,1 +Legends of Chima,King Crominus’ Rescue,861,2015,Light Bluish Gray,52 +Legends of Chima,King Crominus’ Rescue,861,2015,Olive Green,20 +Legends of Chima,King Crominus’ Rescue,861,2015,Orange,1 +Legends of Chima,King Crominus’ Rescue,861,2015,Pearl Dark Gray,1 +Legends of Chima,King Crominus’ Rescue,861,2015,Pearl Gold,8 +Legends of Chima,King Crominus’ Rescue,861,2015,Red,23 +Legends of Chima,King Crominus’ Rescue,861,2015,Reddish Brown,2 +Legends of Chima,King Crominus’ Rescue,861,2015,Tan,8 +Legends of Chima,King Crominus’ Rescue,861,2015,Trans-Black,1 +Legends of Chima,King Crominus’ Rescue,861,2015,Trans-Clear,1 +Legends of Chima,King Crominus’ Rescue,861,2015,Trans-Light Blue,6 +Legends of Chima,King Crominus’ Rescue,861,2015,Trans-Orange,3 +Legends of Chima,King Crominus’ Rescue,861,2015,Trans-Red,1 +Legends of Chima,King Crominus’ Rescue,861,2015,White,13 +Legends of Chima,King Crominus’ Rescue,861,2015,Yellow,6 +Legends of Chima,King Crominus’ Rescue,861,2015,Dark Green,4 +Legends of Chima,King Crominus’ Rescue,861,2015,Black,36 +Legends of Chima,King Crominus’ Rescue,861,2015,Blue,6 +Legends of Chima,King Crominus’ Rescue,861,2015,Bright Light Orange,10 +Legends of Chima,King Crominus’ Rescue,861,2015,Dark Bluish Gray,42 +Legends of Chima,King Crominus’ Rescue,861,2015,Dark Brown,1 +Legends of Chima,Tiger’s Mobile Command,710,2015,Tan,1 +Legends of Chima,Tiger’s Mobile Command,710,2015,Red,7 +Legends of Chima,Tiger’s Mobile Command,710,2015,Pearl Gold,4 +Legends of Chima,Tiger’s Mobile Command,710,2015,Orange,39 +Legends of Chima,Tiger’s Mobile Command,710,2015,Trans-Orange,6 +Legends of Chima,Tiger’s Mobile Command,710,2015,Flat Silver,4 +Legends of Chima,Tiger’s Mobile Command,710,2015,Dark Tan,2 +Legends of Chima,Tiger’s Mobile Command,710,2015,Dark Orange,7 +Legends of Chima,Tiger’s Mobile Command,710,2015,Dark Green,1 +Legends of Chima,Tiger’s Mobile Command,710,2015,Dark Bluish Gray,19 +Legends of Chima,Tiger’s Mobile Command,710,2015,Light Bluish Gray,34 +Legends of Chima,Tiger’s Mobile Command,710,2015,Bright Light Blue,1 +Legends of Chima,Tiger’s Mobile Command,710,2015,Blue,2 +Legends of Chima,Tiger’s Mobile Command,710,2015,Black,52 +Legends of Chima,Tiger’s Mobile Command,710,2015,White,38 +Legends of Chima,Tiger’s Mobile Command,710,2015,Trans-Red,2 +Legends of Chima,Tiger’s Mobile Command,710,2015,Trans-Neon Orange,1 +Legends of Chima,Tiger’s Mobile Command,710,2015,Trans-Light Blue,6 +Legends of Chima,Tiger’s Mobile Command,710,2015,Trans-Dark Blue,1 +Legends of Chima,Icebite's Claw Driller,628,2015,Pearl Dark Gray,1 +Legends of Chima,Icebite's Claw Driller,628,2015,Black,29 +Legends of Chima,Icebite's Claw Driller,628,2015,Red,10 +Legends of Chima,Icebite's Claw Driller,628,2015,Blue,5 +Legends of Chima,Icebite's Claw Driller,628,2015,Tan,6 +Legends of Chima,Icebite's Claw Driller,628,2015,Trans-Dark Blue,1 +Legends of Chima,Icebite's Claw Driller,628,2015,Trans-Light Blue,13 +Legends of Chima,Icebite's Claw Driller,628,2015,Trans-Neon Orange,1 +Legends of Chima,Icebite's Claw Driller,628,2015,Trans-Orange,4 +Legends of Chima,Icebite's Claw Driller,628,2015,Trans-Red,1 +Legends of Chima,Icebite's Claw Driller,628,2015,White,44 +Legends of Chima,Icebite's Claw Driller,628,2015,Reddish Brown,14 +Legends of Chima,Icebite's Claw Driller,628,2015,Bright Light Orange,1 +Legends of Chima,Icebite's Claw Driller,628,2015,Dark Bluish Gray,38 +Legends of Chima,Icebite's Claw Driller,628,2015,Dark Brown,7 +Legends of Chima,Icebite's Claw Driller,628,2015,Dark Red,1 +Legends of Chima,Icebite's Claw Driller,628,2015,Dark Tan,1 +Legends of Chima,Icebite's Claw Driller,628,2015,Flat Silver,6 +Legends of Chima,Icebite's Claw Driller,628,2015,Light Bluish Gray,27 +Legends of Chima,Icebite's Claw Driller,628,2015,Pearl Gold,6 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Flat Silver,4 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Light Bluish Gray,35 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Medium Lavender,2 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Orange,1 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Pearl Gold,4 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Red,12 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Reddish Brown,7 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Tan,9 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Trans-Light Blue,15 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Trans-Orange,4 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Trans-Red,1 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,White,37 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Black,34 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Blue,4 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Bright Light Orange,1 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Dark Bluish Gray,37 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Dark Brown,14 +Legends of Chima,Mammoth’s Frozen Stronghold,619,2015,Dark Red,2 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Trans-Light Blue,12 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Tan,5 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Reddish Brown,5 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Red,8 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Pearl Gold,2 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Pearl Dark Gray,1 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Orange,6 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Medium Lavender,2 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Medium Blue,1 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Light Bluish Gray,33 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Green,1 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Flat Silver,6 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Dark Red,2 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Dark Brown,12 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Dark Bluish Gray,31 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Yellow,5 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Bright Light Orange,1 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Bright Light Blue,2 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Black,38 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Dark Tan,11 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Blue,3 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Trans-Yellow,1 +Legends of Chima,Vultrix's Sky Scavenger,479,2015,Trans-Orange,4 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Black,20 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Blue,2 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Dark Bluish Gray,33 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Dark Orange,5 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Flat Silver,6 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Lavender,2 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Light Bluish Gray,14 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Orange,1 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Pearl Dark Gray,1 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Pearl Gold,12 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Red,33 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Reddish Brown,23 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Tan,1 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Trans-Light Blue,6 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Trans-Orange,5 +Legends of Chima,Bladvic's Rumble Bear,414,2015,White,12 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Yellow,4 +Legends of Chima,Bladvic's Rumble Bear,414,2015,Trans-Red,1 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Black,50 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Dark Red,13 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Dark Bluish Gray,13 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Red,13 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Pearl Gold,4 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Orange,19 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Flat Silver,8 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Dark Tan,1 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Pearl Dark Gray,1 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Blue,1 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Light Bluish Gray,19 +Legends of Chima,Tormak's Shadow Blazer,310,2015,White,11 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Trans-Yellow,1 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Trans-Red,2 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Trans-Orange,6 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Trans-Light Blue,7 +Legends of Chima,Tormak's Shadow Blazer,310,2015,Trans-Dark Blue,1 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Orange,1 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Black,7 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Blue,1 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Bright Light Orange,1 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Dark Bluish Gray,6 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Flat Silver,1 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Dark Red,5 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Red,25 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Reddish Brown,5 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Trans-Light Blue,5 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Trans-Neon Orange,1 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Trans-Orange,5 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,White,4 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Yellow,2 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Light Bluish Gray,12 +Legends of Chima,Flinx's Ultimate Phoenix,172,2015,Pearl Gold,7 +Legends of Chima,Strainor's Saber Cycle,160,2015,Trans-Red,1 +Legends of Chima,Strainor's Saber Cycle,160,2015,White,6 +Legends of Chima,Strainor's Saber Cycle,160,2015,Yellow,1 +Legends of Chima,Strainor's Saber Cycle,160,2015,Flat Silver,5 +Legends of Chima,Strainor's Saber Cycle,160,2015,Dark Tan,9 +Legends of Chima,Strainor's Saber Cycle,160,2015,Dark Brown,1 +Legends of Chima,Strainor's Saber Cycle,160,2015,Dark Bluish Gray,12 +Legends of Chima,Strainor's Saber Cycle,160,2015,Blue,2 +Legends of Chima,Strainor's Saber Cycle,160,2015,Black,13 +Legends of Chima,Strainor's Saber Cycle,160,2015,Dark Orange,4 +Legends of Chima,Strainor's Saber Cycle,160,2015,Trans-Light Blue,10 +Legends of Chima,Strainor's Saber Cycle,160,2015,Light Bluish Gray,17 +Legends of Chima,Strainor's Saber Cycle,160,2015,Pearl Gold,2 +Legends of Chima,Strainor's Saber Cycle,160,2015,Red,4 +Legends of Chima,Strainor's Saber Cycle,160,2015,Reddish Brown,1 +Legends of Chima,Strainor's Saber Cycle,160,2015,Tan,3 +Legends of Chima,Strainor's Saber Cycle,160,2015,Trans-Dark Blue,1 +Legends of Chima,Strainor's Saber Cycle,160,2015,Trans-Orange,1 +Legends of Chima,Lion Tribe Pack,78,2015,Dark Brown,2 +Legends of Chima,Lion Tribe Pack,78,2015,Dark Tan,1 +Legends of Chima,Lion Tribe Pack,78,2015,Light Bluish Gray,3 +Legends of Chima,Lion Tribe Pack,78,2015,Red,2 +Legends of Chima,Lion Tribe Pack,78,2015,Pearl Gold,7 +Legends of Chima,Lion Tribe Pack,78,2015,White,3 +Legends of Chima,Lion Tribe Pack,78,2015,Tan,9 +Legends of Chima,Lion Tribe Pack,78,2015,Trans-Clear,1 +Legends of Chima,Lion Tribe Pack,78,2015,Reddish Brown,7 +Legends of Chima,Lion Tribe Pack,78,2015,Black,5 +Legends of Chima,Lion Tribe Pack,78,2015,Bright Light Orange,6 +Legends of Chima,Lion Tribe Pack,78,2015,Dark Bluish Gray,1 +Legends of Chima,Lion Tribe Pack,78,2015,Flat Silver,1 +Legends of Chima,Lion Tribe Pack,78,2015,Trans-Orange,3 +Legends of Chima,Ice Bear Tribe Pack,75,2015,Trans-Clear,1 +Legends of Chima,Ice Bear Tribe Pack,75,2015,Reddish Brown,4 +Legends of Chima,Ice Bear Tribe Pack,75,2015,Light Bluish Gray,8 +Legends of Chima,Ice Bear Tribe Pack,75,2015,Flat Silver,2 +Legends of Chima,Ice Bear Tribe Pack,75,2015,Black,3 +Legends of Chima,Ice Bear Tribe Pack,75,2015,Dark Tan,1 +Legends of Chima,Ice Bear Tribe Pack,75,2015,Dark Bluish Gray,4 +Legends of Chima,Ice Bear Tribe Pack,75,2015,White,22 +Legends of Chima,Ice Bear Tribe Pack,75,2015,Trans-Light Blue,8 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,Flat Silver,1 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,Trans-Light Blue,9 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,White,5 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,Pearl Dark Gray,1 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,Dark Tan,4 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,Dark Orange,1 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,Light Bluish Gray,15 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,Sand Blue,3 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,Dark Bluish Gray,5 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,Trans-Clear,1 +Legends of Chima,Sabre Tooth Tiger Pack,74,2015,Black,2 +Legends of Chima,Crocodile Tribe Pack,72,2015,Trans-Orange,4 +Legends of Chima,Crocodile Tribe Pack,72,2015,White,2 +Legends of Chima,Crocodile Tribe Pack,72,2015,Dark Brown,1 +Legends of Chima,Crocodile Tribe Pack,72,2015,Black,2 +Legends of Chima,Crocodile Tribe Pack,72,2015,Dark Bluish Gray,2 +Legends of Chima,Crocodile Tribe Pack,72,2015,Dark Tan,2 +Legends of Chima,Crocodile Tribe Pack,72,2015,Flat Silver,2 +Legends of Chima,Crocodile Tribe Pack,72,2015,Light Bluish Gray,6 +Legends of Chima,Crocodile Tribe Pack,72,2015,Olive Green,12 +Legends of Chima,Crocodile Tribe Pack,72,2015,Pearl Gold,3 +Legends of Chima,Crocodile Tribe Pack,72,2015,Red,3 +Legends of Chima,Crocodile Tribe Pack,72,2015,Reddish Brown,5 +Legends of Chima,Crocodile Tribe Pack,72,2015,Tan,1 +Legends of Chima,Crocodile Tribe Pack,72,2015,Trans-Clear,1 +Legends of Chima,Crocodile Tribe Pack,72,2015,Trans-Neon Orange,1 +Legends of Chima,Ice Bear Mech,39,2015,Light Bluish Gray,3 +Legends of Chima,Ice Bear Mech,39,2015,Dark Bluish Gray,6 +Legends of Chima,Ice Bear Mech,39,2015,Flat Silver,2 +Legends of Chima,Ice Bear Mech,39,2015,White,10 +Legends of Chima,Ice Bear Mech,39,2015,Trans-Light Blue,3 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Trans-Orange,3 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Trans-Red,1 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Dark Bluish Gray,2 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Light Bluish Gray,2 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Pearl Gold,3 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Red,2 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Reddish Brown,1 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Trans-Light Blue,3 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Tan,2 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Trans-Neon Orange,1 +Legends of Chima,Fire vs Ice Weaponry,38,2015,Black,4 +Legends of Chima,Ice Crossbow,27,2015,Trans-Light Blue,2 +Legends of Chima,Ice Crossbow,27,2015,White,2 +Legends of Chima,Ice Crossbow,27,2015,Tan,1 +Legends of Chima,Ice Crossbow,27,2015,Light Bluish Gray,3 +Legends of Chima,Ice Crossbow,27,2015,Dark Tan,1 +Legends of Chima,Ice Crossbow,27,2015,Dark Brown,1 +Legends of Chima,Ice Crossbow,27,2015,Dark Bluish Gray,5 +Legends of Chima,Ice Crossbow,27,2015,Black,5 +Legends of Chima,Fire Catapult,25,2015,Light Bluish Gray,2 +Legends of Chima,Fire Catapult,25,2015,Dark Bluish Gray,3 +Legends of Chima,Fire Catapult,25,2015,Bright Light Orange,1 +Legends of Chima,Fire Catapult,25,2015,Black,2 +Legends of Chima,Fire Catapult,25,2015,Red,3 +Legends of Chima,Fire Catapult,25,2015,Orange,1 +Legends of Chima,Fire Catapult,25,2015,Yellow,1 +Legends of Chima,Fire Catapult,25,2015,Trans-Orange,1 +Legends of Chima,Lundor,10,2015,Yellow,4 +Legends of Chima,Lundor,10,2015,Trans-Orange,2 +Legends of Chima,Lundor,10,2015,Pearl Gold,2 +Legends of Chima,Lundor,10,2015,Bright Light Orange,1 +Legends of Chima,Lundor,10,2015,Black,1 +Legends of Chima,Bulkar,9,2015,Reddish Brown,4 +Legends of Chima,Bulkar,9,2015,Pearl Gold,3 +Legends of Chima,Bulkar,9,2015,Red,1 +Legends of Chima,Bulkar,9,2015,Trans-Orange,1 +Legends of Chima,Gorzan Polybag,8,2015,Red,2 +Legends of Chima,Gorzan Polybag,8,2015,Flat Silver,1 +Legends of Chima,Gorzan Polybag,8,2015,Pearl Gold,1 +Legends of Chima,Gorzan Polybag,8,2015,Black,2 +Legends of Chima,Stealthor foil pack,8,2015,Dark Bluish Gray,3 +Legends of Chima,Stealthor foil pack,8,2015,Dark Blue,1 +Legends of Chima,Iceklaw,8,2015,White,3 +Legends of Chima,Iceklaw,8,2015,Trans-Light Blue,4 +Legends of Chima,Iceklaw,8,2015,Black,1 +Legends of Chima,Stealthor foil pack,8,2015,Trans-Light Blue,3 +Legends of Chima,Gorzan Polybag,8,2015,Trans-Orange,1 +Legends of Chima,Stealthor foil pack,8,2015,Flat Silver,1 +LEGO Brand Store,"LEGO Store Grand Opening Exclusive Set, Mall of America, Bloomington, MN",6,1992,Blue,1 +LEGO Brand Store,"LEGO Store Grand Opening Exclusive Set, Mall of America, Bloomington, MN",6,1992,Red,1 +LEGO Brand Store,"LEGO Store Grand Opening Exclusive Set, Mall of America, Bloomington, MN",6,1992,White,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Black,5 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Bright Green,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Bright Light Yellow,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Chrome Gold,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Dark Pink,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Green,2 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Lavender,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Light Bluish Gray,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Lime,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Medium Dark Flesh,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Reddish Brown,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Tan,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Trans-Clear,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Trans-Dark Pink,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Trans-Light Blue,1 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,White,20 +LEGO Brand Store,Minifigure Wedding Favor Set,90,2016,Yellow,4 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Black,6 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Blue,3 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Bright Light Orange,2 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Dark Tan,1 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Flat Silver,1 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Light Bluish Gray,2 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Lime,1 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Medium Azure,1 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Orange,1 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Red,3 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Reddish Brown,2 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Tan,3 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Trans-Clear,1 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Trans-Light Blue,1 +LEGO Exclusive,LEGO My Travel Companion,36,2017,White,5 +LEGO Exclusive,LEGO My Travel Companion,36,2017,Yellow,2 +LEGO Ideas and CUUSOO,Shinkai 6500 Submarine,412,2011,Black,21 +LEGO Ideas and CUUSOO,Shinkai 6500 Submarine,412,2011,Dark Bluish Gray,15 +LEGO Ideas and CUUSOO,Shinkai 6500 Submarine,412,2011,Light Bluish Gray,12 +LEGO Ideas and CUUSOO,Shinkai 6500 Submarine,412,2011,Orange,4 +LEGO Ideas and CUUSOO,Shinkai 6500 Submarine,412,2011,Red,2 +LEGO Ideas and CUUSOO,Shinkai 6500 Submarine,412,2011,Tan,3 +LEGO Ideas and CUUSOO,Shinkai 6500 Submarine,412,2011,Trans-Clear,3 +LEGO Ideas and CUUSOO,Shinkai 6500 Submarine,412,2011,White,39 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Black,33 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Blue,7 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Bright Light Orange,1 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Brown,1 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Dark Blue,1 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Dark Bluish Gray,23 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Flat Silver,2 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Green,5 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Light Bluish Gray,43 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Metallic Gold,1 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Orange,2 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Pearl Dark Gray,4 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Pearl Gold,5 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Red,12 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Tan,12 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Trans-Clear,1 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Trans-Orange,3 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,White,58 +LEGO Ideas and CUUSOO,LEGO Ideas NASA Apollo Saturn V,1969,2017,Yellow,6 +Legoland,Car and Caravan,49,1974,Black,4 +Legoland,Car and Caravan,49,1974,Blue,6 +Legoland,Car and Caravan,49,1974,Red,1 +Legoland,Car and Caravan,49,1974,Trans-Clear,4 +Legoland,Car and Caravan,49,1974,White,9 +Legoland,LEGOLAND Picture Frame - Billund Edition,121,2013,Black,5 +Legoland,LEGOLAND Picture Frame - Billund Edition,121,2013,Blue,10 +Legoland,LEGOLAND Picture Frame - Billund Edition,121,2013,Dark Bluish Gray,1 +Legoland,LEGOLAND Picture Frame - Billund Edition,121,2013,Green,7 +Legoland,LEGOLAND Picture Frame - Billund Edition,121,2013,Light Bluish Gray,2 +Legoland,LEGOLAND Picture Frame - Billund Edition,121,2013,Orange,2 +Legoland,LEGOLAND Picture Frame - Billund Edition,121,2013,Red,9 +Legoland,LEGOLAND Picture Frame - Billund Edition,121,2013,Tan,1 +Legoland,LEGOLAND Picture Frame - Billund Edition,121,2013,White,13 +Legoland,LEGOLAND Picture Frame - Billund Edition,121,2013,Yellow,6 +Legoland,LEGOLAND Picture Frame - Deutschland Edition,121,2013,Black,5 +Legoland,LEGOLAND Picture Frame - Deutschland Edition,121,2013,Blue,10 +Legoland,LEGOLAND Picture Frame - Deutschland Edition,121,2013,Dark Bluish Gray,1 +Legoland,LEGOLAND Picture Frame - Deutschland Edition,121,2013,Green,7 +Legoland,LEGOLAND Picture Frame - Deutschland Edition,121,2013,Light Bluish Gray,2 +Legoland,LEGOLAND Picture Frame - Deutschland Edition,121,2013,Orange,2 +Legoland,LEGOLAND Picture Frame - Deutschland Edition,121,2013,Red,9 +Legoland,LEGOLAND Picture Frame - Deutschland Edition,121,2013,Tan,1 +Legoland,LEGOLAND Picture Frame - Deutschland Edition,121,2013,White,13 +Legoland,LEGOLAND Picture Frame - Deutschland Edition,121,2013,Yellow,6 +Legoland,LEGOLAND Picture Frame - Florida Edition,121,2013,Black,5 +Legoland,LEGOLAND Picture Frame - Florida Edition,121,2013,Blue,10 +Legoland,LEGOLAND Picture Frame - Florida Edition,121,2013,Dark Bluish Gray,1 +Legoland,LEGOLAND Picture Frame - Florida Edition,121,2013,Green,7 +Legoland,LEGOLAND Picture Frame - Florida Edition,121,2013,Light Bluish Gray,2 +Legoland,LEGOLAND Picture Frame - Florida Edition,121,2013,Orange,2 +Legoland,LEGOLAND Picture Frame - Florida Edition,121,2013,Red,9 +Legoland,LEGOLAND Picture Frame - Florida Edition,121,2013,Tan,1 +Legoland,LEGOLAND Picture Frame - Florida Edition,121,2013,White,13 +Legoland,LEGOLAND Picture Frame - Florida Edition,121,2013,Yellow,6 +Legoland,LEGOLAND Picture Frame - Malaysia Edition,121,2013,Black,5 +Legoland,LEGOLAND Picture Frame - Malaysia Edition,121,2013,Blue,10 +Legoland,LEGOLAND Picture Frame - Malaysia Edition,121,2013,Dark Bluish Gray,1 +Legoland,LEGOLAND Picture Frame - Malaysia Edition,121,2013,Green,7 +Legoland,LEGOLAND Picture Frame - Malaysia Edition,121,2013,Light Bluish Gray,2 +Legoland,LEGOLAND Picture Frame - Malaysia Edition,121,2013,Orange,2 +Legoland,LEGOLAND Picture Frame - Malaysia Edition,121,2013,Red,9 +Legoland,LEGOLAND Picture Frame - Malaysia Edition,121,2013,Tan,1 +Legoland,LEGOLAND Picture Frame - Malaysia Edition,121,2013,White,13 +Legoland,LEGOLAND Picture Frame - Malaysia Edition,121,2013,Yellow,6 +Legoland,LEGOLAND Picture Frame - Windsor Edition,121,2013,Black,5 +Legoland,LEGOLAND Picture Frame - Windsor Edition,121,2013,Blue,10 +Legoland,LEGOLAND Picture Frame - Windsor Edition,121,2013,Dark Bluish Gray,1 +Legoland,LEGOLAND Picture Frame - Windsor Edition,121,2013,Green,7 +Legoland,LEGOLAND Picture Frame - Windsor Edition,121,2013,Light Bluish Gray,2 +Legoland,LEGOLAND Picture Frame - Windsor Edition,121,2013,Orange,2 +Legoland,LEGOLAND Picture Frame - Windsor Edition,121,2013,Red,9 +Legoland,LEGOLAND Picture Frame - Windsor Edition,121,2013,Tan,1 +Legoland,LEGOLAND Picture Frame - Windsor Edition,121,2013,White,13 +Legoland,LEGOLAND Picture Frame - Windsor Edition,121,2013,Yellow,6 +Legoland,Orlando Picture Frame,101,2013,Bright Green,2 +Legoland,Orlando Picture Frame,101,2013,Bright Light Blue,1 +Legoland,Orlando Picture Frame,101,2013,Bright Pink,1 +Legoland,Orlando Picture Frame,101,2013,Dark Bluish Gray,1 +Legoland,Orlando Picture Frame,101,2013,Dark Green,4 +Legoland,Orlando Picture Frame,101,2013,Green,15 +Legoland,Orlando Picture Frame,101,2013,Light Bluish Gray,2 +Legoland,Orlando Picture Frame,101,2013,Red,3 +Legoland,Orlando Picture Frame,101,2013,Reddish Brown,1 +Legoland,Orlando Picture Frame,101,2013,Tan,2 +Legoland,Orlando Picture Frame,101,2013,White,2 +Legoland,Orlando Picture Frame,101,2013,Yellow,5 +Legoland Parks,Pelican Sculpture (Legoland California),83,2000,Black,3 +Legoland Parks,Pelican Sculpture (Legoland California),83,2000,Dark Gray,2 +Legoland Parks,Pelican Sculpture (Legoland California),83,2000,Light Gray,1 +Legoland Parks,Pelican Sculpture (Legoland California),83,2000,White,21 +Legoland Parks,Pelican Sculpture (Legoland California),83,2000,Yellow,13 +Legoland Parks,Dragon Sculpture (Legoland California),70,2000,Black,1 +Legoland Parks,Dragon Sculpture (Legoland California),70,2000,Green,13 +Legoland Parks,Dragon Sculpture (Legoland California),70,2000,Red,3 +Legoland Parks,Dragon Sculpture (Legoland California),70,2000,White,4 +Legoland Parks,Dragon Sculpture (Legoland California),70,2000,Yellow,4 +Legoland Parks,LEGOLAND Train,210,2016,[No Color],1 +Legoland Parks,LEGOLAND Train,210,2016,Black,9 +Legoland Parks,LEGOLAND Train,210,2016,Blue,10 +Legoland Parks,LEGOLAND Train,210,2016,Bright Light Orange,1 +Legoland Parks,LEGOLAND Train,210,2016,Dark Azure,1 +Legoland Parks,LEGOLAND Train,210,2016,Dark Blue,1 +Legoland Parks,LEGOLAND Train,210,2016,Dark Bluish Gray,2 +Legoland Parks,LEGOLAND Train,210,2016,Dark Brown,1 +Legoland Parks,LEGOLAND Train,210,2016,Dark Purple,2 +Legoland Parks,LEGOLAND Train,210,2016,Dark Red,1 +Legoland Parks,LEGOLAND Train,210,2016,Dark Tan,1 +Legoland Parks,LEGOLAND Train,210,2016,Green,9 +Legoland Parks,LEGOLAND Train,210,2016,Light Bluish Gray,7 +Legoland Parks,LEGOLAND Train,210,2016,Red,17 +Legoland Parks,LEGOLAND Train,210,2016,Reddish Brown,1 +Legoland Parks,LEGOLAND Train,210,2016,Trans-Clear,2 +Legoland Parks,LEGOLAND Train,210,2016,White,3 +Legoland Parks,LEGOLAND Train,210,2016,Yellow,12 +Life On Mars,Aero Tube Hanger,716,2001,Black,30 +Life On Mars,Aero Tube Hanger,716,2001,Blue,10 +Life On Mars,Aero Tube Hanger,716,2001,Dark Gray,31 +Life On Mars,Aero Tube Hanger,716,2001,Dark Turquoise,4 +Life On Mars,Aero Tube Hanger,716,2001,Flat Silver,1 +Life On Mars,Aero Tube Hanger,716,2001,Glow In Dark Opaque,1 +Life On Mars,Aero Tube Hanger,716,2001,Green,3 +Life On Mars,Aero Tube Hanger,716,2001,Light Gray,43 +Life On Mars,Aero Tube Hanger,716,2001,Medium Green,2 +Life On Mars,Aero Tube Hanger,716,2001,Orange,4 +Life On Mars,Aero Tube Hanger,716,2001,Purple,2 +Life On Mars,Aero Tube Hanger,716,2001,Red,12 +Life On Mars,Aero Tube Hanger,716,2001,Sand Blue,6 +Life On Mars,Aero Tube Hanger,716,2001,Sand Green,2 +Life On Mars,Aero Tube Hanger,716,2001,Sand Purple,10 +Life On Mars,Aero Tube Hanger,716,2001,Sand Red,6 +Life On Mars,Aero Tube Hanger,716,2001,Tan,5 +Life On Mars,Aero Tube Hanger,716,2001,Trans-Black,2 +Life On Mars,Aero Tube Hanger,716,2001,Trans-Dark Blue,1 +Life On Mars,Aero Tube Hanger,716,2001,Trans-Neon Green,5 +Life On Mars,Aero Tube Hanger,716,2001,Trans-Neon Orange,4 +Life On Mars,Aero Tube Hanger,716,2001,Trans-Red,1 +Life On Mars,Aero Tube Hanger,716,2001,White,1 +Life On Mars,Excavation Searcher,467,2001,Pearl Light Gray,1 +Life On Mars,Excavation Searcher,467,2001,Red,1 +Life On Mars,Excavation Searcher,467,2001,Sand Purple,1 +Life On Mars,Excavation Searcher,467,2001,Tan,23 +Life On Mars,Excavation Searcher,467,2001,Trans-Black,1 +Life On Mars,Excavation Searcher,467,2001,Trans-Dark Blue,1 +Life On Mars,Excavation Searcher,467,2001,Trans-Neon Green,1 +Life On Mars,Excavation Searcher,467,2001,Trans-Neon Orange,2 +Life On Mars,Excavation Searcher,467,2001,Trans-Red,3 +Life On Mars,Excavation Searcher,467,2001,Yellow,1 +Life On Mars,Excavation Searcher,467,2001,Black,20 +Life On Mars,Excavation Searcher,467,2001,Orange,7 +Life On Mars,Excavation Searcher,467,2001,Brown,12 +Life On Mars,Excavation Searcher,467,2001,Dark Gray,21 +Life On Mars,Excavation Searcher,467,2001,Dark Turquoise,5 +Life On Mars,Excavation Searcher,467,2001,Light Gray,30 +Life On Mars,Solar Explorer,249,2001,Trans-Black,1 +Life On Mars,Solar Explorer,249,2001,Orange,1 +Life On Mars,Solar Explorer,249,2001,Medium Blue,3 +Life On Mars,Solar Explorer,249,2001,Light Gray,9 +Life On Mars,Solar Explorer,249,2001,Dark Gray,13 +Life On Mars,Solar Explorer,249,2001,Chrome Blue,2 +Life On Mars,Solar Explorer,249,2001,Blue,8 +Life On Mars,Solar Explorer,249,2001,Black,21 +Life On Mars,Solar Explorer,249,2001,White,27 +Life On Mars,Solar Explorer,249,2001,Yellow,3 +Life On Mars,Solar Explorer,249,2001,Trans-Red,2 +Life On Mars,Solar Explorer,249,2001,Trans-Neon Orange,2 +Life On Mars,Solar Explorer,249,2001,Trans-Green,1 +Life On Mars,Red Planet Protector,193,2001,Dark Gray,21 +Life On Mars,Red Planet Protector,193,2001,Blue,19 +Life On Mars,Red Planet Protector,193,2001,Black,3 +Life On Mars,Red Planet Protector,193,2001,Trans-Neon Orange,3 +Life On Mars,Red Planet Protector,193,2001,Sand Blue,6 +Life On Mars,Red Planet Protector,193,2001,Light Gray,22 +Life On Mars,Red Planet Protector,193,2001,Dark Turquoise,2 +Life On Mars,Red Planet Protector,193,2001,Trans-Black,1 +Life On Mars,Recon-Mech RP,189,2001,Red,19 +Life On Mars,Recon-Mech RP,189,2001,Sand Red,8 +Life On Mars,Recon-Mech RP,189,2001,Trans-Black,1 +Life On Mars,Recon-Mech RP,189,2001,Trans-Dark Blue,1 +Life On Mars,Recon-Mech RP,189,2001,Trans-Neon Green,3 +Life On Mars,Recon-Mech RP,189,2001,Trans-Neon Orange,1 +Life On Mars,Recon-Mech RP,189,2001,White,2 +Life On Mars,Recon-Mech RP,189,2001,Yellow,1 +Life On Mars,Recon-Mech RP,189,2001,Black,8 +Life On Mars,Recon-Mech RP,189,2001,Dark Gray,9 +Life On Mars,Recon-Mech RP,189,2001,Dark Turquoise,2 +Life On Mars,Recon-Mech RP,189,2001,Light Gray,19 +Life On Mars,T3-Trike,99,2001,Trans-Black,1 +Life On Mars,T3-Trike,99,2001,Trans-Clear,1 +Life On Mars,T3-Trike,99,2001,Yellow,1 +Life On Mars,T3-Trike,99,2001,White,14 +Life On Mars,T3-Trike,99,2001,Chrome Blue,1 +Life On Mars,T3-Trike,99,2001,Light Gray,10 +Life On Mars,T3-Trike,99,2001,Dark Gray,6 +Life On Mars,T3-Trike,99,2001,Medium Blue,2 +Life On Mars,T3-Trike,99,2001,Trans-Red,1 +Life On Mars,T3-Trike,99,2001,Blue,3 +Life On Mars,T3-Trike,99,2001,Black,11 +Life On Mars,Red Planet Cruiser,73,2001,Light Gray,9 +Life On Mars,Red Planet Cruiser,73,2001,Black,3 +Life On Mars,Red Planet Cruiser,73,2001,Dark Gray,13 +Life On Mars,Red Planet Cruiser,73,2001,Dark Turquoise,2 +Life On Mars,Red Planet Cruiser,73,2001,Green,4 +Life On Mars,Red Planet Cruiser,73,2001,Lime,2 +Life On Mars,Red Planet Cruiser,73,2001,Orange,1 +Life On Mars,Red Planet Cruiser,73,2001,Sand Green,3 +Life On Mars,Red Planet Cruiser,73,2001,Trans-Neon Orange,3 +Life On Mars,Alien Encounter,42,2001,Yellow,1 +Life On Mars,Alien Encounter,42,2001,Light Gray,9 +Life On Mars,Alien Encounter,42,2001,Black,7 +Life On Mars,Alien Encounter,42,2001,Blue,1 +Life On Mars,Alien Encounter,42,2001,Dark Gray,2 +Life On Mars,Alien Encounter,42,2001,Dark Turquoise,2 +Life On Mars,Alien Encounter,42,2001,Green,2 +Life On Mars,Alien Encounter,42,2001,Orange,2 +Life On Mars,Alien Encounter,42,2001,Sand Green,1 +Life On Mars,Alien Encounter,42,2001,Trans-Dark Blue,1 +Life On Mars,Alien Encounter,42,2001,Trans-Neon Green,1 +Life On Mars,Alien Encounter,42,2001,Trans-Neon Orange,1 +Life On Mars,Alien Encounter,42,2001,White,1 +Life On Mars,Mono Jet,34,2001,Light Gray,4 +Life On Mars,Mono Jet,34,2001,Trans-Red,1 +Life On Mars,Mono Jet,34,2001,White,7 +Life On Mars,Mono Jet,34,2001,Black,6 +Life On Mars,Mono Jet,34,2001,Chrome Blue,1 +Life On Mars,Mono Jet,34,2001,Dark Gray,4 +Life On Mars,Mono Jet,34,2001,Blue,2 +Life On Mars,Mono Jet,34,2001,Medium Blue,2 +Life On Mars,Mono Jet,34,2001,Yellow,1 +Life On Mars,Worker Robot,30,2001,Dark Gray,4 +Life On Mars,Worker Robot,30,2001,Black,3 +Life On Mars,Worker Robot,30,2001,Brown,2 +Life On Mars,Worker Robot,30,2001,Dark Turquoise,2 +Life On Mars,Worker Robot,30,2001,Orange,2 +Life On Mars,Worker Robot,30,2001,Tan,3 +Life On Mars,Rover,29,2001,Yellow,1 +Life On Mars,Rover,29,2001,White,4 +Life On Mars,Rover,29,2001,Black,4 +Life On Mars,Rover,29,2001,Trans-Dark Blue,1 +Life On Mars,Rover,29,2001,Light Gray,6 +Life On Mars,Rover,29,2001,Blue,2 +Life On Mars,Jet Scooter,24,2001,Dark Turquoise,2 +Life On Mars,Jet Scooter,24,2001,Dark Gray,3 +Life On Mars,Jet Scooter,24,2001,Blue,2 +Life On Mars,Jet Scooter,24,2001,Black,3 +Life On Mars,Jet Scooter,24,2001,Sand Blue,1 +Life On Mars,Jet Scooter,24,2001,Trans-Neon Orange,1 +Life On Mars,Jet Scooter,24,2001,Trans-Dark Blue,1 +Life On Mars,Jet Scooter,24,2001,Orange,1 +Life On Mars,Jet Scooter,24,2001,Light Gray,3 +Life On Mars,Double Hover,21,2001,Black,3 +Life On Mars,Double Hover,21,2001,Blue,1 +Life On Mars,Double Hover,21,2001,Dark Gray,4 +Life On Mars,Double Hover,21,2001,Dark Turquoise,2 +Life On Mars,Double Hover (Kabaya Promotional),21,2001,Blue,1 +Life On Mars,Double Hover (Kabaya Promotional),21,2001,Sand Green,1 +Life On Mars,Double Hover (Kabaya Promotional),21,2001,Orange,2 +Life On Mars,Double Hover (Kabaya Promotional),21,2001,Light Gray,3 +Life On Mars,Double Hover (Kabaya Promotional),21,2001,Green,1 +Life On Mars,Double Hover (Kabaya Promotional),21,2001,Dark Turquoise,2 +Life On Mars,Double Hover (Kabaya Promotional),21,2001,Dark Gray,4 +Life On Mars,Double Hover (Kabaya Promotional),21,2001,Black,3 +Life On Mars,Double Hover,21,2001,Sand Green,1 +Life On Mars,Double Hover,21,2001,Orange,2 +Life On Mars,Double Hover,21,2001,Light Gray,3 +Life On Mars,Double Hover,21,2001,Green,1 +Life On Mars,Vega,5,2001,Dark Turquoise,2 +Life On Mars,Vega,5,2001,Orange,2 +Life On Mars,Guard,5,2001,Dark Turquoise,2 +Life On Mars,Altair,5,2001,Dark Turquoise,2 +Life On Mars,Mizar,5,2001,Dark Turquoise,2 +Life On Mars,Mizar,5,2001,Sand Purple,2 +Life On Mars,Guard,5,2001,Blue,2 +Life On Mars,Altair,5,2001,Lime,2 +Lion Knights,King's Castle,679,1984,Brown,4 +Lion Knights,King's Castle,679,1984,Blue,5 +Lion Knights,King's Castle,679,1984,Black,28 +Lion Knights,King's Castle,679,1984,Yellow,6 +Lion Knights,King's Castle,679,1984,White,7 +Lion Knights,King's Castle,679,1984,Red,10 +Lion Knights,King's Castle,679,1984,Light Gray,49 +Lion Knights,King's Castle,679,1984,Green,2 +Lion Knights,King's Castle,679,1984,Dark Gray,4 +Lion Knights,Siege Tower,216,1984,Red,6 +Lion Knights,Siege Tower,216,1984,White,3 +Lion Knights,Siege Tower,216,1984,Yellow,1 +Lion Knights,Siege Tower,216,1984,Green,1 +Lion Knights,Siege Tower,216,1984,Black,34 +Lion Knights,Siege Tower,216,1984,Blue,1 +Lion Knights,Siege Tower,216,1984,Brown,5 +Lion Knights,Siege Tower,216,1984,Dark Gray,4 +Lion Knights,Siege Tower,216,1984,Light Gray,19 +Lion Knights,Blacksmith Shop,93,1984,Black,12 +Lion Knights,Blacksmith Shop,93,1984,Blue,5 +Lion Knights,Blacksmith Shop,93,1984,Brown,3 +Lion Knights,Blacksmith Shop,93,1984,Yellow,2 +Lion Knights,Blacksmith Shop,93,1984,Red,10 +Lion Knights,Blacksmith Shop,93,1984,Light Gray,15 +Lion Knights,Blacksmith Shop,93,1984,Green,2 +Lion Knights,Blacksmith Shop,93,1984,Dark Gray,1 +Lion Knights,Horse Cart,43,1984,Yellow,2 +Lion Knights,Horse Cart,43,1984,Light Gray,1 +Lion Knights,Horse Cart,43,1984,Dark Gray,4 +Lion Knights,Horse Cart,43,1984,Brown,5 +Lion Knights,Horse Cart,43,1984,Blue,1 +Lion Knights,Horse Cart,43,1984,Black,12 +Lion Knights,Horse Cart,43,1984,Red,5 +Lion Knights,Jousting Knights,37,1984,White,4 +Lion Knights,Jousting Knights,37,1984,Yellow,1 +Lion Knights,Jousting Knights,37,1984,Black,8 +Lion Knights,Jousting Knights,37,1984,Blue,6 +Lion Knights,Jousting Knights,37,1984,Brown,1 +Lion Knights,Jousting Knights,37,1984,Dark Gray,3 +Lion Knights,Jousting Knights,37,1984,Light Gray,2 +Lion Knights,Jousting Knights,37,1984,Red,5 +Lion Knights,Supply Wagon,36,1984,Black,9 +Lion Knights,Supply Wagon,36,1984,Blue,2 +Lion Knights,Supply Wagon,36,1984,Brown,3 +Lion Knights,Supply Wagon,36,1984,Dark Gray,2 +Lion Knights,Supply Wagon,36,1984,Light Gray,3 +Lion Knights,Supply Wagon,36,1984,Red,3 +Lion Knights,Supply Wagon,36,1984,White,3 +Lion Knights,Supply Wagon,36,1984,Yellow,1 +Lion Knights,Knight's Challenge,168,1989,Black,15 +Lion Knights,Knight's Challenge,168,1989,Blue,13 +Lion Knights,Knight's Challenge,168,1989,Brown,10 +Lion Knights,Knight's Challenge,168,1989,Dark Gray,4 +Lion Knights,Knight's Challenge,168,1989,Green,5 +Lion Knights,Knight's Challenge,168,1989,Light Gray,8 +Lion Knights,Knight's Challenge,168,1989,Red,22 +Lion Knights,Knight's Challenge,168,1989,White,6 +Lion Knights,Knight's Challenge,168,1989,Yellow,19 +M:Tron,Mega Core Magnetizer,509,1990,Yellow,1 +M:Tron,Mega Core Magnetizer,509,1990,Black,76 +M:Tron,Mega Core Magnetizer,509,1990,Light Gray,11 +M:Tron,Mega Core Magnetizer,509,1990,Red,61 +M:Tron,Mega Core Magnetizer,509,1990,Trans-Neon Green,7 +M:Tron,Mega Core Magnetizer,509,1990,White,6 +M:Tron,Stellar Recon Voyager,233,1990,Black,49 +M:Tron,Stellar Recon Voyager,233,1990,White,3 +M:Tron,Stellar Recon Voyager,233,1990,Trans-Neon Green,9 +M:Tron,Stellar Recon Voyager,233,1990,Red,36 +M:Tron,Stellar Recon Voyager,233,1990,Yellow,1 +M:Tron,Stellar Recon Voyager,233,1990,Light Gray,9 +M:Tron,Particle Ionizer,192,1990,Black,43 +M:Tron,Particle Ionizer,192,1990,Light Gray,11 +M:Tron,Particle Ionizer,192,1990,Red,41 +M:Tron,Particle Ionizer,192,1990,Trans-Neon Green,6 +M:Tron,Particle Ionizer,192,1990,White,2 +M:Tron,Particle Ionizer,192,1990,Yellow,1 +M:Tron,Celestial Forager,92,1990,Yellow,1 +M:Tron,Celestial Forager,92,1990,Light Gray,4 +M:Tron,Celestial Forager,92,1990,Red,14 +M:Tron,Celestial Forager,92,1990,Trans-Neon Green,4 +M:Tron,Celestial Forager,92,1990,White,3 +M:Tron,Celestial Forager,92,1990,Black,27 +M:Tron,Vector Detector,62,1990,Black,17 +M:Tron,Vector Detector,62,1990,Light Gray,2 +M:Tron,Vector Detector,62,1990,Red,15 +M:Tron,Vector Detector,62,1990,Trans-Neon Green,6 +M:Tron,Vector Detector,62,1990,White,2 +M:Tron,Vector Detector,62,1990,Yellow,1 +M:Tron,Beacon Tracer,40,1990,Light Gray,1 +M:Tron,Beacon Tracer,40,1990,Red,8 +M:Tron,Beacon Tracer,40,1990,Trans-Neon Green,5 +M:Tron,Beacon Tracer,40,1990,White,2 +M:Tron,Beacon Tracer,40,1990,Yellow,1 +M:Tron,Beacon Tracer,40,1990,Black,9 +M:Tron,Pulsar Charger,26,1990,White,1 +M:Tron,Pulsar Charger,26,1990,Trans-Neon Green,4 +M:Tron,Pulsar Charger,26,1990,Red,5 +M:Tron,Pulsar Charger,26,1990,Black,11 +M:Tron,Pulsar Charger,26,1990,Yellow,1 +M:Tron,Secret Space Voyager,254,1991,Yellow,1 +M:Tron,Secret Space Voyager,254,1991,Black,43 +M:Tron,Secret Space Voyager,254,1991,Light Gray,6 +M:Tron,Secret Space Voyager,254,1991,Red,48 +M:Tron,Secret Space Voyager,254,1991,Trans-Neon Green,7 +M:Tron,Secret Space Voyager,254,1991,White,4 +M:Tron,Mobile Satellite Up-Link,31,1991,Red,4 +M:Tron,Mobile Satellite Up-Link,31,1991,Trans-Neon Green,3 +M:Tron,Mobile Satellite Up-Link,31,1991,White,2 +M:Tron,Mobile Satellite Up-Link,31,1991,Yellow,1 +M:Tron,Mobile Satellite Up-Link,31,1991,Light Gray,2 +M:Tron,Mobile Satellite Up-Link,31,1991,Black,9 +Mars Mission,MB-01 Eagle Command Base,763,2007,Dark Bluish Gray,34 +Mars Mission,MB-01 Eagle Command Base,763,2007,Light Bluish Gray,31 +Mars Mission,MB-01 Eagle Command Base,763,2007,Lime,2 +Mars Mission,MB-01 Eagle Command Base,763,2007,Metallic Gold,1 +Mars Mission,MB-01 Eagle Command Base,763,2007,Orange,9 +Mars Mission,MB-01 Eagle Command Base,763,2007,Red,1 +Mars Mission,MB-01 Eagle Command Base,763,2007,Tan,1 +Mars Mission,MB-01 Eagle Command Base,763,2007,Trans-Clear,2 +Mars Mission,MB-01 Eagle Command Base,763,2007,Trans-Dark Blue,3 +Mars Mission,MB-01 Eagle Command Base,763,2007,Trans-Green,2 +Mars Mission,MB-01 Eagle Command Base,763,2007,Trans-Neon Green,4 +Mars Mission,MB-01 Eagle Command Base,763,2007,Trans-Orange,5 +Mars Mission,MB-01 Eagle Command Base,763,2007,Trans-Red,2 +Mars Mission,MB-01 Eagle Command Base,763,2007,White,81 +Mars Mission,MB-01 Eagle Command Base,763,2007,Yellow,5 +Mars Mission,MB-01 Eagle Command Base,763,2007,Black,81 +Mars Mission,MB-01 Eagle Command Base,763,2007,Blue,8 +Mars Mission,MB-01 Eagle Command Base,763,2007,Bright Green,1 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Black,43 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Yellow,5 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,White,42 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Trans-Orange,4 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Trans-Neon Green,2 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Trans-Medium Blue,1 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Trans-Dark Blue,3 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Trans-Green,2 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Red,3 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Pearl Dark Gray,1 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Orange,6 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Metallic Gold,1 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Lime,2 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Light Bluish Gray,38 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Flat Silver,1 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Dark Bluish Gray,35 +Mars Mission,MT-101 Armored Drilling Unit,634,2007,Blue,3 +Mars Mission,MX-71 Recon Dropship,434,2007,Trans-Green,2 +Mars Mission,MX-71 Recon Dropship,434,2007,Trans-Dark Blue,3 +Mars Mission,MX-71 Recon Dropship,434,2007,Tan,1 +Mars Mission,MX-71 Recon Dropship,434,2007,Red,1 +Mars Mission,MX-71 Recon Dropship,434,2007,Orange,8 +Mars Mission,MX-71 Recon Dropship,434,2007,Metallic Gold,1 +Mars Mission,MX-71 Recon Dropship,434,2007,Lime,2 +Mars Mission,MX-71 Recon Dropship,434,2007,Light Bluish Gray,22 +Mars Mission,MX-71 Recon Dropship,434,2007,Dark Bluish Gray,13 +Mars Mission,MX-71 Recon Dropship,434,2007,Blue,5 +Mars Mission,MX-71 Recon Dropship,434,2007,Yellow,2 +Mars Mission,MX-71 Recon Dropship,434,2007,White,42 +Mars Mission,MX-71 Recon Dropship,434,2007,Trans-Orange,3 +Mars Mission,MX-71 Recon Dropship,434,2007,Trans-Neon Green,4 +Mars Mission,MX-71 Recon Dropship,434,2007,Black,53 +Mars Mission,ETX Alien Mothership Assault,433,2007,Black,48 +Mars Mission,ETX Alien Mothership Assault,433,2007,Yellow,2 +Mars Mission,ETX Alien Mothership Assault,433,2007,White,23 +Mars Mission,ETX Alien Mothership Assault,433,2007,Trans-Red,1 +Mars Mission,ETX Alien Mothership Assault,433,2007,Trans-Orange,1 +Mars Mission,ETX Alien Mothership Assault,433,2007,Trans-Neon Green,6 +Mars Mission,ETX Alien Mothership Assault,433,2007,Trans-Green,2 +Mars Mission,ETX Alien Mothership Assault,433,2007,Trans-Dark Blue,2 +Mars Mission,ETX Alien Mothership Assault,433,2007,Trans-Clear,2 +Mars Mission,ETX Alien Mothership Assault,433,2007,Red,5 +Mars Mission,ETX Alien Mothership Assault,433,2007,Orange,3 +Mars Mission,ETX Alien Mothership Assault,433,2007,Lime,5 +Mars Mission,ETX Alien Mothership Assault,433,2007,Metallic Gold,1 +Mars Mission,ETX Alien Mothership Assault,433,2007,Light Bluish Gray,22 +Mars Mission,ETX Alien Mothership Assault,433,2007,Green,1 +Mars Mission,ETX Alien Mothership Assault,433,2007,Dark Bluish Gray,23 +Mars Mission,ETX Alien Mothership Assault,433,2007,Bright Green,1 +Mars Mission,ETX Alien Mothership Assault,433,2007,Blue,3 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Metallic Gold,1 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Orange,5 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Red,2 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Reddish Brown,1 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Trans-Dark Blue,2 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Trans-Green,2 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Trans-Neon Green,4 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Trans-Orange,4 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Yellow,1 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Black,36 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,White,35 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,[No Color],1 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Blue,4 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Dark Bluish Gray,15 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Light Bluish Gray,24 +Mars Mission,MT-51 Claw-Tank Ambush,373,2007,Lime,2 +Mars Mission,ETX Alien Strike,245,2007,Black,35 +Mars Mission,ETX Alien Strike,245,2007,Blue,2 +Mars Mission,ETX Alien Strike,245,2007,Dark Bluish Gray,18 +Mars Mission,ETX Alien Strike,245,2007,Light Bluish Gray,15 +Mars Mission,ETX Alien Strike,245,2007,Lime,3 +Mars Mission,ETX Alien Strike,245,2007,Metallic Gold,1 +Mars Mission,ETX Alien Strike,245,2007,Orange,2 +Mars Mission,ETX Alien Strike,245,2007,Red,2 +Mars Mission,ETX Alien Strike,245,2007,Trans-Dark Blue,1 +Mars Mission,ETX Alien Strike,245,2007,Trans-Orange,2 +Mars Mission,ETX Alien Strike,245,2007,White,15 +Mars Mission,ETX Alien Strike,245,2007,Yellow,1 +Mars Mission,ETX Alien Strike,245,2007,Trans-Red,1 +Mars Mission,ETX Alien Strike,245,2007,Trans-Green,2 +Mars Mission,ETX Alien Strike,245,2007,Trans-Neon Green,5 +Mars Mission,MT-31 Trike,94,2007,White,14 +Mars Mission,MT-31 Trike,94,2007,Trans-Dark Blue,1 +Mars Mission,MT-31 Trike,94,2007,Orange,4 +Mars Mission,MT-31 Trike,94,2007,Metallic Gold,1 +Mars Mission,MT-31 Trike,94,2007,Light Bluish Gray,8 +Mars Mission,MT-31 Trike,94,2007,Dark Bluish Gray,1 +Mars Mission,MT-31 Trike,94,2007,Blue,3 +Mars Mission,MT-31 Trike,94,2007,Black,16 +Mars Mission,MT-31 Trike,94,2007,Trans-Orange,2 +Mars Mission,MT-31 Trike,94,2007,Trans-Neon Green,1 +Mars Mission,MT-31 Trike,94,2007,Trans-Green,2 +Mars Mission,MX-11 Astro Fighter,56,2007,Black,4 +Mars Mission,MX-11 Astro Fighter,56,2007,Blue,1 +Mars Mission,MX-11 Astro Fighter,56,2007,Dark Bluish Gray,2 +Mars Mission,MX-11 Astro Fighter,56,2007,Light Bluish Gray,3 +Mars Mission,MX-11 Astro Fighter,56,2007,Metallic Gold,1 +Mars Mission,MX-11 Astro Fighter,56,2007,Orange,3 +Mars Mission,MX-11 Astro Fighter,56,2007,Trans-Dark Blue,2 +Mars Mission,MX-11 Astro Fighter,56,2007,White,14 +Mars Mission,MX-11 Astro Fighter,56,2007,Yellow,1 +Mars Mission,MX-11 Astro Fighter,56,2007,Trans-Orange,1 +Mars Mission,MX-11 Astro Fighter,56,2007,Trans-Neon Green,1 +Mars Mission,MX-11 Astro Fighter,56,2007,Trans-Green,2 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Dark Bluish Gray,13 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Blue,9 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Black,55 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Trans-Orange,3 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Yellow,3 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,White,60 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Trans-Red,3 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Trans-Neon Green,3 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Trans-Green,4 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Trans-Dark Blue,5 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Trans-Clear,1 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Tan,2 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Red,8 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Orange,8 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Metallic Gold,1 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Lime,4 +Mars Mission,MX-81 Hypersonic Operations Aircraft,794,2008,Light Bluish Gray,17 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Trans-Neon Orange,1 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Trans-Orange,2 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Trans-Red,3 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Yellow,3 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,White,53 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Black,53 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Blue,6 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Dark Bluish Gray,20 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Light Bluish Gray,24 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Lime,5 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Metallic Gold,1 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Orange,10 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Pearl Light Gray,2 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Red,3 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Tan,1 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Trans-Dark Blue,4 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Trans-Green,2 +Mars Mission,MT-201 Ultra-Drill Walker,757,2008,Trans-Neon Green,4 +Mars Mission,MT-61 Crystal Reaper,598,2008,Light Bluish Gray,18 +Mars Mission,MT-61 Crystal Reaper,598,2008,Dark Bluish Gray,13 +Mars Mission,MT-61 Crystal Reaper,598,2008,Blue,8 +Mars Mission,MT-61 Crystal Reaper,598,2008,Trans-Orange,3 +Mars Mission,MT-61 Crystal Reaper,598,2008,Trans-Neon Green,6 +Mars Mission,MT-61 Crystal Reaper,598,2008,Trans-Green,4 +Mars Mission,MT-61 Crystal Reaper,598,2008,Trans-Dark Blue,2 +Mars Mission,MT-61 Crystal Reaper,598,2008,Trans-Clear,2 +Mars Mission,MT-61 Crystal Reaper,598,2008,Red,6 +Mars Mission,MT-61 Crystal Reaper,598,2008,White,58 +Mars Mission,MT-61 Crystal Reaper,598,2008,Yellow,3 +Mars Mission,MT-61 Crystal Reaper,598,2008,Tan,1 +Mars Mission,MT-61 Crystal Reaper,598,2008,Black,49 +Mars Mission,MT-61 Crystal Reaper,598,2008,Pearl Light Gray,2 +Mars Mission,MT-61 Crystal Reaper,598,2008,Orange,12 +Mars Mission,MT-61 Crystal Reaper,598,2008,Metallic Gold,1 +Mars Mission,MT-61 Crystal Reaper,598,2008,Lime,2 +Mars Mission,ETX Alien Infiltrator,328,2008,Trans-Green,4 +Mars Mission,ETX Alien Infiltrator,328,2008,Trans-Neon Green,1 +Mars Mission,ETX Alien Infiltrator,328,2008,Blue,3 +Mars Mission,ETX Alien Infiltrator,328,2008,Black,45 +Mars Mission,ETX Alien Infiltrator,328,2008,Trans-Orange,1 +Mars Mission,ETX Alien Infiltrator,328,2008,Trans-Red,1 +Mars Mission,ETX Alien Infiltrator,328,2008,White,26 +Mars Mission,ETX Alien Infiltrator,328,2008,Yellow,2 +Mars Mission,ETX Alien Infiltrator,328,2008,Orange,6 +Mars Mission,ETX Alien Infiltrator,328,2008,Metallic Gold,1 +Mars Mission,ETX Alien Infiltrator,328,2008,Light Bluish Gray,5 +Mars Mission,ETX Alien Infiltrator,328,2008,Lime,8 +Mars Mission,ETX Alien Infiltrator,328,2008,Trans-Dark Blue,2 +Mars Mission,ETX Alien Infiltrator,328,2008,Dark Bluish Gray,15 +Mars Mission,ETX Alien Infiltrator,328,2008,Red,9 +Mars Mission,MX-41 Switch Fighter,234,2008,Red,6 +Mars Mission,MX-41 Switch Fighter,234,2008,Orange,4 +Mars Mission,MX-41 Switch Fighter,234,2008,Metallic Gold,1 +Mars Mission,MX-41 Switch Fighter,234,2008,Black,26 +Mars Mission,MX-41 Switch Fighter,234,2008,Green,1 +Mars Mission,MX-41 Switch Fighter,234,2008,Dark Bluish Gray,6 +Mars Mission,MX-41 Switch Fighter,234,2008,Blue,3 +Mars Mission,MX-41 Switch Fighter,234,2008,Trans-Orange,3 +Mars Mission,MX-41 Switch Fighter,234,2008,Trans-Dark Blue,1 +Mars Mission,MX-41 Switch Fighter,234,2008,Trans-Green,3 +Mars Mission,MX-41 Switch Fighter,234,2008,Lime,2 +Mars Mission,MX-41 Switch Fighter,234,2008,Trans-Neon Green,5 +Mars Mission,MX-41 Switch Fighter,234,2008,White,23 +Mars Mission,MX-41 Switch Fighter,234,2008,Yellow,4 +Mars Mission,MX-41 Switch Fighter,234,2008,Light Bluish Gray,7 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Red,1 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,[No Color],1 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Trans-Dark Blue,1 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Trans-Black,1 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Orange,4 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Metallic Gold,1 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Light Bluish Gray,8 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Dark Bluish Gray,2 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Blue,1 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Yellow,1 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Black,16 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Trans-Neon Green,2 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Trans-Green,2 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,White,25 +Mars Mission,MT-21 Mobile Mining Unit,129,2008,Trans-Orange,1 +Mars Mission,Crystal Hawk,26,2008,Yellow,1 +Mars Mission,Crystal Hawk,26,2008,White,10 +Mars Mission,Crystal Hawk,26,2008,Trans-Dark Blue,1 +Mars Mission,Crystal Hawk,26,2008,Orange,1 +Mars Mission,Crystal Hawk,26,2008,Metallic Gold,1 +Mars Mission,Crystal Hawk,26,2008,Blue,1 +Mars Mission,Crystal Hawk,26,2008,Black,2 +Mars Mission,Mini Robot,23,2008,White,8 +Mars Mission,Mini Robot,23,2008,Dark Bluish Gray,3 +Mars Mission,Mini Robot,23,2008,Metallic Gold,1 +Mars Mission,Mini Robot,23,2008,Orange,1 +Mars Mission,Mini Robot,23,2008,Trans-Neon Green,2 +Mars Mission,Mini Robot,23,2008,Yellow,1 +Mars Mission,Mini Robot,23,2008,Black,2 +Mars Mission,Alien Jet,21,2008,Black,5 +Mars Mission,Alien Jet,21,2008,Lime,1 +Mars Mission,Alien Jet,21,2008,Light Bluish Gray,1 +Mars Mission,Alien Jet,21,2008,Dark Bluish Gray,2 +Mars Mission,Alien Jet,21,2008,Trans-Red,1 +Mars Mission,Alien Jet,21,2008,Trans-Neon Green,1 +Mars Mission,Alien Jet,21,2008,Trans-Green,2 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Orange,2 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Black,25 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Blue,3 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Dark Bluish Gray,21 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Dark Orange,2 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Dark Tan,7 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Flat Silver,1 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Green,1 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Light Bluish Gray,28 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Light Flesh,2 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Pearl Gold,1 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Red,7 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Reddish Brown,6 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Tan,26 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Trans-Clear,2 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Trans-Light Blue,1 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Trans-Neon Orange,1 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Trans-Orange,1 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,White,15 +Marvel,Rhino and Sandman Supervillain Team-up,385,2015,Yellow,8 +Marvel,Ant-Man Final Battle,194,2015,Black,26 +Marvel,Ant-Man Final Battle,194,2015,Blue,1 +Marvel,Ant-Man Final Battle,194,2015,Dark Blue,10 +Marvel,Ant-Man Final Battle,194,2015,Dark Bluish Gray,4 +Marvel,Ant-Man Final Battle,194,2015,Dark Brown,1 +Marvel,Ant-Man Final Battle,194,2015,Dark Pink,1 +Marvel,Ant-Man Final Battle,194,2015,Dark Red,6 +Marvel,Ant-Man Final Battle,194,2015,Dark Tan,1 +Marvel,Ant-Man Final Battle,194,2015,Flat Silver,1 +Marvel,Ant-Man Final Battle,194,2015,Light Bluish Gray,8 +Marvel,Ant-Man Final Battle,194,2015,Light Flesh,3 +Marvel,Ant-Man Final Battle,194,2015,Pearl Dark Gray,3 +Marvel,Ant-Man Final Battle,194,2015,Red,12 +Marvel,Ant-Man Final Battle,194,2015,Tan,1 +Marvel,Ant-Man Final Battle,194,2015,Trans-Clear,3 +Marvel,Ant-Man Final Battle,194,2015,Trans-Yellow,2 +Marvel,Ant-Man Final Battle,194,2015,White,4 +Marvel,Ant-Man Final Battle,194,2015,Yellow,8 +Marvel,Carnage's Shield Sky Attack,96,2015,Black,14 +Marvel,Carnage's Shield Sky Attack,96,2015,Bright Light Orange,3 +Marvel,Carnage's Shield Sky Attack,96,2015,Dark Blue,11 +Marvel,Carnage's Shield Sky Attack,96,2015,Dark Bluish Gray,6 +Marvel,Carnage's Shield Sky Attack,96,2015,Dark Tan,1 +Marvel,Carnage's Shield Sky Attack,96,2015,Light Bluish Gray,10 +Marvel,Carnage's Shield Sky Attack,96,2015,Light Flesh,1 +Marvel,Carnage's Shield Sky Attack,96,2015,Red,5 +Marvel,Carnage's Shield Sky Attack,96,2015,Tan,1 +Marvel,Carnage's Shield Sky Attack,96,2015,Trans-Black,1 +Marvel,Carnage's Shield Sky Attack,96,2015,Trans-Neon Orange,1 +Marvel,Carnage's Shield Sky Attack,96,2015,White,1 +Marvel,Carnage's Shield Sky Attack,96,2015,Trans-Clear,3 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Red,28 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Reddish Brown,4 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Tan,5 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Trans-Dark Blue,2 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Trans-Light Blue,4 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Trans-Orange,2 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Trans-Red,1 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,White,4 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Yellow,2 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Trans-Clear,3 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Light Bluish Gray,27 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Black,24 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Dark Blue,10 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Dark Bluish Gray,23 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Dark Brown,1 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Dark Red,5 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Flat Silver,2 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Light Flesh,3 +Marvel,Iron Man: Detroit Steel Strikes,376,2017,Orange,1 +Marvel,Beware the Vulture,374,2017,Dark Green,11 +Marvel,Hulk vs. Red Hulk,374,2017,Yellow,6 +Marvel,Beware the Vulture,374,2017,Red,3 +Marvel,Beware the Vulture,374,2017,Reddish Brown,4 +Marvel,Beware the Vulture,374,2017,Light Flesh,1 +Marvel,Beware the Vulture,374,2017,Trans-Black,1 +Marvel,Beware the Vulture,374,2017,Trans-Clear,2 +Marvel,Hulk vs. Red Hulk,374,2017,Tan,3 +Marvel,Beware the Vulture,374,2017,Trans-Green,1 +Marvel,Beware the Vulture,374,2017,Trans-Red,2 +Marvel,Beware the Vulture,374,2017,Trans-Light Blue,3 +Marvel,Beware the Vulture,374,2017,Trans-Orange,1 +Marvel,Beware the Vulture,374,2017,Trans-Purple,2 +Marvel,Beware the Vulture,374,2017,Tan,6 +Marvel,Beware the Vulture,374,2017,Yellow,6 +Marvel,Beware the Vulture,374,2017,Light Bluish Gray,20 +Marvel,Hulk vs. Red Hulk,374,2017,Light Bluish Gray,26 +Marvel,Hulk vs. Red Hulk,374,2017,Lime,6 +Marvel,Hulk vs. Red Hulk,374,2017,Orange,2 +Marvel,Hulk vs. Red Hulk,374,2017,Red,16 +Marvel,Beware the Vulture,374,2017,Black,30 +Marvel,Beware the Vulture,374,2017,Dark Blue,1 +Marvel,Beware the Vulture,374,2017,Dark Bluish Gray,20 +Marvel,Hulk vs. Red Hulk,374,2017,Dark Red,6 +Marvel,Beware the Vulture,374,2017,Dark Purple,1 +Marvel,Beware the Vulture,374,2017,Dark Red,4 +Marvel,Beware the Vulture,374,2017,Flat Silver,3 +Marvel,Hulk vs. Red Hulk,374,2017,Black,22 +Marvel,Hulk vs. Red Hulk,374,2017,Blue,1 +Marvel,Beware the Vulture,374,2017,White,25 +Marvel,Hulk vs. Red Hulk,374,2017,Dark Bluish Gray,21 +Marvel,Hulk vs. Red Hulk,374,2017,Dark Green,5 +Marvel,Hulk vs. Red Hulk,374,2017,Dark Purple,1 +Marvel,Beware the Vulture,374,2017,Medium Azure,1 +Marvel,Hulk vs. Red Hulk,374,2017,Dark Tan,2 +Marvel,Hulk vs. Red Hulk,374,2017,Green,9 +Marvel,Hulk vs. Red Hulk,374,2017,Trans-Clear,2 +Marvel,Hulk vs. Red Hulk,374,2017,White,3 +Marvel,ATM Heist Battle,184,2017,Blue,20 +Marvel,ATM Heist Battle,184,2017,Dark Blue,1 +Marvel,ATM Heist Battle,184,2017,Dark Bluish Gray,18 +Marvel,ATM Heist Battle,184,2017,Dark Tan,5 +Marvel,ATM Heist Battle,184,2017,Flat Silver,3 +Marvel,ATM Heist Battle,184,2017,Green,5 +Marvel,ATM Heist Battle,184,2017,Light Flesh,2 +Marvel,ATM Heist Battle,184,2017,Lime,2 +Marvel,ATM Heist Battle,184,2017,Orange,1 +Marvel,ATM Heist Battle,184,2017,Pearl Gold,2 +Marvel,ATM Heist Battle,184,2017,Red,6 +Marvel,ATM Heist Battle,184,2017,Trans-Black,1 +Marvel,ATM Heist Battle,184,2017,Trans-Clear,3 +Marvel,ATM Heist Battle,184,2017,Trans-Red,1 +Marvel,ATM Heist Battle,184,2017,Trans-Yellow,1 +Marvel,ATM Heist Battle,184,2017,White,2 +Marvel,ATM Heist Battle,184,2017,Yellow,5 +Marvel,ATM Heist Battle,184,2017,Black,12 +Marvel,ATM Heist Battle,184,2017,Light Bluish Gray,18 +Marvel,ATM Heist Battle,184,2017,Trans-Purple,3 +Marvel,Captain America Jet Pursuit,159,2017,Flat Silver,2 +Marvel,Captain America Jet Pursuit,159,2017,Light Bluish Gray,10 +Marvel,Captain America Jet Pursuit,159,2017,Medium Dark Flesh,2 +Marvel,Captain America Jet Pursuit,159,2017,Red,15 +Marvel,Captain America Jet Pursuit,159,2017,Reddish Brown,2 +Marvel,Captain America Jet Pursuit,159,2017,Tan,1 +Marvel,Captain America Jet Pursuit,159,2017,Trans-Black,1 +Marvel,Captain America Jet Pursuit,159,2017,Trans-Light Blue,3 +Marvel,Captain America Jet Pursuit,159,2017,Trans-Orange,1 +Marvel,Captain America Jet Pursuit,159,2017,Trans-Red,1 +Marvel,Captain America Jet Pursuit,159,2017,White,9 +Marvel,Captain America Jet Pursuit,159,2017,Green,1 +Marvel,Captain America Jet Pursuit,159,2017,Black,6 +Marvel,Captain America Jet Pursuit,159,2017,Blue,21 +Marvel,Captain America Jet Pursuit,159,2017,Dark Bluish Gray,5 +Marvel,Captain America Jet Pursuit,159,2017,Dark Brown,1 +Marvel,Captain America Jet Pursuit,159,2017,Dark Tan,1 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Black,5 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Blue,7 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Dark Blue,2 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Dark Bluish Gray,3 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Dark Purple,4 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Dark Tan,1 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Flat Silver,1 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Light Bluish Gray,8 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Light Flesh,1 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Red,6 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Reddish Brown,2 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Trans-Clear,1 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Trans-Light Blue,2 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Trans-Orange,1 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Trans-Purple,1 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Trans-Yellow,1 +Marvel,Mighty Micros: Wolverine vs. Magneto,84,2017,Yellow,1 +Marvel,The Milano,64,2017,Black,3 +Marvel,The Milano,64,2017,Blue,9 +Marvel,The Milano,64,2017,Dark Bluish Gray,6 +Marvel,The Milano,64,2017,Light Bluish Gray,13 +Marvel,The Milano,64,2017,Medium Azure,1 +Marvel,The Milano,64,2017,Orange,3 +Marvel,The Milano,64,2017,Trans-Clear,1 +Marvel,The Milano,64,2017,White,2 +Master Building Academy,Connections Kit,2045,2010,Black,20 +Master Building Academy,Connections Kit,2045,2010,Blue,9 +Master Building Academy,Connections Kit,2045,2010,Dark Bluish Gray,5 +Master Building Academy,Connections Kit,2045,2010,Dark Pink,1 +Master Building Academy,Connections Kit,2045,2010,Flat Silver,2 +Master Building Academy,Connections Kit,2045,2010,Green,2 +Master Building Academy,Connections Kit,2045,2010,Light Bluish Gray,14 +Master Building Academy,Connections Kit,2045,2010,Lime,5 +Master Building Academy,Connections Kit,2045,2010,Orange,5 +Master Building Academy,Connections Kit,2045,2010,Red,10 +Master Building Academy,Connections Kit,2045,2010,Tan,3 +Master Building Academy,Connections Kit,2045,2010,Trans-Light Blue,1 +Master Building Academy,Connections Kit,2045,2010,Very Light Bluish Gray,1 +Master Building Academy,Connections Kit,2045,2010,White,7 +Master Building Academy,Connections Kit,2045,2010,Yellow,8 +Master Building Academy,Identity and Landscape Kit,1536,2010,Black,31 +Master Building Academy,Identity and Landscape Kit,1536,2010,Blue,4 +Master Building Academy,Identity and Landscape Kit,1536,2010,Bright Green,2 +Master Building Academy,Identity and Landscape Kit,1536,2010,Bright Light Orange,2 +Master Building Academy,Identity and Landscape Kit,1536,2010,Dark Blue,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Dark Bluish Gray,16 +Master Building Academy,Identity and Landscape Kit,1536,2010,Dark Flesh,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Dark Orange,2 +Master Building Academy,Identity and Landscape Kit,1536,2010,Dark Pink,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Dark Red,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Green,4 +Master Building Academy,Identity and Landscape Kit,1536,2010,Light Bluish Gray,11 +Master Building Academy,Identity and Landscape Kit,1536,2010,Lime,6 +Master Building Academy,Identity and Landscape Kit,1536,2010,Medium Azure,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Medium Blue,3 +Master Building Academy,Identity and Landscape Kit,1536,2010,Medium Dark Flesh,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Metallic Gold,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Metallic Silver,3 +Master Building Academy,Identity and Landscape Kit,1536,2010,Orange,3 +Master Building Academy,Identity and Landscape Kit,1536,2010,Pearl Gold,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Red,12 +Master Building Academy,Identity and Landscape Kit,1536,2010,Reddish Brown,11 +Master Building Academy,Identity and Landscape Kit,1536,2010,Tan,6 +Master Building Academy,Identity and Landscape Kit,1536,2010,Trans-Black,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Trans-Clear,2 +Master Building Academy,Identity and Landscape Kit,1536,2010,Trans-Dark Blue,2 +Master Building Academy,Identity and Landscape Kit,1536,2010,Trans-Green,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Trans-Light Blue,3 +Master Building Academy,Identity and Landscape Kit,1536,2010,Trans-Purple,1 +Master Building Academy,Identity and Landscape Kit,1536,2010,Trans-Red,2 +Master Building Academy,Identity and Landscape Kit,1536,2010,White,19 +Master Building Academy,Identity and Landscape Kit,1536,2010,Yellow,8 +Master Building Academy,Identity and Landscape Kit,2844,2013,Metallic Silver,3 +Master Building Academy,Identity and Landscape Kit,2844,2013,Orange,7 +Master Building Academy,Identity and Landscape Kit,2844,2013,Pearl Gold,1 +Master Building Academy,Identity and Landscape Kit,2844,2013,Red,19 +Master Building Academy,Identity and Landscape Kit,2844,2013,Reddish Brown,12 +Master Building Academy,Identity and Landscape Kit,2844,2013,Tan,6 +Master Building Academy,Identity and Landscape Kit,2844,2013,Trans-Black,4 +Master Building Academy,Identity and Landscape Kit,2844,2013,Trans-Clear,4 +Master Building Academy,Identity and Landscape Kit,2844,2013,Trans-Dark Blue,2 +Master Building Academy,Identity and Landscape Kit,2844,2013,Trans-Green,1 +Master Building Academy,Identity and Landscape Kit,2844,2013,Trans-Light Blue,4 +Master Building Academy,Identity and Landscape Kit,2844,2013,Trans-Neon Green,2 +Master Building Academy,Identity and Landscape Kit,2844,2013,Trans-Purple,1 +Master Building Academy,Identity and Landscape Kit,2844,2013,Trans-Red,3 +Master Building Academy,Identity and Landscape Kit,2844,2013,White,28 +Master Building Academy,Identity and Landscape Kit,2844,2013,Yellow,14 +Master Building Academy,Identity and Landscape Kit,2844,2013,Black,46 +Master Building Academy,Identity and Landscape Kit,2844,2013,Blue,8 +Master Building Academy,Identity and Landscape Kit,2844,2013,Bright Green,2 +Master Building Academy,Identity and Landscape Kit,2844,2013,Bright Light Orange,1 +Master Building Academy,Identity and Landscape Kit,2844,2013,Chrome Gold,5 +Master Building Academy,Identity and Landscape Kit,2844,2013,Dark Blue,2 +Master Building Academy,Identity and Landscape Kit,2844,2013,Dark Bluish Gray,19 +Master Building Academy,Identity and Landscape Kit,2844,2013,Dark Flesh,1 +Master Building Academy,Identity and Landscape Kit,2844,2013,Dark Orange,2 +Master Building Academy,Identity and Landscape Kit,2844,2013,Dark Pink,2 +Master Building Academy,Identity and Landscape Kit,2844,2013,Dark Red,1 +Master Building Academy,Identity and Landscape Kit,2844,2013,Green,10 +Master Building Academy,Identity and Landscape Kit,2844,2013,Light Bluish Gray,20 +Master Building Academy,Identity and Landscape Kit,2844,2013,Light Flesh,1 +Master Building Academy,Identity and Landscape Kit,2844,2013,Lime,6 +Master Building Academy,Identity and Landscape Kit,2844,2013,Medium Azure,1 +Master Building Academy,Identity and Landscape Kit,2844,2013,Medium Blue,3 +Master Building Academy,Identity and Landscape Kit,2844,2013,Medium Dark Flesh,1 +Master Building Academy,Identity and Landscape Kit,2844,2013,Metallic Gold,1 +Master Building Academy,Connections Kit,2448,2013,Black,22 +Master Building Academy,Connections Kit,2448,2013,Blue,6 +Master Building Academy,Connections Kit,2448,2013,Dark Bluish Gray,4 +Master Building Academy,Connections Kit,2448,2013,Dark Pink,1 +Master Building Academy,Connections Kit,2448,2013,Flat Silver,2 +Master Building Academy,Connections Kit,2448,2013,Green,1 +Master Building Academy,Connections Kit,2448,2013,Light Bluish Gray,18 +Master Building Academy,Connections Kit,2448,2013,Lime,2 +Master Building Academy,Connections Kit,2448,2013,Orange,3 +Master Building Academy,Connections Kit,2448,2013,Red,12 +Master Building Academy,Connections Kit,2448,2013,Reddish Brown,3 +Master Building Academy,Connections Kit,2448,2013,Tan,3 +Master Building Academy,Connections Kit,2448,2013,Trans-Light Blue,1 +Master Building Academy,Connections Kit,2448,2013,Very Light Bluish Gray,1 +Master Building Academy,Connections Kit,2448,2013,White,6 +Master Building Academy,Connections Kit,2448,2013,Yellow,5 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Black,58 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Blue,1 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Dark Blue,13 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Dark Bluish Gray,13 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Dark Green,1 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Dark Red,9 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Flat Silver,2 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Green,1 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Light Bluish Gray,39 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Light Lime,1 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Pearl Gold,1 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Red,1 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Reddish Brown,1 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Tan,29 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Trans-Clear,2 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Trans-Dark Blue,1 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Trans-Green,1 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Trans-Red,1 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,White,32 +Master Building Academy,MBA Invention Designer (Kits 10 - 12),675,2013,Yellow,1 +Matoran of Light,Radiak,16,2008,Black,3 +Matoran of Light,Radiak,16,2008,Dark Red,2 +Matoran of Light,Radiak,16,2008,Pearl Light Gray,2 +Matoran of Light,Radiak,16,2008,Trans-Neon Orange,1 +Matoran of Light,Kirop,14,2008,Black,4 +Matoran of Light,Kirop,14,2008,Dark Bluish Gray,2 +Matoran of Light,Kirop,14,2008,Pearl Light Gray,2 +Matoran of Light,Kirop,14,2008,Trans-Neon Orange,1 +Matoran of Light,Photok,14,2008,Dark Bluish Gray,3 +Matoran of Light,Photok,14,2008,Orange,3 +Matoran of Light,Photok,14,2008,Pearl Light Gray,2 +Matoran of Light,Photok,14,2008,Trans-Neon Green,1 +Matoran of Light,Gavla,14,2008,Black,4 +Matoran of Light,Gavla,14,2008,Dark Blue,2 +Matoran of Light,Gavla,14,2008,Pearl Light Gray,1 +Matoran of Light,Gavla,14,2008,Trans-Neon Orange,1 +Matoran of Light,Solek,14,2008,Dark Bluish Gray,3 +Matoran of Light,Solek,14,2008,Pearl Light Gray,2 +Matoran of Light,Solek,14,2008,Trans-Neon Green,1 +Matoran of Light,Solek,14,2008,White,2 +Matoran of Light,Tanma,14,2008,Dark Bluish Gray,3 +Matoran of Light,Tanma,14,2008,Lime,3 +Matoran of Light,Tanma,14,2008,Pearl Light Gray,2 +Matoran of Light,Tanma,14,2008,Trans-Neon Green,1 +Matoran of Mahri Nui,Morak,40,2007,Blue,1 +Matoran of Mahri Nui,Morak,40,2007,Black,5 +Matoran of Mahri Nui,Morak,40,2007,Red,3 +Matoran of Mahri Nui,Morak,40,2007,Dark Blue,2 +Matoran of Mahri Nui,Morak,40,2007,Dark Bluish Gray,4 +Matoran of Mahri Nui,Morak,40,2007,Light Bluish Gray,1 +Matoran of Mahri Nui,Morak,40,2007,Pearl Dark Gray,1 +Matoran of Mahri Nui,Morak,40,2007,Pearl Light Gray,1 +Matoran of Mahri Nui,Morak,40,2007,Trans-Medium Blue,2 +Matoran of Mahri Nui,Morak,40,2007,Trans-Orange,1 +Matoran of Mahri Nui,Thulox,39,2007,Trans-Orange,1 +Matoran of Mahri Nui,Thulox,39,2007,Black,7 +Matoran of Mahri Nui,Thulox,39,2007,Blue,1 +Matoran of Mahri Nui,Thulox,39,2007,Dark Bluish Gray,5 +Matoran of Mahri Nui,Thulox,39,2007,Dark Red,3 +Matoran of Mahri Nui,Thulox,39,2007,Light Bluish Gray,1 +Matoran of Mahri Nui,Thulox,39,2007,Pearl Dark Gray,1 +Matoran of Mahri Nui,Thulox,39,2007,Pearl Light Gray,1 +Matoran of Mahri Nui,Thulox,39,2007,Red,2 +Matoran of Mahri Nui,Defilak,37,2007,Dark Bluish Gray,4 +Matoran of Mahri Nui,Defilak,37,2007,Dark Green,4 +Matoran of Mahri Nui,Defilak,37,2007,Light Bluish Gray,3 +Matoran of Mahri Nui,Defilak,37,2007,Pearl Dark Gray,1 +Matoran of Mahri Nui,Defilak,37,2007,Pearl Light Gray,4 +Matoran of Mahri Nui,Defilak,37,2007,Trans-Orange,1 +Matoran of Mahri Nui,Dekar,37,2007,Black,6 +Matoran of Mahri Nui,Dekar,37,2007,Blue,1 +Matoran of Mahri Nui,Dekar,37,2007,Bright Light Orange,3 +Matoran of Mahri Nui,Dekar,37,2007,Dark Bluish Gray,4 +Matoran of Mahri Nui,Dekar,37,2007,Pearl Dark Gray,1 +Matoran of Mahri Nui,Dekar,37,2007,Pearl Light Gray,4 +Matoran of Mahri Nui,Dekar,37,2007,Trans-Orange,1 +Matoran of Mahri Nui,Defilak,37,2007,Black,5 +Matoran of Mahri Nui,Defilak,37,2007,Blue,1 +Matoran of Mahri Nui,Dekar,37,2007,Light Bluish Gray,3 +Matoran of Mata Nui,Hafu,25,2003,Black,6 +Matoran of Mata Nui,Hafu,25,2003,Blue,1 +Matoran of Mata Nui,Hafu,25,2003,Flat Silver,2 +Matoran of Mata Nui,Hafu,25,2003,Light Gray,4 +Matoran of Mata Nui,Hafu,25,2003,Tan,5 +Matoran of Mata Nui,Hafu (Kabaya Promotional),25,2003,Black,6 +Matoran of Mata Nui,Hafu (Kabaya Promotional),25,2003,Blue,1 +Matoran of Mata Nui,Hafu (Kabaya Promotional),25,2003,Flat Silver,2 +Matoran of Mata Nui,Hafu (Kabaya Promotional),25,2003,Light Gray,4 +Matoran of Mata Nui,Hafu (Kabaya Promotional),25,2003,Tan,5 +Matoran of Mata Nui,Matoro,25,2003,White,4 +Matoran of Mata Nui,Hahli,25,2003,Black,2 +Matoran of Mata Nui,Hahli,25,2003,Blue,1 +Matoran of Mata Nui,Hahli,25,2003,Dark Blue,3 +Matoran of Mata Nui,Hahli,25,2003,Flat Silver,2 +Matoran of Mata Nui,Hahli,25,2003,Light Gray,4 +Matoran of Mata Nui,Hahli,25,2003,Medium Blue,4 +Matoran of Mata Nui,Hahli,25,2003,Tan,1 +Matoran of Mata Nui,Hahli,25,2003,Trans-Dark Blue,1 +Matoran of Mata Nui,Hewkii,25,2003,Black,2 +Matoran of Mata Nui,Hewkii,25,2003,Blue,1 +Matoran of Mata Nui,Hewkii,25,2003,Dark Orange,4 +Matoran of Mata Nui,Hewkii,25,2003,Flat Silver,2 +Matoran of Mata Nui,Hewkii,25,2003,Light Gray,4 +Matoran of Mata Nui,Hewkii,25,2003,Tan,5 +Matoran of Mata Nui,Hewkii (Kabaya Promotional),25,2003,Black,2 +Matoran of Mata Nui,Hewkii (Kabaya Promotional),25,2003,Blue,1 +Matoran of Mata Nui,Hewkii (Kabaya Promotional),25,2003,Dark Orange,4 +Matoran of Mata Nui,Hewkii (Kabaya Promotional),25,2003,Flat Silver,2 +Matoran of Mata Nui,Hewkii (Kabaya Promotional),25,2003,Light Gray,4 +Matoran of Mata Nui,Hewkii (Kabaya Promotional),25,2003,Tan,5 +Matoran of Mata Nui,Kopeke,25,2003,Black,2 +Matoran of Mata Nui,Kopeke,25,2003,Blue,1 +Matoran of Mata Nui,Kopeke,25,2003,Dark Gray,4 +Matoran of Mata Nui,Kopeke,25,2003,Flat Silver,2 +Matoran of Mata Nui,Kopeke,25,2003,Light Gray,4 +Matoran of Mata Nui,Kopeke,25,2003,Tan,1 +Matoran of Mata Nui,Kopeke,25,2003,White,4 +Matoran of Mata Nui,Macku,25,2003,Black,2 +Matoran of Mata Nui,Macku,25,2003,Blue,5 +Matoran of Mata Nui,Macku,25,2003,Flat Silver,2 +Matoran of Mata Nui,Macku,25,2003,Light Gray,4 +Matoran of Mata Nui,Macku,25,2003,Medium Blue,4 +Matoran of Mata Nui,Macku,25,2003,Tan,1 +Matoran of Mata Nui,Macku (Kabaya Promotional),25,2003,Black,2 +Matoran of Mata Nui,Macku (Kabaya Promotional),25,2003,Blue,5 +Matoran of Mata Nui,Macku (Kabaya Promotional),25,2003,Flat Silver,2 +Matoran of Mata Nui,Macku (Kabaya Promotional),25,2003,Light Gray,4 +Matoran of Mata Nui,Macku (Kabaya Promotional),25,2003,Medium Blue,4 +Matoran of Mata Nui,Macku (Kabaya Promotional),25,2003,Tan,1 +Matoran of Mata Nui,Matoro,25,2003,Black,2 +Matoran of Mata Nui,Matoro,25,2003,Blue,1 +Matoran of Mata Nui,Matoro,25,2003,Flat Silver,2 +Matoran of Mata Nui,Matoro,25,2003,Light Gray,4 +Matoran of Mata Nui,Matoro,25,2003,Sand Blue,4 +Matoran of Mata Nui,Matoro,25,2003,Tan,1 +Matoran of Mata Nui,Hafu and Macku Twin Pack with Gold Avohkii,3,2003,Flat Dark Gold,1 +Matoran of Mata Nui,Hewkii and Hahli Twin Pack with Gold Avohkii,3,2003,Flat Dark Gold,1 +Matoran of Mata Nui,Matoro and Kopeke Twin Pack with Gold Avohkii,3,2003,Flat Dark Gold,1 +Matoran of Metru Nui,Ehrye,30,2004,Black,3 +Matoran of Metru Nui,Ehrye,30,2004,Blue,1 +Matoran of Metru Nui,Ehrye,30,2004,Dark Bluish Gray,3 +Matoran of Metru Nui,Ehrye,30,2004,Flat Silver,1 +Matoran of Metru Nui,Ehrye,30,2004,Glow In Dark Opaque,1 +Matoran of Metru Nui,Ehrye,30,2004,White,3 +Matoran of Metru Nui,Ehrye,30,2004,Trans-Light Blue,1 +Matoran of Metru Nui,Ahkmou,27,2004,Black,3 +Matoran of Metru Nui,Ahkmou,27,2004,Blue,1 +Matoran of Metru Nui,Ahkmou,27,2004,Dark Bluish Gray,3 +Matoran of Metru Nui,Ahkmou,27,2004,Dark Flesh,3 +Matoran of Metru Nui,Ahkmou,27,2004,Flat Silver,1 +Matoran of Metru Nui,Ahkmou,27,2004,Trans-Dark Blue,1 +Matoran of Metru Nui,Ahkmou,27,2004,Glow In Dark Opaque,1 +Matoran of Metru Nui,Nuhrii,27,2004,Black,3 +Matoran of Metru Nui,Nuhrii,27,2004,Blue,1 +Matoran of Metru Nui,Nuhrii,27,2004,Dark Bluish Gray,3 +Matoran of Metru Nui,Nuhrii,27,2004,Dark Red,3 +Matoran of Metru Nui,Nuhrii,27,2004,Flat Silver,1 +Matoran of Metru Nui,Nuhrii,27,2004,Glow In Dark Opaque,1 +Matoran of Metru Nui,Nuhrii,27,2004,Trans-Neon Green,1 +Matoran of Metru Nui,Orkahm,27,2004,Black,3 +Matoran of Metru Nui,Orkahm,27,2004,Blue,1 +Matoran of Metru Nui,Orkahm,27,2004,Dark Bluish Gray,3 +Matoran of Metru Nui,Orkahm,27,2004,Dark Green,3 +Matoran of Metru Nui,Orkahm,27,2004,Flat Silver,1 +Matoran of Metru Nui,Orkahm,27,2004,Glow In Dark Opaque,1 +Matoran of Metru Nui,Orkahm,27,2004,Trans-Red,1 +Matoran of Metru Nui,Tehutti,27,2004,Black,6 +Matoran of Metru Nui,Tehutti,27,2004,Blue,1 +Matoran of Metru Nui,Tehutti,27,2004,Dark Bluish Gray,3 +Matoran of Metru Nui,Tehutti,27,2004,Flat Silver,1 +Matoran of Metru Nui,Tehutti,27,2004,Glow In Dark Opaque,1 +Matoran of Metru Nui,Tehutti,27,2004,Trans-Green,1 +Matoran of Metru Nui,Vhisola,27,2004,Black,3 +Matoran of Metru Nui,Vhisola,27,2004,Blue,1 +Matoran of Metru Nui,Vhisola,27,2004,Dark Blue,3 +Matoran of Metru Nui,Vhisola,27,2004,Dark Bluish Gray,3 +Matoran of Metru Nui,Vhisola,27,2004,Glow In Dark Opaque,1 +Matoran of Metru Nui,Vhisola,27,2004,Trans-Neon Orange,1 +Matoran of Metru Nui,Vhisola,27,2004,White,1 +Matoran of Voya Nui,Piruk,27,2006,White,1 +Matoran of Voya Nui,Piruk,27,2006,Black,5 +Matoran of Voya Nui,Piruk,27,2006,Dark Bluish Gray,2 +Matoran of Voya Nui,Piruk,27,2006,Dark Green,4 +Matoran of Voya Nui,Piruk,27,2006,Trans-Neon Green,1 +Matoran of Voya Nui,Dalu,25,2006,Black,3 +Matoran of Voya Nui,Dalu,25,2006,Blue,2 +Matoran of Voya Nui,Dalu,25,2006,Dark Bluish Gray,2 +Matoran of Voya Nui,Dalu,25,2006,Light Bluish Gray,1 +Matoran of Voya Nui,Dalu,25,2006,Pearl Light Gray,2 +Matoran of Voya Nui,Dalu,25,2006,Trans-Dark Blue,1 +Matoran of Voya Nui,Dalu,25,2006,Trans-Medium Blue,1 +Matoran of Voya Nui,Kazi,25,2006,Black,1 +Matoran of Voya Nui,Kazi,25,2006,Dark Bluish Gray,2 +Matoran of Voya Nui,Dalu,25,2006,Dark Blue,1 +Matoran of Voya Nui,Kazi,25,2006,Pearl Light Gray,1 +Matoran of Voya Nui,Kazi,25,2006,Trans-Medium Blue,1 +Matoran of Voya Nui,Kazi,25,2006,White,4 +Matoran of Voya Nui,Kazi,25,2006,Light Bluish Gray,5 +Matoran of Voya Nui,Balta,22,2006,Black,3 +Matoran of Voya Nui,Balta,22,2006,Bright Light Orange,1 +Matoran of Voya Nui,Balta,22,2006,Dark Bluish Gray,3 +Matoran of Voya Nui,Balta,22,2006,Dark Red,3 +Matoran of Voya Nui,Balta,22,2006,Light Bluish Gray,1 +Matoran of Voya Nui,Balta,22,2006,Pearl Light Gray,2 +Matoran of Voya Nui,Garan,21,2006,Dark Bluish Gray,4 +Matoran of Voya Nui,Garan,21,2006,Flat Silver,1 +Matoran of Voya Nui,Garan,21,2006,Light Bluish Gray,1 +Matoran of Voya Nui,Garan,21,2006,Pearl Light Gray,1 +Matoran of Voya Nui,Garan,21,2006,Black,4 +Matoran of Voya Nui,Velika,21,2006,Black,1 +Matoran of Voya Nui,Velika,21,2006,Dark Bluish Gray,4 +Matoran of Voya Nui,Velika,21,2006,Dark Flesh,3 +Matoran of Voya Nui,Velika,21,2006,Light Bluish Gray,1 +Matoran of Voya Nui,Velika,21,2006,Pearl Light Gray,1 +Matoran of Voya Nui,Velika,21,2006,Trans-Neon Orange,1 +Mindstorms,Scenery Resource Set,717,2002,Black,9 +Mindstorms,Scenery Resource Set,717,2002,Blue,6 +Mindstorms,Scenery Resource Set,717,2002,Brown,2 +Mindstorms,Scenery Resource Set,717,2002,Chrome Gold,1 +Mindstorms,Scenery Resource Set,717,2002,Chrome Silver,1 +Mindstorms,Scenery Resource Set,717,2002,Dark Gray,6 +Mindstorms,Scenery Resource Set,717,2002,Dark Pink,2 +Mindstorms,Scenery Resource Set,717,2002,Dark Turquoise,1 +Mindstorms,Scenery Resource Set,717,2002,Green,11 +Mindstorms,Scenery Resource Set,717,2002,Orange,1 +Mindstorms,Scenery Resource Set,717,2002,Pearl Light Gray,1 +Mindstorms,Scenery Resource Set,717,2002,Purple,2 +Mindstorms,Scenery Resource Set,717,2002,Red,14 +Mindstorms,Scenery Resource Set,717,2002,Sand Green,1 +Mindstorms,Scenery Resource Set,717,2002,Trans-Clear,1 +Mindstorms,Scenery Resource Set,717,2002,Trans-Dark Blue,2 +Mindstorms,Scenery Resource Set,717,2002,Trans-Dark Pink,2 +Mindstorms,Scenery Resource Set,717,2002,Trans-Green,1 +Mindstorms,Scenery Resource Set,717,2002,Trans-Neon Green,3 +Mindstorms,Scenery Resource Set,717,2002,Trans-Yellow,1 +Mindstorms,Scenery Resource Set,717,2002,White,11 +Mindstorms,Scenery Resource Set,717,2002,Yellow,7 +Mindstorms,Transformer 10V DC,1,2016,Black,1 +Minecraft,Minecraft Micro World,458,2012,Black,4 +Minecraft,Minecraft Micro World,458,2012,Blue,4 +Minecraft,Minecraft Micro World,458,2012,Dark Bluish Gray,9 +Minecraft,Minecraft Micro World,458,2012,Green,6 +Minecraft,Minecraft Micro World,458,2012,Light Bluish Gray,16 +Minecraft,Minecraft Micro World,458,2012,Lime,2 +Minecraft,Minecraft Micro World,458,2012,Metallic Gold,1 +Minecraft,Minecraft Micro World,458,2012,Orange,1 +Minecraft,Minecraft Micro World,458,2012,Red,2 +Minecraft,Minecraft Micro World,458,2012,Reddish Brown,7 +Minecraft,Minecraft Micro World,458,2012,Tan,4 +Minecraft,Minecraft Micro World,458,2012,Trans-Clear,2 +Minecraft,Minecraft Micro World,458,2012,Trans-Dark Blue,1 +Minecraft,Minecraft Micro World,458,2012,Trans-Red,1 +Minecraft,The Waterfall Base,729,2017,Reddish Brown,31 +Minecraft,The Waterfall Base,729,2017,Red,3 +Minecraft,The Waterfall Base,729,2017,Pearl Gold,1 +Minecraft,The Waterfall Base,729,2017,Orange,8 +Minecraft,The Waterfall Base,729,2017,Medium Azure,6 +Minecraft,The Waterfall Base,729,2017,Lime,3 +Minecraft,The Waterfall Base,729,2017,Light Bluish Gray,1 +Minecraft,The Waterfall Base,729,2017,Green,5 +Minecraft,The Waterfall Base,729,2017,Flat Silver,3 +Minecraft,The Waterfall Base,729,2017,Dark Tan,2 +Minecraft,The Waterfall Base,729,2017,Dark Purple,1 +Minecraft,The Waterfall Base,729,2017,Dark Green,1 +Minecraft,The Waterfall Base,729,2017,Dark Brown,3 +Minecraft,The Waterfall Base,729,2017,Dark Bluish Gray,15 +Minecraft,The Waterfall Base,729,2017,Dark Azure,2 +Minecraft,The Waterfall Base,729,2017,Bright Light Orange,2 +Minecraft,The Waterfall Base,729,2017,Bright Green,5 +Minecraft,The Waterfall Base,729,2017,Blue,2 +Minecraft,The Waterfall Base,729,2017,Black,15 +Minecraft,The Waterfall Base,729,2017,Medium Dark Flesh,13 +Minecraft,The Waterfall Base,729,2017,White,14 +Minecraft,The Waterfall Base,729,2017,Trans-Yellow,1 +Minecraft,The Waterfall Base,729,2017,Trans-Orange,1 +Minecraft,The Waterfall Base,729,2017,Trans-Green,1 +Minecraft,The Waterfall Base,729,2017,Trans-Dark Blue,1 +Minecraft,The Waterfall Base,729,2017,Trans-Black,2 +Minecraft,The Waterfall Base,729,2017,Tan,12 +Minecraft,The Waterfall Base,729,2017,Sand Green,1 +Minecraft,The Jungle Temple,598,2017,White,5 +Minecraft,The Jungle Temple,598,2017,Yellow,7 +Minecraft,The Jungle Temple,598,2017,Black,5 +Minecraft,The Jungle Temple,598,2017,Bright Green,2 +Minecraft,The Jungle Temple,598,2017,Bright Light Orange,1 +Minecraft,The Jungle Temple,598,2017,Dark Azure,1 +Minecraft,The Jungle Temple,598,2017,Dark Bluish Gray,24 +Minecraft,The Jungle Temple,598,2017,Dark Brown,2 +Minecraft,The Jungle Temple,598,2017,Dark Green,15 +Minecraft,The Jungle Temple,598,2017,Dark Orange,3 +Minecraft,The Jungle Temple,598,2017,Flat Silver,2 +Minecraft,The Jungle Temple,598,2017,Green,10 +Minecraft,The Jungle Temple,598,2017,Lavender,1 +Minecraft,The Jungle Temple,598,2017,Light Bluish Gray,11 +Minecraft,The Jungle Temple,598,2017,Medium Azure,1 +Minecraft,The Jungle Temple,598,2017,Medium Dark Flesh,2 +Minecraft,The Jungle Temple,598,2017,Orange,3 +Minecraft,The Jungle Temple,598,2017,Reddish Brown,11 +Minecraft,The Jungle Temple,598,2017,Tan,2 +Minecraft,The Jungle Temple,598,2017,Trans-Green,1 +Minecraft,The Jungle Temple,598,2017,Trans-Orange,1 +Minecraft,The Jungle Temple,598,2017,Trans-Red,1 +Minecraft,The Jungle Temple,598,2017,Trans-Yellow,1 +Minecraft,The Witch Hut,502,2017,Black,10 +Minecraft,The Witch Hut,502,2017,Blue,4 +Minecraft,The Witch Hut,502,2017,Bright Green,1 +Minecraft,The Witch Hut,502,2017,Yellow,2 +Minecraft,The Witch Hut,502,2017,White,1 +Minecraft,The Witch Hut,502,2017,Trans-Yellow,1 +Minecraft,The Witch Hut,502,2017,Trans-Red,2 +Minecraft,The Witch Hut,502,2017,Trans-Orange,1 +Minecraft,The Witch Hut,502,2017,Trans-Light Blue,1 +Minecraft,The Witch Hut,502,2017,Trans-Green,3 +Minecraft,The Witch Hut,502,2017,Trans-Dark Blue,1 +Minecraft,The Witch Hut,502,2017,Trans-Clear,2 +Minecraft,The Witch Hut,502,2017,Trans-Bright Green,2 +Minecraft,The Witch Hut,502,2017,Trans-Black,1 +Minecraft,The Witch Hut,502,2017,Tan,8 +Minecraft,The Witch Hut,502,2017,Reddish Brown,26 +Minecraft,The Witch Hut,502,2017,Red,3 +Minecraft,The Witch Hut,502,2017,Sand Green,1 +Minecraft,The Witch Hut,502,2017,Pearl Gold,1 +Minecraft,The Witch Hut,502,2017,Bright Light Blue,1 +Minecraft,The Witch Hut,502,2017,Orange,2 +Minecraft,The Witch Hut,502,2017,Medium Dark Flesh,15 +Minecraft,The Witch Hut,502,2017,Lime,1 +Minecraft,The Witch Hut,502,2017,Light Bluish Gray,4 +Minecraft,The Witch Hut,502,2017,Green,8 +Minecraft,The Witch Hut,502,2017,Glow in Dark White,1 +Minecraft,The Witch Hut,502,2017,Flat Silver,1 +Minecraft,The Witch Hut,502,2017,Dark Tan,3 +Minecraft,The Witch Hut,502,2017,Dark Purple,1 +Minecraft,The Witch Hut,502,2017,Dark Green,4 +Minecraft,The Witch Hut,502,2017,Dark Brown,3 +Minecraft,The Witch Hut,502,2017,Dark Bluish Gray,4 +Minecraft,The Witch Hut,502,2017,Bright Pink,4 +Minecraft,The Ice Spikes,454,2017,Black,14 +Minecraft,The Ice Spikes,454,2017,Blue,5 +Minecraft,The Ice Spikes,454,2017,Bright Green,2 +Minecraft,The Ice Spikes,454,2017,Bright Light Blue,2 +Minecraft,The Ice Spikes,454,2017,Dark Azure,1 +Minecraft,The Ice Spikes,454,2017,Dark Bluish Gray,5 +Minecraft,The Ice Spikes,454,2017,Dark Brown,2 +Minecraft,The Ice Spikes,454,2017,Dark Purple,1 +Minecraft,The Ice Spikes,454,2017,Dark Red,1 +Minecraft,The Ice Spikes,454,2017,Flat Silver,2 +Minecraft,The Ice Spikes,454,2017,Green,1 +Minecraft,The Ice Spikes,454,2017,Light Bluish Gray,12 +Minecraft,The Ice Spikes,454,2017,Lime,1 +Minecraft,The Ice Spikes,454,2017,Medium Blue,9 +Minecraft,The Ice Spikes,454,2017,Medium Dark Flesh,8 +Minecraft,The Ice Spikes,454,2017,Medium Lavender,1 +Minecraft,The Ice Spikes,454,2017,Orange,1 +Minecraft,The Ice Spikes,454,2017,Red,3 +Minecraft,The Ice Spikes,454,2017,Reddish Brown,14 +Minecraft,The Ice Spikes,454,2017,Tan,1 +Minecraft,The Ice Spikes,454,2017,Trans-Clear,1 +Minecraft,The Ice Spikes,454,2017,Trans-Medium Blue,1 +Minecraft,The Ice Spikes,454,2017,Trans-Red,1 +Minecraft,The Ice Spikes,454,2017,White,23 +Minecraft,The Ice Spikes,454,2017,Pearl Gold,1 +Minecraft,The Nether Railway,387,2017,Dark Tan,2 +Minecraft,The Nether Railway,387,2017,Light Bluish Gray,18 +Minecraft,The Nether Railway,387,2017,Medium Azure,3 +Minecraft,The Nether Railway,387,2017,Orange,6 +Minecraft,The Nether Railway,387,2017,Pearl Gold,2 +Minecraft,The Nether Railway,387,2017,Red,1 +Minecraft,The Nether Railway,387,2017,Reddish Brown,9 +Minecraft,The Nether Railway,387,2017,Trans-Orange,2 +Minecraft,The Nether Railway,387,2017,Trans-Red,2 +Minecraft,The Nether Railway,387,2017,Trans-Yellow,1 +Minecraft,The Nether Railway,387,2017,White,1 +Minecraft,The Nether Railway,387,2017,Blue,1 +Minecraft,The Nether Railway,387,2017,Bright Pink,3 +Minecraft,The Nether Railway,387,2017,Dark Azure,1 +Minecraft,The Nether Railway,387,2017,Yellow,2 +Minecraft,The Nether Railway,387,2017,Dark Red,16 +Minecraft,The Nether Railway,387,2017,Dark Bluish Gray,7 +Minecraft,The Nether Railway,387,2017,Dark Brown,5 +Minecraft,The Nether Railway,387,2017,Black,9 +Minecraft,The Mushroom Island,247,2017,Black,1 +Minecraft,The Mushroom Island,247,2017,Blue,2 +Minecraft,The Mushroom Island,247,2017,Bright Green,2 +Minecraft,The Mushroom Island,247,2017,Bright Light Orange,1 +Minecraft,The Mushroom Island,247,2017,Bright Pink,1 +Minecraft,The Mushroom Island,247,2017,Dark Bluish Gray,5 +Minecraft,The Mushroom Island,247,2017,Dark Tan,3 +Minecraft,The Mushroom Island,247,2017,Flat Silver,1 +Minecraft,The Mushroom Island,247,2017,Green,3 +Minecraft,The Mushroom Island,247,2017,Light Bluish Gray,3 +Minecraft,The Mushroom Island,247,2017,Lime,1 +Minecraft,The Mushroom Island,247,2017,Medium Azure,1 +Minecraft,The Mushroom Island,247,2017,Orange,1 +Minecraft,The Mushroom Island,247,2017,Red,7 +Minecraft,The Mushroom Island,247,2017,Reddish Brown,11 +Minecraft,The Mushroom Island,247,2017,Medium Dark Flesh,10 +Minecraft,The Mushroom Island,247,2017,Sand Green,1 +Minecraft,The Mushroom Island,247,2017,Tan,1 +Minecraft,The Mushroom Island,247,2017,White,8 +Minecraft,The Mushroom Island,247,2017,Yellow,1 +Minecraft,The Mushroom Island,247,2017,Trans-Dark Blue,2 +Mini,Republic Gunship - Mini,102,2003,Lime,2 +Mini,Republic Gunship - Mini,102,2003,Light Gray,17 +Mini,Republic Gunship - Mini,102,2003,Dark Red,6 +Mini,Republic Gunship - Mini,102,2003,Dark Gray,4 +Mini,Republic Gunship - Mini,102,2003,Blue,1 +Mini,Republic Gunship - Mini,102,2003,Black,3 +Mini,Republic Gunship - Mini,102,2003,Red,2 +Mini,Republic Gunship - Mini,102,2003,Trans-Black,2 +Mini,Republic Gunship - Mini,102,2003,White,19 +Mini,Trade Federation MTT - Mini,99,2003,Yellow,1 +Mini,Trade Federation MTT - Mini,99,2003,Black,7 +Mini,Trade Federation MTT - Mini,99,2003,Brown,14 +Mini,Trade Federation MTT - Mini,99,2003,Dark Gray,8 +Mini,Trade Federation MTT - Mini,99,2003,Dark Orange,5 +Mini,Trade Federation MTT - Mini,99,2003,Light Gray,7 +Mini,Trade Federation MTT - Mini,99,2003,White,3 +Mini,AT-AT - Mini,98,2003,Black,6 +Mini,AT-AT - Mini,98,2003,Blue,1 +Mini,AT-AT - Mini,98,2003,Dark Gray,9 +Mini,AT-AT - Mini,98,2003,Light Gray,19 +Mini,AT-AT - Mini,98,2003,Trans-Clear,1 +Mini,AT-AT - Mini,98,2003,White,5 +Mini,AT-AT - Mini,98,2003,Yellow,2 +Mini,Millennium Falcon - Mini,87,2003,Light Gray,21 +Mini,Millennium Falcon - Mini,87,2003,Dark Gray,4 +Mini,Millennium Falcon - Mini,87,2003,Blue,3 +Mini,Millennium Falcon - Mini,87,2003,Black,5 +Mini,Millennium Falcon - Mini,87,2003,Red,2 +Mini,Millennium Falcon - Mini,87,2003,White,3 +Mini,Millennium Falcon - Mini,87,2003,Yellow,1 +Mini,Millennium Falcon - Mini,87,2003,Trans-Dark Blue,1 +Mini,AT-ST & Snowspeeder - Mini,76,2003,Trans-Black,1 +Mini,AT-ST & Snowspeeder - Mini,76,2003,Sand Blue,1 +Mini,AT-ST & Snowspeeder - Mini,76,2003,Light Gray,23 +Mini,AT-ST & Snowspeeder - Mini,76,2003,Dark Gray,10 +Mini,AT-ST & Snowspeeder - Mini,76,2003,Black,5 +Mini,AT-ST & Snowspeeder - Mini,76,2003,Trans-Red,1 +Mini,AT-ST & Snowspeeder - Mini,76,2003,Trans-Clear,1 +Mini,AT-ST & Snowspeeder - Mini,76,2003,Orange,1 +Mini,Sebulba's Podracer & Anakin's Podracer - Mini,72,2003,Trans-Neon Orange,1 +Mini,Sebulba's Podracer & Anakin's Podracer - Mini,72,2003,Yellow,2 +Mini,X-wing Fighter & TIE Advanced - Mini,72,2003,White,10 +Mini,Sebulba's Podracer & Anakin's Podracer - Mini,72,2003,Black,8 +Mini,Sebulba's Podracer & Anakin's Podracer - Mini,72,2003,Blue,3 +Mini,Sebulba's Podracer & Anakin's Podracer - Mini,72,2003,Dark Gray,2 +Mini,Sebulba's Podracer & Anakin's Podracer - Mini,72,2003,Light Gray,4 +Mini,Sebulba's Podracer & Anakin's Podracer - Mini,72,2003,Orange,6 +Mini,Sebulba's Podracer & Anakin's Podracer - Mini,72,2003,Trans-Clear,2 +Mini,X-wing Fighter & TIE Advanced - Mini,72,2003,Black,6 +Mini,X-wing Fighter & TIE Advanced - Mini,72,2003,Dark Red,2 +Mini,X-wing Fighter & TIE Advanced - Mini,72,2003,Light Gray,6 +Mini,X-wing Fighter & TIE Advanced - Mini,72,2003,Sand Blue,4 +Mini,X-wing Fighter & TIE Advanced - Mini,72,2003,Tan,2 +Mini,X-wing Fighter & TIE Advanced - Mini,72,2003,Trans-Clear,2 +Mini,X-wing Fighter & TIE Advanced - Mini,72,2003,Trans-Dark Blue,1 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,White,9 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Dark Gray,1 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Dark Blue,4 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Black,5 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Light Gray,5 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Sand Blue,1 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Sand Green,2 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Tan,1 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Trans-Black,1 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Trans-Red,1 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Yellow,2 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Dark Red,7 +Mini,Jedi Starfighter & Slave I - Mini,53,2003,Green,1 +Mini,TIE Fighter - Mini,12,2003,Trans-Clear,1 +Mini,TIE Fighter - Mini,12,2003,Black,4 +Mini,TIE Fighter - Mini,12,2003,Sand Blue,2 +Mini,Mini Neptune Carrier,63,2010,Black,3 +Mini,Mini Neptune Carrier,63,2010,Dark Bluish Gray,8 +Mini,Mini Neptune Carrier,63,2010,Light Bluish Gray,4 +Mini,Mini Neptune Carrier,63,2010,Lime,1 +Mini,Mini Neptune Carrier,63,2010,Red,16 +Mini,Mini Neptune Carrier,63,2010,Trans-Bright Green,1 +Mini,Mini Neptune Carrier,63,2010,Trans-Clear,1 +Mini,Mini Neptune Carrier,63,2010,Trans-Green,1 +Mini,Mini Neptune Carrier,63,2010,Trans-Red,1 +Mini,Mini Modulars,1358,2012,Black,39 +Mini,Mini Modulars,1358,2012,Blue,2 +Mini,Mini Modulars,1358,2012,Dark Blue,11 +Mini,Mini Modulars,1358,2012,Dark Bluish Gray,32 +Mini,Mini Modulars,1358,2012,Dark Green,4 +Mini,Mini Modulars,1358,2012,Dark Pink,1 +Mini,Mini Modulars,1358,2012,Dark Red,8 +Mini,Mini Modulars,1358,2012,Dark Tan,3 +Mini,Mini Modulars,1358,2012,Green,3 +Mini,Mini Modulars,1358,2012,Light Bluish Gray,41 +Mini,Mini Modulars,1358,2012,Medium Blue,8 +Mini,Mini Modulars,1358,2012,Orange,1 +Mini,Mini Modulars,1358,2012,Pearl Gold,2 +Mini,Mini Modulars,1358,2012,Red,6 +Mini,Mini Modulars,1358,2012,Reddish Brown,19 +Mini,Mini Modulars,1358,2012,Sand Green,4 +Mini,Mini Modulars,1358,2012,Tan,21 +Mini,Mini Modulars,1358,2012,Trans-Black,1 +Mini,Mini Modulars,1358,2012,Trans-Clear,7 +Mini,Mini Modulars,1358,2012,Trans-Dark Blue,1 +Mini,Mini Modulars,1358,2012,Trans-Green,3 +Mini,Mini Modulars,1358,2012,Trans-Yellow,2 +Mini,Mini Modulars,1358,2012,White,23 +Mini,Mini Modulars,1358,2012,Yellow,5 +Mini,Tie Striker Microfighter,87,2017,Black,16 +Mini,Tie Striker Microfighter,87,2017,Dark Bluish Gray,6 +Mini,Tie Striker Microfighter,87,2017,Light Bluish Gray,24 +Mini,Tie Striker Microfighter,87,2017,Light Flesh,1 +Mini,Tie Striker Microfighter,87,2017,Red,1 +Mini,Tie Striker Microfighter,87,2017,Trans-Black,1 +Mini,Tie Striker Microfighter,87,2017,Trans-Red,2 +Mini,Krennics Imperial Shuttle Microfighter,77,2017,Black,23 +Mini,Krennics Imperial Shuttle Microfighter,77,2017,Dark Bluish Gray,7 +Mini,Krennics Imperial Shuttle Microfighter,77,2017,Light Bluish Gray,3 +Mini,Krennics Imperial Shuttle Microfighter,77,2017,Light Flesh,1 +Mini,Krennics Imperial Shuttle Microfighter,77,2017,Metallic Silver,1 +Mini,Krennics Imperial Shuttle Microfighter,77,2017,Trans-Black,1 +Mini,Krennics Imperial Shuttle Microfighter,77,2017,Trans-Light Blue,1 +Mini,Krennics Imperial Shuttle Microfighter,77,2017,Trans-Red,2 +Mini,Krennics Imperial Shuttle Microfighter,77,2017,White,1 +Minifig Pack,Shadow ARF Trooper,5,2011,Black,4 +Minifig Pack,Shadow ARF Trooper,5,2011,Light Flesh,1 +Minifig Pack,TC-4,3,2014,Dark Red,3 +Minitalia,Large House Set,218,1970,Green,6 +Minitalia,Large House Set,218,1970,Red,4 +Minitalia,Large House Set,218,1970,White,6 +Minitalia,Medium House Set,158,1970,Green,5 +Minitalia,Medium House Set,158,1970,Red,4 +Minitalia,Medium House Set,158,1970,White,6 +Minitalia,Medium House Set,109,1970,Green,4 +Minitalia,Medium House Set,109,1970,Red,3 +Minitalia,Medium House Set,109,1970,White,6 +Minitalia,Little House Set,67,1970,Green,3 +Minitalia,Little House Set,67,1970,Red,2 +Minitalia,Little House Set,67,1970,White,5 +Minitalia,Medium Basic LEGO Set,130,1976,Black,2 +Minitalia,Medium Basic LEGO Set,130,1976,Blue,2 +Minitalia,Medium Basic LEGO Set,130,1976,Green,4 +Minitalia,Medium Basic LEGO Set,130,1976,Red,7 +Minitalia,Medium Basic LEGO Set,130,1976,White,6 +Minitalia,Medium Basic LEGO Set,130,1976,Yellow,5 +Mission Deep Freeze,Mobile Command Center,425,2004,Trans-Clear,2 +Mission Deep Freeze,Mobile Command Center,425,2004,Tan,3 +Mission Deep Freeze,Mobile Command Center,425,2004,Sand Blue,14 +Mission Deep Freeze,Mobile Command Center,425,2004,Light Bluish Gray,22 +Mission Deep Freeze,Mobile Command Center,425,2004,Dark Red,1 +Mission Deep Freeze,Mobile Command Center,425,2004,Dark Gray,1 +Mission Deep Freeze,Mobile Command Center,425,2004,Dark Bluish Gray,7 +Mission Deep Freeze,Mobile Command Center,425,2004,Dark Blue,8 +Mission Deep Freeze,Mobile Command Center,425,2004,Blue,7 +Mission Deep Freeze,Mobile Command Center,425,2004,Black,55 +Mission Deep Freeze,Mobile Command Center,425,2004,White,19 +Mission Deep Freeze,Mobile Command Center,425,2004,Trans-Orange,3 +Mission Deep Freeze,Mobile Command Center,425,2004,Trans-Red,2 +Mission Deep Freeze,Mobile Command Center,425,2004,Yellow,4 +Mission Deep Freeze,Mobile Command Center,425,2004,Trans-Medium Blue,3 +Mission Deep Freeze,Mobile Command Center,425,2004,Trans-Dark Blue,1 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,White,16 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Trans-Red,3 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Trans-Orange,1 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Trans-Medium Blue,9 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Trans-Dark Blue,1 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Trans-Clear,2 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Sand Blue,1 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Light Bluish Gray,35 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Dark Red,13 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Dark Bluish Gray,19 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Dark Blue,2 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Blue,1 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,Black,52 +Mission Deep Freeze,Ogel's Mountain Fortress,413,2004,[No Color],1 +Mission Deep Freeze,Blizzard Blaster,303,2004,Black,19 +Mission Deep Freeze,Blizzard Blaster,303,2004,Blue,1 +Mission Deep Freeze,Blizzard Blaster,303,2004,Dark Blue,23 +Mission Deep Freeze,Blizzard Blaster,303,2004,Dark Red,7 +Mission Deep Freeze,Blizzard Blaster,303,2004,Light Bluish Gray,2 +Mission Deep Freeze,Blizzard Blaster,303,2004,Sand Blue,24 +Mission Deep Freeze,Blizzard Blaster,303,2004,Trans-Clear,3 +Mission Deep Freeze,Blizzard Blaster,303,2004,Trans-Dark Blue,1 +Mission Deep Freeze,Blizzard Blaster,303,2004,Trans-Medium Blue,3 +Mission Deep Freeze,Blizzard Blaster,303,2004,Trans-Orange,4 +Mission Deep Freeze,Blizzard Blaster,303,2004,Yellow,1 +Mission Deep Freeze,Blizzard Blaster,303,2004,White,15 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Black,49 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Yellow,1 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,White,11 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Trans-Orange,2 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Trans-Medium Blue,4 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Trans-Dark Blue,1 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Trans-Clear,2 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Tan,1 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Sand Blue,8 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Reddish Brown,1 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Light Bluish Gray,18 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Dark Red,11 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Dark Gray,1 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Dark Bluish Gray,9 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Dark Blue,8 +Mission Deep Freeze,Blue Eagle vs. Snow Crawler,257,2004,Blue,2 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Black,19 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Blue,2 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Dark Blue,3 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Dark Bluish Gray,10 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Dark Red,22 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Light Bluish Gray,9 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Sand Blue,3 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Tan,1 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Trans-Black,1 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Trans-Clear,1 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Trans-Medium Blue,3 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Trans-Orange,2 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,White,3 +Mission Deep Freeze,Scorpion Orb Launcher,223,2004,Yellow,1 +Mission Deep Freeze,Tundra Tracker,140,2004,Black,28 +Mission Deep Freeze,Tundra Tracker,140,2004,Dark Blue,3 +Mission Deep Freeze,Tundra Tracker,140,2004,Dark Bluish Gray,6 +Mission Deep Freeze,Tundra Tracker,140,2004,Green,1 +Mission Deep Freeze,Tundra Tracker,140,2004,Light Bluish Gray,10 +Mission Deep Freeze,Tundra Tracker,140,2004,Sand Blue,8 +Mission Deep Freeze,Tundra Tracker,140,2004,Trans-Clear,2 +Mission Deep Freeze,Tundra Tracker,140,2004,Trans-Dark Blue,1 +Mission Deep Freeze,Tundra Tracker,140,2004,Trans-Medium Blue,2 +Mission Deep Freeze,Tundra Tracker,140,2004,Trans-Orange,1 +Mission Deep Freeze,Tundra Tracker,140,2004,White,12 +Mission Deep Freeze,Tundra Tracker,140,2004,Yellow,2 +Mission Deep Freeze,Ice Blade,103,2004,Black,20 +Mission Deep Freeze,Ice Blade,103,2004,Dark Blue,6 +Mission Deep Freeze,Ice Blade,103,2004,Dark Bluish Gray,1 +Mission Deep Freeze,Ice Blade,103,2004,Light Bluish Gray,11 +Mission Deep Freeze,Ice Blade,103,2004,Red,2 +Mission Deep Freeze,Ice Blade,103,2004,Sand Blue,6 +Mission Deep Freeze,Ice Blade,103,2004,Trans-Clear,2 +Mission Deep Freeze,Ice Blade,103,2004,Trans-Dark Blue,1 +Mission Deep Freeze,Ice Blade,103,2004,Trans-Medium Blue,1 +Mission Deep Freeze,Ice Blade,103,2004,Trans-Orange,2 +Mission Deep Freeze,Ice Blade,103,2004,White,9 +Mission Deep Freeze,Chill Speeder,57,2004,Dark Bluish Gray,1 +Mission Deep Freeze,Chill Speeder,57,2004,Dark Blue,3 +Mission Deep Freeze,Chill Speeder,57,2004,Black,9 +Mission Deep Freeze,Chill Speeder,57,2004,Aqua,2 +Mission Deep Freeze,Chill Speeder,57,2004,Yellow,1 +Mission Deep Freeze,Chill Speeder,57,2004,White,6 +Mission Deep Freeze,Chill Speeder,57,2004,Trans-Orange,1 +Mission Deep Freeze,Chill Speeder,57,2004,Trans-Medium Blue,1 +Mission Deep Freeze,Chill Speeder,57,2004,Trans-Dark Blue,1 +Mission Deep Freeze,Chill Speeder,57,2004,Trans-Clear,1 +Mission Deep Freeze,Chill Speeder,57,2004,Sand Blue,11 +Mission Deep Freeze,Chill Speeder,57,2004,Orange,1 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Trans-Neon Green,5 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Yellow,14 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Trans-Dark Blue,2 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Trans-Black,1 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Red,22 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Light Gray,17 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Dark Gray,14 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Dark Blue,2 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Chrome Silver,1 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Chrome Gold,1 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Black,50 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,[No Color],2 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Brown,1 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,White,2 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Trans-Red,1 +Mission Deep Sea,Ogel Underwater Base and AT Sub,478,2002,Trans-Neon Orange,2 +Mission Deep Sea,Alpha Team Command Sub,188,2002,Dark Blue,4 +Mission Deep Sea,Alpha Team Command Sub,188,2002,Dark Gray,15 +Mission Deep Sea,Alpha Team Command Sub,188,2002,Light Gray,4 +Mission Deep Sea,Alpha Team Command Sub,188,2002,Trans-Black,3 +Mission Deep Sea,Alpha Team Command Sub,188,2002,Trans-Dark Blue,2 +Mission Deep Sea,Alpha Team Command Sub,188,2002,Trans-Green,1 +Mission Deep Sea,Alpha Team Command Sub,188,2002,Trans-Neon Green,2 +Mission Deep Sea,Alpha Team Command Sub,188,2002,Trans-Red,1 +Mission Deep Sea,Alpha Team Command Sub,188,2002,White,1 +Mission Deep Sea,Alpha Team Command Sub,188,2002,Yellow,23 +Mission Deep Sea,Alpha Team Command Sub,188,2002,Black,24 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Black,23 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Dark Blue,2 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Dark Gray,15 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Green,2 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Light Gray,7 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Red,1 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Trans-Black,2 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Trans-Dark Blue,1 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Trans-Neon Green,3 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Yellow,25 +Mission Deep Sea,Alpha Team Aquatic Mech,166,2002,Brown,1 +Mission Deep Sea,Ogel Sub Shark,114,2002,White,1 +Mission Deep Sea,Ogel Sub Shark,114,2002,Trans-Red,5 +Mission Deep Sea,Ogel Sub Shark,114,2002,Trans-Neon Orange,2 +Mission Deep Sea,Ogel Sub Shark,114,2002,Trans-Neon Green,3 +Mission Deep Sea,Ogel Sub Shark,114,2002,Red,7 +Mission Deep Sea,Ogel Sub Shark,114,2002,Light Gray,4 +Mission Deep Sea,Ogel Sub Shark,114,2002,Dark Gray,14 +Mission Deep Sea,Ogel Sub Shark,114,2002,Black,24 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,Black,17 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,Dark Blue,2 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,Dark Gray,5 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,Dark Red,1 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,Light Gray,7 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,Trans-Black,1 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,Yellow,17 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,White,1 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,Trans-Red,1 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,Trans-Neon Green,1 +Mission Deep Sea,Alpha Team Navigator and ROV,93,2002,Trans-Dark Blue,1 +Mission Deep Sea,Ogel Mutant Ray,68,2002,Dark Gray,6 +Mission Deep Sea,Ogel Mutant Ray,68,2002,Green,2 +Mission Deep Sea,Ogel Mutant Ray,68,2002,Black,12 +Mission Deep Sea,Ogel Mutant Ray,68,2002,Trans-Neon Green,3 +Mission Deep Sea,Ogel Mutant Ray,68,2002,Tan,1 +Mission Deep Sea,Ogel Mutant Ray,68,2002,Red,6 +Mission Deep Sea,Ogel Mutant Ray,68,2002,Light Gray,4 +Mission Deep Sea,Ogel Mutant Ray,68,2002,White,1 +Mission Deep Sea,Ogel Mutant Ray,68,2002,Trans-Red,4 +Mission Deep Sea,Ogel Mutant Squid,62,2002,Light Gray,4 +Mission Deep Sea,Ogel Mutant Squid,62,2002,Trans-Red,3 +Mission Deep Sea,Ogel Mutant Squid,62,2002,Yellow,1 +Mission Deep Sea,Ogel Mutant Squid,62,2002,Trans-Neon Green,3 +Mission Deep Sea,Ogel Mutant Squid,62,2002,Red,2 +Mission Deep Sea,Ogel Mutant Squid,62,2002,Black,17 +Mission Deep Sea,Ogel Mutant Squid,62,2002,Chrome Gold,1 +Mission Deep Sea,Ogel Mutant Squid,62,2002,Dark Gray,4 +Mission Deep Sea,Ogel Mutant Killer Whale,61,2002,Trans-Neon Green,4 +Mission Deep Sea,Ogel Mutant Killer Whale,61,2002,White,1 +Mission Deep Sea,Ogel Mutant Killer Whale,61,2002,Black,16 +Mission Deep Sea,Ogel Mutant Killer Whale,61,2002,Chrome Silver,1 +Mission Deep Sea,Ogel Mutant Killer Whale,61,2002,Dark Gray,3 +Mission Deep Sea,Ogel Mutant Killer Whale,61,2002,Light Gray,7 +Mission Deep Sea,Ogel Mutant Killer Whale,61,2002,Red,5 +Mission Deep Sea,Alpha Team Sub-Surface Scooter,42,2002,Black,14 +Mission Deep Sea,Alpha Team Sub-Surface Scooter,42,2002,Yellow,9 +Mission Deep Sea,Alpha Team Sub-Surface Scooter,42,2002,Trans-Neon Green,1 +Mission Deep Sea,Alpha Team Sub-Surface Scooter,42,2002,Trans-Dark Blue,1 +Mission Deep Sea,Alpha Team Sub-Surface Scooter,42,2002,Light Gray,2 +Mission Deep Sea,Alpha Team Sub-Surface Scooter,42,2002,Dark Gray,4 +Mission Deep Sea,Alpha Team Sub-Surface Scooter,42,2002,Dark Blue,2 +Mission Deep Sea,Alpha Team Robot Diver,32,2002,White,1 +Mission Deep Sea,Alpha Team Robot Diver,32,2002,Trans-Neon Orange,1 +Mission Deep Sea,Alpha Team Robot Diver,32,2002,Trans-Neon Green,3 +Mission Deep Sea,Alpha Team Robot Diver,32,2002,Trans-Dark Blue,1 +Mission Deep Sea,Alpha Team Robot Diver,32,2002,Red,1 +Mission Deep Sea,Alpha Team Robot Diver,32,2002,Green,2 +Mission Deep Sea,Alpha Team Robot Diver,32,2002,Dark Blue,2 +Mission Deep Sea,Alpha Team Robot Diver,32,2002,Black,6 +Mission Deep Sea,Alpha Team Robot Diver,32,2002,Yellow,3 +Mission Deep Sea,Alpha Team Robot Diver,32,2002,Dark Gray,3 +Mission Deep Sea,Dash Jet Sub,23,2002,Dark Gray,3 +Mission Deep Sea,Dash Jet Sub,23,2002,Light Gray,2 +Mission Deep Sea,Dash Jet Sub,23,2002,Trans-Dark Blue,1 +Mission Deep Sea,Dash Jet Sub,23,2002,Trans-Neon Green,1 +Mission Deep Sea,Dash Jet Sub,23,2002,Trans-Red,1 +Mission Deep Sea,Dash Jet Sub,23,2002,Yellow,4 +Mission Deep Sea,Jet Sub,23,2002,Black,4 +Mission Deep Sea,Jet Sub,23,2002,Dark Blue,2 +Mission Deep Sea,Jet Sub,23,2002,Dark Gray,3 +Mission Deep Sea,Jet Sub,23,2002,Light Gray,2 +Mission Deep Sea,Jet Sub,23,2002,Trans-Dark Blue,1 +Mission Deep Sea,Jet Sub,23,2002,Trans-Neon Green,1 +Mission Deep Sea,Jet Sub,23,2002,Trans-Red,1 +Mission Deep Sea,Jet Sub,23,2002,Yellow,4 +Mission Deep Sea,Dash Jet Sub,23,2002,Black,4 +Mission Deep Sea,Dash Jet Sub,23,2002,Dark Blue,2 +Mission Deep Sea,Ogel Marine Slizer,21,2002,Light Gray,1 +Mission Deep Sea,Ogel Marine Slizer,21,2002,Red,3 +Mission Deep Sea,Ogel Marine Slizer,21,2002,Trans-Red,1 +Mission Deep Sea,Ogel Marine Slizer,21,2002,Yellow,1 +Mission Deep Sea,Evil Ogel Attack,21,2002,Yellow,1 +Mission Deep Sea,Evil Ogel Attack,21,2002,Trans-Red,1 +Mission Deep Sea,Evil Ogel Attack,21,2002,Red,3 +Mission Deep Sea,Evil Ogel Attack,21,2002,Light Gray,1 +Mission Deep Sea,Evil Ogel Attack,21,2002,Dark Gray,2 +Mission Deep Sea,Evil Ogel Attack,21,2002,Chrome Gold,1 +Mission Deep Sea,Evil Ogel Attack,21,2002,Black,9 +Mission Deep Sea,Cam Wing Diver,21,2002,Trans-Neon Green,2 +Mission Deep Sea,Cam Wing Diver,21,2002,Yellow,6 +Mission Deep Sea,Cam Wing Diver,21,2002,Trans-Dark Blue,1 +Mission Deep Sea,Cam Wing Diver,21,2002,Light Gray,1 +Mission Deep Sea,Cam Wing Diver,21,2002,Dark Gray,3 +Mission Deep Sea,Cam Wing Diver,21,2002,Dark Blue,2 +Mission Deep Sea,Cam Wing Diver,21,2002,Black,2 +Mission Deep Sea,Ogel Marine Slizer,21,2002,Black,9 +Mission Deep Sea,Ogel Marine Slizer,21,2002,Chrome Gold,1 +Mission Deep Sea,Ogel Marine Slizer,21,2002,Dark Gray,2 +Mission Deep Sea,Ogel Drone Octopus,18,2002,Black,5 +Mission Deep Sea,Ogel Drone Octopus,18,2002,Light Gray,1 +Mission Deep Sea,Ogel Drone Octopus,18,2002,Red,2 +Mission Deep Sea,Ogel Drone Octopus,18,2002,Trans-Neon Green,4 +Mission Deep Sea,Ogel Drone Octopus,18,2002,White,1 +Mission Deep Sea,"Dash, Mission Deep Sea, Chupa Chups Promotional",9,2003,Black,1 +Mission Deep Sea,"Dash, Mission Deep Sea, Chupa Chups Promotional",9,2003,Dark Blue,2 +Mission Deep Sea,"Dash, Mission Deep Sea, Chupa Chups Promotional",9,2003,Dark Gray,3 +Mission Deep Sea,"Dash, Mission Deep Sea, Chupa Chups Promotional",9,2003,Trans-Dark Blue,1 +Mission Deep Sea,"Dash, Mission Deep Sea, Chupa Chups Promotional",9,2003,Yellow,1 +Mistika,Toa Tahu,73,2008,Trans-Neon Green,1 +Mistika,Toa Tahu,73,2008,Trans-Black,1 +Mistika,Toa Tahu,73,2008,Tan,1 +Mistika,Toa Tahu,73,2008,Red,1 +Mistika,Toa Tahu,73,2008,Pearl Light Gray,9 +Mistika,Toa Tahu,73,2008,Pearl Dark Gray,1 +Mistika,Toa Tahu,73,2008,Light Bluish Gray,3 +Mistika,Toa Tahu,73,2008,Dark Red,5 +Mistika,Toa Tahu,73,2008,Dark Bluish Gray,3 +Mistika,Toa Tahu,73,2008,Blue,2 +Mistika,Toa Tahu,73,2008,Black,4 +Mistika,Toa Onua,62,2008,Pearl Light Gray,4 +Mistika,Toa Onua,62,2008,Pearl Dark Gray,1 +Mistika,Toa Onua,62,2008,Light Bluish Gray,2 +Mistika,Toa Onua,62,2008,Dark Bluish Gray,3 +Mistika,Toa Onua,62,2008,Blue,1 +Mistika,Toa Onua,62,2008,Black,12 +Mistika,Toa Onua,62,2008,Trans-Red,1 +Mistika,Toa Onua,62,2008,Trans-Neon Green,1 +Mistika,Toa Onua,62,2008,Trans-Black,1 +Mistika,Toa Onua,62,2008,Red,3 +Mistika,Toa Gali,60,2008,Pearl Dark Gray,1 +Mistika,Toa Gali,60,2008,Pearl Light Gray,10 +Mistika,Toa Gali,60,2008,Red,1 +Mistika,Toa Gali,60,2008,Trans-Black,1 +Mistika,Toa Gali,60,2008,Trans-Neon Green,1 +Mistika,Toa Gali,60,2008,Trans-Red,1 +Mistika,Toa Gali,60,2008,Black,2 +Mistika,Toa Gali,60,2008,Blue,2 +Mistika,Toa Gali,60,2008,Dark Blue,4 +Mistika,Toa Gali,60,2008,Dark Bluish Gray,2 +Mistika,Toa Gali,60,2008,Light Bluish Gray,4 +Mistika,Bitil,54,2008,Black,6 +Mistika,Bitil,54,2008,Blue,1 +Mistika,Bitil,54,2008,Dark Bluish Gray,1 +Mistika,Bitil,54,2008,Flat Silver,1 +Mistika,Bitil,54,2008,Light Bluish Gray,3 +Mistika,Bitil,54,2008,Lime,1 +Mistika,Bitil,54,2008,Trans-Neon Orange,1 +Mistika,Bitil,54,2008,Yellow,4 +Mistika,Bitil,54,2008,Red,3 +Mistika,Bitil,54,2008,Pearl Light Gray,4 +Mistika,Gorast,51,2008,Trans-Neon Orange,1 +Mistika,Gorast,51,2008,Trans-Clear,1 +Mistika,Gorast,51,2008,Red,2 +Mistika,Gorast,51,2008,Pearl Light Gray,2 +Mistika,Gorast,51,2008,Lime,2 +Mistika,Gorast,51,2008,Light Bluish Gray,2 +Mistika,Gorast,51,2008,Dark Bluish Gray,2 +Mistika,Gorast,51,2008,Blue,2 +Mistika,Gorast,51,2008,Black,8 +Mistika,Krika,40,2008,White,3 +Mistika,Krika,40,2008,Trans-Red,1 +Mistika,Krika,40,2008,Red,3 +Mistika,Krika,40,2008,Pearl Light Gray,1 +Mistika,Krika,40,2008,Milky White,3 +Mistika,Krika,40,2008,Lime,1 +Mistika,Krika,40,2008,Black,6 +Mistika,Krika,40,2008,Light Bluish Gray,3 +Model,Roaring Roadsters,931,2006,Metallic Silver,3 +Model,Roaring Roadsters,931,2006,Red,20 +Model,Roaring Roadsters,931,2006,Tan,1 +Model,Roaring Roadsters,931,2006,Trans-Black,1 +Model,Roaring Roadsters,931,2006,Trans-Clear,2 +Model,Roaring Roadsters,931,2006,Trans-Neon Orange,1 +Model,Roaring Roadsters,931,2006,Trans-Red,2 +Model,Roaring Roadsters,931,2006,White,4 +Model,Roaring Roadsters,931,2006,Yellow,3 +Model,Roaring Roadsters,931,2006,Black,70 +Model,Roaring Roadsters,931,2006,Blue,2 +Model,Roaring Roadsters,931,2006,Chrome Silver,1 +Model,Roaring Roadsters,931,2006,Dark Bluish Gray,41 +Model,Roaring Roadsters,931,2006,Light Bluish Gray,44 +Model,Highway Haulers,210,2006,Black,18 +Model,Highway Haulers,210,2006,Dark Bluish Gray,10 +Model,Highway Haulers,210,2006,Light Bluish Gray,9 +Model,Highway Haulers,210,2006,Red,4 +Model,Highway Haulers,210,2006,Trans-Black,3 +Model,Highway Haulers,210,2006,Trans-Clear,1 +Model,Highway Haulers,210,2006,Trans-Neon Green,1 +Model,Highway Haulers,210,2006,Trans-Red,1 +Model,Highway Haulers,210,2006,Yellow,24 +Model,Helicopter,1055,2012,[No Color],1 +Model,Helicopter,1055,2012,Black,34 +Model,Helicopter,1055,2012,Blue,3 +Model,Helicopter,1055,2012,Dark Bluish Gray,13 +Model,Helicopter,1055,2012,Dark Tan,1 +Model,Helicopter,1055,2012,Light Bluish Gray,33 +Model,Helicopter,1055,2012,Red,26 +Model,Helicopter,1055,2012,Tan,6 +Model,Helicopter,1055,2012,Yellow,23 +Model,Pick-Up Tow Truck,953,2012,Black,53 +Model,Pick-Up Tow Truck,953,2012,[No Color],1 +Model,Pick-Up Tow Truck,953,2012,Light Bluish Gray,30 +Model,Pick-Up Tow Truck,953,2012,Blue,4 +Model,Pick-Up Tow Truck,953,2012,Dark Bluish Gray,15 +Model,Pick-Up Tow Truck,953,2012,Red,14 +Model,Pick-Up Tow Truck,953,2012,Tan,4 +Model,Pick-Up Tow Truck,953,2012,Trans-Clear,1 +Model,Pick-Up Tow Truck,953,2012,Trans-Neon Orange,1 +Model,Pick-Up Tow Truck,953,2012,Trans-Orange,4 +Model,Pick-Up Tow Truck,953,2012,Trans-Red,1 +Model,Pick-Up Tow Truck,953,2012,White,1 +Model,Pick-Up Tow Truck,953,2012,Yellow,3 +Model,Jet Plane,508,2012,Black,27 +Model,Jet Plane,508,2012,Blue,3 +Model,Jet Plane,508,2012,Dark Bluish Gray,4 +Model,Jet Plane,508,2012,Red,30 +Model,Jet Plane,508,2012,Tan,1 +Model,Jet Plane,508,2012,Light Bluish Gray,16 +Model,Jet Plane,508,2012,[No Color],1 +Model,Tractor,353,2012,Black,34 +Model,Tractor,353,2012,Blue,2 +Model,Tractor,353,2012,Dark Bluish Gray,7 +Model,Tractor,353,2012,Dark Tan,1 +Model,Tractor,353,2012,Light Bluish Gray,26 +Model,Tractor,353,2012,Lime,6 +Model,Tractor,353,2012,Red,3 +Model,Tractor,353,2012,Tan,2 +Model,Tractor,353,2012,Trans-Clear,1 +Model,Tractor,353,2012,Trans-Orange,1 +Model,Tractor,353,2012,Trans-Red,1 +Model,Tractor,353,2012,Yellow,2 +Model,Mini Crane,218,2012,Tan,1 +Model,Mini Crane,218,2012,Trans-Orange,1 +Model,Mini Crane,218,2012,Yellow,16 +Model,Mini Crane,218,2012,Light Bluish Gray,10 +Model,Mini Crane,218,2012,Dark Bluish Gray,5 +Model,Mini Crane,218,2012,Blue,3 +Model,Mini Crane,218,2012,Red,2 +Model,Mini Crane,218,2012,Black,18 +Model,Quad Bike,198,2012,Dark Bluish Gray,4 +Model,Quad Bike,198,2012,Dark Tan,1 +Model,Quad Bike,198,2012,Light Bluish Gray,17 +Model,Quad Bike,198,2012,Orange,6 +Model,Quad Bike,198,2012,Red,2 +Model,Quad Bike,198,2012,Tan,2 +Model,Quad Bike,198,2012,Trans-Clear,1 +Model,Quad Bike,198,2012,Yellow,2 +Model,Quad Bike,198,2012,Black,26 +Model,Quad Bike,198,2012,Blue,2 +Model,Maersk Line Triple-E,1515,2014,[No Color],2 +Model,Maersk Line Triple-E,1515,2014,Black,35 +Model,Maersk Line Triple-E,1515,2014,Blue,1 +Model,Maersk Line Triple-E,1515,2014,Chrome Gold,5 +Model,Maersk Line Triple-E,1515,2014,Dark Bluish Gray,10 +Model,Maersk Line Triple-E,1515,2014,Dark Red,26 +Model,Maersk Line Triple-E,1515,2014,Flat Silver,2 +Model,Maersk Line Triple-E,1515,2014,Light Bluish Gray,27 +Model,Maersk Line Triple-E,1515,2014,Medium Azure,19 +Model,Maersk Line Triple-E,1515,2014,Orange,2 +Model,Maersk Line Triple-E,1515,2014,Pearl Gold,1 +Model,Maersk Line Triple-E,1515,2014,Reddish Brown,15 +Model,Maersk Line Triple-E,1515,2014,Sand Blue,3 +Model,Maersk Line Triple-E,1515,2014,Sand Green,4 +Model,Maersk Line Triple-E,1515,2014,Trans-Black,2 +Model,Maersk Line Triple-E,1515,2014,Trans-Clear,3 +Model,Maersk Line Triple-E,1515,2014,Trans-Green,1 +Model,Maersk Line Triple-E,1515,2014,Trans-Red,1 +Model,Maersk Line Triple-E,1515,2014,White,35 +Model,Maersk Line Triple-E,1515,2014,Yellow,1 +Model Team,Highway Rig,667,1986,Black,35 +Model Team,Highway Rig,667,1986,Blue,10 +Model Team,Highway Rig,667,1986,Light Gray,50 +Model Team,Highway Rig,667,1986,Red,11 +Model Team,Highway Rig,667,1986,Trans-Clear,5 +Model Team,Highway Rig,667,1986,Trans-Red,1 +Model Team,Highway Rig,667,1986,Trans-Yellow,3 +Model Team,Highway Rig,667,1986,White,47 +Model Team,Highway Rig,667,1986,[No Color],1 +Model Team,Formula 1 Racer,446,1986,[No Color],1 +Model Team,Formula 1 Racer,446,1986,Black,39 +Model Team,Formula 1 Racer,446,1986,Light Gray,23 +Model Team,Formula 1 Racer,446,1986,Red,28 +Model Team,Formula 1 Racer,446,1986,Trans-Clear,4 +Model Team,Formula 1 Racer,446,1986,Trans-Red,1 +Model Team,Formula 1 Racer,446,1986,Trans-Yellow,1 +Model Team,Formula 1 Racer,446,1986,White,31 +Model Team,Off-Road 4x4,284,1986,[No Color],1 +Model Team,Off-Road 4x4,284,1986,Black,41 +Model Team,Off-Road 4x4,284,1986,Light Gray,28 +Model Team,Off-Road 4x4,284,1986,Red,7 +Model Team,Off-Road 4x4,284,1986,Trans-Clear,2 +Model Team,Off-Road 4x4,284,1986,Trans-Red,1 +Model Team,Off-Road 4x4,284,1986,Trans-Yellow,1 +Model Team,Off-Road 4x4,284,1986,White,2 +Model Team,Off-Road 4x4,284,1986,Yellow,29 +Model Team,Hot Rod,420,2004,Black,44 +Model Team,Hot Rod,420,2004,Blue,28 +Model Team,Hot Rod,420,2004,Chrome Silver,3 +Model Team,Hot Rod,420,2004,Light Bluish Gray,47 +Model Team,Hot Rod,420,2004,Red,14 +Model Team,Hot Rod,420,2004,Trans-Red,1 +Model Team,Hot Rod,420,2004,Trans-Yellow,1 +Modular Buildings,Cafe Corner,2058,2007,Black,28 +Modular Buildings,Cafe Corner,2058,2007,Blue,1 +Modular Buildings,Cafe Corner,2058,2007,Dark Blue,13 +Modular Buildings,Cafe Corner,2058,2007,Dark Bluish Gray,40 +Modular Buildings,Cafe Corner,2058,2007,Dark Red,9 +Modular Buildings,Cafe Corner,2058,2007,Dark Tan,1 +Modular Buildings,Cafe Corner,2058,2007,Green,1 +Modular Buildings,Cafe Corner,2058,2007,Light Bluish Gray,53 +Modular Buildings,Cafe Corner,2058,2007,Lime,1 +Modular Buildings,Cafe Corner,2058,2007,Medium Blue,5 +Modular Buildings,Cafe Corner,2058,2007,Metallic Silver,1 +Modular Buildings,Cafe Corner,2058,2007,Red,3 +Modular Buildings,Cafe Corner,2058,2007,Reddish Brown,33 +Modular Buildings,Cafe Corner,2058,2007,Tan,28 +Modular Buildings,Cafe Corner,2058,2007,Trans-Clear,4 +Modular Buildings,Cafe Corner,2058,2007,Trans-Red,2 +Modular Buildings,Cafe Corner,2058,2007,Trans-Yellow,1 +Modular Buildings,Cafe Corner,2058,2007,White,36 +Modular Buildings,Cafe Corner,2058,2007,Yellow,7 +Modular Buildings,Market Street,1250,2007,Black,37 +Modular Buildings,Market Street,1250,2007,Blue,2 +Modular Buildings,Market Street,1250,2007,Bright Green,2 +Modular Buildings,Market Street,1250,2007,Dark Blue,9 +Modular Buildings,Market Street,1250,2007,Dark Bluish Gray,25 +Modular Buildings,Market Street,1250,2007,Dark Orange,1 +Modular Buildings,Market Street,1250,2007,Dark Tan,1 +Modular Buildings,Market Street,1250,2007,Green,4 +Modular Buildings,Market Street,1250,2007,Light Bluish Gray,35 +Modular Buildings,Market Street,1250,2007,Lime,1 +Modular Buildings,Market Street,1250,2007,Medium Blue,9 +Modular Buildings,Market Street,1250,2007,Metallic Silver,1 +Modular Buildings,Market Street,1250,2007,Red,1 +Modular Buildings,Market Street,1250,2007,Reddish Brown,5 +Modular Buildings,Market Street,1250,2007,Tan,24 +Modular Buildings,Market Street,1250,2007,Trans-Clear,1 +Modular Buildings,Market Street,1250,2007,White,30 +Modular Buildings,Market Street,1250,2007,Yellow,5 +Modular Buildings,Assembly Square,4009,2017,Black,104 +Modular Buildings,Assembly Square,4009,2017,Blue,5 +Modular Buildings,Assembly Square,4009,2017,Bright Green,5 +Modular Buildings,Assembly Square,4009,2017,Bright Light Blue,3 +Modular Buildings,Assembly Square,4009,2017,Bright Light Orange,1 +Modular Buildings,Assembly Square,4009,2017,Bright Pink,2 +Modular Buildings,Assembly Square,4009,2017,Dark Blue,19 +Modular Buildings,Assembly Square,4009,2017,Dark Bluish Gray,63 +Modular Buildings,Assembly Square,4009,2017,Dark Brown,2 +Modular Buildings,Assembly Square,4009,2017,Dark Green,2 +Modular Buildings,Assembly Square,4009,2017,Dark Orange,1 +Modular Buildings,Assembly Square,4009,2017,Dark Red,10 +Modular Buildings,Assembly Square,4009,2017,Dark Tan,16 +Modular Buildings,Assembly Square,4009,2017,Flat Silver,3 +Modular Buildings,Assembly Square,4009,2017,Green,13 +Modular Buildings,Assembly Square,4009,2017,Lavender,1 +Modular Buildings,Assembly Square,4009,2017,Light Aqua,1 +Modular Buildings,Assembly Square,4009,2017,Light Bluish Gray,108 +Modular Buildings,Assembly Square,4009,2017,Magenta,2 +Modular Buildings,Assembly Square,4009,2017,Medium Blue,4 +Modular Buildings,Assembly Square,4009,2017,Medium Dark Flesh,11 +Modular Buildings,Assembly Square,4009,2017,Medium Lavender,3 +Modular Buildings,Assembly Square,4009,2017,Metallic Silver,3 +Modular Buildings,Assembly Square,4009,2017,Olive Green,4 +Modular Buildings,Assembly Square,4009,2017,Orange,2 +Modular Buildings,Assembly Square,4009,2017,Pearl Dark Gray,1 +Modular Buildings,Assembly Square,4009,2017,Pearl Gold,7 +Modular Buildings,Assembly Square,4009,2017,Red,19 +Modular Buildings,Assembly Square,4009,2017,Reddish Brown,50 +Modular Buildings,Assembly Square,4009,2017,Sand Blue,10 +Modular Buildings,Assembly Square,4009,2017,Sand Green,5 +Modular Buildings,Assembly Square,4009,2017,Tan,42 +Modular Buildings,Assembly Square,4009,2017,Trans-Black,1 +Modular Buildings,Assembly Square,4009,2017,Trans-Bright Green,1 +Modular Buildings,Assembly Square,4009,2017,Trans-Clear,19 +Modular Buildings,Assembly Square,4009,2017,Trans-Dark Blue,2 +Modular Buildings,Assembly Square,4009,2017,Trans-Green,1 +Modular Buildings,Assembly Square,4009,2017,Trans-Light Blue,6 +Modular Buildings,Assembly Square,4009,2017,Trans-Orange,2 +Modular Buildings,Assembly Square,4009,2017,Trans-Red,1 +Modular Buildings,Assembly Square,4009,2017,Trans-Yellow,3 +Modular Buildings,Assembly Square,4009,2017,White,108 +Modular Buildings,Assembly Square,4009,2017,Yellow,10 +Monster Fighters,Haunted House,2062,2012,Tan,5 +Monster Fighters,Haunted House,2062,2012,Trans-Black,1 +Monster Fighters,Haunted House,2062,2012,Trans-Clear,6 +Monster Fighters,Haunted House,2062,2012,Trans-Dark Blue,1 +Monster Fighters,Haunted House,2062,2012,White,21 +Monster Fighters,Haunted House,2062,2012,Yellow,1 +Monster Fighters,Haunted House,2062,2012,Dark Brown,5 +Monster Fighters,Haunted House,2062,2012,Black,54 +Monster Fighters,Haunted House,2062,2012,Dark Bluish Gray,18 +Monster Fighters,Haunted House,2062,2012,Dark Green,1 +Monster Fighters,Haunted House,2062,2012,Dark Red,3 +Monster Fighters,Haunted House,2062,2012,Dark Tan,2 +Monster Fighters,Haunted House,2062,2012,Flat Silver,2 +Monster Fighters,Haunted House,2062,2012,Glow in Dark White,3 +Monster Fighters,Haunted House,2062,2012,Green,2 +Monster Fighters,Haunted House,2062,2012,Light Bluish Gray,49 +Monster Fighters,Haunted House,2062,2012,Metallic Silver,1 +Monster Fighters,Haunted House,2062,2012,Orange,1 +Monster Fighters,Haunted House,2062,2012,Pearl Gold,2 +Monster Fighters,Haunted House,2062,2012,Red,1 +Monster Fighters,Haunted House,2062,2012,Reddish Brown,38 +Monster Fighters,Haunted House,2062,2012,Sand Green,8 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Neon Green,1 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Neon Orange,2 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Orange,1 +Monster Fighters,The Vampyre Castle,942,2012,[No Color],1 +Monster Fighters,The Vampyre Castle,942,2012,Black,37 +Monster Fighters,The Vampyre Castle,942,2012,Blue,2 +Monster Fighters,The Vampyre Castle,942,2012,Dark Bluish Gray,50 +Monster Fighters,The Vampyre Castle,942,2012,Dark Red,7 +Monster Fighters,The Vampyre Castle,942,2012,Dark Tan,7 +Monster Fighters,The Vampyre Castle,942,2012,Flat Silver,1 +Monster Fighters,The Vampyre Castle,942,2012,Glow in Dark White,5 +Monster Fighters,The Vampyre Castle,942,2012,Green,2 +Monster Fighters,The Vampyre Castle,942,2012,Light Bluish Gray,56 +Monster Fighters,The Vampyre Castle,942,2012,Orange,1 +Monster Fighters,The Vampyre Castle,942,2012,Dark Brown,6 +Monster Fighters,The Vampyre Castle,942,2012,Dark Orange,1 +Monster Fighters,The Vampyre Castle,942,2012,Pearl Dark Gray,1 +Monster Fighters,The Vampyre Castle,942,2012,Pearl Gold,2 +Monster Fighters,The Vampyre Castle,942,2012,Yellow,2 +Monster Fighters,The Vampyre Castle,942,2012,White,7 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Yellow,1 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Red,4 +Monster Fighters,The Vampyre Castle,942,2012,Red,7 +Monster Fighters,The Vampyre Castle,942,2012,Reddish Brown,23 +Monster Fighters,The Vampyre Castle,942,2012,Sand Blue,1 +Monster Fighters,The Vampyre Castle,942,2012,Sand Green,7 +Monster Fighters,The Vampyre Castle,942,2012,Tan,7 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Black,1 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Clear,3 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Dark Blue,2 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Green,3 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Purple,1 +Monster Fighters,The Vampyre Castle,942,2012,Trans-Light Blue,1 +Monster Fighters,The Ghost Train,741,2012,Trans-Orange,2 +Monster Fighters,The Ghost Train,741,2012,White,14 +Monster Fighters,The Ghost Train,741,2012,Yellow,3 +Monster Fighters,The Ghost Train,741,2012,Light Bluish Gray,27 +Monster Fighters,The Ghost Train,741,2012,Black,55 +Monster Fighters,The Ghost Train,741,2012,Blue,2 +Monster Fighters,The Ghost Train,741,2012,Chrome Silver,1 +Monster Fighters,The Ghost Train,741,2012,Dark Bluish Gray,35 +Monster Fighters,The Ghost Train,741,2012,Dark Brown,1 +Monster Fighters,The Ghost Train,741,2012,Dark Orange,1 +Monster Fighters,The Ghost Train,741,2012,Dark Red,12 +Monster Fighters,The Ghost Train,741,2012,Dark Tan,2 +Monster Fighters,The Ghost Train,741,2012,Flat Silver,2 +Monster Fighters,The Ghost Train,741,2012,Glow in Dark White,4 +Monster Fighters,The Ghost Train,741,2012,Green,1 +Monster Fighters,The Ghost Train,741,2012,Olive Green,1 +Monster Fighters,The Ghost Train,741,2012,Orange,1 +Monster Fighters,The Ghost Train,741,2012,Pearl Gold,4 +Monster Fighters,The Ghost Train,741,2012,Red,8 +Monster Fighters,The Ghost Train,741,2012,Reddish Brown,5 +Monster Fighters,The Ghost Train,741,2012,Sand Blue,1 +Monster Fighters,The Ghost Train,741,2012,Tan,2 +Monster Fighters,The Ghost Train,741,2012,Trans-Black,1 +Monster Fighters,The Ghost Train,741,2012,Trans-Bright Green,2 +Monster Fighters,The Ghost Train,741,2012,Trans-Clear,1 +Monster Fighters,The Ghost Train,741,2012,Trans-Light Blue,1 +Monster Fighters,The Ghost Train,741,2012,Trans-Neon Green,1 +Monster Fighters,The Zombies,447,2012,Tan,4 +Monster Fighters,The Zombies,447,2012,Sand Blue,1 +Monster Fighters,The Zombies,447,2012,Reddish Brown,9 +Monster Fighters,The Zombies,447,2012,Blue,1 +Monster Fighters,The Zombies,447,2012,Dark Blue,2 +Monster Fighters,The Zombies,447,2012,Dark Bluish Gray,37 +Monster Fighters,The Zombies,447,2012,Dark Brown,1 +Monster Fighters,The Zombies,447,2012,Dark Green,1 +Monster Fighters,The Zombies,447,2012,Dark Red,5 +Monster Fighters,The Zombies,447,2012,Glow in Dark White,1 +Monster Fighters,The Zombies,447,2012,Dark Tan,2 +Monster Fighters,The Zombies,447,2012,Flat Silver,2 +Monster Fighters,The Zombies,447,2012,Black,37 +Monster Fighters,The Zombies,447,2012,Green,1 +Monster Fighters,The Zombies,447,2012,Light Bluish Gray,40 +Monster Fighters,The Zombies,447,2012,Pearl Gold,3 +Monster Fighters,The Zombies,447,2012,Red,2 +Monster Fighters,The Zombies,447,2012,Yellow,1 +Monster Fighters,The Zombies,447,2012,Trans-Clear,1 +Monster Fighters,The Zombies,447,2012,White,5 +Monster Fighters,The Zombies,447,2012,Trans-Black,1 +Monster Fighters,The Zombies,447,2012,Trans-Dark Blue,1 +Monster Fighters,The Zombies,447,2012,Trans-Dark Pink,1 +Monster Fighters,The Zombies,447,2012,Trans-Light Blue,1 +Monster Fighters,The Zombies,447,2012,Trans-Neon Green,3 +Monster Fighters,The Zombies,447,2012,Trans-Neon Orange,1 +Monster Fighters,The Zombies,447,2012,Trans-Orange,1 +Monster Fighters,The Zombies,447,2012,Trans-Red,1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Olive Green,2 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Medium Blue,11 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Light Bluish Gray,43 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Glow in Dark White,3 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Flat Silver,1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Dark Tan,5 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Dark Red,1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Dark Brown,6 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Dark Bluish Gray,41 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Blue,2 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Black,39 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,[No Color],1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Yellow,5 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Reddish Brown,14 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Green,1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Sand Green,1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Tan,1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Trans-Black,2 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Trans-Clear,3 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Trans-Dark Blue,1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Trans-Green,1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Trans-Light Blue,1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Trans-Neon Green,6 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Trans-Neon Orange,1 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Trans-Red,4 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Red,4 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,White,4 +Monster Fighters,The Crazy Scientist & His Monster,429,2012,Pearl Gold,2 +Monster Fighters,The Vampire Hearse,313,2012,Pearl Light Gray,1 +Monster Fighters,The Vampire Hearse,313,2012,Pearl Gold,3 +Monster Fighters,The Vampire Hearse,313,2012,Pearl Dark Gray,1 +Monster Fighters,The Vampire Hearse,313,2012,Yellow,1 +Monster Fighters,The Vampire Hearse,313,2012,Black,60 +Monster Fighters,The Vampire Hearse,313,2012,Dark Blue,2 +Monster Fighters,The Vampire Hearse,313,2012,Dark Bluish Gray,10 +Monster Fighters,The Vampire Hearse,313,2012,Dark Red,2 +Monster Fighters,The Vampire Hearse,313,2012,Flat Silver,1 +Monster Fighters,The Vampire Hearse,313,2012,Glow in Dark White,1 +Monster Fighters,The Vampire Hearse,313,2012,White,5 +Monster Fighters,The Vampire Hearse,313,2012,Trans-Yellow,2 +Monster Fighters,The Vampire Hearse,313,2012,[No Color],1 +Monster Fighters,The Vampire Hearse,313,2012,Trans-Red,4 +Monster Fighters,The Vampire Hearse,313,2012,Trans-Neon Orange,1 +Monster Fighters,The Vampire Hearse,313,2012,Trans-Clear,2 +Monster Fighters,The Vampire Hearse,313,2012,Metallic Silver,1 +Monster Fighters,The Vampire Hearse,313,2012,Sand Green,1 +Monster Fighters,The Vampire Hearse,313,2012,Reddish Brown,1 +Monster Fighters,The Vampire Hearse,313,2012,Red,6 +Monster Fighters,The Vampire Hearse,313,2012,Light Bluish Gray,19 +Monster Fighters,The Vampire Hearse,313,2012,Trans-Black,1 +Monster Fighters,The Werewolf,243,2012,Olive Green,1 +Monster Fighters,The Werewolf,243,2012,Pearl Gold,2 +Monster Fighters,The Werewolf,243,2012,Red,2 +Monster Fighters,The Werewolf,243,2012,Reddish Brown,10 +Monster Fighters,The Werewolf,243,2012,Tan,9 +Monster Fighters,The Werewolf,243,2012,Trans-Clear,2 +Monster Fighters,The Werewolf,243,2012,Trans-Neon Orange,1 +Monster Fighters,The Werewolf,243,2012,Trans-Orange,1 +Monster Fighters,The Werewolf,243,2012,Trans-Red,1 +Monster Fighters,The Werewolf,243,2012,White,4 +Monster Fighters,The Werewolf,243,2012,Yellow,1 +Monster Fighters,The Werewolf,243,2012,Blue,2 +Monster Fighters,The Werewolf,243,2012,Black,14 +Monster Fighters,The Werewolf,243,2012,Dark Bluish Gray,8 +Monster Fighters,The Werewolf,243,2012,Dark Brown,5 +Monster Fighters,The Werewolf,243,2012,Dark Green,4 +Monster Fighters,The Werewolf,243,2012,Dark Red,1 +Monster Fighters,The Werewolf,243,2012,Dark Tan,3 +Monster Fighters,The Werewolf,243,2012,Flat Silver,2 +Monster Fighters,The Werewolf,243,2012,Glow in Dark White,1 +Monster Fighters,The Werewolf,243,2012,Green,3 +Monster Fighters,The Werewolf,243,2012,Light Bluish Gray,8 +Monster Fighters,The Mummy,91,2012,Light Bluish Gray,3 +Monster Fighters,The Mummy,91,2012,Glow in Dark White,1 +Monster Fighters,The Mummy,91,2012,Flat Silver,3 +Monster Fighters,The Mummy,91,2012,Dark Tan,1 +Monster Fighters,The Mummy,91,2012,Dark Red,2 +Monster Fighters,The Mummy,91,2012,Dark Orange,1 +Monster Fighters,The Mummy,91,2012,Dark Brown,1 +Monster Fighters,The Mummy,91,2012,Blue,1 +Monster Fighters,The Mummy,91,2012,Black,6 +Monster Fighters,The Mummy,91,2012,Medium Dark Flesh,1 +Monster Fighters,The Mummy,91,2012,Pearl Gold,4 +Monster Fighters,The Mummy,91,2012,White,5 +Monster Fighters,The Mummy,91,2012,Trans-Purple,1 +Monster Fighters,The Mummy,91,2012,Trans-Neon Orange,1 +Monster Fighters,The Mummy,91,2012,Yellow,1 +Monster Fighters,The Mummy,91,2012,Dark Bluish Gray,9 +Monster Fighters,The Mummy,91,2012,Trans-Neon Green,1 +Monster Fighters,The Mummy,91,2012,Tan,2 +Monster Fighters,The Mummy,91,2012,Sand Blue,1 +Monster Fighters,The Mummy,91,2012,Reddish Brown,3 +Monster Fighters,The Mummy,91,2012,Red,1 +Monster Fighters,The Mummy,91,2012,Pearl Dark Gray,1 +Monster Fighters,The Swamp Creature,70,2012,White,1 +Monster Fighters,The Swamp Creature,70,2012,Yellow,1 +Monster Fighters,The Swamp Creature,70,2012,Sand Green,1 +Monster Fighters,The Swamp Creature,70,2012,Trans-Yellow,1 +Monster Fighters,The Swamp Creature,70,2012,Trans-Neon Green,1 +Monster Fighters,The Swamp Creature,70,2012,Trans-Green,2 +Monster Fighters,The Swamp Creature,70,2012,Trans-Dark Blue,1 +Monster Fighters,The Swamp Creature,70,2012,Tan,3 +Monster Fighters,The Swamp Creature,70,2012,Reddish Brown,2 +Monster Fighters,The Swamp Creature,70,2012,Olive Green,1 +Monster Fighters,The Swamp Creature,70,2012,Lime,1 +Monster Fighters,The Swamp Creature,70,2012,Light Bluish Gray,6 +Monster Fighters,The Swamp Creature,70,2012,Flat Silver,3 +Monster Fighters,The Swamp Creature,70,2012,Dark Red,1 +Monster Fighters,The Swamp Creature,70,2012,Dark Green,1 +Monster Fighters,The Swamp Creature,70,2012,Dark Brown,2 +Monster Fighters,The Swamp Creature,70,2012,Dark Bluish Gray,4 +Monster Fighters,The Swamp Creature,70,2012,Blue,1 +Monster Fighters,The Swamp Creature,70,2012,Black,6 +Monster Fighters,The Swamp Creature,70,2012,Green,4 +Monster Fighters,Zombie Car,60,2012,Reddish Brown,1 +Monster Fighters,Zombie Car,60,2012,Trans-Clear,1 +Monster Fighters,Zombie Car,60,2012,Trans-Neon Orange,1 +Monster Fighters,Zombie Car,60,2012,Trans-Red,1 +Monster Fighters,Zombie Car,60,2012,Trans-Yellow,1 +Monster Fighters,Zombie Car,60,2012,White,3 +Monster Fighters,Zombie Car,60,2012,Light Bluish Gray,4 +Monster Fighters,Zombie Car,60,2012,Black,11 +Monster Fighters,Zombie Car,60,2012,Dark Blue,2 +Monster Fighters,Zombie Car,60,2012,Dark Bluish Gray,6 +Monster Fighters,Zombie Car,60,2012,Flat Silver,1 +Monster Fighters,Zombie Car,60,2012,Glow in Dark White,1 +Monster Fighters,Halloween Accessory Set,56,2012,Glow in Dark White,1 +Monster Fighters,Halloween Accessory Set,56,2012,Bright Green,1 +Monster Fighters,Halloween Accessory Set,56,2012,Dark Green,4 +Monster Fighters,Halloween Accessory Set,56,2012,Red,1 +Monster Fighters,Halloween Accessory Set,56,2012,White,1 +Monster Fighters,Halloween Accessory Set,56,2012,Reddish Brown,5 +Monster Fighters,Halloween Accessory Set,56,2012,Black,8 +Monster Fighters,Halloween Accessory Set,56,2012,Light Bluish Gray,3 +Monster Fighters,Halloween Accessory Set,56,2012,Green,2 +Monster Fighters,Halloween Accessory Set,56,2012,Dark Bluish Gray,9 +Monster Fighters,Ghost,33,2012,Black,3 +Monster Fighters,Ghost,33,2012,White,4 +Monster Fighters,Ghost,33,2012,Tan,1 +Monster Fighters,Ghost,33,2012,Reddish Brown,10 +Monster Fighters,Ghost,33,2012,Light Bluish Gray,1 +Monster Fighters,Ghost,33,2012,Glow in Dark White,1 +Monster Fighters,Zombie Chauffeur Coffin Car,32,2012,Dark Blue,2 +Monster Fighters,Zombie Chauffeur Coffin Car,32,2012,Dark Bluish Gray,4 +Monster Fighters,Zombie Chauffeur Coffin Car,32,2012,Light Bluish Gray,1 +Monster Fighters,Zombie Chauffeur Coffin Car,32,2012,Trans-Neon Orange,1 +Monster Fighters,Zombie Chauffeur Coffin Car,32,2012,Trans-Red,1 +Monster Fighters,Zombie Chauffeur Coffin Car,32,2012,White,1 +Monster Fighters,Zombie Chauffeur Coffin Car,32,2012,Black,10 +Monster Fighters,Monster Fighters Promotional Pack,11,2012,White,5 +Monster Fighters,Monster Fighters Promotional Pack,11,2012,Trans-Red,1 +Monster Fighters,Monster Fighters Promotional Pack,11,2012,Trans-Green,1 +Monster Fighters,Monster Fighters Promotional Pack,11,2012,Glow in Dark White,1 +Monster Fighters,Monster Fighters Promotional Pack,11,2012,Black,1 +Monster Fighters,Monster Fighters Promotional Pack,11,2012,[No Color],1 +Monthly Mini Model Build,Monthly Mini Model Build August 2009 - Lobster,49,2009,Red,17 +Monthly Mini Model Build,Monthly Mini Model Build June 2009 - Sailing Boat,27,2009,Black,1 +Monthly Mini Model Build,Monthly Mini Model Build June 2009 - Sailing Boat,27,2009,Blue,3 +Monthly Mini Model Build,Monthly Mini Model Build June 2009 - Sailing Boat,27,2009,Red,1 +Monthly Mini Model Build,Monthly Mini Model Build June 2009 - Sailing Boat,27,2009,Tan,2 +Monthly Mini Model Build,Monthly Mini Model Build June 2009 - Sailing Boat,27,2009,White,5 +Monthly Mini Model Build,Monthly Mini Model Build February 2009 - Heart,15,2009,Red,6 +Monthly Mini Model Build,Monthly Mini Model Build July 2009 - US Flag,15,2009,Blue,1 +Monthly Mini Model Build,Monthly Mini Model Build July 2009 - US Flag,15,2009,Red,2 +Monthly Mini Model Build,Monthly Mini Model Build July 2009 - US Flag,15,2009,White,2 +Monthly Mini Model Build,Monthly Mini Model Build April 2017 - Chick,54,2017,Black,1 +Monthly Mini Model Build,Monthly Mini Model Build April 2017 - Chick,54,2017,Bright Light Orange,2 +Monthly Mini Model Build,Monthly Mini Model Build April 2017 - Chick,54,2017,Green,1 +Monthly Mini Model Build,Monthly Mini Model Build April 2017 - Chick,54,2017,Light Bluish Gray,1 +Monthly Mini Model Build,Monthly Mini Model Build April 2017 - Chick,54,2017,Lime,1 +Monthly Mini Model Build,Monthly Mini Model Build April 2017 - Chick,54,2017,Orange,1 +Monthly Mini Model Build,Monthly Mini Model Build April 2017 - Chick,54,2017,Red,1 +Monthly Mini Model Build,Monthly Mini Model Build April 2017 - Chick,54,2017,Tan,1 +Monthly Mini Model Build,Monthly Mini Model Build April 2017 - Chick,54,2017,White,5 +Monthly Mini Model Build,Monthly Mini Model Build April 2017 - Chick,54,2017,Yellow,10 +Monthly Mini Model Build,Monthly Mini Model Build May 2017 - Racecar,52,2017,Light Bluish Gray,4 +Monthly Mini Model Build,Monthly Mini Model Build May 2017 - Racecar,52,2017,Black,6 +Monthly Mini Model Build,Monthly Mini Model Build May 2017 - Racecar,52,2017,Flat Silver,2 +Monthly Mini Model Build,Monthly Mini Model Build May 2017 - Racecar,52,2017,Yellow,1 +Monthly Mini Model Build,Monthly Mini Model Build May 2017 - Racecar,52,2017,Lime,1 +Monthly Mini Model Build,Monthly Mini Model Build May 2017 - Racecar,52,2017,Red,9 +Monthly Mini Model Build,Monthly Mini Model Build May 2017 - Racecar,52,2017,Trans-Red,1 +Monthly Mini Model Build,Monthly Mini Model Build May 2017 - Racecar,52,2017,White,3 +Monthly Mini Model Build,Monthly Mini Model Build February 2017 - Raccoon,47,2017,Black,7 +Monthly Mini Model Build,Monthly Mini Model Build February 2017 - Raccoon,47,2017,Dark Bluish Gray,4 +Monthly Mini Model Build,Monthly Mini Model Build February 2017 - Raccoon,47,2017,Dark Orange,1 +Monthly Mini Model Build,Monthly Mini Model Build February 2017 - Raccoon,47,2017,Flat Silver,1 +Monthly Mini Model Build,Monthly Mini Model Build February 2017 - Raccoon,47,2017,Light Bluish Gray,8 +Monthly Mini Model Build,Monthly Mini Model Build February 2017 - Raccoon,47,2017,White,5 +Monthly Mini Model Build,Monthly Mini Model Build January 2017 - Narwhal,45,2017,Black,1 +Monthly Mini Model Build,Monthly Mini Model Build January 2017 - Narwhal,45,2017,Blue,1 +Monthly Mini Model Build,Monthly Mini Model Build January 2017 - Narwhal,45,2017,Dark Bluish Gray,10 +Monthly Mini Model Build,Monthly Mini Model Build January 2017 - Narwhal,45,2017,Light Bluish Gray,5 +Monthly Mini Model Build,Monthly Mini Model Build January 2017 - Narwhal,45,2017,Tan,2 +Monthly Mini Model Build,Monthly Mini Model Build January 2017 - Narwhal,45,2017,White,8 +Monthly Mini Model Build,Monthly Mini Model Build January 2017 - Narwhal,45,2017,Red,1 +Monthly Mini Model Build,Monthly Mini Model Build June 2017 - Dragonfly,37,2017,Blue,4 +Monthly Mini Model Build,Monthly Mini Model Build June 2017 - Dragonfly,37,2017,Green,4 +Monthly Mini Model Build,Monthly Mini Model Build June 2017 - Dragonfly,37,2017,Light Bluish Gray,1 +Monthly Mini Model Build,Monthly Mini Model Build June 2017 - Dragonfly,37,2017,Lime,3 +Monthly Mini Model Build,Monthly Mini Model Build June 2017 - Dragonfly,37,2017,Trans-Green,1 +Monthly Mini Model Build,Monthly Mini Model Build June 2017 - Dragonfly,37,2017,White,2 +Monthly Mini Model Build,Monthly Mini Model Build June 2017 - Dragonfly,37,2017,Black,3 +Monthly Mini Model Build,Monthly Mini Model Build March 2017 - Platypus,36,2017,Dark Bluish Gray,4 +Monthly Mini Model Build,Monthly Mini Model Build March 2017 - Platypus,36,2017,Dark Brown,2 +Monthly Mini Model Build,Monthly Mini Model Build March 2017 - Platypus,36,2017,Light Bluish Gray,1 +Monthly Mini Model Build,Monthly Mini Model Build March 2017 - Platypus,36,2017,Reddish Brown,6 +Monthly Mini Model Build,Monthly Mini Model Build March 2017 - Platypus,36,2017,Tan,1 +Monthly Mini Model Build,Monthly Mini Model Build March 2017 - Platypus,36,2017,White,1 +Monthly Mini Model Build,Monthly Mini Model Build March 2017 - Platypus,36,2017,Black,3 +Mosaic,Lego Mosaik Set (Small),47,1955,Blue,3 +Mosaic,Lego Mosaik Set (Small),47,1955,Red,3 +Mosaic,Lego Mosaik Set (Small),47,1955,White,5 +Mosaic,Lego Mosaik Set (Small),47,1955,Yellow,2 +Mosaic,Lego Mosaic Dino,2846,2003,Black,6 +Mosaic,Lego Mosaic Dino,2846,2003,Dark Bluish Gray,2 +Mosaic,Lego Mosaic Dino,2846,2003,Light Bluish Gray,2 +Mosaic,Lego Mosaic Dino,2846,2003,White,1 +Mosaic,Lego Mosaic Tiger,2216,2003,Black,6 +Mosaic,Lego Mosaic Tiger,2216,2003,Dark Bluish Gray,2 +Mosaic,Lego Mosaic Tiger,2216,2003,Light Bluish Gray,2 +Mosaic,Lego Mosaic Tiger,2216,2003,White,1 +Mosaic,Lego Mosaic Cat,2126,2003,Black,6 +Mosaic,Lego Mosaic Cat,2126,2003,Dark Bluish Gray,2 +Mosaic,Lego Mosaic Cat,2126,2003,Light Bluish Gray,2 +Mosaic,Lego Mosaic Cat,2126,2003,White,1 +Mosaic,Lego Mosaic Johnny Thunder,2126,2003,Black,6 +Mosaic,Lego Mosaic Johnny Thunder,2126,2003,Dark Bluish Gray,2 +Mosaic,Lego Mosaic Johnny Thunder,2126,2003,Light Bluish Gray,2 +Mosaic,Lego Mosaic Johnny Thunder,2126,2003,White,1 +Mosaic,Personalised Mosaic Portrait,4501,2016,Black,1 +Mosaic,Personalised Mosaic Portrait,4501,2016,Dark Bluish Gray,1 +Mosaic,Personalised Mosaic Portrait,4501,2016,Light Bluish Gray,2 +Mosaic,Personalised Mosaic Portrait,4501,2016,Orange,1 +Mosaic,Personalised Mosaic Portrait,4501,2016,White,1 +Mosaic,Personalised Mosaic Portrait,4501,2016,Yellow,1 +My Own Creation,Blacksmith Shop,629,2002,Black,36 +My Own Creation,Blacksmith Shop,629,2002,Blue,11 +My Own Creation,Blacksmith Shop,629,2002,Brown,16 +My Own Creation,Blacksmith Shop,629,2002,Chrome Gold,5 +My Own Creation,Blacksmith Shop,629,2002,Dark Gray,11 +My Own Creation,Blacksmith Shop,629,2002,Green,5 +My Own Creation,Blacksmith Shop,629,2002,Light Gray,28 +My Own Creation,Blacksmith Shop,629,2002,Red,7 +My Own Creation,Blacksmith Shop,629,2002,Trans-Clear,1 +My Own Creation,Blacksmith Shop,629,2002,Trans-Neon Orange,3 +My Own Creation,Blacksmith Shop,629,2002,Trans-Red,1 +My Own Creation,Blacksmith Shop,629,2002,White,9 +My Own Creation,Blacksmith Shop,629,2002,Yellow,5 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Trans-Light Blue,1 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Black,8 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,White,10 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Brown,2 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Dark Gray,15 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Light Gray,34 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Pearl Light Gray,1 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Red,1 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Trans-Clear,3 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Trans-Green,1 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Trans-Red,1 +My Own Creation,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",410,2002,Trans-Yellow,1 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,Light Gray,30 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,Pearl Light Gray,1 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,Red,1 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,Trans-Clear,2 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,Trans-Light Blue,1 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,Trans-Yellow,1 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,White,3 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,Yellow,1 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,Black,8 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,Brown,4 +My Own Creation,Santa Fe Cars - Set I (mail or baggage car),325,2002,Dark Gray,14 +My Own Train,Hopper Wagon,228,2001,Black,24 +My Own Train,Hopper Wagon,228,2001,Blue,7 +My Own Train,Hopper Wagon,228,2001,Brown,1 +My Own Train,Hopper Wagon,228,2001,Dark Gray,3 +My Own Train,Hopper Wagon,228,2001,Light Gray,1 +My Own Train,Hopper Wagon,228,2001,Tan,9 +My Own Train,Passenger Wagon,194,2001,Green,7 +My Own Train,Passenger Wagon,194,2001,Light Gray,1 +My Own Train,Passenger Wagon,194,2001,Black,19 +My Own Train,Passenger Wagon,194,2001,Brown,1 +My Own Train,Passenger Wagon,194,2001,Dark Gray,4 +My Own Train,Passenger Wagon,194,2001,Red,4 +My Own Train,Passenger Wagon,194,2001,Trans-Clear,1 +My Own Train,Passenger Wagon,194,2001,Trans-Light Blue,1 +My Own Train,Passenger Wagon,194,2001,Trans-Red,1 +My Own Train,Caboose,170,2001,Black,21 +My Own Train,Caboose,170,2001,Brown,2 +My Own Train,Caboose,170,2001,Dark Gray,7 +My Own Train,Caboose,170,2001,Light Gray,2 +My Own Train,Caboose,170,2001,Red,15 +My Own Train,Caboose,170,2001,Trans-Light Blue,1 +My Own Train,Caboose,170,2001,Yellow,3 +My Own Train,Caboose,170,2001,Trans-Red,1 +My Own Train,Tanker,128,2001,White,9 +My Own Train,Tanker,128,2001,Black,14 +My Own Train,Tanker,128,2001,Dark Gray,7 +My Own Train,Tanker,128,2001,Green,2 +My Own Train,Tanker,128,2001,Red,9 +My Own Train,Open Freight Wagon,121,2001,Black,17 +My Own Train,Open Freight Wagon,121,2001,Dark Gray,2 +My Own Train,Open Freight Wagon,121,2001,Light Gray,2 +My Own Train,Open Freight Wagon,121,2001,Blue,4 +My Own Train,Open Freight Wagon,121,2001,Brown,1 +My Own Train,Locomotive Brown Bricks,106,2001,White,1 +My Own Train,Locomotive Gray Bricks,106,2001,Black,15 +My Own Train,Locomotive Gray Bricks,106,2001,Dark Gray,15 +My Own Train,Locomotive Gray Bricks,106,2001,Trans-Neon Green,1 +My Own Train,Locomotive Gray Bricks,106,2001,Trans-Red,1 +My Own Train,Locomotive Gray Bricks,106,2001,White,1 +My Own Train,Locomotive Green Bricks,106,2001,Black,15 +My Own Train,Locomotive Green Bricks,106,2001,Dark Gray,3 +My Own Train,Locomotive Green Bricks,106,2001,Green,12 +My Own Train,Locomotive Green Bricks,106,2001,Trans-Neon Green,1 +My Own Train,Locomotive Green Bricks,106,2001,Trans-Red,1 +My Own Train,Locomotive Green Bricks,106,2001,White,1 +My Own Train,Locomotive Black Bricks,106,2001,Black,26 +My Own Train,Locomotive Black Bricks,106,2001,Dark Gray,3 +My Own Train,Locomotive Black Bricks,106,2001,Trans-Neon Green,1 +My Own Train,Locomotive Black Bricks,106,2001,Trans-Red,1 +My Own Train,Locomotive Black Bricks,106,2001,White,1 +My Own Train,Locomotive Blue Bricks,106,2001,Black,15 +My Own Train,Locomotive Blue Bricks,106,2001,Blue,12 +My Own Train,Locomotive Blue Bricks,106,2001,Dark Gray,3 +My Own Train,Locomotive Blue Bricks,106,2001,Trans-Neon Green,1 +My Own Train,Locomotive Blue Bricks,106,2001,Trans-Red,1 +My Own Train,Locomotive Blue Bricks,106,2001,White,1 +My Own Train,Locomotive Brown Bricks,106,2001,Black,15 +My Own Train,Locomotive Brown Bricks,106,2001,Brown,12 +My Own Train,Locomotive Brown Bricks,106,2001,Dark Gray,3 +My Own Train,Locomotive Brown Bricks,106,2001,Trans-Neon Green,1 +My Own Train,Locomotive Brown Bricks,106,2001,Trans-Red,1 +My Own Train,Large Locomotive (base unit without color trim elements),91,2001,Black,24 +My Own Train,Large Locomotive (base unit without color trim elements),91,2001,Yellow,1 +My Own Train,Large Locomotive (base unit without color trim elements),91,2001,Light Gray,4 +My Own Train,Small Locomotive,66,2001,Yellow,1 +My Own Train,Small Locomotive,66,2001,Black,24 +My Own Train,Small Locomotive,66,2001,Light Gray,4 +My Own Train,Tender Basis (without color trim elements),41,2001,Black,17 +My Own Train,Tender Basis (without color trim elements),41,2001,Light Gray,2 +My Own Train,Tender Basis (without color trim elements),41,2001,Trans-Red,1 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Green,1 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Flat Silver,15 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Dark Tan,3 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Dark Red,5 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Yellow,11 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,White,12 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Trans-Red,1 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Trans-Orange,11 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Trans-Neon Orange,10 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Trans-Neon Green,1 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Trans-Light Blue,1 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Trans-Green,1 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Trans-Dark Blue,2 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Trans-Bright Green,1 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Trans-Black,1 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Tan,6 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Reddish Brown,18 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Red,63 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Dark Brown,9 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Dark Bluish Gray,53 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Dark Blue,5 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Bright Light Orange,3 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Blue,17 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Black,91 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Light Bluish Gray,35 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Pearl Gold,10 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Pearl Dark Gray,4 +Nexo Knights,Jestro’s Volcano Lair,1184,2016,Orange,4 +Nexo Knights,The Fortrex,1134,2016,Dark Bluish Gray,66 +Nexo Knights,The Fortrex,1134,2016,Dark Brown,6 +Nexo Knights,The Fortrex,1134,2016,Dark Orange,1 +Nexo Knights,The Fortrex,1134,2016,Dark Tan,2 +Nexo Knights,The Fortrex,1134,2016,Flat Silver,20 +Nexo Knights,The Fortrex,1134,2016,Black,29 +Nexo Knights,The Fortrex,1134,2016,Green,1 +Nexo Knights,The Fortrex,1134,2016,Tan,2 +Nexo Knights,The Fortrex,1134,2016,Reddish Brown,1 +Nexo Knights,The Fortrex,1134,2016,Red,14 +Nexo Knights,The Fortrex,1134,2016,Pearl Gold,1 +Nexo Knights,The Fortrex,1134,2016,Pearl Dark Gray,3 +Nexo Knights,The Fortrex,1134,2016,Orange,1 +Nexo Knights,The Fortrex,1134,2016,Blue,41 +Nexo Knights,The Fortrex,1134,2016,Bright Light Orange,1 +Nexo Knights,The Fortrex,1134,2016,Dark Blue,20 +Nexo Knights,The Fortrex,1134,2016,Yellow,7 +Nexo Knights,The Fortrex,1134,2016,White,8 +Nexo Knights,The Fortrex,1134,2016,Trans-Red,1 +Nexo Knights,The Fortrex,1134,2016,Trans-Purple,1 +Nexo Knights,The Fortrex,1134,2016,Trans-Orange,1 +Nexo Knights,The Fortrex,1134,2016,Trans-Neon Orange,22 +Nexo Knights,The Fortrex,1134,2016,Trans-Light Blue,1 +Nexo Knights,The Fortrex,1134,2016,Trans-Dark Blue,1 +Nexo Knights,The Fortrex,1134,2016,Trans-Clear,4 +Nexo Knights,The Fortrex,1134,2016,Light Bluish Gray,92 +Nexo Knights,Axl’s Tower Carrier,668,2016,Trans-Red,2 +Nexo Knights,Axl’s Tower Carrier,668,2016,White,1 +Nexo Knights,Axl’s Tower Carrier,668,2016,Yellow,10 +Nexo Knights,Axl’s Tower Carrier,668,2016,Trans-Bright Green,1 +Nexo Knights,Axl’s Tower Carrier,668,2016,Black,31 +Nexo Knights,Axl’s Tower Carrier,668,2016,Blue,33 +Nexo Knights,Axl’s Tower Carrier,668,2016,Bright Light Orange,4 +Nexo Knights,Axl’s Tower Carrier,668,2016,Dark Blue,13 +Nexo Knights,Axl’s Tower Carrier,668,2016,Dark Bluish Gray,45 +Nexo Knights,Axl’s Tower Carrier,668,2016,Dark Brown,3 +Nexo Knights,Axl’s Tower Carrier,668,2016,Dark Red,1 +Nexo Knights,Axl’s Tower Carrier,668,2016,Dark Tan,1 +Nexo Knights,Axl’s Tower Carrier,668,2016,Flat Silver,13 +Nexo Knights,Axl’s Tower Carrier,668,2016,Light Bluish Gray,60 +Nexo Knights,Axl’s Tower Carrier,668,2016,Orange,2 +Nexo Knights,Axl’s Tower Carrier,668,2016,Pearl Dark Gray,3 +Nexo Knights,Axl’s Tower Carrier,668,2016,Pearl Gold,2 +Nexo Knights,Axl’s Tower Carrier,668,2016,Red,23 +Nexo Knights,Axl’s Tower Carrier,668,2016,Tan,5 +Nexo Knights,Axl’s Tower Carrier,668,2016,Trans-Clear,1 +Nexo Knights,Axl’s Tower Carrier,668,2016,Trans-Dark Blue,1 +Nexo Knights,Axl’s Tower Carrier,668,2016,Trans-Neon Orange,12 +Nexo Knights,Axl’s Tower Carrier,668,2016,Trans-Orange,6 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Dark Bluish Gray,41 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Trans-Neon Orange,5 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Trans-Dark Blue,1 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Trans-Black,1 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Tan,3 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Reddish Brown,17 +Nexo Knights,Jestro’s Evil Mobile,658,2016,[No Color],1 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Black,79 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Blue,7 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Dark Blue,3 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Trans-Orange,11 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Dark Brown,2 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Flat Silver,8 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Orange,1 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Light Bluish Gray,18 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Pearl Gold,4 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Dark Red,1 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Dark Tan,2 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Red,42 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Yellow,1 +Nexo Knights,Jestro’s Evil Mobile,658,2016,White,14 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Trans-Yellow,1 +Nexo Knights,Jestro’s Evil Mobile,658,2016,Trans-Red,1 +Nexo Knights,The Black Knight Mech,529,2016,Red,12 +Nexo Knights,The Black Knight Mech,529,2016,Reddish Brown,2 +Nexo Knights,The Black Knight Mech,529,2016,Trans-Bright Green,1 +Nexo Knights,The Black Knight Mech,529,2016,Pearl Dark Gray,5 +Nexo Knights,The Black Knight Mech,529,2016,Dark Bluish Gray,21 +Nexo Knights,The Black Knight Mech,529,2016,Dark Red,2 +Nexo Knights,The Black Knight Mech,529,2016,Yellow,1 +Nexo Knights,The Black Knight Mech,529,2016,White,1 +Nexo Knights,The Black Knight Mech,529,2016,Trans-Orange,4 +Nexo Knights,The Black Knight Mech,529,2016,Trans-Neon Orange,13 +Nexo Knights,The Black Knight Mech,529,2016,Trans-Clear,1 +Nexo Knights,The Black Knight Mech,529,2016,Blue,23 +Nexo Knights,The Black Knight Mech,529,2016,Dark Azure,1 +Nexo Knights,The Black Knight Mech,529,2016,Flat Silver,9 +Nexo Knights,The Black Knight Mech,529,2016,Dark Blue,7 +Nexo Knights,The Black Knight Mech,529,2016,Light Bluish Gray,21 +Nexo Knights,The Black Knight Mech,529,2016,Orange,1 +Nexo Knights,The Black Knight Mech,529,2016,Dark Brown,4 +Nexo Knights,The Black Knight Mech,529,2016,Black,53 +Nexo Knights,The Black Knight Mech,529,2016,Pearl Gold,3 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Light Bluish Gray,18 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Pearl Dark Gray,2 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Pearl Gold,9 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Red,18 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Reddish Brown,4 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Trans-Bright Green,1 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Trans-Neon Green,1 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Trans-Neon Orange,4 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Trans-Orange,8 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Trans-Red,1 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,White,3 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Yellow,2 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Dark Red,1 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Black,39 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Blue,8 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Dark Azure,2 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Dark Blue,5 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Dark Bluish Gray,16 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Dark Brown,12 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Tan,3 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Dark Tan,1 +Nexo Knights,General Magmar's Siege Machine of Doom,514,2016,Flat Silver,8 +Nexo Knights,Clay's Rumble Blade,366,2016,Dark Bluish Gray,8 +Nexo Knights,Clay's Rumble Blade,366,2016,Dark Blue,13 +Nexo Knights,Clay's Rumble Blade,366,2016,Dark Azure,1 +Nexo Knights,Clay's Rumble Blade,366,2016,Blue,24 +Nexo Knights,Clay's Rumble Blade,366,2016,Yellow,1 +Nexo Knights,Clay's Rumble Blade,366,2016,Black,17 +Nexo Knights,Clay's Rumble Blade,366,2016,Trans-Yellow,1 +Nexo Knights,Clay's Rumble Blade,366,2016,Trans-Orange,1 +Nexo Knights,Clay's Rumble Blade,366,2016,Trans-Neon Orange,12 +Nexo Knights,Clay's Rumble Blade,366,2016,Trans-Bright Green,1 +Nexo Knights,Clay's Rumble Blade,366,2016,Red,4 +Nexo Knights,Clay's Rumble Blade,366,2016,Pearl Dark Gray,2 +Nexo Knights,Clay's Rumble Blade,366,2016,Orange,1 +Nexo Knights,Clay's Rumble Blade,366,2016,Light Bluish Gray,30 +Nexo Knights,Clay's Rumble Blade,366,2016,Flat Silver,12 +Nexo Knights,The King's Mech,354,2016,Reddish Brown,3 +Nexo Knights,The King's Mech,354,2016,Trans-Neon Orange,4 +Nexo Knights,The King's Mech,354,2016,Trans-Orange,2 +Nexo Knights,The King's Mech,354,2016,Dark Blue,18 +Nexo Knights,The King's Mech,354,2016,Black,16 +Nexo Knights,The King's Mech,354,2016,Blue,22 +Nexo Knights,The King's Mech,354,2016,Trans-Yellow,1 +Nexo Knights,The King's Mech,354,2016,Dark Bluish Gray,23 +Nexo Knights,The King's Mech,354,2016,Dark Brown,4 +Nexo Knights,The King's Mech,354,2016,Dark Tan,1 +Nexo Knights,The King's Mech,354,2016,Flat Silver,6 +Nexo Knights,The King's Mech,354,2016,Light Bluish Gray,34 +Nexo Knights,The King's Mech,354,2016,Pearl Gold,6 +Nexo Knights,The King's Mech,354,2016,Red,5 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Red,18 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Dark Bluish Gray,14 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Dark Blue,3 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Yellow,2 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,White,2 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Trans-Yellow,1 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Trans-Red,1 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Trans-Orange,4 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Trans-Neon Orange,4 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Trans-Clear,1 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Tan,1 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Reddish Brown,1 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Black,30 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Blue,8 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Pearl Gold,2 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Light Bluish Gray,17 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Orange,2 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Flat Silver,6 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Dark Tan,1 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Dark Red,3 +Nexo Knights,Beast Master's Chaos Chariot,311,2016,Dark Brown,8 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Dark Blue,12 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Dark Bluish Gray,19 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Black,17 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Green,7 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Flat Silver,13 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Dark Tan,1 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Blue,20 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Yellow,1 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,White,1 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Trans-Yellow,1 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Trans-Orange,1 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Trans-Neon Orange,9 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Trans-Clear,2 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Tan,1 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Red,4 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Orange,1 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Lime,3 +Nexo Knights,Aaron Fox's Aero-Striker V2,301,2016,Light Bluish Gray,19 +Nexo Knights,Merlok's Library 2.0,257,2016,Dark Tan,1 +Nexo Knights,Merlok's Library 2.0,257,2016,Dark Brown,4 +Nexo Knights,Merlok's Library 2.0,257,2016,Dark Bluish Gray,22 +Nexo Knights,Merlok's Library 2.0,257,2016,Dark Blue,3 +Nexo Knights,Merlok's Library 2.0,257,2016,Blue,16 +Nexo Knights,Merlok's Library 2.0,257,2016,Black,13 +Nexo Knights,Merlok's Library 2.0,257,2016,Pearl Dark Gray,1 +Nexo Knights,Merlok's Library 2.0,257,2016,Yellow,1 +Nexo Knights,Merlok's Library 2.0,257,2016,White,5 +Nexo Knights,Merlok's Library 2.0,257,2016,Trans-Neon Orange,4 +Nexo Knights,Merlok's Library 2.0,257,2016,Trans-Clear,2 +Nexo Knights,Merlok's Library 2.0,257,2016,Reddish Brown,3 +Nexo Knights,Merlok's Library 2.0,257,2016,Red,7 +Nexo Knights,Merlok's Library 2.0,257,2016,Orange,1 +Nexo Knights,Merlok's Library 2.0,257,2016,Medium Lavender,2 +Nexo Knights,Merlok's Library 2.0,257,2016,Light Bluish Gray,28 +Nexo Knights,Merlok's Library 2.0,257,2016,Flat Silver,7 +Nexo Knights,Infernox captures the Queen,251,2016,Black,30 +Nexo Knights,Infernox captures the Queen,251,2016,Blue,9 +Nexo Knights,Infernox captures the Queen,251,2016,Dark Blue,4 +Nexo Knights,Infernox captures the Queen,251,2016,Yellow,2 +Nexo Knights,Infernox captures the Queen,251,2016,White,2 +Nexo Knights,Infernox captures the Queen,251,2016,Flat Silver,7 +Nexo Knights,Infernox captures the Queen,251,2016,Green,1 +Nexo Knights,Infernox captures the Queen,251,2016,Dark Bluish Gray,21 +Nexo Knights,Infernox captures the Queen,251,2016,Trans-Red,1 +Nexo Knights,Infernox captures the Queen,251,2016,Dark Brown,11 +Nexo Knights,Infernox captures the Queen,251,2016,Dark Tan,2 +Nexo Knights,Infernox captures the Queen,251,2016,Lime,4 +Nexo Knights,Infernox captures the Queen,251,2016,Trans-Orange,6 +Nexo Knights,Infernox captures the Queen,251,2016,Trans-Neon Orange,4 +Nexo Knights,Infernox captures the Queen,251,2016,Reddish Brown,5 +Nexo Knights,Infernox captures the Queen,251,2016,Red,9 +Nexo Knights,Infernox captures the Queen,251,2016,Orange,1 +Nexo Knights,Infernox captures the Queen,251,2016,Light Bluish Gray,10 +Nexo Knights,Lance's Mecha Horse,237,2016,Reddish Brown,1 +Nexo Knights,Lance's Mecha Horse,237,2016,White,11 +Nexo Knights,Lance's Mecha Horse,237,2016,Trans-Neon Orange,7 +Nexo Knights,Lance's Mecha Horse,237,2016,[No Color],1 +Nexo Knights,Lance's Mecha Horse,237,2016,Red,4 +Nexo Knights,Lance's Mecha Horse,237,2016,Pearl Dark Gray,2 +Nexo Knights,Lance's Mecha Horse,237,2016,Light Bluish Gray,25 +Nexo Knights,Lance's Mecha Horse,237,2016,Flat Silver,14 +Nexo Knights,Lance's Mecha Horse,237,2016,Dark Tan,1 +Nexo Knights,Lance's Mecha Horse,237,2016,Dark Bluish Gray,11 +Nexo Knights,Lance's Mecha Horse,237,2016,Dark Blue,6 +Nexo Knights,Lance's Mecha Horse,237,2016,Blue,20 +Nexo Knights,Lance's Mecha Horse,237,2016,Black,15 +Nexo Knights,Lance's Mecha Horse,237,2016,Yellow,2 +Nexo Knights,Macy's Thunder Mace,201,2016,Yellow,4 +Nexo Knights,Macy's Thunder Mace,201,2016,Trans-Neon Orange,8 +Nexo Knights,Macy's Thunder Mace,201,2016,Tan,1 +Nexo Knights,Macy's Thunder Mace,201,2016,Red,13 +Nexo Knights,Macy's Thunder Mace,201,2016,Pearl Dark Gray,2 +Nexo Knights,Macy's Thunder Mace,201,2016,Light Bluish Gray,10 +Nexo Knights,Macy's Thunder Mace,201,2016,Flat Silver,11 +Nexo Knights,Macy's Thunder Mace,201,2016,Dark Red,1 +Nexo Knights,Macy's Thunder Mace,201,2016,Dark Bluish Gray,13 +Nexo Knights,Macy's Thunder Mace,201,2016,Dark Blue,3 +Nexo Knights,Macy's Thunder Mace,201,2016,Black,9 +Nexo Knights,Macy's Thunder Mace,201,2016,Blue,13 +Nexo Knights,Moltor's Lava Smasher,187,2016,Reddish Brown,3 +Nexo Knights,Moltor's Lava Smasher,187,2016,Tan,2 +Nexo Knights,Moltor's Lava Smasher,187,2016,Trans-Black,1 +Nexo Knights,Moltor's Lava Smasher,187,2016,Trans-Neon Orange,3 +Nexo Knights,Moltor's Lava Smasher,187,2016,Trans-Orange,8 +Nexo Knights,Moltor's Lava Smasher,187,2016,White,2 +Nexo Knights,Moltor's Lava Smasher,187,2016,Yellow,2 +Nexo Knights,Moltor's Lava Smasher,187,2016,Black,19 +Nexo Knights,Moltor's Lava Smasher,187,2016,[No Color],1 +Nexo Knights,Moltor's Lava Smasher,187,2016,Blue,1 +Nexo Knights,Moltor's Lava Smasher,187,2016,Dark Bluish Gray,14 +Nexo Knights,Moltor's Lava Smasher,187,2016,Dark Brown,14 +Nexo Knights,Moltor's Lava Smasher,187,2016,Dark Tan,1 +Nexo Knights,Moltor's Lava Smasher,187,2016,Flat Silver,4 +Nexo Knights,Moltor's Lava Smasher,187,2016,Green,2 +Nexo Knights,Moltor's Lava Smasher,187,2016,Light Bluish Gray,6 +Nexo Knights,Moltor's Lava Smasher,187,2016,Pearl Gold,2 +Nexo Knights,Moltor's Lava Smasher,187,2016,Red,14 +Nexo Knights,Ultimate Macy,101,2016,Light Bluish Gray,5 +Nexo Knights,Ultimate Macy,101,2016,Dark Bluish Gray,8 +Nexo Knights,Ultimate Macy,101,2016,Dark Green,1 +Nexo Knights,Ultimate Macy,101,2016,Dark Red,1 +Nexo Knights,Ultimate Macy,101,2016,Flat Silver,7 +Nexo Knights,Ultimate Macy,101,2016,Trans-Neon Orange,3 +Nexo Knights,Ultimate Macy,101,2016,Pearl Gold,3 +Nexo Knights,Ultimate Macy,101,2016,Red,9 +Nexo Knights,Ultimate Macy,101,2016,Trans-Bright Green,1 +Nexo Knights,Ultimate Macy,101,2016,Trans-Green,1 +Nexo Knights,Ultimate Macy,101,2016,Black,3 +Nexo Knights,Ultimate Macy,101,2016,Trans-Orange,1 +Nexo Knights,Ultimate Macy,101,2016,Trans-Red,4 +Nexo Knights,Ultimate Macy,101,2016,Trans-Yellow,1 +Nexo Knights,Ultimate Macy,101,2016,Yellow,2 +Nexo Knights,Ultimate Macy,101,2016,Dark Blue,3 +Nexo Knights,Ultimate Macy,101,2016,Blue,3 +Nexo Knights,The Glob Lobber,95,2016,Flat Silver,2 +Nexo Knights,The Glob Lobber,95,2016,Reddish Brown,5 +Nexo Knights,The Glob Lobber,95,2016,Pearl Gold,2 +Nexo Knights,The Glob Lobber,95,2016,Pearl Dark Gray,1 +Nexo Knights,The Glob Lobber,95,2016,Trans-Orange,4 +Nexo Knights,The Glob Lobber,95,2016,White,2 +Nexo Knights,The Glob Lobber,95,2016,Red,6 +Nexo Knights,The Glob Lobber,95,2016,Blue,1 +Nexo Knights,The Glob Lobber,95,2016,Dark Azure,1 +Nexo Knights,The Glob Lobber,95,2016,Dark Bluish Gray,8 +Nexo Knights,The Glob Lobber,95,2016,Black,12 +Nexo Knights,The Glob Lobber,95,2016,Dark Brown,4 +Nexo Knights,The Glob Lobber,95,2016,Dark Red,1 +Nexo Knights,The Glob Lobber,95,2016,Light Bluish Gray,4 +Nexo Knights,Chaos Catapult,93,2016,Reddish Brown,3 +Nexo Knights,Chaos Catapult,93,2016,Red,4 +Nexo Knights,Chaos Catapult,93,2016,Pearl Gold,1 +Nexo Knights,Chaos Catapult,93,2016,Orange,1 +Nexo Knights,Chaos Catapult,93,2016,Trans-Orange,3 +Nexo Knights,Chaos Catapult,93,2016,Flat Silver,2 +Nexo Knights,Chaos Catapult,93,2016,Dark Brown,5 +Nexo Knights,Chaos Catapult,93,2016,Dark Bluish Gray,3 +Nexo Knights,Chaos Catapult,93,2016,Dark Azure,1 +Nexo Knights,Chaos Catapult,93,2016,Light Bluish Gray,5 +Nexo Knights,Chaos Catapult,93,2016,Black,17 +Nexo Knights,Chaos Catapult,93,2016,White,4 +Nexo Knights,Chaos Catapult,93,2016,Trans-Neon Orange,1 +Nexo Knights,Chaos Catapult,93,2016,Tan,1 +Nexo Knights,Chaos Catapult,93,2016,Blue,1 +Nexo Knights,Ultimate Aaron,82,2016,Trans-Orange,1 +Nexo Knights,Ultimate Aaron,82,2016,Trans-Neon Orange,2 +Nexo Knights,Ultimate Aaron,82,2016,Trans-Dark Blue,1 +Nexo Knights,Ultimate Aaron,82,2016,Trans-Bright Green,5 +Nexo Knights,Ultimate Aaron,82,2016,Pearl Dark Gray,1 +Nexo Knights,Ultimate Aaron,82,2016,Light Bluish Gray,3 +Nexo Knights,Ultimate Aaron,82,2016,Green,5 +Nexo Knights,Ultimate Aaron,82,2016,Flat Silver,5 +Nexo Knights,Ultimate Aaron,82,2016,Dark Bluish Gray,6 +Nexo Knights,Ultimate Aaron,82,2016,Dark Blue,3 +Nexo Knights,Ultimate Aaron,82,2016,Bright Green,1 +Nexo Knights,Ultimate Aaron,82,2016,Black,2 +Nexo Knights,Ultimate Aaron,82,2016,Blue,5 +Nexo Knights,Ultimate Aaron,82,2016,Yellow,2 +Nexo Knights,Ultimate Aaron,82,2016,White,1 +Nexo Knights,Ultimate Aaron,82,2016,Trans-Yellow,1 +Nexo Knights,Knighton Battle Blaster,76,2016,Pearl Dark Gray,1 +Nexo Knights,Knighton Battle Blaster,76,2016,Dark Bluish Gray,6 +Nexo Knights,Knighton Battle Blaster,76,2016,Flat Silver,4 +Nexo Knights,Knighton Battle Blaster,76,2016,Light Bluish Gray,11 +Nexo Knights,Knighton Battle Blaster,76,2016,Orange,1 +Nexo Knights,Knighton Battle Blaster,76,2016,Red,1 +Nexo Knights,Knighton Battle Blaster,76,2016,Trans-Neon Orange,6 +Nexo Knights,Knighton Battle Blaster,76,2016,Trans-Orange,1 +Nexo Knights,Knighton Battle Blaster,76,2016,Black,7 +Nexo Knights,Knighton Battle Blaster,76,2016,Blue,7 +Nexo Knights,Knighton Battle Blaster,76,2016,Dark Azure,1 +Nexo Knights,Knighton Battle Blaster,76,2016,Dark Blue,4 +Nexo Knights,Ultimate Robin,75,2016,Trans-Yellow,1 +Nexo Knights,Ultimate Robin,75,2016,Trans-Neon Orange,3 +Nexo Knights,Ultimate Robin,75,2016,Trans-Light Blue,1 +Nexo Knights,Ultimate Robin,75,2016,Trans-Dark Blue,2 +Nexo Knights,Ultimate Robin,75,2016,Trans-Clear,1 +Nexo Knights,Ultimate Robin,75,2016,Red,1 +Nexo Knights,Ultimate Robin,75,2016,Medium Dark Flesh,1 +Nexo Knights,Ultimate Robin,75,2016,Medium Blue,2 +Nexo Knights,Ultimate Robin,75,2016,Light Bluish Gray,3 +Nexo Knights,Ultimate Robin,75,2016,Flat Silver,5 +Nexo Knights,Ultimate Robin,75,2016,Dark Orange,1 +Nexo Knights,Ultimate Robin,75,2016,Dark Bluish Gray,8 +Nexo Knights,Ultimate Robin,75,2016,Dark Blue,5 +Nexo Knights,Ultimate Robin,75,2016,Blue,6 +Nexo Knights,Ultimate Robin,75,2016,Black,1 +Nexo Knights,Ultimate Lance,75,2016,Yellow,1 +Nexo Knights,Ultimate Lance,75,2016,White,8 +Nexo Knights,Ultimate Lance,75,2016,Trans-Red,1 +Nexo Knights,Ultimate Lance,75,2016,Trans-Orange,1 +Nexo Knights,Ultimate Lance,75,2016,Trans-Neon Orange,2 +Nexo Knights,Ultimate Lance,75,2016,Trans-Light Blue,2 +Nexo Knights,Ultimate Lance,75,2016,Trans-Dark Blue,1 +Nexo Knights,Ultimate Lance,75,2016,Trans-Clear,5 +Nexo Knights,Ultimate Lance,75,2016,Light Bluish Gray,4 +Nexo Knights,Ultimate Lance,75,2016,Flat Silver,7 +Nexo Knights,Ultimate Lance,75,2016,Dark Bluish Gray,7 +Nexo Knights,Ultimate Lance,75,2016,Dark Blue,3 +Nexo Knights,Ultimate Lance,75,2016,Blue,4 +Nexo Knights,Ultimate Lance,75,2016,Black,1 +Nexo Knights,Ultimate Robin,75,2016,Yellow,1 +Nexo Knights,ULTIMATE Clay,72,2016,Blue,10 +Nexo Knights,ULTIMATE Clay,72,2016,Black,1 +Nexo Knights,ULTIMATE Clay,72,2016,Light Bluish Gray,4 +Nexo Knights,ULTIMATE Clay,72,2016,Dark Blue,5 +Nexo Knights,ULTIMATE Clay,72,2016,Dark Bluish Gray,5 +Nexo Knights,ULTIMATE Clay,72,2016,Trans-Neon Orange,2 +Nexo Knights,ULTIMATE Clay,72,2016,Yellow,1 +Nexo Knights,ULTIMATE Clay,72,2016,Trans-Red,2 +Nexo Knights,ULTIMATE Clay,72,2016,Trans-Orange,1 +Nexo Knights,ULTIMATE Clay,72,2016,Flat Silver,4 +Nexo Knights,ULTIMATE Clay,72,2016,Trans-Dark Blue,5 +Nexo Knights,ULTIMATE Clay,72,2016,Trans-Clear,1 +Nexo Knights,Ultimate Lavaria,69,2016,Trans-Orange,3 +Nexo Knights,Ultimate Lavaria,69,2016,Trans-Red,1 +Nexo Knights,Ultimate Lavaria,69,2016,Yellow,1 +Nexo Knights,Ultimate Lavaria,69,2016,Green,1 +Nexo Knights,Ultimate Axl,69,2016,Black,2 +Nexo Knights,Ultimate Axl,69,2016,Bright Light Orange,7 +Nexo Knights,Ultimate Axl,69,2016,Dark Blue,4 +Nexo Knights,Ultimate Axl,69,2016,Dark Bluish Gray,6 +Nexo Knights,Ultimate Axl,69,2016,Blue,4 +Nexo Knights,Ultimate Axl,69,2016,Flat Silver,3 +Nexo Knights,Ultimate Axl,69,2016,Light Bluish Gray,9 +Nexo Knights,Ultimate Axl,69,2016,Red,1 +Nexo Knights,Ultimate Axl,69,2016,Trans-Bright Green,1 +Nexo Knights,Ultimate Axl,69,2016,Trans-Clear,1 +Nexo Knights,Ultimate Axl,69,2016,Trans-Yellow,3 +Nexo Knights,Ultimate Axl,69,2016,White,1 +Nexo Knights,Ultimate Axl,69,2016,Yellow,2 +Nexo Knights,Ultimate Lavaria,69,2016,Black,15 +Nexo Knights,Ultimate Lavaria,69,2016,Dark Bluish Gray,4 +Nexo Knights,Ultimate Lavaria,69,2016,Dark Red,2 +Nexo Knights,Ultimate Lavaria,69,2016,Light Bluish Gray,2 +Nexo Knights,Ultimate Lavaria,69,2016,Orange,1 +Nexo Knights,Ultimate Lavaria,69,2016,Pearl Dark Gray,1 +Nexo Knights,Ultimate Lavaria,69,2016,Red,10 +Nexo Knights,Ultimate Lavaria,69,2016,Trans-Bright Green,1 +Nexo Knights,Ultimate Lavaria,69,2016,Trans-Clear,2 +Nexo Knights,Ultimate Flama,68,2016,White,2 +Nexo Knights,Ultimate Flama,68,2016,Black,15 +Nexo Knights,Ultimate Flama,68,2016,Dark Bluish Gray,2 +Nexo Knights,Ultimate Flama,68,2016,Dark Red,2 +Nexo Knights,Ultimate Flama,68,2016,Dark Tan,1 +Nexo Knights,Ultimate Flama,68,2016,Orange,1 +Nexo Knights,Ultimate Flama,68,2016,Red,9 +Nexo Knights,Ultimate Flama,68,2016,Trans-Black,1 +Nexo Knights,Ultimate Flama,68,2016,Light Bluish Gray,2 +Nexo Knights,Ultimate Flama,68,2016,Trans-Bright Green,3 +Nexo Knights,Ultimate Flama,68,2016,Trans-Clear,1 +Nexo Knights,Ultimate Flama,68,2016,Trans-Neon Green,1 +Nexo Knights,Ultimate Flama,68,2016,Trans-Yellow,1 +Nexo Knights,Ultimate Flama,68,2016,Yellow,3 +Nexo Knights,Ultimate Flama,68,2016,Trans-Orange,5 +Nexo Knights,Ultimate Beast Master,64,2016,Pearl Gold,2 +Nexo Knights,Ultimate Beast Master,64,2016,Red,10 +Nexo Knights,Ultimate General Magmar,64,2016,Dark Bluish Gray,1 +Nexo Knights,Ultimate General Magmar,64,2016,Black,16 +Nexo Knights,Ultimate General Magmar,64,2016,Dark Red,5 +Nexo Knights,Ultimate Beast Master,64,2016,Black,12 +Nexo Knights,Ultimate Beast Master,64,2016,Blue,1 +Nexo Knights,Ultimate Beast Master,64,2016,Dark Bluish Gray,1 +Nexo Knights,Ultimate Beast Master,64,2016,Dark Brown,1 +Nexo Knights,Ultimate Beast Master,64,2016,Dark Red,4 +Nexo Knights,Ultimate Beast Master,64,2016,Dark Tan,1 +Nexo Knights,Ultimate Beast Master,64,2016,Yellow,1 +Nexo Knights,Ultimate Beast Master,64,2016,Light Bluish Gray,3 +Nexo Knights,Ultimate Beast Master,64,2016,Orange,3 +Nexo Knights,Ultimate Beast Master,64,2016,Pearl Dark Gray,1 +Nexo Knights,Ultimate General Magmar,64,2016,Yellow,1 +Nexo Knights,Ultimate Beast Master,64,2016,Trans-Bright Green,1 +Nexo Knights,Ultimate Beast Master,64,2016,Trans-Clear,1 +Nexo Knights,Ultimate Beast Master,64,2016,Trans-Orange,2 +Nexo Knights,Ultimate Beast Master,64,2016,Trans-Purple,1 +Nexo Knights,Ultimate Beast Master,64,2016,Trans-Red,1 +Nexo Knights,Ultimate General Magmar,64,2016,Trans-Yellow,1 +Nexo Knights,Ultimate General Magmar,64,2016,Trans-Red,2 +Nexo Knights,Ultimate General Magmar,64,2016,Trans-Orange,4 +Nexo Knights,Ultimate General Magmar,64,2016,Trans-Light Blue,1 +Nexo Knights,Ultimate General Magmar,64,2016,Trans-Dark Blue,1 +Nexo Knights,Ultimate General Magmar,64,2016,Reddish Brown,1 +Nexo Knights,Ultimate General Magmar,64,2016,Red,6 +Nexo Knights,Ultimate General Magmar,64,2016,Pearl Dark Gray,1 +Nexo Knights,Ultimate General Magmar,64,2016,Orange,1 +Nexo Knights,Ultimate General Magmar,64,2016,Light Bluish Gray,3 +Nexo Knights,Knighton Hyper Cannon,47,2016,Trans-Neon Orange,2 +Nexo Knights,Knighton Hyper Cannon,47,2016,Light Bluish Gray,6 +Nexo Knights,Knighton Hyper Cannon,47,2016,Flat Silver,4 +Nexo Knights,Knighton Hyper Cannon,47,2016,Dark Bluish Gray,5 +Nexo Knights,Knighton Hyper Cannon,47,2016,Dark Blue,1 +Nexo Knights,Knighton Hyper Cannon,47,2016,Blue,7 +Nexo Knights,Knighton Hyper Cannon,47,2016,Black,4 +Nexo Knights,Robin's Mini Fortrex,45,2016,Blue,8 +Nexo Knights,Robin's Mini Fortrex,45,2016,Black,2 +Nexo Knights,Robin's Mini Fortrex,45,2016,Medium Dark Flesh,1 +Nexo Knights,Robin's Mini Fortrex,45,2016,Light Bluish Gray,5 +Nexo Knights,Robin's Mini Fortrex,45,2016,Trans-Neon Orange,4 +Nexo Knights,Robin's Mini Fortrex,45,2016,Yellow,1 +Nexo Knights,Robin's Mini Fortrex,45,2016,Dark Bluish Gray,3 +Nexo Knights,Robin's Mini Fortrex,45,2016,Dark Blue,2 +Nexo Knights,Knight's Cycle,41,2016,Blue,5 +Nexo Knights,Knight's Cycle,41,2016,Black,1 +Nexo Knights,Knight's Cycle,41,2016,Dark Blue,1 +Nexo Knights,Knight's Cycle,41,2016,Yellow,1 +Nexo Knights,Knight's Cycle,41,2016,Trans-Neon Orange,2 +Nexo Knights,Knight's Cycle,41,2016,Red,1 +Nexo Knights,Knight's Cycle,41,2016,Pearl Dark Gray,1 +Nexo Knights,Knight's Cycle,41,2016,Light Bluish Gray,6 +Nexo Knights,Knight's Cycle,41,2016,Flat Silver,4 +Nexo Knights,Knight's Cycle,41,2016,Dark Bluish Gray,1 +Nexo Knights,The Lava Slinger,39,2016,Reddish Brown,5 +Nexo Knights,The Lava Slinger,39,2016,Flat Silver,1 +Nexo Knights,The Lava Slinger,39,2016,Light Bluish Gray,2 +Nexo Knights,The Lava Slinger,39,2016,Red,3 +Nexo Knights,The Lava Slinger,39,2016,Pearl Gold,1 +Nexo Knights,The Lava Slinger,39,2016,Black,5 +Nexo Knights,The Lava Slinger,39,2016,Trans-Orange,3 +Nexo Knights,The Lava Slinger,39,2016,Dark Bluish Gray,1 +Nexo Knights,The Lava Slinger,39,2016,Dark Brown,4 +Nexo Knights,Hover Horse,34,2016,Pearl Dark Gray,1 +Nexo Knights,Hover Horse,34,2016,Blue,3 +Nexo Knights,Mighty Mech Bot,34,2016,Flat Silver,1 +Nexo Knights,Mighty Mech Bot,34,2016,Blue,5 +Nexo Knights,Mighty Mech Bot,34,2016,Light Bluish Gray,5 +Nexo Knights,Mighty Mech Bot,34,2016,Trans-Neon Orange,2 +Nexo Knights,Mighty Mech Bot,34,2016,Dark Blue,1 +Nexo Knights,Hover Horse,34,2016,Dark Bluish Gray,3 +Nexo Knights,Hover Horse,34,2016,Dark Blue,4 +Nexo Knights,Hover Horse,34,2016,Trans-Neon Orange,2 +Nexo Knights,Mighty Mech Bot,34,2016,Dark Bluish Gray,4 +Nexo Knights,Hover Horse,34,2016,Black,1 +Nexo Knights,Hover Horse,34,2016,Light Bluish Gray,6 +Nexo Knights,Micro Chaos Chariot,30,2016,Reddish Brown,3 +Nexo Knights,Micro Chaos Chariot,30,2016,Black,8 +Nexo Knights,Micro Chaos Chariot,30,2016,Dark Bluish Gray,1 +Nexo Knights,Micro Chaos Chariot,30,2016,Flat Silver,1 +Nexo Knights,Micro Chaos Chariot,30,2016,Light Bluish Gray,1 +Nexo Knights,Micro Chaos Chariot,30,2016,Trans-Orange,3 +Nexo Knights,Micro Chaos Chariot,30,2016,Trans-Red,1 +Nexo Knights,Bat-Gun,29,2016,Light Bluish Gray,1 +Nexo Knights,Bat-Gun,29,2016,Trans-Neon Orange,1 +Nexo Knights,Bat-Gun,29,2016,Reddish Brown,3 +Nexo Knights,Bat-Gun,29,2016,Red,1 +Nexo Knights,Bat-Gun,29,2016,Black,5 +Nexo Knights,Bat-Gun,29,2016,Dark Bluish Gray,2 +Nexo Knights,Bat-Gun,29,2016,Dark Brown,1 +Nexo Knights,Bat-Gun,29,2016,Yellow,1 +Nexo Knights,Goblin Spiders,28,2016,Trans-Orange,1 +Nexo Knights,Goblin Spiders,28,2016,Red,2 +Nexo Knights,Goblin Spiders,28,2016,Light Bluish Gray,1 +Nexo Knights,Goblin Spiders,28,2016,Black,2 +Nexo Knights,Knights Army-Building Set,26,2016,Dark Blue,1 +Nexo Knights,Knights Army-Building Set,26,2016,Dark Azure,2 +Nexo Knights,Knights Army-Building Set,26,2016,Blue,3 +Nexo Knights,Knights Army-Building Set,26,2016,Dark Bluish Gray,1 +Nexo Knights,Knights Army-Building Set,26,2016,Light Bluish Gray,4 +Nexo Knights,Knights Army-Building Set,26,2016,Pearl Dark Gray,1 +Nexo Knights,Knights Army-Building Set,26,2016,Flat Silver,7 +Nexo Knights,Micro Mecha Horse,24,2016,Red,3 +Nexo Knights,Micro Mecha Horse,24,2016,Light Bluish Gray,1 +Nexo Knights,Micro Mecha Horse,24,2016,Dark Blue,4 +Nexo Knights,Micro Mecha Horse,24,2016,Blue,7 +Nexo Knights,Monsters Army-Building Set,24,2016,Black,7 +Nexo Knights,Monsters Army-Building Set,24,2016,Reddish Brown,4 +Nexo Knights,Monsters Army-Building Set,24,2016,Flat Silver,3 +Nexo Knights,Micro Mecha Horse,24,2016,Black,1 +Nexo Knights,Monsters Army-Building Set,24,2016,Red,4 +Nexo Knights,Monsters Army-Building Set,24,2016,Pearl Dark Gray,2 +Nexo Knights,Robin And Horse,23,2016,Yellow,1 +Nexo Knights,Robin And Horse,23,2016,Trans-Neon Orange,1 +Nexo Knights,Robin And Horse,23,2016,Dark Bluish Gray,2 +Nexo Knights,Robin And Horse,23,2016,Black,2 +Nexo Knights,Robin And Horse,23,2016,Dark Blue,1 +Nexo Knights,Robin And Horse,23,2016,Blue,6 +Nexo Knights,Robin And Horse,23,2016,Pearl Dark Gray,1 +Nexo Knights,Robin And Horse,23,2016,Medium Dark Flesh,1 +Nexo Knights,Robin And Horse,23,2016,Light Bluish Gray,2 +Nexo Knights,Knight Racer,21,2016,Black,1 +Nexo Knights,Micro Rumble Blade,21,2016,Light Bluish Gray,4 +Nexo Knights,Micro Rumble Blade,21,2016,Flat Silver,1 +Nexo Knights,Micro Rumble Blade,21,2016,Dark Bluish Gray,1 +Nexo Knights,Micro Rumble Blade,21,2016,Blue,3 +Nexo Knights,Micro Rumble Blade,21,2016,Black,1 +Nexo Knights,Knight Racer,21,2016,Dark Blue,1 +Nexo Knights,Knight Racer,21,2016,Dark Bluish Gray,4 +Nexo Knights,Knight Racer,21,2016,Flat Silver,2 +Nexo Knights,Knight Racer,21,2016,Trans-Neon Orange,3 +Nexo Knights,Micro Rumble Blade,21,2016,Trans-Orange,3 +Nexo Knights,Knight Racer,21,2016,Blue,2 +Nexo Knights,Knight Racer,21,2016,Light Bluish Gray,2 +Nexo Knights,Kid Clay,18,2016,Pearl Dark Gray,1 +Nexo Knights,Micro Battle Blaster,18,2016,Black,2 +Nexo Knights,Micro Battle Blaster,18,2016,Trans-Orange,3 +Nexo Knights,Micro Battle Blaster,18,2016,Light Bluish Gray,3 +Nexo Knights,Micro Battle Blaster,18,2016,Flat Silver,1 +Nexo Knights,Micro Battle Blaster,18,2016,Blue,2 +Nexo Knights,Kid Clay,18,2016,Red,3 +Nexo Knights,Kid Clay,18,2016,Trans-Dark Blue,1 +Nexo Knights,Kid Clay,18,2016,Yellow,1 +Nexo Knights,Kid Clay,18,2016,Reddish Brown,1 +Nexo Knights,Kid Clay,18,2016,Black,1 +Nexo Knights,Kid Clay,18,2016,Flat Silver,4 +Nexo Knights,Kid Clay,18,2016,Light Bluish Gray,4 +Nexo Knights,Firecracker Catapult,17,2016,Black,1 +Nexo Knights,Firecracker Catapult,17,2016,Reddish Brown,1 +Nexo Knights,Firecracker Catapult,17,2016,Dark Bluish Gray,2 +Nexo Knights,Firecracker Catapult,17,2016,Dark Brown,1 +Nexo Knights,Firecracker Catapult,17,2016,Pearl Gold,1 +Nexo Knights,Firecracker Catapult,17,2016,Red,3 +Nexo Knights,Firecracker Catapult,17,2016,Trans-Neon Orange,2 +Nexo Knights,Lance,14,2016,Yellow,1 +Nexo Knights,Lance,14,2016,White,2 +Nexo Knights,Lance,14,2016,Trans-Neon Orange,1 +Nexo Knights,Lance,14,2016,Trans-Black,1 +Nexo Knights,Lance,14,2016,Tan,1 +Nexo Knights,Lance,14,2016,Pearl Gold,1 +Nexo Knights,Lance,14,2016,Light Bluish Gray,3 +Nexo Knights,Lance,14,2016,Flat Silver,2 +Nexo Knights,Lance,14,2016,Dark Orange,1 +Nexo Knights,Pilot Bot,13,2016,Dark Bluish Gray,1 +Nexo Knights,Pilot Bot,13,2016,Dark Azure,1 +Nexo Knights,Pilot Bot,13,2016,Red,1 +Nexo Knights,Pilot Bot,13,2016,Pearl Dark Gray,1 +Nexo Knights,Pilot Bot,13,2016,Light Bluish Gray,2 +Nexo Knights,Pilot Bot,13,2016,Flat Silver,3 +Nexo Knights,Pilot Bot,13,2016,Blue,1 +Nexo Knights,Lava fighter,12,2016,Pearl Dark Gray,1 +Nexo Knights,Lava fighter,12,2016,Pearl Gold,1 +Nexo Knights,Lava fighter,12,2016,Trans-Orange,1 +Nexo Knights,Lava fighter,12,2016,Reddish Brown,3 +Nexo Knights,Lava fighter,12,2016,Red,1 +Nexo Knights,Lava fighter,12,2016,Black,4 +Nexo Knights,Battle Station,8,2016,Trans-Neon Orange,1 +Nexo Knights,Battle Station,8,2016,Black,2 +Nexo Knights,Battle Station,8,2016,Blue,2 +Nexo Knights,Battle Station,8,2016,Dark Bluish Gray,2 +Nexo Knights,Nexo Knights Intro Pack,6,2016,White,1 +Nexo Knights,Nexo Knights Intro Pack,6,2016,Flat Silver,1 +Nexo Knights,Nexo Knights Intro Pack,6,2016,Black,3 +Nexo Knights,Nexo Knights Intro Pack,6,2016,Red,1 +Nexo Knights,Jestro's Headquarters,816,2017,Sand Blue,10 +Nexo Knights,Jestro's Headquarters,816,2017,Tan,3 +Nexo Knights,Jestro's Headquarters,816,2017,Trans-Bright Green,1 +Nexo Knights,Jestro's Headquarters,816,2017,Trans-Clear,2 +Nexo Knights,Jestro's Headquarters,816,2017,Trans-Dark Blue,1 +Nexo Knights,Jestro's Headquarters,816,2017,Trans-Light Blue,8 +Nexo Knights,Jestro's Headquarters,816,2017,Trans-Neon Orange,7 +Nexo Knights,Jestro's Headquarters,816,2017,Trans-Purple,4 +Nexo Knights,Jestro's Headquarters,816,2017,Trans-Red,1 +Nexo Knights,Jestro's Headquarters,816,2017,Trans-Yellow,1 +Nexo Knights,Jestro's Headquarters,816,2017,White,3 +Nexo Knights,Jestro's Headquarters,816,2017,Yellow,5 +Nexo Knights,Jestro's Headquarters,816,2017,Black,71 +Nexo Knights,Jestro's Headquarters,816,2017,Blue,8 +Nexo Knights,Jestro's Headquarters,816,2017,Bright Light Blue,1 +Nexo Knights,Jestro's Headquarters,816,2017,Bright Light Orange,2 +Nexo Knights,Jestro's Headquarters,816,2017,Dark Blue,3 +Nexo Knights,Jestro's Headquarters,816,2017,Dark Bluish Gray,76 +Nexo Knights,Jestro's Headquarters,816,2017,Dark Brown,2 +Nexo Knights,Jestro's Headquarters,816,2017,Dark Purple,20 +Nexo Knights,Jestro's Headquarters,816,2017,Dark Red,1 +Nexo Knights,Jestro's Headquarters,816,2017,Flat Silver,4 +Nexo Knights,Jestro's Headquarters,816,2017,Light Bluish Gray,32 +Nexo Knights,Jestro's Headquarters,816,2017,Medium Blue,4 +Nexo Knights,Jestro's Headquarters,816,2017,Medium Lavender,2 +Nexo Knights,Jestro's Headquarters,816,2017,Orange,1 +Nexo Knights,Jestro's Headquarters,816,2017,Pearl Dark Gray,5 +Nexo Knights,Jestro's Headquarters,816,2017,Pearl Gold,1 +Nexo Knights,Jestro's Headquarters,816,2017,Red,10 +Nexo Knights,Jestro's Headquarters,816,2017,Reddish Brown,1 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Red,1 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Light Bluish Gray,29 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Medium Blue,1 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Yellow,2 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Orange,9 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Pearl Dark Gray,1 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Reddish Brown,2 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Sand Blue,5 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Tan,1 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Trans-Clear,1 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Trans-Dark Blue,1 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Trans-Light Blue,4 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Dark Blue,18 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Trans-Neon Orange,8 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Trans-Purple,1 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Trans-Red,1 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Dark Azure,10 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Blue,16 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Black,14 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Dark Bluish Gray,35 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Dark Purple,4 +Nexo Knights,Clay's Falcon Fighter Blaster,520,2017,Flat Silver,10 +Nexo Knights,The Three Brothers,266,2017,Trans-Light Blue,7 +Nexo Knights,The Three Brothers,266,2017,Flat Silver,4 +Nexo Knights,The Three Brothers,266,2017,Light Bluish Gray,18 +Nexo Knights,The Three Brothers,266,2017,Medium Blue,1 +Nexo Knights,The Three Brothers,266,2017,Black,22 +Nexo Knights,The Three Brothers,266,2017,Blue,3 +Nexo Knights,The Three Brothers,266,2017,Bright Light Blue,1 +Nexo Knights,The Three Brothers,266,2017,Red,1 +Nexo Knights,The Three Brothers,266,2017,Sand Blue,7 +Nexo Knights,The Three Brothers,266,2017,Bright Pink,1 +Nexo Knights,The Three Brothers,266,2017,Dark Bluish Gray,24 +Nexo Knights,The Three Brothers,266,2017,Dark Purple,11 +Nexo Knights,The Three Brothers,266,2017,Tan,1 +Nexo Knights,The Three Brothers,266,2017,Bright Light Orange,1 +Nexo Knights,The Three Brothers,266,2017,Trans-Light Purple,1 +Nexo Knights,The Three Brothers,266,2017,Trans-Neon Orange,4 +Nexo Knights,The Three Brothers,266,2017,Trans-Purple,1 +Nexo Knights,The Three Brothers,266,2017,Yellow,2 +Nexo Knights,The Three Brothers,266,2017,Trans-Yellow,1 +Nexo Knights,Lance vs. lightning,252,2017,Blue,1 +Nexo Knights,Lance vs. lightning,252,2017,Orange,1 +Nexo Knights,Lance vs. lightning,252,2017,Black,24 +Nexo Knights,Lance vs. lightning,252,2017,Flat Silver,5 +Nexo Knights,Lance vs. lightning,252,2017,Dark Purple,8 +Nexo Knights,Lance vs. lightning,252,2017,Dark Brown,2 +Nexo Knights,Lance vs. lightning,252,2017,Yellow,1 +Nexo Knights,Lance vs. lightning,252,2017,Light Bluish Gray,13 +Nexo Knights,Lance vs. lightning,252,2017,White,13 +Nexo Knights,Lance vs. lightning,252,2017,Medium Blue,3 +Nexo Knights,Lance vs. lightning,252,2017,Trans-Purple,2 +Nexo Knights,Lance vs. lightning,252,2017,Trans-Neon Orange,8 +Nexo Knights,Lance vs. lightning,252,2017,Trans-Light Blue,2 +Nexo Knights,Lance vs. lightning,252,2017,Sand Blue,7 +Nexo Knights,Lance vs. lightning,252,2017,Dark Bluish Gray,27 +Nexo Knights,Lance vs. lightning,252,2017,Dark Blue,4 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Blue,1 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Dark Blue,7 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Dark Bluish Gray,33 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Dark Brown,1 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Dark Purple,4 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Dark Tan,2 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Flat Silver,5 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Green,3 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Light Bluish Gray,21 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Olive Green,1 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Orange,2 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Pearl Dark Gray,1 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Reddish Brown,6 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Tan,2 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Trans-Bright Green,2 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Trans-Light Blue,3 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Trans-Neon Orange,7 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Trans-Red,1 +Nexo Knights,Aaron's Stone Destroyer,245,2017,White,1 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Yellow,2 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Lime,2 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Red,2 +Nexo Knights,Aaron's Stone Destroyer,245,2017,Black,11 +Nexo Knights,Lance's Twin Jouster,215,2017,Pearl Dark Gray,2 +Nexo Knights,Lance's Twin Jouster,215,2017,Dark Purple,2 +Nexo Knights,Lance's Twin Jouster,215,2017,Trans-Clear,1 +Nexo Knights,Lance's Twin Jouster,215,2017,Trans-Light Blue,1 +Nexo Knights,Lance's Twin Jouster,215,2017,Trans-Neon Orange,8 +Nexo Knights,Lance's Twin Jouster,215,2017,White,15 +Nexo Knights,Lance's Twin Jouster,215,2017,Yellow,1 +Nexo Knights,Lance's Twin Jouster,215,2017,Pearl Gold,1 +Nexo Knights,Lance's Twin Jouster,215,2017,Black,13 +Nexo Knights,Lance's Twin Jouster,215,2017,Blue,2 +Nexo Knights,Lance's Twin Jouster,215,2017,Dark Blue,14 +Nexo Knights,Lance's Twin Jouster,215,2017,Dark Bluish Gray,13 +Nexo Knights,Lance's Twin Jouster,215,2017,Flat Silver,7 +Nexo Knights,Lance's Twin Jouster,215,2017,Light Bluish Gray,24 +Nexo Knights,Lance's Twin Jouster,215,2017,Orange,6 +Nexo Knights,Lance's Twin Jouster,215,2017,Tan,1 +Nexo Knights,Lance's Twin Jouster,215,2017,Red,1 +Nexo Knights,Lance's Twin Jouster,215,2017,Reddish Brown,2 +Nexo Knights,Ruina's Lock & Roller,200,2017,Pearl Gold,4 +Nexo Knights,Ruina's Lock & Roller,200,2017,Reddish Brown,2 +Nexo Knights,Ruina's Lock & Roller,200,2017,Black,23 +Nexo Knights,Ruina's Lock & Roller,200,2017,Tan,1 +Nexo Knights,Ruina's Lock & Roller,200,2017,Trans-Light Blue,6 +Nexo Knights,Ruina's Lock & Roller,200,2017,Trans-Neon Orange,3 +Nexo Knights,Ruina's Lock & Roller,200,2017,Trans-Purple,2 +Nexo Knights,Ruina's Lock & Roller,200,2017,White,1 +Nexo Knights,Ruina's Lock & Roller,200,2017,Yellow,4 +Nexo Knights,Ruina's Lock & Roller,200,2017,Light Bluish Gray,12 +Nexo Knights,Ruina's Lock & Roller,200,2017,Medium Blue,1 +Nexo Knights,Ruina's Lock & Roller,200,2017,Sand Blue,1 +Nexo Knights,Ruina's Lock & Roller,200,2017,Blue,4 +Nexo Knights,Ruina's Lock & Roller,200,2017,Bright Light Blue,1 +Nexo Knights,Ruina's Lock & Roller,200,2017,Dark Azure,1 +Nexo Knights,Ruina's Lock & Roller,200,2017,Dark Bluish Gray,28 +Nexo Knights,Ruina's Lock & Roller,200,2017,Dark Brown,1 +Nexo Knights,Ruina's Lock & Roller,200,2017,Dark Purple,8 +Nexo Knights,Ruina's Lock & Roller,200,2017,Dark Tan,1 +Nexo Knights,Ruina's Lock & Roller,200,2017,Flat Silver,4 +Nexo Knights,Ruina's Lock & Roller,200,2017,Green,1 +Nexo Knights,King's Guard Artillery,98,2017,Pearl Dark Gray,3 +Nexo Knights,King's Guard Artillery,98,2017,Red,1 +Nexo Knights,King's Guard Artillery,98,2017,Sand Blue,3 +Nexo Knights,King's Guard Artillery,98,2017,Tan,1 +Nexo Knights,King's Guard Artillery,98,2017,Trans-Light Blue,1 +Nexo Knights,King's Guard Artillery,98,2017,Trans-Neon Orange,6 +Nexo Knights,King's Guard Artillery,98,2017,Yellow,1 +Nexo Knights,King's Guard Artillery,98,2017,Dark Tan,1 +Nexo Knights,King's Guard Artillery,98,2017,Black,6 +Nexo Knights,King's Guard Artillery,98,2017,Blue,4 +Nexo Knights,King's Guard Artillery,98,2017,Dark Blue,3 +Nexo Knights,King's Guard Artillery,98,2017,Dark Bluish Gray,11 +Nexo Knights,King's Guard Artillery,98,2017,Dark Purple,1 +Nexo Knights,King's Guard Artillery,98,2017,Flat Silver,2 +Nexo Knights,King's Guard Artillery,98,2017,Light Bluish Gray,11 +Nexo Knights,King's Guard Artillery,98,2017,Orange,2 +Nexo Knights,Battle Suit Axl,87,2017,Yellow,1 +Nexo Knights,Battle Suit Axl,87,2017,Trans-Bright Green,1 +Nexo Knights,Battle Suit Axl,87,2017,Trans-Yellow,1 +Nexo Knights,Battle Suit Axl,87,2017,Trans-Red,1 +Nexo Knights,Battle Suit Axl,87,2017,Orange,2 +Nexo Knights,Battle Suit Axl,87,2017,Trans-Neon Orange,3 +Nexo Knights,Battle Suit Axl,87,2017,Trans-Dark Blue,1 +Nexo Knights,Battle Suit Axl,87,2017,Trans-Clear,1 +Nexo Knights,Battle Suit Axl,87,2017,Blue,1 +Nexo Knights,Battle Suit Axl,87,2017,Black,3 +Nexo Knights,Battle Suit Axl,87,2017,Bright Light Orange,10 +Nexo Knights,Battle Suit Axl,87,2017,Dark Bluish Gray,13 +Nexo Knights,Battle Suit Axl,87,2017,Flat Silver,4 +Nexo Knights,Battle Suit Axl,87,2017,Light Bluish Gray,11 +Nexo Knights,Battle Suit Lance,83,2017,Trans-Red,1 +Nexo Knights,Battle Suit Lance,83,2017,Trans-Yellow,1 +Nexo Knights,Battle Suit Lance,83,2017,White,15 +Nexo Knights,Battle Suit Lance,83,2017,Yellow,1 +Nexo Knights,Battle Suit Lance,83,2017,Trans-Dark Blue,1 +Nexo Knights,Battle Suit Lance,83,2017,Blue,1 +Nexo Knights,Battle Suit Lance,83,2017,Trans-Clear,1 +Nexo Knights,Battle Suit Lance,83,2017,Trans-Bright Green,1 +Nexo Knights,Battle Suit Lance,83,2017,Tan,1 +Nexo Knights,Battle Suit Lance,83,2017,Orange,3 +Nexo Knights,Battle Suit Lance,83,2017,Light Bluish Gray,9 +Nexo Knights,Battle Suit Lance,83,2017,Flat Silver,4 +Nexo Knights,Battle Suit Lance,83,2017,Dark Bluish Gray,5 +Nexo Knights,Battle Suit Lance,83,2017,Black,3 +Nexo Knights,Battle Suit Lance,83,2017,Trans-Neon Orange,3 +Nexo Knights,Battle Suit Aaron,80,2017,Green,12 +Nexo Knights,Battle Suit Aaron,80,2017,Yellow,1 +Nexo Knights,Battle Suit Aaron,80,2017,Trans-Yellow,1 +Nexo Knights,Battle Suit Aaron,80,2017,Trans-Neon Orange,4 +Nexo Knights,Battle Suit Aaron,80,2017,Trans-Dark Blue,1 +Nexo Knights,Battle Suit Aaron,80,2017,Trans-Clear,1 +Nexo Knights,Battle Suit Aaron,80,2017,Black,4 +Nexo Knights,Battle Suit Aaron,80,2017,Trans-Bright Green,1 +Nexo Knights,Battle Suit Aaron,80,2017,Orange,2 +Nexo Knights,Battle Suit Aaron,80,2017,Lime,4 +Nexo Knights,Battle Suit Aaron,80,2017,Light Bluish Gray,10 +Nexo Knights,Battle Suit Aaron,80,2017,Flat Silver,2 +Nexo Knights,Battle Suit Aaron,80,2017,Blue,1 +Nexo Knights,Battle Suit Aaron,80,2017,Trans-Red,1 +Nexo Knights,Battle Suit Aaron,80,2017,Dark Bluish Gray,9 +Nexo Knights,Battle Suit Clay,79,2017,Black,3 +Nexo Knights,Battle Suit Clay,79,2017,Trans-Red,1 +Nexo Knights,Battle Suit Clay,79,2017,Light Bluish Gray,5 +Nexo Knights,Battle Suit Clay,79,2017,Trans-Yellow,1 +Nexo Knights,Battle Suit Clay,79,2017,Flat Silver,3 +Nexo Knights,Battle Suit Clay,79,2017,Trans-Bright Green,1 +Nexo Knights,Battle Suit Clay,79,2017,Dark Blue,8 +Nexo Knights,Battle Suit Clay,79,2017,Yellow,1 +Nexo Knights,Battle Suit Clay,79,2017,Trans-Clear,1 +Nexo Knights,Battle Suit Clay,79,2017,Orange,2 +Nexo Knights,Battle Suit Clay,79,2017,Blue,3 +Nexo Knights,Battle Suit Clay,79,2017,Dark Azure,5 +Nexo Knights,Battle Suit Clay,79,2017,Dark Bluish Gray,9 +Nexo Knights,Battle Suit Clay,79,2017,Trans-Dark Blue,1 +Nexo Knights,Battle Suit Clay,79,2017,Trans-Neon Orange,2 +Nexo Knights,Battle Suit Macy,66,2017,Red,13 +Nexo Knights,Battle Suit Macy,66,2017,Orange,2 +Nexo Knights,Battle Suit Macy,66,2017,Light Bluish Gray,5 +Nexo Knights,Battle Suit Macy,66,2017,Flat Silver,2 +Nexo Knights,Battle Suit Macy,66,2017,Dark Bluish Gray,6 +Nexo Knights,Battle Suit Macy,66,2017,Black,4 +Nexo Knights,Battle Suit Macy,66,2017,Dark Red,3 +Nexo Knights,Battle Suit Macy,66,2017,Trans-Neon Orange,2 +Nexo Knights,Battle Suit Macy,66,2017,Trans-Dark Blue,1 +Nexo Knights,Battle Suit Macy,66,2017,Blue,1 +Nexo Knights,Battle Suit Macy,66,2017,Trans-Clear,1 +Nexo Knights,Battle Suit Macy,66,2017,Trans-Bright Green,1 +Nexo Knights,Battle Suit Macy,66,2017,Yellow,1 +Nexo Knights,Battle Suit Macy,66,2017,Trans-Yellow,1 +Nexo Knights,Battle Suit Macy,66,2017,Trans-Red,1 +Nexo Knights,Motor Horse polybag,52,2017,Orange,1 +Nexo Knights,Motor Horse polybag,52,2017,Trans-Neon Orange,4 +Nexo Knights,Motor Horse polybag,52,2017,Yellow,1 +Nexo Knights,Motor Horse polybag,52,2017,Dark Azure,1 +Nexo Knights,Motor Horse polybag,52,2017,Dark Blue,4 +Nexo Knights,Motor Horse polybag,52,2017,Dark Bluish Gray,4 +Nexo Knights,Motor Horse polybag,52,2017,Flat Silver,4 +Nexo Knights,Motor Horse polybag,52,2017,Light Bluish Gray,7 +Nexo Knights,Motor Horse polybag,52,2017,Light Gray,1 +Nexo Knights,Motor Horse polybag,52,2017,Blue,8 +Nexo Knights,Motor Horse polybag,52,2017,Brown,1 +Nexo Knights,Shrunken Headquarters,48,2017,Blue,1 +Nexo Knights,Shrunken Headquarters,48,2017,Dark Bluish Gray,5 +Nexo Knights,Shrunken Headquarters,48,2017,Dark Brown,1 +Nexo Knights,Shrunken Headquarters,48,2017,Dark Purple,3 +Nexo Knights,Shrunken Headquarters,48,2017,Light Bluish Gray,6 +Nexo Knights,Shrunken Headquarters,48,2017,Pearl Dark Gray,1 +Nexo Knights,Shrunken Headquarters,48,2017,Red,1 +Nexo Knights,Shrunken Headquarters,48,2017,Sand Blue,3 +Nexo Knights,Shrunken Headquarters,48,2017,Trans-Light Blue,1 +Nexo Knights,Shrunken Headquarters,48,2017,Yellow,1 +Nexo Knights,Shrunken Headquarters,48,2017,Black,6 +Nexo Knights,Knighton Rider,42,2017,Blue,4 +Nexo Knights,Knighton Rider,42,2017,Dark Azure,2 +Nexo Knights,Knighton Rider,42,2017,Dark Blue,1 +Nexo Knights,Knighton Rider,42,2017,Dark Bluish Gray,3 +Nexo Knights,Knighton Rider,42,2017,Trans-Neon Orange,1 +Nexo Knights,Knighton Rider,42,2017,Orange,2 +Nexo Knights,Knighton Rider,42,2017,Light Bluish Gray,5 +Nexo Knights,Knighton Rider,42,2017,Flat Silver,3 +Nexo Knights,Knighton Rider,42,2017,Black,2 +Nexo Knights,Robin,19,2017,Trans-Neon Orange,1 +Nexo Knights,Robin,19,2017,Pearl Dark Gray,2 +Nexo Knights,Robin,19,2017,Flat Silver,1 +Nexo Knights,Robin,19,2017,Dark Bluish Gray,1 +Nexo Knights,Robin,19,2017,Yellow,1 +Nexo Knights,Robin,19,2017,Dark Blue,3 +Nexo Knights,Robin,19,2017,Black,4 +Nexo Knights,Clay and Training Stand,18,2017,Black,1 +Nexo Knights,Clay and Training Stand,18,2017,Blue,1 +Nexo Knights,Clay and Training Stand,18,2017,Dark Azure,1 +Nexo Knights,Clay and Training Stand,18,2017,Dark Blue,1 +Nexo Knights,Clay and Training Stand,18,2017,Flat Silver,3 +Nexo Knights,Clay and Training Stand,18,2017,Light Bluish Gray,3 +Nexo Knights,Clay and Training Stand,18,2017,Dark Bluish Gray,1 +Nexo Knights,Clay and Training Stand,18,2017,Yellow,1 +Nexo Knights,Clay and Training Stand,18,2017,Aqua,1 +Nexo Knights,Clay and Training Stand,18,2017,Trans-Neon Orange,3 +Nexo Knights,Combo NEXO Powers Wave 1,5,2017,Trans-Neon Orange,1 +Nexo Knights,Combo NEXO Powers Wave 1,5,2017,Dark Blue,1 +Nexo Knights,Combo NEXO Powers Wave 1,5,2017,Light Bluish Gray,2 +Ninja,Flying Ninja Fortress,698,1998,Brown,10 +Ninja,Flying Ninja Fortress,698,1998,Chrome Gold,5 +Ninja,Flying Ninja Fortress,698,1998,Yellow,13 +Ninja,Flying Ninja Fortress,698,1998,White,22 +Ninja,Flying Ninja Fortress,698,1998,Trans-Yellow,1 +Ninja,Flying Ninja Fortress,698,1998,Trans-Red,1 +Ninja,Flying Ninja Fortress,698,1998,Chrome Silver,1 +Ninja,Flying Ninja Fortress,698,1998,Dark Gray,16 +Ninja,Flying Ninja Fortress,698,1998,Green,4 +Ninja,Flying Ninja Fortress,698,1998,Trans-Clear,3 +Ninja,Flying Ninja Fortress,698,1998,Light Gray,25 +Ninja,Flying Ninja Fortress,698,1998,Red,16 +Ninja,Flying Ninja Fortress,698,1998,Black,47 +Ninja,Flying Ninja Fortress,698,1998,Blue,8 +Ninja,Stone Tower Bridge,410,1998,White,3 +Ninja,Stone Tower Bridge,410,1998,Yellow,8 +Ninja,Stone Tower Bridge,410,1998,Black,39 +Ninja,Stone Tower Bridge,410,1998,Blue,3 +Ninja,Stone Tower Bridge,410,1998,Brown,7 +Ninja,Stone Tower Bridge,410,1998,Dark Gray,16 +Ninja,Stone Tower Bridge,410,1998,Green,5 +Ninja,Stone Tower Bridge,410,1998,Chrome Gold,5 +Ninja,Stone Tower Bridge,410,1998,Light Gray,18 +Ninja,Stone Tower Bridge,410,1998,Red,14 +Ninja,Stone Tower Bridge,410,1998,Trans-Clear,2 +Ninja,Robber's Retreat,281,1998,Yellow,7 +Ninja,Robber's Retreat,281,1998,White,1 +Ninja,Robber's Retreat,281,1998,Trans-Clear,2 +Ninja,Robber's Retreat,281,1998,Red,26 +Ninja,Robber's Retreat,281,1998,Light Gray,14 +Ninja,Robber's Retreat,281,1998,Trans-Yellow,1 +Ninja,Robber's Retreat,281,1998,Green,7 +Ninja,Robber's Retreat,281,1998,Dark Gray,9 +Ninja,Robber's Retreat,281,1998,Black,40 +Ninja,Robber's Retreat,281,1998,Blue,1 +Ninja,Robber's Retreat,281,1998,Brown,7 +Ninja,Robber's Retreat,281,1998,Chrome Gold,4 +Ninja,Samurai Stronghold,198,1998,Blue,5 +Ninja,Samurai Stronghold,198,1998,Brown,3 +Ninja,Samurai Stronghold,198,1998,Chrome Gold,1 +Ninja,Samurai Stronghold,198,1998,Dark Gray,6 +Ninja,Samurai Stronghold,198,1998,Green,4 +Ninja,Samurai Stronghold,198,1998,Light Gray,15 +Ninja,Samurai Stronghold,198,1998,Red,5 +Ninja,Samurai Stronghold,198,1998,Trans-Clear,1 +Ninja,Samurai Stronghold,198,1998,Trans-Neon Green,1 +Ninja,Samurai Stronghold,198,1998,White,4 +Ninja,Samurai Stronghold,198,1998,Yellow,5 +Ninja,Samurai Stronghold,198,1998,Trans-Red,1 +Ninja,Samurai Stronghold,198,1998,Black,28 +Ninja,Ninja Surprise,112,1998,Brown,6 +Ninja,Ninja Surprise,112,1998,Black,17 +Ninja,Ninja Surprise,112,1998,Dark Gray,11 +Ninja,Ninja Surprise,112,1998,Light Gray,7 +Ninja,Ninja Surprise,112,1998,Green,2 +Ninja,Ninja Surprise,112,1998,Trans-Red,1 +Ninja,Ninja Surprise,112,1998,Trans-Neon Green,1 +Ninja,Ninja Surprise,112,1998,Trans-Clear,2 +Ninja,Ninja Surprise,112,1998,Red,8 +Ninja,Ninja Surprise,112,1998,Yellow,4 +Ninja,Treasure Transport,59,1998,Brown,2 +Ninja,Treasure Transport,59,1998,Dark Gray,6 +Ninja,Treasure Transport,59,1998,Green,2 +Ninja,Treasure Transport,59,1998,Light Gray,5 +Ninja,Treasure Transport,59,1998,[No Color],1 +Ninja,Treasure Transport,59,1998,Black,9 +Ninja,Treasure Transport,59,1998,Blue,1 +Ninja,Treasure Transport,59,1998,Chrome Gold,4 +Ninja,Treasure Transport,59,1998,Red,6 +Ninja,Treasure Transport,59,1998,Yellow,4 +Ninja,Treasure Transport,59,1998,White,1 +Ninja,Treasure Transport,59,1998,Trans-Clear,2 +Ninja,Go! LEGO Shogun,25,1998,Chrome Gold,1 +Ninja,Go! LEGO Shogun,25,1998,Dark Gray,3 +Ninja,Water Spider,25,1998,Yellow,1 +Ninja,Go! LEGO Shogun,25,1998,White,1 +Ninja,Go! LEGO Shogun,25,1998,Yellow,1 +Ninja,Go! LEGO Shogun,25,1998,Light Gray,3 +Ninja,Water Spider,25,1998,Black,5 +Ninja,Water Spider,25,1998,Brown,3 +Ninja,Water Spider,25,1998,Dark Gray,2 +Ninja,Water Spider,25,1998,Light Gray,3 +Ninja,Water Spider,25,1998,Red,3 +Ninja,Go! LEGO Shogun,25,1998,Black,4 +Ninja,Go! LEGO Shogun,25,1998,Blue,4 +Ninja,Go! LEGO Shogun,25,1998,Brown,2 +Ninja,Boss with Cannon,24,1998,Black,5 +Ninja,Boss with Cannon,24,1998,Brown,2 +Ninja,Boss with Cannon,24,1998,Dark Gray,1 +Ninja,Boss with Cannon,24,1998,Light Gray,4 +Ninja,Boss with Cannon,24,1998,Red,4 +Ninja,Boss with Cannon,24,1998,Yellow,1 +Ninja,Big Bat,23,1998,Black,4 +Ninja,Big Bat,23,1998,Brown,1 +Ninja,Big Bat,23,1998,Dark Gray,3 +Ninja,Big Bat,23,1998,Light Gray,1 +Ninja,Big Bat,23,1998,Yellow,1 +Ninja,Big Bat,23,1998,Blue,2 +Ninja,Samurai Swordsman,13,1998,Blue,2 +Ninja,Samurai Swordsman,13,1998,Black,4 +Ninja,Samurai Swordsman,13,1998,Yellow,1 +Ninja,Samurai Swordsman,13,1998,Trans-Clear,1 +Ninja,Samurai Swordsman,13,1998,Light Gray,1 +Ninja,Samurai Swordsman,13,1998,Dark Gray,2 +Ninja,Samurai Swordsman,13,1998,Chrome Gold,1 +Ninja,Samurai Swordsman,13,1998,Brown,1 +Ninja,Three Minifig Pack - Ninja #3,26,2000,Yellow,3 +Ninja,Three Minifig Pack - Ninja #3,26,2000,[No Color],3 +Ninja,Three Minifig Pack - Ninja #3,26,2000,Black,2 +Ninja,Three Minifig Pack - Ninja #3,26,2000,Chrome Gold,1 +Ninja,Three Minifig Pack - Ninja #3,26,2000,Green,4 +Ninja,Three Minifig Pack - Ninja #3,26,2000,Light Gray,1 +Ninja,Three Minifig Pack - Ninja #3,26,2000,Royal Blue,1 +Ninja,Three Minifig Pack - Ninja #3,26,2000,White,3 +Ninja,Three Minifig Pack - Ninja #2,24,2000,Black,4 +Ninja,Three Minifig Pack - Ninja #2,24,2000,Dark Gray,2 +Ninja,Three Minifig Pack - Ninja #2,24,2000,Red,2 +Ninja,Three Minifig Pack - Ninja #2,24,2000,White,2 +Ninja,Three Minifig Pack - Ninja #2,24,2000,Yellow,3 +Ninja,Three Minifig Pack - Ninja #2,24,2000,[No Color],3 +Ninja,One Minifig Pack - Ninja #1,10,2000,Brown,1 +Ninja,One Minifig Pack - Ninja #1,10,2000,Dark Gray,2 +Ninja,One Minifig Pack - Ninja #1,10,2000,Red,1 +Ninja,One Minifig Pack - Ninja #1,10,2000,Royal Blue,1 +Ninja,One Minifig Pack - Ninja #1,10,2000,White,4 +Ninja,One Minifig Pack - Ninja #1,10,2000,Yellow,1 +Ninja,One Minifig Pack - Ninja #1,10,2000,Black,1 +Ninjago,Fire Temple,1174,2011,Speckle Black-Silver,1 +Ninjago,Fire Temple,1174,2011,Bright Light Orange,4 +Ninjago,Fire Temple,1174,2011,Bright Pink,1 +Ninjago,Fire Temple,1174,2011,Dark Blue,1 +Ninjago,Fire Temple,1174,2011,Dark Bluish Gray,18 +Ninjago,Fire Temple,1174,2011,Dark Brown,3 +Ninjago,Fire Temple,1174,2011,Dark Green,3 +Ninjago,Fire Temple,1174,2011,Trans-Neon Orange,2 +Ninjago,Fire Temple,1174,2011,Dark Red,14 +Ninjago,Fire Temple,1174,2011,Dark Tan,4 +Ninjago,Fire Temple,1174,2011,Flat Silver,1 +Ninjago,Fire Temple,1174,2011,Light Bluish Gray,13 +Ninjago,Fire Temple,1174,2011,Lime,3 +Ninjago,Fire Temple,1174,2011,Orange,5 +Ninjago,Fire Temple,1174,2011,Pearl Gold,14 +Ninjago,Fire Temple,1174,2011,Pearl Light Gray,2 +Ninjago,Fire Temple,1174,2011,Red,34 +Ninjago,Fire Temple,1174,2011,Reddish Brown,16 +Ninjago,Fire Temple,1174,2011,Yellow,13 +Ninjago,Fire Temple,1174,2011,White,21 +Ninjago,Fire Temple,1174,2011,Trans-Red,1 +Ninjago,Fire Temple,1174,2011,Trans-Orange,1 +Ninjago,Fire Temple,1174,2011,Green,3 +Ninjago,Fire Temple,1174,2011,Trans-Light Blue,1 +Ninjago,Fire Temple,1174,2011,Trans-Clear,3 +Ninjago,Fire Temple,1174,2011,Tan,14 +Ninjago,Fire Temple,1174,2011,Black,64 +Ninjago,Fire Temple,1174,2011,Blue,5 +Ninjago,Lightning Dragon Battle,643,2011,Dark Bluish Gray,32 +Ninjago,Lightning Dragon Battle,643,2011,Dark Purple,4 +Ninjago,Lightning Dragon Battle,643,2011,Dark Tan,1 +Ninjago,Lightning Dragon Battle,643,2011,Light Bluish Gray,19 +Ninjago,Lightning Dragon Battle,643,2011,Medium Blue,4 +Ninjago,Lightning Dragon Battle,643,2011,Pearl Dark Gray,1 +Ninjago,Lightning Dragon Battle,643,2011,Pearl Gold,7 +Ninjago,Lightning Dragon Battle,643,2011,Flat Silver,1 +Ninjago,Lightning Dragon Battle,643,2011,Red,3 +Ninjago,Lightning Dragon Battle,643,2011,Reddish Brown,6 +Ninjago,Lightning Dragon Battle,643,2011,Tan,1 +Ninjago,Lightning Dragon Battle,643,2011,Trans-Dark Blue,2 +Ninjago,Lightning Dragon Battle,643,2011,Trans-Light Blue,1 +Ninjago,Lightning Dragon Battle,643,2011,Trans-Medium Blue,1 +Ninjago,Lightning Dragon Battle,643,2011,Trans-Orange,2 +Ninjago,Lightning Dragon Battle,643,2011,Trans-Red,2 +Ninjago,Lightning Dragon Battle,643,2011,Yellow,4 +Ninjago,Lightning Dragon Battle,643,2011,White,36 +Ninjago,Lightning Dragon Battle,643,2011,Trans-Bright Green,1 +Ninjago,Lightning Dragon Battle,643,2011,Dark Blue,13 +Ninjago,Lightning Dragon Battle,643,2011,Blue,5 +Ninjago,Lightning Dragon Battle,643,2011,Black,56 +Ninjago,Skull Truck,517,2011,Trans-Light Blue,1 +Ninjago,Skull Truck,517,2011,Trans-Black,1 +Ninjago,Skull Truck,517,2011,Tan,1 +Ninjago,Skull Truck,517,2011,Speckle Black-Silver,1 +Ninjago,Skull Truck,517,2011,Red,9 +Ninjago,Skull Truck,517,2011,Light Bluish Gray,19 +Ninjago,Skull Truck,517,2011,Trans-Clear,1 +Ninjago,Skull Truck,517,2011,Dark Purple,5 +Ninjago,Skull Truck,517,2011,Dark Brown,1 +Ninjago,Skull Truck,517,2011,Dark Bluish Gray,20 +Ninjago,Skull Truck,517,2011,Blue,5 +Ninjago,Skull Truck,517,2011,Black,43 +Ninjago,Skull Truck,517,2011,Flat Silver,1 +Ninjago,Skull Truck,517,2011,Pearl Gold,2 +Ninjago,Skull Truck,517,2011,Yellow,8 +Ninjago,Skull Truck,517,2011,White,52 +Ninjago,Skull Truck,517,2011,Trans-Red,2 +Ninjago,Garmadon's Dark Fortress,516,2011,Dark Bluish Gray,17 +Ninjago,Garmadon's Dark Fortress,516,2011,Dark Purple,5 +Ninjago,Garmadon's Dark Fortress,516,2011,Reddish Brown,10 +Ninjago,Garmadon's Dark Fortress,516,2011,Dark Tan,1 +Ninjago,Garmadon's Dark Fortress,516,2011,Flat Silver,2 +Ninjago,Garmadon's Dark Fortress,516,2011,Light Bluish Gray,30 +Ninjago,Garmadon's Dark Fortress,516,2011,Red,13 +Ninjago,Garmadon's Dark Fortress,516,2011,Speckle Black-Silver,1 +Ninjago,Garmadon's Dark Fortress,516,2011,Tan,3 +Ninjago,Garmadon's Dark Fortress,516,2011,Trans-Light Blue,1 +Ninjago,Garmadon's Dark Fortress,516,2011,Pearl Gold,7 +Ninjago,Garmadon's Dark Fortress,516,2011,Trans-Neon Orange,1 +Ninjago,Garmadon's Dark Fortress,516,2011,Trans-Red,5 +Ninjago,Garmadon's Dark Fortress,516,2011,White,36 +Ninjago,Garmadon's Dark Fortress,516,2011,[No Color],1 +Ninjago,Garmadon's Dark Fortress,516,2011,Black,34 +Ninjago,Garmadon's Dark Fortress,516,2011,Blue,1 +Ninjago,Garmadon's Dark Fortress,516,2011,Yellow,3 +Ninjago,Battle Arena,462,2011,Black,45 +Ninjago,Battle Arena,462,2011,Blue,3 +Ninjago,Battle Arena,462,2011,Dark Bluish Gray,17 +Ninjago,Battle Arena,462,2011,Dark Purple,2 +Ninjago,Battle Arena,462,2011,Flat Silver,3 +Ninjago,Battle Arena,462,2011,Light Bluish Gray,22 +Ninjago,Battle Arena,462,2011,Lime,1 +Ninjago,Battle Arena,462,2011,Pearl Gold,8 +Ninjago,Battle Arena,462,2011,Red,23 +Ninjago,Battle Arena,462,2011,Reddish Brown,18 +Ninjago,Battle Arena,462,2011,Tan,1 +Ninjago,Battle Arena,462,2011,Trans-Clear,1 +Ninjago,Battle Arena,462,2011,Trans-Red,1 +Ninjago,Battle Arena,462,2011,White,29 +Ninjago,Battle Arena,462,2011,Yellow,1 +Ninjago,Battle Arena,462,2011,[No Color],11 +Ninjago,Spinjitzu Dojo,381,2011,Dark Tan,1 +Ninjago,Spinjitzu Dojo,381,2011,Flat Silver,1 +Ninjago,Spinjitzu Dojo,381,2011,Pearl Gold,1 +Ninjago,Spinjitzu Dojo,381,2011,Green,2 +Ninjago,Spinjitzu Dojo,381,2011,Light Bluish Gray,11 +Ninjago,Spinjitzu Dojo,381,2011,[No Color],6 +Ninjago,Spinjitzu Dojo,381,2011,Black,28 +Ninjago,Spinjitzu Dojo,381,2011,Blue,4 +Ninjago,Spinjitzu Dojo,381,2011,Dark Bluish Gray,20 +Ninjago,Spinjitzu Dojo,381,2011,Trans-Orange,1 +Ninjago,Spinjitzu Dojo,381,2011,Trans-Clear,1 +Ninjago,Spinjitzu Dojo,381,2011,Tan,11 +Ninjago,Spinjitzu Dojo,381,2011,Speckle Black-Silver,1 +Ninjago,Spinjitzu Dojo,381,2011,Trans-Neon Orange,1 +Ninjago,Spinjitzu Dojo,381,2011,Trans-Yellow,1 +Ninjago,Spinjitzu Dojo,381,2011,White,14 +Ninjago,Spinjitzu Dojo,381,2011,Yellow,3 +Ninjago,Spinjitzu Dojo,381,2011,Reddish Brown,10 +Ninjago,Spinjitzu Dojo,381,2011,Red,11 +Ninjago,Spinjitzu Dojo,381,2011,Pearl Light Gray,4 +Ninjago,Skeleton Bowling,373,2011,Yellow,1 +Ninjago,Skeleton Bowling,373,2011,Dark Tan,1 +Ninjago,Skeleton Bowling,373,2011,Pearl Gold,5 +Ninjago,Skeleton Bowling,373,2011,Red,20 +Ninjago,Skeleton Bowling,373,2011,Reddish Brown,18 +Ninjago,Skeleton Bowling,373,2011,Tan,6 +Ninjago,Skeleton Bowling,373,2011,White,2 +Ninjago,Skeleton Bowling,373,2011,[No Color],1 +Ninjago,Skeleton Bowling,373,2011,Black,20 +Ninjago,Skeleton Bowling,373,2011,Dark Bluish Gray,13 +Ninjago,Skeleton Bowling,373,2011,Light Bluish Gray,8 +Ninjago,Skeleton Bowling,373,2011,Flat Silver,2 +Ninjago,Skeleton Bowling,373,2011,Blue,4 +Ninjago,Skeleton Bowling,373,2011,Green,2 +Ninjago,Turbo Shredder,298,2011,Red,4 +Ninjago,Turbo Shredder,298,2011,Dark Bluish Gray,10 +Ninjago,Turbo Shredder,298,2011,Dark Brown,1 +Ninjago,Turbo Shredder,298,2011,Dark Purple,5 +Ninjago,Turbo Shredder,298,2011,Dark Tan,1 +Ninjago,Turbo Shredder,298,2011,Blue,5 +Ninjago,Turbo Shredder,298,2011,Yellow,3 +Ninjago,Turbo Shredder,298,2011,White,30 +Ninjago,Turbo Shredder,298,2011,Flat Silver,1 +Ninjago,Turbo Shredder,298,2011,Trans-Red,3 +Ninjago,Turbo Shredder,298,2011,Tan,1 +Ninjago,Turbo Shredder,298,2011,Pearl Gold,3 +Ninjago,Turbo Shredder,298,2011,Light Bluish Gray,15 +Ninjago,Turbo Shredder,298,2011,Black,39 +Ninjago,Earth Dragon Defense,226,2011,Dark Tan,4 +Ninjago,Earth Dragon Defense,226,2011,White,4 +Ninjago,Earth Dragon Defense,226,2011,Trans-Yellow,1 +Ninjago,Earth Dragon Defense,226,2011,Pearl Gold,3 +Ninjago,Earth Dragon Defense,226,2011,Pearl Dark Gray,1 +Ninjago,Earth Dragon Defense,226,2011,Dark Bluish Gray,29 +Ninjago,Earth Dragon Defense,226,2011,Trans-Red,1 +Ninjago,Earth Dragon Defense,226,2011,Black,13 +Ninjago,Earth Dragon Defense,226,2011,Blue,1 +Ninjago,Earth Dragon Defense,226,2011,Dark Green,1 +Ninjago,Earth Dragon Defense,226,2011,Flat Silver,2 +Ninjago,Earth Dragon Defense,226,2011,Green,1 +Ninjago,Earth Dragon Defense,226,2011,Tan,3 +Ninjago,Earth Dragon Defense,226,2011,Trans-Green,1 +Ninjago,Earth Dragon Defense,226,2011,Light Bluish Gray,12 +Ninjago,Earth Dragon Defense,226,2011,Sand Green,1 +Ninjago,Earth Dragon Defense,226,2011,Reddish Brown,16 +Ninjago,Earth Dragon Defense,226,2011,Red,1 +Ninjago,Earth Dragon Defense,226,2011,Trans-Orange,1 +Ninjago,Earth Dragon Defense,226,2011,Yellow,1 +Ninjago,Blacksmith Shop,178,2011,Blue,1 +Ninjago,Blacksmith Shop,178,2011,Bright Green,1 +Ninjago,Blacksmith Shop,178,2011,Dark Bluish Gray,15 +Ninjago,Blacksmith Shop,178,2011,Dark Brown,1 +Ninjago,Blacksmith Shop,178,2011,Dark Orange,1 +Ninjago,Blacksmith Shop,178,2011,Flat Silver,4 +Ninjago,Blacksmith Shop,178,2011,Green,1 +Ninjago,Blacksmith Shop,178,2011,Light Bluish Gray,11 +Ninjago,Blacksmith Shop,178,2011,Pearl Gold,2 +Ninjago,Blacksmith Shop,178,2011,Red,4 +Ninjago,Blacksmith Shop,178,2011,Dark Red,1 +Ninjago,Blacksmith Shop,178,2011,Trans-Dark Blue,1 +Ninjago,Blacksmith Shop,178,2011,Tan,4 +Ninjago,Blacksmith Shop,178,2011,Reddish Brown,14 +Ninjago,Blacksmith Shop,178,2011,White,2 +Ninjago,Blacksmith Shop,178,2011,Trans-Neon Orange,1 +Ninjago,Blacksmith Shop,178,2011,Black,25 +Ninjago,Nuckal's ATV,174,2011,Dark Bluish Gray,8 +Ninjago,Nuckal's ATV,174,2011,Dark Purple,4 +Ninjago,Nuckal's ATV,174,2011,Light Bluish Gray,6 +Ninjago,Nuckal's ATV,174,2011,Pearl Gold,2 +Ninjago,Nuckal's ATV,174,2011,Red,6 +Ninjago,Nuckal's ATV,174,2011,Black,17 +Ninjago,Nuckal's ATV,174,2011,Tan,1 +Ninjago,Nuckal's ATV,174,2011,Yellow,1 +Ninjago,Nuckal's ATV,174,2011,Trans-Red,3 +Ninjago,Nuckal's ATV,174,2011,White,22 +Ninjago,Nuckal's ATV,174,2011,Blue,2 +Ninjago,Mountain Shrine,168,2011,Reddish Brown,11 +Ninjago,Mountain Shrine,168,2011,[No Color],6 +Ninjago,Mountain Shrine,168,2011,Black,14 +Ninjago,Mountain Shrine,168,2011,Dark Bluish Gray,11 +Ninjago,Mountain Shrine,168,2011,Flat Silver,1 +Ninjago,Mountain Shrine,168,2011,Green,2 +Ninjago,Mountain Shrine,168,2011,Light Bluish Gray,13 +Ninjago,Mountain Shrine,168,2011,Metallic Gold,1 +Ninjago,Mountain Shrine,168,2011,Pearl Gold,2 +Ninjago,Mountain Shrine,168,2011,Red,14 +Ninjago,Mountain Shrine,168,2011,Speckle Black-Silver,1 +Ninjago,Mountain Shrine,168,2011,Tan,11 +Ninjago,Mountain Shrine,168,2011,Trans-Orange,1 +Ninjago,Mountain Shrine,168,2011,White,1 +Ninjago,Mountain Shrine,168,2011,Yellow,1 +Ninjago,Ice Dragon Attack,158,2011,Trans-Medium Blue,3 +Ninjago,Ice Dragon Attack,158,2011,White,28 +Ninjago,Ice Dragon Attack,158,2011,Yellow,1 +Ninjago,Ice Dragon Attack,158,2011,Blue,2 +Ninjago,Ice Dragon Attack,158,2011,Dark Bluish Gray,10 +Ninjago,Ice Dragon Attack,158,2011,Orange,3 +Ninjago,Ice Dragon Attack,158,2011,Black,10 +Ninjago,Ice Dragon Attack,158,2011,Pearl Gold,2 +Ninjago,Ice Dragon Attack,158,2011,Red,2 +Ninjago,Ice Dragon Attack,158,2011,Light Bluish Gray,3 +Ninjago,Skull Motorbike,156,2011,Black,23 +Ninjago,Skull Motorbike,156,2011,[No Color],1 +Ninjago,Skull Motorbike,156,2011,Pearl Gold,2 +Ninjago,Skull Motorbike,156,2011,Light Bluish Gray,9 +Ninjago,Skull Motorbike,156,2011,Dark Bluish Gray,11 +Ninjago,Skull Motorbike,156,2011,Copper,1 +Ninjago,Skull Motorbike,156,2011,Dark Purple,2 +Ninjago,Skull Motorbike,156,2011,Blue,5 +Ninjago,Skull Motorbike,156,2011,Red,4 +Ninjago,Skull Motorbike,156,2011,Tan,2 +Ninjago,Skull Motorbike,156,2011,Trans-Red,2 +Ninjago,Skull Motorbike,156,2011,White,19 +Ninjago,Skull Motorbike,156,2011,Yellow,1 +Ninjago,Ninjago Card Shrine,98,2011,Dark Bluish Gray,1 +Ninjago,Ninjago Card Shrine,98,2011,Black,17 +Ninjago,Ninjago Card Shrine,98,2011,[No Color],1 +Ninjago,Ninjago Card Shrine,98,2011,Yellow,1 +Ninjago,Ninjago Card Shrine,98,2011,Red,13 +Ninjago,Ninjago Card Shrine,98,2011,Reddish Brown,3 +Ninjago,Ninjago Card Shrine,98,2011,White,2 +Ninjago,Ninjago Card Shrine,98,2011,Green,1 +Ninjago,Mini Turbo Shredder,83,2011,Dark Purple,2 +Ninjago,Mini Turbo Shredder,83,2011,Dark Bluish Gray,3 +Ninjago,Mini Turbo Shredder,83,2011,Trans-Orange,1 +Ninjago,Mini Turbo Shredder,83,2011,Tan,1 +Ninjago,Mini Turbo Shredder,83,2011,Light Bluish Gray,4 +Ninjago,Mini Turbo Shredder,83,2011,White,9 +Ninjago,Mini Turbo Shredder,83,2011,Black,13 +Ninjago,Ninja Ambush,71,2011,Pearl Light Gray,1 +Ninjago,Ninja Ambush,71,2011,Light Bluish Gray,3 +Ninjago,Ninja Ambush,71,2011,Reddish Brown,8 +Ninjago,Ninja Ambush,71,2011,Speckle Black-Silver,1 +Ninjago,Ninja Ambush,71,2011,Tan,2 +Ninjago,Ninja Ambush,71,2011,White,5 +Ninjago,Ninja Ambush,71,2011,Yellow,1 +Ninjago,Ninja Ambush,71,2011,Red,4 +Ninjago,Ninja Ambush,71,2011,Black,1 +Ninjago,Ninja Ambush,71,2011,Blue,1 +Ninjago,Ninja Ambush,71,2011,Dark Bluish Gray,3 +Ninjago,Ninja Ambush,71,2011,Dark Green,1 +Ninjago,Ninja Ambush,71,2011,Green,1 +Ninjago,Ninja Ambush,71,2011,Pearl Gold,3 +Ninjago,Spinjitzu Starter Set,47,2011,Orange,2 +Ninjago,Spinjitzu Starter Set,47,2011,Dark Bluish Gray,1 +Ninjago,Spinjitzu Starter Set,47,2011,Blue,5 +Ninjago,Spinjitzu Starter Set,47,2011,Black,3 +Ninjago,Spinjitzu Starter Set,47,2011,[No Color],10 +Ninjago,Spinjitzu Starter Set,47,2011,Pearl Light Gray,2 +Ninjago,Spinjitzu Starter Set,47,2011,Red,2 +Ninjago,Spinjitzu Starter Set,47,2011,Reddish Brown,1 +Ninjago,Spinjitzu Starter Set,47,2011,White,6 +Ninjago,Spinjitzu Starter Set,47,2011,Yellow,1 +Ninjago,Spinjitzu Starter Set,47,2011,Pearl Gold,2 +Ninjago,Ninja Training Outpost,46,2011,Black,14 +Ninjago,Ninja Training Outpost,46,2011,Blue,1 +Ninjago,Ninja Training Outpost,46,2011,Dark Bluish Gray,4 +Ninjago,Ninja Training Outpost,46,2011,Dark Brown,1 +Ninjago,Ninja Training Outpost,46,2011,Light Bluish Gray,1 +Ninjago,Ninja Training Outpost,46,2011,Pearl Gold,1 +Ninjago,Ninja Training Outpost,46,2011,Red,5 +Ninjago,Ninja Training Outpost,46,2011,White,1 +Ninjago,Ninja Training Outpost,46,2011,Yellow,2 +Ninjago,Ninja Training Outpost,46,2011,Green,1 +Ninjago,Ninja Training Outpost,46,2011,Reddish Brown,4 +Ninjago,Skeleton Chopper,41,2011,Dark Purple,2 +Ninjago,Skeleton Chopper,41,2011,Black,5 +Ninjago,Skeleton Chopper,41,2011,Dark Bluish Gray,2 +Ninjago,Skeleton Chopper,41,2011,Light Bluish Gray,2 +Ninjago,Skeleton Chopper,41,2011,White,10 +Ninjago,Enemy Training,32,2011,Green,1 +Ninjago,Enemy Training,32,2011,Dark Bluish Gray,2 +Ninjago,Enemy Training,32,2011,Blue,3 +Ninjago,Enemy Training,32,2011,Black,5 +Ninjago,Enemy Training,32,2011,Yellow,1 +Ninjago,Enemy Training,32,2011,White,7 +Ninjago,Enemy Training,32,2011,Trans-Red,1 +Ninjago,Enemy Training,32,2011,Reddish Brown,1 +Ninjago,Enemy Training,32,2011,Light Bluish Gray,1 +Ninjago,Dragon Fight,31,2011,Dark Red,1 +Ninjago,Dragon Fight,31,2011,Orange,1 +Ninjago,Dragon Fight,31,2011,Red,8 +Ninjago,Dragon Fight,31,2011,Black,4 +Ninjago,Dragon Fight,31,2011,Bright Light Orange,1 +Ninjago,Dragon Fight,31,2011,Yellow,8 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Blue,1 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Dark Bluish Gray,5 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Glow In Dark Opaque,1 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Light Bluish Gray,2 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Trans-Light Blue,1 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Trans-Neon Orange,1 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Trans-Neon Green,1 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Reddish Brown,1 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Red,1 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Royal Blue,1 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,[No Color],1 +Ninjago,Exclusive Weapon Training Set - Limited Edition,28,2011,Black,4 +Ninjago,Ninja Glider,26,2011,Black,3 +Ninjago,Nuckal,26,2011,[No Color],5 +Ninjago,Nuckal,26,2011,Black,3 +Ninjago,Nuckal,26,2011,Blue,2 +Ninjago,Nuckal,26,2011,Flat Silver,1 +Ninjago,Nuckal,26,2011,Light Bluish Gray,1 +Ninjago,Nuckal,26,2011,Pearl Light Gray,1 +Ninjago,Nuckal,26,2011,Red,1 +Ninjago,Ninja Glider,26,2011,Red,1 +Ninjago,Ninja Glider,26,2011,Pearl Gold,2 +Ninjago,Ninja Glider,26,2011,Dark Bluish Gray,1 +Ninjago,Nuckal,26,2011,White,5 +Ninjago,Nuckal,26,2011,Pearl Gold,2 +Ninjago,Nuckal,26,2011,Dark Bluish Gray,1 +Ninjago,Ninja Glider,26,2011,Yellow,1 +Ninjago,Ninja Glider,26,2011,White,3 +Ninjago,Ninja Glider,26,2011,Tan,3 +Ninjago,Kruncha,24,2011,Dark Bluish Gray,1 +Ninjago,Kruncha,24,2011,Black,2 +Ninjago,Kruncha,24,2011,[No Color],5 +Ninjago,Kruncha,24,2011,Pearl Gold,2 +Ninjago,Kruncha,24,2011,Reddish Brown,2 +Ninjago,Kruncha,24,2011,Light Bluish Gray,1 +Ninjago,Kruncha,24,2011,Trans-Bright Green,1 +Ninjago,Kruncha,24,2011,White,6 +Ninjago,Lord Garmadon,23,2011,Trans-Light Blue,1 +Ninjago,Lord Garmadon,23,2011,Pearl Light Gray,1 +Ninjago,Lord Garmadon,23,2011,Pearl Gold,2 +Ninjago,Lord Garmadon,23,2011,Lime,2 +Ninjago,Lord Garmadon,23,2011,Light Bluish Gray,1 +Ninjago,Lord Garmadon,23,2011,Flat Silver,1 +Ninjago,Lord Garmadon,23,2011,[No Color],5 +Ninjago,Lord Garmadon,23,2011,Black,5 +Ninjago,Wyplash,23,2011,Pearl Gold,2 +Ninjago,Wyplash,23,2011,Reddish Brown,1 +Ninjago,Wyplash,23,2011,Tan,1 +Ninjago,Wyplash,23,2011,[No Color],5 +Ninjago,Lord Garmadon,23,2011,Trans-Purple,1 +Ninjago,Lord Garmadon,23,2011,White,2 +Ninjago,Wyplash,23,2011,Black,2 +Ninjago,Wyplash,23,2011,Medium Blue,2 +Ninjago,Wyplash,23,2011,White,5 +Ninjago,Wyplash,23,2011,Trans-Light Blue,1 +Ninjago,Zane DX,22,2011,Black,2 +Ninjago,Zane DX,22,2011,Light Bluish Gray,3 +Ninjago,Zane DX,22,2011,Pearl Gold,3 +Ninjago,Zane DX,22,2011,White,5 +Ninjago,Zane DX,22,2011,Yellow,1 +Ninjago,Krazi,22,2011,[No Color],5 +Ninjago,Krazi,22,2011,Black,2 +Ninjago,Krazi,22,2011,Dark Bluish Gray,2 +Ninjago,Krazi,22,2011,Light Bluish Gray,1 +Ninjago,Krazi,22,2011,Pearl Gold,1 +Ninjago,Krazi,22,2011,White,5 +Ninjago,Krazi,22,2011,Yellow,2 +Ninjago,Zane DX,22,2011,Red,2 +Ninjago,Zane DX,22,2011,[No Color],5 +Ninjago,Bonezai,21,2011,[No Color],5 +Ninjago,Bonezai,21,2011,Black,2 +Ninjago,Bonezai,21,2011,Dark Bluish Gray,1 +Ninjago,Bonezai,21,2011,Flat Silver,1 +Ninjago,Bonezai,21,2011,Pearl Gold,1 +Ninjago,Bonezai,21,2011,Speckle Black-Silver,1 +Ninjago,Cole DX,21,2011,Yellow,1 +Ninjago,Cole DX,21,2011,Reddish Brown,2 +Ninjago,Cole DX,21,2011,[No Color],5 +Ninjago,Cole DX,21,2011,Black,4 +Ninjago,Cole DX,21,2011,Flat Silver,1 +Ninjago,Cole DX,21,2011,Pearl Dark Gray,1 +Ninjago,Cole DX,21,2011,Pearl Gold,4 +Ninjago,Cole DX,21,2011,Red,2 +Ninjago,Nya,21,2011,Yellow,1 +Ninjago,Nya,21,2011,Reddish Brown,1 +Ninjago,Nya,21,2011,Red,5 +Ninjago,Nya,21,2011,Pearl Gold,1 +Ninjago,Nya,21,2011,Orange,1 +Ninjago,Nya,21,2011,Dark Bluish Gray,1 +Ninjago,Nya,21,2011,Black,3 +Ninjago,Nya,21,2011,[No Color],5 +Ninjago,Bonezai,21,2011,White,7 +Ninjago,Sensei Wu,20,2011,Yellow,1 +Ninjago,Sensei Wu,20,2011,White,3 +Ninjago,Sensei Wu,20,2011,Trans-Medium Blue,1 +Ninjago,Sensei Wu,20,2011,Tan,1 +Ninjago,Sensei Wu,20,2011,Pearl Gold,5 +Ninjago,Sensei Wu,20,2011,Black,3 +Ninjago,Sensei Wu,20,2011,[No Color],5 +Ninjago,Chopov,20,2011,Lime,2 +Ninjago,Chopov,20,2011,Dark Bluish Gray,1 +Ninjago,Chopov,20,2011,Black,2 +Ninjago,Chopov,20,2011,White,5 +Ninjago,Chopov,20,2011,[No Color],5 +Ninjago,Chopov,20,2011,Pearl Gold,1 +Ninjago,Chopov,20,2011,Reddish Brown,1 +Ninjago,Zane,19,2011,Black,1 +Ninjago,Zane,19,2011,Dark Bluish Gray,1 +Ninjago,Zane,19,2011,Medium Blue,1 +Ninjago,Zane,19,2011,Pearl Dark Gray,1 +Ninjago,Zane,19,2011,Pearl Gold,1 +Ninjago,Zane,19,2011,Pearl Light Gray,1 +Ninjago,Zane,19,2011,White,5 +Ninjago,Zane,19,2011,Yellow,1 +Ninjago,Kai,19,2011,Orange,1 +Ninjago,Kai,19,2011,Yellow,1 +Ninjago,Kai,19,2011,Red,5 +Ninjago,Kai,19,2011,Pearl Gold,1 +Ninjago,Kai,19,2011,Pearl Dark Gray,1 +Ninjago,Kai,19,2011,Light Bluish Gray,2 +Ninjago,Kai,19,2011,Dark Bluish Gray,1 +Ninjago,Kai,19,2011,[No Color],5 +Ninjago,Zane,19,2011,[No Color],5 +Ninjago,Cole,18,2011,Pearl Gold,1 +Ninjago,Cole,18,2011,Reddish Brown,3 +Ninjago,Cole,18,2011,Yellow,1 +Ninjago,Cole,18,2011,[No Color],5 +Ninjago,Cole,18,2011,Black,3 +Ninjago,Cole,18,2011,Dark Bluish Gray,1 +Ninjago,Cole,18,2011,Light Bluish Gray,1 +Ninjago,Cole,18,2011,Lime,1 +Ninjago,Ninjago Promotional Giveaway,11,2011,Pearl Gold,2 +Ninjago,Ninjago Promotional Giveaway,11,2011,Dark Bluish Gray,1 +Ninjago,Ninjago Promotional Giveaway,11,2011,Black,1 +Ninjago,Ninjago Promotional Giveaway,11,2011,Reddish Brown,3 +Ninjago,Ninjago Promotional Set,5,2011,Yellow,1 +Ninjago,Ninjago Promotional Set,5,2011,Blue,3 +Ninjago,Ninjago Promotional Set,5,2011,Black,1 +Ninjago,Dragon's Forge,1118,2017,Medium Azure,1 +Ninjago,Dragon's Forge,1118,2017,Medium Dark Flesh,1 +Ninjago,Dragon's Forge,1118,2017,Olive Green,4 +Ninjago,Dragon's Forge,1118,2017,Orange,2 +Ninjago,Dragon's Forge,1118,2017,Pearl Dark Gray,9 +Ninjago,Dragon's Forge,1118,2017,Pearl Gold,7 +Ninjago,Dragon's Forge,1118,2017,Red,35 +Ninjago,Dragon's Forge,1118,2017,Reddish Brown,35 +Ninjago,Dragon's Forge,1118,2017,Tan,1 +Ninjago,Dragon's Forge,1118,2017,Trans-Clear,1 +Ninjago,Dragon's Forge,1118,2017,Trans-Light Blue,6 +Ninjago,Dragon's Forge,1118,2017,Dark Brown,7 +Ninjago,Dragon's Forge,1118,2017,Trans-Neon Orange,1 +Ninjago,Dragon's Forge,1118,2017,Trans-Orange,6 +Ninjago,Dragon's Forge,1118,2017,Trans-Red,1 +Ninjago,Dragon's Forge,1118,2017,Trans-Yellow,1 +Ninjago,Dragon's Forge,1118,2017,Unknown,6 +Ninjago,Dragon's Forge,1118,2017,White,15 +Ninjago,Dragon's Forge,1118,2017,Yellow,1 +Ninjago,Dragon's Forge,1118,2017,Trans-Dark Blue,1 +Ninjago,Dragon's Forge,1118,2017,Black,98 +Ninjago,Dragon's Forge,1118,2017,Dark Azure,11 +Ninjago,Dragon's Forge,1118,2017,Blue,2 +Ninjago,Dragon's Forge,1118,2017,Dark Bluish Gray,57 +Ninjago,Dragon's Forge,1118,2017,Dark Green,1 +Ninjago,Dragon's Forge,1118,2017,Dark Orange,3 +Ninjago,Dragon's Forge,1118,2017,Dark Red,4 +Ninjago,Dragon's Forge,1118,2017,Dark Tan,6 +Ninjago,Dragon's Forge,1118,2017,Flat Silver,1 +Ninjago,Dragon's Forge,1118,2017,Light Bluish Gray,47 +Ninjago,Dragon's Forge,1118,2017,Lime,8 +Ninjago,Dawn of Iron Doom,680,2017,Black,41 +Ninjago,Dawn of Iron Doom,680,2017,Blue,3 +Ninjago,Dawn of Iron Doom,680,2017,Dark Bluish Gray,33 +Ninjago,Dawn of Iron Doom,680,2017,Dark Brown,3 +Ninjago,Dawn of Iron Doom,680,2017,Dark Green,3 +Ninjago,Dawn of Iron Doom,680,2017,Dark Red,1 +Ninjago,Dawn of Iron Doom,680,2017,Dark Tan,8 +Ninjago,Dawn of Iron Doom,680,2017,Flat Silver,1 +Ninjago,Dawn of Iron Doom,680,2017,Glitter Trans-Light Blue,2 +Ninjago,Dawn of Iron Doom,680,2017,Green,5 +Ninjago,Dawn of Iron Doom,680,2017,Light Bluish Gray,20 +Ninjago,Dawn of Iron Doom,680,2017,Olive Green,3 +Ninjago,Dawn of Iron Doom,680,2017,Orange,1 +Ninjago,Dawn of Iron Doom,680,2017,Pearl Dark Gray,11 +Ninjago,Dawn of Iron Doom,680,2017,Pearl Gold,3 +Ninjago,Dawn of Iron Doom,680,2017,Red,38 +Ninjago,Dawn of Iron Doom,680,2017,Reddish Brown,21 +Ninjago,Dawn of Iron Doom,680,2017,Tan,10 +Ninjago,Dawn of Iron Doom,680,2017,White,3 +Ninjago,Dawn of Iron Doom,680,2017,Lime,4 +Ninjago,Dawn of Iron Doom,680,2017,Yellow,3 +Ninjago,Dawn of Iron Doom,680,2017,Unknown,5 +Ninjago,Dawn of Iron Doom,680,2017,Trans-Red,4 +Ninjago,Samurai VXL,414,2017,Trans-Clear,1 +Ninjago,Samurai VXL,414,2017,Black,53 +Ninjago,Samurai VXL,414,2017,Blue,3 +Ninjago,Samurai VXL,414,2017,Dark Blue,9 +Ninjago,Samurai VXL,414,2017,Dark Bluish Gray,21 +Ninjago,Samurai VXL,414,2017,Dark Brown,1 +Ninjago,Samurai VXL,414,2017,Dark Red,1 +Ninjago,Samurai VXL,414,2017,Dark Tan,8 +Ninjago,Samurai VXL,414,2017,Flat Silver,1 +Ninjago,Samurai VXL,414,2017,Green,1 +Ninjago,Samurai VXL,414,2017,Light Bluish Gray,21 +Ninjago,Samurai VXL,414,2017,Lime,1 +Ninjago,Samurai VXL,414,2017,Pearl Dark Gray,3 +Ninjago,Samurai VXL,414,2017,Pearl Gold,7 +Ninjago,Samurai VXL,414,2017,Red,6 +Ninjago,Samurai VXL,414,2017,Reddish Brown,4 +Ninjago,Samurai VXL,414,2017,Trans-Light Blue,3 +Ninjago,Samurai VXL,414,2017,Trans-Red,2 +Ninjago,Samurai VXL,414,2017,Trans-Yellow,1 +Ninjago,Samurai VXL,414,2017,Unknown,4 +Ninjago,Samurai VXL,414,2017,White,3 +Ninjago,Samurai VXL,414,2017,Yellow,3 +Ninjago,Destiny's Shadow,344,2017,Medium Dark Flesh,1 +Ninjago,Destiny's Shadow,344,2017,Red,9 +Ninjago,Destiny's Shadow,344,2017,Reddish Brown,26 +Ninjago,Destiny's Shadow,344,2017,Tan,1 +Ninjago,Destiny's Shadow,344,2017,Trans-Clear,2 +Ninjago,Destiny's Shadow,344,2017,Trans-Purple,2 +Ninjago,Destiny's Shadow,344,2017,Trans-Red,1 +Ninjago,Destiny's Shadow,344,2017,Orange,1 +Ninjago,Destiny's Shadow,344,2017,Unknown,3 +Ninjago,Destiny's Shadow,344,2017,Yellow,5 +Ninjago,Destiny's Shadow,344,2017,Olive Green,6 +Ninjago,Destiny's Shadow,344,2017,Pearl Gold,10 +Ninjago,Destiny's Shadow,344,2017,Black,27 +Ninjago,Destiny's Shadow,344,2017,Blue,1 +Ninjago,Destiny's Shadow,344,2017,Bright Light Orange,4 +Ninjago,Destiny's Shadow,344,2017,Dark Bluish Gray,23 +Ninjago,Destiny's Shadow,344,2017,Dark Brown,4 +Ninjago,Destiny's Shadow,344,2017,Dark Green,2 +Ninjago,Destiny's Shadow,344,2017,Dark Purple,1 +Ninjago,Destiny's Shadow,344,2017,Pearl Dark Gray,4 +Ninjago,Destiny's Shadow,344,2017,Dark Red,4 +Ninjago,Destiny's Shadow,344,2017,Dark Tan,4 +Ninjago,Destiny's Shadow,344,2017,Flat Silver,2 +Ninjago,Destiny's Shadow,344,2017,Glitter Trans-Light Blue,1 +Ninjago,Destiny's Shadow,344,2017,Green,1 +Ninjago,Destiny's Shadow,344,2017,Light Bluish Gray,11 +Ninjago,Vermillion Invader,304,2017,Black,38 +Ninjago,Vermillion Invader,304,2017,Blue,2 +Ninjago,Vermillion Invader,304,2017,Dark Bluish Gray,17 +Ninjago,Vermillion Invader,304,2017,Dark Green,1 +Ninjago,Vermillion Invader,304,2017,Dark Orange,1 +Ninjago,Vermillion Invader,304,2017,Dark Tan,1 +Ninjago,Vermillion Invader,304,2017,Flat Silver,1 +Ninjago,Vermillion Invader,304,2017,Light Bluish Gray,14 +Ninjago,Vermillion Invader,304,2017,Lime,2 +Ninjago,Vermillion Invader,304,2017,Olive Green,2 +Ninjago,Vermillion Invader,304,2017,Pearl Dark Gray,6 +Ninjago,Vermillion Invader,304,2017,Red,30 +Ninjago,Vermillion Invader,304,2017,Reddish Brown,4 +Ninjago,Vermillion Invader,304,2017,Tan,1 +Ninjago,Vermillion Invader,304,2017,Trans-Red,2 +Ninjago,Vermillion Invader,304,2017,Unknown,6 +Ninjago,Vermillion Invader,304,2017,White,2 +Ninjago,Desert Lightning,192,2017,Pearl Gold,4 +Ninjago,Desert Lightning,192,2017,Red,12 +Ninjago,Desert Lightning,192,2017,Reddish Brown,1 +Ninjago,Desert Lightning,192,2017,Trans-Red,1 +Ninjago,Desert Lightning,192,2017,Trans-Yellow,1 +Ninjago,Desert Lightning,192,2017,Unknown,3 +Ninjago,Desert Lightning,192,2017,Yellow,2 +Ninjago,Desert Lightning,192,2017,Trans-Dark Blue,3 +Ninjago,Desert Lightning,192,2017,Black,27 +Ninjago,Desert Lightning,192,2017,Blue,5 +Ninjago,Desert Lightning,192,2017,Dark Blue,3 +Ninjago,Desert Lightning,192,2017,Dark Bluish Gray,14 +Ninjago,Desert Lightning,192,2017,Glitter Trans-Light Blue,1 +Ninjago,Desert Lightning,192,2017,Light Bluish Gray,6 +Ninjago,Desert Lightning,192,2017,Pearl Dark Gray,3 +Ninjago,The Vermillion Attack,75,2017,Light Bluish Gray,5 +Ninjago,The Vermillion Attack,75,2017,Lime,1 +Ninjago,The Vermillion Attack,75,2017,Olive Green,1 +Ninjago,The Vermillion Attack,75,2017,Pearl Dark Gray,7 +Ninjago,The Vermillion Attack,75,2017,Red,3 +Ninjago,The Vermillion Attack,75,2017,Reddish Brown,9 +Ninjago,The Vermillion Attack,75,2017,Trans-Red,2 +Ninjago,The Vermillion Attack,75,2017,Yellow,1 +Ninjago,The Vermillion Attack,75,2017,Black,5 +Ninjago,The Vermillion Attack,75,2017,Copper,1 +Ninjago,The Vermillion Attack,75,2017,Dark Bluish Gray,4 +Ninjago,The Vermillion Attack,75,2017,Dark Brown,4 +Ninjago,The Vermillion Attack,75,2017,Dark Green,1 +Ninjago,The Vermillion Attack,75,2017,Flat Silver,1 +Ninjago,NINJAGO Accessory Set,26,2017,Black,6 +Ninjago,NINJAGO Accessory Set,26,2017,Bright Light Orange,2 +Ninjago,NINJAGO Accessory Set,26,2017,Dark Bluish Gray,2 +Ninjago,NINJAGO Accessory Set,26,2017,Dark Brown,1 +Ninjago,NINJAGO Accessory Set,26,2017,Dark Red,1 +Ninjago,NINJAGO Accessory Set,26,2017,Light Bluish Gray,2 +Ninjago,NINJAGO Accessory Set,26,2017,Red,1 +Ninjago,NINJAGO Accessory Set,26,2017,Reddish Brown,2 +Ninjago,NINJAGO Accessory Set,26,2017,Sand Blue,3 +Ninjago,NINJAGO Accessory Set,26,2017,Trans-Black,1 +Ninjago,NINJAGO Accessory Set,26,2017,Yellow,2 +NXT,AC Adapter 230V - 10V Transformer,1,1996,Black,1 +NXT,"AC Adapter, 120V - 10V Transformer",1,1996,Black,1 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Black,26 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Blue,2 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Dark Bluish Gray,18 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Light Bluish Gray,27 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Orange,2 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Red,4 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Tan,1 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Trans-Clear,2 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Trans-Green,1 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Trans-Red,1 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Trans-Yellow,1 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Very Light Bluish Gray,7 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,White,2 +NXT,LEGO MINDSTORMS Education NXT Base Set,434,2006,Yellow,2 +Off-Road,Desert Racer,180,1983,Black,12 +Off-Road,Desert Racer,180,1983,Blue,9 +Off-Road,Desert Racer,180,1983,Light Gray,22 +Off-Road,Desert Racer,180,1983,Red,7 +Off-Road,Desert Racer,180,1983,White,2 +Off-Road,Desert Racer,180,1983,Yellow,1 +Off-Road,UNICEF Van,59,1985,Black,14 +Off-Road,UNICEF Van,59,1985,Blue,14 +Off-Road,UNICEF Van,59,1985,Brown,1 +Off-Road,UNICEF Van,59,1985,Dark Gray,1 +Off-Road,UNICEF Van,59,1985,Light Gray,2 +Off-Road,UNICEF Van,59,1985,Trans-Clear,1 +Off-Road,UNICEF Van,59,1985,Trans-Red,1 +Off-Road,UNICEF Van,59,1985,Trans-Yellow,1 +Off-Road,UNICEF Van,59,1985,Yellow,1 +Off-Road,Snow Scooter,24,1994,Black,3 +Off-Road,Snow Scooter,24,1994,Blue,2 +Off-Road,Snow Scooter,24,1994,Brown,1 +Off-Road,Snow Scooter,24,1994,Light Gray,4 +Off-Road,Snow Scooter,24,1994,Red,4 +Off-Road,Snow Scooter,24,1994,Trans-Light Blue,1 +Off-Road,Snow Scooter,24,1994,Trans-Yellow,1 +Off-Road,Snow Scooter,24,1994,White,1 +Off-Road,Snow Scooter,24,1994,Yellow,1 +Off-Road,Snowmobile,24,1994,Black,3 +Off-Road,Snowmobile,24,1994,Blue,2 +Off-Road,Snowmobile,24,1994,Brown,1 +Off-Road,Snowmobile,24,1994,Light Gray,4 +Off-Road,Snowmobile,24,1994,Red,4 +Off-Road,Snowmobile,24,1994,Trans-Light Blue,1 +Off-Road,Snowmobile,24,1994,Trans-Yellow,1 +Off-Road,Snowmobile,24,1994,White,1 +Off-Road,Snowmobile,24,1994,Yellow,1 +Off-Road,Dirt Bike Transporter,205,2012,Black,28 +Off-Road,Dirt Bike Transporter,205,2012,Blue,8 +Off-Road,Dirt Bike Transporter,205,2012,Dark Bluish Gray,2 +Off-Road,Dirt Bike Transporter,205,2012,Green,1 +Off-Road,Dirt Bike Transporter,205,2012,Light Bluish Gray,23 +Off-Road,Dirt Bike Transporter,205,2012,Lime,1 +Off-Road,Dirt Bike Transporter,205,2012,Orange,1 +Off-Road,Dirt Bike Transporter,205,2012,Red,11 +Off-Road,Dirt Bike Transporter,205,2012,Tan,3 +Off-Road,Dirt Bike Transporter,205,2012,Trans-Black,2 +Off-Road,Dirt Bike Transporter,205,2012,Trans-Clear,1 +Off-Road,Dirt Bike Transporter,205,2012,Trans-Orange,1 +Off-Road,Dirt Bike Transporter,205,2012,Trans-Red,1 +Off-Road,Dirt Bike Transporter,205,2012,Trans-Yellow,1 +Off-Road,Dirt Bike Transporter,205,2012,White,5 +Off-Road,Dirt Bike Transporter,205,2012,Yellow,6 +Off-Road,Arctic Truck,912,2015,Black,43 +Off-Road,Arctic Truck,912,2015,Blue,3 +Off-Road,Arctic Truck,912,2015,Dark Bluish Gray,20 +Off-Road,Arctic Truck,912,2015,Dark Tan,1 +Off-Road,Arctic Truck,912,2015,Light Bluish Gray,25 +Off-Road,Arctic Truck,912,2015,Orange,14 +Off-Road,Arctic Truck,912,2015,Red,6 +Off-Road,Arctic Truck,912,2015,Tan,6 +Off-Road,Arctic Truck,912,2015,Trans-Clear,2 +Off-Road,Arctic Truck,912,2015,White,8 +Off-Road,Arctic Truck,912,2015,Yellow,1 +Off-Road,Formula Off-Roader,493,2015,Black,27 +Off-Road,Formula Off-Roader,493,2015,Blue,4 +Off-Road,Formula Off-Roader,493,2015,Dark Bluish Gray,10 +Off-Road,Formula Off-Roader,493,2015,Dark Tan,1 +Off-Road,Formula Off-Roader,493,2015,Light Bluish Gray,27 +Off-Road,Formula Off-Roader,493,2015,Lime,7 +Off-Road,Formula Off-Roader,493,2015,Medium Blue,3 +Off-Road,Formula Off-Roader,493,2015,Red,2 +Off-Road,Formula Off-Roader,493,2015,Tan,6 +Off-Road,Formula Off-Roader,493,2015,Trans-Clear,1 +Off-Road,Formula Off-Roader,493,2015,Yellow,3 +Off-Road,Quad Bike,148,2015,[No Color],1 +Off-Road,Quad Bike,148,2015,Black,21 +Off-Road,Quad Bike,148,2015,Blue,2 +Off-Road,Quad Bike,148,2015,Dark Bluish Gray,3 +Off-Road,Quad Bike,148,2015,Dark Tan,1 +Off-Road,Quad Bike,148,2015,Light Bluish Gray,18 +Off-Road,Quad Bike,148,2015,Red,1 +Off-Road,Quad Bike,148,2015,Tan,1 +Off-Road,Quad Bike,148,2015,Trans-Clear,1 +Off-Road,Quad Bike,148,2015,Yellow,6 +Off-Road,4 x 4 Off Roader,184,2016,[No Color],1 +Off-Road,4 x 4 Off Roader,184,2016,Black,26 +Off-Road,4 x 4 Off Roader,184,2016,Blue,2 +Off-Road,4 x 4 Off Roader,184,2016,Dark Bluish Gray,13 +Off-Road,4 x 4 Off Roader,184,2016,Green,11 +Off-Road,4 x 4 Off Roader,184,2016,Light Bluish Gray,7 +Off-Road,4 x 4 Off Roader,184,2016,Red,14 +Off-Road,4 x 4 Off Roader,184,2016,Tan,2 +Off-Road,4 x 4 Off Roader,184,2016,Trans-Black,2 +Off-Road,4 x 4 Off Roader,184,2016,Trans-Clear,1 +Off-Road,4 x 4 Off Roader,184,2016,Trans-Red,2 +Off-Road,4 x 4 Off Roader,184,2016,Trans-Yellow,1 +Off-Road,4 x 4 Off Roader,184,2016,White,13 +Off-Road,4 x 4 Off Roader,184,2016,Yellow,6 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Black,43 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Blue,4 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Bright Pink,1 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Dark Bluish Gray,34 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Dark Pink,1 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Dark Purple,1 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Green,7 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Light Bluish Gray,54 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Metallic Gold,1 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Pearl Gold,1 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Pearl Light Gray,2 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Red,7 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Reddish Brown,21 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Sand Green,7 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Speckle Black-Silver,1 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Tan,37 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Trans-Clear,7 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Trans-Dark Blue,2 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Trans-Dark Pink,1 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Trans-Green,1 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Trans-Light Blue,2 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Trans-Neon Orange,2 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Trans-Orange,2 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Trans-Red,1 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,Trans-Yellow,1 +Order of the Phoenix,Hogwarts Castle (3rd edition),904,2007,White,8 +Orient Expedition,Dragon Fortress,741,2003,Trans-Green,1 +Orient Expedition,Dragon Fortress,741,2003,Green,3 +Orient Expedition,Dragon Fortress,741,2003,Dark Gray,43 +Orient Expedition,Dragon Fortress,741,2003,Chrome Gold,2 +Orient Expedition,Dragon Fortress,741,2003,Chrome Antique Brass,1 +Orient Expedition,Dragon Fortress,741,2003,Brown,14 +Orient Expedition,Dragon Fortress,741,2003,Black,52 +Orient Expedition,Dragon Fortress,741,2003,Yellow,9 +Orient Expedition,Dragon Fortress,741,2003,White,4 +Orient Expedition,Dragon Fortress,741,2003,Trans-Yellow,3 +Orient Expedition,Dragon Fortress,741,2003,Trans-Red,2 +Orient Expedition,Dragon Fortress,741,2003,Trans-Neon Orange,1 +Orient Expedition,Dragon Fortress,741,2003,[No Color],39 +Orient Expedition,Dragon Fortress,741,2003,Trans-Dark Blue,1 +Orient Expedition,Dragon Fortress,741,2003,Trans-Clear,2 +Orient Expedition,Dragon Fortress,741,2003,Tan,19 +Orient Expedition,Dragon Fortress,741,2003,Sand Green,8 +Orient Expedition,Dragon Fortress,741,2003,Red,34 +Orient Expedition,Dragon Fortress,741,2003,Light Gray,15 +Orient Expedition,Scorpion Palace,354,2003,Trans-Red,2 +Orient Expedition,Scorpion Palace,354,2003,Trans-Yellow,2 +Orient Expedition,Scorpion Palace,354,2003,White,29 +Orient Expedition,Scorpion Palace,354,2003,Yellow,11 +Orient Expedition,Scorpion Palace,354,2003,Trans-Green,1 +Orient Expedition,Scorpion Palace,354,2003,Black,24 +Orient Expedition,Scorpion Palace,354,2003,[No Color],25 +Orient Expedition,Scorpion Palace,354,2003,Trans-Dark Blue,1 +Orient Expedition,Scorpion Palace,354,2003,Tan,4 +Orient Expedition,Scorpion Palace,354,2003,Red,4 +Orient Expedition,Scorpion Palace,354,2003,Light Gray,16 +Orient Expedition,Scorpion Palace,354,2003,Green,7 +Orient Expedition,Scorpion Palace,354,2003,Dark Orange,7 +Orient Expedition,Scorpion Palace,354,2003,Dark Gray,23 +Orient Expedition,Scorpion Palace,354,2003,Dark Blue,9 +Orient Expedition,Scorpion Palace,354,2003,Brown,9 +Orient Expedition,Scorpion Palace,354,2003,Bright Green,2 +Orient Expedition,Scorpion Palace,354,2003,Blue,2 +Orient Expedition,Temple of Mount Everest,288,2003,Trans-Yellow,1 +Orient Expedition,Temple of Mount Everest,288,2003,Black,27 +Orient Expedition,Temple of Mount Everest,288,2003,Brown,18 +Orient Expedition,Temple of Mount Everest,288,2003,Chrome Gold,1 +Orient Expedition,Temple of Mount Everest,288,2003,Dark Gray,22 +Orient Expedition,Temple of Mount Everest,288,2003,Dark Orange,1 +Orient Expedition,Temple of Mount Everest,288,2003,[No Color],24 +Orient Expedition,Temple of Mount Everest,288,2003,Light Gray,34 +Orient Expedition,Temple of Mount Everest,288,2003,Medium Orange,3 +Orient Expedition,Temple of Mount Everest,288,2003,Tan,4 +Orient Expedition,Temple of Mount Everest,288,2003,Trans-Clear,1 +Orient Expedition,Temple of Mount Everest,288,2003,Trans-Neon Orange,1 +Orient Expedition,Temple of Mount Everest,288,2003,White,10 +Orient Expedition,Temple of Mount Everest,288,2003,Yellow,16 +Orient Expedition,Emperor's Ship,178,2003,Trans-Dark Blue,1 +Orient Expedition,Emperor's Ship,178,2003,Trans-Green,1 +Orient Expedition,Emperor's Ship,178,2003,Trans-Red,1 +Orient Expedition,Emperor's Ship,178,2003,Trans-Yellow,2 +Orient Expedition,Emperor's Ship,178,2003,Yellow,2 +Orient Expedition,Emperor's Ship,178,2003,Light Gray,8 +Orient Expedition,Emperor's Ship,178,2003,[No Color],3 +Orient Expedition,Emperor's Ship,178,2003,Black,27 +Orient Expedition,Emperor's Ship,178,2003,Brown,8 +Orient Expedition,Emperor's Ship,178,2003,Dark Gray,8 +Orient Expedition,Emperor's Ship,178,2003,Red,17 +Orient Expedition,Emperor's Ship,178,2003,Tan,9 +Orient Expedition,Aero Nomad,120,2003,Black,9 +Orient Expedition,Aero Nomad,120,2003,Red,6 +Orient Expedition,Aero Nomad,120,2003,[No Color],5 +Orient Expedition,Aero Nomad,120,2003,Brown,7 +Orient Expedition,Aero Nomad,120,2003,Dark Gray,13 +Orient Expedition,Aero Nomad,120,2003,Trans-Neon Orange,1 +Orient Expedition,Aero Nomad,120,2003,Yellow,8 +Orient Expedition,Aero Nomad,120,2003,White,2 +Orient Expedition,Aero Nomad,120,2003,Tan,5 +Orient Expedition,Aero Nomad,120,2003,Light Gray,10 +Orient Expedition,Yeti's Hideout,114,2003,Black,6 +Orient Expedition,Yeti's Hideout,114,2003,[No Color],3 +Orient Expedition,Yeti's Hideout,114,2003,White,13 +Orient Expedition,Yeti's Hideout,114,2003,Yellow,5 +Orient Expedition,Yeti's Hideout,114,2003,Trans-Light Blue,2 +Orient Expedition,Yeti's Hideout,114,2003,Trans-Green,1 +Orient Expedition,Yeti's Hideout,114,2003,Trans-Clear,1 +Orient Expedition,Yeti's Hideout,114,2003,Tan,3 +Orient Expedition,Yeti's Hideout,114,2003,Medium Orange,1 +Orient Expedition,Yeti's Hideout,114,2003,Light Gray,8 +Orient Expedition,Yeti's Hideout,114,2003,Dark Gray,9 +Orient Expedition,Yeti's Hideout,114,2003,Brown,8 +Orient Expedition,Elephant Caravan,104,2003,Trans-Yellow,1 +Orient Expedition,Elephant Caravan,104,2003,Trans-Red,1 +Orient Expedition,Elephant Caravan,104,2003,Trans-Clear,2 +Orient Expedition,Elephant Caravan,104,2003,White,3 +Orient Expedition,Elephant Caravan,104,2003,Tan,1 +Orient Expedition,Elephant Caravan,104,2003,[No Color],5 +Orient Expedition,Elephant Caravan,104,2003,Black,12 +Orient Expedition,Elephant Caravan,104,2003,Yellow,6 +Orient Expedition,Elephant Caravan,104,2003,Brown,4 +Orient Expedition,Elephant Caravan,104,2003,Dark Gray,20 +Orient Expedition,Elephant Caravan,104,2003,Green,2 +Orient Expedition,Elephant Caravan,104,2003,Light Gray,13 +Orient Expedition,Elephant Caravan,104,2003,Red,5 +Orient Expedition,Elephant Caravan,104,2003,Blue,1 +Orient Expedition,Passage of Jun-Chi,101,2003,Tan,4 +Orient Expedition,Passage of Jun-Chi,101,2003,Sand Green,4 +Orient Expedition,Passage of Jun-Chi,101,2003,Red,12 +Orient Expedition,Passage of Jun-Chi,101,2003,Light Gray,3 +Orient Expedition,Passage of Jun-Chi,101,2003,Brown,2 +Orient Expedition,Passage of Jun-Chi,101,2003,Black,13 +Orient Expedition,Passage of Jun-Chi,101,2003,[No Color],3 +Orient Expedition,Passage of Jun-Chi,101,2003,Yellow,1 +Orient Expedition,Passage of Jun-Chi,101,2003,Trans-Yellow,1 +Orient Expedition,Passage of Jun-Chi,101,2003,Trans-Red,1 +Orient Expedition,Passage of Jun-Chi,101,2003,Trans-Neon Orange,1 +Orient Expedition,Passage of Jun-Chi,101,2003,Dark Gray,6 +Orient Expedition,Tygurah's Roar,94,2003,[No Color],3 +Orient Expedition,Tygurah's Roar,94,2003,Black,3 +Orient Expedition,Tygurah's Roar,94,2003,Bright Green,1 +Orient Expedition,Tygurah's Roar,94,2003,Brown,5 +Orient Expedition,Tygurah's Roar,94,2003,Dark Gray,2 +Orient Expedition,Tygurah's Roar,94,2003,Dark Orange,1 +Orient Expedition,Tygurah's Roar,94,2003,Earth Orange,6 +Orient Expedition,Tygurah's Roar,94,2003,Green,1 +Orient Expedition,Tygurah's Roar,94,2003,Light Gray,4 +Orient Expedition,Tygurah's Roar,94,2003,Red,1 +Orient Expedition,Tygurah's Roar,94,2003,Trans-Neon Orange,1 +Orient Expedition,Tygurah's Roar,94,2003,Trans-Yellow,1 +Orient Expedition,Tygurah's Roar,94,2003,White,12 +Orient Expedition,Tygurah's Roar,94,2003,Yellow,3 +Orient Expedition,Tygurah's Roar,94,2003,Dark Blue,2 +Orient Expedition,Thunder Blazer,69,2003,Light Gray,16 +Orient Expedition,Thunder Blazer,69,2003,Red,8 +Orient Expedition,Thunder Blazer,69,2003,Tan,1 +Orient Expedition,Thunder Blazer,69,2003,Trans-Clear,1 +Orient Expedition,Thunder Blazer,69,2003,Yellow,1 +Orient Expedition,Thunder Blazer,69,2003,Black,8 +Orient Expedition,Thunder Blazer,69,2003,Brown,5 +Orient Expedition,Thunder Blazer,69,2003,Dark Gray,5 +Orient Expedition,Jungle River,66,2003,Yellow,2 +Orient Expedition,Jungle River,66,2003,White,5 +Orient Expedition,Jungle River,66,2003,Trans-Yellow,1 +Orient Expedition,Jungle River,66,2003,Dark Gray,7 +Orient Expedition,Jungle River,66,2003,Trans-Red,1 +Orient Expedition,Jungle River,66,2003,Trans-Neon Orange,1 +Orient Expedition,Jungle River,66,2003,Trans-Dark Blue,1 +Orient Expedition,Jungle River,66,2003,Tan,1 +Orient Expedition,Jungle River,66,2003,Red,1 +Orient Expedition,Jungle River,66,2003,Green,6 +Orient Expedition,Jungle River,66,2003,Dark Orange,1 +Orient Expedition,Jungle River,66,2003,Light Gray,11 +Orient Expedition,Jungle River,66,2003,Dark Blue,1 +Orient Expedition,Jungle River,66,2003,Brown,6 +Orient Expedition,Jungle River,66,2003,Black,7 +Orient Expedition,Secret of the Tomb,42,2003,Brown,2 +Orient Expedition,Secret of the Tomb,42,2003,Trans-Yellow,1 +Orient Expedition,Secret of the Tomb,42,2003,Dark Gray,3 +Orient Expedition,Secret of the Tomb,42,2003,Light Gray,3 +Orient Expedition,Secret of the Tomb,42,2003,Medium Orange,1 +Orient Expedition,Secret of the Tomb,42,2003,Trans-Dark Blue,1 +Orient Expedition,Secret of the Tomb,42,2003,White,7 +Orient Expedition,Secret of the Tomb,42,2003,Yellow,5 +Orient Expedition,Secret of the Tomb,42,2003,Black,6 +Orient Expedition,Airplane,33,2003,Red,3 +Orient Expedition,Airplane,33,2003,Tan,1 +Orient Expedition,Airplane,33,2003,Trans-Clear,1 +Orient Expedition,Airplane,33,2003,Yellow,1 +Orient Expedition,Red Eagle,33,2003,Black,4 +Orient Expedition,Red Eagle,33,2003,Brown,2 +Orient Expedition,Red Eagle,33,2003,Dark Gray,5 +Orient Expedition,Red Eagle,33,2003,Green,1 +Orient Expedition,Red Eagle,33,2003,Light Gray,8 +Orient Expedition,Red Eagle,33,2003,Red,3 +Orient Expedition,Red Eagle,33,2003,Tan,1 +Orient Expedition,Red Eagle,33,2003,Trans-Clear,1 +Orient Expedition,Red Eagle,33,2003,Yellow,1 +Orient Expedition,Airplane,33,2003,Black,4 +Orient Expedition,Airplane,33,2003,Brown,2 +Orient Expedition,Airplane,33,2003,Dark Gray,5 +Orient Expedition,Airplane,33,2003,Green,1 +Orient Expedition,Airplane,33,2003,Light Gray,8 +Orient Expedition,Mountain Sleigh (Kabaya Promotional),30,2003,Red,2 +Orient Expedition,Mountain Sleigh,30,2003,Dark Gray,4 +Orient Expedition,Mountain Sleigh (Kabaya Promotional),30,2003,Yellow,1 +Orient Expedition,Mountain Sleigh (Kabaya Promotional),30,2003,White,1 +Orient Expedition,Mountain Sleigh (Kabaya Promotional),30,2003,Trans-Yellow,1 +Orient Expedition,Mountain Sleigh,30,2003,Brown,2 +Orient Expedition,Mountain Sleigh,30,2003,White,1 +Orient Expedition,Mountain Sleigh (Kabaya Promotional),30,2003,Light Gray,4 +Orient Expedition,Mountain Sleigh (Kabaya Promotional),30,2003,Dark Gray,4 +Orient Expedition,Mountain Sleigh (Kabaya Promotional),30,2003,Brown,2 +Orient Expedition,Mountain Sleigh (Kabaya Promotional),30,2003,Black,5 +Orient Expedition,Mountain Sleigh,30,2003,Yellow,1 +Orient Expedition,Mountain Sleigh,30,2003,Black,5 +Orient Expedition,Mountain Sleigh,30,2003,Trans-Yellow,1 +Orient Expedition,Mountain Sleigh,30,2003,Red,2 +Orient Expedition,Mountain Sleigh,30,2003,Light Gray,4 +Orient Expedition,Small Car,28,2003,Yellow,3 +Orient Expedition,Black Cruiser,28,2003,Yellow,3 +Orient Expedition,Black Cruiser,28,2003,Black,6 +Orient Expedition,Black Cruiser,28,2003,Trans-Yellow,1 +Orient Expedition,Black Cruiser,28,2003,Trans-Clear,1 +Orient Expedition,Black Cruiser,28,2003,Brown,1 +Orient Expedition,Black Cruiser,28,2003,Light Gray,1 +Orient Expedition,Black Cruiser,28,2003,Dark Gray,6 +Orient Expedition,Small Car,28,2003,Black,6 +Orient Expedition,Small Car,28,2003,Brown,1 +Orient Expedition,Small Car,28,2003,Dark Gray,6 +Orient Expedition,Small Car,28,2003,Light Gray,1 +Orient Expedition,Small Car,28,2003,Trans-Clear,1 +Orient Expedition,Small Car,28,2003,Trans-Yellow,1 +Orient Expedition,Lord Sam Sinister Chupa Chups Promotional,5,2003,Yellow,1 +Orient Expedition,Lord Sam Sinister Chupa Chups Promotional,5,2003,Black,2 +Orient Expedition,Johnny Thunder Chupa Chups Promotional,5,2003,Yellow,1 +Orient Expedition,Johnny Thunder Chupa Chups Promotional,5,2003,Tan,1 +Orient Expedition,Johnny Thunder Chupa Chups Promotional,5,2003,Dark Bluish Gray,2 +Orient Expedition,Johnny Thunder Chupa Chups Promotional,5,2003,Brown,1 +Orient Expedition,Lord Sam Sinister Chupa Chups Promotional,5,2003,Dark Gray,2 +Orient Expedition,Orient Expedition Value Pack with LEGO Backpack (K-Mart Australia Exclusive),4,2003,[No Color],1 +Orient Expedition,Jing Lee the Wanderer Chupa Chups Promotional,4,2003,Black,1 +Orient Expedition,Jing Lee the Wanderer Chupa Chups Promotional,4,2003,Yellow,1 +Orient Expedition,Jing Lee the Wanderer Chupa Chups Promotional,4,2003,Red,1 +Orient Expedition,Jing Lee the Wanderer Chupa Chups Promotional,4,2003,Green,1 +Orient Expedition,Scorpion Palace and Foam Scimitar,2,2003,[No Color],1 +Other,Motorized Truck Set,314,1967,Black,2 +Other,Motorized Truck Set,314,1967,Blue,22 +Other,Motorized Truck Set,314,1967,Light Gray,5 +Other,Motorized Truck Set,314,1967,Red,19 +Other,Motorized Truck Set,314,1967,Trans-Clear,6 +Other,Motorized Truck Set,314,1967,White,11 +Other,Firehouse Headquarters,4640,2016,Orange,2 +Other,Firehouse Headquarters,4640,2016,Pearl Gold,6 +Other,Firehouse Headquarters,4640,2016,Purple,1 +Other,Firehouse Headquarters,4640,2016,Red,19 +Other,Firehouse Headquarters,4640,2016,Reddish Brown,57 +Other,Firehouse Headquarters,4640,2016,Sand Green,2 +Other,Firehouse Headquarters,4640,2016,Tan,29 +Other,Firehouse Headquarters,4640,2016,Trans-Black,1 +Other,Firehouse Headquarters,4640,2016,Trans-Bright Green,2 +Other,Firehouse Headquarters,4640,2016,Trans-Clear,13 +Other,Firehouse Headquarters,4640,2016,Trans-Dark Pink,4 +Other,Firehouse Headquarters,4640,2016,Trans-Green,1 +Other,Firehouse Headquarters,4640,2016,Trans-Medium Blue,2 +Other,Firehouse Headquarters,4640,2016,Trans-Neon Green,4 +Other,Firehouse Headquarters,4640,2016,Trans-Neon Orange,1 +Other,Firehouse Headquarters,4640,2016,Light Blue,2 +Other,Firehouse Headquarters,4640,2016,Trans-Orange,2 +Other,Firehouse Headquarters,4640,2016,Trans-Red,2 +Other,Firehouse Headquarters,4640,2016,White,65 +Other,Firehouse Headquarters,4640,2016,Yellow,17 +Other,Firehouse Headquarters,4640,2016,[No Color],2 +Other,Firehouse Headquarters,4640,2016,Black,109 +Other,Firehouse Headquarters,4640,2016,Blue,10 +Other,Firehouse Headquarters,4640,2016,Bright Green,1 +Other,Firehouse Headquarters,4640,2016,Bright Light Orange,1 +Other,Firehouse Headquarters,4640,2016,Bright Pink,1 +Other,Firehouse Headquarters,4640,2016,Dark Blue,5 +Other,Firehouse Headquarters,4640,2016,Dark Bluish Gray,50 +Other,Firehouse Headquarters,4640,2016,Dark Brown,5 +Other,Firehouse Headquarters,4640,2016,Dark Green,8 +Other,Firehouse Headquarters,4640,2016,Dark Orange,3 +Other,Firehouse Headquarters,4640,2016,Dark Purple,1 +Other,Firehouse Headquarters,4640,2016,Dark Red,29 +Other,Firehouse Headquarters,4640,2016,Dark Tan,6 +Other,Firehouse Headquarters,4640,2016,Flat Silver,6 +Other,Firehouse Headquarters,4640,2016,Green,4 +Other,Firehouse Headquarters,4640,2016,Trans-Light Blue,1 +Other,Firehouse Headquarters,4640,2016,Light Bluish Gray,124 +Other,Firehouse Headquarters,4640,2016,Light Flesh,7 +Other,Firehouse Headquarters,4640,2016,Light Purple,2 +Other,Firehouse Headquarters,4640,2016,Lime,2 +Other,Firehouse Headquarters,4640,2016,Medium Azure,3 +Other,Firehouse Headquarters,4640,2016,Medium Blue,3 +Other,Firehouse Headquarters,4640,2016,Medium Dark Flesh,4 +Other,Firehouse Headquarters,4640,2016,Metallic Gold,1 +Other,50 Years On Track,1142,2016,Black,76 +Other,50 Years On Track,1142,2016,Blue,25 +Other,50 Years On Track,1142,2016,Dark Bluish Gray,10 +Other,50 Years On Track,1142,2016,Dark Green,8 +Other,50 Years On Track,1142,2016,Flat Silver,1 +Other,50 Years On Track,1142,2016,Green,4 +Other,50 Years On Track,1142,2016,Light Bluish Gray,30 +Other,50 Years On Track,1142,2016,Metallic Silver,1 +Other,50 Years On Track,1142,2016,Orange,1 +Other,50 Years On Track,1142,2016,Pearl Gold,8 +Other,50 Years On Track,1142,2016,Red,26 +Other,50 Years On Track,1142,2016,Reddish Brown,7 +Other,50 Years On Track,1142,2016,Sand Green,1 +Other,50 Years On Track,1142,2016,Trans-Black,3 +Other,50 Years On Track,1142,2016,Trans-Clear,5 +Other,50 Years On Track,1142,2016,Trans-Red,2 +Other,50 Years On Track,1142,2016,Trans-Yellow,1 +Other,50 Years On Track,1142,2016,White,25 +Other,50 Years On Track,1142,2016,Yellow,16 +Other,50 Years On Track,1142,2016,Trans-Dark Blue,7 +Other,What Am I?,536,2016,Tan,1 +Other,What Am I?,536,2016,Trans-Black,1 +Other,What Am I?,536,2016,Trans-Clear,2 +Other,What Am I?,536,2016,Trans-Dark Blue,1 +Other,What Am I?,536,2016,Trans-Light Blue,2 +Other,What Am I?,536,2016,Trans-Neon Green,1 +Other,What Am I?,536,2016,White,16 +Other,What Am I?,536,2016,Yellow,8 +Other,What Am I?,536,2016,Black,16 +Other,What Am I?,536,2016,Blue,14 +Other,What Am I?,536,2016,Bright Light Orange,1 +Other,What Am I?,536,2016,Dark Bluish Gray,7 +Other,What Am I?,536,2016,Dark Brown,2 +Other,What Am I?,536,2016,Dark Orange,1 +Other,What Am I?,536,2016,Dark Red,1 +Other,What Am I?,536,2016,Flat Silver,1 +Other,What Am I?,536,2016,Green,3 +Other,What Am I?,536,2016,Light Bluish Gray,4 +Other,What Am I?,536,2016,Medium Blue,1 +Other,What Am I?,536,2016,Red,20 +Other,What Am I?,536,2016,Reddish Brown,2 +Other,Toys 'r Us - Cogsworth,47,2016,Black,5 +Other,Toys 'r Us - Cogsworth,47,2016,Light Bluish Gray,1 +Other,Toys 'r Us - Cogsworth,47,2016,Reddish Brown,9 +Other,Toys 'r Us - Cogsworth,47,2016,Yellow,5 +Other,Toys 'r Us Lumiere,23,2016,Light Bluish Gray,1 +Other,Toys 'r Us Lumiere,23,2016,Trans-Orange,1 +Other,Toys 'r Us Lumiere,23,2016,White,4 +Other,Toys 'r Us Lumiere,23,2016,Yellow,5 +Outback,Outback Airstrip,167,1997,Yellow,12 +Outback,Outback Airstrip,167,1997,Light Gray,27 +Outback,Outback Airstrip,167,1997,Black,21 +Outback,Outback Airstrip,167,1997,Blue,5 +Outback,Outback Airstrip,167,1997,Brown,1 +Outback,Outback Airstrip,167,1997,Dark Gray,4 +Outback,Outback Airstrip,167,1997,Green,5 +Outback,Outback Airstrip,167,1997,Red,11 +Outback,Outback Airstrip,167,1997,Tan,1 +Outback,Outback Airstrip,167,1997,Trans-Clear,2 +Outback,Outback Airstrip,167,1997,Trans-Green,1 +Outback,Outback Airstrip,167,1997,Trans-Light Blue,2 +Outback,Outback Airstrip,167,1997,Trans-Red,2 +Outback,Outback Airstrip,167,1997,Trans-Yellow,1 +Outback,Outback Airstrip,167,1997,White,8 +Outback,Crisis News Crew,135,1997,Blue,13 +Outback,Crisis News Crew,135,1997,Light Gray,8 +Outback,Crisis News Crew,135,1997,Red,6 +Outback,Crisis News Crew,135,1997,Trans-Red,2 +Outback,Crisis News Crew,135,1997,Trans-Clear,1 +Outback,Crisis News Crew,135,1997,Trans-Green,1 +Outback,Crisis News Crew,135,1997,Trans-Light Blue,2 +Outback,Crisis News Crew,135,1997,Trans-Yellow,1 +Outback,Crisis News Crew,135,1997,White,21 +Outback,Crisis News Crew,135,1997,Yellow,2 +Outback,Crisis News Crew,135,1997,[No Color],1 +Outback,Crisis News Crew,135,1997,Black,22 +Outback,Crisis News Crew,135,1997,Trans-Dark Blue,1 +Outback,Amazon Crossing,120,1997,Brown,3 +Outback,Amazon Crossing,120,1997,Dark Gray,4 +Outback,Amazon Crossing,120,1997,Green,6 +Outback,Amazon Crossing,120,1997,Light Gray,18 +Outback,Amazon Crossing,120,1997,Red,4 +Outback,Amazon Crossing,120,1997,Tan,1 +Outback,Amazon Crossing,120,1997,Trans-Dark Blue,1 +Outback,Amazon Crossing,120,1997,Trans-Light Blue,1 +Outback,Amazon Crossing,120,1997,Trans-Yellow,2 +Outback,Amazon Crossing,120,1997,White,3 +Outback,Amazon Crossing,120,1997,Yellow,12 +Outback,Amazon Crossing,120,1997,Black,14 +Outback,Amazon Crossing,120,1997,Blue,2 +Outback,Mountain Rescue,68,1997,Green,3 +Outback,Mountain Rescue,68,1997,Light Gray,13 +Outback,Mountain Rescue,68,1997,Red,7 +Outback,Mountain Rescue,68,1997,Trans-Green,1 +Outback,Mountain Rescue,68,1997,Trans-Light Blue,1 +Outback,Mountain Rescue,68,1997,Trans-Red,1 +Outback,Mountain Rescue,68,1997,Trans-Yellow,1 +Outback,Mountain Rescue,68,1997,White,4 +Outback,Mountain Rescue,68,1997,Yellow,2 +Outback,Mountain Rescue,68,1997,Black,13 +Outback,Mountain Rescue,68,1997,Brown,1 +Outback,Mountain Rescue,68,1997,Dark Gray,1 +Outback,Outback Racer,48,1997,[No Color],1 +Outback,Outback Racer,48,1997,Black,3 +Outback,Outback Racer,48,1997,Blue,3 +Outback,Outback Racer,48,1997,Green,4 +Outback,Outback Racer,48,1997,Trans-Clear,1 +Outback,Outback Racer,48,1997,Trans-Light Blue,1 +Outback,Outback Racer,48,1997,Trans-Yellow,1 +Outback,Outback Racer,48,1997,White,2 +Outback,Outback Racer,48,1997,Yellow,15 +Paradisa,Rolling Acres Ranch,364,1992,Trans-Yellow,1 +Paradisa,Rolling Acres Ranch,364,1992,White,41 +Paradisa,Rolling Acres Ranch,364,1992,Yellow,11 +Paradisa,Rolling Acres Ranch,364,1992,Red,3 +Paradisa,Rolling Acres Ranch,364,1992,Black,18 +Paradisa,Rolling Acres Ranch,364,1992,Brown,8 +Paradisa,Rolling Acres Ranch,364,1992,Dark Gray,1 +Paradisa,Rolling Acres Ranch,364,1992,Green,2 +Paradisa,Rolling Acres Ranch,364,1992,Light Gray,36 +Paradisa,Rolling Acres Ranch,364,1992,Light Green,2 +Paradisa,Rolling Acres Ranch,364,1992,Pink,9 +Paradisa,Rolling Acres Ranch,364,1992,Trans-Clear,1 +Paradisa,Rolling Acres Ranch,364,1992,Trans-Light Blue,1 +Paradisa,Rolling Acres Ranch,364,1992,Trans-Red,1 +Paradisa,Poolside Paradise,237,1992,Black,16 +Paradisa,Poolside Paradise,237,1992,Brown,5 +Paradisa,Poolside Paradise,237,1992,Green,4 +Paradisa,Poolside Paradise,237,1992,Trans-Light Blue,1 +Paradisa,Poolside Paradise,237,1992,Trans-Red,1 +Paradisa,Poolside Paradise,237,1992,Trans-Yellow,2 +Paradisa,Poolside Paradise,237,1992,Light Gray,19 +Paradisa,Poolside Paradise,237,1992,White,43 +Paradisa,Poolside Paradise,237,1992,Yellow,9 +Paradisa,Poolside Paradise,237,1992,Light Green,1 +Paradisa,Poolside Paradise,237,1992,Pink,10 +Paradisa,Poolside Paradise,237,1992,Red,2 +Paradisa,Poolside Paradise,237,1992,Trans-Clear,4 +Paradisa,Sand Dollar Cafe,172,1992,Black,6 +Paradisa,Sand Dollar Cafe,172,1992,Blue,2 +Paradisa,Sand Dollar Cafe,172,1992,Brown,5 +Paradisa,Sand Dollar Cafe,172,1992,Dark Gray,1 +Paradisa,Sand Dollar Cafe,172,1992,Green,4 +Paradisa,Sand Dollar Cafe,172,1992,Light Gray,12 +Paradisa,Sand Dollar Cafe,172,1992,Light Green,1 +Paradisa,Sand Dollar Cafe,172,1992,Pink,8 +Paradisa,Sand Dollar Cafe,172,1992,Red,4 +Paradisa,Sand Dollar Cafe,172,1992,Trans-Clear,4 +Paradisa,Sand Dollar Cafe,172,1992,Trans-Yellow,1 +Paradisa,Sand Dollar Cafe,172,1992,White,41 +Paradisa,Sand Dollar Cafe,172,1992,Yellow,8 +Paradisa,Sunset Stables,132,1992,White,23 +Paradisa,Sunset Stables,132,1992,Brown,3 +Paradisa,Sunset Stables,132,1992,Light Gray,18 +Paradisa,Sunset Stables,132,1992,Light Green,1 +Paradisa,Sunset Stables,132,1992,Pink,7 +Paradisa,Sunset Stables,132,1992,Red,3 +Paradisa,Sunset Stables,132,1992,Trans-Light Blue,1 +Paradisa,Sunset Stables,132,1992,Trans-Red,1 +Paradisa,Sunset Stables,132,1992,Trans-Yellow,1 +Paradisa,Sunset Stables,132,1992,Black,10 +Paradisa,Sunset Stables,132,1992,Yellow,4 +Paradisa,Seaside Cabana,45,1992,Green,1 +Paradisa,Seaside Cabana,45,1992,Light Gray,4 +Paradisa,Seaside Cabana,45,1992,Pink,4 +Paradisa,Seaside Cabana,45,1992,Red,1 +Paradisa,Seaside Cabana,45,1992,Trans-Clear,1 +Paradisa,Seaside Cabana,45,1992,White,14 +Paradisa,Seaside Cabana,45,1992,Yellow,6 +Paradisa,Seaside Cabana,45,1992,Black,1 +Paradisa,Seaside Cabana,45,1992,Brown,1 +Paradisa,Fun Fair,204,1997,Black,5 +Paradisa,Fun Fair,204,1997,Blue,2 +Paradisa,Fun Fair,204,1997,Brown,1 +Paradisa,Fun Fair,204,1997,Chrome Gold,4 +Paradisa,Fun Fair,204,1997,Dark Pink,4 +Paradisa,Fun Fair,204,1997,Green,2 +Paradisa,Fun Fair,204,1997,Light Gray,14 +Paradisa,Fun Fair,204,1997,Medium Green,2 +Paradisa,Fun Fair,204,1997,Pink,9 +Paradisa,Fun Fair,204,1997,Red,1 +Paradisa,Fun Fair,204,1997,Trans-Clear,2 +Paradisa,Fun Fair,204,1997,Trans-Green,1 +Paradisa,Fun Fair,204,1997,Trans-Light Blue,1 +Paradisa,Fun Fair,204,1997,Trans-Yellow,1 +Paradisa,Fun Fair,204,1997,White,36 +Paradisa,Fun Fair,204,1997,Yellow,6 +Paradisa,Seaside Holiday Cottage,88,1997,Dark Pink,2 +Paradisa,Seaside Holiday Cottage,88,1997,Green,2 +Paradisa,Seaside Holiday Cottage,88,1997,Light Gray,12 +Paradisa,Seaside Holiday Cottage,88,1997,Pink,3 +Paradisa,Seaside Holiday Cottage,88,1997,Trans-Clear,1 +Paradisa,Seaside Holiday Cottage,88,1997,White,22 +Paradisa,Seaside Holiday Cottage,88,1997,Yellow,9 +Paradisa,Seaside Holiday Cottage,88,1997,Black,3 +Paradisa,Seaside Holiday Cottage,88,1997,Blue,1 +Paradisa,Seaside Holiday Cottage,88,1997,Brown,1 +Paradisa,Seaside Holiday Cottage,88,1997,Dark Gray,1 +Paradisa,Show Jumping Event,41,1997,Green,2 +Paradisa,Show Jumping Event,41,1997,[No Color],1 +Paradisa,Show Jumping Event,41,1997,Black,6 +Paradisa,Show Jumping Event,41,1997,Blue,2 +Paradisa,Show Jumping Event,41,1997,Brown,3 +Paradisa,Show Jumping Event,41,1997,Dark Gray,1 +Paradisa,Show Jumping Event,41,1997,Dark Pink,1 +Paradisa,Show Jumping Event,41,1997,Light Gray,1 +Paradisa,Show Jumping Event,41,1997,Medium Green,1 +Paradisa,Show Jumping Event,41,1997,Pink,1 +Paradisa,Show Jumping Event,41,1997,Red,1 +Paradisa,Show Jumping Event,41,1997,White,6 +Paradisa,Show Jumping Event,41,1997,Yellow,2 +Paradisa,Paradisa Barbeque,21,1997,Dark Pink,3 +Paradisa,Paradisa Barbeque,21,1997,Green,1 +Paradisa,Paradisa Barbeque,21,1997,Pink,1 +Paradisa,Paradisa Barbeque,21,1997,Trans-Clear,1 +Paradisa,Paradisa Barbeque,21,1997,White,4 +Paradisa,Paradisa Barbeque,21,1997,Yellow,3 +Paradisa,Paradisa Barbeque,21,1997,Black,4 +Phantoka,Toa Pohatu,67,2008,Orange,3 +Phantoka,Toa Pohatu,67,2008,Light Bluish Gray,1 +Phantoka,Toa Pohatu,67,2008,Blue,2 +Phantoka,Toa Pohatu,67,2008,Flat Silver,1 +Phantoka,Toa Pohatu,67,2008,Dark Bluish Gray,11 +Phantoka,Toa Pohatu,67,2008,Black,4 +Phantoka,Toa Pohatu,67,2008,Trans-Neon Green,1 +Phantoka,Toa Pohatu,67,2008,Trans-Medium Blue,1 +Phantoka,Toa Pohatu,67,2008,Red,1 +Phantoka,Toa Pohatu,67,2008,Pearl Light Gray,2 +Phantoka,Toa Kopaka,53,2008,Pearl Light Gray,5 +Phantoka,Toa Kopaka,53,2008,Red,1 +Phantoka,Toa Kopaka,53,2008,Trans-Red,1 +Phantoka,Toa Kopaka,53,2008,White,5 +Phantoka,Toa Kopaka,53,2008,Trans-Neon Green,1 +Phantoka,Toa Kopaka,53,2008,Black,2 +Phantoka,Toa Kopaka,53,2008,Blue,2 +Phantoka,Toa Kopaka,53,2008,Dark Bluish Gray,5 +Phantoka,Toa Kopaka,53,2008,Light Bluish Gray,2 +Phantoka,Toa Kopaka,53,2008,Pearl Dark Gray,1 +Phantoka,Antroz,52,2008,Black,6 +Phantoka,Antroz,52,2008,Dark Bluish Gray,2 +Phantoka,Antroz,52,2008,Dark Red,4 +Phantoka,Antroz,52,2008,Light Bluish Gray,3 +Phantoka,Antroz,52,2008,Pearl Light Gray,2 +Phantoka,Antroz,52,2008,Red,1 +Phantoka,Antroz,52,2008,Trans-Light Blue,1 +Phantoka,Antroz,52,2008,Trans-Neon Orange,2 +Phantoka,Toa Lewa,51,2008,Trans-Neon Green,1 +Phantoka,Toa Lewa,51,2008,Trans-Light Blue,1 +Phantoka,Toa Lewa,51,2008,Red,1 +Phantoka,Toa Lewa,51,2008,Pearl Light Gray,6 +Phantoka,Toa Lewa,51,2008,Lime,4 +Phantoka,Toa Lewa,51,2008,Light Bluish Gray,2 +Phantoka,Toa Lewa,51,2008,Dark Bluish Gray,8 +Phantoka,Toa Lewa,51,2008,Black,1 +Phantoka,Toa Lewa,51,2008,Blue,2 +Phantoka,Chirox,48,2008,Dark Bluish Gray,2 +Phantoka,Chirox,48,2008,Light Bluish Gray,3 +Phantoka,Chirox,48,2008,Pearl Light Gray,6 +Phantoka,Chirox,48,2008,Red,1 +Phantoka,Chirox,48,2008,Trans-Light Blue,1 +Phantoka,Chirox,48,2008,Trans-Neon Orange,2 +Phantoka,Chirox,48,2008,Black,9 +Phantoka,Vamprah,48,2008,Black,5 +Phantoka,Vamprah,48,2008,Blue,1 +Phantoka,Vamprah,48,2008,Dark Blue,6 +Phantoka,Vamprah,48,2008,Dark Bluish Gray,2 +Phantoka,Vamprah,48,2008,Light Bluish Gray,3 +Phantoka,Vamprah,48,2008,Pearl Dark Gray,1 +Phantoka,Vamprah,48,2008,Pearl Light Gray,3 +Phantoka,Vamprah,48,2008,Red,1 +Phantoka,Vamprah,48,2008,Trans-Light Blue,1 +Phantoka,Vamprah,48,2008,Trans-Neon Orange,2 +Pharaoh's Quest,Scorpion Pyramid,797,2011,White,1 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Yellow,4 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Dark Red,6 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Black,40 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Blue,3 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Chrome Gold,4 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Dark Blue,13 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Dark Bluish Gray,40 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Dark Brown,1 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Dark Orange,2 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Dark Tan,26 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Green,2 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Light Bluish Gray,25 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Metallic Gold,1 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Pearl Dark Gray,2 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Pearl Gold,5 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Red,7 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Reddish Brown,2 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Tan,42 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Trans-Clear,2 +Pharaoh's Quest,Scorpion Pyramid,797,2011,Trans-Yellow,1 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Black,34 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Dark Blue,7 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Pearl Gold,6 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Dark Bluish Gray,13 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Red,2 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Tan,23 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Trans-Clear,2 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Trans-Red,1 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Yellow,6 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Dark Brown,1 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Dark Orange,1 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Dark Red,10 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Dark Tan,9 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Green,1 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Light Bluish Gray,20 +Pharaoh's Quest,Rise of the Sphinx,526,2011,Pearl Dark Gray,1 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Black,20 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Blue,1 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Dark Blue,2 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Dark Bluish Gray,15 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Dark Orange,3 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Dark Red,4 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Dark Tan,9 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Green,1 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Light Bluish Gray,8 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Pearl Gold,5 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Red,5 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Reddish Brown,1 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Tan,8 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Trans-Black,1 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Trans-Clear,1 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,White,2 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,Yellow,2 +Pharaoh's Quest,Cursed Cobra Statue,212,2011,[No Color],2 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Trans-Light Blue,1 +Pharaoh's Quest,Flying Mummy Attack,124,2011,White,3 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Yellow,3 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Black,15 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Dark Bluish Gray,9 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Blue,1 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Pearl Gold,2 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Pearl Dark Gray,1 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Red,1 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Reddish Brown,1 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Tan,1 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Trans-Clear,1 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Dark Blue,4 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Dark Brown,1 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Dark Orange,1 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Dark Red,8 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Dark Tan,3 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Green,1 +Pharaoh's Quest,Flying Mummy Attack,124,2011,Light Bluish Gray,9 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Pearl Dark Gray,2 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Pearl Gold,2 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Red,1 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Reddish Brown,1 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Tan,6 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Trans-Clear,1 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Trans-Red,1 +Pharaoh's Quest,Golden Staff Guardians,70,2011,White,1 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Yellow,1 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Light Bluish Gray,4 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Black,5 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Dark Blue,4 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Dark Bluish Gray,7 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Dark Brown,1 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Dark Orange,1 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Dark Red,2 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Dark Tan,2 +Pharaoh's Quest,Golden Staff Guardians,70,2011,Green,1 +Pharaoh's Quest,Scarab Attack,44,2011,Dark Tan,2 +Pharaoh's Quest,Scarab Attack,44,2011,Light Bluish Gray,2 +Pharaoh's Quest,Scarab Attack,44,2011,Pearl Gold,2 +Pharaoh's Quest,Scarab Attack,44,2011,Red,1 +Pharaoh's Quest,Scarab Attack,44,2011,Reddish Brown,3 +Pharaoh's Quest,Scarab Attack,44,2011,Trans-Neon Orange,1 +Pharaoh's Quest,Scarab Attack,44,2011,Yellow,1 +Pharaoh's Quest,Scarab Attack,44,2011,Dark Blue,2 +Pharaoh's Quest,Scarab Attack,44,2011,Dark Bluish Gray,3 +Pharaoh's Quest,Scarab Attack,44,2011,Black,7 +Pharaoh's Quest,Scarab Attack,44,2011,Dark Orange,1 +Pharaoh's Quest,Scarab Attack,44,2011,Tan,4 +Pharaoh's Quest,Desert Rover,31,2011,Dark Bluish Gray,3 +Pharaoh's Quest,Desert Rover,31,2011,Yellow,1 +Pharaoh's Quest,Desert Rover,31,2011,Black,5 +Pharaoh's Quest,Desert Rover,31,2011,Light Bluish Gray,4 +Pharaoh's Quest,Desert Rover,31,2011,Tan,1 +Pharaoh's Quest,Desert Rover,31,2011,Trans-Clear,1 +Pharaoh's Quest,Desert Rover,31,2011,Dark Tan,1 +Pharaoh's Quest,Desert Rover,31,2011,Dark Red,4 +Pharaoh's Quest,Desert Glider,29,2011,Dark Bluish Gray,7 +Pharaoh's Quest,Desert Glider,29,2011,Dark Brown,1 +Pharaoh's Quest,Desert Glider,29,2011,Dark Red,2 +Pharaoh's Quest,Desert Glider,29,2011,Dark Tan,1 +Pharaoh's Quest,Desert Glider,29,2011,Light Bluish Gray,4 +Pharaoh's Quest,Desert Glider,29,2011,Reddish Brown,1 +Pharaoh's Quest,Desert Glider,29,2011,Trans-Black,1 +Pharaoh's Quest,Desert Glider,29,2011,Yellow,1 +Pharaoh's Quest,Desert Glider,29,2011,Black,5 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Black,2 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Dark Blue,3 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Dark Tan,1 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Light Bluish Gray,3 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Pearl Dark Gray,2 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Pearl Gold,1 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Red,1 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Trans-Dark Blue,1 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Trans-Green,1 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Trans-Light Blue,1 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Trans-Red,2 +Pharaoh's Quest,Skeleton Mummy Battle Pack,29,2011,Trans-Yellow,1 +Pick A Model,Car,40,2015,Black,5 +Pick A Model,Car,40,2015,Dark Bluish Gray,2 +Pick A Model,Car,40,2015,Flat Silver,1 +Pick A Model,Car,40,2015,Green,5 +Pick A Model,Car,40,2015,Lime,1 +Pick A Model,Car,40,2015,Trans-Black,1 +Pick A Model,Car,40,2015,Trans-Red,1 +Pick A Model,Giraffes,36,2015,Black,1 +Pick A Model,Giraffes,36,2015,Bright Light Orange,1 +Pick A Model,Giraffes,36,2015,Orange,3 +Pick A Model,Giraffes,36,2015,Reddish Brown,2 +Pick A Model,Giraffes,36,2015,White,1 +Pick A Model,Giraffes,36,2015,Yellow,6 +Pick A Model,Panda,35,2015,Green,2 +Pick A Model,Panda,35,2015,Black,7 +Pick A Model,Panda,35,2015,Lime,2 +Pick A Model,Panda,35,2015,White,10 +Pick A Model,Panda,35,2015,Tan,1 +Pick A Model,Panda,35,2015,Light Bluish Gray,1 +Pick A Model,Crocodile,30,2015,Lime,2 +Pick A Model,Crocodile,30,2015,Red,1 +Pick A Model,Crocodile,30,2015,Trans-Dark Blue,1 +Pick A Model,Crocodile,30,2015,White,2 +Pick A Model,Crocodile,30,2015,Yellow,1 +Pick A Model,Crocodile,30,2015,Blue,1 +Pick A Model,Crocodile,30,2015,Green,11 +Pick A Model,Jeep,29,2015,Trans-Clear,1 +Pick A Model,Jeep,29,2015,Trans-Red,1 +Pick A Model,Jeep,29,2015,Yellow,2 +Pick A Model,Jeep,29,2015,Reddish Brown,1 +Pick A Model,Jeep,29,2015,Red,2 +Pick A Model,Jeep,29,2015,Light Bluish Gray,1 +Pick A Model,Jeep,29,2015,Tan,1 +Pick A Model,Jeep,29,2015,Black,4 +Pick A Model,Biplane,24,2015,Blue,1 +Pick A Model,Biplane,24,2015,Light Bluish Gray,1 +Pick A Model,Biplane,24,2015,Orange,3 +Pick A Model,Biplane,24,2015,Red,1 +Pick A Model,Biplane,24,2015,Trans-Clear,1 +Pick A Model,Biplane,24,2015,Yellow,1 +Pick A Model,Biplane,24,2015,Black,6 +Pick A Model,Digger,56,2017,Trans-Red,1 +Pick A Model,Digger,56,2017,Black,4 +Pick A Model,Digger,56,2017,Dark Bluish Gray,2 +Pick A Model,Digger,56,2017,Light Bluish Gray,6 +Pick A Model,Digger,56,2017,Orange,2 +Pick A Model,Digger,56,2017,Tan,1 +Pick A Model,Digger,56,2017,Trans-Clear,2 +Pick A Model,Digger,56,2017,White,5 +Pick A Model,Animal - Beaver,52,2017,Dark Tan,1 +Pick A Model,Animal - Beaver,52,2017,Light Bluish Gray,6 +Pick A Model,Animal - Beaver,52,2017,Reddish Brown,1 +Pick A Model,Animal - Beaver,52,2017,Tan,2 +Pick A Model,Animal - Beaver,52,2017,Black,2 +Pick A Model,Animal - Beaver,52,2017,White,8 +Pick A Model,Animal - Beaver,52,2017,Dark Bluish Gray,2 +Pick A Model,Puffin,50,2017,Black,6 +Pick A Model,Puffin,50,2017,Dark Bluish Gray,2 +Pick A Model,Puffin,50,2017,Light Bluish Gray,1 +Pick A Model,Puffin,50,2017,Orange,2 +Pick A Model,Puffin,50,2017,White,5 +Pick A Model,Puffin,50,2017,Yellow,1 +Piraka,Zaktan,42,2006,Black,4 +Piraka,Zaktan,42,2006,Blue,1 +Piraka,Zaktan,42,2006,Dark Bluish Gray,2 +Piraka,Zaktan,42,2006,Dark Green,7 +Piraka,Zaktan,42,2006,Light Bluish Gray,1 +Piraka,Zaktan,42,2006,Pearl Gold,3 +Piraka,Zaktan,42,2006,Sand Green,4 +Piraka,Zaktan,42,2006,Trans-Bright Green,1 +Piraka,Zaktan,42,2006,Trans-Neon Green,1 +Piraka,Zaktan,42,2006,Trans-Neon Orange,1 +Piraka,Zaktan,42,2006,White,1 +Piraka,Hakann,42,2006,Black,4 +Piraka,Hakann,42,2006,Blue,1 +Piraka,Hakann,42,2006,Dark Bluish Gray,1 +Piraka,Hakann,42,2006,Dark Red,7 +Piraka,Hakann,42,2006,Flat Silver,1 +Piraka,Hakann,42,2006,Light Bluish Gray,1 +Piraka,Hakann,42,2006,Pearl Dark Gray,3 +Piraka,Hakann,42,2006,Red,4 +Piraka,Hakann,42,2006,Trans-Neon Green,1 +Piraka,Hakann,42,2006,Trans-Neon Orange,1 +Piraka,Hakann,42,2006,Trans-Red,1 +Piraka,Hakann,42,2006,White,1 +Piraka,Thok,42,2006,Black,4 +Piraka,Thok,42,2006,Blue,1 +Piraka,Thok,42,2006,Dark Bluish Gray,2 +Piraka,Thok,42,2006,Light Bluish Gray,1 +Piraka,Thok,42,2006,Medium Blue,4 +Piraka,Thok,42,2006,Pearl Light Gray,3 +Piraka,Thok,42,2006,Trans-Light Blue,1 +Piraka,Thok,42,2006,Trans-Neon Green,1 +Piraka,Thok,42,2006,Trans-Neon Orange,1 +Piraka,Thok,42,2006,Very Light Bluish Gray,6 +Piraka,Thok,42,2006,White,2 +Piraka,Avak,41,2006,Black,4 +Piraka,Avak,41,2006,Blue,1 +Piraka,Avak,41,2006,Dark Bluish Gray,1 +Piraka,Avak,41,2006,Dark Flesh,1 +Piraka,Avak,41,2006,Dark Tan,4 +Piraka,Avak,41,2006,Light Bluish Gray,1 +Piraka,Avak,41,2006,Pearl Dark Gray,3 +Piraka,Avak,41,2006,Reddish Brown,6 +Piraka,Avak,41,2006,Trans-Neon Green,1 +Piraka,Avak,41,2006,Trans-Neon Orange,1 +Piraka,Avak,41,2006,White,2 +Piraka,Vezok,41,2006,Dark Bluish Gray,2 +Piraka,Vezok,41,2006,Flat Silver,1 +Piraka,Vezok,41,2006,Light Bluish Gray,1 +Piraka,Vezok,41,2006,Pearl Light Gray,2 +Piraka,Vezok,41,2006,Sand Blue,4 +Piraka,Vezok,41,2006,Trans-Neon Green,1 +Piraka,Vezok,41,2006,Trans-Neon Orange,1 +Piraka,Vezok,41,2006,White,1 +Piraka,Reidak,41,2006,Light Bluish Gray,1 +Piraka,Reidak,41,2006,Pearl Gold,3 +Piraka,Reidak,41,2006,Trans-Neon Green,1 +Piraka,Reidak,41,2006,Trans-Neon Orange,1 +Piraka,Reidak,41,2006,White,1 +Piraka,Reidak,41,2006,Black,11 +Piraka,Reidak,41,2006,Blue,1 +Piraka,Reidak,41,2006,Dark Bluish Gray,6 +Piraka,Vezok,41,2006,Black,4 +Piraka,Vezok,41,2006,Blue,1 +Piraka,Vezok,41,2006,Dark Blue,7 +Pirates,Pirate Elements,35,1990,Black,6 +Pirates,Pirate Elements,35,1990,Blue,1 +Pirates,Pirate Elements,35,1990,Brown,2 +Pirates,Pirate Elements,35,1990,Chrome Gold,4 +Pirates,Pirate Elements,35,1990,Dark Gray,1 +Pirates,Pirate Elements,35,1990,Red,1 +Pirates,Pirate Elements,35,1990,White,3 +Pirates,Pirate Elements,35,1990,Yellow,3 +Pirates,Imperial Trading Post,622,1992,Black,77 +Pirates,Imperial Trading Post,622,1992,Blue,4 +Pirates,Imperial Trading Post,622,1992,Brown,16 +Pirates,Imperial Trading Post,622,1992,Chrome Gold,4 +Pirates,Imperial Trading Post,622,1992,Dark Gray,2 +Pirates,Imperial Trading Post,622,1992,Green,4 +Pirates,Imperial Trading Post,622,1992,Light Gray,16 +Pirates,Imperial Trading Post,622,1992,Red,19 +Pirates,Imperial Trading Post,622,1992,Tan,3 +Pirates,Imperial Trading Post,622,1992,Trans-Yellow,1 +Pirates,Imperial Trading Post,622,1992,White,37 +Pirates,Imperial Trading Post,622,1992,Yellow,32 +Pirates,Imperial Flagship,320,1992,Black,50 +Pirates,Imperial Flagship,320,1992,Blue,5 +Pirates,Imperial Flagship,320,1992,Brown,11 +Pirates,Imperial Flagship,320,1992,Chrome Gold,4 +Pirates,Imperial Flagship,320,1992,Dark Gray,3 +Pirates,Imperial Flagship,320,1992,Light Gray,6 +Pirates,Imperial Flagship,320,1992,Red,1 +Pirates,Imperial Flagship,320,1992,Tan,3 +Pirates,Imperial Flagship,320,1992,Trans-Yellow,2 +Pirates,Imperial Flagship,320,1992,White,24 +Pirates,Imperial Flagship,320,1992,Yellow,7 +Pirates,Pirate Accessories,29,1994,Black,3 +Pirates,Pirate Accessories,29,1994,Blue,2 +Pirates,Pirate Accessories,29,1994,Brown,4 +Pirates,Pirate Accessories,29,1994,Chrome Gold,4 +Pirates,Pirate Accessories,29,1994,Dark Gray,1 +Pirates,Pirate Accessories,29,1994,Red,3 +Pirates,Pirate Accessories,29,1994,White,8 +Pirates,Pirate Accessories,29,1994,Yellow,1 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Trans-Light Blue,1 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Trans-Red,1 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Trans-Yellow,1 +Pirates,Captain Redbeard's Pirate Ship,139,2004,White,7 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Yellow,1 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Reddish Brown,13 +Pirates,Captain Redbeard's Pirate Ship,139,2004,[No Color],4 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Black,14 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Chrome Gold,4 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Dark Bluish Gray,3 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Green,2 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Light Bluish Gray,10 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Medium Green,1 +Pirates,Captain Redbeard's Pirate Ship,139,2004,Red,14 +Pirates,Skull Island,81,2004,Red,2 +Pirates,Skull Island,81,2004,Trans-Neon Orange,2 +Pirates,Skull Island,81,2004,Blue,5 +Pirates,Skull Island,81,2004,Black,10 +Pirates,Skull Island,81,2004,[No Color],3 +Pirates,Skull Island,81,2004,White,9 +Pirates,Skull Island,81,2004,Royal Blue,1 +Pirates,Skull Island,81,2004,Reddish Brown,3 +Pirates,Skull Island,81,2004,Yellow,1 +Pirates,Skull Island,81,2004,Green,7 +Pirates,Skull Island,81,2004,Dark Bluish Gray,5 +Pirates,Skull Island,81,2004,Chrome Silver,1 +Pirates,Skull Island,81,2004,Light Bluish Gray,6 +Pirates,Pirate Dock,63,2004,Yellow,1 +Pirates,Pirate Dock,63,2004,Reddish Brown,7 +Pirates,Pirate Dock,63,2004,Medium Green,1 +Pirates,Pirate Dock,63,2004,Light Bluish Gray,7 +Pirates,Pirate Dock,63,2004,Green,4 +Pirates,Pirate Dock,63,2004,Trans-Yellow,1 +Pirates,Pirate Dock,63,2004,Dark Bluish Gray,1 +Pirates,Pirate Dock,63,2004,Black,9 +Pirates,Pirate Dock,63,2004,[No Color],2 +Pirates,Pirate Dock,63,2004,Trans-Green,1 +Pirates,Pirate Dock,63,2004,Red,8 +Pirates,Pirate Dock,63,2004,White,3 +Pirates,Captain Kragg's Pirate Boat,41,2004,Light Bluish Gray,3 +Pirates,Captain Kragg's Pirate Boat,41,2004,Red,1 +Pirates,Captain Kragg's Pirate Boat,41,2004,Reddish Brown,4 +Pirates,Captain Kragg's Pirate Boat,41,2004,Trans-Neon Orange,1 +Pirates,Captain Kragg's Pirate Boat,41,2004,[No Color],1 +Pirates,Captain Kragg's Pirate Boat,41,2004,White,4 +Pirates,Captain Kragg's Pirate Boat,41,2004,Black,4 +Pirates,Captain Kragg's Pirate Boat,41,2004,Blue,6 +Pirates,Captain Kragg's Pirate Boat,41,2004,Chrome Gold,4 +Pirates,Captain Kragg's Pirate Boat,41,2004,Dark Bluish Gray,5 +Pirates,Treasure Island,30,2004,White,2 +Pirates,Treasure Island,30,2004,Green,2 +Pirates,Treasure Island,30,2004,[No Color],2 +Pirates,Treasure Island,30,2004,Black,3 +Pirates,Treasure Island,30,2004,Chrome Gold,4 +Pirates,Treasure Island,30,2004,Light Bluish Gray,1 +Pirates,Treasure Island,30,2004,Red,3 +Pirates,Treasure Island,30,2004,Reddish Brown,6 +Pirates,Treasure Island,30,2004,Tan,1 +Pirates,Treasure Island,30,2004,Trans-Light Blue,1 +Pirates,Treasure Island,30,2004,Trans-Neon Green,1 +Pirates,Treasure Island,30,2004,Trans-Neon Orange,2 +Pirates,Catapult Raft,23,2004,Chrome Silver,1 +Pirates,Catapult Raft,23,2004,Black,4 +Pirates,Catapult Raft,23,2004,[No Color],1 +Pirates,Catapult Raft,23,2004,Trans-Yellow,1 +Pirates,Catapult Raft,23,2004,White,1 +Pirates,Catapult Raft,23,2004,Reddish Brown,2 +Pirates,Catapult Raft,23,2004,Red,2 +Pirates,Catapult Raft,23,2004,Light Bluish Gray,1 +Pirates,Catapult Raft,23,2004,Green,1 +Pirates,Catapult Raft,23,2004,Dark Bluish Gray,1 +Pirates,Harry Hardtack and Monkey,10,2004,Reddish Brown,2 +Pirates,Harry Hardtack and Monkey,10,2004,Red,1 +Pirates,Harry Hardtack and Monkey,10,2004,Green,1 +Pirates,Harry Hardtack and Monkey,10,2004,Black,2 +Pirates,Harry Hardtack and Monkey,10,2004,[No Color],1 +Pirates,Harry Hardtack and Monkey,10,2004,White,1 +Pirates,Harry Hardtack and Monkey,10,2004,Trans-Neon Orange,1 +Pirates,Harry Hardtack and Monkey,10,2004,Light Bluish Gray,1 +Pirates,Cannonball Jimmy and Shark,7,2004,Reddish Brown,2 +Pirates,Cannonball Jimmy and Shark,7,2004,Trans-Light Blue,1 +Pirates,Cannonball Jimmy and Shark,7,2004,White,2 +Pirates,Scurvy Dog and Crocodile,7,2004,[No Color],1 +Pirates,Scurvy Dog and Crocodile,7,2004,Black,1 +Pirates,Scurvy Dog and Crocodile,7,2004,Green,3 +Pirates,Scurvy Dog and Crocodile,7,2004,Trans-Red,1 +Pirates,Scurvy Dog and Crocodile,7,2004,White,1 +Pirates,Cannonball Jimmy and Shark,7,2004,[No Color],1 +Pirates,Cannonball Jimmy and Shark,7,2004,Light Bluish Gray,1 +Pirates,Pirates Polybag,5,2004,Black,3 +Pirates,Pirates Polybag,5,2004,[No Color],1 +Pirates,Pirates Polybag,5,2004,Green,1 +Pirates,Pirate Treasure Chest Bank (LLCA Ambassador Pass Exclusive),215,2006,Black,8 +Pirates,Pirate Treasure Chest Bank (LLCA Ambassador Pass Exclusive),215,2006,Dark Bluish Gray,1 +Pirates,Pirate Treasure Chest Bank (LLCA Ambassador Pass Exclusive),215,2006,Reddish Brown,14 +Pirates,Pirate Treasure Chest Bank (LLCA Ambassador Pass Exclusive),215,2006,Yellow,20 +Pirates,Pirate Ship Diorama (LLCA Ambassador Pass Exclusive),127,2006,Black,1 +Pirates,Pirate Ship Diorama (LLCA Ambassador Pass Exclusive),127,2006,Blue,7 +Pirates,Pirate Ship Diorama (LLCA Ambassador Pass Exclusive),127,2006,Dark Bluish Gray,3 +Pirates,Pirate Ship Diorama (LLCA Ambassador Pass Exclusive),127,2006,Reddish Brown,14 +Pirates,Pirate Ship Diorama (LLCA Ambassador Pass Exclusive),127,2006,Tan,1 +Pirates,Pirate Ship Diorama (LLCA Ambassador Pass Exclusive),127,2006,White,2 +Pirates,Legoland Pirate with Parrot (Legoland California),70,2006,Black,8 +Pirates,Legoland Pirate with Parrot (Legoland California),70,2006,Blue,2 +Pirates,Legoland Pirate with Parrot (Legoland California),70,2006,Brown,3 +Pirates,Legoland Pirate with Parrot (Legoland California),70,2006,Dark Bluish Gray,6 +Pirates,Legoland Pirate with Parrot (Legoland California),70,2006,Green,3 +Pirates,Legoland Pirate with Parrot (Legoland California),70,2006,Light Bluish Gray,1 +Pirates,Legoland Pirate with Parrot (Legoland California),70,2006,Red,3 +Pirates,Legoland Pirate with Parrot (Legoland California),70,2006,Tan,9 +Pirates,Legoland Pirate with Parrot (Legoland California),70,2006,White,1 +Pirates,Legoland Pirate with Parrot (Legoland California),70,2006,Yellow,2 +Pirates,Advent Calendar 2009 Pirates (Day 23) - Brick Arch with Fire and Skull,12,2009,Light Bluish Gray,1 +Pirates,Advent Calendar 2009 Pirates (Day 23) - Brick Arch with Fire and Skull,12,2009,Dark Bluish Gray,3 +Pirates,Advent Calendar 2009 Pirates (Day 23) - Brick Arch with Fire and Skull,12,2009,White,1 +Pirates,Advent Calendar 2009 Pirates (Day 23) - Brick Arch with Fire and Skull,12,2009,Trans-Neon Orange,1 +Pirates,Advent Calendar 2009 Pirates (Day 23) - Brick Arch with Fire and Skull,12,2009,Reddish Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 2) - Table with Lamp and Map,9,2009,Reddish Brown,2 +Pirates,Advent Calendar 2009 Pirates (Day 2) - Table with Lamp and Map,9,2009,Tan,1 +Pirates,Advent Calendar 2009 Pirates (Day 2) - Table with Lamp and Map,9,2009,Trans-Yellow,1 +Pirates,Advent Calendar 2009 Pirates (Day 12) - Fish over Fire,9,2009,Trans-Neon Orange,1 +Pirates,Advent Calendar 2009 Pirates (Day 18) - Weapon Stand,9,2009,Reddish Brown,4 +Pirates,Advent Calendar 2009 Pirates (Day 18) - Weapon Stand,9,2009,Light Bluish Gray,1 +Pirates,Advent Calendar 2009 Pirates (Day 18) - Weapon Stand,9,2009,Dark Bluish Gray,2 +Pirates,Advent Calendar 2009 Pirates (Day 12) - Fish over Fire,9,2009,Reddish Brown,2 +Pirates,Advent Calendar 2009 Pirates (Day 12) - Fish over Fire,9,2009,Dark Bluish Gray,1 +Pirates,Advent Calendar 2009 Pirates (Day 12) - Fish over Fire,9,2009,Black,1 +Pirates,Advent Calendar 2009 Pirates (Day 2) - Table with Lamp and Map,9,2009,Black,2 +Pirates,Advent Calendar 2009 Pirates (Day 12) - Fish over Fire,9,2009,Pearl Light Gray,1 +Pirates,Advent Calendar 2009 Pirates (Day 16) - Table with Food and Rat,8,2009,Red,1 +Pirates,Advent Calendar 2009 Pirates (Day 16) - Table with Food and Rat,8,2009,Reddish Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 16) - Table with Food and Rat,8,2009,Tan,1 +Pirates,Advent Calendar 2009 Pirates (Day 24) - Treasure Chest with Gems,8,2009,Metallic Gold,1 +Pirates,Advent Calendar 2009 Pirates (Day 24) - Treasure Chest with Gems,8,2009,Reddish Brown,2 +Pirates,Advent Calendar 2009 Pirates (Day 24) - Treasure Chest with Gems,8,2009,Trans-Dark Blue,1 +Pirates,Advent Calendar 2009 Pirates (Day 24) - Treasure Chest with Gems,8,2009,Trans-Light Blue,1 +Pirates,Advent Calendar 2009 Pirates (Day 24) - Treasure Chest with Gems,8,2009,Trans-Neon Green,1 +Pirates,Advent Calendar 2009 Pirates (Day 24) - Treasure Chest with Gems,8,2009,Trans-Red,1 +Pirates,Advent Calendar 2009 Pirates (Day 5) - Cannon,8,2009,Black,3 +Pirates,Advent Calendar 2009 Pirates (Day 5) - Cannon,8,2009,Red,1 +Pirates,Advent Calendar 2009 Pirates (Day 5) - Cannon,8,2009,Reddish Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 8) - Raft with Flagpole,8,2009,Red,1 +Pirates,Advent Calendar 2009 Pirates (Day 8) - Raft with Flagpole,8,2009,Reddish Brown,5 +Pirates,Advent Calendar 2009 Pirates (Day 5) - Cannon,8,2009,Blue,1 +Pirates,Advent Calendar 2009 Pirates (Day 24) - Treasure Chest with Gems,8,2009,Trans-Yellow,1 +Pirates,Advent Calendar 2009 Pirates (Day 16) - Table with Food and Rat,8,2009,Dark Orange,1 +Pirates,Advent Calendar 2009 Pirates (Day 16) - Table with Food and Rat,8,2009,Light Bluish Gray,1 +Pirates,Advent Calendar 2009 Pirates (Day 3) - Parrot on Perch,7,2009,Reddish Brown,2 +Pirates,Advent Calendar 2009 Pirates (Day 22) - Skeleton and Snake,7,2009,Green,1 +Pirates,Advent Calendar 2009 Pirates (Day 11) - Castaway,7,2009,Dark Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 11) - Castaway,7,2009,Light Bluish Gray,2 +Pirates,Advent Calendar 2009 Pirates (Day 3) - Parrot on Perch,7,2009,Dark Bluish Gray,1 +Pirates,Advent Calendar 2009 Pirates (Day 3) - Parrot on Perch,7,2009,Red,3 +Pirates,Advent Calendar 2009 Pirates (Day 11) - Castaway,7,2009,Trans-Orange,1 +Pirates,Advent Calendar 2009 Pirates (Day 11) - Castaway,7,2009,Yellow,2 +Pirates,Advent Calendar 2009 Pirates (Day 11) - Castaway,7,2009,Reddish Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 9) - Plants and Crab,7,2009,Tan,3 +Pirates,Advent Calendar 2009 Pirates (Day 22) - Skeleton and Snake,7,2009,White,4 +Pirates,Advent Calendar 2009 Pirates (Day 9) - Plants and Crab,7,2009,Bright Light Orange,1 +Pirates,Advent Calendar 2009 Pirates (Day 9) - Plants and Crab,7,2009,Green,1 +Pirates,Advent Calendar 2009 Pirates (Day 1) - Captain Brickbeard,6,2009,Dark Bluish Gray,1 +Pirates,Advent Calendar 2009 Pirates (Day 1) - Captain Brickbeard,6,2009,Pearl Gold,1 +Pirates,Advent Calendar 2009 Pirates (Day 1) - Captain Brickbeard,6,2009,Yellow,1 +Pirates,Advent Calendar 2009 Pirates (Day 4) - Imperial Soldier II Officer,6,2009,Black,1 +Pirates,Advent Calendar 2009 Pirates (Day 4) - Imperial Soldier II Officer,6,2009,Blue,1 +Pirates,Advent Calendar 2009 Pirates (Day 15) - Clam and Plant,6,2009,Trans-Green,1 +Pirates,Advent Calendar 2009 Pirates (Day 15) - Clam and Plant,6,2009,Dark Bluish Gray,2 +Pirates,Advent Calendar 2009 Pirates (Day 15) - Clam and Plant,6,2009,Tan,1 +Pirates,Advent Calendar 2009 Pirates (Day 15) - Clam and Plant,6,2009,Trans-Dark Pink,1 +Pirates,Advent Calendar 2009 Pirates (Day 15) - Clam and Plant,6,2009,White,1 +Pirates,Advent Calendar 2009 Pirates (Day 17) - Imperial Soldier II,6,2009,Red,1 +Pirates,Advent Calendar 2009 Pirates (Day 17) - Imperial Soldier II,6,2009,Blue,1 +Pirates,Advent Calendar 2009 Pirates (Day 1) - Captain Brickbeard,6,2009,Black,3 +Pirates,Advent Calendar 2009 Pirates (Day 17) - Imperial Soldier II,6,2009,Reddish Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 17) - Imperial Soldier II,6,2009,White,1 +Pirates,Advent Calendar 2009 Pirates (Day 17) - Imperial Soldier II,6,2009,Yellow,1 +Pirates,Advent Calendar 2009 Pirates (Day 17) - Imperial Soldier II,6,2009,Black,1 +Pirates,Advent Calendar 2009 Pirates (Day 4) - Imperial Soldier II Officer,6,2009,Yellow,1 +Pirates,Advent Calendar 2009 Pirates (Day 4) - Imperial Soldier II Officer,6,2009,White,1 +Pirates,Advent Calendar 2009 Pirates (Day 4) - Imperial Soldier II Officer,6,2009,Reddish Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 4) - Imperial Soldier II Officer,6,2009,Red,1 +Pirates,Advent Calendar 2009 Pirates (Day 7) - Pirate Female,5,2009,Dark Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 7) - Pirate Female,5,2009,Blue,1 +Pirates,Advent Calendar 2009 Pirates (Day 7) - Pirate Female,5,2009,Black,1 +Pirates,Advent Calendar 2009 Pirates (Day 7) - Pirate Female,5,2009,Yellow,1 +Pirates,Advent Calendar 2009 Pirates (Day 7) - Pirate Female,5,2009,Pearl Gold,1 +Pirates,Advent Calendar 2009 Pirates (Day 14) - Mermaid,4,2009,Dark Green,1 +Pirates,Advent Calendar 2009 Pirates (Day 19) - Pirate,4,2009,Yellow,1 +Pirates,Advent Calendar 2009 Pirates (Day 19) - Pirate,4,2009,Black,1 +Pirates,Advent Calendar 2009 Pirates (Day 19) - Pirate,4,2009,Blue,1 +Pirates,Advent Calendar 2009 Pirates (Day 14) - Mermaid,4,2009,Yellow,2 +Pirates,Advent Calendar 2009 Pirates (Day 14) - Mermaid,4,2009,Reddish Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 19) - Pirate,4,2009,Green,1 +Pirates,Advent Calendar 2009 Pirates (Day 10) - Barrel with Tools,3,2009,Dark Bluish Gray,1 +Pirates,Advent Calendar 2009 Pirates (Day 6) - Crocodile,3,2009,Dark Green,3 +Pirates,Advent Calendar 2009 Pirates (Day 10) - Barrel with Tools,3,2009,Reddish Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 10) - Barrel with Tools,3,2009,Black,1 +Pirates,Advent Calendar 2009 Pirates (Day 21) - Sawfish,2,2009,Dark Bluish Gray,2 +Pirates,Advent Calendar 2009 Pirates (Day 13) - Monkey,2,2009,Reddish Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 13) - Monkey,2,2009,Yellow,1 +Pirates,Advent Calendar 2009 Pirates (Day 20) - Barrel and Paddle,2,2009,Reddish Brown,1 +Pirates,Advent Calendar 2009 Pirates (Day 20) - Barrel and Paddle,2,2009,White,1 +Pirates,Classic Pirate Set,43,2013,Black,5 +Pirates,Classic Pirate Set,43,2013,Blue,1 +Pirates,Classic Pirate Set,43,2013,Bright Green,1 +Pirates,Classic Pirate Set,43,2013,Bright Light Orange,1 +Pirates,Classic Pirate Set,43,2013,Chrome Gold,5 +Pirates,Classic Pirate Set,43,2013,Dark Brown,1 +Pirates,Classic Pirate Set,43,2013,Dark Green,1 +Pirates,Classic Pirate Set,43,2013,Dark Orange,2 +Pirates,Classic Pirate Set,43,2013,Dark Red,2 +Pirates,Classic Pirate Set,43,2013,Flat Silver,1 +Pirates,Classic Pirate Set,43,2013,Green,1 +Pirates,Classic Pirate Set,43,2013,Pearl Gold,1 +Pirates,Classic Pirate Set,43,2013,Red,2 +Pirates,Classic Pirate Set,43,2013,Reddish Brown,6 +Pirates,Classic Pirate Set,43,2013,Tan,2 +Pirates,Classic Pirate Set,43,2013,Trans-Clear,1 +Pirates,Classic Pirate Set,43,2013,Yellow,4 +Pirates I,Black Seas Barracuda,915,1989,Black,88 +Pirates I,Black Seas Barracuda,915,1989,Blue,3 +Pirates I,Black Seas Barracuda,915,1989,Brown,17 +Pirates I,Black Seas Barracuda,915,1989,Chrome Gold,4 +Pirates I,Black Seas Barracuda,915,1989,Dark Gray,3 +Pirates I,Black Seas Barracuda,915,1989,Light Gray,19 +Pirates I,Black Seas Barracuda,915,1989,Red,6 +Pirates I,Black Seas Barracuda,915,1989,Trans-Yellow,1 +Pirates I,Black Seas Barracuda,915,1989,White,15 +Pirates I,Black Seas Barracuda,915,1989,Yellow,40 +Pirates I,Forbidden Island,190,1989,Trans-Yellow,1 +Pirates I,Forbidden Island,190,1989,Red,4 +Pirates I,Forbidden Island,190,1989,Green,5 +Pirates I,Forbidden Island,190,1989,Light Gray,18 +Pirates I,Forbidden Island,190,1989,Dark Gray,7 +Pirates I,Forbidden Island,190,1989,Chrome Gold,4 +Pirates I,Forbidden Island,190,1989,Brown,19 +Pirates I,Forbidden Island,190,1989,Blue,1 +Pirates I,Forbidden Island,190,1989,Black,36 +Pirates I,Forbidden Island,190,1989,White,4 +Pirates I,Forbidden Island,190,1989,Yellow,6 +Pirates I,Shipwreck Island,78,1989,Yellow,4 +Pirates I,Shipwreck Island,78,1989,Black,8 +Pirates I,Shipwreck Island,78,1989,Blue,2 +Pirates I,Shipwreck Island,78,1989,Brown,11 +Pirates I,Shipwreck Island,78,1989,Chrome Gold,4 +Pirates I,Shipwreck Island,78,1989,Dark Gray,2 +Pirates I,Shipwreck Island,78,1989,Green,4 +Pirates I,Shipwreck Island,78,1989,Light Gray,8 +Pirates I,Shipwreck Island,78,1989,Red,3 +Pirates I,Shipwreck Island,78,1989,White,3 +Pirates I,Castaway's Raft,54,1989,Light Gray,1 +Pirates I,Castaway's Raft,54,1989,Red,1 +Pirates I,Castaway's Raft,54,1989,White,4 +Pirates I,Castaway's Raft,54,1989,Yellow,4 +Pirates I,Castaway's Raft,54,1989,Black,11 +Pirates I,Castaway's Raft,54,1989,Blue,2 +Pirates I,Castaway's Raft,54,1989,Brown,6 +Pirates I,Castaway's Raft,54,1989,Dark Gray,3 +Pirates I,Pirate Mini Figures,40,1989,Black,5 +Pirates I,Pirate Mini Figures,40,1989,Blue,2 +Pirates I,Pirate Mini Figures,40,1989,Brown,6 +Pirates I,Pirate Mini Figures,40,1989,Chrome Gold,4 +Pirates I,Pirate Mini Figures,40,1989,Dark Gray,1 +Pirates I,Pirate Mini Figures,40,1989,Red,3 +Pirates I,Pirate Mini Figures,40,1989,White,3 +Pirates I,Pirate Mini Figures,40,1989,Yellow,7 +Pirates I,Buried Treasure,27,1989,Red,1 +Pirates I,Buried Treasure,27,1989,Light Gray,2 +Pirates I,Buried Treasure,27,1989,Green,1 +Pirates I,Buried Treasure,27,1989,Chrome Gold,4 +Pirates I,Buried Treasure,27,1989,Dark Gray,2 +Pirates I,Buried Treasure,27,1989,Brown,4 +Pirates I,Buried Treasure,27,1989,Black,1 +Pirates I,Buried Treasure,27,1989,Yellow,5 +Pirates I,Buried Treasure,27,1989,White,2 +Pirates I,Pirate Comic,12,1989,Blue,1 +Pirates I,Pirate Comic,12,1989,Brown,2 +Pirates I,Pirate Comic,12,1989,Dark Gray,1 +Pirates I,Pirate Comic,12,1989,Light Gray,1 +Pirates I,Pirate Comic,12,1989,White,1 +Pirates I,Pirate Comic,12,1989,Yellow,3 +Pirates I,Pirate Comic,12,1989,[No Color],1 +Pirates I,Pirate Comic,12,1989,Red,2 +Pirates I,Red Beard Runner,712,2001,Black,79 +Pirates I,Red Beard Runner,712,2001,Blue,14 +Pirates I,Red Beard Runner,712,2001,Brown,13 +Pirates I,Red Beard Runner,712,2001,Chrome Gold,4 +Pirates I,Red Beard Runner,712,2001,Dark Gray,8 +Pirates I,Red Beard Runner,712,2001,Green,2 +Pirates I,Red Beard Runner,712,2001,Light Gray,27 +Pirates I,Red Beard Runner,712,2001,Red,15 +Pirates I,Red Beard Runner,712,2001,Trans-Yellow,1 +Pirates I,Red Beard Runner,712,2001,White,38 +Pirates I,Red Beard Runner,712,2001,Yellow,25 +Pirates II,Brickbeard's Bounty,595,2009,Dark Red,10 +Pirates II,Brickbeard's Bounty,595,2009,Dark Green,5 +Pirates II,Brickbeard's Bounty,595,2009,Yellow,10 +Pirates II,Brickbeard's Bounty,595,2009,Dark Tan,1 +Pirates II,Brickbeard's Bounty,595,2009,Light Bluish Gray,9 +Pirates II,Brickbeard's Bounty,595,2009,Pearl Dark Gray,1 +Pirates II,Brickbeard's Bounty,595,2009,Pearl Gold,12 +Pirates II,Brickbeard's Bounty,595,2009,Red,10 +Pirates II,Brickbeard's Bounty,595,2009,Reddish Brown,28 +Pirates II,Brickbeard's Bounty,595,2009,Tan,13 +Pirates II,Brickbeard's Bounty,595,2009,Trans-Clear,1 +Pirates II,Brickbeard's Bounty,595,2009,Trans-Green,1 +Pirates II,Brickbeard's Bounty,595,2009,Trans-Red,1 +Pirates II,Brickbeard's Bounty,595,2009,Trans-Yellow,1 +Pirates II,Brickbeard's Bounty,595,2009,White,11 +Pirates II,Brickbeard's Bounty,595,2009,Black,55 +Pirates II,Brickbeard's Bounty,595,2009,Blue,6 +Pirates II,Brickbeard's Bounty,595,2009,Chrome Gold,4 +Pirates II,Brickbeard's Bounty,595,2009,Dark Blue,1 +Pirates II,Brickbeard's Bounty,595,2009,Dark Bluish Gray,17 +Pirates II,Brickbeard's Bounty,595,2009,Dark Brown,3 +Pirates II,Soldiers' Fort,370,2009,White,20 +Pirates II,Soldiers' Fort,370,2009,Pearl Gold,2 +Pirates II,Soldiers' Fort,370,2009,Yellow,7 +Pirates II,Soldiers' Fort,370,2009,Black,17 +Pirates II,Soldiers' Fort,370,2009,Blue,4 +Pirates II,Soldiers' Fort,370,2009,Chrome Gold,4 +Pirates II,Soldiers' Fort,370,2009,Dark Blue,2 +Pirates II,Soldiers' Fort,370,2009,Dark Bluish Gray,11 +Pirates II,Soldiers' Fort,370,2009,Dark Brown,3 +Pirates II,Soldiers' Fort,370,2009,Dark Green,3 +Pirates II,Soldiers' Fort,370,2009,[No Color],1 +Pirates II,Soldiers' Fort,370,2009,Green,4 +Pirates II,Soldiers' Fort,370,2009,Light Bluish Gray,22 +Pirates II,Soldiers' Fort,370,2009,Pearl Dark Gray,1 +Pirates II,Soldiers' Fort,370,2009,Pearl Light Gray,1 +Pirates II,Soldiers' Fort,370,2009,Red,5 +Pirates II,Soldiers' Fort,370,2009,Reddish Brown,17 +Pirates II,Soldiers' Fort,370,2009,Tan,8 +Pirates II,Soldiers' Fort,370,2009,Trans-Clear,1 +Pirates II,Soldiers' Fort,370,2009,Trans-Green,1 +Pirates II,Soldiers' Fort,370,2009,Trans-Neon Orange,1 +Pirates II,Soldiers' Fort,370,2009,Trans-Red,1 +Pirates II,Soldiers' Fort,370,2009,Trans-Yellow,1 +Pirates II,Shipwreck Hideout,313,2009,Dark Bluish Gray,12 +Pirates II,Shipwreck Hideout,313,2009,Dark Blue,1 +Pirates II,Shipwreck Hideout,313,2009,Chrome Gold,4 +Pirates II,Shipwreck Hideout,313,2009,Bright Light Orange,1 +Pirates II,Shipwreck Hideout,313,2009,Blue,5 +Pirates II,Shipwreck Hideout,313,2009,Black,25 +Pirates II,Shipwreck Hideout,313,2009,Dark Green,4 +Pirates II,Shipwreck Hideout,313,2009,Dark Tan,1 +Pirates II,Shipwreck Hideout,313,2009,Green,5 +Pirates II,Shipwreck Hideout,313,2009,Light Bluish Gray,11 +Pirates II,Shipwreck Hideout,313,2009,Pearl Dark Gray,1 +Pirates II,Shipwreck Hideout,313,2009,Pearl Gold,7 +Pirates II,Shipwreck Hideout,313,2009,Dark Brown,3 +Pirates II,Shipwreck Hideout,313,2009,Pearl Light Gray,1 +Pirates II,Shipwreck Hideout,313,2009,Red,6 +Pirates II,Shipwreck Hideout,313,2009,Reddish Brown,27 +Pirates II,Shipwreck Hideout,313,2009,Tan,10 +Pirates II,Shipwreck Hideout,313,2009,Trans-Green,1 +Pirates II,Shipwreck Hideout,313,2009,Dark Red,1 +Pirates II,Shipwreck Hideout,313,2009,Trans-Red,1 +Pirates II,Shipwreck Hideout,313,2009,Trans-Yellow,1 +Pirates II,Shipwreck Hideout,313,2009,White,7 +Pirates II,Shipwreck Hideout,313,2009,Yellow,5 +Pirates II,Shipwreck Hideout,313,2009,Trans-Neon Green,1 +Pirates II,Loot Island,144,2009,Yellow,4 +Pirates II,Loot Island,144,2009,White,7 +Pirates II,Loot Island,144,2009,Trans-Yellow,1 +Pirates II,Loot Island,144,2009,Trans-Neon Orange,1 +Pirates II,Loot Island,144,2009,Trans-Dark Pink,1 +Pirates II,Loot Island,144,2009,Tan,6 +Pirates II,Loot Island,144,2009,Reddish Brown,8 +Pirates II,Loot Island,144,2009,Trans-Light Blue,1 +Pirates II,Loot Island,144,2009,Red,3 +Pirates II,Loot Island,144,2009,Pearl Light Gray,1 +Pirates II,Loot Island,144,2009,Pearl Gold,3 +Pirates II,Loot Island,144,2009,Pearl Dark Gray,1 +Pirates II,Loot Island,144,2009,Green,3 +Pirates II,Loot Island,144,2009,Dark Tan,1 +Pirates II,Loot Island,144,2009,Dark Green,6 +Pirates II,Loot Island,144,2009,Dark Brown,1 +Pirates II,Loot Island,144,2009,Light Bluish Gray,9 +Pirates II,Loot Island,144,2009,Dark Blue,1 +Pirates II,Loot Island,144,2009,Blue,4 +Pirates II,Loot Island,144,2009,Black,13 +Pirates II,Loot Island,144,2009,Chrome Gold,4 +Pirates II,Loot Island,144,2009,Dark Bluish Gray,13 +Pirates II,Kraken Attackin',78,2009,White,1 +Pirates II,Kraken Attackin',78,2009,Yellow,2 +Pirates II,Kraken Attackin',78,2009,Black,7 +Pirates II,Kraken Attackin',78,2009,Blue,1 +Pirates II,Kraken Attackin',78,2009,Dark Bluish Gray,2 +Pirates II,Kraken Attackin',78,2009,Dark Red,1 +Pirates II,Kraken Attackin',78,2009,Green,1 +Pirates II,Kraken Attackin',78,2009,Light Bluish Gray,1 +Pirates II,Kraken Attackin',78,2009,Pearl Gold,2 +Pirates II,Kraken Attackin',78,2009,Red,2 +Pirates II,Kraken Attackin',78,2009,Reddish Brown,9 +Pirates II,Kraken Attackin',78,2009,Tan,3 +Pirates II,Kraken Attackin',78,2009,Trans-Dark Blue,1 +Pirates II,Kraken Attackin',78,2009,Trans-Red,1 +Pirates II,Cannon Battle,45,2009,Yellow,2 +Pirates II,Cannon Battle,45,2009,White,2 +Pirates II,Cannon Battle,45,2009,Trans-Neon Orange,1 +Pirates II,Cannon Battle,45,2009,Tan,2 +Pirates II,Cannon Battle,45,2009,Reddish Brown,5 +Pirates II,Cannon Battle,45,2009,Red,4 +Pirates II,Cannon Battle,45,2009,Pearl Gold,2 +Pirates II,Cannon Battle,45,2009,Pearl Dark Gray,1 +Pirates II,Cannon Battle,45,2009,Light Bluish Gray,4 +Pirates II,Cannon Battle,45,2009,Green,1 +Pirates II,Cannon Battle,45,2009,Dark Green,1 +Pirates II,Cannon Battle,45,2009,Dark Bluish Gray,7 +Pirates II,Cannon Battle,45,2009,Blue,1 +Pirates II,Cannon Battle,45,2009,Black,4 +Pirates II,Battle Pack Pirates,42,2009,Yellow,4 +Pirates II,Battle Pack Pirates,42,2009,White,4 +Pirates II,Battle Pack Pirates,42,2009,Trans-Light Blue,1 +Pirates II,Battle Pack Pirates,42,2009,Red,4 +Pirates II,Battle Pack Pirates,42,2009,Dark Green,2 +Pirates II,Battle Pack Pirates,42,2009,Pearl Gold,3 +Pirates II,Battle Pack Pirates,42,2009,Dark Brown,1 +Pirates II,Battle Pack Pirates,42,2009,Dark Bluish Gray,2 +Pirates II,Battle Pack Pirates,42,2009,Dark Blue,1 +Pirates II,Battle Pack Pirates,42,2009,Chrome Gold,4 +Pirates II,Battle Pack Pirates,42,2009,Blue,1 +Pirates II,Battle Pack Pirates,42,2009,Black,5 +Pirates II,Battle Pack Pirates,42,2009,Trans-Dark Pink,1 +Pirates II,Battle Pack Pirates,42,2009,Tan,1 +Pirates II,Battle Pack Pirates,42,2009,Reddish Brown,5 +Pirates II,Soldier's Arsenal,17,2009,Black,1 +Pirates II,Soldier's Arsenal,17,2009,Blue,1 +Pirates II,Soldier's Arsenal,17,2009,Dark Bluish Gray,1 +Pirates II,Soldier's Arsenal,17,2009,Light Bluish Gray,2 +Pirates II,Soldier's Arsenal,17,2009,Red,1 +Pirates II,Soldier's Arsenal,17,2009,Reddish Brown,4 +Pirates II,Soldier's Arsenal,17,2009,Tan,1 +Pirates II,Soldier's Arsenal,17,2009,Yellow,1 +Pirates II,Soldier's Arsenal,17,2009,Dark Blue,1 +Pirates II,Soldier's Arsenal,17,2009,White,1 +Pirates II,Pirate Survival,16,2009,Red,1 +Pirates II,Pirate Survival,16,2009,Tan,1 +Pirates II,Pirate Survival,16,2009,Trans-Green,1 +Pirates II,Pirate Survival,16,2009,Trans-Orange,1 +Pirates II,Pirate Survival,16,2009,Trans-Red,1 +Pirates II,Pirate Survival,16,2009,Yellow,1 +Pirates II,Pirate Survival,16,2009,Black,1 +Pirates II,Pirate Survival,16,2009,Dark Bluish Gray,1 +Pirates II,Pirate Survival,16,2009,Dark Green,2 +Pirates II,Pirate Survival,16,2009,Pearl Light Gray,1 +Pirates II,Pirate Survival,16,2009,Reddish Brown,5 +Pirates II,Imperial Flagship,1623,2010,[No Color],1 +Pirates II,Imperial Flagship,1623,2010,Black,40 +Pirates II,Imperial Flagship,1623,2010,Blue,3 +Pirates II,Imperial Flagship,1623,2010,Chrome Gold,4 +Pirates II,Imperial Flagship,1623,2010,Dark Blue,4 +Pirates II,Imperial Flagship,1623,2010,Dark Bluish Gray,19 +Pirates II,Imperial Flagship,1623,2010,Dark Brown,14 +Pirates II,Imperial Flagship,1623,2010,Dark Orange,1 +Pirates II,Imperial Flagship,1623,2010,Dark Tan,1 +Pirates II,Imperial Flagship,1623,2010,Light Bluish Gray,26 +Pirates II,Imperial Flagship,1623,2010,Medium Blue,3 +Pirates II,Imperial Flagship,1623,2010,Orange,2 +Pirates II,Imperial Flagship,1623,2010,Pearl Dark Gray,1 +Pirates II,Imperial Flagship,1623,2010,Pearl Gold,3 +Pirates II,Imperial Flagship,1623,2010,Pearl Light Gray,3 +Pirates II,Imperial Flagship,1623,2010,Red,4 +Pirates II,Imperial Flagship,1623,2010,Reddish Brown,37 +Pirates II,Imperial Flagship,1623,2010,Tan,20 +Pirates II,Imperial Flagship,1623,2010,Trans-Dark Blue,2 +Pirates II,Imperial Flagship,1623,2010,Trans-Green,1 +Pirates II,Imperial Flagship,1623,2010,Trans-Light Blue,1 +Pirates II,Imperial Flagship,1623,2010,Trans-Neon Orange,1 +Pirates II,Imperial Flagship,1623,2010,Trans-Orange,1 +Pirates II,Imperial Flagship,1623,2010,Trans-Red,1 +Pirates II,Imperial Flagship,1623,2010,Trans-Yellow,2 +Pirates II,Imperial Flagship,1623,2010,White,6 +Pirates III,Pirates Chess Set,855,2015,Dark Tan,6 +Pirates III,Pirates Chess Set,855,2015,Dark Bluish Gray,9 +Pirates III,Pirates Chess Set,855,2015,Dark Brown,1 +Pirates III,Pirates Chess Set,855,2015,Dark Red,4 +Pirates III,Pirates Chess Set,855,2015,Red,7 +Pirates III,Pirates Chess Set,855,2015,Black,20 +Pirates III,Pirates Chess Set,855,2015,Blue,17 +Pirates III,Pirates Chess Set,855,2015,Bright Light Yellow,1 +Pirates III,Pirates Chess Set,855,2015,Dark Blue,2 +Pirates III,Pirates Chess Set,855,2015,Green,2 +Pirates III,Pirates Chess Set,855,2015,Light Bluish Gray,20 +Pirates III,Pirates Chess Set,855,2015,Lime,1 +Pirates III,Pirates Chess Set,855,2015,Orange,1 +Pirates III,Pirates Chess Set,855,2015,Pearl Gold,2 +Pirates III,Pirates Chess Set,855,2015,Reddish Brown,15 +Pirates III,Pirates Chess Set,855,2015,Tan,20 +Pirates III,Pirates Chess Set,855,2015,Trans-Black,1 +Pirates III,Pirates Chess Set,855,2015,Trans-Green,1 +Pirates III,Pirates Chess Set,855,2015,Trans-Yellow,1 +Pirates III,Pirates Chess Set,855,2015,White,20 +Pirates III,Pirates Chess Set,855,2015,Yellow,14 +Pirates III,The Brick Bounty,743,2015,Black,54 +Pirates III,The Brick Bounty,743,2015,Blue,4 +Pirates III,The Brick Bounty,743,2015,Dark Blue,2 +Pirates III,The Brick Bounty,743,2015,Dark Bluish Gray,24 +Pirates III,The Brick Bounty,743,2015,Dark Brown,1 +Pirates III,The Brick Bounty,743,2015,Trans-Dark Blue,1 +Pirates III,The Brick Bounty,743,2015,Dark Tan,20 +Pirates III,The Brick Bounty,743,2015,Yellow,9 +Pirates III,The Brick Bounty,743,2015,White,14 +Pirates III,The Brick Bounty,743,2015,Trans-Yellow,1 +Pirates III,The Brick Bounty,743,2015,Trans-Red,1 +Pirates III,The Brick Bounty,743,2015,Trans-Green,2 +Pirates III,The Brick Bounty,743,2015,Light Bluish Gray,21 +Pirates III,The Brick Bounty,743,2015,Trans-Clear,1 +Pirates III,The Brick Bounty,743,2015,Tan,1 +Pirates III,The Brick Bounty,743,2015,Reddish Brown,52 +Pirates III,The Brick Bounty,743,2015,Red,31 +Pirates III,The Brick Bounty,743,2015,Pearl Gold,9 +Pirates III,The Brick Bounty,743,2015,Pearl Dark Gray,1 +Pirates III,The Brick Bounty,743,2015,Orange,1 +Pirates III,Soldiers Fort,234,2015,Trans-Black,1 +Pirates III,Soldiers Fort,234,2015,Trans-Clear,1 +Pirates III,Soldiers Fort,234,2015,Trans-Green,1 +Pirates III,Soldiers Fort,234,2015,Trans-Red,1 +Pirates III,Soldiers Fort,234,2015,Trans-Yellow,1 +Pirates III,Soldiers Fort,234,2015,White,26 +Pirates III,Soldiers Fort,234,2015,Yellow,5 +Pirates III,Soldiers Fort,234,2015,Light Bluish Gray,17 +Pirates III,Soldiers Fort,234,2015,Black,14 +Pirates III,Soldiers Fort,234,2015,Blue,8 +Pirates III,Soldiers Fort,234,2015,Dark Blue,2 +Pirates III,Soldiers Fort,234,2015,Dark Bluish Gray,12 +Pirates III,Soldiers Fort,234,2015,Dark Brown,1 +Pirates III,Soldiers Fort,234,2015,Dark Red,2 +Pirates III,Soldiers Fort,234,2015,Dark Tan,1 +Pirates III,Soldiers Fort,234,2015,Green,2 +Pirates III,Soldiers Fort,234,2015,Lime,1 +Pirates III,Soldiers Fort,234,2015,Medium Blue,1 +Pirates III,Soldiers Fort,234,2015,Medium Dark Flesh,1 +Pirates III,Soldiers Fort,234,2015,Pearl Dark Gray,1 +Pirates III,Soldiers Fort,234,2015,Pearl Gold,4 +Pirates III,Soldiers Fort,234,2015,Red,4 +Pirates III,Soldiers Fort,234,2015,Reddish Brown,22 +Pirates III,Soldiers Fort,234,2015,Tan,2 +Pirates III,Treasure Island,181,2015,Blue,2 +Pirates III,Treasure Island,181,2015,Trans-Yellow,2 +Pirates III,Treasure Island,181,2015,Trans-Red,1 +Pirates III,Treasure Island,181,2015,Trans-Orange,1 +Pirates III,Treasure Island,181,2015,Trans-Light Blue,1 +Pirates III,Treasure Island,181,2015,Trans-Green,2 +Pirates III,Treasure Island,181,2015,Tan,6 +Pirates III,Treasure Island,181,2015,Reddish Brown,16 +Pirates III,Treasure Island,181,2015,Red,4 +Pirates III,Treasure Island,181,2015,Pearl Gold,2 +Pirates III,Treasure Island,181,2015,Pearl Dark Gray,1 +Pirates III,Treasure Island,181,2015,Lime,1 +Pirates III,Treasure Island,181,2015,Light Bluish Gray,17 +Pirates III,Treasure Island,181,2015,Green,2 +Pirates III,Treasure Island,181,2015,Black,11 +Pirates III,Treasure Island,181,2015,Yellow,4 +Pirates III,Treasure Island,181,2015,Dark Blue,1 +Pirates III,Treasure Island,181,2015,Dark Tan,1 +Pirates III,Treasure Island,181,2015,Dark Bluish Gray,18 +Pirates III,Treasure Island,181,2015,Dark Brown,2 +Pirates III,Treasure Island,181,2015,Dark Green,3 +Pirates III,Treasure Island,181,2015,White,16 +Pirates III,Soldiers Outpost,164,2015,White,14 +Pirates III,Soldiers Outpost,164,2015,Trans-Yellow,2 +Pirates III,Soldiers Outpost,164,2015,Trans-Red,1 +Pirates III,Soldiers Outpost,164,2015,Trans-Green,2 +Pirates III,Soldiers Outpost,164,2015,Trans-Dark Blue,1 +Pirates III,Soldiers Outpost,164,2015,Tan,1 +Pirates III,Soldiers Outpost,164,2015,Reddish Brown,19 +Pirates III,Soldiers Outpost,164,2015,Lime,1 +Pirates III,Soldiers Outpost,164,2015,Pearl Gold,3 +Pirates III,Soldiers Outpost,164,2015,Red,6 +Pirates III,Soldiers Outpost,164,2015,Black,12 +Pirates III,Soldiers Outpost,164,2015,Blue,3 +Pirates III,Soldiers Outpost,164,2015,Bright Light Orange,1 +Pirates III,Soldiers Outpost,164,2015,Dark Bluish Gray,9 +Pirates III,Soldiers Outpost,164,2015,Dark Brown,4 +Pirates III,Soldiers Outpost,164,2015,Dark Red,1 +Pirates III,Soldiers Outpost,164,2015,Dark Tan,1 +Pirates III,Soldiers Outpost,164,2015,Flat Silver,1 +Pirates III,Soldiers Outpost,164,2015,Green,1 +Pirates III,Soldiers Outpost,164,2015,Light Bluish Gray,11 +Pirates III,Soldiers Outpost,164,2015,Yellow,3 +Pirates III,Soldiers Outpost,164,2015,Pearl Dark Gray,1 +Pirates III,Soldiers Outpost,164,2015,Trans-Orange,1 +Pirates III,Shipwreck Defense,84,2015,Dark Brown,3 +Pirates III,Shipwreck Defense,84,2015,Dark Tan,1 +Pirates III,Shipwreck Defense,84,2015,Flat Silver,1 +Pirates III,Shipwreck Defense,84,2015,Green,1 +Pirates III,Shipwreck Defense,84,2015,Light Bluish Gray,5 +Pirates III,Shipwreck Defense,84,2015,Pearl Dark Gray,1 +Pirates III,Shipwreck Defense,84,2015,Pearl Gold,1 +Pirates III,Shipwreck Defense,84,2015,Red,1 +Pirates III,Shipwreck Defense,84,2015,Reddish Brown,20 +Pirates III,Shipwreck Defense,84,2015,Tan,1 +Pirates III,Shipwreck Defense,84,2015,Trans-Green,1 +Pirates III,Shipwreck Defense,84,2015,Trans-Orange,1 +Pirates III,Shipwreck Defense,84,2015,Trans-Red,1 +Pirates III,Shipwreck Defense,84,2015,Trans-Yellow,1 +Pirates III,Shipwreck Defense,84,2015,White,4 +Pirates III,Shipwreck Defense,84,2015,Yellow,2 +Pirates III,Shipwreck Defense,84,2015,Dark Bluish Gray,3 +Pirates III,Shipwreck Defense,84,2015,Black,10 +Pirates III,Shipwreck Defense,84,2015,Blue,2 +Pirates III,Pirates Adventure,28,2015,White,1 +Pirates III,Pirates Adventure,28,2015,Trans-Yellow,1 +Pirates III,Pirates Adventure,28,2015,Trans-Clear,1 +Pirates III,Pirates Adventure,28,2015,Tan,2 +Pirates III,Pirates Adventure,28,2015,Reddish Brown,4 +Pirates III,Pirates Adventure,28,2015,Red,2 +Pirates III,Pirates Adventure,28,2015,Medium Blue,1 +Pirates III,Pirates Adventure,28,2015,Lime,1 +Pirates III,Pirates Adventure,28,2015,Light Bluish Gray,1 +Pirates III,Pirates Adventure,28,2015,Dark Bluish Gray,3 +Pirates III,Pirates Adventure,28,2015,Chrome Gold,5 +Pirates III,Pirates Adventure,28,2015,Black,2 +Pirates III,Pirates Adventure,28,2015,Yellow,1 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Dark Bluish Gray,26 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Yellow,3 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Blue,3 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Black,81 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,[No Color],3 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Pearl Dark Gray,1 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Pearl Gold,2 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Red,1 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Tan,10 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Dark Tan,5 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Trans-Black,1 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Trans-Clear,4 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Trans-Green,1 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Trans-Orange,4 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Dark Blue,1 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,White,13 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Reddish Brown,23 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Medium Dark Flesh,1 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Light Flesh,5 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Light Bluish Gray,20 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Flat Silver,1 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Dark Red,8 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Dark Orange,1 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Dark Green,2 +Pirates of the Caribbean,Queen Anne’s Revenge,1094,2011,Dark Brown,8 +Pirates of the Caribbean,Black Pearl,808,2011,[No Color],1 +Pirates of the Caribbean,Black Pearl,808,2011,Black,65 +Pirates of the Caribbean,Black Pearl,808,2011,Blue,3 +Pirates of the Caribbean,Black Pearl,808,2011,Dark Blue,3 +Pirates of the Caribbean,Black Pearl,808,2011,Dark Bluish Gray,36 +Pirates of the Caribbean,Black Pearl,808,2011,Dark Brown,9 +Pirates of the Caribbean,Black Pearl,808,2011,Flat Silver,1 +Pirates of the Caribbean,Black Pearl,808,2011,Light Bluish Gray,24 +Pirates of the Caribbean,Black Pearl,808,2011,Light Flesh,4 +Pirates of the Caribbean,Black Pearl,808,2011,Pearl Gold,3 +Pirates of the Caribbean,Black Pearl,808,2011,Red,2 +Pirates of the Caribbean,Black Pearl,808,2011,Reddish Brown,18 +Pirates of the Caribbean,Black Pearl,808,2011,Tan,4 +Pirates of the Caribbean,Black Pearl,808,2011,Trans-Clear,1 +Pirates of the Caribbean,Black Pearl,808,2011,White,2 +Pirates of the Caribbean,Black Pearl,808,2011,Trans-Neon Orange,1 +Pirates of the Caribbean,Black Pearl,808,2011,Pearl Dark Gray,1 +Pirates of the Caribbean,Black Pearl,808,2011,Trans-Orange,1 +Pirates of the Caribbean,Black Pearl,808,2011,Trans-Black,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Dark Orange,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Dark Blue,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Dark Bluish Gray,38 +Pirates of the Caribbean,Whitecap Bay,748,2011,Dark Brown,8 +Pirates of the Caribbean,Whitecap Bay,748,2011,Yellow,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,White,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Trans-Yellow,2 +Pirates of the Caribbean,Whitecap Bay,748,2011,Trans-Orange,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Trans-Clear,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Trans-Black,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Tan,7 +Pirates of the Caribbean,Whitecap Bay,748,2011,Sand Green,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Sand Blue,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Trans-Neon Orange,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Reddish Brown,40 +Pirates of the Caribbean,Whitecap Bay,748,2011,Dark Green,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Red,3 +Pirates of the Caribbean,Whitecap Bay,748,2011,Pearl Gold,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Light Flesh,7 +Pirates of the Caribbean,Whitecap Bay,748,2011,Light Bluish Gray,13 +Pirates of the Caribbean,Whitecap Bay,748,2011,[No Color],2 +Pirates of the Caribbean,Whitecap Bay,748,2011,Black,43 +Pirates of the Caribbean,Whitecap Bay,748,2011,Blue,2 +Pirates of the Caribbean,Whitecap Bay,748,2011,Bright Light Yellow,1 +Pirates of the Caribbean,Whitecap Bay,748,2011,Chrome Gold,5 +Pirates of the Caribbean,Whitecap Bay,748,2011,Dark Tan,8 +Pirates of the Caribbean,The London Escape,466,2011,Blue,1 +Pirates of the Caribbean,The London Escape,466,2011,Chrome Gold,5 +Pirates of the Caribbean,The London Escape,466,2011,Dark Blue,1 +Pirates of the Caribbean,The London Escape,466,2011,Dark Bluish Gray,16 +Pirates of the Caribbean,The London Escape,466,2011,Dark Brown,7 +Pirates of the Caribbean,The London Escape,466,2011,Dark Green,7 +Pirates of the Caribbean,The London Escape,466,2011,Dark Tan,2 +Pirates of the Caribbean,The London Escape,466,2011,Light Bluish Gray,27 +Pirates of the Caribbean,The London Escape,466,2011,Light Flesh,5 +Pirates of the Caribbean,The London Escape,466,2011,Pearl Gold,1 +Pirates of the Caribbean,The London Escape,466,2011,Red,3 +Pirates of the Caribbean,The London Escape,466,2011,Reddish Brown,28 +Pirates of the Caribbean,The London Escape,466,2011,Trans-Black,1 +Pirates of the Caribbean,The London Escape,466,2011,Trans-Neon Orange,1 +Pirates of the Caribbean,The London Escape,466,2011,Trans-Orange,1 +Pirates of the Caribbean,The London Escape,466,2011,Trans-Yellow,1 +Pirates of the Caribbean,The London Escape,466,2011,White,5 +Pirates of the Caribbean,The London Escape,466,2011,Yellow,1 +Pirates of the Caribbean,The London Escape,466,2011,Tan,1 +Pirates of the Caribbean,The London Escape,466,2011,Black,48 +Pirates of the Caribbean,The London Escape,466,2011,[No Color],2 +Pirates of the Caribbean,The Mill,366,2011,[No Color],1 +Pirates of the Caribbean,The Mill,366,2011,Black,10 +Pirates of the Caribbean,The Mill,366,2011,Blue,1 +Pirates of the Caribbean,The Mill,366,2011,Dark Blue,3 +Pirates of the Caribbean,The Mill,366,2011,Dark Brown,8 +Pirates of the Caribbean,The Mill,366,2011,Dark Green,1 +Pirates of the Caribbean,The Mill,366,2011,Dark Red,1 +Pirates of the Caribbean,The Mill,366,2011,Dark Tan,8 +Pirates of the Caribbean,The Mill,366,2011,Dark Bluish Gray,15 +Pirates of the Caribbean,The Mill,366,2011,Trans-Black,1 +Pirates of the Caribbean,The Mill,366,2011,Tan,2 +Pirates of the Caribbean,The Mill,366,2011,Sand Green,2 +Pirates of the Caribbean,The Mill,366,2011,Reddish Brown,16 +Pirates of the Caribbean,The Mill,366,2011,Red,3 +Pirates of the Caribbean,The Mill,366,2011,Pearl Gold,2 +Pirates of the Caribbean,The Mill,366,2011,Trans-Light Blue,1 +Pirates of the Caribbean,The Mill,366,2011,Light Flesh,3 +Pirates of the Caribbean,The Mill,366,2011,Light Bluish Gray,23 +Pirates of the Caribbean,The Mill,366,2011,Green,6 +Pirates of the Caribbean,The Mill,366,2011,Flat Silver,1 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Dark Tan,9 +Pirates of the Caribbean,The Cannibal Escape,279,2011,[No Color],1 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Black,11 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Blue,2 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Dark Blue,2 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Dark Bluish Gray,6 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Dark Brown,8 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Green,4 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Light Bluish Gray,5 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Light Flesh,2 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Lime,1 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Metallic Silver,1 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Red,3 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Reddish Brown,32 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Tan,11 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Trans-Black,1 +Pirates of the Caribbean,The Cannibal Escape,279,2011,Trans-Neon Orange,2 +Pirates of the Caribbean,The Cannibal Escape,279,2011,White,7 +Pirates of the Caribbean,Isla De Muerta,160,2011,Yellow,1 +Pirates of the Caribbean,Isla De Muerta,160,2011,Black,7 +Pirates of the Caribbean,Isla De Muerta,160,2011,Blue,3 +Pirates of the Caribbean,Isla De Muerta,160,2011,Bright Green,1 +Pirates of the Caribbean,Isla De Muerta,160,2011,Dark Brown,1 +Pirates of the Caribbean,Isla De Muerta,160,2011,Dark Blue,4 +Pirates of the Caribbean,Isla De Muerta,160,2011,White,4 +Pirates of the Caribbean,Isla De Muerta,160,2011,Trans-Yellow,1 +Pirates of the Caribbean,Isla De Muerta,160,2011,Trans-Neon Orange,1 +Pirates of the Caribbean,Isla De Muerta,160,2011,Trans-Light Blue,1 +Pirates of the Caribbean,Isla De Muerta,160,2011,Pearl Gold,3 +Pirates of the Caribbean,Isla De Muerta,160,2011,[No Color],1 +Pirates of the Caribbean,Isla De Muerta,160,2011,Reddish Brown,7 +Pirates of the Caribbean,Isla De Muerta,160,2011,Red,1 +Pirates of the Caribbean,Isla De Muerta,160,2011,Chrome Gold,5 +Pirates of the Caribbean,Isla De Muerta,160,2011,Metallic Gold,1 +Pirates of the Caribbean,Isla De Muerta,160,2011,Medium Dark Flesh,1 +Pirates of the Caribbean,Isla De Muerta,160,2011,Light Flesh,3 +Pirates of the Caribbean,Isla De Muerta,160,2011,Light Bluish Gray,16 +Pirates of the Caribbean,Isla De Muerta,160,2011,Dark Tan,6 +Pirates of the Caribbean,Isla De Muerta,160,2011,Dark Red,2 +Pirates of the Caribbean,Isla De Muerta,160,2011,Dark Bluish Gray,11 +Pirates of the Caribbean,Fountain of Youth,127,2011,Trans-Light Blue,6 +Pirates of the Caribbean,Fountain of Youth,127,2011,Dark Brown,1 +Pirates of the Caribbean,Fountain of Youth,127,2011,Tan,2 +Pirates of the Caribbean,Fountain of Youth,127,2011,Reddish Brown,1 +Pirates of the Caribbean,Fountain of Youth,127,2011,Pearl Gold,1 +Pirates of the Caribbean,Fountain of Youth,127,2011,Light Flesh,3 +Pirates of the Caribbean,Fountain of Youth,127,2011,Light Bluish Gray,2 +Pirates of the Caribbean,Fountain of Youth,127,2011,Flat Silver,1 +Pirates of the Caribbean,Fountain of Youth,127,2011,Dark Tan,3 +Pirates of the Caribbean,Fountain of Youth,127,2011,Dark Green,9 +Pirates of the Caribbean,Fountain of Youth,127,2011,White,4 +Pirates of the Caribbean,Fountain of Youth,127,2011,Dark Bluish Gray,8 +Pirates of the Caribbean,Fountain of Youth,127,2011,Dark Blue,3 +Pirates of the Caribbean,Fountain of Youth,127,2011,Blue,4 +Pirates of the Caribbean,Fountain of Youth,127,2011,Black,9 +Pirates of the Caribbean,Fountain of Youth,127,2011,[No Color],2 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Tan,1 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Trans-Clear,2 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Trans-Neon Orange,1 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,White,4 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Dark Tan,3 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,[No Color],2 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Black,7 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Dark Blue,2 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Dark Bluish Gray,3 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Dark Brown,4 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Dark Red,1 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Light Bluish Gray,1 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Light Flesh,1 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Medium Dark Flesh,1 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Pearl Gold,6 +Pirates of the Caribbean,The Captain’s Cabin,94,2011,Reddish Brown,8 +Pirates of the Caribbean,Mini Black Pearl,47,2011,Trans-Yellow,1 +Pirates of the Caribbean,Mini Black Pearl,47,2011,Dark Tan,2 +Pirates of the Caribbean,Mini Black Pearl,47,2011,Black,13 +Pirates of the Caribbean,Mini Black Pearl,47,2011,Tan,2 +Pirates of the Caribbean,Mini Black Pearl,47,2011,Reddish Brown,2 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,White,2 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Trans-Neon Orange,1 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Reddish Brown,5 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Pearl Gold,1 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Medium Dark Flesh,1 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Red,2 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Light Flesh,3 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Dark Tan,1 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Dark Red,1 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Dark Brown,3 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Dark Bluish Gray,2 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Dark Blue,1 +Pirates of the Caribbean,Pirates of the Caribbean Battle Pack,30,2011,Black,5 +Pirates of the Caribbean,Jacks Boat,21,2011,Light Flesh,1 +Pirates of the Caribbean,Jacks Boat,21,2011,Reddish Brown,5 +Pirates of the Caribbean,Jacks Boat,21,2011,Tan,1 +Pirates of the Caribbean,Jacks Boat,21,2011,White,2 +Pirates of the Caribbean,Jacks Boat,21,2011,Trans-Black,1 +Pirates of the Caribbean,Jacks Boat,21,2011,Black,3 +Pirates of the Caribbean,Jacks Boat,21,2011,Dark Bluish Gray,2 +Pirates of the Caribbean,Jacks Boat,21,2011,Dark Brown,1 +Pirates of the Caribbean,Jack Sparrow,4,2011,Black,1 +Pirates of the Caribbean,Jack Sparrow,4,2011,Dark Blue,1 +Pirates of the Caribbean,Jack Sparrow,4,2011,Reddish Brown,1 +Pirates of the Caribbean,Jack Sparrow,4,2011,Light Flesh,1 +Pirates of the Caribbean,Voodoo Jack,4,2011,Tan,1 +Pirates of the Caribbean,Voodoo Jack,4,2011,Reddish Brown,1 +Pirates of the Caribbean,Voodoo Jack,4,2011,Dark Brown,1 +Pirates of the Caribbean,Voodoo Jack,4,2011,Black,1 +Pirates of the Caribbean,Silent Mary,2286,2017,Black,106 +Pirates of the Caribbean,Silent Mary,2286,2017,Blue,3 +Pirates of the Caribbean,Silent Mary,2286,2017,Dark Blue,1 +Pirates of the Caribbean,Silent Mary,2286,2017,Dark Bluish Gray,77 +Pirates of the Caribbean,Silent Mary,2286,2017,Dark Brown,17 +Pirates of the Caribbean,Silent Mary,2286,2017,Dark Green,1 +Pirates of the Caribbean,Silent Mary,2286,2017,Dark Orange,1 +Pirates of the Caribbean,Silent Mary,2286,2017,Dark Tan,29 +Pirates of the Caribbean,Silent Mary,2286,2017,Light Aqua,2 +Pirates of the Caribbean,Silent Mary,2286,2017,Light Bluish Gray,43 +Pirates of the Caribbean,Silent Mary,2286,2017,Light Flesh,3 +Pirates of the Caribbean,Silent Mary,2286,2017,Metallic Gold,2 +Pirates of the Caribbean,Silent Mary,2286,2017,Olive Green,6 +Pirates of the Caribbean,Silent Mary,2286,2017,Orange,1 +Pirates of the Caribbean,Silent Mary,2286,2017,Pearl Dark Gray,5 +Pirates of the Caribbean,Silent Mary,2286,2017,Pearl Gold,16 +Pirates of the Caribbean,Silent Mary,2286,2017,Red,7 +Pirates of the Caribbean,Silent Mary,2286,2017,Reddish Brown,36 +Pirates of the Caribbean,Silent Mary,2286,2017,Sand Green,4 +Pirates of the Caribbean,Silent Mary,2286,2017,Tan,3 +Pirates of the Caribbean,Silent Mary,2286,2017,Trans-Clear,7 +Pirates of the Caribbean,Silent Mary,2286,2017,Trans-Yellow,1 +Pirates of the Caribbean,Silent Mary,2286,2017,Unknown,1 +Pirates of the Caribbean,Silent Mary,2286,2017,White,5 +Pirates of the Caribbean,Silent Mary,2286,2017,Yellow,1 +Planet Series 2,Twin-pod Cloud Car & Bespin,78,2012,Blue,1 +Planet Series 2,Twin-pod Cloud Car & Bespin,78,2012,Black,9 +Planet Series 2,Twin-pod Cloud Car & Bespin,78,2012,Dark Bluish Gray,6 +Planet Series 2,Twin-pod Cloud Car & Bespin,78,2012,Light Bluish Gray,4 +Planet Series 2,Twin-pod Cloud Car & Bespin,78,2012,Light Flesh,1 +Planet Series 2,Twin-pod Cloud Car & Bespin,78,2012,Orange,8 +Planet Series 2,Twin-pod Cloud Car & Bespin,78,2012,Tan,1 +Planet Series 2,Twin-pod Cloud Car & Bespin,78,2012,Trans-Black,1 +Planet Series 2,Twin-pod Cloud Car & Bespin,78,2012,Trans-Light Blue,1 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Trans-Orange,1 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Black,8 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Dark Bluish Gray,4 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Dark Red,2 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Light Bluish Gray,8 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Light Flesh,1 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Metallic Silver,1 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Orange,2 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Sand Green,1 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Tan,2 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,Trans-Black,1 +Planet Series 2,X-wing Starfighter & Yavin 4,77,2012,White,9 +Planet Series 2,AT-ST & Endor,65,2012,Light Bluish Gray,20 +Planet Series 2,AT-ST & Endor,65,2012,Light Flesh,1 +Planet Series 2,AT-ST & Endor,65,2012,Olive Green,1 +Planet Series 2,AT-ST & Endor,65,2012,Tan,1 +Planet Series 2,AT-ST & Endor,65,2012,Blue,2 +Planet Series 2,AT-ST & Endor,65,2012,Dark Bluish Gray,5 +Planet Series 2,AT-ST & Endor,65,2012,Black,10 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Black,40 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Blue,3 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Dark Bluish Gray,28 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Flat Silver,11 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Light Bluish Gray,17 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Light Flesh,1 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Metallic Silver,1 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Pearl Dark Gray,1 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Pearl Gold,1 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Red,4 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Tan,1 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Trans-Clear,4 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Trans-Neon Orange,2 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Trans-Red,4 +Planet Series 3,"Darth Vader"" Transformation",290,2017,Trans-Yellow,2 +Planet Series 3,"Darth Vader"" Transformation",290,2017,White,4 +Planet Series 4,LEGO Star Wars Jedi Starfighter and Kamino,61,2013,Black,9 +Planet Series 4,LEGO Star Wars Jedi Starfighter and Kamino,61,2013,Dark Azure,1 +Planet Series 4,LEGO Star Wars Jedi Starfighter and Kamino,61,2013,Dark Bluish Gray,3 +Planet Series 4,LEGO Star Wars Jedi Starfighter and Kamino,61,2013,Dark Red,7 +Planet Series 4,LEGO Star Wars Jedi Starfighter and Kamino,61,2013,Flat Silver,1 +Planet Series 4,LEGO Star Wars Jedi Starfighter and Kamino,61,2013,Light Bluish Gray,3 +Planet Series 4,LEGO Star Wars Jedi Starfighter and Kamino,61,2013,Lime,2 +Planet Series 4,LEGO Star Wars Jedi Starfighter and Kamino,61,2013,Trans-Black,1 +Planet Series 4,LEGO Star Wars Jedi Starfighter and Kamino,61,2013,White,9 +Planet Series 4,LEGO Star Wars TIE Bomber and Asteroid Field,60,2013,Black,15 +Planet Series 4,LEGO Star Wars TIE Bomber and Asteroid Field,60,2013,Dark Bluish Gray,2 +Planet Series 4,LEGO Star Wars TIE Bomber and Asteroid Field,60,2013,Dark Tan,1 +Planet Series 4,LEGO Star Wars TIE Bomber and Asteroid Field,60,2013,Light Bluish Gray,15 +Planet Series 4,LEGO Star Wars TIE Bomber and Asteroid Field,60,2013,Trans-Clear,2 +Playhouse,Pretty Wishes Playhouse,229,1994,Light Green,2 +Playhouse,Pretty Wishes Playhouse,229,1994,Yellow,14 +Playhouse,Pretty Wishes Playhouse,229,1994,Black,3 +Playhouse,Pretty Wishes Playhouse,229,1994,Blue,12 +Playhouse,Pretty Wishes Playhouse,229,1994,Brown,3 +Playhouse,Pretty Wishes Playhouse,229,1994,Chrome Silver,1 +Playhouse,Pretty Wishes Playhouse,229,1994,Dark Gray,1 +Playhouse,Pretty Wishes Playhouse,229,1994,Dark Pink,13 +Playhouse,Pretty Wishes Playhouse,229,1994,Green,4 +Playhouse,Pretty Wishes Playhouse,229,1994,Light Gray,1 +Playhouse,Pretty Wishes Playhouse,229,1994,Light Violet,5 +Playhouse,Pretty Wishes Playhouse,229,1994,Light Yellow,8 +Playhouse,Pretty Wishes Playhouse,229,1994,Medium Green,7 +Playhouse,Pretty Wishes Playhouse,229,1994,Pink,10 +Playhouse,Pretty Wishes Playhouse,229,1994,Red,1 +Playhouse,Pretty Wishes Playhouse,229,1994,Trans-Clear,3 +Playhouse,Pretty Wishes Playhouse,229,1994,Unknown,4 +Playhouse,Pretty Wishes Playhouse,229,1994,White,18 +Playhouse,Pretty Playland,101,1994,Light Violet,4 +Playhouse,Pretty Playland,101,1994,Medium Green,2 +Playhouse,Pretty Playland,101,1994,Yellow,5 +Playhouse,Pretty Playland,101,1994,Pink,3 +Playhouse,Pretty Playland,101,1994,White,9 +Playhouse,Pretty Playland,101,1994,Black,1 +Playhouse,Pretty Playland,101,1994,Blue,8 +Playhouse,Pretty Playland,101,1994,Chrome Silver,1 +Playhouse,Pretty Playland,101,1994,Dark Pink,7 +Playhouse,Pretty Playland,101,1994,Green,8 +Playhouse,Pretty Playland,101,1994,Light Pink,1 +Playhouse,Pretty Playland,101,1994,Light Gray,1 +Playhouse,Love 'N' Lullabies,49,1994,White,5 +Playhouse,Love 'N' Lullabies,49,1994,Yellow,3 +Playhouse,Love 'N' Lullabies,49,1994,Dark Pink,7 +Playhouse,Love 'N' Lullabies,49,1994,Blue,7 +Playhouse,Love 'N' Lullabies,49,1994,Green,1 +Playhouse,Love 'N' Lullabies,49,1994,Light Green,3 +Playhouse,Love 'N' Lullabies,49,1994,Light Violet,3 +Playhouse,Love 'N' Lullabies,49,1994,Light Yellow,1 +Playhouse,Love 'N' Lullabies,49,1994,Chrome Silver,2 +Playhouse,Love 'N' Lullabies,49,1994,Pink,4 +Playhouse,Love 'N' Lullabies,49,1994,Red,1 +Playhouse,Sunshine Home,448,2008,Trans-Dark Blue,2 +Playhouse,Sunshine Home,448,2008,Trans-Dark Pink,4 +Playhouse,Sunshine Home,448,2008,Trans-Green,1 +Playhouse,Sunshine Home,448,2008,Trans-Light Blue,4 +Playhouse,Sunshine Home,448,2008,Trans-Medium Blue,1 +Playhouse,Sunshine Home,448,2008,Trans-Neon Orange,2 +Playhouse,Sunshine Home,448,2008,Trans-Orange,2 +Playhouse,Sunshine Home,448,2008,Trans-Red,3 +Playhouse,Sunshine Home,448,2008,Trans-Yellow,2 +Playhouse,Sunshine Home,448,2008,White,57 +Playhouse,Sunshine Home,448,2008,Yellow,4 +Playhouse,Sunshine Home,448,2008,[No Color],3 +Playhouse,Sunshine Home,448,2008,Black,11 +Playhouse,Sunshine Home,448,2008,Blue,1 +Playhouse,Sunshine Home,448,2008,Bright Green,2 +Playhouse,Sunshine Home,448,2008,Bright Light Blue,2 +Playhouse,Sunshine Home,448,2008,Bright Light Orange,1 +Playhouse,Sunshine Home,448,2008,Bright Pink,7 +Playhouse,Sunshine Home,448,2008,Dark Blue,1 +Playhouse,Sunshine Home,448,2008,Dark Bluish Gray,1 +Playhouse,Sunshine Home,448,2008,Dark Orange,2 +Playhouse,Sunshine Home,448,2008,Dark Pink,9 +Playhouse,Sunshine Home,448,2008,Dark Purple,1 +Playhouse,Sunshine Home,448,2008,Glitter Trans-Dark Pink,2 +Playhouse,Sunshine Home,448,2008,Green,3 +Playhouse,Sunshine Home,448,2008,Light Bluish Gray,7 +Playhouse,Sunshine Home,448,2008,Lime,9 +Playhouse,Sunshine Home,448,2008,Magenta,5 +Playhouse,Sunshine Home,448,2008,Medium Blue,1 +Playhouse,Sunshine Home,448,2008,Medium Orange,3 +Playhouse,Sunshine Home,448,2008,Metallic Gold,1 +Playhouse,Sunshine Home,448,2008,Metallic Silver,1 +Playhouse,Sunshine Home,448,2008,Orange,3 +Playhouse,Sunshine Home,448,2008,Pearl Gold,2 +Playhouse,Sunshine Home,448,2008,Red,3 +Playhouse,Sunshine Home,448,2008,Reddish Brown,3 +Playhouse,Sunshine Home,448,2008,Trans-Clear,2 +Playhouse,Playful Puppy,83,2008,Bright Light Orange,2 +Playhouse,Playful Puppy,83,2008,Bright Pink,1 +Playhouse,Playful Puppy,83,2008,Dark Orange,2 +Playhouse,Playful Puppy,83,2008,Dark Pink,2 +Playhouse,Playful Puppy,83,2008,Green,2 +Playhouse,Playful Puppy,83,2008,Lime,2 +Playhouse,Playful Puppy,83,2008,Magenta,1 +Playhouse,Playful Puppy,83,2008,Pearl Gold,1 +Playhouse,Playful Puppy,83,2008,Red,2 +Playhouse,Playful Puppy,83,2008,Trans-Light Blue,1 +Playhouse,Playful Puppy,83,2008,White,15 +Playsets,Battle of Metru Nui,871,2005,[No Color],1 +Playsets,Battle of Metru Nui,871,2005,Black,53 +Playsets,Battle of Metru Nui,871,2005,Blue,1 +Playsets,Battle of Metru Nui,871,2005,Bright Light Orange,3 +Playsets,Battle of Metru Nui,871,2005,Dark Blue,6 +Playsets,Battle of Metru Nui,871,2005,Dark Bluish Gray,46 +Playsets,Battle of Metru Nui,871,2005,Dark Flesh,1 +Playsets,Battle of Metru Nui,871,2005,Dark Green,1 +Playsets,Battle of Metru Nui,871,2005,Dark Red,29 +Playsets,Battle of Metru Nui,871,2005,Flat Silver,9 +Playsets,Battle of Metru Nui,871,2005,Glow In Dark Opaque,1 +Playsets,Battle of Metru Nui,871,2005,Green,1 +Playsets,Battle of Metru Nui,871,2005,Light Bluish Gray,16 +Playsets,Battle of Metru Nui,871,2005,Pearl Gold,1 +Playsets,Battle of Metru Nui,871,2005,Pearl Light Gray,5 +Playsets,Battle of Metru Nui,871,2005,Red,1 +Playsets,Battle of Metru Nui,871,2005,Tan,2 +Playsets,Battle of Metru Nui,871,2005,Trans-Neon Green,2 +Playsets,Battle of Metru Nui,871,2005,Trans-Red,1 +Playsets,Battle of Metru Nui,871,2005,White,2 +Playsets,Battle of Metru Nui,871,2005,Yellow,1 +Playsets,Tower of Toa,407,2005,[No Color],1 +Playsets,Tower of Toa,407,2005,Black,45 +Playsets,Tower of Toa,407,2005,Blue,1 +Playsets,Tower of Toa,407,2005,Dark Blue,4 +Playsets,Tower of Toa,407,2005,Dark Bluish Gray,33 +Playsets,Tower of Toa,407,2005,Dark Flesh,1 +Playsets,Tower of Toa,407,2005,Dark Green,1 +Playsets,Tower of Toa,407,2005,Dark Red,1 +Playsets,Tower of Toa,407,2005,Flat Dark Gold,1 +Playsets,Tower of Toa,407,2005,Flat Silver,10 +Playsets,Tower of Toa,407,2005,Green,1 +Playsets,Tower of Toa,407,2005,Light Bluish Gray,16 +Playsets,Tower of Toa,407,2005,Pearl Light Gray,1 +Playsets,Tower of Toa,407,2005,Red,2 +Playsets,Tower of Toa,407,2005,Trans-Neon Orange,4 +Playsets,Tower of Toa,407,2005,White,4 +Playsets,Visorak's Gate,330,2005,Dark Green,1 +Playsets,Visorak's Gate,330,2005,[No Color],1 +Playsets,Visorak's Gate,330,2005,Black,29 +Playsets,Visorak's Gate,330,2005,Blue,1 +Playsets,Visorak's Gate,330,2005,Dark Blue,4 +Playsets,Visorak's Gate,330,2005,Dark Bluish Gray,34 +Playsets,Visorak's Gate,330,2005,Dark Flesh,1 +Playsets,Visorak's Gate,330,2005,Yellow,1 +Playsets,Visorak's Gate,330,2005,Dark Red,1 +Playsets,Visorak's Gate,330,2005,Flat Silver,7 +Playsets,Visorak's Gate,330,2005,Green,1 +Playsets,Visorak's Gate,330,2005,Light Bluish Gray,11 +Playsets,Visorak's Gate,330,2005,Pearl Light Gray,1 +Playsets,Visorak's Gate,330,2005,Red,1 +Playsets,Visorak's Gate,330,2005,Trans-Neon Green,1 +Playsets,Visorak's Gate,330,2005,White,3 +Playsets,Visorak Battle Ram,190,2005,Black,22 +Playsets,Visorak Battle Ram,190,2005,Blue,1 +Playsets,Visorak Battle Ram,190,2005,Dark Blue,15 +Playsets,Visorak Battle Ram,190,2005,Dark Bluish Gray,11 +Playsets,Visorak Battle Ram,190,2005,Dark Flesh,1 +Playsets,Visorak Battle Ram,190,2005,Dark Green,1 +Playsets,Visorak Battle Ram,190,2005,Dark Red,1 +Playsets,Visorak Battle Ram,190,2005,Flat Dark Gold,2 +Playsets,Visorak Battle Ram,190,2005,Flat Silver,7 +Playsets,Visorak Battle Ram,190,2005,Green,1 +Playsets,Visorak Battle Ram,190,2005,Light Bluish Gray,6 +Playsets,Visorak Battle Ram,190,2005,Pearl Light Gray,6 +Playsets,Visorak Battle Ram,190,2005,Trans-Red,1 +Playsets,Visorak Battle Ram,190,2005,White,1 +Playsets,Visorak Battle Ram,190,2005,Red,2 +Playsets,Toa Terrain Crawler,603,2007,Blue,2 +Playsets,Toa Terrain Crawler,603,2007,Dark Bluish Gray,35 +Playsets,Toa Terrain Crawler,603,2007,Dark Red,1 +Playsets,Toa Terrain Crawler,603,2007,Flat Silver,1 +Playsets,Toa Terrain Crawler,603,2007,Glow In Dark Opaque,1 +Playsets,Toa Terrain Crawler,603,2007,Light Bluish Gray,20 +Playsets,Toa Terrain Crawler,603,2007,Pearl Dark Gray,2 +Playsets,Toa Terrain Crawler,603,2007,Pearl Light Gray,19 +Playsets,Toa Terrain Crawler,603,2007,Red,13 +Playsets,Toa Terrain Crawler,603,2007,Tan,1 +Playsets,Toa Terrain Crawler,603,2007,Trans-Light Blue,1 +Playsets,Toa Terrain Crawler,603,2007,Trans-Neon Orange,2 +Playsets,Toa Terrain Crawler,603,2007,Trans-Orange,1 +Playsets,Toa Terrain Crawler,603,2007,Trans-Red,3 +Playsets,Toa Terrain Crawler,603,2007,Trans-Yellow,1 +Playsets,Toa Terrain Crawler,603,2007,White,8 +Playsets,Toa Terrain Crawler,603,2007,Black,48 +Playsets,Toa Undersea Attack,357,2007,Trans-Orange,1 +Playsets,Toa Undersea Attack,357,2007,Red,5 +Playsets,Toa Undersea Attack,357,2007,Trans-Red,2 +Playsets,Toa Undersea Attack,357,2007,Trans-Yellow,1 +Playsets,Toa Undersea Attack,357,2007,White,2 +Playsets,Toa Undersea Attack,357,2007,Black,49 +Playsets,Toa Undersea Attack,357,2007,Blue,1 +Playsets,Toa Undersea Attack,357,2007,Dark Bluish Gray,19 +Playsets,Toa Undersea Attack,357,2007,Dark Red,2 +Playsets,Toa Undersea Attack,357,2007,Flat Silver,1 +Playsets,Toa Undersea Attack,357,2007,Light Bluish Gray,21 +Playsets,Toa Undersea Attack,357,2007,Pearl Light Gray,22 +Playsets,Barraki Deepsea Patrol,200,2007,Blue,1 +Playsets,Barraki Deepsea Patrol,200,2007,Dark Bluish Gray,9 +Playsets,Barraki Deepsea Patrol,200,2007,Dark Red,1 +Playsets,Barraki Deepsea Patrol,200,2007,Glow In Dark Opaque,1 +Playsets,Barraki Deepsea Patrol,200,2007,Light Bluish Gray,11 +Playsets,Barraki Deepsea Patrol,200,2007,Pearl Light Gray,17 +Playsets,Barraki Deepsea Patrol,200,2007,Red,5 +Playsets,Barraki Deepsea Patrol,200,2007,Trans-Black,2 +Playsets,Barraki Deepsea Patrol,200,2007,Trans-Light Blue,1 +Playsets,Barraki Deepsea Patrol,200,2007,Trans-Medium Blue,1 +Playsets,Barraki Deepsea Patrol,200,2007,Trans-Neon Orange,1 +Playsets,Barraki Deepsea Patrol,200,2007,Black,29 +Playsets,Barraki Deepsea Patrol,200,2007,Trans-Red,1 +Playsets,Barraki Deepsea Patrol,200,2007,Trans-Yellow,1 +Playsets,Barraki Deepsea Patrol,200,2007,White,4 +Playsets,Barraki Deepsea Patrol,200,2007,Trans-Orange,1 +Police,Police Heliport,173,1972,Black,14 +Police,Police Heliport,173,1972,Blue,15 +Police,Police Heliport,173,1972,Green,1 +Police,Police Heliport,173,1972,Light Gray,1 +Police,Police Heliport,173,1972,Red,1 +Police,Police Heliport,173,1972,Trans-Clear,4 +Police,Police Heliport,173,1972,White,16 +Police,Police Heliport,173,1972,Yellow,1 +Police,Police Helicopter,38,1977,Black,8 +Police,Police Helicopter,38,1977,Light Gray,5 +Police,Police Helicopter,38,1977,Red,1 +Police,Police Helicopter,38,1977,Trans-Clear,2 +Police,Police Helicopter,38,1977,White,3 +Police,Police Mobile Patrol,44,1978,Light Gray,3 +Police,Police Mobile Patrol,44,1978,Red,2 +Police,Police Mobile Patrol,44,1978,Trans-Clear,3 +Police,Police Mobile Patrol,44,1978,Trans-Dark Blue,1 +Police,Police Mobile Patrol,44,1978,White,11 +Police,Police Mobile Patrol,44,1978,Yellow,1 +Police,Police Mobile Patrol,44,1978,Black,6 +Police,Police Car,34,1978,Black,6 +Police,Police Car,34,1978,Light Gray,4 +Police,Police Car,34,1978,Trans-Clear,1 +Police,Police Car,34,1978,Trans-Dark Blue,1 +Police,Police Car,34,1978,White,8 +Police,Police Car,34,1978,Yellow,1 +Police,Police Patrol,23,1978,Black,6 +Police,Police Patrol,23,1978,Light Gray,1 +Police,Police Patrol,23,1978,Trans-Clear,2 +Police,Police Patrol,23,1978,Trans-Dark Blue,1 +Police,Police Patrol,23,1978,White,5 +Police,Police Patrol,23,1978,Yellow,1 +Police,Police Station,63,1984,Fabuland Brown,1 +Police,Police Station,63,1984,Black,2 +Police,Police Station,63,1984,Green,1 +Police,Police Station,63,1984,Blue,10 +Police,Police Station,63,1984,Red,5 +Police,Police Station,63,1984,White,3 +Police,Police Station,63,1984,Yellow,2 +Police,Police Car,12,1984,[No Color],1 +Police,Police Car,12,1984,Black,4 +Police,Police Car,12,1984,Blue,5 +Police,Police Car,12,1984,Yellow,1 +Police,Police Motorcycle,7,1984,White,1 +Police,Police Motorcycle,7,1984,Light Gray,1 +Police,Police Motorcycle,7,1984,Black,3 +Police,Police Motorcycle,7,1984,Blue,1 +Police,Police Motorcycle,7,1984,Red,1 +Police,Police Motorcycle,16,1985,Black,3 +Police,Police Motorcycle,16,1985,Blue,1 +Police,Police Motorcycle,16,1985,Light Gray,1 +Police,Police Motorcycle,16,1985,Red,2 +Police,Police Motorcycle,16,1985,White,4 +Police,Police Car,12,1985,[No Color],1 +Police,Police Car,12,1985,Black,4 +Police,Police Car,12,1985,Blue,5 +Police,Police Car,12,1985,Yellow,1 +Police,Command Post Central,277,1998,Red,6 +Police,Command Post Central,277,1998,Trans-Clear,1 +Police,Command Post Central,277,1998,Trans-Dark Blue,4 +Police,Command Post Central,277,1998,Trans-Green,5 +Police,Command Post Central,277,1998,Trans-Red,2 +Police,Command Post Central,277,1998,Trans-Yellow,2 +Police,Command Post Central,277,1998,White,33 +Police,Command Post Central,277,1998,Yellow,9 +Police,Command Post Central,277,1998,Black,37 +Police,Command Post Central,277,1998,Dark Gray,7 +Police,Command Post Central,277,1998,Green,4 +Police,Command Post Central,277,1998,Light Gray,27 +Police,Helicopter Transport,102,1998,Dark Gray,2 +Police,Helicopter Transport,102,1998,Light Gray,7 +Police,Helicopter Transport,102,1998,Red,3 +Police,Helicopter Transport,102,1998,Trans-Dark Blue,3 +Police,Helicopter Transport,102,1998,Trans-Green,4 +Police,Helicopter Transport,102,1998,Trans-Red,2 +Police,Helicopter Transport,102,1998,White,14 +Police,Helicopter Transport,102,1998,Yellow,1 +Police,Helicopter Transport,102,1998,Black,17 +Police,Helicopter Transport,102,1998,Chrome Silver,1 +Police,Chopper Cop,24,1998,Black,7 +Police,Chopper Cop,24,1998,Light Gray,3 +Police,Chopper Cop,24,1998,Trans-Dark Blue,1 +Police,Chopper Cop,24,1998,Trans-Green,1 +Police,Chopper Cop,24,1998,Trans-Red,1 +Police,Chopper Cop,24,1998,Trans-Yellow,2 +Police,Chopper Cop,24,1998,White,5 +Police,Chopper Cop,24,1998,Yellow,1 +Police,Police HQ,137,2001,Chrome Silver,2 +Police,Police HQ,137,2001,White,16 +Police,Police HQ,137,2001,Trans-Neon Orange,4 +Police,Police HQ,137,2001,Trans-Dark Blue,4 +Police,Police HQ,137,2001,Red,5 +Police,Police HQ,137,2001,Light Gray,12 +Police,Police HQ,137,2001,Green,1 +Police,Police HQ,137,2001,Dark Gray,9 +Police,Police HQ,137,2001,Black,16 +Police,Police HQ,137,2001,Blue,3 +Police,Police HQ,137,2001,[No Color],5 +Police,Bank Breakout,68,2001,[No Color],3 +Police,Bank Breakout,68,2001,Black,9 +Police,Bank Breakout,68,2001,Blue,2 +Police,Bank Breakout,68,2001,Dark Gray,3 +Police,Bank Breakout,68,2001,Green,5 +Police,Bank Breakout,68,2001,Light Gray,4 +Police,Bank Breakout,68,2001,Red,1 +Police,Bank Breakout,68,2001,Trans-Dark Blue,3 +Police,Bank Breakout,68,2001,Trans-Neon Orange,1 +Police,Bank Breakout,68,2001,White,9 +Police,Bank Breakout,68,2001,Yellow,1 +Police,Police Cruiser,23,2001,Dark Gray,2 +Police,Police Cruiser,23,2001,[No Color],1 +Police,Police Cruiser,23,2001,Black,3 +Police,Police Cruiser,23,2001,Chrome Silver,1 +Police,Police Cruiser,23,2001,Light Gray,1 +Police,Police Cruiser,23,2001,Red,1 +Police,Police Cruiser,23,2001,Trans-Dark Blue,1 +Police,Police Cruiser,23,2001,Trans-Neon Orange,1 +Police,Police Cruiser,23,2001,White,6 +Police,Police Copter,16,2001,[No Color],1 +Police,Police Copter,16,2001,White,3 +Police,Police Copter,16,2001,Unknown,1 +Police,Police Copter,16,2001,Trans-Dark Blue,1 +Police,Police Copter,16,2001,Light Gray,1 +Police,Police Copter,16,2001,Dark Gray,4 +Police,Police Copter,16,2001,Chrome Silver,1 +Police,Police Copter,16,2001,Black,4 +Police,Police Headquarters,291,2002,Trans-Red,2 +Police,Police Headquarters,291,2002,Trans-Yellow,2 +Police,Police Headquarters,291,2002,White,36 +Police,Police Headquarters,291,2002,Yellow,9 +Police,Police Headquarters,291,2002,Black,37 +Police,Police Headquarters,291,2002,Dark Gray,12 +Police,Police Headquarters,291,2002,Green,4 +Police,Police Headquarters,291,2002,Light Gray,27 +Police,Police Headquarters,291,2002,Red,6 +Police,Police Headquarters,291,2002,Trans-Clear,1 +Police,Police Headquarters,291,2002,Trans-Dark Blue,4 +Police,Police Headquarters,291,2002,Trans-Green,5 +Police,Air Police,24,2002,Black,7 +Police,Air Police,24,2002,Dark Gray,2 +Police,Air Police,24,2002,Light Gray,4 +Police,Air Police,24,2002,Trans-Green,1 +Police,Police HQ,422,2003,Trans-Red,4 +Police,Police HQ,422,2003,[No Color],1 +Police,Police HQ,422,2003,Black,45 +Police,Police HQ,422,2003,Blue,6 +Police,Police HQ,422,2003,Brown,1 +Police,Police HQ,422,2003,Chrome Gold,1 +Police,Police HQ,422,2003,Dark Blue,3 +Police,Police HQ,422,2003,Dark Gray,26 +Police,Police HQ,422,2003,Light Gray,33 +Police,Police HQ,422,2003,Medium Orange,2 +Police,Police HQ,422,2003,Trans-Black,4 +Police,Police HQ,422,2003,Trans-Dark Blue,2 +Police,Police HQ,422,2003,Trans-Yellow,3 +Police,Police HQ,422,2003,White,46 +Police,Police HQ,422,2003,Yellow,4 +Police,Surveillance Truck,260,2003,Yellow,2 +Police,Surveillance Truck,260,2003,Trans-Black,3 +Police,Surveillance Truck,260,2003,Light Gray,17 +Police,Surveillance Truck,260,2003,Flat Silver,1 +Police,Surveillance Truck,260,2003,Dark Gray,16 +Police,Surveillance Truck,260,2003,Dark Blue,1 +Police,Surveillance Truck,260,2003,Blue,5 +Police,Surveillance Truck,260,2003,Black,29 +Police,Surveillance Truck,260,2003,Trans-Dark Blue,1 +Police,Surveillance Truck,260,2003,Trans-Red,2 +Police,Surveillance Truck,260,2003,Trans-Yellow,2 +Police,Surveillance Truck,260,2003,White,31 +Police,Armored Car Action,179,2003,Trans-Yellow,2 +Police,Armored Car Action,179,2003,Dark Gray,15 +Police,Armored Car Action,179,2003,Green,1 +Police,Armored Car Action,179,2003,Light Gray,16 +Police,Armored Car Action,179,2003,Trans-Black,2 +Police,Armored Car Action,179,2003,Blue,5 +Police,Armored Car Action,179,2003,Trans-Dark Blue,2 +Police,Armored Car Action,179,2003,Trans-Green,1 +Police,Armored Car Action,179,2003,Trans-Red,2 +Police,Armored Car Action,179,2003,Chrome Gold,1 +Police,Armored Car Action,179,2003,Dark Blue,3 +Police,Armored Car Action,179,2003,White,14 +Police,Armored Car Action,179,2003,Black,30 +Police,Armored Car Action,179,2003,Yellow,2 +Police,Highway Patrol & Undercover Van,153,2003,Trans-Dark Blue,1 +Police,Highway Patrol & Undercover Van,153,2003,Trans-Yellow,2 +Police,Highway Patrol & Undercover Van,153,2003,White,11 +Police,Highway Patrol & Undercover Van,153,2003,Yellow,2 +Police,Highway Patrol & Undercover Van,153,2003,Dark Blue,1 +Police,Highway Patrol & Undercover Van,153,2003,Dark Gray,11 +Police,Highway Patrol & Undercover Van,153,2003,Light Gray,15 +Police,Highway Patrol & Undercover Van,153,2003,Trans-Black,2 +Police,Highway Patrol & Undercover Van,153,2003,[No Color],1 +Police,Highway Patrol & Undercover Van,153,2003,Black,28 +Police,Highway Patrol & Undercover Van,153,2003,Blue,1 +Police,Highway Patrol & Undercover Van,153,2003,Trans-Red,3 +Police,Helicopter,87,2003,Tan,1 +Police,Helicopter,87,2003,Trans-Black,2 +Police,Helicopter,87,2003,Trans-Dark Blue,1 +Police,Helicopter,87,2003,Trans-Red,2 +Police,Helicopter,87,2003,White,12 +Police,Helicopter,87,2003,Yellow,1 +Police,Helicopter,87,2003,[No Color],1 +Police,Helicopter,87,2003,Black,22 +Police,Helicopter,87,2003,Dark Gray,5 +Police,Helicopter,87,2003,Light Gray,8 +Police,Turbo-Charged Police Boat,54,2003,Black,5 +Police,Turbo-Charged Police Boat,54,2003,[No Color],2 +Police,Turbo-Charged Police Boat,54,2003,Blue,4 +Police,Turbo-Charged Police Boat,54,2003,Dark Bluish Gray,2 +Police,Turbo-Charged Police Boat,54,2003,Light Bluish Gray,1 +Police,Turbo-Charged Police Boat,54,2003,Red,1 +Police,Turbo-Charged Police Boat,54,2003,Trans-Dark Blue,3 +Police,Turbo-Charged Police Boat,54,2003,Trans-Green,1 +Police,Turbo-Charged Police Boat,54,2003,Trans-Red,1 +Police,Turbo-Charged Police Boat,54,2003,Trans-Yellow,1 +Police,Turbo-Charged Police Boat,54,2003,White,15 +Police,Turbo-Charged Police Boat,54,2003,Yellow,1 +Police,Squad Car,51,2003,Blue,4 +Police,Squad Car,51,2003,Black,11 +Police,Squad Car,51,2003,Dark Blue,1 +Police,Squad Car,51,2003,Dark Gray,1 +Police,Squad Car,51,2003,Light Gray,5 +Police,Squad Car,51,2003,Trans-Black,1 +Police,Squad Car,51,2003,Trans-Dark Blue,1 +Police,Squad Car,51,2003,Trans-Red,2 +Police,Squad Car,51,2003,Trans-Yellow,1 +Police,Squad Car,51,2003,White,5 +Police,Squad Car,51,2003,Yellow,1 +Police,Speedy Police Car,25,2003,[No Color],1 +Police,Speedy Police Car,25,2003,Dark Bluish Gray,2 +Police,Speedy Police Car,25,2003,Light Bluish Gray,2 +Police,Speedy Police Car,25,2003,Trans-Dark Blue,2 +Police,Speedy Police Car,25,2003,White,9 +Police,Speedy Police Car,25,2003,Black,1 +Police,Police Motorcycle,12,2003,Unknown,1 +Police,Police Motorcycle,12,2003,Trans-Dark Blue,1 +Police,Police Motorcycle,12,2003,Light Gray,1 +Police,Police Motorcycle,12,2003,Dark Gray,1 +Police,Police Motorcycle,12,2003,Chrome Silver,1 +Police,Police Motorcycle,12,2003,Black,2 +Police,Police Motorcycle,12,2003,White,3 +Police,Police Station [Lighted Figure],593,2005,Black,47 +Police,Police Station [Lighted Figure],593,2005,Trans-Dark Blue,4 +Police,Police Station [Lighted Figure],593,2005,Trans-Red,3 +Police,Police Station [Lighted Figure],593,2005,Trans-Yellow,5 +Police,Police Station [Lighted Figure],593,2005,White,68 +Police,Police Station [Lighted Figure],593,2005,Yellow,7 +Police,Police Station [Lighted Figure],593,2005,Reddish Brown,1 +Police,Police Station [Lighted Figure],593,2005,Trans-Clear,1 +Police,Police Station [Lighted Figure],593,2005,Trans-Black,6 +Police,Police Station [Lighted Figure],593,2005,Tan,1 +Police,Police Station [Lighted Figure],593,2005,Red,1 +Police,Police Station [Lighted Figure],593,2005,Trans-Green,2 +Police,Police Station [Lighted Figure],593,2005,Light Bluish Gray,15 +Police,Police Station [Lighted Figure],593,2005,Dark Bluish Gray,34 +Police,Police Station [Lighted Figure],593,2005,Blue,3 +Police,"Prisoner Transport, Black Logo",99,2005,Light Bluish Gray,4 +Police,"Prisoner Transport, Black Logo",99,2005,[No Color],1 +Police,"Prisoner Transport, Black Logo",99,2005,Black,8 +Police,"Prisoner Transport, Black Logo",99,2005,Blue,1 +Police,"Prisoner Transport, Black Logo",99,2005,Dark Bluish Gray,10 +Police,"Prisoner Transport, Black Logo",99,2005,Red,1 +Police,"Prisoner Transport, Black Logo",99,2005,Trans-Black,2 +Police,"Prisoner Transport, Black Logo",99,2005,Trans-Dark Blue,1 +Police,"Prisoner Transport, Black Logo",99,2005,Trans-Red,1 +Police,"Prisoner Transport, Black Logo",99,2005,Trans-Yellow,2 +Police,"Prisoner Transport, Black Logo",99,2005,White,17 +Police,"Prisoner Transport, Black Logo",99,2005,Yellow,4 +Police,"Police Car, Black Logo",59,2005,Black,9 +Police,"Police Car, Black Logo",59,2005,Blue,1 +Police,"Police Car, Black Logo",59,2005,Dark Bluish Gray,4 +Police,"Police Car, Black Logo",59,2005,Light Bluish Gray,1 +Police,"Police Car, Black Logo",59,2005,Trans-Black,1 +Police,"Police Car, Black Logo",59,2005,Trans-Dark Blue,1 +Police,"Police Car, Black Logo",59,2005,Yellow,1 +Police,"Police Car, Black Logo",59,2005,Trans-Red,1 +Police,"Police Car, Black Logo",59,2005,Trans-Yellow,1 +Police,"Police Car, Black Logo",59,2005,White,15 +Police,"Police Motorcycle, Black Logo",28,2005,Trans-Red,1 +Police,"Police Motorcycle, Black Logo",28,2005,Trans-Yellow,1 +Police,"Police Motorcycle, Black Logo",28,2005,White,7 +Police,"Police Motorcycle, Black Logo",28,2005,Yellow,1 +Police,"Police Motorcycle, Black Logo",28,2005,[No Color],1 +Police,"Police Motorcycle, Black Logo",28,2005,Black,4 +Police,"Police Motorcycle, Black Logo",28,2005,Dark Bluish Gray,1 +Police,"Police Motorcycle, Black Logo",28,2005,Light Bluish Gray,2 +Police,"Police Motorcycle, Black Logo",28,2005,Trans-Black,1 +Police,"Police Motorcycle, Black Logo",28,2005,Trans-Dark Blue,1 +Police,Police Jet Ski,22,2005,Trans-Dark Blue,2 +Police,Police Jet Ski,22,2005,Light Bluish Gray,1 +Police,Police Jet Ski,22,2005,Black,9 +Police,Police Jet Ski,22,2005,Yellow,2 +Police,Police Jet Ski,22,2005,White,4 +Police,Police Motorcycle,18,2005,White,7 +Police,Police Motorcycle,18,2005,Trans-Yellow,1 +Police,Police Motorcycle,18,2005,Black,3 +Police,Police Motorcycle,18,2005,Trans-Red,1 +Police,Police Motorcycle,18,2005,Trans-Dark Blue,1 +Police,Police Motorcycle,18,2005,Dark Bluish Gray,1 +Police,Police Station,893,2017,Bright Light Blue,2 +Police,Police Station,893,2017,Blue,31 +Police,Police Station,893,2017,Black,58 +Police,Police Station,893,2017,Dark Orange,3 +Police,Police Station,893,2017,Dark Blue,3 +Police,Police Station,893,2017,Dark Bluish Gray,30 +Police,Police Station,893,2017,Green,1 +Police,Police Station,893,2017,Light Bluish Gray,66 +Police,Police Station,893,2017,Medium Dark Flesh,1 +Police,Police Station,893,2017,Orange,1 +Police,Police Station,893,2017,Pearl Dark Gray,2 +Police,Police Station,893,2017,Red,19 +Police,Police Station,893,2017,Reddish Brown,1 +Police,Police Station,893,2017,Tan,6 +Police,Police Station,893,2017,Trans-Black,4 +Police,Police Station,893,2017,Trans-Dark Blue,3 +Police,Police Station,893,2017,Trans-Green,2 +Police,Police Station,893,2017,Trans-Light Blue,7 +Police,Police Station,893,2017,Trans-Orange,2 +Police,Police Station,893,2017,Trans-Red,3 +Police,Police Station,893,2017,Trans-Yellow,3 +Police,Police Station,893,2017,White,72 +Police,Police Station,893,2017,Yellow,25 +Police,Bulldozer Break-In,558,2017,Trans-Green,2 +Police,Bulldozer Break-In,558,2017,Trans-Light Blue,5 +Police,Bulldozer Break-In,558,2017,Trans-Orange,1 +Police,Bulldozer Break-In,558,2017,Trans-Red,5 +Police,Bulldozer Break-In,558,2017,White,32 +Police,Bulldozer Break-In,558,2017,Yellow,11 +Police,Bulldozer Break-In,558,2017,Trans-Yellow,3 +Police,Bulldozer Break-In,558,2017,Black,31 +Police,Bulldozer Break-In,558,2017,Blue,15 +Police,Bulldozer Break-In,558,2017,Bright Light Blue,1 +Police,Bulldozer Break-In,558,2017,Dark Blue,4 +Police,Bulldozer Break-In,558,2017,Dark Bluish Gray,39 +Police,Bulldozer Break-In,558,2017,Dark Green,2 +Police,Bulldozer Break-In,558,2017,Dark Tan,2 +Police,Bulldozer Break-In,558,2017,Green,9 +Police,Bulldozer Break-In,558,2017,Light Bluish Gray,57 +Police,Bulldozer Break-In,558,2017,Medium Dark Flesh,1 +Police,Bulldozer Break-In,558,2017,Orange,1 +Police,Bulldozer Break-In,558,2017,Pearl Gold,1 +Police,Bulldozer Break-In,558,2017,Red,14 +Police,Bulldozer Break-In,558,2017,Reddish Brown,4 +Police,Bulldozer Break-In,558,2017,Tan,13 +Police,Bulldozer Break-In,558,2017,Trans-Black,1 +Police,Bulldozer Break-In,558,2017,Trans-Clear,1 +Police,Bulldozer Break-In,558,2017,Trans-Dark Blue,2 +Police,Auto Transport Heist,402,2017,Black,39 +Police,Auto Transport Heist,402,2017,Blue,14 +Police,Auto Transport Heist,402,2017,Bright Light Blue,2 +Police,Auto Transport Heist,402,2017,Dark Blue,2 +Police,Auto Transport Heist,402,2017,Dark Bluish Gray,31 +Police,Auto Transport Heist,402,2017,Dark Green,2 +Police,Auto Transport Heist,402,2017,Dark Red,1 +Police,Auto Transport Heist,402,2017,Dark Tan,1 +Police,Auto Transport Heist,402,2017,Green,1 +Police,Auto Transport Heist,402,2017,Light Bluish Gray,27 +Police,Auto Transport Heist,402,2017,Medium Dark Flesh,1 +Police,Auto Transport Heist,402,2017,Red,13 +Police,Auto Transport Heist,402,2017,Trans-Clear,2 +Police,Auto Transport Heist,402,2017,Reddish Brown,1 +Police,Auto Transport Heist,402,2017,Tan,3 +Police,Auto Transport Heist,402,2017,Trans-Dark Blue,3 +Police,Auto Transport Heist,402,2017,Trans-Light Blue,3 +Police,Auto Transport Heist,402,2017,Trans-Orange,2 +Police,Auto Transport Heist,402,2017,Trans-Red,2 +Police,Auto Transport Heist,402,2017,Trans-Yellow,2 +Police,Auto Transport Heist,402,2017,White,25 +Police,Auto Transport Heist,402,2017,Yellow,11 +Police,Auto Transport Heist,402,2017,Trans-Black,2 +Police,Mobile Command Center,373,2017,Dark Blue,3 +Police,Mobile Command Center,373,2017,Dark Bluish Gray,22 +Police,Mobile Command Center,373,2017,Dark Tan,1 +Police,Mobile Command Center,373,2017,Green,2 +Police,Mobile Command Center,373,2017,Light Bluish Gray,29 +Police,Mobile Command Center,373,2017,Medium Dark Flesh,1 +Police,Mobile Command Center,373,2017,Orange,1 +Police,Mobile Command Center,373,2017,Red,7 +Police,Mobile Command Center,373,2017,Dark Orange,1 +Police,Mobile Command Center,373,2017,Trans-Black,1 +Police,Mobile Command Center,373,2017,Trans-Dark Blue,3 +Police,Mobile Command Center,373,2017,Trans-Light Blue,1 +Police,Mobile Command Center,373,2017,Trans-Orange,1 +Police,Mobile Command Center,373,2017,Trans-Red,2 +Police,Mobile Command Center,373,2017,Trans-Yellow,2 +Police,Mobile Command Center,373,2017,White,49 +Police,Mobile Command Center,373,2017,Yellow,8 +Police,Mobile Command Center,373,2017,Black,31 +Police,Mobile Command Center,373,2017,Blue,18 +Police,Mobile Command Center,373,2017,Bright Light Blue,1 +Police,High-speed Chase,297,2017,Dark Tan,1 +Police,High-speed Chase,297,2017,Black,27 +Police,High-speed Chase,297,2017,Blue,9 +Police,High-speed Chase,297,2017,Bright Light Blue,1 +Police,High-speed Chase,297,2017,Dark Blue,4 +Police,High-speed Chase,297,2017,Dark Bluish Gray,16 +Police,High-speed Chase,297,2017,Dark Red,12 +Police,High-speed Chase,297,2017,Trans-Black,1 +Police,High-speed Chase,297,2017,Light Bluish Gray,18 +Police,High-speed Chase,297,2017,Orange,1 +Police,High-speed Chase,297,2017,Pearl Gold,1 +Police,High-speed Chase,297,2017,Red,2 +Police,High-speed Chase,297,2017,Reddish Brown,1 +Police,High-speed Chase,297,2017,Tan,1 +Police,High-speed Chase,297,2017,White,29 +Police,High-speed Chase,297,2017,Trans-Clear,1 +Police,High-speed Chase,297,2017,Trans-Red,3 +Police,High-speed Chase,297,2017,Yellow,11 +Police,High-speed Chase,297,2017,Trans-Yellow,1 +Police,High-speed Chase,297,2017,Trans-Dark Blue,3 +Police,High-speed Chase,297,2017,Trans-Green,1 +Police,High-speed Chase,297,2017,Trans-Light Blue,2 +Police,High-speed Chase,297,2017,Trans-Orange,1 +Police,High-speed Chase,297,2017,Green,3 +Police,Tow Truck Trouble,144,2017,Dark Blue,2 +Police,Tow Truck Trouble,144,2017,Trans-Red,2 +Police,Tow Truck Trouble,144,2017,White,6 +Police,Tow Truck Trouble,144,2017,Yellow,8 +Police,Tow Truck Trouble,144,2017,Bright Light Blue,1 +Police,Tow Truck Trouble,144,2017,Blue,4 +Police,Tow Truck Trouble,144,2017,Tan,1 +Police,Tow Truck Trouble,144,2017,Black,11 +Police,Tow Truck Trouble,144,2017,Light Bluish Gray,20 +Police,Tow Truck Trouble,144,2017,Dark Bluish Gray,8 +Police,Tow Truck Trouble,144,2017,Flat Silver,2 +Police,Tow Truck Trouble,144,2017,Green,1 +Police,Tow Truck Trouble,144,2017,Orange,1 +Police,Tow Truck Trouble,144,2017,Pearl Gold,2 +Police,Tow Truck Trouble,144,2017,Red,15 +Police,Tow Truck Trouble,144,2017,Trans-Black,2 +Police,Tow Truck Trouble,144,2017,Trans-Clear,1 +Police,Tow Truck Trouble,144,2017,Trans-Dark Blue,2 +Police,Tow Truck Trouble,144,2017,Trans-Orange,1 +Police,Money Transporter,137,2017,Black,9 +Police,Money Transporter,137,2017,Blue,2 +Police,Money Transporter,137,2017,Bright Light Blue,1 +Police,Money Transporter,137,2017,Dark Blue,2 +Police,Money Transporter,137,2017,Yellow,8 +Police,Money Transporter,137,2017,Trans-Yellow,1 +Police,Money Transporter,137,2017,White,17 +Police,Money Transporter,137,2017,Trans-Dark Blue,4 +Police,Money Transporter,137,2017,Trans-Red,2 +Police,Money Transporter,137,2017,Trans-Orange,1 +Police,Money Transporter,137,2017,Light Bluish Gray,13 +Police,Money Transporter,137,2017,Trans-Neon Green,1 +Police,Money Transporter,137,2017,Trans-Light Blue,1 +Police,Money Transporter,137,2017,Red,2 +Police,Money Transporter,137,2017,Green,2 +Police,Money Transporter,137,2017,Dark Tan,1 +Police,Money Transporter,137,2017,Pearl Gold,1 +Police,Money Transporter,137,2017,Dark Bluish Gray,7 +Police,Police Starter Set,80,2017,Trans-Red,1 +Police,Police Starter Set,80,2017,Trans-Yellow,1 +Police,Police Starter Set,80,2017,White,11 +Police,Police Starter Set,80,2017,Yellow,7 +Police,Police Starter Set,80,2017,Trans-Dark Blue,1 +Police,Police Starter Set,80,2017,Black,6 +Police,Police Starter Set,80,2017,Blue,2 +Police,Police Starter Set,80,2017,Bright Light Blue,2 +Police,Police Starter Set,80,2017,Dark Blue,2 +Police,Police Starter Set,80,2017,Dark Bluish Gray,4 +Police,Police Starter Set,80,2017,Dark Orange,1 +Police,Police Starter Set,80,2017,Dark Tan,2 +Police,Police Starter Set,80,2017,Green,3 +Police,Police Starter Set,80,2017,Light Bluish Gray,10 +Police,Police Starter Set,80,2017,Medium Dark Flesh,1 +Police,Police Starter Set,80,2017,Red,3 +Police,Police Starter Set,80,2017,Reddish Brown,2 +Police,Police Starter Set,80,2017,Trans-Light Blue,1 +Police,Police Car,50,2017,Dark Bluish Gray,1 +Police,Police Car,50,2017,Yellow,2 +Police,Police Car,50,2017,White,5 +Police,Police Car,50,2017,Trans-Yellow,1 +Police,Police Car,50,2017,Trans-Red,1 +Police,Police Car,50,2017,Trans-Dark Blue,2 +Police,Police Car,50,2017,Light Bluish Gray,5 +Police,Police Car,50,2017,Dark Blue,2 +Police,Police Car,50,2017,Bright Light Blue,1 +Police,Police Car,50,2017,Blue,4 +Police,Police Car,50,2017,Black,5 +Police,ATV Arrest,47,2017,Tan,1 +Police,ATV Arrest,47,2017,Dark Bluish Gray,3 +Police,ATV Arrest,47,2017,Dark Orange,1 +Police,ATV Arrest,47,2017,Pearl Gold,1 +Police,ATV Arrest,47,2017,Dark Blue,1 +Police,ATV Arrest,47,2017,Trans-Black,1 +Police,ATV Arrest,47,2017,Trans-Dark Blue,2 +Police,ATV Arrest,47,2017,White,5 +Police,ATV Arrest,47,2017,Yellow,2 +Police,ATV Arrest,47,2017,Bright Light Blue,1 +Police,ATV Arrest,47,2017,[No Color],1 +Police,ATV Arrest,47,2017,Light Bluish Gray,5 +Police,ATV Arrest,47,2017,Black,6 +Police,ATV Arrest,47,2017,Blue,2 +Police,ATV Arrest,47,2017,Red,2 +Police,Police Helicopter,44,2017,Black,4 +Police,Police Helicopter,44,2017,White,8 +Police,Police Helicopter,44,2017,Blue,3 +Police,Police Helicopter,44,2017,Trans-Black,1 +Police,Police Helicopter,44,2017,Yellow,1 +Police,Police Helicopter,44,2017,Dark Bluish Gray,5 +Police,Police Helicopter,44,2017,Light Bluish Gray,5 +Police,Police Helicopter,44,2017,Dark Blue,2 +Police,Police Helicopter,44,2017,Trans-Dark Blue,1 +Police,Police Helicopter,44,2017,Trans-Light Blue,1 +Police,Police Helicopter,44,2017,Trans-Red,1 +Police,Police Helicopter,44,2017,Trans-Yellow,1 +Police,Policeman and Crook Foil Pack,16,2017,Black,3 +Police,Policeman and Crook Foil Pack,16,2017,Bright Light Blue,1 +Police,Policeman and Crook Foil Pack,16,2017,Green,1 +Police,Policeman and Crook Foil Pack,16,2017,White,1 +Police,Policeman and Crook Foil Pack,16,2017,Yellow,2 +Police,Policeman and Crook Foil Pack,16,2017,Red,2 +Police,Policeman and Crook Foil Pack,16,2017,Light Bluish Gray,1 +Police,Policeman and Crook Foil Pack,16,2017,Dark Blue,2 +Police,Policeman and Crook Foil Pack,16,2017,Trans-Yellow,1 +Post Office,Boris Bulldog and Mailbox,4,1981,[No Color],1 +Post Office,Boris Bulldog and Mailbox,4,1981,Blue,2 +Post Office,Boris Bulldog and Mailbox,4,1981,White,1 +Post Office,Post Office,135,1982,Black,8 +Post Office,Post Office,135,1982,Blue,9 +Post Office,Post Office,135,1982,Light Gray,2 +Post Office,Post Office,135,1982,Red,15 +Post Office,Post Office,135,1982,Trans-Clear,1 +Post Office,Post Office,135,1982,Trans-Yellow,1 +Post Office,Post Office,135,1982,White,4 +Post Office,Post Office,135,1982,Yellow,13 +Post Office,Post Office Van,46,1982,Black,6 +Post Office,Post Office Van,46,1982,Light Gray,1 +Post Office,Post Office Van,46,1982,Red,4 +Post Office,Post Office Van,46,1982,Trans-Clear,1 +Post Office,Post Office Van,46,1982,Trans-Yellow,1 +Post Office,Post Office Van,46,1982,White,1 +Post Office,Post Office Van,46,1982,Yellow,17 +Post Office,Buzzy Bulldog's Mailbox,11,1985,[No Color],1 +Post Office,Buzzy Bulldog's Mailbox,11,1985,Black,1 +Post Office,Buzzy Bulldog's Mailbox,11,1985,Blue,2 +Post Office,Buzzy Bulldog's Mailbox,11,1985,Red,1 +Post Office,Buzzy Bulldog's Mailbox,11,1985,White,2 +Post Office,Buzzy Bulldog's Mailbox,11,1985,Yellow,3 +Post Office,Mail Carrier,14,1998,Black,2 +Post Office,Mail Carrier,14,1998,Red,3 +Post Office,Mail Carrier,14,1998,Trans-Clear,2 +Post Office,Mail Carrier,14,1998,White,1 +Post Office,Mail Carrier,14,1998,Yellow,4 +Power Functions,Power Functions Motor Set,10,2008,White,1 +Power Functions,Power Functions Motor Set,10,2008,Black,1 +Power Functions,Power Functions Motor Set,10,2008,Dark Bluish Gray,2 +Power Functions,Power Functions Motor Set,10,2008,Light Bluish Gray,5 +Power Functions,Power Functions Battery Box,1,2008,Light Bluish Gray,1 +Power Functions,Power Functions Extension Wire,1,2008,Dark Bluish Gray,1 +Power Functions,Power Functions IR Receiver,1,2008,Light Bluish Gray,1 +Power Functions,Power Functions IR Remote Control,1,2008,Light Bluish Gray,1 +Power Functions,Power Functions M-Motor,1,2008,Light Bluish Gray,1 +Power Functions,Power Functions XL-Motor,1,2008,Light Bluish Gray,1 +Power Functions,Power Functions L-Motor,1,2013,Light Bluish Gray,1 +Power Functions,Power Functions Servo Motor,1,2013,Light Bluish Gray,1 +Power Miners,Titanium Command Rig,708,2009,White,6 +Power Miners,Titanium Command Rig,708,2009,Yellow,5 +Power Miners,Titanium Command Rig,708,2009,Trans-Red,2 +Power Miners,Titanium Command Rig,708,2009,Trans-Orange,2 +Power Miners,Titanium Command Rig,708,2009,Trans-Neon Green,1 +Power Miners,Titanium Command Rig,708,2009,Trans-Dark Blue,1 +Power Miners,Titanium Command Rig,708,2009,Trans-Clear,4 +Power Miners,Titanium Command Rig,708,2009,Trans-Black,1 +Power Miners,Titanium Command Rig,708,2009,Tan,2 +Power Miners,Titanium Command Rig,708,2009,Reddish Brown,3 +Power Miners,Titanium Command Rig,708,2009,Red,3 +Power Miners,Titanium Command Rig,708,2009,Orange,6 +Power Miners,Titanium Command Rig,708,2009,Lime,16 +Power Miners,Titanium Command Rig,708,2009,Light Bluish Gray,37 +Power Miners,Titanium Command Rig,708,2009,Dark Bluish Gray,54 +Power Miners,Titanium Command Rig,708,2009,Blue,5 +Power Miners,Titanium Command Rig,708,2009,Black,57 +Power Miners,Titanium Command Rig,708,2009,[No Color],1 +Power Miners,Underground Mining Station,635,2009,White,6 +Power Miners,Underground Mining Station,635,2009,Yellow,7 +Power Miners,Underground Mining Station,635,2009,Black,52 +Power Miners,Underground Mining Station,635,2009,Blue,3 +Power Miners,Underground Mining Station,635,2009,Bright Green,1 +Power Miners,Underground Mining Station,635,2009,Dark Bluish Gray,39 +Power Miners,Underground Mining Station,635,2009,Light Bluish Gray,39 +Power Miners,Underground Mining Station,635,2009,Lime,21 +Power Miners,Underground Mining Station,635,2009,Orange,6 +Power Miners,Underground Mining Station,635,2009,Pearl Light Gray,1 +Power Miners,Underground Mining Station,635,2009,Red,2 +Power Miners,Underground Mining Station,635,2009,Reddish Brown,1 +Power Miners,Underground Mining Station,635,2009,Tan,2 +Power Miners,Underground Mining Station,635,2009,Trans-Black,1 +Power Miners,Underground Mining Station,635,2009,Trans-Clear,3 +Power Miners,Underground Mining Station,635,2009,Trans-Dark Blue,1 +Power Miners,Underground Mining Station,635,2009,Trans-Neon Green,4 +Power Miners,Underground Mining Station,635,2009,Trans-Orange,1 +Power Miners,Crystal Sweeper,479,2009,Trans-Neon Green,1 +Power Miners,Crystal Sweeper,479,2009,Blue,4 +Power Miners,Crystal Sweeper,479,2009,Trans-Orange,2 +Power Miners,Crystal Sweeper,479,2009,Black,29 +Power Miners,Crystal Sweeper,479,2009,Trans-Black,1 +Power Miners,Crystal Sweeper,479,2009,[No Color],1 +Power Miners,Crystal Sweeper,479,2009,Red,3 +Power Miners,Crystal Sweeper,479,2009,Trans-Clear,2 +Power Miners,Crystal Sweeper,479,2009,Trans-Dark Blue,3 +Power Miners,Crystal Sweeper,479,2009,Tan,2 +Power Miners,Crystal Sweeper,479,2009,Lime,23 +Power Miners,Crystal Sweeper,479,2009,Orange,9 +Power Miners,Crystal Sweeper,479,2009,Light Bluish Gray,27 +Power Miners,Crystal Sweeper,479,2009,Dark Bluish Gray,36 +Power Miners,Crystal Sweeper,479,2009,Trans-Red,4 +Power Miners,Crystal Sweeper,479,2009,White,11 +Power Miners,Crystal Sweeper,479,2009,Yellow,4 +Power Miners,Boulder Blaster,295,2009,Red,2 +Power Miners,Boulder Blaster,295,2009,Reddish Brown,3 +Power Miners,Boulder Blaster,295,2009,Trans-Clear,2 +Power Miners,Boulder Blaster,295,2009,Trans-Dark Blue,1 +Power Miners,Boulder Blaster,295,2009,Trans-Red,1 +Power Miners,Boulder Blaster,295,2009,White,4 +Power Miners,Boulder Blaster,295,2009,Yellow,3 +Power Miners,Boulder Blaster,295,2009,Light Bluish Gray,15 +Power Miners,Boulder Blaster,295,2009,Tan,3 +Power Miners,Boulder Blaster,295,2009,[No Color],1 +Power Miners,Boulder Blaster,295,2009,Black,15 +Power Miners,Boulder Blaster,295,2009,Blue,4 +Power Miners,Boulder Blaster,295,2009,Dark Bluish Gray,18 +Power Miners,Boulder Blaster,295,2009,Lime,18 +Power Miners,Boulder Blaster,295,2009,Orange,3 +Power Miners,Boulder Blaster,295,2009,Pearl Light Gray,1 +Power Miners,Cave Crusher,259,2009,Orange,3 +Power Miners,Cave Crusher,259,2009,Lime,15 +Power Miners,Cave Crusher,259,2009,Light Bluish Gray,14 +Power Miners,Cave Crusher,259,2009,Dark Bluish Gray,18 +Power Miners,Cave Crusher,259,2009,Blue,5 +Power Miners,Cave Crusher,259,2009,Red,3 +Power Miners,Cave Crusher,259,2009,Tan,1 +Power Miners,Cave Crusher,259,2009,Trans-Black,1 +Power Miners,Cave Crusher,259,2009,Black,25 +Power Miners,Cave Crusher,259,2009,Trans-Clear,2 +Power Miners,Cave Crusher,259,2009,Trans-Neon Orange,1 +Power Miners,Cave Crusher,259,2009,Trans-Orange,1 +Power Miners,Cave Crusher,259,2009,Trans-Red,3 +Power Miners,Cave Crusher,259,2009,White,12 +Power Miners,Cave Crusher,259,2009,Yellow,2 +Power Miners,Thunder Driller,237,2009,Light Bluish Gray,23 +Power Miners,Thunder Driller,237,2009,Yellow,4 +Power Miners,Thunder Driller,237,2009,Tan,3 +Power Miners,Thunder Driller,237,2009,Red,1 +Power Miners,Thunder Driller,237,2009,Orange,3 +Power Miners,Thunder Driller,237,2009,Lime,17 +Power Miners,Thunder Driller,237,2009,Dark Bluish Gray,18 +Power Miners,Thunder Driller,237,2009,Blue,4 +Power Miners,Thunder Driller,237,2009,Black,22 +Power Miners,Thunder Driller,237,2009,[No Color],1 +Power Miners,Thunder Driller,237,2009,Trans-Orange,3 +Power Miners,Thunder Driller,237,2009,White,3 +Power Miners,Thunder Driller,237,2009,Trans-Clear,1 +Power Miners,Rock Wrecker,224,2009,Trans-Neon Green,3 +Power Miners,Rock Wrecker,224,2009,Trans-Black,1 +Power Miners,Rock Wrecker,224,2009,Tan,2 +Power Miners,Rock Wrecker,224,2009,Red,6 +Power Miners,Rock Wrecker,224,2009,White,2 +Power Miners,Rock Wrecker,224,2009,Orange,1 +Power Miners,Rock Wrecker,224,2009,Lime,15 +Power Miners,Rock Wrecker,224,2009,Light Bluish Gray,21 +Power Miners,Rock Wrecker,224,2009,Dark Bluish Gray,20 +Power Miners,Rock Wrecker,224,2009,Blue,4 +Power Miners,Rock Wrecker,224,2009,Black,13 +Power Miners,Rock Wrecker,224,2009,Trans-Clear,4 +Power Miners,Rock Wrecker,224,2009,Yellow,1 +Power Miners,Rock Wrecker,224,2009,Trans-Orange,1 +Power Miners,Claw Digger,199,2009,Red,2 +Power Miners,Claw Digger,199,2009,Pearl Light Gray,1 +Power Miners,Claw Digger,199,2009,Orange,3 +Power Miners,Claw Digger,199,2009,Light Bluish Gray,14 +Power Miners,Claw Digger,199,2009,Lime,10 +Power Miners,Claw Digger,199,2009,Yellow,2 +Power Miners,Claw Digger,199,2009,Dark Bluish Gray,13 +Power Miners,Claw Digger,199,2009,Blue,5 +Power Miners,Claw Digger,199,2009,Black,15 +Power Miners,Claw Digger,199,2009,White,5 +Power Miners,Claw Digger,199,2009,Trans-Clear,2 +Power Miners,Claw Digger,199,2009,Trans-Neon Green,2 +Power Miners,Crystal King,169,2009,Red,2 +Power Miners,Crystal King,169,2009,Tan,1 +Power Miners,Crystal King,169,2009,Yellow,2 +Power Miners,Crystal King,169,2009,Black,7 +Power Miners,Crystal King,169,2009,Blue,3 +Power Miners,Crystal King,169,2009,Dark Bluish Gray,16 +Power Miners,Crystal King,169,2009,Dark Brown,1 +Power Miners,Crystal King,169,2009,Light Bluish Gray,20 +Power Miners,Crystal King,169,2009,Trans-Neon Green,4 +Power Miners,Crystal King,169,2009,Lime,3 +Power Miners,Crystal King,169,2009,Orange,1 +Power Miners,Granite Grinder,96,2009,Black,16 +Power Miners,Granite Grinder,96,2009,Blue,3 +Power Miners,Granite Grinder,96,2009,Light Bluish Gray,8 +Power Miners,Granite Grinder,96,2009,Lime,8 +Power Miners,Granite Grinder,96,2009,Orange,2 +Power Miners,Granite Grinder,96,2009,Red,2 +Power Miners,Granite Grinder,96,2009,Trans-Clear,2 +Power Miners,Granite Grinder,96,2009,Trans-Dark Blue,2 +Power Miners,Granite Grinder,96,2009,White,4 +Power Miners,Granite Grinder,96,2009,Yellow,1 +Power Miners,Granite Grinder,96,2009,Dark Bluish Gray,8 +Power Miners,Granite Grinder,96,2009,[No Color],1 +Power Miners,Mine Mech,69,2009,Black,8 +Power Miners,Mine Mech,69,2009,Lime,10 +Power Miners,Mine Mech,69,2009,Orange,3 +Power Miners,Mine Mech,69,2009,Red,1 +Power Miners,Mine Mech,69,2009,Trans-Green,2 +Power Miners,Mine Mech,69,2009,Trans-Orange,1 +Power Miners,Mine Mech,69,2009,Yellow,1 +Power Miners,Mine Mech,69,2009,White,2 +Power Miners,Mine Mech,69,2009,Blue,3 +Power Miners,Mine Mech,69,2009,Dark Bluish Gray,8 +Power Miners,Mine Mech,69,2009,Light Bluish Gray,4 +Power Miners,Stone Chopper,33,2009,Lime,3 +Power Miners,Stone Chopper,33,2009,Orange,2 +Power Miners,Stone Chopper,33,2009,Pearl Light Gray,1 +Power Miners,Stone Chopper,33,2009,Tan,1 +Power Miners,Stone Chopper,33,2009,Trans-Red,3 +Power Miners,Stone Chopper,33,2009,Yellow,1 +Power Miners,Stone Chopper,33,2009,Black,6 +Power Miners,Stone Chopper,33,2009,[No Color],1 +Power Miners,Stone Chopper,33,2009,Light Bluish Gray,5 +Power Miners,Stone Chopper,33,2009,Blue,2 +Power Miners,Stone Chopper,33,2009,Dark Bluish Gray,3 +Power Miners,Rock Hacker,29,2009,White,1 +Power Miners,Rock Hacker,29,2009,Yellow,1 +Power Miners,Rock Hacker,29,2009,Orange,1 +Power Miners,Rock Hacker,29,2009,Lime,5 +Power Miners,Rock Hacker,29,2009,Light Bluish Gray,2 +Power Miners,Rock Hacker,29,2009,Dark Bluish Gray,2 +Power Miners,Rock Hacker,29,2009,Trans-Dark Blue,1 +Power Miners,Rock Hacker,29,2009,Black,5 +Power Miners,Rock Hacker,29,2009,Blue,2 +Power Miners,Monster Launcher,15,2009,Dark Bluish Gray,5 +Power Miners,Monster Launcher,15,2009,Light Bluish Gray,2 +Power Miners,Monster Launcher,15,2009,Red,1 +Power Miners,Monster Launcher,15,2009,Trans-Neon Green,2 +Power Miners,{Power Miners Promotional Polybag},4,2009,Dark Bluish Gray,2 +Power Miners,{Power Miners Promotional Polybag},4,2009,Trans-Neon Green,1 +Power Miners,Power Miners Promotional Polybag,4,2009,Trans-Neon Green,1 +Power Miners,Power Miners Promotional Polybag,4,2009,Dark Bluish Gray,2 +Power Miners,Lavatraz,383,2010,Tan,1 +Power Miners,Lavatraz,383,2010,Trans-Clear,1 +Power Miners,Lavatraz,383,2010,Trans-Dark Blue,3 +Power Miners,Lavatraz,383,2010,Trans-Light Blue,2 +Power Miners,Lavatraz,383,2010,Trans-Orange,7 +Power Miners,Lavatraz,383,2010,Trans-Red,1 +Power Miners,Lavatraz,383,2010,White,1 +Power Miners,Lavatraz,383,2010,Yellow,3 +Power Miners,Lavatraz,383,2010,Blue,18 +Power Miners,Lavatraz,383,2010,Black,21 +Power Miners,Lavatraz,383,2010,Dark Bluish Gray,16 +Power Miners,Lavatraz,383,2010,Dark Brown,1 +Power Miners,Lavatraz,383,2010,Dark Tan,1 +Power Miners,Lavatraz,383,2010,Flat Silver,4 +Power Miners,Lavatraz,383,2010,Green,1 +Power Miners,Lavatraz,383,2010,Light Bluish Gray,24 +Power Miners,Lavatraz,383,2010,Lime,19 +Power Miners,Lavatraz,383,2010,Metallic Silver,3 +Power Miners,Lavatraz,383,2010,Orange,2 +Power Miners,Lavatraz,383,2010,Red,9 +Power Miners,Lavatraz,383,2010,Reddish Brown,5 +Power Miners,Claw Catcher,261,2010,[No Color],1 +Power Miners,Claw Catcher,261,2010,Black,10 +Power Miners,Claw Catcher,261,2010,Blue,9 +Power Miners,Claw Catcher,261,2010,Dark Bluish Gray,13 +Power Miners,Claw Catcher,261,2010,Dark Tan,1 +Power Miners,Claw Catcher,261,2010,Light Bluish Gray,32 +Power Miners,Claw Catcher,261,2010,Lime,19 +Power Miners,Claw Catcher,261,2010,Metallic Silver,3 +Power Miners,Claw Catcher,261,2010,Pearl Light Gray,4 +Power Miners,Claw Catcher,261,2010,Reddish Brown,1 +Power Miners,Claw Catcher,261,2010,Tan,1 +Power Miners,Claw Catcher,261,2010,Trans-Black,1 +Power Miners,Claw Catcher,261,2010,Trans-Clear,2 +Power Miners,Claw Catcher,261,2010,Trans-Light Blue,1 +Power Miners,Claw Catcher,261,2010,Trans-Orange,1 +Power Miners,Claw Catcher,261,2010,Trans-Red,4 +Power Miners,Claw Catcher,261,2010,Yellow,2 +Power Miners,Claw Catcher,261,2010,Red,3 +Power Miners,Magma Mech,185,2010,[No Color],1 +Power Miners,Magma Mech,185,2010,Black,11 +Power Miners,Magma Mech,185,2010,Blue,17 +Power Miners,Magma Mech,185,2010,Dark Bluish Gray,9 +Power Miners,Magma Mech,185,2010,Dark Tan,1 +Power Miners,Magma Mech,185,2010,Light Bluish Gray,17 +Power Miners,Magma Mech,185,2010,Lime,13 +Power Miners,Magma Mech,185,2010,Metallic Silver,4 +Power Miners,Magma Mech,185,2010,Pearl Light Gray,2 +Power Miners,Magma Mech,185,2010,Red,1 +Power Miners,Magma Mech,185,2010,Tan,1 +Power Miners,Magma Mech,185,2010,Trans-Clear,1 +Power Miners,Magma Mech,185,2010,Trans-Dark Blue,1 +Power Miners,Magma Mech,185,2010,Trans-Light Blue,1 +Power Miners,Magma Mech,185,2010,Trans-Orange,5 +Power Miners,Magma Mech,185,2010,Yellow,2 +Power Miners,Fire Blaster,69,2010,Red,1 +Power Miners,Fire Blaster,69,2010,Trans-Clear,1 +Power Miners,Fire Blaster,69,2010,Trans-Dark Blue,2 +Power Miners,Fire Blaster,69,2010,Trans-Light Blue,1 +Power Miners,Fire Blaster,69,2010,Trans-Neon Green,1 +Power Miners,Fire Blaster,69,2010,Trans-Orange,1 +Power Miners,Fire Blaster,69,2010,Trans-Yellow,2 +Power Miners,Fire Blaster,69,2010,Yellow,1 +Power Miners,Fire Blaster,69,2010,Black,4 +Power Miners,Fire Blaster,69,2010,Blue,3 +Power Miners,Fire Blaster,69,2010,Dark Bluish Gray,6 +Power Miners,Fire Blaster,69,2010,Light Bluish Gray,12 +Power Miners,Fire Blaster,69,2010,Lime,6 +Power Miners,Fire Blaster,69,2010,Metallic Silver,2 +Power Miners,Fire Blaster,69,2010,Pearl Light Gray,2 +Power Racers,Exo Raider,93,2003,Black,16 +Power Racers,Exo Raider,93,2003,Dark Bluish Gray,10 +Power Racers,Exo Raider,93,2003,Light Bluish Gray,5 +Power Racers,Exo Raider,93,2003,Red,6 +Power Racers,Exo Raider,93,2003,Trans-Light Blue,1 +Power Racers,Storming Enforcer,95,2011,Black,17 +Power Racers,Storming Enforcer,95,2011,Blue,8 +Power Racers,Storming Enforcer,95,2011,Dark Bluish Gray,7 +Power Racers,Storming Enforcer,95,2011,Light Bluish Gray,6 +Power Racers,Vicious Viper,95,2011,White,2 +Power Racers,Storming Enforcer,95,2011,Lime,1 +Power Racers,Storming Enforcer,95,2011,Tan,1 +Power Racers,Storming Enforcer,95,2011,Trans-Dark Blue,1 +Power Racers,Storming Enforcer,95,2011,Trans-Medium Blue,1 +Power Racers,Storming Enforcer,95,2011,Trans-Yellow,2 +Power Racers,Storming Enforcer,95,2011,White,12 +Power Racers,Vicious Viper,95,2011,Black,16 +Power Racers,Vicious Viper,95,2011,Dark Bluish Gray,8 +Power Racers,Vicious Viper,95,2011,Lime,14 +Power Racers,Vicious Viper,95,2011,Red,5 +Power Racers,Vicious Viper,95,2011,Trans-Yellow,1 +Power Racers,Vicious Viper,95,2011,Yellow,4 +Power Racers,Dragon Dueller,93,2011,Black,15 +Power Racers,Dragon Dueller,93,2011,Blue,1 +Power Racers,Dragon Dueller,93,2011,Dark Bluish Gray,3 +Power Racers,Dragon Dueller,93,2011,Light Bluish Gray,1 +Power Racers,Dragon Dueller,93,2011,Red,18 +Power Racers,Dragon Dueller,93,2011,Trans-Clear,1 +Power Racers,Dragon Dueller,93,2011,Trans-Red,1 +Power Racers,Dragon Dueller,93,2011,Yellow,3 +Power Racers,Dragon Dueller,93,2011,Lime,1 +Power Racers,Sting Striker,81,2011,Black,14 +Power Racers,Sting Striker,81,2011,Blue,1 +Power Racers,Sting Striker,81,2011,Dark Bluish Gray,3 +Power Racers,Sting Striker,81,2011,Light Bluish Gray,3 +Power Racers,Sting Striker,81,2011,Lime,1 +Power Racers,Sting Striker,81,2011,Pearl Light Gray,1 +Power Racers,Sting Striker,81,2011,White,2 +Power Racers,Sting Striker,81,2011,Yellow,12 +Prince of Persia,Battle of Alamut,821,2010,Black,22 +Prince of Persia,Battle of Alamut,821,2010,Blue,3 +Prince of Persia,Battle of Alamut,821,2010,Dark Blue,1 +Prince of Persia,Battle of Alamut,821,2010,Dark Bluish Gray,28 +Prince of Persia,Battle of Alamut,821,2010,Dark Brown,8 +Prince of Persia,Battle of Alamut,821,2010,Dark Red,3 +Prince of Persia,Battle of Alamut,821,2010,Dark Tan,3 +Prince of Persia,Battle of Alamut,821,2010,Green,1 +Prince of Persia,Battle of Alamut,821,2010,Light Bluish Gray,2 +Prince of Persia,Battle of Alamut,821,2010,Light Flesh,6 +Prince of Persia,Battle of Alamut,821,2010,Medium Dark Flesh,13 +Prince of Persia,Battle of Alamut,821,2010,Pearl Dark Gray,1 +Prince of Persia,Battle of Alamut,821,2010,Pearl Gold,13 +Prince of Persia,Battle of Alamut,821,2010,Pearl Light Gray,6 +Prince of Persia,Battle of Alamut,821,2010,Reddish Brown,15 +Prince of Persia,Battle of Alamut,821,2010,Tan,27 +Prince of Persia,Battle of Alamut,821,2010,Trans-Neon Orange,1 +Prince of Persia,Battle of Alamut,821,2010,Trans-Orange,1 +Prince of Persia,Battle of Alamut,821,2010,Trans-Red,1 +Prince of Persia,Battle of Alamut,821,2010,White,39 +Prince of Persia,Quest Against Time,506,2010,Dark Bluish Gray,40 +Prince of Persia,Quest Against Time,506,2010,Dark Brown,8 +Prince of Persia,Quest Against Time,506,2010,Dark Tan,3 +Prince of Persia,Quest Against Time,506,2010,White,5 +Prince of Persia,Quest Against Time,506,2010,Trans-Yellow,3 +Prince of Persia,Quest Against Time,506,2010,Trans-Neon Orange,2 +Prince of Persia,Quest Against Time,506,2010,Trans-Clear,1 +Prince of Persia,Quest Against Time,506,2010,Tan,11 +Prince of Persia,Quest Against Time,506,2010,Reddish Brown,4 +Prince of Persia,Quest Against Time,506,2010,Red,1 +Prince of Persia,Quest Against Time,506,2010,Pearl Light Gray,2 +Prince of Persia,Quest Against Time,506,2010,Light Bluish Gray,12 +Prince of Persia,Quest Against Time,506,2010,Pearl Gold,5 +Prince of Persia,Quest Against Time,506,2010,Medium Dark Flesh,4 +Prince of Persia,Quest Against Time,506,2010,Light Flesh,4 +Prince of Persia,Quest Against Time,506,2010,Black,22 +Prince of Persia,The Fight for the Dagger,259,2010,Dark Bluish Gray,2 +Prince of Persia,The Fight for the Dagger,259,2010,Dark Brown,6 +Prince of Persia,The Fight for the Dagger,259,2010,Dark Orange,1 +Prince of Persia,The Fight for the Dagger,259,2010,Dark Red,1 +Prince of Persia,The Fight for the Dagger,259,2010,Dark Tan,8 +Prince of Persia,The Fight for the Dagger,259,2010,Green,1 +Prince of Persia,The Fight for the Dagger,259,2010,Light Bluish Gray,4 +Prince of Persia,The Fight for the Dagger,259,2010,Light Flesh,4 +Prince of Persia,The Fight for the Dagger,259,2010,Medium Dark Flesh,2 +Prince of Persia,The Fight for the Dagger,259,2010,Pearl Light Gray,3 +Prince of Persia,The Fight for the Dagger,259,2010,Red,1 +Prince of Persia,The Fight for the Dagger,259,2010,Reddish Brown,12 +Prince of Persia,The Fight for the Dagger,259,2010,Tan,11 +Prince of Persia,The Fight for the Dagger,259,2010,Trans-Clear,1 +Prince of Persia,The Fight for the Dagger,259,2010,Trans-Green,1 +Prince of Persia,The Fight for the Dagger,259,2010,Trans-Neon Orange,1 +Prince of Persia,The Fight for the Dagger,259,2010,Trans-Red,1 +Prince of Persia,The Fight for the Dagger,259,2010,White,11 +Prince of Persia,The Fight for the Dagger,259,2010,Pearl Gold,7 +Prince of Persia,The Fight for the Dagger,259,2010,Black,17 +Prince of Persia,The Fight for the Dagger,259,2010,Bright Green,1 +Prince of Persia,The Ostrich Race,169,2010,Dark Bluish Gray,7 +Prince of Persia,The Ostrich Race,169,2010,Tan,13 +Prince of Persia,The Ostrich Race,169,2010,Reddish Brown,11 +Prince of Persia,The Ostrich Race,169,2010,Red,2 +Prince of Persia,The Ostrich Race,169,2010,Pearl Light Gray,2 +Prince of Persia,The Ostrich Race,169,2010,Medium Dark Flesh,1 +Prince of Persia,The Ostrich Race,169,2010,Pearl Gold,2 +Prince of Persia,The Ostrich Race,169,2010,Light Flesh,4 +Prince of Persia,The Ostrich Race,169,2010,Light Bluish Gray,3 +Prince of Persia,The Ostrich Race,169,2010,Green,1 +Prince of Persia,The Ostrich Race,169,2010,Dark Tan,10 +Prince of Persia,The Ostrich Race,169,2010,Dark Brown,2 +Prince of Persia,The Ostrich Race,169,2010,Black,7 +Prince of Persia,Desert Attack,57,2010,Black,9 +Prince of Persia,Desert Attack,57,2010,Dark Blue,2 +Prince of Persia,Desert Attack,57,2010,Dark Bluish Gray,3 +Prince of Persia,Desert Attack,57,2010,Dark Brown,4 +Prince of Persia,Desert Attack,57,2010,Dark Tan,3 +Prince of Persia,Desert Attack,57,2010,Flat Silver,1 +Prince of Persia,Desert Attack,57,2010,Light Flesh,3 +Prince of Persia,Desert Attack,57,2010,Light Bluish Gray,2 +Prince of Persia,Desert Attack,57,2010,Trans-Red,1 +Prince of Persia,Desert Attack,57,2010,Trans-Green,1 +Prince of Persia,Desert Attack,57,2010,Tan,7 +Prince of Persia,Desert Attack,57,2010,Speckle Black-Silver,1 +Prince of Persia,Desert Attack,57,2010,Sand Blue,1 +Prince of Persia,Desert Attack,57,2010,Reddish Brown,1 +Prince of Persia,Desert Attack,57,2010,Red,1 +Prince of Persia,Desert Attack,57,2010,Pearl Light Gray,2 +Prince of Persia,Desert Attack,57,2010,White,4 +Prince of Persia,Dagger Trap,52,2010,Tan,3 +Prince of Persia,Dagger Trap,52,2010,Reddish Brown,1 +Prince of Persia,Dagger Trap,52,2010,Black,6 +Prince of Persia,Dagger Trap,52,2010,Light Bluish Gray,2 +Prince of Persia,Dagger Trap,52,2010,Red,1 +Prince of Persia,Dagger Trap,52,2010,Pearl Gold,3 +Prince of Persia,Dagger Trap,52,2010,Medium Dark Flesh,1 +Prince of Persia,Dagger Trap,52,2010,White,4 +Prince of Persia,Dagger Trap,52,2010,Light Flesh,1 +Prince of Persia,Dagger Trap,52,2010,Green,1 +Prince of Persia,Dagger Trap,52,2010,Dark Tan,3 +Prince of Persia,Dagger Trap,52,2010,Dark Brown,2 +Prince of Persia,Dagger Trap,52,2010,Dark Bluish Gray,1 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Reddish Brown,21 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Red,12 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Light Bluish Gray,42 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Green,3 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Dark Red,3 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Dark Bluish Gray,39 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Chrome Antique Brass,1 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Blue,5 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Black,41 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,[No Color],1 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Sand Green,8 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Tan,29 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Trans-Clear,1 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Trans-Dark Blue,4 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Trans-Dark Pink,1 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Trans-Green,3 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Trans-Neon Green,3 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Trans-Neon Orange,3 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Trans-Purple,2 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Trans-Red,5 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,White,9 +Prisoner of Azkaban,Hogwarts Castle (2nd edition),902,2004,Yellow,1 +Prisoner of Azkaban,Shrieking Shack,450,2004,Black,23 +Prisoner of Azkaban,Shrieking Shack,450,2004,Blue,2 +Prisoner of Azkaban,Shrieking Shack,450,2004,Dark Bluish Gray,23 +Prisoner of Azkaban,Shrieking Shack,450,2004,Dark Green,2 +Prisoner of Azkaban,Shrieking Shack,450,2004,Dark Orange,9 +Prisoner of Azkaban,Shrieking Shack,450,2004,Dark Tan,1 +Prisoner of Azkaban,Shrieking Shack,450,2004,Earth Orange,1 +Prisoner of Azkaban,Shrieking Shack,450,2004,Green,2 +Prisoner of Azkaban,Shrieking Shack,450,2004,Light Bluish Gray,27 +Prisoner of Azkaban,Shrieking Shack,450,2004,Light Flesh,4 +Prisoner of Azkaban,Shrieking Shack,450,2004,Red,2 +Prisoner of Azkaban,Shrieking Shack,450,2004,Reddish Brown,18 +Prisoner of Azkaban,Shrieking Shack,450,2004,Sand Blue,2 +Prisoner of Azkaban,Shrieking Shack,450,2004,Sand Green,1 +Prisoner of Azkaban,Shrieking Shack,450,2004,Tan,11 +Prisoner of Azkaban,Shrieking Shack,450,2004,Trans-Clear,1 +Prisoner of Azkaban,Shrieking Shack,450,2004,Trans-Dark Blue,4 +Prisoner of Azkaban,Shrieking Shack,450,2004,Trans-Dark Pink,1 +Prisoner of Azkaban,Shrieking Shack,450,2004,Trans-Green,3 +Prisoner of Azkaban,Shrieking Shack,450,2004,Trans-Neon Green,1 +Prisoner of Azkaban,Shrieking Shack,450,2004,Trans-Neon Orange,4 +Prisoner of Azkaban,Shrieking Shack,450,2004,Trans-Red,1 +Prisoner of Azkaban,Shrieking Shack,450,2004,Trans-Yellow,1 +Prisoner of Azkaban,Shrieking Shack,450,2004,White,20 +Prisoner of Azkaban,Shrieking Shack,450,2004,Yellow,1 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Blue,1 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Chrome Antique Brass,1 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Dark Bluish Gray,16 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Green,1 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Light Bluish Gray,19 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Orange,2 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Red,2 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Reddish Brown,16 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Sand Green,5 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Tan,5 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Trans-Black,1 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Trans-Green,1 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Trans-Neon Green,1 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Trans-Neon Orange,2 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Trans-Yellow,1 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,White,1 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Yellow,4 +Prisoner of Azkaban,Hagrid's Hut (2nd edition),296,2004,Black,22 +Prisoner of Azkaban,Knight Bus,244,2004,Blue,1 +Prisoner of Azkaban,Knight Bus,244,2004,Dark Bluish Gray,4 +Prisoner of Azkaban,Knight Bus,244,2004,Dark Purple,27 +Prisoner of Azkaban,Knight Bus,244,2004,Green,1 +Prisoner of Azkaban,Knight Bus,244,2004,Light Bluish Gray,3 +Prisoner of Azkaban,Knight Bus,244,2004,Light Flesh,2 +Prisoner of Azkaban,Knight Bus,244,2004,Red,2 +Prisoner of Azkaban,Knight Bus,244,2004,Reddish Brown,2 +Prisoner of Azkaban,Knight Bus,244,2004,Tan,2 +Prisoner of Azkaban,Knight Bus,244,2004,Trans-Clear,4 +Prisoner of Azkaban,Knight Bus,244,2004,Trans-Neon Green,1 +Prisoner of Azkaban,Knight Bus,244,2004,Trans-Yellow,1 +Prisoner of Azkaban,Knight Bus,244,2004,White,6 +Prisoner of Azkaban,Knight Bus,244,2004,Black,24 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Black,13 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Light Bluish Gray,11 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Dark Orange,1 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Dark Bluish Gray,24 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Light Flesh,2 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Sand Green,7 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Tan,11 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Trans-Dark Blue,1 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Trans-Neon Green,1 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Trans-Neon Orange,1 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,White,1 +Prisoner of Azkaban,Sirius Black's Escape,192,2004,Reddish Brown,4 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,[No Color],1 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Black,16 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Blue,1 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Dark Bluish Gray,16 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Dark Green,2 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Dark Orange,2 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Glow In Dark Opaque,1 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Light Bluish Gray,7 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Light Flesh,2 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Orange,1 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Red,1 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Tan,7 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Reddish Brown,7 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Trans-Clear,2 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Trans-Dark Blue,2 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Trans-Green,1 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Trans-Neon Green,2 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Sand Green,8 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Trans-Neon Orange,2 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Trans-Purple,1 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Trans-Red,2 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Trans-Yellow,1 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,White,5 +Prisoner of Azkaban,Professor Lupin's Classroom,158,2004,Yellow,1 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Light Bluish Gray,9 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Orange,1 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Reddish Brown,5 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Sand Green,3 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Tan,11 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Trans-Neon Green,1 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Trans-Neon Orange,1 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Violet,1 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Light Flesh,1 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Black,10 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Dark Blue,1 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Dark Bluish Gray,14 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Glow In Dark Opaque,1 +Prisoner of Azkaban,Harry and the Marauder's Map,108,2004,Green,1 +Prisoner of Azkaban,Draco's Encounter with Buckbeak,37,2004,Sand Green,1 +Prisoner of Azkaban,Draco's Encounter with Buckbeak,37,2004,Tan,4 +Prisoner of Azkaban,Draco's Encounter with Buckbeak,37,2004,Bright Green,1 +Prisoner of Azkaban,Draco's Encounter with Buckbeak,37,2004,Black,2 +Prisoner of Azkaban,Draco's Encounter with Buckbeak,37,2004,Green,3 +Prisoner of Azkaban,Draco's Encounter with Buckbeak,37,2004,Dark Bluish Gray,7 +Prisoner of Azkaban,Draco's Encounter with Buckbeak,37,2004,Light Bluish Gray,6 +Prisoner of Azkaban,Draco's Encounter with Buckbeak,37,2004,Light Flesh,1 +Prisoner of Azkaban,Draco's Encounter with Buckbeak,37,2004,Orange,1 +Prisoner of Azkaban,Draco's Encounter with Buckbeak,37,2004,Reddish Brown,3 +Promotional,Astronaut,5,2010,Orange,3 +Promotional,Astronaut,5,2010,Trans-Black,1 +Promotional,Astronaut,5,2010,Yellow,1 +Promotional,RIO 2016 MASCOTS,196,2016,Lime,5 +Promotional,RIO 2016 MASCOTS,196,2016,Light Bluish Gray,6 +Promotional,RIO 2016 MASCOTS,196,2016,Green,13 +Promotional,RIO 2016 MASCOTS,196,2016,Dark Bluish Gray,3 +Promotional,RIO 2016 MASCOTS,196,2016,Bright Light Orange,1 +Promotional,RIO 2016 MASCOTS,196,2016,Blue,1 +Promotional,RIO 2016 MASCOTS,196,2016,Black,1 +Promotional,RIO 2016 MASCOTS,196,2016,Medium Azure,6 +Promotional,RIO 2016 MASCOTS,196,2016,Orange,7 +Promotional,RIO 2016 MASCOTS,196,2016,Red,2 +Promotional,RIO 2016 MASCOTS,196,2016,Yellow,13 +Promotional,MSC Ship,181,2016,Flat Silver,1 +Promotional,MSC Ship,181,2016,Light Bluish Gray,1 +Promotional,MSC Ship,181,2016,Orange,2 +Promotional,MSC Ship,181,2016,Red,1 +Promotional,MSC Ship,181,2016,Tan,2 +Promotional,MSC Ship,181,2016,Trans-Clear,2 +Promotional,MSC Ship,181,2016,Trans-Light Blue,2 +Promotional,MSC Ship,181,2016,White,32 +Promotional,MSC Ship,181,2016,Yellow,2 +Promotional,MSC Ship,181,2016,Green,1 +Promotional,MSC Ship,181,2016,[No Color],1 +Promotional,MSC Ship,181,2016,Black,1 +Promotional,MSC Ship,181,2016,Dark Blue,12 +Promotional,Escape the Space Slug,161,2016,Light Bluish Gray,24 +Promotional,Escape the Space Slug,161,2016,Trans-Light Blue,2 +Promotional,Escape the Space Slug,161,2016,White,1 +Promotional,Escape the Space Slug,161,2016,Dark Tan,18 +Promotional,Escape the Space Slug,161,2016,Dark Red,3 +Promotional,Escape the Space Slug,161,2016,Black,4 +Promotional,Geoffrey & Friends,133,2016,[No Color],1 +Promotional,Geoffrey & Friends,133,2016,Bright Light Orange,14 +Promotional,Geoffrey & Friends,133,2016,Dark Azure,1 +Promotional,Geoffrey & Friends,133,2016,Dark Bluish Gray,3 +Promotional,Geoffrey & Friends,133,2016,Dark Brown,2 +Promotional,Geoffrey & Friends,133,2016,Light Bluish Gray,3 +Promotional,Geoffrey & Friends,133,2016,Lime,1 +Promotional,Geoffrey & Friends,133,2016,Medium Lavender,1 +Promotional,Geoffrey & Friends,133,2016,Orange,2 +Promotional,Geoffrey & Friends,133,2016,Red,1 +Promotional,Geoffrey & Friends,133,2016,Reddish Brown,8 +Promotional,Geoffrey & Friends,133,2016,White,4 +Promotional,Geoffrey & Friends,133,2016,Yellow,4 +Promotional,Captain America Mosaic,71,2016,White,4 +Promotional,Captain America Mosaic,71,2016,Tan,4 +Promotional,Captain America Mosaic,71,2016,Red,6 +Promotional,Captain America Mosaic,71,2016,Blue,5 +Promotional,Captain America Mosaic,71,2016,Black,3 +Protectors,Protector of Stone,73,2015,Pearl Dark Gray,1 +Protectors,Protector of Stone,73,2015,Yellow,2 +Protectors,Protector of Stone,73,2015,Dark Blue,1 +Protectors,Protector of Stone,73,2015,Red,1 +Protectors,Protector of Stone,73,2015,Reddish Brown,1 +Protectors,Protector of Stone,73,2015,Trans-Light Blue,1 +Protectors,Protector of Stone,73,2015,Trans-Neon Green,3 +Protectors,Protector of Stone,73,2015,White,2 +Protectors,Protector of Stone,73,2015,Black,7 +Protectors,Protector of Stone,73,2015,Blue,2 +Protectors,Protector of Stone,73,2015,Tan,1 +Protectors,Protector of Stone,73,2015,Dark Bluish Gray,4 +Protectors,Protector of Stone,73,2015,Dark Orange,2 +Protectors,Protector of Stone,73,2015,Dark Tan,1 +Protectors,Protector of Stone,73,2015,Flat Silver,5 +Protectors,Protector of Water,71,2015,Black,8 +Protectors,Protector of Water,71,2015,Blue,1 +Protectors,Protector of Water,71,2015,Red,1 +Protectors,Protector of Water,71,2015,Dark Azure,1 +Protectors,Protector of Water,71,2015,Dark Bluish Gray,3 +Protectors,Protector of Water,71,2015,Dark Tan,1 +Protectors,Protector of Water,71,2015,Flat Silver,5 +Protectors,Protector of Water,71,2015,Light Bluish Gray,2 +Protectors,Protector of Water,71,2015,Pearl Dark Gray,1 +Protectors,Protector of Water,71,2015,Yellow,3 +Protectors,Protector of Water,71,2015,Trans-Neon Green,1 +Protectors,Protector of Water,71,2015,Trans-Light Blue,3 +Protectors,Protector of Water,71,2015,Trans-Dark Blue,2 +Protectors,Protector of Jungle,70,2015,Lime,1 +Protectors,Protector of Jungle,70,2015,Tan,1 +Protectors,Protector of Jungle,70,2015,Trans-Bright Green,2 +Protectors,Protector of Jungle,70,2015,Trans-Dark Blue,1 +Protectors,Protector of Jungle,70,2015,Trans-Neon Green,1 +Protectors,Protector of Jungle,70,2015,Yellow,2 +Protectors,Protector of Jungle,70,2015,Red,1 +Protectors,Protector of Jungle,70,2015,Pearl Dark Gray,1 +Protectors,Protector of Jungle,70,2015,Black,8 +Protectors,Protector of Jungle,70,2015,Blue,2 +Protectors,Protector of Jungle,70,2015,Bright Green,1 +Protectors,Protector of Jungle,70,2015,Bright Light Orange,2 +Protectors,Protector of Jungle,70,2015,Dark Blue,1 +Protectors,Protector of Jungle,70,2015,Dark Bluish Gray,4 +Protectors,Protector of Jungle,70,2015,Dark Tan,1 +Protectors,Protector of Jungle,70,2015,Flat Silver,4 +Protectors,Protector of Fire,69,2015,Black,12 +Protectors,Protector of Fire,69,2015,Blue,1 +Protectors,Protector of Fire,69,2015,Dark Bluish Gray,3 +Protectors,Protector of Fire,69,2015,Dark Tan,1 +Protectors,Protector of Fire,69,2015,Flat Silver,3 +Protectors,Protector of Fire,69,2015,Light Bluish Gray,1 +Protectors,Protector of Fire,69,2015,Pearl Dark Gray,1 +Protectors,Protector of Fire,69,2015,Red,3 +Protectors,Protector of Fire,69,2015,Trans-Light Blue,1 +Protectors,Protector of Fire,69,2015,Trans-Neon Orange,3 +Protectors,Protector of Fire,69,2015,Trans-Red,1 +Protectors,Protector of Fire,69,2015,Yellow,2 +Protectors,Protector of Fire,69,2015,Yellowish Green,1 +Protectors,Protector of Ice,68,2015,Black,8 +Protectors,Protector of Ice,68,2015,Blue,2 +Protectors,Protector of Ice,68,2015,Dark Bluish Gray,6 +Protectors,Protector of Ice,68,2015,Flat Silver,3 +Protectors,Protector of Ice,68,2015,Light Bluish Gray,1 +Protectors,Protector of Ice,68,2015,Pearl Dark Gray,1 +Protectors,Protector of Ice,68,2015,Yellow,2 +Protectors,Protector of Ice,68,2015,White,4 +Protectors,Protector of Ice,68,2015,Trans-Light Blue,6 +Protectors,Protector of Ice,68,2015,Red,1 +Protectors,Protector of Earth,66,2015,Blue,1 +Protectors,Protector of Earth,66,2015,Dark Bluish Gray,3 +Protectors,Protector of Earth,66,2015,Dark Purple,1 +Protectors,Protector of Earth,66,2015,Dark Tan,1 +Protectors,Protector of Earth,66,2015,Flat Silver,2 +Protectors,Protector of Earth,66,2015,Light Bluish Gray,1 +Protectors,Protector of Earth,66,2015,Pearl Dark Gray,1 +Protectors,Protector of Earth,66,2015,Red,1 +Protectors,Protector of Earth,66,2015,Trans-Neon Green,1 +Protectors,Protector of Earth,66,2015,Trans-Purple,2 +Protectors,Protector of Earth,66,2015,Yellow,3 +Protectors,Protector of Earth,66,2015,Yellowish Green,1 +Protectors,Protector of Earth,66,2015,Black,10 +Race,Race Car,17,1980,Black,3 +Race,Race Car,17,1980,Blue,1 +Race,Race Car,17,1980,Red,3 +Race,Race Car,17,1980,White,5 +Race,Race Car,17,1980,Yellow,1 +Race,Go-Cart,98,1985,Black,6 +Race,Go-Cart,98,1985,Blue,8 +Race,Go-Cart,98,1985,Light Gray,16 +Race,Go-Cart,98,1985,Red,5 +Race,Rig Racers,107,1998,Light Gray,4 +Race,Rig Racers,107,1998,Black,14 +Race,Rig Racers,107,1998,Blue,8 +Race,Rig Racers,107,1998,Chrome Silver,1 +Race,Rig Racers,107,1998,Dark Gray,6 +Race,Rig Racers,107,1998,Yellow,3 +Race,Rig Racers,107,1998,Red,11 +Race,Rig Racers,107,1998,Trans-Green,1 +Race,Rig Racers,107,1998,Trans-Light Blue,2 +Race,Rig Racers,107,1998,Trans-Red,1 +Race,Rig Racers,107,1998,White,11 +Race,Race and Chase,50,1998,Black,7 +Race,Race and Chase,50,1998,Blue,4 +Race,Race and Chase,50,1998,Light Gray,3 +Race,Race and Chase,50,1998,Red,3 +Race,Race and Chase,50,1998,Trans-Dark Blue,1 +Race,Race and Chase,50,1998,Trans-Light Blue,1 +Race,Race and Chase,50,1998,Yellow,2 +Race,Race and Chase,50,1998,White,5 +Race,Turbo Champs,48,1998,Black,11 +Race,Turbo Champs,48,1998,Blue,5 +Race,Turbo Champs,48,1998,Light Gray,3 +Race,Turbo Champs,48,1998,Red,4 +Race,Turbo Champs,48,1998,Trans-Light Blue,2 +Race,Turbo Champs,48,1998,Trans-Red,1 +Race,Turbo Champs,48,1998,Trans-Yellow,1 +Race,Turbo Champs,48,1998,White,8 +Race,Turbo Champs,48,1998,Yellow,3 +Race,Speedway Transport,139,1999,Chrome Silver,1 +Race,Speedway Transport,139,1999,Black,13 +Race,Speedway Transport,139,1999,Blue,4 +Race,Speedway Transport,139,1999,Light Gray,4 +Race,Speedway Transport,139,1999,Dark Gray,6 +Race,Speedway Transport,139,1999,Green,2 +Race,Speedway Transport,139,1999,Red,9 +Race,Speedway Transport,139,1999,Trans-Dark Blue,2 +Race,Speedway Transport,139,1999,Trans-Light Blue,1 +Race,Speedway Transport,139,1999,Trans-Red,2 +Race,Speedway Transport,139,1999,Trans-Yellow,1 +Race,Speedway Transport,139,1999,White,9 +Race,Speedway Transport,139,1999,Yellow,9 +Race,Power Pitstop,71,1999,Green,2 +Race,Power Pitstop,71,1999,Light Gray,2 +Race,Power Pitstop,71,1999,Red,5 +Race,Power Pitstop,71,1999,Blue,5 +Race,Power Pitstop,71,1999,Trans-Light Blue,1 +Race,Power Pitstop,71,1999,Yellow,11 +Race,Power Pitstop,71,1999,White,9 +Race,Power Pitstop,71,1999,Trans-Neon Orange,1 +Race,Power Pitstop,71,1999,Black,8 +Race,Power Pitstop,71,1999,Dark Gray,6 +Race,Go-Cart,25,1999,Dark Gray,1 +Race,Go-Cart,25,1999,Black,3 +Race,Go-Cart,25,1999,Light Gray,2 +Race,Go-Cart,25,1999,Red,3 +Race,Go-Cart,25,1999,White,3 +Race,Go-Cart,25,1999,Yellow,4 +Race,Dragster,24,1999,Yellow,2 +Race,Dragster,24,1999,Black,6 +Race,Dragster,24,1999,Red,3 +Race,Dragster,24,1999,White,7 +Race,Go-Kart,22,1999,Light Gray,1 +Race,Go-Kart,22,1999,Black,4 +Race,Go-Kart,22,1999,Yellow,2 +Race,Go-Kart,22,1999,White,6 +Race,Go-Kart,22,1999,Trans-Dark Blue,1 +Race,Go-Kart,22,1999,Red,2 +Race,Yellow Tiger,23,2001,Black,5 +Race,Yellow Tiger,23,2001,Light Gray,1 +Race,Yellow Tiger,23,2001,Trans-Neon Green,1 +Race,Yellow Tiger,23,2001,Trans-Neon Orange,2 +Race,Yellow Tiger,23,2001,White,2 +Race,Yellow Tiger,23,2001,Yellow,5 +Race,24 Hours Race Car,1218,2015,Black,35 +Race,24 Hours Race Car,1218,2015,Blue,3 +Race,24 Hours Race Car,1218,2015,Bright Green,11 +Race,24 Hours Race Car,1218,2015,Dark Bluish Gray,11 +Race,24 Hours Race Car,1218,2015,Dark Tan,2 +Race,24 Hours Race Car,1218,2015,Flat Silver,1 +Race,24 Hours Race Car,1218,2015,Light Bluish Gray,42 +Race,24 Hours Race Car,1218,2015,Red,10 +Race,24 Hours Race Car,1218,2015,Tan,6 +Race,24 Hours Race Car,1218,2015,Trans-Clear,3 +Race,24 Hours Race Car,1218,2015,Trans-Red,1 +Race,24 Hours Race Car,1218,2015,White,20 +Race,24 Hours Race Car,1218,2015,Yellow,5 +Race,Race Truck,608,2015,Black,35 +Race,Race Truck,608,2015,Blue,4 +Race,Race Truck,608,2015,Dark Bluish Gray,4 +Race,Race Truck,608,2015,Dark Tan,1 +Race,Race Truck,608,2015,Flat Silver,1 +Race,Race Truck,608,2015,Light Bluish Gray,24 +Race,Race Truck,608,2015,Red,16 +Race,Race Truck,608,2015,Tan,3 +Race,Race Truck,608,2015,Trans-Clear,1 +Race,Race Truck,608,2015,Trans-Red,1 +Race,Race Truck,608,2015,Yellow,3 +Race,Record Breaker,124,2015,Black,12 +Race,Record Breaker,124,2015,Blue,3 +Race,Record Breaker,124,2015,Dark Blue,1 +Race,Record Breaker,124,2015,Dark Bluish Gray,5 +Race,Record Breaker,124,2015,Dark Tan,1 +Race,Record Breaker,124,2015,Light Bluish Gray,11 +Race,Record Breaker,124,2015,Metallic Silver,1 +Race,Record Breaker,124,2015,Red,1 +Race,Record Breaker,124,2015,Trans-Black,1 +Race,Record Breaker,124,2015,White,9 +Racers,Police Car,35,2008,Black,8 +Racers,Police Car,35,2008,Glow In Dark Trans,1 +Racers,Police Car,35,2008,Light Bluish Gray,1 +Racers,Police Car,35,2008,Trans-Dark Blue,1 +Racers,Police Car,35,2008,Trans-Red,1 +Racers,Police Car,35,2008,White,3 +Racers,Star Striker,88,2012,Blue,14 +Racers,Star Striker,88,2012,Black,7 +Racers,Star Striker,88,2012,[No Color],1 +Racers,Star Striker,88,2012,Yellow,2 +Racers,Star Striker,88,2012,White,8 +Racers,Star Striker,88,2012,Trans-Black,1 +Racers,Star Striker,88,2012,Tan,1 +Racers,Star Striker,88,2012,Red,7 +Racers,Star Striker,88,2012,Light Bluish Gray,2 +Racers,Star Striker,88,2012,Dark Bluish Gray,3 +Racers,Bone Cruncher,86,2012,[No Color],1 +Racers,Bone Cruncher,86,2012,Black,13 +Racers,Bone Cruncher,86,2012,Blue,2 +Racers,Bone Cruncher,86,2012,Dark Bluish Gray,5 +Racers,Bone Cruncher,86,2012,Light Bluish Gray,2 +Racers,Bone Cruncher,86,2012,Red,4 +Racers,Bone Cruncher,86,2012,Tan,1 +Racers,Bone Cruncher,86,2012,Trans-Black,1 +Racers,Bone Cruncher,86,2012,Trans-Clear,1 +Racers,Bone Cruncher,86,2012,Yellow,16 +Racers,Nitro Predator,86,2012,White,1 +Racers,Nitro Predator,86,2012,Yellow,1 +Racers,Nitro Predator,86,2012,Black,9 +Racers,Nitro Predator,86,2012,Blue,3 +Racers,Nitro Predator,86,2012,Dark Bluish Gray,6 +Racers,Nitro Predator,86,2012,Green,2 +Racers,Nitro Predator,86,2012,Light Bluish Gray,2 +Racers,Nitro Predator,86,2012,Lime,5 +Racers,Nitro Predator,86,2012,Red,8 +Racers,Nitro Predator,86,2012,Tan,1 +Racers,Nitro Predator,86,2012,Trans-Black,1 +Racers,Nitro Predator,86,2012,Trans-Green,1 +Racers,Crazy Demon,85,2012,[No Color],1 +Racers,Crazy Demon,85,2012,Blue,2 +Racers,Crazy Demon,85,2012,Yellow,2 +Racers,Crazy Demon,85,2012,Black,11 +Racers,Crazy Demon,85,2012,White,4 +Racers,Crazy Demon,85,2012,Trans-Red,1 +Racers,Crazy Demon,85,2012,Trans-Clear,1 +Racers,Crazy Demon,85,2012,Trans-Black,1 +Racers,Crazy Demon,85,2012,Tan,1 +Racers,Crazy Demon,85,2012,Red,14 +Racers,Crazy Demon,85,2012,Light Bluish Gray,1 +Racers,Crazy Demon,85,2012,Dark Bluish Gray,5 +Radio Control,Radio Control Racer,297,1998,Trans-Dark Blue,1 +Radio Control,Radio Control Racer,297,1998,Green,23 +Radio Control,Radio Control Racer,297,1998,Light Gray,7 +Radio Control,Radio Control Racer,297,1998,Red,17 +Radio Control,Radio Control Racer,297,1998,Chrome Silver,5 +Radio Control,Radio Control Racer,297,1998,Royal Blue,2 +Radio Control,Radio Control Racer,297,1998,Trans-Light Blue,1 +Radio Control,Radio Control Racer,297,1998,Yellow,24 +Radio Control,Radio Control Racer,297,1998,Black,49 +Radio Control,Radio Control Racer,294,1998,Black,49 +Radio Control,Radio Control Racer,294,1998,Chrome Silver,5 +Radio Control,Radio Control Racer,294,1998,Green,23 +Radio Control,Radio Control Racer,294,1998,Light Gray,7 +Radio Control,Radio Control Racer,294,1998,Trans-Dark Blue,1 +Radio Control,Radio Control Racer,294,1998,Trans-Light Blue,1 +Radio Control,Radio Control Racer,294,1998,Yellow,24 +Radio Control,Radio Control Racer,294,1998,Red,17 +Radio Control,Twin X-treme RC,238,2009,Green,11 +Radio Control,Twin X-treme RC,238,2009,Black,26 +Radio Control,Twin X-treme RC,238,2009,Blue,1 +Radio Control,Twin X-treme RC,238,2009,Dark Bluish Gray,4 +Radio Control,Twin X-treme RC,238,2009,Light Bluish Gray,4 +Radio Control,Twin X-treme RC,238,2009,Red,13 +Radio Control,Twin X-treme RC,238,2009,Tan,1 +Radio Control,Twin X-treme RC,238,2009,Trans-Clear,1 +Radio Control,Twin X-treme RC,238,2009,Trans-Red,3 +Radio Control,Twin X-treme RC,238,2009,White,28 +Radio Control,Track Turbo RC,91,2009,Black,11 +Radio Control,Track Turbo RC,91,2009,Blue,1 +Radio Control,Track Turbo RC,91,2009,Dark Bluish Gray,8 +Radio Control,Track Turbo RC,91,2009,Light Bluish Gray,4 +Radio Control,Track Turbo RC,91,2009,Pearl Light Gray,2 +Radio Control,Track Turbo RC,91,2009,Tan,1 +Radio Control,Track Turbo RC,91,2009,Trans-Red,1 +Radio Control,Track Turbo RC,91,2009,Yellow,21 +Radio Control,Track Turbo RC,91,2009,[No Color],1 +Rahaga,Rahaga Bomonga,28,2005,Black,7 +Rahaga,Rahaga Bomonga,28,2005,Blue,1 +Rahaga,Rahaga Bomonga,28,2005,Dark Bluish Gray,3 +Rahaga,Rahaga Bomonga,28,2005,Light Bluish Gray,1 +Rahaga,Rahaga Bomonga,28,2005,Orange,1 +Rahaga,Rahaga Bomonga,28,2005,Pearl Light Gray,2 +Rahaga,Rahaga Bomonga,28,2005,Yellow,1 +Rahaga,Rahaga Gaaki,28,2005,Black,4 +Rahaga,Rahaga Gaaki,28,2005,Blue,1 +Rahaga,Rahaga Gaaki,28,2005,Dark Blue,4 +Rahaga,Rahaga Gaaki,28,2005,Dark Bluish Gray,3 +Rahaga,Rahaga Gaaki,28,2005,Flat Silver,1 +Rahaga,Rahaga Gaaki,28,2005,Light Bluish Gray,1 +Rahaga,Rahaga Gaaki,28,2005,Orange,1 +Rahaga,Rahaga Gaaki,28,2005,Pearl Light Gray,1 +Rahaga,Rahaga Gaaki,28,2005,Yellow,1 +Rahaga,Rahaga Iruini,28,2005,Black,4 +Rahaga,Rahaga Iruini,28,2005,Blue,1 +Rahaga,Rahaga Iruini,28,2005,Dark Bluish Gray,3 +Rahaga,Rahaga Iruini,28,2005,Dark Green,4 +Rahaga,Rahaga Iruini,28,2005,Flat Dark Gold,1 +Rahaga,Rahaga Iruini,28,2005,Light Bluish Gray,1 +Rahaga,Rahaga Iruini,28,2005,Orange,1 +Rahaga,Rahaga Iruini,28,2005,Pearl Light Gray,1 +Rahaga,Rahaga Iruini,28,2005,Yellow,1 +Rahaga,Rahaga Kualus,28,2005,Black,4 +Rahaga,Rahaga Kualus,28,2005,Blue,1 +Rahaga,Rahaga Kualus,28,2005,Dark Bluish Gray,3 +Rahaga,Rahaga Kualus,28,2005,Light Bluish Gray,1 +Rahaga,Rahaga Kualus,28,2005,Orange,1 +Rahaga,Rahaga Kualus,28,2005,Pearl Light Gray,1 +Rahaga,Rahaga Kualus,28,2005,White,5 +Rahaga,Rahaga Kualus,28,2005,Yellow,1 +Rahaga,Rahaga Norik,28,2005,Black,4 +Rahaga,Rahaga Norik,28,2005,Blue,1 +Rahaga,Rahaga Norik,28,2005,Dark Bluish Gray,3 +Rahaga,Rahaga Norik,28,2005,Dark Red,5 +Rahaga,Rahaga Norik,28,2005,Flat Silver,1 +Rahaga,Rahaga Norik,28,2005,Light Bluish Gray,1 +Rahaga,Rahaga Norik,28,2005,Orange,1 +Rahaga,Rahaga Norik,28,2005,Yellow,1 +Rahaga,Rahaga Pouks,28,2005,Black,4 +Rahaga,Rahaga Pouks,28,2005,Blue,1 +Rahaga,Rahaga Pouks,28,2005,Dark Bluish Gray,3 +Rahaga,Rahaga Pouks,28,2005,Dark Flesh,5 +Rahaga,Rahaga Pouks,28,2005,Light Bluish Gray,1 +Rahaga,Rahaga Pouks,28,2005,Orange,1 +Rahaga,Rahaga Pouks,28,2005,Pearl Light Gray,1 +Rahaga,Rahaga Pouks,28,2005,Yellow,1 +Rahi,Muaka and Kane-ra,633,2001,Black,34 +Rahi,Muaka and Kane-ra,633,2001,Dark Gray,20 +Rahi,Muaka and Kane-ra,633,2001,Flat Silver,1 +Rahi,Muaka and Kane-ra,633,2001,Light Gray,9 +Rahi,Muaka and Kane-ra,633,2001,Metallic Silver,2 +Rahi,Muaka and Kane-ra,633,2001,Red,8 +Rahi,Muaka and Kane-ra,633,2001,Yellow,10 +Rahi,Manas,456,2001,Black,22 +Rahi,Manas,456,2001,Dark Gray,20 +Rahi,Manas,456,2001,Light Gray,10 +Rahi,Manas,456,2001,Orange,4 +Rahi,Manas,456,2001,Trans-Red,1 +Rahi,Manas,456,2001,White,13 +Rahi,Manas,456,2001,Yellow,5 +Rahi,Tarakava,403,2001,Black,29 +Rahi,Tarakava,403,2001,Blue,13 +Rahi,Tarakava,403,2001,Dark Gray,2 +Rahi,Tarakava,403,2001,Dark Turquoise,11 +Rahi,Tarakava,403,2001,Flat Silver,2 +Rahi,Tarakava,403,2001,Light Gray,19 +Rahi,Tarakava,403,2001,Orange,1 +Rahi,Tarakava,403,2001,Red,1 +Rahi,Tarakava,403,2001,White,3 +Rahi,Tarakava,403,2001,Yellow,1 +Rahi,Nui-Jaga,226,2001,Black,14 +Rahi,Nui-Jaga,226,2001,Dark Gray,10 +Rahi,Nui-Jaga,226,2001,Light Gray,4 +Rahi,Nui-Jaga,226,2001,Medium Blue,5 +Rahi,Nui-Jaga,226,2001,Purple,5 +Rahi,Nui-Jaga,226,2001,Trans-Neon Yellow,1 +Rahi,Nui-Jaga,226,2001,Trans-Red,1 +Rahi,Nui-Jaga,226,2001,Trans-Yellow,1 +Rahi,Nui-Jaga,226,2001,White,1 +Rahi,Nui-Rama,148,2001,Lime,9 +Rahi,Nui-Rama,148,2001,Orange,10 +Rahi,Nui-Rama,148,2001,Trans-Dark Blue,1 +Rahi,Nui-Rama,148,2001,Dark Gray,1 +Rahi,Nui-Rama,148,2001,Flat Silver,1 +Rahi,Nui-Rama,148,2001,Light Gray,3 +Rahi,Nui-Rama,148,2001,Black,15 +Rahkshi,Lerahk - With mini CD-ROM,46,2003,[No Color],1 +Rahkshi,Lerahk - With mini CD-ROM,46,2003,Black,2 +Rahkshi,Lerahk - With mini CD-ROM,46,2003,Dark Gray,8 +Rahkshi,Lerahk - With mini CD-ROM,46,2003,Flat Silver,2 +Rahkshi,Lerahk - With mini CD-ROM,46,2003,Green,4 +Rahkshi,Lerahk - With mini CD-ROM,46,2003,Light Gray,2 +Rahkshi,Lerahk - With mini CD-ROM,46,2003,Metallic Green,1 +Rahkshi,Lerahk - With mini CD-ROM,46,2003,Tan,1 +Rahkshi,Guurahk - With mini CD-ROM,46,2003,[No Color],1 +Rahkshi,Guurahk - With mini CD-ROM,46,2003,Black,2 +Rahkshi,Guurahk - With mini CD-ROM,46,2003,Blue,4 +Rahkshi,Guurahk - With mini CD-ROM,46,2003,Dark Gray,8 +Rahkshi,Guurahk - With mini CD-ROM,46,2003,Flat Silver,2 +Rahkshi,Guurahk - With mini CD-ROM,46,2003,Light Gray,2 +Rahkshi,Guurahk - With mini CD-ROM,46,2003,Metal Blue,1 +Rahkshi,Guurahk - With mini CD-ROM,46,2003,Tan,1 +Rahkshi,Guurahk - With mini CD-ROM,46,2003,Trans-Neon Orange,1 +Rahkshi,Lerahk - With mini CD-ROM,46,2003,Trans-Neon Orange,1 +Rahkshi,Panrahk - With mini CD-ROM,46,2003,[No Color],1 +Rahkshi,Panrahk - With mini CD-ROM,46,2003,Black,2 +Rahkshi,Panrahk - With mini CD-ROM,46,2003,Brown,4 +Rahkshi,Panrahk - With mini CD-ROM,46,2003,Dark Gray,8 +Rahkshi,Panrahk - With mini CD-ROM,46,2003,Flat Dark Gold,1 +Rahkshi,Panrahk - With mini CD-ROM,46,2003,Flat Silver,2 +Rahkshi,Panrahk - With mini CD-ROM,46,2003,Light Gray,2 +Rahkshi,Panrahk - With mini CD-ROM,46,2003,Tan,1 +Rahkshi,Panrahk - With mini CD-ROM,46,2003,Trans-Neon Orange,1 +Rahkshi,Turahk - With mini CD-ROM,46,2003,[No Color],1 +Rahkshi,Turahk - With mini CD-ROM,46,2003,Black,2 +Rahkshi,Turahk - With mini CD-ROM,46,2003,Copper,1 +Rahkshi,Turahk - With mini CD-ROM,46,2003,Dark Gray,8 +Rahkshi,Turahk - With mini CD-ROM,46,2003,Flat Silver,2 +Rahkshi,Turahk - With mini CD-ROM,46,2003,Light Gray,2 +Rahkshi,Turahk - With mini CD-ROM,46,2003,Red,4 +Rahkshi,Turahk - With mini CD-ROM,46,2003,Tan,1 +Rahkshi,Turahk - With mini CD-ROM,46,2003,Trans-Neon Orange,1 +Rahkshi,Kurahk,45,2003,Flat Silver,1 +Rahkshi,Kurahk,45,2003,Light Gray,2 +Rahkshi,Kurahk,45,2003,Pearl Light Gray,1 +Rahkshi,Kurahk,45,2003,Pearl Very Light Gray,1 +Rahkshi,Kurahk,45,2003,Pearl White,3 +Rahkshi,Kurahk,45,2003,Tan,1 +Rahkshi,Kurahk,45,2003,Trans-Neon Orange,1 +Rahkshi,Kurahk,45,2003,White,1 +Rahkshi,Kurahk - With mini CD-ROM,45,2003,Black,2 +Rahkshi,Kurahk - With mini CD-ROM,45,2003,Dark Gray,8 +Rahkshi,Kurahk - With mini CD-ROM,45,2003,Flat Silver,1 +Rahkshi,Kurahk - With mini CD-ROM,45,2003,Light Gray,2 +Rahkshi,Kurahk - With mini CD-ROM,45,2003,Pearl Light Gray,1 +Rahkshi,Kurahk - With mini CD-ROM,45,2003,Pearl Very Light Gray,1 +Rahkshi,Kurahk - With mini CD-ROM,45,2003,Pearl White,3 +Rahkshi,Kurahk - With mini CD-ROM,45,2003,Tan,1 +Rahkshi,Kurahk - With mini CD-ROM,45,2003,Trans-Neon Orange,1 +Rahkshi,Kurahk - With mini CD-ROM,45,2003,White,1 +Rahkshi,Kurahk - With Shadow Kraata (Promotional Set),45,2003,Black,2 +Rahkshi,Kurahk - With Shadow Kraata (Promotional Set),45,2003,Dark Gray,8 +Rahkshi,Kurahk - With Shadow Kraata (Promotional Set),45,2003,Flat Silver,1 +Rahkshi,Kurahk - With Shadow Kraata (Promotional Set),45,2003,Light Gray,2 +Rahkshi,Kurahk - With Shadow Kraata (Promotional Set),45,2003,Pearl Light Gray,1 +Rahkshi,Kurahk - With Shadow Kraata (Promotional Set),45,2003,Pearl White,3 +Rahkshi,Kurahk - With Shadow Kraata (Promotional Set),45,2003,Purple,1 +Rahkshi,Kurahk - With Shadow Kraata (Promotional Set),45,2003,Tan,1 +Rahkshi,Kurahk - With Shadow Kraata (Promotional Set),45,2003,Trans-Neon Orange,1 +Rahkshi,Kurahk - With Shadow Kraata (Promotional Set),45,2003,White,1 +Rahkshi,Lerahk,45,2003,Black,2 +Rahkshi,Lerahk,45,2003,Dark Gray,8 +Rahkshi,Lerahk,45,2003,Flat Silver,2 +Rahkshi,Lerahk,45,2003,Green,4 +Rahkshi,Lerahk,45,2003,Light Gray,2 +Rahkshi,Lerahk,45,2003,Metallic Green,1 +Rahkshi,Lerahk,45,2003,Tan,1 +Rahkshi,Lerahk,45,2003,Trans-Neon Orange,1 +Rahkshi,Lerahk - With Shadow Kraata (Promotional Set),45,2003,Black,2 +Rahkshi,Lerahk - With Shadow Kraata (Promotional Set),45,2003,Dark Gray,8 +Rahkshi,Lerahk - With Shadow Kraata (Promotional Set),45,2003,Flat Silver,2 +Rahkshi,Lerahk - With Shadow Kraata (Promotional Set),45,2003,Green,4 +Rahkshi,Lerahk - With Shadow Kraata (Promotional Set),45,2003,Light Gray,2 +Rahkshi,Lerahk - With Shadow Kraata (Promotional Set),45,2003,Purple,1 +Rahkshi,Lerahk - With Shadow Kraata (Promotional Set),45,2003,Tan,1 +Rahkshi,Lerahk - With Shadow Kraata (Promotional Set),45,2003,Trans-Neon Orange,1 +Rahkshi,Panrahk,45,2003,Black,2 +Rahkshi,Panrahk,45,2003,Brown,4 +Rahkshi,Panrahk,45,2003,Dark Gray,8 +Rahkshi,Panrahk,45,2003,Flat Dark Gold,1 +Rahkshi,Panrahk,45,2003,Flat Silver,2 +Rahkshi,Panrahk,45,2003,Light Gray,2 +Rahkshi,Panrahk,45,2003,Tan,1 +Rahkshi,Panrahk,45,2003,Trans-Neon Orange,1 +Rahkshi,Guurahk,45,2003,Black,2 +Rahkshi,Guurahk,45,2003,Blue,4 +Rahkshi,Guurahk,45,2003,Dark Gray,8 +Rahkshi,Guurahk,45,2003,Flat Silver,2 +Rahkshi,Guurahk,45,2003,Light Gray,2 +Rahkshi,Guurahk,45,2003,Metal Blue,1 +Rahkshi,Guurahk,45,2003,Tan,1 +Rahkshi,Guurahk,45,2003,Trans-Neon Orange,1 +Rahkshi,Guurahk - With Shadow Kraata (Promotional Set),45,2003,Black,2 +Rahkshi,Panrahk - With Shadow Kraata (Promotional Set),45,2003,Black,2 +Rahkshi,Panrahk - With Shadow Kraata (Promotional Set),45,2003,Brown,4 +Rahkshi,Panrahk - With Shadow Kraata (Promotional Set),45,2003,Dark Gray,8 +Rahkshi,Panrahk - With Shadow Kraata (Promotional Set),45,2003,Flat Silver,2 +Rahkshi,Panrahk - With Shadow Kraata (Promotional Set),45,2003,Light Gray,2 +Rahkshi,Panrahk - With Shadow Kraata (Promotional Set),45,2003,Purple,1 +Rahkshi,Panrahk - With Shadow Kraata (Promotional Set),45,2003,Tan,1 +Rahkshi,Panrahk - With Shadow Kraata (Promotional Set),45,2003,Trans-Neon Orange,1 +Rahkshi,Turahk,45,2003,Black,2 +Rahkshi,Turahk,45,2003,Copper,1 +Rahkshi,Turahk,45,2003,Dark Gray,8 +Rahkshi,Turahk,45,2003,Flat Silver,2 +Rahkshi,Turahk,45,2003,Light Gray,2 +Rahkshi,Turahk,45,2003,Red,4 +Rahkshi,Turahk,45,2003,Tan,1 +Rahkshi,Turahk,45,2003,Trans-Neon Orange,1 +Rahkshi,Guurahk - With Shadow Kraata (Promotional Set),45,2003,Blue,4 +Rahkshi,Guurahk - With Shadow Kraata (Promotional Set),45,2003,Dark Gray,8 +Rahkshi,Guurahk - With Shadow Kraata (Promotional Set),45,2003,Flat Silver,2 +Rahkshi,Guurahk - With Shadow Kraata (Promotional Set),45,2003,Light Gray,2 +Rahkshi,Guurahk - With Shadow Kraata (Promotional Set),45,2003,Purple,1 +Rahkshi,Guurahk - With Shadow Kraata (Promotional Set),45,2003,Tan,1 +Rahkshi,Guurahk - With Shadow Kraata (Promotional Set),45,2003,Trans-Neon Orange,1 +Rahkshi,Kurahk,45,2003,Black,2 +Rahkshi,Kurahk,45,2003,Dark Gray,8 +Rahkshi,Turahk - With Shadow Kraata,45,2003,Black,2 +Rahkshi,Turahk - With Shadow Kraata,45,2003,Dark Gray,8 +Rahkshi,Turahk - With Shadow Kraata,45,2003,Flat Silver,2 +Rahkshi,Turahk - With Shadow Kraata,45,2003,Light Gray,2 +Rahkshi,Turahk - With Shadow Kraata,45,2003,Purple,1 +Rahkshi,Turahk - With Shadow Kraata,45,2003,Red,4 +Rahkshi,Turahk - With Shadow Kraata,45,2003,Tan,1 +Rahkshi,Turahk - With Shadow Kraata,45,2003,Trans-Neon Orange,1 +Rahkshi,Vorahk,45,2003,Black,6 +Rahkshi,Vorahk,45,2003,Dark Gray,8 +Rahkshi,Vorahk,45,2003,Light Gray,2 +Rahkshi,Vorahk,45,2003,Pearl Dark Gray,1 +Rahkshi,Vorahk,45,2003,Pearl Light Gray,2 +Rahkshi,Vorahk,45,2003,Tan,1 +Rahkshi,Vorahk,45,2003,Trans-Neon Orange,1 +Rahkshi,Vorahk - With mini CD-ROM,45,2003,Black,6 +Rahkshi,Vorahk - With mini CD-ROM,45,2003,Dark Gray,8 +Rahkshi,Vorahk - With mini CD-ROM,45,2003,Light Gray,2 +Rahkshi,Vorahk - With mini CD-ROM,45,2003,Pearl Dark Gray,1 +Rahkshi,Vorahk - With mini CD-ROM,45,2003,Pearl Light Gray,2 +Rahkshi,Vorahk - With mini CD-ROM,45,2003,Tan,1 +Rahkshi,Vorahk - With mini CD-ROM,45,2003,Trans-Neon Orange,1 +Rahkshi,Vorahk - With Shadow Kraata,45,2003,Black,6 +Rahkshi,Vorahk - With Shadow Kraata,45,2003,Dark Gray,8 +Rahkshi,Vorahk - With Shadow Kraata,45,2003,Light Gray,2 +Rahkshi,Vorahk - With Shadow Kraata,45,2003,Pearl Light Gray,2 +Rahkshi,Vorahk - With Shadow Kraata,45,2003,Purple,1 +Rahkshi,Vorahk - With Shadow Kraata,45,2003,Tan,1 +Rahkshi,Vorahk - With Shadow Kraata,45,2003,Trans-Neon Orange,1 +Raiders of the Lost Ark,Temple Escape,553,2008,Dark Bluish Gray,42 +Raiders of the Lost Ark,Temple Escape,553,2008,Dark Brown,2 +Raiders of the Lost Ark,Temple Escape,553,2008,Dark Green,2 +Raiders of the Lost Ark,Temple Escape,553,2008,Dark Tan,6 +Raiders of the Lost Ark,Temple Escape,553,2008,Green,5 +Raiders of the Lost Ark,Temple Escape,553,2008,Light Bluish Gray,18 +Raiders of the Lost Ark,Temple Escape,553,2008,Light Flesh,4 +Raiders of the Lost Ark,Temple Escape,553,2008,Medium Blue,1 +Raiders of the Lost Ark,Temple Escape,553,2008,Metallic Gold,1 +Raiders of the Lost Ark,Temple Escape,553,2008,Pearl Dark Gray,1 +Raiders of the Lost Ark,Temple Escape,553,2008,Pearl Light Gray,1 +Raiders of the Lost Ark,Temple Escape,553,2008,Red,5 +Raiders of the Lost Ark,Temple Escape,553,2008,Reddish Brown,9 +Raiders of the Lost Ark,Temple Escape,553,2008,Trans-Orange,1 +Raiders of the Lost Ark,Temple Escape,553,2008,Tan,21 +Raiders of the Lost Ark,Temple Escape,553,2008,Yellow,3 +Raiders of the Lost Ark,Temple Escape,553,2008,White,18 +Raiders of the Lost Ark,Temple Escape,553,2008,[No Color],1 +Raiders of the Lost Ark,Temple Escape,553,2008,Black,14 +Raiders of the Lost Ark,Temple Escape,553,2008,Blue,1 +Raiders of the Lost Ark,Temple Escape,553,2008,Chrome Gold,4 +Raiders of the Lost Ark,Lost Tomb,277,2008,[No Color],1 +Raiders of the Lost Ark,Lost Tomb,277,2008,Black,19 +Raiders of the Lost Ark,Lost Tomb,277,2008,Blue,2 +Raiders of the Lost Ark,Lost Tomb,277,2008,Dark Blue,1 +Raiders of the Lost Ark,Lost Tomb,277,2008,Dark Bluish Gray,4 +Raiders of the Lost Ark,Lost Tomb,277,2008,Dark Brown,2 +Raiders of the Lost Ark,Lost Tomb,277,2008,Dark Red,2 +Raiders of the Lost Ark,Lost Tomb,277,2008,Dark Tan,4 +Raiders of the Lost Ark,Lost Tomb,277,2008,Green,1 +Raiders of the Lost Ark,Lost Tomb,277,2008,Light Bluish Gray,3 +Raiders of the Lost Ark,Lost Tomb,277,2008,Light Flesh,2 +Raiders of the Lost Ark,Lost Tomb,277,2008,Pearl Gold,5 +Raiders of the Lost Ark,Lost Tomb,277,2008,Red,5 +Raiders of the Lost Ark,Lost Tomb,277,2008,Tan,15 +Raiders of the Lost Ark,Lost Tomb,277,2008,Trans-Dark Blue,1 +Raiders of the Lost Ark,Lost Tomb,277,2008,Trans-Orange,1 +Raiders of the Lost Ark,Lost Tomb,277,2008,White,7 +Raiders of the Lost Ark,Lost Tomb,277,2008,Yellow,4 +Raiders of the Lost Ark,Lost Tomb,277,2008,Reddish Brown,7 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Black,15 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Blue,1 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Chrome Gold,4 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Dark Bluish Gray,22 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Dark Brown,1 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Dark Tan,2 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Light Bluish Gray,28 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Light Flesh,4 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Metallic Gold,2 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Metallic Silver,1 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Reddish Brown,4 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Tan,5 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Trans-Black,1 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Trans-Clear,2 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Trans-Dark Blue,1 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Trans-Green,1 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,White,1 +Raiders of the Lost Ark,Race for the Stolen Treasure,275,2008,Trans-Red,1 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Dark Brown,2 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Dark Green,9 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Dark Tan,2 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Green,7 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Light Bluish Gray,27 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Light Flesh,5 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Reddish Brown,8 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Sand Green,1 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Tan,13 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Blue,1 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Trans-Black,3 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Trans-Clear,3 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Trans-Neon Green,1 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Trans-Red,1 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,White,5 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Yellow,1 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Black,26 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Red,2 +Raiders of the Lost Ark,Fight on the Flying Wing,375,2009,Dark Bluish Gray,41 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Black,8 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Bright Green,1 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Dark Bluish Gray,3 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Dark Brown,1 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Dark Purple,1 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Dark Tan,1 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Flesh,2 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Light Bluish Gray,2 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Light Flesh,2 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Pearl Light Gray,2 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Red,1 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Reddish Brown,9 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Tan,10 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,White,3 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Yellow,2 +Raiders of the Lost Ark,Ambush in Cairo,79,2009,Metallic Gold,1 +RC Train,Cargo Train Deluxe,830,2006,[No Color],1 +RC Train,Cargo Train Deluxe,830,2006,Black,59 +RC Train,Cargo Train Deluxe,830,2006,Blue,13 +RC Train,Cargo Train Deluxe,830,2006,Chrome Silver,1 +RC Train,Cargo Train Deluxe,830,2006,Dark Bluish Gray,44 +RC Train,Cargo Train Deluxe,830,2006,Green,21 +RC Train,Cargo Train Deluxe,830,2006,Light Bluish Gray,31 +RC Train,Cargo Train Deluxe,830,2006,Orange,3 +RC Train,Cargo Train Deluxe,830,2006,Red,42 +RC Train,Cargo Train Deluxe,830,2006,Reddish Brown,1 +RC Train,Cargo Train Deluxe,830,2006,Tan,2 +RC Train,Cargo Train Deluxe,830,2006,Trans-Black,5 +RC Train,Cargo Train Deluxe,830,2006,Trans-Clear,2 +RC Train,Cargo Train Deluxe,830,2006,Trans-Orange,2 +RC Train,Cargo Train Deluxe,830,2006,Trans-Red,4 +RC Train,Cargo Train Deluxe,830,2006,Trans-Yellow,3 +RC Train,Cargo Train Deluxe,830,2006,White,5 +RC Train,Cargo Train Deluxe,830,2006,Yellow,27 +RC Train,Passenger Train,494,2006,Black,23 +RC Train,Passenger Train,494,2006,Blue,5 +RC Train,Passenger Train,494,2006,Chrome Silver,1 +RC Train,Passenger Train,494,2006,Dark Blue,2 +RC Train,Passenger Train,494,2006,Dark Bluish Gray,19 +RC Train,Passenger Train,494,2006,Green,1 +RC Train,Passenger Train,494,2006,Light Bluish Gray,10 +RC Train,Passenger Train,494,2006,Red,15 +RC Train,Passenger Train,494,2006,Reddish Brown,2 +RC Train,Passenger Train,494,2006,Trans-Black,6 +RC Train,Passenger Train,494,2006,Trans-Clear,1 +RC Train,Passenger Train,494,2006,Trans-Green,1 +RC Train,Passenger Train,494,2006,Trans-Light Blue,1 +RC Train,Passenger Train,494,2006,Trans-Red,1 +RC Train,Passenger Train,494,2006,Trans-Yellow,2 +RC Train,Passenger Train,494,2006,White,15 +RC Train,Passenger Train,494,2006,Yellow,4 +RC Train,Straight & Curved Rails,16,2006,Dark Bluish Gray,3 +RC Train,Switching Tracks,8,2006,Dark Bluish Gray,3 +RC Train,Switching Tracks,8,2006,Yellow,1 +RC Train,Flexible Rails,24,2011,Dark Bluish Gray,3 +RC Train,Horizon Express,1349,2013,[No Color],1 +RC Train,Horizon Express,1349,2013,Black,75 +RC Train,Horizon Express,1349,2013,Blue,5 +RC Train,Horizon Express,1349,2013,Chrome Silver,1 +RC Train,Horizon Express,1349,2013,Dark Blue,2 +RC Train,Horizon Express,1349,2013,Dark Bluish Gray,23 +RC Train,Horizon Express,1349,2013,Dark Brown,3 +RC Train,Horizon Express,1349,2013,Dark Purple,1 +RC Train,Horizon Express,1349,2013,Dark Red,1 +RC Train,Horizon Express,1349,2013,Dark Tan,1 +RC Train,Horizon Express,1349,2013,Green,2 +RC Train,Horizon Express,1349,2013,Light Bluish Gray,26 +RC Train,Horizon Express,1349,2013,Medium Blue,1 +RC Train,Horizon Express,1349,2013,Metallic Silver,1 +RC Train,Horizon Express,1349,2013,Orange,30 +RC Train,Horizon Express,1349,2013,Red,4 +RC Train,Horizon Express,1349,2013,Reddish Brown,5 +RC Train,Horizon Express,1349,2013,Tan,1 +RC Train,Horizon Express,1349,2013,Trans-Clear,8 +RC Train,Horizon Express,1349,2013,Trans-Green,1 +RC Train,Horizon Express,1349,2013,White,36 +RC Train,Horizon Express,1349,2013,Yellow,7 +RC Train,Horizon Express Kit,7,2013,[No Color],1 +RCX,ROBOLAB Starter Building Set,1712,1998,Bright Green,2 +RCX,ROBOLAB Starter Building Set,1712,1998,Dark Gray,6 +RCX,ROBOLAB Starter Building Set,1712,1998,Dark Turquoise,5 +RCX,ROBOLAB Starter Building Set,1712,1998,Green,13 +RCX,ROBOLAB Starter Building Set,1712,1998,Light Gray,50 +RCX,ROBOLAB Starter Building Set,1712,1998,Orange,5 +RCX,ROBOLAB Starter Building Set,1712,1998,Purple,1 +RCX,ROBOLAB Starter Building Set,1712,1998,Red,16 +RCX,ROBOLAB Starter Building Set,1712,1998,Trans-Clear,3 +RCX,ROBOLAB Starter Building Set,1712,1998,Trans-Dark Blue,3 +RCX,ROBOLAB Starter Building Set,1712,1998,Trans-Green,1 +RCX,ROBOLAB Starter Building Set,1712,1998,Trans-Neon Green,2 +RCX,ROBOLAB Starter Building Set,1712,1998,Trans-Neon Orange,1 +RCX,ROBOLAB Starter Building Set,1712,1998,Trans-Red,1 +RCX,ROBOLAB Starter Building Set,1712,1998,White,26 +RCX,ROBOLAB Starter Building Set,1712,1998,Yellow,15 +RCX,ROBOLAB Starter Building Set,1712,1998,Black,60 +RCX,ROBOLAB Starter Building Set,1712,1998,Blue,10 +RCX,"Robotics Invention System, Version 1.0",736,1998,Yellow,13 +RCX,"Robotics Invention System, Version 1.0",736,1998,Black,49 +RCX,"Robotics Invention System, Version 1.0",736,1998,Blue,7 +RCX,"Robotics Invention System, Version 1.0",736,1998,Dark Gray,5 +RCX,"Robotics Invention System, Version 1.0",736,1998,Dark Turquoise,1 +RCX,"Robotics Invention System, Version 1.0",736,1998,Green,9 +RCX,"Robotics Invention System, Version 1.0",736,1998,Light Gray,46 +RCX,"Robotics Invention System, Version 1.0",736,1998,Purple,1 +RCX,"Robotics Invention System, Version 1.0",736,1998,Royal Blue,1 +RCX,"Robotics Invention System, Version 1.0",736,1998,Trans-Neon Orange,1 +RCX,"Robotics Invention System, Version 1.0",736,1998,White,9 +RCX,Extreme Creatures,148,1998,Black,21 +RCX,Extreme Creatures,148,1998,Blue,2 +RCX,Extreme Creatures,148,1998,Brown,1 +RCX,Extreme Creatures,148,1998,Dark Gray,3 +RCX,Extreme Creatures,148,1998,Dark Turquoise,5 +RCX,Extreme Creatures,148,1998,Green,1 +RCX,Extreme Creatures,148,1998,Light Gray,11 +RCX,Extreme Creatures,148,1998,Purple,6 +RCX,Extreme Creatures,148,1998,Royal Blue,1 +RCX,Extreme Creatures,148,1998,Trans-Clear,1 +RCX,Extreme Creatures,148,1998,Trans-Neon Green,1 +RCX,Extreme Creatures,148,1998,Trans-Neon Orange,1 +RCX,Extreme Creatures,148,1998,White,3 +RCX,RoboSports,91,1998,Royal Blue,2 +RCX,RoboSports,91,1998,White,1 +RCX,RoboSports,91,1998,Yellow,8 +RCX,RoboSports,91,1998,Black,9 +RCX,RoboSports,91,1998,Blue,11 +RCX,RoboSports,91,1998,Light Gray,5 +RCX,RoboSports,91,1998,Red,1 +RCX,Infrared Transmission Tower,2,1998,Dark Gray,1 +RCX,Infrared Transmission Tower,2,1998,Light Gray,1 +RCX,Remote Control,1,1998,Black,1 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,[No Color],1 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Black,49 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Blue,14 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Bright Green,1 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Chrome Silver,1 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Dark Gray,7 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Dark Turquoise,1 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Green,9 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Light Gray,51 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Purple,1 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Tan,1 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Trans-Clear,1 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Trans-Dark Blue,1 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Trans-Neon Orange,1 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,White,11 +RCX,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],833,2002,Yellow,15 +RCX,Mini RCX Brick,4,2008,Dark Bluish Gray,1 +RCX,Mini RCX Brick,4,2008,Yellow,3 +Recreation,Derby Trotter,142,1989,Black,8 +Recreation,Derby Trotter,142,1989,Blue,3 +Recreation,Derby Trotter,142,1989,Brown,4 +Recreation,Derby Trotter,142,1989,Dark Gray,1 +Recreation,Derby Trotter,142,1989,Green,3 +Recreation,Derby Trotter,142,1989,Light Gray,7 +Recreation,Derby Trotter,142,1989,Red,8 +Recreation,Derby Trotter,142,1989,Trans-Clear,1 +Recreation,Derby Trotter,142,1989,Trans-Yellow,1 +Recreation,Derby Trotter,142,1989,White,17 +Recreation,Derby Trotter,142,1989,Yellow,6 +Recreation,Prize Pony Stables,124,1994,Black,4 +Recreation,Prize Pony Stables,124,1994,Blue,9 +Recreation,Prize Pony Stables,124,1994,Brown,2 +Recreation,Prize Pony Stables,124,1994,Chrome Silver,1 +Recreation,Prize Pony Stables,124,1994,Dark Gray,1 +Recreation,Prize Pony Stables,124,1994,Dark Pink,10 +Recreation,Prize Pony Stables,124,1994,Green,3 +Recreation,Prize Pony Stables,124,1994,Light Green,1 +Recreation,Prize Pony Stables,124,1994,Light Violet,5 +Recreation,Prize Pony Stables,124,1994,Light Yellow,2 +Recreation,Prize Pony Stables,124,1994,Medium Green,5 +Recreation,Prize Pony Stables,124,1994,Pink,5 +Recreation,Prize Pony Stables,124,1994,Red,1 +Recreation,Prize Pony Stables,124,1994,Unknown,2 +Recreation,Prize Pony Stables,124,1994,White,9 +Recreation,Prize Pony Stables,124,1994,Yellow,4 +Recreation,Aircraft and Boat,100,1999,Black,16 +Recreation,Aircraft and Boat,100,1999,Brown,4 +Recreation,Aircraft and Boat,100,1999,Dark Gray,4 +Recreation,Aircraft and Boat,100,1999,Green,5 +Recreation,Aircraft and Boat,100,1999,Light Gray,7 +Recreation,Aircraft and Boat,100,1999,Red,13 +Recreation,Aircraft and Boat,100,1999,Trans-Green,1 +Recreation,Aircraft and Boat,100,1999,Trans-Light Blue,2 +Recreation,Aircraft and Boat,100,1999,Trans-Red,1 +Recreation,Aircraft and Boat,100,1999,White,1 +Recreation,Aircraft and Boat,100,1999,Yellow,13 +Recreation,Ferris Wheel,1066,2007,Black,19 +Recreation,Ferris Wheel,1066,2007,Blue,9 +Recreation,Ferris Wheel,1066,2007,Dark Blue,1 +Recreation,Ferris Wheel,1066,2007,Dark Bluish Gray,18 +Recreation,Ferris Wheel,1066,2007,Dark Red,2 +Recreation,Ferris Wheel,1066,2007,Green,6 +Recreation,Ferris Wheel,1066,2007,Light Bluish Gray,32 +Recreation,Ferris Wheel,1066,2007,Red,7 +Recreation,Ferris Wheel,1066,2007,Reddish Brown,2 +Recreation,Ferris Wheel,1066,2007,Tan,2 +Recreation,Ferris Wheel,1066,2007,Trans-Clear,2 +Recreation,Ferris Wheel,1066,2007,Trans-Green,1 +Recreation,Ferris Wheel,1066,2007,White,8 +Recreation,Ferris Wheel,1066,2007,Yellow,5 +Recreation,Pony Stable,215,2008,Dark Orange,2 +Recreation,Pony Stable,215,2008,Dark Pink,8 +Recreation,Pony Stable,215,2008,Green,2 +Recreation,Pony Stable,215,2008,Lime,2 +Recreation,Pony Stable,215,2008,Magenta,2 +Recreation,Pony Stable,215,2008,Orange,1 +Recreation,Pony Stable,215,2008,Pearl Gold,1 +Recreation,Pony Stable,215,2008,Pearl Light Gray,2 +Recreation,Pony Stable,215,2008,Red,6 +Recreation,Pony Stable,215,2008,Reddish Brown,4 +Recreation,Pony Stable,215,2008,Trans-Dark Pink,1 +Recreation,Pony Stable,215,2008,Trans-Light Blue,1 +Recreation,Pony Stable,215,2008,White,22 +Recreation,Pony Stable,215,2008,Yellow,5 +Recreation,Pony Stable,215,2008,Black,2 +Recreation,Pony Stable,215,2008,Blue,1 +Recreation,Pony Stable,215,2008,Bright Green,6 +Recreation,Pony Stable,215,2008,Bright Light Orange,1 +Recreation,Pony Stable,215,2008,Bright Pink,1 +Recreation,Pony Jumping,57,2008,[No Color],1 +Recreation,Pony Jumping,57,2008,Black,2 +Recreation,Pony Jumping,57,2008,Bright Green,1 +Recreation,Pony Jumping,57,2008,Bright Pink,1 +Recreation,Pony Jumping,57,2008,Dark Orange,1 +Recreation,Pony Jumping,57,2008,Dark Pink,1 +Recreation,Pony Jumping,57,2008,Glitter Trans-Dark Pink,1 +Recreation,Pony Jumping,57,2008,Green,2 +Recreation,Pony Jumping,57,2008,Magenta,2 +Recreation,Pony Jumping,57,2008,Metallic Gold,1 +Recreation,Pony Jumping,57,2008,Red,3 +Recreation,Pony Jumping,57,2008,Reddish Brown,1 +Recreation,Pony Jumping,57,2008,Trans-Dark Pink,1 +Recreation,Pony Jumping,57,2008,White,6 +Res-Q,Emergency Response Center,425,1998,Dark Gray,12 +Res-Q,Emergency Response Center,425,1998,Light Gray,36 +Res-Q,Emergency Response Center,425,1998,Red,5 +Res-Q,Emergency Response Center,425,1998,Yellow,34 +Res-Q,Emergency Response Center,425,1998,Trans-Dark Blue,7 +Res-Q,Emergency Response Center,425,1998,White,32 +Res-Q,Emergency Response Center,425,1998,Trans-Yellow,2 +Res-Q,Emergency Response Center,425,1998,Trans-Light Blue,1 +Res-Q,Emergency Response Center,425,1998,Trans-Red,3 +Res-Q,Emergency Response Center,425,1998,Trans-Neon Green,3 +Res-Q,Emergency Response Center,425,1998,Trans-Green,1 +Res-Q,Emergency Response Center,425,1998,Black,51 +Res-Q,Res-Q Cruiser,305,1998,Trans-Red,2 +Res-Q,Res-Q Cruiser,305,1998,White,17 +Res-Q,Res-Q Cruiser,305,1998,Yellow,23 +Res-Q,Res-Q Cruiser,305,1998,Dark Gray,6 +Res-Q,Res-Q Cruiser,305,1998,Black,39 +Res-Q,Res-Q Cruiser,305,1998,Chrome Silver,1 +Res-Q,Res-Q Cruiser,305,1998,Light Gray,22 +Res-Q,Res-Q Cruiser,305,1998,Red,2 +Res-Q,Res-Q Cruiser,305,1998,Trans-Dark Blue,4 +Res-Q,Res-Q Cruiser,305,1998,Trans-Green,1 +Res-Q,Res-Q Cruiser,305,1998,Trans-Neon Green,1 +Res-Q,Aerial Recovery,197,1998,Black,48 +Res-Q,Aerial Recovery,197,1998,Blue,2 +Res-Q,Aerial Recovery,197,1998,Dark Gray,4 +Res-Q,Aerial Recovery,197,1998,Light Gray,19 +Res-Q,Aerial Recovery,197,1998,Red,1 +Res-Q,Aerial Recovery,197,1998,Trans-Dark Blue,3 +Res-Q,Aerial Recovery,197,1998,Trans-Green,1 +Res-Q,Aerial Recovery,197,1998,Trans-Neon Green,3 +Res-Q,Aerial Recovery,197,1998,Trans-Red,1 +Res-Q,Aerial Recovery,197,1998,White,11 +Res-Q,Aerial Recovery,197,1998,Yellow,19 +Res-Q,Aerial Recovery,197,1998,Trans-Light Blue,1 +Res-Q,River Response,152,1998,Trans-Red,2 +Res-Q,River Response,152,1998,Trans-Yellow,1 +Res-Q,River Response,152,1998,White,9 +Res-Q,River Response,152,1998,Yellow,16 +Res-Q,River Response,152,1998,Trans-Green,1 +Res-Q,River Response,152,1998,Dark Gray,4 +Res-Q,River Response,152,1998,Trans-Neon Green,1 +Res-Q,River Response,152,1998,Light Gray,10 +Res-Q,River Response,152,1998,Red,4 +Res-Q,River Response,152,1998,Trans-Dark Blue,2 +Res-Q,River Response,152,1998,Black,26 +Res-Q,Emergency Evac,99,1998,Black,18 +Res-Q,Emergency Evac,99,1998,Dark Gray,7 +Res-Q,Emergency Evac,99,1998,Light Gray,10 +Res-Q,Emergency Evac,99,1998,White,13 +Res-Q,Emergency Evac,99,1998,Trans-Yellow,2 +Res-Q,Emergency Evac,99,1998,Trans-Red,2 +Res-Q,Emergency Evac,99,1998,Trans-Dark Blue,2 +Res-Q,Emergency Evac,99,1998,Yellow,6 +Res-Q,Emergency Evac,99,1998,Trans-Light Blue,1 +Res-Q,Emergency Evac,99,1998,Trans-Neon Green,1 +Res-Q,Res-Q Lifeguard,69,1998,Pink,1 +Res-Q,Res-Q Lifeguard,69,1998,[No Color],1 +Res-Q,Res-Q Lifeguard,69,1998,Trans-Light Blue,1 +Res-Q,Res-Q Lifeguard,69,1998,Trans-Red,2 +Res-Q,Res-Q Lifeguard,69,1998,White,10 +Res-Q,Res-Q Lifeguard,69,1998,Yellow,10 +Res-Q,Res-Q Lifeguard,69,1998,Black,14 +Res-Q,Res-Q Lifeguard,69,1998,Brown,1 +Res-Q,Res-Q Lifeguard,69,1998,Dark Gray,1 +Res-Q,Res-Q Lifeguard,69,1998,Light Gray,4 +Res-Q,Res-Q Lifeguard,69,1998,Trans-Dark Blue,3 +Res-Q,Road Rescue,48,1998,Trans-Dark Blue,2 +Res-Q,Road Rescue,48,1998,Trans-Red,2 +Res-Q,Road Rescue,48,1998,Trans-Yellow,1 +Res-Q,Road Rescue,48,1998,White,6 +Res-Q,Road Rescue,48,1998,Yellow,6 +Res-Q,Road Rescue,48,1998,Black,11 +Res-Q,Road Rescue,48,1998,Dark Gray,4 +Res-Q,Res-Q Jet-Ski,18,1998,Black,4 +Res-Q,Res-Q Jet-Ski,18,1998,Light Gray,2 +Res-Q,Res-Q Jet-Ski,18,1998,Trans-Dark Blue,1 +Res-Q,Res-Q Jet-Ski,18,1998,White,4 +Res-Q,Res-Q Jet-Ski,18,1998,Yellow,6 +Res-Q,Wave Saver,18,1998,Black,4 +Res-Q,Wave Saver,18,1998,Light Gray,2 +Res-Q,Wave Saver,18,1998,Trans-Dark Blue,1 +Res-Q,Wave Saver,18,1998,White,4 +Res-Q,Wave Saver,18,1998,Yellow,6 +Res-Q,Res-Q Runner,18,1999,Black,4 +Res-Q,Res-Q Runner,18,1999,Light Gray,2 +Res-Q,Res-Q Runner,18,1999,Trans-Dark Blue,1 +Res-Q,Res-Q Runner,18,1999,White,4 +Res-Q,Res-Q Runner,18,1999,Yellow,6 +Riding Cycle,Motorcycle,103,1983,Black,14 +Riding Cycle,Motorcycle,103,1983,Light Gray,10 +Riding Cycle,Motorcycle,103,1983,Red,12 +Riding Cycle,Motorcycle,103,1983,Yellow,1 +Riding Cycle,Revvin' Riders,362,2006,Black,26 +Riding Cycle,Revvin' Riders,362,2006,Blue,1 +Riding Cycle,Revvin' Riders,362,2006,Dark Bluish Gray,24 +Riding Cycle,Revvin' Riders,362,2006,Light Bluish Gray,27 +Riding Cycle,Revvin' Riders,362,2006,Metallic Silver,3 +Riding Cycle,Revvin' Riders,362,2006,Red,10 +Riding Cycle,Revvin' Riders,362,2006,Tan,1 +Riding Cycle,Revvin' Riders,362,2006,Trans-Black,1 +Riding Cycle,Revvin' Riders,362,2006,Trans-Clear,2 +Riding Cycle,Revvin' Riders,362,2006,Trans-Red,1 +Riding Cycle,Revvin' Riders,362,2006,Trans-Yellow,1 +Riding Cycle,Revvin' Riders,362,2006,White,1 +Riding Cycle,Revvin' Riders,362,2006,Yellow,26 +Riding Cycle,Race Rider,266,2009,Black,20 +Riding Cycle,Race Rider,266,2009,Blue,27 +Riding Cycle,Race Rider,266,2009,Dark Bluish Gray,15 +Riding Cycle,Race Rider,266,2009,Light Bluish Gray,23 +Riding Cycle,Race Rider,266,2009,Red,8 +Riding Cycle,Race Rider,266,2009,Trans-Black,3 +Riding Cycle,Race Rider,266,2009,Trans-Orange,1 +Riding Cycle,Race Rider,266,2009,Trans-Red,1 +Riding Cycle,Race Rider,266,2009,White,17 +Riding Cycle,Street Motorcycle,374,2015,Black,19 +Riding Cycle,Street Motorcycle,374,2015,Blue,3 +Riding Cycle,Street Motorcycle,374,2015,Dark Bluish Gray,15 +Riding Cycle,Street Motorcycle,374,2015,Dark Tan,1 +Riding Cycle,Street Motorcycle,374,2015,Flat Silver,1 +Riding Cycle,Street Motorcycle,374,2015,Light Bluish Gray,16 +Riding Cycle,Street Motorcycle,374,2015,Medium Blue,8 +Riding Cycle,Street Motorcycle,374,2015,Metallic Silver,1 +Riding Cycle,Street Motorcycle,374,2015,Red,14 +Riding Cycle,Street Motorcycle,374,2015,Tan,2 +Riding Cycle,Street Motorcycle,374,2015,Trans-Clear,1 +Riding Cycle,Street Motorcycle,374,2015,Trans-Red,1 +Riding Cycle,Street Motorcycle,374,2015,Yellow,3 +RoboForce,Robo Master,362,1997,[No Color],1 +RoboForce,Robo Master,362,1997,Black,61 +RoboForce,Robo Master,362,1997,Blue,9 +RoboForce,Robo Master,362,1997,Dark Gray,2 +RoboForce,Robo Master,362,1997,Light Gray,30 +RoboForce,Robo Master,362,1997,Red,1 +RoboForce,Robo Master,362,1997,Trans-Neon Green,9 +RoboForce,Robo Master,362,1997,Trans-Red,1 +RoboForce,Robo Master,362,1997,White,4 +RoboForce,Robo Master,362,1997,Yellow,3 +RoboForce,Robo Stalker,279,1997,Yellow,1 +RoboForce,Robo Stalker,279,1997,Black,48 +RoboForce,Robo Stalker,279,1997,Blue,2 +RoboForce,Robo Stalker,279,1997,Dark Gray,1 +RoboForce,Robo Stalker,279,1997,Light Gray,32 +RoboForce,Robo Stalker,279,1997,Red,2 +RoboForce,Robo Stalker,279,1997,Trans-Dark Blue,4 +RoboForce,Robo Stalker,279,1997,Trans-Neon Orange,8 +RoboForce,Robo Stalker,279,1997,White,4 +RoboForce,Robo Raptor,222,1997,Trans-Neon Green,6 +RoboForce,Robo Raptor,222,1997,Black,41 +RoboForce,Robo Raptor,222,1997,Blue,2 +RoboForce,Robo Raptor,222,1997,Dark Gray,1 +RoboForce,Robo Raptor,222,1997,Light Gray,19 +RoboForce,Robo Raptor,222,1997,Red,2 +RoboForce,Robo Raptor,222,1997,Yellow,6 +RoboForce,Robo Raider,137,1997,Dark Gray,1 +RoboForce,Robo Raider,137,1997,Light Gray,21 +RoboForce,Robo Raider,137,1997,Trans-Neon Orange,7 +RoboForce,Robo Raider,137,1997,Yellow,1 +RoboForce,Robo Raider,137,1997,Blue,6 +RoboForce,Robo Raider,137,1997,Black,34 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Tan,5 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Trans-Light Blue,2 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Trans-Neon Orange,1 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Trans-Red,1 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,White,8 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Yellow,6 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Black,34 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Chrome Silver,1 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Dark Gray,6 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Dark Turquoise,3 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Glow In Dark Opaque,1 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Light Gray,7 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Lime,7 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Orange,1 +RoboRiders,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],211,2000,Red,6 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Black,34 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,White,8 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Chrome Silver,1 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Dark Gray,3 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Dark Turquoise,3 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Glow In Dark Opaque,1 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Light Gray,5 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Tan,6 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Trans-Light Blue,2 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Trans-Neon Orange,1 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Trans-Red,1 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Lime,5 +RoboRiders,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],153,2000,Yellow,6 +RoboRiders,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],146,2000,Light Gray,6 +RoboRiders,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],146,2000,White,7 +RoboRiders,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],146,2000,Glow In Dark Opaque,1 +RoboRiders,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],146,2000,Black,25 +RoboRiders,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],146,2000,Dark Gray,6 +RoboRiders,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],146,2000,Dark Turquoise,4 +RoboRiders,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],146,2000,Lime,7 +RoboRiders,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],146,2000,Tan,7 +RoboRiders,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],146,2000,Trans-Light Blue,2 +RoboRiders,The Boss,124,2000,Light Gray,3 +RoboRiders,The Boss,124,2000,Dark Gray,6 +RoboRiders,The Boss,124,2000,Orange,5 +RoboRiders,The Boss,124,2000,Black,23 +RoboRiders,Dust + Lava + Swamp [8509 + 8510 + 8513],96,2000,Tan,7 +RoboRiders,Dust + Lava + Swamp [8509 + 8510 + 8513],96,2000,Red,6 +RoboRiders,Dust + Lava + Swamp [8509 + 8510 + 8513],96,2000,Orange,1 +RoboRiders,Dust + Lava + Swamp [8509 + 8510 + 8513],96,2000,Lime,4 +RoboRiders,Dust + Lava + Swamp [8509 + 8510 + 8513],96,2000,Light Gray,5 +RoboRiders,Dust + Lava + Swamp [8509 + 8510 + 8513],96,2000,Dark Gray,1 +RoboRiders,Dust + Lava + Swamp [8509 + 8510 + 8513],96,2000,Chrome Silver,1 +RoboRiders,Dust + Lava + Swamp [8509 + 8510 + 8513],96,2000,Black,15 +RoboRiders,Frost + Onyx + Power [8511 + 8512 + 8514],90,2000,Black,25 +RoboRiders,Frost + Onyx + Power [8511 + 8512 + 8514],90,2000,Dark Gray,5 +RoboRiders,Frost + Onyx + Power [8511 + 8512 + 8514],90,2000,Light Gray,3 +RoboRiders,Frost + Onyx + Power [8511 + 8512 + 8514],90,2000,Trans-Light Blue,1 +RoboRiders,Frost + Onyx + Power [8511 + 8512 + 8514],90,2000,Trans-Neon Orange,1 +RoboRiders,Frost + Onyx + Power [8511 + 8512 + 8514],90,2000,White,7 +RoboRiders,Frost + Onyx + Power [8511 + 8512 + 8514],90,2000,Yellow,5 +RoboRiders,Frost + Onyx + Power [8511 + 8512 + 8514],90,2000,Trans-Red,1 +RoboRiders,Frost + Dust (8511 + 8513),73,2000,White,8 +RoboRiders,Frost + Dust (8511 + 8513),73,2000,Trans-Light Blue,1 +RoboRiders,Frost + Dust (8511 + 8513),73,2000,Tan,8 +RoboRiders,Frost + Dust (8511 + 8513),73,2000,Light Gray,3 +RoboRiders,Frost + Dust (8511 + 8513),73,2000,Dark Gray,3 +RoboRiders,Frost + Dust (8511 + 8513),73,2000,Black,14 +RoboRiders,Swamp + Lava (8509 + 8510),63,2000,Light Gray,3 +RoboRiders,Swamp + Lava (8509 + 8510),63,2000,Black,12 +RoboRiders,Swamp + Lava (8509 + 8510),63,2000,Dark Turquoise,3 +RoboRiders,Swamp + Lava (8509 + 8510),63,2000,Lime,7 +RoboRiders,Swamp + Lava (8509 + 8510),63,2000,Red,4 +RoboRiders,Onyx + Power (8512 + 8514),47,2000,Trans-Red,1 +RoboRiders,Onyx + Power (8512 + 8514),47,2000,Yellow,4 +RoboRiders,Onyx + Power (8512 + 8514),47,2000,Trans-Neon Orange,1 +RoboRiders,Onyx + Power (8512 + 8514),47,2000,Black,15 +RoboRiders,Onyx + Power (8512 + 8514),47,2000,Dark Gray,1 +RoboRiders,Onyx + Power (8512 + 8514),47,2000,Light Gray,3 +RoboRiders,Dust,45,2000,Light Gray,3 +RoboRiders,Dust,45,2000,Black,10 +RoboRiders,Dust,45,2000,Chrome Silver,1 +RoboRiders,Dust,45,2000,Dark Gray,1 +RoboRiders,Dust,45,2000,Tan,9 +RoboRiders,Swamp,45,2000,Light Gray,4 +RoboRiders,Swamp,45,2000,Lime,8 +RoboRiders,Swamp,45,2000,Dark Turquoise,4 +RoboRiders,Swamp,45,2000,Black,7 +RoboRiders,Frost,44,2000,Trans-Light Blue,2 +RoboRiders,Frost,44,2000,Black,9 +RoboRiders,Frost,44,2000,Dark Gray,3 +RoboRiders,Frost,44,2000,Light Gray,2 +RoboRiders,Frost,44,2000,White,9 +RoboRiders,Onyx,38,2000,Trans-Red,1 +RoboRiders,Onyx,38,2000,Dark Gray,2 +RoboRiders,Onyx,38,2000,Glow In Dark Opaque,1 +RoboRiders,Onyx,38,2000,Light Gray,3 +RoboRiders,Onyx,38,2000,Black,17 +RoboRiders,Kabaya Promotional Set: Red (Volcano Climber) RoboRider,35,2000,Dark Gray,1 +RoboRiders,Kabaya Promotional Set: Red (Volcano Climber) RoboRider,35,2000,Flat Silver,1 +RoboRiders,Kabaya Promotional Set: Red (Volcano Climber) RoboRider,35,2000,Light Gray,2 +RoboRiders,Volcano Climber,35,2000,Black,9 +RoboRiders,Lava,35,2000,Light Gray,2 +RoboRiders,Volcano Climber,35,2000,Dark Gray,1 +RoboRiders,Kabaya Promotional Set: Red (Volcano Climber) RoboRider,35,2000,Red,3 +RoboRiders,Kabaya Promotional Set: Red (Volcano Climber) RoboRider,35,2000,Black,9 +RoboRiders,Lava,35,2000,Red,6 +RoboRiders,Lava,35,2000,Black,10 +RoboRiders,Volcano Climber,35,2000,Red,3 +RoboRiders,Volcano Climber,35,2000,Light Gray,2 +RoboRiders,Volcano Climber,35,2000,Flat Silver,1 +RoboRiders,Lava,35,2000,Orange,1 +RoboRiders,Ice Explorer,34,2000,Black,7 +RoboRiders,Ice Explorer,34,2000,Light Gray,1 +RoboRiders,Ice Explorer,34,2000,White,5 +RoboRiders,Ice Explorer,34,2000,Trans-Light Blue,1 +RoboRiders,Ice Explorer,34,2000,Dark Gray,2 +RoboRiders,Ice Explorer,34,2000,Blue,1 +RoboRiders,Kabaya Promotional Set: White (Ice Explorer) RoboRider,33,2000,Blue,1 +RoboRiders,Kabaya Promotional Set: White (Ice Explorer) RoboRider,33,2000,Dark Gray,2 +RoboRiders,Kabaya Promotional Set: White (Ice Explorer) RoboRider,33,2000,Light Gray,1 +RoboRiders,Kabaya Promotional Set: White (Ice Explorer) RoboRider,33,2000,Trans-Light Blue,1 +RoboRiders,Kabaya Promotional Set: White (Ice Explorer) RoboRider,33,2000,White,5 +RoboRiders,Kabaya Promotional Set: White (Ice Explorer) RoboRider,33,2000,Black,7 +RoboRiders,Dirt Bike,32,2000,Yellow,5 +RoboRiders,Power,32,2000,Trans-Neon Orange,1 +RoboRiders,Power,32,2000,Light Gray,3 +RoboRiders,Power,32,2000,Black,14 +RoboRiders,Dirt Bike,32,2000,Light Gray,4 +RoboRiders,Dirt Bike,32,2000,Black,7 +RoboRiders,Power Bike,32,2000,Yellow,5 +RoboRiders,Power Bike,32,2000,Light Gray,4 +RoboRiders,Power Bike,32,2000,Black,7 +RoboRiders,Power,32,2000,Yellow,6 +RoboRiders,Kabaya Promotional Set: Yellow/Green (Swamp Craft) RoboRider,25,2000,Black,6 +RoboRiders,Kabaya Promotional Set: Yellow/Green (Swamp Craft) RoboRider,25,2000,Green,1 +RoboRiders,Kabaya Promotional Set: Yellow/Green (Swamp Craft) RoboRider,25,2000,Lime,1 +RoboRiders,Kabaya Promotional Set: Yellow/Green (Swamp Craft) RoboRider,25,2000,Trans-Neon Green,1 +RoboRiders,Kabaya Promotional Set: Yellow/Green (Swamp Craft) RoboRider,25,2000,Light Gray,2 +RoboRiders,Swamp Craft,25,2000,Black,6 +RoboRiders,Swamp Craft,25,2000,Green,1 +RoboRiders,Swamp Craft,25,2000,Trans-Neon Green,1 +RoboRiders,Swamp Craft,25,2000,Lime,1 +RoboRiders,Swamp Craft,25,2000,Light Gray,2 +RoboRiders,RoboRider Wheels,4,2000,[No Color],1 +Robot,Robot,327,1987,Black,30 +Robot,Robot,327,1987,Light Gray,24 +Robot,Robot,327,1987,Trans-Red,1 +Robot,Robot,327,1987,White,1 +Robot,Robot,327,1987,Yellow,20 +Robot,Honda Promotional Set,55,2001,Black,7 +Robot,Honda Promotional Set,55,2001,Dark Gray,1 +Robot,Honda Promotional Set,55,2001,Light Gray,1 +Robot,Honda Promotional Set,55,2001,White,11 +Robot,Mini Robots,77,2007,Black,9 +Robot,Mini Robots,77,2007,Blue,7 +Robot,Mini Robots,77,2007,Dark Bluish Gray,5 +Robot,Mini Robots,77,2007,Red,4 +Robot,Mini Robots,77,2007,Trans-Dark Blue,2 +Robot,Mini Robots,77,2007,Trans-Neon Green,1 +Robot,Mini Robots,77,2007,Trans-Neon Orange,1 +Robot,Mini Robots,77,2007,White,8 +Robot,Future Flyer,237,2015,Black,16 +Robot,Future Flyer,237,2015,Blue,1 +Robot,Future Flyer,237,2015,Dark Bluish Gray,17 +Robot,Future Flyer,237,2015,Light Bluish Gray,14 +Robot,Future Flyer,237,2015,Orange,4 +Robot,Future Flyer,237,2015,Pearl Dark Gray,1 +Robot,Future Flyer,237,2015,Red,2 +Robot,Future Flyer,237,2015,Trans-Light Blue,3 +Robot,Future Flyer,237,2015,White,20 +Rock Raiders,Rock Raiders HQ,414,1999,Black,31 +Rock Raiders,Rock Raiders HQ,414,1999,Trans-Neon Green,8 +Rock Raiders,Rock Raiders HQ,414,1999,Yellow,23 +Rock Raiders,Rock Raiders HQ,414,1999,Trans-Neon Orange,2 +Rock Raiders,Rock Raiders HQ,414,1999,Blue,2 +Rock Raiders,Rock Raiders HQ,414,1999,Brown,4 +Rock Raiders,Rock Raiders HQ,414,1999,Dark Gray,33 +Rock Raiders,Rock Raiders HQ,414,1999,Dark Turquoise,10 +Rock Raiders,Rock Raiders HQ,414,1999,Light Gray,22 +Rock Raiders,Rock Raiders HQ,414,1999,Orange,2 +Rock Raiders,Rock Raiders HQ,414,1999,Red,1 +Rock Raiders,Tunnel Transport,351,1999,Chrome Silver,1 +Rock Raiders,Tunnel Transport,351,1999,Brown,4 +Rock Raiders,Tunnel Transport,351,1999,Blue,2 +Rock Raiders,Tunnel Transport,351,1999,Black,28 +Rock Raiders,Tunnel Transport,351,1999,Yellow,16 +Rock Raiders,Tunnel Transport,351,1999,Trans-Neon Orange,1 +Rock Raiders,Tunnel Transport,351,1999,Trans-Neon Green,4 +Rock Raiders,Tunnel Transport,351,1999,Red,1 +Rock Raiders,Tunnel Transport,351,1999,Light Gray,20 +Rock Raiders,Tunnel Transport,351,1999,Dark Turquoise,8 +Rock Raiders,Tunnel Transport,351,1999,Dark Gray,24 +Rock Raiders,Chrome Crusher,168,1999,Black,15 +Rock Raiders,Chrome Crusher,168,1999,Chrome Silver,2 +Rock Raiders,Chrome Crusher,168,1999,Dark Gray,15 +Rock Raiders,Chrome Crusher,168,1999,Dark Turquoise,8 +Rock Raiders,Chrome Crusher,168,1999,Light Gray,14 +Rock Raiders,Chrome Crusher,168,1999,Red,1 +Rock Raiders,Chrome Crusher,168,1999,Trans-Neon Green,6 +Rock Raiders,Chrome Crusher,168,1999,Trans-Neon Orange,2 +Rock Raiders,Chrome Crusher,168,1999,Brown,5 +Rock Raiders,Chrome Crusher,168,1999,Yellow,8 +Rock Raiders,Granite Grinder,109,1999,[No Color],1 +Rock Raiders,Granite Grinder,109,1999,Black,11 +Rock Raiders,Granite Grinder,109,1999,Chrome Silver,1 +Rock Raiders,Granite Grinder,109,1999,Dark Gray,12 +Rock Raiders,Granite Grinder,109,1999,Dark Turquoise,6 +Rock Raiders,Granite Grinder,109,1999,Light Gray,6 +Rock Raiders,Granite Grinder,109,1999,Trans-Neon Green,3 +Rock Raiders,Granite Grinder,109,1999,Trans-Neon Orange,1 +Rock Raiders,Granite Grinder,109,1999,Yellow,9 +Rock Raiders,Granite Grinder,109,1999,Brown,2 +Rock Raiders,The Loader-Dozer,90,1999,Dark Turquoise,4 +Rock Raiders,The Loader-Dozer,90,1999,Black,10 +Rock Raiders,The Loader-Dozer,90,1999,Yellow,8 +Rock Raiders,The Loader-Dozer,90,1999,Brown,6 +Rock Raiders,The Loader-Dozer,90,1999,Dark Gray,6 +Rock Raiders,The Loader-Dozer,90,1999,Light Gray,13 +Rock Raiders,The Loader-Dozer,90,1999,Red,2 +Rock Raiders,Loader - Dozer,90,1999,Red,2 +Rock Raiders,Loader - Dozer,90,1999,[No Color],1 +Rock Raiders,Loader - Dozer,90,1999,Black,10 +Rock Raiders,Loader - Dozer,90,1999,Brown,6 +Rock Raiders,Loader - Dozer,90,1999,Dark Gray,6 +Rock Raiders,Loader - Dozer,90,1999,Dark Turquoise,4 +Rock Raiders,Loader - Dozer,90,1999,Light Gray,13 +Rock Raiders,The Loader-Dozer,90,1999,Trans-Neon Green,4 +Rock Raiders,Loader - Dozer,90,1999,Trans-Neon Green,4 +Rock Raiders,Loader - Dozer,90,1999,Trans-Neon Orange,1 +Rock Raiders,Loader - Dozer,90,1999,Yellow,8 +Rock Raiders,The Loader-Dozer,90,1999,Trans-Neon Orange,1 +Rock Raiders,Rock Raiders,48,1999,Red,2 +Rock Raiders,Rock Raiders,48,1999,Dark Turquoise,1 +Rock Raiders,Rock Raiders,48,1999,Light Gray,2 +Rock Raiders,Rock Raiders,48,1999,Yellow,6 +Rock Raiders,Rock Raiders,48,1999,Trans-Neon Orange,1 +Rock Raiders,Rock Raiders,48,1999,Trans-Neon Green,2 +Rock Raiders,Rock Raiders,48,1999,Orange,1 +Rock Raiders,Rock Raiders,48,1999,Black,8 +Rock Raiders,Rock Raiders,48,1999,Blue,2 +Rock Raiders,Rock Raiders,48,1999,Brown,3 +Rock Raiders,Rock Raiders,48,1999,Dark Gray,15 +Rock Raiders,Hover Scout,40,1999,Dark Gray,9 +Rock Raiders,Hover Scout,40,1999,Dark Turquoise,3 +Rock Raiders,Hover Scout,40,1999,Light Gray,4 +Rock Raiders,Hover Scout,40,1999,Trans-Neon Green,3 +Rock Raiders,Hover Scout,40,1999,Trans-Neon Orange,1 +Rock Raiders,Hover Scout,40,1999,Yellow,2 +Rock Raiders,Hover Scout,40,1999,Black,4 +Rock Raiders,Hover Scout,40,1999,Blue,2 +Rock Raiders,Rapid Rider,39,1999,Dark Gray,8 +Rock Raiders,Rapid Rider,39,1999,Red,1 +Rock Raiders,Rapid Rider,39,1999,Light Gray,5 +Rock Raiders,Rapid Rider,39,1999,Dark Turquoise,1 +Rock Raiders,Rapid Rider,39,1999,Brown,2 +Rock Raiders,Rapid Rider,39,1999,Blue,1 +Rock Raiders,Rapid Rider,39,1999,Black,4 +Rock Raiders,Rapid Rider,39,1999,Yellow,3 +Rock Raiders,Rapid Rider,39,1999,Trans-Neon Green,2 +Rock Raiders,Three Minifig Pack - Rock Raiders #3,29,2000,Light Gray,1 +Rock Raiders,Three Minifig Pack - Rock Raiders #3,29,2000,Dark Gray,7 +Rock Raiders,Three Minifig Pack - Rock Raiders #3,29,2000,Brown,3 +Rock Raiders,Three Minifig Pack - Rock Raiders #3,29,2000,Blue,1 +Rock Raiders,Three Minifig Pack - Rock Raiders #3,29,2000,Black,4 +Rock Raiders,Three Minifig Pack - Rock Raiders #3,29,2000,[No Color],3 +Rock Raiders,Three Minifig Pack - Rock Raiders #3,29,2000,Yellow,3 +Rock Raiders,Three Minifig Pack - Rock Raiders #3,29,2000,Trans-Light Blue,1 +Rock Raiders,Three Minifig Pack - Rock Raiders #3,29,2000,Trans-Neon Orange,1 +Rock Raiders,Drill Craft,27,2000,Dark Turquoise,2 +Rock Raiders,Drill Craft,27,2000,Light Gray,3 +Rock Raiders,Drill Craft,27,2000,Orange,2 +Rock Raiders,Drill Craft,27,2000,Trans-Neon Green,1 +Rock Raiders,Drill Craft,27,2000,Yellow,3 +Rock Raiders,Drill Craft,27,2000,Black,1 +Rock Raiders,Drill Craft,27,2000,Dark Gray,5 +Rock Raiders,Light Hover,25,2000,Dark Gray,6 +Rock Raiders,Light Hover,25,2000,Blue,2 +Rock Raiders,Light Hover,25,2000,Dark Turquoise,1 +Rock Raiders,Light Hover,25,2000,Light Gray,2 +Rock Raiders,Light Hover,25,2000,Trans-Neon Green,2 +Rock Raiders,Light Hover,25,2000,Yellow,3 +Rock Raiders,Three Minifig Pack - Rock Raiders #2,23,2000,Brown,3 +Rock Raiders,Three Minifig Pack - Rock Raiders #2,23,2000,Yellow,3 +Rock Raiders,Three Minifig Pack - Rock Raiders #2,23,2000,[No Color],3 +Rock Raiders,Three Minifig Pack - Rock Raiders #2,23,2000,Black,2 +Rock Raiders,Three Minifig Pack - Rock Raiders #2,23,2000,Red,1 +Rock Raiders,Three Minifig Pack - Rock Raiders #2,23,2000,Blue,1 +Rock Raiders,Three Minifig Pack - Rock Raiders #2,23,2000,Orange,2 +Rock Raiders,Three Minifig Pack - Rock Raiders #2,23,2000,Dark Gray,6 +Rock Raiders,Three Minifig Pack - Rock Raiders #2,23,2000,Light Gray,1 +Rock Raiders,Helicopter Transport,22,2000,Dark Turquoise,2 +Rock Raiders,Helicopter Transport,22,2000,Light Gray,4 +Rock Raiders,Helicopter Transport,22,2000,Trans-Neon Green,1 +Rock Raiders,Helicopter Transport,22,2000,Yellow,4 +Rock Raiders,{Rock Saw Vehicle},22,2000,Blue,1 +Rock Raiders,{Rock Saw Vehicle},22,2000,Black,2 +Rock Raiders,Helicopter Transport,22,2000,Black,1 +Rock Raiders,Helicopter Transport,22,2000,Brown,1 +Rock Raiders,{Rock Saw Vehicle},22,2000,Yellow,2 +Rock Raiders,Helicopter Transport,22,2000,Dark Gray,6 +Rock Raiders,{Rock Saw Vehicle},22,2000,Red,1 +Rock Raiders,{Rock Saw Vehicle},22,2000,Light Gray,4 +Rock Raiders,{Rock Saw Vehicle},22,2000,Dark Turquoise,1 +Rock Raiders,{Rock Saw Vehicle},22,2000,Dark Gray,2 +Rock Raiders,One Minifig Pack - Rock Raiders #1,8,2000,[No Color],1 +Rock Raiders,One Minifig Pack - Rock Raiders #1,8,2000,Brown,2 +Rock Raiders,One Minifig Pack - Rock Raiders #1,8,2000,Dark Gray,3 +Rock Raiders,One Minifig Pack - Rock Raiders #1,8,2000,Light Gray,1 +Rock Raiders,One Minifig Pack - Rock Raiders #1,8,2000,Yellow,1 +Rock Raiders,One Minifig Pack - Rock Raiders #1,8,2000,Trans-Neon Green,1 +Royal Knights,Royal Knight's Castle,764,1995,White,19 +Royal Knights,Royal Knight's Castle,764,1995,Trans-Yellow,2 +Royal Knights,Royal Knight's Castle,764,1995,Trans-Red,1 +Royal Knights,Royal Knight's Castle,764,1995,Red,17 +Royal Knights,Royal Knight's Castle,764,1995,Light Gray,69 +Royal Knights,Royal Knight's Castle,764,1995,Green,1 +Royal Knights,Royal Knight's Castle,764,1995,Glow In Dark Opaque,1 +Royal Knights,Royal Knight's Castle,764,1995,Dark Gray,7 +Royal Knights,Royal Knight's Castle,764,1995,Chrome Silver,1 +Royal Knights,Royal Knight's Castle,764,1995,Chrome Gold,1 +Royal Knights,Royal Knight's Castle,764,1995,Brown,13 +Royal Knights,Royal Knight's Castle,764,1995,Blue,14 +Royal Knights,Royal Knight's Castle,764,1995,Black,66 +Royal Knights,Royal Knight's Castle,764,1995,Yellow,6 +Royal Knights,Royal Drawbridge,259,1995,Blue,3 +Royal Knights,Royal Drawbridge,259,1995,Brown,10 +Royal Knights,Royal Drawbridge,259,1995,Chrome Silver,1 +Royal Knights,Royal Drawbridge,259,1995,Dark Gray,7 +Royal Knights,Royal Drawbridge,259,1995,Green,2 +Royal Knights,Royal Drawbridge,259,1995,Light Gray,28 +Royal Knights,Royal Drawbridge,259,1995,Red,11 +Royal Knights,Royal Drawbridge,259,1995,Trans-Dark Blue,1 +Royal Knights,Royal Drawbridge,259,1995,Trans-Green,1 +Royal Knights,Royal Drawbridge,259,1995,Trans-Neon Orange,1 +Royal Knights,Royal Drawbridge,259,1995,Trans-Red,1 +Royal Knights,Royal Drawbridge,259,1995,White,8 +Royal Knights,Royal Drawbridge,259,1995,Yellow,3 +Royal Knights,Royal Drawbridge,259,1995,Black,38 +Royal Knights,King's Carriage,127,1995,Chrome Silver,1 +Royal Knights,King's Carriage,127,1995,Yellow,7 +Royal Knights,King's Carriage,127,1995,White,12 +Royal Knights,King's Carriage,127,1995,Trans-Yellow,1 +Royal Knights,King's Carriage,127,1995,Trans-Red,1 +Royal Knights,King's Carriage,127,1995,Trans-Neon Orange,1 +Royal Knights,King's Carriage,127,1995,Red,4 +Royal Knights,King's Carriage,127,1995,Light Gray,1 +Royal Knights,King's Carriage,127,1995,Dark Gray,1 +Royal Knights,King's Carriage,127,1995,Chrome Gold,1 +Royal Knights,King's Carriage,127,1995,Brown,3 +Royal Knights,King's Carriage,127,1995,Blue,16 +Royal Knights,King's Carriage,127,1995,Black,24 +Royal Knights,Skeleton Surprise,74,1995,Brown,1 +Royal Knights,Skeleton Surprise,74,1995,Dark Gray,1 +Royal Knights,Skeleton Surprise,74,1995,Green,1 +Royal Knights,Skeleton Surprise,74,1995,Light Gray,22 +Royal Knights,Skeleton Surprise,74,1995,Red,2 +Royal Knights,Skeleton Surprise,74,1995,White,5 +Royal Knights,Skeleton Surprise,74,1995,Trans-Neon Orange,1 +Royal Knights,Skeleton Surprise,74,1995,Black,11 +Royal Knights,Skeleton Surprise,74,1995,Blue,1 +Royal Knights,Skeleton Surprise,74,1995,Yellow,2 +Royal Knights,Royal King,12,1995,Dark Gray,1 +Royal Knights,Royal King,12,1995,Red,2 +Royal Knights,Royal King,12,1995,White,4 +Royal Knights,Royal King,12,1995,Yellow,1 +Royal Knights,Royal King,12,1995,Blue,2 +Royal Knights,Royal King,12,1995,Chrome Gold,1 +Royal Knights,Royal King,12,1995,Chrome Silver,1 +Royal Knights,Thunder Arrow Boat,21,1998,Black,7 +Royal Knights,Thunder Arrow Boat,21,1998,Brown,1 +Royal Knights,Thunder Arrow Boat,21,1998,Dark Gray,2 +Royal Knights,Thunder Arrow Boat,21,1998,Red,3 +Royal Knights,Thunder Arrow Boat,21,1998,White,1 +Royal Knights,Thunder Arrow Boat,21,1998,Yellow,1 +Scala,House,28,1997,Light Salmon,3 +Scala,House,28,1997,Light Yellow,2 +Scala,House,28,1997,Salmon,2 +Scala,House,28,1997,White,8 +Scala,Kitchen Accessories,14,1997,Green,1 +Scala,Kitchen Accessories,14,1997,Bright Green,1 +Scala,Kitchen Accessories,14,1997,Earth Orange,3 +Scala,Kitchen Accessories,14,1997,Light Violet,3 +Scala,Kitchen Accessories,14,1997,Trans-Clear,1 +Scala,Kitchen Accessories,14,1997,Yellow,2 +Scala,Bathroom Accessories,13,1997,Light Green,2 +Scala,Bathroom Accessories,13,1997,Medium Green,6 +Scala,Bathroom Accessories,13,1997,Red,2 +Scala,Bathroom Accessories,13,1997,Yellow,1 +Scala,Andrea,1,1997,Red,1 +Scala,Floor Plate 1/1,1,1997,White,1 +Scala,Floor Plate 1/2,1,1997,White,1 +Scala,Emma,9,2011,Light Green,3 +Scala,Emma,9,2011,Milky White,1 +Scala,Emma,9,2011,Red,3 +Scala,Emma,9,2011,Unknown,1 +Scooby-Doo,Mystery Mansion,856,2015,White,17 +Scooby-Doo,Mystery Mansion,856,2015,Light Flesh,3 +Scooby-Doo,Mystery Mansion,856,2015,Lime,7 +Scooby-Doo,Mystery Mansion,856,2015,Medium Azure,4 +Scooby-Doo,Mystery Mansion,856,2015,Medium Blue,3 +Scooby-Doo,Mystery Mansion,856,2015,Medium Dark Flesh,3 +Scooby-Doo,Mystery Mansion,856,2015,Metallic Gold,1 +Scooby-Doo,Mystery Mansion,856,2015,Orange,7 +Scooby-Doo,Mystery Mansion,856,2015,Pearl Dark Gray,4 +Scooby-Doo,Mystery Mansion,856,2015,Pearl Gold,1 +Scooby-Doo,Mystery Mansion,856,2015,Red,10 +Scooby-Doo,Mystery Mansion,856,2015,Reddish Brown,40 +Scooby-Doo,Mystery Mansion,856,2015,Sand Green,4 +Scooby-Doo,Mystery Mansion,856,2015,Tan,5 +Scooby-Doo,Mystery Mansion,856,2015,Trans-Clear,9 +Scooby-Doo,Mystery Mansion,856,2015,Trans-Neon Orange,1 +Scooby-Doo,Mystery Mansion,856,2015,Trans-Yellow,2 +Scooby-Doo,Mystery Mansion,856,2015,Yellow,4 +Scooby-Doo,Mystery Mansion,856,2015,Black,51 +Scooby-Doo,Mystery Mansion,856,2015,Blue,1 +Scooby-Doo,Mystery Mansion,856,2015,Bright Green,1 +Scooby-Doo,Mystery Mansion,856,2015,Dark Bluish Gray,28 +Scooby-Doo,Mystery Mansion,856,2015,Dark Brown,1 +Scooby-Doo,Mystery Mansion,856,2015,Dark Green,4 +Scooby-Doo,Mystery Mansion,856,2015,Dark Purple,15 +Scooby-Doo,Mystery Mansion,856,2015,Dark Red,1 +Scooby-Doo,Mystery Mansion,856,2015,Flat Silver,1 +Scooby-Doo,Mystery Mansion,856,2015,Glow in Dark White,1 +Scooby-Doo,Mystery Mansion,856,2015,Green,11 +Scooby-Doo,Mystery Mansion,856,2015,Light Bluish Gray,35 +Scooby-Doo,Haunted Lighthouse,435,2015,Dark Bluish Gray,30 +Scooby-Doo,Haunted Lighthouse,435,2015,Dark Green,6 +Scooby-Doo,Haunted Lighthouse,435,2015,Dark Purple,2 +Scooby-Doo,Haunted Lighthouse,435,2015,Dark Red,9 +Scooby-Doo,Haunted Lighthouse,435,2015,Flat Silver,3 +Scooby-Doo,Haunted Lighthouse,435,2015,Glow in Dark White,1 +Scooby-Doo,Haunted Lighthouse,435,2015,Light Bluish Gray,21 +Scooby-Doo,Haunted Lighthouse,435,2015,Light Flesh,2 +Scooby-Doo,Haunted Lighthouse,435,2015,Lime,11 +Scooby-Doo,Haunted Lighthouse,435,2015,Medium Azure,6 +Scooby-Doo,Haunted Lighthouse,435,2015,Medium Dark Flesh,6 +Scooby-Doo,Haunted Lighthouse,435,2015,Medium Lavender,1 +Scooby-Doo,Haunted Lighthouse,435,2015,Orange,4 +Scooby-Doo,Haunted Lighthouse,435,2015,Black,21 +Scooby-Doo,Haunted Lighthouse,435,2015,Pearl Gold,3 +Scooby-Doo,Haunted Lighthouse,435,2015,Red,3 +Scooby-Doo,Haunted Lighthouse,435,2015,Reddish Brown,19 +Scooby-Doo,Haunted Lighthouse,435,2015,Sand Green,1 +Scooby-Doo,Haunted Lighthouse,435,2015,Tan,4 +Scooby-Doo,Haunted Lighthouse,435,2015,Trans-Clear,3 +Scooby-Doo,Haunted Lighthouse,435,2015,Trans-Green,1 +Scooby-Doo,Haunted Lighthouse,435,2015,Trans-Orange,3 +Scooby-Doo,Haunted Lighthouse,435,2015,Trans-Red,1 +Scooby-Doo,Haunted Lighthouse,435,2015,White,20 +Scooby-Doo,Haunted Lighthouse,435,2015,Yellow,3 +Scooby-Doo,Haunted Lighthouse,435,2015,Bright Green,1 +Scooby-Doo,Haunted Lighthouse,435,2015,Blue,9 +Scooby-Doo,Haunted Lighthouse,435,2015,Dark Blue,2 +Scooby-Doo,The Mystery Machine,300,2015,Medium Azure,17 +Scooby-Doo,The Mystery Machine,300,2015,Medium Dark Flesh,3 +Scooby-Doo,The Mystery Machine,300,2015,Olive Green,1 +Scooby-Doo,The Mystery Machine,300,2015,Orange,4 +Scooby-Doo,The Mystery Machine,300,2015,Red,4 +Scooby-Doo,The Mystery Machine,300,2015,Reddish Brown,9 +Scooby-Doo,The Mystery Machine,300,2015,Tan,2 +Scooby-Doo,The Mystery Machine,300,2015,Trans-Clear,2 +Scooby-Doo,The Mystery Machine,300,2015,Trans-Neon Green,1 +Scooby-Doo,The Mystery Machine,300,2015,Trans-Orange,1 +Scooby-Doo,The Mystery Machine,300,2015,Trans-Red,1 +Scooby-Doo,The Mystery Machine,300,2015,White,8 +Scooby-Doo,The Mystery Machine,300,2015,Yellow,3 +Scooby-Doo,The Mystery Machine,300,2015,Yellowish Green,1 +Scooby-Doo,The Mystery Machine,300,2015,Black,5 +Scooby-Doo,The Mystery Machine,300,2015,Bright Light Yellow,1 +Scooby-Doo,The Mystery Machine,300,2015,Dark Azure,1 +Scooby-Doo,The Mystery Machine,300,2015,Dark Bluish Gray,13 +Scooby-Doo,The Mystery Machine,300,2015,Dark Brown,2 +Scooby-Doo,The Mystery Machine,300,2015,Dark Green,1 +Scooby-Doo,The Mystery Machine,300,2015,Dark Red,1 +Scooby-Doo,The Mystery Machine,300,2015,Dark Tan,1 +Scooby-Doo,The Mystery Machine,300,2015,Green,2 +Scooby-Doo,The Mystery Machine,300,2015,Light Bluish Gray,23 +Scooby-Doo,The Mystery Machine,300,2015,Light Flesh,2 +Scooby-Doo,The Mystery Machine,300,2015,Lime,12 +Scooby-Doo,Mystery Plane Adventures,127,2015,Trans-Green,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,Blue,2 +Scooby-Doo,Mystery Plane Adventures,127,2015,Dark Bluish Gray,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,Dark Purple,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,Dark Red,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,Dark Tan,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,Flat Silver,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,Light Bluish Gray,9 +Scooby-Doo,Mystery Plane Adventures,127,2015,Reddish Brown,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,Light Flesh,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,Lime,16 +Scooby-Doo,Mystery Plane Adventures,127,2015,Medium Azure,6 +Scooby-Doo,Mystery Plane Adventures,127,2015,Medium Dark Flesh,3 +Scooby-Doo,Mystery Plane Adventures,127,2015,Orange,6 +Scooby-Doo,Mystery Plane Adventures,127,2015,Pearl Dark Gray,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,Pearl Gold,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,Red,2 +Scooby-Doo,Mystery Plane Adventures,127,2015,Black,4 +Scooby-Doo,Mystery Plane Adventures,127,2015,Tan,2 +Scooby-Doo,Mystery Plane Adventures,127,2015,Trans-Clear,3 +Scooby-Doo,Mystery Plane Adventures,127,2015,Trans-Red,1 +Scooby-Doo,Mystery Plane Adventures,127,2015,White,7 +Scooby-Doo,Mystery Plane Adventures,127,2015,Yellow,1 +Scooby-Doo,Mummy Museum Mystery,109,2015,Light Flesh,1 +Scooby-Doo,Mummy Museum Mystery,109,2015,Lime,2 +Scooby-Doo,Mummy Museum Mystery,109,2015,Pearl Gold,5 +Scooby-Doo,Mummy Museum Mystery,109,2015,Red,1 +Scooby-Doo,Mummy Museum Mystery,109,2015,Tan,10 +Scooby-Doo,Mummy Museum Mystery,109,2015,Trans-Clear,1 +Scooby-Doo,Mummy Museum Mystery,109,2015,Trans-Dark Blue,1 +Scooby-Doo,Mummy Museum Mystery,109,2015,Trans-Green,1 +Scooby-Doo,Mummy Museum Mystery,109,2015,Trans-Red,1 +Scooby-Doo,Mummy Museum Mystery,109,2015,White,4 +Scooby-Doo,Mummy Museum Mystery,109,2015,Medium Dark Flesh,3 +Scooby-Doo,Mummy Museum Mystery,109,2015,Dark Bluish Gray,6 +Scooby-Doo,Mummy Museum Mystery,109,2015,Dark Red,4 +Scooby-Doo,Mummy Museum Mystery,109,2015,Black,1 +Scooby-Doo,Mummy Museum Mystery,109,2015,Dark Tan,3 +Scooby-Doo,Mummy Museum Mystery,109,2015,Flat Silver,1 +Scooby-Doo,Mummy Museum Mystery,109,2015,Light Bluish Gray,11 +Scooby-Doo,Scooby-Doo,2,2016,Medium Dark Flesh,2 +Sculptures,Statue of Liberty,2899,2000,Light Gray,3 +Sculptures,Statue of Liberty,2899,2000,Sand Green,37 +Sculptures,Statue of Liberty,2899,2000,Yellow,9 +Sculptures,Lego Minifigure,1849,2000,Black,6 +Sculptures,Lego Minifigure,1849,2000,Blue,13 +Sculptures,Lego Minifigure,1849,2000,Dark Gray,1 +Sculptures,Lego Minifigure,1849,2000,Green,12 +Sculptures,Lego Minifigure,1849,2000,Light Gray,3 +Sculptures,Lego Minifigure,1849,2000,Red,29 +Sculptures,Lego Minifigure,1849,2000,Yellow,27 +Sculptures,Sydney Opera House,2988,2013,Black,45 +Sculptures,Sydney Opera House,2988,2013,Blue,16 +Sculptures,Sydney Opera House,2988,2013,Dark Bluish Gray,15 +Sculptures,Sydney Opera House,2988,2013,Dark Brown,1 +Sculptures,Sydney Opera House,2988,2013,Dark Tan,41 +Sculptures,Sydney Opera House,2988,2013,Green,1 +Sculptures,Sydney Opera House,2988,2013,Light Bluish Gray,30 +Sculptures,Sydney Opera House,2988,2013,Orange,2 +Sculptures,Sydney Opera House,2988,2013,Red,4 +Sculptures,Sydney Opera House,2988,2013,Reddish Brown,8 +Sculptures,Sydney Opera House,2988,2013,Tan,2 +Sculptures,Sydney Opera House,2988,2013,Trans-Black,7 +Sculptures,Sydney Opera House,2988,2013,Trans-Clear,1 +Sculptures,Sydney Opera House,2988,2013,Trans-Dark Blue,1 +Sculptures,Sydney Opera House,2988,2013,White,38 +Sculptures,Sydney Opera House,2988,2013,Yellow,7 +Seasonal,Halloween Bucket,200,2003,Red,4 +Seasonal,Halloween Bucket,200,2003,White,5 +Seasonal,Halloween Bucket,200,2003,Yellow,9 +Seasonal,Halloween Bucket,200,2003,Black,6 +Seasonal,Halloween Bucket,200,2003,Blue,9 +Seasonal,Halloween Bucket,200,2003,Dark Gray,2 +Seasonal,Halloween Bucket,200,2003,Green,6 +Seasonal,Halloween Bucket,200,2003,Light Gray,8 +Seasonal,Halloween Bucket,200,2003,Orange,9 +Seasonal,American Flag,35,2003,Blue,2 +Seasonal,American Flag,35,2003,Red,3 +Seasonal,American Flag,35,2003,White,4 +Seasonal,Elves' Workshop,238,2016,Light Bluish Gray,6 +Seasonal,Elves' Workshop,238,2016,Lime,3 +Seasonal,Elves' Workshop,238,2016,Medium Dark Flesh,1 +Seasonal,Elves' Workshop,238,2016,Pearl Gold,3 +Seasonal,Elves' Workshop,238,2016,Red,13 +Seasonal,Elves' Workshop,238,2016,Trans-Clear,1 +Seasonal,Elves' Workshop,238,2016,Reddish Brown,7 +Seasonal,Elves' Workshop,238,2016,Tan,10 +Seasonal,Elves' Workshop,238,2016,Black,4 +Seasonal,Elves' Workshop,238,2016,Blue,2 +Seasonal,Elves' Workshop,238,2016,Dark Bluish Gray,1 +Seasonal,Elves' Workshop,238,2016,Dark Tan,4 +Seasonal,Elves' Workshop,238,2016,Green,11 +Seasonal,Elves' Workshop,238,2016,Trans-Green,1 +Seasonal,Elves' Workshop,238,2016,White,9 +Seasonal,Elves' Workshop,238,2016,Yellow,4 +Seasonal,Christmas Ornament,215,2016,Dark Red,7 +Seasonal,Christmas Ornament,215,2016,Dark Tan,1 +Seasonal,Christmas Ornament,215,2016,Light Bluish Gray,6 +Seasonal,Christmas Ornament,215,2016,Lime,1 +Seasonal,Christmas Ornament,215,2016,Orange,1 +Seasonal,Christmas Ornament,215,2016,Pearl Gold,2 +Seasonal,Christmas Ornament,215,2016,Red,4 +Seasonal,Christmas Ornament,215,2016,Reddish Brown,3 +Seasonal,Christmas Ornament,215,2016,Tan,2 +Seasonal,Christmas Ornament,215,2016,Trans-Clear,2 +Seasonal,Christmas Ornament,215,2016,Trans-Dark Blue,1 +Seasonal,Christmas Ornament,215,2016,Trans-Orange,2 +Seasonal,Christmas Ornament,215,2016,Trans-Red,1 +Seasonal,Christmas Ornament,215,2016,Trans-Yellow,1 +Seasonal,Christmas Ornament,215,2016,White,7 +Seasonal,Christmas Ornament,215,2016,Yellow,4 +Seasonal,Christmas Ornament,215,2016,Green,7 +Seasonal,Christmas Ornament,215,2016,Bright Light Blue,1 +Seasonal,Christmas Ornament,215,2016,Dark Brown,1 +Seasonal,Christmas Ornament,215,2016,Dark Green,1 +Series 1,Volectro,70,2014,Yellow,13 +Series 1,Volectro,70,2014,White,2 +Series 1,Volectro,70,2014,Trans-Light Blue,1 +Series 1,Volectro,70,2014,Red,1 +Series 1,Volectro,70,2014,Light Bluish Gray,4 +Series 1,Volectro,70,2014,Dark Bluish Gray,1 +Series 1,Volectro,70,2014,Bright Light Orange,3 +Series 1,Vulk,69,2014,Light Bluish Gray,2 +Series 1,Vulk,69,2014,Dark Red,4 +Series 1,Vulk,69,2014,Dark Bluish Gray,1 +Series 1,Vulk,69,2014,Black,10 +Series 1,Vulk,69,2014,Red,7 +Series 1,Vulk,69,2014,Trans-Orange,1 +Series 1,Vulk,69,2014,White,3 +Series 1,Krader,66,2014,Black,10 +Series 1,Krader,66,2014,Dark Bluish Gray,8 +Series 1,Krader,66,2014,Light Bluish Gray,6 +Series 1,Krader,66,2014,Pearl Gold,1 +Series 1,Krader,66,2014,White,4 +Series 1,Zaptor,61,2014,Bright Light Orange,2 +Series 1,Zaptor,61,2014,Dark Bluish Gray,4 +Series 1,Zaptor,61,2014,Light Bluish Gray,3 +Series 1,Zaptor,61,2014,Trans-Light Blue,1 +Series 1,Zaptor,61,2014,White,2 +Series 1,Zaptor,61,2014,Yellow,13 +Series 1,Flain,58,2014,Black,3 +Series 1,Flain,58,2014,Dark Red,5 +Series 1,Flain,58,2014,Light Bluish Gray,2 +Series 1,Flain,58,2014,Red,14 +Series 1,Flain,58,2014,Trans-Neon Orange,1 +Series 1,Flain,58,2014,Trans-Red,1 +Series 1,Flain,58,2014,White,2 +Series 1,Teslo,54,2014,Dark Bluish Gray,2 +Series 1,Teslo,54,2014,Light Bluish Gray,4 +Series 1,Teslo,54,2014,Trans-Light Blue,1 +Series 1,Teslo,54,2014,White,3 +Series 1,Teslo,54,2014,Yellow,11 +Series 1,Teslo,54,2014,Black,8 +Series 1,Teslo,54,2014,Bright Light Orange,3 +Series 1,Shuff,51,2014,Dark Bluish Gray,8 +Series 1,Shuff,51,2014,Black,7 +Series 1,Shuff,51,2014,White,2 +Series 1,Shuff,51,2014,Tan,1 +Series 1,Shuff,51,2014,Pearl Gold,2 +Series 1,Shuff,51,2014,Light Bluish Gray,3 +Series 1,Siesmo,50,2014,White,1 +Series 1,Siesmo,50,2014,Pearl Gold,2 +Series 1,Siesmo,50,2014,Light Bluish Gray,5 +Series 1,Siesmo,50,2014,Dark Bluish Gray,8 +Series 1,Siesmo,50,2014,Black,6 +Series 1,Zorch,45,2014,Black,2 +Series 1,Zorch,45,2014,Dark Bluish Gray,2 +Series 1,Zorch,45,2014,Dark Red,5 +Series 1,Zorch,45,2014,Light Bluish Gray,1 +Series 1,Zorch,45,2014,Red,13 +Series 1,Zorch,45,2014,Trans-Red,1 +Series 1,Zorch,45,2014,White,2 +Series 1 Minifigures,Deep Sea Diver - Complete Set,9,2010,Blue,3 +Series 1 Minifigures,Deep Sea Diver - Complete Set,9,2010,Orange,2 +Series 1 Minifigures,Deep Sea Diver - Complete Set,9,2010,Trans-Light Blue,1 +Series 1 Minifigures,Deep Sea Diver - Complete Set,9,2010,Yellow,1 +Series 1 Minifigures,Deep Sea Diver - Complete Set,9,2010,Black,1 +Series 1 Minifigures,Skater - Complete Set,8,2010,Blue,1 +Series 1 Minifigures,Forestman - Complete Set,8,2010,Black,1 +Series 1 Minifigures,Forestman - Complete Set,8,2010,Green,3 +Series 1 Minifigures,Forestman - Complete Set,8,2010,Red,1 +Series 1 Minifigures,Forestman - Complete Set,8,2010,Reddish Brown,2 +Series 1 Minifigures,Forestman - Complete Set,8,2010,Yellow,1 +Series 1 Minifigures,Skater - Complete Set,8,2010,Dark Blue,1 +Series 1 Minifigures,Skater - Complete Set,8,2010,Sand Green,1 +Series 1 Minifigures,Tribal Hunter - Complete Set,8,2010,Yellow,1 +Series 1 Minifigures,Skater - Complete Set,8,2010,Yellow,1 +Series 1 Minifigures,Spaceman - Complete Set,8,2010,Black,1 +Series 1 Minifigures,Spaceman - Complete Set,8,2010,Pearl Light Gray,1 +Series 1 Minifigures,Spaceman - Complete Set,8,2010,Trans-Black,1 +Series 1 Minifigures,Spaceman - Complete Set,8,2010,Trans-Light Blue,1 +Series 1 Minifigures,Spaceman - Complete Set,8,2010,White,3 +Series 1 Minifigures,Spaceman - Complete Set,8,2010,Yellow,1 +Series 1 Minifigures,Tribal Hunter - Complete Set,8,2010,Black,2 +Series 1 Minifigures,Tribal Hunter - Complete Set,8,2010,Reddish Brown,2 +Series 1 Minifigures,Tribal Hunter - Complete Set,8,2010,Tan,2 +Series 1 Minifigures,Tribal Hunter - Complete Set,8,2010,White,1 +Series 1 Minifigures,Skater - Complete Set,8,2010,Black,3 +Series 1 Minifigures,Magician - Complete Set,7,2010,Black,6 +Series 1 Minifigures,Nurse - Complete Set,7,2010,Black,1 +Series 1 Minifigures,Cowboy - Complete Set,7,2010,Black,1 +Series 1 Minifigures,Cowboy - Complete Set,7,2010,Dark Bluish Gray,1 +Series 1 Minifigures,Cheerleader - Complete Set,7,2010,Black,1 +Series 1 Minifigures,Cheerleader - Complete Set,7,2010,Blue,1 +Series 1 Minifigures,Cheerleader - Complete Set,7,2010,Bright Light Yellow,1 +Series 1 Minifigures,Cheerleader - Complete Set,7,2010,White,2 +Series 1 Minifigures,Cheerleader - Complete Set,7,2010,Yellow,1 +Series 1 Minifigures,Cowboy - Complete Set,7,2010,Dark Tan,2 +Series 1 Minifigures,Cowboy - Complete Set,7,2010,Reddish Brown,1 +Series 1 Minifigures,Cowboy - Complete Set,7,2010,Yellow,1 +Series 1 Minifigures,Nurse - Complete Set,7,2010,Dark Brown,1 +Series 1 Minifigures,Nurse - Complete Set,7,2010,Light Bluish Gray,1 +Series 1 Minifigures,Nurse - Complete Set,7,2010,White,3 +Series 1 Minifigures,Nurse - Complete Set,7,2010,Yellow,1 +Series 1 Minifigures,Magician - Complete Set,7,2010,Yellow,1 +Series 1 Minifigures,Circus Clown - Complete Set,6,2010,Lime,1 +Series 1 Minifigures,Caveman - Complete Set,6,2010,Black,2 +Series 1 Minifigures,Circus Clown - Complete Set,6,2010,Red,2 +Series 1 Minifigures,Circus Clown - Complete Set,6,2010,Yellow,1 +Series 1 Minifigures,Demolition Dummy - Complete Set,6,2010,Black,2 +Series 1 Minifigures,Demolition Dummy - Complete Set,6,2010,White,1 +Series 1 Minifigures,Circus Clown - Complete Set,6,2010,Pearl Gold,1 +Series 1 Minifigures,Ninja - Complete Set,6,2010,Black,4 +Series 1 Minifigures,Ninja - Complete Set,6,2010,Pearl Gold,1 +Series 1 Minifigures,Ninja - Complete Set,6,2010,Yellow,1 +Series 1 Minifigures,Demolition Dummy - Complete Set,6,2010,Yellow,3 +Series 1 Minifigures,Caveman - Complete Set,6,2010,Reddish Brown,1 +Series 1 Minifigures,Caveman - Complete Set,6,2010,Tan,1 +Series 1 Minifigures,Caveman - Complete Set,6,2010,Yellow,2 +Series 1 Minifigures,Circus Clown - Complete Set,6,2010,Black,1 +Series 1 Minifigures,Zombie - Complete Set,6,2010,Black,2 +Series 1 Minifigures,Zombie - Complete Set,6,2010,Dark Bluish Gray,2 +Series 1 Minifigures,Zombie - Complete Set,6,2010,Dark Orange,1 +Series 1 Minifigures,Zombie - Complete Set,6,2010,Light Bluish Gray,1 +Series 1 Minifigures,Super Wrestler - Complete Set,5,2010,Medium Blue,2 +Series 1 Minifigures,Super Wrestler - Complete Set,5,2010,Red,1 +Series 1 Minifigures,Super Wrestler - Complete Set,5,2010,Yellow,1 +Series 1 Minifigures,Robot - Complete Set,5,2010,Black,1 +Series 1 Minifigures,Robot - Complete Set,5,2010,Light Bluish Gray,3 +Series 1 Minifigures,Robot - Complete Set,5,2010,Metallic Silver,1 +Series 1 Minifigures,Robot - Complete Set,5,2010,Pearl Light Gray,1 +Series 1 Minifigures,Super Wrestler - Complete Set,5,2010,Black,1 +Series 10 Minifigures,Painter - Complete Set,9,2013,Black,1 +Series 10 Minifigures,Painter - Complete Set,9,2013,Light Bluish Gray,4 +Series 10 Minifigures,Painter - Complete Set,9,2013,Medium Azure,1 +Series 10 Minifigures,Painter - Complete Set,9,2013,White,2 +Series 10 Minifigures,Painter - Complete Set,9,2013,Yellow,1 +Series 10 Minifigures,Roman Commander - Complete Set,8,2013,Pearl Dark Gray,1 +Series 10 Minifigures,Roman Commander - Complete Set,8,2013,Black,1 +Series 10 Minifigures,Roman Commander - Complete Set,8,2013,Dark Red,1 +Series 10 Minifigures,Roman Commander - Complete Set,8,2013,Flat Silver,3 +Series 10 Minifigures,Roman Commander - Complete Set,8,2013,Yellow,2 +Series 10 Minifigures,Grandpa - Complete Set,7,2013,Yellow,2 +Series 10 Minifigures,Librarian - Complete Set,7,2013,Black,1 +Series 10 Minifigures,Librarian - Complete Set,7,2013,Dark Brown,1 +Series 10 Minifigures,Librarian - Complete Set,7,2013,Dark Red,1 +Series 10 Minifigures,Bumblebee Girl - Complete Set,7,2013,Bright Light Orange,3 +Series 10 Minifigures,Librarian - Complete Set,7,2013,Reddish Brown,1 +Series 10 Minifigures,Librarian - Complete Set,7,2013,White,1 +Series 10 Minifigures,Librarian - Complete Set,7,2013,Yellow,1 +Series 10 Minifigures,Paintball Player - Complete Set,7,2013,Black,3 +Series 10 Minifigures,Paintball Player - Complete Set,7,2013,Dark Bluish Gray,2 +Series 10 Minifigures,Paintball Player - Complete Set,7,2013,White,1 +Series 10 Minifigures,Paintball Player - Complete Set,7,2013,Yellow,1 +Series 10 Minifigures,Bumblebee Girl - Complete Set,7,2013,Black,1 +Series 10 Minifigures,Bumblebee Girl - Complete Set,7,2013,Reddish Brown,1 +Series 10 Minifigures,Bumblebee Girl - Complete Set,7,2013,Trans-Clear,1 +Series 10 Minifigures,Bumblebee Girl - Complete Set,7,2013,Yellow,1 +Series 10 Minifigures,Grandpa - Complete Set,7,2013,Black,1 +Series 10 Minifigures,Grandpa - Complete Set,7,2013,Dark Tan,1 +Series 10 Minifigures,Grandpa - Complete Set,7,2013,Light Bluish Gray,1 +Series 10 Minifigures,Grandpa - Complete Set,7,2013,Tan,1 +Series 10 Minifigures,Librarian - Complete Set,7,2013,Dark Tan,1 +Series 10 Minifigures,Grandpa - Complete Set,7,2013,White,1 +Series 10 Minifigures,Sea Captain - Complete Set,7,2013,Black,2 +Series 10 Minifigures,Sea Captain - Complete Set,7,2013,Dark Blue,1 +Series 10 Minifigures,Sea Captain - Complete Set,7,2013,White,3 +Series 10 Minifigures,Sea Captain - Complete Set,7,2013,Yellow,1 +Series 10 Minifigures,Trendsetter - Complete Set,7,2013,Black,2 +Series 10 Minifigures,Trendsetter - Complete Set,7,2013,Bright Light Yellow,1 +Series 10 Minifigures,Trendsetter - Complete Set,7,2013,Bright Pink,1 +Series 10 Minifigures,Trendsetter - Complete Set,7,2013,Medium Dark Flesh,1 +Series 10 Minifigures,Trendsetter - Complete Set,7,2013,White,1 +Series 10 Minifigures,Trendsetter - Complete Set,7,2013,Yellow,1 +Series 10 Minifigures,Warrior Woman - Complete Set,7,2013,Black,2 +Series 10 Minifigures,Warrior Woman - Complete Set,7,2013,Dark Brown,2 +Series 10 Minifigures,Warrior Woman - Complete Set,7,2013,Medium Dark Flesh,1 +Series 10 Minifigures,Warrior Woman - Complete Set,7,2013,Reddish Brown,1 +Series 10 Minifigures,Warrior Woman - Complete Set,7,2013,Yellow,1 +Series 10 Minifigures,Revolutionary Soldier - Complete Set,6,2013,White,2 +Series 10 Minifigures,Skydiver - Complete Set,6,2013,Black,1 +Series 10 Minifigures,Skydiver - Complete Set,6,2013,Dark Azure,2 +Series 10 Minifigures,Skydiver - Complete Set,6,2013,Lime,2 +Series 10 Minifigures,Skydiver - Complete Set,6,2013,Yellow,1 +Series 10 Minifigures,Tomahawk Warrior - Complete Set,6,2013,Black,2 +Series 10 Minifigures,Tomahawk Warrior - Complete Set,6,2013,Reddish Brown,1 +Series 10 Minifigures,Tomahawk Warrior - Complete Set,6,2013,Yellow,2 +Series 10 Minifigures,Revolutionary Soldier - Complete Set,6,2013,Yellow,1 +Series 10 Minifigures,Motorcycle Mechanic - Complete Set,6,2013,Yellow,1 +Series 10 Minifigures,Tomahawk Warrior - Complete Set,6,2013,Dark Tan,1 +Series 10 Minifigures,Motorcycle Mechanic - Complete Set,6,2013,Black,3 +Series 10 Minifigures,Motorcycle Mechanic - Complete Set,6,2013,Red,1 +Series 10 Minifigures,Motorcycle Mechanic - Complete Set,6,2013,Sand Blue,1 +Series 10 Minifigures,Sad Clown - Complete Set,6,2013,Black,2 +Series 10 Minifigures,Sad Clown - Complete Set,6,2013,White,4 +Series 10 Minifigures,Revolutionary Soldier - Complete Set,6,2013,Black,1 +Series 10 Minifigures,Revolutionary Soldier - Complete Set,6,2013,Dark Blue,1 +Series 10 Minifigures,Revolutionary Soldier - Complete Set,6,2013,Reddish Brown,1 +Series 10 Minifigures,Baseball Fielder - Complete Set,5,2013,Light Bluish Gray,3 +Series 10 Minifigures,Baseball Fielder - Complete Set,5,2013,Black,1 +Series 10 Minifigures,Medusa - Complete Set,5,2013,Black,1 +Series 10 Minifigures,Medusa - Complete Set,5,2013,Dark Green,1 +Series 10 Minifigures,Mr. Gold - Complete Set,5,2013,Black,1 +Series 10 Minifigures,Mr. Gold - Complete Set,5,2013,Chrome Gold,2 +Series 10 Minifigures,Mr. Gold - Complete Set,5,2013,Trans-Clear,1 +Series 10 Minifigures,Mr. Gold - Complete Set,5,2013,Unknown,1 +Series 10 Minifigures,Baseball Fielder - Complete Set,5,2013,Yellow,1 +Series 10 Minifigures,Medusa - Complete Set,5,2013,Green,1 +Series 10 Minifigures,Medusa - Complete Set,5,2013,Sand Green,2 +Series 11 Minifigures,Diner Waitress - Complete Set,10,2013,Medium Dark Flesh,1 +Series 11 Minifigures,Diner Waitress - Complete Set,10,2013,Black,1 +Series 11 Minifigures,Diner Waitress - Complete Set,10,2013,Bright Light Yellow,2 +Series 11 Minifigures,Diner Waitress - Complete Set,10,2013,Bright Pink,1 +Series 11 Minifigures,Diner Waitress - Complete Set,10,2013,Dark Pink,1 +Series 11 Minifigures,Diner Waitress - Complete Set,10,2013,Trans-Clear,1 +Series 11 Minifigures,Diner Waitress - Complete Set,10,2013,White,1 +Series 11 Minifigures,Diner Waitress - Complete Set,10,2013,Yellow,1 +Series 11 Minifigures,Holiday Elf - Complete Set,8,2013,Red,2 +Series 11 Minifigures,Holiday Elf - Complete Set,8,2013,Reddish Brown,1 +Series 11 Minifigures,Holiday Elf - Complete Set,8,2013,Yellow,2 +Series 11 Minifigures,Island Warrior - Complete set,8,2013,White,1 +Series 11 Minifigures,Island Warrior - Complete set,8,2013,Black,2 +Series 11 Minifigures,Island Warrior - Complete set,8,2013,Reddish Brown,2 +Series 11 Minifigures,Holiday Elf - Complete Set,8,2013,Black,1 +Series 11 Minifigures,Evil Mech - Complete Set,8,2013,Black,6 +Series 11 Minifigures,Evil Mech - Complete Set,8,2013,Lime,1 +Series 11 Minifigures,Evil Mech - Complete Set,8,2013,Trans-Neon Green,1 +Series 11 Minifigures,Holiday Elf - Complete Set,8,2013,Bright Green,1 +Series 11 Minifigures,Holiday Elf - Complete Set,8,2013,Green,1 +Series 11 Minifigures,Island Warrior - Complete set,8,2013,Yellow,3 +Series 11 Minifigures,Barbarian - Complete Set,7,2013,Dark Brown,1 +Series 11 Minifigures,Barbarian - Complete Set,7,2013,Flat Silver,1 +Series 11 Minifigures,Barbarian - Complete Set,7,2013,Yellow,2 +Series 11 Minifigures,Welder - Complete Set,7,2013,Dark Bluish Gray,1 +Series 11 Minifigures,Welder - Complete Set,7,2013,Light Bluish Gray,1 +Series 11 Minifigures,Welder - Complete Set,7,2013,Orange,1 +Series 11 Minifigures,Barbarian - Complete Set,7,2013,Black,2 +Series 11 Minifigures,Welder - Complete Set,7,2013,Pearl Dark Gray,1 +Series 11 Minifigures,Welder - Complete Set,7,2013,Yellow,1 +Series 11 Minifigures,Grandma - Complete Set,7,2013,Black,1 +Series 11 Minifigures,Grandma - Complete Set,7,2013,Lavender,1 +Series 11 Minifigures,Grandma - Complete Set,7,2013,Light Aqua,1 +Series 11 Minifigures,Grandma - Complete Set,7,2013,Medium Dark Flesh,1 +Series 11 Minifigures,Grandma - Complete Set,7,2013,Yellow,1 +Series 11 Minifigures,Grandma - Complete Set,7,2013,Light Bluish Gray,2 +Series 11 Minifigures,Mountain Climber - Complete Set,7,2013,Black,1 +Series 11 Minifigures,Mountain Climber - Complete Set,7,2013,Dark Bluish Gray,1 +Series 11 Minifigures,Mountain Climber - Complete Set,7,2013,Light Bluish Gray,1 +Series 11 Minifigures,Mountain Climber - Complete Set,7,2013,Red,3 +Series 11 Minifigures,Mountain Climber - Complete Set,7,2013,Yellow,1 +Series 11 Minifigures,Pretzel Girl - Complete Set,7,2013,Black,1 +Series 11 Minifigures,Pretzel Girl - Complete Set,7,2013,Bright Light Yellow,1 +Series 11 Minifigures,Pretzel Girl - Complete Set,7,2013,Dark Green,1 +Series 11 Minifigures,Pretzel Girl - Complete Set,7,2013,Medium Dark Flesh,1 +Series 11 Minifigures,Pretzel Girl - Complete Set,7,2013,White,2 +Series 11 Minifigures,Pretzel Girl - Complete Set,7,2013,Yellow,1 +Series 11 Minifigures,Scarecrow - Complete Set,7,2013,Black,2 +Series 11 Minifigures,Scarecrow - Complete Set,7,2013,Dark Tan,1 +Series 11 Minifigures,Scarecrow - Complete Set,7,2013,Reddish Brown,2 +Series 11 Minifigures,Scarecrow - Complete Set,7,2013,Sand Blue,1 +Series 11 Minifigures,Scarecrow - Complete Set,7,2013,Tan,1 +Series 11 Minifigures,Scientist - Complete Set,7,2013,Black,1 +Series 11 Minifigures,Scientist - Complete Set,7,2013,Dark Brown,1 +Series 11 Minifigures,Scientist - Complete Set,7,2013,Trans-Clear,2 +Series 11 Minifigures,Scientist - Complete Set,7,2013,White,2 +Series 11 Minifigures,Scientist - Complete Set,7,2013,Yellow,1 +Series 11 Minifigures,Welder - Complete Set,7,2013,Black,1 +Series 11 Minifigures,Welder - Complete Set,7,2013,Dark Blue,1 +Series 11 Minifigures,Constable - Complete Set,6,2013,Black,4 +Series 11 Minifigures,Constable - Complete Set,6,2013,Reddish Brown,1 +Series 11 Minifigures,Constable - Complete Set,6,2013,Yellow,1 +Series 11 Minifigures,Lady Robot - Complete Set,6,2013,Flat Silver,1 +Series 11 Minifigures,Saxophone Player - Complete Set,6,2013,Black,4 +Series 11 Minifigures,Saxophone Player - Complete Set,6,2013,Pearl Gold,1 +Series 11 Minifigures,Saxophone Player - Complete Set,6,2013,Yellow,1 +Series 11 Minifigures,Lady Robot - Complete Set,6,2013,Light Bluish Gray,4 +Series 11 Minifigures,Lady Robot - Complete Set,6,2013,Black,1 +Series 11 Minifigures,Gingerbread Man - Complete Set,5,2013,Black,1 +Series 11 Minifigures,Gingerbread Man - Complete Set,5,2013,Medium Dark Flesh,3 +Series 11 Minifigures,Gingerbread Man - Complete Set,5,2013,Red,1 +Series 11 Minifigures,Yeti - Complete Set,5,2013,Black,1 +Series 11 Minifigures,Yeti - Complete Set,5,2013,Trans-Medium Blue,1 +Series 11 Minifigures,Yeti - Complete Set,5,2013,White,3 +Series 12 Minifigures,Wizard,11,2014,Light Bluish Gray,1 +Series 12 Minifigures,Wizard,11,2014,Dark Purple,2 +Series 12 Minifigures,Wizard,11,2014,Dark Brown,2 +Series 12 Minifigures,Wizard,11,2014,Blue,3 +Series 12 Minifigures,Wizard,11,2014,Black,1 +Series 12 Minifigures,Wizard,11,2014,Trans-Dark Blue,1 +Series 12 Minifigures,Wizard,11,2014,Yellow,1 +Series 12 Minifigures,Hun Warrior,10,2014,Dark Bluish Gray,1 +Series 12 Minifigures,Hun Warrior,10,2014,Dark Brown,1 +Series 12 Minifigures,Hun Warrior,10,2014,Dark Red,1 +Series 12 Minifigures,Hun Warrior,10,2014,Pearl Dark Gray,1 +Series 12 Minifigures,Hun Warrior,10,2014,Reddish Brown,1 +Series 12 Minifigures,Hun Warrior,10,2014,White,1 +Series 12 Minifigures,Hun Warrior,10,2014,Yellow,1 +Series 12 Minifigures,Hun Warrior,10,2014,Medium Dark Flesh,1 +Series 12 Minifigures,Hun Warrior,10,2014,Black,1 +Series 12 Minifigures,Space Miner,9,2014,Yellow,1 +Series 12 Minifigures,Space Miner,9,2014,Trans-Black,1 +Series 12 Minifigures,Battle Goddess,9,2014,Black,1 +Series 12 Minifigures,Battle Goddess,9,2014,Bright Light Yellow,1 +Series 12 Minifigures,Battle Goddess,9,2014,Reddish Brown,1 +Series 12 Minifigures,Battle Goddess,9,2014,White,3 +Series 12 Minifigures,Battle Goddess,9,2014,Dark Brown,1 +Series 12 Minifigures,Space Miner,9,2014,Black,1 +Series 12 Minifigures,Space Miner,9,2014,Flat Silver,1 +Series 12 Minifigures,Space Miner,9,2014,Orange,1 +Series 12 Minifigures,Space Miner,9,2014,Light Bluish Gray,2 +Series 12 Minifigures,Battle Goddess,9,2014,Yellow,2 +Series 12 Minifigures,Space Miner,9,2014,Dark Bluish Gray,1 +Series 12 Minifigures,Space Miner,9,2014,Bright Light Orange,1 +Series 12 Minifigures,Dino Tracker,7,2014,Dark Tan,1 +Series 12 Minifigures,Swashbuckler,7,2014,White,1 +Series 12 Minifigures,Dino Tracker,7,2014,Black,2 +Series 12 Minifigures,Dino Tracker,7,2014,Dark Brown,1 +Series 12 Minifigures,Jester,7,2014,White,2 +Series 12 Minifigures,Dino Tracker,7,2014,Lime,1 +Series 12 Minifigures,Dino Tracker,7,2014,Olive Green,1 +Series 12 Minifigures,Dino Tracker,7,2014,Yellow,1 +Series 12 Minifigures,Jester,7,2014,Black,1 +Series 12 Minifigures,Jester,7,2014,Bright Light Orange,3 +Series 12 Minifigures,Jester,7,2014,Yellow,1 +Series 12 Minifigures,Lifeguard,7,2014,Black,1 +Series 12 Minifigures,Lifeguard,7,2014,Dark Brown,1 +Series 12 Minifigures,Lifeguard,7,2014,Red,2 +Series 12 Minifigures,Lifeguard,7,2014,Yellow,3 +Series 12 Minifigures,Pizza Delivery Man,7,2014,Black,1 +Series 12 Minifigures,Pizza Delivery Man,7,2014,Dark Blue,1 +Series 12 Minifigures,Pizza Delivery Man,7,2014,Medium Dark Flesh,1 +Series 12 Minifigures,Pizza Delivery Man,7,2014,Red,1 +Series 12 Minifigures,Pizza Delivery Man,7,2014,White,1 +Series 12 Minifigures,Pizza Delivery Man,7,2014,Yellow,1 +Series 12 Minifigures,Prospector,7,2014,Black,1 +Series 12 Minifigures,Prospector,7,2014,Dark Bluish Gray,1 +Series 12 Minifigures,Prospector,7,2014,Dark Tan,1 +Series 12 Minifigures,Prospector,7,2014,Light Bluish Gray,1 +Series 12 Minifigures,Pizza Delivery Man,7,2014,Green,1 +Series 12 Minifigures,Prospector,7,2014,Tan,1 +Series 12 Minifigures,Prospector,7,2014,Yellow,1 +Series 12 Minifigures,Prospector,7,2014,Reddish Brown,1 +Series 12 Minifigures,Spooky Girl,7,2014,Black,5 +Series 12 Minifigures,Spooky Girl,7,2014,Dark Bluish Gray,1 +Series 12 Minifigures,Spooky Girl,7,2014,White,1 +Series 12 Minifigures,Swashbuckler,7,2014,Black,2 +Series 12 Minifigures,Swashbuckler,7,2014,Dark Brown,1 +Series 12 Minifigures,Swashbuckler,7,2014,Pearl Gold,1 +Series 12 Minifigures,Swashbuckler,7,2014,Red,1 +Series 12 Minifigures,Swashbuckler,7,2014,Yellow,1 +Series 12 Minifigures,Genie Girl,6,2014,Black,1 +Series 12 Minifigures,Fairytale Princess,6,2014,Black,1 +Series 12 Minifigures,Rock Star,6,2014,Red,1 +Series 12 Minifigures,Rock Star,6,2014,Yellow,1 +Series 12 Minifigures,Piggy Guy,6,2014,Yellow,1 +Series 12 Minifigures,Piggy Guy,6,2014,Bright Pink,3 +Series 12 Minifigures,Piggy Guy,6,2014,Bright Green,1 +Series 12 Minifigures,Rock Star,6,2014,Black,4 +Series 12 Minifigures,Piggy Guy,6,2014,Black,1 +Series 12 Minifigures,Genie Girl,6,2014,Yellow,1 +Series 12 Minifigures,Fairytale Princess,6,2014,Yellow,1 +Series 12 Minifigures,Video Game Guy,6,2014,Black,2 +Series 12 Minifigures,Video Game Guy,6,2014,Light Bluish Gray,1 +Series 12 Minifigures,Video Game Guy,6,2014,Reddish Brown,1 +Series 12 Minifigures,Video Game Guy,6,2014,Sand Blue,1 +Series 12 Minifigures,Video Game Guy,6,2014,Yellow,1 +Series 12 Minifigures,Genie Girl,6,2014,Pearl Gold,1 +Series 12 Minifigures,Genie Girl,6,2014,Medium Azure,1 +Series 12 Minifigures,Fairytale Princess,6,2014,Dark Orange,1 +Series 12 Minifigures,Genie Girl,6,2014,Light Aqua,1 +Series 12 Minifigures,Genie Girl,6,2014,Bright Light Yellow,1 +Series 12 Minifigures,Fairytale Princess,6,2014,Green,1 +Series 12 Minifigures,Fairytale Princess,6,2014,Medium Lavender,2 +Series 13 Minifigures,Evil Wizard,10,2015,Black,4 +Series 13 Minifigures,Evil Wizard,10,2015,Dark Red,4 +Series 13 Minifigures,Evil Wizard,10,2015,Trans-Neon Orange,1 +Series 13 Minifigures,Evil Wizard,10,2015,Yellow,1 +Series 13 Minifigures,Classic King,9,2015,Reddish Brown,2 +Series 13 Minifigures,Classic King,9,2015,White,1 +Series 13 Minifigures,Classic King,9,2015,Yellow,1 +Series 13 Minifigures,Classic King,9,2015,Black,1 +Series 13 Minifigures,Classic King,9,2015,Blue,1 +Series 13 Minifigures,Classic King,9,2015,Pearl Gold,1 +Series 13 Minifigures,Classic King,9,2015,Red,2 +Series 13 Minifigures,Galaxy Trooper,8,2015,Black,4 +Series 13 Minifigures,Galaxy Trooper,8,2015,Dark Bluish Gray,2 +Series 13 Minifigures,Samurai,8,2015,Dark Red,1 +Series 13 Minifigures,Disco Diva,8,2015,Black,1 +Series 13 Minifigures,Disco Diva,8,2015,Dark Brown,1 +Series 13 Minifigures,Disco Diva,8,2015,Dark Purple,1 +Series 13 Minifigures,Disco Diva,8,2015,Medium Lavender,1 +Series 13 Minifigures,Disco Diva,8,2015,Pearl Gold,1 +Series 13 Minifigures,Disco Diva,8,2015,White,1 +Series 13 Minifigures,Disco Diva,8,2015,Yellow,1 +Series 13 Minifigures,Galaxy Trooper,8,2015,Yellow,1 +Series 13 Minifigures,Samurai,8,2015,Dark Bluish Gray,1 +Series 13 Minifigures,Samurai,8,2015,Black,2 +Series 13 Minifigures,Samurai,8,2015,Pearl Dark Gray,1 +Series 13 Minifigures,Samurai,8,2015,Red,1 +Series 13 Minifigures,Samurai,8,2015,Yellow,1 +Series 13 Minifigures,Sheriff,8,2015,Black,1 +Series 13 Minifigures,Sheriff,8,2015,Dark Brown,2 +Series 13 Minifigures,Sheriff,8,2015,Flat Silver,1 +Series 13 Minifigures,Sheriff,8,2015,Reddish Brown,2 +Series 13 Minifigures,Sheriff,8,2015,Tan,1 +Series 13 Minifigures,Sheriff,8,2015,Yellow,1 +Series 13 Minifigures,Egyptian Warrior,7,2015,Yellow,2 +Series 13 Minifigures,Carpenter,7,2015,Black,1 +Series 13 Minifigures,Goblin,7,2015,Reddish Brown,2 +Series 13 Minifigures,Goblin,7,2015,Black,1 +Series 13 Minifigures,Goblin,7,2015,Dark Brown,1 +Series 13 Minifigures,Goblin,7,2015,Flat Silver,1 +Series 13 Minifigures,Goblin,7,2015,Olive Green,2 +Series 13 Minifigures,Paleontologist,7,2015,Dark Tan,1 +Series 13 Minifigures,Paleontologist,7,2015,Black,1 +Series 13 Minifigures,Paleontologist,7,2015,Tan,3 +Series 13 Minifigures,Paleontologist,7,2015,White,1 +Series 13 Minifigures,Paleontologist,7,2015,Yellow,1 +Series 13 Minifigures,Carpenter,7,2015,Bright Light Blue,1 +Series 13 Minifigures,Carpenter,7,2015,Bright Light Orange,1 +Series 13 Minifigures,Carpenter,7,2015,Dark Blue,1 +Series 13 Minifigures,Carpenter,7,2015,Reddish Brown,1 +Series 13 Minifigures,Carpenter,7,2015,Tan,1 +Series 13 Minifigures,Carpenter,7,2015,Yellow,1 +Series 13 Minifigures,Egyptian Warrior,7,2015,Black,1 +Series 13 Minifigures,Egyptian Warrior,7,2015,Pearl Gold,2 +Series 13 Minifigures,Egyptian Warrior,7,2015,White,2 +Series 13 Minifigures,Snake Charmer,7,2015,Black,1 +Series 13 Minifigures,Snake Charmer,7,2015,Dark Green,1 +Series 13 Minifigures,Snake Charmer,7,2015,Dark Orange,1 +Series 13 Minifigures,Snake Charmer,7,2015,Lime,1 +Series 13 Minifigures,Snake Charmer,7,2015,White,2 +Series 13 Minifigures,Snake Charmer,7,2015,Yellow,1 +Series 13 Minifigures,Unicorn Girl,7,2015,Black,1 +Series 13 Minifigures,Unicorn Girl,7,2015,White,5 +Series 13 Minifigures,Unicorn Girl,7,2015,Yellow,1 +Series 13 Minifigures,Fencer,6,2015,Yellow,1 +Series 13 Minifigures,Fencer,6,2015,White,3 +Series 13 Minifigures,Fencer,6,2015,Black,1 +Series 13 Minifigures,Lady Cyclops,6,2015,Black,1 +Series 13 Minifigures,Lady Cyclops,6,2015,Light Bluish Gray,1 +Series 13 Minifigures,Lady Cyclops,6,2015,Olive Green,1 +Series 13 Minifigures,Lady Cyclops,6,2015,Sand Blue,3 +Series 13 Minifigures,Fencer,6,2015,Flat Silver,1 +Series 13 Minifigures,Alien Trooper,6,2015,Black,1 +Series 13 Minifigures,Alien Trooper,6,2015,Dark Azure,2 +Series 13 Minifigures,Alien Trooper,6,2015,Dark Bluish Gray,1 +Series 13 Minifigures,Alien Trooper,6,2015,Lime,1 +Series 13 Minifigures,Alien Trooper,6,2015,Trans-Neon Green,1 +Series 13 Minifigures,Hot Dog Man,5,2015,Medium Blue,1 +Series 13 Minifigures,Hot Dog Man,5,2015,Tan,2 +Series 13 Minifigures,Hot Dog Man,5,2015,Yellow,1 +Series 13 Minifigures,Hot Dog Man,5,2015,Black,1 +Series 14 Minifigures,Wacky Witch,8,2015,Reddish Brown,1 +Series 14 Minifigures,Wacky Witch,8,2015,Lime,1 +Series 14 Minifigures,Wacky Witch,8,2015,Dark Purple,3 +Series 14 Minifigures,Wacky Witch,8,2015,Black,2 +Series 14 Minifigures,Wacky Witch,8,2015,White,1 +Series 14 Minifigures, Spectre,7,2015,Black,1 +Series 14 Minifigures, Spectre,7,2015,Dark Bluish Gray,3 +Series 14 Minifigures, Spectre,7,2015,Flat Silver,1 +Series 14 Minifigures, Spectre,7,2015,Glow in Dark White,1 +Series 14 Minifigures, Spectre,7,2015,Trans-Clear,1 +Series 14 Minifigures,Zombie Businessman,7,2015,Dark Blue,2 +Series 14 Minifigures,Zombie Businessman,7,2015,Dark Brown,1 +Series 14 Minifigures,Zombie Businessman,7,2015,Light Bluish Gray,1 +Series 14 Minifigures,Zombie Businessman,7,2015,Tan,1 +Series 14 Minifigures,Zombie Cheerleader,7,2015,Black,1 +Series 14 Minifigures,Zombie Cheerleader,7,2015,Dark Green,1 +Series 14 Minifigures,Zombie Cheerleader,7,2015,Dark Tan,1 +Series 14 Minifigures,Zombie Cheerleader,7,2015,Light Bluish Gray,1 +Series 14 Minifigures,Zombie Cheerleader,7,2015,White,2 +Series 14 Minifigures,Zombie Pirate,7,2015,Black,2 +Series 14 Minifigures,Zombie Pirate,7,2015,Dark Bluish Gray,1 +Series 14 Minifigures,Zombie Pirate,7,2015,Dark Red,2 +Series 14 Minifigures,Zombie Pirate,7,2015,Flat Silver,1 +Series 14 Minifigures,Zombie Pirate,7,2015,Light Bluish Gray,1 +Series 14 Minifigures,Plant Monster,7,2015,Black,1 +Series 14 Minifigures,Plant Monster,7,2015,Bright Green,2 +Series 14 Minifigures,Plant Monster,7,2015,Lime,2 +Series 14 Minifigures,Plant Monster,7,2015,Yellow,1 +Series 14 Minifigures,Spider Lady,7,2015,Black,4 +Series 14 Minifigures,Spider Lady,7,2015,Red,1 +Series 14 Minifigures,Spider Lady,7,2015,Trans-Clear,1 +Series 14 Minifigures,Spider Lady,7,2015,White,1 +Series 14 Minifigures,Tiger Woman,7,2015,Black,2 +Series 14 Minifigures,Tiger Woman,7,2015,Bright Light Orange,3 +Series 14 Minifigures,Tiger Woman,7,2015,Dark Orange,1 +Series 14 Minifigures,Tiger Woman,7,2015,Yellow,1 +Series 14 Minifigures,Zombie Businessman,7,2015,Black,2 +Series 14 Minifigures,Monster Rocker,6,2015,Red,1 +Series 14 Minifigures,Gargoyle,6,2015,Black,1 +Series 14 Minifigures,Gargoyle,6,2015,Light Bluish Gray,5 +Series 14 Minifigures,Monster Rocker,6,2015,Black,1 +Series 14 Minifigures,Monster Rocker,6,2015,Olive Green,2 +Series 14 Minifigures,Wolf Guy,6,2015,White,1 +Series 14 Minifigures,Monster Rocker,6,2015,Sand Blue,2 +Series 14 Minifigures,Monster Scientist,6,2015,Black,1 +Series 14 Minifigures,Skeleton Guy,6,2015,Black,5 +Series 14 Minifigures,Monster Scientist,6,2015,Yellow,2 +Series 14 Minifigures,Monster Scientist,6,2015,White,2 +Series 14 Minifigures,Monster Scientist,6,2015,Trans-Clear,1 +Series 14 Minifigures,Wolf Guy,6,2015,Black,1 +Series 14 Minifigures,Wolf Guy,6,2015,Dark Bluish Gray,2 +Series 14 Minifigures,Wolf Guy,6,2015,Red,1 +Series 14 Minifigures,Wolf Guy,6,2015,Sand Blue,1 +Series 14 Minifigures,Skeleton Guy,6,2015,Orange,1 +Series 14 Minifigures,Banshee,5,2015,Light Aqua,1 +Series 14 Minifigures,Banshee,5,2015,Sand Green,1 +Series 14 Minifigures,Banshee,5,2015,Trans-Black,1 +Series 14 Minifigures,Banshee,5,2015,Trans-Clear,1 +Series 14 Minifigures,Fly Monster,5,2015,Black,4 +Series 14 Minifigures,Fly Monster,5,2015,Trans-Black,1 +Series 14 Minifigures,Banshee,5,2015,Black,1 +Series 14 Minifigures,Square Foot,5,2015,Black,2 +Series 14 Minifigures,Square Foot,5,2015,Reddish Brown,3 +Series 15 Minifigures,Flying Warrior,11,2016,Pearl Gold,7 +Series 15 Minifigures,Flying Warrior,11,2016,Yellow,1 +Series 15 Minifigures,Flying Warrior,11,2016,Black,1 +Series 15 Minifigures,Frightening Knight,10,2016,Black,1 +Series 15 Minifigures,Frightening Knight,10,2016,Dark Green,3 +Series 15 Minifigures,Frightening Knight,10,2016,Pearl Dark Gray,5 +Series 15 Minifigures,Frightening Knight,10,2016,Yellow,1 +Series 15 Minifigures,Astronaut,9,2016,Metallic Gold,1 +Series 15 Minifigures,Astronaut,9,2016,White,6 +Series 15 Minifigures,Astronaut,9,2016,Yellow,1 +Series 15 Minifigures,Astronaut,9,2016,Black,1 +Series 15 Minifigures,Laser Mech,9,2016,Black,6 +Series 15 Minifigures,Laser Mech,9,2016,Trans-Dark Blue,1 +Series 15 Minifigures,Laser Mech,9,2016,Trans-Light Blue,2 +Series 15 Minifigures,Jewel Thief,8,2016,Light Bluish Gray,1 +Series 15 Minifigures,Jewel Thief,8,2016,Black,5 +Series 15 Minifigures,Jewel Thief,8,2016,Trans-Clear,1 +Series 15 Minifigures,Jewel Thief,8,2016,Yellow,1 +Series 15 Minifigures,Queen,8,2016,White,1 +Series 15 Minifigures,Queen,8,2016,Black,1 +Series 15 Minifigures,Queen,8,2016,Dark Orange,1 +Series 15 Minifigures,Queen,8,2016,Pearl Gold,1 +Series 15 Minifigures,Queen,8,2016,Red,3 +Series 15 Minifigures,Queen,8,2016,Yellow,1 +Series 15 Minifigures,Tribal Woman,8,2016,Black,2 +Series 15 Minifigures,Tribal Woman,8,2016,Dark Tan,1 +Series 15 Minifigures,Tribal Woman,8,2016,Reddish Brown,1 +Series 15 Minifigures,Tribal Woman,8,2016,Tan,2 +Series 15 Minifigures,Tribal Woman,8,2016,White,1 +Series 15 Minifigures,Tribal Woman,8,2016,Yellow,1 +Series 15 Minifigures,Janitor,7,2016,Black,1 +Series 15 Minifigures,Janitor,7,2016,Light Bluish Gray,1 +Series 15 Minifigures,Janitor,7,2016,Reddish Brown,1 +Series 15 Minifigures,Janitor,7,2016,Sand Blue,3 +Series 15 Minifigures,Janitor,7,2016,Yellow,1 +Series 15 Minifigures,Animal Control Officer,7,2016,Sand Green,1 +Series 15 Minifigures,Clumsy Guy,7,2016,White,1 +Series 15 Minifigures,Animal Control Officer,7,2016,White,1 +Series 15 Minifigures,Animal Control Officer,7,2016,Yellow,1 +Series 15 Minifigures,Clumsy Guy,7,2016,Black,1 +Series 15 Minifigures,Kendo Fighter,7,2016,Dark Blue,3 +Series 15 Minifigures,Kendo Fighter,7,2016,Tan,1 +Series 15 Minifigures,Kendo Fighter,7,2016,Yellow,1 +Series 15 Minifigures,Clumsy Guy,7,2016,Dark Azure,1 +Series 15 Minifigures,Clumsy Guy,7,2016,Dark Blue,1 +Series 15 Minifigures,Clumsy Guy,7,2016,Flat Silver,1 +Series 15 Minifigures,Clumsy Guy,7,2016,Yellow,1 +Series 15 Minifigures,Farmer,7,2016,Black,1 +Series 15 Minifigures,Farmer,7,2016,Bright Green,1 +Series 15 Minifigures,Farmer,7,2016,Flesh,1 +Series 15 Minifigures,Kendo Fighter,7,2016,Black,1 +Series 15 Minifigures,Farmer,7,2016,Medium Blue,1 +Series 15 Minifigures,Farmer,7,2016,Medium Dark Flesh,1 +Series 15 Minifigures,Farmer,7,2016,Reddish Brown,1 +Series 15 Minifigures,Farmer,7,2016,Yellow,1 +Series 15 Minifigures,Animal Control Officer,7,2016,Black,2 +Series 15 Minifigures,Animal Control Officer,7,2016,Dark Brown,1 +Series 15 Minifigures,Animal Control Officer,7,2016,Dark Tan,1 +Series 15 Minifigures,Ballerina,6,2016,Yellow,1 +Series 15 Minifigures,Ballerina,6,2016,White,3 +Series 15 Minifigures,Ballerina,6,2016,Black,1 +Series 15 Minifigures,Ballerina,6,2016,Dark Brown,1 +Series 15 Minifigures,Faun,6,2016,Black,1 +Series 15 Minifigures,Faun,6,2016,Reddish Brown,3 +Series 15 Minifigures,Faun,6,2016,Yellow,2 +Series 15 Minifigures,Wrestling Champion,6,2016,Black,1 +Series 15 Minifigures,Wrestling Champion,6,2016,Medium Dark Flesh,1 +Series 15 Minifigures,Wrestling Champion,6,2016,Pearl Gold,1 +Series 15 Minifigures,Wrestling Champion,6,2016,Yellow,3 +Series 15 Minifigures,Shark Suit Guy,5,2016,Medium Blue,3 +Series 15 Minifigures,Shark Suit Guy,5,2016,Yellow,1 +Series 15 Minifigures,Shark Suit Guy,5,2016,Black,1 +Series 16 Minifigures,Ice Queen,12,2016,Black,1 +Series 16 Minifigures,Ice Queen,12,2016,Light Aqua,1 +Series 16 Minifigures,Ice Queen,12,2016,Trans-Clear,2 +Series 16 Minifigures,Ice Queen,12,2016,Trans-Light Blue,1 +Series 16 Minifigures,Ice Queen,12,2016,White,5 +Series 16 Minifigures,Cute Little Devil Set,10,2016,Red,5 +Series 16 Minifigures,Cute Little Devil Set,10,2016,Orange,1 +Series 16 Minifigures,Cute Little Devil Set,10,2016,Yellow,1 +Series 16 Minifigures,Cute Little Devil Set,10,2016,Black,3 +Series 16 Minifigures,Spy,9,2016,Black,7 +Series 16 Minifigures,Spy,9,2016,Dark Brown,1 +Series 16 Minifigures,Spy,9,2016,Yellow,1 +Series 16 Minifigures,Babysitter,8,2016,Bright Light Blue,1 +Series 16 Minifigures,Babysitter,8,2016,Bright Light Yellow,1 +Series 16 Minifigures,Babysitter,8,2016,Lavender,1 +Series 16 Minifigures,Babysitter,8,2016,Light Aqua,1 +Series 16 Minifigures,Babysitter,8,2016,Medium Blue,1 +Series 16 Minifigures,Babysitter,8,2016,Yellow,2 +Series 16 Minifigures,Wildlife Photographer,8,2016,Yellow,1 +Series 16 Minifigures,Babysitter,8,2016,Black,1 +Series 16 Minifigures,Hiker,8,2016,Black,1 +Series 16 Minifigures,Hiker,8,2016,Dark Blue,1 +Series 16 Minifigures,Cyborg,8,2016,Black,5 +Series 16 Minifigures,Cyborg,8,2016,Dark Azure,1 +Series 16 Minifigures,Cyborg,8,2016,Trans-Orange,1 +Series 16 Minifigures,Cyborg,8,2016,Yellow,1 +Series 16 Minifigures,Hiker,8,2016,Dark Tan,1 +Series 16 Minifigures,Hiker,8,2016,Green,1 +Series 16 Minifigures,Hiker,8,2016,Medium Blue,1 +Series 16 Minifigures,Hiker,8,2016,Tan,1 +Series 16 Minifigures,Hiker,8,2016,Trans-Clear,1 +Series 16 Minifigures,Hiker,8,2016,Yellow,1 +Series 16 Minifigures,Wildlife Photographer,8,2016,Black,4 +Series 16 Minifigures,Wildlife Photographer,8,2016,Bright Light Blue,1 +Series 16 Minifigures,Wildlife Photographer,8,2016,Red,2 +Series 16 Minifigures,Dog Show Winner,7,2016,Bright Light Blue,1 +Series 16 Minifigures,Scallywag Pirate,7,2016,Dark Green,1 +Series 16 Minifigures,Scallywag Pirate,7,2016,Tan,1 +Series 16 Minifigures,Scallywag Pirate,7,2016,Yellow,2 +Series 16 Minifigures,Spooky Boy,7,2016,Black,5 +Series 16 Minifigures,Spooky Boy,7,2016,Light Bluish Gray,1 +Series 16 Minifigures,Spooky Boy,7,2016,White,1 +Series 16 Minifigures,Rogue,7,2016,Black,1 +Series 16 Minifigures,Dog Show Winner,7,2016,Black,1 +Series 16 Minifigures,Rogue,7,2016,Yellow,1 +Series 16 Minifigures,Dog Show Winner,7,2016,Bright Light Yellow,1 +Series 16 Minifigures,Dog Show Winner,7,2016,Flat Silver,1 +Series 16 Minifigures,Dog Show Winner,7,2016,Tan,1 +Series 16 Minifigures,Dog Show Winner,7,2016,White,1 +Series 16 Minifigures,Dog Show Winner,7,2016,Yellow,1 +Series 16 Minifigures,Penguin Boy,7,2016,Yellow,1 +Series 16 Minifigures,Penguin Boy,7,2016,Flat Silver,1 +Series 16 Minifigures,Rogue,7,2016,Dark Green,2 +Series 16 Minifigures,Scallywag Pirate,7,2016,Black,1 +Series 16 Minifigures,Rogue,7,2016,Reddish Brown,3 +Series 16 Minifigures,Mariachi,7,2016,Black,5 +Series 16 Minifigures,Mariachi,7,2016,Medium Dark Flesh,1 +Series 16 Minifigures,Mariachi,7,2016,Yellow,1 +Series 16 Minifigures,Penguin Boy,7,2016,Black,4 +Series 16 Minifigures,Scallywag Pirate,7,2016,Dark Blue,1 +Series 16 Minifigures,Scallywag Pirate,7,2016,Dark Bluish Gray,1 +Series 16 Minifigures,Kickboxer,6,2016,Reddish Brown,1 +Series 16 Minifigures,Kickboxer,6,2016,Yellow,1 +Series 16 Minifigures,Kickboxer,6,2016,White,1 +Series 16 Minifigures,Desert Warrior,6,2016,Black,2 +Series 16 Minifigures,Desert Warrior,6,2016,Dark Green,1 +Series 16 Minifigures,Desert Warrior,6,2016,White,1 +Series 16 Minifigures,Desert Warrior,6,2016,Yellow,2 +Series 16 Minifigures,Kickboxer,6,2016,Black,1 +Series 16 Minifigures,Kickboxer,6,2016,Red,2 +Series 16 Minifigures,Banana Guy,5,2016,Bright Green,1 +Series 16 Minifigures,Banana Guy,5,2016,Dark Azure,1 +Series 16 Minifigures,Banana Guy,5,2016,Yellow,2 +Series 16 Minifigures,Banana Guy,5,2016,Black,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Bright Light Yellow,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Medium Blue,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Bright Light Orange,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Bright Light Blue,3 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Black,14 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Pearl Gold,2 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Red,3 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Sand Green,2 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Green,2 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Tan,4 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Trans-Dark Pink,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Trans-Light Blue,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,White,12 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Dark Blue,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Bright Pink,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Dark Bluish Gray,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Dark Brown,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Dark Orange,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Dark Pink,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Dark Red,2 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Flesh,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Yellow,22 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Light Aqua,2 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Light Bluish Gray,9 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Lime,1 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Medium Dark Flesh,3 +Series 17 Minifigures,LEGO Minifigures Series 17 - All Parts,116,2017,Pearl Dark Gray,3 +Series 17 Minifigures,Butterfly Girl,10,2017,Black,1 +Series 17 Minifigures,Butterfly Girl,10,2017,Bright Light Blue,1 +Series 17 Minifigures,Butterfly Girl,10,2017,Bright Light Yellow,1 +Series 17 Minifigures,Butterfly Girl,10,2017,Dark Pink,1 +Series 17 Minifigures,Butterfly Girl,10,2017,Lime,1 +Series 17 Minifigures,Butterfly Girl,10,2017,Trans-Dark Pink,1 +Series 17 Minifigures,Butterfly Girl,10,2017,Yellow,1 +Series 17 Minifigures,Butterfly Girl,10,2017,Bright Pink,1 +Series 17 Minifigures,Hot Dog Man,9,2017,Dark Blue,1 +Series 17 Minifigures,Highwayman,9,2017,Black,6 +Series 17 Minifigures,Highwayman,9,2017,Pearl Dark Gray,1 +Series 17 Minifigures,Highwayman,9,2017,Yellow,1 +Series 17 Minifigures,Hot Dog Man,9,2017,Black,1 +Series 17 Minifigures,Hot Dog Man,9,2017,Dark Red,1 +Series 17 Minifigures,Hot Dog Man,9,2017,Red,1 +Series 17 Minifigures,Hot Dog Man,9,2017,Tan,2 +Series 17 Minifigures,Hot Dog Man,9,2017,White,2 +Series 17 Minifigures,Hot Dog Man,9,2017,Yellow,1 +Series 17 Minifigures,Battle Dwarf,9,2017,Black,2 +Series 17 Minifigures,Battle Dwarf,9,2017,Dark Red,1 +Series 17 Minifigures,Battle Dwarf,9,2017,Pearl Dark Gray,2 +Series 17 Minifigures,Battle Dwarf,9,2017,Red,2 +Series 17 Minifigures,Battle Dwarf,9,2017,Yellow,2 +Series 17 Minifigures,Yuppie,8,2017,Light Bluish Gray,3 +Series 17 Minifigures,Yuppie,8,2017,Black,2 +Series 17 Minifigures,Yuppie,8,2017,Yellow,1 +Series 17 Minifigures,Yuppie,8,2017,White,2 +Series 17 Minifigures,Connoisseur,7,2017,White,1 +Series 17 Minifigures,Connoisseur,7,2017,Tan,1 +Series 17 Minifigures,Connoisseur,7,2017,Black,3 +Series 17 Minifigures,Rocket Boy,7,2017,Black,1 +Series 17 Minifigures,Rocket Boy,7,2017,Dark Bluish Gray,1 +Series 17 Minifigures,Elf-Girl,7,2017,Flesh,1 +Series 17 Minifigures,Elf-Girl,7,2017,Light Bluish Gray,1 +Series 17 Minifigures,Elf-Girl,7,2017,Pearl Gold,1 +Series 17 Minifigures,Elf-Girl,7,2017,Yellow,1 +Series 17 Minifigures,Gourmet Chef,7,2017,Black,2 +Series 17 Minifigures,Gourmet Chef,7,2017,Light Bluish Gray,1 +Series 17 Minifigures,Gourmet Chef,7,2017,Medium Dark Flesh,1 +Series 17 Minifigures,Gourmet Chef,7,2017,White,2 +Series 17 Minifigures,Gourmet Chef,7,2017,Yellow,1 +Series 17 Minifigures,Rocket Boy,7,2017,Light Bluish Gray,2 +Series 17 Minifigures,Connoisseur,7,2017,Medium Dark Flesh,1 +Series 17 Minifigures,Rocket Boy,7,2017,White,2 +Series 17 Minifigures,Dance Instructor,7,2017,Black,2 +Series 17 Minifigures,Dance Instructor,7,2017,Dark Orange,1 +Series 17 Minifigures,Rocket Boy,7,2017,Yellow,1 +Series 17 Minifigures,Dance Instructor,7,2017,Trans-Light Blue,1 +Series 17 Minifigures,Dance Instructor,7,2017,White,2 +Series 17 Minifigures,Dance Instructor,7,2017,Yellow,1 +Series 17 Minifigures,Elf-Girl,7,2017,Black,1 +Series 17 Minifigures,Elf-Girl,7,2017,Bright Light Blue,2 +Series 17 Minifigures,Connoisseur,7,2017,Yellow,1 +Series 17 Minifigures,Retro Spaceman,7,2017,Black,1 +Series 17 Minifigures,Retro Spaceman,7,2017,Bright Light Orange,1 +Series 17 Minifigures,Retro Spaceman,7,2017,Light Bluish Gray,2 +Series 17 Minifigures,Retro Spaceman,7,2017,Sand Green,2 +Series 17 Minifigures,Retro Spaceman,7,2017,Yellow,1 +Series 17 Minifigures,Circus Strong Man,6,2017,Yellow,3 +Series 17 Minifigures,Circus Strong Man,6,2017,Black,3 +Series 17 Minifigures,Roman Gladiator,6,2017,Black,1 +Series 17 Minifigures,Roman Gladiator,6,2017,Dark Brown,1 +Series 17 Minifigures,Roman Gladiator,6,2017,Pearl Gold,1 +Series 17 Minifigures,Roman Gladiator,6,2017,Yellow,3 +Series 17 Minifigures,Veterinarian,6,2017,Black,1 +Series 17 Minifigures,Veterinarian,6,2017,Light Aqua,2 +Series 17 Minifigures,Veterinarian,6,2017,Medium Dark Flesh,1 +Series 17 Minifigures,Veterinarian,6,2017,White,1 +Series 17 Minifigures,Veterinarian,6,2017,Yellow,1 +Series 17 Minifigures,Professional Surfer,6,2017,Yellow,1 +Series 17 Minifigures,Professional Surfer,6,2017,Tan,1 +Series 17 Minifigures,Professional Surfer,6,2017,Medium Blue,1 +Series 17 Minifigures,Professional Surfer,6,2017,Black,3 +Series 17 Minifigures,Corn Cob Guy,5,2017,Green,2 +Series 17 Minifigures,Corn Cob Guy,5,2017,Yellow,2 +Series 17 Minifigures,Corn Cob Guy,5,2017,Black,1 +Series 2,Kraw,70,2014,Black,8 +Series 2,Kraw,70,2014,Dark Bluish Gray,1 +Series 2,Kraw,70,2014,Light Bluish Gray,3 +Series 2,Kraw,70,2014,Orange,9 +Series 2,Kraw,70,2014,Red,2 +Series 2,Kraw,70,2014,White,2 +Series 2,Tentro,69,2014,Black,9 +Series 2,Tentro,69,2014,Dark Bluish Gray,2 +Series 2,Tentro,69,2014,Light Bluish Gray,3 +Series 2,Tentro,69,2014,Orange,8 +Series 2,Tentro,69,2014,Trans-Neon Orange,1 +Series 2,Tentro,69,2014,White,2 +Series 2,Chomly,68,2014,Reddish Brown,9 +Series 2,Chomly,68,2014,White,4 +Series 2,Balk,68,2014,Black,11 +Series 2,Balk,68,2014,Dark Bluish Gray,2 +Series 2,Balk,68,2014,Light Bluish Gray,3 +Series 2,Balk,68,2014,Orange,9 +Series 2,Balk,68,2014,Red,2 +Series 2,Balk,68,2014,White,4 +Series 2,Chomly,68,2014,Black,11 +Series 2,Chomly,68,2014,Dark Brown,1 +Series 2,Chomly,68,2014,Dark Orange,3 +Series 2,Chomly,68,2014,Light Bluish Gray,2 +Series 2,Chomly,68,2014,Pearl Gold,1 +Series 2,Chomly,68,2014,Red,1 +Series 2,Jawg,61,2014,Dark Orange,1 +Series 2,Slumbo,61,2014,Medium Azure,4 +Series 2,Slumbo,61,2014,Trans-Light Blue,1 +Series 2,Slumbo,61,2014,Trans-Medium Blue,2 +Series 2,Slumbo,61,2014,White,3 +Series 2,Slumbo,61,2014,Black,10 +Series 2,Jawg,61,2014,Black,4 +Series 2,Jawg,61,2014,Dark Bluish Gray,1 +Series 2,Jawg,61,2014,Dark Brown,3 +Series 2,Slumbo,61,2014,Blue,9 +Series 2,Jawg,61,2014,Light Bluish Gray,1 +Series 2,Jawg,61,2014,Red,3 +Series 2,Jawg,61,2014,Reddish Brown,9 +Series 2,Jawg,61,2014,White,2 +Series 2,Slumbo,61,2014,Dark Blue,2 +Series 2,Slumbo,61,2014,Light Bluish Gray,2 +Series 2,Gobba,57,2014,Dark Orange,3 +Series 2,Gobba,57,2014,Light Bluish Gray,2 +Series 2,Gobba,57,2014,Red,2 +Series 2,Gobba,57,2014,Reddish Brown,6 +Series 2,Gobba,57,2014,White,2 +Series 2,Gobba,57,2014,Dark Brown,1 +Series 2,Gobba,57,2014,Black,6 +Series 2,Gobba,57,2014,Blue,1 +Series 2,Gobba,57,2014,Dark Bluish Gray,1 +Series 2,Lunk,51,2014,Dark Bluish Gray,2 +Series 2,Lunk,51,2014,Light Bluish Gray,3 +Series 2,Lunk,51,2014,Medium Azure,4 +Series 2,Lunk,51,2014,Trans-Clear,1 +Series 2,Lunk,51,2014,Trans-Light Blue,1 +Series 2,Lunk,51,2014,Trans-Medium Blue,1 +Series 2,Lunk,51,2014,White,2 +Series 2,Lunk,51,2014,Black,4 +Series 2,Lunk,51,2014,Blue,7 +Series 2,Flurr,46,2014,Dark Bluish Gray,2 +Series 2,Flurr,46,2014,Light Bluish Gray,3 +Series 2,Flurr,46,2014,Medium Azure,4 +Series 2,Flurr,46,2014,Trans-Clear,1 +Series 2,Flurr,46,2014,Trans-Light Blue,1 +Series 2,Flurr,46,2014,White,2 +Series 2,Flurr,46,2014,Black,5 +Series 2,Flurr,46,2014,Blue,4 +Series 2,Flurr,46,2014,Dark Blue,3 +Series 2 Minifigures,Mariachi / Maraca Man - Complete Set,9,2010,Medium Dark Flesh,1 +Series 2 Minifigures,Mariachi / Maraca Man - Complete Set,9,2010,Red,1 +Series 2 Minifigures,Mariachi / Maraca Man - Complete Set,9,2010,Green,1 +Series 2 Minifigures,Mariachi / Maraca Man - Complete Set,9,2010,Reddish Brown,1 +Series 2 Minifigures,Mariachi / Maraca Man - Complete Set,9,2010,Yellow,1 +Series 2 Minifigures,Mariachi / Maraca Man - Complete Set,9,2010,Black,1 +Series 2 Minifigures,Skier - Complete Set,9,2010,Blue,3 +Series 2 Minifigures,Skier - Complete Set,9,2010,Black,1 +Series 2 Minifigures,Skier - Complete Set,9,2010,White,2 +Series 2 Minifigures,Skier - Complete Set,9,2010,Yellow,1 +Series 2 Minifigures,Mariachi / Maraca Man - Complete Set,9,2010,Light Bluish Gray,1 +Series 2 Minifigures,Spartan Warrior - Complete Set,8,2010,Pearl Dark Gray,1 +Series 2 Minifigures,Spartan Warrior - Complete Set,8,2010,Yellow,2 +Series 2 Minifigures,Weightlifter - Complete Set,8,2010,Black,4 +Series 2 Minifigures,Weightlifter - Complete Set,8,2010,Lime,2 +Series 2 Minifigures,Weightlifter - Complete Set,8,2010,Yellow,1 +Series 2 Minifigures,Spartan Warrior - Complete Set,8,2010,Black,1 +Series 2 Minifigures,Spartan Warrior - Complete Set,8,2010,Dark Red,1 +Series 2 Minifigures,Spartan Warrior - Complete Set,8,2010,Medium Dark Flesh,2 +Series 2 Minifigures,Spartan Warrior - Complete Set,8,2010,Metallic Gold,1 +Series 2 Minifigures,Mime - Complete Set,7,2010,Black,4 +Series 2 Minifigures,Mime - Complete Set,7,2010,White,3 +Series 2 Minifigures,Explorer - Complete Set,7,2010,Black,2 +Series 2 Minifigures,Explorer - Complete Set,7,2010,Dark Bluish Gray,1 +Series 2 Minifigures,Traffic Cop - Complete Set,7,2010,Black,3 +Series 2 Minifigures,Traffic Cop - Complete Set,7,2010,Light Bluish Gray,1 +Series 2 Minifigures,Traffic Cop - Complete Set,7,2010,Tan,2 +Series 2 Minifigures,Traffic Cop - Complete Set,7,2010,Yellow,1 +Series 2 Minifigures,Vampire - Complete Set,7,2010,Black,6 +Series 2 Minifigures,Vampire - Complete Set,7,2010,White,1 +Series 2 Minifigures,Explorer - Complete Set,7,2010,Yellow,1 +Series 2 Minifigures,Explorer - Complete Set,7,2010,White,1 +Series 2 Minifigures,Explorer - Complete Set,7,2010,Tan,2 +Series 2 Minifigures,Karate Master - Complete Set,6,2010,White,2 +Series 2 Minifigures,Karate Master - Complete Set,6,2010,Yellow,1 +Series 2 Minifigures,Lifeguard - Complete Set,6,2010,Black,1 +Series 2 Minifigures,Lifeguard - Complete Set,6,2010,Bright Light Yellow,1 +Series 2 Minifigures,Lifeguard - Complete Set,6,2010,Red,2 +Series 2 Minifigures,Lifeguard - Complete Set,6,2010,Yellow,2 +Series 2 Minifigures,Pharaoh - Complete Set,6,2010,Black,1 +Series 2 Minifigures,Pharaoh - Complete Set,6,2010,Metallic Gold,1 +Series 2 Minifigures,Pharaoh - Complete Set,6,2010,Pearl Gold,1 +Series 2 Minifigures,Pharaoh - Complete Set,6,2010,Yellow,3 +Series 2 Minifigures,Pop Star - Complete Set,6,2010,Black,2 +Series 2 Minifigures,Pop Star - Complete Set,6,2010,Bright Pink,1 +Series 2 Minifigures,Pop Star - Complete Set,6,2010,Dark Pink,1 +Series 2 Minifigures,Pop Star - Complete Set,6,2010,Medium Dark Flesh,1 +Series 2 Minifigures,Pop Star - Complete Set,6,2010,Yellow,1 +Series 2 Minifigures,Circus Ringmaster - Complete Set,6,2010,White,1 +Series 2 Minifigures,Surfer - Complete Set,6,2010,Black,1 +Series 2 Minifigures,Surfer - Complete Set,6,2010,Tan,1 +Series 2 Minifigures,Surfer - Complete Set,6,2010,White,1 +Series 2 Minifigures,Surfer - Complete Set,6,2010,Yellow,3 +Series 2 Minifigures,Circus Ringmaster - Complete Set,6,2010,Black,3 +Series 2 Minifigures,Circus Ringmaster - Complete Set,6,2010,Red,1 +Series 2 Minifigures,Circus Ringmaster - Complete Set,6,2010,Yellow,1 +Series 2 Minifigures,Disco Dude - Complete Set,6,2010,Black,2 +Series 2 Minifigures,Disco Dude - Complete Set,6,2010,Dark Blue,1 +Series 2 Minifigures,Disco Dude - Complete Set,6,2010,White,2 +Series 2 Minifigures,Disco Dude - Complete Set,6,2010,Yellow,1 +Series 2 Minifigures,Karate Master - Complete Set,6,2010,Black,2 +Series 2 Minifigures,Karate Master - Complete Set,6,2010,Metallic Gold,1 +Series 2 Minifigures,Witch - Complete Set,6,2010,Black,4 +Series 2 Minifigures,Witch - Complete Set,6,2010,Bright Green,1 +Series 2 Minifigures,Witch - Complete Set,6,2010,Reddish Brown,1 +Series 3,Footi,72,2014,Black,6 +Series 3,Footi,72,2014,Dark Bluish Gray,2 +Series 3,Footi,72,2014,Dark Tan,4 +Series 3,Footi,72,2014,Flat Silver,1 +Series 3,Footi,72,2014,Light Bluish Gray,1 +Series 3,Footi,72,2014,Red,2 +Series 3,Footi,72,2014,Tan,6 +Series 3,Footi,72,2014,Trans-Black,1 +Series 3,Footi,72,2014,White,2 +Series 3,Scorpi,70,2014,White,2 +Series 3,Wizwuz,70,2014,Trans-Light Blue,1 +Series 3,Wizwuz,70,2014,White,3 +Series 3,Scorpi,70,2014,Tan,7 +Series 3,Scorpi,70,2014,Red,1 +Series 3,Scorpi,70,2014,Light Bluish Gray,1 +Series 3,Scorpi,70,2014,Flat Silver,3 +Series 3,Scorpi,70,2014,Black,7 +Series 3,Wizwuz,70,2014,Red,1 +Series 3,Wizwuz,70,2014,Light Bluish Gray,3 +Series 3,Wizwuz,70,2014,Dark Purple,5 +Series 3,Wizwuz,70,2014,Dark Bluish Gray,4 +Series 3,Wizwuz,70,2014,Black,9 +Series 3,Wizwuz,70,2014,Trans-Dark Blue,2 +Series 3,Scorpi,70,2014,Trans-Black,1 +Series 3,Scorpi,70,2014,Dark Tan,4 +Series 3,Hoogi,69,2014,Light Bluish Gray,1 +Series 3,Hoogi,69,2014,Trans-Black,1 +Series 3,Hoogi,69,2014,White,3 +Series 3,Hoogi,69,2014,Flat Silver,1 +Series 3,Hoogi,69,2014,Tan,5 +Series 3,Hoogi,69,2014,Black,8 +Series 3,Hoogi,69,2014,Dark Bluish Gray,2 +Series 3,Hoogi,69,2014,Dark Tan,5 +Series 3,Glomp,64,2014,Light Bluish Gray,1 +Series 3,Glomp,64,2014,Lime,8 +Series 3,Glomp,64,2014,Trans-Green,1 +Series 3,Glomp,64,2014,Trans-Neon Green,2 +Series 3,Glomp,64,2014,White,3 +Series 3,Glomp,64,2014,Black,4 +Series 3,Mesmo,64,2014,Black,14 +Series 3,Mesmo,64,2014,Dark Purple,7 +Series 3,Mesmo,64,2014,Light Bluish Gray,4 +Series 3,Mesmo,64,2014,Trans-Dark Blue,1 +Series 3,Mesmo,64,2014,White,4 +Series 3,Glomp,64,2014,Dark Bluish Gray,2 +Series 3,Glomp,64,2014,Green,6 +Series 3,Glurt,62,2014,White,4 +Series 3,Glurt,62,2014,Trans-Neon Green,1 +Series 3,Glurt,62,2014,Trans-Green,1 +Series 3,Glurt,62,2014,Lime,9 +Series 3,Glurt,62,2014,Light Bluish Gray,1 +Series 3,Glurt,62,2014,Green,3 +Series 3,Glurt,62,2014,Dark Bluish Gray,1 +Series 3,Glurt,62,2014,Black,15 +Series 3,Magnifo,61,2014,Trans-Black,1 +Series 3,Magnifo,61,2014,Trans-Dark Blue,2 +Series 3,Magnifo,61,2014,Light Bluish Gray,2 +Series 3,Magnifo,61,2014,Dark Purple,9 +Series 3,Magnifo,61,2014,Dark Bluish Gray,3 +Series 3,Magnifo,61,2014,Black,14 +Series 3,Magnifo,61,2014,White,4 +Series 3,Magnifo,61,2014,Trans-Purple,1 +Series 3,Torts,48,2014,Black,3 +Series 3,Torts,48,2014,Dark Bluish Gray,1 +Series 3,Torts,48,2014,Green,5 +Series 3,Torts,48,2014,Light Bluish Gray,1 +Series 3,Torts,48,2014,Trans-Green,1 +Series 3,Torts,48,2014,Trans-Neon Green,3 +Series 3,Torts,48,2014,White,2 +Series 3,Torts,48,2014,Lime,7 +Series 3 Minifigures,Fisherman - Complete Set,9,2011,Sand Green,1 +Series 3 Minifigures,Fisherman - Complete Set,9,2011,Medium Blue,1 +Series 3 Minifigures,Fisherman - Complete Set,9,2011,Dark Blue,1 +Series 3 Minifigures,Fisherman - Complete Set,9,2011,Bright Light Orange,1 +Series 3 Minifigures,Fisherman - Complete Set,9,2011,Black,3 +Series 3 Minifigures,Fisherman - Complete Set,9,2011,White,1 +Series 3 Minifigures,Fisherman - Complete Set,9,2011,Yellow,1 +Series 3 Minifigures,Elf - Complete Set,8,2011,Light Bluish Gray,1 +Series 3 Minifigures,Elf - Complete Set,8,2011,Reddish Brown,2 +Series 3 Minifigures,Elf - Complete Set,8,2011,Tan,1 +Series 3 Minifigures,Elf - Complete Set,8,2011,Yellow,1 +Series 3 Minifigures,Elf - Complete Set,8,2011,Black,1 +Series 3 Minifigures,Elf - Complete Set,8,2011,Dark Green,2 +Series 3 Minifigures,Hula Dancer - Complete Set,8,2011,Black,2 +Series 3 Minifigures,Hula Dancer - Complete Set,8,2011,Green,1 +Series 3 Minifigures,Hula Dancer - Complete Set,8,2011,Reddish Brown,1 +Series 3 Minifigures,Hula Dancer - Complete Set,8,2011,Yellow,3 +Series 3 Minifigures,Space Villain - Complete Set,8,2011,Black,4 +Series 3 Minifigures,Space Villain - Complete Set,8,2011,Pearl Dark Gray,1 +Series 3 Minifigures,Space Villain - Complete Set,8,2011,Trans-Red,1 +Series 3 Minifigures,Space Villain - Complete Set,8,2011,Trans-Yellow,1 +Series 3 Minifigures,Space Villain - Complete Set,8,2011,Yellow,1 +Series 3 Minifigures,Samurai Warrior - Complete Set,7,2011,Black,1 +Series 3 Minifigures,Snowboarder - Complete Set,7,2011,Black,1 +Series 3 Minifigures,Snowboarder - Complete Set,7,2011,Dark Blue,1 +Series 3 Minifigures,Snowboarder - Complete Set,7,2011,Magenta,1 +Series 3 Minifigures,Snowboarder - Complete Set,7,2011,White,3 +Series 3 Minifigures,Pilot - Complete Set,7,2011,Black,1 +Series 3 Minifigures,Pilot - Complete Set,7,2011,Dark Bluish Gray,1 +Series 3 Minifigures,Pilot - Complete Set,7,2011,Dark Brown,1 +Series 3 Minifigures,Pilot - Complete Set,7,2011,Dark Tan,2 +Series 3 Minifigures,Pilot - Complete Set,7,2011,Reddish Brown,1 +Series 3 Minifigures,Pilot - Complete Set,7,2011,Yellow,1 +Series 3 Minifigures,Race Car Driver - Complete Set,7,2011,Black,1 +Series 3 Minifigures,Race Car Driver - Complete Set,7,2011,Red,3 +Series 3 Minifigures,Race Car Driver - Complete Set,7,2011,Tan,1 +Series 3 Minifigures,Race Car Driver - Complete Set,7,2011,Trans-Black,1 +Series 3 Minifigures,Race Car Driver - Complete Set,7,2011,Yellow,1 +Series 3 Minifigures,Rapper - Complete Set,7,2011,Black,4 +Series 3 Minifigures,Rapper - Complete Set,7,2011,Sand Blue,1 +Series 3 Minifigures,Rapper - Complete Set,7,2011,White,1 +Series 3 Minifigures,Rapper - Complete Set,7,2011,Yellow,1 +Series 3 Minifigures,Snowboarder - Complete Set,7,2011,Yellow,1 +Series 3 Minifigures,Samurai Warrior - Complete Set,7,2011,Dark Bluish Gray,2 +Series 3 Minifigures,Samurai Warrior - Complete Set,7,2011,Dark Red,2 +Series 3 Minifigures,Samurai Warrior - Complete Set,7,2011,Pearl Dark Gray,1 +Series 3 Minifigures,Samurai Warrior - Complete Set,7,2011,Yellow,1 +Series 3 Minifigures,Baseball Player - Complete Set,6,2011,Yellow,1 +Series 3 Minifigures,Tribal Chief - Complete Set,6,2011,Tan,2 +Series 3 Minifigures,Tribal Chief - Complete Set,6,2011,White,1 +Series 3 Minifigures,Tribal Chief - Complete Set,6,2011,Yellow,1 +Series 3 Minifigures,Baseball Player - Complete Set,6,2011,Black,1 +Series 3 Minifigures,Space Alien - Complete Set,6,2011,Black,1 +Series 3 Minifigures,Space Alien - Complete Set,6,2011,Dark Purple,2 +Series 3 Minifigures,Space Alien - Complete Set,6,2011,Lime,1 +Series 3 Minifigures,Space Alien - Complete Set,6,2011,Pearl Gold,1 +Series 3 Minifigures,Space Alien - Complete Set,6,2011,Trans-Purple,1 +Series 3 Minifigures,Baseball Player - Complete Set,6,2011,White,2 +Series 3 Minifigures,Gorilla Suit Guy - Complete Set,6,2011,Black,4 +Series 3 Minifigures,Gorilla Suit Guy - Complete Set,6,2011,Yellow,2 +Series 3 Minifigures,Baseball Player - Complete Set,6,2011,Red,1 +Series 3 Minifigures,Baseball Player - Complete Set,6,2011,Medium Dark Flesh,1 +Series 3 Minifigures,Sumo Wrestler - Complete Set,6,2011,Black,2 +Series 3 Minifigures,Sumo Wrestler - Complete Set,6,2011,Copper,1 +Series 3 Minifigures,Sumo Wrestler - Complete Set,6,2011,Yellow,3 +Series 3 Minifigures,Tennis Player - Complete Set,6,2011,Black,1 +Series 3 Minifigures,Tennis Player - Complete Set,6,2011,Dark Orange,1 +Series 3 Minifigures,Tennis Player - Complete Set,6,2011,White,3 +Series 3 Minifigures,Tennis Player - Complete Set,6,2011,Yellow,1 +Series 3 Minifigures,Tribal Chief - Complete Set,6,2011,Black,1 +Series 3 Minifigures,Tribal Chief - Complete Set,6,2011,Reddish Brown,1 +Series 3 Minifigures,Mummy - Complete Set,5,2011,Black,1 +Series 3 Minifigures,Mummy - Complete Set,5,2011,Dark Red,1 +Series 3 Minifigures,Mummy - Complete Set,5,2011,White,3 +Series 4,Rokit,66,2015,Dark Bluish Gray,3 +Series 4,Rokit,66,2015,Black,10 +Series 4,Meltus,66,2015,White,2 +Series 4,Meltus,66,2015,Trans-Orange,2 +Series 4,Meltus,66,2015,Red,15 +Series 4,Meltus,66,2015,Light Bluish Gray,1 +Series 4,Meltus,66,2015,Black,9 +Series 4,Meltus,66,2015,Dark Red,1 +Series 4,Rokit,66,2015,White,6 +Series 4,Rokit,66,2015,Light Bluish Gray,4 +Series 4,Rokit,66,2015,Lime,6 +Series 4,Rokit,66,2015,Pearl Gold,2 +Series 4,Rokit,66,2015,Trans-Black,1 +Series 4,Rokit,66,2015,Trans-Orange,1 +Series 4,Rokit,66,2015,Trans-Red,1 +Series 4,Niksput,62,2015,White,11 +Series 4,Niksput,62,2015,Trans-Red,1 +Series 4,Niksput,62,2015,Trans-Orange,1 +Series 4,Niksput,62,2015,Trans-Clear,1 +Series 4,Niksput,62,2015,Pearl Gold,1 +Series 4,Niksput,62,2015,Black,8 +Series 4,Niksput,62,2015,Lime,6 +Series 4,Niksput,62,2015,Light Bluish Gray,2 +Series 4,Niksput,62,2015,Dark Bluish Gray,2 +Series 4,Flamzer,60,2015,Light Bluish Gray,1 +Series 4,Flamzer,60,2015,Red,8 +Series 4,Flamzer,60,2015,Trans-Orange,1 +Series 4,Flamzer,60,2015,Trans-Red,1 +Series 4,Flamzer,60,2015,Black,10 +Series 4,Flamzer,60,2015,Dark Bluish Gray,2 +Series 4,Flamzer,60,2015,Dark Red,5 +Series 4,Flamzer,60,2015,White,3 +Series 4,Burnard,59,2015,Black,8 +Series 4,Burnard,59,2015,Dark Red,4 +Series 4,Burnard,59,2015,Light Bluish Gray,1 +Series 4,Burnard,59,2015,Red,14 +Series 4,Burnard,59,2015,Trans-Red,1 +Series 4,Burnard,59,2015,White,4 +Series 4,Burnard,59,2015,Trans-Orange,1 +Series 4,Vampos,59,2015,Black,13 +Series 4,Vampos,59,2015,Dark Blue,5 +Series 4,Vampos,59,2015,Glow in Dark White,1 +Series 4,Vampos,59,2015,Light Aqua,1 +Series 4,Vampos,59,2015,Light Bluish Gray,3 +Series 4,Vampos,59,2015,White,2 +Series 4,Nurp-Naut,52,2015,Light Bluish Gray,5 +Series 4,Nurp-Naut,52,2015,Lime,6 +Series 4,Nurp-Naut,52,2015,Pearl Gold,1 +Series 4,Nurp-Naut,52,2015,Trans-Black,1 +Series 4,Nurp-Naut,52,2015,Trans-Orange,1 +Series 4,Nurp-Naut,52,2015,Trans-Red,1 +Series 4,Nurp-Naut,52,2015,White,7 +Series 4,Boogly,52,2015,Dark Blue,6 +Series 4,Boogly,52,2015,Black,11 +Series 4,Nurp-Naut,52,2015,Black,5 +Series 4,Boogly,52,2015,White,2 +Series 4,Boogly,52,2015,Light Bluish Gray,3 +Series 4,Boogly,52,2015,Light Aqua,1 +Series 4,Boogly,52,2015,Glow in Dark White,1 +Series 4,Boogly,52,2015,Dark Bluish Gray,2 +Series 4,Globert,45,2015,White,3 +Series 4,Globert,45,2015,Light Bluish Gray,1 +Series 4,Globert,45,2015,Light Aqua,1 +Series 4,Globert,45,2015,Glow in Dark White,1 +Series 4,Globert,45,2015,Dark Bluish Gray,3 +Series 4,Globert,45,2015,Dark Blue,7 +Series 4,Globert,45,2015,Black,8 +Series 4 Minifigures,Hockey Player - Complete Set,11,2011,Flat Silver,1 +Series 4 Minifigures,Hockey Player - Complete Set,11,2011,Dark Blue,4 +Series 4 Minifigures,Hockey Player - Complete Set,11,2011,Black,2 +Series 4 Minifigures,Hockey Player - Complete Set,11,2011,Yellow,1 +Series 4 Minifigures,Hockey Player - Complete Set,11,2011,White,2 +Series 4 Minifigures,Viking - Complete Set,10,2011,Black,1 +Series 4 Minifigures,Viking - Complete Set,10,2011,Yellow,1 +Series 4 Minifigures,Viking - Complete Set,10,2011,Dark Brown,2 +Series 4 Minifigures,Viking - Complete Set,10,2011,Dark Tan,1 +Series 4 Minifigures,Viking - Complete Set,10,2011,Flat Silver,1 +Series 4 Minifigures,Viking - Complete Set,10,2011,Metallic Silver,1 +Series 4 Minifigures,Viking - Complete Set,10,2011,Pearl Gold,1 +Series 4 Minifigures,Viking - Complete Set,10,2011,Reddish Brown,1 +Series 4 Minifigures,Lawn Gnome - Complete Set,8,2011,Reddish Brown,1 +Series 4 Minifigures,Lawn Gnome - Complete Set,8,2011,Black,2 +Series 4 Minifigures,Lawn Gnome - Complete Set,8,2011,Blue,1 +Series 4 Minifigures,Lawn Gnome - Complete Set,8,2011,Green,1 +Series 4 Minifigures,Lawn Gnome - Complete Set,8,2011,Red,1 +Series 4 Minifigures,Lawn Gnome - Complete Set,8,2011,White,1 +Series 4 Minifigures,Lawn Gnome - Complete Set,8,2011,Yellow,1 +Series 4 Minifigures,Soccer Player - Complete Set,8,2011,Black,3 +Series 4 Minifigures,Soccer Player - Complete Set,8,2011,Medium Dark Flesh,1 +Series 4 Minifigures,Soccer Player - Complete Set,8,2011,Metallic Silver,1 +Series 4 Minifigures,Soccer Player - Complete Set,8,2011,White,2 +Series 4 Minifigures,Soccer Player - Complete Set,8,2011,Yellow,1 +Series 4 Minifigures,Street Skater - Complete Set,8,2011,Black,2 +Series 4 Minifigures,Street Skater - Complete Set,8,2011,Dark Bluish Gray,1 +Series 4 Minifigures,Street Skater - Complete Set,8,2011,Dark Tan,1 +Series 4 Minifigures,Street Skater - Complete Set,8,2011,Light Bluish Gray,1 +Series 4 Minifigures,Street Skater - Complete Set,8,2011,White,1 +Series 4 Minifigures,Street Skater - Complete Set,8,2011,Yellow,1 +Series 4 Minifigures,Ice Skater - Complete Set,8,2011,Yellow,1 +Series 4 Minifigures,Ice Skater - Complete Set,8,2011,Black,1 +Series 4 Minifigures,Ice Skater - Complete Set,8,2011,Bright Light Blue,2 +Series 4 Minifigures,Ice Skater - Complete Set,8,2011,Bright Light Yellow,1 +Series 4 Minifigures,Ice Skater - Complete Set,8,2011,Flat Silver,1 +Series 4 Minifigures,Ice Skater - Complete Set,8,2011,White,1 +Series 4 Minifigures,Musketeer - Complete Set,7,2011,Yellow,1 +Series 4 Minifigures,Artist - Complete Set,7,2011,White,1 +Series 4 Minifigures,Artist - Complete Set,7,2011,Yellow,1 +Series 4 Minifigures,Artist - Complete Set,7,2011,Black,2 +Series 4 Minifigures,Artist - Complete Set,7,2011,Reddish Brown,1 +Series 4 Minifigures,Artist - Complete Set,7,2011,Dark Tan,1 +Series 4 Minifigures,Musketeer - Complete Set,7,2011,Black,3 +Series 4 Minifigures,Musketeer - Complete Set,7,2011,Blue,1 +Series 4 Minifigures,Musketeer - Complete Set,7,2011,Flat Silver,1 +Series 4 Minifigures,Musketeer - Complete Set,7,2011,White,1 +Series 4 Minifigures,Artist - Complete Set,7,2011,Medium Dark Flesh,1 +Series 4 Minifigures,Sailor - Complete Set,6,2011,Yellow,1 +Series 4 Minifigures,Crazy Scientist - Complete Set,6,2011,Black,2 +Series 4 Minifigures,Crazy Scientist - Complete Set,6,2011,Light Bluish Gray,1 +Series 4 Minifigures,Crazy Scientist - Complete Set,6,2011,Trans-Clear,1 +Series 4 Minifigures,Crazy Scientist - Complete Set,6,2011,White,1 +Series 4 Minifigures,Crazy Scientist - Complete Set,6,2011,Yellow,1 +Series 4 Minifigures,Hazmat Guy - Complete Set,6,2011,Black,2 +Series 4 Minifigures,Hazmat Guy - Complete Set,6,2011,Bright Light Orange,3 +Series 4 Minifigures,Hazmat Guy - Complete Set,6,2011,Yellow,1 +Series 4 Minifigures,Kimono Girl - Complete Set,6,2011,Black,2 +Series 4 Minifigures,Kimono Girl - Complete Set,6,2011,Dark Red,1 +Series 4 Minifigures,Kimono Girl - Complete Set,6,2011,Red,2 +Series 4 Minifigures,Surfer Girl - Complete Set,6,2011,Black,3 +Series 4 Minifigures,Surfer Girl - Complete Set,6,2011,Medium Dark Flesh,1 +Series 4 Minifigures,Surfer Girl - Complete Set,6,2011,White,1 +Series 4 Minifigures,Surfer Girl - Complete Set,6,2011,Yellow,1 +Series 4 Minifigures,Kimono Girl - Complete Set,6,2011,White,1 +Series 4 Minifigures,Punk Rocker - Complete Set,6,2011,Black,3 +Series 4 Minifigures,Punk Rocker - Complete Set,6,2011,Magenta,1 +Series 4 Minifigures,Punk Rocker - Complete Set,6,2011,Medium Blue,1 +Series 4 Minifigures,Punk Rocker - Complete Set,6,2011,Yellow,1 +Series 4 Minifigures,Sailor - Complete Set,6,2011,Black,1 +Series 4 Minifigures,Sailor - Complete Set,6,2011,Flat Silver,1 +Series 4 Minifigures,Sailor - Complete Set,6,2011,White,3 +Series 4 Minifigures,Werewolf - Complete Set,6,2011,Black,1 +Series 4 Minifigures,Werewolf - Complete Set,6,2011,Dark Brown,1 +Series 4 Minifigures,Werewolf - Complete Set,6,2011,Reddish Brown,1 +Series 4 Minifigures,Werewolf - Complete Set,6,2011,Sand Blue,1 +Series 4 Minifigures,Werewolf - Complete Set,6,2011,White,2 +Series 4 Minifigures,The Monster - Complete Set,5,2011,Reddish Brown,2 +Series 4 Minifigures,The Monster - Complete Set,5,2011,Sand Green,2 +Series 4 Minifigures,The Monster - Complete Set,5,2011,Black,1 +Series 5,Chilbo,65,2015,Black,4 +Series 5,Chilbo,65,2015,Blue,7 +Series 5,Chilbo,65,2015,Dark Bluish Gray,2 +Series 5,Chilbo,65,2015,Light Bluish Gray,3 +Series 5,Chilbo,65,2015,Medium Azure,2 +Series 5,Chilbo,65,2015,Trans-Clear,1 +Series 5,Chilbo,65,2015,Trans-Medium Blue,1 +Series 5,Chilbo,65,2015,White,3 +Series 5,Gox,62,2015,Black,10 +Series 5,Gox,62,2015,Dark Bluish Gray,6 +Series 5,Gox,62,2015,Flat Silver,2 +Series 5,Gox,62,2015,Light Bluish Gray,5 +Series 5,Gox,62,2015,Pearl Dark Gray,1 +Series 5,Gox,62,2015,Pearl Gold,3 +Series 5,Gox,62,2015,Red,1 +Series 5,Gox,62,2015,Reddish Brown,2 +Series 5,Gox,62,2015,White,4 +Series 5,Tungster,60,2015,White,4 +Series 5,Tungster,60,2015,Yellow,7 +Series 5,Tungster,60,2015,Dark Bluish Gray,1 +Series 5,Krog,60,2015,Black,9 +Series 5,Krog,60,2015,Light Bluish Gray,4 +Series 5,Krog,60,2015,Blue,6 +Series 5,Krog,60,2015,Dark Bluish Gray,2 +Series 5,Krog,60,2015,Medium Azure,3 +Series 5,Krog,60,2015,Red,2 +Series 5,Krog,60,2015,Trans-Light Blue,3 +Series 5,Krog,60,2015,White,5 +Series 5,Tungster,60,2015,Trans-Orange,1 +Series 5,Tungster,60,2015,Black,1 +Series 5,Tungster,60,2015,Bright Light Orange,1 +Series 5,Tungster,60,2015,Light Bluish Gray,4 +Series 5,Tungster,60,2015,Orange,1 +Series 5,Tungster,60,2015,Red,8 +Series 5,Jinky,59,2015,Black,3 +Series 5,Jinky,59,2015,Dark Bluish Gray,7 +Series 5,Jinky,59,2015,Flat Silver,2 +Series 5,Jinky,59,2015,Pearl Gold,4 +Series 5,Jinky,59,2015,Reddish Brown,4 +Series 5,Jinky,59,2015,Tan,1 +Series 5,Jinky,59,2015,White,2 +Series 5,Jinky,59,2015,Light Bluish Gray,4 +Series 5,Kamzo,58,2015,Dark Bluish Gray,6 +Series 5,Kamzo,58,2015,Black,7 +Series 5,Kamzo,58,2015,Flat Silver,2 +Series 5,Kamzo,58,2015,Light Bluish Gray,6 +Series 5,Kamzo,58,2015,Pearl Gold,3 +Series 5,Kamzo,58,2015,Reddish Brown,3 +Series 5,Kamzo,58,2015,White,1 +Series 5,Turg,56,2015,Yellow,7 +Series 5,Turg,56,2015,Black,6 +Series 5,Turg,56,2015,Bright Light Orange,5 +Series 5,Turg,56,2015,Light Bluish Gray,5 +Series 5,Turg,56,2015,Red,5 +Series 5,Turg,56,2015,Trans-Orange,1 +Series 5,Turg,56,2015,White,3 +Series 5,Snoof,54,2015,Black,1 +Series 5,Snoof,54,2015,Blue,11 +Series 5,Snoof,54,2015,Dark Bluish Gray,2 +Series 5,Snoof,54,2015,Light Bluish Gray,4 +Series 5,Snoof,54,2015,Medium Azure,3 +Series 5,Snoof,54,2015,Trans-Clear,1 +Series 5,Snoof,54,2015,Trans-Light Blue,1 +Series 5,Snoof,54,2015,Trans-Medium Blue,1 +Series 5,Snoof,54,2015,White,2 +Series 5,Spugg,51,2015,Black,2 +Series 5,Spugg,51,2015,Bright Light Orange,4 +Series 5,Spugg,51,2015,Dark Bluish Gray,1 +Series 5,Spugg,51,2015,Light Bluish Gray,5 +Series 5,Spugg,51,2015,Red,1 +Series 5,Spugg,51,2015,Reddish Brown,1 +Series 5,Spugg,51,2015,White,2 +Series 5,Spugg,51,2015,Yellow,9 +Series 5,Spugg,51,2015,Trans-Orange,2 +Series 5 Minifigures,Evil Dwarf - Complete Set,10,2011,Reddish Brown,1 +Series 5 Minifigures,Evil Dwarf - Complete Set,10,2011,Yellow,1 +Series 5 Minifigures,Evil Dwarf - Complete Set,10,2011,Black,3 +Series 5 Minifigures,Evil Dwarf - Complete Set,10,2011,Dark Brown,1 +Series 5 Minifigures,Evil Dwarf - Complete Set,10,2011,Pearl Dark Gray,3 +Series 5 Minifigures,Ice Fisherman - Complete Set,8,2011,Tan,1 +Series 5 Minifigures,Ice Fisherman - Complete Set,8,2011,Black,2 +Series 5 Minifigures,Ice Fisherman - Complete Set,8,2011,Dark Tan,2 +Series 5 Minifigures,Ice Fisherman - Complete Set,8,2011,Yellow,1 +Series 5 Minifigures,Ice Fisherman - Complete Set,8,2011,Reddish Brown,1 +Series 5 Minifigures,Ice Fisherman - Complete Set,8,2011,Sand Green,1 +Series 5 Minifigures,Gladiator - Complete Set,7,2011,Dark Tan,1 +Series 5 Minifigures,Cave Woman - Complete Set,7,2011,White,1 +Series 5 Minifigures,Cave Woman - Complete Set,7,2011,Yellow,3 +Series 5 Minifigures,Gladiator - Complete Set,7,2011,Metallic Gold,1 +Series 5 Minifigures,Gladiator - Complete Set,7,2011,Pearl Dark Gray,2 +Series 5 Minifigures,Graduate - Complete Set,7,2011,Black,4 +Series 5 Minifigures,Graduate - Complete Set,7,2011,Dark Bluish Gray,1 +Series 5 Minifigures,Graduate - Complete Set,7,2011,White,1 +Series 5 Minifigures,Gladiator - Complete Set,7,2011,Yellow,2 +Series 5 Minifigures,Graduate - Complete Set,7,2011,Yellow,1 +Series 5 Minifigures,Zookeeper - Complete Set,7,2011,Black,2 +Series 5 Minifigures,Cave Woman - Complete Set,7,2011,Black,1 +Series 5 Minifigures,Cave Woman - Complete Set,7,2011,Dark Brown,1 +Series 5 Minifigures,Cave Woman - Complete Set,7,2011,Dark Orange,1 +Series 5 Minifigures,Zookeeper - Complete Set,7,2011,Reddish Brown,1 +Series 5 Minifigures,Gangster - Complete Set,7,2011,Black,5 +Series 5 Minifigures,Gangster - Complete Set,7,2011,Dark Bluish Gray,1 +Series 5 Minifigures,Gangster - Complete Set,7,2011,Yellow,1 +Series 5 Minifigures,Gladiator - Complete Set,7,2011,Black,1 +Series 5 Minifigures,Zookeeper - Complete Set,7,2011,Tan,2 +Series 5 Minifigures,Zookeeper - Complete Set,7,2011,Yellow,2 +Series 5 Minifigures,Detective - Complete Set,6,2011,Dark Bluish Gray,1 +Series 5 Minifigures,Detective - Complete Set,6,2011,Dark Tan,3 +Series 5 Minifigures,Detective - Complete Set,6,2011,Yellow,1 +Series 5 Minifigures,Egyptian Queen - Complete Set,6,2011,Black,2 +Series 5 Minifigures,Egyptian Queen - Complete Set,6,2011,Green,1 +Series 5 Minifigures,Egyptian Queen - Complete Set,6,2011,Yellow,1 +Series 5 Minifigures,Fitness Instructor - Complete Set,6,2011,Black,1 +Series 5 Minifigures,Fitness Instructor - Complete Set,6,2011,Dark Pink,2 +Series 5 Minifigures,Fitness Instructor - Complete Set,6,2011,Medium Dark Flesh,1 +Series 5 Minifigures,Fitness Instructor - Complete Set,6,2011,Yellow,1 +Series 5 Minifigures,Fitness Instructor - Complete Set,6,2011,Lavender,1 +Series 5 Minifigures,Lizard Man - Complete Set,6,2011,Black,1 +Series 5 Minifigures,Lizard Man - Complete Set,6,2011,Bright Green,4 +Series 5 Minifigures,Lizard Man - Complete Set,6,2011,Yellow,1 +Series 5 Minifigures,Lumberjack - Complete Set,6,2011,Black,1 +Series 5 Minifigures,Lumberjack - Complete Set,6,2011,Dark Red,1 +Series 5 Minifigures,Lumberjack - Complete Set,6,2011,Red,1 +Series 5 Minifigures,Lumberjack - Complete Set,6,2011,Reddish Brown,1 +Series 5 Minifigures,Lumberjack - Complete Set,6,2011,Sand Blue,1 +Series 5 Minifigures,Lumberjack - Complete Set,6,2011,Yellow,1 +Series 5 Minifigures,Royal Guard - Complete Set,6,2011,Black,3 +Series 5 Minifigures,Royal Guard - Complete Set,6,2011,Red,1 +Series 5 Minifigures,Royal Guard - Complete Set,6,2011,Reddish Brown,1 +Series 5 Minifigures,Royal Guard - Complete Set,6,2011,Yellow,1 +Series 5 Minifigures,Small Clown - Complete Set,6,2011,Black,1 +Series 5 Minifigures,Small Clown - Complete Set,6,2011,Blue,1 +Series 5 Minifigures,Small Clown - Complete Set,6,2011,Green,1 +Series 5 Minifigures,Small Clown - Complete Set,6,2011,Medium Dark Flesh,1 +Series 5 Minifigures,Small Clown - Complete Set,6,2011,White,1 +Series 5 Minifigures,Snowboarder Guy - Complete Set,6,2011,Black,1 +Series 5 Minifigures,Snowboarder Guy - Complete Set,6,2011,Blue,1 +Series 5 Minifigures,Snowboarder Guy - Complete Set,6,2011,Dark Blue,1 +Series 5 Minifigures,Snowboarder Guy - Complete Set,6,2011,Dark Bluish Gray,1 +Series 5 Minifigures,Snowboarder Guy - Complete Set,6,2011,White,1 +Series 5 Minifigures,Snowboarder Guy - Complete Set,6,2011,Yellow,1 +Series 5 Minifigures,Small Clown - Complete Set,6,2011,Red,1 +Series 5 Minifigures,Egyptian Queen - Complete Set,6,2011,White,2 +Series 5 Minifigures,Detective - Complete Set,6,2011,Black,1 +Series 5 Minifigures,Boxer - Complete Set,5,2011,Red,2 +Series 5 Minifigures,Boxer - Complete Set,5,2011,Black,1 +Series 5 Minifigures,Boxer - Complete Set,5,2011,Yellow,2 +Series 6,Wuzzo,74,2015,Trans-Red,1 +Series 6,Wuzzo,74,2015,Pearl Gold,3 +Series 6,Wuzzo,74,2015,Light Bluish Gray,6 +Series 6,Wuzzo,74,2015,Dark Bluish Gray,1 +Series 6,Wuzzo,74,2015,Black,13 +Series 6,Wuzzo,74,2015,Yellow,8 +Series 6,Wuzzo,74,2015,White,2 +Series 6,Vaka-Waka,69,2015,White,5 +Series 6,Vaka-Waka,69,2015,Trans-Clear,1 +Series 6,Vaka-Waka,69,2015,Black,7 +Series 6,Vaka-Waka,69,2015,Dark Bluish Gray,3 +Series 6,Vaka-Waka,69,2015,Dark Purple,7 +Series 6,Vaka-Waka,69,2015,Light Bluish Gray,2 +Series 6,Vaka-Waka,69,2015,Medium Lavender,4 +Series 6,Vaka-Waka,69,2015,Red,1 +Series 6,Vaka-Waka,69,2015,Tan,2 +Series 6,Vaka-Waka,69,2015,Trans-Bright Green,1 +Series 6,Vaka-Waka,69,2015,Trans-Orange,1 +Series 6,Berp,68,2015,Black,10 +Series 6,Berp,68,2015,Dark Bluish Gray,1 +Series 6,Berp,68,2015,Dark Purple,5 +Series 6,Berp,68,2015,Light Bluish Gray,3 +Series 6,Berp,68,2015,Lime,1 +Series 6,Berp,68,2015,Medium Lavender,3 +Series 6,Berp,68,2015,Red,2 +Series 6,Berp,68,2015,White,3 +Series 6,Kramm,68,2015,Dark Bluish Gray,4 +Series 6,Kramm,68,2015,Light Bluish Gray,4 +Series 6,Kramm,68,2015,Tan,1 +Series 6,Kramm,68,2015,Trans-Red,1 +Series 6,Kramm,68,2015,White,2 +Series 6,Kramm,68,2015,Yellow,10 +Series 6,Kramm,68,2015,Black,11 +Series 6,Gurggle,66,2015,Dark Bluish Gray,3 +Series 6,Gurggle,66,2015,White,3 +Series 6,Gurggle,66,2015,Lime,7 +Series 6,Gurggle,66,2015,Light Bluish Gray,2 +Series 6,Gurggle,66,2015,Trans-Neon Green,2 +Series 6,Gurggle,66,2015,Green,8 +Series 6,Gurggle,66,2015,Black,3 +Series 6,Forx,65,2015,Flat Silver,1 +Series 6,Forx,65,2015,Trans-Red,1 +Series 6,Forx,65,2015,Black,10 +Series 6,Forx,65,2015,White,2 +Series 6,Forx,65,2015,Yellow,12 +Series 6,Forx,65,2015,Dark Bluish Gray,5 +Series 6,Forx,65,2015,Light Bluish Gray,4 +Series 6,Slusho,53,2015,White,3 +Series 6,Slusho,53,2015,Black,6 +Series 6,Slusho,53,2015,Light Bluish Gray,3 +Series 6,Slusho,53,2015,Dark Bluish Gray,2 +Series 6,Slusho,53,2015,Green,3 +Series 6,Slusho,53,2015,Lime,3 +Series 6,Slusho,53,2015,Trans-Green,1 +Series 6,Slusho,53,2015,Trans-Neon Green,3 +Series 6,Dribbal,52,2015,Black,4 +Series 6,Dribbal,52,2015,Green,4 +Series 6,Dribbal,52,2015,Light Bluish Gray,2 +Series 6,Dribbal,52,2015,Dark Bluish Gray,1 +Series 6,Dribbal,52,2015,White,3 +Series 6,Dribbal,52,2015,Trans-Neon Green,2 +Series 6,Dribbal,52,2015,Lime,7 +Series 6,Snax,51,2015,Medium Lavender,5 +Series 6,Snax,51,2015,Lime,1 +Series 6,Snax,51,2015,White,3 +Series 6,Snax,51,2015,Light Bluish Gray,2 +Series 6,Snax,51,2015,Dark Purple,5 +Series 6,Snax,51,2015,Bright Light Orange,1 +Series 6,Snax,51,2015,Blue,1 +Series 6,Snax,51,2015,Dark Bluish Gray,3 +Series 6,Snax,51,2015,Black,6 +Series 6 Minifigures,Leprechaun - Complete Set,9,2012,Green,3 +Series 6 Minifigures,Leprechaun - Complete Set,9,2012,Black,1 +Series 6 Minifigures,Intergalactic Girl - Complete Set,9,2012,Black,1 +Series 6 Minifigures,Intergalactic Girl - Complete Set,9,2012,Bright Light Yellow,1 +Series 6 Minifigures,Intergalactic Girl - Complete Set,9,2012,Dark Pink,3 +Series 6 Minifigures,Intergalactic Girl - Complete Set,9,2012,Flat Silver,1 +Series 6 Minifigures,Intergalactic Girl - Complete Set,9,2012,Trans-Light Blue,2 +Series 6 Minifigures,Leprechaun - Complete Set,9,2012,Yellow,1 +Series 6 Minifigures,Leprechaun - Complete Set,9,2012,Reddish Brown,1 +Series 6 Minifigures,Leprechaun - Complete Set,9,2012,Pearl Gold,1 +Series 6 Minifigures,Intergalactic Girl - Complete Set,9,2012,Yellow,1 +Series 6 Minifigures,Bandit - Complete Set,8,2012,Black,5 +Series 6 Minifigures,Bandit - Complete Set,8,2012,Dark Red,1 +Series 6 Minifigures,Bandit - Complete Set,8,2012,Yellow,1 +Series 6 Minifigures,Lady Liberty - Complete Set,8,2012,Trans-Orange,1 +Series 6 Minifigures,Lady Liberty - Complete Set,8,2012,Sand Green,6 +Series 6 Minifigures,Lady Liberty - Complete Set,8,2012,Black,1 +Series 6 Minifigures,Minotaur - Complete Set,8,2012,Black,2 +Series 6 Minifigures,Minotaur - Complete Set,8,2012,Pearl Dark Gray,1 +Series 6 Minifigures,Minotaur - Complete Set,8,2012,Reddish Brown,3 +Series 6 Minifigures,Minotaur - Complete Set,8,2012,White,1 +Series 6 Minifigures,Skater Girl - Complete Set,8,2012,Black,5 +Series 6 Minifigures,Skater Girl - Complete Set,8,2012,White,1 +Series 6 Minifigures,Skater Girl - Complete Set,8,2012,Yellow,1 +Series 6 Minifigures,Genie - Complete Set,7,2012,Medium Azure,2 +Series 6 Minifigures,Genie - Complete Set,7,2012,Pearl Gold,2 +Series 6 Minifigures,Highland Battler - Complete Set,7,2012,Black,1 +Series 6 Minifigures,Highland Battler - Complete Set,7,2012,Dark Blue,1 +Series 6 Minifigures,Highland Battler - Complete Set,7,2012,Dark Brown,2 +Series 6 Minifigures,Highland Battler - Complete Set,7,2012,Flat Silver,1 +Series 6 Minifigures,Highland Battler - Complete Set,7,2012,Reddish Brown,1 +Series 6 Minifigures,Highland Battler - Complete Set,7,2012,Yellow,1 +Series 6 Minifigures,Roman Soldier - Complete Set,7,2012,Metallic Silver,1 +Series 6 Minifigures,Mechanic - Complete Set,7,2012,Black,2 +Series 6 Minifigures,Mechanic - Complete Set,7,2012,Dark Blue,2 +Series 6 Minifigures,Mechanic - Complete Set,7,2012,Light Bluish Gray,1 +Series 6 Minifigures,Mechanic - Complete Set,7,2012,Red,1 +Series 6 Minifigures,Mechanic - Complete Set,7,2012,Yellow,1 +Series 6 Minifigures,Butcher - Complete Set,7,2012,Black,1 +Series 6 Minifigures,Butcher - Complete Set,7,2012,Flat Silver,1 +Series 6 Minifigures,Butcher - Complete Set,7,2012,White,4 +Series 6 Minifigures,Roman Soldier - Complete Set,7,2012,Black,1 +Series 6 Minifigures,Roman Soldier - Complete Set,7,2012,Dark Red,1 +Series 6 Minifigures,Roman Soldier - Complete Set,7,2012,Light Bluish Gray,1 +Series 6 Minifigures,Roman Soldier - Complete Set,7,2012,Reddish Brown,1 +Series 6 Minifigures,Roman Soldier - Complete Set,7,2012,Yellow,2 +Series 6 Minifigures,Butcher - Complete Set,7,2012,Yellow,1 +Series 6 Minifigures,Genie - Complete Set,7,2012,Black,1 +Series 6 Minifigures,Genie - Complete Set,7,2012,Dark Purple,2 +Series 6 Minifigures,Surgeon - Complete Set,7,2012,Black,1 +Series 6 Minifigures,Surgeon - Complete Set,7,2012,Light Aqua,1 +Series 6 Minifigures,Surgeon - Complete Set,7,2012,Light Bluish Gray,1 +Series 6 Minifigures,Surgeon - Complete Set,7,2012,Medium Azure,2 +Series 6 Minifigures,Surgeon - Complete Set,7,2012,Trans-Light Blue,1 +Series 6 Minifigures,Surgeon - Complete Set,7,2012,Yellow,1 +Series 6 Minifigures,Clockwork Robot - Complete Set,6,2012,Flat Silver,1 +Series 6 Minifigures,Classic Alien - Complete Set,6,2012,Black,1 +Series 6 Minifigures,Classic Alien - Complete Set,6,2012,White,1 +Series 6 Minifigures,Classic Alien - Complete Set,6,2012,Trans-Bright Green,1 +Series 6 Minifigures,Sleepyhead - Complete Set,6,2012,Black,1 +Series 6 Minifigures,Sleepyhead - Complete Set,6,2012,Bright Light Blue,2 +Series 6 Minifigures,Sleepyhead - Complete Set,6,2012,Medium Dark Flesh,1 +Series 6 Minifigures,Sleepyhead - Complete Set,6,2012,Reddish Brown,1 +Series 6 Minifigures,Sleepyhead - Complete Set,6,2012,Yellow,1 +Series 6 Minifigures,Classic Alien - Complete Set,6,2012,Light Bluish Gray,3 +Series 6 Minifigures,Flamenco Dancer - Complete Set,6,2012,Yellow,1 +Series 6 Minifigures,Flamenco Dancer - Complete Set,6,2012,Red,2 +Series 6 Minifigures,Flamenco Dancer - Complete Set,6,2012,Black,3 +Series 6 Minifigures,Clockwork Robot - Complete Set,6,2012,Black,1 +Series 6 Minifigures,Clockwork Robot - Complete Set,6,2012,Light Bluish Gray,4 +Series 7,Jamzy,70,2016,Yellow,14 +Series 7,Jamzy,70,2016,Black,6 +Series 7,Jamzy,70,2016,Dark Bluish Gray,2 +Series 7,Jamzy,70,2016,Dark Purple,3 +Series 7,Jamzy,70,2016,Flat Silver,1 +Series 7,Jamzy,70,2016,Light Bluish Gray,6 +Series 7,Jamzy,70,2016,Red,1 +Series 7,Jamzy,70,2016,White,3 +Series 7,Busto,69,2016,Black,9 +Series 7,Busto,69,2016,Blue,7 +Series 7,Busto,69,2016,Dark Bluish Gray,4 +Series 7,Busto,69,2016,Red,2 +Series 7,Busto,69,2016,Trans-Dark Blue,1 +Series 7,Busto,69,2016,Trans-Red,1 +Series 7,Busto,69,2016,White,6 +Series 7,Camillot,64,2016,Black,6 +Series 7,Camillot,64,2016,Dark Bluish Gray,5 +Series 7,Camillot,64,2016,Light Bluish Gray,12 +Series 7,Camillot,64,2016,Pearl Dark Gray,1 +Series 7,Camillot,64,2016,Pearl Gold,1 +Series 7,Camillot,64,2016,Red,1 +Series 7,Camillot,64,2016,Reddish Brown,5 +Series 7,Camillot,64,2016,White,2 +Series 7,Camillot,64,2016,Flat Silver,1 +Series 7,Paladum,64,2016,White,3 +Series 7,Paladum,64,2016,Black,7 +Series 7,Paladum,64,2016,Dark Bluish Gray,5 +Series 7,Paladum,64,2016,Flat Silver,1 +Series 7,Paladum,64,2016,Light Bluish Gray,7 +Series 7,Paladum,64,2016,Pearl Gold,2 +Series 7,Paladum,64,2016,Red,1 +Series 7,Paladum,64,2016,Reddish Brown,5 +Series 7,Mixadel,63,2016,Black,2 +Series 7,Kuffs,63,2016,Black,12 +Series 7,Mixadel,63,2016,Flat Silver,1 +Series 7,Mixadel,63,2016,Light Bluish Gray,3 +Series 7,Mixadel,63,2016,Pearl Gold,1 +Series 7,Mixadel,63,2016,Red,2 +Series 7,Mixadel,63,2016,Reddish Brown,10 +Series 7,Mixadel,63,2016,White,3 +Series 7,Mixadel,63,2016,Dark Bluish Gray,6 +Series 7,Kuffs,63,2016,Blue,7 +Series 7,Kuffs,63,2016,Light Bluish Gray,4 +Series 7,Kuffs,63,2016,Red,1 +Series 7,Kuffs,63,2016,Trans-Dark Blue,1 +Series 7,Kuffs,63,2016,Trans-Red,1 +Series 7,Kuffs,63,2016,White,9 +Series 7,Kuffs,63,2016,Dark Bluish Gray,2 +Series 7,Tiketz,62,2016,Blue,7 +Series 7,Tiketz,62,2016,Dark Bluish Gray,1 +Series 7,Tiketz,62,2016,Light Bluish Gray,5 +Series 7,Tiketz,62,2016,Red,2 +Series 7,Tiketz,62,2016,Reddish Brown,1 +Series 7,Tiketz,62,2016,Trans-Black,1 +Series 7,Tiketz,62,2016,Trans-Dark Blue,1 +Series 7,Tiketz,62,2016,Trans-Red,1 +Series 7,Tiketz,62,2016,White,3 +Series 7,Tiketz,62,2016,Black,9 +Series 7,Tapsy,57,2016,Black,4 +Series 7,Tapsy,57,2016,Dark Bluish Gray,2 +Series 7,Tapsy,57,2016,Dark Purple,3 +Series 7,Tapsy,57,2016,Flat Silver,1 +Series 7,Tapsy,57,2016,Light Bluish Gray,3 +Series 7,Tapsy,57,2016,Red,1 +Series 7,Tapsy,57,2016,Reddish Brown,1 +Series 7,Tapsy,57,2016,White,3 +Series 7,Tapsy,57,2016,Yellow,8 +Series 7,Trumpsy,54,2016,Dark Bluish Gray,3 +Series 7,Trumpsy,54,2016,Dark Purple,4 +Series 7,Trumpsy,54,2016,Light Bluish Gray,9 +Series 7,Trumpsy,54,2016,White,2 +Series 7,Trumpsy,54,2016,Yellow,12 +Series 7 Minifigures,Bride - Complete Set,11,2012,White,3 +Series 7 Minifigures,Bride - Complete Set,11,2012,Bright Pink,1 +Series 7 Minifigures,Bride - Complete Set,11,2012,Black,1 +Series 7 Minifigures,Bride - Complete Set,11,2012,Dark Brown,1 +Series 7 Minifigures,Bride - Complete Set,11,2012,Flat Silver,1 +Series 7 Minifigures,Bride - Complete Set,11,2012,Green,1 +Series 7 Minifigures,Bride - Complete Set,11,2012,Yellow,1 +Series 7 Minifigures,Viking Woman - Complete Set,9,2012,Yellow,1 +Series 7 Minifigures,Viking Woman - Complete Set,9,2012,White,1 +Series 7 Minifigures,Viking Woman - Complete Set,9,2012,Tan,1 +Series 7 Minifigures,Viking Woman - Complete Set,9,2012,Black,1 +Series 7 Minifigures,Viking Woman - Complete Set,9,2012,Reddish Brown,2 +Series 7 Minifigures,Viking Woman - Complete Set,9,2012,Dark Brown,1 +Series 7 Minifigures,Viking Woman - Complete Set,9,2012,Flat Silver,1 +Series 7 Minifigures,Hippie - Complete Set,9,2012,Black,1 +Series 7 Minifigures,Hippie - Complete Set,9,2012,Dark Purple,1 +Series 7 Minifigures,Hippie - Complete Set,9,2012,Green,1 +Series 7 Minifigures,Hippie - Complete Set,9,2012,Reddish Brown,1 +Series 7 Minifigures,Hippie - Complete Set,9,2012,Tan,1 +Series 7 Minifigures,Hippie - Complete Set,9,2012,Yellow,2 +Series 7 Minifigures,Daredevil - Complete Set,8,2012,White,4 +Series 7 Minifigures,Daredevil - Complete Set,8,2012,Yellow,1 +Series 7 Minifigures,Evil Knight - Complete Set,8,2012,Pearl Dark Gray,1 +Series 7 Minifigures,Evil Knight - Complete Set,8,2012,Yellow,1 +Series 7 Minifigures,Evil Knight - Complete Set,8,2012,Black,6 +Series 7 Minifigures,Daredevil - Complete Set,8,2012,Black,1 +Series 7 Minifigures,Daredevil - Complete Set,8,2012,Medium Dark Flesh,1 +Series 7 Minifigures,Daredevil - Complete Set,8,2012,Trans-Dark Blue,1 +Series 7 Minifigures,Aztec Warrior - Complete Set,7,2012,Black,1 +Series 7 Minifigures,Aztec Warrior - Complete Set,7,2012,Pearl Gold,3 +Series 7 Minifigures,Aztec Warrior - Complete Set,7,2012,Yellow,3 +Series 7 Minifigures,Bagpiper - Complete Set,7,2012,Black,4 +Series 7 Minifigures,Bagpiper - Complete Set,7,2012,Red,1 +Series 7 Minifigures,Bagpiper - Complete Set,7,2012,White,1 +Series 7 Minifigures,Bagpiper - Complete Set,7,2012,Yellow,1 +Series 7 Minifigures,Bunny Suit Guy - Complete Set,7,2012,Black,1 +Series 7 Minifigures,Bunny Suit Guy - Complete Set,7,2012,Bright Green,1 +Series 7 Minifigures,Bunny Suit Guy - Complete Set,7,2012,Orange,1 +Series 7 Minifigures,Bunny Suit Guy - Complete Set,7,2012,White,3 +Series 7 Minifigures,Bunny Suit Guy - Complete Set,7,2012,Yellow,1 +Series 7 Minifigures,Computer Programmer - Complete Set,7,2012,Black,2 +Series 7 Minifigures,Computer Programmer - Complete Set,7,2012,Dark Bluish Gray,1 +Series 7 Minifigures,Computer Programmer - Complete Set,7,2012,Reddish Brown,1 +Series 7 Minifigures,Computer Programmer - Complete Set,7,2012,Tan,1 +Series 7 Minifigures,Computer Programmer - Complete Set,7,2012,White,1 +Series 7 Minifigures,Computer Programmer - Complete Set,7,2012,Yellow,1 +Series 7 Minifigures,Galaxy Patrol - Complete Set,7,2012,Black,2 +Series 7 Minifigures,Galaxy Patrol - Complete Set,7,2012,Dark Blue,4 +Series 7 Minifigures,Galaxy Patrol - Complete Set,7,2012,Yellow,1 +Series 7 Minifigures,Grandma Visitor - Complete Set,7,2012,Black,2 +Series 7 Minifigures,Grandma Visitor - Complete Set,7,2012,Medium Dark Flesh,1 +Series 7 Minifigures,Grandma Visitor - Complete Set,7,2012,Red,3 +Series 7 Minifigures,Grandma Visitor - Complete Set,7,2012,Yellow,1 +Series 7 Minifigures,Jungle Boy - Complete Set,7,2012,Black,2 +Series 7 Minifigures,Jungle Boy - Complete Set,7,2012,Dark Bluish Gray,1 +Series 7 Minifigures,Jungle Boy - Complete Set,7,2012,Reddish Brown,1 +Series 7 Minifigures,Jungle Boy - Complete Set,7,2012,Yellow,3 +Series 7 Minifigures,Ocean King - Complete Set,7,2012,Pearl Gold,1 +Series 7 Minifigures,Ocean King - Complete Set,7,2012,Sand Green,1 +Series 7 Minifigures,Ocean King - Complete Set,7,2012,White,2 +Series 7 Minifigures,Ocean King - Complete Set,7,2012,Yellow,2 +Series 7 Minifigures,Ocean King - Complete Set,7,2012,Black,1 +Series 7 Minifigures,Rocker Girl - Complete Set,6,2012,Black,1 +Series 7 Minifigures,Rocker Girl - Complete Set,6,2012,Dark Pink,1 +Series 7 Minifigures,Rocker Girl - Complete Set,6,2012,Medium Azure,1 +Series 7 Minifigures,Rocker Girl - Complete Set,6,2012,White,2 +Series 7 Minifigures,Rocker Girl - Complete Set,6,2012,Yellow,1 +Series 7 Minifigures,Swimming Champion - Complete Set,6,2012,Black,3 +Series 7 Minifigures,Swimming Champion - Complete Set,6,2012,Red,1 +Series 7 Minifigures,Swimming Champion - Complete Set,6,2012,Yellow,2 +Series 7 Minifigures,Tennis Ace - Complete Set,6,2012,Black,1 +Series 7 Minifigures,Tennis Ace - Complete Set,6,2012,Dark Blue,1 +Series 7 Minifigures,Tennis Ace - Complete Set,6,2012,Yellow,1 +Series 7 Minifigures,Tennis Ace - Complete Set,6,2012,White,2 +Series 7 Minifigures,Tennis Ace - Complete Set,6,2012,Tan,1 +Series 8,Aquad,70,2016,Black,9 +Series 8,Aquad,70,2016,Dark Bluish Gray,3 +Series 8,Aquad,70,2016,Light Bluish Gray,1 +Series 8,Aquad,70,2016,Red,10 +Series 8,Aquad,70,2016,Trans-Dark Blue,1 +Series 8,Aquad,70,2016,Trans-Light Blue,3 +Series 8,Aquad,70,2016,White,3 +Series 8,Aquad,70,2016,Yellow,5 +Series 8,Hydro,70,2016,Black,10 +Series 8,Hydro,70,2016,Dark Bluish Gray,1 +Series 8,Hydro,70,2016,Light Bluish Gray,2 +Series 8,Hydro,70,2016,Red,4 +Series 8,Hydro,70,2016,Trans-Dark Blue,1 +Series 8,Hydro,70,2016,Trans-Light Blue,1 +Series 8,Hydro,70,2016,Trans-Orange,1 +Series 8,Hydro,70,2016,White,8 +Series 8,Hydro,70,2016,Yellow,3 +Series 8,Skrubz,68,2016,Trans-Neon Green,1 +Series 8,Skrubz,68,2016,Trans-Light Blue,1 +Series 8,Skrubz,68,2016,Red,1 +Series 8,Skrubz,68,2016,Medium Azure,3 +Series 8,Skrubz,68,2016,Light Bluish Gray,6 +Series 8,Skrubz,68,2016,Light Aqua,1 +Series 8,Skrubz,68,2016,White,14 +Series 8,Skrubz,68,2016,Dark Bluish Gray,2 +Series 8,Skrubz,68,2016,Black,6 +Series 8,Splasho,67,2016,White,3 +Series 8,Splasho,67,2016,Yellow,3 +Series 8,Tuth,67,2016,Dark Bluish Gray,1 +Series 8,Tuth,67,2016,Light Aqua,2 +Series 8,Tuth,67,2016,Light Bluish Gray,4 +Series 8,Tuth,67,2016,Medium Azure,2 +Series 8,Tuth,67,2016,Red,6 +Series 8,Tuth,67,2016,Trans-Neon Green,1 +Series 8,Tuth,67,2016,White,15 +Series 8,Splasho,67,2016,Black,8 +Series 8,Splasho,67,2016,Blue,1 +Series 8,Splasho,67,2016,Dark Tan,1 +Series 8,Splasho,67,2016,Light Bluish Gray,2 +Series 8,Splasho,67,2016,Red,14 +Series 8,Splasho,67,2016,Trans-Light Blue,1 +Series 8,Skulzy,66,2016,Reddish Brown,5 +Series 8,Skulzy,66,2016,White,12 +Series 8,Skulzy,66,2016,Dark Brown,1 +Series 8,Skulzy,66,2016,Flat Silver,1 +Series 8,Skulzy,66,2016,Light Bluish Gray,2 +Series 8,Skulzy,66,2016,Pearl Gold,1 +Series 8,Skulzy,66,2016,Red,3 +Series 8,Skulzy,66,2016,Black,9 +Series 8,Skulzy,66,2016,Bright Green,1 +Series 8,Skulzy,66,2016,Dark Bluish Gray,1 +Series 8,Surgeo,63,2016,Red,1 +Series 8,Surgeo,63,2016,Medium Azure,1 +Series 8,Surgeo,63,2016,Light Bluish Gray,8 +Series 8,Surgeo,63,2016,Light Aqua,2 +Series 8,Surgeo,63,2016,Dark Bluish Gray,2 +Series 8,Surgeo,63,2016,Black,4 +Series 8,Surgeo,63,2016,Trans-Clear,1 +Series 8,Surgeo,63,2016,Trans-Light Blue,1 +Series 8,Surgeo,63,2016,Trans-Neon Green,1 +Series 8,Surgeo,63,2016,White,13 +Series 8,Lewt,62,2016,Black,5 +Series 8,Lewt,62,2016,Pearl Gold,3 +Series 8,Lewt,62,2016,Bright Green,1 +Series 8,Lewt,62,2016,Dark Bluish Gray,2 +Series 8,Lewt,62,2016,Dark Brown,3 +Series 8,Lewt,62,2016,Flat Silver,1 +Series 8,Lewt,62,2016,White,1 +Series 8,Lewt,62,2016,Light Bluish Gray,3 +Series 8,Lewt,62,2016,Red,1 +Series 8,Lewt,62,2016,Reddish Brown,6 +Series 8,Sharx,55,2016,Flat Silver,1 +Series 8,Sharx,55,2016,Light Bluish Gray,3 +Series 8,Sharx,55,2016,Pearl Gold,3 +Series 8,Sharx,55,2016,Black,8 +Series 8,Sharx,55,2016,White,3 +Series 8,Sharx,55,2016,Red,4 +Series 8,Sharx,55,2016,Reddish Brown,2 +Series 8,Sharx,55,2016,Dark Bluish Gray,9 +Series 8,Sharx,55,2016,Bright Green,1 +Series 8,Sharx,55,2016,Dark Brown,1 +Series 8 Minifigures,Alien Villainess - Complete Set,10,2012,Dark Pink,1 +Series 8 Minifigures,Alien Villainess - Complete Set,10,2012,Dark Purple,2 +Series 8 Minifigures,Alien Villainess - Complete Set,10,2012,Flat Silver,1 +Series 8 Minifigures,Alien Villainess - Complete Set,10,2012,Lime,1 +Series 8 Minifigures,Alien Villainess - Complete Set,10,2012,Trans-Dark Pink,2 +Series 8 Minifigures,Alien Villainess - Complete Set,10,2012,Black,3 +Series 8 Minifigures,Downhill Skier - Complete Set,9,2012,White,2 +Series 8 Minifigures,Downhill Skier - Complete Set,9,2012,Yellow,1 +Series 8 Minifigures,Downhill Skier - Complete Set,9,2012,Black,1 +Series 8 Minifigures,Downhill Skier - Complete Set,9,2012,Magenta,1 +Series 8 Minifigures,Downhill Skier - Complete Set,9,2012,Medium Lavender,1 +Series 8 Minifigures,Downhill Skier - Complete Set,9,2012,Tan,1 +Series 8 Minifigures,Diver - Complete Set,8,2012,Flat Silver,1 +Series 8 Minifigures,Football Player - Complete Set,8,2012,Blue,1 +Series 8 Minifigures,Football Player - Complete Set,8,2012,Pearl Gold,1 +Series 8 Minifigures,Football Player - Complete Set,8,2012,White,4 +Series 8 Minifigures,Football Player - Complete Set,8,2012,Yellow,1 +Series 8 Minifigures,Evil Robot - Complete Set,8,2012,Black,5 +Series 8 Minifigures,Evil Robot - Complete Set,8,2012,Pearl Dark Gray,2 +Series 8 Minifigures,Evil Robot - Complete Set,8,2012,Trans-Red,1 +Series 8 Minifigures,Fairy - Complete Set,8,2012,Black,1 +Series 8 Minifigures,Conquistador - Complete Set,8,2012,Black,1 +Series 8 Minifigures,Conquistador - Complete Set,8,2012,Dark Red,1 +Series 8 Minifigures,Conquistador - Complete Set,8,2012,Flat Silver,1 +Series 8 Minifigures,Conquistador - Complete Set,8,2012,Light Bluish Gray,1 +Series 8 Minifigures,Conquistador - Complete Set,8,2012,Metallic Gold,2 +Series 8 Minifigures,Conquistador - Complete Set,8,2012,Red,1 +Series 8 Minifigures,Conquistador - Complete Set,8,2012,Yellow,1 +Series 8 Minifigures,Fairy - Complete Set,8,2012,Light Aqua,1 +Series 8 Minifigures,Fairy - Complete Set,8,2012,Medium Dark Flesh,1 +Series 8 Minifigures,Fairy - Complete Set,8,2012,Trans-Dark Pink,1 +Series 8 Minifigures,Fairy - Complete Set,8,2012,Trans-Medium Blue,1 +Series 8 Minifigures,Fairy - Complete Set,8,2012,Yellowish Green,1 +Series 8 Minifigures,Diver - Complete Set,8,2012,Black,1 +Series 8 Minifigures,Diver - Complete Set,8,2012,Dark Bluish Gray,1 +Series 8 Minifigures,Fairy - Complete Set,8,2012,Yellow,2 +Series 8 Minifigures,Diver - Complete Set,8,2012,Medium Dark Flesh,2 +Series 8 Minifigures,Diver - Complete Set,8,2012,Pearl Gold,1 +Series 8 Minifigures,Diver - Complete Set,8,2012,Yellow,1 +Series 8 Minifigures,Football Player - Complete Set,8,2012,Black,1 +Series 8 Minifigures,Actor - Complete Set,7,2012,Dark Green,1 +Series 8 Minifigures,Actor - Complete Set,7,2012,Reddish Brown,1 +Series 8 Minifigures,Actor - Complete Set,7,2012,White,2 +Series 8 Minifigures,Actor - Complete Set,7,2012,Yellow,1 +Series 8 Minifigures,Businessman - Complete Set,7,2012,Black,4 +Series 8 Minifigures,Businessman - Complete Set,7,2012,Reddish Brown,1 +Series 8 Minifigures,Businessman - Complete Set,7,2012,White,1 +Series 8 Minifigures,Businessman - Complete Set,7,2012,Yellow,1 +Series 8 Minifigures,Santa - Complete Set,7,2012,Black,1 +Series 8 Minifigures,Santa - Complete Set,7,2012,Medium Dark Flesh,1 +Series 8 Minifigures,Santa - Complete Set,7,2012,Red,2 +Series 8 Minifigures,Santa - Complete Set,7,2012,White,2 +Series 8 Minifigures,Santa - Complete Set,7,2012,Yellow,1 +Series 8 Minifigures,DJ - Complete Set,7,2012,Black,3 +Series 8 Minifigures,DJ - Complete Set,7,2012,Dark Blue,1 +Series 8 Minifigures,DJ - Complete Set,7,2012,Light Bluish Gray,1 +Series 8 Minifigures,DJ - Complete Set,7,2012,Medium Azure,1 +Series 8 Minifigures,DJ - Complete Set,7,2012,Yellow,1 +Series 8 Minifigures,Actor - Complete Set,7,2012,Black,2 +Series 8 Minifigures,Lederhosen Guy - Complete Set,7,2012,Black,1 +Series 8 Minifigures,Lederhosen Guy - Complete Set,7,2012,Dark Green,1 +Series 8 Minifigures,Lederhosen Guy - Complete Set,7,2012,Dark Tan,1 +Series 8 Minifigures,Lederhosen Guy - Complete Set,7,2012,Medium Dark Flesh,1 +Series 8 Minifigures,Lederhosen Guy - Complete Set,7,2012,White,2 +Series 8 Minifigures,Lederhosen Guy - Complete Set,7,2012,Yellow,1 +Series 8 Minifigures,Pirate Captain - Complete Set,7,2012,Black,3 +Series 8 Minifigures,Pirate Captain - Complete Set,7,2012,Pearl Gold,1 +Series 8 Minifigures,Pirate Captain - Complete Set,7,2012,Red,1 +Series 8 Minifigures,Pirate Captain - Complete Set,7,2012,White,1 +Series 8 Minifigures,Pirate Captain - Complete Set,7,2012,Yellow,1 +Series 8 Minifigures,Red Cheerleader - Complete Set,7,2012,Black,2 +Series 8 Minifigures,Red Cheerleader - Complete Set,7,2012,Red,1 +Series 8 Minifigures,Red Cheerleader - Complete Set,7,2012,White,2 +Series 8 Minifigures,Red Cheerleader - Complete Set,7,2012,Yellow,1 +Series 8 Minifigures,Cowgirl - Complete Set,6,2012,Black,1 +Series 8 Minifigures,Cowgirl - Complete Set,6,2012,Medium Dark Flesh,1 +Series 8 Minifigures,Cowgirl - Complete Set,6,2012,Reddish Brown,1 +Series 8 Minifigures,Cowgirl - Complete Set,6,2012,White,2 +Series 8 Minifigures,Cowgirl - Complete Set,6,2012,Yellow,1 +Series 8 Minifigures,Vampire Bat - Complete Set,5,2012,Black,5 +Series 9,Screeno,73,2016,Red,2 +Series 9,Screeno,73,2016,Light Bluish Gray,3 +Series 9,Screeno,73,2016,Dark Bluish Gray,2 +Series 9,Screeno,73,2016,Bright Light Orange,1 +Series 9,Screeno,73,2016,Blue,3 +Series 9,Screeno,73,2016,Black,10 +Series 9,Screeno,73,2016,Yellow,4 +Series 9,Screeno,73,2016,White,3 +Series 9,Screeno,73,2016,Trans-Red,1 +Series 9,Screeno,73,2016,Trans-Clear,1 +Series 9,Screeno,73,2016,Reddish Brown,1 +Series 9,Compax,66,2016,Green,5 +Series 9,Compax,66,2016,Light Bluish Gray,7 +Series 9,Compax,66,2016,Trans-Clear,1 +Series 9,Compax,66,2016,Trans-Yellow,3 +Series 9,Compax,66,2016,White,3 +Series 9,Compax,66,2016,Yellow,3 +Series 9,Compax,66,2016,Black,6 +Series 9,Compax,66,2016,Dark Bluish Gray,4 +Series 9,Compax,66,2016,Dark Green,1 +Series 9,Compax,66,2016,Flat Silver,1 +Series 9,Mysto,64,2016,Light Bluish Gray,3 +Series 9,Mysto,64,2016,Dark Bluish Gray,5 +Series 9,Mysto,64,2016,Black,15 +Series 9,Cobrax,64,2016,Black,16 +Series 9,Cobrax,64,2016,Dark Bluish Gray,3 +Series 9,Cobrax,64,2016,Flat Silver,1 +Series 9,Cobrax,64,2016,Light Bluish Gray,4 +Series 9,Cobrax,64,2016,Orange,8 +Series 9,Cobrax,64,2016,Red,1 +Series 9,Cobrax,64,2016,White,3 +Series 9,Mysto,64,2016,White,5 +Series 9,Mysto,64,2016,Red,1 +Series 9,Mysto,64,2016,Orange,4 +Series 9,Myke,63,2016,White,3 +Series 9,Myke,63,2016,Trans-Red,1 +Series 9,Myke,63,2016,Yellow,4 +Series 9,Myke,63,2016,Black,10 +Series 9,Myke,63,2016,Blue,8 +Series 9,Myke,63,2016,Dark Bluish Gray,1 +Series 9,Myke,63,2016,Light Bluish Gray,6 +Series 9,Myke,63,2016,Red,1 +Series 9,Camsta,62,2016,Blue,7 +Series 9,Camsta,62,2016,Dark Bluish Gray,1 +Series 9,Gobbol,62,2016,Light Bluish Gray,1 +Series 9,Gobbol,62,2016,Yellow,1 +Series 9,Gobbol,62,2016,White,4 +Series 9,Gobbol,62,2016,Trans-Yellow,1 +Series 9,Gobbol,62,2016,Orange,1 +Series 9,Camsta,62,2016,Black,15 +Series 9,Gobbol,62,2016,Green,6 +Series 9,Gobbol,62,2016,Flat Silver,1 +Series 9,Gobbol,62,2016,Dark Green,2 +Series 9,Gobbol,62,2016,Dark Bluish Gray,2 +Series 9,Gobbol,62,2016,Black,10 +Series 9,Camsta,62,2016,Red,1 +Series 9,Camsta,62,2016,Light Bluish Gray,1 +Series 9,Camsta,62,2016,Flat Silver,1 +Series 9,Camsta,62,2016,Yellow,3 +Series 9,Camsta,62,2016,White,5 +Series 9,Camsta,62,2016,Trans-Red,1 +Series 9,Camsta,62,2016,Trans-Clear,1 +Series 9,Sweepz,61,2016,Reddish Brown,1 +Series 9,Sweepz,61,2016,White,3 +Series 9,Sweepz,61,2016,Yellow,2 +Series 9,Sweepz,61,2016,Trans-Yellow,1 +Series 9,Sweepz,61,2016,Black,9 +Series 9,Sweepz,61,2016,Dark Bluish Gray,1 +Series 9,Sweepz,61,2016,Dark Green,2 +Series 9,Sweepz,61,2016,Green,9 +Series 9,Sweepz,61,2016,Light Bluish Gray,4 +Series 9,Spinza,60,2016,Black,9 +Series 9,Spinza,60,2016,Dark Bluish Gray,3 +Series 9,Spinza,60,2016,Flat Silver,1 +Series 9,Spinza,60,2016,Orange,5 +Series 9,Spinza,60,2016,Red,2 +Series 9,Spinza,60,2016,Light Bluish Gray,5 +Series 9,Spinza,60,2016,Tan,1 +Series 9,Spinza,60,2016,White,3 +Series 9 Minifigures,Heroic Knight - Complete Set,10,2013,Black,1 +Series 9 Minifigures,Heroic Knight - Complete Set,10,2013,Flat Silver,3 +Series 9 Minifigures,Heroic Knight - Complete Set,10,2013,Light Bluish Gray,4 +Series 9 Minifigures,Heroic Knight - Complete Set,10,2013,White,1 +Series 9 Minifigures,Heroic Knight - Complete Set,10,2013,Yellow,1 +Series 9 Minifigures,Alien Avenger - Complete Set,7,2013,Black,2 +Series 9 Minifigures,Alien Avenger - Complete Set,7,2013,Dark Bluish Gray,4 +Series 9 Minifigures,Alien Avenger - Complete Set,7,2013,Lime,1 +Series 9 Minifigures,Forest Maiden - Complete Set,7,2013,Black,1 +Series 9 Minifigures,Fortune Teller - Complete Set,7,2013,White,2 +Series 9 Minifigures,Forest Maiden - Complete Set,7,2013,Dark Green,2 +Series 9 Minifigures,Forest Maiden - Complete Set,7,2013,Dark Orange,1 +Series 9 Minifigures,Forest Maiden - Complete Set,7,2013,Reddish Brown,2 +Series 9 Minifigures,Forest Maiden - Complete Set,7,2013,Yellow,1 +Series 9 Minifigures,Fortune Teller - Complete Set,7,2013,Black,2 +Series 9 Minifigures,Fortune Teller - Complete Set,7,2013,Dark Red,2 +Series 9 Minifigures,Fortune Teller - Complete Set,7,2013,Yellow,1 +Series 9 Minifigures,Judge - Complete Set,7,2013,Black,2 +Series 9 Minifigures,Judge - Complete Set,7,2013,Red,2 +Series 9 Minifigures,Judge - Complete Set,7,2013,Reddish Brown,1 +Series 9 Minifigures,Judge - Complete Set,7,2013,White,1 +Series 9 Minifigures,Judge - Complete Set,7,2013,Yellow,1 +Series 9 Minifigures,Roller Derby Girl - Complete Set,7,2013,Dark Azure,2 +Series 9 Minifigures,Policeman - Complete Set,7,2013,Yellow,1 +Series 9 Minifigures,Roller Derby Girl - Complete Set,7,2013,Black,2 +Series 9 Minifigures,Policeman - Complete Set,7,2013,Black,3 +Series 9 Minifigures,Policeman - Complete Set,7,2013,Dark Blue,2 +Series 9 Minifigures,Policeman - Complete Set,7,2013,Light Bluish Gray,1 +Series 9 Minifigures,Roller Derby Girl - Complete Set,7,2013,Red,1 +Series 9 Minifigures,Roller Derby Girl - Complete Set,7,2013,Yellow,1 +Series 9 Minifigures,Waiter - Complete Set,7,2013,Black,4 +Series 9 Minifigures,Waiter - Complete Set,7,2013,Flat Silver,1 +Series 9 Minifigures,Waiter - Complete Set,7,2013,Trans-Green,1 +Series 9 Minifigures,Waiter - Complete Set,7,2013,Yellow,1 +Series 9 Minifigures,Mr. Good and Evil - Complete Set,6,2013,Yellow,1 +Series 9 Minifigures,Plumber - Complete Set,6,2013,Black,1 +Series 9 Minifigures,Plumber - Complete Set,6,2013,Blue,2 +Series 9 Minifigures,Plumber - Complete Set,6,2013,Red,1 +Series 9 Minifigures,Plumber - Complete Set,6,2013,White,1 +Series 9 Minifigures,Plumber - Complete Set,6,2013,Yellow,1 +Series 9 Minifigures,Mermaid - Complete Set,6,2013,Black,1 +Series 9 Minifigures,Mermaid - Complete Set,6,2013,Bright Light Blue,1 +Series 9 Minifigures,Mermaid - Complete Set,6,2013,Bright Light Yellow,1 +Series 9 Minifigures,Roman Emperor - Complete Set,6,2013,Black,1 +Series 9 Minifigures,Roman Emperor - Complete Set,6,2013,Dark Red,1 +Series 9 Minifigures,Roman Emperor - Complete Set,6,2013,Tan,1 +Series 9 Minifigures,Roman Emperor - Complete Set,6,2013,White,1 +Series 9 Minifigures,Roman Emperor - Complete Set,6,2013,Yellow,2 +Series 9 Minifigures,Mermaid - Complete Set,6,2013,Orange,1 +Series 9 Minifigures,Mermaid - Complete Set,6,2013,Yellow,2 +Series 9 Minifigures,Mr. Good and Evil - Complete Set,6,2013,Black,4 +Series 9 Minifigures,Mr. Good and Evil - Complete Set,6,2013,Trans-Clear,1 +Series 9 Minifigures,Cyclops - Complete Set,6,2013,Olive Green,4 +Series 9 Minifigures,Battle Mech - Complete Set,6,2013,Black,1 +Series 9 Minifigures,Battle Mech - Complete Set,6,2013,White,5 +Series 9 Minifigures,Hollywood Starlet - Complete Set,6,2013,Yellow,1 +Series 9 Minifigures,Cyclops - Complete Set,6,2013,Black,1 +Series 9 Minifigures,Cyclops - Complete Set,6,2013,Dark Bluish Gray,1 +Series 9 Minifigures,Hollywood Starlet - Complete Set,6,2013,Black,1 +Series 9 Minifigures,Hollywood Starlet - Complete Set,6,2013,Bright Light Yellow,1 +Series 9 Minifigures,Hollywood Starlet - Complete Set,6,2013,Light Aqua,2 +Series 9 Minifigures,Hollywood Starlet - Complete Set,6,2013,Metallic Gold,1 +Series 9 Minifigures,Chicken Suit Guy - Complete Set,5,2013,Bright Light Orange,1 +Series 9 Minifigures,Chicken Suit Guy - Complete Set,5,2013,Yellow,1 +Series 9 Minifigures,Chicken Suit Guy - Complete Set,5,2013,Black,1 +Series 9 Minifigures,Chicken Suit Guy - Complete Set,5,2013,White,2 +Service Packs,"Chain Links, Small",25,1977,Black,1 +Service Packs,"Propellers, Wheels and Rotor Unit",15,1977,Light Gray,3 +Service Packs,"Propellers, Wheels and Rotor Unit",15,1977,Black,1 +Service Packs,"Propellers, Wheels and Rotor Unit",15,1977,Red,3 +Service Packs,"Ball and Socket Couplings, Articulated Joint",8,1977,Yellow,2 +Service Packs,"Ball and Socket Couplings, Articulated Joint",8,1977,Red,2 +Service Packs,Motor Frame and Couplers,5,1977,Black,2 +Service Packs,Hinges,3,1977,Red,2 +Service Packs,Crane Grab,3,1977,Red,2 +Service Packs,Crane Grab,3,1977,Yellow,1 +Service Packs,Digger Bucket,3,1977,Red,1 +Service Packs,Digger Bucket,3,1977,Yellow,2 +Service Packs,Tires (42 mm),2,1977,Black,1 +Service Packs,Battery Cables (75cm),2,1977,Light Gray,2 +Service Packs,Screws for Motor Case,2,1977,Chrome Silver,1 +Service Packs,Crawler Tracks,2,1977,Black,1 +Service Packs,4.5V Lighting Brick (2 x 2),1,1977,Yellow,1 +Service Packs,Battery Box,1,1977,Black,1 +Service Packs,"Boat Weight, Red",1,1977,Red,1 +Service Packs,Motor Case / Lower Part,1,1977,Black,1 +Service Packs,Replacement 4.5V Motor,1,1977,Black,1 +Service Packs,Replacement Motor 12V,1,1977,Black,1 +Service Packs,Motor Gearbox,1,1977,Light Gray,1 +Service Packs,Motor Frame,1,1977,Black,1 +Service Packs,Angles Swivels Turntables,72,1985,Blue,4 +Service Packs,Angles Swivels Turntables,72,1985,Light Gray,1 +Service Packs,Red/Black Plates,48,1985,Black,2 +Service Packs,Red/Black Plates,48,1985,Red,2 +Service Packs,Red/Black Plates,32,1985,Black,2 +Service Packs,Red/Black Plates,32,1985,Red,2 +Service Packs,Hubs and Tyres,24,1985,Black,2 +Service Packs,Hubs and Tyres,24,1985,Light Gray,1 +Service Packs,Building Plates Green,3,1985,Green,1 +Service Packs,Swivel Magnet Pack (Pack of 10 each),20,2007,Black,2 +Service Packs,Small Wide Tire & Hub (Pack of 8 each),16,2007,Black,1 +Service Packs,Small Wide Tire & Hub (Pack of 8 each),16,2007,Light Bluish Gray,1 +Service Packs,Brick Separator Orange,1,2012,Orange,1 +Skull Spiders,Lord of Skull Spiders,145,2015,Black,24 +Skull Spiders,Lord of Skull Spiders,145,2015,Blue,2 +Skull Spiders,Lord of Skull Spiders,145,2015,Dark Bluish Gray,4 +Skull Spiders,Lord of Skull Spiders,145,2015,Light Bluish Gray,4 +Skull Spiders,Lord of Skull Spiders,145,2015,Pearl Gold,1 +Skull Spiders,Lord of Skull Spiders,145,2015,Red,2 +Skull Spiders,Lord of Skull Spiders,145,2015,Trans-Neon Orange,2 +Skull Spiders,Lord of Skull Spiders,145,2015,White,3 +Skull Spiders,Lord of Skull Spiders,145,2015,Yellow,1 +Skylines,New York City,597,2016,Yellow,3 +Skylines,New York City,597,2016,Black,17 +Skylines,New York City,597,2016,Blue,1 +Skylines,New York City,597,2016,Dark Bluish Gray,7 +Skylines,New York City,597,2016,Flat Silver,2 +Skylines,New York City,597,2016,Light Bluish Gray,22 +Skylines,New York City,597,2016,Olive Green,1 +Skylines,New York City,597,2016,Orange,1 +Skylines,New York City,597,2016,Sand Blue,5 +Skylines,New York City,597,2016,Sand Green,1 +Skylines,New York City,597,2016,Tan,19 +Skylines,New York City,597,2016,Trans-Clear,3 +Skylines,New York City,597,2016,White,8 +Skylines,Berlin,289,2016,Black,19 +Skylines,Berlin,289,2016,Dark Bluish Gray,11 +Skylines,Berlin,289,2016,Light Bluish Gray,16 +Skylines,Berlin,289,2016,Metallic Silver,1 +Skylines,Berlin,289,2016,Pearl Gold,1 +Skylines,Berlin,289,2016,Red,2 +Skylines,Berlin,289,2016,Sand Green,3 +Skylines,Berlin,289,2016,Tan,14 +Skylines,Berlin,289,2016,Trans-Black,1 +Skylines,Berlin,289,2016,Trans-Clear,4 +Skylines,Berlin,289,2016,White,6 +Skylines,Venice,212,2016,Black,9 +Skylines,Venice,212,2016,Light Bluish Gray,11 +Skylines,Venice,212,2016,Reddish Brown,7 +Skylines,Venice,212,2016,Sand Green,3 +Skylines,Venice,212,2016,Trans-Light Blue,1 +Skylines,Venice,212,2016,White,24 +Skylines,London,467,2017,Trans-Clear,3 +Skylines,London,467,2017,Black,15 +Skylines,London,467,2017,Blue,1 +Skylines,London,467,2017,Dark Bluish Gray,12 +Skylines,London,467,2017,Flat Silver,1 +Skylines,London,467,2017,Light Bluish Gray,18 +Skylines,London,467,2017,Light Gray,1 +Skylines,London,467,2017,Medium Blue,5 +Skylines,London,467,2017,Olive Green,1 +Skylines,London,467,2017,Pearl Gold,1 +Skylines,London,467,2017,Tan,16 +Skylines,London,467,2017,Trans-Light Blue,1 +Skylines,London,467,2017,White,23 +Skylines,Chicago,444,2017,Dark Bluish Gray,6 +Skylines,Chicago,444,2017,Dark Tan,1 +Skylines,Chicago,444,2017,Green,3 +Skylines,Chicago,444,2017,Light Bluish Gray,11 +Skylines,Chicago,444,2017,Metallic Silver,1 +Skylines,Chicago,444,2017,Olive Green,1 +Skylines,Chicago,444,2017,Tan,3 +Skylines,Chicago,444,2017,Trans-Black,3 +Skylines,Chicago,444,2017,Trans-Clear,1 +Skylines,Chicago,444,2017,Trans-Light Blue,1 +Skylines,Chicago,444,2017,Black,26 +Skylines,Chicago,444,2017,Yellow,4 +Skylines,Chicago,444,2017,Red,4 +Skylines,Chicago,444,2017,White,16 +Skylines,Sydney,361,2017,Black,23 +Skylines,Sydney,361,2017,Blue,1 +Skylines,Sydney,361,2017,Dark Blue,6 +Skylines,Sydney,361,2017,Dark Green,2 +Skylines,Sydney,361,2017,Dark Tan,1 +Skylines,Sydney,361,2017,Light Bluish Gray,2 +Skylines,Sydney,361,2017,Metallic Gold,3 +Skylines,Sydney,361,2017,Red,1 +Skylines,Sydney,361,2017,Tan,14 +Skylines,Sydney,361,2017,Trans-Dark Blue,2 +Skylines,Sydney,361,2017,Trans-Light Blue,1 +Skylines,Sydney,361,2017,White,14 +Skylines,Sydney,361,2017,Yellow,1 +Soccer,Stadium Security,143,1998,Trans-Red,1 +Soccer,Stadium Security,143,1998,Yellow,3 +Soccer,Stadium Security,143,1998,White,15 +Soccer,Stadium Security,143,1998,Trans-Yellow,1 +Soccer,Stadium Security,143,1998,[No Color],1 +Soccer,Stadium Security,143,1998,Trans-Light Blue,4 +Soccer,Stadium Security,143,1998,Trans-Dark Blue,1 +Soccer,Stadium Security,143,1998,Red,2 +Soccer,Stadium Security,143,1998,Light Gray,7 +Soccer,Stadium Security,143,1998,Blue,12 +Soccer,Stadium Security,143,1998,Black,13 +Soccer,Light Poles,101,1998,Blue,1 +Soccer,Light Poles,101,1998,Dark Gray,6 +Soccer,Light Poles,101,1998,Light Gray,6 +Soccer,Light Poles,101,1998,Red,1 +Soccer,Light Poles,101,1998,Black,8 +Soccer,Light Poles,101,1998,Trans-Yellow,1 +Soccer,Light Poles,101,1998,White,9 +Soccer,Light Poles,101,1998,Yellow,1 +Soccer,Light Poles,101,1998,Trans-Red,1 +Soccer,Camera Tower,100,1998,Trans-Neon Green,1 +Soccer,Camera Tower,100,1998,Trans-Red,1 +Soccer,Camera Tower,100,1998,White,10 +Soccer,Camera Tower,100,1998,Yellow,3 +Soccer,Camera Tower,100,1998,Black,8 +Soccer,Camera Tower,100,1998,Blue,5 +Soccer,Camera Tower,100,1998,Dark Gray,1 +Soccer,Camera Tower,100,1998,Green,1 +Soccer,Camera Tower,100,1998,Trans-Clear,1 +Soccer,Camera Tower,100,1998,Light Gray,11 +Soccer,Head Tribune,95,1998,Trans-Light Blue,1 +Soccer,Head Tribune,95,1998,[No Color],1 +Soccer,Head Tribune,95,1998,Black,3 +Soccer,Head Tribune,95,1998,Blue,9 +Soccer,Head Tribune,95,1998,Green,3 +Soccer,Head Tribune,95,1998,Light Gray,7 +Soccer,Head Tribune,95,1998,Red,3 +Soccer,Head Tribune,95,1998,Trans-Neon Green,1 +Soccer,Head Tribune,95,1998,White,10 +Soccer,Head Tribune,95,1998,Yellow,5 +Soccer,Commentator and Press Box,94,1998,Light Gray,10 +Soccer,Commentator and Press Box,94,1998,Red,2 +Soccer,Commentator and Press Box,94,1998,Trans-Light Blue,2 +Soccer,Commentator and Press Box,94,1998,Trans-Red,1 +Soccer,Commentator and Press Box,94,1998,Trans-Yellow,1 +Soccer,Commentator and Press Box,94,1998,White,13 +Soccer,Commentator and Press Box,94,1998,Yellow,2 +Soccer,Commentator and Press Box,94,1998,[No Color],2 +Soccer,Commentator and Press Box,94,1998,Black,6 +Soccer,Commentator and Press Box,94,1998,Blue,7 +Soccer,Commentator and Press Box,94,1998,Green,2 +Soccer,Tribune,85,1998,White,8 +Soccer,Tribune,85,1998,Trans-Neon Green,1 +Soccer,Tribune,85,1998,Trans-Clear,1 +Soccer,Tribune,85,1998,Red,4 +Soccer,Tribune,85,1998,Light Gray,7 +Soccer,Tribune,85,1998,Chrome Gold,1 +Soccer,Tribune,85,1998,Blue,10 +Soccer,Tribune,85,1998,Black,4 +Soccer,Tribune,85,1998,Brown,1 +Soccer,Tribune,85,1998,Yellow,2 +Soccer,Tribune,85,1998,Green,3 +Soccer,Medic's Station,78,1998,Black,6 +Soccer,Medic's Station,78,1998,Blue,11 +Soccer,Medic's Station,78,1998,Green,1 +Soccer,Medic's Station,78,1998,Light Gray,3 +Soccer,Medic's Station,78,1998,Trans-Dark Blue,1 +Soccer,Medic's Station,78,1998,Trans-Light Blue,1 +Soccer,Medic's Station,78,1998,White,18 +Soccer,Medic's Station,78,1998,Yellow,3 +Soccer,Medic's Station,78,1998,[No Color],1 +Soccer,Field Accessories,50,1998,Red,2 +Soccer,Field Accessories,50,1998,White,6 +Soccer,Field Accessories,50,1998,[No Color],1 +Soccer,Field Accessories,50,1998,Green,1 +Soccer,Field Accessories,50,1998,Black,5 +Soccer,Field Accessories,50,1998,Yellow,3 +Soccer,Soccer Goalies,8,1998,Black,1 +Soccer,Soccer Goalies,8,1998,Blue,1 +Soccer,Soccer Goalies,8,1998,Light Gray,1 +Soccer,Soccer Goalies,8,1998,White,1 +Soccer,Soccer Goalies,8,1998,Yellow,2 +Soccer,World Cup Dutch Starter Set,7,1998,[No Color],1 +Soccer,World Cup German Starter Set,7,1998,[No Color],1 +Soccer,World Cup UK Starter Set,7,1998,[No Color],1 +Soccer,Kaufhof Promotional Set: German National Player and Ball,5,1998,Brown,1 +Soccer,Kaufhof Promotional Set: German National Player and Ball,5,1998,Black,1 +Soccer,Kaufhof Promotional Set: World Team Player and Ball,5,1998,Blue,1 +Soccer,Kaufhof Promotional Set: World Team Player and Ball,5,1998,Yellow,1 +Soccer,Kaufhof Promotional Set: World Team Player and Ball,5,1998,White,2 +Soccer,Kaufhof Promotional Set: World Team Player and Ball,5,1998,Black,1 +Soccer,Kaufhof Promotional Set: German National Player and Ball,5,1998,Yellow,1 +Soccer,Kaufhof Promotional Set: German National Player and Ball,5,1998,White,2 +Soccer,Austrian Player,4,1998,Yellow,1 +Soccer,Dutch National Player,4,1998,Brown,1 +Soccer,Dutch National Player,4,1998,Orange,1 +Soccer,Dutch National Player,4,1998,White,1 +Soccer,Dutch National Player,4,1998,Yellow,1 +Soccer,German National Player,4,1998,Yellow,1 +Soccer,German National Player,4,1998,White,1 +Soccer,German National Player,4,1998,Brown,1 +Soccer,German National Player,4,1998,Black,1 +Soccer,Austrian Player,4,1998,Black,1 +Soccer,English Player,4,1998,Yellow,1 +Soccer,English Player,4,1998,White,1 +Soccer,English Player,4,1998,Brown,1 +Soccer,English Player,4,1998,Blue,1 +Soccer,Austrian Player,4,1998,Brown,1 +Soccer,Austrian Player,4,1998,White,1 +Soccer,World Team Player,4,1998,Black,1 +Soccer,World Team Player,4,1998,Blue,1 +Soccer,World Team Player,4,1998,White,1 +Soccer,World Team Player,4,1998,Yellow,1 +Soccer,World Team Player - Limited Edition (England),4,1998,Black,1 +Soccer,World Team Player - Limited Edition (England),4,1998,Blue,1 +Soccer,World Team Player - Limited Edition (England),4,1998,White,1 +Soccer,World Team Player - Limited Edition (England),4,1998,Yellow,1 +Soccer,World Team Player - Limited Edition (Netherlands),4,1998,Black,1 +Soccer,World Team Player - Limited Edition (Netherlands),4,1998,Blue,1 +Soccer,World Team Player - Limited Edition (Netherlands),4,1998,White,1 +Soccer,World Team Player - Limited Edition (Netherlands),4,1998,Yellow,1 +Soccer,Soccer Field,2,1998,Green,1 +Soccer,Superstar Figure ,9,2007,Black,3 +Soccer,Superstar Figure ,9,2007,Green,1 +Soccer,Superstar Figure ,9,2007,Pearl Gold,1 +Soccer,Superstar Figure ,9,2007,White,2 +Soccer,Superstar Figure ,9,2007,Yellow,1 +Soft Bricks,LEGO Soft Starter Set,84,1998,Blue,2 +Soft Bricks,LEGO Soft Starter Set,84,1998,Green,2 +Soft Bricks,LEGO Soft Starter Set,84,1998,Red,4 +Soft Bricks,LEGO Soft Starter Set,84,1998,Yellow,4 +Soft Bricks,LEGO Soft Bricks Set,84,2013,Blue,2 +Soft Bricks,LEGO Soft Bricks Set,84,2013,Green,2 +Soft Bricks,LEGO Soft Bricks Set,84,2013,Red,4 +Soft Bricks,LEGO Soft Bricks Set,84,2013,Yellow,2 +Sorcerer's Stone,Hogwarts Castle,696,2001,Trans-Dark Pink,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Trans-Dark Blue,3 +Sorcerer's Stone,Hogwarts Castle,696,2001,Trans-Clear,6 +Sorcerer's Stone,Hogwarts Castle,696,2001,Tan,32 +Sorcerer's Stone,Hogwarts Castle,696,2001,Sand Green,5 +Sorcerer's Stone,Hogwarts Castle,696,2001,Red,3 +Sorcerer's Stone,Hogwarts Castle,696,2001,Purple,5 +Sorcerer's Stone,Hogwarts Castle,696,2001,Medium Blue,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Light Gray,58 +Sorcerer's Stone,Hogwarts Castle,696,2001,Green,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Glow In Dark Opaque,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Earth Orange,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Dark Gray,28 +Sorcerer's Stone,Hogwarts Castle,696,2001,Chrome Antique Brass,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Brown,14 +Sorcerer's Stone,Hogwarts Castle,696,2001,Black,37 +Sorcerer's Stone,Hogwarts Castle,696,2001,[No Color],1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Trans-Purple,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Violet,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Trans-Green,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Trans-Light Blue,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,Trans-Neon Green,2 +Sorcerer's Stone,Hogwarts Castle,696,2001,Trans-Neon Orange,2 +Sorcerer's Stone,Hogwarts Castle,696,2001,Trans-Red,1 +Sorcerer's Stone,Hogwarts Castle,696,2001,White,5 +Sorcerer's Stone,Hogwarts Castle,696,2001,Yellow,16 +Sorcerer's Stone,Hagrid's Hut,298,2001,Light Gray,27 +Sorcerer's Stone,Hagrid's Hut,298,2001,Green,7 +Sorcerer's Stone,Hagrid's Hut,298,2001,Dark Gray,17 +Sorcerer's Stone,Hagrid's Hut,298,2001,Black,20 +Sorcerer's Stone,Hagrid's Hut,298,2001,[No Color],1 +Sorcerer's Stone,Hagrid's Hut,298,2001,Yellow,3 +Sorcerer's Stone,Hagrid's Hut,298,2001,White,2 +Sorcerer's Stone,Hagrid's Hut,298,2001,Chrome Antique Brass,1 +Sorcerer's Stone,Hagrid's Hut,298,2001,Brown,12 +Sorcerer's Stone,Hagrid's Hut,298,2001,Trans-Neon Orange,3 +Sorcerer's Stone,Hagrid's Hut,298,2001,Trans-Green,1 +Sorcerer's Stone,Hagrid's Hut,298,2001,Trans-Neon Green,1 +Sorcerer's Stone,Hagrid's Hut,298,2001,Tan,8 +Sorcerer's Stone,Hagrid's Hut,298,2001,Sand Green,1 +Sorcerer's Stone,Hagrid's Hut,298,2001,Red,2 +Sorcerer's Stone,Hagrid's Hut,298,2001,Purple,3 +Sorcerer's Stone,Forbidden Corridor,239,2001,Sand Green,1 +Sorcerer's Stone,Forbidden Corridor,239,2001,Tan,6 +Sorcerer's Stone,Forbidden Corridor,239,2001,Trans-Light Blue,1 +Sorcerer's Stone,Forbidden Corridor,239,2001,Trans-Neon Orange,1 +Sorcerer's Stone,Forbidden Corridor,239,2001,Violet,1 +Sorcerer's Stone,Forbidden Corridor,239,2001,Yellow,3 +Sorcerer's Stone,Forbidden Corridor,239,2001,Black,18 +Sorcerer's Stone,Forbidden Corridor,239,2001,Brown,6 +Sorcerer's Stone,Forbidden Corridor,239,2001,Dark Orange,1 +Sorcerer's Stone,Forbidden Corridor,239,2001,Earth Orange,1 +Sorcerer's Stone,Forbidden Corridor,239,2001,Red,1 +Sorcerer's Stone,Forbidden Corridor,239,2001,Green,8 +Sorcerer's Stone,Forbidden Corridor,239,2001,Light Gray,15 +Sorcerer's Stone,Forbidden Corridor,239,2001,Dark Gray,15 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Chrome Silver,2 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Dark Gray,11 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Earth Orange,1 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Light Gray,10 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Sand Green,1 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Tan,13 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Trans-Neon Green,1 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Trans-Neon Orange,1 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,White,6 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Yellow,2 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Black,13 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Blue,1 +Sorcerer's Stone,The Chamber of the Winged Keys,180,2001,Brown,3 +Sorcerer's Stone,Snape's Class,167,2001,Trans-Neon Green,1 +Sorcerer's Stone,Snape's Class,167,2001,Trans-Neon Orange,2 +Sorcerer's Stone,Snape's Class,167,2001,Trans-Purple,1 +Sorcerer's Stone,Snape's Class,167,2001,Trans-Red,1 +Sorcerer's Stone,Snape's Class,167,2001,Trans-Yellow,1 +Sorcerer's Stone,Snape's Class,167,2001,White,1 +Sorcerer's Stone,Snape's Class,167,2001,Yellow,4 +Sorcerer's Stone,Snape's Class,167,2001,Earth Orange,1 +Sorcerer's Stone,Snape's Class,167,2001,Black,22 +Sorcerer's Stone,Snape's Class,167,2001,Brown,2 +Sorcerer's Stone,Snape's Class,167,2001,Dark Gray,11 +Sorcerer's Stone,Snape's Class,167,2001,Glow In Dark Opaque,1 +Sorcerer's Stone,Snape's Class,167,2001,Green,1 +Sorcerer's Stone,Snape's Class,167,2001,Light Gray,23 +Sorcerer's Stone,Snape's Class,167,2001,Red,1 +Sorcerer's Stone,Snape's Class,167,2001,Sand Green,1 +Sorcerer's Stone,Snape's Class,167,2001,Tan,2 +Sorcerer's Stone,Snape's Class,167,2001,Trans-Dark Blue,1 +Sorcerer's Stone,Snape's Class,167,2001,Trans-Green,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Light Gray,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Green,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Earth Orange,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Dark Turquoise,2 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Dark Pink,4 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Dark Gray,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Chrome Gold,4 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Brown,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Blue,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Black,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Red,2 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Purple,2 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Orange,7 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Medium Orange,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Medium Blue,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Light Turquoise,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Light Green,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Sand Green,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Trans-Dark Blue,2 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Yellow,1 +Sorcerer's Stone,Diagon Alley Shops,85,2001,White,11 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Trans-Red,2 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Trans-Neon Orange,2 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Trans-Neon Green,3 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Trans-Light Blue,3 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Trans-Green,2 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Trans-Dark Pink,5 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Trans-Clear,2 +Sorcerer's Stone,Diagon Alley Shops,85,2001,Royal Blue,1 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Brown,1 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Dark Gray,1 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Dark Pink,2 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Green,2 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Light Gray,2 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Trans-Clear,1 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Light Violet,3 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Medium Orange,3 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Orange,7 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Black,4 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Royal Blue,1 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Chrome Antique Brass,1 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Chrome Gold,1 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Trans-Dark Blue,2 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Trans-Dark Pink,3 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Trans-Neon Green,2 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Trans-Neon Orange,3 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Violet,3 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Trans-Purple,1 +Sorcerer's Stone,Hogwarts Classroom,75,2001,White,7 +Sorcerer's Stone,Hogwarts Classroom,75,2001,Yellow,2 +Sorcerer's Stone,Gryffindor,70,2001,Dark Pink,3 +Sorcerer's Stone,Gryffindor,70,2001,Earth Orange,1 +Sorcerer's Stone,Gryffindor,70,2001,Light Gray,2 +Sorcerer's Stone,Gryffindor,70,2001,Light Turquoise,1 +Sorcerer's Stone,Gryffindor,70,2001,Light Violet,2 +Sorcerer's Stone,Gryffindor,70,2001,Trans-Dark Blue,1 +Sorcerer's Stone,Gryffindor,70,2001,Trans-Dark Pink,2 +Sorcerer's Stone,Gryffindor,70,2001,Orange,8 +Sorcerer's Stone,Gryffindor,70,2001,Trans-Light Blue,1 +Sorcerer's Stone,Gryffindor,70,2001,Dark Red,1 +Sorcerer's Stone,Gryffindor,70,2001,Trans-Neon Orange,1 +Sorcerer's Stone,Gryffindor,70,2001,White,2 +Sorcerer's Stone,Gryffindor,70,2001,Purple,2 +Sorcerer's Stone,Gryffindor,70,2001,Yellow,2 +Sorcerer's Stone,Gryffindor,70,2001,Dark Gray,1 +Sorcerer's Stone,Gryffindor,70,2001,Brown,1 +Sorcerer's Stone,Gryffindor,70,2001,Blue,1 +Sorcerer's Stone,Gryffindor,70,2001,Black,1 +Sorcerer's Stone,Gryffindor,70,2001,Red,3 +Sorcerer's Stone,Gryffindor,70,2001,Medium Orange,4 +Sorcerer's Stone,Gryffindor,70,2001,Royal Blue,1 +Sorcerer's Stone,Gryffindor,70,2001,Dark Turquoise,3 +Sorcerer's Stone,The Final Challenge,61,2001,Brown,2 +Sorcerer's Stone,The Final Challenge,61,2001,Dark Gray,6 +Sorcerer's Stone,The Final Challenge,61,2001,Light Gray,4 +Sorcerer's Stone,The Final Challenge,61,2001,Purple,2 +Sorcerer's Stone,The Final Challenge,61,2001,Sand Green,1 +Sorcerer's Stone,The Final Challenge,61,2001,Tan,5 +Sorcerer's Stone,The Final Challenge,61,2001,Trans-Neon Orange,2 +Sorcerer's Stone,The Final Challenge,61,2001,Trans-Red,1 +Sorcerer's Stone,The Final Challenge,61,2001,Yellow,2 +Sorcerer's Stone,The Final Challenge,61,2001,[No Color],1 +Sorcerer's Stone,The Final Challenge,61,2001,Black,12 +Sorcerer's Stone,Sorting Hat,50,2001,Black,10 +Sorcerer's Stone,Sorting Hat,50,2001,Brown,5 +Sorcerer's Stone,Sorting Hat,50,2001,Dark Gray,3 +Sorcerer's Stone,Sorting Hat,50,2001,Light Gray,7 +Sorcerer's Stone,Sorting Hat,50,2001,Red,1 +Sorcerer's Stone,Sorting Hat,50,2001,Tan,2 +Sorcerer's Stone,Sorting Hat,50,2001,Trans-Neon Orange,1 +Sorcerer's Stone,Sorting Hat,50,2001,White,3 +Sorcerer's Stone,Sorting Hat,50,2001,Yellow,3 +Sorcerer's Stone,Gringott's Bank,263,2002,Trans-Clear,1 +Sorcerer's Stone,Gringott's Bank,263,2002,Trans-Dark Blue,1 +Sorcerer's Stone,Gringott's Bank,263,2002,Red,1 +Sorcerer's Stone,Gringott's Bank,263,2002,Trans-Neon Orange,1 +Sorcerer's Stone,Gringott's Bank,263,2002,White,8 +Sorcerer's Stone,Gringott's Bank,263,2002,Yellow,2 +Sorcerer's Stone,Gringott's Bank,263,2002,Black,20 +Sorcerer's Stone,Gringott's Bank,263,2002,Blue,1 +Sorcerer's Stone,Gringott's Bank,263,2002,Brown,8 +Sorcerer's Stone,Gringott's Bank,263,2002,Chrome Antique Brass,1 +Sorcerer's Stone,Gringott's Bank,263,2002,Chrome Gold,4 +Sorcerer's Stone,Gringott's Bank,263,2002,Dark Gray,14 +Sorcerer's Stone,Gringott's Bank,263,2002,Light Gray,17 +Sorcerer's Stone,Gringott's Bank,263,2002,Sand Green,10 +Sorcerer's Stone,Gringott's Bank,263,2002,Tan,14 +Sorcerer's Stone,Troll on the Loose,69,2002,[No Color],1 +Sorcerer's Stone,Troll on the Loose,69,2002,Black,8 +Sorcerer's Stone,Troll on the Loose,69,2002,Brown,5 +Sorcerer's Stone,Troll on the Loose,69,2002,Dark Gray,2 +Sorcerer's Stone,Troll on the Loose,69,2002,Light Gray,13 +Sorcerer's Stone,Troll on the Loose,69,2002,Orange,1 +Sorcerer's Stone,Troll on the Loose,69,2002,Sand Green,2 +Sorcerer's Stone,Troll on the Loose,69,2002,Trans-Neon Orange,1 +Sorcerer's Stone,Troll on the Loose,69,2002,White,4 +Sorcerer's Stone,Troll on the Loose,69,2002,Yellow,1 +Sorcerer's Stone,Flying Lesson,24,2002,Black,3 +Sorcerer's Stone,Flying Lesson,24,2002,Brown,3 +Sorcerer's Stone,Flying Lesson,24,2002,Tan,3 +Sorcerer's Stone,Flying Lesson,24,2002,Trans-Clear,1 +Sorcerer's Stone,Flying Lesson,24,2002,Yellow,2 +Sorcerer's Stone,Flying Lesson,24,2002,Light Gray,5 +Space,Rocket Base,276,1973,Black,7 +Space,Rocket Base,276,1973,Blue,15 +Space,Rocket Base,276,1973,Milky White,1 +Space,Rocket Base,276,1973,Red,6 +Space,Rocket Base,276,1973,Trans-Clear,7 +Space,Rocket Base,276,1973,White,9 +Space,Rocket Base,276,1973,Yellow,5 +Space,Moon Landing,366,1976,Black,6 +Space,Moon Landing,366,1976,Blue,24 +Space,Moon Landing,366,1976,Brown,1 +Space,Moon Landing,366,1976,Light Gray,1 +Space,Moon Landing,366,1976,Milky White,1 +Space,Moon Landing,366,1976,Red,4 +Space,Moon Landing,366,1976,Trans-Clear,3 +Space,Moon Landing,366,1976,White,15 +Space,Moon Landing,366,1976,Yellow,6 +Space,Gray Space Elements,10,1981,Light Gray,5 +Space,Gray Space Elements,10,1981,Trans-Green,1 +Space,Gray Space Elements,10,1981,Trans-Red,1 +Space,Blue Space Elements,8,1981,Blue,8 +Space,Strategic Pursuer,62,1988,Black,10 +Space,Strategic Pursuer,62,1988,Trans-Dark Blue,3 +Space,Strategic Pursuer,62,1988,Trans-Red,1 +Space,Strategic Pursuer,62,1988,White,19 +Space,Strategic Pursuer,62,1988,Yellow,4 +Space,Dacta Space Theme Set,559,1990,Black,6 +Space,Dacta Space Theme Set,559,1990,Blue,32 +Space,Dacta Space Theme Set,559,1990,Dark Gray,1 +Space,Dacta Space Theme Set,559,1990,Green,1 +Space,Dacta Space Theme Set,559,1990,Light Gray,10 +Space,Dacta Space Theme Set,559,1990,Red,22 +Space,Dacta Space Theme Set,559,1990,Trans-Clear,1 +Space,Dacta Space Theme Set,559,1990,Trans-Dark Blue,2 +Space,Dacta Space Theme Set,559,1990,Trans-Green,1 +Space,Dacta Space Theme Set,559,1990,Trans-Light Blue,3 +Space,Dacta Space Theme Set,559,1990,Trans-Red,3 +Space,Dacta Space Theme Set,559,1990,White,44 +Space,Dacta Space Theme Set,559,1990,Yellow,6 +Space,Life on Mars Accessories,48,2001,Black,9 +Space,Life on Mars Accessories,48,2001,Chrome Blue,1 +Space,Life on Mars Accessories,48,2001,Dark Gray,6 +Space,Life on Mars Accessories,48,2001,Light Gray,6 +Space,Life on Mars Accessories,48,2001,Red,2 +Space,Life on Mars Accessories,48,2001,Sand Blue,1 +Space,Life on Mars Accessories,48,2001,Sand Green,1 +Space,Life on Mars Accessories,48,2001,Trans-Neon Green,2 +Space,Life on Mars Accessories,48,2001,White,3 +Space,Life on Mars Accessories,48,2001,Yellow,1 +Space,Voyage into Space,637,2003,Black,21 +Space,Voyage into Space,637,2003,Blue,11 +Space,Voyage into Space,637,2003,Brown,2 +Space,Voyage into Space,637,2003,Chrome Silver,7 +Space,Voyage into Space,637,2003,Dark Bluish Gray,12 +Space,Voyage into Space,637,2003,Light Bluish Gray,7 +Space,Voyage into Space,637,2003,Pearl Light Gray,2 +Space,Voyage into Space,637,2003,Red,6 +Space,Voyage into Space,637,2003,Trans-Clear,3 +Space,Voyage into Space,637,2003,Trans-Dark Blue,7 +Space,Voyage into Space,637,2003,Trans-Green,1 +Space,Voyage into Space,637,2003,Trans-Light Blue,3 +Space,Voyage into Space,637,2003,Trans-Neon Green,7 +Space,Voyage into Space,637,2003,Trans-Neon Orange,3 +Space,Voyage into Space,637,2003,Trans-Red,1 +Space,Voyage into Space,637,2003,White,44 +Space,Micro-Scale Space Cruiser,102,2015,Black,1 +Space,Micro-Scale Space Cruiser,102,2015,Blue,12 +Space,Micro-Scale Space Cruiser,102,2015,Dark Bluish Gray,6 +Space,Micro-Scale Space Cruiser,102,2015,Light Bluish Gray,18 +Space,Micro-Scale Space Cruiser,102,2015,Red,1 +Space,Micro-Scale Space Cruiser,102,2015,Trans-Green,1 +Space,Micro-Scale Space Cruiser,102,2015,Trans-Red,2 +Space,Micro-Scale Space Cruiser,102,2015,Trans-Yellow,2 +Space,Micro-Scale Space Cruiser,102,2015,White,1 +Space,Micro-Scale Space Cruiser,102,2015,Yellow,2 +Space Police I,Mission Commander,478,1989,Trans-Red,10 +Space Police I,Mission Commander,478,1989,Blue,49 +Space Police I,Mission Commander,478,1989,Yellow,1 +Space Police I,Mission Commander,478,1989,White,4 +Space Police I,Mission Commander,478,1989,Black,76 +Space Police I,Space Lock-Up Isolation Base,253,1989,Yellow,1 +Space Police I,Space Lock-Up Isolation Base,253,1989,White,3 +Space Police I,Space Lock-Up Isolation Base,253,1989,Trans-Red,8 +Space Police I,Space Lock-Up Isolation Base,253,1989,Light Gray,1 +Space Police I,Space Lock-Up Isolation Base,253,1989,Blue,24 +Space Police I,Space Lock-Up Isolation Base,253,1989,Black,65 +Space Police I,SP-Striker,230,1989,Blue,27 +Space Police I,SP-Striker,230,1989,Black,52 +Space Police I,SP-Striker,230,1989,Trans-Red,10 +Space Police I,SP-Striker,230,1989,White,7 +Space Police I,SP-Striker,230,1989,Yellow,1 +Space Police I,Spy-Trak 1,152,1989,Black,46 +Space Police I,Spy-Trak 1,152,1989,Blue,19 +Space Police I,Spy-Trak 1,152,1989,Light Gray,2 +Space Police I,Spy-Trak 1,152,1989,Trans-Red,5 +Space Police I,Spy-Trak 1,152,1989,White,3 +Space Police I,Spy-Trak 1,152,1989,Yellow,1 +Space Police I,Galactic Peace Keeper,121,1989,Blue,19 +Space Police I,Galactic Peace Keeper,121,1989,Yellow,1 +Space Police I,Galactic Peace Keeper,121,1989,White,3 +Space Police I,Galactic Peace Keeper,121,1989,Trans-Red,6 +Space Police I,Galactic Peace Keeper,121,1989,Black,32 +Space Police I,Message Decoder,34,1989,Blue,4 +Space Police I,Message Decoder,34,1989,Yellow,1 +Space Police I,Message Decoder,34,1989,White,3 +Space Police I,Message Decoder,34,1989,Trans-Red,3 +Space Police I,Message Decoder,34,1989,Black,13 +Space Police II,Galactic Mediator,406,1992,Black,70 +Space Police II,Galactic Mediator,406,1992,Green,1 +Space Police II,Galactic Mediator,406,1992,Light Gray,38 +Space Police II,Galactic Mediator,406,1992,Red,12 +Space Police II,Galactic Mediator,406,1992,Trans-Green,8 +Space Police II,Galactic Mediator,406,1992,Trans-Neon Green,1 +Space Police II,Galactic Mediator,406,1992,White,7 +Space Police II,Galactic Mediator,406,1992,Yellow,2 +Space Police II,Solar Snooper,253,1992,Black,47 +Space Police II,Solar Snooper,253,1992,Green,1 +Space Police II,Solar Snooper,253,1992,Light Gray,21 +Space Police II,Solar Snooper,253,1992,Red,7 +Space Police II,Solar Snooper,253,1992,Trans-Green,6 +Space Police II,Solar Snooper,253,1992,Trans-Neon Green,1 +Space Police II,Solar Snooper,253,1992,White,4 +Space Police II,Solar Snooper,253,1992,Yellow,2 +Space Police II,Rebel Hunter,146,1992,Black,30 +Space Police II,Rebel Hunter,146,1992,Green,1 +Space Police II,Rebel Hunter,146,1992,Light Gray,18 +Space Police II,Rebel Hunter,146,1992,Red,5 +Space Police II,Rebel Hunter,146,1992,Trans-Green,4 +Space Police II,Rebel Hunter,146,1992,Trans-Neon Green,1 +Space Police II,Rebel Hunter,146,1992,White,4 +Space Police II,Rebel Hunter,146,1992,Yellow,2 +Space Police II,Space Police Car,23,1999,Black,6 +Space Police II,Space Police Car,23,1999,Green,1 +Space Police II,Space Police Car,23,1999,Light Gray,6 +Space Police II,Space Police Car,23,1999,Red,2 +Space Police II,Space Police Car,23,1999,Trans-Green,1 +Space Police II,Space Police Car,23,1999,White,1 +Space Police II,Space Police Car,23,1999,Yellow,1 +Space Police III,Galactic Enforcer,824,2009,Orange,1 +Space Police III,Galactic Enforcer,824,2009,Red,5 +Space Police III,Galactic Enforcer,824,2009,Reddish Brown,2 +Space Police III,Galactic Enforcer,824,2009,Sand Green,1 +Space Police III,Galactic Enforcer,824,2009,Tan,2 +Space Police III,Galactic Enforcer,824,2009,Trans-Dark Blue,7 +Space Police III,Galactic Enforcer,824,2009,Trans-Green,3 +Space Police III,Galactic Enforcer,824,2009,Trans-Neon Green,1 +Space Police III,Galactic Enforcer,824,2009,Trans-Neon Orange,2 +Space Police III,Galactic Enforcer,824,2009,Trans-Red,4 +Space Police III,Galactic Enforcer,824,2009,White,78 +Space Police III,Galactic Enforcer,824,2009,Yellow,3 +Space Police III,Galactic Enforcer,824,2009,[No Color],1 +Space Police III,Galactic Enforcer,824,2009,Black,67 +Space Police III,Galactic Enforcer,824,2009,Blue,15 +Space Police III,Galactic Enforcer,824,2009,Dark Bluish Gray,26 +Space Police III,Galactic Enforcer,824,2009,Light Bluish Gray,20 +Space Police III,Hyperspeed Pursuit,455,2009,Yellow,7 +Space Police III,Hyperspeed Pursuit,455,2009,Black,56 +Space Police III,Hyperspeed Pursuit,455,2009,Blue,4 +Space Police III,Hyperspeed Pursuit,455,2009,Dark Bluish Gray,27 +Space Police III,Hyperspeed Pursuit,455,2009,Light Bluish Gray,8 +Space Police III,Hyperspeed Pursuit,455,2009,Metallic Gold,1 +Space Police III,Hyperspeed Pursuit,455,2009,Red,13 +Space Police III,Hyperspeed Pursuit,455,2009,Trans-Clear,2 +Space Police III,Hyperspeed Pursuit,455,2009,Trans-Dark Blue,5 +Space Police III,Hyperspeed Pursuit,455,2009,Trans-Green,2 +Space Police III,Hyperspeed Pursuit,455,2009,Trans-Neon Green,1 +Space Police III,Hyperspeed Pursuit,455,2009,Trans-Neon Orange,3 +Space Police III,Hyperspeed Pursuit,455,2009,Trans-Red,6 +Space Police III,Hyperspeed Pursuit,455,2009,White,28 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Trans-Yellow,1 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Dark Bluish Gray,12 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Blue,4 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Light Bluish Gray,33 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Yellow,13 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,White,16 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Black,64 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Trans-Red,2 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Trans-Orange,1 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Trans-Neon Orange,1 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Trans-Neon Green,1 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Trans-Green,1 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Trans-Dark Blue,3 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Lime,4 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Metallic Gold,1 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Dark Brown,1 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Orange,2 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Pearl Light Gray,2 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Red,19 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Trans-Black,1 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,[No Color],1 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Reddish Brown,8 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Tan,1 +Space Police III,Squidman's Pitstop - Limited Edition,375,2009,Trans-Clear,1 +Space Police III,Max Security Transport,315,2009,Trans-Green,2 +Space Police III,Max Security Transport,315,2009,Black,26 +Space Police III,Max Security Transport,315,2009,Blue,4 +Space Police III,Max Security Transport,315,2009,Dark Bluish Gray,22 +Space Police III,Max Security Transport,315,2009,Light Bluish Gray,15 +Space Police III,Max Security Transport,315,2009,Red,6 +Space Police III,Max Security Transport,315,2009,Trans-Dark Blue,3 +Space Police III,Max Security Transport,315,2009,Trans-Neon Orange,1 +Space Police III,Max Security Transport,315,2009,Trans-Red,2 +Space Police III,Max Security Transport,315,2009,White,17 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Reddish Brown,6 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Yellow,10 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Dark Bluish Gray,19 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Blue,1 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Trans-Orange,1 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Trans-Red,2 +Space Police III,Space Truck Getaway [Container Heist],270,2009,White,10 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Trans-Green,3 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Trans-Dark Blue,1 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Red,2 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Trans-Neon Green,2 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Trans-Clear,1 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Trans-Black,1 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Black,24 +Space Police III,Space Truck Getaway [Container Heist],270,2009,[No Color],1 +Space Police III,Space Truck Getaway [Container Heist],270,2009,Light Bluish Gray,18 +Space Police III,Gold Heist,204,2009,White,25 +Space Police III,Gold Heist,204,2009,Yellow,7 +Space Police III,Gold Heist,204,2009,Metallic Gold,1 +Space Police III,Gold Heist,204,2009,Black,26 +Space Police III,Gold Heist,204,2009,Blue,1 +Space Police III,Gold Heist,204,2009,Dark Bluish Gray,6 +Space Police III,Gold Heist,204,2009,Green,4 +Space Police III,Gold Heist,204,2009,Light Bluish Gray,11 +Space Police III,Gold Heist,204,2009,Red,1 +Space Police III,Gold Heist,204,2009,Tan,1 +Space Police III,Gold Heist,204,2009,Trans-Clear,1 +Space Police III,Gold Heist,204,2009,Trans-Dark Blue,2 +Space Police III,Gold Heist,204,2009,Trans-Green,1 +Space Police III,Gold Heist,204,2009,Trans-Neon Green,1 +Space Police III,Gold Heist,204,2009,Trans-Neon Orange,1 +Space Police III,Gold Heist,204,2009,Trans-Orange,1 +Space Police III,Gold Heist,204,2009,Trans-Red,1 +Space Police III,Freeze Ray Frenzy,79,2009,Dark Bluish Gray,9 +Space Police III,Freeze Ray Frenzy,79,2009,Light Bluish Gray,5 +Space Police III,Freeze Ray Frenzy,79,2009,Orange,1 +Space Police III,Freeze Ray Frenzy,79,2009,Yellow,1 +Space Police III,Freeze Ray Frenzy,79,2009,White,5 +Space Police III,Freeze Ray Frenzy,79,2009,Trans-Red,3 +Space Police III,Freeze Ray Frenzy,79,2009,Trans-Orange,1 +Space Police III,Freeze Ray Frenzy,79,2009,Trans-Green,2 +Space Police III,Freeze Ray Frenzy,79,2009,Black,17 +Space Police III,Freeze Ray Frenzy,79,2009,Reddish Brown,2 +Space Police III,Freeze Ray Frenzy,79,2009,Trans-Dark Blue,1 +Space Police III,Freeze Ray Frenzy,79,2009,Trans-Neon Green,1 +Space Police III,Squidman Escape,41,2009,Black,8 +Space Police III,Squidman Escape,41,2009,Blue,1 +Space Police III,Squidman Escape,41,2009,Dark Bluish Gray,3 +Space Police III,Squidman Escape,41,2009,Green,3 +Space Police III,Squidman Escape,41,2009,Light Bluish Gray,2 +Space Police III,Squidman Escape,41,2009,Red,2 +Space Police III,Squidman Escape,41,2009,Trans-Dark Blue,1 +Space Police III,Squidman Escape,41,2009,Trans-Green,1 +Space Police III,Squidman Escape,41,2009,Trans-Red,1 +Space Police III,Squidman Escape,41,2009,White,10 +Space Police III,Squidman Escape,41,2009,Yellow,1 +Space Police III,K-9 Bot,22,2009,Dark Bluish Gray,2 +Space Police III,K-9 Bot,22,2009,Trans-Red,1 +Space Police III,K-9 Bot,22,2009,Trans-Green,1 +Space Police III,K-9 Bot,22,2009,Trans-Dark Blue,1 +Space Police III,K-9 Bot,22,2009,Black,3 +Space Police III,K-9 Bot,22,2009,Light Bluish Gray,2 +Space Police III,K-9 Bot,22,2009,Yellow,1 +Space Police III,K-9 Bot,22,2009,White,5 +Space Police III,Space Speeder,14,2009,Yellow,2 +Space Police III,Space Speeder,14,2009,Trans-Neon Green,1 +Space Police III,Space Speeder,14,2009,Red,1 +Space Police III,Space Speeder,14,2009,Dark Bluish Gray,1 +Space Police III,Space Speeder,14,2009,Trans-Neon Orange,1 +Space Police III,Space Speeder,14,2009,Black,6 +Space Police III,Space Speeder,14,2009,Blue,1 +Space Police III,Space Police Central,629,2010,Green,1 +Space Police III,Space Police Central,629,2010,Light Bluish Gray,34 +Space Police III,Space Police Central,629,2010,Orange,5 +Space Police III,Space Police Central,629,2010,Red,3 +Space Police III,Space Police Central,629,2010,Tan,2 +Space Police III,Space Police Central,629,2010,Trans-Clear,2 +Space Police III,Space Police Central,629,2010,Trans-Dark Blue,10 +Space Police III,Space Police Central,629,2010,Trans-Green,4 +Space Police III,Space Police Central,629,2010,Trans-Light Blue,1 +Space Police III,Space Police Central,629,2010,Trans-Neon Green,1 +Space Police III,Space Police Central,629,2010,Trans-Red,11 +Space Police III,Space Police Central,629,2010,Trans-Yellow,1 +Space Police III,Space Police Central,629,2010,White,66 +Space Police III,Space Police Central,629,2010,Yellow,7 +Space Police III,Space Police Central,629,2010,Dark Bluish Gray,23 +Space Police III,Space Police Central,629,2010,Blue,12 +Space Police III,Space Police Central,629,2010,Black,50 +Space Police III,Space Police Central,629,2010,Dark Red,3 +Space Police III,Space Police Central,629,2010,Dark Tan,1 +Space Police III,Lunar Limo,378,2010,Black,59 +Space Police III,Lunar Limo,378,2010,Blue,2 +Space Police III,Lunar Limo,378,2010,Dark Bluish Gray,8 +Space Police III,Lunar Limo,378,2010,Dark Purple,4 +Space Police III,Lunar Limo,378,2010,Glow In Dark Trans,1 +Space Police III,Lunar Limo,378,2010,Light Bluish Gray,23 +Space Police III,Lunar Limo,378,2010,Pearl Gold,9 +Space Police III,Lunar Limo,378,2010,Red,10 +Space Police III,Lunar Limo,378,2010,Trans-Clear,1 +Space Police III,Lunar Limo,378,2010,Trans-Green,1 +Space Police III,Lunar Limo,378,2010,Trans-Red,2 +Space Police III,Lunar Limo,378,2010,Trans-Yellow,3 +Space Police III,Lunar Limo,378,2010,White,4 +Space Police III,Lunar Limo,378,2010,Yellow,4 +Space Police III,SP Undercover Cruiser,308,2010,Red,7 +Space Police III,SP Undercover Cruiser,308,2010,Reddish Brown,2 +Space Police III,SP Undercover Cruiser,308,2010,Trans-Dark Blue,3 +Space Police III,SP Undercover Cruiser,308,2010,Trans-Green,1 +Space Police III,SP Undercover Cruiser,308,2010,Trans-Red,5 +Space Police III,SP Undercover Cruiser,308,2010,White,36 +Space Police III,SP Undercover Cruiser,308,2010,Light Bluish Gray,22 +Space Police III,SP Undercover Cruiser,308,2010,Black,19 +Space Police III,SP Undercover Cruiser,308,2010,Blue,4 +Space Police III,SP Undercover Cruiser,308,2010,Dark Bluish Gray,17 +Space Police III,SP Undercover Cruiser,308,2010,Green,2 +Space Police III,Smash 'n' Grab,187,2010,Trans-Purple,1 +Space Police III,Smash 'n' Grab,187,2010,[No Color],1 +Space Police III,Smash 'n' Grab,187,2010,Black,26 +Space Police III,Smash 'n' Grab,187,2010,Blue,4 +Space Police III,Smash 'n' Grab,187,2010,Dark Bluish Gray,15 +Space Police III,Smash 'n' Grab,187,2010,Dark Purple,6 +Space Police III,Smash 'n' Grab,187,2010,Green,1 +Space Police III,Smash 'n' Grab,187,2010,Light Bluish Gray,15 +Space Police III,Smash 'n' Grab,187,2010,Pearl Light Gray,1 +Space Police III,Smash 'n' Grab,187,2010,Reddish Brown,7 +Space Police III,Smash 'n' Grab,187,2010,Trans-Black,1 +Space Police III,Smash 'n' Grab,187,2010,Trans-Clear,1 +Space Police III,Smash 'n' Grab,187,2010,Trans-Green,1 +Space Police III,Smash 'n' Grab,187,2010,Trans-Neon Green,1 +Space Police III,Smash 'n' Grab,187,2010,Trans-Orange,2 +Space Police III,Smash 'n' Grab,187,2010,Trans-Red,2 +Space Police III,Smash 'n' Grab,187,2010,Trans-Yellow,2 +Space Police III,Smash 'n' Grab,187,2010,Yellow,8 +Space Police III,Raid VPR,68,2010,Trans-Dark Blue,4 +Space Police III,Raid VPR,68,2010,Trans-Green,2 +Space Police III,Raid VPR,68,2010,Dark Bluish Gray,5 +Space Police III,Raid VPR,68,2010,Trans-Red,5 +Space Police III,Raid VPR,68,2010,White,15 +Space Police III,Raid VPR,68,2010,Yellow,1 +Space Police III,Raid VPR,68,2010,Blue,2 +Space Police III,Raid VPR,68,2010,Black,14 +Space Police III,Raid VPR,68,2010,Lime,1 +Space Police III,Raid VPR,68,2010,[No Color],1 +Space Police III,Raid VPR,68,2010,Light Bluish Gray,5 +Space Port,Mission Control,499,1999,Blue,18 +Space Port,Mission Control,499,1999,Black,54 +Space Port,Mission Control,499,1999,[No Color],2 +Space Port,Mission Control,499,1999,Dark Gray,12 +Space Port,Mission Control,499,1999,Chrome Green,1 +Space Port,Mission Control,499,1999,Trans-Neon Green,3 +Space Port,Mission Control,499,1999,Light Gray,35 +Space Port,Mission Control,499,1999,Chrome Gold,3 +Space Port,Mission Control,499,1999,Red,13 +Space Port,Mission Control,499,1999,Tan,1 +Space Port,Mission Control,499,1999,Trans-Dark Blue,5 +Space Port,Mission Control,499,1999,Trans-Green,4 +Space Port,Mission Control,499,1999,Trans-Red,6 +Space Port,Mission Control,499,1999,White,60 +Space Port,Mission Control,499,1999,Yellow,23 +Space Port,Space Simulation Station,251,1999,Yellow,11 +Space Port,Space Simulation Station,251,1999,Blue,4 +Space Port,Space Simulation Station,251,1999,Black,22 +Space Port,Space Simulation Station,251,1999,Chrome Gold,2 +Space Port,Space Simulation Station,251,1999,Dark Gray,8 +Space Port,Space Simulation Station,251,1999,Light Gray,17 +Space Port,Space Simulation Station,251,1999,Red,11 +Space Port,Space Simulation Station,251,1999,Tan,3 +Space Port,Space Simulation Station,251,1999,Trans-Dark Blue,6 +Space Port,Space Simulation Station,251,1999,Trans-Green,2 +Space Port,Space Simulation Station,251,1999,Trans-Neon Green,2 +Space Port,Space Simulation Station,251,1999,Trans-Neon Orange,1 +Space Port,Space Simulation Station,251,1999,Trans-Red,2 +Space Port,Space Simulation Station,251,1999,White,48 +Space Port,Countdown Corner,131,1999,White,21 +Space Port,Countdown Corner,131,1999,Trans-Red,2 +Space Port,Countdown Corner,131,1999,Yellow,5 +Space Port,Countdown Corner,131,1999,Tan,1 +Space Port,Countdown Corner,131,1999,Light Gray,7 +Space Port,Countdown Corner,131,1999,Dark Gray,2 +Space Port,Countdown Corner,131,1999,Chrome Green,1 +Space Port,Countdown Corner,131,1999,Chrome Gold,2 +Space Port,Countdown Corner,131,1999,Red,1 +Space Port,Countdown Corner,131,1999,Blue,11 +Space Port,Countdown Corner,131,1999,Black,11 +Space Port,Countdown Corner,131,1999,Trans-Clear,1 +Space Port,Countdown Corner,131,1999,Trans-Dark Blue,2 +Space Port,Fuel Truck,119,1999,Blue,1 +Space Port,Fuel Truck,119,1999,Black,10 +Space Port,Fuel Truck,119,1999,[No Color],1 +Space Port,Fuel Truck,119,1999,Tan,1 +Space Port,Fuel Truck,119,1999,Trans-Dark Blue,4 +Space Port,Fuel Truck,119,1999,Trans-Neon Green,2 +Space Port,Fuel Truck,119,1999,Trans-Red,3 +Space Port,Fuel Truck,119,1999,White,20 +Space Port,Fuel Truck,119,1999,Yellow,9 +Space Port,Fuel Truck,119,1999,Red,6 +Space Port,Fuel Truck,119,1999,Light Gray,11 +Space Port,Fuel Truck,119,1999,Dark Gray,1 +Space Port,Space Port Jet,65,1999,Light Gray,5 +Space Port,Space Port Jet,65,1999,Red,2 +Space Port,Space Port Jet,65,1999,Trans-Clear,1 +Space Port,Space Port Jet,65,1999,Trans-Dark Blue,1 +Space Port,Space Port Jet,65,1999,Trans-Green,1 +Space Port,Space Port Jet,65,1999,Trans-Neon Orange,1 +Space Port,Space Port Jet,65,1999,Trans-Red,1 +Space Port,Space Port Jet,65,1999,Trans-Yellow,1 +Space Port,Space Port Jet,65,1999,White,13 +Space Port,Space Port Jet,65,1999,Yellow,3 +Space Port,Space Port Jet,65,1999,Black,6 +Space Port,Space Port Jet,65,1999,Blue,4 +Space Port,Space Port Jet,65,1999,Chrome Gold,1 +Space Port,Com-Link Cruiser,60,1999,White,13 +Space Port,Com-Link Cruiser,60,1999,Yellow,3 +Space Port,Com-Link Cruiser,60,1999,Black,4 +Space Port,Com-Link Cruiser,60,1999,Blue,7 +Space Port,Com-Link Cruiser,60,1999,Light Gray,6 +Space Port,Com-Link Cruiser,60,1999,Red,2 +Space Port,Com-Link Cruiser,60,1999,Trans-Dark Blue,3 +Space Port,Com-Link Cruiser,60,1999,Trans-Neon Green,1 +Space Port,Com-Link Cruiser,60,1999,Trans-Red,1 +Space Port,Lunar Rover,36,1999,Chrome Gold,2 +Space Port,Lunar Rover,36,1999,Yellow,1 +Space Port,Lunar Rover,36,1999,Dark Gray,1 +Space Port,Lunar Rover,36,1999,[No Color],1 +Space Port,Lunar Rover,36,1999,Light Gray,4 +Space Port,Lunar Rover,36,1999,Trans-Neon Green,1 +Space Port,Lunar Rover,36,1999,Black,6 +Space Port,Lunar Rover,36,1999,White,10 +Space Port,Mini Rocket Launcher,31,1999,White,8 +Space Port,Mini Rocket Launcher,31,1999,Yellow,2 +Space Port,Mini Rocket Launcher,31,1999,[No Color],1 +Space Port,Mini Rocket Launcher,31,1999,Trans-Green,1 +Space Port,Mini Rocket Launcher,31,1999,Trans-Dark Blue,1 +Space Port,Mini Rocket Launcher,31,1999,Tan,1 +Space Port,Mini Rocket Launcher,31,1999,Light Gray,4 +Space Port,Mini Rocket Launcher,31,1999,Blue,4 +Space Port,Mini Rocket Launcher,31,1999,Black,4 +Space Port,Mini Rocket Launcher,31,1999,Trans-Red,1 +Space Port,Satellite with Astronaut,30,1999,Trans-Red,1 +Space Port,Surveillance Chopper,30,1999,White,7 +Space Port,Satellite with Astronaut,30,1999,White,11 +Space Port,Surveillance Chopper,30,1999,Blue,4 +Space Port,Surveillance Chopper,30,1999,Yellow,1 +Space Port,Satellite with Astronaut,30,1999,Yellow,1 +Space Port,Surveillance Chopper,30,1999,Light Gray,3 +Space Port,Surveillance Chopper,30,1999,Black,7 +Space Port,Surveillance Chopper,30,1999,Trans-Red,1 +Space Port,Surveillance Chopper,30,1999,Trans-Neon Orange,1 +Space Port,Surveillance Chopper,30,1999,Trans-Neon Green,1 +Space Port,Surveillance Chopper,30,1999,Trans-Light Blue,1 +Space Port,Satellite with Astronaut,30,1999,Black,4 +Space Port,Satellite with Astronaut,30,1999,Chrome Gold,2 +Space Port,Satellite with Astronaut,30,1999,Light Gray,2 +Space Port,Satellite with Astronaut,30,1999,Trans-Dark Blue,1 +Space Port,Satellite with Astronaut,30,1999,Trans-Neon Green,1 +Space Port,Moon Buggy,25,1999,White,7 +Space Port,Moon Buggy,25,1999,Yellow,1 +Space Port,Radar Buggy,25,1999,Black,5 +Space Port,Radar Buggy,25,1999,Blue,2 +Space Port,Radar Buggy,25,1999,Trans-Neon Green,1 +Space Port,Radar Buggy,25,1999,Trans-Red,1 +Space Port,Radar Buggy,25,1999,White,7 +Space Port,Radar Buggy,25,1999,Yellow,1 +Space Port,Moon Buggy,25,1999,Black,5 +Space Port,Space Port Moon Buggy,25,1999,Black,5 +Space Port,Space Port Moon Buggy,25,1999,Blue,2 +Space Port,Space Port Moon Buggy,25,1999,Trans-Neon Green,1 +Space Port,Space Port Moon Buggy,25,1999,Trans-Red,1 +Space Port,Space Port Moon Buggy,25,1999,Yellow,1 +Space Port,Space Port Moon Buggy,25,1999,White,7 +Space Port,Moon Buggy,25,1999,Blue,2 +Space Port,Moon Buggy,25,1999,Trans-Neon Green,1 +Space Port,Moon Buggy,25,1999,Trans-Red,1 +Space Port,Cosmic Wing,23,1999,Trans-Red,1 +Space Port,Space Port Spacecraft,23,1999,Chrome Gold,1 +Space Port,Space Port Spacecraft,23,1999,Blue,1 +Space Port,Space Probe,23,1999,Chrome Gold,1 +Space Port,Space Probe,23,1999,Blue,1 +Space Port,Cosmic Wing,23,1999,Black,2 +Space Port,Cosmic Wing,23,1999,Blue,1 +Space Port,Cosmic Wing,23,1999,Chrome Gold,1 +Space Port,Cosmic Wing,23,1999,Dark Gray,1 +Space Port,Cosmic Wing,23,1999,Trans-Green,1 +Space Port,Cosmic Wing,23,1999,Trans-Neon Orange,1 +Space Port,Space Probe,23,1999,Trans-Red,1 +Space Port,Cosmic Wing,23,1999,White,7 +Space Port,Cosmic Wing,23,1999,Yellow,1 +Space Port,Space Probe,23,1999,Black,2 +Space Port,Space Port Spacecraft,23,1999,Yellow,1 +Space Port,Space Port Spacecraft,23,1999,White,7 +Space Port,Space Port Spacecraft,23,1999,Trans-Red,1 +Space Port,Space Port Spacecraft,23,1999,Trans-Neon Orange,1 +Space Port,Space Port Spacecraft,23,1999,Trans-Green,1 +Space Port,Space Port Spacecraft,23,1999,Black,2 +Space Port,Space Probe,23,1999,Yellow,1 +Space Port,Space Probe,23,1999,White,7 +Space Port,Space Probe,23,1999,Trans-Neon Orange,1 +Space Port,Space Probe,23,1999,Trans-Green,1 +Space Port,Space Probe,23,1999,Dark Gray,1 +Space Port,Space Port Spacecraft,23,1999,Dark Gray,1 +Space Port,Test Shuttle,21,1999,Black,5 +Space Port,Test Shuttle,21,1999,Light Gray,1 +Space Port,Test Shuttle,21,1999,Trans-Dark Blue,1 +Space Port,Test Shuttle,21,1999,Trans-Neon Orange,1 +Space Port,Test Shuttle,21,1999,White,9 +Space Port,Test Shuttle,21,1999,Yellow,2 +Space Port,Cosmos Glider,19,1999,Trans-Dark Blue,1 +Space Port,Cosmos Glider,19,1999,Black,2 +Space Port,Cosmos Glider,19,1999,Blue,1 +Space Port,Cosmos Glider,19,1999,Light Gray,1 +Space Port,Cosmos Glider,19,1999,Trans-Green,1 +Space Port,Cosmos Glider,19,1999,Trans-Neon Orange,1 +Space Port,Cosmos Glider,19,1999,Trans-Red,1 +Space Port,Cosmos Glider,19,1999,Yellow,1 +Space Port,Cosmos Glider,19,1999,White,8 +Space Port,Astronaut Figure,18,1999,Trans-Neon Green,1 +Space Port,Astronaut Figure,18,1999,Chrome Gold,2 +Space Port,Astronaut Figure,18,1999,Blue,2 +Space Port,Astronaut Figure,18,1999,Trans-Red,1 +Space Port,Astronaut Figure,18,1999,White,7 +Space Port,Astronaut Figure,18,1999,Yellow,2 +Space Port,Maine Space Grant Consortium Promotional Astronaut Polybag,5,1999,Chrome Gold,1 +Space Port,Maine Space Grant Consortium Promotional Astronaut Polybag,5,1999,White,3 +Space Port,Maine Space Grant Consortium Promotional Astronaut Polybag,5,1999,Yellow,1 +Space Port,Spaceport,584,2015,Trans-Clear,1 +Space Port,Spaceport,584,2015,Trans-Light Blue,2 +Space Port,Spaceport,584,2015,Trans-Orange,4 +Space Port,Spaceport,584,2015,Trans-Red,1 +Space Port,Spaceport,584,2015,Trans-Yellow,1 +Space Port,Spaceport,584,2015,White,38 +Space Port,Spaceport,584,2015,Yellow,22 +Space Port,Spaceport,584,2015,Orange,2 +Space Port,Spaceport,584,2015,Pearl Gold,2 +Space Port,Spaceport,584,2015,Red,10 +Space Port,Spaceport,584,2015,Reddish Brown,2 +Space Port,Spaceport,584,2015,Tan,2 +Space Port,Spaceport,584,2015,Dark Blue,1 +Space Port,Spaceport,584,2015,Trans-Black,3 +Space Port,Spaceport,584,2015,Light Bluish Gray,27 +Space Port,Spaceport,584,2015,Black,55 +Space Port,Spaceport,584,2015,Blue,18 +Space Port,Spaceport,584,2015,Dark Bluish Gray,31 +Space Port,Spaceport,584,2015,Dark Orange,3 +Space Port,Spaceport,584,2015,Green,2 +Space Port,Spaceport,584,2015,Lime,1 +Space Port,Training Jet Transporter,448,2015,[No Color],1 +Space Port,Training Jet Transporter,448,2015,Black,22 +Space Port,Training Jet Transporter,448,2015,Blue,26 +Space Port,Training Jet Transporter,448,2015,Dark Blue,1 +Space Port,Training Jet Transporter,448,2015,Dark Bluish Gray,21 +Space Port,Training Jet Transporter,448,2015,White,36 +Space Port,Training Jet Transporter,448,2015,Green,1 +Space Port,Training Jet Transporter,448,2015,Light Bluish Gray,32 +Space Port,Training Jet Transporter,448,2015,Medium Blue,1 +Space Port,Training Jet Transporter,448,2015,Tan,1 +Space Port,Training Jet Transporter,448,2015,Orange,3 +Space Port,Training Jet Transporter,448,2015,Red,11 +Space Port,Training Jet Transporter,448,2015,Dark Orange,1 +Space Port,Training Jet Transporter,448,2015,Yellow,17 +Space Port,Training Jet Transporter,448,2015,Trans-Black,1 +Space Port,Training Jet Transporter,448,2015,Trans-Clear,2 +Space Port,Training Jet Transporter,448,2015,Trans-Green,1 +Space Port,Training Jet Transporter,448,2015,Flat Silver,1 +Space Port,Training Jet Transporter,448,2015,Trans-Orange,4 +Space Port,Training Jet Transporter,448,2015,Trans-Red,3 +Space Port,Training Jet Transporter,448,2015,Trans-Light Blue,2 +Space Port,Utility Shuttle,154,2015,Trans-Black,1 +Space Port,Utility Shuttle,154,2015,Trans-Light Blue,3 +Space Port,Utility Shuttle,154,2015,White,26 +Space Port,Utility Shuttle,154,2015,Yellow,4 +Space Port,Utility Shuttle,154,2015,Black,11 +Space Port,Utility Shuttle,154,2015,Blue,2 +Space Port,Utility Shuttle,154,2015,Dark Bluish Gray,8 +Space Port,Utility Shuttle,154,2015,Light Bluish Gray,8 +Space Port,Utility Shuttle,154,2015,Metallic Silver,1 +Space Port,Utility Shuttle,154,2015,Pearl Gold,2 +Space Port,Utility Shuttle,154,2015,Red,7 +Space Port,Utility Shuttle,154,2015,Tan,2 +Space Port,Space Starter Set,107,2015,Black,8 +Space Port,Space Starter Set,107,2015,Blue,2 +Space Port,Space Starter Set,107,2015,Dark Blue,1 +Space Port,Space Starter Set,107,2015,Dark Bluish Gray,8 +Space Port,Space Starter Set,107,2015,Dark Tan,4 +Space Port,Space Starter Set,107,2015,Light Bluish Gray,4 +Space Port,Space Starter Set,107,2015,Orange,1 +Space Port,Space Starter Set,107,2015,Pearl Gold,2 +Space Port,Space Starter Set,107,2015,Red,2 +Space Port,Space Starter Set,107,2015,Reddish Brown,1 +Space Port,Space Starter Set,107,2015,Tan,2 +Space Port,Space Starter Set,107,2015,Trans-Clear,1 +Space Port,Space Starter Set,107,2015,Trans-Light Blue,3 +Space Port,Space Starter Set,107,2015,Trans-Red,1 +Space Port,Space Starter Set,107,2015,Trans-Yellow,1 +Space Port,Space Starter Set,107,2015,White,19 +Space Port,Space Starter Set,107,2015,Yellow,4 +Space Port,Space Utility Vehicle,39,2015,Black,2 +Space Port,Space Utility Vehicle,39,2015,Blue,3 +Space Port,Space Utility Vehicle,39,2015,Dark Bluish Gray,4 +Space Port,Space Utility Vehicle,39,2015,Flat Silver,1 +Space Port,Space Utility Vehicle,39,2015,Light Bluish Gray,2 +Space Port,Space Utility Vehicle,39,2015,Metallic Gold,1 +Space Port,Space Utility Vehicle,39,2015,Red,1 +Space Port,Space Utility Vehicle,39,2015,Trans-Dark Blue,1 +Space Port,Space Utility Vehicle,39,2015,Trans-Light Blue,1 +Space Port,Space Utility Vehicle,39,2015,White,7 +Space Port,Space Utility Vehicle,39,2015,Yellow,1 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Trans-Clear,1 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Trans-Orange,1 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Trans-Red,2 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,White,20 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Yellow,17 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,[No Color],2 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Black,63 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Blue,10 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Dark Bluish Gray,18 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Dark Brown,1 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Flat Silver,1 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Green,2 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Light Bluish Gray,38 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Orange,2 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Pearl Gold,2 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Red,81 +Speed Champions,F14 T & Scuderia Ferrari Truck,889,2015,Trans-Black,1 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Trans-Orange,1 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Trans-Green,1 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Trans-Clear,2 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Trans-Black,3 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Tan,1 +Speed Champions,Porsche 911 GT Finish Line,561,2015,White,39 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Reddish Brown,1 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Red,24 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Pearl Gold,1 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Orange,15 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Light Bluish Gray,25 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Dark Bluish Gray,21 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Yellow,5 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Green,1 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Flat Silver,4 +Speed Champions,Porsche 911 GT Finish Line,561,2015,[No Color],3 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Black,43 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Blue,15 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Dark Blue,1 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Trans-Yellow,1 +Speed Champions,Porsche 911 GT Finish Line,561,2015,Trans-Red,1 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,Yellow,6 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,Pearl Gold,1 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,[No Color],1 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,Black,47 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,Blue,7 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,Dark Bluish Gray,12 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,Light Bluish Gray,38 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,Red,11 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,Tan,1 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,Trans-Black,1 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,Trans-Yellow,1 +Speed Champions,McLaren Mercedes Pit Stop,340,2015,White,26 +Speed Champions,McLaren P1,171,2015,Light Bluish Gray,11 +Speed Champions,McLaren P1,171,2015,Tan,1 +Speed Champions,McLaren P1,171,2015,Trans-Black,3 +Speed Champions,McLaren P1,171,2015,Yellow,1 +Speed Champions,McLaren P1,171,2015,[No Color],1 +Speed Champions,McLaren P1,171,2015,Black,24 +Speed Champions,McLaren P1,171,2015,Blue,1 +Speed Champions,McLaren P1,171,2015,Dark Bluish Gray,4 +Speed Champions,McLaren P1,171,2015,Bright Light Orange,17 +Speed Champions,McLaren P1,171,2015,Flat Silver,1 +Speed Champions,McLaren P1,171,2015,Green,2 +Speed Champions,McLaren P1,171,2015,Orange,2 +Speed Champions,McLaren P1,171,2015,Red,3 +Speed Champions,McLaren P1,171,2015,White,6 +Speed Champions,LaFerrari,167,2015,Trans-Black,2 +Speed Champions,LaFerrari,167,2015,Yellow,3 +Speed Champions,LaFerrari,167,2015,White,3 +Speed Champions,LaFerrari,167,2015,[No Color],1 +Speed Champions,LaFerrari,167,2015,Blue,3 +Speed Champions,LaFerrari,167,2015,Dark Bluish Gray,2 +Speed Champions,LaFerrari,167,2015,Flat Silver,3 +Speed Champions,LaFerrari,167,2015,Light Bluish Gray,8 +Speed Champions,LaFerrari,167,2015,Red,20 +Speed Champions,LaFerrari,167,2015,Tan,2 +Speed Champions,LaFerrari,167,2015,Trans-Clear,1 +Speed Champions,LaFerrari,167,2015,Trans-Green,1 +Speed Champions,LaFerrari,167,2015,Trans-Orange,1 +Speed Champions,LaFerrari,167,2015,Trans-Red,1 +Speed Champions,LaFerrari,167,2015,Black,20 +Speed Champions,458 Italia GT2,156,2015,Black,16 +Speed Champions,458 Italia GT2,156,2015,Blue,3 +Speed Champions,458 Italia GT2,156,2015,Dark Bluish Gray,2 +Speed Champions,458 Italia GT2,156,2015,[No Color],1 +Speed Champions,458 Italia GT2,156,2015,Trans-Red,1 +Speed Champions,458 Italia GT2,156,2015,Trans-Clear,1 +Speed Champions,458 Italia GT2,156,2015,Tan,1 +Speed Champions,458 Italia GT2,156,2015,Trans-Black,2 +Speed Champions,458 Italia GT2,156,2015,Red,19 +Speed Champions,458 Italia GT2,156,2015,Light Bluish Gray,2 +Speed Champions,458 Italia GT2,156,2015,Flat Silver,1 +Speed Champions,458 Italia GT2,156,2015,Yellow,8 +Speed Champions,458 Italia GT2,156,2015,White,11 +Speed Champions,Porsche 918 Spyder,154,2015,[No Color],1 +Speed Champions,Porsche 918 Spyder,154,2015,Black,8 +Speed Champions,Porsche 918 Spyder,154,2015,Blue,2 +Speed Champions,Porsche 918 Spyder,154,2015,Dark Bluish Gray,7 +Speed Champions,Porsche 918 Spyder,154,2015,Dark Red,1 +Speed Champions,Porsche 918 Spyder,154,2015,Flat Silver,3 +Speed Champions,Porsche 918 Spyder,154,2015,Light Bluish Gray,24 +Speed Champions,Porsche 918 Spyder,154,2015,Lime,1 +Speed Champions,Porsche 918 Spyder,154,2015,Red,7 +Speed Champions,Porsche 918 Spyder,154,2015,Tan,1 +Speed Champions,Porsche 918 Spyder,154,2015,Trans-Black,1 +Speed Champions,Porsche 918 Spyder,154,2015,Trans-Clear,1 +Speed Champions,Porsche 918 Spyder,154,2015,Trans-Red,1 +Speed Champions,Porsche 918 Spyder,154,2015,White,6 +Speed Champions,Porsche 918 Spyder,154,2015,Yellow,2 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Bright Light Orange,1 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Dark Blue,1 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Dark Bluish Gray,22 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Dark Brown,3 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Flat Silver,2 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Green,22 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Light Bluish Gray,76 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Trans-Black,1 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Orange,5 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Pearl Gold,2 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Red,20 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Reddish Brown,1 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Tan,8 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Trans-Clear,2 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Trans-Green,1 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Trans-Light Blue,1 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Trans-Orange,1 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Trans-Red,1 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Trans-Yellow,2 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Medium Dark Flesh,1 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,White,60 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Yellow,16 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Black,109 +Speed Champions,"MERCEDES AMG PETRONAS Formula One"" Team",940,2017,Blue,3 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Dark Bluish Gray,26 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Orange,1 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Red,52 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Tan,2 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Trans-Black,2 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Trans-Clear,1 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Trans-Red,1 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Black,42 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Blue,2 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Bright Light Yellow,1 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Yellow,16 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Dark Brown,1 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Flat Silver,3 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Green,1 +Speed Champions,Ferrari FXX K & Development Center,493,2017,Light Bluish Gray,37 +Speed Champions,Ferrari FXX K & Development Center,493,2017,White,15 +Speed Champions,Ferrari FXX K & Development Center,493,2017,[No Color],1 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Dark Blue,1 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Dark Bluish Gray,9 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,[No Color],1 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Dark Tan,1 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Dark Green,3 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Pearl Gold,5 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Red,17 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Tan,3 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Black,39 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Trans-Yellow,2 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Trans-Black,4 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Flat Silver,2 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Trans-Clear,2 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Trans-Red,1 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,White,20 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Yellow,4 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Light Bluish Gray,17 +Speed Champions,2016 Ford GT & 1966 Ford GT40,366,2017,Blue,17 +Speed Champions,Mercedes-AMG GT3,203,2017,White,1 +Speed Champions,Mercedes-AMG GT3,203,2017,Black,27 +Speed Champions,Mercedes-AMG GT3,203,2017,Blue,1 +Speed Champions,Mercedes-AMG GT3,203,2017,Dark Bluish Gray,20 +Speed Champions,Mercedes-AMG GT3,203,2017,Light Bluish Gray,6 +Speed Champions,Mercedes-AMG GT3,203,2017,[No Color],1 +Speed Champions,Mercedes-AMG GT3,203,2017,Yellow,7 +Speed Champions,Mercedes-AMG GT3,203,2017,Tan,2 +Speed Champions,Mercedes-AMG GT3,203,2017,Trans-Black,2 +Speed Champions,Mercedes-AMG GT3,203,2017,Trans-Clear,1 +Speed Champions,Mercedes-AMG GT3,203,2017,Trans-Red,1 +Speed Champions,Mercedes-AMG GT3,203,2017,Red,1 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,White,16 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,Yellow,2 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,[No Color],1 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,Black,34 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,Blue,1 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,Dark Bluish Gray,2 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,Light Bluish Gray,10 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,Red,25 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,Trans-Black,1 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,Trans-Green,1 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,Trans-Orange,1 +Speed Champions,Scuderia Ferrari SF16-H,184,2017,Trans-Red,2 +Speed Champions,Bugatti Chiron,181,2017,[No Color],1 +Speed Champions,Bugatti Chiron,181,2017,Black,37 +Speed Champions,Bugatti Chiron,181,2017,Blue,16 +Speed Champions,Bugatti Chiron,181,2017,Dark Blue,2 +Speed Champions,Bugatti Chiron,181,2017,Dark Bluish Gray,3 +Speed Champions,Bugatti Chiron,181,2017,Light Bluish Gray,5 +Speed Champions,Bugatti Chiron,181,2017,Orange,2 +Speed Champions,Bugatti Chiron,181,2017,Red,1 +Speed Champions,Bugatti Chiron,181,2017,Tan,6 +Speed Champions,Bugatti Chiron,181,2017,Trans-Black,2 +Speed Champions,Bugatti Chiron,181,2017,White,2 +Speed Champions,Bugatti Chiron,181,2017,Yellow,2 +Speed Champions,McLaren 720S,160,2017,Black,29 +Speed Champions,McLaren 720S,160,2017,Blue,3 +Speed Champions,McLaren 720S,160,2017,Dark Bluish Gray,4 +Speed Champions,McLaren 720S,160,2017,Dark Brown,1 +Speed Champions,McLaren 720S,160,2017,Flat Silver,2 +Speed Champions,McLaren 720S,160,2017,Light Bluish Gray,8 +Speed Champions,McLaren 720S,160,2017,Orange,22 +Speed Champions,McLaren 720S,160,2017,Pearl Gold,1 +Speed Champions,McLaren 720S,160,2017,Red,2 +Speed Champions,McLaren 720S,160,2017,Tan,2 +Speed Champions,McLaren 720S,160,2017,Trans-Black,2 +Speed Champions,McLaren 720S,160,2017,Trans-Clear,3 +Speed Champions,McLaren 720S,160,2017,White,6 +Speed Champions,McLaren 720S,160,2017,Yellow,1 +Speed Racer,Grand Prix Race,598,2008,Reddish Brown,1 +Speed Racer,Grand Prix Race,598,2008,Tan,1 +Speed Racer,Grand Prix Race,598,2008,Sand Blue,1 +Speed Racer,Grand Prix Race,598,2008,Black,69 +Speed Racer,Grand Prix Race,598,2008,Dark Blue,1 +Speed Racer,Grand Prix Race,598,2008,Dark Bluish Gray,21 +Speed Racer,Grand Prix Race,598,2008,Dark Pink,1 +Speed Racer,Grand Prix Race,598,2008,Light Bluish Gray,29 +Speed Racer,Grand Prix Race,598,2008,Light Flesh,8 +Speed Racer,Grand Prix Race,598,2008,Pearl Light Gray,1 +Speed Racer,Grand Prix Race,598,2008,Red,6 +Speed Racer,Grand Prix Race,598,2008,White,50 +Speed Racer,Grand Prix Race,598,2008,Yellow,10 +Speed Racer,Cruncher Block & Racer X,366,2008,Dark Blue,3 +Speed Racer,Cruncher Block & Racer X,366,2008,Dark Bluish Gray,9 +Speed Racer,Cruncher Block & Racer X,366,2008,Light Bluish Gray,12 +Speed Racer,Cruncher Block & Racer X,366,2008,Light Flesh,4 +Speed Racer,Cruncher Block & Racer X,366,2008,Pearl Light Gray,2 +Speed Racer,Cruncher Block & Racer X,366,2008,Red,31 +Speed Racer,Cruncher Block & Racer X,366,2008,Reddish Brown,3 +Speed Racer,Cruncher Block & Racer X,366,2008,Tan,1 +Speed Racer,Cruncher Block & Racer X,366,2008,Trans-Clear,4 +Speed Racer,Cruncher Block & Racer X,366,2008,Trans-Red,1 +Speed Racer,Cruncher Block & Racer X,366,2008,Yellow,15 +Speed Racer,Cruncher Block & Racer X,366,2008,White,2 +Speed Racer,Cruncher Block & Racer X,366,2008,[No Color],1 +Speed Racer,Cruncher Block & Racer X,366,2008,Black,44 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Blue,2 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Black,26 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Dark Bluish Gray,6 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Dark Red,2 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Light Bluish Gray,3 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Light Flesh,2 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Lime,1 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Orange,12 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Pearl Light Gray,1 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Red,9 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Trans-Clear,2 +Speed Racer,Speed Racer & Snake Oiler,241,2008,White,24 +Speed Racer,Speed Racer & Snake Oiler,241,2008,Yellow,1 +Speed Racer,Racer X & Taejo Togokhan,236,2008,Dark Bluish Gray,8 +Speed Racer,Racer X & Taejo Togokhan,236,2008,Light Bluish Gray,2 +Speed Racer,Racer X & Taejo Togokhan,236,2008,Light Flesh,2 +Speed Racer,Racer X & Taejo Togokhan,236,2008,Pearl Light Gray,2 +Speed Racer,Racer X & Taejo Togokhan,236,2008,Black,22 +Speed Racer,Racer X & Taejo Togokhan,236,2008,Trans-Clear,1 +Speed Racer,Racer X & Taejo Togokhan,236,2008,White,4 +Speed Racer,Racer X & Taejo Togokhan,236,2008,Yellow,15 +Speed Racer,Racer X & Taejo Togokhan,236,2008,Red,27 +Speed Slammers,Slammer Dragsters / Dueling Dragsters,201,2000,Yellow,8 +Speed Slammers,Slammer Dragsters / Dueling Dragsters,201,2000,Light Gray,8 +Speed Slammers,Slammer Dragsters / Dueling Dragsters,201,2000,Black,22 +Speed Slammers,Slammer Dragsters / Dueling Dragsters,201,2000,Blue,8 +Speed Slammers,Slammer Dragsters / Dueling Dragsters,201,2000,White,3 +Speed Slammers,Slammer Racer / Formula Force,112,2000,Red,11 +Speed Slammers,Slammer Racer / Formula Force,112,2000,Black,20 +Speed Slammers,Slammer Racer / Formula Force,112,2000,Dark Gray,1 +Speed Slammers,Slammer Racer / Formula Force,112,2000,Light Gray,7 +Speed Slammers,Slammer Racer / Formula Force,112,2000,White,2 +Speed Slammers,Bike Burner,59,2000,Green,6 +Speed Slammers,Bike Burner,59,2000,Light Gray,7 +Speed Slammers,Bike Burner,59,2000,White,2 +Speed Slammers,Bike Burner,59,2000,Black,13 +Speed Slammers,Slammer Turbo,251,2001,Black,32 +Speed Slammers,Slammer Turbo,251,2001,White,1 +Speed Slammers,Slammer Turbo,251,2001,Dark Gray,1 +Speed Slammers,Slammer Turbo,251,2001,Flat Silver,2 +Speed Slammers,Slammer Turbo,251,2001,Light Gray,9 +Speed Slammers,Slammer Turbo,251,2001,Red,17 +Speed Slammers,Slammer Stunt Bike,152,2001,Dark Gray,1 +Speed Slammers,Slammer Stunt Bike,152,2001,Flat Silver,1 +Speed Slammers,Slammer Stunt Bike,152,2001,Light Gray,7 +Speed Slammers,Slammer Stunt Bike,152,2001,Yellow,11 +Speed Slammers,Slammer Stunt Bike,152,2001,Black,25 +Speed Slammers,Battle Cars,110,2001,Red,7 +Speed Slammers,Battle Cars,110,2001,Black,17 +Speed Slammers,Battle Cars,110,2001,Green,7 +Speed Slammers,Battle Cars,110,2001,Light Gray,4 +Speedorz,Eagles’ Castle,372,2013,Dark Blue,3 +Speedorz,Eagles’ Castle,372,2013,Dark Bluish Gray,15 +Speedorz,Eagles’ Castle,372,2013,Dark Red,1 +Speedorz,Eagles’ Castle,372,2013,Flat Silver,4 +Speedorz,Eagles’ Castle,372,2013,Green,3 +Speedorz,Eagles’ Castle,372,2013,Light Bluish Gray,19 +Speedorz,Eagles’ Castle,372,2013,Pearl Dark Gray,1 +Speedorz,Eagles’ Castle,372,2013,Pearl Gold,9 +Speedorz,Eagles’ Castle,372,2013,Red,12 +Speedorz,Eagles’ Castle,372,2013,Reddish Brown,6 +Speedorz,Eagles’ Castle,372,2013,Tan,11 +Speedorz,Eagles’ Castle,372,2013,Trans-Light Blue,2 +Speedorz,Eagles’ Castle,372,2013,Trans-Orange,1 +Speedorz,Eagles’ Castle,372,2013,Trans-Red,1 +Speedorz,Eagles’ Castle,372,2013,White,20 +Speedorz,Eagles’ Castle,372,2013,Yellow,4 +Speedorz,Eagles’ Castle,372,2013,Dark Azure,3 +Speedorz,Eagles’ Castle,372,2013,Bright Light Blue,1 +Speedorz,Eagles’ Castle,372,2013,[No Color],10 +Speedorz,Eagles’ Castle,372,2013,Black,11 +Speedorz,Eagles’ Castle,372,2013,Blue,8 +Speedorz,Eagles’ Castle,372,2013,Bright Green,1 +Speedorz,Ultimate Speedor Tournament,236,2013,Tan,11 +Speedorz,Ultimate Speedor Tournament,236,2013,Reddish Brown,9 +Speedorz,Ultimate Speedor Tournament,236,2013,Red,5 +Speedorz,Ultimate Speedor Tournament,236,2013,Pearl Gold,2 +Speedorz,Ultimate Speedor Tournament,236,2013,Olive Green,3 +Speedorz,Ultimate Speedor Tournament,236,2013,Medium Azure,1 +Speedorz,Ultimate Speedor Tournament,236,2013,Light Bluish Gray,7 +Speedorz,Ultimate Speedor Tournament,236,2013,Green,7 +Speedorz,Ultimate Speedor Tournament,236,2013,Flat Silver,4 +Speedorz,Ultimate Speedor Tournament,236,2013,Dark Tan,4 +Speedorz,Ultimate Speedor Tournament,236,2013,Dark Red,2 +Speedorz,Ultimate Speedor Tournament,236,2013,Dark Green,3 +Speedorz,Ultimate Speedor Tournament,236,2013,Yellow,2 +Speedorz,Ultimate Speedor Tournament,236,2013,White,4 +Speedorz,Ultimate Speedor Tournament,236,2013,Bright Light Orange,8 +Speedorz,Ultimate Speedor Tournament,236,2013,Blue,2 +Speedorz,Ultimate Speedor Tournament,236,2013,[No Color],10 +Speedorz,Ultimate Speedor Tournament,236,2013,Black,11 +Speedorz,Ultimate Speedor Tournament,236,2013,Dark Blue,1 +Speedorz,Ultimate Speedor Tournament,236,2013,Trans-Red,1 +Speedorz,Ultimate Speedor Tournament,236,2013,Trans-Orange,1 +Speedorz,Ultimate Speedor Tournament,236,2013,Trans-Medium Blue,1 +Speedorz,Ultimate Speedor Tournament,236,2013,Trans-Light Blue,4 +Speedorz,Ultimate Speedor Tournament,236,2013,Dark Bluish Gray,9 +Speedorz,Sky Joust,117,2013,Pearl Gold,4 +Speedorz,Sky Joust,117,2013,Light Bluish Gray,5 +Speedorz,Sky Joust,117,2013,Green,2 +Speedorz,Sky Joust,117,2013,Flat Silver,1 +Speedorz,Sky Joust,117,2013,Dark Red,2 +Speedorz,Sky Joust,117,2013,Dark Green,1 +Speedorz,Sky Joust,117,2013,Dark Bluish Gray,7 +Speedorz,Sky Joust,117,2013,Dark Azure,1 +Speedorz,Sky Joust,117,2013,Blue,2 +Speedorz,Sky Joust,117,2013,Black,8 +Speedorz,Sky Joust,117,2013,[No Color],10 +Speedorz,Sky Joust,117,2013,Trans-Light Blue,4 +Speedorz,Sky Joust,117,2013,Bright Light Blue,2 +Speedorz,Sky Joust,117,2013,Trans-Red,1 +Speedorz,Sky Joust,117,2013,Tan,2 +Speedorz,Sky Joust,117,2013,Reddish Brown,2 +Speedorz,Sky Joust,117,2013,Red,4 +Speedorz,Sky Joust,117,2013,White,9 +Speedorz,CHI Waterfall,106,2013,Reddish Brown,7 +Speedorz,CHI Waterfall,106,2013,Tan,2 +Speedorz,CHI Waterfall,106,2013,Trans-Dark Blue,1 +Speedorz,CHI Waterfall,106,2013,Trans-Light Blue,5 +Speedorz,CHI Waterfall,106,2013,Trans-Neon Orange,1 +Speedorz,CHI Waterfall,106,2013,White,4 +Speedorz,CHI Waterfall,106,2013,Blue,2 +Speedorz,CHI Waterfall,106,2013,Yellow,1 +Speedorz,CHI Waterfall,106,2013,Black,11 +Speedorz,CHI Waterfall,106,2013,[No Color],5 +Speedorz,CHI Waterfall,106,2013,Bright Light Orange,3 +Speedorz,CHI Waterfall,106,2013,Dark Bluish Gray,8 +Speedorz,CHI Waterfall,106,2013,Green,4 +Speedorz,CHI Waterfall,106,2013,Light Bluish Gray,11 +Speedorz,CHI Waterfall,106,2013,Orange,2 +Speedorz,CHI Waterfall,106,2013,Pearl Gold,2 +Speedorz,CHI Waterfall,106,2013,Red,1 +Speedorz,Ice Tower,101,2013,Trans-Medium Blue,2 +Speedorz,Target Practice,101,2013,[No Color],5 +Speedorz,Target Practice,101,2013,Black,8 +Speedorz,Target Practice,101,2013,Blue,3 +Speedorz,Target Practice,101,2013,Bright Light Blue,2 +Speedorz,Target Practice,101,2013,Dark Azure,1 +Speedorz,Target Practice,101,2013,Dark Bluish Gray,8 +Speedorz,Target Practice,101,2013,Flat Silver,2 +Speedorz,Target Practice,101,2013,Green,1 +Speedorz,Target Practice,101,2013,Light Bluish Gray,8 +Speedorz,Target Practice,101,2013,Pearl Gold,2 +Speedorz,Target Practice,101,2013,Red,2 +Speedorz,Target Practice,101,2013,Tan,1 +Speedorz,Target Practice,101,2013,Trans-Light Blue,3 +Speedorz,Target Practice,101,2013,White,6 +Speedorz,Target Practice,101,2013,Yellow,1 +Speedorz,Ice Tower,101,2013,[No Color],5 +Speedorz,Ice Tower,101,2013,Black,5 +Speedorz,Ice Tower,101,2013,Dark Bluish Gray,5 +Speedorz,Ice Tower,101,2013,Flat Silver,1 +Speedorz,Ice Tower,101,2013,Green,2 +Speedorz,Ice Tower,101,2013,Light Bluish Gray,8 +Speedorz,Ice Tower,101,2013,Red,1 +Speedorz,Ice Tower,101,2013,Reddish Brown,1 +Speedorz,Ice Tower,101,2013,Trans-Light Blue,3 +Speedorz,Ice Tower,101,2013,Trans-Orange,1 +Speedorz,Ice Tower,101,2013,Trans-Red,1 +Speedorz,Ice Tower,101,2013,White,10 +Speedorz,Royal Roost,100,2013,[No Color],5 +Speedorz,Croc Chomp,100,2013,Green,4 +Speedorz,Croc Chomp,100,2013,Dark Bluish Gray,6 +Speedorz,Croc Chomp,100,2013,Flat Silver,1 +Speedorz,Croc Chomp,100,2013,Dark Tan,1 +Speedorz,Croc Chomp,100,2013,Dark Red,1 +Speedorz,Croc Chomp,100,2013,Dark Green,1 +Speedorz,Croc Chomp,100,2013,White,2 +Speedorz,Croc Chomp,100,2013,Dark Brown,3 +Speedorz,Croc Chomp,100,2013,Trans-Red,2 +Speedorz,Croc Chomp,100,2013,Trans-Light Blue,2 +Speedorz,Croc Chomp,100,2013,Trans-Bright Green,1 +Speedorz,Croc Chomp,100,2013,Black,3 +Speedorz,Croc Chomp,100,2013,Blue,1 +Speedorz,Royal Roost,100,2013,Black,2 +Speedorz,Royal Roost,100,2013,Bright Light Orange,2 +Speedorz,Royal Roost,100,2013,Dark Blue,1 +Speedorz,Royal Roost,100,2013,Dark Bluish Gray,4 +Speedorz,Royal Roost,100,2013,Dark Brown,1 +Speedorz,Royal Roost,100,2013,Green,2 +Speedorz,Royal Roost,100,2013,Light Bluish Gray,8 +Speedorz,Royal Roost,100,2013,Medium Dark Flesh,1 +Speedorz,Royal Roost,100,2013,Pearl Gold,4 +Speedorz,Royal Roost,100,2013,Reddish Brown,4 +Speedorz,Royal Roost,100,2013,Tan,6 +Speedorz,Royal Roost,100,2013,Trans-Light Blue,4 +Speedorz,Royal Roost,100,2013,Trans-Medium Blue,1 +Speedorz,Royal Roost,100,2013,White,4 +Speedorz,Royal Roost,100,2013,Yellow,1 +Speedorz,Croc Chomp,100,2013,Tan,1 +Speedorz,Croc Chomp,100,2013,Reddish Brown,2 +Speedorz,Croc Chomp,100,2013,Red,3 +Speedorz,Croc Chomp,100,2013,Pearl Dark Gray,1 +Speedorz,Croc Chomp,100,2013,Olive Green,5 +Speedorz,Croc Chomp,100,2013,Lime,1 +Speedorz,Croc Chomp,100,2013,Light Bluish Gray,5 +Speedorz,Skunk Attack,97,2013,Black,13 +Speedorz,Skunk Attack,97,2013,Blue,3 +Speedorz,Skunk Attack,97,2013,Dark Bluish Gray,8 +Speedorz,Skunk Attack,97,2013,Dark Brown,1 +Speedorz,Skunk Attack,97,2013,Dark Green,1 +Speedorz,Skunk Attack,97,2013,Green,1 +Speedorz,Skunk Attack,97,2013,Light Bluish Gray,10 +Speedorz,Skunk Attack,97,2013,Red,6 +Speedorz,Skunk Attack,97,2013,Reddish Brown,2 +Speedorz,Skunk Attack,97,2013,Trans-Light Blue,2 +Speedorz,Skunk Attack,97,2013,Trans-Medium Blue,1 +Speedorz,Skunk Attack,97,2013,Trans-Red,1 +Speedorz,Skunk Attack,97,2013,White,7 +Speedorz,Skunk Attack,97,2013,Lime,2 +Speedorz,Skunk Attack,97,2013,[No Color],5 +Speedorz,Nest Dive,97,2013,[No Color],5 +Speedorz,Nest Dive,97,2013,Black,5 +Speedorz,Nest Dive,97,2013,Blue,2 +Speedorz,Nest Dive,97,2013,Bright Light Blue,1 +Speedorz,Nest Dive,97,2013,Dark Azure,1 +Speedorz,Nest Dive,97,2013,Dark Blue,3 +Speedorz,Nest Dive,97,2013,Dark Bluish Gray,5 +Speedorz,Nest Dive,97,2013,Flat Silver,2 +Speedorz,Nest Dive,97,2013,Green,1 +Speedorz,Nest Dive,97,2013,Light Bluish Gray,1 +Speedorz,Nest Dive,97,2013,Lime,1 +Speedorz,Nest Dive,97,2013,Pearl Gold,1 +Speedorz,Nest Dive,97,2013,Red,1 +Speedorz,Nest Dive,97,2013,Reddish Brown,2 +Speedorz,Nest Dive,97,2013,Tan,1 +Speedorz,Nest Dive,97,2013,Trans-Light Blue,3 +Speedorz,Nest Dive,97,2013,White,6 +Speedorz,Boulder Bowling,93,2013,Black,2 +Speedorz,Boulder Bowling,93,2013,Bright Green,1 +Speedorz,Boulder Bowling,93,2013,Dark Bluish Gray,6 +Speedorz,Boulder Bowling,93,2013,Dark Green,3 +Speedorz,Boulder Bowling,93,2013,Dark Red,1 +Speedorz,Boulder Bowling,93,2013,Flat Silver,2 +Speedorz,Boulder Bowling,93,2013,Green,2 +Speedorz,Boulder Bowling,93,2013,Light Bluish Gray,4 +Speedorz,Boulder Bowling,93,2013,Lime,3 +Speedorz,Boulder Bowling,93,2013,Olive Green,2 +Speedorz,Boulder Bowling,93,2013,Pearl Gold,3 +Speedorz,Boulder Bowling,93,2013,Reddish Brown,4 +Speedorz,Boulder Bowling,93,2013,Trans-Light Blue,2 +Speedorz,Boulder Bowling,93,2013,Trans-Medium Blue,1 +Speedorz,Boulder Bowling,93,2013,Trans-Red,2 +Speedorz,Boulder Bowling,93,2013,White,3 +Speedorz,Boulder Bowling,93,2013,[No Color],5 +Speedorz,CHI Battles,92,2013,Tan,1 +Speedorz,CHI Battles,92,2013,Trans-Light Blue,4 +Speedorz,CHI Battles,92,2013,Trans-Medium Blue,1 +Speedorz,CHI Battles,92,2013,Trans-Red,1 +Speedorz,CHI Battles,92,2013,Red,3 +Speedorz,CHI Battles,92,2013,[No Color],10 +Speedorz,CHI Battles,92,2013,Black,4 +Speedorz,CHI Battles,92,2013,Bright Green,1 +Speedorz,CHI Battles,92,2013,Bright Light Orange,1 +Speedorz,CHI Battles,92,2013,Dark Brown,1 +Speedorz,CHI Battles,92,2013,Dark Red,1 +Speedorz,CHI Battles,92,2013,Dark Tan,3 +Speedorz,CHI Battles,92,2013,White,1 +Speedorz,CHI Battles,92,2013,Flat Silver,1 +Speedorz,CHI Battles,92,2013,Yellow,3 +Speedorz,CHI Battles,92,2013,Reddish Brown,4 +Speedorz,CHI Battles,92,2013,Dark Bluish Gray,7 +Speedorz,CHI Battles,92,2013,Green,1 +Speedorz,CHI Battles,92,2013,Light Bluish Gray,4 +Speedorz,CHI Battles,92,2013,Lime,2 +Speedorz,CHI Battles,92,2013,Pearl Gold,2 +Speedorz,Swamp Jump,86,2013,Blue,3 +Speedorz,Tower Target,86,2013,Reddish Brown,5 +Speedorz,Tower Target,86,2013,Trans-Light Blue,4 +Speedorz,Tower Target,86,2013,White,5 +Speedorz,Tower Target,86,2013,Yellow,3 +Speedorz,Tower Target,86,2013,Red,7 +Speedorz,Swamp Jump,86,2013,Black,4 +Speedorz,Swamp Jump,86,2013,Bright Light Orange,1 +Speedorz,Swamp Jump,86,2013,Dark Bluish Gray,2 +Speedorz,Swamp Jump,86,2013,Dark Brown,2 +Speedorz,Swamp Jump,86,2013,Dark Green,2 +Speedorz,Swamp Jump,86,2013,Dark Tan,1 +Speedorz,Swamp Jump,86,2013,Flat Silver,1 +Speedorz,Swamp Jump,86,2013,Green,5 +Speedorz,Swamp Jump,86,2013,Light Bluish Gray,1 +Speedorz,Swamp Jump,86,2013,Lime,2 +Speedorz,Swamp Jump,86,2013,Medium Dark Flesh,2 +Speedorz,Swamp Jump,86,2013,Red,2 +Speedorz,Swamp Jump,86,2013,Reddish Brown,3 +Speedorz,Swamp Jump,86,2013,Tan,2 +Speedorz,Swamp Jump,86,2013,Trans-Dark Blue,2 +Speedorz,Swamp Jump,86,2013,Trans-Light Blue,1 +Speedorz,Swamp Jump,86,2013,Trans-Orange,1 +Speedorz,Swamp Jump,86,2013,White,4 +Speedorz,Tower Target,86,2013,Tan,1 +Speedorz,Tower Target,86,2013,Black,9 +Speedorz,Tower Target,86,2013,Blue,1 +Speedorz,Tower Target,86,2013,Dark Bluish Gray,6 +Speedorz,Tower Target,86,2013,Dark Brown,1 +Speedorz,Tower Target,86,2013,Dark Green,3 +Speedorz,Tower Target,86,2013,Dark Orange,1 +Speedorz,Tower Target,86,2013,Dark Tan,2 +Speedorz,Tower Target,86,2013,Flat Silver,1 +Speedorz,Tower Target,86,2013,Green,5 +Speedorz,Tower Target,86,2013,Light Bluish Gray,1 +Speedorz,Tower Target,86,2013,Orange,1 +Speedorz,Tower Target,86,2013,Pearl Gold,1 +Speedorz,Jungle Gates,81,2013,Trans-Orange,1 +Speedorz,Jungle Gates,81,2013,Flat Silver,2 +Speedorz,Jungle Gates,81,2013,Dark Green,1 +Speedorz,Jungle Gates,81,2013,Dark Bluish Gray,4 +Speedorz,Jungle Gates,81,2013,Black,2 +Speedorz,Jungle Gates,81,2013,White,1 +Speedorz,Jungle Gates,81,2013,Lime,1 +Speedorz,Jungle Gates,81,2013,[No Color],5 +Speedorz,Jungle Gates,81,2013,Trans-Light Blue,2 +Speedorz,Jungle Gates,81,2013,Tan,3 +Speedorz,Jungle Gates,81,2013,Reddish Brown,4 +Speedorz,Jungle Gates,81,2013,Pearl Gold,3 +Speedorz,Jungle Gates,81,2013,Yellow,2 +Speedorz,Jungle Gates,81,2013,Light Bluish Gray,3 +Speedorz,Jungle Gates,81,2013,Green,2 +Speedorz,Ring of Fire,78,2013,Dark Bluish Gray,1 +Speedorz,Ring of Fire,78,2013,Dark Purple,1 +Speedorz,Ring of Fire,78,2013,Dark Red,1 +Speedorz,Ring of Fire,78,2013,Flat Silver,2 +Speedorz,Ring of Fire,78,2013,Yellow,2 +Speedorz,Ring of Fire,78,2013,Black,9 +Speedorz,Ring of Fire,78,2013,[No Color],5 +Speedorz,Ring of Fire,78,2013,Trans-Red,4 +Speedorz,Ring of Fire,78,2013,Trans-Orange,2 +Speedorz,Ring of Fire,78,2013,Trans-Light Blue,2 +Speedorz,Ring of Fire,78,2013,Red,4 +Speedorz,Ring of Fire,78,2013,Orange,1 +Speedorz,Ring of Fire,78,2013,Olive Green,2 +Speedorz,Ring of Fire,78,2013,Light Bluish Gray,3 +Speedorz,Ring of Fire,78,2013,Green,2 +Speedorz,Whirling Vines,77,2013,[No Color],5 +Speedorz,Whirling Vines,77,2013,Black,12 +Speedorz,Whirling Vines,77,2013,Dark Azure,1 +Speedorz,Whirling Vines,77,2013,Dark Bluish Gray,2 +Speedorz,Whirling Vines,77,2013,Dark Green,2 +Speedorz,Whirling Vines,77,2013,Flat Silver,2 +Speedorz,Whirling Vines,77,2013,Green,6 +Speedorz,Whirling Vines,77,2013,Light Bluish Gray,3 +Speedorz,Whirling Vines,77,2013,Lime,2 +Speedorz,Whirling Vines,77,2013,Medium Azure,1 +Speedorz,Whirling Vines,77,2013,Red,1 +Speedorz,Whirling Vines,77,2013,Reddish Brown,3 +Speedorz,Whirling Vines,77,2013,Tan,1 +Speedorz,Whirling Vines,77,2013,Trans-Dark Blue,2 +Speedorz,Whirling Vines,77,2013,Trans-Light Blue,2 +Speedorz,Whirling Vines,77,2013,Yellow,2 +Speedorz,Banana Bash,115,2014,Black,10 +Speedorz,Banana Bash,115,2014,Dark Bluish Gray,3 +Speedorz,Banana Bash,115,2014,Dark Brown,3 +Speedorz,Banana Bash,115,2014,Dark Tan,4 +Speedorz,Banana Bash,115,2014,Flat Silver,2 +Speedorz,Banana Bash,115,2014,Light Bluish Gray,6 +Speedorz,Banana Bash,115,2014,Lime,2 +Speedorz,Banana Bash,115,2014,Pearl Dark Gray,1 +Speedorz,Banana Bash,115,2014,Pearl Gold,1 +Speedorz,Banana Bash,115,2014,Red,3 +Speedorz,Banana Bash,115,2014,Reddish Brown,7 +Speedorz,Banana Bash,115,2014,Trans-Bright Green,1 +Speedorz,Banana Bash,115,2014,Trans-Light Blue,5 +Speedorz,Banana Bash,115,2014,Yellow,5 +Speedorz,Sky Launch,106,2014,Bright Light Blue,1 +Speedorz,Sky Launch,106,2014,Dark Blue,2 +Speedorz,Sky Launch,106,2014,Pearl Gold,6 +Speedorz,Sky Launch,106,2014,Green,1 +Speedorz,Sky Launch,106,2014,Light Bluish Gray,6 +Speedorz,Sky Launch,106,2014,Lime,1 +Speedorz,Sky Launch,106,2014,Trans-Neon Green,2 +Speedorz,Sky Launch,106,2014,Reddish Brown,2 +Speedorz,Sky Launch,106,2014,White,14 +Speedorz,Sky Launch,106,2014,Yellow,1 +Speedorz,Sky Launch,106,2014,Dark Bluish Gray,6 +Speedorz,Sky Launch,106,2014,Blue,2 +Speedorz,Sky Launch,106,2014,Black,3 +Speedorz,Sky Launch,106,2014,Trans-Light Blue,4 +Speedorz,Sky Launch,106,2014,Tan,1 +Speedorz,Fire vs. Ice,92,2014,Dark Azure,2 +Speedorz,Fire vs. Ice,92,2014,Dark Bluish Gray,7 +Speedorz,Fire vs. Ice,92,2014,Dark Red,2 +Speedorz,Fire vs. Ice,92,2014,Light Bluish Gray,5 +Speedorz,Fire vs. Ice,92,2014,Orange,2 +Speedorz,Fire vs. Ice,92,2014,Pearl Gold,3 +Speedorz,Fire vs. Ice,92,2014,Red,3 +Speedorz,Fire vs. Ice,92,2014,Tan,1 +Speedorz,Fire vs. Ice,92,2014,Trans-Light Blue,7 +Speedorz,Fire vs. Ice,92,2014,Trans-Neon Orange,1 +Speedorz,Fire vs. Ice,92,2014,White,11 +Speedorz,Fire vs. Ice,92,2014,Trans-Orange,4 +Speedorz,Fire vs. Ice,92,2014,Black,4 +Speedorz,Fire vs. Ice,92,2014,Blue,1 +Speedorz,Fire vs. Ice,92,2014,Bright Light Orange,2 +Speedorz,Bat Strike,91,2014,Trans-Neon Green,1 +Speedorz,Bat Strike,91,2014,Trans-Light Blue,3 +Speedorz,Bat Strike,91,2014,Sand Blue,4 +Speedorz,Bat Strike,91,2014,Red,1 +Speedorz,Bat Strike,91,2014,Pearl Dark Gray,1 +Speedorz,Bat Strike,91,2014,Flat Silver,1 +Speedorz,Bat Strike,91,2014,Dark Red,6 +Speedorz,Bat Strike,91,2014,Dark Purple,1 +Speedorz,Bat Strike,91,2014,Dark Bluish Gray,8 +Speedorz,Bat Strike,91,2014,Black,15 +Speedorz,Bat Strike,91,2014,Reddish Brown,1 +Speedorz,Bat Strike,91,2014,White,1 +Speedorz,Stinger Duel,75,2014,Trans-Clear,1 +Speedorz,Stinger Duel,75,2014,Reddish Brown,2 +Speedorz,Stinger Duel,75,2014,Red,5 +Speedorz,Stinger Duel,75,2014,Pearl Gold,1 +Speedorz,Stinger Duel,75,2014,Flat Silver,2 +Speedorz,Stinger Duel,75,2014,Dark Tan,1 +Speedorz,Stinger Duel,75,2014,Dark Brown,1 +Speedorz,Stinger Duel,75,2014,Dark Bluish Gray,6 +Speedorz,Stinger Duel,75,2014,Dark Azure,1 +Speedorz,Stinger Duel,75,2014,Black,16 +Speedorz,Stinger Duel,75,2014,Trans-Light Blue,3 +Speedorz,Stinger Duel,75,2014,Trans-Dark Blue,1 +Speedorz,Stinger Duel,75,2014,Trans-Neon Green,2 +Speedorz,Stinger Duel,75,2014,White,1 +Speedorz,Frozen Spikes,72,2014,Blue,1 +Speedorz,Frozen Spikes,72,2014,Dark Azure,2 +Speedorz,Frozen Spikes,72,2014,Flat Silver,3 +Speedorz,Frozen Spikes,72,2014,Light Bluish Gray,6 +Speedorz,Frozen Spikes,72,2014,Red,1 +Speedorz,Frozen Spikes,72,2014,Trans-Light Blue,8 +Speedorz,Frozen Spikes,72,2014,White,13 +Speedorz,Scorching Blades,72,2014,Black,8 +Speedorz,Frozen Spikes,72,2014,Dark Bluish Gray,2 +Speedorz,Scorching Blades,72,2014,Dark Red,1 +Speedorz,Scorching Blades,72,2014,Flat Silver,1 +Speedorz,Scorching Blades,72,2014,Light Bluish Gray,4 +Speedorz,Scorching Blades,72,2014,Orange,2 +Speedorz,Scorching Blades,72,2014,Red,11 +Speedorz,Scorching Blades,72,2014,Trans-Light Blue,1 +Speedorz,Scorching Blades,72,2014,Trans-Neon Orange,1 +Speedorz,Scorching Blades,72,2014,Trans-Orange,5 +Speedorz,Scorching Blades,72,2014,Blue,1 +Speedorz,Scorching Blades,72,2014,Dark Bluish Gray,5 +Speedorz,Frozen Spikes,72,2014,Black,2 +Speedorz,Inferno Pit,69,2014,Trans-Neon Orange,2 +Speedorz,Inferno Pit,69,2014,Trans-Light Blue,1 +Speedorz,Inferno Pit,69,2014,Red,8 +Speedorz,Inferno Pit,69,2014,Pearl Gold,5 +Speedorz,Inferno Pit,69,2014,Orange,3 +Speedorz,Inferno Pit,69,2014,Flat Silver,1 +Speedorz,Flaming Claws,69,2014,Black,4 +Speedorz,Inferno Pit,69,2014,Dark Red,4 +Speedorz,Inferno Pit,69,2014,Dark Bluish Gray,1 +Speedorz,Inferno Pit,69,2014,Black,5 +Speedorz,Flaming Claws,69,2014,White,3 +Speedorz,Flaming Claws,69,2014,Trans-Orange,4 +Speedorz,Flaming Claws,69,2014,Trans-Neon Orange,1 +Speedorz,Flaming Claws,69,2014,Trans-Light Blue,1 +Speedorz,Flaming Claws,69,2014,Red,6 +Speedorz,Flaming Claws,69,2014,Pearl Gold,1 +Speedorz,Flaming Claws,69,2014,Pearl Dark Gray,1 +Speedorz,Flaming Claws,69,2014,Orange,2 +Speedorz,Flaming Claws,69,2014,Olive Green,3 +Speedorz,Flaming Claws,69,2014,Light Bluish Gray,1 +Speedorz,Flaming Claws,69,2014,Flat Silver,2 +Speedorz,Flaming Claws,69,2014,Dark Tan,1 +Speedorz,Flaming Claws,69,2014,Dark Red,1 +Speedorz,Flaming Claws,69,2014,Dark Green,2 +Speedorz,Flaming Claws,69,2014,Dark Bluish Gray,2 +Speedorz,Inferno Pit,69,2014,White,1 +Speedorz,Inferno Pit,69,2014,Trans-Orange,5 +Spider-Man,Spider-Man Action Studio,249,2002,Trans-Neon Orange,1 +Spider-Man,Spider-Man Action Studio,249,2002,Trans-Red,1 +Spider-Man,Spider-Man Action Studio,249,2002,Trans-Yellow,1 +Spider-Man,Spider-Man Action Studio,249,2002,White,16 +Spider-Man,Spider-Man Action Studio,249,2002,Trans-Clear,2 +Spider-Man,Spider-Man Action Studio,249,2002,Yellow,6 +Spider-Man,Spider-Man Action Studio,249,2002,[No Color],2 +Spider-Man,Spider-Man Action Studio,249,2002,Black,23 +Spider-Man,Spider-Man Action Studio,249,2002,Blue,4 +Spider-Man,Spider-Man Action Studio,249,2002,Brown,2 +Spider-Man,Spider-Man Action Studio,249,2002,Dark Gray,13 +Spider-Man,Spider-Man Action Studio,249,2002,Green,1 +Spider-Man,Spider-Man Action Studio,249,2002,Light Gray,18 +Spider-Man,Spider-Man Action Studio,249,2002,Red,3 +Spider-Man,Spider-Man Action Studio,249,2002,Tan,8 +Spider-Man,Spider-Man Action Studio,249,2002,Trans-Dark Blue,1 +Spider-Man,Spider-Man Action Studio,249,2002,Trans-Neon Green,2 +Spider-Man,Green Goblin,59,2002,Black,13 +Spider-Man,Green Goblin,59,2002,Bright Green,5 +Spider-Man,Green Goblin,59,2002,Chrome Silver,1 +Spider-Man,Green Goblin,59,2002,Dark Gray,1 +Spider-Man,Green Goblin,59,2002,Tan,4 +Spider-Man,Green Goblin,59,2002,Trans-Clear,1 +Spider-Man,Green Goblin,59,2002,Trans-Dark Blue,1 +Spider-Man,Green Goblin,59,2002,Trans-Neon Green,1 +Spider-Man,Green Goblin,59,2002,Trans-Neon Orange,2 +Spider-Man,Green Goblin,59,2002,Yellow,1 +Spider-Man,Green Goblin,59,2002,Dark Red,2 +Spider-Man,Green Goblin,59,2002,Light Gray,4 +Spider-Man,Green Goblin,59,2002,Orange,1 +Spider-Man,Green Goblin,59,2002,Pearl Light Gray,3 +Spider-Man,Spider-Man Action Pack,25,2002,Dark Gray,4 +Spider-Man,Spider-Man Action Pack,25,2002,Light Gray,3 +Spider-Man,Spider-Man Action Pack,25,2002,Royal Blue,1 +Spider-Man,Spider-Man Action Pack,25,2002,Yellow,2 +Spider-Man,Spider-Man Action Pack,25,2002,Tan,4 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Black,4 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Blue,6 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Dark Bluish Gray,1 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Dark Tan,1 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Flat Silver,2 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Green,8 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Light Bluish Gray,6 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Lime,3 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Olive Green,1 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Red,5 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Trans-Black,1 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Trans-Clear,2 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Trans-Red,1 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Trans-Yellow,1 +Spider-Man,Mighty Micros: Spider-Man vs. Scorpion ,79,2017,Yellow,5 +Spider-Man 2,Doc Ock's Cafe Attack,132,2004,[No Color],3 +Spider-Man 2,Doc Ock's Cafe Attack,132,2004,Black,13 +Spider-Man 2,Doc Ock's Cafe Attack,132,2004,Blue,4 +Spider-Man 2,Doc Ock's Cafe Attack,132,2004,Dark Bluish Gray,4 +Spider-Man 2,Doc Ock's Cafe Attack,132,2004,Light Bluish Gray,9 +Spider-Man 2,Doc Ock's Cafe Attack,132,2004,Red,11 +Spider-Man 2,Doc Ock's Cafe Attack,132,2004,Trans-Black,4 +Spider-Man 2,Doc Ock's Cafe Attack,132,2004,Trans-Light Blue,1 +Spider-Man 2,Doc Ock's Cafe Attack,132,2004,White,7 +Spider-Man 2,Doc Ock's Cafe Attack,132,2004,Yellow,10 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,[No Color],3 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,Black,8 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,Dark Blue,2 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,Dark Bluish Gray,5 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,Light Bluish Gray,4 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,Red,4 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,Sand Green,1 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,Trans-Dark Blue,1 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,Trans-Medium Blue,1 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,Trans-Red,2 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,White,7 +Spider-Man 2,Doc Ock's Crime Spree,57,2004,Yellow,2 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Black,27 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Blue,25 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Bright Light Orange,1 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Dark Bluish Gray,9 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Green,3 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Light Bluish Gray,33 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Light Flesh,3 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Lime,1 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Orange,24 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Red,17 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Reddish Brown,7 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Sand Green,2 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Tan,17 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Trans-Clear,3 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Trans-Dark Pink,1 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,White,18 +SpongeBob SquarePants,Adventures in Bikini Bottom,576,2006,Yellow,3 +SpongeBob SquarePants,Build-A-Bob,445,2006,[No Color],1 +SpongeBob SquarePants,Build-A-Bob,445,2006,Black,24 +SpongeBob SquarePants,Build-A-Bob,445,2006,Blue,3 +SpongeBob SquarePants,Build-A-Bob,445,2006,Dark Bluish Gray,11 +SpongeBob SquarePants,Build-A-Bob,445,2006,Light Bluish Gray,8 +SpongeBob SquarePants,Build-A-Bob,445,2006,Red,10 +SpongeBob SquarePants,Build-A-Bob,445,2006,Reddish Brown,6 +SpongeBob SquarePants,Build-A-Bob,445,2006,Sand Green,2 +SpongeBob SquarePants,Build-A-Bob,445,2006,Tan,2 +SpongeBob SquarePants,Build-A-Bob,445,2006,Trans-Clear,1 +SpongeBob SquarePants,Build-A-Bob,445,2006,Trans-Dark Blue,1 +SpongeBob SquarePants,Build-A-Bob,445,2006,Trans-Yellow,1 +SpongeBob SquarePants,Build-A-Bob,445,2006,White,18 +SpongeBob SquarePants,Build-A-Bob,445,2006,Yellow,31 +SpongeBob SquarePants,Krusty Krab,297,2006,[No Color],1 +SpongeBob SquarePants,Krusty Krab,297,2006,Black,15 +SpongeBob SquarePants,Krusty Krab,297,2006,Blue,12 +SpongeBob SquarePants,Krusty Krab,297,2006,Bright Light Orange,1 +SpongeBob SquarePants,Krusty Krab,297,2006,Chrome Gold,4 +SpongeBob SquarePants,Krusty Krab,297,2006,Dark Bluish Gray,13 +SpongeBob SquarePants,Krusty Krab,297,2006,Green,7 +SpongeBob SquarePants,Krusty Krab,297,2006,Light Bluish Gray,12 +SpongeBob SquarePants,Krusty Krab,297,2006,Lime,1 +SpongeBob SquarePants,Krusty Krab,297,2006,Medium Blue,2 +SpongeBob SquarePants,Krusty Krab,297,2006,Red,9 +SpongeBob SquarePants,Krusty Krab,297,2006,Reddish Brown,25 +SpongeBob SquarePants,Krusty Krab,297,2006,Sand Green,3 +SpongeBob SquarePants,Krusty Krab,297,2006,Tan,10 +SpongeBob SquarePants,Krusty Krab,297,2006,Trans-Green,1 +SpongeBob SquarePants,Krusty Krab,297,2006,White,17 +SpongeBob SquarePants,Krusty Krab,297,2006,Yellow,5 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Black,18 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Blue,21 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Bright Green,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Bright Light Orange,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Bright Pink,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Dark Blue,2 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Dark Bluish Gray,10 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Dark Brown,2 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Dark Green,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Flat Silver,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Green,3 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Light Bluish Gray,22 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Light Flesh,3 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Lime,3 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Medium Blue,3 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Orange,20 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Pearl Gold,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Red,18 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Reddish Brown,11 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Sand Green,2 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Tan,10 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Trans-Black,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Trans-Clear,4 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Trans-Light Blue,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Trans-Neon Green,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Trans-Neon Orange,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Trans-Red,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Trans-Yellow,1 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,White,11 +SpongeBob SquarePants,Bikini Bottom Undersea Party,469,2012,Yellow,6 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Black,19 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Blue,1 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Bright Green,2 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Dark Bluish Gray,13 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Dark Brown,3 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Dark Green,1 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Dark Tan,1 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Green,12 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Light Bluish Gray,13 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Light Flesh,2 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Pearl Dark Gray,1 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Pearl Gold,1 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Red,1 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Reddish Brown,15 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Sand Green,1 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Tan,5 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Trans-Light Blue,1 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Trans-Neon Green,1 +SpongeBob SquarePants,The Flying Dutchman,242,2012,White,3 +SpongeBob SquarePants,The Flying Dutchman,242,2012,Yellow,3 +Sports,Winning Team,110,2000,Red,1 +Sports,Winning Team,110,2000,Light Gray,7 +Sports,Winning Team,110,2000,Green,1 +Sports,Winning Team,110,2000,Dark Pink,2 +Sports,Winning Team,110,2000,Blue,1 +Sports,Winning Team,110,2000,Black,8 +Sports,Winning Team,110,2000,Trans-Clear,2 +Sports,Winning Team,110,2000,Yellow,5 +Sports,Winning Team,110,2000,Trans-Light Blue,1 +Sports,Winning Team,110,2000,Trans-Neon Green,1 +Sports,Winning Team,110,2000,Trans-Red,1 +Sports,Winning Team,110,2000,White,17 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Light Gray,1 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Black,5 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Red,1 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Trans-Clear,1 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,White,13 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Yellow,4 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Blue,5 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Brown,1 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Dark Gray,3 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Dark Pink,2 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Green,2 +Sports,Service Team - 2 Bikers with Service Tools,76,2000,Medium Blue,1 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,Trans-Light Blue,1 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,Trans-Neon Green,1 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,Trans-Red,1 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,White,2 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,Yellow,3 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,[No Color],1 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,Black,9 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,Dark Pink,1 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,Light Gray,1 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,Pink,1 +Sports,Telekom Race Cyclist and Television Motorbike,30,2000,Trans-Clear,2 +Sports,Biker with Bicycle,7,2000,Yellow,1 +Sports,Biker with Bicycle,7,2000,White,1 +Sports,Biker with Bicycle,7,2000,Trans-Clear,1 +Sports,Biker with Bicycle,7,2000,Dark Pink,1 +Sports,Biker with Bicycle,7,2000,Black,2 +Sports,Biker with Bicycle,7,2000,[No Color],1 +Spybiotics,Gigamesh G60,286,2002,Black,35 +Spybiotics,Gigamesh G60,286,2002,Blue,1 +Spybiotics,Gigamesh G60,286,2002,Dark Gray,3 +Spybiotics,Gigamesh G60,286,2002,Flat Silver,3 +Spybiotics,Gigamesh G60,286,2002,Light Gray,3 +Spybiotics,Gigamesh G60,286,2002,Pearl Light Gray,8 +Spybiotics,Gigamesh G60,286,2002,Royal Blue,1 +Spybiotics,Gigamesh G60,286,2002,Trans-Clear,2 +Spybiotics,Gigamesh G60,286,2002,Trans-Dark Blue,3 +Spybiotics,Technojaw T55,262,2002,Black,36 +Spybiotics,Technojaw T55,262,2002,[No Color],1 +Spybiotics,Technojaw T55,262,2002,Dark Gray,3 +Spybiotics,Technojaw T55,262,2002,Flat Silver,3 +Spybiotics,Technojaw T55,262,2002,Light Gray,7 +Spybiotics,Technojaw T55,262,2002,Pearl Light Gray,10 +Spybiotics,Technojaw T55,262,2002,Trans-Clear,2 +Spybiotics,Technojaw T55,262,2002,Trans-Green,3 +Spybiotics,Shadowstrike S70,236,2002,[No Color],1 +Spybiotics,Shadowstrike S70,236,2002,Dark Gray,2 +Spybiotics,Shadowstrike S70,236,2002,Flat Silver,2 +Spybiotics,Shadowstrike S70,236,2002,Light Gray,8 +Spybiotics,Shadowstrike S70,236,2002,Pearl Light Gray,8 +Spybiotics,Shadowstrike S70,236,2002,Trans-Clear,2 +Spybiotics,Shadowstrike S70,236,2002,Trans-Purple,3 +Spybiotics,Shadowstrike S70,236,2002,Black,33 +Spybiotics,Snaptrax S45,203,2002,Trans-Clear,2 +Spybiotics,Snaptrax S45,203,2002,Trans-Red,2 +Spybiotics,Snaptrax S45,203,2002,Flat Silver,1 +Spybiotics,Snaptrax S45,203,2002,Black,35 +Spybiotics,Snaptrax S45,203,2002,Dark Gray,2 +Spybiotics,Snaptrax S45,203,2002,Light Gray,5 +Spybiotics,Snaptrax S45,203,2002,Pearl Light Gray,6 +Spybiotics,Snaptrax S45,203,2002,Royal Blue,1 +Spyrius,Robo-Guardian,366,1994,Light Gray,4 +Spyrius,Robo-Guardian,366,1994,Blue,1 +Spyrius,Robo-Guardian,366,1994,Red,33 +Spyrius,Robo-Guardian,366,1994,Trans-Clear,1 +Spyrius,Robo-Guardian,366,1994,Trans-Neon Green,4 +Spyrius,Robo-Guardian,366,1994,Trans-Red,2 +Spyrius,Robo-Guardian,366,1994,Yellow,2 +Spyrius,Robo-Guardian,366,1994,[No Color],1 +Spyrius,Robo-Guardian,366,1994,Black,69 +Spyrius,Robo-Guardian,366,1994,Dark Gray,4 +Spyrius,Lunar Launch Site,287,1994,Black,78 +Spyrius,Lunar Launch Site,287,1994,Blue,1 +Spyrius,Lunar Launch Site,287,1994,Dark Gray,2 +Spyrius,Lunar Launch Site,287,1994,Light Gray,2 +Spyrius,Lunar Launch Site,287,1994,Red,29 +Spyrius,Lunar Launch Site,287,1994,Trans-Clear,1 +Spyrius,Lunar Launch Site,287,1994,Trans-Dark Blue,6 +Spyrius,Lunar Launch Site,287,1994,Trans-Neon Green,3 +Spyrius,Lunar Launch Site,287,1994,Yellow,2 +Spyrius,Saucer Centurion,222,1994,Black,47 +Spyrius,Saucer Centurion,222,1994,Blue,1 +Spyrius,Saucer Centurion,222,1994,Light Gray,2 +Spyrius,Saucer Centurion,222,1994,Red,20 +Spyrius,Saucer Centurion,222,1994,Trans-Clear,1 +Spyrius,Saucer Centurion,222,1994,Trans-Dark Blue,5 +Spyrius,Saucer Centurion,222,1994,Trans-Neon Green,2 +Spyrius,Saucer Centurion,222,1994,Yellow,1 +Spyrius,Recon Robot,136,1994,Black,39 +Spyrius,Recon Robot,136,1994,Light Gray,1 +Spyrius,Recon Robot,136,1994,Red,11 +Spyrius,Recon Robot,136,1994,Trans-Neon Green,2 +Spyrius,Recon Robot,136,1994,Trans-Red,1 +Spyrius,Recon Robot,136,1994,Yellow,1 +Spyrius,Recon Robot,136,1994,Blue,1 +Spyrius,Saucer Scout,47,1994,Black,11 +Spyrius,Saucer Scout,47,1994,Blue,1 +Spyrius,Saucer Scout,47,1994,Light Gray,4 +Spyrius,Saucer Scout,47,1994,Red,3 +Spyrius,Saucer Scout,47,1994,Trans-Dark Blue,2 +Spyrius,Saucer Scout,47,1994,Trans-Neon Green,1 +Spyrius,Saucer Scout,47,1994,Yellow,1 +Spyrius,Space Jet,23,1999,Black,10 +Spyrius,Space Jet,23,1999,Blue,1 +Spyrius,Space Jet,23,1999,Red,3 +Spyrius,Space Jet,23,1999,Trans-Neon Green,2 +Spyrius,Space Jet,23,1999,Trans-Red,1 +Spyrius,Space Jet,23,1999,Yellow,1 +Star Wars,Droid Developer Kit,658,1999,Black,16 +Star Wars,Droid Developer Kit,658,1999,Blue,9 +Star Wars,Droid Developer Kit,658,1999,Dark Gray,4 +Star Wars,Droid Developer Kit,658,1999,Dark Turquoise,1 +Star Wars,Droid Developer Kit,658,1999,Light Gray,42 +Star Wars,Droid Developer Kit,658,1999,Metallic Silver,2 +Star Wars,Droid Developer Kit,658,1999,Royal Blue,1 +Star Wars,Droid Developer Kit,658,1999,Trans-Red,1 +Star Wars,Droid Developer Kit,658,1999,White,51 +Star Wars,Dark Side Developers Kit,578,2000,Dark Gray,23 +Star Wars,Dark Side Developers Kit,578,2000,Trans-Dark Blue,1 +Star Wars,Dark Side Developers Kit,578,2000,Trans-Light Blue,1 +Star Wars,Dark Side Developers Kit,578,2000,Trans-Neon Green,1 +Star Wars,Dark Side Developers Kit,578,2000,Trans-Red,3 +Star Wars,Dark Side Developers Kit,578,2000,Trans-Yellow,1 +Star Wars,Dark Side Developers Kit,578,2000,Black,39 +Star Wars,Dark Side Developers Kit,578,2000,Trans-Neon Orange,1 +Star Wars,Dark Side Developers Kit,578,2000,Flat Silver,1 +Star Wars,Dark Side Developers Kit,578,2000,Light Gray,34 +Star Wars,Dark Side Developers Kit,578,2000,Red,3 +Star Wars,Destroyer Droid™ / Star Wars Destroyer Droid,567,2000,Brown,22 +Star Wars,Destroyer Droid™ / Star Wars Destroyer Droid,567,2000,Black,20 +Star Wars,Destroyer Droid™ / Star Wars Destroyer Droid,567,2000,Blue,1 +Star Wars,Destroyer Droid™ / Star Wars Destroyer Droid,567,2000,Dark Gray,31 +Star Wars,Destroyer Droid™ / Star Wars Destroyer Droid,567,2000,Light Gray,9 +Star Wars,Destroyer Droid™ / Star Wars Destroyer Droid,567,2000,Red,3 +Star Wars,Destroyer Droid™ / Star Wars Destroyer Droid,567,2000,Trans-Red,1 +Star Wars,Battle Droid™ / Star Wars Battle Droid,336,2000,Dark Gray,3 +Star Wars,Battle Droid™ / Star Wars Battle Droid,336,2000,Light Gray,14 +Star Wars,Battle Droid™ / Star Wars Battle Droid,336,2000,Tan,32 +Star Wars,Battle Droid™ / Star Wars Battle Droid,336,2000,Yellow,5 +Star Wars,Battle Droid™ / Star Wars Battle Droid,336,2000,Black,21 +Star Wars,Battle Droid™ / Star Wars Battle Droid,336,2000,Red,2 +Star Wars,Pit Droid™ / Star Wars Pit Droid,223,2000,Black,18 +Star Wars,Pit Droid™ / Star Wars Pit Droid,223,2000,Dark Gray,3 +Star Wars,Pit Droid™ / Star Wars Pit Droid,223,2000,Green,16 +Star Wars,Pit Droid™ / Star Wars Pit Droid,223,2000,Light Gray,7 +Star Wars,Pit Droid™ / Star Wars Pit Droid,223,2000,Tan,14 +Star Wars,R2-D2 8009 / C-3PO 8007 Droid Collectors Set,3,2002,[No Color],3 +Star Wars,Advent Calendar 2011 Star Wars,25,2011,Royal Blue,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 9) - X-wing Fighter,23,2011,Red,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 9) - X-wing Fighter,23,2011,Blue,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 9) - X-wing Fighter,23,2011,Light Bluish Gray,4 +Star Wars,Advent Calendar 2011 Star Wars (Day 9) - X-wing Fighter,23,2011,White,4 +Star Wars,Advent Calendar 2011 Star Wars (Day 9) - X-wing Fighter,23,2011,Trans-Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 18) - Anakin's Y-wing Starfighter,20,2011,Dark Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 18) - Anakin's Y-wing Starfighter,20,2011,Light Bluish Gray,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 18) - Anakin's Y-wing Starfighter,20,2011,Trans-Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 18) - Anakin's Y-wing Starfighter,20,2011,Trans-Orange,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 18) - Anakin's Y-wing Starfighter,20,2011,White,3 +Star Wars,Advent Calendar 2011 Star Wars (Day 18) - Anakin's Y-wing Starfighter,20,2011,Yellow,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 4) - Separatist Spider Droid,20,2011,Dark Bluish Gray,3 +Star Wars,Advent Calendar 2011 Star Wars (Day 4) - Separatist Spider Droid,20,2011,Light Bluish Gray,4 +Star Wars,Advent Calendar 2011 Star Wars (Day 5) - Boba Fett's Slave I,20,2011,Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 5) - Boba Fett's Slave I,20,2011,Dark Bluish Gray,4 +Star Wars,Advent Calendar 2011 Star Wars (Day 5) - Boba Fett's Slave I,20,2011,Dark Red,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 5) - Boba Fett's Slave I,20,2011,Green,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 5) - Boba Fett's Slave I,20,2011,Light Bluish Gray,4 +Star Wars,Advent Calendar 2011 Star Wars (Day 5) - Boba Fett's Slave I,20,2011,Tan,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 5) - Boba Fett's Slave I,20,2011,Trans-Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 1) - Republic Cruiser,19,2011,Dark Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 1) - Republic Cruiser,19,2011,Light Bluish Gray,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 1) - Republic Cruiser,19,2011,Red,6 +Star Wars,Advent Calendar 2011 Star Wars (Day 1) - Republic Cruiser,19,2011,Trans-Clear,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 1) - Republic Cruiser,19,2011,White,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 23) - Christmas Tree,18,2011,Trans-Dark Blue,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 23) - Christmas Tree,18,2011,Reddish Brown,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 23) - Christmas Tree,18,2011,Green,5 +Star Wars,Advent Calendar 2011 Star Wars (Day 23) - Christmas Tree,18,2011,Trans-Neon Green,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 23) - Christmas Tree,18,2011,Trans-Orange,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 23) - Christmas Tree,18,2011,Trans-Red,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 12) - Rebel Snowspeeder,17,2011,White,5 +Star Wars,Advent Calendar 2011 Star Wars (Day 12) - Rebel Snowspeeder,17,2011,Dark Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 12) - Rebel Snowspeeder,17,2011,Light Bluish Gray,4 +Star Wars,Advent Calendar 2011 Star Wars (Day 12) - Rebel Snowspeeder,17,2011,Trans-Black,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 12) - Rebel Snowspeeder,17,2011,Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 15) - Republic Gunship,14,2011,Light Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 15) - Republic Gunship,14,2011,Dark Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 15) - Republic Gunship,14,2011,Lime,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 15) - Republic Gunship,14,2011,Red,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 15) - Republic Gunship,14,2011,Trans-Clear,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 15) - Republic Gunship,14,2011,White,6 +Star Wars,Advent Calendar 2011 Star Wars (Day 21) - Millennium Falcon,13,2011,Light Bluish Gray,4 +Star Wars,Advent Calendar 2011 Star Wars (Day 3) - Mechno-Chair,13,2011,Black,3 +Star Wars,Advent Calendar 2011 Star Wars (Day 21) - Millennium Falcon,13,2011,Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 3) - Mechno-Chair,13,2011,Reddish Brown,3 +Star Wars,Advent Calendar 2011 Star Wars (Day 21) - Millennium Falcon,13,2011,Dark Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 21) - Millennium Falcon,13,2011,Trans-Dark Blue,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 21) - Millennium Falcon,13,2011,Trans-Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 3) - Mechno-Chair,13,2011,Light Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 17) - Weapon Depot,10,2011,Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 17) - Weapon Depot,10,2011,Light Bluish Gray,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 17) - Weapon Depot,10,2011,Dark Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 17) - Weapon Depot,10,2011,Trans-Neon Green,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 17) - Weapon Depot,10,2011,White,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 17) - Weapon Depot,10,2011,Metallic Silver,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 7) - Tool Depot,9,2011,Dark Bluish Gray,3 +Star Wars,Advent Calendar 2011 Star Wars (Day 7) - Tool Depot,9,2011,Light Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 7) - Tool Depot,9,2011,Pearl Light Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 7) - Tool Depot,9,2011,Black,3 +Star Wars,Advent Calendar 2011 Star Wars (Day 22) - A-wing Fighter,9,2011,Dark Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 22) - A-wing Fighter,9,2011,Red,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 22) - A-wing Fighter,9,2011,Trans-Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 22) - A-wing Fighter,9,2011,White,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 10) - Imperial Shuttle,9,2011,Trans-Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 10) - Imperial Shuttle,9,2011,White,4 +Star Wars,Advent Calendar 2011 Star Wars (Day 10) - Imperial Shuttle,9,2011,Trans-Dark Blue,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 14) - Mouse Droid,9,2011,Black,3 +Star Wars,Advent Calendar 2011 Star Wars (Day 14) - Mouse Droid,9,2011,Light Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 20) - TIE Fighter,7,2011,Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 20) - TIE Fighter,7,2011,Light Bluish Gray,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 20) - TIE Fighter,7,2011,Trans-Clear,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 20) - TIE Fighter,7,2011,Trans-Light Blue,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 24) - Santa Yoda,7,2011,Blue,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 24) - Santa Yoda,7,2011,Dark Tan,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 24) - Santa Yoda,7,2011,Red,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 24) - Santa Yoda,7,2011,Reddish Brown,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 24) - Santa Yoda,7,2011,Sand Green,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 24) - Santa Yoda,7,2011,Yellow,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 11) - Battle Droid Pilot,6,2011,Tan,4 +Star Wars,Advent Calendar 2011 Star Wars (Day 11) - Battle Droid Pilot,6,2011,Blue,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 11) - Battle Droid Pilot,6,2011,Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 16) - Clone Pilot,4,2011,White,3 +Star Wars,Advent Calendar 2011 Star Wars (Day 19) - TIE Defender Pilot,4,2011,Black,4 +Star Wars,Advent Calendar 2011 Star Wars (Day 2) - Nute Gunray,4,2011,Light Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 2) - Nute Gunray,4,2011,Dark Red,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 2) - Nute Gunray,4,2011,Dark Bluish Gray,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 16) - Clone Pilot,4,2011,Black,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 13) - R2-Q5,4,2011,Black,3 +Star Wars,Advent Calendar 2011 Star Wars (Day 8) - Zev Senesca,4,2011,Light Flesh,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 8) - Zev Senesca,4,2011,Orange,2 +Star Wars,Advent Calendar 2011 Star Wars (Day 8) - Zev Senesca,4,2011,White,1 +Star Wars,Advent Calendar 2011 Star Wars (Day 6) - Chewbacca,3,2011,Reddish Brown,3 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Black,20 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Blue,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Dark Bluish Gray,25 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Dark Brown,3 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Dark Green,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Dark Orange,2 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Dark Red,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Dark Tan,7 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Flat Silver,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Green,2 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Light Bluish Gray,37 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Light Flesh,2 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Olive Green,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Orange,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Pearl Gold,3 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Red,6 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Reddish Brown,20 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Tan,6 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Trans-Black,4 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Trans-Bright Green,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Trans-Clear,4 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Trans-Dark Blue,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Trans-Green,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Trans-Light Blue,3 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Trans-Neon Orange,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Trans-Red,2 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,Trans-Yellow,1 +Star Wars,LEGO® Star Wars™ Advent Calendar,292,2015,White,18 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Black,21 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Blue,3 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Dark Blue,2 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Dark Bluish Gray,24 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Dark Brown,1 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Dark Green,2 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Dark Orange,1 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Dark Red,5 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Dark Tan,7 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Flat Silver,6 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Green,2 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Light Bluish Gray,22 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Light Flesh,5 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Medium Azure,1 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Medium Dark Flesh,1 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Metallic Silver,1 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Red,3 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Reddish Brown,8 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Sand Green,1 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Tan,10 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Trans-Black,1 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Trans-Bright Green,1 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Trans-Clear,3 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Trans-Light Blue,1 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,Trans-Red,1 +Star Wars,Advent Calendar 2016 Star Wars,282,2016,White,43 +Star Wars,Snowspeeder,1702,2017,Light Flesh,1 +Star Wars,Snowspeeder,1702,2017,Orange,22 +Star Wars,Snowspeeder,1702,2017,Pearl Dark Gray,1 +Star Wars,Snowspeeder,1702,2017,Red,5 +Star Wars,Snowspeeder,1702,2017,Reddish Brown,2 +Star Wars,Snowspeeder,1702,2017,Tan,6 +Star Wars,Snowspeeder,1702,2017,Trans-Clear,7 +Star Wars,Snowspeeder,1702,2017,Trans-Orange,2 +Star Wars,Snowspeeder,1702,2017,White,62 +Star Wars,Snowspeeder,1702,2017,Yellow,6 +Star Wars,Snowspeeder,1702,2017,Black,66 +Star Wars,Snowspeeder,1702,2017,Blue,7 +Star Wars,Snowspeeder,1702,2017,Dark Blue,1 +Star Wars,Snowspeeder,1702,2017,Dark Bluish Gray,71 +Star Wars,Snowspeeder,1702,2017,Dark Red,3 +Star Wars,Snowspeeder,1702,2017,Dark Tan,8 +Star Wars,Snowspeeder,1702,2017,Flat Silver,6 +Star Wars,Snowspeeder,1702,2017,Green,3 +Star Wars,Snowspeeder,1702,2017,Light Bluish Gray,87 +Star Wars,The Arrowhead,773,2017,Orange,1 +Star Wars,The Arrowhead,773,2017,Pearl Dark Gray,2 +Star Wars,The Arrowhead,773,2017,Pearl Gold,3 +Star Wars,The Arrowhead,773,2017,Red,1 +Star Wars,The Arrowhead,773,2017,Reddish Brown,1 +Star Wars,The Arrowhead,773,2017,Sand Blue,1 +Star Wars,The Arrowhead,773,2017,Tan,8 +Star Wars,The Arrowhead,773,2017,Trans-Clear,2 +Star Wars,The Arrowhead,773,2017,Trans-Light Blue,5 +Star Wars,The Arrowhead,773,2017,Trans-Neon Green,1 +Star Wars,The Arrowhead,773,2017,White,4 +Star Wars,The Arrowhead,773,2017,Yellow,5 +Star Wars,The Arrowhead,773,2017,Black,63 +Star Wars,The Arrowhead,773,2017,Blue,2 +Star Wars,The Arrowhead,773,2017,Dark Bluish Gray,60 +Star Wars,The Arrowhead,773,2017,Dark Brown,3 +Star Wars,The Arrowhead,773,2017,Dark Green,1 +Star Wars,The Arrowhead,773,2017,Dark Orange,4 +Star Wars,The Arrowhead,773,2017,Dark Red,12 +Star Wars,The Arrowhead,773,2017,Dark Tan,10 +Star Wars,The Arrowhead,773,2017,Flesh,2 +Star Wars,The Arrowhead,773,2017,Light Bluish Gray,59 +Star Wars,The Arrowhead,773,2017,Light Flesh,1 +Star Wars,The Arrowhead,773,2017,Lime,1 +Star Wars,Tracker I,557,2017,Trans-Clear,2 +Star Wars,Tracker I,557,2017,Pearl Dark Gray,3 +Star Wars,Tracker I,557,2017,Orange,1 +Star Wars,Tracker I,557,2017,Dark Bluish Gray,29 +Star Wars,Tracker I,557,2017,Trans-Black,1 +Star Wars,Tracker I,557,2017,Tan,3 +Star Wars,Tracker I,557,2017,Reddish Brown,1 +Star Wars,Tracker I,557,2017,Red,2 +Star Wars,Tracker I,557,2017,Metallic Silver,1 +Star Wars,Tracker I,557,2017,Lime,3 +Star Wars,Tracker I,557,2017,Light Bluish Gray,15 +Star Wars,Tracker I,557,2017,Flesh,1 +Star Wars,Tracker I,557,2017,Dark Tan,1 +Star Wars,Tracker I,557,2017,Dark Brown,1 +Star Wars,Tracker I,557,2017,Blue,8 +Star Wars,Tracker I,557,2017,Black,43 +Star Wars,Tracker I,557,2017,White,1 +Star Wars,Tracker I,557,2017,Trans-Red,7 +Star Wars,Tracker I,557,2017,Trans-Light Blue,2 +Star Wars,Jakku Quadjumper,455,2017,Light Bluish Gray,47 +Star Wars,Jakku Quadjumper,455,2017,Tan,2 +Star Wars,Jakku Quadjumper,455,2017,Trans-Black,1 +Star Wars,Jakku Quadjumper,455,2017,Trans-Clear,2 +Star Wars,Jakku Quadjumper,455,2017,Trans-Orange,1 +Star Wars,Jakku Quadjumper,455,2017,Trans-Yellow,2 +Star Wars,Jakku Quadjumper,455,2017,White,5 +Star Wars,Jakku Quadjumper,455,2017,Yellow,1 +Star Wars,Jakku Quadjumper,455,2017,Light Flesh,2 +Star Wars,Jakku Quadjumper,455,2017,Medium Dark Flesh,3 +Star Wars,Jakku Quadjumper,455,2017,Orange,1 +Star Wars,Jakku Quadjumper,455,2017,Olive Green,1 +Star Wars,Jakku Quadjumper,455,2017,Dark Bluish Gray,20 +Star Wars,Jakku Quadjumper,455,2017,Black,33 +Star Wars,Jakku Quadjumper,455,2017,Dark Brown,3 +Star Wars,Jakku Quadjumper,455,2017,Dark Orange,8 +Star Wars,Jakku Quadjumper,455,2017,Dark Tan,4 +Star Wars,Jakku Quadjumper,455,2017,Flat Silver,5 +Star Wars,Jakku Quadjumper,455,2017,Red,4 +Star Wars,Jakku Quadjumper,455,2017,Reddish Brown,5 +Star Wars,A-Wing Starfighter,356,2017,Black,28 +Star Wars,A-Wing Starfighter,356,2017,Blue,1 +Star Wars,A-Wing Starfighter,356,2017,Dark Bluish Gray,22 +Star Wars,A-Wing Starfighter,356,2017,Dark Red,17 +Star Wars,A-Wing Starfighter,356,2017,Dark Tan,3 +Star Wars,A-Wing Starfighter,356,2017,Green,1 +Star Wars,A-Wing Starfighter,356,2017,Light Bluish Gray,26 +Star Wars,A-Wing Starfighter,356,2017,Light Flesh,2 +Star Wars,A-Wing Starfighter,356,2017,Medium Dark Flesh,1 +Star Wars,A-Wing Starfighter,356,2017,Red,2 +Star Wars,A-Wing Starfighter,356,2017,Reddish Brown,1 +Star Wars,A-Wing Starfighter,356,2017,Sand Blue,1 +Star Wars,A-Wing Starfighter,356,2017,Tan,1 +Star Wars,A-Wing Starfighter,356,2017,Trans-Black,1 +Star Wars,A-Wing Starfighter,356,2017,Trans-Clear,3 +Star Wars,A-Wing Starfighter,356,2017,Trans-Green,1 +Star Wars,A-Wing Starfighter,356,2017,Trans-Red,2 +Star Wars,A-Wing Starfighter,356,2017,Trans-Yellow,3 +Star Wars,A-Wing Starfighter,356,2017,White,24 +Star Wars,A-Wing Starfighter,356,2017,Yellow,11 +Star Wars,A-Wing Starfighter,356,2017,Orange,1 +Star Wars,Desert Skiff Escape,284,2017,White,2 +Star Wars,Desert Skiff Escape,284,2017,Black,8 +Star Wars,Desert Skiff Escape,284,2017,Dark Bluish Gray,26 +Star Wars,Desert Skiff Escape,284,2017,Dark Brown,4 +Star Wars,Desert Skiff Escape,284,2017,Dark Orange,8 +Star Wars,Desert Skiff Escape,284,2017,Dark Red,1 +Star Wars,Desert Skiff Escape,284,2017,Dark Tan,14 +Star Wars,Desert Skiff Escape,284,2017,Light Bluish Gray,13 +Star Wars,Desert Skiff Escape,284,2017,Light Flesh,2 +Star Wars,Desert Skiff Escape,284,2017,Medium Dark Flesh,1 +Star Wars,Desert Skiff Escape,284,2017,Olive Green,1 +Star Wars,Desert Skiff Escape,284,2017,Pearl Dark Gray,1 +Star Wars,Desert Skiff Escape,284,2017,Reddish Brown,18 +Star Wars,Desert Skiff Escape,284,2017,Sand Green,2 +Star Wars,Desert Skiff Escape,284,2017,Tan,11 +Star Wars,Desert Skiff Escape,284,2017,Trans-Clear,2 +Star Wars,Baze Malbus,147,2017,Black,20 +Star Wars,Baze Malbus,147,2017,Blue,3 +Star Wars,Baze Malbus,147,2017,Dark Bluish Gray,6 +Star Wars,Baze Malbus,147,2017,Dark Brown,4 +Star Wars,Baze Malbus,147,2017,Dark Tan,10 +Star Wars,Baze Malbus,147,2017,Flat Silver,1 +Star Wars,Baze Malbus,147,2017,Light Bluish Gray,4 +Star Wars,Baze Malbus,147,2017,Pearl Dark Gray,3 +Star Wars,Baze Malbus,147,2017,Red,15 +Star Wars,Baze Malbus,147,2017,Reddish Brown,1 +Star Wars,Baze Malbus,147,2017,Tan,2 +Star Wars,Baze Malbus,147,2017,Trans-Red,1 +Star Wars,Baze Malbus,147,2017,Flesh,1 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Black,13 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Bright Light Yellow,2 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Dark Azure,4 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Dark Bluish Gray,18 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Dark Brown,1 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Flat Silver,2 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Light Bluish Gray,16 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Olive Green,1 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Pearl Dark Gray,2 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Red,1 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Reddish Brown,3 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Tan,1 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Trans-Clear,1 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Trans-Dark Blue,1 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,Trans-Red,1 +Star Wars,"Bounty Hunter Speeder Bike"" Battle Pack",125,2017,White,3 +Star Wars,"Stormtrooper"" Commander",99,2017,Red,1 +Star Wars,"Stormtrooper"" Commander",99,2017,Light Bluish Gray,4 +Star Wars,"Stormtrooper"" Commander",99,2017,Flat Silver,1 +Star Wars,"Stormtrooper"" Commander",99,2017,Dark Bluish Gray,3 +Star Wars,"Stormtrooper"" Commander",99,2017,Black,25 +Star Wars,"Stormtrooper"" Commander",99,2017,White,15 +Star Wars,"Stormtrooper"" Commander",99,2017,Blue,2 +Star Wars,"Stormtrooper"" Commander",99,2017,Trans-Red,1 +Star Wars,Y-wing,90,2017,Dark Bluish Gray,8 +Star Wars,Y-wing,90,2017,Black,2 +Star Wars,Y-wing,90,2017,Trans-Black,1 +Star Wars,Y-wing,90,2017,Red,1 +Star Wars,Y-wing,90,2017,Light Flesh,1 +Star Wars,Y-wing,90,2017,Dark Blue,2 +Star Wars,Y-wing,90,2017,Yellow,4 +Star Wars,Y-wing,90,2017,White,9 +Star Wars,Y-wing,90,2017,Trans-Red,1 +Star Wars,Y-wing,90,2017,Trans-Orange,1 +Star Wars,Y-wing,90,2017,Light Bluish Gray,14 +Star Wars,Scarif Stormtrooper,89,2017,Tan,12 +Star Wars,Scarif Stormtrooper,89,2017,Dark Bluish Gray,5 +Star Wars,Scarif Stormtrooper,89,2017,Blue,2 +Star Wars,Scarif Stormtrooper,89,2017,Red,2 +Star Wars,Scarif Stormtrooper,89,2017,Sand Blue,2 +Star Wars,Scarif Stormtrooper,89,2017,Trans-Light Blue,1 +Star Wars,Scarif Stormtrooper,89,2017,Trans-Red,2 +Star Wars,Scarif Stormtrooper,89,2017,Light Bluish Gray,2 +Star Wars,Scarif Stormtrooper,89,2017,Black,19 +Star Wars,Scarif Stormtrooper,89,2017,Pearl Dark Gray,1 +Star Wars,Scarif Stormtrooper,89,2017,Flat Silver,1 +Star Wars,Scarif Stormtrooper,89,2017,Dark Tan,1 +Star Wars,Scarif Stormtrooper,89,2017,Dark Brown,3 +Star Wars,Chirrut Îmwe,87,2017,Blue,2 +Star Wars,Chirrut Îmwe,87,2017,Dark Bluish Gray,4 +Star Wars,Chirrut Îmwe,87,2017,Dark Brown,8 +Star Wars,Chirrut Îmwe,87,2017,Dark Red,1 +Star Wars,Chirrut Îmwe,87,2017,Light Bluish Gray,4 +Star Wars,Chirrut Îmwe,87,2017,Black,24 +Star Wars,Chirrut Îmwe,87,2017,Light Flesh,4 +Star Wars,Chirrut Îmwe,87,2017,White,1 +Star Wars,Chirrut Îmwe,87,2017,Trans-Red,1 +Star Wars,Chirrut Îmwe,87,2017,Red,2 +Star Wars,Chirrut Îmwe,87,2017,Pearl Gold,3 +Star Wars,R2-D2,70,2017,White,17 +Star Wars,R2-D2,70,2017,Red,2 +Star Wars,R2-D2,70,2017,Flat Silver,2 +Star Wars,R2-D2,70,2017,Dark Tan,1 +Star Wars,R2-D2,70,2017,Dark Blue,2 +Star Wars,R2-D2,70,2017,Blue,3 +Star Wars,R2-D2,70,2017,Black,1 +Star Wars,R2-D2,70,2017,Light Bluish Gray,9 +Star Wars,Flash Speeder,43,2017,Black,1 +Star Wars,Flash Speeder,43,2017,Dark Bluish Gray,3 +Star Wars,Flash Speeder,43,2017,Flat Silver,1 +Star Wars,Flash Speeder,43,2017,Green,11 +Star Wars,Flash Speeder,43,2017,Light Bluish Gray,5 +Star Wars,Flash Speeder,43,2017,Trans-Clear,1 +Star Wars,TIE Advanced foil pack,26,2017,Trans-Clear,1 +Star Wars,TIE Advanced foil pack,26,2017,Light Bluish Gray,7 +Star Wars,TIE Advanced foil pack,26,2017,Dark Bluish Gray,5 +Star Wars,TIE Advanced foil pack,26,2017,Black,3 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Dark Brown,2 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Dark Bluish Gray,31 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Dark Blue,2 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Blue,4 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Black,19 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,[No Color],1 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Yellow,3 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,White,60 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Trans-Red,1 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Trans-Neon Green,1 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Trans-Light Blue,2 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Trans-Clear,1 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Trans-Black,4 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Tan,10 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Reddish Brown,8 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Red,16 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Lime,8 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Light Flesh,2 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Light Bluish Gray,47 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Dark Red,12 +Star Wars Clone Wars,Republic Attack Gunship,1033,2008,Dark Orange,2 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Light Flesh,1 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Light Bluish Gray,79 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Dark Orange,2 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Dark Bluish Gray,61 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Blue,8 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Black,41 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Yellow,1 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Red,1 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Orange,3 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Pearl Light Gray,1 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Reddish Brown,3 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Sand Green,3 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Tan,1 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Trans-Light Blue,1 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Trans-Neon Green,3 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,Trans-Red,1 +Star Wars Clone Wars,The Twilight - Limited Edition,887,2008,White,7 +Star Wars Clone Wars,AT-TE Walker,809,2008,Trans-Clear,2 +Star Wars Clone Wars,AT-TE Walker,809,2008,Dark Blue,2 +Star Wars Clone Wars,AT-TE Walker,809,2008,Trans-Neon Green,1 +Star Wars Clone Wars,AT-TE Walker,809,2008,Trans-Yellow,1 +Star Wars Clone Wars,AT-TE Walker,809,2008,White,18 +Star Wars Clone Wars,AT-TE Walker,809,2008,Black,34 +Star Wars Clone Wars,AT-TE Walker,809,2008,Blue,11 +Star Wars Clone Wars,AT-TE Walker,809,2008,Dark Red,6 +Star Wars Clone Wars,AT-TE Walker,809,2008,Light Bluish Gray,66 +Star Wars Clone Wars,AT-TE Walker,809,2008,Trans-Light Blue,1 +Star Wars Clone Wars,AT-TE Walker,809,2008,Light Flesh,3 +Star Wars Clone Wars,AT-TE Walker,809,2008,Orange,2 +Star Wars Clone Wars,AT-TE Walker,809,2008,Red,4 +Star Wars Clone Wars,AT-TE Walker,809,2008,Reddish Brown,1 +Star Wars Clone Wars,AT-TE Walker,809,2008,Sand Green,3 +Star Wars Clone Wars,AT-TE Walker,809,2008,Tan,6 +Star Wars Clone Wars,AT-TE Walker,809,2008,Trans-Black,1 +Star Wars Clone Wars,AT-TE Walker,809,2008,Dark Bluish Gray,46 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,White,63 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Trans-Black,2 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Black,9 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Blue,3 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Dark Bluish Gray,28 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Dark Red,15 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Light Bluish Gray,27 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Light Flesh,1 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Orange,1 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Red,13 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Tan,1 +Star Wars Clone Wars,Republic Fighter Tank,595,2008,Trans-Neon Green,2 +Star Wars Clone Wars,V-19 Torrent,470,2008,Yellow,1 +Star Wars Clone Wars,V-19 Torrent,470,2008,Trans-Dark Blue,2 +Star Wars Clone Wars,V-19 Torrent,470,2008,Trans-Clear,1 +Star Wars Clone Wars,V-19 Torrent,470,2008,Trans-Black,1 +Star Wars Clone Wars,V-19 Torrent,470,2008,Tan,1 +Star Wars Clone Wars,V-19 Torrent,470,2008,Sand Green,2 +Star Wars Clone Wars,V-19 Torrent,470,2008,Red,2 +Star Wars Clone Wars,V-19 Torrent,470,2008,Light Flesh,1 +Star Wars Clone Wars,V-19 Torrent,470,2008,Light Bluish Gray,24 +Star Wars Clone Wars,V-19 Torrent,470,2008,Dark Red,14 +Star Wars Clone Wars,V-19 Torrent,470,2008,Dark Bluish Gray,11 +Star Wars Clone Wars,V-19 Torrent,470,2008,White,56 +Star Wars Clone Wars,V-19 Torrent,470,2008,Blue,5 +Star Wars Clone Wars,V-19 Torrent,470,2008,Black,25 +Star Wars Clone Wars,V-19 Torrent,470,2008,[No Color],1 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,Trans-Red,5 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,Trans-Purple,1 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,Tan,12 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,Red,6 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,Light Bluish Gray,35 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,Dark Red,5 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,Dark Bluish Gray,50 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,[No Color],1 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,Trans-Black,1 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,Blue,3 +Star Wars Clone Wars,Magna Guard Starfighter,430,2008,Black,15 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Tan,5 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Trans-Clear,1 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Trans-Red,3 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Black,9 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Yellow,1 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Blue,1 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Dark Bluish Gray,14 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Pearl Dark Gray,3 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Reddish Brown,14 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Dark Tan,1 +Star Wars Clone Wars,Hailfire Droid & Spider Droid Clone Wars White Box,249,2008,Light Bluish Gray,13 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Dark Bluish Gray,22 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Light Flesh,1 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Pearl Dark Gray,3 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Red,1 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Reddish Brown,1 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Tan,5 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Trans-Red,1 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,White,5 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Yellow,1 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Light Bluish Gray,19 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Black,10 +Star Wars Clone Wars,Separatist Spider Droid,214,2008,Blue,4 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,[No Color],1 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Light Flesh,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Orange,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Light Bluish Gray,17 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Yellow,17 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Red,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Reddish Brown,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Tan,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Black,16 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Trans-Black,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Trans-Dark Blue,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Dark Bluish Gray,18 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,Trans-Light Blue,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter,152,2008,White,4 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,Black,14 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,Trans-Dark Blue,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,Dark Bluish Gray,18 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,Orange,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,Red,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,Tan,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,Trans-Black,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,Light Bluish Gray,17 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,Trans-Light Blue,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,White,1 +Star Wars Clone Wars,Anakin's Jedi Starfighter Clone Wars White Box,144,2008,Yellow,17 +Star Wars Clone Wars,V-19 Torrent - Mini,66,2008,Blue,2 +Star Wars Clone Wars,V-19 Torrent - Mini,66,2008,Dark Bluish Gray,4 +Star Wars Clone Wars,V-19 Torrent - Mini,66,2008,Dark Red,5 +Star Wars Clone Wars,V-19 Torrent - Mini,66,2008,Light Bluish Gray,6 +Star Wars Clone Wars,V-19 Torrent - Mini,66,2008,Tan,1 +Star Wars Clone Wars,V-19 Torrent - Mini,66,2008,Trans-Black,1 +Star Wars Clone Wars,V-19 Torrent - Mini,66,2008,Trans-Dark Blue,1 +Star Wars Clone Wars,V-19 Torrent - Mini,66,2008,White,13 +Star Wars Clone Wars,Clone Wars Pack - San Diego Comic-Con 2008 Exclusive,12,2008,Black,2 +Star Wars Clone Wars,Clone Wars Pack - San Diego Comic-Con 2008 Exclusive,12,2008,Dark Bluish Gray,3 +Star Wars Clone Wars,Z-95 Headhunter,54,2013,Black,5 +Star Wars Clone Wars,Z-95 Headhunter,54,2013,Dark Bluish Gray,1 +Star Wars Clone Wars,Z-95 Headhunter,54,2013,Dark Red,5 +Star Wars Clone Wars,Z-95 Headhunter,54,2013,Flat Silver,1 +Star Wars Clone Wars,Z-95 Headhunter,54,2013,Light Bluish Gray,1 +Star Wars Clone Wars,Z-95 Headhunter,54,2013,Trans-Black,2 +Star Wars Clone Wars,Z-95 Headhunter,54,2013,Trans-Light Blue,1 +Star Wars Clone Wars,Z-95 Headhunter,54,2013,White,15 +Star Wars Clone Wars,Umbaran MHC,49,2013,Dark Bluish Gray,7 +Star Wars Clone Wars,Umbaran MHC,49,2013,Flat Silver,1 +Star Wars Clone Wars,Umbaran MHC,49,2013,Light Bluish Gray,9 +Star Wars Clone Wars,Umbaran MHC,49,2013,Trans-Clear,1 +Star Wars Clone Wars,Umbaran MHC,49,2013,Trans-Light Blue,1 +Star Wars Clone Wars,Umbaran MHC,49,2013,Trans-Orange,1 +Star Wars Clone Wars,Mandalorian Fighter,49,2013,Blue,1 +Star Wars Clone Wars,Mandalorian Fighter,49,2013,Dark Blue,4 +Star Wars Clone Wars,Mandalorian Fighter,49,2013,Light Bluish Gray,3 +Star Wars Clone Wars,Mandalorian Fighter,49,2013,Trans-Dark Blue,1 +Star Wars Clone Wars,Mandalorian Fighter,49,2013,Trans-Yellow,1 +Star Wars Clone Wars,Mandalorian Fighter,49,2013,White,14 +Star Wars Clone Wars,Umbaran MHC,49,2013,Black,2 +Star Wars Clone Wars,Umbaran MHC,49,2013,Blue,3 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,[No Color],1 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Black,18 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Blue,1 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Dark Bluish Gray,24 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Dark Green,13 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Flat Silver,1 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Light Bluish Gray,25 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Metallic Silver,1 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Olive Green,1 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Red,3 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Tan,5 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Trans-Black,3 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Trans-Bright Green,2 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Trans-Green,1 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Trans-Light Blue,1 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,Trans-Red,1 +Star Wars Clone Wars,Yoda's Jedi Starfighter,262,2017,White,2 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Orange,21 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Purple,3 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Red,4 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Tan,16 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Trans-Clear,1 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Trans-Yellow,1 +Star Wars Episode 1,Mos Espa Podrace,913,1999,White,11 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Yellow,7 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Trans-Neon Orange,1 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Black,42 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Blue,16 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Brown,9 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Chrome Silver,1 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Dark Gray,27 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Green,20 +Star Wars Episode 1,Mos Espa Podrace,913,1999,Light Gray,37 +Star Wars Episode 1,Gungan Sub,379,1999,Brown,5 +Star Wars Episode 1,Gungan Sub,379,1999,Yellow,3 +Star Wars Episode 1,Gungan Sub,379,1999,White,4 +Star Wars Episode 1,Gungan Sub,379,1999,Trans-Neon Orange,3 +Star Wars Episode 1,Gungan Sub,379,1999,Trans-Neon Green,3 +Star Wars Episode 1,Gungan Sub,379,1999,Trans-Light Blue,1 +Star Wars Episode 1,Gungan Sub,379,1999,Trans-Clear,1 +Star Wars Episode 1,Gungan Sub,379,1999,Tan,3 +Star Wars Episode 1,Gungan Sub,379,1999,Red,2 +Star Wars Episode 1,Gungan Sub,379,1999,Chrome Silver,1 +Star Wars Episode 1,Gungan Sub,379,1999,Dark Gray,10 +Star Wars Episode 1,Gungan Sub,379,1999,Medium Orange,2 +Star Wars Episode 1,Gungan Sub,379,1999,Green,1 +Star Wars Episode 1,Gungan Sub,379,1999,Light Gray,33 +Star Wars Episode 1,Gungan Sub,379,1999,Black,18 +Star Wars Episode 1,Gungan Sub,379,1999,Blue,35 +Star Wars Episode 1,Sith Infiltrator,244,1999,Trans-Red,1 +Star Wars Episode 1,Sith Infiltrator,244,1999,Blue,11 +Star Wars Episode 1,Sith Infiltrator,244,1999,Black,17 +Star Wars Episode 1,Sith Infiltrator,244,1999,Red,6 +Star Wars Episode 1,Sith Infiltrator,244,1999,Light Gray,21 +Star Wars Episode 1,Sith Infiltrator,244,1999,Tan,2 +Star Wars Episode 1,Sith Infiltrator,244,1999,Dark Gray,18 +Star Wars Episode 1,Sith Infiltrator,244,1999,Chrome Silver,1 +Star Wars Episode 1,Sith Infiltrator,244,1999,Brown,1 +Star Wars Episode 1,Naboo Fighter,179,1999,Trans-Neon Orange,1 +Star Wars Episode 1,Naboo Fighter,179,1999,Trans-Dark Blue,1 +Star Wars Episode 1,Naboo Fighter,179,1999,Trans-Clear,1 +Star Wars Episode 1,Naboo Fighter,179,1999,Trans-Green,1 +Star Wars Episode 1,Naboo Fighter,179,1999,White,3 +Star Wars Episode 1,Naboo Fighter,179,1999,Yellow,23 +Star Wars Episode 1,Naboo Fighter,179,1999,Black,8 +Star Wars Episode 1,Naboo Fighter,179,1999,Blue,1 +Star Wars Episode 1,Naboo Fighter,179,1999,Brown,1 +Star Wars Episode 1,Naboo Fighter,179,1999,Dark Gray,9 +Star Wars Episode 1,Naboo Fighter,179,1999,Light Gray,19 +Star Wars Episode 1,Naboo Fighter,179,1999,Red,2 +Star Wars Episode 1,Naboo Fighter,179,1999,Tan,17 +Star Wars Episode 1,Anakin's Podracer,136,1999,Trans-Yellow,1 +Star Wars Episode 1,Anakin's Podracer,136,1999,Trans-Neon Orange,1 +Star Wars Episode 1,Anakin's Podracer,136,1999,Red,3 +Star Wars Episode 1,Anakin's Podracer,136,1999,Light Gray,12 +Star Wars Episode 1,Anakin's Podracer,136,1999,Black,9 +Star Wars Episode 1,Anakin's Podracer,136,1999,Dark Gray,5 +Star Wars Episode 1,Anakin's Podracer,136,1999,Brown,4 +Star Wars Episode 1,Anakin's Podracer,136,1999,Blue,16 +Star Wars Episode 1,Anakin's Podracer,136,1999,Tan,8 +Star Wars Episode 1,Anakin's Podracer,136,1999,Yellow,6 +Star Wars Episode 1,Anakin's Podracer,136,1999,White,4 +Star Wars Episode 1,Naboo Swamp,82,1999,Green,4 +Star Wars Episode 1,Naboo Swamp,82,1999,Medium Orange,1 +Star Wars Episode 1,Naboo Swamp,82,1999,Tan,8 +Star Wars Episode 1,Naboo Swamp,82,1999,Trans-Clear,2 +Star Wars Episode 1,Naboo Swamp,82,1999,Trans-Neon Green,1 +Star Wars Episode 1,Naboo Swamp,82,1999,Yellow,1 +Star Wars Episode 1,Naboo Swamp,82,1999,Black,1 +Star Wars Episode 1,Naboo Swamp,82,1999,Blue,1 +Star Wars Episode 1,Naboo Swamp,82,1999,Brown,10 +Star Wars Episode 1,Naboo Swamp,82,1999,Chrome Silver,1 +Star Wars Episode 1,Naboo Swamp,82,1999,Dark Gray,4 +Star Wars Episode 1,Droid Fighter,62,1999,Black,3 +Star Wars Episode 1,Droid Fighter,62,1999,Brown,8 +Star Wars Episode 1,Droid Fighter,62,1999,Dark Gray,8 +Star Wars Episode 1,Droid Fighter,62,1999,Light Gray,4 +Star Wars Episode 1,Droid Fighter,62,1999,Tan,4 +Star Wars Episode 1,Droid Fighter,62,1999,Trans-Red,1 +Star Wars Episode 1,Lightsaber Duel,52,1999,Yellow,1 +Star Wars Episode 1,Lightsaber Duel,52,1999,Trans-Red,1 +Star Wars Episode 1,Lightsaber Duel,52,1999,Trans-Neon Green,1 +Star Wars Episode 1,Lightsaber Duel,52,1999,Tan,7 +Star Wars Episode 1,Lightsaber Duel,52,1999,Light Gray,2 +Star Wars Episode 1,Lightsaber Duel,52,1999,Dark Gray,8 +Star Wars Episode 1,Lightsaber Duel,52,1999,Chrome Silver,1 +Star Wars Episode 1,Lightsaber Duel,52,1999,Brown,5 +Star Wars Episode 1,Lightsaber Duel,52,1999,Black,5 +Star Wars Episode 1,Naboo Starfighter - UCS,187,2002,[No Color],1 +Star Wars Episode 1,Naboo Starfighter - UCS,187,2002,Black,21 +Star Wars Episode 1,Naboo Starfighter - UCS,187,2002,Blue,1 +Star Wars Episode 1,Naboo Starfighter - UCS,187,2002,Chrome Silver,8 +Star Wars Episode 1,Naboo Starfighter - UCS,187,2002,Dark Gray,12 +Star Wars Episode 1,Naboo Starfighter - UCS,187,2002,Light Gray,13 +Star Wars Episode 1,Naboo Starfighter - UCS,187,2002,Trans-Light Blue,1 +Star Wars Episode 1,Naboo Starfighter - UCS,187,2002,White,1 +Star Wars Episode 1,Naboo Starfighter - UCS,187,2002,Yellow,28 +Star Wars Episode 1,Anakin's Pod Racer,38,2012,Black,1 +Star Wars Episode 1,Anakin's Pod Racer,38,2012,Blue,4 +Star Wars Episode 1,Anakin's Pod Racer,38,2012,Dark Bluish Gray,1 +Star Wars Episode 1,Anakin's Pod Racer,38,2012,Light Bluish Gray,6 +Star Wars Episode 1,Anakin's Pod Racer,38,2012,Red,1 +Star Wars Episode 1,Anakin's Pod Racer,38,2012,Trans-Clear,2 +Star Wars Episode 1,Anakin's Pod Racer,38,2012,Trans-Dark Pink,1 +Star Wars Episode 1,Anakin's Pod Racer,38,2012,Yellow,3 +Star Wars Episode 1,Naboo Starfighter,34,2016,Blue,1 +Star Wars Episode 1,Naboo Starfighter,34,2016,Dark Bluish Gray,2 +Star Wars Episode 1,Naboo Starfighter,34,2016,Light Bluish Gray,9 +Star Wars Episode 1,Naboo Starfighter,34,2016,Pearl Light Gray,1 +Star Wars Episode 1,Naboo Starfighter,34,2016,Trans-Black,1 +Star Wars Episode 1,Naboo Starfighter,34,2016,Yellow,9 +Star Wars Episode 1,TIE Bomber,26,2016,Black,3 +Star Wars Episode 1,TIE Bomber,26,2016,Dark Bluish Gray,1 +Star Wars Episode 1,TIE Bomber,26,2016,Light Bluish Gray,6 +Star Wars Episode 1,TIE Bomber,26,2016,Trans-Clear,2 +Star Wars Episode 1,TIE Bomber,26,2016,Yellow,1 +Star Wars Episode 1,Duel on Naboo,207,2017,Black,25 +Star Wars Episode 1,Duel on Naboo,207,2017,Dark Bluish Gray,13 +Star Wars Episode 1,Duel on Naboo,207,2017,Dark Orange,1 +Star Wars Episode 1,Duel on Naboo,207,2017,Light Bluish Gray,17 +Star Wars Episode 1,Duel on Naboo,207,2017,Light Flesh,2 +Star Wars Episode 1,Duel on Naboo,207,2017,Metallic Silver,1 +Star Wars Episode 1,Duel on Naboo,207,2017,Pearl Dark Gray,1 +Star Wars Episode 1,Duel on Naboo,207,2017,Pearl Gold,1 +Star Wars Episode 1,Duel on Naboo,207,2017,Red,2 +Star Wars Episode 1,Duel on Naboo,207,2017,Reddish Brown,2 +Star Wars Episode 1,Duel on Naboo,207,2017,Tan,4 +Star Wars Episode 1,Duel on Naboo,207,2017,Trans-Bright Green,1 +Star Wars Episode 1,Duel on Naboo,207,2017,Trans-Clear,2 +Star Wars Episode 1,Duel on Naboo,207,2017,Trans-Dark Pink,1 +Star Wars Episode 1,Duel on Naboo,207,2017,Trans-Light Blue,3 +Star Wars Episode 1,Duel on Naboo,207,2017,Trans-Red,2 +Star Wars Episode 1,Duel on Naboo,207,2017,Yellow,2 +Star Wars Episode 2,Republic Gunship,697,2002,Chrome Silver,1 +Star Wars Episode 2,Republic Gunship,697,2002,Dark Red,14 +Star Wars Episode 2,Republic Gunship,697,2002,Medium Orange,3 +Star Wars Episode 2,Republic Gunship,697,2002,Dark Gray,27 +Star Wars Episode 2,Republic Gunship,697,2002,Flat Silver,1 +Star Wars Episode 2,Republic Gunship,697,2002,Brown,5 +Star Wars Episode 2,Republic Gunship,697,2002,Blue,8 +Star Wars Episode 2,Republic Gunship,697,2002,Black,33 +Star Wars Episode 2,Republic Gunship,697,2002,Green,5 +Star Wars Episode 2,Republic Gunship,697,2002,Light Gray,40 +Star Wars Episode 2,Republic Gunship,697,2002,Lime,6 +Star Wars Episode 2,Republic Gunship,697,2002,Yellow,1 +Star Wars Episode 2,Republic Gunship,697,2002,Metal Blue,3 +Star Wars Episode 2,Republic Gunship,697,2002,Red,7 +Star Wars Episode 2,Republic Gunship,697,2002,Tan,8 +Star Wars Episode 2,Republic Gunship,697,2002,Trans-Black,3 +Star Wars Episode 2,Republic Gunship,697,2002,Trans-Clear,1 +Star Wars Episode 2,Republic Gunship,697,2002,Trans-Green,2 +Star Wars Episode 2,Republic Gunship,697,2002,Trans-Light Blue,1 +Star Wars Episode 2,Republic Gunship,697,2002,Trans-Neon Green,1 +Star Wars Episode 2,Republic Gunship,697,2002,Trans-Neon Orange,1 +Star Wars Episode 2,Republic Gunship,697,2002,Trans-Red,2 +Star Wars Episode 2,Republic Gunship,697,2002,White,52 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Light Gray,17 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Medium Blue,2 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Pearl Light Gray,1 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Red,5 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Sand Green,7 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Tan,9 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Trans-Black,2 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Trans-Light Blue,1 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Trans-Neon Orange,2 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Violet,1 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Yellow,8 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Black,27 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Blue,4 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Dark Blue,7 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,Dark Gray,31 +Star Wars Episode 2,Jango Fett's Slave I,360,2002,White,16 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Trans-Light Blue,1 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Trans-Neon Green,1 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Trans-Neon Orange,1 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Trans-Yellow,1 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,White,1 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Yellow,22 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Trans-Red,2 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Black,15 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Blue,2 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Brown,2 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Chrome Silver,2 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Dark Gray,16 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Dark Orange,4 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Earth Orange,1 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Green,11 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Light Gray,19 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Lime,18 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Medium Orange,5 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Red,1 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Sand Purple,2 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Tan,3 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Trans-Black,4 +Star Wars Episode 2,Bounty Hunter Pursuit,254,2002,Trans-Clear,1 +Star Wars Episode 2,Jedi Starfighter,139,2002,Red,4 +Star Wars Episode 2,Jedi Starfighter,139,2002,Tan,2 +Star Wars Episode 2,Jedi Starfighter,139,2002,Trans-Black,1 +Star Wars Episode 2,Jedi Starfighter,139,2002,Trans-Light Blue,1 +Star Wars Episode 2,Jedi Starfighter,139,2002,White,20 +Star Wars Episode 2,Jedi Starfighter,139,2002,Yellow,3 +Star Wars Episode 2,Jedi Starfighter,139,2002,Dark Red,8 +Star Wars Episode 2,Jedi Starfighter,139,2002,Chrome Silver,1 +Star Wars Episode 2,Jedi Starfighter,139,2002,Black,16 +Star Wars Episode 2,Jedi Starfighter,139,2002,Dark Gray,9 +Star Wars Episode 2,Jedi Starfighter,139,2002,Dark Orange,1 +Star Wars Episode 2,Jedi Starfighter,139,2002,Blue,3 +Star Wars Episode 2,Jedi Starfighter,139,2002,Light Gray,12 +Star Wars Episode 2,Jedi Starfighter,139,2002,Lime,4 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Black,8 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Brown,5 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Chrome Silver,1 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Dark Gray,9 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Dark Red,8 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Earth Orange,1 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Light Gray,6 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Tan,12 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Trans-Green,1 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Trans-Light Blue,1 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Trans-Red,1 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,White,2 +Star Wars Episode 2,Tusken Raider Encounter,93,2002,Yellow,1 +Star Wars Episode 2,Jedi Duel,82,2002,Dark Red,3 +Star Wars Episode 2,Jedi Duel,82,2002,Dark Gray,10 +Star Wars Episode 2,Jedi Duel,82,2002,Chrome Silver,2 +Star Wars Episode 2,Jedi Duel,82,2002,Light Gray,8 +Star Wars Episode 2,Jedi Duel,82,2002,Brown,4 +Star Wars Episode 2,Jedi Duel,82,2002,Black,10 +Star Wars Episode 2,Jedi Duel,82,2002,Red,1 +Star Wars Episode 2,Jedi Duel,82,2002,Sand Blue,9 +Star Wars Episode 2,Jedi Duel,82,2002,Sand Green,1 +Star Wars Episode 2,Jedi Duel,82,2002,Tan,4 +Star Wars Episode 2,Jedi Duel,82,2002,Trans-Neon Green,1 +Star Wars Episode 2,Jedi Duel,82,2002,Trans-Red,1 +Star Wars Episode 2,Jedi Duel,82,2002,Yellow,2 +Star Wars Episode 2,Jedi Duel,82,2002,Blue,1 +Star Wars Episode 2,Jedi Duel,82,2002,Sand Red,1 +Star Wars Episode 2,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,202,2009,Trans-Black,1 +Star Wars Episode 2,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,202,2009,White,21 +Star Wars Episode 2,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,202,2009,Trans-Clear,1 +Star Wars Episode 2,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,202,2009,Black,5 +Star Wars Episode 2,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,202,2009,Blue,1 +Star Wars Episode 2,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,202,2009,Dark Blue,7 +Star Wars Episode 2,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,202,2009,Dark Bluish Gray,16 +Star Wars Episode 2,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,202,2009,Dark Red,5 +Star Wars Episode 2,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,202,2009,Light Bluish Gray,26 +Star Wars Episode 2,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,202,2009,Tan,1 +Star Wars Episode 2,AT-TE Walker - Mini,94,2009,Black,4 +Star Wars Episode 2,AT-TE Walker - Mini,94,2009,Dark Bluish Gray,10 +Star Wars Episode 2,AT-TE Walker - Mini,94,2009,Trans-Clear,1 +Star Wars Episode 2,AT-TE Walker - Mini,94,2009,Dark Red,3 +Star Wars Episode 2,AT-TE Walker - Mini,94,2009,Light Bluish Gray,21 +Star Wars Episode 2,Republic Gunship - Mini,94,2009,Black,1 +Star Wars Episode 2,Republic Gunship - Mini,94,2009,Blue,1 +Star Wars Episode 2,Republic Gunship - Mini,94,2009,Dark Bluish Gray,1 +Star Wars Episode 2,Republic Gunship - Mini,94,2009,Dark Red,5 +Star Wars Episode 2,Republic Gunship - Mini,94,2009,Light Bluish Gray,6 +Star Wars Episode 2,Republic Gunship - Mini,94,2009,Lime,1 +Star Wars Episode 2,Republic Gunship - Mini,94,2009,Tan,1 +Star Wars Episode 2,Republic Gunship - Mini,94,2009,Trans-Black,1 +Star Wars Episode 2,Republic Gunship - Mini,94,2009,Trans-Clear,1 +Star Wars Episode 2,Republic Gunship - Mini,94,2009,White,22 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,[No Color],1 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Black,24 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Blue,2 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Dark Bluish Gray,23 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Dark Red,22 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Dark Tan,1 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Light Bluish Gray,17 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Lime,11 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Metallic Silver,1 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Red,3 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Tan,2 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Trans-Black,1 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Trans-Clear,1 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Trans-Dark Blue,1 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Trans-Light Blue,1 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,White,52 +Star Wars Episode 2,Obi-Wan's Jedi Starfighter - UCS,675,2010,Yellow,3 +Star Wars Episode 2,AAT - Mini,46,2011,Dark Bluish Gray,1 +Star Wars Episode 2,AAT - Mini,46,2011,Dark Tan,4 +Star Wars Episode 2,AAT - Mini,46,2011,Light Bluish Gray,4 +Star Wars Episode 2,AAT - Mini,46,2011,Tan,15 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Black,25 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Blue,1 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Dark Bluish Gray,22 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Dark Orange,1 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Dark Red,32 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Dark Tan,1 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Flat Silver,2 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Light Bluish Gray,28 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Light Flesh,3 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Lime,12 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Medium Blue,2 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Metallic Silver,1 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Orange,1 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Pearl Dark Gray,1 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Red,4 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Reddish Brown,3 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Sand Blue,1 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Tan,4 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Trans-Black,1 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Trans-Bright Green,2 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Trans-Clear,1 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Trans-Light Blue,1 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,Trans-Yellow,3 +Star Wars Episode 2,"Jedi Starfighter"" With Hyperdrive",831,2017,White,53 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Yellow,4 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Copper,1 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Dark Bluish Gray,40 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Dark Green,2 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Dark Red,8 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Light Bluish Gray,55 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Orange,1 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Pearl Dark Gray,1 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Pearl Light Gray,3 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Red,1 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Reddish Brown,8 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,White,20 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Sand Green,1 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Tan,14 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Trans-Black,1 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Trans-Dark Blue,1 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Trans-Light Blue,3 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Trans-Neon Orange,4 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Trans-Yellow,1 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Black,38 +Star Wars Episode 3,Clone Turbo Tank [Light-Up Mace Windu],803,2005,Blue,1 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Trans-Neon Orange,2 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Trans-Red,2 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Tan,8 +Star Wars Episode 3,Ultimate Space Battle,540,2005,White,5 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Yellow,11 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Trans-Black,3 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Trans-Light Blue,3 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Sand Blue,7 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Reddish Brown,1 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Red,1 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Light Flesh,2 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Light Bluish Gray,31 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Dark Blue,10 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Dark Red,9 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Dark Orange,2 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Dark Flesh,1 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Dark Bluish Gray,25 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Chrome Silver,1 +Star Wars Episode 3,Ultimate Space Battle,540,2005,Black,24 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Trans-Light Blue,2 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Trans-Neon Orange,1 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,White,47 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Yellow,4 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Black,20 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Trans-Black,3 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Blue,1 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Dark Bluish Gray,16 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Dark Gray,1 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Dark Green,2 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Dark Red,17 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Light Bluish Gray,20 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Lime,1 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Red,2 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Sand Blue,1 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Tan,7 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Trans-Clear,1 +Star Wars Episode 3,ARC-170 Starfighter,401,2005,Trans-Dark Blue,1 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Black,13 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Copper,1 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Dark Bluish Gray,24 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Dark Gray,1 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Dark Red,7 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Light Bluish Gray,27 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Pearl Light Gray,3 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Reddish Brown,25 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Blue,1 +Star Wars Episode 3,Wookiee Catamaran,381,2005,White,4 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Sand Green,1 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Tan,8 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Trans-Dark Blue,1 +Star Wars Episode 3,Wookiee Catamaran,381,2005,Trans-Light Blue,2 +Star Wars Episode 3,Wookiee Attack,368,2005,Sand Blue,5 +Star Wars Episode 3,Wookiee Attack,368,2005,Reddish Brown,16 +Star Wars Episode 3,Wookiee Attack,368,2005,Pearl Light Gray,1 +Star Wars Episode 3,Wookiee Attack,368,2005,Light Bluish Gray,20 +Star Wars Episode 3,Wookiee Attack,368,2005,Dark Bluish Gray,33 +Star Wars Episode 3,Wookiee Attack,368,2005,Blue,1 +Star Wars Episode 3,Wookiee Attack,368,2005,Black,26 +Star Wars Episode 3,Wookiee Attack,368,2005,Dark Blue,4 +Star Wars Episode 3,Wookiee Attack,368,2005,Trans-Red,1 +Star Wars Episode 3,Wookiee Attack,368,2005,Trans-Neon Orange,5 +Star Wars Episode 3,Wookiee Attack,368,2005,Trans-Light Blue,1 +Star Wars Episode 3,Wookiee Attack,368,2005,Tan,11 +Star Wars Episode 3,Ultimate Lightsaber Duel,278,2005,Trans-Red,2 +Star Wars Episode 3,Ultimate Lightsaber Duel,278,2005,Black,17 +Star Wars Episode 3,Ultimate Lightsaber Duel,278,2005,Reddish Brown,10 +Star Wars Episode 3,Ultimate Lightsaber Duel,278,2005,Pearl Light Gray,1 +Star Wars Episode 3,Ultimate Lightsaber Duel,278,2005,Light Bluish Gray,19 +Star Wars Episode 3,Ultimate Lightsaber Duel,278,2005,Dark Bluish Gray,20 +Star Wars Episode 3,Ultimate Lightsaber Duel,278,2005,Trans-Neon Orange,9 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Dark Red,1 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Light Bluish Gray,19 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Light Flesh,1 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Reddish Brown,1 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Sand Blue,2 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Tan,6 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Trans-Black,2 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Trans-Light Blue,3 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Trans-Red,1 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,White,5 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Yellow,11 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Black,18 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Chrome Silver,1 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Dark Blue,4 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Dark Bluish Gray,20 +Star Wars Episode 3,Jedi Starfighter & Vulture Droid,202,2005,Dark Flesh,1 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,Trans-Black,1 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,Sand Blue,5 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,Red,1 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,Light Bluish Gray,9 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,Dark Bluish Gray,9 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,Dark Blue,7 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,Black,5 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,[No Color],1 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,Trans-Red,2 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,Trans-Neon Orange,2 +Star Wars Episode 3,Droid Tri-Fighter,147,2005,Tan,1 +Star Wars Episode 3,General Grievous Chase,112,2005,White,4 +Star Wars Episode 3,General Grievous Chase,112,2005,Trans-Light Blue,1 +Star Wars Episode 3,General Grievous Chase,112,2005,Trans-Clear,1 +Star Wars Episode 3,General Grievous Chase,112,2005,Tan,3 +Star Wars Episode 3,General Grievous Chase,112,2005,Sand Green,1 +Star Wars Episode 3,General Grievous Chase,112,2005,Sand Blue,2 +Star Wars Episode 3,General Grievous Chase,112,2005,Reddish Brown,5 +Star Wars Episode 3,General Grievous Chase,112,2005,Pearl Light Gray,3 +Star Wars Episode 3,General Grievous Chase,112,2005,Light Flesh,1 +Star Wars Episode 3,General Grievous Chase,112,2005,Dark Bluish Gray,9 +Star Wars Episode 3,General Grievous Chase,112,2005,Light Bluish Gray,9 +Star Wars Episode 3,General Grievous Chase,112,2005,Dark Red,1 +Star Wars Episode 3,General Grievous Chase,112,2005,Dark Orange,2 +Star Wars Episode 3,General Grievous Chase,112,2005,Dark Green,8 +Star Wars Episode 3,General Grievous Chase,112,2005,Blue,1 +Star Wars Episode 3,General Grievous Chase,112,2005,Black,3 +Star Wars Episode 3,General Grievous Chase,112,2005,Trans-Neon Green,1 +Star Wars Episode 3,Clone Scout Walker,109,2005,Dark Red,2 +Star Wars Episode 3,Clone Scout Walker,109,2005,Green,3 +Star Wars Episode 3,Clone Scout Walker,109,2005,Tan,4 +Star Wars Episode 3,Clone Scout Walker,109,2005,White,3 +Star Wars Episode 3,Clone Scout Walker,109,2005,Light Bluish Gray,25 +Star Wars Episode 3,Clone Scout Walker,109,2005,Trans-Light Blue,1 +Star Wars Episode 3,Clone Scout Walker,109,2005,Dark Bluish Gray,12 +Star Wars Episode 3,Clone Scout Walker,109,2005,Black,5 +Star Wars Episode 3,Darth Vader Transformation,60,2005,Reddish Brown,2 +Star Wars Episode 3,Darth Vader Transformation,60,2005,Light Flesh,1 +Star Wars Episode 3,Darth Vader Transformation,60,2005,Light Bluish Gray,11 +Star Wars Episode 3,Darth Vader Transformation,60,2005,Dark Bluish Gray,14 +Star Wars Episode 3,Darth Vader Transformation,60,2005,Black,7 +Star Wars Episode 3,Darth Vader Transformation,60,2005,Trans-Clear,1 +Star Wars Episode 3,Darth Vader Transformation,60,2005,Trans-Red,1 +Star Wars Episode 3,Darth Vader Transformation,60,2005,Tan,4 +Star Wars Episode 3,Lego Toy Fair 2005 Star Wars V.I.P. Gala Set,38,2005,Trans-Clear,1 +Star Wars Episode 3,Lego Toy Fair 2005 Star Wars V.I.P. Gala Set,38,2005,Black,3 +Star Wars Episode 3,Lego Toy Fair 2005 Star Wars V.I.P. Gala Set,38,2005,Dark Bluish Gray,12 +Star Wars Episode 3,Lego Toy Fair 2005 Star Wars V.I.P. Gala Set,38,2005,Light Bluish Gray,6 +Star Wars Episode 3,Lego Toy Fair 2005 Star Wars V.I.P. Gala Set,38,2005,Reddish Brown,2 +Star Wars Episode 3,Lego Toy Fair 2005 Star Wars V.I.P. Gala Set,38,2005,Tan,3 +Star Wars Episode 3,Episode III Collectors' Set,5,2005,[No Color],2 +Star Wars Episode 3,Darth Vader Polybag - 56. International Toy Fair Nuernberg (N├╝rnberg),2,2005,[No Color],1 +Star Wars Episode 3,Darth Vader Polybag - 56. International Toy Fair Nuernberg (N├╝rnberg),2,2005,Black,1 +Star Wars Episode 3,General Grievous,1084,2008,Dark Red,2 +Star Wars Episode 3,General Grievous,1084,2008,Light Bluish Gray,19 +Star Wars Episode 3,General Grievous,1084,2008,Reddish Brown,2 +Star Wars Episode 3,General Grievous,1084,2008,Trans-Dark Blue,2 +Star Wars Episode 3,General Grievous,1084,2008,Trans-Neon Green,4 +Star Wars Episode 3,General Grievous,1084,2008,White,40 +Star Wars Episode 3,General Grievous,1084,2008,Black,41 +Star Wars Episode 3,General Grievous,1084,2008,Blue,2 +Star Wars Episode 3,General Grievous,1084,2008,Dark Bluish Gray,54 +Star Wars Episode 3,Clone Turbo Tank - Mini,64,2008,Black,3 +Star Wars Episode 3,Clone Turbo Tank - Mini,64,2008,Blue,1 +Star Wars Episode 3,Clone Turbo Tank - Mini,64,2008,Dark Bluish Gray,6 +Star Wars Episode 3,Clone Turbo Tank - Mini,64,2008,Dark Red,2 +Star Wars Episode 3,Clone Turbo Tank - Mini,64,2008,Light Bluish Gray,21 +Star Wars Episode 3,Clone Turbo Tank - Mini,64,2008,Red,1 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Black,14 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Blue,1 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Dark Azure,3 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Dark Bluish Gray,10 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Dark Brown,1 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Dark Red,14 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Dark Tan,1 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Flat Silver,3 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Green,1 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Light Bluish Gray,18 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Light Flesh,1 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Lime,6 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Metallic Silver,1 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Tan,10 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Trans-Clear,1 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Trans-Light Blue,1 +Star Wars Episode 3,Republic Fighter Tank,302,2017,Trans-Red,1 +Star Wars Episode 3,Republic Fighter Tank,302,2017,White,32 +Star Wars Episode 3,Vulture Droid foil pack,35,2017,Black,1 +Star Wars Episode 3,Vulture Droid foil pack,35,2017,Dark Blue,2 +Star Wars Episode 3,Vulture Droid foil pack,35,2017,Dark Bluish Gray,8 +Star Wars Episode 3,Vulture Droid foil pack,35,2017,Light Bluish Gray,3 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Red,6 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Blue,9 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Trans-Black,2 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Tan,1 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Orange,2 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Light Gray,31 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Dark Gray,28 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Chrome Silver,1 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Yellow,7 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,White,15 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Trans-Red,2 +Star Wars Episode 4/5/6,TIE Fighter & Y-wing,410,1999,Black,28 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Red,10 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Orange,2 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Light Gray,42 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Dark Gray,17 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Chrome Silver,1 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Blue,2 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Black,18 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Tan,8 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Trans-Black,1 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Trans-Light Blue,1 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Trans-Neon Orange,1 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Trans-Yellow,1 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,White,5 +Star Wars Episode 4/5/6,X-wing Fighter,271,1999,Yellow,8 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Tan,8 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Trans-Black,2 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Trans-Light Blue,1 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,White,9 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Yellow,3 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Black,11 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Blue,1 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Brown,1 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Chrome Silver,1 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Dark Gray,22 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Light Gray,35 +Star Wars Episode 4/5/6,Snowspeeder,217,1999,Orange,5 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,Brown,8 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,Trans-Neon Green,1 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,Bright Green,1 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,Black,8 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,White,3 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,Yellow,2 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,Tan,1 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,Light Gray,1 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,Green,2 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,Dark Gray,11 +Star Wars Episode 4/5/6,Speeder Bikes,93,1999,Chrome Silver,1 +Star Wars Episode 4/5/6,Landspeeder,49,1999,Chrome Silver,1 +Star Wars Episode 4/5/6,Landspeeder,49,1999,Yellow,2 +Star Wars Episode 4/5/6,Landspeeder,49,1999,White,1 +Star Wars Episode 4/5/6,Landspeeder,49,1999,Trans-Light Blue,1 +Star Wars Episode 4/5/6,Landspeeder,49,1999,Trans-Clear,1 +Star Wars Episode 4/5/6,Landspeeder,49,1999,Tan,10 +Star Wars Episode 4/5/6,Landspeeder,49,1999,Red,5 +Star Wars Episode 4/5/6,Landspeeder,49,1999,Light Gray,3 +Star Wars Episode 4/5/6,Landspeeder,49,1999,Dark Gray,3 +Star Wars Episode 4/5/6,Landspeeder,49,1999,Black,2 +Star Wars Episode 4/5/6,X-wing Fighter - UCS,1302,2000,Black,46 +Star Wars Episode 4/5/6,X-wing Fighter - UCS,1302,2000,Blue,13 +Star Wars Episode 4/5/6,X-wing Fighter - UCS,1302,2000,Dark Gray,49 +Star Wars Episode 4/5/6,X-wing Fighter - UCS,1302,2000,Green,1 +Star Wars Episode 4/5/6,X-wing Fighter - UCS,1302,2000,Light Gray,65 +Star Wars Episode 4/5/6,X-wing Fighter - UCS,1302,2000,Red,25 +Star Wars Episode 4/5/6,X-wing Fighter - UCS,1302,2000,Tan,19 +Star Wars Episode 4/5/6,X-wing Fighter - UCS,1302,2000,Trans-Clear,1 +Star Wars Episode 4/5/6,X-wing Fighter - UCS,1302,2000,White,60 +Star Wars Episode 4/5/6,X-wing Fighter - UCS,1302,2000,Yellow,12 +Star Wars Episode 4/5/6,TIE Interceptor - UCS,702,2000,Black,53 +Star Wars Episode 4/5/6,TIE Interceptor - UCS,702,2000,Blue,25 +Star Wars Episode 4/5/6,TIE Interceptor - UCS,702,2000,Dark Gray,41 +Star Wars Episode 4/5/6,TIE Interceptor - UCS,702,2000,Light Gray,15 +Star Wars Episode 4/5/6,TIE Interceptor - UCS,702,2000,Red,2 +Star Wars Episode 4/5/6,TIE Interceptor - UCS,702,2000,Trans-Black,1 +Star Wars Episode 4/5/6,TIE Interceptor - UCS,702,2000,Trans-Red,1 +Star Wars Episode 4/5/6,TIE Interceptor - UCS,702,2000,Yellow,1 +Star Wars Episode 4/5/6,TIE Interceptor - UCS,702,2000,[No Color],1 +Star Wars Episode 4/5/6,TIE Interceptor - Mini (Polybag),32,2005,Black,8 +Star Wars Episode 4/5/6,TIE Interceptor - Mini (Polybag),32,2005,Dark Bluish Gray,1 +Star Wars Episode 4/5/6,TIE Interceptor - Mini (Polybag),32,2005,Sand Blue,2 +Star Wars Episode 4/5/6,TIE Interceptor - Mini (Polybag),32,2005,Trans-Clear,1 +Star Wars Episode 4/5/6,Tantive IV & Planet Alderaan,102,2013,Black,11 +Star Wars Episode 4/5/6,Tantive IV & Planet Alderaan,102,2013,Dark Azure,1 +Star Wars Episode 4/5/6,Tantive IV & Planet Alderaan,102,2013,Dark Bluish Gray,1 +Star Wars Episode 4/5/6,Tantive IV & Planet Alderaan,102,2013,Dark Red,5 +Star Wars Episode 4/5/6,Tantive IV & Planet Alderaan,102,2013,Light Bluish Gray,9 +Star Wars Episode 4/5/6,Tantive IV & Planet Alderaan,102,2013,Light Flesh,1 +Star Wars Episode 4/5/6,Tantive IV & Planet Alderaan,102,2013,Trans-Yellow,1 +Star Wars Episode 4/5/6,Tantive IV & Planet Alderaan,102,2013,White,18 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Black,13 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Bright Light Blue,1 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Dark Bluish Gray,6 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Flat Silver,1 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Light Bluish Gray,19 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Light Flesh,1 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Orange,1 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Red,2 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Reddish Brown,1 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Tan,1 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Trans-Neon Green,1 +Star Wars Episode 4/5/6,B-wing Starfighter & Planet Endor,83,2013,Trans-Orange,1 +Star Wars Episode 4/5/6,Snowspeeder & Planet Hoth,69,2013,Black,9 +Star Wars Episode 4/5/6,Snowspeeder & Planet Hoth,69,2013,Dark Bluish Gray,6 +Star Wars Episode 4/5/6,Snowspeeder & Planet Hoth,69,2013,Light Bluish Gray,11 +Star Wars Episode 4/5/6,Snowspeeder & Planet Hoth,69,2013,Light Flesh,1 +Star Wars Episode 4/5/6,Snowspeeder & Planet Hoth,69,2013,Orange,4 +Star Wars Episode 4/5/6,Snowspeeder & Planet Hoth,69,2013,Trans-Black,1 +Star Wars Episode 4/5/6,Snowspeeder & Planet Hoth,69,2013,White,12 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Black,80 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Blue,7 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Bright Light Blue,2 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Dark Blue,1 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Dark Bluish Gray,82 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Dark Brown,1 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Dark Red,5 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Dark Tan,9 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Flat Silver,5 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Green,3 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Light Bluish Gray,105 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Light Flesh,10 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Metallic Silver,3 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Orange,6 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Red,8 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Reddish Brown,3 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Tan,22 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Trans-Black,3 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Trans-Clear,3 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Trans-Dark Blue,2 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Trans-Light Blue,2 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Trans-Orange,1 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Trans-Red,2 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Trans-Yellow,2 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,White,131 +Star Wars Episode 4/5/6,Assault on Hoth,2139,2016,Yellow,12 +Star Wars Episode 4/5/6,Landspeeder,37,2016,Black,1 +Star Wars Episode 4/5/6,Landspeeder,37,2016,Dark Bluish Gray,3 +Star Wars Episode 4/5/6,Landspeeder,37,2016,Dark Red,6 +Star Wars Episode 4/5/6,Landspeeder,37,2016,Dark Tan,3 +Star Wars Episode 4/5/6,Landspeeder,37,2016,Light Bluish Gray,1 +Star Wars Episode 4/5/6,Landspeeder,37,2016,Metallic Silver,3 +Star Wars Episode 4/5/6,Landspeeder,37,2016,Trans-Clear,1 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,Tan,3 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,Trans-Red,2 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,White,15 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,Yellow,2 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,Black,41 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,Blue,3 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,Dark Bluish Gray,25 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,Dark Brown,1 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,Light Bluish Gray,14 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,Red,2 +Star Wars Episode 4/5/6,"Scout Trooper"" & Speeder Bike",447,2017,Reddish Brown,17 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Black,12 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Dark Bluish Gray,9 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Dark Brown,1 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Dark Red,15 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Dark Tan,1 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Flesh,3 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Light Bluish Gray,11 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Light Flesh,2 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Metallic Silver,1 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Pearl Gold,3 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Reddish Brown,3 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Tan,4 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Trans-Clear,2 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,Trans-Light Blue,1 +Star Wars Episode 4/5/6,Luke's Landspeeder,148,2017,White,2 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Green,1 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Trans-Dark Pink,2 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Trans-Orange,4 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Trans-Red,2 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,White,9 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Red,8 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Yellow,3 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Tan,10 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Light Bluish Gray,66 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Light Flesh,3 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Medium Dark Flesh,1 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Orange,1 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Reddish Brown,2 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Sand Blue,7 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Trans-Clear,3 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Black,32 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Blue,25 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Dark Bluish Gray,42 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Dark Brown,2 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Dark Tan,6 +Star Wars Episode 7,Resistance X-Wing Fighter,738,2016,Flat Silver,5 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Flat Silver,4 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Green,2 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Light Bluish Gray,63 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Light Flesh,3 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Medium Dark Flesh,2 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Orange,3 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Pearl Dark Gray,1 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Red,3 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Tan,10 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Trans-Black,1 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Trans-Clear,1 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Trans-Orange,1 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Trans-Red,1 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Trans-Yellow,1 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,White,1 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Dark Tan,13 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Dark Red,2 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Dark Purple,1 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Dark Orange,1 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Dark Bluish Gray,39 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Blue,1 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Black,19 +Star Wars Episode 7,Resistance Troop Transporter,644,2016,Sand Green,3 +Star Wars Episode 7,Encounter on Jakku,529,2016,Trans-Clear,3 +Star Wars Episode 7,Encounter on Jakku,529,2016,Trans-Light Blue,2 +Star Wars Episode 7,Encounter on Jakku,529,2016,Dark Brown,2 +Star Wars Episode 7,Encounter on Jakku,529,2016,Dark Bluish Gray,33 +Star Wars Episode 7,Encounter on Jakku,529,2016,Dark Azure,5 +Star Wars Episode 7,Encounter on Jakku,529,2016,Black,23 +Star Wars Episode 7,Encounter on Jakku,529,2016,Pearl Gold,2 +Star Wars Episode 7,Encounter on Jakku,529,2016,Trans-Yellow,1 +Star Wars Episode 7,Encounter on Jakku,529,2016,White,3 +Star Wars Episode 7,Encounter on Jakku,529,2016,Tan,30 +Star Wars Episode 7,Encounter on Jakku,529,2016,Reddish Brown,23 +Star Wars Episode 7,Encounter on Jakku,529,2016,Orange,1 +Star Wars Episode 7,Encounter on Jakku,529,2016,Olive Green,1 +Star Wars Episode 7,Encounter on Jakku,529,2016,Light Flesh,2 +Star Wars Episode 7,Encounter on Jakku,529,2016,Light Bluish Gray,44 +Star Wars Episode 7,Encounter on Jakku,529,2016,Flat Silver,3 +Star Wars Episode 7,Encounter on Jakku,529,2016,Sand Blue,2 +Star Wars Episode 7,Encounter on Jakku,529,2016,Dark Tan,32 +Star Wars Episode 7,Encounter on Jakku,529,2016,Dark Orange,7 +Star Wars Episode 7,Battle on Takodana,403,2016,Orange,1 +Star Wars Episode 7,Battle on Takodana,403,2016,Pearl Dark Gray,1 +Star Wars Episode 7,Battle on Takodana,403,2016,Yellow,2 +Star Wars Episode 7,Battle on Takodana,403,2016,White,5 +Star Wars Episode 7,Battle on Takodana,403,2016,Trans-Light Blue,1 +Star Wars Episode 7,Battle on Takodana,403,2016,Tan,3 +Star Wars Episode 7,Battle on Takodana,403,2016,Reddish Brown,14 +Star Wars Episode 7,Battle on Takodana,403,2016,Red,2 +Star Wars Episode 7,Battle on Takodana,403,2016,Dark Red,1 +Star Wars Episode 7,Battle on Takodana,403,2016,[No Color],1 +Star Wars Episode 7,Battle on Takodana,403,2016,Black,15 +Star Wars Episode 7,Battle on Takodana,403,2016,Blue,2 +Star Wars Episode 7,Battle on Takodana,403,2016,Dark Azure,1 +Star Wars Episode 7,Battle on Takodana,403,2016,Trans-Red,1 +Star Wars Episode 7,Battle on Takodana,403,2016,Dark Bluish Gray,29 +Star Wars Episode 7,Battle on Takodana,403,2016,Dark Orange,1 +Star Wars Episode 7,Battle on Takodana,403,2016,Dark Tan,18 +Star Wars Episode 7,Battle on Takodana,403,2016,Green,2 +Star Wars Episode 7,Battle on Takodana,403,2016,Light Bluish Gray,14 +Star Wars Episode 7,Battle on Takodana,403,2016,Light Flesh,1 +Star Wars Episode 7,Battle on Takodana,403,2016,Medium Dark Flesh,5 +Star Wars Episode 7,Battle on Takodana,403,2016,Metallic Silver,1 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Yellow,2 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Black,12 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Dark Bluish Gray,13 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Dark Brown,1 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Dark Tan,5 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Flat Silver,1 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Light Bluish Gray,9 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Light Flesh,4 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Red,1 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Reddish Brown,1 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Tan,1 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Trans-Clear,1 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Trans-Light Blue,2 +Star Wars Episode 7,Resistance Trooper Battle Pack,112,2016,Trans-Orange,1 +Star Wars Episode 7,Poe Dameron,101,2016,Orange,8 +Star Wars Episode 7,Poe Dameron,101,2016,Pearl Dark Gray,1 +Star Wars Episode 7,Poe Dameron,101,2016,Red,1 +Star Wars Episode 7,Poe Dameron,101,2016,Trans-Dark Blue,1 +Star Wars Episode 7,Poe Dameron,101,2016,White,5 +Star Wars Episode 7,Poe Dameron,101,2016,Light Bluish Gray,2 +Star Wars Episode 7,Poe Dameron,101,2016,[No Color],1 +Star Wars Episode 7,Poe Dameron,101,2016,Black,21 +Star Wars Episode 7,Poe Dameron,101,2016,Blue,1 +Star Wars Episode 7,Poe Dameron,101,2016,Dark Bluish Gray,11 +Star Wars Episode 7,Poe Dameron,101,2016,Dark Tan,1 +Star Wars Episode 7,Finn,98,2016,Black,18 +Star Wars Episode 7,Finn,98,2016,Red,1 +Star Wars Episode 7,Finn,98,2016,Metallic Silver,1 +Star Wars Episode 7,Finn,98,2016,Reddish Brown,2 +Star Wars Episode 7,Finn,98,2016,Trans-Dark Blue,1 +Star Wars Episode 7,Finn,98,2016,Trans-Light Blue,1 +Star Wars Episode 7,Finn,98,2016,Trans-Medium Blue,1 +Star Wars Episode 7,Finn,98,2016,Dark Bluish Gray,11 +Star Wars Episode 7,Finn,98,2016,Pearl Dark Gray,1 +Star Wars Episode 7,Finn,98,2016,Light Bluish Gray,3 +Star Wars Episode 7,Finn,98,2016,Dark Tan,7 +Star Wars Episode 7,Finn,98,2016,Blue,1 +Star Wars Episode 7,First Order Snowspeeder,91,2016,Light Flesh,1 +Star Wars Episode 7,First Order Snowspeeder,91,2016,White,7 +Star Wars Episode 7,First Order Snowspeeder,91,2016,Dark Bluish Gray,13 +Star Wars Episode 7,First Order Snowspeeder,91,2016,Light Bluish Gray,17 +Star Wars Episode 7,First Order Snowspeeder,91,2016,Black,10 +Star Wars Episode 7,First Order Snowspeeder,91,2016,Tan,1 +Star Wars Episode 7,First Order Snowspeeder,91,2016,Trans-Bright Green,1 +Star Wars Episode 7,First Order Snowspeeder,91,2016,Trans-Clear,1 +Star Wars Episode 7,First Order Snowspeeder,91,2016,Trans-Neon Orange,1 +Star Wars Episode 7,First Order Battle Pack,88,2016,Dark Bluish Gray,9 +Star Wars Episode 7,First Order Battle Pack,88,2016,Blue,1 +Star Wars Episode 7,First Order Battle Pack,88,2016,Trans-Bright Green,1 +Star Wars Episode 7,First Order Battle Pack,88,2016,White,4 +Star Wars Episode 7,First Order Battle Pack,88,2016,Reddish Brown,1 +Star Wars Episode 7,First Order Battle Pack,88,2016,Black,14 +Star Wars Episode 7,First Order Battle Pack,88,2016,Red,1 +Star Wars Episode 7,First Order Battle Pack,88,2016,Light Flesh,2 +Star Wars Episode 7,First Order Battle Pack,88,2016,Light Bluish Gray,12 +Star Wars Episode 7,First Order Battle Pack,88,2016,Trans-Red,2 +Star Wars Episode 7,Resistance X-Wing Fighter,87,2016,Flesh,1 +Star Wars Episode 7,Resistance X-Wing Fighter,87,2016,Light Bluish Gray,14 +Star Wars Episode 7,Resistance X-Wing Fighter,87,2016,Trans-Clear,1 +Star Wars Episode 7,Resistance X-Wing Fighter,87,2016,Black,2 +Star Wars Episode 7,Resistance X-Wing Fighter,87,2016,Trans-Dark Pink,1 +Star Wars Episode 7,Resistance X-Wing Fighter,87,2016,Blue,6 +Star Wars Episode 7,Resistance X-Wing Fighter,87,2016,White,1 +Star Wars Episode 7,Resistance X-Wing Fighter,87,2016,Dark Bluish Gray,6 +Star Wars Episode 7,Resistance X-Wing Fighter,87,2016,Dark Orange,2 +Star Wars Episode 7,Kylo Ren,86,2016,Black,27 +Star Wars Episode 7,Kylo Ren,86,2016,Blue,1 +Star Wars Episode 7,Kylo Ren,86,2016,Dark Bluish Gray,6 +Star Wars Episode 7,Kylo Ren,86,2016,Light Bluish Gray,2 +Star Wars Episode 7,Kylo Ren,86,2016,Red,1 +Star Wars Episode 7,Kylo Ren,86,2016,Trans-Red,2 +Star Wars Episode 7,Kylo Ren,86,2016,Pearl Dark Gray,2 +Star Wars Episode 7,Rey,84,2016,Light Bluish Gray,3 +Star Wars Episode 7,Rey,84,2016,Light Flesh,1 +Star Wars Episode 7,Rey,84,2016,Pearl Dark Gray,1 +Star Wars Episode 7,Rey,84,2016,Red,1 +Star Wars Episode 7,Rey,84,2016,Reddish Brown,1 +Star Wars Episode 7,Rey,84,2016,Tan,3 +Star Wars Episode 7,Rey,84,2016,Black,16 +Star Wars Episode 7,Rey,84,2016,Blue,2 +Star Wars Episode 7,Rey,84,2016,Dark Bluish Gray,8 +Star Wars Episode 7,Rey,84,2016,Dark Brown,3 +Star Wars Episode 7,Rey,84,2016,Dark Tan,7 +Star Wars Episode 7,Rey,84,2016,Flat Silver,1 +Star Wars Episode 7,Captain Phasma,82,2016,Black,17 +Star Wars Episode 7,Captain Phasma,82,2016,Blue,1 +Star Wars Episode 7,Captain Phasma,82,2016,Dark Bluish Gray,10 +Star Wars Episode 7,Captain Phasma,82,2016,Flat Silver,14 +Star Wars Episode 7,Captain Phasma,82,2016,Light Bluish Gray,2 +Star Wars Episode 7,Captain Phasma,82,2016,Red,1 +Star Wars Episode 7,Captain Phasma,82,2016,Trans-Red,1 +Star Wars Episode 7,First Order Stormtrooper,81,2016,Trans-Red,1 +Star Wars Episode 7,First Order Stormtrooper,81,2016,Black,14 +Star Wars Episode 7,First Order Stormtrooper,81,2016,Blue,1 +Star Wars Episode 7,First Order Stormtrooper,81,2016,Dark Bluish Gray,6 +Star Wars Episode 7,First Order Stormtrooper,81,2016,Light Bluish Gray,4 +Star Wars Episode 7,First Order Stormtrooper,81,2016,Red,1 +Star Wars Episode 7,First Order Stormtrooper,81,2016,White,20 +Star Wars Episode 7,First Order Star Destroyer,56,2016,Dark Bluish Gray,9 +Star Wars Episode 7,First Order Star Destroyer,56,2016,Flat Silver,1 +Star Wars Episode 7,First Order Star Destroyer,56,2016,Light Bluish Gray,10 +Star Wars Episode 7,First Order Star Destroyer,56,2016,Trans-Light Blue,1 +Star Wars Episode 7,First Order Star Destroyer,56,2016,Trans-Yellow,2 +Star Wars Episode 7,First Order Star Destroyer,56,2016,Black,4 +Star Wars Episode 7,Kylo Ren's Command Shuttle,43,2016,Black,3 +Star Wars Episode 7,Kylo Ren's Command Shuttle,43,2016,Dark Bluish Gray,9 +Star Wars Episode 7,Kylo Ren's Command Shuttle,43,2016,Light Bluish Gray,6 +Star Wars Episode 7,Kylo Ren's Command Shuttle,43,2016,Red,1 +Star Wars Episode 7,Kylo Ren's Command Shuttle,43,2016,Trans-Black,1 +Star Wars Episode 7,Kylo Ren's Command Shuttle,43,2016,Trans-Red,2 +Star Wars Episode 7,First Order General,4,2016,Black,3 +Star Wars Episode 7,First Order General,4,2016,Light Flesh,1 +Star Wars Episode 7,Finn (FN-2187),3,2016,Black,2 +Star Wars Episode 7,Finn (FN-2187),3,2016,Reddish Brown,1 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Black,37 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Blue,3 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Bright Light Orange,3 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Dark Bluish Gray,43 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Dark Brown,5 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Dark Orange,2 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Dark Red,10 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Dark Tan,11 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Light Bluish Gray,21 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Light Flesh,2 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Orange,2 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Pearl Dark Gray,2 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Red,8 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Reddish Brown,9 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Tan,19 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Trans-Clear,1 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Trans-Orange,2 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Trans-Red,2 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,White,2 +Star Wars Episode 7,"Rathtar"" Escape",836,2017,Yellow,4 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,Black,11 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,Dark Blue,3 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,Dark Bluish Gray,7 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,Light Bluish Gray,15 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,Light Flesh,2 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,Tan,1 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,Trans-Clear,2 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,Trans-Light Blue,1 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,Trans-Orange,2 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,Trans-Red,2 +Star Wars Episode 8,First Order Transport Speeder Battle Pack,115,2017,White,10 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Red,1 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Black,7 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Blue,7 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Dark Bluish Gray,11 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Dark Red,3 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Light Bluish Gray,11 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Light Flesh,2 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Trans-Black,1 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Trans-Clear,1 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Trans-Dark Blue,1 +Star Wars Expanded Universe,Senate Commando Troopers,106,2015,Yellow,4 +Star Wars Expanded Universe,Geonosis Troopers,105,2015,Dark Orange,7 +Star Wars Expanded Universe,Geonosis Troopers,105,2015,Light Bluish Gray,13 +Star Wars Expanded Universe,Geonosis Troopers,105,2015,Medium Dark Flesh,5 +Star Wars Expanded Universe,Geonosis Troopers,105,2015,Red,1 +Star Wars Expanded Universe,Geonosis Troopers,105,2015,Light Flesh,2 +Star Wars Expanded Universe,Geonosis Troopers,105,2015,Trans-Dark Blue,1 +Star Wars Expanded Universe,Geonosis Troopers,105,2015,Yellow,1 +Star Wars Expanded Universe,Geonosis Troopers,105,2015,Black,11 +Star Wars Expanded Universe,Geonosis Troopers,105,2015,Dark Bluish Gray,11 +Star Wars Expanded Universe,Shadow Troopers,95,2015,Black,18 +Star Wars Expanded Universe,Shadow Troopers,95,2015,Dark Bluish Gray,8 +Star Wars Expanded Universe,Shadow Troopers,95,2015,Light Bluish Gray,8 +Star Wars Expanded Universe,Shadow Troopers,95,2015,Light Flesh,1 +Star Wars Expanded Universe,Shadow Troopers,95,2015,Pearl Dark Gray,3 +Star Wars Expanded Universe,Shadow Troopers,95,2015,Red,1 +Star Wars Expanded Universe,Shadow Troopers,95,2015,Trans-Red,4 +Star Wars Other,StarScavenger,557,2016,Dark Orange,3 +Star Wars Other,StarScavenger,557,2016,Dark Tan,4 +Star Wars Other,StarScavenger,557,2016,Flesh,3 +Star Wars Other,StarScavenger,557,2016,Light Bluish Gray,43 +Star Wars Other,StarScavenger,557,2016,Olive Green,1 +Star Wars Other,StarScavenger,557,2016,Orange,1 +Star Wars Other,StarScavenger,557,2016,Red,2 +Star Wars Other,StarScavenger,557,2016,Reddish Brown,1 +Star Wars Other,StarScavenger,557,2016,Sand Blue,2 +Star Wars Other,StarScavenger,557,2016,Tan,5 +Star Wars Other,StarScavenger,557,2016,Trans-Clear,1 +Star Wars Other,StarScavenger,557,2016,Trans-Dark Blue,1 +Star Wars Other,StarScavenger,557,2016,Trans-Light Blue,4 +Star Wars Other,StarScavenger,557,2016,Trans-Medium Blue,1 +Star Wars Other,StarScavenger,557,2016,White,2 +Star Wars Other,StarScavenger,557,2016,Yellow,2 +Star Wars Other,StarScavenger,557,2016,[No Color],1 +Star Wars Other,StarScavenger,557,2016,Black,14 +Star Wars Other,StarScavenger,557,2016,Blue,2 +Star Wars Other,StarScavenger,557,2016,Dark Blue,5 +Star Wars Other,StarScavenger,557,2016,Dark Bluish Gray,55 +Star Wars Other,StarScavenger,557,2016,Dark Brown,3 +Star Wars Other,StarScavenger,557,2016,Dark Green,1 +Star Wars Other,Eclipse Fighter,363,2016,Black,55 +Star Wars Other,Eclipse Fighter,363,2016,Blue,1 +Star Wars Other,Eclipse Fighter,363,2016,Dark Blue,2 +Star Wars Other,Eclipse Fighter,363,2016,Dark Bluish Gray,28 +Star Wars Other,Eclipse Fighter,363,2016,Dark Brown,1 +Star Wars Other,Eclipse Fighter,363,2016,Dark Red,11 +Star Wars Other,Eclipse Fighter,363,2016,Dark Tan,5 +Star Wars Other,Eclipse Fighter,363,2016,Flat Silver,1 +Star Wars Other,Eclipse Fighter,363,2016,Light Bluish Gray,23 +Star Wars Other,Eclipse Fighter,363,2016,Light Flesh,1 +Star Wars Other,Eclipse Fighter,363,2016,Red,1 +Star Wars Other,Eclipse Fighter,363,2016,Reddish Brown,1 +Star Wars Other,Eclipse Fighter,363,2016,Tan,4 +Star Wars Other,Eclipse Fighter,363,2016,Trans-Black,1 +Star Wars Other,Eclipse Fighter,363,2016,Trans-Clear,1 +Star Wars Other,Eclipse Fighter,363,2016,Trans-Red,3 +Star Wars Other,Eclipse Fighter,363,2016,White,3 +Star Wars Other,Eclipse Fighter,363,2016,Trans-Light Blue,3 +Star Wars Rebels,The Ghost,927,2014,Black,37 +Star Wars Rebels,The Ghost,927,2014,Blue,4 +Star Wars Rebels,The Ghost,927,2014,Bright Light Orange,3 +Star Wars Rebels,The Ghost,927,2014,Dark Bluish Gray,59 +Star Wars Rebels,The Ghost,927,2014,Dark Brown,2 +Star Wars Rebels,The Ghost,927,2014,Dark Tan,1 +Star Wars Rebels,The Ghost,927,2014,Flat Silver,1 +Star Wars Rebels,The Ghost,927,2014,Flesh,1 +Star Wars Rebels,The Ghost,927,2014,Light Bluish Gray,63 +Star Wars Rebels,The Ghost,927,2014,Light Flesh,1 +Star Wars Rebels,The Ghost,927,2014,Lime,2 +Star Wars Rebels,The Ghost,927,2014,Medium Lavender,1 +Star Wars Rebels,The Ghost,927,2014,Metallic Silver,1 +Star Wars Rebels,The Ghost,927,2014,Olive Green,1 +Star Wars Rebels,The Ghost,927,2014,Orange,2 +Star Wars Rebels,The Ghost,927,2014,Red,13 +Star Wars Rebels,The Ghost,927,2014,Reddish Brown,3 +Star Wars Rebels,The Ghost,927,2014,Sand Green,2 +Star Wars Rebels,The Ghost,927,2014,Tan,1 +Star Wars Rebels,The Ghost,927,2014,Trans-Black,3 +Star Wars Rebels,The Ghost,927,2014,Trans-Bright Green,1 +Star Wars Rebels,The Ghost,927,2014,Trans-Clear,1 +Star Wars Rebels,The Ghost,927,2014,Trans-Light Blue,2 +Star Wars Rebels,The Ghost,927,2014,Trans-Neon Orange,2 +Star Wars Rebels,The Ghost,927,2014,Trans-Orange,1 +Star Wars Rebels,The Ghost,927,2014,Trans-Red,3 +Star Wars Rebels,The Ghost,927,2014,Trans-Yellow,1 +Star Wars Rebels,The Ghost,927,2014,White,59 +Star Wars Rebels,The Ghost,927,2014,Yellow,2 +Star Wars Rebels,The Phantom,233,2014,Yellow,3 +Star Wars Rebels,The Phantom,233,2014,Dark Orange,2 +Star Wars Rebels,The Phantom,233,2014,Black,7 +Star Wars Rebels,The Phantom,233,2014,Blue,1 +Star Wars Rebels,The Phantom,233,2014,Bright Light Orange,2 +Star Wars Rebels,The Phantom,233,2014,Dark Bluish Gray,20 +Star Wars Rebels,The Phantom,233,2014,Dark Tan,1 +Star Wars Rebels,The Phantom,233,2014,Light Bluish Gray,13 +Star Wars Rebels,The Phantom,233,2014,Light Flesh,1 +Star Wars Rebels,The Phantom,233,2014,Tan,1 +Star Wars Rebels,The Phantom,233,2014,Trans-Black,2 +Star Wars Rebels,The Phantom,233,2014,Trans-Clear,1 +Star Wars Rebels,The Phantom,233,2014,Trans-Neon Green,1 +Star Wars Rebels,The Phantom,233,2014,Trans-Orange,1 +Star Wars Rebels,The Phantom,233,2014,Trans-Red,1 +Star Wars Rebels,The Phantom,233,2014,White,33 +Star Wars Rebels,The Ghost Starship,127,2014,Black,8 +Star Wars Rebels,The Ghost Starship,127,2014,Dark Orange,1 +Star Wars Rebels,The Ghost Starship,127,2014,Light Bluish Gray,17 +Star Wars Rebels,The Ghost Starship,127,2014,Red,2 +Star Wars Rebels,The Ghost Starship,127,2014,Tan,1 +Star Wars Rebels,The Ghost Starship,127,2014,Dark Bluish Gray,6 +Star Wars Rebels,The Ghost Starship,127,2014,Trans-Black,2 +Star Wars Rebels,The Ghost Starship,127,2014,White,14 +Star Wars Rebels,The Ghost Starship,127,2014,Yellow,2 +Star Wars Rebels,The Phantom,267,2017,Olive Green,1 +Star Wars Rebels,The Phantom,267,2017,Metallic Silver,1 +Star Wars Rebels,The Phantom,267,2017,Medium Blue,4 +Star Wars Rebels,The Phantom,267,2017,Light Bluish Gray,18 +Star Wars Rebels,The Phantom,267,2017,Light Aqua,3 +Star Wars Rebels,The Phantom,267,2017,Flesh,1 +Star Wars Rebels,The Phantom,267,2017,Flat Silver,1 +Star Wars Rebels,The Phantom,267,2017,Dark Tan,1 +Star Wars Rebels,The Phantom,267,2017,Dark Orange,1 +Star Wars Rebels,The Phantom,267,2017,Dark Bluish Gray,25 +Star Wars Rebels,The Phantom,267,2017,Dark Blue,1 +Star Wars Rebels,The Phantom,267,2017,Dark Azure,1 +Star Wars Rebels,The Phantom,267,2017,Bright Light Orange,2 +Star Wars Rebels,The Phantom,267,2017,Blue,3 +Star Wars Rebels,The Phantom,267,2017,Black,13 +Star Wars Rebels,The Phantom,267,2017,Red,5 +Star Wars Rebels,The Phantom,267,2017,Reddish Brown,3 +Star Wars Rebels,The Phantom,267,2017,Tan,9 +Star Wars Rebels,The Phantom,267,2017,Trans-Black,1 +Star Wars Rebels,The Phantom,267,2017,Trans-Light Blue,1 +Star Wars Rebels,The Phantom,267,2017,Trans-Orange,1 +Star Wars Rebels,The Phantom,267,2017,Trans-Red,1 +Star Wars Rebels,The Phantom,267,2017,White,33 +Star Wars Rebels,The Phantom,267,2017,Yellow,2 +Star Wars Rebels,The Ghost,50,2017,Black,3 +Star Wars Rebels,The Ghost,50,2017,Dark Bluish Gray,1 +Star Wars Rebels,The Ghost,50,2017,Light Bluish Gray,5 +Star Wars Rebels,The Ghost,50,2017,Red,2 +Star Wars Rebels,The Ghost,50,2017,Sand Green,1 +Star Wars Rebels,The Ghost,50,2017,Trans-Black,2 +Star Wars Rebels,The Ghost,50,2017,Trans-Orange,1 +Star Wars Rebels,The Ghost,50,2017,White,8 +Star Wars Rebels,The Ghost,50,2017,Yellow,2 +Star Wars Rebels,A-Wing,47,2017,Trans-Black,3 +Star Wars Rebels,A-Wing,47,2017,Tan,1 +Star Wars Rebels,A-Wing,47,2017,Light Bluish Gray,6 +Star Wars Rebels,A-Wing,47,2017,Dark Green,3 +Star Wars Rebels,A-Wing,47,2017,Dark Bluish Gray,4 +Star Wars Rebels,A-Wing,47,2017,Black,1 +Star Wars Rebels,A-Wing,47,2017,Yellow,2 +Star Wars Rebels,A-Wing,47,2017,White,4 +Star Wars Rebels,A-Wing,47,2017,Trans-Yellow,1 +Star Wars Rebels,Kanan Jarrus foilpack,6,2017,Trans-Light Blue,1 +Star Wars Rebels,Kanan Jarrus foilpack,6,2017,Olive Green,1 +Star Wars Rebels,Kanan Jarrus foilpack,6,2017,Metallic Silver,1 +Star Wars Rebels,Kanan Jarrus foilpack,6,2017,Flesh,1 +Star Wars Rebels,Kanan Jarrus foilpack,6,2017,Dark Brown,1 +Star Wars Rebels,Kanan Jarrus foilpack,6,2017,Dark Bluish Gray,1 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Light Flesh,2 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Light Bluish Gray,35 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Flesh,1 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Flat Silver,3 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Dark Tan,7 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Dark Red,1 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Dark Bluish Gray,44 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Tan,12 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Blue,3 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Black,80 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Yellow,4 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,White,7 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Trans-Yellow,1 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Trans-Red,4 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Trans-Light Blue,1 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Trans-Black,1 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Reddish Brown,3 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Red,9 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Orange,1 +Star Wars Rogue One,Krennic’s Imperial Shuttle,861,2016,Medium Blue,1 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Dark Brown,1 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Dark Bluish Gray,51 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Dark Blue,3 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Black,28 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Medium Dark Flesh,1 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Olive Green,3 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Orange,1 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Pearl Dark Gray,2 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Red,6 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Reddish Brown,5 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Tan,5 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Trans-Clear,2 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Trans-Orange,1 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Trans-Red,2 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,White,27 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Yellow,6 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Flat Silver,3 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Light Flesh,4 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Light Bluish Gray,32 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Flesh,1 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Blue,10 +Star Wars Rogue One,Rebel U-Wing Fighter,657,2016,Dark Tan,4 +Star Wars Rogue One,TIE Striker,541,2016,Dark Bluish Gray,30 +Star Wars Rogue One,TIE Striker,541,2016,Blue,5 +Star Wars Rogue One,TIE Striker,541,2016,Black,42 +Star Wars Rogue One,TIE Striker,541,2016,Green,1 +Star Wars Rogue One,TIE Striker,541,2016,Flat Silver,2 +Star Wars Rogue One,TIE Striker,541,2016,Dark Tan,4 +Star Wars Rogue One,TIE Striker,541,2016,Red,6 +Star Wars Rogue One,TIE Striker,541,2016,Light Bluish Gray,51 +Star Wars Rogue One,TIE Striker,541,2016,Light Flesh,3 +Star Wars Rogue One,TIE Striker,541,2016,Orange,2 +Star Wars Rogue One,TIE Striker,541,2016,Sand Blue,5 +Star Wars Rogue One,TIE Striker,541,2016,Tan,9 +Star Wars Rogue One,TIE Striker,541,2016,Trans-Black,1 +Star Wars Rogue One,TIE Striker,541,2016,Trans-Orange,1 +Star Wars Rogue One,TIE Striker,541,2016,Trans-Red,1 +Star Wars Rogue One,TIE Striker,541,2016,Yellow,6 +Star Wars Rogue One,AT-ST Walker,448,2016,Orange,1 +Star Wars Rogue One,AT-ST Walker,448,2016,Red,3 +Star Wars Rogue One,AT-ST Walker,448,2016,Reddish Brown,4 +Star Wars Rogue One,AT-ST Walker,448,2016,Sand Blue,4 +Star Wars Rogue One,AT-ST Walker,448,2016,Tan,1 +Star Wars Rogue One,AT-ST Walker,448,2016,Trans-Black,1 +Star Wars Rogue One,AT-ST Walker,448,2016,Yellow,2 +Star Wars Rogue One,AT-ST Walker,448,2016,White,2 +Star Wars Rogue One,AT-ST Walker,448,2016,Trans-Red,3 +Star Wars Rogue One,AT-ST Walker,448,2016,Trans-Clear,1 +Star Wars Rogue One,AT-ST Walker,448,2016,Flesh,1 +Star Wars Rogue One,AT-ST Walker,448,2016,Black,26 +Star Wars Rogue One,AT-ST Walker,448,2016,Blue,3 +Star Wars Rogue One,AT-ST Walker,448,2016,Dark Bluish Gray,42 +Star Wars Rogue One,AT-ST Walker,448,2016,Dark Red,2 +Star Wars Rogue One,AT-ST Walker,448,2016,Dark Tan,7 +Star Wars Rogue One,AT-ST Walker,448,2016,Flat Silver,2 +Star Wars Rogue One,AT-ST Walker,448,2016,Light Bluish Gray,69 +Star Wars Rogue One,AT-ST Walker,448,2016,Light Flesh,1 +Star Wars Rogue One,AT-ST Walker,448,2016,Medium Dark Flesh,1 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Light Bluish Gray,41 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,White,3 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Black,24 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Blue,1 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Dark Bluish Gray,34 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Dark Red,1 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Dark Tan,5 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Trans-Clear,1 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Tan,2 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Reddish Brown,5 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Trans-Red,2 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Red,2 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Yellow,1 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Orange,5 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Pearl Gold,2 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Pearl Dark Gray,1 +Star Wars Rogue One,Imperial Assault Hovertank,385,2016,Light Flesh,2 +Star Wars Rogue One,K-2SO,169,2016,Black,38 +Star Wars Rogue One,K-2SO,169,2016,Blue,2 +Star Wars Rogue One,K-2SO,169,2016,Dark Bluish Gray,4 +Star Wars Rogue One,K-2SO,169,2016,Flat Silver,3 +Star Wars Rogue One,K-2SO,169,2016,Light Bluish Gray,5 +Star Wars Rogue One,K-2SO,169,2016,Red,1 +Star Wars Rogue One,K-2SO,169,2016,Reddish Brown,1 +Star Wars Rogue One,K-2SO,169,2016,Tan,1 +Star Wars Rogue One,K-2SO,169,2016,[No Color],1 +Star Wars Rogue One,Imperial Death Trooper,105,2016,Trans-Red,2 +Star Wars Rogue One,Imperial Death Trooper,105,2016,Flat Silver,2 +Star Wars Rogue One,Imperial Death Trooper,105,2016,Dark Bluish Gray,6 +Star Wars Rogue One,Imperial Death Trooper,105,2016,Blue,1 +Star Wars Rogue One,Imperial Death Trooper,105,2016,Black,36 +Star Wars Rogue One,Imperial Death Trooper,105,2016,Trans-Clear,1 +Star Wars Rogue One,Imperial Death Trooper,105,2016,Red,1 +Star Wars Rogue One,Imperial Death Trooper,105,2016,Light Bluish Gray,2 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Reddish Brown,1 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Trans-Dark Blue,1 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Red,1 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Black,22 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Blue,2 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Dark Bluish Gray,13 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Dark Brown,2 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Dark Tan,1 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Light Bluish Gray,8 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Light Flesh,1 +Star Wars Rogue One,Sergeant Jyn Erso,104,2016,Pearl Dark Gray,1 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Orange,1 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Pearl Dark Gray,1 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Red,4 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Reddish Brown,3 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Sand Blue,4 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Trans-Black,5 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Trans-Clear,2 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Trans-Dark Pink,1 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Trans-Red,2 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Trans-Yellow,1 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,White,34 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Tan,2 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Yellow,21 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Light Flesh,2 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Light Bluish Gray,75 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Flat Silver,2 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Dark Tan,1 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Dark Orange,1 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Dark Bluish Gray,39 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Dark Blue,6 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Blue,2 +Star Wars Rogue One,Y-Wing Starfighter,688,2017,Black,22 +Star Wars Rogue One,Battle on Scarif,419,2017,[No Color],1 +Star Wars Rogue One,Battle on Scarif,419,2017,Black,22 +Star Wars Rogue One,Battle on Scarif,419,2017,Blue,2 +Star Wars Rogue One,Battle on Scarif,419,2017,Dark Bluish Gray,46 +Star Wars Rogue One,Battle on Scarif,419,2017,Dark Brown,2 +Star Wars Rogue One,Battle on Scarif,419,2017,Dark Tan,1 +Star Wars Rogue One,Battle on Scarif,419,2017,Flat Silver,1 +Star Wars Rogue One,Battle on Scarif,419,2017,Green,1 +Star Wars Rogue One,Battle on Scarif,419,2017,Light Bluish Gray,45 +Star Wars Rogue One,Battle on Scarif,419,2017,Light Flesh,3 +Star Wars Rogue One,Battle on Scarif,419,2017,Lime,1 +Star Wars Rogue One,Battle on Scarif,419,2017,Orange,6 +Star Wars Rogue One,Battle on Scarif,419,2017,Olive Green,1 +Star Wars Rogue One,Battle on Scarif,419,2017,Pearl Dark Gray,1 +Star Wars Rogue One,Battle on Scarif,419,2017,Red,5 +Star Wars Rogue One,Battle on Scarif,419,2017,Reddish Brown,7 +Star Wars Rogue One,Battle on Scarif,419,2017,Tan,14 +Star Wars Rogue One,Battle on Scarif,419,2017,Trans-Clear,1 +Star Wars Rogue One,Battle on Scarif,419,2017,Trans-Red,1 +Star Wars Rogue One,Battle on Scarif,419,2017,Yellow,1 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Black,14 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Dark Bluish Gray,13 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Dark Brown,1 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Dark Green,4 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Dark Tan,9 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Light Bluish Gray,8 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Light Flesh,3 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Medium Dark Flesh,1 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Reddish Brown,2 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Tan,5 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Trans-Black,1 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,Trans-Red,1 +Star Wars Rogue One,Rebel Trooper Battle Pack,119,2017,White,1 +Star Wars Rogue One,Imperial Trooper Battle Pack,112,2017,White,3 +Star Wars Rogue One,Imperial Trooper Battle Pack,112,2017,Blue,1 +Star Wars Rogue One,Imperial Trooper Battle Pack,112,2017,Trans-Red,1 +Star Wars Rogue One,Imperial Trooper Battle Pack,112,2017,Trans-Black,1 +Star Wars Rogue One,Imperial Trooper Battle Pack,112,2017,Light Flesh,1 +Star Wars Rogue One,Imperial Trooper Battle Pack,112,2017,Light Bluish Gray,11 +Star Wars Rogue One,Imperial Trooper Battle Pack,112,2017,Dark Tan,1 +Star Wars Rogue One,Imperial Trooper Battle Pack,112,2017,Dark Bluish Gray,10 +Star Wars Rogue One,Imperial Trooper Battle Pack,112,2017,Black,11 +Star Wars Rogue One,U-wing,108,2017,Dark Blue,2 +Star Wars Rogue One,U-wing,108,2017,Black,3 +Star Wars Rogue One,U-wing,108,2017,Blue,5 +Star Wars Rogue One,U-wing,108,2017,Dark Bluish Gray,8 +Star Wars Rogue One,U-wing,108,2017,Flat Silver,1 +Star Wars Rogue One,U-wing,108,2017,Light Bluish Gray,11 +Star Wars Rogue One,U-wing,108,2017,Light Flesh,1 +Star Wars Rogue One,U-wing,108,2017,Trans-Black,1 +Star Wars Rogue One,U-wing,108,2017,Trans-Orange,1 +Star Wars Rogue One,U-wing,108,2017,Trans-Red,1 +Star Wars Rogue One,U-wing,108,2017,White,12 +Star Wars Rogue One,U-wing,108,2017,Yellow,1 +Star Wars Rogue One,U-Wing Fighter,55,2017,Flat Silver,1 +Star Wars Rogue One,U-Wing Fighter,55,2017,Light Bluish Gray,10 +Star Wars Rogue One,U-Wing Fighter,55,2017,Trans-Clear,2 +Star Wars Rogue One,U-Wing Fighter,55,2017,Trans-Orange,1 +Star Wars Rogue One,U-Wing Fighter,55,2017,White,10 +Star Wars Rogue One,U-Wing Fighter,55,2017,Yellow,1 +Star Wars Rogue One,U-Wing Fighter,55,2017,Dark Bluish Gray,5 +Star Wars Rogue One,U-Wing Fighter,55,2017,Blue,3 +Stars,Takanuva,21,2010,Pearl Light Gray,2 +Stars,Takanuva,21,2010,Trans-Neon Green,1 +Stars,Takanuva,21,2010,White,4 +Stars,Skrall,21,2010,Black,8 +Stars,Skrall,21,2010,Light Bluish Gray,1 +Stars,Skrall,21,2010,Lime,2 +Stars,Skrall,21,2010,Pearl Gold,1 +Stars,Skrall,21,2010,Trans-Neon Orange,1 +Stars,Takanuva,21,2010,Dark Bluish Gray,4 +Stars,Takanuva,21,2010,Pearl Gold,1 +Stars,Gresh,19,2010,Dark Green,5 +Stars,Gresh,19,2010,Lime,3 +Stars,Gresh,19,2010,Pearl Light Gray,1 +Stars,Gresh,19,2010,Trans-Neon Green,1 +Stars,Tahu,19,2010,Orange,3 +Stars,Tahu,19,2010,Pearl Gold,1 +Stars,Gresh,19,2010,Pearl Gold,1 +Stars,Tahu,19,2010,Red,7 +Stars,Tahu,19,2010,Trans-Neon Green,1 +Stars,Tahu,19,2010,Pearl Light Gray,1 +Stars,Rahkshi,18,2010,Bright Light Orange,3 +Stars,Rahkshi,18,2010,Dark Bluish Gray,4 +Stars,Rahkshi,18,2010,Light Bluish Gray,1 +Stars,Rahkshi,18,2010,Pearl Gold,1 +Stars,Rahkshi,18,2010,Pearl Light Gray,1 +Stars,Rahkshi,18,2010,Trans-Neon Orange,1 +Stars,Rahkshi,18,2010,Black,1 +Stars,Piraka,15,2010,Dark Blue,3 +Stars,Piraka,15,2010,Dark Bluish Gray,3 +Stars,Piraka,15,2010,Light Bluish Gray,1 +Stars,Piraka,15,2010,Pearl Gold,1 +Stars,Piraka,15,2010,Pearl Light Gray,2 +Stars,Piraka,15,2010,Trans-Neon Orange,1 +Station,Shell Service Station,190,1978,Red,16 +Station,Shell Service Station,190,1978,Trans-Clear,7 +Station,Shell Service Station,190,1978,White,19 +Station,Shell Service Station,190,1978,Yellow,12 +Station,Shell Service Station,190,1978,Black,13 +Station,Shell Service Station,190,1978,Blue,2 +Station,Shell Service Station,190,1978,Green,1 +Station,Shell Service Station,190,1978,Light Gray,3 +Station,Shell Fuel Tanker,73,1978,[No Color],1 +Station,Shell Fuel Tanker,73,1978,Black,1 +Station,Shell Fuel Tanker,73,1978,Blue,1 +Station,Shell Fuel Tanker,73,1978,Light Gray,9 +Station,Shell Fuel Tanker,73,1978,Red,3 +Station,Shell Fuel Tanker,73,1978,Trans-Clear,2 +Station,Shell Fuel Tanker,73,1978,White,9 +Station,Shell Fuel Tanker,73,1978,Yellow,10 +Station,Shell Service Car,21,1978,Blue,1 +Station,Shell Service Car,21,1978,Trans-Clear,1 +Station,Shell Service Car,21,1978,White,3 +Station,Shell Service Car,21,1978,Yellow,5 +Station,Shell Service Car,21,1978,Black,1 +Station,Shell Service Car,21,1978,Light Gray,1 +Station,Shell Service Car,21,1978,Red,2 +Station,Shell Gas Pump,12,1978,Black,1 +Station,Shell Gas Pump,12,1978,Light Gray,1 +Station,Shell Gas Pump,12,1978,Trans-Clear,1 +Station,Shell Gas Pump,12,1978,White,4 +Station,Shell Gas Pump,12,1978,Yellow,2 +Station,Shell Gas Pump,12,1978,Blue,1 +Station,Shell Gas Pump,12,1978,Red,2 +Station,Gas N' Wash Express,473,2001,Black,39 +Station,Gas N' Wash Express,473,2001,Blue,4 +Station,Gas N' Wash Express,473,2001,Brown,1 +Station,Gas N' Wash Express,473,2001,Green,16 +Station,Gas N' Wash Express,473,2001,Light Gray,22 +Station,Gas N' Wash Express,473,2001,Medium Blue,1 +Station,Gas N' Wash Express,473,2001,Red,25 +Station,Gas N' Wash Express,473,2001,Trans-Clear,3 +Station,Gas N' Wash Express,473,2001,Trans-Green,1 +Station,Gas N' Wash Express,473,2001,Trans-Light Blue,1 +Station,Gas N' Wash Express,473,2001,Trans-Red,3 +Station,Gas N' Wash Express,473,2001,Trans-Yellow,2 +Station,Gas N' Wash Express,473,2001,White,56 +Station,Gas N' Wash Express,473,2001,Yellow,4 +Stingrays,Stingray Stormer,413,1998,Yellow,3 +Stingrays,Stingray Stormer,413,1998,Blue,2 +Stingrays,Stingray Stormer,413,1998,Black,50 +Stingrays,Stingray Stormer,413,1998,Trans-Neon Green,10 +Stingrays,Stingray Stormer,413,1998,Brown,7 +Stingrays,Stingray Stormer,413,1998,Chrome Silver,2 +Stingrays,Stingray Stormer,413,1998,Dark Gray,26 +Stingrays,Stingray Stormer,413,1998,Light Gray,5 +Stingrays,Stingray Stormer,413,1998,Red,18 +Stingrays,Sea Scorpion,305,1998,Yellow,3 +Stingrays,Sea Scorpion,305,1998,Black,34 +Stingrays,Sea Scorpion,305,1998,Blue,3 +Stingrays,Sea Scorpion,305,1998,Brown,7 +Stingrays,Sea Scorpion,305,1998,Dark Gray,19 +Stingrays,Sea Scorpion,305,1998,Light Gray,6 +Stingrays,Sea Scorpion,305,1998,Red,17 +Stingrays,Sea Scorpion,305,1998,Trans-Neon Green,10 +Stingrays,Sea Scorpion,305,1998,Chrome Silver,3 +Stingrays,"Sea Creeper (with Stingray Baseplate, Raised)",79,1998,Yellow,1 +Stingrays,"Sea Creeper (with Stingray Baseplate, Raised)",79,1998,Black,11 +Stingrays,"Sea Creeper (with Stingray Baseplate, Raised)",79,1998,Brown,4 +Stingrays,"Sea Creeper (with Stingray Baseplate, Raised)",79,1998,Chrome Silver,1 +Stingrays,"Sea Creeper (with Stingray Baseplate, Raised)",79,1998,Dark Gray,9 +Stingrays,"Sea Creeper (with Stingray Baseplate, Raised)",79,1998,Light Gray,2 +Stingrays,"Sea Creeper (with Stingray Baseplate, Raised)",79,1998,Red,6 +Stingrays,"Sea Creeper (with Stingray Baseplate, Raised)",79,1998,Trans-Neon Green,5 +Stingrays,Crab,78,1998,Dark Gray,9 +Stingrays,Crab,78,1998,Brown,4 +Stingrays,Crab,78,1998,Red,6 +Stingrays,Crab,78,1998,Chrome Silver,1 +Stingrays,Crab,78,1998,Trans-Neon Green,5 +Stingrays,Crab,78,1998,Yellow,1 +Stingrays,Crab,78,1998,Black,10 +Stingrays,Crab,78,1998,Light Gray,2 +Stingrays,Recon Ray,20,1998,Trans-Neon Green,1 +Stingrays,Recon Ray,20,1998,Yellow,1 +Stingrays,Recon Ray,20,1998,Black,2 +Stingrays,Recon Ray,20,1998,Chrome Silver,2 +Stingrays,Recon Ray,20,1998,Dark Gray,4 +Stingrays,Recon Ray,20,1998,Light Gray,4 +Stingrays,Recon Ray,20,1998,Red,2 +Studios,Steven Spielberg Moviemaker Set,447,2000,Light Gray,36 +Studios,Steven Spielberg Moviemaker Set,447,2000,Red,12 +Studios,Steven Spielberg Moviemaker Set,447,2000,Trans-Dark Blue,1 +Studios,Steven Spielberg Moviemaker Set,447,2000,Trans-Green,1 +Studios,Steven Spielberg Moviemaker Set,447,2000,Trans-Neon Green,1 +Studios,Steven Spielberg Moviemaker Set,447,2000,Trans-Neon Orange,1 +Studios,Steven Spielberg Moviemaker Set,447,2000,Trans-Red,1 +Studios,Steven Spielberg Moviemaker Set,447,2000,White,15 +Studios,Steven Spielberg Moviemaker Set,447,2000,Yellow,22 +Studios,Steven Spielberg Moviemaker Set,447,2000,[No Color],3 +Studios,Steven Spielberg Moviemaker Set,447,2000,Black,44 +Studios,Steven Spielberg Moviemaker Set,447,2000,Blue,13 +Studios,Steven Spielberg Moviemaker Set,447,2000,Brown,1 +Studios,Steven Spielberg Moviemaker Set,447,2000,Chrome Silver,1 +Studios,Steven Spielberg Moviemaker Set,447,2000,Dark Gray,13 +Studios,Steven Spielberg Moviemaker Set,447,2000,Green,17 +Studios,Explosion Studio,237,2000,White,17 +Studios,Explosion Studio,237,2000,Chrome Silver,1 +Studios,Explosion Studio,237,2000,Light Gray,21 +Studios,Explosion Studio,237,2000,Dark Gray,2 +Studios,Explosion Studio,237,2000,Green,1 +Studios,Explosion Studio,237,2000,Black,24 +Studios,Explosion Studio,237,2000,Blue,7 +Studios,Explosion Studio,237,2000,Chrome Gold,4 +Studios,Explosion Studio,237,2000,Red,5 +Studios,Explosion Studio,237,2000,Trans-Light Blue,1 +Studios,Explosion Studio,237,2000,Trans-Neon Green,1 +Studios,Explosion Studio,237,2000,Trans-Red,2 +Studios,Explosion Studio,237,2000,Yellow,15 +Studios,Dino Head Attack,95,2000,Red,1 +Studios,Dino Head Attack,95,2000,Tan,1 +Studios,Dino Head Attack,95,2000,Trans-Green,1 +Studios,Dino Head Attack,95,2000,White,6 +Studios,Dino Head Attack,95,2000,Yellow,3 +Studios,Dino Head Attack,95,2000,Trans-Red,1 +Studios,Dino Head Attack,95,2000,Blue,3 +Studios,Dino Head Attack,95,2000,Brown,1 +Studios,Dino Head Attack,95,2000,Dark Gray,1 +Studios,Dino Head Attack,95,2000,Green,15 +Studios,Dino Head Attack,95,2000,Black,13 +Studios,Dino Head Attack,95,2000,Light Gray,8 +Studios,Temple of Gloom,58,2000,Black,8 +Studios,Temple of Gloom,58,2000,Blue,4 +Studios,Temple of Gloom,58,2000,Brown,1 +Studios,Temple of Gloom,58,2000,Dark Gray,7 +Studios,Temple of Gloom,58,2000,Green,1 +Studios,Temple of Gloom,58,2000,Light Gray,7 +Studios,Temple of Gloom,58,2000,Tan,2 +Studios,Temple of Gloom,58,2000,Trans-Neon Orange,1 +Studios,Temple of Gloom,58,2000,Trans-Red,1 +Studios,Temple of Gloom,58,2000,White,4 +Studios,Temple of Gloom,58,2000,Yellow,3 +Studios,Scary Laboratory,500,2002,[No Color],3 +Studios,Scary Laboratory,500,2002,Black,41 +Studios,Scary Laboratory,500,2002,Brown,6 +Studios,Scary Laboratory,500,2002,Dark Gray,33 +Studios,Scary Laboratory,500,2002,Dark Red,3 +Studios,Scary Laboratory,500,2002,Flat Silver,1 +Studios,Scary Laboratory,500,2002,Glow In Dark Opaque,1 +Studios,Scary Laboratory,500,2002,Light Gray,33 +Studios,Scary Laboratory,500,2002,Orange,2 +Studios,Scary Laboratory,500,2002,Red,1 +Studios,Scary Laboratory,500,2002,Sand Blue,14 +Studios,Scary Laboratory,500,2002,Sand Green,2 +Studios,Scary Laboratory,500,2002,Tan,2 +Studios,Scary Laboratory,500,2002,Trans-Clear,3 +Studios,Scary Laboratory,500,2002,Trans-Green,2 +Studios,Scary Laboratory,500,2002,Trans-Neon Green,5 +Studios,Scary Laboratory,500,2002,Trans-Neon Orange,1 +Studios,Scary Laboratory,500,2002,Trans-Purple,1 +Studios,Scary Laboratory,500,2002,Trans-Red,1 +Studios,Scary Laboratory,500,2002,Trans-Yellow,1 +Studios,Scary Laboratory,500,2002,White,11 +Studios,Scary Laboratory,500,2002,Yellow,5 +Studios,Vampire's Crypt,171,2002,Trans-Clear,1 +Studios,Vampire's Crypt,171,2002,Trans-Neon Orange,1 +Studios,Vampire's Crypt,171,2002,Trans-Red,1 +Studios,Vampire's Crypt,171,2002,White,5 +Studios,Vampire's Crypt,171,2002,Yellow,3 +Studios,Vampire's Crypt,171,2002,Red,1 +Studios,Vampire's Crypt,171,2002,Royal Blue,1 +Studios,Vampire's Crypt,171,2002,Sand Blue,6 +Studios,Vampire's Crypt,171,2002,Tan,2 +Studios,Vampire's Crypt,171,2002,Black,26 +Studios,Vampire's Crypt,171,2002,Blue,5 +Studios,Vampire's Crypt,171,2002,Brown,8 +Studios,Vampire's Crypt,171,2002,Dark Gray,23 +Studios,Vampire's Crypt,171,2002,Light Gray,11 +Studios,Werewolf Ambush,114,2002,Light Gray,7 +Studios,Werewolf Ambush,114,2002,Orange,1 +Studios,Werewolf Ambush,114,2002,Sand Blue,3 +Studios,Werewolf Ambush,114,2002,Tan,2 +Studios,Werewolf Ambush,114,2002,Trans-Clear,2 +Studios,Werewolf Ambush,114,2002,Trans-Red,1 +Studios,Werewolf Ambush,114,2002,Trans-Yellow,1 +Studios,Werewolf Ambush,114,2002,White,1 +Studios,Werewolf Ambush,114,2002,Yellow,3 +Studios,Werewolf Ambush,114,2002,Black,13 +Studios,Werewolf Ambush,114,2002,Blue,2 +Studios,Werewolf Ambush,114,2002,Brown,16 +Studios,Werewolf Ambush,114,2002,Dark Blue,2 +Studios,Werewolf Ambush,114,2002,Dark Gray,10 +Studios,Werewolf Ambush,114,2002,Dark Red,2 +Studios,Werewolf Ambush,114,2002,Green,4 +Studios,Curse of the Pharaoh,52,2002,Black,4 +Studios,Curse of the Pharaoh,52,2002,Dark Gray,7 +Studios,Curse of the Pharaoh,52,2002,Glow In Dark Opaque,1 +Studios,Curse of the Pharaoh,52,2002,Light Gray,4 +Studios,Curse of the Pharaoh,52,2002,Sand Blue,1 +Studios,Curse of the Pharaoh,52,2002,Tan,11 +Studios,Curse of the Pharaoh,52,2002,Trans-Neon Green,1 +Studios,Curse of the Pharaoh,52,2002,Trans-Neon Orange,1 +Studios,Curse of the Pharaoh,52,2002,White,4 +Super Heroes,Super Hero Airport Battle,814,2016,Reddish Brown,6 +Super Heroes,Super Hero Airport Battle,814,2016,Trans-Clear,5 +Super Heroes,Super Hero Airport Battle,814,2016,Sand Blue,1 +Super Heroes,Super Hero Airport Battle,814,2016,Tan,5 +Super Heroes,Super Hero Airport Battle,814,2016,Yellow,13 +Super Heroes,Super Hero Airport Battle,814,2016,Trans-Black,2 +Super Heroes,Super Hero Airport Battle,814,2016,White,27 +Super Heroes,Super Hero Airport Battle,814,2016,Trans-Dark Blue,1 +Super Heroes,Super Hero Airport Battle,814,2016,Trans-Dark Pink,2 +Super Heroes,Super Hero Airport Battle,814,2016,Trans-Light Blue,4 +Super Heroes,Super Hero Airport Battle,814,2016,Light Bluish Gray,63 +Super Heroes,Super Hero Airport Battle,814,2016,Trans-Orange,1 +Super Heroes,Super Hero Airport Battle,814,2016,Trans-Red,5 +Super Heroes,Super Hero Airport Battle,814,2016,Dark Blue,27 +Super Heroes,Super Hero Airport Battle,814,2016,Trans-Yellow,3 +Super Heroes,Super Hero Airport Battle,814,2016,Green,1 +Super Heroes,Super Hero Airport Battle,814,2016,Dark Tan,1 +Super Heroes,Super Hero Airport Battle,814,2016,Dark Red,6 +Super Heroes,Super Hero Airport Battle,814,2016,Dark Brown,1 +Super Heroes,Super Hero Airport Battle,814,2016,Dark Bluish Gray,67 +Super Heroes,Super Hero Airport Battle,814,2016,Light Flesh,4 +Super Heroes,Super Hero Airport Battle,814,2016,Blue,3 +Super Heroes,Super Hero Airport Battle,814,2016,Black,84 +Super Heroes,Super Hero Airport Battle,814,2016,Red,14 +Super Heroes,Super Hero Airport Battle,814,2016,Orange,3 +Super Heroes,Super Hero Airport Battle,814,2016,Medium Dark Flesh,1 +Super Heroes,Super Hero Airport Battle,814,2016,Lime,1 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Dark Tan,1 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Flat Silver,4 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Green,13 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Light Bluish Gray,24 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Orange,5 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Red,5 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Tan,4 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Trans-Black,1 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Trans-Clear,3 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Trans-Green,1 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Trans-Light Blue,4 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Yellow,1 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,[No Color],1 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Black,61 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Blue,7 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Dark Blue,2 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Light Flesh,4 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Dark Brown,1 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Dark Orange,2 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Dark Red,2 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Trans-Red,1 +Super Heroes,Heroes of Justice: Sky High Battle,516,2016,Dark Bluish Gray,46 +Super Heroes,Kryptonite Interception,308,2016,Dark Green,1 +Super Heroes,Kryptonite Interception,308,2016,Dark Tan,1 +Super Heroes,Kryptonite Interception,308,2016,Flat Silver,3 +Super Heroes,Kryptonite Interception,308,2016,Green,3 +Super Heroes,Kryptonite Interception,308,2016,White,3 +Super Heroes,Kryptonite Interception,308,2016,Trans-Red,2 +Super Heroes,Kryptonite Interception,308,2016,Trans-Clear,3 +Super Heroes,Kryptonite Interception,308,2016,Trans-Bright Green,1 +Super Heroes,Kryptonite Interception,308,2016,Tan,1 +Super Heroes,Kryptonite Interception,308,2016,Reddish Brown,2 +Super Heroes,Kryptonite Interception,308,2016,Light Flesh,2 +Super Heroes,Kryptonite Interception,308,2016,Light Bluish Gray,21 +Super Heroes,Kryptonite Interception,308,2016,Black,56 +Super Heroes,Kryptonite Interception,308,2016,Blue,5 +Super Heroes,Kryptonite Interception,308,2016,Dark Bluish Gray,25 +Super Heroes,Kryptonite Interception,308,2016,Dark Brown,2 +Super Heroes,Harley Quinn to the rescue,217,2016,Trans-Light Blue,1 +Super Heroes,Harley Quinn to the rescue,217,2016,Black,6 +Super Heroes,Harley Quinn to the rescue,217,2016,Trans-Yellow,2 +Super Heroes,Harley Quinn to the rescue,217,2016,White,14 +Super Heroes,Harley Quinn to the rescue,217,2016,Yellow,2 +Super Heroes,Harley Quinn to the rescue,217,2016,Blue,11 +Super Heroes,Harley Quinn to the rescue,217,2016,[No Color],1 +Super Heroes,Harley Quinn to the rescue,217,2016,Bright Light Orange,4 +Super Heroes,Harley Quinn to the rescue,217,2016,Bright Light Yellow,1 +Super Heroes,Harley Quinn to the rescue,217,2016,Bright Pink,5 +Super Heroes,Harley Quinn to the rescue,217,2016,Dark Bluish Gray,3 +Super Heroes,Harley Quinn to the rescue,217,2016,Dark Pink,7 +Super Heroes,Harley Quinn to the rescue,217,2016,Green,2 +Super Heroes,Harley Quinn to the rescue,217,2016,Trans-Orange,1 +Super Heroes,Harley Quinn to the rescue,217,2016,Lavender,1 +Super Heroes,Harley Quinn to the rescue,217,2016,Light Bluish Gray,12 +Super Heroes,Harley Quinn to the rescue,217,2016,Light Flesh,4 +Super Heroes,Harley Quinn to the rescue,217,2016,Medium Azure,3 +Super Heroes,Harley Quinn to the rescue,217,2016,Medium Dark Flesh,5 +Super Heroes,Harley Quinn to the rescue,217,2016,Red,15 +Super Heroes,Harley Quinn to the rescue,217,2016,Reddish Brown,1 +Super Heroes,Harley Quinn to the rescue,217,2016,Tan,3 +Super Heroes,Harley Quinn to the rescue,217,2016,Trans-Bright Green,2 +Super Heroes,Harley Quinn to the rescue,217,2016,Trans-Clear,8 +Super Heroes,Harley Quinn to the rescue,217,2016,Trans-Dark Pink,1 +Super Heroes,Harley Quinn to the rescue,217,2016,Bright Green,3 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Trans-Bright Green,4 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Trans-Dark Blue,3 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Trans-Light Blue,1 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Trans-Neon Green,1 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Trans-Orange,1 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Trans-Red,2 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Trans-Yellow,2 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,White,2 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Yellow,7 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Lime,7 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Black,28 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Blue,12 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Bright Green,1 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Bright Light Blue,1 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Dark Bluish Gray,5 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Dark Purple,5 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Flat Silver,2 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Green,2 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Light Bluish Gray,11 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Light Flesh,3 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Medium Blue,3 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Pearl Dark Gray,1 +Super Heroes,Batman & Superman vs. Lex Luthor,164,2016,Red,6 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Reddish Brown,1 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Medium Dark Flesh,1 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Olive Green,4 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Red,2 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Trans-Black,1 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Trans-Clear,2 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Trans-Dark Blue,1 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Yellow,4 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,[No Color],1 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Black,9 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Blue,4 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Dark Blue,4 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Dark Bluish Gray,8 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Dark Orange,1 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Dark Tan,1 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Flat Silver,2 +Super Heroes,Mighty Micros: Captain America vs. Red Skull,95,2016,Light Bluish Gray,7 +Super Heroes,Clash of the Heroes,91,2016,Dark Tan,5 +Super Heroes,Clash of the Heroes,91,2016,Flat Silver,1 +Super Heroes,Clash of the Heroes,91,2016,Glow in Dark White,1 +Super Heroes,Clash of the Heroes,91,2016,Green,2 +Super Heroes,Clash of the Heroes,91,2016,Light Flesh,1 +Super Heroes,Clash of the Heroes,91,2016,Pearl Dark Gray,4 +Super Heroes,Clash of the Heroes,91,2016,Red,1 +Super Heroes,Clash of the Heroes,91,2016,Trans-Bright Green,2 +Super Heroes,Clash of the Heroes,91,2016,Trans-Clear,1 +Super Heroes,Clash of the Heroes,91,2016,Trans-Neon Orange,2 +Super Heroes,Clash of the Heroes,91,2016,Light Bluish Gray,11 +Super Heroes,Clash of the Heroes,91,2016,[No Color],1 +Super Heroes,Clash of the Heroes,91,2016,Black,16 +Super Heroes,Clash of the Heroes,91,2016,Blue,1 +Super Heroes,Clash of the Heroes,91,2016,Dark Blue,2 +Super Heroes,Clash of the Heroes,91,2016,Dark Bluish Gray,9 +Super Heroes,Clash of the Heroes,91,2016,Dark Orange,1 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,White,4 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Yellow,1 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Black,2 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Blue,5 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Bright Light Orange,2 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Dark Bluish Gray,2 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Dark Tan,1 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Reddish Brown,1 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Flat Silver,4 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Light Bluish Gray,11 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Light Flesh,1 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Lime,1 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Medium Blue,2 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Red,10 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Tan,1 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Trans-Black,1 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Trans-Clear,1 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Trans-Light Blue,2 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Trans-Red,1 +Super Heroes,Mighty Micros: The Flash™ vs. Captain Cold™,88,2016,Trans-Yellow,2 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Trans-Black,2 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Reddish Brown,1 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Red,4 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Orange,1 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Olive Green,1 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Black,6 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Blue,10 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Bright Green,1 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Dark Purple,3 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Light Bluish Gray,7 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Flat Silver,1 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Green,5 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Yellow,1 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,White,3 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Trans-Orange,2 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Dark Bluish Gray,1 +Super Heroes,Mighty Micros: Spider-Man vs. Green Goblin,85,2016,Trans-Clear,1 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Reddish Brown,1 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Trans-Black,1 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Trans-Bright Green,1 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Trans-Clear,1 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Trans-Orange,1 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Trans-Red,1 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Black,6 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Bright Green,5 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Dark Bluish Gray,4 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Dark Orange,1 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Dark Purple,4 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Dark Tan,1 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Light Bluish Gray,8 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Medium Dark Flesh,1 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Flat Silver,7 +Super Heroes,Mighty Micros: Hulk vs. Ultron,80,2016,Olive Green,1 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Trans-Clear,1 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Trans-Orange,2 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Trans-Red,1 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Trans-Yellow,1 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,White,1 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Yellow,5 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Trans-Black,1 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Medium Blue,1 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Dark Purple,3 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Reddish Brown,1 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Black,20 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Dark Bluish Gray,3 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Flat Silver,2 +Super Heroes,Mighty Micros: Batman™ vs. Catwoman™,79,2016,Light Bluish Gray,5 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Black,9 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Dark Bluish Gray,3 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Flat Silver,4 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Green,2 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Light Bluish Gray,4 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Light Flesh,1 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Lime,4 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Orange,2 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Red,8 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Reddish Brown,1 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Trans-Black,1 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Trans-Clear,1 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Trans-Orange,1 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Yellow,5 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Trans-Yellow,1 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Trans-Red,1 +Super Heroes,Mighty Micros: Robin™ vs. Bane™,77,2016,Dark Tan,1 +Super Heroes,Cosmic Boy,7,2016,Light Flesh,1 +Super Heroes,Cosmic Boy,7,2016,Black,2 +Super Heroes,Cosmic Boy,7,2016,White,1 +Super Heroes,Cosmic Boy,7,2016,Trans-Purple,2 +Super Heroes,Nightwing,6,2016,Trans-Light Blue,1 +Super Heroes,Nightwing,6,2016,Light Flesh,1 +Super Heroes,Nightwing,6,2016,Black,3 +Super Heroes,Super Hero High School,711,2017,Dark Bluish Gray,13 +Super Heroes,Super Hero High School,711,2017,Dark Azure,3 +Super Heroes,Super Hero High School,711,2017,Pearl Dark Gray,1 +Super Heroes,Super Hero High School,711,2017,Bright Pink,2 +Super Heroes,Super Hero High School,711,2017,Bright Light Yellow,1 +Super Heroes,Super Hero High School,711,2017,Bright Light Orange,8 +Super Heroes,Super Hero High School,711,2017,Bright Green,2 +Super Heroes,Super Hero High School,711,2017,Blue,3 +Super Heroes,Super Hero High School,711,2017,Black,31 +Super Heroes,Super Hero High School,711,2017,[No Color],1 +Super Heroes,Super Hero High School,711,2017,Yellow,5 +Super Heroes,Super Hero High School,711,2017,White,55 +Super Heroes,Super Hero High School,711,2017,Trans-Red,1 +Super Heroes,Super Hero High School,711,2017,Trans-Purple,4 +Super Heroes,Super Hero High School,711,2017,Trans-Neon Orange,1 +Super Heroes,Super Hero High School,711,2017,Trans-Light Blue,7 +Super Heroes,Super Hero High School,711,2017,Trans-Green,1 +Super Heroes,Super Hero High School,711,2017,Trans-Dark Pink,5 +Super Heroes,Super Hero High School,711,2017,Trans-Clear,3 +Super Heroes,Super Hero High School,711,2017,Trans-Bright Green,2 +Super Heroes,Super Hero High School,711,2017,Tan,15 +Super Heroes,Super Hero High School,711,2017,Reddish Brown,1 +Super Heroes,Super Hero High School,711,2017,Red,22 +Super Heroes,Super Hero High School,711,2017,Pearl Gold,2 +Super Heroes,Super Hero High School,711,2017,Orange,1 +Super Heroes,Super Hero High School,711,2017,Medium Lavender,3 +Super Heroes,Super Hero High School,711,2017,Medium Dark Flesh,5 +Super Heroes,Super Hero High School,711,2017,Medium Azure,4 +Super Heroes,Super Hero High School,711,2017,Magenta,1 +Super Heroes,Super Hero High School,711,2017,Lime,9 +Super Heroes,Super Hero High School,711,2017,Light Flesh,5 +Super Heroes,Super Hero High School,711,2017,Light Bluish Gray,46 +Super Heroes,Super Hero High School,711,2017,Lavender,4 +Super Heroes,Super Hero High School,711,2017,Green,14 +Super Heroes,Super Hero High School,711,2017,Flat Silver,7 +Super Heroes,Super Hero High School,711,2017,Dark Tan,1 +Super Heroes,Super Hero High School,711,2017,Dark Purple,2 +Super Heroes,Super Hero High School,711,2017,Dark Pink,2 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Olive Green,1 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Orange,1 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Red,6 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Reddish Brown,2 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Tan,3 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Trans-Clear,2 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Trans-Orange,2 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Trans-Red,1 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,White,18 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Yellow,2 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Pearl Dark Gray,1 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Black,22 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Blue,1 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Dark Blue,4 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Dark Bluish Gray,26 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Dark Brown,3 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Dark Red,1 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Dark Tan,9 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Flat Silver,4 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Light Bluish Gray,23 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Light Flesh,2 +Super Heroes,"Wonder Woman"" Warrior Battle",285,2017,Medium Azure,1 +Super Heroes,Batgirl Batjet Chase,206,2017,[No Color],1 +Super Heroes,Batgirl Batjet Chase,206,2017,Black,35 +Super Heroes,Batgirl Batjet Chase,206,2017,Bright Light Orange,4 +Super Heroes,Batgirl Batjet Chase,206,2017,Dark Blue,9 +Super Heroes,Batgirl Batjet Chase,206,2017,Dark Bluish Gray,9 +Super Heroes,Batgirl Batjet Chase,206,2017,Dark Purple,4 +Super Heroes,Batgirl Batjet Chase,206,2017,Flat Silver,2 +Super Heroes,Batgirl Batjet Chase,206,2017,Light Bluish Gray,9 +Super Heroes,Batgirl Batjet Chase,206,2017,Light Flesh,1 +Super Heroes,Batgirl Batjet Chase,206,2017,Lime,1 +Super Heroes,Batgirl Batjet Chase,206,2017,Orange,1 +Super Heroes,Batgirl Batjet Chase,206,2017,Yellow,4 +Super Heroes,Batgirl Batjet Chase,206,2017,White,2 +Super Heroes,Batgirl Batjet Chase,206,2017,Trans-Yellow,2 +Super Heroes,Batgirl Batjet Chase,206,2017,Trans-Orange,1 +Super Heroes,Batgirl Batjet Chase,206,2017,Trans-Neon Orange,1 +Super Heroes,Batgirl Batjet Chase,206,2017,Trans-Neon Green,1 +Super Heroes,Batgirl Batjet Chase,206,2017,Trans-Light Blue,1 +Super Heroes,Batgirl Batjet Chase,206,2017,Red,2 +Super Heroes,Batgirl Batjet Chase,206,2017,Trans-Clear,2 +Super Heroes,Batgirl Batjet Chase,206,2017,Trans-Bright Green,1 +Super Heroes,Batgirl Batjet Chase,206,2017,Magenta,2 +Super Heroes,Batgirl Batjet Chase,206,2017,Medium Lavender,9 +Super Heroes,Wonder Woman Dorm,186,2017,Pearl Gold,10 +Super Heroes,Wonder Woman Dorm,186,2017,Orange,2 +Super Heroes,Wonder Woman Dorm,186,2017,Bright Light Blue,1 +Super Heroes,Wonder Woman Dorm,186,2017,Blue,15 +Super Heroes,Wonder Woman Dorm,186,2017,Black,3 +Super Heroes,Wonder Woman Dorm,186,2017,[No Color],1 +Super Heroes,Wonder Woman Dorm,186,2017,Flat Silver,2 +Super Heroes,Wonder Woman Dorm,186,2017,Light Flesh,2 +Super Heroes,Wonder Woman Dorm,186,2017,Light Bluish Gray,7 +Super Heroes,Wonder Woman Dorm,186,2017,White,21 +Super Heroes,Wonder Woman Dorm,186,2017,Trans-Dark Blue,2 +Super Heroes,Wonder Woman Dorm,186,2017,Trans-Orange,1 +Super Heroes,Wonder Woman Dorm,186,2017,Trans-Light Blue,1 +Super Heroes,Wonder Woman Dorm,186,2017,Dark Blue,1 +Super Heroes,Wonder Woman Dorm,186,2017,Dark Red,1 +Super Heroes,Wonder Woman Dorm,186,2017,Trans-Clear,5 +Super Heroes,Wonder Woman Dorm,186,2017,Tan,3 +Super Heroes,Wonder Woman Dorm,186,2017,Reddish Brown,1 +Super Heroes,Wonder Woman Dorm,186,2017,Red,20 +Super Heroes,"Lashina"" Tank",142,2017,Trans-Clear,1 +Super Heroes,"Lashina"" Tank",142,2017,Trans-Light Blue,6 +Super Heroes,"Lashina"" Tank",142,2017,White,5 +Super Heroes,"Lashina"" Tank",142,2017,Yellow,2 +Super Heroes,"Lashina"" Tank",142,2017,Magenta,6 +Super Heroes,"Lashina"" Tank",142,2017,Medium Azure,2 +Super Heroes,"Lashina"" Tank",142,2017,Medium Dark Flesh,1 +Super Heroes,"Lashina"" Tank",142,2017,Red,6 +Super Heroes,"Lashina"" Tank",142,2017,Light Bluish Gray,13 +Super Heroes,"Lashina"" Tank",142,2017,Dark Azure,4 +Super Heroes,"Lashina"" Tank",142,2017,Black,13 +Super Heroes,"Lashina"" Tank",142,2017,Bright Light Orange,2 +Super Heroes,"Lashina"" Tank",142,2017,Trans-Bright Green,1 +Super Heroes,"Lashina"" Tank",142,2017,Dark Bluish Gray,11 +Super Heroes,"Lashina"" Tank",142,2017,Flat Silver,1 +Super Heroes,"Lashina"" Tank",142,2017,Light Flesh,2 +Super Heroes,Bumblebee Helicopter,141,2017,Light Bluish Gray,11 +Super Heroes,Bumblebee Helicopter,141,2017,Green,2 +Super Heroes,Bumblebee Helicopter,141,2017,Dark Bluish Gray,13 +Super Heroes,Bumblebee Helicopter,141,2017,Bright Light Orange,4 +Super Heroes,Bumblebee Helicopter,141,2017,Medium Azure,3 +Super Heroes,Bumblebee Helicopter,141,2017,Trans-Orange,2 +Super Heroes,Bumblebee Helicopter,141,2017,Black,4 +Super Heroes,Bumblebee Helicopter,141,2017,Blue,1 +Super Heroes,Bumblebee Helicopter,141,2017,White,13 +Super Heroes,Bumblebee Helicopter,141,2017,Trans-Red,3 +Super Heroes,Bumblebee Helicopter,141,2017,Trans-Neon Green,2 +Super Heroes,Bumblebee Helicopter,141,2017,Trans-Light Blue,1 +Super Heroes,Bumblebee Helicopter,141,2017,Trans-Dark Pink,1 +Super Heroes,Bumblebee Helicopter,141,2017,Dark Brown,2 +Super Heroes,Bumblebee Helicopter,141,2017,Trans-Clear,3 +Super Heroes,Bumblebee Helicopter,141,2017,Trans-Bright Green,1 +Super Heroes,Bumblebee Helicopter,141,2017,Red,3 +Super Heroes,Bumblebee Helicopter,141,2017,[No Color],1 +Super Heroes,Bumblebee Helicopter,141,2017,Pearl Dark Gray,2 +Super Heroes,Bumblebee Helicopter,141,2017,Tan,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Trans-Orange,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Yellow,2 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Light Flesh,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Black,4 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Blue,3 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Dark Bluish Gray,4 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Dark Tan,3 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Flat Silver,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Light Bluish Gray,8 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Metallic Gold,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Trans-Yellow,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Pearl Gold,5 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Red,7 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Reddish Brown,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Tan,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Trans-Black,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Trans-Dark Pink,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Trans-Green,1 +Super Heroes,Mighty Micros: Iron Man vs. Thanos,94,2017,Trans-Light Blue,3 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Dark Bluish Gray,2 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Blue,1 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Black,4 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,White,10 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Trans-Orange,1 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Trans-Clear,6 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Reddish Brown,1 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Red,1 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Lime,1 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Light Flesh,1 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Light Bluish Gray,7 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Green,4 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Flat Silver,2 +Super Heroes,Mighty Micros: Wonder Woman vs. Doomsday,85,2017,Dark Tan,2 +Super Heroes,Krypto Saves the Day,55,2017,Light Bluish Gray,4 +Super Heroes,Krypto Saves the Day,55,2017,Black,1 +Super Heroes,Krypto Saves the Day,55,2017,Bright Green,2 +Super Heroes,Krypto Saves the Day,55,2017,Dark Azure,3 +Super Heroes,Krypto Saves the Day,55,2017,Red,2 +Super Heroes,Krypto Saves the Day,55,2017,Trans-Bright Green,2 +Super Heroes,Krypto Saves the Day,55,2017,Trans-Clear,1 +Super Heroes,Krypto Saves the Day,55,2017,Trans-Dark Pink,1 +Super Heroes,Krypto Saves the Day,55,2017,Trans-Light Blue,1 +Super Heroes,Krypto Saves the Day,55,2017,Trans-Orange,1 +Super Heroes,Krypto Saves the Day,55,2017,Trans-Yellow,1 +Super Heroes,Krypto Saves the Day,55,2017,White,3 +Super Heroes,Krypto Saves the Day,55,2017,Yellow,1 +Super Heroes,Krypto Saves the Day,55,2017,Dark Bluish Gray,3 +Super Heroes,Krypto Saves the Day,55,2017,Dark Purple,2 +Superman,Super Heroes Unite - Superman - New York Comic-Con 2011 Exclusive,5,2011,Black,1 +Superman,Super Heroes Unite - Superman - New York Comic-Con 2011 Exclusive,5,2011,Blue,2 +Superman,Super Heroes Unite - Superman - New York Comic-Con 2011 Exclusive,5,2011,Light Flesh,1 +Superman,Super Heroes Unite - Superman - New York Comic-Con 2011 Exclusive,5,2011,Red,1 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Black,5 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Blue,9 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Dark Bluish Gray,1 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Dark Purple,6 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Dark Tan,1 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Flat Silver,2 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Light Bluish Gray,9 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Light Flesh,1 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Red,3 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Reddish Brown,2 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Trans-Black,1 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Trans-Bright Green,1 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Trans-Clear,2 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Trans-Medium Blue,1 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,Trans-Orange,1 +Superman,Mighty Micros: Superman™ vs. Bizarro™,93,2017,White,3 +Supplemental,Individual 2 x 4 Bricks,10,1950,White,1 +Supplemental,Individual 2 x 4 Bricks,10,1950,Medium Blue,1 +Supplemental,Individual 2 x 4 Bricks,10,1950,Medium Orange,1 +Supplemental,Individual 2 x 4 Bricks,10,1950,Yellow,1 +Supplemental,Individual 2 x 4 Bricks,10,1950,Trans-Clear,1 +Supplemental,Individual 2 x 4 Bricks,10,1950,Red,1 +Supplemental,Individual 2 x 4 Bricks,10,1950,Blue,1 +Supplemental,Individual 2 x 4 Bricks,10,1950,Bright Green,1 +Supplemental,Individual 2 x 4 Bricks,10,1950,Green,1 +Supplemental,Individual 2 x 4 Bricks,10,1950,Light Green,1 +Supplemental,Individual 2 x 2 Bricks,9,1950,Green,1 +Supplemental,Individual 2 x 2 Bricks,9,1950,Light Green,1 +Supplemental,Individual 2 x 2 Bricks,9,1950,Medium Blue,1 +Supplemental,Individual 2 x 2 Bricks,9,1950,Medium Orange,1 +Supplemental,Individual 2 x 2 Bricks,9,1950,Blue,1 +Supplemental,Individual 2 x 2 Bricks,9,1950,Trans-Clear,1 +Supplemental,Individual 2 x 2 Bricks,9,1950,White,1 +Supplemental,Individual 2 x 2 Bricks,9,1950,Yellow,1 +Supplemental,Individual 2 x 2 Bricks,9,1950,Red,1 +Supplemental,Individual 1 x 4 x 2 Window (without glass),7,1950,Green,1 +Supplemental,Individual 1 x 4 x 2 Window (without glass),7,1950,Red,1 +Supplemental,Individual 1 x 4 x 2 Window (without glass),7,1950,White,1 +Supplemental,Individual 1 x 4 x 2 Window (without glass),7,1950,Yellow,1 +Supplemental,Individual 1 x 4 x 2 Window (without glass),7,1950,Blue,1 +Supplemental,Individual 1 x 2 x 2 Window (without glass),7,1950,Blue,1 +Supplemental,Individual 1 x 2 x 2 Window (without glass),7,1950,Green,1 +Supplemental,Individual 1 x 2 x 2 Window (without glass),7,1950,Red,1 +Supplemental,Individual 1 x 2 x 2 Window (without glass),7,1950,White,1 +Supplemental,Individual 1 x 2 x 2 Window (without glass),7,1950,Yellow,1 +Supplemental,Individual 1 x 2 x 3 Window (without glass),7,1950,Blue,1 +Supplemental,Individual 1 x 2 x 3 Window (without glass),7,1950,Green,1 +Supplemental,Individual 1 x 2 x 3 Window (without glass),7,1950,Red,1 +Supplemental,Individual 1 x 2 x 3 Window (without glass),7,1950,White,1 +Supplemental,Individual 1 x 2 x 3 Window (without glass),7,1950,Yellow,1 +Supplemental,Individual 1 x 2 x 4 Door (without glass),7,1950,Blue,1 +Supplemental,Individual 1 x 2 x 4 Door (without glass),7,1950,Green,1 +Supplemental,Individual 1 x 2 x 4 Door (without glass),7,1950,Red,1 +Supplemental,Individual 1 x 2 x 4 Door (without glass),7,1950,White,1 +Supplemental,Individual 1 x 2 x 4 Door (without glass),7,1950,Yellow,1 +Supplemental,Large & Small Wheels & Turn-Table,35,1963,Light Gray,2 +Supplemental,Large & Small Wheels & Turn-Table,35,1963,Milky White,1 +Supplemental,Large & Small Wheels & Turn-Table,35,1963,Red,2 +Supplemental,Large & Small Wheels & Turn-Table,35,1963,White,2 +Supplemental,4.5V Motor Set with Rubber Tracks,24,1969,Black,3 +Supplemental,4.5V Motor Set with Rubber Tracks,24,1969,Blue,3 +Supplemental,4.5V Motor Set with Rubber Tracks,24,1969,Light Gray,1 +Supplemental,4.5V Motor Set with Rubber Tracks,24,1969,Red,2 +Supplemental,4.5V Motor Set with Rubber Tracks,24,1969,White,1 +Supplemental,Trees and Signs (1969 version with old style trees and 3 bricks),11,1969,Green,3 +Supplemental,Trees and Signs (1969 version with old style trees and 3 bricks),11,1969,White,5 +Supplemental,Supplementary Set,170,1976,Black,4 +Supplemental,Supplementary Set,170,1976,Blue,3 +Supplemental,Supplementary Set,170,1976,Red,8 +Supplemental,Supplementary Set,170,1976,Trans-Clear,2 +Supplemental,Supplementary Set,170,1976,White,1 +Supplemental,Supplementary Set,170,1976,Yellow,2 +Supplemental,Town Mini-Figures,12,1978,Black,3 +Supplemental,Town Mini-Figures,12,1978,Blue,2 +Supplemental,Town Mini-Figures,12,1978,Red,3 +Supplemental,Town Mini-Figures,12,1978,White,1 +Supplemental,Town Mini-Figures,12,1978,Yellow,1 +Supplemental,T-Junction Road Plates,2,1978,Light Gray,1 +Supplemental,Curved Road Plates,2,1978,Light Gray,1 +Supplemental,Straight Road Plates (with crosswalk),2,1978,Light Gray,1 +Supplemental,Space Mini-Figures,18,1979,Black,1 +Supplemental,Space Mini-Figures,18,1979,Red,4 +Supplemental,Space Mini-Figures,18,1979,White,4 +Supplemental,Space Mini-Figures,18,1979,Yellow,5 +Supplemental,Space Mini-Figures,12,1979,Black,1 +Supplemental,Space Mini-Figures,12,1979,Red,4 +Supplemental,Space Mini-Figures,12,1979,White,4 +Supplemental,Space Mini-Figures,12,1979,Yellow,5 +Supplemental,Two Crater Plates,2,1979,Light Gray,1 +Supplemental,Two Lunar Landing Plates,2,1979,Light Gray,3 +Supplemental,Building Cards - 1030,20,1983,[No Color],20 +Supplemental,Knights,25,1984,Black,3 +Supplemental,Knights,25,1984,Blue,3 +Supplemental,Knights,25,1984,Brown,3 +Supplemental,Knights,25,1984,Dark Gray,3 +Supplemental,Knights,25,1984,Light Gray,1 +Supplemental,Knights,25,1984,Red,5 +Supplemental,Knights,25,1984,Yellow,1 +Supplemental,Action Figures,14,1988,[No Color],3 +Supplemental,Action Figures,14,1988,Light Gray,2 +Supplemental,Action Figures,14,1988,Red,3 +Supplemental,Action Figures,14,1988,Trans-Clear,1 +Supplemental,Action Figures,14,1988,White,1 +Supplemental,Space Explorers,39,1994,Black,9 +Supplemental,Space Explorers,39,1994,Blue,2 +Supplemental,Space Explorers,39,1994,Dark Gray,1 +Supplemental,Space Explorers,39,1994,Light Gray,1 +Supplemental,Space Explorers,39,1994,Red,4 +Supplemental,Space Explorers,39,1994,Trans-Clear,1 +Supplemental,Space Explorers,39,1994,Trans-Dark Blue,2 +Supplemental,Space Explorers,39,1994,Trans-Neon Green,2 +Supplemental,Space Explorers,39,1994,Trans-Neon Orange,3 +Supplemental,Space Explorers,39,1994,White,2 +Supplemental,Space Explorers,39,1994,Yellow,5 +Supplemental,Aquacessories,27,1996,Black,5 +Supplemental,Aquacessories,27,1996,Blue,2 +Supplemental,Aquacessories,27,1996,Chrome Silver,3 +Supplemental,Aquacessories,27,1996,Dark Gray,2 +Supplemental,Aquacessories,27,1996,Green,2 +Supplemental,Aquacessories,27,1996,Red,2 +Supplemental,Aquacessories,27,1996,Trans-Dark Blue,1 +Supplemental,Aquacessories,27,1996,White,2 +Supplemental,Aquacessories,27,1996,Yellow,2 +Supplemental,Infomaniac,4,1997,Red,2 +Supplemental,Infomaniac,4,1997,White,1 +Supplemental,Infomaniac,4,1997,Yellow,1 +Supplemental,Cross Road Plates,2,1997,Green,1 +Supplemental,Curved Road Plates,2,1997,Green,1 +Supplemental,Straight Road Plates,2,1997,Green,1 +Supplemental,T-Road Plates,2,1997,Green,1 +Supplemental,Road Signs,43,1999,Light Gray,1 +Supplemental,Road Signs,43,1999,Trans-Dark Blue,1 +Supplemental,Road Signs,43,1999,Trans-Yellow,1 +Supplemental,Road Signs,43,1999,White,14 +Supplemental,Road Signs,43,1999,Yellow,5 +Supplemental,Power Pack,10,2001,[No Color],1 +Supplemental,Power Pack,10,2001,Black,3 +Supplemental,Power Pack,10,2001,Chrome Silver,1 +Supplemental,Power Pack,10,2001,Dark Gray,1 +Supplemental,Power Pack,10,2001,Tan,3 +Supplemental,Basic Bulk Tub (Overseas Version),1200,2002,Black,7 +Supplemental,Basic Bulk Tub (Overseas Version),1200,2002,Blue,10 +Supplemental,Basic Bulk Tub (Overseas Version),1200,2002,Green,7 +Supplemental,Basic Bulk Tub (Overseas Version),1200,2002,Red,10 +Supplemental,Basic Bulk Tub (Overseas Version),1200,2002,White,10 +Supplemental,Basic Bulk Tub (Overseas Version),1200,2002,Yellow,10 +Supplemental,Cross Road Plates,2,2002,Green,1 +Supplemental,Curved Road Plates,2,2002,Green,1 +Supplemental,Straight Road Plates,2,2002,Green,1 +Supplemental,T-Junction Road Plates,2,2002,Green,1 +Supplemental,X-Large Gray Baseplate (Lt Bluish Gray),1,2003,Light Bluish Gray,1 +Supplemental,Stunt Pack,35,2004,Yellow,2 +Supplemental,Racers Hazard Kit,35,2004,Red,1 +Supplemental,Racers Hazard Kit,35,2004,White,2 +Supplemental,Racers Hazard Kit,35,2004,Yellow,2 +Supplemental,Racers Hazard Kit,35,2004,Orange,3 +Supplemental,Stunt Pack,35,2004,Black,2 +Supplemental,Stunt Pack,35,2004,Dark Bluish Gray,1 +Supplemental,Stunt Pack,35,2004,Light Bluish Gray,2 +Supplemental,Stunt Pack,35,2004,Orange,3 +Supplemental,Stunt Pack,35,2004,Red,1 +Supplemental,Stunt Pack,35,2004,White,2 +Supplemental,Racers Hazard Kit,35,2004,Black,2 +Supplemental,Racers Hazard Kit,35,2004,Dark Bluish Gray,1 +Supplemental,Racers Hazard Kit,35,2004,Light Bluish Gray,2 +Supplemental,Antenna Pack,13,2004,Light Bluish Gray,3 +Supplemental,Antenna Pack,13,2004,Black,1 +Supplemental,Antenna Pack,13,2004,Dark Bluish Gray,1 +Supplemental,Antenna Pack,13,2004,Green,1 +Supplemental,Antenna Pack,13,2004,Yellow,1 +Supplemental,Wheels Pack,10,2004,Black,2 +Supplemental,Wheels Pack,10,2004,Light Bluish Gray,2 +Supplemental,Battery Pack,6,2004,Light Bluish Gray,1 +Supplemental,Battery Pack,6,2004,Royal Blue,2 +Supplemental,Gearbox Pack,6,2004,Black,1 +Supplemental,Gearbox Pack,6,2004,Green,1 +Supplemental,Gearbox Pack,6,2004,Light Bluish Gray,2 +Supplemental,Accessory Motor for Boats,1,2004,Yellow,1 +Supplemental,Transformation Kit Dirt Crusher (Red),47,2005,Red,5 +Supplemental,Transformation Kit Dirt Crusher (Blue),47,2005,Pearl Dark Gray,3 +Supplemental,Transformation Kit Dirt Crusher (Blue),47,2005,Black,1 +Supplemental,Transformation Kit Dirt Crusher (Blue),47,2005,Blue,5 +Supplemental,Transformation Kit Dirt Crusher (Blue),47,2005,Dark Bluish Gray,1 +Supplemental,Transformation Kit Dirt Crusher (Blue),47,2005,Light Bluish Gray,2 +Supplemental,Transformation Kit Dirt Crusher (Green),47,2005,Pearl Dark Gray,3 +Supplemental,Transformation Kit Dirt Crusher (Green),47,2005,Black,1 +Supplemental,Transformation Kit Dirt Crusher (Green),47,2005,Dark Bluish Gray,1 +Supplemental,Transformation Kit Dirt Crusher (Green),47,2005,Light Bluish Gray,2 +Supplemental,Transformation Kit Dirt Crusher (Green),47,2005,Lime,5 +Supplemental,Transformation Kit Dirt Crusher (Red),47,2005,Black,1 +Supplemental,Transformation Kit Dirt Crusher (Red),47,2005,Dark Bluish Gray,1 +Supplemental,Transformation Kit Dirt Crusher (Red),47,2005,Light Bluish Gray,2 +Supplemental,Transformation Kit Dirt Crusher (Red),47,2005,Pearl Dark Gray,3 +Supplemental,Big Wheels Pack Dirt Crusher (Green),10,2005,Light Bluish Gray,2 +Supplemental,Big Wheels Pack Dirt Crusher (Red),10,2005,Light Bluish Gray,2 +Supplemental,Antenna Pack for Dirt Crusher,10,2005,Dark Bluish Gray,1 +Supplemental,Antenna Pack for Dirt Crusher,10,2005,Flat Silver,1 +Supplemental,Big Wheels Pack Dirt Crusher (Red),10,2005,Red,1 +Supplemental,Antenna Pack for Dirt Crusher,10,2005,Light Bluish Gray,2 +Supplemental,Antenna Pack for Dirt Crusher,10,2005,Trans-Light Blue,1 +Supplemental,Big Wheels Pack Dirt Crusher (Blue),10,2005,Blue,1 +Supplemental,Big Wheels Pack Dirt Crusher (Blue),10,2005,Light Bluish Gray,2 +Supplemental,Big Wheels Pack Dirt Crusher (Green),10,2005,Pearl Dark Gray,1 +Supplemental,Dirt Crusher Gearbox with Light,6,2005,Black,1 +Supplemental,Dirt Crusher Gearbox with Light,6,2005,Green,1 +Supplemental,Dirt Crusher Gearbox with Light,6,2005,Light Bluish Gray,2 +Supplemental,Straight & Crossroad Plates,2,2005,Dark Bluish Gray,2 +Supplemental,T-Junction & Curved Road Plates,2,2005,Dark Bluish Gray,2 +Supplemental,Motor Box,93,2006,Black,11 +Supplemental,Motor Box,93,2006,Blue,1 +Supplemental,Motor Box,93,2006,Dark Bluish Gray,3 +Supplemental,Motor Box,93,2006,Light Bluish Gray,18 +Supplemental,Motor Box,93,2006,Red,6 +Supplemental,Motor Box,93,2006,Tan,1 +Supplemental,Motor Box,93,2006,White,1 +Supplemental,Squid Ammo,7,2007,Trans-Light Blue,1 +Supplemental,City Minifigure Collection,59,2009,[No Color],1 +Supplemental,City Minifigure Collection,59,2009,Black,9 +Supplemental,City Minifigure Collection,59,2009,Blue,1 +Supplemental,City Minifigure Collection,59,2009,Dark Bluish Gray,2 +Supplemental,City Minifigure Collection,59,2009,Green,1 +Supplemental,City Minifigure Collection,59,2009,Light Bluish Gray,8 +Supplemental,City Minifigure Collection,59,2009,Red,6 +Supplemental,City Minifigure Collection,59,2009,Reddish Brown,6 +Supplemental,City Minifigure Collection,59,2009,Tan,2 +Supplemental,City Minifigure Collection,59,2009,Trans-Green,1 +Supplemental,City Minifigure Collection,59,2009,Trans-Red,1 +Supplemental,City Minifigure Collection,59,2009,Trans-Yellow,1 +Supplemental,City Minifigure Collection,59,2009,White,4 +Supplemental,City Minifigure Collection,59,2009,Yellow,5 +Supplemental,Basic Bricks - Large,450,2010,Black,7 +Supplemental,Basic Bricks - Large,450,2010,Blue,11 +Supplemental,Basic Bricks - Large,450,2010,Green,7 +Supplemental,Basic Bricks - Large,450,2010,Medium Blue,5 +Supplemental,Basic Bricks - Large,450,2010,Orange,5 +Supplemental,Basic Bricks - Large,450,2010,Red,11 +Supplemental,Basic Bricks - Large,450,2010,White,11 +Supplemental,Basic Bricks - Large,450,2010,Yellow,11 +Supplemental,Rocket Kit,26,2010,Dark Bluish Gray,2 +Supplemental,Rocket Kit,26,2010,Light Bluish Gray,2 +Supplemental,Rocket Kit,26,2010,Red,2 +Supplemental,Rocket Kit,26,2010,Trans-Red,1 +Supplemental,Rocket Kit,26,2010,Yellow,2 +Supplemental,Renewable Energy Add-On Set,12,2010,Black,1 +Supplemental,Renewable Energy Add-On Set,12,2010,Dark Bluish Gray,3 +Supplemental,Renewable Energy Add-On Set,12,2010,Light Bluish Gray,2 +Supplemental,Renewable Energy Add-On Set,12,2010,White,1 +Supplemental,Blue Building Plate 32 x 32,1,2010,Blue,1 +Supplemental,E-Motor with Gear Reduction Ratio 9.5 : 1,1,2010,Light Bluish Gray,1 +Supplemental,Electric Battery Box 9V 150 mAh (Rechargeable),1,2010,Dark Bluish Gray,1 +Supplemental,Energy Display,1,2010,Light Bluish Gray,1 +Supplemental,Solar Panel,1,2010,Dark Bluish Gray,1 +Supplemental,LearnToLearn Core set,2016,2014,Dark Bluish Gray,1 +Supplemental,LearnToLearn Core set,2016,2014,Green,7 +Supplemental,LearnToLearn Core set,2016,2014,Light Bluish Gray,2 +Supplemental,LearnToLearn Core set,2016,2014,Lime,1 +Supplemental,LearnToLearn Core set,2016,2014,Orange,9 +Supplemental,LearnToLearn Core set,2016,2014,Red,7 +Supplemental,LearnToLearn Core set,2016,2014,Reddish Brown,1 +Supplemental,LearnToLearn Core set,2016,2014,Trans-Light Blue,1 +Supplemental,LearnToLearn Core set,2016,2014,Trans-Neon Orange,1 +Supplemental,LearnToLearn Core set,2016,2014,White,2 +Supplemental,LearnToLearn Core set,2016,2014,Yellow,8 +Supplemental,LearnToLearn Core set,2016,2014,Dark Purple,1 +Supplemental,LearnToLearn Core set,2016,2014,Black,2 +Supplemental,LearnToLearn Core set,2016,2014,Blue,7 +Supplemental,LearnToLearn Core set,2016,2014,Bright Light Blue,1 +Supplemental,Castle Dragons Accessory Set,42,2014,Black,13 +Supplemental,Castle Dragons Accessory Set,42,2014,Dark Brown,1 +Supplemental,Castle Dragons Accessory Set,42,2014,Flat Silver,2 +Supplemental,Castle Dragons Accessory Set,42,2014,Light Bluish Gray,3 +Supplemental,Castle Dragons Accessory Set,42,2014,Pearl Dark Gray,3 +Supplemental,Castle Dragons Accessory Set,42,2014,Red,4 +Supplemental,Castle Dragons Accessory Set,42,2014,Trans-Neon Orange,2 +Supplemental,Castle Dragons Accessory Set,42,2014,Yellow,4 +Supplemental,Castle Knights Accessory Set,36,2014,Blue,1 +Supplemental,Castle Knights Accessory Set,36,2014,Chrome Gold,5 +Supplemental,Castle Knights Accessory Set,36,2014,Dark Bluish Gray,6 +Supplemental,Castle Knights Accessory Set,36,2014,Yellow,4 +Supplemental,Castle Knights Accessory Set,36,2014,Light Bluish Gray,3 +Supplemental,Castle Knights Accessory Set,36,2014,Metallic Silver,2 +Supplemental,Castle Knights Accessory Set,36,2014,Pearl Gold,1 +Supplemental,Castle Knights Accessory Set,36,2014,Reddish Brown,4 +Supplemental,Castle Knights Accessory Set,36,2014,Flat Silver,4 +Supplemental,Castle Knights Accessory Set,36,2014,Trans-Dark Blue,1 +Supplemental,Castle Knights Accessory Set,36,2014,Trans-Green,1 +Team GB,Wondrous Weightlifter - Team GB Complete Set with Stand and Accessories,9,2012,Tan,1 +Team GB,Wondrous Weightlifter - Team GB Complete Set with Stand and Accessories,9,2012,Yellow,1 +Team GB,Wondrous Weightlifter - Team GB Complete Set with Stand and Accessories,9,2012,White,2 +Team GB,Flexible Gymnast - Team GB Complete Set with Stand and Accessories,9,2012,White,3 +Team GB,Flexible Gymnast - Team GB Complete Set with Stand and Accessories,9,2012,Red,1 +Team GB,Flexible Gymnast - Team GB Complete Set with Stand and Accessories,9,2012,Tan,1 +Team GB,Flexible Gymnast - Team GB Complete Set with Stand and Accessories,9,2012,Yellow,2 +Team GB,Flexible Gymnast - Team GB Complete Set with Stand and Accessories,9,2012,Bright Light Yellow,1 +Team GB,Wondrous Weightlifter - Team GB Complete Set with Stand and Accessories,9,2012,Blue,1 +Team GB,Wondrous Weightlifter - Team GB Complete Set with Stand and Accessories,9,2012,Red,3 +Team GB,Agile Archer - Team GB Complete Set with Stand and Accessories,7,2012,Black,1 +Team GB,Agile Archer - Team GB Complete Set with Stand and Accessories,7,2012,Dark Orange,1 +Team GB,Relay Runner - Team GB Complete Set with Stand and Accessories,7,2012,Flat Silver,1 +Team GB,Agile Archer - Team GB Complete Set with Stand and Accessories,7,2012,Blue,1 +Team GB,Relay Runner - Team GB Complete Set with Stand and Accessories,7,2012,White,3 +Team GB,Relay Runner - Team GB Complete Set with Stand and Accessories,7,2012,Yellow,1 +Team GB,Tactical Tennis Player - Team GB Complete Set with Stand and Accessories,7,2012,Black,1 +Team GB,Tactical Tennis Player - Team GB Complete Set with Stand and Accessories,7,2012,Flat Silver,1 +Team GB,Tactical Tennis Player - Team GB Complete Set with Stand and Accessories,7,2012,Red,1 +Team GB,Tactical Tennis Player - Team GB Complete Set with Stand and Accessories,7,2012,White,3 +Team GB,Tactical Tennis Player - Team GB Complete Set with Stand and Accessories,7,2012,Yellow,1 +Team GB,Agile Archer - Team GB Complete Set with Stand and Accessories,7,2012,Red,1 +Team GB,Agile Archer - Team GB Complete Set with Stand and Accessories,7,2012,White,2 +Team GB,Agile Archer - Team GB Complete Set with Stand and Accessories,7,2012,Yellow,1 +Team GB,Relay Runner - Team GB Complete Set with Stand and Accessories,7,2012,Dark Brown,1 +Team GB,Relay Runner - Team GB Complete Set with Stand and Accessories,7,2012,Red,1 +Team GB,Brawny Boxer - Team GB,6,2012,White,2 +Team GB,Brawny Boxer - Team GB,6,2012,Yellow,1 +Team GB,Horseback Rider - Team GB Complete Set with Stand and Accessories,6,2012,Black,1 +Team GB,Stealth Swimmer - Team GB Complete Set with Stand and Accessories,6,2012,Red,1 +Team GB,Stealth Swimmer - Team GB Complete Set with Stand and Accessories,6,2012,White,2 +Team GB,Stealth Swimmer - Team GB Complete Set with Stand and Accessories,6,2012,Yellow,3 +Team GB,Horseback Rider - Team GB Complete Set with Stand and Accessories,6,2012,Dark Red,1 +Team GB,Horseback Rider - Team GB Complete Set with Stand and Accessories,6,2012,Red,1 +Team GB,Horseback Rider - Team GB Complete Set with Stand and Accessories,6,2012,White,2 +Team GB,Horseback Rider - Team GB Complete Set with Stand and Accessories,6,2012,Yellow,1 +Team GB,Judo Fighter - Team GB Complete Set with Stand and Accessories,6,2012,Black,1 +Team GB,Judo Fighter - Team GB Complete Set with Stand and Accessories,6,2012,Red,1 +Team GB,Judo Fighter - Team GB Complete Set with Stand and Accessories,6,2012,White,3 +Team GB,Judo Fighter - Team GB Complete Set with Stand and Accessories,6,2012,Yellow,1 +Team GB,Brawny Boxer - Team GB,6,2012,Blue,2 +Team GB,Brawny Boxer - Team GB,6,2012,Red,1 +Technic,Medium Ship Set,21,1973,Light Gray,4 +Technic,Idea Book 8888,1,1980,[No Color],1 +Technic,Extra Large Tires & Hubs,4,1982,Black,1 +Technic,Extra Large Tires & Hubs,4,1982,Light Gray,1 +Technic,Red/Blue Bricks,88,1985,Blue,2 +Technic,Red/Blue Bricks,88,1985,Red,2 +Technic,Red/Black Plates,28,1985,Black,2 +Technic,Red/Black Plates,28,1985,Red,1 +Technic,Red/Black Plates,20,1985,Black,1 +Technic,Red/Black Plates,20,1985,Red,2 +Technic,Red/Blue Beams,20,1985,Blue,2 +Technic,Red/Blue Beams,20,1985,Red,2 +Technic,Red/Blue Beams,18,1985,Blue,2 +Technic,Red/Blue Beams,18,1985,Red,2 +Technic,Battery Boxes (4.5v),2,1985,Light Gray,1 +Technic,Motors (4.5V),2,1985,Light Gray,1 +Technic,Technic Control Center,472,1987,Black,40 +Technic,Technic Control Center,472,1987,Blue,25 +Technic,Technic Control Center,472,1987,Light Gray,23 +Technic,Technic Control Center,472,1987,Red,26 +Technic,Technic Control Center,472,1987,Trans-Green,1 +Technic,Technic Control Center,472,1987,Trans-Red,1 +Technic,Technic Control Center,472,1987,Trans-Yellow,1 +Technic,Technic Control Center,472,1987,White,5 +Technic,Technic Control Center,472,1987,Yellow,4 +Technic,Simple Machines,122,1987,Blue,3 +Technic,Simple Machines,122,1987,Light Gray,6 +Technic,Simple Machines,122,1987,Red,2 +Technic,Simple Machines,122,1987,Black,3 +Technic,"Idea Book 8891, Technic",1,1991,[No Color],1 +Technic,Fiber Optic Cables,8,2000,Trans-Clear,1 +Technic,TECHNIC Gear Wheels,38,2002,Black,2 +Technic,TECHNIC Gear Wheels,38,2002,Dark Gray,3 +Technic,TECHNIC Gear Wheels,38,2002,Light Gray,14 +Technic,TECHNIC Gear Wheels,38,2002,Trans-Clear,1 +Technic,Bushes,130,2003,Black,5 +Technic,Bushes,130,2003,Blue,1 +Technic,Bushes,130,2003,Dark Gray,1 +Technic,Bushes,130,2003,Light Gray,6 +Technic,Bushes,130,2003,Tan,1 +Technic,Cross Axles,68,2003,Black,22 +Technic,Cross Axles,68,2003,Dark Gray,1 +Technic,Cross Axles,68,2003,Light Gray,5 +Technic,TECHNIC Beams,56,2003,Black,27 +Technic,TECHNIC Beams,56,2003,Pearl Light Gray,1 +Technic,TECHNIC Motor,55,2003,Black,4 +Technic,TECHNIC Motor,55,2003,Blue,1 +Technic,TECHNIC Motor,55,2003,Light Gray,3 +Technic,TECHNIC Motor,55,2003,Trans-Clear,1 +Technic,MINDSTORMS Energy Parts Pack,46,2012,Black,1 +Technic,MINDSTORMS Energy Parts Pack,46,2012,Blue,1 +Technic,MINDSTORMS Energy Parts Pack,46,2012,Dark Bluish Gray,3 +Technic,MINDSTORMS Energy Parts Pack,46,2012,Light Bluish Gray,3 +Technic,Ocean Explorer,1326,2017,Black,29 +Technic,Ocean Explorer,1326,2017,Blue,3 +Technic,Ocean Explorer,1326,2017,Dark Blue,9 +Technic,Ocean Explorer,1326,2017,Dark Bluish Gray,19 +Technic,Ocean Explorer,1326,2017,Flat Silver,3 +Technic,Ocean Explorer,1326,2017,Green,2 +Technic,Ocean Explorer,1326,2017,Light Bluish Gray,25 +Technic,Ocean Explorer,1326,2017,Orange,4 +Technic,Ocean Explorer,1326,2017,Red,13 +Technic,Ocean Explorer,1326,2017,Reddish Brown,2 +Technic,Ocean Explorer,1326,2017,Tan,7 +Technic,Ocean Explorer,1326,2017,Trans-Clear,2 +Technic,Ocean Explorer,1326,2017,Trans-Green,1 +Technic,Ocean Explorer,1326,2017,Trans-Orange,1 +Technic,Ocean Explorer,1326,2017,Trans-Red,1 +Technic,Ocean Explorer,1326,2017,White,34 +Technic,Ocean Explorer,1326,2017,Yellow,9 +Technic,Air Race Jet,1150,2017,Dark Brown,1 +Technic,Air Race Jet,1150,2017,Flat Silver,1 +Technic,Air Race Jet,1150,2017,Light Bluish Gray,31 +Technic,Air Race Jet,1150,2017,Medium Blue,14 +Technic,Air Race Jet,1150,2017,Red,13 +Technic,Air Race Jet,1150,2017,Reddish Brown,2 +Technic,Air Race Jet,1150,2017,Tan,6 +Technic,Air Race Jet,1150,2017,Trans-Green,1 +Technic,Air Race Jet,1150,2017,Trans-Red,1 +Technic,Air Race Jet,1150,2017,White,9 +Technic,Air Race Jet,1150,2017,Yellow,3 +Technic,Air Race Jet,1150,2017,Black,42 +Technic,Air Race Jet,1150,2017,Blue,3 +Technic,Air Race Jet,1150,2017,Dark Bluish Gray,17 +Technic,Container Yard,630,2017,Orange,12 +Technic,Container Yard,630,2017,Red,3 +Technic,Container Yard,630,2017,Reddish Brown,1 +Technic,Container Yard,630,2017,Tan,4 +Technic,Container Yard,630,2017,Trans-Clear,2 +Technic,Container Yard,630,2017,Trans-Red,1 +Technic,Container Yard,630,2017,White,11 +Technic,Container Yard,630,2017,Yellow,2 +Technic,Container Yard,630,2017,Black,37 +Technic,Container Yard,630,2017,Blue,7 +Technic,Container Yard,630,2017,Dark Bluish Gray,13 +Technic,Container Yard,630,2017,Light Bluish Gray,23 +Technic,BMW R 1200 GS Adventure,593,2017,[No Color],1 +Technic,BMW R 1200 GS Adventure,593,2017,Black,31 +Technic,BMW R 1200 GS Adventure,593,2017,Blue,10 +Technic,BMW R 1200 GS Adventure,593,2017,Dark Bluish Gray,6 +Technic,BMW R 1200 GS Adventure,593,2017,Flat Silver,1 +Technic,BMW R 1200 GS Adventure,593,2017,Light Bluish Gray,34 +Technic,BMW R 1200 GS Adventure,593,2017,Pearl Dark Gray,1 +Technic,BMW R 1200 GS Adventure,593,2017,Red,3 +Technic,BMW R 1200 GS Adventure,593,2017,Reddish Brown,1 +Technic,BMW R 1200 GS Adventure,593,2017,Tan,4 +Technic,BMW R 1200 GS Adventure,593,2017,Trans-Clear,5 +Technic,BMW R 1200 GS Adventure,593,2017,White,1 +Technic,BMW R 1200 GS Adventure,593,2017,Yellow,6 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Red,10 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Reddish Brown,2 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Tan,4 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Trans-Orange,1 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Trans-Red,1 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,White,1 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Black,35 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Yellow,5 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Blue,7 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Dark Bluish Gray,11 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Flat Silver,1 +Technic,Technic 40 year anniversary model (42057 + 42061 + 42063),568,2017,Light Bluish Gray,32 +Technic,RC Tracked Racer,369,2017,Black,15 +Technic,RC Tracked Racer,369,2017,Blue,3 +Technic,RC Tracked Racer,369,2017,Dark Bluish Gray,6 +Technic,RC Tracked Racer,369,2017,Light Bluish Gray,14 +Technic,RC Tracked Racer,369,2017,Lime,5 +Technic,RC Tracked Racer,369,2017,Red,5 +Technic,RC Tracked Racer,369,2017,Reddish Brown,1 +Technic,RC Tracked Racer,369,2017,Trans-Clear,1 +Technic,RC Tracked Racer,369,2017,White,10 +Technic,RC Tracked Racer,369,2017,Yellow,1 +Technic,RC Tracked Racer,369,2017,Tan,1 +Technic,Roadwork Crew,364,2017,Black,24 +Technic,Roadwork Crew,364,2017,Blue,3 +Technic,Roadwork Crew,364,2017,Dark Bluish Gray,9 +Technic,Roadwork Crew,364,2017,Light Bluish Gray,23 +Technic,Roadwork Crew,364,2017,Orange,13 +Technic,Roadwork Crew,364,2017,Red,3 +Technic,Roadwork Crew,364,2017,Tan,4 +Technic,Roadwork Crew,364,2017,Trans-Clear,2 +Technic,Roadwork Crew,364,2017,Trans-Orange,1 +Technic,Roadwork Crew,364,2017,Trans-Red,1 +Technic,Roadwork Crew,364,2017,White,1 +Technic,Roadwork Crew,364,2017,Reddish Brown,2 +Technic,Roadwork Crew,364,2017,Yellow,1 +Technic,Telehandler,259,2017,Yellow,2 +Technic,Telehandler,259,2017,Light Bluish Gray,12 +Technic,Telehandler,259,2017,Red,11 +Technic,Telehandler,259,2017,Reddish Brown,2 +Technic,Telehandler,259,2017,Tan,4 +Technic,Telehandler,259,2017,Trans-Orange,1 +Technic,Telehandler,259,2017,Trans-Clear,1 +Technic,Telehandler,259,2017,Trans-Red,1 +Technic,Telehandler,259,2017,White,1 +Technic,Telehandler,259,2017,Black,22 +Technic,Telehandler,259,2017,Blue,3 +Technic,Telehandler,259,2017,Dark Bluish Gray,16 +Technic,Telehandler,259,2017,[No Color],1 +Technic,Ultralight Helicopter,199,2017,Reddish Brown,2 +Technic,Ultralight Helicopter,199,2017,Red,3 +Technic,Ultralight Helicopter,199,2017,Dark Bluish Gray,8 +Technic,Ultralight Helicopter,199,2017,Blue,3 +Technic,Ultralight Helicopter,199,2017,Black,26 +Technic,Ultralight Helicopter,199,2017,[No Color],1 +Technic,Ultralight Helicopter,199,2017,Light Bluish Gray,12 +Technic,Ultralight Helicopter,199,2017,Yellow,3 +Technic,Ultralight Helicopter,199,2017,White,14 +Technic,Ultralight Helicopter,199,2017,Tan,6 +Technic,Stunt Truck,141,2017,White,5 +Technic,Stunt Truck,141,2017,Black,20 +Technic,Stunt Truck,141,2017,Blue,2 +Technic,Stunt Truck,141,2017,Dark Bluish Gray,3 +Technic,Stunt Truck,141,2017,Light Bluish Gray,4 +Technic,Stunt Truck,141,2017,Medium Azure,8 +Technic,Stunt Truck,141,2017,Red,1 +Technic,Stunt Truck,141,2017,Reddish Brown,1 +Technic,Stunt Truck,141,2017,Trans-Clear,1 +Technic,Stunt Truck,141,2017,Yellow,1 +Technic,Stunt Bike,140,2017,[No Color],1 +Technic,Stunt Bike,140,2017,Yellow,6 +Technic,Stunt Bike,140,2017,White,2 +Technic,Stunt Bike,140,2017,Trans-Red,1 +Technic,Stunt Bike,140,2017,Trans-Medium Blue,1 +Technic,Stunt Bike,140,2017,Trans-Clear,1 +Technic,Stunt Bike,140,2017,Tan,1 +Technic,Stunt Bike,140,2017,Reddish Brown,1 +Technic,Stunt Bike,140,2017,Red,2 +Technic,Stunt Bike,140,2017,Light Bluish Gray,10 +Technic,Stunt Bike,140,2017,Flat Silver,1 +Technic,Stunt Bike,140,2017,Dark Bluish Gray,5 +Technic,Stunt Bike,140,2017,Blue,2 +Technic,Stunt Bike,140,2017,Black,19 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Trans-Red,3 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,White,1 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Yellow,5 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Dark Green,1 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Red,10 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Trans-Neon Green,1 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Trans-Light Blue,1 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Trans-Green,1 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Tan,8 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Reddish Brown,23 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Pearl Gold,3 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Pearl Dark Gray,2 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Orange,1 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Olive Green,7 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Medium Dark Flesh,2 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Light Flesh,1 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Green,12 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Light Bluish Gray,53 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Flat Silver,6 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Dark Tan,1 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Dark Red,1 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Dark Orange,1 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Dark Brown,4 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Dark Bluish Gray,43 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Blue,2 +Teenage Mutant Ninja Turtles,Turtle Lair Invasion,885,2014,Black,67 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Trans-Light Blue,6 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Trans-Neon Green,3 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Trans-Orange,2 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Trans-Red,2 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Trans-Yellow,1 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,White,14 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Yellow,3 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Trans-Neon Orange,2 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Black,58 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Blue,5 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Bright Light Orange,1 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Dark Blue,1 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Dark Bluish Gray,54 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Dark Brown,1 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Dark Green,3 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Dark Red,1 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Dark Tan,2 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Flat Silver,6 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Light Bluish Gray,43 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Light Flesh,2 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Lime,1 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Medium Dark Flesh,1 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Olive Green,4 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Orange,1 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Red,26 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Trans-Black,2 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Trans-Clear,5 +Teenage Mutant Ninja Turtles,Big Rig Snow Getaway,741,2014,Trans-Green,2 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Dark Bluish Gray,34 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Black,26 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Dark Brown,2 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Blue,5 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Dark Green,3 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Bright Green,3 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Dark Purple,2 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Dark Tan,6 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Flat Silver,5 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Glow in Dark White,1 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Green,6 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Light Bluish Gray,63 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Medium Dark Flesh,3 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Olive Green,11 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Orange,1 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Red,14 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Reddish Brown,16 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Tan,6 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Trans-Bright Green,1 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Trans-Clear,2 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Trans-Dark Pink,2 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Trans-Neon Green,1 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Trans-Purple,2 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Trans-Red,2 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Trans-Yellow,1 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,White,3 +Teenage Mutant Ninja Turtles,Turtle Sub Undersea Chase,682,2014,Yellow,8 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Reddish Brown,6 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Tan,2 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Trans-Bright Green,1 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Trans-Clear,2 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Trans-Dark Blue,1 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Trans-Light Blue,2 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Trans-Neon Orange,2 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Trans-Orange,1 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Trans-Red,1 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,White,3 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Yellow,8 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Black,40 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Blue,3 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Bright Green,3 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Dark Blue,1 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Dark Bluish Gray,35 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Dark Purple,5 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Dark Red,6 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Dark Tan,2 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Flat Silver,7 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Glow in Dark White,1 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Green,3 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Light Bluish Gray,32 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Light Flesh,1 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Olive Green,3 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Orange,1 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Pearl Dark Gray,1 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Pearl Gold,2 +Teenage Mutant Ninja Turtles,Shredder’s Lair Rescue,476,2014,Red,7 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Dark Red,1 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Dark Green,3 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Dark Bluish Gray,18 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Olive Green,15 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,White,4 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Trans-Yellow,1 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Yellow,12 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Trans-Red,3 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Trans-Green,1 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Trans-Clear,3 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Trans-Black,3 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Tan,1 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Sand Blue,1 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Reddish Brown,2 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Red,6 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Light Flesh,1 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Light Bluish Gray,25 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Flat Silver,6 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Black,26 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Dark Tan,6 +Teenage Mutant Ninja Turtles,Turtle Van Takedown,367,2014,Dark Blue,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Dark Orange,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Dark Purple,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Dark Tan,3 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Flat Silver,2 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Glow in Dark White,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Green,6 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Lime,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Magenta,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Medium Blue,2 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Olive Green,3 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Orange,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Red,13 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Reddish Brown,8 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Tan,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Trans-Clear,2 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Trans-Light Blue,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Trans-Neon Green,2 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Trans-Yellow,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,White,6 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Yellow,4 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Light Bluish Gray,19 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Black,26 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Trans-Red,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Dark Brown,1 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Dark Bluish Gray,11 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Bright Green,4 +Teenage Mutant Ninja Turtles,T-Rawket Sky Strike,285,2014,Blue,3 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Blue,2 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Black,11 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Trans-Neon Green,5 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,White,3 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Yellow,5 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Dark Bluish Gray,14 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Dark Tan,1 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Dark Blue,4 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Flat Silver,3 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Green,1 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Light Bluish Gray,18 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Light Flesh,1 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Lime,4 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Magenta,3 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Trans-Dark Pink,2 +Teenage Mutant Ninja Turtles,Mutation Chamber Unleashed,195,2014,Trans-Light Blue,4 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Flat Silver,3 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Light Flesh,1 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Red,4 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Trans-Black,2 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Trans-Clear,1 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Trans-Neon Green,1 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Trans-Orange,1 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Trans-Red,1 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,White,4 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Black,19 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Blue,1 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Dark Bluish Gray,5 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Light Bluish Gray,10 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Dark Tan,1 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Yellow,9 +Teenage Mutant Ninja Turtles,Karai Bike Escape,87,2014,Green,4 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,White,1 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Trans-Yellow,1 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Tan,1 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Reddish Brown,1 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Red,3 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Light Bluish Gray,4 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Yellow,4 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Dark Tan,1 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Olive Green,1 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Black,2 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Bright Green,3 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Dark Bluish Gray,2 +Teenage Mutant Ninja Turtles,Mikey's Mini-Shellraiser,46,2014,Dark Pink,1 +Teenage Mutant Ninja Turtles,Flashback Shredder,6,2014,Black,3 +Teenage Mutant Ninja Turtles,Flashback Shredder,6,2014,Light Flesh,1 +Teenage Mutant Ninja Turtles,Flashback Shredder,6,2014,Flat Silver,1 +Temple of Doom,Temple of Doom,652,2009,Black,40 +Temple of Doom,Temple of Doom,652,2009,Blue,1 +Temple of Doom,Temple of Doom,652,2009,Bright Light Yellow,1 +Temple of Doom,Temple of Doom,652,2009,Dark Bluish Gray,66 +Temple of Doom,Temple of Doom,652,2009,Dark Brown,3 +Temple of Doom,Temple of Doom,652,2009,Dark Green,1 +Temple of Doom,Temple of Doom,652,2009,Dark Red,1 +Temple of Doom,Temple of Doom,652,2009,Dark Tan,7 +Temple of Doom,Temple of Doom,652,2009,Flesh,4 +Temple of Doom,Temple of Doom,652,2009,Glow In Dark Opaque,1 +Temple of Doom,Temple of Doom,652,2009,Green,1 +Temple of Doom,Temple of Doom,652,2009,Light Bluish Gray,19 +Temple of Doom,Temple of Doom,652,2009,Light Flesh,3 +Temple of Doom,Temple of Doom,652,2009,Orange,3 +Temple of Doom,Temple of Doom,652,2009,Pearl Light Gray,1 +Temple of Doom,Temple of Doom,652,2009,Red,2 +Temple of Doom,Temple of Doom,652,2009,Reddish Brown,30 +Temple of Doom,Temple of Doom,652,2009,Tan,10 +Temple of Doom,Temple of Doom,652,2009,Trans-Clear,1 +Temple of Doom,Temple of Doom,652,2009,Trans-Dark Pink,1 +Temple of Doom,Temple of Doom,652,2009,Trans-Neon Green,1 +Temple of Doom,Temple of Doom,652,2009,Trans-Neon Orange,3 +Temple of Doom,Temple of Doom,652,2009,Trans-Orange,2 +Temple of Doom,Temple of Doom,652,2009,Trans-Red,3 +Temple of Doom,Temple of Doom,652,2009,Trans-Yellow,1 +Temple of Doom,Temple of Doom,652,2009,White,4 +Temple of Doom,Shanghai Chase,244,2009,Trans-Black,2 +Temple of Doom,Shanghai Chase,244,2009,Trans-Clear,2 +Temple of Doom,Shanghai Chase,244,2009,Trans-Red,2 +Temple of Doom,Shanghai Chase,244,2009,White,9 +Temple of Doom,Shanghai Chase,244,2009,Black,35 +Temple of Doom,Shanghai Chase,244,2009,Blue,1 +Temple of Doom,Shanghai Chase,244,2009,Bright Light Yellow,1 +Temple of Doom,Shanghai Chase,244,2009,Dark Bluish Gray,9 +Temple of Doom,Shanghai Chase,244,2009,Dark Tan,2 +Temple of Doom,Shanghai Chase,244,2009,Light Bluish Gray,23 +Temple of Doom,Shanghai Chase,244,2009,Light Flesh,5 +Temple of Doom,Shanghai Chase,244,2009,Pearl Light Gray,1 +Temple of Doom,Shanghai Chase,244,2009,Red,3 +Temple of Doom,Shanghai Chase,244,2009,Reddish Brown,4 +Temple of Doom,Shanghai Chase,244,2009,Tan,18 +Thanksgiving,Turkey,54,2003,Black,5 +Thanksgiving,Turkey,54,2003,Blue,1 +Thanksgiving,Turkey,54,2003,Brown,14 +Thanksgiving,Turkey,54,2003,Red,4 +Thanksgiving,Turkey,54,2003,Sand Blue,3 +Thanksgiving,Turkey,54,2003,White,1 +Thanksgiving,Turkey,54,2003,Yellow,3 +Thanksgiving,Pilgrim's Feast,163,2016,Black,23 +Thanksgiving,Pilgrim's Feast,163,2016,Bright Green,1 +Thanksgiving,Pilgrim's Feast,163,2016,Dark Bluish Gray,4 +Thanksgiving,Pilgrim's Feast,163,2016,Dark Orange,1 +Thanksgiving,Pilgrim's Feast,163,2016,Green,1 +Thanksgiving,Pilgrim's Feast,163,2016,Light Bluish Gray,2 +Thanksgiving,Pilgrim's Feast,163,2016,Orange,7 +Thanksgiving,Pilgrim's Feast,163,2016,Pearl Gold,1 +Thanksgiving,Pilgrim's Feast,163,2016,Red,2 +Thanksgiving,Pilgrim's Feast,163,2016,Reddish Brown,9 +Thanksgiving,Pilgrim's Feast,163,2016,Tan,11 +Thanksgiving,Pilgrim's Feast,163,2016,White,6 +Thanksgiving,Pilgrim's Feast,163,2016,Yellow,1 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Chrome Gold,1 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Dark Blue,3 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Dark Bluish Gray,71 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Dark Brown,5 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Dark Green,2 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Dark Red,17 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Flat Silver,5 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Light Bluish Gray,36 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Light Flesh,5 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Medium Dark Flesh,2 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Metallic Silver,1 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Orange,1 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Pearl Dark Gray,3 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Red,1 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Reddish Brown,27 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Sand Green,10 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Tan,1 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Trans-Clear,1 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Trans-Green,3 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Trans-Light Blue,2 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Trans-Orange,2 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Trans-Dark Blue,1 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Trans-Red,2 +The Battle of the Five Armies,The Lonely Mountain,864,2014,White,1 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Pearl Gold,10 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Black,36 +The Battle of the Five Armies,The Lonely Mountain,864,2014,Blue,1 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Bright Light Yellow,1 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Dark Brown,8 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Red,3 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Sand Green,3 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Light Bluish Gray,21 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Tan,30 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Trans-Orange,1 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Trans-Red,1 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Reddish Brown,32 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,White,6 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Dark Red,7 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Dark Tan,7 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Flat Silver,4 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Dark Orange,1 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Dark Blue,1 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Light Flesh,4 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Medium Dark Flesh,2 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Orange,1 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Pearl Dark Gray,1 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Black,19 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Pearl Gold,1 +The Battle of the Five Armies,The Battle of the Five Armies,471,2014,Dark Bluish Gray,24 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Blue,3 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Dark Bluish Gray,14 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Dark Brown,11 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Dark Orange,2 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Dark Red,3 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Dark Tan,2 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Flat Silver,3 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Green,1 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Light Bluish Gray,13 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Light Flesh,3 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Olive Green,1 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Reddish Brown,37 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Tan,2 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Trans-Orange,1 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Trans-Yellow,1 +The Battle of the Five Armies,Attack on Lake-town,313,2014,White,4 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Dark Green,6 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Pearl Gold,1 +The Battle of the Five Armies,Attack on Lake-town,313,2014,Black,29 +The Battle of the Five Armies,Witch-King Battle,101,2014,Black,7 +The Battle of the Five Armies,Witch-King Battle,101,2014,Dark Bluish Gray,10 +The Battle of the Five Armies,Witch-King Battle,101,2014,Dark Brown,2 +The Battle of the Five Armies,Witch-King Battle,101,2014,Dark Red,1 +The Battle of the Five Armies,Witch-King Battle,101,2014,Dark Tan,1 +The Battle of the Five Armies,Witch-King Battle,101,2014,Flat Silver,1 +The Battle of the Five Armies,Witch-King Battle,101,2014,Glow in Dark White,1 +The Battle of the Five Armies,Witch-King Battle,101,2014,Light Bluish Gray,10 +The Battle of the Five Armies,Witch-King Battle,101,2014,Light Flesh,2 +The Battle of the Five Armies,Witch-King Battle,101,2014,Medium Dark Flesh,1 +The Battle of the Five Armies,Witch-King Battle,101,2014,Olive Green,2 +The Battle of the Five Armies,Witch-King Battle,101,2014,Pearl Dark Gray,1 +The Battle of the Five Armies,Witch-King Battle,101,2014,Pearl Gold,3 +The Battle of the Five Armies,Witch-King Battle,101,2014,Red,1 +The Battle of the Five Armies,Witch-King Battle,101,2014,Reddish Brown,6 +The Battle of the Five Armies,Witch-King Battle,101,2014,Trans-Clear,1 +The Battle of the Five Armies,Witch-King Battle,101,2014,Trans-Neon Orange,1 +The Battle of the Five Armies,Witch-King Battle,101,2014,White,9 +The Battle of the Five Armies,The Hobbit - The Battle of the Five Armies (Blu-ray with Minifigures),7,2015,Black,1 +The Battle of the Five Armies,The Hobbit - The Battle of the Five Armies (Blu-ray with Minifigures),7,2015,Dark Blue,1 +The Battle of the Five Armies,The Hobbit - The Battle of the Five Armies (Blu-ray with Minifigures),7,2015,Dark Brown,1 +The Battle of the Five Armies,The Hobbit - The Battle of the Five Armies (Blu-ray with Minifigures),7,2015,Dark Orange,1 +The Battle of the Five Armies,The Hobbit - The Battle of the Five Armies (Blu-ray with Minifigures),7,2015,Light Flesh,1 +The Battle of the Five Armies,The Hobbit - The Battle of the Five Armies (Blu-ray with Minifigures),7,2015,Reddish Brown,2 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Flat Silver,3 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Light Bluish Gray,39 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Light Flesh,2 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Medium Dark Flesh,3 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Orange,1 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Dark Bluish Gray,53 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Pearl Dark Gray,1 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Red,1 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Reddish Brown,14 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Tan,3 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Trans-Clear,1 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Trans-Light Blue,1 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Trans-Neon Orange,1 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Black,49 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Blue,1 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Chrome Gold,1 +The Desolation of Smaug,Dol Guldur Battle,795,2013,White,6 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Dark Brown,8 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Dark Red,2 +The Desolation of Smaug,Dol Guldur Battle,795,2013,Dark Tan,4 +The Desolation of Smaug,Lake-town Chase,469,2013,Dark Purple,1 +The Desolation of Smaug,Lake-town Chase,469,2013,Dark Red,6 +The Desolation of Smaug,Lake-town Chase,469,2013,Dark Tan,5 +The Desolation of Smaug,Lake-town Chase,469,2013,Flat Silver,5 +The Desolation of Smaug,Lake-town Chase,469,2013,Light Bluish Gray,8 +The Desolation of Smaug,Lake-town Chase,469,2013,Light Flesh,5 +The Desolation of Smaug,Lake-town Chase,469,2013,Medium Dark Flesh,2 +The Desolation of Smaug,Lake-town Chase,469,2013,Pearl Dark Gray,1 +The Desolation of Smaug,Lake-town Chase,469,2013,Pearl Gold,3 +The Desolation of Smaug,Lake-town Chase,469,2013,Reddish Brown,36 +The Desolation of Smaug,Lake-town Chase,469,2013,Tan,2 +The Desolation of Smaug,Lake-town Chase,469,2013,Trans-Yellow,1 +The Desolation of Smaug,Lake-town Chase,469,2013,White,4 +The Desolation of Smaug,Lake-town Chase,469,2013,[No Color],1 +The Desolation of Smaug,Lake-town Chase,469,2013,Black,28 +The Desolation of Smaug,Lake-town Chase,469,2013,Blue,2 +The Desolation of Smaug,Lake-town Chase,469,2013,Chrome Gold,1 +The Desolation of Smaug,Lake-town Chase,469,2013,Dark Blue,1 +The Desolation of Smaug,Lake-town Chase,469,2013,Dark Bluish Gray,20 +The Desolation of Smaug,Lake-town Chase,469,2013,Dark Brown,14 +The Desolation of Smaug,Lake-town Chase,469,2013,Dark Green,10 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Dark Red,1 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Trans-Green,2 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Black,6 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Blue,1 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Dark Bluish Gray,2 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Dark Brown,9 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Dark Green,5 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Dark Orange,1 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Dark Tan,5 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Flat Silver,2 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Light Bluish Gray,12 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Light Flesh,2 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Medium Dark Flesh,2 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Olive Green,4 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Pearl Dark Gray,2 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Pearl Gold,1 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Reddish Brown,27 +The Desolation of Smaug,Mirkwood Elf Army,276,2013,Tan,22 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Black,20 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Dark Bluish Gray,21 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Dark Brown,5 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Dark Red,1 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Dark Tan,2 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Light Bluish Gray,11 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Medium Dark Flesh,3 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Pearl Dark Gray,3 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Reddish Brown,12 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Tan,3 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Trans-Neon Orange,1 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,White,3 +The Desolation of Smaug,Dol Guldur Ambush,217,2013,Flat Silver,3 +The Desolation of Smaug,Legolas Greenleaf,33,2013,Tan,4 +The Desolation of Smaug,Legolas Greenleaf,33,2013,Bright Light Yellow,1 +The Desolation of Smaug,Legolas Greenleaf,33,2013,Dark Brown,2 +The Desolation of Smaug,Legolas Greenleaf,33,2013,Dark Green,1 +The Desolation of Smaug,Legolas Greenleaf,33,2013,Light Bluish Gray,4 +The Desolation of Smaug,Legolas Greenleaf,33,2013,Medium Dark Flesh,1 +The Desolation of Smaug,Legolas Greenleaf,33,2013,Olive Green,2 +The Desolation of Smaug,Legolas Greenleaf,33,2013,Light Flesh,1 +The Desolation of Smaug,Legolas Greenleaf,33,2013,Reddish Brown,5 +The Desolation of Smaug,Legolas Greenleaf,33,2013,Dark Tan,1 +The Desolation of Smaug,Lake-town Guard,31,2013,Dark Tan,1 +The Desolation of Smaug,Lake-town Guard,31,2013,Light Bluish Gray,2 +The Desolation of Smaug,Lake-town Guard,31,2013,Light Flesh,1 +The Desolation of Smaug,Lake-town Guard,31,2013,Pearl Dark Gray,1 +The Desolation of Smaug,Lake-town Guard,31,2013,Reddish Brown,6 +The Desolation of Smaug,Lake-town Guard,31,2013,Black,3 +The Desolation of Smaug,Lake-town Guard,31,2013,Dark Bluish Gray,3 +The Desolation of Smaug,Lake-town Guard,31,2013,Dark Brown,1 +The Desolation of Smaug,Lake-town Guard,31,2013,Dark Green,2 +The Desolation of Smaug,Lake-town Guard,31,2013,Dark Purple,1 +The Desolation of Smaug,Lake-town Guard,31,2013,Dark Red,2 +The Fellowship of the Ring,The Mines of Moria,780,2012,[No Color],1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Dark Brown,4 +The Fellowship of the Ring,The Mines of Moria,780,2012,Dark Bluish Gray,66 +The Fellowship of the Ring,The Mines of Moria,780,2012,Dark Blue,2 +The Fellowship of the Ring,The Mines of Moria,780,2012,Copper,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Blue,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Black,23 +The Fellowship of the Ring,The Mines of Moria,780,2012,Reddish Brown,21 +The Fellowship of the Ring,The Mines of Moria,780,2012,Dark Tan,4 +The Fellowship of the Ring,The Mines of Moria,780,2012,Dark Red,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Dark Orange,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Bright Light Yellow,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Flat Silver,5 +The Fellowship of the Ring,The Mines of Moria,780,2012,Light Bluish Gray,45 +The Fellowship of the Ring,The Mines of Moria,780,2012,Light Flesh,4 +The Fellowship of the Ring,The Mines of Moria,780,2012,Olive Green,3 +The Fellowship of the Ring,The Mines of Moria,780,2012,Pearl Dark Gray,2 +The Fellowship of the Ring,The Mines of Moria,780,2012,Pearl Gold,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Sand Blue,5 +The Fellowship of the Ring,The Mines of Moria,780,2012,Tan,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Trans-Black,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Trans-Clear,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Trans-Neon Green,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,Trans-Neon Orange,1 +The Fellowship of the Ring,The Mines of Moria,780,2012,White,5 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Reddish Brown,5 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Black,22 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Trans-Neon Orange,1 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Dark Tan,12 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Tan,3 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Bright Green,2 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Chrome Gold,1 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Dark Bluish Gray,24 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Dark Brown,5 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Dark Green,9 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Dark Orange,2 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Flat Silver,3 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Green,1 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Light Bluish Gray,18 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Light Flesh,3 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Olive Green,1 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Orange,2 +The Fellowship of the Ring,Attack on Weathertop,429,2012,Pearl Dark Gray,3 +The Fellowship of the Ring,Gandalf Arrives,83,2012,White,2 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Yellow,1 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Tan,6 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Reddish Brown,11 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Red,1 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Sand Green,1 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Dark Tan,5 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Orange,1 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Light Flesh,2 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Light Bluish Gray,4 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Green,2 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Dark Brown,3 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Dark Bluish Gray,5 +The Fellowship of the Ring,Gandalf Arrives,83,2012,Bright Green,1 +The Fellowship of the Ring,The Council of Elrond,242,2013,Black,5 +The Fellowship of the Ring,The Council of Elrond,242,2013,Blue,1 +The Fellowship of the Ring,The Council of Elrond,242,2013,Chrome Gold,1 +The Fellowship of the Ring,The Council of Elrond,242,2013,Dark Bluish Gray,1 +The Fellowship of the Ring,The Council of Elrond,242,2013,Dark Brown,7 +The Fellowship of the Ring,The Council of Elrond,242,2013,Dark Orange,1 +The Fellowship of the Ring,The Council of Elrond,242,2013,Dark Red,3 +The Fellowship of the Ring,The Council of Elrond,242,2013,Dark Tan,4 +The Fellowship of the Ring,The Council of Elrond,242,2013,Flat Silver,1 +The Fellowship of the Ring,The Council of Elrond,242,2013,Light Bluish Gray,13 +The Fellowship of the Ring,The Council of Elrond,242,2013,Light Flesh,4 +The Fellowship of the Ring,The Council of Elrond,242,2013,Olive Green,2 +The Fellowship of the Ring,The Council of Elrond,242,2013,Pearl Gold,4 +The Fellowship of the Ring,The Council of Elrond,242,2013,Red,4 +The Fellowship of the Ring,The Council of Elrond,242,2013,Reddish Brown,16 +The Fellowship of the Ring,The Council of Elrond,242,2013,Sand Blue,2 +The Fellowship of the Ring,The Council of Elrond,242,2013,Speckle Black-Silver,1 +The Fellowship of the Ring,The Council of Elrond,242,2013,Tan,18 +The Fellowship of the Ring,The Council of Elrond,242,2013,White,10 +The Fellowship of the Ring,The Council of Elrond,242,2013,Yellow,1 +The Fellowship of the Ring,The Wizard Battle,113,2013,Black,28 +The Fellowship of the Ring,The Wizard Battle,113,2013,Dark Bluish Gray,9 +The Fellowship of the Ring,The Wizard Battle,113,2013,Dark Tan,1 +The Fellowship of the Ring,The Wizard Battle,113,2013,Light Bluish Gray,4 +The Fellowship of the Ring,The Wizard Battle,113,2013,Light Flesh,2 +The Fellowship of the Ring,The Wizard Battle,113,2013,Red,2 +The Fellowship of the Ring,The Wizard Battle,113,2013,Reddish Brown,1 +The Fellowship of the Ring,The Wizard Battle,113,2013,Tan,2 +The Fellowship of the Ring,The Wizard Battle,113,2013,Trans-Clear,1 +The Fellowship of the Ring,The Wizard Battle,113,2013,Trans-Neon Orange,1 +The Fellowship of the Ring,The Wizard Battle,113,2013,Trans-Yellow,1 +The Fellowship of the Ring,The Wizard Battle,113,2013,White,5 +The Fellowship of the Ring,The Wizard Battle,113,2013,Yellow,1 +The Hobbit,Azog - San Diego Comic-Con 2013 Exclusive,6,2013,Black,2 +The Hobbit,Azog - San Diego Comic-Con 2013 Exclusive,6,2013,Reddish Brown,1 +The Hobbit,Azog - San Diego Comic-Con 2013 Exclusive,6,2013,Tan,3 +The Hobbit,Bard the Bowman,5,2014,Black,1 +The Hobbit,Bard the Bowman,5,2014,Dark Blue,1 +The Hobbit,Bard the Bowman,5,2014,Light Flesh,1 +The Hobbit,Bard the Bowman,5,2014,Reddish Brown,2 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Pearl Gold,26 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Pearl Dark Gray,2 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Orange,3 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Olive Green,2 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Medium Dark Flesh,1 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Medium Blue,3 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Light Bluish Gray,81 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Flat Silver,8 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Dark Tan,4 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Dark Red,10 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Dark Orange,2 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Dark Brown,17 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Dark Bluish Gray,100 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Dark Blue,1 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Dark Azure,1 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Blue,8 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Black,133 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,[No Color],1 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Red,7 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Reddish Brown,87 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Sand Green,4 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Tan,4 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Trans-Black,2 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Trans-Bright Green,1 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Trans-Clear,3 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Trans-Dark Blue,1 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Trans-Green,2 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Trans-Neon Orange,1 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Trans-Orange,2 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Trans-Red,3 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,White,17 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Yellow,4 +The LEGO Movie,MetalBeard’s Sea Cow,2741,2014,Yellowish Green,3 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,White,2 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Yellow,10 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Black,38 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Blue,54 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Dark Bluish Gray,58 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Flat Silver,3 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Light Bluish Gray,67 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Orange,3 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Pearl Gold,2 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Red,7 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Reddish Brown,1 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Tan,1 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Trans-Clear,2 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Trans-Green,1 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Trans-Orange,1 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Trans-Red,9 +The LEGO Movie,"Benny’s Spaceship, Spaceship, SPACESHIP!",933,2014,Trans-Yellow,7 +The LEGO Movie,Rescue Reinforcements,857,2014,Dark Bluish Gray,44 +The LEGO Movie,Rescue Reinforcements,857,2014,Trans-Yellow,2 +The LEGO Movie,Rescue Reinforcements,857,2014,White,24 +The LEGO Movie,Rescue Reinforcements,857,2014,Trans-Dark Blue,3 +The LEGO Movie,Rescue Reinforcements,857,2014,Trans-Black,2 +The LEGO Movie,Rescue Reinforcements,857,2014,Tan,8 +The LEGO Movie,Rescue Reinforcements,857,2014,Sand Blue,1 +The LEGO Movie,Rescue Reinforcements,857,2014,Reddish Brown,31 +The LEGO Movie,Rescue Reinforcements,857,2014,Red,43 +The LEGO Movie,Rescue Reinforcements,857,2014,Orange,2 +The LEGO Movie,Rescue Reinforcements,857,2014,Light Bluish Gray,32 +The LEGO Movie,Rescue Reinforcements,857,2014,Green,1 +The LEGO Movie,Rescue Reinforcements,857,2014,Flat Silver,3 +The LEGO Movie,Rescue Reinforcements,857,2014,Dark Tan,7 +The LEGO Movie,Rescue Reinforcements,857,2014,Dark Red,2 +The LEGO Movie,Rescue Reinforcements,857,2014,Dark Brown,1 +The LEGO Movie,Rescue Reinforcements,857,2014,Flesh,1 +The LEGO Movie,Rescue Reinforcements,857,2014,Trans-Green,1 +The LEGO Movie,Rescue Reinforcements,857,2014,Dark Blue,3 +The LEGO Movie,Rescue Reinforcements,857,2014,Bright Light Blue,1 +The LEGO Movie,Rescue Reinforcements,857,2014,Bright Green,2 +The LEGO Movie,Rescue Reinforcements,857,2014,Blue,4 +The LEGO Movie,Rescue Reinforcements,857,2014,Black,59 +The LEGO Movie,Rescue Reinforcements,857,2014,[No Color],1 +The LEGO Movie,Rescue Reinforcements,857,2014,Yellow,15 +The LEGO Movie,Rescue Reinforcements,857,2014,Trans-Light Blue,1 +The LEGO Movie,Rescue Reinforcements,857,2014,Trans-Orange,1 +The LEGO Movie,Rescue Reinforcements,857,2014,Trans-Red,4 +The LEGO Movie,Super Secret Police Dropship,852,2014,Pearl Gold,1 +The LEGO Movie,Super Secret Police Dropship,852,2014,Red,5 +The LEGO Movie,Super Secret Police Dropship,852,2014,Yellow,4 +The LEGO Movie,Super Secret Police Dropship,852,2014,White,28 +The LEGO Movie,Super Secret Police Dropship,852,2014,Trans-Red,6 +The LEGO Movie,Super Secret Police Dropship,852,2014,Trans-Dark Blue,3 +The LEGO Movie,Super Secret Police Dropship,852,2014,Trans-Clear,4 +The LEGO Movie,Super Secret Police Dropship,852,2014,Trans-Black,1 +The LEGO Movie,Super Secret Police Dropship,852,2014,Tan,7 +The LEGO Movie,Super Secret Police Dropship,852,2014,Reddish Brown,2 +The LEGO Movie,Super Secret Police Dropship,852,2014,Black,85 +The LEGO Movie,Super Secret Police Dropship,852,2014,Orange,3 +The LEGO Movie,Super Secret Police Dropship,852,2014,Blue,3 +The LEGO Movie,Super Secret Police Dropship,852,2014,Dark Blue,2 +The LEGO Movie,Super Secret Police Dropship,852,2014,Dark Bluish Gray,27 +The LEGO Movie,Super Secret Police Dropship,852,2014,Flat Silver,2 +The LEGO Movie,Super Secret Police Dropship,852,2014,Green,3 +The LEGO Movie,Super Secret Police Dropship,852,2014,Light Bluish Gray,38 +The LEGO Movie,Super Secret Police Dropship,852,2014,Light Flesh,1 +The LEGO Movie,Super Secret Police Dropship,852,2014,Pearl Dark Gray,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,White,30 +The LEGO Movie,Lord Business’ Hideout,736,2014,Yellow,6 +The LEGO Movie,Lord Business’ Hideout,736,2014,Dark Orange,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Flat Silver,7 +The LEGO Movie,Lord Business’ Hideout,736,2014,Green,5 +The LEGO Movie,Lord Business’ Hideout,736,2014,Dark Azure,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Light Aqua,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Light Bluish Gray,55 +The LEGO Movie,Lord Business’ Hideout,736,2014,Medium Blue,2 +The LEGO Movie,Lord Business’ Hideout,736,2014,Medium Dark Flesh,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Orange,3 +The LEGO Movie,Lord Business’ Hideout,736,2014,Pearl Gold,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Red,27 +The LEGO Movie,Lord Business’ Hideout,736,2014,Reddish Brown,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Trans-Bright Green,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Trans-Clear,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Trans-Light Blue,4 +The LEGO Movie,Lord Business’ Hideout,736,2014,Trans-Neon Orange,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Black,69 +The LEGO Movie,Lord Business’ Hideout,736,2014,Trans-Red,6 +The LEGO Movie,Lord Business’ Hideout,736,2014,Dark Pink,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Trans-Yellow,2 +The LEGO Movie,Lord Business’ Hideout,736,2014,Yellowish Green,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Trans-Black,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Blue,3 +The LEGO Movie,Lord Business’ Hideout,736,2014,Bright Light Blue,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Bright Light Yellow,1 +The LEGO Movie,Lord Business’ Hideout,736,2014,Bright Pink,3 +The LEGO Movie,Lord Business’ Hideout,736,2014,Dark Bluish Gray,26 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Yellow,45 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Trans-Clear,2 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,White,1 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Black,24 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Blue,13 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Bright Light Orange,2 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Dark Bluish Gray,32 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Dark Red,2 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Flat Silver,2 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Green,1 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Light Bluish Gray,32 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Lime,2 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Orange,3 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Pearl Dark Gray,1 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Red,15 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Tan,2 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Trans-Red,2 +The LEGO Movie,Emmet’s Constructo-Mech,705,2014,Reddish Brown,1 +The LEGO Movie,Super Cycle Chase,513,2014,Reddish Brown,1 +The LEGO Movie,Super Cycle Chase,513,2014,Red,8 +The LEGO Movie,Super Cycle Chase,513,2014,Orange,9 +The LEGO Movie,Super Cycle Chase,513,2014,Light Bluish Gray,39 +The LEGO Movie,Super Cycle Chase,513,2014,Flat Silver,2 +The LEGO Movie,Super Cycle Chase,513,2014,Dark Tan,1 +The LEGO Movie,Super Cycle Chase,513,2014,Dark Bluish Gray,26 +The LEGO Movie,Super Cycle Chase,513,2014,Dark Blue,2 +The LEGO Movie,Super Cycle Chase,513,2014,Blue,1 +The LEGO Movie,Super Cycle Chase,513,2014,Trans-Yellow,1 +The LEGO Movie,Super Cycle Chase,513,2014,Yellow,2 +The LEGO Movie,Super Cycle Chase,513,2014,White,5 +The LEGO Movie,Super Cycle Chase,513,2014,Trans-Red,6 +The LEGO Movie,Super Cycle Chase,513,2014,Trans-Neon Orange,1 +The LEGO Movie,Super Cycle Chase,513,2014,Trans-Dark Blue,2 +The LEGO Movie,Super Cycle Chase,513,2014,Trans-Clear,4 +The LEGO Movie,Super Cycle Chase,513,2014,Trans-Black,1 +The LEGO Movie,Super Cycle Chase,513,2014,Tan,2 +The LEGO Movie,Super Cycle Chase,513,2014,Black,54 +The LEGO Movie,Creative Ambush,473,2014,Olive Green,1 +The LEGO Movie,Creative Ambush,473,2014,Medium Dark Flesh,1 +The LEGO Movie,Creative Ambush,473,2014,Lime,1 +The LEGO Movie,Creative Ambush,473,2014,Light Bluish Gray,22 +The LEGO Movie,Creative Ambush,473,2014,Green,1 +The LEGO Movie,Creative Ambush,473,2014,Flat Silver,3 +The LEGO Movie,Creative Ambush,473,2014,Yellow,13 +The LEGO Movie,Creative Ambush,473,2014,White,12 +The LEGO Movie,Creative Ambush,473,2014,Trans-Red,5 +The LEGO Movie,Creative Ambush,473,2014,Dark Tan,7 +The LEGO Movie,Creative Ambush,473,2014,Dark Brown,6 +The LEGO Movie,Creative Ambush,473,2014,Dark Bluish Gray,30 +The LEGO Movie,Creative Ambush,473,2014,Dark Blue,2 +The LEGO Movie,Creative Ambush,473,2014,Blue,3 +The LEGO Movie,Creative Ambush,473,2014,Black,27 +The LEGO Movie,Creative Ambush,473,2014,Trans-Green,2 +The LEGO Movie,Creative Ambush,473,2014,Trans-Clear,2 +The LEGO Movie,Creative Ambush,473,2014,Tan,4 +The LEGO Movie,Creative Ambush,473,2014,Reddish Brown,28 +The LEGO Movie,Creative Ambush,473,2014,Red,15 +The LEGO Movie,Creative Ambush,473,2014,Pearl Gold,5 +The LEGO Movie,Creative Ambush,473,2014,Pearl Dark Gray,1 +The LEGO Movie,Castle Cavalry,423,2014,White,3 +The LEGO Movie,Castle Cavalry,423,2014,Yellow,4 +The LEGO Movie,Castle Cavalry,423,2014,Pearl Gold,2 +The LEGO Movie,Castle Cavalry,423,2014,Red,5 +The LEGO Movie,Castle Cavalry,423,2014,Reddish Brown,14 +The LEGO Movie,Castle Cavalry,423,2014,Trans-Orange,2 +The LEGO Movie,Castle Cavalry,423,2014,Dark Bluish Gray,31 +The LEGO Movie,Castle Cavalry,423,2014,Trans-Red,1 +The LEGO Movie,Castle Cavalry,423,2014,[No Color],1 +The LEGO Movie,Castle Cavalry,423,2014,Black,20 +The LEGO Movie,Castle Cavalry,423,2014,Blue,7 +The LEGO Movie,Castle Cavalry,423,2014,Bright Light Yellow,1 +The LEGO Movie,Castle Cavalry,423,2014,Dark Brown,2 +The LEGO Movie,Castle Cavalry,423,2014,Dark Green,1 +The LEGO Movie,Castle Cavalry,423,2014,Dark Tan,2 +The LEGO Movie,Castle Cavalry,423,2014,Flat Silver,3 +The LEGO Movie,Castle Cavalry,423,2014,Light Bluish Gray,20 +The LEGO Movie,Castle Cavalry,423,2014,Metallic Silver,2 +The LEGO Movie,Metal Beard's Duel,411,2014,Dark Orange,3 +The LEGO Movie,Metal Beard's Duel,411,2014,Yellow,2 +The LEGO Movie,Metal Beard's Duel,411,2014,Dark Bluish Gray,35 +The LEGO Movie,Metal Beard's Duel,411,2014,Dark Red,2 +The LEGO Movie,Metal Beard's Duel,411,2014,Dark Tan,1 +The LEGO Movie,Metal Beard's Duel,411,2014,Flat Silver,8 +The LEGO Movie,Metal Beard's Duel,411,2014,Dark Brown,5 +The LEGO Movie,Metal Beard's Duel,411,2014,Light Bluish Gray,24 +The LEGO Movie,Metal Beard's Duel,411,2014,Orange,1 +The LEGO Movie,Metal Beard's Duel,411,2014,Pearl Dark Gray,2 +The LEGO Movie,Metal Beard's Duel,411,2014,Pearl Gold,9 +The LEGO Movie,Metal Beard's Duel,411,2014,Red,5 +The LEGO Movie,Metal Beard's Duel,411,2014,Reddish Brown,13 +The LEGO Movie,Metal Beard's Duel,411,2014,Trans-Red,2 +The LEGO Movie,Metal Beard's Duel,411,2014,Tan,2 +The LEGO Movie,Metal Beard's Duel,411,2014,Trans-Black,1 +The LEGO Movie,Metal Beard's Duel,411,2014,Trans-Neon Orange,1 +The LEGO Movie,Metal Beard's Duel,411,2014,White,2 +The LEGO Movie,Metal Beard's Duel,411,2014,Black,53 +The LEGO Movie,Metal Beard's Duel,411,2014,Blue,4 +The LEGO Movie,Metal Beard's Duel,411,2014,Dark Blue,2 +The LEGO Movie,Trash Chomper,388,2014,Blue,3 +The LEGO Movie,Trash Chomper,388,2014,Bright Green,1 +The LEGO Movie,Trash Chomper,388,2014,Dark Blue,2 +The LEGO Movie,Trash Chomper,388,2014,Dark Bluish Gray,21 +The LEGO Movie,Trash Chomper,388,2014,Dark Green,1 +The LEGO Movie,Trash Chomper,388,2014,Dark Red,1 +The LEGO Movie,Trash Chomper,388,2014,Flat Silver,2 +The LEGO Movie,Trash Chomper,388,2014,Green,18 +The LEGO Movie,Trash Chomper,388,2014,Light Bluish Gray,25 +The LEGO Movie,Trash Chomper,388,2014,Lime,1 +The LEGO Movie,Trash Chomper,388,2014,White,4 +The LEGO Movie,Trash Chomper,388,2014,Orange,3 +The LEGO Movie,Trash Chomper,388,2014,Red,4 +The LEGO Movie,Trash Chomper,388,2014,Reddish Brown,2 +The LEGO Movie,Trash Chomper,388,2014,Trans-Clear,2 +The LEGO Movie,Trash Chomper,388,2014,Trans-Orange,3 +The LEGO Movie,Trash Chomper,388,2014,Trans-Red,3 +The LEGO Movie,Trash Chomper,388,2014,Yellow,4 +The LEGO Movie,Trash Chomper,388,2014,Black,20 +The LEGO Movie,The Flying Flusher,350,2014,Yellow,3 +The LEGO Movie,The Flying Flusher,350,2014,Dark Orange,1 +The LEGO Movie,The Flying Flusher,350,2014,Flat Silver,1 +The LEGO Movie,The Flying Flusher,350,2014,Light Bluish Gray,31 +The LEGO Movie,The Flying Flusher,350,2014,Red,5 +The LEGO Movie,The Flying Flusher,350,2014,Reddish Brown,1 +The LEGO Movie,The Flying Flusher,350,2014,Sand Blue,2 +The LEGO Movie,The Flying Flusher,350,2014,Tan,2 +The LEGO Movie,The Flying Flusher,350,2014,Trans-Black,2 +The LEGO Movie,The Flying Flusher,350,2014,Trans-Clear,1 +The LEGO Movie,The Flying Flusher,350,2014,Trans-Light Blue,1 +The LEGO Movie,The Flying Flusher,350,2014,Trans-Orange,2 +The LEGO Movie,The Flying Flusher,350,2014,Trans-Red,2 +The LEGO Movie,The Flying Flusher,350,2014,White,30 +The LEGO Movie,The Flying Flusher,350,2014,Dark Brown,2 +The LEGO Movie,The Flying Flusher,350,2014,Black,21 +The LEGO Movie,The Flying Flusher,350,2014,Blue,13 +The LEGO Movie,The Flying Flusher,350,2014,Dark Blue,1 +The LEGO Movie,The Flying Flusher,350,2014,Dark Bluish Gray,12 +The LEGO Movie,Ice Cream Machine,343,2014,Dark Bluish Gray,10 +The LEGO Movie,Ice Cream Machine,343,2014,Yellowish Green,1 +The LEGO Movie,Ice Cream Machine,343,2014,Yellow,5 +The LEGO Movie,Ice Cream Machine,343,2014,White,37 +The LEGO Movie,Ice Cream Machine,343,2014,Trans-Red,2 +The LEGO Movie,Ice Cream Machine,343,2014,Dark Brown,1 +The LEGO Movie,Ice Cream Machine,343,2014,Trans-Clear,8 +The LEGO Movie,Ice Cream Machine,343,2014,Tan,4 +The LEGO Movie,Ice Cream Machine,343,2014,Trans-Neon Green,1 +The LEGO Movie,Ice Cream Machine,343,2014,Reddish Brown,1 +The LEGO Movie,Ice Cream Machine,343,2014,Red,2 +The LEGO Movie,Ice Cream Machine,343,2014,Medium Dark Flesh,1 +The LEGO Movie,Ice Cream Machine,343,2014,Lime,7 +The LEGO Movie,Ice Cream Machine,343,2014,Light Bluish Gray,17 +The LEGO Movie,Ice Cream Machine,343,2014,[No Color],1 +The LEGO Movie,Ice Cream Machine,343,2014,Black,18 +The LEGO Movie,Ice Cream Machine,343,2014,Blue,2 +The LEGO Movie,Ice Cream Machine,343,2014,Bright Light Orange,1 +The LEGO Movie,Ice Cream Machine,343,2014,Bright Pink,1 +The LEGO Movie,Ice Cream Machine,343,2014,Dark Azure,3 +The LEGO Movie,Ice Cream Machine,343,2014,Dark Pink,12 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Blue,2 +The LEGO Movie,Bad Cop's Pursuit,313,2014,White,17 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Trans-Yellow,1 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Trans-Red,6 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Trans-Clear,1 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Trans-Black,1 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Tan,2 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Red,3 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Orange,2 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Light Bluish Gray,28 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Green,2 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Dark Green,4 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Dark Blue,1 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Reddish Brown,5 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Dark Bluish Gray,14 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Trans-Dark Blue,4 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Yellow,2 +The LEGO Movie,Bad Cop's Pursuit,313,2014,Black,42 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Bright Light Blue,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Reddish Brown,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Medium Azure,3 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Yellowish Green,2 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Yellow,14 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,White,21 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Trans-Yellow,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Trans-Red,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Trans-Orange,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Trans-Neon Orange,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Trans-Light Blue,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Red,6 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Orange,2 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Magenta,2 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Lime,6 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Black,7 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Light Bluish Gray,6 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Green,2 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Flat Silver,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Dark Pink,4 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Light Aqua,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Dark Bluish Gray,2 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Bright Pink,8 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Bright Light Yellow,2 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Bright Light Orange,3 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Trans-Dark Pink,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Trans-Green,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Trans-Clear,1 +The LEGO Movie,Cloud Cuckoo Palace,197,2014,Tan,1 +The LEGO Movie,Melting Room,122,2014,Trans-Clear,1 +The LEGO Movie,Melting Room,122,2014,Reddish Brown,1 +The LEGO Movie,Melting Room,122,2014,Red,4 +The LEGO Movie,Melting Room,122,2014,Trans-Red,3 +The LEGO Movie,Melting Room,122,2014,Dark Bluish Gray,14 +The LEGO Movie,Melting Room,122,2014,Orange,2 +The LEGO Movie,Melting Room,122,2014,Light Bluish Gray,21 +The LEGO Movie,Melting Room,122,2014,Flat Silver,1 +The LEGO Movie,Melting Room,122,2014,Dark Tan,1 +The LEGO Movie,Melting Room,122,2014,Dark Blue,2 +The LEGO Movie,Melting Room,122,2014,Blue,1 +The LEGO Movie,Melting Room,122,2014,Black,21 +The LEGO Movie,Melting Room,122,2014,Yellow,2 +The LEGO Movie,Melting Room,122,2014,White,2 +The LEGO Movie,Melting Room,122,2014,Trans-Yellow,1 +The LEGO Movie,Melting Room,122,2014,Trans-Orange,1 +The LEGO Movie,Escape Glider,103,2014,Dark Brown,2 +The LEGO Movie,Escape Glider,103,2014,Dark Bluish Gray,10 +The LEGO Movie,Escape Glider,103,2014,Blue,1 +The LEGO Movie,Escape Glider,103,2014,Black,7 +The LEGO Movie,Escape Glider,103,2014,Lime,1 +The LEGO Movie,Escape Glider,103,2014,Orange,2 +The LEGO Movie,Escape Glider,103,2014,Pearl Gold,1 +The LEGO Movie,Escape Glider,103,2014,Red,1 +The LEGO Movie,Escape Glider,103,2014,Reddish Brown,13 +The LEGO Movie,Escape Glider,103,2014,Tan,3 +The LEGO Movie,Escape Glider,103,2014,White,1 +The LEGO Movie,Escape Glider,103,2014,Yellow,1 +The LEGO Movie,Escape Glider,103,2014,Light Bluish Gray,6 +The LEGO Movie,Escape Glider,103,2014,Green,2 +The LEGO Movie,Escape Glider,103,2014,Flat Silver,5 +The LEGO Movie,Escape Glider,103,2014,Dark Tan,2 +The LEGO Movie,Escape Glider,103,2014,Dark Orange,1 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Dark Azure,1 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Black,13 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Dark Bluish Gray,4 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Dark Orange,1 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Light Bluish Gray,10 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Light Flesh,2 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Medium Dark Flesh,1 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Metallic Silver,1 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Orange,2 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Red,4 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Reddish Brown,2 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,White,5 +The LEGO Movie,The LEGO Movie Promotional Set,103,2014,Yellow,8 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,Blue,1 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,Bright Pink,3 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,Dark Green,1 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,Green,5 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,Light Bluish Gray,1 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,Lime,1 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,Orange,1 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,Tan,1 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,Trans-Clear,1 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,White,5 +The LEGO Movie,The LEGO Movie Accessory Pack,50,2014,Black,1 +The LEGO Movie,TRU Emmet's car,40,2014,Trans-Black,1 +The LEGO Movie,TRU Emmet's car,40,2014,Black,9 +The LEGO Movie,TRU Emmet's car,40,2014,Light Bluish Gray,3 +The LEGO Movie,TRU Emmet's car,40,2014,Trans-Clear,1 +The LEGO Movie,TRU Emmet's car,40,2014,White,8 +The LEGO Movie,Super Secret Police Enforcer,40,2014,Light Bluish Gray,1 +The LEGO Movie,Super Secret Police Enforcer,40,2014,Trans-Black,2 +The LEGO Movie,Super Secret Police Enforcer,40,2014,Trans-Dark Blue,1 +The LEGO Movie,Super Secret Police Enforcer,40,2014,Trans-Red,2 +The LEGO Movie,Super Secret Police Enforcer,40,2014,White,7 +The LEGO Movie,Super Secret Police Enforcer,40,2014,Black,9 +The LEGO Movie,Super Secret Police Enforcer,40,2014,Dark Blue,2 +The LEGO Movie,Super Secret Police Enforcer,40,2014,Dark Bluish Gray,3 +The LEGO Movie,Super Secret Police Enforcer,40,2014,Flat Silver,1 +The LEGO Movie,The Piece of Resistance,33,2014,Dark Bluish Gray,3 +The LEGO Movie,The Piece of Resistance,33,2014,Light Bluish Gray,7 +The LEGO Movie,The Piece of Resistance,33,2014,Red,3 +The LEGO Movie,The Piece of Resistance,33,2014,Reddish Brown,1 +The LEGO Movie,The Piece of Resistance,33,2014,Trans-Yellow,1 +The LEGO Movie,The Piece of Resistance,33,2014,Yellow,1 +The LEGO Movie,The Piece of Resistance,33,2014,Orange,2 +The LEGO Movie,Micro Manager Battle,27,2014,Black,9 +The LEGO Movie,Micro Manager Battle,27,2014,Dark Bluish Gray,3 +The LEGO Movie,Micro Manager Battle,27,2014,Flat Silver,1 +The LEGO Movie,Micro Manager Battle,27,2014,Yellow,1 +The LEGO Movie,Micro Manager Battle,27,2014,Trans-Red,1 +The LEGO Movie,Micro Manager Battle,27,2014,Red,1 +The LEGO Movie,Micro Manager Battle,27,2014,Light Bluish Gray,3 +The LEGO Movie,Western Emmet,6,2014,Orange,2 +The LEGO Movie,Western Emmet,6,2014,Reddish Brown,1 +The LEGO Movie,Western Emmet,6,2014,Tan,1 +The LEGO Movie,Western Emmet,6,2014,Yellow,1 +The LEGO Movie,Radio DJ Robot,4,2014,Flat Silver,1 +The LEGO Movie,Radio DJ Robot,4,2014,Medium Dark Flesh,1 +The LEGO Movie,Pyjamas Emmet,4,2014,Bright Light Blue,2 +The LEGO Movie,Radio DJ Robot,4,2014,Reddish Brown,1 +The LEGO Movie,Pyjamas Emmet,4,2014,Yellow,1 +The LEGO Movie,Pyjamas Emmet,4,2014,Reddish Brown,1 +The LEGO Movie,Radio DJ Robot,4,2014,Blue,1 +The LEGO Movie,Bad Cop Car Chase,291,2015,Black,53 +The LEGO Movie,Bad Cop Car Chase,291,2015,Blue,1 +The LEGO Movie,Bad Cop Car Chase,291,2015,Dark Blue,2 +The LEGO Movie,Bad Cop Car Chase,291,2015,Dark Bluish Gray,13 +The LEGO Movie,Bad Cop Car Chase,291,2015,Flat Silver,2 +The LEGO Movie,Bad Cop Car Chase,291,2015,Light Bluish Gray,21 +The LEGO Movie,Bad Cop Car Chase,291,2015,Red,2 +The LEGO Movie,Bad Cop Car Chase,291,2015,Tan,3 +The LEGO Movie,Bad Cop Car Chase,291,2015,Trans-Black,3 +The LEGO Movie,Bad Cop Car Chase,291,2015,Trans-Clear,2 +The LEGO Movie,Bad Cop Car Chase,291,2015,Trans-Dark Blue,2 +The LEGO Movie,Bad Cop Car Chase,291,2015,Trans-Red,5 +The LEGO Movie,Bad Cop Car Chase,291,2015,White,13 +The LEGO Movie,Bad Cop Car Chase,291,2015,Yellow,2 +The LEGO Movie,Double-Decker Couch,197,2015,Medium Dark Flesh,1 +The LEGO Movie,Double-Decker Couch,197,2015,Orange,2 +The LEGO Movie,Double-Decker Couch,197,2015,Red,3 +The LEGO Movie,Double-Decker Couch,197,2015,Reddish Brown,8 +The LEGO Movie,Double-Decker Couch,197,2015,Trans-Black,1 +The LEGO Movie,Double-Decker Couch,197,2015,Yellow,3 +The LEGO Movie,Double-Decker Couch,197,2015,Trans-Bright Green,1 +The LEGO Movie,Double-Decker Couch,197,2015,Trans-Clear,1 +The LEGO Movie,Double-Decker Couch,197,2015,Trans-Red,1 +The LEGO Movie,Double-Decker Couch,197,2015,White,15 +The LEGO Movie,Double-Decker Couch,197,2015,Black,12 +The LEGO Movie,Double-Decker Couch,197,2015,Blue,5 +The LEGO Movie,Double-Decker Couch,197,2015,Bright Light Blue,1 +The LEGO Movie,Double-Decker Couch,197,2015,Bright Pink,7 +The LEGO Movie,Double-Decker Couch,197,2015,Dark Azure,1 +The LEGO Movie,Double-Decker Couch,197,2015,Dark Bluish Gray,6 +The LEGO Movie,Double-Decker Couch,197,2015,Dark Orange,1 +The LEGO Movie,Double-Decker Couch,197,2015,Dark Pink,1 +The LEGO Movie,Double-Decker Couch,197,2015,Glow in Dark White,1 +The LEGO Movie,Double-Decker Couch,197,2015,Light Aqua,1 +The LEGO Movie,Double-Decker Couch,197,2015,Light Bluish Gray,5 +The LEGO Movie,Double-Decker Couch,197,2015,Medium Blue,3 +The LEGO Movie,Double-Decker Couch,197,2015,Yellowish Green,1 +The LEGO Movie,Batman & Super Angry Kitty Attack,115,2015,Bright Light Orange,2 +The LEGO Movie,Batman & Super Angry Kitty Attack,115,2015,Dark Bluish Gray,10 +The LEGO Movie,Batman & Super Angry Kitty Attack,115,2015,Dark Red,2 +The LEGO Movie,Batman & Super Angry Kitty Attack,115,2015,Flat Silver,1 +The LEGO Movie,Batman & Super Angry Kitty Attack,115,2015,Light Flesh,1 +The LEGO Movie,Batman & Super Angry Kitty Attack,115,2015,Red,10 +The LEGO Movie,Batman & Super Angry Kitty Attack,115,2015,Trans-Black,1 +The LEGO Movie,Batman & Super Angry Kitty Attack,115,2015,Trans-Red,3 +The LEGO Movie,Batman & Super Angry Kitty Attack,115,2015,Light Bluish Gray,13 +The LEGO Movie,Batman & Super Angry Kitty Attack,115,2015,Black,22 +The LEGO Movie Series,Taco Tuesday Man,10,2014,Bright Light Orange,1 +The LEGO Movie Series,Taco Tuesday Man,10,2014,Black,1 +The LEGO Movie Series,Taco Tuesday Man,10,2014,Bright Green,1 +The LEGO Movie Series,Taco Tuesday Man,10,2014,Dark Green,1 +The LEGO Movie Series,Taco Tuesday Man,10,2014,Dark Red,1 +The LEGO Movie Series,Taco Tuesday Man,10,2014,Red,1 +The LEGO Movie Series,Taco Tuesday Man,10,2014,Yellow,2 +The LEGO Movie Series,Wiley Fusebot,8,2014,Black,1 +The LEGO Movie Series,Wiley Fusebot,8,2014,Dark Bluish Gray,1 +The LEGO Movie Series,Wiley Fusebot,8,2014,Flat Silver,1 +The LEGO Movie Series,Wiley Fusebot,8,2014,Medium Dark Flesh,2 +The LEGO Movie Series,Wiley Fusebot,8,2014,Red,1 +The LEGO Movie Series,Wiley Fusebot,8,2014,Reddish Brown,2 +The LEGO Movie Series,Calamity Drone,7,2014,Reddish Brown,1 +The LEGO Movie Series,Scribble-Face Bad Cop,7,2014,Light Bluish Gray,1 +The LEGO Movie Series,Scribble-Face Bad Cop,7,2014,Yellow,1 +The LEGO Movie Series,Marsha Queen of the Mermaids,7,2014,Black,1 +The LEGO Movie Series,Marsha Queen of the Mermaids,7,2014,Bright Light Blue,1 +The LEGO Movie Series,Marsha Queen of the Mermaids,7,2014,Medium Lavender,1 +The LEGO Movie Series,Marsha Queen of the Mermaids,7,2014,Trans-Dark Pink,1 +The LEGO Movie Series,Marsha Queen of the Mermaids,7,2014,White,1 +The LEGO Movie Series,Marsha Queen of the Mermaids,7,2014,Yellow,2 +The LEGO Movie Series,Scribble-Face Bad Cop,7,2014,Black,5 +The LEGO Movie Series,Calamity Drone,7,2014,Black,1 +The LEGO Movie Series,Calamity Drone,7,2014,Bright Light Yellow,1 +The LEGO Movie Series,Calamity Drone,7,2014,Dark Red,3 +The LEGO Movie Series,Calamity Drone,7,2014,Flat Silver,1 +The LEGO Movie Series,William Shakespeare,7,2014,Black,1 +The LEGO Movie Series,William Shakespeare,7,2014,Dark Red,1 +The LEGO Movie Series,William Shakespeare,7,2014,Reddish Brown,1 +The LEGO Movie Series,William Shakespeare,7,2014,Tan,1 +The LEGO Movie Series,William Shakespeare,7,2014,White,1 +The LEGO Movie Series,William Shakespeare,7,2014,Yellow,2 +The LEGO Movie Series,Larry the Barista,6,2014,Black,1 +The LEGO Movie Series,Larry the Barista,6,2014,Dark Brown,1 +The LEGO Movie Series,Larry the Barista,6,2014,Sand Blue,1 +The LEGO Movie Series,Larry the Barista,6,2014,White,2 +The LEGO Movie Series,Larry the Barista,6,2014,Yellow,1 +The LEGO Movie Series,Mrs Scratchen-Post,6,2014,Black,1 +The LEGO Movie Series,Mrs Scratchen-Post,6,2014,Bright Pink,1 +The LEGO Movie Series,Mrs Scratchen-Post,6,2014,Dark Orange,1 +The LEGO Movie Series,Mrs Scratchen-Post,6,2014,Light Bluish Gray,1 +The LEGO Movie Series,Mrs Scratchen-Post,6,2014,Sand Blue,1 +The LEGO Movie Series,Mrs Scratchen-Post,6,2014,Yellow,1 +The LEGO Movie Series,Panda Guy,6,2014,White,2 +The LEGO Movie Series,Panda Guy,6,2014,Yellow,1 +The LEGO Movie Series,President Business - Complete Set,6,2014,Black,1 +The LEGO Movie Series,President Business - Complete Set,6,2014,Dark Bluish Gray,2 +The LEGO Movie Series,President Business - Complete Set,6,2014,Dark Orange,1 +The LEGO Movie Series,President Business - Complete Set,6,2014,Red,1 +The LEGO Movie Series,President Business - Complete Set,6,2014,Yellow,1 +The LEGO Movie Series,Panda Guy,6,2014,Black,3 +The LEGO Movie Series,'Where Are My Pants?' Guy,6,2014,Black,2 +The LEGO Movie Series,'Where Are My Pants?' Guy,6,2014,Blue,1 +The LEGO Movie Series,'Where Are My Pants?' Guy,6,2014,White,1 +The LEGO Movie Series,'Where Are My Pants?' Guy,6,2014,Yellow,2 +The LEGO Movie Series,Abraham Lincoln,6,2014,Black,4 +The LEGO Movie Series,Velma Staplebot,6,2014,Black,2 +The LEGO Movie Series,Velma Staplebot,6,2014,Bright Light Orange,1 +The LEGO Movie Series,Velma Staplebot,6,2014,Flat Silver,1 +The LEGO Movie Series,Velma Staplebot,6,2014,Flesh,1 +The LEGO Movie Series,Velma Staplebot,6,2014,Medium Dark Flesh,1 +The LEGO Movie Series,Wild West Wyldstyle,6,2014,Black,5 +The LEGO Movie Series,Wild West Wyldstyle,6,2014,Yellow,1 +The LEGO Movie Series,Abraham Lincoln,6,2014,Tan,1 +The LEGO Movie Series,Abraham Lincoln,6,2014,Yellow,1 +The LEGO Movie Series,Gail the Construction Worker,6,2014,Black,1 +The LEGO Movie Series,Gail the Construction Worker,6,2014,Blue,1 +The LEGO Movie Series,Gail the Construction Worker,6,2014,Dark Bluish Gray,1 +The LEGO Movie Series,Gail the Construction Worker,6,2014,Orange,1 +The LEGO Movie Series,Gail the Construction Worker,6,2014,Red,1 +The LEGO Movie Series,Gail the Construction Worker,6,2014,Yellow,1 +The LEGO Movie Series,Hard Hat Emmet,6,2014,Black,1 +The LEGO Movie Series,Hard Hat Emmet,6,2014,Orange,2 +The LEGO Movie Series,Hard Hat Emmet,6,2014,Red,1 +The LEGO Movie Series,Hard Hat Emmet,6,2014,Yellow,2 +The Lone Ranger,Constitution Train Chase,701,2013,Orange,1 +The Lone Ranger,Constitution Train Chase,701,2013,Metallic Silver,2 +The Lone Ranger,Constitution Train Chase,701,2013,Medium Dark Flesh,3 +The Lone Ranger,Constitution Train Chase,701,2013,Light Flesh,6 +The Lone Ranger,Constitution Train Chase,701,2013,Light Bluish Gray,34 +The Lone Ranger,Constitution Train Chase,701,2013,Flat Silver,3 +The Lone Ranger,Constitution Train Chase,701,2013,Dark Tan,4 +The Lone Ranger,Constitution Train Chase,701,2013,Dark Red,4 +The Lone Ranger,Constitution Train Chase,701,2013,Dark Orange,1 +The Lone Ranger,Constitution Train Chase,701,2013,Dark Green,7 +The Lone Ranger,Constitution Train Chase,701,2013,Dark Brown,6 +The Lone Ranger,Constitution Train Chase,701,2013,Dark Bluish Gray,49 +The Lone Ranger,Constitution Train Chase,701,2013,Dark Blue,3 +The Lone Ranger,Constitution Train Chase,701,2013,Chrome Silver,1 +The Lone Ranger,Constitution Train Chase,701,2013,Blue,1 +The Lone Ranger,Constitution Train Chase,701,2013,Black,78 +The Lone Ranger,Constitution Train Chase,701,2013,Yellow,2 +The Lone Ranger,Constitution Train Chase,701,2013,White,5 +The Lone Ranger,Constitution Train Chase,701,2013,Trans-Light Blue,1 +The Lone Ranger,Constitution Train Chase,701,2013,Trans-Green,1 +The Lone Ranger,Constitution Train Chase,701,2013,Trans-Clear,3 +The Lone Ranger,Constitution Train Chase,701,2013,Tan,10 +The Lone Ranger,Constitution Train Chase,701,2013,Reddish Brown,11 +The Lone Ranger,Constitution Train Chase,701,2013,Red,3 +The Lone Ranger,Constitution Train Chase,701,2013,Pearl Gold,3 +The Lone Ranger,Constitution Train Chase,701,2013,Pearl Dark Gray,1 +The Lone Ranger,Silver Mine Shootout,642,2013,Dark Tan,13 +The Lone Ranger,Silver Mine Shootout,642,2013,Green,1 +The Lone Ranger,Silver Mine Shootout,642,2013,Light Bluish Gray,22 +The Lone Ranger,Silver Mine Shootout,642,2013,Light Flesh,3 +The Lone Ranger,Silver Mine Shootout,642,2013,Medium Blue,1 +The Lone Ranger,Silver Mine Shootout,642,2013,Medium Dark Flesh,5 +The Lone Ranger,Silver Mine Shootout,642,2013,Metallic Silver,3 +The Lone Ranger,Silver Mine Shootout,642,2013,Orange,1 +The Lone Ranger,Silver Mine Shootout,642,2013,Pearl Dark Gray,1 +The Lone Ranger,Silver Mine Shootout,642,2013,Red,2 +The Lone Ranger,Silver Mine Shootout,642,2013,Reddish Brown,24 +The Lone Ranger,Silver Mine Shootout,642,2013,Tan,20 +The Lone Ranger,Silver Mine Shootout,642,2013,Trans-Clear,5 +The Lone Ranger,Silver Mine Shootout,642,2013,Trans-Green,1 +The Lone Ranger,Silver Mine Shootout,642,2013,White,6 +The Lone Ranger,Silver Mine Shootout,642,2013,Yellow,2 +The Lone Ranger,Silver Mine Shootout,642,2013,Flat Silver,1 +The Lone Ranger,Silver Mine Shootout,642,2013,Black,37 +The Lone Ranger,Silver Mine Shootout,642,2013,Blue,2 +The Lone Ranger,Silver Mine Shootout,642,2013,Dark Bluish Gray,31 +The Lone Ranger,Silver Mine Shootout,642,2013,Dark Brown,7 +The Lone Ranger,Silver Mine Shootout,642,2013,Dark Orange,2 +The Lone Ranger,Colby City Showdown,585,2013,Dark Red,1 +The Lone Ranger,Colby City Showdown,585,2013,Light Flesh,4 +The Lone Ranger,Colby City Showdown,585,2013,Light Bluish Gray,21 +The Lone Ranger,Colby City Showdown,585,2013,Trans-Yellow,1 +The Lone Ranger,Colby City Showdown,585,2013,Flat Silver,2 +The Lone Ranger,Colby City Showdown,585,2013,Dark Tan,6 +The Lone Ranger,Colby City Showdown,585,2013,White,19 +The Lone Ranger,Colby City Showdown,585,2013,Dark Green,6 +The Lone Ranger,Colby City Showdown,585,2013,Dark Brown,9 +The Lone Ranger,Colby City Showdown,585,2013,Dark Bluish Gray,17 +The Lone Ranger,Colby City Showdown,585,2013,Black,37 +The Lone Ranger,Colby City Showdown,585,2013,[No Color],1 +The Lone Ranger,Colby City Showdown,585,2013,Green,2 +The Lone Ranger,Colby City Showdown,585,2013,Reddish Brown,29 +The Lone Ranger,Colby City Showdown,585,2013,Tan,11 +The Lone Ranger,Colby City Showdown,585,2013,Trans-Clear,4 +The Lone Ranger,Colby City Showdown,585,2013,Red,1 +The Lone Ranger,Colby City Showdown,585,2013,Pearl Gold,1 +The Lone Ranger,Colby City Showdown,585,2013,Pearl Dark Gray,2 +The Lone Ranger,Colby City Showdown,585,2013,Orange,1 +The Lone Ranger,Colby City Showdown,585,2013,Metallic Silver,2 +The Lone Ranger,Colby City Showdown,585,2013,Medium Dark Flesh,5 +The Lone Ranger,Stagecoach Escape,279,2013,Reddish Brown,14 +The Lone Ranger,Stagecoach Escape,279,2013,Sand Green,1 +The Lone Ranger,Stagecoach Escape,279,2013,Tan,6 +The Lone Ranger,Stagecoach Escape,279,2013,White,2 +The Lone Ranger,Stagecoach Escape,279,2013,Yellow,1 +The Lone Ranger,Stagecoach Escape,279,2013,Trans-Yellow,1 +The Lone Ranger,Stagecoach Escape,279,2013,[No Color],1 +The Lone Ranger,Stagecoach Escape,279,2013,Black,33 +The Lone Ranger,Stagecoach Escape,279,2013,Dark Bluish Gray,14 +The Lone Ranger,Stagecoach Escape,279,2013,Dark Brown,5 +The Lone Ranger,Stagecoach Escape,279,2013,Dark Green,7 +The Lone Ranger,Stagecoach Escape,279,2013,Dark Orange,1 +The Lone Ranger,Stagecoach Escape,279,2013,Dark Tan,7 +The Lone Ranger,Stagecoach Escape,279,2013,Flat Silver,1 +The Lone Ranger,Stagecoach Escape,279,2013,Light Bluish Gray,13 +The Lone Ranger,Stagecoach Escape,279,2013,Light Flesh,4 +The Lone Ranger,Stagecoach Escape,279,2013,Medium Dark Flesh,2 +The Lone Ranger,Stagecoach Escape,279,2013,Metallic Silver,1 +The Lone Ranger,Stagecoach Escape,279,2013,Pearl Dark Gray,1 +The Lone Ranger,Stagecoach Escape,279,2013,Pearl Gold,3 +The Lone Ranger,Stagecoach Escape,279,2013,Red,18 +The Lone Ranger,Comanche Camp,161,2013,Flat Silver,2 +The Lone Ranger,Comanche Camp,161,2013,Dark Tan,8 +The Lone Ranger,Comanche Camp,161,2013,Medium Dark Flesh,5 +The Lone Ranger,Comanche Camp,161,2013,Trans-Neon Orange,1 +The Lone Ranger,Comanche Camp,161,2013,Trans-Clear,1 +The Lone Ranger,Comanche Camp,161,2013,Red,3 +The Lone Ranger,Comanche Camp,161,2013,White,4 +The Lone Ranger,Comanche Camp,161,2013,Tan,6 +The Lone Ranger,Comanche Camp,161,2013,Reddish Brown,8 +The Lone Ranger,Comanche Camp,161,2013,Light Flesh,1 +The Lone Ranger,Comanche Camp,161,2013,Dark Orange,1 +The Lone Ranger,Comanche Camp,161,2013,Dark Brown,7 +The Lone Ranger,Comanche Camp,161,2013,Dark Bluish Gray,4 +The Lone Ranger,Comanche Camp,161,2013,Green,1 +The Lone Ranger,Comanche Camp,161,2013,Black,9 +The Lone Ranger,Comanche Camp,161,2013,Blue,3 +The Lone Ranger,Comanche Camp,161,2013,Light Bluish Gray,5 +The Lone Ranger,Cavalry Builder Set,70,2013,Pearl Dark Gray,2 +The Lone Ranger,Cavalry Builder Set,70,2013,Pearl Gold,1 +The Lone Ranger,Cavalry Builder Set,70,2013,Red,1 +The Lone Ranger,Cavalry Builder Set,70,2013,Sand Blue,1 +The Lone Ranger,Cavalry Builder Set,70,2013,Tan,4 +The Lone Ranger,Cavalry Builder Set,70,2013,Trans-Clear,1 +The Lone Ranger,Cavalry Builder Set,70,2013,Reddish Brown,8 +The Lone Ranger,Cavalry Builder Set,70,2013,Yellow,1 +The Lone Ranger,Cavalry Builder Set,70,2013,White,4 +The Lone Ranger,Cavalry Builder Set,70,2013,Trans-Neon Orange,1 +The Lone Ranger,Cavalry Builder Set,70,2013,Light Bluish Gray,1 +The Lone Ranger,Cavalry Builder Set,70,2013,Black,6 +The Lone Ranger,Cavalry Builder Set,70,2013,Dark Blue,2 +The Lone Ranger,Cavalry Builder Set,70,2013,Dark Bluish Gray,2 +The Lone Ranger,Cavalry Builder Set,70,2013,Dark Brown,1 +The Lone Ranger,Cavalry Builder Set,70,2013,Dark Orange,1 +The Lone Ranger,Cavalry Builder Set,70,2013,Dark Tan,2 +The Lone Ranger,Cavalry Builder Set,70,2013,Flat Silver,2 +The Lone Ranger,Cavalry Builder Set,70,2013,Light Flesh,4 +The Lone Ranger,Lone Ranger’s Pump Car,24,2013,Tan,1 +The Lone Ranger,Lone Ranger’s Pump Car,24,2013,Reddish Brown,2 +The Lone Ranger,Lone Ranger’s Pump Car,24,2013,Light Flesh,1 +The Lone Ranger,Lone Ranger’s Pump Car,24,2013,White,1 +The Lone Ranger,Lone Ranger’s Pump Car,24,2013,Flat Silver,1 +The Lone Ranger,Lone Ranger’s Pump Car,24,2013,Dark Brown,1 +The Lone Ranger,Lone Ranger’s Pump Car,24,2013,Black,5 +The Lone Ranger,Lone Ranger’s Pump Car,24,2013,Dark Bluish Gray,2 +The Lone Ranger,Tonto's Campfire,20,2013,Black,2 +The Lone Ranger,Tonto's Campfire,20,2013,Dark Bluish Gray,1 +The Lone Ranger,Tonto's Campfire,20,2013,Dark Brown,2 +The Lone Ranger,Tonto's Campfire,20,2013,Dark Orange,1 +The Lone Ranger,Tonto's Campfire,20,2013,Dark Tan,1 +The Lone Ranger,Tonto's Campfire,20,2013,Light Bluish Gray,2 +The Lone Ranger,Tonto's Campfire,20,2013,Medium Dark Flesh,2 +The Lone Ranger,Tonto's Campfire,20,2013,Reddish Brown,1 +The Lone Ranger,Tonto's Campfire,20,2013,Tan,1 +The Lone Ranger,Tonto's Campfire,20,2013,Trans-Orange,2 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Reddish Brown,4 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Sand Green,1 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Trans-Black,1 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Trans-Neon Orange,1 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,White,1 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Black,6 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Dark Bluish Gray,5 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Dark Brown,2 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Green,2 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Light Flesh,1 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Pearl Gold,1 +The Lord of the Rings,Frodo with Cooking Corner,35,2012,Red,1 +The Lord of the Rings,Uruk Hai with Ballista,21,2012,Black,2 +The Lord of the Rings,Uruk Hai with Ballista,21,2012,Dark Bluish Gray,5 +The Lord of the Rings,Uruk Hai with Ballista,21,2012,Dark Brown,2 +The Lord of the Rings,Uruk Hai with Ballista,21,2012,Dark Red,1 +The Lord of the Rings,Uruk Hai with Ballista,21,2012,Light Bluish Gray,2 +The Lord of the Rings,Uruk Hai with Ballista,21,2012,Pearl Dark Gray,2 +The Lord of the Rings,Uruk Hai with Ballista,21,2012,Reddish Brown,2 +The Lord of the Rings,Elrond,6,2012,Dark Blue,1 +The Lord of the Rings,Elrond,6,2012,Dark Brown,1 +The Lord of the Rings,Elrond,6,2012,Light Flesh,1 +The Lord of the Rings,Elrond,6,2012,Olive Green,1 +The Lord of the Rings,Elrond,6,2012,Pearl Gold,2 +The Return of the King,Shelob Attacks,227,2012,Black,20 +The Return of the King,Shelob Attacks,227,2012,Blue,1 +The Return of the King,Shelob Attacks,227,2012,Chrome Gold,1 +The Return of the King,Shelob Attacks,227,2012,Dark Bluish Gray,12 +The Return of the King,Shelob Attacks,227,2012,Dark Brown,2 +The Return of the King,Shelob Attacks,227,2012,Dark Green,1 +The Return of the King,Shelob Attacks,227,2012,Dark Red,1 +The Return of the King,Shelob Attacks,227,2012,Dark Tan,6 +The Return of the King,Shelob Attacks,227,2012,Flat Silver,3 +The Return of the King,Shelob Attacks,227,2012,Green,1 +The Return of the King,Shelob Attacks,227,2012,Light Bluish Gray,13 +The Return of the King,Shelob Attacks,227,2012,Light Flesh,2 +The Return of the King,Shelob Attacks,227,2012,Medium Dark Flesh,1 +The Return of the King,Shelob Attacks,227,2012,Red,7 +The Return of the King,Shelob Attacks,227,2012,Reddish Brown,9 +The Return of the King,Shelob Attacks,227,2012,Tan,5 +The Return of the King,Shelob Attacks,227,2012,Trans-Clear,1 +The Return of the King,Shelob Attacks,227,2012,White,2 +The Return of the King,Pirate Ship Ambush,754,2013,Dark Tan,2 +The Return of the King,Pirate Ship Ambush,754,2013,Flat Silver,5 +The Return of the King,Pirate Ship Ambush,754,2013,Trans-Orange,1 +The Return of the King,Pirate Ship Ambush,754,2013,Light Bluish Gray,6 +The Return of the King,Pirate Ship Ambush,754,2013,Light Flesh,4 +The Return of the King,Pirate Ship Ambush,754,2013,Olive Green,3 +The Return of the King,Pirate Ship Ambush,754,2013,Orange,1 +The Return of the King,Pirate Ship Ambush,754,2013,Pearl Dark Gray,6 +The Return of the King,Pirate Ship Ambush,754,2013,Pearl Gold,1 +The Return of the King,Pirate Ship Ambush,754,2013,Red,1 +The Return of the King,Pirate Ship Ambush,754,2013,Reddish Brown,32 +The Return of the King,Pirate Ship Ambush,754,2013,Glow in Dark White,2 +The Return of the King,Pirate Ship Ambush,754,2013,Sand Green,6 +The Return of the King,Pirate Ship Ambush,754,2013,Tan,2 +The Return of the King,Pirate Ship Ambush,754,2013,Trans-Black,1 +The Return of the King,Pirate Ship Ambush,754,2013,Trans-Clear,1 +The Return of the King,Pirate Ship Ambush,754,2013,Black,69 +The Return of the King,Pirate Ship Ambush,754,2013,Blue,1 +The Return of the King,Pirate Ship Ambush,754,2013,Bright Light Yellow,1 +The Return of the King,Pirate Ship Ambush,754,2013,Dark Bluish Gray,44 +The Return of the King,Pirate Ship Ambush,754,2013,Dark Brown,18 +The Return of the King,Pirate Ship Ambush,754,2013,Dark Red,2 +The Return of the King,Battle at the Black Gate,655,2013,Black,72 +The Return of the King,Battle at the Black Gate,655,2013,Dark Blue,1 +The Return of the King,Battle at the Black Gate,655,2013,Dark Bluish Gray,29 +The Return of the King,Battle at the Black Gate,655,2013,Dark Brown,8 +The Return of the King,Battle at the Black Gate,655,2013,Dark Red,2 +The Return of the King,Battle at the Black Gate,655,2013,Dark Tan,2 +The Return of the King,Battle at the Black Gate,655,2013,Flat Silver,3 +The Return of the King,Battle at the Black Gate,655,2013,Light Bluish Gray,11 +The Return of the King,Battle at the Black Gate,655,2013,Light Flesh,2 +The Return of the King,Battle at the Black Gate,655,2013,Orange,1 +The Return of the King,Battle at the Black Gate,655,2013,Pearl Dark Gray,3 +The Return of the King,Battle at the Black Gate,655,2013,Tan,3 +The Return of the King,Battle at the Black Gate,655,2013,Trans-Black,1 +The Return of the King,Battle at the Black Gate,655,2013,Trans-Neon Orange,1 +The Return of the King,Battle at the Black Gate,655,2013,White,7 +The Return of the King,Battle at the Black Gate,655,2013,Reddish Brown,20 +The Simpsons,Bart Simpson,7,2014,Black,1 +The Simpsons,Bart Simpson,7,2014,Dark Azure,1 +The Simpsons,Bart Simpson,7,2014,Lime,1 +The Simpsons,Bart Simpson,7,2014,Medium Lavender,1 +The Simpsons,Bart Simpson,7,2014,Red,1 +The Simpsons,Bart Simpson,7,2014,Yellow,1 +The Simpsons,Marge Simpson,7,2014,Black,1 +The Simpsons,Marge Simpson,7,2014,Blue,1 +The Simpsons,Marge Simpson,7,2014,Bright Pink,1 +The Simpsons,Marge Simpson,7,2014,Lime,2 +The Simpsons,Marge Simpson,7,2014,White,1 +The Simpsons,Marge Simpson,7,2014,Yellow,1 +The Simpsons,Homer Simpson,6,2014,Dark Bluish Gray,1 +The Simpsons,Homer Simpson,6,2014,Medium Blue,1 +The Simpsons,Homer Simpson,6,2014,Medium Dark Flesh,1 +The Simpsons,Homer Simpson,6,2014,White,1 +The Simpsons,Homer Simpson,6,2014,Yellow,1 +The Simpsons,Lisa Simpson,6,2014,Black,1 +The Simpsons,Lisa Simpson,6,2014,Pearl Gold,1 +The Simpsons,Lisa Simpson,6,2014,Red,3 +The Simpsons,Lisa Simpson,6,2014,Yellow,1 +The Simpsons,Chief Wiggum,6,2014,Black,1 +The Simpsons,Chief Wiggum,6,2014,Blue,2 +The Simpsons,Chief Wiggum,6,2014,Dark Bluish Gray,1 +The Simpsons,Chief Wiggum,6,2014,Light Bluish Gray,1 +The Simpsons,Chief Wiggum,6,2014,Yellow,1 +The Simpsons,Homer Simpson,6,2014,Black,1 +The Simpsons,Mr. Burns,6,2014,Black,1 +The Simpsons,Mr. Burns,6,2014,Dark Green,2 +The Simpsons,Mr. Burns,6,2014,Trans-Bright Green,1 +The Simpsons,Mr. Burns,6,2014,Trans-Clear,1 +The Simpsons,Mr. Burns,6,2014,Yellow,1 +The Simpsons,Ned Flanders,6,2014,Black,1 +The Simpsons,Ned Flanders,6,2014,Bright Green,1 +The Simpsons,Ned Flanders,6,2014,Dark Bluish Gray,1 +The Simpsons,Ned Flanders,6,2014,Red,1 +The Simpsons,Ned Flanders,6,2014,White,1 +The Simpsons,Ned Flanders,6,2014,Yellow,1 +The Simpsons,Scratchy,6,2014,Black,1 +The Simpsons,Scratchy,6,2014,Dark Bluish Gray,4 +The Simpsons,Scratchy,6,2014,Medium Dark Flesh,1 +The Simpsons,Apu Nahasapeemapetilon,5,2014,Lime,1 +The Simpsons,Apu Nahasapeemapetilon,5,2014,Medium Dark Flesh,1 +The Simpsons,Apu Nahasapeemapetilon,5,2014,Tan,1 +The Simpsons,Apu Nahasapeemapetilon,5,2014,Black,1 +The Simpsons,Grampa Simpson,5,2014,Black,1 +The Simpsons,Milhouse Van Houten,5,2014,Black,1 +The Simpsons,Milhouse Van Houten,5,2014,Lavender,1 +The Simpsons,Milhouse Van Houten,5,2014,Red,1 +The Simpsons,Milhouse Van Houten,5,2014,White,1 +The Simpsons,Milhouse Van Houten,5,2014,Yellow,1 +The Simpsons,Itchy,5,2014,Black,1 +The Simpsons,Itchy,5,2014,Medium Blue,2 +The Simpsons,Itchy,5,2014,Orange,1 +The Simpsons,Itchy,5,2014,Reddish Brown,1 +The Simpsons,Krusty the Clown,5,2014,Black,1 +The Simpsons,Krusty the Clown,5,2014,Bright Light Yellow,1 +The Simpsons,Krusty the Clown,5,2014,Bright Pink,1 +The Simpsons,Krusty the Clown,5,2014,Lime,1 +The Simpsons,Krusty the Clown,5,2014,Medium Dark Flesh,1 +The Simpsons,Grampa Simpson,5,2014,Light Bluish Gray,1 +The Simpsons,Grampa Simpson,5,2014,Light Flesh,1 +The Simpsons,Nelson Muntz,5,2014,Black,1 +The Simpsons,Nelson Muntz,5,2014,Dark Azure,1 +The Simpsons,Nelson Muntz,5,2014,Dark Orange,1 +The Simpsons,Nelson Muntz,5,2014,Medium Azure,1 +The Simpsons,Nelson Muntz,5,2014,Yellow,1 +The Simpsons,Ralph Wiggum,5,2014,Black,1 +The Simpsons,Ralph Wiggum,5,2014,Dark Orange,1 +The Simpsons,Ralph Wiggum,5,2014,Medium Azure,1 +The Simpsons,Ralph Wiggum,5,2014,White,1 +The Simpsons,Ralph Wiggum,5,2014,Yellow,1 +The Simpsons,Grampa Simpson,5,2014,White,1 +The Simpsons,Grampa Simpson,5,2014,Yellow,1 +The Simpsons,Apu Nahasapeemapetilon,5,2014,Green,1 +The Simpsons,Maggie Simpson,4,2014,Yellow,1 +The Simpsons,Maggie Simpson,4,2014,Black,1 +The Simpsons,Maggie Simpson,4,2014,Bright Light Blue,1 +The Simpsons,Maggie Simpson,4,2014,Reddish Brown,1 +The Simpsons,Marge,10,2015,Yellow,1 +The Simpsons,Marge,10,2015,Black,1 +The Simpsons,Marge,10,2015,Blue,1 +The Simpsons,Marge,10,2015,Dark Blue,1 +The Simpsons,Marge,10,2015,Green,1 +The Simpsons,Marge,10,2015,Orange,2 +The Simpsons,Marge,10,2015,Red,1 +The Simpsons,Edna Krabappel,7,2015,Bright Pink,1 +The Simpsons,Edna Krabappel,7,2015,Dark Pink,1 +The Simpsons,Edna Krabappel,7,2015,Black,1 +The Simpsons,Edna Krabappel,7,2015,Bright Green,1 +The Simpsons,Edna Krabappel,7,2015,Yellow,2 +The Simpsons,Edna Krabappel,7,2015,Dark Turquoise,1 +The Simpsons,Comic Book Guy,6,2015,Dark Azure,1 +The Simpsons,Comic Book Guy,6,2015,Lime,1 +The Simpsons,Comic Book Guy,6,2015,Medium Blue,1 +The Simpsons,Comic Book Guy,6,2015,White,1 +The Simpsons,Comic Book Guy,6,2015,Yellow,1 +The Simpsons,Selma,6,2015,White,1 +The Simpsons,Selma,6,2015,Dark Azure,2 +The Simpsons,Selma,6,2015,Black,1 +The Simpsons,Bart,6,2015,Dark Purple,1 +The Simpsons,Bart,6,2015,Black,1 +The Simpsons,Bart,6,2015,Dark Azure,1 +The Simpsons,Bart,6,2015,Orange,1 +The Simpsons,Bart,6,2015,Reddish Brown,1 +The Simpsons,Bart,6,2015,Yellow,1 +The Simpsons,Comic Book Guy,6,2015,Black,1 +The Simpsons,Milhouse,6,2015,Yellow,1 +The Simpsons,Patty,6,2015,Black,1 +The Simpsons,Patty,6,2015,Bright Pink,2 +The Simpsons,Patty,6,2015,Medium Azure,1 +The Simpsons,Patty,6,2015,Yellow,2 +The Simpsons,Milhouse,6,2015,Black,1 +The Simpsons,Milhouse,6,2015,Dark Azure,2 +The Simpsons,Milhouse,6,2015,Lime,1 +The Simpsons,Milhouse,6,2015,Red,1 +The Simpsons,Lisa,6,2015,Black,1 +The Simpsons,Lisa,6,2015,Bright Pink,3 +The Simpsons,Lisa,6,2015,Dark Bluish Gray,1 +The Simpsons,Lisa,6,2015,Yellow,1 +The Simpsons,Selma,6,2015,Yellow,2 +The Simpsons,Smithers,6,2015,Black,1 +The Simpsons,Smithers,6,2015,Dark Pink,2 +The Simpsons,Smithers,6,2015,Olive Green,1 +The Simpsons,Smithers,6,2015,Sand Blue,1 +The Simpsons,Smithers,6,2015,Yellow,1 +The Simpsons,Groundskeeper Willie,5,2015,Black,1 +The Simpsons,Groundskeeper Willie,5,2015,Dark Green,1 +The Simpsons,Groundskeeper Willie,5,2015,Dark Tan,1 +The Simpsons,Groundskeeper Willie,5,2015,Red,1 +The Simpsons,Groundskeeper Willie,5,2015,Yellow,1 +The Simpsons,Hans Moleman,5,2015,Black,1 +The Simpsons,Hans Moleman,5,2015,Green,1 +The Simpsons,Hans Moleman,5,2015,White,2 +The Simpsons,Hans Moleman,5,2015,Yellow,1 +The Simpsons,Homer,5,2015,Black,1 +The Simpsons,Homer,5,2015,Blue,1 +The Simpsons,Homer,5,2015,Dark Azure,1 +The Simpsons,Homer,5,2015,White,1 +The Simpsons,Homer,5,2015,Yellow,1 +The Simpsons,Martin,5,2015,Black,1 +The Simpsons,Martin,5,2015,Orange,1 +The Simpsons,Martin,5,2015,Reddish Brown,1 +The Simpsons,Martin,5,2015,White,1 +The Simpsons,Martin,5,2015,Yellow,1 +The Simpsons,Professor Frink,5,2015,Black,1 +The Simpsons,Professor Frink,5,2015,Dark Pink,1 +The Simpsons,Professor Frink,5,2015,Trans-Clear,1 +The Simpsons,Professor Frink,5,2015,White,1 +The Simpsons,Professor Frink,5,2015,Yellow,1 +The Simpsons,Dr Hibbert,5,2015,Black,1 +The Simpsons,Dr Hibbert,5,2015,Light Aqua,1 +The Simpsons,Dr Hibbert,5,2015,Medium Dark Flesh,1 +The Simpsons,Dr Hibbert,5,2015,Sand Blue,1 +The Simpsons,Dr Hibbert,5,2015,White,1 +The Simpsons,Maggie,4,2015,Dark Orange,1 +The Simpsons,Maggie,4,2015,Bright Light Blue,1 +The Simpsons,Maggie,4,2015,Black,1 +The Simpsons,Maggie,4,2015,Yellow,1 +The Two Towers,The Battle of Helm’s Deep,1365,2012,[No Color],1 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Black,26 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Blue,4 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Bright Light Yellow,1 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Dark Bluish Gray,49 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Dark Brown,14 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Dark Green,4 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Dark Orange,1 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Dark Red,5 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Dark Tan,9 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Flat Silver,2 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Light Bluish Gray,71 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Light Flesh,4 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Metallic Gold,1 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Orange,1 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Pearl Dark Gray,5 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Pearl Gold,3 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Red,1 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Reddish Brown,31 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Sand Green,4 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Tan,2 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Trans-Dark Blue,1 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Trans-Neon Orange,1 +The Two Towers,The Battle of Helm’s Deep,1365,2012,White,1 +The Two Towers,The Battle of Helm’s Deep,1365,2012,Yellow,1 +The Two Towers,The Orc Forge,362,2012,Black,29 +The Two Towers,The Orc Forge,362,2012,Blue,3 +The Two Towers,The Orc Forge,362,2012,Dark Bluish Gray,16 +The Two Towers,The Orc Forge,362,2012,Dark Brown,8 +The Two Towers,The Orc Forge,362,2012,Dark Green,4 +The Two Towers,The Orc Forge,362,2012,Dark Red,1 +The Two Towers,The Orc Forge,362,2012,Dark Tan,12 +The Two Towers,The Orc Forge,362,2012,Flat Silver,1 +The Two Towers,The Orc Forge,362,2012,Light Bluish Gray,7 +The Two Towers,The Orc Forge,362,2012,Metallic Silver,1 +The Two Towers,The Orc Forge,362,2012,Olive Green,1 +The Two Towers,The Orc Forge,362,2012,Orange,1 +The Two Towers,The Orc Forge,362,2012,Pearl Dark Gray,4 +The Two Towers,The Orc Forge,362,2012,Red,5 +The Two Towers,The Orc Forge,362,2012,Reddish Brown,18 +The Two Towers,The Orc Forge,362,2012,Tan,2 +The Two Towers,The Orc Forge,362,2012,Trans-Neon Orange,2 +The Two Towers,The Orc Forge,362,2012,Trans-Orange,1 +The Two Towers,The Orc Forge,362,2012,Trans-Red,2 +The Two Towers,The Orc Forge,362,2012,Yellow,2 +The Two Towers,Uruk-hai Army,257,2012,Black,15 +The Two Towers,Uruk-hai Army,257,2012,Blue,1 +The Two Towers,Uruk-hai Army,257,2012,Dark Bluish Gray,19 +The Two Towers,Uruk-hai Army,257,2012,Dark Brown,6 +The Two Towers,Uruk-hai Army,257,2012,Dark Green,3 +The Two Towers,Uruk-hai Army,257,2012,Dark Red,4 +The Two Towers,Uruk-hai Army,257,2012,Dark Tan,1 +The Two Towers,Uruk-hai Army,257,2012,Flat Silver,4 +The Two Towers,Uruk-hai Army,257,2012,Light Bluish Gray,19 +The Two Towers,Uruk-hai Army,257,2012,Light Flesh,2 +The Two Towers,Uruk-hai Army,257,2012,Pearl Dark Gray,4 +The Two Towers,Uruk-hai Army,257,2012,Pearl Gold,1 +The Two Towers,Uruk-hai Army,257,2012,Red,1 +The Two Towers,Uruk-hai Army,257,2012,Reddish Brown,19 +The Two Towers,Uruk-hai Army,257,2012,Sand Green,2 +The Two Towers,Uruk-hai Army,257,2012,Tan,2 +The Two Towers,Uruk-hai Army,257,2012,Trans-Neon Orange,1 +The Two Towers,The Tower of Orthanc,2360,2013,[No Color],1 +The Two Towers,The Tower of Orthanc,2360,2013,Black,141 +The Two Towers,The Tower of Orthanc,2360,2013,Blue,3 +The Two Towers,The Tower of Orthanc,2360,2013,Dark Blue,3 +The Two Towers,The Tower of Orthanc,2360,2013,Dark Bluish Gray,81 +The Two Towers,The Tower of Orthanc,2360,2013,Dark Brown,14 +The Two Towers,The Tower of Orthanc,2360,2013,Dark Green,7 +The Two Towers,The Tower of Orthanc,2360,2013,Dark Red,3 +The Two Towers,The Tower of Orthanc,2360,2013,Dark Tan,6 +The Two Towers,The Tower of Orthanc,2360,2013,Flat Silver,2 +The Two Towers,The Tower of Orthanc,2360,2013,Green,1 +The Two Towers,The Tower of Orthanc,2360,2013,Light Bluish Gray,19 +The Two Towers,The Tower of Orthanc,2360,2013,Light Flesh,2 +The Two Towers,The Tower of Orthanc,2360,2013,Olive Green,2 +The Two Towers,The Tower of Orthanc,2360,2013,Orange,2 +The Two Towers,The Tower of Orthanc,2360,2013,Pearl Dark Gray,6 +The Two Towers,The Tower of Orthanc,2360,2013,Red,4 +The Two Towers,The Tower of Orthanc,2360,2013,Reddish Brown,53 +The Two Towers,The Tower of Orthanc,2360,2013,Tan,8 +The Two Towers,The Tower of Orthanc,2360,2013,Trans-Black,2 +The Two Towers,The Tower of Orthanc,2360,2013,Trans-Clear,4 +The Two Towers,The Tower of Orthanc,2360,2013,Trans-Dark Blue,2 +The Two Towers,The Tower of Orthanc,2360,2013,Trans-Green,1 +The Two Towers,The Tower of Orthanc,2360,2013,Trans-Orange,2 +The Two Towers,The Tower of Orthanc,2360,2013,Trans-Red,2 +The Two Towers,The Tower of Orthanc,2360,2013,Trans-Yellow,1 +The Two Towers,The Tower of Orthanc,2360,2013,White,12 +The Two Towers,The Tower of Orthanc,2360,2013,Yellow,3 +Throwbot Slizer,Robotops (8500 + 8501 + 8502 + 8503),96,1999,Black,7 +Throwbot Slizer,Robotops (8500 + 8501 + 8502 + 8503),96,1999,Rust,2 +Throwbot Slizer,Robotops (8500 + 8501 + 8502 + 8503),96,1999,Medium Blue,3 +Throwbot Slizer,Robotops (8500 + 8501 + 8502 + 8503),96,1999,Light Gray,3 +Throwbot Slizer,Robotops (8500 + 8501 + 8502 + 8503),96,1999,Dark Turquoise,3 +Throwbot Slizer,Robotops (8500 + 8501 + 8502 + 8503),96,1999,Blue,7 +Throwbot Slizer,Robotops (8500 + 8501 + 8502 + 8503),96,1999,Red,4 +Throwbot Slizer,Robotops (8500 + 8501 + 8502 + 8503),96,1999,Yellow,5 +Throwbot Slizer,Robotops (8500 + 8501 + 8502 + 8503),96,1999,White,3 +Throwbot Slizer,Robotops (8500 + 8501 + 8502 + 8503),96,1999,Trans-Neon Orange,1 +Throwbot Slizer,Ultrarex (8504 + 8505 + 8506 + 8507),88,1999,Dark Gray,2 +Throwbot Slizer,Ultrarex (8504 + 8505 + 8506 + 8507),88,1999,Black,15 +Throwbot Slizer,Ultrarex (8504 + 8505 + 8506 + 8507),88,1999,Purple,4 +Throwbot Slizer,Ultrarex (8504 + 8505 + 8506 + 8507),88,1999,Tan,3 +Throwbot Slizer,Ultrarex (8504 + 8505 + 8506 + 8507),88,1999,Trans-Black,1 +Throwbot Slizer,Ultrarex (8504 + 8505 + 8506 + 8507),88,1999,Yellow,3 +Throwbot Slizer,Ultrarex (8504 + 8505 + 8506 + 8507),88,1999,Light Gray,2 +Throwbot Slizer,Ultrarex (8504 + 8505 + 8506 + 8507),88,1999,Green,2 +Throwbot Slizer,Ultrarex (8504 + 8505 + 8506 + 8507),88,1999,Dark Turquoise,2 +Throwbot Slizer,Turbo / City Slizer,45,1999,Yellow,4 +Throwbot Slizer,Turbo / City Slizer,45,1999,Red,1 +Throwbot Slizer,Turbo / City Slizer,45,1999,Light Gray,2 +Throwbot Slizer,Turbo / City Slizer,45,1999,Black,10 +Throwbot Slizer,Turbo / City Slizer,45,1999,Dark Turquoise,6 +Throwbot Slizer,Jet / Judge Slizer,44,1999,Black,12 +Throwbot Slizer,Jet / Judge Slizer,44,1999,Yellow,8 +Throwbot Slizer,Jet / Judge Slizer,44,1999,Tan,1 +Throwbot Slizer,Jet / Judge Slizer,44,1999,Light Gray,3 +Throwbot Slizer,Jet / Judge Slizer,44,1999,Dark Gray,1 +Throwbot Slizer,Scuba / Sub,39,1999,Black,4 +Throwbot Slizer,Scuba / Sub,39,1999,Blue,9 +Throwbot Slizer,Scuba / Sub,39,1999,Dark Turquoise,1 +Throwbot Slizer,Scuba / Sub,39,1999,Light Gray,1 +Throwbot Slizer,Scuba / Sub,39,1999,Medium Blue,4 +Throwbot Slizer,Scuba / Sub,39,1999,Yellow,6 +Throwbot Slizer,Electro / Energy Slizer,37,1999,Black,8 +Throwbot Slizer,Electro / Energy Slizer,37,1999,Dark Gray,1 +Throwbot Slizer,Electro / Energy Slizer,37,1999,Trans-Black,1 +Throwbot Slizer,Electro / Energy Slizer,37,1999,Purple,7 +Throwbot Slizer,Electro / Energy Slizer,37,1999,Light Gray,1 +Throwbot Slizer,Amazon / Jungle Slizer,36,1999,Black,10 +Throwbot Slizer,Amazon / Jungle Slizer,36,1999,Dark Turquoise,5 +Throwbot Slizer,Amazon / Jungle Slizer,36,1999,Green,7 +Throwbot Slizer,Amazon / Jungle Slizer,36,1999,Light Gray,1 +Throwbot Slizer,Amazon / Jungle Slizer,36,1999,Purple,1 +Throwbot Slizer,Ski / Ice Slizer,34,1999,Medium Blue,2 +Throwbot Slizer,Ski / Ice Slizer,34,1999,White,7 +Throwbot Slizer,Ski / Ice Slizer,34,1999,Light Gray,1 +Throwbot Slizer,Ski / Ice Slizer,34,1999,Blue,5 +Throwbot Slizer,Ski / Ice Slizer,34,1999,Black,7 +Throwbot Slizer,Granite / Rock Slizer,34,1999,Black,4 +Throwbot Slizer,Granite / Rock Slizer,34,1999,Tan,8 +Throwbot Slizer,Granite / Rock Slizer,34,1999,Light Gray,1 +Throwbot Slizer,Granite / Rock Slizer,34,1999,Green,1 +Throwbot Slizer,Granite / Rock Slizer,34,1999,Dark Gray,6 +Throwbot Slizer,Ski / Ice Slizer,34,1999,Yellow,1 +Throwbot Slizer,Torch / Fire Slizer,33,1999,Red,6 +Throwbot Slizer,Torch / Fire Slizer,33,1999,Rust,2 +Throwbot Slizer,Torch / Fire Slizer,33,1999,Trans-Neon Orange,1 +Throwbot Slizer,Torch / Fire Slizer,33,1999,White,1 +Throwbot Slizer,Torch / Fire Slizer,33,1999,Black,11 +Throwbot Slizer,Torch / Fire Slizer,33,1999,Light Gray,1 +Throwbot Slizer,Supplementary Disks,5,1999,Royal Blue,1 +Throwbot Slizer,Dynamo (8521 + 8522 + 8523),142,2000,Black,24 +Throwbot Slizer,Dynamo (8521 + 8522 + 8523),142,2000,Dark Gray,1 +Throwbot Slizer,Dynamo (8521 + 8522 + 8523),142,2000,Flat Silver,1 +Throwbot Slizer,Dynamo (8521 + 8522 + 8523),142,2000,Light Gray,3 +Throwbot Slizer,Dynamo (8521 + 8522 + 8523),142,2000,Orange,5 +Throwbot Slizer,Dynamo (8521 + 8522 + 8523),142,2000,Purple,1 +Throwbot Slizer,Dynamo (8521 + 8522 + 8523),142,2000,Yellow,5 +Throwbot Slizer,Millennium/Millennia,134,2000,Trans-Red,1 +Throwbot Slizer,Millennium/Millennia,134,2000,Black,29 +Throwbot Slizer,Millennium/Millennia,134,2000,Dark Gray,7 +Throwbot Slizer,Millennium/Millennia,134,2000,Light Gray,6 +Throwbot Slizer,Millennium/Millennia,134,2000,Metallic Gold,2 +Throwbot Slizer,Millennium/Millennia,134,2000,Red,4 +Throwbot Slizer,Blaster / Blaster Slizer,89,2000,Dark Gray,1 +Throwbot Slizer,Blaster / Blaster Slizer,89,2000,Flat Silver,1 +Throwbot Slizer,Blaster / Blaster Slizer,89,2000,Light Gray,2 +Throwbot Slizer,Blaster / Blaster Slizer,89,2000,Yellow,5 +Throwbot Slizer,Blaster / Blaster Slizer,89,2000,Black,20 +Throwbot Slizer,Flare,44,2000,Black,14 +Throwbot Slizer,Flare,44,2000,Flat Silver,1 +Throwbot Slizer,Flare,44,2000,Glow In Dark Opaque,2 +Throwbot Slizer,Flare,44,2000,Light Gray,1 +Throwbot Slizer,Flare,44,2000,Orange,6 +Throwbot Slizer,Flare,44,2000,Yellow,1 +Throwbot Slizer,Spark,35,2000,Black,16 +Throwbot Slizer,Spark,35,2000,Glow In Dark Opaque,2 +Throwbot Slizer,Spark,35,2000,Light Gray,1 +Throwbot Slizer,Spark,35,2000,Purple,4 +Throwbot Slizer,Spark,35,2000,Yellow,1 +Throwbot Slizer,Single Disk Pack,1,2000,Royal Blue,1 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Yellow,14 +Time Cruisers,Mystic Mountain Time Lab,510,1996,White,25 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Trans-Yellow,1 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Trans-Neon Orange,8 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Trans-Neon Green,2 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Trans-Dark Blue,1 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Trans-Clear,2 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Chrome Silver,1 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Red,7 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Light Gray,53 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Green,5 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Glow In Dark Opaque,1 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Dark Gray,11 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Black,42 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Blue,7 +Time Cruisers,Mystic Mountain Time Lab,510,1996,Brown,8 +Time Cruisers,Flying Time Vessel,241,1996,Black,32 +Time Cruisers,Flying Time Vessel,241,1996,Blue,3 +Time Cruisers,Flying Time Vessel,241,1996,Brown,5 +Time Cruisers,Flying Time Vessel,241,1996,Glow In Dark Opaque,1 +Time Cruisers,Flying Time Vessel,241,1996,Green,3 +Time Cruisers,Flying Time Vessel,241,1996,Light Gray,41 +Time Cruisers,Flying Time Vessel,241,1996,Red,8 +Time Cruisers,Flying Time Vessel,241,1996,Trans-Light Blue,2 +Time Cruisers,Flying Time Vessel,241,1996,Trans-Neon Green,4 +Time Cruisers,Flying Time Vessel,241,1996,Trans-Neon Orange,3 +Time Cruisers,Flying Time Vessel,241,1996,White,4 +Time Cruisers,Flying Time Vessel,241,1996,Yellow,13 +Time Cruisers,Flying Time Vessel,241,1996,Dark Gray,8 +Time Cruisers,Navigator,158,1996,Dark Gray,1 +Time Cruisers,Navigator,158,1996,Brown,2 +Time Cruisers,Navigator,158,1996,Black,22 +Time Cruisers,Navigator,158,1996,Chrome Silver,1 +Time Cruisers,Navigator,158,1996,Blue,2 +Time Cruisers,Navigator,158,1996,Green,2 +Time Cruisers,Navigator,158,1996,Light Gray,31 +Time Cruisers,Navigator,158,1996,Purple,1 +Time Cruisers,Navigator,158,1996,Red,1 +Time Cruisers,Navigator,158,1996,Trans-Green,1 +Time Cruisers,Navigator,158,1996,Trans-Light Blue,2 +Time Cruisers,Navigator,158,1996,Trans-Neon Green,2 +Time Cruisers,Navigator,158,1996,Trans-Neon Orange,2 +Time Cruisers,Navigator,158,1996,Trans-Red,1 +Time Cruisers,Navigator,158,1996,White,7 +Time Cruisers,Navigator,158,1996,Yellow,14 +Time Cruisers,Hypno Cruiser,157,1996,Dark Gray,1 +Time Cruisers,Hypno Cruiser,157,1996,Chrome Silver,1 +Time Cruisers,Hypno Cruiser,157,1996,Yellow,14 +Time Cruisers,Hypno Cruiser,157,1996,Black,22 +Time Cruisers,Hypno Cruiser,157,1996,Blue,2 +Time Cruisers,Hypno Cruiser,157,1996,Brown,2 +Time Cruisers,Hypno Cruiser,157,1996,White,7 +Time Cruisers,Hypno Cruiser,157,1996,Trans-Red,1 +Time Cruisers,Hypno Cruiser,157,1996,Trans-Neon Orange,2 +Time Cruisers,Hypno Cruiser,157,1996,Trans-Neon Green,2 +Time Cruisers,Hypno Cruiser,157,1996,Trans-Green,1 +Time Cruisers,Hypno Cruiser,157,1996,Red,1 +Time Cruisers,Hypno Cruiser,157,1996,Light Gray,31 +Time Cruisers,Hypno Cruiser,157,1996,Trans-Light Blue,2 +Time Cruisers,Hypno Cruiser,157,1996,Green,2 +Time Cruisers,Rocket Racer,58,1996,Black,9 +Time Cruisers,Rocket Racer,58,1996,Blue,2 +Time Cruisers,Rocket Racer,58,1996,Green,1 +Time Cruisers,Rocket Racer,58,1996,Light Gray,13 +Time Cruisers,Rocket Racer,58,1996,Red,3 +Time Cruisers,Rocket Racer,58,1996,Trans-Clear,1 +Time Cruisers,Rocket Racer,58,1996,Trans-Neon Orange,3 +Time Cruisers,Rocket Racer,58,1996,Yellow,4 +Time Cruisers,Twisted Time Train,300,1997,Dark Gray,5 +Time Cruisers,Twisted Time Train,300,1997,Glow In Dark Opaque,1 +Time Cruisers,Twisted Time Train,300,1997,Light Gray,20 +Time Cruisers,Twisted Time Train,300,1997,Red,1 +Time Cruisers,Twisted Time Train,300,1997,Trans-Light Blue,1 +Time Cruisers,Twisted Time Train,300,1997,Trans-Neon Orange,4 +Time Cruisers,Twisted Time Train,300,1997,Trans-Red,1 +Time Cruisers,Twisted Time Train,300,1997,White,11 +Time Cruisers,Twisted Time Train,300,1997,Yellow,4 +Time Cruisers,Twisted Time Train,300,1997,Black,45 +Time Cruisers,Twisted Time Train,300,1997,Blue,21 +Time Cruisers,Twisted Time Train,300,1997,Brown,6 +Time Cruisers,Twisted Time Train,300,1997,Chrome Gold,1 +Time Cruisers,Twisted Time Train,300,1997,Chrome Silver,3 +Time Cruisers,Whirling Time Warper,158,1997,Chrome Gold,5 +Time Cruisers,Whirling Time Warper,158,1997,Trans-Neon Orange,3 +Time Cruisers,Whirling Time Warper,158,1997,Trans-Red,2 +Time Cruisers,Whirling Time Warper,158,1997,Trans-Yellow,1 +Time Cruisers,Whirling Time Warper,158,1997,Yellow,3 +Time Cruisers,Whirling Time Warper,158,1997,Dark Gray,3 +Time Cruisers,Whirling Time Warper,158,1997,White,5 +Time Cruisers,Whirling Time Warper,158,1997,Blue,12 +Time Cruisers,Whirling Time Warper,158,1997,Brown,2 +Time Cruisers,Whirling Time Warper,158,1997,Chrome Silver,2 +Time Cruisers,Whirling Time Warper,158,1997,Glow In Dark Opaque,1 +Time Cruisers,Whirling Time Warper,158,1997,Red,1 +Time Cruisers,Whirling Time Warper,158,1997,Trans-Clear,2 +Time Cruisers,Whirling Time Warper,158,1997,Trans-Dark Blue,1 +Time Cruisers,Whirling Time Warper,158,1997,Trans-Green,1 +Time Cruisers,Whirling Time Warper,158,1997,Light Gray,6 +Time Cruisers,Whirling Time Warper,158,1997,Trans-Light Blue,2 +Time Cruisers,Whirling Time Warper,158,1997,Trans-Neon Green,1 +Time Cruisers,Whirling Time Warper,158,1997,Black,35 +Time Cruisers,Time Tunnelator,82,1997,[No Color],1 +Time Cruisers,Time Tunnelator,82,1997,Black,19 +Time Cruisers,Time Tunnelator,82,1997,Blue,10 +Time Cruisers,Time Tunnelator,82,1997,Brown,2 +Time Cruisers,Time Tunnelator,82,1997,Dark Gray,3 +Time Cruisers,Time Tunnelator,82,1997,Light Gray,8 +Time Cruisers,Time Tunnelator,82,1997,Trans-Clear,1 +Time Cruisers,Time Tunnelator,82,1997,Trans-Dark Blue,1 +Time Cruisers,Time Tunnelator,82,1997,Trans-Neon Orange,3 +Time Cruisers,Time Tunnelator,82,1997,Yellow,3 +Time Cruisers,Time Tunnelator,82,1997,Chrome Gold,1 +Time Cruisers,Time Tunnelator,82,1997,Red,1 +Time Cruisers,Time Tunnelator,81,1997,Blue,10 +Time Cruisers,Time Tunnelator,81,1997,Brown,2 +Time Cruisers,Time Tunnelator,81,1997,Chrome Gold,1 +Time Cruisers,Time Tunnelator,81,1997,Dark Gray,3 +Time Cruisers,Time Tunnelator,81,1997,Red,1 +Time Cruisers,Time Tunnelator,81,1997,Trans-Clear,1 +Time Cruisers,Time Tunnelator,81,1997,Trans-Light Blue,1 +Time Cruisers,Time Tunnelator,81,1997,Trans-Neon Orange,3 +Time Cruisers,Time Tunnelator,81,1997,Yellow,3 +Time Cruisers,Time Tunnelator,81,1997,Black,19 +Time Cruisers,Time Tunnelator,81,1997,Light Gray,8 +Tiny Turbos,RX-Sprinter,57,2005,Dark Bluish Gray,2 +Tiny Turbos,RX-Sprinter,57,2005,Black,7 +Tiny Turbos,RX-Sprinter,57,2005,White,10 +Tiny Turbos,RX-Sprinter,57,2005,Red,10 +Tiny Turbos,Flame Glider,53,2005,Trans-Neon Orange,1 +Tiny Turbos,Flame Glider,53,2005,Black,9 +Tiny Turbos,Flame Glider,53,2005,Light Bluish Gray,3 +Tiny Turbos,Flame Glider,53,2005,Metallic Silver,1 +Tiny Turbos,Flame Glider,53,2005,Orange,10 +Tiny Turbos,F6 Truck,46,2005,Black,9 +Tiny Turbos,F6 Truck,46,2005,Red,11 +Tiny Turbos,F6 Truck,46,2005,Metallic Silver,1 +Tiny Turbos,F6 Truck,46,2005,Dark Bluish Gray,2 +Tiny Turbos,Power Cruiser,45,2005,Black,15 +Tiny Turbos,Power Cruiser,45,2005,Chrome Silver,1 +Tiny Turbos,Power Cruiser,45,2005,Dark Bluish Gray,1 +Tiny Turbos,Power Cruiser,45,2005,Light Bluish Gray,2 +Tiny Turbos,Power Cruiser,45,2005,Metallic Silver,1 +Tiny Turbos,Power Cruiser,45,2005,Red,2 +Tiny Turbos,Power Cruiser,45,2005,Trans-Red,1 +Tiny Turbos,Monster Crusher,42,2005,Trans-Red,1 +Tiny Turbos,Monster Crusher,42,2005,Black,7 +Tiny Turbos,Monster Crusher,42,2005,Dark Bluish Gray,7 +Tiny Turbos,Monster Crusher,42,2005,Light Bluish Gray,2 +Tiny Turbos,Monster Crusher,42,2005,Metallic Silver,1 +Tiny Turbos,Monster Crusher,42,2005,Red,7 +Tiny Turbos,ATR 4,38,2005,Dark Bluish Gray,1 +Tiny Turbos,ATR 4,38,2005,Light Bluish Gray,3 +Tiny Turbos,ATR 4,38,2005,Medium Blue,6 +Tiny Turbos,ATR 4,38,2005,White,9 +Tiny Turbos,ATR 4,38,2005,Black,1 +Tiny Turbos,ATR 4,38,2005,Orange,2 +Tiny Turbos,Street Maniac,35,2005,Black,4 +Tiny Turbos,Street Maniac,35,2005,Dark Bluish Gray,3 +Tiny Turbos,Street Maniac,35,2005,Trans-Red,1 +Tiny Turbos,Street Maniac,35,2005,Yellow,11 +Tiny Turbos,Big Bling Wheelie,31,2005,Black,7 +Tiny Turbos,Big Bling Wheelie,31,2005,Dark Bluish Gray,6 +Tiny Turbos,Big Bling Wheelie,31,2005,Metallic Silver,3 +Tiny Turbos,Big Bling Wheelie,31,2005,Trans-Clear,1 +Tiny Turbos,Big Bling Wheelie,31,2005,Red,1 +Tiny Turbos,Demon Destroyer,50,2011,Blue,12 +Tiny Turbos,Demon Destroyer,50,2011,White,2 +Tiny Turbos,Demon Destroyer,50,2011,Yellow,7 +Tiny Turbos,Demon Destroyer,50,2011,Black,7 +Tiny Turbos,Rod Rider,47,2011,Black,8 +Tiny Turbos,Rod Rider,47,2011,Dark Bluish Gray,6 +Tiny Turbos,Rod Rider,47,2011,Light Bluish Gray,2 +Tiny Turbos,Rod Rider,47,2011,Lime,9 +Tiny Turbos,Urban Enforcer,44,2011,Black,11 +Tiny Turbos,Urban Enforcer,44,2011,Blue,2 +Tiny Turbos,Urban Enforcer,44,2011,Trans-Clear,1 +Tiny Turbos,Urban Enforcer,44,2011,Trans-Dark Blue,2 +Tiny Turbos,Urban Enforcer,44,2011,Trans-Red,3 +Tiny Turbos,Urban Enforcer,44,2011,White,7 +Tiny Turbos,Smokin' Slickster,43,2011,Black,12 +Tiny Turbos,Smokin' Slickster,43,2011,Dark Bluish Gray,1 +Tiny Turbos,Smokin' Slickster,43,2011,Light Bluish Gray,1 +Tiny Turbos,Smokin' Slickster,43,2011,Orange,8 +Tiny Turbos,Buggy Racer,26,2011,Black,10 +Tiny Turbos,Buggy Racer,26,2011,Red,1 +Tiny Turbos,Buggy Racer,26,2011,Yellow,4 +Titans,Cahdok and Gahdok,636,2002,Black,15 +Titans,Cahdok and Gahdok,636,2002,Blue,20 +Titans,Cahdok and Gahdok,636,2002,Bright Green,1 +Titans,Cahdok and Gahdok,636,2002,Dark Gray,23 +Titans,Cahdok and Gahdok,636,2002,Light Gray,6 +Titans,Cahdok and Gahdok,636,2002,Pearl Dark Gray,5 +Titans,Cahdok and Gahdok,636,2002,Red,20 +Titans,Cahdok and Gahdok,636,2002,Trans-Green,1 +Titans,Cahdok and Gahdok,636,2002,White,7 +Titans,Exo-Toa,378,2002,Black,37 +Titans,Exo-Toa,378,2002,Dark Gray,21 +Titans,Exo-Toa,378,2002,Flat Silver,1 +Titans,Exo-Toa,378,2002,Light Gray,9 +Titans,Exo-Toa,378,2002,Orange,5 +Titans,Exo-Toa,378,2002,Pearl Light Gray,4 +Titans,Exo-Toa,378,2002,Red,1 +Titans,Exo-Toa,378,2002,Trans-Neon Orange,1 +Titans,Exo-Toa,378,2002,White,2 +Titans,Boxor,157,2002,Orange,5 +Titans,Boxor,157,2002,White,2 +Titans,Boxor,157,2002,Black,27 +Titans,Boxor,157,2002,Dark Gray,12 +Titans,Boxor,157,2002,Light Gray,8 +Titans,Vezon & Fenrakk,281,2006,Blue,1 +Titans,Vezon & Fenrakk,281,2006,Black,26 +Titans,Vezon & Fenrakk,281,2006,Pearl Light Gray,13 +Titans,Vezon & Fenrakk,281,2006,Dark Bluish Gray,6 +Titans,Vezon & Fenrakk,281,2006,Dark Red,6 +Titans,Vezon & Fenrakk,281,2006,Light Bluish Gray,5 +Titans,Vezon & Fenrakk,281,2006,Pearl Dark Gray,1 +Titans,Vezon & Fenrakk,281,2006,Red,3 +Titans,Vezon & Fenrakk,281,2006,Reddish Brown,1 +Titans,Vezon & Fenrakk,281,2006,Trans-Neon Orange,2 +Titans,Vezon & Fenrakk,281,2006,White,3 +Titans,Axonn,196,2006,Black,24 +Titans,Axonn,196,2006,Blue,1 +Titans,Axonn,196,2006,Dark Bluish Gray,7 +Titans,Axonn,196,2006,Dark Red,3 +Titans,Axonn,196,2006,Flat Silver,6 +Titans,Axonn,196,2006,Light Bluish Gray,2 +Titans,Axonn,196,2006,Pearl Light Gray,7 +Titans,Axonn,196,2006,Trans-Neon Green,1 +Titans,Brutaka,191,2006,Black,22 +Titans,Brutaka,191,2006,Blue,1 +Titans,Brutaka,191,2006,Dark Blue,7 +Titans,Brutaka,191,2006,Dark Bluish Gray,6 +Titans,Brutaka,191,2006,Light Bluish Gray,7 +Titans,Brutaka,191,2006,Pearl Gold,10 +Titans,Brutaka,191,2006,Pearl Light Gray,2 +Titans,Brutaka,191,2006,Trans-Neon Orange,1 +Titans,Umbra,179,2006,Tan,1 +Titans,Umbra,179,2006,Trans-Neon Orange,1 +Titans,Umbra,179,2006,Dark Green,7 +Titans,Umbra,179,2006,Black,18 +Titans,Umbra,179,2006,Blue,1 +Titans,Umbra,179,2006,Bright Light Orange,3 +Titans,Umbra,179,2006,Dark Bluish Gray,3 +Titans,Umbra,179,2006,Yellow,1 +Titans,Umbra,179,2006,Flat Silver,3 +Titans,Umbra,179,2006,Light Bluish Gray,7 +Titans,Umbra,179,2006,Pearl Light Gray,7 +Titans,Umbra,179,2006,Red,1 +Titans,Irnakk,11,2006,Black,1 +Titans,Irnakk,11,2006,Pearl Gold,3 +Toa,Pohatu - With mini CD-ROM,50,2001,Trans-Neon Orange,1 +Toa,Pohatu - With mini CD-ROM,50,2001,Brown,5 +Toa,Pohatu - With mini CD-ROM,50,2001,Black,10 +Toa,Pohatu - With mini CD-ROM,50,2001,Light Gray,4 +Toa,Pohatu - With mini CD-ROM,50,2001,Royal Blue,1 +Toa,Pohatu - With mini CD-ROM,50,2001,Tan,5 +Toa,Pohatu,49,2001,Light Gray,4 +Toa,Pohatu,49,2001,Tan,5 +Toa,Pohatu,49,2001,Black,10 +Toa,Pohatu,49,2001,Trans-Neon Orange,1 +Toa,Pohatu,49,2001,Brown,5 +Toa,Lewa - With mini CD-ROM,37,2001,Black,8 +Toa,Lewa - With mini CD-ROM,37,2001,Green,5 +Toa,Lewa - With mini CD-ROM,37,2001,Light Gray,5 +Toa,Lewa - With mini CD-ROM,37,2001,Lime,3 +Toa,Lewa - With mini CD-ROM,37,2001,Trans-Neon Green,1 +Toa,Lewa - With mini CD-ROM,37,2001,Royal Blue,1 +Toa,Gali - With mini CD-ROM,36,2001,Medium Blue,2 +Toa,Gali - With mini CD-ROM,36,2001,Royal Blue,1 +Toa,Gali - With mini CD-ROM,36,2001,Trans-Dark Blue,1 +Toa,Gali - With mini CD-ROM,36,2001,Trans-Neon Yellow,1 +Toa,Gali - With mini CD-ROM,36,2001,Black,7 +Toa,Lewa,36,2001,Black,8 +Toa,Lewa,36,2001,Green,5 +Toa,Lewa,36,2001,Lime,3 +Toa,Lewa,36,2001,Light Gray,5 +Toa,Gali - With mini CD-ROM,36,2001,Blue,4 +Toa,Lewa,36,2001,Trans-Neon Green,1 +Toa,Gali - With mini CD-ROM,36,2001,Light Gray,4 +Toa,Gali,35,2001,Trans-Neon Yellow,1 +Toa,Gali,35,2001,Light Gray,4 +Toa,Gali,35,2001,Blue,4 +Toa,Gali,35,2001,Black,7 +Toa,Gali,35,2001,Medium Blue,2 +Toa,Gali,35,2001,Trans-Dark Blue,1 +Toa,Kopaka - With mini CD-ROM,34,2001,Light Gray,10 +Toa,Kopaka - With mini CD-ROM,34,2001,Royal Blue,1 +Toa,Kopaka - With mini CD-ROM,34,2001,Trans-Medium Blue,1 +Toa,Kopaka - With mini CD-ROM,34,2001,White,6 +Toa,Kopaka - With mini CD-ROM,34,2001,Black,6 +Toa,Tahu - With mini CD-ROM,34,2001,[No Color],1 +Toa,Tahu - With mini CD-ROM,34,2001,Black,8 +Toa,Tahu - With mini CD-ROM,34,2001,Light Gray,4 +Toa,Tahu - With mini CD-ROM,34,2001,Orange,2 +Toa,Tahu - With mini CD-ROM,34,2001,Red,5 +Toa,Tahu - With mini CD-ROM,34,2001,Trans-Dark Pink,1 +Toa,Kopaka,33,2001,Light Gray,10 +Toa,Kopaka,33,2001,Trans-Medium Blue,1 +Toa,Kopaka,33,2001,White,6 +Toa,Tahu,33,2001,Black,8 +Toa,Tahu,33,2001,Light Gray,4 +Toa,Tahu,33,2001,Orange,2 +Toa,Tahu,33,2001,Red,5 +Toa,Tahu,33,2001,Trans-Dark Pink,1 +Toa,Onua - With mini CD-ROM,33,2001,Black,9 +Toa,Onua - With mini CD-ROM,33,2001,Dark Gray,2 +Toa,Onua - With mini CD-ROM,33,2001,Light Gray,6 +Toa,Onua - With mini CD-ROM,33,2001,Royal Blue,1 +Toa,Onua - With mini CD-ROM,33,2001,Trans-Green,1 +Toa,Kopaka,33,2001,Black,6 +Toa,Onua,30,2001,Light Gray,6 +Toa,Onua,30,2001,Dark Gray,2 +Toa,Onua,30,2001,Black,9 +Toa,Onua,30,2001,Trans-Green,1 +Toa,Masks,3,2001,Trans-Neon Orange,1 +Toa,Masks,3,2001,Light Gray,1 +Toa,Masks,3,2001,Black,1 +Toa Hagah,Toa Norik,55,2005,Black,9 +Toa Hagah,Toa Norik,55,2005,Blue,1 +Toa Hagah,Toa Norik,55,2005,Dark Bluish Gray,2 +Toa Hagah,Toa Norik,55,2005,Dark Red,7 +Toa Hagah,Toa Norik,55,2005,Flat Silver,8 +Toa Hagah,Toa Norik,55,2005,Light Bluish Gray,3 +Toa Hagah,Toa Norik,55,2005,Trans-Neon Green,1 +Toa Hagah,Toa Norik,55,2005,White,1 +Toa Hagah,Toa Norik,55,2005,Yellow,1 +Toa Hagah,Toa Iruini,53,2005,Black,9 +Toa Hagah,Toa Iruini,53,2005,Dark Bluish Gray,2 +Toa Hagah,Toa Iruini,53,2005,Dark Green,6 +Toa Hagah,Toa Iruini,53,2005,Flat Dark Gold,8 +Toa Hagah,Toa Iruini,53,2005,Light Bluish Gray,3 +Toa Hagah,Toa Iruini,53,2005,Trans-Neon Orange,1 +Toa Hagah,Toa Iruini,53,2005,White,1 +Toa Hagah,Toa Iruini,53,2005,Yellow,1 +Toa Hordika,Toa Hordika Matau,48,2005,Black,3 +Toa Hordika,Toa Hordika Matau,48,2005,Blue,1 +Toa Hordika,Toa Hordika Matau,48,2005,Dark Bluish Gray,5 +Toa Hordika,Toa Hordika Matau,48,2005,Dark Green,8 +Toa Hordika,Toa Hordika Matau,48,2005,Flat Silver,5 +Toa Hordika,Toa Hordika Matau,48,2005,Light Bluish Gray,3 +Toa Hordika,Toa Hordika Matau,48,2005,Trans-Red,1 +Toa Hordika,Toa Hordika Matau,48,2005,Yellow,1 +Toa Hordika,Toa Hordika Nokama,48,2005,Black,3 +Toa Hordika,Toa Hordika Nokama,48,2005,Blue,1 +Toa Hordika,Toa Hordika Nokama,48,2005,Dark Blue,8 +Toa Hordika,Toa Hordika Nokama,48,2005,Dark Bluish Gray,5 +Toa Hordika,Toa Hordika Nokama,48,2005,Flat Silver,5 +Toa Hordika,Toa Hordika Nokama,48,2005,Light Bluish Gray,3 +Toa Hordika,Toa Hordika Nokama,48,2005,Trans-Neon Orange,1 +Toa Hordika,Toa Hordika Nokama,48,2005,Yellow,1 +Toa Hordika,Toa Hordika Nuju,48,2005,Black,3 +Toa Hordika,Toa Hordika Nuju,48,2005,Blue,1 +Toa Hordika,Toa Hordika Nuju,48,2005,Dark Bluish Gray,5 +Toa Hordika,Toa Hordika Nuju,48,2005,Flat Silver,5 +Toa Hordika,Toa Hordika Nuju,48,2005,Light Bluish Gray,3 +Toa Hordika,Toa Hordika Nuju,48,2005,Trans-Light Blue,1 +Toa Hordika,Toa Hordika Nuju,48,2005,White,8 +Toa Hordika,Toa Hordika Nuju,48,2005,Yellow,1 +Toa Hordika,Toa Hordika Onewa,48,2005,Black,3 +Toa Hordika,Toa Hordika Onewa,48,2005,Blue,1 +Toa Hordika,Toa Hordika Onewa,48,2005,Dark Bluish Gray,5 +Toa Hordika,Toa Hordika Onewa,48,2005,Dark Flesh,8 +Toa Hordika,Toa Hordika Onewa,48,2005,Flat Silver,5 +Toa Hordika,Toa Hordika Onewa,48,2005,Light Bluish Gray,3 +Toa Hordika,Toa Hordika Onewa,48,2005,Trans-Dark Blue,1 +Toa Hordika,Toa Hordika Onewa,48,2005,Yellow,1 +Toa Hordika,Toa Hordika Vakama,48,2005,Black,3 +Toa Hordika,Toa Hordika Vakama,48,2005,Blue,1 +Toa Hordika,Toa Hordika Vakama,48,2005,Dark Bluish Gray,5 +Toa Hordika,Toa Hordika Vakama,48,2005,Dark Red,8 +Toa Hordika,Toa Hordika Vakama,48,2005,Flat Silver,5 +Toa Hordika,Toa Hordika Vakama,48,2005,Light Bluish Gray,3 +Toa Hordika,Toa Hordika Vakama,48,2005,Trans-Neon Green,1 +Toa Hordika,Toa Hordika Vakama,48,2005,Yellow,1 +Toa Hordika,Toa Hordika Whenua,48,2005,Black,11 +Toa Hordika,Toa Hordika Whenua,48,2005,Blue,1 +Toa Hordika,Toa Hordika Whenua,48,2005,Dark Bluish Gray,5 +Toa Hordika,Toa Hordika Whenua,48,2005,Flat Silver,5 +Toa Hordika,Toa Hordika Whenua,48,2005,Light Bluish Gray,3 +Toa Hordika,Toa Hordika Whenua,48,2005,Trans-Green,1 +Toa Hordika,Toa Hordika Whenua,48,2005,Yellow,1 +Toa Inika,Inika Toa Hewkii,62,2006,Blue,1 +Toa Inika,Inika Toa Hewkii,62,2006,Bright Light Orange,4 +Toa Inika,Inika Toa Hewkii,62,2006,Dark Bluish Gray,3 +Toa Inika,Inika Toa Hewkii,62,2006,Light Bluish Gray,2 +Toa Inika,Inika Toa Hewkii,62,2006,Lime,1 +Toa Inika,Inika Toa Hewkii,62,2006,Pearl Dark Gray,8 +Toa Inika,Inika Toa Hewkii,62,2006,Pearl Light Gray,3 +Toa Inika,Inika Toa Hewkii,62,2006,Trans-Orange,1 +Toa Inika,Inika Toa Hewkii,62,2006,Black,5 +Toa Inika,Inika Toa Nuparu,55,2006,Trans-Red,1 +Toa Inika,Inika Toa Nuparu,55,2006,Trans-Orange,1 +Toa Inika,Inika Toa Nuparu,55,2006,Black,15 +Toa Inika,Inika Toa Nuparu,55,2006,Blue,1 +Toa Inika,Inika Toa Nuparu,55,2006,Dark Bluish Gray,5 +Toa Inika,Inika Toa Nuparu,55,2006,Light Bluish Gray,4 +Toa Inika,Inika Toa Nuparu,55,2006,Lime,1 +Toa Inika,Inika Toa Nuparu,55,2006,Pearl Light Gray,2 +Toa Inika,Inika Toa Matoro,47,2006,Black,5 +Toa Inika,Inika Toa Matoro,47,2006,Blue,1 +Toa Inika,Inika Toa Matoro,47,2006,Dark Bluish Gray,3 +Toa Inika,Inika Toa Matoro,47,2006,Light Bluish Gray,2 +Toa Inika,Inika Toa Matoro,47,2006,Lime,1 +Toa Inika,Inika Toa Matoro,47,2006,Pearl Light Gray,2 +Toa Inika,Inika Toa Matoro,47,2006,Trans-Medium Blue,3 +Toa Inika,Inika Toa Matoro,47,2006,White,8 +Toa Inika,Inika Toa Matoro,47,2006,Flat Silver,2 +Toa Inika,Inika Toa Jaller,46,2006,Trans-Orange,2 +Toa Inika,Inika Toa Hahli,46,2006,Dark Bluish Gray,2 +Toa Inika,Inika Toa Kongu,46,2006,Blue,1 +Toa Inika,Inika Toa Kongu,46,2006,Dark Bluish Gray,2 +Toa Inika,Inika Toa Kongu,46,2006,Dark Green,9 +Toa Inika,Inika Toa Kongu,46,2006,Light Bluish Gray,2 +Toa Inika,Inika Toa Kongu,46,2006,Lime,1 +Toa Inika,Inika Toa Kongu,46,2006,Pearl Light Gray,5 +Toa Inika,Inika Toa Kongu,46,2006,Trans-Dark Blue,1 +Toa Inika,Inika Toa Hahli,46,2006,Black,5 +Toa Inika,Inika Toa Hahli,46,2006,Blue,1 +Toa Inika,Inika Toa Hahli,46,2006,Dark Blue,8 +Toa Inika,Inika Toa Hahli,46,2006,Light Bluish Gray,2 +Toa Inika,Inika Toa Hahli,46,2006,Lime,1 +Toa Inika,Inika Toa Hahli,46,2006,Pearl Dark Gray,4 +Toa Inika,Inika Toa Hahli,46,2006,Trans-Neon Green,1 +Toa Inika,Inika Toa Hahli,46,2006,White,2 +Toa Inika,Inika Toa Jaller,46,2006,Black,5 +Toa Inika,Inika Toa Jaller,46,2006,Blue,1 +Toa Inika,Inika Toa Jaller,46,2006,Dark Bluish Gray,2 +Toa Inika,Inika Toa Jaller,46,2006,Dark Red,9 +Toa Inika,Inika Toa Jaller,46,2006,Light Bluish Gray,2 +Toa Inika,Inika Toa Jaller,46,2006,Lime,1 +Toa Inika,Inika Toa Jaller,46,2006,Pearl Gold,3 +Toa Inika,Inika Toa Jaller,46,2006,Trans-Neon Green,1 +Toa Inika,Inika Toa Kongu,46,2006,Black,5 +Toa Mahri,Toa Mahri Jaller,67,2007,Pearl Light Gray,3 +Toa Mahri,Toa Mahri Jaller,67,2007,Red,1 +Toa Mahri,Toa Mahri Jaller,67,2007,Trans-Dark Blue,1 +Toa Mahri,Toa Mahri Jaller,67,2007,Trans-Neon Green,1 +Toa Mahri,Toa Mahri Jaller,67,2007,White,1 +Toa Mahri,Toa Mahri Jaller,67,2007,Orange,2 +Toa Mahri,Toa Mahri Jaller,67,2007,Light Bluish Gray,1 +Toa Mahri,Toa Mahri Jaller,67,2007,Flat Silver,1 +Toa Mahri,Toa Mahri Jaller,67,2007,Dark Red,7 +Toa Mahri,Toa Mahri Jaller,67,2007,Dark Bluish Gray,3 +Toa Mahri,Toa Mahri Jaller,67,2007,Blue,1 +Toa Mahri,Toa Mahri Jaller,67,2007,Black,5 +Toa Mahri,Toa Mahri Kongu,63,2007,Flat Silver,1 +Toa Mahri,Toa Mahri Kongu,63,2007,Black,1 +Toa Mahri,Toa Mahri Kongu,63,2007,Blue,1 +Toa Mahri,Toa Mahri Kongu,63,2007,Dark Bluish Gray,6 +Toa Mahri,Toa Mahri Kongu,63,2007,Pearl Light Gray,2 +Toa Mahri,Toa Mahri Kongu,63,2007,Dark Green,7 +Toa Mahri,Toa Mahri Kongu,63,2007,Red,2 +Toa Mahri,Toa Mahri Kongu,63,2007,Trans-Neon Green,2 +Toa Mahri,Toa Mahri Matoro,62,2007,White,8 +Toa Mahri,Toa Mahri Matoro,62,2007,Black,3 +Toa Mahri,Toa Mahri Matoro,62,2007,Dark Bluish Gray,1 +Toa Mahri,Toa Mahri Matoro,62,2007,Light Bluish Gray,4 +Toa Mahri,Toa Mahri Matoro,62,2007,Medium Blue,1 +Toa Mahri,Toa Mahri Matoro,62,2007,Pearl Light Gray,5 +Toa Mahri,Toa Mahri Matoro,62,2007,Red,3 +Toa Mahri,Toa Mahri Matoro,62,2007,Trans-Light Blue,1 +Toa Mahri,Toa Mahri Matoro,62,2007,Trans-Neon Orange,1 +Toa Mahri,Toa Mahri Hewkii,61,2007,Dark Bluish Gray,2 +Toa Mahri,Toa Mahri Hewkii,61,2007,Bright Light Orange,6 +Toa Mahri,Toa Mahri Hewkii,61,2007,Blue,1 +Toa Mahri,Toa Mahri Hewkii,61,2007,Black,12 +Toa Mahri,Toa Mahri Hewkii,61,2007,Red,3 +Toa Mahri,Toa Mahri Hewkii,61,2007,Pearl Light Gray,5 +Toa Mahri,Toa Mahri Hewkii,61,2007,Light Bluish Gray,2 +Toa Mahri,Toa Mahri Hewkii,61,2007,Trans-Neon Orange,1 +Toa Mahri,Toa Mahri Hahli,58,2007,Blue,1 +Toa Mahri,Toa Mahri Hahli,58,2007,Dark Blue,8 +Toa Mahri,Toa Mahri Hahli,58,2007,Dark Bluish Gray,1 +Toa Mahri,Toa Mahri Hahli,58,2007,Light Bluish Gray,2 +Toa Mahri,Toa Mahri Hahli,58,2007,Lime,3 +Toa Mahri,Toa Mahri Hahli,58,2007,Pearl Light Gray,4 +Toa Mahri,Toa Mahri Hahli,58,2007,Red,1 +Toa Mahri,Toa Mahri Hahli,58,2007,Trans-Light Blue,1 +Toa Mahri,Toa Mahri Hahli,58,2007,Trans-Neon Orange,1 +Toa Mahri,Toa Mahri Hahli,58,2007,Trans-Medium Blue,1 +Toa Mahri,Toa Mahri Hahli,58,2007,Black,4 +Toa Mahri,Toa Mahri Nuparu,58,2007,Black,10 +Toa Mahri,Toa Mahri Nuparu,58,2007,Blue,1 +Toa Mahri,Toa Mahri Nuparu,58,2007,Dark Bluish Gray,2 +Toa Mahri,Toa Mahri Nuparu,58,2007,Light Bluish Gray,1 +Toa Mahri,Toa Mahri Nuparu,58,2007,Pearl Light Gray,5 +Toa Mahri,Toa Mahri Nuparu,58,2007,Red,1 +Toa Mahri,Toa Mahri Nuparu,58,2007,Trans-Light Blue,1 +Toa Mahri,Toa Mahri Nuparu,58,2007,Trans-Neon Green,1 +Toa Mahri,Toa Mahri Nuparu,58,2007,Trans-Neon Orange,1 +Toa Metru,Toa Vakama,48,2003,Black,4 +Toa Metru,Toa Vakama,48,2003,Blue,1 +Toa Metru,Toa Vakama,48,2003,Dark Bluish Gray,4 +Toa Metru,Toa Vakama,48,2003,Dark Red,9 +Toa Metru,Toa Vakama,48,2003,Flat Silver,1 +Toa Metru,Toa Vakama,48,2003,Light Gray,3 +Toa Metru,Toa Vakama,48,2003,Trans-Neon Green,1 +Toa Metru,Toa Vakama,48,2003,Trans-Red,1 +Toa Metru,Toa Vakama,48,2003,White,1 +Toa Metru,Toa Whenua,49,2004,Dark Bluish Gray,3 +Toa Metru,Toa Whenua,49,2004,Blue,1 +Toa Metru,Toa Whenua,49,2004,Black,13 +Toa Metru,Toa Whenua,49,2004,White,1 +Toa Metru,Toa Whenua,49,2004,Trans-Green,1 +Toa Metru,Toa Whenua,49,2004,Light Bluish Gray,3 +Toa Metru,Toa Whenua,49,2004,Flat Silver,1 +Toa Metru,Toa Nuju,48,2004,White,10 +Toa Metru,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),48,2004,Black,4 +Toa Metru,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),48,2004,Blue,1 +Toa Metru,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),48,2004,Dark Bluish Gray,4 +Toa Metru,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),48,2004,Dark Red,9 +Toa Metru,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),48,2004,Flat Silver,1 +Toa Metru,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),48,2004,Light Gray,3 +Toa Metru,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),48,2004,Trans-Neon Green,1 +Toa Metru,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),48,2004,Trans-Red,1 +Toa Metru,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),48,2004,White,1 +Toa Metru,Toa Nuju,48,2004,Black,3 +Toa Metru,Toa Nuju,48,2004,Dark Bluish Gray,3 +Toa Metru,Toa Nuju,48,2004,Flat Silver,1 +Toa Metru,Toa Nuju,48,2004,Light Bluish Gray,3 +Toa Metru,Toa Nuju,48,2004,Trans-Light Blue,1 +Toa Metru,Toa Matau,46,2004,Black,4 +Toa Metru,Toa Matau,46,2004,Blue,1 +Toa Metru,Toa Matau,46,2004,Dark Bluish Gray,3 +Toa Metru,Toa Matau,46,2004,Dark Green,9 +Toa Metru,Toa Matau,46,2004,Flat Silver,1 +Toa Metru,Toa Matau,46,2004,Light Bluish Gray,3 +Toa Metru,Toa Matau,46,2004,Trans-Red,1 +Toa Metru,Toa Matau,46,2004,White,1 +Toa Metru,Toa Nokama,46,2004,Black,4 +Toa Metru,Toa Nokama,46,2004,Blue,1 +Toa Metru,Toa Nokama,46,2004,White,1 +Toa Metru,Toa Nokama,46,2004,Trans-Neon Orange,1 +Toa Metru,Toa Nokama,46,2004,Trans-Dark Blue,1 +Toa Metru,Toa Nokama,46,2004,Light Bluish Gray,3 +Toa Metru,Toa Nokama,46,2004,Flat Silver,1 +Toa Metru,Toa Nokama,46,2004,Dark Bluish Gray,3 +Toa Metru,Toa Nokama,46,2004,Dark Blue,8 +Toa Metru,Toa Onewa,44,2004,Black,4 +Toa Metru,Toa Onewa,44,2004,Dark Bluish Gray,3 +Toa Metru,Toa Onewa,44,2004,Dark Flesh,9 +Toa Metru,Toa Onewa,44,2004,Flat Silver,1 +Toa Metru,Toa Onewa,44,2004,Light Bluish Gray,3 +Toa Metru,Toa Onewa,44,2004,Trans-Dark Blue,1 +Toa Metru,Toa Onewa,44,2004,White,1 +Toa Metru,Toa Onewa,44,2004,[No Color],1 +Toa Nuva,Gali Nuva,44,2002,Black,7 +Toa Nuva,Gali Nuva,44,2002,Blue,4 +Toa Nuva,Gali Nuva,44,2002,Dark Gray,1 +Toa Nuva,Gali Nuva,44,2002,Flat Silver,3 +Toa Nuva,Gali Nuva,44,2002,Light Gray,6 +Toa Nuva,Gali Nuva,44,2002,Medium Blue,1 +Toa Nuva,Gali Nuva,44,2002,Pearl Light Gray,1 +Toa Nuva,Gali Nuva,44,2002,Trans-Neon Yellow,1 +Toa Nuva,Pohatu Nuva,43,2002,Trans-Neon Orange,1 +Toa Nuva,Pohatu Nuva,43,2002,Black,10 +Toa Nuva,Pohatu Nuva,43,2002,Brown,3 +Toa Nuva,Pohatu Nuva,43,2002,Flat Silver,4 +Toa Nuva,Pohatu Nuva,43,2002,Light Gray,4 +Toa Nuva,Pohatu Nuva,43,2002,Tan,2 +Toa Nuva,Kopaka Nuva,42,2002,Black,6 +Toa Nuva,Kopaka Nuva,42,2002,Dark Gray,1 +Toa Nuva,Kopaka Nuva,42,2002,Flat Silver,3 +Toa Nuva,Kopaka Nuva,42,2002,Light Gray,10 +Toa Nuva,Kopaka Nuva,42,2002,Trans-Medium Blue,1 +Toa Nuva,Kopaka Nuva,42,2002,White,4 +Toa Nuva,Onua Nuva,41,2002,Black,10 +Toa Nuva,Onua Nuva,41,2002,Dark Gray,3 +Toa Nuva,Onua Nuva,41,2002,Light Gray,7 +Toa Nuva,Onua Nuva,41,2002,Pearl Light Gray,3 +Toa Nuva,Onua Nuva,41,2002,Trans-Green,1 +Toa Nuva,Lewa Nuva,37,2002,Black,8 +Toa Nuva,Lewa Nuva,37,2002,Flat Silver,3 +Toa Nuva,Lewa Nuva,37,2002,Light Gray,4 +Toa Nuva,Lewa Nuva,37,2002,Lime,2 +Toa Nuva,Lewa Nuva,37,2002,Trans-Neon Green,1 +Toa Nuva,Lewa Nuva,37,2002,Green,4 +Toa Nuva,Tahu Nuva,36,2002,Black,8 +Toa Nuva,Tahu Nuva,36,2002,Flat Silver,3 +Toa Nuva,Tahu Nuva,36,2002,Light Gray,4 +Toa Nuva,Tahu Nuva,36,2002,Orange,2 +Toa Nuva,Tahu Nuva,36,2002,Red,4 +Toa Nuva,Tahu Nuva,36,2002,Trans-Dark Pink,1 +Toa Okoto,Onua - Master of Earth,107,2015,Yellow,1 +Toa Okoto,Onua - Master of Earth,107,2015,Trans-Purple,1 +Toa Okoto,Onua - Master of Earth,107,2015,Trans-Neon Green,1 +Toa Okoto,Onua - Master of Earth,107,2015,Red,1 +Toa Okoto,Onua - Master of Earth,107,2015,Pearl Gold,2 +Toa Okoto,Onua - Master of Earth,107,2015,Pearl Dark Gray,1 +Toa Okoto,Onua - Master of Earth,107,2015,Light Bluish Gray,3 +Toa Okoto,Onua - Master of Earth,107,2015,Flat Silver,4 +Toa Okoto,Onua - Master of Earth,107,2015,Dark Tan,1 +Toa Okoto,Onua - Master of Earth,107,2015,Dark Purple,1 +Toa Okoto,Onua - Master of Earth,107,2015,Dark Bluish Gray,8 +Toa Okoto,Onua - Master of Earth,107,2015,Yellowish Green,1 +Toa Okoto,Onua - Master of Earth,107,2015,Black,19 +Toa Okoto,Onua - Master of Earth,107,2015,Blue,2 +Toa Okoto,Kopaka - Master of Ice,96,2015,Black,11 +Toa Okoto,Kopaka - Master of Ice,96,2015,Yellow,1 +Toa Okoto,Kopaka - Master of Ice,96,2015,Red,1 +Toa Okoto,Kopaka - Master of Ice,96,2015,Blue,2 +Toa Okoto,Kopaka - Master of Ice,96,2015,Dark Bluish Gray,6 +Toa Okoto,Kopaka - Master of Ice,96,2015,Dark Tan,1 +Toa Okoto,Kopaka - Master of Ice,96,2015,Flat Silver,4 +Toa Okoto,Kopaka - Master of Ice,96,2015,Light Bluish Gray,3 +Toa Okoto,Kopaka - Master of Ice,96,2015,Pearl Dark Gray,1 +Toa Okoto,Kopaka - Master of Ice,96,2015,Pearl Gold,4 +Toa Okoto,Kopaka - Master of Ice,96,2015,Trans-Light Blue,4 +Toa Okoto,Kopaka - Master of Ice,96,2015,White,9 +Toa Okoto,Tahu - Master of Fire,89,2015,Pearl Gold,4 +Toa Okoto,Tahu - Master of Fire,89,2015,Black,12 +Toa Okoto,Tahu - Master of Fire,89,2015,Blue,2 +Toa Okoto,Tahu - Master of Fire,89,2015,Dark Bluish Gray,5 +Toa Okoto,Tahu - Master of Fire,89,2015,Dark Tan,1 +Toa Okoto,Tahu - Master of Fire,89,2015,Flat Silver,4 +Toa Okoto,Tahu - Master of Fire,89,2015,Light Bluish Gray,2 +Toa Okoto,Tahu - Master of Fire,89,2015,Pearl Dark Gray,1 +Toa Okoto,Tahu - Master of Fire,89,2015,Red,4 +Toa Okoto,Tahu - Master of Fire,89,2015,Trans-Light Blue,1 +Toa Okoto,Tahu - Master of Fire,89,2015,Trans-Neon Orange,1 +Toa Okoto,Tahu - Master of Fire,89,2015,Trans-Red,1 +Toa Okoto,Tahu - Master of Fire,89,2015,Yellow,1 +Toa Okoto,Tahu - Master of Fire,89,2015,Yellowish Green,1 +Toa Okoto,Gali - Master of Water,87,2015,Trans-Neon Green,1 +Toa Okoto,Gali - Master of Water,87,2015,Trans-Light Blue,4 +Toa Okoto,Gali - Master of Water,87,2015,Red,1 +Toa Okoto,Gali - Master of Water,87,2015,Pearl Gold,2 +Toa Okoto,Gali - Master of Water,87,2015,Light Bluish Gray,5 +Toa Okoto,Gali - Master of Water,87,2015,Black,6 +Toa Okoto,Gali - Master of Water,87,2015,Flat Silver,7 +Toa Okoto,Gali - Master of Water,87,2015,Dark Bluish Gray,5 +Toa Okoto,Gali - Master of Water,87,2015,Dark Azure,2 +Toa Okoto,Gali - Master of Water,87,2015,Blue,2 +Toa Okoto,Gali - Master of Water,87,2015,Pearl Dark Gray,6 +Toa Okoto,Gali - Master of Water,87,2015,Yellow,3 +Toa Okoto,Lewa - Master of Jungle,85,2015,Bright Green,3 +Toa Okoto,Lewa - Master of Jungle,85,2015,Bright Light Orange,1 +Toa Okoto,Lewa - Master of Jungle,85,2015,Dark Blue,1 +Toa Okoto,Lewa - Master of Jungle,85,2015,Dark Bluish Gray,7 +Toa Okoto,Lewa - Master of Jungle,85,2015,Flat Silver,7 +Toa Okoto,Lewa - Master of Jungle,85,2015,Light Bluish Gray,2 +Toa Okoto,Lewa - Master of Jungle,85,2015,Pearl Dark Gray,2 +Toa Okoto,Lewa - Master of Jungle,85,2015,Pearl Gold,1 +Toa Okoto,Lewa - Master of Jungle,85,2015,Red,1 +Toa Okoto,Lewa - Master of Jungle,85,2015,Trans-Neon Green,1 +Toa Okoto,Lewa - Master of Jungle,85,2015,Yellow,3 +Toa Okoto,Lewa - Master of Jungle,85,2015,Black,9 +Toa Okoto,Lewa - Master of Jungle,85,2015,Blue,1 +Toa Okoto,Pohatu - Master of Stone,66,2015,Black,6 +Toa Okoto,Pohatu - Master of Stone,66,2015,Blue,2 +Toa Okoto,Pohatu - Master of Stone,66,2015,Dark Blue,1 +Toa Okoto,Pohatu - Master of Stone,66,2015,Dark Bluish Gray,3 +Toa Okoto,Pohatu - Master of Stone,66,2015,Dark Orange,3 +Toa Okoto,Pohatu - Master of Stone,66,2015,Dark Tan,1 +Toa Okoto,Pohatu - Master of Stone,66,2015,Flat Silver,7 +Toa Okoto,Pohatu - Master of Stone,66,2015,Light Bluish Gray,2 +Toa Okoto,Pohatu - Master of Stone,66,2015,Pearl Dark Gray,2 +Toa Okoto,Pohatu - Master of Stone,66,2015,Pearl Gold,1 +Toa Okoto,Pohatu - Master of Stone,66,2015,Red,1 +Toa Okoto,Pohatu - Master of Stone,66,2015,Trans-Neon Green,3 +Toa Okoto,Pohatu - Master of Stone,66,2015,White,2 +Toa Okoto,Pohatu - Master of Stone,66,2015,Yellow,1 +Tohunga,Huki [McDonald's Promo Set #1],8,2001,Black,1 +Tohunga,Huki [McDonald's Promo Set #1],8,2001,Dark Gray,1 +Tohunga,Huki [McDonald's Promo Set #1],8,2001,Dark Orange,2 +Tohunga,Huki [McDonald's Promo Set #1],8,2001,Tan,3 +Tohunga,Jala [McDonald's Promo Set #4],8,2001,Black,1 +Tohunga,Jala [McDonald's Promo Set #4],8,2001,Dark Gray,1 +Tohunga,Jala [McDonald's Promo Set #4],8,2001,Red,3 +Tohunga,Jala [McDonald's Promo Set #4],8,2001,Yellow,2 +Tohunga,Kongu [McDonald's Promo Set #5],8,2001,Black,1 +Tohunga,Kongu [McDonald's Promo Set #5],8,2001,Dark Gray,1 +Tohunga,Kongu [McDonald's Promo Set #5],8,2001,Dark Turquoise,2 +Tohunga,Kongu [McDonald's Promo Set #5],8,2001,Lime,3 +Tohunga,Maku [McDonald's Promo Set #3],8,2001,Black,1 +Tohunga,Maku [McDonald's Promo Set #3],8,2001,Blue,2 +Tohunga,Maku [McDonald's Promo Set #3],8,2001,Dark Gray,1 +Tohunga,Maku [McDonald's Promo Set #3],8,2001,Medium Blue,3 +Tohunga,Matoro [McDonald's Promo Set #6],8,2001,Black,1 +Tohunga,Matoro [McDonald's Promo Set #6],8,2001,Dark Gray,1 +Tohunga,Matoro [McDonald's Promo Set #6],8,2001,Sand Blue,2 +Tohunga,Matoro [McDonald's Promo Set #6],8,2001,White,3 +Tohunga,Onepu [McDonald's Promo Set #2],8,2001,Black,4 +Tohunga,Onepu [McDonald's Promo Set #2],8,2001,Dark Gray,1 +Tohunga,Onepu [McDonald's Promo Set #2],8,2001,Purple,2 +Town,{Town Vehicles},158,1980,Black,11 +Town,{Town Vehicles},158,1980,Blue,10 +Town,{Town Vehicles},158,1980,Light Gray,1 +Town,{Town Vehicles},158,1980,Red,21 +Town,{Town Vehicles},158,1980,Trans-Clear,1 +Town,{Town Vehicles},158,1980,White,17 +Town,{Town Vehicles},158,1980,Yellow,14 +Town,"Runways, Straight (Airport)",2,1987,Green,1 +Town,"T-Junction, Circle (Airport)",2,1987,Green,2 +Town,RES-Q Equipment (Tools),31,1999,White,3 +Town,RES-Q Equipment (Tools),31,1999,Black,4 +Town,RES-Q Equipment (Tools),31,1999,Dark Gray,7 +Town,RES-Q Equipment (Tools),31,1999,Light Gray,5 +Town,RES-Q Equipment (Tools),31,1999,Trans-Light Blue,1 +Town,RES-Q Equipment (Tools),31,1999,Yellow,1 +Town,Decorated Elements,19,1999,Black,5 +Town,Decorated Elements,19,1999,Green,1 +Town,Decorated Elements,19,1999,White,7 +Town,Decorated Elements,19,1999,Yellow,2 +Town,Decorated Elements,19,1999,Light Gray,2 +Town,Space Port Accessories,16,1999,Black,2 +Town,Space Port Accessories,16,1999,Chrome Gold,2 +Town,Space Port Accessories,16,1999,Dark Gray,1 +Town,Space Port Accessories,16,1999,Light Gray,1 +Town,Space Port Accessories,16,1999,Trans-Neon Green,1 +Town,Space Port Accessories,16,1999,White,6 +Town,Harbor Set,906,2011,Trans-Yellow,1 +Town,Harbor Set,906,2011,White,34 +Town,Harbor Set,906,2011,Yellow,18 +Town,Harbor Set,906,2011,Black,30 +Town,Harbor Set,906,2011,Blue,22 +Town,Harbor Set,906,2011,Bright Light Orange,1 +Town,Harbor Set,906,2011,Dark Blue,1 +Town,Harbor Set,906,2011,Dark Bluish Gray,19 +Town,Harbor Set,906,2011,Dark Brown,1 +Town,Harbor Set,906,2011,Dark Orange,1 +Town,Harbor Set,906,2011,Flat Silver,1 +Town,Harbor Set,906,2011,Green,6 +Town,Harbor Set,906,2011,Light Bluish Gray,7 +Town,Harbor Set,906,2011,Lime,2 +Town,Harbor Set,906,2011,Medium Blue,7 +Town,Harbor Set,906,2011,Orange,10 +Town,Harbor Set,906,2011,Red,22 +Town,Harbor Set,906,2011,Reddish Brown,15 +Town,Harbor Set,906,2011,Tan,6 +Town,Harbor Set,906,2011,Trans-Clear,1 +Town,Harbor Set,906,2011,Trans-Neon Green,1 +Town,Harbor Set,906,2011,Trans-Red,1 +Town,Community Minifigures,264,2011,Black,18 +Town,Community Minifigures,264,2011,Blue,12 +Town,Community Minifigures,264,2011,Bright Green,2 +Town,Community Minifigures,264,2011,Dark Blue,1 +Town,Community Minifigures,264,2011,Dark Bluish Gray,12 +Town,Community Minifigures,264,2011,Dark Brown,2 +Town,Community Minifigures,264,2011,Dark Orange,2 +Town,Community Minifigures,264,2011,Dark Purple,1 +Town,Community Minifigures,264,2011,Dark Red,1 +Town,Community Minifigures,264,2011,Green,5 +Town,Community Minifigures,264,2011,Light Bluish Gray,8 +Town,Community Minifigures,264,2011,Lime,3 +Town,Community Minifigures,264,2011,Medium Blue,1 +Town,Community Minifigures,264,2011,Medium Dark Flesh,1 +Town,Community Minifigures,264,2011,Metallic Silver,1 +Town,Community Minifigures,264,2011,Orange,5 +Town,Community Minifigures,264,2011,Red,17 +Town,Community Minifigures,264,2011,Reddish Brown,10 +Town,Community Minifigures,264,2011,Tan,11 +Town,Community Minifigures,264,2011,Trans-Clear,1 +Town,Community Minifigures,264,2011,Trans-Light Blue,2 +Town,Community Minifigures,264,2011,Trans-Neon Green,1 +Town,Community Minifigures,264,2011,Trans-Neon Orange,1 +Town,Community Minifigures,264,2011,White,35 +Town,Community Minifigures,264,2011,Yellow,10 +Town,The Kwik-E-Mart,2176,2015,Black,68 +Town,The Kwik-E-Mart,2176,2015,Blue,31 +Town,The Kwik-E-Mart,2176,2015,Bright Green,2 +Town,The Kwik-E-Mart,2176,2015,Bright Light Orange,1 +Town,The Kwik-E-Mart,2176,2015,Bright Pink,4 +Town,The Kwik-E-Mart,2176,2015,Dark Azure,1 +Town,The Kwik-E-Mart,2176,2015,Dark Blue,10 +Town,The Kwik-E-Mart,2176,2015,Dark Bluish Gray,40 +Town,The Kwik-E-Mart,2176,2015,Dark Orange,12 +Town,The Kwik-E-Mart,2176,2015,Dark Pink,1 +Town,The Kwik-E-Mart,2176,2015,Dark Purple,8 +Town,The Kwik-E-Mart,2176,2015,Dark Red,1 +Town,The Kwik-E-Mart,2176,2015,Flat Silver,5 +Town,The Kwik-E-Mart,2176,2015,Green,21 +Town,The Kwik-E-Mart,2176,2015,Lavender,1 +Town,The Kwik-E-Mart,2176,2015,Light Aqua,1 +Town,The Kwik-E-Mart,2176,2015,Light Bluish Gray,93 +Town,The Kwik-E-Mart,2176,2015,Lime,9 +Town,The Kwik-E-Mart,2176,2015,Magenta,2 +Town,The Kwik-E-Mart,2176,2015,Medium Azure,5 +Town,The Kwik-E-Mart,2176,2015,Medium Blue,15 +Town,The Kwik-E-Mart,2176,2015,Medium Dark Flesh,6 +Town,The Kwik-E-Mart,2176,2015,Medium Lavender,3 +Town,The Kwik-E-Mart,2176,2015,Orange,20 +Town,The Kwik-E-Mart,2176,2015,Red,24 +Town,The Kwik-E-Mart,2176,2015,Reddish Brown,13 +Town,The Kwik-E-Mart,2176,2015,Sand Blue,2 +Town,The Kwik-E-Mart,2176,2015,Tan,26 +Town,The Kwik-E-Mart,2176,2015,Trans-Black,1 +Town,The Kwik-E-Mart,2176,2015,Trans-Clear,6 +Town,The Kwik-E-Mart,2176,2015,Trans-Dark Blue,4 +Town,The Kwik-E-Mart,2176,2015,Trans-Dark Pink,1 +Town,The Kwik-E-Mart,2176,2015,Trans-Light Blue,8 +Town,The Kwik-E-Mart,2176,2015,Trans-Orange,1 +Town,The Kwik-E-Mart,2176,2015,Trans-Purple,1 +Town,The Kwik-E-Mart,2176,2015,Trans-Red,2 +Town,The Kwik-E-Mart,2176,2015,Trans-Yellow,1 +Town,The Kwik-E-Mart,2176,2015,White,44 +Town,The Kwik-E-Mart,2176,2015,Yellow,34 +Town Plan,Gift Package (Lego Mursten),54,1954,Light Gray,1 +Town Plan,Gift Package (Lego Mursten),54,1954,Red,9 +Town Plan,Gift Package (Lego Mursten),54,1954,White,6 +Town Plan,Gift Package (Lego Mursten),46,1954,Red,9 +Town Plan,Gift Package (Lego Mursten),46,1954,Trans-Clear,1 +Town Plan,Gift Package (Lego Mursten),46,1954,White,5 +Town Plan,Garage with Automatic Door (Gray base and door frame),59,1968,Light Gray,2 +Town Plan,Garage with Automatic Door (Gray base and door frame),59,1968,Red,3 +Town Plan,Garage with Automatic Door (Gray base and door frame),59,1968,White,6 +Town Plan,Town Plan,2017,2008,Black,57 +Town Plan,Town Plan,2017,2008,Blue,32 +Town Plan,Town Plan,2017,2008,Bright Green,1 +Town Plan,Town Plan,2017,2008,Dark Blue,2 +Town Plan,Town Plan,2017,2008,Dark Bluish Gray,31 +Town Plan,Town Plan,2017,2008,Dark Green,5 +Town Plan,Town Plan,2017,2008,Dark Orange,1 +Town Plan,Town Plan,2017,2008,Dark Pink,1 +Town Plan,Town Plan,2017,2008,Dark Red,15 +Town Plan,Town Plan,2017,2008,Dark Tan,1 +Town Plan,Town Plan,2017,2008,Green,14 +Town Plan,Town Plan,2017,2008,Light Bluish Gray,63 +Town Plan,Town Plan,2017,2008,Medium Blue,5 +Town Plan,Town Plan,2017,2008,Metallic Gold,1 +Town Plan,Town Plan,2017,2008,Metallic Silver,2 +Town Plan,Town Plan,2017,2008,Red,58 +Town Plan,Town Plan,2017,2008,Reddish Brown,13 +Town Plan,Town Plan,2017,2008,Tan,22 +Town Plan,Town Plan,2017,2008,Trans-Clear,11 +Town Plan,Town Plan,2017,2008,Trans-Green,1 +Town Plan,Town Plan,2017,2008,Trans-Light Blue,2 +Town Plan,Town Plan,2017,2008,Trans-Medium Blue,1 +Town Plan,Town Plan,2017,2008,Trans-Red,1 +Town Plan,Town Plan,2017,2008,Trans-Yellow,2 +Town Plan,Town Plan,2017,2008,White,77 +Town Plan,Town Plan,2017,2008,Yellow,10 +Toy Story,Western Train Chase,584,2010,Dark Tan,1 +Toy Story,Western Train Chase,584,2010,Red,37 +Toy Story,Western Train Chase,584,2010,Reddish Brown,10 +Toy Story,Western Train Chase,584,2010,Tan,4 +Toy Story,Western Train Chase,584,2010,Trans-Black,1 +Toy Story,Western Train Chase,584,2010,Trans-Clear,4 +Toy Story,Western Train Chase,584,2010,White,5 +Toy Story,Western Train Chase,584,2010,Black,44 +Toy Story,Western Train Chase,584,2010,Blue,3 +Toy Story,Western Train Chase,584,2010,Bright Green,4 +Toy Story,Western Train Chase,584,2010,Chrome Silver,1 +Toy Story,Western Train Chase,584,2010,Dark Bluish Gray,21 +Toy Story,Western Train Chase,584,2010,Dark Flesh,1 +Toy Story,Western Train Chase,584,2010,Dark Orange,2 +Toy Story,Western Train Chase,584,2010,Yellow,16 +Toy Story,Western Train Chase,584,2010,Green,6 +Toy Story,Western Train Chase,584,2010,Light Bluish Gray,11 +Toy Story,Western Train Chase,584,2010,Light Flesh,4 +Toy Story,Western Train Chase,584,2010,Lime,1 +Toy Story,Western Train Chase,584,2010,Medium Blue,1 +Toy Story,Western Train Chase,584,2010,Medium Dark Flesh,1 +Toy Story,Western Train Chase,584,2010,Orange,1 +Toy Story,Woody's Roundup!,502,2010,Trans-Light Blue,1 +Toy Story,Woody's Roundup!,502,2010,White,2 +Toy Story,Woody's Roundup!,502,2010,[No Color],1 +Toy Story,Woody's Roundup!,502,2010,Black,13 +Toy Story,Woody's Roundup!,502,2010,Blue,5 +Toy Story,Woody's Roundup!,502,2010,Dark Bluish Gray,19 +Toy Story,Woody's Roundup!,502,2010,Trans-Clear,1 +Toy Story,Woody's Roundup!,502,2010,Dark Brown,5 +Toy Story,Woody's Roundup!,502,2010,Tan,13 +Toy Story,Woody's Roundup!,502,2010,Dark Green,1 +Toy Story,Woody's Roundup!,502,2010,Dark Orange,4 +Toy Story,Woody's Roundup!,502,2010,Dark Tan,4 +Toy Story,Woody's Roundup!,502,2010,Green,4 +Toy Story,Woody's Roundup!,502,2010,Light Bluish Gray,20 +Toy Story,Woody's Roundup!,502,2010,Light Flesh,3 +Toy Story,Woody's Roundup!,502,2010,Medium Blue,3 +Toy Story,Woody's Roundup!,502,2010,Medium Dark Flesh,1 +Toy Story,Woody's Roundup!,502,2010,Pearl Gold,1 +Toy Story,Woody's Roundup!,502,2010,Red,2 +Toy Story,Woody's Roundup!,502,2010,Reddish Brown,26 +Toy Story,Garbage Truck Getaway,404,2010,Reddish Brown,3 +Toy Story,Garbage Truck Getaway,404,2010,Bright Green,4 +Toy Story,Garbage Truck Getaway,404,2010,Dark Bluish Gray,26 +Toy Story,Garbage Truck Getaway,404,2010,Dark Green,5 +Toy Story,Garbage Truck Getaway,404,2010,White,20 +Toy Story,Garbage Truck Getaway,404,2010,Light Bluish Gray,21 +Toy Story,Garbage Truck Getaway,404,2010,Trans-Red,1 +Toy Story,Garbage Truck Getaway,404,2010,Trans-Orange,1 +Toy Story,Garbage Truck Getaway,404,2010,Trans-Clear,3 +Toy Story,Garbage Truck Getaway,404,2010,Trans-Black,1 +Toy Story,Garbage Truck Getaway,404,2010,Tan,1 +Toy Story,Garbage Truck Getaway,404,2010,Magenta,3 +Toy Story,Garbage Truck Getaway,404,2010,Dark Tan,1 +Toy Story,Garbage Truck Getaway,404,2010,Red,1 +Toy Story,Garbage Truck Getaway,404,2010,Metallic Silver,1 +Toy Story,Garbage Truck Getaway,404,2010,Lime,1 +Toy Story,Garbage Truck Getaway,404,2010,Light Flesh,2 +Toy Story,Garbage Truck Getaway,404,2010,Black,20 +Toy Story,Garbage Truck Getaway,404,2010,Blue,8 +Toy Story,Trash Compactor Escape,367,2010,Light Bluish Gray,28 +Toy Story,Trash Compactor Escape,367,2010,Light Flesh,1 +Toy Story,Trash Compactor Escape,367,2010,Lime,2 +Toy Story,Trash Compactor Escape,367,2010,Red,7 +Toy Story,Trash Compactor Escape,367,2010,Dark Red,1 +Toy Story,Trash Compactor Escape,367,2010,Magenta,3 +Toy Story,Trash Compactor Escape,367,2010,Black,20 +Toy Story,Trash Compactor Escape,367,2010,Blue,3 +Toy Story,Trash Compactor Escape,367,2010,Chrome Gold,4 +Toy Story,Trash Compactor Escape,367,2010,Dark Bluish Gray,22 +Toy Story,Trash Compactor Escape,367,2010,Dark Flesh,1 +Toy Story,Trash Compactor Escape,367,2010,Dark Green,10 +Toy Story,Trash Compactor Escape,367,2010,Dark Tan,2 +Toy Story,Trash Compactor Escape,367,2010,Trans-Black,1 +Toy Story,Trash Compactor Escape,367,2010,Trans-Dark Blue,2 +Toy Story,Trash Compactor Escape,367,2010,Trans-Orange,1 +Toy Story,Trash Compactor Escape,367,2010,Trans-Red,1 +Toy Story,Trash Compactor Escape,367,2010,White,6 +Toy Story,Trash Compactor Escape,367,2010,Yellow,14 +Toy Story,Trash Compactor Escape,367,2010,Reddish Brown,6 +Toy Story,Buzz's Star Command Spaceship,251,2010,Trans-Clear,1 +Toy Story,Buzz's Star Command Spaceship,251,2010,Trans-Black,1 +Toy Story,Buzz's Star Command Spaceship,251,2010,Red,2 +Toy Story,Buzz's Star Command Spaceship,251,2010,Trans-Orange,1 +Toy Story,Buzz's Star Command Spaceship,251,2010,Trans-Neon Orange,1 +Toy Story,Buzz's Star Command Spaceship,251,2010,Trans-Neon Green,1 +Toy Story,Buzz's Star Command Spaceship,251,2010,White,12 +Toy Story,Buzz's Star Command Spaceship,251,2010,Light Flesh,1 +Toy Story,Buzz's Star Command Spaceship,251,2010,Blue,23 +Toy Story,Buzz's Star Command Spaceship,251,2010,Trans-Dark Pink,1 +Toy Story,Buzz's Star Command Spaceship,251,2010,Dark Bluish Gray,8 +Toy Story,Buzz's Star Command Spaceship,251,2010,Dark Purple,3 +Toy Story,Buzz's Star Command Spaceship,251,2010,Light Bluish Gray,12 +Toy Story,Buzz's Star Command Spaceship,251,2010,Lime,10 +Toy Story,Buzz's Star Command Spaceship,251,2010,Black,3 +Toy Story,Pizza Planet Truck Rescue,225,2010,Trans-Clear,2 +Toy Story,Pizza Planet Truck Rescue,225,2010,Trans-Orange,1 +Toy Story,Pizza Planet Truck Rescue,225,2010,Trans-Red,1 +Toy Story,Pizza Planet Truck Rescue,225,2010,White,18 +Toy Story,Pizza Planet Truck Rescue,225,2010,Yellow,24 +Toy Story,Pizza Planet Truck Rescue,225,2010,Blue,3 +Toy Story,Pizza Planet Truck Rescue,225,2010,Black,15 +Toy Story,Pizza Planet Truck Rescue,225,2010,Bright Green,4 +Toy Story,Pizza Planet Truck Rescue,225,2010,Dark Bluish Gray,13 +Toy Story,Pizza Planet Truck Rescue,225,2010,Dark Flesh,1 +Toy Story,Pizza Planet Truck Rescue,225,2010,Light Bluish Gray,12 +Toy Story,Pizza Planet Truck Rescue,225,2010,Light Flesh,2 +Toy Story,Pizza Planet Truck Rescue,225,2010,Lime,2 +Toy Story,Pizza Planet Truck Rescue,225,2010,Red,4 +Toy Story,Pizza Planet Truck Rescue,225,2010,Reddish Brown,4 +Toy Story,Pizza Planet Truck Rescue,225,2010,Tan,6 +Toy Story,Pizza Planet Truck Rescue,225,2010,Trans-Black,3 +Toy Story,Construct-a-Buzz,205,2010,White,25 +Toy Story,Construct-a-Buzz,205,2010,Trans-Red,2 +Toy Story,Construct-a-Buzz,205,2010,Trans-Green,1 +Toy Story,Construct-a-Buzz,205,2010,Trans-Clear,2 +Toy Story,Construct-a-Buzz,205,2010,Red,4 +Toy Story,Construct-a-Buzz,205,2010,Lime,16 +Toy Story,Construct-a-Buzz,205,2010,Light Bluish Gray,5 +Toy Story,Construct-a-Buzz,205,2010,Dark Tan,1 +Toy Story,Construct-a-Buzz,205,2010,Dark Bluish Gray,6 +Toy Story,Construct-a-Buzz,205,2010,Blue,4 +Toy Story,Construct-a-Buzz,205,2010,Black,4 +Toy Story,Construct-a-Buzz,205,2010,Dark Purple,5 +Toy Story,Lotso's Dump Truck,129,2010,Red,2 +Toy Story,Lotso's Dump Truck,129,2010,Reddish Brown,1 +Toy Story,Lotso's Dump Truck,129,2010,Trans-Clear,3 +Toy Story,Lotso's Dump Truck,129,2010,Trans-Red,1 +Toy Story,Lotso's Dump Truck,129,2010,Yellow,17 +Toy Story,Lotso's Dump Truck,129,2010,Black,17 +Toy Story,Lotso's Dump Truck,129,2010,Blue,2 +Toy Story,Lotso's Dump Truck,129,2010,Dark Blue,1 +Toy Story,Lotso's Dump Truck,129,2010,Dark Bluish Gray,5 +Toy Story,Lotso's Dump Truck,129,2010,Dark Purple,2 +Toy Story,Lotso's Dump Truck,129,2010,Green,1 +Toy Story,Lotso's Dump Truck,129,2010,Light Bluish Gray,9 +Toy Story,Lotso's Dump Truck,129,2010,Light Flesh,1 +Toy Story,Lotso's Dump Truck,129,2010,Magenta,3 +Toy Story,Lotso's Dump Truck,129,2010,Orange,2 +Toy Story,Construct-a-Zurg,118,2010,Red,9 +Toy Story,Construct-a-Zurg,118,2010,Trans-Red,1 +Toy Story,Construct-a-Zurg,118,2010,White,2 +Toy Story,Construct-a-Zurg,118,2010,Yellow,2 +Toy Story,Construct-a-Zurg,118,2010,Lime,1 +Toy Story,Construct-a-Zurg,118,2010,Black,9 +Toy Story,Construct-a-Zurg,118,2010,Blue,3 +Toy Story,Construct-a-Zurg,118,2010,Dark Bluish Gray,13 +Toy Story,Construct-a-Zurg,118,2010,Dark Purple,13 +Toy Story,Construct-a-Zurg,118,2010,Dark Tan,1 +Toy Story,Construct-a-Zurg,118,2010,Flat Silver,2 +Toy Story,Construct-a-Zurg,118,2010,Light Bluish Gray,3 +Toy Story,Woody and Buzz to the Rescue,92,2010,Black,8 +Toy Story,Woody and Buzz to the Rescue,92,2010,Light Bluish Gray,5 +Toy Story,Woody and Buzz to the Rescue,92,2010,Light Flesh,2 +Toy Story,Woody and Buzz to the Rescue,92,2010,Lime,11 +Toy Story,Woody and Buzz to the Rescue,92,2010,Red,7 +Toy Story,Woody and Buzz to the Rescue,92,2010,Trans-Clear,1 +Toy Story,Woody and Buzz to the Rescue,92,2010,White,6 +Toy Story,Woody and Buzz to the Rescue,92,2010,Blue,14 +Toy Story,Army Men on Patrol,90,2010,Trans-Green,1 +Toy Story,Army Men on Patrol,90,2010,Light Bluish Gray,1 +Toy Story,Army Men on Patrol,90,2010,Green,31 +Toy Story,Army Men on Patrol,90,2010,Black,4 +Toy Story,Army Jeep,37,2010,Green,12 +Toy Story,Army Jeep,37,2010,Black,5 +Toy Story,Army Jeep,37,2010,Trans-Green,1 +Toy Story,Army Jeep,37,2010,Light Bluish Gray,2 +Toy Story,Alien Space Ship,29,2010,Trans-Neon Orange,1 +Toy Story,Alien Space Ship,29,2010,Trans-Orange,1 +Toy Story,Alien Space Ship,29,2010,White,5 +Toy Story,Alien Space Ship,29,2010,Dark Bluish Gray,2 +Toy Story,Alien Space Ship,29,2010,Blue,4 +Toy Story,Alien Space Ship,29,2010,Light Bluish Gray,1 +Toy Story,Alien Space Ship,29,2010,Lime,2 +Toy Story,Alien Space Ship,29,2010,Red,2 +Toy Story,Alien Space Ship,29,2010,Trans-Black,1 +Toy Story,Buzz's Mini Ship,20,2010,Lime,1 +Toy Story,Buzz's Mini Ship,20,2010,White,4 +Toy Story,Buzz's Mini Ship,20,2010,Light Bluish Gray,2 +Toy Story,Buzz's Mini Ship,20,2010,Dark Bluish Gray,1 +Toy Story,Buzz's Mini Ship,20,2010,Dark Purple,1 +Toy Story,Buzz's Mini Ship,20,2010,Blue,5 +Toy Story,Woody's Camp Out,15,2010,Black,3 +Toy Story,Woody's Camp Out,15,2010,Green,1 +Toy Story,Woody's Camp Out,15,2010,Pearl Light Gray,1 +Toy Story,Woody's Camp Out,15,2010,Red,2 +Toy Story,Woody's Camp Out,15,2010,Reddish Brown,3 +Toy Story,Woody's Camp Out,15,2010,Trans-Neon Orange,1 +Toy Story,Woody's Camp Out,15,2010,Trans-Yellow,1 +Track System,Off Road Race Track,364,2002,Black,23 +Track System,Off Road Race Track,364,2002,Blue,6 +Track System,Off Road Race Track,364,2002,Bright Green,1 +Track System,Off Road Race Track,364,2002,Brown,9 +Track System,Off Road Race Track,364,2002,Dark Gray,15 +Track System,Off Road Race Track,364,2002,Dark Tan,4 +Track System,Off Road Race Track,364,2002,Green,10 +Track System,Off Road Race Track,364,2002,Light Gray,10 +Track System,Off Road Race Track,364,2002,Lime,1 +Track System,Off Road Race Track,364,2002,Medium Blue,4 +Track System,Off Road Race Track,364,2002,Orange,4 +Track System,Off Road Race Track,364,2002,Red,4 +Track System,Off Road Race Track,364,2002,Tan,2 +Track System,Off Road Race Track,364,2002,Trans-Green,1 +Track System,Off Road Race Track,364,2002,Trans-Light Blue,1 +Track System,Off Road Race Track,364,2002,Trans-Neon Green,2 +Track System,Off Road Race Track,364,2002,White,3 +Track System,Off Road Race Track,364,2002,Yellow,17 +Track System,Stunt Race Track,168,2002,Black,19 +Track System,Stunt Race Track,168,2002,Dark Gray,9 +Track System,Stunt Race Track,168,2002,Light Gray,5 +Track System,Stunt Race Track,168,2002,Lime,4 +Track System,Stunt Race Track,168,2002,Orange,6 +Track System,Stunt Race Track,168,2002,Red,14 +Track System,Stunt Race Track,168,2002,Trans-Black,1 +Track System,Stunt Race Track,168,2002,Trans-Neon Green,1 +Track System,Stunt Race Track,168,2002,Yellow,4 +Track System,Multi-Challenge Race Track,623,2003,Black,39 +Track System,Multi-Challenge Race Track,623,2003,Blue,7 +Track System,Multi-Challenge Race Track,623,2003,Brown,1 +Track System,Multi-Challenge Race Track,623,2003,Dark Gray,13 +Track System,Multi-Challenge Race Track,623,2003,Flat Silver,1 +Track System,Multi-Challenge Race Track,623,2003,Green,3 +Track System,Multi-Challenge Race Track,623,2003,Light Gray,20 +Track System,Multi-Challenge Race Track,623,2003,Lime,2 +Track System,Multi-Challenge Race Track,623,2003,Medium Blue,3 +Track System,Multi-Challenge Race Track,623,2003,Orange,3 +Track System,Multi-Challenge Race Track,623,2003,Red,15 +Track System,Multi-Challenge Race Track,623,2003,Tan,12 +Track System,Multi-Challenge Race Track,623,2003,Trans-Green,1 +Track System,Multi-Challenge Race Track,623,2003,Trans-Red,2 +Track System,Multi-Challenge Race Track,623,2003,Trans-Yellow,1 +Track System,Multi-Challenge Race Track,623,2003,White,3 +Track System,Multi-Challenge Race Track,623,2003,Yellow,20 +Traffic,Truck,125,1963,White,5 +Traffic,Truck,125,1963,Black,6 +Traffic,Truck,125,1963,Light Gray,4 +Traffic,Truck,125,1963,Red,13 +Traffic,Truck,125,1963,Trans-Clear,3 +Traffic,European Taxie,48,1963,Light Gray,1 +Traffic,European Taxie,48,1963,Red,1 +Traffic,European Taxie,48,1963,Trans-Clear,2 +Traffic,European Taxie,48,1963,White,5 +Traffic,European Taxie,48,1963,Black,3 +Traffic,Jeep,65,1968,Black,1 +Traffic,Jeep,65,1968,Blue,3 +Traffic,Jeep,65,1968,Light Gray,2 +Traffic,Jeep,65,1968,Red,1 +Traffic,Jeep,65,1968,Trans-Clear,1 +Traffic,Jeep,65,1968,White,8 +Traffic,Town Square,441,1978,Yellow,14 +Traffic,Town Square,441,1978,Black,26 +Traffic,Town Square,441,1978,White,25 +Traffic,Town Square,441,1978,Trans-Clear,7 +Traffic,Town Square,441,1978,Red,20 +Traffic,Town Square,441,1978,Light Gray,9 +Traffic,Town Square,441,1978,Brown,1 +Traffic,Town Square,441,1978,Blue,11 +Traffic,Town Square,441,1978,Green,3 +Traffic,Rally Repair Crew,60,1978,Black,8 +Traffic,Rally Repair Crew,60,1978,White,7 +Traffic,Rally Repair Crew,60,1978,Blue,3 +Traffic,Rally Repair Crew,60,1978,Light Gray,6 +Traffic,Rally Repair Crew,60,1978,Red,7 +Traffic,Rally Repair Crew,60,1978,Trans-Clear,3 +Traffic,Rally Repair Crew,60,1978,Trans-Dark Blue,1 +Traffic,Rally Repair Crew,60,1978,Yellow,3 +Traffic,Tow Truck and Car,43,1978,Trans-Yellow,1 +Traffic,Tow Truck and Car,43,1978,Black,5 +Traffic,Tow Truck and Car,43,1978,Light Gray,4 +Traffic,Tow Truck and Car,43,1978,Red,7 +Traffic,Tow Truck and Car,43,1978,White,4 +Traffic,Tow Truck and Car,43,1978,Yellow,2 +Traffic,Tow Truck and Car,43,1978,Trans-Clear,3 +Traffic,Flatbed Truck,39,1978,Blue,4 +Traffic,Flatbed Truck,39,1978,Black,3 +Traffic,Flatbed Truck,39,1978,Yellow,5 +Traffic,Flatbed Truck,39,1978,Trans-Clear,2 +Traffic,Flatbed Truck,39,1978,Red,1 +Traffic,Flatbed Truck,39,1978,Light Gray,6 +Traffic,Sidecar,26,1978,Yellow,4 +Traffic,Sidecar,26,1978,Blue,5 +Traffic,Sidecar,26,1978,Light Gray,2 +Traffic,Sidecar,26,1978,Black,4 +Traffic,Sidecar,26,1978,Red,2 +Traffic,Street Sweeper,18,1978,Black,2 +Traffic,Street Sweeper,18,1978,Blue,2 +Traffic,Street Sweeper,18,1978,Brown,1 +Traffic,Street Sweeper,18,1978,Dark Gray,1 +Traffic,Street Sweeper,18,1978,Light Gray,3 +Traffic,Street Sweeper,18,1978,Green,1 +Traffic,Street Sweeper,18,1978,[No Color],1 +Traffic,Street Sweeper,18,1978,Yellow,5 +Traffic,Test Car,900,1988,Black,36 +Traffic,Test Car,900,1988,Blue,18 +Traffic,Test Car,900,1988,Light Gray,37 +Traffic,Test Car,900,1988,Red,27 +Traffic,Test Car,900,1988,Trans-Red,1 +Traffic,Test Car,900,1988,White,3 +Traffic,Test Car,900,1988,Yellow,8 +Traffic,Roadblock Runners,181,1997,Blue,3 +Traffic,Roadblock Runners,181,1997,Chrome Silver,1 +Traffic,Roadblock Runners,181,1997,Dark Gray,1 +Traffic,Roadblock Runners,181,1997,Light Gray,10 +Traffic,Roadblock Runners,181,1997,Red,18 +Traffic,Roadblock Runners,181,1997,Trans-Dark Blue,3 +Traffic,Roadblock Runners,181,1997,Trans-Light Blue,4 +Traffic,Roadblock Runners,181,1997,Trans-Red,1 +Traffic,Roadblock Runners,181,1997,White,27 +Traffic,Roadblock Runners,181,1997,Yellow,3 +Traffic,Roadblock Runners,181,1997,Green,8 +Traffic,Roadblock Runners,181,1997,Black,26 +Traffic,Bank,106,1997,Black,16 +Traffic,Bank,106,1997,Blue,2 +Traffic,Bank,106,1997,Chrome Gold,4 +Traffic,Bank,106,1997,Dark Gray,1 +Traffic,Bank,106,1997,Green,4 +Traffic,Bank,106,1997,Light Gray,17 +Traffic,Bank,106,1997,Red,6 +Traffic,Bank,106,1997,Trans-Light Blue,2 +Traffic,Bank,106,1997,Trans-Yellow,1 +Traffic,Bank,106,1997,White,6 +Traffic,Bank,106,1997,Yellow,5 +Traffic,Recycle Truck,35,1997,Blue,5 +Traffic,Recycle Truck,35,1997,Dark Gray,2 +Traffic,Recycle Truck,35,1997,Green,3 +Traffic,Recycle Truck,35,1997,Light Gray,1 +Traffic,Recycle Truck,35,1997,Red,1 +Traffic,Recycle Truck,35,1997,Trans-Light Blue,1 +Traffic,Recycle Truck,35,1997,Trans-Yellow,1 +Traffic,Recycle Truck,35,1997,White,2 +Traffic,Recycle Truck,35,1997,Yellow,2 +Traffic,Recycle Truck,35,1997,Black,3 +Traffic,Mini Tow Truck,35,2000,Black,7 +Traffic,Mini Tow Truck,35,2000,Blue,1 +Traffic,Mini Tow Truck,35,2000,Dark Gray,1 +Traffic,Mini Tow Truck,35,2000,Green,3 +Traffic,Mini Tow Truck,35,2000,Light Gray,1 +Traffic,Mini Tow Truck,35,2000,Red,4 +Traffic,Mini Tow Truck,35,2000,Trans-Light Blue,1 +Traffic,Mini Tow Truck,35,2000,Trans-Neon Green,1 +Traffic,Mini Tow Truck,35,2000,White,5 +Traffic,Mini Tow Truck,35,2000,Yellow,1 +Traffic,Aqua Res-Q Super Station,92,2001,[No Color],4 +Traffic,Aqua Res-Q Super Station,92,2001,Black,8 +Traffic,Aqua Res-Q Super Station,92,2001,Blue,2 +Traffic,Aqua Res-Q Super Station,92,2001,Dark Gray,6 +Traffic,Aqua Res-Q Super Station,92,2001,Light Gray,5 +Traffic,Aqua Res-Q Super Station,92,2001,Orange,1 +Traffic,Aqua Res-Q Super Station,92,2001,Red,2 +Traffic,Aqua Res-Q Super Station,92,2001,Trans-Black,3 +Traffic,Aqua Res-Q Super Station,92,2001,Trans-Neon Green,4 +Traffic,Aqua Res-Q Super Station,92,2001,Yellow,10 +Traffic,Copter Transport,66,2001,Yellow,8 +Traffic,Copter Transport,66,2001,Black,11 +Traffic,Copter Transport,66,2001,[No Color],2 +Traffic,Copter Transport,66,2001,Blue,2 +Traffic,Copter Transport,66,2001,Chrome Silver,1 +Traffic,Copter Transport,66,2001,Dark Gray,3 +Traffic,Copter Transport,66,2001,Light Gray,4 +Traffic,Copter Transport,66,2001,Trans-Black,2 +Traffic,Copter Transport,66,2001,Trans-Neon Green,3 +Traffic,Aqua Res-Q Transport,40,2001,Black,7 +Traffic,Aqua Res-Q Transport,40,2001,Light Gray,4 +Traffic,Aqua Res-Q Transport,40,2001,Trans-Black,1 +Traffic,Aqua Res-Q Transport,40,2001,Trans-Neon Green,1 +Traffic,Aqua Res-Q Transport,40,2001,Unknown,2 +Traffic,Aqua Res-Q Transport,40,2001,Yellow,5 +Traffic,Aqua Res-Q Transport,40,2001,Dark Gray,3 +Traffic,Aqua Res-Q Transport,40,2001,Blue,4 +Traffic,Res-Q Wrecker,30,2001,[No Color],1 +Traffic,Res-Q Wrecker,30,2001,Black,5 +Traffic,Res-Q Wrecker,30,2001,Blue,1 +Traffic,Res-Q Wrecker,30,2001,Dark Gray,3 +Traffic,Res-Q Wrecker,30,2001,Light Gray,3 +Traffic,Res-Q Wrecker,30,2001,Trans-Black,1 +Traffic,Res-Q Wrecker,30,2001,Trans-Neon Green,2 +Traffic,Res-Q Wrecker,30,2001,Yellow,6 +Traffic,Res-Q Digger,67,2002,[No Color],2 +Traffic,Res-Q Digger,67,2002,Black,7 +Traffic,Res-Q Digger,67,2002,Chrome Silver,1 +Traffic,Res-Q Digger,67,2002,Dark Gray,2 +Traffic,Res-Q Digger,67,2002,Trans-Black,2 +Traffic,Res-Q Digger,67,2002,Trans-Neon Green,1 +Traffic,Res-Q Digger,67,2002,White,1 +Traffic,Res-Q Digger,67,2002,Yellow,12 +Traffic,Tow Truck,26,2003,Black,3 +Traffic,Tow Truck,26,2003,Blue,2 +Traffic,Tow Truck,26,2003,Chrome Silver,1 +Traffic,Tow Truck,26,2003,Dark Gray,1 +Traffic,Tow Truck,26,2003,Light Gray,1 +Traffic,Tow Truck,26,2003,Orange,4 +Traffic,Tow Truck,26,2003,Trans-Black,1 +Traffic,Tow Truck,26,2003,Unknown,1 +Traffic,LEGO Truck,105,2004,Black,6 +Traffic,LEGO Truck,105,2004,Blue,3 +Traffic,LEGO Truck,105,2004,Chrome Silver,5 +Traffic,LEGO Truck,105,2004,Light Bluish Gray,5 +Traffic,LEGO Truck,105,2004,Red,1 +Traffic,LEGO Truck,105,2004,Trans-Clear,1 +Traffic,LEGO Truck,105,2004,Trans-Light Blue,1 +Traffic,LEGO Truck,105,2004,Trans-Neon Orange,1 +Traffic,LEGO Truck,105,2004,White,2 +Traffic,LEGO Truck,105,2004,Yellow,28 +Traffic,Street Sweeper,64,2005,Black,12 +Traffic,Street Sweeper,64,2005,Blue,2 +Traffic,Street Sweeper,64,2005,Dark Bluish Gray,2 +Traffic,Street Sweeper,64,2005,Light Bluish Gray,8 +Traffic,Street Sweeper,64,2005,Orange,1 +Traffic,Street Sweeper,64,2005,Red,3 +Traffic,Street Sweeper,64,2005,Reddish Brown,1 +Traffic,Street Sweeper,64,2005,Trans-Black,1 +Traffic,Street Sweeper,64,2005,Trans-Orange,1 +Traffic,Street Sweeper,64,2005,Trans-Red,1 +Traffic,Street Sweeper,64,2005,Yellow,14 +Traffic,Big Rig,550,2007,Black,36 +Traffic,Big Rig,550,2007,Blue,2 +Traffic,Big Rig,550,2007,Dark Bluish Gray,24 +Traffic,Big Rig,550,2007,Light Bluish Gray,33 +Traffic,Big Rig,550,2007,Metallic Silver,3 +Traffic,Big Rig,550,2007,Red,37 +Traffic,Big Rig,550,2007,Tan,7 +Traffic,Big Rig,550,2007,Trans-Clear,2 +Traffic,Big Rig,550,2007,Trans-Red,1 +Traffic,Big Rig,550,2007,Trans-Yellow,1 +Traffic,Big Rig,550,2007,White,3 +Traffic,Big Rig,550,2007,Yellow,4 +Traffic,Jeep,38,2009,Black,4 +Traffic,Jeep,38,2009,Dark Bluish Gray,4 +Traffic,Jeep,38,2009,Light Bluish Gray,1 +Traffic,Jeep,38,2009,Red,6 +Traffic,Jeep,38,2009,Trans-Black,1 +Traffic,Jeep,38,2009,Trans-Clear,1 +Traffic,Jeep,38,2009,Trans-Red,1 +Traffic,Turbo Quad,186,2014,Black,16 +Traffic,Turbo Quad,186,2014,Blue,2 +Traffic,Turbo Quad,186,2014,Dark Bluish Gray,15 +Traffic,Turbo Quad,186,2014,Light Bluish Gray,24 +Traffic,Turbo Quad,186,2014,Red,4 +Traffic,Turbo Quad,186,2014,Trans-Clear,2 +Traffic,Turbo Quad,186,2014,Trans-Red,1 +Traffic,Turbo Quad,186,2014,White,4 +Traffic,Turbo Quad,186,2014,Yellow,11 +Traffic,Cherry Picker,155,2015,Black,16 +Traffic,Cherry Picker,155,2015,Blue,2 +Traffic,Cherry Picker,155,2015,Dark Bluish Gray,3 +Traffic,Cherry Picker,155,2015,Light Bluish Gray,12 +Traffic,Cherry Picker,155,2015,Red,5 +Traffic,Cherry Picker,155,2015,Tan,1 +Traffic,Cherry Picker,155,2015,Trans-Clear,1 +Traffic,Cherry Picker,155,2015,Trans-Orange,2 +Traffic,Cherry Picker,155,2015,Trans-Red,1 +Traffic,Cherry Picker,155,2015,White,3 +Traffic,Cherry Picker,155,2015,Yellow,8 +Traffic,Off-Road,43,2015,Black,3 +Traffic,Off-Road,43,2015,Dark Bluish Gray,3 +Traffic,Off-Road,43,2015,Light Bluish Gray,4 +Traffic,Off-Road,43,2015,Trans-Black,1 +Traffic,Off-Road,43,2015,Trans-Clear,1 +Traffic,Off-Road,43,2015,Trans-Red,1 +Traffic,Off-Road,43,2015,White,1 +Traffic,Off-Road,43,2015,Yellow,8 +Traffic,Pizza Van,249,2017,Trans-Black,3 +Traffic,Pizza Van,249,2017,Tan,2 +Traffic,Pizza Van,249,2017,Reddish Brown,1 +Traffic,Pizza Van,249,2017,Red,4 +Traffic,Pizza Van,249,2017,Lime,4 +Traffic,Pizza Van,249,2017,Flat Silver,1 +Traffic,Pizza Van,249,2017,Light Bluish Gray,19 +Traffic,Pizza Van,249,2017,Green,1 +Traffic,Pizza Van,249,2017,[No Color],1 +Traffic,Pizza Van,249,2017,Black,11 +Traffic,Pizza Van,249,2017,Blue,2 +Traffic,Pizza Van,249,2017,Bright Light Blue,1 +Traffic,Pizza Van,249,2017,Dark Bluish Gray,16 +Traffic,Pizza Van,249,2017,Dark Brown,1 +Traffic,Pizza Van,249,2017,Dark Red,8 +Traffic,Pizza Van,249,2017,Dark Tan,1 +Traffic,Pizza Van,249,2017,Trans-Light Blue,2 +Traffic,Pizza Van,249,2017,Trans-Green,1 +Traffic,Pizza Van,249,2017,Trans-Clear,1 +Traffic,Pizza Van,249,2017,Trans-Orange,1 +Traffic,Pizza Van,249,2017,Trans-Red,2 +Traffic,Pizza Van,249,2017,Trans-Yellow,1 +Traffic,Pizza Van,249,2017,White,10 +Traffic,Pizza Van,249,2017,Yellow,22 +Traffic,ATV Race Team,238,2017,Light Bluish Gray,30 +Traffic,ATV Race Team,238,2017,Red,11 +Traffic,ATV Race Team,238,2017,Reddish Brown,1 +Traffic,ATV Race Team,238,2017,Tan,6 +Traffic,ATV Race Team,238,2017,Trans-Black,3 +Traffic,ATV Race Team,238,2017,Trans-Clear,1 +Traffic,ATV Race Team,238,2017,Trans-Red,2 +Traffic,ATV Race Team,238,2017,Trans-Yellow,2 +Traffic,ATV Race Team,238,2017,White,10 +Traffic,ATV Race Team,238,2017,Yellow,5 +Traffic,ATV Race Team,238,2017,Green,2 +Traffic,ATV Race Team,238,2017,Black,31 +Traffic,ATV Race Team,238,2017,Blue,2 +Traffic,ATV Race Team,238,2017,Dark Blue,1 +Traffic,ATV Race Team,238,2017,Dark Bluish Gray,10 +Traffic,ATV Race Team,238,2017,Dark Orange,1 +Traffic,Buggy,80,2017,Light Bluish Gray,4 +Traffic,Buggy,80,2017,Flat Silver,1 +Traffic,Buggy,80,2017,Dark Bluish Gray,9 +Traffic,Buggy,80,2017,Blue,1 +Traffic,Buggy,80,2017,Black,11 +Traffic,Buggy,80,2017,Yellow,1 +Traffic,Buggy,80,2017,White,8 +Traffic,Buggy,80,2017,Trans-Red,1 +Traffic,Buggy,80,2017,Trans-Clear,1 +Traffic,Buggy,80,2017,Red,8 +Train,Train,253,1964,Black,5 +Train,Train,253,1964,Blue,6 +Train,Train,253,1964,Light Gray,4 +Train,Train,253,1964,Milky White,1 +Train,Train,253,1964,Red,15 +Train,Train,253,1964,Trans-Clear,3 +Train,Train,253,1964,White,4 +Train,12V Western Train with 2 Wagons and Cowboys,287,1976,Black,25 +Train,12V Western Train with 2 Wagons and Cowboys,287,1976,Blue,14 +Train,12V Western Train with 2 Wagons and Cowboys,287,1976,Red,15 +Train,12V Western Train with 2 Wagons and Cowboys,287,1976,White,2 +Train,12V Western Train with 2 Wagons and Cowboys,287,1976,Yellow,16 +Train,Locomotive Traction Tires,8,1977,Black,1 +Train,Locomotive Wheels,8,1977,Black,1 +Train,Rubber Rims for Locomotive Wheels,8,1977,Black,1 +Train,Train Wheels,8,1977,Black,1 +Train,Train Wheels,8,1977,Red,1 +Train,Locomotive Wheels,8,1977,Red,1 +Train,Locomotive Piston Assemblies,6,1977,Yellow,1 +Train,Locomotive Piston Assemblies,6,1977,Black,1 +Train,Locomotive Piston Assemblies,6,1977,Red,1 +Train,Train Motor Plate with Buffers,5,1977,Black,2 +Train,Magnetic Couplings,4,1977,Red,2 +Train,Magnetic Couplings for Railway Car,4,1977,Blue,1 +Train,Magnetic Couplings for Railway Car,4,1977,Red,1 +Train,Magnetic Train Couplers,4,1977,Blue,1 +Train,Magnetic Train Couplers,4,1977,Red,1 +Train,Magnetic Train Couplers with Plates,4,1977,Red,2 +Train,Motor Bushes,4,1977,[No Color],1 +Train,Signal and Direction-Change Switch,4,1977,Red,3 +Train,Train Wagon Wheels in Red,4,1977,Red,1 +Train,4.5V Battery Train Wagon,2,1977,Light Gray,1 +Train,4.5V Battery Train Wagon,2,1977,Red,1 +Train,Battery Tender,2,1977,Blue,1 +Train,Battery Tender,2,1977,Red,1 +Train,Electric Wire,2,1977,Blue,1 +Train,Electric Wire,2,1977,Light Gray,1 +Train,Train Contact Bricks,2,1977,Black,1 +Train,Train Contact Plate with Cables,2,1977,Blue,1 +Train,Train Contact Plate with Cables,2,1977,Light Gray,1 +Train,Wheel Bearings for Locomotives,2,1977,Black,1 +Train,Train Power Pick-Up Blocks,2,1977,Black,1 +Train,Train Sliding Wheel Blocks,2,1977,Black,1 +Train,Train Motor Plate with Coupler,1,1977,Black,1 +Train,Blue Train Doors with Panes,20,2000,Blue,2 +Train,Blue Train Doors with Panes,20,2000,Trans-Clear,1 +Train,Grey Train Doors with Panes,20,2000,Light Gray,2 +Train,Grey Train Doors with Panes,20,2000,Trans-Clear,1 +Train,Train Accessories,15,2000,Black,7 +Train,Light Unit for Train,4,2001,Black,2 +Train,Light Unit for Train,4,2001,Chrome Silver,1 +Train,Light Unit for Train,4,2001,White,1 +Train,Train Connection Wire,1,2003,Dark Gray,1 +Train,Train Station,367,2010,Dark Bluish Gray,15 +Train,Train Station,367,2010,Trans-Red,1 +Train,Train Station,367,2010,Dark Orange,1 +Train,Train Station,367,2010,Green,1 +Train,Train Station,367,2010,Light Bluish Gray,20 +Train,Train Station,367,2010,Red,15 +Train,Train Station,367,2010,Reddish Brown,5 +Train,Train Station,367,2010,Tan,1 +Train,Train Station,367,2010,Trans-Clear,5 +Train,Train Station,367,2010,Trans-Green,2 +Train,Train Station,367,2010,Black,9 +Train,Train Station,367,2010,Blue,4 +Train,Train Station,367,2010,Dark Blue,1 +Train,Train Station,367,2010,Trans-Yellow,2 +Train,Train Station,367,2010,White,20 +Train,Train Station,367,2010,Yellow,17 +Train,Level Crossing,138,2010,Light Bluish Gray,5 +Train,Level Crossing,138,2010,Trans-Black,1 +Train,Level Crossing,138,2010,Trans-Orange,1 +Train,Level Crossing,138,2010,Trans-Red,2 +Train,Level Crossing,138,2010,White,5 +Train,Level Crossing,138,2010,Yellow,17 +Train,Level Crossing,138,2010,Blue,2 +Train,Level Crossing,138,2010,Black,16 +Train,Level Crossing,138,2010,Dark Bluish Gray,13 +Train,Level Crossing,138,2010,Green,2 +Trains,Cargo Train,887,2014,Black,72 +Trains,Cargo Train,887,2014,Blue,25 +Trains,Cargo Train,887,2014,Bright Light Orange,3 +Trains,Cargo Train,887,2014,Chrome Silver,1 +Trains,Cargo Train,887,2014,Dark Blue,1 +Trains,Cargo Train,887,2014,Dark Bluish Gray,40 +Trains,Cargo Train,887,2014,Dark Tan,1 +Trains,Cargo Train,887,2014,Green,18 +Trains,Cargo Train,887,2014,Light Bluish Gray,37 +Trains,Cargo Train,887,2014,Lime,2 +Trains,Cargo Train,887,2014,Olive Green,1 +Trains,Cargo Train,887,2014,Orange,1 +Trains,Cargo Train,887,2014,Red,31 +Trains,Cargo Train,887,2014,Reddish Brown,6 +Trains,Cargo Train,887,2014,Tan,6 +Trains,Cargo Train,887,2014,Trans-Black,1 +Trains,Cargo Train,887,2014,Trans-Clear,2 +Trains,Cargo Train,887,2014,Trans-Light Blue,5 +Trains,Cargo Train,887,2014,Trans-Orange,2 +Trains,Cargo Train,887,2014,Trans-Red,2 +Trains,Cargo Train,887,2014,Trans-Yellow,1 +Trains,Cargo Train,887,2014,White,23 +Trains,Cargo Train,887,2014,Yellow,21 +Trains,High-Speed Passenger Train,608,2014,Black,22 +Trains,High-Speed Passenger Train,608,2014,Blue,4 +Trains,High-Speed Passenger Train,608,2014,Chrome Silver,1 +Trains,High-Speed Passenger Train,608,2014,Dark Blue,2 +Trains,High-Speed Passenger Train,608,2014,Dark Bluish Gray,24 +Trains,High-Speed Passenger Train,608,2014,Dark Orange,1 +Trains,High-Speed Passenger Train,608,2014,Dark Red,1 +Trains,High-Speed Passenger Train,608,2014,Dark Tan,1 +Trains,High-Speed Passenger Train,608,2014,Green,2 +Trains,High-Speed Passenger Train,608,2014,Light Bluish Gray,12 +Trains,High-Speed Passenger Train,608,2014,Orange,2 +Trains,High-Speed Passenger Train,608,2014,Red,9 +Trains,High-Speed Passenger Train,608,2014,Reddish Brown,1 +Trains,High-Speed Passenger Train,608,2014,Tan,3 +Trains,High-Speed Passenger Train,608,2014,Trans-Black,2 +Trains,High-Speed Passenger Train,608,2014,Trans-Clear,3 +Trains,High-Speed Passenger Train,608,2014,Trans-Red,2 +Trains,High-Speed Passenger Train,608,2014,White,20 +Trains,High-Speed Passenger Train,608,2014,Yellow,7 +Trains,Train Station,422,2014,[No Color],1 +Trains,Train Station,422,2014,Black,24 +Trains,Train Station,422,2014,Blue,5 +Trains,Train Station,422,2014,Dark Blue,3 +Trains,Train Station,422,2014,Dark Bluish Gray,28 +Trains,Train Station,422,2014,Dark Brown,1 +Trains,Train Station,422,2014,Dark Orange,2 +Trains,Train Station,422,2014,Dark Red,1 +Trains,Train Station,422,2014,Dark Tan,2 +Trains,Train Station,422,2014,Green,2 +Trains,Train Station,422,2014,Light Bluish Gray,15 +Trains,Train Station,422,2014,Medium Azure,1 +Trains,Train Station,422,2014,Orange,1 +Trains,Train Station,422,2014,Red,21 +Trains,Train Station,422,2014,Reddish Brown,1 +Trains,Train Station,422,2014,Sand Blue,1 +Trains,Train Station,422,2014,Tan,11 +Trains,Train Station,422,2014,Trans-Black,3 +Trains,Train Station,422,2014,Trans-Clear,5 +Trains,Train Station,422,2014,Trans-Green,2 +Trains,Train Station,422,2014,Trans-Orange,1 +Trains,Train Station,422,2014,Trans-Red,1 +Trains,Train Station,422,2014,Trans-Yellow,3 +Trains,Train Station,422,2014,White,17 +Trains,Train Station,422,2014,Yellow,20 +Trains,Heavy-Haul Train,982,2015,Black,54 +Trains,Heavy-Haul Train,982,2015,Blue,15 +Trains,Heavy-Haul Train,982,2015,Chrome Silver,1 +Trains,Heavy-Haul Train,982,2015,Dark Azure,1 +Trains,Heavy-Haul Train,982,2015,Dark Blue,1 +Trains,Heavy-Haul Train,982,2015,Dark Bluish Gray,54 +Trains,Heavy-Haul Train,982,2015,Dark Tan,3 +Trains,Heavy-Haul Train,982,2015,Green,7 +Trains,Heavy-Haul Train,982,2015,Light Bluish Gray,59 +Trains,Heavy-Haul Train,982,2015,Lime,1 +Trains,Heavy-Haul Train,982,2015,Olive Green,1 +Trains,Heavy-Haul Train,982,2015,Orange,7 +Trains,Heavy-Haul Train,982,2015,Pearl Dark Gray,1 +Trains,Heavy-Haul Train,982,2015,Red,23 +Trains,Heavy-Haul Train,982,2015,Reddish Brown,15 +Trains,Heavy-Haul Train,982,2015,Tan,7 +Trains,Heavy-Haul Train,982,2015,Trans-Black,4 +Trains,Heavy-Haul Train,982,2015,Trans-Clear,2 +Trains,Heavy-Haul Train,982,2015,Trans-Light Blue,3 +Trains,Heavy-Haul Train,982,2015,Trans-Orange,2 +Trains,Heavy-Haul Train,982,2015,Trans-Red,4 +Trains,Heavy-Haul Train,982,2015,Trans-Yellow,1 +Trains,Heavy-Haul Train,982,2015,White,20 +Trains,Heavy-Haul Train,982,2015,Yellow,33 +Turaga,Nuju,29,2001,White,2 +Turaga,Nuju,29,2001,Black,7 +Turaga,Nuju,29,2001,Light Gray,6 +Turaga,Nuju,29,2001,Trans-Medium Blue,1 +Turaga,Onewa,29,2001,Black,7 +Turaga,Onewa,29,2001,Brown,2 +Turaga,Onewa,29,2001,Light Gray,2 +Turaga,Onewa,29,2001,Tan,4 +Turaga,Onewa,29,2001,Trans-Neon Orange,1 +Turaga,Vakama,28,2001,Trans-Dark Pink,1 +Turaga,Vakama,28,2001,Red,2 +Turaga,Vakama,28,2001,Orange,4 +Turaga,Vakama,28,2001,Light Gray,1 +Turaga,Vakama,28,2001,Black,7 +Turaga,Whenua,28,2001,Trans-Green,1 +Turaga,Whenua,28,2001,Black,10 +Turaga,Whenua,28,2001,Dark Gray,3 +Turaga,Whenua,28,2001,Light Gray,1 +Turaga,Nokama,27,2001,Black,7 +Turaga,Nokama,27,2001,Blue,2 +Turaga,Nokama,27,2001,Light Gray,1 +Turaga,Nokama,27,2001,Medium Blue,4 +Turaga,Nokama (Kabaya Promotional),27,2001,Black,8 +Turaga,Nokama (Kabaya Promotional),27,2001,Blue,2 +Turaga,Nokama (Kabaya Promotional),27,2001,Light Gray,1 +Turaga,Nokama (Kabaya Promotional),27,2001,Medium Blue,4 +Turaga,Nokama (Kabaya Promotional),27,2001,Trans-Neon Yellow,1 +Turaga,Nokama,27,2001,Trans-Neon Yellow,1 +Turaga,Vakama,26,2001,Trans-Dark Pink,1 +Turaga,Vakama,26,2001,Black,6 +Turaga,Vakama,26,2001,Light Gray,1 +Turaga,Vakama,26,2001,Orange,4 +Turaga,Vakama,26,2001,Red,2 +Turaga,Matau,25,2001,Black,7 +Turaga,Matau,25,2001,Trans-Neon Green,1 +Turaga,Matau,25,2001,Lime,4 +Turaga,Matau,25,2001,Light Gray,1 +Turaga,Matau,25,2001,Green,2 +Turaga,Vakama (bagged),28,2003,Black,7 +Turaga,Vakama (bagged),28,2003,Light Gray,1 +Turaga,Vakama (bagged),28,2003,Orange,4 +Turaga,Vakama (bagged),28,2003,Red,2 +Turaga,Vakama (bagged),28,2003,Trans-Dark Pink,1 +Turaga,Vakama Promotional Set (Woolworth's Exclusive),3,2003,Red,1 +Turaga,Vakama Promotional Set (Woolworth's Exclusive),3,2003,Royal Blue,1 +UFO,Alien Avenger,370,1997,[No Color],2 +UFO,Alien Avenger,370,1997,Black,55 +UFO,Alien Avenger,370,1997,Blue,10 +UFO,Alien Avenger,370,1997,Dark Gray,2 +UFO,Alien Avenger,370,1997,Light Gray,37 +UFO,Alien Avenger,370,1997,Red,13 +UFO,Alien Avenger,370,1997,Trans-Neon Green,10 +UFO,Alien Avenger,370,1997,Trans-Neon Orange,3 +UFO,Interstellar Starfighter,291,1997,Trans-Red,1 +UFO,Interstellar Starfighter,291,1997,Yellow,2 +UFO,Interstellar Starfighter,291,1997,Light Gray,49 +UFO,Interstellar Starfighter,291,1997,Dark Gray,1 +UFO,Interstellar Starfighter,291,1997,[No Color],1 +UFO,Interstellar Starfighter,291,1997,Trans-Neon Orange,2 +UFO,Interstellar Starfighter,291,1997,Trans-Neon Green,8 +UFO,Interstellar Starfighter,291,1997,Trans-Clear,1 +UFO,Interstellar Starfighter,291,1997,Red,22 +UFO,Interstellar Starfighter,291,1997,Black,46 +UFO,Warp Wing Fighter,234,1997,Red,14 +UFO,Warp Wing Fighter,234,1997,Trans-Neon Green,8 +UFO,Warp Wing Fighter,234,1997,Trans-Neon Orange,1 +UFO,Warp Wing Fighter,234,1997,Light Gray,33 +UFO,Warp Wing Fighter,234,1997,Black,43 +UFO,Cyber Saucer,113,1997,Light Gray,10 +UFO,Cyber Saucer,113,1997,[No Color],3 +UFO,Cyber Saucer,113,1997,Blue,1 +UFO,Cyber Saucer,113,1997,Black,21 +UFO,Cyber Saucer,113,1997,Red,8 +UFO,Cyber Saucer,113,1997,Trans-Neon Green,7 +UFO,Cyber Saucer,112,1997,Black,21 +UFO,Cyber Saucer,112,1997,Trans-Neon Green,7 +UFO,Cyber Saucer,112,1997,Red,7 +UFO,Cyber Saucer,112,1997,Light Gray,10 +UFO,Cyber Saucer,112,1997,Blue,1 +UFO,Radon Rover,53,1997,Black,15 +UFO,Radon Rover,53,1997,Blue,1 +UFO,Radon Rover,53,1997,Trans-Neon Green,4 +UFO,Radon Rover,53,1997,Red,3 +UFO,Radon Rover,53,1997,Light Gray,8 +UFO,V-Wing Fighter,40,1997,Light Gray,7 +UFO,V-Wing Fighter,40,1997,Black,11 +UFO,V-Wing Fighter,40,1997,Trans-Neon Green,3 +UFO,V-Wing Fighter,40,1997,Trans-Neon Orange,2 +UFO,V-Wing Fighter,40,1997,Red,4 +UFO,Cyborg Scout,36,1997,Light Gray,12 +UFO,Cyborg Scout,36,1997,Red,3 +UFO,Cyborg Scout,36,1997,Trans-Neon Green,3 +UFO,Cyborg Scout,36,1997,Black,7 +UFO,Cyborg Scout,36,1997,Blue,1 +UFO,Xcyber,36,1997,Black,7 +UFO,Xcyber,36,1997,Blue,1 +UFO,Xcyber,36,1997,Light Gray,12 +UFO,Xcyber,36,1997,Red,3 +UFO,Xcyber,36,1997,Trans-Neon Green,3 +UFO,Cyber Blaster,20,1997,Black,7 +UFO,Cyber Blaster,20,1997,Blue,1 +UFO,Cyber Blaster,20,1997,Light Gray,8 +UFO,Cyber Blaster,20,1997,Trans-Neon Green,1 +UFO,Flyer,15,1997,Trans-Neon Orange,1 +UFO,Flyer,15,1997,Trans-Neon Green,1 +UFO,Flyer,15,1997,Red,2 +UFO,Flyer,15,1997,Light Gray,5 +UFO,Flyer,15,1997,Black,3 +UFO,Cyber Saucer TRU 50 Years Forever Fun Bundle,2,1997,Metallic Gold,1 +UFO,Space Hover,20,1999,Black,7 +UFO,Space Hover,20,1999,Blue,1 +UFO,Space Hover,20,1999,Light Gray,8 +UFO,Space Hover,20,1999,Trans-Neon Green,1 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Black,91 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Blue,4 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Dark Bluish Gray,21 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Dark Red,2 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Light Bluish Gray,37 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Pearl Gold,1 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Red,2 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Trans-Neon Orange,1 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Trans-Orange,1 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Trans-Red,3 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,White,2 +Ultimate Collector Series,The Batmobile Ultimate Collectors' Edition,1045,2006,Yellow,1 +Ultimate Collector Series,R2-D2,2130,2012,Black,17 +Ultimate Collector Series,R2-D2,2130,2012,Blue,24 +Ultimate Collector Series,R2-D2,2130,2012,Dark Blue,18 +Ultimate Collector Series,R2-D2,2130,2012,Dark Bluish Gray,21 +Ultimate Collector Series,R2-D2,2130,2012,Dark Tan,1 +Ultimate Collector Series,R2-D2,2130,2012,Flat Silver,1 +Ultimate Collector Series,R2-D2,2130,2012,Green,8 +Ultimate Collector Series,R2-D2,2130,2012,Light Bluish Gray,72 +Ultimate Collector Series,R2-D2,2130,2012,Orange,1 +Ultimate Collector Series,R2-D2,2130,2012,Pearl Gold,2 +Ultimate Collector Series,R2-D2,2130,2012,Red,15 +Ultimate Collector Series,R2-D2,2130,2012,Reddish Brown,3 +Ultimate Collector Series,R2-D2,2130,2012,Tan,3 +Ultimate Collector Series,R2-D2,2130,2012,Trans-Clear,2 +Ultimate Collector Series,R2-D2,2130,2012,Trans-Green,1 +Ultimate Collector Series,R2-D2,2130,2012,Trans-Light Blue,1 +Ultimate Collector Series,R2-D2,2130,2012,Trans-Red,1 +Ultimate Collector Series,R2-D2,2130,2012,White,75 +Ultimate Collector Series,R2-D2,2130,2012,Yellow,13 +Ultimate Collector Series,The Tumbler,1866,2014,Black,170 +Ultimate Collector Series,The Tumbler,1866,2014,Blue,2 +Ultimate Collector Series,The Tumbler,1866,2014,Dark Bluish Gray,46 +Ultimate Collector Series,The Tumbler,1866,2014,Dark Purple,2 +Ultimate Collector Series,The Tumbler,1866,2014,Dark Tan,1 +Ultimate Collector Series,The Tumbler,1866,2014,Green,1 +Ultimate Collector Series,The Tumbler,1866,2014,Light Bluish Gray,59 +Ultimate Collector Series,The Tumbler,1866,2014,Light Flesh,2 +Ultimate Collector Series,The Tumbler,1866,2014,Orange,1 +Ultimate Collector Series,The Tumbler,1866,2014,Pearl Gold,7 +Ultimate Collector Series,The Tumbler,1866,2014,Red,2 +Ultimate Collector Series,The Tumbler,1866,2014,Reddish Brown,1 +Ultimate Collector Series,The Tumbler,1866,2014,Tan,1 +Ultimate Collector Series,The Tumbler,1866,2014,Trans-Clear,4 +Ultimate Collector Series,The Tumbler,1866,2014,Trans-Light Blue,1 +Ultimate Collector Series,The Tumbler,1866,2014,Trans-Red,1 +Ultimate Collector Series,The Tumbler,1866,2014,Yellow,7 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Yellow,12 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Flat Silver,7 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Black,88 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Blue,3 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Dark Blue,1 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Dark Bluish Gray,63 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Dark Green,2 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Dark Orange,1 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Dark Tan,2 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Light Bluish Gray,64 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Magenta,1 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Orange,1 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Red,7 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Tan,6 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Trans-Bright Green,8 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Trans-Clear,2 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Trans-Green,1 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Trans-Light Blue,17 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Trans-Neon Orange,1 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Trans-Orange,2 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Trans-Red,1 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,Trans-Yellow,1 +Ultra Agents,Ultra Agents Mission HQ,1056,2014,White,14 +Ultra Agents,Hurricane Heist,586,2014,Black,60 +Ultra Agents,Hurricane Heist,586,2014,Blue,3 +Ultra Agents,Hurricane Heist,586,2014,Dark Blue,1 +Ultra Agents,Hurricane Heist,586,2014,Dark Bluish Gray,19 +Ultra Agents,Hurricane Heist,586,2014,Dark Red,2 +Ultra Agents,Hurricane Heist,586,2014,Dark Tan,1 +Ultra Agents,Hurricane Heist,586,2014,Flat Silver,5 +Ultra Agents,Hurricane Heist,586,2014,Green,3 +Ultra Agents,Hurricane Heist,586,2014,Light Bluish Gray,21 +Ultra Agents,Hurricane Heist,586,2014,Magenta,1 +Ultra Agents,Hurricane Heist,586,2014,Olive Green,18 +Ultra Agents,Hurricane Heist,586,2014,Orange,1 +Ultra Agents,Hurricane Heist,586,2014,Pearl Dark Gray,1 +Ultra Agents,Hurricane Heist,586,2014,Red,1 +Ultra Agents,Hurricane Heist,586,2014,Tan,6 +Ultra Agents,Hurricane Heist,586,2014,Trans-Green,4 +Ultra Agents,Hurricane Heist,586,2014,Trans-Light Blue,3 +Ultra Agents,Hurricane Heist,586,2014,Trans-Neon Orange,1 +Ultra Agents,Hurricane Heist,586,2014,Trans-Orange,1 +Ultra Agents,Hurricane Heist,586,2014,Trans-Red,3 +Ultra Agents,Hurricane Heist,586,2014,Trans-Yellow,1 +Ultra Agents,Hurricane Heist,586,2014,White,7 +Ultra Agents,Hurricane Heist,586,2014,Yellow,4 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Blue,3 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Bright Green,1 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Bright Light Orange,9 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Dark Bluish Gray,36 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Flat Silver,3 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Light Bluish Gray,27 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Lime,12 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Trans-Green,1 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Pearl Dark Gray,1 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Pearl Gold,2 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,[No Color],1 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Reddish Brown,2 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Trans-Bright Green,3 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Trans-Clear,3 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Black,36 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Trans-Light Blue,2 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Trans-Neon Green,7 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Trans-Orange,2 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Trans-Red,5 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Trans-Yellow,1 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,White,19 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Yellow,5 +Ultra Agents,Toxikita's Toxic Meltdown,428,2014,Red,4 +Ultra Agents,Infearno Interception,311,2014,White,3 +Ultra Agents,Infearno Interception,311,2014,Yellow,3 +Ultra Agents,Infearno Interception,311,2014,Black,36 +Ultra Agents,Infearno Interception,311,2014,Blue,3 +Ultra Agents,Infearno Interception,311,2014,Dark Bluish Gray,22 +Ultra Agents,Infearno Interception,311,2014,Dark Red,3 +Ultra Agents,Infearno Interception,311,2014,Dark Tan,1 +Ultra Agents,Infearno Interception,311,2014,Flat Silver,7 +Ultra Agents,Infearno Interception,311,2014,Light Bluish Gray,21 +Ultra Agents,Infearno Interception,311,2014,Red,8 +Ultra Agents,Infearno Interception,311,2014,Tan,2 +Ultra Agents,Infearno Interception,311,2014,Trans-Clear,1 +Ultra Agents,Infearno Interception,311,2014,Trans-Light Blue,6 +Ultra Agents,Infearno Interception,311,2014,Trans-Neon Orange,1 +Ultra Agents,Infearno Interception,311,2014,Trans-Orange,6 +Ultra Agents,Infearno Interception,311,2014,Trans-Red,1 +Ultra Agents,Tremor Track Infiltration,240,2014,Trans-Orange,1 +Ultra Agents,Tremor Track Infiltration,240,2014,Trans-Red,2 +Ultra Agents,Tremor Track Infiltration,240,2014,Trans-Yellow,1 +Ultra Agents,Tremor Track Infiltration,240,2014,White,7 +Ultra Agents,Tremor Track Infiltration,240,2014,Yellow,2 +Ultra Agents,Tremor Track Infiltration,240,2014,Dark Tan,8 +Ultra Agents,Tremor Track Infiltration,240,2014,Tan,3 +Ultra Agents,Tremor Track Infiltration,240,2014,Flat Silver,5 +Ultra Agents,Tremor Track Infiltration,240,2014,Light Bluish Gray,17 +Ultra Agents,Tremor Track Infiltration,240,2014,Red,4 +Ultra Agents,Tremor Track Infiltration,240,2014,Black,22 +Ultra Agents,Tremor Track Infiltration,240,2014,Blue,2 +Ultra Agents,Tremor Track Infiltration,240,2014,Dark Bluish Gray,15 +Ultra Agents,Tremor Track Infiltration,240,2014,Trans-Clear,1 +Ultra Agents,Tremor Track Infiltration,240,2014,Trans-Green,1 +Ultra Agents,Tremor Track Infiltration,240,2014,Trans-Light Blue,2 +Ultra Agents,Riverside Raid,88,2014,Dark Orange,1 +Ultra Agents,Riverside Raid,88,2014,Light Bluish Gray,8 +Ultra Agents,Riverside Raid,88,2014,Trans-Bright Green,1 +Ultra Agents,Riverside Raid,88,2014,Trans-Clear,1 +Ultra Agents,Riverside Raid,88,2014,Trans-Light Blue,4 +Ultra Agents,Riverside Raid,88,2014,Trans-Neon Green,1 +Ultra Agents,Riverside Raid,88,2014,Trans-Orange,1 +Ultra Agents,Riverside Raid,88,2014,White,2 +Ultra Agents,Riverside Raid,88,2014,Black,21 +Ultra Agents,Riverside Raid,88,2014,Yellow,1 +Ultra Agents,Riverside Raid,88,2014,Dark Blue,1 +Ultra Agents,Riverside Raid,88,2014,Dark Bluish Gray,6 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,White,50 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Trans-Yellow,3 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Trans-Red,1 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Trans-Orange,5 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Trans-Light Blue,14 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Trans-Green,1 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Trans-Dark Blue,1 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Trans-Clear,1 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Tan,1 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Red,4 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Orange,1 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Blue,7 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Light Bluish Gray,42 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Glow in Dark White,1 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Flat Silver,6 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Dark Tan,2 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Dark Orange,1 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Dark Bluish Gray,50 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Dark Blue,2 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Black,96 +Ultra Agents,Ultra Agents Ocean HQ,1201,2015,Yellow,14 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Dark Brown,1 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Dark Purple,1 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Dark Tan,1 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Flat Silver,3 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Glow in Dark White,1 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Light Bluish Gray,40 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Orange,1 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Pearl Dark Gray,2 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Pearl Gold,1 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Red,5 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Tan,3 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Trans-Green,1 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Trans-Orange,4 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Trans-Purple,7 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Trans-Red,1 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,White,28 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Yellow,8 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Trans-Light Blue,8 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Black,56 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Blue,3 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Dark Azure,1 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Dark Blue,3 +Ultra Agents,UltraCopter vs. AntiMatter,611,2015,Dark Bluish Gray,26 +Ultra Agents,4x4 Agent Patrol,473,2015,Black,44 +Ultra Agents,4x4 Agent Patrol,473,2015,Blue,4 +Ultra Agents,4x4 Agent Patrol,473,2015,Bright Green,1 +Ultra Agents,4x4 Agent Patrol,473,2015,Bright Light Orange,2 +Ultra Agents,4x4 Agent Patrol,473,2015,Dark Blue,2 +Ultra Agents,4x4 Agent Patrol,473,2015,Dark Bluish Gray,29 +Ultra Agents,4x4 Agent Patrol,473,2015,Dark Tan,1 +Ultra Agents,4x4 Agent Patrol,473,2015,Flat Silver,6 +Ultra Agents,4x4 Agent Patrol,473,2015,Light Bluish Gray,15 +Ultra Agents,4x4 Agent Patrol,473,2015,Lime,7 +Ultra Agents,4x4 Agent Patrol,473,2015,Orange,1 +Ultra Agents,4x4 Agent Patrol,473,2015,Pearl Dark Gray,1 +Ultra Agents,4x4 Agent Patrol,473,2015,Red,2 +Ultra Agents,4x4 Agent Patrol,473,2015,Tan,2 +Ultra Agents,4x4 Agent Patrol,473,2015,Trans-Clear,3 +Ultra Agents,4x4 Agent Patrol,473,2015,Trans-Green,1 +Ultra Agents,4x4 Agent Patrol,473,2015,Trans-Light Blue,10 +Ultra Agents,4x4 Agent Patrol,473,2015,Trans-Neon Green,3 +Ultra Agents,4x4 Agent Patrol,473,2015,Trans-Neon Orange,1 +Ultra Agents,4x4 Agent Patrol,473,2015,Trans-Orange,3 +Ultra Agents,4x4 Agent Patrol,473,2015,White,24 +Ultra Agents,4x4 Agent Patrol,473,2015,Yellow,4 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Black,43 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Blue,3 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Dark Blue,11 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Dark Bluish Gray,34 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Dark Purple,3 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Dark Tan,4 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Flat Silver,4 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Glow in Dark White,1 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Light Bluish Gray,27 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Lime,2 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Orange,1 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Pearl Dark Gray,4 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Pearl Gold,1 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Red,4 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Sand Blue,2 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Tan,1 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Trans-Clear,4 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Trans-Green,1 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Trans-Light Blue,5 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Trans-Purple,9 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Trans-Red,2 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Trans-Yellow,1 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,White,13 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Yellow,3 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Medium Azure,1 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Trans-Orange,2 +Ultra Agents,AntiMatter’s Portal Hideout,472,2015,Trans-Neon Orange,1 +Ultra Agents,Drillex Diamond Job,311,2015,Light Bluish Gray,10 +Ultra Agents,Drillex Diamond Job,311,2015,Flat Silver,3 +Ultra Agents,Drillex Diamond Job,311,2015,Dark Tan,3 +Ultra Agents,Drillex Diamond Job,311,2015,Dark Red,1 +Ultra Agents,Drillex Diamond Job,311,2015,Dark Brown,1 +Ultra Agents,Drillex Diamond Job,311,2015,Dark Bluish Gray,24 +Ultra Agents,Drillex Diamond Job,311,2015,Dark Blue,2 +Ultra Agents,Drillex Diamond Job,311,2015,Bright Light Orange,7 +Ultra Agents,Drillex Diamond Job,311,2015,Blue,1 +Ultra Agents,Drillex Diamond Job,311,2015,Black,19 +Ultra Agents,Drillex Diamond Job,311,2015,Pearl Dark Gray,5 +Ultra Agents,Drillex Diamond Job,311,2015,Orange,4 +Ultra Agents,Drillex Diamond Job,311,2015,Red,5 +Ultra Agents,Drillex Diamond Job,311,2015,Tan,4 +Ultra Agents,Drillex Diamond Job,311,2015,Trans-Light Blue,1 +Ultra Agents,Drillex Diamond Job,311,2015,Trans-Orange,1 +Ultra Agents,Drillex Diamond Job,311,2015,Trans-Purple,1 +Ultra Agents,Drillex Diamond Job,311,2015,Trans-Red,6 +Ultra Agents,Drillex Diamond Job,311,2015,Trans-Yellow,1 +Ultra Agents,Drillex Diamond Job,311,2015,White,1 +Ultra Agents,Drillex Diamond Job,311,2015,Yellow,2 +Ultra Agents,Drillex Diamond Job,311,2015,Pearl Gold,2 +Ultra Agents,Invizable Gold Getaway,236,2015,White,14 +Ultra Agents,Invizable Gold Getaway,236,2015,Trans-Light Blue,6 +Ultra Agents,Invizable Gold Getaway,236,2015,Trans-Yellow,2 +Ultra Agents,Invizable Gold Getaway,236,2015,Trans-Orange,5 +Ultra Agents,Invizable Gold Getaway,236,2015,Trans-Neon Orange,1 +Ultra Agents,Invizable Gold Getaway,236,2015,Black,29 +Ultra Agents,Invizable Gold Getaway,236,2015,Dark Blue,2 +Ultra Agents,Invizable Gold Getaway,236,2015,Dark Bluish Gray,14 +Ultra Agents,Invizable Gold Getaway,236,2015,Dark Red,2 +Ultra Agents,Invizable Gold Getaway,236,2015,Dark Tan,1 +Ultra Agents,Invizable Gold Getaway,236,2015,Flat Silver,1 +Ultra Agents,Invizable Gold Getaway,236,2015,Light Bluish Gray,13 +Ultra Agents,Invizable Gold Getaway,236,2015,Medium Azure,1 +Ultra Agents,Invizable Gold Getaway,236,2015,Yellow,1 +Ultra Agents,Invizable Gold Getaway,236,2015,Metallic Gold,1 +Ultra Agents,Invizable Gold Getaway,236,2015,Red,2 +Ultra Agents,Invizable Gold Getaway,236,2015,Tan,4 +Ultra Agents,Invizable Gold Getaway,236,2015,Trans-Black,2 +Ultra Agents,Invizable Gold Getaway,236,2015,Trans-Clear,4 +Ultra Agents,Ultrasonic Showdown,184,2015,Black,31 +Ultra Agents,Ultrasonic Showdown,184,2015,Blue,3 +Ultra Agents,Ultrasonic Showdown,184,2015,Dark Blue,2 +Ultra Agents,Ultrasonic Showdown,184,2015,Dark Bluish Gray,14 +Ultra Agents,Ultrasonic Showdown,184,2015,Dark Brown,1 +Ultra Agents,Ultrasonic Showdown,184,2015,Flat Silver,2 +Ultra Agents,Ultrasonic Showdown,184,2015,Light Bluish Gray,3 +Ultra Agents,Ultrasonic Showdown,184,2015,Pearl Dark Gray,1 +Ultra Agents,Ultrasonic Showdown,184,2015,Pearl Gold,1 +Ultra Agents,Ultrasonic Showdown,184,2015,Red,1 +Ultra Agents,Ultrasonic Showdown,184,2015,Trans-Dark Pink,1 +Ultra Agents,Ultrasonic Showdown,184,2015,Trans-Light Blue,6 +Ultra Agents,Ultrasonic Showdown,184,2015,Trans-Neon Green,1 +Ultra Agents,Ultrasonic Showdown,184,2015,Trans-Orange,2 +Ultra Agents,Ultrasonic Showdown,184,2015,Trans-Red,3 +Ultra Agents,Ultrasonic Showdown,184,2015,White,15 +Ultra Agents,Ultrasonic Showdown,184,2015,Yellow,2 +Ultra Agents,Spyclops Infiltration,108,2015,Bright Light Orange,1 +Ultra Agents,Spyclops Infiltration,108,2015,Dark Blue,2 +Ultra Agents,Spyclops Infiltration,108,2015,Dark Bluish Gray,8 +Ultra Agents,Spyclops Infiltration,108,2015,Dark Brown,1 +Ultra Agents,Spyclops Infiltration,108,2015,Dark Red,3 +Ultra Agents,Spyclops Infiltration,108,2015,Flat Silver,3 +Ultra Agents,Spyclops Infiltration,108,2015,Light Bluish Gray,3 +Ultra Agents,Spyclops Infiltration,108,2015,Pearl Gold,2 +Ultra Agents,Spyclops Infiltration,108,2015,Red,1 +Ultra Agents,Spyclops Infiltration,108,2015,Reddish Brown,1 +Ultra Agents,Spyclops Infiltration,108,2015,Sand Blue,2 +Ultra Agents,Spyclops Infiltration,108,2015,Tan,1 +Ultra Agents,Spyclops Infiltration,108,2015,Trans-Black,1 +Ultra Agents,Spyclops Infiltration,108,2015,Trans-Light Blue,1 +Ultra Agents,Spyclops Infiltration,108,2015,Trans-Neon Green,2 +Ultra Agents,Spyclops Infiltration,108,2015,Trans-Orange,1 +Ultra Agents,Spyclops Infiltration,108,2015,Trans-Red,1 +Ultra Agents,Spyclops Infiltration,108,2015,White,1 +Ultra Agents,Spyclops Infiltration,108,2015,Yellow,2 +Ultra Agents,Spyclops Infiltration,108,2015,Black,11 +Unitron,Monorail Transport Base,571,1994,[No Color],1 +Unitron,Monorail Transport Base,571,1994,Black,88 +Unitron,Monorail Transport Base,571,1994,Blue,14 +Unitron,Monorail Transport Base,571,1994,Dark Gray,3 +Unitron,Monorail Transport Base,571,1994,Light Gray,61 +Unitron,Monorail Transport Base,571,1994,Red,2 +Unitron,Monorail Transport Base,571,1994,Trans-Clear,1 +Unitron,Monorail Transport Base,571,1994,Trans-Dark Blue,6 +Unitron,Monorail Transport Base,571,1994,Trans-Neon Green,4 +Unitron,Monorail Transport Base,571,1994,White,2 +Unitron,Monorail Transport Base,571,1994,Yellow,4 +Unitron,Space Station Zenon,351,1995,Black,60 +Unitron,Space Station Zenon,351,1995,Blue,18 +Unitron,Space Station Zenon,351,1995,Dark Gray,2 +Unitron,Space Station Zenon,351,1995,Light Gray,44 +Unitron,Space Station Zenon,351,1995,Trans-Dark Blue,7 +Unitron,Space Station Zenon,351,1995,Trans-Neon Green,4 +Unitron,Space Station Zenon,351,1995,Yellow,4 +Unitron,Star Hawk II,292,1995,Black,45 +Unitron,Star Hawk II,292,1995,Blue,23 +Unitron,Star Hawk II,292,1995,Dark Gray,1 +Unitron,Star Hawk II,292,1995,Light Gray,22 +Unitron,Star Hawk II,292,1995,Trans-Clear,1 +Unitron,Star Hawk II,292,1995,Trans-Dark Blue,9 +Unitron,Star Hawk II,292,1995,Trans-Neon Green,4 +Unitron,Star Hawk II,292,1995,Yellow,4 +Unitron,Crater Cruiser,183,1995,Black,41 +Unitron,Crater Cruiser,183,1995,Blue,12 +Unitron,Crater Cruiser,183,1995,Dark Gray,1 +Unitron,Crater Cruiser,183,1995,Light Gray,26 +Unitron,Crater Cruiser,183,1995,Trans-Dark Blue,5 +Unitron,Crater Cruiser,183,1995,Trans-Neon Green,4 +Unitron,Crater Cruiser,183,1995,Yellow,4 +Universal Building Set,TECHNIC Universal Set,277,1982,Black,11 +Universal Building Set,TECHNIC Universal Set,277,1982,Light Gray,29 +Universal Building Set,TECHNIC Universal Set,277,1982,Trans-Red,1 +Universal Building Set,TECHNIC Universal Set,277,1982,Trans-Yellow,1 +Universal Building Set,TECHNIC Universal Set,277,1982,Yellow,12 +Universal Building Set,Universal Building Set,141,1982,Black,8 +Universal Building Set,Universal Building Set,141,1982,Blue,8 +Universal Building Set,Universal Building Set,141,1982,Light Gray,25 +Universal Building Set,Universal Building Set,141,1982,Red,16 +Universal Building Set,Universal Building Set,141,1982,Trans-Yellow,1 +Universal Building Set,Basic School Pack - 773 elements with teacher's manual,785,1985,Black,15 +Universal Building Set,Basic School Pack - 773 elements with teacher's manual,785,1985,Blue,24 +Universal Building Set,Basic School Pack - 773 elements with teacher's manual,785,1985,Brown,3 +Universal Building Set,Basic School Pack - 773 elements with teacher's manual,785,1985,Dark Gray,2 +Universal Building Set,Basic School Pack - 773 elements with teacher's manual,785,1985,Green,3 +Universal Building Set,Basic School Pack - 773 elements with teacher's manual,785,1985,Light Gray,1 +Universal Building Set,Basic School Pack - 773 elements with teacher's manual,785,1985,Red,40 +Universal Building Set,Basic School Pack - 773 elements with teacher's manual,785,1985,Trans-Clear,4 +Universal Building Set,Basic School Pack - 773 elements with teacher's manual,785,1985,White,17 +Universal Building Set,Basic School Pack - 773 elements with teacher's manual,785,1985,Yellow,12 +Universal Building Set,House Accessories - 182 elements,196,1985,Black,2 +Universal Building Set,House Accessories - 182 elements,196,1985,Blue,6 +Universal Building Set,House Accessories - 182 elements,196,1985,Green,3 +Universal Building Set,House Accessories - 182 elements,196,1985,Milky White,1 +Universal Building Set,House Accessories - 182 elements,196,1985,Red,11 +Universal Building Set,House Accessories - 182 elements,196,1985,Trans-Clear,2 +Universal Building Set,House Accessories - 182 elements,196,1985,Trans-Dark Blue,1 +Universal Building Set,House Accessories - 182 elements,196,1985,Trans-Yellow,1 +Universal Building Set,House Accessories - 182 elements,196,1985,White,10 +Universal Building Set,House Accessories - 182 elements,196,1985,Yellow,5 +Universal Building Set,Lego Basic Figures - 24 elements,24,1985,[No Color],2 +Universal Building Set,Convertables,275,1996,[No Color],1 +Universal Building Set,Convertables,275,1996,Black,37 +Universal Building Set,Convertables,275,1996,Blue,7 +Universal Building Set,Convertables,275,1996,Dark Gray,5 +Universal Building Set,Convertables,275,1996,Light Gray,31 +Universal Building Set,Convertables,275,1996,Red,14 +Universal Building Set,Convertables,275,1996,Trans-Clear,1 +Universal Building Set,Convertables,275,1996,Trans-Green,1 +Universal Building Set,Convertables,275,1996,Trans-Red,1 +Universal Building Set,Convertables,275,1996,White,2 +Universal Building Set,Convertables,275,1996,Yellow,2 +Universe,LEGO Universe Rocket,56,2010,[No Color],1 +Universe,LEGO Universe Rocket,56,2010,Black,7 +Universe,LEGO Universe Rocket,56,2010,Light Bluish Gray,4 +Universe,LEGO Universe Rocket,56,2010,Orange,4 +Universe,LEGO Universe Rocket,56,2010,Trans-Black,1 +Universe,LEGO Universe Rocket,56,2010,Trans-Orange,1 +Universe,LEGO Universe Rocket,56,2010,White,12 +Vahki,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Black,2 +Vahki,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Dark Bluish Gray,4 +Vahki,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Dark Flesh,6 +Vahki,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Dark Gold,1 +Vahki,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Silver,2 +Vahki,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Light Bluish Gray,2 +Vahki,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Orange,1 +Vahki,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Tan,1 +Vahki,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Trans-Dark Blue,1 +Vahki,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Black,2 +Vahki,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Dark Blue,6 +Vahki,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Dark Bluish Gray,4 +Vahki,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Dark Gold,1 +Vahki,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Silver,1 +Vahki,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Light Bluish Gray,2 +Vahki,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Orange,1 +Vahki,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Pearl Light Gray,1 +Vahki,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Tan,1 +Vahki,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Trans-Neon Orange,1 +Vahki,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Black,2 +Vahki,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Dark Bluish Gray,4 +Vahki,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Dark Gold,1 +Vahki,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Silver,1 +Vahki,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Light Bluish Gray,2 +Vahki,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Orange,1 +Vahki,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Pearl Light Gray,1 +Vahki,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Tan,1 +Vahki,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Trans-Light Blue,1 +Vahki,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,White,6 +Vahki,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Black,2 +Vahki,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Dark Bluish Gray,4 +Vahki,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Dark Red,6 +Vahki,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Dark Gold,1 +Vahki,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Silver,1 +Vahki,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Light Bluish Gray,2 +Vahki,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Orange,1 +Vahki,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Pearl Light Gray,1 +Vahki,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Tan,1 +Vahki,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Trans-Green,1 +Vahki,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Dark Gold,1 +Vahki,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Black,8 +Vahki,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Dark Bluish Gray,4 +Vahki,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Dark Gold,1 +Vahki,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Silver,2 +Vahki,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Light Bluish Gray,2 +Vahki,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Orange,1 +Vahki,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Tan,1 +Vahki,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Trans-Neon Green,1 +Vahki,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Black,2 +Vahki,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Dark Bluish Gray,4 +Vahki,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Dark Green,6 +Vahki,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Flat Silver,2 +Vahki,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Light Bluish Gray,2 +Vahki,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Orange,1 +Vahki,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Tan,1 +Vahki,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,33,2004,Trans-Red,1 +Vahki,Vahki Bordakh,32,2004,Black,2 +Vahki,Vahki Bordakh,32,2004,Dark Blue,6 +Vahki,Vahki Bordakh,32,2004,Dark Bluish Gray,4 +Vahki,Vahki Bordakh,32,2004,Flat Silver,1 +Vahki,Vahki Bordakh,32,2004,Glow In Dark Opaque,1 +Vahki,Vahki Bordakh,32,2004,Light Bluish Gray,2 +Vahki,Vahki Bordakh,32,2004,Pearl Light Gray,1 +Vahki,Vahki Bordakh,32,2004,Tan,1 +Vahki,Vahki Bordakh,32,2004,Trans-Neon Orange,1 +Vahki,Vahki Nuurakh,32,2004,Dark Red,6 +Vahki,Vahki Nuurakh,32,2004,Flat Silver,1 +Vahki,Vahki Nuurakh,32,2004,Glow In Dark Opaque,1 +Vahki,Vahki Nuurakh,32,2004,Light Bluish Gray,2 +Vahki,Vahki Nuurakh,32,2004,Pearl Light Gray,1 +Vahki,Vahki Nuurakh,32,2004,Trans-Green,1 +Vahki,Vahki Keerakh,32,2004,Dark Bluish Gray,4 +Vahki,Vahki Vorzakh,32,2004,Black,2 +Vahki,Vahki Vorzakh,32,2004,Dark Bluish Gray,4 +Vahki,Vahki Vorzakh,32,2004,Dark Green,6 +Vahki,Vahki Vorzakh,32,2004,Flat Silver,2 +Vahki,Vahki Vorzakh,32,2004,Glow In Dark Opaque,1 +Vahki,Vahki Vorzakh,32,2004,Light Bluish Gray,2 +Vahki,Vahki Vorzakh,32,2004,Tan,1 +Vahki,Vahki Vorzakh,32,2004,Trans-Red,1 +Vahki,Vahki Keerakh,32,2004,Flat Silver,1 +Vahki,Vahki Keerakh,32,2004,Glow In Dark Opaque,1 +Vahki,Vahki Keerakh,32,2004,Light Bluish Gray,2 +Vahki,Vahki Rorzakh,32,2004,Glow In Dark Opaque,1 +Vahki,Vahki Keerakh,32,2004,Pearl Light Gray,1 +Vahki,Vahki Keerakh,32,2004,Tan,1 +Vahki,Vahki Keerakh,32,2004,Trans-Light Blue,1 +Vahki,Vahki Keerakh,32,2004,White,6 +Vahki,Vahki Keerakh,32,2004,Black,2 +Vahki,Vahki Zadakh,32,2004,Black,2 +Vahki,Vahki Zadakh,32,2004,Dark Bluish Gray,4 +Vahki,Vahki Zadakh,32,2004,Dark Flesh,6 +Vahki,Vahki Zadakh,32,2004,Flat Silver,2 +Vahki,Vahki Zadakh,32,2004,Glow In Dark Opaque,1 +Vahki,Vahki Zadakh,32,2004,Light Bluish Gray,2 +Vahki,Vahki Zadakh,32,2004,Tan,1 +Vahki,Vahki Zadakh,32,2004,Trans-Dark Blue,1 +Vahki,Vahki Nuurakh,32,2004,Black,2 +Vahki,Vahki Rorzakh,32,2004,Black,8 +Vahki,Vahki Rorzakh,32,2004,Dark Bluish Gray,4 +Vahki,Vahki Rorzakh,32,2004,Flat Silver,2 +Vahki,Vahki Nuurakh,32,2004,Blue,1 +Vahki,Vahki Rorzakh,32,2004,Light Bluish Gray,2 +Vahki,Vahki Rorzakh,32,2004,Tan,1 +Vahki,Vahki Rorzakh,32,2004,Trans-Neon Green,1 +Vahki,Vahki Nuurakh,32,2004,Dark Bluish Gray,4 +Valentine,Heart 2008,92,2008,Red,12 +Valentine,Romantic Valentine Picnic,126,2017,Bright Green,4 +Valentine,Romantic Valentine Picnic,126,2017,Bright Light Blue,1 +Valentine,Romantic Valentine Picnic,126,2017,Bright Light Orange,2 +Valentine,Romantic Valentine Picnic,126,2017,Bright Pink,2 +Valentine,Romantic Valentine Picnic,126,2017,Dark Blue,1 +Valentine,Romantic Valentine Picnic,126,2017,Dark Brown,3 +Valentine,Romantic Valentine Picnic,126,2017,Dark Pink,1 +Valentine,Romantic Valentine Picnic,126,2017,Dark Purple,1 +Valentine,Romantic Valentine Picnic,126,2017,Dark Tan,2 +Valentine,Romantic Valentine Picnic,126,2017,Green,4 +Valentine,Romantic Valentine Picnic,126,2017,Light Bluish Gray,4 +Valentine,Romantic Valentine Picnic,126,2017,Lime,3 +Valentine,Romantic Valentine Picnic,126,2017,Magenta,1 +Valentine,Romantic Valentine Picnic,126,2017,Medium Azure,1 +Valentine,Romantic Valentine Picnic,126,2017,Medium Blue,2 +Valentine,Romantic Valentine Picnic,126,2017,Medium Dark Flesh,3 +Valentine,Romantic Valentine Picnic,126,2017,Orange,2 +Valentine,Romantic Valentine Picnic,126,2017,Red,6 +Valentine,Romantic Valentine Picnic,126,2017,Reddish Brown,11 +Valentine,Romantic Valentine Picnic,126,2017,Tan,5 +Valentine,Romantic Valentine Picnic,126,2017,Trans-Clear,1 +Valentine,Romantic Valentine Picnic,126,2017,Trans-Green,1 +Valentine,Romantic Valentine Picnic,126,2017,Trans-Light Blue,2 +Valentine,Romantic Valentine Picnic,126,2017,White,7 +Valentine,Romantic Valentine Picnic,126,2017,Yellow,3 +Vehicle,Four Car Auto Transport,65,1970,Black,3 +Vehicle,Four Car Auto Transport,65,1970,Blue,1 +Vehicle,Four Car Auto Transport,65,1970,Light Gray,3 +Vehicle,Four Car Auto Transport,65,1970,Red,12 +Vehicle,Four Car Auto Transport,65,1970,Trans-Clear,2 +Vehicle,Four Car Auto Transport,65,1970,White,1 +Vehicle,Mini-Wheel Model Maker No. 1,86,1971,Black,7 +Vehicle,Mini-Wheel Model Maker No. 1,86,1971,Red,7 +Vehicle,Mini-Wheel Model Maker No. 1,86,1971,Trans-Clear,3 +Vehicle,Mini-Wheel Model Maker No. 1,86,1971,White,7 +Vehicle,Mini-Wheel Model Maker No. 1,86,1971,Yellow,7 +Vehicle,Mini-Wheel Model Maker No. 3,65,1971,Black,5 +Vehicle,Mini-Wheel Model Maker No. 3,65,1971,Red,8 +Vehicle,Mini-Wheel Model Maker No. 3,65,1971,Trans-Clear,2 +Vehicle,Mini-Wheel Model Maker No. 3,65,1971,White,3 +Vehicle,Mini-Wheel Model Maker No. 3,65,1971,Yellow,5 +Vehicle,Mini-Wheel Model Maker No. 2,63,1971,Black,2 +Vehicle,Mini-Wheel Model Maker No. 2,63,1971,Red,10 +Vehicle,Mini-Wheel Model Maker No. 2,63,1971,Trans-Clear,2 +Vehicle,Mini-Wheel Model Maker No. 2,63,1971,White,11 +Vehicles,Drop Ship,393,2010,Black,20 +Vehicles,Drop Ship,393,2010,Blue,6 +Vehicles,Drop Ship,393,2010,Dark Bluish Gray,1 +Vehicles,Drop Ship,393,2010,Dark Tan,1 +Vehicles,Drop Ship,393,2010,Flat Silver,6 +Vehicles,Drop Ship,393,2010,Light Bluish Gray,27 +Vehicles,Drop Ship,393,2010,Medium Blue,1 +Vehicles,Drop Ship,393,2010,Pearl Light Gray,2 +Vehicles,Drop Ship,393,2010,Red,4 +Vehicles,Drop Ship,393,2010,Tan,1 +Vehicles,Drop Ship,393,2010,Trans-Medium Blue,1 +Vehicles,Drop Ship,393,2010,Trans-Red,3 +Vehicles,Drop Ship,393,2010,White,1 +Vehicles,Drop Ship,393,2010,Yellow,14 +Vehicles,Furno Bike,165,2010,Black,14 +Vehicles,Furno Bike,165,2010,Blue,2 +Vehicles,Furno Bike,165,2010,Dark Bluish Gray,4 +Vehicles,Furno Bike,165,2010,Flat Silver,4 +Vehicles,Furno Bike,165,2010,Light Bluish Gray,12 +Vehicles,Furno Bike,165,2010,Orange,6 +Vehicles,Furno Bike,165,2010,Red,7 +Vehicles,Furno Bike,165,2010,Trans-Neon Green,2 +Vehicles,Furno Bike,165,2010,Trans-Orange,1 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Metallic Gold,2 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Pearl Light Gray,1 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Red,6 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Reddish Brown,22 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Speckle Black-Silver,5 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Tan,7 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Trans-Green,1 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Trans-Neon Orange,1 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Trans-Red,1 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,White,2 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Yellow,6 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,[No Color],1 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Black,69 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Blue,3 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Dark Blue,2 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Dark Bluish Gray,52 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Dark Green,16 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Dark Red,3 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Dark Tan,1 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Flat Silver,3 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Green,5 +Vikings,Viking Fortress against the Fafnir Dragon,1040,2005,Light Bluish Gray,20 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Light Bluish Gray,22 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Metallic Gold,2 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Red,13 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Reddish Brown,20 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Sand Green,7 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Speckle Black-Silver,3 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Tan,21 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Trans-Dark Blue,1 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Trans-Neon Orange,1 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,White,3 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Yellow,7 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,[No Color],1 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Black,40 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Blue,2 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Copper,1 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Dark Blue,2 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Dark Bluish Gray,23 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Dark Green,18 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Dark Orange,2 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Dark Red,7 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Dark Tan,1 +Vikings,Viking Ship challenges the Midgard Serpent,581,2005,Flat Silver,1 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Tan,6 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,[No Color],1 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Black,23 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Blue,2 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Dark Blue,1 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Flat Silver,2 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Dark Bluish Gray,14 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Dark Red,17 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Dark Tan,1 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Light Bluish Gray,6 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Red,11 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Reddish Brown,9 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Speckle Black-Silver,2 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Trans-Neon Green,1 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Trans-Neon Orange,1 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,White,2 +Vikings,Viking Catapult versus the Nidhogg Dragon,224,2005,Yellow,1 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Speckle Black-Silver,2 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Tan,3 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Trans-Dark Blue,1 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Trans-Neon Orange,1 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,[No Color],1 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Yellow,1 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Dark Green,2 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Black,13 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Bright Light Orange,1 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Dark Blue,3 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Dark Bluish Gray,7 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,White,1 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Flat Silver,1 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Light Bluish Gray,5 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Red,7 +Vikings,Viking Boat against the Wyvern Dragon,111,2005,Reddish Brown,5 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Black,16 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Blue,1 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Dark Blue,1 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Dark Bluish Gray,4 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Dark Flesh,1 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Flat Silver,1 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Light Bluish Gray,4 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Pearl Light Gray,1 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Red,1 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Reddish Brown,1 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Speckle Black-Silver,2 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Trans-Red,1 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,White,1 +Vikings,Viking Warrior challenges the Fenris Wolf,76,2005,Yellow,1 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Dark Blue,14 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Dark Bluish Gray,23 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Light Bluish Gray,19 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Pearl Light Gray,10 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Red,5 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Reddish Brown,19 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Tan,1 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Trans-Neon Orange,1 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Trans-Red,1 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,White,6 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Speckle Black-Silver,1 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,[No Color],1 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Black,28 +Vikings,Viking Double Catapult versus the Armored Ofnir Dragon,486,2006,Blue,1 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Black,23 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Blue,1 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Dark Bluish Gray,16 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Flat Silver,1 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Light Bluish Gray,14 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Metallic Gold,1 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Pearl Light Gray,1 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Red,6 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Reddish Brown,14 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Tan,5 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Trans-Dark Blue,1 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Trans-Neon Green,1 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,White,3 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Yellow,1 +Vikings,Army of Vikings with Heavy Artillery Wagon,270,2006,Trans-Green,1 +Villains,Von Nebula,156,2010,Blue,3 +Villains,Von Nebula,156,2010,Dark Bluish Gray,6 +Villains,Von Nebula,156,2010,Dark Tan,1 +Villains,Von Nebula,156,2010,Flat Silver,2 +Villains,Von Nebula,156,2010,Light Bluish Gray,11 +Villains,Von Nebula,156,2010,Red,1 +Villains,Von Nebula,156,2010,Trans-Neon Orange,1 +Villains,Von Nebula,156,2010,Black,30 +Villains,Rotor,144,2010,Tan,1 +Villains,Rotor,144,2010,Trans-Neon Green,1 +Villains,Rotor,144,2010,Trans-Neon Orange,1 +Villains,Rotor,144,2010,Orange,9 +Villains,Rotor,144,2010,Black,15 +Villains,Rotor,144,2010,Blue,3 +Villains,Rotor,144,2010,Dark Bluish Gray,10 +Villains,Rotor,144,2010,Dark Tan,1 +Villains,Rotor,144,2010,Flat Silver,1 +Villains,Rotor,144,2010,Light Bluish Gray,9 +Villains,Rotor,144,2010,Red,1 +Villains,Meltdown,49,2010,Black,9 +Villains,Meltdown,49,2010,Blue,2 +Villains,Meltdown,49,2010,Dark Bluish Gray,4 +Villains,Meltdown,49,2010,Trans-Red,1 +Villains,Meltdown,49,2010,Yellow,5 +Villains,Meltdown,49,2010,Light Bluish Gray,3 +Villains,Meltdown,49,2010,Red,1 +Villains,Meltdown,49,2010,Lime,1 +Villains,Meltdown,49,2010,Trans-Clear,1 +Villains,Meltdown,49,2010,Trans-Neon Green,1 +Villains,Meltdown,49,2010,Trans-Bright Green,1 +Villains,Thunder,46,2010,Black,8 +Villains,Thunder,46,2010,Blue,1 +Villains,Thunder,46,2010,Dark Bluish Gray,5 +Villains,Thunder,46,2010,Flat Silver,6 +Villains,Thunder,46,2010,Light Bluish Gray,3 +Villains,Thunder,46,2010,Red,1 +Villains,Thunder,46,2010,Trans-Neon Green,1 +Villains,Thunder,46,2010,Trans-Neon Orange,1 +Villains,Thunder,46,2010,Dark Tan,1 +Villains,Xplode,45,2010,Black,8 +Villains,Xplode,45,2010,Blue,1 +Villains,Xplode,45,2010,Dark Bluish Gray,3 +Villains,Xplode,45,2010,Dark Red,2 +Villains,Xplode,45,2010,Light Bluish Gray,2 +Villains,Xplode,45,2010,Red,8 +Villains,Xplode,45,2010,Trans-Neon Green,2 +Villains,Corroder,39,2010,Black,7 +Villains,Corroder,39,2010,Dark Bluish Gray,2 +Villains,Corroder,39,2010,Light Bluish Gray,5 +Villains,Corroder,39,2010,Lime,3 +Villains,Corroder,39,2010,Red,1 +Villains,Corroder,39,2010,Trans-Neon Green,1 +Villains,Corroder,39,2010,Trans-Neon Orange,1 +Villains,Hero Factory Villain Promo,28,2014,Black,7 +Villains,Hero Factory Villain Promo,28,2014,Dark Bluish Gray,1 +Villains,Hero Factory Villain Promo,28,2014,Red,2 +Villains,Hero Factory Villain Promo,28,2014,Tan,1 +Villains,Hero Factory Villain Promo,28,2014,Trans-Light Blue,3 +Visorak,Visorak Boggarak,48,2005,Black,4 +Visorak,Visorak Boggarak,48,2005,Blue,1 +Visorak,Visorak Boggarak,48,2005,Dark Blue,6 +Visorak,Visorak Boggarak,48,2005,Dark Bluish Gray,3 +Visorak,Visorak Boggarak,48,2005,Flat Silver,3 +Visorak,Visorak Boggarak,48,2005,Light Bluish Gray,4 +Visorak,Visorak Boggarak,48,2005,Medium Blue,3 +Visorak,Visorak Boggarak,48,2005,Trans-Neon Orange,1 +Visorak,Visorak Boggarak,48,2005,Yellow,2 +Visorak,Visorak Keelerak,48,2005,Black,4 +Visorak,Visorak Keelerak,48,2005,Blue,1 +Visorak,Visorak Keelerak,48,2005,Dark Bluish Gray,3 +Visorak,Visorak Keelerak,48,2005,Dark Green,6 +Visorak,Visorak Keelerak,48,2005,Flat Silver,3 +Visorak,Visorak Keelerak,48,2005,Light Bluish Gray,4 +Visorak,Visorak Keelerak,48,2005,Lime,3 +Visorak,Visorak Keelerak,48,2005,Trans-Red,1 +Visorak,Visorak Keelerak,48,2005,Yellow,2 +Visorak,Visorak Oohnorak,48,2005,Black,10 +Visorak,Visorak Oohnorak,48,2005,Blue,1 +Visorak,Visorak Oohnorak,48,2005,Bright Light Orange,3 +Visorak,Visorak Oohnorak,48,2005,Dark Bluish Gray,2 +Visorak,Visorak Oohnorak,48,2005,Flat Silver,3 +Visorak,Visorak Oohnorak,48,2005,Light Bluish Gray,4 +Visorak,Visorak Oohnorak,48,2005,Trans-Yellow,1 +Visorak,Visorak Oohnorak,48,2005,Yellow,2 +Visorak,Visorak Roporak,48,2005,Black,4 +Visorak,Visorak Roporak,48,2005,Blue,1 +Visorak,Visorak Roporak,48,2005,Dark Bluish Gray,3 +Visorak,Visorak Roporak,48,2005,Dark Flesh,6 +Visorak,Visorak Roporak,48,2005,Flat Silver,3 +Visorak,Visorak Roporak,48,2005,Light Bluish Gray,4 +Visorak,Visorak Roporak,48,2005,Red,3 +Visorak,Visorak Roporak,48,2005,Trans-Dark Blue,1 +Visorak,Visorak Roporak,48,2005,Yellow,2 +Visorak,Visorak Suukorak,48,2005,Black,4 +Visorak,Visorak Suukorak,48,2005,Blue,4 +Visorak,Visorak Suukorak,48,2005,Dark Bluish Gray,3 +Visorak,Visorak Suukorak,48,2005,Flat Silver,3 +Visorak,Visorak Suukorak,48,2005,Light Bluish Gray,4 +Visorak,Visorak Suukorak,48,2005,Trans-Light Blue,1 +Visorak,Visorak Suukorak,48,2005,White,6 +Visorak,Visorak Suukorak,48,2005,Yellow,2 +Visorak,Visorak Vohtarak,48,2005,Black,4 +Visorak,Visorak Vohtarak,48,2005,Blue,1 +Visorak,Visorak Vohtarak,48,2005,Dark Bluish Gray,3 +Visorak,Visorak Vohtarak,48,2005,Dark Red,6 +Visorak,Visorak Vohtarak,48,2005,Flat Silver,3 +Visorak,Visorak Vohtarak,48,2005,Light Bluish Gray,4 +Visorak,Visorak Vohtarak,48,2005,Orange,3 +Visorak,Visorak Vohtarak,48,2005,Trans-Green,1 +Visorak,Visorak Vohtarak,48,2005,Yellow,2 +Warriors,Karzahni,373,2007,Trans-Neon Orange,1 +Warriors,Karzahni,373,2007,Trans-Neon Green,1 +Warriors,Karzahni,373,2007,Trans-Medium Blue,2 +Warriors,Karzahni,373,2007,Trans-Green,1 +Warriors,Karzahni,373,2007,Black,25 +Warriors,Karzahni,373,2007,Blue,1 +Warriors,Karzahni,373,2007,Dark Blue,3 +Warriors,Karzahni,373,2007,Dark Bluish Gray,11 +Warriors,Karzahni,373,2007,Red,7 +Warriors,Karzahni,373,2007,Dark Green,6 +Warriors,Karzahni,373,2007,Dark Red,4 +Warriors,Karzahni,373,2007,Light Bluish Gray,12 +Warriors,Karzahni,373,2007,Lime,2 +Warriors,Karzahni,373,2007,Pearl Dark Gray,1 +Warriors,Karzahni,373,2007,Pearl Light Gray,18 +Warriors,Karzahni,373,2007,White,3 +Warriors,Karzahni,373,2007,Trans-Red,1 +Warriors,Karzahni,373,2007,Trans-Orange,1 +Warriors,Maxilos and Spinax,256,2007,Trans-Dark Blue,1 +Warriors,Maxilos and Spinax,256,2007,Trans-Neon Orange,1 +Warriors,Maxilos and Spinax,256,2007,Trans-Red,2 +Warriors,Maxilos and Spinax,256,2007,Pearl Dark Gray,4 +Warriors,Maxilos and Spinax,256,2007,Black,11 +Warriors,Maxilos and Spinax,256,2007,Blue,1 +Warriors,Maxilos and Spinax,256,2007,Dark Bluish Gray,17 +Warriors,Maxilos and Spinax,256,2007,Flat Silver,6 +Warriors,Maxilos and Spinax,256,2007,Light Bluish Gray,10 +Warriors,Maxilos and Spinax,256,2007,Pearl Light Gray,9 +Warriors,Maxilos and Spinax,256,2007,Red,11 +Warriors,Gadunka,176,2007,Black,17 +Warriors,Gadunka,176,2007,Blue,5 +Warriors,Gadunka,176,2007,Dark Blue,7 +Warriors,Gadunka,176,2007,Dark Bluish Gray,4 +Warriors,Gadunka,176,2007,Dark Red,1 +Warriors,Gadunka,176,2007,Flat Silver,1 +Warriors,Gadunka,176,2007,Light Bluish Gray,4 +Warriors,Gadunka,176,2007,Pearl Light Gray,6 +Warriors,Gadunka,176,2007,Trans-Dark Blue,1 +Warriors,Gadunka,176,2007,Trans-Neon Green,1 +Warriors,Gadunka,176,2007,Trans-Orange,1 +Warriors,Gadunka,176,2007,Trans-Yellow,1 +Warriors,Gadunka,176,2007,Red,1 +Warriors,Hydraxon,165,2007,Black,23 +Warriors,Hydraxon,165,2007,Blue,1 +Warriors,Hydraxon,165,2007,White,2 +Warriors,Hydraxon,165,2007,Light Bluish Gray,8 +Warriors,Hydraxon,165,2007,Red,2 +Warriors,Hydraxon,165,2007,Pearl Light Gray,11 +Warriors,Hydraxon,165,2007,Trans-Neon Green,1 +Warriors,Hydraxon,165,2007,Pearl Dark Gray,1 +Warriors,Hydraxon,165,2007,Dark Bluish Gray,6 +Warriors,Lesovikk,149,2007,Dark Green,4 +Warriors,Lesovikk,149,2007,Light Bluish Gray,10 +Warriors,Lesovikk,149,2007,Lime,4 +Warriors,Lesovikk,149,2007,Pearl Light Gray,9 +Warriors,Lesovikk,149,2007,Tan,1 +Warriors,Lesovikk,149,2007,Trans-Light Blue,1 +Warriors,Lesovikk,149,2007,Red,4 +Warriors,Lesovikk,149,2007,Trans-Neon Orange,1 +Warriors,Lesovikk,149,2007,Black,14 +Warriors,Lesovikk,149,2007,Blue,1 +Warriors,Lesovikk,149,2007,Dark Bluish Gray,3 +Warriors,Nocturn,114,2007,Black,11 +Warriors,Nocturn,114,2007,Blue,1 +Warriors,Nocturn,114,2007,Dark Blue,1 +Warriors,Nocturn,114,2007,Dark Bluish Gray,2 +Warriors,Nocturn,114,2007,Light Bluish Gray,3 +Warriors,Nocturn,114,2007,Light Gray,1 +Warriors,Nocturn,114,2007,Lime,7 +Warriors,Nocturn,114,2007,Pearl Light Gray,5 +Warriors,Nocturn,114,2007,Red,1 +Warriors,Nocturn,114,2007,Trans-Light Blue,2 +Warriors,Nocturn,114,2007,Trans-Medium Blue,2 +Warriors,Nocturn,114,2007,Trans-Red,1 +Warriors,Nocturn,114,2007,Trans-Yellow,1 +Warriors,Toa Mata Nui,366,2009,Red,1 +Warriors,Toa Mata Nui,366,2009,Trans-Neon Green,1 +Warriors,Toa Mata Nui,366,2009,Yellow,12 +Warriors,Toa Mata Nui,366,2009,Pearl Gold,3 +Warriors,Toa Mata Nui,366,2009,Black,23 +Warriors,Toa Mata Nui,366,2009,Blue,2 +Warriors,Toa Mata Nui,366,2009,Bright Light Orange,6 +Warriors,Toa Mata Nui,366,2009,Dark Bluish Gray,8 +Warriors,Toa Mata Nui,366,2009,Light Bluish Gray,10 +Warriors,Toa Mata Nui,366,2009,Pearl Light Gray,8 +Warriors,Tuma,187,2009,Black,22 +Warriors,Tuma,187,2009,Trans-Neon Orange,1 +Warriors,Tuma,187,2009,Blue,2 +Warriors,Tuma,187,2009,Dark Bluish Gray,9 +Warriors,Tuma,187,2009,Light Bluish Gray,8 +Warriors,Tuma,187,2009,Lime,4 +Warriors,Tuma,187,2009,Pearl Gold,1 +Warriors,Tuma,187,2009,Pearl Light Gray,3 +Warriors,Tuma,187,2009,Red,1 +Warriors,Fero and Skirmix,148,2009,Blue,2 +Warriors,Fero and Skirmix,148,2009,Dark Bluish Gray,11 +Warriors,Fero and Skirmix,148,2009,Red,2 +Warriors,Fero and Skirmix,148,2009,Trans-Neon Green,1 +Warriors,Fero and Skirmix,148,2009,Black,15 +Warriors,Fero and Skirmix,148,2009,Trans-Neon Orange,1 +Warriors,Fero and Skirmix,148,2009,Pearl Gold,1 +Warriors,Fero and Skirmix,148,2009,Pearl Light Gray,6 +Warriors,Fero and Skirmix,148,2009,Dark Red,13 +Warriors,Fero and Skirmix,148,2009,Light Bluish Gray,2 +WeDo,LEGO® Education WeDo Resource Set,326,2009,Black,7 +WeDo,LEGO® Education WeDo Resource Set,326,2009,Blue,2 +WeDo,LEGO® Education WeDo Resource Set,326,2009,Dark Bluish Gray,6 +WeDo,LEGO® Education WeDo Resource Set,326,2009,Light Bluish Gray,10 +WeDo,LEGO® Education WeDo Resource Set,326,2009,Lime,5 +WeDo,LEGO® Education WeDo Resource Set,326,2009,Red,16 +WeDo,LEGO® Education WeDo Resource Set,326,2009,Reddish Brown,1 +WeDo,LEGO® Education WeDo Resource Set,326,2009,Tan,1 +WeDo,LEGO® Education WeDo Resource Set,326,2009,White,11 +WeDo,LEGO® Education WeDo Resource Set,326,2009,Yellow,13 +WeDo,Simple Machines Set,194,2009,Black,7 +WeDo,Simple Machines Set,194,2009,Blue,1 +WeDo,Simple Machines Set,194,2009,Dark Bluish Gray,3 +WeDo,Simple Machines Set,194,2009,Dark Tan,1 +WeDo,Simple Machines Set,194,2009,Green,2 +WeDo,Simple Machines Set,194,2009,Light Bluish Gray,8 +WeDo,Simple Machines Set,194,2009,Light Gray,1 +WeDo,Simple Machines Set,194,2009,Red,7 +WeDo,Simple Machines Set,194,2009,Tan,1 +WeDo,Simple Machines Set,194,2009,White,6 +WeDo,Simple Machines Set,194,2009,Yellow,9 +WeDo,WeDo Robotics Motion Sensor,1,2009,Royal Blue,1 +WeDo,WeDo Robotics Tilt Sensor,1,2009,Royal Blue,1 +WeDo,WeDo Robotics USB Hub,1,2009,Royal Blue,1 +WeDo,WeDo Core Set,279,2016,Trans-Clear,1 +WeDo,WeDo Core Set,279,2016,Trans-Green,1 +WeDo,WeDo Core Set,279,2016,Trans-Light Blue,4 +WeDo,WeDo Core Set,279,2016,Trans-Red,1 +WeDo,WeDo Core Set,279,2016,Trans-Yellow,1 +WeDo,WeDo Core Set,279,2016,White,17 +WeDo,WeDo Core Set,279,2016,Yellow,2 +WeDo,WeDo Core Set,279,2016,[No Color],1 +WeDo,WeDo Core Set,279,2016,Black,19 +WeDo,WeDo Core Set,279,2016,Bright Green,7 +WeDo,WeDo Core Set,279,2016,Bright Light Orange,8 +WeDo,WeDo Core Set,279,2016,Dark Bluish Gray,8 +WeDo,WeDo Core Set,279,2016,Light Bluish Gray,10 +WeDo,WeDo Core Set,279,2016,Lime,11 +WeDo,WeDo Core Set,279,2016,Medium Azure,8 +WeDo,WeDo Core Set,279,2016,Orange,1 +WeDo,WeDo Core Set,279,2016,Red,3 +WeDo,WeDo Core Set,279,2016,Tan,2 +WeDo,WeDo 2.0 Add-On Power Pack,2,2016,Black,1 +WeDo,WeDo 2.0 Add-On Power Pack,2,2016,Light Bluish Gray,1 +WeDo,WeDo 2.0 Medium Motor,1,2016,White,1 +WeDo,WeDo 2.0 Motion Sensor,1,2016,White,1 +WeDo,WeDo 2.0 Smart Hub,1,2016,White,1 +WeDo,WeDo 2.0 Smarthub Rechargeable Battery,1,2016,Light Bluish Gray,1 +WeDo,WeDo 2.0 Tilt Sensor,1,2016,White,1 +Western ,Wild West Accessories,37,1997,Black,8 +Western ,Wild West Accessories,37,1997,Blue,3 +Western ,Wild West Accessories,37,1997,Brown,3 +Western ,Wild West Accessories,37,1997,Chrome Gold,5 +Western ,Wild West Accessories,37,1997,Dark Gray,2 +Western ,Wild West Accessories,37,1997,Green,1 +Western ,Wild West Accessories,37,1997,Light Gray,3 +Western ,Wild West Accessories,37,1997,Tan,2 +Western ,Wild West Accessories,37,1997,White,7 +Western ,Wild West Accessories,48,1999,Black,7 +Western ,Wild West Accessories,48,1999,Blue,2 +Western ,Wild West Accessories,48,1999,Brown,2 +Western ,Wild West Accessories,48,1999,Chrome Gold,5 +Western ,Wild West Accessories,48,1999,Dark Gray,2 +Western ,Wild West Accessories,48,1999,Green,1 +Western ,Wild West Accessories,48,1999,Light Gray,2 +Western ,Wild West Accessories,48,1999,Tan,2 +Western ,Wild West Accessories,48,1999,White,6 +Williams F1,Williams F1 Racer,1483,2002,Black,72 +Williams F1,Williams F1 Racer,1483,2002,Blue,30 +Williams F1,Williams F1 Racer,1483,2002,Dark Gray,4 +Williams F1,Williams F1 Racer,1483,2002,Flat Silver,2 +Williams F1,Williams F1 Racer,1483,2002,Light Gray,38 +Williams F1,Williams F1 Racer,1483,2002,Metallic Silver,3 +Williams F1,Williams F1 Racer,1483,2002,Trans-Clear,2 +Williams F1,Williams F1 Racer,1483,2002,Trans-Light Blue,1 +Williams F1,Williams F1 Racer,1483,2002,Trans-Red,1 +Williams F1,Williams F1 Racer,1483,2002,White,29 +Williams F1,Williams F1 Team Racer 1:27,92,2003,Black,6 +Williams F1,Williams F1 Team Racer 1:27,92,2003,Blue,13 +Williams F1,Williams F1 Team Racer 1:27,92,2003,Dark Gray,5 +Williams F1,Williams F1 Team Racer 1:27,92,2003,Light Gray,3 +Williams F1,Williams F1 Team Racer 1:27,92,2003,Trans-Black,1 +Williams F1,Williams F1 Team Racer 1:27,92,2003,Trans-Red,1 +Williams F1,Williams F1 Team Racer 1:27,92,2003,White,20 +Williams F1,Williams F1 Team Racer 1:27,92,2003,Yellow,1 +Wolfpack,Wolfpack Tower,239,1992,Black,33 +Wolfpack,Wolfpack Tower,239,1992,Blue,1 +Wolfpack,Wolfpack Tower,239,1992,Brown,7 +Wolfpack,Wolfpack Tower,239,1992,Dark Gray,6 +Wolfpack,Wolfpack Tower,239,1992,Glow In Dark Opaque,1 +Wolfpack,Wolfpack Tower,239,1992,Light Gray,27 +Wolfpack,Wolfpack Tower,239,1992,Red,7 +Wolfpack,Wolfpack Tower,239,1992,Trans-Yellow,1 +Wolfpack,Wolfpack Tower,239,1992,White,3 +Wolfpack,Wolfpack Tower,239,1992,Yellow,3 +Wolfpack,Wolfpack Renegades,98,1992,Black,15 +Wolfpack,Wolfpack Renegades,98,1992,Blue,15 +Wolfpack,Wolfpack Renegades,98,1992,Brown,11 +Wolfpack,Wolfpack Renegades,98,1992,Dark Gray,4 +Wolfpack,Wolfpack Renegades,98,1992,Light Gray,3 +Wolfpack,Wolfpack Renegades,98,1992,Red,4 +Wolfpack,Wolfpack Renegades,98,1992,Yellow,4 +Wolfpack,Ghostly Hideout,37,1993,Black,16 +Wolfpack,Ghostly Hideout,37,1993,Brown,2 +Wolfpack,Ghostly Hideout,37,1993,Dark Gray,3 +Wolfpack,Ghostly Hideout,37,1993,Glow In Dark Opaque,1 +Wolfpack,Ghostly Hideout,37,1993,Green,2 +Wolfpack,Ghostly Hideout,37,1993,Light Gray,3 +Wolfpack,Ghostly Hideout,37,1993,Red,1 +Wolfpack,Ghostly Hideout,37,1993,White,3 +Wolfpack,Ghostly Hideout,37,1993,Yellow,1 +World City,Train Engine Shed,670,2003,Black,27 +World City,Train Engine Shed,670,2003,Blue,5 +World City,Train Engine Shed,670,2003,Yellow,7 +World City,Train Engine Shed,670,2003,White,7 +World City,Train Engine Shed,670,2003,Trans-Yellow,2 +World City,Train Engine Shed,670,2003,Trans-Clear,2 +World City,Train Engine Shed,670,2003,Trans-Black,2 +World City,Train Engine Shed,670,2003,Red,26 +World City,Train Engine Shed,670,2003,Orange,1 +World City,Train Engine Shed,670,2003,Light Gray,27 +World City,Train Engine Shed,670,2003,Green,9 +World City,Train Engine Shed,670,2003,Dark Gray,45 +World City,Train Engine Shed,670,2003,Chrome Silver,1 +World City,Train Engine Shed,670,2003,Brown,1 +World City,Cargo Train,546,2003,Dark Gray,47 +World City,Cargo Train,546,2003,Green,16 +World City,Cargo Train,546,2003,Light Gray,14 +World City,Cargo Train,546,2003,Orange,1 +World City,Cargo Train,546,2003,Red,5 +World City,Cargo Train,546,2003,Tan,2 +World City,Cargo Train,546,2003,Trans-Black,4 +World City,Cargo Train,546,2003,Trans-Red,2 +World City,Cargo Train,546,2003,Trans-Yellow,2 +World City,Cargo Train,546,2003,White,5 +World City,Cargo Train,546,2003,Yellow,16 +World City,Cargo Train,546,2003,Brown,1 +World City,Cargo Train,546,2003,[No Color],1 +World City,Cargo Train,546,2003,Black,45 +World City,Cargo Train,546,2003,Blue,2 +World City,Cargo Train,546,2003,Chrome Gold,1 +World City,Grand Central Station,350,2003,Trans-Black,9 +World City,Grand Central Station,350,2003,Trans-Yellow,3 +World City,Grand Central Station,350,2003,White,10 +World City,Grand Central Station,350,2003,Yellow,22 +World City,Grand Central Station,350,2003,Light Gray,29 +World City,Grand Central Station,350,2003,Orange,1 +World City,Grand Central Station,350,2003,Green,3 +World City,Grand Central Station,350,2003,Dark Red,1 +World City,Grand Central Station,350,2003,Dark Gray,16 +World City,Grand Central Station,350,2003,Dark Blue,3 +World City,Grand Central Station,350,2003,Brown,1 +World City,Grand Central Station,350,2003,Blue,6 +World City,Grand Central Station,350,2003,Black,30 +World City,Grand Central Station,350,2003,Red,9 +World City,Grand Central Station,350,2003,Tan,1 +World City,Grand Central Station,350,2003,[No Color],1 +World City,Grand Central Station,350,2003,Trans-Clear,2 +World City,Grand Central Station,350,2003,Trans-Green,1 +World City,Grand Central Station,350,2003,Trans-Red,1 +World City,High Speed Train,335,2003,Trans-Yellow,1 +World City,High Speed Train,335,2003,White,28 +World City,High Speed Train,335,2003,Yellow,3 +World City,High Speed Train,335,2003,Medium Blue,1 +World City,High Speed Train,335,2003,Blue,3 +World City,High Speed Train,335,2003,Brown,1 +World City,High Speed Train,335,2003,Dark Blue,2 +World City,High Speed Train,335,2003,Dark Gray,14 +World City,High Speed Train,335,2003,Dark Red,1 +World City,High Speed Train,335,2003,Green,6 +World City,High Speed Train,335,2003,Light Gray,11 +World City,High Speed Train,335,2003,Black,27 +World City,High Speed Train,335,2003,Red,4 +World City,High Speed Train,335,2003,Trans-Black,5 +World City,High Speed Train,335,2003,Trans-Clear,1 +World City,High Speed Train,335,2003,Trans-Red,2 +World City,Train Level Crossing,326,2003,Black,30 +World City,Train Level Crossing,326,2003,Blue,1 +World City,Train Level Crossing,326,2003,Brown,1 +World City,Train Level Crossing,326,2003,Dark Blue,2 +World City,Train Level Crossing,326,2003,Dark Bluish Gray,2 +World City,Train Level Crossing,326,2003,Dark Gray,21 +World City,Train Level Crossing,326,2003,Dark Red,1 +World City,Train Level Crossing,326,2003,Green,3 +World City,Train Level Crossing,326,2003,Light Gray,25 +World City,Train Level Crossing,326,2003,Orange,1 +World City,Train Level Crossing,326,2003,Red,17 +World City,Train Level Crossing,326,2003,Trans-Black,5 +World City,Train Level Crossing,326,2003,Trans-Green,1 +World City,Train Level Crossing,326,2003,Trans-Red,1 +World City,Train Level Crossing,326,2003,Trans-Yellow,3 +World City,Train Level Crossing,326,2003,White,2 +World City,Train Level Crossing,326,2003,Yellow,13 +World City,Cargo Crane,176,2003,Black,24 +World City,Cargo Crane,176,2003,Blue,1 +World City,Cargo Crane,176,2003,Brown,1 +World City,Cargo Crane,176,2003,Dark Gray,8 +World City,Cargo Crane,176,2003,Green,2 +World City,Cargo Crane,176,2003,Light Gray,14 +World City,Cargo Crane,176,2003,Orange,1 +World City,Cargo Crane,176,2003,Red,1 +World City,Cargo Crane,176,2003,Trans-Black,2 +World City,Cargo Crane,176,2003,Trans-Yellow,2 +World City,Cargo Crane,176,2003,Yellow,20 +World City,Cargo Crane,176,2003,[No Color],1 +World City,Conductor Charlie,6,2003,Dark Blue,2 +World City,Conductor Charlie,6,2003,Yellow,1 +World City,Conductor Charlie,6,2003,White,1 +World City,Conductor Charlie,6,2003,Trans-Green,1 +World City,Conductor Charlie,6,2003,Dark Red,1 +World City,Train Worker Chupa Chups Promotional,4,2003,Blue,1 +World City,Train Worker Chupa Chups Promotional,4,2003,Orange,1 +World City,Train Worker Chupa Chups Promotional,4,2003,Red,1 +World City,Train Worker Chupa Chups Promotional,4,2003,Yellow,1 +World Racers,Desert of Destruction,964,2010,Green,13 +World Racers,Desert of Destruction,964,2010,[No Color],2 +World Racers,Desert of Destruction,964,2010,Black,91 +World Racers,Desert of Destruction,964,2010,Blue,3 +World Racers,Desert of Destruction,964,2010,Dark Bluish Gray,43 +World Racers,Desert of Destruction,964,2010,Light Bluish Gray,35 +World Racers,Desert of Destruction,964,2010,Lime,17 +World Racers,Desert of Destruction,964,2010,Metallic Silver,2 +World Racers,Desert of Destruction,964,2010,Orange,2 +World Racers,Desert of Destruction,964,2010,Pearl Light Gray,5 +World Racers,Desert of Destruction,964,2010,Red,26 +World Racers,Desert of Destruction,964,2010,Tan,9 +World Racers,Desert of Destruction,964,2010,Trans-Black,2 +World Racers,Desert of Destruction,964,2010,Trans-Clear,2 +World Racers,Desert of Destruction,964,2010,Trans-Neon Green,1 +World Racers,Desert of Destruction,964,2010,Trans-Orange,2 +World Racers,Desert of Destruction,964,2010,Trans-Red,1 +World Racers,Desert of Destruction,964,2010,Trans-Yellow,1 +World Racers,Desert of Destruction,964,2010,White,54 +World Racers,Desert of Destruction,964,2010,Yellow,14 +World Racers,Blizzard's Peak,502,2010,[No Color],2 +World Racers,Blizzard's Peak,502,2010,Black,66 +World Racers,Blizzard's Peak,502,2010,Blue,2 +World Racers,Blizzard's Peak,502,2010,Dark Bluish Gray,34 +World Racers,Blizzard's Peak,502,2010,Trans-Green,1 +World Racers,Blizzard's Peak,502,2010,Dark Tan,1 +World Racers,Blizzard's Peak,502,2010,Green,7 +World Racers,Blizzard's Peak,502,2010,Lime,11 +World Racers,Blizzard's Peak,502,2010,Metallic Silver,1 +World Racers,Blizzard's Peak,502,2010,Orange,3 +World Racers,Blizzard's Peak,502,2010,Pearl Light Gray,2 +World Racers,Blizzard's Peak,502,2010,Red,28 +World Racers,Blizzard's Peak,502,2010,Tan,3 +World Racers,Blizzard's Peak,502,2010,Trans-Black,2 +World Racers,Blizzard's Peak,502,2010,Trans-Clear,1 +World Racers,Blizzard's Peak,502,2010,Light Bluish Gray,22 +World Racers,Blizzard's Peak,502,2010,Trans-Red,2 +World Racers,Blizzard's Peak,502,2010,Trans-Yellow,1 +World Racers,Blizzard's Peak,502,2010,White,27 +World Racers,Blizzard's Peak,502,2010,Yellow,10 +World Racers,Gator Swamp,329,2010,[No Color],2 +World Racers,Gator Swamp,329,2010,Black,56 +World Racers,Gator Swamp,329,2010,Blue,3 +World Racers,Gator Swamp,329,2010,Dark Bluish Gray,12 +World Racers,Gator Swamp,329,2010,Dark Green,2 +World Racers,Gator Swamp,329,2010,Dark Tan,1 +World Racers,Gator Swamp,329,2010,Green,1 +World Racers,Gator Swamp,329,2010,Light Bluish Gray,23 +World Racers,Gator Swamp,329,2010,Lime,11 +World Racers,Gator Swamp,329,2010,Metallic Silver,1 +World Racers,Gator Swamp,329,2010,Pearl Gold,1 +World Racers,Gator Swamp,329,2010,Pearl Light Gray,1 +World Racers,Gator Swamp,329,2010,Red,18 +World Racers,Gator Swamp,329,2010,Reddish Brown,2 +World Racers,Gator Swamp,329,2010,Tan,2 +World Racers,Gator Swamp,329,2010,Trans-Neon Orange,1 +World Racers,Gator Swamp,329,2010,Trans-Yellow,1 +World Racers,Gator Swamp,329,2010,White,15 +World Racers,Gator Swamp,329,2010,Yellow,9 +World Racers,Wreckage Road,267,2010,Red,14 +World Racers,Wreckage Road,267,2010,Pearl Light Gray,1 +World Racers,Wreckage Road,267,2010,Lime,8 +World Racers,Wreckage Road,267,2010,Trans-Black,2 +World Racers,Wreckage Road,267,2010,Trans-Clear,1 +World Racers,Wreckage Road,267,2010,Trans-Green,1 +World Racers,Wreckage Road,267,2010,Trans-Red,3 +World Racers,Wreckage Road,267,2010,Trans-Yellow,1 +World Racers,Wreckage Road,267,2010,White,21 +World Racers,Wreckage Road,267,2010,Yellow,1 +World Racers,Wreckage Road,267,2010,Light Bluish Gray,11 +World Racers,Wreckage Road,267,2010,Dark Bluish Gray,13 +World Racers,Wreckage Road,267,2010,Blue,1 +World Racers,Wreckage Road,267,2010,Black,39 +World Racers,Wreckage Road,267,2010,Metallic Silver,1 +World Racers,Jagged Jaws Reef,190,2010,[No Color],1 +World Racers,Jagged Jaws Reef,190,2010,Black,28 +World Racers,Jagged Jaws Reef,190,2010,Blue,4 +World Racers,Jagged Jaws Reef,190,2010,Dark Bluish Gray,12 +World Racers,Jagged Jaws Reef,190,2010,Light Bluish Gray,11 +World Racers,Jagged Jaws Reef,190,2010,Lime,3 +World Racers,Jagged Jaws Reef,190,2010,Metallic Silver,1 +World Racers,Jagged Jaws Reef,190,2010,Pearl Light Gray,3 +World Racers,Jagged Jaws Reef,190,2010,Red,10 +World Racers,Jagged Jaws Reef,190,2010,White,23 +World Racers,Jagged Jaws Reef,190,2010,Yellow,4 +World Racers,Jagged Jaws Reef,190,2010,Trans-Red,2 +World Racers,Snake Canyon,56,2010,Trans-Orange,1 +World Racers,Snake Canyon,56,2010,Trans-Red,1 +World Racers,Snake Canyon,56,2010,White,2 +World Racers,Snake Canyon,56,2010,Yellow,2 +World Racers,Snake Canyon,56,2010,Lime,3 +World Racers,Snake Canyon,56,2010,[No Color],1 +World Racers,Snake Canyon,56,2010,Black,12 +World Racers,Snake Canyon,56,2010,Dark Bluish Gray,6 +World Racers,Snake Canyon,56,2010,Light Bluish Gray,6 +World Racers,Snake Canyon,56,2010,Metallic Silver,1 +World Racers,Snake Canyon,56,2010,Red,4 +World Racers,Snake Canyon,56,2010,Tan,2 +World Racers,World Race Buggy,35,2010,Light Bluish Gray,4 +World Racers,World Race Buggy,35,2010,Dark Bluish Gray,2 +World Racers,World Race Buggy,35,2010,Black,11 +World Racers,World Race Buggy,35,2010,Yellow,1 +World Racers,World Race Buggy,35,2010,Red,5 +World Racers,World Race Powerboat,27,2010,Light Bluish Gray,2 +World Racers,World Race Powerboat,27,2010,Lime,6 +World Racers,World Race Powerboat,27,2010,White,6 +World Racers,World Race Powerboat,27,2010,Yellow,1 +World Racers,World Race Powerboat,27,2010,Dark Bluish Gray,1 +World Racers,World Race Powerboat,27,2010,Black,6 +X-Men,Wolverine's Chopper Showdown,199,2012,Dark Red,7 +X-Men,Wolverine's Chopper Showdown,199,2012,[No Color],1 +X-Men,Wolverine's Chopper Showdown,199,2012,Black,33 +X-Men,Wolverine's Chopper Showdown,199,2012,Bright Light Orange,2 +X-Men,Wolverine's Chopper Showdown,199,2012,Dark Bluish Gray,14 +X-Men,Wolverine's Chopper Showdown,199,2012,Dark Brown,1 +X-Men,Wolverine's Chopper Showdown,199,2012,Dark Purple,1 +X-Men,Wolverine's Chopper Showdown,199,2012,Trans-Red,1 +X-Men,Wolverine's Chopper Showdown,199,2012,Dark Tan,1 +X-Men,Wolverine's Chopper Showdown,199,2012,Flat Silver,1 +X-Men,Wolverine's Chopper Showdown,199,2012,Light Bluish Gray,10 +X-Men,Wolverine's Chopper Showdown,199,2012,Light Flesh,2 +X-Men,Wolverine's Chopper Showdown,199,2012,Metallic Silver,1 +X-Men,Wolverine's Chopper Showdown,199,2012,Red,6 +X-Men,Wolverine's Chopper Showdown,199,2012,Trans-Black,1 +X-Men,Wolverine's Chopper Showdown,199,2012,Trans-Clear,1 +X-Men,Super Heroes Unite - Phoenix Jean Gray - San Diego Comic-Con 2012 Exclusive,5,2012,Green,1 +X-Men,Super Heroes Unite - Phoenix Jean Gray - San Diego Comic-Con 2012 Exclusive,5,2012,Red,2 +X-Men,Super Heroes Unite - Phoenix Jean Gray - San Diego Comic-Con 2012 Exclusive,5,2012,Yellow,1 +X-Men,Super Heroes Unite - Phoenix Jean Gray - San Diego Comic-Con 2012 Exclusive,5,2012,Light Flesh,1 +X-Men,X-Men vs. The Sentinel,335,2014,Black,43 +X-Men,X-Men vs. The Sentinel,335,2014,Blue,11 +X-Men,X-Men vs. The Sentinel,335,2014,Bright Light Orange,3 +X-Men,X-Men vs. The Sentinel,335,2014,Dark Blue,11 +X-Men,X-Men vs. The Sentinel,335,2014,Dark Bluish Gray,25 +X-Men,X-Men vs. The Sentinel,335,2014,Dark Pink,1 +X-Men,X-Men vs. The Sentinel,335,2014,Dark Purple,7 +X-Men,X-Men vs. The Sentinel,335,2014,Flat Silver,2 +X-Men,X-Men vs. The Sentinel,335,2014,Light Bluish Gray,20 +X-Men,X-Men vs. The Sentinel,335,2014,Light Flesh,2 +X-Men,X-Men vs. The Sentinel,335,2014,Magenta,2 +X-Men,X-Men vs. The Sentinel,335,2014,Red,6 +X-Men,X-Men vs. The Sentinel,335,2014,Reddish Brown,1 +X-Men,X-Men vs. The Sentinel,335,2014,Trans-Black,1 +X-Men,X-Men vs. The Sentinel,335,2014,Trans-Clear,1 +X-Men,X-Men vs. The Sentinel,335,2014,Trans-Dark Blue,4 +X-Men,X-Men vs. The Sentinel,335,2014,Trans-Light Blue,1 +X-Men,X-Men vs. The Sentinel,335,2014,Trans-Neon Orange,3 +X-Men,X-Men vs. The Sentinel,335,2014,Trans-Red,2 +X-Men,X-Men vs. The Sentinel,335,2014,White,2 +X-Pod,Robo Pod (Toy Fair Nuernberg Promotion),50,2004,Trans-Clear,1 +X-Pod,Robo Pod (Toy Fair Nuernberg Promotion),50,2004,Tan,4 +X-Pod,Robo Pod (Toy Fair Nuernberg Promotion),50,2004,Red,1 +X-Pod,Robo Pod (Toy Fair Nuernberg Promotion),50,2004,Light Bluish Gray,4 +X-Pod,Robo Pod (Toy Fair Nuernberg Promotion),50,2004,Green,11 +X-Pod,Robo Pod (Toy Fair Nuernberg Promotion),50,2004,Black,4 +X-Pod,Black Robots Pod,50,2004,Light Bluish Gray,8 +X-Pod,Robo Pod,50,2004,Trans-Red,1 +X-Pod,Robo Pod,50,2004,Trans-Clear,1 +X-Pod,Robo Pod,50,2004,Tan,4 +X-Pod,Robo Pod,50,2004,Red,1 +X-Pod,Robo Pod,50,2004,Light Bluish Gray,4 +X-Pod,Robo Pod,50,2004,Green,11 +X-Pod,Robo Pod,50,2004,Black,4 +X-Pod,Black Robots Pod,50,2004,Trans-Neon Orange,1 +X-Pod,Black Robots Pod,50,2004,Trans-Clear,1 +X-Pod,Black Robots Pod,50,2004,Orange,4 +X-Pod,Black Robots Pod,50,2004,Black,11 +X-Pod,Robo Pod (Toy Fair Nuernberg Promotion),50,2004,Trans-Red,1 +X-Pod,Robo Pod (Polybag),47,2004,Trans-Red,1 +X-Pod,Robo Pod (Polybag),47,2004,Tan,4 +X-Pod,Robo Pod (Polybag),47,2004,Red,1 +X-Pod,Robo Pod (Polybag),47,2004,Light Bluish Gray,4 +X-Pod,Robo Pod (Polybag),47,2004,Black,4 +X-Pod,Robo Pod (Polybag),47,2004,Green,9 +X-Pod,Wild Pod,44,2004,Black,3 +X-Pod,Wild Pod,44,2004,Orange,6 +X-Pod,Wild Pod,44,2004,Red,12 +X-Pod,Wild Pod,44,2004,Reddish Brown,2 +X-Pod,Wild Pod,44,2004,Trans-Clear,1 +X-Pod,Wild Pod,44,2004,White,2 +X-Pod,Wild Pod (Toy Fair Nuernberg Promotion),44,2004,Black,3 +X-Pod,Wild Pod (Toy Fair Nuernberg Promotion),44,2004,Red,12 +X-Pod,Wild Pod (Toy Fair Nuernberg Promotion),44,2004,Reddish Brown,2 +X-Pod,Wild Pod (Toy Fair Nuernberg Promotion),44,2004,Trans-Clear,1 +X-Pod,Wild Pod (Toy Fair Nuernberg Promotion),44,2004,White,2 +X-Pod,Wild Pod (Toy Fair Nuernberg Promotion),44,2004,Orange,6 +X-Pod,Wild Pod (polybag),41,2004,Black,3 +X-Pod,Wild Pod (polybag),41,2004,Orange,6 +X-Pod,Wild Pod (polybag),41,2004,Red,10 +X-Pod,Wild Pod (polybag),41,2004,Reddish Brown,2 +X-Pod,Wild Pod (polybag),41,2004,White,2 +X-Pod,Auto Pod,40,2004,Medium Blue,1 +X-Pod,Auto Pod,40,2004,White,2 +X-Pod,Auto Pod,40,2004,Black,1 +X-Pod,Auto Pod,40,2004,Blue,11 +X-Pod,Auto Pod,40,2004,Light Bluish Gray,5 +X-Pod,Auto Pod,40,2004,Trans-Yellow,1 +X-Pod,Auto Pod (Toy Fair Nuernberg Promotion),40,2004,Trans-Red,1 +X-Pod,Auto Pod (Toy Fair Nuernberg Promotion),40,2004,Trans-Yellow,1 +X-Pod,Auto Pod (Toy Fair Nuernberg Promotion),40,2004,White,2 +X-Pod,Auto Pod,40,2004,Trans-Clear,1 +X-Pod,Auto Pod,40,2004,Trans-Light Blue,1 +X-Pod,Auto Pod,40,2004,Trans-Red,1 +X-Pod,Auto Pod (Toy Fair Nuernberg Promotion),40,2004,Trans-Light Blue,1 +X-Pod,Auto Pod (Toy Fair Nuernberg Promotion),40,2004,Trans-Clear,1 +X-Pod,Auto Pod (Toy Fair Nuernberg Promotion),40,2004,Medium Blue,1 +X-Pod,Auto Pod (Toy Fair Nuernberg Promotion),40,2004,Light Bluish Gray,5 +X-Pod,Auto Pod (Toy Fair Nuernberg Promotion),40,2004,Blue,11 +X-Pod,Auto Pod (Toy Fair Nuernberg Promotion),40,2004,Black,1 +X-Pod,Auto Pod (Polybag),37,2004,Black,1 +X-Pod,Auto Pod (Polybag),37,2004,Trans-Yellow,1 +X-Pod,Auto Pod (Polybag),37,2004,Trans-Light Blue,1 +X-Pod,Auto Pod (Polybag),37,2004,Medium Blue,1 +X-Pod,Auto Pod (Polybag),37,2004,Light Bluish Gray,5 +X-Pod,Auto Pod (Polybag),37,2004,Blue,9 +X-Pod,Auto Pod (Polybag),37,2004,White,2 +X-Pod,Auto Pod (Polybag),37,2004,Trans-Red,1 +X-Pod,Aero Pod,36,2004,Dark Bluish Gray,2 +X-Pod,Aero Pod,36,2004,Light Bluish Gray,1 +X-Pod,Aero Pod,36,2004,Trans-Black,1 +X-Pod,Aero Pod,36,2004,Trans-Clear,2 +X-Pod,Aero Pod,36,2004,Trans-Neon Orange,1 +X-Pod,Aero Pod,36,2004,Yellow,16 +X-Pod,Aero Pod (Toy Fair Nuernberg Promotion),36,2004,Black,3 +X-Pod,Aero Pod (Toy Fair Nuernberg Promotion),36,2004,Light Bluish Gray,1 +X-Pod,Aero Pod (Toy Fair Nuernberg Promotion),36,2004,Trans-Black,1 +X-Pod,Aero Pod,36,2004,Black,3 +X-Pod,Aero Pod (Toy Fair Nuernberg Promotion),36,2004,Trans-Clear,2 +X-Pod,Aero Pod (Toy Fair Nuernberg Promotion),36,2004,Trans-Neon Orange,1 +X-Pod,Aero Pod (Toy Fair Nuernberg Promotion),36,2004,Yellow,16 +X-Pod,Aero Pod (Toy Fair Nuernberg Promotion),36,2004,Dark Bluish Gray,2 +X-Pod,Aero Pod (Polybag),33,2004,Black,3 +X-Pod,Aero Pod (Polybag),33,2004,Yellow,14 +X-Pod,Aero Pod (Polybag),33,2004,Trans-Clear,1 +X-Pod,Aero Pod (Polybag),33,2004,Trans-Neon Orange,1 +X-Pod,Aero Pod (Polybag),33,2004,Trans-Black,1 +X-Pod,Aero Pod (Polybag),33,2004,Light Bluish Gray,1 +X-Pod,Aero Pod (Polybag),33,2004,Dark Bluish Gray,2 +X-Pod,X-Pod Play Off Game Pack,7,2004,Unknown,2 +X-Pod,Arachno Pod,57,2005,Black,8 +X-Pod,Arachno Pod,57,2005,Dark Bluish Gray,6 +X-Pod,Arachno Pod,57,2005,Light Bluish Gray,3 +X-Pod,Arachno Pod,57,2005,Orange,6 +X-Pod,Arachno Pod,57,2005,Red,7 +X-Pod,Arachno Pod,57,2005,Trans-Orange,2 +X-Pod,Arachno Pod,57,2005,White,1 +X-Pod,Aqua Pod,56,2005,Trans-Medium Blue,1 +X-Pod,Aqua Pod,56,2005,White,1 +X-Pod,Aqua Pod,56,2005,Black,1 +X-Pod,Aqua Pod,56,2005,Blue,13 +X-Pod,Aqua Pod,56,2005,Glow In Dark Opaque,1 +X-Pod,Aqua Pod,56,2005,Light Bluish Gray,3 +X-Pod,Aqua Pod,56,2005,Medium Blue,9 +X-Pod,Aqua Pod,56,2005,Red,1 +X-Pod,Aqua Pod,56,2005,Trans-Dark Blue,1 +X-Pod,Dragon Pod,52,2005,Green,13 +X-Pod,Dragon Pod,52,2005,Light Bluish Gray,1 +X-Pod,Dragon Pod,52,2005,Lime,8 +X-Pod,Dragon Pod,52,2005,Medium Lime,1 +X-Pod,Dragon Pod,52,2005,Tan,1 +X-Pod,Dragon Pod,52,2005,Trans-Green,1 +X-Pod,Dragon Pod,52,2005,Trans-Neon Green,1 +X-Pod,Dragon Pod,52,2005,Trans-Neon Orange,1 +X-Pod,Dragon Pod,52,2005,Trans-Red,1 +X-Pod,Dragon Pod,52,2005,White,1 +X-Pod,Monster Pod,49,2005,Black,3 +X-Pod,Monster Pod,49,2005,Dark Purple,12 +X-Pod,Monster Pod,49,2005,Lime,7 +X-Pod,Monster Pod,49,2005,Tan,1 +X-Pod,Monster Pod,49,2005,Trans-Neon Green,2 +X-Pod,Monster Pod,49,2005,Trans-Purple,1 +X-Pod,Monster Pod,49,2005,White,3 +Xalax,Ice Ramp Racers,112,2001,Dark Gray,1 +Xalax,Ice Ramp Racers,112,2001,Light Gray,4 +Xalax,Ice Ramp Racers,112,2001,Medium Blue,10 +Xalax,Ice Ramp Racers,112,2001,Orange,2 +Xalax,Ice Ramp Racers,112,2001,Pearl Light Gray,1 +Xalax,Ice Ramp Racers,112,2001,Trans-Dark Blue,1 +Xalax,Ice Ramp Racers,112,2001,Trans-Light Blue,3 +Xalax,Ice Ramp Racers,112,2001,Trans-Neon Green,1 +Xalax,Ice Ramp Racers,112,2001,Trans-Neon Orange,1 +Xalax,Ice Ramp Racers,112,2001,White,13 +Xalax,Ice Ramp Racers,112,2001,Black,5 +Xalax,Ice Ramp Racers,112,2001,Blue,5 +Xalax,Ice Ramp Racers,112,2001,Chrome Silver,1 +Xalax,Warrior,8,2001,Black,2 +Xalax,Warrior,8,2001,Dark Gray,1 +Xalax,Warrior,8,2001,Purple,2 +Xalax,Warrior,8,2001,Red,2 +Xalax,Gear,7,2001,Sand Purple,2 +Xalax,Gear,7,2001,Violet,2 +Xalax,Ghost,7,2001,Black,1 +Xalax,Ghost,7,2001,Glow In Dark Opaque,1 +Xalax,Ghost,7,2001,Medium Orange,2 +Xalax,Ghost,7,2001,Orange,2 +Xalax,Lightor,7,2001,Black,1 +Xalax,Lightor,7,2001,Orange,2 +Xalax,Lightor,7,2001,Red,1 +Xalax,Lightor,7,2001,Yellow,2 +Xalax,Loopin,7,2001,Black,1 +Xalax,Loopin,7,2001,Dark Turquoise,4 +Xalax,Loopin,7,2001,Purple,1 +Xalax,Pulse,7,2001,Black,1 +Xalax,Pulse,7,2001,Purple,2 +Xalax,Pulse,7,2001,Violet,2 +Xalax,Pulse,7,2001,Yellow,1 +Xalax,Rip,7,2001,Black,1 +Xalax,Rip,7,2001,Dark Blue,4 +Xalax,Rip,7,2001,Red,1 +Xalax,Scratch,7,2001,Black,1 +Xalax,Scratch,7,2001,Bright Green,1 +Xalax,Scratch,7,2001,Green,3 +Xalax,Scratch,7,2001,Orange,1 +Xalax,Shredd,7,2001,Black,1 +Xalax,Shredd,7,2001,Blue,1 +Xalax,Shredd,7,2001,Dark Gray,4 +Xalax,Snake,7,2001,Black,3 +Xalax,Snake,7,2001,Green,1 +Xalax,Snake,7,2001,Medium Lime,2 +Xalax,Spiky,7,2001,Black,5 +Xalax,Spiky,7,2001,Orange,1 +Xalax,Surfer,7,2001,Black,1 +Xalax,Surfer,7,2001,Blue,4 +Xalax,Surfer,7,2001,Dark Gray,1 +Xalax,Duster,7,2001,Black,2 +Xalax,Duster,7,2001,Tan,4 +Xalax,Gear,7,2001,Black,1 +Xalax,Gear,7,2001,Purple,1 +Xalax,Subzero,4,2001,White,1 +Xalax,Subzero,4,2001,Medium Blue,2 +Xalax,Subzero,4,2001,Red,1 +Xalax,racer polybag,1,2001,Red,1 +Znap,Heli-Transport (Rota-Beast),265,1998,Green,9 +Znap,Heli-Transport (Rota-Beast),265,1998,Dark Gray,2 +Znap,Heli-Transport (Rota-Beast),265,1998,Blue,2 +Znap,Heli-Transport (Rota-Beast),265,1998,Black,11 +Znap,Heli-Transport (Rota-Beast),265,1998,Yellow,10 +Znap,Heli-Transport (Rota-Beast),265,1998,Light Gray,6 +Znap,Heli-Transport (Rota-Beast),265,1998,Purple,1 +Znap,Heli-Transport (Rota-Beast),265,1998,White,2 +Znap,Formula Z Car in Storage Case,172,1998,Yellow,1 +Znap,Formula Z Car in Storage Case,172,1998,White,1 +Znap,Formula Z Car in Storage Case,172,1998,Red,8 +Znap,Formula Z Car in Storage Case,172,1998,Purple,1 +Znap,Formula Z Car in Storage Case,172,1998,Light Gray,1 +Znap,Formula Z Car in Storage Case,172,1998,Dark Gray,2 +Znap,Formula Z Car in Storage Case,172,1998,Black,8 +Znap,Blackmobile with motor,143,1998,Black,9 +Znap,Blackmobile with motor,143,1998,Dark Gray,2 +Znap,Blackmobile with motor,143,1998,Light Gray,6 +Znap,Blackmobile with motor,143,1998,White,2 +Znap,Blackmobile with motor,143,1998,Yellow,7 +Znap,Blackmobile with motor,143,1998,Purple,1 +Znap,Hover Sub with motor,126,1998,Green,9 +Znap,Hover Sub with motor,126,1998,Black,10 +Znap,Hover Sub with motor,126,1998,Dark Gray,2 +Znap,Hover Sub with motor,126,1998,Light Gray,8 +Znap,Hover Sub with motor,126,1998,Purple,1 +Znap,Hover Sub with motor,126,1998,White,3 +Znap,Dino-Jet,80,1998,Black,9 +Znap,Dino-Jet,80,1998,White,1 +Znap,Dino-Jet,80,1998,Red,6 +Znap,Dino-Jet,80,1998,Purple,1 +Znap,Dino-Jet,80,1998,Light Gray,2 +Znap,Dino-Jet,80,1998,Dark Gray,2 +Znap,Dino-Jet,80,1998,Yellow,1 +Znap,Hook-Truck,30,1998,Yellow,5 +Znap,Hook-Truck,30,1998,Dark Gray,1 +Znap,Hook-Truck,30,1998,Light Gray,2 +Znap,Hook-Truck,30,1998,Purple,1 +Znap,Hook-Truck,30,1998,Black,1 +Znap,Tri-Bike,29,1998,Light Gray,1 +Znap,Tri-Bike,29,1998,Green,4 +Znap,Tri-Bike,29,1998,Dark Gray,1 +Znap,Tri-Bike,29,1998,Black,4 +Znap,Tri-Bike,29,1998,Purple,1 +Znap,Tri-Bike,29,1998,White,2 +Znap,Jet-Ski,27,1998,Light Gray,1 +Znap,Jet-Ski,27,1998,Black,2 +Znap,Jet-Ski,27,1998,Dark Gray,1 +Znap,Jet-Ski,27,1998,Purple,1 +Znap,Jet-Ski,27,1998,Yellow,5 +Znap,Jet-Car,26,1998,Dark Gray,1 +Znap,Jet-Car,26,1998,Yellow,2 +Znap,Jet-Car,26,1998,Light Gray,2 +Znap,Jet-Car,26,1998,Purple,1 +Znap,Jet-Car,26,1998,Black,2 +Znap,Polybag,25,1998,Black,1 +Znap,Polybag,25,1998,Dark Gray,1 +Znap,Polybag,25,1998,Light Gray,2 +Znap,Polybag,25,1998,Purple,1 +Znap,Polybag,25,1998,Red,3 +Znap,Bi-Wing,24,1998,Light Gray,1 +Znap,Bi-Wing,24,1998,Purple,1 +Znap,Bi-Wing,24,1998,Yellow,1 +Znap,Bi-Wing,24,1998,Black,3 +Znap,Bi-Wing,24,1998,Green,4 +Znap,Mini-Sonic,22,1998,Light Gray,1 +Znap,Mini-Sonic,22,1998,Purple,1 +Znap,Mini-Sonic,22,1998,Red,5 +Znap,Mini-Sonic,22,1998,Black,3 +Znap,Jeep,262,1999,Yellow,6 +Znap,Jeep,262,1999,Black,9 +Znap,Jeep,262,1999,Blue,2 +Znap,Jeep,262,1999,Dark Gray,2 +Znap,Jeep,262,1999,Green,8 +Znap,Jeep,262,1999,Light Gray,5 +Znap,Jeep,262,1999,Red,5 +Znap,Jeep,262,1999,White,2 +Znap,Ant,258,1999,Red,7 +Znap,Ant,258,1999,Black,11 +Znap,Ant,258,1999,Blue,2 +Znap,Ant,258,1999,Dark Gray,3 +Znap,Ant,258,1999,Light Gray,8 +Znap,Ant,258,1999,Purple,1 +Znap,Ant,258,1999,White,2 +Znap,Ant,258,1999,Yellow,7 +Znap,Helicopter,79,1999,Black,8 +Znap,Helicopter,79,1999,Dark Gray,2 +Znap,Helicopter,79,1999,Light Gray,1 +Znap,Helicopter,79,1999,White,2 +Znap,Helicopter,79,1999,Yellow,7 +Znap,Helicopter,79,1999,Purple,1 +Znap,Forklift,39,1999,Purple,1 +Znap,Forklift,39,1999,White,2 +Znap,Forklift,39,1999,Yellow,4 +Znap,Forklift,39,1999,Black,5 +Znap,Forklift,39,1999,Dark Gray,3 +Znap,Forklift,39,1999,Light Gray,1 +Znap,Racer,35,1999,Black,4 +Znap,Racer,35,1999,Light Gray,2 +Znap,Racer,35,1999,Purple,1 +Znap,Racer,35,1999,Red,3 +Znap,Racer,35,1999,White,2 +Znap,Motorbike,26,1999,Black,4 +Znap,Motorbike,26,1999,Light Gray,2 +Znap,Motorbike,26,1999,Purple,1 +Znap,Motorbike,26,1999,Red,3 +Znap,Motorbike,26,1999,White,1 +Znap,Aeroplane,23,1999,Yellow,1 +Znap,Aeroplane,23,1999,Green,3 +Znap,Aeroplane,23,1999,Black,3 +Znap,Aeroplane,23,1999,Light Gray,1 +Znap,Aeroplane,23,1999,Purple,1 diff --git a/main.py b/main.py new file mode 100644 index 0000000..3821cc5 --- /dev/null +++ b/main.py @@ -0,0 +1,18 @@ +import pandas as pd +import numpy as np +from IPython.display import display + +#Importing the datainto data frames +colors = pd.read_csv("C:/Users/dusan/Documents/GitHub/project-2-eda-sql/colors.csv") +inventories = pd.read_csv("C:/Users/dusan/Documents/GitHub/project-2-eda-sql/inventories.csv") +inventory_parts = pd.read_csv("C:/Users/dusan/Documents/GitHub/project-2-eda-sql/inventory_parts.csv") +inventory_sets = pd.read_csv("C:/Users/dusan/Documents/GitHub/project-2-eda-sql/inventory_sets.csv") +part_categories = pd.read_csv("C:/Users/dusan/Documents/GitHub/project-2-eda-sql/part_categories.csv") +parts = pd.read_csv("C:/Users/dusan/Documents/GitHub/project-2-eda-sql/parts.csv") +sets = pd.read_csv("C:/Users/dusan/Documents/GitHub/project-2-eda-sql/sets.csv") +themes = pd.read_csv("C:/Users/dusan/Documents/GitHub/project-2-eda-sql/themes.csv") + + +# Understanding the data + +print(colors.head()) \ No newline at end of file diff --git a/part_categories.csv b/part_categories.csv new file mode 100644 index 0000000..3886ebf --- /dev/null +++ b/part_categories.csv @@ -0,0 +1,58 @@ +id,name +1,Baseplates +2,Bricks Printed +3,Bricks Sloped +4,"Duplo, Quatro and Primo" +5,Bricks Special +6,Bricks Wedged +7,Containers +8,Technic Bricks +9,Plates Special +10,Tiles Printed +11,Bricks +12,Technic Connectors +13,Minifigs +14,Plates +15,Tiles Special +16,Windows and Doors +17,Non-LEGO +18,"Hinges, Arms and Turntables" +19,Tiles +20,Bricks Round and Cones +21,Plates Round and Dishes +22,Pneumatics +23,Panels +24,Other +25,"Technic Steering, Suspension and Engine" +26,Technic Special +27,Minifig Accessories +28,Plants and Animals +29,Wheels and Tyres +30,Tubes and Hoses +31,"String, Bands and Reels" +32,"Bars, Ladders and Fences" +33,Rock +34,"Supports, Girders and Cranes" +35,Transportation - Sea and Air +36,Transportation - Land +37,Bricks Curved +38,"Flags, Signs, Plastics and Cloth" +39,Magnets and Holders +40,Technic Panels +41,"Bionicle, Hero Factory and Constraction" +42,"Belville, Scala and Fabuland" +43,Znap +44,Mechanical +45,"Power Functions, Mindstorms and Electric" +46,Technic Axles +47,Windscreens and Fuselage +48,Clikits +49,Plates Angled +50,HO Scale +51,Technic Beams +52,Technic Gears +53,Technic Pins +54,Technic Bushes +55,Technic Beams Special +56,Tools +57,"Non-Buildable Figures (Duplo, Fabuland, etc)" diff --git a/parts.csv b/parts.csv new file mode 100644 index 0000000..250d657 --- /dev/null +++ b/parts.csv @@ -0,0 +1,25994 @@ +part_num,name,part_cat_id +0687b1,Set 0687 Activity Booklet 1,17 +0901,Baseplate 16 x 30 with Set 080 Yellow House Print,1 +0902,Baseplate 16 x 24 with Set 080 Small White House Print,1 +0903,Baseplate 16 x 24 with Set 080 Red House Print,1 +0904,Baseplate 16 x 24 with Set 080 Large White House Print,1 +1,Homemaker Bookcase 2 x 4 x 4,7 +10,Baseplate 24 x 32,1 +10016414,Sticker Sheet #1 for 41055-1,17 +10019stk01,Sticker for Set 10019 - (43274/4170393),17 +10026stk01,Sticker for Set 10026 - (44942/4184185),17 +10029stk01,Sticker for Set 10029 - (4216816),17 +10036stk01,Sticker for Set 10036 - (821407),17 +10039,Pullback Motor 8 x 4 x 2/3,44 +10048,Minifig Hair Tousled,13 +10049,Minifig Shield Broad with Spiked Bottom and Cutout Corner,27 +10049pr0001,Minifig Shield Broad with Spiked Bottom and Cutout Corner with Handprint Print,27 +10050,Minifig Sword [Uruk-hai],27 +10051,Minifig Helmet Castle with Lateral Comb [Uruk-hai],27 +10051pr01,Minifig Helmet Castle with Lateral Comb and Handprint Print,27 +10052,"Minifig Beard, Rounded End [Gandalf]",27 +10053,Minifig Sword Small,27 +10054,Minifig Helmet - Rohan Style Castle with Cheek Protection and Horsehead Comb,27 +10054pr0001,"Minifig Helmet - Rohan Style with Cheek Protection, Horsehead Comb and Eomer Print",27 +10054pr0002,Minifig Helmet - Rohan Cheek Protection and Theoden Print,27 +10055,Minifig Hair Long Straight with Elf Ears [Plain],27 +10055pr0001,Minifig Hair Long Straight with Light Flesh Elf Ears Print,27 +10056,Minifig Helmet Castle with Cheek Protection [Plain],24 +10056pr0001,Minifig Helmet Castle with Cheek Protection and Dark Red Ornaments Print,27 +10057,Body / Head Gollum,13 +10057pr0001,Body / Head Gollum - Wide Eyes,13 +10057pr0002,Body / Head Gollum - Narrow Eyes,13 +10058,"Arm, Bent [Gollum]",13 +10061,"Arm Goblin King, Left",13 +10062,"Hand Cave Troll, Left",13 +10063,"Arm Goblin King, Right",13 +10064,"Hand Cave Troll, Right",13 +10065,Minifig Beard - Full with Braided Moustache Ends,13 +10066,Minifig Hair Orc [Plain],24 +10066pr0001,Minifig Hair Orc with Dark Tan Ears Print,13 +10066pr0002,Minifig Hair Orc with Olive Green Ears Print,13 +10066pr0003,Minifig Hair Orc with Medium Dark Flesh Ears Print,13 +10075cdb01,"Paper, Cardboard Backdrop for Set 10075 Spider-Man Action Pack",17 +10111,ADULT FIGURE W/HEADSET,4 +10111apr0006,ADULT FIGURE W/HEADSET (Yellow) NO. 6,57 +10113,Minifig Batman Mask with Angular Ears and Pronounced Brow,13 +10113pr0001,"MASK, BATMAN, NO. 1 with Bat Print",27 +10113pr0002,Mask Batman with Crack Print,27 +10119,Duplo Brick 2 x 10 x 2 Arch with Gold Vines with Leaves and 'C' in Shield print,4 +10124,"Arm Giant, Right",13 +10124pr0001,"Arm Giant, Right with Blue Darkseid Print",13 +10126,Hand Hulk - Right,13 +10127,Hand Hulk - Left,13 +10127stk01,"Sticker for Set 10127 - Sheet 1, Primarily Eastern Teams (47852/4210596)",17 +10127stk02,"Sticker for Set 10127 - Sheet 2, Primarily Western Teams (47851/4210595)",17 +10127stk03,"Sticker for Set 10127 - Sheet 3, All 30 Teams and Numbers 1-9 (47853/4210598)",17 +10128,Hulk Body [Plain],24 +10128pr0001,Hulk Body with Dark Tan Pants Print,13 +10128pr0002,Hulk Body with Dark Purple Pants Print,13 +10129stk01,Sticker for Set 10129 - (48074/4214068),17 +10134stk01,Sticker for Set 10134 - (48981/4221407),17 +10144stk01,Sticker for Set 10144 - (53390/4269558),17 +10154,"Arm Giant, Left",13 +10154pr0001,"Arm Giant, Left with Blue Darkseid Print",13 +10159stk01,Sticker for Set 10159 - (4264102),17 +10164,"Minifig Cap, Santa [Plain]",24 +10164pr0001,Minifig Santa Hat with Red Top Print,27 +10165c01,Minifig Helmet Underwater Deep Diver with Trans-Clear Glass,27 +10166,Minifig Hair Short Tousled with Headphones Print [Plain],27 +10166pr0001,Minifig Hair Short Tousled with Silver Headphones Print,27 +10166pr0003,Minifig Hair Short Tousled with Black Headphones Print,27 +10168pb01,Minifig Hat - Cowboy with Star and Medium Dark Flesh Braid Print,27 +10169,Minifig Bag with Handle,27 +10170,Pretzel,27 +10172,Minifig Trophy Cup Small,27 +10173,Minifig Head Cover - Ghost Shroud with Open Mouth,27 +10177,RIGHT MINI FIGURE ROBOT LEG,13 +10178,Rock 1 x 2 Crystal Stepped,33 +10178pr0001a,Rock Stepped with Dark Green Swamp Gas Print,33 +10178pr0001b,MOONSTONE NO 1,33 +10178pr0002,Rock Stepped with Gold Egyptian Eye of Horus Print,33 +10178pr0003,Rock Stepped with Black Wolf Print [aka Moonstone],33 +10178pr0004,Rock Stepped with Black Bat Print,33 +10178pr0005,Rock Stepped with Black Zombie Print,33 +10178pr0006,Rock Stepped with White Lightning Print,33 +10178pr0007,Rock 1 x 2 Crystal Stepped with White Ghost Moonstone Print,33 +10179cert,"Paper, Certificate of Authenticity for Set 10179 Limited Edition",17 +10183,Minifig Wings Fairy,27 +10187,"Minifig Bladed Claw, Spread",27 +10187stk01,Sticker for Set 10187 - (63292/4528621),17 +10188stk01,Sticker for Set 10188 - (64169/453341),17 +10190,Minifig Flipper [Thick],27 +10192stk01,Sticker for Set 10192 - (10192/4528138),17 +10193,ADULT FIG. NO. 1 2012 V2,4 +10197,Technic Pin Connector Hub with 2 Perpendicular Axles,12 +10199,Plate 4 X 8,4 +10201,Bracket 1 x 2 - 1 x 4 [Rounded Corners],9 +10202,Tile 6 x 6 with Bottom Tubes,19 +10212stk01,Sticker for Set 10212 - (88529/4568123),17 +10216stk01,Sticker for Set 10216 - (90051/4582442),17 +10218,Cardboard Game Board - Life of George,17 +10219stk01,Sticker for Set 10219,17 +10220stk01,Sticker for Set 10220 - Sheet 1 (94347/4614415),17 +10220stk02,Sticker for Set 10220 - Sheet 2 (94349/4614425),17 +10226,Round Sign with 30 Speed Limit Print,4 +10227,"Minifig Head Cover, Swamp Creature with Eye Holes, Fins and Spikes",13 +10232stk01,Sticker for Set 10232 - (12949 / 6022692),17 +10233stk01,Sticker for Set 10233 - (12953/6022720),17 +10235stk01,Sticker for Set 10235,17 +10240stk01,10240stk01,17 +10240stk02,10240stk02,17 +10240stk03,10240stk03,17 +10247,Plate Special 2 x 2 with 1 Pin Hole [Complete Underside Rib],9 +10252stk01,Sticker Sheet for Set 10252 - 26953/6153756 or 26952/6153754,17 +10258,Minifig Compound Bow & Arrow,27 +102703uk,Pirate Comic - The Golden Medallion,17 +10288,Technic Axle and Pin Connector Triple [120° Offset],12 +10301,Minifig Hair with Bat Ears [Plain],24 +10301pr0001,Minifig Hair with Bat Ears and Medium Dark Flesh Inner Ear Print,13 +10301pr0002,Minifig Hair with Bat Ears and Dark Bluish Gray Inner Ear Print,13 +10301pr0003,Minifig Hair with Bat Ears and Tan Inner Ear Print,13 +10302,Minifig Head Modified Werewolf [Plain],24 +10302pr0001,Minifig Head Modified Werewolf,13 +10303,Arm with Wing,13 +10304,Coffin 2 x 4 x 6 Lid [Plain],24 +10304pr0001,Coffin 2 x 4 x 6 Lid with White Bat Print [9464 / 9468],7 +10304pr0002,Coffin 2 x 4 x 6 Lid with Light Bluish Gray Vampire and White Cobwebs Print,7 +10305,Minifig Helmet with Front Prongs [Plain],27 +10305pr0001,Minifig Helmet with Front Prongs and Dark Purple Print (Magneto),27 +1030b1,Set 1030 Activity Booklet 1 - Parts Tray Organizer Card,17 +1030b10,t 1030 Activity Booklet 10 - Wheels,17 +1030b11,Set 1030 Activity Booklet 11 - Conveyors,17 +1030b12,Set 1030 Activity Booklet 12 - Advanced Gearing,17 +1030b13,Set 1030 Activity Booklet 13 - Pistons,17 +1030b14,Set 1030 Activity Booklet 14 - Merry-go-round,17 +1030b15,Set 1030 Activity Booklet 15 - Cranes,17 +1030b16,Set 1030 Activity Booklet 16 - Lifting with Pulleys,17 +1030b17,Set 1030 Activity Booklet 17 - Water Wheels,17 +1030b18,Set 1030 Activity Booklet 18 - Windmills,17 +1030b19,Set 1030 Activity Booklet 19 - Simple Steering,17 +1030b2,Set 1030 Activity Booklet 2 - Levers,17 +1030b20,Set 1030 Activity Booklet 20 - Advanced Steering,17 +1030b3,Set 1030 Activity Booklet 3 - Supports,17 +1030b4,Set 1030 Activity Booklet 4 - Lifting & Supporting,17 +1030b5,Set 1030 Activity Booklet 5 - Pulleys & Belts,17 +1030b6,Set 1030 Activity Booklet 6 - Gears,17 +1030b7,Set 1030 Activity Booklet 7 - More Gears,17 +1030b8,Set 1030 Activity Booklet 8 - Angles,17 +1030b9,Set 1030 Activity Booklet 9 - Flywheels,17 +10312,Windscreen 10 x 6 x 3 Bubble Canopy Double Tapered with Square Front Cutout,47 +10312pr0003,"Windscreen 10 x 6 x 3 Bubble Canopy Double Tapered with Square Front Cutout and Light Bluish Gray Jedi Starfighter, Two Red Triangles on Top Print",47 +10312pr0004,Windscreen 10 x 6 x 3 Bubble Canopy Double Tapered with Square Front Cutout and B-wing Starfighter Print,47 +10312pr0005,"Windscreen 10 x 6 x 3 Bubble Canopy Double Tapered with Square Front Cutout and Light Bluish Gray Jedi Starfighter, Two Red Triangles on Top Print",47 +10314,"Brick 1 x 4 x 1 1/3 No Studs, Curved Top, with Raised Inside Support",37 +1032b1,Set 1032 Activity Booklet 1 - Parts Tray Organizer Card,17 +1032b10,Set 1032 Activity Booklet 10 - Appliances,17 +1032b11,Set 1032 Activity Booklet 11 - Right Angle Drives,17 +1032b12,Set 1032 Activity Booklet 12 - Clamps,17 +1032b13,Set 1032 Activity Booklet 13 - Mixers & Propellers,17 +1032b14,Set 1032 Activity Booklet 14 - Valves & Hammers,17 +1032b15,Set 1032 Activity Booklet 15 - Gearing Down,17 +1032b16,Set 1032 Activity Booklet 16 - Differentials,17 +1032b17,Set 1032 Activity Booklet 17 - Cranes,17 +1032b18,Set 1032 Activity Booklet 18 - Conveyors,17 +1032b19,Set 1032 Activity Booklet 19 - Drawbridges & Boom Gates,17 +1032b2,Set 1032 Activity Booklet 2 - Bracing & Connecting,17 +1032b20,Set 1032 Activity Booklet 20 - Robots,17 +1032b3,Set 1032 Activity Booklet 3 - Using the 4.5V motor,17 +1032b4,Set 1032 Activity Booklet 4 - Wheels & Belts,17 +1032b5,Set 1032 Activity Booklet 5 - Saws,17 +1032b6,Set 1032 Activity Booklet 6 - Small Machinery,17 +1032b7,Set 1032 Activity Booklet 7 - Chains,17 +1032b8,Set 1032 Activity Booklet 8 - Chain Drives,17 +1032b9,Set 1032 Activity Booklet 9 - Winches,17 +10395,Arm Cave Troll - Left with Scales Print,13 +10396,Arm Cave Troll - Right with Scales Print,13 +104,Antenna 6H without Stud Hole,32 +10446,Duplo Brick 2 x 3 with Curved Top and Eye Print on Both Sides,4 +10509,"Horse, Moveable Legs [Plain]",28 +10509pr0001,"Horse, Moveable Legs with Black Bridle and White Blaze Print",28 +10509pr0002,"Horse, Moveable Legs with Gray Bridle Print",28 +10509pr0003,"Horse, Moveable Legs with Black Bridle and Silver Buckles Print",28 +10509pr0004,"Horse, Moveable Legs with Dark Brown Bridle Print",28 +10509pr0005,"Horse, Moveable Legs with Gold Bridle and Decorations Print",28 +10538,Sticker Sheet for 9498-1,17 +10555,"Minifig Cape Cloth, Narrow with Single Top Hole",27 +10563,LID FOR FRAME 2X4X2,4 +10635,Sticker Sheet for 9473-1,17 +10636,Sticker for Set 9474 - (10636/6005725),17 +10639,Sticker for Set 10226,17 +10646,Sticker Sheet for 9499-1,17 +10660c01,Duplo Airplane Landing Gear with Two Wheels Type 2,4 +10661,"Duplo, Plate 2 x 4 with 2 Holes with Locking Ridges",4 +10677,Torso Bat with Vestigial Minifig Arms,13 +10677pr0001,Torso Monster Fighters Bat with Medium Dark Flesh Fur Print / Dark Brown Arms with Wings / Reddish Brown Hands,13 +10677pr0002,Torso Bat with Dark Bluish Gray Fur Print / Black Arms with Wings / Black Hands,13 +10677pr0003,Torso Batman Bat with Tan Fur Print / Reddish Brown Arms with Wings / Reddish Brown Hands,13 +10677pr0004,"Torso Bat with Vestigial Minifig Arms, Green and Purple Vein and Dark Orange Fur Print / Magenta Arms with Wings / Olive Green Hands",13 +10716,Minifig Pauldron with Pre Vizsla Print,27 +107pr0001,Road Sign Cantilever Curved with 'SHELL' Print,38 +107pr0002,Road Sign Cantilever Curved with 'POLICE' Print,38 +10830,Magnifying Glass with Thick Frame and Solid Handle [Plain],24 +10830pat0001,Magnifying Glass with Thick Frame and Solid Handle with Trans-Clear Lens,27 +108681,"Paper, Information Note for Parents, 12V Transformer - 108681",17 +10883,Minifig Skirt Cloth with Diamond Points,27 +10884,Plant Leaves 6 x 5 Swordleaf with Clip (thick open O clip),28 +10888,Duplo Turntable 2 x 2,4 +109,"Technic Shock Absorber 9.5L, Piston Rod",25 +10904,"Minifig Cape Cloth, Ringwraith Style Tattered",27 +10907,Minifig Headgear Helmet Space with Open Face and Top Hinge,27 +10908,Minifig Visor Top Hinge [Plain],24 +10908pr0001,Minifig Visor Top Hinge with Gold Face Shield and White Eyes Print,27 +10908pr0002,"Minifig Visor Top Hinge with Gold Face Shield, Blue Eyes and Silver Chin Print",27 +10908pr0003,Minifig Visor Top Hinge with Silver Face Shield and White Eyes Print,27 +10908pr0004,"Minifig Visor Top Hinge with Silver Face Shield, White Eyes and Dark Red Trim Print",27 +10908pr0005,"Minifig Visor Top Hinge with Gold Face Shield and White Eyes, without Outline Print",27 +10908pr0006,"Minifig Visor Top Hinge with Gold Face Shield, Black Lines on Forehead and White Eyes Print",27 +10908pr0007,"Minifig Visor Top Hinge with Gold Face Shield, Silver Sides, Black Lines on Forehead and White Eyes Print",27 +10908pr0010,Minifig Visor Top Hinge with Blue and White Eyes and Gold Face Shield and Black Lines print,27 +10908pr0011,VISOR NR. 1 NO. 11,27 +10908pr0012,"VISOR NR, 1 NO. 12",27 +10909,Minifig Helmet with Large Curved Flexible Horns,27 +1090ba,Set 1090 Activity Booklet A - Ferris Wheel,17 +1090bbc,Set 1090 Activity Booklet B / C - Automatic Door / Washing Machine,17 +1090bd,Set 1090 Activity Booklet D - Conveyer Belt,17 +1090be,Set 1090 Activity Booklet E - Robot Arm,17 +1090boc,Set 1090 Activity Booklet - Parts Tray Organizer Card,17 +10916,Electric Cable USB for Mindstorms EV3 (2 meter),45 +10928,Technic Gear 8 Tooth [Reinforced],52 +1092ba,Set 1092 Activity Booklet A - Plotter,17 +1092bbcd,"Set 1092 Activity Booklet B / C / D - Traffic Sign, Scale & Metrics",17 +1092be,Set 1092 Activity Booklet E - Crane,17 +1092boc,Set 1092 Activity Booklet - Parts Tray Organizer Card,17 +1093,Lego Computer Interface A User's Guide (12059),17 +10a,Baseplate 24 x 32 with Squared Corners,1 +10b,Baseplate 24 x 32 with Rounded Corners,1 +10p01,Baseplate 24 x 32 with Dots Print [363 / 555],1 +10p02,Baseplate 24 x 32 with Dots Print [354 / 560-2],1 +10p03,Baseplate 24 x 32 with Dots Print [358],1 +10p04,Baseplate 24 x 32 with Dots Print [345],1 +10p05,Baseplate 24 x 32 with Dots Print [545-2 / 351],1 +10p06,Baseplate 24 x 32 with Dots Print [149],1 +10p07,Baseplate 24 x 32 with Dots Print [346-2],1 +10p08,Baseplate 24 x 32 with Dots Print [353],1 +10p0a,Baseplate 24 x 32 with Dots Print [1601],1 +10p0b,Baseplate 24 x 32 with Dots Prints [361],1 +11002,Plate Special 2 x 2 with Wheels Holder Wide [Reinforced Underside],9 +11010,Minifig Ring 1 x 1,27 +11055,Flag 2 x 2 Square [Thick Clips],38 +11055pr0004,Flag 2 x 2 Square with Gold 'Captains Daughter' and Waving Minifig Print,38 +11055pr0005,Flag 2 x 2 with AT-ST Print [4486 / 9679],38 +11055pr0006,Flag 2 x 2 Square with Silver Fangs and Dark Red Print [70004],38 +11055pr0007,Flag 2 x 2 Square with Gold Crossed Cutlasses on Dark Blue Background Print,38 +11055pr0009,Flag 2 x 2 Square with Skull and Crossed Cutlasses (Jolly Roger) Print,38 +11055pr0010,Flag 2 x 2 Square with Imperial Soldier Black Symbol over White Cross on Blue Background with Yellow Border Print,38 +11055pr0011,Flag 2 x 2 Square with Skull and Crossbones (Jolly Roger) without Lower Jaw Print,38 +11055pr0012,Flag 2 x 2 Square with Gold 'Toy Shop' and Nutcracker Drummer on Wood Background Print,38 +11055pr0013,FLAG WITH 2 HOLDERS "NO.13",38 +11055pr0014,FLAG W/ 2 HOLDERS Classic Space Print,38 +11055pr02,Flag 2 x 2 Square with Chequered Print [Thick Clips],38 +11062,Lamp Post 2 x 2 x 7 with 4 Base Flutes,32 +11089,"Barb Large Flexible [Claw, Horn]",28 +11090,Bar Holder with Clip,32 +11091,Wing 9L with Stylized Feathers,28 +11092,Gorilla Fist,27 +11094,"Wheel Hard Plastic, Treaded with 7 Pin Holes and 6 Small Holes",29 +11096,Minifig Axe Head - Twin Bladed,27 +11097,"Minifig Shoulder Pads with 1 Stud on Front, 2 Studs on Back",27 +11098,"Minifig Armour - Breastplate with Shoulder Pads, 1 Front Stud, 2 Back Studs",27 +11100,Minifig Feathered Wing,27 +11101,Minifig Chima Animal Tail with Neck Bracket [Plain],24 +11101pat0001,Minifig Chima Animal Tail with Neck Bracket and Marbled Medium Dark Flesh Pattern,13 +11101pat0002,Minifig Chima Animal Tail with Neck Bracket and Marbled White Pattern,13 +11103,Minifig Sword - Double Blade with Bar Holder [Chi Sword],27 +11106,Minifig Hammer Head,27 +11107,Minifig Sword Serrated with Bar Holder,27 +11110,Fly Wheel Fairing Lion Shape,36 +11110pr0001,Fly Wheel Fairing Lion Shape with Gold and Blue Feathers Print (70102),36 +11110pr0002,Fly Wheel Fairing Lion Shape with Silver and Dark Brown Print (70011),36 +11110pr0003,Fly Wheel Fairing Lion Shape with Fangs and Hoses Print (70113),36 +11110pr0004,Fly Wheel Fairing Lion Shape with Gold and Dark Red Print (70115),36 +11110pr0005,Fly Wheel Fairing Lion Shape with Gray Mane and Dark Blue Feathers Print (70108),36 +11110pr0006,Fly Wheel Fairing Lion Shape with Gold Armor and Red Flames Print (70140),36 +11111,Fly Wheel Fairing Bird Shape,36 +11111pr0001,Fly Wheel Fairing Bird Shape with Silver Plates Print (70100),36 +11111pr0002,Fly Wheel Fairing Bird Shape with Eagle and Gold Ornament Print (70101),36 +11111pr0003,Fly Wheel Fairing Bird Shape with Eagle and Silver Ornament Print (70105),36 +11111pr0004,Fly Wheel Fairing Bird Raptor Shape with White Scaled Armor Print (70139),36 +11112,Fly Wheel Fairing Crocodile Shape,36 +11112pr0001,Fly Wheel Fairing Crocodile Shape with Gold and White Crocodile Print (70103),36 +11112pr0002,Fly Wheel Fairing Crocodile Shape with Reddish Brown and White Crocodile Print (70115),36 +11112pr0003,Fly Wheel Fairing Crocodile Shape with Silver Crocodile Print (70112),36 +11113,Fly Wheel Fairing Wolf Shape,36 +11113pr0001,Fly Wheel Fairing Wolf Shape with Fangs and Black and White Print (70011),36 +11113pr0002,Fly Wheel Fairing Wolf Shape with Fangs and Silver and White Print (70113),36 +11113pr0003,Fly Wheel Fairing Wolf Shape with White Patches and Brown Stitch Markings Print (70111),36 +11113pr0004,Fly Wheel Fairing Wolf Shape with White Checkerboard and Skunk Markings Print (70107),36 +11113pr0005,"Fly Wheel Fairing Wolf Shape with Silver Scaled Armor, Chains and Fangs Print (70137)",36 +11122,Fly Wheel Fairing Gorilla Shape,36 +11122pr0001,Fly Wheel Fairing Gorilla Shape with Silver Markings and Leaves Print (70110),36 +11122pr0002,Fly Wheel Fairing Gorilla Shape with Dark Azure and Silver Markings and Leaves Print (70109),36 +11122pr0003,Fly Wheel Fairing Gorilla Shape with Silver Scaled Armor Print (70136),36 +11126,Rip Cord Flexible with Handle,56 +11127,Rock 1 x 1 Crystal 4 Point,33 +11129,Minifig Mask Chima Lion [Plain],24 +11129pr0001,Minifig Mask Chima Lion with Tan Face and Dark Blue Headpiece Print,27 +11129pr0002,"Minifig Mask Lion with Tan Face, Gray and White Beard and Gold Crown Print",13 +11129pr0003,"Minifig Mask Chima Lion with Tan Muzzle, Black Face Details and Gold Crown Print",27 +11129pr0004,Minifig Mask Chima Lion with Dark Tan Face and Dark Blue Headpiece with Gold Circles Print,27 +11129pr0005,"Minifig Mask Chima Lion with Tan Face, Crooked Smile and Dark Blue Headpiece Print",27 +11129pr0006,Minifigure Mask Chima Lion with Face and Lion Crest Print [Lavertus],27 +11129pr0007,Minifig Mask Lion with Tan Face and Gold Crown Small Print,27 +11129pr0008,Minifig Mask Lion with Tan Face and Crooked Frown Print,27 +11133,"Duplo, Brick 2 x 4 x 2 Arch",4 +11133pb01,"Duplo, Brick 2 x 4 x 2 Arch with Blue Half Circles Print",4 +11145,Electric Mindstorms EV3 Cable 25 cm,45 +11153,Slope Curved 4 x 1 No Studs [Stud Holder with Symmetric Ridges],37 +11153pr0001,Slope Curved 4 x 1 No Studs with Cinderella Scrollwork Print,37 +11153pr0002,Slope Curved 4 x 1 No Studs with Gold Entwined Vines Print,2 +11156,Minifig Sword - Elven Warrior,27 +11164,Hero Factory Brain,41 +11164pat01,Hero Factory Brain with Red Centre,41 +11164pat02,Hero Factory Brain with Glow in the Dark Centre and Marbled Yellow Pattern,41 +11169,Duplo Brick 2 x 2 x 1 1/2 with Curve,4 +11170,Brick 2 x 2 x 1 1/2 - Curved Top,4 +11187,Minifig Snowshoe [Short Front End],27 +11197,"Duplo, Brick 2 x 6 x 2 Curved with 2 x 2 Cutout on Bottom",4 +11198,Arch 2 x 4 x 2,4 +112,"Car Air Horn bar, chrome, cone, exhaust, model, model team, pipe, team, town",24 +11203,Tile Special 2 x 2 Inverted,15 +11203pr0001,FLAT TILE 2X2 INV with keypad print,10 +11203pr0005,"Tile Special 2 x 2 Inverted with 4 Orange, Red and Yellow Rounded Squares Print",15 +11203pr0006,Tile Special 2 x 2 Inverted with Red Haired Dwarf on Blue Background Print,15 +11203pr0007,Tile Special 2 x 2 Inverted with Thorin Oakenshield on Blue Background Print,15 +11203pr0008,Tile Special 2 x 2 Inverted with Frodo Baggins on Red Background Print,15 +11203pr0009,Tile Special 2 x 2 Inverted with Bilbo Baggins on Red Background Print,15 +11203pr0010,Tile Special 2 x 2 Inverted with Fëanorian 'G' Rune on Green Planks Print,15 +11203pr0011,Tile Special 2 x 2 Inverted with Food and Drink on Yellow Background Print,15 +11203pr0012,Tile Special 2 x 2 Inverted with White dots on gift paper and Medium Lavender ribbon and bow print,15 +11203pr0013,Tile Special 2 x 2 Inverted with Medium Blue ribbon and bow on gift box print,15 +11203pr0014,Tile Special 2 x 2 Inverted with Minecraft Wither Face Print,10 +11203pr0015,"FLAT TILE 2X2, INV., NO.15",15 +11208,"Wheel 14mm D. x 9.9mm with Centre Groove, Fake Bolts and 6 Spokes",29 +11209,Tyre 21 x 9.9,29 +11211,Brick Special 1 x 2 with Studs on 1 Side,5 +11212,Plate 3 x 3,14 +11213,"Plate, Round 6 x 6 with Hole",21 +11214,Technic Axle Pin 3L with Friction Ridges Lengthwise and 1L Axle,53 +11215,Bracket 5 x 2 x 1 1/3,9 +11216,Door 1 x 12 x 16 Castle Gate (Portcullis),16 +11217,Minifig Helmet SW Clone Trooper [Plain],24 +11217pr0001,Minifig Helmet SW Clone Trooper with Blue 501st Legion Markings Print,27 +11217pr0002,Minifig Helmet SW Capitan Rex with Blue and Tan Markings and Killed Enemies Count Print,13 +11217pr0003,Minifig Helmet SW Clone Trooper with Bright Light Orange 212th Legion Markings Print,13 +11217pr0005,Minifig Helmet SW Jek-14 with Light Blue Visor and Dark Red Markings Print,27 +11217pr0006,Minifig Helmet SW Clone Trooper with Dark Red Emblem Print,27 +11217pr0007a,Minifig Helmet SW Clone Trooper with Episode 3 Print,27 +11217pr0007b,Minifig Helmet SW Clone Trooper with Dark Green Markings Print (Commander Gree),13 +11217pr0008a,Minifig Helmet SW Clone Trooper with 41st Camouflage Print,27 +11217pr0008b,Minifig Helmet SW Clone Trooper with Orange 212th Battalion Markings Print,27 +11217pr0009,Minifig Helmet SW Clone Trooper with Wolf Insignia on Forehead and Dark Bluish Gray Markings Print,27 +11217pr0010,Minifig Helmet SW Clone Trooper with Red Shock Trooper Markings Print,27 +11217pr0011,Minifig Helmet SW Clone Trooper with Tan and Dark Tan Camouflage Print,27 +11219,Minifig Helmet - Republic Trooper [Plain],24 +11219pr0001,Minifig Helmet - Republic Trooper with Orange Print,27 +11233,Minifig Mask Wolf,27 +11233pr0001,Minifig Mask Wolf with Fangs and Dark Bluish Gray Nose Print,27 +11233pr0002,"Minifig Mask Wolf with Face Details, Scars and White Ears Print",27 +11233pr0003,"Minifig Mask Wolf with Fangs, Stubble and Three Dark Red Gashes Print",27 +11233pr0004,"Minifig Mask Wolf with Fangs, Light Bluish Gray Fur and Ears Print",27 +11233pr0005,Minifig Mask Wolf with Fangs and Gray Nose Print,27 +11241,Horse Foal [Plain],24 +11241pr0001,Horse Foal with Brown Eyes and Black Eyelashes Print,28 +11241pr0002,"Horse Foal with Black Eyes, White Pupils and Black Eyelashes Print",28 +11241pr0003,Horse Foal with Brown Eyes and Black Eyelashes Print,28 +11245,Friends Accessories School Bag,27 +11245pr0001,Friends School Bag with Magenta Buckle and Flower and Circles Print,27 +11245pr0002,Friends Accessories School Bag with Medium Blue Buckle and Star Print,27 +11248c01,Duplo Car Base 2 x 6 with Yellow Wheels with Fake Bolts and Open Hitch End,4 +11249,Duplo Treasure Chest Opening 2 x 3 x 3 with Detailed Lid Ends,4 +11250,Minifig Judge's Gavel,27 +11252,Minifig Oval Tray,27 +11253,Minifig Roller Skate,27 +11254,Minifig Hair Female Mid-Length with Part over Front of Right Shoulder [Plain],24 +11254pr0001,Minifig Hair Female Mid-Length with Part over Front of Right Shoulder with Dark Purple Rag Wrap / Bandana and 3 Gold Coins Print,27 +11254pr0002,Minifig Hair Female Mid-Length with Part over Front of Right Shoulder with Red Rag Wrap / Bandana Print,27 +11255,Minifig Hair Long with Curls (Judge's Peruke),13 +11256,"Minifig Hair - Short, Wavy with Side Part",13 +11257,Minifig Mask Cyclops with Horn [Plain],24 +11257pr0001,Minifig Mask Cyclops with White Horn and White Teeth Print,27 +11257pr0002,"Minifig Mask Cyclops with White Horn, White Teeth, Magenta Lipstick and Black Beauty Mark Print",27 +11258,"Minifig Cap, Worker",27 +11259,"Minifig Hat, Police with Badge [Plain]",24 +11259pr0001,"Minifig Hat, Police with Dark Blue Top and Gold Badge Print",27 +11259pr0002,"HAT, NO. 33 Police",27 +11260,Minifig Space Armour with Square Shoulder Protection,27 +11260pr0001,Minifig Armor Space with Square Shoulder Protection with Silver Grille and Orange Markings Print,27 +11260pr0002,Minifig Armour - Shoulder Protection with Blacktron I Logo and Silver Grill Print,27 +11260pr0003,MINI MECH ARMOR NO.3,27 +11261,Minifig Hair - Long with Braided Front,13 +11262,Minifig Mask Chicken [Plain],24 +11262pr0001,Minifig Mask Chicken with Yellow Beak and Red Comb and Wattles Print,27 +11263,MINI CHICKEN WING,13 +11264,"Minifig Hair Short, Straight Cut Fringe with Laurel Wreath",27 +11264pr0001,"Minifig Hair Short, Straight Cut Fringe with Gold Laurel Wreath Print",13 +11265,Mini Mech Helmet [Plain],27 +11265pr0001,Minifig Helmet Space with Open Visor Small and Orange and Silver Markings Print,27 +11265pr0002,"Minifig Helmet, Space with Open Visor, Mouth Grill and Silver Markings Print",27 +11265pr0003,MINI MECH HELMET NO.3,27 +11267,Friends Slide Curved,5 +11268,Hero Factory Armour with Rock Spikes,41 +11269,Hero Factory Helmet Visor with Clip,41 +11269pr0001,Hero Factory Helmet Visor with Clip with Face Guard Print,41 +11269pr0002,Hero Factory Helmet Visor with Clip with Face Guard Print Type 3,41 +11269pr0003,Hero Factory Helmet Visor with Clip with Face Guard Print Type 2,41 +11270,Hero Factory Head with Handle,41 +11271,Hero Factory Full Torso Armour with 4 Handles,41 +11272,Technic Axle Connector 2 x 3 Quadruple,12 +11273,Hero Factory Shield with Half 'H',41 +11275,Hero Factory Mask (Evo 2013),41 +11276,Hero Factory Mask (Rocka 2013),41 +11277,Hero Factory Mask [Surge],41 +11278,Hero Factory Mask (Stormer 2013),41 +11279,Hero Factory Mask (Bulk 2013),41 +11280,Hero Factory Mask (Furno 2013),41 +11281,Hero Factory Mask (Breez 2013),41 +11282,Hero Factory Mask (Ogrum),41 +11286,Hero Factory Mask (Scarox),41 +11287,Hero Factory Mask (Pyrox),41 +11288,Hero Factory Mask (Dragon Bolt),41 +11289,Windscreen 4 x 4 x 4 2/3 with Handle,47 +11290,Slope Curved 2 x 8 x 2 Double,37 +11291,Wedge 3 x 4 x 2/3 Cutout,6 +11293,Aircraft Fuselage Curved Forward 6 x 8 Top,47 +11294,Hero Factory Mask (Aquagon) ,41 +11295,Aircraft Fuselage Curved Forward 6 x 8 Bottom,47 +11296,Hero Factory Mask (Bruizer),41 +11297,Glass for Aircraft Fuselage Curved Forward 6 x 8 Top [Fits 11293],16 +11298,Hero Factory Mask [Frost Beast],41 +11299,Ladder 16 x 3.5 with Side Supports,32 +11301,"Slope, Curved 2 x 8 x 2 Inverted Double",37 +11302,Hero Factory Weapon Accessory - Flame/Lightning Bolt with Axle Hole,41 +11302pat0001,Hero Factory Weapon Accessory - Flame/Lightning Bolt with Axle Hole with Marbled Trans-Yellow / Trans-Red Pattern,41 +11302pat0002,Hero Factory Weapon Accessory - Flame/Lightning Bolt with Axle Hole with Marbled Trans-Yellow / Trans-Dark Blue Pattern,41 +11302pat0003,Hero Factory Weapon Accessory - Flame/Lightning Bolt with Axlehole with Marbled Trans-Light Blue / White Pattern,41 +11302pat0004,Hero Factory Weapon Accessory - Flame/Lightning Bolt with Axle Hole with Marbled Trans-Clear / Trans-Neon Green Pattern,41 +11303,Minifig Cap - Short Curved Bill with Seams and Hole on Top,27 +11305,Hero Factory Weapon - Blade with Curved Tip,41 +1131,Large Figure Visor - Vladek,41 +11327,Rancor Paw with Pin,28 +11329,Rancor Claw,28 +11331,Minifig Helmet SW Clone Pilot with Elongated Breathing Mask [Plain],24 +11331pr0001,Minifig Helmet SW Clone Pilot with Elongated Breathing Mask and 501st Print,27 +11334,Hero Factory Armour with Spikes,41 +11335,Duplo Building Wall 1 x 8 x 6 with Window Opening,4 +11336,Hero Factory Weapon - Axe/Sword Double Spiked,41 +11338,Hero Factory Weapon - Axe/Sword with Jagged Blade,41 +11340,Rancor Body with Black Eyes Print,28 +11342,Rancor Arm Right with Dark Bluish Gray Ring Print,28 +11343,Rancor Arm Left,28 +11344,"Duplo, Brick 2 x 3 x 2 with Curved Top",4 +11344pb01,"Duplo, Brick 2 x 3 x 2 with Curved Top and Eye Print on Both Sides",4 +11344pr0007,Duplo Brick 2 x 3 x 2 with Curved Top - Bird Head Print on Both Sides,4 +11345,Duplo Building Door Frame 4 x 4 x 3,16 +11356,Large Figure Head Modified Chima Crocodile Upper Jaw with Teeth,41 +11356pr0001,Large Figure Head Modified Chima Crocodile Upper Jaw with Teeth and Silver Print,41 +11356pr0002,Large Figure Head Modified Chima Crocodile Upper Jaw with Teeth and Gold Armor Print,41 +113578,"Paper, Information Note, Use of Battery Box - 113578-UK/F/NL",17 +11371,Duplo Goat - Single Back Stud,4 +11371pb01,Duplo Goat,4 +11374pb01,Duplo Fish with Large Eyes and Stripes on Top Print (Flounder / Fabius),4 +11385,Duplo Teddy Bear,4 +11385pb01,Duplo Teddy Bear,4 +11399,Plate Special 4 x 4 with Clips Horizontal (thick open O clips),9 +11402,Minifig Tools,27 +11403,Friends - Hips and Shorts (aka FEMALE HIP WITH SHORT 2) [Plain],24 +11403pr0001c01,Friends - Hips and Shorts with Light Flesh Legs and Dark Pink Shoes Print,13 +11403pr0002c01,Friends - Hips and Shorts with Medium Dark Flesh Legs and Magenta Sandals Print,13 +11403pr0003c01,Friends - Hips and Shorts with Medium Dark Flesh Legs and Lime Sandals Print,13 +11403pr0004c01,Friends - Hips and Shorts with Medium Dark Flesh Legs and Magenta Stripe on Shoes Print,13 +11403pr0005c01,Friends - Hips and Shorts with Light Flesh Legs and Sand Blue Laces on Yellow and White Shoes Print,13 +11403pr0006c01,Friends - Hips and Shorts with Medium Dark Flesh Legs and Magenta Stripe on Lime Sandals Print,13 +11403pr0007,Friends Hips and Shorts [41171],13 +11403pr0008c01,Friends - Hips and Shorts with Light Flesh Legs and Dark Purple Laces on Sand Blue Shoes Print,13 +11403pr0100,Friends Hips and Shorts - Right Black Leggings and Left Red Leggings - Blue Shoes - Harley Quinn,13 +11403pr0102c01,Hips and Shorts with Light Flesh Legs and White Laces on Yellow and White Shoes Print,13 +11407,Friends - Hips and Wrap-around Skirt (aka FEMALE HIP WITH SKIRT 4) [Plain],13 +11407pr0001c01,Friends - Hips and Wrap-around Skirt with Light Flesh Legs and Black Sandals Print,13 +11407pr0003c01,Friends - Hips and Wrap Skirt with Light Flesh Legs and Dark Blue Sandals Print,13 +11407pr0004c01,Friends - Hips and Wrap-around Skirt with Light Flesh Legs and Medium Azure Sandals Print,13 +11407pr0005,Friends - Hips and Wrap-around Skirt with Light Flesh Legs and Medium Azure Waves Print [41172],13 +11407pr0104,Friends Hips and Wrap-around Skirt with Tan Layer - Medium Dark Flesh Legs - No Shoes Print,13 +11407pr0107,Friends Hips and Wrap-around Skirt with Dark Green Thorn Design - Light Flesh Legs with Dark Green Leggings and Shoes Print,13 +11407pr0108,Friends - Hips and Wrap-around Skirt - Light Flesh Legs - Magenta Sandals with Stars Print,13 +11407pr0113,Friends Hips and Wrap-around Skirt with Blue Layer - Light Flesh Legs - Dark Azure Sandals with Silver Elves Print,13 +11408,"Torso Friends Boy (aka TORSO, BOY W/ARM 1) [Plain]",24 +11408pr0001c01,"Torso Friends Boy - Medium Blue Polo Shirt Print, Light Flesh Arms and Hands",13 +11408pr0002c01,"Torso Friends Boy - Bright Green Polo Shirt with Short Sleeves Print, Medium Dark Flesh Arms and Hands",13 +11408pr0003c01,Torso Friends Boy - Jerkin and Tan Sleeves Print with Light Flesh Arms and Hands,13 +11408pr0004c01,"Torso Friends Boy - White Shirt and Red Sash Print, Light Flesh Arms and Hands",13 +11408pr0005c01,"Torso Friends Boy - Bright Light Blue Top with Gold Necklace Print, Bright Light Blue Sleeves and White Gloves Print",13 +11408pr0006c01,"Torso Friends Boy - Tan Shirt with 2 Breast Pockets Print, Tan Short Sleeves and Medium Dark Flesh Arms and Hands",13 +11408pr0007c01,"Torso Friends - Sand Green Hoodie with White Shirt Underneath Print, Sand Green Sleeves and Light Flesh Hands",13 +11408pr0008c01,"Torso Friends Boy - Red and White Striped T-Shirt Print, Red Short Sleeves and Light Flesh Arms and Hands",13 +11408pr0009c01,"Torso Friends Boy - Lime Top with Bronze Mail Print, Reddish Brown Elves Tattoo, Light Flesh Arms and Hands",13 +11408pr0010c01,"Torso Friends Boy - Orange Sleeveless Jacket with Dark Red Elves Details, Light Flesh Arms and Hands",13 +11408pr0012c01,"Torso Friends Boy - Dark Red Bellboy Jacket Print, Dark Red Sleeves and Light Flesh Hands",13 +11408pr0013c01,"Torso Friends Lime Shirt with Gold and Dark Green Plant Print, Light Flesh Arms with Hands with Reddish Brown Elves Tattoo Left Print",13 +11408pr0014c01,TORSO BOY W/ARM NO. 14,13 +11408pr0015c01,"Torso Friends Boy - Yellow and Orange Polo Shirt with Pocket and Name Tag Print, Yellow Short Sleeves and Light Flesh Arms and Hands",13 +11408pr0030c01,"Torso Friends Boy - Dark Blue Jacket and Tie and White Shirt Print, Dark Blue Sleeves and Light Flesh Hands",13 +11408pr0100c01,"TORSO, BOY, NO.100",13 +11408pr0101c01,"TORSO, BOY W/ ARM NO. 101",13 +11408pr0102c01,"TORSO, BOY, W/ ARM, NO. 102",13 +11408pr0103c01,Torso Friends Boy - Silver and Gold Armor with Goblin Eye on Front - Black Elves Tattoo Print on Left Arm - Light Flesh Arms and Hands,13 +11408pr0104c01,"TORSO, BOY, W/ ARM, NO. 104",13 +11418,Minifig Head Top Goblin with Ears [Plain],13 +11418pr0001,Minifig Head Top Goblin with Ears and Dark Bluish Gray Hair Lines Print,13 +11420,Minifig Hair with Beard Braided [Plain],27 +11420pr0001,Minifig Hair with Beard Braided with Laced Shirt Centre Print,13 +11421,Minifig Hair with Beard Braided [Plain],24 +11421pr0001,Minifig Hair with Beard Braided Dark Bluish Gray and Metallic Silver Print [Bifur],27 +11422,"Minifig Hood with Flaps, Fur-lined [Plain]",27 +11422pr0001,"Minifig Hood with Flaps, Fur-lined and Dark Brown Braided Hair Print",27 +11423,Minifig Hair with Spiked Braid and Beard [Plain],27 +11423pr0001,Minifig Hair with Spiked Braid and Beard with White Braids Print,27 +11429,Warg Lower Jaw [Plain],24 +11429pr0001,Warg Lower Jaw with Tan Teeth Print [White],28 +11429pr0002,Warg Lower Jaw with Tan Teeth Print [Dark Bluish Gray],28 +11429pr0003,Warg Lower Jaw with Tan Teeth Print [Dark Brown],28 +11435,"Eagle Body with Beak, Eyes and Tail Feathers [Plain]",24 +11435pr0001,"Eagle Body with Beak, Eyes and Dark Brown Tail Feathers Print",28 +11435pr0002,"Eagle Body with Beak, Eyes and Dark Brown Head and Tail Feathers Print",28 +11437,Minifig Helmet Ninja Horn Elaborate,27 +11438,Minifig Breastplate with Shoulder Ridges,27 +11439,Minifig Ice Sword [Plain],27 +11439pat0001,Minifig Ice Sword with Jagged Edges and Trans Red Center,27 +11439pat0002,Minifig Ice Sword with Jagged Edges and Marbled Trans Medium Blue Pattern,27 +11439pat0003,Minifig Ice Sword with Jagged Edges and Marbled White Pattern,27 +11439pat0004,Minifig Ice Sword with Jagged Edges and Marbled Trans Black Pattern,27 +11439pat0008,Minifig Ice Sword with Jagged Edges and White Marbled Pattern,27 +11455,Technic Pin Connector Perpendicular 2 x 4 Bent - Beam with 90 Hole Ø 4.8,12 +11458,Plate Special 1 x 2 with Pin Hole on Top,9 +11459,Minifig Plunger (Soft Plastic) [Plain],24 +11459pat01,Minifig Plunger (Soft Plastic) with Medium Dark Flesh Handle,27 +11459pat02,Minifig Plunger (Soft Plastic) with Reddish Brown Handle,27 +11464,Rancor Lower Jaw with Teeth Print,28 +11476,Plate Special 1 x 2 with Clip Horizontal on Side,9 +11477,Slope Curved 2 x 1 No Studs [1/2 Bow],37 +11477pr0001,Slope Curved 2 x 1 No Studs [1/2 Bow] with Ecto 1 Stripes Print,37 +11478,Technic Beam 1 x 5 Thin with Axle Holes on Ends,51 +11538,Minifig Helmet SW #15,27 +11538pr0001,Minifig Helmet SW Rebel with A-wing Pilot Print,27 +11538pr0002,Minifig Helmet SW Ten Numb Print,27 +11538pr0003,MINI FIGURE HELMET NO 15 NO.3,27 +11538pr0005,MINI FIGURER HELMET NO. 5,27 +11568,Squirrel with 1.5 Hole in Tail [Plain],24 +11568pr0001,Squirrel with Blue/Green Eyes Print,28 +11568pr0002,Squirrel with Face Decoration Print,28 +11568pr0003,Squirrel with 1.5 Hole in Tail - Medium Lavender Eyes - Black Nose and Mouth - White Face Decorations Print (Mr. Spry),28 +11575,Dog Poodle,28 +11575pr0001,"Dog Poodle with Purple Bow, Blue Eyes, Black Nose and Mouth Print",28 +11575pr0002,"Friends Poodle with Pink Collar, Blue Eyes, Black Nose and Mouth Print",28 +11589,Minifig Head Modified - Galaxy Squad Robot [Plain],24 +11589pr0001,Minifig Head Modified - Galaxy Squad Robot with Black Visor and White Forehead Print,13 +11591,"Minifig Head Modified Galaxy Squad Robot, Elongated [Plain]",24 +11591pr0001,"Minifig Head Modified Galaxy Squad Robot, Elongated with Black Top Print",13 +11592,Minifig Head Modified Galaxy Squad Robot with Crest [Plain],24 +11592pr0001,Minifig Head Modified Galaxy Squad Robot with Crest and White Print,13 +11593,Minifig Head Modified Galaxy Squad Robot [Plain],24 +11593pr0001,"Minifig Head Modified Galaxy Squad Robot with Black Rectangle Right Eye, Orange Round Left Eye and White Lines Print",13 +11594,Minifig Head Modified Galaxy Squad Alien Buggoid [Plain],24 +11594pr0001,Minifig Head Modified Galaxy Squad Alien Buggoid with Yellowish Green Stripes and Black Eyes with Red Dots Print,13 +11597,Minifig Wing with Clip,27 +11597pr0001,MINI WING W.HOLDER NO.1,27 +11597pr0002,MINI WING W.HOLDER NO.2,27 +11598,Container - Alien Pod Section 2 x 4 x 4,7 +11599,Minifig Wings with Neck Bracket,27 +11601,Minifig Saw with Handle and Tooth,27 +11602,Friends Cat Sitting [Plain],24 +11602pr0001a,"Friends Cat Sitting with Light Green Eyes, Dark Pink Nose and White Markings Print",28 +11602pr0001b,"Friends Cat Sitting with Lavender Eyes, Collar and Gray Markings Print",28 +11602pr0002,"CAT W/HOLE Ø1,5, NO. 1 DEC. 2",28 +11602pr0004,Cat Sitting  w/ 1.5 Hole - Magenta Eyes and Inner Ears - Black Nose and Mouth - Magenta Chest Markings and Paws Print,28 +11605,Minifig Hair - Friends - Long with French Braided Ponytail,13 +11609,Friends Accessories Star with Stud Holder,27 +11610,Ice Cream Cone,27 +11614,Torso/Head Alien SW Pong Krell Print Complete Assembly / Medium Dark Flesh Arms / Reddish Brown Hands,13 +11618,"Friends Accessories Hair Decoration - Bow with Heart, Long Ribbon and Pin",27 +11620,Minifig Helmet with Eye and Mouth Slits [Plain],24 +11620pr0001,Minifig Helmet with Eye and Mouth Slits with Red Star Print,27 +11640,Minifig Guitar Electric [Plain],27 +11640pr0001,Minifig Guitar Electric with Silver Strings and Stars on Magenta Background Print,27 +11640pr0002,Minifig Guitar Electric with White Strings and Star and Gold Geometric Print,27 +11640pr0003,ELECTRIC GUITAR SHAFT Ø3.2 NO. 3,27 +11640pr0004,ELECTRIC GUITAR SHAFT DIA.3.2 NO.1,27 +11641,Basketball Net with Axle,27 +11691,Minifig Visor Chin Guard Elaborate [Plain],27 +11691pr0002,Minifig Visor Chin Guard Elaborate with Silver Fangs Print,27 +11691pr0003,Minifig Visor Chin Guard Elaborate with Black Fangs Print,27 +11692pr0001c01,"Torso, Modified Short with Armor Breastplate with Shoulder Ridges, Rivets and Ninja Skull with Crossed Swords Pattern / Orange Arms / Reddish Brown Hands",13 +117282,User Guide for Technic Control Center 8094,17 +11767,"Fly Wheel Plate 2 x 8 with Metal Fly Wheel and Dark Azure Tire, Complete Assembly (Chima Rip Cord Base)",36 +11777,Eagle Wing - Right [Plain],24 +11777pr01,Eagle Wing - Right with Dark Brown Feathers Print,28 +11778,Eagle Wing - Left [Plain],24 +11778pr01,Eagle Wing - Left with Dark Brown Feathers Print,28 +1177stk01,Sticker for Set 1177,17 +11795,Body Cave Troll with Loin Cloth and Face Print,13 +11797,Lower Body Skirt with Queen Amidala Print,13 +11816,"Minifig Head Modified Friends (aka HEAD, FEMALE 1) [Plain]",24 +11816pr0001,"Minifig Head Modified - Friends - Green Eyes, Pale Pink Lips and Open Mouth Print",13 +11816pr0002,"Minifig Head Modified - Friends - Light Blue Eyes, Pink Lips and Open Mouth Print",13 +11816pr0003,"Minifig Head Modified - Friends - Light Brown Eyes, Pink Lips and Closed Mouth Print",13 +11816pr0004,"Minifig Head Modified - Friends - Light Blue Eyes with Eye Shadow, Red Lips and Closed Mouth Print",13 +11816pr0005,"Minifig Head Modified - Friends - Green Eyes, Pink Lips and Closed Mouth Print",13 +11816pr0006,"Minifig Head Modified - Friends - Light Brown Eyes, Freckles, Pink Lips and Closed Mouth Print",13 +11816pr0007,"MINI DOLL, HEAD, NO. 105",13 +11816pr0009,"Head Modified - Friends - Brown Eyes, Bright Pink Lips and Open Mouth Print",13 +11816pr0011,"Minifig Head Modified - Friends - Brown Eyes, Pink Lips and Closed Mouth Print",13 +11816pr0012,"Minifig Head Modified - Friends - Green Eyes and Glasses, Orange Lips and Closed Mouth Print",13 +11816pr0013,"Minifig Head Modified - Friends - Light Blue Eyes, Eyelashes and Open Mouth Print",13 +11816pr0014,Minifig Head Modified - Friends - Sophie,13 +11816pr0015,"Minifig Head Modified - Friends - Purple Eyes, Dark Pink Lips and Closed Mouth Print",13 +11816pr0016,"Minifig Head Modified - Friends - Brown Eyes, Bright Pink Lips and Open Mouth Print",13 +11816pr0017,"Minifig Head Modified - Friends - Medium Azure Eyes, Freckles, Dark Pink Lips and Closed Mouth Print",13 +11816pr0018,Minifig Head Modified -Friends - Medium Lavender Eyes and Elven Tattoo [Aira],13 +11816pr0019,Minifig Head Modified - Friends - Medium Azure Eyes and Elven Tattoo Print [Naida],13 +11816pr0020,Minifig Head Modified - Friends - Light Brown Eyes and Elves Tribal Print [Azari],13 +11816pr0021,"Minifig Head Modified - Friends - Green Eyes, Freckles, Medium Flesh Lips and Closed Mouth Print",13 +11816pr0022,"Minifig Head Modified - Friends - Purple Eyes, Pink Lips and Open Mouth Print",13 +11816pr0023,"Minifig Head Modified - Friends - Blue Eyes, Medium Flesh Lips, Closed Mouth and Elven Tattoo Print",13 +11816pr0025,Minifig Head Modified - Friends [41171],13 +11816pr0026,"Minifig Head Modified Friends with Light Brown Eyes, Wide Smile and Magenta Elves Tribal Print (Azari)",13 +11816pr0027,"Minifig Head Modified Friends with Medium Lavender Eyes, Closed Mouth Smile and Elves Tribal Print (Aira)",13 +11816pr0028,Minifig Head Modified Friends with Reddish Brown Eyes (Elves Sky Captain),13 +11816pr0030,MINI DOLL HEAD FEMALE 1 NO. 30,13 +11816pr0031,"MINI DOLL, HEAD, FEMALE, NO. 31",13 +11816pr0100,"MINI DOLL, HEAD, NO. 100",13 +11816pr0101,"MINI DOLL, HEAD NO. 13",13 +11816pr0102,"MINI DOLL, HEAD, NO. 111",13 +11816pr0103,"MINI DOLL, HEAD, NO. 103",13 +11816pr0104,"MINI DOLL, HEAD, NO. 104",13 +11816pr0107,"MINI DOLL, HEAD, NO. 107",13 +11816pr0108,"MINI DOLL, HEAD, NO. 108",13 +11816pr0109,"MINI DOLL, HEAD, NO. 109",13 +11816pr0113,"MINI DOLL, HEAD, NO. 113",13 +11816pr1012,"MINI DOLL HEAD, MALE 1, NO. 12",13 +11818,"Minifig Head Modified Friends Male (aka HEAD, MALE 1) [Plain]",24 +11818pr0001,"Minifig Head Modified - Friends Male - Light Brown Eyes, Light Brown Beard and Closed Mouth Print",13 +11818pr0002,"Minifig Head Modified - Friends Male - Blue Eyes, Black Eyebrows [Disney Princess Eric]",13 +11818pr0003,"Minifig Head Modified - Friends Male - Dark Brown Eyes, Eyebrows and Goatee Print",13 +11818pr0004,"Minifig Head Modified - Friends Male - Brown Eyes, Black Eyebrows and Open Smile Print",13 +11818pr0006,"HEAD, MALE 1, DEC. NO. 6",13 +11818pr0007,"HEAD, MALE 1, DEC. NO. 7",13 +11818pr0008,"HEAD, MALE 1, DEC. NO. 8",13 +11818pr0009,"Minifig Head Modified Friends Large with Lime Eyes, Smile with Teeth, and Lime Elves Tribal Print (Farran)",13 +11818pr0010,"MINI DOLL HEAD, MALE 1 NO. 10",13 +11818pr0011,"Minifig Head Modified Friends - Male with Tan Eyes, Half Smile and Closed Mouth",13 +11833,Plate Round 4 x 4 with 2 x 2 Hole,21 +11835,DUPLO SHOWER CURTAIN,4 +11836,DUPLO SKIRT,4 +11854,Duplo Candle with Flame Print,4 +11873,"Dino Leg Large (Rear) Triceratops with Pin, Tan Nails and Reddish Brown and Dark Brown Print - Right",28 +11878,"Dino Leg Large (Rear) Triceratops with Pin, Tan Nails and Reddish Brown and Dark Brown Print - Left",28 +11883,"Dino Leg Small (Front) Triceratops with Pin, Tan Nails and Reddish Brown and Dark Brown Print - Right",28 +11887,"Dino Leg Small (Front) Triceratops with Pin, Tan Nails and Reddish Brown and Dark Brown Print - Left",28 +11891,Minifig Hair Swept Back with Long Beard,27 +11893,Dino Body Triceratops with Reddish Brown Top with Dark Brown Print,28 +11895,Minifig Torso with Molded Shoulder and Waist Extensions,13 +11895pr0001c01,Minifig Torso with Molded Shoulder and Waist Extensions - Breastplate with Silver Edges Print - Red Arms - Black Hands,13 +118t1,Heroica Playmat,17 +11900,Minifig Hair Long with Beard Tied in Sections [Gloin],27 +11906,Minifig Hair Small Braids and Fan Shaped Ponytail,13 +11907,Minifig Hair Spiked with Braided Beard and Ponytail,13 +11908,Minifig Hair Long Wavy with Ragged Bottom Edge,13 +11911,"Minifig Beard, Parted with Hair",27 +11920,Sticker Sheet for 41004-1,17 +11921,"Duplo Horse with one Stud and Raised Hoof, Gold Mane & Tail Print",4 +11923,Duplo Tiger Adult New Style,4 +11924,"Duplo Tiger Cub, Raised Paw",4 +11928,"MILK BOTTLE, DEC.",24 +11929,Duplo Turtle with Green Back,4 +11938,Torso Plain / White Bird Wings,13 +11939,Duplo Brick 2 x 2 x 2 with Number 1 Green print,4 +11940,C&L 4,4 +11941,C&L 7,4 +11942,Duple Brick 2x2x2 C&L 10,4 +11946,"Technic, Panel Fairing #21 Very Small Smooth, Side B",40 +11947,"Technic, Panel Fairing #22 Very Small Smooth, Side A",40 +11949,Technic Steering Portal with 2 Pin Holes and 2 Ball Joint Arms,25 +11950,Technic Steering Portal with 2 Pin Holes,25 +11953,Technic Grabber Arm Claw with 3L Thick Beam [Type 1],26 +11954,Technic Panel Curved 11 x 3 with 10 Pin Holes through Panel Surface,40 +11955,Technic Gear 8 Tooth No Friction,52 +11957,Tire 100.6 x 22 Motorcycle,29 +1196stk01,Sticker for Set 1196 - (40218/4143950),17 +11970,Duplo 2 x 6 Car Base with Mudguards [Complete Assembly],4 +1197stk01,Sticker for Set 1197 - (40218/4143950),17 +120070,U.S.S. Constellation Poster,17 +12011,Duplo Cone 2 x 2 Square Base with White Reflective Safety Stripes Print,4 +12014,"BOX WITH HANDLE, DEC. CARGO",4 +12017,"LOCO FRONT, GODS, DEC. STRIPES",4 +12022,Duplo Bear Adult New Style,4 +12023,Duplo Polar Bear with Face Print,4 +12024,Duplo Bear Cub New Style,4 +12029,"Duplo Giraffe Adult, New Style (5634)",4 +120317,Blacktron Super Model Instructions,17 +12041,Fence with Red Stripes Print,4 +12043,Duplo Lion Adult Female New Style,4 +12044,Duplo Lion Adult Male New Style,4 +12045,"Duplo Alligator Type 3 - Mouth Opens, Wide Snout",4 +12046,"LIONS CUB, DEC.",4 +12053,COW "NO.1" FRONT,4 +12054,Duplo Calf White Face Print,4 +12057,Duplo Cow Baby (Calf) Front Leg Forward with Black Spots Print,4 +12058,Duplo Pig - Single Back Stud,4 +12061,"Duplo Cat, Kitten Striped with White Chest and Mouth Print",4 +12062,Duplo Sheep - Single Back Stud,4 +120626,"Paper, Cardboard Punch-outs for Set 9610",17 +120630,"Paper, Cardboard Punch-outs for Set 9614 Instruction Book 1",17 +12067,Duplo Food Bananas,4 +12099,Duplo Motorcycle with Rubber Wheels and Headlights and Blue 'POLICE' Print,4 +12109,Duplo Car Body with 2 Studs on Back and Yellow Headlights and Zebra Stripes Print (fits over Car Base 2 x 4),4 +12113,"Duplo Utensil Telephone, Mobile with Keypad with Numbers and Display of Man Print",4 +12117,"Duplo Tiger Cub, Raised Paw",4 +12146,"Duplo Panda, Sitting",4 +12147,"TANK TOP 4X4X2, DEC. FIRE",4 +12150,"Duplo Giraffe Baby, New Style",4 +122c01,Plate Special 2 x 2 with Wheels Red,29 +122c02,Plate Special 2 x 2 with Wheels White,29 +122c02assy2,Plate Special 2 x 2 with White Wheels and Black Tyres Offset Tread Small (122c02 / 3641),29 +122c02assy3,Plate Special 2 x 2 with White Wheels with Black Tyres Offset Tread Medium (122c02 / 4084),29 +12531,"4WD W. WAG. 4X8, DEC. NO. 3",4 +12547,"Cloth Bag (Spider Net, Web)",27 +12549,Minifig Mask Bird (Eagle),27 +12549pr0001,"Minifig Headgear Mask - Eagle with Yellow Beak, Gold Headdress and Blue Feathers Print",27 +12549pr0002,Minifig Mask Bird (Eagle) with Yellow Beak and Silver Feathers Print,13 +12549pr0003,Minifig Mask - Eagle with Yellow Beak and Medium Blue Feathers Print,13 +12549pr0004,"Minifig Headgear Mask Bird [Eagle] with Yellow Beak, Medium Blue Feathers and Black Eye Circles Print",27 +12549pr0005,Minifig Mask - Eagle with Yellow Beak and Blue Eyes Print,27 +12549pr0006,"Minifig Mask Bird (Eagle) with Yellow Beak, Red Tiara and Blue Feathers Print",27 +12550,Minifig Mask Bird (Raven) [Plain],24 +12550pr0001,Minifig Mask Bird (Raven) with Gold Beak and Red Markings Print,27 +12550pr0002,Minifig Headgear Mask Bird [Raven] with Silver Beak and Red Markings Print,27 +12550pr0003,Minifig Mask - Chima Raven with Gold Beak and Gold Markings Print,27 +12550pr0005,Minifig Mask - Chima Raven with Dark Bluish Gray Beak and Silver Eyepatch Print,27 +12551,Minifig Mask Chima Crocodile (aka ANIMAL NO. 5) [Plain],24 +12551pr0001,Minifig Mask Chima Crocodile with Teeth and Red Scar Print,27 +12551pr0002,Minifig Mask Crocodile with Teeth and Dark Green Spots Print,27 +12551pr0003,"Minifig Mask Chima Crocodile with Teeth, Earrings and Olive Green Stripes Print",27 +12551pr0004,Minifig Mask Chima Crocodile with Gold Teeth and Black Diamonds Print,27 +12551pr0005,Minifig Mask Chima Crocodile with Silver Lower Jaw Print,27 +12551pr0007,"Minifig Mask Crocodile with Teeth, Yellowish Green Lower Jaw and Black Scale Lines Print",27 +12551pr0008,Minifig Mask Crocodile with Metallic Silver Lower Jaw and Armor with Rivets and Dark Green Spots Print,27 +12551pr0009,"Minifig Mask Crocodile with Teeth, Tan Lower Jaw and Dark Green Scales Print",27 +1256stk01,Sticker for Set 1256 - (22648/4129816),17 +12592,Wheel Base 2X4 with 27.5 Wheel,4 +125c01,Boat Hull Unitary 24 x 6 x 3 Complete Assembly,35 +12600c01,"Duplo Car Base 6 x 10 x 1 1/2 with Medium Azure Wheels, Green String and Red Handle Cone",4 +12602,Duplo Fence Railing with 6 Posts,4 +12605,Sticker Sheet for 70500-1,17 +12607,Minifig Head Modified Ninja Turtle [Plain],13 +12607ass01pr01,Minifig Head Modified Ninja Turtle with Blue Mask and Frown Print (Leonardo),13 +12607ass01pr02,Minifig Head Modified Ninja Turtle with Blue Mask and Teeth Print (Leonardo),13 +12607ass01pr03,"Minifig Head Modified Ninja Turtle with Blue Mask, Scowl and Scratches Print (Leonardo)",13 +12607ass01pr04,Minifig Head Modified Ninja Turtle with Blue Mask and Breathing Apparatus Print (Leonardo),13 +12607ass02pr01,Minifig Head Modified Ninja Turtle with Orange Mask and Smile Print (Michelangelo),13 +12607ass02pr02,Minifig Head Modified - Ninja Turtle Michaelangelo with Orange Mask and Tongue Out Print,13 +12607ass02pr03,Minifig Head Modified Ninja Turtle with Orange Mask and Scowl Print (Michelangelo),13 +12607ass02pr04,Minifig Head Modified Ninja Turtle with Orange Mask and Sneer Print (Michelangelo),13 +12607ass03pr01,Minifig Head Modified Ninja Turtle with Red Mask and Frown Print (Raphael),13 +12607ass03pr02,Minifig Head Modified Ninja Turtle with Red Mask and Teeth Print (Raphael),13 +12607ass03pr03,Minifig Head Modified Ninja Turtle with Red Mask and Mouth Muffle Print (Raphael),13 +12607ass03pr04,Minifig Head Modified Ninja Turtle with Red Mask and Teeth Showing on One Side Print (Raphael),13 +12607ass04pr01,Minifig Head Modified Ninja Turtle with Dark Purple Mask and Frown Print (Donatello),13 +12607ass04pr02,Minifig Head Modified Ninja Turtle with Dark Purple Mask and Missing Tooth Scowl Print (Donatello),13 +12607ass04pr03,Minifig Head Modified Ninja Turtle with Dark Purple Mask and Goggles Print (Donatello),13 +12607ass04pr04,Minifig Head Modified Ninja Turtle with Dark Purple Mask and Breathing Apparatus Print (Donatello),13 +12608,The Kraang,28 +12609,Minifig Turtle Shell with Horizontal Belt [Plain],24 +12609pr0001,Minifig Turtle Shell with Dark Brown Horizontal Belt Print,27 +12610,Minifig Turtle Shell with Horizontal and Diagonal Belt [Plain],24 +12610pr0001,Minifig Turtle Shell with Dark Brown Horizontal and Diagonal Belt Print,27 +12611,Minifig Head Modified Rat [Plain],24 +12611pr0001,"Minifig Head Modified Rat with Red Eyes, White Nose and White Goatee Print",13 +12612,"Torso/Head Alien, Dogpound [Plain]",24 +12612pr0001,"Torso/Head Alien, Dogpound Print",13 +12613,"Arm Dogpound, Right [Plain]",24 +12613pr0001,"Arm Dogpound, Right",13 +12614,"Arm Dogpound, Left [Plain]",24 +12614pr0001,"Arm Dogpound, Left",13 +12615,"Torso/Head Alien, Fishface [Plain]",24 +12615pr0001,"Torso/Head Alien, Fishface Print",13 +12617,Minifig Helmet Trident Shaped with Face Mask,27 +12618,Minifig Shoulder Pads with Spikes,27 +12622,"Vehicle Base 5 x 10 x 2 1/2 with Mudguards, Wheel Pins and 6 x 2 Centre Recess with 3 Holes",36 +12651,Duplo Furniture Chair with 4 Studs and Rounded Back,4 +12659,BRICK 2X2X1.5 OUTSIDE BOW NR.1 WINDOW,4 +12693,BRICK 2X10X2 ARCH NO. 1 Circus,4 +12694,Duplo Brick 2 x 2 with 6 Stars print,4 +12695,DUPLO CURVE 2X4X2 NO. 1,24 +12708,Hemisphere [Bauble Half] [Plain],20 +12708pr01,Hemisphere [Bauble Half] with White Dots Print,20 +12708pr02,Hemisphere [Bauble Half] with White Snowflakes Print,20 +12744,"Duplo Horse with one Stud and Raised Hoof with Black Mane, Tail and Spots Print",4 +12752,Sticker Sheet #1 for Set 60008-1 (12752/6021256),17 +12758,Duplo Car Body Truck with Lego Logo and Silver Headlights on Front Print (Fits over Car Base 2 x 4),4 +12783,sticker sheet for 70012,17 +12785,Brick 1 X 2 X 2 with Ornate Mirror Print,4 +12785pr0002,"Duplo, Brick 1 x 2 x 2 with Silver Mirror and Gold Frame Print",4 +12799,Pullback Motor 6 x 3 x 5,44 +12809,MCQUEEN,24 +12825,Tile Special 1 x 1 with Clip with Rounded Tips,15 +12857,"Minifig Cape Cloth, Serrated Edges",27 +12884,Bucket 1 x 1 x 1 Straight,7 +12885,Minifig Paint Roller Brush Handle,27 +12886,Minifig Helmet Crest,27 +12886pr0001,Minifig Crest with Red Plumes Print,27 +12887,Minifig Hair Long Tied Back [Plain],24 +12887pr0001,Minifig Hair Long Tied Back with Ribbon Print (Revolutionary Soldier),13 +12887pr0002,Minifig Hair Long Tied Back with Black Ribbon Print (Bluecoat Admiral),13 +12888,Dog - Chihuahua [Plain],24 +12888pr0001,Dog - Chihuahua with Basic Face Print,28 +12889,Minifig Hair Entwined Snakes (Medusa),13 +12890,Minifig Hair Female Long Smooth,13 +12891,Seagull [Plain],24 +12891pr0001,Seagull with Yellow Beak and Dark and Light Gray Wings Print,28 +12892,"Minifig Cap, Bumblebee [Plain]",13 +12892pr0001,"Minifig Cap, Bumblebee with Black Antennae Print",27 +12893,Minifig Hair Male Print Bald [Plain],24 +12893pr0001,Minifig Hair Male Print Bald with Light Bluish Gray Hair and Combover Lines Print,27 +12894,Minifig Hat - Cone [Plain],24 +12894pr0001,Minifig Hat - Cone with Black Band and Pom Poms Print,27 +12895,Minifig Captain's Cap [Plain],27 +12895pr0001a,Minifig Captain's Cap with Black Visor and Gold Braid Print,27 +12895pr0001b,HAT NO. 3 NO. 1,27 +12895pr0034,Hat with batman print,27 +12897,Minifig Backpack - Skydiver,27 +12898,Minifig Paintball Gun,27 +12899,Minifig Helmet Elaborate [Plain],24 +12899pr0001,Minifig Helmet Elaborate with Lime Paint Spot Print,27 +128stk01,Sticker for Set 128-1 - Sheet 1 (190225),17 +128stk02,Sticker for Set 128-1 - Sheet 2 (190227),17 +12937,Duplo Bear Adult New Style,4 +12938,Duplo Tiger Adult New Style,4 +12939,Brick Arch 1 x 6 x 2 - Very Thin Top without Reinforced Underside,37 +12941,"Hero Factory Cape, Large",41 +12959,"DUPLO OVAL 2X4X2 ""NR.1""",4 +12986,MINI UPPERPART/BASEBALL GLOVE,13 +12993,"Minifig Head Modified - Galaxy Squad Mosquitoid, Compound Eyes, Long Proboscis, with Yellowish Green Print",13 +13037,"Leg Mechanical, Fishface",13 +13039,Duplo Brick 1 x 3 x 2 Triangle Road Sign with Construction Worker Print,4 +13048,Sticker for Set 79003 - (13048/6023158),17 +13052,Sticker Sheet for 79010-1,17 +13074,Sticker Sheet for 42007-1,17 +13124,"DUPLO BRICK 2X2X2, R=15 NO. 4",24 +13128,"DUPLO BRICK 2X2X2, R=15 NO. 5",24 +13131,"DUPLO BRICK 2X2X2, R=15 NO. 6",24 +13132,DUPLO BRICK 2X2 NO. 3,4 +13133,DUPLO BRICK 2X2 NO. 4,4 +13135,DUPLO BRICK 2X2 NO. 5,4 +13136,DUPLO BRICK 2X2 NO. 2,4 +1314c04,Duplo Helicopter Body Medium with Cabin (Skids not Removable) with Red Base and EMT Star of Life Print,4 +1314c04pb01,Duplo Helicopter Body Medium with Cabin (Skids not Removable) with Red Base and EMT Star of Life Print,4 +13161,Brick 1 X 2 X 2 with Bow and Gift Tag Print,4 +13164,Duplo Brick 2 x 2 x 2 with Number 2 Blue Print,4 +13165,Duplo Brick 2 x 2 x 2 with Number 3 Orange Print,4 +13168,Duplo Brick 2 x 2 x 2 with Number 5 Yellow Print,4 +13170,Duplo Brick 2 x 2 x 2 with Number 6 Red Print,4 +13171,Duplo Brick 2 x 2 x 2 with Number 8 Green Print,4 +13172,Duplo Brick 2 x 2 x 2 with Number 9 Orange Print,4 +13194,Minifig Headdress SW Tholoth [Plain],24 +13194pr0001,"Minifig Headdress SW Tholoth with Dark Tan, Blue and Brown Print",27 +13195,Minifig Head Modified Yoda Curved Ears [Plain],24 +13195pr0001,Minifig Head Modified Yoda Curved Ears with Black Eyes and White Pupils Print,13 +13196,Minifig Head Modified - Max Rebo [Plain],24 +13196pr0001,Minifig Head Modified - Max Rebo,13 +13197,Minifig Head Modified Coleman Trebor [Plain],24 +13197pr0001,Minifig Head Modified Coleman Trebor,13 +13198,Minifig Hair - Long Braided Ponytail [Plain],24 +13198pr0001,Minifig Hair - Long Braided Ponytail with Gold Adornments Print (Leia),13 +13206,Warg Body [Plain],24 +13206pr0001,Warg Body with Dark Red Nose Print,28 +13206pr0002,Warg Body with Dark Brown Nose Print,28 +13206pr0003,Warg Body with Black Nose Print,28 +13220,"BOX W/SEAT 4X4X1,5, DEC. TRAIN",4 +13233,"Minifig Cape Cloth, Extended with Round Bottom and 2 Top Holes",27 +13246,RAMP W. HANDLE AND HINGES,4 +13247,Duplo Food French Bread Loaves with Short Side Extensions,4 +13249,Hips Mechanical,13 +13250,"Leg Mechanical, Darth Maul",13 +13251,Minifig Hair Female with Elaborate Knot Bun,13 +13252,Windscreen 6 x 13 x 2,47 +13255,Train Crossing Sign,4 +13258,DUPLO ROOF TILE 2X2X1 1/2 NO. 2,4 +13269,Slope 45° 6 x 4 Double / 33° [Train Roof],6 +13270,"Body Giant, Goblin King",13 +13276,Minifig Shoulder Cape,27 +13277,Sticker Sheet for 70003-1,17 +13285,Minifig Pauldron Cloth,27 +13285pr0001,Minifig Pauldron Cloth with Black Neck and 2 Thick Black Stripes Print,27 +13285pr0002,Minifig Pauldron Cloth with 4 Thin Gray Stripes Print,27 +13285pr0005,"Minifig, Armor Pauldron Cloth with Black Neck and 2 Black Circles Print",27 +13285pr01,Minifig Cloth Pauldron with Black Neck Print,27 +13285pr02,Minifig Pauldron Cloth with Black Neck and Black Stripes Print,27 +13288,MAST 4X4X10,4 +13289,YARD,4 +132a,Tyre Smooth Old Style - Small,29 +132b,Tyre Smooth Old Style - Small Hollow (Air Tyre),29 +132c,Tyre Smooth Old Style - Small with Teeth,29 +13336,Turtle,28 +13336pr0001,Turtle with Reddish Brown Spots Print,28 +13336pr0002,Turtle with Dark Purple Spots and Dark Purple and Orange Shell Print,28 +13341,Duplo Crane Arm with Locking Ring and String Drum Holder,4 +13349,Wedge 4 x 4 Triple Inverted [4 Connections between Front Studs],6 +13355,Duplo Plate 2 x 3 with 4 Studs and Hinge,4 +13357,Sticker Sheet for 75001-1,17 +13358,Duplo Train Crossing Gate Base / Crane Base with Bottom Hole,4 +13361,Minifig Mask Gorilla [Plain],24 +13361pr0001,"Minifig Mask - Chima Gorilla with Gray Face, Light Yellow Face Paint and Pink Flowers Print",27 +13361pr0002,Minifig Mask - Chima Gorilla with Gray Face and White Tribal Sun Print,13 +13361pr0003,Minifigs Mask - Chima Gorilla Face Print [Gorzan],13 +13361pr0004,Minifig Mask Gorilla with Gray Face and Fangs Print,13 +13361pr0005,"Minifig Mask Gorilla with Gray Face and Light Yellow Face Paint, Closed Mouth Print ",27 +13392,"Dolphin, Jumping with Bottom Axle Holder [Plain]",28 +13392pr0001,"Dolphin, Jumping with Bottom Axle Holder, Blue Eyes and Eyelashes Print",28 +13392pr0002,"Dolphin, Jumping with Bottom Axle Holder and Blue Eyes Print",28 +13392pr0003,"Dolphin, Jumping with Bottom Axle Holder and Blue Eyes and White Decorative Trim on Forehead Print",28 +13393,Friends Deer Fawn [Plain],24 +13393pr0001,Friends Deer Fawn,28 +13415,"SLEEPING BAG 5X8, DEC. 1",4 +13457,"SLEEPING BAG 5X8, DEC. 2",4 +13459,Road Sign Round on Pole,38 +13523,ADULT FIGURE NO. 3 2013 V2,4 +13525,ADULT FIGURE NO. 4 2013 V2,4 +13527,ADULT FIGURE NO. 5 2013 V2,4 +13530,"Duplo Train Locomotive Cabin Roof 2 x 4 Studs, 4 Medium Windows",4 +13531pr0001,Duplo Train Steam Engine Front with Yellow Lights Print,4 +13531pr0002,Duplo Steam Engine Front - Yellow Headlights with Black Curved Line - Yellow Danger Stripes Print,4 +13532,Duplo Train Steam Engine Cabin Roof 2 x 3 Studs,4 +13533,Plane Undercarriage - Complete Assembly,4 +13535,Boat 4 X 7,4 +13538,CHILD FIGURE NO. 4 2013,4 +13543,Baseball Glove,13 +13547,Slope Curved 4 x 1 Inverted,37 +13548,Wedge 2 x 2 (Slope 45° Corner),6 +13549,Minifig Sword - Double Chi Blade Serrated with Bar Holder,27 +13561,Sticker Sheet #2 for Set 60008-1 (13561/6030474),17 +13562,Minifig Pistol Revolver - Small Barrel [New Style],27 +13564,Cattle Horn - Long,28 +13565,Minifig Hat - Very Wide Brim - Outback Style [Fedora],27 +13565pr0001,"Minifig Hat, Very Wide Brim, Outback Style (Fedora) with Gold Sheriff Star Print",27 +13571,Minifig Tomahawk [Plain],24 +13571pr01,Minifig Tomahawk with Flat Silver Blade,27 +13583,WALL DECORATION 1,4 +13584,WALL DECORATION 2,4 +13585,WALL DECORATION 3,4 +13586,"Paper, Duplo Wallpaper with Barn Interior Print (fits inside 11335)",4 +13607,Trailer Dump Body,4 +13608,Minifig Ray Gun - Rounded Heat Diffusers,27 +13609,"Duplo Rotor 4 Blade, 4 Diameter (Propeller)",4 +13610,Sticker for Set 60011,17 +13664,Minifig Hair Long with Feathers and Bandana,24 +13664pr0001,Minifig Hair Long with Feathers and Light Bluish Gray / Olive Green Bandana Print,13 +13665,Crow with 1.5 Bar,28 +13683,Large Figure Head Modified Chima Eagle [Plain],24 +13683pr01,Large Figure Head Modified Chima with Eagle Print,41 +13691,Large Figure Head Modified Chima Gorilla [Plain],24 +13691pr01,Large Figure Head Modified Chima with Gorilla Print,41 +13695,Cattle Skull,28 +13699,Large Figure Head Modified Chima Crocodile Lower Jaw [Plain],24 +13699pr0001,Large Figure Head Modified Chima Crocodile Lower Jaw with Teeth Print,41 +13703,Brick 1 x 3 x 2 Round with Fuel Pump Print,4 +13708,Large Figure Head Modified Chima Raven [Plain],24 +13708pr01,Large Figure Head Modified Chima with Raven Print,41 +13722,DUPLO BOW 2X6X2 NO.2,4 +13731,Slope Curved 10 x 1 [Symmetric Inside Ridges],37 +13739,DUPLO BRICK 1X2X2 NO.10,4 +13744,"Horse Barding, Smooth Edge [Plain]",24 +13744pr0001,"Horse Barding, Smooth Edge with Black Dragon Heads and Silver Trim Print",28 +13744pr0002,"Horse Barding, Smooth Edge with Lion Heads and Gold Armor Plates Print",28 +13745,"Horse Battle Helmet, Stud on Top Type 2",28 +13746,"Minifig Hat with Pin, Ladies Fedora with Large Bow [Plain]",27 +13746pr0001,"Minifig Hat with Pin, Ladies Fedora with Large Red Bow and Black Feather Print",27 +13746pr0002,"Minifig Hat with Pin, Ladies Fedora with Large Red Bow and Red Feather Print",27 +13747,Dragon Head Lower Jaw with Round Hole on Front [Plain],24 +13747pr0001,Dragon Head Jaw with Round Hole on Front and White Teeth Print,28 +13748,"Minifig Hat with Hair, Gambler Style Cowboy with Long Hair",24 +13748pr0001,"Minifig Hat with Hair, Gambler Style Cowboy with Long Dark Brown Hair",13 +13750,"Minifig Hair Female Long and Braided on Right, Hole on Top",27 +13753,Minifig Hair Long Braided with Ties and Braids,24 +13753pr0001,Minifig Hair Long Braided with White Ties and Brown Braids,13 +13754,Container - Alien Pod Section 2 x 4 x 2,7 +13756,Glass for Windscreen 2 x 6 x 2,47 +13757,Insectoid Body [Plain],24 +13757pr0001,Insectoid Body with Dark Red Eyes Print,13 +13758,Minifig Head Modified Galaxy Squad Alien Mantizoid with 4 Eyes and Antennae [Plain],24 +13758pr0001,Minifig Head Modified Galaxy Squad Alien Mantizoid with 4 Eyes and Antennae and Dark Red Mandibles Print,13 +13760,Windscreen 2 x 6 x 2 Train without Glass,47 +13761,"Minifig Hat with Hair, Cavalry with Crossed Swords and Long Hair [Plain]",27 +13761pr0001,"Minifig Hat with Hair, Cavalry with Gold Crossed Swords and Dark Tan Long Curly Hair Print",27 +13765,"Minifig Hair, Long Wavy with Braid, Headband and Elf Ears [Plain]",27 +13765pr0001,"Minifig Hair, Long Wavy with Braid, Silver Headband and Light Flesh Elf Ears Print",27 +13765pr0002,"Minifig Hair, Long Wavy with Braid, Gold Headband and Light Flesh Elf Ears Print",27 +13766,Minifig Hair Long Wavy with Braid and Elf Ears [Plain],27 +13766pr0001,Minifig Hair Long Wavy with Braid and Light Flesh Elf Ears Print,27 +13767,Minifig Helmet Spiked [Plain],24 +13767pr0001,Minifig Helmet Spiked with Hood Black Print,27 +13768,Minifig Hair Long Straight with Centre Part and Beard,27 +13768pr0001,Minifig Hair Long Straight with Centre Part and Light and Dark Bluish Gray Beard Print,27 +13770,"Tap 1 x 2 with Dual Handles, Small",27 +13777,Plane Body Complete with Disney Planes Dusty Print,4 +13778,Duplo Plane - El Chupacabra,4 +13780,Duplo Plane - Ripslinger,4 +13781,Duplo Light Truck Body Complete with Disney Planes Chug Print,4 +13783,Minifig Rope Coil,27 +13784,Minifig Hair - Female Long with Braided Pigtails,13 +13785,Minifig Hair Ponytail and Fringe,13 +13786,Cat Standing New Style,28 +13786pr0001,Cat Standing New Style with White Chest and Muzzle and Bright Pink Nose Print,28 +13786pr0002,"Cat Standing New Style with Dark Tan Chest and Muzzle, Brown Stripes, and Bright Pink Nose Print",28 +13786pr0003,Cat Standing New Style with Yellow Eyes and Dark Bluish Gray Nose and Mouth Print,28 +13787,Minifig Hat - Elf Ears [Plain],24 +13787pr0002,Minifig Hat - Elf Ears with Bright Green Hat Print,13 +13788,Minifig Hat - Wide Brimmed,27 +13788pr0001,Minifig Hat - Wide Brimmed with Rope and Patch Print,27 +13789,Minifig Police Helmet,13 +13789pr0001,Minifig Police Helmet with Silver Badge Print,13 +13790,Minifig Truncheon,27 +13791,Minifig - Islander Tiki Mask [Plain],24 +13791pr0001,"Minifig - Islander Tiki Mask with Red, Green and Tan Tribal Print",27 +13792,Minifig Helmet Welding with Visor [Plain],24 +13792pr0001,Minifig Helmet Welding with Dark Blue Stripes on Black Visor Print,27 +13793,Minifig Welding Gun,27 +13795pr0002,Brick 2 x 4 Curved Top with Disney Planes Fuel Logo printed on Both Curved Ends,4 +13799,DUPLO BRICK 1X2X2 NO.5,4 +13801,FLAG 4X2X1 NO.3,4 +13802,"DUPLO BRICK 2X2X2, R=15 NO.7",4 +13804,DUPLO BRICK 1X2X2 NO.7,4 +13808,Minifig Saxophone,27 +13808pr0001,Minifig Saxophone with Black Mouthpiece Print,27 +13809,Minifig Head Modified - Yeti (aka MONSTER HEAD NO. 2) [Plain],24 +13809pr0001,Minifig Head Modified - Yeti with Shaggy Hair and Bright Light Blue Face Print [Col11-8],13 +13809pr0002,Minifig Head Modified Yeti with Shaggy Hair and Reddish Brown Fur and Beaver Teeth Print,13 +13809pr0003,MONSTER HEAD NO. 2 NO. 3,13 +13812,Minifig Helmet Space with Breathing Mask [Plain],24 +13812pr0001,Minifig Helmet Space with Breathing Mask and Black and Silver Markings Print,27 +13813,Minifig Armor Space with Shoulder Protection and Breastplate [Plain],24 +13813pr0001,Minifig Armor Space with Shoulder Protection and Breastplate with Black and Silver Markings Print,27 +1381cdb01,"Paper, Cardboard Backdrop for Set 1381 - (4173448)",17 +13820,Large Figure Head Modified Chima Wolf [Plain],24 +13820pr01,Large Figure Head Modified Chima with Wolf Print,41 +1382stk01,Sticker for Set 1382 - Sheet 1 (43440/4172510),17 +1382stk02,"Sticker for Set 1382 - Sheet 2, Mirror Square (43444/4172407)",17 +13832,Brick 2 X 10 with 'Ripslinger 13 Ripslinger' Print,4 +13841,"Minifig Head Modified Geonosian Poggle the Lesser with Black Eyes, Nose and Mouth Print",13 +13845pb01,"Minifig Hat, Royal Guard Bearskin Short with Blue 'BR' on White Background Print",27 +13853,Duplo Seal with Eyes Print and Raised Back,4 +13856,"Duplo Car Body Jeep with Headlights, Zebra Stripes and Yellow 'ZOO' Print",4 +13858,Duplo Brick 2 x 3 with Curved Top and Eye Print on Both Sides,4 +13862,"Duplo Brick 2 x 2 x 2 Curved Top with Girl Face, Open Smile, Crown with Jewel Print",4 +13869,Duplo Brick 2 x 2 with Eye with White Spot and Curve Print on Both Sides,4 +13870,Duplo Brick 2 x 3 x 2 with Curved Top and Eye Print on Both Sides,4 +13879,"SAIL, DUPLO, FOIL, 170mmx175mm",4 +13880,CUTLASS,4 +13882,Plastic Tepee Cover,38 +13882pr0001,Plastic Tepee Cover with Western Indians Motifs Print,38 +13884,Duplo Cape [El Chupacabra],4 +13946,"Minifig Headdress Indian with Horns, Long Braided Hair, and Tribal Headband [Plain]",27 +13946pr0001,"Minifig Headdress Indian with Horns, Long Braided Hair, and Tribal Headband with Tassels Print",27 +13952,Minifig Laser Gun Kryptonian,27 +13965,Brick Arch 1 x 3 x 3 [Gothic],37 +13968,Duplo Train Steam Engine Front with Yellow Lights Print,4 +13969,Duplo Train Cab / Tender Base with Bottom Tubes and 4281 Locomotive Print on Both Sides,4 +13970,Duplo Train Cab / Tender Base with Bottom Tubes and Train in Oval Print on Both Sides,4 +13971,Wheel 18 x 8 with Fake Bolts and Deep Spokes with Inner Ring,29 +13973,Round Sign with Clock Print,4 +13975,Duplo Train Cab / Tender Base with Bottom Tubes with Box and Arrows Print on Both Sides,4 +13976,"Duplo Train Locomotive Front with Silver Headlight, 10508 and V Stripes Print",4 +13986,Minifig Armor Space with Shoulder Protection and Spike on Right Shoulder [Plain],24 +13986pr0001,Minifig Armor Space with Shoulder Protection and Spike on Right Shoulder with Silver Shoulder Pad and Chestplate Print,27 +14,Road Sign Round,38 +14013,Duplo Winch Drum Narrow Ridged with String and Black Hook,4 +14014,"Minifig Head Modified Friends Boy (aka HEAD, BOY 1) [Plain]",24 +14014pr0001,"Minifig Head Modified - Friends Male - Brown Eyes, Black Lips and Open Mouth Print",13 +14014pr0002,Minifig Head Modified - Friends Male - Light Blue Eyes and Open Mouth Print,13 +14014pr0005,"Minifig Head Modified - Friends Male - Light Brown Eyes, Eyebrows and Open Smile Print",13 +14036,Salacious B. Crumb,13 +14045,Minifig Ear Protectors / Headphones,27 +14094,Dump Truck Body 4 X 4 X 2,4 +14119,Cloth - Carousel Roof Section,38 +14137,"Hinge Plate 1 x 8 with Angled Side Extensions, Squared Plate Underside",18 +14143,Sticker Sheet for 79108-1,17 +14149,Technic Rubber Foot for Chain Tread 38,26 +14181,Wedge Plate 4 x 9 with Stud Notches,49 +14187,Plastic Sail 17 x 24,24 +14187pr0001,Plastic Sail 17 x 24 with Reddish Brown Lines Print,38 +141ac96,Electric Wire 4.5V with Two Light Gray 2-Prong Type 1 Connectors [96 Studs Long],45 +14210,String with End Studs and Minifig Grips 21L,31 +14211,LOCO BASE W. ENGINE 4x8x5,4 +14218,BOAT 10X18X1,4 +14222,"DUPLO SIGN, ROUND",4 +14222pr0002,"Duplo Brick 1 x 3 x 2 Round Top, Cut Away Sides with Skull and Crossbones in Laurel Wreath Pattern",4 +14226c11,String with End Studs 11L Overall,31 +14226c21,String with End Studs 21L Overall,31 +14226c31,String with End Studs 31L Overall,31 +14226c41,String with End Studs 41L Overall,31 +14248,Sticker for Set 41013,17 +14249,Sticker Sheet for 41006-1,17 +14260,Sticker For Set 42005-1,17 +14262,Sticker for Set 42009,17 +14269,Train Barrier Lever with Red Stripe Print,4 +14273,Minifig Wings with Geonosian Print,27 +14273pr0001,Minifig Wings with SW Geonosian Print,27 +14273pr0002,Minifig Wings with SW Geonosian Zombie Print,27 +14273pr0003,Minifig Wings with SW Geonosian Warrior Print,27 +14274,Sticker for Set 70404 - (14274/6037968),17 +14290,Minifig Mask Skunk [Plain],24 +14290pr0001,Minifig Mask - Chima Fox with Black Face Details and White Ears Print,27 +14290pr0002,Minifig Mask Skunk with White Fur and Lavender Nose Print,13 +14294,SLIDE,4 +14295,Minifig Skirt - Uneven Fringe,27 +14301,Hose Flexible 12L,30 +14306,Cloth Sail Triangular 18 x 34 with Winged Edge and Dark Brown Print ,38 +14309,Plastic Backdrop 7 x 7 with Waterfall Print [79110],38 +14310,Cloth Sail Triangular 12 x 21 with Winged Edge and Dark Brown Print,38 +14320,Minifig Skirt Cloth Long Half,27 +14391,Large Figure Head Modified Super Heroes Iron Man Print,41 +14395,"Brick Arch 1 x 5 x 4 [Continuous Bow, Raised Underside Cross Supports]",37 +14397,Minifig Head Modified - Gingerbread Man [Plain],24 +14397pr0001,Minifig Head Modified - Gingerbread Man,13 +14413,Facet 4 x 4,6 +14417,Plate Special 1 x 2 with 5.9mm Centre Side Ball,9 +14418,Plate Special 1 x 2 5.9mm End Cup,9 +14419,Plate Special 1 x 2 with 5.9mm End Cup and Ball,9 +14441,Duplo Tile 2 x 2 with '1' Print,4 +14442,Duplo Tile 2 x 2 with '2' Print,4 +14443,Duplo Tile 2 x 2 with '3' Print,4 +14444,Duplo Tile 2 x 2 with '4' Print,4 +14445,Duplo Tile 2 x 2 with '5' Print,4 +14446,Duplo Tile 2 x 2 with '6' Print,4 +14447,Duplo Tile 2 x 2 with '7' Print,4 +14448,Duplo Tile 2 x 2 with '8' Print,4 +14449,Duplo Tile 2 x 2 with '9' Print,4 +14450,Duplo Tile 2 x 2 with '0' Print,4 +14498,Sticker Sheet for 75020-1,17 +14518,Shark Body with Three Gill Slits,28 +14519,Sticker Sheet for 70402-1,17 +14520,Brick Special 2 x 4 - 1 x 4 with 2 Recessed Studs and Thin Side Arches,5 +14562,Minifig Pauldron Cloth [Plain],24 +14562pr0001,Minifig Pauldron Cloth with Blue Stripes Print,27 +14618,"Electric, Sensor, Tilt - WeDo Robotics",45 +14682,Vehicle Exhaust Pipe with Technic Pin - Flat End,36 +1468stk01,Sticker for Set 1468,17 +14696,"Technic Chain Link, Reinforced, with Beveled Edge",26 +14704,Plate Special 1 x 2 5.9mm Centre Side Cup,9 +14707,Brick Arch 1 x 12 x 3 Raised Arch,37 +14716,Brick 1 x 1 x 3,11 +14718,Panel 1 x 4 x 2 with Side Supports - Hollow Studs,23 +14719,Tile 2 x 2 Corner,19 +14720,Technic I Beam 3 x 5 Thick [90° Offset Centre Beam Holes],55 +14721,Duplo PLATE 4X4,4 +14728,String Cord Medium Thickness [Undetermined Length],31 +14728c100,String Cord Medium Thickness 100cm,31 +14728c125,String Cord Medium Thickness 125cm,31 +14728c200,String Cord Medium Thickness 200cm,31 +14728c250,String Cord Medium Thickness 250cm,31 +14728c30,String Cord Medium Thickness 30cm,31 +14728c35,String Cord Medium Thickness 35cm,31 +14728c50,String Cord Medium Thickness 50cm,31 +14728c75,String Cord Medium Thickness 75cm,31 +14732,Bear Small with Hole in Top [Plain],24 +14732pr0001,Bear Small with Hole in Top and Blue Eyes Print,28 +14732pr0002,"Bear Small with Hole in Top and Brown Eyes, White Paws and Mouth, Black Nose Print",28 +14732pr0004,Bear Sitting - Dark Azure Eyes - Curling Design on Forehead - Black Nose in Medium Blue Muzzle - Black Claws on Medium Blue Paws Print (Elves Blubeary w/ 1.5 Hole),28 +14733,Friends Penguin [Plain],24 +14733pr0001,"Friends Penguin with Blue Eyes, Orange Beak and Black Feathers Print",28 +14734,Lion Cub [Plain],28 +14734pr0001,"Tiger Cub with Blue Eyes, Dark Pink Nose and Dark Brown Stripes Print",28 +14734pr0002a,Lion Cub with Blue Eyes and Dark Pink Nose Print,28 +14734pr0002b,Lion Cub with Light Green Eyes and White Face Markings Print,28 +14736,Orangutan,28 +14736pr0001,Orangutan with Light Flesh Face and Stomach Print,28 +14736pr0002,Orangutan with Medium Flesh Face and Stomach Print,28 +14769,Tile Round 2 x 2 with Bottom Stud Holder,19 +14769pr0001,Tile Round 2 x 2 with Bottom Stud Holder with Clock Print,10 +14769pr0002,Tile Round 2 x 2 with Bottom Stud Holder with Red Circle Stylized Red Sun Pattern,10 +14769pr0003,"Tile, Round 2 x 2 with Bottom Stud Holder with Airjitzu Lightning Symbol in Green Octagon Pattern",10 +14769pr0004,Tile Round 2 x 2 with Bottom Stud Holder with Fine Mesh Grille Print,10 +14769pr0005,Tile Round 2 x 2 with Bottom Stud Holder with Airjitzu Wave Symbol in Dark Red Octagon Pattern,10 +14769pr0006,LEGO Round Tile 2 x 2 with Pizza Decoration with Bottom Stud Holder (29311),10 +14769pr0007,"Tile, Round 2 x 2 with Bottom Stud Holder with Captain America Star Pattern",10 +14769pr0009,Tile Round 2 x 2 with Bottom Stud Holder with Magenta and Bright Pink Life Preserver Print,10 +14769pr0011,Tile Round 2 x 2 with Bottom Stud Holder with Pizza Print,10 +14769pr0014,Tile Round 2 x 2 with Pizza 12 Pepperoni Print,10 +14769pr028,Tile Round 2 x 2 with Bottom Stud Holder with Brown Paw Print,10 +14769pr086,Tile Round 2 x 2 with Bottom Stud Holder with Tie Fighter Mechanical Print,10 +14769pr1001,Tile Round 2 x 2 with Bottom Stud Holder with Scowling Nixel Face Print,10 +14769pr1002,Tile Round 2 x 2 with Bottom Stud Holder with Grinning Nixel Face Print,10 +14769pr1003,Tile Round 2 x 2 with Bottom Stud Holder with Offset Black Eye Print,10 +14769pr1005,Tile Round 2 x 2 with Bottom Stud Holder with ARC-170 Engine Inlet Print,10 +14769pr1007,Tile Round 2 x 2 with Bottom Stud Holder with White Dot Print,10 +14769pr1008,Tile Round 2 x 2 with Bottom Stud Holder with Grinning Nixel Face Print,10 +14769pr1010,Tile Round 2 x 2 with Bottom Stud Holder with Dart Board Print,10 +14769pr1011,Tile Round 2 x 2 with Bottom Stud Holder with Eye and Eyelid Print,10 +14769pr1012,Tile Round 2 x 2 with Bottom Stud Holder with Fire Print,10 +14769pr1013,Tile Round 2 x 2 with Bottom Stud Holder with Ice Print,10 +14769pr1014,Tile Round 2 x 2 with Fire Power Icon Print,10 +14769pr1015,Tile Round 2 x 2 with Water Power Icon Print,10 +14769pr1016,Tile Round 2 x 2 with Earth Power Icon Print,10 +14769pr1017,Tile Round 2 x 2 with Wind Power Icon Print,10 +14769pr1018,Tile Round 2 x 2 with Bottom Stud Holder with Waffle Print,10 +14769pr1019,Tile Round 2 x 2 with Bottom Stud Holder with Pumpkin Face Print,10 +14769pr1020,Tile Round 2 x 2 with Bottom Stud Holder with Vinyl Record with Magenta Center and Star Print,10 +14769pr1022,Tile Round 2 x 2 with Bottom Stud Holder with Airjitzu Ghost Print,10 +14769pr1023,Tile Round 2 x 2 with Bottom Stud Holder with Airjitzu Ice Symbol Print,10 +14769pr1024,Tile Round 2 x 2 with Bottom Stud Holder with Airjitzu Earth Symbol Print,10 +14769pr1025,Tile Round 2 x 2 with Bottom Stud Holder with Airjitzu Lightning Symbol Print,10 +14769pr1026,Tile Round 2 x 2 with Bottom Stud Holder with Airjitzu Fire Symbol Print,10 +14769pr1027,Tile Round 2 x 2 with Bottom Stud Holder with Ghost Face Print,10 +14769pr1029,Tile Round 2 x 2 with Bottom Stud Holder with Time Gears Print,10 +14769pr1030,Tile Round 2 x 2 with Bottom Stud Holder with Nexo Knights Ammunition Print,10 +14769pr1031,Tile Round 2 x 2 with Bottom Stud Holder with Nexo Knights Globlin Face Print,10 +14769pr1032,Tile Round 2 x 2 with Bottom Stud Holder with Nexo Knights Globlin Face Print,10 +14769pr1033,Tile Round 2 x 2 with Bottom Stud Holder with Starry Eyed Nixel Face Print,10 +14769pr1034,Tile Round 2 x 2 with Bottom Stud Holder with Yellow and Orange Tentacles Print,10 +14769pr1035,Tile Round 2 x 2 with Bottom Stud Holder with Puzzled Nixel Face Print,10 +14769pr1038,Tile Round 2 x 2 with Bottom Stud Holder with White Clockface and Gold Hands Print,10 +14769pr1039,Tile Round 2 x 2 with Bottom Stud Holder with Nexo Knights Globlin Injured Face Print,10 +14769pr1040,Tile Round 2 x 2 with Bottom Stud Holder with Archery Target Print,10 +14769pr1042,Tile Round 2 x 2 with Bottom Stud Holder with Green Foliage Print,10 +14769pr1043,Tile Round 2 x 2 with Bottom Stud Holder with Cross-Eyed Nixel Face Print,10 +14769pr1044,Tile Round 2 x 2 with Bottom Stud Holder with Nixel Face and Eyepatch Print,10 +14769pr1045,Tile Round 2 x 2 with Bottom Stud Holder with Injured Nixel Face Print,10 +14769pr1046,Tile 2 x 2 Round with Bottom Stud Holder with Nixel in Glasses Face Print,10 +14769pr1047,Tile 2 x 2 Round with Bottom Stud Holder with Ninja Nixel Face Print,10 +14769pr1048,Tile 2 x 2 Round with Bottom Stud Holder with 'MIX TV' Print,10 +14769pr1049,Tile Round 2 x 2 with Bottom Stud Holder with Star Wars Eclipse Fighter Logo Print,10 +14769pr1050,Tile 2 x 2 Round with Bottom Stud Holder with Black Batman Logo Print,10 +14769pr1051,Tile Round 2 x 2 with Bottom Stud Holder with Dark Brown Ovals Print,10 +14769pr1054,Tile 2 x 2 Round with Bottom Stud Holder with Roman Numerals Clock Print,10 +14769pr1055,Tile Round 2 x 2 with Bottom Stud Holder with Stylised American Eagle and Flag Print,10 +14769pr1056,Tile 2 x 2 Round with Bottom Stud Holder with Frozen Snowflake Print,10 +14769pr1058,Tile Round 2 x 2 with Bottom Stud Holder with White 'BAM!' over Medium Azure and Red Text Bubbles Print,10 +14769pr1059,Tile Round 2 x 2 with Bottom Stud Holder with 'BOOM' print,10 +14769pr1060,Tile Round 2 x 2 with Bottom Stud Holder with White 'POW!' over Red and Yellow Text Bubbles Print,10 +14769pr1061,Tile Round 2 x 2 with Bottom Stud Holder with Superman Print,10 +14769pr1062,Tile 2 x 2 Round with Bottom Stud Holder - Bumblebee with Shiny Orange Body and Yellow Wings on Dotted Background print,10 +14769pr1063,Tile Round 2 x 2 with Bottom Stud Holder with White Dog Print,10 +14769pr1066,Tile 2 x 2 Round with Bottom Stud Holder with Clock Face Print,10 +14769pr1067,Tile 2 x 2 Round with Bottom Stud Holder with Psychedelic Swirl Print,10 +14769pr1069,"FLAT TILE 2X2, ROUND, NO. 1069",10 +14769pr1070,Tile Round 2 x 2 with Bottom Stud Holder with Pepperoni Pizza Print,10 +14769pr1071,Tile Round 2 x 2 with Bottom Stud Holder with Wonder Woman Print,10 +14769pr1072,Tile Round 2 x 2 with Bottom Stud Holder and Horseshoe On Pink Background Print,10 +14769pr1079,"FLAT TILE 2X2, ROUND, NO. 1079",10 +14786,Duplo Winch Drum Narrow with String and Light Bluish Gray Nozzle,4 +14793,Sticker Sheet for 60041-1,17 +14795,Sticker Sheet for 60042-1,17 +14797,Sticker Sheet for 60043-1,17 +14812,Sticker Sheet for 60045-1,17 +14826,Sticker Sheet for 60047-1,17 +14860,Sticker Sheet for 60053-1,17 +14874,Sticker Sheet for 60057-1,17 +14898,Sticker Sheet for 60060-1,17 +1490stk01,Sticker for Set 1490 - (160205),17 +14918cpr0001,Cone 2 x 2 x 2 with Completely Open Stud with B-wing Cockpit Print,20 +14918cpr0002,"Cone 2 x 2 x 2 with Completely Open Stud with Red Ornaments, Tree Boughs and Droid Instruments Print",20 +14923,Trailer Assembly 5 X 6 X 2,4 +14pb01,Road Sign Round with Gray End Of No Overtaking Print,38 +14pb02,Road Sign Round with Gray End Of Maximum Speed 40 Print,38 +14pb03,Road Sign Round with Bus Stop Print,38 +14pb04,Road Sign Round with Maximum Speed 40 Print,38 +14pb05,Road Sign Round with No Overtaking Print,38 +14pb06,Road Sign Round with Old STOP Print,38 +14pb07,"Road Sign Round with Black '30' and Red Circle on Front, Black Bar Print on Back (Stickers)",38 +15,Legs Old,13 +15038,Wheel 56 x 36 Technic Racing Medium with 6 Pin Holes,29 +15038pr0001,Wheel 56 x 34 Technic Racing Medium with 6 Pinholes and White Rim Edge Print [41999],29 +15064,Insect Leg / Tail,28 +15065,Minifig Mask Bat,27 +15065pr0001,Minifig Mask Bat with Fangs and Purple Nose Print ,27 +15065pr0002,Minifig Mask Bat with Fangs and Blue Nose and Armor Plate Print,27 +15066,Minifig Armour - Breastplate with Shoulder Pads and Axle Hole,27 +15067,Minifig Mask - Chima Rhino [Plain],24 +15067pr0001,Minifig Mask - Chima Rhino with Repaired Horn Print,27 +15067pr0002,Minifig Mask - Chima Rhine with Striped Horn Print,27 +15068,Slope Curved 2 x 2 x 2/3,37 +15068pr0001,Slope Curved 2 x 2 x 2/3 with Lion Legend Beast Eyes and Crest Print,37 +15068pr0002,Slope Curved 2 x 2 x 2/3 with Wolf Legend Beast Eyes and Crest Print,37 +15068pr0003,Slope Curved 2 x 2 x 2/3 with Arctic Explorer Logo Print,37 +15068pr0004,Slope Curved 2 x 2 x 2/3 with Dark Tan Fur Print,2 +15068pr0005,Slope Curved 2 x 2 x 2/3 with Ghostbusters Print,37 +15068pr0006,Slope Curved 2 x 2 x 2/3 with Fire on Black Badge print,37 +15068pr0007,Slope Curved 2 x 2 x 2/3 with Badge and Blue 'POLICE' Text print,37 +15068pr0008,Slope Curved 2 x 2 x 2/3 with Fancy Scroll Print,37 +15068pr0009,Slope Curved 2 x 2 x 2/3 with Compass print,37 +15068pr0010,"Slope Curved 2 x 2 x 2/3 with Red, Light Bluish Gray and Black Stripes Print",37 +15068pr0011,Slope Curved 2 x 2 x 2/3 with Jake the Dog Face Print [No Studs],37 +15068pr0012,Slope Curved 2 x 2 x 2/3 with Dark Blue Eyes and Azure Lines print,37 +15068pr0013,Slope Curved 2 x 2 x 2/3 with Gray Shield Emblem with Bright Light Orange Bull Inset Print,37 +15068pr0014,"PLATE W/ BOW 2X2X2/3, NO. 1",2 +15068pr0015,"Plate, W/ Bow 2X2X2/3, No. 15",37 +15068pr0017,Slope Curved 2 x 2 x 2/3 with Silver '7' in Circles over Black Stripes print,37 +15068pr0018,Slope Curved 2 x 2 x 2/3 with Catwoman Catcycle Print,3 +15068pr9999,Slope Curved 2 x 2 x 2/3 - City Jungle Print,37 +15070,Plate Special 1 x 1 with Vertical Tooth,9 +15071,Minifig Blaster 1 x 2 x 2/3 with Studs on Sides and Handle,27 +15073,Rock Boulder Hinged Half (Chima Exploding Rock Half),33 +15074,Fly Wheel Fairing Spider Shape,36 +15074pr0001,Fly Wheel Fairing Spider Shape with Black Armor Scales and White Fangs Print (70140),36 +15074pr0002,"Fly Wheel Fairing Spider Shape with Spider, Fangs, Bones and Spiderwebs Print (70138)",36 +15082,Bat Wing with Shaft [Chima Bat Wing],28 +15083,Minifig Mask Tiger [Plain],24 +15083pr0001,"Minifig Mask Tiger with White and Copper Fangs, Scar and Purple Sinew Patches Print",27 +15083pr0002,"Minifig Mask Tiger with Fur, White Fangs, Copper Chain and Purple Sinew Patches Print",27 +15083pr0003,"Minifig Mask Tiger with White Fangs, Fur and Purple Sinew Patches Print",27 +15083pr0004,"Minifig Mask Tiger with White Fangs, Fur, Purple Sinew Patches and Stitches Print",27 +15083pr0005,"Minifig Mask Tiger with White Fangs, Black Fur and Open Mouth with Teeth Print",27 +15083pr0006,Minifig Mask Tiger with Copper Fangs and Armor with Rivets Print,27 +15083pr0007,Minifig Mask Tiger with White Fangs and Fur Print,27 +15083pr0008,Minifig Mask Tiger with White Fangs and Black Fur Print,27 +15083pr0009,"Minifig Mask Tiger with White Fang, Copper Fang and Copper Armor with Rivets Print",27 +15084,Minifig Mask Feline (aka ANIMAL NO 18 2014) [Plain],24 +15084pr0001,"Minifig Mask Feline with Black Nose, Leopard Spots and Fangs Print",27 +15084pr0002,"Minifig Mask Feline with Black Nose, Beauty Mark and Crooked Smile Print",27 +15084pr0003,"Minifig Headgear Mask Feline with Black Nose, Tiger Stripes and Fangs Print",27 +15084pr0004,"Minifig Mask Feline with Dark Blue Nose, Fangs and Gray Fur Print",27 +15084pr0005,"Minifig Mask Feline with Black Nose, Bared Teeth and Ornate Gold Armor Plates Print",27 +15084pr0006,"Minifig Mask Feline with Black Nose, Eyebrows and Tiger Stripes Print",27 +15084pr0007,"Minifig Mask Feline with Black Nose, Large Tiger Stripes and Fangs Print",27 +15086,"Minifig Armor Shoulder Pads Elaborate with Raised Neck, Front Stud and 2 Back Studs ",27 +15090,"Paw with Stud on Top, Bar on Side and 3 Bar Holders on Bottom ",28 +15091,Rock Panel 2 x 4 x 3 with Fractures (Chima Icecage) ,33 +15092,Plate 2 x 2 with 2 Pins,9 +15093,Fly Wheel Fairing Bird Shape [Plain],36 +15093pr0001,Fly Wheel Fairing Bird Shape with Silver Beak Voom Voom Print (70151),36 +15093pr0002,Fly Wheel Fairing Bird Shape with Gold Beak Fluminox Print (70155),36 +15094,Fly Wheel Fairing Large Cat Streamlined Shape [Plain],36 +15094pr0001,Fly Wheel Fairing Large Cat Streamlined Shape with Laval Print (70156),36 +15094pr0002,Fly Wheel Fairing Large Cat Streamlined Shape with Sir Fangar Print (70156) ,36 +15095,Fly Wheel Fairing Crocodile Streamlined Shape [Plain],24 +15095pr0001,Fly Wheel Fairing Crocodile Streamlined Shape with Cragger Print,36 +15096,Fly Wheel Fairing Wolf Streamlined Shape [Plain],24 +15096pr0001,Fly Wheel Fairing Wolf Streamlined Shape with Worriz Print,36 +15100,Technic Pin Connector Hub with 1 Pin with Friction Ridges Lengthwise,12 +15101,Paw 2 x 6 x 2 1/2 with Claws and Technic Hole,28 +15104,Bracket 4 x 2 x 2 No Studs with Axle Hole,27 +15105,Wing with Pin Hole,28 +15107,"Appendage Bony with Axle (Rib, Tail)",28 +15108,Plate Modified 2 x 2 with Pin Hole on Side and Axle Hole on Bottom,9 +15112,Sticker for Set 60050 - Transparent Background Version - (15112/6045709),17 +15118,Ladder 16 x 2.5,32 +1516cdb01,"Paper, Cardboard Backdrop for Set 1516, Fabuland Theatre Print",17 +15207,Panel 1 x 4 x 1 with Rounded Corners [Thin Wall],23 +15208,Plate Special 1 x 2 with Three Teeth [Tri-Tooth],9 +15209,Plate 1 x 2 Special with Two Vertical Teeth,9 +15210,Road Sign Clip-on 2 x 2 Square [Thick Open O Clip],38 +15210pr0001,Road Sign Clip-on 2 x 2 Square with Lights Print,38 +15210pr0003,FOUR-SIDED SIGN WITH SNAP NO.3,38 +15210pr01,Road Sign Clip-on 2 x 2 Square with Curved Blue Lines and Small Black Squares Print,38 +15211,"Duplo Rotor 3 blade, 4 Diameter (Propeller)",4 +15254,Brick Arch 1 x 6 x 2 - Thin Top without Reinforced Underside [New Version],37 +1525stk01,Sticker for Set 1525,17 +15265,Technic Digger Bucket 13 x 23,26 +15275,Sticker Sheet for 10237-1,17 +15279,Grass Stem with Bar Hole [3.2mm],28 +15284,Minifig Hair with Sun Visor [Plain],24 +15284pr0001,"Minifig Hair - Friends - Long with Ponytail, Side Bangs and Dark Pink Sun Visor [1 Hole]",13 +15301,Spring Shooter 1 x 4 x 1 Bottom,24 +15302,Spring Shooter 1 x 4 x 1 Top,24 +15303,Spring Shooter Ammuniton 8L,32 +15307,"Minifig Head Modified Wookiee, Chewbacca [Plain]",24 +15307pr0001,"Minifig Head Modified Wookiee, Chewbacca with Dark Tan Face Fur and Teeth Print",13 +15307pr0002,"Minifig Head Modified Wookiee, Chewbacca withBlack Eyes and Nose and Festive Strap Print",13 +15308,Minifig Helmet SW Airborne Clone Trooper [Plain],24 +15308pr0001,Minifig Helmet Airborne Clone Trooper with Orange Details Print,27 +15308pr0002,Minifig Helmet SW Airborne Clone Trooper with Tan and Dark Tan Camouflage Print,27 +15310,Minifig Helmet SW Imperial Gunner [Plain],24 +15310pr0001,Minifig Helmet SW Imperial Gunner with SW Imperial Logo Print,27 +15311,Minifig Helmet - SW Elite Corps Trooper [Plain],24 +15311pr0001,Minifig Helmet - SW Elite Corps Trooper with Camouflage Print,27 +15319,Duplo Car Base 4 x 8 with Four Black Wheels and Yellow Hubs,4 +15320,Duplo Car Base 2 x 6 Tractor with Front and Rear Wheels and Mudguards,4 +15327,Shower Faucet,4 +15332,Fence Spindled 1 x 4 x 2 [4 Top Studs],32 +15336c01,"Technic Brick 3 x 6 x 2 with Metal Fly Wheel and Dark Azure Tire, Complete Assembly",36 +15336c02,"Technic Brick 3 x 6 x 2 with Metal Fly Wheel and Orange Tire, Complete Assembly",36 +15339,Hero Factory Minifigure Chest/Shoulder Armour,27 +15341,Hero Factory Minifigure Arm,13 +15343,Hero Factory Minifigure Leg,13 +15344,Hero Factory Minifigure Helmet - BREEZ,27 +15345,Hero Factory Minifigure Helmet - STORMER,27 +15346,Hero Factory Minifigure Helmet - EVO,27 +15348,Hero Factory Minifigure Helmet - FURNO,27 +15349,Hero Factory Minifigure Helmet - ROCKA,27 +15350,Minifig Helmet Hero Factory (Surge),27 +15351,Minifig Helmet Hero Factory (Bulk),27 +15353,Hero Factory Complex Cockpit Seat with Ball Joint,41 +15354,Hero Factory Jumper Base,41 +15355,Hero Factory Jumper Top,41 +15357,"Hero Factory Creature Head, Jaw without Axle Hole",41 +15357pr0001,"Hero Factory Creature Head, Jaw without Axle Hole with Orange Eyes Print",41 +15357pr0002,"Hero Factory Creature Head, Jaw without Axle Hole with 4 Red Eyes Print",41 +15357pr0003,"Hero Factory Creature Head, Jaw without Axle Hole with 4 Yellow Eyes Print",41 +15358,Hero Factory Creature Cocoon Petal [Plain],24 +15358pat0001,Hero Factory Creature Cocoon Petal with Black Base Pattern [Trans-Bright Green],41 +15358pat0002,Hero Factory Creature Cocoon Petal with Black Base Pattern [Trans-Light Blue],41 +15358pat0003,Hero Factory Creature Cocoon Petal with Black Base Pattern [Trans-Red],41 +15359,Hero Factory Beast Lower Jaw with Axle Hole,41 +15359pr0001,"Hero Factory Creature Head, Jaw with Axle Hole with 6 Medium Azure Eyes and Black Spots Print",41 +15359pr0002,"Hero Factory Creature Head, Jaw with Axle Hole with Black and White Eyes and Lime Spots Print",41 +15359pr0003,"Hero Factory Creature Head, Jaw with Axle Hole with 4 Lime Eyes Print",41 +15359pr0004,"Hero Factory Creature Head, Jaw with Axle Hole with 12 White and Red Eyes and Gold Markings Print",41 +15361,Container Cylindrical 3 X 8 X 5 with Pin Holes,7 +15362,Hero Factory Spike Large with Axle Hole,41 +15365pat0001,Bionicle Zamor Sphere with Marbled White / Blue Pattern,41 +15365pat0002,Bionicle Zamor Sphere with Marbled White / Yellow Pattern,41 +15366,Hero Factory Full Torso Armor with Connector for Chi Orb (Bionicle Zamor Sphere),41 +15367,Hero Factory Foot 5 x 6 x 2 with Ball Socket,41 +15368,"Hero Factory Weapon - Blade, Elaborate with 2 Axles",41 +15369,"Hero Factory Shoulder Armor, Elaborate, Curved",41 +15370,"Hero Factory Wing, Feathered with Axle Hole",41 +15370pat0001,"Hero Factory Wing, Feathered with Axle Hole and Marbled Trans-Light Blue Pattern",41 +15370pat0002,"Hero Factory Wing, Feathered with Axle Hole and Marbled Trans-Yellow Pattern",41 +15372,Large Figure Head Modified Chima Panther Upper Jaw [Plain],24 +15372pr01,Large Figure Head Modified Chima Panther Upper Jaw with Ornate Gold Print,41 +15373,Large Figure Head Modified Chima Saber-toothed Cat Upper Jaw [Plain],24 +15373pr01,Large Figure Head Modified Chima Saber-toothed Cat Upper Jaw with Fangs with Red Eyes Print ,41 +15374,Large Figure Head Modified Chima Vulture [Plain],24 +15374pat01,Large Figure Head Modified Chima Vulture with Red Eyes Print,41 +15375,Large Figure Head Modified Chima Phoenix [Plain],24 +15375pat01,Large Figure Head Modified Chima Phoenix with Red Face and Gold Beak Pattern,41 +15376,Large Figure Head Modified Chima Mammoth [Plain],24 +15376pat01,Large Figure Head Modified Chima Mammoth with Red Eyes Print,41 +15377,Large Figure Head Modified Chima [Plain],41 +15377pat01,Large Figure Head Modified Chima Lion with Blue Eyes with White Pupils Pattern,41 +15377pr01,Large Figure Head Modified Chima Lion with Blue Eyes Print,41 +15379,Technic Link Tread with Beveled Edge,26 +15391,"Minifig Gun, Blaster Mini",27 +15391c01,"Gun, Blaster / Shooter Mini with Dark Bluish Gray Trigger - Complete Assembly",27 +15391c02,"Gun, Blaster / Shooter Mini with Reddish Brown Trigger - Complete Assembly ",27 +15392,Minifig Gun Trigger,27 +15395,Brick Round 2 x 2 Dome Bottom [Open Stud],20 +15396,Scooter Body,36 +15397,Plate 3 x 3 Cross,14 +15400,Brick Special - Spring Shooter 1 x 4 with Light Bluish Gray Top,5 +15403,Plate Special 1 x 2 with Mini Blaster,9 +15404,"Minifig Head Cover, Flame Head Piece",27 +15406,Minifig Backpack with Horizontal Pin Hole ,27 +15407,Minifig Hand Armor,27 +15411,Brick Special 1 x 1 with Stud on Side and Conductive Element on Opposite Side,5 +15413,Tyre 49.53 x 20,29 +15423,Minifig Vest Bulletproof [Plain],24 +15423pr0001,Minifig Vest Bulletproof with Minifig Head Badge and 'SUPER SECRET POLICE' Print,27 +15423pr0002,ARMOUR NO. 5 NO. 2,27 +15424,"Minifig Hat, Cowboy [Plain]",24 +15424pr0001,"Minifig Hat, Cowboy with Gold Star Print ",27 +15427,Minifig Hair Female Ponytail Off-center (aka MINI WIG NO. 63) [Plain],13 +15427pr0001,Minifig Hair Female Ponytail Off-center with Magenta and Medium Azure Stripes Print (Wyldstyle),13 +15427pr0002,Minifig Hair Female Ponytail Off-center with Magenta Stripe Print,13 +15427pr0173,"MINI WIG, NO. 173 with Flowers Print",13 +15428,Minifig Hood Folded Down,27 +15428pr0001,Minifig Hood Folded Down with Purple Inside Print,27 +15429,Cat Tail,28 +15429pr0001,Cat Tail with Medium Blue Sides Print,28 +15429pr0002,Cat Tail with Bright Light Orange Flames Print ,28 +15429pr0003,Cat Tail with Yellowish Green Sides Print,28 +15429pr0004,Cat Tail with Gold Swirls Print,28 +15437,Minifig Breastplate with Square Shoulder Protection [Plain],24 +15437pr0001,Minifig Breastplate with Square Shoulder Protection with Red Hexagonal Print,27 +15439,Minifig Moustache ,27 +15440,Plate Special 2 x 2 with Curved Minifig Head Holder,9 +15442,"Minifig Beard, Long with Knot ",13 +15443,Minifig Hair with Rear Cowlick,13 +15444,Brick Special 1 x 1 x 2 with Extra Tube Side [Piece of Resistance],5 +15445,Minifig Automatic Pistol with Top Clip,27 +15446,Minifig Night Vision Goggles,27 +15449,DUPLO CRANE HOOK,4 +15450,"DUPLO PICK-UP, CRANE ARM",4 +15454pr0001,Duplo Car Body Truck 4 x 4 Flatbed with 4 Top Studs - Grille and Headlights Print,4 +15454pr0002,Duplo Car Body Truck 4 x 4 Flatbed with 4 Top Studs - Headlights and Fire Logo Print,4 +15454pr0003,Duplo Car Body Truck 4 x 4 Flatbed with 4 Top Studs - Headlights and LEGO Logo Print,4 +15454pr0004,Duplo Car Body Truck 4 x 4 Flatbed with 4 Top Studs - Headlights and Spiderman Logo Print,4 +15455,"Vehicle, Tipper Bed 4 x 6",36 +15456,Plate Special 2 x 2 with Towball and Hole,9 +15457,Technic Worm Gear 3L with Bush Ends,52 +15458,Technic Panel 3 X 11 x 1,40 +15459,Technic Steering Arm 5 x 1 with Towball Socket,25 +15460,"Technic Steering Gear with 3 Ball Joints, Compact",25 +15461,Technic Pin Connector 3L with 2 Pins and Center Hole,12 +15462,Technic Axle 5 with Stop,46 +15464,Minifig Mask - Chima Spider with 6 Eye Spots and Fangs [Plain],24 +15464pr0001,"Minifig Mask - Chima Spider with 6 Orange Eye Spots, Dark Orange Stripes and White Fangs Print",27 +15464pr0002,"Minifig Mask - Chima Spider with 6 Orange Eye Spots, Dark Tan Stripes and White Fangs Print",27 +15464pr0003,"Minifig Mask - Spider with White Pincers, Orange Spots and Gold Ridges Print",27 +15469,Plate Round 2 x 2 x 2/3 with + Axle Hole and 4 Leaf Extensions,21 +15470,Plate Round 1 x 1 Swirled Top,21 +15475,Minifig Mask Scorpion [Plain],27 +15475pr0001,"Minifig Mask Scorpion with White Fangs and Pincers, Silver Spikes and Scorpion Emblem Print",27 +15475pr0002,"Minifig Mask Scorpion with White Fangs and Pincers, Pearl Dark Gray Spikes and Scorpion Emblem Print",27 +15475pr0003,"Minifig Mask Scorpion with White Fangs and Pincers, Black Spikes and Scorpion Emblem Print",27 +15485,Minifig Head Modified Beorn with Beard and Long Hair [Plain],24 +15485pr0001,"Minifig Head Modified Beorn with Beard and Long Hair, Flesh Face with White Pupils and Grimace Print",13 +15489,Minifig Hood [Plain],24 +15489pr0001,Minifig Hood with Purple and Blue Markings and Hair Print,27 +15490,Minifig Armor Shoulder Pads with 4 Spikes,27 +15490pr0001,Minifig Armor Shoulder Pads with Tan Spikes Print,27 +15490pr0002,Minifig Armor Shoulder Pads with Orange Spikes Print,27 +15491,Minifig Hair Male Bald [Plain],13 +15491pr0001,Minifig Hair Male Bald with Reddish Brown Hair Print,13 +15493,"Minifig Hair with Hat, Long Flap with Cap and Fur Brim [Plain]",24 +15493pr0001,"Minifig Hair with Hat, Long Flap with Dark Red Cap and Dark Tan Fur Brim Print",27 +15494,Minifig Raccoon Skin Cap [Plain],24 +15494pr0001,Minifig Raccoon Skin Cap with Brown Tail Rings Print ,27 +15496,"Cup, Take Out Cup",27 +15496pr0001,"Cup, Take Out Cup with Minifig Smile Print",27 +15496pr0002,"Minifig Cup, Take Out Cup with White Lid and Dark Purple and Orange 'SQUISHEE' Print",27 +15496pr0003,"Cup, Take Out Cup with Flat Silver Lid and 'BUZZ COLA' Print",27 +15498,Minifig Stovepipe Hat with Beard [Lincoln],27 +15499,"Minifig Hair Female Mid-Length Wavy Pulled Back with Partial Bun and Side Bangs, Hole on Top ",13 +15500,"Minifig Hair - Short, Smooth, Right Parting",13 +15501,"Minifig Beard, Short",13 +15502,Minifig Head Modified Simpsons Ralph Wiggum [Plain],24 +15502pr0001,Minifig Head Modified Simpsons Ralph Wiggum,13 +15503,Minifig Hair Female Beehive Style with Sideways Fringe ,13 +15503pr0001,Minifig Hair Female Beehive Style with Sideways Fringe with Silver Spider in Web Print,13 +15504,Minifig Costume Cat Tail,13 +15504pr0001,TAIL 14x24x16 MM NO. 1,13 +15515,Flower 4 X 4 X 1 with 4 Top Studs,4 +15516,Brick Round 4 x 4 [aka Table],4 +1552.1stk01,"Sticker for Set 1552-1 - Sheet 1, Maersk Line Name and Star (191075)",17 +1552.1stk02,"Sticker for Set 1552-1 - Sheet 2, Transport Stickers (191076)",17 +15522,Minifig Head Modified Simpsons Marge Simpson [Plain],24 +15522pr0001,Minifig Head Modified Simpsons Marge Simpson - Eyes Looking Right,13 +15522pr0002,Minifig Head Modified Simpsons Marge Simpson - Eyes Wide,13 +15522pr0003,Minifig Head Modified Simpsons Marge Simpson with Red Lipstick and Dark Turquoise Earrings Print,13 +15523,Minifig Head Modified Simpsons Bart Simpson [Plain],13 +15523pr0001,Minifig Head Modified Simpsons Bart Simpson - Eyes Looking Left,13 +15523pr0002,Minifig Head Modified Simpsons Bart Simpson - Eyes Wide,13 +15523pr0003,Minifig Head Modified Simpsons Bart Simpson with Dark Purple Mask Print,13 +15524,Minifig Head Modified Simpsons Lisa Simpson [Plain],24 +15524pr0001,Minifig Head Modified Simpsons Lisa Simpson - Worried Look,13 +15524pr0002,Minifig Head Modified Simpsons Lisa Simpson - Wide Eyes,13 +15524pr0003,Minifig Head Modified Simpsons Lisa Simpson - Bright Pink Bow Print,13 +15527,Minifig Head Modified Simpsons Homer Simpson [Plain],13 +15527pr0001,Minifig Head Modified Simpsons Homer Simpson - Eyes Partially Open,13 +15527pr0002,Minifig Head Modified Simpsons Homer Simpson - Eyes Wide,13 +15528,Minifig Head Modified Simpsons Grandpa Simpson [Plain],24 +15528pr0001,Minifig Head Modified Simpsons Grandpa Simpson,13 +15529,Minifig Head Modified Simpsons Ned Flanders [Plain],24 +15529pr0001,Minifig Head Modified Simpsons Ned Flanders ,13 +15530,Minifig Police Hat with Gold Badge Print,27 +15532,Minifig Ball and Chain,27 +15533,Brick Special 1 x 4 with Masonry Brick Profile,5 +15534,Minifig Grappling Hook with 90° Shaft,27 +15535,Tile 2 x 2 Round with Hole,15 +15535pr0001,Tile 2 x 2 Round with Hole w Turbine print,15 +15535pr0002,"Tile, Round 2 x 2 with Hole with Propeller with 3 Blades Pattern",15 +15536,Train Front 6 x 14 x 7 1/3,36 +15537,Glass For Train Front 6 x 14 x 7 1/3,36 +15540,Helicopter Landing Ski 1 x 6 with Pin Hole,35 +15541,"Minifig Hood Fur-lined, Short, Narrow Facial Opening",27 +15541pat0001,"Minifig Hood Fur-lined, Short, Narrow Facial Opening with Bright Light Blue Fur Edge Pattern",27 +15553,Minifig Mask Batgirl [Plain],24 +15553pr0001,Minifig Mask Batgirl with Red Hair Print,27 +15554,Minifig Mask The Flash with Wings [Plain],24 +15554pr0001,Minifig Mask The Flash with Yellow Wings Print,27 +15557,Minifig Hair Trapezoid Swept Back [Plain],24 +15557pr0001,Minifig Hair Trapezoid Swept Back with Tan Ends Print,13 +15564,"KIDS CUP, NR. "1000"",4 +15571,Slope 45° 2 x 1 Triple with Inside Stud Holder,3 +15571pr0001,LEGO Slope 45° 1 x 2 Triple with Yellow Danger Stripes with Inside Stud Holder (25966),2 +15573,Plate Special 1 x 2 with 1 Stud with Groove and Inside Stud Holder (Jumper),9 +15575,Duplo Boat Hull 7 x 12 Top Section with 6 x 8 Deck Studs,4 +15576,Boat Base,4 +15577,Ice Cream Cone 4 x 4 x 3,4 +15579,Duplo Tractor Bucket / Scoop,4 +15580,Duplo Brick 3 x 2 x 2 Slope Shingled,4 +15582,Duplo Door / Window with Rounded Sides,4 +15597,Minifig Long Hair with Spikes and Elf Ears [Plain],24 +15597pr0001,Minifig Long Hair with Medium Dark Flesh Crown Spikes and Light Flesh Elf Ears Print,13 +15613,Flashing Light [Complete Assembly],4 +15613a,Flashing Light [Complete Assembly] - Blue,4 +15613b,Flashing Light [Complete Assembly] - Orange,4 +15619,Minifig Ninjago Bandana,27 +15621,Ninjago Complex Axe Blade [Techno-Blade],27 +15623,Brick Modified 16 x 16 x 2/3 with 1 x 4 Indentations and 1 x 4 Plate,5 +15623pr0001,Brick Special 16 x 16 x 2/3 with 1 x 4 Indentations and 1 x 4 Plate with Grass and Rocks Print,5 +15623pr0002,Brick Special 16 x 16 x 2/3 with 1 x 4 Indentations and 1 x 4 Plate with Stones Print,5 +15623pr0003,Brick Modified 16 x 16 x 2/3 with 1 x 4 Indentations and 1 x 4 Plate with Cracks and Bursting LavaPrint,5 +15623pr0004,"Brick Modified 16 x 16 x 2/3 with 1 x 4 Indentations and 1 x 4 Plate with Checkerboard Tiles, Paws and Rugs Print",5 +15623pr0005,"Brick Modified 16 x 16 x 2/3 with 1 x 4 Indentations and 1 x 4 Plate with Snow and Sparkles Frozen Playground with Footprints and Pawprints, and Dark Pink Rug print",5 +15624,Brick Modified 8 x 8 with 1 x 4 Indentations and 1 x 4 Plate,5 +15625,Slope Curved 5 x 8 x 2/3,37 +15625pr0001,Slope Curved 5 x 8 x 2/3 with Yellow Danger Stripes Print,2 +15625pr0002,Slope Curved 5 x 8 x 2/3 with Batman Logo Print,2 +15625pr0003,Slope Curved 5 x 8 x 2/3 with Sewer Grate and Rivets and Lime and Dark Purple Circle Print,2 +15625pr0004,Slope Curved 5 x 8 x 2/3 with Wood Panel Drawbridge Print,37 +15625pr0005,"RAMP 4X8X6,4 W. WING NO. 5",37 +15625pr0006,"RAMP 4X8X6,4 W. WING rock cracked 3 lava hole",37 +15625pr0007,Slope Curved 5 x 8 x 2/3 with Stars and Blue Lines Print,2 +15626,Panel 4 x 16 x 12 [Plain],23 +15626pr0001,Panel 4 x 16 x 12 with Police Print,23 +15626pr0002,"Panel 4 x 16 x 12 with Batman Logo, Joker and Car Print",23 +15626pr0003,Panel 4 x 16 x 12 with Castle Print,23 +15626pr0004,Panel 4 x 16 x 10 with Spider-Man Print,23 +15626pr0005,Panel 4 x 16 x 12 with Asian Arch and Dragon Head Print,23 +15627,Panel 1 x 6 x 6 with Window,23 +15627pr0001,"Panel 1 x 6 x 6 with Window with Pink Wood Frame, Horseshoe, Heart and Leaves Print",23 +15627pr0002,"Panel 1 x 6 x 6 with Window with Light Pink Frame, Bricks, Crown, Butterfly, Roses and Leaves Print",23 +15627pr0003,"Panel 1 x 6 x 6 with Window and Grass, Grill and Reinforced Window Frame Print",23 +15627pr0005,Panel 1 x 6 x 6 with Window with Round Sewer Opening Outline Print,23 +15627pr0006,Panel 1 x 6 x 6 with Window with Bricks and White Window Frame Print,23 +15627pr0007,Panel 1 x 6 x 6 with Window with Fleur de Lis and Leaves Print,23 +15627pr0008,"Panel 1 x 6 x 6 with Window with Tan Bricks, Grass and Leaves Print",23 +15627pr0009,Panel 1 x 6 x 6 with Window with Yellowish Green Shutters and Flower Box Print,23 +15627pr0010,Panel 1 x 6 x 6 with Window - Pink Arch with Seashell at Top Center - Bubbles and Sea Grass print,23 +15627pr0011,Panel 1 x 6 x 6 with Window with Flowers and Blue Curtains Print,23 +15627pr0012,Panel 1 x 6 x 6 with Window and Pink Window Frame and Tulips Print,23 +15627pr0013,"Panel 1 x 6 x 6 with Window with Wood Frame with Drinks, Citrus Fruits and Potted Plant Pattern",23 +15632,Minifig Head Modified Wookiee [Plain],24 +15632pr0001,"Minifig Head Modified Wookiee, Chief Tarfful with Dark Tan Face Fur, Teeth and Silver Hair Ornaments Print",13 +15654,Minifig Head Modified Simpsons Itchy [Plain],24 +15654pr0001,Minifig Head Modified Simpsons Itchy,13 +15655,Minifig Head Modified Simpsons Apu Nahasapeemapetilon [Plain],24 +15655pr0001,Minifig Head Modified Simpsons Apu Nahasapeemapetilon,13 +15659,Minifig Head Modified Simpsons Scratchy [Plain],24 +15659pr0001,Minifig Head Modified Simpsons Scratchy,13 +15661,Minifig Head Modified Simpsons Chief Wiggum [Plain],24 +15661pr0001,Minifig Head Modified Simpsons Chief Wiggum,13 +15661pr0002,Minifig Head Modified Simpsons Chief Wiggum with Pink Doughnut Frosting Splotch on Mouth Print,13 +15662,Minifig Head Modified Simpsons Krusty the Clown [Plain],24 +15662pr0001,Minifig Head Modified Simpsons Krusty the Clown,13 +15664,Minifig Head Modified Simpsons Mr. Burns [Plain],24 +15664pr0001,Minifig Head Modified Simpsons Mr. Burns,13 +15666,Minifig Head Modified Simpsons Snake [Plain],24 +15666pr0001,Minifig Head Modified Simpsons Snake,13 +15672,Slope 45° 2 x 1 with 2/3 Cutout [New Version],3 +15673,Minifig Hair Female with Top Knot Bun [Plain],24 +15673pr0001,Minifig Hair Female with Top Knot Bun and Medium Blue Hair Band Print,27 +15675,Minifig Hair - Friends - Long with French Braided Ponytail [3 Holes],13 +15677,"Minifig Hair Female Long Wavy, Right Side Part, with Short Sides, Hole on Top (Ariel)",13 +15678,Chameleon [Plain],28 +15678pat0001,Chameleon with Black Eyes Print (Pascal),28 +15678pat0002,Chameleon with Blue and Black Eyes and Marbled Medium Lavender Pattern,28 +15679,Fish (Flounder / Fabius) [Plain],24 +15679pr0001,"Fish with Large Eyes, Medium Blue Dorsal and Tail Fin and Blue Stripes on Top Print (Flounder / Fabius)",28 +15696pr0001,Friends Lamb with Face Print,28 +15696pr0002,Friends Lamb with Face Print - Eyelashes,28 +15705,Minifig Hair Spiked and Tousled,27 +15706,Plate Special 4 Stud 45° Angle Plate,9 +15707,Duplo Baby's Bottle,27 +15712,Tile Special 1 x 1 with Clip with Rounded Edges,15 +15727,ARMOUR NO. 7,27 +15728,"Minifig Hair Short, Bowl Cut with Side Locks [Plain]",24 +15728pr01,"Minifig Hair Short, Bowl Cut with Side Locks and Bright Light Yellow Rear Print",27 +15733,"Minifig Head Top, Mutated Doctor O'Neil [Plain]",24 +15733pr0001,"Minifig Head Top, Mutated Doctor O'Neil with Magenta Ears and Green Protruding Vein Print",27 +15738,Minifig Turtle Shell with Stud with Horizontal and Diagonal Belt [Plain],24 +15738pat01,Minifig Turtle Shell with Stud with Dark Brown Horizontal and Diagonal Belt Pattern,27 +15738pat01pr001,Minifig Turtle Shell with Stud with Dark Brown Horizontal and Diagonal Belt with Words 'Mikey was Here!' and Silver Patches Print,27 +15738pat01pr002,Minifig Turtle Shell with Stud with Dark Brown Horizontal and Diagonal Belt and Dark Brown Markings Print,27 +15744,Ornate Carriage Wheel [43.2mm],29 +15745,Rock - Heart Jewel with Shaft,33 +15752,Sticker Sheet #1 for 10241-1,17 +15755,Sticker Sheet for 70127-1,17 +15756,Sticker sheet for set 70125,17 +15790,Propeller 3 Blade 9 Diameter with Recessed Center,35 +15793,Flag 4 X 2 X 1 [Duplo],38 +15827,Minifigure Helmet - Nindroid with Triple Red Sensor Print,13 +15830,Minfigure Helmet - Nindroid Headpiece with Complex Targeting System Print ,27 +15831,Minifig Armour Shoulder Pads with Nindroid Armour Print,27 +15847,Duplo Brick 1 x 2 x 2 with Bottom Tube,4 +15851,"Minifig Helmet Motorcycle Open Face, with Visor [Plain]",24 +15851pat01,"Minifig Helmet Motorcycle Open Face, with Visor and White Top Pattern",27 +15864,Minifig Helmet Large Square with Side Extensions [Plain],24 +15864pat01,Minifig Helmet Large Square with Black Side Extensions,27 +15868,Brick 2 X 2 with Stylised Berries Print,4 +15871,Sticker Sheet for 76011-1,17 +15872,Sticker Sheet for 76012-1,17 +15875,Friends - Hips and Princess [Full Length] Skirt,13 +15875pr0001ac01,Friends - Hips and Princess Skirt with Gold Starburst and Knotwork Print,13 +15875pr0001bc01,Friends - Hips and Princess Skirt with Bright Light Blue Panels Print,13 +15875pr0002c01,Friends - Hips and Princess Skirt with Starburst Print,13 +15875pr0003c01,Friends - Hips and Princess Skirt with Cinderella Starburst Scrollwork Print,13 +15875pr0004c01,Friends - Hips and Princess Skirt with Stylised Flower and Stars Print,13 +15875pr0005c01,Friends - Hips and Princess Skirt with Swirls and Stars Print,13 +15875pr0006c01,"Friends - Hips and Princess Skirt with Silver Pyramid Symbol, Stars and Dots Print",13 +15875pr0007c01,Friends - Hips and Princess Skirt with 5 Flowers Print,13 +15875pr0008c01,Friends - Hips and Princess Skirt with Gold Scrollwork Print,13 +15875pr0009,Friends Hips and Full Length Princess Skirt with 3 Large and 4 Small Flowers print,13 +15875pr0010,Friends Hips and Full Length Princess Skirt with Magenta and Dark Green Flowers print,13 +15875pr0011c01,"Friends Hips and Full Length Skirt with White Sides, Silver Stars and Middle Triangles Print",13 +15875pr0012c01,HIP W/ SKIRT 5 NO. 12,13 +15875pr0013c01,"HIP W/ SKIRT 5, NO. 13",13 +15875pr0102c01,"SKIRT, W/ HIP, NO. 102",13 +15875pr0105c01,"SKIRT, W/ HIP, NO. 105",13 +15875pr0106c01,"SKIRT, W/ HIP, NO. 106",13 +1588322,BIONICLE Music and PC CD-Rom,17 +15894,Brick 1 X 2 X 2 with Cow and Glass of Milk Print [Milk Carton],4 +15899,TRACTOR ELEMENT 4X6 "NO. 1",4 +15900,Duplo Brick 2 x 4 Curved Bottom with Tomato Yellow Seeds and Black Cavity Print,4 +15906,Brick 2 x 2 with Tomatos Print,4 +15908,Brick Round 4 x 4 Dome Top with 2 x 2 Studs and Green and Yellow Flower Print,4 +15920,Sticker Sheet 2 for Sets 10242-1 and 10242-2,17 +15933,"Duplo Car Body Tractor with 2 Studs, Exhaust Pipe, Radiator and Headlights Print",4 +15934,Duplo Brick 2 x 4 with Red Flowers Print,4 +15935,Duplo Brick 2 x 2 x 2 Curved Top with Rooster Weather Vane Print,4 +15944,Duplo Brick 2 x 2 with Spider Print,4 +15945,Duplo Brick 2 x 2 with Number '1' Print,4 +15947,Duplo Brick 2 x 2 with Fancy Cake Print,4 +15950,Brick 2 x 2 with Two Rabbits Print,4 +15954,Duplo Brick 2 x 2 with Three Chicks Print,4 +15955,Minifigure Mask - Panda Headpiece with Black Face Print,27 +15956,Brick 2 x 2 with '1' Print,4 +15957,Duplo Brick 2 x 2 with Radio Print,4 +15958,Duplo Brick 2 x 2 with '2' Print,4 +15962,Duplo Brick 2 x 2 with '3' Print,4 +15964,DUPLO BRICK 1X2X2 NO. 9,4 +15965,Duplo Brick 2 x 2 with Tomatoes and Worm Print,4 +15966,DUPLO ROOF TILE 2X2X1 1/2 NO 5,4 +15975,CAR ELEMENT 4X8 NO. 1,4 +15976,Hero Factory Foot 3 X 5 X 2 with Ball Socket,41 +15979,PICK-UP ELEMENT 4X8 NO. 1,4 +15981,WINDOW FRAME 4X4X3 NO. 1,4 +15983,CAR ELEMENT 4X8 NO. 2,4 +15986,Duplo Brick 2 x 4 x 2 Rounded Ends with Bunny Face with Green Eyes and Eyelashes Print,4 +15987,Duplo Brick 2 x 3 x 2 with Curved Top and Dark Orange Spots and Giraffe Face Print on Both Sides,4 +15989,Duplo Brick 2 x 2 x 2 Curved Top with Caterpillar Face Print,4 +15991,Duplo Brick 2 x 3 x 2 with Curved Top and Dark Orange Spots Print on Both Sides,4 +15994,Duplo Horse with one Stud and Raised Hoof with White Blaze Print,4 +15995,Duplo Brick 2 x 4 x 2 Rounded Ends with Dog Face with Black Ears and Blue Eyes Print,4 +15996,Duplo Brick 2 x 6 x 2 Curved with 2 x 2 Cutout on Bottom with Black Spots Print,4 +15998,Minifig Body Modified - Bright Light Blue Arms / Yellow Hands [Maggie],13 +16026,Sticker Sheet for 42020-1,17 +160285,Sticker for 3623 (160285),17 +16039,Sticker Sheet for 42022-1,17 +16052,Sticker Sheet for 70722-1,17 +16057,Sticker Sheet for 70725-1,17 +16087,Duplo Building Wall 2 x 2 x 6 with Drawer Slots on One Side and Eight Hinges on the Other,4 +16091,"Vehicle Steering Wheel Small, 2 x 2 [Reinforced]",36 +16097,COW "NO.2" FRONT,4 +160ac01,Plate Special 2 x 4 with Train Coupler Open with Magnet Long Cylinder Red,39 +160ac02,Plate Special 2 x 4 with Train Coupler Open with Magnet Long Cylinder Blue,39 +16117,DUPLO BRICK 1X2X2 NO. 10,4 +16121,"DUPLO BRICK 2X2 ""NO. 33""",4 +16129,BRICK 2X2 W. BOW W. EAR NO. 1,4 +16135,BRICK 2X2 W. BOW W. EAR NO. 2,4 +16136,Sticker Sheet for 42021-1,17 +16153,Sticker Sheet #1 for 42025-1,17 +16175,Minifig Construction Helmet with Hair [Plain],24 +16175pr01,Minifig Construction Helmet with Reddish Brown Hair Print,13 +16175pr02,Minifig Helmet Construction with Medium Dark Flesh Hair Print,13 +16178,Minifig Construction Helmet with Ponytail [Plain],24 +16178pr01,Minifig Construction Helmet with Dark Brown Ponytail Print (Gail),27 +16188,"Minifig Helmet - Two Side Flaps, Dark Tan Brim and Flat Silver Fishtail Top with Emblem Print",27 +16190,WIG W. BEARD NO. 71 NO.1,27 +16195,Duplo Cone 2 x 2 Square Base,4 +16196,PLANE 12X10X4,4 +16197,"Denken mit Lego (Thinking with Lego, Booklet)",17 +16205,Duplo Animal Accessory Cratch,4 +16236,Duplo Brick 2 x 2 with Two Mice Print,4 +16260,Sticker Sheet for 41037-1,17 +16264,Sticker Sheet for 41035-1,17 +16265,DUPLO FIXED KEY 2X5X1,4 +16280,Fabric Picnic Blanket with Red Chequers Print [10242],38 +16292,Trianglular Sail with Friends Design and 'HLC-37' Print,38 +16304,ADULT FIGURE 19,4 +16320,DUPLO BRICK 2X2 NO. 31,4 +16321,"DUPLO BRICK 2X2X2, R=15 NO. 11",4 +16338,Minifig Head Modified Azog [Plain],13 +16338pr0001,"Minifig Head Modified Azog with Dark Tan Markings on Face and Chest, Light Blue Eyes Print",13 +16338pr0002,"Minifig Head Modified Azog with Dark Tan Markings on Face and Chest, Light Blue Eyes and Wide Open Mouth Print",13 +16341,Sticker Sheet for 75037-1,17 +16360,Torso Plain with Half Printed Arms,13 +16368,Minifig Head Modified Simpsons Maggie Simpson,13 +16368pr0001,Minifig Head Modified Simpsons Maggie Simpson - Wide Eyes,13 +16368pr0002,Minifig Head Modified Simpsons Maggie Simpson - Worried Look,13 +16375,Duplo Building Roof Spire 3 x 3 x 3,4 +16380,Sticker Sheet for 70128-1,17 +16385,DUPLO BRICK 2X2 NO. 32,4 +16389,Duplo Brick 2 x 4 x 2 Curved Top with 11 Circles with Spots Print,4 +16401,Sticker Sheet for 79013-1,17 +16409,Sticker Sheet for 41051-1,17 +16411,Sticker Sheet for 41052-1,17 +16412,Sticker Sheet #2 for 41054-1,17 +16417,Sticker Sheet for 75042-1,17 +16427,ANIMAL NO. 16 ARM LEFT NO. 1,13 +16428,ANIMAL NO.16 ARM RIGHT NO. 1,13 +16429,ANIMAL NO.16 ASS. NO. 1,13 +16434,Fruit Berry Cluster,4 +16443,Sticker Sheet for 70804-1,17 +16445,Sticker Sheet for 70806-1,17 +16451,Sticker Sheet for 70813-1,17 +16455,Sticker Sheet for 41057-1,17 +16467,Sticker Sheet for 70810-1,17 +16472,Sticker Sheet for 70129-1,17 +16477,Windscreen 16 x 8 x 6 Curved with 3 Pin Holes,47 +16478,"Minifig Statuette, Emperor Palpatine Hologram ",27 +16494,"Minifig Cape Cloth, Extended, Necktie Shaped with Pointed End",27 +16497,Minifig Cap SW Imperial Officer,27 +16497pr0001,"Minifig Cap, SW Imperial Officer with Silver and Black Code Disc Print",27 +16497pr0002,"Minifig Cap, SW Imperial Officer with Silver and Black Code Disc and Dark Brown Stains Print",27 +16497pr0003,"HAT NO. 21, NO. 3",27 +16499,Duplo Figure Wand,27 +164c01,Boat Section Stern 6 x 6 x 3.333 with LtGray Deck,35 +164stk01,Sticker for Set 164 - (4757),17 +16501,Minifig Helmet SW Snowtrooper,27 +16501pr0001,Minifig Helmet SW Snowtrooper with Black Eyeholes Print,27 +1650stk01,"Sticker for Set 1650 - Sheet 1, Ship Hull (004591)",17 +1650stk02,"Sticker for Set 1650 - Sheet 2, Containers and Funnel (004602)",17 +16511,Electric Power Functions Battery Box 4 x 11 x 7 with Orange Switch and Dark Bluish Gray Covers [New Version],45 +16513,LPF MOTOR XL 5X5X6,45 +16530,"Hips and Fishtail - Mermaid Leg Assembly (aka LEG, FISHTAIL, FEMALE) [Plain]",13 +16530pr01,Hips and Fishtail - Mermaid Leg Assembly with Bright Light Green Fin Print,13 +16530pr02,Friends - Mermaid Hips and Tail Assembly with Bright Pink Tip Print,13 +16535,Sticker Sheet for 60054-1,17 +165395,Sticker Sheet for 6551-1,17 +16541,ADULT FIGURE NO. 6 V2,4 +16542,Minifig Simple Hose Nozzle with 35L Black String,31 +16558,Sticker Sheet #1 for 41054-1,17 +16577,Brick Arch 1 x 8 x 2 Raised,37 +16584,Duplo Brick Round 2 x 2 x 2 with Stylised Climbing Roses Print,4 +16597,"Duplo Car Body Bus Small with Blue Floor and Wheel Wells, Headlights and Grille Print (10528)",4 +16598,CASTLE WINDOW,4 +16599,Minifig Helmet - 80's Style with Chinstrap Crack,27 +165c01,Technic Pneumatic Tube 6L (Shortcut),24 +165c01b,Technic Pneumatic Tube 6L (Shortcut),24 +16600,KNIGHTS SWORD,4 +16606,Dog Husky,24 +16606pat0001,"Dog Husky with Black Eyes, Black Nose Print and Marbled Dark Bluish Gray Ears and Back Pattern",28 +16614,Minifig Head Modified MODOK with Dark Brown Hair and Bared Teeth Print,13 +16632,"Hero Factory Cape, Large, Tattered",27 +16640,Minifig Head Modified Ninja Turtle Type 2 [Plain],13 +16640pr0001,CREATURE HEAD NO. 4 NO.1 - 2014,13 +16640pr0002,Minifig Head Modified Ninja Turtle Type 2 with Orange Mask and Dark Green Spots Print (Michelangelo),13 +16640pr0003,CREATURE HEAD NO. 4 NO.3 - 2014,13 +16640pr0004,CREATURE HEAD NO. 4 NO.4 - 2014,13 +16640pr0005,CREATURE HEAD NO. 4 NO.5-2014,13 +16640pr0006,Minifig Head Modified Ninja Turtle Type 2 with Dark Red Mask and Headcovering Print (Raphael),13 +16656,Minifig Mask Bird (Phoenix) [Plain],24 +16656pr0001,Minifig Mask Bird (Phoenix) with Yellow Beak and Gold Headpiece with Flames Print,27 +16656pr0002,Minifig Mask Bird (Phoenix) with Yellow Beak and Small Gold Headpiece Print,27 +16656pr0003,Minifig Mask Bird (Phoenix) with Yellow Beak and Elaborate Gold Headpiece with Flames Print,27 +16656pr0004,Minifig Mask Bird (Phoenix) with Yellow Beak Print,27 +16659,Minifig Mask Bird (Vulture) [Plain],24 +16659pr0001,Minifig Mask Bird (Vulture) with Dark Bluish Gray Beak and Head Scars with Plasters Print,27 +16659pr0002,Minifig Mask Bird (Vulture) with Dark Bluish Gray Beak and Purple Head Patches Print,27 +16659pr0003,Minifig Mask Bird (Vulture) with Dark Bluish Gray Beak and Sand Green Headpiece Print,27 +16659pr0005,Minifig Mask Bird (Vulture) with Dark Bluish Gray Beak and Dark Tan Headpiece with Sand Green Vulture Symbol Print,27 +16667,Minifig Mask Mammoth with White Tusks [Plain],24 +16667pr0001,Minifig Mask Mammoth with White Tusks and Purple Sinew Patches on Forehead Print,27 +16667pr0002,"Minifig Mask Mammoth with White Tusks, Copper Pendants and Purple Sinew Patches on Proboscis Print",27 +16667pr0003,Minifig Mask Mammoth with White Tusks and Purple Sinew Patches on Proboscis Print,27 +16681,Sticker Sheet 1 for Sets 10242-1 and 10242-2,17 +16685,WALL 1X4X2 W. ARROW SLITS,4 +16686,PLATE 2X4 W. B CONNECTOR TOP,4 +16691,Minifig Hair Long with Headband [Vitruvius],13 +16691pr0001,Minifig Hair Long with Earth Orange Headband Print,13 +16691pr0002,Minifig Hair Long with Flat Silver Headband Print,13 +16696,"PARROT, ASSEMBLY",4 +16697,HELICOPTER ROTOR 8X8,4 +16698,PONTOON ELEMENT 4X4,4 +16699,GRAB ELEMENT,4 +16701,BOOMERANG,4 +16709,Minifig Legs Short with Horizontal Stripes [Placeholder],13 +16709pat01,Minifig Legs Short with Horizontal Yellow Stripes Pattern,13 +16709pat01pr001,Legs Short with Horizontal Yellow Stripes and Slingshot Band and Pouch Print,13 +16709pat02,Minifig Legs Short with Horizontal Magenta Stripes Print,13 +16709pat03,Minifig Legs Short with Horizontal Dark Orange Stripes,13 +16726,Minifig Head Modified Simpsons Nelson Muntz [Plain],24 +16726pr0001,Minifig Head Modified Simpsons Nelson Muntz,13 +16727,Duplo Brick 2 x 2 x 2 with Blue Waves Print,4 +16737,Large Figure Head Modified Chima Big Cat Lower Jaw with Teeth,41 +16737pr0001,Large Figure Head Modified Chima Big Cat Lower Jaw with Teeth and Red Tongue Print,41 +16737pr0002,Large Figure Head Modified Chima Big Cat Lower Jaw with Teeth and Purple Tongue Print,41 +16768,Bar 4L with Flame Protrusions,32 +16768pat0001,Bar 4L with Flame Protrusions and Marbled Trans-Yellow Pattern,32 +16770,"Barb Large (Claw, Talon) with Clip",28 +16771,Friends Bear Standing [Plain],24 +16771pr0002,Friends Bear Standing with Light Bluish Gray Face Print,28 +167914,Dacta Sorting Tray - 7 Compartment for Dacta Extra Small Bin,17 +167915,Dacta Sorting Tray - 13 Compartment for Dacta Small Bin,17 +167916,Dacta Sorting Tray - 6 Compartment for Dacta Small Bin,17 +167917,Trans-Clear Dacta Sorting Tray - 35 Compartment for Dacta Small Bin,17 +16802,Minifig Head Modified Simpsons Milhouse Van Houten [Plain],24 +16802pr0001,Minifig Head Modified Simpsons Milhouse Van Houten,13 +16802pr0002,Minifig Head Modified Simpsons Milhouse Van Houten with Green Mask Print,13 +16816,Minifig Skirt Cloth,27 +16816pr0001a,Minifigure Skirt #3 with White and Black Apron Print,27 +16816pr0001b,"MINI FIGURE, SKIRT 3, NO.1",27 +16820,Minifig Skirt Cloth Short,27 +16855,ADULT FIGURE 8 V2,4 +16856,ADULT FIGURE 9 V2,4 +16857,ADULT FIGURE 10 V2,4 +16863,Sticker Sheet #2 for 42025-1,17 +16874,Duplo Hen with Red Comb and Wattle Print,4 +16877,Bridle,13 +16905,Sticker Sheet for 70724-1,17 +16925,Friends - Hips and Legs with Trousers and Boots (aka HIP W/PANTS 3) [Plain],13 +16925pr0001c01,Friends - Hips and Legs with Trousers and Black Boots Print,13 +16925pr0003c01,Friends - Hips and Legs with White Trousers and Black Boots Print,13 +16925pr0005c01,Friends - Hips and Trousers - Reddish Brown Boots Print,13 +16925pr0006c01,Friends Hips and Legs - Trousers with Back Pockets and Black Boots print,13 +16925pr0007c01,"HIP W/PANTS 3, ASS. NO 7",13 +16925pr0100c01,Friends Hips and Trousers with Back Pockets - Black Laces on Bright Light Orange Boots Print,13 +16925pr0104,"PANTS, W/ HIP, NO. 104",13 +16925pr0107c01,"PANTS, W/ HIP, NO. 107",13 +16957,Minifig Head Modified RA-7 Protocol Droid ,13 +16965,Rip Cord Flexible with Handle Thick for Ninjago Airjitzu Flyers,56 +16968,Brick Special 1 x 4 with Inside Clips (Disk Shooter),5 +16981,"Plant Vine with Leaves, 16L",28 +16985,Friends - Hips and Trousers with Back Pockets (aka HIP W/PANTS 2) [Plain],13 +16985pr0001a,"Friends - Hips and Trousers with Back Pockets and Gold Stripe, Black Shoes Print",13 +16985pr0001b,"Friends - Hips and Trousers with Back Pockets, Tan Shoes Print",13 +16985pr0001c,Friends - Hips and Trousers with Back Pockets and Sand Blue Shoes Print,13 +16985pr0101,Friends Hips and Trousers with Back Pockets - Black and White Shoes - Steve Trevor,13 +16985pr0102,Friends - Hips and Short Pants with Back Pockets - Lime Leggings - Bright Green Boots with Dark Purple Soles print,13 +16985pr0103,Friends Hips and Trousers with Back Pockets with Yellow Lines and Hexagons and Dark Orange Boots print,13 +16985pr0105c01,"PANTS, W/ HIP, NO. 105",13 +16985pr0117c01,"PANTS, W/ HIP, NO. 117",13 +16989,Sticker Sheet #2 for 41055-1,17 +17,Torso Old,13 +17003,"DIGGER TOP W. BELTS, DEC. NO. 1",4 +17005,HELICOPTER 1 TOP NO. 1,4 +17010,Minifig Space Blaster - Small,27 +17011,Minifig Space Blaster - Large,27 +17013,Minifig Head Modified Raccoon (Rocket) [Plain],24 +17013pb02,Minifig Head Modified Raccoon with Dark Red and Black Shoulder Pads Print (Rocket),13 +17013pr0001,Minifig Head Modified Raccoon with Reddish Brown Shoulder Pads Print (Rocket),13 +17014,Minifig Helmet Space with Mouth Slit,27 +17014pr0001,"Minifig Helmet Space with Mouth Slit and with Black Eyeholes, Red Star and Gold Markings Print",27 +17016,Minifig Hood with Shoulder Pads,27 +17016pr0001,Minifig Hood with Shoulder Pads with Pearl Dark Gray Trim Print,27 +17018,Minifig Mask Wolverine [Plain],24 +17018pr0001,Minifig Mask Wolverine with Black Pointed Sides Print,27 +17048,S1 PLANE 10X10,4 +17105,Sticker Sheet for 60059-1,17 +17114,Technic Brick Special 2 x 2 with 10.2mm Balls with Holes and Axle Hole,26 +17164,"CAR ELEMENT 4X8 NO. 2, TOP DECO",4 +17178,CANNON W. B-CONNECTOR,4 +17231,Sticker Sheet #2 for 10241-1,17 +17237,"PLANE NO. 1 2013 V2, DEC NO. 2",4 +17250,CITY CAR DEC. HEADLIGHTS NO. 6,4 +17264,Arm Spider Bytez,13 +17265,Body Spider Bytez,13 +17269,ADULT FIGURE 11 V2,4 +17272,Arm Leatherhead,13 +17274,"Torso/Head Alien, Leatherhead White Chest Print",13 +17292,Large Figure Head and Upper Torso (Groot) [Plain],24 +17292pr0001,Large Figure Head and Upper Torso with Wood Grain and Leaves Print (Groot),13 +17297,"DUPLO BRICK 2X2 "" NO 34""",4 +17304,"DUPLO BRICK 2X2 ""NO 35""",4 +17306,"DUPLO BRICK 2X2 ""NO 36""",4 +17308,"DUPLO BRICK 2X2 ""NO. 37""",4 +17311,DUPLO BRICK 1X2X2 NO 11,4 +17317,S1 VEHICLE 4X8 NO. 1,4 +17318,DUPLO BRICK 1X2X2 NR. 12,4 +17346,Minifig Hair Female Long Straight with Bangs [Rubber],27 +17347,Minifig Hair Female Ponytail Long Straight with Holder,27 +17347pr0002,Minifig Hair Female Ponytail Long Straight with Gold Holder Print,27 +17349,"Minifig Hat, Cone Drooping",27 +17349pr0001,"Minifig Hat, Cone Drooping with Wizard Gold Moon and Silver Stars Print",27 +17351,Minifig Mask Pig [Plain],27 +17351pr0001,Minifig Mask Pig with Black Eyes Print,27 +17352,"Minifig Hat, Wide Brim with Cut",27 +17352pr0001,"Minifig Hat, Wide Brim with Cut and Tan Patch Print",27 +17355,Minifig Helmet Space with Pipes and Mouth Grille with Control Panel [Plain],27 +17355pr0001,Minifig Helmet Space with Pipes and Mouth Grille with Control Panel and Dark Bluish Gray and Orange Markings Print,27 +17356pr0001,Minifig Guitar Electric Type 'ML',27 +17375,DUPLO BRICK 1X2X2 NO 13,4 +17417,DUPLO ROOF TILE 2X2X1 1/2 NO. 6,4 +17418,"DUPLO SIGN, ROUND NO. 5",4 +17435,"SAIL, DUPLO, FOIL, 2 PCS.",4 +17436,Panda Sitting [Plain],24 +17436pr0001,Panda Sitting with White Head and Belly and Blue Eyes Print,28 +17437,Seal with Medium Azure Eyes Print,28 +17454,Train Front 2 x 6 x 2,16 +17457,Glass for Train Front 2 x 6 x 2,16 +17458,"BOX W/SEAT 4X4X1,5 NO 4",4 +17468,Minifig Helmet Space Wraparound with Hair on Top and Breathing Vents [Plain],24 +17468pr0001,"Minifig Helmet Space Wraparound with Hair on Top, Breathing Vents and Red Eye Holes Print (Star-Lord)",27 +17478,"CAPE, DUPLO FIGURE",4 +17485,Brick Round 2 x 2 with Pin Holes,20 +17485pr0001,Brick Round 2 x 2 with Pin Holes with Silver and Dark Orange Print (C1-10P),2 +17486,"Leg Mechanical, Droid with Technic Pin - Short",13 +17492,Duplo Brick 1 x 2 x 2 with Bottom Tube and Bus Schedule Print,4 +17494,DUPLO ROOF TILE 2X2X1 1/2 NO 7,4 +17535,Minifig Head Modified Lasat,27 +17535pr0001,"Minifig Head Modified Lasat with Light Bluish Gray Face, Black Beard and Sideburns Print (SW Zeb Orrelios)",13 +17540,FLAG 4X2X1 NO. 5,4 +17554,Minifigure Head Modified - Plo Koon,13 +17562,"DUPLO HELICOPTER, COCKPIT",4 +17576,Minifig Helmet SW Rebel Cadet [Plain],24 +17576pr0001,Minifig Helmet SW Rebel Cadet,27 +17577,WIG LADY PAGE NO.1,13 +17578,"DUPLO SIGN, ROUND NO. 6",4 +17630,Minifig Hair Straight Cut and Short Ponytail,27 +17636,Sticker Sheet for 70163-1,17 +17637,Sticker Sheet for 70164-1,17 +17646,FLAG 4X2X1 NO. 4,4 +17660,Sticker sheet for set 60034 (17660/60748720),17 +1772stk01,Sticker for Set 1772 - Cargo Truck,17 +1773stk01,Sticker for Set 1773 - Truck with Trailer,17 +17744,"TWEEN ARM, SHORT ASSEMBLED",4 +1775stk01,Sticker for Set 1775 - (169705),17 +17774,Minifig Helmet SW Rebel [Plain],24 +17774pr0001,Minifig Helmet SW Rebel with B-wing Pilot Print ,27 +17774pr0002,Headgear Helmet SW Rebel with A-wing Pilot Pattern,13 +1782stk01,"Sticker for Set 1782 - Sheet 1, Station (71586/4109873)",17 +1782stk02,"Sticker for Set 1782 - Sheet 2, Fish and Coral (71452/4106596)",17 +17870,"Cloth Tent, Friends [Plain]",24 +17870pr0001,"Cloth Tent, Friends Jungle Leaves with Dark Purple Trim Print",38 +17876,"Cloth Tent, Arctic Explorer",38 +1788stk01,Sticker for Set 1788 - (822070),17 +17940,FIGURE W. STETHOSCOPE V2,57 +17944,ADULT FIGURE NO. 6 V2,4 +17961,Minifig Cape Cloth Curved with Hand Holes,27 +17969,ADULT FIG. NO. 7 V2,4 +17978,Minifig Head Modified Bith with Black Eyes and Flesh Mouth Print,13 +17979,Flag 5 x 6 Hexagonal with U Clips,38 +17980,HELMET NO.19 NO.1,27 +18012,ENGINE 2X4X2,4 +18016,BOX WITH HANDLE 4X4X1.5,24 +18018,Duplo Utensil Axe / Tomahawk,4 +18031,Minifig Greatsword Pointed with Thick Crossguard,27 +18041,Minifig Harpoon [Smooth Shaft],27 +18047,Minifig Hair Long Wavy with Gold Greek Soldier Helmet,27 +18051,Vehicle Mudguard 3 x 4 x 1 2/3 Curved Fenders [Plain],36 +18051pr0001,"Vehicle Mudguard 3 x 4 x 1 2/3 Curved Fenders with Headlights, Grille and Yellow Front Print",36 +18051pr0002,Vehicle Mudguard 3 x 4 x 1 2/3 Curved Fenders with Silver Headlights - White Trim and Black Air Intakes print,36 +18052,Wedge 5 x 4 x 1 1/3 with 2 x 4 Base [Plain],6 +18052pr0001,Wedge 5 x 4 x 1 1/3 with 2 x 4 Base with Windows and Yellow Stripe Print,47 +18108,Minifig Head Modified SW Ithorian,13 +18131,"Dewback Body, Claws and Short Tail, with Eyes and Nostrils and Leg Spots Print",28 +18134,Dewback Lower Jaw with Teeth Print,28 +18142,Minifig Helmet Barbarian with Tan Fur and Copper Markings Print,27 +18143,"Minifig Hair with Hat, Hair in Braid and Medium Lavender Cone with White Ribbon Print",27 +18153,Dragon Head (LotR) Upper Jaw with Spikes and Teeth [Plain],28 +18153pr0001,Dragon Head (LotR) Upper Jaw with Spikes with Tan Teeth and Orange Eyes Print,28 +18154,Dragon Head (LotR) Lower Jaw with Spikes and Teeth [Plain],28 +18154pr0001,Dragon Head (LotR) Lower Jaw with Spikes and Tan Teeth Print,28 +18159,Dragon Leg (LotR) Left with Black Claws [Plain],28 +18159pr0001,Dragon Leg (LotR) Left with Black Claws and Dark Brown Scales Print,28 +18160,Dragon Leg (LotR) Right with Black Claws [Plain],28 +18160pr0001,Dragon Leg (LotR) Right with Black Claws and Dark Brown Scales Print,28 +18161,Dragon Tail Long Curved with Spikes and Barbs,28 +18164,Minifig Hair Long Wavy with Ragged Ends and LotR Crown [Plain],24 +18164pr0001,Minifig Hair Long Wavy with Ragged Ends and LotR Gold Crown Print,27 +18165,Minifig Crown with 4 Tall Spikes,27 +18166,Minifig Hair Long Mullet with Banded Top Knot (Hunter Orc),27 +1817stk01,Sticker for Set 1817 - (71398/4105242),17 +18183,Minifig Helmet Castle with Cheek and Nose Protection and Crest [Plain],24 +18183pr0001,Minifig Helmet Castle with Cheek and Nose Protection with Gold Trim and Crest with Red Tips Print,27 +1818stk01,Sticker for Set 1818,17 +18200,Minifig Skirt Cloth Stepped Edge,27 +18202,"Minifig Cape Cloth, Tattered, Fur Effect (Hun Warrior Cape)",27 +18234,"Serpent Neck S-Curve with Moveable Ball Joint Pin, Spikes and 2 Studs",28 +18277,Minifig Raccoon Tail,27 +18306,Saddle [Two Open O Clips],28 +18312,"Body Giant, Mammut with 3 Studs and Reddish Brown Mane Print",28 +18333,Minifig Helmet Space with Air Mask [Plain],24 +18333pr01,Minifig Helmet Space with Air Mask with Pearl Light Gray Hoses Print,27 +18336,"Minifig Helmet Open Chin with Antenna, Studs on Sides and Trans-Bright Green Top, Front Light and Target Screen Print",27 +18347,Minifig Police Hat with Gold Badge Print,27 +18351,CHASSIS 2X6 ASSEMBLY,4 +18352,"Technic Steering Wheel Pilot's Yoke [Hollow Stud, Axle Hole with + Opening]",25 +18383,CREATURE HEAD NO. 3 NO.2,13 +18386,Legs and Hips with Black Sloped Extensions,13 +18392,Minifig Mask Bear [Plain],24 +18392pr0001,"Minifig Mask Bear with Black Nose, Fangs and Gray Fur Print",27 +18392pr0002,Minifig Mask Bear with Black Nose and Dark Brown Fur Print,27 +18392pr0004a,"Minifig Mask Bear with Black Nose, Fangs, Tribal Markings and Copper Armor with Rivets Print",27 +18392pr0004b,ANIMAL NO. 20 - 2015 NO 4,13 +18392pr0005,"Minifig Mask Bear with Black Nose, Fangs, Gray Chin and Tribal Markings Print",27 +18392pr0006,Minifig Mask Bear with White Face and Metallic Gold Scaled Armor Print,27 +18392pr0007,"Minifig Mask Bear with Black Nose, Fang, Gray Fur and Purple Sinew Patch Print",27 +18392pr0008,"Minifig Mask Bear with Black Nose, One Fang, Sand Blue Chin and Sand Blue Markings Print",27 +18394,Wave Rounded Wing Shaped with Pin (Flame) [Plain],24 +18394pat0001,Wave Rounded Wing Shaped with Pin (Flame) with Marbled Trans Yellow Pattern,27 +18394pat0002,Wave Rounded Wing Shaped with Pin (Frozen Water) with Marbled Glitter Trans Clear Pattern,27 +18395,Wave Rounded Single with Pin (Flame),27 +18396,Wave Rounded Double with Axle (Flame) [Plain],24 +18396pat0001,Wave Rounded Double with Axle (Flame) with Marbled Bright Light Orange Pattern,27 +18396pat0002,FLAME TRIBAL 3.5X12 W/CROSS AXLE,27 +18396pat0003,Wave Rounded Double with Axle (Flame) with Marbled Black Pattern,27 +18398,Minifig Breastplate with Shoulder Pads [Plain],24 +18398pr0001,Minifig Breastplate with Shoulder Pads and Chima Worriz Print,27 +18398pr0002,Minifig Breastplate with Shoulder Pads and Chima Gorzan Print,27 +18398pr0003,Minifig Armor Breastplate with Shoulder Pads and Chima Razar Print,27 +18398pr0004,Minifig Breastplate with Shoulder Pads and Chima Eris Print,27 +18398pr0005,Minifig Breastplate with Shoulder Pads and Chima Bladvic Print,27 +18398pr0006,Minifig Breastplate with Shoulder Pads and Chima Rogon Print,27 +18398pr0007,Minifig Breastplate with Shoulder Pads and Chima Cragger Print,27 +18398pr0008,Minifig Breastplate with Shoulder Pads and Chima Laval Print,27 +184,Baseplate 16 x 18,1 +18405,temptemp,32 +18449,Dragon Wing 26 x 16 Folding Left with Spikes and Ball Joint Connector,28 +18450,Tyre 81.6 x 44 R,29 +18453,Dragon Wing 26 x 16 Folding Right with Spikes and Ball Joint Connector,28 +18454,DUPLO REFRIGERATOR DOOR,4 +18455,Hinge Brick 2 x 4 Locking with 1 Finger on Top at One End,18 +18488,Duplo Brick Round 4 x 4 Dome Top with 2 x 2 Studs,4 +18500,Sticker for Set 70147 - Sheet 2 Ice (18500/6083633),17 +18502,Sticker for Set 70147 - Sheet 1 Fire (18502/6083649),17 +1850pr0001,Road Sign Old Diamond with Black & White Border End of Major Road Print & Type 1 Base,38 +1850pr0002,Road Sign Old Diamond with Black & White Border Major Road Print & Type 1 Base,38 +1851pr0001,Road Sign Old Round with Triangle Stop Print & Type 1 Base,38 +18520,UNIVERSAL TRAILER ASS.,4 +18527,BASE W. B-CON. 4X8X2,4 +1852pr0004,Road Sign Old Round with No Parking Blue Print & Type 1 Base,38 +18533,DOOR WITH 4 HINGES,4 +1853pr0001,Road Sign Old Square with Parking 'P' Print & Type 1 Base,38 +1854stk01,Sticker for Set 1854 - (4105245),17 +18575,Technic Gear 20 Tooth Double Bevel with Axle Hole Type 1 [+ Opening],52 +18585,Brick Special 2 x 4 with Pin Holes and Flywheel Socket [Airjitzu],5 +18587,Minifig Rapid Shooter Trigger,27 +18588,Minifig Rapid Shooter Six Barrel,27 +18590,Gearwheel 8 Tooth with Pin Holes and Flywheel Recess [Airjitzu],26 +18591,Windscreen 4 x 4 x 5 Cone with Pins,47 +18592,PROPELLER D103,35 +185c01,Boat Section Middle 6 x 8 x 3.333 with LtGray Deck,35 +18601,Plate Special 12 x 24 with 6 x 6 Square Cutouts at 2 Corners and 6 x 6 Round Cutout,9 +18646,Plate Round Half 3 x 6 with 1 x 2 Cutout,21 +18649,Plate Special 1 x 2 with Handles on Ends,9 +18651,Technic Axle Pin 3L with Friction Ridges Lengthwise and 2L Axle,53 +18652,BRICK 2X8X2 W. INSIDE BOW,4 +18653,Brick 1x3x2 w. inside bow,37 +18654,Technic Pin Connector Round 1L [Beam],12 +18663,Minifig Stand Flexible (Super Jumper),27 +18671,Bracket 3 x 2 x 1 1/3,9 +18673,Minifig Lightsaber Hilt Straight with Ring,27 +18674,Tile 2 x 2 Round with Center Stud,15 +18675,Dish 6 x 6 Inverted - No Studs with Handle,21 +18675pr0001,Dish 6 x 6 Inverted - No Studs with Handle with SW TIE Advanced Hatch Print,21 +18675pr0002,Dish 6 x 6 Inverted - No Studs with Handle with SW 8 Spoke Radial Cockpit Print,21 +18675pr0003,Dish 6 x 6 Inverted - No Studs with Handle with SW 8 Spoke Death Star Window Print,21 +18675pr0004a,Dish 6 x 6 Inverted - No Studs with Handle with Silver and White Electricity Print,21 +18675pr0004b,"COCKPIT Ø47,79 W. SHAFT Ø3,2 DEC NO. 4",21 +18675pr0005,"COCKPIT Ø47,79 W. SHAFT Ø3,2 DEC NO. 5",21 +18675pr0006,"COCKPIT Ø47,79 W. SHAFT Ø3,2 DEC NO. 6",21 +18675pr0009,"COCKPIT DIA. 47.79, W/ SHAFT, NO. 9",47 +18675pr0010,"COCKPIT, DIA. 47.79 W/ SHAFT, NO. 10",16 +18677,Plate Special 1 x 2 with Pin Hole,9 +18679,Minifig Armor Shoulder Pads with Neck Protection and Clip on Back [Plain],24 +18679pr0001,Minifig Armor Shoulder Pads with Neck Protection and Clip on Back with Silver and Red Stripes and Imperial Insignia on Shoulders Print,27 +18684,Minifig Helmet SW Inquisitor with Trans Red Visor [Plain],24 +18684pr0001,Minifig Helmet SW Inquisitor with Trans Red Visor with White Side Insignia Print,27 +18692,"Minifig Cape Cloth, Pointed Collar with Iridescent Stars and Moons Print",27 +18720,"PLANE BASE 12x12x2,5",4 +18729,BOW SHELL 6X10X4 22/45DEG,47 +18731c01,Minifig Hood with Trans Purple Mask [Plain],24 +18731c01pr0001,Minifig Hood with Trans Purple Mask and Silver Medallion with Swirl Print,27 +18738,Minifig Ice Axe [3-Rib Handle],27 +18740,MICROPHONE W/ Ø3.2 SHAFT,27 +18742,Belville Bucket without Handle Holes,7 +18746,Minifig Snowboard Small,27 +18746pr0001,Minifig Snowboard Small with Blue and Pink Snowflakes Print,27 +18746pr0002,"Minifig Snowboard Small with Medium Blue and Black Stripes and Circles and ""48mm"" Print",27 +18759,Slope Inverted 45° 3 x 1 Double with 2 Blocked Open Studs,3 +18762,CHILD FIGURE 8,4 +18763,CHILD FIGURE 9,4 +18769,Dragon Torso (LotR) with Spikes and Gold Ventral Scales Print,28 +18783,WALL 1X2X2 PLANK PATTERN,4 +18787,Minifig Sword Blocky (Minecraft Sword),27 +18788,Minifig Axe Blocky (Minecraft Axe),27 +18789,Minifig Pickaxe Blocky (Minecraft Pickaxe),27 +18791,Minifig Shovel Blocky (Minecraft Shovel),27 +18792,Minifig Bow with Arrow Blocky (Minecraft Bow),27 +18805,"CUP W. GROOVES, 4X4X1½",4 +18806,FRAME 2X4X2 WITH HINGE,4 +18814,ROOF TILE 4X4X2,4 +18816,DOOR 4x3 W/HANDLE,4 +18819,"Minifig Head Cover, Hot Dog Costume [Plain]",24 +18819pr0001,"Minifig Head Cover, Hot Dog Costume with Dark Red Sausage and Yellow Mustard Print",27 +18822,Minifig Turban without Hole,27 +18823,CHILD FIGURE 6,4 +18824,"Snake, Cobra [Plain]",24 +18824pr0001,"Snake, Cobra with Tan and Black Print",28 +18825pr0007,Duplo Minifig Child Girl with Bow on Bright Pink Top - Red Legs,4 +18825pr0011,Duplo Minifig Child Girl with Yellow Hair and Pink Butterfly on White Top - Dark Azure Legs,4 +18825pr0012,Duplo Figure Child Girl with Black Pigtails and Light Flesh Face and Hands - Red Sweater with a line of Orange Diamonds on White Diamonds - White Legs,4 +18827,Minifig Armor Space with Shoulder Protection and 2 Clips [Plain],24 +18827pr0001,Minifig Armor Space with Shoulder Protection and 2 Clips with Galaxy Squad Logos and Silver Stripe Print,27 +18827pr0002,Minifig Armor Space with Shoulder Protection and 2 Clips with Dark Gray and White Armor Plates and Ultra Agents Logo Print,27 +18827pr0003,"Armor Space with Shoulder Protection and 2 Clips with Dark Azure Cyborg Head, '4-9' and Silver Circuitry Pattern",27 +18828,Minifig Head Modified Alien with 4 Mouth Tentacles [Plain],24 +18828pr0001,Minifig Head Modified Alien with 4 Mouth Tentacles and Blue Eyes and Green Spots Print,13 +18829,Minifig Pith Helmet with Hair in Ponytail [Plain],24 +18829pr0001,"Minifig Hat with Hair, Pith Helmet and Dark Orange Hair in Ponytail Print",13 +18830,Minifig Fencing Mask [Plain],24 +18830pr0001,Minifig Fencing Mask with Silver Mesh Print,27 +18831,Minifig Mask Horse with Hole in Top and Mane [Plain],24 +18831pr0001,"Minifig Mask Horse with Hole in Top, Black Eyelashes and Medium Lavender Mane Print (Unicorn Girl)",27 +18832,Minifig Costume Tail Unicorn [Plain],24 +18832pr0001,Minifig Costume Tail Unicorn with Medium Lavender Ends Print,27 +18835,"Minifig Hair Mid-Length, Straight [Plain]",24 +18835pr0001,"Minifig Hair Mid-Length, Straight with Gold Crown Print",13 +18836,MINI SHIELD NO. 1,24 +18836pr0001a,"Minifig Shield Triangular Long with Black Outlines, Circle and Triangles Print",27 +18836pr0001b,MINI SHIELD NO. 1 NO.1,27 +18838,Brick Arch 1 x 12 x 3 Raised Arch with 5 Cross Supports,37 +18842,Minifig Hair Friends Long with Curls at Ends,13 +18844,Minifig Hair Friends Long with Ponytail French Braided with 2 Holes,27 +18852,Bunny Rabbit Baby Sitting [Plain],24 +18852pr0001,Bunny Rabbit Baby Sitting with Black Eyes and Black Nose Print,28 +18853,Friends Flower with Pointed Petals and Pin,27 +18854,Friends Accessories Sunglasses with Pin,27 +18855,Friends Accessories Baby Bottle with Handle,27 +18857,BOX 4X4X3,4 +18858,Minifig Hair Female Mid-Length with Side Part [Plain],13 +18858pr0001,Minifig Hair Female Mid-Length with Side Part and Orange Hair Streaks Print (SW Sabine Wren),13 +18858pr0002,Hair Female Mid-Length with Side Part and Light Blue and Dark Blue Top Pattern (SW Sabine Wren),13 +18866,Clam [Type 2 - Locking Edge on Inner Lip],28 +18868a,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 4 Studs - Top and Bottom Same Color (Generic for Gadgets),45 +18868b01,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 4 Studs - Trans Yellow Top and Trans Orange Bottom (Generic for Gadgets),45 +18892,Brick Special 2 x 4 with Wheels Holder with 2 x 2 Cutout,5 +18895,"Motorcycle Fairing, Racing (Sport) Bike",36 +18895pr01,"Motorcycle Fairing, Racing Bike with Black Windshield Print",36 +18895pr02,MOTORCYCLE FAIRING Racing (Sport) Bike NO. 4,36 +18895pr03,"Motor Cycle Fairing, No. 6",36 +18896,"Motorcycle Chassis, Clip for Handle",36 +18897,Brick Round 6 x 6 with 4 Side Pin Holes and Center Hole,20 +18899,Minifig Helmet Construction with Ear Protector / Headphones [Plain],24 +18899pat0001,Minifig Helmet Construction with Black Ear Protector / Headphones Pattern [Red],27 +18899pat0002,Minifig Helmet Construction with Black Ear Protector / Headphones Pattern [White],27 +18904,Alligator / Crocodile Body New Style,28 +18905,Alligator / Crocodile Head Upper Jaw [Plain],24 +18905pr0001,Alligator / Crocodile Head Upper Jaw with Yellow Eyes Print,28 +18906,Alligator / Crocodile Tail with Hole,28 +18907,Aircraft Fuselage Curved Forward 6 x 10 Top with 5 Window Panes,47 +18907pr0001,Aircraft Fuselage Curved Forward 6 x 10 Top with 5 Window Panes with Black Space Shuttle Nose Print,47 +18908,Glass for Aircraft Fuselage Curved Forward 6 x 10 Top with 5 Window Panes,47 +18909,Cone Half 6 x 3 x 6 (Elliptic Paraboloid),20 +18910,Hinge Panel 3 x 4 x 3 Curved,18 +18917,FRUIT,4 +18918,Cake Swirl Decoration with Top Stud,4 +18920,Minifig Scissors,27 +18921,Duplo Plate 6 x 12,4 +18922,Brick Special 8 x 16 with 1 x 4 Indentations and 1 x 4 Plate,5 +18922pr0001,Brick Special 8 x 16 with 1 x 4 Indentations and 1 x 4 Plate with Floor Mats Print,5 +18927,"Minifig Hat, Rag Wrap / Bandana, Rounded Top",27 +18936,Minifig Helmet Open Chin with Wings (Hawkman),27 +18937,"CAR BOTTOM, LARGE, ASSEMBLY",36 +18938,Technic Turntable Large Type 3 Top (60 Teeth),26 +18939,Technic Turntable Large Type 3 Base,26 +18940,Gear Rack 1 x 14 x 2 Housing,52 +18942,Gear Rack 1 x 14 x 2 with Axle and Pin Holes,52 +18943,Technic Digger Bucket 5 x 7 x 4 1/2 Clamshell with Pin Hole and Axle Hole,26 +18944,Technic Panel Curved 3 x 13,40 +18945,Technic Panel 5 x 11 x 1 Tapered,40 +18946,Technic Gear 16 Tooth with Clutch on Both Sides,52 +18947,Technic Driving Ring 3L,52 +18948,Technic Driving Ring Connector,12 +18950,Minifig Blade with Bar (Ninjago Jade Blade),27 +18957,"Minifig Sword, Serrated with Snake Skull Hilt [Plain]",24 +18957pat0002,"Minifig Sword, Serrated with Snake Skull Hilt and Dark Purple Blade Pattern",27 +18958,MINI HEAD W. GEAR NO. 10 "NO. 1",13 +18959,Minifig Nemes [Plain],24 +18959pr0001,Minifig Nemes with Gold Trim and Blue Stripes Print,27 +18961,Minifig Shoulder Pads with 3 Spikes and Spine [Plain],27 +18961pr01,Minifig Shoulder Pads with 3 Spikes and Spine with Dark Red Pads Print,27 +18962,Minifig Helmet Snake Skull,27 +18969,Panel 4 x 4 x 13 Curved Tapered with Clip at Each End,23 +18970,Clam / Scallop Shell with 4 Studs,28 +18972,Windscreen 5 x 4 x 1 1/3,47 +18973,Windscreen 6 x 4 x 1 Curved,47 +18973pr0001,"Windscreen 6 x 4 x 1 Curved with 'Ferrari', Italian Flag and Black and Red Print",47 +18973pr0002,Windscreen 6 x 4 x 1 Curved with Black and Bright Light Orange Print,47 +18973pr0003,Windscreen 6 x 4 x 1 Curved with 'Audi e-tron quattro' and Light Bluish Gray Roof print,47 +18973pr0004,Windscreen 6 x 4 x 1 Curved with Red 'PORSCHE' Banner on White and Gray Roof print,47 +18973pr0005,Windscreen 6 x 4 x 1 Curved with Red Roof print,47 +18974,Vehicle Mudguard 4 x 2 1/2 x 2 1/3 with Arch Round,36 +18975,Brick Special 2 x 4 x 1 1/3 with Holes and 2 x 2 Cutout,5 +18976,Wheel 18 x 12 with Axle Hole and Stud,29 +18977,Tyre 24 x 12 Low Profile,29 +18978,Wheel Covers 5 Spoke and 10 Spoke - for Wheel 18976,29 +18978a,Wheel Cover 5 Spoke - for Wheel 18976,29 +18978b,Wheel Cover 10 Spoke - for Wheel 18976,29 +18979,Wheel Covers 7 Spoke Y Shape and 10 Spoke T Shape - for Wheel 18976,29 +18979a,Wheel Cover 10 Spoke T Shape - for Wheel 18976,29 +18979b,Wheel Cover 7 Spoke Y Shape - for Wheel 18976,29 +18980,Plate Round Corner 2 x 6 Double,21 +18983,Minifig Handle with Saw [Plain],24 +18983pr0001,Minifig Handle with Light Bluish Gray Saw,27 +18984,"Minifig Hat, Elf Drooping with Pointy Ears [Plain]",27 +18984pr0001,"Minifig Hat, Elf Drooping with Pointy Ears with Reddish Brown Top and Patch Print",27 +18986,Minifig Neck Bracket with 2 Back Studs,27 +18987,Minifig Mask Batman Type 3 Cowl (Open Chin),27 +18990,Windscreen 4 x 4 x 1 2/3 Canopy Half Sphere with Handle,47 +18990pr0001,Windscreen 4 x 4 x 1 2/3 Canopy Half Sphere with Handle and Hulk Buster Face Print,47 +18999,"Body Giant, Darkseid with Black Pants with Gold and Red Markings and Red Circle on Chest Print",13 +19000,"HELICOPTER 4X14X5, ASSEMBLY",35 +19001,"Vehicle, Tipper Bed 12 x 8 x 5",36 +19010,PLANE TOP 6x12x3 NO 1,4 +19011,DUCK NO. 1,4 +19013,DUCK NO. 2,4 +19014,Minifig Head Armor with Rivets ,27 +19015,GRIZZLY BEAR CUB NO 3,4 +19017,Body Giant Gorilla [Plain],24 +19017pr0001,"Body Giant, Gorilla with Gorilla Grodd Print",13 +19020,Bar 1 x 8 with Black Arrow End (Spring Shooter Dart),32 +19023c01,Minifig Helmet Space with Trans Light Blue Visor and Ear Protectors,27 +19026,Minifig Helmet Cyborg Side Open [Plain],24 +19026pr0001,"Minifig Helmet Cyborg Side Open with Black Top Side, Red Eye and Red Dot Print",27 +19030,GRIZZLY BEAR NO 3,4 +19034,DEER LAMB NO 1,4 +19038,DEER FEMALE NO 1,4 +190380,Technic Control 4.5V Interface Card IBM,45 +19039,DEER MALE NO 1,4 +19044,Minifig Helmet Ninjago Snake Skull and Spine [Plain],24 +19044pr01,Minifig Helmet Ninjago Snake Skull and Spine with Dark Purple Snake Print,27 +19049,Bionicle Head Connector Block (Toa Okoto),41 +19050,Bionicle Head Connector Block Eye/Brain Stalk (Toa Okoto),41 +19052,"Bionicle Mask, Kanohi Hau (Mask of Fire)",41 +19053,SQUIRREL NO 2,4 +19061,Bionicle Mask of Jungle (Kanohi Miru),41 +19061pat0001,Bionicle Mask of Jungle with Marbled Trans-Bright Green Pattern,41 +19062,"Bionicle Mask, Kanohi Kaukau (Mask of Water)",41 +19064,Bionicle Mask of Ice (Kanohi Akaku),41 +19064pat0001,Bionicle Mask of Ice with Marbled Trans-Light Blue Pattern,41 +19071,LPF2 SMART HUB 2 I/O 4X8X3,45 +19074,Sticker Sheet for 42034-1,17 +19077,Bionicle Mask of Earth (Kanohi Pakari),41 +19077pat0001,Bionicle Mask of Earth with Marbled Trans-Purple Pattern,41 +19082,Bionicle Mask of Stone (Kanohi Kakama),41 +19082pat0001,Bionicle Mask of Stone with Marbled Trans-Neon Green Pattern,41 +19084,Duplo Fish with Thick Tail and Small Tail Fin,4 +19086,Technic Beam 5 x 5 x 2 Perpendicular Fork 3 Fingers,55 +19087,Bionicle Armor Cover (Toa Okoto),41 +19089,Bionicle Weapon Axe Blade / Glider Wing,41 +19090,Bionicle Weapon Boomerang Half,41 +19105,PICK-UP ELEMENT 4X8 NO 2,4 +19114,Minifig Helmet SW Imperial Agent with Cheek and Neck Protection [Plain],24 +19114pr0001,Minifig Helmet SW Imperial Agent with Cheek and Neck Protection with Flat Silver and Red Triangles Print (Agent Kallus),27 +19118,Minifig Key Ornamented with Stud,27 +19119,Plant Flower Stem with Bar and 6 Stems,28 +19121,Fence Ornamented 1 x 4 x 2 with 4 Studs,32 +19133,HORSE 2X8X5 NO. 6,4 +19134,"PIG, ASSEMBLED NO 3",4 +19136pr0001,Minifig Head - Snake with Short Neck- Red Eyes - Open Mouth with White Fangs Print (Chop'rai),13 +19136pr0002,Minifig Head - Snake with Short Neck - Orange Eyes - Open Mouth with White Fangs Print,13 +19141,Minifig Scabbard for Two Swords,27 +19149,Bionicle Mask Protector [Plain],24 +19149pat0001,Bionicle Mask Protector with Marbled Trans-Purple Pattern (Protector Mask of Earth),41 +19149pat0002,Bionicle Mask Protector with Marbled Trans-Light Blue Pattern (Protector Mask of Ice),41 +19149pat0003,Bionicle Mask Protector with Marbled Trans-Yellow Pattern (Protector Mask of Fire),41 +19149pat0004,Bionicle Mask Protector with Marbled Trans-Bright Green Pattern (Protector Mask of Jungle),41 +19149pat0005,Bionicle Mask Protector with Marbled Trans-Neon Green Pattern (Protector Mask of Stone),41 +19149pat0006,Bionicle Mask Protector with Marbled Trans-Dark Blue Pattern (Protector Mask of Water),41 +19149pat0007,Bionicle Mask Protector with Marbled Trans-Light Blue Pattern,41 +19151,Bionicle Digging Claw / Shovel,41 +19159,Technic Pin Double Triangle 1 x 3 with 2 Clips without Center Cut,53 +19179,Minifig Blade with Bar and 3 Spikes,27 +19185,Minifig Cape - Cloth - Scalloped 5 Points [Unstarched],27 +19193,Friends Hips and Baggy Trousers (aka HIP W/SHORTS NO. 3) [Plain],24 +19193pr0001,Friends - Hips and Baggy Trousers with Light Aqua Shoes Print,13 +19193pr0002,HIP W/SHORTS NO. 3 ASS. 2,13 +19195,Minifig Hair Friends Long with Pigtails and Winter Hat [Plain],24 +19195pr0001,Minifig Hair Friends Long with Pigtails and Magenta Winter Hat with White Fur Trim Print,27 +19196,Minifig Hair Friends Long with Ponytail Braided [Plain],24 +19196pr0001,Minifig Hair Friends Long with Hole on Top - Ponytail Braided with 2 Bands with Medium Azure Tiara and Gold Earrings Print,27 +19201,"Minifig Hair Long Wavy with Braid, Bangs and Elves Ears [Plain]",24 +19201pr0001,"Minifig Hair Long Wavy with Dark Azure Tips, Braid, Bangs and Light Flesh Elves Ears Print",13 +19203,Minifig Hair Short Spiked with Elves Ears [Plain],24 +19203pr0001,Minifig Hair Short Spiked with Light Flesh Elves Ears Print [1 Pinhole],13 +19203pr0002,Minifig Hair Short Spiked with Light Flesh Elves Ears Print [Dark Orange],13 +19203pr0003,WIG_SHORT W. EARS NO. 3,13 +19204,Minifig Hair Long Wavy with Elves Ears [Plain],24 +19204pr0001,Minifig Hair Long Wavy with Yellow Tips and Medium Flesh Elves Ears Print,13 +19206,"Minifig Hair Long Tapered in Back with Braids, Bangs and Elves Ears [Plain]",24 +19206pr0001,"Minifig Hair Long Tapered in Back with White Tips, Braids, Bangs and Light Flesh Elves Ears Print",13 +19206pr0002,Minifig Hair Long Tapered in Back with Braids and Lavender Highlight in Bangs and Light Flesh Elves Ears Print,13 +19212,WIND SCREEN 1X12X4 54 DEG,24 +19215,Wheel Cover 5 Spoke Thick with Edge Bolts,29 +19220,"Minifig Radio [Extended Handle, Expanded Speaker Grille]",27 +19232,Minifig Head Modified Wookiee [Plain],24 +19232pr0001,Minifig Head Modified Wookiee with Dark Tan Fur Print,13 +19232pr0002,"Minifig Head Modified Wookiee, Wullffwarro with Dark Orange Fur Print",13 +19245,Sticker Sheet for 75910 - 19852/6102497 or 19245/6097423,17 +19250,Sail Triangular 16 x 23 with 3 Holes with White and Blue Ornaments and Water Power Icon Print,38 +19285,DUPLO CURVE 2X4X2 NO 5,4 +19303,Minifig Helmet Mask,27 +19303pr0002,Minifig Helmet Mask with Lines on Face and Forehead Print,27 +19305,Minifig Neck Armor,27 +19305pr0002,Minifig Neck Armor with Black Markings on Front Print,27 +19338,DUPLO BRICK 1X2X2 NO 16,4 +19343,DUPLO BRICK 2X2 NO 39,4 +19344,DUPLO CURVE 2X4X2 NO 6,4 +19349,DUPLO BRICK 2X2 NO 40,4 +19350,DUPLO BRICK 2X2 NO 41,4 +19353,DUPLO BRICK 1X2X2 NO 19,4 +19361,DUPLO BRICK 1X2X2 NO 18,4 +19364,DUPLO CURVE 2X4X2 NO 7,4 +19365,"DUPLO BRICK 2X2X2, R=15 NO 12",4 +193au,Minifig Helmet Old with Thin Chinstrap - Visor Dimple Presence Undetermined,27 +19415,DUPLO BRICK 2X2X2 11,4 +19416,DUPLO BRICK 2X2X2 NO. 12,4 +19417,DUPLO BRICK 2X2X2 NO. 13,4 +19418,DUPLO BRICK 2X2X2 NO. 14,4 +19419,DUPLO Brick 2 x 2 x 2 with 1 Apple,4 +19420,DUPLO BRICK 2X2X2 NO. 16,4 +19421,DUPLO BRICK 2X2X2 NO. 17,4 +19422,DUPLO BRICK 2X2X2 NO. 18,4 +194225,Sticker Sheet for set 6653,17 +19423,DUPLO BRICK 2X2X2 NO. 19,4 +19424,DUPLO BRICK 2X2X2 NO. 20,4 +19425,DUPLO BRICK 2X2X2 NO. 21,4 +19426,DUPLO BRICK 2X2X2 NO. 22,4 +19430,"DUPLO BRICK, BOW 2X3X1 NO. 5",4 +19431,DUPLO OVAL 2X4X2 NO. 5,4 +19440,LADDER 2X12 W. B CON. MALE HF,4 +19451,BASKET FOR FIRE LADDER,4 +19475,Pneumatic Cylinder 1 x 5 with 2 Stepped Inlets [V2],22 +19476,Pneumatic Cylinder 1 x 11 with 2 Stepped Inlets [V2],22 +19478,Pneumatic Cylinder 2 x 11 with 2 Stepped Inlets [V2],22 +19482,Pneumatic Pump 1 x 6 with Stepped Outlet [V2],22 +194c01,Minifig Hose Nozzle Simple with 8L Black String,30 +194c03,Minifig Hose Nozzle Simple with 72L Black String,27 +194cx1,Minifig Hose Nozzle Simple with 13L String,31 +194cx2,Minifig Hose Nozzle Simple with 35L Black String,31 +19520,DUPLO BRICK 2X2 NO 42,4 +19532,Fox [Plain],24 +19532pr0001,Fox with Face Decoration Print,28 +19532pr0002,"FOX W. HOLE Ø1,5 DEC. 2",28 +19532pr0004,FOX W/ HOLE DIA. 1.5 NO. 4,28 +195385,Sticker Sheet for 6384-1,17 +19539,"CREATURE NO. 15, ASS. DECO 1",13 +19540,Technic Grabber Arm Claw with 3L Thick Beam [Type 2],26 +19551,Shark Head Sawfish [Plain],24 +19551pr0001,Shark Head Sawfish with Eyes Print,28 +19593,DUPLO BRICK 2X2X2 NO. 25,4 +19641,CREATURE NO. 19 NO. 1,13 +19642,"CRAB ON TUBE W. 2 X 3,2 HOLDER",24 +19642pr0001,Red Crab - Sebastian (41063),28 +19663,LADDER 2X6 W. B-CONNECTOR,4 +19680,Cat (Simpsons) [Plain],24 +19680pr0001,Cat with Simpsons Snowball II Print,28 +196926,"Paper, Cardboard Train Track Layout Template 1:13 Scale for 4.5V & 12V, 159mm x 134mm, with Lego logo",17 +19708,DUPLO BRICK 2X2 no 43,4 +19723,Minifig Breastplate Rectangular (Minecraft),27 +19725,DISH Ø80X9.6 TR.,24 +19727,Plate Special 1 x 2 with Cube [Plain],24 +19727pr0001,Plate Special 1 x 2 with Cube with Light and Dark Bluish Gray Pixelated Face Print (Minecraft Cow),9 +19727pr0002,"Plate Special 1 x 2 with Cube with Black, White and Dark Red Pixelated Face Print (Minecraft Pig)",9 +19727pr0003,Plate Special 1 x 2 with Cube with Light and Dark Bluish Gray and Black Pixelated Face Print (Minecraft Mooshroom),9 +19727pr0004,Plate Special 1 x 2 with Cube with Tan and Pink Pixelated Face Print (Minecraft Sheep),9 +19727pr0005,Plate Special 1 x 2 with Cube with Red Pixelated Face Print (Minecraft Spider),9 +19727pr0006,LEGO Minecraft Mooshroom Head (20059 / 28288),13 +19727pr0007,LEGO Minecraft Cow Head (20056 / 28286),13 +19727pr0008,LEGO Minecraft Pig Head (20057 / 28253),13 +19727pr0013,"ANIMAL HEAD NO.13 ""NO.5""",13 +19727pr0020,ANIMAL HEAD NO.20,13 +19729,Minifig Head Modified Cube [Plain],13 +197295,Sticker for 3636 (197295),17 +19729pr0001,Minifig Head Modified Cube with Minecraft Steve Face Print,13 +19729pr0002,Minifig Head Modified Cube with Minecraft Skeleton Face Print,13 +19729pr0003,Minifig Head Modified Cube with Minecraft Zombie Face Print,13 +19729pr0004,Minifig Head Modified Cube with Minecraft Enderman Face Print,13 +19729pr0005,Minifig Head Modified Cube with Minecraft Pumpkin Jack O' Lantern Print,13 +19729pr0006,Minifig Head Modified Cube with Minecraft Creeper Face Print,13 +19729pr0007,"FIGUR HEAD NO.1""NO.9""",13 +19729pr0009,FIGUR HEAD NO.1NO.9,13 +19729pr0010,FIGUR HEAD NO.1NO.10,13 +19729pr0012,Minifig Head Modified Cube with Minecraft Alex Face Print,13 +19729pr0013,Minifig Head Modified Cube with Minecraft Wither Skull Skeleton Face Print,13 +19729pr0014,Minifig Head Modified Cube with Witcher Face Print,13 +19729pr0023,"FIGURE HEAD, NO. 23",13 +19729pr9999,MINI HEAD NO. 2183,13 +19730,Minifig Helmet Rectangular (Minecraft),27 +19732,Minecraft Enderman Legs,13 +19734,Creature Torso Blocky with Cube Feet (Minecraft Creeper),13 +1973stk01,Sticker for Set 1973 - (164325),17 +19796,DUPLO Train Wagon Base 4 x 8 with Light Bluish Gray Wheels and Moveable Hook,4 +19802,"CARAVAN TOP W. B-CON 4X8X2,5",4 +19818,ADULT FIGURE 13 V2,4 +19818pr0013,Duplo Minifig - Mickey Mouse with Black Jacket and Yellow Bow Tie - Red Trousers,4 +19818pr0025,Duplo Minifig - Mickey Mouse with Red Overalls ,4 +19818pr0031,Duplo Figure - Mickey Mouse with Yellow Lifejacket - Figure 31,4 +19819pr0014,Duplo Minifig - Minnie Mouse with Bright Pink Top - White Legs,4 +19819pr0026,Duplo Figure - Minnie Mouse with Medium Azure Aviator Jacket and Polka Dot Scarf - Dark Pink Legs,4 +19820,ADULT FIGURE 15 V2,4 +198323,LEGO TC logo - Getting Started,17 +198324,LEGO TC logo - Making Machines,17 +198325,LEGO TC logo - Teaching the Turtle,17 +198326,LEGO TC logo Teacher's Guide,17 +198327,LEGO TC logo Quick Reference Guide,17 +198331,LEGO TC logo Reference Guide,17 +19857,Minifig Ninjago Wrap Type 2 [Plain],24 +19857pat0001,Minifig Ninjago Wrap Type 2 with Wraps and Knot Pattern,27 +19857pat0002,Minifig Ninjago Wrap Type 2 with Red Wraps and Knot Pattern,27 +19857pat0003,Minifig Ninjago Wrap Type 2 with Blue Wraps and Knot Pattern,27 +19857pat0004,Minifig Ninjago Wrap Type 2 with Dark Bluish Gray Wraps and Knot Pattern,27 +19857pat0005,Minifig Ninjago Wrap Type 2 with White Wraps and Knot Pattern,27 +19857pat0006,Minifig Ninjago Wrap Type 2 with Dark Azure Wraps and Knot Pattern,27 +19857pat0007,Minifig Ninjago Wrap Type 2 with Green Wraps and Knot Pattern,27 +19858,"Minifig Weapon Sword, Serrated [Plain]",24 +19858pat0002,"Minifig Weapon Sword, Serrated with Marbled Dark Green Pattern",27 +19858pat0004,Minifig Sword Serrated with Marbled Red Pattern,27 +19859,"Lower Body, Ghost [Plain]",24 +19859pat0002,"Lower Body, Ghost with Marbled Trans-Dark Blue Pattern",13 +19859pat0004,"Lower Body, Ghost with Marbled Dark Bluish Gray Pattern",13 +19859pat0005,"Lower Body, Ghost with Marbled Yellow Pattern",13 +19859pat0006,"Lower Body, Ghost with Marbled Red Pattern",13 +19859pat0011,"Lower Body, Ghost with Marbled Sand Green Pattern",13 +19859pat0014,"Lower Body, Ghost with Marbled Purple Pattern",13 +19859pat0015,Lower Body Ghost with Orange Marbled Pattern,13 +19861,Minifig Ninjago Skreemer Mask [Plain],24 +19861pr0001,Minifig Ninjago Skreemer Mask with Mouth Open with Pointed Teeth and Green Tongue Print,13 +19861pr0002,Minifig Ninjago Skreemer Mask with Mouth Lopsided with Pointed Teeth Print,13 +19861pr03,Ghostbusters Blue Ghost with Three Eyes,28 +19881,Sticker Sheet for 41085-1,17 +19888,"Minifig Cape Cloth, Standard - Spongy Stretchable Fabric",27 +19893,Dog Greyhound (Simpsons) [Plain],24 +19893pr0001,Dog Greyhound with Simpsons Santa's Little Helper Print,28 +19903,Minifig Head Modified Simpsons Patty [Plain],24 +19903pr0001,Minifig Head Modified Simpsons Patty with Dark Turquoise Earrings and Lavender Hair Print,13 +19906,Minifig Head Modified Simpsons Selma [Plain],24 +19906pr0001,Minifig Head Modified Simpsons Selma with Dark Red Earrings and Lavender Hair Print,13 +19916,Minifig Helmet SW Darth Vader Type 2 Top,27 +19917,Minifig Collar SW Darth Vader Helmet Bottom,27 +19923,GUNGAN NO. 2,13 +19934,Cloth Sail Triangular 18 x 20 with Red Stripes Print,38 +19939,Cloth Sail Top 19 x 13 with Red Stripes Print,38 +19941,"Cloth Sail Bottom 28 x 18 with Red Stripes, Skull and Crossed Swords Print",38 +19942,"BRICK, ROUND 2X2X2 NO 2",4 +19946,"Minifig Cape Cloth, Rounded Collar with 2 Points with Flames on Black Background Print",27 +19948,"Minifig Cape Cloth, Crescent Shaped with Flames on Black Background Print",27 +19949,Minifig Cloth Cape - Curved Bottom with 3 Top Holes,27 +19951,"Minifig Cape Cloth, Rounded Collar with 3 Top Holes with Black Fur Spots Print",27 +19981,Dimensions Stand/Toy Tag 4 x 4 x 2/3 with 2 Studs [Plain],24 +19981pr0001,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Batman #1 with Black Bat Symbol print,45 +19981pr0002,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Wyldstyle #2 with Light Blue and Pink 'WS' Print,45 +19981pr0003,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Gandalf #3 with White Rune Character Print,45 +19981pr0004,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Peter Venkman #04 with Ghostbusters Symbol and 'P.V.' print,45 +19981pr0005,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Chell #5 with Black 'Aperture' Print,45 +19981pr0006,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Marty McFly #6 with Yellow 'MARTY MC FLY' Print,45 +19981pr0007,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for The Doctor #7 with Dark Red 'DW' Print,45 +19981pr0008,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Gamer Kid #8 with Circuits and 8-Bit Shooter Print,45 +19981pr0009,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Homer #9 with White Collar Shirt Print,45 +19981pr0010,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs with Harley Quinn Print,45 +19981pr0011,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - The Joker #11 with Playing Cards and Medium Lavender 'HA HA' print,45 +19981pr0012,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Cole #12 with Black and Gold Cole Symbol and Asian Character Print,45 +19981pr0013,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Jay #13 with Gold Jay Symbol and Asian Character Print,45 +19981pr0014,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Owen #14 with Jurassic World Symbol and Brown Ragged Edges Print,45 +19981pr0015,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for ACU Trooper #15 with Jurassic World Symbol and Blue Hexagons Print,45 +19981pr0016,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Scooby-Doo #16 with Blue and Orange 'SD' Print,45 +19981pr0017,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Shaggy #17 with Orange Magnifying Glass Print,45 +19981pr0018,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Superman #18 with Yellow and Red Superman Logo Print,45 +19981pr0019,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Wonder Woman #18 with Gold WW Symbol Print,45 +19981pr0020,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Cyborg #20 with Silver Cyborg Symbol Print,45 +19981pr0021,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Aquaman #21 with Orange Scales and Yellow Symbol print,45 +19981pr0022,"Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Bane #22 with Wires, Gears and Bane Mask print",45 +19981pr0023,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs with Sensei Wu Print,45 +19981pr0024,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Cyberman #24 with Silver Armor with Scales and Blue Circle print,45 +19981pr0025,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Bart #25 with Slingshot Print,45 +19981pr0026,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Krusty #26 with Bow Tie Print,45 +19981pr0027,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Unikitty #27 with Pastel Rainbow and Clouds Print,45 +19981pr0028,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Benny #28 with Faded Space Symbol and 'LL 929' Print,45 +19981pr0029,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Emmet #29 with ID Badge with 'EMMET' Print,45 +19981pr0030,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Bad Cop #30 with Bad Cop Symbol and White 'BC01' Print,45 +19981pr0031,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Kai #31 with Red and Gold Kai Symbol and Asian Character Print,45 +19981pr0032,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Lloyd #32 with Green and Gold Lloyd Symbol and Asian Character Print,45 +19981pr0033,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Zane #33 with Gold Zane Symbol and White Asian Character Print,45 +19981pr0034,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Nya #34 with Gold Nya Sybmol and Red Ninja Symbol Print,45 +19981pr0035,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Stay Puft #35 with Ghostbusters Logo print,45 +19981pr0036,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Gollum #36 with White Fish Skeleton and Gray Stones Print,45 +19981pr0037,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Legolas #37 with Brown and Silver Arrow Print,45 +19981pr0038,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Gimli #38 with Copper Borders and Symbols Print,45 +19981pr0039,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Slimer #39 with Bright Green Slime and Ghostbusters Symbol Print,45 +19981pr0040,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Wicked Witch #40 with Lime Crystal Ball Print,45 +19981pr0041,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Doc Brown #41 with Gold 'DOC BROWN' and Black Radioactive Symbol print,45 +19981pr0042,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Laval #42 with Gold Chima Lion Symbol and Red Fire Print,45 +19981pr0043,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Cragger #43 with Gold Chima Croc Symbol and Red Fire Print,45 +19981pr0044,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Eris #44 with Gold Chima Eagle Symbol and Red Fire Print,45 +19981pr0045,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs - Knight Rider Light Panel and Red Logo Print,45 +19981pr0046,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - B.A Baracus #46 with Red Triangles and 'THE A-TEAM' print,45 +19981pr0047,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Jake the Dog #47 with Video Game Joystick and Wood Grain print,45 +19981pr0048,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Lumpy Space Princess #48 with Yellow Star on Medium Lavender Background print,45 +19981pr0049,Function Brick 4X4X2/3 No. 2. No. 49 [71245-1],45 +19981pr0051,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Ethan Hunt #51 with Red Lines and 'M:I' on Black Background print,45 +19981pr0055,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - E. T. #55 with Bicycle Silhouette over Moon in Blue Sky print,45 +19981pr0058,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Tina Goldstein #58 with Gold Amulet on Tan Background print,45 +19981pr0059,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Sonic the Hedgehog #59 with Blue Sonic Head and 'SONIC' on Checkerboard Background print,45 +19981pr0060,Dimensions Stand / Toy Tag 4 x 4 x 2/3 with 2 Studs - Supergirl,45 +19981pr0061,Function Brick 4X4X2/3 No. 2. No. 61,45 +19981pr0062,Function Brick 4X4X2/3 No. 2. No. 62,45 +19981pr0063,Function Brick 4X4X2/3 No.2. No.63 (71247-1),45 +19981pr0064,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Lord Voldemort #64 with Dark Green Snake print,45 +19981pr0065,Function Brick 4X4X2/3 No.2. No.65,45 +19981pr0067,Function Brick 4X4X2/3 No.2. No.67,45 +19981pr0070,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Green Arrow,45 +19981pr0071,Dimensions Stand/Toy Tag 4 x 4 x 2/3 with 2 Studs - Batgirl #71 with Batman Logo on Dark Purple Background Print,45 +19981pr0072,Dimensions Stand - Toy Tag 4 x 4 x 2/3 with 2 Studs - Robin #72 with Yellow 'R' Logo on Red Background Print,45 +19981pr0085,Dimensions Toy Tag 4 x 4 x 2/3 with 2 Studs for Marceline with Red Guitar with Strings Pattern,45 +19988,Hulk Body with Messy Hair and Dark Purple Pants with Dark Red Print,13 +1998stk01,Sticker for Set 1998 - (164806),17 +19992,Bionicle Weapon Sword / Shield,41 +2,Homemaker Cupboard 4 x 4 x 4,7 +200,Technic Rack Winder Axle,52 +2000421stk01,Sticker for set FLL FIRST LEGO League Trophy,17 +2000422stk01,Sticker for Set 2000422-1,17 +20033,HULL 20x40x7 ASSEMBLED,35 +20075,UPPERP. W/2 TR. ARMS NO. 2718,24 +20105,MINI SHOOTER CB W. Ø3.2 SHAFT,27 +20149,Minifig Head Modified Simpsons Groundskeeper Willie [Plain],24 +20149pr0001,"Minifig Head Modified Simpsons Groundskeeper Willie with Red Beard, Eyebrows and Hair Print",13 +20151,Minifig Head Modified Simpsons Comic Book Guy [Plain],24 +20151pr0001,Minifig Head Modified Simpsons Comic Book Guy with Black Mouth Line and Dark Orange Hair Print,13 +20152,Minifig Head Modified Simpsons Waylon Smithers [Plain],24 +20152pr0001,Minifig Head Modified Simpsons Waylon Smithers with Glasses and Dark Tan Hair Print,13 +2016,"Electric, Train 9V RC Train Base 6 x 30 with IR Receivers",45 +2016b,"Electric, Train 9V RC Train Remote Control, Dark Bluish Gray Bottom, Yellow Buttons",45 +20170,Plastic Flag 5 x 8.5 with Chima Crocodile Tribe Print,38 +20174,Plastic Flag 5 x 8.5 with Chima Tiger Tribe Print,38 +20176,Plastic Flag 5 x 8.5 with Chima Lion Tribe Print,38 +20178,Plastic Flag 5 x 8.5 with Chima Ice Bear Tribe Print,38 +20193,"Foam, Plastic Mirror Front and White Paper Backing",17 +202,Technic Rack Winder,52 +20221,Sticker for Set 41073,17 +20223,Sticker Sheet for 41074-1,17 +20230,RABBIT NO 4 FRONT,4 +20232,Sticker Sheet for 41075 [Transparent Background Version],17 +20235,Sticker Sheet for 41075 [Solid Color Background Version],17 +20243,Sticker for Set 75090-2 - International Version - (20243/6103963),17 +20244,Sticker Sheet for Set 75090-1 (20244/6103964),17 +20249,MOTORCYCLE FAIRING NO. 4,24 +20251,Bionicle Mask Skull Spider,41 +20252,Bionicle Weapon Claw - Bent and Notched with Clip,41 +20273,"Minifig Wings Scalloped 5 Points, Collapsed and Extended with Black and Gold Print",27 +20286,"Plastic Wings with Hawkman Print, Sheet of 2, Extended and Collapsed Wings",27 +20302,DUPLO BAG,4 +20309,Window 1 x 4 x 1 2/3 with Spoked Rounded Top,16 +20310,Brick Special 1 x 1 with Scroll with Open Stud,5 +20312,Wing 4 x 7 Right with Feathers and Handles for Clips,28 +20313,Wing 4 x 7 Left with Feathers and Handles for Clips,28 +2032,"Duplo, Train Wagon (fits 2 x 6 car / train bases)",4 +20339,DUPLO BRICK 2X2X2 NO. 23,4 +20356,"CAR ELEMENT 4X8 NO. 4, TOP DECO",4 +20374,"Friends Cape Cloth, Round Bottom with 3 Small Top Holes",27 +20375,"Friends Bodywear Cape Cloth, Tapered with 1 Small Top Hole [Plain]",24 +20375pr01,"Friends Cape Cloth, Tapered with 1 Small Top Hole and Shiny Dots Print",27 +20379,"Friends - Hips and Asymmetrical Layered Skirt (aka LEG, SKIRT NO. 6) [Plain]",24 +20379pr0001,"Friends - Hips and Asymmetrical Layered Skirt, Medium Lavender Ruffle, Light Flesh Legs and Dark Purple Sandals Print",13 +20379pr0002,"Friends - Hips and Asymmetrical Layered Skirt, Medium Lavender Ruffle, Medium Dark Flesh Legs and Silver Shoes Print",13 +20379pr0003,"Friends Hips and Asymmetrical Layered Skirt, White Ruffle, Light Flesh Legs and Gold Feather Sandals Print",13 +20379pr0004,"Friends Hips and Asymmetrical Layered Skirt, Copper Ruffle, Long Reddish Brown Boots with Copper Print",13 +20379pr0005,"Friends Hips and Asymmetrical Layered Skirt, Dark Purple Ruffle, Light Flesh Legs and Dark Purple Wing Sandals Print",13 +20379pr0109,Friends - Hips and Asymmetrical Layered Skirt - Red Ruffle - Medium Dark Flesh Legs and Feet - Moana,13 +20381,Friends Hips and Asymmetrical Layered Skirt Short (a.k.a. FEMALE HIP WITH SKIRT NO. 7) [Plain],24 +20381pr0001,FEMALE HIP WITH SKIRT NO. 7 ASS. 1,13 +20381pr0002,"Friends Hips and Asymmetrical Layered Skirt Short, Magenta Ruffle, Medium Dark Flesh Legs and Magenta Flame Sandals Print",13 +2039,Lamp Post 2 x 2 x 7 with 6 Base Flutes,32 +20394,MINI FIGURE HELMET NO. 72,27 +20398,Minifig Utensil Cup and Straw [Plain] with Trans Clear Dome Cup Lid,27 +20398pr0001,Minifig Dome Lid Cup and Straw with Dark Purple and Orange 'SQUISHEE' Print,27 +2040,Fabuland Fence 1 x 6 x 2 Rounded,32 +20401,Finial Round [Plain],24 +20401pr0001,DECO BALL D.11.5 NO. 1,27 +20409,"PICNIC BLANKET, SQUARE 10X10",4 +2041,Fabuland Bench Seat,27 +2042c01,Fabuland Cupboard 2 x 6 x 7 with Blue Doors,7 +2042c02,Fabuland Cupboard 2 x 6 x 7 with Red Doors,42 +2042c03,Fabuland Cupboard 2 x 6 x 7 with Yellow Doors,7 +20431,WINDSCREEN 1X12X4 54 DEG DECO NO 1,47 +20434,Sticker Sheet for 45103-1,17 +20439,Indominus rex ARM LEFT,28 +20441,Indominus rex ARM RIGHT,28 +20455,DECO HALF SPHERE 5x9x5 1/3,20 +2045c01,Fabuland Swing Base with Red Seat (Complete Assembly),42 +2046,Stairs 6 x 6 x 9 1/3 Curved Enclosed,32 +20473,"SHELL W/10,2 BALL SNAP NO.1",41 +20474,"BEAM W/DESIGN 5 M. W/10,2 BALL/ CUP",41 +20475,"SHELL W/3,2 SHAFT NO.1",41 +20476,"MASK 10, 2015",41 +20477,"MASK 11, 2015",41 +20478,"MASK 12, 2015",41 +20479,"WEAPON 5, 2015",41 +2047c01,Fabuland Bus Piece with Yellow Shutters,42 +2048,Fabuland Roof Block,42 +20480,"WEAPON 6, 2015",41 +20482,Tile Round 1 x 1 with Pin,15 +20483,Minifig Head Modified Simpsons Dr. Hibbert [Plain],24 +20483pr0001,Minifig Head Modified Simpsons Dr. Hibbert with Black Hair Print,13 +20488,Minifig Head Modified Simpsons Edna Krabappel [Plain],24 +20488pr0001,Minifig Head Modified Simpsons Edna Krabappel with Dark Turquoise Earrings and Medium Dark Flesh Hair Print,13 +20489,Minifig Head Modified Simpsons Martin Prince [Plain],24 +20489pr0001,Minifig Head Modified Simpsons Martin Prince with Flesh Hair Print,13 +20492,Minifig Head Modified Simpsons Hans Moleman [Plain],24 +20492pr0001,Minifig Head Modified Simpsons Hans Moleman with White Glasses with Eyes Print,13 +20494,Minifig Head Modified Simpsons Professor Frink [Plain],24 +20494pr0001,Minifig Head Modified Simpsons Professor Frink with Glasses and Dark Tan Hair Print,13 +20497,OFF ROAD VEHICLE TOP NO. 1 TOP DECO,4 +20546,"Minifig, Weapon Slingshot with Dark Tan Band Print",27 +20551,"Minifig Cape Cloth, High Rounded Collar",27 +20565,Headgear Ninjago Wrap with Jagged Shoulders with Green Face Mask Pattern,27 +20566,Minifig Armor Shoulder Pads with Tattered Robe [Plain],24 +20566pat01,Minifig Armor Shoulder Pads with Tattered Robe with Green Robe Pattern,27 +20566pat02,Minifig Armor Shoulder Pads with Tattered Robe with Dark Blue Robe Pattern,27 +20568,Minifig Ninjago Peaked Head Wrap [Plain],24 +20568pat01,MINI HAT NO. 4,27 +20582,Wrecking Ball,36 +20592,"Minifig Hair Female Mid-Length Flipped Ends, Short Bangs, with Cat Ears [Plain]",24 +20592pr0001,"Minifig Hair Female Mid-Length Flipped Ends, Short Bangs, with Bright Light Orange Cat Ears Print",13 +20592pr02,"Minifig Hair Female Mid-Length Flipped Ends, Short Bangs, with Black Cat Ears Print",13 +20595,Minifig Hair - Female Long Tousled with Center Part,13 +20596,"Minifig Hair Female Pigtails High, Long Bangs, Hole on Top, Hair Ties [Plain]",13 +20596pr0001,MINI WIG NO. 100 NO. 1,13 +20596pr02,"Minifig Hair Female Pigtails High, Long Bangs, Hole on Top, Blue Left Half Print",13 +20597,MINI WIG NO. 99,13 +20598,"Minifig Head Modified Insect with Round Proboscis, 2 Antennae and Bug Eyes with Hatched Lines [Plain]",24 +20598pat01,"Minifig Head Modified Insect with Round Proboscis, 2 Antennae and Trans-Red Bug Eyes with Hatched Lines Pattern",13 +20601,Minifig Head Extended [Plain],24 +20601pr0001,"Minifig Head Extended with Eyebrows and Wrinkles, Black and Blue Goggles and Messy Light Bluish Gray Hair Print",13 +20606,Witch Hat with Hair,13 +20608,Minifig Wings Gargoyle,27 +20612,Minifig Weapon Holder Ring (Ninjago),27 +20613,Minifig Head Modified Werewolf [Plain],24 +20613pr0001,"Minifig Head Modified Werewolf with Smooth Hair and Brow with Black Nose, White Teeth and Fangs and Gray Fur Print",13 +20643,MINI HAT NO. 2,27 +2064stk01,Sticker for Set 2064 - (60141/4508431),17 +20678,"DUPLO BRICK 2X2, TRANSPARENT",4 +20683,"Minifig Head Cover, Ghost Shroud with Smile and Headband [Plain]",24 +20683pr01,"Minifig Head Cover, Ghost Shroud with Smile and Headband Medium Dark Flesh Print",13 +20684,WINDSCREEN 8X3X3 ANGLE/45/73/73,47 +2068b,temptemp,32 +20690,Dog Body Great Dane Scooby-Doo Sitting [Plain],24 +20690pr0001,Dog Body Great Dane Scooby-Doo Sitting with Medium Azure Collar Print,28 +20691,Dog Head Great Dane Scooby-Doo [Plain],24 +20691pr0001,Dog Head Great Dane with Scooby-Doo Print,28 +20691pr0002,Dog Head Great Dane with Scooby-Doo with Pilot Goggles Print,28 +20691pr0003,Dog Head Great Dane with Scooby-Doo with Mouth Open at Side and Chattering Teeth Print,28 +20691pr0004,Dog Head Great Dane with Scooby-Doo with Tongue Licking Chops Print,28 +20691pr0005,Dog Head Great Dane Scooby-Doo with Black Nose - Smile on Both Sides and Tongue on Left Side Print,28 +20693,"Minifig Head Cover, Pumpkin Jack O' Lantern [Plain]",24 +20693pr01,MINI HAT NO.7-ASS.,27 +20706,DUPLO BRICK 2X2 NO 45,4 +20710,DUPLO BRICK 1X2X2 NO 22,4 +20715,BOX 4X4X3 NO 2,4 +20717,BOX 4X4X3 NO 1,4 +2071pb01,"Duplo, Brick 2 x 4 x 2 Rounded Ends and Rattling Eyes with Animal Face with Whiskers Print",4 +20736,"IP FIGURE 1 2015, TOP, DEC NO 1",4 +20744,TRUCK ELEMENT 4X8 NO 2,4 +20748,PICK-UP ELEMENT 4X8 NO 4,4 +20793,BOX 4X4X3 NO 3,4 +20794,DUPLO BRICK 2X2X2 NO. 28,4 +20820,DUPLO PLATE 4X8,4 +20841,LPF2 SENSOR TILT 2X4X1,45 +20844,LPF2 SENSOR DETECT 2X4X1,45 +20854,VEHICLE FRONT 4X4X3 NO. 1,4 +20874,Sticker Sheet for 42042-1,17 +20876,Sticker sheet for set 42040 (20876/6109485),17 +20877,Minifig Hair Female Mid-Length Swept Sideways,13 +20904,Minifig Helmet SW Stormtrooper Ep. 7 [Plain],24 +20904pr0001,Minifig Helmet SW Stormtrooper Ep. 7 Print,27 +20904pr0002,Minifig Helmet SW Stormtrooper Ep. 7 Capitan Phasma Print,27 +20908,MINI FIGURE HELMET NO. 79,27 +20915,DUPLO BRICK 1X2X2 NO 24,4 +20917,MINI HELMET NO. 81,27 +20922,DUPLO BRICK 1X2X2 NO 25,4 +20952,Brick Round 1.5 x 1.5 Dome Top [Plain],24 +20952pr0001,MINI HAT NO. 8 DECO NO.1,20 +20953,Brick Round 2 x 2 Sphere with Stud [Plain],24 +20953pr0001,Brick Round 2 x 2 Sphere with Stud / Robot Body with BB-8 Droid Print,20 +20954,"Minifig Cap, SW First Order Officer with Flap [Plain]",24 +20954pr0001,"Minifig Cap, SW First Order Officer with Black First Order Insignia and Black Flap Print",27 +20954pr0002,"Minifig Cap, SW First Order Officer with Silver First Order Insignia Print (General Hux)",27 +21,Windscreen 2 x 4 x 1 2/3,47 +210,Baseplate 16 x 22,1 +21008,POP SKIRT,27 +21016,Sticker Sheet for Set 10248 - 21016/6112603,17 +21018,"CAMOUFLAGE PONCHO NO.1, NO.1",27 +21019pat01,Legs with Orange Boots and Orange Hips,13 +21019pat02,Legs with Red Boots and Blue Hips,13 +21019pat03,Legs with Dark Purple Boots and Dark Purple Hips,13 +21019pat04,Legs with Black Boots and Dark Bluish Gray Hips,13 +21019pat05,Legs with White Boots and Orange Hips,13 +21019pat06,Legs with Dark Red Boots and Sand Blue Hips,13 +21019pat07,Legs with Light Flesh Boots and Dark Orange Hips,24 +21019pr0191,Hips and Legs with Bright Light Orange Knees and Feet [Donald],13 +21028,MOTORCYCLE W. 4 KNOBS NO 5 FRONT,4 +21029,DUPLO ROOF TILE 2X2X1 1/2 NO 9,4 +21042,Dog Body Great Dane Scooby-Doo Walking with Right Front Leg Raised [Plain],24 +21042pr0001,Dog Body Great Dane Scooby-Doo Walking with Right Front Leg Raised and Medium Azure Collar Print,28 +21046,CAT NO. 1,4 +21098,"ANIMAL HEAD NO.15, NO.1",28 +21107,OFF ROAD VEHICLE TOP NO 6,4 +21112,DUPLO BRICK 2X2X2 NO 26,4 +21144,Indominus rex TAIL ASS. NO.1,28 +21146,Indominus rex BODY ASS. NO.1,28 +21148,Indominus rex JAW NO.1,28 +21151,DUPLO BRICK 1X2X2 NO 23,4 +21166,Dino Body Raptor with Dark Green Markings Print,28 +21173,Dilophosaurus HIND LEG LEFT NO.1,28 +21175,Dilophosaurus HIND LEG RIGHT NO.1,28 +21188,DUPLO BRICK 1X2X2 NO 21,4 +21190,"SKIRT, PLAIN",4 +21190pr0001,Duplo Satin Cloth Skirt with White Polka Dots,4 +21217,Sticker for 41105 Sheet 1,17 +21223,Sticker for 41105 Sheet 2,17 +21229,Fence Spindled 4 x 4 x 2 Quarter Round with 3 Studs,32 +21238,ADULT FIGURE 19 V2,4 +21239,ADULT FIGURE 20 V2,4 +21268,Minifig Hair Short Swept Back with Sideburns and Widow's Peak,13 +21269,Minifig Hair - Swept Back with Widow's Peak Chin-Length and Bushy in Back,13 +2126stk01,Sticker for Set 2126 - (72022/4112957),17 +21273,DUPLO BRICK 2X2X2 NO. 29,4 +21274,DUPLO BRICK 2X2X2 NO. 30,4 +21301,ROWING BOAT 5X14X2 1/3,35 +21307,MINI FIG. HELMET NO.74 NO.1,27 +21308,"LARGE BLANKET 80X200 MM, NO.1",4 +21310,"BANDAGE 200X45 MM, NO.1",4 +2131c01,Fabuland Refrigerator [Complete Assembly],7 +2133,"Electric, Motor 4.5V 21 x 8 x 4 1/3 Tuneable",45 +21333,Owl Baby [Plain],24 +21333pr0001,Owl Baby (Nasha),28 +21333pr0002,Owl Baby - Owlyver,28 +21340,WIG_FEATHERS W. EARS DEC. 1,27 +2135,Fabuland Caravan Roof,36 +21353,Indominus rex HEAD ASS. NO.1,28 +21362,Dilophosaurus HEAD ASS. NO.1,28 +21370,Sticker Sheet for 75918-1,17 +2137c01,Fabuland Caravan Body (Assembly),36 +2138,Fabuland Utensil Hair Dryer Stand,42 +2140,Fabuland Utensil Hair Dryer,42 +21445,Plate Special 1 x 2 with Wheel Holder,9 +2145,"Brick, Arch 2 x 6 x 5 Ornamented",34 +21460,MINI WIG W/HAT NO. 1 NO. 1,27 +2146c00,Fabuland Skateboard,42 +21474,"STRING POLY Ø1,2MM - 100 CM",31 +21478,"STRING POLY Ø1,2MM - 180 CM",31 +21490,"Minifig Cape Cloth, 2 Bottom Curves, Short with 3 Top Holes and Heart Shaped Holes",27 +21492,Sticker For Set 41077,17 +21494,Sticker For Set 41078,17 +21497,"Minifig Cape Cloth, 2 Bottom Curves, Long with 3 Top Holes and Heart Shaped Holes",27 +2149stk01,Sticker for Set 2149 - (71641/4114292),17 +21503,"Minifig Cape Cloth, Angular Pointed Collar",27 +2150stk01,Sticker for Set 2150 - (71649/4107847),17 +21527,Sticker Sheet for 75100-1,17 +2154stk01,Sticker for Set 2154 - (170909),17 +21560,SHOULDER SHELL W.3.20 CONNECTOR,41 +21560pr0002,SHOULDER SHELL W.3.20 CONNECTOR NO. 2,41 +21561,Large Figure Torso SW,41 +21561pr0001,Large Figure Torso SW with Battle Damaged Armor Print (Clone),41 +21561pr0002,Large Figure Torso SW with Mandalorian Armor Print (Jango),41 +21561pr0003,Large Figure Torso SW with Jedi Robe and Armor Print (Obi-Wan Kenobi),41 +21561pr0004,Large Figure Torso SW with Jedi Robe Print (Jedi Luke),41 +21561pr0005,CHEST NO.4 W.BALLSNAP NO.5,41 +21561pr0006,CHEST NO.4 W.BALLSNAP NO.6,41 +21561pr0007,CHEST NO.4 W.BALLSNAP NO.7,41 +21561pr0008,CHEST NO.4 W.BALLSNAP NO.8,41 +21561pr0009,Large Figure Torso with SW Scout Trooper Armor Pattern,13 +21562,LEG SHELL W.BALL SNAP,41 +21566,Minifig Helmet SW Rebel Pilot Raised Front [Plain],24 +21566pr0001,Minifig Helmet SW Rebel Pilot Raised Front with Trans-Yellow Visor and Red and White Stripes and Rebel Logo Print,27 +21566pr0002,Minifig Helmet SW Rebel Pilot Raised Front with Trans-Yellow Visor and Dark Red Stripes and Black Rebel Logo Print,27 +21566pr0003,Mini Helmet No. 80 Ass."Deco No.3",27 +21566pr0004,MINI FIGURE HELMET NO. 84,27 +21608,Raptor Bridle with Camera,28 +2160stk01,"Sticker for Set 2160 - Sheet 1, Eyes (71625/4109655)",17 +2160stk02,"Sticker for Set 2160 - Sheet 2, Mouth (71626/4109654)",17 +21625,PONCHO NO.1,27 +21626,Cloth Sail 12 x 20 1/2 cm Tattered with Holes (70732),38 +2162c01,"Electric, RC Controller Racer Complete Assembly (Black Bottom, Red Buttons)",45 +21692,MINI HAT NO. 1 NO. 1,27 +21699,3.2 SHAFT 2X4 M.,32 +21709,SHOVEL 4X6X2 1/3 FRIC/FORK,36 +21711,MOTORCYCLE W. 4 KNOBS NO 6 FRONT,4 +21713,MINI HAT NO. 9 NO. 1,27 +21747,"WING, 182X154MM,RIGHT,CUT PATTERN,NO.1",38 +21755,Large Figure Weapon Lightsaber Hilt Half 2L with Axle Hole,41 +21763,"PE FOIL WINGS, 4 PCS",38 +21765,"WINDOW, 96X48MM PE FOIL",16 +21777,Minifig Hair Female Ponytail with Tied Sections,13 +21778,Hair Male with Coiled Texture,13 +21787,MINI FIGURE WIG NO. 93,27 +21788,Minifig Hair Short Smooth,13 +21789,MINI FIGURE WIG NO. 95,13 +21791,KITCHEN EQUIPMENT NO. 1 NO.2,27 +21827,CAPE 154/26 NO.1,27 +21841,CAPE METALLIC,27 +21845,SPECIAL MANTLE,27 +21846,"SPECIAL MANTLE, NO.1,21/26",27 +21849,Windscreen 8 x 4 x 2 with Handle and 2 Studs [Plain],47 +21849pr0001,Windscreen 8 x 4 x 2 with Handle and 2 Studs with Silver Cockpit Window Frames with Rivets Print,47 +21849pr0002,COCKPIT 4X8X2 W/ANGLE/SHAFT NO. 1,47 +21849pr0003,Windscreen 8 x 4 x 2 with Handle and 2 Studs with Black Cockpit Window Frames,47 +21850,"PE FOIL WING,INSECT NO. 1",38 +21858,"WING,182X154MM,LEFT,CUT PATTERN, NO.1",38 +219,Train Track Plastic Connection/Stacking Pin for Track Storage,36 +21921,"HEAD NO. 2, 2015 ASS.",13 +21928,DUPLO BRICK 1X2X2 NO. 26,4 +21938,"HELMET 1, NO.1",27 +21939,"FACE 1, NO.1",41 +21968,Creature No. 25 Plain (Slimer),28 +21968pr0002,Ghost with moveable Arms - Tongue and Bottom Teeth Print (Ghostbusters Slimer),28 +21968pr0003,Ghost with moveable Arms - Tongue and Upper Teeth Print (Ghostbusters Slimer),28 +21980,LPF2.0 MEDIUM MOTOR,45 +21982,Indominus rex HAND ASS. NO.1,28 +21986,OUTER CABLE 288MM,30 +21987,Large Figure Weapon Lightsaber Blade 16L with Axle Hole,41 +21990,DUPLO WASH BASIN,4 +21994,"Cloth Cape with 3 Holes, Large Buildable Figures",38 +21996,ARM 3M W/ B-CONNECTOR,24 +21997,LEGO Shovel 3m with B-connector (21997),24 +2205,Duplo Door 1 x 4 x 4 with Four Panes,4 +2206,Duplo Door / Window with Four Panes Square Corners,16 +22119,Ball Hard Plastic - 51mm [FLL Ball],26 +2212,Duplo Building Staircase,4 +22183,"HEAD NO. 6, 2015 ASS.",27 +2218c01,Duplo Car with 2 x 2 Studs and Yellow Base,4 +2218c05pb01,"Duplo Car with 2 x 2 Studs and White Base and Safari Stripe Print, Pearl Light Gray Wheels",4 +2222,Duplo Crane Base 2 x 2 with Hook Holder,4 +2223,Duplo Ladder Stand,4 +22239,Belville Fairy Wings - Fabric,27 +2224,Duplo Ladder 8 Rung,4 +22253,Wheel 49.6 x 28 VR with X Axle Hole,29 +2230,Duplo Door / Window Mailbox Raised,4 +2231,Duplo Mailbox Flap for Mailbox 2230,4 +2235,Duplo Car with 1 x 2 Studs,4 +2235pb04,Duplo Car with 1 x 2 Studs with Blue Base and 'POLICE' Print,4 +22370,"HEAD NO. 5, 2015 ASS.",13 +22380,Minifig Helmet Space with Air Intakes and Hole on Top,27 +22385,Tile Special 2 x 3 Pentagonal,15 +22385pr0001,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Sea Dragon,15 +22385pr0002,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Cloning,15 +22385pr0003,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Mightiness,15 +22385pr0004,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Tractor Beam,15 +22385pr0005,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Clapper Claw,15 +22385pr0006,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Magnetize,15 +22385pr0007,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Rolling Fireball,15 +22385pr0008,Tile Special 2 x 3 Pentagonal with Nexo Power Shield print - Force Field,15 +22385pr0009,Tile Special 2 x 3 Pentagonal with Nexo Power Shield print - Lava Dragon,15 +22385pr0010,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Banana,15 +22385pr0011,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Target,15 +22385pr0012,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - 3 Arrows,15 +22385pr0013,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Time Breach,15 +22385pr0014,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Phoenix Blaze,15 +22385pr0015,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Backlash Lightning,15 +22385pr0016,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Super Human Speed,10 +22385pr0017,Power Shield Jungle Dragon,10 +22385pr0018,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Whirl Wind",10 +22385pr0019,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Fire Tornado",10 +22385pr0020,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Flash Cannon",10 +22385pr0021,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Wall Block",10 +22385pr0022,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Ice Rain ",10 +22385pr0023,Tile Special 2 x 3 Pentagonal with Nexo Power Shield print - Sword Tornado,15 +22385pr0024,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Chicken Power",15 +22385pr0025,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Mech Master",15 +22385pr0026,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Storm Dragon",15 +22385pr0027,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Toxic Sting,15 +22385pr0028,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Ice Dragon,15 +22385pr0029,Power Shield Dynamighty,10 +22385pr0030,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Diamond Spear",10 +22385pr0031,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Silver Pegasus",10 +22385pr0032,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Standing Ovation",10 +22385pr0033,Tile Special 2 x 3 Pentagonal with Nexo Power Shield Print - Spirit Vortex,10 +22385pr0034,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Incinerate",10 +22385pr0035,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Drop the Beat",10 +22385pr0036,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Spirit Fox",10 +22385pr0037,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Orbital Strike",10 +22385pr0038,Power Shield Slime Blast,10 +22385pr0039,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Charging Attack",10 +22385pr0040,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Shining Axe",10 +22385pr0041,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Wrecking Wrath",10 +22385pr0042,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Bulldozer",10 +22385pr0043,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Horrible Hunger",10 +22385pr0044,Tile Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Venom Bite,10 +22385pr0045,Tile Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Beetle Bomb,10 +22385pr0046,Tile Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Giant Growth,10 +22385pr0047,Tile Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Mace Rain,10 +22385pr0048,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Hawk Holler,10 +22385pr0049,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Ground Pound,10 +22385pr0050,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Rock Throw,10 +22385pr0051,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Stone Stun,10 +22385pr0052,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Globlin Attack,19 +22385pr0053,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Battle Cry,10 +22385pr0054,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Iron Dragon,10 +22385pr0055,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Wrecking Ball,10 +22385pr0056,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Mechanical Griffin,10 +22385pr0057,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Titanium Sword,10 +22385pr0058,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Commanding Shout,10 +22385pr0059,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Flame Wreck,10 +22385pr0060,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Mindbender,10 +22385pr0061,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Corrupting Crush,10 +22385pr0062,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Ninja Stirke,10 +22385pr0063,"Tile, Modified 2 x 3 Pentagonal with Nexo Power Shield Pattern - Devastating Decay",10 +22385pr0064,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Manic Pumpkin,10 +22385pr0065,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Goose Bumps,10 +22385pr0066,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Bomb Blast,10 +22385pr0067,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Foul Steam,10 +22385pr0068,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Fist Smash,10 +22385pr0069,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Take Off,10 +22385pr0070,"Tile, modified 2 x 3 pentagonal with Nexo Power Shield pattern - Tone of Power",15 +22385pr0071,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Rock Ripper,10 +22385pr0072,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Tech Tree,10 +22385pr0073,Tile Modified 2 x 3 Pentagonal Nexo Power Shield Pattern Ticking Baboon,10 +22385pr0074,Tile Modified 2 x 3 Pentagonal Nexo Forbidden Power Shield Pattern Malicious Melting,10 +22385pr076,"Tile, modified 2 x 3 pentagonal with Nexo Power Shield pattern - Metal Minotaur",15 +22387,Panel 2 x 6 x 6 with Window Slot,23 +22388,Slope 45° 1 x 1 x 2/3 Quadruple Convex,3 +22390,Wedge 6 x 8 with Pointed Cutout,6 +22391,Wedge 4 x 4 Pointed,6 +22392,"Shoulder Mechanical, Nexo Bot - Soft Plastic",13 +22393,MINI VISOR NO.1,27 +22394,Minifig Visor Pointed with Face Grille and Antenna,27 +22395,MINI VISOR NO.3,24 +22400,MINI VISOR NO.4,27 +22401,Minifig Visor Nexo Knights,27 +22402,ARMOR NO.17,27 +22407,Weapon Axe Head with Bar,27 +22408,Minifig Shield Pentagonal,27 +22409,MINI SHIELD NO.3,27 +22410,"Wheel Hard Plastic, Treaded with 7 Pin Holes (37mm D. x 22mm)",29 +22411,MINI PONY TAIL,27 +22425,MINI HELMET NO. 89,27 +22472c03pb05,Body Nexo Knights Scurrier with Medium Dark Flesh Arms and The Beatles Jeremy Pattern,13 +22483,WINDSCREEN 4X5 1/2X1 1/3,47 +22484,Bar 2L with Towball,32 +22487,MINI SHOOTER W/3.2 SHAFT,27 +22495,MINI VISOR NO.6,27 +2254stk01,Sticker for Set 2254 - (97442/4636353),17 +22552,MINIFIGURE HEAD NO.1747,13 +22566,Portal Gun,27 +2259stk01,Sticker for Set 2259 - (93897/4612899),17 +22602,Minifig Tool Screwdriver with 4 Prongs with Green Tip and White Handle Print (Sonic Screwdriver),27 +22652,HOVERBOARD 2X5 NO. 1,27 +22656,"PONCHO, SOFT, 30MM X 55MM",27 +22667,Cherries,28 +22670,"Belville, Clothes Crown Mini",27 +22721,"DUPLO SIGN, ROUND NO 7",4 +2278pb02,"Duplo Giraffe Baby, Dense Spot Print",4 +2281px1,"Duplo Monkey, Earth Orange Face and Ears, Eyes Looking Left",4 +2284,Duplo Alligator,4 +22873,MINI FIGURE WIG NO. 96 NO.1,27 +22881,Duplo Brick 2 x 2 - Grooved Pin on Side,4 +22885,Brick Special 1 x 2 x 1 2/3 with four studs on one side,5 +22886,Brick 1 x 2 x 3 with Bottom Stud Holder,11 +22888,Plate Round Corner 4 x 8 Double,21 +22889,Slope Inverted 45° 6 x 2 Double with 2 x 4 Cutout,3 +22890,Plate Special 1 x 2 with End Towball,9 +2291,Duplo Brick 2 x 10,4 +2291pb01,"Duplo, Brick 2 x 10 with Green Lattice Print and Knapford Logo",4 +22921,Minifig Hose Nozzle T Handle with 24L String,30 +2292c01,Duplo Wheelbarrow with Yellow Wheels ,4 +2296,Duplo Baseplate 16 x 24 with 93 Stud Irregular Gap ,4 +22961,Technic Pin Connector Hub with 1 Axle,12 +22969,Wheel 62 x 46 Technic Racing Large,29 +2296pb01,Duplo Baseplate 16 x 24 with Pond Print,4 +2300,Brick 2 x 6,4 +2300pb001,"Duplo, Brick 2 x 6 with Yellow Numbers 2 and 3 Print",4 +2300pb003,"Duplo, Brick 2 x 6 with Pipe Print",4 +2300pb004,"Duplo, Brick 2 x 6 with Green Lattice Print",4 +2300pb005,"Duplo, Brick 2 x 6 with 'LEGO Ville' Text Print",4 +2300pb012,"Duplo, Brick 2 x 6 with Ice Cream Cone, 'SHOP', and Hot Dog Print",4 +2301,Brick 2 x 3 x 2 with Curve,4 +23012,HIP W. WOODEN LEG / 2K LEFT LEG NO.926,13 +2302,Brick 2 x 3 with Curved Top,4 +2302pb01,"Duplo, Brick 2 x 3 with Curved Top and Alligator Foot Print",4 +2302pb03,"Duplo, Brick 2 x 3 with Curved Top and Eye Print",4 +2302pb04,Brick 2 x 3 with Curved Top and Double Window Print on Both Sides,4 +2302pr29047,Duplo Brick 2 x 3 with Curved Top - Dual Side Print Windows / Side A Duplo Girl and Dog / Side B Boy and Cat,4 +23065,Duplo Ball for Ball Tube,4 +2312a,Duplo Car Base 2 x 6 with Yellow Wheels and Open Hitch End,4 +2312c01,Duplo Car Base 2 x 6 with Yellow Wheels and Open Hitch End,4 +2312c02,Duplo Car Base 2 x 6 with Red Wheels with Fake Bolts and Open Hitch End,4 +23146,Duplo Utensil Fishing Rod and Hook with Red Line,4 +2318,Flashing Light,4 +23186,Hair Swept Left Tousled,13 +23187,Minifig Hair with Side Part - Wavy Mid-Length,13 +2318a,Flashing Light - Blue,4 +2318b,Flashing Light - Orange,4 +23192,Minifig Head Modified - Ghostbusters Marshmallow Man [Plain],24 +23192pb01,Minifig Head Modified - Ghostbusters Marshmallow Man,13 +23194,"FACE 1, NO.1",41 +23221,Aero Tube 32 x 3 x 2 1/3,30 +23230,Duplo Food Carrots,4 +23241,"Ø1,5MM STRING WITH 0,5M",31 +23295,MINI FIGURE HELMET NO. 78 DEC NO 1,27 +23306,Minifig Lightsaber Hilt without Bottom Ring,27 +2332,Duplo Door Frame with Raised Door Outline,4 +23323c01,Bionicle Motor Remote Control Receiver Unit - Complete Assembly [Manas],45 +23325,Battery Compartment Cover for 8531 [Manas] Remote Control Unit,45 +2332b,"Duplo Door Frame with Raised Door Outline, Completely Open Back",4 +23335c01,Bionicle Motor Remote Control Transmitter Unit - Complete Assembly [Manas],45 +2334c02pb03,"Duplo Polar Bear Cub on Blue Base, Squared Eyes",4 +2334c03pb01,Duplo Lion Cub on Base,4 +2334c03pb03,Duplo Tiger Cub on Green Base,4 +2335,Flag 2 x 2 Square [Thin Clips],38 +2335p01,Flag 2 x 2 Square with Diver Blue Print,38 +2335p02,Flag 2 x 2 Square with Diver Down Stripe Print,38 +2335p04,Flag 2 x 2 Square with Imperial Soldier Black Symbol over White Cross on Blue Background Print,38 +2335p30,Flag 2 x 2 Square with Skull and Crossbones Print,38 +2335p31,"Flag 2 x 2 Square with Crossed Cannons over Red Stripes, Black Outline Print",38 +2335p40,Flag 2 x 2 Square with Goblets and Grapes Print,38 +2335p41,Flag 2 x 2 Square with Red Square and Yellow / Blue Dragon Print,38 +2335p43,Flag 2 x 2 Square with Black Falcon Original Print (rounder bottomed Shield),38 +2335p44,Flag 2 x 2 Square with Wolfpack Print [6038 / 6075],38 +2335pb001,Flag 2 x 2 Square with Black Falcon Reissue Print with Pointy Shield Bottom,38 +2335pb004,Flag 2 x 2 Square with Crossed Brooms Print,38 +2335pb005,Flag 2 x 2 Square with Orient China Print,38 +2335pb006,"Flag 2 x 2 Square, Dual Print, Scorpion and Lion with Crown",38 +2335pb008,Flag 2 x 2 Square with Skull and Crossbones (Eyepatch) Print,38 +2335pb063,Flag 2 x 2 Square with Gold Lion on Red and White Quarters Background Print [7946 / 7948],38 +2335pr0001,"Flag 2 x 2 Square with Crossed Cannons over Red Stripes, No Outline Print",38 +2335pr0002,Flag 2 x 2 Square with Evil Skull and Crossbones Print,38 +2335pr02,Flag 2 x 2 Square with Chequered Print,38 +2335pr13,Flag 2 x 2 Square with Black Lines and Fancy Scroll Print [3829],38 +2335ps1,Flag 2 x 2 Square with Orange and Silver Circuitry Print,38 +2335pw1,Flag 2 x 2 with Cavalry Logo Print,38 +2335px1,Flag 2 x 2 Square with Black Dragon Print,38 +2335px10,Flag 2 x 2 Square with Lion Head on Blue and Yellow X Print,38 +2335px13,Flag 2 x 2 Square with Octan Logo Print,38 +2335px14,Flag 2 x 2 Square with SW TIE Bomber Rectangles Print,38 +2335px16,"Flag 2 x 2 Square with Copper, Silver and Black Grille Print",38 +2335px2,Flag 2 x 2 Square with Golden Fan Print,38 +2335px21,Flag 2 x 2 Square with Skull and Cutlass Print,38 +2335px3,Flag 2 x 2 Square with Silver Bull's Head Print [6045 / 6088],38 +2335px5,Flag 2 x 2 Square with Green Ovals Print,38 +2335px8,Flag 2 x 2 Square with Lion Rampant Gold on Blue Shield Print,38 +2336,Cockpit Space Nose,5 +2336p35,Cockpit Space Nose with Silver and Black V Print,5 +2336p36,Cockpit Space Nose with Silver and Red V Print [6820],5 +2336p68,Cockpit Space Nose with MTron Logo Print [6811 / 6862 / 6896],5 +2336p90,Cockpit Space Nose with Classic Space Logo Print [6827 / 6849],5 +2336pb01,Cockpit Space Nose with Aquazone Aquashark Blue Shark with Red X Print [6115],5 +2337,Windscreen 4 x 4 x 2 Canopy Extender,47 +2338,Minifig Hat High Cone Shaped,27 +2339,Brick Arch 1 x 5 x 4 [Continuous Bow],37 +2340,Tail 4 x 1 x 3,35 +23405,Panel 1 x 6 x 5 [Vertical Corrugated],23 +2340p90,Tail 4 x 1 x 3 with Classic Space Logo Print,35 +2340pb030,Tail 4 x 1 x 3 with White Air Canada Logo Print on Both Sides (611-2),35 +2340px2,Tail 4 x 1 x 3 with 'C 501' & Life Preserver Ring on Left Side Print,35 +2340px3,Tail 4 x 1 x 3 with 'C 501' & Life Preserver Ring on Right Side Print,35 +2341,Slope Inverted 45° 3 x 1 Double with 2 Completely Open Studs,3 +2342,Minifig Control Panel,27 +23421,Spiral [Fireman] Pole 32L,27 +23422,Minifig Spiral Pole Attachment - 2 Bent Handles and 3 Internal Splines,27 +2343,Minifig Goblet,27 +23443,3.2 SHAFT W/3.2 HOLE,32 +23444,LATTICE 3X6 MODULE W/KNOBS,32 +23447,SHELL ROCK 4X2X3 W/ KNOB,24 +23448,COCKPIT 8X4X2 W/ 3.2 SHAFT,47 +2345,Panel 3 x 3 x 6 Corner Wall,23 +2345p01,Panel 3 x 3 x 6 Corner Wall with Black Lines Print,23 +2345p02,Panel Wall 3 x 3 x 6 Corner with Dark Grey Stones Print,23 +2345p03,Panel Wall 3 x 3 x 6 Corner with Light Grey Stones Print,23 +2345p04,Panel Wall 3 x 3 x 6 Corner with Scattered Bricks Print,23 +2345p44,Panel 3 x 3 x 6 Corner Wall with Blacktron I Logo Print,23 +2345pb01,Panel 3 x 3 x 6 Corner Wall with Green Vines Print,23 +2345pb05,Panel 3 x 3 x 6 Corner Wall with Scattered Stones Dark Gray Print,24 +2346,Tyre 30 x 10.5 Offset Tread,29 +2347,"Vehicle, Digger Bucket 7 Teeth 3 x 6",36 +2348a,Glass for Hinge Car Roof 4 x 4 Sunroof [No Ridges],16 +2348b,Glass for Hinge Car Roof 4 x 4 Sunroof with Ridges,16 +2349a,Hinge Vehicle Roof 4 x 4 Sunroof without Ledges,18 +2349b,Hinge Car Roof 4 x 4 Sunroof with Ledges,18 +2350,Crane Arm Outside,24 +2350a,"Crane Arm Outside, Old Narrow",34 +2350ap01,"Crane Arm Outside, Old Narrow with Black Moving Print",34 +2350b,"Crane Arm Outside, New Wide with End Notch",34 +2350c,"Crane Arm Outside, New Wide with End Notch, 2 Fixed Rotatable Friction Pins",34 +2351,Crane Arm Centre,34 +2352,Windscreen 2 x 4 x 3 Frame,47 +2356,Brick 4 x 6,11 +2357,Brick 2 x 2 Corner,11 +2358,Baseplate 32 x 32 Road Straight,1 +2358p02,"Baseplate, Road 32 x 32 7-Stud Straight with Runway Crosswalk Print",1 +2358p03,Baseplate Road 32 x 32 7-Stud Straight with Plain Wide Runway Print [6597 / 5199],1 +2358p04,Baseplate 32 x 32 Road 7-Stud Straight with Runway Narrow Print,1 +2359,"Baseplate 32 x 32 Road 7-Stud Curve roadplate, curved",1 +2359p01,Baseplate Road 32 x 32 7-Stud Curve with Road Print,1 +2359p02,Baseplate 32 x 32 Road 7-Stud Curve with Lagoon Print,1 +2359p03,Baseplate 32 x 32 Road 7-Stud Curve with River Print,1 +2359px2,"Baseplate, Road 32 x 32 7-Stud Curve with Rocks and Ruts Print",1 +2360,Baseplate 32 x 32 Road T Intersection,1 +2360p01,Baseplate Road 32 x 32 7-Stud T Intersection with Crosswalks Print,1 +2360p02,Baseplate Road 32 x 32 7-Stud T Intersection with Runway 'V' Narrow Print,1 +2361,Baseplate 32 x 32 Road Crossroads,1 +2361p01,Baseplate Road 32 x 32 7-Stud Crossroads with Road and Crosswalks Print,1 +2361p02,Baseplate 32 x 32 Road 7-Stud Crossroads w/ Runway Wide Print,1 +2361p03,Baseplate 32 x 32 Road 7-Stud Crossroads w/ Runway Narrow Patt.,1 +2362,Panel 1 x 2 x 3 - Undetermined Type,24 +2362a,Panel 1 x 2 x 3 - Solid Studs,23 +2362ap53,"Panel 1 x 2 x 3 with Space Police I Left Print logo,space police",23 +2362ap54,"Panel 1 x 2 x 3 with Space Police I Right Print logo,space police",23 +2362b,Panel 1 x 2 x 3 [Hollow Studs],23 +2362pb02,Panel 1 x 2 x 3 with Star of Life Print,23 +236ac01,"Electric Connector, 2 Way Male Rounded Narrow Type 2 with Hollow Pins",45 +236bc96,"Electric Wire 4.5V with two blue 2-prong Type 2 connectors (with cross-cut pins), 96 Studs Long",45 +23709,MINI FIGURE HELMET NO. 83 DEC NO.1,27 +23711,MINI HELMET NO. 84 DEC NO. 1,27 +23714,Ant with Lower Antistud,28 +23715,"PE FOIL, TOP & BOTTOM CAPES",27 +23717,DUPLO BRICK 2X2 NO. 46,4 +2372c01,Boat Hull Unitary 25 x 10 x 4 1/3 Complete Assembly,35 +23734,MINI HELMET NO. 86 DEC NO. 1,27 +2374,Boat Cargo Loading Plate 10 x 12 with 6 x 8 Tub,7 +23742,Duplo Round Rock / Bush / Space Crater 4 x 4 x 1.5 with 2 x 2 Hole,4 +2375,Hinge Bar 12L with 3 Fingers and Open End Stud,18 +23756,MINI HELMET NO. 85 ASS.DECO NO.1,27 +2376,Tile Round 2 x 2 - Thin Lifting Ring,15 +23769,Skeleton Leg Tall,13 +2377,Window 1 x 2 x 2 Plane,16 +2377p01,Window 1 x 2 x 2 Plane with POLICE Print,16 +2377pb01,Window 1 x 2 x 2 Plane with 'POLICE' Print,16 +23786,Shoulder Pad - Cape Style with 2 Holes for Neck,27 +23794,Shoulder Cloth,27 +23798,Tyre Tractor DiA. 107X44,29 +23799,Tire 81.6 x 44 ZR Technic Straight Tread,29 +23800,Wheel 62.3mm D. x 42mm Technic Racing Large,29 +23801,Technic Steering Wheel Hub Holder with 2 Pin Holes and 2 Axle Holes,25 +23813,"SHOULDER CAPE NO.1, NO.1",27 +2383,"Electric, Light 2 x 2 Cabinet with Lamp Holes, 1 x 2 x 1 2/3 (Sign Back)",45 +2384,Electric Light & Sound Sign Front,45 +2384pb01,"Electric, Light 2 x 2 Clip-On Plate with Men Working Print",45 +2384pb02,"Electric, Light 2 x 2 Clip-On Plate with Car Repair Print",45 +2384pb03,"Electric, Light 2 x 2 Clip-On Plate with Octan Logo Print",45 +2384pb04,"Electric, Light 2 x 2 Clip-On Plate with Parking Print",45 +2384pb05,"Electric, Light 2 x 2 Clip-On Plate with No Thoroughfare Print",45 +2384pb06,"Electric, Light 2 x 2 Clip-On Plate with Blue Circle and White Arrow Print",45 +2384pb07,"Electric, Light 2 x 2 Clip-On Plate with 'POLICE' Print",45 +2384pb08,"Electric, Light 2 x 2 Clip-On Plate with Fire Logo Print",45 +23850,MINI HAT NO. 11,24 +23850pr0001,MINI HAT NO. 11 DECO NO.1,27 +23851,Minifig Visor Chin Guard for SW Resistance Trooper Helmet,27 +23860,"Minifig Sword, Blade with Bar",27 +23861,BLADE NO. 6,27 +23901,"Minifig Cape Cloth, Tattered Edges (SW Kylo Ren)",27 +23915,MINI FIGURE HELMET NO. 76 DEC NO 1,27 +23922,Minifig Gun Blaster / Shooter / Fire Nozzle Mini with Towball Socket,27 +23924,STRING 500MM W/5.9 BALL,31 +23927,Duplo Hanging Log Bridge w/ Rotations Snap,4 +23930,Tail 8 x 1 with Stepped Fin,35 +23931,Sticker Sheet for 21302-1,17 +23945,Minifig Hourglass [Plain],24 +23945pat0001,HOURGLASS,27 +23947,Minifig Helmet SW Resistance Trooper with Visor [Plain],24 +23947pr0001,Minifig Headgear SW Resistance Trooper Helmet with Tan Rectangles and Black Circles and attached Trans-Yellow Visor [Dimples for Accessory],27 +23948,Technic Axle 11,46 +23949,ROOF TILE 2X6 45 DEG.,24 +23950,Panel 1 x 3 x 1,23 +23955,"Hair Female - Long with Parted Bangs, Curls, and Bun - Hole on Top",13 +23969,Panel 1 x 2 x 1 with Rounded Corners and 2 Sides,23 +2397,Horse Hitching [Studded],28 +23972pr0021,Duplo Adult Figure with 'Bowl Cut' Brown Hair - Light Bluish Gray Spacesuit with Badge and Medium Azure Sleeves - Light Flesh Hands and Face with Freckles - Dark Blue Legs (Miles),57 +23973pr0022,Duplo Adult Figure with Space Helmet - Medium Blue Spacesuit with Badge and Light Bluish Gray Gloves - Light Flesh Face with Freckles - Light Bluish Gray Legs,57 +23974,OSTRICH NO 2,24 +23983,Minifig Armor - Shoulder Pad Single with Scabbard for 2 Katanas,27 +23984,Minifig Weapon - Sword Cutlass Serrated with Skull Hand Guard,27 +23985,Minifig Weapon - Djinn Sword Hilt with Skull and Bar,27 +23986,Minifig Teapot,27 +23986pr0001,TEAPOT NO. 1,27 +23988,"Minifig Crown Tiara, 3 Points",27 +23989,Dragon Wing Small (Elves) [Plain],28 +23989pat0002,Dragon Wing Small (Elves) with Marbled Trans-Purple Pattern [41172],28 +23989pat0003,Dragon Wing Small (Elves) with Marbled Trans-Bright Green Pattern,28 +2399,Wedge 3 x 4 [No Stud Notches],6 +23990,WATER CAN,24 +23991,Kayak,4 +23996,MOUNTAIN BRICK 8X8X6,33 +23999,Boat Hull 12 x 40 x 5 Complete Assembly,35 +2400,Door 1 x 5 x 10 Curved Top,16 +24007,"Plate Special 1 x 2 with Cube with Ears, Nose and Pixelated Face print (Minecraft Ocelot)",9 +2401,Plate Angled 10 x 10 without Corner,49 +24010,"BEAM LOWER TORSO W/10,2 BALL",41 +24014,Technic Arm with Gear 8 Tooth and 1.5L Axle,52 +24021,Helmet Space with Trans-Yellow Visor with Pearl Dark Gray Bug Pattern,27 +24054,Door 1 x 4 x 7 2/3 with Curved Top,16 +24055,Carriage Base 4 x 6 x 1 2/3 with 2 Mini Snaps (pins for wheels),36 +24066,Skunk [Plain],24 +24066pr0001,SKUNK NO. 1 "NO. 1",28 +24067,Tribal Baby / Papoose with Stud Holder on Back [Plain],24 +24067pr0001,PAPOSE NO.1 "NO. 1",27 +24068,Lower Body Skirt Wide with Side Hoops (Panniers) [Plain],24 +24068pr0001,"Lower Body, Skirt Wide with Side Hoops (Panniers) with Blue and Gold Fabric with Hearts and Diamonds Print",13 +24069,Minifig Hair Faun with Ears and Horns [Plain],24 +24069pr0001,MINI HELMET NO.91 "NO.1",27 +24072,MINI WIG NO. 107,13 +24073,MINI HAT NO. 12,27 +24076,Minifig Mask Shark Head and Tail [Plain],24 +24076pr0001,MINI COSTUME NO. 2 "NO. 1",27 +24077,CRUTCH NO. 1,27 +24078,"Torso Mechanical, Nexo Bot",13 +2408,Panel 10 x 6 x 11,23 +24080,Minifig Hair Female - Braids Pulled Back to Bun - Holes on Top and Back,13 +24084,MACE NO. 1,24 +24085,MOP HEAD NO. 1,27 +24086,Minifig Net,27 +24087,MINI CLOTHING NO. 1,27 +24088,MINI HELMET NO. 92,27 +2408p01,Panel 10 x 6 x 11 with Blacktron II Logo Print,23 +2408p02,Panel 10 x 6 x 11 with Blacktron I Logo Print,23 +2408p04,Panel 10 x 6 x 11 with Futuron Stripes Print,23 +2408pb01,Panel 10 x 6 x 11 with Number 200 Print,23 +2409,Panel 10 x 10 x 12 Quarter Dome,23 +24093,Minifig Book Cover,27 +24093pr0001,Minifig Book Cover with Monster Face Print [70316],27 +24093pr0002a,BOOK NO. 2 NO. 2,27 +24093pr0002b,Minifig Book Cover with Dragon Egg Print,27 +24093pr0003,Minifig Book Cover with Chevron Print,27 +24093pr0004,Minifig Book Cover with Smiling Skull Print,27 +24093pr0005,Minifig Book Cover with Spears Print,27 +24093pr0006,Minifig Book Cover with Question Mark Print,27 +24093pr0007,BOOK NO. 2 NO. 7,27 +24093pr0010,"BOOK, NO. 10",27 +24097,ARMOR NO. 15,27 +24101,LEFT ARM NO. 1,13 +24104,RIGHT ARM NO. 1,13 +24108,"Weapon Sword, Long with Angular Crossguard",27 +24111,Dog Pug [Plain],24 +24111pr0001,DOG W/ 1.5 HOLE NO. 4 1,28 +24111pr0002,"Dog Pug - Standing with Medium Dark Flesh Eyes, Muzzle and Spots Print (Friends Apollo)",28 +24116,Technic Panel Curved and Bent 6 x 3,40 +24118,Technic Panel Car Mudguard Arched 15 x 2 x 5,40 +24118pr0001,Technic Panel Car Mudguard Arched 15 x 2 x 5 with Vent Grille Print Model Left Side,40 +24118pr0002,Technic Panel Car Mudguard Arched 15 x 2 x 5 with Vent Grille Print Model Right Side,40 +24119,Technic Panel Curved 7 x 3 with 2 Pin Holes through Panel Surface,40 +24120,SHOVEL 4X5X7 W/ 4.85 HOLE,26 +24121,1/4 CIRCLE GEAR RACK 11X11,52 +24122,Large Figure Weapon Lightsaber Hilt with Axle Hole and Two Bar Holders,12 +24123,SHELL W/ CROSS HOLE NO. 1,24 +24124,"SHELL 4X7X4 W/ 10,2 BALL",24 +24128,CREATURE MINI TORSO NO.1 NO1,24 +2412a,Tile Special 1 x 2 Grille without Bottom Groove,15 +2412b,Tile Special 1 x 2 Grille with Bottom Groove,15 +2413,Wedge Plate 4 x 9,49 +24130,Container Faceted 4 x 4 x 1 2/3 (Dragon Egg Bottom),7 +24131,Minifig Party/Clown Hat with Pin,27 +24132,Container Faceted 4 x 4 x 1 2/3 (Dragon Egg Top),7 +24133,Body Nexo Knights Scurrier [Plain],24 +24133pr0001,Body Nexo Knights Scurrier with Red Arms and with Orange Eyes and Open Smile with 10 Teeth Print,13 +24133pr0002,Body Nexo Knights Scurrier with Red Arms and with Orange Eyes and Closed Smile with 6 Teeth Print,13 +24133pr0003,Body Nexo Knights Scurrier with Red Arms and with Orange Eyes and Closed Frown with 4 Teeth Print,13 +24133pr04,CREATURE BODY NO. 26 W/ ARM,13 +24135,Scuba Breathing Regulator,27 +24144,Blaster Gun with Hollow Studs on Sides and Inside Axle Holder,27 +24148,"MASK 1, 2016",41 +2415,Plate Special 2 x 2 Thin with Plane Single Wheel Holder,36 +24150,"MASK 2, 2016",41 +24151,"MUDGUARD 4x4x1 1/3 W/4,85 HOLE",36 +24154,"MASK 3, 2016",41 +24162,Bionicle Mask with Back in Varied Transparent Colors (24162),41 +24162pat0001,Bionicle Mask with Back with Marbled Trans-Light Blue Pattern,41 +24162pat0002,Bionicle Mask with Back with Marbled Trans-Purple Pattern,41 +24162pat0003,Bionicle Mask with Back with Marbled Trans-Neon Orange Pattern,41 +24162pat0004,Bionicle Mask with Back with Marbled Trans-Neon Green Pattern,41 +24162pat0005,Bionicle Mask with Back with Marbled Trans-Dark Blue Pattern,41 +24162pat0006,Bionicle Mask with Back with Marbled Trans-Bright Green Pattern,41 +24164,"MASK 8, 2016",41 +24165,"WEAPON 1, 2016",41 +24166,SHELL W/ DOUBLE Ø 3.2 SHAFT NO. 10,41 +2417,Leaves 6 x 5,28 +24180,BASE PLATE W/WHEEL ARCH 4X6,24 +24181,BOARD 3X6,24 +24183,Hamster [Plain],24 +24183pr0001,HAMSTER W/ 1.5 HOLE NO. 1,28 +24183pr0002,HAMSTER W/ 1.5 HOLE NO 2,28 +24183pr0004,HAMSTER W/ 1.5 HOLE NO. 4,28 +24183pr0005,Baby Bear (Lil' Blu) with Black Eyes - Black Nose and Mouth in White Muzzle - White Face Decorations Print (Hamster w/ 1.5 hole),28 +24184,LIFE JACKET,27 +24186,Duplo Figure Adult with Fur-lined Hood - Light Flesh Face and Hands - Reddish Brown Parka - Dark Tan Legs,4 +24187,HEAD TRIGGER W/ CROSS HOLE NO. 2,41 +24188,Bionicle Shadow Trap,41 +24189,Bionicle Skeletal Connector for Torso and Legs with 2 Ball Joints,41 +2418a,Windscreen 6 x 6 Octagonal Canopy without Axle hole,47 +2418b,Windscreen 6 x 6 Octagonal Canopy with Axle hole,47 +2418bpb01,Windscreen 6 x 6 Octagonal Canopy with Axle Hole and Hydronauts Print,47 +2418bpb02,Windscreen 6 x 6 Octagonal Canopy with Axle Hole and Insectoids Print [6977],47 +2418bpx1,Windscreen 6 x 6 Canopy Octagonal with Axle hole and Stingray Print,47 +2419,Wedge Plate 3 x 6 Cut Corners,49 +24190,Bionicle Torso Skeletal 5 x 10 with Ball Joint on Top and Gear on Bottom for Waist and Hips,41 +24191,SHELL 3X3X5 WITH HOLE,24 +24193pr0001,CHEST NO. 5 W/ Ø 10.2 BALL SNAP NO1.,41 +24193pr0002,CHEST NO. 5 W/ Ø 10.2 BALL SNAP NO2.,41 +24193pr0004,CHEST NO. 5 W/ Ø 10.2 BALL SNAP NO.4,41 +24193pr0005,CHEST NO. 5 W/ Ø 10.2 BALL SNAP NO.5,41 +24193pr0006,CHEST NO. 5 W/ Ø 10.2 BALL SNAP NO.6,41 +24193pr0007,CHEST NO. 5 W/ Ø 10.2 BALL SNAP NO.7,41 +24193pr0008,CHEST NO. 5 W/ Ø 10.2 BALL SNAP NO. 8,41 +24196,Dragon Head (Elves) Upper Jaw with 2 Studs on Top [Plain],24 +24196pr0001,Dragon Head (Elves) Upper Jaw with Print [41176],28 +24196pr0002,Dragon Head (Elves) Upper Jaw with Print [41172],28 +24196pr0003,Dragon Head (Elves) Upper Jaw with Print [41175],28 +24196pr0004,CREATURE HEAD NO. 17 NO. 4,28 +24196pr0005,Dragon Head (Elves) Upper Jaw with Red Eyes and Black Triangular Marking Print,28 +24198,Flesh Large Figure Head Modified SW Poe Dameron Pattern,13 +24199,Dragon Head (Elves) Lower Jaw,28 +2420,Plate 2 x 2 Corner,14 +24201,Slope Curved 2 x 1 Inverted,37 +24203,Large Figure Head Modified SW First Order Stormtrooper [Plain],24 +24203pr0001,HELMET 2ND SHOOT NO.1,41 +24203pr0002,HELMET 2ND SHOOT NO. 2,41 +24204,"Appendage Bladed with Pin (Tail, Plant Limb)",28 +24207pr0001,"Raccoon with Blue Ears, Feet and Striped Tail Pattern (Windflower)",28 +2421,Propeller 3 Blade Small,35 +24217,MINI CLOTHING W/KNOBS NO. 1,27 +2422,Bracket 2 x 2 - 1 x 4,34 +24226c01,"Windscreen 8 x 3 x 1 1/3 Half Right with Two Panes, Pin Hole and Trans-Clear Glass",47 +2423,Leaves 4 x 3,28 +24235c01,"Windscreen 8 x 3 x 1 1/3 Half Left with Two Panes, Pin Hole and Trans-Clear Glass",47 +2424,Crane Basket 2 x 3 x 2 with Non-Locking Hinge Fingers,34 +24240,"PLANE 10X8X2 ""NO 1""",24 +24246,Tile 1 x 1 Half Circle,15 +24246pr0001,Tile 1 x 1 Half Circle - Black Circle and 4 Lines print (vent / piston),10 +24248,Windscreen 6 x 8 x 3 with 6 Studs on Top,47 +24250,HEAD Rey,13 +2428,Technic Rack 1 x 20 x 2/3,52 +2429,Hinge Plate 1 x 4 Swivel Base,18 +24299,Wedge Plate 2 x 2 Left,49 +242c01,Wheel Spoked with Stud,29 +2430,Hinge Plate 1 x 4 Swivel Top,18 +24301,Large Figure Torso Armor Shoulder Studs [Plain],24 +24301pr0001,BODY NO. 1 NO.1,13 +24301pr0002,Large Figure Torso Armor Shoulder Studs with Orange Veins Print,13 +24301pr0003,"BODY, NO. 3 (Grimroc)",13 +24305pr0001,Alien with Spikes on Top and Holes on Sides with Pointed Teeth and Orange Eyes Pattern,13 +24307,Wedge Plate 2 x 2 Right,49 +24308,HUB CAB Ø15 NO.4,24 +24308a,Wheel Cover 10 Spoke (2 Spokes each parallel) - for Wheel 18976,29 +24308b,Wheel Cover 10 Spoke Y Shape - for Wheel 18976,29 +24309,Slope Curved 3 x 2 No Studs,37 +24309pr0001,Slope Curved 3 x 2 No Stud - Letter 'U' Print,37 +24309pr0002,"Slope Curved 3 x 2 No Studs - Letter ""S"" Print",37 +24309pr0003,"Slope Curved 3 x 2 No Studs - Letter ""A"" Print",37 +24309pr0004,Slope Curved 3 x 2 No Studs - USA Flag Print,37 +2431,Tile 1 x 4 with Groove,19 +24311,Minifig Head Modified Robot with 2 Handles with Black Eyes and Mouth print (Cyberman),13 +24312,WHEELCHAIR W/MINISNAP,27 +24314,WHEEL 21X2 W/3.2 HOLE,29 +24315,"IP FIGURE 2 2015, TOP, DEC NO 1",4 +24316,Technic Axle 3 with Stop,46 +2431p00,Tile 1 x 4 with Black Wrench Print,10 +2431p06,Tile 1 x 4 with 3 White Stars Print,10 +2431p08,"Tile 1 x 4 with - - 3 - - Print race,racing,racer",19 +2431p12,Tile 1 x 4 with Stylised Radar Print,10 +2431p51,Tile 1 x 4 with White Horizontal Stripes Print,10 +2431p78,Tile 1 x 4 with 4 Red Stripes Print,10 +2431pa0,Tile 1 x 4 with Hieroglyphs and Minifig Print,10 +2431pb002,Tile 1 x 4 with '- - 3 - -' Print,10 +2431pb022,Tile 1 x 4 with HP Hogsmeade Print,10 +2431pb023,Tile 1 x 4 with 'Formula 1' and Checkered Flag Print,10 +2431pc1,Tile 1 x 4 with Control Panel Print,10 +2431pr0002,Tile 1 x 4 with SM-xxxxxxxx Print - Set 70814,10 +2431pr0003,Tile 1 x 4 with Unique Game Code,15 +2431pr0004,Tile 1 x 4 with Laser Engraved Code LEGO Movie Print,10 +2431pr0017,Tile 1 x 4 with Black Diagonal Stripes Print,10 +2431pr0027,Tile 1 x 4 with 5 Red Stripes Print,10 +2431pr0028,Tile 1 x 4 with Train Controls Print,10 +2431pr0032,Tile 1 x 4 with Viking Snakes Knotwork Print,10 +2431pr00321,Tile 1 x 4 with 3 Black Chevrons and Silver Hose Print [7773],10 +2431pr0033,Tile 1 x 4 with Gold and Black 'Rust-eze' Print,10 +2431pr0035,Tile 1 x 4 with White Line with Black Curved Border Print,10 +2431pr0036,Tile 1 x 4 with Black and Yellow Stripes and Tow Shackles Print,10 +2431pr0037,"Tile 1 x 4 with Mouth, Grill and Headlights Print",10 +2431pr0038,Tile 1 x 4 with Open Mouth with Tongue Print (Mack),10 +2431pr0040,Tile 1 x 4 with Teeth Print,10 +2431pr0042,Tile 1 x 4 with 'POWERED BY allinol' Print,10 +2431pr0043,Tile 1 x 4 with 'Worldgrandprix' Print,10 +2431pr0045,Tile 1 x 4 with Smile and White Teeth Print,10 +2431pr0047,Tile 1 x 4 with Black Thin Curved Smile Print (The Queen),10 +2431pr0048,Tile 1 x 4 with Asian Writing and Shield Print Model Right,10 +2431pr0049,Tile 1 x 4 with Asian Writing and Shield Print Model Left,10 +2431pr0050,Tile 1 x 4 Lights with CD and Speakers on Light Aqua Background Print,10 +2431pr0051,"Tile 1 x 4 with 'KA-CIAO, FRANCESCO!' Print",10 +2431pr0052,Tile 1 x 4 with 'WORLD GRAND PRIX' Print,10 +2431pr0053,Tile 1 x 4 with 'CIAO' and 'McQUEEN' Print,10 +2431pr0054,Tile 1 x 4 with Smile Open Mouth Print,10 +2431pr0055,Tile 1 x 4 with Teeth and Dark Red Stripe Print (9479),10 +2431pr0056,Tile 1 x 4 with Tow Hooks and 'PN 217-63' Print (9479),10 +2431pr0058,Tile 1 x 4 with Smile Print [9483],10 +2431pr0059,Tile 1 x 4 with White '19-71 SMK' on Black Background Print [9483],10 +2431pr0060,Tile 1 x 4 with Wood Grain and 4 Nails Print,10 +2431pr0061,"Tile 1 x 4 with Vehicle Square Headlights, Indicators and Grill Print",10 +2431pr0062,"Tile 1 x 4 with Vehicle Angled Headlights, Indicators and Grill Print",10 +2431pr0075,Tile 1 x 4 with Wood Grain Medium Dark Flesh Print,10 +2431pr0076,Tile 1 x 4 with Blue Headlights and Grille with Heart Print,10 +2431pr0077,Tile 1 x 4 with Red and White Danger Stripes Red Print,10 +2431pr0078,Tile 1 x 4 with Ruler with Gold Trim Print,10 +2431pr0079,Tile 1 x 4 with Iron Man Mask and Gold 'STARK' Print,10 +2431pr0080,Tile 1 x 4 with Groove with Porsche 'GT3RS LG-P' and Code Print,10 +2431pr0081,Tile 1 x 4 with Groove with Wood Groove and Nails Print,10 +2431pr0083,"FLAT TILE 1X4, NO. 83",10 +2431pr0088,Tile 1 x 4 with Silver 'SEVEN 620' and Red 'R' print,10 +2431pr0089,Tile 1 x 4 with Black 'CATERHAM' print,10 +2431pr0090,Tile 1 x 4 with Black 'CATERHAM' print,10 +2431pr0093,Tile 1 x 4 with Black Utility Belt Pattern,10 +2431pr0094,"FLAT TILE 1X4, NO. 94",10 +2431pr0095,Tile 1 x 4 with Groove with Moustache print,10 +2431pr0096,Tile 1 x 4 - Black Lines and Gray Clip Shape surrounding Blue and White Half Circle (Arc Reactor) Print,10 +2431pr0199,Tile 1 x 4 with Laser Engraved MS-XXXXXXXX Code [LEGO Movie],10 +2431pr0200,Iron Man Arc Reactor,10 +2431pr0202,Doctor Strange Beard,10 +2431ps0,Tile 1 x 4 with SW Black Naboo Symbols Print,10 +2431ps1,Tile 1 x 4 with Black and Copper Circuits Print,10 +2431ps3,Tile 1 x 4 with SW Mini Jedi Starfighter Print,10 +2431pt0,Tile 1 x 4 with RALLY Print,10 +2431pt2,Tile 1 x 4 with 'Octan' Logo Print,10 +2431pw0,Tile 1 x 4 with Keep Out Sign Print,10 +2431pw1,Tile 1 x 4 with 'LEGOREDO' Print,10 +2431px10,"Tile 1 x 4 with Gold, Red and Blue Circuitry Print",10 +2431px12,"Tile 1 x 4 with Gray, Orange, and Green Lines Print [4487]",10 +2431px13,Tile 1 x 4 with Octan Logos and '71' Print [6424],10 +2431px14,Tile 1 x 4 with 'POLICE' Blue Outline Print [7034 / 7035],10 +2431px15,Tile 1 x 4 with Keyboard Print,10 +2431px18,"Tile 1 x 4 with Sleek Silver, Red and Black Print Left [8381]",10 +2431px19,"Tile 1 x 4 with Sleek Silver, Red and Black Print Right [8381]",10 +2431px2,"Tile 1 x 4 with Black, Silver and Copper Circuitry Print",10 +2431px23,"Tile 1 x 4 with Three Panels, 'OIL' and Arrow Right Print",10 +2431px24,Tile 1 x 4 with 'KNiGHT BUS' Print,10 +2431px8,Tile 1 x 4 with Racing 73 Team 1 Print,10 +2432,Tile Special 1 x 2 with Handle,15 +24324,Minifig Book Binding with Two Studs,27 +24326,"WHEEL BEARING 4x4x2/3 W/4,85 HOLE",36 +2433,Hinge Bar with 3 Fingers and End Stud (Control Lever),18 +2434,Brick Special 2 x 4 x 2 with Studs on Sides,5 +2435,Pine Tree - Small 2 x 2 x 4,28 +2436,Bracket 1 x 2 - 1 x 4 [Square Corners],9 +2437,Windscreen 3 x 4 x 1 1/3 with 2 Studs on Top,47 +24375,RUBBER ATTACHMENT FOR TRACK NO.2,24 +24377,VOODOO BALL NO. 1005,24 +2437pr0001,Windscreen 3 x 4 x 1 1/3 with 2 Studs on Top with Brown Eyes on White Background Print,47 +2437pr0002,Windscreen 3 x 4 x 1 1/3 with 2 Studs on Top with Green Eyes on White Background Print [8638 / 9484],47 +2437pr0003,Windscreen 3 x 4 x 1 1/3 with 2 Studs on Top with Blue Eyes on White Background Print [9486],47 +2437pr0004,Windscreen 3 x 4 x 1 1/3 with 2 Studs on Top with Brown Eyes on White Background Print [9483],47 +2439,Trash Can with 2 Cover Holders,7 +24394c00,Creature Legs and Hips - Curved Thighs and Front Indentation for Ankles [Plain],24 +24394pr0975,Faun Legs and Hips with Fur and Hooves print,13 +24394pr1129,Creature Legs and Hips with Tan and Reddish Brown Fur and Claws print - Gremlin Stripe,13 +2440,Hinge Panel 6 x 3,18 +24407,Road Sign Clip-on with Blue and Orange Space Screen print,38 +2440p01,Hinge 6 x 3 Radar with Yellow 4 and Red/Yellow Stripes Patt.,18 +2440p67,Hinge Panel 6 x 3 with Ice Planet and Mechanical Print,18 +2440p69,Hinge Panel 6 x 3 with Yellow Radar Print,18 +2440pb005,Hinge Panel 6 x 3 with Octan Text Print,18 +2440pb006,"Hinge Panel 6 x 3 with '2', Red & Blue Stripes with Stars Print",18 +2440pb008,Hinge Panel 6 x 3 with Shell Print,18 +2441,Vehicle Base 4 x 7 x 2/3,36 +24413,Glass for Window 1 x 2 x 2 with Black 'POLICE TELEPHONE... PULL TO OPEN' print,16 +24414,Glass for Window 1 x 2 x 2 with 4 Black and 2 White Rectangles Tardis print,16 +24426,Sticker Sheet for 70316-1,17 +2443,Hinge Window Frame 1 x 4 x 3 with Octagonal Panel,16 +2444,Plate Special 2 x 2 with 1 Pin Hole [Split Underside Ribs],9 +24445,Minifig Neck Connector [Tile Special 1 x 2 with Minifig Neck Pin],15 +24446,Sticker Sheet for 70313-1,17 +2445,Plate 2 x 12,14 +24450,Sticker Sheet for 70312-1,17 +24458,Minifig Conical Asian Style Hat,27 +2446,Minifig Standard Helmet,27 +24463,DUPLO COFFEEPOT,24 +24468,Sticker for 70600,17 +2446p01,Minifig Helmet Standard with 1 Red and 2 Green Stripes Print,27 +2446p03,Minifig Accessory Helmet Modern with Black and Yellow Print,27 +2446p50,Minifig Helmet Standard with Blue and Silver Spyrius Print,27 +2446p51,Minifig Helmet Standard with Silver and Blue Machinery Print,27 +2446pb01,Minifig Helmet Standard with Checks and 4 Silver Stars Print,27 +2446pb03,Minifig Helmet Standard with Horned Black and Yellow Print,27 +2446pb04,Minifig Helmet Standard with Checks and Black/White Fade Print,27 +2446pb05,"Minifig Helmet Standard with Black, Green and White Stripes Print",27 +2446pb06,"Minifig Helmet Standard with Blue, Orange Stripes and Large Silver Star Print",27 +2446pb08,"Minifig Helmet Standard with Green Stripes, Black Bars, and White Checks Print",27 +2446pb09,"Minifig Helmet Standard with Racing Stripes, Black/Lime/Red/Yellow Print",27 +2446pb10,Minifig Helmet Standard with Horned Black and Red Print,27 +2446pb11,Minifig Helmet Standard with Checks and Flames Print,27 +2446pb12,Minifig Helmet Standard with Silver Stripes and Harlequin Diamond Print,27 +2446pb13,Minifig Helmet - Standard with Black Stripes and White Centre Ladder Print [8358],27 +2446pb14,Minifig Helmet Standard with Red/White Circles and Blue/White Striped Print,27 +2446pb16,"Minifig Helmet Standard with Yellow/Red Flame, Silver Dot Print (Set 8364)",27 +2446pb17,Minifig Helmet Standard with Silver/Black/Medium Blue/Yellow Print (Set 8364),27 +2446pb18,Minifig Helmet Standard with Interlocking Silver and Red Print,27 +2446pb19,"Minifig Helmet Standard with Lime M, Black/Red/Green Print",27 +2446pb20,Minifig Helmet Standard with Ferrari M. Schumacher Print,27 +2446pb22a,Minifig Helmet Standard with SW Black and Yellow Print Large (B-wing),27 +2446pr0001,Minifig Helmet Standard with Checks and Octan Logo Print,27 +2446pr0002,Minifig Helmet - Standard with Red Star In Blue Circle Print,27 +2446pr0004,Minifig Helmet Standard with Red 'M' Print,27 +2446pr0005,Minifig Helmet - Standard with White 'X' Print,27 +2446pr0006,"MINI CRASH HELMET, NO. 15 with flames",27 +2446pr0008,Helmet - Standard with Crazy Demon Print,27 +2446pr0009,Minifig Standard Helmet with Red Eyed Skull Print,27 +2446pr0010,Minifig Standard Helmet with Star and Stripes Print,27 +2446pr0011,Helmet - Standard with Lime Lizard Head Print [Nitro Nick],27 +2446pr0012,Minifig Helmet Standard with Yellow Badge with Minifig Head Print,27 +2446pr0013,MINI CRASH HELMET NO 13,27 +2446pr0014,MINI CRASH HELMET with 5 squares print,27 +2446pr0016,"Minifig Headgear Helmet Standard - GEAR Racing Team Logo in Dark Blue Octagon - Layered Yellow, White, and Dark Blue Stripes Print",27 +2446pr02a,Minifig Helmet Standard with SW Red Stripe Print Large (A-wing),27 +2446pr02b,Minifig Helmet Standard with Small Red Stripe Print,27 +2446pr21,Minifig Helmet Standard with Ferrari R. Barrichello / F. Massa Print,27 +2446pr22b,Minifig Helmet Standard with Black and Yellow B-Wing Pilot Print,27 +2446pr23,Minifig Standard Helmet with Blue Trident Print [Aquaraiders II],27 +2446pr26,Minifig Helmet Standard with Ferrari K. Raikkonen Print,27 +2446pr27,Minifig Helmet - Standard with Ferrari F. Massa Print,27 +2446pr30,Minifig Helmet Standard with Flames and Red Skull with White Stripes Print,27 +2446pr31,Minifig Helmet Standard with Team Extreme Logo Print,13 +2446px2,Minifig Helmet Standard with 'POLICE' Red Line Print,27 +2446px3,Minifig Helmet Standard with 7 White Stars Print,27 +2446px5,Minifig Helmet Standard with Flames Yellow and Red Print,27 +2446px6,Minifig Helmet Standard with Red Lines and White Stars Print,27 +2446px8,Minifig Helmet Standard with Checks and Red Stripes Print,27 +2446px9,Minifig Helmet Standard with Flames Yellow and Orange Print,13 +2447,Minifig Visor For Standard Helmet,27 +2448,Panel 3 x 2 x 5 2/3,23 +24482,BLADE NO. 9,27 +24484,Headgear Helmet Ninjago with Cheek Protection and 2 Trans-Red Snakes Pattern,27 +2449,Slope Inverted 75° 2 x 1 x 3,3 +24490,Sticker for 60115-1,17 +24491,Sticker Sheet for 60116-1,17 +2449pb06,"Slope, Inverted 75 2 x 1 x 3 with Stars and Swirls Print",3 +2450,Wedge Plate 3 x 3 Cut Corner,49 +24505,GEAR WHEEL Z24,52 +2452,Hinge Plate 1 x 2 with 3 Fingers On Side,18 +24538,Sticker sheet for set 60123 (24538/6133182),17 +2453a,Brick 1 x 1 x 5 with Blocked Open Stud,11 +2453b,Brick 1 x 1 x 5 with Solid Stud,11 +2454a,Brick 1 x 2 x 5 with Blocked Open Studs and Bottom Stud Holder with Asymmetric Ridges,11 +2454b,Brick 1 x 2 x 5 with Hollow Studs and Bottom Stud Holder with Symmetric Ridges,11 +2454pa0,"Brick 1 x 2 x 5 with Hieroglyphs, Arm on Top Print",2 +2454pb001,Brick 1 x 2 x 5 with Stone Wall Print,2 +2454ps5,Brick 1 x 2 x 5 with Han Solo in Carbonite Print,2 +2454px1,"Brick 1 x 2 x 5 with Hieroglyphs, Owl on Bottom Print",2 +2454px3,"Brick 1 x 2 x 5 with Hieroglyphs, Eye in Middle Print",2 +2454px4,"Brick 1 x 2 x 5 with Hieroglyphs, Half Circle at Top and Bottom Print",2 +2454px6,Brick 1 x 2 x 5 with Jungle Print,2 +2454px7,Brick 1 x 2 x 5 with Scorpion and Dark Red Print,2 +2456,Brick 2 x 6,11 +2456pb007,Brick 2 x 6 with Black LEGOLAND FLORIDA Print,2 +2456px1,Brick 2 x 6 with Numbers 2 and 3 in Green Laurels Print,2 +2458,Brick Special 1 x 2 with Pin,5 +24586,Helmet Ninjago with Cheek Protection and 2 Snakes wth Fangs,27 +24588,"Armor Breastplate with Round Collar, Chain Mail, Shoulder Pads with Snake Heads and 1 Stud on Back",27 +24593,Cylinder Half 2 x 4 x 2 with 1 x 2 Cutout,20 +24593pr0001,Cylinder Half 2 x 4 x 2 with 1 x 2 Cutout - Giant-Man Face with Red and White Goggle Lenses print,20 +24593pr0002,Cylinder Half 2 x 4 x 2 with 1 x 2 Cutout with Red Eyes (Ares Face),20 +24599,Brick Round Corner 5 x 5 x 1 with Bottom Cut Outs [No Studs] [1/4 Arch],20 +2460,Tile Special 2 x 2 with Pin,15 +24607,Windscreen 2 x 10 x 3,47 +2462,Facet 3 x 3,6 +2463,Brick Special Facet 3 x 3 x 2 Top,6 +24633,Minifig Head Modified Duck [Plain],24 +24633pr0001,Minifig Head Duck Hole on Top with Bright Light Orange Bill and Black and Medium Blue Eyes Print (Donald),13 +24633pr0002,"Minifig Head Duck Hole on Top with Bright Light Orange Bill, Eyelashes and Lavender Eye Shadow print (Daisy)",13 +24634,Minifig Headwear Large Plain Bow with Small Pin [Daisy],27 +24634pr0001,Minifig Headgear Large Bow with 6 White Polka Dots on Front and Back - Small Pin,27 +24634pr0002,Bow Large with Pin Attachment with 6 White Polka Dots on Front and Back Pattern,27 +24636,Minifig Head Top with Widow's Peak and 2 Large Curved Segmented Horns (Maleficent) [Helmet],27 +2464,Brick Special Facet 3 x 3 x 2 Bottom,6 +2465,Brick 1 x 16,11 +24657,Glass for Window 1 x 2 x 2 with Black and White Logo for St. John Ambulance print,16 +2465p70,Brick 1 x 16 with Fire Logo Badge and Red Diagonal Stripes Print,2 +2465px1,Brick 1 x 16 with Wings Green/Orange/Blue Print,2 +2466,Panel 3 x 2 x 6,23 +24666,LEGO Puppy Dog with 1.5 Hole,28 +24668,LEGO Puppy Dog with 1.5 Hole,28 +2466p07,Panel 3 x 2 x 6 with Black Grill Print,23 +2466p68,Panel 3 x 2 x 6 with MTron Logo Print,23 +2467,Panel 4 x 4 x 6 Corner Concave,23 +24673,Head Finn,13 +2468,Panel 3 x 3 x 6 Corner Convex,23 +2468pb02,Panel 3 x 3 x 6 Corner Convex with Space Police I Logo Print Left,23 +2468pb03,Panel 3 x 3 x 6 Corner Convex with Space Police I Logo Print Right,23 +2470,Wheel Wagon Small (27mm D.),29 +24715pr0001,Minifig Cape Cloth with 1 Hole - Long Narrow with Magenta Flowers print,27 +24724,Plastic Flag 7 x 5 with White Ninjago Pirate Skull (24724),38 +24727,Sticker Sheet for 42048-1,17 +2474,Vehicle Brush Axle 1 x 8,46 +2475,"Vehicle, Brush Holder",36 +24765,CITY CAR BODY NO. 1 NO. 7,24 +2476a,Plate 2 x 2 with Pin on Bottom,9 +2476b,"Plate Special 2 x 2 with Pin on Bottom, Small Holes in Plate and Locking Fingers on Underside",9 +24772,"Body Giant, Dark Blue Head Covering and Bodysuit print and Lavender Face print",13 +24779,Minifig Tail for Duck,13 +24781,Duplo Blob Shape - Plain,24 +24781pr0001,Duplo Alien Figure - Blob with Black and White Eyes and Thin Wide Mouth - Blodger Blopp,57 +24782,Minifig Skirt [Plain],27 +24782pr0001,Minifig Skirt with 16 White Polka Dots [Minnie],27 +24782pr0002,"Minifig, Skirt with White Pinafore / Apron print (Alice)",27 +24782pr0003,Skirt with 16 White Polka Dots Pattern (Minnie),13 +24787,Minifig Hair Spiked Tallest in Center,13 +24789,Duplo Board 3 x 6 - Plain (Surf - Blast - Hover),24 +24789pr0001,Duplo Blastboard 3 x 6 - TTA logo and Orange Rectangles print,4 +2479,Propeller 4 Blade 5 Diameter with Rounded Ends,35 +24791,"Minifig Hair Swept Back with Widow's Peak, Sideburns and Fluffed Bangs",13 +24793,Lower Body Sea Witch with Tentacles [Ursula's Skirt],13 +24794,Minifig Hair Female Long Full with Bangs Swept to Right Side,13 +24806,CAMERA,24 +24807,Duplo Brush,4 +2483,Windscreen 4 x 4 x 4 1/3 Helicopter,47 +2483p50,Windscreen 4 x 4 x 4 1/3 Helicopter with Space Police II Print,47 +2484c01,"Vehicle, Sprung Wheels Holder 2 x 2",36 +2486,Bar 1 x 8 x 2,32 +24872,REINDEER W/1.5 HOLE NO. 1,28 +24875pr0001,Cat Small Standing with Dark Pink Bangs and Tail Pattern (Dreamy),28 +2488,Minifig Whip [aka Plant Vine],27 +24883pr0001,"Cat Small Standing with Medium Lavender Bangs and Tail, Medium Azure Eyes and Bright Pink Nose Pattern (Treasure)",28 +2489,Container - Barrel 2 x 2 x 2,7 +24890,Cloth Large Skirt with 3 Holes and Slit - Darth Vader Constraction,38 +2490,Horse Barding,28 +24900,CAPE LARGE B,27 +24902,BODY WRAP,27 +2490pb01,Horse Barding with Fright Knights Print,28 +2490pb02,Horse Barding with Blue Dragons (Blue on Red) Print,28 +2490pb03,Horse Barding with Lion Head (Royal Knights) Print,28 +2490pb04,Horse Barding with Knights Kingdom Vladek Scorpion Print,28 +2490pb05,Horse Barding with Knights Kingdom II Lion with Crown Print,28 +2490pr0001,Horse Barding with Gold Crowns and Silver Chain Mail Print,28 +2490pr0002,Horse Barding with Gold Crowns and Gold Plate Armour Print,28 +2490pr0003,Horse Barding with Gold Lions and Gold Chain Mail Print [7946],28 +2490pr0004,Horse Barding with Gold Lions and Silver Plate Armor Print,28 +2490pr0005,Horse Barding with Kingdoms Dragon Shield and Armour Print,28 +2490pr0006,Horse Barding with Silver Armour and Fleur de Lis Print,28 +2490px1,Horse Barding with Gold and Blue Print,28 +2490px2,Horse Barding with Black Dragons (Black on Blue) Print,28 +2490px3,Horse Barding with Yellow Lions Print,28 +2490px4,Horse Barding with Lion Heads and Blue and Yellow Print,28 +24911,"WHEELBASE 4X8, ASSEMBLY",4 +24924,Sticker Sheet for Set 42047 - 24925/6135769,17 +2493,Window 1 x 4 x 5 [Undetermined Studs],16 +24931,Sticker Sheet for 42049-1,17 +2493a,Window 1 x 4 x 5 with Solid Studs,16 +2493b,Window 1 x 4 x 5 with Hollow Studs,16 +2493c01,Window 1 x 4 x 5 with Trans-Clear Glass,16 +2493c01pb02,Window 1 x 4 x 5 with Trans-Clear Glass with 5 White Stripes and Red Cross Print,16 +2493c02,Window 1 x 4 x 5 with Trans-Light Blue Glass,16 +2493c02pb01,Window 1 x 4 x 5 with Trans-Light Blue Glass with White Stripes and Fire Logo Badge Print,16 +2494,Glass for Window 1 x 4 x 5,16 +24946,Egg with 1.5mm Hole,27 +24947,SPHERE 2X2X1 1/3 INVERTED,20 +2494pb03,Glass for Window 1 x 4 x 5 with Bank Money 4 Coins Print,16 +2494pb06,Glass for Window 1 x 4 x 5 with Brown Brick Border Print,16 +2494pb07,Glass for Window 1 x 4 x 5 with Fire Logo Print,16 +2494px1,Glass for Window 1 x 4 x 5 with Classroom Blackboard Print,16 +2494px8,Glass for Window 1 x 4 x 5 with Octan Print,16 +2495,Minifig Hand Truck Frame,27 +24954,SHOULDER CAPE,27 +2496,Wheel Skateboard / Trolley,29 +24961,"Minifig Head Creature SW Ugnaught with Brown Dots, Eyebrows, and Wrinkles and White Sideburns and Hair print",13 +24972,DUPLO BRICK 2X2X2 NO. 31,24 +24973,DUPLO BRICK 2X2X2 NO. 32,24 +24976,DUPLO BRICK 2X2X2 NO. 33,24 +24977,Minifig Head SW Alien Face with Dark Bluish Gray Headband and Goggles over Protruding Blue Eyes (Maz Kanata),13 +2498,Vehicle Brush,36 +24980,DUPLO BRICK 2X2X2 NO. 34,24 +24988,DUPLO BRICK 2X2X2 NO. 35,24 +24989,DUPLO BRICK 2X2X2 NO. 36,24 +24990,CABIN NO.1 4X4X3 NO. 1,4 +24992,DUPLO AWNING NO. 3,24 +24996,DUPLO Brick 2 x 2 x 2 with 2 Carrots,4 +2500c01,Light Brick 1 x 8 [3 Prisms],45 +25013,Sportscar 4X8X2½ "No 1",4 +25032,Sticker Sheet for 42050-1,17 +25047pr0001,Minifig Head Modified Cube with Minecraft Iron Golem Print,13 +25047pr0003,Minifig Head Modified Cube with Minecraft Zombie Villager Print,13 +25047pr0004,Minifig Head Modified Cube with Minecraft Villager Face Print,13 +2504stk01,Sticker for Set 2504 - (93891/4612897),17 +25051,BRICK 1X2 WITHOUT PIN NO. 2,2 +2505stk01,Sticker for Set 2505 - (94682/4616308),17 +2507,Windscreen 10 x 4 x 2 1/3 Canopy,47 +2507p01,Windscreen 10 x 4 x 2 1/3 Canopy with Silver Frame Print,47 +2507pb01,Windscreen 10 x 4 x 2 1/3 Canopy with Black Aquasharks Print,47 +2507pb02,Windscreen 10 x 4 x 2 1/3 Canopy with UFO Print,47 +2507pb04,Windscreen 10 x 4 x 2 1/3 Canopy with Blue Outlines and Red Square Print,47 +2507px1,Windscreen 10 x 4 x 2 1/3 Canopy with Insectoids Silver / Copper Circuitry Print,47 +2508,Plate Special 1 x 2 with Long Towball,9 +25081,TRUCK TRAILER ASS.,4 +25086,RAIL FALL NO.2.,24 +250pb01,HO Scale Bedford ESSO Tank Truck (Indicators on sides),50 +251,"Turntable 2 x 2 Plate with Hinge, Base",18 +25104,DUPLO BRICK 2X2 NR. 56,24 +25110,"ARMOUR, NO.19",24 +25117,DUPLO BRICK 1X2X2 NO 33,24 +2512,"Vehicle, Tipper Bed Small",36 +25120,"DUPLO BRICK 1X2X2 ""NO 34""",24 +25123,"DUPLO BRICK 2X2X2 ""NO 42""",24 +25128,MINI FIGUR BABY BODY,13 +25129,Sticker for Set 41142-1,17 +2513,Mudguard 3 x 4 Slope,36 +25131,Sticker Sheet for 41140-1 [Mirrored],17 +25139,ADULT FIG. NO. 1 2013 V2 Ariel,4 +2513p02,Car Mudguard 3 x 4 w. Police Yellow Star Badge/Lights Print,36 +2513p03,Vehicle Mudguard 3 x 4 Slope with Headlights and Fire Logo Badge Print,36 +2513p04,Car Mudguard 3 x 4 with Dual Headlights Print,36 +2513p05,Car Mudguard 3 x 4 with Headlights Print,24 +2513pb04,Vehicle Mudguard 3 x 4 Slope with Headlights Print [6426 / 6548 / 2234],36 +25140,ADULT FIGURE 17 V2,4 +25149,Duplo Brick 2 x 2 with Multi Green Colored Crystals / Gems print,4 +2514c01,"Electric, RC Controller Complete Assembly",45 +2515,Wheel Hard Plastic Large (54mm D. x 30mm) [Undetermined Inner Support],29 +25152,PICK-UP ELEMENT 4X8 NO 5,24 +2515b,Wheel Hard Plastic Large (54mm D. x 30mm) with Inner Support,29 +2516,Minifig Chainsaw / Drill Body,27 +25164,DUPLO CURVE 2X4X2 NO. 8,24 +25166,Stickersheet for 75115-1 (25166/6137986),17 +25168,Sticker Sheet for Set 41068-1,17 +2518,Palm Leaf Large 10 x 5,28 +25186,DUPLO Brick 2 x 2 x 2 Curved Top with Side A Insect Eyes Open and Side B Eyes Closed,4 +25187,DUPLO Brick 2 x 2 x 2 with 3 White Daisy Flowers,4 +25195,Plate 2 x 6 with Pole Holder Pin,9 +2519stk01,Sticker for Set 2519 - (95357/4620431),17 +2520stk01,Sticker for Set 2520 - (95288/4619740),17 +25214,Brick Round 1 x 1 diameter Tube with 90 Degree Elbow(2 x 2 x 1) and Axle Holes(Crossholes) at each end,20 +25221,HORSE 2X8X5 DEC. NO. 7,28 +25234,HORSE BLANKET,24 +25238,Sticker Sheet I for 75827-1,17 +25239,Sticker Sheet II [Mirrored] for 75827-1,17 +2524,Minifig Backpack Non-Opening,27 +2525,Flag 6 x 4,38 +2525p01,Flag 6 x 4 with Skull and Crossbones Print on Both Sides,38 +2525p31,Flag 6 x 4 with Jolly Roger Print,38 +2525p32,Flag 6 x 4 with Crossed Cannons over Blue Crossed Flag Print,38 +2525p40,Flag 6 x 4 with Blue and Red Dragon Print,38 +2525pr0001,Flag 6 x 4 with Skull with Crossed Cutlasses (Jolly Roger) Print on Both Sides,38 +2525pr0002,Flag 6 x 4 with Crossed Cannons over Blue and White Cross with Yellow Outline Print on Both Sides,38 +2525ps1,Flag 6 x 4 with Jedi Starfighter Print,38 +2525px1,Flag 6 x 4 with Crossed Cannons over Red Stripes Print,38 +2525px3,Flag 6 x 4 with Oriental Rug Print,38 +2525px6,Flag 6 x 4 with Skull and Crossbones (Eyepatch) Print,38 +2526,Minifig Epaulette,27 +25264,Minifig Head Top with Panther Ears [Plain],27 +25264pr0001,"MINI HAT NO. 16, NO. 1",27 +25266,Minifig Wings with Four Studs [Plain],24 +25266pr0001,MINI WING NO 2 DEC NO 1,27 +25269,1/4 CIRCLE TILE 1X1,19 +25269pr01,1/4 CIRCLE TILE 1X1 with Lattice Pie Print,10 +25269pr02,1/4 CIRCLE TILE 1X1 with Watermelon Print,10 +25269pr03,1/4 CIRCLE TILE 1X1 with Pizza Print,10 +2527,Minifig Cannon Base 2 x 4,27 +25275,DUPLO OVAL 2X4X2 NO 13,24 +25276,AXE HEAD W/3.2SHAFT,24 +25277,"WEAPON, NO. 12",24 +25279,HORSE BLANKET W/ 1.5 HOLE,28 +2528,Minifig Hat Pirate Bicorne,27 +2528pb01,Minifig Pirate Bicorne with Skull and Crossbones Print,27 +2528pb02,"Minifig Hat, Pirate Bicorne with Admiral Print",27 +2528pr0001,Minifig Hat Bicorne with Evil Skull and Crossbones Print,27 +2528pr0002,"Minifig Hat, Pirate Bicorne with Gold Captain Print",27 +2528pr0003,"Minifig Hat, Pirate Bicorne with Large Square Skull and Crossbones and Red Line Print",27 +2528pr0004,"Minifig Hat, Pirate Bicorne with Gold Skull, Crossbones and Dots Print",27 +2528pr0005,Minifig Hat Admiral with Robotic Jolly Roger Skull and Crossbones Print,27 +2528pr0006,ADMIRALS HAT NO. 6,27 +2528pr0007,"Minifig Hat, Pirate Bicorne with Skull and Crossed Cutlasses Print",27 +2528pr0008,"Minifig Hat, Pirate Bicorne with Skull with X Eyes and Crossbones Print",27 +2528pr0009,Minifig Hat Pirate Bicorne - Skull with Eyepatch and Wrenches as Crossbones in Mouth,27 +2529,Window 1 x 2 x 3 Pane Latticed,16 +2530,Minifig Sword [Cutlass],27 +2531,Hand Pirate Hook,13 +2532,MINI WOODEN LEG,13 +25343,HEAD NO. 4 2016 NO 1. Kylo Ren,13 +25348,"Plastic Wing Dragon with White Spines, Dark Azure and Gold Scrollwork and White Sparkles Pattern 220X195MM",38 +2536,"Plant Tree Palm Trunk - Short Connector, no Axle Hole",28 +25361,MINI VISOR 2,24 +2537,"Boat Mast Section Middle 13 2/3 H, Undetermined Type",35 +25375,Plate Special 1 x 1 Round with Tassel,9 +2537a,"Boat Mast Section Middle 13 2/3 H, Without Bottom Connector Prong",35 +2537b,"Boat Mast Section Middle 13 2/3 H, With Bottom Connector Prong",35 +2538,"Boat Mast Section Top 16 H with 4 stud holes at bottom, Undetermined Type",35 +25386,BREAD BUN,27 +2538a,"Boat Mast Section Top 16 H with 4 stud holes at bottom, Without Bottom Nubs",35 +2538b,"Boat Mast Section Top 16 H with 4 stud holes at bottom, With Bottom Nubs",35 +2539,Boat Mast Platform,9 +253pb02,HO Scale Bedford Flatbed (Indicators on sides),50 +2540,Plate Special 1 x 2 Side Handle [Free Ends],9 +25403,"BEAR SITTING W/HOLE Ø 1,5 NO. 3",24 +2541,Boat Mast Rigging Long 27 x 5,35 +2542,Minifig Oar / Paddle,27 +25422,DUPLO SKIRT,4 +2543,"Minifigure Hat, Rag Wrap / Bandana",27 +2544,Minifig Pirate Tricorne,27 +25440,BANNER 23X65 NO.1,38 +2544pr0001,"Minifig Hat, Pirate Tricorne / Triangle with White Brim Print",27 +2545,Minifig Imperial Guard Shako,27 +2545pr0001,Minifig Hat Imperial Guard Shako with Red Plume and Gold Badge Print,27 +2546,Bird,28 +2546p01,Bird - Parrot with Coloured Feathers Print,28 +2546pat0001,Parrot Marbled Green Pattern,28 +2546pat0002,Parrot Marbled Blue,28 +2547,Shark Body,28 +2547a,Animal Shark Body Type 1,28 +2548,Shark Head,28 +2549,Rope Bridge,32 +2550,Monkey Body,24 +25505,"Minifig Cape Cloth, Angled Shoulder 32 mm x 38 mm",27 +25508,HIP ½ SKIRT,27 +2550c01,Monkey [Complete Assembly],28 +2550c02,Monkey Style 2 [Complete Assembly],28 +2551,Rowing Boat 14 x 5 x 2 with Oarlocks,35 +25514,NEW SPECIAL MANTLE 33mm x 41mm x 1mm,27 +25516,Long Minifigure Crown with Bar,27 +2552,Baseplate 32 x 32 Raised with Ramp and Pit,1 +25528,SHELL JAW W/ CROSS HOLE,24 +2552p01,"Baseplate Raised 32 x 32 with Ramp and Pit, Ice Print [6983]",1 +2552p02,"Baseplate Raised 32 x 32 with Ramp and Pit, Crater Print [6988 / 6959 / 6591]",1 +2552p05,"Baseplate Raised 32 x 32 with Ramp and Pit, Rocks Black/Gray Print [6082]",1 +2552p06,"Baseplate Raised 32 x 32 with Ramp and Pit, Gray Rocks, Gray Print [6086 / 6081]",1 +2552px3,"Baseplate Raised 32 x 32 with Ramp and Pit, Water, Gray Stones Print",1 +2552px4,"Baseplate Raised 32 x 32 with Ramp and Pit, Water, Green Stones Print",1 +25531,MASK 20,41 +25532,MASK 21,41 +25533,Sticker Sheet for 75135-1,17 +25534,SHELL 3X5X4 W/ 10.2 BALL SNAP,24 +2554,Door 1 x 3 x 6 Curved Top,16 +25546,Duplo Figure - Donald Duck with Blue Hat and Top with Red Bow Tie - White Hips with Bright Light Orange Legs and Feet - Figure 27 V2,4 +25548,Plate 4X4 W/ B-Connector,4 +25549,PLATE 4X6,24 +2554stk01,Sticker for Set 2554 - (72532/4116614),17 +2555,Tile Special 1 x 1 with Clip and Straight Tips,15 +2556stk01,Sticker for Set 2556 - (72535/4116728),17 +2557c02,"Boat Hull Large Bow 12 x 16 x 5 1/3 Complete Assembly, Top Color Red",35 +2557c03,"Boat Hull Large Bow 12 x 16 x 5 1/3 Complete Assembly, Top Color Brown",35 +2557c04,"Boat Hull Large Bow 12 x 16 x 5 1/3 Complete Assembly, Top Color Dark Gray",35 +2559c02,"Boat Hull Large Stern 14 x 16 x 5 1/3 Complete Assembly, Top Color Red",35 +2559c03,"Boat Hull Large Stern 14 x 16 x 5 1/3 Complete Assembly, Top Color Brown",35 +2559c04,"Boat Hull Large Stern 14 x 16 x 5 1/3 Complete Assembly, Top Color Dark Gray",35 +255pb01,HO Scale Bedford Fire Engine (Indicators on front),50 +2560,Boat Hull Large Middle 8 x 16 x 2 1/3 with 9 Holes,35 +2561,Minifig Pirate Flintlock / Musket,27 +25613,Hair Female with Top Knot Bun and Fringe,13 +2562,Minifig Flintlock Pistol,27 +2563,Palm Tree Base,28 +2564,Boat Anchor - Single Top Hole,35 +25642,"POP SKIRT, NO.1",24 +25645,"POP SKIRT, NO.2",24 +25651,Plastic Foil Tent with Dark Purple Ridge Line and Bright Light Orange Friends Flap and Butterfly print - 160X175MM,38 +2566,Palm Tree Top,28 +25672,WEAPON HANDLE 1000,24 +2569,Antenna Whip 8H,32 +25692,Sticker Sheet for 42052-1,17 +256pb01,HO Scale Bedford Tow Truck [Indicators on front],50 +2570,Minifig Crossbow,27 +2571,Panel 3 x 4 x 6 Curved Top,23 +2572,Panel 6 x 6 x 9 Curved Top,23 +2573,Wheel Hard Plastic Giant (71mm D. x 47mm),29 +2574,Pullback Motor Old,44 +25753,Sticker Sheet for Set 41174,17 +25765,Duplo Adult Figure - Goofy with Lime Hat and Red and White Striped Top - Black Legs - Figure 29,4 +25767,Torso Modified Long with Folded Arms Plain,13 +25767pr0001,MINI TORSO PART NO. 3,13 +25767pr0002,MINI TORSO PART NO. 2,13 +25767pr0003,"MINI TORSO PART, NO. 3",13 +2577,Brick Round Corner 4 x 4 Full Brick,20 +25774,Sticker Sheet for 41172-1,17 +2578,Brush Holder for Street Sweeper [Undetermined Fitting],36 +2578a,Brush Holder for Street Sweeper with Towball Fitting,36 +2578b,Brush Holder for Street Sweeper with Hinge Fitting,36 +257pb02,HO Scale Bedford Moving Van (Indicators on side - LEGO Transport in gold),50 +25806,Sticker Sheet for 40166-1,17 +2580c01,"Support 2 x 2 x 5 Lattice Pillar, Complete Assembly",34 +25817,Minifig Tail Cheshire Cat - Dark Pink Tip,13 +2582,Hinge Panel 2 x 4 x 3 1/3,18 +2582p68,Hinge Panel 2 x 4 x 3 1/3 with MTron Print,18 +2582p6u,Hinge Panel 2 x 4 x 3 & 1/3 with UFO Print,18 +2582pb01,Hinge Panel 2 x 4 x 3 1/3 with Blue Aquazone Print [6190],18 +2582pb09,Hinge Panel 2 x 4 x 3 1/3 with Silver and Black Grid Print,18 +2582px1,Hinge Panel 2 x 4 x 3 1/3 with Blue SW Gungan Sub Print [7161],18 +2582px2,Hinge Panel 2 x 4 x 3 1/3 with Yellow Submarine Print,18 +2583,Bar 1 x 8 x 3,32 +25838,Minifig Head (Mouse Face) with Black Ears and Nose and White Eyes print [Mickey],13 +2584,String Reel 2 x 2 Holder,31 +25841,Minifig Head (Mouse Face) with Black Ears and Nose and White Eyes with Long Eyelashes print [Minnie],13 +2584c01,String Reel 2 x 2 Complete without String,24 +2584c02,String Reel 2 x 2 Complete with String,24 +2584c03,String Reel 2 x 2 Complete with String and Dark Gray Grappling Hook,24 +2584c04,String Reel 2 x 2 Complete with String and Dark Gray Hook with Towball,24 +2584c05,String Reel 2 x 2 Complete with String and Light Gray Hose Nozzle Simple,24 +2584c06,String Reel 2 x 2 Complete with String and Red Slider Hook Assembly,24 +2584c07,String Reel 2 x 2 Complete with String and Dark Bluish Gray Grappling Hook,24 +2584c08,String Reel 2 x 2 Complete with String and Dark Bluish Gray Hook with Towball,24 +2584c09,String Reel 2 x 2 Complete with String and Yellow Hose Nozzle Simple,24 +2585,String Reel 2 x 2 Drum,31 +25851,Sticker Sheet for 75139-1,17 +2586,Minifig Shield - Ovoid,27 +25861,Sticker Sheet for 41173-1,17 +2586p30,Minifig Shield Ovoid with Indigo Islanders Print,27 +2586p4b,Minifig Shield - Ovoid with Green Dragon Print,27 +2586p4c,Minifig Shield - Ovoid with Blue Dragon Print,27 +2586p4d,Minifig Shield - Ovoid with Royal Knights Lion Head Print,27 +2586p4f,Minifig Shield - Ovoid with Batlord Print,27 +2586p4g,Minifig Shield - Ovoid with Bull Head Print,27 +2586p4h,Minifig Shield - Ovoid with Silver Skull on Dark Red Print,27 +2586p4k,Minifig Shield - Ovoid with Dark Green Dragon on Light Yellow and Ochre Quarters Background Print,27 +2586ph1,Minifig Shield - Ovoid with Golden Lion Print [4079],27 +2586ph2,Minifig Shield - Ovoid with Silver Snake Print,27 +2586pr0001,Minifig Shield Ovoid with SW Small Rocket at Top Print,27 +2586pr0002,Minifig Shield - Ovoid with Black and Copper Karzon Snake Print,27 +2586pr0004,Minifig Shield - Ovoid with Gold Lion on Red/White Quarters Print,27 +2586pr0005,Minifig Shield - Ovoid with Stag Head Print,27 +2586pr0006,Minifig Shield Ovoid with Boar Head and Silver Border Print,27 +2586pr0007,Minifig Shield - Ovoid with Tree with Gold Leaves Print,27 +2586pr0008,Minifig Shield - Ovoid with Red Dragon Head and Fire on Black Background Print,27 +2586pr0009,Minifig Shield - Ovoid with Lion Head on White and Blue Print,27 +2586pr0010,Shield - Ovoid with Mirkwood Elf Style Print,27 +2586pr15,"Minifig Shield Ovoid with SW Red, Gray, and Black Lines Print",27 +2586ps1,"Minifig Accessory Shield Ovoid with SW Gungans Patrol Shield Print Bings, Episode, Forcefield, Gungans, I, Jar, Naboo, Star, Wars",27 +2586pw1,Minifig Shield - Ovoid with American Indian Print,27 +2586px12,Minifig Accessory Shield Ovoid with Gold Chrome Geometric Print,27 +2586px13,Shield Ovoid with Open Mouth Snake Print [4730],27 +2586px14,Minifig Shield - Ovoid with Crown on Dark/Med Blue Quarters Print,27 +2586px16,"Minifig Accessory Shield Ovoid with Red, Black, and Silver Scorpion Print",27 +2586px18,Minifig Accessory Shield Ovoid with Silver and Black Scorpion Print,27 +2586px3,Minifig Accessory Shield Ovoid with Feathers and Horse Print,27 +2586px5,Minifig Accessory Shield Ovoid with Black Bulls Head Outline Print,27 +2587,Minifig Breastplate with Leg Protection,27 +25877,Minifig Hat Sailor with Ribbon and Blue Top and Small Pin,27 +2587pb01,"Minifig Breastplate with Leg Protection, Danju Geometric Print",13 +2587pb02,"Minifig Breastplate with Leg Protection, Jayko Geometric Print",27 +2587pb03,"Minifig Breastplate with Leg Protection, Rascus Geometric Print",27 +2587pb04,"Minifig Breastplate with Leg Protection, Santis Geometric Print",27 +2587pb05,Minifig Breastplate with Leg Protection - Vladek Geometric Print,27 +2587pb06,"Minifig Breastplate with Leg Protection, Santis Gold Bear Print",27 +2587pb07,"Minifig Breastplate with Leg Protection, Rascus Gold Monkey Print",27 +2587pb08,"Minifig Breastplate with Leg Protection, Jayko Gold Hawk Print",27 +2587pb09,"Minifig Breastplate with Leg Protection, Vladek Scorpion Black & Silver Print",27 +2587pb10,"Minifig Breastplate with Leg Protection, Danju Gold Wolf Print",27 +2587pr0011,"Minifig Breastplate with Leg Protection, King Jayko Silver & Black Hawk Print",13 +2587pr0012,"Minifig Breastplate with Leg Protection, Vladek Scorpion Silver Print",27 +2587pr0013,"Minifig Breastplate with Leg Protection, Adric/Kentis Chain Mail Print",27 +2587pr0014,"Minifig Armour - Breastplate with Leg Protection, Fantasy Era Skeleton Print",27 +2587pr0015,"Minifig Breastplate with Leg Protection, Dracus Silver Studs & Chain Mail Print",27 +2587pr0016,"Minifig Breastplate with Leg Protection, Karzon Copper Studs & Chain Mail Print",13 +2587pr0017,"Minifig Breastplate with Leg Protection, Avatar Prince Zuko Print [3829]",27 +2587pr0018,"Minifig Breastplate with Leg Protection, Avatar Firebender Print [3828 / 3829]",27 +2587pr0019,"Minifig Breastplate with Leg Protection, Avatar Fire Nation Soldier Print [3828 / 3829]",27 +2587pr0021,"Minifig Breastplate with Leg Protection, Fantasy Era Gold Knight Print",27 +2587pr0022,"Minifig Breastplate with Leg Protection, Kingdoms Lion Head and Belt Print",27 +2587pr0023,"Minifig Armour Breastplate with Leg Protection, Kingdoms Lion Head Print",27 +2587pr0024,"Minifig Armour Breastplate with Leg Protection, Kingdoms Dragon Heads and Chain Print",27 +2587pr0025,"Minifig Breastplate with Leg Protection, Kingdoms Dragon Head and Belt Print",27 +2587pr0026,"Minifig Armor Breastplate with Leg Protection, Kingdoms Silver Print",27 +2587pr0027,"Minifig Breastplate with Leg Protection, Evil Knight Silver Diamond Print",13 +2587pr0028,"Minifig Breastplate with Leg Protection, Conquistador Silver Buckles Print",27 +2587pr0029,"Minifig Breastplate with Leg Protection, LotR King Theoden Print [9474]",13 +2587pr0030,"Minifig Breastplate with Leg Protection, Heroic Knight Print",13 +2587pr0031,Minifig Breastplate - Leg Protection and Dragon Head Print,27 +2587pr0032,Minifig Breastplate - Leg Protection and Lion Head Print,27 +2587pr19,"Minifig Breastplate with Leg Protection, Fantasy Era Crown Print",27 +2587pr21,"Minifig Breastplate with Leg Protection, Fantasy Era Crown King Print",27 +2588,Minifig Ghost Shroud,13 +25892,Boomerang,27 +25893,3.2 shaft w/ knob,27 +25894,Helmet Insect with Antennae and Mandibles (Killer Moth),13 +25895,WEB W/ 3.2 SHAFT,24 +258cdb01,"Paper, Cardboard Base for Set 258, Zoo Print",17 +258pb09,HO Scale VW Van [White Base],50 +2593,Wheel Hard Plastic Medium (35mm D. x 31mm),29 +2594,Minifig Helmet Visor Castle,27 +2596,Door 1 x 9 x 11 with Clips,16 +25968pr0039,"Minifig Head - Alien/Creature with Large Notched (Dark Pink Inner) Ears, Fur Tufts, and Circular Dark Blue Nose print - Stitch",13 +25972,Hair Swept Back with Slight Widow's Peak and Short Side Burns,13 +25974,"Crown Tiara, 5 Points",27 +25976,Minifig Hair Spiked Front,13 +2598,Windscreen 10 x 10 x 4 Octagonal Canopy,47 +25981,STRING 12M W/ 5.0 HOLDER,24 +2598pr0001,Windscreen 10 x 10 x 4 Canopy Octagonal with TIE Advanced Print [10175],47 +2598ps1,Windscreen 10 x 10 x 4 Octagonal Canopy with TIE Print,47 +25991,Minifig Hair Unkempt with molded Small Dark Red Fez Hat,13 +26016,Sticker Sheet for Set 41176 #1,17 +26019,Sticker Sheet for Set 41176 #2,17 +26026,Minifig Head Modified Cheshire Cat [Plain],24 +26032,Cloth Sail Oval 8 x 18 with Rips and Clamps Print,38 +26034,Cloth Sail Oval 6 x 14 with Rips and Clamps Print,38 +26036,Cloth Sail Oval 4 x 9 with Rips and Clamps Print,38 +26038,Sticker Sheet for 41175-1,17 +26041,Cloth Flag 8 x 4 Wave with Green Pig Face Print,38 +26045,Minifig Bear Hat with Rounded Ears,13 +26047,Plate 1 x 1 Rounded with Handle,9 +26048,"MINI WIG, NO. 123",13 +26058pr0015,"Minifig Hair with Hat Combo, Long Black Hair Over Shoulders, Large Wide Brim Hat with White Plume print",13 +2605c01,Brick Special 1 x 2 x 2 1/3 with Spring Unit,5 +26064,DESIGN ELEMENT 2x6x2.33,24 +26066,Minifigure Fur Collar,13 +2607,Magnet Holder 2 x 3,39 +26073,MINI CONTAINER NO. 1,24 +26077,Costume Tail Imp / Devil,13 +26079,Headgear Hood Cowl Pointed with Eye Holes,27 +2609,Magnet Holder Tile 2 x 2 (Undetermined Type),39 +26090,Dragon Baby [Plain],24 +26090pr0001,Dragon Baby - Miku [41077],28 +26090pr0002,Dragon Baby - Spark [41174],28 +26090pr0003,Dragon Baby - Fledge [41171],28 +26090pr0004,CREATURE NO. 24 NO. 4,28 +26090pr0005,CREATURE NO. 24 NO. 5,28 +26090pr0006,CREATURE NO. 24 NO. 6,28 +2609a,Magnet Holder Tile 2 x 2 - Short Arms,39 +2609b,Magnet Holder Tile 2 x 2 - Tall Arms with Deep Notch,39 +2609c,Magnet Holder Tile 2 x 2 - Tall Arms with Shallow Notch,39 +260pb01,HO Scale VW Beetle [Short Version],50 +2610,Minifig Life Jacket [Old Style],27 +26100pr0112,Minifig Hair Spiked with Light Bluish Gray Highlights/Streakes print,13 +26104,KINGS CAPE NO 1,27 +26112,Minifig Cape Cloth Pointed Collar with 2 Dark Purple and 4 Black Points (Maleficent) [Top with 2 Holes],27 +261.1stk01,Sticker for Set 261-1 - (190085),17 +26138,MINI HELMET NO.100,24 +26139,Minifig Hair Short Wavy with Center Part,13 +2614,Minifig Fishing Rod 12L,27 +26140,ARMOUR NO. 20,27 +26145,Sticker Sheet for 76053,17 +26150,Sticker for Set 76050 - (26150/6145913),17 +26159pr0114,Minifig Hair Female Long with Center Part and Black Ribbon Tied in Bow print (Alice),13 +2617,"Baseplate, Raised Platform 16 x 16 x 2 1/3",1 +2618,Cockpit 10 x 10 x 4 Octagonal,35 +26180pr0002,Minifig Spacesuit with Lime Trim and Colored Buttons (Buzz Lightyear Disney CMF),27 +2619,Monorail Motor Cover,45 +2620,Windscreen 4 x 4 x 3 Canopy,47 +26201,"CAPE, 3 H, 45X29MM",27 +2621,Boat Bow Plate 9 x 10,9 +26213,Minifig Bald Head with Hole in Top and Long Pointed Ears and Gold Earring in Right Ear [Genie],13 +2622,Boat Bow Brick 8 x 10 x 1,6 +26224pr0014,"Minifig Ears Hair Hat Combo, Ears Pointed / Hair Dark Orange Messy / Hat Green Pointed with Red Feather print",13 +2623,Boat Bow Top 8 x 10 x 1,35 +26243,"ROOF, 88X72MM NO.1",38 +26245,TOWEL NO.1,24 +26249,WINDOW 4X3 W/ BOW,24 +2625,Boat Bow Plate 7 x 6 without Stud Notches,49 +2626,Boat Bow Brick 6 x 6 x 1,6 +26269,"LEFT FRONT LEG, CREATURE NO. 42",24 +2627,Boat Bow Top 6 x 6 x 1,35 +26270,"RIGHT FRONT LEG, CREATURE NO. 42",24 +26271,"LEFT BACK LEG, CREATURE NO. 42",24 +26272,"RIGHT BACK LEG, CREATURE NO. 42",24 +26276,"CABIN NO.1 4X4X3 ""NO. 2""",24 +26280,Pneumatic Hand Pump with 1 x 3 Liftarm,22 +26287,Technic Driving Ring Connector Smooth,12 +26288,Pneumatic Pump Large (11L) with 1 x 3 Liftarm,22 +26292,MINI DOLL WIG NO. 2 NO. 1 Beast,13 +26293,Skirt (Full Plain) with Mini Doll Torso Connection - No Hips or Feet,13 +26293pr0001,Skirt Long Full with Bright Light Orange Rose Print (Belle),13 +263,"Plate Special 1 x 2 with Steam Engine Cylinder, Flat Surfaces",36 +26313,Sticker for 70589,17 +26319,Sticker for set 70592 (26319/6147739),17 +26337,ROOF 140X100MM,24 +26341,"WALL ELEMENT 1X4X3, ABS NO. 1",23 +26343,C3-PO HEAD NO. 1003,13 +2634c01,Window 2 x 8 x 2 Boat with Trans-Light Blue Glass,47 +2634c02,Window 2 x 8 x 2 Boat with Trans-Black Glass,47 +2635a,Support Crane Stand Double with Studs on Cross-Brace,34 +2635b,Support Crane Stand Double without Studs on Cross-Brace,34 +2636,Crane Harbor Derrick 16,34 +2637,Technic Link 1 x 16,26 +26371,Pig (Angry Birds) [Plain],24 +26371pr0034,Angry Birds Piggy 1 with Tongue Out Print - Lime Arms - Black Hands,13 +26371pr01,Pilot Pig [75822],28 +26371pr02,Biker Pig [75823],28 +26371pr06,Pirate Pig,13 +26371pr07,King Pig,13 +26371pr08,Chef Pig,13 +26371pr09,Foreman Pig,13 +26371pr10,Laughing Pig,13 +26371pr11,Scared Pig,13 +2638,Crane Harbor Derrick 10 (Top Part),34 +2639,Plate 4 x 4 Corner,14 +26392,FOAL DECO BLACK SPOTS,4 +26393,Red (Angry Birds) [Plain],24 +26393pr01,Red [75822],28 +26393pr02,Red [75823],28 +26393pr05,Red,13 +26393pr06,Red,13 +264,Window 1 x 4 x 5 Curved Top,16 +2641,Support Crane Stand Single,34 +2642,"Baseplate, Raised Platform 16 x 16 x 2 1/3 Ramp",1 +26423,Sticker Sheet for 76052-1,17 +26452pr0001,"Minifig Head with 2 Ears on Top, Yellow Eyes, and Cheshire Cat Grin in Bright Light Pink Muzzle print",13 +26460pr0036,Angry Birds Chuck - Moveable Minifig Arms with molded Feathers,13 +26464pr01,Mighty Eagle,13 +26466,"FOAL W/ HOLE Ø1,5 NO.1 - DEC.4",28 +26467,"FOX W. HOLE Ø1,5 DEC. 3",28 +26474,CREATURE NO. 40 FINAL,24 +2648,Crane Grab Jaw,34 +26483,HAMSTER W/ 1.5 HOLE NO. 3,24 +26486,"CAPE, 3H, 40X44MM, CUT PATTERN 1",27 +2649,Crane Grab Grip,34 +26490,HIP W/SHORTS NO. 4 DEC. 1,13 +26497,CREATURE NO. 38 FINAL,24 +2650,Hook Slider - Arm Base with Three Finger Hinge,18 +2651,Hook Slider - Arm/Hook,34 +26512,Sticker for 42116 (26512/6151405),17 +26518,Sticker Sheet for 41125-1,17 +2653,Brick Special 1 x 4 with Groove,5 +26536,Minifig Hood and Medium Dark Flesh Elf Ears Combo with Hole on Top and Gold Elves Tribal Print,13 +26537,Dragon Head (Elves) Upper Jaw with 3 Studs on Top [Plain],24 +26537pr0001,"Dragon Head Upper Jaw Large, 3 Studs on Top with Dark Azure Eyes, 2 Diamonds and Gold Tribal print (Elves Elandra)",28 +2654,Plate Round 2 x 2 with Rounded Bottom [Boat Stud],21 +26541,Matilda (Angry Birds) [Plain],24 +26541pr01,Matilda [75823],28 +26542,"MINI DOLL WIG, LONG W/EARS NO. 5 NO. 1",27 +26543,"MINI DOLL WIG, HOOD W/EARS NO. 2",13 +26544,"MINI DOLL WIG, HOOD W/EARS NO. 3",13 +2654pb01,Plate Round 2 x 2 with Rounded Bottom and Headlight Print [8422],21 +2654pr0001,Plate Round 2 x 2 with Rounded Bottom [Boat Stud] with Proton Pack Print,21 +2654pr0002,Plate Round 2 x 2 with Rounded Bottom [Boat Stud] with Hamburger Bun Print,21 +2654pr0005,Plate Round 2 x 2 with Rounded Bottom and Face Print [3863],21 +2654pr0006,Plate Round 2 x 2 with Rounded Bottom [Boat Stud] with Gorilla Face Print,9 +2654pr0008,SLIDE SHOE ROUND 2X2 NO.8,21 +2654pr0010,SLIDE SHOE ROUND 2X2 NO. 10,21 +2654pr0011,Plate Round 2 x 2 with Rounded Bottom [Boat Stud] with Ghostbusters Reboot Proton Pack Print,21 +2654pr0013,"SLIDE SHOE ROUND 2X2, NO. 13",21 +2655,"Plate, Round 2 x 2 Thin with Wheel Holder",21 +26552,"HORSE, NO. 6",28 +26556,"Baby / Toddler Head with Black Eyes, White Pupils and Smile Print",13 +26557,NUN HEADGEAR,24 +2655c01,"Plate, Round 2 x 2 Thin with Wheel Holder and Pulley Wheel",24 +26562,Soccer Ball with Black Pentagons Print,27 +26568,"HORSE, NO. 7",28 +26572,"HORSE, NO. 8",28 +26584,"CAPE, 3H, STANDARD",27 +26597,Brick Special 1 x 2 with Vertical Closed Handle End,5 +26599,Plate 2 x 4 Modified - Pin Holes on Bottom Dia. 4.85,9 +265ac01,Electric Lightbrick 2 x 2 Type 1 - 4.5V [Complete],45 +265bc01,Electric Lightbrick 2 x 2 Type 2 - 4.5V [Complete],45 +265pb01,"HO Scale, VW Karmann Ghia",17 +26601,Wedge Plate 2 x 2 Cut Corner,49 +26603,Tile 2 x 3,19 +26603pr0001,Tile 2 x 3 with Cafe Corner Lego Set Box Pattern,10 +26604,Brick Special 1 x 1 with Studs on 2 Adjacent Sides,5 +2661,"Minnie Mouse Figure with Red Dress, Yellow Sleeves, and Red Shoes",4 +2662,Door Frame 2 x 8 x 12 with Hinges,18 +26633,MINI HAT NO. 18,13 +26634,Sticker Sheet for Set 41179-1 26634/6151979,17 +26651,"RIGTH, WING 220X89MM, NO.1",24 +26653,"LEFT, WING 220X89MM, NO.1",24 +26668,Sticker Sheet for 42053-1,17 +26697,Cloth Tuxedo Tails with 4 Holes for Minifig Hips,27 +266ac01,Electric Lightbrick 2 x 2 Type 1 12V (Complete),45 +266bc01,Electric Lightbrick 2 x 2 Type 2 12V with Clear Diffusor,45 +266bc02,Electric Lightbrick 2 x 2 Type 2 12V with Red Diffusor,45 +2670,Monorail Track Straight Short,36 +26701,"Leaf Skirt Cloth Short, 7 Points",27 +2671,Monorail Track Straight Long,36 +2672,Monorail Track Curve Long,36 +26749,Sticker Sheet for 41127-1,17 +26750pr01,"Transparent Plastic Flag, 38x60mm - Dark Purple, Magenta, and Lime Print",38 +26750x2,"Sheet of 2 Plastic Flags, 38x60mm - Dark Purple, Magenta, and Lime Print",38 +26753,"VISOR 3X3X5 W/DIA. 3.2 CONNECTOR, NO. 1",24 +2677,Monorail Track Ramp Lower Part,36 +2678,Monorail Track Ramp Upper Part,36 +26785,Collar Insect with Black Dot Pattern,27 +2680,Support 4 x 4 x 5 Stanchion,34 +26809,"CAPE, 3H, 40X44MM, CUT PATTERN 2",27 +2680b,"Support 4 x 4 x 5 Stanchion, Plain Studs",34 +2681,Support 6 x 6 x 10 Stanchion,34 +268.1stk01,"Sticker for Set 268-1 - Sheet 1, Fireplace Tools (190095)",17 +268.1stk02,"Sticker for Set 268-1 - Sheet 2, Television (190096)",17 +26824,MIN HEAD NO. 1959,13 +26831,"SHELL 4X8X3, W/ 10.2, BALL SNAP",24 +2684c01,Monorail Motor 9V with Undetermined Couplings (Complete Assembly),24 +2684c01a,Monorail Motor 9V with Short Couplings (Complete Assembly),45 +2684c01b,Monorail Motor 9V with Long Couplings (Complete Assembly),45 +2686c01,Monorail Bogey with Bogey Bracket/Pivot,36 +2687,Monorail Base 4 x 20,36 +26871,"CAPE W/ COLLAR, 65,5X41,5X1MM, NO. 2",27 +26884,Plate Special 1 x 2 with Minecraft Horse Head Print,28 +26885,Torso Unkar Plutt,13 +26889,Minifigure Head Reptile with Breathing Apparatus Teedo,13 +268pb01,"HO Scale, Ford Taunus 17M",17 +26904,HEAD Sergeant Jyn Erso,13 +26907,HEAD NO. 8 K-2SO,13 +26911,HEAD Imperial Death Trooper,13 +26933,Minifig Armor Shoulder Pads Rounded with Neck Protection and Clip on Back with Silver SW Imperial Logo print,27 +2694,Windscreen 3 x 10 x 3,47 +2694pr0001,"Windscreen 3 x 10 x 3 with Large Window Left, Small Window Right Print",47 +2694pr0002,"Windscreen 3 x 10 x 3 with Large Window Right, Small Window Left Print [7598]",47 +2695,Wheel 30 x 13 Model Team,29 +2696,Tyre 13 x 24 Model Team,29 +26965,Tile Special 2 x 3 with 2 Clips with Minecraft Face Print[Thick Open O Clips],15 +2698,~Technic Action Figure Body,24 +2698c01,Technic Action Figure Complete Assembly,24 +2698p03,Technic Action Figure Torso with Technic Logo and Gear Print,24 +26990pr0001,MINIHEAD Flaming Skull,13 +26990pr0002,MINI HEAD NO. 40 NO. 2,13 +27,Window 1 x 2 x 1,16 +27017,Minifgure Body and Legs - Killer Croc,13 +27037,"CAPE, MINI FEATHER",27 +27039,Minifig Creature Body - Star on Head - Small Black Eyes and Large Circle Mouth with Teeth print - Lumpy Space Princess,13 +27056,Sticker Sheet for Set 42056,17 +27058,WIG LADY PAGE,13 +2706,"Technic, Figure Foot",24 +27066,Minifig Hair Female - Updo with Tight Curls and Elaborate Braids,24 +2707,Technic Action Figure Head,24 +2707p05,Technic Action Figure Head with Beard Print,24 +2707p06,Technic Action Figure Head with Standard Grin Print,24 +27090,Headgear Helmet SW,27 +27090pr0001,Headgear Helmet SW Hovertank Pilot Pattern,27 +27090pr0002,Headgear Helmet SW Shore Trooper,27 +27091,Sticker Sheet for Set 42055-1,17 +27093,COCKPIT 10X4X3 NO. 6,47 +270c02,Train Base 6 x 12 Type 1 with Wheels and Magnets (Complete),39 +270pb05,HO Scale Bicycle [Touring],50 +270pb06,HO Scale Motorcycle [Touring],50 +270pb07,HO Scale Motorcycle with Sidecar Long [Touring],50 +270pb08,HO Scale Scooter [Touring],50 +2711,"Technic Plate 1 x 5 with Toothed Ends, 2 Studs and Center Axle Hole",26 +2712,Technic Plate Rotor 3 Blade with Toothed Ends and 3 Studs (Propeller),26 +2713,Technic Figure Ski,27 +27130,Headgear Helmet SW Imperial Ground Crew,27 +2714,"Bar 8L - Two Stop Rings / One Pin, Technic Figure Ski Pole [Undetermined End]",24 +27145,Minifig Utility Belt - Fits on Minifig Hip Studs,27 +27146,MINI ACCESSORIES NO. 1,24 +27147,Minifig Collar with Formal Bow Tie,27 +27149,Minifigure Hat,27 +2714a,"Bar 8L - Two Stop Rings / One Pin, Technic Figure Ski Pole [Rounded End]",32 +2714b,"Bar 8L - Two Stop Rings / One Pin, Technic Figure Ski Pole [Flat End]",32 +2715,Technic Figure Helmet,27 +27150,Utensil Umbrella Folded,27 +27151,LEGO Minifigure Equipment Bowtie,27 +2715pb01,Technic Figure Helmet with Green Viper Print [8255],27 +2715pr0003,Technic Figure Helmet with Four Red Lines Print [8457],27 +2715px1,"Technic Figure Helmet with Yellow, Black and Silver Print",27 +2715px2,Technic Figure Helmet with Police Yellow Star on Blue/White Shield,27 +2715px4,Technic Figure Helmet with Flame Print,27 +2716,Technic Figure Helmet Visor,27 +27165,"COCKPIT 4X10X2 1/3, W/ 3.2 SHAFT, NO. 1",24 +27167,"DESIGN, BRICK 4X3X3, W/ 3.2 SHAFT, NO. 1",24 +27168,"DESIGN, BRICK 4X2X3, 5.9 BALL",24 +27169,"MINI, ARMOUR, W/ STUDS, NO. 1",24 +2717,Technic Seat [3 x 2 Base],26 +27170,Gargoyle Six Straight Horns and Ears,13 +27176,Brick 1 x 2 - Small Black Eyes - Green Open Mouth Smile with Teeth,2 +27186,"MINI WIG, NO. 122",13 +2718stk01,Sticker for Set 2718 - Sheet 1 (72614/4117058),17 +2718stk02,Sticker for Set 2718 - Sheet 2 (72543/4116670),17 +2719,Technic Plate 1 x 10 with Toothed Ends,26 +271pb01,HO Scale Accessory Traffic Cone Island,50 +271pb02,HO Scale Accessory Traffic Light,50 +271pb03,HO Scale Accessory Policeman Both Hands Left,50 +271pb04,HO Scale Accessory Policeman Both Hands Out,50 +271pb05,HO Scale Accessory Policeman One Hand Left,50 +271pb06,HO Scale Acessory Policeman One Hand Up,50 +272,Cone 4 x 4 x 3 with Single Solid Stud,20 +2723,Technic Disk 3 x 3,26 +2723pr0001,Technic Disk 3 x 3 with Numbers 1 to 11 Print,26 +2723pr0002,Technic Disk 3 x 3 with Disk Brake Silver Drilled Rotor print,26 +2723pr01,Technic Disk 3 x 3 with 4 Black Sections on One Side and 8 on Reverse Print [Speed Sensor],26 +27254,"ROCK WHEEL, DIA. 62X4 MM",24 +27255,LEGO Rotor with 4.85 Hole (27255),24 +27256,"MINI, ACCESSORY, NO. 1",24 +27257,"SPEAR, NO. 1",24 +27259,"DESIGN, PLATE 4X6, W/ 3.2 SHAFT, NO. 1",24 +27261,"DESIGN, PLATE 2X3, ROCK, NO. 1",24 +27262,"COCKPIT 4X5X1, W/ 3.2 SHAFT, NO. 1",24 +27263,"Tile, Modified 2 x 2 Corner with Cut Corner - Facet",15 +27266,"DESIGN, BRICK 2X2X1, CIRCLE W/ SPIKES",24 +27291,MINI FAN NO. 1,27 +273,Technic Chain Link with Two Studs,26 +2730,Technic Brick 1 x 10 [9 Holes],8 +2731,Train Track 12V Conducting Rail Curved with Connection Wire,36 +2731a,"Train, Track 12V Conducting Rail Curved with Connection Wire and Short Connector",24 +27325,White Fur Collar,27 +27328,LEGO Flexible Ribbed Hose with Blue Center (27328),24 +27329,Hand,24 +27343,"CHEST NO 4, W/BALLSNAP NO. 9",41 +27346,Book Cover with Disney Castle Print,27 +2736,Technic Axle Towball,53 +2737,"Technic, Steering Arm Large",25 +2738,"Technic Steering Arm 6.5 x 2 with Towball Socket Squared, Un-Chamfered",25 +27385,Minifig Hair - Wide Mohawk with Coiled Texture,13 +27393,LEGO Minifigure Shooter with 3.2 Shaft (27393),24 +27405,"SHOULDER SHELL, W / 3.2 CONNECTOR NO. 1",24 +27407,"SHOULDER SHELL, W / 3.2 CONNECTOR NO. 2",24 +27409,JAGGED COLLAR,27 +2740c01,Technic Propeller 3 Blade with 24t Gear [8855 / 5113],26 +2741,Technic Steering Wheel Large,25 +27414,JAGGED CAPE,27 +2743,Technic Slope Short (Wing Front),8 +2744,Technic Slope Long,8 +2745,Technic Cylinder 4 x 4 x 1 2/3 with Axle Holes,35 +2745stor,Storage Bin with Handle and Slots for Six Compartments,17 +2745storc02,Storage Bin with Handle and Six Compartments with Yellow Baseplate Covers,17 +2746,"Container Storage Case Build-N-Store Chest, 3 Section",7 +27478,Minifig Head - Dog Face with Large Black Outlined Eyes - Jake the Dog,13 +27481,Minifig Banana Suit with Banana and Blue Label Print,27 +27505,Book 2 x 3 with Spider Webs and 'Spooky Tales' Print,27 +27507,Tile 4 x 4 Macaroni,15 +2757,"Electric, Plug Holder 4.5V/12V",45 +276c01,Wheelbarrow with 2 Yellow Wheels and Red Axle (Complete),36 +2774,Monorail Track Monoswitch,36 +2775c01,"Electric, Connector, 2 Way Male Squared Wide Short - Complete Assembly",45 +2776c01,Electric Connector - 2 Way Male Squared Narrow Short - Complete Assembly,45 +2780,Technic Pin with Friction Ridges Lengthwise and Center Slots,53 +2790,"Technic, Steering Gear Holder",25 +2791,"Technic, Steering Rack",25 +2791a,Technic Steering Gear Holder,24 +2792,Technic Steering Rack Top - Modified 1 x 8 Technic Plate with Toothed Ends,25 +27925,Tile 2 x 2 Macaroni,19 +27928,"PLATE 2X2, W/ DESIGN",24 +27934,"DESIGN, PLATE, BLADE, 2X13 NO. 1",24 +27938,Technic Worm Gear Short,52 +2793c01,Pneumatic Cylinder with 2 Inlets Medium (48mm) with Black Top,22 +2793c02,Pneumatic Cylinder with 2 Inlets Medium (48mm) with Yellow Top,22 +27940,BEAM 1 with 2 CROSS AXLE [180 DEG],12 +27946,Brick Round 2 x 2 Dome with Imperial Droid Print,20 +27947,Sticker Sheet for Set 71040 - 27947/6159843,17 +27948,ROUND BRICK 2X2X2,24 +27948pr1006,Brick Round 2 x 2 x 2 with Robot Decoration - Bottom Axle Holder 'x' Shape '+' Orientation ,20 +27957,Wings Gargoyle with Red Bones and Lime Pattern,27 +27958,Headgear Gargoyle Horns and Ears with Lime Pattern,27 +27962,Hair Short Combed Sideways Part Right with Silver Streaks Pattern,13 +27965,"FLEX TUBE, 21 MODULE, W/ 3.2 HOLE",24 +27967,Minifig Small Trophy with Black Terrier Dog Print,27 +27976,"SLIDE, STRAIGHT, 4X6X6",24 +27978,HEAD NO. 10,24 +2797c01,Technic Pneumatic Pump New Complete Assembly,22 +2797c02,Pneumatic Pump New Style with Black Top,22 +2797c03,Pneumatic Pump New Style with Yellow Top,22 +27981,Dog Terrier with Black Eyes and Nose and Pink Tongue Print,28 +27985,Baby / Toddler Body with Fixed Arms and Yellow Hands with White Bib with Elephant Print,13 +27987,Penguin with Back Stud with Orange Beak and Feet and White Belly Print,28 +27988,Headgear Mask Imp with Black Devil Horns Pattern,27 +27989,Acoustic Guitar with Black Neck and Silver Strings Print,27 +27991,Headgear Bald Head with Tied Red Bandana Pattern,24 +27992,"Headgear Hood Fur-lined, Short with Blue Hood Pattern",27 +27998,HEAD NO. 12,41 +27999,"HEAD, NO. 13",24 +27ac01,"Window 1 x 2 x 1 (old type) with Extended Lip and Solid Studs, with Fixed Glass",16 +27b,Window 1 x 2 x 1 (old type) with Extended Lip,16 +27bc01,"Window 1 x 2 x 1 (old type) with Extended Lip, with Glass",16 +27c,Window 1 x 2 x 1 Classic with Short Sill No Glass,16 +27c01,Window 1 x 2 x 1 with Glass,16 +2807,Tyre for Bicycle Wheel,29 +28091,Large Figure Pauldron with Imperial Death Trooper Print,41 +281,Window 1.25 x 4 x 3 with Rounded Top,16 +2814,Technic Digger Bucket 8 x 14 with 7 teeth,26 +28144,Hair wig Black and Purple (Two Face),13 +2815,Technic Wedge Belt Wheel Tire,29 +28168pr0001,Minifig Helmet - SW Imperial Death Trooper Print,27 +2817,Plate Special 2 x 2 with 2 Pin Holes,9 +28186,K2-SO4 Body and Head,13 +2819,Technic Steering Wheel Small (3 Studs Diameter),25 +28192,Slope 45° 2 x 1 with 2/3 Inverted Cutout and no stud,3 +28193,"Minifig Penguin Mask with White Face, Black Eyes and Orange Beak Print",13 +28211,LONG SKIRT NO. 2,27 +28212,Sticker Sheet for Set 75120-1 28212/6161276,17 +28216,Shovel 7 x 10 x 5 with 4.85 Hole,26 +28220,"SHELL W/ 3.2 SHAFT, NO. 11",24 +28220pr0001,Large Figure Armor Plate Small with Mechanical Print,13 +28220pr0002,Large Figure Armor Plate Small with Print,13 +28222,"WEAPON W/ CROSS AXLE, NO. 3",24 +28223,"PONCHO, NO. 3",27 +28228,"Headgear Cap, Neck Protector with Medium Dark Flesh Pattern (SW Pao)",13 +2823,Technic Forklift Fork,34 +2825,Technic Beam 1 x 4 Thin with Stud Connector,51 +28251,"RIGHT CREATURE ARM, NO. 1",13 +28252,"LEFT CREATURE ARM, NO. 1",13 +2826,Windscreen 5 x 8 x 3,47 +28271,Minifig Hair/Hat Combo - Soft Folded Brim Hat over Dark Brown Bob Cut Hair,13 +28301,Minifig Head Alien/Creature - E. T. with Wide Medium Blue Eyes and Dark Brown Closed Smile print,13 +28317,Minifig Head Modified - Sonic the Hedgehog with Green Eyes - Tan Face and Ears - Black Nose and Half Smile print,13 +28321,"Mini Doll, Hair Long, Parted in Front and Swept Back Over Shoulders",13 +28324,"Chassis 6X12, No. 1",36 +28326,"Mudguard 3X4, W/ Plate, No. 1",36 +28327,Door Frame 4 x 4 x 6 Corner,16 +28350,"MINI ARMOUR, NO. 2",24 +28362,MINI HELMET NO. 107,27 +28373,Rocky Wing with Smooth Trans-Light Blue Membranes Pattern,13 +28376,"MINI LEG PART, NO. 1",24 +28382,"Minifig Head - Alien/Creature with White Mohawk - Tan Ears, Spots and Teeth - Red Eyes - Gremlin",13 +28387,"LEFT, SLIDE, 6X6X6",24 +2838c01,Electric Motor 9V 5 x 4 x 2 1/3,45 +28408,Minifig Head - Alien/Creature with Light Flesh Ears and Face - Dark Brown Eyes - White Fur on Head and Around Right Eye print - Gremlin Mogwai ,13 +2840c01,Technic Control Center I,45 +2840c02,Technic Control Center II,45 +28420,Hair Wig bobline,13 +28432pr0001,Hair Female Long Wavy with Ponytail and Silver hairband,13 +28432pr0002,Hair Wig with ponytail and gold band,13 +28440,"SHELL T 5X10X3, W/ 10.2 BALL SNAP 1",24 +28466,"LEFT, STAIRCASE 6X6X4",24 +2847c01,9V Battery Box 4 x 14 x 4 with Dark Gray Base Complete Assembly,45 +2847c02,Electric 9V Battery Box 4 x 14 x 4 with Yellow Base Complete Assembly,45 +2847c03,Electric 9V Battery Box 4 x 14 x 4 with Dark Bluish Gray Base Complete Assembly,45 +2850a,Technic Engine Cylinder with Side Slots,25 +2850b,"Technic Engine Cylinder without Side Slots, with Bottom Slots",25 +2851,Technic Engine Piston Round,25 +2852,Technic Engine Connecting Rod,25 +2853,Technic Engine Crankshaft,25 +2854,Technic Engine Crankshaft Center,25 +2855,Technic Turntable Large Type 1 Top,26 +28551,Joker Hair,13 +28555,LIGHTENING BOLT CO-INJ.,24 +2856,Technic Turntable Large Type 1 Base,26 +2856c01,Technic Turntable Large Type 1 [Complete Assembly],26 +2856c02,Technic Turntable Large Type 1 with Trans-Clear Top [Complete Assembly],26 +2856c03,"Technic Turntable Large Type 1, Complete Assembly with Light Bluish Gray Top",26 +2857,Tyre 20 x 30 Solid Balloon,29 +28581,Headgear Helmet SW Rebel Trooper with Dark Green Top and Yellow Insignia Pattern,27 +28583,"Hair Combo, Hat with Hair, Flat Silver Headset and Dark Brown Hair Pattern (SW Jyn Erso)",13 +28587,Weapon Ninjago Time Blade with Trans-Bright Green Claws and Blades Pattern,27 +28588,SNAKE W/ 3.2 SHAFT NO. 1,24 +28591,POP SKIRT,24 +28598,"DESIGN, BRICK 2X2X3, NO. 1",24 +28626,PL.ROUND 1X1 W. THROUGHG. HOLE,24 +28628,Minifig Necklace (Two on Sprue),27 +28628a,Minifig Necklace,27 +28644,Legs Short with Orange Toes Print,13 +28652,ICE SAW,24 +2866,Train Ground Throw / Track Switch 9V,36 +28660,"ARM, NO. 1",24 +2868,Train Speed Regulator 9V - Underside,24 +2868b,"Electric, Train Speed Regulator 9V",45 +28699,CHEST LID 2X4,24 +28705,"MINI DOLL, WIG, WAVY, NO. 5",13 +2871,Train Motor Decorative Side [Undetermined Hub Points],24 +2871a,Train Motor Decorative Side with Closed Hub Points (for 9V Train Motor),36 +2871b,Train Motor Decorative Side with Open Hub Points (for RC Train Motor),36 +2873,Hinge Train Gate 2 x 4,18 +2874,Door Sliding - Type 2,16 +2875,Slope 45° 2 x 6 x 2/3,3 +2876,Slope 45° 6 x 6 Double / 33° [aka Train Roof End],6 +28768,LEGO Minifigure Hair (28551 / 28768),27 +2877,Brick Special 1 x 2 with Grill,5 +28777,Batgirl's mask,27 +28778,Batgirl's hair,13 +28779,Rudder No. 1,35 +2878,"Train Wheel RC Train, Holder",36 +28782,LEGO Windscreen 6 x 6 x 2 (28782),24 +2878c01,"Train Wheel Pair, Complete Assembly",36 +2879,Train Wheel,29 +28791,"MINI EQUIPMENT, NO. 2",24 +28795,"MINI, HELMET, NO. 107, NO. 1",24 +28798,"MINI WIG, NO. 114",27 +2880,Hinge Bar 2.5L with 2 and 3 Fingers on Ends (Pantograph Shoe Holder),18 +28803,ARMOR FOR HAND W/Ø 3.2 SHAFT,24 +28809,"PLATE 1x2 W. HORIZONTAL HOLE Ø4,85 REV.",9 +2881,Hinge Train Pantograph Shoe,36 +28821,Large Figure Plastic Waist Guard with 4 Holes - Tan and Reddish Brown SW Shoretrooper,41 +28823,JESTER NO. 5,24 +28824,WRAP SKIRT NO.2,24 +28825,"CAPE, 1 H,22X50MM",24 +28830,CONICAL WHEEL BLOCK 4X4,24 +28839,SCORPION,24 +28841,FROG,24 +28847,"MINI, HELMET, NO. 107, NO. 2",24 +28849,CREATURE with movable arms - 1.5 HOLE in back of head - Varied Goblin Tunic and Belt,57 +28849pr0041,Goblin - Magenta Hair and Tunic - Brown Belt with Pouch and Candy Bar (Roblin) Print - (movable arms - 1.5 HOLE in back of head),57 +28849pr0042,Goblin - Orange Hair and Tunic - Brown Belt with Silver Chain and Hook (Barblin) Print - (movable arms - 1.5 HOLE in back of head),57 +28849pr0043,Goblin - Red Hair and Tunic - Brown Belt with Crystals and Vial (Jimblin with Frown) Print - (movable arms - 1.5 HOLE in back of head),57 +28849pr0044,Goblin - Dark Blue Hair and Tunic - Brown Belt with Scroll and Rope Print (Dukelin with Eyepatch and Open Mouth missing 1 Tooth) - (movable arms - 1.5 H0le in back of head),57 +28849pr0045,Goblin - Orange Hair and Tunic - Brown Belt with Drumsticks and folded Music Print (Beiblin with Right Side Open Mouth Smile) - (movable arms - 1.5 H0le in back of head),57 +28849pr0046,Goblin - Magenta Hair and Tunic with Chain Mail - Brown Belt with Knife in Sheath and Key on Ring (Smilin with 2 Fangs) Print - (movable arms - 1.5 HOLE in back of head),57 +28849pr0047,Goblin - Dark Purple Hair and Tunic - Brown Belt with Hammer and Nails Print (Fibblin with Dark Purple Open Mouth with 2 Fangs) - (movable arms - 1.5 H0le in back of head),57 +28849pr0048,"CREATURE, W/ 1.5 HOLE, NO. 48",13 +28849pr0049,"Creature, W/ 1.5 Hole, No. 49 Guxlin",13 +28854,"CHEST NO. 4, W/ BALL SNAP, NO. 30",24 +28870,Ornament with Bar,32 +28876,"SAIL, 152X79 MM",24 +28882,"SHELL A,4 M,BALL SNAP,DIA. 10.2,NO. 40",41 +28884,"RAMP, 127X111 MM, NO. 2",24 +28886,"SHELL A,6 M,BALL SNAP,DIA.10.2,NO. 20",24 +2889,Monorail Track Point Right,36 +28895,"SAIL 102X160 MM, NO.2",24 +28896,"RAMP, 127X111 MM, NO. 3",24 +28897,"LEG SHELL, W/ BALL SNAP, NO. 1",41 +2890,Monorail Track Point Left,36 +28907,Cape Super Hero Girls with 1 Hole,27 +2891,Monorail Track Curve Short Right,36 +28910,Wing - 30 x 40 mm - Transparent All-Black print (Batgirl),27 +28917,BRICK 1X1 W. HANDLE,24 +2892,Monorail Track Curve Short Left,36 +28920,MIXER TAP,24 +28925,Boat 8X16X3,35 +28929,"Trainfront 2X4, "No. 1"",4 +28959,ELEPHANT TAIL/TRUNK,28 +28962,Sticker Sheet for Set 60135 - 28962/6170610,17 +28965,Minifig Cape Cloth - Reversible Colors Red and Dark Purple - Long with 2 Top Holes and Points at Bottom,27 +28978,ANGLE BEAM 4X6,24 +28979,ANCHOR WITH KNOB,24 +28981,"HAMMOCK, NO. 1",24 +29,Window 1 x 1 x 2,16 +2900,Technic Flex Cable End with Pin Connection [Old Style - No Clamp],26 +29008,Sticker Sheet for Set 41307 - (29008/6170883),17 +2901,Technic Flex Cable End - Ball Connection [No Cage or Clamp],26 +29017,LEGO Lobster with Black Eyes with White Pupils Decoration (29017),28 +2902,Tyre 81.6 x 15 Motorcycle,29 +29028,Batgirl's cape ,13 +2903,Wheel 81.6 x 15 Motorcycle,29 +29035pr2051,Minifig Head Creature - SW Gigoran - Printed Eyes,13 +2903c01,"Wheel 81.6 x 15 Motorcycle, with Black Tire 81.6 x 15 Motorcycle (2903 / 2902)",29 +2904,Technic Motorcycle Pivot,25 +29041,Sticker Sheet for Set 42057 - 29041/6171760,17 +29047,"BRICK, BOW 2X3X1, NO. 1",24 +2905,Technic Beam Triangle Thin [Type I],51 +29050,"MINI HELMET, NO. 124 - Plain (Iron Man Head Shape)",24 +29050pr0001,Minifig Helmet - Iron Man Head Shape and Yellow Face with White Rectangular Eyes and Clenched Teeth in Wide Mouth Print,27 +29053,"WING 85X45 MM, NO.1",24 +29059,"FLAT TILE 2X2, NO. 311",24 +2906,Technic Propeller 4 Blade 7 Stud Diameter with Square Ends,26 +29063,"FLAT TILE 2X2, NO. 313",24 +2907,Technic Ball with Grooves,52 +2908,Technic Helicopter Rotor Holder,26 +2909,"Technic Shock Absorber 9.5L, Cylinder",25 +2909c01,Technic Shock Absorber 9.5L [Undetermined Spring Type],25 +2909c02,Technic Shock Absorber 9.5L with Hard Spring,25 +2909c03,Technic Shock Absorber 9.5L with Soft Spring,25 +29100,SHOULDER SHELL W.3.20 CONNECTOR NO. 10,24 +29109,"SWORD, NO. 12",24 +29110,KAYAK 2X15,24 +29111,Spider with Elongated Tail Section,28 +29112,"Venus Flytrap Shell 5 X 6 - Red Leaf 'Fingers' and 4,85 Hole",28 +29114,"PLANE FRONT, 6X6X4 W/ 3.2 SHAFT",24 +29115,"ROOF TILE 6X6X1, INV. DEG. 45/18",24 +29117,HUB CAB DIA. 15 NO.1,24 +29119,"RIGHT PLATE 1X2, W/ BOW, 45 DEG. CUT",9 +29120,"LEFT PLATE 1X2, W/ BOW, 45 DEG. CUT",24 +29121,"CAT, W/ 1.5 HOLE NO. 3",24 +29122,"Cat, No. 3",28 +2912stk01,Sticker for Set 2912 - (22990/4141919),17 +2913c01,"Electric, Train Track Contact Base with Wire (97 cm) and Connector, Complete Assembly",45 +2913c02,"Electric, Train Track Contact Base with Wire (97 cm) and Connector with Cap, Complete Assembly",45 +2913cx1,Electric Train Track Contact Base with White Wire (97 cm),45 +29155,Headgear Nemes Egyptian Farao,27 +29156,"ROOF TILE 4X2 W/ ANGLE, NO. 1",24 +2916,Train Front Sloping Base,36 +29161,Flipper,27 +2917,Train Front Sloping Top,36 +29170,CAVITY W. LEADS,24 +29171,DIADEM,24 +29179,MINI COSTUME Shark,27 +2918,Glass for Train Front Sloping Top,47 +2919,"Electric, Train Light Prism 1 x 4",45 +2920,Train Coupling New,39 +2921,Brick Special 1 x 1 with Handle,5 +29219,"TUBE, W/ DOUBLE 4.85 HOLE",24 +2922,Hinge Train Pantograph Shoe Locking with 2 Fingers,36 +29222,LEGO Electric ML Model Guitar with Flat Silver Body and Silver Strings Decoration (29222),27 +29227,Minifig Wings Friends - Orange Bumblebee Wing Lines over Trans-Yellow Background print,27 +2924,Train Front [Undetermined Cutout Size],24 +29249,Skirt Tail,27 +2924a,Train Front with 1 x 4 x 3 Cutout,36 +2924b,Train Front with 1 x 4 x 2 Cutout,36 +2926,Plate Special 1 x 4 with Wheels Holder,9 +29267pr0109,Minifig Helmet with molded Trans-Yellow Visor - Wide Black Band with Yellow Rebel Insignia on Front Print - SW U-Wing Pilot,27 +2927,Train Wheel Small,29 +29272,"FIGURE, NO. 5",24 +2928,"Electric, Train Light Prism 1 x 4 Holder",45 +29282pr2093,Minifig Head - Mon Calamari with Tan Dewlap (Admiral Raddus),13 +29292,Catwoman's mask,13 +29309,"MINI VISOR, NO. 3",24 +29310,"FLAT TILE 1X1, NO. 169",24 +29338pr0001,COLLAR TOP W/ SLITS NO.2,27 +29346pr0001,"CAPE, SLITS NO.2",27 +29356,"MINI DOLL, WIG, STRAIGHT, W/ EARS, NO. 1 Batgirl",13 +29380,GLOBE W. 3.2 STICK,24 +29384,Robin's hair,13 +29397,Minifig Hair - Front Bangs Short on Top of Longer Sides - 2 Back Ponytails with Blue Streak on Right and Red Streak on Left,13 +29399,Minifig Head Friends - Female with Small Mask over Light Blue Eyes - Open Smile with Red Lips,13 +29413,Minifig Head Friends Male with Right Eyebrow arched higher than the Left - Blue Eyes - Open Smile with Teeth,13 +29421,Sticker for Set 75168,17 +29435,"Mini Doll, Wig, Straight, No. 4",13 +29446,LEGO Dog with 1.5 Hole (29446),24 +29450,MINI HELMET NO. 127,24 +29453,Minifig Cape Short - Shiny Satin Cloth/Fabric (Robin),13 +29457,"HEAD NO. 1, NO. 2",24 +29460,"MINI ARMOUR, NO. 2",24 +29461,"BODY NO. 1, NO. 2",24 +29463,"CAPE, CURVE NO.1",24 +29478,"MINI DOLL, WIG, NO. 9",24 +29493,"FLAT TILE 2X2, ROUND, NO. 1064",24 +29497,"WINGS, 88X120, NO. 1",24 +2949stk01,Sticker for Set 2949 - (22993/4141922),17 +2950,Technic Digger Bucket 4 x 4 x 9 with 3 teeth,26 +2951,Technic Digger Bucket 8 x 10,26 +2952,Propeller 2 Blade 9 Diameter,35 +2954,"Electric, Control Lab",45 +29540,"Brick, Soft 2 x 2",11 +29540pb01,"Brick, Soft 2 x 2 with Eye Print",2 +29541,"Brick, Soft 2 x 4",2 +29541pb01,"Brick, Soft 2 x 4 with Smile Print",2 +29553,Minifig Hair Friends - Long with Curls Falling over Shoulder and Bright Light Orange Ribbon print,13 +29555,"Mini Doll, Head, No. 106",13 +29560,"MINI DOLL, WIG, WAVY, NO. 6",13 +29575pat03,MINI COSTUME NO. 3 Corn Cob,27 +29583,Sticker for Set 60150,17 +2958pb028,Technic Disk 3 x 3 with Viking Shield Black / Red Section and Black Serpent Print (Sticker),26 +2958pb029,Technic Disk 3 x 3 with Viking Shield Black Curly / Blue Print (Sticker),26 +2959,Ferrite Core Cover,24 +29601,WEAPON retro scifi ray gun,27 +2961,"Duplo, Train Passenger Locomotive Base",4 +29618,"MINI HELMET, NO. 129",27 +2961b,"Duplo, Train Locomotive Base with Battery Compartment",4 +2962,"Duplo, Train Passenger Locomotive Base Battery Case Lid",4 +2962stk01,Sticker for Set 2962 - (72803/4119090),17 +29633,"MINI WIG, NO. 153",24 +29634,"MINI WIG, NO. 154",13 +29635,"Minifig Serving Tray aka KITCHEN EQUIPMENT, NO. 3",27 +29636,"Minifig Whisk aka KITCHEN EQUIPMENT, NO. 2",27 +2964stk01,Sticker for Set 2964,17 +2965stk01,Sticker for Set 2965,17 +29666,"WALL ELEMENT 1X4X3, NO.1",24 +29695,"FLAT TILE 2X2, NO. 319",24 +29709,Wig Hair short with goggles big eyes Robin,13 +29710,"PLATE, W/ BOW 2X4X2/3, NO. 8",24 +2972,Train Base 6 x 34 Split-Level with Bottom Tubes,36 +29721,DOG with Hole on top of Head and Blue Eyes - Stylized Red 'S' on Yellow Background print on Chest - Red Collar and Cape (Krypto Super Hero Girls),28 +29723,"MINI DOLL, WIG, NO. 12",13 +29730,"HORSE,W/ 4 KNOBS,W/ HOLE DIA. 1.5,NO. 9",24 +29742,LEGO Minifigure Batman Cowl with Blue Swimming Goggles Decoration (29742),27 +2974c01,Electric Touch Sensor - Fixed Lead,45 +29752,"MINI EQUIPMENT, NO. 4",27 +29769,"PIG, W/ 1.5 HOLE, NO. 2",24 +29770,"MINI WIG, NO. 156",27 +29773,Sticker Sheet for Set 41311 - (29773/6175463),17 +29779,"CREATURE, W/ 1.5 HOLE, NO. 39",24 +2977c01,Electric Rotation Sensor,45 +29780,Minifgure Body and Legs Maui,13 +29787,"RIGHT CREATURE ARM, NO. 5",24 +29789,"LEFT CREATURE ARM, NO. 5",24 +297stk01,Sticker for Set 297 - (4601),17 +2980c01,Electric Temperature Sensor - Short Lead,45 +29819,"MINI HELMET, NO. 130",27 +29822,"MINI HELMET, NO. 131",27 +2982c01,Electric Light Sensor with Non-Removable Lead,45 +2983,Electric 9V Micromotor Pulley,45 +2984,Electric Motor 9V Micromotor 2 x 2 Cover,45 +2985,Electric Motor 9V Micromotor 2 x 2 Base,45 +2986,Electric Motor 9V Micromotor 2 x 2,45 +29862,Brick 1 x 2 x 2 with Stylised Yellow Submarine Control Panel Print,2 +29863,Brick 1 x 2 x 2 with Stylised Yellow Submarine Screen Print,2 +29877,Sticker for 42061 (29877/6176293),17 +29889,"PLATE 8X16X6.4 MM, W/ WING, NO. 2",24 +2989,Technic Brick 1 x 4 with Bumper Holder,26 +298c01,Lever Small Base with Yellow Lever,32 +298c02,Lever Small Base with Black Lever,32 +298c03,Lever Small Base with Light Gray Lever,32 +298c04,Lever Small Base with White Lever,32 +298c05,Lever Small Base with Light Bluish Gray Lever,32 +299,Screwdriver with Old LEGO Logo [Metal],56 +29906,"MINI HAT, W/ 1.5 SHAFT, NO. 2",27 +2991,Technic Brick 1 x 2 - 1 x 2 Angled with Bumper Holder [Closed Front],26 +29918,"ANIMAL HEAD, NO. 19",24 +2991b,"Technic, Brick 1 x 2 - 1 x 2 Angled with Bumper Holder [Open Front]",8 +29924,"MINI WIG, LONG CURLY, NO. 2",24 +29927,LEGO Minifigure Hair with Light Gray Temples Decoration (29927),24 +29932,Green Hulk Body and Legs,13 +29936,red Hulk body and legs,13 +2994,Wheel 30.4 x 14 VR,29 +29949,"LEFT CREATURE ARM, NO. 6",24 +2994c01,"Wheel 30.4 x 14 VR, with Black Tire 30.4 x 14 VR Balloon (2994 / 6578)",29 +2995,Tyre 68.8 x 40 Balloon Large,29 +29952,"RIGHT CREATURE ARM, NO. 6",24 +29959,Killer Croc body and legs,13 +2996,Wheel 68.8 x 40 Balloon Large,29 +2997,Tyre 81.6 x 34 ZR Technic Straight Tread,29 +29978,CANNON,24 +2998,Wheel 81.6 x 34 Six Spoke,29 +2998c01,"Wheel 81.6 x 34, with Black Tire 81.6 x 34 Technic (2998 / 2997)",29 +2999,Technic Steering Wheel Hub Large,25 +29a,"Window 1 x 1 x 2 (old type) with Extended Lip and Solid Stud, no Glass",16 +29ac01,"Window 1 x 1 x 2 (old type) with Extended Lip and Solid Stud, with Fixed Glass",16 +29b,"Window 1 x 1 x 2 (old type) with Extended Lip, no Glass",16 +29bc01,"Window 1 x 1 x 2 (old type) with Extended Lip, with Glass",16 +29c,Window 1 x 1 x 2 Classic with Short Sill,16 +29c01,Window 1 x 1 x 2 with Glass,16 +3,Homemaker Drawer 4 x 4 x 2,7 +30000,Brick Special 2 x 2 with 2 Pins and Axle Hole,5 +3001,Brick 2 x 4,11 +30013,LEGO Dog with Hole Dia. 1.5 (30013),24 +30014,Arm Holder Brick 1 x 2 with 2 Horizontal Fingers,18 +30016,"Belville Wall, Lattice 6 x 6 x 12 Corner",42 +30018,Bathtub 6 x 12,7 +3001a,Brick 2 x 4 without Cross Supports,11 +3001apb01,Brick 2 x 4 with 4 Plane Windows in Thin Red Stripe Print,2 +3001apb02,Brick 2 x 4 with Red 'SHELL' Print,2 +3001apb03,Brick 2 x 4 with Plane Windows 8 in Thin Blue Stripe Print,2 +3001apb04,Brick 2 x 4 with Plane Windows 8 in Thin Red Stripe Print,2 +3001apb05,Brick 2 x 4 with Plane Windows 8 in Thick Red Stripe Print,2 +3001apb06,Brick 2 x 4 with Air Canada Maple Leaf Logo Print,2 +3001b,"Brick 2 x 4 without Cross Supports, with Hole in Top",11 +3001c,Brick 2 x 4 without Bottom Tubes,11 +3001mib,Minitalia Brick 2 x 4 with Bottom Tubes,11 +3001p01,Brick 2 x 4 with Three Black Squares Print,2 +3001p02,Brick 2 x 4 with Red Stripe and 4 Black Windows Print,2 +3001p03,Brick 2 x 4 with Blue Stripe and 8 Black Windows Print,2 +3001p04,Brick 2 x 4 with Red Stripe and 8 Black Windows Print,2 +3001p05,Brick 2 x 4 with Black Random Spots Print,2 +3001p06,Brick 2 x 4 with White Diagonal Stripes Print on Both Sides,2 +3001p07,Brick 2 x 4 with Red Diagonal Stripes Print,2 +3001p08,Brick 2 x 4 with Wavy Mouth and Eyes Print,2 +3001p09,Brick 2 x 4 with Eyes and Bushy Eyebrows Print,2 +3001p0a,"Brick 2 x 4 with Snout, Fangs, and Whiskers Print",2 +3001p0b,Brick 2 x 4 with Wavy Mouth and Fangs Print,2 +3001p0c,Brick 2 x 4 with Smiling Face with Fangs Print [2759],2 +3001p0d,Brick 2 x 4 with Angled Red Stripes Between Two Horizontal Red Stripes Print,2 +3001p10,"Brick 2 x 4 with Car Grille (2 Circles, 2 Lines) Black Print",2 +3001p11,Brick 2 x 4 with Yellow Car Grille Print,2 +3001p17,Brick 2 x 4 with White Cross Print,2 +3001pb042,Brick 2 x 4 with Gold Holly and '1' Print,2 +3001pb043,Brick 2 x 4 with Gold Holly and '2' Print,2 +3001pb044,Brick 2 x 4 with Gold Holly and '3' Print,2 +3001pb045,Brick 2 x 4 with Gold Holly and '4' Print,2 +3001pb046,Brick 2 x 4 with Gold Holly and '5' Print,2 +3001pb047,Brick 2 x 4 with Gold Holly and '6' Print,2 +3001pb048,Brick 2 x 4 with Gold Holly and '7' Print,2 +3001pb049,Brick 2 x 4 with Gold Holly and '8' Print,2 +3001pb050,Brick 2 x 4 with Gold Holly and '9' Print,2 +3001pb051,Brick 2 x 4 with Gold Holly and '10' Print,2 +3001pb052,Brick 2 x 4 with Gold Holly and '11' Print,2 +3001pb053,Brick 2 x 4 with Gold Holly and '12' Print,2 +3001pb054,Brick 2 x 4 with Gold Holly and '13' Print,2 +3001pb055,Brick 2 x 4 with Gold Holly and '14' Print,2 +3001pb056,Brick 2 x 4 with Gold Holly and '15' Print,2 +3001pb057,Brick 2 x 4 with Gold Holly and '16' Print,2 +3001pb058,Brick 2 x 4 with Gold Holly and '17' Print,2 +3001pb059,Brick 2 x 4 with Gold Holly and '18' Print,2 +3001pb060,Brick 2 x 4 with Gold Holly and '19' Print,2 +3001pb061,Brick 2 x 4 with Gold Holly and '20' Print,2 +3001pb062,Brick 2 x 4 with Gold Holly and '21' Print,2 +3001pb063,Brick 2 x 4 with Gold Holly and '22' Print,2 +3001pb064,Brick 2 x 4 with Gold Holly and '23' Print,2 +3001pb065,Brick 2 x 4 with Gold Holly and '24' Print,2 +3001ph0,Brick 2 x 4 with 'KNIGHT BUS' Print,2 +3001pr0002,Brick 2 x 4 with 'TOW MATER' on Sand Green Background Print,2 +3001pr0119,"Brick 2 x 4 with Peace Symbol, Road, and Flowers Print",2 +3001pr1,Brick 2 x 4 with Smile and Frown Print on Opposite Sides,2 +3001pt0,Brick 2 x 4 with Black '390' Print,2 +3001pt1,Brick 2 x 4 with SHELL Print classic,11 +3001pt2,Brick 2 x 4 with White 'POLICE' Thin Print,2 +3002,Brick 2 x 3,11 +30022,"Vehicle, Tipper End Flat without Pins",36 +30027,Wheel 8 x 9 [Undetermined Hole Type],29 +30027a,Wheel 8 x 9 with Round Hole for Wheel Holder Pin,29 +30027b,Wheel 8 x 9 with Hole Notched for Wheels Holder Pin,29 +30028,Tyre 14 x 9 Smooth Small Wide Slick,29 +30029,Vehicle Base 4 x 10 x 2/3 with 4 x 2 Recessed Center with Smooth Underside,36 +3002a,Brick 2 x 3 without Cross Supports,11 +3002apb04,Brick 2 x 3 with White 'TAXI' Sans-Serif Print,2 +3002apb05,Brick 2 x 3 with Black 'POLICE' Sans-Serif Print,2 +3002apb06,Brick 2 x 3 with Black 'POLICE' Serif Bold Print (Embossed),2 +3002apb08,Brick 2 x 3 with White 'TAXI' Serif Print,2 +3002b,Brick 2 x 3 without Bottom Tubes,11 +3003,Brick 2 x 2,11 +30030,Baseplate 32 x 32 Racing,1 +30030p01,Baseplate 32 x 32 with Racing Print,1 +30031,Minifig Handlebars,36 +30032,Horse [Pony],28 +30033,Plate Special 2 x 2 with Bar Frame Octagonal,9 +30034,Panel 3 x 5 Solar/Clip-On/Deltoid,23 +30035,Minifig Space Scanner,27 +30036,Wedge Plate 8 x 6 x 2/3 with Grille,9 +30037,Wing Plate Bi-level 12 x 9 (Exploriens),49 +30038,Minifig Helmet Underwater with Hose,27 +3003a,Brick 2 x 2 without Bottom Tubes,11 +3003mib,Minitalia Brick 2 x 2 with Bottom Tube,11 +3003p01,"Brick 2 x 2 with Black ""1"" Print",2 +3003p02,"Brick 2 x 2 with Black ""2"" Print",2 +3003p03,Brick 2 x 2 with Black '3' Print,2 +3003p04,"Brick 2 x 2 with Black ""4"" Print",2 +3003p05,"Brick 2 x 2 with Black ""5"" Print",2 +3003p06,"Brick 2 x 2 with Black ""6"" Print",2 +3003p07,"Brick 2 x 2 with Black ""7"" Print",2 +3003p08,"Brick 2 x 2 with Black ""8"" Print",2 +3003p09,"Brick 2 x 2 with Black ""9"" Print",2 +3003p10,"Brick 2 x 2 with Black ""10"" Print",2 +3003p11,"Brick 2 x 2 with Black ""11"" Print",2 +3003p12,"Brick 2 x 2 with Black ""12"" Print",2 +3003p13,"Brick 2 x 2 with Black ""13"" Print",2 +3003p14,"Brick 2 x 2 with Black ""14"" Print",2 +3003p15,"Brick 2 x 2 with Black ""15"" Print",2 +3003p16,"Brick 2 x 2 with Black ""16"" Print",2 +3003p17,"Brick 2 x 2 with Black ""17"" Print",2 +3003p18,"Brick 2 x 2 with Black ""18"" Print",2 +3003p19,"Brick 2 x 2 with Black ""19"" Print",2 +3003p20,"Brick 2 x 2 with Black ""20"" Print",2 +3003p21,"Brick 2 x 2 with Black ""21"" Print",2 +3003p22,"Brick 2 x 2 with Black ""22"" Print",2 +3003p23,"Brick 2 x 2 with Black ""23"" Print",2 +3003p24,"Brick 2 x 2 with Black ""24"" Print",2 +3003p25,"Brick 2 x 2 with Black ""25"" Print",2 +3003p26,"Brick 2 x 2 with Black ""26"" Print",2 +3003p27,"Brick 2 x 2 with Black ""27"" Print",2 +3003p28,"Brick 2 x 2 with Black ""28"" Print",2 +3003p29,"Brick 2 x 2 with Black ""29"" Print",2 +3003p30,"Brick 2 x 2 with Black ""30"" Print",2 +3003p31,"Brick 2 x 2 with Black ""31"" Print",2 +3003pb001,Brick 2 x 2 with Lego Logo Old Style Black Outline Print,2 +3003pb009,Brick 2 x 2 with Lego Logo Old Style White without Black Outline Print,2 +3003pb010,"Brick 2 x 2 with Eye without White Print on Two Sides, Centered",2 +3003pb066,Brick 2 x 2 with Black 'SUN' Print,2 +3003pb067,Brick 2 x 2 with Black 'MON' Print,2 +3003pb068,Brick 2 x 2 with Black 'TUE' Print,2 +3003pb069,Brick 2 x 2 with Black 'WED' Print,2 +3003pb070,Brick 2 x 2 with Black 'THU' Print,2 +3003pb071,Brick 2 x 2 with Black 'FRI' Print,2 +3003pb072,Brick 2 x 2 with Black 'SAT' Print,2 +3003pd0,Brick 2 x 2 with Gray Squares on 2 Sides Print,2 +3003pe0,Brick 2 x 2 with Mail Envelope Print,2 +3003pe1,"Brick 2 x 2 with Eye [No Pupils] Print on Two Sides, Offset",2 +3003pe2,"Brick 2 x 2 with Eye with White Print on Two Sides, Offset",2 +3003pe3,Brick 2 x 2 with Eye with Highlight Print on Both Sides,2 +3003pe4,Brick 2 x 2 with Red Dot on One Side Print,2 +3003pe5,Brick 2 x 2 with Blue Dot on One Side Print,2 +3003pr0001,"Brick 2 x 2 with Eye with White Print on Two Sides, White Circle in Pupil, Offset",2 +3003pr0002,"Brick 2 x 2 with Eye without White Print on Two Sides, Circle in Pupil, Offset",2 +3003pr0003,Brick 2 x 2 with Yellow '1' and Fancy Outline Print on Both Sides,2 +3003pr0004,"BRICK 2X2, NO. 104 Horseshoe Number 1",2 +3003pr0005,"BRICK 2X2, Horseshoe Number 2",2 +3003pr0032,Brick 2 x 2 with Two Black Rectangles Print [Orange],2 +3003pr0033,Brick 2 x 2 with Two Black Rectangles Print [White],2 +3003pr0035,Brick 2 x 2 with Light Bluish Gray and Black Minecraft Geometric Print,2 +3003pr0038,BRICK 2X2 NO. 38,2 +3003pr0103,Brick 2 x 2 with Big Ben Clock print,2 +3003pr1002,Brick 2 x 2 with Minecraft Micro Mob Ghast Print,2 +3003pt1,Brick 2 x 2 with LEGO Logo with Open O Print,2 +3003px2,Brick 2 x 2 with Gold 1st Place Cup and Laurels Print,2 +3003px3,Brick 2 x 2 with Lego Logo [Closed O] Print,2 +3004,Brick 1 x 2,11 +30041,Plate Special 6 x 8 Trap Door Frame Horizontal,18 +30042,Plate Special 4 x 5 with Trap Door Hinge,18 +30043,Plate Special 1 x 4 with Arm Down,9 +30044,Window 1 x 2 x 2 2/3 with Rounded Top,16 +30045,Window 1 x 2 x 2 & 2/3 Pane Twisted Bar with Rounded Top,16 +30046,Window 1 x 2 x 2 2/3 Pane Lattice Diamond with Rounded Top,16 +30047,Boat Mast Section Top 11 2/3 H with 6 studs at top,35 +30048,Minifig Helmet - Conquistador,27 +3004p01,Brick 1 x 2 with Yellow Left Arrow with Black Border Print,2 +3004p02,~Brick 1 x 2 with Yellow Right Arrow and Black Border Print,2 +3004p03,Brick 1 x 2 with Yellow Down Arrow and Black Border Print,2 +3004p05,Brick 1 x 2 with Yellow Grill Print,2 +3004p06,Brick 1 x 2 with Black Grill Print,2 +3004p07,Brick 1 x 2 with Ice Cream Print,2 +3004p0a,Brick 1 x 2 with Black and White Squinting Eyes and Hair Print,2 +3004p0b,Brick 1 x 2 with Eyes and Smile Print,2 +3004p12,Brick 1 x 2 with White Grill Print,2 +3004p13,Brick 1 x 2 with Telephone Print,2 +3004p18,Brick 1 x 2 with Thin Black POLICE Print,2 +3004p20,Brick 1 x 2 with White Down Arrow Print,2 +3004p21,Brick 1 x 2 with Police Badge Yellow Star Print,2 +3004p50,Brick 1 x 2 with White Old Style LEGO Logo with Black Outline Print,2 +3004p51,Brick 1 x 2 with Red / Black Three-Dot Face Print,2 +3004p60,Brick 1 x 2 with Shell Logo Type I Print,2 +3004p70,Brick 1 x 2 with Fire Logo Badge and White Stripes Print,2 +3004p90,Brick 1 x 2 with Classic Space Logo Print,2 +3004pb005,Brick 1 x 2 with Ice Cream Print,2 +3004pb007,Brick 1 x 2 with Lego Logo New Style Print,2 +3004pb008,Brick 1 x 2 with Police Yellow Star Badge Print,2 +3004pb009,Brick 1 x 2 with Radio and Microphone Print,2 +3004pb010,Brick 1 x 2 with Shuttle and Yellow Circle Print,2 +3004pb011,Brick 1 x 2 with Shell Logo Type II Print,2 +3004pb022,Brick 1 x 2 with Pumpkin Jack O' Lantern Eye Print,2 +3004pb036,Brick 1 x 2 with Lego Logo Old Style Outline Black Print,2 +3004pb052,Brick 1 x 2 with Lego Logo Old Style White without Black Outline Print,2 +3004pb053,Brick 1 x 2 with Lego Logo Old Style Outline White Print,2 +3004pb057,Brick 1 x 2 with Eyes and Smile and Eyebrows Print,2 +3004pc0,Brick 1 x 2 with TV Screen and 3 Buttons Print,2 +3004ph1,Brick 1 x 2 with Black Lion on Red/Gold Shield Print,2 +3004ph2,Brick 1 x 2 with Silver Snake on Green Shield Print,2 +3004pr0001,"Brick 1 x 2 with Eyes, Freckles and Smile Print",2 +3004pr0002,Brick 1 x 2 with Eyes and Red Smile Print,2 +3004pr0003,Brick 1X2 with Animal Face Print,2 +3004pr0006,Brick 1 x 2 with Army Emblem on Dark Tan Background Print,2 +3004pr0007,Brick 1 x 2 with Smiling Mouth Print (Guido),2 +3004pr0013,Brick 1 x 2 with Pink and Magenta Rectangles Print,2 +3004pr0014,Brick 1 x 2 with Reddish Brown and Dark Brown Lines Print,2 +3004pr0015,Brick 1 x 2 with Red Cross and Animal Paw Print,2 +3004pr0016,"BRICK 1X2, NO.16",2 +3004pr0017,Brick 1 x 2 Vet Paw Print Logo and Dog with Food Bowl print,2 +3004pr0019,"BRICK 1X2, NO. 19",2 +3004pr0025,"BRICK 1X2, Tie with skulls print",2 +3004pr0026,BRICK 1X2 Shirt Print,2 +3004pr0031,Brick 1 x 2 with Blue TV Screen Print [3827],2 +3004pr0036,Brick 1 x 2 with Black 'TNT' Pixelated Print,2 +3004pr022r,Brick 1 x 2 with Black Triangle and 4 Stripes Leaning Right,2 +3004pr023l,Brick 1 x 2 with Black Triangle and 4 Stripes Leaning Left print,2 +3004pr20,Brick 1 x 2 with Santa Claus Face Print,2 +3004prc,Brick 1 x 2 with Red Cross Print,2 +3004pt1,Brick 1 x 2 with 10 Marker Print,2 +3004pt2,Brick 1 x 2 with Shell Logo Small Print,2 +3004pt3,Brick 1 x 2 with Shell Logo 1971 Large Print,11 +3004pt6,Brick 1 x 2 with LEGO Logo with Closed O Square Print,2 +3004px1,Brick 1 x 2 with Octan 309 Print,2 +3004px2,Brick 1 x 2 with 5 Marker Print,2 +3004px22,Brick 1 x 2 with Red Sterling S Print (1551),2 +3004px5,Brick 1 x 2 with Purple Snake Print,2 +3004px7,"Brick 1 x 2 with Switch, Lamps, and Danger Stripe Print [1380]",2 +3005,Brick 1 x 1,11 +30055,Fence Spindled 1 x 4 x 2 [2 Top Studs],32 +30056,Fence Spindled 4 x 4 x 2 Quarter Round with 2 Studs,32 +3005p02,Brick 1 x 1 with Bold White 2 Print,2 +3005p03,Brick 1 x 1 with Bold Black 3 Print thick,2 +3005pb013,Brick 1 x 1 with Red Target Logo Print,2 +3005pe1,Brick 1 x 1 with Simple Eye Black and White Print,2 +3005pe2,Brick 1 x 1 with Angry Eye Left/Sad Eye Right Print,2 +3005pe3,Brick 1 x 1 with Angry Eye Right/Sad Eye Left Print,2 +3005pr0001,Brick 1 x 1 with Eye Squinting Black and White Plain Print,2 +3005pr0003,Brick 1 x 1 with Simple Black Eye with White Pupil Print,2 +3005pr0006,Brick 1 x 1 with Milk Carton Print,2 +3005pr0008,Brick 1 x 1 with Minecraft Micro Mob Creeper Face Print,2 +3005pr0009,Brick 1 x 1 Minecraft Zombie Pigman Face Print,2 +3005pr0011,Brick 1 x 1 with Eyes Black with White Pupils Print,2 +3005pr0012,BRICK 1X1 NO. 12,2 +3005pr0013,Brick 1 x 1 with Red 'Rice' [Chinese] Print,2 +3005pr17,Brick 1 x 1 with Oranges Print [Juice Carton],2 +3005pt0,Brick 1 x 1 with Blue '0' Print,2 +3005pt0b,Brick 1 x 1 with Blue '0' Print (Bold Font),2 +3005pt1,Brick 1 x 1 with Blue '1' Print,2 +3005pt1b,Brick 1 x 1 with Blue '1' Print (Bold Font),2 +3005pt2,Brick 1 x 1 with Blue '2' Print,2 +3005pt2b,Brick 1 x 1 with Blue '2' Print (Bold Font),2 +3005pt3,Brick 1 x 1 with Blue '3' Print,2 +3005pt3b,Brick 1 x 1 with Blue '3' Print (Bold Font),2 +3005pt4,Brick 1 x 1 with Blue '4' Print,2 +3005pt4b,Brick 1 x 1 with Blue '4' Print (Bold Font),2 +3005pt5,Brick 1 x 1 with Blue '5' Print,2 +3005pt5b,Brick 1 x 1 with Blue '5' Print (Bold Font),2 +3005pt6,Brick 1 x 1 with Blue '6' Print,2 +3005pt6b,Brick 1 x 1 with Blue '6' Print (Bold Font),2 +3005pt7,Brick 1 x 1 with Blue '7' Print,2 +3005pt7b,Brick 1 x 1 with Blue '7' Print (Bold Font),2 +3005pt8,Brick 1 x 1 with Blue '8' Print,2 +3005pt8b,Brick 1 x 1 with Blue '8' Print (Bold Font),2 +3005pt9,Brick 1 x 1 with Blue '9' Print,2 +3005pt9b,Brick 1 x 1 with Blue '9' Print (Bold Font),2 +3005pta,Brick 1 x 1 with Blue A Print,2 +3005ptab,Brick 1 x 1 with Blue 'A' Print (Bold Font),2 +3005ptac,Brick 1 x 1 with Blue Danish 'Å' Print,2 +3005ptacb,Brick 1 x 1 with Blue Danish 'Å' Print (Bold Font),2 +3005ptacs,Brick 1 x 1 with Blue Danish 'A' Circle Print (Serif Font),2 +3005ptae,Brick 1 x 1 with Blue Danish 'AE' Print,2 +3005ptaeb,Brick 1 x 1 with Blue Danish 'Æ' Print (Bold Font),2 +3005ptaes,Brick 1 x 1 with Blue Danish 'AE' Print (Serif Font),2 +3005ptandb,Brick 1 x 1 with Blue '&' Print (Bold Font),2 +3005ptas,Brick 1 x 1 with Blue 'A' Print (Serif Font),2 +3005ptau,Brick 1 x 1 with Blue 'Ä' Print,2 +3005ptaub,Brick 1 x 1 with Blue 'Ä' Print (Bold Font),2 +3005ptb,Brick 1 x 1 with Blue B Print,2 +3005ptbb,Brick 1 x 1 with Blue 'B' Print (Bold Font),2 +3005ptbs,Brick 1 x 1 with Blue 'B' Print (Serif Font),2 +3005ptc,Brick 1 x 1 with Blue C Print,2 +3005ptcb,Brick 1 x 1 with Blue 'C' Print (Bold Font),2 +3005ptd,Brick 1 x 1 with Blue D Print,2 +3005ptdb,Brick 1 x 1 with Blue 'D' Print (Bold Font),2 +3005ptdevid,Brick 1 x 1 with Blue ':' Print (Bold Font),2 +3005ptds,Brick 1 x 1 with Blue 'D' Print (Serif Font),2 +3005pte,Brick 1 x 1 with Blue E Print,2 +3005pteb,Brick 1 x 1 with Blue 'E' Print (Bold Font),2 +3005ptes,Brick 1 x 1 with Blue 'E' Print (Serif Font),2 +3005ptf,Brick 1 x 1 with Blue F Print,2 +3005ptfb,Brick 1 x 1 with Blue 'F' Print (Bold Font),2 +3005ptg,Brick 1 x 1 with Blue G Print,2 +3005ptgb,Brick 1 x 1 with Blue 'G' Print (Bold Font),2 +3005pth,Brick 1 x 1 with Blue H Print,2 +3005pthb,Brick 1 x 1 with Blue 'H' Print (Bold Font),2 +3005pths,Brick 1 x 1 with Blue 'H' Print (Serif Font),2 +3005pti,Brick 1 x 1 with Blue I Print,2 +3005ptib,Brick 1 x 1 with Blue 'I' Print (Bold Font),2 +3005ptis,Brick 1 x 1 with Blue '=' Print (Bold Font),2 +3005ptj,Brick 1 x 1 with Blue J Print,2 +3005ptjb,Brick 1 x 1 with Blue 'J' Print (Bold Font),2 +3005ptk,Brick 1 x 1 with Blue K Print,2 +3005ptkb,Brick 1 x 1 with Blue 'K' Print (Bold Font),2 +3005ptks,Brick 1 x 1 with Blue 'K' Print (Serif Font),2 +3005ptl,Brick 1 x 1 with Blue L Print,2 +3005ptlb,Brick 1 x 1 with Blue 'L' Print (Bold Font),2 +3005ptm,Brick 1 x 1 with Blue M Print,2 +3005ptmb,Brick 1 x 1 with Blue 'M' Print (Bold Font),2 +3005ptms,Brick 1 x 1 with Blue 'M' Print (Serif Font),2 +3005ptn,Brick 1 x 1 with Blue N Print,2 +3005ptnb,Brick 1 x 1 with Blue 'N' Print (Bold Font),2 +3005ptns,Brick 1 x 1 with Blue 'N' Print (Serif Font),2 +3005pto,Brick 1 x 1 with Blue O Print,2 +3005ptob,Brick 1 x 1 with Blue 'O' Print (Bold Font),2 +3005ptoslas,Brick 1 x 1 with Blue Danish 'Ø' Print,2 +3005ptoslasb,Brick 1 x 1 with Blue Danish 'Ø' Print (Bold Font),2 +3005ptou,Brick 1 x 1 with Blue 'Ö' Print,2 +3005ptoub,Brick 1 x 1 with Blue 'Ö' Print (Bold Font),2 +3005ptp,Brick 1 x 1 with Blue P Print,2 +3005ptpb,Brick 1 x 1 with Blue 'P' Print (Bold Font),2 +3005ptplus,Brick 1 x 1 with Blue '+' Print (Bold Font),2 +3005ptpminus,Brick 1 x 1 with Blue '-' Print (Bold Font),2 +3005ptps,Brick 1 x 1 with Blue 'P' Print (Serif Font),2 +3005ptq,Brick 1 x 1 with Blue Q Print,2 +3005ptqb,Brick 1 x 1 with Blue 'Q' Print (Bold Font),2 +3005ptqs,Brick 1 x 1 with Blue 'Q' Print (Serif Font),2 +3005ptr,Brick 1 x 1 with Blue R Print,2 +3005ptrb,Brick 1 x 1 with Blue 'R' Print (Bold Font),2 +3005ptrs,Brick 1 x 1 with Blue 'R' Print (Serif Font),2 +3005pts,Brick 1 x 1 with Blue S Print,2 +3005ptsb,Brick 1 x 1 with Blue 'S' Print (Bold Font),2 +3005ptss,Brick 1 x 1 with Blue 'S' Print (Serif Font),2 +3005ptt,Brick 1 x 1 with Blue T Print,2 +3005pttb,Brick 1 x 1 with Blue 'T' Print (Bold Font),2 +3005ptts,Brick 1 x 1 with Blue 'T' Print (Serif Font),2 +3005ptu,Brick 1 x 1 with Blue U Print,2 +3005ptub,Brick 1 x 1 with Blue 'U' Print (Bold Font),2 +3005ptus,Brick 1 x 1 with Blue 'U' Print (Serif Font),2 +3005ptuu,Brick 1 x 1 with Blue 'Ü' Print,2 +3005ptuub,Brick 1 x 1 with Blue 'Ü' Print (Bold Font),2 +3005ptv,Brick 1 x 1 with Blue V Print,2 +3005ptvb,Brick 1 x 1 with Blue 'V' Print (Bold Font),2 +3005ptvs,Brick 1 x 1 with Blue 'V' Print (Serif Font),2 +3005ptw,Brick 1 x 1 with Blue W Print,2 +3005ptwb,Brick 1 x 1 with Blue 'W' Print (Bold Font),2 +3005ptws,Brick 1 x 1 with Blue 'W' Print (Serif Font),2 +3005ptx,Brick 1 x 1 with Blue X Print,2 +3005ptxb,Brick 1 x 1 with Blue 'X' Print (Bold Font),2 +3005ptxs,Brick 1 x 1 with Blue 'X' Print (Serif Font),2 +3005pty,Brick 1 x 1 with Blue Y Print,2 +3005ptyb,Brick 1 x 1 with Blue 'Y' Print (Bold Font),2 +3005ptys,Brick 1 x 1 with Blue 'Y' Print (Serif Font),2 +3005ptz,Brick 1 x 1 with Blue Z Print,2 +3005ptzb,Brick 1 x 1 with Blue 'Z' Print (Bold Font),2 +3005ptzs,Brick 1 x 1 with Blue 'Z' Print (Serif Font),2 +3005pua,Brick 1 x 1 with Blue AE Diphthong Print danish,11 +3005pv1,Brick 1 x 1 with Lightblue 1 Print,11 +3005pv6,Brick 1 x 1 with Lightblue 6 Print,11 +3005pv8,Brick 1 x 1 with Lightblue 8 Print,2 +3005pva,"Brick 1 x 1 with Lightblue ""A"" Print",2 +3005pvp,"Brick 1 x 1 with Lightblue P Print letters,numbers",2 +3005pwe,"Brick 1 x 1 with Lightblue O Dieresis Print letters, numbers",11 +3005px2,Brick 1 x 1 with Eye Squinting Black and White Print,2 +3005px7,Brick 1 x 1 with Eye Sideways Print on Two Sides,2 +3006,Brick 2 x 10,11 +30062,Plate Special 6 x 6 Octagonal with Open Center,9 +30068pr0012,Brick Round 1 x 1 with Open Stud - Stag Beetle Print,20 +3006a,"Brick 2 x 10 without Bottom Tubes, with Cross Supports",11 +3006b,"Brick 2 x 10 without Bottom Tubes, Slotted (with 1 slot)",11 +3006pb002,Brick 2 x 10 with Black 'JANUARY' and 'FEBRUARY' Print on opposite sides,2 +3006pb003,Brick 2 x 10 with Black 'MARCH' and 'APRIL' Print on opposite sides,2 +3006pb004,Brick 2 x 10 with Black 'MAY' and 'JUNE' Print on opposite sides,2 +3006pb005,Brick 2 x 10 with Black 'JULY' and 'AUGUST' Print on opposite sides,2 +3006pb006,Brick 2 x 10 with Black 'SEPTEMBER' and 'OCTOBER' Print on opposite sides,2 +3006pr007,Brick 2 x 10 with Black 'NOVEMBER' and 'DECEMBER' Print on opposite sides,2 +3007,Brick 2 x 8,11 +30072,Brick 12 x 24,11 +30073,Door 1 x 6 x 8 Left,16 +30074,Door 1 x 6 x 8 Right,16 +30075,"Brick, Modified 2 x 6 x 3 Triple Curved Bottom",11 +30075pb01,"Brick, Modified 2 x 6 x 3 Triple Curved Bottom with Yellow Flowers Print",2 +30075pb02,Brick 2 x 6 x 3 Triple Curved Bottom with White Flecks and Green Strawberry Leaves Print,37 +30076,Brick Special 4 x 10 with 4 Pins,36 +30077,Fence 1 x 6 x 2,32 +30078,Propeller 6 Blade Fan 8 x 8,35 +30079,Panel 3 x 3 x 3 Corner Convex,23 +3007a,"Brick 2 x 8 without Bottom Tubes, with Cross Supports",11 +3007mia,Minitalia Brick 2 x 8 with Bottom X Supports,11 +3007mib,Minitalia Brick 2 x 8 with Bottom Tubes,11 +3007p01,Brick 2 x 8 with Fire Logo Badge and White Diagonal Stripes Print,2 +3008,Brick 1 x 8,11 +30080,Panel 4 x 3 x 3 with Porthole,23 +30082,Arm Piece with Towball and Clip,18 +30083,Windscreen 6 x 6 x 3 Dome with Hinge,47 +30083pb01,Windscreen 6 x 6 x 3 Canopy Half Sphere with Hinge and Set 7163 Print,47 +30084,Manta Ray,28 +30085,Shark Head Sawfish,28 +30086,Rubber Raft,35 +30088,Minifig Spear Gun,27 +30089,Minifig Camera Handheld with Right-Aligned Viewfinder,27 +30089b,Minifig Camera Handheld with Central Viewfinder,27 +3008a,"Brick 1 x 8 without Bottom Tubes, with Raised Cross Supports",11 +3008a03,"Brick 1 x 8 without Center Studs with ""GARAGE"" Print",2 +3008a05,"Brick 1 x 8 w/o Centre Studs, Blue ""ESSO WAGENPFLEGE"" Print",2 +3008a06,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Blue 'VW LEGO' Print,2 +3008a07,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Blue 'VW DEALER' Sans-Serif Bold Print,2 +3008apb01,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Black 'TABAK' Print,2 +3008apb04,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red 'KIOSK' Thin (Letters Close) Print,2 +3008apb06,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red 'BRANDWEER' Bold Print,2 +3008apb07,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red 'Grand Theater' Bold Print,2 +3008apb09,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red 'GRAND THEATER' Thin Print,2 +3008apb10,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Black 'GARAGE' Sans-Serif Medium Print,2 +3008apb14,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Blue 'ESSO SERVICE' Long Print,2 +3008apb16,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red 'WURSTCHEN' Thin Print ('WÜRSTCHEN'),2 +3008apb21a,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Blue 'Banegård' Print,2 +3008apb22,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Gold 'BOULANGERIE' Thin Slanted Print,2 +3008apb26,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Black 'GARAGE' Serif Print,2 +3008apb29,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red 'SLAGTER' and Red Pig Face Print,2 +3008apb30,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red 'Slagter' Print,2 +3008apb32,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red 'Esso Service' Long Print,2 +3008apb34,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Blue 'VW SALG VW' Print,2 +3008apb36,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Gold 'BAGER' Print,2 +3008apb37,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Gold 'BAGER' and Pretzels Narrow Print,2 +3008apb39,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red "SPECERIER" Print,2 +3008apb40,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red 'BRANDSTATION' Print,2 +3008apb41,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Blue 'DEALER' Print,2 +3008apb49,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Black 'GARAGE' Thin (Letters Close) Print,2 +3008apb51,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Blue 'RESTAURANT' Thin (Letters Close) Print,2 +3008apb52,Brick 1 x 8 without Bottom Tubes with Cross Side Supports with Red 'FIRE STATION' Thin Print,2 +3008b,"Brick 1 x 8 with Bottom Tubes, with 3 Lowered Cross Supports",11 +3008p01,Brick 1 x 8 with Red Cross Upper Half Print,2 +3008p02,Brick 1 x 8 with Red Cross Lower Half Print,2 +3008p03,"Brick 1 x 8 with Black 'GARAGE' Sans-Serif Thick Print, Plain 'G'",2 +3008p04,Brick 1 x 8 with INT-EUROPE Print,2 +3008p05,Brick 1 x 8 with Gold 723 Print,2 +3008p06,Brick 1 x 8 with White GARAGE Print,2 +3008p07,Brick 1 x 8 with Blue Long ESSO SERVICE Print,2 +3008p08,Brick 1 x 8 with Fire Logo Badge and White Diagonal Stripes Print,2 +3008p21,Brick 1 x 8 with Ferry Squares Light Blue 32 in 2 Lines Print,2 +3008p22,Brick 1 x 8 with Ferry Square Windows Black 16 in 1 Line Print,2 +3008p23,Brick 1 x 8 with Six Light Blue Rectangles Print ferry windows,2 +3008p24,Brick 1 x 8 with Black Stripe and 16 Blue Squares Print,2 +3008p25,Brick 1 x 8 with 32 Black Squares Print,2 +3008p28,"Brick 1 x 8 with VW logo + ""DEALER"" Print",2 +3008pb001,Brick 1 x 8 with Gold '721' Print,2 +3008pb002,Brick 1 x 8 with 'Hot Car' Print,2 +3008pb003,Brick 1 x 8 with 'P 431 L 30 TON T 9 TON' Print,2 +3008pb011,Brick 1 x 8 with Blue 'ESSO SERVICE' Long Print,2 +3008pb012,Brick 1 x 8 with Black 'TABAK' Print,2 +3008pb013,Brick 1 x 8 with Red 'SNACK BAR' Print,2 +3008pb013a,"Brick 1 x 8 with Red "SNACK BAR" Print , embossed print",2 +3008pb013b,"Brick 1 x 8 with Red 'SNACK BAR' Print , surface print",2 +3008pb015,Brick 1 x 8 with Blue 'ESSO WAGENPFLEGE' Print,2 +3008pb016,Brick 1 x 8 with Red 'WURSTCHEN' Thick Print ('WÜRSTCHEN'),2 +3008pb020,Brick 1 x 8 with White "S-21" Print (Set 354),2 +3008pb022,Brick 1 x 8 with Blue 'ESSO SERVICE' Short Print,2 +3008pb025,Brick 1 x 8 with Red "FIRE STATION" Thin Print,2 +3008pb027,Brick 1 x 8 with Red 'FIRE-STATION' Bold Print,2 +3008pb032,Brick 1 x 8 with Gold 'Backer' Print (Bäcker),2 +3008pb034,Brick 1 x 8 with Coast Guard Logo and C 503 Print,2 +3008pb045,Brick 1 x 8 with Red 'THEATRE' Print,2 +3008pb055,Brick 1 x 8 with Black 'GARAGE' Sans-Serif Thin Print,2 +3008pb056,Brick 1 x 8 with Blue 'GARAGE' Sans-Serif Thin Print,2 +3008pb057,Brick 1 x 8 with Red 'KIOSK' Sans-Serif Thick Print,2 +3008pb060,Brick 1 x 8 with Red 'SHELL' Text and 2 Red Shell Logos Print,2 +3008pb064,"Brick 1 x 8 with Black 'GARAGE' Sans-Serif Thick Print, Elaborate 'G'",2 +3008px18,Brick 1 x 8 with Gold '720' Print,2 +3008px24,"Brick 1 x 8 with Red Bricks, Amazon Logo, Vines Print",2 +3008px4,Brick 1 x 8 with Red 'KIOSK' Thin (Letters Close) Print,2 +3008px5,Brick 1 x 8 with 'GRINGOTTS' Print,2 +3009,Brick 1 x 6,11 +30090,Minifig Visor - Diver's Mask,27 +30091,Minifig Scuba Tank,27 +30092,Minifig Underwater Scooter,27 +30093,Sea Grass,28 +30094,Plate Special 2 x 2 with Bar Frame Square,9 +30095,Bar 7 x 3 [4 Clips],32 +30099,Brick Arch 1 x 5 x 4 Inverted,37 +3009a,"Brick 1 x 6 without Bottom Tubes, with 2 Raised Cross Supports",11 +3009apb02,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'TAXE' Print,2 +3009apb08,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'ANNO 1762' Print,2 +3009apb15,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'TAXI'S' Serif Bold Print,2 +3009apb19,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Red 'POSTERIJEN' Slanted Print,2 +3009apb20,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'AUTOMATIEK' Print,2 +3009apb23,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Blue 'HOTEL' Curvy Print,2 +3009apb24,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'TABAK' Serif Small Print,2 +3009apb25a,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Red 'THEATER' Serif Thin Print,2 +3009apb25b,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Red 'THEATER' Serif Print,2 +3009apb26,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Blue "HOTEL" Thick Print,2 +3009apb32,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'BAHNHOF' Sans-Serif Print,2 +3009apb33,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Red "KIOSK" Sans-Serif Thick Print,2 +3009apb34b,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Red "POST" Thin Slanted Print,2 +3009apb39,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Blue 'AUTO' and 2 Cars Print,2 +3009apb40,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Red 'POSTERIJEN' Bold Print,2 +3009apb41a,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'TOBAK' Serif Print,2 +3009apb42a,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Red "KIOSK" Serif Print,2 +3009apb44a,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Blue 'Theater' Script Print,2 +3009apb45a,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'Teater' Script Print,2 +3009apb49,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'TABAC' Print,2 +3009apb51,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black "TOBAK" Italic Bold Print,2 +3009apb52,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with White 'TRANSPORT' Stencil Print,2 +3009apb57,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'BAHNHOF' Thin Print,2 +3009apb58,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black "TAXI" Thick Print,2 +3009apb62,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'TAXA' and Dots Bold Print,2 +3009apb63,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Red 'POSTE' Print,2 +3009apb64a,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'TAXI' Thin Letters Print,2 +3009apb64d,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Black 'TAXI' Thin Letters Wide Print,2 +3009apb68,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Blue 'DEALER' Bold Print,2 +3009apb69,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Blue 'RESTAURANT' Serif Print,2 +3009apb76,Brick 1 x 6 without Bottom Tubes with Cross Side Supports with Red "POST" Print,2 +3009b,"Brick 1 x 6 with Bottom Tubes, with 2 Lowered Cross Supports",11 +3009p01,Brick 1 x 6 with Black Car Grill Print,2 +3009p01e,Brick 1 x 6 with Black Car Grille Print (Embossed Print),2 +3009p02,Brick 1 x 6 with White 'TRANSPORT' Solid Print,2 +3009p03,Brick 1 x 6 with White 'LEGO' Text Print,2 +3009p04,Brick 1 x 6 with Blue HOTEL Print,2 +3009p17,"Brick 1 x 6 with Black ""POLICE"" and Red Line Print",2 +3009p18,"Brick 1 x 6 with Thin Black ""POLICE"" Print",2 +3009p21,Brick 1 x 6 with Ferry Squares Light Blue in 2 Lines Print,2 +3009p22,Brick 1 x 6 with Ferry Squares Light Blue in 1 Line At Top Print (Set 1554),2 +3009p23,Brick 1 x 6 with Centred Light Blue Squares Print,2 +3009p24,Brick 1 x 6 with Ferry Squares Light Blue and Black in 2 Lines Print (Set 1554),2 +3009p25,"Brick 1 x 6 with 24 Black Squares Print boat,ferry,windows,Viking Line Ferry",2 +3009p26,Brick 1 x 6 with 12 Black Squares Print,2 +3009p27,"Brick 1 x 6 with Bold Black ""POLICE"" Print",2 +3009p70,Brick 1 x 6 with TURBO and Stars Print black stripes,2 +3009pb002,Brick 1 x 6 with Black 'TAXI' Thick Print,2 +3009pb003,Brick 1 x 6 with Red Stripes and V8 Power logo Print,2 +3009pb004,Brick 1 x 6 with Red 'Shell' Bold Print,2 +3009pb009,Brick 1 x 6 with Blue 'HOTEL' Thick Print,2 +3009pb011,Brick 1 x 6 with 2 Green Stripes and Red Number 2 Print,2 +3009pb012,Brick 1 x 6 with Red and Green Petals Print,2 +3009pb015,Brick 1 x 6 with Gold '120' Print,2 +3009pb016,Brick 1 x 6 with Red 3 and Black Stripes Print,2 +3009pb017,Brick 1 x 6 with Flower and Leaves on Yellow Arch Print,2 +3009pb019,Brick 1 x 6 with Blue in White 'GENOVA' Print (Set 113),2 +3009pb021,Brick 1 x 6 with Blue in White 'HAMBURG' Print (Set 113),2 +3009pb024,Brick 1 x 6 with Yellow 'TURBO' on Blue Background and Black Spots Print,2 +3009pb026,Brick 1 x 6 with Blue 'HOTEL' Thin Print,2 +3009pb027,Brick 1 x 6 with Canada Post Logo Print,2 +3009pb030,Brick 1 x 6 with Black 'TABAK' Serif Print,2 +3009pb031,Brick 1 x 6 with Black 'TAXE' and Dots Bold Print,2 +3009pb033,"Brick 1 x 6 with Red 'POST', Horn and Envelope Print",2 +3009pb034,Brick 1 x 6 with Red "KIOSK" Bold Print,2 +3009pb036,Brick 1 x 6 with Black 'Bahnhof' Print,2 +3009pb040,Brick 1 x 6 with Lego Logo Old Style Outline Red Print,2 +3009pb044,Brick 1 x 6 with Red Number 1 and Four Stars and Yellow Border Print,2 +3009pb045,Brick 1 x 6 with 'Formula 1' and Chequered Flag Print,2 +3009pb052,Brick 1 x 6 with Black 'GARE' Print,2 +3009pb058,Brick 1 x 6 with Blue 'CAFE' Print,2 +3009pb077,Brick 1 x 6 with White 'TRANSPORT' Thick Print (in some versions of Set 113),2 +3009pb079,Brick 1 x 6 with Red 'P.T.T.' Print,2 +3009pb081,Brick 1 x 6 with Blue Wurstchen Script Print ('Würstchen'),2 +3009pb082,Brick 1 x 6 with Black 'BÄCKER' Print,2 +3009pb089,Brick 1 x 6 with Black 'STATION' Text Print,2 +3009pb090,Brick 1 x 6 with White 'LONDON' Print,2 +3009pb093,Brick 1 x 6 with Red 'THEATER' Serif Print,2 +3009pb102l,Brick 1 x 6 with Dark Red Bottom Stripe Inverted Slope at Left End Print - Set 611-2,2 +3009pb103,Brick 1 x 6 with Dark Red Bottom Stripe Print - Set 611-2,2 +3009pb104r,Brick 1 x 6 with Dark Red Bottom Stripe Slope at Right End Print - Set 611-2,2 +3009pb113,Brick 1 x 6 with Blue 'HOTELL' Print,2 +3009pb156,Brick 1 x 6 with Red 'Shell' Wide Print,2 +3009pb172,Brick 1 x 6 with Dark Red Bottom Stripe Inverted Slope at Right End Print - Set 611-2,2 +3009pr0001,Brick 1 x 6 with Recycling Phrases and Stars Print,2 +3009pr0002,Brick 1 x 6 with 'PEACE' and Flower Print,2 +3009pr0003,"Brick 1 x 6 with 'GROOVY', 'LOVE', Rainbow and Flower Print",2 +3009pr620r,Brick 1 x 6 with Black 'CATERHAM' on Yellow Stripe print,2 +3009pt0,Brick 1 x 6 with Blue 'KLM' Print,2 +3009pt1,Brick 1 x 6 with Red Rounded 'Shell' Print,2 +3009pt2,Brick 1 x 6 with Black 'PHILIPS' Print,2 +3009ptb,Brick 1 x 6 with 'BASEL' on White Background Print,2 +3009pte,Brick 1 x 6 with Red 'POST' Print,2 +3009px15,Brick 1 x 6 with Black 'TAXI' Thin Print,2 +3009px52,Brick 1 x 6 with Gold '722' Print,2 +3010,Brick 1 x 4,11 +30100,Panel 3 x 6 x 6 Double Wall with Arched Window,23 +30101,Door Frame 2 x 8 x 6 Swivel with Bottom Notches,16 +30102,"Door 2 x 5 x 5 Swivel, Flat Base",16 +30102p01,Door 2 x 8 x 6 Revolving with Ninja Print,16 +30102px2,"Door 2 x 5 x 5 Swivel, Flat Base with Stained Glass Knight Print",16 +30103,Bat,28 +30104,Minifig Chain 17L,31 +30105,Minifig Helmet with Bat Wings,27 +30106,Minifig Crystal Ball Globe 2 x 2 x 2,27 +30107,Belville Broom - Push Broom,42 +30108,"Belville Tent Frame 1 x 12 x 8 Triangle with Recessed Top Stud, Towball on Sides",42 +30109,Belville Basket 2 x 4 x 2 without Handle,7 +30109c01,Belville Basket 2 x 4 x 2 with Handle,42 +30109c02,Belville Basket 2 x 4 x 2 with Blue Handle,42 +30109c03,Belville Basket 2 x 4 x 2 with Chrome Silver Handle,42 +3010a,"Brick 1 x 4 with Bottom Tubes, with 1 Lowered Cross Support",11 +3010ap04,Brick 1 x 4 with Black 15 Bars Grill Print,2 +3010ap30,Brick 1 x 4 with Black Legoland Logo Print,2 +3010apr0001,Brick 1 x 4 with 'AUTO SERVICE' and Wrench Print,2 +3010apr0016,"Brick 1 x 4 with White ""POLICE"" and Red Line Print",2 +3010apr008,Brick 1 x 4 with Café Print,2 +3010apr014,"Brick 1 x 4 with '71', Chequered Flag, and Octan Logo Print",2 +3010apr015,Brick 1 x 4 with Racing 73 Print,2 +3010p01,Brick 1 x 4 with Black Smile Print,2 +3010p02,Brick 1 x 4 with Blue Triangles Print,2 +3010p03,Brick 1 x 4 with Garage Tools Print,2 +3010p05,Brick 1 x 4 with White Grill Print,2 +3010p06,Brick 1 x 4 with Red Danger Stripes Print,2 +3010p08,Brick 1 x 4 with Basic Car Headlights Print,2 +3010p09,Brick 1 x 4 with Basic Car Tail-lights Print,2 +3010p11,Brick 1 x 4 with Black TAXI Print,2 +3010p12,"Brick 1 x 4 with Envelope on Red Background, Left Print",2 +3010p13,"Brick 1 x 4 with Envelope on Red Background, Right Print",2 +3010p15,Brick 1 x 4 with Red Danger Stripes on White Background Print,2 +3010p20b,Brick 1 x 4 with Town Car Grille Black,2 +3010p20c,Brick 1 x 4 with Town Car Grille Chrome,2 +3010p20w,Brick 1 x 4 with Car Grille White Print,2 +3010p21,Brick 1 x 4 with Ferry Squares Light Blue in 2 Lines Print,2 +3010p22,Brick 1 x 4 with Black Stripe and 8 Blue Squares Print,2 +3010p30,Brick 1 x 4 with Black Legoland Logo Print,2 +3010p31,Brick 1 x 4 with White Legoland Logo Print,2 +3010p40,Brick 1 x 4 with Black 20 Bars Grill Print,2 +3010p41,Brick 1 x 4 with Homemaker Stove Switch Print,2 +3010p42,Brick 1 x 4 with Yellow Left Arrow and Black Border Print,2 +3010p70,Brick 1 x 4 with Fire Logo Badge and White Diagonal Stripes Print,2 +3010p71,Brick 1 x 4 with Car Headlights and Blinkers Black Print,2 +3010p72,Brick 1 x 4 with Stripes and Wrench Print,2 +3010pb001,Brick 1 x 4 with Gold '126' Print,2 +3010pb003,Brick 1 x 4 with Car Taillights Red and Orange Print,2 +3010pb005,Brick 1 x 4 with 3 Yellow Stars Print,2 +3010pb007,Brick 1 x 4 with Gold '122' Print,2 +3010pb013,Brick 1 x 4 with Black Stripes and Tow Truck Print,2 +3010pb016,Brick 1 x 4 with Bank and Dollar Signs Print [4608],2 +3010pb017,Brick 1 x 4 with Black Dollar Sign on Yellow Badge Print,2 +3010pb018,Brick 1 x 4 with Yellow Flower and 2 Green Leaves Print,2 +3010pb019,Brick 1 x 4 with Black 'IKA 83' Print,2 +3010pb020,Brick 1 x 4 with 4WD Text and Blue Stripes Print,2 +3010pb021,Brick 1 x 4 with Octan Text Print,2 +3010pb022,Brick 1 x 4 with Horse Running and Palm Tree Print,2 +3010pb024,"Brick 1 x 4 with Horn on Red Background Print, Right Side",2 +3010pb025,"Brick 1 x 4 with Horn on Red Background Print, Left Side",2 +3010pb026b,"Brick 1 x 4 with Red Envelope Print, Right Side",2 +3010pb028,Brick 1 x 4 with Pumpkin Jack O' Lantern Mouth Print,2 +3010pb029,Brick 1 x 4 with White 'Shop' Print,2 +3010pb031,Brick 1 x 4 with Black 'STERLING' Print (Set 1551),2 +3010pb032,Brick 1 x 4 with Black 'L 15.5 TON' and 'T 9.1 TON' Print,2 +3010pb033,Brick 1 x 4 with Black 'L 18 TON' and 'T 16 TON' Print,2 +3010pb034,Brick 1 x 4 with Black 'QH 44' Print,2 +3010pb035e,Brick 1 x 4 with Chrome Car Grill Print [Embossed],2 +3010pb035u,Brick 1 x 4 with Chrome Car Grill Print [Undetermined],2 +3010pb036e,Brick 1 x 4 with Black Car Grill Print [Embossed],2 +3010pb045,Brick 1 x 4 with Fire Logo Print,2 +3010pb046,Brick 1 x 4 with Truck Headlights and Grille Print (4 Juniors),2 +3010pb084,Brick 1 x 4 with White 'TRANSPORT' Solid Print,2 +3010pb089,Brick 1 x 4 with 4 Black Oval Windows Print,2 +3010pr0001,Brick 1 x 4 with 'AUTO SERVICE' and Wrench Print,2 +3010pr0003,Brick 1 x 4 with Yellow '1' and Fancy Outline Print,2 +3010pr0009,BRICK 1X4 with Batman Logo print,2 +3010pr0010,"BRICK 1X4, Batman Logo Print",2 +3010pr0011,"BRICK 1X4, Robin Print",2 +3010pr0012,Brick 1 x 4 with Joker Suit print,2 +3010pr0013,Brick 1 x 4 - Harness with 2 Rectangle Buckles and 1 Star Print (Captain America Brickheadz),2 +3010pr0014,"BRICK 1X4, NO. 14",2 +3010pr0015,"BRICK 1X4, Hulk Torso Top",2 +3010pr0015b,"BRICK 1X4, Torso Hulk Bottom",2 +3010pr0016,"Brick 1 x 4 with White ""POLICE"" and Red Line Print",2 +3010pr0017,Brick 1 x 4 with Belle Dress print,2 +3010pr0201,Black Panther Torso,2 +3010pr0202,Eye of Agamotto,2 +3010pr0918,Brick 1 x 4 with White 'LL918' Print,2 +3010pr0924,Brick 1 x 4 with White 'LL924' Print,2 +3010pr0928,Brick 1 x 4 with White 'LL928' Print,2 +3010pr9998,Brick 1 x 4 - Alternating Vertical Red and White Stripes Print (Captain America SDCC Brickheadz),2 +3010pr9999,Brick 1 x 4 - Captain America Star Print (SDCC Brickheadz),2 +3010pt0,"Brick 1 x 4 with HE 124 Print text,Black, he124, embossed",2 +3010pt1,"Brick 1 x 4 with Black ""L 17.5 TON"" and ""T 10.6 TON"" Print",2 +3010pt6,Brick 1 x 4 with White TRANSPORT Stencil Print,2 +3010px1,Brick 1 x 4 with Car Headlights and Indicators Print,2 +3010px2,Brick 1 x 4 with Car Headlights and Blue Oval Print,2 +3010px58,Brick 1 x 4 with Danone Logo Print - Set 1591,2 +3011,Brick 2 x 4,4 +30110,Fence 2 x 12 x 6,32 +30111,Belville Accessories - Complete Sprue - Baby Bibs and Spoons,27 +30111a,Spone,42 +30112,Belville Accessories - Complete Sprue - Horse Tack,42 +30113,Minifig Headdress - Indian Buffalo Horned,27 +30114,Minifig Hair Long and Side Braided with Headband,27 +30115,Snake,28 +30116,Panel 14 x 14 x 2.667 Quarter Saucer [Plain],23 +30116pr01,Panel 14 x 14 x 2.667 Quarter Saucer with Left UFO Print,23 +30116pr02,Panel 14 x 14 x 2.667 Quarter Saucer with Right UFO Print,23 +30116pr03,Panel 14 x 14 x 2.667 Quarter Saucer Millennium Falcon Print,23 +30117,Panel 10 x 10 x 2 1/3 Quarter Saucer Top,23 +30117p6u,Panel 10 x 10 x 2.333 Quarter Saucer with Left UFO Print,24 +30117p6v,Panel 10 x 10 x 2.333 Quarter Saucer with Right UFO Print,24 +30117pb01,Panel 10 x 10 x 2 1/3 Quarter Saucer Top with UFO Print Left,23 +30117pb02l,Panel 10 x 10 x 2 1/3 Quarter Saucer Top with SW Black Ovals Print Left,23 +30117pb02r,Panel 10 x 10 x 2 1/3 Quarter Saucer Top with SW Black Ovals Print Right,23 +30117pb03l,Panel 10 x 10 x 2 1/3 Quarter Saucer Top with Insectoid Print Left,23 +30117pb03r,Panel 10 x 10 x 2 1/3 Quarter Saucer Top with Insectoid Print Right,23 +30117pb04l,Panel 10 x 10 x 2 1/3 Quarter Saucer Top with Stingray Print Left (teardrop at front & points left),23 +30117pb04r,Panel 10 x 10 x 2 1/3 Quarter Saucer Top with Stingray Print Right (teardrop at front & points right),23 +30117pb05,Panel 10 x 10 x 2 1/3 Quarter Saucer Top with UFO Print Right,23 +30118,Wing Plate Bi-level 8 x 4 and 2 x 3 1/3 Up,49 +30118p6u,Wing 8 x 4 - 2 x 3.333 Up with UFO Print,24 +30118p6v,Wing 8 x 4 - 2 x 3.333 Up with UFO Engine Print,49 +30118pb03,Wing Plate Bi-level 8 x 4 and 2 x 3 1/3 Up with Silver/Orange/Black UFO Logo Print,24 +30119,Wing Plate Bi-level 8 x 4 and 2 x 3 1/3 Down,49 +30119p6u,Wing 8 x 4 - 2 x 3.333 Down with UFO Print,49 +3011pb02,"Duplo, Brick 2 x 4 with Bricks Print",4 +3011pb08,"Duplo, Brick 2 x 4 with 'POLICE' Print",4 +3011pb11,"Duplo, Brick 2 x 4 with 'HOTEL' Text Print",4 +3011pb13,"Duplo, Brick 2 x 4 with 'STATION' Text Print",4 +3011pb14,"Duplo, Brick 2 x 4 with 'CRANKY' Text Print",4 +3011pb15,"Duplo, Brick 2 x 4 with Green Girders Print",4 +3011pb31,"Duplo, Brick 2 x 4 with 'Top Down' Text with Border Print",4 +3011pb34,"Duplo, Brick 2 x 4 with 3 Yellow Oval Windows Print",4 +3011pb35,"Duplo, Brick 2 x 4 with Red, Dark Red and Tan Bricks Print",4 +30120,Minifig Helmet UFO,27 +30120p01,Minifig Helmet with Hexagonal Top and Gold Alien Print,27 +30120p02,Minifig Helmet with Hexagonal Top and Silver Alien Print,27 +30121,Minifig Breastplate with Shoulder Protection,27 +30126,Minifig Plume / Feathers with Pin,27 +30126p01,Minifig Plume Feathers with Pin and Black Tip on Both Sides Print,27 +30126pb02,Minifig Plume Feathers with Pin and Black Tip on One Side Only Print,27 +30126pr0001,INDIAN FEATHER W. PIN NO.1,27 +30127,Minifig Plume Feathers with Clip,27 +30127p01,Minifig Plume Feathers with Clip and Black Tip Print,27 +30129,Support Tepee 20L,34 +30131,"Plant, Tree 6 x 6 Hollow Stump",28 +30132,Minifig Pistol Revolver - Large Barrel [Old Style],27 +30133,Minifig Bandana,27 +30134,Stairs 7 x 4 x 6 Straight Open,32 +30135,Minifig Cavalry Cap [Kepi],27 +30136,Brick Special 1 x 2 Palisade [aka Log],5 +30137,Brick Special 1 x 4 Palisade [aka Log],5 +30138,Minifig Headdress Indian [Plain],24 +30138pb01,Minifig Headdress Indian with Colored Feathers Print,27 +30139,Barrel 4 x 4 x 3.5,7 +30140,Panel 2 x 6 x 6 Log Wall [Palisade],23 +30141,Minifig Rifle,27 +30143,Animal Camel Head 3 x 7 x 5 & 1/3,24 +30143px1,Camel Head 3 x 7 x 5 1/3 with Eyes and Nose Print,28 +30144,Brick 2 x 4 x 3,11 +30144p01,Brick 2 x 4 x 3 with Black Outlined White Stripes Print,2 +30144pb001,Brick 2 x 4 x 3 with Wanted Posters Print,2 +30144pb002,Brick 2 x 4 x 3 with LEGO Fabrik 2002 Print,2 +30144pb004,Brick 2 x 4 x 3 with Watering Can Print,2 +30144pb005,Brick 2 x 4 x 3 with LEGO Fabrik 2003 Print,2 +30144pb008,Brick 2 x 4 x 3 with Octan Print,2 +30144pb015,Brick 2 x 4 x 3 with LEGO Fabrik 2004 Print,2 +30144pb019,Brick 2 x 4 x 3 with Fire Print,2 +30144pb021,Brick 2 x 4 x 3 with LEGO Fabrik 2005 Print,2 +30144pb026,Brick 2 x 4 x 3 with LEGO Fabrik 2006 Print,2 +30144pb035,Brick 2 x 4 x 3 with LEGO Fabrik 2007 Print,2 +30144pb038,Brick 2 x 4 x 3 with Legoland Discovery Center Chicago Print,2 +30144pb041,Brick 2 x 4 x 3 with Legoland Discovery Centre 2008 Santa Claus Print,2 +30144pb046,Brick 2 x 4 x 3 with Legoland Deutschland Halloween 2007 and Skeleton Minifig Print,2 +30144pb047,Brick 2 x 4 x 3 with LEGO Fabrik 2008 Print A,2 +30144pb048,Brick 2 x 4 x 3 with LEGO Fabrik 2008 Print B,2 +30144pb073,Brick 2 x 4 x 3 with LEGO Fabrik 2010 Print,2 +30144pb076,Brick 2 x 4 x 3 with Legoland Deutschland www.LEGOLAND.de Print,2 +30144pb078,Brick 2 x 4 x 3 with Factory Print,2 +30144pb095,Brick 2 x 4 x 3 with LEGO Fabrik 2011 Print,2 +30144pb096,Brick 2 x 4 x 3 with Legoland Discovery Centre Star Wars Print,2 +30144pb099,Brick 2 x 4 x 3 with HYUNDAI Sammelstein 2011 Green Print,2 +30144pb107,Brick 2 x 4 x 3 with Alien Conquest 2011 Print,2 +30144pb108,Brick 2 x 4 x 3 with Lego Games 2011 Print,2 +30144pb109,Brick 2 x 4 x 3 with Ninjago 2011 Print,2 +30144pb115,Brick 2 x 4 x 3 with LEGO Fabrik 2012 Print,2 +30144pb116,Brick 2 x 4 x 3 with 'Friends' and Butterfly front LEGO Friends Logo back Print,2 +30144pb117,Brick 2 x 4 x 3 with 'Best' and Butterfly front LEGO Friends Logo back Print,2 +30144pb136,Brick 2 x 4 x 3 with Legoland Deutschland Fabrik 2013 Print,2 +30144pb140,Brick 2 x 4 x 3 with Legoland Feriendorf 2013 Knight Print,2 +30144pr0194,Brick 2 x 4 x 3 with Legoland Deutschland Resort Fabrik 2017 Print,2 +30144px6,Brick 2 x 4 x 3 with Popsicle and Ice Cream Cone Print,2 +30145,Brick 2 x 2 x 3,11 +30145p01,Brick 2 x 2 x 3 with White Stripes Black Outlined Print,2 +30145p02,Brick 2 x 2 x 3 with 3 Green Dots Print,2 +30145pr0001,Brick 2 x 2 x 3 with shower print,2 +30147,Front Grill 1 x 2 x 2 Round Top [Lights & Centre Top Stud],36 +30148,Minifig Camera Movie Style,27 +30149,Vehicle Base 6 x 5 x 2 [2 Seats],36 +30150,Container - Crate with Handholds,7 +30151,Brick Round 2 x 2 x 1 2/3 Dome Top [Undetermined Stud],24 +30151a,Brick Round 2 x 2 x 1 2/3 Dome Top [Blocked Open Stud],20 +30151apr0001,Brick Round 2 x 2 x 1 2/3 Dome Top with Frowning Face and Angry Eyes Print,20 +30151b,Brick Round 2 x 2 x 1 2/3 Dome Top [Hollow Stud],20 +30151bpr0002,Brick Round 2 x 2 x 1 2/3 Dome Top with Sentinel Face Print,2 +30152,Magnifying Glass with Thin Frame and Hollow Handle [Plain],24 +30152pat0001,Magnifying Glass with Thin Frame and Hollow Handle with Trans-Clear Lens,27 +30152pat0003,Magnifying Glass with Thin Frame and Hollow Handle with Trans-Red Lens,27 +30153,Rock 1 x 1 Jewel 24 Facet,33 +30154,Minifig Sextant,27 +30155,Wheel Spoked 2 x 2 with Pin Hole,29 +30156,Panel 4 x 6 x 6 Sloped,23 +30156pb01,Panel 4 x 6 x 6 Sloped with Amazon Brick and Vines Print,3 +30156pb02,Panel 4 x 6 x 6 Sloped with Stone Wall Print,23 +30156px1,Panel 4 x 6 x 6 Sloped with Rock Print,3 +30156px2,Panel 4 x 6 x 6 Sloped with Multicolored Rock Print,23 +30156px3,Panel 4 x 6 x 6 Sloped with Hieroglyphs and Jackal Print,23 +30156px4,"Panel 4 x 6 x 6 Sloped with Hieroglyphs, Snake and Eagle Print",23 +30157,Plate Special 2 x 4 with Pins,9 +30158,Minifig Backpack [Opening],27 +30159,Magnet Holder Plate 2 x 2 Bottom,39 +30161,Windscreen 1 x 4 x 1 1/3 with Bottom Hinge,47 +30161pa1,Windscreen 1 x 4 x 1 1/3 with Bottom Hinge with Wipers Print,47 +30161pb01,Windscreen 1 x 4 x 1 1/3 with Bottom Hinge with Computer screen Print,47 +30162,Minifig Binoculars,27 +30163,Sarcophagus/Coffin 2 x 4 x 6,7 +30163c01,"Container, Coffin 2 x 4 x 6, Complete Assembly with Mummy Relief Plain Lid (Sarcophagus)",7 +30163c01pb01,"Container, Coffin 2 x 4 x 6, Complete Assembly with Tan Mummy Relief Colorful Print Lid (Sarcophagus)",7 +30164,Sarcophagus 2 x 4 x 6 Lid with Mummy Relief Plain,7 +30164p01,Container Minifig Coffin Lid with Mummy Relief with Print,7 +30165,Brick Curved 2 x 2 with Two Top Studs,37 +30167,"Minifig Hat, Wide Brim Flat",27 +30168,Minifig Headdress Mummy [Type 1],27 +30168px1,Minifig Mummy Headdress with Blue and Gold Stripes Print,27 +30168px2,Minifig Headdress Mummy with Dark Gray Stripes Print,27 +30169,Scorpion,28 +30170,Minifig Visor Goggles,27 +30171,Minifig Aviator Cap,27 +30172,Minifig Pith Helmet,27 +30173,Minifig Sword [Undetermined Guard],27 +30173a,Minifig Sword Katana [Octagonal Guard],27 +30173b,Minifig Sword Shamshir [Square Guard],27 +30174,Minifig Armour Ninja Style,27 +30174pr0001,Minifig Armor Ninja Style with Black Clasps Print,27 +30175,Minifig Helmet Ninja (Samurai),27 +30176,Round 1 x 1 - 3 Bamboo Leaves,28 +30177,Minifig Ninja Wrap,27 +30178c01,Door 1 x 4 x 6 with 3 Panes (Complete),16 +30179,Door Frame 1 x 4 x 6 Type 1,16 +30179c05,Door Frame 1 x 4 x 6 with Black Door with Trans-Black Glass,16 +30180,Slope 45° 10 x 2 x 2 Double,3 +30180p01,Slope Brick 45 10 x 2 x 2 Double w/ Black/Yellow Stripes Patt.,3 +30180pb01,Slope 45 10 x 2 x 2 Double with Wrench Print,3 +30180pb02,Slope 45° 10 x 2 x 2 Double with Tools and Motorcycle Print,3 +30181,Brick Wedged 4 x 10 with Cut Corners,6 +30181p01,"Brick 4 x 10 w/o Two Corners w/ White ""POLICE"" Red Line Print",6 +30182,Slope 45° 4 x 4,3 +30182pb01,Slope 45 4 x 4 with Blue Stripe Print,3 +30182pb02,Slope 45 4 x 4 with Octan Logo and Red & Green Stripe Print,3 +30182pb03,Slope 45° 4 x 4 with Yellow Stripe Print [6329],3 +30183,Slope Inverted 45° 6 x 4 Double with Recessed Center,3 +30183p01,"Slope Brick 45 6 x 4 Double Inverted w/ ""POLICE"" Red Line Pat.",3 +30184,Vehicle Trailer Base 6 x 26 x 2 2/3,36 +30185c01,Window Bay 3 x 8 x 6 with Trans-Black Glass,16 +30185c02,Window Bay 3 x 8 x 6 with Trans-Dark Blue Glass,16 +30185c02pb01,Window Bay 3 x 8 x 6 with Trans-Dark Blue Glass with 5 White Stripes and Coast Guard Print,16 +30185c03,Window Bay 3 x 8 x 6 with Trans-Light Blue Glass,16 +30185c03pb01,Window Bay 3 x 8 x 6 with Trans-Light Blue Glass with 5 White Stripes and Hamburger Print,16 +30185c04,Window Bay 3 x 8 x 6 with Trans-Clear Glass,16 +30185c05,Window Bay 3 x 8 x 6 with Trans-Green Glass,16 +30185c05pb01,Window Bay 3 x 8 x 6 with Trans-Green Glass and Police Shield Logo Print,16 +30187a,Tricycle Body Top with Dark Gray Chassis,36 +30187b,Tricycle Body Top with Dark Bluish Gray Chassis,36 +30187c,Tricycle Body Top with Dark Red Chassis,36 +30187c01,Tricycle Complete Assembly with Dark Gray Chassis & White Wheels,36 +30187c02,Tricycle Complete Assembly with Dark Gray Chassis & Light Gray Wheels,36 +30187c03,Tricycle Complete Assembly with Dark Gray Chassis & Blue Wheels,36 +30187c04,Tricycle Complete Assembly with Dark Gray Chassis & Black Wheels (Rears Solid Wheel/Tire),36 +30187c05,Tricycle Complete Assembly with Dark Bluish Gray Chassis & Light Bluish Gray Wheels,36 +30187c06,Tricycle Complete Assembly with Dark Bluish Gray Chassis & White Wheels,36 +30187c07,Tricycle Complete Assembly with Dark Red Chassis & Light Bluish Gray Wheels,36 +30187c08,Tricycle Complete Assembly with Blue Chassis & Black Wheels (Rears Solid Wheel/Tire),36 +30187d,Tricycle Body Top with Blue Chassis,36 +30187e,Tricycle Body Top with Reddish Brown Chassis,36 +30189,Tricycle Body Front Fork / Handlebars,36 +30190,Wheel Centre Wide with Stub Axles [Tricycle],29 +30190stk01,Sticker for Set 30190 - (10986/6009254),17 +30191,Minifig Stretcher Holder,27 +30191stk01,Sticker for Set 30191-1 10990 / 6009312,17 +30192,Grappling Hook,27 +30192stk01,Sticker for Set 30192 - (10985/6009232),17 +30193,Minifig Ice Axe [6-Rib Handle],27 +30193stk01,Sticker for Set 30193 - (10979/6009189),17 +30194,Minifig Circular Saw,27 +30194stk01,Sticker for Set 30194 - (10977/6009177),17 +30195,Plate Special 2 x 6 with 4 x 8 Half Saucer,9 +30195pb01,Plate Special 2 x 6 with 4 x 8 Half Saucer and Stingray Print,9 +30195stk01,Sticker for Set 30195 - (10983/6009194),17 +30196stk01,Sticker for Set 30196 - (13071/6023219),17 +30198,Minifig Grab Jaw Holder,27 +3020,Plate 2 x 4,14 +30200,Cockpit 6 x 6 x 3 1/3 Octagonal Canopy Base,35 +30201,Panel 10 x 10 x 2 1/3 Quarter Saucer Base,20 +30202,Minifig Helmet [Aquazone Stingrays],27 +30208,Dome Hemisphere 4 x 4 Multifaceted,20 +30209,Plate Special 1 x 2 with 4 x 4 disk at 90 degrees,9 +3020a,Plate 2 x 4 with Square Underside Studholes,24 +3021,Plate 2 x 3,14 +30211,Support Leg Small [Insectoids],28 +30212,Support Leg Large [Insectoids],28 +30213,Rock 2 x 2 Crystal 3 Point,33 +30214,Minifig Helmet Round Bubble,27 +30215,"Boat Hull Unitary 52 x 16 x 5, Base [5848-1]",35 +30216,Boat Bow Brick 16 x 16 x 1 with 4 x 6 Cutout [5848-1],35 +30217,"Belville, Clothes Hat, Woman's Wide Brim",42 +30218,Clam [Type 1 - Continuous Scalloped Inner Lip],28 +30219,"Bar 16L with Open Stud, Towball, and Slit [aka Windsurfer Mast]",35 +3022,Plate 2 x 2,14 +30220,"Belville, Clothes Life Jacket, Child Figure Size",42 +30222,Popsicle [aka Lollipop],27 +30223,Door 1 x 5 x 7 1/2 Stockade,16 +30224,Fish Ornamental,28 +30225,Baseplate 32 x 32 Road 8-Stud Dual,1 +30225bp1,Baseplate 32 x 32 Road 8-Stud Dual with Crosswalk Print,1 +30225pb01,"Baseplate, Road 16 x 16 with Driveway and Police White Star Badge Print",1 +30225pb02,"Baseplate, Road 16 x 16 with Driveway and Yellow Truck Print",1 +30228,Minifig Motor Hammer (Jackhammer),27 +30229,Minifig Zip Line Handle,27 +3023,Plate 1 x 2,14 +30230,Wing Insectoid Large with Arm Hinge and Circuitry Print (Undetermined Orientation),49 +30230px1,"Wing Insectoid Large with Arm Hinge and Circuitry Print Left (Print on Top, Tip on Left, Logo at Back Edge)",49 +30230px2,"Wing Insectoid Large with Arm Hinge and Circuitry Print Right (Print on Top, Tip on Right, Logo at Back Edge)",49 +30231,Wing Insectoid Small with Arm Hinge and Circuitry Print (Undetermined Orientation),49 +30231pb01,"Wing Insectoid Small with Arm Hinge and Circuitry Print Right (Print on Top, Tip at Right, Logo at Back Edge)",49 +30231pb02,"Wing Insectoid Small with Arm Hinge and Circuitry Print Left (Print on Top, Tip at Left, Logo at Back Edge)",49 +30235,Vehicle Base 4 x 10 x 1 2/3,36 +30236,Brick Special 1 x 2 with Handle,5 +30237a,Brick Special 1 x 2 with Vertical Clip [Thick U Clip],5 +30237b,Brick Special 1 x 2 with Vertical Clip [Open O Clip],5 +30238,Spider,28 +30239,Leaves 6 x 5 Swordleaf [Clip],28 +3023a,Plate 1 x 2 [Old Style Bottom],14 +3024,Plate 1 x 1,14 +30240,Spider Web,28 +30246,Panel 3 x 4 x 6 with Arched Window,23 +30248,Helicopter Skid Rails 12 x 6,35 +30249,Slope 55° 6 x 1 x 5,3 +30249ps0,Slope 55° 1 x 6 x 5 with Red and Dark Gray Print,3 +3024pr0003,Plate 1 x 1 with Minecraft Steve Eyes Print,14 +3024pr0004,Plate 1 x 1 with Minecraft Steve Nose and Mouth Print,14 +3024pr0005,Plate 1 x 1 with 2 Black Rectangles Print (Minecraft Zombie Eyes),14 +3024pr0006,Plate 1 x 1 with 1 Black Rectangle Print [Minecraft Zombie Mouth],14 +3024pr0007,"Plate 1 x 1 with 2 Green and 2 White Squares, Long Black Rectangle Print [Minecraft Villager Eyes]",14 +3024pr0008,Plate 1 x 1 with 3 Dark Tan Rectangles and 2 Black Squares Print [Minecraft Villager Mouth and Nose],14 +3024pr0009,Plate 1 x 1 with 4 Light Purple and 2 Purple Squares Print (Minecraft Enderman eyes),14 +30250,Cockpit 7 x 4 x 3,35 +30250pr01,Cockpit 7 x 4 x 3 with Grille and 55 Print,35 +30250pr02,Cockpit 7 x 4 x 3 with TV Logo and P 745 Print,35 +30250pr03,Cockpit 7 x 4 x 3 with Fire Logo Badge and Chevron Print,35 +30250pr04,Cockpit 7 x 4 x 3 with Coast Guard Logo and C 502 Print,35 +30251,Windscreen 5 x 4 x 3,47 +30254,"Boat Hull Unitary 32 x 10 x 1 2/3, Top",35 +30255,"Boat Hull Unitary 22 x 8 x 2 1/3, Top",35 +30256,Tile Special 2 x 2 with Bar and Stud,15 +30257,"Brick, Arch 1 x 6 x 6",37 +30258,Road Sign Clip-on 2 x 2 Square,38 +30258p01,Roadsign Clip-on 2 x 2 Square with Black Arrow Print,38 +30258p02,Roadsign Clip-on 2 x 2 Square with Black Turn Arrow Print,38 +30258p03,Roadsign Clip-on 2 x 2 Square with Pedestrian Crossing Print,38 +30258p04,"Roadsign Clip-on 2 x 2 Square with Speed Limit ""30"" Print",38 +30258p05,"Roadsign Clip-on 2 x 2 Square with ""P"" on Blue Print",38 +30258pb006,Road Sign Clip-on 2 x 2 Square with Royal Mail Print,38 +30258pb007,Road Sign Clip-on 2 x 2 Square with Safe/Unsafe Water Print - Set 6435,38 +30259,Roadsign Clip-on 2.2 x 2.667 Triangular,38 +30259p01,Roadsign Clip-on 2.2 x 2.667 Triangular with Fire Print,38 +30259p02,Roadsign Clip-on 2.2 x 2.667 Triangular with Warning Print,38 +30259p03,Roadsign Clip-on 2.2 x 2.667 Triangular with Bend Print,38 +30259p04,Roadsign Clip-on 2.2 x 2.667 Triangular w/ Traffic Light Patt.,38 +30259p05,Roadsign Clip-on 2.2 x 2.667 Triangular w/ Road Works Print,38 +30259p06,Roadsign Clip-on 2.2 x 2.667 Triangular w/ Narrow Road Print,38 +3026,Plate 6 x 24,14 +30260,Roadsign Clip-on 2 x 2 Octagonal,15 +30260p01,Roadsign Clip-on 2 x 2 Octagonal w/ Red Stop Sign Print,24 +30261,Roadsign Clip-on 2 x 2 Round,38 +30261p01,Roadsign Clip-on 2 x 2 Round with "POLICE" and "STOP" Print,38 +30261p02,"Roadsign Clip-on 2 x 2 Round with Speed Limit ""50"" Print",38 +30261p03,Roadsign Clip-on 2 x 2 Round with Arrow on Blue Print,38 +30261p04,Roadsign Clip-on 2 x 2 Round with No Entry Print,38 +30261p05,Roadsign Clip-on 2 x 2 Round with No Parking Print,15 +30261pr0001,Road Sign Clip-on 2 x 2 Round with Ice Cream Print,38 +30261px6,Roadsign Clip-on 2 x 2 Round with Radar Dish Print,38 +30262,Vehicle Base 4 x 14 x 1 2/3,36 +30263,"Vehicle, Trailer Base 6 x 12 x 1 1/3",36 +3027,Plate 6 x 16,14 +30271,"Baseplate 32 x 48 x 6 Raised with Corner Pits Castle, Adventurers",1 +30271pb01,Baseplate Raised 32 x 48 x 6 with 4 Corner Pits with Dark Bluish Gray and Light Bluish Gray Rock Print [8781],1 +30271px1,Baseplate Raised 32 x 48 x 6 with 4 Corner Pits and River Print [5986],1 +30271px2,Baseplate Raised 32 x 48 x 6 with 4 Corner Pits and Rock Path Print [6091 / 6098 / 10176],1 +30271px3,Baseplate Raised 32 x 48 x 6 with 4 Corner Pits and Rock Raiders Print [4990],1 +30271px4,Baseplate Raised 32 x 48 x 6 with 4 Corner Pits with Tan and Gray Rock Print [7419],1 +30271px6,Baseplate Raised 32 x 48 x 6 with Arctic Blue Ice Print [4748],1 +30272,Brick Arch 2 x 12 x 6 with Grooves,37 +30273,Minifig Helmet with Chinstrap and Wide Brim,27 +30274,Brick Special 2 x 3 x 3 with Cutout and Lion Head,5 +30275,Plate Special 1 x 8 with Hole and Bucket (Catapult),9 +30276,Minifig Headdress Jungle,27 +30276px1,Minifig Headdress Jungle with Colored Feather Print (Achu),27 +30277,Vehicle Base 2 x 8 x 1 1/3,36 +30278c01,Car Base 4 x 12 x 1.667 (Complete),36 +3028,Plate 6 x 12,14 +30283,Slope Inverted 45° 6 x 4 Double with 4 x 4 Cutout,3 +30284,Minifig Snowshoe [Long Front End],27 +30285,Wheel 18 x 14 with Tread Small Hub,29 +30286,"Rock Arctic Globe, Top",33 +30287,Minifig Hood Fur-lined,27 +30287p01,Minifig Hood Fur-lined with White Fur Trim Print,27 +30287pr01,Minifig Hood Fur-lined with Tan and Brown Fur Print,27 +30287pr02,Minifig Hood Fur-lined with Blue and Gray Fur and Jedi Order Insignia Print,27 +30287pr03,Minifig Hood Fur-lined with White and Gray Fur Print,27 +30287pr04,Minifig Hood Fur-lined with White and Tan Fur Print,27 +30288,Panel 3 x 6 x 6 Sloped with Window,23 +3029,Plate 4 x 12,14 +30292,Flag 7 x 3 with Rod,38 +30292pr0001,BANNER W. 3.18 STICK 3X8 NO.1,38 +30292px1,Flag 7 x 3 with Rod with Gold Lion and Snake Print [4709],38 +30293,"Rock Boulder, Top",33 +30293pat0002,"Rock Boulder, Top with Marbled Trans-Neon Orange Pattern",33 +30294,"Rock Boulder, Bottom",33 +30294pat0001,Rock Lower with Marbled Trans-Neon Orange Pattern,33 +30295,Vehicle Base 12 x 18 x 1 1/3,36 +30296,Brick Arch 2 x 14 x 2 1/3,37 +30296px1,Brick Arch 2 x 14 x 2 1/3 with Black and Yellow Stripes on Top Print,37 +30297,"FLAT TILE 2X2, NO. 326",24 +30298,Windscreen 10 x 14 x 2 2/3 Roll Cage,47 +30299,Cockpit 14 x 10 x 2 2/3,6 +303,Train Base 6 x 22 Type 1 Motor Cutout,36 +3030,Plate 4 x 10,14 +30300,"Vehicle, Tipper Bed 12 x 8 x 3 1/3",36 +30303,Plate Special 6 x 6 x 2/3 Cross with Dome,9 +30303pb01,Plate Special 6 x 6 x 2/3 Cross with Dome and Danger Stripes Print,9 +30304,Minifig Space Binoculars [aka Electrobinoculars],27 +30305c01,"Rock Monster (Rock Raiders), Complete Assembly",28 +3030a,Plate 4 x 10 with Groove,14 +3031,Plate 4 x 4,14 +3032,Plate 4 x 6,14 +30322,Antenna 8H Whip with Flag,38 +30323,Minifig Backpack with Sleeping Bag,27 +30324,Wheel Hard Plastic Spoked,29 +30325,Minifig Helmet with Breathing Apparatus and Headlights,27 +3033,Plate 6 x 10,14 +30332,Propeller 3 Blade 9 Diameter,35 +30338,Palm Tree Base and Trunk 4 x 4,28 +30339,"Plant, Tree Palm Leaf 4",28 +3034,Plate 2 x 8,14 +30340,Minifig Flotation Ring [Life Preserver],27 +30341,Plastic Playtable 40 x 64 with Handle and Two Bins,17 +30342,"Rock Arctic Globe, Bottom",33 +30343c01,"Window 4 x 10 x 2 Roof Slope Double, Complete Assembly, Trans-Dark Blue Glass",16 +30343c02,"Window 4 x 10 x 2 Roof Slope Double, Complete Assembly, Trans-Light Blue Glass",16 +30346c01,"Electric Light & Sound Rock Raiders Laser, Complete Assembly",45 +3034a,Plate 2 x 8 with Waffle Bottom,14 +3035,Plate 4 x 8,14 +30350a,Tile Special 2 x 3 with 2 Clips [Angled Clips],15 +30350b,Tile Special 2 x 3 with 2 Clips [Thick Open O Clips],15 +30350c,Tile Special 2 x 3 with 2 Clips [Thick U Clips],15 +30350p01,"Tile 2 x 3 with Horizontal Clips with Danger Chevron Print flag,mudflap",15 +30351c01,"Electric, Light & Sound Rocket Engine, Battery Box with White Cover (no Print)",45 +30354,"Electric, Light & Sound Rocket Engine, Nozzles",45 +30355,Wedge Plate 6 x 12 Left,49 +30356,Wedge Plate 6 x 12 Right,49 +30357,"Plate, Round Corner 3 x 3",21 +30358,"Engine, Strakes, 2 Top Studs, 2 x 2 Bottom Tile",35 +30359a,"Bar 1 x 8 with Brick 1 x 2 Curved Top End (Original, No Axle Holder)",32 +30359b,Bar 1 x 8 with Brick 1 x 2 Curved Top End (Axle Holder Inside Small End),32 +3035a,Plate 4 x 8 with Waffle Bottom,14 +3035oldpb01,Plate 4 x 8 with Waffle Bottom with Red Line on 1 Short Edge Print,14 +3035pb01,Plate 4 x 8 with Red Line on 1 Short Edge Print,14 +3036,Plate 6 x 8,14 +30360,Cylinder 3 x 6 x 2 2/3 Horizontal,20 +30361,"Brick, Round 2 x 2 x 2 Robot Body [Undetermined Bottom Type]",20 +30361a,Brick Round 2 x 2 x 2 Robot Body - without Bottom Axle Holder,20 +30361apr1,Cylinder 2 x 2 x 2 Robot Body with Red / Gray R2 Print,20 +30361apr4,Cylinder 2 x 2 x 2 Robot Body with Grey Squares Print,20 +30361aps1,Cylinder 2 x 2 x 2 Robot Body with Blue / Gray R2 Print [without Bottom Axle Holder],20 +30361b,"Brick, Round 2 x 2 x 2 Robot Body - with Bottom Axle Holder x Shape x Orientation",20 +30361c,"Brick, Round 2 x 2 x 2 Robot Body - with Bottom Axle Holder x Shape + Orientation",20 +30361cpr0001,Cylinder 2 x 2 x 2 Robot Body with Green / Gray R2 Print,20 +30361cpr1,Brick Round 2 x 2 x 2 Robot Body with Gray Lines and Red Print (R5-D4),20 +30361cpr1012,Brick Round 2 x 2 x 2 with Bottom Axle Holder 'x' Shape '+' Orientation (32829),20 +30361dps1,Brick Round 2 x 2 x 2 Robot Body with SW R2-D2 Print [with Bottom Axle Holder],20 +30361dps5,Cylinder 2 x 2 x 2 Robot Body with Copper / Silver R2 Print,20 +30361pr0001,Brick Round 2 x 2 x 2 Robot Body with 'BIG ONE' Print,20 +30361pr0002,Brick Round 2 x 2 x 2 Robot Body with Black Rectangle Outlines and Lime Droid Print [R7-A7],20 +30361pr0004,Brick Round 2 x 2 x 2 Robot Body with Blue Lines and Blue Print (R2-D2 Clone Wars),20 +30361pr0005,Brick Round 2 x 2 x 2 Robot Body with Gray Lines and Dark Green Print (R4-P44),20 +30361pr0006,Brick Round 2 x 2 x 2 Robot Body with Black Rectangle Outlines and White Droid Print [R7-D4],20 +30361pr0007,Brick Round 2 x 2 x 2 Robot Body with White and Black Print [7915],20 +30361pr0008,Brick Round 2 x 2 x 2 Robot Body with Metallic Gold Print (R8-B7),20 +30361pr0009,Brick Round 2 x 2 x 2 Robot Body with Hatch and Handle Print,20 +30361pr0010,Brick Round 2 x 2 x 2 Robot Body with Gray Lines and Dark Blue Print,20 +30361pr0011a,Brick Round 2 x 2 x 2 Robot Body with Gray Lines and Carrots Print [Christmas R2-D2],20 +30361pr0011b,Brick Round 2 x 2 x 2 Robot Body with Yellow Lines and Dark Red Droid Print [R5-F7],20 +30361pr0012,Brick Round 2 x 2 x 2 Robot Body with Black Lines and White Print (R3-D5),20 +30361pr0013,Brick Round 2 x 2 x 2 Robot Body with Red Lines and Red Droid Print [R4-P17],20 +30361pr0014,"Brick, Round 2 x 2 x 2 Robot Body with Red and Silver Print (R4-G0)",20 +30361pr1,Cylinder 2 x 2 x 2 Robot Body with R5-D4 Print,20 +30361pr1001,Brick Round 2 x 2 x 2 Robot Body with Gray and Dark Blue R2-D2 Print,20 +30361pr1002,Brick Round 2 x 2 x 2 Robot Body with Red R4-P17 Print,20 +30361pr1003,"Brick, Round 2 x 2 x 2 Robot Body with Black Lines and Silver Print (Festive Astromech Droid)",20 +30361pr1004,Brick Round 2 x 2 x 2 Robot Body with Black Lines and Green Print (R2 Unit),20 +30361pr1005,Brick Round 2 x 2 x 2 Robot Body with Black Lines and Silver and Tan Print (Astromech Droid),20 +30361pr1006,"ROUND BRICK 2X2X2, "NO 1006"",20 +30361pr1007,"ROUND BRICK 2X2X2, NO 1007",20 +30361pr1008,ROUND BRICK 2X2X2 NO. 1008,20 +30361px3,"Brick, Round 2 x 2 x 2 Robot Body with Silver and Copper Tubing Print [7133]",20 +30362,Leg Mechanical - Droid with Technic Pin,13 +30363,Slope 18° 4 x 2,3 +30363pb001,Slope 18 4 x 2 with SW Rebel A-wing Panel Print,3 +30363pb002,Slope 18 4 x 2 with Yellow Gator Skin Print,3 +30363pb003,Slope 18 4 x 2 with Scorpion Print,3 +30363pb004,Slope 18 4 x 2 with Two Eye Print,3 +30363pb005,Slope 18 4 x 2 with SW Aldar Beedo Symbol Print,3 +30363pb006,Slope 18 4 x 2 with '7033' and Rivets Print,3 +30363pb007,Slope 18 4 x 2 with Train Controls Print,3 +30363pb008,Slope 18° 4 x 2 with Ferrari Headlight Left Print,3 +30363pb009,Slope 18° 4 x 2 with Ferrari Headlight Right Print,3 +30363pr0006,Slope 18° 4 x 2 with Classic Space Logo Print,3 +30363ps1,Slope Brick 18 4 x 2 with Orange and Grey Rectangles Print,3 +30363ps2,Slope Brick 18 4 x 2 with Imperial Shuttle Cockpit Print,3 +30363px2,Slope 18 4 x 2 with Lime Green Semicircle Print,3 +30364,Hinge Brick 1 x 2 Locking with 1 Finger Vertical End,18 +30365,Hinge Brick 1 x 2 Locking with 2 Fingers Vertical End,18 +30366,Windscreen 3 x 6 x 5 Bubble,47 +30366pr0008,Windscreen 3 x 6 x 5 Bubble with Sith Infiltrator (7663) Print,47 +30366ps0,Windscreen 3 x 6 x 5 Canopy with Millennium Falcon Print,47 +30366ps1,Windscreen 3 x 6 x 5 Canopy with Octagonal Design Print,47 +30366ps2,Windscreen 3 x 6 x 5 Canopy with SW Blue Forcefield Print,47 +30366px3,Windscreen 3 x 6 x 5 Bubble with Sith Infiltrator Print [7151],47 +30367,Brick Round 2 x 2 Dome Top [Undetermined Bottom Type],24 +30367a,Brick Round 2 x 2 Dome Top - Blocked Open Stud without Bottom Axle Holder,20 +30367apr0007,Brick Round 2 x 2 Dome Top with Silver and Red Print (R5-D4) [without Bottom Axle Holder],20 +30367apr01,"Brick Round 2 x 2 Dome Top with Silver and Blue Print (R2-D2) [Blocked Open Stud, without Bottom Axle Holder]",20 +30367b,Brick Round 2 x 2 Dome Top - Blocked Open Stud with Bottom Axle Holder x Shape + Orientation,20 +30367bpr0001,Brick Round 2 x 2 Dome Top with Black Spots on Yellow Print (Buzz Droid),20 +30367bpr0003,Brick Round 2 x 2 Dome Top with Silver and Copper Print (R2-D5),20 +30367bpr0004,Brick Round 2 x 2 Dome Top with Copper Droid Print (R4-G9),20 +30367bpr0005,Brick Round 2 x 2 Dome Top with Silver and Green Print (R2-R7),20 +30367bpr0007,Brick Round 2 x 2 Dome Top with Silver and Red Print (R5-D4),20 +30367bpr0007a,Brick Round 2 x 2 Dome Top with Silver and Red Droid Print [R5-D4],20 +30367bpr0012,Brick Round 2 x 2 Dome Top with Pearl Dark Gray Print (R4-P44),20 +30367bpr01,Brick Round 2 x 2 Dome Top with Silver and Blue Print (R2-D2),20 +30367bpr04,Brick Round 2 x 2 Dome Top with Silver and Black Print (R4-P17),20 +30367c,Brick Round 2 x 2 Dome Top - Hollow Stud with Bottom Axle Holder x Shape + Orientation,20 +30367cpr0001,Brick Round 2 x 2 Dome Top with Black Spots on Yellow Print (Buzz Droid) [Recessed Stud],20 +30367cpr0003,Brick Round 2 x 2 Dome Top with Silver and Copper Print (R2-Q5),20 +30367cpr0006,Brick Round 2 x 2 Dome Top with Blue Print (R2-D2),20 +30367cpr0010,Brick Round 2 x 2 Dome Top with Silver and Lime Print (R7-A7),20 +30367cpr0011,Brick Round 2 x 2 Dome Top with Blue Print (R2-D2 Clone Wars),20 +30367cpr0012,Brick Round 2 x 2 Dome Top with Black Spots on Tan Print (Buzz Droid),20 +30367cpr0013,Brick Round 2 x 2 Dome Top with Reddish Brown Droid Print [R7-D4],20 +30367cpr0014,Brick Round 2 x 2 Dome Top with White and Black Print (R2-Q2),20 +30367cpr0015,Brick Round 2 x 2 Dome Top with Metallic Gold Droid Print [R8-B7],20 +30367cpr0017,Brick Round 2 x 2 Dome Top with Eyes and F1 Helmet Print (Francesco),20 +30367cpr0018,Brick Round 2 x 2 Dome Top with Squinting Eyes and F1 Helmet Print [Francesco],20 +30367cpr0020,Brick Round 2 x 2 Dome Top with Angry Eyes and Grin Print (Joker Bomb),20 +30367cpr0022,Brick Round 2 x 2 Dome Top with Gray Lines and Coal Pieces Print (Snowman R2-D2),20 +30367cpr0023,Brick Round 2 x 2 Dome Top with Green Print (R3-D5),20 +30367cpr0024,Brick Round 2 x 2 Dome Top with Silver Print (R4-P17 / Astromech Droid),20 +30367cpr01,Brick Round 2 x 2 Dome Top with Silver and Blue Print (R2-D2) [with Recessed Stud],20 +30367cpr1001,Brick Round 2 x 2 Dome Top with Dark Blue Print (R2-D2),20 +30367cpr1002,Brick Round 2 x 2 Dome Top with Silver Print (R4-P17 / Astromech Droid),20 +30367cpr1003,Brick Round 2 x 2 Dome Top with Dark Green Droid Print,20 +30367cpr1004,Brick Round 2 x 2 Dome Top with Green R2 Droid Print,20 +30367cpr1005,Brick Round 2 x 2 Dome Top with Tan Print (Astromech Droid) ,20 +30367cpr1006,"FINAL BRICK 2X2, "NO. 1006"",20 +30367cpr1007,"FINAL BRICK 2X2, NO. 1007",20 +30367cpr1008,"FINAL BRICK 2X2, NO. 1008",20 +30367cpr1010,Brick Round 2 x 2 Dome Top with Orange with Silver Band around Dome Pattern (R3-S1),20 +30368,Minifig Helmet SW Darth Vader,27 +30369,Minifig Helmet Scout Trooper,27 +3036a,Plate 6 x 8 with Square Underside Studholes,14 +3036oldpb01,Plate 6 x 8 with Waffle Bottom with Red Line on 1 Long Edge Print,14 +3036oldpb02,Plate 6 x 8 with Waffle Bottom with Red Line on 1 Short Edge Print,14 +3037,Slope 45° 2 x 4,3 +30370,Minifig Helmet Star Wars Rebel Pilot,27 +30370pr0001,Minifig Helmet SW Rebel Pilot with Red Rebel Logo Print,27 +30370pr0002,REBEL PILOT HELMET DEC NO 2,27 +30370pr0003,REBEL PILOT HELMET DEC NO 3,27 +30370pr0004,REBEL PILOT HELMET DEC NO 4,27 +30370pr0005,"REBEL PILOT HELMET NO. ""5""",27 +30370pr0006,"REBEL PILOT HELMET NO. ""6""",27 +30370pr0007,Headgear Helmet SW Rebel Pilot with Black and White Checkered Pattern (U-Wing Pilot),27 +30370pr01,Minifig Helmet SW Rebel Pilot with Dark Bluish Gray Rectangles Print,27 +30370pr0126,Minifig Helmet - SW Rebel Pilot with Red Rebel Logo and Black and Yellow Stripes Print (Y-Wing Pilot),27 +30370pr03,Minifig Helmet Rebel Pilot with Dark Bluish Gray Print,27 +30370pr04,"Minifig Helmet SW Rebel Pilot with Red Rebel Logo, Stripes and Side Print",27 +30370pr05,Minifig Helmet SW Rebel Pilot with Dark Red Markings Print,27 +30370pr06,"Minifig Helmet SW Rebel Pilot with Yellow Rebel Logo, Red and Yellow Stripes Print",27 +30370pr07,Minifig Helmet SW Rebel Pilot with White Grid on Dk Bluish Gray Print,27 +30370pr1000,"Minifig Helmet SW Rebel Pilot with Flat Silver Rectangles, Medium Dark Flesh and Black Circles Print",27 +30370ps1,Minifig Helmet SW Rebel Pilot with Yellow Grid on Light Bluish Gray Print,27 +30370ps2,Minifig Helmet Star Wars Rebel Pilot with Red Rebel Print,27 +30370ps3,Minifig Helmet Star Wars Rebel Pilot with Blue Rebel Symbol Print,27 +30370ps4,Minifig Helmet SW Rebel Pilot with Checkered Print,27 +30370ps5,Minifig Helmet SW Rebel Pilot with Yellow Grid on Grey Print,27 +30371,Minifig Head Gungan jar-jar binks,13 +30372,Windscreen 7 x 4 x 1 2/3,47 +30372pr0001,Windscreen 7 x 4 x 1 2/3 with SW Print,47 +30372pr0002,Windscreen 7 x 4 x 1 2/3 with Yellow Cockpit Frame Print,47 +30372pr1001,Windscreen 7 x 4 x 1 2/3 with SW Red Triangle Print,35 +30373,Slope Inverted 65° 6 x 6 x 2 Quad with Cutouts,3 +30374,Bar 4L (Lightsaber Blade / Wand),32 +30374px1,Bar 4L Lightsaber Blade with Flute Print,32 +30375,"Torso Mechanical, Battle Droid",13 +30375pr0001,"Torso Mechanical, Battle Droid with Orange Dot Insignia Print ",13 +30375pr0003,"Torso Mechanical, Battle Droid with Yellow Dot Insignia Print",13 +30375pr01,Torso Mechanical - Battle Droid with Red Dot Insignia Print,13 +30375pr02,"Torso Mechanical, Battle Droid with Tan Insignia and Three Dark Red Dots Print",13 +30375ps1,"Torso Mechanical, Battle Droid with Orange Insignia Print",13 +30375ps2,"Torso Mechanical, Battle Droid with Tan Insignia Print",13 +30375ps3,"Torso Mechanical, Battle Droid with Blue Insignia Print",13 +30376,"Legs Mechanical, Battle Droid",13 +30377,Arm Mechanical [Battle Droid],13 +30378,Minifig Head Modified Mechanical (Battle Droid),13 +30378pr0001,Minifig Head Modified Mechanical (Battle Droid) with Orange Insignia Print ,13 +30378pr0002,Minifig Head Modified Mechanical (Battle Droid) with Yellow Insignia Print,13 +30378pr0004,Minifig Head Modified Mechanical (Battle Droid) with Dark Red Insignia Print,13 +3037b,Slope 45 2 x 4 Smooth,3 +3037f,Slope 45 2 x 4 Transparent with 'Frosted' Horizontal Line,3 +3037pb003,Slope 45° 2 x 4 with Octan Text Print,3 +3037pb006,Slope 45° 2 x 4 with Headlights 2 Print,3 +3037pb009,Slope 45° 2 x 4 with Red 'Air Canada' Print (Set 611-2),3 +3037pc0,"Slope 45° 2 x 4 with '268', Map Lines, Bar Gauges Print",3 +3037pr0001,Slope 45° 2 x 4 with Gray Eyes on White Background Print,3 +3037pr0005,Slope 45° 2 x 4 with Headlight Print,3 +3037ps0,Slope 45° 2 x 4 with Red and Gold Triangles Left Print,3 +3037ps1,Slope 45° 2 x 4 with Red and Gold Triangles Right Print,3 +3037ps2,Slope 45° 2 x 4 with Red Dragon Left Print,3 +3037ps3,Slope 45° 2 x 4 with Red Dragon Right Print,3 +3037px11,Slope 45° 2 x 4 with Fish and Terrain Map Print,3 +3037px1w,"Slope 45° 2 x 4 with Headlights 1 Print, White Lines",3 +3037px2,Slope 45° 2 x 4 with Dark Gray and Black Lines Print,3 +3037px7,Slope 45° 2 x 4 with Control Panel and Radar Print,3 +3038,Slope 45° 2 x 3,3 +30381,Minifig Hood,27 +30382,Wedge 2 x 16 Triple,6 +30383,Hinge Plate 1 x 2 Locking with 1 Finger On Top,18 +30384,Windscreen 7 x 4 x 2 Round,47 +30384b,Windscreen 4 x 7 x 2 Round Extended Front Edge,47 +30385,Rock 1 x 1 Crystal 5 Point,33 +30386,Hinge Brick 1 x 2 Locking with 1 Finger Vertical End and 2 Fingers Vertical End,18 +30387,Hinge Brick 1 x 4 Locking with 1 Finger Vertical End and 2 Fingers Vertical End,18 +30387p01,Hinge Brick 1 x 4 Locking with Danger Stripes Black Print,18 +30387pr0002,Hinge Brick 1 x 4 Locking with Danger Stripes Red Print,18 +30388,Hinge Brick 1 x 6 Locking with 1 Finger Vertical End and 2 Fingers Vertical End,18 +30389,Hinge Brick 2 x 2 Locking with 1 Finger Vertical [Undetermined Type],18 +30389a,Hinge Brick 2 x 2 Locking with 1 Finger Vertical [No Axle Hole],18 +30389b,Hinge Brick 2 x 2 Locking with 1 Finger Vertical and Axle Hole [+ Opening],18 +30389c,Hinge Brick 2 x 2 Locking with 1 Finger Vertical and Axle Hole [X Opening],18 +3038p01,Slope 45° 2 x 3 with Yellow Line and Black Border Print,3 +3038pb01,Slope 45° 2 x 3 with Red and Black Cash Register Print,3 +3039,Slope 45° 2 x 2,3 +30390,Slope Inverted 45° 4 x 2 Double with Pins [Undetermined Axle Hole Type],24 +30390a,Slope Inverted 45° 4 x 2 Double with Pins and Axle Hole Type 1 [+ Opening],5 +30390b,Slope Inverted 45° 4 x 2 Double with Pins and Axle Hole Type 2 [X Opening],5 +30391,Tyre 30.4 x 14 Offset Tread,29 +30394,"Vehicle, Digger Bucket 7 Teeth 3 x 6 with Locking 2 Finger Hinge",36 +30395,Hook with Towball,34 +30396,Hinge 1 x 2 Locking with 2 Fingers and Towball Socket,18 +30397,Technic Link 1 x 5,26 +30398,Vehicle Tipper Drum 4 x 4 x 5 Cement Mixer with Two Pins,36 +30399,Support 8 x 18 x 3 Roadway Base,1 +3039f,Slope 45 2 x 2 Transparent with 'Frosted' Interior,3 +3039p01,Slope 45° 2 x 2 with Right Green Inverse 1/4 Disc Print,3 +3039p02,Slope 45° 2 x 2 with Left Green Inverse 1/4 Disc Print,3 +3039p03,Slope 45° 2 x 2 with Palm Tree Print,3 +3039p05,Slope 45° 2 x 2 with Black Grill Print,3 +3039p08,Slope 45° 2 x 2 with Police Yellow Star Badge Print,3 +3039p09,Slope 45° 2 x 2 with Fire Logo Print,3 +3039p0u,Slope 45° 2 x 2 with Red/Blue U-shaped Stripe Print,3 +3039p10,Slope 45° 2 x 2 with Yellow Grill Print,3 +3039p11,Slope 45° 2 x 2 with Black Phone Print,3 +3039p12,Slope 45° 2 x 2 with White Phone Print,3 +3039p15,Slope 45° 2 x 2 with Space Display Print,3 +3039p23,Slope 45° 2 x 2 with Computer Screen Print,3 +3039p32,"Slope 45° 2 x 2 with 12 Buttons, 3 Red Lamps, Black Panel Print",3 +3039p33,"Slope 45° 2 x 2 with 12 Buttons, 3 Red Lamps, Yellow Panel Print",3 +3039p34,Slope 45° 2 x 2 with Computer Panel Print,3 +3039p58,Slope 45° 2 x 2 with Divers Computer Print,3 +3039p68,Slope 45° 2 x 2 with MTron Logo Print,3 +3039p70,Slope 45° 2 x 2 with Buttons and 15.00 Print,3 +3039p71,Slope 45° 2 x 2 with Red '1' in Yellow Outline Print,3 +3039p72,Slope 45° 2 x 2 with Red '2' and Green Stripes Print,3 +3039p73,"Slope 45° 2 x 2 with ""3"" over Black Stripes Print",3 +3039p74,Slope 45° 2 x 2 with Black 4 over Red and Green Stripes Print,3 +3039p75,Slope 45° 2 x 2 with Red/White '5' and White Stripe Print,3 +3039p76,Slope 45° 2 x 2 with Red/Yellow '6' Print,3 +3039pb001,Slope 45 2 x 2 with Dark Screen and Blue Controls Print (Aquazone Hydronauts),3 +3039pb007,Slope 45° 2 x 2 with White Number 3 Print,3 +3039pb012,Slope 45° 2 x 2 with Headlights Print,3 +3039pb015,Slope 45° 2 x 2 with White Number 74 Print,3 +3039pb016,Slope 45 2 x 2 with RoboForce Gold and Red Display and Circuitry Print,3 +3039pb019,"Slope 45° 2 x 2 with Grid Screen, Shark, and Controls on Red Panel Print (Aquazone)",3 +3039pb020,Slope 45 2 x 2 with Tachometer and Red 63 km/h Print,3 +3039pb021,Slope 45 2 x 2 with RoboForce Red Chevron and Yellow Eye Print,3 +3039pb024,Slope 45° 2 x 2 with Cash Register and $39.95 Print,3 +3039pb025,Slope 45° 2 x 2 with '4' Hot Scorcher Print,3 +3039pb027,Slope 45° 2 x 2 with Alpha Team Arctic Print,3 +3039pb043,Slope 45° 2 x 2 with World City Gold Police Badge and Six Knobs Print,3 +3039pc0,Slope 45° 2 x 2 with Red Square and Circuitry Print,3 +3039pc1,Slope 45° 2 x 2 with Horizon Screen Print,3 +3039pc2,Slope Brick 45 2 x 2 with Flame and Control Panel Print fire,3 +3039pc3,Slope 45° 2 x 2 with Horizon Indicator Screen Print,3 +3039pc4,Slope 45° 2 x 2 with 3 Gauges and 3 Knobs Print,3 +3039pc5,Slope 45° 2 x 2 with Flight Control Print,3 +3039pc7,Slope 45° 2 x 2 with Spyrius Droid Image Print,3 +3039pc8,Slope Brick 45° 2 x 2 with Ice Planet Controls Print,3 +3039ph1,Slope 45° 2 x 2 with Sand Green Cash Register Print,3 +3039ph2,Slope 45° 2 x 2 with Pillow Print,3 +3039pr0001,Slope 45° 2 x 2 with Windows in Computer Screen Print,3 +3039pr0002,Slope 45° 2 x 2 with Radar and Disk Slot Black Print [White],3 +3039pr0005,Slope 45° 2 x 2 with Radar Screen Print,3 +3039pr0008,Slope 45° 2 x 2 with Death Star Trench Computer Print,3 +3039pr0013,Slope 45° 2 x 2 with Aircraft Multiple Flight Controls Print,3 +3039pr0014,Slope 45° 2 x 2 with Radar and Disk Slot Gray Print [Black],3 +3039pr0015,Slope 45° 2 x 2 with Complex Control Panel with Red and Green Lamps Print,3 +3039pr0016,Slope 45° 2 x 2 with Control Panel and Screen with Minifig Scan Print,3 +3039pr0017,Slope 45° 2 x 2 with Wedding Dress Print,3 +3039pr0018,Slope 45° 2 x 2 with Silver Control Panel and Screen Print,3 +3039pr0019,"Slope 45° 2 x 2 with Building on Blue Screen, Card Slot and Keypad Print",3 +3039pr0020,Slope 45° 2 x 2 with Cash Register Print,3 +3039pr0021,"Slope 45 2 x 2 with Controls, Buttons, and Navigation Display Print",2 +3039pr23,Slope 45° 2 x 2 with Star Destroyer Bridge Print,3 +3039pr62,Slope 45° 2 x 2 with Red Cash Register and '+15' Print,3 +3039ps2,Slope Brick 45° 2 x 2 with SW AT-AT Print,3 +3039ps3,Slope Brick 45° 2 x 2 with Green and Grey Controls Print,3 +3039ps4,Slope Brick 45° 2 x 2 with SW Blue Segmented Fish Print,3 +3039ps5,Slope 45° 2 x 2 with SW Droid Tri-Fighter Print,3 +3039pt1,Slope Brick 45° 2 x 2 with White Number 1 Print,3 +3039pt2,Slope Brick 45 2 x 2 with White Number 2 Print,3 +3039px14,Slope 45° 2 x 2 with Phone and Minifig Print,3 +3039px15,Slope 45° 2 x 2 with Black and Yellow Border and Screen Print (Rock Raiders),3 +3039px16,Slope 45° 2 x 2 with Black and Yellow Stripes Print,3 +3039px23,Slope 45 2 x 2 with Dinosaur Scales Print,3 +3039px37,"Slope 45° 2 x 2 with Heart Monitor, Red Buttons, and -19 Print",3 +3039px7,Slope 45° 2 x 2 with Video Editing Screen Print,3 +3039px8,Slope 45° 2 x 2 with Blue/Copper Radar Display Print,3 +3039px9,Slope 45 2 x 2 with LoM Elliptical Display Print,3 +30400,Brick 4 x 18,11 +30401,Baseplate Road 32 x 16 Ramp - Straight,1 +30401px1,"Baseplate Road 32 x 16 Ramp, Straight with White Centre Stripe Print [6600-2]",1 +30402,Baseplate 24 x 24 Roadway Ramp Curved,1 +30402px1,"Baseplate, Road 24 x 24 Ramp, Curved (16w surface) with White Center Stripe Print",1 +30407,"Hinge Plate 1 x 8 with Angled Side Extensions, Rounded Plate Underside",18 +30408,Minifig Helmet SW Stormtrooper [Plain],24 +30408pr0001,"Minifig Helmet SW Stormtrooper, TIE Pilot Print",27 +30408pr0002,"Minifig Helmet SW Stormtrooper, Dotted Mouth Print",27 +30408pr0003,"Minifig Helmet SW Stormtrooper, Dotted Mouth and Dirt Stains Print",27 +30408pr0005,"Minifig Helmet SW Stormtrooper, Dotted Mouth, Sand Blue Marks and Tan Dirt Stains Print ",27 +30408pr0006,"Minifig Helmet SW Stormtrooper, Jek-14 with Dark Bluish Gray and Light Bluish Gray Print",27 +30408pr0007,"Minifig Helmet SW Stormtrooper, Dotted Mouth, Blue and Sand Blue Print",27 +30408pr0008,"Minifig Helmet SW Stormtrooper, Dotted Mouth, Dark Azure and Dark Bluish Gray Print (Rebels Cartoon Style)",27 +30408pr0009a,"Minifig Helmet SW Stormtrooper, Special Forces Clone Trooper Print",27 +30408pr0009b,"Minifig Helmet SW Stormtrooper, Dotted Mouth, Dark Bluish Gray and Sand Blue Print (Shadow Stormtrooper)",27 +30408pr0011,Minifig Helmet SW Stormtrooper with 2 Chin Holes and Sand Blue Details with Dark Blue Outlines and Battle Damage Scratches print (Imperial Jetpack Trooper),27 +30408pr0012,"Minifig Helmet SW Stormtrooper with Thick Red Center Stripe on Top, 2 Chin Holes and Sand Blue details print (Imperial Shock Trooper)",27 +30408px2,Minifig Helmet SW Stormtrooper Print,27 +30408px3,"Minifig Helmet SW Stormtrooper, AT-AT Driver Print",27 +30408px3b,"Minifig Helmet SW Stormtrooper, AT-AT Driver with Large Black Triangle Print",27 +30408px5,"Minifig Helmet SW Stormtrooper, Shadow Trooper Print",27 +30409,Minifig Hair with 2 Buns (Princess Leia),13 +3040a,Slope 45° 2 x 1 - without Bottom Tube,3 +3040ap02,Slope Brick 45 2 x 1 without Bottom Tube with White Rotary Dial Print,3 +3040b,Slope 45° 2 x 1 with Bottom Pin,3 +3040bpr0001,LEGO Slope 45° 2 x 1 with right eye,2 +3040bpr0002,LEGO Slope 45° 2 x 1 with left eye,2 +3040bpr0003,Slope 45° 2 x 1 with Green and Red Buttons and Keypad Print,3 +3040p01,"Slope 45° 2 x 1 with 3 Red Lamps, 3 Yellow Buttons, Yellow Border Print",3 +3040p02,Slope Brick 45 2 x 1 with White Rotary Dial Print,3 +3040p03,Slope 45° 2 x 1 with Black Rotary Dial Print,3 +3040p04,"Slope 45° 2 x 1 with 3 White Buttons, Red and Green Lamps Print",3 +3040p05,Slope Brick 45 2 x 1 with Orange Microphone Print,3 +3040p32,Slope 45° 2 x 1 with 9 Large + 3 Small Black Buttons Print,3 +3040p33,Slope 45° 2 x 1 with 9 Large + 3 Small White Buttons Print,3 +3040p58,Slope 45° 2 x 1 with Black Crosshairs and Green Insectoid Print,3 +3041,Slope 45° 2 x 4 Double,3 +30410,Minifig Hair Pulled Back,13 +30414,Brick Special 1 x 4 with 4 Studs on One Side,5 +3041pb001,Slope 45° 2 x 4 Double with Blue and White Headlight Print,3 +3041pb002,Slope 45° 2 x 4 Double with AT-AT Cockpit Print,3 +3042,Slope 45° 2 x 3 Double,3 +30426,Minifig Cape Scalloped,27 +3043,Slope 45° 2 x 2 Double,3 +30432,"FOAL, W/ HOLE, DIA. 1.5, NO. 5",24 +3044a,Slope 45° 2 x 1 Double without Bottom Pin,3 +3044b,Slope 45° 2 x 1 Double with Ovoid Bottom Pin,3 +3044c,Slope 45° 2 x 1 Double with Inside Stud Holder,3 +3044p37,Slope 45° 2 x 1 Double with Double 3 Button Black Print,3 +3045,Slope 45° 2 x 2 Double Convex,3 +30456,Dinosaur Tail,28 +30457,Dinosaur Body Tyrannosaurus Rex,28 +30457c01,Tyrannosaurus Rex,28 +30459,"Dinosaur Head Tyrannosaurus Rex, Jaw Top",28 +30459pb02,Dinosaur Head Tyrannosaurus Rex Jaw Top Dark Gray and Red Print [6720],28 +30459pb05,"Dinosaur Head Tyrannosaurus Rex, Jaw Top, Set 1371 Print - Dark Orange and Light Gray Scales",28 +30460,Dinosaur - Triceratops Head,28 +30461,Dinosaur - Triceratops Body,28 +30462,Dinosaur / Dog Legs Unit,28 +30463,Dinosaur - Stegosaurus Body,28 +30464,Tyrannosaurus Rex Baby,28 +3046a,Slope 45° 2 x 2 Double Concave,3 +3046b,Slope 45° 2 x 2 Double Concave Smooth,3 +30473,Baseplate 32 x 32 Canyon Plate without Island,1 +30473px1,Baseplate Raised 32 x 32 Foothill with Tan Dirt Print [4291],1 +30474,Slope 33° 3 x 2 Smooth,3 +30474pb01,Slope 33 3 x 2 Smooth with McDonald's Hamburglar Print,3 +30474pb02,"Slope 33 3 x 2 Smooth with McDonald's Red-Hair, Blue-Nose Bear Face Print",3 +30474pb03,Slope 33 3 x 2 Smooth with McDonald's Grimace Print,3 +30474pb04,Slope 33 3 x 2 Smooth with McDonald's Fry Girl Print,3 +30474pb05,Slope 33 3 x 2 Smooth with McDonald's Ronald McDonald Print,3 +30474pb06,Slope 33 3 x 2 Smooth with McDonald's Girl Pigtails Print,3 +30474pb07,Slope 33 3 x 2 Smooth with McDonald's Chicken Head Print,3 +30474pb08,Slope 33 3 x 2 Smooth with McDonald's Yellow Monster Print,3 +30475,Minifig Hair Long and Half Braided,27 +30477,Baseplate 16 x 32 Roadway Ramp Inclined,1 +30477px1,"Baseplate Road 32 x 16 Ramp, Inclined with White Centre Stripe Print [6600-2]",1 +30478,Pteranodon,28 +30480,Minifig Head Protocol Droid,13 +30480pr1002,"C3-PO HEAD, DECO NO. 1002",13 +30480ps0,Minifig Head Modified C-3PO / K-3PO Protocol Droid with Yellow Eyes Print,13 +30483,Minifig Head Modified Wookiee [Plain],24 +30483pr01,Minifig Head Wookiee with Silver Bandolier / Black Nose Print,13 +30485,Windscreen 6 x 8 x 3 Curved Top Angled Canopy,47 +30485p60,Windscreen 6 x 8 x 3 Curved Canopy with Life on Mars Print,47 +30485ps0,Windscreen 6 x 8 x 3 Curved Canopy Millennium Falcon Print [7190],47 +30486c01,Kaadu (Gungan Beast),28 +30488,Sports Minifig Stand Soccer,27 +30488c01,Sports Minifig Stand Soccer with Spring and Green Pin [Complete Assembly],27 +30489,Sports Field Section 8 x 16,1 +30489pb01,Sports Field Section 8 x 16 with Basketball Lane Print,1 +30489pb02,Sports Field Section 8 x 16 with Basketball Free-Throw Line Print,1 +3048a,Slope 45° 2 x 1 Triple with Hollow Underside,3 +3048b,Slope 45° 2 x 1 Triple Smooth,3 +3048c,Slope 45° 2 x 1 Triple with Ovoid Bottom Pin,3 +3049,Slope Brick 45° 2 x 1 [Undetermined Underside],3 +30492,Sports Field Section 8 x 8,1 +30493,Sports Soccer Goalie Stick,27 +30497,Windscreen 12 x 6 x 2,47 +30498,"Raised Ramp 190 x 190 x 50 mm (Technic, Racers)",1 +3049a,Slope 45° 2 x 1 Double / Inverted - with Bottom Tube,3 +3049b,Slope 45° 1 x 2 Double / Inverted with Bottom Pin,3 +3049c,Slope 45° 2 x 1 Double / Inverted - with Hollow Bottom,3 +3049d,Slope 45° 2 x 1 Double / Inverted - with Bottom Stud Holder,3 +30501,Sports Soccer Carrying Case Back with Belt Clip,7 +30502,Sports Soccer Carrying Case / Goal Box,7 +30503,Wedge Plate 4 x 4 Cut Corner,49 +30504,Wedge Plate 8 x 8 Cut Corner,49 +30505,Wedge 3 x 3 Cut Corner,6 +30516,Turntable 4 x 4 Locking Grooved Base,18 +30517,"Support 2 x 2 x 10 Girder Triangular Vertical - Type 1 - Solid Top, 3 Posts",34 +30518,Support 2 x 16 x 2 Girder Triangular Horizontal,34 +30520,Brick Special 2 x 8 with Axle hole at each End,5 +30526,Brick Special 1 x 2 with 2 Pins,5 +30528,Brick Arch 1 x 8 x 6 [Portal],37 +30529,Minifig Martian Head with Clip,13 +30529p01,Minifig Martian Head with Clip with Eyes Plain Print,13 +30529p02,Minifig Martian Head with Clip with Eyelashes Print,13 +30530,Minifig Martian Legs,13 +30535,Engine 2 x 4 x 4,5 +30536,Windscreen 8 x 4 x 2 Curved Taper with Locking Dual 2 Fingers,47 +30540,Hinge Brick 1 x 2 Locking with 2 Fingers Horizontal End,18 +30541,Hinge Brick 1 x 2 Locking with 1 Finger Horizontal End,18 +30542,Arm Grabber Angled [Alpha Team],18 +30552,Hinge Cylinder 1 x 2 Locking with 1 Finger and Axle Hole On Ends,18 +30553,Hinge Cylinder 1 x 2 Locking with 2 Click Fingers and Axle Hole,18 +30554,Hinge Cylinder 1 x 3 Locking with 1 Finger and 2 Fingers On Ends [Undetermined Opening],18 +30554a,"Hinge Cylinder 1 x 3 Locking with 1 Finger and 2 Fingers On Ends, without Hole",18 +30554b,"Hinge Cylinder 1 x 3 Locking with 1 Finger and 2 Fingers On Ends, with Hole",18 +30556,Vehicle Racer Launcher,36 +30561,Minifig Helmet SW Royal Guard,27 +30562,Panel 4 x 4 x 6 Quarter Cylinder,23 +30562pr0001,Panel 4 x 4 x 6 Quarter Cylinder with Skull and Crossed Swords Print [3817],23 +30562px1,Panel 4 x 4 x 6 Quarter Cylinder with Stone Wall Print,23 +30562px2,Panel 4 x 4 x 6 Quarter Cylinder with Droid Escape Print [7106],23 +30563,Minifig Head Modified Watto,13 +30564,Minifig Alien Glymphid aldar beedo,13 +30565,Plate Round Corner 4 x 4,21 +30566,Tile Special 6 x 6 x 2/3 with 4 Studs and Embossed 'STAR WARS',15 +30567,Tile Special 6 x 6 x 2/3 with 4 Studs and Embossed 'CITY',15 +30568,Tile Special 6 x 6 x 2/3 with 4 Studs and Embossed 'Rock Raiders',15 +30569,Tile Special 6 x 6 x 2/3 with 4 Studs and Embossed 'Ninja',15 +3058,"Plate, Modified 6 x 16 with Motor Cutout (Undetermined Cutout Size)",24 +30584c01,Aero Tube Air Pump 16 x 14 x 13 Complete Assembly,36 +30585,"Hose Joiner 2 x 4 x 3 life on mars,aero tube",24 +30585a,Aero Tube Joiner 2 x 4 x 3,36 +30585b,Aero Tube Joiner 3 x 4 x 3,36 +30586,Plate Special 2 x 8 with Door Rail,9 +3058a,Plate Special 6 x 16 with Motor Cutout Narrow,9 +3058b,Plate Special 6 x 16 with Motor Cutout Wide,9 +30592,Brick Special 2 x 2 with Top Pin and 1 x 2 Side Plates,5 +30593,Minifig Martian Hypersled [Life On Mars],27 +30596,Rock 2 x 2 with Centre Stud,33 +30598,Brick Special 2 x 2 Racer Driver Round Head (Undetermined Print),5 +30599,Brick Special 2 x 2 Racer Driver Square Head (Undetermined Print),5 +30600,Slope Brick Curved Top 2 x 2 x 1 with Wings [Plain],11 +30600pb01,"Brick, Modified 2 x 2 No Studs, Sloped with Flared Wings and Warrior Print (Set 4569)",5 +30600pb02,"Brick, Modified 2 x 2 No Studs, Sloped with Flared Wings and Snake Print (Set 4577)",5 +30600pb03,"Brick Curved 2 x 2 No Studs, Sloped with Flared Wings and Duster Print [4576]",37 +30600pb04,"Brick, Modified 2 x 2 No Studs, Sloped with Flared Wings and Scratch Print (Set 4572)",5 +30600pb05,"Brick, Modified 2 x 2 No Studs, Sloped with Flared Wings and Loopin Print (Set 4568)",5 +30600pb06,"Brick, Modified 2 x 2 No Studs, Sloped with Flared Wings and Chill Print",5 +30600pb07,"Brick 2 x 2 No Studs, Sloped with Flared Wings and Gear Print [4566]",37 +30600pb08,"Brick, Modified 2 x 2 No Studs, Sloped with Flared Wings and Ghost Print (Set 4578)",5 +30601,"Brick, Modified 2 x 2 No Studs, Sloped with Angled Side Block Extensions",5 +30601pb01,"Brick, Modified 2 x 2 No Studs, Sloped with Angled Side Block Extensions and Freeze Print (Set 4579)",5 +30601pb02,"Brick, Modified 2 x 2 No Studs, Sloped with Angled Side Block Extensions and Spiky Print (Set 4571)",5 +30601pb03,"Brick, Modified 2 x 2 No Studs, Sloped with Angled Side Block Extensions and Surfer Print (Set 4567)",37 +30601pb04,"Brick, Modified 2 x 2 No Studs, Sloped with Angled Side Block Extensions and Shredd Print (Set 4570)",37 +30601pb05,"Brick, Modified 2 x 2 No Studs, Sloped with Angled Side Block Extensions and Lightor Lightning Bolt Print (Set 4573)",5 +30601pb06,"Brick, Modified 2 x 2 No Studs, Sloped with Angled Side Block Extensions and Rip Print (Set 4574)",37 +30601pb07,"Brick, Modified 2 x 2 No Studs, Sloped with Angled Side Block Extensions and Pulse Print (Set 4575)",5 +30602,"Brick Curved 2 x 2 Lip, No Studs",37 +30602pb001,"Brick Curved 2 x 2 Lip, No Studs with White Shark, Silver Stripes Print",37 +30602pb002,"Slope Curved 2 x 2 Lip, No Studs with Island Xtreme Stunts Logo and Flames Print",37 +30602pb003,"Slope Curved 2 x 2 Lip, No Studs with '29', Green/Black Stripes Print [4594]",37 +30602pb004,"Slope, Curved 2 x 2 Lip, No Studs with Orange/Black Chevrons Print (Frost)",37 +30602pb005,"Slope, Curved 2 x 2 Lip, No Studs with Mission Deep Sea 'TEE VEE' Print",37 +30602pb006,"Slope Curved 2 x 2 Lip, No Studs with Checkered Stripe Print [8350]",37 +30602pb007,"Slope, Curved 2 x 2 Lip, No Studs with '89', Lime/Black/White Stripes Print",37 +30602pb008,"Slope, Curved 2 x 2 Lip, No Studs with '84', Orange/Red/Silver Stripes Print",37 +30602pb010,"Slope, Curved 2 x 2 Lip, No Studs with '88', Green Fade/Black Stripes Print",37 +30602pb011,"Slope Curved 2 x 2 Lip, No Studs with Red/Black Lightning Print [4566]",37 +30602pb012,"Slope, Curved 2 x 2 Lip, No Studs with Red Flames/Blue Star Print (Shredd) - Set 4570",37 +30602pb013,"Slope, Curved 2 x 2 Lip, No Studs with Red Chevron and Black Fade Print (Warrior) - Set 4569",37 +30602pb014,"Slope, Curved 2 x 2 Lip, No Studs with White Checks and Flames Print (Spiky) - Set 4571",37 +30602pb015,"Slope, Curved 2 x 2 Lip, No Studs with '38' Print",37 +30602pb016,"Slope Curved 2 x 2 Lip, No Studs with Sleek Silver and Black Print",37 +30602pb017,"Slope, Curved 2 x 2 Lip, No Studs with Space Shuttle Print (Set 7467)",37 +30602pb018,"Slope, Curved 2 x 2 Lip, No Studs with Silver and Red with Circle Print",37 +30602pb019,"Slope, Curved 2 x 2 Lip, No Studs with Red/White/Black Flame Print",37 +30602pb020,"Slope, Curved 2 x 2 Lip, No Studs with Black Dots and Scoop on Red Print",37 +30602pb021,"Slope, Curved 2 x 2 Lip, No Studs with Gray Fade Triple Headlight Print",37 +30602pb022,"Slope Curved 2 x 2 Lip, No Studs with Yellow and Dark/Light Gray Headlamp Print [8380]",37 +30602pb023,"Slope, Curved 2 x 2 Lip, No Studs with White/Yellow/Red Life Preserver Print",37 +30602pb024,"Slope, Curved 2 x 2 Lip, No Studs with 'M' and Black/Red Print (Set 8384)",37 +30602pb025,"Slope, Curved 2 x 2 Lip, No Studs with Gauges and Police Blue Line Print",37 +30602pb026,"Slope, Curved 2 x 2 Lip, No Studs with Gauges and Yellow Line Print",37 +30602pb027,"Slope, Curved 2 x 2 Lip, No Studs with Face and Claws Print (Ghost) - Set 4578",37 +30602pb028,"Slope, Curved 2 x 2 Lip, No Studs with Printed Circuitry Print (Pulse) - Set 4575",37 +30602pb029,"Slope, Curved 2 x 2 Lip, No Studs with Snake Fangs Print (Snake) - Set 4577",37 +30602pb030,"Slope Curved 2 x 2 Lip, No Studs with Dark Red Panels, Black Grill, Republic Insignia Print [7261]",37 +30602pr0002,"Slope Curved 2 x 2 Lip, No Studs with Asian Characters and Number 7 Print",37 +30602pr0003,"Slope Curved 2 x 2 Lip, No Studs with Rivets and Dark Red Tiger Stripes Print",37 +30602pr0004,"Slope Curved 2 x 2 Lip, No Studs with Spider-Man Logo Print",37 +30602pr0005,"Slope Curved 2 x 2 Lip, No Studs with TMNT Foot Clan Logo in White Circle Print",2 +30602pr0006,"FRONT, 2X2, SPORT NO. 6",37 +30603,"Brick 2 x 2 No Studs, Sloped with 3 Side Pistons Raised Edges",3 +30603pb01,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Silver Engine Print",37 +30603pb02,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Red/Black Lines and Red Dots Print",37 +30603pb03,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Red and White Triangles Print",37 +30603pb04,"Brick Curved 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and '20' Print [4594]",37 +30603pb05,"Brick 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and '6', White Triangle and Orange Stripes Print [4582]",37 +30603pb06,"Brick 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and '30', Silver Stars Print [4591]",3 +30603pb07,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Lightor Lightning Bolt Print (Set 4573)",37 +30603pb08,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Freeze Blue/Silver/Orange Print",37 +30603pb09,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Silver/Black/Blue Print",3 +30603pb10,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and '99', Black Stripe, Flame Print",3 +30603pb11,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and '80', Red/White/Black/Blue Print",3 +30603pb13,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Silver/Red/Yellow Flame Print",3 +30603pb14,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Surfer Print (Set 4567)",37 +30603pb15,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Loopin Print (Set 4568)",3 +30603pb16,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Scratch Print (Set 4572)",37 +30603pb17,"Brick, Modified 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Rip Print (Set 4574)",37 +30603pb18,"Brick 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and Duster Print [4576]",37 +30603px1,"Brick Curved 2 x 2 No Studs, Sloped with 3 Side Pistons Raised and '46', Orange Pistons and Triangles Print [4595]",37 +30606,Baseplate 14 x 32 Jagged Edge,1 +30606px1,Baseplate Road 32 x 14 Jagged Edge with Dividing Line Print [1349],1 +30608,Minifig Hair Flat Top,13 +30613,"Brick, Arch 3 x 6 x 5 Ornamented",5 +30614,Roof Piece 6 x 6 x 3 Peaked,3 +30617,Windscreen 6 x 4 x 4 Curved with 2 Fingers,47 +30619,Cockpit 6 x 6 x 5 with Hinge,36 +3061stk01,Sticker Sheet for Set 3061-1 93272/4603014,17 +30620,Vehicle Trailer Base 8 x 30 x 3 1/3,36 +30621,"Technic Brick Special 12 x 2 with 2 Side and 2 End Pins, Technic Holes, and 4W Flared End",26 +30622,Grille 1 x 4 [Two Pins],36 +30622pb01,"Vehicle, Grille 1 x 4 with Two Pins with Fire Print",36 +30622pb02,"Vehicle, Grill 1 x 4 with Two Pins with Star & Headlights Print",36 +30622pb03,Vehicle Grill 1 x 4 with Two Pins with Flames and Eyes Print,36 +30624,Technic Connector 3 x 1 x 4 with Two Pins and Click Hinge,18 +30625,"Hinge Panel 1 x 4 x 3 2/3 with 6 holes, 2 studs on top, Locking 2 Fingers",18 +30626,"Vehicle, Spoiler 3 x 4 x 6",36 +30626pb01,Vehicle Spoiler 3 x 4 x 6 with Red and Yellow Jack Stone Print,36 +30626pb02,"Vehicle, Spoiler 3 x 4 x 6 with Flame Print",36 +30627,Cockpit 10 x 4 x 5 with Technic Holes,36 +3062a,Brick Round 1 x 1 Solid Stud,20 +3062b,Brick Round 1 x 1 Open Stud,20 +3062bpb001,"Brick, Round 1 x 1 Open Stud with Plankton Character Print (SpongeBob)",20 +3062bpb002,"Brick, Round 1 x 1 Open Stud with Letter 'A' Print",20 +3062bpb003,"Brick, Round 1 x 1 Open Stud with Letter 'A' Umlaut Print (Ä)",20 +3062bpb005,"Brick, Round 1 x 1 Open Stud with Letter 'C' Print",20 +3062bpb006,"Brick, Round 1 x 1 Open Stud with Letter 'D' Print",20 +3062bpb008,"Brick, Round 1 x 1 Open Stud with Letter 'F' Print",20 +3062bpb016,"Brick, Round 1 x 1 Open Stud with Letter 'N' Print",20 +3062bpb029,"Brick, Round 1 x 1 Open Stud with Letter 'Y' Print",20 +3062bpr0001,Brick Round 1 x 1 Open Stud with Human Heart Print,20 +3062bpr0002,"Brick, Round 1 x 1 Open Stud with Plankton Character Smile Print (SpongeBob)",20 +3062bpr0003,Brick Round 1 x 1 Open Stud with Paws and Heart Print,20 +3062bpr0004,Brick Round 1 x 1 Open Stud with Oxidising Agent Warning Sign Print [col11-10],20 +3062bpr0005,ROUND BRICK 1X1 NO.5 Buzz Cola,20 +3062bpr0006,ROUND BRICK 1X1 NO.6,20 +3062bpr0007,ROUND BRICK 1X1 NO. 7 Power Bolt,20 +3062bpr0008,ROUND BRICK 1X1 Bat Merch,24 +3062bpr0009,LEGO Round Brick 1 x 1 with Red SHARK REPELLENT and No Sharks Sign Decoration with Open Stud (29714),2 +3062bpr0010,ROUND BRICK 1X1 NO. 8,2 +3062bpr0011,ROUND BRICK 1X1 NO. 9,2 +3062bpr0012,"Brick Round 1 x 1 Open Stud with Robot Face with Blue Eyes, Black Vents and Brown Splotches Pattern (Tai-d)",2 +3062bpr0014,Brick Round 1 x 1 Open Stud with H2O print,20 +3062bpr36,"Brick, Round 1 x 1 Open Stud with HP Shrunken Head Print",20 +3062bpr37,Brick Round 1 x 1 Open Stud with Emperor Palpatine / Darth Sidious Print,20 +3062bpr40,Brick Round 1 x 1 Open Stud with SW IG-88 Head Print,2 +3062bpr42,"Brick, Round 1 x 1 Open Stud with SW Death Star Print",20 +3062c,"Brick Round 1 x 1 Solid Stud, No Bottom Groove",20 +3062oldpx1,"Brick, Round 1 x 1 Old - No Bottom Lip with Esso Extra Motor Oil Print (Sticker)",20 +3062pr0013,Brick Round 1 x 1 with Droid Head Print,20 +30632,Grille 6 x 4 x 3 [Two Pins & Two Pin Holes],36 +30633,Windscreen 4 x 6 x 4 Canopy with Hinge,47 +30633pb02,Windscreen 4 x 6 x 4 Canopy with Hinge with 'BRICK' Text and Grille Print,47 +30633pb03,Windscreen 4 x 6 x 4 Canopy with Hinge and Yellow Headlights Print,47 +30633pb04,Windscreen 4 x 6 x 4 Canopy with Hinge and Res-Q Print,47 +30633pb05,"Windscreen 4 x 6 x 4 Canopy with Hinge and Headlights, Grill, and L Print",47 +30633px1,Windscreen 4 x 6 x 4 Canopy with Hinge with Green/Orange Stripes Print,47 +30633px2,Windscreen 4 x 6 x 4 Canopy with Hinge and White Star and Vents Print,47 +30633px3,Windscreen 4 x 6 x 4 Canopy with Hinge and Flames Headlights Print,47 +30635,String Reel 1 x 4 x 2 Drum with Friction Spokes,31 +30636,String Reel 1 x 4 x 2 Holder with 2 Technic Pins,31 +30636c01,String Reel 1 x 4 x 2 Complete with String and Dark Gray Hook with Towball,31 +30636c02,String Reel 1 x 4 x 2 Complete with String and Light Gray Hose Nozzle T Handle,31 +30636c04,String Reel 1 x 4 x 2 Complete with String and Dark Bluish Gray Hook with Towball,31 +30637,"Container, Box Open Ended 2 x 4 x 4 with 1 hinge finger each end",7 +30639,"Container, Box Open Ended 4 x 4 x 4 with 1 hinge finger each end",7 +30639pb01,"Container, Box Open Ended 4 x 4 x 4 with 1 hinge finger each end, with Jail Bars and Star Print [4608]",7 +30639pb02,"Container Open Ended 4 x 4 x 4 with 1 hinge finger each end, with Octan Print",7 +3063a,Brick Round Corner 2 x 2 Macaroni without Stud Notch,20 +3063b,Brick Round Corner 2 x 2 Macaroni with Stud Notch,20 +3063stk01,Sticker Sheet for Set 3063-1 10099434/4650853,17 +30640,Vehicle Steering Wheel Holder 2 x 2,36 +30642,Vehicle Base 4 x 14 x 2 1/3,36 +30643,Vehicle Base 4 x 10 x 1 1/3 with 8 x 2 Recessed Center [4 Pins / Technic Holes],36 +30644,Propeller 2 Blade 4 x 22,35 +30645,Brick Special 12 x 12 Base with 4 Corner Pegs,5 +30646a,"Support 2 x 2 x 8 with Grooves, Two Sided Lattice and Top Peg",34 +30646b,"Support 2 x 2 x 8 with Grooves, Smooth On All Sides, Top Peg",34 +30647,Fairing 1 x 4 Side Flaring Intake with Two Pins,36 +30647pb01,"Vehicle, Fairing 1 x 4 Side Flaring Intake with Two Pins and Police Blue Checkered Print Left",36 +30647pb02,"Vehicle, Fairing 1 x 4 Side Flaring Intake with Two Pins and Police Blue Checkered Print Right",36 +30647pb04,"Vehicle, Fairing 1 x 4 Side Flaring Intake with Two Pins and Firefighter Print Right",36 +30647pb05,"Vehicle, Fairing 1 x 4 Side Flaring Intake with Two Pins and Firefighter Print Left",36 +30647pb06,"Vehicle, Fairing 1 x 4 Side Flaring Intake with Two Pins and Police Blue Line Print Right [4666]",36 +30647pb07,"Vehicle, Fairing 1 x 4 Side Flaring Intake with Two Pins and Police Blue Line Print Left",36 +30647px1,"Vehicle, Fairing 1 x 4 Side Flaring Intake with Two Pins and Res-Q Print Left [4622/4603]",36 +30647px2,"Vehicle, Fairing 1 x 4 Side Flaring Intake with Two Pins and Res-Q Print Right",36 +30648,Tyre 24 x 14 Shallow Tread (Tread Small Hub),29 +30649,Windscreen 8 x 4 x 5 Curved with 2 Fingers,47 +30649pr0001,Windscreen 8 x 4 x 5 Curved with 2 Fingers with Headlight and Fire print,47 +30649px1,"Windscreen 8 x 4 x 5 Canopy with 2 Fingers, Headlights and Res-Q Print",47 +30649px3,"Windscreen 8 x 4 x 5 Canopy with 2 Fingers, Headlights and Star Print [4611]",47 +3065,Brick 1 x 2 without Bottom Tube,11 +30650,Panel 2 x 8 x 8,23 +30650pb01,Panel 2 x 8 x 8 with A.I.R. Logo and Vents Print [4620],23 +30650pb02,Panel 2 x 8 x 8 with Bricks and 'FIRE DEPT' Print [4657],23 +30650pb03,Panel 2 x 8 x 8 with Res-Q Maritime Print [4610],23 +30650pb04,Panel 2 x 8 x 8 with Police Star Print,23 +30650pb05,Panel 2 x 8 x 8 with Ari's Village Deli Print [4860],23 +30650pb06,Panel 2 x 8 x 8 with Fast Food Print [4655],23 +30658,"Turntable 4 x 4 Top, Locking",20 +3065pb01,Brick 1 x 2 without Bottom Stud with White/Dark Pink 5-point Crown Print,2 +3066,Brick 1 x 4 without Bottom Tubes,11 +30663,"Vehicle Steering Wheel Small, 2 x 2",36 +3066p01,"Brick 1 x 4 w/o Centre Studs w LEGO Logo Open ""O""/Red Patt.",2 +3067,Brick 1 x 6 without Bottom Tubes,11 +3067p10,Brick 1 x 6 without Centre Studs with White STATION Print,2 +3067p11,Brick 1 x 6 without Centre Studs with TAXI Print,2 +3067p12,Brick 1 x 6 without Centre Studs with POLICE Print white,2 +3067p14,Brick 1 x 6 without Centre Studs with Yellow/Blue HOTEL Print,2 +3067pb01,Brick 1 x 6 without Bottom Tubes with White 'POLICE' Serif Print,2 +3067pb02,"Brick 1 x 6 without Bottom Tubes with White Knife & Fork, Cup & Saucer Print",2 +3067pt1,Brick 1 x 6 without Centre Studs with Red/White Shell Print,2 +3068a,Tile 2 x 2 without Groove,19 +3068ap01,"Tile 2 x 2 without Groove with Train Point Right, 1 Print",10 +3068ap02,"Tile 2 x 2 without Groove with Train Point Left, 2 Print",10 +3068ap17,Tile 2 x 2 with Black Circle Small Print (without bottom Groove),10 +3068b,Tile 2 x 2 with Groove,19 +3068bor0323,"FLAT TILE 2X2, arkham asylum print",10 +3068bp00,Tile 2 x 2 with Yellow Arrow without Border Print,10 +3068bp01,Tile 2 x 2 with Car Wash and Brush Print,10 +3068bp02,Tile 2 x 2 with Car Wash and Water Drops Print,10 +3068bp04,Tile 2 x 2 with Yellow 4 and Stripes Print,10 +3068bp05,Tile 2 x 2 with White Arrow on Blue Disc Print,10 +3068bp06,Tile 2 x 2 with Red Warning Triangle Print,10 +3068bp07,Tile 2 x 2 with Grill Black Print,10 +3068bp08,Tile 2 x 2 with Arrow Thin Yellow with Black Border Print,10 +3068bp0a,"Tile 2 x 2 with Safari Print Safari, Zebra, Stripes, Zebra Stripes",10 +3068bp0b,Tile 2 x 2 with Red and Blue Windsurfer Print,10 +3068bp10,Tile 2 x 2 with Explorien Logo Print,10 +3068bp11,"Tile 2 x 2 with Launch Command Logo Print town,space shuttle,spaceport",10 +3068bp12,Tile 2 x 2 with Radar Scope Print,10 +3068bp14,"Tile 2 x 2 with Map, River Mountains Cross Handwriting Print",10 +3068bp16,Tile 2 x 2 with Large Black Circle Print,10 +3068bp17,Tile 2 x 2 with Black Small Circle Print,10 +3068bp18,Tile 2 x 2 with Black Wide Arrow Print,10 +3068bp22,Tile 2 x 2 with Tool Sledgehammer Print,10 +3068bp23,Tile 2 x 2 with Tool Wrench Print,10 +3068bp26,Tile 2 x 2 with White V Print,10 +3068bp30,Tile 2 x 2 with Blue and Yellow Map Print,10 +3068bp31,"Tile 2 x 2 with Map, Handwriting, River, and Red X Print",10 +3068bp40,Tile 2 x 2 with Black Scroll and Red Spell Print,10 +3068bp51,"Tile 2 x 2 with Blue Screen, Silver and Red Panel Print",10 +3068bp52,Tile 2 x 2 with Red Cross Print,10 +3068bp54,Tile 2 x 2 with UFO Print,10 +3068bp57,Tile 2 x 2 with Classic Fire Logo Small Print,10 +3068bp60,Tile 2 x 2 with Shell Logo Print,10 +3068bp61,"Tile 2 x 2 with Ice Planet 2002 Logo, Globe with Ice Print",10 +3068bp65,Tile 2 x 2 with Black Stove Top 3 Burner Print (Sticker),10 +3068bp66,Tile 2 x 2 with Coast Guard Shield and Stripes Print,10 +3068bp67,Tile 2 x 2 with Red Quarter Rings Print,10 +3068bp68,Tile 2 x 2 with MTron Logo Print,10 +3068bp69,Tile 2 x 2 with Space Police II Print logo,10 +3068bp70,Tile 2 x 2 with Gauges Print,10 +3068bp80,Tile 2 x 2 with Keyboard and 019 Print,10 +3068bp81,Tile 2 x 2 with Number 1 Print,10 +3068bp82,"Tile 2 x 2 with Red ""2"" and White Striped Wedge Print",10 +3068bp83,"Tile 2 x 2 with White Bold ""2"" Print",10 +3068bp87,Tile 2 x 2 with Number 7 Print,10 +3068bpa0,Tile 2 x 2 with Map Red/Blue/Green Border Print (Needs Work),10 +3068bpb0002,Tile 2 x 2 with Prisoner ID Print,10 +3068bpb0005,Tile 2 x 2 with 4 Spiders Print,10 +3068bpb0008,Tile 2 x 2 with Newspaper Daily Bugle Print,10 +3068bpb0013,Tile 2 x 2 with Arcing Electricity Print,10 +3068bpb0014,Tile 2 x 2 with Scroll and Potions Print (HP),10 +3068bpb0016,Tile 2 x 2 with Ice Cream Cone Print,10 +3068bpb0019,"Tile 2 x 2 with Graduated Cylinder and Graph, Green Print",10 +3068bpb0020,Tile 2 x 2 with DNA Double-Helix Print,10 +3068bpb0021,"Tile 2 x 2 with Computer Monitor Print 1, without Power Switch Icon",10 +3068bpb0022,Tile 2 x 2 with Number 18 and Medium Blue / Yellow Stripes Print,10 +3068bpb0023,Tile 2 x 2 with Black and Yellow Danger Stripes and Round Hatch Print,10 +3068bpb0034,Tile 2 x 2 with Black / Orange Music Note Print,10 +3068bpb0035,"Tile 2 x 2 with Red X, Extreme Team Print",10 +3068bpb0037,Tile 2 x 2 with Stethoscope and Clipboard Print,10 +3068bpb0038,Tile 2 x 2 with Blue EMT Star of Life Print,10 +3068bpb0039,Tile 2 x 2 with Green and Red Ogel Orb and Gauges Print,10 +3068bpb0041,Tile 2 x 2 with Garlic Print,10 +3068bpb0043,"Tile 2 x 2 with Graduated Cylinder and Graph, Blue Print [7113]",10 +3068bpb0044,Tile 2 x 2 with 3 Red Arrows Print,10 +3068bpb0046,Tile 2 x 2 with Green and Brown Print,10 +3068bpb0050,Tile 2 x 2 with Apple Print,10 +3068bpb0051,Tile 2 x 2 with Butterfly Print,10 +3068bpb0052,Tile 2 x 2 with Bird Print,10 +3068bpb0053,Tile 2 x 2 with Flower Ring Print,10 +3068bpb0054,Tile 2 x 2 with Transport Text on Crate Print,10 +3068bpb0055,Tile 2 x 2 with Racers M Print (Set 8356),10 +3068bpb0056,"Tile 2 x 2 with Bird, Fish, Flowers in Quatrefoil Magenta/Gold/Medium Orange Print",10 +3068bpb0060,Tile 2 x 2 with 'Love' and Female Singer Print,10 +3068bpb0061,Tile 2 x 2 with Fingerprints File Jack Print,10 +3068bpb0067,Tile 2 x 2 with Map Orient China Print,10 +3068bpb0069,Tile 2 x 2 with Alpha Team Arctic Lightning Logo Print,10 +3068bpb0070,Tile 2 x 2 with Alpha Team Arctic Oval Display Print,10 +3068bpb0074,Tile 2 x 2 with Classic Fire Logo Large Print,10 +3068bpb0076,Tile 2 x 2 with Green Frog Print,10 +3068bpb0077,Tile 2 x 2 with Curled Snake Print,10 +3068bpb0078,Tile 2 x 2 with Toadstool (Mushroom) Cluster Print,10 +3068bpb0079,Tile 2 x 2 with White 'X' Print,10 +3068bpb0086,Tile 2 x 2 with Dark Green Solid Arch Print,10 +3068bpb0087,Tile 2 x 2 with Skeleton Head and Torso Print,10 +3068bpb0088,Tile 2 x 2 with Skeleton Hips and Legs Print,10 +3068bpb0091,Tile 2 x 2 with Coat of Arms Beauxbatons Print,10 +3068bpb0093,Tile 2 x 2 with Coat of Arms Durmstrang Stag Print,10 +3068bpb0094,Tile 2 x 2 with Computer Monitor Print 2,10 +3068bpb0125,Tile 2 x 2 with Avionics Green and Light Gray Print 1 (Sticker) - Set 8856,10 +3068bpb0143,Tile 2 x 2 with '7433' and Air Hunting Print,10 +3068bpb0169,Tile 2 x 2 with RCX 2.0 Programmable Brick Face Print,10 +3068bpb0175,Tile 2 x 2 with 'PARKEN' and Red Streak Print,10 +3068bpb0176,Tile 2 x 2 with '12-15 Februar 2009' Print,10 +3068bpb0177,Tile 2 x 2 with TV2 Logo Black Print,10 +3068bpb0178,Tile 2 x 2 with LEGO World Print Large Left,10 +3068bpb0179,Tile 2 x 2 with LEGO World Print Large Middle,10 +3068bpb0180,Tile 2 x 2 with LEGO World Print Large Right,10 +3068bpb0187,Tile 2 x 2 with TV Screen with Man and 'CITY' Print (Sticker) - Set 7639,10 +3068bpb0215,Tile 2 x 2 with '22-27 Oktober 2009' Print,10 +3068bpb0216,Tile 2 x 2 with De Bouwsteen Logo Print,10 +3068bpb0217,Tile 2 x 2 with Ijsselhallen Logo Print,10 +3068bpb0218,Tile 2 x 2 with LEGO World Logo Right Half Print,10 +3068bpb0219,Tile 2 x 2 with LEGO World Logo Left Half Print,10 +3068bpb0243,Tile 2 x 2 with Star Wars Mosaic Falcon and X-wing Print 21 - Front of cockpit,10 +3068bpb0373,Tile 2 x 2 with TV2 Logo Red Print,10 +3068bpb0383,Tile 2 x 2 with Ribbon and Holly Print,10 +3068bpb0409,Tile 2 x 2 with LEGO World Print Medium Left,10 +3068bpb0410,Tile 2 x 2 with LEGO World Print Medium Middle,10 +3068bpb0411,Tile 2 x 2 with LEGO World Print Medium Right,10 +3068bpb0412,Tile 2 x 2 with BC Logo Red Print,10 +3068bpb0413,Tile 2 x 2 with '17-20 Februar 2011' Print,10 +3068bpb0414,Tile 2 x 2 with '18-21 Februar 2010' Print,10 +3068bpb0481,Tile 2 x 2 with Dark Pink Butterfly Print,10 +3068bpb0482,Tile 2 x 2 with Ninjago Mask Green Print,10 +3068bpb0483,Tile 2 x 2 with '16-19 Februar 2012' Print,10 +3068bpb0490,Tile 2 x 2 with Pirates of the Caribbean Print 1,10 +3068bpb0492,Tile 2 x 2 with Pirates of the Caribbean Print 3,10 +3068bpb0581,Tile 2 x 2 with Plain Red Print,10 +3068bpb0606,Tile 2 x 2 with Minifig Head with Blue Cap and 'F' Print,10 +3068bpb0607,Tile 2 x 2 with Lego Logo and 'amilieda' Print,10 +3068bpb0608,Tile 2 x 2 with Minifig Head with Blue Cap and 'ge' Print,10 +3068bpb0609,Tile 2 x 2 with Minifig Legs and Right Hand Print,10 +3068bpb0610,Tile 2 x 2 with '2009' and 'Production HMV.' Print,10 +3068bpb0611,Tile 2 x 2 with Minifig Legs and Left Hand Print,10 +3068bpb0742,Tile 2 x 2 with Legends Of Chima Laval Print,10 +3068bpb0743,Tile 2 x 2 with '14.-17. Februar 2013' Print,10 +3068bpb0744,Tile 2 x 2 with Number 5 and Bricks Print,10 +3068bpf1,Tile 2 x 2 with Red Top Print,10 +3068bpf4,Tile 2 x 2 with Fabuland Raccoon Print,10 +3068bpf5,Tile 2 x 2 with Number 1 Fabuland Print,10 +3068bpf6,Tile 2 x 2 with Number 2 Fabuland Print,10 +3068bpf7,Tile 2 x 2 with Number 3 Fabuland Print,10 +3068bpf8,Tile 2 x 2 with Number 4 Fabuland Print,10 +3068bpf9,Tile 2 x 2 with Number 5 Fabuland Print,10 +3068bpfa,Tile 2 x 2 with Fabuland Ball Print,10 +3068bpfb,"Tile 2 x 2 with Fabuland Cake, Icing and Red Cherry Print",10 +3068bpfc,"Tile 2 x 2 with Fabuland Pretzel, '2', and Star Print [3796]",10 +3068bpr0001,Tile 2 x 2 with Medical Chart Print,10 +3068bpr0002,Tile 2 x 2 with Silver 'Brick Fever' and Lights Print,10 +3068bpr0003,Tile 2 x 2 with 'Certificate of Graduation' and Red Ribbon on Scroll Print,10 +3068bpr0004,Tile 2 x 2 with Black Chest X-Ray Print [col06-11],10 +3068bpr0005,"Tile 2 x 2 with 'dj rhuzky', 'hollywood dawez' and Black Heads with Glasses Print",10 +3068bpr0006,Tile 2 x 2 with Newspaper 'City Financial News' Print,10 +3068bpr0007,"Tile 2 x 2 with 'VENI, VIDI, VICI' on Scroll Print",10 +3068bpr0008,Tile 2 x 2 with Newspaper 'OLD TIMES' Print,10 +3068bpr0009,Tile 2 x 2 with Gold Bow Print [col11-7],10 +3068bpr0010,Tile 2 x 2 with 'Four score and seven years ago...' on Sheaf of Paper Print,10 +3068bpr0011,Tile 2 x 2 with 'Super Secret Plan: Taco Tuesday' and Coffee Cup Rings Print,10 +3068bpr0012,Tile 2 x 2 with 'To build or not to build' Script on Ink-Splattered Parchment Print,10 +3068bpr0013,Tile 2 x 2 with Newspaper 'Springfield Shopper' Print,10 +3068bpr0014,Tile 2 x 2 with 'DONUT FANCY' and Doughnut in Minifig Hand Print,10 +3068bpr0015,Tile 2 x 2 with Red 'BICLOPS' Print,10 +3068bpr0016,"Tile 2 x 2 with 'I CHOO- CHOO- CHOOSE YOU', 'HAPPY VALENTINES' and Train Print",10 +3068bpr0017,Tile 2 x 2 with Red and Green Pizza Takeout Box Print,10 +3068bpr0019,LEGO Tile 2 x 2 with Decoration with Groove (29716),10 +3068bpr0020,LEGO Tile 2 x 2 with Arkham Asylum Decoration with Groove (31960),10 +3068bpr0071,Tile 2 x 2 with SW Rebel Mechanical Print,10 +3068bpr0095,"Tile 2 x 2 with Computer Monitor Print 1, with White Power Switch Icon",10 +3068bpr0108,Tile 2 x 2 with Alpha Team Arctic Blue Rectangle Grid Display Print,10 +3068bpr0131,Tile 2 x 2 with Scroll [Two Spindles] Print,10 +3068bpr0136,"Tile 2 x 2 with Computer Monitor Print 1, with White Power Switch Icon",10 +3068bpr0137,"Tile 2 x 2 with Computer Monitor Print 1, with Gray/Black Power Switch Icon",10 +3068bpr0138,Tile 2 x 2 with Musical Score Print,10 +3068bpr01381,Tile 2 x 2 with Black Trident Print [7773 / 7775],10 +3068bpr0139a,"Tile 2 x 2 with Map River, Dark Tan Mountains, Handwriting and Red X Print",10 +3068bpr0139b,"Tile 2 x 2 with Map River, Ruins, and Red X Print [8632 / 10210]",10 +3068bpr0140,Tile 2 x 2 with Jet Attacking Truck and 'ATTACK WARNING' Screen Print [8635],10 +3068bpr0142,Tile 2 x 2 with 2 Black Dots Print,10 +3068bpr0143,Tile 2 x 2 with 3 Black Dots Print,10 +3068bpr0144,Tile 2 x 2 with 4 Black Dots Print,10 +3068bpr0145,Tile 2 x 2 with 5 Black Dots Print,10 +3068bpr0148,Tile 2 x 2 with 6 Black Dots Print,10 +3068bpr0155,Tile 2 x 2 with White Spanner / Screwdriver Print,10 +3068bpr0156,Tile 2 x 2 with White Tree with Bird Print,10 +3068bpr0158,Tile 2 x 2 with White House Print,10 +3068bpr0159,Tile 2 x 2 with White Car Print,10 +3068bpr0160,Tile 2 x 2 with White Question Mark Print,10 +3068bpr0161,Tile 2 x 2 with 2 Black Dots and Black Triangle Print,10 +3068bpr0162,Tile 2 x 2 with 1 Black Dot and Pyramid Print,10 +3068bpr0163,Tile 2 x 2 with LEGO Logo Type 2 Print,10 +3068bpr0164,Tile 2 x 2 with 3 Black Dots and Mummy Head Print,10 +3068bpr0166,Tile 2 x 2 with Alien Characters and Key Controls Print,10 +3068bpr0167,Tile 2 x 2 with Nautical Map and Red 'X' Print,10 +3068bpr0168,Tile 2 x 2 with Black 'x2' Print,10 +3068bpr0169,Tile 2 x 2 with Black 'YO' Print,10 +3068bpr0170,Tile 2 x 2 with Dragon and Scroll with 'You are far more powerfull than you would ever imagine...' Print,10 +3068bpr0171,Tile 2 x 2 with Flight Controls Print,10 +3068bpr0173,Tile 2 x 2 with Skull and Crossbones Print,10 +3068bpr0174,Tile 2 x 2 with Classic Space Logo on Red and Blue Background Print,10 +3068bpr0175,Tile 2 x 2 with Compass East 'E' in Lime Pointer Print,10 +3068bpr0176,Tile 2 x 2 with Compass North 'N' in Light Blue Pointer Print,10 +3068bpr0177,Tile 2 x 2 with Compass South 'S' in Dark Red Pointer Print,10 +3068bpr0178,Tile 2 x 2 with Compass West 'W' in Tan Pointer Print,10 +3068bpr0179,Tile 2 x 2 with HP Marauder's Map Print,10 +3068bpr0180,Tile 2 x 2 with Hogwarts Coat of Arms Print [3862 / 4767],10 +3068bpr0181,Tile 2 x 2 with 1 Black Dot Print,10 +3068bpr0182,Tile 2 x 2 with 4 White Arrows in Circle and Border on Reddish Brown Background Print,10 +3068bpr0183,Tile 2 x 2 with Torpedo and Bubbles in Porthole Print,10 +3068bpr0184,Tile 2 x 2 with Newspaper 'THE QUIBBLER' Print,10 +3068bpr0185,Tile 2 x 2 with Newspaper 'Daily Prophet' Print,10 +3068bpr0187,Tile 2 x 2 with Red Skull in Black Circle Print,10 +3068bpr0188,Tile 2 x 2 with Map Pyramid and Sphinx Print,10 +3068bpr0192,Tile 2 x 2 with White Five-Point Star Print,10 +3068bpr0193,Tile 2 x 2 with Clipboard and Photos Print,10 +3068bpr0194,"Tile 2 x 2 with Map Cave, Tree, House, Waterfall Print",10 +3068bpr0197,Tile 2 x 2 with Sailing Ship and Moon Print,10 +3068bpr0200a,Tile 2 x 2 with Blue Eyes on White Background Print,10 +3068bpr0200b,"Tile 2 x 2 with 3 Hexagons, Spaceship and Alien Characters Print",10 +3068bpr0201,Tile 2 x 2 with Newspaper 'THE LEGO NEWS' Print,10 +3068bpr0202,Tile 2 x 2 with Face Print,10 +3068bpr0203,Tile 2 x 2 with Helicopter Print,10 +3068bpr0204,Tile 2 x 2 with Helicopter and Stack of '100' Banknotes Print,10 +3068bpr0205,Tile 2 x 2 with 2 Stacks of '100' Banknotes Print,10 +3068bpr0206,Tile 2 x 2 with SW Imperial and Rebel Logo Print,10 +3068bpr0208,"Tile 2 x 2 with Dino Hunting Screen, Buttons and Toggle Print",10 +3068bpr0210,Tile 2 x 2 with Train in Tunnel Print,10 +3068bpr0211,Tile 2 x 2 with SW Rebel Logo Print,10 +3068bpr0212,Tile 2 x 2 with SW Imperial Logo Print,10 +3068bpr0213,Tile 2 x 2 with SW Droid T7-O1 Panel Print [9497],10 +3068bpr0215,Tile 2 x 2 with Gold Star with Brick in Center Print,10 +3068bpr0216,Tile 2 x 2 with Map of Lonely Mountain Print,10 +3068bpr0217,Tile 2 x 2 with Raven Head Print,10 +3068bpr0218,Tile 2 x 2 with 1 Black Dot and Skunk Head Print,10 +3068bpr0219a,Tile 2 x 2 with 2 Black Dots and Sword Print,10 +3068bpr0219b,Tile 2 x 2 with Street Level Map and Red 'X' Print,10 +3068bpr0220,Tile 2 x 2 with Gold One Ring on Black Print,10 +3068bpr0221,Tile 2 x 2 with Joker Face and Black Dot Print,10 +3068bpr0222,Tile 2 x 2 with Joker Face on Yellow Burst Print,10 +3068bpr0223,Tile 2 x 2 with Batman Symbol and 2 Dots Print,10 +3068bpr0224,Tile 2 x 2 with Strawberry Jam Print,10 +3068bpr0225,"Tile 2 x 2 with Stylised 'Menu, Hors D'Oeuvres, Entrees and Desserts' Print [10243]",10 +3068bpr0228,Tile 2 x 2 with Radioactive Man Comic Print,10 +3068bpr0229,Tile 2 x 2 with 'A+ Lisa' Homework Print,10 +3068bpr0231,Tile 2 x 2 with White Stripe and Rectangles (SW Gonk Droid) Print ,10 +3068bpr0236,Tile 2 x 2 with Dark Brown Minecraft Grid Print,10 +3068bpr0239,Tile 2 x 2 with 'WANTED' Western Bandit Poster Print,10 +3068bpr0240,Tile 2 x 2 with Map with Red 'X' and Blue and Yellow Print,10 +3068bpr0241,Tile 2 x 2 with 'WANTED' Minifig Front and Side Mugshots Poster Print,10 +3068bpr0242,Tile 2 x 2 with Map Heartlake City Bay Print,10 +3068bpr0243,"Tile 2 x 2 with Map Blue and Green with Sailing Ship, Treasure Chest and Red 'X' Print",10 +3068bpr0244,Tile 2 x 2 with Gold and Magenta Oriental Cushion Print,10 +3068bpr0245,FLAT TILE 2X2 NO. 245,10 +3068bpr0246a,"Tile 2 x 2 with Light Purple, Medium Purple and Purple Minecraft Geometric Print",10 +3068bpr0246b,"Tile 2 x 2 with Minifigure, Arrow, Ruler and Molecule (Brainstein's Classified Notes) Print",10 +3068bpr0247,Tile 2 x 2 with Elven Key Map Print,10 +3068bpr0248,FLAT TILE 2X2 NO. 248,10 +3068bpr0249,FLAT TILE 2X2 NO. 249,10 +3068bpr0250,FLAT TILE 2X2 with Everyman Comic print,10 +3068bpr0251,Tile 2 x 2 with 6 Triangles in Rainbow Colors Print,10 +3068bpr0252,FLAT TILE 2X2 NO. 252,10 +3068bpr0253,FLAT TILE 2X2 NO. 253,10 +3068bpr0254,Tile 2 x 2 with Homer's Head X-Ray Print,10 +3068bpr0255,"Tile 2 x 2 with Prize Ribbon, Dog and 'What's at Heart?' Newspaper Print",10 +3068bpr0257,FLAT TILE 2X2 NO. 257,10 +3068bpr0258,FLAT TILE 2X2 NO. 258,10 +3068bpr0259,FLAT TILE 2X2 NO.259,10 +3068bpr0260,FLAT TILE 2X2 NO.260,10 +3068bpr0262,FLAT TILE 2X2 NO. 262,10 +3068bpr0263,FLAT TILE 2X2 NO. 263,10 +3068bpr0264,Tile 2 x 2 with City Helicopter Print,10 +3068bpr0265,Tile 2 x 2 with City Bulldozer Print,10 +3068bpr0266,FLAT TILE 2X2 NO. 266,10 +3068bpr0267,Tile 2 x 2 with Tan Parchment with Sarcophagus and Eye of Horus and White Paper with Red Gem and Question Mark Pattern,10 +3068bpr0268,FLAT TILE 2X2 NO. 268,10 +3068bpr0269,FLAT TILE 2X2 NO. 269,10 +3068bpr0270,FLAT TILE 2X2 NO. 270,10 +3068bpr0271,FLAT TILE 2X2 NO. 271,10 +3068bpr0273,Tile 2 x 2 with Suspension Bridge Print,10 +3068bpr0274,FLAT TILE 2X2 NO. 274,10 +3068bpr0275,FLAT TILE 2X2 NO. 275,10 +3068bpr0278,Tile 2 x 2 with Groove with Solar Charge Level Print,10 +3068bpr0279,Tile 2 x 2 with Groove with '•E' print,10 +3068bpr0280,Tile 2 x 2 with Defender Video Game Display Print,10 +3068bpr0281,FLAT TILE 2X2 NO. 281,10 +3068bpr0282,FLAT TILE 2X2 NO. 282,10 +3068bpr0286,Tile 2 x 2 with Minecraft Iron Golem Skin Print,10 +3068bpr0287,Tile 2 x 2 with Death Star Print,10 +3068bpr0291,Tile 2 x 2 with Map of Dragon Egg Location Print,10 +3068bpr0292,"Tile 2 x 2 with Portrait of Male Minifig with Gray Hair and Beard, Black Suit print",10 +3068bpr0293,Tile 2 x 2 with Red White Blue Stripes and 'DOING OUR PART!' Superheroes print,10 +3068bpr0293a,Tile 2 x 2 with Batman Logo Print,10 +3068bpr0294,Tile 2 x 2 with 'OMNIDROID 07' Screen and Controls print,10 +3068bpr0294a,Tile 2 x 2 with Lex Luthor Power Armour Print,10 +3068bpr0295,Tile 2 x 2 with Groove with Eggs and Frying Pan Print,10 +3068bpr0296,Tile 2 x 2 with 'TNT' on Wood Grain Print,10 +3068bpr0297,Tile 2 x 2 with Stylised Friends Pony Head and Horseshoe Print,10 +3068bpr0298,Tile 2 x 2 with Soccer Strategy Chart Print,10 +3068bpr0299,Tile 2 x 2 with Minecraft Cake Print,10 +3068bpr0300,Tile 2 x 2 with 1 Black Dot and Dark Purple Triangle with Skeleton Head Print,10 +3068bpr0301,Tile 2 x 2 with String and Dark Purple Triangle with Skeleton Head Print,10 +3068bpr0301b,Tile 2 x 2 with Topographical Trail Map with Compass and 'Greeble Trail' Print,10 +3068bpr0302,Tile 2 x 2 with Treasure Map with Compass and Dark Brown 'X' Print,10 +3068bpr0304,Tile 2 x 2 with Ghostbusters Logo Print,10 +3068bpr0306,Tile 2 x 2 - Phone Keypad with Tan Buttons and Black Numbers print,10 +3068bpr0312,"FLAT TILE 2X2, NO. 312",10 +3068bpr0314,"FLAT TILE 2X2, NO. 314 Horse Shield",10 +3068bpr0315,LEGO Tile 2 x 2 with Zebra Stripes Decoration,10 +3068bpr0317,Tile 2 x 2 with BATGIRL™and Yellow Bat Signal - '#1' Comic Book print,10 +3068bpr0322,Tile 2 x 2 with Blue Sky Chart print - Moana,10 +3068bpr0328,Tile 2 x 2 with groove Crate with ribbons print,10 +3068bpr0329,Tile 2 x 2 with groove crate and Dolly print,10 +3068bpr0330,Tile 2 x 2 with Silver 'CATERHAM' print on 1 Edge,10 +3068bpr0331,Tile 2 x 2 with Groove with Map with Cage Print,10 +3068bpr0342,TILE 2X2 with book print,10 +3068bpr0390,Tile 2 x 2 with 2 Dark Purple Octagons Print,10 +3068bpr0392,Tile 2 x 2 with 1 Black Dot and Light Bluish Gray Triangle with Skeleton Head Print,10 +3068bpr0400,Tile 2 x 2 with Groove with Brick Ghostbusters Print,10 +3068bpr0401,Tile 2 x 2 with Groove with News Print,10 +3068bpr0899,Tile 2 x 2 with '2014' Print,10 +3068bpr0930,Tile 2 x 2 with Jurassic World Dino Print,10 +3068bpr382,Tile 2 x 2 with 3 Frogs and Curved Arrow Print,10 +3068bpr980,Tile 2 x 2 with Pink Pet Paw with Heart and Gold Scrolls Pattern,10 +3068bprg0001,"Tile 2 x 2 with 1 Black Dot, Skull and Sword Print",10 +3068bprg0002,Tile 2 x 2 with 2 Black Dots and Skull Print,10 +3068bprg0003,Tile 2 x 2 with 3 Black Dots and Sword Print,10 +3068bprg0004,Tile 2 x 2 with Heroica Shield Print,10 +3068bps0,Tile 2 x 2 with SW Snowspeeder Vent Print,10 +3068bps2,Tile 2 x 2 with SW Pod Racer Print podracer,10 +3068bps3,"Tile 2 x 2 with SW Orange and White Print Star Wars, set 7171, Mos Espa Pod Race, Sebulba",10 +3068bps4,Tile 2 x 2 with DkGreen Half-Ellipse Print,10 +3068bpt0,Tile 2 x 2 with Octan Logo and Text Print,10 +3068bpt1,"Tile 2 x 2 with ""P"" on Blue Background Print",10 +3068bpx1,Tile 2 x 2 with Drill Print,10 +3068bpx10,Tile 2 x 2 with Blue and Red Scallop and Crab Print,10 +3068bpx11,Tile 2 x 2 with Blue and Red Seahorse Print,10 +3068bpx12,Tile 2 x 2 with Blue and Red Eel Print,10 +3068bpx13,"Tile 2 x 2 with Orange Map and Hieroglyphs, Horus Head, 80 Print",10 +3068bpx14,Tile 2 x 2 with Silver and Copper Circular Print,10 +3068bpx143,Tile 2 x 2 with Coast Guard Life Preserver Over Triangle Print,10 +3068bpx17,Tile 2 x 2 with Dog Portrait Print,10 +3068bpx18,Tile 2 x 2 with Magnifying Glass and Fingerprint Print,10 +3068bpx19,"Tile 2 x 2 with Orange Map and Hieroglyphs, Anubis Head, 40 Print",10 +3068bpx20,"Tile 2 x 2 with Orange Map and Hieroglyphs, Thoth Head, 60 Print",10 +3068bpx21,"Tile 2 x 2 with Orange Map and Hieroglyphs, Khnum Head, 20 Print",10 +3068bpx22,"Tile 2 x 2 with Yellow 'TURBO', Black Spots, Blue Background Print [6327]",10 +3068bpx24,Tile 2 x 2 with Map Adventurers: Jungle and Delta Print,10 +3068bpx25,Tile 2 x 2 with White '4WD' and Black Bison Print [6549],10 +3068bpx27,"Tile 2 x 2 with Space Port Logo, Space Shuttle on Blue Background with Yellow Border Print",10 +3068bpx28,Tile 2 x 2 with Blueprints and Pencil Print,10 +3068bpx29,Tile 2 x 2 with Shop Print,10 +3068bpx30,"Tile 2 x 2 with ""X-RAY"" Print",10 +3068bpx33,Tile 2 x 2 with Map - Orient Mountains and Temple Print [7417],10 +3068bpx34,Tile 2 x 2 with Map Orient India Print,10 +3068bpx5,Tile 2 x 2 with Scene 3 and White Stripes Print,10 +3068bpx6,Tile 2 x 2 with 'Studios' on Clapper Print [1349 / 1351],10 +3068bpx7,Tile 2 x 2 with Insectoid Logo in Triangle Print,10 +3068bpx72,Tile 2 x 2 with Fabuland House In Frame Print,10 +3068pb01,"Tile 2 x 2 with Fabuland Mail Envelope, Text and '1' Stamp Print",10 +3068pb02,"Tile 2 x 2 with Fabuland Mail Envelope, Airplane and '3' Stamp Print",10 +3068pb03,Tile 2 x 2 with Fabuland Apple Print [3647 / 3675],10 +3068pb04,Tile 2 x 2 with Fabuland Orange Print,10 +3068pb05,Tile 2 x 2 with Fabuland Pear Print,10 +3068pb06,Tile 2 x 2 with Fabuland Corn Print [3646],10 +3068pb07,Tile 2 x 2 with Fabuland Lettuce Print [3646],10 +3068pb12,Tile 2 x 2 with Fabuland House Print,10 +3068pb13,Tile 2 x 2 with Fabuland Bear Print,10 +3068pb17,Tile 2 x 2 with Fabuland Grapes Print,10 +3068pb19,Tile 2 x 2 with 4 Pastel Squares Print,10 +3068pb20,Tile 2 x 2 with Fabuland Flour Bag Print,10 +3068pb21,Tile 2 x 2 with Fabuland Crocodile Print [3664],10 +3068pb22,Tile 2 x 2 with Fabuland House and Cat Print,10 +3068pb23,Tile 2 x 2 with Fabuland Eggs Print [3646],10 +3068pb24,Tile 2 x 2 with Fabuland Milk Print [3646],10 +3068pb25,Tile 2 x 2 with Fabuland Strawberry Print [3646],10 +3068pb26,Tile 2 x 2 with Fabuland Books Print [3647 / 3674],10 +3068pb33,Tile 2 x 2 with Number 5 Fabuland Orange/Green Background Print [3668 / 3681],10 +3068pb34,Tile 2 x 2 with Number 5 Fabuland Yellow/Red Background Print,10 +3068pb35,Tile 2 x 2 with Flower Print,10 +3068pb36,Tile 2 x 2 with Fabuland Alarm Clock Print,10 +3068pb50,"Tile 2 x 2 with 4 section Heart, Sun, Flower, Butterfly Print",10 +3068pr0001,Tile 2 x 2 with Number 2 Orange Pattern,10 +3068pr0002,Tile 2 x 2 with Number 3 Purple Pattern,10 +3068pr0003,Tile 2 x 2 with Number 6 / 9 Green Pattern,10 +3068pr0004,Tile 2 x 2 with Number 7 Brown Background Pattern,10 +3068pr0005,Tile 2 x 2 with 2016 black print,10 +3068px15,Tile 2 x 2 with Map Island with X and Palm Tree Print,10 +3068px9,Tile 2 x 2 with Map Blue and Yellow Print,10 +30698,"FLAT TILE 2X2, NO. 327",24 +3069a,Tile 1 x 2 without Groove,19 +3069b,Tile 1 x 2 with Groove,19 +3069bp00,Tile 1 x 2 with Bed Print,10 +3069bp017,Tile 1 x 2 with Arrow Long Yellow with Black Border Print,10 +3069bp02,Tile 1 x 2 with Video Tape and Reels Print,10 +3069bp03,Tile 1 x 2 with Dynamite Print,10 +3069bp05,Tile 1 x 2 with Black Grill Print,10 +3069bp06,Tile 1 x 2 with Arrow Long Yellow with Black Border Print,10 +3069bp07,Tile 1 x 2 with Arrow Long Red with Silver Border Print [6781 / 6955],10 +3069bp08,Tile 1 x 2 with Digital Clock Print - '12:01' or '10:21',10 +3069bp09,Tile 1 x 2 with Danger Chevrons Red Print,10 +3069bp0a,"Tile 1 x 2 with Partial White Stripes Print slate,clapboard,director,studios",10 +3069bp0b,Tile 1 x 2 with Officer Picture and Handprint Print,10 +3069bp0d,Tile 1 x 2 with Black Oval Print,10 +3069bp0e,Tile 1 x 2 with Dark Bluish Gray Bedroll Print,10 +3069bp0f,Tile 1 x 2 with Light Gray Bedroll Print,10 +3069bp0g,Tile 1 x 2 with Dark Gray Bedroll Print,10 +3069bp11,Tile 1 x 2 with White TAXI Print,10 +3069bp12,Tile 1 x 2 with Long Black Arrow Print,10 +3069bp13,Tile 1 x 2 with Arrow Short Yellow with Black Border Print,10 +3069bp15,Tile 1 x 2 with Arrow Short Red with Silver Border Print,10 +3069bp21,Tile 1 x 2 with Arrow Short Yellow without Black Border Print,10 +3069bp25,Tile 1 x 2 with Space Computer Print,10 +3069bp28,"Tile 1 x 2 with Blue Screen, Red and Silver Panel Print",10 +3069bp50,Tile 1 x 2 with Explorien Controls Print,10 +3069bp51,Tile 1 x 2 with Yellow and Orange Display Print,10 +3069bp52,Tile 1 x 2 with Telemetry Panel Print,10 +3069bp53,Tile 1 x 2 with Mars Orbit Display Print,10 +3069bp54,Tile 1 x 2 with UFO Controls Print,10 +3069bp55,Tile 1 x 2 with Elliptical Display Print,10 +3069bp61,Tile 1 x 2 with Blue and Yellow Control Panel Print,10 +3069bp68,Tile 1 x 2 with Red and Yellow Control Panel Print,10 +3069bp80,Tile 1 x 2 with Simple Computer Keyboard Print,10 +3069bp81,"Tile 1 x 2 with ""X-RAY"" Print",10 +3069bpa0,Tile 1 x 2 with Vehicle Gauges Print,10 +3069bpa1,Tile 1 x 2 with White 'HC 514' Text Print,10 +3069bpa2,"Tile 1 x 2 with Copper and White Circuitry, Red Rectangle and 4 Squares Print",10 +3069bpa3,Tile 1 x 2 with Minifig and Dinosaur Print,10 +3069bpa4,Tile 1 x 2 with Minifig and Pyramids Print,10 +3069bpap,Tile 1 x 2 with Blue Windows and Bubbles Print,10 +3069bpb001,Tile 1 x 2 with 'POLICE' Print,10 +3069bpb002,Tile 1 x 2 with Two Locomotives Print (Train Ticket),10 +3069bpb003,Tile 1 x 2 with Coast Guard Print,10 +3069bpb004,Tile 1 x 2 with Red Needle Gauge Print,10 +3069bpb006,Tile 1 x 2 with HP Bag Print,10 +3069bpb007,Tile 1 x 2 with Crooked Sock Print,10 +3069bpb009,Tile 1 x 2 with Slave I Engine Chevron Print [7153],10 +3069bpb026,Tile 1 x 2 with Two White Gauges Print (Sticker) - Set 8210,10 +3069bpb029,Tile 1 x 2 with Train Logo and '0928' Print,10 +3069bpb031,Tile 1 x 2 with Franz Jäger 2003 and Keypad Print,10 +3069bpb032,Tile 1 x 2 with Car Grill and Red Arrow Print [4850],10 +3069bpb037,Tile 1 x 2 with Red Circles and Silver / Black Print,10 +3069bpb039,Tile 1 x 2 with Locket and Chain Print,10 +3069bpb040,Tile 1 x 2 with Alpha Team Ogel Skull & 3 Buttons Print,10 +3069bpb041,Tile 1 x 2 with Eiffel Tower and Girl Waving Print,10 +3069bpb055,Tile 1 x 2 with Avionics Green Print (Sticker) - Set 8812,10 +3069bpb078,Tile 1 x 2 with EXO-CODE XFxxxxxx Print,24 +3069bpb078a,Tile 1 x 2 Engraved Code for 8101-1,10 +3069bpb078b,Tile 1 x 2 Engraved Code for 8104-1,10 +3069bpb078c,Tile 1 x 2 Engraved Code for 8634-1 / 8108-1,10 +3069bpb078d,Tile 1 x 2 Engraved Code for 8107-1,10 +3069bpb082,Tile 1 x 2 with 3 Gray Bricks (RCX Programmable Brick Top) Print,10 +3069bpb091,Tile 1 x 2 with Alpha Team Green Screen and Controls Print,10 +3069bpb125,Tile 1 x 2 with 'PA7 70' Print,10 +3069bpb263,Tile 1 x 2 with City Code VS-xxxxxxx Print [60007],10 +3069bpc2,"Tile 1 x 2 with Gauge and ""23"" Print",10 +3069bpc4,Tile 1 x 2 with Avionics Black and Green Print,10 +3069bpf1,Tile 1 x 2 with Red Top Print,10 +3069bpf2,Tile 1 x 2 with Red Rectangle Print,10 +3069bpf3,Tile 1 x 2 with Red Hearts Print Scala Jewlery,10 +3069bpf4,Tile 1 x 2 with Scala Flower Print,10 +3069bph0,Tile 1 x 2 with Bag and Coins Print,10 +3069bph1,Tile 1 x 2 with Chocolate Bar Print,10 +3069bpr0001,LEGO Tile 1 x 2 with Zebra Decoration with Groove (29134),10 +3069bpr0002,Tile 1 x 2 with Highway Patrol Speeding Ticket Print,10 +3069bpr0003,Tile 1 x 2 with Dark Green 'JULY IV MDCCLXXVI' Print,10 +3069bpr0004,Tile 1 x 2 with Silver Police Badge with '2101' and ID Print,10 +3069bpr0005,Tile 1 x 2 with Tarot Tower Card Print,10 +3069bpr0006,Tile 1 x 2 with Tarot Sun Card Print,10 +3069bpr0007,"Tile 1 x 2 with Smartphone with 'BFF', 'LOL', Heart, Lock, Speechbubble and Star Print",10 +3069bpr0008,"Tile 1 x 2 with Smartphone Octan, Star and other Icons and '8:00' Print",10 +3069bpr0009,"Tile 1 x 2 with Octan Logo, Minifigure Silhouettes and Shark with Minifig Print (Life Instructions)",10 +3069bpr0010,Tile 1 x 2 with TV Remote Control Print,10 +3069bpr0012,Tile 1 x 2 with Playing Card Joker Print,10 +3069bpr0013,Tile 1 x 2 with Playing Card Ace of Spades Print,10 +3069bpr0014,Tile 1 x 2 with Groove and Computer Gamepad Print,10 +3069bpr0016,"Tile 1 x 2 with Black ""POLICE"" and Red Line Print",10 +3069bpr0030,Tile 1 x 2 with Computer Keyboard Standard Print,10 +3069bpr0055,Tile 1 x 2 with Script and Seal Print,10 +3069bpr0070,"Tile 1 x 2 with Avionics Copper, Red & Silver Print",10 +3069bpr0085,Tile 1 x 2 with Diagonal Red Stripes Print,10 +3069bpr0086,Tile 1 x 2 with Stylised Computer Console Print,10 +3069bpr0090,Tile 1 x 2 with Joystick and Vehicle Control Panel Print,10 +3069bpr0099,"Tile 1 x 2 with Mail Envelope, Address and Stamp Print",10 +3069bpr0100,Tile 1 x 2 with '100' Banknote Print,10 +3069bpr0101,"Tile 1 x 2 with Red 82, Yellow and White Gauges Print",10 +3069bpr0105,Tile 1 x 2 with Pillow Outline Print [3827],10 +3069bpr0106,Tile 1 x 2 with Joker Print,10 +3069bpr0107,Tile 1 x 2 with Elder Futhark Runes Print,10 +3069bpr0108,Tile 1 x 2 with Black Lines and Underwater Fish Bus Print [SpongeBob Bus Ticket],10 +3069bpr0111,Tile 1 x 2 with Planet with Wings and Rocket Print,10 +3069bpr0112,Tile 1 x 2 with 'Toy STORY 2010 RES1538' License Plate Print,10 +3069bpr0113,Tile 1 x 2 with Sock Print,10 +3069bpr0114,Tile 1 x 2 with 6 Green Eyes and Brown Hairs Print (Spider Face),10 +3069bpr0115,Tile 1 x 2 with 'POLICE' White on Blue Background Print,10 +3069bpr0116,Tile 1 x 2 with Thin Black Grill Lines with Light Bluish Gray Outline Print,10 +3069bpr0117,Tile 1 x 2 with Metallic Silver and Red Emblem Print,10 +3069bpr0119,Tile 1 x 2 with Mouth Print (Shu Todoroki),10 +3069bpr0121,Tile 1 x 2 with Black and Silver Grille Print,10 +3069bpr0122,"Tile 1 x 2 with Black, Silver and Yellow Cable Wrench Print",10 +3069bpr0123,Tile 1 x 2 with Hamburger and Writing Print,10 +3069bpr0124,Tile 1 x 2 with 'IVAN' in Red Emblem and Grille Print (9479),10 +3069bpr0125,Tile 1 x 2 with Triangle and 't' Print (Petrov Trunkov),10 +3069bpr0126,Tile 1 x 2 with Silver '.com' Print,10 +3069bpr0127,Tile 1 x 2 with Bat and Cursive Writing Print,10 +3069bpr0128,Tile 1 x 2 with White Fangs and Dark Red Print,10 +3069bpr0129,Tile 1 x 2 with Playing Cards Four Aces Print,10 +3069bpr0130,"Tile 1 x 2 with Smartphone with Phone, Mail, Speech Bubble, Star, Flower, Note, Play Button and Sound Level Print",10 +3069bpr0131,Tile 1 x 2 with Slingshot [Catapult] Print,10 +3069bpr0132,"Tile 1 x 2 with Red '01 28 1958', Green '10 26 1985', Black 'DESTINATION TIME' and 'PRESENT TIME' Print",10 +3069bpr0133,Tile 1 x 2 with Red 'CALIFORNIA' and Blue 'OUTATIME' License Plate Print,10 +3069bpr0134,Tile 1 x 2 with Gorilla Eyes Print [70125],10 +3069bpr0135,"Tile 1 x 2 with Silver Stripes, 'CALIFORNIA', '20', '15' and '136113 9 66' License Plate Print",10 +3069bpr0136,Tile 1 x 2 with Hero Factory HUD / Wrist Computer Print,10 +3069bpr0137,Tile 1 x 2 with Cell Phone with '81%' and Minifig on Screen Print ,10 +3069bpr0138,Tile 1 x 2 with 'ECTO-1' and 'NEW YORK' License Plate Print ,10 +3069bpr0139,"Tile 1 x 2 with Padlock, Head Mask and 'ML-FILE' Print",10 +3069bpr0140,Tile 1 x 2 with Light Blue 'RADIO' and Silver Buttons Print,10 +3069bpr0141,FLAT TILE 1X2 NO. 141,10 +3069bpr0142,FLAT TILE 1X2 NO. 142,10 +3069bpr0143,FLAT TILE 1X2 NO. 143,10 +3069bpr0144,"Tile 1 x 2 with Lighthouse, Sailboat and 'I Heart HLC' Print",10 +3069bpr0145a,Tile 1 x 2 with Time and Temperature Print,10 +3069bpr0145b,Tile 1 x 2 with 'Once upon a time...' and Gold Scrollwork Print,10 +3069bpr0146,FLAT TILE 1X2 NO. 146,10 +3069bpr0147,Tile 1 x 2 with Bee with Hearts and 'LET'S BEE FRIENDS' Print,10 +3069bpr0149,FLAT TILE 1X2 NO. 149,10 +3069bpr0150,Tile 1 x 2 with Vintage Radio Set Print,10 +3069bpr0151,Tile 1 x 2 with Van der Graaf Generator Print,10 +3069bpr0153,FLAT TILE 1X2 NO. 153,10 +3069bpr0154,FLAT TILE 1X2 NO. 154,10 +3069bpr0155,Tile 1 x 2 with Black Diagonal Stripes Print,10 +3069bpr0156,Tile 1 x 2 with Yellow and Red word 'DEFENDER' print,10 +3069bpr0157,FLAT TILE 1X2 NO. 157,10 +3069bpr0158,Tile 1 x 2 Invitation with '12:00' on lavender ribbon and 3 balloons print,10 +3069bpr0159,Tile 1 x 2 with Red Globlin Print,10 +3069bpr0160,Tile 1 x 2 with Eye and Horn Print,10 +3069bpr0161,FLAT TILE 1X2 NO. 161,10 +3069bpr0162,Tile 1 x 2 with Red Globlins Print,10 +3069bpr0163,Tile 1 x 2 with Minecraft Golem Skin Print,10 +3069bpr0164,FLAT TILE 1X2 NO. 164,10 +3069bpr0165,Tile 1 x 2 with Black Wedge-shape/Thick Stripe print for Right Side of Model,10 +3069bpr0166,Tile 1 x 2 with Black Wedge-shaped/Thick Stripe print for Left Side of Model,10 +3069bpr0167,FLAT TILE 1X2 NO. 167,10 +3069bpr0168,Tile 1 x 2 with Chocolate Bar Print,10 +3069bpr0169,FLAT TILE 1X2 "NO. 169",10 +3069bpr0171,Tile 1 x 2 with Dragon Elemental List Print,10 +3069bpr0172,FLAT TILE 1X2 NO. 172,10 +3069bpr0173,FLAT TILE 1X2 NO. 173,10 +3069bpr0174,"FLAT TILE 1X2, NO. 174",10 +3069bpr0175,Tile 1 x 2 with Cell Phone / Music Player Print,10 +3069bpr0177,Tile 1 x 2 with Psychedelic 'Love' Print,10 +3069bpr0179,"FLAT TILE 1X2, NO. 179",10 +`3069bpr0180,"FLAT TILE 1X2, NO. 180",10 +3069bpr0185,Tile 1 x 2 with SW R2-D2 Astromech Droid Vents Print,10 +3069bpr0186,Tile 1 x 2 with 2 Large Black Squares print,10 +3069bpr0187,Tile 1 x 2 with Groove with Green Crystal and Black Eye Print,10 +3069bpr0188,Tile 1 x 2 with Groove with Black Evil Eye and Silver Necklace Print,10 +3069bpr0191,Tile 1 x 2 with Groove with Black Smile Print,10 +3069bpr0192,FLAT TILE 1X2 NO.192,10 +3069bpr0194,FLAT TILE 1X2 with Scarf Print,10 +3069bpr0195,"FLAT TILE 1X2, Eyes print",10 +3069bpr0196,Tile 1 x 2 with Silver Rectangles and Medium Azure Trapezoid Pattern [Black Widow Cuff],10 +3069bpr0198,TILE 1X2 with ticket and 0937 print,10 +3069bpr0199,Tile 1 x 2 with Reddish Brown Diagrams and Black Script Writing Pattern,10 +3069bpr0200,Iron Man Armor,10 +3069bpr0201,Black Panther Arm,10 +3069bpr0205,"FLAT TILE 1X2, NO. 205",10 +3069bps3,"Tile 1 x 2 with SW Mini Jedi Starfighter Print Dark Red Geometric Print, Star Wars, Episode 2",10 +3069bps4,Tile 1 x 2 with X-wing Fighter Right Print,10 +3069bps5,Tile 1 x 2 with X-wing Fighter Left Print,10 +3069bps8,Tile 1 x 2 with Three White Triangles Print,10 +3069bps9,Tile 1 x 2 with Underwater Navigation Print,10 +3069bpt0,Tile 1 x 2 with "7815" Print,10 +3069bpt0178,LEGO Tile 1 x 2 with Decoration with Groove (29286),10 +3069bpt1,Tile 1 x 2 with Red 1 Print,10 +3069bpw0,"Tile 1 x 2 with ""Wanted - Flatfoot Thomsen"" Print",10 +3069bpw1,Tile 1 x 2 with Playing Cards Print,10 +3069bpx18,Tile 1 x 2 with LoM Gray Mechanical Print,10 +3069bpx30,Tile 1 x 2 with Minifig and Jungle Ruins Print,10 +3069bpx33,"Tile 1 x 2 with Robo Gold, Yellow, Red Print",10 +3069bpx35,Tile 1 x 2 with Hand Print and Striped Shirt Print,10 +3069bpx36,Tile 1 x 2 with Number 5 Red Print,10 +3069bpx39,Tile 1 x 2 with Gold Stars Print,10 +3069bpx41,Tile 1 x 2 with Spider and Bag Print,10 +3069bpx42,Tile 1 x 2 with Lego Logo in Square Print,10 +3069bpx43,"Tile 1 x 2 with Number Axxxx from Santa Fe Super Chief, Limited Edition Print",10 +3069bpx44,Tile 1 x 2 with Spooky Green Hand Print,10 +3069bpx56,"Tile 1 x 2 with Blue, Black, Silver, and Yellow Stripes Right Print",10 +3069bpx57,"Tile 1 x 2 with Blue, Black, Silver, and Yellow Stripes Left Print",10 +30700,Minifig Hair with Hat Combo - Dark Orange Wavy Shoulder Length Hair and Bowler Hat with Bright Green Question Mark Print,13 +3070a,Tile 1 x 1 without Groove,19 +3070b,Tile 1 x 1 with Groove,19 +3070b0167,Tile 1 x 1 with Medium Azure Outline and Dark Purple Star Pattern,10 +3070bp01,Tile 1 x 1 with Black 1 Print,10 +3070bp02,Tile 1 x 1 with Black 2 Print,10 +3070bp03,Tile 1 x 1 with Black 3 Print,10 +3070bp04,Tile 1 x 1 with Black 4 Print,10 +3070bp05,Tile 1 x 1 with White 60 Print,10 +3070bp06,Tile 1 x 1 with Red and Black Buttons Print,10 +3070bp08,Tile 1 x 1 with Bold Black 3 Print thick,10 +3070bp1k,"Tile 1 x 1 with TV Logo Print News, Crisis, 6553, Television, Helicopter, Cameraman, Reporter, Van",19 +3070bp60,Tile 1 x 1 with Green Oval Print,10 +3070bp70,Tile 1 x 1 with Gold Badge Print,10 +3070bpb002,Tile 1 x 1 with TV Globe Logo Print,10 +3070bpb043,Tile 1 x 1 with Yellow Heart Print,10 +3070bpb044,Tile 1 x 1 with Scala Red Top Print,10 +3070bpb048,Tile 1 x 1 with Purple Top and White Circle Print,10 +3070bpc2,Tile 1 x 1 with Computer Targetting Display Print,10 +3070bpf0,"Tile 1 x 1 with Red/Blue Flower Print scala,daisy,jewelry,ring",10 +3070bpf3,Tile 1 x 1 with Red Heart Print Scala Jewelry,10 +3070bph0,Tile 1 x 1 with Spider Print,10 +3070bph1,Tile 1 x 1 with Blue Book Print,10 +3070bpr0001,Tile 1 x 1 with Dark Bluish Gray Square with Black Center and Lines Print (Ultra Chip) (70161),10 +3070bpr0002,LEGO Tile 1 x 1 with Decoration with Groove,10 +3070bpr0007,Tile 1 x 1 with White and Red Gauge Print,10 +3070bpr0058,Tile 1 x 1 with Magic Compass Print,10 +3070bpr0063,Tile 1 x 1 with letter Capital A Print,10 +3070bpr0064,Tile 1 x 1 with letter Capital B Print,10 +3070bpr0065,Tile 1 x 1 with letter Capital C Print,10 +3070bpr0066,Tile 1 x 1 with letter Capital D Print,10 +3070bpr0067,Tile 1 x 1 with letter Capital E Print,10 +3070bpr0068,Tile 1 x 1 with letter Capital F Print,10 +3070bpr0069,Tile 1 x 1 with letter Capital G Print,10 +3070bpr007,Tile 1 x 1 with Padlock Print,10 +3070bpr0070,Tile 1 x 1 with letter Capital H Print,10 +3070bpr0071,Tile 1 x 1 with letter Capital I Print,10 +3070bpr0072,Tile 1 x 1 with letter Capital J Print,10 +3070bpr0073,Tile 1 x 1 with letter Capital K Print,10 +3070bpr0074,Tile 1 x 1 with letter Capital L Print,10 +3070bpr0075,Tile 1 x 1 with letter Capital M Print,10 +3070bpr0076,Tile 1 x 1 with letter Capital N Print,10 +3070bpr0077,Tile 1 x 1 with letter Capital O Print,10 +3070bpr0078,Tile 1 x 1 with letter Capital P Print,10 +3070bpr0079,Tile 1 x 1 with letter Capital Q Print,10 +3070bpr0080,Tile 1 x 1 with letter Capital R Print,10 +3070bpr0081,Tile 1 x 1 with letter Capital S Print,10 +3070bpr0082,Tile 1 x 1 with letter Capital T Print,10 +3070bpr0083,Tile 1 x 1 with letter Capital U Print,10 +3070bpr0084,Tile 1 x 1 with letter Capital V Print,10 +3070bpr0085,Tile 1 x 1 with letter Capital W Print,10 +3070bpr0086,Tile 1 x 1 with letter Capital X Print,10 +3070bpr0087,Tile 1 x 1 with letter Capital Y Print,10 +3070bpr0088,Tile 1 x 1 with letter Capital Z Print,10 +3070bpr0089,Tile 1 x 1 with Silver Number 1 Print,10 +3070bpr0090,Tile 1 x 1 with Silver Number 2 Print,10 +3070bpr0091,Tile 1 x 1 with Silver Number 3 Print,10 +3070bpr0092,Tile 1 x 1 with Silver Number 4 Print,10 +3070bpr0093,Tile 1 x 1 with Silver Number 5 Print,10 +3070bpr0094,Tile 1 x 1 with Silver Number 6 Print,10 +3070bpr0095,Tile 1 x 1 with Silver Number 7 Print,10 +3070bpr0096,Tile 1 x 1 with Silver Number 8 Print,10 +3070bpr0097,Tile 1 x 1 with Silver Number 9 Print,10 +3070bpr0098,Tile 1 x 1 with Silver Number 0 Print,10 +3070bpr0099,Tile 1 x 1 with Silver '.' Print,10 +3070bpr0100,Tile 1 x 1 with Silver '_' Print,10 +3070bpr0101,Tile 1 x 1 with Silver '-' Print,10 +3070bpr0102,Tile 1 x 1 with Silver '@' Print,10 +3070bpr0130,Tile 1 x 1 with Letter Æ Print,10 +3070bpr0131,Tile 1 x 1 with Letter Ø Print,10 +3070bpr0132,Tile 1 x 1 with Letter Å Print,10 +3070bpr0143,Tile 1 x 1 with Letter Ö Print,10 +3070bpr0144,Tile 1 x 1 with Letter Ü Print,10 +3070bpr0145,Tile 1 x 1 with Pocket Watch and Chain Print,10 +3070bpr0146,Tile 1 x 1 with Dark Tan and Orange Ent Eye Print [10237],10 +3070bpr0147,Tile 1 x 1 with Keyhole Print,10 +3070bpr0148,Tile 1 x 1 with 4 Black and 2 White Squares Print (Minecraft Pig Face Print),10 +3070bpr0149,Tile 1 x 1 with SW Snowtrooper Backpack Print,10 +3070bpr0150,Tile 1 x 1 with 3 Black Squares Print,10 +3070bpr0152,Tile 1 x 1 with Snowtrooper Backpack Print,10 +3070bpr0153,FLAT TILE 1X1 NO. 153,10 +3070bpr0154,FLAT TILE 1X1 NO.154,10 +3070bpr0155,FLAT TILE 1X1 NO.155,10 +3070bpr0156,Tile 1 x 1 with White Horse on Sand Blue Pentagonal Shield Print,10 +3070bpr0157,FLAT TILE 1X1 NO.157,10 +3070bpr0158,FLAT TILE 1X1 NO.158,10 +3070bpr0159,FLAT TILE 1X1 NO. 159,10 +3070bpr0160,"FLAT TILE, 1X1, NO. 160",10 +3070bpr0161,Tile 1 x 1 with Minecraft Ender Eye Print,10 +3070bpr0162,FLAT TILE 1X1 NO.162,10 +3070bpr0163,Tile 1 x 1 with smiley face and list with cursive writing and '?' question mark,10 +3070bpr0164,FLAT TILE 1X1 NO. 164,10 +3070bpr0165,Tile 1 x 1 with SW Galactic Empire Jetpack print,10 +3070bpr0166,FLAT TILE 1X1 NO.166,10 +3070bpr0169,Tile 1 x 1 with Compass Print,10 +3070bpr0170,"FLAT TILE 1X1, NO. 170",10 +3070bpr0171,Tile 1 x 1 Kryptomites Diamond-shaped Face print,10 +3070bpr0172,"FLAT TILE 1X1, NO. 172",10 +3070bpr0173,"FLAT TILE 1X1, NO. 173",10 +3070bpr0174,"Flat Tile 1X1, No. 174",10 +3070bpr0175,Tile 1 x 1 with Face with Frown Print (Kryptomite),10 +3070bpr0176,Tile 1x1 Deer Print,10 +3070bpr0178,"FLAT TILE 1X1, White square Print",10 +3070bpr0179,"FLAT TILE 1X1, NO. 179",24 +3070bpr0180,Tile 1 x 1 Magic Compass with Thin Dark Red Needle and Detailed Printing Pattern,10 +3070bps0,Tile 1 x 1 with SW Screen Print,10 +3070bps1,Tile 1 x 1 with Red and Gray Mini Snowspeeder Print [4486],10 +3070bps2,Tile 1 x 1 with White Lines and Dots Print,10 +3070bps3,Tile 1 x 1 with SW Hatch Print,10 +3070bpx8,Tile 1 x 1 with White 4 Print,10 +3070p1k,Tile 1 x 1 with TV Logo Print,10 +30715,Sticker sheet for set 70911 (30715/6177272),17 +30724,"FLAT TILE 2X2, ROUND, NO. 1074",24 +30725,Dark Blue Police Hat with long brown hair,13 +30728,Minifig Hair - Male Bald Top with Dark Bluish Gray Short Hair Print,13 +30770,Sticker Sheet for Set 41312 (30770/6177494),17 +30803,Sticker for 42058 (30803/6177605),17 +30816,Mini Armour No. 1 6177648,27 +3081a,"Window 1 x 2 x 2 Classic with Solid Studs, No Glass",16 +3081ac01,"Window 1 x 2 x 2 (old type) with Extended Lip and Solid Studs, with Glass",16 +3081b,"Window 1 x 2 x 2 Classic with Long Sill, No Glass",16 +3081bc01,"Window 1 x 2 x 2 (old type) with Extended Lip and Hollow Studs, with Glass",16 +3081c,"Window 1 x 2 x 2 Classic with Short Sill, No Glass",16 +3081cc01,Window 1 x 2 x 2 Classic with Short Sill [Complete],16 +3082,Window 1 x 2 x 2 Classic Glass,16 +30821,"CAPE, SHOULDER, NO. 3",24 +30823,Sticker Sheet for Set 70907-1 (30823/6177706),17 +30844,Sticket sheet for set 75877 (30844/6177741),17 +30863,"COCKPIT 4X7X2, SW Sand Blue Y-Wing Pattern - 75172",47 +3087a,"Window 1 x 1 x 1 Classic with Long Sill and Solid Stud, No Glass",16 +3087ac01,Window 1 x 1 x 1 Classic with Solid Stud [Complete],16 +3087b,"Window 1 x 1 x 1 Classic with Long Sill, No Glass",16 +3087bc01,Window 1 x 1 x 1 Classic with Long Sill [Complete],16 +3087c,"Window 1 x 1 x 1 Classic with Short Sill, No Glass",16 +3087cc01,Window 1 x 1 x 1 Classic with Short Sill [Complete],16 +30886,ARMOUR NO. 24,24 +30890,Sticker sheet for set 75878 (30890/6177949),17 +30895,Sticker sheet for set 75879 (30895/6177954),17 +30897,Sticker sheet for set 75881 (30897/6177969),17 +30899,Sticker sheet for set 75882 (30899/6177970),17 +309,Baseplate 32 x 32 Service Station,1 +30901,Sticker sheet for set 75883 (30901/6177973),17 +30903,"WINDSCREEN 4X6X1 1/3 W/ STUDS, NO.1",24 +30923,"LATTICE 8X14, W/ 3.2 SHAFT, W/ 3.2 HOLE",24 +30924,BANDAGE NO. 1,24 +30931,"MAGNIFYING GLASS 40/26, NO. 1",24 +30947,OVAL SHIELD,24 +30956,Sticker Sheet for Set 41310 (30956/6178294),17 +30983,Zombie Shark,28 +30987,"WALL 2X2X5, 1/4 CIRCLE, W/ CUTOUT",24 +30995,"MINI WIG, NO. 164",24 +309p01,Baseplate Road 32 x 32 Service Station with Green Lines Print [9360 / 6378],1 +309p02,Baseplate 32 x 32 Island with River Print [6552],1 +309p03,Baseplate 32 x 32 Island with White Lines and Crosswalk Print,1 +309p04,Baseplate 32 x 32 Island with White and Green Lines Print [6399],1 +31000,Primo Brick 1 x 1,4 +31000pb01,Primo Brick 1 x 1 with Lego Logo Print,4 +31000pb18,Primo Brick 1 x 1 with Duplo Bunny Logo and Lego Logo Print on Opposite Sides,4 +31001,Primo Brick 1 x 2,4 +31001pb01,Primo Brick 1 x 2 with 6 Yellow Spots Print on Each Side,4 +31021,Fence 1 x 6 x 2,4 +31021p01,Duplo Fence 1 x 6 x 2 with Red Stripes Print,4 +31022,Duplo Door / Window 1 x 4 x 2 Pane with Curved Top,16 +31023,Door 1 x 4 x 4 with Four Panes and Curved Top,4 +31025,DUPLO SILO,4 +31026,"DUPLO SILO, LID",4 +31032,DUPLO PLOUGH,24 +31035,DUPLO ROLLER,24 +31041,"Teapot / Coffeepot, Indented Base",4 +31042,Duplo Utensil Kettle with Closed Handles 2 x 2 x 1.5,4 +31043,Duplo Baseplate 8 x 12,4 +31044,"DUPLO FENCE, FARM (ABS)",24 +31053,~Duplo Animal Dinosaur Brachiosaurus Body Left Half,4 +31053pb01,Duplo Dinosaur Brachiosaurus Adult with Orange Spots Print,4 +31059,Duplo Plant Tree Leaves with 4 Top Studs,4 +31061,"Duplo, Brick 2 x 2 x 2 with Indented Sides (Tree Trunk)",4 +31062,Log Bridge,4 +31066,Duplo Furniture Table Round 4 x 4 x 1.5,4 +31070,"Duplo, Brick Round 2 x 2 with Radiating Bars",4 +31071,Duplo Rock Cave 4 x 4 x 6,4 +31076cx2,Duplo Truck with 4 x 4 Flatbed Plate and Yellow Base,4 +31077,Duplo Truck Cabin Enclosed with Clear Windows,4 +31088,Duplo Tipper Bucket Bed,4 +31101,Duplo Dog 'Spot',4 +31110,Brick 2 x 2 x 2,4 +31110pb002,"Duplo, Brick 2 x 2 x 2 with Spider and Web Print",4 +31110pb003,"Duplo, Brick 2 x 2 x 2 with Small Flowers and Ivy Leaves Print",4 +31110pb005,"Duplo, Brick 2 x 2 x 2 with Trophy Cup Number 1 in Shield Print",4 +31110pb006,"Duplo, Brick 2 x 2 x 2 with Indian Totem Pole Print",4 +31110pb007,"Duplo, Brick 2 x 2 x 2 with Bird Face Print",4 +31110pb008,"Duplo, Brick 2 x 2 x 2 with Pedestal and Faucet Handles Print",4 +31110pb014,"Duplo, Brick 2 x 2 x 2 with Green Girder Print",4 +31110pb016,"Duplo, Brick 2 x 2 x 2 with Sunflower and Two Arrows Print",4 +31110pb059,"Duplo, Brick 2 x 2 x 2 with Letter Q Print",4 +31110pb069,"Duplo, Brick 2 x 2 x 2 with Bell and 'RNIG ALSO' Print",4 +31110pb070,"Duplo, Brick 2 x 2 x 2 with Orange Stars Print",4 +31110pb071,"Duplo, Brick 2 x 2 x 2 with Green Dots Print",4 +31110pb072,"Duplo, Brick 2 x 2 x 2 with Red Diagonal Stripes Print",4 +31110pr0100,"Brick 2X2X2, No. 100 Green number 0",4 +31110pr0101,"Duplo Brick 2X2X2, No. 101",4 +31110pr0102,"Duplo Brick 2X2X2, No. 102 Orange number 9",4 +31110pr0103,"Duplo Brick 2X2X2, No. 103 Green number 8",4 +31111,"Duplo, Brick 2 x 4 x 2",4 +31111pb001,"Duplo, Brick 2 x 4 x 2 with Sun Print",4 +31111pb003,"Duplo, Brick 2 x 4 x 2 with Fence Print",4 +31111pb004,"Duplo, Brick 2 x 4 x 2 with Snail Print",4 +31111pb005,"Duplo, Brick 2 x 4 x 2 with Big Red Bird Print",4 +31111pb006,"Duplo, Brick 2 x 4 x 2 with Red Butterfly with Yellow Spots Print",4 +31111pb010,"Duplo, Brick 2 x 4 x 2 with Bricks Print",4 +31111pb011,"Duplo, Brick 2 x 4 x 2 with Clock Print",4 +31111pb021,"Duplo, Brick 2 x 4 x 2 with Red Roof and Yellow Chimney Print",4 +31111pb022,"Duplo, Brick 2 x 4 x 2 with Fire Department Print",4 +31111pb025,"Duplo, Brick 2 x 4 x 2 with Tools on Yellow Background Print",4 +31111pb037,"Duplo, Brick 2 x 4 x 2 with Tools on Light Gray Background Print",4 +31164,Duplo Plant Cactus,4 +31165,Duplo Canoe 2 x 8,4 +31165pb01,Duplo Canoe 2 x 8 with Yellow Zigzag Line and Dots Print,4 +31168,Duplo Fire / Grass / Ice 1 x 4 x 2,4 +31169,Duplo Animal Accessory Horse Harness,4 +31170,Duplo Roofpiece Slope 33 4 x 4 with Awning Overhang,4 +31171,Duplo Door 1 x 4 x 4 with Nine Panes,4 +31176,Duplo Horse Carriage Body,4 +31176pb01,Duplo Horse Carriage Body with Flowers Print,4 +31180,DUPLO BARREL,24 +31184c01,"Duplo, Toolo Brick 2 x 4 with Holes on Sides and Top and 1 Screw in Top",4 +31189,Duplo Tricycle with 4 studs,4 +31191,Duplo Ball Tube exit with round doorway 2 x 6 x 5,4 +31193,Duplo Ball Tube Exit Door,4 +31193pb03,Duplo Ball Tube Exit Door with Bees and Hive Print,4 +31193pb04, Door Round with Child Drawings Print,4 +31195,Ball Tube 45° turn,4 +31196c01,"Duplo, Toolo Cockpit 4 x 6",4 +31205,"Duplo Road Section, Curve",4 +31205pb01,"Duplo Road Section, Curve with Stripes Print",4 +31213,"Duplo, Brick 2 x 4 x 2 Curved Top",4 +31213pb012,"Duplo, Brick 2 x 4 x 2 Curved Top with 'CIRCUS' and Elephant Print",4 +31213pb017,"Duplo, Brick 2 x 4 x 2 Curved Top with Orange Airplane on White Cloud and Dark Blue Stripe Print",4 +31213pb020,"Duplo, Brick 2 x 4 x 2 Curved Top with 'TOW MATER' Tow Truck Print",4 +31213pb026,"Duplo, Brick 2 x 4 x 2 Curved Top with 11 Stars Print",4 +31213pb06,"Duplo, Brick 2 x 4 x 2 Curved Top with 'TIDMOUTH' and Clock Print",4 +31213pr0009,Duplo Brick 2 x 4 x 2 Curved Top - Checkered Flag and Crossed Tools with Mouse Ears print,4 +31213px01,"Duplo, Brick 2 x 4 x 2 Curved Top with 'Winnie the Pooh' Print",4 +31235c01,"Duplo, Toolo Racer Body 4 x 2 Studs in Back",4 +31238,"Duplo, Toolo Wings",4 +31239c01,"Duplo, Toolo Rear Spoiler",4 +3127,"Hook, Plate, Modified 1 x 2 with Crane Hook Left",34 +3127a,Plate 1 x 2 with Crane Hook Left,24 +3127b,"Hook, Plate, Modified 1 x 2 with Crane Hook Right",34 +31284,Duplo Present Box,4 +31285c01,Duplo Hand Wagon with Yellow Wheels (Complete Assembly),4 +31287a,Duplo Food Cake with White Frosting,4 +31299,"Duplo, Train Freight Locomotive Top",4 +312c,"Scala Jewelry Plate, Modified 2 x 2 (Human Bracelet segment)",42 +313,Hinge Plate 2 x X Pivot,24 +31300c01,"Duplo, Train Base 4 x 8 with Moveable Hook",4 +31301,"Duplo, Train Compartment/Container Frame",4 +31303,Duplo Train Cargo Bin,4 +31304pb01,"Duplo, Train Freight Container with Mail Bag and Box Print",4 +31304pb02,"Duplo, Train Freight Container with Timber Print",4 +31313stk01,Sticker for Set 31313,17 +31331,Duplo Kettle Lid With Handles,4 +31333,Duplo Utensil Dish,4 +31333pb01,"Duplo Utensil Dish with Grill, Sausages and Chicken Drumstick Print",4 +31333pb02,Duplo Utensil Dish with 3 Apples Print,4 +31333pb04,Duplo Utensil Dish with Jewelry Print,4 +31334,Duplo Utensil Cup,4 +3134,Brick Special 1 x 2 with Cable Holding Cutout,5 +3135,Slope Brick 45 2 x 3 x 1 & 1/3 Double Crane,34 +31350c01,"Duplo, Toolo Wheel with Action Wheeler Screw",29 +31351,"Duplo, Toolo Tyre with Circle and Trapezoid Print",29 +31352,"Duplo, Toolo Tyre with Deep Tread",4 +3135c01,Slope Brick 45° 2 x 3 x 1 & 1/3 Double with Arm and Black Hook,34 +3135c02,Slope Brick 45° 2 x 3 x 1 & 1/3 Double with Arm and Light Gray Hook crane,34 +3135c03,Slope Brick 45° 2 x 3 x 1 & 1/3 Double with Arm and Blue Hook,34 +3135c04,Slope Brick 45° 2 x 3 x 1 & 1/3 Double with Arm and Red Tow Hook,34 +3136,"Hook, Tow Hook with 2 Studs on Both Sides",34 +31367,Duplo Egg Base,4 +31371,LEGO Duplo Cabinet 4 x 6 x 4,4 +3137c01,Brick 2 x 2 [Red Wheels for Single Tyre],29 +3137c02,Brick Special 2 x 2 with Wheels Red for Dually Tire,29 +31382c01,"Duplo, Toolo Engine Block",4 +3139,Tyre 14 x 4 Smooth Small Single,29 +314,Hinge Plate 2 x 5 Top,24 +314.1stk01,Sticker for Set 314-1 - (004741),17 +3144,Antenna with Side Spokes,32 +31441,Duplo Building House 4 x 8 x 5 with Window Opening,4 +31441pb01,Duplo Building House 4 x 8 x 5 with Window Opening with Leaves and Black Stripes Print,4 +31445,Duplo Fish,4 +3145,"Vehicle, Tipper End Flat with Pins",36 +31452,Ball Tube Straight,4 +31453,Brick 2 x 6 Lower Flap Extensions,4 +31453pb01,"Duplo, Brick 2 x 6 Lower Flap Extensions with Wood and Water Print",4 +31465,Duplo Tile Special 4 x 6 with Studs on Edge,4 +31465pb01,"Duplo Tile, Modified 4 x 6 with Studs on Edge and Two White Lines Road Print",4 +31483,Stormtrooper Commander Body,13 +3149,Hinge Plate 2 x 5 Base,24 +31493,BRICK 1X2 WITH CROSS HOLE,24 +3149c01,Hinge Plate 2 x 5 [Complete Assembly],18 +31509,"FUNCTION ELEMENT, FEMALE",24 +31511,WEAPON BARREL,24 +31516,Minifig Head Modified - Friends Male with Thin Black Eyebrows and Red Eyes - Black Elves Tattoo on Right Cheek - Open Mouth Smirk Print,24 +315.2stk01,Sticker for Set 315-2 - Sheet 1 (004742),17 +315.2stk02,"Sticker for Set 315-2 - Sheet 2, 'CONTAINER TRANSPORT' and Anchors (004740)",17 +31551,Sticker Sheet for Set 41300 (31551/6179047),17 +31552,"DOG, W/ 1.5 HOLE NO. 9",24 +31567,LEGO Penguin (31567),24 +31576,"GRASS, W/ 3.2 TUBE",24 +31581,Minifig Hair / Ears / Tiara Combo - Dark Green Mid-Length Hair (Hole in Back) and Light Flesh Elf Ears - Pearl Gold Wing-Shaped Tiara with Pointed Center Shield,13 +316.1stk01,Sticker for Set 316-1 - (4645),17 +31622,Duplo Technic Gear 24 Tooth Crown,4 +31623,Duplo Technic Axle 8L with Paddle Wheel Gear,4 +31624,Technic Gearbox [Dacta Screw Block],4 +31625,Duplo Technic Tube with Worm Gear,4 +31627cx01,"Primo Teether Star with 8 Arms, Yellow Center and Face Print",4 +3162c01,"Electric, RC Racer Car Base 8 x 23 x 5 2/3 Complete Assembly (Black Bottom)",45 +3173,"Record and Play Module, 16 x 10 x 4 with Built-in Motors 4.5V",45 +3176,Plate Special 3 x 2 with Hole,9 +3176c01,Plate Special 3 x 2 with Hole (Train Coupler Closed) with Hook,9 +3178stk01,Sticker for Set 3178 - (88663/4569188),17 +3179stk01,Sticker for Set 3179 - (89590/4578670),17 +31800,"CREATURE HEAD, NO. 26",24 +3180stk01,Sticker for Set 3180 - (89156/4570655),17 +3183a,"Plate Special 1 x 4 with Towball Socket, Long, 2 Slots",9 +3183b,"Plate Special 1 x 4 with Towball Socket, Long, 4 Slots",9 +3183c,"Plate Special 1 x 4 with Towball Socket, Short, 4 Slots",9 +3184,Plate Special 1 x 4 with Towball,9 +3184stk01,Sticker for Set 3184 - (10095456/4620856),17 +3185,Fence 1 x 4 x 2,32 +3185stk01,Sticker for Set 3185 - (10099435/4650854),17 +3186,Fence Gate 1 x 4 x 2,32 +3187,Fence Gate 1 x 4 x 2 Base,32 +31875,"CAMELEON, W/ 1.5 HOLE, NO. 3",24 +3187stk01,Sticker for Set 3187 - (95458/4620858),17 +3188,Door 1 x 3 x 2 Right,16 +3188stk01,Sticker for Set 3188 - (99433/4650852),17 +3189,Door 1 x 3 x 2 Left,16 +31895,Minifig Hat - Chef Style Double Mould with Hair,13 +31895pat02,Minifig Hat Double Mould - Chef Style over Reddish Brown Hair with Bun,13 +3190,Door 1 x 3 x 3 Right,16 +31901,"SHELL, W/ CROSS HOLE NO. 2",41 +3191,Door 1 x 3 x 3 Left,16 +31918,Sticker Sheet for Set 41182-1 - 31918 / 6181560,17 +3192,Door 1 x 3 x 4 Right,16 +31920,Sticker Sheet for Set 41184,17 +31921,Sticker Sheet for Set 41185-1 31921 / 6181563,17 +31922,"MINI TROPHY, W/ 3.2 SHAFT",24 +3193,Door 1 x 3 x 4 Left,16 +31936,"WINDSCREEN 4X6X1 1/3 W/ STUDS, NO. 2",24 +3194,Door 1 x 5 x 4 Right,16 +3194p03,Door 1 x 5 x 4 Right w. rd/wh/bl Stripe & bl Tr. Logo Print,16 +3194pb01,Door 1 x 5 x 4 Right with Blue Fish & TRANSPORT Print,16 +3195,Door 1 x 5 x 4 Left,16 +3195p03,Door 1 x 5 x 4 Left w. rd/wh/bl Stripe & bl Tr. Logo Print,16 +3195pb01,Door 1 x 5 x 4 Left with Blue Fish & TRANSPORT Print [375-3],16 +31990,"PADDLE, NO. 1",24 +31a,"Window 1 x 3 x 2 Classic with Solid Studs, No Glass",16 +31ac01,Window 1 x 3 x 2 Classic with Solid Studs [Complete],16 +31b,"Window 1 x 3 x 2 Classic with Long Sill, No Glass",16 +31bc01,Window 1 x 3 x 2 Classic with Long Sill [Complete],16 +31c,"Window 1 x 3 x 2 Classic with Short Sill, No Glass",16 +31cc01,Window 1 x 3 x 2 Classic with Short Sill [Complete],16 +32,Door 1 x 2 x 3 Left,16 +32000,Technic Brick 1 x 2 [2 Holes],8 +32001,Technic Plate 2 x 6 [5 Holes],9 +32002,Technic Pin 3/4,53 +32003,Tyre 68.8 x 24,29 +32004a,Wheel 68.8 x 24 Model Team Type 1 [Circle Holes around Wheel Ring],29 +32004b,Wheel 68.8 x 24 Model Team Type 2 [Notched Ring],29 +32005a,Technic Link 1 x 6 without Stoppers,25 +32005b,Technic Link 1 x 6 with Stoppers,25 +32007,Technic Tread Hub,29 +32008,Technic Figure Scuba Flipper,27 +32009,Technic Beam 1 x 11.5 Double Bent Thick,51 +32012,Technic Reel 3 x 2,31 +32013,Technic Axle and Pin Connector Angled #1,12 +32014,Technic Axle and Pin Connector Angled #6 - 90°,12 +32015,Technic Axle and Pin Connector Angled #5 - 112.5°,12 +32016,Technic Axle and Pin Connector Angled #3 - 157.5°,12 +32017,Technic Beam 1 x 5 Thin,51 +32018,Technic Brick 1 x 14 [13 Holes],8 +32019,Tyre 62.4 x 20,29 +32020,Wheel 62.4 x 20 with Extended Axle Stem,29 +32021,Code Pilot Unit with Battery Holder,45 +32023,Code Pilot - Battery Cover,45 +32028,Plate Special 1 x 2 with Door Rail,9 +32030,Technic Digger Bucket 10 x 18,26 +32034,Technic Axle and Pin Connector Angled #2 - 180°,12 +32037,Technic Figure Scuba Mask,27 +32038,Technic Figure Airtank,27 +32039,Technic Axle Connector with Axle Hole,12 +32054,Technic Pin Long with Friction Ridges Lengthwise and Stop Bush,53 +32056,Technic Beam 3 x 3 L-Shape Thin,51 +32057,Wheel 70 x 14 mm Futuristic,29 +32059,Wedge Plate 4 x 6 Cut Corners,49 +32060,Technic Gear Timing Wheel 8 Tooth,52 +32062,Technic Axle 2 Notched,46 +32063,Technic Beam 1 x 6 Thin,51 +32064a,Technic Brick 1 x 2 with Axle Hole Type 1 [+ Opening] and Bottom Pin,8 +32064b,Technic Brick 1 x 2 with Axle Hole Type 2 [X Opening],8 +32064c,Technic Brick 1 x 2 with Axle Hole Type 1 [+ Opening] and Bottom Ridges,8 +32065,Technic Beam 1 x 7 Thin,51 +32068,Technic Axle and Pin Connector Perpendicular 3L with Pin Hole,12 +32069,"Technic, Steering Arm with Pins",25 +32072,Technic Knob Wheel,52 +32073,Technic Axle 5,46 +32074c01,"Technic Competition Cannon, Round Bottom with Black Ends",26 +32074c02,"Technic Competition Cannon, Round Bottom with Lime Ends",26 +32076,Tyre 70 x 14 mm Futuristic,29 +32077,Wheel 70 x 28 mm Futuristic,29 +32078,Tyre 70 x 28 Futuristic,29 +32079,Technic Beam 1 x 9 Offset Crossover,55 +32083,Slope 45° 6 x 4 Double [aka Train Roof],3 +32084,Wedge 6 x 8 Cutout,6 +32085,Train Base 6 x 14 with Inverted Sloped Front,36 +32086,Windscreen 8 x 6 x 3 Wedge,47 +32086ps1,Windscreen 8 x 6 x 3 Wedge with SW Imperial Shuttle Canopy Print,47 +32087,"Train, Track 9V Crossing",36 +32089,Technic Tread Sprocket Wheel Dual Thin,29 +32090,Technic Tread Frame 5-point,34 +32094,Vehicle Forklift Load Bin [Complete Assembly - Cybermaster],36 +32104c01,Mindstorms Scout - Complete Brick,45 +32123,Technic Bush 1/2 Smooth [Undetermined Axle Hole Type],54 +32123a,Technic Bush 1/2 Smooth with Axle Hole Reduced,54 +32123b,Technic Bush 1/2 Smooth with Axle Hole Semi-Reduced,54 +32124,"Technic Plate 1 x 5 with Smooth Ends, 4 Studs and Centre Axle Hole",26 +32125,Technic Plate Rotor 3 Blade with Smooth Ends and 6 Studs (Propeller),26 +32126,Technic Axle and Pin Connector Toggle Joint Smooth,12 +32132,Technic Gear Rack 1 x 12 with Holes,52 +32133bc02,"Competition Arrow, Solid Shaft with Black Galidor Shield",24 +32137,Technic Modular Connector,12 +32138,Technic Pin Double with Axle Hole,53 +32140,Technic Beam 2 x 4 L-Shape Thick,51 +32143,"Technic Competition Arena Middle Section, Curved [8307]",26 +32144,Technic Competition Arena Straight Section [8307],26 +32145,Technic Competition Target Scorpion,28 +32146,Wheel 30.4 x 14 Solid Smooth,29 +32165,Technic Block 3 x 6 x 1 & 2/3,12 +32166,Technic Gearbox Half,12 +32167,Technic Rectangular Gearbox Half,52 +32168,Technic Throwbot Arm Forked with Flexible Center and Ball Joint,41 +32170,Technic Gear Rack Double with Ball Joint,52 +32171,Throwing Disk (generic catalog entry),41 +32171pb001,"Bionicle Disk, Mask Kakama Print",41 +32171pb002,"Bionicle Disk, Mask Akaku Print",41 +32171pb003,"Bionicle Disk, Mask Pakari Print",41 +32171pb004,"Bionicle Disk, Mask Kaukau Print",41 +32171pb005,"Bionicle Disk, Mask Miru Print",41 +32171pb006,"Bionicle Disk, Mask Hau Print",41 +32171pb007,"Throwbot Disk, Torch / Fire, 2 pips, flame logo Print",41 +32171pb008,"Throwbot Disk, Torch / Fire, 3 pips, Torch throwing disk Print",41 +32171pb009,"Throwbot Disk, Torch / Fire, 4 pips, flying box over volcanoes Print",41 +32171pb010,"Throwbot Disk, Torch / Fire, 5 pips, making trench for lava Print",41 +32171pb011,"Throwbot Disk, Torch / Fire, 6 pips, facing fire creature Print",41 +32171pb012,"Throwbot Disk, Torch / Fire, 7 pips, diamond in fiery rock Print",41 +32171pb013,"Throwbot Disk, Ski / Ice, 2 pips, snowflake logo Print",41 +32171pb014,"Throwbot Disk, Ski / Ice, 3 pips, Ski throwing disk Print",41 +32171pb015,"Throwbot Disk, Ski / Ice, 4 pips, flying box in ice cave Print",41 +32171pb017,"Throwbot Disk, Ski / Ice, 6 pips, Ski jumping away from snow creature Print",41 +32171pb019,"Throwbot Disk, Turbo / City, 2 pips, city skyline logo Print",41 +32171pb020,"Throwbot Disk, Turbo / City, 3 pips, Turbo throwing disk Print",41 +32171pb021,"Throwbot Disk, Turbo / City, 4 pips, flying box in city Print",41 +32171pb022,"Throwbot Disk, Turbo / City, 5 pips, jumping off roof Print",41 +32171pb023,"Throwbot Disk, Turbo / City, 6 pips, outracing truck in alley Print",41 +32171pb025,"Throwbot Disk, Scuba / Sub, 2 pips, waterdrop logo Print",41 +32171pb026,"Throwbot Disk, Scuba / Sub, 3 pips, Scuba throwing disk Print",41 +32171pb027,"Throwbot Disk, Scuba / Sub, 4 pips, flying box and shark Print",41 +32171pb028,"Throwbot Disk, Scuba / Sub, 5 pips, vortex with tentacles emerging Print",41 +32171pb029,"Throwbot Disk, Scuba / Sub, 6 pips, fighting giant jellyfish Print",41 +32171pb031,"Throwbot Disk, Jet / Judge, 2 pips, radiating arrows logo Print",41 +32171pb032,"Throwbot Disk, Jet / Judge, 3 pips, Jet throwing two disks Print",41 +32171pb033,"Throwbot Disk, Jet / Judge, 4 pips, flying box in space with other boxes Print",41 +32171pb034,"Throwbot Disk, Jet / Judge, 5 pips, shooting beam at other 'bot Print",41 +32171pb035,"Throwbot Disk, Jet / Judge, 6 pips, holding up glowing disk Print",41 +32171pb036,"Throwbot Disk, Millennia and Jet / Judge, 8 pips, multi-color sectioned globe Print",41 +32171pb037,"Throwbot Disk, Amazon / Jungle, 2 pips, leaf logo Print",41 +32171pb038,"Throwbot Disk, Amazon / Jungle, 3 pips, Amazon throwing disk Print",41 +32171pb039,"Throwbot Disk, Amazon / Jungle, 4 pips, flying box in swamp Print",41 +32171pb040,"Throwbot Disk, Amazon / Jungle, 5 pips, hanging on vine and cutting tree Print",41 +32171pb041,"Throwbot Disk, Amazon / Jungle, 6 pips, fighting giant toothed plant Print",41 +32171pb043,"Throwbot Disk, Granite / Rock, 2 pips, rock logo Print",41 +32171pb044,"Throwbot Disk, Granite / Rock, 3 pips, Granite throwing disk Print",41 +32171pb046,"Throwbot Disk, Granite / Rock, 5 pips, shielding against falling rocks Print",41 +32171pb049,"Throwbot Disk, Electro / Energy, 2 pips, lightning logo Print",41 +32171pb050,"Throwbot Disk, Electro / Energy, 3 pips, Electro throwing disk Print",41 +32171pb051,"Throwbot Disk, Electro / Energy, 4 pips, flying box and lightning creature Print",41 +32171pb053,"Throwbot Disk, Electro / Energy, 6 pips, whirlwind creature holding 'bot Print",41 +32171pb055,"Throwbot Disk, Flare and Spark, 2 pips, meteor falling Print",41 +32171pb056,"Throwbot Disk, Flare and Spark, 3 pips, Spark throwing disk Print",41 +32171pb057,"Throwbot Disk, Flare and Spark, 4 pips, meteor impact Print",41 +32171pb058,"Throwbot Disk, Flare and Spark, 5 pips, Flare flying Print",41 +32171pb059,"Throwbot Disk, Blaster, 6 pips, Blaster and two 'bots with fire background Print",41 +32171pb060,"Throwbot Disk, Blaster, 7 pips, Blaster running Print",41 +32171pb061,"Throwbot Disk, Millennia, 9 pips, riding motorcycle and throwing disk Print",41 +32171pb062,Throwing Disk with MindStorms Print,41 +32172,Technic Pin Connector Block 3 x 3 x 1,12 +32173,Technic Ball Joint 2 x 7 with 2 Ball Joints,41 +32174,"Technic Axle Connector 2 x 3 with Ball Socket, Open Sides",12 +32175,Technic Connector Block 3 x 3 Triangular,12 +32176,"Container, Throwbot / Slizer 'Flying' Case Lid",7 +32177,Technic Beam 1 x 7 with Fan,55 +3218,Train Direction Switch - 4.5V 2 x 3,36 +32180,Tyre 56 x 30 R Balloon,29 +32181c03,Technic Shock Absorber 10L Damped [Complete Assembly NO Spring],25 +32184,Technic Axle and Pin Connector Perpendicular 3L with Centre Pin Hole,12 +32185,Technic Gear Rack 1 x 14 with Holes,52 +32186,Technic Steering Gear with 3 Ball Joints,25 +32187,Technic Driving Ring Extension,52 +32188,"Technic, Panel Fairing # 3 Large Long, Large Holes, Side A",40 +32189,"Technic, Panel Fairing # 4 Large Long, Large Holes, Side B",40 +32190,"Technic Fairing # 1 Large Short, Large Holes, Side A",40 +32191,"Technic Fairing # 2 Large Short, Large Holes, Side B",40 +32192,Technic Axle and Pin Connector Angled #4 - 135°,12 +32193,Wheel Full Rubber Flat with Axle hole,29 +32194,"Container, Throwbot / Slizer 'Flying' Case Bottom",7 +32195a,"Technic Steering Arm 6.5 x 2 with Towball Socket Rounded, Un-Chamfered",25 +32195b,"Technic Steering Arm 6.5 x 2 with Towball Socket Rounded, Chamfered",25 +32196,Tyre 81.6 x 34 ZR Technic Thin Sporty Tread,29 +32197,Wheel 81.6 x 34 ZR Three Spoke Swirl,29 +32198,Technic Gear 20 Tooth Bevel,52 +32199,Hose Soft Axle 11,30 +32200,Hose Soft Axle 12,30 +32201,Hose Soft Axle 14,30 +32202,Hose Soft Axle 16,30 +32203,"Znap Beam 7, 3 Holes",43 +32204,"Znap Beam 11, 4 Holes, 2 Bends",43 +32205,Znap Beam 1/2 Circle Radius 2L,43 +32206,"Znap Beam 9, 5 Holes, 4 Bends (Half-Octagon)",43 +32207,Znap Crank Connector 1 x 2 x 3,43 +32208,"Znap Beam 16, 9 Holes, 5 Bends",43 +32209,Technic Axle 5.5 With Stop [Flat Short End],46 +32213,"Znap Grid 9 x 7, 15 Holes",43 +32214,"Znap Beam 9, 8 Holes, Triangular",43 +32216,"Znap Beam 16, 14 Holes, Curved",43 +32218,Znap Beam Double Curve 4 Holes,43 +32219,Wheel 32mm Znap Propeller,29 +32221,Znap Connector 3 x 3 - 4 way A (Axial),43 +32225,Znap Grid Motor Holder,43 +32229,"Znap Beam 16, 7 Holes",43 +32230,Znap Beam 1/4 Circle Radius 8L,43 +32235,Hose Soft Axle 19,30 +32242,"Znap Beam 4, 2 Holes, 2 Bends",43 +32246,"Znap Beam 8, 4 Holes, 3 Bends, Curved",43 +32247,Wheel 41mm Znap Thin Tread,29 +32249,Technic Beam 3 x 3 L-Shape with Quarter Ellipse Thin,51 +32250,Technic Beam 3 x 5 L-Shape with Quarter Ellipse Thin,51 +32251,Technic Beam 5 x 7 L-Shape with Quarter Ellipse Thin,51 +3225stk01,Sticker for Set 3225 - (22109/4124584),17 +32269,Technic Gear 20 Tooth Double Bevel with Axle Hole Type 2 [X Opening],52 +32270,Technic Gear 12 Tooth Double Bevel,52 +32271,Technic Beam 1 x 9 Bent (7 - 3) Thick,51 +32273c01,Technic Turntable 4 x 6 Complete Assembly (Mindstorms),26 +32278,Technic Beam 1 x 15 Thick,51 +32279,Technic Figure Competition Helmet,27 +3228,Train Track Straight - 4.5V,36 +32280,Technic Figure Impact Vest Type 1,27 +32281,Technic Figure Impact Vest Type 2,27 +32283c01,"Pullback Motor 9 x 4 x 2 1/3 with Black Base, White Axle Holes, No Studs on Front Top Surface",44 +32283c02,"Pullback Motor 9 x 4 x 2 1/3 with Black Base, White Axle Holes, Studs on Front Top Surface",44 +32283c03,"Pullback Motor 9 x 4 x 2 1/3 with Dark Gray Base, White Axle Holes, Studs on Front Top Surface",44 +32288c01,Electric Motor 4.5V 17 x 6 x 5 with Switch [Dark Gray Bottom],45 +32288c02,Electric Motor 4.5V 17 x 6 x 5 with Switch [Light Gray Bottom],45 +3228a,Train Track Tapered Rail Straight 16L,36 +3228b,Train Track Slotted Rail Straight,36 +3228c,"Train, Track Plain Rail Straight (no slots, no notches on end)",36 +3229,"Train, Track Rail Curved Outside",36 +32291,Technic Axle and Pin Connector Perpendicular Double,12 +32293,Technic Link 1 x 9,25 +32294,Technic Wishbone Suspension Arm,25 +32296,Tyre Technic Racing Large,29 +32296pr01,Tyre Technic Racing Large with 'TECHNIC RACING' White Print,29 +32296pr02,Tyre Technic Racing Large with 'MICHELIN' White Print,29 +32298,Tyre Technic Power Puller,29 +32298pr01,Tyre Technic Power Puller with 'TECHNIC POWER' White Print,29 +3229a,Train Track Tapered Rail Curved Outside,36 +3229b,"Train, Track Slotted Rail Curved Outside",36 +3230,Train Track Rail Curved Inside,36 +32305,Technic Pin Connector Block 7 x 3,12 +32306,Technic Wheel Holder 7 x 3 [Roboriders],41 +32307,Technic Axle Connector Block 3 x 6 with 6 Axleholes,12 +32308,Technic Beam 3 x 7 x 2 Fork 3 Fingers,55 +3230a,Train Track Tapered Rail Curved Inside,36 +3230b,Train Track Slotted Rail Curved Inside,36 +3231,"Train, Track 4.5V Crossing",36 +32310,Technic Block 3 x 5 x 1 2/3,12 +32310pb01,Technic Block 3 x 5 x 1 2/3 with RoboRider Frost Print,12 +32310pb02,Technic Block 3 x 5 x 1 2/3 with RoboRider Swamp Print,12 +32310pb03,Technic Block 3 x 5 x 1 2/3 with RoboRider Power Print,12 +32310pb04,Technic Block 3 x 5 x 1 2/3 with RoboRider The Boss Print,12 +32310pb05,Technic Block 3 x 5 x 1 2/3 with RoboRider Lava Print,12 +32310pb06,Technic Block 3 x 5 x 1 2/3 with Silver Print,12 +32310pb07,Technic Block 3 x 5 x 1 2/3 with Number 8 Print,12 +32311,Technic Arm 1 x 7 x 3 with Gear Ends,52 +32316,Technic Beam 1 x 5 Thick,51 +3231b,"Train, Track 4.5V Crossing, Slotted Rail",45 +32324,Technic Brick 4 x 4 Open Center,8 +32333,"Technic, Pin Connector Block 1 x 5 x 3",8 +32342c01,Electric Technic Capacitor with Clear Top,45 +32344c01,Micro Scout with Dark Gray Base,45 +32348,Technic Beam 1 x 7 Bent (4 - 4) Thick,51 +32373,Minifig Pike / Spear - Flexible Rubber,27 +3241,Train Track 12V Conducting Rail Curved,45 +3241b,Train Track 12V Conducting Rail Curved [No Cable Connection Holes],45 +3242,"Train, Track 12V Conducting Rail Straight",45 +3242b,"Train, Track 12V Conducting Rail Straight for 12v Signal with Rail Interruption at End",36 +3242c,"Train, Track 12V Conducting Rail Straight without Cable Connection Holes",45 +3242d,"Train, Track 12V Conducting Rail Straight for 12v Signal with Rail Interruption in the Middle",45 +3242e,"Train, Track 12V Conducting Rail Straight for 12v Remote Controlled Decoupling",36 +32439,Technic Disc 5 x 5 with Notched Disc RoboRider,24 +32439a,"Technic Disc 5 x 5 Notched, Without Pin",26 +32439apb01,Technic Disk 5 x 5 - Notched with Pit Droid Nose Print,26 +32439apb02,Technic Disk 5 x 5 - Notched with ARC-170 Starfighter Print [7259],26 +32439b,"Technic Disk 5 x 5 - Notched, No Print, with Pin",26 +32448,"Baseplate, Raised Ramp 17 x 28 x 5.5",1 +32449,Technic Beam 1 x 4 Thin,51 +3245,Brick 1 x 2 x 2 [Undetermined Bottom],11 +3245a,Brick 1 x 2 x 2 with Center Pin,11 +3245ap01,Brick 1 x 2 x 2 w/ Center Stud w/ Train Point Right Print,2 +3245ap02,Brick 1 x 2 x 2 w/ Center Stud w/ Train Point Left Print,2 +3245apb01,Brick 1 x 2 x 2 with Bottom Tube with Window Print,2 +3245b,Brick 1 x 2 x 2 with Inside Axle Holder,11 +3245bp01,Brick 1 x 2 x 2 with Inside Axleholder and Train Point Print switch,2 +3245bp02,Brick 1 x 2 x 2 with Inside Axleholder and Yellow Triangle Print train decoupler,2 +3245bpb10,Brick 1 x 2 x 2 with Inside Axle Holder with Mindstorms NXT Print,2 +3245bpx10,Brick 1 x 2 x 2 with Inside Axle Holder with White 'POLICE' Print,2 +3245bpx11,Brick 1 x 2 x 2 with Inside Axle Holder with Clock Face Print,2 +3245bpx3,Brick 1 x 2 x 2 with Inside Axle Holder with Fruit Print,2 +3245bpx4,Brick 1 x 2 x 2 with Inside Axle Holder with Black Bus Print,2 +3245bpx6,"Brick 1 x 2 x 2 with Inside Axle Holder with Ice Cream, Cake and Coffee Print",2 +3245bpx7,Brick 1 x 2 x 2 with Inside Axle Holder with Dog Biscuit Box Print,2 +3245bpx8,Brick 1 x 2 x 2 with Inside Axle Holder with Fire Logo Print,2 +3245bpx9,Brick 1 x 2 x 2 with Inside Axle Holder with Red Cross Print,2 +3245c,Brick 1 x 2 x 2 with Inside Stud Holder,11 +3245cpr0001,BRICK 2X2X1 NO. 1,2 +3245cpr0002,"Brick 1 x 2 x 2 with Inside Stud Holder with Cereal Bowl, Wheat and Exclamation Marks Print",2 +3245cpr0003,Brick 1 x 2 x 2 with Inside Stud Holder with Robe and Tassels Print,2 +3245cpr0004,Brick 1 x 2 x 2 with Inside Stud Holder with 'KRUSTY O's' Cereal Box Print,2 +3245cpr0005,BRICK 1X2X2 NO. 5 Cat Food,2 +3245cpr0118,Brick 1 x 2 x 2 with Inside Stud Holder with Black and Gray Jacket Pattern,2 +3245cpr0119,BRICK 1X2X2 Vest print,2 +3245cpr0120,Brick 1 x 2 x 2 with Inside Stud Holder with White Tie Pattern,2 +32467,Electric Speed Computer,45 +32474,Technic Ball Joint,26 +32474pb01,Technic Ball Joint - Set 4475 Silver Print,26 +32474pr0002,Technic Ball Joint with 8 ball,24 +32474pr1001,Technic Ball Joint with Black Eye Print [Mixels],26 +32474pr1003,VOODOO BALL NO. 1003,26 +32474pr1004,VOODOO BALL NO. 1004,26 +32474pr1007,VOODOO BALL NO. 1007,26 +32474pr1008,VOODOO BALL NO. 1008,26 +32474pr1009,Technic Ball Joint with Black Eyes and Blue Smile print (Snowgie Head),26 +32474pr1010,Technic Ball Joint with Graveller Type 2 Closed Mouth Pattern,26 +32474pr1011,Technic Ball Joint with Graveller Type 1 Open Mouth Pattern,26 +32474pr1013,Technic Ball Joint with Open Red Mouth with Sharp Lime Teeth Print,26 +32475,Bionicle Foot with Ball Joint Socket 3 x 6 x 2 1/3,41 +32476,Technic Figure Robot Arm,41 +32482,Bionicle Toa Leg,41 +32489,Bionicle Body Trunk Gearbox,41 +32494,Technic Steering / CV Joint,25 +32495,Technic Steering Gear with 4 Ball Joints,25 +32495c01,Technic 4 Ball Joint Steering Arm With 3 Pin Base [Complete Assembly],25 +32496,Technic Wheel Hub 3 Pin,25 +32498,Technic Gear 36 Tooth Double Bevel,52 +32505,Bionicle Mask Hau,41 +32505pr01,Bionicle Mask Hau Infected,41 +32506,Bionicle Claw with Axle,41 +32523,Technic Beam 1 x 3 Thick,51 +32523pr0001,Technic Beam 1 x 3 Thick with Black '40 1977 - 2017' and 24 Tooth Gear Print,51 +32524,Technic Beam 1 x 7 Thick,51 +32525,Technic Beam 1 x 11 Thick,51 +32526,Technic Beam 3 x 5 L-Shape Thick,51 +32527,"Technic Fairing # 5 Small Short, Large Hole, Side A",40 +32528,"Technic Fairing # 6 Small Short, Large Hole, Side B",40 +32529,Technic Pin Connector Plate with One Hole (Single on Bottom),12 +32530,Technic Pin Connector Plate 1 x 2 x 1 2/3 [Two Holes On Top],12 +32531,Technic Brick 4 x 6 Open Center,8 +32532,Technic Brick 6 x 8 with Open Center 4 x 6,8 +32533,Technic Bionicle Kanoka Disc,41 +32533pb001,"Bionicle Disk, Mask Huna (Toa Metru) Print",41 +32533pb116,"Bionicle Disk, 116 Ta-Metru Print",41 +32533pb143,"Bionicle Disk, 143 Ta-Metru Print",41 +32533pb171,"Bionicle Disk, 171 Ta-Metru Print",41 +32533pb199,"Bionicle Disk, 199 Disk of Time Print",41 +32533pb225,"Bionicle Disk, 225 Ga-Metru Print",41 +32533pb226,"Bionicle Disk, 226 Ga-Metru Print",41 +32533pb234,"Bionicle Disk, 234 Ga-Metru Print",41 +32533pb253,"Bionicle Disk, 253 Ga-Metru Print",41 +32533pb279,"Bionicle Disk, 279 Ga-Metru Print",41 +32533pb287,"Bionicle Disk, 287 Ga-Metru Print",41 +32533pb314,"Bionicle Disk, 314 Po-Metru Print",41 +32533pb326,"Bionicle Disk, 326 Po-Metru Print",41 +32533pb334,"Bionicle Disk, 334 Po-Metru Print",41 +32533pb338,"Bionicle Disk, 338 Po-Metru Print",41 +32533pb339,"Bionicle Disk, 339 Po-Metru Print",41 +32533pb373,"Bionicle Disk, 373 Po-Metru Print",41 +32533pb429,"Bionicle Disk, 429 Ko-Metru Print",41 +32533pb437,"Bionicle Disk, 437 Ko-Metru Print",41 +32533pb442,"Bionicle Disk, 442 Ko-Metru Print",41 +32533pb447,"Bionicle Disk, 447 Ko-Metru Print",41 +32533pb473,"Bionicle Disk, 473 Ko-Metru Print",41 +32533pb485,"Bionicle Disk, 485 Ko-Metru Print",41 +32533pb521,"Bionicle Disk, 521 Le-Metru Print",41 +32533pb548,"Bionicle Disk, 548 Le-Metru Print",41 +32533pb555,"Bionicle Disk, 555 Le-Metru Print",41 +32533pb574,"Bionicle Disk, 574 Le-Metru Print",41 +32533pb589,"Bionicle Disk, 589 Le-Metru Print",41 +32533pb619,"Bionicle Disk, 619 Onu-Metru Print",41 +32533pb631,"Bionicle Disk, 631 Onu-Metru Print",41 +32533pb638,"Bionicle Disk, 638 Onu-Metru Print",41 +32533pb654,"Bionicle Disk, 654 Onu-Metru Print",41 +32533pb663,"Bionicle Disk, 663 Onu-Metru Print",41 +32533pb665,"Bionicle Disk, 665 Onu-Metru Print",41 +32533pb677,"Bionicle Disk, 677 Onu-Metru Print",41 +32533pb685,"Bionicle Disk, 685 Onu-Metru Print",41 +32534,"Technic Fairing # 7 Small Long, Large Hole, Side A",40 +32535,"Technic Fairing # 8 Small Long, Large Hole, Side B",40 +32551,Bionicle Claw Hook with Axle,41 +32552,Bionicle Weapon Sword with Hydraulics and 3 pin holes,41 +32553,Bionicle Head Connector Block 3 x 4 x 1 2/3,41 +32554,Bionicle Head Connector Block Eye/Brain Stalk,41 +32555,Technic Brick 5 x 5 Right Angle (1 x 4 - 1 x 4),8 +32556,Technic Pin Long without Friction Ridges,53 +32557,Technic Pin Connector Perpendicular Long,12 +32558,Bionicle Weapon Toa Flame Sword 2 x 12 with Two Holes,41 +32558pat0001,"Bionicle Weapon Toa Flame Sword 2 x 12 with Two Holes, Marbled Yellow Pattern",41 +32559,Bionicle Weapon Large Axe,41 +32560,Bionicle Foot Wedge 3 x 7 x 3,41 +32561c01,Electric Camera USB,45 +32561c02,Electric Camera USB with Logo,45 +32565,Bionicle Mask Miru,41 +32566,Bionicle Mask Pakari,41 +32567,Bionicle Mask Ruru (Turaga),41 +32567pb01,Bionicle Mask Ruru with Pearl Light Gray Top (Nuhrii),41 +32568,Bionicle Mask Kakama,41 +32569,Bionicle Mask Akaku,41 +32570,Bionicle Mask Matatu (Turaga),41 +32570pb01,Bionicle Mask Matatu with Pearl Light Gray Top (Orkahm),41 +32571,Bionicle Mask Kaukau,41 +32572,Bionicle Mask Komau (Turaga),41 +32572pb01,Bionicle Mask Komau with Pearl Light Gray Top (Vhisola),41 +32573,Bionicle Mask Huna (Turaga),41 +32573pb01,Bionicle Mask Huna with Pearl Light Gray Top (Tehutti),41 +32574,Bionicle Mask Rau (Turaga),41 +32574pb01,Bionicle Mask Rau with Pearl Light Gray Top (Ahkmou),41 +32575,Bionicle Mask Mahiki (Turaga),41 +32575pb01,Bionicle Mask Mahiki with Pearl Light Gray Top (Ehrye),41 +32576,Technic Connector 3 x 4 1/2 x 2 1/3 with Pin,41 +32577,Bionicle Tohunga Torso,41 +32578,Bionicle Tohunga Claw Arm,41 +32579,Bionicle Head Connector Block (Tohunga),41 +32580,Hose Soft Axle 7,30 +32593,"MINI WIG, NO. 168",24 +32602,"MINI WIG, NO. 163",24 +32615,Stormtrooper Commander Head,13 +32620,HEAD Stormtrooper,13 +32643,"MINI SHOOTER, W/ 3.2 SHAFT, NO. 1",24 +32652,"SAIL, 70,5X108 MM, NO.1",24 +32653,"SAIL, 67,5X172 MM, NO. 1",24 +32738,"SLIDE SHOE ROUND 2X2, NO. 12",24 +32739,"SHELL, 4X6X2/3",24 +32759,"MINI FIGURE HELMET, NO. 85",24 +32765,"Barbells aka SPORT EQUIPMENT, NO. 2",27 +32765pr0002,Barbells with 100 Print on each end.,27 +32800,"PIE, DIA. 15.83, NO. 1",24 +32807,"BRICK 1X1X1 1/3, W/ ARCH",24 +32809,"CREATURE HEAD, NO. 27",24 +32823,Neck Armor,27 +32824,"WING HOLE Ø 4,9",27 +32845,"SAIL, 177X207 MM, NO. 1",24 +32859,MINI WIG NO. 152,24 +32859pr0152,MINI WIG NO. 152 with Yellow Elf Ears,13 +32869,"ROOF TILE 2X2X2, DEG. 65, NO. 58",24 +32873,"MINI SHIELD, NO. 8",24 +32887,HAMMER NO. 1,24 +32887pr0001,Hammer - Large with Copper Boar Print on both sides,27 +32888,"MINI WIG W/ HAT, NO. 1",13 +32892,"DOG, NO. 9",24 +32892pr0001,Dog - French Bulldog - Grumpy Face with Black Nose and Mouth - White Spot on Forehead Print,28 +32905,Technic Worm Gear Type 2,52 +32906,"SEALION, W/ HOLE DIA. 1.5 NO. 2",24 +32912,"CREATURE, NO. 56",24 +32939,Cloth Carousel Top Section 22 x 18 with Curved Sides and 2 Top Holes,38 +32952,"BRICK 1X1X1 2/3, W/ VERT. KNOBS",24 +3297,Slope 33° 3 x 4,3 +32975,WING FOR MINI FIGURE,24 +3297mia,Minitalia Slope 33 3 x 4 with Bottom X Supports,3 +3297p01,Slope 33° 3 x 4 with Red Stripes Print,3 +3297p02,Slope 33° 3 x 4 with Yellow Triangles Print,3 +3297p03,Slope 33° 3 x 4 with White Stripes Print,3 +3297p04,Slope 33° 3 x 4 with Purple Roof Tiles Print,3 +3297p05,Slope 33° 3 x 4 with Yellow Stripes Print [3041 / 4267],3 +3297p06,Slope Brick 33 3 x 4 with Green Stripes Print,3 +3297p10,"Slope Brick 33 3 x 4 with Black ""POLICE"" and Red Line Print",3 +3297p11,"Slope Brick 33 3 x 4 with White ""POLICE"" and Red Line Print",3 +3297p14,Slope Brick 3 x 4 with Headlights Print,3 +3297p15,Slope 33° 3 x 4 with Train Railyard Switching Print,3 +3297p90,Slope 33° 3 x 4 with Classic Space Logo Print,3 +3297ps1,Slope 33 3 x 4 with Grille Print,3 +3297px1,Slope 33° 3 x 4 with Red Triangles with Yellow Border Print,3 +3297px10,Slope 33° 3 x 4 with Pink Background White Flowers Print [4151],3 +3297px14,Slope 33° 3 x 4 with Headlights Print,3 +3297px15,Slope 33° 3 x 4 with Res-Q on Yellow Triangle Print,3 +3297px16,Slope 33° 3 x 4 with ATM Bank Machine Print,3 +3297px17,Slope 33° 3 x 4 with Silver Island Xtreme Stunts Logo Print,3 +3297px18,Slope 33° 3 x 4 with Blue Triangles with Yellow Border Print,3 +3297px19,Slope 33° 3 x 4 with Fire Cruiser Print,3 +3297px21,Slope 33° 3 x 4 with Black '1' on Red Striped Triangle Print,3 +3297px23,Slope 33° 3 x 4 with Headlights and Grill Print,3 +3297px24,Slope 33° 3 x 4 with Star of Life and Grill Print,3 +3297px25,Slope 33° 3 x 4 with Res-Q Headlight Print [4610],3 +3297px3,Slope 33° 3 x 4 with Green Triangles with Yellow Border Print,3 +3297px5,Slope 33° 3 x 4 with Roaring Cheetah Head Print,3 +3297px6,Slope 33° 3 x 4 with Surveillance Computer Panel Print,3 +3297px9,"Slope 33° 3 x 4 with Headlights, Yellow Turbo, Blue Background and Black Spots Print",3 +3298,Slope 33° 3 x 2,3 +3298mia,Minitalia Slope 33 3 x 2 with Bottom X Supports,3 +3298mib,Minitalia Slope 33 3 x 2 with Bottom Tubes,3 +3298p01,"Slope Brick 33 3 x 2 with White ""1"" Outlined Print",3 +3298p04,Slope 33° 3 x 2 with Purple Roof Tiles Print,3 +3298p10,Slope 33° 3 x 2 with Explorien Logo Print,3 +3298p11,Slope Brick 33 3 x 2 with Red on Yellow Triangles Print,3 +3298p12,Slope Brick 33 3 x 2 with Green on Yellow Triangles Print,3 +3298p13,Slope Brick 33 3 x 2 with Blue on Yellow Triangles Print,3 +3298p15,Slope Brick 33 3 x 2 with Yellow Stripes Print,3 +3298p16,Slope Brick 33 3 x 2 with White Triangles Print,3 +3298p17,Slope 33° 3 x 2 with Red Stripes Print,3 +3298p18,Slope 33° 3 x 2 with Yellow Triangles Print,3 +3298p19,Slope 33° 3 x 2 with Freestyle Flag Print,3 +3298p1b,Slope Brick 33 3 x 2 with Yellow and Green V Print,3 +3298p20,Slope 33° 3 x 2 with White Stripes Print,3 +3298p21,Slope 33° 3 x 2 with Red Stars Print,3 +3298p53,Slope 33° 3 x 2 with Space Police I Print,3 +3298p54,Slope 33° 3 x 2 with Number 1 Print,3 +3298p55,Slope 33° 3 x 2 with Number 2 Print,3 +3298p56,Slope 33° 3 x 2 with Number 3 Print,3 +3298p57,Slope 33° 3 x 2 with Yellow Number 4 and Stripes Print,3 +3298p61,Slope 33° 3 x 2 with Ice Planet Logo Print,3 +3298p68,Slope 33° 3 x 2 with MTron Logo Print,3 +3298p6u,Slope Brick 33 3 x 2 with UFO Print,3 +3298p71,Slope Brick 33 3 x 2 with Red '1' and Yellow Outline Print,3 +3298p72,Slope Brick 33º 3 x 2 with Red '2' over Two Green Stripes Print,3 +3298p74,"Slope Brick 33 3 x 2 with Black ""4"" and Red Stripes Print",3 +3298p75,"Slope Brick 33 3 x 2 with Red ""5"" and White Stripes Print",3 +3298p76,"Slope Brick 33 3 x 2 with Red ""6"" Print",3 +3298p90,Slope 33° 3 x 2 with Classic Space Logo Print,3 +3298pb001,Slope 33° 3 x 2 with Divers Bubbles Print,3 +3298pb002,Slope 33° 3 x 2 with Red Number 3 and Black Triangle Print,3 +3298pb003,Slope 33° 3 x 2 with Red Number 1 and Chequered Flag Print,3 +3298pb005,Slope 33° 3 x 2 with Insectoid Scope Print,3 +3298pb009,Slope 33 3 x 2 with RoboForce Gold 'ROBO' and Blue and Yellow Circuitry Print,3 +3298pb010,Slope 33° 3 x 2 with Space Police II Print logo,3 +3298pb015,Slope 33° 3 x 2 with Ferrari Logo Print,3 +3298pb016,Slope 33° 3 x 2 with Red X and Yellow Circle Print,3 +3298pb017,Slope 33 3 x 2 with with RoboForce Blue and Gold Mechanical Foot Print,3 +3298pb020,Slope 33 3 x 2 with Stingrays 3 Black Arcs and White Circles Print,3 +3298pb021,Slope 33° 3 x 2 with Black 28 and Black and Yellow Stripes Print,3 +3298pb022,Slope Brick 33 3 x 2 with Red V Print,3 +3298pb024,Slope 33° 3 x 2 with Res-Q and Black Triangle Print,3 +3298pb028,Slope 33° 3 x 2 with World City Gold Police Badge Print,3 +3298pr0029,Slope 33° 3 x 2 with White Rocket and Black 'SR' Print,3 +3298pr0030,"Slope 33° 3 x 2 with Red Circle, Danger Stripes and 'LASER' Print",3 +3298pr0031,Slope 33° 3 x 2 with Snowspeeder Nose Vent Print,3 +3298ps0,Slope Brick 33 3 x 2 with SW Crisscross Print,3 +3298px1,Slope 33 3 x 2 with Louver Print,3 +3298px11,"Slope 33° 3 x 2 with Eyes, Nose and Whiskers Print",3 +3298px5,Slope 33° 3 x 2 with Blue/Gray Machinery Print,3 +3298px6,Slope 33° 3 x 2 with Red/Gray Machinery Parts Print [3750 / 7314],3 +3298px8,Slope 33 3 x 2 with SW White and Black Print,3 +3299,Slope 33° 2 x 4 Double,3 +32994,"BIRD, W/ 1.5 HOLE, NO. 4",28 +3299mia,Minitalia Slope 33 2 x 4 Double with Bottom X Supports,3 +32ac01,Door 1 x 2 x 3 Left (old type) with Solid Studs and Fixed Glass,16 +32b,"Door 1 x 2 x 3 Left (old type), without Glass",16 +32bc01,Door 1 x 2 x 3 Left [Old Style with Glass],16 +32c,"Door 1 x 2 x 3 Left, without Glass for Slotted Bricks",16 +33,Door 1 x 2 x 3 Right,16 +3300,Slope 33° 2 x 2 Double,3 +33006,Minifig Teapot (Belville / Scala),42 +33007,Scala Utensil Suitcase,42 +33008,Scala / Belville Flower Pot,42 +33009,Minifig Book 2 x 3,27 +33009pb001,Minifig Book 2 x 3 with Lock and Soiled Spots Print,27 +33009pb002,Minifig Book 2 x 3 with Four Eyes Print,27 +33009pb004,Minifig Book 2 x 3 with Quidditch Broom and Golden Snitch Print,27 +33009pb041,Minifig Book 2 x 3 with Gold 'Oranges and Peaches' Print [col10-1],27 +33009pr0010,BOOK NO. 10,27 +33009px1,Minifig Book 2 x 3 with Red Bottles Print,27 +33009px2,Minifig Book 2 x 3 with Mushrooms and Vine Print,27 +33009px3,Minifig Book 2 x 3 with Hinges and Ghost Face Print [4709],27 +33009px4,Minifig Book 2 x 3 with Dragon and Spider Print [4707 / 4721],27 +33009px5,Minifig Book 2 x 3 with Muffin Print,27 +33011,"Scala Accessories - Complete Sprue - Table Containers (Wine, Milk, 2 Jars)",42 +33011a,Milk carton,42 +33011b,Scala Accessories Bottle Wine,42 +33011c,Scala Accessories Jar Jam / Jelly,42 +33013,Minifig Food Cake,27 +33013pb01,Cake with Red Cherries and Oranges Print,27 +33013pb02,Cake with Red Cherries and Chocolate Wedges and Pink Frosting Print,27 +33013pb03,"Cake with Dark Pink Cherries and Oranges, Medium Blue Rim Print",27 +33014,Scala Utensil Tray with Eating Utensils,42 +33016,Scala Utensil Clothes Hanger,42 +33021,"Scala, Clothes Shoe Female Type 1 (Youth)",42 +33022,"Scala, Clothes Shoe Female Type 2 (Adult)",42 +33023,"Scala, Clothes Shoe Male",42 +33025,Scala Hair Dryer,42 +33026,"BUNNY, NO. 2 (Plain)",28 +33026pr0001,Bunny with Black Eyes and Mouth - Pink Nose Print,28 +33027,"MINI BOTTLE, W/ KNOB",24 +33031,"Container, Box 3.5 x 3.5 x 1.3 with hinged lid",7 +33034,Scala Roof Large with Window,42 +33035,Scala Roof Window,42 +33036c01,"Scala Support L 40 Studs Long, Complete Assembly",34 +33037c01,"Scala Support L 18 Studs Long, Complete Assembly",42 +3303stk01,Sticker for Set 3303 - (72833/4119281),17 +33048,Turkey Body,27 +33048c01,Turkey [Complete Assembly],27 +33050,Scala Baby Potty,27 +33051,Apple,28 +33054,Scala Utensil Cup,42 +33055,Scala Roof End Slope 22 x 2 x 12 1/3,3 +33057,Turkey Drumstick [Short],27 +33061,Minifig Goblet Large,27 +33062,Scala Plate 4 x 4,42 +3307,Brick Arch 1 x 6 x 2 - Thick Top with Reinforced Underside,37 +33078,Hot Dog / Sausage,27 +3307px1,"Brick, Arch 1 x 6 x 2 with Indian Print",37 +3308,Brick Arch 1 x 8 x 2,37 +33080,Scala Baseplate 44 x 22 x 1/3 without holes,1 +33085,Banana,28 +33089,Support 4 x 4 x 5 2/3 Stand,34 +3308pb01,"Brick, Arch 1 x 8 x 2 with Two Yellow Dragons Print",37 +3309stk01,Sticker for Set 3309 - (72827/4119254),17 +3310stk01,Sticker for Set 3310 - (72828/4119220),17 +33120,Ice Cream Cone with Ice Cream,27 +33121,Crab,28 +33122,Starfish,28 +33123,"Belville, Clothes Life Jacket, Adult Figure Size",42 +33125,Croissant,27 +33129,"Boat, 18 x 8 x 2 1/3 with Oarlocks",35 +3312stk01,Sticker for Set 3312 - (72829/4119255),17 +3314,"Vehicle Digger Bucket Arm, Small - 2 x 6 x 2",36 +3314stk01,Sticker for Set 3314 - (72830/4119256),17 +3315,Hinge Plate 2 x 4 - Male (Digger Bucket Holder),18 +3315stk01,Sticker for Set 3315 - (95460/4620860),17 +3317,Brick Special 1 x 2 with Digger Bucket Arm Holder,18 +33170,Scala Utensil Horse Brush,42 +33172,Carrot,28 +33175,Scala Award Ribbon,42 +33176,Decoration Ball [Scala Finial],20 +33178c01,Scala Utensil Bucket Round with Matching Handle,42 +33183,Carrot Top,28 +33192,LEGO Scala Horse Saddle (33192),24 +33199,"BRICK 2X4, NO. 1002",24 +33201,"Belville, Clothes Hat, Witch Hat",42 +33201px1,"Belville, Clothes Hat, Witch Hat with Medium Blue Stars Print",42 +33202,Belville Horse Carriage Base,42 +33202px1,Belville Horse Carriage Base with Crown and Flower Heart Print,42 +33203,Belville Broom - Whisk Broom,42 +33207,Rabbit,28 +33207p01,Rabbit with Eyes and Nose Print,28 +33209,Belville Horse Wagon Hitch,42 +3321,Belville Animal Horse Harness,42 +33210,Belville Horse Harness with Shafts,42 +33211,Wheel Wagon Huge (43mm D.),29 +33212,"Wheel Wagon Giant (56mm D., 7 studs Dia.)",29 +33213,Belville Wall - Tower with Window,23 +33213pb01,"Belville Wall, Tower with Window and Haystack, Mice and Carrot Print",23 +33214,Baseplate 48 x 48 Raised with Staircases and Pits belville,1 +33214pb02,"Baseplate, Raised Belville Castle with Yellow Cobblestone and Green Ivy Print",1 +33214pr0002,"Baseplate, Raised Belville Castle with Arctic Print [5850 / 7577]",1 +33215,Tower Roof 6 x 8 x 9,3 +33216,"Belville Wall, Door 1 x 4 x 11 1/3 Arched Top",16 +33217,"Belville Wall, Ivy Wall with Window 1 x 8 x 12",23 +3321b,Belville Animal Horse Harness with Lead,42 +33227,"Belville Wall, Door Frame Arched 1 x 8 x 12",16 +33229,"Belville Wall, Door 1 x 10 x 12 Arched Swivel",16 +33229pb02,"Belville Wall, Door 1 x 10 x 12 Arched Swivel with Open Door and Castle Print",16 +33230,Brick Round Corner 16 x 16,20 +33232c01,"Scala Support Tall, Type 1, Complete Assembly - 28.5 Studs Long",34 +3324,Hinge Plate 2 x 9 Base,24 +33240,"Belville Wall, Door Frame Arched Swivel 1 x 10 x 12",16 +33243,Brick 1 x 3 x 2 with Curved Top,37 +33243px1,"Brick, Modified 1 x 3 x 2 with Curved Top and Rose Print",37 +33246,"ROOF TILE 2X2X1 1/2, NO. 2",24 +33249,"BRICK 1X2X2, NO. 112",24 +3324c01,Hinge Plate 2 x 9 [Complete Assembly],18 +33254,"Mickey Mouse Figure with Blue Overalls, Green Sleeves, Blue Cap",24 +33254b,"Mickey Mouse Figure with Blue Shirt, Red Pants (no cap)",13 +33254c,"Mickey Mouse Figure with Red Pants, Black Fireman Uniform, Black Cap",13 +33254c00,Fabuland Figure Mickey Mouse [Plain],13 +3326,~Technic Universal Joint Centre,24 +33261,Fabuland Figure Pluto,13 +3326b,Technic Universal Joint Centre Type 2 (part of 3712c01 or 61903),24 +33286,Brick 1 x 1 x 2/3 Round with Scala Base,20 +33287,Brick Round 2 x 2 x 2 Dome Top with Cross Cut Slots,20 +33289,"Plastic Playscape Mountain belville,baseplate",1 +33289px1,"Baseplate, Raised Belville Mountain 22 x 22 x 10 with Flowers and Stream Print",1 +33291,Plate Round 1 x 1 with Flower Edge [4 Petals],28 +33298,Znap Connector 3 x 3 - 3 way with Pin,43 +33299a,Technic Beam 3 x 0.5 Liftarm with Boss and Pin / Crank,55 +33299b,Technic Beam 3 x 0.5 Liftarm with Boss and Pin Semi-Reduced,55 +33303,Picket Fence 1 x 4 x 2,32 +33320,Frog,28 +33322,Minifig Crown / Tiara,27 +33325,"Container, Mailbox 4 x 4",7 +33326,"Container, Mailbox 4 x 4 Door",7 +33326pb01,Container - Mailbox 4 x 4 Door with Bird and Envelope Print,7 +3334,Baseplate 16 x 24,1 +33370,"MINI WIG, NO. 172",13 +33375,"COCKPIT 8X6X2, W/ SHAFT DIA. 3.2, NO. 1",24 +33412,FLAT TILE 1X2 NO.192,24 +33426,"SKIRT, LEAF NO.1",24 +33443,"MINI DOLL, HEAD, NO. 115",24 +33461,"GIRL WIG, LONG CURLY",24 +33469,"MINI HELMET, NO. 141",24 +33489,"MATER CAR, NO. 2",24 +33490,"PLATE 4X4, CIRCLE, W/ 2 KNOBS, NO. 1",24 +3350,Roadsign Round,38 +3350p01,Roadsign Round with No Entry Print,38 +3350p02,Roadsign Round with No Left Turn Print,24 +3350p06,Roadsign Round with No Passing Print,24 +3350p07,"Roadsign Round with End of Speed Limit ""40"" Print",24 +3350p08,Roadsign Round with End of No Passing Print,38 +33514,"BRICK 2X2 ROUND W/ HOLE Ø4,85, NO. 2",24 +3351a,Roadsign Triangular Type 1,24 +3351ap02,Roadsign Triangular Type 1 with Cross Intersection Print,24 +33578,Hat First Order Trooper,27 +3358,Fence Gate 1 x 3 x 2,32 +33589,Shield 2x3 with window print,27 +3359,Fence Gate 1 x 3 x 2 Base,32 +33590,CANOE,24 +33647,"MINI WINGS, NO. 3",24 +3366stk01,Sticker for Set 3366 - (93285/4603240),17 +33676,"MINI LEGS, NO. 1280",24 +33682,MINI COSTUME Retro Rocket,27 +33688,"PARABOLIC REFLECTOR Ø24X6,4 NO.1",24 +33690,"RIM NARROW Ø14,6X9,9 HOLE Ø3,2 NO.1",24 +33710,Helmet Space Retro with Open Front and Bright Light Orange Earpieces and Crest,27 +33718,"Electric, Hub, USB - WeDo Robotics",45 +33755,"FLAT TILE 1X2, NO. 197",24 +33756,"FLAT TILE 1X1, ROUND, NO. 77",24 +33765,"MINI FOOTBALL HELMET, NO. 2",24 +33774,"CREATURE, NO. 59",24 +33827,Bane,13 +338.2stk01,Sticker for Set 338-2 - Sheet 1 (190225),17 +338.2stk02,Sticker for Set 338-2 - Sheet 2 (190227),17 +33845,MINI CLOTHING NO. 7,27 +33873,"BIRD, SPARROW, NO. 9",24 +33884,"COCKPIT DIA. 47.79, W/ SHAFT, NO. 11",24 +33913,"HORSE, W/ 1.5 HOLE, 4 KNOBS, NO. 11",24 +33918,"MINI DOLL, HEAD, NO. 121",24 +33992,"ADMIRALS HAT, NO. 10",24 +33993,"MINI WIG, NO. 174",24 +33a,"Door 1 x 2 x 3 Right (old type) with Solid Studs, without Glass",16 +33ac01,Door 1 x 2 x 3 Right (old type) with Solid Studs and Fixed Glass,16 +33bc01,Door 1 x 2 x 3 Right (old type),16 +3403,Turntable 4 x 4 Square Base,18 +3403c01,"Turntable 4 x 4 Square Base with Top, Complete Assembly",18 +3404,Turntable 4 x 4 Top,18 +3404ac01,Turntable 4 x 4 - Old Type Complete - Faceted,18 +3404ac02,Turntable 4 x 4 - Old Type Complete - Faceted with Indented Base,18 +3404bc01,"Turntable 4 x 4 - Old Type Complete, Perfectly Round",18 +3404stk01,Sticker for Set 3404 - Sheet 1 (22916/4141966),17 +3404stk02,Sticker for Set 3404 - Sheet 2 (22915/4141242),17 +34091,FIGURE HELMET NO.1,24 +34100,Sticker sheet for set 60159 (34100/6192867),17 +34102,ANIMAL LEGS NO.1,24 +3410stk01,Sticker for Set 3410 - (23037/4141799),17 +3412cdb01,"Paper, Cardboard Backdrop for Set 3412, 3418 Soccer Goals",17 +34140pr01,Big Jungle Cat - Panther with Green Eyes,28 +34154,"MINI ACCESSORY, NO. 2",24 +3419stk01,Sticker for Set 3419 - (23236/4143289),17 +34223,Zombie Shark Head,28 +34277,DUPLO CHAIR 2X2X2,24 +342c01,Technic Flex-System Cable,24 +3430c01,"Vehicle, Forklift 2 x 2 Plate and Black Fork (Complete Assembly)",36 +3430c02,"Vehicle, Forklift 2 x 2 Plate and Yellow Fork (Complete Assembly)",36 +3430c03,"Vehicle, Forklift 2 x 2 Plate and Light Gray Fork (Complete Assembly)",36 +3433,"Vehicle, Digger Bucket Smooth 3 x 5 x 1 & 1/3",36 +34337,"RIM, NARROW, W/ 8.0 HOLE",24 +3436,"Vehicle, Tipper End Sloped",36 +3437,Duplo Brick 2 x 2,4 +3437pb001,"Duplo, Brick 2 x 2 with Green Lattice Peak Print",4 +3437pb002,"Duplo, Brick 2 x 2 with Lego Logo Print",4 +3437pb003,"Duplo, Brick 2 x 2 with Flower Wallpaper Print",4 +3437pb004,"Duplo, Brick 2 x 2 with Two Apples Print",4 +3437pb005,"Duplo, Brick 2 x 2 with Bricks Print",4 +3437pb006,"Duplo, Brick 2 x 2 with Number 1 Yellow Print",4 +3437pb007,"Duplo, Brick 2 x 2 with Trophy Cup Print",4 +3437pb010,"Duplo, Brick 2 x 2 with Eye, Alligator Slanted Print, on Two Sides",4 +3437pb011,"Duplo, Brick 2 x 2 with Giraffe's Foot Print",4 +3437pb012,"Duplo, Brick 2 x 2 with Eye, Giraffe's Print, on Two Sides",4 +3437pb014,"Duplo, Brick 2 x 2 with Apples in Crate Print",4 +3437pb015,"Duplo, Brick 2 x 2 with Eye without White Spot Print, on One Side",4 +3437pb016,"Duplo, Brick 2 x 2 with Eye without White Spot Print, on Two Sides",4 +3437pb017,"Duplo, Brick 2 x 2 with Eye, Elephant's Print",4 +3437pb019,"Duplo, Brick 2 x 2 with Elephant Foot Print",4 +3437pb020,"Duplo, Brick 2 x 2 with Eye without White Print, on One Side, Offset Left",4 +3437pb021,"Duplo, Brick 2 x 2 with Yellow '523' Antique Style Print",4 +3437pb038,"Duplo, Brick 2 x 2 with Flying Bee Print",4 +3437pb039,"Duplo, Brick 2 x 2 with Bluebird and Dark Pink Flower Print",4 +3437pb044,"Duplo, Brick 2 x 2 with 3 Shells and Silver Bubbles Print",4 +3437pe1,"Duplo, Brick 2 x 2 with Eye with White Spot Print, on Two Sides - Type 1",4 +3437pe2,"Duplo, Brick 2 x 2 with Eye with White Spot Print, on Two Sides - Type 2",4 +3437pr0044,Duplo Brick 2 x 2 - Present with Yellow Ribbon and Bow over Polka Dot Gift Paper print,4 +3437pr0049,Duplo Brick 2 x 2 Print on Two Sides - Eye with White Spot and Varied Color Curve inside a Black Circle,4 +3437pr0052,Duplo Brick 2 x 2 - Present with Red Bow and White Gift Tag on Red Striped Gift Paper print,4 +34395,"CHEST, NO. 4, W/ BALL SNAP, NO. 33",24 +34432,GEAR WHEEL 40T,24 +3443c02,"Train Battery Box Car with Black Base, Red Wheels and Magnets",45 +3443c12,"Train Battery Box Car w/ Black Base, Black Wheels and Magnets",36 +34441,"FLAT TILE 2X2, NO. 339",24 +3451stk01,Sticker for Set 3451 - (42210/4162510),17 +3455,Brick Arch 1 x 6,37 +3456,Plate 6 x 14,14 +3460,Plate 1 x 8,14 +3461,Propeller 4 Blade 5 Diameter with Hole for Rotor Holder,35 +3462,Plate Special 2 x 3 with Helicopter Rotor Holder,9 +3464,Wheel Centre Small with Stub Axles (Pulley Wheel),29 +34664,MINI HELMET Vulture NO. 161,13 +3470,Fruit Tree,28 +3470a,Plant Tree Fruit - Square Tips,28 +3471,Pine Tree - Large 4 x 4 x 6 2/3,28 +3471a,Plant Tree Pine 4 x 4 x 6 & 2/3 - Square Tips,24 +3471pat0001,Plant- Large Pine Tree with White Marbled Snow Pattern,28 +3474,Wedge Plate 4 x 8 Tail,49 +3475a,"Engine - Smooth, Small 1 x 2 Side Plate [No Axle Holders]",35 +3475b,"Engine - Smooth, Small 1 x 2 Side Plate [With Axle Holders]",35 +3479,Tail 4 x 2 x 2,35 +3480,Propeller 2 Blade,35 +3481,Plate Special 2 x 2 with Helicopter Tail Rotor Holder,35 +3482,Wheel with Split Axle hole,29 +3483,Tire Offset Tread,29 +3488,Train Buffer Single,9 +3491,Plate Special 2 x 5 with Towball Socket,9 +3492c01,"Crane Bucket - Complete Assembly (Top, Jaws, Spring)",34 +3497,Baseplate 8 x 24,1 +35,Wheel Spoked Large,29 +35025,Duplo Vehicle Base Assembly - 2 x 4 Plate with 2 Axles - 4 Silver Wheels and 4 Black Tires,4 +3537stk01,Sticker for Set 3537 - (46666/4199346),17 +354,Glass for Panel 3 x 6 x 6 with Window,16 +35509,"ADULT FIGURE, NO. 12",24 +35513,ADULT FIGURE WP05,24 +3570,Roadsign Octagonal,24 +3570p01,"Roadsign Octagonal with ""STOP"" Short Text Print",24 +3570p02,"Roadsign Octagonal with ""STOP"" Tall Text Print",24 +35744,SWORD,24 +3578stk01,Sticker for Set 3578 - (49866/4225342),17 +3579,Door Frame 1 x 3 x 4,16 +3579stk01,Sticker for Set 3579 - (49885/4225343),17 +3581,Brick Special 1 x 1 x 2 with Shutter Holder,5 +3582,Window 1 x 2 x 2 Shutter,16 +3585,"Wedge, Plate 7 x 12 Wing Right",49 +3586,"Wedge, Plate 7 x 12 Wing Left",49 +3587,Tail Old,35 +3587pb02,Tail Old with Aquazone Aquashark Blue Shark with Red X Print,35 +3587pb03,Tail Old with 3 Red Arrows Print,35 +3587pb04,Tail Old with Red S (Sterling) Print,35 +3596,"Flag on Flagpole, Straight",38 +3596p01,"Flag on Flagpole, Straight with Stripes Print",38 +3596p02,"Flag on Flagpole Type 5 with LEGO Logo Closed ""O"" Print",38 +3596p03,"Flag on Flagpole Type 5 w/ LEGO Logo Closed ""O"" Square Print",38 +3596pb02,"Flag on Flagpole, Straight with Red Lego Print",38 +3596pb03,"Flag on Flagpole, Straight with Red Small Lego Print",38 +3596pb19,"Flag on Flagpole, Straight with Coast Guard Print",38 +3596px1,"Flag on Flagpole, Straight with Knight's Tournament Print (Printed)",38 +3597,Hinge Plate 2 x 4 - Female (Digger Bucket Holder),18 +359cdb01,"Paper, Cardboard Base for Sets 359 and 355",17 +36,Tyre Smooth Old Style - Large,29 +3612,Arm Piece Straight with 2 and 3 Fingers,18 +3613,"Arm Piece with Towball Socket, 3 Fingers",18 +3614,"Plate, Round 1 x 1 with Towball - Undetermined Hole Type",14 +3614a,Plate Round 1 x 1 with Towball with Round Hole (Maxifig Hand),18 +3614b,Plate Round 1 x 1 with Towball and Hexagonal Hole [Maxifig Hand],18 +3622,Brick 1 x 3,11 +3622p01,Brick 1 x 3 with Cash Register '1000' Display Print,2 +3622p02,Brick 1 x 3 with Control Panel Print,2 +3622pb002,Brick 1 x 3 with Radio and CD Player Print,2 +3622pb007,"Brick 1 x 3 with Bull's Head, Blue and Red Stripes Print",2 +3622pb008,Brick 1 x 3 with Green and Blue Stripe with Cargo Logo Print,2 +3622pf1,Brick 1 x 3 with Cash Register Print,2 +3622pr0001,Brick 1 x 3 with UniKitty Face Print,2 +3622pr0002,Brick 1 x 3 with Biznis Kitty Face with Glasses Print,2 +3622pr0003,Brick 1 x 3 with Queasy Kitty Face Print,2 +3622pr0004,Brick 1 x 3 with Cat Face Mad Print (Angry Kitty),2 +3622pr0005,Brick 1 x 3 with Cat Face with Black Border Print (Astro Kitty),2 +3622pr0006,"BRICK 1X3, marceline print",2 +3622pr0007,"BRICK 1X3, Princess Bubblegum Print",2 +3622pr0008,Brick 1 x 3 with with Teeth Print (Super Angry Kitty),2 +3622pr0009,Brick 1 x 3 with Cat Face Wide Eyes Watering (Sad Unikitty) Print,2 +3622pr0010,Brick 1 x 3 with Cat Face Wide Eyes Puzzled (Unikitty) Print,2 +3622pr0011,Brick 1 x 3 with Unikitty big sparkly eyes,2 +3622pr0012,"BRICK 1X3, Finn print",2 +3622pr0013,"BRICK 1X3, Ice King Print",2 +3622pr0016,"BRICK 1X3, Buckle print",2 +3622px1,Brick 1 x 3 with Radio and Tape Player Print,2 +3623,Plate 1 x 3,14 +3623pr0008,"Plate 1 x 3 with 2 Black Eyelashes, Closed Eyes and Squinting Lines - Super Angry Kitty Eyes Print",14 +3623pr0009,Plate 1 x 3 with 2 Small Black Arcs Low and High - (Sad Unikitty) Eyebrows Print,14 +3623pr0010,Plate 1 x 3 with 2 Small Black Arcs High and Low - (Puzzled Unikitty) Eyebrows Print,14 +3623pr0011,Unikitty eye brows,14 +3623pr0012,Plate 1 x 3 with White "PORS" on Red Background print,14 +3623pr0013,Plate 1 x 3 with White "SCHE" on Red Background print,14 +3624,Minifig Police Style Cap,27 +3625,Minifig Hair Female with Pigtails,13 +3626,Minifig Head Plain [Undetermined Stud],13 +3626a,Minifig Head Plain [Solid Stud],13 +3626apb03,"Minifig Head Male Eyepatch, Stubble, Black Hair Print [Solid Stud]",13 +3626apb04,"Minifig Head Moustache, Stubble and Messy Hair Black Print [Solid Stud]",13 +3626apb05,"Minifig Head Beard Vertical Lines with Messy Hair, Moustache Brown Print [Solid Stud]",13 +3626apb06,"Minifig Head Beard Vertical Lines with Messy Hair, Moustache Red, Eyepatch Print [Solid Stud]",13 +3626apb07,"Minifig Head Moustache, Stubble and Sideburns Black Print [Solid Stud]",13 +3626apr0001,Minifig Head Standard Grin Print [Solid Stud],13 +3626apx2,"Minifig Head Female with Messy Black Hair, Thick Red Lips Print [Solid Stud]",13 +3626b,Minifig Head Plain [Blocked Open Stud],13 +3626bp02,"Minifig Head Female Standard with Red Lips, Eyelashes Print [Blocked Open Stud]",13 +3626bp03,Minifig Head Moustache Pointed with Standard Grin Print [Blocked Open Stud],13 +3626bp04,Minifig Head Glasses with Black Sunglasses and Standard Grin Print [Blocked Open Stud],13 +3626bp05,Minifig Head Male Standard Grin and Eyebrows Print [Blocked Open Stud],13 +3626bp06,Minifig Head Male Eyebrows and Headset Print [Blocked Open Stud],13 +3626bp07,Minifig Head with Freckle Nose and Standard Grin Print [Blocked Open Stud],13 +3626bp09,"Minifig Head Female with Brown Thin Eyebrows, White Pupils, Short Eyelashes, Wide Black Smile and Pink Lips Print [Blocked Open Stud]",13 +3626bp35,"Minifig Head with Messy Hair, Moustache and Stubble Print [Blocked Open Stud]",13 +3626bp39,Minifig Head Beard with Gray Facial Hair Print [Blocked Open Stud],13 +3626bp3e,"Minifig Head with Wiry Moustache, Goatee and Eyebrows Print Pirates, Imperial Armada, Spaniard, goatee, handlebar moustache,pointed eyebrows, arched eyebrows [Blocked Open Stud]",13 +3626bp3f,"Minifig Head with Wiry Moustache and Eyebrows Print pirates,spaniard,armada [Blocked Open Stud]",13 +3626bp3j,Minifig Head Face Paint Islander with Red and White War Paint Print [Blocked Open Stud],13 +3626bp3k,Minifig Head Face Paint Islander with White and Blue War Paint Print [Blocked Open Stud],13 +3626bp3q,"Minifig Head with Sideburns and Droopy Moustache Brown Print face, Admiral, Governor, officer, Imperial, bluecoats,Pirates, Trading Post, Flagship, soldiers, standard grin [Blocked Open Stud]",13 +3626bp40,"Minifig Head Female with Messy Black Hair, Thick Red Lips Print [Blocked Open Stud]",13 +3626bp42,"Minifig Head Beard Vertical Lines with Messy Hair, Moustache Brown Print [Blocked Open Stud]",13 +3626bp43,"Minifig Head with Red Moustache, Beard and Messy Hair Print [Blocked Open Stud]",13 +3626bp44,"Minifig Head Beard Vertical Lines with Messy Hair, Moustache Black Print [Blocked Open Stud]",13 +3626bp46,"Minifig Head Beard Vertical Lines with Messy Hair, Moustache Red-Brown, Eyepatch Print [Blocked Open Stud]",13 +3626bp47,"Minifig Head Beard Vertical Lines with Messy Hair, Moustache Red, Eyepatch Print [Blocked Open Stud]",13 +3626bp48,"Minifig Head Male - Eyepatch, Stubble and Reddish-Brown Hair Print [Blocked Open Stud]",13 +3626bp49,"Minifig Head Male Eyepatch, Stubble, Black Hair Print [Blocked Open Stud]",13 +3626bp61,Minifig Head Moustache Ice Planet White and White Eyebrows Print [Blocked Open Stud],13 +3626bp62,Minifig Head Male White Bangs Messy Hair Print [Blocked Open Stud],13 +3626bp63,Minifig Head Alien with Robot Silver Print [Blocked Open Stud],13 +3626bp64,"Minifig Head with Gold Robot Print droid, Ann Droid, Exploriens, clear headed [Blocked Open Stud]",13 +3626bp65,Minifig Head Female with Ice Planet Red Hair and Black Hoop Earrings Print [Blocked Open Stud],13 +3626bp66,Minifig Head Male Headband Blue with Eyebrows Print [Blocked Open Stud],13 +3626bp67,"Minifig Head Moustache Thin, Stubble and Sideburns Print [Blocked Open Stud]",13 +3626bp68,Minifig Head Glasses with Silver Sunglasses and Red Headset Print [Blocked Open Stud],13 +3626bp69,"Minifig Head Male Headset Over Smile, Red-Brown Hair & Eyebrows Print [Blocked Open Stud]",13 +3626bp6f,"Minifig Head with Red Lips and Black Upswept Eyelashes Print face, Astro, Astrobots, lipstick, lady, Race, 6707,alligator woman, green racer [Blocked Open Stud]",13 +3626bp6u,Minifig Head with Gold Paint and Slanted Eyes Print [Blocked Open Stud],13 +3626bp6v,Minifig Head with Large Blue Mask Print [Blocked Open Stud],13 +3626bp6w,Minifig Head with Small Blue Mask Print [Blocked Open Stud],13 +3626bp6y,Minifig Head with Green Brain and Yellow Mouth Print [Blocked Open Stud],13 +3626bp7a,Minifig Head Male Brown Hair over Eye and Black Eyebrows Print [Blocked Open Stud],13 +3626bp7b,Minifig Head with Blue Sunglasses Print [Blocked Open Stud],13 +3626bp7c,Minifig Head with Blue Wrap-Around Sunglasses Print [Blocked Open Stud],13 +3626bp7e,Minifig Head Glasses with Blue Sunglasses and Wide-Spaced Stubble Print [Blocked Open Stud],13 +3626bpa1,"Minifig Head Glasses with Round Glasses, Gray Lines Beard and Moustache Print [Blocked Open Stud]",13 +3626bpa2,"Minifig Head Alien with Adventurers Mummy, Eyebrows, Red around Eyes, Pupils Print [Blocked Open Stud]",13 +3626bpa3,"Minifig Head Moustache Black Bangs, Striped Sideburns Print [Blocked Open Stud]",13 +3626bpa4,"Minifig Head Moustache Curly Thin, Goatee, Furrowed Brow Print [Blocked Open Stud]",13 +3626bpa5,"Minifig Head Moustache Scruffy Raised Eyebrows, Smirk Print [Blocked Open Stud]",13 +3626bpa7,"Minifig Head Glasses with Monocle, Scar, and Moustache Print [Blocked Open Stud]",13 +3626bpa9,Minifig Head with Villainous Glasses & Black Facial Hair Print [Blocked Open Stud],13 +3626bpaa,"Minifig Head with Snarl, Stubble, and Scar Print [Blocked Open Stud]",13 +3626bpab,"Minifig Head Moustache Brown Bushy, Stubble, Under-Eyes Wrinkles, Stripe Sideburns Print [Blocked Open Stud]",13 +3626bpac,Minifig Head Face Paint with Gray Stripes across Face Print (Achu) [Blocked Open Stud],13 +3626bpah,"Minifig Head with Rock Raiders Bandit Print Angry,Brown Eyebrows, Full Beard, Blue Bandana [Blocked Open Stud]",13 +3626bpaj,"Minifig Head with Rock Raiders Jet Print white,bangs,female,woman,lipstick,headset [Blocked Open Stud]",13 +3626bpam,"Minifig Head with Rock Raiders Axle Print Orange Bangs, Black Sideburns [Blocked Open Stud]",13 +3626bpan,"Minifig Head with Rock Raiders Chief Print gray moustache,eyebrows [Blocked Open Stud]",13 +3626bpao,"Minifig Head - Big Eyes, Curved Eyebrows, Orange Mouth Print [Blocked Open Stud]",13 +3626bpat,"Minifig Head with Black Eyes, Stubble, and Headset Print dash, eyebrows, mouth, teeth [Blocked Open Stud]",13 +3626bpau,"Minifig Head with Gray Eyes, Stubble, and Headset Print chin, cleft, dash, eyebrows, mouth, teeth, microphone [Blocked Open Stud]",13 +3626bpav,"Minifig Head with Pursed Red Lips, Purple Hair, and Headset Print radia [Blocked Open Stud]",13 +3626bpaw,"Minifig Head with Continued Eyebrow, Headset, and Stubble Print microphone,crunch [Blocked Open Stud]",13 +3626bpax,"Minifig Head with Black Fu Manchu, Goatee, Headset, and Sunglasses Print stubble,microphone, moustache,sideburns [Blocked Open Stud]",13 +3626bpay,"Minifig Head with Lipstick, Headset, and Eyeglasses Print cam [Blocked Open Stud]",13 +3626bpaz,"Minifig Head with Huge Grin, Eyebrows, and Headset Print flex [Blocked Open Stud]",13 +3626bpb0,"Minifig Head with Wide Red Lips, Purple Hair, and Headset Print radia [Blocked Open Stud]",13 +3626bpb0004,Minifig Head with Yellow and Black Fish Print [Blocked Open Stud],13 +3626bpb0006,Minifig Head Female with HP Hermione Print [Blocked Open Stud],13 +3626bpb0007,"Minifig Head Female with Red Lips, Purple Hair and Headset, Wide Lips Print [Blocked Open Stud]",13 +3626bpb0009,Minifig Head Male - Ron Weasley with Freckles Print [Blocked Open Stud],13 +3626bpb0010,"Minifig Head Alien with HP Troll, Eyebrows, Red Eyes, Teeth Print [Blocked Open Stud]",13 +3626bpb0011,Minifig Head with Pumpkin Jack O' Lantern Print [Blocked Open Stud],13 +3626bpb0013,"Minifig Head Male Huge Grin, Headset, Eyebrows Print (Flex) with Hair [Blocked Open Stud]",13 +3626bpb0016,"Minifig Head Male Brown Bangs Parted on Right, White Pupils and Smile Print [Blocked Open Stud]",13 +3626bpb0018,"Minifig Head Moustache Curly and Split, Short Wavy Eyebrows, Stubble Print [Blocked Open Stud]",13 +3626bpb0019,"Minifig Head Moustache Brown Bushy, Stubble, and Brown Sideburns Print [Blocked Open Stud]",13 +3626bpb0020,"Minifig Head Moustache Curly and Split, Long Wavy Eyebrows Print [Blocked Open Stud]",13 +3626bpb0022,"Minifig Head Male Open Mouth and Teeth, Long Black Hair, One Closed Eye Print [Blocked Open Stud]",13 +3626bpb0024,"Minifig Head Beard with Brown Trim Beard (forked below mouth) and Eyebrows, Headset Print [Blocked Open Stud]",13 +3626bpb0030,"Minifig Head Moustache Large Gray, Gray Eyebrows, and Large Glasses Print [Blocked Open Stud]",13 +3626bpb0031,"Minifig Head Glasses with Blue Glasses, 2 White Teeth and Sideburns Print [Blocked Open Stud]",13 +3626bpb0033,Minifig Head Balaclava with Silver Framed Face and Headset Print (SW Jango Fett) [Blocked Open Stud],13 +3626bpb0034,Minifig Head Alien with Copper Skin and Silver Eyepiece Print [Blocked Open Stud],13 +3626bpb0036,"Minifig Head Alien with Black Hair, Headset, Green and Copper Eye Grid Print [Blocked Open Stud]",13 +3626bpb0038,Minifig Head with Nesquik Bunny Eyes and Smile Print [Blocked Open Stud],13 +3626bpb0039,Minifig Head Male Straight Small Smile and Black Curved Eyebrows Print [Blocked Open Stud],13 +3626bpb0042,Minifig Head Alien with Frankenstein Monster Print [Blocked Open Stud],13 +3626bpb0043,"Minifig Head Moustache White Hair on Sides, and Large Glasses Print [Blocked Open Stud]",13 +3626bpb0044,Minifig Head Dual Sided with Glasses / No Glasses Print [Blocked Open Stud],13 +3626bpb0045,"Minifig Head Male Brown Bangs Parted on Right, Thick Eyes and Smile Print [Blocked Open Stud]",13 +3626bpb0046,"Minifig Head Male White Eyebrows and Goatee, Angry Smirk Print [Blocked Open Stud]",13 +3626bpb0047,"Minifig Head Female with Red Lips, Purple Eye Shadow, Headset, Reading Glasses Print [Blocked Open Stud]",13 +3626bpb0048,"Minifig Head Glasses Small with Green Eyes, Stubble, Thin Wide Moustache over Mouth Line Print [Blocked Open Stud]",13 +3626bpb0049,"Minifig Head Male Confused Expression, White Goatee Print (Henchman 1) [Blocked Open Stud]",13 +3626bpb0051,"Minifig Head Female with Pink Lips Smirk, Furrowed Eyes Print (Sky) [Blocked Open Stud]",13 +3626bpb0052,"Minifig Head Male Confused Expression, Messy Black Hair Print (Henchman 2) [Blocked Open Stud]",13 +3626bpb0053,"Minifig Head Glasses with Small Black Sunglasses, Smirk Print (Snap) [Blocked Open Stud]",13 +3626bpb0054,"Minifig Head Moustache, Stubble and Sideburns Black Print [Blocked Open Stud]",13 +3626bpb0055,"Minifig Head - White Eyes, White Hair, White Teeth and Gap Tooth Grin Print [Blocked Open Stud]",13 +3626bpb0056,"Minifig Head Female with Red Lips, Green Eyes, Red Eye Shadow, Headset Print (Cam) [Blocked Open Stud]",13 +3626bpb0057,"Minifig Head Moustache Red, Headset, Red Eyebrows Print [Blocked Open Stud]",13 +3626bpb0058,"Minifig Head Male Long Eyebrows, 2 Lines Mouth, Stubble and Headset Print [Blocked Open Stud]",13 +3626bpb0081,"Minifig Head Alien with Robot Female, Lips Print [Blocked Open Stud]",13 +3626bpb0083,"Minifig Head - Moustache Curly and Full, Plain Eyebrows Print [Blocked Open Stud]",13 +3626bpb0090,"Minifig Head Alien with Alpha Team Arctic Android, Red Eyes Print [Blocked Open Stud]",13 +3626bpb0091,"Minifig Head with Alpha Team Arctic Red, Blue, Yellow Ogel Orb Print [Blocked Open Stud]",13 +3626bpb0092,"Minifig Head Alien with Red Eyes, Frown, and Messy Hair Print [Blocked Open Stud]",13 +3626bpb0093,Minifig Head Alien with Blue and Silver Mask Type 2 Print [Blocked Open Stud],13 +3626bpb0094,Minifig Head Alien with Blue and Silver Mask Type 3 Print [Blocked Open Stud],13 +3626bpb0095,Minifig Head Male Open Mouth and Raised Eyebrow and Headset Print [Blocked Open Stud],13 +3626bpb0096,"Minifig Head Moustache, Stubble and Sideburns Brown Print [Blocked Open Stud]",13 +3626bpb0097,"Minifig Head Alien with Robot Male, Blue Eyes Print [Blocked Open Stud]",13 +3626bpb0098,Minifig Head Glasses with Silver Sunglasses and Goatee Print [Blocked Open Stud],13 +3626bpb0101,"Minifig Head Moustache Gray Hair, and Eyebrows Print [Blocked Open Stud]",13 +3626bpb0103,"Minifig Head Male Brown Hair, Thick Arched Eyebrows and Stubble Print [Blocked Open Stud]",13 +3626bpb0106,"Minifig Head Female with Red Lips, White Hair and Headset Print [Blocked Open Stud]",13 +3626bpb0107,"Minifig Head Alien with Green Hair, Copper Eyepiece and Headset Print [Blocked Open Stud]",13 +3626bpb0108,"Minifig Head Alien with Red Eyes, Frown and Gills Print [Blocked Open Stud]",13 +3626bpb0109,"Minifig Head Female with Red Lips Large, Green Eyebrows, and Long Hair Print [Blocked Open Stud]",13 +3626bpb0110,Minifig Head with Blue Sunglasses and Moustache Print [Blocked Open Stud],13 +3626bpb0111,"Minifig Head Alien with SW EV-9D9 Droid, Yellow Eyes Print [Blocked Open Stud]",13 +3626bpb0112,"Minifig Head Moustache Thin, Goatee, Long Eyebrow, Stubble Print [Blocked Open Stud]",13 +3626bpb0114,"Minifig Head Glasses with Black Sunglasses, Goatee and Headset Print [Blocked Open Stud]",13 +3626bpb0117,Minifig Head NBA with Lips and Goatee and Hair Stripes Print [Blocked Open Stud],13 +3626bpb0118,"Minifig Head Moustache Curly Thick, Thick Sideburns, Smile Print [Blocked Open Stud]",13 +3626bpb0119,"Minifig Head Glasses with Thin Silver Sunglasses, Big Grin Print [Blocked Open Stud]",13 +3626bpb0123,"Minifig Head Male White Bandage with Blood, Side Open Mouth Print [Blocked Open Stud]",13 +3626bpb0124,"Minifig Head Glasses with Blue Goggles, Red Bangs Print [Blocked Open Stud]",13 +3626bpb0125,"Minifig Head Male HP Tom Riddle with Black Eyelashes and White Pupils, Arched Right Brow, Chin Dimple Print [Blocked Open Stud]",13 +3626bpb0126,"Minifig Head Female with Orange Goggles, Dimples around Lips Print [Blocked Open Stud]",13 +3626bpb0128,"Minifig Head Male HP Gilderoy with Light Brown Eyebrows, Cheek Dimple, Open Mouth Smile Print [Blocked Open Stud]",13 +3626bpb0131,Minifig Head NBA Kobe Bryant Print [Blocked Open Stud],13 +3626bpb0132,Minifig Head NBA Jason Kidd Print [Blocked Open Stud],13 +3626bpb0133,Minifig Head NBA Toni Kukoc Print [Blocked Open Stud],13 +3626bpb0134,Minifig Head NBA Tim Duncan Print [Blocked Open Stud],13 +3626bpb0135,Minifig Head NBA Ray Allen Print [Blocked Open Stud],13 +3626bpb0136,Minifig Head NBA Pau Gasol Print [Blocked Open Stud],13 +3626bpb0137,Minifig Head NBA Vince Carter Print [Blocked Open Stud],13 +3626bpb0138,Minifig Head NBA Dirk Nowitzki Print [Blocked Open Stud],13 +3626bpb0139,Minifig Head NBA Gary Payton Print [Blocked Open Stud],13 +3626bpb0140,Minifig Head NBA Allen Iverson Print [Blocked Open Stud],13 +3626bpb0141,Minifig Head NBA Steve Francis Print [Blocked Open Stud],13 +3626bpb0142,Minifig Head NBA Karl Malone Print [Blocked Open Stud],13 +3626bpb0143,Minifig Head NBA Chris Webber Print [Blocked Open Stud],13 +3626bpb0144,Minifig Head NBA Allan Houston Print [Blocked Open Stud],13 +3626bpb0145,Minifig Head NBA Tracy McGrady Print [Blocked Open Stud],13 +3626bpb0146,Minifig Head NBA Paul Pierce Print [Blocked Open Stud],13 +3626bpb0147,Minifig Head NBA Jerry Stackhouse Print [Blocked Open Stud],13 +3626bpb0148,Minifig Head NBA Steve Nash Print [Blocked Open Stud],13 +3626bpb0149,Minifig Head NBA Kevin Garnett Print [Blocked Open Stud],13 +3626bpb0150,Minifig Head NBA Predrag Stojakovic Print [Blocked Open Stud],13 +3626bpb0151,Minifig Head NBA Jalen Rose Print [Blocked Open Stud],13 +3626bpb0152,Minifig Head NBA Shaquille O'Neal Print [Blocked Open Stud],13 +3626bpb0153,Minifig Head NBA Tony Parker Print [Blocked Open Stud],13 +3626bpb0154,Minifig Head NBA Antoine Walker Print [Blocked Open Stud],13 +3626bpb0155,Minifig Head with HP Remembrall Band Print [Blocked Open Stud],13 +3626bpb0160,"Minifig Head Female with Pink Lips, Cheek Dimples, Nose Freckles, Bright Eyes Print (HP Ginny) [Blocked Open Stud]",13 +3626bpb0161,"Minifig Head Beard with Goatee, Connected Brow and Eye Whites Print [Blocked Open Stud]",13 +3626bpb0162,"Minifig Head Moustache Thin, Small Goatee, Straight Connected Brow Print [Blocked Open Stud]",13 +3626bpb0163,"Minifig Head Male White Eyes, Black Eyegrease, Wavy Mouth Print [Blocked Open Stud]",13 +3626bpb0164,"Minifig Head Moustache Thin, V Brow Eyes Print [Blocked Open Stud]",13 +3626bpb0165,"Minifig Head Moustache Open Mouth, Goatee, V Brow Eyes, Black Hair, Stubble Print [Blocked Open Stud]",13 +3626bpb0166,"Minifig Head Balaclava with Face Hole, Right Eyebrow Arched, Mouth Open to Side Print [Blocked Open Stud]",13 +3626bpb0167,"Minifig Head Alien with SW Bib Fortuna, Red Eyes and Lips Print [Blocked Open Stud]",13 +3626bpb0168,"Minifig Head Female with Pink Lips, Gray Hair, Wrinkles Print (HP Professor McGonagall) [Blocked Open Stud]",13 +3626bpb0169,Minifig Head Male Orient China Guard Print [Blocked Open Stud],13 +3626bpb0170,"Minifig Head Dual Sided HP Harry with Glasses and Lightning Bolt, with Gills / without Gills Print [Blocked Open Stud]",13 +3626bpb0172,"Minifig Head Moustache and Stubble Print, White Pupils, Eyebrows [Blocked Open Stud]",13 +3626bpb0173,"Minifig Head Beard Stubble Black Eyebrows, Wide Mouth, White Pupils Print [Blocked Open Stud]",13 +3626bpb0174,"Minifig Head Moustache Curly Long Thick, White Grin, Raised Eyebrows Print [Blocked Open Stud]",13 +3626bpb0175,"Minifig Head Female with Red Lips, Open Mouth, Thick Eyelashes Print [Blocked Open Stud]",13 +3626bpb0178,Minifig Head Glasses with Monocle (Strapped) and Scars Print (HP Mad-Eye Moody) [Blocked Open Stud],13 +3626bpb0179,Minifig Head Male Headband Red with White Grimace Print [Blocked Open Stud],13 +3626bpb0180,"Minifig Head Balaclava with Silver Trim, Nose Hump, Eye Whites Print [Blocked Open Stud]",13 +3626bpb0181,"Minifig Head Male Brown Eyebrows (Left Curved Down), Open Side Smile with Dimples Print [Blocked Open Stud]",13 +3626bpb0182,"Minifig Head Moustache Fu Manchu, Cheek Bones Print (Emperor Chang Wu) [Blocked Open Stud]",13 +3626bpb0184,"Minifig Head Balaclava with Eyes Hole and Nose Hump, Large Eye Whites and Squint Print [Blocked Open Stud]",13 +3626bpb0185,Minifig Head Beard with Angry Eyebrows and Open Mouth Print [Blocked Open Stud],13 +3626bpb0186,"Minifig Head Moustache Raised Eyebrow, White Teeth with Missing Tooth and Lower Lip Print [Blocked Open Stud]",13 +3626bpb0188,"Minifig Head Balaclava with Silver Goggles, Downturned Partly Opened Mouth Print [Blocked Open Stud]",13 +3626bpb0189,"Minifig Head Glasses, Silver Sunglasses with Ribbon, Aggravated Grin Print [Blocked Open Stud]",13 +3626bpb0190,"Minifig Head Female with Red Lips, Wide Smile, Small Eyelashes Print [Blocked Open Stud]",13 +3626bpb0191,"Minifig Head Glasses with Blue Sunglasses, Grim Face with Cheek Lines Print [Blocked Open Stud]",13 +3626bpb0192,Minifig Head Alien with Orient Dragon Fortress Guard Print [Blocked Open Stud],13 +3626bpb0195,"Minifig Head Male - Thin Grin, Black Eyes with White Pupils and No Eyebrows Print [Blocked Open Stud]",13 +3626bpb0196,Minifig Head Beard Brown Angular with White Pupils and Grin Print [Blocked Open Stud],13 +3626bpb0197,"Minifig Head Female with Red Lips, Gray Eyebrows and Wrinkles Print [Aunt May] [Blocked Open Stud]",13 +3626bpb0198,"Minifig Head Glasses, Green Goggles, Open Mouth Print (Dr. Octavious) [Blocked Open Stud]",13 +3626bpb0199,"Minifig Head Glasses, Green and Silver, Brown Arched Eyebrows, Frown Print (Dr. Octopus)",13 +3626bpb0200,"Minifig Head Glasses, Green and Silver, Brown Arched Eyebrows, Open Mouth Clenched Teeth Print (Dr. Octopus) [Blocked Open Stud]",13 +3626bpb0201,"Minifig Head Glasses, Green and Silver, Brown Arched Eyebrows, Open Mouth Print (Dr. Octopus) [Blocked Open Stud]",13 +3626bpb0203,"Minifig Head Moustache Dark Bluish Gray Bushy, Dk Bluish Gray Eyebrows, White Pupils Print [Blocked Open Stud]",13 +3626bpb0206,"Minifig Head Male Eyebrows, White Pupils, and Toothed Grin Print (HP Neville) [Blocked Open Stud]",13 +3626bpb0207,"Minifig Head Moustache with Eyebrows, White Pupils, and Stubble Print (HP Sirius Black)",13 +3626bpb0208,Minifig Head Alien with HP Dementor Print 1 [Blocked Open Stud],13 +3626bpb0209,"Minifig Head Moustache Thin Gray, Wide Smirk, Scratches/Scars across Face Print (HP Professor Lupin) [Blocked Open Stud]",13 +3626bpb0213,"Minifig Head Moustache with Hair, Eyebrows, White Pupils, Dimples Print (HP Peter Pettigrew) [Blocked Open Stud]",13 +3626bpb0217,"Minifig Head Beard Black with Trimmed Chin, Full Cheeks, Striped Sideburns, Scowl Eyebrows, White Pupils Print (Shadow Knight) [Blocked Open Stud]",13 +3626bpb0218,"Minifig Head Beard Light Brown Sideburns, Goatee, Moustache, White Pupils Print (Danju) [Blocked Open Stud]",13 +3626bpb0220,"Minifig Head Beard Full, Long Mouth, Thick Eyebrows, White Pupils Print (Santis) [Blocked Open Stud]",13 +3626bpb0223,"Minifig Head Beard and Messy Gray Hair, Wide Frown, White Pupils Print (The Guardian) [Blocked Open Stud]",13 +3626bpb0224,"Minifig Head Male Scars Gray Left & Right, No Eyebrows Print (Darth Vader revised) [Blocked Open Stud]",13 +3626bpb0225,Minifig Head with Round Black on White Skull Print (Witch's Bottle) [Blocked Open Stud],13 +3626bpb0226,"Minifig Head Glasses with Headset, Bandana Print (Diamond) [Blocked Open Stud]",13 +3626bpb0227,"Minifig Head Female, Glasses with Headset, Long Hair and Red Lips Print (Radia) [Blocked Open Stud]",13 +3626bpb0228,"Minifig Head Glasses with Headset, Fine Stubble Print (Flex) [Blocked Open Stud]",13 +3626bpb0230,"Minifig Head Male Partially Open Mouth, Dimples, Stubble, and Headset Print (Charge) [Blocked Open Stud]",13 +3626bpb0232,"Minifig Head Male Smirk, Blue Goatee, Blue and Black Fade and Checks in Hair Print (Zed) [Blocked Open Stud]",13 +3626bpb0234,"Minifig Head Male Eyebrows, Long Hair, Headset and Square Eye Device Print (Arrow) [Blocked Open Stud]",13 +3626bpb0237,"Minifig Head Male Scars Red Left & Right, No Eyebrows Print [Blocked Open Stud]",13 +3626bpb0238,"Minifig Head Male Angry Black Eyebrows, Yellow Eyes and Gray Wrinkles Print [Blocked Open Stud]",13 +3626bpb0240,"Minifig Head Glasses with Blue Glasses, Long Black Bangs and Open Mouth Print [Blocked Open Stud]",13 +3626bpb0245,"Minifig Head Alien with HP Merman Fish Eyes, Green Lips Print [Blocked Open Stud]",13 +3626bpb0248,Minifig Head Alien with Gray Mask and Mouth Grille Print (UFO Blue) [Blocked Open Stud],13 +3626bpb0249,Minifig Head Beard with Brown Trim Beard (forked below mouth) and Eyebrows Print (from sw055a) [Blocked Open Stud],13 +3626bpb0251,"Minifig Head Alien with SW Jawa, Yellow Eyes Print [Blocked Open Stud]",13 +3626bpb0252,Minifig Head Male SW Gray Stubble and Gray Eyebrows Print (Owen Lars) [Blocked Open Stud],13 +3626bpb0253,"Minifig Head Male Black Goatee, Thick Eyebrows and Squint, Grimace, White Pupils Print (HP) [Blocked Open Stud]",13 +3626bpb0425,"Minifig Head Male Stubble, Brown Eyebrows and Sideburns, White Pupils Print [Blocked Open Stud]",13 +3626bpb0426,"Minifig Head Male Black Eyebrows, Cheek Lines and White Pupils Print [Blocked Open Stud]",13 +3626bpb0427,"Minifig Head Male Brown Eyebrows and Moustache, White Mouth and White Pupils Print [Blocked Open Stud]",13 +3626bpb0428,"Minifig Head Male Black Crooked Eyebrows, Vertical Cheek Lines, White Mouth and White Pupils Print [Blocked Open Stud]",13 +3626bpb0429,Minifig Head Thick Black Eyebrows with Crow's Feet Wrinkles and White Pupils Print [Blocked Open Stud],13 +3626bpb0430,"Minifig Head Female, Thin Black Eyebrows, Crooked Smile, Pale Pink Lipstick and White Pupils Print [Blocked Open Stud]",13 +3626bpb0431,"Minifig Head Balaclava with Eye and Mouth Holes, Red Mask and White Pupils Print [Blocked Open Stud]",13 +3626bpb0432,"Minifig Head Thin Crooked Eyebrows, Curly Moustache, Goatee, and White Pupils Print [Blocked Open Stud]",13 +3626bpb0433,"Minifig Head Vertical Cheek Lines, Straight Mouth and White Pupils Print (Crash Test Dummy) [Blocked Open Stud]",13 +3626bpb0434,"Minifig Head Silver Faceplate, Red Eyes and Rectangular Grid Mouth [Blocked Open Stud]",13 +3626bpb0437,"Minifig Head Big Eyes with White Pupils, Red Nose and Large White Mouth Print (Clown) [Blocked Open Stud]",13 +3626bpb0438,"Minifig Head Male Black Eyes with White Pupils, Uni-Brow and Wide Mouth Print [Blocked Open Stud]",13 +3626bpb0440,"Minifig Head with Black Eyes and Eyebrows, Two-Color Cheek Paint Print [Blocked Open Stud]",13 +3626bpb0585,"Minifig Head Dual Sided Black Glasses, Smiling / Scared Print [Blocked Open Stud]",13 +3626bpb0685,"Minifig Head Male Brown Eyebrows, White Pupils, Smile Wrinkles and Wide Open Smile Print [Blocked Open Stud]",13 +3626bpb0686,"Minifig Head Female with Peach Lips, Open Mouth Smile, Black Eyebrows, Light Green Mascara Print [Blocked Open Stud]",13 +3626bpb0687,"Minifig Head Male Brown Eyebrows, Open Mouth Smile, Chin Dimple, White Pupils Print [Blocked Open Stud]",13 +3626bpb0722,"Minifig Head Alien with SW Darth Maul, Red Face and Teeth Print [Blocked Open Stud]",13 +3626bpb0723,Minifig Head Dual Sided Alien with Raging / Scowl Print (Hulk) [Blocked Open Stud],13 +3626bpb0743,"Minifig Head Black Eyebrows, Cheek Lines, Open Smile and Drops of Sweat Print [Blocked Open Stud]",13 +3626bpb0811,Minifig Head Dual Sided LotR Elrond Calm / Battle Rage Print [Blocked Open Stud],13 +3626bpb0910,"Minifig Head Male Black Eyebrows, Open Mouth Smile with Tongue Print [Blocked Open Stud]",13 +3626bpb0912,Minifig Head Female Glasses with Eyelashes and Red Lips Print [Blocked Open Stud],13 +3626bpb0913,"Minifig Head Beard Stubble, Brown Eyebrows and Paint Stains Print [Blocked Open Stud]",13 +3626bpb0914,"Minifig Head Female with Black Eyebrows, Eyelashes, Red Lips, Open Smile and Pink Cheeks Print [Blocked Open Stud]",13 +3626bpb0915,"Minifig Head Male Black Thick Eyebrows, White Pupils, Sad with Tear Print [Blocked Open Stud]",13 +3626bpb0917,Minifig Head Face Paint with Red War Paint Print [Blocked Open Stud],13 +3626bpb0918,"Minifig Head Female with Black Sunglasses, Red Lips and Smirk Print [Blocked Open Stud]",13 +3626bpb0919,"Minifig Head Dual Sided Alien with Fangs, Green Lips, Cheek Lines, Yellow Eyes / Open Mouth with Red Eyes Print [Blocked Open Stud]",13 +3626bpb0920,"Minifig Head Brown Eyebrows, Cheek Lines, White Pupils, Frown Print [Blocked Open Stud]",13 +3626bpb0921,"Minifig Head Male Black Angry Eyebrows, Bared Teeth and Wrinkles Print [Blocked Open Stud]",13 +3626bpb0923,"Minifig Head Female with Black Eyelashes and Angry Eyebrows, Cheek Lines, White Pupils and White Teeth Print [Blocked Open Stud]",13 +3626bpb0924,"Minifig Head Glasses, Gray Eyebrows and Moustache Print [Blocked Open Stud]",13 +3626bpb0925,"Minifig Head Beard Stubble, Brown Eyebrows and Bared Teeth Print [Blocked Open Stud]",13 +3626bpb0926,"Minifig Head Brown Eyebrows, Cheek Lines, White Pupils Print [Blocked Open Stud]",13 +3626bpb0977,"Minifig Head Beard Dark Brown Full, Dark Brown Eyebrows, White Pupils, Crow's Feet Print [Blocked Open Stud]",13 +3626bpb4,"Minifig Head with Red Lips, Headset, and Red Eyeshadow Print Cam [Blocked Open Stud]",13 +3626bpdg,Minifig Head with Frankenstein Makeup Print [Blocked Open Stud],13 +3626bph1,Minifig Head with Eyeglasses and Lightning Scar Print [Blocked Open Stud],13 +3626bph2,Minifig Head with Tan Eyebrows and Frown Print [Blocked Open Stud],13 +3626bph4,Minifig Head with Gregory Goyle/Harry Potter 2-Sided Print [Blocked Open Stud],13 +3626bph5,Minifig Head with Vincent Crabbe/Ron Weasley 2-Sided Print [Blocked Open Stud],13 +3626bphb,"Minifig Head with Severus Snape Print One Raised Eyebrow, Frown [Severus Snape] [Blocked Open Stud]",13 +3626bpn1,"Minifig Head with White Hair, Eyebrows, and Moustache Print Castle, Ninja, Nippon, Japan, Old Shogun, Samurai, Emperor [Blocked Open Stud]",13 +3626bpr0001,Minifig Head Standard Grin Print [Blocked Open Stud],13 +3626bpr0002,Head Male Mask Black with Eye Holes and Smile Pattern (Nightwing) - Blocked Open Stud,13 +3626bpr0003,Head Female with Green Lips and Red Eyebrows Pattern (Poison Ivy) - Blocked Open Stud,13 +3626bpr0043,"Minifig Head Female with Brown Thin Eyebrows, White Pupils and Short Eyelashes, Wide Black Smile with Red Lips Print [Blocked Open Stud]",13 +3626bpr0098,"Minifig Head Female with Brown Hair, Eyelashes, and Lips Print [Blocked Open Stud]",13 +3626bpr0126,"Minifig Head Gray Eyebrows, Glasses, Beard and Moustache Print [Blocked Open Stud]",13 +3626bpr0136,"Minifig Head Male Red-Brown Hair over Eye, One Eyebrow, Stubble, White Pupils Print [Blocked Open Stud]",13 +3626bpr0137,"Minifig Head Female with Red Lips, Eyelashes, Gray Headband with Red Circle Print [Blocked Open Stud]",13 +3626bpr0146,Minifig Head [Obi-Wan Kenobi Beard with Brown Trimmed Beard and Eyebrows Print [Blocked Open Stud],13 +3626bpr0190,Minifig Head with Evil Skeleton Skull Print [Blocked Open Stud],13 +3626bpr0215,"Minifig Head Male Stern Black Eyebrows, Black Eyes and Frown Print [Blocked Open Stud]",13 +3626bpr0216,"Minifig Head Male Messy Red Hair, Smile, White Pupils Print (Pepper) [Blocked Open Stud]",13 +3626bpr0233,"Minifig Head Male Orange Sunglasses on Forehead, Stubble Print [Blocked Open Stud]",13 +3626bpr0245,Minifig Head Moustache Brown Bushy Moustache and Eyebrows Print [Blocked Open Stud],13 +3626bpr0247,"Minifig Head Moustache Black Bangs and Sideburns, Cleft Chin Print [Blocked Open Stud]",13 +3626bpr0250,"Minifig Head Male - Stubble, Black Messy Hair Print [Blocked Open Stud]",13 +3626bpr0251,"Minifig Head Beard with Gray Hair, Moustache, and Angry Eyebrows Print [Blocked Open Stud]",13 +3626bpr0252,"Minifig Head Male Black Hair, Eyebrows, and Smirk Print [Blocked Open Stud]",13 +3626bpr0262,"Minifig Head Moustache Open Mouth, Goatee, V Brow Eyes Print [Blocked Open Stud]",13 +3626bpr0263,"Minifig Head Beard with SW Gray Beard and Eyebrows, Lines under Eyes, Furrowed Brow Print [Blocked Open Stud]",13 +3626bpr0270,"Minifig Head with Orange Beard around Mouth, White Smile, White Pupils Print [Blocked Open Stud]",13 +3626bpr0279,Minifig Head Glasses with Orange Sunglasses and Smirk Print [Blocked Open Stud],13 +3626bpr0282,"Minifig Head with Silver Sunglasses, Eyebrows and Thin Grin Print [Blocked Open Stud]",13 +3626bpr0314,"Minifig Head Glasses with Brown Thin Eyebrows, Smile Print [Blocked Open Stud]",13 +3626bpr0325,"Minifig Head Male - Brown Eyebrows, Vertical Cheek Lines, Chin Dimple Print [Blocked Open Stud]",13 +3626bpr0335,"Minifig Head Glasses with Sunglasses, Arched Eyebrows, Open Mouth, and Headset Print [Blocked Open Stud]",13 +3626bpr0342,Minifig Head Male Smirk and Brown Eyebrows Print [Han Solo] [Blocked Open Stud],13 +3626bpr0347,"Minifig Head Glasses with Black Sunglasses, Partially Open Mouth, Sideburns and Stubble Print [Blocked Open Stud]",13 +3626bpr0348,"Minifig Head Male - Messy Black Hair, Goatee Print [Blocked Open Stud]",13 +3626bpr0350,"Minifig Head Male Sideburns with White Stripes, Frown and Facial Hair, White Pupils Print (Vladek) [Blocked Open Stud]",13 +3626bpr0351,"Minifig Head Male Pupils, Black Hair, Eyebrows and Wide Smile Print (Jayko)",13 +3626bpr0353,"Minifig Head - Gray Beard Fading to White Hair, White Pupils Print [Blocked Open Stud]",13 +3626bpr0360,"Minifig Head - Brown Bushy Moustache, Brown Eyebrows and White Pupils Print [Blocked Open Stud]",13 +3626bpr0367,Minifig Head with Rubens Barrichello Print [Blocked Open Stud],13 +3626bpr0368,Minifig Head Male Ferrari M. Schumacher Print [Blocked Open Stud],13 +3626bpr0369,"Minifig Head Balaclava with Eyes Hole Stitching Trim, Large Eye Whites Print [Blocked Open Stud]",13 +3626bpr0370,"Minifig Head Balaclava with Brown Eyebrows, White Spot in Eyes Print [Blocked Open Stud]",13 +3626bpr0374,Minifig Head Male HP Hagrid Print [Blocked Open Stud],13 +3626bpr0377,"Minifig Head with Half-Moon Glasses and Gray Eyebrows Print Albus Dumbledore, Professor, Headmaster, Harry Potter,Hogwarts School of Witchcraft and Wizardry [Blocked Open Stud]",13 +3626bpr0378,Minifig Head Female with Red Lips Small Eyebrows Print [Blocked Open Stud],13 +3626bpr0386,Minifig Head - Neat Brown Beard with White Pupils and Glasses Print [Blocked Open Stud],13 +3626bpr0387,"Minifig Head Brown Eyebrows, Thin Grin, Black Eyes with White Pupils Print [Blocked Open Stud]",13 +3626bpr0388,"Minifig Head with Thick Gray Eyebrows, Angular Beard, Open White Mouth, White Pupils Print [Blocked Open Stud]",13 +3626bpr0389,"Minifig Head Male Smirk, Pupils, Stubble Beard and Moustache and Sideburns Print [Blocked Open Stud]",13 +3626bpr0402,"Minifig Head Male Scars Gray Left & Right, Gray Eyebrows Print (Darth Vader 10188) [Blocked Open Stud]",13 +3626bpr0409,"Minifig Head with Dark Blue Sunglasses, Closed Mouth, Light Brown Sideburns and Goatee Print [Blocked Open Stud]",13 +3626bpr0410,"Minifig Head Male Arched Eyebrow, White Teeth with Gold Tooth, Coarse Stubble Print [Blocked Open Stud]",13 +3626bpr0411,"Minifig Head - Eyebrows and Scowl, White Pupils Print [Blocked Open Stud]",13 +3626bpr0420,Minifig Head Dual Sided HP Ron with Awake / Asleep Print [Blocked Open Stud],13 +3626bpr0421,Minifig Head Dual Sided HP Hermione with Awake / Asleep Print [Blocked Open Stud],13 +3626bpr0427,Minifig Head Male Thin Mouth with Chin Whiskers Print [Blocked Open Stud],13 +3626bpr0433,Minifig Head - Light Brown Beard with Sideburns and Eyebrows Print [Blocked Open Stud],13 +3626bpr0434,"Minifig Head - White Beardwith Sideburns and Eyebrows, Gritted Teeth Print [Blocked Open Stud]",13 +3626bpr0435,"Minifig Head - Brown Beard with Stubble, Yelling Mouth Print [Blocked Open Stud]",13 +3626bpr0437,"Minifig Head Chain Mail Balaclava, Brown Beard and Eyebrows, Gritted Teeth, White Pupils Print [Blocked Open Stud]",13 +3626bpr0439,"Minifig Head Glasses with Lightning Bolt on Forehead, Eyebrows Above Glasses Print (HP Harry) [Blocked Open Stud]",13 +3626bpr0440,Minifig Head Male Headband Red and Stubble Beard Print [Blocked Open Stud],13 +3626bpr0441,Minifig Head Glasses with Green and Silver Sunglasses and Scar Print [Blocked Open Stud],13 +3626bpr0443,"Minifig Head Balaclava with Eyes Hole Stitching Trim, Nose Hump, White Pupils Print [Blocked Open Stud]",13 +3626bpr0444,"Minifig Head Beard with Brown Trim Beard and Eyebrows, Gold Headset Print [Blocked Open Stud]",13 +3626bpr0445,"Minifig Head Dual Sided Exo-Force Brown Eyes with Orange Mask, Mouth Closed / Bared Teeth Print [Hikaru] [Blocked Open Stud]",13 +3626bpr0446,Minifig Head Dual Sided - Green Eyes with Frown and Scar / Open Mouth Print [Takeshi] [Blocked Open Stud],13 +3626bpr0449,Minifig Head Standard Grin Print [Blocked Open Stud],13 +3626bpr0451,Minifig Head Standard Grin Print [Blocked Open Stud],13 +3626bpr0452,Minifig Head Dual Sided - Green Eyes with Smirk / Open Mouth Smirk Print [Ha-Ya-To] [Blocked Open Stud],13 +3626bpr0453,"Minifig Head Dual Sided Exo-Force Brown Eyes, Scowl with Mouth Closed / Bared Teeth Print (Ryo Gate Guard) [Blocked Open Stud]",13 +3626bpr0454,"Minifig Head Moustache Thin, Standard Grin, Eyebrows, Small Eyelashes Print (SW Lando) [Blocked Open Stud]",13 +3626bpr0455,Minifig Head Male Cheek Wrinkles with Dk Bluish Gray Stern Eyebrows Print (SW Grand Moff Tarkin) [Blocked Open Stud],13 +3626bpr0458,"Minifig Head Male Scar Across Lip, Angry Black Eyebrows and Messy Hair Print (Dracus) [Blocked Open Stud]",13 +3626bpr0459,"Minifig Head Moustache Black, Messy Brown Hair, Small Mouth with Lower Lip, 3 Spots under Left Eye Print (Adric) [Blocked Open Stud]",13 +3626bpr0463,"Minifig Head Dual Sided Exo-Force Blue Eyes, Headband, Mouth Closed / Bared Teeth Print [Ryo] [Blocked Open Stud]",13 +3626bpr0464,Minifig Head Alien with Large Nose and Yellow Eye / White Eye Print (Squidward) [Blocked Open Stud],13 +3626bpr0465,"Minifig Head Male - Eyes and Mouth Wide Open, Blue Arrow on Forehead, Square on Back Print [Aang 3828 / 3829] [Blocked Open Stud]",13 +3626bpr0466,"Minifig Head Female with Blue Green Eyes, Brown Hair Lines on Sides Print [Katara 3829] [Blocked Open Stud]",13 +3626bpr0467,Minifig Head Male Eyes Blue with Raised Eyebrow and Smirk Print [Sokka 3828] [Blocked Open Stud],13 +3626bpr0468,"Minifig Head - Scarred Left Eye, Ponytail on Back Print [Prince Zuko 3829] [Blocked Open Stud]",13 +3626bpr0469,"Minifig Head with Huge Grin, Red Hair, and Headset Print flex [Blocked Open Stud]",13 +3626bpr0470a,"Minifig Head Male Gray Moustache, Goatee, and Eyebrows Print [Blocked Open Stud]",13 +3626bpr0470b,"Minifig Head Male Half Normal, Half Purple with Scar Print (Two-Face) [Blocked Open Stud]",13 +3626bpr0471,Minifig Head Glasses with Black Frames and Red Lenses Print (Mr. Freeze) [Blocked Open Stud],13 +3626bpr0472,"Minifig Head - Eyebrows, White Pupils and Chin Dimple Print [Blocked Open Stud]",13 +3626bpr0473,Minifig Head with Mask Br.Green with Eyeholes and Smile Print [Blocked Open Stud],13 +3626bpr0474,Minifig Head with Monocle and Black Slanted Eyebrows Print [Blocked Open Stud],13 +3626bpr0475,"Minifig Head Alien with Red Eyes, Grin with Sharp Teeth, Reptile Scales Print [Blocked Open Stud]",13 +3626bpr0476,Minifig Head with Pursed Lips and White Forehead Print [Blocked Open Stud],13 +3626bpr0479,"Minifig Head Moustache Thin, Laugh Lines, Sideburns, White Pupils Print (Alfred the Butler) [Blocked Open Stud]",13 +3626bpr0481,"Minifig Head with Dark Red Lips, Smirk/Eyemask 2-Sided Print [Blocked Open Stud]",13 +3626bpr0485,Minifig Head Male Black Eyebrows above Purple Mask with Eyeholes and Open Smile with Cheek Lines print (The Riddler) [Blocked Open Stud],13 +3626bpr0486,"Minifig Head - Red Eyes, Teeth and Wide Stitched Smile Print [Blocked Open Stud]",13 +3626bpr0487,"Minifig Head Dual Sided Exo-Force Dk Gray Moustache, Eyebrows, Thin Scar and Closed Mouth / Bared Teeth Print (Keiken) [Blocked Open Stud]",13 +3626bpr0488,Minifig Head Male Arched Eyebrows and Thin Line Mouth Print (SW Mace Windu) [Blocked Open Stud],13 +3626bpr0489,Minifig Head - Firebender with Gray Mask and Black Eyes Print [3828 / 3829] [Blocked Open Stud],13 +3626bpr0490,"Minifig Head Glasses with Black Goggles, Gray Chin Strap Print (SW Imperial AT-ST Pilot) [Blocked Open Stud]",13 +3626bpr0491,Minifig Head Dual Sided Exo-Force Green Eyes Female with Slight Smirk / Open Mouth Print (Hitomi) [Blocked Open Stud],13 +3626bpr0492,"Minifig Head Brown Eyebrows and Freckles, Large Pupils Print [Blocked Open Stud]",13 +3626bpr0493,"Minifig Head Male Angry Eyebrows and 1 Red Eye, White Pupils Print [Blocked Open Stud]",13 +3626bpr0494,"Minifig Head Skull Evil with Scowl Black Print, Red Eyes Print [Blocked Open Stud]",13 +3626bpr0495,Minifig Head Dual Sided - Female with Brown Eyebrows Scared / Smiling Print [Blocked Open Stud],13 +3626bpr0496,"Minifig Head - Evil Skull with Scowl, White Print, Red Eyes Print [Blocked Open Stud]",13 +3626bpr0498,"Minifig Head Brown Eyebrows, Thin Grin with Teeth, Black Eyes with White Pupils Print [Blocked Open Stud]",13 +3626bpr0499,"Minifig Head Male Brown Eyebrows, Black Eyes with White Pupils, Crooked Smile with Black Dimple Print [Blocked Open Stud]",13 +3626bpr0500,"Minifig Head Dual Sided - Black Eyebrows, Crows Feet and Mouth Open / Scared Print [Blocked Open Stud]",13 +3626bpr0501,"Minifig Head Male Brown Eyebrows, White Pupils, Open Mouth Smirk, Right Dimple Print [Blocked Open Stud]",13 +3626bpr0503,Minifig Head Alien with HP Death Eater Ornate Silver Mask Print [Blocked Open Stud],13 +3626bpr0505,"Minifig Head Alien with HP Mandrake Plant Face, Red Mouth Print [Blocked Open Stud]",13 +3626bpr0507,Minifig Head with Evil Pumpkin Print [7786] [Blocked Open Stud],13 +3626bpr0508,Minifig Head Alien (Bane) with Wrestler Mask with Large Red Eyes on Front and Green Hoses on Back print [Blocked Open Stud],13 +3626bpr0509,Minifig Head Male Ferrari K. Raikkonen Print [Blocked Open Stud],13 +3626bpr0511,Minifig Head with Red Eyes and Lower Fangs Print [Blocked Open Stud],13 +3626bpr0513,Minifig Head Male Brown Eyebrows and Black Chin Strap Print [Blocked Open Stud],13 +3626bpr0514,"Minifig Head Male Brown Thick Eyebrows, Blue Eyes, Scar and Lines Print [Blocked Open Stud]",13 +3626bpr0515a,"Minifig Head Male Scars, Damage Print (Darth Vader Battle Damaged) [Blocked Open Stud]",13 +3626bpr0515b,"Minifig Head Male Brown Eyebrows, Open Lopsided Grin, Chin Dimple, White Pupils Print [Blocked Open Stud]",13 +3626bpr0516a,"Minifig Head Male Brown Stubble, Brown Eyebrows and White Pupils Print (Indiana Jones) [Blocked Open Stud]",13 +3626bpr0516b,"Minifig Head - Peach Lips, Blue Eyes, Tan Fringe Print [Blocked Open Stud]",13 +3626bpr0518,"Minifig Head Glasses with Silver Glasses, Gray and White Beard and Gray Moustache Print (Henry Jones Sr.) [Blocked Open Stud]",13 +3626bpr0519,Minifig Head Dual Sided Blue Eyes with Brown Eyebrows Scared / Smiling Print (Marion Ravenwood) [Blocked Open Stud],13 +3626bpr0520,"Minifig Head Female with Black Lips, Green Eye Shadow Print [Blocked Open Stud]",13 +3626bpr0521,"Minifig Head Male Huge Grin, White Pupils, Eyebrows Print [Blocked Open Stud]",13 +3626bpr0523,"Minifig Head Female with Black Harlequin Mask, Blue Eyes, Black Lips Print [Blocked Open Stud]",13 +3626bpr0525,"Minifig Head Male Black Thick Eyebrows, Large Eyes, Cheek Lines Print [Blocked Open Stud]",13 +3626bpr0526,"Minifig Head Glasses with Gold Sunglasses, Moustache and Frown Print [Blocked Open Stud]",13 +3626bpr0527,"Minifig Head - Black and Red Bangs, Black Eyebrows, Mouth Open to Side Print [Blocked Open Stud]",13 +3626bpr0529,"Minifig Head - Black Eyebrows and Hair, Forehead Lines, Frown Print [Blocked Open Stud]",13 +3626bpr0530,"Minifig Head Male Black Eyebrows, Eyelashes, Smile, White Pupils Print [Blocked Open Stud]",13 +3626bpr0531,"Minifig Head - Brown Hair, Eyebrows, Red Lips Print [Blocked Open Stud]",13 +3626bpr0532,"Minifig Head Moustache Bushy, Black Eyebrows, White Pupils Print [Blocked Open Stud]",13 +3626bpr0533,"Minifig Head Female with Brown Arched Eyebrows, Eyelashes and Red Lips Print (Trixie) [Blocked Open Stud]",13 +3626bpr0534,"Minifig Head Male Stern Eyebrows, White Pupils, Cheek Lines, Chin Dimple Print [Blocked Open Stud]",13 +3626bpr0535,"Minifig Head Eyebrows and White Left Eye with Red Scar, Bared Teeth Print [Blocked Open Stud]",13 +3626bpr0536,"Minifig Head Eyepatch, Gold Teeth, Missing Tooth Print [Blocked Open Stud]",13 +3626bpr0537,"Minifig Head - Black Monobrow, Moustache and Pointed Teeth Print [Blocked Open Stud]",13 +3626bpr0538,"Minifig Head - Four Mechanical Eyes, Teeth Print [Blocked Open Stud]",13 +3626bpr0539,"Minifig Head Alien with Cyborg Eyepiece, Eyebrow Left Side Print [Blocked Open Stud]",13 +3626bpr0540,"Minifig Head Dual Sided - Silver Glasses, Headset, Smiling / Scared Print [Blocked Open Stud]",13 +3626bpr0541,"Minifig Head Beard Stubble Brown Eyebrows, Bared Teeth, White Pupils Print [Blocked Open Stud]",13 +3626bpr0542,"Minifig Head Dual Sided - Red Lips, Headset, Scared / Smiling Print [Blocked Open Stud]",13 +3626bpr0544,"Minifig Head Male Cheek Wrinkles, Stern Brown Eyebrows, Scars above Right Eye Print [Blocked Open Stud]",13 +3626bpr0545,"Minifig Head Female with Peach Lips, Stern Eyebrows, White Pupils Print (Irina) [Blocked Open Stud]",13 +3626bpr0546,"Minifig Head with Forehead Tattoo, White Pupils, Red Print on Reverse [Blocked Open Stud]",13 +3626bpr0547,"Minifig Head Beard Thick with Lines, Brown Eyebrows, Moustache, Large Blue Eyes Print [Blocked Open Stud]",13 +3626bpr0548,"Minifig Head Male Thick Eyebrows, Brown Eyes, Five O'Clock Shadow Print (SW Captain Rex) [Blocked Open Stud]",13 +3626bpr0549,"Minifig Head with Blue Eyes, Red Lips and Dark Purple Markings Print [Blocked Open Stud]",13 +3626bpr0550,"Minifig Head Male Angry Black Eyebrows, White Pupils, Smirk Print (SR Gray Ghost) [Blocked Open Stud]",13 +3626bpr0551,"Minifig Head Dual Sided - Sunglasses, Headset, Angry Eyebrows / Scowl, White Pupils Print [Blocked Open Stud]",13 +3626bpr0552,"Minifig Head Male Angry Black Eyebrows, Yellow Eyes with Black Circles, Wrinkles Print [Blocked Open Stud]",13 +3626bpr0553,"Minifig Head Slime Face, 1 Red Eye, White Teeth, Missing Tooth Print [Blocked Open Stud]",13 +3626bpr0554,"Minifig Head Alien with Mechanical Right Eye Green, Scars on Left Cheek, Stubble Print [Blocked Open Stud]",13 +3626bpr0555,Minifig Head with Ahsoka Tano Blue Eyes Print [Blocked Open Stud],13 +3626bpr0557,"Minifig Head Dual Sided Power Miner Connected Brow with DBGray Beard, Sideburns, Hair and Black Scar, Grin / Clenched Teeth Print [Blocked Open Stud]",13 +3626bpr0558,"Minifig Head Dual Sided Power Miner Connected Brow with Light Bluish Gray Sideburns and Orange Scar, Determined / Scared Print [Blocked Open Stud]",13 +3626bpr0559,"Minifig Head Dual Sided Power Miner Thick Eyebrows and Stubble, Evil Grin / Surprised Print [Blocked Open Stud]",13 +3626bpr0560,"Minifig Head Dual Sided Power Miner Beard Stubble, Gray Smudge, Orange Scars, Determined / Alarmed Print [Blocked Open Stud]",13 +3626bpr0561,"Minifig Head Dual Sided Power Miner Silver Plate and Orange Scars, Determined / Scared Print [Blocked Open Stud]",13 +3626bpr0562,"Minifig Head Dual Sided Power Miner Glasses with Blue Arrow, Mouth Closed / Bared Teeth Print [Blocked Open Stud]",13 +3626bpr0563,"Minifig Head Dual Sided Power Miner Thin Eyebrows, Determined / Open Mouth Grin with Teeth Print [Blocked Open Stud]",13 +3626bpr0564,"Minifig Head Beard Red-Brown, Sneer, Eyepatch Print [Blocked Open Stud]",13 +3626bpr0565,"Minifig Head - Scruffy Lightt Bluish Gray Beard, Downturned Mouth and Eyebrows, Crow's Feet and Wrinkles Print [Blocked Open Stud]",13 +3626bpr0566,"Minifig Head Moustache Brown Long, Sideburns, Stubble, Thick Eyebrows, White Pupils Print [Blocked Open Stud]",13 +3626bpr0567,"Minifig Head Moustache Handlebar and Sideburns Dark Bluish Gray, White Pupils, Teeth Print [Blocked Open Stud]",13 +3626bpr0568,Minifig Head Female with Eyepatch and Large Red Lips Print [Blocked Open Stud],13 +3626bpr0569,"Minifig Head Beard Gray with Gray Eyebrows, Downturned Mouth, Deeply Furrowed Brow Print (Dooku Clone Wars) [Blocked Open Stud]",13 +3626bpr0570,"Minifig Head Male Eyepatch, Brown Eyebrows, Stubble Print [Blocked Open Stud]",13 +3626bpr0571,"Minifig Head Male Forehead and Cheek Lines, Furrowed Brow Print (SW Clone Wars Mace) [Blocked Open Stud]",13 +3626bpr0572,"Minifig Head Male Arched Eyebrows, White Pupils, Wide Grin with Dimples Print [Blocked Open Stud]",13 +3626bpr0573,Minifig Head Dual Sided Female with Blue Eyes Scared / Smiling with Teeth Print [Blocked Open Stud],13 +3626bpr0574,"Minifig Head Male Large Grin and Dimples, Asian Eyes, White Pupils Print [Blocked Open Stud]",13 +3626bpr0575,"Minifig Head Moustache Fu Manchu, White Pupils and Scowl Print [Blocked Open Stud]",13 +3626bpr0576,"Minifig Head Rosy Cheeks, Open Mouth, Brown Eyebrows Print (Caroler) [Blocked Open Stud]",13 +3626bpr0577,"Minifig Head Alien with Red Eyes, Dark Green Lips and Lower Fangs Print [Blocked Open Stud]",13 +3626bpr0578,"Minifig Head Alien with Red Eye, Scar Across Other Eye and Lower Fangs Print [Blocked Open Stud]",13 +3626bpr0579,"Minifig Head Dual Sided with Huge Grin, White Pupils, Eyebrows / Sad with Tear Print [Blocked Open Stud]",13 +3626bpr0580,"Minifig Head Dual Sided Female with Red Lips, Crow's Feet and Beauty Mark Annoyed / Smiling Print [Blocked Open Stud]",13 +3626bpr0581,Minifig Head with Gold Death Star Print [Blocked Open Stud],20 +3626bpr0582,Minifig Head Alien with SW Neimoidian Gray Facial Lines Print [Blocked Open Stud],13 +3626bpr0583,"Minifig Head Male Blue Eyes, Deep Brown Wrinkles Print [Blocked Open Stud]",13 +3626bpr0584,"Minifig Head Male Brown Eyebrows, White Pupils, Vertical Cheek Lines, Headset Print [Blocked Open Stud]",13 +3626bpr0585,"Head Male Arched Eyebrow, White Teeth, Course Stubble, Jewel over Left Eye Pattern - Blocked Open Stud",13 +3626bpr0586,"Minifig Head Female with Black Lips, Black Sunglasses Print [Blocked Open Stud]",13 +3626bpr0587,Minifig Head Beard Brown Bushy with Black Pupils and Frown Print [Blocked Open Stud],13 +3626bpr0588,Minifig Head Beard Gray with White Pupils and Grin with Teeth Print [Blocked Open Stud],13 +3626bpr0589,Minifig Head Dual Sided Skull Mask / Arched Eyebrows and White Pupils Print [Blocked Open Stud],13 +3626bpr0590,Minifig Head Dual Sided Female with Blue Eyes Scared / Smiling mouth closed Print [Blocked Open Stud],13 +3626bpr0591,Minifig Head Moustache Black Fu Manchu with Thick Black Eyebrows Print [Blocked Open Stud],13 +3626bpr0592,Minifig Head Beard Black Van Dyke with Thick Black Moustache and Eyebrows Print [Blocked Open Stud],13 +3626bpr0593,"Minifig Head - Brown Stubble, Brown Eyebrows and Open Grin Print [Blocked Open Stud]",13 +3626bpr0594,"Minifig Head Male Angry Black Eyebrows, Red Paint on Forehead, Jowl Lines Print [Blocked Open Stud]",13 +3626bpr0595,Minifig Head Beard Brown Full with Black Knit Eyebrows and Grin with Teeth Print [Blocked Open Stud],13 +3626bpr0596,"Minifig Head - Single Eye, Spots, and Jagged Teeth Print [Blocked Open Stud]",13 +3626bpr0598,"Minifig Head Alien with Yellow Eyes, Pointed Teeth and Bubbles Print [Blocked Open Stud]",13 +3626bpr0599,Minifig Head Dual Sided Red Sunglasses and Grin / Scared Print [Blocked Open Stud],13 +3626bpr0600,Minifig Head Dual Sided Bushy Eyebrows and Goatee / Worried Print [Blocked Open Stud],13 +3626bpr0601,"Minifig Head Dual Sided Alien with Black Eyebrows, Open Mouth and Two Red Eyes / Three Red Eyes Print [Blocked Open Stud]",13 +3626bpr0602,Minifig Head Face Paint with Red Paint and Sunken Eyes Print [Blocked Open Stud],13 +3626bpr0603,Minifig Head Alien with Robot Large Black Teeth Print [Blocked Open Stud],13 +3626bpr0604,Minifig Head Alien with SW Turk Falso Print [Blocked Open Stud],13 +3626bpr0606,Minifig Head Alien with SW Brown Goggles Print (Ohnaka) [Blocked Open Stud],13 +3626bpr0607,"Minifig Head Beard with Brown Trim Beard (angular below mouth), Eyebrows and Smile Print (Crix Madine) [Blocked Open Stud]",13 +3626bpr0608,Minifig Head with Werewolf Print [Game 3837] [Blocked Open Stud],13 +3626bpr0609,Minifig Head Dual Sided Pumpkin Vertical Lines Print [Blocked Open Stud],13 +3626bpr0611,Minifig Head with Devil Print - Game 3837 [Blocked Open Stud],13 +3626bpr0612,Minifig Head Dual Sided Brown Eyebrows and Black Chin Strap Smiling / Worried Print [Blocked Open Stud],13 +3626bpr0619,"Minifig Head Red Eyes with White Pupils, Missing Teeth Print (Zombie) [Blocked Open Stud]",13 +3626bpr0627,"Minifig Head Female, Black Eyes with Eyelashes, Thin Brown Eyebrows and Pale Pink Lipstick with Open Mouth Print [Blocked Open Stud]",13 +3626bpr0628,"Minifig Head Male Crooked Smile, Black Eyes with White Pupils, Black Eyebrows Print [Blocked Open Stud]",13 +3626bpr0629,Minifig Head Alien with Bloodshot Eyes and White Fangs Print [Blocked Open Stud],13 +3626bpr0630,"Minifig Head Alien with Large Black Eyes, Wide Mouth And Dark Blue Spots Print (Atlantis Manta Ray) [Blocked Open Stud]",13 +3626bpr0631,"Minifig Head Male - Black Eyebrows, Pupils and Orange Visor Print [Blocked Open Stud]",13 +3626bpr0632,"Minifig Head Male - Black Eyebrows, White Pupils and Orange Chin Dimple Print [Blocked Open Stud]",13 +3626bpr0633,"Minifig Head Female SW Barriss Offee, Blue Lips, Blue Tattoo Print [Blocked Open Stud]",13 +3626bpr0634,"Minifig Head Dual Sided Thick Eyebrows, Blue Eyes, Scar and Lines / Snow Goggles and Gray Bandana Print [Blocked Open Stud]",13 +3626bpr0635,Minifig Head Male SW Brown Eyebrows and Chin Dimple Print [Blocked Open Stud],13 +3626bpr0636,"Minifig Head Male Stern Black Eyebrows, Green Pupils and Chin Dimple Print [Blocked Open Stud]",13 +3626bpr0638,"Minifig Head with Gray Beard and Eyebrows, Lines under Eyes, Furrowed Brow, White Pupils Print [Blocked Open Stud]",13 +3626bpr0639,"Minifig Head Male Scars Gray Left & Right, Gray Eyebrows, White Pupils Print (Darth Vader 852554) [Blocked Open Stud]",13 +3626bpr0640,Minifig Head Dual Sided Eyepatch and Gray Beard Closed Mouth / Open Mouth Scared Print [Blocked Open Stud],13 +3626bpr0641,"Minifig Head Dual Sided Glasses, Brown Eyebrows and Moustache Closed Mouth / Open Mouth Scared Print [Blocked Open Stud]",13 +3626bpr0642,"Minifig Head Dual Sided Brown Eyebrows, Cheek Lines, Mouth Closed / Mouth Open Scared Print [Blocked Open Stud]",13 +3626bpr0643,Minifig Head Dual Sided Stubble Smile / Crinkled Mouth and Inverted Eyebrows Print [Blocked Open Stud],13 +3626bpr0644,"Minifig Head Dual Sided Thin Eyebrows, Open Smile / Surprised Print [Blocked Open Stud]",13 +3626bpr0645,"Minifig Head Male Brown Eyebrows, Open Lopsided Grin, White Pupils Print [Blocked Open Stud]",13 +3626bpr0646,"Minifig Head Glasses with Gray Frame Sides, Brown Eyebrows and Open Smile Print [Blocked Open Stud]",13 +3626bpr0647,"Minifig Head Female with Peach Lips, Open Mouth Smile, Brown Eyebrows Print [Blocked Open Stud]",13 +3626bpr0648,"Minifig Head Male Brown Eyebrows, White Pupils and Brown Chin Dimple Print (SW Han Solo) [Blocked Open Stud]",13 +3626bpr0649,Minifig Head Beard Brown Rounded with White Pupils and Grin Print [Blocked Open Stud],13 +3626bpr0650,"Minifig Head Grim Face with Cheek Lines, Thin Eyebrows and White Pupils [Blocked Open Stud]",13 +3626bpr0651,"Minifig Head Beard Stubble, Black Eyebrows, Frown, White Pupils Print [Blocked Open Stud]",13 +3626bpr0652,"Minifig Head Trimmed Beard, Moustache, Silver Cheek Mark, Determined Expression Print [Blocked Open Stud]",13 +3626bpr0653,"Minifig Head Beard Stubble, Arched Eyebrow, Bared Teeth Print [Blocked Open Stud]",13 +3626bpr0654,"Minifig Head Dual Sided Beard Stubble, Bushy Eyebrows, Determined / Grin Print [Blocked Open Stud]",13 +3626bpr0655,"Minifig Head Dual Sided Female with Eyelashes, Eye Shadow, Dark Red Lips, Smile / Frown Print [Blocked Open Stud]",13 +3626bpr0656,"Minifig Head Dual Sided Black Beard, Bushy Eyebrows, Grin / Worried Print [Blocked Open Stud]",13 +3626bpr0657,"Minifig Head Black Goatee, Arched Eyebrows, White Pupils [Blocked Open Stud]",13 +3626bpr0658,"Minifig Head Beard Black Full, Thick Black Eyebrows, White Pupils Print [Blocked Open Stud]",13 +3626bpr0659,"Minifig Head Beard Stubble, Cleft Chin, Evil Eyes, Arched Eyebrows [Blocked Open Stud]",13 +3626bpr0660,"Minifig Head Beard, Moustache, Large Eyepatch, Determined Expression Print [Blocked Open Stud]",13 +3626bpr0662,"Minifig Head Dual Sided Male with Connected Brow, Sideburns, Bared Teeth / Balaclava Print [Blocked Open Stud]",13 +3626bpr0663,"Minifig Head Dual Sided Male with Red Scars, Scowl / Determined Print [Blocked Open Stud]",13 +3626bpr0664,Minifig Head Alien with Face Mask Print (SW Clone Pilot) [Blocked Open Stud],13 +3626bpr0665,"Minifig Head Male Scars, Bared Teeth Print (SW Anakin Skywalker) [Blocked Open Stud]",13 +3626bpr0667,Minifig Head Alien with Large Brown Eyes and Purple Lips Print (SW Aayla Secura) [Blocked Open Stud],13 +3626bpr0668,"Minifig Head Dual Sided Headset and Green Glasses with Red Bars, Glasses Down / Glasses Up and Mouth Open Print [Blocked Open Stud]",13 +3626bpr0669,"Minifig Head Dual Sided Stubble and Connected Brow, Determined / Scared Print [Blocked Open Stud]",13 +3626bpr0671,"Minifig Head Dual Sided with Red Spots and Glasses, Determined / Evil Smile Print [Blocked Open Stud]",13 +3626bpr0675,"Minifig Head Dual Sided Red Sunglasses with White Stripes, Grin / Clenched Teeth Print [Blocked Open Stud]",13 +3626bpr0676,"Minifig Head with Eyebrows, White Pupils, Wide Open Smile (LEGO Club Max) [Blocked Open Stud]",13 +3626bpr0677,"Minifig Head Brown Eyebrows and Freckles, Open Smile, White Pupils Print [Blocked Open Stud]",13 +3626bpr0678,"Minifig Head Alien with Large Blue Eyes, Turtle Mouth and Gills Print [Blocked Open Stud]",13 +3626bpr0679,"Minifig Head White Beard, Sideburns, Moustache, Eyebrows and White Pupils Print [Blocked Open Stud]",13 +3626bpr0680,"Minifig Head Male Black Eyebrows, Vertical Cheek Lines, Chin Dimple and Wide Grin Print [Blocked Open Stud]",13 +3626bpr0681,Minifig Head Alien with Red Eyes and Breathing Apparatus Ports Print (SW Cad Bane) [Blocked Open Stud],13 +3626bpr0682,Minifig Head Alien with Red Eyes and White Fangs Print [Blocked Open Stud],13 +3626bpr0683,Minifig Head Alien with SW Shahan Alama Print [Blocked Open Stud],13 +3626bpr0684,"Minifig Head Mime Happy Face, Black Eyes with White Pupils [Blocked Open Stud]",13 +3626bpr0685,"Minifig Head Glasses with Black and Silver Sunglasses, Chin Dimple Print [Blocked Open Stud]",13 +3626bpr0686,"Minifig Head Vertical Cheek Lines, Slight Frown, Chin Dimple and White Pupils Print [Blocked Open Stud]",13 +3626bpr0687,"Minifig Head Fangs, Red Eyes with White Pupils Print (Vampire) [Blocked Open Stud]",13 +3626bpr0688,"Minifig Head Beard Black with Ragged Edges, Black Eyebrows, Bared Teeth Print [Blocked Open Stud]",13 +3626bpr0689,"Minifig Head Moustache Curly Long, Open Mouth Grin, White Pupils Print [Blocked Open Stud]",13 +3626bpr0690,"Minifig Head Female with Pink Lips, Thin Brown Eyebrows and White Pupils Print [Blocked Open Stud]",13 +3626bpr0691,"Minifig Head Male Black Thick Eyebrows, Cheek Lines and Furrowed Brow Print [Blocked Open Stud]",13 +3626bpr0692,"Minifig Head Male Brown Stubble, Brown Eyebrows, Crooked Smile and Cheek Lines Print [Blocked Open Stud]",13 +3626bpr0693,"Minifig Head Dark Green Lips and Warts, Black Cheek Lines and Female Eyelashes Print [Blocked Open Stud]",13 +3626bpr0694,"Minifig Head with White Eyes, Black Pupils and Red Nose Print [Blocked Open Stud]",13 +3626bpr0695,"Minifig Head Moustache Black Thick, Grin with Teeth, White Pupils Print [Blocked Open Stud]",13 +3626bpr0696,Minifig Head Glasses with Monocle on Chain and Bushy Dark Bluish Gray Eyebrows and Moustache Print [Blocked Open Stud],13 +3626bpr0697,"Minifig Head Glasses with Purple Sunglasses with Silver Frames, Grin Print [Blocked Open Stud]",13 +3626bpr0698,"Minifig Head Mime Sad Face, Black Eyes with White Pupils [Blocked Open Stud]",13 +3626bpr0699,"Minifig Head Mime Scared Look, Black Eyes with White Pupils Print [Blocked Open Stud]",13 +3626bpr0700,"Minifig Head Glasses with Orange Sunglasses, Brown Eyebrows and Crooked Smile Print [Blocked Open Stud]",13 +3626bpr0701,"Minifig Head Dripping Sweat, with Clenched Teeth and Crow's Feet Print [Blocked Open Stud]",13 +3626bpr0702,"Minifig Head Female with Pink Lips and Eye Shadow, Open Mouth and Beauty Mark Print [Blocked Open Stud]",13 +3626bpr0703,"Minifig Head Dual Sided HP Harry with Glasses and Lightning Bolt, Frowning / Smiling Print [Blocked Open Stud]",13 +3626bpr0704,Minifig Head Dual Sided HP Death Eater Mask with White Swirls / Raised Eyebrows Print [Blocked Open Stud],13 +3626bpr0705,Minifig Head Dual Sided HP Draco Smirking / Troubled Print [Blocked Open Stud],13 +3626bpr0706,Minifig Head Male Black Eyebrows and Grin Missing Tooth Print (HP Marcus Flint) [Blocked Open Stud],13 +3626bpr0707,"Minifig Head Dual Sided HP Madame Hooch Red Lipstick, Goggles / no Goggles Print [Blocked Open Stud]",13 +3626bpr0708,Minifig Head Dual Sided HP Ron Smiling / Scared Print [Blocked Open Stud],13 +3626bpr0709,Minifig Head Male HP Hagrid Wrinkles Print [Blocked Open Stud],13 +3626bpr0711,Minifig Head Dual Sided HP Fred / George Weasley Closed Mouth / Open Mouth Smile Print [Blocked Open Stud],13 +3626bpr0713,"Minifig Head Dual Sided HP Ginny with Freckles and Eyelashes, Slightly Smiling / Frowning Print [Blocked Open Stud]",13 +3626bpr0714,"Minifig Head Female with Peach Lips, Crow's Feet and Mouth Lines Print (HP Mrs. Weasley) [Blocked Open Stud]",13 +3626bpr0715,"Minifig Head Male Brown Eyebrows, Wrinkles, Wide Smile Print (HP Mr. Weasley) [Blocked Open Stud]",13 +3626bpr0716,"Minifig Head Dual Sided HP Bellatrix with Brown Eyeshadow and Dark Red Lips, Laughing / Scared Print [Blocked Open Stud]",13 +3626bpr0717,Minifig Head Dual Sided HP Werewolf Fur with Grim Face / Bared Teeth Print [Blocked Open Stud],13 +3626bpr0718,Minifig Head Dual Sided HP Ollivander Smiling / Scared Print [Blocked Open Stud],13 +3626bpr0719,Minifig Head Alien with HP Dementor Print 2 [Blocked Open Stud],13 +3626bpr0720,Minifig Head Alien with HP Voldemort with Teeth Print [Blocked Open Stud],13 +3626bpr0721,Minifig Head Male HP Snape with Brown Lines and Crease Between Eyebrows Print [Blocked Open Stud],13 +3626bpr0722,Minifig Head Glasses with Bushy Moustache and Eyebrows Print (HP Flitwick) [Blocked Open Stud],13 +3626bpr0723,"Minifig Head Stubble, Bushy Eyebrows, Forehead Lines Print (HP Argus Filch) [Blocked Open Stud]",13 +3626bpr0724,Minifig Head Dual Sided HP Hermione with Smiling / Annoyed Print [Blocked Open Stud],13 +3626bpr0725,"Minifig Head Male Thick Brown Eyebrows with Scar, Open Mouth with Missing Tooth, White Pupils Print [Blocked Open Stud]",13 +3626bpr0726,Minifig Head Dual Sided HP Dumbledore Glasses / No Glasses Print [Blocked Open Stud],13 +3626bpr0727,"Minifig Head Female with Red Lips, Eyelashes, Wrinkles Print (HP Professor McGonagall) [Blocked Open Stud]",13 +3626bpr0728,"Minifig Head Female with Pink Lips, Eyelashes and White Pupils Print [Blocked Open Stud]",13 +3626bpr0729,"Minifig Head Thick Eyebrows, White Pupils and Crow's Feet Print [Blocked Open Stud]",13 +3626bpr0731,"Minifig Head Male Thin Grin, Black Eyes with White Pupils, Black Eyebrows Print [Blocked Open Stud]",13 +3626bpr0732,"Minifig Head Female with Large Red Lips, Open Mouth Smile with Teeth, Thin Eyelashes and White Pupils Print (Hula Dancer) [Blocked Open Stud]",13 +3626bpr0733,Minifig Head Glasses with Slotted White Sunglasses and Smirk with Gold Teeth Print [Blocked Open Stud],13 +3626bpr0734,Minifig Head Male Long Brown Eyebrows and Light Brown Cheek Lines Print (Elf) [Blocked Open Stud],13 +3626bpr0735,Minifig Head Alien with Mummy Green Face Print [Blocked Open Stud],13 +3626bpr0736,"Minifig Head Beard Gray with Gray Eyebrows, Sideburns, Wide Open Smile and White Pupils Print [Blocked Open Stud]",13 +3626bpr0737,"Minifig Head Male Thick Brown Eyebrows, White Pupils and Grin with Teeth Print [Blocked Open Stud]",13 +3626bpr0738,"Minifig Head Alien with Mechanical Right Eye Red, Silver Head Plate Print [Blocked Open Stud]",13 +3626bpr0739,"Minifig Head Male Thick Black Eyebrows, Sideburns, Goatee, Moustache and White Pupils Print [Blocked Open Stud]",13 +3626bpr0740,Minifig Head Face Paint with Blue and White Painted Cheeks and Grin Print [Blocked Open Stud],13 +3626bpr0741,"Minifig Head Moustache and Eyebrows White and Gray Bushy, White Pupils and Crow's Feet Print [Blocked Open Stud]",13 +3626bpr0742,Minifig Head Male Wrinkled Mouth and Sweat Drops Print [Blocked Open Stud],13 +3626bpr0743,"Minifig Head Male Crooked Smile, Black Eyebrows, White Pupils, Chin Dimple Print [Blocked Open Stud]",13 +3626bpr0744,"Minifig Head Male - Black Eyebrows, White Pupils, Frown, Scar Across Left Eye Print [Blocked Open Stud]",13 +3626bpr0745,"Minifig Head Male - Raised Bushy Eyebrows, White Pupils, Chin Dimple Print [Blocked Open Stud]",13 +3626bpr0746,"Minifig Head Male - Scarred Eyebrow, White Pupils, Brown Chin Dimple Print [Blocked Open Stud]",13 +3626bpr0747,"Minifig Head Male - Black Eyebrows, White Pupils, Thin Mouth Print [Blocked Open Stud]",13 +3626bpr0748,"Minifig Head with White Goatee, Moustache and Eyebrows and Brown Age Lines Print [Blocked Open Stud]",13 +3626bpr0749,Minifig Head - Cracked Skull with Holes Print [Blocked Open Stud],13 +3626bpr0750,Minifig Head - Evil Skull with Red Eyes and Red Lips Print [Blocked Open Stud],13 +3626bpr0751a,Minifig Head - Cracked Skull with Metal Plates Print [Blocked Open Stud],13 +3626bpr0751b,"Minifig Head Dual Sided Female with Eyelashes and Red Lips Red Lips, Smile / Annoyed Print [Blocked Open Stud]",13 +3626bpr0752a,Minifig Head - Skull Cracked with Red Eyes and Grin Print [Blocked Open Stud],13 +3626bpr0752b,"Minifig Head Dual Sided with Freckles, Smile / Worried Print [Blocked Open Stud]",13 +3626bpr0753a,"Minifig Head Beard Stubble, Sideburns, Goatee and Red Scar Print (Jake Raines) [Blocked Open Stud]",13 +3626bpr0753b,Minifig Head Male Dual Sided Bushy Dark Brown Beard and Eyebrows with Bared Teeth Smiling / Angry Print [Blocked Open Stud],13 +3626bpr0754a,"Minifig Head Beard Stubble, Brown Eyebrows, Crooked Smile, White Pupils and Scar Print [Blocked Open Stud]",13 +3626bpr0754b,"Minifig Head Dual Sided Beard Stubble, Smile / Open Smile Print [Blocked Open Stud]",13 +3626bpr0755a,Minifig Head Dual Sided - Mummy Face with 2 Eyes / 1 Eye Print [Blocked Open Stud],13 +3626bpr0755b,"Minifig Head Dual Sided Arched Eyebrows and Goatee, Smile / Angry Print [Blocked Open Stud]",13 +3626bpr0756,"Minifig Head Dual Sided - Female with Brown Eyebrows and Freckles, Scared / Smiling Print [Blocked Open Stud]",13 +3626bpr0757,"Minifig Head Glasses with Brown Sideburns, Moustache and White Pupils Print [Blocked Open Stud]",13 +3626bpr0758,Minifig Head Dual Sided Alien with Gold Death Mask / Mummy Wrap with Red Eyes and Open Mouth Print [Blocked Open Stud],13 +3626bpr0759,Minifig Head Male Large Eyes and Cheek Lines Print (SW Clone Wars Mandalorian) [Blocked Open Stud],13 +3626bpr0760,Minifig Head with Face Mask and Silver Goggles Print (SW V-wing Pilot) [Blocked Open Stud],13 +3626bpr0761,Minifig Head - Small Eyes and Large Open Shark Mouth Print [Blocked Open Stud],13 +3626bpr0762,"Minifig Head Alien with SW Shaak Ti, Large Blue Eyes, White Lips Print [Blocked Open Stud]",13 +3626bpr0763,Minifig Head Dual Sided Beard with Stylized Face / Realistic Face Print [Blocked Open Stud],13 +3626bpr0764,Minifig Head Male with Thin Gray Moustache and Viewing Apparatus Print [Blocked Open Stud],13 +3626bpr0765,"Minifig Head Female, Thin Black Eyebrows, Eyelashes with Light Blue Mascara, Open Mouth Smile with Teeth and Red Lips, Gray Star Print [Blocked Open Stud]",13 +3626bpr0766,"Minifig Head Female, Black Eyes, Thin Eyebrows, Red Small Lips, White Pupils Print [Blocked Open Stud]",13 +3626bpr0767,"Minifig Head Alien with Frankenstein Monster, White Pupils and Wrinkles Print [Blocked Open Stud]",13 +3626bpr0768,"Minifig Head Male Black Eyebrows, Raised Left Eyebrow, Winkered Left Eye, White Pupil Print [Blocked Open Stud]",13 +3626bpr0769,"Minifig Head Male Brown Beard, Brown Eyebrows, Scar Across Left Eyebrow, Open Angry Mouth, White Pupils Print [Blocked Open Stud]",13 +3626bpr0770,"Minifig Head Male White Beard, White Bushy Eyebrows, Smile, White Pupils Print [Blocked Open Stud]",13 +3626bpr0771,"Minifig Head with Open Smiling Mouth, Teeth and Tounge Print [Blocked Open Stud]",13 +3626bpr0772,"Minifig Head Female, Crooked Smile, Pale Flesh Lipstick, Eyelashes, White Pupils Print [Blocked Open Stud]",13 +3626bpr0773,"Minifig Head Male Brown Eyebrows, Open Mouth Smile, Stubble, White Pupils Print [Blocked Open Stud]",13 +3626bpr0774,"Minifig Head Glasses with Rectangular Glasses, Open Mouth Smile, White Pupils Print [Blocked Open Stud]",13 +3626bpr0775,"Minifig Head Glasses, Pink and Silver, Gray Eyebrows, Open Mouth with Teeth Print [Blocked Open Stud]",13 +3626bpr0776,"Minifig Head Male Black Eyebrows, Raised Left Eyebrow, Black Goatee, White Pupils Print [Blocked Open Stud]",13 +3626bpr0777,"Minifig Head Male Black Eyebrows, Black Goatee and Moustache, White Pupils Print [Blocked Open Stud]",13 +3626bpr0778,"Minifig Head Male Black Eyebrows, Wrinkles, Scared Look, Open Mouth, White Pupils Print [Blocked Open Stud]",13 +3626bpr0779,"Minifig Head with Werewolf, Orange Eyes and Sharp Teeth Print [Blocked Open Stud]",13 +3626bpr0780,"Minifig Head Male Black Raised Eyebrows, Angry Open Mouth, White Pupils Print [Blocked Open Stud]",13 +3626bpr0781,"Minifig Head with Red Eyes, White Teeth and Silver Wrinkles Print [Blocked Open Stud]",13 +3626bpr0782,Minifig Head Dual Sided - Female Red Lips / Red Veil over Mouth Print [Blocked Open Stud],13 +3626bpr0783,"Minifig Head Dual Sided Alien with SW Embo, Large Yellow Eyes / Black Lines Print [Blocked Open Stud]",13 +3626bpr0784,"Minifig Head Female SW Aurra Sing, Large Green Eyes and Gray Lips Print [Blocked Open Stud]",13 +3626bpr0785,"Minifig Head Dual Sided Alien with SW Sugi, Large Brown Eyes, Red Lips and Cheek Lines / Purple Hair Print [Blocked Open Stud]",13 +3626bpr0786,"Minifig Head Alien with SW Saesee Tiin, Large Eyes and Cheek Lines Print [Blocked Open Stud]",13 +3626bpr0787,Minifig Head Dual Sided Alien with SW Luminara Unduli Purple Lips and Large Blue Eyes / Protective Eye Mask Print [Blocked Open Stud],13 +3626bpr0788,Minifig Head Dual Sided PotC Jack Black Moustache Cannibal Face Paint Smiling / Surprised Print [Blocked Open Stud],13 +3626bpr0789,Minifig Head Dual Sided - Jack Sparrow Black Moustache Smiling / Scared Print [Blocked Open Stud],13 +3626bpr0790,Minifig Head Dual Sided PotC Jack Black Moustache Determined / Skull Face Print [Blocked Open Stud],13 +3626bpr0791,"Minifig Head Dual Sided Thick Moustache and Eyebrows, Determined / Angry Print [Blocked Open Stud]",13 +3626bpr0799,Minifig Head Dual Sided PotC Elizabeth Light Brown Eyebrows and Dimple Smiling / Scared Print [Blocked Open Stud],13 +3626bpr0800,Minifig Head PotC Hector Barbossa Ragged Brown Beard Print [Blocked Open Stud],13 +3626bpr0801,"Minifig Head Dual Sided PotC Will Long Brown Sideburns, Moustache, and Goatee Sneering / Smiling Print [Blocked Open Stud]",13 +3626bpr0802,Minifig Head PotC Cannibal White and Yellow Face Paint Print [Blocked Open Stud],13 +3626bpr0803,Minifig Head PotC Cannibal Yellow Face Paint Print [Blocked Open Stud],13 +3626bpr0804,"Minifig Head Dual Sided PotC Gibbs Gray Beard and Eyebrows, Crow's Feet, Angry / Scared Print [Blocked Open Stud]",13 +3626bpr0805,Minifig Head Dual Sided PotC Norrington Ragged Brown Beard Smiling / Frowning Print [Blocked Open Stud],13 +3626bpr0806,"Minifig Head Dual Sided Black Curved Eyebrows, Brown Chin Dimple, Laughing / Worried Print [Blocked Open Stud]",13 +3626bpr0808,Minifig Head with Savage Opress Face with Yellow Zabrak Print [Blocked Open Stud],13 +3626bpr0809,Minifig Head Alien with SW Ki-Adi Mundi Print [Blocked Open Stud],13 +3626bpr0810,"Minifig Head Dual Sided Female with Dark Pink Lips, Eyelashes, Purple Eyeshadow Conniving / Angry Print [Blocked Open Stud]",13 +3626bpr0811,"Minifig Head Glasses with Silver Round Frames, Light Bluish Gray Sideburns Print [Blocked Open Stud]",13 +3626bpr0813,"Minifig Head Beard with Brown Eyebrows, Moustache and Beard Print [Blocked Open Stud]",13 +3626bpr0814,"Minifig Head Male Stern Black Eyebrows, White Pupils Print (SW Captain Panaka) [Blocked Open Stud]",13 +3626bpr0815,"Minifig Head Alien with SW Darth Maul, Red Face Paint, Nose Print [Blocked Open Stud]",13 +3626bpr0816,"Minifig Head Dual Sided Dark Orange Eyebrows, White Pupils and Brown Chin Dimple Determined / Smiling Print [Blocked Open Stud]",13 +3626bpr0817,"Minifig Head Dual Sided - Freckles, White Pupils / Podracer Goggles Print [Blocked Open Stud]",13 +3626bpr0818,Minifig Head Alien with SW Eeth Koth Print [Blocked Open Stud],13 +3626bpr0819,Minifig Head Alien with SW Quinlan Vos Print [Blocked Open Stud],13 +3626bpr0820,Minifig Head Dual Sided Male Stern Brown Eyebrows and Pupils / Gray Visor Print [Blocked Open Stud],13 +3626bpr0821,"Minifig Head Skull PotC Hector Barbossa Ragged Brown Beard, Teeth Print [Blocked Open Stud]",13 +3626bpr0823,"Minifig Head Female with Eyelashes, Red Lips, Open Smile and Lime Head Band Print [Blocked Open Stud]",13 +3626bpr0824,Minifig Head Glasses with White Ski Goggles with Strap and Open Smile Print [Blocked Open Stud],13 +3626bpr0825,"Minifig Head Male Black Eyebrows, Wrinkles, White Pupils with Open Smile Print [Blocked Open Stud]",13 +3626bpr0826,"Minifig Head Beard Stubble, Reddish Brown Eyebrows, White Pupils and Open Smile Print [Blocked Open Stud]",13 +3626bpr0827,"Minifig Head Beard Stubble, Black Angry Eyebrows with Baring Teeth Open Mouth Print [Blocked Open Stud]",13 +3626bpr0828,"Minifig Head Large Drawn Eyebrows, Blue Eye Make-up, Big Red Nose and Large Red Mouth Print (Clown) [Blocked Open Stud]",13 +3626bpr0829,"Minifig Head Female Black Eyebrows, Eyelashes with Thick Blue Mascara, Smile and Red Lips Print [Blocked Open Stud]",13 +3626bpr0830,"Minifig Head Beard Black Bushy Beard and Eyebrows, Angry Mouth, White Pupils Print [Blocked Open Stud]",13 +3626bpr0831,"Minifig Head Dual Sided Black Eyebrows, White Pupils, Open Smile with Gold Upper Row Teeth / Black Eye, Crooked Lips and Sad Look Print [Blocked Open Stud]",13 +3626bpr0832,"Minifig Head Male Black Eyebrows, Cheek Dimples, White Pupils and Open Smile Print [Blocked Open Stud]",13 +3626bpr0833,"Minifig Head Female Black Eyelashes, White Pupils, Red Lips, Crooked Smile and Mole on Left Cheek Print [Blocked Open Stud]",13 +3626bpr0834,"Minifig Head Male Black Eyebrows, White Pupils, Chin Dimple, Smile Wrinkles and Wide Open Smile Print [Blocked Open Stud]",13 +3626bpr0835,"Minifig Head Male Stern Eyebrows, White Pupils and Gold Chin Strap Print [Blocked Open Stud]",13 +3626bpr0836,"Minifig Head Male Thick Eyebrows, Thin Black Moustache, Cheek Dimples, and Sinister Open Smile Print [Blocked Open Stud]",13 +3626bpr0837,"Minifig Head Female Black Eyelashes and Eyebrows, White Pupils, Red Lips and Smudge on Cheek Print [Blocked Open Stud]",13 +3626bpr0838,"Minifig Head Male Dark Bluish Gray Eyebrows, Bushy Sideburns and Crooked Smile Print [Blocked Open Stud]",13 +3626bpr0839,Minifig Head Male SW Gray Stubble and Scar over Right Missing Eye Print (Commander Wolffe) [Blocked Open Stud],13 +3626bpr0841,"Minifig Head Alien with PotC Hadras Sunken Eyes, Teeth and Marine Growth Print [Blocked Open Stud]",13 +3626bpr0842,Minifig Head Alien with PotC Zombie with Silver Eye and Eyepatch Print [Blocked Open Stud],13 +3626bpr0843,Minifig Head Dual Sided - Zombie with Silver Eyes and Brown Face Lines Closed Mouth / Bared Teeth Print [Blocked Open Stud],13 +3626bpr0844,"Minifig Head PotC Blackbeard Bushy Black Beard, Moustache, Eyebrows Print [Blocked Open Stud]",13 +3626bpr0848,Minifig Head Dual Sided Female Mermaid with Dark Brown Sad Eyebrows and Tear / Scales and Gills Print [Blocked Open Stud],13 +3626bpr0849,Minifig Head Dual Sided Female Mermaid with Dark Brown Eyebrows and Dimple / Bared Teeth and Gills Print [Blocked Open Stud],13 +3626bpr0850,"Minifig Head PotC Scrum Brown Stubble and Goatee, Scar on Right Eye Print [Blocked Open Stud]",13 +3626bpr0851,"Minifig Head Dual Sided PotC Philip Thick Brown Eyebrows and Cheek Lines, Determined / Angry Print [Blocked Open Stud]",13 +3626bpr0852,"Minifig Head Dual Sided PotC Angelica Dark Brown Eyebrows, Eyelashes Pensive / Conniving Print [Blocked Open Stud]",13 +3626bpr0853,Minifig Head Alien with PotC Zombie with Silver Eyes and Light Gray Eyebrows Print [Blocked Open Stud],13 +3626bpr0854,"Minifig Head Brown Eyebrows, Light Brown Cheek Lines Print [Blocked Open Stud]",13 +3626bpr0855,Minifig Head Dual Sided HP Narcissa Dark Brown Eyebrows and Crow's Feet Smiling / Angry Print [Blocked Open Stud],13 +3626bpr0856,"Minifig Head Male Vertical Cheek Lines, White Pupils Print (HP Stan Shunpike) [Blocked Open Stud]",13 +3626bpr0862,"Minifig Head Male Gray Beard and Eyebrows, Brown Glasses Print (HP Ernie Prang) [Blocked Open Stud]",13 +3626bpr0864,Minifig Head PotC Davy Jones Silver Eyes and Furrowed Brow Print [Blocked Open Stud],13 +3626bpr0866,"Minifig Head Dual Sided Thin Smirk, Raised Eyebrow / Scared with Teeth Print [Blocked Open Stud]",13 +3626bpr0868,Minifig Head Alien with White Snake Eyes and Mouth with Fangs Print [Blocked Open Stud],13 +3626bpr0869,Minifig Head Alien with Yellow Snake Eyes and Mouth with Fangs Print [Blocked Open Stud],13 +3626bpr0873,Minifig Head PotC Bootstrap Bill Barnacles and Starfish Print [Blocked Open Stud],13 +3626bpr0874,"Minifig Head PotC Maccus Barnacles, One Eye Closed and Gritted Teeth Print [Blocked Open Stud]",13 +3626bpr0875,"Minifig Head Black Eyebrows and Facial Hair, Open Smile Print [Blocked Open Stud]",13 +3626bpr0876,"Minifig Head Female with Pink Lips and Eye Shadow, Open Smile with Teeth Print [Blocked Open Stud]",13 +3626bpr0877,"Minifig Head Beard Stubble, Mustache, Goatee, Bushy Eyebrows, Scars and Open Mouth Smile Print [Blocked Open Stud]",13 +3626bpr0878,"Minifig Head Female with Black Eyebrows, Eyelashes, White Pupils, Dark Green Lips Print [Blocked Open Stud]",13 +3626bpr0879,"Minifig Head Male Thick Black Eyebrows, Brown Cheek Lines, Determined Print [Blocked Open Stud]",13 +3626bpr0880,Minifig Head Beard Brown Angular Bushy with White Pupils and Open Mouth Smirk Print [Blocked Open Stud],13 +3626bpr0881,"Minifig Head Male Black Eyebrows, White Pupils and Dirt Stains Print [Blocked Open Stud]",13 +3626bpr0882,"Minifig Head Female with Black Thin Eyebrows, Eyelashes and White Surgical Mask Print [Blocked Open Stud]",13 +3626bpr0883,Minifig Head Female with Open Smile Red Lips and Beauty Mark Print [Blocked Open Stud],13 +3626bpr0884,"Minifig Head Dual Sided Black Eyebrows, Yawning / Asleep Print [Blocked Open Stud]",13 +3626bpr0885,Minifig Head Beard Stubble with Angry Eyebrows and Open Angry Mouth Print [Blocked Open Stud],13 +3626bpr0886,"Minifig Head Female with Black Arched Eyebrows, Eyelashes, Smirk with Silver Lips Print [Blocked Open Stud]",13 +3626bpr0887,"Minifig Head Male Brown Bushy Sideburns, Thin Eyebrows, White Pupils and Open Mouth Smile Print [Blocked Open Stud]",13 +3626bpr0889,"Minifig Head Glasses with Black and Silver Sunglasses, Chin Dimple, Grim Mouth Print [Blocked Open Stud]",13 +3626bpr0890,"Minifig Head Moustache Mutton Chops with Brown and Gray Sideburns, Brown and Gray Eyebrows, Pupils Print [Blocked Open Stud]",13 +3626bpr0891,"Minifig Head - Black Eyebrows, Thin Grin, Black Eyes with White Pupils Print [Blocked Open Stud]",13 +3626bpr0892,"Minifig Head Female with Black Thin Eyebrows, Eyelashes, White Pupils and Red Lips Smile Print [Blocked Open Stud]",13 +3626bpr0893,"Minifig Head Female with Peach Lips, Open Mouth Smile, Black Eyebrows Print [Blocked Open Stud]",13 +3626bpr0895,Minifig Head Standard Skull Print [Blocked Open Stud],13 +3626bpr0896,"Minifig Head Dual Sided White Strip on Forehead and Cheek Lines, Frown / Determined Print (Batman) [Blocked Open Stud]",13 +3626bpr0898,"Minifig Head Dual Sided Green Eyebrows, Red Lips, Wide Smile / Smirk Print (Joker) [Blocked Open Stud]",13 +3626bpr0902,"Minifig Head Dual Sided Female Eyelashes and Red Lips, Smile / Angry Print [Blocked Open Stud]",13 +3626bpr0903,"Minifig Head Male Black Angry Eyebrows, Frown and Cheek Lines Print [Blocked Open Stud]",13 +3626bpr0906,Minifig Head Dual Sided Female with Purple Lips with Smirk and Glasses / Arched Eyebrows and Eyelashes Print [Blocked Open Stud],13 +3626bpr0907,"Minifig Head Male Half Normal, Half Purple with Scar and No Pupil Print (Two-Face) [Blocked Open Stud]",13 +3626bpr0908,"Minifig Head Beard Stubble, Goatee, Scar on Left Cheek and Eyebrow Print [Blocked Open Stud]",13 +3626bpr0909,Minifig Head Glasses with Silver Sunglasses with Purple Frame and Goatee Print [Blocked Open Stud],13 +3626bpr0914,"Minifig Head Glasses with Orange Sunglasses with Nose Piece, Open Mouth Smile, Chin Dimple Print [Blocked Open Stud]",13 +3626bpr0919,"Minifig Head Dual Sided - Black Eyebrows, Frown / Implant Print [Lobot] [Blocked Open Stud]",13 +3626bpr0920,"Minifig Head Male Stern Black Eyebrows, White Pupils, Frown, Sweat Drops Print [Blocked Open Stud]",13 +3626bpr0922,"Minifig Head Balaclava with Face Hole, Stubble and Rakish Smile Print [Blocked Open Stud]",13 +3626bpr0923,"Minifig Head - Dark Tan Beard and Eyebrows, Orange Visor Print [Blocked Open Stud]",13 +3626bpr0924,"Minifig Head Dual Sided - Glasses with Black Goggles, Gray Chin Strap / Stern Eyebrows, Gray Chin Strap Print [Blocked Open Stud]",13 +3626bpr0925,"Minifig Head Dual Sided Black Eyebrows, White Pupils, Scratches, Determined / Scared Print [Blocked Open Stud]",13 +3626bpr0926,Minifig Head Dual Sided Beard with Brown Trim Beard Closed Mouth / Bared Teeth Print [Blocked Open Stud],13 +3626bpr0928,"Minifig Head Dual Sided Sunken Eyes, Cheek Lines, Teeth / Closed Mouth Print (SW Anakin Sith) [Blocked Open Stud]",13 +3626bpr0934,"Minifig Head Female SW Barriss Offee, Purple Lips, Dark Tan Tattoo Print [Blocked Open Stud]",13 +3626bpr0938,"Minifig Head Dual Sided Female with Black Eyebrows and Eyelashes, Open Mouth / Frown Print [Blocked Open Stud]",13 +3626bpr0939,"Minifig Head Male Thick Black Eyebrows, Repaired Glasses, Nervous Smile Print [Blocked Open Stud]",13 +3626bpr0940,Minifig Head Red Eyes with Black Bushy Eyebrows and Open Angry Mouth Print [Blocked Open Stud],13 +3626bpr0941,"Minifig Head Female with Large Red Lips, Open Mouth Smile with Teeth, Dark Brown Eyebrows,Thin Eyelashes and White Pupils Print (Bride) [Blocked Open Stud]",13 +3626bpr0942,"Minifig Head Dual Sided Beard Stubble, Orange Head-Up Display (HUD) / Helmet Scope Print [Blocked Open Stud]",13 +3626bpr0943,Minifig Head Dual Sided Female with Open Smile / Swimming Goggles Print [Blocked Open Stud],13 +3626bpr0944,"Minifig Head Dual Sided - Brown Eyebrows and Moustache, Happy / Scared Print [Blocked Open Stud]",13 +3626bpr0945,"Minifig Head Female with Dark Pink Lips, Eyeshadow and Lightning Bolt, Open Mouth Print [Blocked Open Stud]",13 +3626bpr0946,Minifig Head with Green War Paint Print [Blocked Open Stud],13 +3626bpr0947,Minifig Head Glasses with Brown Moustache and Eyebrows Print [Blocked Open Stud],13 +3626bpr0948,"Minifig Head Black Eyebrows, Open Smile, White Pupils Print [Blocked Open Stud]",13 +3626bpr0949,"Minifig Head Male White Bushy Eyebrows, Crow's Feet and Cheek Lines Print [Blocked Open Stud]",13 +3626bpr0950,"Minifig Head Male White and Gray Bushy Eyebrows, Crow's Feet Print [Blocked Open Stud]",13 +3626bpr0951,"Minifig Head Male Headband White, Brown Eyebrows, Open Mouth Smirk Print [Blocked Open Stud]",13 +3626bpr0952,"Minifig Head Black Eyelashes, Brown Eyebrows, Freckles Print [Blocked Open Stud]",13 +3626bpr0953,"Minifig Head Male Thick Brown Eyebrows, Cheek Lines and Open Mouth Smile Print [Blocked Open Stud]",13 +3626bpr0954,"Minifig Head Beard Brown Bushy, Moustache, White Pupils Print [Blocked Open Stud]",13 +3626bpr0966,Minifig Head - Spider-Man Front Mask and Rear Web Print [Blocked Open Stud],13 +3626bpr0968,Minifig Head Male Mask with Iron Fist Print [Blocked Open Stud],13 +3626bpr0977,Minifig Head with Red Eyes and Glow in Dark Mummy Wrapping Print [Blocked Open Stud],13 +3626bpr0980,Minifig Head LotR Mordor Orc Print [Blocked Open Stud],13 +3626bpr0991,"Minifig Head Alien with Swamp Creature with Red and Yellow Eyes, Pointed Teeth and Scales Print [Blocked Open Stud]",13 +3626bpr0996,"Minifig Head Dual Sided Black Sunglasses, Stubble, Scratches, Grin / Black Eyebrows, White Pupils, Determined Print (Frank Rock) [Blocked Open Stud]",13 +3626bpr1001,"Minifig Head Alien with Yellow Eyes, Wrinkled Brow, Scar Print (SW Darth Malgus) [Blocked Open Stud]",13 +3626bpr1011,"Minifig Head Alien with Monster with Thick Eyebrows, Toothy Grimace and Scars Print [Blocked Open Stud]",13 +3626bpr1016,"Minifig Head Female with Brown Thin Eybrows, Eyelashes, Freckles and Red Lips Print [Blocked Open Stud]",13 +3626bpr1018,"Minifig Head Male Eyepatch, Black Bushy Beard, Moustache and Missing Tooth Print [Blocked Open Stud]",13 +3626bpr1019,"Minifig Head Female with Brown Eyebrows, Eyelashes, Pink Lips and White Flower Print [Blocked Open Stud]",13 +3626bpr1020,Minifig Head Glasses with Dark Brown Thick Eyebrows and Moustache Print [Blocked Open Stud],13 +3626bpr1021,"Minifig Head Dual Sided Moustache, Goatee, Raised Eyebrow, Smirk / Open Mouth Scared Print [Blocked Open Stud]",13 +3626bpr1022,"Minifig Head Male Tan Thin Eyebrows and Moustache, Grin with Teeth Print [Blocked Open Stud]",13 +3626bpr1023,"Minifig Head Female with Black Thin Eyebrows, Eyelashes, Red Lips and Open Smile Print [Blocked Open Stud]",13 +3626bpr1024,"Minifig Head Male Black Eyebrows, Open Mouth Smile Print [Blocked Open Stud]",13 +3626bpr1025,"Minifig Head Male Black Eyebrows, Cheek Lines and Black Underlined Eyes Print [Blocked Open Stud]",13 +3626bpr1026,Minifig Head Alien with Robot Silver with Red Eyes Print [col08-1] [Blocked Open Stud],13 +3626bpr1027,"Minifig Head Male Black Eyebrows, Raised Right Eyebrow, Crooked Smile Print [Blocked Open Stud]",13 +3626bpr1028,"Minifig Head Alien with Fangs, Red Eyes and Dark Bluish Gray Fur Print [Blocked Open Stud]",13 +3626bpr1029,"Minifig Head Female Glasses with White Ski Goggles with Pink and Purple Glass, Strap and Red Lips Print [Blocked Open Stud]",13 +3626bpr1031,"Minifig Head Alien with Fangs, Red Eyes and Black Facial Hair Print [Blocked Open Stud]",13 +3626bpr1045,Minifig Head Alien with SW Agen Kolar Black Mouth and Dots on Cheeks Print [Blocked Open Stud],13 +3626bpr1052,"Minifig Head Male Brown Eyebrows, Eyelashes, Open Lopsided Smile and Teeth Print [Blocked Open Stud]",13 +3626bpr1053,"Minifig Head Female with Dark Pink Lips, Black Eyelashes and Angry Eyebrows, Scar under Eye, White Teeth Print [Blocked Open Stud]",13 +3626bpr1054,"Minifig Head Female with Dark Orange Eyebrows, Eyelashes, Dark Tan Lips and Smile Print [Blocked Open Stud]",13 +3626bpr1055,"Minifig Head Alien with Red Eyes, Open Mouth with Pointed Teeth Print [Blocked Open Stud]",13 +3626bpr1056,"Minifig Head Male Brown Eyebrows, Raised Right Eyebrow, Cheek Lines, Open Mouth Smile with Teeth Print [Blocked Open Stud]",13 +3626bpr1057,"Minifig Head Beard Stubble, Thick Dark Tan Eyebrows and Open Grin Print [Blocked Open Stud]",13 +3626bpr1058,"Minifig Head Male Black Eyebrows, Eyelashes, Cheek Dimples, Smile Print [Blocked Open Stud]",13 +3626bpr1059,"Minifig Head Female with Black Eyebrows, Thick Eyelashes, Red Lips, Open Mouth Print [Blocked Open Stud]",13 +3626bpr1060,"Minifig Head Moustache Curly, Eyelashes, Pupils, Raised Eyebrow Print [Blocked Open Stud]",13 +3626bpr1061,"Minifig Head Male Gray Eyebrows, Wrinkles, Downturned Mouth Print [Blocked Open Stud]",13 +3626bpr1062,Minifig Head Alien with Orange Mask with Dark Gray Visor Print [Blocked Open Stud],13 +3626bpr1063,"Minifig Head Male Bushy Gray Eyebrows, Wrinkles, Silver Frame Glasses Print [Blocked Open Stud]",13 +3626bpr1064,"Minifig Head Female with Brown Eyebrows, Eyelashes, Brown Lips, Open Smile Print [Blocked Open Stud]",13 +3626bpr1065,Minifig Head Male Mask Half Sand Green with Green Eye Open Grin Print [Blocked Open Stud],13 +3626bpr1066,"Minifig Head Dual Sided Alien with Lower Fangs, Single Orange Eye Open / Eye Half Closed Print [Blocked Open Stud]",13 +3626bpr1067,"Minifig Head Female with Black Eyebrows, Eyelashes, Red Lips, Open Mouth Print [Blocked Open Stud]",13 +3626bpr1070,"Minifig Head Dual Sided Bushy Orange Eyebrows, Cheek Lines, Frown / Angry Print [76000] [Blocked Open Stud]",13 +3626bpr1088,"Minifig Head Brown Eyebrows, Lopsided Smile and Wink Print [Blocked Open Stud]",13 +3626bpr1089,"Minifig Head Female with Large Red Lips, Open Mouth Smile with Teeth, Brown Eyebrows, Thin Eyelashes and White Pupils Print [Blocked Open Stud]",13 +3626bpr1090,"Minifig Head - Black Eyebrows, Cheek Lines, Mouthguard and White Pupils Print [Blocked Open Stud]",13 +3626bpr1092,"Minifig Head Female with Peach Lips and Dimple, Open Mouth Smile, Black Thin Eyebrows, Eyelashes and White Pupils Print [Blocked Open Stud]",13 +3626bpr1093,Minifig Head Female with Pink Lips and Black Eyebrows and Eyelashes Print [Blocked Open Stud],13 +3626bpr1094,"Minifig Head Brown Eyebrows, Cheek Lines, Open Mouth on One Side and Drops of Sweat Print [Blocked Open Stud]",13 +3626bpr1095,"Minifig Head Black Eyebrows, Cheek Lines and Swim Goggles Print [Blocked Open Stud]",13 +3626bpr1096,"Minifig Head Dark Brown Eyebrows, Smile and Drops of Sweat Print [Blocked Open Stud]",13 +3626bpr1138,"Minifig Head Dual Sided Alien Chima Wolf with Yellow Eyes, Fur, Eyebrows, Fangs, Closed Mouth / Open Mouth Print (Wakz) [Blocked Open Stud]",13 +3626bpr1144,"Minifig Head Black and Tan Eyebrows, White Pupils, Cheek Lines Print [Blocked Open Stud]",13 +3626bpr1162,"Minifig Head Male White and Gray Bushy Eyebrows, Open Mouth Smile Print [Blocked Open Stud]",13 +3626bpr1168,"Minifig Head Moustache Brown Bushy, Stubble and Silver Sunglasses Print [Blocked Open Stud]",13 +3626bpr1173,"Minifig Head - Gray Beard, Gray Eyebrows and Eye Dimples Print [Blocked Open Stud]",13 +3626bpr1175,"Minifig Head Glasses with Skydiver Goggles, Open Mouth and Scared Print [Blocked Open Stud]",13 +3626bpr1538,"Minifig Head Dual Sided Stern Black Eyebrows, Mouth Lines / Dark Bluish Gray Visor with Silver Squares, Open Smile with Teeth Print [Blocked Open Stud]",13 +3626bpr1539,"Minifig Head Alien with Red Sunken Eyes, Black Eyebrows, Scar over Left Eye, Cheek Lines and Wrinkles Print [Blocked Open Stud]",13 +3626bpr1540,"Minifig Head Beard Reddish Brown, Goatee, Curly Moustache, Bushy Eyebrows, Thin Smile Print [Blocked Open Stud]",13 +3626bpr1541,"Minifig Head Alien with Orange Eyes with White Pupils, Black Eyebrows, Open Smile with Pointed Teeth Print [Blocked Open Stud]",13 +3626bpr1542,"Minifig Head Moustache Black Curly, Bushy Eyebrows, Round Mouth Print [Blocked Open Stud]",13 +3626bpr1543,"Minifig Head Dual Sided Alien with Lower Fangs, Eyelashes, Single Orange Eye Open / Eye Half Closed with Blue Eye Shadow Print [Blocked Open Stud]",13 +3626bpr1544,"Minifig Head Female Glasses with Gray Frames and White Lenses, Eyelashes, Pale Brown Lips Print [Blocked Open Stud]",13 +3626bpr1545,"Minifig Head Beard Stubble, Dark Tan Eyebrows, Crow's Feet, Lopsided Smile Print [Blocked Open Stud]",13 +3626bpr1546,"Minifig Head Black Eyebrows, White Pupils, Crooked Open Smile with Teeth Print [Blocked Open Stud]",13 +3626bpr1547,"Minifig Head Male Stern Black Eyebrows, Crow's Feet, Cheek Lines, Chin Dimple Print [Blocked Open Stud]",13 +3626bpr1548,"Minifig Head Female with Black Eyebrows, Eyelashes, Angry Open Mouth with Clenched Teeth, Red Lips Print [Blocked Open Stud]",13 +3626bpr1549,"Minifig Head Female Glasses Star Shaped, Medium Lavender Lips, Open Lopsided Smile with Teeth Print [Blocked Open Stud]",13 +3626bpr1550,"Minifig Head Black Eyebrows, Raised Left Eyebrow, White Pupils, Crooked Open Smile with Teeth Print [Blocked Open Stud]",13 +3626bpr1551,"Minifig Head Female Brown Eyebrows, Black Eyelashes, Freckles and Pink Lips Print (Unicorn Girl) [Blocked Open Stud]",13 +3626bpr1552,"Minifig Head Black Eyebrows, Black Eye Shadow, Chin Dimple Print [Blocked Open Stud]",13 +3626bpr448,Minifig Head with SW Ten Numb Print [Blocked Open Stud],13 +3626bprx494,"Minifig Head HP Luna Dark Pink Lips, Side 1 Eyes with Pupils and Eyelashes Side 2 with Swirls in Goggle Eyeholes (Spectrespecs) [Blocked Open Stud]",13 +3626bps0,"Minifig Head with SW Red Lips, Black Eyes, Thin Eyebrows Print [Blocked Open Stud]",13 +3626bps3,Minifig Head Male Small Black Eyebrows and Chin Dimple Print [Blocked Open Stud],13 +3626bps4,Minifig Head Beard with SW Gray Beard and Thin Gray Eyebrows Print [Blocked Open Stud],13 +3626bps6,Minifig Head with SW Black Eyebrows and Bl. Grey Scars Print [Blocked Open Stud],13 +3626bps7,"Minifig Head Male Scars Gray Left, Black Eyebrows Print (Darth Vader original) [Blocked Open Stud]",13 +3626bps9,"Minifig Head Beard with Brown Eyebrows, Moustache and Beard, Black Chin Dimple Print [Blocked Open Stud]",13 +3626bpsb,"Minifig Head Alien with SW Large Black Eyes, Eyebrows, Pupils Print (Gasgano) [Blocked Open Stud]",13 +3626bpsc,Minifig Head Alien with SW Gray Eyebrows & Implant Print (Lobot) [Blocked Open Stud],13 +3626bpsd,Minifig Head with SW Freckles and Thin Brown Eyebrows Print [Blocked Open Stud],13 +3626bpse,Minifig Head Glasses with Large Sunglasses with White Streaks Print (SW Scout Trooper) [Blocked Open Stud],13 +3626bpsf,Minifig Head with SW Thin Black Eyebrows Print boba fett [Blocked Open Stud],13 +3626bpsj,"Minifig Head with SW Painted Yellow Face, Headset Print jango fett [Blocked Open Stud]",13 +3626bpst,Minifig Head Alien with SW Tusken Raider Print [Blocked Open Stud],13 +3626bpx10,Minifig Head Male Sideburns and Green Bandana Print [Blocked Open Stud],13 +3626bpx100,"Minifig Head Male Black Connected Eyebrows, Stubble under Dipping Mouth Line Print [Blocked Open Stud]",13 +3626bpx101,Minifig Head Male Headband Red and Freckles Print [Blocked Open Stud],13 +3626bpx102,"Minifig Head Balaclava with Green Goblin Face, Lines on Back Print [Blocked Open Stud]",13 +3626bpx104,"Minifig Head Male Brown Eyebrows, Slight Smile Print (SW Ep.2 Anakin) [Blocked Open Stud]",13 +3626bpx105,Minifig Head Dual Sided Alien with SW Female Veil / Gray Face Print [Blocked Open Stud],13 +3626bpx106,Minifig Head Beard with Gray Beard and Under-Eyes Wrinkles Print [Blocked Open Stud],13 +3626bpx107,"Minifig Head Glasses with Pencil Behind Ear, and Pointed Moustache Print [Blocked Open Stud]",13 +3626bpx108,"Minifig Head Moustache, Stubble and Bald Hair Part Print [Blocked Open Stud]",13 +3626bpx109,"Minifig Head Male Gray Spiky Hair, Stubble, One Tooth Smirk Print (Hunchback) [Blocked Open Stud]",13 +3626bpx11,Minifig Head Moustache Thick Flat and Short Eyebrows Print [Blocked Open Stud],13 +3626bpx110,"Minifig Head Dual Sided Alien with Fangs, Red Eyes, Mouth Open / Mouth Closed Print (Vampire) [Blocked Open Stud]",13 +3626bpx111,"Minifig Head Dual Sided Mad Scientist Glasses, Teeth, Sideburns / No Sideburns Print [Blocked Open Stud]",13 +3626bpx112,Minifig Head Dual Sided Alien with Mummy Face Awake / Asleep Print [Blocked Open Stud],13 +3626bpx113,"Minifig Head Alien with Red Eyes, White Pupils, Frown, Gills and Blue Eyebrows Print [Blocked Open Stud]",13 +3626bpx114,Minifig Head Glasses with Green Angled Sunglasses and Brown Hair Print [Blocked Open Stud],13 +3626bpx116,Minifig Head Dual Sided Female with Orange Hair Tendrils Scared / Smiling Print [Blocked Open Stud],13 +3626bpx117,Minifig Head Dual Sided Male with Gent Scared / Determined Print [Blocked Open Stud],13 +3626bpx118,Minifig Head Dual Sided HP Quirrell / Voldemort Print [Blocked Open Stud],13 +3626bpx12,Minifig Head Male Brown Bangs and Long Brown Hair Print [Blocked Open Stud],13 +3626bpx120,Minifig Head Moustache Red Goatee Print [Blocked Open Stud],13 +3626bpx121,"Minifig Head Moustache Pointed, Black Hair and Sideburns, Open Mouth Print [Blocked Open Stud]",13 +3626bpx122,"Minifig Head Moustache Red, Eyebrows and Hair Print [Blocked Open Stud]",13 +3626bpx125,Minifig Head Alien with Spider-Man Print [Blocked Open Stud],13 +3626bpx126,"Minifig Head Male Messy Black Hair, Slight Smile, Eyebrows Print [Blocked Open Stud]",13 +3626bpx127,"Minifig Head Glasses with Monocle, Scar, and Goatee Print [Blocked Open Stud]",13 +3626bpx128,"Minifig Head Female with Red Lips, Brown Hair and Eyebrows Print [Blocked Open Stud]",13 +3626bpx131,"Minifig Head Moustache Fu Manchu, Black Hair, Eyebrows Print [Blocked Open Stud]",13 +3626bpx134,"Minifig Head Male Spiky Black Hair, Nose Freckles and Smirk Print [Blocked Open Stud]",13 +3626bpx137,Minifig Head Balaclava with Separate Eyes and Nose Holes Print [Blocked Open Stud],13 +3626bpx139,"Minifig Head Alien with Silver Hair, Copper Glasses and Headset Print [Blocked Open Stud]",13 +3626bpx141,"Minifig Head Beard with Beard, Hair, and Sideburns in Vertical Line Print [Blocked Open Stud]",13 +3626bpx146,Minifig Head Male HP Lucius with Raised Eyebrows and Angry Smirk Print [Blocked Open Stud],13 +3626bpx15,"Minifig Head Beard with Angry Brown Eyebrows, Moustache and Blue Bandana Print [Blocked Open Stud]",13 +3626bpx150,Minifig Head with Purple Brain Print [Blocked Open Stud],13 +3626bpx16,"Minifig Head Male Smile, Black Eyebrows, Short Bangs and Long Hair Print [Blocked Open Stud]",13 +3626bpx17,Minifig Head Male Brown Bangs Print [Blocked Open Stud],13 +3626bpx175,"Minifig Head with Silver Hair and Copper Eyepiece Print alien,insectoids,borg,headset [Blocked Open Stud]",13 +3626bpx18,Minifig Head Glasses with Gray Balding Hair Print [Blocked Open Stud],13 +3626bpx19,Minifig Head Male Bangs and Freckles Print [Blocked Open Stud],13 +3626bpx20,"Minifig Head Female with Hair Framed Face, Eyebrows and 1 Tooth in Mouth Print [Blocked Open Stud]",13 +3626bpx23,"Minifig Head Moustache Curly, Spiky Beard under Mouth Print [Blocked Open Stud]",13 +3626bpx24,Minifig Head Glasses with Blue Glasses and Headset Print [Blocked Open Stud],13 +3626bpx25,Minifig Head Male Brown Bangs and Headset Print [Blocked Open Stud],13 +3626bpx26,Minifig Head Male Brown Bangs and Line Stubble Print [Blocked Open Stud],13 +3626bpx260,"Minifig Head Male Brown Hair, Eyebrows, White Pupils Print [Knight Bus Driver] [Blocked Open Stud]",13 +3626bpx27,Minifig Head Male White Bangs Print [Blocked Open Stud],13 +3626bpx276,"Minifig Head Male Eyebrows, White Pupils, Goatee and Grin Print [Blocked Open Stud]",13 +3626bpx28,Minifig Head Moustache Thick Angry and Long Hair Print [Blocked Open Stud],13 +3626bpx29,"Minifig Head Moustache Angry, White Teeth and Gold Tooth Print [Blocked Open Stud]",13 +3626bpx298,"Minifig Head Male Gold Headset, Brown Eyebrows, Light Cuts/Scars Print [Blocked Open Stud]",13 +3626bpx30,Minifig Head Moustache Black Angry and Missing Teeth Print [Blocked Open Stud],13 +3626bpx303,"Minifig Head Male Arched Eyebrow, White Teeth with Gold Tooth, Fine Stubble and Line under Mouth Print [Blocked Open Stud]",13 +3626bpx304,"Minifig Head Beard Gray with Sideburns, Eyebrows and Crow's Feet Wrinkles Print [Blocked Open Stud]",13 +3626bpx32,"Minifig Head Moustache Brown Hair, Glasses on Forehead, Raised Eyebrow Print [Blocked Open Stud]",13 +3626bpx326,"Minifig Head Skull Evil with Eyebrows, White Print Print [Blocked Open Stud]",13 +3626bpx328,Minifig Head Dual Sided HP Death Eater Mask / Black Raised Eyebrows and Grim Mouth Print [Blocked Open Stud],13 +3626bpx329,"Minifig Head Male Crow's Feet, Eyebrows, Moustache and Rodent Teeth Print (HP Wormtail) [Blocked Open Stud]",13 +3626bpx33,"Minifig Head Male Red Hair with Black Outline, Stubble Print [Blocked Open Stud]",13 +3626bpx330a,Minifig Head Alien with HP Voldemort Silver Print [Blocked Open Stud],13 +3626bpx330b,Minifig Head Alien with HP Voldemort Red Print [Blocked Open Stud],13 +3626bpx332,Minifig Head Male Angry Eyebrows and Gray Camouflage Print [Blocked Open Stud],13 +3626bpx34,"Minifig Head Male Angry Black Eyebrows, Brown Wrinkles Print [Blocked Open Stud]",13 +3626bpx39,"Minifig Head Moustache Long, Gray Headband with Red Dot Print [Blocked Open Stud]",13 +3626bpx40,Minifig Head Male Angry Eyebrows and 1 Red Eye Print [Blocked Open Stud],13 +3626bpx42,Minifig Head Female with Red Lips and Headset Print [Blocked Open Stud],13 +3626bpx43,"Minifig Head Beard with Raised Gray Eyebrows and Open White Mouth, Black Pupils Print [Blocked Open Stud]",13 +3626bpx44,"Minifig Head Male Messy Orange Hair, Smile Print [Blocked Open Stud]",13 +3626bpx46,Minifig Head Alien with Blue and Silver Mask Type 1 Print [Blocked Open Stud],13 +3626bpx5,Minifig Head Male Angry Eyebrows and Sideburns Ninja Print [Blocked Open Stud],13 +3626bpx51,"Minifig Head Male Open Mouth, Thin Eyes and Headset Print [Blocked Open Stud]",13 +3626bpx54,Minifig Head Beard Black Bushy Goatee and Eyebrows Print [Blocked Open Stud],13 +3626bpx55,"Minifig Head Glasses with Gray Moustache, Crosseyed Print [Blocked Open Stud]",13 +3626bpx57,Minifig Head Face Paint with Orange Painted Face Print [Blocked Open Stud],13 +3626bpx58,"Minifig Head Face Paint with Red and Blue Painted Lines, Eyebrows, Pupils, Nose Print [Blocked Open Stud]",13 +3626bpx59,Minifig Head Face Paint with Painted Triangles Print [Blocked Open Stud],13 +3626bpx6,"Minifig Head Male Eyebrows, Sideburns and Red Bandana Print [Blocked Open Stud]",13 +3626bpx60,"Minifig Head Female with Nose, Red Lips, and Large Eyes Print [Blocked Open Stud]",13 +3626bpx61,Minifig Head Face Paint with Green and Orange Painted Face Print [Blocked Open Stud],13 +3626bpx66,Minifig Head Glasses with Moustache Print [Blocked Open Stud],13 +3626bpx67,"Minifig Head Female with Eyelashes, Curly Hair and Tiara Print [Blocked Open Stud]",13 +3626bpx68,"Minifig Head Moustache Curly, Gray Streaks in Hair Print [Blocked Open Stud]",13 +3626bpx69,"Minifig Head Female with Red Lips and Red Hair, Angry Black Eyebrows Print [Blocked Open Stud]",13 +3626bpx7,"Minifig Head Male Gray Bandana with Gold Dot, Eyebrows, Sideburns Print [Blocked Open Stud]",13 +3626bpx70,Minifig Head Moustache and Curly Brown Hair Print [Blocked Open Stud],13 +3626bpx71,"Minifig Head Beard with White Beard and Moustache, Crow's Feet Print [Blocked Open Stud]",13 +3626bpx72,"Minifig Head Male Eyepatch, Frown, Stubble and Gray Eye Print [Blocked Open Stud]",13 +3626bpx73,"Minifig Head Moustache Gray Eyes, Frown Print [Blocked Open Stud]",13 +3626bpx74,Minifig Head Moustache Frown and Pointed Eyebrows and Hairline Print [Blocked Open Stud],13 +3626bpx77,Minifig Head Male Mask Red with Eyeholes and Moustache Print [Blocked Open Stud],13 +3626bpx78,Minifig Head Moustache Thick Angry and Long Hair and Stubble Print [Blocked Open Stud],13 +3626bpx8,Minifig Head Moustache Angry Eyebrows and Striped Sideburns Print [Blocked Open Stud],13 +3626bpx81,"Minifig Head Moustache Pointed, Goatee and Stubble Print [Blocked Open Stud]",13 +3626bpx84,Minifig Head Male Gray Eyes and Hair Patch Print [Blocked Open Stud],13 +3626bpx85,Minifig Head with Red Strawberries with Green Print [Blocked Open Stud],13 +3626bpx86,"Minifig Head Female with Red Lips, Purple Hair and Headset Print [Blocked Open Stud]",13 +3626bpx88,Minifig Head Glasses with Dark Ski Goggles Print [Blocked Open Stud],13 +3626bpx9,Minifig Head Male Scruffy White Eyebrows and Eyepatch Print [Blocked Open Stud],13 +3626bpx90,Minifig Head Male Messy Orange Hair and Black Sideburns Print [Blocked Open Stud],13 +3626bpx93,"Minifig Head Male Snarl, Stubble, and Scar Right Print [Blocked Open Stud]",13 +3626bpx96,"Minifig Head Moustache Wavy, Goatee and Bushy Eyebrows Print [Blocked Open Stud]",13 +3626bpx97,Minifig Head - Moustache and Forehead Tuft Print [Blocked Open Stud],13 +3626bpx99,"Minifig Head Alien with Ghostly Gray Face, Eyebrows, Pupils Print (HP Peeves) [Blocked Open Stud]",13 +3626c,Minifig Head Plain [Hollow Stud],13 +3626cpb0050,"Minifig Head Male Messy Red Hair, Smile, White Pupils Print [Hollow Stud]",13 +3626cpb0323,"Minifig Head Beard Red-Brown, Sneer, Eyepatch Print [Hollow Stud]",13 +3626cpb0447,"Minifig Head Dual Sided Red Spots and Glasses, Determined / Evil Smile Print [Hollow Stud]",13 +3626cpb0780,Minifig Head Dual Sided Male Mask Green with Eyeholes and Smirk / Bared Teeth Print [Hollow Stud],13 +3626cpb1001,"Minifig Head Male Dark Brown Eyebrows, Open Sideways Smile with Dimples Print [Hollow Stud]",13 +3626cpb1002,"Minifig Head Dual Sided Female Eyelashes and Red Lips, Smile / Yellow Eyes Angry Print (Phoenix Jean Grey) [Hollow Stud]",13 +3626cpb1072,Minifig Head Alien with Large White Eyes Print (Comic-Con Spider-Man in Black Symbiote Costume) [Hollow Stud],13 +3626cpb1101,Minifig Head Dual Sided Winking and Lopsided Smile / Closed Eyes and Yawning Print (Emmet) [Hollow Stud],13 +3626cpb1104,"Minifig Head Alien with Red Eyes on Black, Dark Bluish Gray Eyebrows Print (Martian Manhunter) [Hollow Stud]",13 +3626cpb1111,"Minifig Head Dual Sided Male Black Eyebrows, Goatee, Cheek Lines, Smile / Neutral Print (SW Kanan Jarrus) [Hollow Stud]",13 +3626cpb1117,Minifig Head Alien with Dark Red Sith Mask Print (SW Darth Revan),13 +3626cpb1122,"Minifig Head Bushy White and Gray Eyebrows, Crow's Feet and Crooked Smile Print [Hollow Stud]",13 +3626cpb1125,"Minifig Head Black Eyes, Open Mouth Smile and Curly Reddish Brown Moustache Print (Western Emmet) [Hollow Stud]",13 +3626cpb1173,"Minifig Head Dual Sided Male Black Bushy Eyebrows, Cheek Lines, Scowl / Right Side of Face Discolored and Scarred Print (Flashback Shredder) [Hollow Stud]",13 +3626cpb1261,"Head Dual Sided Gray and White Eyebrows, Cheek Lines, Raised Eyebrow / Bared Teeth Pattern - Stud Recessed",13 +3626cpb1302,"Head Dual Sided Forehead Band, Dark Gray around Eyes, Teeth with Fangs, Clenched / Open Mouth Print (Batzarro)",13 +3626cpb1344,"Head Male, Stern Gray Eyebrows, White Moustache and Wrinkles Print (SW Admiral Yularen)",13 +3626cpb1351,"Head Alien with Blue Speckles, White Eyes, Computer Chip on Right Side, Angry Mouth Print",13 +3626cpb1387," Head Dual Sided Balaclava, Silver Goggles with Red Lenses, Teeth / Closed Mouth Pattern (Sam Wilson)",13 +3626cpb1512,"Minifig Head Full Orange Beard Around Smile, Bushy Eyebrows, White Pupils, Wrinkles print - [Hollow Stud]",24 +3626cpb1523,Minifig Head Nexo Knights Moltor [Hollow Stud],13 +3626cpb1537,"Minifig Head Alien with Mechanical Right Eye Red, Silver Face Mask Print [Hollow Stud]",13 +3626cpr0001,Minifig Head Standard Grin Print [Hollow Stud],13 +3626cpr0002,"Head Balaclava, Black and White Mask with Silver Edge and Crooked, Off-Center Scowl on Flesh Colored Face Pattern - Stud Recessed",13 +3626cpr0003,"Head Mask with White Pointed Eye Opening over Light Flesh Skin, Dark Purple Lips and Open Mouth Grin Pattern - Stud Recessed",13 +3626cpr0043,"Minifig Head Female with Brown Thin Eyebrows, White Pupils and Short Eyelashes, Wide Black Smile with Red Lips Print [Hollow Stud]",13 +3626cpr0279,Minifig Head Glasses with Orange Sunglasses and Smirk Print [Hollow Stud],13 +3626cpr0282,"Minifig Head Glasses with Silver Sunglasses, Eyebrows and Thin Grin Print [Hollow Stud]",13 +3626cpr0325,"Minifig Head Male Brown Eyebrows, White Pupils, Vertical Cheek Lines, Chin Dimple Print [Hollow Stud]",13 +3626cpr0386,Minifig Head Neat Brown Beard with White Pupils and Glasses Print [Hollow Stud],13 +3626cpr0387,"Minifig Head Brown Eyebrows, Thin Grin, Black Eyes with White Pupils Print [Hollow Stud]",13 +3626cpr0388,"Minifig Head with Thick Gray Eyebrows, Angular Beard, Open White Mouth, White Pupils Print [Hollow Stud]",13 +3626cpr0389,"Minifig Head Male - Smirk, Stubble Beard and Moustache and Sideburns Print [Hollow Stud]",13 +3626cpr0410,"Minifig Head Male Arched Eyebrow, White Teeth with Gold Tooth, Coarse Stubble Print [Hollow Stud]",13 +3626cpr0411,"Minifig Head Eyebrows and Scowl, White Pupils Print [Hollow Stud]",13 +3626cpr0468,"Minifig Head with Red Eyes, Eyebrows, White Teeth and Grin Print [Joker's Bomb] [Hollow Stud]",13 +3626cpr0472,"Minifig Head Eyebrows, White Pupils and Chin Dimple Print [Hollow Stud]",13 +3626cpr0495,Minifig Head Dual Sided Female with Brown Eyebrows Scared / Smiling Print [Hollow Stud],13 +3626cpr0498,"Minifig Head Brown Eyebrows, Thin Grin with Teeth, Black Eyes with White Pupils Print [Hollow Stud]",13 +3626cpr0499,"Minifig Head Male Brown Eyebrows, Black Eyes with White Pupils, Crooked Smile with Black Dimple Print [Hollow Stud]",13 +3626cpr0500,"Minifig Head Dual Sided Black Eyebrows, Pupils / Mouth Open Scared Print [Hollow Stud]",13 +3626cpr0514,"Minifig Head Male Brown Thick Eyebrows, Blue Eyes, Scar and Lines Print (SW Clone Wars Anakin) [Hollow Stud] ",13 +3626cpr0525,"Minifig Head Male Black Thick Eyebrows, Large Eyes, Cheek Lines Print [Hollow Stud]",13 +3626cpr0541,"Yellow Minifig Head Beard Stubble Brown Eyebrows, Bared Teeth, White Pupils Print [Hollow Stud]",13 +3626cpr0548,"Minifig Head Male Thick Eyebrows, Brown Eyes, Five O'Clock Shadow Print (SW Captain Rex) [Hollow Stud]",13 +3626cpr0579,"Minifig Head Dual Sided with Huge Grin, White Pupils, Eyebrows / Sad with Tear Print [Hollow Stud]",13 +3626cpr0580,"Minifig Head Dual Sided Female with Red Lips, Crow's Feet and Beauty Mark, Annoyed / Smiling Print [Hollow Stud]",13 +3626cpr0593,"Minifig Head Male Brown Stubble, Brown Eyebrows and Open Grin Print [Hollow Stud]",13 +3626cpr0631,"Minifig Head Male Stern Black Eyebrows, Pupils and Orange Visor Print [Hollow Stud]",13 +3626cpr0635,"Minifig Head Brown Eyebrows, White Pupils and Chin Dimple Print [Hollow Stud]",13 +3626cpr0639,"Minifig Head Male Scars Gray Left & Right, Gray Eyebrows, White Pupils Print (Darth Vader) [Hollow Stud]",13 +3626cpr0645,"Minifig Head Male - Brown Eyebrows, Open Lopsided Grin, White Pupils Print [Hollow Stud]",13 +3626cpr0646,"Minifig Head Glasses with Gray Frame Sides, Brown Eyebrows and Open Smile Print [Hollow Stud]",13 +3626cpr0647,"Minifig Head Female with Peach Lips, Open Mouth Smile, Brown Eyebrows Print [Hollow Stud]",13 +3626cpr0648,"Minifig Head Male Brown Eyebrows, White Pupils and Brown Chin Dimple Print [Hollow Stud]",13 +3626cpr0649,Minifig Head Beard Brown Rounded with White Pupils and Grin Print [Hollow Stud],13 +3626cpr0655,Minifig Head Dual Sided Female with Smeared Lipstick Smile / Frown Print [Hollow Stud],13 +3626cpr0662,"Minifig Head Dual Sided Male with Connected Brow, Sideburns, Bared Teeth / Balaclava Print [Hollow Stud]",13 +3626cpr0666,"Minifig Head Stubble, Arched Eyebrows, White Pupils and Scars Print [Hollow Stud]",13 +3626cpr0677,"Minifig Head Brown Eyebrows and Freckles, Open Smile, White Pupils Print [Hollow Stud]",13 +3626cpr0679,"Minifig Head White Beard, Sideburns, Moustache, Eyebrows and White Pupils Print [Hollow Stud]",13 +3626cpr0680,"Minifig Head Male Black Eyebrows, Vertical Cheek Lines, Chin Dimple and Wide Grin Print [Hollow Stud]",13 +3626cpr0703,"Minifig Head Dual Sided HP Harry with Glasses and Lightning Bolt, Frowning / Smiling Print [Hollow Stud]",13 +3626cpr0721,Minifig Head Male with Brown Lines and Crease Between Eyebrows Print [Hollow Stud],13 +3626cpr0725,"Minifig Head Male Thick Brown Eyebrows with Scar, Open Mouth with Missing Tooth, White Pupils Print [Hollow Stud]",13 +3626cpr0726,Minifig Head Dual Sided HP Dumbledore Glasses / No Glasses Print [Hollow Stud],13 +3626cpr0743,"Minifig Head Male Crooked Smile, Black Eyebrows, White Pupils, Chin Dimple Print [Hollow Stud]",13 +3626cpr0744,"Minifig Head Male Stern Black Eyebrows, White Pupils, Frown, Scar Across Left Eye Print [Hollow Stud]",13 +3626cpr0745,"Minifig Head Male - Raised Bushy Eyebrows, White Pupils and Chin Dimple Print [Hollow Stud]",13 +3626cpr0746,"Minifig HeadBrown Eyebrows, Right Scarred, White Pupils, Brown Chin Dimple Print [Hollow Stud]",13 +3626cpr0747,"Minifig Head Black Eyebrows, White Pupils, Thin Line Mouth Print [Hollow Stud]",13 +3626cpr0748,"Minifig Head Beard with White Goatee, Moustache and Eyebrows and Brown Lines Print [Hollow Stud]",13 +3626cpr0752,"Minifig Head Dual Sided Freckles, Smile / Worried Print [Hollow Stud]",13 +3626cpr0753,"Minifig Head Beard Stubble with Sideburns, Goatee and Red Scar Print (Jake Raines) [Hollow Stud]",13 +3626cpr0754,"Minifig Head Stubble, Brown Eyebrows, Crooked Smile and Scar Print [Hollow Stud]",13 +3626cpr0759,Minifig Head Male Large Blue Eyes and Cheek Lines Print (SW Clone Wars Mandalorian) [Hollow Stud],13 +3626cpr0760,Minifig Head with Face Mask and Silver Goggles Print (SW V-wing Pilot) [Hollow Stud],13 +3626cpr0781,"Minifig Head Red Eyes, White Teeth and Silver Wrinkles Print [Hollow Stud]",13 +3626cpr0791,"Minifig Head Dual Sided Thick Moustache and Eyebrows, Determined / Angry Print [Hollow Stud]",13 +3626cpr0792,"Minifig Head Dual Sided Black Glasses, Smiling / Scared Print [Hollow Stud]",13 +3626cpr0793,"Minifig Head Brown Handlebar Moustache, Scared Print [Hollow Stud]",13 +3626cpr0794,"Minifig Head Dual Sided Female Glasses with Black Frames, Beauty Mark Laughing / Scared Print [Hollow Stud]",13 +3626cpr0806,"Minifig Head Dual Sided Black Curved Eyebrows, Brown Chin Dimple, Laughing / Worried Print [Hollow Stud]",13 +3626cpr0807,Minifig Head Dual Sided Snarling / Raised Eyebrows Print [Hollow Stud],13 +3626cpr0812,Minifig Head Dual Sided Glasses with Orange Lenses Smiling / Mouth Open Upset Print [Hollow Stud],13 +3626cpr0813,"Minifig Head Beard with Brown Eyebrows, Moustache and Beard Print [Hollow Stud]",13 +3626cpr0816,"Minifig Head Dual Sided Dark Orange Eyebrows, White Pupils and Brown Chin Dimple Determined / Smiling Print [Hollow Stud]",13 +3626cpr0821,"Minifig Head Skull PotC Hector Barbossa Ragged Brown Beard, Teeth Print [Hollow Stud]",13 +3626cpr0822,Minifig Head Male White Bandage with Buttons Print [Hollow Stud],13 +3626cpr0839,Minifig Head Male SW Gray Stubble and Scar over Right Missing Eye Print (Commander Wolffe) [Hollow Stud],13 +3626cpr0840,Minifig Head Dual Sided Male with Scared / Bacta Tank Mask Print (SW Luke) [Hollow Stud],13 +3626cpr0854,"Minifig Head Brown Eyebrows, Light Brown Cheek Lines Print [Hollow Stud]",13 +3626cpr0855,Minifig Head Dual Sided HP Narcissa Dark Brown Eyebrows and Crow's Feet Smiling / Angry Print [Hollow Stud],13 +3626cpr0858,Neville Longbottom Head (Recessed Solid Stud,13 +3626cpr0859,"Minifig Head Female with Peach Lips, Gray Eyebrows Print (HP Professor Sprout) [Hollow Stud]",13 +3626cpr0860,"Minifig Head Moustache Brown, Scratches/Scars across Face Print (HP Professor Lupin) [Hollow Stud]",13 +3626cpr0861,Minifig Head Dual Sided HP Neville Closed Mouth / Gritting Teeth Print [Hollow Stud],13 +3626cpr0863,Minifig Head Black Beard and Moustache Rudimentary over Wood Grain Print (Voodoo Jack) [Hollow Stud],13 +3626cpr0865,Minifig Head Alien with Red Snake Eyes and Mouth with Fangs Print [Hollow Stud],13 +3626cpr0866,"Minifig Head Dual Sided Thin Smirk, Raised Eyebrow / Scared with Teeth Print [Hollow Stud]",13 +3626cpr0867,"Minifig Head with Yellow Snake Eyes, Fangs and Black and White Scales Print [Hollow Stud]",13 +3626cpr0869,Minifig Head Alien with Yellow Snake Eyes and Mouth with Fangs Print [Hollow Stud],13 +3626cpr0870,"Minifig Head Dual Sided Female with Eyelashes and Red Lips, Determined / Angry Print [Hollow Stud]",13 +3626cpr0871,Minifig Head with Fire Energy Print [Hollow Stud],13 +3626cpr0872,Minifig Head Male with Red Energy Print (NRG Cole) [Hollow Stud],13 +3626cpr0889,"Minifig Head Glasses with Black and Silver Sunglasses, Chin Dimple, Grim Mouth Print [Hollow Stud]",13 +3626cpr0891,"Minifig Head Black Eyebrows, Thin Grin, Black Eyes with White Pupils Print [Hollow Stud]",13 +3626cpr0892,"Minifig Head Female with Black Thin Eyebrows, Eyelashes, White Pupils and Red Lips Smile Print [Hollow Stud]",13 +3626cpr0893,"Minifig Head Female with Peach Lips, Open Mouth Smile, Black Eyebrows Print [Hollow Stud]",13 +3626cpr0895,Minifig Head Standard Skull Print [Hollow Stud],13 +3626cpr0896,"Minifig Head Dual Sided White Strip on Forehead and Cheek Lines, Frown / Determined Print (Batman) [Hollow Stud]",13 +3626cpr0897,Minifig Head Dual Sided Black Mask and Grim / Scared Print [Hollow Stud],13 +3626cpr0898,"Minifig Head Dual Sided Green Eyebrows, Red Lips, Wide Smile / Smirk Print (Joker) [Hollow Stud]",13 +3626cpr0899,"Minifig Head Dual Sided Female with Black Mask, Black Eyes, Red Lips, Smiling / Bared Teeth Print [Hollow Stud]",13 +3626cpr0900,Minifig Head Male Mask Purple with Eyeholes and Open Mouth Smirk Print (The Riddler) [Hollow Stud],13 +3626cpr0901,"Minifig Head Dual Sided Black Eyebrows and Cheek Lines, Frown / Determined Print (Superman) [Hollow Stud]",13 +3626cpr0902,"Minifig Head Dual Sided Female Eyelashes and Red Lips, Smile / Angry Print [Hollow Stud]",13 +3626cpr0903,"Minifig Head Black Eyebrows, Frown and Cheek Lines Print [Hollow Stud]",13 +3626cpr0911,"Minifig Head Large Red Eyebrows, Blue Eye Shadow and Frown Print [Hollow Stud]",13 +3626cpr0912,"Minifig Head Red Eyebrows and Sideburns, Determined Grin, Pupils Print [Hollow Stud]",13 +3626cpr0914,"Minifig Head Orange Sunglasses with Nose Piece, Smile and Chin Dimple Print [Hollow Stud]",13 +3626cpr0920,"Minifig Head Male Stern Black Eyebrows, White Pupils, Frown, Sweat Drops Print [Hollow Stud]",13 +3626cpr0921,"Minifig Head with Lime Grimace, Large Eyes, Long Nose and Large Teeth Print [Hollow Stud]",13 +3626cpr0922,"Minifig Head Balaclava with Face Hole, Stubble and Rakish Smile Print [Hollow Stud]",13 +3626cpr0925,"Minifig Head Dual Sided Black Eyebrows, White Pupils, Scratches, Determined / Scared Print [Hollow Stud]",13 +3626cpr0926,Minifig Head Dual Sided Beard with Brown Trim Beard Closed Mouth / Bared Teeth Print [Hollow Stud],13 +3626cpr0927,Minifig Head Alien with SW Neimoidian Green Facial Lines Print [Hollow Stud],13 +3626cpr0929,"Minifig Head Male Dark Orange Bushy Beard and Eyebrows, Goatee, White Pupils Print [Hollow Stud]",13 +3626cpr0930,"Minifig Head Beard Stubble, Wrinkles and Worried Look Print [Hollow Stud]",13 +3626cpr0932,"Minifig Head Brown Eyebrows, Smile, Black Chin Strap Print [Hollow Stud]",13 +3626cpr0933,"Minifig Head Beard Stubble, Black Raised Eyebrow, White Pupils Print [Hollow Stud]",13 +3626cpr0935,"Minifig Head Dual Sided Female with Green Lips and Orange Eyebrows, Smiling / Bared Teeth Print [Hollow Stud]",13 +3626cpr0936,Minifig Head Dual Sided Alien with Wrestler Mask with Large Red Eyes / Yellow Hose on Back Print (Bane) [Hollow Stud],13 +3626cpr0937,"Minifig Head Black Eyebrows, Cheek Lines, Black Pupils and Frown Print [Hollow Stud]",13 +3626cpr0955,"Minifig Head Glasses with Safety Goggles, Brown Eyebrows and Goatee Print [Hollow Stud]",13 +3626cpr0956,Minifig Head Male with Blue Energy Print [Hollow Stud],13 +3626cpr0957,Minifig Head with Ice Energy Print [Hollow Stud],13 +3626cpr0958,"Minifig Head Male Mask with Eyeholes and Letter A on Forehead, Determined Print (Captain America) [Hollow Stud]",13 +3626cpr0959,Minifig Head Alien with Black and White Print Print [Hollow Stud],13 +3626cpr0960,"Minifig Head Alien with Black, Purple and White Print [Hollow Stud]",13 +3626cpr0961,"Minifig Head Dual Sided Moustache, Goatee and Cheek Lines, Determined / Angry Print [Hollow Stud]",13 +3626cpr0963,"Minifig Head Dual Sided Dark Red Sunglasses / Brown Eyebrows, Determined Print [Hollow Stud]",13 +3626cpr0964,"Minifig Head Dual Sided Light Brown Eyebrows and Beard, Frown / Angry Print [Hollow Stud]",13 +3626cpr0965,"Minifig Head Dual Sided Female with Eyelashes, Dark Orange Eyebrows and Cheek Lines, Smile / Angry Print [Hollow Stud]",13 +3626cpr0966,Minifig Head Alien with Spider-Man Black Web Print [Hollow Stud],13 +3626cpr0967,Minifig Head Dual Sided Red Sunglasses / Red Lenses Flapped Up Print (Doc Ock) [Hollow Stud],13 +3626cpr0969,"Minifig Head Dual Sided Bushy Black Eyebrows and Long Thick Sideburns, Stubble, Frown / Angry Print [Hollow Stud]",13 +3626cpr0970,"Minifig Head Dual Sided Gray Eyebrows, Wrinkles and Cheek Lines, Frown / Angry Print [Hollow Stud]",13 +3626cpr0971,Minifig Head Male [Deadpool] Mask Black with White Eyeholes Print [Hollow Stud],13 +3626cpr0972,Minifig Head with Thick Gray Eyebrows and Smile Print [Hollow Stud],13 +3626cpr0973,Minifig Head Dual Sided Brown Eyebrows Worried / Lopsided Smile Print [Hollow Stud],13 +3626cpr0974,"Minifig Head Dual Sided Brown Eyebrows Tired / Poisoned, Wide Gray Eyes Print [Hollow Stud]",13 +3626cpr0975,Minifig Head with LOTR Frowning / Scared 2-Sided Print [Hollow Stud],13 +3626cpr0976,Minifig Head Dual Sided LotR Uruk-hai Scowling / Handprint Print [Hollow Stud],13 +3626cpr0978,"Minifig Head Beard Gray and White, Mechanical Left Eye Print [Hollow Stud]",13 +3626cpr0979,Minifig Head Dual Sided LotR Rohan Soldier Shaggy Beard and Eyebrows Frowning / Grimacing Print [Hollow Stud],13 +3626cpr0980,Minifig Head LotR Mordor Orc Print [Hollow Stud],13 +3626cpr0981,Minifig Head Dual Sided LotR Lurtz Scowling / Handprint Print [Hollow Stud],13 +3626cpr0982,"Minifig Head Thin Split Moustache, Smile, Eyebrows, Eyes with White Pupils Print [Hollow Stud]",13 +3626cpr0983,Minifig Head Dual Sided LotR Eomer Beard and Crow's Feet Frowning / Shouting Print [Hollow Stud],13 +3626cpr0984,Minifig Head Kithaba Green Facial Lines Print [Hollow Stud],13 +3626cpr0988,Minifig Head Dual Sided LotR Aragorn Brown Beard and Stubble Stern / Clenched Teeth Print [Hollow Stud],13 +3626cpr0989,Minifig Head Dual Sided LotR Merry Smirking / Shouting Print [Hollow Stud],13 +3626cpr0992,Minifig Head Dual Sided Brown Eyebrows Neutral / Grimacing Print [Hollow Stud],13 +3626cpr0993,"Minifig Head Dual Sided LotR Gimli Bushy Brown Eyebrows, Stern / Grimacing Print [Hollow Stud]",13 +3626cpr0994,Minifig Head Dual Sided Goatee Stern / Grimacing Print [Hollow Stud],13 +3626cpr0995,"Minifig Head Dual Sided Brown Eyebrows, Anxious / Frightened Print [Hollow Stud]",13 +3626cpr0997,"Minifig Head Male Scar over Left Eye, Wrinkles Print (Even Piell) [Hollow Stud]",13 +3626cpr0998,"Minifig Head Dual Sided Female with Scar over Left Eye, Raised Eyebrow / Scowl Print [Hollow Stud]",13 +3626cpr0999,Minifig Head Male Large Scar and Stubble Print [Hollow Stud],13 +3626cpr1000,"Minifig Head Dual Sided Moria Orc White Eyes and Teeth, Wide Eyes / Narrow Eyes Print [Hollow Stud]",13 +3626cpr1001,Minifig Head with Large Black Eye with Pupil Print [Hollow Stud],13 +3626cpr1002,Minifig Head Dual Sided LotR Goatee Smile / Determined Print [Theoden [Hollow Stud],13 +3626cpr1003,"Minifig Head Dual Sided Cheek Lines, Black Eyebrows, Frowning / Gritting Teeth Print [Hollow Stud]",13 +3626cpr1004,"Minifig Head Female with Brown Eyebrows, Black Thick Eyelashes, Large Brown Eyes, Brown Beauty Mark, Red Lips Print (SW CW Amidala) [Hollow Stud]",13 +3626cpr1005,"Minifig Head Female with Red Lips, Eyelashes, 2 Red Dots on Cheeks Print [Hollow Stud]",13 +3626cpr1006,"Minifig Head Dual Sided Beard, Brown Eyebrows, Moustache, White Pupils / Breathing Apparatus Print [Hollow Stud]",13 +3626cpr1007,"Minifig Head Dual Sided Dark Orange Eyebrows, Chin Dimple Determined / Breathing Apparatus Print [Hollow Stud]",13 +3626cpr1008,"Minifig Head Dual Sided Brown Eyebrows, White Pupils, Chin Dimple, Determined / Closed Eyes Print [Han Solo 9516] [Hollow Stud]",13 +3626cpr1009,"Minifig Head Dual Sided Glasses, Red and Gray Lens / Clear and Gray Lens [Hollow Stud]",13 +3626cpr1010,"Minifig Head LotR Berserker White Face and Teeth, Plate on Reverse Print [Hollow Stud] [9474]",13 +3626cpr1013,Minifig Head Alien with White Eyes and Yellowed Teeth with One Missing Tooth Print (Zombie Driver) [Hollow Stud],13 +3626cpr1014,"Minifig Head Male Sideburns, Moustache, Wrinkles and Smirk Print (Rodney Rathbone) [Hollow Stud]",13 +3626cpr1015,"Minifig Head Dual Sided Fangs, Red Eyes, Angry Eyebrows, Mouth Closed / Mouth Open Print (Lord Vampyre) [Hollow Stud]",13 +3626cpr1030,"Minifig Head Dual Sided Alien Female Black Arched Eyebrows, Eyelashes, Red Lips, Smile / Scared Print [Oola 9516] [Hollow Stud]",13 +3626cpr1032,"Minifig Head Alien with Bib Fortuna, Bared Teeth, Red Eyes and Wrinkles Print [Hollow Stud] [9516]",13 +3626cpr1033,"Minifig Head Male Bushy Beard and Eyebrows, Wrinkles Print [Hollow Stud]",13 +3626cpr1036,"Minifig Head Dual Sided Alien with White and Red Eye, Eyelashes and Red Lips, Sad / Determined Print (Zombie Bride) [Hollow Stud]",13 +3626cpr1037,"Minifig Head Dual Sided Fangs, Black Eyes, Arched Eyebrows, Mouth Closed / Mouth Open Print (Lady Vampyre) [Hollow Stud]",13 +3626cpr1038,"Minifig Head Alien with White Eyes and Yellowed Teeth, Angry Print (Zombie Groom) [Hollow Stud]",13 +3626cpr1039,"Minifig Head Male Black Bushy Eyebrows, Sad Eyes with White Pupils, Cheek Lines Print [Hollow Stud]",13 +3626cpr1043,"Minifig Head Dual Sided Black Eyebrows, Cheek Lines and Scars, Determined / Angry with Sunken Eyes Print (SW Anakin Sith) [Hollow Stud]",13 +3626cpr1044,"Minifig Head Male Large Blue Eyes, Cheek Lines and High Brow Print (SW Clone Wars Pre Vizsla) [Hollow Stud]",13 +3626cpr1046,"Minifig Head Alien with SW Saesee Tiin, Small Eyes with Pupils, Orange Dots on Sides, Angry Print [Hollow Stud]",13 +3626cpr1047,"Minifig Head Dual Sided Male, Wrinkles and Clenched Teeth, Sunken Yellow Eyes / Black Eyes with White Pupils Print (SW Palpatine) [Hollow Stud]",13 +3626cpr1049,"Minifig Head Male Black Angry Eyebrows, Bared Teeth and Cheek Lines Print (Lex) [Hollow Stud]",13 +3626cpr1068,"Minifig Head Male Eyepatch, Black Goatee and Cheek Lines Print (Nick Fury) [Hollow Stud]",13 +3626cpr1069,Minifigure Head - Venom Face Print [Hollow Stud],13 +3626cpr1071,"Minifig Head Male Angry Black Eyebrows, Blue Eyes, Wrinkles Print (Mr. Freeze) [Hollow Stud]",13 +3626cpr1073,Minifig Head Dual Sided Male Olive Green Mask / Hoses on Back Print [Hollow Stud],13 +3626cpr1075,"Minifig Head Dual Sided Black Glasses, Brown Moustache, Wrinkles, Mouth Closed / Bared Teeth Print [Hollow Stud]",13 +3626cpr1076,"Minifig Head Dual Sided with Gold and White Goggles and Cheek Lines, Mouth Closed / Bared Teeth Print [Hollow Stud]",13 +3626cpr1077,"Minifig Head Dual Sided Gray Moustache, Thick Eyebrows and Wrinkles, Frowning / Angry Print [Hollow Stud]",13 +3626cpr1078,Minifig Head Alien with Large Lime Eyes and Metal Jaw Print [Hollow Stud],13 +3626cpr1079,Minifig Head Alien with Metal Mask and Yellow Eyes Print [Hollow Stud],13 +3626cpr1080,"Minifig Head Dual Sided LotR [Bilbo] Brown Eyebrows, Smile / Sad Print [Hollow Stud]",13 +3626cpr1081,"Minifig Head Dual Sided Brown Eyebrows, Calm / Scared Print [Hollow Stud]",13 +3626cpr1083,Minifig Head Green Eyes and Blue Face Markings Print [Hollow Stud],13 +3626cpr1084,Minifig Head Green Eyes and Yellow Face Markings Print [Hollow Stud],13 +3626cpr1085,Minifig Head Green Eyes and Dark Red Face Markings Print [Hollow Stud],13 +3626cpr1086,"Minifig Head Brown Angular Beard, Pupils and Teeth Print [Hollow Stud]",13 +3626cpr1087,"Minifig Head Beard Brown Angular, Pupils, Bottom Eye Lid Line, Teeth Print [Hollow Stud]",13 +3626cpr1091,"Minifig Head Stubble, Black Eyebrows and Scowl Print [Hollow Stud]",13 +3626cpr1099,"Minifig Head Dual Sided LotR Bushy Gray Eyebrows, Wrinkles, Calm / Battle Rage Print [Oin] [Hollow Stud]",13 +3626cpr1100,"Minifig Head Dual Sided LotR Bushy Brown Eyebrows, Wrinkles, Stern / Dark Blue Tattoo Print [Dwalin] [Hollow Stud]",13 +3626cpr1101,"Minifig Head Dual Sided LotR Bushy Brown Eyebrows, Wrinkles, Scowling / Battle Rage Print [Gloin] [Hollow Stud]",13 +3626cpr1102,"Minifig Head Dual Sided Dark Bluish Gray Eyebrows, Black Beard, Wrinkles, Stern / Bared Teeth Print [Hollow Stud]",13 +3626cpr1103,"Minifig Head Dual Sided LotR Bushy Gray Eyebrows, Wrinkles, Calm / Frowning Print [Balin] [Hollow Stud]",13 +3626cpr1104,"Minifig Head Dual Sided LotR [Bofur] Beard, Dark Brown Trimmed, Calm / Battle Rage Print [Hollow Stud]",13 +3626cpr1105,"Minifig Head Dual Sided LotR Bushy Black Eyebrows, Dark Orange Scars, Stern / Bared Teeth Print [Hollow Stud]",13 +3626cpr1106,Minifig Head Dual Sided LotR [Bombur] Cheek Lines Happy / Surprised Print [Hollow Stud],13 +3626cpr1107,"Minifig Head Dual Sided LotR [Dori] Beard Gray Full, Bushy Eyebrows and Wrinkles, Calm / Battle Rage Print [Hollow Stud]",13 +3626cpr1108,"Minifig Head Dual Sided LotR Beard Stubble, Calm / Battle Rage Print [Hollow Stud]",13 +3626cpr1110,"Minifig Head Dual Sided LotR Tauriel, Freckles, Calm / Downward Grimace Print [Hollow Stud]",13 +3626cpr1111,"Minifig Head Dual Sided LotR Elf with Cheekbones, Age Lines, Calm / Happy Print [Hollow Stud]",13 +3626cpr1112,"Minifig Head Dual Sided LotR [Fili] Beard with Braids and Crow's Feet, Smiling / Battle Rage Print [Hollow Stud]",13 +3626cpr1113,"Minifig Head Dual Sided LotR Braided Eyebrows and Wrinkles, Happy / Angry Print [Hollow Stud]",13 +3626cpr1114,"Minifig Head Dual Sided LotR Goblin Light Yellow Eyes, 8 Teeth / 7 Teeth Print [Hollow Stud]",13 +3626cpr1115,"Minifig Head Dual Sided LotR Reddish Brown Beard and Freckles, Smiling / Scared Print [Hollow Stud]",13 +3626cpr1116,Minifigure Head Dual Sided - Legolas Calm / Angry Print [Hollow Stud],13 +3626cpr1118,"Minifig Head Male Black Bushy Eyebrows, White Pupils, Smirk Print [Hollow Stud]",13 +3626cpr1119,"Minifig Head Dual Sided Chima Lion with Orange Eyes, Brown Nose, Teeth, Closed / Open Mouth Print [Hollow Stud]",13 +3626cpr1120,Minifig Head Dual Sided Lion with Orange Eyes and Gray and White Beard Closed Mouth / Open Mouth Print [Lagravis] [Hollow Stud],13 +3626cpr1121,Minifig Head Dual Sided Chi Lion Face Grin / Determined Print [Laval] [Hollow Stud],13 +3626cpr1122,"Minifig Head Dual Sided Lion with Orange Eyes, Fangs, Red Scar, Closed Mouth / Open Mouth Print [Longtooth] [Hollow Stud]",13 +3626cpr1123,"Minifig Head Dual Sided Alien Chima Lion with Orange Eyes, Brown Nose, Crooked Smile / Open Mouth Print (Leonidas) [Hollow Stud]",13 +3626cpr1124,"Minifig Head Dual Sided Eagle with Beak, Yellow Eyes and White Feathers, Wide Eyes / Narrow Eyes Print [Hollow Stud]",13 +3626cpr1125,"Minifig Head Dual Sided Alien Chima Eagle with Beak, Yellow Eyes and Dark Blue Feathers, Angry Eyes / Gold Spectacle Print (Eglor) [Hollow Stud]",13 +3626cpr1126,"Minifig Head Dual Sided Eagle with Beak, Yellow Eyes / Orange Goggles Print [Hollow Stud]",13 +3626cpr1128,"Minifig Head Dual Sided Eagle with Beak, Yellow Eyes, White Pupils / Orange and White Pupils Print (Ewald) [Hollow Stud]",13 +3626cpr1129,"Minifig Head Dual Sided Alien Chima Raven with Beak and Gold Crown, Wide Eyes / Narrow Eyes Print (Rawzom) [Hollow Stud]",13 +3626cpr1130,"Minifig Head Dual Sided Raven with Silver Beak and Red Mask, Wide Eyes / Narrow Eyes Print [Razar] [Hollow Stud]",13 +3626cpr1131,"Minifig Head Dual Sided Chima Raven with Beak, Yellow Eyes and Dark Red Pupils, Narrow / Wide Eyes Print [Hollow Stud]",13 +3626cpr1133,"Minifig Head Dual Sided Chima Raven with Silver Beak, Eyepatch and Dark Purple Feathers, Wide / Narrow Eye Print [Hollow Stud]",13 +3626cpr1134,"Minifig Head Dual Sided Wolf with Yellow Eyes, Black Scars, Fangs, Closed Mouth / Open Mouth Print [Hollow Stud]",13 +3626cpr1135,Minifig Head Dual Sided Alien Chima Wolf with Yellow Eyes and Lavender Eye Shadow Closed Mouth / Open Mouth Print (Windra) [Hollow Stud],13 +3626cpr1136,"Minifig Head Dual Sided Alien Chima Wolf with Orange Eyes and White Fangs, Wide Eyes / Narrow Eyes Print (Wilhurt) [Hollow Stud]",13 +3626cpr1137,"Minifig Head Dual Sided Chima Wolf with Orange Eye, Dark Gray Face and Red Scars, Closed Mouth / Open Mouth Print [Winzar] [Hollow Stud]",13 +3626cpr1138,"Minifig Head Dual Sided Alien Chima Wolf with Yellow Eyes, Fur, Eyebrows, Fangs, Closed Mouth / Open Mouth Print (Wakz) [Hollow Stud]",13 +3626cpr1139,"Minifig Head Dual Sided Alien Chima Crocodile with Dark Brown Eye Borders, White Eyebrows, Wide Eyes / Narrow Eyes Print (Crominus) [Hollow Stud]",13 +3626cpr1140,"Minifig Head Dual Sided Crocodile with Dark Green Eye Borders, Wide Eyes / Narrow Eyes Print [Crawley] [Hollow Stud]",13 +3626cpr1141,"Minifig Head Dual Sided Chima Crocodile with Dark Brown Eye Scales, White Teeth and Red Scar, Wide Eye / Narrow Eye Print [Hollow Stud]",13 +3626cpr1142,"Minifig Head Dual Sided Alien Chima Crocodile with Medium Lavender Eye Borders, Wide Eyes / Narrow Eyes Print (Crooler) [Hollow Stud]",13 +3626cpr1143,"Minifig Head Dual Sided Chima Crocodile with Silver Lower Jaw, Wide Eyes / Narrow Eyes Print [Hollow Stud]",13 +3626cpr1144,"Minifig Head Black and Tan Eyebrows, White Pupils and Cheek Lines Print [Hollow Stud]",13 +3626cpr1145,Minifig Head Black Mask and Thin Moustache Print [Hollow Stud],13 +3626cpr1146,"Minifig Head Male Brown Beard and Eyebrows, Goatee, Pupils, Teeth Print [Hollow Stud]",13 +3626cpr1147,Minifig Head Male - Black Eyebrows and Lopsided Grin Print [Hollow Stud],13 +3626cpr1148,Minifig Head Green Eyes and Red Face Markings Print [Hollow Stud],13 +3626cpr1149,"Minifig Head Black Eyebrows, Cheek, Chin and Forehead Dimple Print [Hollow Stud]",13 +3626cpr1150,Minifig Head Alien with Silver Eyes with Red Dots and Dark Red Headband Print [Hollow Stud],13 +3626cpr1151,"Minifig Head Male Right Eye Scarred Area and No Pupil, Angry Print (Schredder) [Hollow Stud]",13 +3626cpr1152,"Minifig Head Beard Brown Angular, White Eyes, Angry Print [Hollow Stud]",13 +3626cpr1153,"Minifig Head Dual Sided Female Dark Orange Eyebrows, Freckles, Closed Mouth Smile / Open Mouth Scowl Print [Hollow Stud]",13 +3626cpr1154,"Minifig Head Dual Sided Beard Stubble, Determined / Breathing Apparatus Print [Hollow Stud]",13 +3626cpr1155,"Minifig Head Dual Sided Light Brown Eyebrows and Beard, Scar, Open Mouth with Teeth / Breathing Apparatus Print [Hollow Stud]",13 +3626cpr1156,"Minifig Head Dual Sided Black Eyebrows, Cheek Lines, Smile / Breathing Apparatus Print [Hollow Stud]",13 +3626cpr1157,"Minifig Head Dual Sided Cyborg Eyepiece, Eyebrow Left Side, Breathing Apparatus / Worried Print [Hollow Stud]",13 +3626cpr1158,"Minifig Head Dual Sided Glasses with Silver Frame, Black Moustache, Closed Mouth / Open Mouth Bared Teeth Print [Hollow Stud]",13 +3626cpr1159,"Minifig Head Gray Eyebrows, Orange Eyes, Dark Orange Facial Lines, Broken Teeth Print [Hollow Stud]",13 +3626cpr1160,"Minifig Head Dual Sided Female Dark Red Lips and Glasses / Mask, White Face Paint and Open Mouthed Smile Print (Dr Harleen Quinzel) [Hollow Stud]",13 +3626cpr1161,"Minifig Head Dual Sided Female Black Eyelashes, Blue Lips, Smile / Breathing Apparatus Print [Hollow Stud]",13 +3626cpr1162,"Minifig Head Male White and Gray Bushy Eyebrows, Open Mouth Smile Print [Hollow Stud]",13 +3626cpr1179,Minifig Head Alien with Red Eyes and Stitched Mouth Print (Scarecrow) [Hollow Stud],13 +3626cpr1180,"Minifig Head - Monocle, Raised Eyebrow and Wrinkles Print (Penguin) [Hollow Stud]",13 +3626cpr1181,Minifig Head Alien with Robot Magenta Eyes and Metal Plates Print [Hollow Stud],13 +3626cpr1183,"Minifig Head Dual Sided Brown Eyebrows, White Pupils, Smiling / Open Mouth Angry Print [Hollow Stud]",13 +3626cpr1184,"Minifig Head Dual Sided Brown Eyebrows, Moustache, White Pupils / Sad Print (SW Malakili) [Hollow Stud]",13 +3626cpr1185,"Minifig Head Dual Sided Stern Brown Eyebrows, Pupils and Orange Visor / Open Mouth Print [Luke Skywalker] [Hollow Stud]",13 +3626cpr1186,"Minifig Head Dual Sided Beard Thick with Lines, Brown Eyebrows, Moustache, Large Blue Eyes, Smile / Angry Print [Hollow Stud]",13 +3626cpr1187,"Minifig Head Dual Sided Alien with SW Ahsoka, Blue Eyes, Smile / Angry Print [Hollow Stud]",13 +3626cpr1188,"Minifig Head Alien with SW Umbaran Soldier, Large Purple Eyes and White Eyebrows Print [Hollow Stud]",13 +3626cpr1189,"Minifig Head Dual Sided Black Eyebrows, Open Mouth Evil Grin / Closed Mouth Sad Print (SW Young Boba Fett) [Hollow Stud]",13 +3626cpr1191,Minifig Head Male Mask Black with Eyeholes and Smirk Print (The Lone Ranger) [Hollow Stud],13 +3626cpr1192,"Minifig Head Dual Sided Dark Tan Moustache and Eyebrows, Stern / Angry Print (Captain J. Fuller) [Hollow Stud] ",13 +3626cpr1193,"Minifig Head Beard Stubble, Brown Angry Eyebrows, White Pupils Print [Hollow Stud]",13 +3626cpr1194,Minifig Head Dual Sided Face Paint Smiling / Mouth Open Scared Print (Tonto) [Hollow Stud],13 +3626cpr1195,Minifig Head Dual Sided Female Dark Pink Lips Eyebrow Raised / Scared Print (Red Harrington) [Hollow Stud],13 +3626cpr1196,"Minifig Head Beard Stubble, Moustache, Brown Eyebrows Print [Hollow Stud]",13 +3626cpr1197,"Minifig Head Dual Sided Scars and Gold Tooth, Crooked Smile, Clean Shaven / Angry, Beard and Stubble Print [Hollow Stud]",13 +3626cpr1198,"Minifig Head Dual Sided Wrinkles and Dark Red Face Paint, Mouth Closed / Mouth Open Scared Print [Hollow Stud]",13 +3626cpr1199,"Minifig Head Dual Sided Female Red Lips, Determined / Scared Print (Rebecca Reid) [Hollow Stud]",13 +3626cpr1200,"Minifig Head Dual Sided Boy with Freckles, Smiling / Scared Print (Danny Reid) [Hollow Stud]",13 +3626cpr1201,Minifig Head Beard Full Brown with Graying Temples and Wrinkles Print (Latham Cole) [Hollow Stud],13 +3626cpr1202,Minifig Head Dual Sided Alien Chima Skunk with Lavender Eyes and Nose Happy / Sleepy Print (Skinnet) [Hollow Stud],13 +3626cpr1203,Minifig Head Dual Sided Chima Fox with White and Orange Face Details Smile / Grim Print [Hollow Stud],13 +3626cpr1204,"Minifig Head Dual Sided Chima Gorilla with Yellow Eyes, Protruding Front Teeth and Gray Face Happy / Sad Print [Hollow Stud]",13 +3626cpr1205,Minifig Head Dual Sided Chima Gorilla with Yellow Eyes and Gray Face Closed Mouth / Crooked Smile Print [Hollow Stud],13 +3626cpr1206,"Minifig Head Dual Sided Alien Chima Gorilla with Yellow Eyes, Fangs and Gray Face, Closed Mouth / Open Mouth Print (Gorzan) [Hollow Stud]",13 +3626cpr1207,"Minifig Head Dual Sided Alien Chima Gorilla with Yellow Eyes, Fangs and Gray and White Face Happy / Angry Print (Grizzam) [Hollow Stud]",13 +3626cpr1208,Minifig Head Dual Sided Dark Red Face Paint Determined / Scared Print (Red Knee) [Hollow Stud],13 +3626cpr1211,"Minifig Head Female with Violet Eyes, Brown Lips and Pale Green Head Paint Print (SW Stass Allie) [Hollow Stud]",13 +3626cpr1212,"Minifig Head Saruman Thick Black Eyebrows, Gray and White Beard, Frown / Angry Print [Hollow Stud]",13 +3626cpr1215,"Minifig Head Dual Sided Black Bushy Eyebrows, Brown Goatee, Cheek Lines, Angry / Bared Teeth with Red Eyes Print [Hollow Stud]",13 +3626cpr1216,"Minifig Head Dual Sided Black Eyebrows, Cheek Lines, Determined / Angry Print [Hollow Stud]",13 +3626cpr1217,"Minifig Head Dual Sided Medium Dark Flesh Eyebrows, Gray Wrinkles, Determined / Angry with Red Eyes and Protruding Veins Print [Hollow Stud]",13 +3626cpr1218,"Minifig Head Dual Sided Moustache, Goatee and Cheek Lines, Sneering / Scared Print [Hollow Stud]",13 +3626cpr1219,"Minifig Head Dual Sided Sunken Eyes, Black Eyebrows, Wrinkles, Frown / Angry Print [Hollow Stud]",13 +3626cpr1220,"Minifig Head Dual Sided Black Eyebrows, Gray Wrinkles, Determined / Angry with Red Eyes and Protruding Veins Print [Hollow Stud]",13 +3626cpr1221,"Minifig Head Dual Sided Female Brown Eyebrows, Eyelashes, Medium Dark Flesh Lipstick, Cheek Lines, Smiling / Scared Print [Hollow Stud]",13 +3626cpr1222,"Minifig Head Dual Sided Female Brown Eyebrows, Eyelashes, Pink Lips, Closed Mouth / Open Mouth Print (SW Padme Amidala) [Hollow Stud]",13 +3626cpr1223,Minifig Head Dual Sided Stubble and Missing Tooth Print [Hollow Stud],13 +3626cpr1224,"Minifig Head Dual Sided Beard, Curved Black Eyebrows, Lopsided Open Grin / Determined Print [Hollow Stud]",13 +3626cpr1225,"Minifig Head Dual Sided Stubble, Black Goatee, Bushy Eyebrows, Determined / Closed Mouth Print [Hollow Stud]",13 +3626cpr1226,"Minifig Head Beard Black, Moustache, Arched Eyebrows, White Pupils, Grim Mouth Print [Hollow Stud]",13 +3626cpr1227,"Minifig Head Dual Sided Brown Eyebrows, Black Eyes with Pupils, Wrinkles, Sad / Angry Print (SW Anakin) [Hollow Stud]",13 +3626cpr1229,"Minifig Head Beard Gray and White Full, Thick Moustache and Eyebrows Print [Hollow Stud]",13 +3626cpr1230,"Minifig Head Dual Sided Cyborg Eyepiece, Beard, Determined / Breathing Apparatus Print [Hollow Stud]",13 +3626cpr1231,Minifig Head with Weequay Face Print [Hollow Stud],13 +3626cpr1232,"Minifig Head Alien with SW Darth Maul, Red Face and Narrowed Eyes Print [Hollow Stud]",13 +3626cpr1233,"Minifig Head Dual Sided Black Eyebrows, Light Blue Lightning Bolts Print / Light Blue Eyes, Worried Print (SW Jek-14) [Hollow Stud]",13 +3626cpr1234,"Minifig Head Dual Sided Female with Peach Lips, Open Mouth Smile, Black Eyebrows, Smiling / Scared Print [Hollow Stud]",13 +3626cpr1235,"Minifig Head Female Glasses, White Pupils, Eyelashes, Peach Lips, Smiling [Hollow Stud]",13 +3626cpr1236,Minifig Head with Red HUD Print [Hollow Stud],13 +3626cpr1237,"Minifig Head Black Sunglasses, Closed Mouth, Dark Brown Sideburns Print [Hollow Stud] ",13 +3626cpr1238,"Minifig Head Black Eyebrows, Cheek Lines, Gap Toothed Smile Print [Hollow Stud]",13 +3626cpr1239,"Minifig Head Brown Bushy Moustache, Brown Eyebrows and Chin Strap Print [Hollow Stud]",13 +3626cpr1240,"Minifig Head Female Open Smiling Mouth, Freckles Print [Hollow Stud]",13 +3626cpr1241,"Minifig Head Dual Sided Glasses with Blue Frame, Medium Dark Flesh Eyebrows, Red Lipstick, Smirk / Open Smile Print [Hollow Stud]",13 +3626cpr1242,LEGO Scarecrow Head (Recessed Solid Stud) (14626),13 +3626cpr1243,"Minifig Head Beard Stubble, Scars over Right Eyebrow and Mouth, Angry Print [Hollow Stud]",13 +3626cpr1244,"Minifig Head Stubbly Beard, Brown Eyebrows and Black Stains Print [Hollow Stud]",13 +3626cpr1245,"Minifig Head with Trans-Black Sunglasses, Dark Brown Eyebrows and Cheek Lines Print [Hollow Stud]",13 +3626cpr1246,"Minifig Head Female - Dark Pink Glasses, Gray Eyebrows and Crow's Feet Print [Hollow Stud]",13 +3626cpr1247a,"Minifig Head Tribal Blue Face Paint, Black Eyebrows and Grin Print [Hollow Stud]",13 +3626cpr1247b,Minifig Head Alien with SW Narrow Set Red Eyes and Black Facial Features Print (Cad Bane) [Hollow Stud],13 +3626cpr1248,"Minifig Head Reddish Brown Sideburns, Stubble and Angry Expression Print (Barret) [Hollow Stud]",13 +3626cpr1249,Minifig Head Dark Brown Sideburns and Crooked Smile Print (Jesus) [Hollow Stud],13 +3626cpr1250,"Minifig Head Beard Gray Bushy Eyebrows, White Pupils, Scar Print [Hollow Stud]",13 +3626cpr1251,"Minifig Head Beard Reddish Brown, Furrowed Brow Print [Hollow Stud]",13 +3626cpr1252,Minifig Head with Eye of Sauron Print [Hollow Stud],13 +3626cpr1253,"Minifig Head Dual Sided Gandalf Thick Gray Eyebrows, Smile / Angry Print [Hollow Stud]",13 +3626cpr1254,Minifig Head Dual Sided Brown Eyebrows Worried / Angry Print [Hollow Stud],13 +3626cpr1255,Minifig Head with Mouth of Sauron Print [Hollow Stud],13 +3626cpr1256,"Minifig Head Dual Sided Brown Eyebrows, Cheek Lines, Smile / Frown Print [Hollow Stud]",13 +3626cpr1257,"Minifig Head Dual Sided Female (Arwen) Eyelashes and Thin Brown Eyebrows, Cheek Lines, Smile / Determined Print [Hollow Stud]",13 +3626cpr1259,"Minifig Head Male Mask Black with Dirt Stain, Clenched Teeth Print [Hollow Stud]",13 +3626cpr1260,"Minifig Head Dual Sided Female Dark Orange Eyebrows, Eyelashes, Freckles and Dark Red Lips Smiling / Scared Print [Hollow Stud]",13 +3626cpr1261,Minifig Head Dual Sided Face Paint and Dirt Patches Neutral / Mouth Open Frown Print [Hollow Stud],13 +3626cpr1262,"Minifig Head Dual Sided LotR Ghost with Glowing Eyes and Moustache, Bottom Teeth / Top and Bottom Teeth Print [Hollow Stud]",13 +3626cpr1263,"Minifig Head Dual Sided LotR Ghost with Glowing Eyes, Moustache, and Circles on Temples, Mouth Closed / Mouth Open Print [Hollow Stud]",13 +3626cpr1265,"Minifig Head Dual Sided LotR Beard, Tattoo and Eyebrow Ring Angry / Surprised Print [Hollow Stud]",13 +3626cpr1266,Minifig Head Alien with SW Dark Tan Features and White Horns Print (Nikto Guard) [Hollow Stud],13 +3626cpr1267,"Minifig Head SW Blue Eyes, Tribal Tattoo, Stubble and Scars Print (Obi-Wan - Rako Hardeen) [Hollow Stud]",13 +3626cpr1268,"Minifig Head Alien with Blue Eyes, Green Markings and Dark Green Lips Print (SW Jedi Consular) [Hollow Stud]",13 +3626cpr1269,Minifig Head Alien with Silver Mask and Red Eyes Print (SW Sith Warrior) [Hollow Stud],13 +3626cpr1270,Minifig Head Alien Zabrak with Orange Eyes and Dark Tan Markings Print (SW Jedi Knight) [Hollow Stud],13 +3626cpr1274,Minifig Head Dual Sided Wrinkles and Sunken Eyes Worried / Angry Print [Wormtongue] [Hollow Stud],13 +3626cpr1275,"Minifig Head Dual Sided Light Gray Eyebrows, White Pupils, Open Mouth, Cheek Lines, Smile / Open Mouth Scared Print",13 +3626cpr1276,"Minifig Head Dual Sided Brown Eyebrows, White Pupils, Chin Dimple, Smile / Open Mouth Scared Print",13 +3626cpr1278,"Minifig Head Male Bushy Gray Eyebrows, Wrinkles, Scowl Print (Sensei Garmadon) [Hollow Stud]",13 +3626cpr1279,Minifig Head Angry Red Eyes Half Nindroid Face Armour [Hollow Stud],13 +3626cpr1280,"Minifig Head Alien with Red Eyes, Head Plates Print (Evil Wu) [Hollow Stud]",13 +3626cpr1281,Minifig Head with Ninjago Cyborg Armour Print [Hollow Stud],13 +3626cpr1282,Minifig Head Silver Mechanical Mask / Red Eyes Nindroid Print [Hollow Stud],13 +3626cpr1283,Minifig Head Nindroid with Red Eyes and Mask Print [Hollow Stud],13 +3626cpr1284,Minifig Head Dual Sided Alien Chima Rhinoceros with Orange Eyes and White Horn Neutral / Angry Print [Hollow Stud] ,13 +3626cpr1285,Minifig Head Dual Sided White Strip on Forehead and Cheek Lines / Silver Mask with Medium Blue Goggles Print (Batman) [Hollow Stud],13 +3626cpr1286,"Minifig Head Alien with Fangs, Red Eyes and Fur Print [Hollow Stud]",13 +3626cpr1287,Minifig Head Dual Sided Mask Black with Red Eyeholes Determined / Smiling Print (Nightwing) [Hollow Stud],13 +3626cpr1288,"Minifig Dual Sided Balaclava with Face Hole, Orange Eyebrows, Cheek Lines, Smiling / Angry Print [Hollow Stud]",13 +3626cpr1289,Minifig Head Dual Sided Mask Green with Eyeholes and Determined / Scared Print (Robin) [Hollow Stud],13 +3626cpr1290,"Minifig Head Dual Sided Female Brown Eyebrows, Eyelashes, Red Lipstick, Smiling / Angry Print (Batgirl) [Hollow Stud]",13 +3626cpr1291,"Minifig Head Male Wide Angled Smile with Red Lips, Green Eyebrows Print (The Joker) [Hollow Stud]",13 +3626cpr1293,"Minifig Head Dual Sided Alien Chima Lion with Orange Eyes, Tan Face and Brown Nose, Closed Mouth / Open Mouth Print (Lavertus) [Hollow Stud]",13 +3626cpr1295,Minifig Head Dual Sided Gold Headset with Smile / Determined Print [Hollow Stud],13 +3626cpr1296a,Minifig Head with Pineapple Print [Hollow Stud],28 +3626cpr1296b,Minifig Head Dual Sided Open Lopsided Smile / Laughing Print [Hollow Stud] ,13 +3626cpr1297,"Minifig Head Female with Black Eyebrows, Eyelashes, Pink Lips, Freckles, Lopsided Smile Print [Hollow Stud]",13 +3626cpr1298,Minifig Head Dual Sided Silver Sunglasses / Scribble-Face Print [Hollow Stud],13 +3626cpr1299,"Minifig Head with Silver Lips, Mermaid Scales and Long Eyelashes Print [Hollow Stud]",13 +3626cpr1300,"Minifig Head Black Eyebrows, Cheek Lines, White Pupils Print [Hollow Stud]",13 +3626cpr1301,"Minifig Head Alien Female with Red Eyes, 4 Mouth Squares, Beauty Mark and Headset Print [Hollow Stud] ",13 +3626cpr1302,"Minifig Head Male Brown Eyebrows, Goatee and Moustache, White Pupils Print [Hollow Stud] ",13 +3626cpr1303,"Minfig Head - Sweat Drops, Tongue Out and White Pupils Print [Hollow Stud]",13 +3626cpr1304,"Minifig Head Female with Dark Brown Eyebrows, Eyelashes, Freckles, Scratches, Determined Print [Hollow Stud]",13 +3626cpr1305,"Minifig Head Male Black Eyebrows, Open Mouth Smile with Teeth and Tongue Print [Hollow Stud]",13 +3626cpr1306,"Minifig Head Dark Red Glasses, Gray Eyebrows, Crow's Feet, Open Mouth Print [Hollow Stud]",13 +3626cpr1307,"Minifig Head Alien with Red Eyes, Metal Eyebrows with Rivets, Broken Teeth and Stubble Bolts Print [Hollow Stud] ",13 +3626cpr1309,"Minifig Head Alien Female with Red Eyes, 4 Mouth Squares and Beauty Mark Print [Hollow Stud]",13 +3626cpr1310,"Minifig Head with Brown Sideburns, Stubble and Eyebrows, Neutral Mouth [Hollow Stud]",13 +3626cpr1311,"Minifig Head Brown Eyebrows & Moustache, Cheery Wink Print [Hollow Stud]",13 +3626cpr1312,Minifig Head with Gundabad Orc Print [Hollow Stud],13 +3626cpr1313,"Minifig Head Dual Sided Long Black Sideburns, Moustache, Goatee, Smirking / Angry Print [Hollow Stud]",13 +3626cpr1314,"Minifig Head Face Paint with Red Lips and Eyebrows, Green Cheeks, Angry Print [Hollow Stud]",13 +3626cpr1315,Minifig Head Dual Sided Beard and Bushy Eyebrows Smiling / Shouting Print [Hollow Stud],13 +3626cpr1316,"Minifig Head Dual Sided Brown Eyebrows, Black Eyes with Pupils, Wrinkles, Neutral / Battle Print [Hollow Stud]",13 +3626cpr1317,Minifigure Head Dual Sided - Orange Visor and Headset Stern / Angry Print [Hollow Stud],13 +3626cpr1318,"Minifig Head Black Eyebrows, Cheek Lines and Headset with Open Mouth Print [Hollow Stud]",13 +3626cpr1321,"Minifig Head Alien Chima Scorpion with Orange Eyes, Silver Markings and White Fangs Print [Hollow Stud] ",13 +3626cpr1322,Minifig Head Beard and Scowl Print [Hollow Stud],13 +3626cpr1323,Minifig Head Chima Bat Face with Pink Nose Print [Hollow Stud],13 +3626cpr1324,"Minifig Head Alien Chima Bat with Yellow Eyes, Gray Nose and Fangs Print (Braptor) [Hollow Stud]",13 +3626cpr1325,"Minifig Head Dual Sided Black Eyebrows, Lopsided Smile / Open Mouth Scared Print (Emmet) [Hollow Stud]",13 +3626cpr1326,"Minifig Head Dual Sided Female Black Eyebrows, Eyelashes, Freckles, Pink Lips, Lopsided Smile / Determined Print (Wyldstyle) [Hollow Stud]",13 +3626cpr1327,"Minifig Head Alien with Black Sunglasses, Open Mouth 4 Squares and Rivets Print [Hollow Stud]",13 +3626cpr1328,"Minifig Head Dual Sided Black Glasses, Open Smile with Teeth and Tongue / Sunglasses, Clenched Teeth Print [Hollow Stud]",13 +3626cpr1329,Minifig Head Sideburns and Open Mouth Smile with Teeth and Tongue Print [Hollow Stud],13 +3626cpr1330,"Minifig Head Dual Sided Female Pink Headband, Sweat Drops, Red Lipstick, Mouth Closed / Clenched Teeth Print [Hollow Stud]",13 +3626cpr1331,"Minifig Head Moustache Curly Long Thick, Open Mouth, Scared Print [Hollow Stud]",13 +3626cpr1332,"Minifig Head Beard Brown, Bushy Eyebrows, Grin and White Pupils Print [Hollow Stud]",13 +3626cpr1333,"Minifig Head Dual Sided Black Eyebrows, Freckles, Smile with Teeth / Scared Open Mouth Print [Hollow Stud]",13 +3626cpr1334,"Minifig Head Male Eyepatch Silver with Rivets, Gold Tooth, Stubble Print (MetalBeard) [Hollow Stud]",13 +3626cpr1336,"Minifig Head Alien Skull with Red Eyes, Metal Eyebrows with Rivets and Metal Jaw with Screws Print [Hollow Stud]",13 +3626cpr1337,"Minifig Head Beard Brown, Bushy Eyebrows, Lines under Eyes, Open Mouth Print [Hollow Stud]",13 +3626cpr1338,"Minifig Head Alien with Red Eyes, 4 Mouth Squares and Rivets Print [Hollow Stud]",27 +3626cpr1340,Minifig Head Alien with Red Visor and 9 Mouth Squares Print [Hollow Stud],13 +3626cpr1341,"Minifig Head Dual Sided Male with Connected Brow, Cheek Lines, Angry / Red Zigzag Line on Black Background Print [Hollow Stud]",13 +3626cpr1342,Minifig Head Dual-Sided - Large White Eyes Neutral / Anxious Print [Hollow Stud],13 +3626cpr1343,"Minifig Head Dual Sided Female Copper Glasses, Gray Eyebrows, Red Lipstick, Cheek Lines, Smiling / Scared Print [Hollow Stud]",13 +3626cpr1344,"Minifig Head Dual Sided Black Glasses, Gray Moustache and Eyebrows, Cheek Lines, Mouth Closed / Clenched Teeth Print [Hollow Stud]",13 +3626cpr1347,"Minifig Head Beard Stubble, Brown Eyebrows, White Pupils, Open Smile Print [Hollow Stud]",13 +3626cpr1348,"Minifig Head Dual Sided Brown Eyebrows, White Pupils, Slight Smile and Cleft Chin / Open Mouth Scared Printed (McScrubs) [Hollow Stud]",13 +3626cpr1349,"Minifig Head Dual Sided Female Black Eyebrows, Eyelashes, Red Lips, Lopsided Smile / Scared Open Mouth with Teeth Print [Hollow Stud]",13 +3626cpr1350,"Minifig Head Moustache Curly Long, Stern Eyebrows, White Pupils Print [Hollow Stud]",13 +3626cpr1352,"MINI HEAD ""NO. 1352""",13 +3626cpr1353,"Minifig Head Dual Sided Female Glasses with Black Frames, Red Lips, Determined / Scared Print [Hollow Stud]",13 +3626cpr1354,"Minifig Head Dual Sided Male Open Smile with Teeth / Eyebrows, Scared Print [Hollow Stud]",13 +3626cpr1355,MINI HEAD NO. 1355,13 +3626cpr1356,"Minifig Head Alien Chima Spider with Orange Eyes, Brown Fur, White Spots and Fangs Print (Sparratus) [Hollow Stud]",13 +3626cpr1357,"Minifig Head Alien Chima Spider with Orange Eyes, Dark Tan Fur, Black and White Spots and Fangs Print (Sparacon) [Hollow Stud]",13 +3626cpr1358,"Minifig Head Dual Sided Alien Chima Rhinoceros with Orange Eyes, Purple Markings and White Horn, Neutral / Happy Print (Rinona) [Hollow Stud]",13 +3626cpr1359,"Minifig Head with Yellow Eyes, Dark Brown Fur, Black and White Spots and Fangs Print [Hollow Stud]",13 +3626cpr1360,"Minifig Head Alien with Red Eyes, Metal Eyebrows with Rivets, 8 Mouth Squares, Stubble and Black Markings Print [Hollow Stud]",13 +3626cpr1361,Minifig Head Alien with Red Visor and 4 Mouth Squares on White Background Print [Hollow Stud],13 +3626cpr1363,"Minifig Head Black Eyebrows, Cheek Lines and Headset Print [Hollow Stud]",13 +3626cpr1364,"Minifig Head Dual Sided Purple Circuitry, Green Eyes / Red Eyes [Pixal] [Hollow Stud]",13 +3626cpr1365,"Minifig Head Male Stern Black Eyebrows, White Pupils, Frown, Scar Across Left Eye, No Chin Dimple Print [Hollow Stud]",13 +3626cpr1366,"Minifig Head Male Stern Black Eyebrows, White Pupils, Scowl Print (Lloyd) [Hollow Stud]",13 +3626cpr1367,"Minifig Head Male Stern Eyebrows (one Scarred), White Pupils, Brown Chin Dimple Print [Hollow Stud]",13 +3626cpr1368,"Minifig Head Dual Sided Brown Eyebrows, Black Eyes, Wrinkles and Smile / Grim Print [Hollow Stud]",13 +3626cpr1369,"Minifig Head Male Mask Purple with Eyeholes, Forehead Lines and Open Mouth Smile with Teeth Print (The Riddler) [Hollow Stud]",13 +3626cpr1370,"Minifig Head Dual Sided Dark Orange Moustache, Goatee, Bushy Eyebrows, Wrinkles, Smiling / Open Mouth Print [Hollow Stud]",13 +3626cpr1371,Minifig Head Dual Sided Mask Green with Eyeholes and Smiling / Scared Print (Robin) [Hollow Stud] ,13 +3626cpr1372,"Minifigure Head Dual Sided with Unibrow, White Pupils and Age Lines Neutral / Angry Print [Hollow Stud]",13 +3626cpr1373,Minifig Head with Necromancer Mask Print [Hollow Stud],13 +3626cpr1374,Minifig Head with Full Face Mask and Goggles Print [Hollow Stud],13 +3626cpr1381,Minifig Head Neimoidian Warrior Face with Green Wrinkles Print [Hollow Stud],13 +3626cpr1382,"Minifig Head Dual Sided Thick Brown Eyebrows, Silver Sunglasses, Angry Clenched Teeth / Open Mouth Smile Print (Doc Ock) [Hollow Stud]",13 +3626cpr1384,"Minifig Head Dual Sided Female Black Eyebrows, Eyelashes, Red Lips, Dimples, Smiling / Scared Print (Mary Jane 5) [Hollow Stud]",13 +3626cpr1385,"MINI HEAD NO 1385. Black and silver stripe over eyes, smirk.",13 +3626cpr1386,"Minifig Head Alien with Black Eyes and White Pupils, Dark Red and Black Wrinkles, Bared Teeth Print [Hollow Stud]",13 +3626cpr1387,Minifig Head Mask with Yellow Eyes and Clenched Teeth and Yellow 'H' on Back Print [Hollow Stud],13 +3626cpr1388,"Minifig Head Dual Sided Mask with Reddish Brown Face and Gold Emblem on Forehead, Open Mouth / Closed Mouth Print [Hollow Stud]",13 +3626cpr1389,"Minifig Head Dual Sided Skull Mask with Bright Light Orange Eyes, Skeleton Mouth Smile / Frown Print [Hollow Stud]",13 +3626cpr1390,"Minifig Head Balaclava with Eye and Mouth Holes, Gold Mask, Drooping Moustache and Stubble Print [Hollow Stud]",13 +3626cpr1391,"Minifig Head Dual Sided Dark Tan Eyebrows, Wrinkles, Evil Grin / Stern Print (SW Palpatine) [Hollow Stud]",13 +3626cpr1392,"Minifig Head Male Mask with Eyeholes and Letter A on Forehead, Smiling Print (Captain America) [Hollow Stud]",13 +3626cpr1393,"Minifig Head Dual Sided Orange Eyebrows, Cheek Lines, Closed Mouth / Open Mouth with Teeth Print [Hollow Stud]",13 +3626cpr1395a,Minifig Head Glasses with Orange Goggles and Open Smile Print [Hollow Stud] ,13 +3626cpr1395b,Minifig Head Female Glasses with Orange Goggles and Buff Lipstick Print [Hollow Stud],13 +3626cpr1396,"Minifig Head Dual Sided Female Brown Eyebrows, Eyelashes, Freckles, Peach Lips, Smile with Teeth / Scared Open Mouth Print [Hollow Stud]",13 +3626cpr1403,"Minifig Head Dual Sided Male Dark Tan Eyebrows, White Pupils, Cheek Lines, Smiling / Scowling Print (SW Luke Skywalker) [Hollow Stud]",13 +3626cpr1404,Minifig Head 3-Eyed Orange Fish Print [Hollow Stud],13 +3626cpr1407,"Minifig Head Dual Sided Black Standard Eyes, Smiling with Tongue / Standard Grin Print (Benny) [Hollow Stud]",13 +3626cpr1409,Minifig Head Alien with Medium Blue Face with White Eyes and Lightning Bolts on Forehead Print (Electro) [Hollow Stud],13 +3626cpr1410,Minifig Head Glasses with Green Goggles and Brown Stubble Print [Hollow Stud] ,13 +3626cpr1412,"Minifig Head Dual Sided Female Red Lips and Eyeshadow, Beauty Mark, Mouth Closed / Bared Teeth Print (Karai) [Hollow Stud]",13 +3626cpr1413,MINI HEAD NO.1413,13 +3626cpr1414,"Minifig Head Female with Brown Thin Long Eyebrows, Eyelashes, Magenta Lips and Cheek Lines Print [Hollow Stud]",13 +3626cpr1415,"Minifig Head Male Brown Thick Eyebrows, Lines under Eyes, Cheek Lines and Open Mouth with Teeth Print (Victor) [Hollow Stud]",13 +3626cpr1416,"Minifig Head Alien Bat with Fangs, Green Eyes and Magenta Nose Print [Hollow Stud]",13 +3626cpr1417,"Minifig Head Alien with Robot Magenta Eyes, Silver Mouth, Medium Blue Line and Metal Plates Print [Hollow Stud]",13 +3626cpr1418,"Minifig Head Dual Sided Alien Chima Tiger with Copper Fang and Eye Patch and Light Blue Eyes, Neutral / Angry Print (Sir Fangar) [Hollow Stud]",13 +3626cpr1419,"Minifig Head Alien Chima Vulture with Dark Bluish Gray Beak and Mouth, Light Blue Eyes and Purple Sinew Patches Print (Voom Voom) [Hollow Stud]",13 +3626cpr1420,Minifig Head Glasses with Green Goggles and Brown Stubble Print [Hollow Stud] ,13 +3626cpr1421,"Minifig Head Dual Sided Alien Chima Phoenix with Orange Eyes, Circles, Red Feathers and Yellow Beak, Neutral / Stern Print (Frax) [Hollow Stud]",13 +3626cpr1422,"Minifig Head Dual Sided Alien Chima Tiger with Fangs, Stripes and Light Blue Eyes, Neutral / Angry Print (Stealthor) [Hollow Stud]",13 +3626cpr1423,"Minifig Head Dual Sided Alien Chima Tiger with Fur, Fangs, Light Blue Eyes and Black Stripes, Neutral / Angry Print (Strainor) [Hollow Stud]",13 +3626cpr1424,"Minifig Head Dual Sided Alien Chima Tiger with Orange Eyes, Fangs and Black Stripes, Neutral / Angry Print (Tormak) [Hollow Stud]",13 +3626cpr1425,MINI HEAD NO. 1425,13 +3626cpr1426,"Minifig Head Dual Sided Alien Chima Leopard with Orange Eyes, Fangs and Black Spots, Neutral / Angry Print (Lundor) [Hollow Stud]",13 +3626cpr1428,"Minifig Head Dual Sided Alien Chima Phoenix with Orange Eyes, Gold Feathers and Yellow Beak, Neutral / Stern Print (Fluminox) [Hollow Stud]",13 +3626cpr1429,MINI HEAD NO. 1429,13 +3626cpr1430,"Minifig Head Dual Sided Alien Chima Lion Female with Orange Eyes and Black Nose, Neutral / Crooked Smile Print (Li'Ella) [Hollow Stud]",13 +3626cpr1431,"Minifig Head Dual Sided Alien with Magenta Eyes, Purple Grin with Sharp Teeth and Gold Vertebra on Back Print [Hollow Stud]",13 +3626cpr1432,"Minifig Head Dual Sided Alien Chima Phoenix with Orange Eye Circles, Orange Feathers, Yellow Eyes and Beak, Surprised / Stern Print (Flinx) [Hollow Stud]",13 +3626cpr1433,"Minifig Head Dual Sided Alien Chima Phoenix with Amber Eyes, Circles, Orange Feathers and Yellow Beak, Neutral / Stern Print (Foltrax) [Hollow Stud]",13 +3626cpr1434,"Minifig Head Alien Chima Vulture with Dark Bluish Gray Beak and Mouth, Light Blue Eyes and Sand Green Headpiece Print (Vardy) [Hollow Stud]",13 +3626cpr1435,"Minifig Head Alien Chima Vulture with Dark Bluish Gray Beak and Mouth, Light Blue Eyes and Scar with Plaster Print (Vornon) [Hollow Stud]",13 +3626cpr1436,"Minifig Head Moustache Black Bangs, Striped Sideburns Print [Hollow Stud]",13 +3626cpr1437,"Minifig Head Dual Sided Alien Chima Tiger with Fangs, White Face Fur and Light Blue Eyes, Smiling / Angry Print (Sykor) [Hollow Stud]",13 +3626cpr1438,"Minifig Head Dual Sided Orange Visor, Brown Eyebrows, Chin Strap, Headset, Smiling / Scared Print (SW Dack Ralter) [Hollow Stud]",13 +3626cpr1440,"Minifig Head Glasses with Rectangular Glasses, Black and Brown Beard and Moustache, Bushy Eyebrows, Open Smile Print [Hollow Stud]",13 +3626cpr1441,"Minifig Head Dual Sided Orange Visor, Brown Eyebrows, Chin Strap, Headset, Smiling / Scared Print (SW Dack Ralter) [Hollow Stud]",13 +3626cpr1442,Minifig Head Alien with Robot Red Eyes and Mouth and Silver Metal Plates Eyebrows and Mask Print [Hollow Stud],13 +3626cpr1443,"Minifig Head with Orange Eyes, Wrinkles, Scar and Two Large Scars on Back Print (SW Darth Vader) [Hollow Stud]",13 +3626cpr1444,"Minifig Head Beard with SW Gray Beard and Eyebrows, Lines under Eyes, Furrowed Brow, White Pupils, Lines on Cheeks Print (SW Obi-Wan) [Hollow Stud] ",13 +3626cpr1445,"Minifig Head Male Dark Tan Eyebrows Furrowed, Cheek Lines, Frown, Headset Print (SW Airen Cracken) [Hollow Stud]",13 +3626cpr1450,"Minifig Head Male Right Eye Scarred Area and No Pupil, Open Mouth Angry Print (Shredder) [Hollow Stud]",13 +3626cpr1451,MINI HEAD NO.1451,13 +3626cpr1452,"Minifig Head Balaclava with Eye Hole Narrow, Black Eyes and Eyebrows Print [Hollow Stud]",13 +3626cpr1455,Minifig Head Dual Sided Alien with SW Ten Numb No Mask / Breathing Mask Print [Hollow Stud],13 +3626cpr1456,"Minifig Head Alien with SW Jawa, Yellow Eyes with Orange Rim Print [Hollow Stud] ",13 +3626cpr1458,"Minifig Head Male SW Dark Tan Eyebrows, White Pupils, Stubble and Age Lines Print (Owen Lars) [Hollow Stud]",13 +3626cpr1459,Minifig Head Alien with Robot Yellow Eyes and Mouth and Aluminum Foil Blotches Print [Hollow Stud],13 +3626cpr1460,"Minifig Head Dual Sided Bushy Black Eyebrows and Long Thick Sideburns, Frown / Goggles, Angry Print [Hollow Stud]",13 +3626cpr1461,"Minifig Head Dual Sided White Pupils, Chin Dimple, Black Eyebrows, Slight Smile / Pink Visor, Frown Print (SW Gray Squadron Pilot) [Hollow Stud]",13 +3626cpr1462,"Minifig Head Dual Sided Female Thin Black Eyebrows, Cheek Lines, Red Lips / Bared Teeth with White Eyes Print (Storm) [Hollow Stud]",13 +3626cpr1466,"Minifig Head Dual Sided Dark Bluish Gray Cheek Lines, Red Tattoos on Front and Back Print [Hollow Stud]",13 +3626cpr1467,"Minifig Head Dual Sided Beard Stubble, Brown Eyebrows, Smiling / Angry Clenched Teeth Print (Star-Lord) [Hollow Stud]",13 +3626cpr1468,"Minifig Head Dual Sided Alien Female Silver Wrinkles, Eyelashes, Green Lips, Smiling / Angry Print [Hollow Stud]",13 +3626cpr1470,"Minifig Head Beard Stubble, Raised Left Eyebrow, Headset and Smile Print [Hollow Stud]",13 +3626cpr1471,"Minifig Head Female with Black Eyebrows, Eyelashes, White Pupils and Gold Lips Stern Print [Hollow Stud]",13 +3626cpr1472,"Minifig Head Male Bushy Gray Eyebrows, Wrinkles, White Pupils, Slight Smile Print [Hollow Stud]",13 +3626cpr1473,"Minifig Head Female, Thin Eyebrows, Angry Mouth, Scar on Cheek Print [Hollow Stud]",13 +3626cpr1474,"Minifig Head Moustache Dark Tan Thin, Goatee, Wide Smile with Teeth Print [Hollow Stud]",13 +3626cpr1475,"Minifig Head Brown Eyebrows, Wide Eyes and Smile with Teeth Print [Hollow Stud]",13 +3626cpr1476,"Minifig Head Dark Orange Eyebrows, White Pupils, Crooked Smile and Chin Dimple Print [Hollow Stud]",13 +3626cpr1477,"Minifig Head Moustache Black Split, Goatee, Bushy Eyebrows, Cheek Lines, Angry Print [Hollow Stud]",13 +3626cpr1478,"Minifig Head Dual Sided Female Dark Orange Eyebrows, Eyelashes, Bright Pink Lips, Smiling / Eyes Closed, Kissing Print [Hollow Stud]",13 +3626cpr1479,"Minifig Head Open Mouth Smile with Teeth and Braces, Freckles Print [Hollow Stud]",13 +3626cpr1480,"Minifig Head Glasses with Rectangular Glasses, Brown Eyebrows, Open Mouth Smile with Teeth, White Pupils Print [Hollow Stud]",13 +3626cpr1481,"Minifig Head Female with Pale Lips and Circles around Eyes, Black Eyelashes and Eyebrows, White Pupils Print [Hollow Stud]",13 +3626cpr1482,"Minifig Head Beard Stubble, Gray Bushy Eyebrows, Open Grin, Gold Tooth Print [Hollow Stud]",13 +3626cpr1483,"Minifig Head Female with Silver Lips, Freckles and Wink Print [Hollow Stud]",13 +3626cpr1484,Minifig Head Glasses with Black Sunglasses Large and Lopsided Smile Wide with Teeth Print [Hollow Stud],13 +3626cpr1485,Minifig Head Glasses with Blue Sunglasses and Crooked Smile Print [Hollow Stud],13 +3626cpr1487,"Minifig Head Male Dark Tan Eyebrows, Wrinkles and Headset Print (SW General Veers) [Hollow Stud]",13 +3626cpr1488,"Minifig Head Dual Sided Red Visor with 2 White Bands, Cheek Lines, Mouth Closed / Clenched Teeth Print [Hollow Stud]",13 +3626cpr1489,MINI HEAD NO.1489,13 +3626cpr1490,"Minifig Head Dual Sided Beard Stubble, Black Eyebrows, Determined, Open Mouth / Mouth Closed, Scar on Right Eyebrow Print [Hollow Stud]",13 +3626cpr1491,MINI HEAD NO. 1491,13 +3626cpr1492,"Minifig Head Male Brown Eyebrows and Long Sideburns, Frown and Furrowed Brow Print (SW Imperial Officer) [Hollow Stud]",13 +3626cpr1496,Minifig Head Dual Sided Open Smile with Tongue / Open Mouth Mouth on One Side Print (Emmet) [Hollow Stud],13 +3626cpr1498,"Minifig Head Alien with Yellow Eyes, Dark Red Wrinkles, Bared Teeth Print [Hollow Stud]",13 +3626cpr1499,"Minifig Head Dual Sided Black Glasses, Reddish Brown Eyebrows and Goatee, Closed Mouth / Scared Open Mouth Print [Hollow Stud]",13 +3626cpr1500,"Minifig Head Dual Sided Female with Black Eyelashes and Eyebrows, Lime Blotches, Smirk / Green Eye Shadow and Lips, Teeth Print [Hollow Stud]",13 +3626cpr1501,MINI HEAD NO.1501,13 +3626cpr1502,"Minifig Head Dual Sided Female Digital Eye Glasses, Pink Lips, Smirk / Visor Open Print (Caila Phoenix) [Hollow Stud]",13 +3626cpr1503,"Minifig Head Dual Sided Digital Eye Glass over Left Eye, Smirk / Determined Print (Curtis Bolt) [Hollow Stud]",13 +3626cpr1504,"Minifig Head Dual Sided Female Red Lips, Goggles, Closed Mouth / Open Mouth Smile Print (Christina Hydron) [Hollow Stud]",13 +3626cpr1505,"Minifig Head Male with Dark Green Pixelated Visor, Sideburns and Bared Print (Terabyte) [Hollow Stud]",13 +3626cpr1506,Minifig Head Male Mask with Red and Gold Visor Print (Cyclops) [Hollow Stud],13 +3626cpr1508,"Minifig Head Dual Sided Light Bluish Gray Beard Stubble, Moustache and Eyebrows, Scar, Determined / Smirk Print (Solomon Blaze) [Hollow Stud]",13 +3626cpr1509,"Minifig Head Dual Sided Brown Eyebrows, Cheek Lines, Forehead Lines, Smiling / Determined, Chin Strap Print [Hollow Stud]",13 +3626cpr1510,Minifig Dual Sided Alien Skull with Mandibles and Silver Eyes / Exoskeleton and One Eye Print [Hollow Stud] ,13 +3626cpr1513,"Minifig Head Dual Sided Alien Female Dark Azure Face, Dark Blue Lips, Mechanical Left Eye and Silver Stripes on Back Print [Hollow Stud]",13 +3626cpr1514,"Minifig Head Dual Sided Alien Black Face, Gray Eyebrows, Angry, Mouth Closed / Clenched Teeth Print [Hollow Stud]",13 +3626cpr1515,"Minifig Head - Dual Sided - Black Eyebrows, Slight Crooked Smile / Downturned Mouth with Teeth Print [Hollow Stud]",13 +3626cpr1517,"Minifig Head Dual Sided Dark Orange Eyebrows and Chin Dimple, Neutral / Angry, Clenched Teeth Print (Captain America) [Hollow Stud]",13 +3626cpr1518,MINI HEAD NO. 1518,13 +3626cpr1519,MINI HEAD - TR. NO. 1519,13 +3626cpr1520,"Minifig Head Dual Sided Alien Female with Swashbuckling Smile, Green Eyes, Pink Lipstick / Frown Print (SW Hera Syndulla) [Hollow Stud]",13 +3626cpr1523,"Minifig Head Dual Sided LotR Galadriel Eyelashes, Medium Dark Flesh Lips, Neutral / Angry, White Eyes Print [Hollow Stud]",13 +3626cpr1524,"Minifig Head Dual Sided LotR Bain, Reddish Brown Eyebrows, Slight Smile and Freckles / Angry with Mud Splotches Print [Hollow Stud]",13 +3626cpr1525,"Minifig Head Dual Sided LotR Bard Long Black Sideburns, Moustache, Goatee, Frowning / Angry with Mud Splotches Print [Hollow Stud]",13 +3626cpr1526,"Minifig Head Dual Sided White Mask with Green Eyes, Red Scars, Open / Closed Mouth Print (Joker) [Hollow Stud]",13 +3626cpr1527,"Minifig Head Dual Sided White Strip on Forehead and Cheek Lines, Determined / Frown Print (Batman) [Hollow Stud]",13 +3626cpr1528,"Minifig Head LotR White Eyes, Puckered Mouth, Cheek Lines and Wrinkles, Thin Hair on Reverse Print (Witch-King) [Hollow Stud]",13 +3626cpr1530,Minifig Head LotR Hunter Orc Print [Hollow Stud],13 +3626cpr1531,"Minifig Head Dual Sided Cheek Lines, White Pupils, Chin Dimple, Open Mouth / Closed Eyes Carbonite Print (SW Han Solo) [Hollow Stud]",13 +3626cpr1532,"Minifig Head Smile with Teeth, Arched Eyebrows, White Pupils and Scars Print (SW Boba Fett) [Hollow Stud]",13 +3626cpr1533a,"Minifig Head Dual Sided Moustache Thin, White Pupils, Determined / Scared with Teeth Print (Ghostbusters Winston Zeddemore) [Hollow Stud]",13 +3626cpr1533b,Minifig Head LotR Gundabad Orc White Painted Forehead Print [Hollow Stud],13 +3626cpr1534,"Minifig Head Dual Sided Glasses, White Pupils, Smile / Scared with Teeth Print (Egon Spengler) [Hollow Stud]",13 +3626cpr1535,"Minifig Head Dual Sided Male Brown Eyebrows, White Pupils and Chin and Cheek Dimples, Slight Smile / Scared Print (Dr. Peter Venkman) [Hollow Stud]",13 +3626cpr1536,"Minifig Head Dual Sided Brown Eyebrows, White Pupils, Smile with Teeth / Scared Print (Ray Stantz) [Hollow Stud]",13 +3626cpr1537,"Minifig Head Dark Brown Eyebrows, Crooked Smile and Laugh Lines Print [Hollow Stud]",13 +3626cpr1538,"Minifig Head Dual Sided Stern Black Eyebrows, Mouth Lines / Dark Bluish Gray Visor with Silver Squares, Open Smile with Teeth Print [Hollow Stud]",13 +3626cpr1539,"Minifig Head Alien with Red Sunken Eyes, Black Eyebrows, Scar over Left Eye, Cheek Lines and Wrinkles Print [Hollow Stud]",13 +3626cpr1540,"Minifig Head Beard Reddish Brown, Goatee, Curly Moustache, Bushy Eyebrows, Thin Smile Print [Hollow Stud]",13 +3626cpr1541,"Minifig Head Alien with Orange Eyes with White Pupils, Black Eyebrows, Open Smile with Pointed Teeth Print [Hollow Stud]",13 +3626cpr1542,"Minifig Head Moustache Black Curly, Bushy Eyebrows, Round Mouth Print [Hollow Stud]",13 +3626cpr1543,"Minifig Head Dual Sided Alien with Lower Fangs, Eyelashes, Single Orange Eye Open / Eye Half Closed with Blue Eye Shadow Print [Hollow Stud]",13 +3626cpr1544,"Minifig Head Female Glasses with Gray Frames and White Lenses, Eyelashes, Pale Brown Lips Print [Hollow Stud]",13 +3626cpr1545,"Minifig Head Beard Stubble, Dark Tan Eyebrows, Crow's Feet, Lopsided Smile Print [Hollow Stud]",13 +3626cpr1546,"Minifig Head Black Eyebrows, White Pupils, Crooked Open Smile with Teeth Print [Hollow Stud]",13 +3626cpr1547,"Minifig Head Male Stern Black Eyebrows, Crow's Feet, Cheek Lines, Chin Dimple Print [Hollow Stud]",13 +3626cpr1548,"Minifig Head Female with Black Eyebrows, Eyelashes, Angry Open Mouth with Clenched Teeth, Red Lips Print [Hollow Stud]",13 +3626cpr1549,"Minifig Head Female Glasses Star Shaped, Medium Lavender Lips, Open Lopsided Smile with Teeth Print [Hollow Stud]",13 +3626cpr1550,"Minifig Head Black Eyebrows, Raised Left Eyebrow, White Pupils, Crooked Open Smile with Teeth Print [Hollow Stud]",13 +3626cpr1551,"Minifig Head Female Brown Eyebrows, Black Eyelashes, Freckles and Pink Lips Print (Unicorn Girl) [Hollow Stud]",13 +3626cpr1552,"Minifig Head Black Eyebrows, Black Eye Shadow, Chin Dimple Print [Hollow Stud]",13 +3626cpr1553,"Minifig Head Dual Sided Orange Visor, Black Eyebrows, Determined / Angry Print (SW Clone Pilot) [Hollow Stud]",13 +3626cpr1556,"Minifig Head Black Eyebrows, White Pupils, Cheek Lines, Frown Print [Hollow Stud]",13 +3626cpr1557,"Minifig Head Beard with Messy Hair, Moustache Dark Orange, Gold Teeth, Eyepatch Print [Hollow Stud]",13 +3626cpr1558,"Minifig Head Beard Brown Stubble, Eyepatch, Open Grin, Missing Teeth Print [Hollow Stud]",13 +3626cpr1559,"Minifig Head Beard Gray with Gray Eyebrows, Sideburns and Stern Print [Hollow Stud]",13 +3626cpr1560,"Minifig Head Dual Sided Female with Eyepatch, Smile / Angry Mouth with Teeth Print [Hollow Stud]",13 +3626cpr1561,"Minifig Head Beard Black Stubble and Moustache, Eyepatch, Crow's Feet, Clenched Teeth Print [Hollow Stud]",13 +3626cpr1566,"Minifig Head Black Eyebrows, Red Eyes, Purple Tattoo, Open Mouth with Fangs Print [Hollow Stud]",13 +3626cpr1567,"Minifig Head Black Eyebrows, Red Eyes, Purple Tattoo, Fang Print [Hollow Stud]",13 +3626cpr1568,"Minifig Head Black Eyebrows, Red Eyes, Purple and White Tattoo Print [Hollow Stud]",13 +3626cpr1569,"Minifig Head Dual Sided Female Dark Red Eyebrows, Dark Tan Lips, Smile / Bright Light Orange Mask, White Eyes, Open Mouth Print [Hollow Stud]",13 +3626cpr1570,"Minifig Head Dual Sided Alien with Robot Silver with Blue Eyes, Gray Eyebrows / Blue Visor with Headset and Eyepiece Print [Hollow Stud]",13 +3626cpr1571,"Minifig Head Dual Sided Female Black Eyebrows, Eyelashes, Brown Lips / Green and Gold Robot, Red Eyes and Eyebrows Print [Hollow Stud]",13 +3626cpr1572,"Minifig Head Black Eyebrows, Red Eyes, Purple and White Snakes Tattoo, Open Mouth with Fangs Print [Hollow Stud]",13 +3626cpr1573,"Minifig Head Black Bushy Eyebrows, Red Eyes, Moustache and Goatee, Sideburns, Wrinkles Print [Hollow Stud]",13 +3626cpr1574,"Minifig Head Black Eyebrows, Red Eyes, Purple Tattoo, Evil Smile Print [Hollow Stud]",13 +3626cpr1575,"Minifig Head Black Eyebrows, Red Eyes with Silver Pupil Right, Goatee, Purple Snake Tattoo, Open Mouth with Fangs Print [Hollow Stud]",13 +3626cpr1576,"Minifig Head Dual Sided Alien Chima Panther with Yellow Eyes, Fangs and Dark Blue Facial Lines, Neutral / Angry Print (Tormak) [Hollow Stud]",13 +3626cpr1577,MINI HEAD NO. 1577,13 +3626cpr1578,"Minifig Head Eyebrows and Scowl, White Pupils Print [Hollow Stud]",13 +3626cpr1579,"Minifig Head Male Brown Eyebrows, Black Eyes with White Pupils, Crooked Smile with Brown Dimple Print [Hollow Stud]",13 +3626cpr1580,"Minifig Head Female with Black Thin Eyebrows, Eyelashes, White Pupils and Pink Lips Smile Print [Hollow Stud]",13 +3626cpr1581,"Minifig Head Moustache Mutton Chops with Brown and Gray Sideburns, Brown and Gray Eyebrows, Pupils Print [Hollow Stud]",13 +3626cpr1583,"Minifig Head Alien Chima Tiger Female with Fangs, Stripes, Sand Blue Fur and Light Blue Eyes Print (Sibress) [Hollow Stud]",13 +3626cpr1584,"Minifig Head Alien Chima Bear with Black Nose, White Fangs, Blue Eyes with Purple Rim and Gray Tribal Markings on Reverse Print [Hollow Stud]",13 +3626cpr1585,"Minifig Head Dual Sided Alien Chima Bear with Black Nose, Yellow Eyes, Dark Brown Fur, Stern / Raised Eyebrow Print (Bulkar) [Hollow Stud]",13 +3626cpr1587,"Minifig Head Black Eyebrows, White Pupils, Cheek Lines, Circles around Eyes, Frown Print [Hollow Stud]",13 +3626cpr1588,"Minifig Head Dual Sided Alien Chima Mummy with Wrapping and Light Blue Eyes, Fangs / No Fangs Print [Hollow Stud]",13 +3626cpr1589,"Minifig Head Alien Pau'an with Yellow Eyes, Gray Lines and Red Markings Print (SW Inquisitor) [Hollow Stud]",13 +3626cpr1593,"Minifig Head Dual Sided Dark Tan Eyebrows and Large Sideburns, Determined / Sad Print (SW Agent Kallus) [Hollow Stud]",13 +3626cpr1594,Minifig Head Alien with Black Goggles and Breathing Mask Print (SW AT-DP Pilot) [Hollow Stud],13 +3626cpr1595,"Minifig Head Alien Chima Crocodile with Dark Green Rimmed Eyes, Teeth and Yellowish Green Lower Jaw Print [Hollow Stud]",13 +3626cpr1596,Minifig Head Space Mask with Gold Face Port Print (Space Batman) [Hollow Stud],13 +3626cpr1597,Minifig Head Dual Sided Male Mask Green with Eyeholes and Smirk / Frown Print [Hollow Stud],13 +3626cpr1598,"Minifig Head Dual Sided Moustache, Orange Eyes, Frown / Bared Teeth Print [Hollow Stud]",13 +3626cpr1599,"Minifig Head Alien Chima Bear with Black Nose, White Fangs, Blue Eyes and Gray Tribal Markings on Reverse Print (Icebite) [Hollow Stud]",13 +3626cpr1600,"Minifig Head Alien Chima Bear with Black Nose, White Fang, Blue Eyes and Gray Fur Print (Icepaw) [Hollow Stud]",13 +3626cpr1601,"Minifig Head Dual Sided Alien Chima Lion with Orange Eyes and Dark Brown Nose, Neutral / Stern Print [Hollow Stud]",13 +3626cpr1602,"Minifig Head Dual Sided Alien Chima Lion Female with Orange Eyes, Black Nose, Forelock, Crooked Smile / Bared Teeth Print [Hollow Stud]",13 +3626cpr1603,"Minifig Head Dual Sided Moustache Split, Stern Dark Bluish Gray Bushy Eyebrows, Sunken Eyes, Wrinkles / Green Eyes, Angry Print [Hollow Stud]",13 +3626cpr1604,MINI HEAD NO. 1604,13 +3626cpr1605,Minifig Head Glasses Digital with Light Brown Eyebrows and Chin Dimple Print [Hollow Stud],13 +3626cpr1606,MINI HEAD NO. 1606,13 +3626cpr1607,"Minifig Head Alien with Metal Mask, Purple Juwel, Green Eye, Pointed Teeth Print [Hollow Stud]",13 +3626cpr1608,MINI HEAD NO. 1608,13 +3626cpr1609,"Minifig Head Alien Chima Tiger with Tan Fangs, Sand Blue Face Fur and Light Blue Eyes Print (Sirox) [Hollow Stud]",13 +3626cpr1611,"Minifig Head Alien Chima Tiger with Orange Eyes, White Face and Black Stripes Print (Tazar) [Hollow Stud]",13 +3626cpr1612,"Minifig Head Alien Chima Tiger with Orange Eyes, White Face, Fangs and Black Stripes Print (Trakkar) [Hollow Stud]",13 +3626cpr1613,"Minifig Head Dual Sided Balaclava, White Headband and Cheek Lines, Smirk / Clenched Teeth Print (Batman) [Hollow Stud]",13 +3626cpr1614,"Minifig Head Dual Sided Female Black Eyebrows, Pink Lips, Eyelashes / Sunglasses with Purple Frames Print [Hollow Stud]",13 +3626cpr1615,"Minifig Head Male Black Eyebrows, Wide Eyes, Open Mouth, Teeth and Tongue, Surprised Print [Hollow Stud]",13 +3626cpr1616,"Minifig Head Dual Sided Medium Blue Goggles, Smile with Teeth / Clenched Teeth Print (Captain Cold) [Hollow Stud]",13 +3626cpr1617,"Minifig Head Dual Sided Female with Black Eyebrows, Light Orange Lips and Beauty Mark / Open Mouth Print (SW Sabine Wren) [Hollow Stud]",13 +3626cpr1618,Minifig Head Alien Chima Crocodile with Dark Green Rimmed Eyes and Metallic Silver Plates with Rivets Lower Jaw Print [Hollow Stud],13 +3626cpr1620,Minifig Head Alien Chima Vulture Female with Dark Bluish Gray Beak and Mouth and Light Blue Eyes Print (Vultrix) [Hollow Stud],13 +3626cpr1621,"Minifig Head Dual Sided Glasses with Silver Goggles, Metal Plates with Circuitry on Forehead, Smiling / Angry Print (Drillex) [Hollow Stud]",13 +3626cpr1622,"Minifig Head Dual Sided Black Eye Mask, Open Mouth / Red Scuba Mask with Orange Goggles Print (Robin) [Hollow Stud]",13 +3626cpr1623,"Minifig Head Dark Orange Eyebrows and Sideburns, Broken Tooth, Determined Grin, Pupils Print [Hollow Stud]",13 +3626cpr1625,"Minifig Head Alien with Red Eyes, Green Cheek Lines, Dark Pink Circles and Scowl Print (Brainiac) [Hollow Stud]",13 +3626cpr1626,"Minifig Head Alien with Red Eyes, Dark Bluish Gray Eyebrows, Cheek Lines Stern Expression Print (Martian Manhunter) [Hollow Stud]",13 +3626cpr1627,"Minifig Head Dual Sided Female Black Eyebrows, Eyelashes, Dark Flesh Lips, Smiling / Bared Teeth with Red Eyes Print [Hollow Stud]",13 +3626cpr1628,"Minifig Head Female with Black Arched Thin Eyebrows, Eyelashes, Dark Pink Lips, Evil Smile Print [Hollow Stud]",13 +3626cpr1629,MINI HEAD NO. 1629,13 +3626cpr1630,"Minifig Head Female Glasses with Orange Digital Sunglasses, Pink Lips, Lopsided Clenched Teeth Print [Hollow Stud]",13 +3626cpr1631,"Minifig Head Dark Orange Eyebrows, Scar over Right Eye, Scowl Print [Hollow Stud]",13 +3626cpr1632,"Minifig Head Dual Sided Brown Eyebrows, Stubble Beard, Gold Chin Strap, Serious / Clenched Teeth Print (Hawkman) [Hollow Stud]",13 +3626cpr1633,"Minifig Head Dual Sided Male Mask Dark Green with Eyeholes, Stubble Beard, Serious / Clenched Teeth Print (Green Arrow) [Hollow Stud]",13 +3626cpr1634,"Minifig Head Dual Sided Black Eyebrows, White Pupils, Open Mouth Smile / Clenched Teeth Print (Cyborg) [Hollow Stud]",13 +3626cpr1635,MINI HEAD NO. 1635,13 +3626cpr1638,"Minifig Head Beard Stubble, Black Eyebrows, Scar on Right Eyebrow, Open Mouth with Teeth Print [Hollow Stud]",13 +3626cpr1641,Minifig Head Alien with White Eyes and Dark Bluish Gray Lips Print (SW Asajj Ventress - 75087) [Hollow Stud],13 +3626cpr1642,MINI HEAD NO. 1642,13 +3626cpr1643,Minifig Head Dual Sided Open Lopsided Smile / Pinched Eyebrowns and Frown Print (Emmet) [Hollow Stud],13 +3626cpr1644,MINI HEAD NO.1644,13 +3626cpr1645,"Minifig Head Dual Sided Black Closed Eyes, Smiling with Tongue / Black Eyes, Eyebrows and Wide Closed Mouth Smile Print (Benny) [Hollow Stud]",13 +3626cpr1646,MINI HEAD NO.1646,13 +3626cpr1647,"Minifig Head Dual Sided Brown Unibrow and Cheek Lines, White Pupils, Mouth Open Smiling / Small Frown Print (President Business) [Hollow Stud]",13 +3626cpr1648,"Minifig Head Dual Sided Black Stripe on Forehead with White Eyes, Smiling / Scared Print (Batman) [Hollow Stud]",13 +3626cpr1649,"Minifig Head Dual Sided Reddish Brown Eyebrows, Stern Expression / Dark Red Goggles, Clenched Teeth Print (Hawkeye) [Hollow Stud]",13 +3626cpr1650,Minifig Head Alien Robot Blue Eyes and Mouth and Silver Plates Print [Hollow Stud],13 +3626cpr1651,"Minifig Head Male Mask with Eyeholes and Letter A on Forehead, Chin Strap, Smile Print (Captain America) [Hollow Stud]",13 +3626cpr1652,"Minifig Head Glasses with Monocle, Raised Eyebrow, Wrinkles, Clenched Teeth Print (Baron Von Strucker) [Hollow Stud]",13 +3626cpr1653,"Minifig Head Glasses with Gold, Dark Bluish Gray and Silver Goggles Print (Hydra Henchman) [Hollow Stud]",13 +3626cpr1654,"Minifig Head Dual Sided Beard Stubble, Black Eyebrows, Smirk / Clenched Teeth Angry Print (Quicksilver) [Hollow Stud]",13 +3626cpr1658,Minifig Head Alien with Red Eyes and Mouth Print [Hollow Stud],13 +3626cpr1659,MINI HEAD NO 1659,13 +3626cpr1660,"Minifig Head Dual Sided Light Brown Eyebrows and Beard, Smile / Angry Print [Hollow Stud]",13 +3626cpr1661,MINI HEAD NO 1661,13 +3626cpr1662,"Minifig Head Beard Brown Angular, Pupils, Teeth Print [Hollow Stud] ",13 +3626cpr1663,"Minifig Head Glasses with Black and Silver Sunglasses, Chin Dimple, Grim Mouth Print [Hollow Stud]",13 +3626cpr1664,"Minifig Head Glasses with Silver Sunglasses, Eyebrows and Thin Grin Print [Hollow Stud]",13 +3626cpr1665,"Minifig Head Glasses with Brown Thin Eyebrows, Smile Print [Hollow Stud]",13 +3626cpr1666,"Minifig Head Female Glasses with Silver Frames, Brown Eyebrows, Eyelashes, Pink Lips, Open Mouth Smile Print [Hollow Stud]",13 +3626cpr1667,Minifig Head with Red and Gold Spatter Print [Hollow Stud],13 +3626cpr1668,MINI HEAD NO. 1668,13 +3626cpr1669,MINI HEAD NO 1669,13 +3626cpr1670,MINI HEAD NO 1670,13 +3626cpr1671,MINI HEAD NO 1671,13 +3626cpr1672,"Minifig Head Alien with Purple Eyes, White Hair, Blue Spot on Forhead, Purple Veins Print (Vision) [Hollow Stud]",13 +3626cpr1673,"Minifig Head Dual Sided Female Brown Eyebrows, Eyelashes, Light Brown Lips, Smile / Angry Print [Hollow Stud]",13 +3626cpr1674,"Minifig Head Dual Sided Alien Gold, Gray and Trans Light Blue Face Print (Ultron MK1) [Hollow Stud]",13 +3626cpr1675,MINI HEAD NO. 1675,13 +3626cpr1676,MINI HEAD NO. 1676,13 +3626cpr1677,MINI HEAD NO. 1677,13 +3626cpr1678,MINI HEAD NO. 1678,13 +3626cpr1679,MINI HEAD NO. 1679,13 +3626cpr1680,MINI HEAD NO. 1680,13 +3626cpr1681,MINI HEAD NO. 1681,13 +3626cpr1682,MINI HEAD NO. 1682,13 +3626cpr1684,MINI HEAD NO. 1684,13 +3626cpr1685,MINI HEAD NO. 1685,13 +3626cpr1686,MINI HEAD NO. 1686,13 +3626cpr1687,MINI HEAD NO. 1687,13 +3626cpr1688,Minifig Head with Hollow Stud - Dark Purple Flame Markings above Scowling Black Eyebrows Print,13 +3626cpr1690,MINI HEAD NO. 1690,13 +3626cpr1691,MINI HEAD NO. 1691,13 +3626cpr1692,MINI HEAD NO. 1692,13 +3626cpr1693,MINI HEAD NO. 1693,13 +3626cpr1694,MINI HEAD NO. 1694,13 +3626cpr1698,Minifig Head with Hollow Stud - Dual Sided Female - Dark Orange Eyebrows and Flesh Lips - Side A Determined Closed Mouth / Side B Worried Open Mouth Print - Recessed Solid Stud,13 +3626cpr1699,MINI HEAD NO.1699,13 +3626cpr1700,MINI HEAD NO.1700,13 +3626cpr1702,MINI HEAD NO. 1702,13 +3626cpr1703,MINI HEAD NO. 1703,13 +3626cpr1704,MINI HEAD NO. 1704,13 +3626cpr1706,MINI HEAD NO. 1706,13 +3626cpr1708,MINIHEAD NO.1708,13 +3626cpr1709,"Minifig Head with Dark Brown Furrowed Eyebrows, White Pupils, Straight Line Mouth (Frown) and Curved Chin Line [Hollow Stud]",13 +3626cpr1710,MINI HEAD NO 1710,13 +3626cpr1711,MINI HEAD NO. 1711,13 +3626cpr1712,MINI HEAD NO.1712,13 +3626cpr1718,MINI HEAD NO. 1718,13 +3626cpr1719,Minifig Head Dual Sided Goatee - Bags under Eyes - Side A High Eyebrows and Closed Mouth - Side B Lower Eyebrows and Open Mouth with Teeth [Hollow Stud],13 +3626cpr1720,MINI HEAD NO 1720,13 +3626cpr1721,MINI HEAD NO 1721,13 +3626cpr1722,MINI HEAD NO. 1722,13 +3626cpr1723,MINI HEAD NO 1723,13 +3626cpr1724,MINI HEAD NO 1724,13 +3626cpr1725,MINI HEAD NO. 1725,13 +3626cpr1726,MINI HEAD NO. 1726,13 +3626cpr1727,MINI HEAD NO. 1727,13 +3626cpr1728,MINI HEAD NO. 1728,13 +3626cpr1729,MINI HEAD NO. 1729,13 +3626cpr1730,MINI HEAD NO. 1730,13 +3626cpr1731,MINI HEAD NO. 1731,13 +3626cpr1732,MINI HEAD NO. 1732,13 +3626cpr1733,MINI HEAD NO. 1733,13 +3626cpr1734,MINI HEAD NO. 1734,13 +3626cpr1735,MINI HEAD NO. 1735,13 +3626cpr1736,MINI HEAD NO. 1736,13 +3626cpr1737,MINI HEAD NO. 1737,13 +3626cpr1738,MINI HEAD NO. 1738,13 +3626cpr1739,MINI HEAD NR.1739,13 +3626cpr1741,MINI HEAD NO.1741,13 +3626cpr1742,MINI HEAD NO.1742,13 +3626cpr1743,"Minifig Head Side 1 Alien Fangs, Yellow Eyes, Mouth Open (Vampire) / Side 2 Balaclava, Light Flesh Face with Thick Black Eyebrows (1 raised) print [Hollow Stud]",13 +3626cpr1744,MINI HEAD NO. 1744,13 +3626cpr1745,MINI HEAD NO. 1745,13 +3626cpr1746,MINI HEAD NO. 1746,13 +3626cpr1748,MINI HEAD NO.1748,13 +3626cpr1749,MINI HEAD NO.1749,13 +3626cpr1750,MINI HEAD NO.1750,13 +3626cpr1751,MINI HEAD NO.1751,13 +3626cpr1752,MINI HEAD NO 1752,13 +3626cpr1753,MINI HEAD NO. 1753,13 +3626cpr1754,MINI HEAD NO. 1754,13 +3626cpr1755,MINI HEAD NO. 1755,13 +3626cpr1756,MINI HEAD NO. 1756,13 +3626cpr1757,MINI HEAD NO. 1757,13 +3626cpr1758,MINI HEAD NO. 1758,13 +3626cpr1759,MINI HEAD NO. 1759,13 +3626cpr1760,"Minifig Head Dual Sided Black Eyebrows, Pupils, Brown Chin Dimple / Mouth Open Scared, Brown Crow's Feet Print [Hollow Stud]",13 +3626cpr1761,MINI HEAD NO. 1761,13 +3626cpr1762,MINI HEAD NO. 1762,13 +3626cpr1763,MINI HEAD NO. 1763,13 +3626cpr1765,MINI HEAD NO. 1765,13 +3626cpr1766,Minifig Head Dual Sided Chin and Cheek Lines - Side A Calm Brown Eyebrows and Closed Mouth - Side B Lowered Eyebrows and Open Mouth with Clenched Teeth print - [Hollow Stud],13 +3626cpr1767,"Minifig Head Dual Sided Black Eyebrows, Cheek Lines, Chin Dimple, Determined / Bared Teeth with Red Eyes Print (Superman) [Hollow Stud]",13 +3626cpr1769,"Minifig Head Dual Sided Eyebrows, Crow's Feet, Open Mouth Smile / Queasy Face with Sweat Drop Print [Hollow Stud]",13 +3626cpr1771,MINI HEAD NO. 1771,13 +3626cpr1772,MINI HEAD NO. 1772,13 +3626cpr1773,"Minifig Head Dark Gray Bushy Eyebrows, White Pupils and Wrinkles Print (The Doctor) [Hollow Stud]",13 +3626cpr1774,MINI HEAD NO. 1774,13 +3626cpr1775,MINI HEAD NO. 1775,13 +3626cpr1776,MINI HEAD NO. 1776,13 +3626cpr1777,MINI HEAD NO. 1777,13 +3626cpr1778,MINI HEAD NO 1778,13 +3626cpr1779,MINI HEAD NO 1779,13 +3626cpr1780,MINI HEAD NO. 1780,13 +3626cpr1781,"Minifig Head Dual Sided Dark Orange Eyebrows and Goatee, Freckles, Scars, Determined / Smile with Teeth, Eyes Closed Print [Hollow Stud]",13 +3626cpr1782,"Minifig Head Dual Sided Black Thick Eyebrows, White Pupils, Orange Chin Dimple, Thin Line Smile / Open Mouth Angry print [ Hollow Stud ]",13 +3626cpr1783,"Minifig Head Dual Sided Dark Tan Eyebrows, Cheek Lines, Smile with Right Eye Closed / Smile with Teeth Print [Hollow Stud]",13 +3626cpr1784,MINI HEAD NO. 1784,13 +3626cpr1785,"Minifig Head Dual Sided Alien Robot Yellow Eyes, Mask with Metal Bolts, Closed Mouth / Open Mouth Print [Hollow Stud]",13 +3626cpr1786,MINI HEAD NO. 1786,13 +3626cpr1790,MINI HEAD NO. 1790,13 +3626cpr1792,MINI HEAD NO 1792,13 +3626cpr1793,MINI HEAD NO 1793,13 +3626cpr1794,MINI HEAD NO 1794,13 +3626cpr1795,Minifig Head - Jestro [70316] [Hollow Stud],13 +3626cpr1796,MINI HEAD NO.1796,13 +3626cpr1797,MINI HEAD "NO.1797",13 +3626cpr1798,MINI HEAD NO.1798,13 +3626cpr1799,MINI HEAD NO.1799,13 +3626cpr1801,MINI HEAD NO 1801,13 +3626cpr1802,MINI HEAD NO 1802,13 +3626cpr1803,MINI HEAD NO 1803,13 +3626cpr1805,MINI HEAD NO 1805,13 +3626cpr1806,"Minifig Head Dual Sided Female with Black Eyebrows, Pink Lips, Smile / Concern with Raised Right Eyebrow Print [Hollow Stud]",13 +3626cpr1807,MINI HEAD NO 1807,13 +3626cpr1808,MINI HEAD NO 1808,13 +3626cpr1809,MINI HEAD NO 1809,13 +3626cpr1810,MINI HEAD NO 1810,13 +3626cpr1811,"Minifig Head Dual Sided Dark Tan Eyebrows, White Pupils, Cheek Lines with Open Mouth Smile / Determined print [Hollow Stud]",13 +3626cpr1814,"Minifig, Head Dual Sided Female Gray Eyebrows, Eyes, Lips with Sad / Open Mouth Angry with Lines print (Weeping Angel) [Hollow Stud]",13 +3626cpr1815,MINI HEAD NO 1815,13 +3626cpr1816,MINI HEAD NO 1816,13 +3626cpr1817,"Minifig Head Dual Sided Balaclava, Orange Face, Dark Red Eyebrows and Cheek Lines, Determined / Raised Eyebrow print - Stud Recessed",13 +3626cpr1818,"Minifig Head Alien with Black Thin Eyebrows, Yellow Eyes, Dark Red Spots, Fangs Print [Hollow Stud]",13 +3626cpr1819,Minifig Head Alien Large Yellow Eye with Red Veins and Orange Iris Print (Sparkks) [Hollow Stud],13 +3626cpr1820,MINI HEAD NO.1820,13 +3626cpr1822,MINI HEAD NO.1822,13 +3626cpr1825,MINI HEAD NO.1825,13 +3626cpr1826,MINI HEAD NO.1826,13 +3626cpr1827,"Minifig, Head Female Dark Orange Eyebrows, Round Cheek Lines and Red Lips Print - Stud Recessed",13 +3626cpr1828,MINI HEAD "NO.1828",13 +3626cpr1829,"Minifig, Head Female Black Eye Mask, Beauty Mark, Red Lips with Smirk Print - Stud Recessed",13 +3626cpr1830,MINI HEAD NO.1830,13 +3626cpr1831,MINIHEAD NO. 1831,13 +3626cpr1832,"Minifig Head Black Eyebrows Straight, White Pupils, Cheek and Jaw Lines, Black Straight Line Mouth (Frown) [Hollow Stud]",13 +3626cpr1833,MINI HEAD NO.1833,13 +3626cpr1834,MINI HEAD NO.1834,13 +3626cpr1835,MINI HEAD NO.1835,13 +3626cpr1836,MINI HEAD NO.1836,13 +3626cpr1837,MINI HEAD NO.1837,13 +3626cpr1838,MINI HEAD NO.1838,13 +3626cpr1839,"Minifig Head Black Eyebrows, White Pupils, Black Bushy Moustache print [Hollow Stud]",13 +3626cpr1840,Minifig Head with Medium Azure Zigzag Line Print [Hollow Stud],13 +3626cpr1841,"Minifig Head Black Eyebrows and Full Black Beard with Stubble, Smile, White Pupils print [Hollow Stud]",13 +3626cpr1842,MINI HEAD NO.1842,13 +3626cpr1849,MINI HEAD NO.1849,13 +3626cpr1855,MINI HEAD NO. 1855,13 +3626cpr1856,MINI HEAD NO. 1856,13 +3626cpr1858,MINI HEAD NO. 1858,13 +3626cpr1860,MINI HEAD NO. 1860,13 +3626cpr1861,MINI HEAD "NO. 1861",13 +3626cpr1862,MINI HEAD NO.1862,13 +3626cpr1865,MINI HEAD NO. 1865,13 +3626cpr1869,"Minifig Head, Dual Sided Scuba Goggles and Letter A on Forehead print",13 +3626cpr1870,MINI HEAD NO.1870,13 +3626cpr1872,MINI HEAD NO.1872,13 +3626cpr1873,MINI HEAD NO. 1873,13 +3626cpr1874,Minifig Head with Hollow Stud - Dual Sided Female - Gold Tiara and Red Lips - Side A with Lopsided Smile / Side B with Open Mouth and Clenched Teeth Print - Recessed Solid Stud,13 +3626cpr1875,"Minifig Head Female, Mask with White Eyes over Light Flesh Face, Red Lips, Clenched Teeth",13 +3626cpr1876,"Minifig Head Female Both Sides - Dark Tan Eyebrows, Flesh Lips and Cheek Lines / Side A Raised Cheek / Side B Eyebrow Raised (Princess Leia) [Hollow Stud]",13 +3626cpr1879,"Minifig, Head Female Balaclava with Light Aqua Face Hole, Medium Lavender Eye Shadow, Pointed Eyebrows, Red Lips print (Maleficent) - [Hollow Stud]",13 +3626cpr1880,"Minifig Head Black Eyebrows, Raised Right Eyebrow, Crooked Open Smile print (Aladdin) - [Hollow Stud]",13 +3626cpr1881,"Minifig Head Alien Black Curved Eyebrows, Right Raised Eyebrow, Narrow Goatee with Curl, Wide Mouth Smile with Teeth print (Genie) - [Hollow Stud]",13 +3626cpr1882,"Minifig Head with Dark Orange Raised Eyebrows, Open Mouth with Teeth and Tongue (Peter Pan Smile) [Hollow Stud]",13 +3626cpr1883,"Minifig Head with Black Arched Bushy Eyebrows, Thin Moustache, Wide Smile with Teeth (Captain Hook Smirk), Thin Curved Line for Jaw [Hollow Stud]",13 +3626cpr1884,"Minifig Head Female with Brown Eyebrows, Black Eyelashes, Red Lips, Open Mouth Smile (Ariel) print [Hollow Stud]",13 +3626cpr1885,"Minifig, Head with Black Raised Eyebrows, Gray and Blue Eye Shadow, Eyelashes, Cheek and Chin Lines, Black Dot (Ursula Beauty Mark/Mole)near Red Lips, Open Mouth Smile print [Hollow Stud]",13 +3626cpr1886,"Minifig Head Female with Red Lips, Open Mouth Smile, Dark Tan Eyebrows, Eyelashes print (Alice) [Hollow Stud]",13 +3626cpr1887,"Minifig Head Face Hole in Balaclava, Dark Brown Curved Eyebrows, Chin Dimple, Open Mouth Smile print - Buzz Lightyear [Hollow Stud]",13 +3626cpr1888,"Minifig Head with Furrowed Brow Lines, Black Mr. Incredible Mask with Eyeholes and Thin Smile print [Hollow Stud]",13 +3626cpr1889,"Minifig Head with Black Syndrome Mask over Blue Eyes, Freckles, Wicked Grin with Teeth, Small Chin Line [Hollow Stud]",13 +3626cpr1890,MINI HEAD NO. 1890,13 +3626cpr1891,MINI HEAD NO.1891,13 +3626cpr1892,"Minifig Head Alien Black Thick Eyebrows, Yellow Eyes and Wide Grin with Teeth and Fangs print - Hollow Stud",13 +3626cpr1893,Mini Head No. 1893,13 +3626cpr1895,Minifig Head Alien - Black Single Curved Line Eyebrows - Bright Light Yellow Eyes - Angry Open Mouth with Teeth print [Hollow Stud],13 +3626cpr1896,MINI HEAD NO.1896,13 +3626cpr1898,Minifig Head Pumpkin Jack O' Lantern Open Semicircular Eyes with Vertical Lines on Back print - Hollow Stud,13 +3626cpr1899,Minifig Head Alien with Spider-Man Black Web and Wink print - Hollow Stud,13 +3626cpr1900,Minifig Head - Mask with White Eye Holes and Letter A on Forehead - Grin with Teeth print (Captain America) - [Hollow Stud],13 +3626cpr1901,MINI HEAD NO. 1901,13 +3626cpr1902,Minifig Head with Hollow Stud - Black Pointed Mask with Eye Holes and Open Mouth Crooked Smile (Robin Hood) Print - Recessed Solid Stud,13 +3626cpr1903,MINI HEAD NO.1903,13 +3626cpr1905,"Minifig Head with Hollow Stud - Dual Sided Brown Eyebrows, Cheek Lines, Chin Dimple - Side A with Crooked Smile - Side B with Open Mouth Grimace Print - Recessed Solid Stud",13 +3626cpr1906,"MINI HEAD, NO. 1906",13 +3626cpr1907,MINI HEAD NO.1907,13 +3626cpr1908,MINI HEAD NO.1908,13 +3626cpr1915,Minifig Head with Hollow Stud - Dark Orange Eyebrows - Black Eyes - Blue Wrinkles / Facial Lines - Open Mouth Smile with Teeth and Tongue print (Mr. Freeze) - (also known as Recessed Solid Stud),13 +3626cpr1916,MINI HEAD NO. 1916,13 +3626cpr1917,"Head Black Eyebrows, Goatee, White Pupils, Laugh Lines, Open Smile with Teeth Pattern (Jérôme (Jerome) Boateng) - Stud Recessed",13 +3626cpr1918,MINI HEAD NO. 1918,13 +3626cpr1919,MINI HEAD NO. 1919,13 +3626cpr1920,"Head Black Eyebrows, Chin and Moustache Stubble, White Pupils, Open Smile Pattern (Mesut Özil) - Stud Recessed",13 +3626cpr1921,"Head Dark Tan Eyebrows, White Pupils, Chin Dimple, Cheek Lines, Open Smile Pattern (Thomas Müller) - Stud Recessed",13 +3626cpr1922,"Head Dark Tan Eyebrows, White Pupils, Forehead and Cheek Lines, Chin Dimple Pattern (Bastian Schweinsteiger) - Stud Recessed",13 +3626cpr1923,"Head Dark Tan Eyebrows, White Pupils, Eye Bags, Chin Dimple and Cheek Lines Pattern (Toni Kroos) - Stud Recessed",13 +3626cpr1924,"Head Black Beard and Stubble, White Pupils, Small Open Smile Pattern (Sami Khedira) - Stud Recessed",13 +3626cpr1925,"Head Dark Tan Eyebrows, Beard Stubble, White Pupils, Chin Dimple, Open Smile Pattern (André Schürrle) - Stud Recessed",13 +3626cpr1926,"Head Dark Tan Eyebrows, Stubble, Chin Dimple, Cheek Lines, Open Smile Pattern (Marco Reus) - Stud Recessed",13 +3626cpr1927,"Head Reddish Brown Eyebrows, Stubble, White Pupils, Chin Dimple, Open Smile Pattern (Christoph Kramer) - Stud Recessed",13 +3626cpr1928,"Head Reddish Brown Eyebrows, Chin and Moustache Stubble, White Pupils Pattern (Mario Götze) - Stud Recessed",13 +3626cpr1929,"Head Dark Tan Eyebrows, Chin Stubble, White Pupils, Cheek Lines, Open Smile Pattern (Max Kruse) - Stud Recessed",13 +3626cpr1930,MINI HEAD NO. 1930,13 +3626cpr1931,"Head Black Eyebrows Bushy, White Pupils, Crow's Feet, Cheek Lines Pattern (Joachim Löw) - Stud Recessed",13 +3626cpr1934,MINI HEAD NO. 1934,13 +3626cpr1935,MINI HEAD NO. 1935,13 +3626cpr1941,MINI HEAD NO. 1941,13 +3626cpr1942,MINI HEAD NO. 1942,13 +3626cpr1943,MINI HEAD NO. 1943,13 +3626cpr1944,MINI HEAD NO. 1944,13 +3626cpr1945,MINI HEAD NO. 1945,13 +3626cpr1951,MINI HEAD NO. 1951,13 +3626cpr1952,MINI HEAD NO. 1952,13 +3626cpr1954,MINI HEAD NO. 1954,13 +3626cpr1956,MINI HEAD NO. 1956,13 +3626cpr1957,MINI HEAD NO. 1957,13 +3626cpr1958,MINI HEAD NO. 1958,13 +3626cpr1960,MINI HEAD NO. 1960,13 +3626cpr1961,MINI HEAD NO. 1961,13 +3626cpr1962,MINI HEAD NO. 1962,13 +3626cpr1963,MINI HEAD NO. 1963,13 +3626cpr1964,MINI HEAD NO. 1964,13 +3626cpr1965,MINI HEAD NO. 1965,13 +3626cpr1966,MINI HEAD NO. 1966,13 +3626cpr1967,MINI HEAD NO. 1967,13 +3626cpr1968,MINI HEAD NO. 1968,13 +3626cpr1969,MINI HEAD NO. 1969,13 +3626cpr1976,MINI HEAD NO. 1976,13 +3626cpr1977,MINI HEAD NO. 1977,13 +3626cpr1979,MINI HEAD NO. 1979,13 +3626cpr1981,MINI HEAD NO. 1981,13 +3626cpr1982,"MINI HEAD, NO. 1982",13 +3626cpr1983,"MINI HEAD, NO. 1983",13 +3626cpr1984,"MINI HEAD, NO. 1984",13 +3626cpr1985,MINI HEAD NO. 1985,13 +3626cpr1986,MINI HEAD NO. 1986,13 +3626cpr1987,MINI HEAD NO. 1987,13 +3626cpr1988,MINI HEAD NO. 1988,13 +3626cpr1989,MINI HEAD NO. 1989,13 +3626cpr1990,MINI HEAD NO. 1990,13 +3626cpr1991,"MINI HEAD, NO. 1991",13 +3626cpr1995,Minifig Head Dual Sided Nightwing Mask with Grin / Bared Teeth Angry Print [Hollow Stud],13 +3626cpr1997,MINI HEAD NO. 1997,13 +3626cpr1998,MINI HEAD NO. 1998,13 +3626cpr1999,"MINI HEAD, NO. 1999",13 +3626cpr2000,Minifig Head Zombie Red Eyes Missing Teeth Grey Blotchy Skin (Ghostbusters Taxi Driver) [Hollow Stud],13 +3626cpr2001,"Minifig Head Dual Sided White Pupils, Confused / Slimed with Tongue Print (Ghostbusters Peter Venkman) [Hollow Stud]",13 +3626cpr2002,Minifig Head Dual Sided Glasses / Possessed Print (Ghostbusters Louis) [Hollow Stud],13 +3626cpr2003,Minifig Head Dual Sided Red Glasses Pink Lipstick / Scared Print (Ghostbusters Janine) [Hollow Stud],13 +3626cpr2004,Minifig Head Dual Sided Purple Eyeliner Red Lipstick / Possessed Print (Ghostbusters Dana) [Hollow Stud],13 +3626cpr2005,Minifig Head Glasses Chinstrap Print (Ghostbusters Louis) [Hollow Stud],13 +3626cpr2006,Minifig Head Dual Sided Old Lady / Scary Ghost Lady Print (Ghostbusters Library Ghost) [Hollow Stud],13 +3626cpr2007,"Head Raised Black Eyebrows, White Pupils, Lopsided Smile with Black Tongue Out Pattern - Stud Recessed",13 +3626cpr2008,"Head Dual Sided Female, Dark Tan Lips, White Sweat Beads, Teeth Clenched / Lopsided Open Smile Pattern",13 +3626cpr2009,"Head Black Eyebrows, Raised Right Eyebrow, Dark Bluish Gray Eye Circles, Downturned Mouth with Fang Pattern",13 +3626cpr2010,"MINI HEAD, NO. 2010",13 +3626cpr2011,Minifig Head - Beard Black Full with Side Burns - White Pupils - Open Mouth Grimace print - [Hollow Stud],13 +3626cpr2013,"MINI HEAD, NO. 2013",13 +3626cpr2014,"MINI HEAD, NO. 2014",13 +3626cpr2015,"MINI HEAD, NO. 2015",13 +3626cpr2017,"Head Male Black Eyebrows, White Pupils, Black Goatee and Dark Orange Cheek Lines Pattern",13 +3626cpr2018,"Head Female Jagged Dark Azure Eyebrows, White at Sides of Eyes, Silver Lips Pattern",13 +3626cpr2019,Minifig Head - Both Sides Black Eyebrows and Thin Line Mouth - Cheek and Chin Lines - Left Eyebrow Raised print - Side B Black Glasses and Headset with Microphone added - [Hollow Stud],13 +3626cpr2020,"Head Black Eyebrows, White Pupils, Black and Silver Headset Pattern - Stud Recessed",13 +3626cpr2021,"MINI HEAD, NO. 2021",13 +3626cpr2022,"MINI HEAD, NO. 2022",13 +3626cpr2023,"Head Bright Green and Black Sunglasses, Lopsided Open Smile Pattern - Stud Recessed",13 +3626cpr2024,"Head Dual Sided Dark Tan Eyebrows and Stubble Beard, Open Smile / Raised Left Eyebrow, Lost Pattern",13 +3626cpr2025,"Head Beard Reddish Brown, Bushy Eyebrows, Sideburns, White Pupils, Lopsided Smile Pattern - Stud Recessed",13 +3626cpr2026,"Head Female Black Eyebrow, Dark Azure Lips, Dark Azure and Silver Cyborg Eyepiece Pattern",13 +3626cpr2027,"Head Raised Black Eyebrows, White Pupils, Lopsided Smile with Red Tongue Out Pattern",13 +3626cpr2028,"Head Dark Tan Eyebrows, White Pupils, Open Smile with Teeth Pattern - Stud Recessed",13 +3626cpr2029,"Head Beard Black Stubble Long, Eyepatch, Crooked Open Mouth with 2 Teeth Pattern - Stud Recessed",13 +3626cpr2030,"Head Female Raised Dark Orange Eyebrows, White Pupils, Dark Orange Lips, Lopsided Open Smile Pattern - Stud Recessed",13 +3626cpr2031,Head Dual Sided Female Silver Goggles with Medium Azure Lenses / Dark Tan Eyebrows and Wink Pattern,13 +3626cpr2032,"Head Black Eyebrows Thick, White Pupils, Open Smile with Teeth Pattern - Stud Recessed",13 +3626cpr2035,"MINI HEAD, NO 2035",13 +3626cpr2037,"MINI HEAD, NO. 2037",13 +3626cpr2038,MINI HEAD NO. 2038,13 +3626cpr2039,MINI HEAD NO. 2039,13 +3626cpr2040,Minifig Head Dual Sided Female - Black Eyebrows and Long Eyelashes -Side A Open Smile with Peach Lips and Dimples - Side B Eyebrow Raised and Closed Mouth with Full Peach Lips print [Hollow Stud],13 +3626cpr2044,"MINI HEAD, NO. 2044",13 +3626cpr2047,"MINI HEAD, NO. 2047",13 +3626cpr2049,"MINI HEAD, NO. 2049",13 +3626cpr2050,"MINI HEAD, NO. 2050",13 +3626cpr2052,"MINI HEAD, NO. 2052",13 +3626cpr2053,"MINI HEAD, NO. 2053",13 +3626cpr2060,"MINI HEAD, NO. 2060",13 +3626cpr2061,MINI HEAD NO. 2061,13 +3626cpr2062,MINI HEAD NO. 2062,13 +3626cpr2063,"MINI HEAD, NO. 2063",13 +3626cpr2064,"MINI HEAD, NO. 2064",13 +3626cpr2065,"MINI HEAD, NO. 2065",13 +3626cpr2066,"MINI, HEAD, NO. 2066",13 +3626cpr2067,Minifig Head with Hollow Stud - Goggles over Balaclava - Light Flesh Face with Gritted Teeth in Wide Mouth,13 +3626cpr2068,Minifig Head with Hollow Stud - Red and White Goggle Shape over Balaclava - Light Flesh Face with missing Tooth in Wide Mouth,13 +3626cpr2072,"MINI HEAD, NO. 2072",13 +3626cpr2073,"MINI HEAD, NO. 2073",13 +3626cpr2074,"MINI HEAD, NO. 2074",13 +3626cpr2075,"MINI HEAD, NO. 2075 (Wonder Woman - Mighty Micros)",13 +3626cpr2076,Minifig Head with Hollow Stud and Dual Side Print - Side A - Light Flesh Face with White and Gray Eyebrows and Thin Frowning Mouth / Side B - Black Mask with Large White Almond Shape Eyes - Magneto (Recessed Solid Stud),13 +3626cpr2077,"MINI HEAD, NO. 2077",13 +3626cpr2078,"MINI HEAD, NO. 2078",13 +3626cpr2079,Minifig Head with Hollow Stud - Left Eyebrow Raised - Open Mouth with Teeth wider on Right Side - Black Mustache and Beard Lines Print (Iron Man),13 +3626cpr2080,Minifig Head with Hollow Stud - Balaclava over Lavender Face - Gold Metal 'Wing-Shaped' Pointed Visor over Black Eye Sockets with Blue and White Eyes - Very Wide Mouth with Teeth Print - Thanos (Recessed Solid Stud),13 +3626cpr2081,Minifig Head with Hollow Stud - Black Thick Eyebrows joined at Center and Thick Sideburns - Open Mouth with Teeth Print (Wolverine) (Recessed Solid Stud),13 +3626cpr2084,"MINI HEAD, NO. 2084 (Doomsday)",13 +3626cpr2085,"MINI HEAD, NO. 2085",13 +3626cpr2086,"MINI HEAD, NO. 2086",13 +3626cpr2087,"MINI HEAD, NO. 2087",13 +3626cpr2088,"MINI HEAD, NO. 2088",13 +3626cpr2088a,"Head Black Eyebrows, White Pupils, Cheek Scuff, Open Mouth Smile Pattern - Stud Recessed",13 +3626cpr2089,"MINI HEAD, NO. 2089",13 +3626cpr2090,"MINI HEAD, NO. 2090",13 +3626cpr2091,"Mini Head, No. 2091",13 +3626cpr2092,"Mini Head, No. 2092",13 +3626cpr2095,"MINI HEAD, NO. 2095",13 +3626cpr2097,MINI HEAD NO. 2097,13 +3626cpr2098,"MINI HEAD, NO. 2098",13 +3626cpr2100,"MINI HEAD, NO. 2100",13 +3626cpr2101,"MINI HEAD, NO. 2101",13 +3626cpr2102,Minifig Head with Hollow Stud and Dual Side Print - Brown Eyebrows and Dark Tan Dimples - Side A Wide Lopsided Smile - Side B Scared Open Mouth,13 +3626cpr2106,"Mini Head, No. 2106",13 +3626cpr2107,"MINI HEAD, NO. 2107",13 +3626cpr2109,"MINI HEAD, NO. 2109",13 +3626cpr2111,"MINI HEAD, NO. 2111",13 +3626cpr2112,"MINI HEAD, NO. 2112",13 +3626cpr2113,Mini Head No. 2113,13 +3626cpr2114,"MINI HEAD, NO. 2114",13 +3626cpr2115,"MINI HEAD, NO. 2115",13 +3626cpr2116,"MINI HEAD, NO. 2116",13 +3626cpr2117,"MINI HEAD, NO. 2117",13 +3626cpr2119,MINI HEAD NO. 2119,13 +3626cpr2120,MINI HEAD NO. 2120,13 +3626cpr2122,MINI HEAD NO. 2122,13 +3626cpr2123,"MINI HEAD, NO. 2123",13 +3626cpr2124,"MINI HEAD, NO. 2124",13 +3626cpr2125,"MINI HEAD, NO. 2125",13 +3626cpr2126,"Minifig Head with Hollow Stud - Dual Side Print Black Eyebrows, Sideburns, and Chin Dimple",13 +3626cpr2127,"MINI HEAD, NO. 2127",13 +3626cpr2128,"MINI HEAD, NO. 2128",13 +3626cpr2129,"MINI HEAD, NO. 2129",13 +3626cpr2132,"MINI HEAD, NO. 2132",13 +3626cpr2133,"MINI HEAD, NO. 2133",13 +3626cpr2134,"Mini Head, No. 2134",13 +3626cpr2138,"MINI HEAD, NO. 2138",13 +3626cpr2139,"Mini Head, No. 2139",13 +3626cpr2140,"Mini Head, No. 2140",13 +3626cpr2141,"Mini Head, No. 2141",13 +3626cpr2142,"MINI HEAD, NO. 2142",13 +3626cpr2143,"MINI HEAD, NO. 2143",13 +3626cpr2144,"MINI HEAD, NO. 2144",13 +3626cpr2145,MINI HEAD NO. 2145,13 +3626cpr2146,"MINI HEAD, NO. 2146",13 +3626cpr2147,MINI HEAD NO. 2147,13 +3626cpr2149,"MINI HEAD, NO. 2149",13 +3626cpr2150,"MINI HEAD, NO. 2150",13 +3626cpr2152,Minifig Head with Hollow Stud and Dual Side Print - Male White Blind Eyes - Dark Brown Eyebrows and Beard,13 +3626cpr2153,"Minifig Head with Hollow Stud and Dual Side Alien Print - Red Eyes, Dark Blue Eyebrows and Blue Cheek Lines",13 +3626cpr2154,"MINI HEAD, NO. 2154",13 +3626cpr2155,"MINI HEAD, NO. 2155",13 +3626cpr2156,Minifig Head with Hollow Stud - Forehead and Cheek Lines - Dark Bluish Gray Eyebrows and Mustache - Gold Eyeglasses below Eyes Print - (Recessed Solid Stud),13 +3626cpr2157,"MINI HEAD, NO. 2157",13 +3626cpr2160,"MINI HEAD, NO. 2160",13 +3626cpr2162,"MINI HEAD, NO. 2162",13 +3626cpr2164,MINI HEAD NO. 2164,13 +3626cpr2165,"MINI HEAD, NO. 2165",13 +3626cpr2166,"MINI HEAD, NO. 2166",13 +3626cpr2169,"MINI HEAD, NO. 2169",13 +3626cpr2170,"MINI HEAD, NO. 2170",13 +3626cpr2171,"MINI HEAD, NO. 2171",13 +3626cpr2172,"MINI HEAD, NO. 2172",13 +3626cpr2176,"MINI HEAD, NO. 2176",13 +3626cpr2178,"MINI HEAD, NO. 2178",13 +3626cpr2179,Minifig Head with Hollow Stud and Dual Side Print - Cheek and Chin Lines and Brown Eyebrows (SW Han Solo),13 +3626cpr2180,Minifig Head with Hollow Stud and Leathery Skin Lines Dual Side Print,13 +3626cpr2182,MINI HEAD NO. 2182,13 +3626cpr2184,"MINI HEAD, NO. 2184",13 +3626cpr2187,"MINI HEAD, NO. 2187",13 +3626cpr2194,"MINI HEAD, NO. 2194",13 +3626cpr2195,"MINI HEAD, NO. 2195",13 +3626cpr2196,"MINI HEAD, NO. 2196",13 +3626cpr2197,"MINI HEAD, NO. 2197",13 +3626cpr2199,"MINI HEAD, NO. 2199",13 +3626cpr2200,"MINI HEAD, NO. 2200",13 +3626cpr2201,"MINI HEAD, NO. 2201",13 +3626cpr2202,"MINI HEAD, NO. 2202",13 +3626cpr2203,"MINI HEAD, NO. 2203",13 +3626cpr2204,"MINI HEAD, NO. 2204",13 +3626cpr2205,"MINI HEAD, NO. 2205",13 +3626cpr2206,"MINI HEAD, NO. 2206",13 +3626cpr2207,Minifig Head with Hollow Stud and Dual Side Female Print - Black Eyebrows and Medium Dark Flesh Lips,13 +3626cpr2208,"MINI HEAD, NO. 2208",13 +3626cpr2209,"MINI HEAD, NO. 2209",13 +3626cpr2210,"MINI HEAD, NO. 2210",13 +3626cpr2211,"MINI HEAD, NO. 2211",13 +3626cpr2212,"MINI HEAD, NO. 2212",13 +3626cpr2213,"MINI HEAD, NO. 2213",13 +3626cpr2214,"MINI HEAD, NO. 2214",13 +3626cpr2215,"MINI HEAD, NO. 2215",13 +3626cpr2216,"MINI HEAD, NO. 2216",13 +3626cpr2217,"MINI HEAD, NO. 2217",13 +3626cpr2222,"MINI HEAD, NO. 2222",13 +3626cpr2230,"MINI HEAD, NO. 2230",13 +3626cpr2239,"Mini Head, No. 2239",13 +3626cpr2240,"Mini Head, No. 2240 (Nebula)",13 +3626cpr2241,Minifig Head with Hollow Stud - Gamora,13 +3626cpr2242,"MINI HEAD, NO. 2242",13 +3626cpr2243,"MINI HEAD, NO. 2243",13 +3626cpr2245,"MINI HEAD, NO. 2245",13 +3626cpr2246,"MINI HEAD, NO. 2246",13 +3626cpr2247,"MINI HEAD, NO. 2247",13 +3626cpr2248,"MINI HEAD, NO. 2248",13 +3626cpr2251,"MINI HEAD, NO. 2251",13 +3626cpr2253,"MINI HEAD, NO. 2253",13 +3626cpr2254,"MINI HEAD, NO. 2254",13 +3626cpr2263,"MINI HEAD, NO. 2263",13 +3626cpr2264,"MINI HEAD, NO. 2264",13 +3626cpr2265,"MINI HEAD, NO. 2265",13 +3626cpr2266,"MINI HEAD, NO. 2266",13 +3626cpr2268,"MINI HEAD, NO. 2268",13 +3626cpr2269,"MINI HEAD, NO. 2269",13 +3626cpr2270,"MINI HEAD, NO. 2270",13 +3626cpr2272,"MINI HEAD, NO. 2272",13 +3626cpr2281,"MINI HEAD, NO. 2281",13 +3626cpr2287,"MINI HEAD, NO. 2287",13 +3626cpr2289,"MINI HEAD, NO. 2289",13 +3626cpr2290,"MINI HEAD, NO. 2290",13 +3626cpr2300,"MINI HEAD, NO. 2300",13 +3626cpr2301,"MINI HEAD, NO. 2301",13 +3626cpr2306,Minifig Head Hollow Stud with Dual Side Print - Female Balaclava over Medium Dark Flesh Face with Beauty Mark,13 +3626cpr2314,"MINI HEAD, NO. 2314",13 +3626cpr2348,"MINI HEAD, NO. 2348",13 +3626cpr2353,"MINI HEAD, NO. 2353",13 +3626cpr6141699,"Head Dual Sided Balaclava, Cheek Lines, Frown / Clenched Teeth (Batman) Pattern - Stud Recessed",13 +3626cpr6173634,Catwoman's head,27 +3626cpr6174165,Batgirl's head,13 +3626cpr6175942,Minifig Head Glasses with Black Frames and Red Lenses Print (Mr. Freeze) [Hollow Stud],13 +3626cpr9983,"Head Dual Sided Black Bushy Eyebrows, Chin Dimple, Lightning Bolt, Scowl - Open Mouth with Teeth",13 +3626cpr9984,"Head Alien with Lime Eyes, White Fangs and Dark Red Face Decorations",13 +3626cpr9985,"Head Dual Sided Scarred Right Eyebrow, Chin Dimple, Smile / Stern, Eyepatch Pattern - Stud Recessed",13 +3626cpr9986,"Head Alien Black Arched Curly Eyebrows, Moustache Fu Manchu, Clenched Teeth Pattern - Stud Recessed",13 +3626cpr9987,Minifig Head with Hollow Stud - Alien Ghost with Yellowish Green Flaming Eyebrows and Cheek Lines - Dark Purple Eyes - Dark Purple Open Mouth with Teeth Print,13 +3626cpr9988,"Minifig Head - Dark Gray Bushy Eyebrows above Sunken Eyes - Cheek, Chin, and Forehead Lines",13 +3626cpr9989,Minifig Head with Hollow Stud and Dual Side Print - Front Pirate Eyepatch and Mustache - Ponytail in Back - Recessed Solid Stud,13 +3626cpr9990,Minifig Head with Hollow Stud and Dual Side Print - SW Rebel A-wing Pilot with Brown Eyebrows and White Belt,13 +3626cpr9991,"MINI HEAD, NO. 2125",13 +3626cpr9992,Minifig Head with Hollow Stud - Female with Brown Eyebrows and Medium Dark Flesh Lips - Beauty Mark on Left Side - Recessed Solid Stud,13 +3626cpr9993,Minifig Head with Hollow Stud and Dual Sided Alien with Dark Red Eyebrows and Mustache Print,13 +3626cpr9995,Minifig Head Dual Sided with Hollow Stud - Alien Female with Small Black Eyes - Side A Closed Mouth with Fangs - Side B Black Facial Lines and Red Wide Open Mouth Print - Recessed Solid Stud,13 +3626cpr9996,Batman - Crooked/Angry Mouth from LEGO Batman Movie Minifigure Head ,13 +3626cpr9997,White Arkham Joker - From LEGO Batman Movie Minifigure Head (Recessed Solid Stud) ,13 +3626cpr9998,Minifigure Head (Recessed Solid Stud) Batman,13 +3626cpr9999,Minifig Head with Hollow Stud - Blue Monocle - Gray Outer Eyes and Jaw Lines - Black Open Mouth with Sharp Light Yellow Teeth print (Penguin),13 +3626cps3,Minifig Head Male Small Black Eyebrows and Chin Dimple Print,13 +3626pr1549,"Head Beard Gray Stubble, Black Moustache and Angry Eyebrows, Lines under Eyes, Smirk Pattern - Stud Recessed ",13 +3626pr1859,Head Alien with Yellow Snake Eyes and Mouth with Fangs and Teeth Pattern - Stud Recessed,13 +3629,Minifig Cowboy Hat,27 +3629pw1,Minifig Hat Cowboy with Cavalry Logo Print,27 +3629pw2,Minifig Hat Cowboy with Silver Star Print,27 +3633,Fence 1 x 4 x 1,32 +3634,Tire 17 x 43,29 +3634b,Tyre 17 x 43 Old,29 +3639,Hinge Plate 2 x 4 with Articulated Joint - Male,18 +3640,Hinge Plate 2 x 4 with Articulated Joint - Female,18 +3640c01,Hinge Plate 2 x 4 with Articulated Joint - Complete Assembly,24 +3641,Tyre Offset Tread Small,29 +3644,Door 1 x 4 x 6,16 +3645,Baseplate 24 x 40,1 +3645p02,Baseplate 24 x 40 with Set 369 Dots Print,1 +3645p03,Baseplate 24 x 40 with Set 370 Dots Print,1 +3645p04,Baseplate 24 x 40 with Set 373 Dots Print,1 +3647,Technic Gear 8 Tooth,52 +3647stk01,Sticker for Set 3647,17 +3648a,Technic Gear 24 Tooth [Old Style - Three axle holes],52 +3648b,Technic Gear 24 Tooth [New Style with Single Axle Hole],52 +3648stk01,Sticker for Set 3648 - (94735/4616399),17 +3649,Technic Gear 40 Tooth,52 +364cdb01,"Paper, Cardboard Base for Set 364, Harbor Print",17 +3650a,Technic Gear 24 Tooth Crown with Flat Teeth,52 +3650b,Technic Gear 24 Tooth Crown with Pointed Teeth,52 +3650c,Technic Gear 24 Tooth Crown with Reinforcements [New Style],52 +3651,Technic Axle and Pin Connector,12 +3652,Technic Engine Piston Square 2 x 2 - Old,25 +3658stk01,Sticker for Set 3658 - (94736/4616401),17 +3659,Brick Arch 1 x 4,37 +365cdb01,"Paper, Cardboard Base for Set 365, Wild West Print",17 +3660,"Slope Inverted 45° 2 x 2 [Ovoid Bottom Pin, Bar-sized Stud Holes]",3 +3660a,Slope Inverted 45° 2 x 2 [Round Bottom Pin],3 +3660b,"Slope Inverted 45° 2 x 2 [Ovoid Bottom Pin, Small Stud Holes]",3 +3660p01,Slope Inverted 45 2 x 2 with Computer Screen and Right Side Buttons Print,3 +3660p02,Slope 45° 2 x 2 Inverted with 4 Black Rectangles Print,3 +3660p03,Slope 45° 2 x 2 Inverted with Black/Blue Stripes Print,3 +3660pb01,Slope Inverted 45 2 x 2 with Computer Screen and Left Side Buttons Print,3 +3660pb03,Slope Inverted 45 2 x 2 with Radar and Disk Slot Print,3 +3660pb06,"Slope Inverted 45 2 x 2 with AT-ST Print, Fade Bar at Top",3 +3660pb07,"Slope, Inverted 45 2 x 2 with AT-ST Print, Fade Bar at Bottom",24 +3660pb12,Slope Inverted 45 2 x 2 with Smiling Mouth Print,3 +3660stk01,Sticker for Set 3660 - (196325),17 +3664,Brick 2 x 2 x 2 Curved Top,4 +3664pb02,"Duplo, Brick 2 x 2 x 2 Curved Top with Clock Hands 10:10 Print",4 +3664pb04,"Duplo, Brick 2 x 2 x 2 Curved Top with Eye Print on Two Sides",4 +3664pb05,"Duplo, Brick 2 x 2 x 2 Curved Top with Table Lamp Print",4 +3664pb06,"Duplo, Brick 2 x 2 x 2 Curved Top with Vase and Three Flowers Print",4 +3664pb10,"Duplo, Brick 2 x 2 x 2 Curved Top with Life Preserver Print",4 +3664pb12,"Duplo, Brick 2 x 2 x 2 Curved Top with Clock Hands 10:08 Print",4 +3664pb13,"Duplo, Brick 2 x 2 x 2 Curved Top with Eye with White on Two Sides Print",4 +3664pb14,"Duplo, Brick 2 x 2 x 2 Curved Top with Orange Circles and Dots Print",4 +3664pb20,"Duplo, Brick 2 x 2 x 2 Curved Top with Boy Face, Open Smile, Freckles, Brown Hair Print",4 +3664pb21,"Duplo, Brick 2 x 2 x 2 Curved Top with Girl Face, Red Lips, Open Smile, Freckles, Dark Orange Hair with Polka Dot Bow Print",4 +3665,Slope Inverted 45° 2 x 1,3 +3665a,Slope Inverted 45° 2 x 1 [Old Type with Small Stud Hole],3 +3665p01,Slope Inverted 45° 2 x 1 with 2 Black Rectangles (Ferry Windows) Print,3 +3665stk01,Sticker for Set 3665 - (191515),17 +3666,Plate 1 x 6,14 +3666stk01,Sticker for Set 3666 - (194025),17 +367,Baseplate 24 x 24 with Studs on Edges,1 +3673,Technic Pin without Friction Ridges Lengthwise,53 +3675,Slope 33° 3 x 3 Double Convex,3 +3676,Slope Inverted 45° 2 x 2 Double Convex,3 +3677stk01,Sticker for Set 3677 - (97811/4638848),17 +3678a,Slope 65° 2 x 2 x 2 Smooth without Bottom Tube,3 +3678ap01,Slope 65° 2 x 2 x 2 Smooth without Bottom Tube with Witch's Dress Print,3 +3678ap4h,Slope Brick 65 2 x 2 x 2 with Queen's Dress Print,3 +3678apb04,Slope 65 2 x 2 x 2 Smooth without Bottom Tube with HP McGonagall Robe Print,3 +3678apc0,Slope Brick 65 2 x 2 x 2 with Lamps and Dials Print,3 +3678b,Slope 65° 2 x 2 x 2 with Bottom Tube,3 +3678bpb006,Slope 65 2 x 2 x 2 with Bottom Tube with HP Professor Trelawney Skirt Print,3 +3678bpb012,Slope 65 2 x 2 x 2 with Bottom Tube with Gold Skull and Potions Belt and Dk Green Skirt Print,3 +3678bpb035,Slope 65 2 x 2 x 2 with Bottom Tube with Tan Apron with Pocket Print,3 +3678bpb075,"Slope 65 2 x 2 x 2 with Bottom Tube with Robe, Gold Star Pendant and Tassels Print",2 +3678bpr0001,"Slope 65 2 x 2 x 2 with Bottom Tube with Frog Spells Book, Potion, and Mended Tear Print (Witch)",3 +3678bpr0002a,Slope 65° 2 x 2 x 2 with Bottom Tube with White Apron Skirt Print,2 +3678bpr0002b,Slope 65° 2 x 2 x 2 with Bottom Tube with Kimono Print,3 +3678bpr0003,Slope 65° 2 x 2 x 2 with Bottom Tube with Layered Dress with Light Blue Skirt and Gold Belt Print,3 +3678bpr0004,Slope 65º 2 x 2 x 2 with Bottom Tube with Marauders Statue Skirt Print,2 +3678bpr0004a,Slope 65° 2 x 2 x 2 with Bottom Tube with Dark Green Skirt Panel with White Trim Print,3 +3678bpr0004b,Slope 65° 2 x 2 x 2 with Bottom Tube with Gold Panel with Blue Jewel and Gold Fringe Print [col05-14],3 +3678bpr0005,Slope 65 2 x 2 x 2 with Bottom Tube with Gold and Medium Blue Trimmed Skirt Print,3 +3678bpr0006,"Slope 65 2 x 2 x 2 with Bottom Tube with Rope Belt, Tatters, and Stitches Print",3 +3678bpr0008,Slope 65 2 x 2 x 2 with Bottom Tube with Red Inset Skirt Print,3 +3678bpr0009,Slope 65° 2 x 2 x 2 with Bottom Tube with Gold Inset Skirt with Dark Red Trim and Background Print,3 +3678bpr0010a,Slope 65° 2 x 2 x 2 with Bottom Tube with Black and Dark Green Robe Print,3 +3678bpr0010b,Slope 65° 2 x 2 x 2 with Bottom Tube with Bellatrix Lestrange Skirt Print,3 +3678bpr0011,Slope 65 2 x 2 x 2 with Bottom Tube with Flamenco Ruffles and Black Dots Print,3 +3678bpr0011a,Slope 65 2 x 2 x 2 with Bottom Tube with Professor McGonagall Robe Print,2 +3678bpr0012a,Slope 65° 2 x 2 x 2 with Bottom Tube with Brown Eye in White Rectangle Print (Sarge),3 +3678bpr0012b,Slope 65 2 x 2 x 2 with Bottom Tube with Black Dress Lines and Gold Celtic Knot Print,3 +3678bpr0013a,Slope 65° 2 x 2 x 2 with Bottom Tube with Gray Eyes and Crooked Smile Print,3 +3678bpr0013b,Slope 65° 2 x 2 x 2 with Bottom Tube with Wedding Dress with Silver Trim Print,3 +3678bpr0014a,Slope 65 2 x 2 x 2 with Bottom Tube with Red Eyes on White Background Print (Guido),2 +3678bpr0014b,Slope 65 2 x 2 x 2 with Bottom Tube with Alien Robe with Magenta Print,3 +3678bpr0015,"Slope 65° 2 x 2 x 2 with Bottom Tube with Black Dress Lines, Brown Hemline and Belt Print",2 +3678bpr0016a,Slope 65 2 x 2 x 2 with Bottom Tube with Green Eye Right Print (Mack),3 +3678bpr0016b,Slope 65° 2 x 2 x 2 with Bottom Tube with Evening Dress with Black and Silver Spots Print,3 +3678bpr0017,Slope 65 2 x 2 x 2 with Bottom Tube with Layered Dress with Purple Skirt and Sash Print,3 +3678bpr0018,Slope 65° 2 x 2 x 2 with Bottom Tube with Three Black Flowers Kimono Print,2 +3678bpr0020,Slope 65 2 x 2 x 2 with Bottom Tube with Green Eye Left Print (Mack),3 +3678bpr0021,Slope 65 2 x 2 x 2 with Bottom Tube with Green Eyes on White Background and Smile Print 2,3 +3678bpr0022,Slope 65° 2 x 2 x 2 with Bottom Tube with White Inset with Black and Gold Trim Dress Print,2 +3678bpr0023a,Slope 65° 2 x 2 x 2 with Bottom Tube with Green Eyes on White Background Print,2 +3678bpr0023b,Slope 65° 2 x 2 x 2 with Bottom Tube with Layered Dress with Light Blue Skirt Print,3 +3678bpr0024a,Slope 65° 2 x 2 x 2 with Bottom Tube with Light Bluish Gray Inset Skirt Print,3 +3678bpr0024b,Slope 65° 2 x 2 x 2 with Bottom Tube with Layered Dress with Frilly Trim Print ,3 +3678bpr0025,Slope 65 2 x 2 x 2 with Bottom Tube with Robe with Tassels over Blue Jeans and Tie Dyed Shirt Print,3 +3678bpr0026a,Slope 65 2 x 2 x 2 with Bottom Tube with HP Professor Sprout Skirt with Pockets Print,3 +3678bpr0026b,Slope 65° 2 x 2 x 2 with Bottom Tube with Robe with Moons and Stars and Rope Belt Print,3 +3678bpr0027a,Slope 65° 2 x 2 x 2 with Bottom Tube with Green Eyes on White Background and Smile Print 1,2 +3678bpr0027b,Slope 65° 2 x 2 x 2 with Bottom Tube with Lavender Embroidered Skirt and Belt Print,3 +3678bpr0028,Slope 65 2 x 2 x 2 with Bottom Tube with Light Gray Eyes and Angry Mouth with Teeth Print,3 +3678bpr0029,Slope 65 2 x 2 x 2 with Bottom Tube with Brown Eyes on White Background and Mouth Turned Down Print,3 +3678bpr0030,Slope 65° 2 x 2 x 2 with Bottom Tube with Layered Dress with Dark Green Skirt and Gold Belt Print,3 +3678bpr0032,Slope 65 2 x 2 x 2 with Bottom Tube with SW Neimoidian Viceroy Robe Print,3 +3678bpr0033,Slope 65° 2 x 2 x 2 with Bottom Tube with Layered Dress with Tattered Lavender Skirt Print,13 +3678bpr0034,Slope 65 2 x 2 x 2 with Bottom Tube with Torn Dress Print (Zombie Bride),2 +3678bpr0035,Slope 65° 2 x 2 x 2 with Bottom Tube with Gold and Dark Blue Robe Print,3 +3678bpr0036,Slope 65° 2 x 2 x 2 with Bottom Tube with Spotted Dress with Black Lace and Ruffles Print,3 +3678bpr0037,Slope 65° 2 x 2 x 2 with Bottom Tube with Layered Dress with Medium Blue Skirt and Gold Belt and Sash Print,3 +3678bpr0038,Slope 65° 2 x 2 x 2 with Bottom Tube with Dress with Pink Ribbon and Silver Elven Clasp Print,3 +3678bpr0039,"Slope 65° 2 x 2 x 2 with Bottom Tube with Robe with Ornate Silver Fabric, Belt and Tassels Print [10237]",3 +3678bpr0040,Slope 65° 2 x 2 x 2 with Bottom Tube with Robe with Cracks Print (Statue at Dol Guldur),3 +3678bpr0042,Slope 65° 2 x 2 x 2 with Bottom Tube with Blue Ballgown Dress Print,3 +3678bpr0044,"Slope 65 2 x 2 x 2 with Bottom Tube with Robe, Dark Red Armor and Gold Belt, Chains and Pendants Print",2 +3678bpr0045,Slope 65 2 x 2 x 2 with Bottom Tube with Gold Skeleton Hips and Ribs and Magenta and Dark Purple Swirls Print,2 +3678bpr0046,Slope 65° 2 x 2 x 2 with Bottom Tube with White Apron with Candy Canes in Pocket Skirt Print,3 +3678bpr0047,Slope 65° 2 x 2 x 2 with Bottom Tube with Layered Dress with Metallic Silver Print,3 +3678bpr0048,Slope 65° 2 x 2 x 2 with Bottom Tube with Robes with Gold Flames Trim over Red Dress with Black Skulls Print,3 +3678bpr0049,"Slope 65° 2 x 2 x 2 with Bottom Tube, Skirt with Gold Button and Dark Bluish Gray Trim Print",3 +3678bpr0050,Slope 65° 2 x 2 x 2 with Bottom Tube with Red Spider Web and 2 Silver Spiders Print,3 +3678bpr0051,Slope 65 2 x 2 x 2 with Bottom Tube with Dress with Gray and Black Fabric Lines print,3 +3678bpr0052,ROOF TILE 2X2X2/65 DEG. "NO. 52",3 +3678bpr0054,Slope 65° 2 x 2 x 2 with Bottom Tube - Robe with Dark Purple Inset and Folds print (Maleficent),3 +3678bpr0055,Slope 2 x 2 x 2 with Bottom Tube with Dark Azure and Silver Ice Queen Skirt Print,3 +3678bpr0057,"ROOF TILE 2X2X2, DEG. 65, NO. 57",2 +3678bpr0058,"ROOF TILE 2X2X2, DEG. 65, NO. 58",3 +3678bpr0060,"ROOF TILE 2X2X2, DEG. 65, NO. 60",2 +3678bpr11,Slope 65 2 x 2 x 2 with Bottom Tube with Gold Waist and Bottom Trim Skirt Print,3 +3678p01,Slope Brick 65 2 x 2 x 2 with Witch's Dress Print,3 +3678pr0056,"ROOF TILE 2X2X2, DEG. 65, NO. 56",2 +3679,Turntable 2 x 2 Plate - Top,18 +367a,Baseplate 24 x 24,1 +3680,"Turntable 2 x 2 Plate, Base",18 +3680c03,"Turntable 2 x 2 Plate, Complete Assembly with Tan Top",18 +3684,Slope 75° 2 x 2 x 3 [Hollow Studs],3 +3684b,Slope 75° 2 x 2 x 3 Smooth,3 +3684p22,Slope 75° 2 x 2 x 3 with Ferry Windows Black Print,3 +3685,Slope 75° 2 x 2 x 3 Double Convex,3 +3688,Slope 75° 2 x 2 x 2 Quadruple Convex,3 +3691,Electric Motor 4.5V Housing 4 x 4 x 3,45 +36h,Tyre Smooth Old Style - Large Hollow (Air Tire),29 +37,Minifig Knife,27 +3700,Technic Brick 1 x 2 [1 Hole],8 +3700b,Technic Brick 1 x 2 with Hole Type II,8 +3701,Technic Brick 1 x 4 [3 Holes],8 +3702,Technic Brick 1 x 8 [7 Holes],8 +3703,Technic Brick 1 x 16 [15 Holes],8 +3704,Technic Axle 2,46 +3705,Technic Axle 4,46 +3705b,Technic Axle 4 Threaded,46 +3706,Technic Axle 6,46 +3707,Technic Axle 8,46 +3708,Technic Axle 12,46 +3709,Technic Plate 2 x 4 [3 Holes],9 +3709a,Technic Brick 2 x 4 with Top/Side/End Holes and Hollow Studs,8 +3709c,Technic Brick 2 x 4 with Top/Side/End Holes and Solid Studs,8 +3710,Plate 1 x 4,14 +3711a,Technic Chain Link,26 +3711b,"Technic Chain Link, Reinforced",26 +3712,Technic Universal Joint End (part of 3712c01),24 +3713,Technic Bush,54 +37201,VISOR Ironman no 6,27 +3730,"Plate Special 2 x 2 with Towball Socket, Short, 4 Slots",9 +3731,Plate 2 x 2 with Towball,9 +3736,"Technic, Steering Pulley Large",25 +3737,Technic Axle 10,46 +3737b,Technic Axle 10 Threaded,46 +3738,Technic Plate 2 x 8 [7 Holes],9 +3739,Wheel 24 x 43 Technic,29 +374,Baseplate 16 x 32 Rounded Corners,1 +3740,Tyre 24 x 43 Technic,29 +3741,Flower Stem,28 +3741c01,~Plant Flower Stem with Three Flowers (Obsolete),24 +3742,Flower - Small,28 +3742c01,"Plant Flower Small, Sprue of Four",28 +3743,Technic Gear Rack 1 x 4,52 +3747a,Slope Inverted 33° 3 x 2 [No Connections between Studs],3 +3747b,Slope Inverted 33° 3 x 2 [Connections between Studs],3 +3749,Technic Axle Pin without Friction Ridges Lengthwise,53 +374p01,Baseplate 16 x 32 Rounded Corners and Dots Print [350 / 540-3],1 +374p02,Baseplate 16 x 32 with Rounded Corners and Dots Print [352],1 +374p03,Baseplate 16 x 32 with Rounded Corners and Set 356 Dots Print,1 +374p04,Baseplate 16 x 32 with Rounded Corners and Set 540 Dots Print,1 +3754,Brick 1 x 6 x 5,11 +3754pb02,Brick 1 x 6 x 5 with Stone and Slytherin Snake Print (4735),2 +3754pb03,Brick 1 x 6 x 5 with Stone and Open Mouth Snake Print (4730),2 +3754pb05,Brick 1 x 6 x 5 with NBA Logo and Basketball Backboard Print,2 +3754pb07,Brick 1 x 6 x 5 with Stone Wall Print,2 +3754pr0001,Brick 1 x 6 x 5 with LL2079 Floating Astronaut Print,2 +3754pr0002,Brick 1 x 6 x 5 with Rocket Launch Print,2 +3754px1,Brick 1 x 6 x 5 with Hieroglyphs and Bird Print,2 +3754px2,Brick 1 x 6 x 5 with Hieroglyphs and Minifig Print,2 +3754px3,Brick 1 x 6 x 5 with Stone and Moss Print [4707],2 +3755,Brick 1 x 3 x 5,11 +3755b,Brick 1 x 3 x 5 with Side Supports,11 +3755pb01,"Brick 1 x 3 x 5 with Cup, Phone, and Water Tap Print [6393]",2 +3755pb02,"Brick 1 x 3 x 5 with Wrench, Jack, and Pump Print",2 +3761,Window 1 x 6 x 5,16 +3762,Glass for Window 1 x 6 x 5,16 +3778,"Plant, Tree Cypress",28 +3787,Mudguard 2 x 4 [Smooth],36 +3788,Mudguard 2 x 4 [Studded],36 +3794a,Plate Special 1 x 2 with 1 Stud without Groove (Jumper),9 +3794b,Plate Special 1 x 2 with 1 Stud with Groove (Jumper),9 +3795,Plate 2 x 6,14 +3795a,Homemaker Windowsill 2 x 6,9 +3811,Baseplate 32 x 32,1 +3811p01,Baseplate 32 x 32 with Dots Print [7838],1 +3811p02,Baseplate 32 x 32 with Island and Water Print,1 +3811p03,Baseplate 32 x 32 with Beach Print [6411],1 +3811p04,Baseplate 32 x 32 with Paradisa Island Print,1 +3811p05,Baseplate 32 x 32 with Island Print,1 +3813,Minifig Microphone (Belville / Towball with Pointed Bar),42 +3814,Torso Plain,13 +3815,Hips,13 +3815cc67,Minifig Hips and Legs with Clockwork Robot Print (Complete),13 +3816,"Leg, Right",13 +3816pbb,Minifig Leg Right with Iron Man Armoured Suit Mark VI Print,27 +3816pbc,Minifig Leg Right with Iron Man Armoured Suit Mark VII Print,27 +3816pbf,Minifig Leg Right with Iron Man Armoured Suit Mark XLII Print,27 +3817,"Leg, Left",13 +3818,Minifig Arm Right,13 +3819,Minifig Arm Left,13 +3820,Minifig Hand,13 +3821,Door 1 x 3 x 1 Right,16 +3821p01,Door 1 x 3 x 1 Right with Safari Stripes Print,16 +3821p02,Door 1 x 3 x 1 Right with Thin POLICE Print,16 +3821p03,Door 1 x 3 x 1 Right [Red and Yellow Stripes Print],16 +3821p09,"Door 1 x 3 x 1 Right with Fire Logo Print flame,car,rescue",16 +3821p24,Door 1 x 3 x 1 Right [Red Cross Print],16 +3821p60,Door 1 x 3 x 1 Right with Shell Logo Print town,16 +3821pb04,Door 1 x 3 x 1 Right with Shell Logo Print,16 +3821pb05,Door 1 x 3 x 1 Right with Safari Print [6672],16 +3821ps1,Door 1 x 3 x 1 Right with SW Red on Silver Print,16 +3822,Door 1 x 3 x 1 Left,16 +3822p01,Door 1 x 3 x 1 Left with Safari Stripes Print,16 +3822p02,Door 1 x 3 x 1 Left with Thin POLICE Print,16 +3822p03,Door 1 x 3 x 1 Left [Red and Yellow Stripes Print],16 +3822p09,"Door 1 x 3 x 1 Left with Fire Logo Print flame,car,rescue",16 +3822p24,Door 1 x 3 x 1 Left [Red Cross Print],16 +3822p60,Door 1 x 3 x 1 Left with Shell Logo Print town,16 +3822pb04,Door 1 x 3 x 1 Left [Shell Logo Print],16 +3822pb05,Door 1 x 3 x 1 Left with Safari Print [6672],16 +3822ps1,Door 1 x 3 x 1 Left with SW Red on Silver Print,16 +3823,Windscreen 2 x 4 x 2,47 +3825stk01,Sticker for Set 3825 - (56214/4294106),17 +3826stk01,Sticker for Set 3826 - (56215 / 4294107),17 +3828,Vehicle Steering Wheel,36 +3828stk01,Sticker for Set 3828 - (56216/4294108),17 +3829a,Vehicle Steering Stand 1 x 2,24 +3829c01,Vehicle Steering Stand 1 x 2 with Black Steering Wheel,36 +3829c02,Vehicle Steering Stand 1 x 2 with Blue Steering Wheel,36 +3829c03,Vehicle Steering Stand 1 x 2 with Red Steering Wheel,36 +3829c04,Vehicle Steering Stand 1 x 2 with White Steering Wheel,36 +3830,Hinge Brick 1 x 4 [Upper],18 +3830stk01,Sticker for Set 3830 - (62250/4521306),17 +3831,Hinge Brick 1 x 4 [Lower],18 +3831stk01,Sticker for Set 3831 - (61873/4520096),17 +3832,Plate 2 x 10,14 +3833,Minifig Construction Helmet,27 +3834,Minifig Fire Helmet,27 +3834p01,Minifig Fire Helmet with Fire Logo Shield Print,27 +3835,Minifig Axe,27 +3836,Minifig Pushbroom,27 +3837,Minifig Shovel [Round Stem End],27 +3838,Minifig Airtanks,27 +3839a,"Plate Special 1 x 2 with Handles [Round Ends, Mid Attachment]",9 +3839b,Plate Special 1 x 2 with Handles [Flat Ends / Low Attachment],9 +384,Windup Motor 1980s,44 +3840,Minifig Vest / Tabard,27 +3841,Minifig Pickaxe,27 +3842a,Minifig Helmet Classic with Thin Chin Guard and Visor Dimples,27 +3842b,Minifig Helmet Classic with Thick Chin Guard and Visor Dimples,27 +3843,Minifig Helmet Visor with Grille and Feather,27 +3844,Minifig Helmet Castle with Neck Protector,27 +3846,Minifig Shield - Triangular,27 +3846p01,Minifig Shield Triangular with Red Cross and Helmet Print,27 +3846p44,Minifig Shield - Triangular with Wolfpack Print,27 +3846p44a,"Minifig Shield Triangular with Wolfpack Print, Border Red Over Black (gives Brown Border effect)",27 +3846p44b,"Minifig Shield Triangular with Wolfpack Print, Border Red Around Black",27 +3846p45,Minifig Shield - Triangular with Black Falcon and Blue Border Print,27 +3846p46,Minifig Shield - Triangular with Black Falcon and Yellow Border Print,27 +3846p47,Minifig Shield Triangular with Red/Gray Halves and Blue Border Print,27 +3846p48,Minifig Shield - Triangular with Forestmen Deer Head Print,27 +3846p4c,Minifig Shield - Triangular with Blue Dragon Print,27 +3846p4d,"Minifig Shield Triangular with Lion Head, Red and White Background Print",27 +3846p4e,"Minifig Accessory Shield - Triangular with Lion Head, Blue and Yellow Print",27 +3846p4f,Minifig Shield - Triangular with Batlord Print,27 +3846p4g,"Minifig Shield - Triangular with Blue Lion, and Yellow Background Print",27 +3846p4h,"Minifig Shield - Triangular with Lion Standing Yellow, and Blue Background Print",27 +3846p4t,"Minifig Accessory Shield Triangular with Red/Peach Quarters Print Castle, LEGOLAND Castle, Knight, Tournament",27 +3846p4u,"Minifig Accessory Shield Triangular with Maroon/Red Quarters Print Castle, LEGOLAND Castle, Knight, Tournament",27 +3846pb15,Minifig Shield - Triangular with Dark Green and Gold Rascus Monkey Print,27 +3846pb16,Minifig Shield - Triangular with Red and Gold Santis Bear Print,27 +3846pb17,Minifig Shield - Triangular with Dark Blue and Gold Jayko Hawk Print,27 +3846pb18,Minifig Shield - Triangular with Purple and Gold Danju Wolf Print,27 +3846pb19,Minifig Shield Triangular with Durmstrang Stag Coat of Arms Print,27 +3846pb23,Minifig Shield Triangular with Black and Silver Blacksmith Star Print,27 +3846pr0001a,Minifig Shield - Triangular with Gold Lion on Red/White Quarters Print,27 +3846pr0001b,Minifig Shield - Triangular with Town Hall Print,27 +3846pr0002,Minifig Shield - Triangular with Dragon on Medium Dark Flesh / Tan Quarters Print,27 +3846pr0003,Minifig Shield Triangular with Black and Silver Falcon Print,27 +3846pr0004a,Minifig Shield Triangular with Gray Crown on White and Gray Quarters Background Print,27 +3846pr0004b,Minifig Shield - Triangular with Red Dragon Head on Black Background Print,27 +3846pr0005,"Minifig Shield - Triangular with Lion Head, Blue and White Background Print",27 +3846pr0006,Minifig Shield - Triangular with Silver Studs and Diamonds and Mud Spots Print,27 +3846pr0007,"Minifig Shield Triangular with Goblin King Eye Print (31835 MINI SHIELD, NO. 7)",27 +3846pr0008,"MINI SHIELD, NO. 8 (32873)",27 +3846pr20,Minifig Shield - Triangular with Gold Armoured Horse on Dark Green Background Print,27 +3846pr21,Minifig Shield Triangular with Dark Blue and Silver King Jayko Hawk Print,27 +3846pr22,Minifig Shield Triangular with Dark Red and Silver & Black Adric Bull Print,27 +3846pr24,Minifig Shield - Triangular with Crown on Dark / Medium Blue Quarters Print,27 +3847,Minifig Sword [Shortsword],27 +3847a,Minifig Sword [Shortsword] - Shiny Solid Smooth ABS,27 +3848,Minifig Halberd,27 +3849,Minifig Lance,27 +3852,Minifig Hairbrush [Undetermined Handle Length],27 +3852a,Minifig Hairbrush Long Handle [14mm],27 +3852b,Minifig Hairbrush Short Handle [10mm],27 +3853,Window 1 x 4 x 3,16 +3853mi,Minitalia Window 1 x 4 x 3 with 12 Panes,16 +3854,Window 1 x 2 x 3 Pane,16 +3855,Glass for Window 1 x 4 x 3,16 +3855a,Glass for Window 1 x 4 x 3 [Old Style - Circular Indent],16 +3855b,Glass for Window 1 x 4 x 3,16 +3856,Window 1 x 2 x 3 Shutter,16 +3856mi,Minitalia Window 1 x 2 x 3 Shutter,16 +3857,Baseplate 16 x 32,1 +3857h,Baseplate 16 x 32,1 +3857pb02,Baseplate 16 x 32 with River and Dots Print [6071],1 +3857px1,Baseplate 16 x 32 with Beach Print [6410],1 +3861a,Door 1 x 4 x 5 with 4 Panes,16 +3861b,Door 1 x 4 x 5 with 4 Panes,16 +3861mi,Minitalia Door 1 x 4 x 5 with 9 Panes,16 +3865,Baseplate 8 x 16,1 +3867,Baseplate 16 x 16,1 +3867p01,Baseplate 16 x 16 with Island on Blue Water Print,1 +3870,Plate Special 2 x 2 Thin with Dual Wheels Holder [Solid Pins],29 +3870c01,Plate Special 2 x 2 Thin with Dual Wheels Holder [Solid Pins] and Space Shuttle Wheels,29 +3873,Technic Link Tread,26 +3876,Minifig Shield - Round with Stud,27 +3878,Minifig Top Hat,27 +3878pr0001,Minifig Top Hat with Black Belt and Gold Buckle Print,27 +3878pr0002,Minifig Top Hat with Tattered Hole and Scratches Print,27 +3888,Fabuland Car Chassis 14 x 6 New,42 +3888ac01,Vehicle Chassis 14 x 6.5 with Tow-Hook and Light-Gray Wheels,36 +3888c01,Fabuland Car Chassis 14 x 6 New (Complete Assembly),42 +3894,Technic Brick 1 x 6 [5 Holes],8 +3895,Technic Brick 1 x 12 [11 Holes],8 +3896,Minifig Helmet Castle with Chin Guard,27 +3897,Roadsign Wide Rectangle,38 +3898,Minifig Baker's Hat,27 +3898pb01,Muffin with Topping Print [Baker's Hat],27 +3899,Minifig Cup,27 +3899pr0001,Minifig Utensil Cup with 'C:\' Print,27 +3899pr0002,Minifig Utensil Cup with 'Shhh!' Print,27 +3899pr0003,Minifig Utensil Cup with 'DUNK ME!' Print,27 +3899pr0004,Minifig Utensil Cup with Octan Logo Print,27 +3899pr0005,Minifig Utensil Cup with Black 'I' Heart 'SOUTH PAWS' Print,27 +3899pr0006,MUG NO. 6,27 +3900,Minifig Signal Paddle,27 +3900p01,Minifig Signal Paddle with 'POLICE' Red Line Print,27 +3900pb02,Minifig Signal Paddle with Red and White Spiral Print,27 +3901,Minifig Hair Male,13 +3933,Wedge Plate 8 x 4 Wing Left,49 +3933a,"Wedge, Plate 8 x 4 Wing Left without Underside Stud Notch",49 +3934,Wedge Plate 8 x 4 Wing Right,49 +3934a,"Wedge, Plate 8 x 4 Wing Right without Underside Stud Notch",49 +3934bpr0001,Cone 4 x 4 x 2 with Axle Hole and Yellow Teeth Print,20 +3935,Wedge Plate 4 x 4 Wing Right,49 +3936,Wedge Plate 4 x 4 Wing Left,49 +3937,Hinge Brick 1 x 2 Base,18 +3938,Hinge Brick 1 x 2 Top Plate Thin,18 +3939,Slope 33° 3 x 6,3 +3939p68,Slope 33 3 x 6 with MTron Logo Print,3 +3939p90,Slope 33° 3 x 6 with Small Classic Space Logo Print,3 +3939p91,Slope 33° 3 x 6 with Large Classic Space Logo Print,3 +3939ps1,Slope Brick 33 3 x 6 with SW ARC-170 Left Print,3 +3939ps2,Slope Brick 33 3 x 6 with SW ARC-170 Right Print,3 +393c48,"Electric Wire 4.5V with four Metal 1-prong Connectors, 48 Studs long (Old)",45 +3940a,Support 2 x 2 x 2 Stand with Blocked Center Hole,34 +3940b,Support 2 x 2 x 2 Stand with Reach-Through Center Hole,34 +3941,Brick Round 2 x 2 with Axle Hole,20 +3941p01,Brick Round 2 x 2 with Buttons on Black Panel Print on Two Sides,20 +3941pb01,"Brick, Round 2 x 2 with Octan Text Print",20 +3942,Cone 2 x 2 x 2 [Undetermined Stud Type],20 +3942a,Cone 2 x 2 x 2 [Solid Stud],20 +3942b,Cone 2 x 2 x 2 [Blocked Open Stud],20 +3942bpr01,Cone 2 x 2 x 2 with Horizontal Red Stripes Print [Blocked Open Stud],20 +3942c,Cone 2 x 2 x 2 [Completely Open Stud],20 +3942cpr01,Cone 2 x 2 x 2 with Horizontal Red Stripes Print [Completely Open Stud],20 +3943a,Cone 4 x 4 x 2 [No Axle Hole],20 +3943b,Cone 4 x 4 x 2 [Axle Hole],20 +3943bpr0002,Cone 4x4x2 with Axle Hole - Saturn V Capsule Hatch and Window Print,20 +3947,Baseplate 32 x 32 with Craters,1 +3947a,Baseplate Raised 32 x 32 Crater Plate without Crater Studs,1 +3947b,"Baseplate, Raised 32 x 32 Crater Plate with Crater Studs",1 +3947bpx1,"Baseplate, Raised 32 x 32 Crater Plate with Crater Studs and Underwater Print",1 +394ac48,Electric Wire 4.5V with Four Red 1-prong Connectors with Split Pin [48 Studs Long],45 +3956,Bracket 2 x 2 - 2 x 2,9 +3957,Antenna 1 x 4 [Undetermined Top],32 +3957a,Antenna 1 x 4 with Rounded Top,32 +3957b,Antenna 1 x 4 with Flat Top,32 +3958,Plate 6 x 6,14 +3959,Minifig Space Gun / Torch,27 +3960,Dish 4 x 4 Inverted [Radar],21 +3960p01,Dish 4 x 4 Inverted [Radar] with Stripes Red/Green Petals Print,21 +3960p02,Dish 4 x 4 Inverted [Radar] - Black Spiral Print [6496 / 6497],21 +3960p03,Dish 4 x 4 Inverted [Radar] with Red Spiral Print,21 +3960p04,Round Dish 4 x 4 Inverted with Blue and Red Stripes Print Space Radar,21 +3960p06,Round Dish 4 x 4 Inverted with Red Stripes Print Space Radar,21 +3960p0a,Dish 4 x 4 Inverted (Radar) with Mushroom Spots Print,21 +3960pb001,Round Dish 4 x 4 Inverted with Pink and Green Stripes Print Space Radar,21 +3960pb004,Dish 4 x 4 Inverted (Radar) with Swirl Magical Print,21 +3960pb007,"Dish 4 x 4 Inverted (Radar) with 4 section Heart, Sun, Flower, Butterfly Print",21 +3960pb009,Dish 4 x 4 Inverted [Radar] with Vault Door Print [4854],21 +3960pb010,Dish 4 x 4 Inverted [Radar] with Millennium Falcon Cockpit Print [4504],21 +3960pf1,"Dish 4 x 4 Inverted [Radar] with Fabuland Numbers - Green 1, Red 2, Orange 3, Blue 4 Print",21 +3960pr0001,Dish 4 x 4 Inverted [Radar] with Town Hall Clock Face Print,21 +3960pr0002,Dish 4 x 4 Inverted with Viking Red and Blue Shield Print,21 +3960pr0003,Dish 4 x 4 Inverted [Radar] with Viking Shield Dark Red / Yellow Rune Print,21 +3960pr0004,Dish 4 x 4 Inverted [Radar] with Viking Shield Blue / White Sections and Silver Ornament Print,21 +3960pr0005,Dish 4 x 4 Inverted [Radar] with Star Wars AT-AT/AT-TE Print,21 +3960pr0006,Dish 4 x 4 Inverted [Radar] with Viking Shield Red / White Sections and Red Serpent Print,21 +3960pr0007,Dish 4 x 4 Inverted with Green Cross Print,21 +3960pr0008,Dish 4 x 4 Inverted [Radar] with Millennium Falcon Cockpit Print [7965],21 +3960pr0009,Dish 4 x 4 Inverted (Radar) with White Fountain Spray Print,21 +3960pr0010a,Dish 4 x 4 Inverted (Radar) with Hogwarts Express and '5972' and '10' in Circle Print,21 +3960pr0010b,Dish 4 x 4 Inverted (Radar) with Black Ghost Face Print,21 +3960pr0011,Dish 4 x 4 Inverted [Radar] with Inverse Yellow Batman Symbol Print,21 +3960pr0012,Dish 4 x 4 Inverted [Radar] with Crescent Moon and Clouds Print [9468],21 +3960pr0013,Dish 4 x 4 Inverted [Radar] with Clock Face with Roman Numerals Print,21 +3960pr0014,Dish 4 x 4 Inverted [Radar] with Magenta and Lime Stripes Print,21 +3960pr0015,"Dish 4 x 4 Inverted [Radar] with Bright Pink, Magenta and Medium Blue Swirls Print",21 +3960pr0016,Dish 4 x 4 Inverted (Radar) with Yellow Sinestro Insignia Print,21 +3960pr0017a,Dish 4 x 4 Inverted [Radar] with Gold Inverse Batman Logo Print,21 +3960pr0017b,Dish 4 x 4 Inverted (Radar) with Gray and Dark Purple Snake and Geometric Print,21 +3960pr0018,Dish 4 x 4 Inverted (Radar) with White and Lavender Electricity Print,21 +3960pr0019,Dish 4 x 4 Inverted (Radar) with White Swirl Print,21 +3960pr0020,"ROUND PLATE Ø32x6.4, NO.20",21 +3960pr0021,Dish 4 x 4 Inverted (Radar) with Black Bat on Silver Background Batman Logo (Bat Signal) Pattern,21 +3960pr0022,"Dish 4 x 4 Inverted (Radar) with Black Circle, Dot and 'THE MIXIES' Pattern",21 +3960pr0023,Dish 4 x 4 Inverted (Radar) with Clock Face Light Blue with Roman Numerals Print,21 +3960pr13,Dish 4 x 4 Inverted [Radar] with Cockpit Print,21 +3960pr20,Dish 4 x 4 Inverted with Dark Purple Octagonal Print,21 +3960ps2,Dish 4 x 4 Inverted with TIE Hatch Print,21 +3960ps3,Dish 4 x 4 Inverted with Sith Print,21 +3960px2,Dish 4 x 4 Inverted (Radar) with Swirl Electrical Print,45 +3960px3,Dish 4 x 4 Inverted (Radar) with LoM Machinery Print,21 +3960px6,Dish 4 x 4 Inverted [Radar] with Hogwarts Express and '5972' Print,21 +3961,Dish 8 x 8 Inverted [Radar],21 +3961pb02,Dish 8 x 8 Inverted [Radar] with Tree Branch Print [4582],21 +3961pr0001a,"Dish 8 x 8 Inverted [Radar] with Red, Black and Pearl Gold Geometric Print",21 +3961pr0001b,ROUND PLATE Ø64X9.6.DECO. NO. 1,21 +3961pr0002,DISH Ø64X9.6 TR.DECO. NO. 2,21 +3961pr0002a,Dish 8 x 8 Inverted [Radar] with Sith Infiltrator Cockpit Roof Print,21 +3961pr03,Dish 8 x 8 Inverted [Radar] with Medium Blue Circle with Black Center Print,21 +3961px1,Dish 8 x 8 Inverted (Radar) with Mini Millennium Falcon Print,21 +3961px2,Dish 8 x 8 Inverted (Radar) with Wheel of Fortune Print,21 +3962,Minifig Radio [Undetermined Handle Type],27 +3962a,Minifig Radio [Compact Handle],27 +3962b,"Minifig Radio [Extended Handle, Compact Speaker Grille]",27 +3963,Brick Special 1 x 1 with 3 Loudspeakers / Space Positioning Rockets,35 +3966,Brick 2 x 2 with Pin on Side,4 +397,Baseplate 10 x 16,1 +3979c01,Panel 2 x 6 x 7 with Fabuland Window Round Type 1 Red,16 +3979c02,Panel 2 x 6 x 7 with Fabuland Window Round Type 1 Yellow,16 +3980c01,Panel 2 x 6 x 7 with Fabuland Window Rectangular Blue,16 +3980c02,Panel 2 x 6 x 7 with Fabuland Window Rectangular Yellow,16 +3980c03,Panel 2 x 6 x 7 with Fabuland Window Rectangular White,42 +398stk01,Sticker for Set 398 - (4239),17 +3997,"Hook, Fabuland Tow Hook - Arm, 2 x 4 Base",34 +3waycona,"Electric, Connector, 3 Way female Rounded",45 +3wayconb,"Electric, Connector, 3 Way male Rounded",45 +4000,Ladder 16 x 4 with Semi-Circular Pivot,32 +40001,"Technic Steering Wheel Pilot's Yoke [Open Stud, Axle Hole with X Opening]",25 +40002,Fibre Optics Cable Wide 20L [Exo-Force],45 +40005,Duplo Utensil Dish,4 +4002stk01,Sticker for Set 4002 - (170902),17 +4005stk01,Sticker for Set 4005 - (194175),17 +4006,Minifig Spanner / Screwdriver,27 +4010stk01,Sticker for Set 4010 - (197875),17 +4011stk01,Sticker for Set 4011 - (163165),17 +4012stk01,Sticker for Set 4012,17 +4019,Technic Gear 16 Tooth with Round Holes [Old Style],52 +4021stk01,Sticker for Set 4021 - (163175),17 +4022,Train Buffer Beam,36 +40227stk01,Sticker Sheet for set 40227,17 +40228stk01,Sticker Sheet for Set 40228-1 27105/6155610,17 +4023,Train Coupling,39 +40232,"Owl Large, Rounded Features",28 +40233,Minifig Hair Short Tousled,13 +40234,Rat,28 +40235,Minifig Hat Turban wrap,13 +40238,Minifig Hair Long and Bushy with Full Beard,13 +40239,Minifig Hair Long,13 +40240,"Minifig Hair - Short, Bowl Cut",13 +40241,"Door 1 x 4 x 6 Round Top with Window and Keyhole, Nonreinforced Edge",16 +40242,Door Frame 1 x 8 x 6 with Moulded Stone Print and Clips,16 +40243,Stairs Spiral Step,32 +40244,Support 1 x 1 x 5 1/3 Spiral Staircase Axle,34 +40245c00,Dog Three Headed 'Fluffy' [Complete Assembly][4706],28 +40249,"Door 2 x 5 x 5 Swivel, Bracket Base",16 +40249px2,"Door 2 x 5 x 5 Swivel, Bracket Base with HP Portrait of Fat Lady Print [4079 / 4722]",16 +4025,Tile Special 6 x 4 with Beveled Edges and 5mm Pin (Train Bogie Plate),15 +40250,"Body Giant, HP Hagrid with Arms and Moveable Hands [Plain]",24 +40250pr01,"Body Giant, HP Hagrid, Shirt and Belt Print - with Arms and Hands",13 +40250pr02,"Body Giant, HP Hagrid, Shirt and Belt Print - with Arms and Light Flesh Moveable Hands",13 +40250pr03,"Body Giant, HP Hagrid, Shirt and Belt and Coat Print - with Arms and Light Flesh Moveable Hands",13 +40251,Minifig Hair Female Mid-Length,13 +40252stk01,Sticker Sheet for Set 40252 (30921 / 6178096),17 +40253,Door Frame 2 x 8 x 6 Swivel without Bottom Notches,16 +4031stk01,Sticker for Set 4031 - (163185),17 +4032.13stk01,"Sticker for Set 4032-13 - Sheet 1, Aeroflot Airlines, Roman Letters (55961/4592911H)",17 +4032.13stk02,"Sticker for Set 4032-13 - Sheet 2, Aeroflot Airlines, Cyrillic Characters (55961/4592911V)",17 +4032.1stk01,Sticker for Set 4032-1 - LEGO Air (51625/4247817),17 +4032.8stk01,Sticker for Set 4032-8 - SWISS Airlines (53351/4268960) and (53352/4268961),17 +4032a,Plate Round 2 x 2 with Axle Hole Type 1 (+ Opening),21 +4032b,"Plate, Round 2 x 2 with Axle Hole Type 2 (X Opening)",21 +4033,Window 1 x 4 x 3 Train with All Studs Hollow,16 +40339,Bionicle Weapon Long Axle Trident,41 +4034,Glass for Train Window 1 x 4 x 3,16 +40340,Bionicle Weapon Drill on axle with pin hole,41 +40341,Bionicle Weapon Long Axle Circular Saw Staff with Pin Hole,41 +40342,Bionicle Weapon Long Axle Flame Staff 1 x 12,41 +40344c01,Technic Brick 4 x 6 Open Center with 2 Fixed Rotatable Friction Pins on End,8 +4035,Window 1 x 2 x 3 Train,16 +4036,Glass for Train Window 1 x 2 x 3,16 +40362,Roof Piece Paper Octagonal,24 +40362px1,"Plastic Sheet, Roof for Hagrid's Hut Print [4707]",38 +40373,Dinosaur Body Quarter with Pin Holes,28 +40373pb01,"Dinosaur Body Quarter with Pin Holes, Set 6719 Print - Dark Gray, Sand Green, Medium Orange, and Dark Green Streaks",28 +40373pb02,"Dinosaur Body Quarter with Pin Holes, Set 6720 Print - Dark Gray Streaked/Sand Blue/Black Streaked/Red Spotted",28 +40373pb03,"Dinosaur Body Quarter with Pin Holes, Set 6721 Print - Dark Gray/Sand Blue/Dark Blue/Red",28 +40373pb04,"Dinosaur Body Quarter with Pin Holes, Set 6722 Print - Dark Gray, Sand Green, Medium Orange, and Dark Green Spotted",28 +40373pb05,"Dinosaur Body Quarter with Pin Holes, Set 1371 Print - Dark Gray Scales on Dark Red and Gray",28 +40374,Dinosaur Body Quarter with Pins,28 +40374pb01,"Dinosaur Body Quarter with Pins, Set 6719 Print - Dark Gray, Sand Green, Medium Orange, and Dark Green Streaks",28 +40374pb02,"Dinosaur Body Quarter with Pins, Set 6720 Print - Dark Gray Streaked/Sand Blue/Black Streaked/Red Spotted",28 +40374pb03,"Dinosaur Body Quarter with Pins, Set 6721 Print - Dark Gray/Sand Blue/Dark Blue/Red",28 +40374pb04,"Dinosaur Body Quarter with Pins, Set 6722 Print - Dark Gray, Sand Green, Medium Orange, and Dark Green Spotted",28 +40374pb05,"Dinosaur Body Quarter with Pins, Set 1371 Print - Dark Gray Scales on Dark Red and Gray",28 +40375,Dinosaur Body Neck / Tail Ring,28 +40378,Dinosaur Tail / Neck Middle Section with Pin,28 +40379,Dinosaur Tail End Section,28 +40380c01,Dinosaur Legs Short,28 +40380c01pb01,Dinosaur Legs Short - Dark Gray and Dark Green Stripes Print [6719],28 +40380c01pb03,"Dinosaur Legs Short - Dark Gray, Red, Blue Print [6721]",28 +40380c01pb04,"Dinosaur Legs Short - Dark Gray, Dark Green Print [6722]",28 +40382c01,Dinosaur Legs Long,28 +40382c01pb01,"Dinosaur Legs Long, Set 6719 Print - Dark Gray, Medium Orange, and Dark Green Grassy",28 +40382c01pb02,"Dinosaur Legs Long, Set 6720 Print - Dark Gray and Red",28 +40382c01pb04,"Dinosaur Legs Long, Set 6722 Print - Dark Gray, Dark Green, Medium Orange",28 +40382c01pb05,"Dinosaur Legs Long, Set 1371 Print - Dark Red, White Scales and 'JPIII'",28 +40385,Dinosaur Back Sail 8 x 2 x 5,28 +40385px1,"Dinosaur Sail Fin with Orange, Maroon, Light Blue, and White Scale Print",28 +40386,Dinosaur Flipper with Pin,28 +40387,"Dinosaur Head Toothed, Jaw Top with Pin",28 +40387px1,"Dinosaur Head Toothed, Jaw Top with Pin, Set 6721 Print - Dark Gray, Red, and Dark Blue",28 +40388,"Dinosaur Head Toothed, Jaw Bottom",28 +40389,"Dinosaur Head Crested Neck and Nose Horn, with Pin",28 +40390,"Dinosaur Head Tyrannosaurus Rex, Jaw Bottom with Pin",28 +40393,Dinosaur Foot,28 +40395,Dinosaur Tail / Neck Base Section with Black Pin,28 +40396,Dinosaur Neck/Tail - S Curve with Pin,28 +40490,Technic Beam 1 x 9 Thick,51 +40507,Bionicle Tohunga Disk Thrower Arm,41 +40554,Duplo Utensil Umbrella with Stop Ring,4 +40581,Bionicle Weapon Long Axle Hammer 1 x 10,41 +40582,Bionicle Weapon Long Axle Ice Pick,41 +40607,Rubber Band / Belt Holder 6 x 3 x 3,31 +40620,Vehicle Exhaust Pipe with Technic Pin,36 +40623,"LEGO Indie Scala Horse, Complete Assembly (40623)",24 +40637,"Duplo, Brick 2 x 2 with Digger Bucket Arm Holder",4 +40638,"Duplo Digger Bucket, Large",4 +40643,DUPLO ARM FOR PIVOT JOINT,24 +40644,DUPLO PIVOT JOINT FOR ARM,24 +40648,DUPLO BULLDOZER BUCKET,4 +4066,Brick 1 x 2 x 2,4 +40666,Plate 2 x 4,4 +4066a,Duplo Brick 1 x 2 x 2 Type 1,4 +4066b,Duplo Brick 1 x 2 x 2 Type 2,4 +4066pb003,"Duplo, Brick 1 x 2 x 2 with Halloween 2000 Brick or Treat Print (Legoland logo)",4 +4066pb008,"Duplo, Brick 1 x 2 x 2 with Lego Maniac Kid Vention 2000 Print",4 +4066pb009,"Duplo, Brick 1 x 2 x 2 with Road Sign Stop Print",4 +4066pb012,"Duplo, Brick 1 x 2 x 2 with Steak and Bones Print [need image]",4 +4066pb019,"Duplo, Brick 1 x 2 x 2 with Halloween 2004 Brick or Treat / Happy Halloween Print (Legoland logo)",4 +4066pb024,"Duplo, Brick 1 x 2 x 2 with Strawberries Cluster Print",4 +4066pb027,"Duplo, Brick 1 x 2 x 2 with Baby Bottle Blue Top Print",4 +4066pb028,"Duplo, Brick 1 x 2 x 2 with Three Balloons Print",4 +4066pb029,"Duplo, Brick 1 x 2 x 2 with Bananas Print",4 +4066pb031,"Duplo, Brick 1 x 2 x 2 with Two Bees Print",4 +4066pb032,"Duplo, Brick 1 x 2 x 2 with Colorful Bird Print",4 +4066pb034,"Duplo, Brick 1 x 2 x 2 with Three Books Print, ABC and 123",4 +4066pb036,"Duplo, Brick 1 x 2 x 2 with Construction Cone 1 Print",4 +4066pb037,"Duplo, Brick 1 x 2 x 2 with Three Loaves of Bread Print, Middle Dark",4 +4066pb038,"Duplo, Brick 1 x 2 x 2 with Bucket of Water in Blue Print",4 +4066pb039,"Duplo, Brick 1 x 2 x 2 with Bucket of Carrots Print",4 +4066pb040,"Duplo, Brick 1 x 2 x 2 with Bucket of Fish Print",4 +4066pb041,"Duplo, Brick 1 x 2 x 2 with Butterflies Print",4 +4066pb042,"Duplo, Brick 1 x 2 x 2 with Oil Drum / Can Print",4 +4066pb043,"Duplo, Brick 1 x 2 x 2 with Rain Cloud Print",4 +4066pb047,"Duplo, Brick 1 x 2 x 2 with Corn Print",4 +4066pb048,"Duplo, Brick 1 x 2 x 2 with Blue Doll Print",4 +4066pb051,"Duplo, Brick 1 x 2 x 2 with Road Sign Exclamation Point Print",4 +4066pb052,"Duplo, Brick 1 x 2 x 2 with Fire Print",4 +4066pb055,"Duplo, Brick 1 x 2 x 2 with Fish Large Print",4 +4066pb056,"Duplo, Brick 1 x 2 x 2 with Flowerpot Print",4 +4066pb057,"Duplo, Brick 1 x 2 x 2 with Fruit Bowl Print",4 +4066pb059,"Duplo, Brick 1 x 2 x 2 with Grapes Print",4 +4066pb060,"Duplo, Brick 1 x 2 x 2 with Fish Pair Print",4 +4066pb063,"Duplo, Brick 1 x 2 x 2 with Mail Bag Large Print",4 +4066pb065,"Duplo, Brick 1 x 2 x 2 with Carton and Bottle Print",4 +4066pb066,"Duplo, Brick 1 x 2 x 2 with Milk Carton and Glasses Print",4 +4066pb067,"Duplo, Brick 1 x 2 x 2 with Pineapples Print",4 +4066pb068,"Duplo, Brick 1 x 2 x 2 with Potted Plant Print",4 +4066pb072,"Duplo, Brick 1 x 2 x 2 with Road Sign Speed Limit 50 Print",4 +4066pb076,"Duplo, Brick 1 x 2 x 2 with Strawberries Print",4 +4066pb077,"Duplo, Brick 1 x 2 x 2 with Bundle of Straw Print",4 +4066pb079,"Duplo, Brick 1 x 2 x 2 with Suitcases Yellow and Dark Gray Print",4 +4066pb080,"Duplo, Brick 1 x 2 x 2 with Teddy Bear Print",4 +4066pb082,"Duplo, Brick 1 x 2 x 2 with Brown Teddy Bear Print",4 +4066pb083,"Duplo, Brick 1 x 2 x 2 with Knights and Damsels 2004 Print",4 +4066pb085,"Duplo, Brick 1 x 2 x 2 with Trophy Cup with Shield, Orange Print",4 +4066pb086,"Duplo, Brick 1 x 2 x 2 with Wood Grain Print",4 +4066pb088,"Duplo, Brick 1 x 2 x 2 with Baby Bottle Yellow Top Print",4 +4066pb089,"Duplo, Brick 1 x 2 x 2 with Two Apples Print",4 +4066pb090,"Duplo, Brick 1 x 2 x 2 with Banana Peeled Print",4 +4066pb093,"Duplo, Brick 1 x 2 x 2 with Bow and Arrow Print",4 +4066pb095,"Duplo, Brick 1 x 2 x 2 with Indian Drum Print",4 +4066pb096,"Duplo, Brick 1 x 2 x 2 with Honeycomb Print",4 +4066pb099,"Duplo, Brick 1 x 2 x 2 with Sun and Horns Print",4 +4066pb100,"Duplo, Brick 1 x 2 x 2 with Telephone Print 1, Red",4 +4066pb101,"Duplo, Brick 1 x 2 x 2 with Telephone Print 1, Pink with Yellow Buttons",4 +4066pb102,"Duplo, Brick 1 x 2 x 2 with Telephone Print 2, Red with Round Buttons",4 +4066pb104,"Duplo, Brick 1 x 2 x 2 with Four Tomatoes Print",4 +4066pb105,"Duplo, Brick 1 x 2 x 2 with Wheat and Plain Rope Print",4 +4066pb106,"Duplo, Brick 1 x 2 x 2 with Wheat and Braided Rope Print",4 +4066pb111,"Duplo, Brick 1 x 2 x 2 with Soap Bubble Print",4 +4066pb112,"Duplo, Brick 1 x 2 x 2 with Lunch Box Print",4 +4066pb113,"Duplo, Brick 1 x 2 x 2 with Clipboard Print",4 +4066pb115,"Duplo, Brick 1 x 2 x 2 with Screwdriver, Hammer and Wrench Tools Print",4 +4066pb116,"Duplo, Brick 1 x 2 x 2 with Two Mice Print",4 +4066pb121,"Duplo, Brick 1 x 2 x 2 with Halloween 2002 Happy Halloween Print (Lego logo)",4 +4066pb122,"Duplo, Brick 1 x 2 x 2 with Halloween 2001 Happy Halloween Print (Lego logo)",4 +4066pb127,"Duplo, Brick 1 x 2 x 2 with Cell Phone Print",4 +4066pb128,"Duplo, Brick 1 x 2 x 2 with Legoland Family Huddle Print",4 +4066pb135,"Duplo, Brick 1 x 2 x 2 with Road Sign Construction Worker Print",4 +4066pb136,"Duplo, Brick 1 x 2 x 2 with Legoland Sports Center Spring 2003 Print",4 +4066pb137,"Duplo, Brick 1 x 2 x 2 with Imagination Center (Disney Orlando) Grand Opening Print",4 +4066pb145,"Duplo, Brick 1 x 2 x 2 with Sand Piles and Shovel Print",4 +4066pb146,"Duplo, Brick 1 x 2 x 2 with Sports Jam Summer 2003 Print",4 +4066pb147,"Duplo, Brick 1 x 2 x 2 with Clikits Logo Print",4 +4066pb150,"Duplo, Brick 1 x 2 x 2 with Legoland California Membership Play On Year-Round Print",4 +4066pb152,"Duplo, Brick 1 x 2 x 2 with Kids' New Year's Eve 2003 Print",4 +4066pb154,"Duplo, Brick 1 x 2 x 2 with Kids' New Year's Eve 2004 Print",4 +4066pb162,"Duplo, Brick 1 x 2 x 2 with Construction Cone 2 Print",4 +4066pb169,"Duplo, Brick 1 x 2 x 2 with The Lego Store Illinois Stores (Woodfield Mall & Northbrook Court) 2003 Print",4 +4066pb177,"Duplo, Brick 1 x 2 x 2 with Wood Grain & 'FRAGILE' Print",4 +4066pb178,Duplo Brick 1 x 2 x 2 with Tied Parcel and Postmark Print,4 +4066pb180,"Duplo, Brick 1 x 2 x 2 with Parcel and Mail Envelope Print",4 +4066pb182,"Duplo, Brick 1 x 2 x 2 with Sausages Print",4 +4066pb189,"Duplo, Brick 1 x 2 x 2 with Cave Painting Human Print",4 +4066pb191,"Duplo, Brick 1 x 2 x 2 with Oranges and Glass of Orange Juice with Straw Print",4 +4066pb200,"Duplo, Brick 1 x 2 x 2 with Kids' New Year's Eve 2005 Print",4 +4066pb201,"Duplo, Brick 1 x 2 x 2 with Lego World Record Tower Print",4 +4066pb202,"Duplo, Brick 1 x 2 x 2 with Miniland New York 2005 Print",4 +4066pb203,"Duplo, Brick 1 x 2 x 2 with Junior Master Model Builder 2005 Print",4 +4066pb204,"Duplo, Brick 1 x 2 x 2 with Bricks In Bloom Three Flowers Print",4 +4066pb206,"Duplo, Brick 1 x 2 x 2 with Knights' Tournament Print",4 +4066pb208,"Duplo, Brick 1 x 2 x 2 with A Spark in the Knight Print",4 +4066pb209,"Duplo, Brick 1 x 2 x 2 with Halloween 2005 Brick or Treat Print (Legoland Logo)",4 +4066pb210,"Duplo, Brick 1 x 2 x 2 with Holiday Block Party 2005 Print",4 +4066pb211,"Duplo, Brick 1 x 2 x 2 with Kids' New Year's Eve 2006 Print",4 +4066pb212,"Duplo, Brick 1 x 2 x 2 with Factory Tour with Minifig Holding Wrench Print",4 +4066pb214,"Duplo, Brick 1 x 2 x 2 with Wild Woods Golf Print",4 +4066pb216,"Duplo, Brick 1 x 2 x 2 with Lego Store California, Ontario Mills 2005 Print",4 +4066pb217,"Duplo, Brick 1 x 2 x 2 with Lego Store Natick, Massachusetts 2005 Print",4 +4066pb219,"Duplo, Brick 1 x 2 x 2 with Aquazone Wave Racers Print",4 +4066pb221,"Duplo, Brick 1 x 2 x 2 with Pirate Shores Print",4 +4066pb222,"Duplo, Brick 1 x 2 x 2 with Legoland Block of Fame Print",4 +4066pb224,"Duplo, Brick 1 x 2 x 2 with Dino Island Opening Print",4 +4066pb225,"Duplo, Brick 1 x 2 x 2 with Swiper The Fox (Looking to his Left) Print",4 +4066pb226,"Duplo, Brick 1 x 2 x 2 with Issa Print",4 +4066pb227,"Duplo, Brick 1 x 2 x 2 with Swiper The Fox (Looking to his Right) Print",4 +4066pb228,"Duplo, Brick 1 x 2 x 2 with Boots the Monkey Print",4 +4066pb229,"Duplo, Brick 1 x 2 x 2 with Spotted Snake Print (From Dora The Explorer)",4 +4066pb230,"Duplo, Brick 1 x 2 x 2 with Sitting Ape Print (From Dora The Explorer)",4 +4066pb233,"Duplo, Brick 1 x 2 x 2 with Strawberry Label on Red Jar with Lid Print",4 +4066pb234,"Duplo, Brick 1 x 2 x 2 with Ketchup Bottle and Tomato Print",4 +4066pb237,"Duplo, Brick 1 x 2 x 2 with Volvo Driving School Print",4 +4066pb242,"Duplo, Brick 1 x 2 x 2 with Miniland Florida Print",4 +4066pb244,"Duplo, Brick 1 x 2 x 2 with Sports Jam Summer 2004 Print",4 +4066pb245,"Duplo, Brick 1 x 2 x 2 with I Love Legoland Print",4 +4066pb246,"Duplo, Brick 1 x 2 x 2 with The Dragon Print",4 +4066pb252,"Duplo, Brick 1 x 2 x 2 with Open Day 1995 Print",4 +4066pb258,"Duplo, Brick 1 x 2 x 2 with Acorns Loose Print",4 +4066pb262,"Duplo, Brick 1 x 2 x 2 with Happy Birthday and Birthday Cake Print",4 +4066pb263,"Duplo, Brick 1 x 2 x 2 with Halloween 2005 Happy Halloween and Vampire Print",4 +4066pb266,"Duplo, Brick 1 x 2 x 2 with Traffic Signal Single Print",4 +4066pb271,"Duplo, Brick 1 x 2 x 2 with Green Leaves / Plant Print",4 +4066pb281,"Duplo, Brick 1 x 2 x 2 with Star Badge Silver and 'POLICE' on Bottom Print",4 +4066pb283,"Duplo, Brick 1 x 2 x 2 with Halloween 2006 Brick or Treat Print (Legoland Logo)",4 +4066pb284,"Duplo, Brick 1 x 2 x 2 with Kids' New Year's Eve 2007 Print",4 +4066pb286,"Duplo, Brick 1 x 2 x 2 with Holiday Block Party 2006 Print",4 +4066pb292,"Duplo, Brick 1 x 2 x 2 with Horse Print",4 +4066pb296,"Duplo, Brick 1 x 2 x 2 with Large Flowers and Leaves Print (Ivy)",4 +4066pb299,"Duplo, Brick 1 x 2 x 2 with Junior Master Model Builder 2007 Print",4 +4066pb302,"Duplo, Brick 1 x 2 x 2 with Lego Club 20th Birthday Print",4 +4066pb305,"Duplo, Brick 1 x 2 x 2 with Halloween 2007 Brick or Treat Safe Halloween Print",4 +4066pb312,"Duplo, Brick 1 x 2 x 2 with Land of Adventure Print",4 +4066pb314,"Duplo, Brick 1 x 2 x 2 with Legoland Factory Tour with Red Gear Print",4 +4066pb315,"Duplo, Brick 1 x 2 x 2 with Junior Master Model Builder 2008 Print",4 +4066pb316,"Duplo, Brick 1 x 2 x 2 with www.LEGOclub.com 2008 Print",4 +4066pb324,"Duplo, Brick 1 x 2 x 2 with Coffee Beans and Cup and Saucer Print",4 +4066pb327,"Duplo, Brick 1 x 2 x 2 with Holiday Block Party 2008 Print",4 +4066pb329,"Duplo, Brick 1 x 2 x 2 with Indiana Jones Legoland California Print",4 +4066pb330,"Duplo, Brick 1 x 2 x 2 with Kids' New Year's Eve 2009 Print",4 +4066pb334,"Duplo, Brick 1 x 2 x 2 with Bus Schedule Print (5636)",4 +4066pb335,"Duplo, Brick 1 x 2 x 2 with LEGO Store Master Builder Event Star Wars R2-D2 2009 Print",4 +4066pb336,"Duplo, Brick 1 x 2 x 2 with LEGO Store Master Builder Event Star Wars Yoda Print 2009",4 +4066pb339,"Duplo, Brick 1 x 2 x 2 with Star Wars Days 2009 Print",4 +4066pb343,"Duplo, Brick 1 x 2 x 2 with Legoland 10 YEARS OF FUN! Print",4 +4066pb344,"Duplo, Brick 1 x 2 x 2 with Factory Tour with Minifig Holding Wrench in Left Hand Print",4 +4066pb345,"Duplo, Brick 1 x 2 x 2 with www.LEGOclub.com 2009 Print",4 +4066pb349,"Duplo, Brick 1 x 2 x 2 with Toys 'R' Us Bricktober Week 1 Print",4 +4066pb351,"Duplo, Brick 1 x 2 x 2 with Toys 'R' Us Bricktober Week 2 Print",4 +4066pb357,"Duplo, Brick 1 x 2 x 2 with LEGOLAND holly jolly holidays Print",4 +4066pb359,"Duplo, Brick 1 x 2 x 2 with Halloween 2009 Brick or Treat Party Nights Print",4 +4066pb365,"Duplo, Brick 1 x 2 x 2 with Prince of Persia Print",4 +4066pb369,"Duplo, Brick 1 x 2 x 2 with Dog and Food Bowl Print",4 +4066pb373,"Duplo, Brick 1 x 2 x 2 with the Lego Store New York Rockefeller Center Grand Opening Big Apple Print",4 +4066pb387,"Duplo, Brick 1 x 2 x 2 with Apples, Orange, and Strawberries Prices Print",4 +4066pb388,"Duplo, Brick 1 x 2 x 2 with Traffic Light Print",4 +4066pb391,"Duplo, Brick 1 x 2 x 2 with LEGO Store Master Builder Event Star Wars Yoda Print 2010",4 +4066pb396,"Duplo, Brick 1 x 2 x 2 with '1' in Green, White and Red Chevron and Checkered Border Print",4 +4066pb398,"Duplo, Brick 1 x 2 x 2 with Target Print",4 +4066pb402,"Duplo, Brick 1 x 2 x 2 with Legoland Florida Factory Print",4 +4066pb406,"Duplo Brick 1 x 2 x 2 with Scissors, Bandages and Tongue Depressors Print",4 +4066pb410,"Duplo, Brick 1 x 2 x 2 with Fireworks and Ghost 2011 Legoland Windsor Print",4 +4066pb411,"Duplo, Brick 1 x 2 x 2 with Lightning Bolt, '95' and Checkered Flag Print",4 +4066pb414,"Duplo, Brick 1 x 2 x 2 with Fairy Godmother with Wand and Fairy Dust Print",4 +4066pb416,"Duplo, Brick 1 x 2 x 2 with Legoland Discovery Center Factory Dallas / Fort Worth Print",4 +4066pb417,"Duplo, Brick 1 x 2 x 2 with Legoland Discovery Center Factory Print",4 +4066pb423,"Duplo, Brick 1 x 2 x 2 with Key Pad and '51337' Display Print",4 +4066pb425,Duplo Brick 1 x 2 x 2 with Dog and Cat with Food Bowl Print,4 +4066pb426,"Duplo, Brick 1 x 2 x 2 with Yellow Stanley Print",4 +4066pb432,"Duplo, Brick 1 x 2 x 2 with Krab Sebastian Print",4 +4066pb434,"Duplo, Brick 1 x 2 x 2 with Eye with White Spot and Curve Print on Both Sides",4 +4066pr0035,Duplo Brick 1 x 2 x 2 - Blue Interlocking Hexagonal Background (Honeycomb) with TTA Letters and Badge - 2 Orange and 1 Blue connected Circles / Buttons print,4 +4070,Brick Special 1 x 1 with Headlight and No Slot,5 +4070a,Brick Special 1 x 1 with Headlight and Slot,5 +4071,Door Frame 2 x 6 x 7,16 +4071a,"Door 2 x 6 x 7 Frame without Stops Fabuland,bc1",16 +4072,Fabuland Door 1 x 6 x 7 with Round pane in 4 sections,16 +4079,Minifig Seat 2 x 2,36 +4079b,Minifig Seat 2 x 2 with Center Sprue Mark,36 +4080,Vehicle Tipper Bed 4 x 6,36 +4081a,Plate Special 1 x 1 with Clip Light [Thin Ring],9 +4081b,Plate Special 1 x 1 with Clip Light [Thick Ring],9 +4082,"Container, Box 6 x 8 x 1 1/3 Bottom",7 +4083,Bar 1 x 4 x 2 with Studs,32 +4084,Tyre Offset Tread Medium,29 +4085a,Plate Special 1 x 1 with Clip Vertical [Thin Open O Clip],9 +4085b,Plate Special 1 x 1 with Clip Vertical [Thin U Clip],9 +4085c,Plate Special 1 x 1 with Clip Vertical [Thick U Clip],9 +4086,"Fabuland Car Roof, Fixed Curve",36 +4088,Brick Curved 1 x 4 x 2 Centre Stud Top [aka Fabuland Radiator],37 +4088px1,"Brick Curved 1 x 4 x 2 Center Stud Top with Orient Arches, Minifigs Print",37 +4088px2,Brick Curved 1 x 4 x 2 Center Stud Top with Rose and Vines Print,37 +4088px3,Brick Curved 1 x 4 x 2 Centre Stud Top with Car Grill Fabuland Yellow / Red Print,37 +4088px4,Brick Curved 1 x 4 x 2 Center Stud Top with Car Grill Fabuland Orange / Green Print,37 +4088px5,Brick Curved 1 x 4 x 2 Center Stud Top with Car Grille Mickey yellow/red Print,37 +4088px6,Brick Curved 1 x 4 x 2 Centre Stud Top with Car Grill Mickey Green / Yellow Print,37 +4089,Slope Inverted 33° 3 x 2 Hollow with Towball (Arm Piece),36 +40902,Hinge Brick 2 x 2 Locking with 2 Fingers Vertical and Axle Hole,18 +40909,DUPLO BALLOON,4 +4092,Tile Special 6 x 4 with Beveled Edges and 7mm Pin (Train Bogie Plate),15 +4093,Train Base 6 x 28 with Two 1 x 2 Cutouts [Undetermined Number of Round Holes],24 +4093a,Train Base 6 x 28 with Two 1 x 2 Cutouts [3 Round Holes Each End],36 +4093b,Train Base 6 x 28 with Two 1 x 2 Cutouts [10 Round Holes Each End and 1 Round Hole at Center],36 +4093c,Train Base 6 x 28 with Two 1 x 2 Cutouts [6 Round Holes Each End and 1 Round Hole at Center],36 +40942,Bar 8 x 8 x 2 Sliding Grill,32 +4094a,"Fabuland Umbrella Top with No Bottom Flaps, 6 x 6 [No Top Stud]",27 +4094b,"Minifig Umbrella Top with No Bottom Flaps, 6 x 6 with Top Stud",27 +4095,Bar 6.6L with Stop Ring [Umbrella Stand],32 +40973,Duplo Ball for Ball Tube with Red Open Mouth Smile and Black and White Eyes Print,4 +40996,Brick Curved 1 x 4 with Sloped Ends and Two Top Studs,37 +4100204,User Guide for Technic Control Centre II [8485],17 +41005stk01,Sticker Sheet for Set 41005-1 14250/6037728,17 +4101599,Plastic Sea Floor Play Stage [1728],38 +41015stk01,Sticker for Set 41015 - (14251/6037729),17 +41035stk01,Sticker Sheet for Set 41035-1 17110/6065808,17 +41036stk01,Sticker Sheet for Set 41036-1 17770/6075650,17 +4105438,"Book Belville Julia, Benjamin, le docteur et l'infirmiere",42 +4105438f,"Book - Julia, Benjamin, the Doctor and the Hospital.",17 +4105569,"Storage Tub with Lid, Time Cruisers",17 +41059stk01,Sticker for Set 41059 - (17790/6076019),17 +4107400,Dacta Sorting Tray - 45 Compartment for Dacta Small Bin,17 +41093stk01,Sticker Sheet for Set 41093-1 19869/6102491,17 +41095stk01,Sticker Sheet for Set 41095-1 19872/6102494,17 +4110153,Plastic Time Machine Play Stage [6499],17 +4110165,"Baseplate, Raised Cave without Studs [6099]",1 +41101stk01,Sticker Sheet for 41101-1,17 +4111545,User Guide for Technic Code Pilot 8479,17 +41118stk01,Sticker Sheet for Set 41118-1 25461/6139812,17 +41121stk01,Sticker for Set 41121-1,17 +41122stk01,Sticker Sheet for Set 41122-1,17 +4112734,"Baseplate, Raised Stingray 35 x 42 x 4.5 with depression for 6140 / 6109 Submarine",1 +41129stk01,Sticker Sheet for Set 41129-1 26746/6152433,17 +4113096,Instruction CD-ROM for 9730,17 +4113097,Compact Disc Extreme Creatures,17 +41149stk01,Sticker Sheet for Set 41149 - 30932 / 6178141,17 +41150stk01,Sticker Sheet for Set 41150 - 30909/6178020,17 +4116414,Baseplate Raised 32 x 42 Canyon Stepped No Studs [6589],1 +4116426pb01,"Baseplate, Raised 46 x 56 with Plate Indentations and Ramps, NO Studs, with Tan Print (Stickers) - Set 4258",1 +41169c01,Duplo Winch Drum Narrow with String and Black Hook,31 +41184,DECO. LID GLAD HEAD,4 +41186,Duplo Ball Tube Exit Door with Half-Closed Eyes and Wavy Mouth Print,4 +412,Arm Piece 90° Turn [2 / 3 Fingers],18 +41216,Duplo Ball for Ball Tube with Smile and Black and White Eyes with Eyelids Print,4 +41217,Duplo Ball for Ball Tube with Wavy Smile and Black and White Eyes with Eyelids Print,4 +4122123,"Paper, Test Mat for Mindstorms RoboSports (Set 9730)",17 +41230stk01,Sticker Sheet for Set 41230 - 30468/6177034,17 +41231stk01,Sticker Sheet for Set 41231 - 30496/6177044 Capes&Cowls Cafe,17 +41232stk01,Sticker Sheet for Set 41232 - 30604/6177052,17 +41234stk01,Sticker Sheet for Set 41234 - 30911/6178032,17 +41235stk01,Sticker Sheet for Set 41235 31813/6179354,17 +41239,Technic Beam 1 x 13 Thick,51 +41246,Duplo Brick 2 x 6 Lower Flap Extensions with Yellow/Red/Blue Dots Print,4 +4124819,Book Comic Rock Raiders 4940,17 +4124820,Book Comic Rock Raiders 4950,17 +41250,"Ball, Hard Plastic, 51mm (approx. 6 studs diameter)",24 +4125890,Dacta Sorting Tray - 29 Compartment for Dacta Small Bin,17 +4128535,Instruction CD-ROM for 9748,17 +41288,Duplo Ball Tube Straight with Opposing Oval Holes,4 +4130,Door Frame 2 x 4 x 5,16 +41302stk01,Sticker Sheet for Set 41302 - 29452 / 6174249,17 +4130630,"Paper, Cardboard Backdrop for Set 1349 (Destroyed City)",17 +4130910,"Paper, Cardboard Backdrop for Set 1349 (Nighttime City)",17 +4131,Door 1 x 4 x 5,16 +4131307,Duplo Baseplate Cardboard 26 x 19 with Playground Print,4 +4132,Window 2 x 4 x 3 Frame with Solid Studs,16 +4132168,Dacta Sorting Tray - 40 Compartment for Dacta Small Bin,17 +4132c04,Window 2 x 4 x 3 Frame with White Pane,16 +4132pb01,Window 2 x 4 x 3 Frame with Recycling Print,16 +4133,Window 2 x 4 x 3 Pane,16 +4133393,Adventurers Mini Comic Book 1,17 +4133394,Adventurers Mini Comic Book 2,17 +4133395,Adventurers Mini Comic Book 3,17 +4133396,Adventurers Mini Comic Book 4,17 +41334,Minifig Knitted Cap,27 +41413,Bionicle Mask Vahi,41 +4142686pb1,Darth Vader Display Card,17 +4142686pb2,Darth Maul Display Card,17 +4142686pb3,Palpatine Display Card,17 +4142687pb1,Luke Skywalker Display Card,17 +4142687pb2,Han Solo Display Card,17 +4142687pb3,Boba Fett Display Card,17 +4142688pb1,Chewbacca Display Card,17 +4142688pb2,Biker Scout 1 Display Card,17 +4142688pb3,Biker Scout 2 Display Card,17 +4142689pb1,Trading Card: Command Officer,17 +4142689pb2,Trading Card: Battle Droid 1,17 +4142689pb3,Trading Card: Battle Droid 2,17 +4142690pb1,Trading Card: Shogun Warlord,17 +4142691pb1,Old Samurai,17 +4142691pb2,Young Samurai,17 +4142691pb3,Black Ninja,17 +4142692pb1,Samurai Lord Display Card,17 +4142692pb2,Green Ninja Display Card,17 +4142692pb3,Green Ninja Princess Display Card,17 +4142693pb1,Trading Card: Rock Raiders Chief,17 +4142694pb1,Rock Raiders Bandit,17 +4142694pb2,Rock Raiders Docs,17 +4142694pb3,Rock Raiders Sparks,17 +4142695pb1,Trading Card: Axel,17 +4142695pb2,Trading Card: Docs,17 +4142695pb3,Trading Card: Jet,17 +4142696pb1,Display Card - Axel,17 +4142696pb2,Display Card - Fred,17 +4142696pb3,Display Card - Paula,17 +4142697pb1,Display Card - Dave,17 +4142697pb2,Display Card - Garry,17 +4142697pb3,Display Card - Pete,17 +4142876,Instruction CD-ROM for 3804 [RIS v2.0],17 +4142877,Instruction CD-ROM for 9731 Vision Command Windows 98 (English Language),17 +4143,Technic Gear 14 Tooth Bevel,52 +4150,Tile Round 2 x 2 with Bottom Cross,19 +4150p00,Tile 2 x 2 Round with Film/Tape Reel Print,10 +4150p01,"Tile, Round 2 x 2 with Black Grid Large Print",10 +4150p02,Tile Round 2 x 2 with Pizza Print,10 +4150p04,Tile Round 2 x 2 with Yellow Arrow with Black Border Print,10 +4150p05,Tile 2 x 2 Round with Black Exhaust Port Print,10 +4150p30,Tile 2 x 2 Round with Zebra Stripes Print,10 +4150p40,"Tile, Round 2 x 2 with Archery Target Print",10 +4150pa0,"Tile Round 2 x 2 with Black Background, Yellow Submarine Print",10 +4150pb026,"Tile, Round 2 x 2 with Black Grid Small Print",10 +4150pb031,Tile Round 2 x 2 with Scala Red Flower and Blue Centrr Print,10 +4150pb032,Tile Round 2 x 2 with Scala Flower Print,10 +4150pf0,Tile 2 x 2 Round with Red Rings Print,10 +4150pr0001,Tile Round 2 x 2 with Clock Print,10 +4150pr0002,"Tile, Round 2 x 2 with Dark Red Semicircles Print",10 +4150pr0003,"Tile, Round 2 x 2 with Life Preserver [Life Belt] Print",10 +4150pr0004,Tile Round 2 x 2 with Yellow 'Z' (Zurg Logo) Print,10 +4150pr0005,Tile Round 2 x 2 with Republic Eight-point Star Print,10 +4150pr0007,Tile Round 2 x 2 with Treasure Map Print,10 +4150pr0009,Tile Round 2 x 2 with Magenta and Bright Pink Life Preserver Print,10 +4150pr0010,Tile Round 2 x 2 with 'Mia' and Gold Star Print,10 +4150pr0011a,Tile Round 2 x 2 with Brown Paw Print,10 +4150pr0011b,Tile Round 2 x 2 with Vinyl Record Print,10 +4150pr0012,Tile 2 x 2 Round with Black / Red Nindroid Logo Print,10 +4150pr0021,Tile Round 2 x 2 with SW Radial Machinery Print,10 +4150pr0022,Tile Round 2 x 2 with Fine Mesh Grill Print,10 +4150pr086,Tile Round 2 x 2 with Bottom X Cross - Black SW Tie Fighter Print (9492),10 +4150pr1003,Tile 2 x 2 Round with Offset Black Eye Print,10 +4150pr9009,Tile 2 x 2 Round with Open Insect Mouth Print,10 +4150ps0,Tile 2 x 2 Round with Hexagonal Hatch Print,10 +4150ps1,"Tile, Round 2 x 2 with SW Podracer Vent Print",10 +4150ps2,"Tile, Round 2 x 2 with SW Sith Infiltrator Print",10 +4150ps3,"Tile, Round 2 x 2 with Dejarik Hologameboard Print",10 +4150ps5,"Tile, Round 2 x 2 with Star Wars Imperial Print",10 +4150ps7,Tile 2 x 2 Round with Hatch Print,10 +4150ps8,Tile 2 x 2 Round with Grey and Black Machinery Print,10 +4150px14,Tile Round 2 x 2 with Blue Background and Yellow Crab Print,10 +4150px20,Tile Round 2 x 2 with Red Fan Print,10 +4150px21,"Tile, Round 2 x 2 with Silver Thin-Bladed Fan Print [7133 / 8652]",10 +4150px26,"Tile, Round 2 x 2 with Orange Dots (Flower Center) and Red Ladybug Print (Belville)",10 +4150px3,"Tile, Round 2 x 2 with Flame and Sand Green Border Print",10 +4150px30,Tile 2 x 2 Round with Belville Flower Center Print,10 +4150px31,"Tile, Round 2 x 2 with Hearts, Steak, Peas, Carrot Print",10 +4150px32,"Tile, Round 2 x 2 with Hearts, Hot Dog, French Fries Print",10 +4150px35,"Tile Round 2 x 2 with CD White, Black / Dark Gray, Gray, Blue Sectors Print (Compact Disc)",10 +4150px5,Tile Round 2 x 2 with Light Blue Vitruvian Minifig Print,10 +4150px7,"Tile, Round 2 x 2 with Tracking Screen Print",10 +4150px8,"Tile, Round 2 x 2 with Flame and Sand Red Border Print",10 +4150px9,"Tile, Round 2 x 2 with Orange Grabber Print",10 +4151,Plate Special 8 x 8 with Grille [Undetermined Center],9 +4151a,Plate Special 8 x 8 with Grille [No Hole in Center],9 +4151b,Plate Special 8 x 8 with Grille [Hole in Center],9 +4151c,Plate Special 8 x 8 with Grille [2 x 2 Diamond Cutout Center],9 +41525,"Minifig Platform Exo-Skeleton foot,feet,robot diver",27 +41525pb01,Support Foot Platform with Black Danger Stripes and Hose Print [4789 / 4790 / 4794],27 +41529,Hinge 1 x 3 Locking with 2 Fingers and Claw End,18 +41530,Propeller 8 Blade 5 Diameter,35 +41531,Technic Cylinder 4 x 4 with Pin Holes and Centre Bar,35 +41532,Hinge Cylinder 1 x 3 Locking with 1 Finger and Technic Friction Pin,18 +4153273,Ultimate Builders Set CD-ROM (Set 3800),17 +41533,Turntable 2 x 2 x 2 Side Facing Locking,18 +41535,Dragon Baby,28 +4153678,Paper Test Mat for Mindstorms Robotics Invention System [v2.0],17 +41539,Plate 8 x 8,14 +4154180,Book Belville Fido the Dog,42 +4154181,Book Belville Vanilla,17 +4154182,Belville - Rosita's Wonderful Stable Picture Booklet,17 +4154183,Book Belville Elena,42 +4156387,Book Belville Flora,42 +4156395en,Belville - The Adventures of the Little Princesses Picture Booklet (Set 5834) - English Version,17 +4161,Slope 33° 3 x 3,3 +4161pb01,Slope 33° 3 x 3 with Ten Buttons Print,3 +4161poster,Freestyle Poster,17 +4162,Tile 1 x 8 with Groove,19 +4162p02,"Tile 1 x 8 with ""Farnsworth House"" Print",10 +4162pb017,Tile 1 x 8 with 'John Hancock Center' Print,10 +4162pb018,Tile 1 x 8 with 'Sears Tower' Print,10 +4162pb020,Tile 1 x 8 with 'Empire State Building' Print,10 +4162pb021,Tile 1 x 8 with 'Seattle Space Needle' Print,10 +4162pb026,Tile 1 x 8 with 'STARWARS.LEGO.COM' Print,10 +4162pb031,Tile 1 x 8 with 'ldd.LEGO.com' Print,10 +4162pb039,Tile 1 x 8 with 'mln.LEGO.com' Print,10 +4162pb063,Tile 1 x 8 with 'Willis Tower' Print,10 +4162pb074,Tile 1 x 8 with 'LEGO WORLD 2012' and Brick and Ladybird (Ladybug) Print,10 +4162pr0000,Tile 1 x 8 with 'Billund Airport' Print,10 +4162pr0001,"FLAT TILE 1X8, with Sydney print",10 +4162pr0002,"FLAT TILE 1X8, with Chicago print",10 +4162pr0003,Tile 1 x 8 with 'Fallingwater' Print,10 +4162pr0004,"Tile 1 x 8 with ""The White House"" Print",10 +4162pr0005,"Tile 1 x 8 with ""Burj Khalifa"" Print",10 +4162pr0011,"Tile 1 x 8 with ""Robie House"" Print",10 +4162pr0012,"Tile 1 x 8 with ""Brandenburg Gate"" Print",10 +4162pr0013,Tile 1 x 8 with 'SYDNEY OPERA HOUSE' Print,10 +4162pr0014,"Tile 1 x 8 with ""Brandenburger Tor"" Print",10 +4162pr0015,Tile 1 x 8 with 'September 2011' Print,10 +4162pr0016,Tile 1 x 8 with 'LOM Moulding' Print,10 +4162pr0017,"Tile 1 x 8 with ""Big Ben"" Print",10 +4162pr0019,"Tile 1 x 8 with ""Villa Savoye"" Print",10 +4162pr0020,Tile 1 x 8 with 'Leaning Tower Of Pisa' Print,10 +4162pr0021,Tile 1 x 8 with Lego Inside Tour Print,10 +4162pr0022,"Tile 1 x 8 with ""Sungnyemun"" Print",10 +4162pr0023,Tile 1 x 8 with 'Imperial Hotel' Print,10 +4162pr0024,Tile 1 x 8 with 'KOM Moulding' Print,10 +4162pr0025,Tile 1 x 8 with 'June 2012' Print,10 +4162pr0027,Tile 1 x 8 with 'September 2012' Print,10 +4162pr0028,"Tile 1 x 8 with ""United Nations"" Print",10 +4162pr0029,"Tile 1 x 8 with ""Headquarters"" Print Justified Left",15 +4162pr0030,"Tile 1 x 8 w ""The Eiffel Tower"" Print (Set 21019)",10 +4162pr0031,"Tile 1 x 8 w ""La tour Eiffel"" Print (Set 21019)",10 +4162pr0032,Tile 1 X 8 with 'Marina Bay Sands' Print,10 +4162pr0033,Tile 1 x 8 with HMV Production Print,10 +4162pr0034,Tile 1 x 8 with Nyiregyháza Print,10 +4162pr0035a,Tile 1 x 8 with Trevi Fountain Print,10 +4162pr0035b,Tile 1 x 8 with March 2014 Print,10 +4162pr0036a,Tile 1 x 8 with 'LEGO® House' Print,10 +4162pr0036b,Tile 1 x 8 with 'Lincoln Memorial' Print,10 +4162pr0037,Tile 1 x 8 with 'Flatiron Building' Print,10 +4162pr0038,Tile 1 x 8 with 'LOM Building B' Print,10 +4162pr0040,Tile 1 x 8 with Groove with 'Louvre' Print,10 +4162pr0042,Tile 1 x 8 with 'Burj Khalifa' Print,10 +4162pr0043,Tile 1 x 8 with 'Venice' print,10 +4162pr0044,Tile 1 x 8 with 'Berlin' print,10 +4162pr0045,Tile 1 x 8 with 'New York City' print,10 +4162pr0046,Tile 1 x 8 with 'Buckingham Palace' Print,10 +4162pr0047,Tile 1 x 8 with 'United States Capitol Building' Print,10 +4162pr0050,"Flat Tile 1X8, No. 50",10 +4162pr0050a,"FLAT TILE 1X8, NO.50",10 +4162pr0054,Tile 1 x 8 with Thick Black Stripe print,10 +4162pr0056,"FLAT TILE 1X8, NO. 56 (35147)",10 +4162pr89,Tile 1 x 8 with 'Kladno Campus' Print,10 +4163021,SoundFx CD-ROM (1382),17 +41659,Bionicle Weapon 5 x 5 Shield with Wrench,41 +4165cdb01,"Paper, Cardboard Base for Set 4165",17 +4166,"Train, Track Sleeper Plate 2 x 8 with Cable Grooves",36 +41660,Bionicle Weapon 5 x 5 Shield with Saw Blades Circular,41 +41661,Bionicle Weapon 5 x 5 Shield with Flames,41 +41662,Bionicle Weapon 5 x 5 Shield with Triple Blasters,41 +41663,Bionicle Weapon 5 x 5 Shield with Dual Round Prongs,41 +41664,Bionicle Weapon 5 x 5 Shield with 3 Top Fins,41 +41665,"Bionicle Bohrok Ribcage, Beam 2 x 4 x 7 angled",41 +41666,Technic Arm 1 x 7 with 9 Tooth Double Bevel Gear Ends,52 +41667,Technic Arm 2 x 5 with 1/4 Gear 8 Tooth Double Bevel,52 +41668,Bionicle Foot with Ball Joint Socket 2 x 3 x 5,41 +41669,Technic Tooth 1 x 3 with Axle Hole,41 +41670,Bionicle Ball Joint 4 x 4 x 2 90 Degree with 2 Ball Joints and Axle hole,41 +41671,Bionicle Bohrok Windscreen 4 x 5 x 7 (Solid Color),41 +41671pat0002,Bionicle Bohrok Windscreen 4 x 5 x 7 (Color Streaked into Clear),41 +41671pb03,Bionicle Bohrok Windscreen 4 x 5 x 7 with Black Scales and Nuhvok-Kal Logo,41 +41671pb04,Bionicle Bohrok Windscreen 4 x 5 x 7 with Red Scales and Tahnok-Kal Logo,41 +41671pb05,Bionicle Bohrok Windscreen 4 x 5 x 7 with White Scales and Kohrak-Kal Logo,41 +41671pb06,Bionicle Bohrok Windscreen 4 x 5 x 7 with Green Scales and Lehvak-Kal Logo,41 +41671pb07,Bionicle Bohrok Windscreen 4 x 5 x 7 with Brown Scales and Pahrak-Kal Logo,41 +41671pb08,Bionicle Bohrok Windscreen 4 x 5 x 7 with Blue Scales and Gahlok-Kal Logo,41 +41672,"Bionicle Bohrok Shoulder, Beam 1 x 3 x 7",41 +41677,Technic Beam 1 x 2 Thin,51 +41678,Technic Axle and Pin Connector Perpendicular Double Split,12 +41679,Technic Rotation Joint [Half-Ball 3L Then Beam],55 +4168,Support 1 x 16 Lattice (Train Signal Mast),34 +41680,Technic Pin with Friction with Click Rotation Ring,53 +41681,Technic Rotation Joint Socket with 3L Thick Beam,55 +4168410,CD-Rom for Robotics Invention System Upgrade Kit (2.0),17 +4169,Bracket 2 x 3 - 1 x 3 (Train Signal Stand),34 +4170,"Electric, Train Light Prism 1 x 6 Holder",45 +4171,"Electric, Train Light Prism 1 x 3",45 +41732,"Technic Pin Joiner Round with Slot, Bar and Pivot",12 +41733,Sports Soccer Goalie Stick Holder Base,27 +4173447,"Paper, Cardboard Backdrop with Bank Print / Arched Window Print",17 +41747,Wedge 6 x 2 Right,6 +4174723,SoundFx CD-ROM [1376],17 +41747pb002,Wedge 6 x 2 Right with Shark Skeleton Print [6735],6 +41747pb003,Wedge 6 x 2 Right with SW Speeder Print [7103],6 +41747pb004,Wedge 6 x 2 Right with Silver Windscreen Print [10026],6 +41747pb005,Wedge 6 x 2 Right with 3 Ovals Print [8356],6 +41747pb006,Wedge 6 x 2 Right with Racer Hot Scorcher 4 Print [4584],6 +41747pb007,"Wedge 6 x 2 Right with Hose, Grille and Hatch Print [4791]",6 +41747pb008,Wedge 6 x 2 Right with Submarine Print [4793],6 +41747pb009,Wedge 6 x 2 Right with Sleek Silver and Red Print,6 +41747pb010,Wedge 6 x 2 Right with Police World City Print,6 +41747pb011,Wedge 6 x 2 Right with SW Mini AT-TE Print [4495],6 +41747pb012,Wedge 6 x 2 Right with Blue and Silver Side Print [8374],6 +41747pb013,Wedge 6 x 2 Right with White/Orange Curves and Black Fade Print [8380],6 +41747pb014,Wedge 6 x 2 Right with Red/Yellow/White Flame Print and 99 Print [8382],6 +41747pb015,Wedge 6 x 2 Right with Blue and Silver Wraparound Print [8374],6 +41747pb016,Wedge 6 x 2 Right with Alpha Team Arctic Print [4744],6 +41747pb017,Wedge 6 x 2 Right with Police Blue Line Print [4669],6 +41747pb018,Wedge 6 x 2 Right with ARC-170 Print [7259],6 +41747pb019,"Wedge 6 x 2 Right with Reptile Skin, Red Eye, White Teeth Print [7780]",6 +41747pr0001,Wedge 6 x 2 Right with Bricks and Hieroglyphs Print [7327],6 +41747pr0005,Wedge 6 x 2 Right with Blue Water Splash Print [7590],6 +41747px1,Wedge 6 x 2 Right with Purple Wing Print [1374],6 +41748,Wedge 6 x 2 Left,6 +41748pb002,Wedge 6 x 2 Left with Shark Skeleton Print [6735],6 +41748pb003,Wedge 6 x 2 Left with SW Speeder Print [7103],6 +41748pb004,Wedge 6 x 2 Left with Silver Windscreen Print [10026],6 +41748pb005,Wedge 6 x 2 Left with 3 Ovals Print [8356],6 +41748pb006,Wedge 6 x 2 Left with Racer Hot Scorcher 4 Print [4584],6 +41748pb007,"Wedge 6 x 2 Left with Hose, Grill, and Hatch Print [4791]",6 +41748pb008,Wedge 6 x 2 Left with Submarine Print [4793],6 +41748pb009,Wedge 6 x 2 Left with Sleek Silver and Red Print [8357],6 +41748pb010,Wedge 6 x 2 Left with Police World City Print,6 +41748pb011,Wedge 6 x 2 Left with SW Mini AT-TE Print [4495],6 +41748pb012,Wedge 6 x 2 Left with Blue and Silver Side Print [8374],6 +41748pb013,Wedge 6 x 2 Left with White/Orange Curves and Black Fade Print [8380],6 +41748pb014,Wedge 6 x 2 Left with Red/Yellow/White Flame and 99 Print [8382],6 +41748pb015,Wedge 6 x 2 Left with Blue and Silver Wraparound Print [8374],6 +41748pb016,Wedge 6 x 2 Left with Alpha Team Arctic Print [4744],6 +41748pb017,Wedge 6 x 2 Left with Police Blue Line Print [4669],6 +41748pb018,Wedge 6 x 2 Left with ARC-170 Print [7259],6 +41748pb019,"Wedge 6 x 2 Left with Reptile Skin, Red Eye, White Teeth Print [7780]",6 +41748pr0001,Wedge 6 x 2 Left with Bricks and Hieroglyphs Print [7237],6 +41748pr0005,Wedge 6 x 2 Left with Blue Water Splash Print [7590],6 +41748px1,Wedge 6 x 2 Left with Purple Wing Print [1374],6 +41749,Wedge 8 x 3 x 2 Open Right,6 +41749pb01,Wedge 8 x 3 x 2 Open Right with Sand Green Square Print,6 +41749px2,Wedge 8 x 3 x 2 Open Right with Red and Black Stripes and Green Scales Print [4589],6 +4175,Plate Special 1 x 2 with Ladder,9 +41750,Wedge 8 x 3 x 2 Open Left,6 +41750pb01,Wedge 8 x 3 x 2 Open Left with Sand Green Square Print,6 +41750px2,Wedge 8 x 3 x 2 Open Left with Red and Black Stripes and Green Scales Print,6 +41751,Windscreen 8 x 6 x 2 Curved,47 +41751pr001,Windscreen 8 x 6 x 2 Curved with Evil Skull Logo and Windows Print,47 +41751pr005,Windscreen 8 x 6 x 2 Curved with Red and Silver Racing Stripes Print [8420],47 +41751pr006,Windscreen 8 x 6 x 2 Curved with Alpha Team Snow Crawl Print [4745],47 +41751pr1,Windscreen 8 x 6 x 2 Curved with 18 and Blue / Yellow Racing Print [4585],47 +41751pr2,Windscreen 8 x 6 x 2 Curved with Silver & Yellow Hose and Window Print [4792 / 4794],47 +41751pr3,Windscreen 8 x 6 x 2 Curved with 56 and Yellow/Orange/Dark Gray Racing Print [4587],47 +41751pr4,Windscreen 8 x 6 x 2 Curved with Black Lines Print [4620],47 +41751pr6,Windscreen 8 x 6 x 2 Curved with Lime / Green RC Racer Print,47 +41752,Rubber Band / Belt Holder 2 x 4 x 2 1/3,31 +41753,Rubber Band / Belt Holder 2 x 6 x 2 1/3,31 +4176,Windscreen 2 x 6 x 2,47 +41761,Wedge 6 x 8 x 2 Triple Inverted,6 +41764,Wedge 6 x 2 Inverted Right,6 +41765,Wedge 6 x 2 Inverted Left,6 +41766,Slope Curved 8 x 2 x 2,37 +41767,Wedge 4 x 2 Right,6 +41768,Wedge 4 x 2 Left,6 +41769,Wedge Plate 4 x 2 Right,49 +41770,Wedge Plate 4 x 2 Left,49 +4177936,Spybotics CD-ROM,17 +4178,Train Base 6 x 16,36 +4178a,Train Base 6 x 16 Old with Magnets,39 +4179472,"Paper, Certificate of Authenticity for Set 10020 Limited Edition",17 +4180,"Brick, Modified 2 x 4 with Wheels Holder Freestyle",29 +4180c01,"Wheels Train Spoked Small (23mm D.) and Black Brick, Modified 2 x 4 [Black]",29 +4180c02,"Brick, Modified 2 x 4 with Wheels, Freestyle Red",29 +4180c03,"Brick Special 2 x 4 with Wheels, Freestyle White",29 +4180c04,"Wheels Train Spoked Small (23mm D.) and Black Brick, Modified 2 x 4 [Red]",29 +4180c05,"Wheels Train Spoked Large (29mm D.) and Black Brick, Modified 2 x 4 [Red]",29 +4181,Door 1 x 4 x 5 Train Left,16 +41819,Sports Field Section 8 x 16 with Horizontal Slot,9 +41819c01,"Sports Field Section 8 x 16 with Horizontal Slot and Sliding Holder, Assembly",9 +4181p01,Door 1 x 4 x 5 Train Left with Yellow Bottom Half Print,16 +4181p02,Door 1 x 4 x 5 Train Left with Red Bottom Half Print,16 +4181p03,Door 1 x 4 x 5 Train Left with White Stripe Print [7745],16 +4181p04,Door 1 x 4 x 5 Train Left with Red/White/Blue Stripe Print,16 +4181p05,Door 1 x 4 x 5 Train Left with Blue Bottom Half Print,16 +4181p06,Door 1 x 4 x 5 Train Left with Red/Blue Stripe Print,16 +4181p07,Door 1 x 4 x 5 Train Left with Yellow Stripe Print [5581],16 +4181p08,Train Door 1 x 4 x 5 Left White Stripe Train Logo Print,16 +4181p09,"Door 1 x 4 x 5 Train Left with Green Stripe, Train Logo and Rivets Print [4512]",16 +4182,Door 1 x 4 x 5 Train Right,16 +4182214,Star Wars R2-D2 / C-3PO Droid Collectors Set Poster,17 +4182739,Plastic Duplo Playmat with River Print [3612],38 +4182p01,Door 1 x 4 x 5 Train Right with Yellow Bottom Half Print,16 +4182p02,Door 1 x 4 x 5 Train Right with Red Bottom Half Print,16 +4182p03,Door 1 x 4 x 5 Train Right with White Stripe Print [7745],16 +4182p04,Door 1 x 4 x 5 Train Right with Red/White/Blue Stripe Print,16 +4182p05,Door 1 x 4 x 5 Train Right with Blue Bottom Half Print,16 +4182p06,Door 1 x 4 x 5 Train Right with Red/Blue Stripe Print,16 +4182p07,Door 1 x 4 x 5 Train Right with Yellow Stripe Print [5581],16 +4182p08,Train Door 1 x 4 x 5 Right White Stripe Train Logo Print,16 +4182p09,"Door 1 x 4 x 5 Train Right with Green Stripe, Train Logo and Rivets Print [4512]",16 +4183,Glass for Train Door,16 +4185,Technic Wedge Belt Wheel [aka Pulley],29 +41854,Mudguard 2 x 4 with Flared Wings,36 +41854pb01,"Vehicle, Mudguard 2 x 4 with Flared Wings, '66' and White Print",36 +41854pb03,"Vehicle, Mudguard 2 x 4 with Flared Wings, White Stripe and Red Fade Print",36 +41854pb04,"Vehicle, Mudguard 2 x 4 with Flared Wings, White/Black Stripe and Black Fade Print",36 +41854pb05,"Vehicle, Mudguard 2 x 4 with Flared Wings, Orange Stripe & Red Fade with 3 Silver Stars Print [4595/4591]",36 +41854pb06,"Vehicle, Mudguard 2 x 4 with Flared Wings, White & Black Stripes and Yellow Fade Print",36 +41854pb07,"Vehicle, Mudguard 2 x 4 with Flared Wings, Red/Black Stripe and Green Fade Print",36 +41854pb08,"Vehicle, Mudguard 2 x 4 with Flared Wings, Black/Red Stripes and White Honeycomb Print",36 +41854pb09,"Vehicle, Mudguard 2 x 4 with Flared Wings, Black/Orange/White Flames Print",36 +41854pb10,"Vehicle, Mudguard 2 x 4 with Flared Wings, '45' and Flames Print",36 +41854pb11,"Vehicle, Mudguard 2 x 4 with Flared Wings, Red/Silver Stripes Print (Set 8364)",36 +41854pb12,"Vehicle, Mudguard 2 x 4 with Flared Wings, Blue/Black/Silver/Yellow Stripes Print",36 +41854pb13,"Vehicle, Mudguard 2 x 4 with Flared Wings, Silver/Red/Black Flame Tips Print",36 +41854pb14,"Vehicle, Mudguard 2 x 4 with Flared Wings, Orange Dots and Dark Gray Lines Print",36 +41854pb3,"Vehicle, Mudguard 2 x 4 with Flared Wings, White Stripe and Red/Black Fade Print",36 +41854px1,"Vehicle, Mudguard 2 x 4 with Flared Wings, Orange Dots and Orange Lines Print",36 +41855,Brick Curved 2 x 2 x 2/3 Two Studs - Lip End,37 +41855pb01,"Brick, Modified 2 x 2 x 2/3 Two Studs, Lip End with '3' and Checker Print",37 +41855pb02,"Brick Curved 2 x 2 x 2/3 Two Studs, Curve Slope End with '13' and Red Triangle Print",37 +41855pb03,"Brick Curved 2 x 2 x 2/3 Two Studs, Curve Slope End with 66, Black Triangle, White Square Print",37 +41855pb04,"Brick Curved 2 x 2 x 2/3 Two Studs, Curved Slope End with 6 and Black Tyre Tread Print [4582]",37 +41855pb05,"Brick, Modified 2 x 2 x 2/3 Two Studs, Lip End with Blue/White Stripe and Silver Side Grills Print",37 +41855pb06,"Brick, Modified 2 x 2 x 2/3 Two Studs, Lip End with 'M', Black/Red/Green Print",37 +41855pb07,"Brick Curved 2 x 2 x 2/3 Two Studs, Curved Slope End with Red/Black Circle Print [8385]",37 +41855pb08,"Brick Curved 2 x 2 x 2/3 Two Studs, Curve Slope End with Red/White Flame on Yellow, Black Stripes Print",37 +41855pb09,"Brick Curved 2 x 2 x 2/3 Two Studs, Lip End with Silver/Black/Red Number 3 Left Half Print [8381]",37 +41855pb10,"Brick Curved 2 x 2 x 2/3 Two Studs, Lip End with Silver/Black/Red Number 3 Right Half Print [8381]",37 +41855pb11,"Brick, Modified 2 x 2 x 2/3 Two Studs, Lip End with Four White Lines Print",37 +41855px1,"Brick Curved 2 x 2 x 2/3 Two Studs, Lip End with '37' and Red / Orange / Blue Print [4595]",37 +4186,Baseplate 48 x 48,1 +41861c01,"Light Gray Pullback Motor 6 x 2 x 1 1/3 with Black Base, White Shafts (Motor 1)",44 +41862,Plate Special 2 x 2 with Grills,9 +4186302,Dark Gray Storage/Sorting Tray - Six Compartment,17 +41864,"Wheel Small Wide Hard Plastic with Axle hole, Tread",29 +41865,"Wheel Small Wide Hard Plastic with Axle hole, Slick",29 +4186a,Baseplate 50 x 50,1 +4186p01,Baseplate 48 x 48 with Playing Field Print [3302],1 +4187,Baseplate 8 x 32,1 +41875,"Minifig Head Cover, Rabbit with Long Ears [4051 / 4299]",13 +41879a,Hips and Legs Short [without Hole],13 +41879b,Hips and Legs Short [with Hole],13 +41879bpr0010,Minifig Legs Short with Magenta Open Toe Shoes Print,13 +41879pb003,Minifig Legs Short with Dark Bluish Gray Feet and Side Piping Print,13 +41879pr0005,Minifig Legs Short with 4 Dark Blue Toes on each Foot print - Stitch,13 +41879pr0007,Minifig Legs Short with Dark Blue Feet/Shoes - Pizza Planet Alien,13 +41880,Minifig Head Modified Yoda,13 +4188023,Dark Gray Storage/Sorting Tray - Eight Compartment,17 +41881,Windscreen 12 x 6 x 6 Curved,47 +41882,Minifig Head Modified Ewok,13 +41883,Windscreen 6 x 4 x 2 Wedge Curved,47 +41889,"Torso/Head Mechanical, Super Battle Droid",13 +41890,"Arm Mechanical, Super Battle Droid",13 +41893,Tyre 68.8 x 36 H,29 +41894,Technic Steering Arm [RC Vehicles],25 +4189423pb01,Orient Card Hazards - Catwalk,17 +4189423pb02,Orient Card Items - Torch,17 +4189423pb03,Orient Card Baddies - Tygurah,17 +4189425pb01,Orient Card Baddies - Yeti,17 +4189425pb02,Orient Card Heroes - Miss Pippin Reed (Mount Everest),17 +4189425pb03,Orient Card Hazards - Cave with Yeti,17 +4189429pb01,Orient Card Baddies - Jun-Chi,17 +4189429pb02,Orient Card Hazards - Jun-Chi's Gate,17 +4189429pb03,Orient Card Items - Spear,17 +4189430pb01,Orient Card Heroes - Babloo,17 +4189430pb02,Orient Card Heroes - Miss Pippin Reed (India),17 +4189430pb03,Orient Card Hazards - Lord Sinister's Car,17 +4189430pb04,Orient Card Items - Whip,17 +4189430pb05,Orient Card Hazards - Elephant with Cart,17 +4189431pb01,Orient Card Items - Sextant,17 +4189431pb02,Orient Card Items - Rifle,17 +4189431pb03,Orient Card Items - Pickaxe,17 +4189431pb04,Orient Card Heroes - Dr. Kilroy (Mount Everest),17 +4189431pb05,Orient Card Hazards - Balloon,17 +4189434pb01,Orient Card Items - Musket (China),17 +4189434pb02,Orient Card Items - Sextant (China),17 +4189434pb03,Orient Card Hazards - Emperor's Ship,17 +4189435pb01,Orient Card Items - Musket,17 +4189435pb02,Orient Card Items - Backpack (Mount Everest),17 +4189435pb03,Orient Card Items - Binoculars (Mount Everest),17 +4189435pb04,Orient Card Items - Pistol (Mount Everest),17 +4189435pb05,Orient Card Items - Ice Pick,17 +4189435pb06,Orient Card Items - Snowshoes,17 +4189435pb07,Orient Card Heroes - Johnny Thunder (Mount Everest),17 +4189435pb08,Orient Card Baddies - Ngan Pa,17 +4189435pb09,Orient Card Heroes - Sherpa Sanjye Dorje,17 +4189435pb10,Orient Card Baddies - Lord Sinister (Mount Everest),17 +4189435pb11,Orient Card Hazards - Axe Swing,17 +4189435pb12,Orient Card Hazards - Rope Bridge,17 +4189435pb13,Orient Card Hazards - Airplane,17 +4189435pb14,Orient Card Hazards - Cave Opening,17 +4189435pb15,Orient Card Hazards - Open Doors,17 +4189435pb16,Orient Card Hazards - Johnny Thunder Falling,17 +4189435pb17,Orient Card Items - Gold Sword,17 +4189435pb18,Orient Card Items - Mountain Map,17 +4189436pb01,Orient Card Heroes - Johnny Thunder,17 +4189436pb02,Orient Card Baddies - Lord Sinister (India),17 +4189436pb03,Orient Card Heroes - Dr. Kilroy,17 +4189436pb04,Orient Card Baddies - Guard,17 +4189436pb05,Orient Card Baddies - Maharaja Lallu,17 +4189436pb06,Orient Card Items - Gold Shield,17 +4189436pb07,Orient Card Hazards - Tapestry,17 +4189436pb08,Orient Card Items - Scimitars,17 +4189436pb09,Orient Card Items - Shovel,17 +4189436pb10,Orient Card Items - Pistol (India),17 +4189436pb11,Orient Card Items - Binoculars (India),17 +4189436pb12,Orient Card Items - Polearm,17 +4189436pb13,Orient Card Items - Backpack (India),17 +4189436pb14,Orient Card Items - Indian Map,17 +4189436pb15,Orient Card Hazards - Scorpion Ball,17 +4189436pb16,Orient Card Hazards - Guard Under Arch,17 +4189436pb17,Orient Card Hazards - Trap Door,17 +4189436pb18,Orient Card Hazards - Elephant,17 +4189440pb01,Orient Card Items - Key,17 +4189440pb02,Orient Card Items - Rifle (China),17 +4189440pb03,Orient Card Items - Pistol (China),17 +4189440pb04,Orient Card Items - Cutlass,17 +4189440pb05,Orient Card Items - Spear (Dragon Fortress),17 +4189440pb06,Orient Card Items - Binoculars (China),17 +4189440pb07,Orient Card Items - Pickaxe (China),17 +4189440pb08,Orient Card Items - Shovel (China),17 +4189440pb09,Orient Card Items - Magnifying Glass,17 +4189440pb10,Orient Card Baddies - Emperor Chang Wu,17 +4189440pb11,Orient Card Heroes - Dr. Kilroy (China),17 +4189440pb12,Orient Card Heroes - Johnny Thunder (China),17 +4189440pb13,Orient Card Baddies - Guard,17 +4189440pb14,Orient Card Heroes - Jing Lee,17 +4189440pb15,Orient Card Heroes - Miss Pippin Reed (China),17 +4189440pb16,Orient Card Baddies - Lord Sinister (China),17 +4189440pb17,Orient Card Hazards - Dragon Fortress Back Door,17 +4189440pb18,Orient Card Hazards - Dragon Fortress Guardian,17 +4189440pb19,Orient Card Hazards - Dragon Fortress Trap Door,17 +4189440pb20,Orient Card Hazards - Dragon Fortress Halftrack,17 +4189440pb21,Orient Card Hazards - Dragon Fortress Front Door,17 +4189440pb22,Orient Card Hazards - Dragon Fortress Spear Trap,17 +4189440pb23,Orient Card Hazards - Dragon Fortress Ladder,17 +4189440pb24,Orient Card Hazards - Dragon Fortress Door with Keyhole,17 +4189440pb25,Orient Card Hazards - Dragon Fortress Side Door,17 +4189440pb26,Orient Card Items - China Map,17 +4189440pb27,Orient Card Prizes - Golden Dragon,17 +4189440pb28,Orient Card Items - Gold Helmet,17 +4189442pb01,Orient Gameboard Square - Everest 1,17 +4189442pb02,Orient Gameboard Square - Everest 2,17 +4189442pb03,Orient Gameboard Square - Everest 3,17 +4189442pb04,Orient Gameboard Square - Everest 4,17 +4189442pb05,Orient Gameboard Square - Everest 5,17 +4189443pb01,Orient Gameboard Square - Jungle 1,17 +4189443pb02,Orient Gameboard Square - Jungle 2,17 +4189443pb03,Orient Gameboard Square - Jungle 3,17 +4189443pb04,Orient Gameboard Square - Jungle 4,17 +4189443pb05,Orient Gameboard Square - Jungle 5,17 +4189443pb06,Orient Gameboard Square - Jungle 6,17 +4189443pb07,Orient Gameboard Square - Jungle 7,17 +4189445pb01,Orient Gameboard Square - China 1,17 +4189445pb02,Orient Gameboard Square - China 2,17 +4189445pb03,Orient Gameboard Square - China 3,17 +4189445pb04,Orient Gameboard Square - China 4,17 +4189445pb05,Orient Gameboard Square - China 5,17 +4189445pb06,Orient Gameboard Square - China 6,17 +4189445pb07,Orient Gameboard Square - China 7,17 +4189445pb08,Orient Gameboard Square - China 8,17 +4189445pb09,Orient Gameboard Square - China 9,17 +4189445pb10,Orient Gameboard Square - China 10,17 +4189445pb11,Orient Gameboard Square - China 11,17 +4189503,Plastic Playmat Basketball NBA Court [3428],17 +41896,Wheel 43.2 x 26 Technic Racing Small with 3 Pinholes,29 +41897,Tyre 56 x 28 ZR Street,29 +4189983,"Harry Potter Poster, Chamber of Secrets Series, early, features some Sorcerer's Stone sets",17 +4191767,U.S.S. Constellation Poster (set 10021-1),17 +4195285,"Paper, Cardboard Backdrop for Sets 3548 / 3550, Basketball Backboard",17 +4195292,"Cardboard Backdrop for Set 3549, Basketball Backboard",17 +4195stk01,Sticker for Set 4195 - (97600/4637131),17 +4196,Duplo Plate 6 x 12,4 +41969,Duplo Support 2 x 3 x 3 with 2 Top Studs,4 +4197,"Duplo, Brick 2 x 6 x 2 with Curved Ends",4 +41970,"Duplo, Brick 1 x 3 x 2 Round Top",4 +41970pb09,"Duplo, Brick 1 x 3 x 2 Round Top with Wheel and Tire Print",4 +41978,"Duplo, Brick 2 x 2 x 2 with Vertical Grooves",4 +4197pb003,"Duplo, Brick 2 x 6 x 2 Curved Ends with 'Zoo' Print",4 +4197pb006,"Duplo, Brick 2 x 6 x 2 Curved Ends with 'Zoo' in Form of Snake Print",4 +4198,"Duplo, Brick 2 x 4 x 2 Rounded Ends",4 +41983,Troll - HP,13 +4198pb02,"Duplo, Brick 2 x 4 x 2 Rounded Ends with Dimpled Face Print",4 +4198pb03,"Duplo, Brick 2 x 4 x 2 Rounded Ends with Panda Face Type 1 (colored) Print",4 +4198pb06,"Duplo, Brick 2 x 4 x 2 Rounded Ends with Tiger Face Print",4 +4198pb17,"Duplo, Brick 2 x 4 x 2 Rounded Ends with Octan Logo Print",4 +4198pb18,"Duplo, Brick 2 x 4 x 2 Rounded Ends with 2 Eyes with Pupils Print",4 +4199,Brick 2 x 8,4 +4199pb02,"Duplo, Brick 2 x 8 with 'WORLD GRAND PRIX' Print",4 +420,"Ladder Two Piece, Bottom Section",32 +42001,DUPLO ROYAL CROWN,4 +42003,Technic Axle and Pin Connector Perpendicular 3L with 2 Pin Holes,12 +4200stk01,Sticker for Set 4200 - (10010484/6004715),17 +4201,Brick 8 x 8,11 +42013,"Belville, Clothes Ice Skate",42 +4202,Brick 4 x 12,11 +42021,Cockpit 8 x 6 x 2 Curved,6 +42022,Slope Curved 6 x 1,37 +42022p01,"Slope, Curved 6 x 1 with SW Control Panel Print",37 +42022pb01,Slope Curved 6 x 1 with Flame Print,37 +42022pb02,Slope Curved 6 x 1 with Black Vent Print (SW Republic Gunship),37 +42022pb03,"Slope, Curved 6 x 1 with Hydraulic Hose and Black Chevrons Print",37 +42022pb05,Slope Curved 6 x 1 with Silver and Black Print Left,37 +42022pb06,Slope Curved 6 x 1 with Silver and Black Print Right,37 +42022pb08,Slope Curved 6 x 1 with Police Blue Line and Headlight Print Right,37 +42022pb09,Slope Curved 6 x 1 with Police Blue Line and Headlight Print Left,37 +42022px3,Slope Curved 6 x 1 with Repeating Red and Orange Scales Print,37 +42022px4,Slope Curved 6 x 1 with Repeating Orange and Black Hexagonal Scales Print,37 +42022px6,Slope Brick Curved 6 x 1 with Repeating Red and Black Scales Print,37 +42023,Slope Curved 6 x 1 Inverted,37 +4202476,"Sword, Scimitar",17 +42025,"Duplo, Brick 1 x 3 x 2 Triangle",4 +42025pb03,"Duplo, Brick 1 x 3 x 2 Triangle Road Sign with Construction Worker Print",4 +42025pb06,"Duplo, Brick 1 x 3 x 2 Triangle Road Sign with Steam Engine Print",4 +42026,"Duplo, Plate 2 x 2 with Tow Rope Holder Arms",4 +4202stk01,Sticker for Set 4202,17 +42030,Duplo Hose Flexible 11L with Grabber Hand Ends and Middle Stud,4 +42038,Sticker Sheet for 3424-1,17 +42039,Sticker Sheet for 3423-1,17 +4204,Brick 8 x 16,11 +42042,Bionicle Krana Holder 3 x 4,41 +42042und,Bionicle Krana Mask - Undetermined Type (for set inventories only - Do Not Sell with this entry),41 +4204587,Guurahk CD-Rom,17 +4204590,Panrahk CD-Rom,17 +42046stk01,Sticker Sheet for Set 42046-1 24858/6135282,17 +42060,Wedge 12 x 3 Right,6 +42060pb01,Wedge 12 x 3 Right with Gray Panels & Lime/Med Orange/Dk Red Markings Print,6 +42060pb02,Wedge 12 x 3 Right with Shark Skeleton and Blue/Silver Stripes Print,6 +42060pb03,Wedge 12 x 3 Right with Black/Orange Checkered/Striped Race Print,6 +42060pb05,Wedge 12 x 3 Right with Alpha Team Arctic Wraparound Print,6 +42060pr0001,Wedge 12 x 3 Right with Bricks and Hieroglyphs Print,6 +42060pr0002,Wedge 12 x 3 Right with SW White Stripe and Starburst Print [7751],6 +42060pr0003,Wedge 12 x 3 Right with White Panels and Black Line Print [9497],6 +42060px1,"Wedge 12 x 3 Right with Silver, Green, Orange Print (Set 7133)",6 +42060px5,Wedge 12 x 3 Right with Blue Shark and Silver Wave Print,6 +42061,Wedge 12 x 3 Left,6 +42061pb01,Wedge 12 x 3 Left with Gray Panels & Lime/Med Orange/Dk Red Markings Print,6 +42061pb02,Wedge 12 x 3 Left with Shark Skeleton and Blue/Silver Stripes Print,6 +42061pb03,Wedge 12 x 3 Left with Black/Orange Checkered/Striped Race Print,6 +42061pb05,Wedge 12 x 3 Left with Alpha Team Arctic Wraparound Print,6 +42061pr0001,Wedge 12 x 3 Left with Bricks and Hieroglyphs Print,6 +42061pr0002,Wedge 12 x 3 Left with SW White Stripe and Starburst Print [7751],6 +42061pr0003,Wedge 12 x 3 Left with White Panels and Black Line Print [9497],6 +42061px1,"Wedge 12 x 3 Left with Silver, Green, Orange Print (Set 7133)",6 +42061px5,Wedge 12 x 3 Left with Blue Shark and Silver Wave Print,6 +42063stk01,Sticker Sheet for Set 42063-1 31861/6179834,17 +4207,Ladder 14 x 2.5,32 +42073,Windup Motor 2 x 6 x 2 1/3 Undetermined Shaft Base Type / Axle Length (Sports),44 +42073c02,Windup Motor 2 x 6 x 2 1/3 with Raised Shaft Base - Long Axle,44 +42073cx1,"Motor Wind-Up 2 x 6 x 2 &amp; 1/3 with Short TrLuWhite Axle basketball, football, soccer",44 +42074,Bionicle 2 x 3 Axle Connector with Tooth,41 +42077,DUPLO STICK WITH FLOWER,24 +4208,String Reel 2 x 4 x 2 Drum,31 +4209,String Reel 2 x 4 x 2 Holder,31 +42090,Monkey Tail - Curled [4094],28 +42093,Duplo Vehicle Base 4 x 4 with 2 x 4 Studs and Black Wheels,4 +4209p01,String Reel 2 x 4 x 2 Holder with Classic Fire Logo Print,31 +4209p02c02,String Reel 2 x 4 x 2 Complete with Fire Logo Badge Print and String and Light Gray Hose Nozzle Simple,24 +4209p05,String Reel 2 x 4 x 2 Holder with Highway Print,31 +4209p70,Hose Reel 2 x 4 x 2 Holder with Fire Shield Print,31 +4209pb01,String Reel 2 x 4 x 2 Holder with Coast Guard Print,31 +421,"Ladder Two Piece, Top Section",32 +4210,Minifig Hose Nozzle Simple,27 +42109,Minifig Head Modified Goblin,13 +4211,Vehicle Base 4 x 5,36 +42114,Minifig Lightsaber Hilt Angled,27 +4212,Car Base 10 x 4 x 2/3 with 2 x 2 Center,24 +4212151,Plastic Belville Doll House Roof [5940],38 +4212158,Plastic Belville Stable Roof with Shingles Print [5941],38 +4212a,"Vehicle, Base 4 x 10 x 2/3 with 2 x 2 Recessed Center with Center Hole (Early Version)",36 +4212b,"Vehicle, Base 4 x 10 x 2/3 with 2 x 2 Recessed Center with Smooth Underside, No Center Hole",36 +4213,Hinge Vehicle Roof 4 x 4,18 +4214,Hinge Vehicle Roof Holder 1 x 4 x 2,18 +4215966,"Plastic Backdrop, Belville Doll House Living Room [5940]",38 +4215967,"Plastic Backdrop, Belville Doll House Kitchen [5940]",38 +4215969,"Plastic Backdrop, Belville Doll House Bedroom [5940]",38 +4215974,"Plastic Backdrop, Belville Doll House Bathroom [5940]",38 +4215976,"Plastic Backdrop, Belville Riding School [5941]",38 +4215978,"Plastic Backdrop, Belville Dressing Room [5942]",38 +4215a,Panel 1 x 4 x 3 [Solid Studs],23 +4215ap01,Panel 1 x 4 x 3 - Solid Studs with Red Stripe and White Stripes Print,23 +4215ap02,Panel 1 x 4 x 3 - Solid Studs with Red Cross and Stripe Print [6680 / 6691],23 +4215ap03,Panel 1 x 4 x 3 - Solid Studs with Red Stripe Print [6691],23 +4215ap04,Panel 1 x 4 x 3 - Solid Studs with Blue Stripe Print Right [5580],23 +4215ap05,Panel 1 x 4 x 3 - Solid Studs with Red/Blue Stripe Right Print [5580],23 +4215ap06,Panel 1 x 4 x 3 - Solid Studs with Blue Stripe Print Left [5580],23 +4215ap07,Panel 1 x 4 x 3 - Solid Studs with Red/Blue Stripe Left Print [5580],23 +4215ap08,Panel 1 x 4 x 3 - Solid Studs with Recycling Arrows Print [6693 / 9354],23 +4215ap09,Panel 1 x 4 x 3 - Solid Studs with TV Logo Print [6661],23 +4215ap10,Panel 1 x 4 x 3 - Solid Studs with UNICEF Logo Print [106],23 +4215ap18,Panel 1 x 4 x 3 - Solid Studs with Black 'POLICE' Bar and White Stripes Print [6684],23 +4215ap19,Panel 1 x 4 x 3 - Solid Studs with Snowflake Print [8660],23 +4215ap24,Panel 1 x 4 x 3 - Solid Studs with Diagonal 1/2 Black Left Print [7745],23 +4215ap25,Panel 1 x 4 x 3 - Solid Studs with Diagonal 1/2 Black Right Print [7745],23 +4215ap30,Panel 1 x 4 x 3 - Solid Studs with Jolly Roger Print [6286],23 +4215ap66,Panel 1 x 4 x 3 - Solid Studs with Red Cross Print [1067 / 6688],23 +4215apx3,Panel 1 x 4 x 3 - Solid Studs with Coast Guard Print [6387],23 +4215apx4,Panel 1 x 4 x 3 - Solid Studs with White Fireman Cap and 2 Yellow Axes Print [6389],23 +4215b,Panel 1 x 4 x 3 [Hollow Studs],23 +4215bp70,Panel 1 x 4 x 3 with Tricycle and Wrench Print,24 +4215bp71,Panel 1 x 4 x 3 with Telephone in Blue/Green Circle Print,23 +4215bpx1,Panel 1 x 4 x 3 with Potions Print,23 +4215bpx15,Panel 1 x 4 x 3 with Red Café / Black Semi-Truck Print [6329],23 +4215bpx2,Panel 1 x 4 x 3 with SW Rebel Control Center Planet and Death Star Print [7180],23 +4215bpx26,Panel 1 x 4 x 3 with Motorcycle and Wrench Print [6426],23 +4215bpx27,Panel 1 x 4 x 3 with Cargo Print [6330],23 +4215pb067,Panel 1 x 4 x 3 with Police Red Line and Yellow Star Badge Print,23 +4216,Brick Special 1 x 2 with Groove,5 +4217,Brick Special 1 x 14 Grooved,5 +4218,Garage Roller Door Section without Handle,16 +4219,Garage Roller Door Section with Handle,16 +4220,Arm Grab Jaw Holder,18 +4221,Arm Grab Jaw,18 +4222,Fabuland Chair,42 +4222a,Fabuland Chair,27 +4223,Fabuland Table ca2,42 +42234,"Duplo, Brick 1 x 2 x 2 with Side Cutouts and Channel in Top",4 +42235,Duplo Cement Mixer Drum on Stand (Dizzy),4 +42236,Duplo Plate 1 x 2 with Overhang (Needs Work),4 +42236px1,"Duplo, Plate 1 x 2 with Overhang with Eyes and Smile Print (Dizzy Front)",4 +4226398,"Pencil, Clikits Pink Heart Print",17 +4228,Slope Inverted 33 5 x 6 x 2,47 +42289,Motor Pull Back 2 x 6 x 1.667 Type 2 [Fast] Black Base/White Axle,44 +4229,"Engine, Strakes, 2 x 2 Thin Top Plate",35 +4229b,Plate 2 x 2 with Jet Engine and Axleholder Centre,14 +4231,Fabuland Mailbox 4 x 4 x 2 Top,7 +4232,Spybotics Module,45 +4232rc,Spybotics Remote Control,45 +4232sc,"Electric, Spybotics Serial Cable",45 +42332,"Belville, Clothes Skirt Long with White Fur Trim (Princess Vanilla #5842)",42 +4234,Motor Wind-Up 4 x 10 x 3 Key,44 +4237,Container - Trunk Bottom 4 x 6 x 2 1/3,7 +4238,Container - Trunk Lid 4 x 6 x 1 2/3,7 +42380a,Foam Soccer Target 10 x 9 with One Dogleg Hole,17 +42380b,Foam Soccer Target 10 x 9 with Two Holes,17 +424,Technic Hub / Handle 1 x 1,26 +42409,Snow Flake 4 x 4,33 +42411,"Foam, Soccer Goalie Mitt Unpunched Sheet",24 +42411a,Foam Soccer Goalie Mitt Large,17 +42411b,Foam Soccer Goalie Mitt Small,17 +4243440,Plastic Belville Horse Wings [5961],38 +42443,"Minifig Head Cover, Werewolf",27 +42444,Minifig Hair Pointed [Vampire / Wolverine],13 +42445,Bar 1 x 12 with 1 x 2 Plate End and 1 x 1 Round Plate End,32 +42446,Neck Bracket [One Stud],27 +42447,"Container, Sarcophagus 2 x 4 x 6 Lid with Vampire Relief",7 +42448,Gate 1 x 4 x 9 Arched with Bars and Three Studs,32 +42450,Minifig Cloth Cape with Pointed Ends and Collar,27 +42450pb01,"Minifig Cape Cloth, Angular Points and Collar with Vampire Black Side Print",27 +4245319,"Plastic Backdrop, Belville The Mermaid Castle [5960]",38 +4247,Door / Window,4 +42498,Butterfly Large / Human Hair Clip (Belville),42 +425,Baseplate 32 x 32 Road 3 Lane,1 +42511,Minifig Skateboard with Trolley Wheel Holders,27 +42511pr0001,Minifig Skateboard with Trolley Wheel Holders with Blue and White Print,27 +42511pr0002,Minifig Skateboard with Trolley Wheel Holders with Minifig Skull on Star and Winged Heart Print,27 +42511pr0003,Minifig Skateboard with Trolley Wheel Holders with Dark Red Stripe Print,27 +4251753,Instruction CD-ROM for 9761 (FLL 2004 - No Limits),17 +4253,Duplo Door Frame Flat Front Surface,4 +4254,Technic Shock Absorber 6.5L Piston Rod,24 +4255,Technic Shock Absorber 6.5L Cylinder,25 +4259,Wheel Freestyle with Freestyle Pin Hole,29 +4259582,"Sticker, Knights Kingdom II (set 8809) Vladek, King Mathias, Santis",17 +4259592,"Sticker, Knights Kingdom II (set 8809) Jayko, Danju, Rascus",17 +4259999,"Knights Kingdom II, Dual Sided Poster - (Set 8809)",17 +425p01,Baseplate 32 x 32 Road 9-Stud with 3 Lane Race Track Checker Print,1 +425p02,"Baseplate Road 32 x 32 3 Lane with Green Lines, White Dashed Lines, and Crosswalk Print [6371]",1 +42600,Aircraft Fuselage Angular Forward Section 6 x 10 x 5 (Cockpit),47 +42601,Aircraft Fuselage Angular Aft Section 6 x 10 x 5,47 +42602,Windscreen 8 x 6 x 4 Canopy with Hinge,47 +42602pb01,Windscreen 8 x 6 x 4 Canopy with Hinge and Airliner Cockpit Blue/Green Print,47 +42602pb02,Windscreen 8 x 6 x 4 Canopy with Hinge and Airliner Aft Blue/Green Print,47 +42602pb03,Windscreen 8 x 6 x 4 Canopy with Hinge and Helicopter 'XI-203' Print,47 +42602pb04,Windscreen 8 x 6 x 4 Canopy with Hinge and Spider-Man Print,47 +42602pb05,Windscreen 8 x 6 x 4 Canopy with Hinge and Airliner Cockpit Blue/Orange Print,47 +42602px02,Windscreen 8 x 6 x 4 Canopy with Hinge and Airliner Aft Blue/Orange Print,47 +42603,Tail 10 x 10 x 4,35 +42603pb01,Tail 10 x 10 x 4 Dual with Blue and Yellow Circular Print,35 +42603pb02,"Tail 10 x 10 x 4 Dual with Blue Arrow, Dot Fade Print",35 +42604,Aircraft Fuselage Angular Top 6 x 8 x 4,47 +42604pr01,"Aircraft Fuselage Angular Top 6 x 8 x 4 with Door on Blue, Green, and Yellow Stripes Print",47 +42604pr02,"Aircraft Fuselage Angular Top 6 x 8 x 4 with Windows on Blue, Orange, and Yellow Stripes Print",47 +42604pr03,"Aircraft Fuselage Angular Top 6 x 8 x 4 with Door on Blue, Orange, and Yellow Stripes Print",47 +42605,Plane Fuselage Bottom 6 x 12 x 5,47 +42605pb01,Aircraft Fuselage Angular Bottom 6 x 12 x 5 with Windows on Green & Blue Stripes Print,47 +42605pb02,Aircraft Fuselage Angular Bottom 6 x 12 x 5 with Doors on Blue Stripe Print [4618],47 +42605pb03,Aircraft Fuselage Angular Bottom 6 x 12 x 5 with Windows on Orange & Blue Stripes Print,47 +42607c01,Wedge Plate 6 x 12 x 1 Cut Corners with 2 Fixed Rotatable Pins [aka 4 Juniors Wing Plate],35 +42608,"Plate Special 2 x 4 Thin 4 Holes, Struts and 2 Pins [Undercarriage]",9 +42609,Wedge Plate 16 x 16 x 1 with 4 Pins,9 +4261,"Technic, Steering Arm",25 +42610,Wheel 11 x 8 with Center Groove,29 +4262,Technic Plate 1 x 6 with Toothed Ends,26 +4263,Technic Plate 1 x 4 with Toothed Ends,26 +4265a,Technic Bush 1/2 Toothed Type I [+ Opening],54 +4265b,Technic Bush 1/2 Toothed Type II [X Opening],54 +4266,Wheel 20 x 30 Technic,29 +4266360,"Messenger Bag, ANA Promotional with Airplane Print",17 +4267,Tyre 20 x 30 Technic,29 +42670,Sticker for 42044 (24670/6134418),17 +4268,Duplo Baseplate 24 x 24,4 +4268656,Compact Disc - Lego Digital Designer 1.3 Brickmaster Special Edition,17 +42687,"Legs Mechanical, Super Battle Droid",13 +4273a,Technic Axle and Pin Connector Toggle Joint Toothed [Without Slots],12 +4273b,Technic Connector Toggle Joint Toothed [With Slots],12 +4274,Technic Pin 1/2,53 +4275,Hinge Plate 1 x 2 with 3 Fingers,24 +4275a,Hinge Plate 1 x 2 with 3 Fingers and Solid Studs,18 +4275b,Hinge Plate 1 x 2 with 3 Fingers and Hollow Studs,18 +4276,Hinge Plate 1 x 2 with 2 Fingers,24 +4276a,Hinge Plate 1 x 2 with 2 Fingers and Solid Studs,18 +4276b,Hinge Plate 1 x 2 with 2 Fingers and Hollow Studs,18 +4282,Plate 2 x 16,14 +4283798,Instruction CD-ROM for 9762 (FLL 2005 - Ocean Odyssey),17 +4284,Windscreen 2 x 4 x 2 Inverted,47 +4285a,Dish 6 x 6 Inverted [Radar / Webbed / No anti-studs],21 +4285b,Dish 6 x 6 Inverted [Radar / Webbed / anti-studs at 90°],21 +4286,Slope 33° 3 x 1,3 +4287,Slope Inverted 33° 3 x 1,3 +4288,Wheel Full Rubber Balloon with Axle hole,29 +4288153,"Cloth Cape, Lord Vladek Large Figure",38 +4289,Boat Mast 2 x 2 x 3 Inclined with Stud on Top and Two Sides,35 +42908,Electric RC Race Buggy Motor,45 +42936,"Track System, Straight Track 16 x 8 x 2",1 +42938,"Track System, Curved Track 17 x 12 x 2",1 +42941,"Track System, Y-shaped Track 18 x 16 x 2",1 +42942,"Track System, Ramp Track 16 x 8 x 6",1 +4297446,Paper Test Mat for Mindstorms NXT,17 +4297447,Paper Test Mat for Mindstorms NXT 2.0,17 +429c01,Train Brick 2 x 4 Holder for Sliding Wheel Brick (Complete),5 +429c02,Electric Train 12V Brick 2 x 4 Type 2 (Complete),45 +43037,DUPLO SIGN DEC. STOP,24 +43085,Sports Arena Section / Skateboard Ramp,37 +43086,Sports Arena Section / Skateboard Ramp Corner,37 +43093,Technic Axle Pin with Friction Ridges Lengthwise,53 +43121,"Engine, Large",35 +43121c02,"Engine, Large, with Black Center - Complete Assembly",24 +43121c04,Engine Large with 4 Fixed Rotatable Pins,35 +4315,Hinge Vehicle Roof Holder 1 x 4,18 +4318,Boat Mast 2 x 2 x 9 2/3 Bar with Slot on Top and 2 Finger Hinge on Two Sides,35 +4319,Hinge Bar 8L with 3 Fingers and Open End Stud,18 +4324,Fabuland Rake,27 +4325,Minifig / Fabuland Watering Can,27 +4327,Fabuland Fishing Rod,27 +4328,Minifig Pipe Wrench,27 +4331,Fabuland Saw,27 +4332,Minifig Broom,27 +43337,Panel 1 x 4 x 1 with Rounded Corners [Thick Wall],23 +4334,Fabuland Camera,27 +4335,Fabuland Accordion,27 +43362c01,Electric 9V Mini-Motor [Lightweight New Style],45 +43363,Technic Darth Vader Helmet,27 +43368,"Arm/Hand, Right - one piece from NBA",24 +43369,"Arm/Hand, Left - one piece from NBA",24 +43369c99,"Arm/Hand, (Matching Left and Right) Pair - from NBA",24 +4337,Minifig Tool - Ladle,27 +43372,Sports Minifig Stand Basketball / Hockey Goalie,27 +43373,Sports Hoop with 2 Studs and Axle,27 +43374,Sports Basketball Net,27 +433c01,Electric Train 12V Brick 2 x 4 Type 1 (Complete),45 +4341,Minifig Pot Cauldron 3 x 3 x 1 & 3/4 with Handles,27 +4342,Bread,27 +4345,Box 2 x 2 x 2 [Undetermined Studs],24 +4345a,Box 2 x 2 x 2 [Solid Studs],7 +4345ap03,Container Box 2 x 2 x 2 Solid Studs with Mailbox Print,7 +4345b,Box 2 x 2 x 2 [Hollow Studs],7 +4345bp03,Container Box 2 x 2 x 2 Hollow Studs with Mailbox Print,7 +4345bp03c01,Container Box 2 x 2 x 2 Hollow Studs Mailbox Print Compl,7 +4346,Box 2 x 2 x 2 Door with Slot,7 +4346p01,Container - Box 2 x 2 x 2 Door with Slot and Classic Fire Logo Print [6657],7 +4346p03,Container Box 2 x 2 x 2 Door with Slot and Mailbox Print,7 +4346p60,Container Box 2 x 2 x 2 Door with Slot with Controls Print,7 +4346p61,Container Box 2 x 2 x 2 Door with Slot and Spyrius Print,7 +4346p68,"Container, Box 2 x 2 x 2 Door with Slot and MTron Print",7 +4346pb01,Container - Box 2 x 2 x 2 Door with Slot and Mail Horn Print [6420 / 6464],7 +4346pb02,Box 2 x 2 x 2 Door with Slot and Locomotive Controls Print,7 +4346pb03,Container - Box 2 x 2 x 2 Door with Slot and Money on Badge Print,7 +4346pb07,Container - Box 2 x 2 x 2 Door with Slot and Black Sith Infiltrator Print [4493],7 +4346pb08,Container - Box 2 x 2 x 2 Door with Slot and ATM Print [6566],7 +4346pb09,"Container, Box 2 x 2 x 2 Door with Slot and Gonk Droid Print",7 +4346pb11,Container - Box 2 x 2 x 2 Door with Slot and Octan Print [6548],7 +4346ps1,Container - Box 2 x 2 x 2 Door with Slot and SW Rebel Print,7 +4346px15,Container - Box 2 x 2 x 2 Door with Slot and Spyrius Print,7 +4346px2,Container - Box 2 x 2 x 2 Door with Slot and World Shipment Print,16 +4346px3,Container - Box 2 x 2 x 2 Door with Slot and Round Money Bag Print,7 +4346px4,Container - Box 2 x 2 x 2 Door with Slot and Star Wars Rebel Logo Print [7262],7 +4346px5,Container - Box 2 x 2 x 2 Door with Slot and Safe with 'Safe Co' Print,7 +4346px6,Container - Box 2 x 2 x 2 Door with Slot and Stingray Mechanical Print,7 +4346px7,Container - Box 2 x 2 x 2 Door with Slot and Safe with Spider Print,7 +4347,Window 1 x 4 x 5 with Fixed Glass,16 +43473,Sticker Sheet for 8472-1,17 +43474,Sticker Sheet for 8473-1,17 +4349,Minifig Loudhailer [aka SW Blaster / Space Gun],27 +4349pr0001,Minifig Utensil Loudhailer with Orange Stripe Print,27 +4350,Electric 4.5V 3 C-Cell Battery box 4 x 22 (Bottom Half),45 +4350c01,Electric 4.5V 3 C-Cell Battery Box without Switch 4 x 22 Complete Assembly,45 +4350c02,Electric 4.5V 3 C-Cell Battery Box with Switch 4 x 24 Complete Assembly,45 +4351,Electric 4.5V 3 C-Cell Battery box 4 x 22 (Top Half),45 +4352,Electric 4.5V 3 C-Cell Battery Box Polarity Switch 2 x 4,45 +43557,Bionicle Toa Nuva Leg Section,41 +43558,"Bionicle Chest Armor, Toa Nuva",41 +43559,Bionicle Shoulder Armour,41 +43579,Plastic Belville Flower Petal 6.5 x 8 [5964],38 +4360,Minifig Camera with Side Sight [aka Space Gun],27 +43614,Bionicle Mask Miru Nuva,41 +43615,Bionicle Mask Kakama Nuva,41 +43616,Bionicle Mask Pakari Nuva,41 +4362acx1,Fabuland Car Chassis 12 x 6 Old (Complete Assembly),36 +4362bcx1,Fabuland Car Chassis 12 x 6 New (Complete Assembly) aa2,42 +43675,Technic Ribbed Hose 19L,24 +43702,Minifig Basketball [Plain],27 +43702pr0001,Minifig Basketball with Black Lines Print,27 +43708,Wedge 4 x 4 (Slope 18 Corner),3 +43710,Wedge 4 x 2 Triple Left,6 +43710pb01,Wedge 4 x 2 Triple Left with Alpha Team Arctic Speeder Print,6 +43711,Wedge 4 x 2 Triple Right,6 +43711pb01,Wedge 4 x 2 Triple Right with Alpha Team Arctic Speeder Print,6 +43712,Wedge 6 x 4 Triple Curved,6 +43713,Wedge 6 x 4 Inverted Curved,6 +43718,"Electric, Sensor, Motion - WeDo Robotics",45 +43719,Wedge Plate 4 x 4 with 2 x 2 Cutout,49 +43720,Wedge 4 x 2 Sloped Right,6 +43721,Wedge 4 x 2 Sloped Left,6 +43722,Wedge Plate 3 x 2 Right,49 +43723,Wedge Plate 3 x 2 Left,49 +43744,Phoenix 'Fawkes',28 +43745,Minifig Head Modified Dobby,13 +43745pr0001,Minifig Head Modified Dobby with Green Eyes Print,13 +43746,Serpent Basilisk Head [Plain],24 +43746px1,Serpent Head with Scales Print [Basilisk],28 +4375,Duplo Sign Post Short,4 +43751,Minifig Hair Wavy,13 +4376,Duplo Radar Array,4 +43822,Sticker for Set 10020,17 +43853,Bionicle Mask Hau Nuva,41 +43853posa,Bionicle Mask Hau Nuva Poisoned - Green Forehead,41 +43855,Bionicle Mask Akaku Nuva,41 +43856,Bionicle Mask Kaukau Nuva,41 +43857,Technic Beam 1 x 2 Thick,51 +43887,Minifig Sword - Scimitar,27 +43888,Support 1 x 1 x 6 Solid Pillar,34 +43889,Elephant Tail Ring,28 +43890c01,Elephant Head with Pin,28 +43891,Elephant Ear,28 +43892,Tail [Trunk],28 +43894,"Minifig Hat Mongolian sherpa, tibet, tibetan",27 +43895,Creature Head and Torso - Yeti,28 +43896,Creature Arm with Pin,13 +43897,Creature Hips and Legs,28 +43898,Dish 3 x 3 Inverted [Radar],21 +43898pr0002,Dish 3 x 3 Inverted (Radar) with White Sesame Seeds Print (Hamburger Bun),21 +43898pr0003,Dish 3 x 3 Inverted (Radar) with SW Droid T7-O1 Print,21 +43898pr02,Dish 3 x 3 Inverted (Radar) with SW Embo Hat Print,21 +43898pr1001,Dish 3 x 3 Inverted (Radar) with Orange Stripes Print,21 +43898pr1002,PARABOL Ø24X6.4 NO 1002,21 +43898pr1004,Dish 3 x 3 Inverted [Radar] With pink dots print,21 +43898px1,Dish 3 x 3 Inverted (Radar) with Orient India Shield Print,21 +43898px2,Dish 3 x 3 Inverted (Radar) with Orient China Hat Print,21 +43899,Minifig Pike [4 Side Blades],27 +43900,Dragon Head Orient,28 +43902pb01,Creature Head and Torso - Lion-Dog with Jun-Chi Print,13 +43903,Tread Small (20 Links),29 +43936,Serpent Basilisk Body Segment,28 +43936px1,Serpent Basilisk Body Segment with Scales Print,28 +44,"Technic, Axle and Pin Connector Toggle Joint Smooth",12 +44031,Bionicle Weapon Aqua Axe,41 +44032,Bionicle Weapon Ice Skate / Ice Blade Half,41 +44033,Bionicle Weapon Air Katana,41 +44034,Bionicle Weapon Quake Breaker / All-Terrain Track,41 +44035,Bionicle Weapon Magma Sword / Lava Board Half,41 +44036,Bionicle Toa Nuva Climbing Claw / Kodan Ball Half,41 +44041,Scrap use 4204,24 +44126,Slope Curved 6 x 2,37 +44135,Bionicle Rahkshi Torso Lower Section,41 +44136,Bionicle Rahkshi Chest Section,41 +44137,"Bionicle Matoran Back, Beam 4 x 4 x 2",41 +44138,Bionicle Foot Rahkshi,41 +44139,Bionicle Rahkshi Kraata Holder,41 +44140,Bionicle Rahkshi Back Cover with Groove,41 +44142,"Bionicle Rahkshi Back Blade, 6 blades alternately angled (Panrahk)",41 +44143,"Bionicle Rahkshi Back Blade, 3 blades with trapezoidal holes (Turahk)",41 +44144,Bionicle Rahkshi Back Blade - 3 blades like shark fins (Lerahk),41 +44145,Bionicle Rahkshi Back Blade - 3 blades sawtoothed with circular holes (Kurahk),41 +44146,Bionicle Rahkshi Back Blade - 5 spikes with side spokes (Vorahk),41 +44147,"Bionicle Rahkshi Back Blade, 7 pointed (Guurahk)",41 +44148,Bionicle Rahkshi Leg Upper Section,41 +44224,Technic Rotation Joint Disk with Pin Hole and 3L Beam Thick,55 +44225,Technic Rotation Joint Disk with Pin and 3L Beam Thick,55 +4424,Container - Barrel Half Large,7 +44247,Bionicle Rahkshi Torso - Gear 7 Tooth with 3 Axle Holes,41 +44252,Duplo Brick 2 x 2 x 2 Ribbed Flexible Brick (Giraffe Neck),4 +4429,Minifig Flask with Handle,27 +44292,Wheel 30.4 x 20 with 3 Pinholes,29 +44293c01,"Wheel 36.8 x 14 ZR with Axle Hole, 3 Pin Holes, and Black Rubber Tyre Glued On",29 +44294,Technic Axle 7,46 +4429stk01,Sticker for Set 4429 - (10581/6005400),17 +44300,Hinge Tile 1 x 3 Locking with 1 Finger on Top,18 +44301a,"Hinge Plate 1 x 2 Locking with 1 Finger On End, with Groove",18 +44301b,"Hinge Plate 1 x 2 Locking with 1 Finger On End, without Groove",18 +44302a,"Hinge Plate 1 x 2 Locking with 2 Fingers On End, with Groove",18 +44302b,"Hinge Plate 1 x 2 Locking with 2 Fingers On End, without Groove",18 +44308,Tyre 43.2 x 22 H,29 +44309,Tyre 43.2 x 22 ZR,29 +4432stk01,Sticker for Set 4432 - (98771/4647291),17 +4433,Minifig Net [Fabuland Wind Gauge],27 +44336,Baseplate 32 x 32 Road 6-Stud Straight,1 +44336pr01,"Baseplate Road 32 x 32 6-Stud Straight with Dark Gray Road, Yellow Dashed Lines and Storm Drains Print",1 +44336pr02,Baseplate Road 32 x 32 6-Stud Straight with Yellow and White Pit Lane Print,1 +44336pr03,Baseplate 32 x 32 Road 6-Stud Straight with Runway Print,1 +44336pr04,Baseplate Road 32 x 32 6-Stud Straight with White Dashed Lines and Storm Drain Print,1 +4434,Fabuland Utensil Tuba / Horn,27 +44341,Baseplate 32 x 32 Road 6-Stud T Intersection,1 +44341pr01,"Baseplate Road 32 x 32 6-Stud T Intersection with Dark Gray Road, Yellow Dashed Lines, and Crosswalk Print",1 +44341pr02,Baseplate Road 32 x 32 6-Stud T Intersection with White Dashed Lines and Crosswalk Print,1 +44342,Baseplate 32 x 32 Road 6-Stud Curve,1 +44342pr01,Baseplate Road 32 x 32 6-Stud Curve with Dark Gray Road with Yellow Dashed Lines Print,1 +44342pr02,Baseplate Road 32 x 32 6-Stud Curve with White Dashed Lines Print,1 +44343,Baseplate 32 x 32 Road 6-Stud Crossroads,1 +44343pr01,"Baseplate Road 32 x 32 6-Stud Crossroad with Dark Gray Road, Yellow Dashed Lines and Crosswalks Print",1 +44343pr02,Baseplate 32 x 32 Road 6-Stud Crossroads with Runway Print,1 +44343pr03,Baseplate Road 32 x 32 6-Stud Crossroad with White Dashed Lines and Crosswalks Print,1 +44350,"Technic Fairing #20 Large Long, Small Hole, Side A",40 +44351,"Technic Fairing #21 Large Long, Small Hole, Side B",40 +44352,"Technic Fairing #22 Large Short, Small Hole, Side A",40 +44353,"Technic Fairing #23 Large Short, Small Hole, Side B",40 +44358,Cylinder Hemisphere 2 x 2 Ball Turret Socket Base,7 +44359,Cylinder Hemisphere 3 x 3 Ball Turret,20 +44359pat0001,Cylinder Hemisphere 3 x 3 Ball Turret with Marbled Glow In Dark Pattern,20 +44359pat0002,Hemisphere 3 x 3 Ball Turret with Marbled Red Pattern,20 +44360,Minifig Snowtrooper Helmet,27 +44361,Minifig Alien Hutt Jabba,27 +44363,"Minifig Head Top, SW Bib Fortuna [9516]",13 +44374,Technic Beam Rotor 3 Blade Thin,51 +44375,Dish 6 x 6 Inverted (Radar) [Undetermined Studs],21 +44375a,Dish 6 x 6 Inverted (Radar) [Hollow Studs],21 +44375apr0008,Dish 6 x 6 Inverted (Radar) with SW Sith Infiltrator Print [Hollow Studs],21 +44375apr01,Dish 6 x 6 Inverted (Radar) with Star Wars AT-AT/AT-TE Print [Hollow Studs],21 +44375apr02,Dish 6 x 6 Inverted (Radar) with HP Clock Face Print [Hollow Studs],21 +44375apr03,Dish 6 x 6 Inverted (Radar) with Star Wars TIE Advanced Hatch Print [Hollow Studs],21 +44375b,Dish 6 x 6 Inverted (Radar) [Solid Studs],21 +44375bpr0001,Dish 6 x 6 Inverted (Radar) Dark Red Circle and Dark Bluish Gray and Metallic Silver Fan Blades print,21 +44375bpr0001a,Dish 6 x 6 Inverted (Radar) with SW AT-TE Print [Solid Studs],21 +44375bpr0001b,Dish 6 x 6 Inverted (Radar) - Solid Studs with Medium Azure Border Print,21 +44375pr0002,Dish 6 x 6 Inverted (Radar) [Solid Studs] with Big Ben Clock Face Print,21 +44375px1,Dish 6 x 6 Inverted (Radar) with Copper and Black Machinery Print [Hollow Studs],21 +4438,Minifig Axe [Fabuland],27 +4438stk01,Sticker for Set 4438 - (99221/4649787),17 +4440,Fabuland Utensil Jerrycan,27 +4442,Technic Plate 1 x 8 with Toothed Ends,26 +4444,Panel 2 x 5 x 6 Wall with Arched Window,23 +4444p01,Panel 2 x 5 x 6 Wall with Window Stones Dark Gray Print,23 +4444p02,Panel 2 x 5 x 6 Wall with Scattered Stones Dark Gray Print,23 +4444p03,Panel 2 x 5 x 6 Wall with Black Stripes Print,23 +4444p04,Panel 2 x 5 x 6 Wall with Window Stones Light Gray Print,23 +4444p05,Panel 2 x 5 x 6 Wall with Scattered Stones Light Gray Print,23 +4444p06,Panel 2 x 5 x 6 Wall with Red Bricks Scattered Print,23 +4444p07,Panel 2 x 5 x 6 with Red Scattered Bricks Print,23 +4444p08,Panel 2 x 5 x 6 Wall with Window Stones and 2 Columns Print,23 +4444pb03,Panel 2 x 5 x 6 Wall with 2 Yellow Dragons Print,23 +4445,Slope 45° 2 x 8,3 +4447,Window 4 x 4 x 3 Roof,16 +4448,Glass for Window 4 x 4 x 3 Roof,16 +44486c01,Motor 9V 4 x 4 x 3 1/3 with Dark Gray Base,45 +44486c02,Motor 9V 4 x 4 x 3 1/3 with Dark Bluish Gray Base,45 +4449,Minifig Briefcase,27 +44510,Baseplate 32 x 48 x 6 Raised with Steps [Plain],1 +44510pb01,Baseplate Raised 32 x 48 x 6 with Front and Back Steps and Gold and Magenta Palace Print [5858 / 5851-2],1 +44510pb02,Baseplate Raised 32 x 48 x 6 with Front and Back Steps and Medium Blue and Green Garden Print [5862 / 5862-2],1 +44510pb03,Baseplate Raised 32 x 48 x 6 with Front and Back Steps and Rocks / Water / Sand Print [7047],1 +44510pb04,Baseplate Raised 32 x 48 x 6 with Front and Back Steps and Green Garden Print [7582],1 +44511,Tower Roof 8 x 12 x 10 Onion Dome,20 +44512,Plant Flower Stem 26L Wave with End Stop Rings and Bars,28 +4452,Container - Box 6 x 6 Bottom,7 +44524,Plate 2 x 8,4 +44538,DUPLO TURN BRICK 2X2,24 +44556,Wheel 22 x 172 with Fins and Inner 168 Tooth Gear (Hailfire Droid Wheel),52 +44567a,"Hinge Plate 1 x 2 Locking with 1 Finger on Side, with Groove",18 +44567b,"Hinge Plate 1 x 2 Locking with 1 Finger on Side, without Groove",18 +44568,Hinge Plate 1 x 4 Locking Dual 1 Finger,18 +44569,Hinge Train Gate 2 x 4 Locking Dual 2 Fingers with Rear Reinforcements,18 +44570,Hinge Plate 3 x 4 Locking Dual 2 Finger,18 +44571,Slope 45° 4 x 4 Double with Locking Hinge,18 +44572,Hinge Panel 2 x 4 x 3 1/3 Locking Dual 2 Fingers,18 +4459,"Technic Pin with Friction Ridges Lengthwise, without Center Slots",53 +44594,DUPLO WATER PUMP,24 +4460a,Slope 75° 2 x 1 x 3 with Open Stud,3 +4460b,Slope 75° 2 x 1 x 3 with Hollow Stud,3 +4461,Container - Box 4 x 4 x 2 Bottom with Semicircle Cut-out Ends,7 +4465c01,Triceratops with Light Gray Legs,28 +4466,"Vehicle, Exhaust Pipe Twin Inlet 11L Left",36 +44661,Tail Shuttle - Small,35 +44661pr0001,"Tail Shuttle, Small with Double-Sided Black Trident and Sub Deep Diving Print [7770 / 7771 / 7776]",35 +44661pr0002,Tail Shuttle Small 2 x 3 x 2 with DC SUPERHERO GIRLS print,35 +4467,"Vehicle, Exhaust Pipe Twin Inlet 11L Right",36 +44674,Mudguard 2 x 4 [Headlights Extension],36 +44674pb01,"Vehicle, Mudguard 2 x 4 with Headlights Overhang and Red/Black/Green Print (Set 8384)",36 +44674pb02,"Vehicle, Mudguard 2 x 4 with Headlights Overhang and Silver/Red/Black Flame Curves Print",36 +44675,Slope Curved 2 x 2 No Studs - 3 Recessed Side Ports,37 +44676,Flag 2 x 2 Trapezoid,38 +44728,Bracket 1 x 2 - 2 x 2,9 +4474,Windscreen 6 x 4 x 2 Canopy,47 +4474p61,Windscreen 6 x 4 x 2 Canopy with Ice Planet Logo Print,47 +4475,"Wedge, Plate 8 x 8 with 4 x 4 Cutout",49 +44757,Minifig Head Modified Gamorrean with Armor,13 +4476,Support 2 x 4 x 5 Stanchion Inclined [Undetermined Posts],32 +4476a,Support 2 x 4 x 5 Stanchion Inclined [3mm wide posts],34 +4476b,Support 2 x 4 x 5 Stanchion Inclined [5mm wide posts],34 +4477,Plate 1 x 10,14 +44771,Tyre 68.8 x 36 ZR,29 +44772,Wheel 56 x 34 Technic Racing Medium with 3 Pin Holes,29 +44773,"Track System, Y-shaped Track 24 x 16 x 2",1 +44775,Technic Track System Gate 1 x 11 with End Tab and Three Holes,55 +44777,Wheel 68.8 x 36 ZR Solid Smooth,29 +4478,Baseplate 32 x 32 with Driveway,1 +4478p01,Baseplate 32 x 32 Road 9-Stud with Gray Driveway Print [6380 / 6598 / 1682],1 +4478p02,Baseplate 32 x 32 Road 9-Stud Driveway with White Lines Print,1 +4478p03,Baseplate 32 x 32 Road 9-Stud Driveway with Grey Crazy Paving,1 +4478p04,Baseplate 32 x 32 Road 9-Stud Driveway with DkGrey Crazy Paving,1 +4479,Minifig Metal Detector,27 +44790,Sports Hockey Helmet,41 +44791,Sports Hockey Chest Protector,27 +44799,Tyre with Centre Groove [Tightrope Guide Wheel],29 +44807,"Bionicle Head, Rahkshi",41 +44808,Bionicle Weapon Bladed Spear End,41 +44809,Technic Pin Connector Perpendicular 2 x 2 Bent,12 +4480c01,Bike 2 Wheel Motorcycle Frame 3 x 6 x 3 (Complete),36 +44810,"Bionicle Matoran Torso, Gear 9 Tooth with 3 Axle Holes and 2 Pin Holes",41 +44811,Bionicle Matoran Kolhii Stick,41 +44812,Bionicle Matoran Kolhii Ball,41 +44813,Bionicle Weapon Staff of Light Blade,41 +44813pat0001,"Bionicle Weapon Staff of Light Blade, Marbled Dark Red Pattern",41 +44814,Bionicle Mask Avohkii,41 +44815,"Bionicle Mask Kraahkan, 6 hole chin",41 +44815b,"Bionicle Mask Kraahkan, 4 hole chin",41 +44816,Bionicle Weapon Rahkshi Staff of Shattering (Panrahk),41 +44817,Bionicle Weapon Rahkshi Staff of Disintegration (Guurahk),41 +44818,Bionicle Weapon Rahkshi Staff of Poison (Dual Pronged - Lerahk),41 +44819,Bionicle Weapon Rahkshi Staff of Rage (Kuhrahk),41 +44822,Hinge Tile 1 x 4 Locking Dual 1 Fingers on Top [4 Locking Ridges],18 +4482stk01,Sticker for Set 4482 - (42589/4186659),17 +4483,Motorcycle Windshield,47 +4483p01,Motorcycle Windshield with POLICE Print,47 +44843,"Sports Hockey Stick with 2 Pins, 3 Holed Blade [3543]",41 +44844,"Sports Hockey Stick with 2 Pins, 2 oval holes in blade",41 +44845,"Sports Hockey Stick with Axle, 2 Holed Blade",41 +44846,Sports Hockey Stick with Axle [Solid Blade],41 +44847,Sports Hockey Skate,41 +44848,Sports Hockey Puck Large [No Axlehole],41 +44849,Sports Hockey Player Body,41 +4485,Minifig Cap Long Peak,27 +44850,Technic Axle Connector 2 x 3 Perpendicular with Catch,12 +44851,Technic Axle and Pin Connector 2 x 4 Double Sloped,12 +44852,Technic Axle Connector Rectangular Triple Spring-Loaded,25 +44855,"Sports Hockey Masks on Sprue - Masks 2, 3, 4",41 +44855a,Sports Hockey Mask 2 with smile and 2 teeth,24 +44855b,Sports Hockey Mask 3 with wraparound scowl,24 +44855c,Sports Hockey Mask 4 with glasses,24 +4485pb01,Minifig Cap - Long Bill with 'POLICE' Red Line Print,27 +4485pb02,Minifig Cap - Long Bill with EMT Star of Life Print,27 +4485pb03,Minifig Cap - Long Bill with Rescue Coast Guard Logo Print,27 +4488,Plate Special 2 x 2 with Wheel Holder,9 +4489,"Wheel Wagon Large (33mm D.), hole type undetermined",29 +4489a,"Wheel Wagon Large (33mm D.), Round Hole For Wheel Holder Pin",29 +4489b,"Wheel Wagon Large (33mm D.), hole notched for wheels holder pin",29 +4490,Brick Arch 1 x 3,37 +4490pr0001,Arch 1 x 3 with Biznis Kitty Body Print,37 +4490pr0002,Brick Arch 1 x 3 with Bright Light Orange Flames Print (Angry Kitty),2 +4490pr0003,Brick Arch 1 x 3 with Classic Space Logo Print (Astro Kitty),37 +4491a,Saddle [One Clip],28 +4491b,Saddle [Two Clips],28 +4492,Horse Head,28 +44924px1,Creature Head and Torso - Tiger with Tygurah print,13 +44936,Bionicle Weapon 5 x 5 Shield with Wrench Toothed,41 +44937,Bionicle Weapon 5 x 5 Shield with Flames Twin,41 +44938,Bionicle Weapon 5 x 5 Shield with Gear Tips,41 +4493852,Instruction CD-ROM for 8527 Mindstorms NXT v1.0,17 +4493c01,Animal Horse with Brown/White Tack Print (Complete),24 +4493c01pb00,Horse with (Undetermined Print),24 +4493c01pb01,"Horse with Black Eyes, Red Bridle, Black Mane Print",28 +4493c01pb02,"Horse with Black Eyes Circled with White, Brown Bridle Print",28 +4493c01pb03,"Horse with Black Eyes, Red Bridle Print [Complete Assembly]",28 +4493c01px2,"Horse with Blue Blanket, Right Side Red Circle Print",28 +4493cx6,Horse with Green Blanket and Red Hand Print [Complete],28 +4495a,Flag 4 x 1 Wave [First Wave Left],38 +4495b,Flag 4 x 1 Wave [First Wave Right],38 +4496,Minifig Pitchfork,27 +4497,Minifig Pike / Spear,27 +44970,Duplo Toolo Tire with Deep Tread,4 +4498,Minifig Arrow Quiver,27 +4499,Minifig Bow and Arrow [Large],27 +45,Tile 1 x 2 with Ball,15 +45024pb01c01,"Snail 'Sally Slow', Complete Assembly (Belville)",42 +45024pb02c01,"Snail 'Lazy Loui', Complete Assembly (Belville)",42 +4503,"Minifigure Tournament Helmet [Fixed Grill, Plume Hole]",27 +4504,Hinge Plate 1 x 6 with 2 and 3 Fingers On Ends,18 +4505,Minifig Hood / Cowl / Farmer's Cap,27 +4506,Minifig Forestman Cap,27 +4507,Hinge Plate 1 x 6 with 2 and 3 Fingers On Sides,18 +4509,Slope 33° 6 x 6 Double (Train Roof),3 +4510,Plate Special 1 x 8 with Door Rail,9 +45106,Animal Dragon Tail Oriental,24 +45106p01,Dragon - Oriental Tail with Metallic Gold Print,28 +45106pb01,Dragon Tail Long with Orient Flames Pattern,28 +4511,Door Sliding - Type 1,16 +4511pr0001,Door Sliding - Type 1 with Yellow Dollar Sign Print [7597],16 +4512,Train Level Crossing Gate - Type 2,24 +45124,DUPLO LIGHT CHAIN 120/297,24 +4512p01,Train Level Crossing Gate Type 2 with Red Stripes Print,36 +4512stk01,Sticker for Set 4512 - (47044/4201639),17 +4513stk01,Sticker for Set 4513 - (46905/4201018),17 +45141,Duplo Fuel Container 1 x 2 x 2,4 +45146,Duplo Windscreen Roll Cage,4 +4514c01,"Electric, Motor RC Car Base, Red Top (Set 8378)",45 +4514c02,"Electric, Motor RC Car Base, Pearl Dark Gray Top (Set 8676)",45 +4514stk01,Sticker for Set 4514 - (46617/4198678),17 +4515,Slope 10° 6 x 8,3 +4515p02,Slope 10 6 x 8 with Green Stripes Print,3 +4515p03,Slope 10° 6 x 8 with Slate Roof Print,3 +4515px1,Slope 10 6 x 8 with Shingled Roof Print,3 +4515px2,Slope 10 6 x 8 with Rusting Sheet-Metal Roof Print,3 +4516302,"Sticker, 3M Dual Lock Mounting Stickers",17 +4517,"Vehicle, Forklift Wide Forks",36 +45179,Baseplate Raised Ramp 9 x 15 x 2 (Racers),1 +4518a,"Vehicle, Forklift Wide 1 x 2 Hinge Plate",24 +4518ac01,Vehicle Forklift Wide 1 x 2 Hinge Plate and Light Gray Wide Forks [Complete Assembly],36 +4518b,"Vehicle, Forklift Wide 1 x 2 Hinge Plate Locking",36 +4518bc01,Vehicle Forklift Wide 1 x 2 Hinge Plate Locking and Dark Gray Wide Forks Reinforced [Complete Assembly],36 +4518bc02,"Vehicle, Forklift Wide 1 x 2 Hinge Plate Locking and Dark Bluish Gray Wide Forks Reinforced [Complete Assembly]",36 +4518c,"Vehicle, Forklift Wide 1 x 2 Hinge Plate Locking with Rubber Belt Holder",36 +4519,Technic Axle 3,46 +4519599,Instruction CD-ROM for 9764 (FLL 2007 - Power Puzzle),17 +45202,"Duplo Toolo Brick 2 x 2 with Angled Bracket with Forks and Two Screws, Holes at Side",4 +4522,Minifig Mallet / Large Hammer,27 +4523,Minifig Basket [D Style with Neck Bracket],27 +4524,Minifig Cape - Plastic,27 +45274,Bionicle Weapon 5 x 5 Shield with 7 Fins,41 +45275,Bionicle Weapon 5 x 5 Shield with Saw Blade Studded,41 +45276,Bionicle Weapon 5 x 5 Shield with Dual Scoop Prongs,41 +4528,Minifig Frying Pan,27 +4529,Minifig Saucepan,27 +4530,Minifig Hair Female,13 +45300stk01,Sticker for Set 45300,17 +45301,Wedge 16 x 4 Triple Curved,6 +45301px1,Wedge 16 x 4 Triple Curved with Bronze and Black Geonosian Fighter Print,6 +45302,SmartHub rechargeable battery,24 +4531,Hinge Tile 1 x 2 1/2 with 2 Fingers on Top,18 +4532,Cupboard 2 x 3 x 2 with Solid Studs,7 +4532stk01,Sticker for Set 4532 - (170883),17 +4533,Cupboard 2 x 3 x 2 Door,7 +45337,Technic Gearbox 3 x 4 x 1.667 T-shaped (Complete),24 +45337c01,Gearbox 3 x 4 x 1 2/3 with Dark Gray Base,44 +45337c02,Gearbox 3 x 4 x 1 2/3 with Dark Bluish Gray Base,44 +4533px1,"Container - Cupboard 2 x 3 x 2 Door with Black and Yellow Lines, Octagon and Wrench Print [6434]",7 +4534, Cupboard 2 x 3 x 4,7 +4535,"Container, Cupboard 2 x 3 x 4 Door",7 +4536,Cupboard 2 x 3 x X Drawer,7 +45360c01,Technic Gearbox 3 x 3 x 1.667 Corner (Complete),44 +4536pb01,"Container, Cupboard 2 x 3 x X Drawer with Flower and Vine Print",7 +4536px1,"Container, Cupboard 2 x 3 x X Drawer with Face Print",7 +4537,Duplo Support Brick 2 x 4 x 3,34 +4537stk01,Sticker for Set 4537 - (821430),17 +45399,"Garage Door 1 x 12 x 9 with Three Windows, Locking Dual 2 Finger Hinges",16 +453a,"Window 1 x 4 x 2 Classic with Solid Studs, No Glass",16 +453ac01,Window 1 x 4 x 2 Classic with Solid Studs [Complete],16 +453b,"Window 1 x 4 x 2 Classic with Long Sill, No Glass",16 +453bc01,Window 1 x 4 x 2 Classic with Long Sill [Complete],16 +453c,"Window 1 x 4 x 2 Classic with Short Sill, No Glass",16 +453cc01,Window 1 x 4 x 2 Classic with Short Sill [Complete],16 +45400,"Vehicle, Trailer Base 4 x 24 x 3 1/3",36 +45402,Wall 2 x 8 x 8 with Vertical Ridges and Door Frame,24 +45402px1,Door Frame 2 x 8 x 8 with Red Brick Print [4657],16 +45402px2,Door Frame 2 x 8 x 8 with Red Curtains Print [4860],16 +45402px3,Door Frame 2 x 8 x 8 with Blinds and Menu Print [4655],16 +45403,"Brick, Modified 5 x 12 with Two 1 x 2 Cutouts, 3 Holes on Side",11 +45403c01,"Brick Special 5 x 12 with Two 1 x 2 Cutouts, 1 Hole and 2 Fixed Rotatable Friction Pins on Side",5 +45405,Roof Piece 16 x 4 x 5,3 +45406,Windscreen 4 x 6 x 4 Cab with Hinge and 1 x 4 Bottom Cutout,47 +45406pb001,Windscreen 4 x 6 x 4 Cab with Hinge and 1 x 4 Bottom Cutout and Octan Print,47 +45406pb002,Windscreen 4 x 6 x 4 Cab with Hinge and 1 x 4 Bottom Cutout and Tow Truck Print [4652],47 +45406pb003,Windscreen 4 x 6 x 4 Cab with Hinge and 1 x 4 Bottom Cutout and Fire Dept. Print [4657],47 +45407,Engine Block 4 x 6 x 2 with Wedge Cutouts and Technic Holes,36 +45408,Fuel Tank 2 x 4 [Two Pins],36 +4540866,LEGO Factory Digital Designer CD-ROM for 10200,17 +45409,Car Grille 2 x 6 with Two Pins,24 +45409pb01,"Vehicle, Grille 2 x 6 with 2 Technic Pins, 'JS 4654' and Headlights Print",36 +45409pb02,"Vehicle, Grille 2 x 6 with 2 Technic Pins, 'ID 3672' and Headlights Print",36 +45410,Slope Curved 8 x 6 x 2 Inverted Double,37 +45410pb01,"Slope, Curved 8 x 6 x 2 Inverted Double with Chrome Silver Sides Print",37 +45411,Slope Curved 8 x 6 x 2 Double,37 +45411pb01,"Slope, Curved 8 x 6 x 2 Double with Chrome Silver Sides Print",37 +45411pb02,"Slope, Curved 8 x 6 x 2 Double with Chrome Silver Sides and Octan Print",37 +45411pb03,"Slope, Curved 8 x 6 x 2 Double with Fire Dept. Print",37 +45425,Bionicle Weapon Rahkshi Staff of Power,41 +4543,Duplo Backhoe / Train Cabin Roof,4 +4544,"Duplo, Train Steam Engine Cabin",4 +45449,Clikits Icon - Large Heart with Pin,48 +45450,Clikits Icon - Small Heart with Pin,48 +45451,Clikits Icon - Large Heart with Hole [Polished],48 +45452,Clikits Icon - Small Heart with Hole,48 +45455,Clikits Icon - Large Daisy 10 Petals with Pin,48 +45462,Clikits Icon - Large Star with Pin,48 +45463,Clikits Icon - Small Star with Pin,48 +45464,Clikits Icon - Large Star with Hole [Polished],48 +45466,Clikits Icon - Large Square with Pin,48 +45469,Clikits Icon - Small Square with Hole,48 +45474,Clikits Icon - Small Round Thick with Pin,48 +4547stk01,Sticker for Set 4547 - (821420),17 +45481,Clikits Bead - Connector Thick Small Double with 2 Pins,48 +45493,Clikits Frame - Square with 3 x 3 Holes,48 +45499,Clikits Child's Ring - Narrow Band with Hole in Top,48 +455,Baseplate 16 x 24 with Rounded Corners,1 +4550,"Duplo, Train Steam Engine Cow Catcher",4 +45517,Transformer,24 +4551stk01,Sticker for Set 4551 - (164585),17 +45522,Tile Special 6 x 6 x 2/3 with 4 Studs and Embossed 'SPORTS',15 +45535,Sports Hockey Masks on Sprue,24 +45535a,Sports Hockey Mask with Eyeholes and Four Large Teeth,24 +45535b,Sports Hockey Mask with Eyeholes and Four Small Teeth,24 +45535c,Sports Hockey Mask with Eyeholes and Teeth Protector with Waffle Texture,24 +4553stk01,Sticker for Set 4553 - (72579/4116879),17 +45544bc,Set 45544 Activity Booklet - Cover and Inventory Card,17 +4555pb026,"Duplo Figure, Male Action Wheeler, Blue Legs, Blue Jumpsuit with Parachute Straps, Black Racing Helmet",4 +4555pb076,"Duplo Figure, Male, Blue Legs, Red Top with Blue Overalls, Construction Hat White, Turned Up Nose ",4 +4555pb089,"Duplo Figure, Female, Red Legs, Blue Blouse with White Lace Trim, Brown Hair",4 +4555pb091,"Duplo Figure, Male Action Wheeler, Yellow Legs, Yellow Top with Yellow/Black/Red Parachute, Red Cap, Beard, Sunglasses and Headphones",4 +4555pb095,"Duplo Figure, Male, Black Legs, Yellow Chevron Vest, Black Arms, Black Cap",4 +4555pb096,"Duplo Figure, Male, Black Legs, Chevron Vest, Yellow Arms, Construction Hat Red",4 +4555pb103,"Duplo Figure, Male, Brown Legs, Tan Top, Blue Arms, Tan Pith Helmet, Facial Stubble",4 +4555pb104,"Duplo Figure, Female, Brown Legs, Red Arms, Tan Pith Helmet, Eyelashes",4 +4555pb126,"Duplo Figure, Male, Blue Legs, Blue Top, Life Jacket, Red Cap, No White in Eyes Print",4 +4555pb161,"Duplo Figure, Male, Blue Legs, Blue Top, Life Jacket, Blue Cap",4 +4555pb199,"Duplo Figure, Male, Blue Legs, Red Top with Blue Overalls, Construction Hat White, Turned Down Nose",4 +4555stk01,Sticker for Set 4555 - (169675),17 +45568,Technic Beam 3 x 11 Flexible Double,55 +45571,Technic Beam 3 x 11 x 3 Gooseneck Flexible Double,55 +45573,"Technic, Spike Connector Flexible with Four Holes, Raised Center",12 +45574,"Technic, Spike Connector Flexible with Four Holes Perpendicular",12 +45575,"Technic, Spike Connector Pin Double 3L",12 +4557stk01,Sticker for Set 4557 - (72644/4118678),17 +4558560,Compact Disc NXT 2.0,17 +45590,Technic Axle Connector Double Flexible [Rubber],12 +4559c01,"Duplo, Train Steam Chassis 2 x 6 with Red Train Wheels and Moveable Hook",4 +4559stk01,Sticker for Set 4559 - (170882),17 +455p01,Baseplate 16 x 24 with Rounded Corners and Set 344 Dots Print,1 +455p02,Baseplate 16 x 24 with Rounded Corners and Set 362 Dots Print,1 +4562027,Instruction CD-ROM for 9698 (FLL 2009 - Smart Move),17 +45644,Cloth Elephant Saddle,38 +45644px1,"Cloth Rectangle 6 x 12 with 2 x 2 cutout, holes at corners, Green / Yellow / Red Elephant Saddle Print",38 +4564stk01,Sticker for Set 4564 - (168225),17 +45677,Wedge 4 x 4 x 2/3 Triple Curved,37 +45677pr0001,Wedge 4 x 4 x 2/3 Triple Curved with Spider-Man Logo and Webbing Print,37 +45677pr0002,Wedge 4 x 4 x 2/3 Triple Curved with Black and White Lightning Print,6 +45677pr0003,Wedge 4 x 4 x 2/3 Triple Curved with Iron Man Armor and Round Arc Reactor Pattern ,24 +45677px1,Wedge 4 x 4 x 2/3 Triple Curved with Fire Logo Badge and 3 White Chevrons Print,6 +45677px2,Wedge 4 x 4 x 2/3 Triple Curved with Windshield and Flame Print,6 +45695,Support 2 x 2 x 8 with Vertical Grooves on All Sides and Top Peg,34 +457,Maxifig Tool Oar,27 +45705,Windscreen 10 x 6 x 2 Curved,47 +45705pr0001,Windscreen 10 x 6 x 2 Curved with Blue Scales Print,47 +45705pr0002,Windscreen 10 x 6 x 2 Curved with Shark Eyes Print,47 +45705pr0003,Windscreen 10 x 6 x 2 Curved with Frame Print,47 +45705pr0006,Windscreen 10 x 6 x 2 Curved with Frame Print,47 +45706,Train Front 6 x 10 x 3 2/3 Triple Curved,24 +45706pb01,Train Front 6 x 10 x 3 2/3 Triple Curved with Green Stripe and Train Logo Print,36 +45707a,"Vehicle, Forklift Wide Forks Reinforced [without Rubber Belt Holder]",36 +45707b,"Vehicle, Forklift Wide Forks Reinforced [with Rubber Belt Holder]",36 +45708,Train Buffer Beam with Rectangular Buffers and Plow,36 +4570pb01,"Duplo, Train Steam Engine Funnel Top, Red Top",4 +45711,"Foam for Set 5861, Belville, Sheet",42 +45719,"Foam for Set 5862, Belville, Sheet",42 +45721c01,Windup Motor 4 x 4 x 3 1/3 [4093],44 +45749,Bionicle Rahkshi Leg Lower Section,41 +4575,Duplo Car with 2 x 4 Studs Bed and Running Boards,4 +45751c01,"Duplo, Toolo Sound Brick Type 1",4 +45783,Technic Panel RC Car - Flexible Right,40 +45784,"Technic, Panel RC Car Flexible Bumper Right",40 +45785,Technic Panel RC Car - Flexible Left,40 +45786,"Technic, Panel RC Car Flexible Bumper Left",40 +45793c01,"Wheel 60 x 34, with Black Tire 60 x 34 Balloon Offset Tread",29 +45793c02,"Wheel 60 x 34, with Orange Tire 60 x 34 Balloon Offset Tread",29 +45799,Technic Bush RC Car Wheel Flexible,29 +458,Tyre for Train Wheel for Electric Train Motor 12V,29 +45803,Technic Beam 3 x 7 L-Shape Double,55 +45805c01,"Electric, Motor RC with Flexible Superaxles",45 +45805c02,"Electric, Motor RC with Flexible Superaxles and Light",45 +4580c01,"Duplo, Train Steam Engine Chassis with Yellow Drive Rod",4 +4582-1,4582 Red Bullet,24 +4584-1,4584 Hot Scorcher,24 +45857,"Belville, Clothes Fairy Skirt - Cherrie Blossom (Pink Skirt, Blue Wings) #5859",42 +4587,Horse Hitching [Hinged],28 +4588,"Brick Round 1 x 1 with Fins, Open Stud",20 +4589,Cone 1 x 1 [No Top Groove],20 +45896,Belville Cloth Baby Pouch Cone,42 +45896b,"Belville Cloth Pouch, Fairyland Baby Cone",42 +45896px1,"Belville Cloth Pouch, Baby with Teddy Bears Print",42 +4590,Plate Special 1 x 4 Offset,9 +4591,Brick Round 2 x 2 x 2 with Axle Hole and Fins,20 +45917,Minifig Skateboard with Mag Wheel Holders,27 +45918,Wheels Skateboard,27 +4592,Lever Small Base,32 +4593,Lever Small,32 +4594,Windscreen 2 x 4 x 2 Vertical,47 +4594px1,Windscreen 2 x 4 x 2 Vertical with Shrunken Head Print [4755],47 +4595,Brick Special 1 x 2 x 2/3 with Studs on Sides,5 +45950,Motorcycle 4 Juniors Chassis 2 x 8 x 3,36 +45951,Motorcycle 4 Juniors Fairing 4 x 3 x 3 with Axle,36 +4596,Plate Special 1 x 2 with Long Stud Receptacle (Space Wing),9 +4597,Cockpit 6 x 6 x 1 Cabin Base,35 +4598,Bracket 3 x 2 - 2 x 2 [aka Space Seat],9 +45982,Tyre 81.6 x 38 R Balloon,29 +4599a,Tap 1 x 1 with Hole in Spout,27 +4599b,Tap 1 x 1 without Hole in Spout,27 +4600,Plate Special 2 x 2 with Wheel Holders,9 +4607,Plate Special 4 x 16 with 24 studs,9 +4608,Fabuland Window 2 x 4 x 5 with Square Top,16 +4610,Fabuland Telephone - Base,27 +46103,Glass for Windscreen 4 x 6 x 4 Cab with Hinge [Fits 45406],47 +4610c01,Fabuland Telephone - Complete Assembly,27 +4611,Door 1 x 6 x 7 Barred,16 +4612,Fabuland Airplane Tail,35 +4612803,LEGO Universe Rocket Code Card (variable code),17 +4612919,Ninjago Masters of Spinjitzu Deck #1 Game Card 18 - Smoke Screen - International Version,17 +4612926,Ninjago Masters of Spinjitzu Deck #1 Game Card 1 - Kai - International Version,17 +4612927,Ninjago Masters of Spinjitzu Deck #1 Game Card 21 - Power Up - International Version,17 +4612928,Ninjago Masters of Spinjitzu Deck #1 Game Card 74 - Higher Ground - International Version,17 +4612929,Ninjago Masters of Spinjitzu Deck #1 Game Card 38 - Shaky Bones - International Version,17 +4612930,Ninjago Masters of Spinjitzu Deck #1 Game Card 24 - Wall of Fire - International Version,17 +4612931,Ninjago Masters of Spinjitzu Deck #1 Game Card 12 - Cole - International Version,17 +4612932,Ninjago Masters of Spinjitzu Deck #1 Game Card 76 - Storm Shield - International Version,17 +4612933,Ninjago Masters of Spinjitzu Deck #1 Game Card 26 - Power Drain - International Version,17 +4612934,Ninjago Masters of Spinjitzu Deck #1 Game Card 52 - Card Freeze - International Version,17 +4612935,Ninjago Masters of Spinjitzu Deck #1 Game Card 20 - Magnetize - International Version,17 +4612946,Ninjago Masters of Spinjitzu Deck #1 Game Card 9 - Bonezai - International Version,17 +4612947,Ninjago Masters of Spinjitzu Deck #1 Game Card 55 - Pick 'n' Choose - International Version,17 +4612948,Ninjago Masters of Spinjitzu Deck #1 Game Card 43 - Limbo - International Version,17 +4612949,Ninjago Masters of Spinjitzu Deck #1 Game Card 67 - Gravity Drop - International Version,17 +4612950,Ninjago Masters of Spinjitzu Deck #1 Game Card 37 - Spiral Vortex - International Version,17 +4613788,Ninjago Masters of Spinjitzu Deck #1 Game Card 14 - Cole DX - International Version,17 +4613985box,Plastic Storage Box with 'Build a Bullseye!' and Red Ribbon Print,17 +4613c01,Fabuland Airplane Base 10 x 4 with Light Gray Wheels,35 +4614,Fabuland Utensil Jack,42 +4616,Fabuland Airplane Motor / Engine Block,42 +4616a,Fabuland Airplane Motor / Engine Block [Undeterminate Pin Hole],35 +4616ac01,"Fabuland Airplane Motor / Engine Block, Small Pin Hole (Complete Assembly with Pin and Yellow Propeller)",35 +4616b,Fabuland Airplane Engine Block with Technic Pin Hole,35 +4617,Propeller 3 Blade 5.5 Diameter [Undetermined Hole Size],35 +4617053,Ninjago Masters of Spinjitzu Deck #1 Game Card 80 - Weapon Frenzy - International Version,17 +4617054,Ninjago Masters of Spinjitzu Deck #1 Game Card 75 - Boulder Barrier - International Version,17 +4617055,Ninjago Masters of Spinjitzu Deck #1 Game Card 53 - Weapon Freeze - International Version,17 +4617056,Ninjago Masters of Spinjitzu Deck #1 Game Card 10 - Zane DX - International Version,17 +4617059,Ninjago Masters of Spinjitzu Deck #1 Game Card 57 - Chain Crazy - International Version,17 +4617061,Ninjago Masters of Spinjitzu Deck #1 Game Card 35 - Elemental Shift - International Version,17 +4617223,Ninjago Masters of Spinjitzu Deck #1 Game Card 56 - Sonic Roar - International Version,17 +4617225,Ninjago Masters of Spinjitzu Deck #1 Game Card 48 - Weapon Swap - International Version,17 +4617228,Ninjago Masters of Spinjitzu Deck #1 Game Card 2 - Nya - International Version,17 +4617229,Ninjago Masters of Spinjitzu Deck #1 Game Card 29 - Backdraft - International Version,17 +4617231,Ninjago Masters of Spinjitzu Deck #1 Game Card 60 - Stand Tough - International Version,17 +4617232,Ninjago Masters of Spinjitzu Deck #1 Game Card 7 - Nuckal - International Version,17 +4617234,Ninjago Masters of Spinjitzu Deck #1 Game Card 30 - Inferno - International Version,17 +4617235,Ninjago Masters of Spinjitzu Deck #1 Game Card 47 - Power Surge - International Version,17 +4617238,Ninjago Masters of Spinjitzu Deck #1 Game Card 40 - Quickswitch - International Version,17 +4617241,njago Masters of Spinjitzu Deck #1 Game Card 44 - Entrapment - International Version,17 +4617a,"Propeller 3 Blade 5.5 Diameter, Small Pin Hole",35 +4617b,Propellor 3 Blade 5.5 Diameter with Hole for Technic Pin,35 +4618c01,Fabuland Fuel Pump with Black Hose (Complete Assembly),42 +4619base01,"Paper, Cardboard Base for Set 4619",17 +46203pb01c01,"Minifig Snowboard with Light Flesh Minifig Head Print, White Bottom",27 +46203pb02c01,"Minifig Snowboard with Black Shape and White Moons Print, White Bottom",27 +46203pb03c01,"Minifig Snowboard with Blue Minifigs Print, Dark Gray Bottom",27 +46203pb04c01,"Minifig Snowboard with Red Minifig Outline Print, White Bottom",27 +46203pb05c01,"Minifig Snowboard with Blue/White/Yellow Print, White Bottom",27 +46203pb06c01,"Minifig Snowboard with Black Minifigs Print, Dark Gray Bottom",27 +4620cdb01,"Paper, Cardboard Base for Set 4620",17 +46212,Brick 1 x 2 x 5 without Side Supports,11 +4621809,Ninjago Masters of Spinjitzu Deck #1 Game Card 5 - Jay - North American Version,17 +4621810,Ninjago Masters of Spinjitzu Deck #1 Game Card 45 - Force Field - North American Version,17 +4621811,Ninjago Masters of Spinjitzu Deck #1 Game Card 64 - Trade off - North American Version,17 +4621812,Ninjago Masters of Spinjitzu Deck #1 Game Card 18 - Smoke Screen - North American Version,17 +4621813,Ninjago Masters of Spinjitzu Deck #1 Game Card 34 - Throwing Star - North American Version,17 +4621814,Ninjago Masters of Spinjitzu Deck #1 Game Card 4 - Frakjaw - North American Version,17 +4621815,Ninjago Masters of Spinjitzu Deck #1 Game Card 28 - Up for Grabs - North American Version,17 +4621816,Ninjago Masters of Spinjitzu Deck #1 Game Card 78 - Cut 'n' Run - North American Version,17 +4621817,Ninjago Masters of Spinjitzu Deck #1 Game Card 69 - Off Balance - North American Version,17 +4621818,Ninjago Masters of Spinjitzu Deck #1 Game Card 23 - Flame Pit - North American Version,17 +4621821,Ninjago Masters of Spinjitzu Deck #1 Game Card 74 - Higher Ground - North American Version,17 +4621822,Ninjago Masters of Spinjitzu Deck #1 Game Card 38 - Shaky Bones - North American Version,17 +4621828,Ninjago Masters of Spinjitzu Deck #1 Game Card 20 - Magnetize - North American Version,17 +4621829,Ninjago Masters of Spinjitzu Deck #1 Game Card 8 - Zane - North American Version,17 +4621830,Ninjago Masters of Spinjitzu Deck #1 Game Card 61 - Freeze Ray - North American Version,17 +4621831,Ninjago Masters of Spinjitzu Deck #1 Game Card 73 - Safeguard - North American Version,17 +4621832,Ninjago Masters of Spinjitzu Deck #1 Game Card 54 - Snow Surfin' - North American Version,17 +4621833,Ninjago Masters of Spinjitzu Deck #1 Game Card 51 - Throwing Star - North American Version,17 +4621834,Ninjago Masters of Spinjitzu Deck #1 Game Card 13 - Chopov - North American Version,17 +4621835,Ninjago Masters of Spinjitzu Deck #1 Game Card 70 - Rock Block - North American Version,17 +4621836,Ninjago Masters of Spinjitzu Deck #1 Game Card 59 - Snow Surfin' - North American Version,17 +4621837,Ninjago Masters of Spinjitzu Deck #1 Game Card 71 - Endurance - North American Version,17 +4621838,Ninjago Masters of Spinjitzu Deck #1 Game Card 58 - Ice Spikes - North American Version,17 +4621839,Ninjago Masters of Spinjitzu Deck #1 Game Card 9 - Bonezai - North American Version,17 +4621841,Ninjago Masters of Spinjitzu Deck #1 Game Card 43 - Limbo - North American Version,17 +4621844,Ninjago Masters of Spinjitzu Deck #1 Game Card 6 - Krazi - North American Version,17 +4621845,Ninjago Masters of Spinjitzu Deck #1 Game Card 39 - Karate Chop - North American Version,17 +4621846,Ninjago Masters of Spinjitzu Deck #1 Game Card 27 - Power Up - North American Version,17 +4621847,Ninjago Masters of Spinjitzu Deck #1 Game Card 33 - Hurricane - North American Version ,17 +4621848,Ninjago Masters of Spinjitzu Deck #1 Game Card 41 - Lightning Strike - North American Version,17 +4621849,Ninjago Masters of Spinjitzu Deck #1 Game Card 16 - Sensei Wu (White Outfit) - North American Version,17 +4621850,Ninjago Masters of Spinjitzu Deck #1 Game Card 14 - Cole DX - North American Version,17 +4621867,Ninjago Masters of Spinjitzu Deck #1 Game Card 3 - Kai DX - North American Version,17 +4621868,Ninjago Masters of Spinjitzu Deck #1 Game Card 32 - Total Recall - North American Version,17 +4621869,Ninjago Masters of Spinjitzu Deck #1 Game Card 22 - Weapon Force - North American Version,17 +4621870,Ninjago Masters of Spinjitzu Deck #1 Game Card 72 - Reckless - North American Version,17 +46224c01,Gearbox 4 x 2 x 4 [Worm / 24Tooth] Dark Gray Centre,44 +4623,Plate Special 1 x 2 with Arm Up [Horizontal Arm 6mm],9 +4624,Wheel 8 x 6,29 +4624c02,"Wheel 8mm D. x 6mm, with Black Tyre Offset Tread Small (4624 / 3641)",29 +4625,Hinge Tile 1 x 4,18 +4625992,Star Wars 2011 Advent Calendar Poster,17 +4626,"Hinge Bucket 2 x 3 Curved Bottom, Hollow, with 2 Fingers",36 +4627,Minifig Jack Lifter,27 +46277,Clikits Icon - Small Heart with Pin [Polished],48 +4628,Minifig Jack Handle,27 +46281,Clikits Icon - Large Daisy 10 Petals with Pin [Polished],48 +46282,Clikits Icon - Small Daisy 10 Petals with Pin [Polished],48 +46285,Clikits Icon - Small Star with Pin [Polished],48 +46286,Clikits Icon - Small Star with Hole [Polished],48 +4629,Minifig Jack Base,27 +46296,Clikits Ring - Thick Small with Hole [Polished],48 +4629c01,Minifig Jack - Complete Assembly,27 +4630067,Ninjago Masters of Spinjitzu Deck #1 Game Card 19 - Gold Rush - North American Version,17 +4630068,Ninjago Masters of Spinjitzu Deck #1 Game Card 81 - Power Build - International Version,17 +46303,Minifig Sports Helmet,27 +4630314,Ninjago Masters of Spinjitzu Deck #1 Game Card 65 - Deflection - International Version,17 +4630317,Ninjago Masters of Spinjitzu Deck #1 Game Card 36 - Zen Strike - International Version,17 +4630321,Ninjago Masters of Spinjitzu Deck #1 Game Card 31 - Meditate - International Version,17 +46303pr0001,Minifig Helmet Sports with Vent Holes with Red Star Print,27 +46304,Minifig Visor Snow Goggles,27 +46309,"Electric, Train Light Prism 4 x 4",45 +4631386,Ninjago Masters of Spinjitzu Deck #1 Game Card 15 - Kruncha - International Version,17 +4631388,Ninjago Masters of Spinjitzu Deck #1 Game Card 63 - Sacrifice - International Version,17 +4631390,Ninjago Masters of Spinjitzu Deck #1 Game Card 66 - Impersonation - International Version,17 +4631392,Ninjago Masters of Spinjitzu Deck #1 Game Card 68 - Recovery - International Version,17 +4631394,Ninjago Masters of Spinjitzu Deck #1 Game Card 77 - Gold Smash - International Version,17 +4631396,Ninjago Masters of Spinjitzu Deck #1 Game Card 11 - Wyplash - International Version,17 +4631398,Ninjago Masters of Spinjitzu Deck #1 Game Card 62 - Ice Shield - International Version,17 +4631411,Ninjago Masters of Spinjitzu Deck #1 Game Card 46 - Weapon Swap - International Version,17 +4631414,Ninjago Masters of Spinjitzu Deck #1 Game Card 42 - Twister - International Version,17 +4631416,Ninjago Masters of Spinjitzu Deck #1 Game Card 25 - Head Spin - International Version,17 +4631418,Ninjago Masters of Spinjitzu Deck #1 Game Card 17 - Garmadon - International Version,17 +4631420,Ninjago Masters of Spinjitzu Deck #1 Game Card 50 - Double Trouble - International Version,17 +4631422,Ninjago Masters of Spinjitzu Deck #1 Game Card 49 - Finders Keepers - International Version,17 +4631424,Ninjago Masters of Spinjitzu Deck #1 Game Card 79 - Shadow Sphere - International Version,17 +4631444,Ninjago Masters of Spinjitzu Deck #1 Game Card 1 - Sensei Wu (White Outfit) (3D Lenticular Card) ,17 +4631447,Ninjago Masters of Spinjitzu Deck #1 Game Card *4 - Force Field (Golden Card),17 +46413,Windscreen 8 x 4 x 2 Curved [2 Dual-Fingered Click Hinges],47 +4642684,Ninjago Masters of Spinjitzu Deck #1 Game Card *7 - Sensei Wu (Black Outfit) - International Version,17 +4642stk01,Sticker for Set 4642 - (93846/4612740),17 +4643103,Pirates of the Caribbean - Jack Sparrow,17 +4643104,Pirates of the Caribbean - Hector Barbossa,17 +4643131,Pirates of the Caribbean - Joshamee Gibbs,17 +4643132,Pirates of the Caribbean - Syrena,17 +4643137,Pirates of the Caribbean - Blackbeard,17 +4643477,Ninjago Masters of Spinjitzu Deck #2 Game Card 2 - Kai ZX - International Version,17 +4643478,Ninjago Masters of Spinjitzu Deck #2 Game Card 31 - Gates of Fire! - International Version,17 +4643479,Ninjago Masters of Spinjitzu Deck #2 Game Card 27 - Cinder Storm - International Version,17 +4643480,Ninjago Masters of Spinjitzu Deck #2 Game Card 69 - Shock Drop - International Version,17 +4643481,Ninjago Masters of Spinjitzu Deck #2 Game Card 97 - Frost Bite - International Version,17 +4643537,Ninjago Masters of Spinjitzu Deck #2 Game Card 1 - Lloyd ZX - International Version,17 +4643538,Ninjago Masters of Spinjitzu Deck #2 Game Card 84 - Roundhouse Kick! - International Version,17 +4643539,Ninjago Masters of Spinjitzu Deck #2 Game Card 121 - Unique Power - International Version,17 +4643540,Ninjago Masters of Spinjitzu Deck #2 Game Card 117 - Premonition - International Version,17 +4643541,Ninjago Masters of Spinjitzu Deck #2 Game Card 115 - Opposition - International Version,17 +4643601,Ninjago Masters of Spinjitzu Deck #2 Game Card 15 - Kendo Cole - North American Version,17 +4643602,Ninjago Masters of Spinjitzu Deck #2 Game Card 30 - Liquify - North American Version,17 +4643603,Ninjago Masters of Spinjitzu Deck #2 Game Card 73 - Flash 'n' Burn - North American Version,17 +4643604,Ninjago Masters of Spinjitzu Deck #2 Game Card 87 - Rock Force - North American Version,17 +4643605,Ninjago Masters of Spinjitzu Deck #2 Game Card 122 - Backup Plan - North American Version,17 +4643606,Ninjago Masters of Spinjitzu Deck #2 Game Card 25 - Lloyd - North American Version,17 +4643607,Ninjago Masters of Spinjitzu Deck #2 Game Card 95 - Fearless - North American Version,17 +4643608,Ninjago Masters of Spinjitzu Deck #2 Game Card 101 - White Out - North American Version,17 +4643609,Ninjago Masters of Spinjitzu Deck #2 Game Card 48 - Crown of Lightning - North American Version,17 +4643610,Ninjago Masters of Spinjitzu Deck #2 Game Card 88 - Whip Attack - North American Version,17 +4643611,Ninjago Masters of Spinjitzu Deck #2 Game Card 9 - Jay ZX - North American Version,17 +4643612,Ninjago Masters of Spinjitzu Deck #2 Game Card 53 - Fast as Lightning - North American Version,17 +4643613,Ninjago Masters of Spinjitzu Deck #2 Game Card 113 - Surrender - North American Version,17 +4643614,Ninjago Masters of Spinjitzu Deck #2 Game Card 106 - Avalanche - North American Version,17 +4643615,Ninjago Masters of Spinjitzu Deck #2 Game Card 57 - Double Stars - North American Version,17 +4643616,Ninjago Masters of Spinjitzu Deck #2 Game Card 5 - Samurai X - North American Version,17 +4643617,Ninjago Masters of Spinjitzu Deck #2 Game Card 79 - Rookie Archer! - North American Version,17 +4643618,Ninjago Masters of Spinjitzu Deck #2 Game Card 43 - Double Duel - North American Version,17 +4643619,Ninjago Masters of Spinjitzu Deck #2 Game Card 39 - Boomerang - North American Version,17 +4643620,Ninjago Masters of Spinjitzu Deck #2 Game Card 64 - Whirlwind - North American Version,17 +4643621,Ninjago Masters of Spinjitzu Deck #2 Game Card 11 - Lasha - North American Version,17 +4643622,Ninjago Masters of Spinjitzu Deck #2 Game Card 66 - Toxic Venom - North American Version,17 +4643623,Ninjago Masters of Spinjitzu Deck #2 Game Card 112 - Armory - North American Version,17 +4643624,Ninjago Masters of Spinjitzu Deck #2 Game Card 120 - Lazy Ninja - North American Version,17 +4643625,Ninjago Masters of Spinjitzu Deck #2 Game Card 83 - Close Call - North American Version,17 +4643626,Ninjago Masters of Spinjitzu Deck #2 Game Card 20 - Kendo Zane - North American Version,17 +4643627,Ninjago Masters of Spinjitzu Deck #2 Game Card 102 - Anti-Venom - North American Version,17 +4643628,Ninjago Masters of Spinjitzu Deck #2 Game Card 89 - Chill Charge - North American Version,17 +4643629,jago Masters of Spinjitzu Deck #2 Game Card 104 - Falcon Eye - North American Version,17 +4643630,Ninjago Masters of Spinjitzu Deck #2 Game Card 124 - Gate of Crowns! - North American Version,17 +4643631,Ninjago Masters of Spinjitzu Deck #2 Game Card 6 - Snappa - North American Version,17 +4643632,Ninjago Masters of Spinjitzu Deck #2 Game Card 75 - Stand Still! - North American Version,17 +4643633,Ninjago Masters of Spinjitzu Deck #2 Game Card 47 - Retreat - North American Version,17 +4643634,Ninjago Masters of Spinjitzu Deck #2 Game Card 42 - Wildfire - North American Version,17 +4643635,Ninjago Masters of Spinjitzu Deck #2 Game Card 59 - Bite Back - North American Version,17 +4643636,Ninjago Masters of Spinjitzu Deck #2 Game Card 14 - Cole ZX - North American Version,17 +4643637,Ninjago Masters of Spinjitzu Deck #2 Game Card 119 - Windmill Spin! - North American Version,17 +4643638,Ninjago Masters of Spinjitzu Deck #2 Game Card 71 - Ninja Star - North American Version,17 +4643639,Ninjago Masters of Spinjitzu Deck #2 Game Card 86 - Rock Fall - North American Version,17 +4643640,Ninjago Masters of Spinjitzu Deck #2 Game Card 82 - Elemental Force - North American Version,17 +4643641,Ninjago Masters of Spinjitzu Deck #2 Game Card 22 - Rattla - North American Version,17 +4643642,Ninjago Masters of Spinjitzu Deck #2 Game Card 100 - Sneak Attack! - North American Version,17 +4643643,Ninjago Masters of Spinjitzu Deck #2 Game Card 109 - Ice Gliding - North American Version,17 +4643644,Ninjago Masters of Spinjitzu Deck #2 Game Card 76 - Hypnotize - North American Version,17 +4643645,Ninjago Masters of Spinjitzu Deck #2 Game Card 65 - Hypno Charge - North American Version,17 +4643646,Ninjago Masters of Spinjitzu Deck #2 Game Card 3 - Kendo Kai - North American Version,17 +4643647,Ninjago Masters of Spinjitzu Deck #2 Game Card 55 - Spin Circle! - North American Version,17 +4643648,Ninjago Masters of Spinjitzu Deck #2 Game Card 114 - Extinguish - North American Version,17 +4643649,Ninjago Masters of Spinjitzu Deck #2 Game Card 33 - Blinding Flash - North American Version,17 +4643650,Ninjago Masters of Spinjitzu Deck #2 Game Card 67 - Backflip - North American Version,17 +4643656,Ninjago Masters of Spinjitzu Deck #2 Game Card 7 - Fang-Suei - North American Version,17 +4643657,Ninjago Masters of Spinjitzu Deck #2 Game Card 61 - Well-Armed - North American Version,17 +4643658,Ninjago Masters of Spinjitzu Deck #2 Game Card 41 - Volcano - North American Version,17 +4643659,Ninjago Masters of Spinjitzu Deck #2 Game Card 46 - Sensei's Red Card - North American Version,17 +4643660,Ninjago Masters of Spinjitzu Deck #2 Game Card 51 - Recharge - North American Version,17 +4643661,Ninjago Masters of Spinjitzu Deck #2 Game Card 19 - Zane ZX - North American Version,17 +4643662,Ninjago Masters of Spinjitzu Deck #2 Game Card 105 - Black Ice Shield - North American Version,17 +4643663,Ninjago Masters of Spinjitzu Deck #2 Game Card 103 - Stroke of Genius - North American Version,17 +4643664,Ninjago Masters of Spinjitzu Deck #2 Game Card 92 - Crown of Ice - North American Version,17 +4643665,Ninjago Masters of Spinjitzu Deck #2 Game Card 123 - Counterattack - North American Version,17 +4643668,Ninjago Masters of Spinjitzu Deck #2 Game Card 23 - Mezmo - North American Version,17 +4643669,Ninjago Masters of Spinjitzu Deck #2 Game Card 72 - Snake Whips - North American Version,17 +4643670,Ninjago Masters of Spinjitzu Deck #2 Game Card 58 - Inner-Peace - North American Version,17 +4643671,Ninjago Masters of Spinjitzu Deck #2 Game Card 98 - Upper-Hand - North American Version,17 +4643672,Ninjago Masters of Spinjitzu Deck #2 Game Card 118 - Sacred Flute - North American Version,17 +4643673,Ninjago Masters of Spinjitzu Deck #2 Game Card 18 - Bytar - North American Version,17 +4643674,Ninjago Masters of Spinjitzu Deck #2 Game Card 77 - Ground Attack - North American Version,17 +4643675,Ninjago Masters of Spinjitzu Deck #2 Game Card 28 - Chain Strike - North American Version,17 +4643676,Ninjago Masters of Spinjitzu Deck #2 Game Card 70 - Crown of Earth - North American Version,17 +4643677,Ninjago Masters of Spinjitzu Deck #2 Game Card 80 - Earth Bound - North American Version,17 +4643678,Ninjago Masters of Spinjitzu Deck #2 Game Card 13 - Lizaru - North American Version,17 +4643679,Ninjago Masters of Spinjitzu Deck #2 Game Card 60 - Spit Acid - North American Version,17 +4643680,Ninjago Masters of Spinjitzu Deck #2 Game Card 38 - Boost - North American Version,17 +4643681,Ninjago Masters of Spinjitzu Deck #2 Game Card 125 - Fair Fight - North American Version,17 +4643682,Ninjago Masters of Spinjitzu Deck #2 Game Card 44 - Poison Whips - North American Version,17 +4643683,Ninjago Masters of Spinjitzu Deck #2 Game Card 12 - Spitta - North American Version,17 +4643684,Ninjago Masters of Spinjitzu Deck #2 Game Card 116 - Use Surroundings - North American Version,17 +4643685,Ninjago Masters of Spinjitzu Deck #2 Game Card 54 - Panic Stations - North American Version,17 +4643686,Ninjago Masters of Spinjitzu Deck #2 Game Card 62 - Electric Maelstrom - North American Version,17 +4643687,Ninjago Masters of Spinjitzu Deck #2 Game Card 45 - Assist - North American Version,17 +4643688,Ninjago Masters of Spinjitzu Deck #2 Game Card 10 - NRG Jay - North American Version,17 +4643689,Ninjago Masters of Spinjitzu Deck #2 Game Card 52 - Chain Lightning! - North American Version,17 +4643690,Ninjago Masters of Spinjitzu Deck #2 Game Card 49 - Sizzling Sphere - North American Version,17 +4643691,Ninjago Masters of Spinjitzu Deck #2 Game Card 29 - Dual Burst - North American Version,17 +4643692,Ninjago Masters of Spinjitzu Deck #2 Game Card 56 - Swap you - North American Version,17 +4643693,Ninjago Masters of Spinjitzu Deck #2 Game Card 8 - Fangdam - North American Version,17 +4643694,Ninjago Masters of Spinjitzu Deck #2 Game Card 63 - Crushing Bolt - North American Version,17 +4643695,Ninjago Masters of Spinjitzu Deck #2 Game Card 26 - Crown of Fire - North American Version,17 +4643696,Ninjago Masters of Spinjitzu Deck #2 Game Card 94 - Unsteady - North American Version,17 +4643697,Ninjago Masters of Spinjitzu Deck #2 Game Card 34 - Fire Fields - North American Version,17 +4643698,Ninjago Masters of Spinjitzu Deck #2 Game Card 16 - NRG Cole - North American Version,17 +4643699,Ninjago Masters of Spinjitzu Deck #2 Game Card 85 - Master Archer! - North American Version,17 +4643700,Ninjago Masters of Spinjitzu Deck #2 Game Card 81 - Snake Quake - North American Version,17 +4643701,Ninjago Masters of Spinjitzu Deck #2 Game Card 36 - Provoke Anger - North American Version,17 +4643702,Ninjago Masters of Spinjitzu Deck #2 Game Card 90 - Sensei's Teatime - North American Version,17 +4643703,Ninjago Masters of Spinjitzu Deck #2 Game Card 24 - Slithraa - North American Version,17 +4643704,Ninjago Masters of Spinjitzu Deck #2 Game Card 107 - Gates of Ice! - North American Version,17 +4643705,Ninjago Masters of Spinjitzu Deck #2 Game Card 99 - Spirit Guard - North American Version,17 +4643706,Ninjago Masters of Spinjitzu Deck #2 Game Card 40 - Wrong turn - North American Version,17 +4643707,Ninjago Masters of Spinjitzu Deck #2 Game Card 91 - Even the Odds - North American Version,17 +4643713,Ninjago Masters of Spinjitzu Deck #2 Game Card 21 - NRG Zane - North American Version,17 +4643714,Ninjago Masters of Spinjitzu Deck #2 Game Card 111 - Spin-o-Rama! - North American Version,17 +4643715,Ninjago Masters of Spinjitzu Deck #2 Game Card 93 - Diamond Coated - North American Version,17 +4643716,Ninjago Masters of Spinjitzu Deck #2 Game Card 74 - Crumble to Dust - North American Version,17 +4643717,Ninjago Masters of Spinjitzu Deck #2 Game Card 108 - Snowblind - North American Version,17 +4643718,Ninjago Masters of Spinjitzu Deck #2 Game Card 4 - NRG Kai - North American Version,17 +4643719,Ninjago Masters of Spinjitzu Deck #2 Game Card 35 - Rings of Fire! - North American Version,17 +4643720,Ninjago Masters of Spinjitzu Deck #2 Game Card 37 - Spitfire Snake - North American Version,17 +4643721,Ninjago Masters of Spinjitzu Deck #2 Game Card 68 - Sensei's Whistle - North American Version,17 +4643722,Ninjago Masters of Spinjitzu Deck #2 Game Card 50 - Strike Down - North American Version,17 +4643723,Ninjago Masters of Spinjitzu Deck #2 Game Card 17 - Chokun - North American Version,17 +4643724,Ninjago Masters of Spinjitzu Deck #2 Game Card 96 - Gateway Guardian! - North American Version,17 +4643725,Ninjago Masters of Spinjitzu Deck #2 Game Card 110 - Elemental Strength - North American Version,17 +4643726,Ninjago Masters of Spinjitzu Deck #2 Game Card 78 - Circular Saw - North American Version,17 +4643727,Ninjago Masters of Spinjitzu Deck #2 Game Card 32 - Lava Puddle - North American Version,17 +4644156,Pirates of the Caribbean Poster - Isla De Muerta,17 +4644157,Pirates of the Caribbean Poster - The Cannibal Escape,17 +4644158,Pirates of the Caribbean Poster - The Mill,17 +4644159,"Pirates of the Caribbean Poster, On Stranger Tides - Fountain of Youth",17 +4644160,Pirates of the Caribbean Video Game Poster,17 +4644163,Pirates of the Caribbean Poster - The London Escape,17 +4644165,"Pirates of the Caribbean Poster, On Stranger Tides - Whitecap Bay",17 +4644166,Pirates of the Caribbean Poster - Queen Anne's Revenge,17 +46452,"Technic Engine Tunable, Block with Two Round Air Scoops [Fits 2133]",25 +46453,"Technic Engine Tunable, Block with Trapezoidal Air Scoop [Fits 2133]",25 +46454,"Technic Engine Tuneable, Cover [Fits 2133]",25 +46455,"Technic Engine Tuneable, Single Exhaust [Fits 2133]",25 +46456,"Technic Engine Tuneable, Triple Exhaust [Fits 2133]",25 +4651886,Plastic Eye Bandage with Multi-Colour Spots [30029],38 +4654,Duplo Winch Stand,4 +4654c04,"Duplo Hose Reel Holder 2 x 2 with Red Drum, Yellow Hook, String (Complete Assembly)",4 +4655,Duplo Boat Air Vent,4 +4657,Duplo Boat Helm Support,4 +4658,Duplo Boat Helm,4 +4659758box,Plastic Storage Box with Two-Tone Green Target Bullseye Ribbon Print,17 +4662,Duplo Hook,4 +46667,Jet Engine Fan with 10 Blades and Technic Pin,35 +4667292,Pirates of the Caribbean Poster - The Black Pearl,17 +4668,Duplo Railing with Circle Openings,4 +4671,Duplo Boat Car Ramp,4 +4672,Plate 4 x 8,4 +4679a-1,4679a Bricks and Creations Tub (Bottom Tub and its contents only),24 +4679a-2,4679a Bricks and Creations Tub - (TRU Exclusive) (Bottom Tub and its contents only),24 +4679b-1,4679b Super Value 500 LEGO Elements (Bonus box and its contents only),24 +4679b-2,4679b Free 500 LEGO Bricks (Bonus box and its contents only),24 +4688c01,Pneumatic Cylinder with 1 Inlet Medium (48mm),22 +4689c01,Pneumatic Cylinder with 1 Inlet Large (64mm),22 +468c01,Electric 4.5V Battery Box 7 x 11 x 3 Type 1 (Complete),45 +468c02,Electric 4.5V Battery Box 7 x 11 x 3 Type 2 [Complete],45 +468c03,Electric 4.5V Battery Box 6 x 11 x 3 1/3 Type 3 [Complete],45 +4692c01,Technic Pneumatic Distribution Block 2 x 4 (Complete),22 +4697a,Pneumatic T-Piece (T Bar) [Old Style],22 +4697b,Pneumatic T-Piece (T Bar) [New Style],22 +4698,Technic Axle Nut,46 +4700,Technic Digger Bucket 8 x 6,26 +4701c01,Pneumatic Pump Old Style,22 +4702stk01,Sticker for Set 4702,17 +4707,~Electric Switch Base with 1 Twin Plug Socket,45 +47073,Container Storage Water Bottle,7 +47074,"Water Bottle, Canister Top (fits Gear 47073)",17 +4707c01,Electric Switch: Remote Control for Train Point,45 +4707c02,Electric Switch: Remote Control for Train Decoupler,45 +4707c03,Electric Switch: Remote Control with Rotating Arrows Print,45 +4707pb02,"Electric, Train 12V Remote Control 8 x 10 with Signal Print",45 +4707pb04,"Electric, Train 12V Remote Control 8 x 10 with Level Crossing Print",45 +47115,"Brick, Modified 24 x 24 without 12 x 12 Quarter Circle, with Peg at each Corner",11 +47116,Brick Special 12 x 24 with 4 Corner Pegs,5 +47117,Brick Special 2 x 2 with Grooves and Top Peg,5 +47122,Brick Special 2 x 24 with 2 End Pegs,5 +4714,Minifig Stretcher,27 +4714c01,Minifig Stretcher with 2 Wheels [Complete Assembly],27 +4715,Minifig Stretcher Wheels,27 +47157,Electric Technic Motor 9v Geared (480 RPM) Axle Bush (part of 58121),45 +4716,Technic Worm Gear,52 +4719,Bicycle Frame,36 +4720,Wheel Bicycle without Tire,29 +47202,Duplo Figure with Construction Helmet - DO NOT USE!,57 +47202apr0003,Duplo Figure with White Construction Helmet - Blue Long Sleeve Jacket - Light Flesh Face and Hands - Blue Legs,57 +47202apr0006,Duplo Figure with Yellow Construction Helmet - Orange Long Sleeve Jacket - Light Flesh Face and Hands - Medium Blue Legs,57 +47202apr0007,Duplo Figure with White Construction Helmet - Orange Long Sleeve Jacket - Light Flesh Face and Hands - Dark Tan Legs,57 +47202bpr0001,Duplo Figure with Orange Construction Helmet - Orange Vest over Red Long Sleeve Shirt - Light Flesh Face and Hands - Black Legs,57 +47202bpr0002,Duplo Figure with Orange Construction Helmet - Orange Vest over Green Shirt - Medium Dark Flesh Face and Hands - Black Legs,57 +47202bpr0007,Duplo Figure with Orange Construction Helmet - Orange Vest over Blue Long Sleeve Shirt - Light Flesh Face and Hands - Dark Bluish Gray Legs,57 +47219,CHILD FIGURE NO 1 LAURA,4 +4721cdb01,"Paper, Cardboard Backdrop for Set 4721 - (4163003)",17 +47223,Pneumatic Switch with Pin Holes [Undetermined Version],24 +47223a,Pneumatic Switch with Pin Holes,22 +47223b,Pneumatic Switch with Pin Holes and Stepped Outlets [V2],22 +47225,Pneumatic Cylinder with 2 Inlets and Rounded End Medium (48mm),22 +4722cdb01,"Paper, Cardboard Backdrop for Set 4722 - (4163004)",17 +4723cdb01,"Paper, Cardboard Backdrop for Set 4723 - (4163005)",17 +4727,Plant Flower 2 x 2 Leaves - Angular,28 +4728,Flower 2 x 2 - Round [Open Stud],28 +4728pb01,Plant Flower 2 x 2 - Rounded with Med Green Radiating Lines and Med Orange Dots (Pistil) Print,28 +4729,"Brick Special 2 x 2 No Studs, Top Pin",5 +47295,Bionicle Matoran Chest,41 +47296,Technic Axle and Pin Connector 2 x 5 with Two Ball Joint Sockets,12 +47297,Bionicle Toa Metru Leg Lower Section,41 +47298,Bionicle Toa Metru Foot,41 +47299,Bionicle Toa Metru Knee Cover,41 +4730,Brick Special 2 x 2 with Pin and No Axle Hole,5 +47300,Bionicle Ball Joint 3 x 3 x 2 90 Degree with 2 Ball Joints and Axle hole,41 +47301,Bionicle Mask Matatu (Toa Metru),41 +47302,Bionicle Mask Ruru (Toa Metru),41 +47303,Bionicle Mask Rau (Toa Metru),41 +47304,Bionicle Kanoka Disk Launcher (Matoran),41 +47305,Bionicle Toa Metru Torso,41 +47306,Bionicle Hips / Lower Torso with 2 Ball Joints and 7 Tooth Half Gear,41 +47307,Bionicle Mask Mahiki (Toa Metru),41 +47308,Bionicle Mask Huna (Toa Metru),41 +47309,Bionicle Mask Komau (Toa Metru),41 +47310,"Bionicle Shoulder Armour, Toa Metru",41 +47311,Bionicle Toa Metru Arm Lower Section with Two Ball Joints,41 +47312,Bionicle Head Connector Block (Toa Metru),41 +47313,Bionicle Head Connector Block Eye/Brain Stalk (Toa Metru),41 +47314,Bionicle Weapon Aero Slicer,41 +47315,Bionicle Weapon Earthshock Drill claw,41 +47316,Bionicle Weapon Hydro Blade,41 +47317,Bionicle Weapon Crystal Spike,41 +47318,Bionicle Kanoka Disk Launcher (Toa Vakama),41 +47319,Bionicle Weapon Proto-Piton,41 +4732,Bracket 8 x 2 x 1 1/3,9 +47324,"Technic, Spike Connector Flexible with Four Holes, Flat Center",12 +47326,Technic Axle Connector 2 x 3 with Ball Socket and Axle Socket with Rubber Insert [Plain],24 +47326pat01,Technic Axle Connector 2 x 3 with Ball Socket and Axle Socket with Black Rubber Insert,12 +47326pat02,Technic Axle Connector 2 x 3 with Ball Socket and Axle Socket with White Rubber Insert,12 +47326pat03,Technic Axle Connector 2 x 3 with Ball Socket and Axle Socket with Light Bluish Gray Rubber Insert,12 +47327,Bionicle Mask Pehkui,41 +47327pat0001,Bionicle Mask Kiril with Black Top (Dume),41 +47328,Bionicle Vahki Leg Lower Section,41 +4733,Brick Special 1 x 1 Studs on 4 Sides,5 +47330,Bionicle Vahki Torso Lower Section,41 +47331,Bionicle Vahki Torso Upper Section,41 +47332,Bionicle Head Connector Block (Vahki),41 +47334,Bionicle Kanoka Disk Launcher (Vahki),41 +47335,Bionicle Weapon Vahki Staff of Confusion (Keerakh),41 +47335pat0001,"Bionicle Weapon Vahki Staff of Confusion, Marbled Black Pattern",41 +47336,Bionicle Weapon Vahki Staff of Erasing (Vorzakh),41 +47337,Bionicle Weapon Vahki Staff of Loyalty (Bordakh),41 +47338,Bionicle Weapon Vahki Staff of Command (Nuurakh),41 +47339,Bionicle Weapon Vahki Staff of Presence (Rorzakh),41 +47349c01,"Wheel 72 x 34, with Black Tire 72 x 34 Balloon Offset Tread",29 +47349c02,"Wheel 72 x 34, with Red Tire 72 x 34 Balloon Offset Tread",29 +47349c03,"Wheel 72 x 34, with Lime Tire 72 x 34 Balloon Offset Tread",29 +47349c04,"Wheel 72 x 34, with Lime Tire 72 x 34 Balloon Offset Tread",29 +4735,Bar 1 x 3 [Clip / Anti-Stud],32 +4736,Minifig Jet-Pack with Front Stud,27 +4737,Panel 4 x 4 x 6 Corner Convex Ribbed,23 +47371,"Technic, Panel RC Car Panel Flexible Middle",40 +47376,"Brick, Round Corner 12 x 12 with 3 Support Pegs",20 +47385c01,"Electric, RC Racer Battery Box / Receiver Unit",45 +4738a,Treasure Chest Bottom with Rear Slots,7 +4738b,Treasure Chest Bottom without Rear Slots,7 +47394pb051,"Duplo Figure Lego Ville, Male, Black Legs, Blue Jacket with Tie, Flesh Hands, Red Hat, Smile with Closed Mouth (Train Conductor)",4 +47394pb078,"Duplo Figure Lego Ville, Male, Tan Legs, Blue Top, Black Vest, Black Hair",4 +47394pb114,"Duplo Figure Lego Ville, Female, Medium Blue Legs, Red Jacket with Zipper and Pockets, Reddish Brown Ponytail Hair",4 +47394pb115,"Duplo Figure Lego Ville, Male, Blue Legs, Tan Top with Blue Overalls, Red Baseball Cap",4 +47394pb147,"Duplo Figure Disney Princess, Sleeping Beauty (Lego Ville)",4 +47394pb148,"Duplo Figure Disney Princess, Snow White",4 +47394pb160,"Duplo Figure Lego Ville, Male, White Legs, White Race Top with Octan Logo, Yellow Cap with Headset",4 +47394pb161,"Duplo Figure Lego Ville, Male, White Legs, White Race Top with Octan Logo, Red Helmet",4 +47396,Dewback Head,28 +47397,Wedge Plate 12 x 3 Left,49 +47398,Wedge Plate 12 x 3 Right,49 +4739a,Treasure Chest Lid [Thick Hinge],7 +4739b,Treasure Chest Lid [Thin Hinge],7 +4740,Dish 2 x 2 Inverted [Radar],21 +47404,Boat Bow Brick 10 x 12 x 1 Open,35 +47405,Boat Bow Plate 8 x 12,9 +47406,Cockpit 10 x 6 x 2 Curved,6 +47407,Wedge Plate 4 x 6,49 +47408,Duplo Cone 2 x 2 Square Base,4 +4740pb01,Dish 2 x 2 Inverted (Radar) with Lace and Flower Print,21 +4740pb02,Dish 2 x 2 Inverted (Radar) with HP Clock Top Print,21 +4740pr0001a,Dish 2 x 2 Inverted [Radar] with Mushroom Spots Print,21 +4740pr0001b,Dish 2 x 2 Inverted (Radar) with Cockpit Window Print,21 +4740pr0002a,Dish 2 x 2 Inverted [Radar] with Dark Red Swirl and Purple Spots Print,21 +4740pr0002b,Dish 2 x 2 Inverted (Radar) with White Lightning Bolts Print,21 +4740pr0003,Dish 2 x 2 Inverted [Radar] with White Spider Web Print,21 +4740pr0004a,Dish 2 x 2 Inverted (Radar) with Dark Red Swirl and Medium Blue Spots Print,21 +4740pr0004b,Dish 2 x 2 Inverted (Radar) with Lavender and White Electricity Print,21 +4740pr0005,Dish 2 x 2 Inverted [Radar] with SW Droid T7-O1 Print [9497],21 +4740pr0005a,Dish 2 x 2 Inverted [Radar] with Elaborate Runes Print,21 +4740pr0006,Dish 2 x 2 Inverted [Radar] with Tan Mushroom Print,21 +4740pr0007,Dish 2 x 2 Inverted (Radar) Machinery (Dalek Head) print,21 +4740pr0010,SATTELLITE DISH Ø16 NO.10,21 +4741,Window 4 x 4 x 6 Outward Sloping,16 +47411,DUPLO TRUCK TRAILER 4X13X2,24 +47414,Duplo Rotor 2 Blade for Helicopter Small (Propeller),4 +4742,Cone 4 x 4 x 2 Hollow No Studs,20 +47423,Duplo Container Box 4 x 4 with Studs on Corners,4 +47423pb06,Duplo Container Box 4 x 4 with Studs on Corners with Rescue / Staff of Asclepius Print (4681),4 +47423pb08,Duplo Container Box 4 x 4 with Studs on Corners with Four Squares Print,4 +47424,"DUPLO TRUCK BOTTOM 5X9X5,5",4 +4743,Brick Arch 2 x 8 x 3,37 +47430,Foot with Rotation Joint Ball Half [Vertical Side],41 +47431,"Technic Brick Special 2 x 2 with Axle Hole, Rotation Joint Ball Half [Vertical Side], Vertical Axle Hole End",26 +47432,"Technic Brick Special 2 x 3 with Pin Holes, Rotation Joint Ball Half [Vertical Side], Rotation Joint Socket",26 +47437,"Duplo Car with 2 Studs on Roof, Blue Base and 'POLICE' Print",4 +4744,Brick Curved 2 x 4 x 2 Double Curved Top,37 +47440,Pickup Truck 5 X 10 X 4 Assembly,4 +47444c01,Duplo Farm Tractor New Style with 2 x 3 Studs on Hood,4 +47448,Duplo Trailer Bed with 2 x 4 Studs and Four Sides,4 +4744p03,Brick 2 x 4 x 2 with Curved Top with Face/Moustache Print,37 +4744p04,"Brick Curved 2 x 4 x 2 Double Curved Top with Yellow Face, Woman Print",37 +4744p05,Brick 2 x 4 x 2 with Curved Top with 3 Yellow Dots Print buttons,37 +4744pb01,"Brick, Modified 2 x 4 x 2 Double Curved Top with Tools Print",37 +4744pb02,"Brick, Modified 2 x 4 x 2 Double Curved Top with Gas Gauge Print",37 +4744pb03,"Brick, Modified 2 x 4 x 2 Double Curved Top with Parrot Head Print",37 +4744pb04,"Brick, Modified 2 x 4 x 2 Double Curved Top with Parrot Body Print",37 +4744pb05,Brick Curved 2 x 4 x 2 Double Curved Top with Dog Bones Print,37 +4744pb06,"Brick, Modified 2 x 4 x 2 Double Curved Top with Vest with 3 Yellow Buttons Print",37 +4744pb07,Brick 2 x 4 x 2 Double Curved Top with Hippopotamus Face Print,37 +4744pb08,Brick Curved 2 x 4 x 2 Double Curved Top with Smiling Monster Face with Tongue Print,37 +4744pb09,Brick Curved 2 x 4 x 2 Double Curved Top with Monster Face Open Smile Print [2719],37 +4744pb10,Brick Curved 2 x 4 x 2 Double Curved Top with Monster Face Scared with Teeth Print [2728],37 +4744pb11,"Brick, Modified 2 x 4 x 2 Double Curved Top with Dots Light Green Print",37 +4744pb12,"Brick, Modified 2 x 4 x 2 Double Curved Top with Dots Medium Orange Print",37 +4744pb13,"Brick, Modified 2 x 4 x 2 Double Curved Top with Haystack and Mouse Print",37 +4744pb14,Brick 2 x 4 x 2 Double Curved Top with Face and Horns Print,37 +4744pb15,Brick Curved 2 x 4 x 2 Double Curved Top with Clock Print,37 +4744pb16,"Brick, Modified 2 x 4 x 2 Double Curved Top with Necktie Red Print",37 +4744pb17,Brick Curved 2 x 4 x 2 Double Curved Top with Dog Face Print,37 +4744pb20,"Brick, Modified 2 x 4 x 2 Double Curved Top with Bear Face Print",37 +4744pb21,Brick Curved 2 x 4 x 2 Double Curved Top with Yellow Car Grille and Headlights Print,37 +4744pr0001,Brick 2 x 4 x 2 with Curved Top with Yellow Girl Face Print,37 +4744pr0002,Brick Curved 2 x 4 x 2 Double Curved Top with Freckled Face Print,37 +4744pr0003,"Brick 2 x 4 x 2 Double Curved Top with 3 Yellow Buttons, Green Collar Print",37 +4744pr0004,Brick Curved 2 x 4 x 2 Double Curved Top with Red and White Striped Shirt and Overalls Print,37 +4744pr0005,Brick 2 x 4 x 2 Double Curved Top with Chicken Face Print,37 +4744px1,"Brick, Modified 2 x 4 x 2 Double Curved Top with Monkey Face Print",37 +4744px10,"Brick, Modified 2 x 4 x 2 Double Curved Top with Orange Bow Print",37 +4744px11,"Brick, Modified 2 x 4 x 2 Double Curved Top with Tiger Face Print",37 +4744px12,"Brick, Modified 2 x 4 x 2 Double Curved Top with Pockets and Zipper Print",37 +4744px13,Brick 2 x 4 x 2 Double Curved Top with Frog Face Print,37 +4744px15,"Brick, Modified 2 x 4 x 2 Double Curved Top with Yellow Face, Moustache Print",37 +4744px16,"Brick, Modified 2 x 4 x 2 Double Curved Top with Baby Face Pacifier Print",37 +4744px17,"Brick, Modified 2 x 4 x 2 Double Curved Top with Teddy Bear Print",37 +4744px18,"Brick, Modified 2 x 4 x 2 Double Curved Top with Baby Bib Print",37 +4744px19,"Brick, Modified 2 x 4 x 2 Double Curved Top with Necktie Pink Print",37 +4744px2,"Brick, Modified 2 x 4 x 2 Double Curved Top with Dots White Print",37 +4744px24,"Brick, Modified 2 x 4 x 2 Double Curved Top with Monster Spots and Tail Print",37 +4744px29,"Brick, Modified 2 x 4 x 2 Double Curved Top with Black Spots Print",37 +4744px32,"Brick, Modified 2 x 4 x 2 Double Curved Top with Fire Hose on Reel Print",37 +4744px33,"Brick, Modified 2 x 4 x 2 Double Curved Top with Fireman Torso Print",37 +4744px4,Brick 2 x 4 x 2 Double Curved Top with White Stripes Print,37 +4744px41,"Brick, Modified 2 x 4 x 2 Double Curved Top with Overalls and Tools in Pocket Print",37 +4744px5,Brick Curved 2 x 4 x 2 Double Curved Top with 3 Yellow Dots Print,37 +4744px6,Brick 2 x 4 x 2 Double Curved Top with Lion Face Print,37 +4744px8,"Brick, Modified 2 x 4 x 2 Double Curved Top with Green Bow Tie Print",37 +4745,Propeller 2 Blade Twisted,35 +47451,Duplo Trailer with Frame and 2 x 4 Studs,4 +47452,"Technic Brick Special 2 x 2 with Pin Hole, Rotation Joint Ball Half [Horizontal Top], Rotation Joint Socket",26 +47454,"Technic Brick Special 2 x 3 with Pin Holes, Rotation Joint Ball Half [Horizontal Top], Rotation Joint Socket",26 +47455,Technic Rotation Joint Ball Loop with Two Perpendicular Pins with Friction,53 +47456,"Brick Wedged 2 x 3 x 2/3 Two Studs, Wing End",6 +47457,"Brick Curved 2 x 2 x 2/3 Two Studs, Curved Slope End",37 +47457pb01,"Brick 2 x 2 x 2/3 Two Studs, Curved Slope End with Ornate Yellow Lines Print",37 +47457pb02,"Brick, Modified 2 x 2 x 2/3 Two Studs, Curved Slope End with Yellow Triangle on 3 Bars Print",3 +47458,"Brick Wedged 1 x 2 x 2/3 No Studs, Wing End",6 +47459,"Sword, Danju - Series 1",41 +4746,"Tail 4 x 2 x 2, Rocket",35 +47460,"Large Figure Sword, Jayko / King Mathias - Series 1",41 +47461,"Large Figure Sword, Vladek - Series 1",41 +47462,"Sword, Santis - Series 1",41 +47463,"Large Figure Sword, Rascus - Series 1",41 +47469,"Large Figure Visor, Danju",41 +47469px1,"Large Figure Visor, Danju with Gold Print",41 +4747,"Brick Special 2 x 4 with Coupling, Male",5 +47470,"Visor, Rascus",41 +47470pb01,"Large Figure Visor, Rascus with Gold Print",41 +47471,"Large Figure Visor, Jayko",41 +47471pb01,"Large Figure Visor, Jayko with Silver Print",41 +47472,"Large Figure Visor, Santis",27 +47472pb01,"Large Figure Visor, Santis with Blue Print",41 +47474,Shield Holder with Technic Axle,41 +47477c01pb01,Large Figure Torso with Jayko Print - Series 1,41 +47477c01pb02,Large Figure Torso with Danju Print - Series 1,41 +47477c01pb03,Torso with Rascus Print - Series 1,41 +47477c01pb04,Large Figure Torso with Vladek Print - Series 1,41 +47477c01pb05,Large Figure Torso with Santis Print - Series 1,41 +47477c01pb06,Large Figure Torso with King Mathias Print - Series 1,41 +4747b,"Brick, Modified 2 x 4 with Coupling, Male - Raised Pin and Curved Wall",5 +4748,"Brick Special 2 x 4 with Coupling, Female",5 +4748stk01,Sticker for Set 4748 - (50193/4226575),17 +4750,"Fabuland Plate, Round 13 2/3 Stud Diameter [Type 2 Base]",34 +47501,Vehicle Fairing 1 x 2 Stepped with Two Pins,36 +47506,Windscreen 6 x 4 x 3 Flat Top with Studs and 1 x 4 Holes on Bottom,47 +47507,Cockpit 6 x 6 x 2 Cabin Base with Technic Holes,35 +47508,Vehicle Digger Bucket 9 Teeth 4 x 8 with Locking 2 Finger Hinge,36 +47509,Duplo Utensil Wrench for Minifigs,4 +4751,Propeller 4 Blade 13 Diameter with Undetermined Center,24 +47510,Duplo Child Figure with Pigtails,4 +47510pr0001,Duplo Figure Child with Tan Pigtails/Braids - Bright Pink Top with Flowers and White Sleeves - Light Flesh Face and Hands - Magenta Legs,57 +47510pr0002,Duplo Figure Child with Black Pigtails(Braids),57 +47510pr0003c01,Duplo Figure Child with Reddish Brown Pigtails(Braids) - Bright Pink Top with Dark Pink Heart and Sleeves - Light Flesh Face and Hands - White Legs,57 +47510pr0003c02,Duplo Figure Child with Black Pigtails(Braids) - Bright Pink Top with Dark Pink Heart and Sleeves - Dark Brown Face and Hands - White Legs,57 +47510pr0004,Duplo Figure Child with Reddish Brown Pigtails(Braids) - Red Top Under Blue Overalls with Yellow Flower in Pocket - Light Flesh Face and Hands - Blue Legs,57 +47510pr0005,Duplo Figure Child with Reddish Brown Pigtails(Braids) - Medium Blue Jacket over Shirt with Pink Flower - Light Flesh Face and Hands - Red Legs,57 +47510pr0006,Duplo Figure Child with Reddish Brown Pigtails(Braids),57 +47510pr0014,Duplo Figure Child with Black Pigtails(Braids) - Bright Light Orange Top with Light Blue Sleeves - Medium Dark Flesh Face with Magenta Glasses - Magenta Legs,57 +47510wpr0001,Duplo Figure Child with Brown Pigtails/Braids - Yellow Halter Top with White Dots and Blue Bow over White Long Sleeve Top - Medium Flesh Face with Magenta Glasses - Green Legs,57 +47510wpr0003,Duplo Figure Child with Black Pigtails(Braids),57 +47510wpr0005,Duplo Figure Child with Black Pigtails(Braids),57 +47511,Duplo Figure Child with Cap,57 +47511pr0001,Duplo Figure Child with Lime Cap - White Shirt under Blue Coveralls with worms in Pocket - Light Flesh Face and Hands - Blue Legs,57 +47511pr0002c01,Duplo Figure Child with Red Cap - Blue Shirt with 'SKATE' print - Light Flesh Face with Freckles - Medium Blue Legs,57 +47511pr0002c02,Duplo Figure Child with Red Cap - Blue Shirt with 'SKATE' print - Light Flesh Face and Hands - Medium Blue Legs,57 +47511pr0003,Duplo Figure Child with Lime Cap - White Shirt under Blue Coveralls with Pocket - Light Flesh Face with Freckles - Blue Legs,57 +47511pr0004,Duplo Figure Child with Red Cap - Light Bluish Gray Top with Medium Blue Sleeves over Green Shirt with number 8 - Light Flesh Face and Hands - Blue Legs,57 +47511pr0005,Duplo Figure Child with Red Cap - Light Bright Blue Shirt under Green Coveralls - Dark Brown Face and Hands - Bright Green Legs,57 +47511pr0006,Duplo Figure Child with Lime Cap - Blue Shirt with 'SKATE' print - Medium Dark Flesh Face and Hands - Medium Blue Legs,57 +47511pr0007,Duplo Figure Child with Red Cap - White Shirt with 'SKATE' print - Light Flesh Face and Hands - Red Legs,57 +47511wpr0002,Duplo Figure Child with Red Cap - Bright Light Blue Shirt with White Red Blue Stripes - Medium Dark Flesh Face and Hands - Red Legs,57 +47511wpr0004,Duplo Figure Child with Red Cap - Light Bluish Gray Top with Medium Blue Sleeves over Green Shirt with number 8 - Light Flesh Face and Hands - Green Legs,57 +47511wpr0006,Duplo Figure Child with Lime Cap - Light Bluish Gray Sweater and Tie over White Shirt - Dark Brown Face - Blue Legs,57 +47515,FIGURE NO. 4 - BIG JOE,24 +47517,Duplo Figure - Fireman with Helmet,57 +47517pr0001c01,Duplo Figure Male Fireman with Gray Mustache on Light Flesh Face - Light Flesh Hands,4 +47517pr0001c02,Duplo Figure Male Fireman with White Helmet and Gray Mustache on Light Flesh Face - Black Hands,4 +47517pr0002c01,Duplo Figure Male Fireman with White Helmet and Dark Brown Face - Dark Brown Hands,4 +47517pr0002c02,Duplo Figure Male Fireman with White Helmet and Dark Brown Face - Black Hands,4 +47517pr0003c01,Duplo Figure Male Fireman with Silver Helmet and Flesh Face - Flesh Hands,4 +47517pr0003c02,Duplo Figure Male Fireman with Silver Helmet and Flesh Face - Black Hands,4 +47517pr0004,Duplo Figure Male Fireman with White Helmet and Flesh Face - Flesh Hands,4 +47517pr0029,Duplo Female Firefighter with White Helmet - Light Flesh Face with Pink Lips and Blue Eyes - Light Flesh Hands - Black Legs,57 +4751a,Propeller 4 Blade 13 Diameter with Studs and Cross,35 +4751b,Propeller 4 Blade 13 Diameter with Studs,24 +4751c,Propeller 4 Blade 13 Diameter without Studs,35 +4752stk01,Sticker for Set 4752 - (49184/4222720),17 +47533,Duplo Farm Tractor Front End Loader (fits Duplo Farm Tractor New Style),4 +47537,Duplo Bulldozer Scoop,4 +47538,"DUP. WHEEL TRACT 6X10X5,5 ASS.",24 +47540,DUPLO DUMPER TRAUCK BODY,24 +47541,DUPLO DUMPER TRUCK,24 +47543,Cone Half 8 x 4 x 6,20 +47543pb01,Cone Half 8 x 4 x 6 with Millennium Falcon Cockpit Print [4504],20 +47543pr0001,Cone Half 8 x 4 x 6 with Roof Shingles Print,20 +47543pr0001a,Cone Half 8 x 4 x 6 with Dark Red Stripe Tantive Bridge Top Print,2 +47543pr0001b,Cone Half 8 x 4 x 6 with Millennium Falcon Cockpit Print [Version 2],20 +47543pr0002,Cone Half 8 x 4 x 6 with Dark Red Stripe Tantive Bridge Bottom Print,2 +47544,Minifig Helmet SW Skiff Guard,27 +47544pr0001,Minifig Helmet - Skiff Guard with Printed Facegear and Headband,27 +47545,Minifig Head Rodian [Plain],13 +47545pr0001,Minifig Head Modified Greedo with Dark Blue Eyes Print ,13 +47545pr0002,"GREEDO HEAD, DECO NO. 2",13 +47545pr01,Minifig Head Modified Greedo with Black Eyes Print,13 +47545pr02,Minifig Head Modified Onaconda Farr,13 +47545pr03,Minifig Head Modified Wald,13 +4755,Electric Plate 1 x 2 with Contacts,45 +47551,Duplo Child [With Cap #2],4 +47555,"Duplo Figure - Male with Parted Wavy Hair and Light Flesh Face - Prince Uniform Top with Strap, Crown, and Heart print",4 +47557,FIGURE NO. 5 - RESQUE,57 +47562,FIGURE NO. 4 - W/POLICEHELMET,57 +4757,Plate 2 x 4 [Electrical Contacts],45 +47575,DUP. WOMAN W BOBBED HAIR,57 +47575pr0001,Duplo Figure Woman with Reddish Brown Bobbed Hair - Top with Buttons - Light Flesh Face and Hands - Dark Purple Legs,57 +47575pr0002,Duplo Figure Woman with Bobbed Hair - Top with Buttons - Light Flesh Face - Light Violet Hands - Dark Purple Legs,57 +47575pr0004,Duplo Figure Woman with Reddish Brown Bobbed Hair - Medic / Nurse,57 +47575pr0005,Duplo Figure Woman with Bobbed Hair - Nurse/Medic/Vet - Bright Green Legs,4 +47576,"Wheel Hockey Puck, Small",29 +47577,Minifig Hockey Body Armor Plain,27 +47577pb01,Minifig Hockey Body Armor with NHL Logo and White Number 1 Print,27 +47577pb02,Minifig Hockey Body Armor with NHL Logo and Black Number 2 Print,27 +47577pb03,Minifig Hockey Body Armor with NHL Logo and White Number 3 Print,27 +47577pb04,Minifig Hockey Body Armor with NHL Logo and Black Number 4 Print,27 +47577pb05,Minifig Hockey Body Armor with NHL Logo and White Number 5 Print,27 +47577pb06,Minifig Hockey Body Armor with NHL Logo and Black Number 6 Print,27 +47577pb07,Minifig Hockey Body Armor with NHL Logo and White Number 7 Print,27 +47577pb08,Minifig Hockey Body Armor with NHL Logo and Black Number 8 Print,27 +4757stk01,Sticker for Set 4757 - (50202/4226638),17 +4758,Electric Plate 2 x 8 with Contacts,45 +476,"Bar 12L with Open Stud, Towball, and Top Slit [Boat Mast]",35 +4760,Electric 9V Battery Box Small,45 +4760c01,Electric 9V Battery Box Small [Complete Assembly],45 +4760p01c01,Electric 9V Battery Box 4 x 8 x 2.333 "9V" Patt. (Complete),45 +4760pb01,Electric 9V Battery Box Small Complete Assembly with 'POLICE' and Black Stripes Print,45 +4760pb03,Electric 9V Battery Box Small Complete Assembly with LL-6482 Print,45 +4761,Electric 9V Battery Box Small Cover,45 +4762,Electric 9V Battery Box Small Switch,45 +4766stk01,Sticker for Set 4766 - (53896/4275377),17 +4767,Light Brick 1 x 2 [Single Bulb],45 +47674,"Container, X-Pod Barrel Section 10 x 10 x 3 1/3",7 +47675,"Container, X-Pod Top Cap 9 x 9 x 1 1/3",7 +47676,"Container, X-Pod Bottom Cap 9 x 9 x 1",7 +47681,Belville Cloth Pillow 9 x 13 with Dark Pink Back (Couch Cover),42 +47682,"Belville, Clothes Pants, Contrast Stitching (fits adult male figures)",42 +47683,"Belville, Clothes Vest Long",42 +47684,Belville Cloth Pillow 6 x 7 Star Shaped,42 +47688,Belville Horse Blanket 11 x 11 with Velcro Closure,42 +47689,"Belville, Clothes Skirt Short, A-Line with Silver Faux Sequins (5942)",42 +4770,Electric Light & Sound Coloured Globe,45 +4771,Light Brick 1 x 4 [Two Bulbs],45 +47712,"Technic Fairing #24 Small Short, Small Hole, Side B",40 +47713,"Technic Fairing #25 Small Short, Small Hole, Side A",40 +47715,Pullback Motor 9 x 4 x 2 2/3,44 +47720,Plate Special 2 x 2 with Wheels Holder Wide - Technic Pins,9 +47721,Duplo Brick 1x2x2 with Parcel Print,4 +4773,Light Bulb Cover 1 x 1 x 2/3,20 +4774c01,Electric Sound Siren 9V 2 x 2 x 1 1/3 with Two Town Police Noises,45 +4774c02,"Electric, Sound Siren 9V 2 x 2 x 1 1/3 with Two Space Noises",45 +4774cu,Sound Siren 9V 2 x 2 x 1 1/3 [Undetermined Noise Type],45 +47753,Wedge 4 x 4 No Top Studs,6 +47753pb001,"Wedge 4 x 4 No Top Studs with Black Window, Yellow 18 Print",6 +47753pb002,Wedge 4 x 4 No Top Studs with '3' and Red / Silver Print,6 +47753pr0001,"Wedge 4 x 4 No Top Studs with Bricks, Blue Lines and 2 Eyes Print (Cobra Head)",6 +47753pr0002,"Wedge 4 x 4 No Top Studs with Bricks, Blue Lines, 4 Eyes and Cobra Print (Scorpion Head)",6 +47753pr0003,Wedge 4 x 4 No Top Studs with Scales and 2 Lime Eyes Print,6 +47753pr0004,Wedge 4 x 4 No Top Studs with Scales and 2 Snake Eyes Print,6 +47753pr0005a,"Wedge 4 x 4 No Top Studs with Sentinel Yellow, Orange and Red Triangle and Black Stripe Trim Print",2 +47753pr0005b,Wedge 4 x 4 No Top Studs with Large Batman Logo Print,2 +47753pr0006,Wedge 4 x 4 No Top Studs with Green Lantern Logo Print,6 +47753pr0007,Wedge 4 x 4 No Top Studs with Dragon Head and Blue Lightning Print,6 +47753pr03,Wedge 4 x 4 No Top Studs with Red Scale Print,6 +47753pr17,Wedge 4 x 4 No Top Studs with Black Lines Print (Spider Abdomen),6 +47753pr20,Wedge 4 x 4 No Top Studs with Bricks and Hieroglyphs Print (Scarab Abdomen),6 +47755,Wedge 4 x 3 Open with Cutout and Four Studs [Wheel Arch],36 +47757,Wedge 4 x 4 Pyramid Center,6 +47757pb01,Wedge 4 x 4 Pyramid Center with Red / Silver Print [8385],6 +47757pb02,Wedge 4 x 4 Pyramid Center with SW Clone Walker Print,6 +47757pr0001,Wedge 4 x 4 Pyramid Centre with Green Scale Print,6 +47758,Windscreen 4 x 4 Roll Cage,47 +47759,Wedge 2 x 4 Triple,6 +47759pr0001,Wedge 2 x 4 Triple with Eyes and Dark Bluish Gray Panels Print (Shu Todoroki),6 +47759pr0002,Wedge 2 x 4 Triple with Spider Eyes Print [9470],6 +47759pr0003,Wedge 2 x 4 Triple with Red Scale Print,6 +47759pr0004,Wedge 2 x 4 Triple with Brick Print,6 +47759pr03,Wedge 2 x 4 Triple with Angler Fish Face Print,6 +47759px1,Wedge 2 x 4 Triple with '9' and Red / Silver Print,6 +4776,Fabuland Windmill Blade,42 +4779,Fabuland Ferris Wheel Axle Half,34 +4780c01,Fabuland Washbasin with Red Tap,7 +4781,Fabuland Lamp Post,32 +4782,Fabuland Ferris Wheel Seat,36 +4783,Fabuland Ferris Wheel Axle Support,34 +4784,Stairs 4 x 7 x 9 1/3 Straight Enclosed,32 +47843,Windscreen 10 x 4 x 2 Curved with Bubble Cutout and Single Hinge Finger,47 +47844,Windscreen 9 x 3 x 1 2/3 Bubble Canopy,47 +47844pb01,Windscreen 9 x 3 x 1 2/3 Bubble Canopy with Red Circle and Verniers Print,47 +47844pb02,Windscreen 9 x 3 x 1 2/3 Bubble Canopy with Red Square and Verniers Print,16 +47844pr0001,"Windscreen 9 x 3 x 1 2/3 Bubble Canopy with Black End, Flames and Fuel Filler Print [8051]",47 +47846,Cockpit 10 x 4 x 2 Curved,6 +47847,Rock Panel 2 x 4 x 6,33 +47847pat0001,Rock Panel 2 x 4 x 6 with Marbled White Streak,33 +47847pat0002,Rock Panel 2 x 4 x 6 with Marbled Dark Bluish Gray Pattern,33 +47847pat0003,Rock Panel 2 x 4 x 6 with Marbled Dark Green Pattern,33 +47855,Brick Special 2 x 12 with 2 End Pegs,5 +47858c01,Boat Hull Unitary 32 x 12 x 4 Complete Assembly,35 +4787,Fabuland Boat Hull Large,35 +47871c01,"Electric, RC Racer Steering Assembly with Flexible Superaxles",45 +4788c01,Fabuland Waterwheel,42 +47899c01,Door 1 x 4 x 5 Left with Trans-Clear Glass,16 +47899c02,Door 1 x 4 x 5 Left with Trans-Light Blue Glass,16 +47899c03,Door 1 x 4 x 5 Left with Trans-Black Glass,16 +47899c04,Door 1 x 4 x 5 Left with Reddish Brown Glass,16 +4790,Ship's Wheel,35 +47905,Brick Special 1 x 1 with Studs on 2 Sides,5 +4790b,Ship's Wheel with Slotted Pin,35 +47912,Clikits - Child's Bracelet With Hole,48 +4793,Fabuland Boat,35 +4794a,Fabuland Oar with Ring Handle,27 +4794b,Boat Oar with Bar Handle,27 +4795stk01,Sticker for Set 4795 - (42258/4162751),17 +4796c01,Fabuland Car Chassis 8 x 6 with Hitch - Complete Assembly,36 +47972,Towball 1 x 3 Triangle with Two Pins,25 +47973,"Hinge 1 x 3 Triangle with Two Pins, 1 Locking Finger",18 +47974,Brick Round Corner 4 x 8 Full Brick Double,20 +47974c01,Brick Round Corner 4 x 8 Full Brick Double with 2 Fixed Rotatable Friction Pins [aka Boat Brick],35 +47975,Hinge Brick 1 x 2 Locking with 1 Finger Vertical End and 2 Fingers Horizontal End,18 +47976,Brick Special 12 x 12 with 3 Pin Holes on Each Side and Vertical Peg at Each Corner,5 +47978,Hinge Brick 2 x 24 Locking with 2 Fingers Horizontal on Side and 2 Towballs,18 +47980,"Boat Hull Giant Bow 19 x 22, Base",35 +47981,"Boat Hull Giant Bow / Stern 15 x 22, Top",35 +47983,"Boat Hull Giant Middle 16 x 22, Base",35 +47984,"Boat Hull Giant Middle 16 x 22, Top",35 +47986,"Boat Hull Giant Stern 16 x 22, Base",35 +47988,Boat Bow Top 14 x 12 [Galiot],35 +47990,Skull 1 x 4 x 3 Relief with Two Pins,33 +47991,Rock Panel Skull 4 x 10 x 10 [3827 / 7074],33 +47992,Boat Stern Brick 7 x 16 x 7 with Two Windows,35 +47993,Boat Deck Brick 8 x 3 x 4 Railing,5 +47994,Technic Pin Double Triangle 1 x 3 with 2 Clips,53 +47996,Boat Mast Rigging Long 28 x 4,35 +47998,Plate Special 4 x 4 with Clips Horizontal,9 +48000,Boat Deck Brick 16 x 16 Stern,35 +48002a,Boat Mast 2 x 2 x 20 with Holes - Side Aligned x shape Axle Hole,35 +48002b,Boat Mast 2 x 2 x 20 with Holes - Corner Aligned x shape Axle Hole,35 +48003,Technic Competition Canon Base,26 +48005,Boat Mast 4 x 4 x 22,35 +48036,TREASURE CHEST 2X4X3,24 +48064c01,"Electric Motor with Boat Propeller and Rudder - Complete Assembly 14 x 4 x 4, 4-Blade Propeller",45 +48064c02,"Electric, Motor with Boat Propeller and Rudder - Complete Assembly 19 x 4 x 4, 2-Blade Propeller",45 +48079,"Paper, Shield with Knights Kingdom Rascus Print (For Large Figs)",17 +48080,"Paper, Shield with Knights Kingdom Jayko Hawk Print (For Large Figs)",17 +48081,"Paper, Shield with Knights Kingdom Santis Print (For Large Figs)",17 +48092,Brick Round Corner 4 x 4 Macaroni Wide with 3 Studs,20 +48125c03,Duplo Truck Semi-Tractor Cab with Dark Bluish Gray Base,4 +48125c03pb01,Duplo Truck Semi-Tractor Cab with Dark Bluish Gray Base and Recycling Arrows Print,4 +48138,Quatro Brick 2 x 2,4 +48138pb01,Quatro Brick 2 x 2 with Two Eyes Print,4 +48138pb02,Quatro Brick 2 x 2 with Smile Print,4 +48141,Paper - Shield with Knights Kingdom Vladek Print (For Large Figs),17 +48168,Technic Turntable Large Type 2 Top (56 Teeth),26 +48169,"Technic Brick Special 2 x 2 with Pin Hole, Rotation Joint Socket",26 +48170,"Technic Brick Special 2 x 2 with Pin Hole, Rotation Joint Ball Half [Horizontal Top]",26 +48171,"Technic Brick Special 2 x 2 with Pin Hole, Rotation Joint Ball Half [Vertical Side]",26 +48172,"Technic Brick Special 2 x 2 with Pin Hole, with 2 Rotation Joint Sockets",26 +48173,Tween: Heart Flexible Raised Border,48 +48176,"Clikits Ruler, 6 inch / 16 cm, 7 holes",48 +48176pb01,"Clikits Ruler, 6 inch / 16 cm, 7 holes, color graduating to Dark Pink",48 +48183,Wedge Plate 3 x 4 with Stud Notches,49 +4820,Duplo Trailer with Frame Long,4 +4820a,Duplo Trailer with Frame Short,4 +4823c01,Fabuland Building Wall 2 x 10 x 7 with Blue Bay Window,23 +4823c02,Fabuland Building Wall 2 x 10 x 7 with Yellow Bay Window,42 +48247,"CARROUSEL, DEC.",24 +48253,Bionicle Weapon Chronicler's Staff,41 +4828,"DUPLO DISC HARROW, CHASSIS",24 +48284,Hippogriff 'Buckbeak' Wing,28 +48286,Sticker sheet for set 7044 (48286/4216916),17 +48288,Tile 8 x 16 with Bottom Tubes on Edges,19 +48288p02,Tile 8 x 16 with Blue Semicircle and Red Dashes Print,19 +48288p03,Tile 8 x 16 with Blue Semicircle and Stripe on Left Print,19 +48288p04,Tile 8 x 16 with Blue Semicircle and Stripe on Right Print,19 +48288pb01,Tile 8 x 16 with Half Circle and Blue Stripe on Right Print,10 +48288pb02,Tile 8 x 16 with Half Circle and Blue Stripe on Left Print,10 +48288pb03,Tile 8 x 16 with Half Circle and Red Stripe Print,10 +48288pb04,Tile 8 x 16 with Red Stripe Print,10 +48289,"Sports Minifig Stand Hockey Shooter, Middle",27 +48290,"Sports Minifig Stand Hockey Shooter, Bottom",27 +48291,"Sports Minifig Stand Hockey Shooter, Top",27 +48294,Sports Net 8 x 12 Lattice,32 +48298,Sports Net 6 x 1 x 5 Lattice Curved,32 +48316c01,"Container, Box 8 x 8 x 8 with Dark Bluish Gray Switching Mechanism, Complete Assembly (Set 4756)",7 +48336,Plate Special 1 x 2 [Side Handle Closed Ends],9 +48379c01,Sports Promo Figure Base with Feet,27 +48394,Sports Promo Skateboard Top from McDonald's Sports Set Number 7 Set 7921,27 +48394base,Sports Promo Skateboard Base with Four Wheels from McDonald's Sports Set Number 7 Set 7921,27 +48395,Sports Promo Snowboard from McDonald's Sports Set Number 6 Set 7922,27 +4841,Fabuland Merry-Go-Round Type 2 Roof,42 +48419,"Bionicle Mask Kraahkan, Movie Edition",41 +4842c01,Fabuland Merry-Go-Round Turntable with Yellow Column (Complete Assembly),18 +4842stk01,Sticker for Set 4842 - (92951/4598405),17 +4843,Fabuland Ferris Wheel Seat Holder,36 +4844,Boat Mast Section Base 4 x 4 x 9,35 +48446,Bionicle Weapon Vahki Staff of Suggestion (Zadakh),41 +48452,Technic Turntable Large Type 2 Base (24 Teeth),26 +48456,Duplo Tile 2 x 2 with Capital A Print,4 +48457,Leg Skeleton / Dementor Stand,32 +48459,Duplo Tile 2 x 2 with Lowercase a Print,4 +48462,Duplo Tile 2 x 2 with Capital B Print,4 +48469,Duplo Tile 2 x 2 with Lowercase b Print,4 +48470,Duplo Tile 2 x 2 with Capital C Print,4 +48471,Duplo Tile 2 x 2 with Lowercase c Print,4 +48472,Duplo Tile 2 x 2 with Capital D Print,4 +48473,Duplo Tile 2 x 2 with Lowercase d Print,4 +48474,Duplo Tile 2 x 2 with Capital E Print,4 +48475,Duplo Tile 2 x 2 with Lowercase e Print,4 +48477,Duplo Tile 2 x 2 with Lowercase f Print,4 +48478,Duplo Tile 2 x 2 with Capital G Print,4 +48479,Duplo Tile 2 x 2 with Lowercase g Print,4 +48480,Duplo Tile 2 x 2 with Capital H Print,4 +48481,Duplo Tile 2 x 2 with Lowercase h Print,4 +48482,Duplo Tile 2 x 2 with Capital I Print,4 +48483,Duplo Tile 2 x 2 with Lowercase i Print,4 +48484,Duplo Tile 2 x 2 with Capital J Print,4 +48485,"Minifi, Visor for Danju Minifig",27 +48486,Minifig Visor Fanciful for Jayko Minifig,27 +48487,Minifig Visor Fanciful for Santis Minifig,27 +48488,Minifig Visor Fanciful for Rascus Minifig,27 +48489,Minifig Visor Fanciful for Vladek Minifig,27 +48490,Panel 3 x 8 x 6 with Arched Window,23 +48492,"Horse Battle Helmet [Angular, Front Clip]",28 +48493,Minifig Helmet Castle with Cheek Protection Angled,27 +48494,Minifig Shield Rectangular with Stud,27 +48494pb01,"Minifig Shield Rectangular with Stud, Knights Kingdom Danju Wolf Print (Non-Sticker)",27 +48494pb02,"Minifig Shield Rectangular with Stud, Knights Kingdom Rascus Monkey Print (Non-Sticker)",27 +48494pb03,"Minifig Shield Rectangular with Stud, Knights Kingdom Jayko Hawk Print (Non-Sticker)",27 +48494pb04,"Minifig Shield Rectangular with Stud, Knights Kingdom Santis Bear Print (Non-Sticker)",27 +48494pb05,"Minifig Shield Rectangular with Stud, Knights Kingdom Vladek Scorpion Print (Non-Sticker)",27 +48494pb06,"Minifig Shield - Rectangular with Stud, Blue-Violet Diagonal Stripes and Border Print",27 +48494pr07,"Minifig Shield - Rectangular with Stud, Silver Dragon on Bright Light Orange Background Print",27 +48495,Minifig Sword [Greatsword Angular],27 +48496,"Technic, Pin Connector Toggle Joint Smooth Double with 2 Pins",12 +48498,Duplo Tile 2 x 2 with Lowercase j Print,4 +48499,Duplo Tile 2 x 2 with Capital K Print,4 +48500,Duplo Tile 2 x 2 with 1 Print,4 +48501,Duplo Tile 2 x 2 with 2 Print,4 +48502,Duplo Tile 2 x 2 with 3 Print,4 +48503,Duplo Tile 2 x 2 with 4 Print,4 +48504,Duplo Tile 2 x 2 with 5 Print,4 +48505,Duplo Tile 2 x 2 with 6 Print,4 +48506,Duplo Tile 2 x 2 with 7 Print,4 +48507,Duplo Tile 2 x 2 with 8 Print,4 +48508,Duplo Tile 2 x 2 with 9 Print,4 +48509,Duplo Tile 2 x 2 with 0 Print,4 +48510,Duplo Tile 2 x 2 with < Print,4 +48511,Duplo Tile 2 x 2 with = Print,4 +48512,Duplo Tile 2 x 2 with + Print,4 +48513,Duplo Tile 2 x 2 with ( Print,4 +48514,Duplo Tile 2 x 2 with - Print,4 +48515,Duplo Tile 2 x 2 with : Print,4 +48519,Duplo Tile 2 x 2 with Lowercase k Print,4 +4851stk01,Sticker for Set 4851 - (47401/4206653),17 +48520,Duplo Tile 2 x 2 with Capital L Print,4 +48525,Duplo Tile 2 x 2 with Lowercase l Print,4 +48526,Duplo Tile 2 x 2 with Capital M Print,4 +48527,Duplo Tile 2 x 2 with Lowercase m Print,4 +48529,Duplo Tile 2 x 2 with Capital N Print,4 +4852stk01,Sticker for Set 4852 - (47419/4206824),17 +48530,Duplo Tile 2 x 2 with Lowercase n Print,4 +48532,Duplo Tile 2 x 2 with Capital O Print,4 +48533,Duplo Tile 2 x 2 with Lowercase o Print,4 +48534,Duplo Tile 2 x 2 with Capital P Print,4 +4853stk01,Sticker for Set 4853 - (49175/4222638),17 +4854,Slope Inverted 45° 4 x 4 Double,3 +48543,Duplo Tile 2 x 2 with Lowercase p Print,4 +48545,Duplo Tile 2 x 2 with Capital Q Print,4 +48547,Duplo Tile 2 x 2 with Lowercase q Print,4 +48548,Duplo Tile 2 x 2 with Capital R Print,4 +4855,Wedge 4 x 4 Triple Inverted [2 Connections between Front Studs],6 +48550,Duplo Tile 2 x 2 with Lowercase r Print,4 +48552,Duplo Tile 2 x 2 with Capital S Print,4 +48553,Duplo Tile 2 x 2 with Lowercase s Print,4 +48554,Duplo Tile 2 x 2 with Capital T Print,4 +48555,Duplo Tile 2 x 2 with ÷ Print,4 +48556,Duplo Tile 2 x 2 with X Print,4 +48557,Duplo Tile 2 x 2 with Lowercase t Print,4 +48558,Duplo Tile 2 x 2 with Capital U Print,4 +48560,Duplo Tile 2 x 2 with Lowercase u Print,4 +48561,Duplo Tile 2 x 2 with Capital V Print,4 +48563,Duplo Tile 2 x 2 with Lowercase v Print,4 +48564,Duplo Tile 2 x 2 with Capital W Print,4 +48565,Duplo Tile 2 x 2 with Lowercase w Print,4 +4856a,Wedge 6 x 4 Inverted with 2 Stud Connections,6 +4856b,Wedge 6 x 4 Inverted with 4 Stud Connections,6 +4857,Slope 45° 4 x 4 Double with Hinge,18 +4857stk01,Sticker for Set 4857 - (50882/4238527),17 +4858,Wedge 4 x 4 Taper,6 +48585,Duplo Tile 2 x 2 with Capital X Print,4 +48586,Duplo Tile 2 x 2 with Lowercase x Print,4 +48587,Duplo Tile 2 x 2 with Capital Y Print,4 +48588,Duplo Tile 2 x 2 with Lowercase y Print,4 +48589,Duplo Tile 2 x 2 with Capital Z Print,4 +4858p01,Wedge 4 x 4 Taper with Blacktron I Logo Print,6 +4858p1k,"Wedge 4 x 4 with TV Logo Print News, Crisis, 6553, Television, Helicopter, Cameraman, Reporter, Van",6 +4858p90,Wedge 4 x 4 Taper with Classic Space Print,6 +4858pb01,Wedge 4 x 4 Taper with Police Yellow Star Badge Print [6398],6 +4858pb02,Wedge 4 x 4 Taper with Police Yellow Star Badge and Headlights Print [2234 / 6333],6 +4858pb03,Wedge 4 x 4 Taper with SW Snowspeeder Vent Print [4500-1/-2],6 +4858pb05,Wedge 4 x 4 Taper with World Shipment and Red Outline Print [7214],6 +4859,Wedge Plate 3 x 4 without Stud Notches,49 +48591,Duplo Tile 2 x 2 with Lowercase z Print,4 +4861,Slope 45° 3 x 4 Double / 33,3 +4862,Glass for Window 1 x 2 x 2 Plane,16 +4863,Window 1 x 4 x 2 Plane,16 +48647,GOLD,24 +4864a,Panel 1 x 2 x 2 [Solid Studs],23 +4864ap01,Panel 1 x 2 x 2 with Highway Print [6572],23 +4864ap02,Panel 1 x 2 x 2 with Red Cross Print,23 +4864ap03,Panel 1 x 2 x 2 with Utility Arrow Print [6671],23 +4864ap04,Panel 1 x 2 x 2 with Palm Tree Print,23 +4864ap10,Panel 1 x 2 x 2 Solid Stud with Red/White/Blue Left Print,23 +4864ap11,Panel 1 x 2 x 2 Solid Stud with Red/White/Blue Right Print,23 +4864ap12,Panel 1 x 2 x 2 with Black Stripes Print,23 +4864apt3,Panel 1 x 2 x 2 with Number 3 Print [8830],23 +4864apt4,Panel 1 x 2 x 2 with Number 4 Print [8840],23 +4864apx13,Panel 1 x 2 x 2 with Box and Arrows and Globe Print [1879 / 6375],23 +4864apx14,Panel 1 x 2 x 2 with Yellow Star Police Badge Print [2234],23 +4864apx15,Panel 1 x 2 x 2 with Telephone and White Lines Print [6422],23 +4864apx5,Panel 1 x 2 x 2 with Number 5 Print [8850],23 +4864apx7,Panel 1 x 2 x 2 with Red Bicycle Print [6699],23 +4864apx9,Panel 1 x 2 x 2 with Red Motorcycle Print [6699],23 +4864b,Panel 1 x 2 x 2 [Hollow Studs],23 +4864bp10,"Panel 1 x 2 x 2 with Red, White and Blue Print Left, Hollow Studs [10002]",23 +4864bp11,"Panel 1 x 2 x 2 with Red, White and Blue Print Right, Hollow Studs [10002]",23 +4864bpr0001,Panel 1 x 2 x 2 with Laser Sharks and Villain Logo Print [8635],23 +4864bpr0002,Panel 1 x 2 x 2 with Agents Dr. Inferno Print [8635],23 +4864bpr16,Panel 1 x 2 x 2 with Porthole Blue on Orange Background Print,23 +4864bpx1,Panel 1 x 2 x 2 with Food Print [4560 / 4561 / 6329],23 +4864bpx2,Panel 1 x 2 x 2 with Light Gray Porthole Print [10020-1 / 10020-2],23 +4864bpx3,Panel 1 x 2 x 2 with Red Porthole Print [10020-1 / 10020-2],23 +4864bpx4,Panel 1 x 2 x 2 with X-Ray Skeleton Legs / Machinery Print [3408],23 +4865,Panel 1 x 2 x 1 [Undetermined Corners],23 +48652,Duplo Tile 2 x 2 with Lowercase é Print,4 +48653,Duplo Tile 2 x 2 with Lowercase è Print,4 +48655,Duplo Tile 2 x 2 with Lowercase ê Print,4 +48657,Duplo Tile 2 x 2 with Red Square Print,4 +48658,Duplo Tile 2 x 2 with Red 1/4 Circle Print,4 +48659,Duplo Tile 2 x 2 with Red Circle Print,4 +4865a,Panel 1 x 2 x 1 [Square Corners],23 +4865b,Panel 1 x 2 x 1 [Rounded Corners],23 +4865bpr0001,WALL ELEMENT 1X2X1 NO. 1,23 +4865bpr0002,WALL ELEMENT 1X2X1 NO. 2,23 +4865bpr0003,WALL ELEMENT 1X2X1 NO. 3,23 +4865p06,Panel 1 x 2 x 1 with Black Grill Print [6893],23 +4865p18,Panel 1 x 2 x 1 with Thin Black POLICE Print,23 +4865pb01,Panel 1 x 2 x 1 with Pizzeria Print [6350 / 10036],23 +4865pb02,Panel 1 x 2 x 1 with 'POLICE' Red Line Print,23 +4865pb04,Panel 1 x 2 x 1 with Classic Fire Logo Print [1656 / 6389],23 +4865pb05,Panel 1 x 2 x 1 with 'Shell' Print [6503],23 +4865pb06,Panel 1 x 2 x 1 with Ogel Control Panel Print [4793 / 4794 / 4796],23 +4865pb08,Panel 1 x 2 x 1 with CD Player Controls with 02:13 Print [5940],23 +4865px9,Panel 1 x 2 x 1 with 'TAXI' on Yellow Print [4860],23 +4866,Windscreen 3 x 4 x 1 1/3 with 6 Studs on Top,47 +48660,Duplo Tile 2 x 2 with Shape Red Inverse Isosceles Triangle Print,4 +48661,Duplo Tile 2 x 2 with Shape Red Inverse Quarter Disc Print Print,4 +48662,Duplo Tile 2 x 2 with Shape Red Inverse Arch Print,4 +48663,Duplo Tile 2 x 2 with Red 1/2 Square Print,4 +48665,Duplo Tile 2 x 2 with Shape Red Isosceles Triangle Print,4 +4867,Tail Wedge,35 +48677,Duplo Tile 2 x 2 with Lowercase à Print,4 +4867p10,Wedge 4 x 4 with Tail Plane with Red/Black Print,35 +4867pb02,Tail Wedge with Cargo and Green/Blue Stripes Print,35 +4867pb03,Tail Wedge with Airport Classic Print,35 +4867pb04,Tail Wedge with World Shipment Print,35 +4867pb05,Tail Wedge with Air Line with Red Globe Logo and Red/Blue Stripes Print,35 +4867pb19,Tail Wedge with World Shipment and Red Outline Print [7214],35 +4867px2,Tail Wedge with Yellow Cargo Boxes Print (6377),35 +4867stk01,Sticker for Set 4867 - (98269/4642496),17 +48680,Duplo Tile 2 x 2 with Lowercase ç Print,4 +48683,"Clikits Container Box, Square with 3 x 3 Holes Arrangement - Hinged",7 +4868a,Engine Smooth Large [1 x 2 Thin Top Plate],35 +4868b,Engine Smooth Large [2 x 2 Thin Top Plate],35 +4869,Engine Centre - Smooth Large,35 +4870,Plate Special 2 x 2 Thin with Dual Wheels Holder [Split Pins],36 +4870c02,Plate Special 2 x 2 Thin with Dual Wheels Holder (type 1) and Airplane White Wheels,35 +4871,Slope Inverted 45° 4 x 2 Double,3 +4872,Windscreen 3 x 4 x 4 Inverted,47 +48723,Technic Axle Connector Hub with 4 Bars at 90°,12 +48724,Minifig Neck Bracket with Technic Pin,27 +48725,Duplo Tile 2 x 2 with Shape Blue Isosceles Triangle Print,4 +48726,Duplo Tile 2 x 2 with Shape Yellow Isosceles Triangle Print,4 +48727,Duplo Tile 2 x 2 with Shape Green Isosceles Triangle Print,4 +48728,Duplo Tile 2 x 2 with Shape Black Isosceles Triangle Print,4 +48729a,Bar 1L with Clip,32 +48729b,Bar 1L with Clip [Cut Edges and One Side Hole],32 +4873,Bar 1 x 6 [Open Studs],32 +48733,Duplo Tile 2 x 2 with Blue 1/4 Circle Print,4 +48734,Duplo Tile 2 x 2 with Yellow 1/4 Circle Print,4 +48735,Duplo Tile 2 x 2 with Green 1/4 Circle Print,4 +48736,Duplo Tile 2 x 2 with Black 1/4 Circle Print,4 +4874c01,Fabuland Merry-Go-Round Type 1 (Complete Assembly),36 +48752,Duplo Tile 2 x 2 with Blue Square Print,4 +48753,Duplo Tile 2 x 2 with Yellow Square Print,4 +48754,Duplo Tile 2 x 2 with Green Square Print,4 +48755,Duplo Tile 2 x 2 with Black Square Print,4 +48757,Duplo Tile 2 x 2 with Blue Circle Print,4 +48758,Duplo Tile 2 x 2 with Shape Yellow Disc Print,4 +48759,Duplo Tile 2 x 2 with Green Circle Print,4 +4876,Fabuland Slide,42 +48760,Duplo Tile 2 x 2 with Black Circle Print,4 +48772,Duplo Tile 2 x 2 with Shape Blue Inverse Isosceles Triangle Print,4 +48773,Duplo Tile 2 x 2 with Shape Yellow Inverse Isosceles Triangle Print,4 +48774,Duplo Tile 2 x 2 with Inverse Green Triangle Print,4 +48775,Duplo Tile 2 x 2 with inverse Black Triangle Print,4 +48776,Duplo Tile 2 x 2 with Shape Blue Inverse Quarter Disc Print,4 +48777,Duplo Tile 2 x 2 with Shape Yellow Inverse Quarter Disc Print Print,4 +48778,Duplo Tile 2 x 2 with Shape Green Inverse Quarter Disc Print Print,4 +48779,Duplo Tile 2 x 2 with Shape Black Inverse Quarter Disc Print Print,4 +48780,Duplo Tile 2 x 2 with Shape Blue Inverse Arch Print,4 +48781,Duplo Tile 2 x 2 with Shape Yellow Inverse Arch Print,4 +48782,Duplo Tile 2 x 2 with Shape Green Inverse Arch Print,4 +48783,Duplo Tile 2 x 2 with Shape Black Inverse Arch Print,4 +48784,Duplo Tile 2 x 2 with Blue 1/2 Square Print,4 +48785,Duplo Tile 2 x 2 with Yellow 1/2 Square Print,4 +48786,Duplo Tile 2 x 2 with Green 1/2 Square Print,4 +48787,Duplo Tile 2 x 2 with with Black 1/2 Square Print,4 +48794,"Clikits Container Box, Square with 2 x 2 Holes Arrangement - Hinged",7 +48812,Dog / Wolf,28 +48835,Duplo Cat with White Stripes and Paws Print,4 +4883c02,Duplo Car Base 2 x 6 with Red Wheels and Old Style Closed Hitch End,4 +48842,DUP MAN NO. 1 W. CAP,4 +4886,Duplo Furniture Bunk Bed,4 +4890,Duplo Furniture Cabinet 2 x 2 x 1.5,4 +4891,Duplo Furniture Drawer 2 x 2 with Pull Handle (fits in cabinet 4890),4 +48912c01,Technic Shock Absorber 11.5L [Complete Assembly],25 +4892,Duplo Furniture Bathroom Sink,4 +4893,Bathtub,4 +48933,Wedge 4 x 4 Triple with Stud Notches,6 +48933pb01,Wedge 4 x 4 Triple with Stud Notches with Light Bluish Gray Stripe Mini Slave I Print (6964),6 +48933pb02,Wedge 4 x 4 Triple with Stud Notches with Set 7260 Left Print,6 +48933pb03,Wedge 4 x 4 Triple with Stud Notches with Set 7260 Right Print,6 +48933pb04,"Wedge 4 x 4 Triple with Stud Notches with Orange Window Frame, Yellow Stripes, Light Blue 4 Print",6 +48933pr0001,Wedge 4 x 4 Triple with Stud Notches with Sith Nightspeeder Print 1,6 +48933pr0002,Wedge 4 x 4 Triple with Stud Notches with Sith Nightspeeder Print 2,6 +4894,Duplo Furniture Shower Head on Stand,4 +4895,Duplo Furniture Bed 3 x 5 x 1 2/3,4 +4895pb01,Duplo Furniture Bed 3 x 5 x 1 2/3 with Moon and Stars Print,4 +48980,Sticker Sheet for 4504-1,17 +48989,Technic Pin Connector Hub Perpendicular 3L with 4 Pins,12 +48995,Tile Special 3 x 2 with Hole,15 +48995pb01,"Tile, Modified 3 x 2 with Hole with Lego Logo Small and '©2004 LFL and the LEGO Group.' Print",15 +48995pb02,"Tile, Modified 3 x 2 with Hole with Lego Logo Large, No Copyright Date in Print",15 +48995pb03,"Tile, Modified 3 x 2 with Hole with Harry Potter Logo Print",15 +48995pb04,"Tile, Modified 3 x 2 with Hole with Lego 50 Year Anniversary Logo Print",15 +48995pb05,"Tile, Modified 3 x 2 with Hole with Lego Logo Small and 'TM & © WBE (s12) and The LEGO Group.' Print",15 +48995pb06,"Tile, Modified 3 x 2 with Hole with Lego Logo Small and '© DC (s06) and The LEGO Group' Print",15 +48995pb07,"Tile, Modified 3 x 2 with Hole with Lego Logo Small and '©2013 Viacom and the LEGO Group.' Print",15 +48995pr0004,FLAT TILE 2X3 W/EYE No. 4,15 +4908,Belville Baby Crib,42 +4909,Duplo Furniture Mirror,4 +4911,Duplo Furniture Toilet (without Rim),4 +4912,Duplo Furniture Toilet Rim,4 +4913,Duplo Sign Post Tall,4 +49193,"Minifig Cape Cloth, Dementor Style",27 +49423,Bionicle Toa Metru Chest Cover,41 +4943pb010,"Duplo Figure, Child Type 1 Boy, Light Blue Legs, Blue Top With Collar And 2 Buttons, Black Hair",4 +4960,Storage Case with Two Sliding Latches (Small),17 +4962,Container Storage Technic Case Lid,17 +4963,Container Storage Technic Case Bottom,17 +49668,Plate Special 1 x 1 with Tooth,9 +49785,"Paper, Cardboard Base for Set 9544",17 +498,Technic Tread Crawler,29 +49815,"Technic, Panel RC Car Mudguard Small, Right",40 +49816,"Technic, Panel RC Car Mudguard Small, Left",40 +49817,"Technic, Panel RC Car Mudguard Front, Right",40 +49818,"Technic, Panel RC Car Mudguard Front, Left",40 +49821,"Technic, Panel RC Car Spoiler",40 +49822,"Technic, Panel RC Car Frame / Windscreen",40 +49823,Technic Panel RC Car Brush Guard,40 +49828,Technic Engine RC Car Quadruple Pipe,36 +49829,Technic Engine Air Scoop Double (RC Car),36 +4982stk01,Sticker for Set 4982 - (60499/4512993),17 +49830,"Technic, Spike Connector Flexible with Six Holes Perpendicular",12 +49856,Sticker Sheet for set 8386-1 49856 / 4225251,17 +49917,CD-ROM Onewa IN/AM,17 +4999stk01,Sticker for Set 4999 (63551/4529157),17 +4j001,Minifig - 4 Juniors,13 +4j002,Minifig - 4 Juniors,13 +4j003,Minifig - 4 Juniors,13 +4j003a,"Construction Worker - Blue Shirt, Green Vest, Cap with 'Brick', Sunglasses and Moustache",13 +4j004,Spider-Man (Junior-fig) ,13 +4j005,Dr. Octopus / Doc Ock with Grabber Arms (Junior-fig),13 +4j005a,Dr. Octopus / Doc Ock (Junior-fig),13 +4j006,Minifig - 4 Juniors,13 +4j007,"Police - Black Legs, Black Jacket, White Helmet, Light Flesh Head",13 +4j008,"Police - Blue Legs, Black Jacket, Blue Cap, Sunglasses",13 +4j009,Pirates - Scurvy Dog,13 +4j010,Pirates - Harry Hardtack,13 +4j011,Pirates - Cannonball Jimmy,13 +4j012,Peter Parker (Junior-Fig),13 +4j013,Pirates - Jolly Jack Crow,13 +4j014,Pirates - Captain Redbeard,13 +4j015,Pirates - Captain Kragg,13 +4j016,Pirates - Drake Dagger,13 +4j017,"Police - Blue Legs, Black Jacket, Black Cap",13 +5,Fabuland Fire Ladder Holder 2 x 4 x 2 1/2,42 +5000036,Ninjago Masters of Spinjitzu Deck #2 Game Card *5 - Kendo Jay (3D Lenticular Card),17 +5000644stko1,Sticker Sheet for 5000644-1,17 +5004103,DK Brickmaster Star Wars - Battle for the Stolen Crystals - Hardcover Book ONLY,17 +5011,Electric Motor 9V 4 x 10 x 3,45 +50163,"Technic Turntable Large Type 2, Complete Assembly with Black Outside Gear Section (26/56 Teeth)",26 +501a,"Electric, Train Motor 12V Modern Type I with 2 round contact holes",45 +501b,~Electric Train Motor 12V Unslotted with 3-Hole Plugs,45 +501c,~Electric Train Motor 12V Slotted with 3-Hole Plugs,45 +502,Electric Train Motor 12V Connecting Rod,36 +50231,Minifig Cape - Cloth Standard - Traditional Starched Fabric,27 +50231pat0001,Minifig Cloth Cape - Standard with Silver Glitter,27 +50231pat0002,"Minifig Cape Cloth, Standard with Silver Textured Reverse",27 +50231pb002,Minifig Cloth Cape - Double-sided - Medium Dark Flesh,27 +50231pb005,"Minifig Cape Cloth, Standard with Dark Red and Red Sides",27 +50231pb01,"Minifig Cape Cloth, Standard with Yellow and Blue Sides (Lando Calrissian)",27 +50231pb04,Minifig Cloth Cape - Standard with Dark Purple Print [One Side],27 +50231pr0001,Minifig Cape Cloth Standard with Iridescent Stars and Moons Print,27 +50231pr003,Minifig Cloth Cape - Standard with Black and Dark Red Sides,27 +50231px1,"Minifig Cape Cloth, Standard with Star Print",27 +50231px2,"Minifig Cape Cloth, Standard with Black Back and Stripes Print",27 +50231px3,"Minifig Cape Cloth, Standard, Gray Side with Dark Slashes Print [7255]",27 +50254,"Train Wheel Small, hole notched for wheels holder pin",29 +50303,Boat Bow Plate 7 x 6 with Stud Notches,9 +50304,Wedge Plate 8 x 3 Right,49 +50305,Wedge Plate 8 x 3 Left,49 +50373,Wedge 3 x 4 [Stud Notches],6 +503c01,Fabuland Wheelbarrow with One Center Wheel ad4,36 +50450,Technic Axle 32,46 +50451,Technic Axle 16,46 +50602,Shoulder Armour - Smooth,41 +50616,"Large Figure Crown, King Mathias",41 +50623,"Large Figure Sword, Santis / King Mathias - Series 2",41 +50624,"Large Figure Sword, Danju - Series 2",41 +50625,"Large Figure Sword, Jayko - Series 2",41 +50626,"Large Figure Sword, Rascus - Series 2",41 +50627,"Large Figure Sword, Vladek, Lord - Series 2",41 +50629,"Large Figure Armor, Leg Shin Guard Type 1",41 +50653pb01,"Shield, 2 x 4 Brick Relief, Bear with Red and Gold Print [8794]",41 +50654pb01,"Large Figure Shield, 2 x 4 Brick Relief, Danju Wolf with Dark Purple and Gold Print",41 +50655pb01,"Large Figure Shield, 2 x 4 Brick Relief, Jayko Hawk with Dark Blue and Silver Print",41 +50656pb01,"Large Figure Shield, 2 x 4 Brick Relief, Monkey with Green and Gold Print",41 +50657pb01,"Large Figure Shield, 2 x 4 Brick Relief, Vladek Scorpion with Dark Red and Silver Print",41 +50657pb02,"Large Figure Shield, 2 x 4 Brick Relief, Vladek Scorpion with Black and Silver Print",41 +50658c01pb01,"Large Figure Torso with Jayko, Sir Print - Series 2 - Gold Hawk Relief",41 +50658c01pb02,"Large Figure Torso with Jayko, King Print - Series 3 - Silver Hawk Relief",41 +50659c01pb01,"Large Figure Torso with Vladek, Lord Print - Series 2 - Black Scorpion Relief",41 +50659c01pb02,"Large Figure Torso with Vladek, Lord Print - Series 3 - Silver Scorpion Relief",41 +50659c02pb01,Large Figure Torso with Dracus Print (Black Front and Silver Trim) - Series 3 - Brick 2 x 2 Relief (base part number is in question),41 +50659c02pb02,Large Figure Torso with Karzon Print (Black Front and Copper Trim) - Series 3 - Brick 2 x 2 Relief (base part number is in question),41 +50660c01pb01,"Torso with Santis, Sir Print - Series 2 - Bear Head Relief",41 +50661c01pb01,"Large Figure Torso with Rascus, Sir Print - Series 2 - Monkey Relief",41 +50662c01pb01,"Large Figure Torso with Danju, Sir Print - Series 2 - Wolf Head Relief",41 +50687,Rat Standing [aka Scabbers],28 +50704,"Arms Mechanical, Large with Claws and Hole (Doc Ock, 4 Juniors)",27 +50745,Mudguard 4 x 2 1/2 x 2 with Arch Round,36 +50747,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers,47 +50747pr0001a,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers and Droid Tri-Fighter Print [7252 / 7283],47 +50747pr0001b,"DOME DIA. 47.84 W/ COMBI HINGE, NO. 1",47 +50747pr0002a,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers and Rogue Shadow Cockpit Print [7672],47 +50747pr0002b,"DOME DIA. 47.84 W/ COMBI HINGE, NO. 2",47 +50747pr0003,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers and Droid Tri-Fighter Dark Blue Triangles Print [8086],47 +50747pr0004,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers and Tie-Fighter Print [9492],47 +50747pr0005,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers and Sith Fighter Print [9500],47 +50747pr0006,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers and SW Republic Gunship Print,47 +50747pr0007,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers and White Compound Eye Print [70708],47 +50747pr0008,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers and Droid Tri-Fighter Cockpit Print,47 +50747pr0009,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers and SW Rebel Ghost Print (75053) ,35 +50747pr02,Windscreen 6 x 6 x 3 Canopy Half Sphere with Dual 2 Fingers and Republic Attack Gunship Print,47 +50747ps0,Windscreen 6 x 6 x 3 Dome Hinge Locking with SW Gunship Print,47 +50821c01,Boat Hull Unitary 48 x 6 x 5 Complete Assembly with Black Top (Catamaran Half),35 +50858,Bionicle Foot Visorak with 3 Pin Holes,41 +50859,Motorcycle Chassis,36 +50859a,Motorcycle Chassis - Short Fairing Mounts,36 +50859b,Motorcycle Chassis - Long Fairing Mounts,36 +50860,"Motorcycle Fairing, Dirt Bike",36 +50861,Tyre 21 x 6 City Motorcycle,29 +50862,Wheel 15 x 6 City Motorcycle,29 +50898,"Technic, Axle and Pin Connector 2 x 7 with Two Ball Joint Sockets",12 +50899,"Technic Bionicle Rhotuka Spinner [Solid Color, Without Code on Side]",41 +50899pat01,"Bionicle Rhotuka Spinner - Marbled Flat Silver Pattern, Without Code on Side",41 +50899pr0002,"Bionicle Rhotuka Spinner - Solid Color, With Code on Side",41 +50900,Bionicle Rhotuka Ripcord 12L with Connector Block 1 x 3 x 5,56 +50901,Bionicle Rhotuka Connector Block 1 x 3 x 2 with 2 Pins and Axle Hole,41 +50903,Technic Bionicle Rhotuka Spinner Rod 2.5L with Gear 8 Tooth,41 +50904,Bionicle Visorak Torso - Beam 8 x 3 x 2,41 +50905,Bionicle Visorak Head with 7 Pin Holes and Axle Hole (Boggarak),41 +50906,Bionicle Visorak Fang with 2 Pin Holes (Boggarak),41 +50907,Bionicle Visorak Head with 7 Pin Holes and Axle Hole (Keelerak),41 +50908,Bionicle Visorak Fang with 2 Pin Holes (Keelerak),41 +50909,Bionicle Visorak Head with 7 Pin Holes and Axle Hole (Roporak),41 +50910,Bionicle Visorak Fang with 2 Pin Holes (Roporak),41 +50911,Bionicle Visorak Head with 7 Pin Holes and Axle Hole (Suukorak),41 +50912,Bionicle Visorak Head with 7 Pin Holes and Axle Hole (Oohnorak),41 +50913,Bionicle Visorak Head with 7 Pin Holes and Axle Hole (Vohtarak),41 +50914,Bionicle Visorak Fang with 2 Pin Holes (Suukorak),41 +50915,Bionicle Visorak Fang with 2 Pin Holes (Oohnorak),41 +50918,Bionicle Visorak Fang with 2 Pin Holes (Vohtarak),41 +50919,Bionicle Foot Toa Hordika,41 +50920,Bionicle Toa Hordika Leg Section,41 +50921,Bionicle Toa Hordika Arm Lower Section with Ball Joint,41 +50922,Bionicle Toa Hordika Arm Upper Section with Ball Joint,41 +50923,Technic Beam 1 x 2 with Ball Joint Angled,55 +50924,Bionicle Weapon Hordika Fin Barb [Plain],24 +50924pat01,Bionicle Weapon Hordika Fin Barb with Flat Silver Flexible End,41 +50925,Bionicle Toa Hordika Torso,41 +50926,"Bionicle Chest Armor, Toa Hordika",41 +50927,"Bionicle Head, Toa Hordika Whenua",41 +50928,"Bionicle Head, Toa Hordika Nokama",41 +50929,"Bionicle Head, Toa Hordika Onewa",41 +50930,Bionicle Weapon Hordika Claw Club [Plain],24 +50930pat01,Bionicle Weapon Hordika Claw Club with Flat Silver Flexible End,41 +50931,"Bionicle Head, Toa Hordika Vakama",41 +50932,"Bionicle Head, Toa Hordika Nuju",41 +50933,"Bionicle Head, Toa Hordika Matau",41 +50934,Bionicle Weapon Hordika Blazer Claw with Flexible Flame End [Plain],24 +50934pat0001,Bionicle Weapon Hordika Blazer Claw with Bright Light Orange Flexible Flame End [Dark Red],41 +50934pat0002,Bionicle Weapon Hordika Blazer Claw with Bright Light Orange Flexible Flame End [Black],41 +50935,Bionicle Weapon Hordika Fang Blade [Plain],24 +50935pat01,Bionicle Weapon Hordika Fang Blade with Flat Silver Flexible End,41 +50936pb01,Bionicle Weapon Hordika Teeth Tool with Trans-Light Blue Flexible End,41 +50937,Bionicle Weapon Hordika Beast Summoner [Plain],24 +50937pat01,Bionicle Weapon Hordika Beast Summoner with Flat Silver Flexible End,41 +50939,"Belville Cloth Bed Veil - Medium, with Sparkly Stars Print",42 +50943,Vehicle Air Scoop [2 x 2 Base],36 +50944,Wheel 11 x 6 mm with Five Spokes [Plain],29 +50944pb02,Wheel 11 x 6 with 5 Spokes with Gold Outline Print,29 +50944pr0001,Wheel Rim 6.4 x 11 with 5 Spokes and Silver Print,29 +50946,Front Grille 1 x 2 x 2 2/3 Sloping,36 +50946p01,Front Grille 1 x 2 x 2 2/3 Sloping with Chrome Outline Print,36 +50947,Mudguard 1 x 4 1/2,36 +50947p01,Car Mudguard 4.5 x 1 x 1 with Flame and Headlight Print,24 +50947pb001,Vehicle Mudguard 1 x 4 1/2 with Flame and Headlight Print,36 +50947pb002,"Vehicle, Mudguard 1 x 4 1/2 with Flame and Red Taillight Print",36 +50948,"Wedge 4 x 3 Cut Back with Cutout, Two Studs",6 +50948pb02,"Wedge 4 x 3 Cut Back with Cutout, 2 Studs with Black and Silver Print",6 +50949,Plate Special 1 x 2 with Racers Car Grill,36 +50950,Slope Curved 3 x 1 No Studs,37 +50951,Tyre 14 x 6 Solid Smooth,29 +50955,Wedge 10 x 3 Left,6 +50955pr0001,Wedge 10 x 3 Left with Red Stripe Print,6 +50956,Wedge 10 x 3 Right,6 +50956pr0001,Wedge 10 x 3 Right with Red Stripe Print,6 +50965,Wheel Cover 5 Spoke with Centre Stud - 56mm D. [Fits 44772],29 +50967,Slope Curved 8 x 1 x 1 2/3 with Arch,37 +50986,Windscreen 10 x 6 x 3 Bubble Canopy Double Tapered,47 +50986pb003,Windscreen 10 x 6 x 3 Bubble Canopy Double Tapered with Light Bluish Gray Jedi Starfighter Print,47 +50986pr0001,Windscreen 10 x 6 x 3 Bubble Canopy Double Tapered with Dark Bluish Gray Jedi Starfighter Print,47 +50986pr0003,Windscreen 10 x 6 x 3 Bubble Canopy Double Tapered with Dark Green Cockpit Cover Print [7683],47 +50986pr0004,Windscreen 10 x 6 x 3 Bubble Canopy Double Tapered with B-wing Starfighter Print,47 +50986pr0005,"Windscreen 10 x 6 x 3 Bubble Canopy Double Tapered with Light Bluish Gray Jedi Starfighter, Two Red Triangles on Top Print",47 +50990,Dish 10 x 10 Inverted (Radar) [Undetermined Studs],24 +50990a,Dish 10 x 10 Inverted (Radar) with Hollow Studs,21 +50990b,Dish 10 x 10 Inverted (Radar) with Solid Studs,21 +50990pb01,Dish 10 x 10 Inverted (Radar) with Black and Gray Concentric Circles Print,21 +50990pb02,Dish 10 x 10 Inverted [Radar] with Serrated Blades Print [7255],21 +50990pr0001,Dish 10 x 10 Inverted (Radar) with Wheel / Tire Print,21 +50990pr0003a,Dish 10 x 10 Inverted (Radar) with Radiating Spokes Print on Concave Side,21 +50990pr0003b,Dish 10 x 10 Inverted (Radar) with SW Tank Droid Print,21 +5099-1,5099 Pneumatic Valves,24 +50994,Minifig Head Modified - General Grievous,13 +50995,Minifig Helmet SW Clone Trooper [Plain],27 +50995pr0001,Minifig Helmet SW Clone Trooper Ep.3 Print,27 +50995pr0004,Minifig Helmet SW Clone Trooper Ep.3 Pilot Print,27 +50995pr0005,Minifig Helmet SW Clone Trooper Ep.3 Print with Yellow Stripes,27 +50995pr0006,Minifig Helmet SW Clone Trooper Ep.3 Print with Red Stripe / Red Mouth Markings,27 +50995pr0007,Minifig Helmet SW Clone Trooper Ep.3 Print with Dotted Mouth,27 +50995pr02,Minifig Helmet SW Clone Trooper Ep.3 Print with Dark Red Mark,27 +50995pr04,Minifig Helmet SW Clone Trooper Ep.3 Print with Green Stripes,13 +51,Technic Panel Dome 6 x 6 x 5 2/3,40 +51000,Flag 5 x 6 Hexagonal with C Clips,38 +51011,Tyre 17.5 x 6 with Shallow Staggered Treads,29 +5102,"Hose, Pneumatic 4mm D.",30 +51027,"Clikits Hair Clip Plastic, Grip, 5 Teeth per Side",48 +5102c02,"Hose, Pneumatic 4mm D. 2L / 1.6cm",30 +5102c03,"Hose, Pneumatic 4mm D. 3L / 2.4cm",30 +5102c04,"Hose, Pneumatic 4mm D. 4L",30 +5102c05,"Hose, Pneumatic 4mm D. 5L",30 +5102c06,"Hose, Pneumatic 4mm D. 6L / 4.8cm",30 +5102c07,"Hose, Pneumatic 4mm D. 7L / 5.6cm",30 +5102c08,"Hose, Pneumatic 4mm D. 8L / 6.4cm",30 +5102c09,"Hose, Pneumatic 4mm D. 9L / 7.2cm",30 +5102c10,"Hose, Pneumatic 4mm D. 10L / 8cm",30 +5102c100,"Hose, Pneumatic 4mm D. 100L",30 +5102c11,"Hose, Pneumatic 4mm D. 11L",30 +5102c12,"Hose, Pneumatic 4mm D. 12L / 9.6cm",30 +5102c122,"Hose, Pneumatic 4mm D. 122L",30 +5102c128,"Hose, Pneumatic 4mm D. 128L",30 +5102c13,"Hose, Pneumatic 4mm D. 13L",30 +5102c138,"Hose, Pneumatic 4mm D. 138L",30 +5102c14,"Hose, Pneumatic 4mm D. 14L / 11.2cm",30 +5102c15,"Hose, Pneumatic 4mm D. 15L",30 +5102c16,"Hose, Pneumatic 4mm D. 16L",30 +5102c17,"Hose, Pneumatic 4mm D. 17L",30 +5102c18,"Hose, Pneumatic 4mm D. 18L",30 +5102c19,"Hose, Pneumatic 4mm D. 19L / 15.2cm",30 +5102c195,"Hose, Pneumatic 4mm D. 195L",30 +5102c20,"Hose, Pneumatic 4mm D. 20L / 16cm",30 +5102c200,"Hose, Pneumatic 4mm D. 200L",30 +5102c207,"Hose, Pneumatic 4mm D. 207L",30 +5102c21,"Hose, Pneumatic 4mm D. 21L / 16.8cm",30 +5102c22,"Hose, Pneumatic 4mm D. 22L",30 +5102c23,"Hose, Pneumatic 4mm D. 23L / 18.2cm",30 +5102c24,"Hose, Pneumatic 4mm D. 24L / 19.2cm",30 +5102c25,"Hose, Pneumatic 4mm D. 25L",30 +5102c26,"Hose, Pneumatic 4mm D. 26L",30 +5102c27,"Hose, Pneumatic 4mm D. 27L / 21.6cm",30 +5102c28,"Hose, Pneumatic 4mm D. 28L / 22.4cm",30 +5102c29,"Hose, Pneumatic 4mm D. 29L",30 +5102c30,"Hose, Pneumatic 4mm D. 30L / 24.0cm",30 +5102c31,"Hose, Pneumatic 4mm D. 31L",30 +5102c32,"Hose, Pneumatic 4mm D. 32L / 256mm",30 +5102c33,"Hose, Pneumatic 4mm D. 33L / 26.4cm",30 +5102c34,"Hose, Pneumatic 4mm D. 34L / 27.2cm",30 +5102c36,"Hose, Pneumatic 4mm D. 36L",30 +5102c37,"Hose, Pneumatic 4mm D. 37L / 29.6cm",30 +5102c38,"Hose, Pneumatic 4mm D. 38L (30cm)",30 +5102c39,"Hose, Pneumatic 4mm D. 39L",30 +5102c40,"Hose, Pneumatic 4mm D. 40L / 32.0cm",30 +5102c406,"Hose, Pneumatic 4mm D. 406L",30 +5102c42,"Hose, Pneumatic 4mm D. 42L",30 +5102c44,"Hose, Pneumatic 4mm D. 44L",30 +5102c450,"Hose, Pneumatic 4mm D. 450L",30 +5102c48,"Hose, Pneumatic 4mm D. 48L / 384mm",30 +5102c50,"Hose, Pneumatic 4mm D. 50L",30 +5102c54,"Hose, Pneumatic 4mm D. 54L / 43.2cm",30 +5102c60,"Hose, Pneumatic 4mm D. 60L",30 +5102c66,"Hose, Pneumatic 4mm D. 66L",30 +5102c68,"Hose, Pneumatic 4mm D. 68L",30 +5102c76,"Hose, Pneumatic 4mm D. 76L",30 +5102c80,"Hose, Pneumatic 4mm D. 80L / 64cm",30 +5102c89,"Hose, Pneumatic 4mm D. 89L",30 +51034,Clikits Hair Comb with 4 Holes,48 +51035,Clikits Icon - Rectangle 3L with Pin,48 +51036,Clikits Icon - Rectangle 3L with Hole,48 +5107-1,5107 Pneumatic Pump (New System),24 +5108-1,"5108 Pneumatic Cylinder, 48mm",24 +5109-1,5109 Pneumatic Tubes and Pieces,24 +51152,"Belville Fishtail for Adult with Dark Purple Fins, Dark Purple Spots, Silver Overlay Print, with Top Cuff",42 +51154,"Belville Fishtail for Adult with Medium Blue Fins, Medium Blue Spots, Silver Overlay Print",42 +51155,"Belville Fishtail for Child with Gold Fins, Dark Pink Spots, Silver Overlay Print",42 +51163cx1,"Dog with Drawer, Complete Assembly (Belville 5962)",42 +51164,Seahorse (Belville),42 +512,Electric Train 12V Level Crossing Sign,45 +51217,Minifig Head Modified Wookiee [Plain],24 +51217pb01,"Minifig Head Modified Wookiee, Warrior with Gold and Silver Print",13 +51219,"Sports Minifig Stand, Bottom",27 +51260,"Duplo Building Wall 1 x 8 x 6 with Window Opening, Hinge on Right",4 +51261,Duplo Building Wall 1 x 8 x 6 with Door Opening,4 +51262,Plate 8 x 8,4 +51265,Garbage Can [Dustbin],4 +51268,Duplo Utensil Axe / Tomahawk,4 +51269,SPADE,4 +51273,"BRICK 1X4X1, SIREN 131/43",4 +51288,Duplo Door 1 x 4 x 4 with Rounded Top and Handle - Castle,4 +512p01,Electric Train 12V Level Crossing Sign with Red/White Print,32 +51342,Dragon Wing 19 x 11,28 +51342pat0001,"Dragon Wing 19 x 11, Smoke Trailing Edge",28 +51342pat0002,Dragon Wing 19 x 11 - Orange Trailing Edge Pattern,28 +51342pat0003,Dragon Wing 19 x 11 - Dark Red Trailing Edge Pattern,28 +51342pat0004,"Dragon Wing 19 x 11, Yellow Trailing Edge, Metallic Silver Leading Edge",28 +51342pat0005,"Dragon Wing 19 x 11, Yellow Trailing Edge, Dark Blue Leading Edge",28 +51342pat0006a,"Dragon Wing 19 x 11, Dark Green Trailing Edge",28 +51342pat0006b,"Dragon Wing 19 x 11, Black Trailing Edge",28 +51342pat0007,"Dragon Wing 19 x 11, Trans-Red Trailing Edge",28 +51342pat0008,"Dragon Wing 19 x 11, Red Trailing Edge",28 +51342pat0010,"Dragon Wing 19 x 11, Trans-Dark Pink Trailing Edge",28 +51342pat0011,Dragon Wing 19 x 11 with Marbled Trans-Bright Green Trailing Edge,28 +51345,"Tail, Merman / Mermaid",13 +51345pr0001,Minifig Tail - Merman / Mermaid with White Scales Print,13 +51345pr01,"Tail, Merman / Mermaid with Set 4762 Print",13 +51377,Wheel 30.4 x 14 Spoked,29 +51378,Wheel Technic Street Bike [8420],29 +51379,"Tyre Technic Street Bike Wide, Rear [8420]",29 +51380,"Tyre Technic Street Bike Narrow, Front [8420]",29 +51383,Duplo Building Roof Support,4 +51385,Duplo Building Barn Roof Section 8 x 8 x 8 with Door Opening,4 +51509,Clikits Icon - 11mm Base - Polished (Transparent Colors Only),48 +51542,Baseplate Raised 32 x 48 x 6 with Level Front,1 +51546,"Duplo, Train Locomotive Cabin Roof 2 x 4 Studs",4 +51547,"Duplo, Train Cab / Tender Base",4 +51547pb02,"Duplo, Train Cab / Tender Base Thomas & Friends James Print",4 +51547pb03,"Duplo, Train Cab / Tender Base Thomas & Friends James #5 Print",4 +51557,"Duplo, Train Tipper 2 x 4 with Curved Sides (Skip)",4 +51558,"Duplo, Train Tipper Holder 4 x 8 (Skip Holder)",4 +51559,Duplo Bridge Girder,4 +51560,Manual Points Assembly,4 +51595,Baseplate 16 x 16 Driveway,1 +51595p01,Baseplate 16 x 16 Driveway with Grey Drive Print,1 +51595p02,Baseplate 16 x 16 Driveway with Grey Drive/White Stripes Print,1 +51635,Technic Bionicle Minifig Toa Metru Whenua,41 +51636,Technic Bionicle Minifig Toa Metru Matau,41 +51637,Technic Bionicle Minifig Toa Metru Vakama,41 +51638,Technic Bionicle Minifig Toa Metru Nokama,41 +51639,Technic Bionicle Minifig Toa Metru Onewa,41 +51640,Technic Bionicle Minifig Toa Metru Nuju,41 +51641,Minifig Bionicle Mini Staff (Nokama),41 +51642,Minifig Bionicle Mini Staff (Onewa),41 +51643,Bionicle Mini Staff (Nuju),41 +51644,Minifig Bionicle Mini Staff (Matau),27 +51645,Minifig Bionicle Mini Staff (Vakama),41 +51663,Bionicle Mini Staff (Whenua),41 +51675,Clikits Icon - Shell 2 x 2 with Hole,48 +51686,Clikits Child's Ring - Wide Band with Hole in Top,48 +51689,Varactyl Head 'Boga',28 +51695,Duplo Building Wall 1 x 8 x 8 with Door Opening - Castle,4 +51697,Duplo Building Wall 1 x 8 x 8 with Window Opening - Castle,4 +51702,Duplo Door Sliding Grille 6 x 7,4 +51703,"Duplo Wave (Fire, Water, Flame) 2 x 1 x 5 with Non-Marbled Tip",4 +51704,"Duplo, Brick 2 x 10 x 2 Arch",4 +51705,Duplo Plate 8 x 8 with Trap Door Opening,4 +51706,Duplo Trap Door Grate 4 x 4,4 +51708,Flagpole / Antenna 1 x 9 [Duplo],4 +51725,Duplo Flag Wavy 2 x 5,4 +51725pb02,Duplo Flag Wavy 2 x 5 with Lion and Crown Print,4 +51725pr0004,Duplo Flag Wavy 2 x 5 with Skull and Crossed Swords Print,4 +51725pr05,Duplo Flag Wavy 2 x 5 with Chequered Print,4 +51739,Wedge Plate 2 x 4,49 +51741,GHOST NO. 10,57 +51753,"SIGN, ROUND, DEC. RECYCLE",24 +51796,Body from Nestle Promo Figure - Jayko with Glaive and Shield,57 +51797,Body from Nestle Promo Figure - Shadow Knight with Spear and Shield,13 +51798,Figure Body from Nestle Promo Figure - Danju with Mace and Shield,57 +51799,Body from Nestle Promo Figure - Rascus with Axe and Shield,57 +518,Minifig Cannon Non Shooting,27 +51800,Body from Nestle Promo Figure - Jayko with Sword and Shield,57 +51801,Body from Nestle Promo Figure - Santus with Sword and Shield,57 +51802,Glaive from Nestle Promo Figure - Jayko with Glaive and Shield,57 +51803,Spear from Nestle Promo Figure - Shadow Knight with Spear and Shield,13 +51804,Mace from Nestle Promo Figure - Danju with Mace and Shield,13 +51805,Axe from Nestle Promo Figure - Rascus with Axe and Shield,57 +51806,Sword from Nestle Promo Figure - Jayko with Sword and Shield,57 +51807,Sword from Nestle Promo Figure - Santus with Sword and Shield,57 +51808,Shield from Nestle Promo Figure - Jayko with Glaive and Shield,57 +51810,Shield from Nestle Promo Figure - Shadow Knight with Spear and Shield,57 +51811,Shield from Nestle Promo Figure - Danju with Mace and Shield,13 +51812,Shield from Nestle Promo Figure - Rascus with Axe and Shield,13 +51813,Shield from Nestle Promo Figure - Jayko with Sword and Shield,57 +51814,Shield from Nestle Promo Figure - Santus with Sword and Shield,57 +51858,Crane Basket 2 x 3 x 2 with Locking Hinge Fingers,34 +51874,Animal Dragon Tail End,28 +51874pat0001,Dragon Tail Barbed with Marbled Black Pattern,28 +51874pat0002,Dragon Tail Barbed with Marbled Red Pattern [7093 / 7094],28 +51874pat0003,Dragon Tail Barbed with Marbled Metallic Gold Pattern,28 +51874pat0004,Dragon Tail Barbed with Marbled Black Pattern,28 +51930,Ball 52mm Diameter,26 +51957,GARBAGE CONTAINER W/HANDLE,24 +51991,Technic Bionicle Minifig Visorak (Unspecified),24 +51991a,Bionicle Mini - Visorak Boggarak,41 +51991b,Bionicle Mini - Visorak Keelerak,41 +51991c,Bionicle Mini - Visorak Oohnorak,41 +51991d,Bionicle Mini - Visorak Roporak,41 +51991e,Bionicle Mini - Visorak Suukorak,41 +51991f,Bionicle Mini - Visorak Vohtarak,41 +51ps1,Technic Panel Dome 6 x 6 x 5 2/3 with R2-D2 No Eye Print,40 +51ps2,Technic Panel Dome 6 x 6 x 5 2/3 with R2-D2 Eye Print,40 +52024,TOWER ELEMENT 6X4X6,24 +52025,TOWER ROOF,24 +52027,½ CIRCLE W/SLIT 8X5X3,24 +52031,Wedge 4 x 6 x 2/3 Triple Curved,37 +52036,"Vehicle, Base 4 x 12 x 3/4 with 4 x 2 Recessed Center with Smooth Underside",36 +52037,Vehicle Base 6 x 16 x 2/3 with 4 x 4 Recessed Center,36 +52038,Brick Special 2 x 4 - 1 x 4 with 2 Recessed Studs and Thick Side Arches,5 +52040,Brick Special 12 x 12 with 3 Pin Holes on each Side and Axle Holes in Corners,5 +52041,Crane Section 4 x 12 x 3 with 8 Pin Holes,34 +52045,"Vehicle, Tipper Bed 32 x 16 x 10 2/3",36 +52107,Brick Special 1 x 2 with Studs on 2 Sides,5 +52261,Bionicle Mask Ultimate Dume (Mask of Power),41 +52381,Duplo Brick 1 x 2 x 2 with Bottom Tube and Traffic Signal Double Print,4 +52501,Slope Inverted 45° 6 x 1 Double with 1 x 4 Cutout,3 +52654,Minifig Magnet,39 +52668,Technic Brick 6 x 8 Open Center with 2 Fixed Rotatable Friction Pins on 3 Sides,8 +52716,"DUPLO Hairbrush, heart",24 +5282,Electric RC Controller [RC Vehicles],45 +52861,PRINCES FIGURE PIA,57 +529,Minifig Helmet Samurai Horn,27 +52914,"AIRPLANE TOP, 5X16X1",24 +52920,"WING FOR AIRPLANE 30X9X1,5",24 +52922,Duplo Airplane Large Engine Housing,4 +52923,"ENG. FOR PLANE, FR. 3X1X2.5",24 +52924,PLATE 2X4 WHEEL CONNECTOR,24 +5306,Electric Brick 2 x 2 x 2/3 with Wire End,45 +53069,Bionicle Mask Hau (Toa Lhikan),41 +5306a,Electric Train Track Contacts with Wire and 2 x 2 x 2/3 Brick,45 +5306ac015,"Electric, Wire with Brick 2 x 2 x 1/3 Pair, 15 Studs Long (rare brick height)",45 +5306b,"Electric, Wire with Brick 2 x 2 x 2/3 Pair [Undetermined Length]",45 +5306bc015,"Electric Wire with Brick 2 x 2 x 2/3 Pair, 15 Studs Long",45 +5306bc017,"Electric Wire with Brick 2 x 2 x 2/3 Pair, 17 Studs Long",45 +5306bc020,"Electric, Wire with Brick 2 x 2 x 2/3 Pair, 20 Studs Long",45 +5306bc021,"Electric, Wire with Brick 2 x 2 x 2/3 Pair, 21 Studs Long",45 +5306bc026,"Electric Wire with Brick 2 x 2 x 2/3 Pair, 26 Studs Long",45 +5306bc036,"Wire with Brick 2 x 2 x 2/3 Pair, 36 Studs Long",45 +5306bc046,"Electric Wire with Brick 2 x 2 x 2/3 Pair, 46 Studs Long",45 +5306bc069,"Electric, Wire with Brick 2 x 2 x 2/3 Pair, 69 Studs Long",45 +5306bc162,"Wire with Brick 2 x 2 x 2/3 Pair, 162 Studs Long",45 +5306bc378,"Electric, Wire with Brick 2 x 2 x 2/3 Pair, 378 Studs Long",45 +5306c01,"Electric, Train Track Contacts with Wire and 2 x 2 x 2/3 Brick",45 +53070,Bionicle Weapon Lava Greatsword / Shield Half (Toa Lhikan),41 +5313,"Track System, Energizer Track 16 x 15 x 2",45 +5313a,"Electric, Motor Rechargeable 4 x 8 x 1 2/3 (Track System)",45 +53142,WHEEL SUSPENSION WITH 4 WHEEL,24 +53143,WH. STEER. W/TURN. WH. W/COUP.,24 +53157,"Duplo Brick 2 x 2 with Red, Dark Red, and Tan Bricks Print",4 +53178,Pneumatic Cylinder Bracket,22 +53290,Dragon Head 'Hungarian Horntail',28 +53308,AIRPLANE 14X30X5,24 +53346c01pb01,Large Figure Torso with King Mathias Print - Series 2 - Lion Head Relief,41 +53347,Castle Large Figure Shield with PearlDkGold Relief Lion Side View with 2 x 4 x 2 Studs on BlueViolet Background with FlatSilver Frame Print,24 +53347pb01,"Large Figure Shield, 2 x 4 Brick Relief, Lion with Blue-Violet and Silver Print",41 +53379,Bionicle Rhotuka Shield,41 +53384,Bionicle Mask Kualsi,41 +53389,"Minifig Head Cover, Shark",27 +53393,Bionicle Mask Large Hau (Toa Lhikan Style),41 +53394,Bionicle Mask Large Kiril (Turaga Dume Style),41 +53400,"Train, Track Plastic (RC Trains) Curved",36 +53401,"Train, Track Plastic (RC Trains) Straight",36 +53403,"Train, Track Plastic (RC Trains) Switch Point Right",36 +53406,"Train, Track Plastic (RC Trains) Switch Point Left",36 +53415,"Cloth Cape, King Figure with 1 Neck Hole (Series 2)",41 +53447,"Paper, Cardboard Punch-outs for Set 9544",17 +53450,Minifig Helmet - Viking with Side Horn Holes,27 +53451,Barb Small (Helmet Horn),28 +53452,Boat Hull Viking Bow / Stern,35 +53454,"Minifig Axe Head, Clip-on (Viking) [Thick Clip]",27 +53455,Serpent Head 'Midgard Serpent' (Set 7018),28 +53456,Dragon Head Viking Beaked,28 +53457,Wolf Head 'Fenris Wolf',28 +53497,DUPLO MIRROR W/FOIL SILVER,24 +53500,Bionicle Head Connector Block Eye/Brain Stalk (Piraka) - Light-Up,41 +53531,Sports Net 8 x 16 Lattice,31 +53532,Sports Soccer Stadium Base,1 +53533,Technic Beam 2 x 4 Fork with Pin,55 +53542,Bionicle Foot Toa Inika Clawed,41 +53543,Bionicle Toa Inika Thigh Cover,41 +53544,Bionicle Toa Inika Upper Arm Cover,41 +53544pat0001,"Bionicle Toa Inika Upper Arm Cover, Marbled White Pattern",41 +53545,Bionicle Toa Inika Upper Torso / Shoulders Section,41 +53546,"Bionicle Chest Armor, Toa Inika - Type 1",41 +53547,"Bionicle Chest Armour, Toa Inika - Type 2",41 +53547pat0001,"Bionicle Chest Armour, Toa Inika - Type 2 with Marbled Pearl Light Gray Pattern",41 +53548,Bionicle Toa Inika Leg Lower Section,41 +53548pat0001,"Bionicle Toa Inika Leg Lower Section, Marbled White Pattern",41 +53549,Bionicle Foot Toa Inika Elliptical,41 +53549pat0001,Bionicle Foot Toa Inika Elliptical with Marbled White Pattern,41 +53549pat0002,Bionicle Foot Toa Inika Elliptical with Marbled Pearl Light Gray Pattern (53551),41 +53550,Bionicle Zamor Sphere Holder,41 +53551,Bionicle Chain Link Section,41 +53558,Bionicle Head Connector Block (Toa Inika) [Plain],24 +53558pat01,Bionicle Head Connector Block (Toa Inika) with White Bottom,41 +53560,Bionicle Mask Calix (Rubber),41 +53561,Bionicle Mask Elda (Rubber),41 +53562,Bionicle Foot Piraka Clawed,41 +53562pat0001,Bionicle Foot Piraka Clawed with Pearl Gold Talons,41 +53562pat0002,Bionicle Foot Piraka Clawed with Pearl Dark Gray Talons,41 +53562pat0003,Bionicle Foot Piraka Clawed with Pearl Light Gray Talons [Dark Blue],41 +53562pat0005,Bionicle Foot Piraka Clawed with Pearl Light Gray Talons [Black],41 +53562pat0006,Bionicle Foot Piraka Clawed with Flat Silver Talons,41 +53563,Bionicle Piraka Arm Section with Two Ball Joints,41 +53564,Bionicle Piraka Torso with Two Ball Joints,41 +53565,Technic Connector Block 3 x 6 x 3 with Ball Joint,12 +53566,Bionicle Piraka Leg Upper Section Cover,41 +53568,Bionicle Foot Piraka Mechanical,41 +53569,Bionicle Weapon Piraka Drill and Buzz Saw Combination (Reidak),41 +53570,"Bionicle Piraka Spine Flexible with Mask and Arm Covers, Thok",41 +53571,Bionicle Weapon Piraka Water Harpoon (Vezok),41 +53572,Bionicle Weapon Piraka Three Blade Scissor (Zaktan),41 +53573,"Bionicle Piraka Spine Flexible with Mask and Arm Covers, Hakann",41 +53574,Bionicle Piraka Leg Lower Section with Two Ball Joints,41 +53575,Bionicle Weapon Piraka Lava Launcher (Hakann),41 +53576,"Bionicle Piraka Spine Flexible with Mask and Arm Covers, Vezok",41 +53577,Bionicle Weapon Piraka Ice Gun (Thok),41 +53578,Bionicle Weapon Piraka Seismic Pickaxe (Avak),41 +53579,"Bionicle Piraka Spine Flexible with Mask and Arm Covers, Zaktan",41 +53580,"Bionicle Piraka Spine Flexible with Mask and Arm Covers, Avak",41 +53582,Bionicle Mask Rode,41 +53583,Bionicle Mask Olmak,41 +53584,Bionicle Mask Ignika (Vezon),41 +53585,Technic Ball Joint with Through Axle Hole,26 +53586,Technic Axle and Pin Connector Perpendicular with Extension,12 +53587,Bionicle Weapon Axonn Giant Axe Half,41 +53588,"Baseplate, Raised 16 x 16 No Studs with Cross Opening, 4 Holes",1 +53588pat01,"Baseplate, Raised 16 x 16 No Studs with Cross Opening, 4 Holes, Marbled Red, Lt Gray, Black Pattern",1 +53590,Minifig Head Modified Bionicle Inika Toa Jaller [Plain],24 +53590pr01,Minifig Head Modified Bionicle Inika Toa Jaller,13 +53596,Minifig Head Modified Bionicle Inika Toa Hewkii [Plain],13 +53596pr01,Minifig Head Modified Bionicle Inika Toa Hewkii,13 +53613,Large Figure Visor - Vladek with Horns,41 +53613pat0002,"Large Figure Visor, Vladek with Horns, Marbled with Black",41 +53657,Clikits Icon - Large Flower 5 Petals with Pin,48 +53658,Clikits Icon - Large Flower 5 Petals with Hole,48 +53660,Clikits Icon - Flower Centre,48 +53705,"Minifig Axe Head, Clip-on (Viking) [Thin Clip]",27 +53787,Electric Motor - NXT,45 +53788,Mindstorms NXT - Complete Brick with Dark Bluish Gray Base,45 +53792,Electric Ultrasonic Sensor - NXT,45 +53793,Electric Touch Sensor - NXT,45 +539,Tyre for Wheel 41mm Znap,29 +53916,"Duplo Building Wall 1 x 8 x 6 with Window Opening, Hinge on Left",4 +53981,Minifig Hair Angular - Swept Sideways,13 +53982,Minifig Hair Angular Swept Back,13 +53983,"Engine, Very Large Turbine",24 +53983pat0001,"Engine, Very Large Turbine, with Pearl Light Gray Marbled Pattern",35 +53983pat0002,"Engine, Very Large Turbine, with Blue Marbled Center",35 +53984,"Leg Mechanical, Exo-Force Robot",13 +53988,Torso & Head Mechanical [Exo-Force Robot],13 +53988pat01,"Torso/Head Mechanical, Exo-Force Robot with Marbled Pearl White Pattern",13 +53988pat02,"Torso/Head Mechanical, Exo-Force Robot with Marbled Pearl Gold Pattern",13 +53988pat03,"Torso/Head Mechanical, Exo-Force Robot with Marbled Pearl Light Gray Pattern",13 +53989,Arm Mechanical [Thin Support],13 +53990,Minifig Disc 2 x 2 Launcher 2 x 3 x 4 2/3,27 +53992,Technic Tread Large [36 Links],29 +53993,Minifig Disc 2 x 2 [Plain],24 +53993pat0001,Minifig Disc 2 x 2 with Marbled Red / Yellow Pattern,27 +53993pat0003,Minifig Disc 2 x 2 with Marbled Lime / Yellow Pattern,27 +54008pr0001,Duplo Vehicle Helicopter Top 4 x 6 x 3 with Propellor Pin and Face and Windows,4 +54009pr0001,Duplo Vehicle Helicopter Base 6 x 11 x 3 with Skids - Tail with Integrated Narrow Winch Holder - HAROLD Print,4 +54034,TOURNAMENT LANCE,24 +54035,WATER CANON W/CLICK HOLDER Ø 9,24 +54037,CUTLASS,24 +54042,CANNON 6X4,24 +54043,Duplo Cannon Ball 1/2 with Axle Connector,4 +54058,YARD 12X Ø 8,24 +54060,Duplo Boat Anchor,4 +54068,BASKET 3X Ø4,24 +54086,Wheel Cover 5 Spoke without Centre Stud - 35mm D.,29 +54086pr0001,Wheel Cover 5 Spoke for Wheel 20 x 30 with Red Edge Print,29 +54087,Wheel 30.4 x 20 without Pinholes and with Unreinforced Rim,29 +54090,Aircraft Fuselage Curved Forward 8 x 16 Bottom,47 +54091,Slope Curved 8 x 8 x 2 Inverted Double,37 +54092c01,Aircraft Fuselage Curved Forward 8 x 16 x 5 with Trans-Black Glass,47 +54092c01pr0001,Aircraft Fuselage Curved Forward 8 x 16 x 5 with Trans-Black Glass with Blue Airline Bird and Stripes Print,47 +54092c01pr0002,Aircraft Fuselage Curved Forward 8 x 16 x 5 with Trans-Black Glass with Red Airline Bird and Stripes Print,47 +54092c02,Aircraft Fuselage Curved Forward 8 x 16 x 5 with Trans-Light Blue Glass,47 +54093,Wing Plate 20 x 56 with 6 x 10 cutout,49 +54094,Tail 14 x 2 x 8,35 +54094pr01,Tail 14 x 2 x 8 with White Airline Bird Print,35 +54095,Slope Curved 8 x 8 x 2 Double,37 +54096,"Slope, Curved 8 x 8 x 2 Double with Cutout",35 +54097,Door 2 x 4 x 6 Curved Aircraft,16 +54100,"Boat Hull Unitary 51 x 12 x 6, Base",35 +54101,"Boat Hull Unitary 51 x 12 x 6, Top",35 +54120,Tyre 94.8 x 44 R Balloon,29 +54125,Dino Mutant Lizard [Plain],24 +54125pb01,Dino Mutant Lizard with Yellow Specks on Back,28 +54125pb02,Dino Mutant Lizard with Blue Specks on Back,28 +54169,"Large Figure Visor, Kentis",41 +54170,"Large Figure Visor, Karzon",41 +54171,"Large Figure Sword, Jayko, King - Series 3",41 +54173,"Large Figure Visor, Adric",41 +54174,"Large Figure Visor, Dracus",41 +54175,Shoulder Armour - Spiky,41 +54176,"Large Figure Armor, Leg Shin Guard Type 3",41 +54177,Minifig Weapon - Spiked Ball Half with 2 Axle Holes,27 +54178,Large Figure Battle Axe Head,41 +54180pb01,"Large Figure Shield, 2 x 2 Brick Relief, Bull with Red and Metallic Gold Print",41 +54181pb01,"Large Figure Shield, 2 x 2 Brick Relief, Armored Horse (Unicorn) with Dark Green and Light Bluish Gray Print",41 +54182c01pb01,"Large Figure Torso with Kentis, Sir Print (with Dark Green Front and Silver Chain Mail) - Series 3 - Brick 2 x 2 Relief",41 +54182c02pb01,"Large Figure Torso with Adric, Sir Print (Red Front and Silver Chain Mail) - Series 3 - Brick 2 x 2 Relief",41 +54183pb01,"Large Figure Shield, 2 x 2 Brick Relief, Snake with Black and Sand Blue Print",41 +54184pb01,"Large Figure Shield, 2 x 2 Brick Relief, Dragon with Bright Light Orange and Black Print",41 +54187,Dacta Storage Bin Medium [New Style],17 +54189,Dacta Storage Bin Large (new style),17 +54190,Dacta Storage Bin Lid [For New Style Trays],17 +54200,Slope 30° 1 x 1 x 2/3 (Cheese Slope),3 +54200pr0002,"ROOF TILE 1X1X2/3, NO. 2",3 +54246,Duplo Food Steak,4 +54255pb01,Plastic Triangle 6 x 12 Scalloped Wing with Leather and Stick Print [7139],38 +54255pb02,Plastic Triangle 6 x 12 Scalloped Wing with Wyvern Dragon Wing Print,38 +54262,Bionicle Mask Kadin (Rubber),41 +54263,Bionicle Mask Sanok (Rubber),41 +54270,"Bionicle Piraka Spine Flexible with Mask and Arm Covers, Reidak",41 +54271,Bionicle Zamor Sphere Launcher,41 +54272,Bionicle Weapon Lava Chamber Gate Sword,41 +54273,"Bionicle Head, Fenrakk",41 +54274,Minifig Head Modified Bionicle Inika Toa Matoro [Plain],13 +54274pr01,Minifig Head Modified Bionicle Inika Toa Matoro,13 +54275,"Torso Mechanical, Bionicle",13 +54276,"Legs Mechanical, Bionicle",13 +54291,"Large Figure Sword, Vladek, Lord - Series 3",41 +54300cx1,"Duplo Lion Cub, Raised Paw",4 +54358,Dacta Storage Bin Lower Tray [For New Style Storage Bins],17 +54383,Wedge Plate 6 x 3 Right,49 +54384,Wedge Plate 6 x 3 Left,49 +54470,Sticker Sheet for 7296-1 / 7475-1,17 +54471,Sticker for Set 7476 - (54471/4282569),17 +54472,Sticker for Set 7298 - (54472/4282570),17 +54530,Duplo Food Bananas,28 +54572,Dacta Storage Bin Upper Tray [For New Style Storage Bins],17 +54605,Light Brick 2 x 4 [Red LED],45 +54651,Duplo Penguin with Chest and Face Print,4 +54690,"Electric Converter Cable, Mindstorms NXT 35cm",45 +54701c01,Aircraft Fuselage Curved Aft Section with Light Bluish Gray Base,47 +54701c01pb01,"Aircraft Fuselage Curved Aft Section with Light Bluish Gray Base, Dark Bluish Gray & Blue Stripes Print",47 +54701c02,Aircraft Fuselage Curved Aft Section with Dark Bluish Gray Base,47 +54701c03,Aircraft Fuselage Curved Aft Section with White Top,47 +54701c04,Aircraft Fuselage Curved Aft Section with Red Base,47 +54725,~Electric Mindstorms NXT Motor Drive Wheel,45 +54734,Electric 9V Battery Box 4 x 11 x 7 with Red Switch Complete Assembly,45 +54754,Electric Train Motor RC Train,45 +54754c01,Electric Train Motor RC Train [Complete Assembly],45 +54754c01pr01,Electric Train Motor RC Train with Red Bar Print [Complete Assembly],45 +54754pr01,Electric Train Motor RC Train with Red Bar Print,45 +54779,SHIP HULL 12X51X6 ASSEMBLED,35 +54802,Flywheel Inertia Motor 9 x 4 x 3 2/3,44 +54805,DUPLO CONE 2X2X2 DEC,24 +54821,Bionicle Zamor Sphere,41 +54821pat0003,Bionicle Zamor Sphere with Blue Marbled Pattern,41 +54827,Duplo Brick 1 x 2 x 2 with Aquarium and Fish Print (42657),4 +54828,Duplo Brick 1 x 2 x 2 with Gift with Bow Print,4 +54829,"Duplo Brick 1 x 2 x 2 with Cat, Biscuits and Food Bowl Print",4 +54830,"Duplo Brick 1 x 2 x 2 with Cow, Glass and 'MILK' Print",4 +54849,CANNON LAVET,24 +54860,BRICK 2X2 WITH CHAIN,24 +54862,SAIL TATTERED 5X10,24 +54869,Light Brick 2 x 3 x 1.333 - Trans-Red Top - Red LED,45 +54870,Electric Sound Brick 2 x 4 x 2 Clear Top - Revving Motor Sound,45 +54872,Minifig Head SpongeBob [Plain],24 +54872pr0004,Minifig Head Modified SpongeBob SquarePants with Spacesuit Print,13 +54872pr0005,Minifig Head Modified SpongeBob SquarePants with Bandage Print,13 +54872pr0006,Minifig Head Modified SpongeBob SquarePants with Bottom Teeth Print,13 +54872pr0007,Minifig Head Modified SpongeBob SquarePants with Half-Open Eyes Print,13 +54872pr0008,Minifig Head Modified SpongeBob SquarePants with Open Smile Large Print,13 +54872pr0009,Minifig Head Modified SpongeBob SquarePants with Super Hero Print,13 +54872pr0010,Minifig Head Modified SpongeBob SquarePants with Open Smile Large and Blue Lei Print,13 +54872pr0011,Minifig Head Modified SpongeBob SquarePants with Eyepatch Print,13 +54872pr01,Minifig Head SpongeBob with Happy Print,13 +54872pr02,Minifig Head Modified SpongeBob SquarePants with Open Downturned Mouth Print,13 +54872pr03,Minifig Head Modified SpongeBob SquarePants with Tongue Out Print,13 +54873,Minifig Head Modified Patrick [Plain],13 +54873pr0001,Minifig Head Modified Patrick,13 +54873pr0002,Minifig Head Modified Patrick with Spacesuit Print,13 +54873pr0003,Minifig Head Modified Patrick with Tongue Out Print,13 +54873pr0004,Minifig Head Modified Patrick with Bright Green Mask Print,13 +54873pr0005,Minifig Head Modified Patrick with Ice Cream Splotches Print,13 +54873pr0006,Minifig Head Modified Patrick with Eyepatch Print,13 +54873pr0007,Minifig Head Modified Patrick with Sunglasses Print,13 +54874,Minifig Head Modified Mr. Krabs [Plain],24 +54874pr0002,Minifig Head Modified Mr. Krabs with Large Grin,13 +54874pr01,Minifig Head Modified Mr. Krabs,13 +54937,"Large Figure Armor, Leg Shin Guard Type 2",41 +54950c02,Electric 9V Battery Box 4 x 11 x 7 with Orange Switch and Dk Bluish Gray Covers Complete Assembly Power Functions,45 +54972,Duplo Brick 1 x 2 x 2 with Bamboo Print,4 +55000,Sticker Sheet for 3568-1,17 +55007,DRUM HOLDER 2X2,24 +55010,Large Figure Shoulder Armour - Ridged,41 +55013,Technic Axle 8 with Stop,46 +55095pr0001,Bionicle Head Connector Block (Piraka) with Glow In Dark Teeth Print,41 +5510stk01,Sticker for Set 5510 - (197905),17 +55180,Bionicle Mask from Canister Lid (Piraka Thok) - Set 8905,41 +55206,~Electric Sound Brick 2 x 4 x 2 Bottom,45 +55206c02,"Electric, Sound Brick 2 x 4 x 2 with Light Bluish Gray Top and Roaring Animal Sound (Set 4958)",45 +55206c04,Electric Sound Brick 2 x 4 x 2 with Light Bluish Gray Top and Carousel Sound (10196),45 +55206c05,"Electric, Sound Brick 2 x 4 x 2 with Light Bluish Gray Top and Space Sound (Set 7065)",45 +55206c06,Electric Sound Brick 2 x 4 x 2 with Light Bluish Gray Top and Doorbell then Dog Bark Sound [5771],45 +55236,Spiky Vine / Tail [aka Bionicle Spine],28 +55237a,Minifig Bionicle Mini Weapon (Toa Kongu in 8894),27 +55237b,Minifig Bionicle Mini Weapon (Toa Matoro in 8894),27 +55237c,Minifig Bionicle Mini Weapon (Toa Nuparu in 8894),27 +55237d,Minifig Bionicle Mini Weapon (Toa Hahli in 8894),27 +55237e,Bionicle Mini Weapon (Toa Jaller in 8894),27 +55237f,Minifig Bionicle Mini Weapon (Toa Hewkii in 8894),27 +55237g,Minifig Bionicle Mini Weapon (Piraka Zaktan in 8894),27 +55237h,Minifig Bionicle Mini Weapon (Piraka Avak in 8894),27 +55237i,Bionicle Mini Weapon (Piraka Thok in 8894),41 +55237j,Minifig Bionicle Mini Weapon (Piraka Reidak in 8894),27 +55237k,Minifig Bionicle Mini Weapon (Piraka Hakann in 8894),27 +55237l,Minifig Bionicle Mini Weapon (Piraka Vezok in 8894),27 +55238,Bionicle Mask Large Vezok (Piraka Vezok Style),41 +55240,Minifig Head Modified Bionicle Piraka Thok [Plain],24 +55240pr0001,Minifig Head Modified Bionicle Piraka Thok,13 +5529-2,"5529 LEGO Basic Bricks, Limited Edition",24 +55295,Minifig Tool Small Hammer - 6-Rib Handle,27 +55296,Minifig Tool Oil Can - Smooth Handle,27 +55297,Minifig Tool Power Drill,27 +55298,Minifig Tool Screwdriver with Narrow Head and 6-Rib Handle,27 +55299,Minifig Tool Open Ended Wrench - 6-Rib Handle,27 +55300,Minifig Tool Box Wrench - 6-Rib Handle,27 +55303,Bionicle Mask from Canister Lid (Piraka Avak) - Set 8904,41 +55304,Bionicle Mask from Canister Lid (Piraka Zaktan) - Set 8903,41 +55305,Bionicle Mask from Canister Lid (Piraka Vezok) - Set 8902,41 +55306,Bionicle Mask from Canister Lid (Piraka Hakann) - Set 8901,41 +55307,Bionicle Mask from Canister Lid (Piraka Reidak) - Set 8900,41 +55343,"PISTOL 2x4x4,5, DEC.",24 +5540stk01,Sticker for Set 5540 - (197915),17 +5541stk01,Sticker for Set 5541 - (170155),17 +55436,"CRANE LEVER, ASS.",4 +55455c01,"Electric, Train 9V RC Train Base 6 x 30 with IR Receivers and Battery Compartment, Complete Assembly",45 +554stk01,Sticker for Set 554 - (190375),17 +556,Fabuland Shovel,27 +55615,Technic Pin Connector Hub Perpendicular 3 x 3 Bent with 4 Pins,12 +55629,Cloth Sail 26 x 22 Jabba's Sail Barge with Brown Line Print,38 +55704,Minifig Batman Mask,13 +55705,Minifig Mask for Catwoman,27 +55706,Dragon Wing 8 x 10,28 +55706pat0001,"Dragon Wing 8 x 10, Green and Yellow Trailing Edge",28 +55706pat0002,"Dragon Wing 8 x 10, Marbled White Pattern",28 +55706pat0003,"Dragon Wing 8 x 10, Glow In Dark Opaque Trailing Edge",28 +55707a,Minifig Gun Semiautomatic Pistol,27 +55707e,Batman Accessory - Batwing,27 +5573-2,5573 LEGO Build & Play (Red Tub),24 +55767,"Support 31 x 13 Girder, Trapezoid",34 +55768,Train Front 6 x 14 x 7 2/3,36 +55804,"Electric Connector Cable, Mindstorms NXT 20cm",45 +55805,"Electric Connector Cable, Mindstorms NXT 35cm",45 +55806,"Electric Connector Cable, Mindstorms NXT 50cm",45 +5580stk01,Sticker for Set 5580 - (197925),17 +55817,Wheel Wagon Viking with 12 Holes [7 Studs Diameter],29 +5581stk01,Sticker for Set 5581 - (821437),17 +55823c01,Bionicle Weapon Inika Light-up Laser Drill (8729),41 +55824,Bionicle Weapon Inika Light-up Energized Flame Sword (8727),41 +55825,Bionicle Weapon Inika Light-up Laser Harpoon (8728),41 +55827c01,Bionicle Weapon Inika Light-up Laser Axe,41 +55882,BRICK 2X4X2 DEC TOOLS,24 +55886,Duplo Quad Bike Top 4 x 8 x 2 (Scrambler),4 +55886pr0001c01,Scrambler Top 4X8X2 Deco,4 +55886pr0002,Duplo Quad Bike Top 4 x 8 x 2 - Black Handlebars and 'ZOO' and Safari Stripe Print,4 +55886pr0003,Duplo Quad Bike Top 4 x 8 x 2 - Black Handlebars and Yellow Headlights print,4 +5590stk01,Sticker for Set 5590 - (193445),17 +5591stk01,Sticker for Set 5591 - (168335),17 +55963,Electric Sound Sensor - NXT,45 +55969,Electric Light Sensor - NXT,45 +55976,Tyre 56 x 26 Balloon,29 +55978,Tyre 37 x 22 ZR,29 +55981,"Wheel 18 x 14 with Pin Hole, Fake Bolts and Shallow Spokes",29 +55982,"Wheel 18 x 14 with Axle Hole, Fake Bolts and Shallow Spokes",29 +559c01,Winch 4 x 4 x 2 with Sloped Top with Black Drum (Complete),31 +559c02,Winch 4 x 4 x 2 with Sloped Top with Red Drum (Complete),31 +5600cdb01,"Paper, Cardboard RC Racer Ramp for Set 5600",17 +5600cdb02,"Paper, Cardboard RC Racer Bridge Panel for Set 5600",17 +56093,Lemur 'Momo',28 +56142,Sticker Sheet for 10175-1,17 +56143,Sticker Sheet for Set 10174 (56143/4293490),17 +56145,"Wheel 30.4 x 20 without Pinholes, with Reinforced Rim",29 +56153,Bionicle Mask Suletu (Rubber),41 +56154,Bionicle Mask Iden (Rubber),41 +56160,Bionicle Claw with 2 Pin Holes,41 +56217,"Plastic Triangle 6 x 12 Wing with Brown Spars and Orange Cloth Print, Sheet of 2 [3828]",38 +56245,"Cloth Cape, Vezon Large Figure",41 +56403,"DIZZY HEAD, DEC. SKELL",24 +56410,Plastic Flag with Avatar Fire Nation Red Print [3829],38 +564c01,Electric Motor 4 x 12 x 3.333 Type 1 4.5V,45 +56619,Minifig Handcuffs Long [Batman],27 +56630,Minifig Cape - Cloth - 5 Scalloped Points [Starched],27 +56630pat0002,Minifig Cape - Starched Cloth with Dual Metallic Gold and Black Sides Pattern - 5 Point Scalloped Bottom (Batman),27 +56653,Minifig Head Modified Bionicle Piraka Hakann with Eyes and Teeth Print,13 +56654,Minifig Head Modified Bionicle Inika Toa Hahli with Lime Eyes Print,13 +56655,Minifig Head Modified Bionicle Piraka Vezok with Eyes and Teeth Print,13 +56656,Minifig Head Modified Bionicle Inika Toa Nuparu,13 +56657,Minifig Head Modified Bionicle Piraka Zaktan with Eyes and Teeth Print,13 +56659,Minifig Head Modified Bionicle Piraka Avak with Eyes and Teeth Print,13 +56661,Minifig Head Modified Bionicle Piraka Reidak with Eyes and Teeth Print,13 +56710,Sticker Sheet for 7781-1,17 +56711,Sticker Sheet for Set 7782,17 +56763,Sticker Sheet for 8285-1,17 +56823,String Cord Thin [Undetermined Length],31 +56823c100,String Cord Thin 100cm,31 +56823c150,String Cord Thin 150cm,31 +56823c20,String Cord Thin 20cm,31 +56823c200,String Cord Thin 200cm,31 +56823c25,String Cord Thin 25cm,31 +56823c28,String Cord Thin 28cm,31 +56823c30,String Cord Thin 30cm,31 +56823c50,String Cord Thin 50cm,31 +56823c500,String Cord Thin 500cm,31 +56823c75,String Cord Thin 75cm,31 +56890,Tyre 24 x 12 R Balloon,29 +56891,Tyre 37 x 18R,29 +56897,Tyre 30 x 10.5 Offset Tread [Centre Band],29 +56898,Tyre 43.2 x 14 Offset Tread,29 +568c02,Train Wheel Conical with Spokes with Black Tire,24 +569,Technic Gear 9 Large Tooth,52 +56902,Wheel 18 x 8 with Fake Bolts and Shallow Spokes,29 +56903,Wheel 18 x 8 with Fake Bolts and Shallow Spokes and Axle Hole,29 +56904,Wheel 30 x 14,29 +56907,Tyre 81.6 x 36 R,29 +56908,Wheel 43.2 x 26 Technic Racing Small with 6 Pinholes,29 +570,Technic Gear 15 Large Tooth,52 +57028c01,"Technic Competition Arrow, Liftarm Shaft with Hollow Black Rubber End",26 +57028c02,"Technic Competition Arrow, Liftarm Shaft with Hollow Light Bluish Gray Rubber End",26 +57028c03,LEGO Arrow with Soft Lime Rubber End (57028),26 +57028c04,"Technic Competition Arrow, Liftarm Shaft with Hollow Yellow Rubber End",26 +57029c01,"Technic Competition Cannon, Flat Bottom",24 +57051,"Train Wheel RC Train, Metal Axle 5 x 100 LDU",36 +57052,Duplo Car Base 2 x 6 with Four Black Wheels and Flat Silver Hubs,4 +57099,Minifig Soccer Goalie Mitt,27 +572,Technic Gear 21 Large Tooth,52 +57467,Minifig Harpoon [4 Grooves on Shaft],27 +57482,Electric Cable USB for Mindstorms NXT [2 m],45 +57503,Minifig Coin with "10" Sans-serif Type,27 +57504,Minifig Coin with "20" Sans-serif Type,27 +57505,Minifig Coin with "30" Sans-serif Type,27 +57506,Minifig Coin with "40" Sans-serif Type,27 +57515,"Technic, Steering Arm 5.5 x 2 with Towball Socket Rounded, Chamfered",25 +57518,Technic Link Tread Wide with Two Pin Holes,26 +57519,Technic Tread Sprocket Wheel Large,29 +57520,Technic Tread Sprocket Wheel Small,29 +57523c01,Bionicle Weapon Cordak Blaster,41 +57525,Bionicle Cordak Ammo,41 +57526,"Bionicle Thigh and Shoulder Armor, Right (Toa Mahri Nuparu)",41 +57527,Bionicle Weapon Aqua Warblade (Hewkii Mahri),41 +57528,Bionicle Weapon Claw Blade Small,41 +57529,Bionicle Weapon Double Blade / Shield Half (Toa Mahri Nuparu),41 +57530,Bionicle Mask Faxon,41 +57531,Bionicle Mask Arthron [Plain],24 +57531pat0001,Bionicle Mask Arthron with Orange Face,41 +57532,Bionicle Mask Garai [Plain],24 +57532pat0001,Bionicle Mask Garai with Black Face,41 +57533,Bionicle Mask Volitak,41 +57534,Bionicle Mask Zatth,41 +57535,Bionicle Mask Tryna,41 +57536,Bionicle Head Connector Block Eye/Brain Stalk - Short,41 +57539,Flexible Ribbed Hose 8mm ends 19L,30 +57539pat0001,"Hose Flexible Ribbed with 8mm ends, 19L with Dark Green Centre Pattern",30 +57539pat0002,"Hose Flexible Ribbed with 8mm ends, 19L with Lime Green Centre Pattern",30 +57539pat0004,"Hose Flexible Ribbed with 8mm ends, 19L with Blue Centre Pattern",30 +57540,Bionicle Wing / Fin (Hahli Mahri),41 +57541,"Bionicle Thigh and Shoulder Armor, Left (Toa Mahri Nuparu)",41 +57543,Bionicle Weapon Small Blade (Hewkii Mahri / Solek),41 +57544,"Bionicle Shoulder Armor, Matoro Mahri",41 +57545,Bionicle Weapon Protosteel Talon (Hahli Mahri),41 +57546,"Bionicle Chest Armour, Jaller Mahri",41 +57547,Bionicle Mahri Kongu Torso,41 +57548,"Bionicle Head, Barraki Carapar [Plain]",24 +57548pat0001,"Bionicle Head, Barraki Carapar, Marbled Black Pattern",41 +57548pat0002,"Bionicle Head, Barraki Carapar, Marbled Glow In Dark Pattern",41 +57549,"Bionicle Head, Barraki Kalmah [Plain]",24 +57549pat0001,"Bionicle Head, Barraki Kalmah with Marbled Black Pattern",41 +57550,Bionicle Head - Barraki Mantax [Plain],24 +57550pat0001,"Bionicle Head - Barraki Mantax, Marbled Pearl Light Gray Pattern",41 +57551,"Bionicle Head, Barraki Takadox",41 +57551pat0001,"Bionicle Head, Barraki Takadox, Marbled Glow in Dark Pattern",41 +57552,"Bionicle Head, Barraki Pridak [Plain]",24 +57552pat0001,"Bionicle Head, Barraki Pridak with Marbled Red Pattern",41 +57553,"Bionicle Head, Barraki Ehlek [Plain]",24 +57553pat0001,"Bionicle Head, Barraki Ehlek with Marbled Lime Pattern",41 +57554,Bionicle Barraki Mandible,41 +57555,"Bionicle Squid, Rubber",41 +57556,Bionicle Squid Ammo Launcher,41 +57557,Bionicle Barraki Carapar Thigh and Shoulder Cover,41 +57557pat0001,Bionicle Barraki Carapar Thigh and Shoulder Cover with Marbled Trans-Black Pattern,41 +57559pat0002,"Bionicle Barraki Carapar Chest Cover, Marbled Trans-Black Pattern",41 +57560,Bionicle Hydruka Back Plate (Morak),41 +57560pat0001,"Bionicle Hydruka Back Plate (Morak), Marbled Glow In Dark Pattern",41 +57561,Bionicle Foot Barraki Pridak,41 +57562,Bionicle Barraki Spine Flexible,41 +57562pat0001,Bionicle Barraki Spine Flexible with Marbled Yellow Pattern,41 +57562pat0002,Bionicle Barraki Spine with Marbled Glow In Dark Pattern,41 +57563,Bionicle Weapon Mahri Matoran Blade,41 +57564,Bionicle Weapon Barraki Kalmah Tentacle [Rubber],41 +57565,Bionicle Weapon Barraki Mantax Pincer,41 +57566,Bionicle Weapon Sword with Teeth (Barraki Takadox),41 +57566pat0001,"Bionicle Weapon Sword with Teeth, Marbled Black Pattern",41 +57567,Bionicle Weapon Shark Tooth Blade,41 +57567pat0001,Bionicle Weapon Shark Tooth Blade with Marbled Red Tips Pattern,41 +57568,Bionicle Weapon Barraki Protosteel Tri-Talon,41 +57569,Bionicle Foot Barraki Mantax,41 +57570,Bionicle Weapon Barraki Carapar Claw Half,41 +57571,Technic Bionicle Barraki Head Spinax,41 +57572,Bionicle Weapon Power Sword (Jaller Mahri),41 +57574,"Bionicle Head, Gadunka [Plain]",24 +57574pat0001,"Bionicle Head, Gadunka with Marbled Glow In Dark Pattern",41 +57575,Bionicle Mask Hydraxon,41 +57577,"Bionicle Head, Spinax",41 +57585,Technic Axle Connector Hub with 3 Axles at 120°,12 +57587,Brick Round 7 x 7 x 4 Dome Top,20 +57588,"Arm Mechanical, Bionicle",41 +57701,Bionicle Mask Maxilos,41 +57702,"Bionicle Mask - Inner Glass (for Faxon, Tryna, Volitak)",41 +57779,"Crane Arm Outside, New Wide with Pin Hole at Mid-Point",34 +57781,Vehicle Tipper Bed 24 x 7,36 +57783,Windscreen 3 x 4 x 1 1/3 Large Glass Surface,47 +57789c01,Boat Hull Unitary 74 x 18 x 7 Complete Assembly with Light Bluish Gray Top,35 +57792,Vehicle Tipper Drum 3 x 6 x 10 Cement Mixer Half with 4 Technic Pin Holes,36 +57796,Technic Competition Cannon Flat Bottom [Complete Assembly],26 +577c01,"Minifig Lightsaber Blade Single with Chrome Silver Hilt Straight, Complete Assembly",27 +57858,Sticker sheet for set 8143-1 57858 / 4496160,17 +57878,Train Wheel RC Train,29 +57887,TIARA,27 +57888,Duplo Support Column 2 x 2 x 6 Round with Open Latticed Back,34 +57892,HORSE 2X8X5 NO. 5,28 +57893,"Support 2 x 2 x 10 Girder Triangular Vertical - Type 2 - Open Side Top, 1 Post & 1 Panel",34 +57894,Window 1 x 4 x 6 Frame with 3 Panes,16 +57895,Glass for Window 1 x 4 x 6,16 +57895pr0001,Glass for Window 1 x 4 x 6 with Asian Characters on White Background Print,16 +57895pr0002,Glass for Window 1 x 4 x 6 with Dragon Tail Print,16 +57895pr0003,Glass for Window 1 x 4 x 6 with Dragon Head Print,16 +57895pr0004,Glass for Window 1 x 4 x 6 with Dragon Print,16 +57895pr0005,Glass for Window 1 x 4 x 6 with Dragon Head and Midsection Print,16 +57895pr0006,Glass for Window 1 x 4 x 6 with 'THE HIGHLANDER' and White Decorative Border Print,16 +57895pr0007,Glass for Window 1 x 4 x 6 with Asian Style Black Border and Gold Mountain with Trees Print,16 +57895pr0008,Glass for Window 1 x 4 x 6 with 'POLICE PUBLIC CALL BOX' Mirror Image Tardis Door print,16 +57895pr0009,LEGO Glass for Window 1 x 4 x 6 with Decoration (29184),16 +57895pr0011,"Glass for Window 1 x 4 x 6 with 'OPEN', 'Soap 'n' Suds' and 'Wash - Dry - Fold 24 Hour Service' print",16 +57895pr0012,Glass for Window 1 x 4 x 6 with Ornate Silver Frame and Dark Green and Sand Green Oval Stained Glass print,16 +57899,Minifig Star Wars Blaster Long,27 +57900,Minifig Helmet SW Imperial AT-ST Pilot,27 +57900pr0001,Minifig Helmet SW Imperial Pilot with Imperial Logo and Three Red Triangles Print (AT-DP Pilot),27 +57900pr0002,TROOPER/ATST HELMET DECO. NO. 2,27 +57900pr0003,Headgear Helmet SW Imperial Pilot with Black Goggles Pattern (AT-ST Driver),27 +57901,Minifig Head Nautolan,27 +57901pr0001,"Minifig Head Nautolan, Black Eyes & Mouth, Brown Tentacle Bands",13 +57906,Hinge Plate 1 x 12 with Angled Side Extensions and Tapered Ends,18 +57908,Technic Brick Special 2 x 2 with 10.2mm Balls [Center Mold Indention],26 +57909a,Technic Brick Modified 2 x 2 with Solid Ball and Axle Hole,26 +57909b,"Technic Brick Modified 2 x 2 with Ball and Axle Hole, with 6 Holes in Ball",26 +57910,Technic Brick Special 2 x 2 with Ball Receptacle and Axle Hole,26 +57910u,Technic Brick Special 2 x 2 with Ball Receptacle [undetermined width] and Axle Hole,26 +57912c01,Technic Blade with Trans Clear Center [Sky Guardian],41 +57915,"Boat Hovercraft Skirt, Unitary",35 +57999,Train Wheel Spoked with Technic Axle Hole and Rubber Friction Band,29 +58057,Duplo Dog - No Back Stud,4 +58057pr01,Duplo Dog Large Paws with Brown Ears and Tail and Spots,4 +58057pr02,Duplo Dog Large Paws with Open Mouth and Spots between Eyes Print,4 +58057pr03,Duplo Dog Large Paws with Black Ears and Tail and Spots,4 +58080,CONVEYOR 4X12X2.5,4 +58086,Duplo Utensil Pitchfork,4 +58088,Wheel Cover 7 Spoke with Axle Hole - 56mm D. [Fits 44772],29 +58089,Wheel Cover 7 Spoke V Shape - 36mm D.,29 +58090,Tyre 30.4 x 14 VR Solid,29 +58118,Electric Power Functions Extension Wire with one Light Bluish Gray End [50cm],45 +58119,Electric Power Functions Battery Box 4 x 11 x 7 with Orange Switch and Dark Bluish Gray Covers,45 +58120,Electric Power Functions Medium Motor 3 x 6 x 3 with Dark Bluish Gray Bottom and 20cm Wire,45 +58120c01,"Electric, Motor 9V Power Functions Small with Dk Bluish Gray Bottom",45 +58121,Electric Power Functions XL Motor 6 x 6 x 6 with Dark Bluish Gray Bottom and 20cm Wire,45 +58122,Electric Power Functions IR Remote Control with Dark Bluish Gray Bottom,45 +58123,Electric Power Functions IR Receiver [Undetermined Version],24 +58123a,Electric Power Functions IR Receiver,45 +58123b,Electric Power Functions IR Receiver with V2 Print,45 +58124,Electric Power Functions Connector Top (Needs Work),45 +58124c01,Electric Power Functions Connector With PF Bottom,45 +58124c02,Electric Power Functions Connector with 9V Bottom,45 +58124s03,Electric Power Functions Connector (unknown type),45 +58135,Electric Power Functions IR Remote Control Battery Lid (part of 58122),45 +58136,Electric Power Functions IR Remote Control Direction Switch (part of 58122),45 +58150,Electric Power Functions Infra-Red Receiver Switch (part of 58123),45 +58174,Sticker Sheet for 10176,17 +58176,Light Cover with Internal Bar / Bionicle Barraki Eye,41 +58177,Technic Connector Block 3 x 3 Triangular with Axle,12 +58181,Slope 33° 3 x 6 No Inner Walls,3 +58230,Bionicle Foot Barraki Kalmah,41 +58233,Duplo Van Type 2 with Green Base and Vegetables Print,4 +58247,Minifig Star Wars Blaster Short,27 +58321,"Belville Horse Blanket, Non-Opening, with White Glitter Stars Print",42 +58367,Minifig Hose Nozzle with Side String Hole,27 +58380,Door 1 x 3 x 4 Right - Open Between Top and Bottom Hinge,16 +58381,Door 1 x 3 x 4 Left - Open Between Top and Bottom Hinge,16 +58392,Sticker for Set 8102 - (58392/4499564),17 +584,Technic Bush with One Flange,54 +5848stk01,Sticker for Set 5848 - (71939/4111850),17 +58497,Duplo Hose 11L Pearl Light Gray End,30 +58498,Duplo Fire Hose with Pearl Light Gray Nozzle 11L,4 +58498c01,Duplo Hose with Rubber End and Lt Bluish Gray Nozzle,4 +585,Technic Bush Old Type 2,54 +5859foam,"Foam for Set 5859, Belville, Sheet",42 +58624,Tile 1 x 2 Engraved Code for 8100-1,10 +586c01,Winch 4 x 4 x 2 with Red Drum (Complete),31 +586c01a,String Reel Winch 4 x 4 x 2 with Metal Handle (Black Drum),31 +5874foam,"Foam, Belville, Nursery Changing Table Pad",42 +58765,Tile 1 x 2 Engraved Code for 8103-1,10 +58776,Tile 1 x 2 Engraved Code for 8105-1,10 +58816,Tile 1 x 2 Engraved Code for 8102-1,10 +58827,"Support 2 x 2 x 10 Girder Triangular Vertical - Type 3 - Axle Hole, 3 Posts",34 +58842,Minifig Foam Dart with Black Tip,27 +58843,Minifig Martian Hypersled with Pin (Mars Mission),27 +58844,Torso/Head Martian with Chest Hole [Plain],24 +58844pat0001,"Torso/Head Martian with Chest Hole, Marbled Glow In Dark Pattern",13 +58845,Legs Martian Rounded,13 +58846,"Brick, Round Corner 10 x 10 with Slope 33° Edge, Axle Hole, Facet Cutout",20 +5884stk01,Sticker for Set 5884 - (74415/4656728),17 +58856,OUTER CABLE 24MM,24 +5886stk01,Sticker for Set 5886 - (74417/4656730),17 +58947,"Cylinder 9 x 4 x 2 Tapered with Flat Bottom, Pin Holes",20 +59,Minifig Sword [Greatsword Round],27 +590,"Electric, Train Motor 9V Modern",45 +590stk01,Sticker for Set 590 - US Flag version (4659),17 +59142,Electric Power Functions Medium Motor Back (part of 58120),45 +59143,Electric Power Functions Medium Motor Front (part of 58120),45 +59146,Electric Power Functions Medium Motor Back (part of 58120),45 +59154,Electric Power Functions XL Motor Back (part of 58121),45 +59155,Electric Power Functions XL Motor Front (part of 58121),45 +59158,Electric Power Functions XL Motor Front (LDD) (part of 58121),45 +59165,Switch for 58119 Battery Box (LDD),24 +59181,WAGGON BOTTOM 6X8X2 W. 4WH.,24 +59187,SHOVEL 5X4X5,24 +59217,Dragon Arm - Left [Plain],24 +59217pat01,Dragon Arm with Black Claws - Left,28 +59217pat02,Dragon Arm with Dark Red Claws - Left,28 +59218,Dragon Arm - Right [Plain],24 +59218pat01,Dragon Arm with Black Claws - Right,28 +59218pat02,Dragon Arm with Dark Red Claws - Right,28 +59224,Dragon Torso,28 +59224pat0001,Dragon Torso (Fantasy Era) with Black Dorsal Scales Pattern,28 +59224pat0002,Dragon Torso (Fantasy Era) with Dark Red Dorsal Scales Pattern,28 +59224pat0003,Dragon Torso (Fantasy Era) with Metallic Silver Dorsal Scales Pattern,28 +59224pat0004,Dragon Torso (Castle) with Black Dorsal Scales Pattern,28 +59225c01,Serpent Neck S-Curve with Moveable Ball Joint Pin,28 +59225c02,Serpent Neck S-Curve with Black Moveable Ball Joint Pin,28 +59226,Dragon Head (Fantasy Era) Upper Jaw [Plain],24 +59226pr01,Dragon Head (Fantasy Era) Upper Jaw with Black Scales and Yellow Eyes Print,28 +59226pr02,Dragon Head Upper Jaw with Dark Red Scales and Yellow Eyes Print,28 +59226pr03,Dragon Head (Castle) Upper Jaw with Large Black Scales and Yellow Eyes Print,28 +59227,Dragon Head (Fantasy Era / Castle) Lower Jaw [Plain],24 +59227pr01,Dragon Head Lower Jaw with White Teeth Print [Dark Red],28 +59227pr02,Dragon Head Lower Jaw with White Teeth Print [Black],28 +59227pr03,Dragon Head Lower Jaw with White Teeth Print [Dark Green],28 +59228,Skeletal Horse,28 +59229,Minifig Sword [Scythe Blade with Clip Pommel],27 +59230,Arm - Mechanical Straight [2 Clips at 90°],13 +59231,Minifig Shield Round Flat,27 +59231pr0001,Minifig Shield - Round Flat with Silver Skull on Dark Red Print,27 +59231pr0002,Minifig Shield - Round with Helmet on Dark / Medium Blue Quarters Print,27 +59231pr0003,"Minifig Shield Round Flat with Circle, Triangle and Trident on Gold Background Print",27 +59231pr0004,Minifig Shield Round Flat with Gold Dragon Head with Jagged Teeth Print,27 +59232,Minifig Spiked Flail,27 +59233,Minifig Lightning,27 +59233pat0001,Wave Angular with Marbled Trans-Purple Pattern,27 +59233pat0002,Wave Angular with Marbled Trans-Green Pattern,27 +59233pat0003,Wave Angular with Marbled Dark-Purple Pattern,27 +59275,Minifig Flipper [Thin],27 +59279,Tile 1 x 2 Engraved Code for 7714-1,10 +59349,Panel 1 x 6 x 5,23 +59349pr0001,Panel 1 x 6 x 5 with Light Bluish Gray Ironwork Print,23 +59351,DRIVER`S CAB 6X5X4 ASS.,24 +59362,Minifig Hair Short with Curled Ends,27 +59363,Minifig Hair Female Mid-Length with Braid around Sides,13 +59365,Electric Power Functions IR Remote Control Channel Selector (part of 58122),45 +5938stk01,Sticker for Set 5938 - (71635/4114040),17 +59426,Technic Axle 5.5 With Stop [Rounded Short End],46 +59443,Technic Axle Connector Smooth [with x Hole + Orientation],12 +5948stk01,Sticker for Set 5948 - (71634/4114141),17 +59490,Bionicle Barraki Carapar Chest Cover [Plain],24 +59490pat0001,"Bionicle Barraki Carapace Chest Cover, Marbled Pearl Light Gray Pattern",41 +59490pat0002,"Bionicle Barraki Carapace Chest Cover, Marbled Dark Green Pattern",41 +59490pat0004,"Bionicle Barraki Carapace Chest Cover, Marbled Bright Light Orange Pattern",41 +59492,Minifig Foam Dart Launcher - Four Barrel,27 +59510c01pb01,Electric Power Functions 9V Battery Box,45 +59521,Wheel Hard Plastic Spoked Giant Thin 160 x 28,29 +59559,Duplo Container Tank Lower Section with Outlet for Hose,4 +5956stk01,Sticker for Set 5956 - Sheet 1 (72573/4116669),17 +5956stk02,Sticker for Set 5956 - Sheet 2 (72574/4116668),17 +59577,Bionicle Hydruka Back Plate,41 +59577pat0001,Bionicle Hydruka Back Plate with Marbled Black Pattern,41 +5960stk01,"Sticker for Set 5960 - Sheet 1, Small Foil (51648/4248077)",17 +5960stk02,"Sticker for Set 5960 - Sheet 2, Large (51650/4248079)",17 +59625,Sticker Sheet for 7697-1,17 +5962stk01,Sticker for Set 5962 - (72605/4119382),17 +59718,Sticker Sheet for Set 7991,17 +5972stk01,Sticker for Set 5972 - (86696/4551210),17 +5974stk01,Sticker for Set 5974 - (86487/4550641),17 +59807,Crane Harbor Derrick 16 with Double Attachment,34 +5980stk01,Sticker for Set 5980 - (86478/4550640),17 +59812,Tile 1 x 2 Engraved Code for 8106-1,10 +59814,Windscreen 15 x 8 x 9 Curved Cockpit Cover with Side Cutouts,47 +5981stk01,Sticker for Set 5981 - (88963/4570157),17 +5982stk01,Sticker for Set 5982 - (88781/4569575),17 +59895,Tyre 14 x 4 Smooth Small Single [New Style],29 +59900,Cone 1 x 1 [Top Groove],20 +59901,"Cloth Sail 30 x 20 with Red Jagged Lines and Skull Print, Tatters and Holes",38 +600,Door 1 x 6 x 6 Freestyle,16 +60000stk01,Sticker for Set 60000 - (12539/6018717),17 +60005stk01,Sticker for Set 60005 - (12749/6021250),17 +60007stk01,Sticker for Set 60007 - (12751/6021254),17 +60014stk01,Sticker for Set 60014 - (13613/6030892),17 +60018stk01,Sticker for Set 60018 - (12545/6018742),17 +6002,Panel 6 x 6 x 9 Corner Convex with Curved Top,23 +60021stk01,Sticker for Set 60021,17 +60023stk01,Sticker for Set 60023 - Sheet 1,17 +60023stk02,Sticker for Set 60023 - Sheet 2,17 +60027stk01,Sticker for Set 60027,17 +6003,Plate Round Corner 6 x 6,21 +60031stk01,Sticker for set 60031,17 +60032,"Window 1 x 2 x 2 Plane, Single Hole Top and Bottom for Glass",16 +6003555,Star Wars 2012 Advent Calendar Poster,17 +6004466,"Super Heroes Comic Book, DC Universe, Issue 3",17 +6005,Brick Arch 1 x 3 x 2 Curved Top,37 +60051stk01,Sticker Sheet for Set 60051 - (15113 / 6045711),17 +60052stk01,Sticker for Set 60052 - (15114 / 6045714),17 +60069stk01,Sticker for Set 60069-1,17 +6007,Brick Separator v1.0,56 +60079stk01,Sticker Sheet for Set 60079 - 20810/619074 or 20811/6109076,17 +60081stk01,Sticker Sheet for Set 60081 - 19446/6099715 or 19447/6099716,17 +601,Window 1 x 3 x 4 Pane for Window 2 x 6 x 6 Freestyle,16 +60100stk01,Sticker Sheet for Set 60100 - 24545/6133211 or 24550/6133217,17 +60102stk01,Sticker Sheet For Set 60102-1 24552 / 6133219 Or 24547 / 6133213,17 +6010859,Ninjago Masters of Spinjitzu Deck #2 Game Card 22 - Rattla - North American Version (3D Lenticular Card),17 +60113stk01,Sticker Sheet for Set 60113 - 24495/6133100 or 24488/6133088,17 +60115,Torso - Skeleton Thick Shoulder Pins,13 +6011773,"Super Heroes Comic Book, Issue 2",17 +60117stk01,Sticker Sheet for 60117-1 (24500 / 6133104),17 +60119stk01,Sticker Sheet for Set 60119-1 (24502 / 6133095),17 +60125,Electric Sound Brick 2 x 4 x 2 Light Bluish Gray Top - Dinosaur Roar Sound,45 +60128,"Train, Track Plastic (RC Trains) Double Crossover Rail - Half",36 +60128stk01,Sticker Sheet for Set 60128 - 24523/6133160 or 24521/6133146,17 +60129stk01,Sticker Sheet for Set 60129 - 24528/133165,17 +60130stk01,Sticker Sheet for Set 60130 - 24542/6133174,17 +60131stk01,Sticker for Set 60131 - (24555/6133223),17 +6013273,"Super Heroes Comic Book, Marvel, Issue 1",17 +6013294,"Super Heroes Comic Book, Marvel, Issue 5",17 +6014,Wheel 11 x 12 [Undetermined Hole Type],29 +6014a,Wheel 11 x 12 with Hole Round for Wheels Holder Pin,29 +6014b,Wheel 11 x 12 with Hole Notched for Wheels Holder Pin,29 +6015,Tyre 21 x 12 with Offset Tread Small Wide,29 +60151stk01,Sticker Sheet for Set 60151-1 30721 / 6177282,17 +6016,Bar 1 x 4 x 3 Window [Side Tabs],32 +60169,Minifig Chain 16L,31 +60176,"Technic Axle Connector 2 x 3 with Ball Socket, Closed Sides, Squared Ends",12 +6019,Plate Special 1 x 1 with Clip Horizontal [Thick U Clip],9 +601948,Mini Turntable Assembly,18 +6020,Bar 7 x 3 with Double Clips (Ladder),32 +60208,Wheel 31 x 15 Technic,29 +6020982,Legends of Chima Deck #1 Game Card #1 [Laval],17 +6020983,Legends of Chima Deck #1 Game Card #7 [Defendor XII],17 +6020984,Legends of Chima Deck #1 Game Card #13 [Valious],17 +6020985,Legends of Chima Deck #1 Game Card #19 [Jahak],17 +6020986,Legends of Chima Deck #1 Game Card #25 [Tratratrax],17 +6021,Boat - Canoe,35 +60212,"Vehicle, Mudguard 2 x 4 with Arch Studded with Hole",36 +6021359,Legends of Chima Deck #1 Game Card #2 - [Lagravis],17 +6021367,Legends of Chima Deck #1 Game Card #8 - [Honorous],17 +6021369,Legends of Chima Deck #1 Game Card #14 - [Kuttor],17 +6021371,Legends of Chima Deck #1 Game Card #20 - [Defendor II],17 +6021373,Legends of Chima Deck #1 Game Card #26 [Fangjabber],17 +6021374,Legends of Chima Deck #1 Game Card #3 [Lennox],17 +6021375,Legends of Chima Deck #1 Game Card #9 [Defendor VI],17 +6021376,Legends of Chima Deck #1 Game Card #15 [Fangius],17 +6021377,Legends of Chima Deck #1 Game Card #21 [Stafa],17 +6021378,Legends of Chima Deck #1 Game Card #27 [Seraat],17 +6021379,Legends of Chima Deck #1 Game Card #4 [Leonidas],17 +6021380,Legends of Chima Deck #1 Game Card #10 [Defendor IV],17 +6021381,Legends of Chima Deck #1 Game Card #16 [Chi Jabaka],17 +6021382,Legends of Chima Deck #1 Game Card #22 [Katar],17 +6021383,Legends of Chima Deck #1 Game Card #28 [Hypazoom],17 +6021384,Legends of Chima Deck #1 Game Card #5 [Longtooth],17 +6021385,Legends of Chima Deck #1 Game Card #11 [Defendor IIX],17 +6021386,Legends of Chima Deck #1 Game Card #17 [Clubius Maximus],17 +6021387,Legends of Chima Deck #1 Game Card #23 [Jabaka],17 +6021388,Legends of Chima Deck #1 Game Card #29 [Ripzar],17 +6021390,Legends of Chima Deck #1 Game Card #6 [Lennox ],17 +6021391,Legends of Chima Deck #1 Game Card #12 [Defendor VI ],17 +6021392,Legends of Chima Deck #1 Game Card #18 [Decalius],17 +6021393,Legends of Chima Deck #1 Game Card #24 [Jabaka],17 +6021394,Legends of Chima Deck #1 Game Card #30 [Rototo],17 +6021395,Legends of Chima Deck #1 Game Card #31 - [Rawzom],17 +6021396,Legends of Chima Deck #1 Game Card #34 - [Thugk],17 +6021397,Legends of Chima Deck #1 Game Card #37 - [Blazoom],17 +6021398,Legends of Chima Deck #1 Game Card #40 - [Kleptor S2],17 +6021399,Legends of Chima Deck #1 Game Card #43 - [Jagonk],17 +6021400,Legends of Chima Deck #1 Game Card #72 [Worriz],17 +6021401,Legends of Chima Deck #1 Game Card #75 [Huntor],17 +6021402,Legends of Chima Deck #1 Game Card #78 [Maulus],17 +6021403,Legends of Chima Deck #1 Game Card #81 [Stakuku],17 +6021404,Legends of Chima Deck #1 Game Card #84 [Nitronox],17 +6021405,Legends of Chima Deck #1 Game Card #32 [Equila],17 +6021406,Legends of Chima Deck #1 Game Card #35 [Shreekor 360],17 +6021407,Legends of Chima Deck #1 Game Card #38 [Axcalion],17 +6021408,Legends of Chima Deck #1 Game Card #41 [Jaba],17 +6021409,Legends of Chima Deck #1 Game Card #44 [Gyroropt],17 +6021410,Legends of Chima Deck #1 Game Card #33 [Eglor],17 +6021411,Legends of Chima Deck #1 Game Card #36 [Shreekor 390],17 +6021412,Legends of Chima Deck #1 Game Card #39 [Lightnix],17 +6021413,Legends of Chima Deck #1 Game Card #42 [Jabahak],17 +6021414,Legends of Chima Deck #1 Game Card #45 [Aerozor],17 +6021415,Legends of Chima Deck #1 Game Card #46 - [Gorzan],17 +6021416,Legends of Chima Deck #1 Game Card #48 - [Chi Dentmakor],17 +6021417,Legends of Chima Deck #1 Game Card #50 - [Bananaboost],17 +6021418,Legends of Chima Deck #1 Game Card #52 - [Treehugger III],17 +6021419,Legends of Chima Deck #1 Game Card #54 - [Dentmakor],17 +6021425,Legends of Chima Deck #1 Game Card #56 [Cragger],17 +6021426,Legends of Chima Deck #1 Game Card #59 [Chompor V18],17 +6021427,Legends of Chima Deck #1 Game Card #62 [Vengious],17 +6021428,Legends of Chima Deck #1 Game Card #65 [Gronk],17 +6021429,Legends of Chima Deck #1 Game Card #68 [Grapt],17 +6021430,Legends of Chima Deck #1 Game Card #57 [Crominus],17 +6021431,Legends of Chima Deck #1 Game Card #60 [Chompor V12],17 +6021432,Legends of Chima Deck #1 Game Card #63 [Grandiorus],17 +6021433,Legends of Chima Deck #1 Game Card #66 [Krank],17 +6021434,Legends of Chima Deck #1 Game Card #69 [Shredant],17 +6021440,Legends of Chima Deck #1 Game Card #71 [Wakz],17 +6021441,Legends of Chima Deck #1 Game Card #74 [Huntor W3],17 +6021442,Legends of Chima Deck #1 Game Card #77 [Maurak],17 +6021443,Legends of Chima Deck #1 Game Card #80 [Stafik],17 +6021444,Legends of Chima Deck #1 Game Card #83 [Tailkut],17 +6021445,Legends of Chima Deck #1 Game Card #97 - [Skinnet],17 +6021446,Legends of Chima Deck #1 Game Card #99 - [Stynkjahak],17 +6021447,Legends of Chima Deck #1 Game Card #101 - [Toxismell],17 +6021448,Legends of Chima Deck #1 Game Card #103 - [Gashuntor W4],17 +6021449,Legends of Chima Deck #1 Game Card #105 - [Whyp],17 +6021450,Legends of Chima Deck #1 Game Card #73 [Winzar],17 +6021451,Legends of Chima Deck #1 Game Card #76 [Huntor W4],17 +6021452,Legends of Chima Deck #1 Game Card #79 [Chi Jahak],17 +6021453,Legends of Chima Deck #1 Game Card #82 [Flamious],17 +6021454,Legends of Chima Deck #1 Game Card #85 [Dikut],17 +6021455,Legends of Chima Deck #1 Game Card #86 [Razar],17 +6021456,Legends of Chima Deck #1 Game Card #88 [Kleptor S1],17 +6021457,Legends of Chima Deck #1 Game Card #90 [Thundax],17 +6021458,Legends of Chima Deck #1 Game Card #92 [Slizar],17 +6021459,Legends of Chima Deck #1 Game Card #94 [Blazet],17 +6021460,Legends of Chima Deck #1 Game Card #87 - [Eris],17 +6021461,Legends of Chima Deck #1 Game Card #89 - [Axcalibur],17 +6021462,Legends of Chima Deck #1 Game Card #91 - [Badaboost],17 +6021463,Legends of Chima Deck #1 Game Card #93 - [Shreekor 375],17 +6021464,Legends of Chima Deck #1 Game Card #95 - [Stabiku],17 +60219,Slope Inverted 45° 6 x 4 Double with 4 x 4 Cutout and 3 Holes,3 +6023,Minifig Jet Pack with Twin Handles,27 +6024,"Baseplate, Raised 32 x 32 Canyon",1 +6024px1,Baseplate Raised 32 x 32 Canyon with Blue Underwater Print [6195],1 +6024px2,Baseplate Raised 32 x 32 Canyon with Blue and Yellow Stream Print,1 +6024px3,Baseplate Raised 32 x 32 Canyon with Gray Underwater Print [6199],1 +6024px4,"Baseplate, Raised 32 x 32 Canyon with Brown Dirt and Gray Rocks Print",1 +6024px5,"Baseplate, Raised 32 x 32 Canyon with Brown/Green Mountain and River Rapids Print",1 +6025,Minifig Hair - Islander,13 +6026,Alligator / Crocodile Body,28 +6027,Alligator / Crocodile / Dragon Upper Jaw; Dinosaur Tongue,28 +6028,Alligator / Crocodile / Dragon / Dinosaur Tail,28 +60288,Technic Dome 7 x 7 x 5,24 +602stk01,Sticker for Set 602-1 - (4315),17 +6030,Minifig Mask - Islander,27 +6032,Brick Special Octagonal 2 x 3 x 1 2/3 Sloped,5 +60339,Body Pufferfish (SpongeBob) [Plain],24 +60339pr0001,Body Pufferfish with Mrs. Puff Print (SpongeBob),13 +60339pr0002,Body Pufferfish with Mrs. Puff with Pink Flower Print (SpongeBob),13 +6033stk01,Sticker for Set 6033 - (71638/4114222),17 +60340,Legs Mrs. Puff (SpongeBob),13 +6035,Electric Light Brick 1 x 2 with Single Side Light,45 +60364pr0001,"Duplo Monkey with Curly Tail, Bright Light Orange Face Print",4 +60364pr0002,Duplo Monkey with Curly Tail - Dark Bluish Gray Face Print,4 +6037,Brick Special Octagonal 2 x 2 x 3 1/3,5 +6037281,"Super Heroes Comic Book, DC Universe",17 +6037284,"Super Heroes Comic Book, Marvel",17 +6037288,"Super Heroes Comic Book, Marvel",17 +6037292,"Super Heroes Comic Book, DC Universe",17 +6039,"Cone 2 x 2 x 1 2/3 Octagonal, Open Stud",20 +604,Window 1 x 6 x 3 Panorama,16 +6040,Propeller Housing,35 +6040217,"Plastic Flag with Lion with Crown Print, Squared Ends [70404]",38 +6041,Propeller 3 Blade 3 Diameter,35 +6042,Brick Special Octagonal 2 x 2 x 3 1/3 with Side Studs,5 +6043,Brick Special Octagonal 2 x 2 x 3 1/3 Corner,5 +6043173stk01,Sticker Sheet for 6043173-1,17 +6044,Slope 53° 3 x 1 x 3 1/3 with Studs on Slope,3 +604547,Minifig Tool Cross Pein Hammer - 3-Rib Handle,27 +604548,Minifig Tool Oil Can - Ribbed Handle,27 +604549,Minifig Tool Cordless Electric Impact Wrench / Drill,27 +604550,Minifig Tool Screwdriver with Wide Head and 3-Rib Handle,27 +604551,Minifig Tool Open End Wrench - 3-Rib Handle,27 +604552,Minifig Tool Box Wrench - 3-Rib Handle,27 +604553,Minifig Tool 4-Way Lug Wrench,27 +6046,Bar 9 x 13 Grille,32 +604614,Minifig Tool Adjustable Wrench,27 +604615,Minifig Tool Ratchet / Socket Wrench,27 +60470a,Plate Special 1 x 2 with Clips Horizontal [Thick U-Clips],9 +60470b,Plate Special 1 x 2 with Clips Horizontal [Open O Clips],9 +60471,Hinge Plate 1 x 2 Locking with 2 Fingers on Side,18 +60474,Plate Round 4 x 4 with Pin Hole,21 +60475a,"Brick Special 1 x 1 with Clip Vertical [Thick U Clip, Solid Stud]",5 +60475b,"Brick Special 1 x 1 with Clip Vertical [Open O Clip, Hollow Stud]",5 +60476,Brick Special 1 x 1 with Clip Horizontal,5 +60477,Slope 18° 4 x 1,3 +60478,Plate Special 1 x 2 with Handle on End [Closed Ends],9 +6047838a,Sticker 1.9 x 1.9 with VW Logo on Red/White Bus Front,17 +60479,Plate 1 x 12,14 +60481,Slope 65° 2 x 1 x 2,3 +60483,Technic Beam 1 x 2 Thick with Pin Hole and Axle Hole,51 +60484,Technic Beam 3 x 3 T-Shape Thick,51 +60485,Technic Axle 9,46 +6048a,"Arm Piece with Pin, 2 Fingers",18 +6048b,"Arm Piece with Pin, 2 Fingers and Finger Grooves",18 +6048c,"Arm Piece with Pin, 2 Fingers and Outside Thread Grooves",18 +604a,"Window 1 x 6 x 3 Panorama (old type) with Solid Studs, no Glass",16 +604ac01,Window 1 x 6 x 3 Panorama (old type) with Solid Studs and Fixed Glass,16 +604b,Window 1 x 6 x 3 Panorama with Top Holes,16 +604c,"Window 1 x 6 x 3 Panorama, without Glass for Slotted Bricks",16 +604c01,Window 1 x 6 x 3 Panorama with Glass,16 +604mi,Minitalia Window 1 x 6 x 3 Panorama with 12 Panes,16 +6050,"Boat Hull Small Bow 12 x 12 x 5 1/3, Base",35 +6051,"Boat Hull Small Bow 12 x 12 x 5 1/3, Top",35 +6051c02,"Boat Hull Small Bow 12 x 12 x 5 1/3 Complete Assembly, Top Color Blue",35 +6051c04,"Boat Hull Small Bow 12 x 12 x 5 1/3 Complete Assembly, Top Color Green",35 +6051c05,"Boat Hull Small Bow 12 x 12 x 5 1/3 Complete Assembly, Top Color Dark Gray",35 +605.1stk01,Sticker for Set 605-1 - (4656),17 +6052,"Boat Hull Small Stern 14 x 12 x 5 1/3, Base",35 +6053,"Boat Hull Small Stern 14 x 12 x 5 1/3, Top",35 +60533,Tile 1 x 2 Engraved Code for 7721-1,10 +6053c02,"Boat Hull Small Stern 14 x 12 x 5 1/3 Complete Assembly, Top Color Blue",35 +6053c04,"Boat Hull Small Stern 14 x 12 x 5 1/3 Complete Assembly, Top Color Green",35 +6053c05,"Boat Hull Small Stern 14 x 12 x 5 1/3 Complete Assembly, Top Color Dark Gray",35 +6054,Boat Hull Small Middle 8 x 12,35 +6055,Panel 6 x 6 x 6 Corner with Arched Window,23 +6056,Brick Special 2 x 2 x 6 with Groove,5 +6057,Boat Mast Rigging Short 16 x 5,35 +6058,Cockpit 11 x 4 x 2 2/3 Inverted Slope,6 +60581,Panel 1 x 4 x 3 [Side Supports / Hollow Studs],23 +60581pr0002,Panel 1 x 4 x 3 with Pink '+' and Blue Paw Print,23 +60583a,"Brick Special 1 x 1 x 3 with 2 Clips Vertical [Solid Stud, Thick U Clips]",5 +60583b,"Brick Special 1 x 1 x 3 with 2 Clips Vertical [Hollow Stud, Open O Clips]",5 +6058415,Legends of Chima Online Card - Gorilla Legend Beast,17 +6059,Panel 3 x 3 x 6 Corner Convex with Curved Top,23 +60592,Window 1 x 2 x 2 Flat Front,16 +60592c01,Window 1 x 2 x 2 Flat Front with Trans-Clear Glass,16 +60593,Window 1 x 2 x 3 Flat Front,16 +60594,Window 1 x 4 x 3 without Shutter Tabs,16 +60596,Door Frame 1 x 4 x 6 Type 2,16 +60598,Window 2 x 4 x 3 Frame with Hollow Studs,16 +60599,Door Frame 2 x 4 x 6,16 +606,Baseplate Road 32 x 32 9-Stud Straight,1 +6060,Brick Arch 1 x 6 x 3 1/3 Curved Top,37 +60601,Glass for Window 1 x 2 x 2 Flat,16 +60601pb013,Glass for Window 1 x 2 x 2 with Ornamented Window Arch Print,16 +60601pr0001,GLAS FOR FRAME 1X2X2 NO. 1,16 +60602,Glass for Window 1 x 2 x 3 Flat Front,16 +60603,Glass for Window 1 x 4 x 3 - Opening,16 +60603pr0001,"Glass for Window 1 x 4 x 3 - Opening with Map, Minifig Silhouette and Exclamation Mark Print",16 +60603pr0002,Glass for Window 1 x 4 x 3 - Opening with 'ACE BRICKMAN PRIVATE DETECTIVE' Print,16 +60603pr0003,GLAS FOR FRAME 1X4X3 NO. 3,16 +60603pr0004,Glass for Window 1 x 4 x 3 - Opening with 'ULTRA INTEL' Computer Screen Print,16 +60603pr0005,"Glass for Window 1 x 4 x 3 - Opening with "Prevent Yellowing", Tooth Logo and "DENTIST" Print",16 +60607,Window 1 x 2 x 3 Pane Latticed with Thick Corner Tabs,16 +60608,Window 1 x 2 x 3 Pane with Thick Corner Tabs,16 +6061,Brick Special 2 x 4 x 2 with Holes on Sides,5 +60614,"Door 1 x 2 x 3 with Vertical Handle, New Mold for Tabless Frames",16 +60616,Door 1 x 4 x 6 Smooth [Undetermined Stud Handle],16 +60616a,Door 1 x 4 x 6 Smooth with Square Handle Plinth,16 +60616b,Door 1 x 4 x 6 Smooth with Chamfered Handle Plinth,16 +6061b,Brick 2 x 4 x 2 with Holes on Sides and Struts,11 +60621,Door 1 x 4 x 6 Barred with Stud Handle,16 +60623,Door 1 x 4 x 6 with 4 Panes and Stud Handle,16 +6063,Plate Special 10 x 10 Octagonal Open Center,9 +60639c01,"Arm Troll, Right with Copper Wristband",13 +60639c02,"Arm Troll, Right with Pearl Dark Gray Wristband",13 +60639c03,"Arm Troll, Right with Black Wristband [Plain]",24 +60639c03pr01,"Arm Troll, Right with Black Wristband and Skull Print",13 +6064,Bush 2 x 2 x 4,28 +60640,"Hand Troll, Right with Technic Pin",13 +60641,"Hand Troll, Left with Technic Pin",13 +60642c01,"Arm Troll, Left with Copper Wristband",13 +60642c02,"Arm Troll, Left with Pearl Dark Gray Wristband",13 +60642c03,"Arm Troll, Left with Black Wristband [Plain]",24 +60642c03pr01,"Arm Troll, Left with Black Wristband and Skull Print",13 +6065,Plant Prickly Bush 2 x 2 x 3 Extension with 2 x 2 center,28 +60656,Electric Power Functions Extension Wire with One Light Bluish Gray End [20cm],45 +60657,Door 1 x 3 x 3 Right - Open Between Top and Bottom Hinge,16 +60658,Door 1 x 3 x 3 Left - Open Between Top and Bottom Hinge,16 +6066,Castle Turret Top 4 x 8 x 2 1/3,23 +6067,Boat Mast Section Base 4 x 4 x 1 2/3,35 +60671,"Body Giant, Fantasy Era Troll with Pearl Dark Gray Armor",13 +60671pr0002,"Body Giant, Fantasy Era Troll with Copper Armor",13 +60671pr0003,"Body Giant, Fantasy Era Troll with Black Armor",13 +60671pr0004,"Body Giant, Fantasy Era Troll with Black Armor",13 +60674,Minifig Troll Club,27 +6069,Wedge 4 x 4 Triple without Stud Notches,6 +6069p01,Wedge 4 x 4 Triple with Red Chevrons Print,6 +6069pb02,Wedge 4 x 4 Triple without Stud Notches with Metallic Roboforce Print,6 +6069pb03,Wedge 4 x 4 Triple without Stud Notches with Black and Dark Gray Panels Print (Set 7191),6 +6069pb04,Wedge 4 x 4 Triple without Stud Notches with Shell Logo Print,6 +6069ps1,Wedge 4 x 4 Triple without Stud Notches with SW X-wing Nose Print [7140 / 7142],6 +6069ps2,Wedge 4 x 4 Triple with SW Mini Slave 1 Print,6 +6069ps3,Wedge 4 x 4 Triple with Droid Fighter Print,6 +6069px1,"Wedge 4 x 4 Triple without Stud Notches with Brown Panels, Gray Machinery, Lime Light Print",6 +6069px10,Wedge 4 x 4 Triple without Stud Notches with White Dots and Hydraulic Print (Stingray Engine),6 +6069px2,Wedge 4 x 4 Triple without Stud Notches with Brown Oval Print,6 +606p01,Baseplate Road 32 x 32 9-Stud Straight with Road Print,1 +606p02,"Baseplate, Road 32 x 32 9-Stud Straight with Road and Crosswalk Print",1 +606p33,Baseplate Road 32 x 32 9-Stud Straight with Runway Print,1 +607,Baseplate Road 32 x 32 9-Stud Crossroads,1 +6070,Windscreen 5 x 2 x 1 2/3,47 +60700,Tyre 21 x 12 with Offset Tread Small Wide and Beveled Tread Edge,29 +6072,Castle Turret Top 7 x 7 Corner,23 +60747,Minifig Helmet with Wings,27 +60748,Minifig Helmet Castle with Cheek Protection and Studded Bands,27 +60749,"Minifig Beard, Braided with Hair in Back",13 +6075,Minifig Surfboard [Long],27 +60750,"Minifig Beard, Tied with Hair in Back",13 +60751,Minifig Helmet - Castle with Cheek Protection and Thin Bands (Troll),27 +60752,Minifig Sword [Scimitar Notched Blade],27 +60770,Duplo Utensil Fire Extinguisher,4 +60773,Duplo Food French Bread Loaves,4 +60775,Duplo Container Box 2 x 4 x 2 with Open Sides,4 +60776,Duplo Container Box 2 x 4 x 2 Door with Handle,4 +60777,Duplo Container Oil Drum 2 x 2 x 2,4 +60777px1,Duplo Container Oil Drum 2 x 2 x 2 with Green Band Print,4 +6078,Door 1 x 4 x 3,16 +6079,Fence 1 x 8 x 2 2/3,32 +60791,Fence 2 x 12 x 6,32 +60797c01,Door 1 x 4 x 6 with 3 Panes and Stud Handle with Trans-Light Blue Glass,16 +60797c02,Door 1 x 4 x 6 with 3 Panes and Stud Handle with Trans-Black Glass,16 +60797c03,Door 1 x 4 x 6 with 3 Panes and Stud Handle with Reddish Brown Glass,16 +607p01,Baseplate Road 32 x 32 9-Stud Crossroads with Road Print [6304 / 1060],1 +608,Baseplate Road 32 x 32 9-Stud T Intersection,1 +60800,Window 1 x 2 x 3 Shutter with Hinges [Undetermined Handle],16 +60800a,Window 1 x 2 x 3 Shutter with Hinges and Handle,16 +60800b,Window 1 x 2 x 3 Shutter with Hinges and No Handle,16 +60806,Window 4 x 4 x 3 Roof with Bottom Panel,16 +60808,Panel 1 x 4 x 5 with Arched Window,23 +60809,CHILD FIGURE NO. 2,57 +6081,Brick Curved 2 x 4 x 1 1/3 with Curved Top,37 +6082,Rock Panel Rectangular 4 x 10 x 6 (aka BURP),33 +6082pat0001,Rock Panel Rectangular 4 x 10 x 6 (aka BURP) with Marbled Dark Green Pattern,33 +6083,Rock Panel Triangular 3 x 8 x 7 (aka LURP),33 +6083pat0002,Rock Panel Triangular 3 x 8 x 7 (aka LURP) with Marbled Sky Blue Base Pattern,33 +6084,Windscreen 8 x 3 1/2 x 4 1/6 Half Octagon Aquanaut Sub Top,47 +60849,Minifig Hose Nozzle with Side String Hole Simplified,27 +6085,Cockpit 5 x 8 x 3 (Windscreen Bottom),35 +6086,Octopus,28 +6086pat0001,Octopus with Marbled Glow in the Dark Pattern,28 +6087,Bracket 5 x 2 x 2 1/3,9 +6088,Minifig Helmet Visor Aquazone,27 +6089,Minifig Helmet - Underwater [Aquashark],27 +60894,"Bionicle Matoran Torso, Av-Matoran Type 1",41 +60895,"Bionicle Matoran Torso, Av-Matoran Type 2",41 +60896,Bionicle Arm Av-Matoran with Ball Joint and Ball Socket,41 +60897,Plate Special 1 x 1 with Clip Vertical [Thick Open O Clip],9 +60898,Bionicle Mask Vultraz [Plain],24 +60898pat0001,Bionicle Mask Vultraz with Black Top,41 +60899,Bionicle Av-Matoran Leg Section with Ball Joint and Ball Socket,41 +608p01,Baseplate Road 32 x 32 9-Stud T Intersection with Road Print,1 +608p02,Baseplate Road 32 x 32 9-Stud T Intersection with Green Octagon Print [6710],1 +608p03,"Baseplate, Road 32 x 32 9-Stud T Intersection with Yellow Lines Print",1 +608p33,Baseplate 32 x 32 Road 9-Stud T-Junction Runway,1 +609,Baseplate Road 32 x 32 9-Stud Curve,1 +6090,Minifig Helmet Visor Underwater,27 +60900,Bionicle Arm / Leg Upper Section (Solek),41 +60901,Bionicle Head Connector Block (Av-Matoran),41 +60902,Bionicle Foot Claw with Ball Socket (Shadow Matoran),41 +60903,Bionicle Mask Tanma,41 +60904,Bionicle Mask Solek,41 +60905,Bionicle Mask Photok,41 +60906,Bionicle Mask Radiak [Plain],24 +60906pat0001,Bionicle Mask Radiak with Black Top,41 +60907,Bionicle Mask Gavla [Plain],24 +60907pat0001,Bionicle Mask Gavla with Pearl Light Gray Top,41 +60908,Bionicle Mask Kirop [Plain],24 +60908pat0001,Bionicle Mask Kirop with Black Top [Pearl Light Gray],41 +60908pat0002,Bionicle Mask Kirop with Black Top [Lime],41 +60909,Bionicle Wings Shadow Matoran,41 +6091,Brick Curved 1 x 2 x 1 1/3 with Curved Top,37 +60911,Bionicle Mask Miru Nuva [Adaptive Armour Style A],41 +60912,Bionicle Mask Akaku Nuva [Adaptive Armour Style],41 +60913,Bionicle Mask Kakama Nuva [Adaptive Armour Style],41 +60914,Bionicle Mask Jutlin [Plain],24 +60914pat0001,Bionicle Mask Jutlin with Black Top (Shapeshifted),41 +60915,Bionicle Mask Avsa [Plain],24 +60915pat0001,Bionicle Mask Avsa with Pearl Light Gray Top,41 +60916,Bionicle Mask Shelek [Plain],24 +60916pat0001,Bionicle Mask Shelek with Black Top and Pearl Light Gray Bottom,41 +60916pat0002,Bionicle Mask Shelek with Black Top and Lime Bottom,41 +60917,Bionicle Toa Pohatu Lower Arm Section,41 +60918,Bionicle Makuta Torso with 2 Ball Joints,41 +60919,Technic Bionicle Wing,41 +60919pat01,Bionicle Wing Makuta Marbled Flat Silver Pattern,41 +6092,"Baseplate 32 x 32 Raised with Ramp, Pit, and Stairs Swimming Pool, Pharaoh, Tomb, Sphinx, Ogel,Paradisa, Adventurer, Alpha Team, driveway,chip,dip",1 +60920,Bionicle Wing Bladed (Antroz) [Plain],24 +60920pat0001,Bionicle Wing Bladed with Marbled Dark Red Pattern (Antroz),41 +60921,Bionicle Mask Avohkii (Post Karda Nui Exposure),41 +60923,Bionicle Weapon Air Saber (Toa Lewa),41 +60924,Bionicle Weapon Blizzard Blade (Toa Kopaka),41 +60925,Technic Bionicle Propellor,41 +60926,Bionicle Weapon Blade Claw (Antroz),41 +60928,Bionicle Weapon Hook Blade (Chirox),41 +60929,"Bionicle Shadow Leech, Rubber",41 +6092pb02,Baseplate Raised 32 x 32 Three Level with Ogel Center Print [6776],1 +6092pb03,Baseplate Raised 32 x 32 Three Level with Slate Ramp and Gray Pool Print [5978],1 +6092px1,Baseplate Raised 32 x 32 Three Level with Yellow Dirt Print [4293],1 +6092px2,Baseplate Raised 32 x 32 Three Level with Stone Ramp and Blue Pool Print [6416],1 +6093,Minifig Hair Ponytail,13 +60930,Bionicle Engine Jet Pack (Toa Lewa),41 +60933,Bionicle Tridax Pod Launcher,41 +60934,Bionicle Tridax Pod Half,41 +60934pat0001,Bionicle Tridax Pod Half with Marbled Blue Pattern,41 +60935,Bionicle Wing Large,41 +60936,Bionicle Mask Ignika (Toa Ignika),41 +6098,Baseplate 16 x 16,1 +6099,Baseplate 32 x 32 Road 9-Stud Landing Pad,1 +6099p01,Baseplate 32 x 32 Road 9-Stud Landing Pad with Runway Print,1 +6099p02,Baseplate Road 32 x 32 9-Stud Landing Pad with Green Octagon Print [6988 / 6710],1 +6099p03,Baseplate Road 32 x 32 9-Stud Landing Pad with Yellow Circle Print,1 +6099p05,Baseplate 32 x 32 Road 9-Stud Landing Pad Type 2 (Orange),1 +6099p06,Baseplate 32 x 32 Road 9-Stud Landing Pad Type 3 (Orange),1 +609p01,Baseplate Road 32 x 32 9-Stud Curve with Road Print,1 +610,Baseplate 32 x 32 Road 8-Stud Straight,1 +6100,Baseplate 32 x 32 with 3 Driveways,1 +6100p01,Baseplate Road 32 x 32 with 3 Driveways Print [6571],1 +6100p02,Baseplate 32 x 32 Road 9-Stud 3-Lane w/ Helicopter Pad Print,1 +6100p04,Baseplate 32 x 32 Road 9-Stud 3-Lane with Chevrons Print,1 +6100p05,Baseplate 32 x 32 Road 9-Stud 3-Lane w/ Centre & Left Numbered,1 +6100pb01,"Baseplate, Road 32 x 32 with 3 Driveways, Joined Outer Lanes with 1,2 Print (6382-1981)",1 +6100px2,"Baseplate Road 32 x 32 with 3 Driveways, Open Outer Lanes with 1,2 Print [6382]",1 +6104,Wedge Plate 8 x 8 with 3 x 4 Cutout,49 +6105,Door 1 x 4 x 8 Curved Top,16 +61053,Technic Axle and Pin Connector 2 x 5 with Two Ball Joint Sockets [Closed Sides],12 +61054,Technic Axle and Pin Connector 2 x 7 with Two Ball Joint Sockets [Squared Ends],12 +6106,Wedge Plate 6 x 6 Cut Corner,49 +61068,Slope Curved 2 x 4 x 2/3 No Studs [No Bottom Tubes],37 +61068p01,Slope Curved 2 x 4 with 2 Gold Stripes Print [No Bottom Tubes],37 +61068pb001,"Slope, Curved 2 x 4 x 2/3 No Studs without Bottom Tubes with Two Gold Stripes Print - Set 10194",37 +61068pr0001,Slope Curved 2 x 4 x 2/3 No Studs [No Bottom Tubes] with Skull and Stylised Lighning Bolt Print,37 +61068pr0002,Slope Curved 2 x 4 x 2/3 No Studs [No Bottom Tubes] with Number 8 and Stylised Flames Print,37 +61069,Technic Engine Block Half / Side Intake Panel,40 +6107,Brick Wedged Facet 5 x 5,6 +61070,Technic Panel Car Mudguard Right,40 +61071,Technic Panel Car Mudguard Left,40 +61072,Plate Special 1 x 4 with Angled Tubes,9 +61073,Technic Car Spoiler 3 x 8 [Three Holes],40 +6108,Brick Arch 1 x 12 x 3,37 +610p01,Baseplate Road 32 x 32 8-Stud Straight with Road Print,1 +610px1,"Baseplate, Road 32 x 32 8-Stud Straight with Street and Crosswalk Print",1 +610px2,Baseplate 32 x 32 Road 8-Stud Straight with Cracked Road and Lava Print [1349],1 +611,Baseplate 32 x 32 Road 8-Stud Crossroads,1 +61100c01,Windup Motor 2 x 4 x 2 1/3 with Orange Release Button,44 +6111,Brick 1 x 10,11 +6111pb015,Brick 1 x 10 with Dark Purple 'January' and 'February' Print on Opposite Sides,2 +6111pb016,Brick 1 x 10 with Dark Purple 'March' and 'April' on Opposite Sides Print,2 +6111pb017,Brick 1 x 10 with Dark Purple 'May' and 'June' Print on Opposite Sides,2 +6111pb018,Brick 1 x 10 with Dark Purple 'July' and 'August' Print on Opposite Sides,2 +6111pb019,Brick 1 x 10 with Dark Purple 'September' and 'October' Print on Opposite Sides,2 +6111pb020,Brick 1 x 10 with Dark Purple 'November' and 'December' Print on Opposite Sides,2 +6112,Brick 1 x 12,11 +6117,Minifig Chainsaw Blade,27 +6118,Wheel Hard Plastic Small (22mm D. x 24mm),29 +61182,Minifig Helmet - Rebel Scout Trooper,27 +61183,"Minifig Hair - Swept Back, Tousled",13 +61184,Technic Pin 1/2 with 2L Bar Extension,32 +61185c01,"Technic Brick Special 2 x 4 with 5 Studs, Axle Hole and Pin Launching Lever",26 +61189,Minifig Helmet SW Clone Trooper with Holes [Plain],27 +61189pr0001,"Minifig Helmet Clone Trooper with Holes, Clone Pilot Print",27 +61189pr0002,"Minifig Helmet SW Clone Trooper with Holes, Blue Stripe Print",27 +61189pr0003,"Minifig Helmet SW Clone Trooper with Holes, Standard Print",27 +61189pr0004,"Minifig Helmet SW Clone Trooper with Holes, Orange Stripe Print",27 +61189pr0005,"Minifig Helmet SW Clone Trooper with Holes, Red Markings Print",27 +61189pr0006,"Minifig Helmet SW Clone Trooper with Holes, Clone Gunner Print",27 +61189pr0007,"Minifig Helmet SW Clone Trooper with Holes, Sand Green Markings Print",27 +61189pr0008,"Minifig Helmet SW Clone Trooper with Holes, Bomb Squad Trooper Print",27 +61189pr0009,"Minifig Helmet SW Clone Trooper with Holes, Wolfpack Clone Trooper Print",27 +61189pr0010,"Minifig Helmet SW Clone Trooper with Holes, Clone Commander Wolffe Print",13 +61189pr0011,"Minifig Helmet SW Clone Trooper with Holes, Clone Commander Gree Print",27 +61189pr0012,"Minifig Helmet Clone Trooper with Holes, Gray Markings and Black Visor Print",27 +61189pr0013,"Minifig Helmet SW Clone Trooper with Holes, Olive Green Markings and Silver Visor Print (Clone Trooper Sergeant)",27 +61189pr0014,"Minifig Helmet SW Clone Trooper with Holes, Yellow Markings and Silver Visor Print (Clone Trooper Commander)",27 +61189pr0015,"Minifig Helmet SW Clone Trooper with Holes, Dark Red Markings and Silver Visor Print (Clone Trooper Captain)",27 +61189pr0016,"Minifig Helmet SW Clone Trooper with Holes, Yellow Markings and Black Visor Print (Clone Pilot)",27 +61189pr0017,"Minifig Helmet SW Clone Trooper with Holes, Dark Azure Markings and Silver Visor Print (Clone Trooper Lieutenant)",27 +61189pr1000,"Minifig Helmet SW Clone Trooper with Holes, Dark Azure Markings and Silver Visor Print (Clone Trooper Lieutenant)",27 +6119,Minifig Helmet Visor Ice Planet,27 +61190a,Minifig Armour Leg Anti-Blast Kama,27 +61190b,Minifig Armour Pauldron - Plastic,27 +61190c,Minifig Visor SW Clone Trooper,27 +61190f,Minifig Gun Small DC-17 [SW Blaster],27 +61191,Windscreen 8 x 4 x 3 Curved,47 +61192,Minifig Head Modified - Magna Guard with Cloak [Plain],24 +61192pr0001,Minifig Head Modified - Magna Guard with Cloak,13 +61193,"Torso Mechanical, Magna Guard",13 +61194,"Minifig Cape Cloth, Long with Tattered Edge (Magna Guard)",27 +61195,Minifig Headdress SW Togruta Montrals [Plain],13 +61195pr01,"Minifig Headdress SW Togruta Montrals, Blue and Sand Green Ahsoka Print",13 +61195pr02,"Minifig Headdress SW Togruta Montrals, Dark Blue and Sand Blue Ahsoka Print",13 +61196,Minifig Hair Combed Sideways,13 +61197,DRIVER`S CAB SNAP PART,24 +61198,Minifig Skirt Cloth,13 +61199,Minifig Lightsaber Hilt Short Curved with Ridges,27 +611p01,Baseplate Road 32 x 32 8-Stud Crossroads with Road Print,1 +612,Baseplate 32 x 32 Road 8-Stud T Intersection,1 +6120,Minifig Ski with Hinge,27 +61200,Minifig Head Modified Kel Dor with Mask (Plo Koon) [Plain],24 +61200pr0001,Minifig Head Modified Kel Dor with Dark Bluish Gray Mask Print (Plo Koon),13 +6121,Tower Roof 4 x 8 x 6,23 +6122,Minifig Helmet Castle - Dragon Crown Top,27 +6123,Minifig Halberd Elaborate,27 +6124,Minifig Magic Wand,27 +6125,"Horse Battle Helmet [Winged, One Clip]",28 +61252,Plate Special 1 x 1 with Clip Horizontal [Thick Open O Clip],9 +61254,Tyre Offset Tread with Center Band,29 +61256,BRICK 1X2X2 DECO. COINS,4 +61257,Duplo Brick 1 x 2 x 2 with Oranges and Glass of Orange Juice with Straw Print,4 +61258,DUPLO BRICK 1X2X2 DECO. SOAP,4 +6126,Wave / Flame Rounded [Undetermined Handle],27 +6126a,Wave / Flame Rounded with Base Pegs,27 +6126b,Wave / Flame Rounded with Base Rim,27 +6127,Dragon / Dinosaur Arm Right,28 +6128,Dragon / Dinosaur Arm Left,28 +61281,"DUPLO CURVE 2X4X2, DEC. SUPER",24 +61285,Minifig Head Modified Sandy Cheeks [Plain],24 +61285pr0001,Minifig Head Modified Sandy Cheeks (Rust Top Portion),13 +61286,Minifig Head Modified SpongeBob [Plain],24 +61286pr0001,Minifig Head Modified SpongeBob Bus Driver,13 +61286pr0002,Minifig Head Modified SpongeBob Doctor,13 +61286pr0003,Minifig Head Modified SpongeBob Ice Cream Vendor Print,13 +61287,Cylinder Hemisphere 2 x 2 with Cutout,20 +61287pr0001,Hemisphere 2 x 2 with Cutout with Americas and South Pacific Globe Print,20 +61287pr0002,"Hemisphere 2 x 2 with Cutout with Europe, Africa, Asia, Australia Globe Print",20 +61287pr0006,Cylinder Hemisphere 2 x 2 with Cutout with Armillary Sphere Left Print,20 +61287pr0007,Cylinder Hemisphere 2 x 2 with Cutout with Armillary Sphere Right Print,20 +6129,Animal Dragon Body Right,24 +6129b,Animal Dragon Body Complete Assembly,24 +6129pb01c01,Dragon Body Classic with Orient Flames Print,28 +6129pb01c02,"Dragon Classic Oriental, Complete Assembly",28 +612p01,Baseplate Road 32 x 32 8-Stud T Intersection with Road Print,1 +613,Baseplate 32 x 32 Road 8-Stud Curve,1 +6131,Minifig Wizards Hat,27 +61310,Plate 8 x 16 x 0.5,4 +61318,"ROOFTILE 2X2X1 1/2, DEC. PC",4 +6131pr0001,"Minifig Hat, Wizards with Silver Buckle, Skull and Lightning Bolts Print",27 +6131pr0002,Minifig Wizards Hat with Gold Buckle and Stars Print,27 +6131pr0003,Minifig Wizards Hat with Buckle and Gold Dragon Print,27 +6131pr0004,"Minifig Hat, Wizards with Silver Buckle and Stars Print",27 +6131pr0005,Minifig Wizard Hat with Black Sorting Hat Print,27 +6131pr0006,Minifig Wizards Hat with Red Dragon Head Print,27 +6132,Minifig Beard,13 +61320,"TANK TOP 4X4X2, DEC. OCTAN",4 +6133,Dragon Wing,28 +6134,Hinge Brick 2 x 2 Top Plate Thin,18 +61345,"Window 1 x 4 x 2 Plane, Single Hole Top and Bottom for Glass",16 +61346,Duplo Dinosaur Brachiosaurus Baby with Yellow Spots Print,4 +61348,Duplo Dinosaur Pteranodon Baby with Orange Spots around Eyes Print,4 +61349,Duplo Dinosaur Triceratops Baby with Green Spots Print,4 +6135,"Plant Tree Palm Trunk - Short Connector, Axle Hole with 2 Inside Prongs",28 +6135189,Ghostbusters Pink Ghost,28 +6139040,"Plastic Flag with Dragon Head Print, Sheet of 2, Left and Right Looking, Two-Sided",38 +6139040a,"Plastic Flag with Dragon Head Print, Two-Sided",38 +613p01,Baseplate Road 32 x 32 8-Stud Curve with Road Print [6321 / 9370],1 +6140,Bar 1 x 6 [Closed Studs],32 +61403,Technic Circular Saw Blade 9 x 9 with Pin Hole,26 +61406,Plate Special 1 x 2 with Angular Extension and Flexible Tip [Plain],9 +61406pat0001,Plate Special 1 x 2 with Angular Extension and Flexible Yellow Tip [Black],9 +61406pat0002,Plate Special 1 x 2 with Angular Extension and Flexible Lime Tip [Lime],9 +61406pat0003,Plate Special 1 x 2 with Angular Extension and Flexible Yellow Tip [Dark Purple],9 +61406pat0004,Plate Special 1 x 2 with Angular Extension and Flexible Light Bluish Gray Tip,9 +61406pat0005,Plate Special 1 x 2 with Angular Extension and Flexible Orange Tip [Black],9 +61406pat0006,Plate Special 1 x 2 with Angular Extension and Flexible Black Tip,9 +61406pat0007,Plate Special 1 x 2 with Angular Extension and Flexible Lime Tip [Dark Green / Green],9 +61406pat0008,Plate Special 1 x 2 with Angular Extension and Flexible Orange Tip [Dark Green],9 +61409,Slope 18° 2 x 1 x 2/3 with 4 Slots,3 +6141,Plate Round 1 x 1 with Solid Stud,21 +6148,Palm Leaf Small,28 +61480,Tyre 68.7 x 34 R,29 +61481,Tyre 43.2 x 26 Balloon Small,29 +61482,Minifig Handcuffs,27 +61483,Technic Pin with Dual Wheels Holder,35 +61484,Windscreen 5 x 6 x 2 Curved Top Canopy with 4 Studs,47 +61485,"Turntable 4 x 4 Square Base, Locking",18 +61487,Slope Curved 4 x 4 x 2 with Holes,37 +61506,"Minifig Hat, Wide Brim Outback Style (Fedora)",27 +61510,String Reel 2 x 1 x 2 Drum with Axle Hole,31 +6152,Windscreen 6 x 4 x 1 1/3,47 +6152px1,Windscreen 6 x 4 x 1 1/3 with Grill Print [7126],47 +6153a,Wedge 6 x 4 Cutout [No Stud Notches],6 +6153apb01,Wedge 6 x 4 Cutout without Stud Notches with Red Number 3 Print,6 +6153apb02,Wedge 6 x 4 Cutout without Stud Notches with Red Number 5 Print [6334],6 +6153apb03,Wedge 6 x 4 Cutout without Stud Notches with Red Number 8 Print [6334],6 +6153apb04,Wedge 6 x 4 Cutout without Stud Notches with 'C 504' Print,6 +6153apx1,Wedge 6 x 4 Cutout without Stud Notches with Divers Blue Team Logo Print [2536],6 +6153apx2,Wedge 6 x 4 Cutout without Stud Notches with Arctic Logo Print,6 +6153b,Wedge 6 x 4 Cutout with Stud Notches,6 +6153p7a,Wedge 6 x 4 with Arctic Print,6 +6154,Door Frame 1 x 4 x 4 (Lift),16 +6155,Door 1 x 4 x 4 Lift,16 +6156,Panel 1 x 4 x 3 with Fixed Glass,23 +6157,Plate Special 2 x 2 with Wheels Holder Wide,9 +6158,Minifig Helmet Breathing Apparatus,27 +6159,Window 4 x 4 x 3 Roof with Centre Bar,16 +6160,"Window 1 x 4 x 6 Frame with 3 Panes, Fixed Glass with NO GLASS",16 +6160c01,"Window 1 x 4 x 6 Frame with 3 Panes, Fixed Glass with Trans-Light Blue Glass",16 +6160c02,"Window 1 x 4 x 6 Frame with 3 Panes, Fixed Glass with Trans-Green Glass",16 +6160c03,"Window 1 x 4 x 6 Frame with 3 Panes, Fixed Glass with Trans-Dark Blue Glass",16 +6160c04,"Window 1 x 4 x 6 Frame with 3 Panes, Fixed Glass with Trans-Black Glass",16 +6160c05,"Window 1 x 4 x 6 Frame with 3 Panes, Fixed Glass with Trans-Clear Glass",16 +6161,Brick Special 24 x 24 without 12 x 12 Quarter Circle,5 +6162,"Brick, Round Corner 12 x 12",20 +61639,Dragon Head - Upper Jaw with Armour [Plain],24 +61639pr0001,Dragon Head - Upper Jaw with Metallic Silver Armour and Yellow Eyes Print,28 +61649,"Door Frame Flat Front Surface, Completely Open Back",4 +6165,"Belville Wall, Lattice 12 x 1 x 12 Square",42 +6166,"Belville Wall, Lattice 12 x 1 x 12 Curved",42 +61678,Slope Curved 4 x 1 No Studs [Stud Holder with Asymmetric Ridges],37 +61680,Bar 6L with Round Cap and Partially Flat Shaft,32 +6169,Stairs 13 x 13 x 12 Curved Open,32 +6171,Horse (Belville) [Plain],24 +6171pr01,Horse (Belville) with Blue Eyes and Gold Stars Print,28 +6171pr02,Horse (Belville) with Eyes Print,42 +6171pr03,"Horse (Belville) with Dark Brown Mane and Tail, White Blaze and Feet Print",42 +61747,Plastic Flag 4 x 9 with Fantasy Era Troll Skull Print Tattered,38 +6175,Cat Standing,28 +6175px1,Cat Standing with Blue Eyes and Black Eyelashes Print,28 +6175px2,Cat Standing with Yellow Eyes Print,28 +6176,"Belville, Clothes Accessories - Complete Sprue - Small Bows & Hair Band",27 +61765,Plastic Ramp Cover with Yellow Stripes and 'WARNING DO NOT ENTER' Print [8491],38 +61767,Plastic Ramp Cover with Stop Sign and 'ROAD CLOSED' Print [8492],38 +61768,Plastic Ramp Cover with Tyre Tracks and 'JUMP AHEAD' Kangaroo Sign Print [8490],38 +61769,Plastic Ramp Cover with Flames and 'WARNING PYRO-CHEMICAL BURN HAZARD' Print [8493],38 +6177,Tile Round 8 x 8,15 +61770,Plastic Ramp Cover with Flames and 'WARNING PROCEED WITH CAUTION' Print (8494),1 +6177pb002,"Tile, Round 8 x 8 with Grille Print",10 +6177pr0001,Tile Round 8 x 8 with Woodgrain and Feanorean G Print [79003],10 +6177pr0004,"Tile Round 8 x 8 with 2013, Snakes and Hanzi Print",10 +6177ps1,Tile Round 8 x 8 with Grille Print,10 +6177px1,"Tile, Round 8 x 8 with HP Sorting Hat Print",15 +6177px2,Tile Round 8 x 8 with Target Verniers Print [6775],10 +6177px4,"Tile, Round 8 x 8 with Gold Swirling Stars Print",15 +6178,Tile Special 6 x 12 with Studs on Edges,15 +61780,Container Box 2 x 2 x 2 - Top Opening,7 +61787,Bionicle Mask Kaukau Nuva [Adaptive Armour Style],41 +61788,Bionicle Mask Hau Nuva [Adaptive Armour Style],41 +6178pr0001,Tile Special 6 x 12 with Studs on Edges with Hopscotch Grid and Manhole Cover Print,15 +6178pr0002,Tile Special 6 x 12 with Edge Studs and Stylised Map Print [21205-1],15 +6178pr0003,Tile Special 6 x 12 with Edge Studs and Racetrack Print,15 +6178pr0005,Tile Special 6 x 12 with Studs on Edges and Resort Print,15 +6179,Tile Special 4 x 4 with Studs on Edge,15 +61790,Bionicle Mask Pakari Nuva [Adaptive Armour Style],41 +61791pat0001,Bionicle Mask Crast with Marbled Red Pattern,41 +61792,Bionicle Mask Felnas [Plain],24 +61792pat0001,Bionicle Mask Felnas with Marbled Lime Pattern,41 +61793,Bionicle Mask Mohtrek [Plain],24 +61793pat0002,Bionicle Mask Mohtrek with Marbled Black Pattern,41 +61794,Bionicle Weapon Mistika Nynrah Ghost Blaster Scope with Crosshairs (Toa Gali),41 +61795,Bionicle Weapon Small Blade (Toa Tahu),41 +61796,Bionicle Weapon Mistika Nynrah Ghost Blaster Shield (Toa Onua),41 +61797pat0001,"Bionicle Weapon Spined Long Blade, Marbled Red Pattern (Krika)",41 +61798,Bionicle Wing Large with Hologram Print,41 +61799,Bionicle Weapon Mistika Bitil Claw,41 +6179pr0001,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'TIE Interceptor TIE Fighter Pilot Death Star' Print [9676],15 +6179pr0002,Tile Special 4 x 4 with Studs on Edge with Pizza Planet Sign Print Left of Studs,15 +6179pr0003a,Tile Special 4 x 4 with Studs on Edge with Pizza Planet Sign Print Right of Studs,15 +6179pr0003b,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'Delta-7 Light Interceptor R4-P17 Kamino' Print [75006],15 +6179pr0004,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'X-wing Starfighter X-wing Pilot Yavin 4' Print [9677],15 +6179pr0005,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and Republic Assault Ship / Clone Trooper / Coruscant Print [75007],15 +6179pr0006a,Tile Special 4 x 4 with Studs on Edge with Eye on White Background Print Right,15 +6179pr0006b,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'Tie Bomber Tie Bomber Pilot Asteroid Field' Print [75008],15 +6179pr0007a,Tile Special 4 x 4 with Studs on Edge with Eye on White Background Print Left,15 +6179pr0007b,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'Snowspeeder Snowspeeder Pilot Hoth' Print [75009],15 +6179pr0008,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'B-wing Starfighter B-wing Pilot Endor' Print - Set 75010,15 +6179pr0009,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'Tantive IV Rebel Trooper Alderaan' Print [75011],15 +6179pr0010,Tile Special 4 x 4 with Studs on Edge with Blue and White Target with Gold Wings Print,15 +6179pr0011,"Tile Special 4 x 4 with Studs on Edge with Gemini, Auriga, Canis Minor, Taurus and Orion Constellations Print",15 +6179pr0012,Tile Special 4 x 4 with Studs on Edge with Shopping Basket Print,15 +6179pr0013,Tile Special 4 x 4 with 4 studs and Spiderman Face Print [10687-1],15 +6179pr0014,Tile Special 4 x 4 with 4 Studs and Left Arrow Matrix Sign Print [10683-1],15 +6179pr0015,Tile Special 4 x 4 with 4 studs and Higgs Boson Particle Pictionary Whiteboard Print [21302-1],15 +6179pr39,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'Royal N-1 Starfighter / Naboo Pilot / Naboo' Print [9674],15 +6179pr40,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'Sebulba's Podracer Sebulba Tatooine' Print [9675],15 +6179pr48,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'Twin-Pod Cloud Car Lobot Bespin' Print [9678],15 +6179pr49,Tile Special 4 x 4 with Studs on Edge with Lego Star Wars Logo and 'AT-ST AT-ST Driver Forest Moon of Endor' Print [9679],15 +6179px1,Tile Special 4 x 4 with Studs on Edge with Pipes Print [7166 / 7624],15 +6179px2,Tile Special 4 x 4 with Studs on Edge with Exhaust Print [7163],15 +6179px3,Tile Special 4 x 4 with Studs on Edge and Roses Print,15 +6179px4,"Tile, Modified 4 x 4 with Studs on Edge with Ocean Pirate Treasure Map Left-Half Print",15 +6179px6,"Tile, Modified 4 x 4 with Studs on Edge with Ocean Pirate Treasure Map Right-Half Print",15 +6180,Tile Special 4 x 6 with Studs on Edges,15 +61800,Bionicle Wing Small,41 +61801,Bionicle Engine Rahi Sonic Jet,41 +61802,Bionicle Mistika Torso / Shoulders Section,41 +61803,Bionicle Armor / Head Support (Axalara T9),41 +61804,Bionicle Foot Mistika Clawed with Axle [Plain],24 +61804pat0001,Bionicle Foot Mistika Clawed with Axle with Marbled Lime Talons,41 +61805,Bionicle Panel / Shield,41 +61806,Bionicle Claw Small with Axle Hole,41 +61807,Bionicle Weapon Small Blade with 4 Spikes,24 +61807pat01,"Bionicle Weapon Small Blade with 4 Spikes, Marbled Red Pattern (Krika)",41 +61807pat02,"Bionicle Weapon Small Blade with 4 Spikes, Marbled Yellow Pattern (HF Xplode)",41 +61808,Bionicle Weapon Mistika Nynrah Ghost Blaster Body,41 +6180pb017l,Tile Special 4 x 6 with Studs on Edges and 'LEGO STAR WARS' and 'HOLO- ARCH' Print,15 +6180pb017r,Tile Special 4 x 6 with Studs on Edges and 'BRICK IVES' and Clone Troopers Print,15 +6180pb021l,Tile Special 4 x 6 with Studs on Edges and 'LDD 3' Left Half Print,15 +6180pb021r,Tile Special 4 x 6 with Studs on Edges and 'LDD 3' Right Half Print,15 +6180pb029l,Tile Special 4 x 6 with Studs on Edges and 'My Lego Network' Left Half Print,15 +6180pb029r,Tile Special 4 x 6 with Studs on Edges and 'My Lego Network' Right Half Print,15 +6180pb051,Tile Special 4 x 6 with Studs on Edges with LEGO Logo and Friends Print,15 +6180pr0001,Tile Special 4 x 6 with Studs on Edges with Blue Water Splash Print,15 +6180pr0002,Tile Special 4 x 6 with Studs on Edges with Clothes Design and Swatches Print,15 +6180pr0003,Tile Special 4 x 6 with Studs on Edges with Blackboard Print,15 +6181,Belville Swimming Pool,42 +61810,Bionicle Weapon Mistika Nynrah Ghost Blaster Air Pump,36 +61811,Bionicle Weapon Mistika Nynrah Ghost Blaster Ammo,41 +61813,Bionicle Mask Heads-Up Display,41 +61814,Bionicle Mask Jutlin,41 +61815,Bionicle Mask Miru Nuva [Adaptive Armour Style B],41 +6182,Brick Arch 1 x 4 x 2,37 +6183,Brick Arch 1 x 6 x 2 Curved Top,37 +6184,"Brick, Arch 1 x 12 x 5 Curved Top",37 +6185,Belville Horse Saddle,42 +61856,Minifig Shield Octagonal without Stud [Plain],27 +61856p40,Minifig Shield - Octagonal with Troll Skull on Dark Red Print,27 +6186,Teddy Bear - Arms Up,27 +6187,Bar 1 x 4 x 2,32 +61880,"Cloth Tent, Indiana Jones",38 +6189,"Belville, Clothes Hat, Horse Riding Helmet",27 +61896,Duplo Container Box 2 x 4 (Horse Trough New Style),4 +61898,Foils for 9654,38 +6190,"Bar 1 x 3 (Radio Handle, Phone Handset)",32 +61903,Technic Universal Joint 3L [Complete Assembly],25 +61904,Technic Axle and Pin Connector Block 4 x 3 x 2 1/2 [Linear Actuator Holder],12 +61905,Technic Axle and Pin Connector Block 3 x 3 x 2 [Linear Actuator Holder],12 +6191,"Brick 1 x 4 x 1 1/3 No Studs, Curved Top",37 +6191pr0001,Brick 1 x 4 x 1 1/3 No Studs - Curved Top and Twin White Line Speed Stripe Print,37 +6192,"Brick Curved 2 x 4 No Studs, Curved Top",37 +61927,Technic Linear Actuator with Dark Bluish Gray Ends [Undetermined Version],24 +61927a,Technic Linear Actuator with Dark Bluish Gray Ends [Original Version],26 +61927b,Technic Linear Actuator with Dark Bluish Gray Ends [Improved Version],26 +61929,Electric Power Functions Pole Reverser / Polarity Switch with Black Lead,45 +6193,Horse Foal (Belville),28 +61930,Electric Power Functions LED Light Unit with Black PF Connector Lead,45 +6195, Sink 4 x 4 with Elliptical Basin,7 +6196,Container - Cupboard 4 x 4 x 4 Door,7 +61969,"Dog Standing with Black Brows, Black Eyes on White Background and Black Nose Print",28 +6197,"Container, Cupboard 4 x 4 x 4 [No Door Holder Holes]",7 +61975,Minifig Whip [Coiled],27 +61976,Minifig Bag Messenger Pouch,27 +6197b,"Container, Cupboard 4 x 4 x 4 with Elliptical Hole for Sink",7 +6198,"Container, Cupboard 4 x 4 x 4 Drawer, Open Handle",7 +6199,Belville Swing,42 +6200,Belville Swing Stand,42 +6201,Dog Standing Plain,28 +62018,Sticker Sheet for 8117-1,17 +6201px1,Dog Standing with Eyes and White Nose Print,28 +62020,Sticker Sheet for 8113-1,17 +6203,Scala Utensil Oval Case,42 +6204,Belville Horse Bridle,42 +6205,Tile Special 6 x 16 with Studs on Edges,15 +6206,Scala Baby Bottle / Water Bottle,27 +6207stk01,Sticker for Set 6207 - (54913/4286505),17 +6210stk01,Sticker for Set 6210 - (55026/4287822),17 +62113,Bar 1 x 4 x 3 [End Tabs],32 +6211stk01,Sticker for Set 6211 - (55664/4291721),17 +6212,Brick 4 x 10,11 +6213,Brick 2 x 6 x 3,11 +6213p02,"Brick 2 x 6 x 3 with Green, Yellow and Blue Dots Print",2 +6213pb01,"Brick 2 x 6 x 3 with Red, White, Blue Flowers Print",2 +6213pb02,Brick 2 x 6 x 3 with Monster Face Print,2 +6213pb03,Brick 2 x 6 x 3 with Star Badge and Black 'POLICE' Print,2 +6213pb04,Brick 2 x 6 x 3 with Black Animal Stripe Print,2 +6213pb05,Brick 2 x 6 x 3 with Boat Print,2 +6213pb06,Brick 2 x 6 x 3 with Green and Yellow Fish Print,2 +6213pb07,Brick 2 x 6 x 3 with Flame 10 Print,2 +6213pb08,Brick 2 x 6 x 3 with Flame 30 Print,2 +6213pb09,Brick 2 x 6 x 3 with Flame 50 Print,2 +6213px1,Brick 2 x 6 x 3 with Tools Print,2 +6213px2,"Brick 2 x 6 x 3 with Green, Red and Blue Stripes Print",2 +6213px3,Brick 2 x 6 x 3 with Butterfly Print,2 +6213px4,Brick 2 x 6 x 3 with Blue Flowers Print,2 +6214,"Brick, Modified 2 x 8 x 4 with Triple Curved Ends",37 +6214pb01,"Brick, Modified 2 x 8 x 4 Triple Curved Ends with Clock Print",37 +6214px1,"Brick, Modified 2 x 8 x 4 Triple Curved Ends with 7 Pears Print",37 +6214px2,Brick Curved 2 x 8 x 4 Triple Curved Ends with 7 Apples Print,37 +6215,Brick Curved 2 x 3 with Curved Top,37 +6216,"Brick Curved 2 x 4 x 2 No Studs, Triple Curved Top",37 +6216a,Electric Motor 4.5V Type 1 for 2-Prong Connectors without Middle Pin,45 +6216b,Electric Motor 4.5V Type 2 for 2-Prong Connectors with Middle Pin,45 +6216m,"Electric, Motor 4.5V",45 +6216p01,"Brick 2 x 4 x 2 No Studs, Triple Curved Top with Ladybug Antenna Print",37 +6216p02,"Brick Curved 2 x 4 x 2 No Studs, Triple Curved Top with Monster Eyes Print",37 +6216p03,"Brick Curved 2 x 4 x 2 No Studs, Triple Curved Top with Eyes Simple Print",37 +6217,"Arm Piece with Pin, 3 Fingers",18 +6217b,"Arm Piece with Pin, 3 Fingers and Outside Thread Grooves",18 +6219,"Wedge, Plate 16 x 14 Shuttle",49 +6222,Brick Round 4 x 4 with 4 Side Pin Holes and Center Axle Hole,20 +62233,Bionicle Weapon Midak Skyblaster with Black Housing Complete Assembly,41 +62243,"Cloth Truck Cover with Sectioned Panels Print, 4 Holes each Side",38 +6228a,Dolphin (Normal Connection - Without Axle Holder),28 +6228b,Dolphin (Normal Connection - With Axle Holder),28 +6228c,Dolphin (Abnormal Connection - Exclusive to Trans-Light Blue),28 +6230,Tyre Smooth Small with White Hollow Fixed Center (Space Shuttle Wheel),29 +6231,Panel 1 x 1 x 1 Corner,23 +623.1stk01,Sticker for Set 623-1 - Medic's Car,17 +6232,Brick Special 2 x 2 with Pin and Axle Hole,5 +6233,Cone 3 x 3 x 2,20 +6234,Door 1 x 6 x 6 Freestyle,16 +6235,Door Frame 2 x 6 x 6 Freestyle,16 +62359,Wheel Cover 7 Spoke for Wheel 55982,29 +6236,Window 2 x 6 x 6 Freestyle,16 +62360,Windscreen 3 x 6 x 1 Curved,47 +62360pr0001,Windscreen 3 x 6 x 1 Curved with Black Window Outline Print,47 +62361,Mudguard 1 1/2 x 6 x 1 [Arch Extended],36 +62363,Legs and Hips with Indiana Jones Belts and Holster Print,13 +6238,Windscreen 4 x 4 x 1,47 +62386,Bionicle Foot with Ball Joint Socket with Flat Top 3 x 6 x 2 1/3,41 +6239,Tail Shuttle,35 +6239px1,Tail Shuttle with Police Blue Checkered Print,35 +6239px2,Tail Shuttle with Shark Skeleton Print [6735],35 +6239px3,Tail Shuttle with Res-Q and Black Lines Print [4607 / 4610],35 +6239px4,Tail Shuttle with 'TP-710' Print,35 +6239px5,"Tail Shuttle with Blue Arrow, Dot Fade Print",35 +62408,Minifig Breastplate with Shoulders - Troll Warrior (Orc),27 +62409,Minifig Breathing Apparatus (Cad Bane),27 +6243,Animal Dog Head 2 x 4 x 2 & 1/3,24 +62436,Dragon Leg Right,28 +62436pat0001,Dragon Leg (Fantasy Era) Right with Dark Red Claws and Hip Pattern,28 +62436pat0002,Dragon Leg (Fantasy Era) Right with Black Claws and Hip Pattern,28 +62436pat0003,Dragon Leg (Fantasy Era) Right with Black Claws and Metallic Gold Hip Pattern,28 +62436pat0004,Dragon Leg (Castle) Right with Black Claws and Hip Print,28 +62438,Dragon Leg Left,28 +62438pat0001,Dragon Leg (Fantasy Era) Left with Dark Red Claws and Hip Pattern,28 +62438pat0002,Dragon Leg (Fantasy Era) Left with Black Claws and Hip Pattern,28 +62438pat0003,Dragon Leg (Fantasy Era) Left with Black Claws and Metallic Gold Hip Pattern,28 +62438pat0004,Dragon Leg (Castle) Left with Black Claws and Hip Print,28 +6244,Animal Horse Head 2 x 6 x 4 & 1/2,24 +6244px1,Horse Head 2 x 6 x 4 1/2 with Black Mane Print,28 +6245,Animal Elephant Head 6 x 7 x 4,24 +62462,Technic Pin Connector Round [Slotted],12 +6247,Technic Link 1 x 11,26 +6248,Wheel Freestyle with Pin Hole,29 +6249,Brick Special 2 x 4 with Pins,5 +62498c02,Electric Power Functions Light w. Axial Cable Shortcut,45 +6250,Dog Raised Paw [Plain],28 +6250pr01,Puppy Raised Paw with Face Print,28 +6251,Kitten Crouching,28 +62519,Technic Universal Joint 3L Centre,24 +6251pr0001,"Kitten Crouching with Black Eyes, Nose, and Whisker Dots Print",28 +6251pr0002,"Kitten Crouching with Black Eyes, Eyelashes, and Nose Print",28 +6251pr0003,"Kitten Crouching with Black Eyes, Dark Brown Stripes on Head, and White Muzzle Print",28 +6251pr02,"Kitten Crouching with Black Eyes, Nose, and Stripes Print",28 +6252,Belville Umbrella Top with Rounded Bottom Flaps,42 +62520,"Technic, Universal Joint, 3L",24 +6253,Belville Umbrella Stand with Square Base,32 +62531,Technic Panel Curved 11 x 3 with 2 Pin Holes through Panel Surface,40 +62537,Minifig Jester's Cap [Plain],27 +62537pr0001,Minifig Jester's Cap with Blue Half and Blue Pom Print,27 +62537pr0002,Minifig Jester's Cap with Black Half and White Poms Print,27 +62537pr0003a,Minifig Jester's Cap with Red Half and Red Pom Print,27 +62537pr0003b,Minifig Jester's Cap with Dark Purple Left Side and Dark Purple Right Pom Pom Print,27 +62537pr0004,Minifig Jester's Cap with Dark Purple Left Side and Gold Pom Poms Print,27 +6254,Ice Cream Scoops,27 +6255,Plant 1 x 1 x 2/3 - 3 Large Leaves,28 +6256,Minifig Dish 3 x 3,27 +6256pb01,Minifig Dish 3 x 3 with Dog Biscuit Print,27 +6256pr0001,Minifig Dish 3 x 3 with Red Chilli Peppers and Green and Red Border Print,27 +6256pr0002,LEGO Minifig Dinner Plate with Decoration (29022),27 +6256stk01,Sticker for Set 6256 - (822070),17 +62575,Ant [Plain],28 +62575pat0001,Ant - Translucent with Marbled Off-Black Pattern,28 +62576,Windscreen 5 x 8 x 2,47 +6259,Cylinder Half 2 x 4 x 4,20 +6259pr0001,Cylinder Half 2 x 4 x 4 with Window and Flower Box Pattern,20 +6260,Torso Skeleton [Thin Shoulder Pins],13 +62604,Shark Head [Plain],24 +62604pat0002,"Shark Head with Gold Teeth, Rivets and '115' Print (Sharkanator)",28 +62604pat01,Shark Head with White Teeth and Black Eyes Print,28 +62605,Shark Body with Gills [Plain],24 +62605pat01,Shark Body with Gills and White Teeth Pattern,28 +62605pat02,Shark Body with Gills and Gold Teeth Pattern (Sharkanator),28 +62606,Shark with Gills - Complete Assembly [Plain],24 +62606pat0001,Shark with Gills with White Teeth and Black Eyes Print [Complete Assembly],28 +62606pat02,"Shark with Gills, Gold Teeth, Rivets and '115' Print (Sharkanator) [Complete Assembly]",28 +6261,"Baseplate 32 x 48 Raised with Ramp, Pit, and Stairs",1 +6261px1,Baseplate Raised 32 x 48 x 6 with Center Pit and Stones Print [6090],1 +6264stk01,Sticker for Set 6264 - (822070),17 +6265,Arm Skeleton,13 +6266,Leg Skeleton,13 +62664,Duplo Arch 2 x 8 x 2 with Support,4 +6267,Windscreen 2 x 12 x 4,47 +62670,Duplo 3 Blade Propeller,4 +62679,Duplo Airplane Cargo Engine,35 +62691,MINIFIGURE ARM W/CORED KNOB (Mech Arm),13 +62694,Windscreen 8 x 6 x 4 with Locking Dual 2 Fingers,47 +62695,Minifig Grappling Hook with Pin and Extension,27 +62696,Minifig Hair Ponytail Long with Side Bangs,13 +62697,HELMET FOR MINI FIG. W/JAW,27 +62698,Minifig Laptop,27 +62699,"Minifig Hair Spiked Top, Plain",13 +62699pr0001,Minifig Hair - Spiked Top with Orange Streaks Print,13 +62699pr0002,Minifig Hair Spiked Top with Lime Green Streaks Print,13 +62700,Minifig Barbed Wire Coil,27 +62701,Wheel Cover 9 Spoke - 18mm D. - for Wheel 55982,29 +62711,"Minifig Hair Short, Bob Cut",13 +62712,Technic Brick Special 2 x 2 with Ball Receptacle Reinforced and Axle Hole,26 +62713,Minifig Peruvian Temple Idol,27 +62723,"Torso/Head Martian with Chest Hole, Alien Commander [Plain]",24 +62723pat0001,"Torso/Head Martian with Chest Hole, Alien Commander with Marbled Trans Green Pattern",13 +62724,Arm / Leg Mechanical - Alien,13 +6272c01,Electric RC Battery / Receiver Unit with Auxiliary Output [RC Vehicles],45 +62743,Plate Special 2 x 16 with Angled Side Extensions and Hole (Rotor Blade),9 +62780,"Duplo Airplane Small with Rear Cargo Bay, Light Bluish Gray Wheels Assembly and Zebra Stripes Print",4 +6278stk01,Sticker for Set 6278 - (822070),17 +62791,"Boat Hull Unitary 51 x 12 x 6 with Side Bulges, Base",35 +62791c01,"Boat Hull Unitary 51 x 12 x 6 with Side Bulges and Dark Bluish Gray Top, Complete Assembly",35 +62808,Minifig Key,27 +62810,"Minifig Hair Short, Tousled with Side Part",13 +62812,"Boat, Rubber Raft - Large",35 +6282,Steering Unit [RC Vehicles],25 +62821,Technic Differential with Inner Tabs and Closed Center- 28 Bevel Teeth,52 +62821a,"Technic, Gear Differential with Inner Tabs and Open Center, 28 Bevel Teeth",52 +62832,WAGGON BOTTOM 2X4,24 +62835,Duplo Figure with Clown Hair,24 +62835pr0001,Duplo Figure with Red Clown Hair and Light Flesh Painted Face - Lime Top with 3 Buttons and Flower - Orange Legs,4 +62835pr0002,Duplo Figure with Green Clown Hair - Light Flesh Painted Face - Red Top with Notched Lapels - Medium Blue Legs,4 +62840,Electric Mindstorms NXT Temperature Sensor,45 +6284c01,"Duplo, Toolo Brick 2 x 2 with Angled Bracket with Forks and 2 Screws",4 +62873,REFRIGERATOR DOOR,24 +62885,Minifig Automatic Pistol Medium Barrel,27 +6292,"Duplo, Toolo Tyre for Duplo Toolo Wheel (6290)",29 +6292stk01,Sticker for Set 6292 - (822070),17 +62930,Light Brick 2 x 3 x 1 1/3 with Dark Bluish Gray Base [Yellow LED],45 +62931,Electric Sound Brick 2 x 4 x 2 with Trans-Clear Top and Klaxon Alarm Sound [8634],45 +6293c01,"Electric, RC Race Buggy Battery / Receiver Unit without Auxiliary Output",45 +6294,"Duplo, Toolo Scoop 6 x 4 x 3",4 +62941,Duplo Figure Adult Male with Top Hat (Silkhat),24 +62941pr0001,Duplo Figure Adult Male with Top Hat (Silkhat) - Light Flesh Face with Mustache - Red Bow Tie and 4 Button Vest,4 +62941pr0008,Duplo Figure Adult Male with Top Hat - Light Flesh Face with Mustache - Circus Ringmaster,4 +62981,"DUPLO CABIN, DEC. CIRCUS",24 +630,Conveyor Belt (Complete Assembly),36 +63017,"Duplo Brick 2 x 2 Slope 45 with Octan, Digits and Gas Gauge Print",4 +63024,"CURVE 2X4X2, DEC.CARGO LOGO",4 +63026,"DUPLO BRICK 1X2X2, DEC. OCTAN",4 +63082,"Plate Special 2 x 2 with Towball Socket, Short, Flattened with Holes and Axle Hole in Center",9 +6309,Duplo Tile 2 x 2,4 +6309p09,Duplo Tile 2 x 2 with Shape Blue Isosceles Triangle Print,4 +6309p0b,Duplo Tile 2 x 2 with Shape Blue Right Triangle Print,4 +6309p0c,Duplo Tile 2 x 2 with Shape Blue Quarter Disc Print,4 +6309p0e,Duplo Tile 2 x 2 with Shape Blue Disc Print,4 +6309p0g,Duplo Tile 2 x 2 with Shape Blue Square Print,4 +6309p0h,Duplo Tile 2 x 2 with Shape Green Isosceles Triangle Print,4 +6309p0t,Duplo Tile 2 x 2 with Shape Red Isosceles Triangle Print,4 +6309p0v,Duplo Tile 2 x 2 with Shape Red Right Triangle Print,4 +6309p0w,Duplo Tile 2 x 2 with Shape Red Quarter Disc Print,4 +6309p0y,Duplo Tile 2 x 2 with Shape Red Disc Print,4 +6309p10,Duplo Tile 2 x 2 with Shape Red Square Print,4 +6309p11,Duplo Tile 2 x 2 with Shape Yellow Isosceles Triangle Print,4 +6309p13,Duplo Tile 2 x 2 with Shape Yellow Right Triangle Print,4 +6309pb001,Duplo Tile 2 x 2 with Number 1 Print,4 +6309pb002,Duplo Tile 2 x 2 with Number 2 Print,4 +6309pb003,Duplo Tile 2 x 2 with Number 3 Print,4 +6309pb004,Duplo Tile 2 x 2 with Number 4 Print,4 +6309pb005,Duplo Tile 2 x 2 with Number 5 Print,4 +6309pb006,Duplo Tile 2 x 2 with Number 6 Print,4 +6309pb007,Duplo Tile 2 x 2 with Number 7 Print,4 +6309pb008,Duplo Tile 2 x 2 with Number 8 Print,4 +6309pb009,Duplo Tile 2 x 2 with Number 9 Print,4 +6309pb010,Duplo Tile 2 x 2 with Number 0 Print,4 +6309pb011,Duplo Tile 2 x 2 with Less Than ( < ) / Greater Than ( > ) Print,4 +6309pb012,Duplo Tile 2 x 2 with Equal To ( = ) Print,4 +6309pb013,Duplo Tile 2 x 2 with Addition ( + ) Print,4 +6309pb015,Duplo Tile 2 x 2 with Minus ( - ) Print,4 +6309pb018,Duplo Tile 2 x 2 with Multiplication ( x ) Print,4 +6310,Duplo Toolo Digger Bucket with 3 teeth,4 +63149,Bionicle Weapon Spined Long Blade,41 +63153,Hero Factory Foot with Claw,41 +63208,MINI UPPER P. W/ARM COR.KNOB (Mech Right Arm),13 +63213,Sticker for Set 8295 - (63213/4528258),17 +63284,Body SW Hutt Juvenile - Torso/Head (Rotta),13 +63359,Minifig Helmet with Jagged Jaw,27 +6335stk01,Sticker for Set 6335 - (170876),17 +6339stk01,Sticker for Set 6339 - Sheet 1 (169665),17 +6339stk02,"Sticker for Set 6339 - Sheet 2, Reflective Rectangles (169656)",17 +6341stk01,Sticker for Set 6341 - (168195),17 +6342stk01,Sticker for Set 6342 - (821422),17 +6344stk01,Sticker for Set 6344 - (821408),17 +6345,Duplo Windscreen 4 x 4 x 2 Curved,4 +6346stk01,Sticker for Set 6346 - (165485),17 +6348stk01,Sticker for Set 6348 - (168215),17 +6349stk01,Sticker for Set 6349 - (160395),17 +6352,Duplo Rotor 3 Blade for Small Helicopter Body (Propeller),4 +6353stk01,Sticker for Set 6353 - (820674),17 +63585,Minifig Floodlight for Helmet SW Clone Trooper with Holes,27 +63586,Minifig Rangefinder for Helmet SW Clone Trooper with Holes,27 +6360,Duplo Building Door Frame / Entryway 4 x 4 x 5,4 +6361,DUPLO CONTROL TOWER,24 +6361stk01,Sticker for Set 6361 - (190145),17 +6365stk01,Sticker for Set 6365 - (192885),17 +63672,Sticker for Set 7627 - (63672/4529356),17 +6369stk01,Sticker for Set 6369 - 9 White Window Stripes (196675),17 +6370stk01,Sticker for Set 6370 - (196685),17 +63710,Duplo Figure Adult with Cap,57 +63710pr0001,Duplo Figure Adult with Blue Cap - Dark Red Long Sleeve Shirt over White Shirt - Light Flesh Face and Hands - Medium Blue Legs,57 +63710pr0002c01,Duplo Figure Adult with Red Cap - Bright Green Long Sleeve Shirt with Light Orange Collar and Pocket Flaps - Light Flesh Face with Closed Mouth Smile - Dark Bluish Gray Legs,57 +63710pr0002c02,Duplo Figure Adult with Red Cap - Bright Green Long Sleeve Shirt with Light Orange Collar and Pocket Flaps - Light Flesh Face with Open Mouth Smile - Dark Bluish Gray Legs,57 +63710pr0003,Duplo Figure Adult with Red Cap - Tan Top under Blue Coveralls with Red Pocket Flap - Light Flesh Face and Hands - Blue Legs,57 +63710pr0004c01,Duplo Figure Adult with Blue Cap - Bright Green Long Sleeve Shirt over White Shirt - Light Flesh Face and Hands - Blue Legs,57 +63710pr0004c02,Duplo Figure Adult with Blue Cap - Bright Green Long Sleeve Shirt over White Shirt - Light Flesh Face and Hands - Medium Blue Legs,57 +63710pr0005,Duplo Figure Adult with Red Cap - Green Long Sleeve Shirt with 'ZOO' on Front and Back - Dark Brown Face and Hands - Tan Legs,57 +63710pr0006,Duplo Figure Adult with Red Cap - Green Long Sleeve Shirt with 'ZOO' on Front and Back - Light Flesh Face and Hands - Tan Legs,57 +63710pr0012,Duplo Figure Adult with Red Cap - Orange Vest over Green Long Sleeve Shirt - Light Flesh Face and Hands - Medium Blue Legs,57 +63710pr0013,Duplo Figure Adult with Red Cap - Tan Shirt and Orange Bandana(Scarf) under Blue Coveralls - Light Flesh Face and Hands - Medium Blue Legs,57 +63716,DUP. WOMAN W/PAGEBOY HAIR,4 +63717,FIGURE NO. 7 - CAPTAIN,57 +63718,FIGURE NO. 13 -,57 +6372stk01,Sticker for Set 6372 - (194325),17 +6373stk01,Sticker for Set 6373 - Sheet 1 (195985),17 +6373stk02,"Sticker for Set 6373 - Sheet 2, 5 White Window Stripes (195986)",17 +6374stk01,Sticker for Set 6374 - (195375),17 +63758,Duplo Figure - Male with Parted Wavy Hair - Use 75115,57 +6376,DUPLO CROSSRAILS,24 +6376stk01,Sticker for Set 6376 - (163145),17 +6377,"Duplo, Train Track Straight (short)",4 +63776,"Arm SW Hutt Juvenile (Rotta), Right",13 +63777,"Arm SW Hutt Juvenile (Rotta), Left",13 +6377stk01,Sticker for Set 6377 - Sheet 1 (195645),17 +6377stk02,"Sticker for Set 6377 - Sheet 2, 5 White Window Stripes (195986)",17 +6378,Duplo Train Track Curved [Short],4 +6379c01,"Duplo, Train Track Switcher with 2 x 2 Studs",4 +6380stk01,Sticker for Set 6380 - (160605),17 +63859,Minifig Head Modified Crystal Skull with Dark Blue Brain,13 +63864,Tile 1 x 3,19 +63864pr0001,Tile 1 x 3 with Silver Outline and Light Aqua Outer Edge Print (Flo),10 +63864pr0004,Tile 1 x 3 with 'WORLD GRAND PRIX' Print [9483],10 +63864pr0005,Tile 1 x 3 with 3 Friends Photos Print,10 +63864pr0006,Tile 1 x 3 with 'Police Public Call Box' Left Side,10 +63864pr0007,Tile 1 x 3 with 'Police Public Call Box' Right Side Print,10 +63864pr0008,Tile 1 x 3 with Minecraft Golem Skin Print,10 +63864pr0009,LEGO Tile 1 x 3 with wood print,10 +63864pr0010,Tile 1 x 3 with Silver Belt Pouch Print,10 +63868,Plate Special 1 x 2 with Clip Horizontal on End,9 +63869,Technic Axle and Pin Connector Perpendicular Triple,12 +6386stk01,Sticker for Set 6386 - (190805),17 +63871,"Duplo, Brick 3 x 2 x 2 Slope",4 +63871pb01,"Duplo, Brick 3 x 2 x 2 Slope with Eye Print",4 +6391,"Duplo, Train Track with Ramps For Car Crossing",4 +6391stk01,Sticker for Set 6391 - Sheet 1 (195645),17 +6391stk02,"Sticker for Set 6391 - Sheet 2, 5 White Window Stripes (195986)",17 +6392,"Duplo, Train Track Bridge End Section With Bottom Support (New Style)",4 +6392stk01,Sticker for Set 6392 - (196705),17 +6393,"Duplo, Train Track Bridge Middle Section, New Style Half Arch With Mid-Support",4 +6393stk01,Sticker for Set 6393 - Window Blinds,17 +6394,"Duplo, Brick 2 x 4 x 2 with 2 x 2 Cutout on Bottom",4 +6394pb02,"Duplo, Brick 2 x 4 x 2 with 2 x 2 Cutout on Bottom with Police Text Print",4 +63965,Bar 6L with Stop Ring,32 +6396stk01,"Sticker for Set 6396 - Sheet 1, Airplane Logos and Schedules (163155)",17 +6396stk02,"Sticker for Set 6396 - Sheet 2, Storage Lockers and Signs Inside Airport (163156)",17 +6398stk01,Sticker for Set 6398 - (821410),17 +6399stk01,Sticker for Set 6399 - (163555),17 +64022,Train Track Flexible Segment,36 +6402stk01,Sticker for Set 6402 - (168205),17 +640.2stk01,Sticker for Set 640-2 - (4608),17 +6405,"DUPLO BARRIER, BASE",4 +6406,"DUPLO BARRIER, LEVER",4 +64065,Pneumatic Pressure Gauge - Manometer (9641),22 +6410,Duplo Plant Vine 13L (Duplo Length),4 +6411,Duplo Plant Tree Trunk Segment Base,4 +6413,"Duplo Tile, Modified 2 x 4 x 1/2 (Thick) with 4 Center Studs",4 +64132,Duplo Plant Bush / Tree Top / Rock Pile with 2 studs,28 +6414,DUPLO HYDRANT,4 +64146,"Duplo Giraffe Baby, New Style",4 +64148,"POLAR BEAR, DEC.",24 +6414stk01,Sticker for Set 6414 - (169615),17 +64150,Duplo Bear Cub New Style,4 +64152,"TIGER, DEC.",4 +64178,Technic Beam 5 x 11 Open Center Frame Thick,55 +64179,Technic Beam 5 x 7 Open Center Thick,55 +6417stk01,Sticker for Set 6417 - (71453/4106597),17 +6418stk01,Sticker for Set 6418 - (170878),17 +64225,Wedge 4 x 3 [No Studs],6 +64225pr0001,Wedge 4 x 3 No Studs with Two Red Arrows Vulture Droid Sensors Print,6 +64227,Electric Power Functions IR Speed Remote Control with Dark Bluish Gray Bottom,45 +64228,Electric Power Functions Battery Box with Dark Bluish Gray Bottom [Non-Rechargeable],45 +64228c01,Electric 9V Battery Box [6xAAA] with Red Bottom,45 +6424,DUPLO STRETCHER,24 +64251,Bionicle Fist with Axle Hole,41 +64253,Bionicle Mask Skrall,41 +64257,Bionicle Mask Tarix,41 +64258,Bionicle Mask Gresh,41 +64258pat0001,Bionicle Mask Gresh with Marbled Lime Pattern,41 +64259,Bionicle Mask Malum [Plain],24 +64259pat0001,Bionicle Mask Malum with Marbled Trans-Orange Pattern,41 +6426,Duplo Hose 11L with over-the-stud-size & stud-size ends,4 +64260,Bionicle Mask Strakk [Plain],24 +64260pat0001,Bionicle Mask Strakk with Marbled Trans-Light Blue Pattern (Glatorian),41 +64261,Bionicle Mask Vorox,41 +64262,Bionicle Head Connector Block (Glatorian),41 +64263,Bionicle Wing Angled with Hose [Plain],24 +64263pat0001,Bionicle Wing Angled with Hose and Lime Center (Tuma),41 +64263pat0002,Bionicle Wing Angled with Hose and Glow in Dark Center (Atakus),41 +64263pat0003,Bionicle Wing Angled with Hose and Red Center (Skrall),41 +64264,Bionicle Weapon Shield Half Ribbed Narrow,41 +64264pat0001,Bionicle Weapon Shield Half Ribbed Narrow with Marbled Lime Edge Pattern,41 +64265,Bionicle Weapon Fire Claw [Plain],24 +64265pat0001,Bionicle Weapon Fire Claw with Marbled Trans-Orange Pattern,41 +64266,Bionicle Weapon Ice Shield Half [Plain],24 +64266pat0001,Bionicle Weapon Ice Shield Half with Marbled Trans-Light Blue Pattern,41 +64268,Bionicle Weapon Broad Axe [Plain],24 +64268pat0001,Bionicle Weapon Broad Axe with Marbled Trans-Light Blue Pattern (Strakk),41 +64269,Bionicle Weapon Ornate [Plain],24 +64269pat0001,Bionicle Weapon Ornate with Translucent Light Blue Blade (Tarix),41 +6427,Suitcase,4 +64271,Bionicle Weapon Saw Blade Shield,41 +64272,"Bionicle Shoulder Armour, Vorox",41 +64272pat0001,"Bionicle Shoulder Armour, Vorox with Marbled Reddish Brown Pattern",41 +64273,Bionicle Ice Armor (Strakk) [Plain],24 +64273pat0001,"Bionicle Ice Armor, Marbled Trans-Light Blue Pattern (Strakk)",41 +64275,"Bionicle Thornax Launcher Half (Glatorian), Liftarm End 1 x 8",41 +64276,Beam 1 x 2 with Ball Joint Straight,55 +64277c01,Bionicle Thornax Fruit Spiked Ball with Black Band,41 +6428,DUPLO HOLE STANDARD,24 +64291,"Bionicle Chest Armour, Stronius",41 +64292,Bionicle Shin / Ankle Guard,41 +64295,"Bionicle Shoulder Armour, Vastus Snake Armour",41 +64296,Bionicle Toa Webbed Fin Armour,41 +64297,Bionicle Weapon Glatorian Flame Sword,41 +64297pat0001,Bionicle Weapon Glatorian Flame Sword with Marbled Yellow Tip Pattern,41 +64299,Bionicle Weapon Double Curved Blade (Mata Nui Scarab Shield Half),41 +6429stk01,Sticker for Set 6429 - (22521/4119848),17 +64300,Bionicle Mask Stronius (Rock Mask),41 +64301,Bionicle Mask Snake (Vastus),41 +64302,Bionicle Mask Manta Ray [Plain],24 +64302pat0001,Bionicle Mask Manta Ray with Marbled Flat Silver Pattern (Kiina),41 +64303,Bionicle Mask Spiked Ice [Plain],24 +64303pat0001,Bionicle Mask Spiked Ice with Marbled Trans-Light Blue Pattern (Gelu),41 +64304,"Bionicle Mask Ignika, Mata Nui version",41 +64305,Bionicle Weapon Thorned Club Half (Stronius),41 +64307,Bionicle Weapon Venom Spear [Plain],24 +64307pat0001,Bionicle Weapon Venom Spear with Pearl Light Gray Tip (Vastus),41 +64308,Bionicle Weapon Vapor Trident,41 +64309,Bionicle Weapon Ice Slicer [Plain],24 +64309pat0001,Bionicle Weapon Ice Slicer with Trans-Light Blue Blade,41 +64311,"Technic Axle and Pin Connector 2 x 7 with Two Ball Joint Sockets, Squared Ends and Axle Hole in Center",12 +64319,Bionicle Mask Atakus,41 +64320,Bionicle Mask Raanu [Plain],24 +64320pat0001,Bionicle Mask Raanu with Marbled Trans-Orange Pattern,41 +64321,Bionicle Mask Metus,41 +64322,Bionicle Mask Berix [Plain],24 +64322pat0001,Bionicle Mask Berix with Marbled Blue Face,41 +64322pat0002,Bionicle Mask Berix with Marbled Orange Face,41 +64323,Bionicle Mask Tarduk,41 +64324,Bionicle Mask Zesk,41 +64327,Bionicle Mask Baranus V7 / Skopio XV-1 Flip Mask,41 +64328,Bionicle Mask Perditus/Sahmad,41 +64330,Bionicle Mask Cendox V1 / Kaxium V3 Flip Mask,41 +64343,Bionicle Mask Tuma (Glatorian),41 +64390,"Door 1 x 4 x 6 Round Top with Window and Keyhole, Reinforced Edge",16 +64391,"Technic, Panel Fairing # 4 Small Smooth Long, Side B",40 +64392,"Technic Fairing #17 Large Smooth, Side A",40 +64393,"Technic Panel Fairing # 6 Long Smooth, Side B",40 +64394,"Technic Panel Fairing #13 Large Short Smooth, Side A",40 +64402,"Duplo Giraffe Adult, New Style (5634)",4 +6440stk01,Sticker for Set 6440 - (164365),17 +64414,Train Buffer Beam with Sealed Magnets and Plow [Type 1],39 +64415,Train Buffer Beam with Plow [Type 1],24 +64417,~Train Buffer Sealed Magnet Casing,39 +6441stk01,Sticker for Set 6441 - Sheet 1 (71449/4106706),17 +6442,Duplo Train Track Point Lever,4 +64422,Train Buffer Beam with Sealed Magnets [Type 1],39 +64424,Train Buffer Beam for Sealed Magnet [Type 1],39 +6442pb01,"Duplo, Brick 2 x 2 x 2 with 1 x 2 Center with Double Sided Arrow Print (Train Track Switching Control)",4 +6442pb02,"Duplo, Brick 2 x 2 x 2 with 1 x 2 Center with Red Straight Arrow Print (Train Track Switching Control)",4 +64448,Support 1 x 6 x 5 Girder Rectangular,34 +64449,Support 1 x 6 x 10 Girder Triangular,34 +64450,Roll Cage 6 x 4 x 3 1/3,36 +64451,Technic Link 1 x 9 Bent (6 - 4),26 +64452,Cow Body,28 +64452pr0001,Cow Body with Pink Muzzle and White Spot on Head Print,28 +64452pr0002,Cow with Black Spots Print,28 +64453,Windscreen 1 x 6 x 3,47 +64453pr0001,Windscreen 1 x 6 x 3 with Eyes on White Background Print,47 +6446,Duplo Container Wooden-Style Crate,4 +6448,Duplo Brick 2 x 4 x 2 Rounded Ends,4 +645,Window 1 x 6 x 2,16 +6452stk01,Sticker for Set 6452 - (72552/4118673),17 +6453pb004,"Duplo Figure, Child Type 2 Boy, Blue Legs, Red Top with White Stripes and Blue Overalls with One Strap",4 +6453pb016,"Duplo Figure, Child Type 2 Girl, Blue Legs, Yellow Top with Collar and 2 Buttons, Black Hair",4 +6453pb026,"Duplo Figure, Child Type 2 Girl, White Legs, White, Red and Yellow Flowers, Brown Hair",4 +64566,Technic Plate Rotor 6 Blade with Clip Ends Connected [aka Water Wheel],9 +64567,Minifig Lightsaber Hilt with Bottom Ring,27 +6456stk01,"Sticker for Set 6456 - Sheet 1, Solar Array Silver Hologram (72547/4116783)",17 +6456stk02,Sticker for Set 6456 - Sheet 2 (72801/4119088),17 +6459stk01,Sticker for Set 6459 - (72549/4116676),17 +645a,"Window 1 x 6 x 2 (old type) with Extended Lip and Solid Studs, no Glass",16 +645ac01,"Window 1 x 6 x 2 (old type) with Extended Lip and Solid Studs, with Fixed Glass",16 +645b,Window 1 x 6 x 2 Classic with Long Sill,16 +645bc01,Window 1 x 6 x 2 [Old Style Extended Lip & Glass],16 +645c,"Window 1 x 6 x 2 3-Pane, without Glass for Slotted Bricks",16 +645cc01,Window 1 x 6 x 2 Classic with Short Sill (Complete),16 +646,Window 1 x 6 x 2 with Shutters,16 +6461,Duplo Building Wall 2 x 6 x 6 with 3 Cupboards,4 +646.1stk01,Sticker for Set 646-1 - (190435),17 +6462,DUPLO COLUMN 2X2X6,24 +6463stk01,Sticker for Set 6463 - (72551/4118672),17 +64644,Minifig Telescope,27 +64645,Boat Hull Brick 16 x 10 x 3,35 +64647,Minifig Feather / Plume Triple Point,27 +64648,Fish [Anti-Stud Mouth],28 +64649,"Baseplate, Raised 18 x 22 No Studs Two Level, 11 Holes",1 +64651,Boat Hull Brick 16 x 13 x 2,35 +64665,Duplo Train Steam Engine Chassis with Light Bluish Gray Drive Rod and Red Wheels,4 +64668,Duplo Train Base 2 x 6 with Light Bluish Gray Train Wheels and Moveable Hook,4 +64680,"Technic Panel Fairing #14 Large Short Smooth, Side B",40 +64681,"Technic Panel Fairing # 5 Long Smooth, Side A",40 +64682,"Technic Fairing #18 Large Smooth, Side B",40 +64683,"Technic, Panel Fairing # 3 Small Smooth Long, Side A",40 +6469,Duplo Furniture Cabinet Door 3 x 3.5,4 +646ac01,"Window 1 x 6 x 2 with Shutters (old type) with Extended Lip and Solid Studs, with Fixed Glass",16 +646b,"Window 1 x 6 x 2 with Shutters (old type) with Extended Lip, no Glass",16 +646bc01,Window 1 x 6 x 2 with Shutters [Old Style Extended Lip & Glass],16 +646c,"Window 1 x 6 x 2 with Shutters, without Glass for Slotted Bricks",16 +646cc01,Window 1 x 6 x 2 Classic Shuttered with Short Sill (Complete),16 +647,Roadsign Square,24 +64700,"Container, Racers Lid (For 64699 Fold-Out Track)",7 +64711,Wheel Hard Plastic with Small Cleats,29 +64712,Wheel Hard Plastic with Small Cleats and Flanges,29 +64713,Cone Jagged - Power Miners Drill,20 +6472,Duplo Furniture Stove 2 x 4 x 2 1/2 with 4 Studs and Burner,4 +64727,Spike Flexible 3.5L,28 +64728,Minifig Dynamite Sticks,27 +6473,Sink,4 +6474,Slope 2 x 2 Slope 45°,4 +6474pb03,"Duplo, Brick 2 x 2 Slope 45 with Octan, 1, 2, 3, 4 and Gas Gauge Print",4 +6474pb05,"Duplo, Brick 2 x 2 Slope 45 with Television Clown Print on Vertical Side",4 +6474pb08,"Duplo, Brick 2 x 2 Slope 45 with Medical Console Diagnostic or Locator Print",4 +6474pb14,"Duplo, Brick 2 x 2 Slope 45 with Africa Map and Lion Print",4 +6474pb19,"Duplo, Brick 2 x 2 Slope 45 with Race Car Print",4 +6474pb20,"Duplo, Brick 2 x 2 Slope 45 with Joystick and Controls Print",4 +6474pb21,"Duplo, Brick 2 x 2 Slope 45 with Calculator Print",4 +6474pb24,"Duplo, Brick 2 x 2 Slope 45 with Octan, Digits and Gas Gauge Print",4 +6474pb28,"Duplo, Brick 2 x 2 Slope 45 with Cash Register Print",4 +6474pb29,"Duplo, Brick 2 x 2 Slope 45 with Oscilloscope Print",4 +6474pb32,"Duplo, Brick 2 x 2 Slope 45 with Silver Window Print on Both Sides",4 +6474pb33,"Duplo, Brick 2 x 2 Slope 45 with Eye with White Spot and Curve Print on Both Sides",4 +6476,Duplo Furniture Couch / Sofa with Rounded Back and Eight Studs,4 +64766,"Electric Motor RC with Steering Mechanism and Receiving Unit, Dark Bluish Gray Base",45 +64767,Minifig Head Modified Squidward [Plain],24 +64767pr0001,Minifig Head Modified Squidward,13 +6477,"Duplo Furniture Chair with 4 Studs, Curved Back and Feet",4 +64771,LEVER FRONT 2X6X2,24 +64772,LEVER BACK 2X4X2,24 +64776,Die - 6 Sided Rubber Frame with Centre Studs (Board Games) [Plain],24 +64776pat0001,Die - 6 Sided Rubber Frame with Red Centre Studs (Board Games),5 +6478,Duplo Furniture Chair with 4 Studs and Squared Back,4 +64781,Technic Gear Rack 1 x 13 with Axle and Pin Holes,52 +64782,Technic Panel 1 x 5 x 11,40 +64783,Arm Rock Monster Small,13 +64784,Body Rock Monster [Plain],24 +64784pat01,Body Rock Monster with Dark Bluish Gray Pattern,13 +64784pat01c01,Body Rock Monster - Torso/Legs with Dark Bluish Gray Arms Assembly,24 +64784pat02,Body Rock Monster with Black Pattern,13 +64784pat02c01,Body Rock Monster - Torso/Legs with Black Arms Assembly,24 +64785,"Head Rock Monster, Jaw Upper [Type 1]",13 +64786,"Rock Monster, Assembled [Type 1]",24 +6479,Duplo Furniture Table Square with 4 Top Studs,4 +64796,Arm Mechanical Super Battle Droid with Blaster End,13 +64797,Minifig Helmet SW Neimoidian Viceroy,27 +64798,Minifig Hair - Swept Back with Widow's Peak,13 +64798pr0120,Hair Swept Back with Widow's Peak - White Side Streaks Print,13 +64799,Plate Special 4 x 4 with 2 x 2 Cutout,9 +647p01,Roadsign Square with Parking Print,38 +648,Baseplate 16 x 32 with Railway Station Stud Print [342],1 +64800,"Tauntaun, Complete Assembly",28 +64800pb01c02,"Tauntaun, Complete Assembly",24 +64800pb01c02f,Tauntaun - Flexible Tail [Complete Assembly],28 +64802,Minifig Jet Pack with Nozzles,27 +64803,Minifig Helmet SW Rebel Commando [Plain],24 +64803pr0001,Minifig Helmet SW Rebel Commando,27 +64803pr0002,REBEL HELMET ENDOR NO.2,27 +64803pr0003,Headgear Helmet SW Rebel Commando with Flat Silver Band and Yellow Insignia Pattern,27 +64804,Minifig Head Modified Yoda Straight Ears with Large Eyes [Plain],24 +64804pr01,Minifig Head Modified Yoda Straight Ears with Large Eyes and Gray Hair Print,13 +64804pr02,Minifig Head Modified Yoda Straight Ears with Large Eyes and White Hair Print,13 +64805,Minifig Head Ewok [Plain],13 +64805pr0001,Minifig Head Modified Ewok with Reddish Brown Hood with White Tooth Print,13 +64805pr0002,Minifig Head Modified Ewok with Dark Orange Hood with Reddish Brown Stitching Print,13 +64805pr0003,Minifig Head Modified Ewok with Tan Hood with Dark Orange Feathers Print,13 +64805pr0004,Minifig Head Modified Ewok with Dark Green Hood Print,13 +64805pr0005,Minifig Head Modified Ewok with Dark Orange Hood and Tan Face Paint Print,13 +64805pr0006,Minifig Head Modified Ewok with Olive Green Hood Print,13 +64807,"Minifig Hair Female Short with Braid around Sides, Hole On Top",13 +64808,Minifig Head Mon Calamari [Plain],24 +64808pr0001,Minifig Head Modified Mon Calamari,13 +64808pr0002,Minifig Alien Head SW Mon Calamari with Small Reddish Brown Skin Texture Markings and Orange and Black Eyes with Eyelids,13 +6483stk01,Sticker for Set 6483 - (168175),17 +64847,Cow Horn,28 +64867,Wedge 4 x 4 Fractured Polygon Top,6 +64867pr0001,Wedge 4 x 4 Fractured Polygon Top with Black Facets Print,6 +64867pr01,Wedge 4 x 4 Fractured Polygon Top with Dark Bluish Gray Facets Print (Rock Monster Giant),6 +64889pr0001,Technic Tread Sprocket Wheel Small with Glatorian Game Print,29 +64892,Electric Colour Sensor - NXT2,45 +649,Roadsign Triangle,38 +6490,Duplo Plate 8 x 16,4 +64939,Curve 2 x 4 x 2 with Post Print,4 +64941,Bionicle Weapon Saw Blade Shield with Red Geometric Print,41 +64951,Container - Barrel Half Large with Axle Hole,7 +6496,Swing Frame,4 +6497,Duplo Fence 1 x 6 x 2 Paled (Picket),4 +64991,Cloth Sail Rectangle 27 x 17,38 +649p01,Road Sign Triangle with Level Crossing Print,38 +649p01b,"Road Sign Triangle with Level Crossing Small, Thick Print",38 +649p02,Road Sign Triangle with Road Crossing Print,38 +649pb02,"HO Scale, Mercedes Tanker with 'SHELL' Print",38 +649pb03,Road Sign Triangle with Pedestrian Crossing 1 Person in Crosswalk Print,38 +649pb04,Road Sign Triangle with Pedestrian Crossing 2 People Print,38 +649pb06,Road Sign Triangle with Train Engine Print,38 +649pb06a,Road Sign Triangle with Train Engine with Cab Window Print,38 +649pb07,Road Sign Triangle with Children Playing Print,38 +649pb08,Road Sign Triangle with Skidding Car Print (Undetermined Car Style),38 +649pb08a,Road Sign Triangle with Skidding Car Print (Old Car with Tire on Back),38 +649pb08b,Road Sign Triangle with Skidding Car Print (Newer Car no Tire on Back),38 +649pb09,Road Sign Triangle with Roadworks Print,38 +649pb10,Road Sign Triangle with Roadworks [2 Piles] Print,38 +649pb11,Road Sign Triangle with Pedestrian Crossing 1 Person Print,38 +650,Hinge Coupling - Nylon,18 +6504,Duplo Utensil Video Camera,4 +6505,Duplo Trailer with Hitch Ends,4 +6505pb01,Duplo Trailer with Hitch Ends and Green and Red Stripe Print,4 +650pb01,"HO Scale, Mercedes Tanker with 'ESSO' Print",24 +6510,Flower with 1 Top Stud,4 +6511,DUPLO STAIRCASE,24 +6514,Duplo Swing Seat,4 +6515,Duplo Technic Brick 2 x 10 with 9 holes,4 +6517,Duplo Technic Brick 2 x 4 with 3 Holes,4 +6517stk01,Sticker for Set 6517 - (170875),17 +65182stk01,Sticker for Set 65182,17 +6519stk01,Sticker for Set 6519 - (23033/4141683),17 +6520stk01,Sticker for Set 6520 - (22621/4129794),17 +6521,Duplo Technic Axle 8,4 +6521c01,Duplo Technic Axle 8L with Paddle Wheel Gear,4 +6522,Duplo Technic Axle 6,4 +6523,Duplo Technic Axle 6L with Paddle Wheel Gear,4 +6524,Duplo Technic Beam 7,4 +6525,Duplo Technic Beam 11,4 +6526,Duplo Technic Crank Handle,4 +6527,Duplo Technic Wedge Belt Wheel,4 +6527c01,Duplo Technic Wedge Belt Wheel with 28L Cord (x77c) and Duplo Hook Short With Crossbar,4 +6529,Duplo Technic Gear 4 x 4,4 +6530,Duplo Technic Gear 6 x 6,4 +6534cx1,Duplo Animal Horse Pony with White Spots Print,4 +6536,Technic Axle and Pin Connector Perpendicular,12 +6538a,Technic Axle Connector Ridged [with + Hole + Orientation],12 +6538b,Technic Axle Connector Ridged [with x Hole x Orientation],12 +6539,Technic Driving Ring 2L,52 +6540a,"Technic, Steering Arm Large with Hub - Pin Connection",25 +6540b,"Technic, Steering Arm Large with Hub - Axle Connection",25 +6541,Technic Brick 1 x 1 with Hole,8 +6541stk01,Sticker for Set 6541 - (820672),17 +6542a,Technic Gear 16 Tooth with Clutch [Toothed],52 +6542b,Technic Gear 16 Tooth with Clutch [Smooth],52 +6542stk01,Sticker Sheet for 6542-1,17 +6543,Technic Stick Shift Plate,26 +6545stk01,Sticker for Set 6545 - (170871),17 +6546,Door 1 x 2 x 3 with Vertical Handle,16 +6549,Technic Stick Shift,26 +655,Hinge Brick 1 x 8 Complete Assembly,18 +6550stk01,Sticker for Set 6550 - (71473/4106980),17 +6551,Electric Pole Reverser / Polarity Switch without Center Part,45 +6551c01,Electric Pole Reverser / Polarity Switch with Center Part [Complete Assembly],45 +6552,Electric Pole Reverser Centre,45 +6553,Axle 1.5 with Perpendicular Axle Connector (Technic Pole Reverser Handle),12 +65535g1,X-Pod Play Off Game Board,17 +65535g2,X-Pod Play Off Game Cards - Set of 50,17 +6553stk01,Sticker for Set 6553 - (71472/4106981),17 +6556,Window 1 x 4 x 3 Train with Shutter Holes and Solid Studs on Ends,16 +6556stk01,Sticker for Set 6556 - (71444/4106705),17 +6557stk01,Sticker for Set 6557 - (71445/4106602),17 +6558,Technic Pin Long with Friction Ridges Lengthwise,53 +6558stk01,Sticker for Set 6558 - Sheet 1 (71447/4106601),17 +6558stk02,"Sticker for Set 6558 - Sheet 2, Fish and Coral (71452/4106596)",17 +6559stk01,Sticker for Set 6559 - Sheet 1 (71448/4106600),17 +6559stk02,"Sticker for Set 6559 - Sheet 2, Fish and Coral (71452/4106596)",17 +6560stk01,Sticker for Set 6560 - Sheet 1 (71450/4106599),17 +6560stk02,"Sticker for Set 6560 - Sheet 2, Fish and Coral (71452/4106596)",17 +6564,Wedge 3 x 2 Right,6 +6565,Wedge 3 x 2 Left,6 +6567c01,Windscreen 2 x 6 x 2 Train with Trans-Clear Glass,47 +6567c02,Windscreen 2 x 6 x 2 Train with Trans-Black Glass,47 +6571,Technic Steering Arm Small,25 +6571stk01,Sticker for Set 6571 - (168135),17 +6572,Technic Steering Knuckle Arm with Ball Joint,25 +6573,"Technic Gear Differential, 24 -16 Teeth",52 +6573stk01,Sticker for Set 6573 - (72651/4118701),17 +6574,Technic Gear Rack 1 x 2 with Ball Joints,52 +6575,Technic Cam,26 +6576,Plate Special 4 x 8 with Studs in Centre,9 +6578,Tyre 30.4 x 14 VR,29 +6579,Tyre 43.2 x 28 Balloon Small,29 +6579stk01,Sticker for Set 6579 - (72639/4118669),17 +6580,Wheel 43.2 x 28 Balloon Small,29 +6580a,Wheel 43.2 x 28 Balloon Small with + Shape Axle Hole,29 +6581,Tyre 20 x 30 Balloon Medium,29 +6582,Wheel 20 x 30 Balloon Medium,29 +6582stk01,Sticker for Set 6582 - (71615/4110097),17 +6583,Plate Special 1 x 6 with Train Wagon End Fence,32 +6584,Train Base 6 x 24 with Two 1 x 2 Cutouts and 3 Round Holes Each End,36 +6585,Gearbox 4 x 4 x 1 2/3,26 +6587,Technic Axle 3 with Stud,46 +6588,Technic Gearbox 2 x 4 x 3 1/3,26 +6589,Technic Gear 12 Tooth Bevel,52 +6589stk01,Sticker for Set 6589 - (71852/4114525),17 +6592,Technic Gear Rack 1 x 10 with Holes,52 +6592stk01,Sticker for Set 6592 - (160395),17 +6594,Tyre 49.6 x 28 VR,29 +6594stk01,Sticker for Set 6594 - (165355),17 +6595,Wheel 49.6 x 28 VR with Axle Hole,29 +6595stk01,Sticker for Set 6595 - (821406),17 +6596,Tyre 81.6 x 14.2 Motorcycle Z Racing Tread,29 +6596stk01,Sticker for Set 6596 - (169595),17 +6597stk01,Sticker for Set 6597 - (168155),17 +6599stk01,Sticker for Set 6599 - (71623/4107864),17 +6602stk01,Sticker for Set 6602-1 - (4315),17 +6606stk01,Sticker for Set 6606 - (195055),17 +6610stk01,Sticker for Set 6610 - (192915),17 +6615stk01,Sticker for Set 6615 - (170880),17 +6616stk01,Sticker for Set 6616 - (23064/4142013),17 +661pb01,"HO Scale, VW Beetle (longer version)",17 +6625stk01,Sticker for Set 6625 - (170874/821408),17 +6626.1stk01,Sticker for Set 6626-1 - (4403),17 +6628,Technic Pin with Friction Ridges Lengthwise and Towball,53 +6629,Technic Beam 1 x 9 Bent (6 - 4) Thick,51 +6630,Technic Gear Rack 1 x 8 with Holes,52 +6631,Technic Changeover Plate,26 +6632,Technic Beam 1 x 3 Thin,51 +6634stk01,Sticker for Set 6634,17 +6636,Tile 1 x 6 with Groove,19 +6636p03,"Tile 1 x 6 with ""Solomon"" Print",10 +6636p04,"Tile 1 x 6 with ""R. Guggenheim"" Print",10 +6636p05,"Tile 1 x 6 with ""Museum"" Print",10 +6636pr0009,Tile 1 x 6 with White 'Rockefeller' Print Justified Right,10 +6636pr0010,Tile 1 x 6 with White 'Center®' Print Justified Left,10 +6636pr0011,Tile 1 x 6 with Ruler Print,10 +6636pr0012,Tile 1 x 6 with Red Vertical 'HOTEL' Print,10 +6636pr0013,Tile 1 x 6 with Sand Green Edge Triangles and 5 Lavender Dots print,10 +6636pr0014,LEGO Tile 1 x 6 with Wood Decoration,10 +6636pr0016,"Tile 1x6 with ""UNITED"" Print - from Saturn V 21309",10 +6636pr0017,"Tile 1x6 with ""STATES"" Print - from Saturn V 21309",10 +6636px1,Tile 1 x 6 with Wood Grain Print,10 +6636px2,Tile 1 x 6 with Octan Text Print [6602-2 / 10016],10 +6637,Electric Fibre Optics Element,45 +6641,Technic Changeover Catch,26 +6642,Technic Flex Cable End Double with Pin Connection,26 +6643,Technic Flex Cable End with Pin Connection,26 +6644,Technic Flex Cable End - Ball Connection with Cage,26 +6644a,Technic Flex System Ball Connector (open),24 +6647stk01,Sticker for Set 6647 - (199025),17 +664pb01,HO Scale Mercedes 220S,50 +6668stk01,Sticker for Set 6668 - (165335),17 +6679.1stk01,Sticker for Set 6679-1 - (820675),17 +6683stk01,Sticker for Set 6683,17 +6685stk01,Sticker for Set 6685 - (194235),17 +6689stk01,Sticker for Set 6689 - (196815),17 +6690stk01,Sticker for Set 6690 - (191875),17 +6692stk01,Stickersheet for 6692,17 +6697stk01,Sticker for Set 6697 - (196825),17 +670,Door Frame 1 x 6 x 10,16 +671,Door 1 x 6 x 10,16 +6714c01,Technic Storage Case 36 x 48 with Removable Tray and Dividers,17 +671stk01,Sticker for Set 671 - (4416),17 +6734stk01,Sticker for Set 6734 - (43657/4173450),17 +6736stk01,Sticker for Set 6736 - (43658/4173451),17 +6738stk01,Sticker for Set 6738 - (43661/4173454),17 +675,Roadsign Square Tall,24 +675pr01,Road Sign Square-Tall with Parking 'P' and '300m' Print,38 +675pr02,Road Sign Square-Tall with Parking 'P' Print,38 +676,"Road Sign Rectangle, Axle Pole",38 +6761stk01,Sticker for Set 6761 - (71403/4106330),17 +6762stk01,Sticker for Set 6762 - (71405/4106332),17 +6764stk01,Sticker for Set 6764 - (71352/4106329),17 +6769stk01,Sticker for Set 6769 - (71405/4106332),17 +676p01,"Road Sign Rectangle, Axle Pole with Snack Bar Print",38 +6772stk01,Sticker for Set 6772 - (40327/4144414),17 +6773stk01,Sticker for Set 6773 - (40327/4144414),17 +6774stk01,Sticker for Set 6774 - (40328/4144415),17 +6775stk01,Sticker for Set 6775 - (40329/4144417),17 +678,Homemaker Awning 2 x 6,3 +6787,Playtable with Red Folding Legs,17 +6788,Baseplate 22 x 36 with Curved Ends,1 +679,Homemaker Windowsill Wall Panel 2 x 6 x 2 1/3,23 +6796,Scala Bottle Holder,24 +6797,Technic Engine Air Scoop 4 x 4 x 1 1/3,25 +680c01,"Tread Large, Technic [34 Links]",29 +6815stk01,"Sticker for Set 6815 - Sheet 1, Holographic Stars (170900)",17 +6815stk02,"Sticker for Set 6815 - Sheet 2, Reflective Trapezoid for Part 30034 (170888)",17 +6817stk01,Sticker for Set 6817,17 +6821,Scala Baseplate 44 x 22 with 4 holes,1 +6821b,Scala Baseplate 44 x 22 with 8 holes,1 +6836,Scala Wall Panel 5 x 6 with Four Studs,24 +6837stk01,Sticker for Set 6837,17 +6840c01,Brick Vac Complete Assembly,17 +6840c01pb01,Brick Vac Complete Assembly with Freestyle Bus Print,17 +6840c01px1,Brick Vac Complete Assembly with Parrot Print,17 +685,"Homemaker Figure Head, No Print",13 +6851,Baseplate 12 x 16,4 +6853,Container Storage Case Build-N-Store Chest Divider,7 +6854stk02,"Sticker for Set 6854 - Sheet 2, Holographic Stars (170900)",17 +6857stk01,Sticker for Set 6857 - (75012/4659242),17 +685p01,Maxifig Head with Face Print,13 +685px1c01,Homemaker Figure Torso Assembly and Yellow Head with Eyes and Smile Print,13 +685px2,"Homemaker Figure Head with Eyes, Glasses and Smile Print",13 +685px3,"Homemaker Figure Head with Eyes, Freckles and Smile Print",13 +685px4,"Homemaker Figure Head with Eyes, Eyebrows and Smile Print",13 +685px5,"Homemaker Figure Head with Eyes, Eyebrows and Moustache Print",13 +6863stk01,Sticker for Set 6863 - (75011/4659239),17 +6865stk01,Sticker for Set 6865 - (10867/6008006),17 +6867c01,Storage Suitcase Oval,17 +6869stk01,Sticker for Set 6869 - (10839/6007019),17 +6881a,Tile 6 x 6 without Bottom Tubes,19 +6881b,Tile 6 x 6 with Central Bottom Tube,19 +6881pb01,Scala Tile 6 x 6 with Cooktop Print,10 +6890,Scala Wall 40 x 2 x 24 with Door,42 +6890pb01c01,"Scala Wall, Vertical Grooved 40 x 2 x 22 2/3 with Door, with Tudor Frame Light Salmon on White Print [5404]",23 +6892,Scala Wall 18 x 2 x 24,42 +6892pb01c01,"Scala Wall, Vertical Grooved 18 x 2 x 22 2/3, with Tudor Frame Light Salmon on White Print",42 +6895,Scala Doorframe 14 x 24,42 +6895a,Scala Door Frame - top and bottom dimples 14 x 3 x 21 1/3,42 +6895b,Scala Door Frame - Hinged 14 x 3 x 21 1/3,16 +6896,Scala Door 10 x 20,42 +6896a,Scala Door Mullioned - top and bottom dimples 10 x 1 x 18 2/3,42 +6896b,Scala Door Mullioned - Hinged 10 x 1 x 18 2/3,16 +6899stk01,"Sticker for Set 6899 - Sheet 1, Alien Code",17 +6899stk02,"Sticker for Set 6899 - Sheet 2, Holographic Display",17 +6899stk03,"Sticker for Set 6899 - Sheet 3, Holographic Stars",17 +6904,"Scala Wall, Diamond Shaped Window 8 x 2 x 8",42 +6905stk01,Sticker for Set 6905,17 +6906,"Scala Wall, Arched 18 x 2 x 22 2/3",42 +6907stk01,Sticker for Set 6907,17 +691,Door 1 x 6 x 2 Left,16 +6919,Dish 2 x 2 with Angled Bar,21 +6919stk01,Sticker for Set 6919,17 +692,Door 1 x 6 x 2 Right,16 +6923,Scala Tile 8 x 20 x 2/3 Round Ends,42 +6932a,Scala Accessories Bottle Perfume with Pyramid Base and Atomizer,27 +6932b,Scala Accessories Bottle Perfume with Square Base,27 +6932c,Scala Accessories Bottle Perfume with Rectangle Base,27 +6932d,Scala Accessories Bottle Perfume with Oval Base,27 +6933,"Scala Accessories - Complete Sprue - Toiletries (Simple Bottle, Pump Bottle, Toothpaste Tube)",42 +6933a,Scala Accessories Tube Toothpaste,42 +6933b,Scala Accessories Bottle Pump,42 +6933c,Scala Accessories Bottle Simple,42 +6934,Scala Tile 3 x 6,42 +6934a,Scala Tile 3 x 6,42 +6934b,Scala Tile 3 x 6 with 4 inline Top Studs,42 +6936,Tap 1 x 2 with Dual Handles,27 +6942,Dish 5 x 5 Scala,21 +6944,Scala Utensil Tray with Handles 5 x 4 x 1,42 +6945,Scala Utensil Saucepan,27 +6949stk01,Sticker for Set 6949,17 +6958stk01,"Sticker for Set 6958 - Sheet 1, Alien Code (170910)",17 +6958stk02,Sticker for Set 6958 - Sheet 2 (170912),17 +6958stk03,"Sticker for Set 6958 - Sheet 3, Holographic Display (170889)",17 +6958stk04,"Sticker for Set 6958 - Sheet 4, Reflective Trapezoid Pair (170909)",17 +6958stk05,"Sticker for Set 6958 - Sheet 5, Holographic Stars Pair (170900 Pair)",17 +6966,LEGO Basic without Cushions (6966),24 +6969,Scala Towel Bar 1 x 5,24 +6969stk01,Sticker for Set 6969,17 +697,Idea Book 697,17 +6970stk01,Sticker for Set 6970 - (192425),17 +697.2stk01,Sticker Set for Idea Book 697,17 +6975stk01,Sticker for Set 6975 - Sheet 1 (170909),17 +6975stk02,"Sticker for Set 6975 - Sheet 2, Color Changing Heat Sensitive 2 x 2 Round",17 +6979stk01,Sticker for Set 6979 - Color Changing Heat Sensitive 2 x 2 Round,17 +699,Train Battery Box Car Roof 6 x 14,45 +6991stk01,Sticker for Set 6991,17 +6992,Scala Utensil Skillet,42 +6995,Scala Vase 3 x 3,42 +6999stk01,"Sticker for Set 6999 - Sheet 1, Colour Changing Heat Sensitive 2 x 2 Round",17 +6999stk02,"Sticker for Set 6999 - Sheet 2, Reflective Trapezoid Pair (170909)",17 +69c01,Tap 1 x 2 Base with Light Gray Spout,27 +69c02,Tap 1 x 2 Base with Chrome Silver Spout,27 +69c03,Tap 1 x 2 Base with Light Bluish Gray Spout,27 +700,Brick 10 x 20 [Undetermined Underside Type],11 +70001pb01,Minifig Compass,27 +70001pb02,Minifig Compass with Fleur de Lis Print,27 +70005stk01,Sticker for Set 70005 - (13461/6029842),17 +70008stk01,Sticker for Set 70008,17 +70009stk01,Sticker for Set 70009,17 +70010stk01,Sticker for Set 70010,17 +70022,"Electric, Train 12V 2 x 3 Signal Light Brick with Red and Green Lights",45 +70023,Magnet Cylindrical,39 +70026,"Electric, Train 12V Remote Control Switch Motor 4 x 8 x 1 2/3",45 +70048,"BOW 2X4X2, DEC.ANIMAL CLINIC",24 +70049,Container Storage Folder with 16 Size A4 Transparent Pockets,7 +700e,"Brick 10 x 20 without Bottom Tubes, with '+' Cross Support and 4 Side Supports (early Baseplate)",11 +700ed,"Brick 10 x 20 with Bottom Tubes in single row around edge, with '+' Cross Support",11 +700ed2,"Brick 10 x 20 with Bottom Tubes in single row around edge, with dual '+' Cross Supports",11 +700ex,"Brick 10 x 20 without Bottom Tubes, with '+' Cross Support (early Baseplate)",11 +70132,Cloth Sail 28 x 18 Right with Red and Dark Tan Print,38 +70163,"Train Level Crossing Gate Type 2, Counterweight",36 +70165,Cloth Sail 28 x 18 Left with Red and Dark Tan Print,38 +7017stk01,Sticker for Set 7017 - (54206/4277615),17 +7018stk01,Sticker for Set 7018 - (54208/4277640),17 +7019stk01,Sticker for Set 7019 - (54207/4277616),17 +702,Brick 4 x 4 Corner,11 +7021stk01,Sticker for Set 7021 - (54208/4277640),17 +70278,Crane Hook Metal 1 x 4 x 1,34 +7031stk01,Sticker for Set 7031 - (46033/4194023),17 +7032stk01,Sticker for Set 7032 - (46160/4194473),17 +70358,Train Motor 9V Complete Assembly,45 +7035stk01,Sticker for Set 7035 - (46169/4194476),17 +7039,Wheel Old with 4 Studs,29 +7039b,Wheel Old with 4 Studs and Axle Cam for Motor,29 +7039c,Wheel Old with 4 Studs and Traction Teeth,29 +7039d,Wheel Old with 4 Studs without inner Side Supports (Old Lego Logo),29 +70412,Technic Control 4.5V Interface Cable,45 +7043-1,7043 Firefighter,24 +7043stk01,Sticker for Set 7043 - (48091/4214754),17 +70454c01pb01,Large Figure Head Modified Super Heroes Joker Print,41 +70455,Technic Control 4.5V Interface Box with Ports,45 +7045stk01,Sticker for Set 7045 - (48225/4216367),17 +7047stk01,Sticker for Set 7047 - (48072/4213980),17 +70496,Technic Metal Hook - Large,34 +7049a,"Brick, Modified 2 x 4 with Wheels Holder Old, Opaque Bottom",29 +7049b,"Brick, Modified 2 x 4 with Wheels Holder Old, Clear Bottom",29 +70502stk01,Sticker for Set 70502 - (12606/6019977),17 +70504stk01,Sticker for Set 70504 - (13029/6023025),17 +70505stk01,Sticker for Set 70505 - (13031/6023028),17 +7050stk01,Sticker for Set 7050 - (96456/4626003),17 +7051stk01,Sticker for Set 7051 - (96171/4653111),17 +7052stk01,Sticker for Set 7052 - (96254/4624928),17 +7065stk01,Sticker for Set 7065 - (96457/4626004),17 +7066stk01,Sticker for Set 7066 - Sheet 1 (97956/4639581),17 +7066stk02,Sticker for Set 7066 - Sheet 2 (96458/4626005),17 +7067stk01,Sticker for Set 7067 - Sheet 1 (97943/4639576),17 +7067stk02,Sticker for Set 7067 - Sheet 2 (96459/4626006),17 +70701stk01,Sticker for Set 70701 - (13065/6023206),17 +70702stk01,Sticker for Set 70702 - (13066/6023208),17 +70703stk01,Sticker for Set 70703 - (13068/6023213),17 +70704stk01,Sticker for Set 70704 - (13069/6023216),17 +70705stk01,Sticker for Set 70705 - (13070/6023217),17 +70707stk01,Sticker for Set 70707 - (14277/6037984),17 +70709stk01,Sticker for Set 70709 - (14279/6037989),17 +70720,"Train Wheel, Metal Axle 5 x 112 LDU with Conical Ends",24 +70720c01,Axle Steel 5 x 112 LDU with Conical Ends with Two Train Wheels 9V,24 +7074cdb01,"Paper, Cardboard Base for Set 7074, Island with Water Print",17 +709,Plate Special 4 x 6 with Hole,9 +70903stk01,Sticker Sheet for Set 70903 - 30713/6177262,17 +70928,"Electric, Train Speed Regulator 9V Power Adaptor 230V (Continental European type)",45 +70928b,"Electric, Train Speed Regulator 9V Power Adaptor 240V (UK)",45 +70931,"Electric, Train Speed Regulator 9V Power Adaptor 120V 60Hz",45 +70938,Electric Train Speed Regulator 9V Power Adaptor for 230v 50Hz,45 +7094stk01,Sticker for Set 7094 - (60116/4508187),17 +70961,Technic Rubber Bumper 2 x 4,26 +70962,Technic Rubber Bumper Angled 2 x 2 - 2 x 2,26 +70973,Belville Bucket,7 +709stk01,Sticker for Set 709 - Sheet 1 (004646),17 +709stk02,"Sticker for Set 709 - Sheet 2, Torso Stickers (4585)",17 +710,"Vehicle, Base 6 x 17 with Hole",36 +71015,Minifig Crown,27 +71059,Rubber Belt Extra Extra Large (Round Cross Section) - Approx. 7 x 7,31 +71075,"Brick, Round 1 x 1 x 1 2/3",20 +71076,Brick Round 1 x 1 diameter Tube with 90 Degree Elbow(2 x 2 x 1),20 +71082,Container Storage Lid 19 x 24 [Dacta],17 +71084,Dacta Storage Bin Lid Extra Small,17 +711,Plate Special 5 x 6 with Hole,9 +71128,Dish 2 x 2 x 2/3 Light Reflector,21 +71137,Vehicle Exhaust Pipe,36 +71155,Net 10 x 10 Square,31 +71182,Minifig Car Air Horn,36 +71183,Bar 1L with 1 x 1 x 2/3 Light Holder,36 +71184,Bar 4.5L with Stop Ends,32 +712,Plate Round Curved 4 x 8 Left,21 +71294,Scala Baseplate 44 x 44 with 4 holes,1 +712a,Plate Round Curved 4 x 8 Left with Waffle Bottom,21 +712apb01,Plate Round Curved 4 x 8 Left with Waffle Bottom with Red Line on Curved Edge Print,21 +712b,Plate 4 x 8 Curved Left with Round Bottom Studs and 2 Notches,21 +713,Plate Round Curved 4 x 8 Right,21 +71342,Minifig Accessory Bugle,27 +71396,Canvas Wagon Cover with Oval and Two Crossed Cutlasses Print,24 +71396p01c01,Canvas Wagon Cover with Crossed Cutlasses Print (Formed),38 +713a,Plate Round Curved 4 x 8 Right with Waffle Bottom,21 +713b,Plate 4 x 8 Curved Right with Round Bottom Studs and 2 Notches,21 +71427c01,Electric Motor 9V Mini-Motor [Old Style],45 +715,Wheel Old with 12 Studs,29 +71509,Rubber Band Small 13mm (Square Cross Section),31 +71594,Minifig Suction Cup Gun,27 +715a,Wheel Old with 12 Studs and Axle Cam for motor,29 +716,Brick 2 x 4 Half Round with Cutouts,20 +71603,Electric Light & Sound Insectoid Tail 4 x 20 x 3 (Needs Work),45 +71610,"Boat Hull Unitary 32 x 10 x 1 2/3, Base",35 +71610pb02,"Boat Hull Unitary 32 x 10 x 1 2/3, Base with Coast Guard Print",35 +71727,"Brick, Soft 2 x 2 with Curved Top",37 +71793,IR Transmitter Tower Serial Cable,45 +71797,Cybermaster Unit,45 +7181stk01,Sticker for Set 7181 - (23034/4141698),17 +71846,Cybermaster RF Tower,45 +71861,Belville Basket & Bucket Handle,7 +71958,"Boat Hull Unitary 22 x 8 x 2 1/3, Base",35 +71958c01,Boat Hull Unitary 22 x 8 x 2 1/3 Complete Assembly,35 +71958c01pb01,"Boat Hull Unitary 22 x 8 x 2 1/3 Complete Assembly with Black and White Stripe, Fire Logo and ""327"" Print on Both Sides (Set 6429)",24 +71965,Tread Medium (28 Links),29 +71966,Minifig Helmet - Space with 2 Rear Studs,27 +71972,Vehicle Grille Guard,32 +71981,"Duplo Tread, Thick Cleats",4 +7198stk01,Sticker for Set 7198 - (86428/4550263),17 +72040,Cone 4 x 4 x 6.667 Drill with Grey Peghole,20 +72058,Scala Doll ( Emma from set 5410 with clothes ),13 +7206stk01,Sticker for Set 7206 - (89514/4578534),17 +72092,Scala Trophy,27 +7213stk01,Sticker for Set 7213 - (89511/4578506),17 +72156,Electric Mindstorms EV3 IR-Beacon / Remote Handset,45 +72208,"DISH ABS, DEC. NO. 3",24 +72211,Duplo Brick 2 x 2 with Light Blue Shoe Cinderella Glass Slipper Print,4 +72217,Duplo Brick 1 x 3 x 2 Round Top with Clock Print,4 +72219,Duplo Brick Round 2 x 2 x 2 - Curtains in Arched Window with Heart in Windowsill print,4 +72225,"BRICK 2X4X2, FIRE PLACE",24 +72226,"BRICK 1X2X2, DEC. CHANDELIER",4 +723,"HO Scale Accessory Lamp Post, Lattice Mast",50 +72306,Plastic Sail 5 x 15 with Stripes Print [9483],38 +72326,Minifig Armor Space with Shoulder Protection,27 +72326pr0001,Minifig Armor Space with Shoulder Protection with Silver Classic Space Logo Print,27 +72326pr0002,Minifig Armor Space with Shoulder Protection with Purple Stripe Print,27 +72326pr0003,Minifig Armor Space with Shoulder Protection with Copper Shoulder Plates Print,27 +72326pr0004,Minifig Armor Space with Shoulder Protection with Silver and Copper Classic Space Logo on Left Shoulder Print,27 +7235.1stk01,Sticker for Set 7235-1 - (52799/4261742),17 +7235.2stk01,Sticker for Set 7235-2 - (61983/4520877),17 +7238stk01,Sticker for Set 7238 - (52228/4255339),17 +7239stk01,Sticker for Set 7239 - (52888/4262483),17 +723a,"HO Scale Accessory Lamp Post, Curved Top [UK only]",50 +7240-1,7240 Fire Station,24 +7240stk01,Sticker for Set 7240 - (52816/4261996),17 +7245.1stk01,Sticker for Set 7245-1 - (52800/4261757),17 +72454,Slope Inverted 45° 4 x 4 Double with 2 Holes,3 +72475,"Windscreen 3 x 4 x 4 Inverted, Rounded Top Inside Edges, Cut-Out Bottom Inside Edges",47 +7248stk01,Sticker for Set 7248 - (53050/4263329),17 +72490c01,Zeppelin / Expedition Balloon Complete Assembly,35 +7249stk01,Sticker for Set 7249 - (53230/4265894),17 +72515,"Belville, Clothes Crown",42 +7252stk01,Sticker for Set 7252 - (52257/4256107),17 +72544,Sticker for Set 6577 - (72544/4116780),17 +7260ledc01,Luminara Unduli with Lightup Lightsaber,13 +728,Plate 8 x 11,14 +72824,Minifig Soccer/Basket Ball,27 +72824p01,Minifig Soccer Ball with Black Pentagons Print,27 +72824pr0001,Soccer Ball with Magenta Outlined Heart and Star Print,27 +72824pr01,Sports Soccer Ball with Adidas Blue Print,27 +72824pr02,Sports Soccer Ball with Official World Cup Ball (Fevernova) Print,27 +72824pr03,Sports Soccer Ball with Adidas Official World Cup Ball (Teamgeist) Print,27 +72824pr04,Sports Soccer Ball with Adidas Yellow Print,27 +72826,"Paper, Scoreboard Numbers",17 +7284,Road Sign Round with No Thoroughfare Print,38 +7286stk01,Sticker for Set 7286 - (93164/4599943),17 +7287stk01,Sticker for Set 7287 - (93163/4599941),17 +729,Container - Box 8 x 11 x 3 Top,7 +7297stk01,Sticker for Set 7297 - (54471/4282569),17 +73037,String Reel Winch 2 x 4 x 2 (Light Gray Drum),31 +73037c01,String Reel Winch 2 x 4 x 2 (Light Gray Drum) with String and Light Gray Crane Hook Left,31 +73037c02,String Reel Winch 2 x 4 x 2 (Light Gray Drum) with String and Dark Gray Hook with Towball,31 +73071,"Technic Gear Differential [Old Style, 28 Teeth]",52 +73090a,Weight 2 x 6 x 2 with Bottom Openings and Center Seams on Ends,5 +73090b,Weight 2 x 6 x 2 with Sealed Bottom and Dimples on Ends,5 +73092,Magnet Cylindrical,39 +731,"Technic Shock Absorber 6.5L, Piston Rod with Spring - Normal Spring",25 +73112,Electric Train 12V Manual Switch Motor 4 x 8 x 1 2/3,45 +73129,Technic Shock Absorber 6.5L with Normal Spring,25 +73194c01,Door 1 x 4 x 5 Right with Trans-Clear Glass,16 +73194c02,Door 1 x 4 x 5 Right with Trans-Light Blue Glass,16 +73194c03,Door 1 x 4 x 5 Right with Trans-Black Glass,16 +73194c04,Door 1 x 4 x 5 Right with Reddish Brown Glass,16 +731c01,Technic Shock Absorber 6.5L [Undetermined Spring Type],25 +731c02,"Technic, Shock Absorber 6.5L, Piston Rod with Spring - Undetermined Spring Type",24 +731c03,"Technic, Shock Absorber 6.5L, Piston Rod with Spring - Hard Spring",24 +73241,Duplo Utensil Trophy Cup with Number 1 in Shield - Closed Handles,4 +7325stk01,Sticker for Set 7325 - (94258/4613905),17 +733,"Brick 10 x 10 without Bottom Tubes, without Cross Supports",11 +73312,Door 1 x 4 x 5 Right with 6 Panes,16 +73313,Door 1 x 4 x 5 Left with 6 Panes,16 +73351,DUPLO COLUMN 2X4X3,24 +73352,DUPLO COLUMN 2X8X6,4 +73355,"Duplo Train Steam Engine Funnel Top, Red Top",4 +733ex,"Brick 10 x 10 without Bottom Tubes, with '+' Cross Support (early Baseplate)",11 +735,"Magnet Coupling, Train, for Train Base",39 +73566,DUPLO SHINGLED ROOF 2X4X2,24 +73572,DUPLO TRACTOR,24 +73590c01a,Flexible Hose 8.5L with Tabless Ends (Ends same color as Tube),30 +73590c01b,Hose Flexible 8.5L with Tabless Ends Black (Ends different color than Tube),30 +73590c02a,Flexible Hose 8.5L with Tabbed Ends (Ends same color as Tube),30 +73590c02b,Flexible Hose 8.5L with Tabbed Ends Black (Ends different color than Tube),30 +73590c02c,"Hose, Flexible 8.5L with Tabbed Ends White (Ends different color than Tube)",30 +73590c03a,"Flexible Hose 8.5L with Tabless Ends (Ends same color as Tube, ends not removable)",30 +73590c03b,"Hose Flexible 8.5L with Tabless Ends Black (Ends different color than Tube, ends not removable)",30 +73603,Turntable 4 x 4 (Complete),18 +73696,"Train, Track 12V Switch Point Left, Type 2 - Track Only",45 +73697,"Train, Track 12V Switch Point Right, Type 2 - Track Only",45 +736c02,Train Base 6 x 16 Type I with Wheels and Red and Blue Magnets,39 +737,Plate Special 2 x 4 with Train Coupler Closed for Hook,9 +737a,"Plate, Modified 2 x 4 with Train Coupler Open for Magnet",39 +737ac01,Plate Special 2 x 4 with Train Coupler Open with Magnet Short Cylinder Red,39 +737ac02,Plate Special 2 x 4 with Train Coupler Open with Magnet Short Cylinder Blue,39 +737b,"Plate, Modified 2 x 4 with Train Coupler Open for Hook",14 +737bc01,Plate Special 2 x 4 with Train Coupler Open with Hook,9 +737c01,Plate Special 2 x 4 with Train Coupler Closed with Hook,9 +739,Roadsign Octagonal,24 +73983,Hinge Plate 1 x 4 Swivel Top / Base [Complete Assembly],18 +739p01,Road Sign Octagon with Stop Sign Print,38 +740,"Electric, Train 12V Transformer for 220V",45 +741,Gear Samsonite 14 Tooth,52 +74188,Magnet Brick 2 x 4 Sealed Base with Extension Plate with Hole,39 +742,Gear Samsonite 21 Tooth,52 +74201,Duplo Motorcycle,4 +74261,Hero Factory Joint Extender [High Friction],41 +743,Gear Samsonite 35 Tooth,52 +744,Gear Samsonite 42 Tooth,52 +74623,"Duplo Horse with one Stud and Raised Hoof, Gold Mane & Tail Print",4 +74662,"Minifig Armor Pauldron Cloth, Double",27 +74664,Minifig Armour Kama Cloth,27 +7467bk01,"Fact Book, International Space Station",17 +7468bk01,"Fact Book, Saturn V Moon Mission",17 +7468stk01,"Sticker for Set 7468 - Sheet 1, Saturn V Moon Mission (47264/4205508)",17 +7468stk02,Sticker for Set 7468 - Sheet 2 (7468/4205510),17 +74698,Tile Round 2 x 2 - Thick Lifting Ring,15 +74699,"Bionicle Foot Claw with Ball Socket, Rounded Ends",41 +7469bk01,"Fact Book, Mission to Mars",17 +7469stk01,Sticker for Set 7469 - (47417/4206809),17 +747,Road Sign Triangle,38 +74705,"Duplo Elephant Baby Standing, Angular Eye Print",4 +7470bk01,"Fact Book, Space Shuttle Discovery",17 +7470stk01,Sticker for Set 7470 - (47512/4207365),17 +7471bk01,"Fact Book, Mars Exploration Rover",17 +74730,Duplo Brick 2 x 3 with Curved Top and Eye Print on Both Sides,4 +74746,Train Track 9V Straight,36 +74747,Train Track 9V Curved,36 +74747c04,Train Track 9V Curved (Complete 4 Segments),24 +747p01c01,Road Sign Old Triangle with Generic Warning Print & Type 1 Base,38 +747p01c02,Road Sign Old Triangle with Generic Warning Print & Type 2 Base,38 +747p03c01,Road Sign Old Triangle with Level Crossing Print & Type 1 Base,38 +747p03c02,Road Sign Old Triangle with Level Crossing Print & Type 2 Base,38 +747pb01c01,Road Sign Old Triangle with 'X' Print & Type 1 Base,38 +747pb01c02,Road Sign Old Triangle with 'X' Print & Type 2 Base,38 +747pb02c01,Road Sign Old Triangle with Man Crossing Print & Type 1 Base,38 +747pb02c02,Road Sign Old Triangle with Man Crossing Print & Type 2 Base,38 +747pb03c01,Road Sign Old Triangle with Train Engine Print & Type 1 Base,38 +747pb03c02l,Road Sign Old Triangle with Train Engine Print & Type 2 Base (Train traveling left),38 +747pb03c02r,Road Sign Old Triangle with Train Engine Print & Type 2 Base (Train traveling right),38 +747pb05c01,Road Sign Old Triangle with Curved Road Print & Type 1 Base,38 +747pb05c02,Road Sign Old Triangle with Curved Road Print & Type 2 Base,38 +747pb06c01,Road Sign Old Triangle with Pedestrian Crossing 2 People Print & Type 1 Base,38 +747pb06c02,Road Sign Old Triangle with Pedestrian Crossing 2 People Print & Type 2 Base,38 +74844,Duplo Toolo Arm 2 x 11 with Triangular Set Screw End,4 +74847,Duplo Toolo Arm 2 x 6 with Triangular Set Screw and Clip Ends,4 +74864,Duplo Toolo Tool Screwdriver,4 +749,Fabuland Container Saddlebags,27 +74940,Duplo Storage Tub Lid / Serving Tray (6785),17 +74965,Plate 8 x 8,4 +74967,"Wheel 8 x 9 with Hole Notched for Wheels Holder Pin, Re-inforced Back",29 +74967pr0001,"Wheel 8 x 9 (for Slicks), Hole Notched for Wheels Holder Pin, Reinforced Back with Yellow Rim Edge Print",29 +74968pr0001,Panel 1 x 2 x 3 with Side Supports - Pink Outline Mirror - Hollow Studs,23 +74981,Pneumatic Cylinder 1 x 5 with 2 Inlets,22 +74982,Pneumatic Pump 1 x 5.5,22 +7498stk01,Sticker for Set 7498 - (93310/4604187),17 +75,Hose Rigid 3mm D.,30 +75002stk01,Sticker Sheet for Set 75002-1 (12966 / 6022774),17 +75003stk01,Sticker for Set 75003 - (12968 / 6022778),17 +75020,DUPLO COCK ON FOOT G/WH,24 +75050stk01,Sticker Sheet for Set 75050-1 (17591 / 6074047),17 +75084,DUPLO WATERTANK 2X3X2,24 +751,"Hose, Flexible 8.5L, Tube 7L",24 +75113,Duplo Figure Female Adult with Ponytail,4 +75113pr0001,"Duplo Figure Female Adult with Tan Ponytail, Blue Eyes, White Top with Blue Trim Design and Magenta Legs",57 +75113pr0002,Duplo Figure Adult Female with Ponytail,57 +75113pr0004c01,Duplo Figure Adult Female with Ponytail and Light Flesh Face - Zoo Shirt,57 +75113pr0004c02,Duplo Figure Adult Female with Ponytail and Medium Dark Flesh Face - Zoo Shirt,57 +75113pr0005,"Duplo Figure Female with Brown Ponytail Hair, Brown Eyes, Red Top, Bright Light Blue Legs",57 +75113pr0008,"Duplo Figure Female with Tan Ponytail Hair, Brown Eyes, Bright Light Blue Top, White Legs,",57 +75115,Duplo Male with Parted Wavy Hair,57 +75115a,Duplo Figure - Clown with Green Parted Wavy Hair and Painted Light Flesh Face - Striped Jacket with Bow Tie - Medium Blue Legs,57 +75115b,Duplo Figure - Male with Parted Wavy Hair and Glasses,57 +75115bpr0001,Duplo Figure - Male with Parted Wavy Hair and Glasses on Light Flesh Face - Grandfather,57 +75115bpr0004,Duplo Figure - Male with Parted Wavy Hair and Glasses on Dark Brown Face - Doctor,57 +75115bpr0006,Duplo Figure - Male with Parted Wavy Hair and Glasses on Dark Brown Face,57 +75115bpr0014,Duplo Figure - Male with Parted Wavy Hair and Glasses on Light Flesh Face - Farmer,57 +75115bpr0015,Duplo Figure - Male with Parted Wavy Hair and Glasses on Light Flesh Face - Medic with Lab Coat and Stethoscope,57 +75115pr0002,Duplo Figure - Male with Parted Wavy Hair and Medium Dark Flesh Face,57 +75115pr0003,Duplo Figure - Male with Parted Wavy Hair and Light Flesh Face - Garbage Collector,57 +75115pr0006,"Duplo Figure - Male with Parted Wavy Hair and Light Flesh Face - Shirt with Collar, Pocket, and 4 Buttons",57 +75115pr0008,Duplo Figure - Male with Parted Wavy Hair - Prince,57 +75115pr0009,Duplo Figure - Male with Parted Wavy Hair and Light Flesh Face - Shirt with Collar and 4 Buttons,57 +75115pr0010,Duplo Figure - Male with Parted Wavy Hair and Dark Brown Face - Father Africa,57 +75115pr0012,Duplo Figure - Male with Parted Wavy Hair and Medium Dark Flesh Face - Hispanic Dad - Shirt with Collar and Stripe,57 +75115pr0014,Duplo Figure - Male with Parted Wavy Hair and Light Flesh Face - Cinderella's Prince Charming,57 +75115pr0017,Duplo Figure - Male with Parted Wavy Hair and Light Flesh Face - Prisoner/Crook with Black and White Striped Top with Number 92116,57 +75115pr0021,Duplo Figure - Male with Parted Wavy Hair and Light Flesh Face - Top with Castle Lion Crest,57 +75115pr0022,Duplo Figure - Male with Parted Wavy Hair and White Face - Joker,57 +75115pr0023,Duplo Figure - Male with Parted Wavy Hair and Light Flesh Face - Superman,57 +75115pr0024,Duplo Figure - Male with Parted Wavy Hair and Light Flesh Face - Vendor/Waiter,57 +75115pr0031,Duplo Figure Male with Parted Wavy Hair - Red Shirt with Paw Print Badge and Bright Green Sleeves - Medium Dark Flesh Face - Tan Legs,57 +75121,Duplo Woman [Pageboy Haircut],4 +75121pr0006,Duplo Figure Female with Reddish Brown Pageboy Hair and Light Flesh Face - ZOO on Front and Back Shirt - Tan Legs,4 +75121pr0007,Duplo Figure Female with Black Pageboy Hair and Dark Brown Face - White Top with Buttons and Necklace - Tan Legs,4 +75121pr0008,Duplo Figure Female with Reddish Brown Pageboy Hair and Medium Dark Flesh Face - Bright Green Top with Buttons and Pockets - Orange Legs,4 +75121pr0025,Duplo Figure Female with Reddish Brown Pageboy Hair and Light Flesh Face - Red Sweater with Diamond print - Medium Blue Legs,4 +75126,Duplo Figure Adult Male,4 +75147stk01,Sticker Sheet for Set 75147 - 26758 / 6152447 or 26759 / 6152448,17 +75159stk01,Sticker Sheet for Set 75159 - 27953 / 6160088,17 +75171stkpr01,Sticker Sheet for Set 75171-1 30912 / 6178033,17 +75174,Dragon - Body,28 +752,"Hose, Flexible 8.5L, End 1 x 1 x 2/3 Tabless",24 +75215,Pneumatic Switch with Top Studs,22 +753,Plate Special 2 x 4 with Train Coupler [Open] for Magnet,39 +75347,Support 2 x 2 x 11 Solid Pillar,34 +75347pat01,Support 2 x 2 x 11 Solid Pillar with Marbled Aqua Top Pattern,34 +75348,Technic Shock Absorber 9.5L (Complete),24 +75473,Duplo Utensil Vacuum Cleaner with Contrasting Base,4 +75535,Technic Pin Connector Round [No Slot],12 +75536,DACTA STRING W. WHEEL AND HOOK,4 +75541,"Train, Track 9V Switch Point Right",36 +75541c01,Train Track 9V Point Right (Complete Assembly),24 +75542,"Train, Track 9V Switch Point Left",36 +75542c01,Train Track 9V Point Left (Complete Assembly),24 +75580,DUPLO KILLER WHALE,4 +75681,Duplo Cloth Blanket 5 x 6 with Dark Pink Stars Print,4 +75689,"BABY BLANKET 8X10, STARS, DEC.",4 +75720,DUPLO COW *82556*,24 +75721,DUPLO CALF 83014,24 +75722,DUPLO PIG *82559*,24 +75723,Foal with Small Dark Bluish Gray Spots,4 +75724,DUPLO SHEEP COL 01/199,24 +75726,Piglet on Green Base,4 +75732,DUPLO PONY CHAISE,4 +75737,Swing with Four Studs,4 +7578stk01,Sticker for Set 7578 - (54772/4284956),17 +75839,Minifig Head Modified - Ree Yees,13 +7586stk01,Sticker for Set 7586 - Sheet 1 (62281/4521543),17 +7586stk02,Sticker for Set 7586 - Sheet 2 (62318/4521675),17 +75870stk01,Sticker for Set 75870 - 24744/6142623,17 +75871stk01,Sticker Sheet for Set 75871 - 24748/6141955,17 +75873stk01,Sticker Sheet for Set 75873 - 24755/6142271 or 24757/6142273,17 +75874stk01,Sticker Sheet for set 75874 - 24758/6142617 or 24759/6142618,17 +75875stk01,Sticker for Set 75875 - 24760/6141872 or 24762/6141875,17 +75876stk01,Sticker for Set 75876 - 26357/6148328 or 24764/6139362,17 +75899stk01,Sticker Sheet for Set 75899 - 19242/6097405 or 19665/6100922,17 +758c01,"Hose, Flexible 12L with Tabbed Dark Gray Ends",30 +758c02,"Hose, Flexible 12L with Tabbed Dark Bluish Gray Ends",30 +758c03,"Hose, Flexible 12L with Tabbed Black Ends",30 +75902,Minifig Shield Round Bowed,27 +75902pr0001,Minifig Shield Round Bowed with Bullseye with Star Print [Dark Red],27 +75902pr0002,Minifig Shield Round Bowed with Dark Green and Gold Rohan Print,27 +75902pr0003a,Minifig Shield - Round with Rounded Front and Gold Eagle Print,27 +75902pr0003b,Minifig Shield - Round with Rounded Front and Fish Print,27 +75902pr0004,Minifig Shield Round Bowed with Bullseye with Star Print [Red],27 +75902pr0005,Minifig Shield Round with Rounded Front and Gold Winged Horse Print,27 +75902pr0006,Shield Round Bowed with Mercedes-Benz Logo,27 +75902pr0007,SHIELD NO.7,27 +75902pr0009,Minifig Shield Round Bowed with Silver Ovals Print,27 +75902pr0011,Shield with golden sun print,27 +75904,Minifig Sledge Hammer,27 +75908stk01,Sticker Sheet for Set 75908 - 21957/6120974 or 21956/6120972,17 +75909stk01,Sticker Sheet for Set 75909 - 19244/6097421 or 19850/6102495,17 +75911stk01,Sticker Sheet for Set 75911 - 19245/6097423 or 19246/6097426,17 +75912stk01,Sticker Sheet 1 for 75912 - 19855/6102499,17 +75912stk02,Sticker Sheet 2 for 75912 - 20853/6109693 or 20852/6109690,17 +75912stk03,Sticker Sheet 3 for Set 75912 - 20897/6109692 or 20898/6109694,17 +75913stk01,Sticker Sheet 1 for 75913 - 19248/6097431 or 19856/6102501,17 +75913stk02,Sticker Sheet 2 for 75913 - 20996/6112437 or 20997/6112438,17 +75930,Dinosaur with Body Scales Print,4 +75931,Flying Dinosaur with Head Scales Print,4 +75937,"Plate Special 2 x 2 with Bar Frame Octagonal, Reinforced, Completely Round Studs",9 +75939,Triceratops with Scales and Frill Print,4 +75940,Tyrannosaur with Yellow Spots Print,4 +759464,Plastic Sorting Template - Bird [6784],17 +759528c01,Storage Case with Rounded Corners and Bright Pink Lid,17 +759528c02,Storage Case with Rounded Corners and Dark Azure Lid,17 +759532,Storage Case Divider Panel 13.5 x 5.5cm for Case 759528,17 +759533,Storage Case Divider Panel 6.5 x 5.5cm for Case 759528,17 +75974,Pneumatic Airtank,22 +75998pr0001,"Horse with Black Eyes with White on Two Sides, White Pupils, Brown Bridle Print",28 +75998pr0002,Horse with Persian Blanket Print,28 +75998pr0003,Piebald Horse with Dark Bluish Gray Spots and Blinkers Print,28 +75998pr0005,"Horse with Black Eyes, Silver Pupils, Black Bridle Print",28 +75998pr0006,Horse with Ornate Royal Harness Print,28 +75998pr0007,"Horse with Black Eyes, White Pupils, Brown Bridle Print",28 +75c02,"Hose, Rigid 3mm D. 2L / 1.6cm",30 +75c03,"Hose, Rigid 3mm D. 3L / 2.4cm",30 +75c04,"Hose, Rigid 3mm D. 4L / 3.2cm",30 +75c05,"Hose, Rigid 3mm D. 5L / 4.0cm",30 +75c06,"Hose, Rigid 3mm D. 6L / 4.8cm",30 +75c07,"Hose, Rigid 3mm D. 7L / 5.6cm",30 +75c08,"Hose, Rigid 3mm D. 8L / 6.4cm",30 +75c09,"Hose, Rigid 3mm D. 9L / 7.2cm",30 +75c10,"Hose, Rigid 3mm D. 10L / 8.0cm",30 +75c11,"Hose, Rigid 3mm D. 11L / 8.8cm",30 +75c12,"Hose, Rigid 3mm D. 12L / 9.6cm",30 +75c13,"Hose, Rigid 3mm D. 13L / 10.4cm",30 +75c14,"Hose, Rigid 3mm D. 14L / 11.2cm",30 +75c15,"Hose, Rigid 3mm D. 15L / 12cm",30 +75c16,"Hose, Rigid 3mm D. 16L / 12.8cm",30 +75c17,"Hose, Rigid 3mm D. 17L / 13.6cm",30 +75c18,"Hose, Rigid 3mm D. 18L / 14.4cm",30 +75c19,"Hose, Rigid 3mm D. 19L / 15.2cm",30 +75c20,"Hose, Rigid 3mm D. 20L / 16cm",30 +75c21,"Hose, Rigid 3mm D. 21L / 16.8cm",30 +75c22,"Hose, Rigid 3mm D. 22L / 17.6cm",30 +75c23,"Hose, Rigid 3mm D. 23L / 18.4cm",30 +75c24,"Hose, Rigid 3mm D. 24L / 19.2cm",30 +75c25,"Hose, Rigid 3mm D. 25L / 20.0cm",30 +75c26,"Hose, Rigid 3mm D. 26L / 20.8cm",30 +75c27,"Hose, Rigid 3mm D. 27L / 21.6cm",30 +75c28,"Hose, Rigid 3mm D. 28L / 22.4cm",30 +75c29,"Hose, Rigid 3mm D. 29L / 23.2cm",30 +75c30,"Hose, Rigid 3mm D. 30L / 24.0cm",30 +75c31,"Hose, Rigid 3mm D. 31L / 24.8cm",30 +75c32,"Hose, Rigid 3mm D. 32L / 25.6cm",30 +75c33,"Hose, Rigid 3mm D. 33L / 26.4cm",30 +75c34,"Hose, Rigid 3mm D. 34L / 27.2cm",30 +75c36,"Hose, Rigid 3mm D. 36L / 28.8cm",30 +75c40,"Hose, Rigid 3mm D. 40L / 32.0cm",30 +75c44,"Hose, Rigid 3mm D. 44L / 35.2cm",30 +75c45,"Hose, Rigid 3mm D. 45L",30 +75c49,"Hose, Rigid 3mm D. 49L",30 +75c53,"Hose, Rigid 3mm D. 53L",30 +75c63,"Hose, Rigid 3mm D. 63L",30 +76000stk01,Sticker for Set 76000 - (13045/6023150),17 +76004stk01,Sticker for Set 76004 - (13051/6023179),17 +76005stk01,Sticker for Set 76005 - (13053/6023181),17 +76009stk01,Sticker for Set 76009 - (14674/6042943),17 +76019,Technic Gear 24 Tooth Clutch with Dark Gray or Light Gray Center,52 +7602-1,7602 Black SUV,24 +7604-1,7604 Triceratops,24 +76041c01,Door 1 x 4 x 6 with 3 Panes with Trans-Light Blue Glass,16 +76041c02,Door 1 x 4 x 6 with 3 Panes with Trans-Black Glass,16 +76041c03,Door 1 x 4 x 6 with 3 Panes with Trans-Green Glass,16 +76041c04,Door 1 x 4 x 6 with 3 Panes with Trans-Dark Blue Glass,16 +76042stk01,Sticker for Set 76042 - (21231/6115204),17 +76044stk01b,Sticker for Set 76044 NA,17 +76046stk01,Sticker Sheet for 76046-1 (25751 / 6142604) or (25752 / 6142605),17 +7606-1,7606 Frog,24 +76065stk01,Sticker for Set 76065 (25916),17 +76087,DUPLO WAGON,24 +7609-1,7609 Rescue Chopper,24 +7610-1,7610 Speedboat,24 +76110c01,"Technic Competition Arrow, Beam Shaft with Solid Black Rubber End",26 +76110c02,"Technic Competition Arrow, Beam Shaft with Solid Purple Rubber End",26 +76110c03,"Technic Competition Arrow, Beam Shaft with Solid Dark Blue Rubber End",26 +76110c04,"Technic Competition Arrow, Liftarm Shaft with Solid Flat Silver Rubber End",26 +76110c05,"Technic Competition Arrow, Beam Shaft with Solid Lime Rubber End",26 +76138,Technic Shock Absorber 6.5L with Soft Spring,25 +76139,DUPLO BRICKRUNNER,24 +7621stk01,Sticker for Set 7621 - (62505/4523181),17 +7623stk01,Sticker for Set 7623 - (62507 / 4523185),17 +76244,Technic Gear 24 Tooth Clutch with Dark Bluish Gray Center,52 +7625stk01,Sticker for Set 7625 - (63673/4529362),17 +76317,Layer Cake with 4 Candles,4 +76320,"Technic Shock Absorber 10L, Damped and Sprung",25 +7632stk01,Sticker for Set 7632 - (64947/4539995),17 +76338,Duplo Bed 3 X 5 X 35.5,4 +7633stk01,Sticker for Set 7633 - (64946/4539994),17 +7634stk01,Sticker for Set 7634 - (84978/4542165),17 +7635stk01,Sticker Sheet for Set 7635-1 (84955 / 4542151),17 +76371,Brick 1 X 2 X 2 with Bottom Tube,4 +76371pr0017,Duplo Brick 1 x 2 x 2 with Bottom Tube - 2 Ice Cream Treats on Sticks print,4 +76371pr0020,Duplo Brick 1 x 2 x 2 with Bottom Tube - Vegetable Skewer and 2 Sausages print,4 +76371pr0029,Duplo Brick 1 x 2 x 2 with Bottom Tube - Butterfly and Green Leaf with 2 Yellow Cocoons Print 24967,4 +76371pr0030,Duplo Brick 1 x 2 x 2 with Bottom Tube - Jewels and Coins Print,4 +76371pr0031,Duplo Brick 1 x 2 x 2 with Bottom Tube - 4 Bamboo Shoots Print,4 +76371pr0032,Duplo Brick 1 x 2 x 2 with Bottom Tube - Frog and Flowers Print,4 +76371pr0037,Duplo Brick 1 x 2 x 2 with Bottom Tube - Brown and Tan Teddy Bear print,4 +76371pr0038,Duplo Brick 1 x 2 x 2 - Set 10827,4 +76385,Hinge Brick 1 x 2 Locking with Single Finger On Top,18 +7639stk01,Sticker for Set 7639 - (86089/4548294),17 +7648stk01,Sticker for Set 7648 - (62069/4520966),17 +76537,Technic Shock Absorber 6.5L with Hard Spring,25 +765c01,Electric Connector 1 Way Male Squared [Complete Assembly],45 +765c15,"Electric Wire 12V / 4.5V with four 1-prong connectors, 15 Studs Long",45 +765c28,"Electric Wire 12V / 4.5V with Four 1-Prong Connectors, 28 Studs Long",45 +765c96,"Electric, Wire 12V / 4.5V with Four 1-Prong Connectors, 96 Studs Long",45 +7661stk01,Sticker for Set 7661 - (59916/4506964),17 +76676,Large Figure Head Modified Super Heroes Captain America with Light Flesh Face Print,41 +7667stk01,Sticker for Set 7667 - (62313/4521664),17 +7669stk01,Sticker for Set 7669 - (61852/4519745),17 +766c01,Electric Connector - 2 Way Male Squared Narrow Long - Complete Assembly,45 +766c14,"Electric Wire 12V / 4.5V with two 2-prong connectors, 14 Studs Long",45 +766c190,"Electric Wire 12V / 4.5V with two 2-prong connectors, 190 Studs Long",45 +766c28,"Electric, Wire 12V / 4.5V with two 2-prong connectors, 28 Studs Long",45 +766c375,"Electric Wire 12V / 4.5V with two Variable Colour 2-prong connectors, 375 Studs Long [9700]",45 +766c96,Wire 12V / 4.5V [Two 2-Prong Connectors / 96 Studs Long],45 +767,Train Track Sleeper Plate 2 x 8 without Cable Grooves,9 +7673stk01,Sticker for Set 7673 - (63658/4529326),17 +7674stk01,Sticker for Set 7674 - (63214/4528314),17 +76764,"Minifig Sword [Shortsword, Elaborate Hilt]",27 +76766,Bracket 5 x 2 x 2 1/3 with Inside Stud Holder,9 +76768,"Brick Arch 1 x 5 x 4 [Irregular Bow, Raised Underside Cross Supports]",37 +7676stk01,Sticker for Set 7676 - (63675/4529377),17 +7678stk01,Sticker for Set 7678 - (64286/4534408),17 +768,Technic Gearbox 2 x 4 x 3,44 +7685stk01,Sticker for Set 7685 - (64949/4540004),17 +769,Minifig Visor - Large,27 +7700stk01,Sticker for Set 7700 - (54907/4286397),17 +7701stk01,Sticker for Set 7701 - (54912/4286402),17 +7702stk01,Sticker for Set 7702 - (55023/4287776),17 +7707stk01,Sticker for Set 7707 - (56492/4295097),17 +7708stk01,Sticker for Set 7708 - (55427/4289603),17 +7709stk01,Sticker for Set 7709 - (56746/4297316),17 +7714stk01,Sticker for Set 7714 - (59040/4502426),17 +7715stk01,Sticker for Set 7715 - (196925),17 +772,Brick 1 x 2 x 2 with Hollow Underside (without Inside Axle Holder or Stud Holder or Stud),11 +7721stk01,Sticker for Set 7721 - (60491/4512827),17 +7723stk01,Sticker for Set 7723 - (61974/4520706),17 +7726stk01,Sticker for Set 7726 - (63094/4527636),17 +772p01,Brick 1 x 2 x 2 without Bottom Tube with Train Window Print,2 +7731stk01,Sticker for Set 7731 - (61669/4518983),17 +7737stk01,Sticker for Set 7737 - (62826/4525249),17 +7739stk01,Sticker for Set 7739 - (63291/4528618),17 +7740stk01,Sticker for Set 7740 - (191915),17 +7741stk01,Sticker for Set 7741 - (61966/4520689),17 +7746stk01,Sticker for Set 7746 - (85025/4542186),17 +7750stk01,Sticker for Set 7750 - (191925),17 +7751stk01,Sticker for Set 7751 - (85168/4542711),17 +775stk01,Sticker for Set 775 - (4645),17 +776,"Flag on Flagpole Type 1 classic,ho,h0 scale",38 +7760stk01,Sticker for Set 7760 - (191936),17 +776p02,"Flag on Flagpole Type 1 with Sweden Print Swedish,classic,ho,h0 scale",38 +776p08,"Flag on Flagpole Type 1 with Italy Print Italian,classic,ho,h0 scale",38 +777,"Flag on Flagpole Type 2 classic,ho,h0 scale",38 +7774stk01,Sticker for Set 7774 - (58840/4501861),17 +7775stk01,Sticker for Set 7775 - (58840/4501861),17 +7779stk01,Sticker for Set 7779 - (56708/4297011),17 +777p01,"Flag on Flagpole, Wave with Germany Print",38 +777p02,"Flag on Flagpole, Wave with Sweden Print",38 +777p03,"Flag on Flagpole, Wave with Denmark Print",38 +777p04,"Flag on Flagpole, Wave with Finland Print",38 +777p05,"Flag on Flagpole, Wave with Norway Print",38 +777p06,"Flag on Flagpole, Wave with Austria Print",38 +777p07,"Flag on Flagpole, Wave with Netherlands Print",38 +777p08,"Flag on Flagpole, Wave with Italy Print",38 +777p09,"Flag on Flagpole, Wave with Belgium Print",38 +777p10,"Flag on Flagpole, Wave with France Print",38 +777p11,"Flag on Flagpole, Wave with Great Britain Print",38 +777p12,"Flag on Flagpole, Wave with Portugal Print",38 +777p13,"Flag on Flagpole, Wave with Switzerland Print",38 +777p14,"Flag on Flagpole, Wave with Iceland Print",38 +777p15,Flag on Flagpole Type 2 with United States Print,38 +777pt0,"Flag on Flagpole Type 2 with Oval Lego Logo w/ Open ""O"" Print",38 +777pt1,"Flag on Flagpole Type 2 with Large Lego Logo w/ Open ""O"" Print",38 +777px7,"Flag on Flagpole, Wave with Lego Logo Print",38 +777px7ridged,"Flag on Flagpole, Wave with Lego Logo Print, Ridged Flagpole",38 +777px8,"Flag on Flagpole, Wave with Lego Logo in Red Ellipse Print",38 +7780stk01,Sticker for Set 7780 - (56709/4297012),17 +7783stk01,Sticker for Set 7783 - (57002/4298526),17 +7786stk01,Sticker for Set 7786 - (60400/4511970),17 +7787stk01,Sticker for Set 7787 - (60401/4511973),17 +78,"Hose, Ribbed 7mm D.",30 +780,Vehicle Base 6 x 7,36 +781,Vehicle Base 6 x 12,36 +7810stk01a,Sticker for Set 7810 - Early Version (191945),17 +7813stk01,Sticker for Set 7813 - (190605),17 +784,Vehicle Digger Bucket Smooth 2 x 4 x 1,36 +785,Baseplate 24 x 32 with Studs on Edges,1 +7852,"Train, Track 12V Switch Button",45 +7864,Electric Train 220V - 12V Transformer Type 1,45 +7871-1,7871 Whale,24 +7872-1,7872 Lion,24 +7873-1,7873 Jet Plane,24 +7875-1,7875 Digger,24 +7877stk01,Sticker for Set 7877 - (95691/4622112),17 +7879stk01,Sticker for Set 7879 - (95692/4622113),17 +787c01,Fabuland Roof Support with Red Roof Slope without Chimney Hole,42 +787c02,Fabuland Roof Support with Green Roof Slope without Chimney Hole,42 +787c03,Fabuland Roof Support with Red Roof Slope with Chimney Hole,42 +787c04,Fabuland Roof Support with Green Roof Slope with Chimney Hole,42 +787c05,Fabuland Roof Support with Gray Roof Slope without Chimney Hole,42 +7885stk01,Sticker for Set 7885 - (63056/4527029),17 +7892stk01,Sticker for Set 7892 - (45464/4290773),17 +7893.1stk01,Sticker for Set 7893-1 - (55075/4288130),17 +7894.1stk01,Sticker for Set 7894-1 - (55545/4290769),17 +7898stk01,Sticker for Set 7898 - (56603/4296206),17 +78c02,"Hose, Ribbed 7mm D. 2L",30 +78c03,"Hose, Ribbed 7mm D. 3L",30 +78c04,"Hose, Ribbed 7mm D. 4L",30 +78c05,"Hose, Ribbed 7mm D. 5L",30 +78c06,"Hose, Ribbed 7mm D. 6L",30 +78c07,"Hose, Ribbed 7mm D. 7L / 5.6cm",30 +78c08,"Hose, Ribbed 7mm D. 8L",30 +78c09,"Hose, Ribbed 7mm D. 9L",30 +78c10,"Hose, Ribbed 7mm D. 10L",30 +78c11,"Hose, Ribbed 7mm D. 11L",30 +78c12,"Hose, Ribbed 7mm D. 12L",30 +78c13,"Hose, Ribbed 7mm D. 13L",30 +78c14,"Hose, Ribbed 7mm D. 14L",30 +78c15,"Hose, Ribbed 7mm D. 15L",30 +78c16,"Hose, Ribbed 7mm D. 16L",30 +78c17,Hose Ribbed 7mm D. 17L,30 +78c18,"Hose, Ribbed 7mm D. 18L",30 +78c19,"Hose, Ribbed 7mm D. 19L",30 +78c21,"Hose, Ribbed 7mm D. 21L",30 +78c23,"Hose, Ribbed 7mm D. 23L / 18.2cm",30 +78c24,"Hose, Ribbed 7mm D. 24L",30 +78c25,"Hose, Ribbed 7mm D. 25L",24 +78c28,"Hose, Ribbed 7mm D. 28L",30 +78c30,"Hose, Ribbed 7mm D. 30L",24 +78c31,"Hose, Ribbed 7mm D. 31L",30 +78c32,"Hose, Ribbed 7mm D. 32L",30 +790,Fabuland Roof Chimney,42 +7902stk01,Sticker for Set 7902 - (55073/4288129),17 +7905stk01,Sticker for Set 7905 - (56716/4297022),17 +791,Window 1 x 3 x 5 Shutter,16 +79102stk01,Sticker for Set 79102 - (13055/6023183),17 +79104stk01,Sticker for Set 79104 - (13057/6023186),17 +79109stk01,Sticker for Set 79109 - (14142/6036356),17 +7915stk01,Sticker for Set 7915,17 +792,Brick 2 x 2 Arm Holder Lower Part,24 +792c01,Arm Holder Brick 2 x 2 without Hole and 1 Arm,18 +792c02,Arm Holder Brick 2 x 2 with Hole and 1 Arm,18 +792c03,Arm Holder Brick 2 x 2 with Hole and 2 Arms,18 +792c04,Arm Holder Brick 2 x 2 with Hole,18 +793,Brick 2 x 2 Arm Holder Upper Part with Hole,24 +7930,Door 1 x 3 x 4,16 +7931stk01,Sticker for Set 7931 - (4610894/93580),17 +7938stk01,Sticker for Set 7938 - (91045/4586246),17 +7939stk01,Sticker for Set 7939 - (91144/4586574),17 +794,Brick 2 x 2 Arm Holder Upper Part without Hole,24 +7942stk01,Sticker for Set 7942 - (58593/4500817),17 +7945stk01,Sticker for Set 7945 - (58604/4500820),17 +7946stk01,Sticker for Set 7946 - (91061/4586367),17 +795,Arm Piece with Disk and 2 Fingers,18 +7962stk01,Sticker for Set 7962 - (95687/4622098),17 +7964stk01,Sticker for Set 7964 - (95689/4622108),17 +7976stk01,Sticker for Set 7976 - (94344/4614383),17 +7978stk01,Sticker for Set 7978 - (4614331/94324),17 +79790,Knights' Kingdom II: The Quest for the Heart [Book],17 +7984stk01,Sticker for Set 7984 - (94345/4614384),17 +7985stk01,Sticker for Set 7985 - (94346/4614385),17 +7990stk01,Sticker for Set 7990 - (59826/4506612),17 +7993stk01,Sticker for Set 7993 - (59987/4506993),17 +7994stk01,Sticker for Set 7994 - (60031/4507016),17 +7998stk01,Sticker for Set 7998 - (59966/4506982),17 +799c800,"Vehicle, Steering Gear (Complete Assembly)",29 +7b,Tyre Smooth Small Dually,29 +8,Plate Special 2 x 2 with Wheel Holder Bottom,29 +800,Brick Special 2 x 4 with Wheels Holder for Car Steering Gear Axle,29 +80039,Road Sign Round with Left Turn Prohibited Print,38 +80045,Road Sign Round with No Parking Print,38 +8007-1,8007 C-3PO,24 +8007stk01,Sticker for Set 8007 - (41503/4157873),17 +8009-1,8009 R2-D2,24 +800c01,Brick 2 x 4 with Steering and Red Spoked Wheels,5 +801,Door 1 x 3 x 3 Left with Window and Vertical Handle,16 +8010cape,"Cloth Cape, Darth Vader Technic (Set 8010)",38 +8010stk01,Sticker for Set 8010 - (42666/4164368),17 +8014stk01,Sticker for Set 8014 - (64966/4540197),17 +8017stk01,Sticker for Set 8017 - (85465/4543749),17 +801a,Door 1 x 3 x 3 Left with Window and Horizontal Handle,16 +802,Door 1 x 3 x 3 Right with Window and Vertical Handle,16 +802a,Door 1 x 3 x 3 Right with Window and Horizontal Handle,16 +803,"Vehicle, Base 4 x 12 for Steering Gear",36 +8037stk01,Sticker for Set 8037 - (86761/4551354),17 +8039stk01,Sticker for Set 8039 - (86449/4550364),17 +804,"Vehicle, Base 4 x 14 for Steering Gear",36 +8043stk01,Sticker for Set 8043 - (88671 / 4569212),17 +805,"Vehicle, Base 4 x 16 for Steering Gear",36 +8051stk01,Sticker for Set 8051 - (88668/4569201),17 +8052stk01,Sticker for Set 8052 - (88669/4569202),17 +8053stk01,Sticker for Set 8053 - (88670/4569208),17 +80547,Baseplate 32 x 32 Road 7-Stud Straight with Road Print,1 +80547pb01,Baseplate Road 32 x 32 7-Stud Straight with Road with White Sidelines Print,1 +80547pb02,"Baseplate, Road 32 x 32 7-Stud Straight with Road without White Sidelines Print",1 +8057stk01,Sticker for Set 8057 - (88550/4568394),17 +8059stk01,Sticker for Set 8059 - (89142/4570547),17 +806,"Vehicle, Base 6 x 17 for Steering Gear",36 +8060stk01,Sticker for Set 8060 - (89143/4570548),17 +8088stk01,Sticker for Set 8088 - (88528/4568122),17 +8089stk01,Sticker for Set 8089 - (90346 / 4583257),17 +809,Baseplate 24 x 40 Gravel Quarry with Sets 360 / 580 Dots Print,1 +8093stk01,Sticker for Set 8093 - (90347/4583260),17 +8097stk01,Sticker for Set 8097 - (91377/4587080),17 +8100stk01,Sticker for Set 8100 - (58390/4499561),17 +8103stk01,Sticker for Set 8103 - (58391/4499562),17 +8107stk01,Sticker for Set 8107 - (60055/4507164),17 +8109stk01,Sticker for Set 8109 - (95745/4622302),17 +811,Baseplate 16 x 32 with Warehouse Stud Print [341],1 +8110stk01,Sticker for Set 8110 - Sheet 1 (95746/4622303),17 +8110stk02,Sticker for Set 8110 - Sheet 2 (96988/4631649),17 +8111stk01,Sticker for Set 8111 - (62013/4520937),17 +8113cdb01,Cardboard Jungle Backdrop for Set 8113,17 +8114cdb01,Cardboard Backdrop for Set 8114 - (4524868),17 +8118stk01,Sticker for Set 8118 - (62042/4520944),17 +812,Train Level Crossing Center Rail Cap Insert 2 x 14 x 2/3,36 +81294,Road Sign Triangle with Dangerous Intersection Print,38 +813,Train Level Crossing Base,36 +813a,Train Level Crossing Base - Solid Center,36 +814,"Train Level Crossing Gate Type 1, Base",36 +8146stk01,Sticker for Set 8146 - (57861/4496163),17 +8147stk01,Sticker for Set 8147 - (57862/4496164),17 +815,"Train Level Crossing Gate Type 1, Crossbar with Red Stripes",36 +8150stk01,Sticker for Set 8150 - (61581/4518288),17 +81522,"Duplo Giraffe Baby, Loose Spot Print",4 +8155stk01,Sticker for Set 8155 - (61673/4518986),17 +8156stk01,Sticker for Set 8156 - (61675/4518987),17 +8157stk01,Sticker for Set 8157 - (63058/4527033),17 +815c01,"Train Level Crossing Gate Type 1, Assembly with Blue Base & Red Handle (Right)",36 +815c02,"Train Level Crossing Gate Type 1, Assembly with Blue Base & Red Handle (Left)",36 +816,"Train Level Crossing Gate Type 1, Handle",36 +8160stk01,Sticker for Set 8160 - (63659/4529327),17 +8165cdb01,"Paper, Cardboard Ramp with Safety Stripes and Tire Tracks for Set 8165 (84605/4540612)",17 +8166cdb01,Cardboard Ramp with Tire Tracks and Crosswalks Print for Set 8166 (4540615),17 +8167cdb01,"Paper, Cardboard Ramp with White Curbs and Orange Arrow with 'THIS WAY UP!' Print for Set 8167 8167 (84612/4540616)",17 +8169stk01,Sticker for Set 8169 - (86805/4551507),17 +817,"Vehicle, Trailer Base 4 x 8 Bed",24 +817c01,"Vehicle, Trailer Base 4 x 8 Bed with Red Wheels",36 +817c02,"Vehicle, Trailer Base 4 x 8 Bed with White Wheels",36 +818,"Vehicle, Tipper Bucket 2 x 4",36 +8183stk01,Sticker for Set 8183 - (84567/4540336),17 +8186stk01,Sticker for Set 8186 - (86425/4550240),17 +8189stk01,Sticker for Set 8189 - (89289/4571134),17 +8190stk01,Sticker for Set 8190 - (89586/4578667),17 +81917pb01,Duplo Intelli-Train Smart Brick with Yellow Arrow Pattern,4 +8194stk01,Sticker Sheet for Set 8194-1 (88153 / 4566048),17 +820,Baseplate 8 x 18 with Garage Floor Plate (Old style),1 +82061,"DUPLO BRICK 2X2, EYE 2 SIDES",4 +82062,Brick 2x2 with Simple Eye Print,4 +820a,Garage Floor Plate - Old with Octagon Holes for Automatic Doors,1 +820b,Garage Plate - Old with Round Holes for Double Doors,24 +821,Garage Door Frame (Old style),16 +8214stk01,Sticker for Set 8214 - (89821/4612841),17 +822,"Garage Door, Solid - Old",16 +82248,Elephant Head 6 x 7 x 4 with Eyes Print,28 +82249,Dog Head 2 x 4 x 2 1/3 with Dog Head Print,28 +8225stk01,Sticker for Set 8225 - (169695),17 +82281,"DUPLO KILLER, YOUNG ONE",4 +822ac01,Garage Door Solid Assembly - Old (Hinge Pin on Counterweights - One Side),16 +822ac02,Garage Door Solid Assembly - Old (Hinge Pins on Counterweights - Both Sides),16 +822b,Garage Door Solid (without Counterweights) - Old with Hinge Pins,16 +822bc01,Garage Door Solid Assembly with Trans Clear Counterweights - Old (Hinge Pins on Door),16 +823,"Garage Door, Glass - Old",24 +823a,"Garage Door Glass (without Counterweights) - Old with Yellow Frame Print, without Hinge Pins",16 +824,Train Base 4 x 7 with Wheels Holder,36 +825,Door 1 x 3 x 4 Left with Window,16 +8258stk01,Sticker for Set 8258 - (86036/4548063),17 +825p01,"Door 1 x 3 x 4 Left with Window and Red Cross Print, Lower [338 / 373-2]",16 +825p02,"Door 1 x 3 x 4 Left with Window and Red Cross Print, Upper [338 / 373-2]",16 +826,Door 1 x 3 x 4 Right with Window,16 +8265stk01,Sticker for Set 8265 - (86037/4548064),17 +8268stk01,Sticker for Set 8268 - (72738/4119055),17 +826p01,"Door 1 x 3 x 4 Right with Window and Red Cross Print, Lower [338 / 373-2]",16 +826p02,"Door 1 x 3 x 4 Right with Window and Red Cross Print, Upper",16 +827,Vehicle Tractor Chassis - [Complete Assembly],36 +8277stk01,Sticker for Set 8277 - (71595/4107654),17 +828,"Vehicle, Digger Bucket Arm, Large",36 +8280stk01,Sticker for Set 8280 - (169735),17 +8283stk01,Sticker for Set 8283 - (55316/4289163),17 +8289stk01,Sticker for Set 8289 - (58681/4501092),17 +8292stk01,Sticker for Set 8292 - (62406/4522042),17 +8294stk01,Sticker for Set 8294 - (63211/4528253),17 +82960,Brick 2x2 with Simple Eye Print,4 +8297stk01,Sticker for Set 8297 - (63280/4528466),17 +8305stk01,Sticker for Set 8305 - (22869/141005),17 +8362stk01,Sticker for Set 8362 - (50289/4227738),17 +837,Homemaker Cupboard 4 x 4 x 4 with Door Holder Holes,7 +838,Homemaker Cupboard Door 4 x 4,7 +839,Homemaker Washbasin Base 4 x 4 x 4,7 +8401stk01,Sticker for Set 8401 - (85038/4542422),17 +8408stk01,Sticker for Set 8408 - (4100329),17 +840c01,Homemaker Washbasin Sink with Chrome Silver Tap (Complete Assembly),7 +841,Homemaker Stove / Oven 4 x 4 x 3,7 +842,Homemaker Stove / Oven Shelf 4 x 4,7 +8428cd,Turbo Command CD-ROM Package (2 CDs) for 8428,17 +843,Homemaker Stove / Oven Door,7 +8431stk01,Sticker for Set 8431 - (169765),17 +8438stk01,Sticker for Set 8438 - (169765),17 +8446stk01,Sticker for Set 8446 - (22249/4124179),17 +8448stk01,Sticker for Set 8448 - (22302/4125165),17 +8457stk01,Sticker for Set 8457 - (22979/4141524),17 +8457tapentsc,Video Tape - 8457 Power Puller US NTSC Version,17 +8457tapepal,Video Tape - 8457 Power Puller UK PAL Version,17 +84599,Electric Power Functions Battery Box with Dark Bluish Gray Bottom [Rechargeable],45 +8460stk01,Sticker for Set 8460 - (169765),17 +84622,Plastic Flag 7 x 4 with Pirate Skull and Crossbones Print [6243 / 6253],38 +84624,Plastic Flag 7 x 4 with Crossed Cannons over Red Stripes Print [6242 / 10210],38 +84637,"Left Leg, Pirate Peg Leg, and Hips [LDD]",24 +84638,"MINI UPPERPART W.HOOK, LEFT [Plain]",13 +8466stk01,Sticker for Set 8466 - (41361/4157004),17 +84696,Duplo Bear Adult New Style,4 +84699,Duplo Brick 2 x 4 x 2 Curved Top with 'Zoo' and Lion Head Print,4 +8479bar01,"Code Pilot Bar Code Sheet, Laminated, 2 Sided",17 +8479stk01,Sticker for Set 8479 - (71469/4106753),17 +84943,Minifig Cannon Shooting,27 +8494stk01,Sticker for Set 8494 - (61669/4518983),17 +84954,Windscreen 3 x 4 x 3,47 +8496cdb01,"Paper, Cardboard Ramp with Tire Tracks and White Arrow [8496]",17 +850,Ladder 10.3cm (collapsed) 2 & 3 Piece - Bottom Section,32 +85043,Large Figure Head Rock Monster King [Complete Assembly],28 +85045c01pb01,"Large Figure Head Rock Monster King, Jaw Upper with Trans-Neon Green Teeth and Black and Red Eyes Print",28 +85046c01,"Head Rock Monster King, Jaw Lower with Trans-Neon Green Teeth",28 +85049,Body Rock Monster Large [Plain],24 +85049pat01,Body Rock Monster Large with Dark Bluish Gray Top Pattern,13 +85054pb01,"Arm Rock Monster Large, Left with Black Print",13 +85080,"Brick, Round Corner 2 x 2 Macaroni with Stud Notch and Reinforced Underside [New Style]",20 +850c01,"Ladder 10.3cm (collapsed) 3-Piece, Complete Assembly",32 +851,"Ladder Three Piece, Second Section",24 +851210,Lord Vladek Sword,17 +851211,"Sword, Lord Jayko",17 +851490,Lord Vladek Mask,17 +85195,Cloth Carousel Top Section 22 x 18,38 +851a,Ladder 10.3cm (collapsed) 3-Piece - Middle Section,32 +851b,Ladder 10.3cm (collapsed) 2-Piece - Top Section,32 +852,Ladder 10.3cm (collapsed) 3-Piece - Top Section,32 +852001stor,Chess Set Storage Case Fantasy Era Castle,17 +85204,"Arm Rock Monster Large, Left",13 +85205,"Arm Rock Monster Large, Right",13 +85207pb01,"Arm Rock Monster Large, Right with Black Print",13 +852132board,Castle 16 x 16 Baseplate [Glued to Box],1 +85217,Sticker for Set 10193 - (85217/4542886),17 +852293stor,Chess Set Storage Case Fantasy Era Giant Castle,17 +852766,Carry Home Pack for 3 Minifigs,17 +8527stk01,Sticker for Set 8527 - (57103/4299391),17 +852906,3D Glasses Atlantis,17 +853175coinbox,Cardboard Coin Box with Lock and Keys [853175],17 +853261,"Tote Bag, Lego Logo Print, Red Handles and Bottom",17 +853353stk01,Sticker Sheet for 853353-1,17 +85345,"Duplo, Toolo Tyre Slick",29 +85347,Engine Block 2 x 2,4 +85355,BONNET 4X3X0.5,4 +854stk01,Sticker for Set 854 - (4382),17 +85543,Rubber Belt Small [15mm ID] [Round Cross Section],31 +85544,Technic Rubber Belt 24mm,31 +85545,Technic Rubber Belt Medium [26mm ID] [Round Cross Section],31 +85546,Technic Rubber Belt 33mm,31 +85557,"Train Wheel RC Train, Spoked with Technic Axle Hole and Counterweight, 37 mm diameter [Flanged Driver]",29 +85557c01,Train Wheel Large With Axle Pinhole and Red Traction Band,24 +85558,"Train Wheel RC Train, Spoked with Technic Axle Hole and Counterweight, 30 mm diameter [Blind Driver]",29 +85580,Sticker Sheet for Set 10194,17 +85607,"Minifig Hair Wavy Top, Hole at Back",13 +85610,"BABY, ASSEMBLED NO. 1",4 +85651,Cloth Sail Triangular 17 x 20,38 +85718,Cloth Vehicle Roof with Flap Opening,38 +85800,Bionicle Mask Crast,41 +8580-1,(Set) Kraata,24 +85861,Plate Round 1 x 1 with Open Stud,21 +85863,Body Microfig Plain Complete,13 +85863pr0001,Microfig Lava Dragon Knight White,13 +85863pr0002,Microfig Lava Dragon Knight Blue,13 +85863pr0003,Microfig Lava Dragon Knight Yellow,13 +85863pr0004,Microfig Lava Dragon Knight Red,13 +85863pr0005,Microfig Lunar Command Orange,13 +85863pr0006,Microfig Lunar Command Lime,13 +85863pr0007,Microfig Lunar Command Yellow,13 +85863pr0008,Microfig Minotaurus Gladiator Blue,13 +85863pr0009,Microfig Minotaurus Gladiator Yellow,13 +85863pr0010,Microfig Minotaurus Gladiator Red,13 +85863pr0011,Microfig Minotaurus Gladiator White,13 +85863pr0012,Microfig Ramses Pyramid Adventurer Blue,13 +85863pr0013,Microfig Ramses Pyramid Adventurer Yellow,13 +85863pr0014,Microfig Ramses Pyramid Adventurer Orange,13 +85863pr0015,Microfig Ramses Pyramid Adventurer Red,13 +85863pr0016,Microfig Ramses Pyramid King Ramses,13 +85863pr0017,Microfig Ramses Pyramid Mummy,13 +85863pr0018,Microfig - Creationary Red,13 +85863pr0021,Microfig Magma Monster Blue,13 +85863pr0022,Microfig Magma Monster White,13 +85863pr0023,Microfig Magma Monster Green,13 +85863pr0024,Microfig Magma Monster Dark Bluish Gray,13 +85863pr0029,Microfig UFO Attack Alien,13 +85863pr0030,Microfig Pirate Plank Pirate White,13 +85863pr0031,Microfig Pirate Plank Pirate Red,13 +85863pr0032,Microfig Pirate Plank Pirate Tan,13 +85863pr0033,Microfig Pirate Plank Pirate Captain,13 +85863pr0034,Microfig Pirate Plank Pirate Yellow,13 +85863pr0035,Microfig Orient Bazaar Merchant Yellow,13 +85863pr0036,Microfig Orient Bazaar Merchant Orange,13 +85863pr0037,Microfig Orient Bazaar Merchant Red,13 +85863pr0038,Microfig Orient Bazaar Merchant Blue,13 +85863pr0039,Microfig Orient Bazaar White,13 +85863pr0040,Microfig Meteor Strike Astronaut Blue,13 +85863pr0041,Microfig Meteor Strike Astronaut Red,13 +85863pr0042,Microfig Atlantis Treasure King Trident,13 +85863pr0043,Microfig Hogwarts Gryffindor House Player,13 +85863pr0044,Microfig Hogwarts Slytherin House Player,13 +85863pr0045,Microfig Hogwarts Hufflepuff House Player,13 +85863pr0046,Microfig Hogwarts Ravenclaw House Player,13 +85863pr0047,Microfig Hogwarts Albus Dumbledore,13 +85863pr0048,Microfig Hogwarts Harry Potter,13 +85863pr0049,Microfig Hogwarts Ron Weasley,13 +85863pr0050,Microfig Hogwarts Hermione Granger,13 +85863pr0051,Microfig Hogwarts Draco Malfoy,13 +85863pr0052,Microfig Heroica Rogue,13 +85863pr0053,Microfig Heroica Barbarian,13 +85863pr0054,Microfig Heroica Ranger,13 +85863pr0055,Microfig Heroica Wizard,13 +85863pr0056,Microfig Heroica Goblin King,13 +85863pr0057,Microfig Heroica Goblin General,13 +85863pr0058,Microfig Heroica Goblin Warrior,13 +85863pr0059,Microfig Heroica Knight,13 +85863pr0060,Microfig Heroica Druid,13 +85863pr0061,Microfig Heroica Dark Druid,13 +85863pr0062,Microfig Heroica Werewolf,13 +85863pr0063,Microfig Ramses Return Adventurer Blue,13 +85863pr0064,Microfig Ramses Return Adventurer Orange,13 +85863pr0065,Microfig Ramses Return Adventurer Yellow,13 +85863pr0066,Microfig Ramses Return Adventurer Red,13 +85863pr0067,Microfig Ninjago Jay,13 +85863pr0068,Microfig Ninjago Kai,13 +85863pr0069,Microfig Ninjago Cole,13 +85863pr0070,Microfig Ninjago Zane,13 +85863pr0071,Microfig Ninjago Skeleton Warrior,13 +85863pr0072,Microfig Ninjago Skeleton General,13 +85863pr0073,Microfig Ninjago Sensei Wu,13 +85863pr0074,Microfig Heroica Golem Guardian,13 +85863pr0075,Microfig Heroica Golem Lord,13 +85863pr0076,Microfig Lego Champion Female Pink Dress,13 +85863pr0077,Microfig Lego Champion Female Yellow Warrior,13 +85863pr0078,Microfig Heroica Goblin Guardian,13 +85863pr0079,Microfig Mini Taurus Gladiator White,13 +85863pr0080,Microfig Mini Taurus Gladiator Yellow,13 +85863pr0081,Microfig Mini Taurus Gladiator Red,13 +85863pr0082,Microfig Mini Taurus Gladiator Blue,13 +85863pr0083,Microfig Star Wars Darth Vader,13 +85863pr0084,Microfig Star Wars Luke Skywalker,13 +85863pr0085,Microfig Star Wars Han Solo,13 +85863pr0086,Microfig Star Wars Chewbacca,13 +85863pr0087,Microfig City Alarm Police Officer,13 +85863pr0088,Microfig City Alarm Thief,13 +85863pr0089,Microfig Star Wars AT-ST Pilot,13 +85863pr0090,Microfig Star Wars Boba Fett,13 +85863pr0091,Microfig Star Wars Snowtrooper,13 +85863pr0092,Microfig Star Wars Rebel Pilot,13 +85863pr0093,Microfig Star Wars Rebel Trooper,13 +85863pr0094,Microfig Star Wars General Veers,13 +85863pr0098,Microfig - Legends Of Chima Crocodile,13 +85863pr0099,Microfig Heroica Sage,13 +85863pr0100,Microfig Heroica King,13 +85863pr0101,Microfig Heroica Prince,13 +85863pr0102,Microfig Heroica Vampire Lord,13 +85863pr0103,Microfig Heroica Zombie,13 +85863pr0104,Microfig - Legends Of Chima Eagle,13 +85863pr0105,Microfig - Legends Of Chima Lion,13 +85863pr0108,Microfig Gandalf the Grey,13 +85863pr0109,Microfig Fili the Dwarf,13 +85863pr0110,Microfig Kili the Dwarf,13 +85863pr0111,Microfig Dwalin the Dwarf,13 +85863pr0112,Microfig King Theoden,13 +85863pr0113,Microfig Gimli,13 +85863pr0114,Microfig Uruk-hai Archer,13 +85863pr0115,Microfig Rohirrim Swordsman,13 +85863pr0116,Microfig Uruk-hai Leader,13 +85863pr0117,Microfig Haldir,13 +85863pr0118,Microfig Aragorn,13 +85863pr0119,Microfig Legolas,13 +85863pr0120,Microfig Uruk-hai Berserker,13 +85863pr0121,Microfig Uruk-hai Swordsman,13 +85863pr0122,Microfig Eowyn,13 +85863pr0123,Microfig Batgirl,13 +85863pr0124,Microfig Mr Freeze,13 +85863pr0125,Microfig Riddler,13 +85863pr0126,Microfig Two-Face,13 +85863pr0127,Microfig The Joker,13 +85863pr0128,Microfig Batman,13 +85863pr0129,Microfig Nightwing,13 +85863pr0130,Microfig Robin,13 +85863pr0132,Microfig - Story Mixer #132,13 +85863pr0133,Microfig - Story Mixer,13 +85940,"Technic, Pin Connector Double with Bar",55 +85941,Cylinder Half 2 x 4 x 5 with 1 x 2 cutout,20 +85942,Minifig Helmet Spiked Top with Grill and Open Front and Back,27 +85943,Technic Brick 1 x 2 with Hole and Dual Beam Extensions,26 +85944,Minifig Helmet Spiked with Flat Chin Protector,27 +85945,Minifig Helmet Alien Skull with Fangs,27 +85946,"Minifig Head Modified Frenzy with Open Jagged Mouth, Torso Extension with Handles [Plain]",24 +85946pr0001,"Minifig Head Modified Frenzy with Lime Eyes and Open Jagged Mouth, Torso Extension with Handles",13 +85947,Minifig Head Alien Squidman [Plain],24 +85947pr0001,"Minifig Head Modified Alien with Tongue and Red Eyes, Dark Green Scales Print (Squidman)",13 +85947pr0002,"Minifig Head Modified Alien with Tongue and Yellow Eyes, Dark Purple Scales Print (Squidtron)",13 +85947pr0003,Minifig Head Alien Squidman with Black Eyes & Lines Print,13 +85948,Minifig Head Modified Kranxx [Plain],24 +85948pr0001,Minifig Head Modified Kranxx with Black Eyes and Open Mouth,13 +85951,SLEEPINGBAG 5X8 DEC,4 +85959,Wave Rounded Large (Flame) [Plain],24 +85959pat0001,Wave Rounded Large (Flame) with Marbled Trans-Orange Pattern,27 +85959pat0002,Wave Rounded Large (Flame) with Marbled Trans Clear Pattern,27 +85959pat0003,Wave Rounded Large (Flame) with Marbled Trans-Yellow Pattern,27 +85960,"BRICK 1X2X2, DEC. HAMSTER",24 +85961,Minifig Breastplate with Back Stud,27 +85961pr01,"Minifig Breastplate with Back Stud, Agents Logo Print",27 +85962,Windscreen 8 x 8 x 5 Dome with Dual 2 Fingers,47 +85964,Duplo Cloth Blanket 5 x 6 with Dark Pink Stars Print,4 +85969,Wheel Cover 5 Spoke Thick [Fits 56145],29 +85970,Slope Curved 10 x 1 [Asymmetric Inside Ridges],37 +85973,Minifig Pistol [Automatic Long Barrel and Round Magazine],27 +85974,Minifig Hair Female Mid-Length with Part over Front of Right Shoulder,13 +85974pr0001,Minifig Hair Female Mid-Length with Part over Front of Right Shoulder and Pink Flower Print on Left Side,27 +85974pr0002a,Minifig Hair Female Mid-Length with Part over Front of Right Shoulder and Tan Highlights Print,27 +85974pr0002b,Minifig Hair Female Mid-Length with Part over Front of Right Shoulder and Green Plant Leaves Print,13 +85974pr0003,Minifig Hair Female Mid-Length with Part over Right Shoulder and Dark Purple Starfish and Lime Seaweed Print,13 +85974pr0004,Minifig Hair Female Mid-Length with Part over Right Shoulder and Magenta Highlights Print,27 +85974pr0005,Minifig Hair Female Mid-Length with Part over Front of Right Shoulder with red stroke,13 +85975,Cone 1.17 x 1.17 x 2/3 (Fez),20 +85976,"Train, Track Plastic, Narrow, Curve",36 +85977,"Train, Track Plastic Narrow, Ramp",36 +85979,Minifig Headdress Mola Ram [Plain],24 +85979pr01,Minifig Headdress Mola Ram,27 +85983,Motorcycle Fairing - Vintage,36 +85983pr01,"Motorcycle Fairing, Vintage with Dark Red Trim",36 +85983pr02,"Motorcycle Fairing, Vintage with Dark Bluish Gray Trim",36 +85984,Slope 30° 1 x 2 x 2/3,3 +85984pr0001,Slope 30° 1 x 2 x 2/3 with White 'POLICE' on Dark Blue Background Print,3 +85984pr0002,Slope 30° 1 x 2 x 2/3 with Dark Red Horizon Screen and Gold Switches and Buttons Print,3 +85984pr0003,ROOF TILE 1X2X2/3 with Lightning Bolt Print,3 +85984pr0004,"ROOF TILE 1X2 2/3, with Flash Logo Print",3 +85984pr0005,Slope 30 1 x 2 x 2/3 with Batman Logo Pattern (Head Facing Narrow End of Slope),2 +85984pr0006,Slope 30° 1 x 2 x 2/3 with Buttons And Red Screens Print,3 +85984pr0007,Brick Slope 30° 1 x 2 x 2/3 with Yellow and Black Oval Batman Logo print,3 +85984pr0008,Slope 30° 1 x 2 x 2/3 - Red 'X' on Dark Blue Banner Print (X-Men Logo),3 +85984pr0010,Slope 30° 1 x 2 x 2/3 with Stylized Red 'S' on White Background print (Superhero and Superman logo),3 +85984pr0143,Slope 30° 1 x 2 x 2/3 with 2 Gauges print,3 +86035,Minifig Cap Short Curved Peak,27 +86038,Minifig Cape - Holes and Tattered Edges,27 +86055,Tauntaun Arm Left,28 +86056,Tauntaun Arm Right,28 +86057,Wampa Horn Left,28 +86058,Wampa Horn Right,28 +86059,Rein with Bridle Flexible,27 +86106,"BRICK 1X2X2, DEC. DIAPERS",24 +86133,Sticker Sheet for 7638-1,17 +86142,Duplo Brick 2 x 2 Slope 45 with Oscilloscope Print,4 +86208,Minifig Space Gun / Torch [No Grooves],27 +86297,Cloth Sail Triangular Tattered Edge (Ewok Glider Wing),38 +86301,"Minifig Pauldron Cloth, Small",27 +8630stk01,Sticker for Set 8630 - (63318/4528715),17 +8632stk01,Sticker for Set 8632 - (63317/4528714),17 +8633stk01,Sticker for Set 8633 - (63428/4529024),17 +8636stk01,Sticker for Set 8636 - (64562/4535337),17 +8637stk01,Sticker for Set 8637 - Sheet 1 (64563/4535346),17 +8637stk02,Sticker for Set 8637 - Sheet 2 (64564/4535347),17 +86408,Minifig Helmet SW Senate Commando [Plain],24 +86408pr0001a,Minifig Helmet SW Senate Commando with Black Markings Print,27 +86408pr0001b,Minifig Helmet SW Senate Commando Captain with Black Markings and White Angled Lines Print,27 +86408pr0002,Minifig Helmet SW Senate Commando Captain with Black Markings and Curved White Lines Print,27 +86414,Sticker Sheet for 7642-1,17 +8649stk01,Sticker for Set 8649 - (53102/4264146),17 +86500,Cylinder Hemisphere 4 x 4,20 +86500pr0001a,Cylinder Hemisphere 4 x 4 with R4-P17 Astromech Droid Print,20 +86500pr0001b,Cylinder Hemisphere 4 x 4 with Black AT-DP Print,20 +86500pr0002,Cylinder Hemisphere 4 x 4 with Eyes and F1 Helmet Print (Francesco),20 +86500pr0003,Cylinder Hemisphere 4 x 4 with Dark Blue R2D2 Control Panel Print,20 +86500pr0004,DOME Cylinder Hemisphere 4 x 4 with Batman Print,20 +86501,Container Fold-Out Race Track Case 34 x 42,7 +86594,DATE EMBOSED TURNTABLE W.SCREW,4 +86595,DATEEMBOSSED BRICK 2X4 W/SCREW,4 +86598,DATEEMBOSSED CAB,4 +86599,DATEEMBOSSED TOOLO 4X6X1,4 +86601,"DATEEMBOSSED PROPELLER, BIG",4 +86652,Wheel 62.4 x 20 with Flush Axle Stem,29 +867,Wheel Train for 12V Electric Motor,29 +8671stk01,Sticker Sheet for Set 8671-1 54401 / 4286090,17 +8673stk01,Sticker for Set 8673 - (54403/4286762),17 +8675stk01,Sticker for Set 8675,17 +8677stk01,Sticker for Set 8677,17 +8679stk01,Sticker for Set 8679 - (96693/4629963),17 +87058,Train Base 6 x 34 Split-Level without Bottom Tubes,36 +87072,FLASHING LIGHT 194/182,24 +87079,Tile 2 x 4 with Groove,19 +87079pb008,"Tile 2 x 4 with Lego Logo, Classic Space Logo and '...in space since 1978' Print",10 +87079pb012,Tile 2 x 4 with Black '3' in Circle and 'BRICKTOBER 1981' Print,10 +87079pb013,Tile 2 x 4 with Black '4' in Circle and 'BRICKTOBER 1984' Print,10 +87079pr0001,Tile 2 x 4 with Yellow '7597' and Fancy Outline Print,10 +87079pr0002,Tile 2 x 4 with Yellow 'GREAT' and Fancy Outline Print,10 +87079pr0003,Tile 2 x 4 with Yellow 'WEST' and Fancy Outline Print,10 +87079pr0004,Tile 2 x 4 with White License Plate with 'TOY2791' Print,10 +87079pr0005,Tile 2 x 4 with Tan Scroll with Black Numbers Print,10 +87079pr0006,FLAT TILE 2X4 NO. 92 Icecream,10 +87079pr0008,Tile 2 x 4 with Japanese 'Dragon God' Print,10 +87079pr0017,Tile 2 x 4 with Lightning Bolt in Half Ellipse and '95' Print Model Right Side,10 +87079pr0018,Tile 2 x 4 with Lightning Bolt in Half Ellipse and '95' Print Model Left Side,10 +87079pr0019,"Tile 2 x 4 with Lightning, Exhaust Pipes and '95' Print Model Right Side",10 +87079pr0020,"Tile 2 x 4 with Lightning, Exhaust Pipes and '95' Print Model Left Side",10 +87079pr0021,Tile 2 x 4 with Bones Design over Wood Grain Print,10 +87079pr0022,Tile 2 x 4 with 'Andrea' and Music Notes Print,10 +87079pr0022a,Tile 2 x 4 with Teeth Print,10 +87079pr0023,Tile 2 x 4 with 'COPENHAGEN' Print,10 +87079pr0030,Tile 2 x 4 with 'WGP 4' and 'WORLD GRAND PRIX' Print Model Right Side,10 +87079pr0031,Tile 2 x 4 with 'WGP 4' and 'WORLD GRAND PRIX' Print Model Left Side,10 +87079pr0032,Tile 2 x 4 with 'WGP 06' and 'allinol' Print Model Right Side,10 +87079pr0033,Tile 2 x 4 with 'WGP 06' and 'allinol' Print Model Left Side,10 +87079pr0034,"Tile 2 x 4 with Stars and Stripes, 'WGP 24' Print Model Right Side",10 +87079pr0035,"Tile 2 x 4 with Stars and Stripes, 'WGP 24' Print Model Left Side",10 +87079pr0036,Tile 2 x 4 with Windscreen with Red Eyes on White Background Print,10 +87079pr0042,Tile 2 x 4 with LEGO Logo and 'LEGOLAND' Print,10 +87079pr0043,Tile 2 x 4 with 'MALAYSIA' Print,10 +87079pr0046,Tile 2 x 4 with 'Anaheim' Print,10 +87079pr0049,Tile 2 x 4 with Orange Triangle at Upper Left of Diagonal White Line Print,10 +87079pr0050,Tile 2 x 4 with Orange Triangle at Upper Right of Diagonal White Line Print,10 +87079pr0051,Tile 2 x 4 with LEGO Friends Logo with Butterfly Print,10 +87079pr0052,Tile 2 x 4 with 'PARIS' Print,10 +87079pr0053,Tile 2 x 4 with 'TOKYO' Print,10 +87079pr0054,FLAT TILE 2X4 NR.54,10 +87079pr0056,Tile 2 x 4 with Framed Horse Print,10 +87079pr0058,Tile 2 x 4 with Chima Crocodile Mouth and Tongue Print,10 +87079pr0059,Tile 2 x 4 with 'LEMONADE' Sign Print,10 +87079pr0060,Tile 2 x 4 with Stylised Black 'Chez Albert Restaurant' Print on Tan Background [10243],10 +87079pr0061,Tile 2 x 4 [Exclusive 41999 License Plate],10 +87079pr0062,Tile 2 x 4 with Batman Logo Print,10 +87079pr0063,Tile 2 x 4 with Fire Logo with Axes over Orange and Red Stripes Print,10 +87079pr0064,"Tile 2 x 4 with Gold, Red and Lavender Oriental Rug Print",10 +87079pr0065,"Tile 2 x 4 with Carrots, Apple and '1.99' Print",10 +87079pr0066,FLAT TILE 2X4 NO. 66,10 +87079pr0067,Tile 2 x 4 with Tan Scroll with House Print,10 +87079pr0068,"FLAT TILE 2X4, NO.68",10 +87079pr0071,FLAT TILE 2X4 NO. 71,10 +87079pr0072,FLAT TILE 2X4 NO. 72,10 +87079pr0073,Tile 2 x 4 with White 'Erithacus rubecula' Print,10 +87079pr0074,Tile 2 x 4 with White 'Cyanocitta cristata' Print,10 +87079pr0075,Tile 2 x 4 with White 'Colibri thalassinus' Print,10 +87079pr0076,FLAT TILE 2X4 NO. 76,10 +87079pr0077,FLAT TILE 2X4 NO. 77,10 +87079pr0078,"FLAT TILE 2X4, NO.78",10 +87079pr0079,"FLAT TILE 2X4, NO.79",10 +87079pr0080,Tile 2 X 4 with Physics Equations Print [21302-1],10 +87079pr0081,FLAT TILE 2X4 NO. 81,10 +87079pr0082,"FLAT TILE 2X4, NO.82",10 +87079pr0083,Tile 2 x 4 with Groove with 'WALL' print,10 +87079pr0084,Tile 2 x 4 - Yellow and Red 'DEFENDER' Figure with Stripes - Smoke and Fire Print,10 +87079pr0088,FLAT TILE 2X4 NO. 88,10 +87079pr0089,Tile 2 x 4 with Stylised Friends Pony Print,10 +87079pr0090,Tile 2 x 4 with Yellow Batman Logo Print,10 +87079pr0091,Tile 2 x 4 with Friends Ice Cream Truck Grill Print,10 +87079pr0093,Tile 2 x 4 with Friends Animal Hospital Print,10 +87079pr0094,Tile 2 x 4 with BMO Controls [Adventure Time] Print,10 +87079pr0095,Tile 2 x 4 Left - Black Triangle Lower Right and Red Diagonal Stripe print,10 +87079pr0096,Tile 2 x 4 Right - Black Triangle Lower Left and Red Diagonal Stripe print,10 +87079pr0097,Tile 2 x 4 with Dolphins and Scallop Sea Shell Pattern,10 +87079pr0098,Tile 2 x 4 with Stylised Pipework Print,10 +87079pr0099,Tile 2 x 4 with 'Yellow Submarine' in Groovy Font Print,10 +87079pr0100,Tile 2 x 4 with Stylised Time Machinery Print,10 +87079pr0103,FLAT TILE 2X4 NO. 103,10 +87079pr0104,"FLAT TILE 2X4, NO. 104",10 +87079pr0105,"FLAT TILE 2X4, NO. 105",10 +87079pr0106,"FLAT TILE 2X4, NO. 106",10 +87079pr0110,Tile 2 x 4 with Vent Grille over 2 Thick Black Stripes print,10 +87079pr0111,Tile 2 x 4 with Silver '7' and Grille Lines print,10 +87079pr0112,Tile 2 x 4 with 2 Thick Black Stripes print,10 +87079pr0115,"Flat Tile 2X4, No. 115",10 +87079pr0116,Tile 2 x 4 with Magenta Drinks with Straws and Citrus Fruits on Yellow Background Pattern,10 +87079pr0121,Tile 2 x 4 with White 'A' and Black Lines Pattern,10 +87079pr0122,FLAT TILE 2X4 Hear Print,10 +87079pr0124,Tile 2 x 4 with White Squres in Black Circles and Red Number 1 Pattern,10 +87079pr0201,Black Panther Mask,10 +87079pr0414,Tile 2 x 4 with Groove with Lego Logo and #LEGOSDCC Print,19 +87079pr133,Tile 2 x 4 with LEGO Friends Logo Print,10 +87079pr9999,Tile 2 x 4 with Groove - Captain America SDCC Stylized 'A',10 +8707stk01,Sticker for Set 8707 - (85697/4544912),17 +87080,"Technic Fairing # 1 Small Smooth Short, Side A",40 +87081,Brick Round 4 x 4 [Centre Hole],20 +87082,Technic Pin Connector Hub with 2 Pins with Friction Ridges Lengthwise,12 +87083,Technic Axle 4 with Stop,46 +87084,Brick 2 x 3,4 +87086,"Technic Fairing # 2 Small Smooth Short, Side B",40 +87087,Brick Special 1 x 1 with Stud on 1 Side,5 +871,"Black Vehicle, Tractor Chassis Steering Arm",32 +87313,Duplo Kitten Solid with White Chest and Mouth Print,4 +87320,HEN NO.1,24 +87321,LID WITH 4 HINGES,4 +87322,Duplo Building Wall 2 x 2 x 6 with Drawer Slots on One Side and Eight Hinges on the Other,4 +87407,Technic Gear 20 Tooth Bevel with Pin Hole,52 +87408,Technic Pin Connector Toggle Joint Smooth Double with Axle and Pin Holes,12 +87414,Tyre Offset Tread Small with Band around Center of Tread,29 +87421,Panel 3 x 3 x 6 Corner Wall without Bottom Indentations,23 +87513,Electric 9V Battery Box Power Functions (Non-Rechargeable) - Top Part,45 +87544,Panel 1 x 2 x 3 [Side Supports / Hollow Studs],23 +87544pr0002,WALL ELEMENT 1X2X3 - TR NO. 2,23 +87552,Panel 1 x 2 x 2 [Side Supports / Hollow Studs],23 +87552pb003,Panel 1 x 2 x 2 with Side Supports - Hollow Studs with Porthole Blue on Orange Background Print,23 +87552pr0001a,Panel 1 x 2 x 2 with Side Supports - Hollow Studs with 'DISCONNECT CAPACITOR DRIVE BEFORE OPENING' and 'SHEILD EYES FROM LIGHT' Print [Early Version],23 +87552pr0001b,Panel 1 x 2 x 2 with Side Supports - Hollow Studs with 'DISCONNECT CAPACITOR DRIVE BEFORE OPENING' and 'SHIELD EYES FROM LIGHT' Print [Later Version],23 +87555,Minifig Helmet Hoth Rebel Trooper,27 +87556,Minifig Helmet SW Stormtrooper (AT-AT or Tie Pilot) [Plain],24 +87556pr0001,Minifig Helmet - Imperial Pilot Print,27 +87556pr0002,"Minifig Helmet - Stormtrooper, AT-AT Driver Print",27 +87556pr0003,Minifig Helmet - Stormtrooper / TIE Bomber Pilot Print,27 +87556pr0004,Minifig Helmet with TIE Pilot Print,27 +87556pr0005a,"Minifig Helmet SW Stormtrooper Type 2, AT-AT Driver Dark Red Imperial Logo Print",27 +87556pr0005b,"Minifig Helmet SW Stormtrooper Type 2, TIE Fighter Pilot Print (Rebels Cartoon Style)",27 +87556pr0006,AT AT / TIE PILOT HELMET DEC NO 6,27 +87557,Minifig Helmet SW Clone Pilot with Open Visor [Plain],24 +87557pr0001a,Minifig Helmet SW Clone Pilot with Open Visor and Blue Markings Print,27 +87557pr0001b,Minifig Helmet SW Clone Pilot with Open Visor and Sand Blue and Medium Blue Markings Print,27 +87557pr0002,Minifig Helmet SW Clone Pilot with Open Visor and Black Markings Print,27 +87557pr0004,Minifig Helmet Clone Pilot with Open Visor and Black and Tan Details Print,27 +87557pr0005,Minifig Helmet SW Clone Pilot with Open Visor and Yellow and Red Markings Print,27 +87559,Brick Round Corner 6 x 6 x 2,20 +87560,"Minifig Head Modified Talz, Thi-Sen [Plain]",24 +87560pr0001,"Minifig Head Modified Talz, Thi-Sen",13 +87561,Block with Handles and Han Solo in Carbonite [Plain],24 +87561pr01,Block with Handles and Han Solo in Carbonite Print,13 +87566,"Torso Mechanical, General Grievous [Plain]",24 +87566pr01,"Torso Mechanical, General Grievous (Clone Wars) with Tan Armor Print",13 +87566pr02,Torso Mechanical - General Grievous with White Armour Print,13 +87567,Minifig Head Modified General Grievous [Plain],24 +87567pr01,Minifig Head Modified General Grievous (Clone Wars) with Tan Face Print,13 +87567pr02,Minifig Head Modified - General Grievous with White Face Print,13 +87568,Minifig Arm Mechanical [Plain],24 +87568pr01l,"Arm Mechanical, General Grievous (Clone Wars) with Tan Print on Left ",13 +87568pr01r,"Arm Mechanical, General Grievous (Clone Wars) with Tan Print on Right",13 +87568pr02l,"Arm Mechanical, General Grievous with White Print on Left",13 +87568pr02r,"Arm Mechanical, General Grievous with White Print on Right",13 +87569,"Leg Mechanical, General Grievous [Plain]",24 +87569pr01,"Leg Mechanical, General Grievous (Clone Wars) with Dark Bluish Gray Foot Print [Tan]",13 +87569pr02,"Leg Mechanical, General Grievous with Dark Bluish Gray Foot Print [White]",13 +87570,Minifig Head Modified Trandoshan (Bossk) [Plain],24 +87570pr0001,Minifig Head Modified Trandoshan (Bossk),13 +87570pr0002,"Head Modified SW Trandoshan, White Pupils",13 +87571,Minifig Headdress SW Twi'lek [Plain],27 +87571pr0001,Minifig Headdress SW Twi'lek with Dark Brown Aayla Secura Print,27 +87571pr0002,Minifig Headdress SW Twi'lek with Black and Flat Silver Oola Print,27 +87571pr0003,"Minifig Headdress SW Twi'lek with Goggles and Light Bluish Gray, Dark Brown Hera Syndulla Print",27 +87572,Minifig Ponytail Long SW Aurra Sing,27 +87574,"Electric Train Motor RC Train with PF Cable, Orange Wheel Holders",45 +87576,Energy Unit with Display 6 x 8 x 3 1/3,45 +87577,Electric Power Functions E-Motor (Complete),45 +87578,Solar Panel with Light Bluish Gray Top,45 +87580,Plate Special 2 x 2 with Groove and Center Stud (Jumper),9 +87585,Minifig Oar [Reinforced],27 +87587,Shark Head with Rounded Nose,28 +87587pr0001,"SHARK, JAW NO. 1",28 +87587pr0002,"SHARK, JAW NO. 2",28 +8758stk01,Sticker for Set 8758 - (54205/4277465),17 +8759stk01,Sticker for Set 8759 - (53975/4276665),17 +87601,Door 1 x 5 x 8.5 Stockade,16 +87606,Windscreen 6 x 6 x 2 Canopy,47 +87606pr0001,Windscreen 6 x 6 x 2 Canopy with General Grievous' Starfighter Print [8095],47 +87606pr0001b,COCKPIT 6X6X2 NO. 1,47 +87609,Plate Special 2 x 6 x 2/3 [Four Studs on Side],9 +87610,"Minifig Helmet with Holes, SW Mandalorian [Plain]",27 +87610pr0001a,"Minifig Helmet with Holes, SW Mandalorian with Dark Brown and Silver Print",27 +87610pr0001b,"Minifig Helmet with Holes, SW Mandalorian with Blue and White Print",27 +87610pr0002a,"Minifig Helmet with Holes, SW Mandalorian with Blue and Dark Blue Print",27 +87610pr0002b,"Minifig Helmet with Holes, SW Mandalorian with Light Lime Trident Print",27 +87610pr0003,"Minifig Helmet with Holes, SW Mandalorian with Dark Red Visor and Black Handprint Print",27 +87610pr0004,"Minifig Helmet with Holes, SW Bounty Hunter with Jaw and Dark Green and Olive Green Print",27 +87610pr0005,"Minifig, Headgear Helmet with Holes, SW Mandalorian with Dark Brown Facial Details Print",27 +87610pr2015c01,Minifig Helmet SW Mandalorian with Red Triangle for Character Encyclopedia - Boba Fett,13 +87611,Aircraft Fuselage Curved Forward 6 x 10 Bottom,47 +87612,Glass for Aircraft Fuselage Curved Forward 6 x 10 Top (87613),47 +87612pr0001,Glass for Aircraft Fuselage Curved Forward 6 x 10 Top with Blue Eyes and Gold Goggles Print,47 +87613,Aircraft Fuselage Curved Forward 6 x 10 Top,47 +87613pr0001,Aircraft Fuselage Curved Forward 6 x 10 Top with Space Shuttle Print,47 +87613pr0002,Aircraft Fuselage Curved Forward 6 x 10 Top with Black Roof Print,47 +87614,Tail 10 x 2 x 5,35 +87615,Aircraft Fuselage Curved Aft Section 6 x 10 Top,47 +87616,Aircraft Fuselage Curved Aft Section 6 x 10 Bottom,47 +87617,Cylinder 1 x 5 1/2 with Handle (Friction Cylinder),32 +87618,Bar 5L with Handle (Friction Ram),32 +87619,Train Front Sloping Base with 4 Studs,5 +87620,Facet 2 x 2,6 +87621,Animal Pig,28 +87621pr0001,"Pig 1x4x1 2/3 ""NO.1""",28 +87621pr01,Pig with Black Eyes and White Pupils Print,28 +87621pr02,Pig With Black Spots and Ear Print,28 +87621pr03,Pig with Black Spots Print [Plain Ears],28 +87651,"Duplo Sheep, Lamb with Dark Brown Legs and Head",4 +87653,Duplo Door 1 x 4 Wooden Gate with Handle,4 +87654,"ROOF W. OPENING 8X8X6,5",4 +87662,Electric 7.4V Rechargeable Battery - NXT [DC plug],45 +87675,Cloth Sail Triangular 17 x 20 with Dark Tan Stitching Print [10210],38 +87676,Cloth Sail Rectangle with Dark Tan Stitching Print [10210],38 +87684,Duplo Cloth Tent 2,4 +87685,Minifig Plume Dragon Wing Left,27 +87686,Minifig Plume Dragon Wing Right,27 +87687,Minifig Plume Dragon,27 +87691,Scala Clip-On Flower,42 +87692,Minifig Plume Feather Triple,27 +87693,Minifig Plume Feather Small,27 +87693pr0001,Minifig Black Genie Hair with Pearl Gold Band and Pin [Plume Feather Small],13 +87694,Minifig Plume Feather Large,27 +87695,Cattle Horns,28 +87696,Minifig Plumed / Feathered Headdress,27 +87697,Tyre 21 x 12 with Offset Tread Small Wide and Center Band,29 +8769stk01,Sticker for Set 8769 - (54503/4281271),17 +87702,LORRY W. NOSE 5X15X5½,4 +87703,HORSE TRAILER 5X11X6 ASS. NO 2,24 +87745,"Technic, Pin Connector Round Curved with Fin and Hole",12 +87747,"Barb Large (Claw, Horn)",28 +87748,Minifig Ring with Bands and Triangle [Plain],27 +87748pr0001,Ring with Centre Triangle with Gold Bands and Shark Print [Atlantis Key],27 +87748pr0002,Minifig Ring with Triangle with Gold Bands and Manta Ray Print,27 +87748pr0003,Ring with Centre Triangle with Gold Bands and Crab Print [Atlantis Key],27 +87748pr0004,Minifig Ring with Triangle with Gold Bands and Squid Print,27 +87748pr0005,Ring with Centre Triangle with Gold Bands and Turtle Print [Atlantis Key],27 +87748pr0006,Ring with Centre Triangle with Gold Bands and Triangle Print [Atlantis Key],27 +87749,Lower Body with Tentacles,13 +87750,Turntable 4 x 4 Top with Jagged Edge and Three Segments (Atlantis Key Holder),18 +87751,Propeller 7 Blade 6 Diameter,35 +87752,Windscreen 6 x 4 x 2 1/3 Bubble Canopy with Handle,47 +87754,Minifig Helmet - Underwater Atlantis,27 +87756,Minifig Head Modified Shark [Plain],24 +87756pr01,Minifig Head Modified Shark with Dark Blue Print and Fin,13 +87757,"Minifig Head Cover, Squid [Plain]",24 +87757pr01,"Minifig Head Cover, Squid with Yellow Print",13 +87758,"Minifig Head Cover, Manta Ray [Plain]",24 +87758pr01,"Minifig Head Cover, Manta Ray with White Print",13 +87761,Technic Gear Rack 1 x 7 with Axle and Pin Holes,52 +87765,Minifig Head Modified Female with Hat and Ponytail (Jessie) [Plain],24 +87765pat01,Minifig Head Modified - Female with Red Hat and Ponytail [Jessie],13 +87765pat02,"Minifig Head Modified Female with Red Hat and Ponytail, Dirt Stains Print (Jessie)",13 +87768pat0001,Minifig Head Modified - Male with Dark Orange Hat [Woody],13 +87769,Minifig Head Modified Toy Story Alien with Antenna and Three Eyes [Plain],24 +87769pr0001,Minifig Head Modified Toy Story Alien with Antenna and Three Eyes Print,13 +87769pr0002,"Minifig, Head Modified Toy Story Alien with Antenna and Three Eyes, Purple Spill on Right Cheek Print",13 +87769pr0003,"Minifig Head Modified Toy Story Alien with Antenna and Three Eyes, Yellow Spill on Forehead Print",13 +87772pat0001,Minifig Head Modified - Male with White Beard and Dark Brown Hat [Stinky Pete],13 +87777,Minifig Visor with Horizontal Slit,27 +87780,"Head Rock Monster, Jaw Upper [Type 2]",13 +87781,Minifig Helmet - Space,27 +87781pr0001,Minifig Helmet Space with Team Extreme Logo Print,27 +87785,"Cloth Cape, Zurg Large Figure Pointed Collar with Red and Black Sides",27 +87788,Bionicle Mask Hau (Stars),41 +87789,Bionicle Armour Small 2 Claw,41 +87790,Bionicle Armor Small Triangular with Pincer End,41 +87791,Bionicle Foot Small with Axle Connector,41 +87792,"Bionicle Piraka Spine Flexible with Mask, Stars Series",41 +87793,"Bionicle Rahkshi Back Cover with Mask and 3 Blades, Stars Series [Plain]",24 +87793pat0002,"Bionicle Rahkshi Back Cover with Mask and 3 Flat Silver Blades, Stars Series",41 +87794,Hero Factory Torso Skeletal with Ball Joints,41 +87796,Hero Factory Arm / Leg Angular with Ball Joint and Ball Socket,41 +87797,"Hero Factory Foot, Type 1",41 +87798,Hero Factory Leg Guard,41 +87799,Hero Factory Chest Badge with 'H' in Spiked Circle,41 +87800,Hero Factory Weapon - Ice Arm with Icicle Blade,24 +87800pat0001,Hero Factory Weapon - Ice Arm with Trans-Light Blue Icicle Blade,41 +87801,Hero Factory Chest Armour with Triple Spiked Shoulders,41 +87802,Hero Factory Mask (Stormer),41 +87803,Hero Factory Weapon - Energized Harpoon with Boomerang [Plain],24 +87803pat0002,Hero Factory Weapon - Energized Harpoon with Lime Boomerang,41 +87805,Hero Factory Mask (Breez),41 +87806,Hero Factory Weapon - Fire Shooter,24 +87806pat0002,Hero Factory Weapon - Fire Shooter with Orange Blade,41 +87806pat0003,Hero Factory Weapon - Fire Shooter with Flexible Red Blade,41 +87807,Hero Factory Chest Armor with Rounded Shoulders,41 +87808,Hero Factory Mask (Furno),41 +87809,Hero Factory Weapon - Heavy Metal Shooter Arm,41 +8780stk01,Sticker for Set 8780 - (4270814),17 +87810,Hero Factory Chest Armour with Single Spiked Shoulders,41 +87811,Hero Factory Mask (Bulk),41 +87812,Hero Factory Weapon - Lightning [Plain],24 +87812pat0002,Hero Factory Weapon - Triple Lightning with Marbled Trans-Neon Green Bolt Pattern,41 +87812pat0003,Hero Factory Weapon - Triple Lightning with Marbled Blue Bolt Pattern,41 +87814,Hero Factory Mask (Surge),41 +87815,Hero Factory Weapon - Sonic Blaster Arm,41 +87816,Hero Factory Chest Armour with Double Spiked Shoulders,41 +87817,Hero Factory Mask (Stringer),41 +87820,"Hero Factory Shield, Type 1",41 +87821,Hero Factory Mask (Xplode),41 +87822,Hero Factory Mask (Meltdown),41 +87823,Hero Factory Mask (Corroder),41 +87824,Hero Factory Mask (Thunder),41 +87825,Hero Factory Shield / Armour Spiked [Plain],24 +87825pat0001,Hero Factory Shield / Armour Spiked with Marbled Yellow Pattern,41 +87825pat0002,Hero Factory Shield / Armour Spiked with Marbled Blue Pattern,41 +87826,Hero Factory Container Bucket,41 +87827,Hero Factory Weapon - Corroder Claws,41 +87828,Hero Factory Weapon - Crush Claw,41 +87831,Hero Factory Mask (Rotor),41 +87837,Large Figure Claw with Ball Joint Socket (Ben 10),41 +87839,Large Figure Arm / Leg Section with 2 Ball Joint Sockets (Ben 10),41 +87840,Large Figure Arm / Leg Section with 2 Ball Joints (Ben 10),41 +87841,"Large Figure Foot, Short with Ball Joint Socket (Ben 10)",41 +87842,Large Figure Forearm and Fist with Ball Joint (Ben 10),41 +87844,"Large Figure Foot, Clawed with Ball Joint Socket (Ben 10)",41 +87845,"Large Figure Wing, Flexible with Lightning Bolts and 3 Axles (Ben 10)",41 +87846,Large Figure Tail (Ben 10),41 +87847,"Large Figure Armor, Shoulder and Neck - Flexible (Ben 10)",41 +87848,"Large Figure Wing, Double with Axle (Ben 10)",41 +879,Electric Touch Sensor,45 +87913,Ladder Holder for Ladder 14 x 2.5,32 +87926,Cylinder Half 3 x 6 x 6 with 1 x 2 Cutout,23 +87941,Air Blast Launcher Base [Racers],36 +87943,Air Blast Launcher Air Pump [Racers],36 +87944,Air Blast Receiver [Racers],36 +87957,Wave Rounded Row of Three with Two Pins (Flame),27 +87958,"Rock Monster, Assembled [Type 2]",24 +87959,Body Magma Monster Large [Plain],24 +87959pr01,Body Magma Monster Large with Black Top and Black and Orange Print,13 +87969,"CROCODILE, ASSEMBLED, DEC. NO. 2",4 +87971,TRACTOR 6X10X5 W/SHAFT Ø9.41,4 +87989,Minifig Syringe,27 +87990,Minifig Hair Female Ponytail and Swept Sideways Fringe,13 +87990pr0001,Minifig Hair Ponytail and Swept Sideways Fringe with Purple Highlights Print,13 +87990pr0002,Minifig Hair Female Ponytail and Swept Sideways Fringe with Yellow Stripe Print,13 +87991,Minifig Hair - Tousled with Side Part,13 +87992,Minifig Helmet with Eye Slot and Antenna,27 +87993,Minifig Ray Gun,27 +87994,Bar 3L,32 +87994pr0001a,Bar 3L with White Ends Print,32 +87994pr0001b,SHAFT 3M DIA.3.2 NO.1,32 +87995,Minifig Hair Bubble Style (Afro),27 +87996,Minifig Horn [Plain],24 +87996pr0001,Minifig Horn with Black Bulb Print,27 +87997,Minifig Cheerleader Pom Pom,27 +87997pr0001,Minifig Cheerleader Pom Pom with Blue Top,27 +87997pr0002,Minifig Cheerleader Pom Pom with Red Top,27 +87997pr0003,POM POMS NO. 3,27 +87998,Minifig Army Helmet,27 +87998p01,Minifig Army Helmet with White Cross [Medic] Print,27 +87998pr0001,Minifig Helmet Army with Green Cross in White Circle Print (Medic),27 +87999,Minifig Hair with Beard and Mouth Hole,27 +879c02,Touch Sensor with Red Contact,45 +879c03,Touch Sensor with White Contact,45 +879c04,Touch Sensor with Yellow Contact,45 +88000,Plate Special 2 x 4 with 2 Studs and Curved Sides (Minifig Stand),9 +880002.1stk01,Sticker for Set 880002-1 - (72951/4120162),17 +880002.2stk01,Sticker for Set 880002-2 - (72831/4119257),17 +880002.3stk01,Sticker for Set 880002-3 - (22094/4121585),17 +88001,"Minifig Club, Small [Caveman]",27 +88007,Horse 'Bullseye',28 +8800stk01,Sticker for Set 8800 - (4270814),17 +88059,Large Figure Helmet with Horns [Plain],24 +88059pr0001,Large Figure Helmet with Silver Horns Print (Zurg),41 +88062,Minifig Head Modified Buzz Lightyear [Plain],24 +88062pr0001,Minifig Head Modified Buzz Lightyear,13 +88062pr0002,Minifig Head Modified Buzz Lightyear with Dirt Stains Print,13 +88064,Minifig Spacesuit (Buzz Lightyear) [Plain],24 +88064pr0001,Minifig Spacesuit with Lime Trim and Colored Buttons (Buzz Lightyear),27 +88064pr0002,"Minifig Spacesuit with Lime Trim and Colored Buttons, Dirt Stains Print (Buzz Lightyear)",27 +88065,Minifig Spacesuit Wing (Buzz Lightyear) [Plain],24 +88065pr0001,Minifig Spacesuit Wing with Red and White Stripes and Purple Wing Surface (Buzz Lightyear),27 +88065pr0002,"Minifig, Spacesuit Wing with Red and White Stripes and Purple Wing Surface print (Buzz Lightyear CMF)",27 +88066,Minifig Spacesuit Rear Quarter Visor with Pegs (Buzz Lightyear),27 +88067,Windscreen 8 x 4 2/3 x 3 2/3 Quarter Sphere [Outer] with Hinge Holes,47 +88068,Windscreen 8 x 4 2/3 x 3 2/3 Quarter Sphere (Inner) with Pins,47 +88072,Plate Special 1 x 2 with Arm Up [Horizontal Arm 5mm],9 +8809cape,"Cloth Cape, King Mathias Large Figure with 2 Neck Holes",38 +8813stk01,Sticker for Set 8813 - (56408/4294707),17 +88149,Sticker Sheet for 7594-1,17 +88166,Sticker for Set 7968,17 +88200pb01,Large Figure Head Modified Buzz Lightyear Print,41 +8823stk01,Sticker for Set 8823 - (56408/4294707),17 +88283,Minifig Hair Mid-Length Tousled with Center Part,13 +88284,Minifig Helmet Persian,27 +88286,Minifig Hair Ponytail Long French Braided,13 +88287,Minifig Keffiyeh,27 +88288,Minifig Dagger,27 +88288pat0001,Minifig Dagger with Pearl Light Gray Blade,27 +88289,Plate Special 1 x 4 with Hole and Bucket (Catapult),9 +88290,Minifig Scabbard for Two Katanas,27 +88292,Brick Arch 1 x 3 x 2,37 +88293,Brick Round Corner 3 x 3 x 2 Dome Top,20 +88295,Minifig Armour - Shoulder Pads Spiky,27 +88323,"Technic Link Tread Wide with Two Pin Holes, Reinforced",26 +88360,"BRICK 2X2, DEC. EGG",4 +88379,"CALF, NO 2 DECORATED FRONT",4 +88393,Brick Special 1 x 2 x 5 with Groove,5 +884,Electric Mindstorms RCX 2.0 Complete Assembly [No Power Jack],45 +88418,INDIAN WIG,13 +88431,Minifig Shovel [Flat Stem End],27 +88432,Turkey Drumstick [Long],27 +88489,"Minifig Hat, Forestmen's (Reissue with Blind Hole for Feather)",27 +88496,Air Blast Launcher Injector [Racers],36 +884a,Mindstorms RCX 1.0 with Power Jack - Complete Brick,45 +884b,Mindstorms RCX 1.0 without Power Jack (from Mindstorms 1.5 sets) - Complete Brick,45 +88514,Large Figure Head Modified Ben 10 Spidermonkey with Blue Face Print,41 +88516,Tyre 94.2 x 22 Motorcycle Racing Tread,29 +88517,Wheel 75 x 17 Motorcycle,29 +88518,Large Figure Head Modified Ben 10 ChromaStone with Dark Purple Face Print,41 +88519,Large Figure Head Modified Ben 10 Swampfire with Black Face Print,41 +88520,Large Figure Head Modified Ben 10 Jet Ray with Yellow Brow Print,41 +88521,Large Figure Head Modified Ben 10 Humungousaur with White Teeth Print,41 +88522,Large Figure Head Modified Ben 10 Big Chill with Black Face Print,41 +88540,"DUPLO BRICK 2X2, DEC. FRUIT",4 +88618,"Ostrich, Complete Assembly [Plain]",24 +88618pr0001,Ostrich with White Tail and Wingtips / Light Flesh Legs and Head [Complete Assembly],28 +8863stk01,Sticker for Set 8863 - Sheet 1 (89822/4580685),17 +8863stk02,Sticker for Set 8863 - Sheet 2 (90735/4584370),17 +88646,Tile Special 4 x 3 with 4 Studs in Centre,15 +88646pr0001,Tile Special 3 x 4 with 4 Studs in Centre with 'TEAM GB' and Olympic Rings Print,15 +88646pr0002,Tile Special 3 x 4 with 4 Studs in Centre with 4 Silver Stars Print,15 +8864stk01,Sticker for Set 8864 - Sheet 1 (89823/4580689),17 +8864stk02,Sticker for Set 8864 - Sheet 2 (89824/4580692),17 +88685,"Minifig Cape Cloth, Pointed Collar with Black and Red Sides",27 +88691,Duplo Lion Adult Female New Style,4 +88692,Duplo Lion Adult Male New Style,4 +88693,ZEBRA DEC.,4 +88694,"Duplo Alligator Type 3 - Mouth Opens, Wide Snout",4 +88695,"Large Figure Barb, Faceted Spike (Ben 10)",41 +88704,Minifig Whip - Bent,27 +88760,"Duplo, Plate 2 x 4 with Axle Holders",4 +88762c01pb01,Duplo Wheel Double Assembly with Metal Axle and Red Rally Print,4 +88762c01pb03,Duplo Wheel Double Assembly with Metal Axle and Lt Bluish Gray Sport Print,4 +88762c01pb06,Duplo Wheel Double Assembly with Metal Axle and Lt Bluish Gray Classic Print,4 +88762c01pb08,Duplo Wheel Double Assembly with Metal Axle and Yellow 'Y' Spoke Print,4 +88762c01pb13,Duplo Wheel Double Assembly with Metal Axle and Red Sport Print,4 +88762c01pb14,Duplo Wheel Double Assembly with Metal Axle and Silver Spokes Print,4 +88762c01pb15,Duplo Wheel Double Assembly with Metal Axle and 4 Spoke Spinner Print,4 +88764pb01,Duplo Car Body 2 Top Studs Truck with Cars Tow Mater Print,4 +88765pb03,Duplo Car Body 2 Top Studs and Spoiler with Cars Lightning McQueen Piston Cup Print,4 +88784,WHEEL BASENO.4SHE/DOC/R.SPR.,4 +8880stk01,Sticker for Set 8880 - (168315),17 +88811,Minifig Bladed Claw,27 +88812,Minifig Hand Dagger,27 +8883-1,Set 8883-1 - Power Functions M-Motor,24 +8887-1,(Set) Power Functions Transformer 10VDC,24 +8888,"Idea Book 8888, Technic",17 +8889,"Idea Book 8889, Technic",17 +8890,"Idea Book 8890, Technic",17 +8891,"Idea Book 8891, Technic",17 +88930,Slope Curved 2 x 4 x 2/3 No Studs [Bottom Tubes],37 +88930p01,Slope Brick Curved 2 x 4 with 2 Gold Stripes Print [Bottom Tubes],37 +88930pr0003,Brick Curved 2 x 4 x 2/3 with Police Legend and Badge Print,37 +88930pr0004,"Slope Curved 2 x 4 x 2/3 No Studs with Bottom Tubes with Pink Heart on Blue Wings, White Circles and 2 Magenta Hearts Print",37 +88930pr0005,Slope Curved 2 x 4 x 2/3 No Studs with Bottom Tubes with Flames and Gold Lion Head Print,37 +88930pr0007,Slope Curved 2 x 4 x 2/3 No Studs with Bottom Tubes with Hoses and Machinery Print,37 +88930pr0011,"PLATE, W/ BOW 2X4X2/3, Iron Man Mask",37 +88930pr0012,"PLATE, W/ BOW 2X4X2/3, Dress Belle",37 +88930pr0200,Iron Man Mask,37 +88954,Cloth Awning with Tabs and Holes,38 +88964,"Large Figure Barb, Flame (Ben 10)",41 +8896stk01,Sticker for Set 8896 - (89826/4580717),17 +8897stk01,Sticker for Set 8897 - (89827/4580719),17 +890,Road Sign Clip-on 2 x 2 Octagon,38 +89079,Large Figure Arm / Leg Cover with Scales (Ben 10),41 +890p01,Roadsign Clip-on 2 x 2 Octagonal with Red Stop Sign Print,38 +89140,Minifig Armour Pauldron - Cloth,27 +89140pr0001,SHOULDER CLOTH NO. 2,27 +89141,Sticker Sheet for 8058-1,17 +89157,Flexible Rubber String Studded Ends [Liana] 13L,31 +89158,Duplo Liana Vine with Leaves and Two End Anti-Studs,4 +89159,Minifig Visor [Large with Trapezoid Top],27 +89187,Sheriff Car Dec.,4 +89193,"LIONS CUB, DEC.",4 +89200,"CONTAINER 4X9X3,5",24 +89201,"Tyre 24 x 14 Shallow Tread (Tread Small Hub), Band Around Center of Tread",29 +892pb06,Road Sign Clip-on 2 x 2 Triangle with Bicycle Crossing Print,38 +892pb08,Road Sign Clip-on 2 x 2 Triangle with Red Border and Truck Print,38 +892pb10,Road Sign Clip-on 2 x 2 Triangle with Shark Infested Waters Print (Printed),38 +892pb11,Road Sign Clip-on 2 x 2 Triangle with Coast Guard Logo Print,38 +89352,Camel [Complete],28 +89398,Duplo Rear Spoiler,4 +89406,Duplo Farm Rabbit,4 +89465,"Duplo Tile, Modified 4 x 4 with 4 Center Studs and Hinge",4 +89467,Duplo Fence 1 x 6 x 2,4 +89469,Large Figure Torso Skeletal with Ball Joints (Ben 10),41 +89509,Propeller 1 Blade 14L with Two Pin Holes and Four Axles,35 +89519,Door 1 x 8 x 12 Castle Gate (Portcullis),16 +89520,Minifig Helmet Castle Closed with Eye Slit,27 +89522,Horn (Unicorn),28 +89523,Plate Special 10 x 10 Octagonal with Hole,9 +89524,Horse Battle Helmet Top Stud for Horn [Unicorn],28 +89536,Motorcycle Fairing Modern,36 +8956stk01,Sticker for Set 8956 - (85078/4542508),17 +8958stk01,Sticker for Set 8958 - (85077/4542507),17 +896,Baseplate 14 x 20 with Rounded Corners,1 +8960stk01,Sticker for Set 8960 - (84682/4542503),17 +89616,"WOODY, TOY STORY",4 +89617,"JESSIE, TOY STORY",4 +89618,"BUZZ LIGHTYEAR, TOY STORY",4 +89619,"CHILD FIGURE, ALIEN TOY STORY",4 +8961stk01,Sticker for Set 8961 - (85418/4543600),17 +89648,Window 2 x 8 x 2 Boat,47 +89649,Glass for Window 2 x 8 x 2 Boat,47 +8964stk01,Sticker for Set 8964 - (85653/4544684),17 +89651,"Technic, Axle and Pin Connector 2 x 7 with Two Ball Joint Sockets, Squared Ends, Open Side Axle Holes",24 +89652,"Technic Axle Connector 2 x 3 with Ball Socket [Closed Sides, Squared Ends, Open Lower Axle Holes]",12 +89668,Electric Battery Box 9V 150mAh (Rechargeable) for Energy Display,45 +89690,DUPLO MAIZE 2X2 NO. 1,4 +896p01,Baseplate 14 x 20 with Rounded Corners and Set 355 Dots Print,1 +8970stk01,Sticker for Set 8970 - (85956/4546887),17 +8971stk01,Sticker for Set 8971 (86387/4549905),17 +89752,Wampa Body with Face Print,28 +89762,Windscreen 7 x 4 x 2 Round Extended Front Edge,47 +89801,Minifig Trophy Cup,27 +89812,LOADER TRACTOR,4 +89813,CRANE LEVER W. SPRINGY C-GRIPP,24 +89829,Sticker Sheet 2 for 8899-1,17 +89831,DUPLO CURVE 2X4X2TOW MATER,4 +89849,Duplo Door 1 x 4 x 4 with Four Equal Panes,16 +89862,SHOVEL 6X5X2.5 W C-GRIPP,4 +89873,Duplo Elephant Adult Stationary Head with Molded Tusks,4 +89873pr0003,Duplo Circus Elephant,4 +89873pr0004,Duplo Circus Elephant,4 +89879,Duplo Elephant Baby Walking,4 +89891,Dino 'Rex' Body with Rubber Front Feet [Plain],24 +89891pr0001,Dino 'Rex' Body with Rubber Front Feet,28 +89895,Dino 'Rex' Tail,28 +89898,Dino 'Rex' Leg - Right,28 +89899,Dino 'Rex' Leg - Left,28 +89908,"Tauntaun Body with Legs and Eyes Print, Flexible Tail",28 +89917,"Minifig Breastplate with Shoulder Bands, Fins and Embossed Atlantis Triangle",27 +89918,Minifig Helmet Underwater Atlantis Portal Emperor,27 +89937,"DUPLO BRICK, BOW 2X3X1PIZZA",4 +89941,"DUPLO SIGN, ROUND DINOCO",24 +89942,Buzz Lightyear Wings,4 +89947,Duplo Train Steam Engine Cabin with Green Plaque and Number 1 Print,4 +89973,Tactical Droid (LDD),13 +89973pr0001,"Torso/Head Mechanical, SW TX-20 Print (Tactical Droid) ",13 +89974,"Torso/Head Mechanical, 2-1B Medical Droid [Plain]",13 +89974pr0001,"Torso/Head Mechanical, 2-1B Medical Droid (8096)",13 +89974pr0002,"Torso/Head Mechanical, 2-1B Medical Droid (7879)",13 +89993,Piggy Bank Coin Plug,28 +89994,Pig Body with Coin Plug Hole and Hole for Hat [Plain],24 +89994pr0001,"Pig Body with Coin Plug Hole and Hole for Hat, with Eyes Print",28 +89994pr0003,"Pig Body with Coin Plug Hole, with Eyes and Dirt Print",28 +90001,Octopus Legs,13 +90005,"Minifig Pauldron Cloth, Tattered",27 +90109,"Vehicle, Tipper Bed 12 x 8 x 5 with Studs on Front Top only",36 +90187c01,Bear 'Lotso' Body [Plain],24 +90187c01pr0001,Bear 'Lotso' Body,28 +90187c01pr0002,Bear 'Lotso' Body with Dirt Print,28 +90190,Bear 'Lotso' Arm - Left,28 +90191,Minifig Head Modified Insectaloid Warrior [Plain],24 +90191pr0001,Minifig Head Modified Insectaloid Warrior (Twitch),13 +90192,Antenna - Insect,28 +90193,Minifig Wings Insectaloid Warrior (Twitch),27 +90194,Wedge Plate 3 x 4 with Stud Notches [Reinforced Underside],49 +90195,Window 1 x 2 x 2 Castle,16 +90199,"Arm Rock Monster, Toy Story Chunk",13 +90201,Plate Special 2 x 6 with Sloped Bars [Cow Catcher],36 +90202,Technic Pin Connector Round with 4 Clips,12 +90203,Bear 'Lotso' Arm - Right,28 +90254,Wampa Arm Right,28 +90255,Wampa Arm Left,28 +90258,Brick Special 2 x 2 with Grooves and Axle Hole,5 +90265,Door / Window with Four Equal Square Cornered Panes,4 +90322,Minifig Head Modified Jagged Bottom Edge,13 +90322pr0001,Minifig Head Modified Jagged Bottom Edge with Eyes Print (Brick Daddy),13 +90370,Minifig Microphone [Plain],24 +90370pr0001,Minifig Microphone with Metallic Silver Top Print,27 +90370pr0002,Minifig Microphone with Metallic Gold Top Print,27 +90370pr0004,Minifig Microphone with Black Top Half Screen Print,27 +90370pr0005,Minifig Microphone with Metallic Gold Top Half Screen Print,27 +90386,Beret,27 +90388,"Minifig Hat, Mexican Sombrero [Plain]",24 +90388pr0001,"Minifig Hat, Mexican Sombrero with Gold Print around Brim",27 +90388pr0002,"Minifig Hat, Mexican Sombrero with Green Print around Brim",27 +90388pr0003,"Minifig Hat, Mexican Sombrero with Silver Ornate Trim Pattern",13 +90390,Minifig Pharaoh's Staff,27 +90391,Minifig Pike / Spear Elaborate [Plain],27 +90391p01,Minifig Pike / Spear Elaborate With Metallic Silver Head,27 +90391pr01,Minifig Pike / Spear Elaborate with Pearl Light Gray Tip,27 +90391pr02,Minifig Pike / Spear Elaborate with Pearl Gold Tip,27 +90392,Minifig Helmet Spartan Warrior,27 +90392pr0001,Minifig Helmet Spartan Warrior with Dark Red Crest Print,27 +90395,Minifig Lifeguard Float,27 +90396,Minifig Hair Female Mid-Length Wavy with Center Part,13 +90397,Minifig Surfboard Standard,27 +90397pr0001a,Minifig Surfboard Standard with Palm Tree and Flower Print,27 +90397pr0001b,Minifig Surfboard Standard with Pink and Medium Azure Swirls and Yellow Stars Print,27 +90397pr0002,Minifig Surfboard Standard with Pink Flames Print,27 +90397pr0004,Minifig Surfboard Standard with Shark Print,13 +90398,Minifig Trophy Statuette,13 +90398pr0004,Minifig Statuette with Jack Sparrow Voodoo Doll Print,13 +90398pr0005,Minifig Statuette with Nick Fury Print,13 +90398pr0006,Minifig Statuette with SHIELD Agent Print,13 +90398pr0008,Minifig Statuette with Iron Man Print,13 +90398pr0009,Minifig Statuette with Hawkeye Print,13 +90398pr0010,Minifig Statuette with Captain America Print,13 +90398pr0011,MINI FIGURE TROPHY NO. 11,13 +90398pr0012,"MINI FIGURE TROPHY, NO. 12 (astronaut)",24 +90414,Sticker Sheet 1 for 8899-1,17 +9044,Tap 1 x 2 (Complete) White/Light Grey,9 +90458,DUPLO ROOF TILE 2X2X1 1/2 DEC.,24 +90460,"Minifig Hat, Wizards New Version, Slightly Textured",27 +90462,Minifig Headdress Mummy [Type 2],27 +90462pr0001,Minifig Headdress Mummy with Two Snakes Print,27 +90462pr0002,Minifig Headdress Mummy with Dark Blue Stripes Thin Print,27 +90462pr0003,Minifig Headdress Mummy with Dark Red Stripes Thin Print,27 +90463,Magnifying Glass with Removable Lens with Trans-Clear Lens,27 +90498,Tile 8 x 16 with Bottom Tubes,19 +90498pr0001,Tile 8 x 16 with Bottom Tubes with Runway Print,10 +90498pr0002,Tile 8 x 16 with Bottom Tubes with Runway and SHIELD Logo Print,10 +90508,Minifig Maracas,27 +90508pr0001,Minifig Maracas with Green Border Print,27 +90509,Minifig Ski 6L,27 +90538,"Minifig Hat, Very Wide Brim",27 +90540,"Bar 3L with Handle, Stop Ring and Side Stops (Minifig Ski Pole)",32 +90541,"Minifig Cap, Ski Beanie",27 +90541pr0001,"Minifig Cap, Ski Beanie with Brick Graffiti Print",27 +90541pr0002,Ski Beanie with Boomerang prtint,27 +90542,Minifig Poncho Half Cloth,27 +90542pr0001,Minifig Poncho Half Cloth with Green and Terra Cotta Print,27 +90542pr0002,Minifig Poncho Half Cloth with Dark Green and Terra Cotta Print,27 +90542pr03,Minifig Poncho Half Cloth with Aqua and Terra Cotta Print,27 +905c01,Electric Light Slope 45° 2 x 2 with Computer Console Print [Complete Assembly],45 +90605,Hero Factory Arm / Leg with Ball Joint on Axle and Ball Socket and Four Pin Holes,41 +90607,Hero Factory Arm / Leg with Ball Joint on Axle and Ball Socket and Two Pin Holes,41 +90608,Hero Factory Arm / Leg with Ball Joint on Axle and Ball Socket and Pin Hole,41 +90609,Hero Factory Arm / Leg with Ball Joint on Axle and Ball Socket,41 +90611,Hero Factory Arm / Leg with Ball Joint on Axle and Ball Socket,41 +90612,"Hero Factory Arm / Leg with Ball Joint and Ball Socket, Short",41 +90613,Hero Factory Arm / Leg with Ball Joint and Ball Socket and Four Pin Holes,41 +90615,Hero Factory Arm / Leg with Ball Joint and Ball Socket and Two Pin Holes,41 +90616,Hero Factory Arm / Leg with Ball Joint and Ball Socket and Pin Hole,41 +90617,Hero Factory Arm / Leg with Ball Joint and Ball Socket,41 +90622,Hero Factory Arm with Ball Sockets,41 +90623,"Hero Factory Torso, Large with Ball Joints",41 +90625,"Hero Factory Torso, Medium with Ball Joints",41 +90626,"Hero Factory Torso, Small with Ball Joints",41 +90630,"Technic Pin Connector Perpendicular 3L with 2 Pins, 2 Ball Joints",41 +90634,"Technic, Pin Connector Perpendicular 3L with 2 Pins, 2 Ball Joints on Axle",41 +90636,Hero Factory Armor with Ball Joint Socket - Size 8,41 +90638,Hero Factory Armor with Ball Joint Socket - Size 6,41 +90638pr0001,SHELL A 6M BALL SNAP Ø10.2 NO. 1,41 +90638pr0002,SHELL A 6M BALL SNAP Ø10.2 NO. 2,41 +90638pr0003,Hero Factory Armor with Ball Joint Socket - Size 6 with Light Blue Cloth Texture Print (Darth Vader),41 +90638pr0004,SHELL A 6M BALL SNAP Ø10.2 NO.4,41 +90638pr0005,SHELL A 6M BALL SNAP Ø10.2 NO.5,41 +90638pr0010,Hero Factory Armor with Ball Joint Socket - Size 6 with Yellow and Red Flames Print (Fire Lord),41 +90638pr0021,Hero Factory Armor with Ball Joint Socket - Size 6 with SW Red Pouch Pattern (Baze),41 +90638pr0023,"Hero Factory Armor with Ball Joint Socket - Size 6 with Lime, Red and Silver Print (Scorpio)",41 +90639,Hero Factory Armour with Ball Joint Socket - Size 5,41 +90639pr0001,Hero Factory Armor with Ball Joint Socket - Size 5 with 'FURNO 2.0' Print,41 +90639pr0002,Hero Factory Armor with Ball Joint Socket - Size 5 with 'SURGE 2.0' Print,41 +90639pr0003,Hero Factory Armor with Ball Joint Socket - Size 5 with 'BREEZ 2.0' Print,41 +90639pr0004,Hero Factory Armor with Ball Joint Socket - Size 5 with 'EVO 2.0' Print,41 +90639pr0005,Hero Factory Armor with Ball Joint Socket - Size 5 with 'NEX 2.0' Print,41 +90639pr0006,Hero Factory Armor with Ball Joint Socket - Size 5 with 'STORMER 2.0' Print,41 +90639pr0008,Hero Factory Armor with Ball Joint Socket - Size 5 with Fire and Silver Double Lightning Bolt Print (Nitroblast),41 +90639pr0009,Hero Factory Armor with Ball Joint Socket - Size 5 with Fire and Silver Single Lightning Bolt Print (Jetbug),41 +90639pr0013,Hero Factory Armor with Ball Joint Socket - Size 5 with 'ROCKA 3.0' and Gold Lion Head Print,41 +90639pr0014,Hero Factory Armor with Ball Joint Socket - Size 5 with 'NEX 3.0' and Orange Tiger Head Print,41 +90639pr0015,Hero Factory Armor with Ball Joint Socket - Size 5 with 'STORMER 3.0' and White Rhino Head Print,41 +90639pr0016,Hero Factory Armor with Ball Joint Socket - Size 5 with 'BULK 3.0' and Silver Wolf Head Print,41 +90639pr0017,Hero Factory Armor with Ball Joint Socket - Size 5 with 'STRINGER 3.0' and Black Bear Head Print,41 +90639pr0018,Hero Factory Armor with Ball Joint Socket - Size 5 with 'FURNO 3.0' and Red Eagle Head Print,41 +90639pr0019,Hero Factory Armor with Ball Joint Socket - Size 5 with Yellow Insect Print (Waspix),41 +90639pr0020,Hero Factory Armor with Ball Joint Socket - Size 5 with Spine Print (Raw-Jaw),41 +90639pr0022,Hero Factory Armor with Ball Joint Socket - Size 5 with Beast Print (Fangz),41 +90639pr0023,Hero Factory Armor with Ball Joint Socket - Size 5 with Rock Print (Bruizer),41 +90639pr0024,Hero Factory Armor with Ball Joint Socket - Size 5 with Fire Print (Pyrox),41 +90639pr0027,"Hero Factory Armor with Ball Joint Socket - Size 5 with Orange Arrows, Blue and White Chevrons, and Hero Factory Logo Print",41 +90639pr0028,"Hero Factory Armor with Ball Joint Socket - Size 5 with Lime Arrows, Black and Yellow Chevrons, and Hero Factory Logo Print",41 +90639pr0029,Hero Factory Armour with Logo and Furno Flames Print,41 +90639pr0030,"Hero Factory Armor with Ball Joint Socket - Size 5 with Red Arrows, Black and Gold Chevrons, and Hero Factory Logo Print",41 +90639pr0031,"Hero Factory Armor with Ball Joint Socket - Size 5 with Red Arrows, Orange Markings, and Hero Factory Logo Print ",41 +90639pr0032,"Hero Factory Armor with Ball Joint Socket - Size 5 with Red Arrows, Blue Markings, and Hero Factory Logo Print",41 +90639pr0033,Hero Factory Armor with Ball Joint Socket - Size 5 with Gold Armor Print,41 +90639pr0034,Hero Factory Armor with Ball Joint Socket - Size 5 with Scaly Armor and Chains Print,41 +90640,Hero Factory Armor with Ball Joint Socket - Size 4,41 +90640pr0007,Hero Factory Armor with Ball Joint Socket - Size 4 with Fire and Silver Triple Lightning Bolt Print (Drilldozer),41 +90640pr0021,Hero Factory Armor with Ball Joint Socket - Size 4 with Beast Print (Fangz),41 +90640pr0022,Hero Factory Armor with Ball Joint Socket - Size 4 with Medium Azure Stripes and Orange Spots Beast Scales Print,41 +90640pr0023,Hero Factory Armor with Ball Joint Socket - Size 4 with Yellow Beast Scales Print,41 +90640pr0024,Hero Factory Armor with Ball Joint Socket - Size 4 with Blue Spread Wings and Orange Spots Beast Print,41 +90640pr0025,"Hero Factory Armor with Ball Joint Socket - Size 4 with Orange Arrows, Lime and White Chevrons, and Hero Factory Logo Print ",41 +90641,Hero Factory Armour with Ball Joint Socket - Size 3,41 +90649,Hero Factory Upper Torso Armour,41 +90650,Hero Factory Shoulder Armour,41 +90652,Hero Factory Torso Armor with 2 Chest Holes and Ball Joint Socket,41 +90652pr0001,Hero Factory Torso Armor with 2 Chest Holes and Ball Joint Socket with Large Belt Buckle Print (Darth Vader),41 +90661,"Hero Factory Foot, Type 2",41 +9094stk01,Sticker Sheet for 9094-1,17 +90981,"Spider Web, Hanging",28 +91049,Minifig Barbell Weight,27 +911,Baseplate 10 x 48 Train Ferry [343],1 +91176,Support 2 x 2 x 13 with 5 Pin Holes,34 +912,Baseplate 16 x 16 Control Tower Set 340,1 +91347,Crane Jaw Curved,34 +91348,Duplo Fire / Grass / Ice 1 x 4 x 2,4 +91405,Plate 16 x 16,14 +915,Baseplate 24 x 32 with Three Driveways,1 +91501,Panel 2 x 2 x 1 Corner,23 +915p01,Baseplate 24 x 32 with Three Driveways with Dots Print [357 / 570],1 +915p02,Baseplate 24 x 32 with Three Driveways and Dots Print [347],1 +915px1,Baseplate 24 x 32 with Three Driveways and Dots Print [355],1 +91602,Sticker for Set 10215 - (91602/4587279),17 +91794,Train Wagon Base Assembly 4 X 8,4 +918,Electric Power Functions 9V Battery Box Lid (part of 58119),45 +91871,Duplo Leopard Adult New Style,4 +91884,Minifig Shield - Round with Stud and Raised Rim,27 +91884pr0001,Minifig Shield - Round with Stud and Raised Rim with Runes Print,27 +91884pr0002,Minifig Shield - Round with Stud and Raised Rim with Silver Dots Print,27 +91884pr0004,Minifig Shield Round with Stud and Raised Rim with Dark Red and Black Aztec Quetzal Print,27 +91884pr0005,Minifig Shield - Round with Stud and Raised Rim with Dark Brown Ring and 4 Rivets Print,27 +91884pr0006,Minifig Shield Round with Stud and Ring Around Edge with Rivets and Circular Wood Planking Print,27 +919,Electric Power Functions 9V Battery Box Case (part of 58119),45 +91966,Train Buffer Beam with Plow [Type 2],24 +91968,Train Buffer Beam for Sealed Magnet [Type 2],24 +91988,Plate 2 x 14,14 +91992,Train Buffer Beam with Sealed Magnets and Plow [Type 2],39 +91994,Train Buffer Beam with Sealed Magnets [Type 2 with Flat Bottom],39 +920,Electric Power Functions 9V Battery Box Switch (part of 58119),45 +92002,PARASOL Ø96,4 +92004,FIRE LADDER W. SOUND,4 +92005,"Duplo Turntable 4 x 4 Base, Flush Surface",4 +92006,Duplo Ladder (Fire) Telescoping Upper Section,4 +92007,PERSON BASKET W. C-GRIP,4 +92009,PARABOLA Ø48,4 +92011,Cannon Base 2 x 2,4 +92013,Technic Brick Special 2 x 2 with Ball Receptacle Wide and Axle Hole,26 +92014pb01,Duplo Car Body with 2 Studs on Back and Yellow Headlights Print (fits over Car Base 2 x 4),4 +92015,WINNIE THE POOH NO. 2,4 +92016,Duplo Piglet with Pink Body and Dark Pink Shirt with Stripes,4 +92018,Duplo Utensil Honey Pot with Base,4 +92019,Duplo Tigger,4 +92081,Minifig Hair Combed Front to Rear,13 +92082,Minifig Hair Female Long with Part over Face,13 +92083,Minifig Hair Female Long Smooth,13 +92084,"Owl Small, Angular Features",28 +92084pr0001,Owl Small - Large Yellow Eyes and Tan Chest Print,28 +92084pr0002,"Owl Small, Angular Features with Yellow Eyes and Light Bluish Gray Vertical Chest Feathers Print",28 +92084pr0003,"Owl Small, Angular Features with Yellow Eyes and Light Bluish Gray Rippled Chest Feathers Print",28 +92086,"Support Crane Stand Double without Studs on Cross-Brace, with Axle Holes on Top",34 +92088,"Train Base 6 x 24 with Two 2 x 2 Cutouts and 3 Round Holes Each End, Re-Enforced on Bottomside",36 +92092,Hinge Train Gate 2 x 4 Locking Dual 2 Fingers without Rear Reinforcements,18 +92094,Door Frame 2 x 4 x 5,4 +92099,Plate Special 4 x 6 with Trap Door Hinge [Long Pins],18 +92107,Plate Special 6 x 8 Trap Door Frame Horizontal [Long Pin Holders],18 +92199,Hero Factory Chest Badge with 'H' Design,41 +92201,Hero Factory Chest Armour with Trapezoid Shoulders,41 +92202,"Hero Factory Shield, Type 2",41 +92203,Hero Factory Face Shield with Half Visor,41 +92204,Hero Factory Face Shield with Saw Blade,41 +92205,Hero Factory Weapon - Rotary Saw,41 +92206,Hero Factory Weapon - Claw,41 +92207,Hero Factory Weapon - Saw,41 +92208,Hero Factory Helmet,41 +92209,Hero Factory Face Shield with Goggles,41 +92210,Hero Factory Face Shield with Mouth Guard,41 +92211,Hero Factory Face Shield with Scope,41 +92212,Hero Factory Weapon Accessory - Flame [Plain],24 +92212pat0001,"Hero Factory Weapon Accessory - Flame, Marbled Bright Light Orange Pattern",41 +92213,"Hero Factory Mask, Dual Sided - Jetbug/Nitroblast",41 +92214,"Hero Factory Mask, Dual Sided - Fire Lord/Drilldozer",41 +92215,Hero Factory Weapon Accessory - Machinery Armor,41 +92216,Hero Factory Shield Cap,41 +92217,Hero Factory Weapon - Half Claw,41 +92218,"Hero Factory Weapon - Rubber Blade, Long",41 +92219,Hero Factory Face Shield with Visor,41 +92220,Hero Factory Claw with Clip,41 +92221,Hero Factory Weapon - Angled Blade,41 +92222,Hero Factory Shield with Handle for Clip,41 +92223,Hero Factory Chest Armour with Angled Bar on Top and Straight Bar on Bottom,41 +92224,"Hero Factory Mask, Lion",41 +92225,"Hero Factory Mask, Tiger",41 +92226,"Hero Factory Mask, Rhino",41 +92227,"Hero Factory Mask, Eagle",41 +92228,"Hero Factory Mask, Wolf",41 +92229,"Hero Factory Mask, Bear",41 +92230,"Hero Factory Mask, Gorilla - Large",41 +92231,"Hero Factory Mask, Robotic Dog - Large",41 +92232,"Hero Factory Mask, Insect - Large",41 +92233,Hero Factory Hand Armor with Handles for Clips,41 +92234,Hero Factory Spine Armour [Flexible],41 +92235,"Hero Factory Weapon - Claw / Spike, Flexible",41 +92235pat0002,"Hero Factory Weapon - Witch Doctor Claw, Marbled Red Pattern",41 +92235pat0003,"Hero Factory Weapon - Claw / Spike, Flexible with Marbled Lime Pattern",41 +92238,Hero Factory Mask [2283],41 +92254,"Minifig Hair - Friends - Long with Ponytail, Side Bangs and Horse Riding Helmet",13 +92254pr0001,"Minifig Hair - Friends - Long with Ponytail, Side Bangs and Black Horse Riding Helmet",13 +92254pr0002,"Minifig Hair - Friends - Long with Ponytail, Side Bangs and Black Horse Riding Helmet",13 +92254pr0003,"Minifig Hair - Friends - Long with Ponytail, Side Bangs and Magenta Horse Riding Helmet",13 +92254pr0004,Riding cap with hair ponytail,13 +92255,Minifig Hair - Friends - Long Straight [2 Holes],13 +92256,Minifig Hair - Friends - Long Wavy [2 Holes],13 +92257,Minifig Hair - Friends - Long with Ponytail and Side Bangs [1 Hole],13 +92258,"Minifig Hair - Friends - Long Wavy, Partially Tied Back [1 Hole]",13 +92259,"Minifig Hair - Friends - Short, Bob Cut",13 +92262,Door 1 x 3 x 2 Left - Open Between Top and Bottom Hinge,16 +92262pr0001,Door 1 x 3 x 2 Left with Red and Yellow Flames print [w/Knob Hinge],16 +92263,Door 1 x 3 x 2 Right - Open Between Top and Bottom Hinge,16 +92263pr0001,Door 1 x 3 x 2 Right with Red and Yellow Flames print [w/Knob Hinge],16 +92279,Windscreen 7 x 4 x 2 Round with Handle,47 +92280,Plate Special 1 x 2 [Top Clip],9 +92290,Minifig Trident,27 +92328,Duplo Pig Baby - New Style,4 +92338,Chain 5 links,31 +92339,Train Base 6 x 28 with Two 2 x 2 Cutouts and 3 Round Holes Each End,36 +92340,Train Base 6 x 24 with Two 2 x 2 Cutouts and 3 Round Holes Each End,36 +92402,Tyre 30.4 x 14 Offset Tread [Centre Band],29 +92409,Tyre 17.5 x 6 with Shallow Staggered Treads and Middle Band,29 +92410,Cupboard 2 x 3 x 2 with Hollow Studs,7 +92438,Plate 8 x 16,14 +9244,Technic Universal Joint 4L [Complete Assembly],25 +9244a,Technic Universal Joint - Old Style,25 +92453,"Duplo, Train Steam Engine Cabin 3 x 3 x 3 1/2",4 +92456,"Torso Friends (aka TORSO, GIRL W/ARM 1) [Plain]",24 +92456pr0001c01,"Torso Friends - Light Blue Halter Top with Paw and Butterflies Print, Light Flesh Arms with Hands",13 +92456pr0002c01,"Torso Friends - Magenta Top with Floral Print, Medium Dark Flesh Arms with Hands",13 +92456pr0003c01,"Torso Friends - Light Aqua Sweater with Dark Blue Collar, Light Aqua Sleeves and Light Flesh Hands Print",13 +92456pr0004c01,"Torso Friends - Dark Pink Top with Hearts Print, Light Flesh Arms and Hands",13 +92456pr0005c01,"Torso Friends - Light Aqua Blouse Print, Light Flesh Arms with Hands and Light Aqua Sleeves Print",13 +92456pr0006c01,"Torso Friends - Red Holiday Jacket with White Trim, Argyle Sweater and White Scarf Print, Light Flesh Arms with Hands with Red Sleeves Print",13 +92456pr0007c01,"Torso Friends - Bright Light Orange Vest Top with Notes and Circles Print, Medium Dark Flesh Arms with Hands",13 +92456pr0008c01,"Torso Friends - Bright Pink Blouse Top with Open Collar and Button Print, Light Flesh Arms with Hands",13 +92456pr0009c01,"Torso Friends - Light Aqua Halter Neck Top with Paw Prints Print, Light Flesh Arms with Hands",13 +92456pr0010c01,"Torso Friends - White Vest Top with Squares Print, Medium Dark Flesh Arms with Hands",13 +92456pr0011c01,"Torso Friends - Medium Violet Top with Flowers Print, Light Flesh Arms with Hands",13 +92456pr0013c01,Torso Friends - Magenta Top with Butterfly Print / Light Flesh Arms and Hands,13 +92456pr0015c01,"Torso Friends - Orange Vest Top with Hearts Print, Light Flesh Arms with Hands",13 +92456pr0017c01,"Torso Friends - Red Top with Christmas Tree Print, Red Sleeves and Light Flesh Hands",13 +92456pr0018c01,"Torso Friends - Light Yellow Halter Top with Orange Flower Print, Medium Dark Flesh Arms and Hands",13 +92456pr0019c01,"Torso Friends - White Halter Top with Stars Print, Light Flesh Arms with Hands",13 +92456pr0021c01,"Torso Friends - Lime Halter Neck Top with Musical Notes and Butterfly Print, Medium Dark Flesh Arms and Hands",13 +92456pr0022c01,"Torso Friends - White Sweater with Red Reindeer Print, Light Flesh Arms with Hands with White Sleeves Print",13 +92456pr0023c01,"Torso Friends - Dark Azure Bikini Top Print, Medium Dark Flesh Arms with Hands",13 +92456pr0024c01,Torso Friends - Medium Blue Cinderella Star Burst Dress with Bright Light Blue Sleeves and Gloves,13 +92456pr0025c01,Torso Friends - Medium Lavender Bodice Top with Short Sleeves Light Flesh Arms and Light Flesh Hands,13 +92456pr0026c01,"Torso Friends - Sleeveless Top with White and Magenta Print, Light Flesh Arms and Hands",13 +92456pr0027c01,"Torso Friends - Dark Blue and White Halter Top with Flowers and Necklace Print, Light Flesh Arms and Hands",13 +92456pr0028c01,"Torso Friends - Bright Light Orange Halter Top with Red and White Print, Medium Dark Flesh Arms with Hands",13 +92456pr0029c01,"Torso Friends - Lime Bikini Top with Magenta and White Lei Print, Light Flesh Arms with Hands",13 +92456pr0030c01,"Torso Friends - White Soccer Jersey with '7' Print, Light Flesh Arms with Hands and Bright Light Blue Short Sleeves Print",13 +92456pr0031c01,"Torso Friends - Black Jacket with Bow Tie and Cummerbund Print, Black Sleeves and Light Flesh Hands",13 +92456pr0032c01,"Torso Friends - Medium Lavender Jacket with Bright Light Blue Scarf Print, Medium Lavender Sleeves and Light Flesh Hands",13 +92456pr0033c01,"Torso Friends - Crop Top with Whistle Print, Light Flesh Arms and Hands",13 +92456pr0034c01,"Torso Friends - Bright Pink Halter Top with Palm Tree, Waves and Flowers Print, Light Flesh Arms and Hands",13 +92456pr0035c01,"Torso Friends - White Vest Top with Magenta Necklace Print, Medium Dark Flesh Arms and Hands",13 +92456pr0036c01,Torso Friends - Light Aqua Top with Flower Print,13 +92456pr0037c01,Torso Friends - Lavender Top with Flower Design,13 +92456pr0038c01,Torso Friends - White Chef's Jacket and Dark Red Neckerchief,13 +92456pr0039c01,"Torso Friends - White Jacket with Magenta Top Print, White Sleeves and Light Flesh Hands",13 +92456pr0040c01,"Torso Friends - Medium Green and White Striped Top with Magenta Dolphin and Starfish Print, Light Flesh Arms and Hands",13 +92456pr0041c01,"Torso Friends - White Vest Top with Pink Flowers Print, Light Flesh Arms and Hands",13 +92456pr0042c01,"Torso Friends - White Plaid Button Shirt Print, Light Flesh Arms and Hands",13 +92456pr0044c01,"Torso Friends - Magenta and White Striped Bikini Top Print, Medium Dark Flesh Arms and Hands",13 +92456pr0045c01,"Torso Friends - Olive Green Top with Flower Print, Light Flesh Arms and Hands",13 +92456pr0046c01,"Torso Friends - Dark Blue Princess Dress , Long Sleeves, Gold Armbands and Light Flesh Hands",13 +92456pr0047c01,"Torso Friends - White Karate Top with Black Belt Print, White Sleeves and Light Flesh Hands",13 +92456pr0048c01,"Torso Friends - Black Riding Jacket with White Blouse Print, Black Sleeves and Light Flesh Hands",13 +92456pr0049c01,"Torso Friends - Bright Pink Princess Dress Print, Bright Pink Sleeves and Light Flesh Hands",13 +92456pr0051c01,"Torso Friends - Princess Dress Medium Blue Print, Bright Light Blue Sleeves and Gloves",13 +92456pr0052c01a,"Torso Friends - Dark Purple Shell Bikini Print, Light Flesh Arms and Hands",13 +92456pr0052c01b,Torso Friends - Medium Azure Top with White Trim,13 +92456pr0053c01,"Torso Friends - Sand Green Top with Red Cross Logo and Lavender Scarf Print, Light Flesh Arms and Hands",13 +92456pr0054c01,"Torso Friends - Lavender Blouse Top with Red Cross Logo, White Collar and Magenta Scarf Print, Light Flesh Arms and Hands",13 +92456pr0056c01,"Torso Friends - Medium Blue Blouse Top with Red Cross Logo and Sand Green Shirt and Scarf Print, Light Flesh Arms and Hands",13 +92456pr0057c01,"Torso Friends - Bright Pink Blouse Top with Red Cross Logo and Dark Tan Scarf Print, Medium Dark Flesh Arms and Hands",13 +92456pr0060c01,"Torso Friends - Bright Light Orange Vest Top with Music Notes and Circles Print, Medium Dark Flesh Arms and Hands",13 +92456pr0061c01,"TORSO, GIRL W/ARM 1, ASS. 61",13 +92456pr0062c01,"TORSO, GIRL W/ARM 1, ASS. 62",13 +92456pr0063c01,"Torso Friends - Dark Pink Top with Swirls and Stars Print, Bright Pink Sleeves and Light Flesh Hands",13 +92456pr0064c01,"Torso Friends - Medium Azure and Light Aqua Tube Top with Gold Necklace Print, Medium Dark Flesh Arms and Hands",13 +92456pr0065c01,"Torso Friends - Medium Azure Top with Silver Icons Print, Light Aqua Sleeves and Light Flesh Hands",13 +92456pr0066c01,"Torso Friends - Black Top with Flower Print, Light Aqua Sleeves and Dark Azure Gloves Print",13 +92456pr0067c01,"Torso Friends - Bright and Dark Pink Bikini Top Print, Light Flesh Arms and Hands",13 +92456pr0068c01,"TORSO, GIRL W/ARM 1, ASS. 68",13 +92456pr0069c01,"TORSO, GIRL W/ARM 1, ASS. 69",13 +92456pr0070c01,"TORSO, GIRL W/ARM 1, ASS. 70",13 +92456pr0071c01,"Torso Friends - Dark Purple Vest Top with Yellow Buttons and Comb Print, Light Flesh Arms and Hands",13 +92456pr0072c01,"Torso Friends - White Top with Dark Purple and Gold Belt and Butterfly Print, Dark Purple Elves Tattoo, Light Flesh Arms and Hands",13 +92456pr0073c01,"Torso Friends - Light Aqua Halter Top with Dark Blue and Silver Belt and Circles Print, Dark Azure Elven Tattoo, Light Flesh Arms and Hands",13 +92456pr0074c01,"TORSO, GIRL W/ARM 1, ASS. 74",13 +92456pr0075c01,"Torso Friends - White Top with Dark Blue Stripes and Necklace Print, Light Flesh Arms and Hands",13 +92456pr0076c01,"TORSO, GIRL W/ARM 1, ASS. 76",13 +92456pr0077c01,"TORSO, GIRL W/ARM 1, ASS. 77",13 +92456pr0078c01,"TORSO, GIRL W/ARM 1, ASS. 78",13 +92456pr0079c01,"TORSO, GIRL W/ARM 1, ASS. 79",13 +92456pr0080c01,"TORSO, GIRL W/ARM 1, ASS. 80",13 +92456pr0081c01,"TORSO, GIRL W/ARM 1, ASS. 81",13 +92456pr0082c01,"TORSO, GIRL W/ARM 1, ASS. 82",13 +92456pr0083c01,"TORSO, GIRL W/ARM 1, ASS. 83",13 +92456pr0085c01,"TORSO, GIRL W/ARM 1, ASS. 85",13 +92456pr0086c01,"TORSO, GIRL W/ARM 1, ASS. 86",13 +92456pr0087,"Torso Friends - Lime Sleeveless Vest and Necklace over Black and Gold Top with Flower print, Light Flesh Arms and Hands",13 +92456pr0088,"Torso Friends - Lime Strapless Top with Lavender Trim and Silver and Magenta Flowers Pattern, Light Flesh Arms and Hands",13 +92456pr0089c01,Torso Friends [41172],13 +92456pr0090c01,"Torso Friends Medium Orange Top with Laces and Magenta Flame Trim, Medium Dark Flesh Arms with Hands with Gold Elves Tattoo Left Print",13 +92456pr0091c01,"Torso Friends Dark Purple Sleeveless Top with Wings, Gold Trim and Necklace Print, Light Flesh Arms with Hands with Gold Tattoo Print",13 +92456pr0092c01,"Torso Friends Dark Green Halter Top with Copper Straps and Lime Print, Light Flesh Arms with Hands",13 +92456pr0093c01,Torso Friends [41171],13 +92456pr0094c01,"TORSO GIRL W/ARM, NO. 94",13 +92456pr0095c01,"TORSO, GIRL W/ARM NO. 95",13 +92456pr0096c01,"TORSO, GIRL W/ARM NO. 96",13 +92456pr0097c01,"TORSO, GIRL W/ARM NO. 97",13 +92456pr0098c01,Torso Friends - Lime Top with Heart Electrons in Atomic Symbol print and Light Flesh Arms and Hands,13 +92456pr0099c01,Torso Friends - Dark Pink Top under Denim Overalls with pen and ruler in pocket and Light Flesh Arms and Hands,13 +92456pr0100c01,Torso Friends Magenta Top with Strings and Front Pockets print / Light Flesh Arms with Hands,13 +92456pr0101c01,"Torso Friends Halter Top with Bright Light Orange Chevron Stripe, Magenta Trim print / Medium Dark Flesh Arms with Hands",13 +92456pr0102c01,Torso Friends Sand Green Tied Blouse with Collar and Pockets over Magenta and Pink Striped Shirt print / Light Flesh Arms with Hands,13 +92456pr0103c01,"TORSO, GIRL W/ARM NO. 103",13 +92456pr0104c01,"TORSO, GIRL W/ARM NO. 104",13 +92456pr0105c01,"TORSO, GIRL W/ARM NO. 105",13 +92456pr0106c01,"TORSO, GIRL W/ARM NO. 106",13 +92456pr0107c01,"TORSO, GIRL W/ARM 1, NO. 107",13 +92456pr0108c01,Torso Mini Doll Friends - Lime Halter Top With Dark Green Dots Print - Light Flesh Arms and Hands,13 +92456pr0109c01,"TORSO, GIRL W/ARM 1, NO. 109",13 +92456pr0110c01,TORSO GIRL W/ARM NO. 110,13 +92456pr0111c01,"TORSO, GIRL W/ARM, NO. 111",13 +92456pr0113c01,TORSO GIRL W/ARM NO. 113,13 +92456pr0114c01,"TORSO, GIRL W/ARM 1, ASS. 114",13 +92456pr0115,Torso Friends Emily Jones,13 +92456pr0116,Torso Friends - Feather Necklace over Lavender Top with Lavender Filigree on White Fabric Inset Print - Light Flesh Arms and Hands (Aira Elves Tattoo on Upper Left Arm),13 +92456pr0201,"TORSO, GIRL, W/ ARM, NO. 201",13 +92456pr0202,Friends Torso Girl - Top with Red and Black Diamonds Harlequin print - Black Short Sleeves on Light Flesh Arms and Hands,13 +92456pr0203,"Torso, Girl, No. 203",13 +92456pr0204,"TORSO, GIRL, W/ ARM, NO. 204",13 +92456pr0205c01,"TORSO, GIRL, W/ ARM, NO. 205",13 +92456pr0206,Torso Friends - Yellow Honeycomb Pattern Front with 2 Hexagon Buttons - Pearl Dark Gray Sleeves with Medium Azure Cuffs print and Medium Dark Flesh Hands,13 +92456pr0207,"TORSO, GIRL, W/ ARM, NO. 207 Wonder Woman",13 +92456pr0207c01,"TORSO, GIRL, W/ ARM, NO. 207",13 +92456pr0208,"Torso, Girl, W/ Arm, No. 208",13 +92456pr0209c01,Torso Friends - Halter Top with 1 Strap and White Accents - Necklace - Belt Dual Side Print - Medium Dark Flesh Arms with Hands - Moana,13 +92456pr0210c01,"TORSO, GIRL, W/ ARM, NO. 210",13 +92456pr0211c01,"TORSO, GIRL, W/ ARM, NO. 211",13 +92456pr0212c01,"TORSO, GIRL, W/ ARM, NO. 212",13 +92456pr0213c01,"TORSO, GIRL, W/ ARM, NO. 213.",13 +92456pr0214c01,"TORSO, GIRL, W/ ARM, NO. 214",13 +92456pr0215c01,"TORSO, GIRL, W/ ARM, NO. 215",13 +92456pr0216c01,"TORSO, GIRL W/ ARM, NO. 216",13 +92456pr0218c01,"TORSO, GIRL, W/ ARM, NO. 218",13 +92456pr0219c01,"TORSO, GIRL, W/ ARM, NO. 219",13 +92456pr0223c01,"TORSO, GIRL, W/ ARM, NO. 223",13 +92456pr0226c01,"TORSO, GIRL, W/ ARM, NO. 226",13 +92456pr0239c01,"TORSO, GIRL, W/ ARM, NO. 239",13 +92456pr0240c01,"TORSO, GIRL, NO. 240",13 +92456prx001,Torso Friends Combo Light Aqua Long Sleeve Blouse with Dots and Star print Light Flesh Hands,13 +92474,Windscreen 6 x 2 x 2 with Handle,47 +92547,Turntable 6 x 6 Round Red Base with Top (Ninjago Spinner) [Plain],24 +92547pr0001,Turntable 6 x 6 Round Dark Bluish Gray Base with White Top with Yellow Faces on Blue Print (Ninjago Spinner),27 +92547pr0002,Turntable 6 x 6 Round Dark Bluish Gray Base with Lime Top with Gray Faces on Brown Print (Ninjago Spinner),27 +92547pr0003,Turntable 6 x 6 Round Dark Bluish Gray Base with Medium Blue Top and White Faces on White Print (Ninjago Spinner),27 +92547pr0004,Turntable 6 x 6 Round Dark Bluish Gray Base with Orange Top and Yellow Faces on Red Print (Ninjago Spinner),27 +92547pr0005,Turntable 6 x 6 Round Dark Bluish Gray Base with Black Top with Blue Skulls on White Print (Ninjago Spinner),27 +92547pr0006,Turntable 6 x 6 Round Dark Bluish Gray Base with Black Top with Lime Skulls on Green Print (Ninjago Spinner),27 +92547pr0007,Turntable 6 x 6 Round Dark Bluish Gray Base with Black Top with White Skulls on Orange Print (Ninjago Spinner),27 +92547pr0008,Turntable 6 x 6 Round Dark Bluish Gray Base with Black Top with Orange Skulls on Red Print (Ninjago Spinner),27 +92547pr0009,Turntable 6 x 6 Round Red Base with Pearl Gold Top with Gold Faces on Black Print (Ninjago Spinner),27 +92547pr0010,Turntable 6 x 6 Round Dark Bluish Gray Base with Flat Silver Top with Light Green Skulls on Yellow Print (Ninjago Spinner),27 +92547pr0011,Turntable 6 x 6 Round Dark Bluish Gray Base with Orange Top and Red Flames on Yellow Print (Ninjago Spinner),27 +92547pr0012,Turntable 6 x 6 Round Red Base with Pearl Gold Top with Gold Faces on White and Blue Print (Ninjago Spinner),27 +92547pr0013,Turntable 6 x 6 Round Dark Bluish Gray Base with White Top with Black Dragons on Gold Print (Ninjago Spinner),27 +92547pr0014,Turntable 6 x 6 Round Red Base with Pearl Gold Top with Gold Faces on Red Print (Ninjago Spinner),27 +92547pr0015,Turntable 6 x 6 Round Red Base with Pearl Gold Top with Gold Faces on Blue Print (Ninjago Spinner),27 +92547pr0016,Turntable 6 x 6 Round Trans-Medium Blue Base with Trans-Medium Blue Top and White and Purple Print (Ninjago Spinner),27 +92547pr0017,Turntable 6 x 6 Round Trans-Purple Base with Trans-Purple Top and Black and White Print (Ninjago Spinner),27 +92547pr0018,Turntable 6 x 6 Round Dark Purple Base with Trans-Bright Green Top and Glow in the Dark Opaque Skulls on Dark Gray Print (Ninjago Spinner),27 +92547pr0019,Turntable 6 x 6 Round Dark Purple Base with Trans-Light Blue Top and Glow in the Dark Opaque Skulls on Light Blue Print (Ninjago Spinner),27 +92579,Windscreen 8 x 4 x 2 with 4 Studs and Handle,47 +92580,Windscreen 5 x 6 x 2 Curved Top Canopy with 4 Studs and Handle,47 +92582,Hinge Plate 2 x 2 Locking with 1 Finger on Top,18 +92583,Windscreen 3 x 6 x 2,47 +92584,Wedge Plate 10 x 10 Cut Corner [No Centre Studs],49 +92585,Minifig Crowbar,27 +92586,Dog - Alsatian / German Shepherd (Police Dog),28 +92586pr0001,Dog - German Shepherd [Police Dog] with Black Eyes and Forehead Print,28 +92586pr0002,Dog - Alsatian / German Shepherd with Black Eyes Print,28 +92586pr0003,Dog - Alsatian / German Shepherd with Dalmatian Print,28 +92586pr0006,DOG WITH KNOB NO. 6,28 +92589,Door Grill 1 x 4 x 9,32 +92590,Minifig Backpack [Open],27 +92591,Cylinder Half 4 x 6 x 13 with 1 x 2 Cutout,23 +92593,Plate Special 1 x 4 with 2 Studs,9 +92690,Bar 1L with Top Stud and Two Side Studs,32 +92691,Dog Bone [Long],28 +92692,Plate Special 1 x 2 with Angled Handles on Side,9 +92693,Technic Linear Actuator Mini with Dark Bluish Gray Head and Orange Axle,26 +92694,~Technic Linear Actuator Small Body,24 +92695,Technic Linear Actuator Small Axle Actuator,24 +926957,CD-Rom for Set 8483 (926.957-D),17 +92696,Technic Linear Actuator Small Piston,24 +92710c01,Boat Hull Unitary 28 x 8 Complete Assembly with Dark Bluish Gray Top,35 +92710c02,Boat Hull Unitary 28 x 8 Complete Assembly with White Top,35 +92710c03,Boat Hull Unitary 28 x 8 Complete Assembly with Reddish Brown Top,35 +92713,Conveyor Belt Modern - Belt (14 tread 'links'),24 +92715c01,Conveyor Belt Modern - Complete Assembly,34 +92738,Minifig Star Wars Blaster Small,27 +92742,Minifig Helmet SW ARF [Plain],24 +92742pb02,Minifig Helmet SW ARF with Trooper Print,27 +92742pr0001,Minifig Helmet SW ARF with Trooper Print,27 +92742pr0002,Minifig Helmet SW ARF with Elite Trooper Print,27 +92743,Minifig Head Gungan With Flat Eyes,13 +92743pr0001,Minifig Head Modified - Gungan Type 2 with Flesh Top Print,13 +92743pr0002,Minifig Head Modified Gungan Type 2 with Flesh Top and Dark Brown Mask Print,13 +92743pr0003,GUNGAN NO. 3,13 +92744,Minifig Headdress SW Iktotchi Horns,27 +92744pr0001,"Minifig Headdress SW Iktotchi Horns, Saesee Tiin Print",13 +92745,Minifig Headdress SW Togruta Montrals Long [Plain],24 +92745pr0001,"Minifig Headdress SW Togruta Montrals Long, Shaak Ti Print",13 +92745pr0003,"Minifig Headdress SW Togruta Montrals Long, Dark Blue and Orange Ahsoka Print",13 +92746,Minifig Hair Tousled and Layered,13 +92747,Minifig Shield - Ovoid with Grip,27 +92747pr0001a,Minifig Shield Oval with SW Gungan Patrol Shield Print,27 +92747pr0001b,Minifig Shield Oval with Silver Mechanical Print,27 +92747pr0001c,Minifig Shield Oval with SW Gungan Patrol Shield Print,27 +92747pr0002,OVAL SHIELD DEC NO 2,27 +92747pr0003,OVAL SHIELD DEC NO 3,27 +92747pr0004,OVAL SHIELD DEC NO 4,27 +92747pr0005,OVAL SHIELD DEC NO 5,27 +92747pr0006,OVAL SHIELD DEC NO 6,27 +92750,Minifig Head Modified Ewok with Skull Hat and Pouch Print [Plain],13 +92750pr0001,Minifig Head Modified Ewok with White Skull Hat and Dark Brown Pouch Print,13 +92750pr0002,Minifig Head Modified Ewok with Medium Dark Flesh Skull Hat and Dark Brown Pouch Print,13 +92751,Minifig Head Modified Geonosian [Plain],13 +92751pr0001,Minifig Head Modified Geonosian with Black Eyes Print,13 +92751pr0002,Minifig Head Modified Geonosian with Gray Eyes Print,13 +92753,Minifig Headdress SW Ceran Skull Top with Ponytail Hair [Plain],24 +92753pr0001,Minifig Headdress SW Ceran Skull Top with White Ponytail Hair Ki-Adi-Mundi Print,27 +92754,Arm/Leg (SW Sebulba)[Plain],24 +92754pr01,Arm/Leg with SW Sebulba Print,13 +92755,Torso Head and Middle Leg (SW Sebulba) [Plain],24 +92755pr01,Torso Head and Middle Leg with SW Sebulba Print,13 +92758,"Minifig Hair with 2 Buns, Center Parting (Princess Leia 2011)",13 +92759,Minifig Head Modified SW Watto [Plain],24 +92759pr0001,Minifig Head Modified SW Watto with Vest and Belt Print,13 +92760,Minifig Headdress SW Zabrak Front Skull Spikes and Hair [Plain],24 +92760pr0001,Minifig Headdress SW Zabrak Front Skull Spikes and Hair Eeth Koth Print,13 +92760pr0002,"Minifig Headdress SW Zabrak Front Skull Spikes, Black Dots on Front and Hair Agen Kolar Print",13 +92761,"Minifig Head Top, SW Zabrak Horns",13 +92761pr0001,"Minifig Head Top, SW Zabrak Horns, Savage Opress Print",13 +92761pr0002,"Minifig Head Top, SW Zabrak Horns, Darth Maul Print",13 +92762,Minifig Hat with Neck Protector [Plain],24 +92762pr01,"Minifig Hat with Neck Protector, Dark Red Top and Gold Flap Print",27 +92762pr02,"Minifig Hat with Neck Protector, Gold Stripe Print (SW Naboo Security Officer)",27 +92814,"Minifig Cap, Graduation Mortarboard with Tassel",27 +92815,"Torso Friends Man (aka TORSO, MAN W/ARM 1) [Plain]",24 +92815pr0001c01,"Torso Friends Man - White Shirt and Red Tie Print, White Sleeves and Light Flesh Hands",13 +92815pr0002c01,"TORSO, MAN W/ARM 1, ASS. 2",13 +92815pr0003c01,Torso Friends - Dark Blue Top with Purple Sash Pattern - Dark Blue Arms and Hands with Sand Blue Forearms print,13 +92815pr0004c01,"TORSO, MAN, W/ARM, NO. 4",13 +92815pr0100,Friends Torso Man - Dark Gray Short Sleeves T-Shirt with 'Capes&Cowls CAFE' and Cup logo - Light Flesh Arms and Hands,13 +92815pr0101c01,"TORSO, MAN, W/ ARM, NO. 101",13 +92815pr0102c01,"TORSO, MAN, W/ ARM, NO. 102",13 +92816,"Friends Torso Woman (aka TORSO, WOMAN W/ARM) [Plain]",13 +92816pr0001c01,"Torso Friends Woman - Dark Blue Blouse Top with Open Collar and Necklace Print, Light Flesh Arms and Hands",13 +92816pr0002c01,"Torso Friends Woman - Medium Lavender Vest over Lavender Shirt, Lavender Sleeves and Light Flesh Hands",13 +92816pr0003c01,"Torso Friends Woman - Sand Green Vest Top with White Necklace and Dark Purple Belt Print, Light Flesh Arms and Hands",13 +92816pr0004c01,"Torso Friends Woman - Red Sleeveless Jacket and White Scarf Print, Medium Flesh Arms and Hands",13 +92816pr0100c01,"TORSO, WOMAN, W/ ARM NO. 100",13 +92816pr0103c01,"TORSO, WOMAN, W/ ARM NO. 103",13 +92817,"Friends - Hips and Long Skirt (aka FEMALE, HIP W/SKIRT 3) [Plain]",24 +92817pr0001c01,"Friends - Hips and Long Skirt, Light Flesh Legs and Red Shoes Print",13 +92817pr0002c01,"Friends - Hips and Long Skirt, Light Flesh Legs and Medium Lavender Shoes Print",13 +92817pr0003c01,"Friends - Hips and Long Skirt, Light Flesh Legs and Dark Purple Sandals Print",13 +92817pr0004c01,"Friends - Hips and Long Skirt, Medium Dark Flesh Legs and Red / White Shoes Print",13 +92817pr0122c01,"SKIRT, W/ HIP, NO. 122",13 +92818,"Friends - Hips and Layered Skirt (aka FEMALE, HIP W/ SKIRT 1) [Plain]",24 +92818pr0001c01,"Friends - Hips and Layered Skirt, Light Flesh Legs and Lavender Shoes Print",13 +92818pr0002c01,"Friends - Hips and Layered Skirt, Light Flesh Legs and Magenta Shoes Print",13 +92818pr0003c01,"Friends - Hips and Layered Skirt, Light Flesh Legs and White Shoes Print",13 +92818pr0004c01,"Friends - Hips and Layered Skirt, White Legs and Magenta Shoes with Ankle Straps Print",13 +92818pr0005c01,"Friends - Hips and Layered Skirt, Medium Dark Flesh Legs and Magenta Sandals Print",13 +92818pr0006c01,"Friends - Hips and Layered Skirt, Medium Dark Flesh Legs and Magenta Shoes Print",13 +92818pr0007c01,"Friends - Hips and Layered Skirt, Bright Pink Legs and White Boots Print",13 +92818pr0008c01,"Friends - Hips and Layered Skirt, White Legs and Black Shoes with White Laces Print",13 +92818pr0010c01,"Friends - Hips and Layered Skirt, Light Flesh Legs and White Shoes with Ankle Straps Print",13 +92818pr0011c01,"Friends - Hips and Layered Skirt, Light Flesh Legs and Medium Lavender Shoes Print",13 +92818pr0012c01,"Friends - Hips and Layered Skirt, Light Flesh Legs and Dark Blue Shoes Print",13 +92819,"Friends - Hips and Cropped Trousers (aka FEMALE, HIP W/SHORTS NO.1) [Plain]",24 +92819pr0001,"Friends - Hips and Cropped Trousers with Purple Flower, Medium Dark Flesh Legs and Bright Pink Sandals Print",13 +92819pr0002a,"Friends - Hips and Cropped Trousers with Dark Pink Butterfly, Light Flesh Legs and Medium Lavender Sandals Print",13 +92819pr0002b,"Friends - Hips and Cropped Trousers, Light Flesh Legs and Black Shoes Print",13 +92819pr0003,"Friends - Hips and Cropped Trousers, Medium Dark Flesh Legs and White Shoes Print",13 +92819pr0004,"Friends - Hips and Cropped Trousers, Light Flesh Legs and White Deck Shoes Print",13 +92819pr0006c01,"Friends - Hips and Cropped Trousers, Light Flesh Legs and Brown / Reddish Brown Boots Print",13 +92819pr0007c01,"Friends Hips and Cropped Trousers, Light Flesh Legs and Brown Shoes with Reddish Brown Crossed Laces Print",13 +92819pr0008c01,"HIP W/SHORTS 1, NO. 8",13 +92819pr0009c01,HIP W/SHORTS 1 NO. 9,13 +92819pr0010c01,"HIP W/ SHORTS 1, NO. 10",13 +92819pr0103c01,Friends Hips and Cropped Trousers - Brown Boots with Orange Crossed Laces Print,13 +92819pr0104c01,Friends Hips and Cropped Trousers - Pearl Dark Gray Boots with Gold Laces,13 +92820,"Friends - Hips and Pleated Skirt (aka FEMALE, HIP WITH SKIRT 2) [Plain]",13 +92820pr0001c01,"Friends - Hips and Pleated Red Skirt, Red Leggings and Black Boots Print",13 +92820pr0003c01,Friends - Hips and Pleated Medium Lavender Skirt - Light Flesh Legs with Bright Pink Strap Shoes Print,13 +92820pr0004c01,"Friends - Hips and Pleated Pink Skirt, Light Flesh Legs and Magenta Shoes with Ankle Straps Print",13 +92820pr0005c01,"Friends - Hips and Pleated Bright Light Blue Skirt, Light Flesh Legs and White Shoes Print",13 +92820pr0006c01a,"Friends - Hips and Pleated Dark Purple Skirt, Light Flesh Legs and Magenta Shoes Print",13 +92820pr0006c01b,Friends - Hips and Pleated Sand Green Skirt - Light Flesh Legs - Sand Green and White Shoes with Laces Print,13 +92820pr0007c01,Friends - Hips and Pleated Sand Blue Skirt - Light Flesh Legs - Sand Blue Shoes with Magenta Stripe Print,13 +92820pr0008c01,Friends - Hips and Pleated Red Skirt with Sand Blue Leggings and Red Boots with White Trim Print,13 +92820pr0009c01,HIP W/ SKIRT 2 NO. 9,13 +92820pr0011c01,Friends - Hips and Pleated Medium Lavender Skirt with Light Flesh Legs and Bright Pink Shoes Print,13 +92820pr0012c01,Friends - Hips and Pleated Bright Light Blue Skirt with Light Flesh Legs and White Shoes Print,13 +92820pr0013c01,"FEMALE, HIP WITH SKIRT 2, NO. 13",13 +92820pr0014c01,"FEMALE, HIP WITH SKIRT 2, NO. 14",13 +92820pr0100,"SKIRT, W/ HIP, NO. 100",13 +92820pr0101c01,Hips and Pleated Black Skirt with Azure Vertical Stripes - Light Flesh Legs - Black Boots with Azure Horizontal Stripes Print,13 +92820pr0106c01,"HIP WITH SKIRT 2, NO. 106",13 +92820pr0110,Hips and Pleated Sand Blue Skirt - Light Flesh Legs with Dark Blue Leggings - Magenta Shoes with White Laces Print,13 +92821,Friends - Hips and Trousers with Back Pockets (aka HIP W/PANTS 1) [Plain],13 +92821pr0001c01,"Friends - Hips and Trousers with Back Pockets, Dark Tan Shoes Print",13 +92821pr0002c01,"Friends - Hips and Trousers with Back Pockets, Black Boots Print",13 +92821pr0003c01,Friends - Hips and Trousers with Back Pockets and Dark Red Shoes,13 +92842,Propeller 3 Blades 5 Diameter,35 +92851,Bicycle Wheel with Black Tire,29 +92862,"Minifig Cape Cloth, Invisibility Cloak",27 +92865,"Minifig Cape Cloth, Dementor Style Tattered",27 +92906,Technic Steering / CV Joint Axle,25 +92907,Technic Axle and Pin Connector Perpendicular Split,12 +92908,"Technic, Steering Portal Axle Housing",25 +92908c01,"Technic, Steering Portal Axle, Complete Assembly with Dark Bluish Gray Hub",24 +92909,Technic Steering Hub for Portal Axle,25 +92910,Technic Steering Ball Joint Large Open with C-Shape Pivot Frame,25 +92911,Technic Steering Ball Joint Large Receptacle,25 +92912,Tyre 94.3 x 38 R,29 +92925,SIRENE LIGHT AND SOUND,4 +92926,Trash Can with 4 Cover Holders,7 +92937,"Duplo Pram (Baby Carriage, Stroller) with Black Wheels, New Style - Complete Assembly",4 +92938,Duplo Wheelbarrow with Black Wheels,4 +92943,Minifig Head Cover Hammerhead Shark [Plain],24 +92943pr0001,Minifig Head Cover Hammerhead Shark with Eyes and Light Bluish Gray Lines Print,27 +92944,Hand Crab Pincer,13 +92945,"Minifig, Head Modified Lobster [Plain]",24 +92945pr0001,"Minifig, Head Modified Lobster",13 +92946,Slope 45° 2 x 1 with 2/3 Cutout [Original Version],3 +92947,"Brick, Round 2 x 2 [Grill]",20 +92950,Brick Arch 1 x 6 Raised Arch,37 +92990,DUPLO BRICK 2X2X2 A,4 +92992,DUPLO BRICK 2X2X2 B,4 +92993,DUPLO BRICK 2X2X2 C,4 +92994,DUPLO BRICK 2X2X2 D,4 +92995,DUPLO BRICK 2X2X2 E SQUIRREL,4 +92996,DUPLO BRICK 2X2X2 F,4 +92997,DUPLO BRICK 2X2X2 G,4 +92998,DUPLO BRICK 2X2X2 H,4 +92999,DUPLO BRICK 2X2X2 I,4 +93000,DUPLO BRICK 2X2X2 J JUNGLE,4 +93001,DUPLO BRICK 2X2X2 K,4 +93002,DUPLO BRICK 2X2X2 L,4 +93003,DUPLO BRICK 2X2X2 M,4 +93006,DUPLO BRICK 2X2X2 N NEST,4 +93011,DUPLO BRICK 2X2X2 O,4 +93012,DUPLO BRICK 2X2X2 P,4 +93013,DUPLO BRICK 2X2X2 Q,4 +93014,DUPLO BRICK 2X2X2 R,4 +93015,DUPLO BRICK 2X2X2 S SUN,4 +93016,DUPLO BRICK 2X2X2 T,4 +93017,DUPLO BRICK 2X2X2 U,4 +93018,DUPLO BRICK 2X2X2 V,4 +93019,DUPLO BRICK 2X2X2 X,4 +93020,DUPLO BRICK 2X2X2 Z,4 +93021,DUPLO BRICK 2X2X2 Y,4 +93055,Minifig Sword - Katana [Dragon Guard],27 +93056,Minifig Armour Breastplate with Shoulder Spikes,27 +93057,Minifig Armour - Breastplate with Shoulder Spikes [Plain],24 +93057pr0001,Minifig Armor Breastplate with Shoulder Spikes Gray Up and Ninjago Cracked Red Skull Print,27 +93057pr0002,Minifig Armor Breastplate with Shoulder Spikes White Up and Ninjago Cracked Red Skull Print,27 +93058,Minifig Throwing Star (Shuriken) with Smooth Grips,27 +93058b,Minifig Throwing Star (Shuriken) with Textured Grips,27 +93059,Minifig Conical Asian Style Hat,27 +93060,"Torso Skeleton, Angular Rib Cage, Plain",13 +93061,Arm Skeleton Bent with Clips at 90° [Vertical Grip],13 +93062,Leg Skeleton [Plain],24 +93062c01,Leg Skeleton with Black Square Foot,13 +93062c02,Leg Skeleton with Pearl Dark Gray Foot,13 +93064,Minifig Head Modified - Skeleton with Spikes [Plain],24 +93064pr0001,Minifig Head Modified - Skeleton with Tan Spikes and Metal Eyepatch Print,13 +93065,Minifig Head Modified - Skeleton with Helmet [Plain],24 +93065pr0001,Minifig Head Modified - Skeleton with Gray Helmet Print,13 +93066,Minifig Head Modified - Skull [Plain],24 +93066pr0001,"Minifig Head Modified - Skull with Red Eyes, Cracks and Worm Print",13 +93067,"Minifig Head Modified Skeleton, Lower Jaw [Plain]",24 +93067pr01,"Minifig Head Modified Skeleton, Lower Jaw with Ninjago Cracked Dark Red Skull Print",13 +93068,"Minifig Head Modified Skeleton, Upper Jaw [Plain]",24 +93068pr0001,"Minifig Head Modified Skeleton, Upper Jaw with Forehead Nails Print",13 +93069,Minifig Fancy Beard,13 +93070,Dragon Head (Ninjago) Upper Jaw,28 +93070pr0001,Dragon Head (Ninjago) Upper Jaw with Medium Blue Sections and Orange Stripes Print,28 +93070pr0002,"Dragon Head (Ninjago) Upper Jaw with Dark Red Sections, White Teeth and Red Stripes Print",28 +93070pr0004,Ninjago Dragon Head Upper Jaw with Dark Blue Sections and Yellow Lightning Print,28 +93070pr0005,Dragon Head (Ninjago) Upper Jaw with Red and Dark Red Fire Spirit Print,28 +93070pr0006,Dragon Head (Ninjago) Upper Jaw with Medium Blue and Dark Blue Sections and Ice Spirit Print,28 +93070pr0007,Dragon Head (Ninjago) Upper Jaw with Yellow Lightning Spirit Print,28 +93071,Dragon Head Upper Jaw with Scales and Teeth [Plain],28 +93071pr0001,"Dragon Head Upper Jaw with Dark Tan Scales, Sand Green Stripes, and White Teeth Print",28 +93071pr0002,Dragon Head (Ninjago) Upper Jaw Spiny with Reddish Brown and Black Earth Spirit Print,28 +93071pr0003,Dragon Head (Ninjago) Upper Jaw with Dark Green Stripes Print,28 +93072,Dragon Head (Ninjago) Lower Jaw with Teeth and Spines [Plain],28 +93072pr0001,Dragon Head (Ninjago) Lower Jaw with White Teeth and Orange Spines Print,28 +93072pr0002,Dragon Head Lower Jaw with White Teeth and Sand Green Spines Print,28 +93072pr0003,Dragon Head (Ninjago) Lower Jaw with White Teeth and Yellow Spines Print,28 +93072pr0004,Dragon Head (Ninjago) Lower Jaw with White Teeth and Black Spines Print,28 +93072pr0005,Dragon Head (Ninjago) Lower Jaw with Dark Green Spines Print,28 +93082,Friends Accessories - Kitchen Implements Kit,27 +93085,Horse with 2 x 2 Cutout [Plain],24 +93085pr0002,"Horse with 2 x 2 Cutout, Lavender Eyes, Face Decoration, Mane and Tail Print",28 +93085pr0003,"Horse with 2 x 2 Cutout, Blue Eyes and Face Decoration, Lavender Mane and Tail Print",28 +93085pr0004,"Horse with 2 x 2 Cutout, Lavender Eyes and Face Decoration, Gold Mane and Tail Print",28 +93085pr0005,HORSE W 4 KNOBS W HOLE Ø1.5 NO. 5,28 +93085pr01,"Horse with 2 x 2 Cutout, Blue Eyes and White Blaze Print",28 +93085pr02,"Horse with 2 x 2 Cutout, Blue Eyes Print",28 +93085pr03,"Horse with 2 x 2 Cutout, Brown Eyes, White Blaze Print and Black Mane & Tail Print",28 +93085pr05,"Horse with 2 x 2 Cutout, Brown Eyes, Dark Brown Mane and Tail Print",28 +93086,Friends Horse Saddle with Stirrups and Top Stud,28 +93087,Friends Horse Bridle,28 +93088,Friends Dog Small Standing [Plain],24 +93088pr0001a,"Friends Dog Small Standing with Blue Eyes, Black Nose and Mouth Print",28 +93088pr0001b,"Friends Dog Small Standing with Blue Eyes, Black Nose and Mouth, and White Patch between Eyes Print",28 +93088pr0002,Friends Dog Small Standing with Patch over Eye and Spots Print,28 +93088pr0003,Friends Dog Small Standing with Lavender Eyes and Black Dalmatian Spots and Notes Print [Cookie],28 +93089,"Cat Standing, Looking Left [Plain]",24 +93089pr0001a,"Cat Standing, Looking Left with Light Green Eyes, Dark Pink Nose and Mouth and Dark Bluish Gray Stripes Print",28 +93089pr0001b,"Cat Standing, Looking Left with Tan Eyes, Black Nose and Mouth and Brown Stripes Print",28 +93089pr0002,"Cat Standing, Looking Left with Light Blue Eyes, Dark Pink Nose and Mouth Print",28 +93090,Friends Accessories Bag Round,27 +93090pr0003,Friends Accessories Bag Round with Dark Pink Ruffle,27 +93090pr0004,Friends Accessories Bag Round with Light Aqua Ruffle,27 +93090pr01,Friends Accessories Bag Round with Bright Pink Ruffle,27 +93091,Friends Handbag,27 +93091pr0003,Friends Handbag with Zipper and Dark Purple Side Print,27 +93091pr0004,Friends Handbag with Zipper and Red Cross Print ,27 +93091pr0005,"BAG, SPORT NO. 5",27 +93092,Friends Accessories Basket,27 +93094,Friends Accessories Lipstick with Light Bluish Gray Handle,27 +93095,Panel 1 x 2 x 1 with Rounded Corners and Central Divider,23 +93096,Door 1 x 5 x 3 with 3 Studs and Handle,16 +93106,"Minifig Metal Detector, no Stud on Search Head",27 +93140,Minifig Stretcher [No Bottom Hinges],27 +93147,Duplo Car Transporter Frame,4 +93148,Minifig Head Modified - Barracuda [Plain],24 +93148pr0001,Minifig Head Modified - Barracuda,13 +93149,Duplo Car Transporter Platform,4 +93150,Playground Slide Straight with Two Top Studs,4 +93160,Dog Bone [Short],28 +93168,"Cylinder 3 x 6 x 2 2/3 Horizontal, New Style",20 +93216,Minifig Tennis Racket,27 +93217,Minifig Hair with Top Knot Bun,13 +93217pr0001,Minifig Hair with Top Knot Bun and Flowers Print,13 +93217pr0002,MINIWIG NO.13 NO.2,13 +93219,"Minifig Cap, Short Curved Bill with Seams and Button on Top",27 +93219pr0001,"Minifig Cap, Curved Bill with Seams and Button on Top and Red 'C' Print",27 +93219pr0002,"Minifig Cap, Curved Bill with Seams and Button on Top and Gold with Black Minifig Head Print",27 +93219pr0003,"Minifig Cap, Curved Bill with Seams and Button on Top and Black Beaver on White Print",27 +93219pr0005,"Minifig Cap, Short Curved Bill with Seams and Button on Top and Black Minifig Head on Metallic Silver Print",27 +93219pr0006,"Minifig Cap, Short Curved Bill with Seams and Button on Top and Blue 'S' on White Print",27 +93219pr0007,"Minifig Cap, Short Curved Bill with Seams and Button on Top and Yellow Badge with Minifig Head Print",27 +93219pr0008,"MINI FIGURE, BASEBALL CAP ""NO. 8""",27 +93219pr0009,Minifig Cap - Short Curved Bill with Seams and Button on Top with White 'PIZZA' and Pizza Slice Print,27 +93220,Minifig Baseball Bat 4L [Plain],24 +93220pr0001,Minifig Baseball Bat 4L with White Grip Handle Print,27 +93220pr0002,Minifig Baseball Bat 4L with White Grip Handle Print,27 +93220pr0003,LEGO Baseball Bat with Shaft (30749),27 +93221,Minifig Radio Boom Box with Handle [Plain],24 +93221pr0001,Minifig Radio Boom Box with Handle and Gold Trim Print,27 +93221pr0002,Minifig Radio Boom Box with Handle and Silver Trim Print,27 +93221pr0003,Minifig Radio Boom Box with Handle and Black Trim Print,27 +93222,"Minifig Fishing Rod, Short",27 +93223,Beard - Short,13 +93224,Hazard Suit [Plain],27 +93224pr0001,Minifig Helmet Hazard Suit with Radioactivity Warning Print,27 +93224pr0003,Hazard Suit with Trans Clear Face Shield and AC Research Print,27 +93224pr0004,MINI FIGURE TOXIC WASTE SIUT NO.4,27 +93225,Minifig Spray Gun,27 +93227,Minifig Headdress Indian [Plain],24 +93227pr0001,"Minifig Headdress Indian with Colored Feathers, Gold Dots on Red and Black Hair on Back Print",27 +93228,Minifig Gorilla Mask [Plain],24 +93228pr0001,Minifig Gorilla Mask with Light Bluish Gray Face Print,27 +93229,"String with End Stud and Bar 1L, 13L",31 +93230,Minifig Hair Swept Back with Pointy Ears [Plain],24 +93230pr0001,Minifig Hair Swept Back with Pointy Yellow Ears Print,13 +93230pr0002,Minifig Hair Swept Back with Pointy Reddish Brown Ears Print,13 +93230pr0003,MINI WIG NO. 14 NO. 3,13 +93231,Minifig Long Bow with Arrow,27 +93242,FIGURE W. OPEN HELMET,4 +93247,Minifig Sword [Khopesh],27 +93248,Minifig Headdress Anubis Guard,27 +93248pr0001,Minifig Head Modified Anubis Guard Head with Gold Print and Red Eyes Print,13 +93249,Minifig Headdress Horus,27 +93249pr0001,Minifig Headdress Horus with Eye Print,27 +93250,Minifig Mummy Wings,27 +93250pr0001,Minifig Mummy Wings with Tan Feathers and Red/Gold Print,27 +93251,Minifig Shield Scarab,27 +93252,Pharaoh's Staff with Forked End,27 +93271pr0001,"Torso Skeleton, Angular Rib Cage with Black Holes and Cracks and Red Loincloth Print",13 +93273,Slope Curved 4 x 1 Double No Studs,37 +93273pr0001,Slope Curved 4 x 1 Double No Studs with Mouth and '51237' License Plate Print (Fillmore),37 +93273pr0002,"Slope, Curved 4 x 1 Double No Studs with Silver Car Grill and Bumper and Yellow 'LOLA' License Plate Pattern",2 +93273pr0003,"Slope, Curved 4 x 1 Double No Studs with Smiling Mouth and Bumper Print (Luigi)",3 +93273pr0004,"Slope, Curved 4 x 1 Double No Studs with Mouth Slightly Open Print",37 +93273pr0006,Slope Curved 4 x 1 Double No Studs with Lips and Round Headlights Print (Flo),37 +93273pr0007,"Slope, Curved 4 x 1 Double No Studs with Mouth Open Print",37 +93273pr0008,Slope Curved 4 x 1 Double No Studs with Flames Print,37 +93274,Bracket 1 x 2 - 2 x 4,9 +93277,Hero Factory Head,41 +93281,Duplo Food Fruit Pyramid (Apples or Oranges),4 +93346,"WHEEL BASE 2X4, CITY CAR",4 +93348,Wedge 4 x 4 Taper with Stud Notches,6 +93352,Minifig Hair Friends Long with Curls,13 +93353,Duplo Furniture Umbrella Stand with Square Base (fits 92002),4 +93383,Plastic Triangle 6 x 12 Sail with Orange and Red Print [4644 / 60013],38 +93496,Minifig Skirt Cloth (Grass),27 +93535,Brick 1 x 2 x 2 with Traffic Light Print,4 +93541,Wing Plate 20 x 56 with 6 x 10 Cutout and 4 Holes,49 +93549,"Bottle, Erlenmeyer Flask",27 +93549pat01,Bottle [Erlenmeyer Flask] with Trans-Bright Green Fluid Pattern,27 +93549pat02,Bottle [Erlenmeyer Flask] with Trans-Purple Fluid Pattern,27 +93549pat03,Bottle [Erlenmeyer Flask] with Trans-Neon Green Fluid Pattern,27 +93549pat04,Bottle [Erlenmeyer Flask] with Trans-Light Blue Fluid Pattern,27 +93549pat05,"Bottle, Erlenmeyer Flask with Lime Fluid Pattern",27 +93549pat06,"Bottle, Erlenmeyer Flask with Magenta Fluid Pattern [Plain]",24 +93549pat06pr001,Bottle [Erlenmeyer Flask] with Magenta Fluid Pattern and Black Fly Print,27 +9354pap01,"Paper, Idea Illustration for Set 9354 - Street Scene with School Bus",17 +9354pap02,"Paper, Idea Illustration for Set 9354 - Recycling / Landfill",17 +9354pap03,"Paper, Idea Illustration for Set 9354 - Fire Brigade and Police",17 +9354pap04,"Paper, Idea Illustration for Set 9354 - Ambulance and Police Scene",17 +93550,"Minifig Sword, Foil / Épée",27 +93551,Minifig Paint Palette,27 +93551pr0001,"Minifig Paint Palette with Yellow, Blue, Green and Red Paint Spots Print",27 +93552,Minifig Paint Brush,27 +93552pr0001,Minifig Paint Brush with Silver Ring and Green Tip Print,27 +93553,Minifig Hand Fan,27 +93554,Minifig Hat - Musketeer,27 +93555,Minifig Ice Skate,27 +93556,"Minifig Head Top, Frankenstein Monster [Plain]",24 +93556pr0001,"Minifig Head Top, Frankenstein Monster with Black Hair and Bandages Print",13 +93556pr0002,Minifig Head Top - Frankenstein Monster with Black Hair and Stitches Print,13 +93556pr0003,"Minifig Head Top, Frankenstein Monster with Black Hair and Safety Pins Print",27 +93556pr0004,"Minifig Head Top, Frankenstein Monster with Black Hair and Small Stitches Print",13 +93557,"Minifig Hat, Sailor [Plain]",24 +93557pr0001,"Minifig Hat, Sailor with Anchor Print",27 +93559,Minifig Hockey Stick,27 +93560,Minifig Sports Helmet,27 +93560pr0001,Headgear Helmet Sports with Kite Diamond Shape Logo Pattern,27 +93561,Minifig Visor Hockey Mask,27 +93562,Minifig Hair Female with Top Knot Bun and Forelock,13 +93563,Minifig Hair Mohawk,13 +93564,Minifig Electric Guitar,27 +93564pr0001,"Minifig Electric Guitar with Silver Strings, White Body Print",27 +93564pr0002,"Minifig Electric Guitar with Black Strings, Dark Pink Lightning Print",27 +93565,Minifig Hockey Body Armor [Plain],24 +93565pb02,Minifig Hockey Body Armour with Savage Opress Print,27 +93565pr0001,Minifig Hockey Body Armour Plain with Raccoon Print,27 +93565pr0002,Minifig Hockey Body Armor with Football Jersey and Number 12 Print,27 +93568,Pie,24 +93568pat0001,Pie with White Cream Filling Pattern,27 +93568pat0002,Pie with Light Yellow Cream Filling Pattern,27 +93568pr0001,Pie - White Cream Filling with 6 Strawberries Print,27 +93571,"Technic Axle Connector 2 x 3 with Ball Socket, Open Lower Axle Holes",12 +93575,Hero Factory Fist with Axle Hole,41 +93587,"Vehicle, Mudguard 3 x 4 x 1 2/3 Curved",36 +93587pr0001,"Vehicle, Mudguard 3 x 4 x 1 2/3 Curved with Front with Headlights, Open Mouth Grille, Lightning Bolts and 'Rust-eze' Print (8486)",36 +93587pr0002,"Vehicle, Mudguard 3 x 4 x 1 2/3 Curved with Front with Headlights, Thin Smile and Nose Print",36 +93587pr0003,"Vehicle, Mudguard 3 x 4 x 1 2/3 Curved with Back with Tail Lights, Exhaust and '301PCE' License Plate Print",36 +93587pr0004,"Vehicle Mudguard 3 x 4 x 1 2/3 Curved with Front with Headlights, Grill and 'Rust-eze' Print [8487 / 8200]",36 +93587pr0005,Vehicle Mudguard 3 x 4 x 1 2/3 Curved with Front with Headlights and Thin Smile Print,36 +93587pr0006,"Vehicle Mudguard 3 x 4 x 1 2/3 Curved Front with Headlights, Thin Smile and 'PISTON CUP' Print",36 +93587pr0007,"Vehicle, Mudguard 3 x 4 x 1 2/3 Curved with Front with Headlights, Thin Smile, Chin Dimple and 'PISTON CUP' Print",36 +93587pr0008,"Vehicle Mudguard 3 x 4 x 1 2/3 Curved with Back with Taillights, '155' and 'MO-6 8015' License Plate Print",36 +93589,Wedge 4 x 2 x 1 1/3 with 1 x 4 Base,6 +93589pr0001,Wedge 4 x 2 x 1 1/3 with 1 x 4 Base with Mouth and Number 1 on Red Background Print (Francesco),6 +93589pr0002,Wedge 4 x 2 x 1 1/3 with 1 x 4 Base with Mouth and Number 1 on Red Background Print (Francesco),6 +93589pr0003,Wedge 4 x 2 x 1 1/3 with 1 x 4 Base with 1 Black and 3 White Stripes Print,6 +93590,"Vehicle, Mudguard 2 x 4 with Headlights and Curved Fenders",36 +93591,Wedge 6 x 4 x 1 1/3 with 4 x 4 Base,6 +93591pr0001,"Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Blue Eyes, Windows and Large '95' Print (8486)",47 +93591pr0002,"Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Blue Eyes, Windows and '95' Print",47 +93591pr0003,"Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Green Eyes, Windows and Rear Grille Print (Sally)",47 +93591pr0004,Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Green Eyes and Windows Print,47 +93591pr0007,Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Green Eyes and Windows Print (Holley),47 +93591pr0009,Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Green Eyes and Silver Windows Print (Finn McMissile),47 +93591pr0010,"Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Blue Eyes on Narrow White Background, Windows and '95' Print",47 +93591pr0012,"Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Blue Eyes, Windows and Black, Red and Yellow Print",47 +93591pr0014,"Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Blue Eyes, Windows and Red and White Print",47 +93591pr0015,Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Green Eyes Centered and Windows Print (Finn McMissile),47 +93591pr0016,"Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Blue Eyes, Windows and Rear Grille Print",47 +93591pr0017,Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Green Eyes and Windows Print (Finn McMissile 9480),47 +93591pr0018,"Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Windows and Blue, White and Red Stripes Print",47 +93591pr0019,"Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Windows and Black, Silver and Red Print",47 +93591pr0020,Wedge 6 x 4 x 1 1/3 with 4 x 4 Base with Black Windows Print,47 +93593,Wheel 11 x 6 with 8 Spokes,29 +93594,Wheel 11 x 6 with Smooth Hubcap,29 +93595,Wheel 11 x 6 with 8 'Y' Spokes [Plain],29 +93595pr0001,Wheel 11 x 6 with Eight 'Y' Spokes and Silver Outline,29 +93595pr0002,Wheel 11 x 6 with Eight 'Y' Spokes and Golden Outline,29 +93595pr0003,Wheel 11 x 6 with 8 'Y' Spokes and Black Outline,29 +93597,Vehicle Mudguard 3 x 4 with Headlights,36 +93597pr0001,"Vehicle Mudguard 3 x 4 with Headlights, Flat Fenders and License Plate Print",36 +93597pr0002,"Vehicle Mudguard 3 x 4 with Headlights, Moustache Grille and Smile Print",36 +93597pr0005,"Vehicle, Mudguard 3 x 4 with Headlights, Moustache Grille and Mouth Print",36 +93597pr0007,"Vehicle, Mudguard 3 x 4 with Headlights, Moustache Grille and Curved Mouth Print",36 +93598,Windscreen 2 x 3 x 2 on 2 x 4 Base,47 +93598pr0001,Windscreen 2 x 3 x 2 with 2 x 4 Base with Green Eyes on White Background Print [Cars Mater],47 +93598pr0002,Windscreen 2 x 3 x 2 with 2 x 4 Base with Brown Eyes on White Background Print [8206 / 8679],47 +93598pr0003,Windscreen 2 x 3 x 2 with 2 x 4 Base with Grille and Window Print,16 +93598pr0005,Windscreen 2 x 3 x 2 with 2 x 4 Base with Blue Eyes on White Background Print [8639],47 +93598pr0006,Windscreen 2 x 3 x 2 with 2 x 4 Base with Green Eyes on White Background Print [8638 / 8639],47 +93598pr0007,Windscreen 2 x 3 x 2 with 2 x 4 Base with Eyes on White Background Print 5,47 +93598pr0008,Windscreen 2 x 3 x 2 with 2 x 4 Base with Eyes on White Background Print [9483],47 +93604,Wedge 3 x 4 x 2/3 Triple Curved Smooth,37 +93604pr0001,"Wedge 3 x 4 x 2/3 Triple Curved Smooth with Half Open Eyes, Flowers, and Headlights Print (Fillmore)",37 +93604pr0002,Wedge 3 x 4 x 2/3 Triple Curved Smooth with Armor Plates and Grille with Vent Print,37 +93606,Slope Curved 4 x 2 No Studs,37 +93606pr0001,Slope Curved 4 x 2 No Studs with Smiling Mouth Right Half Print (L. McQueen),37 +93606pr0002,Slope Curved 4 x 2 No Studs with Smiling Mouth Left Half Print (L. McQueen),37 +93607,"Duplo, Brick 8 x 12 with 1 x 2 Indents on Ends (5931 Container Top)",4 +93608,Brick Special 16 x 24 x 2 with 1 x 4 Indents on Ends (5932 Container Top),5 +93609,Arm Skeleton [Bent / 2 Clips],13 +93666,"Minifig Hat, Gnome",13 +93668,Plastic Cobra Hood with Hieroglyphs Print [853175],38 +93677,Sticker Sheet for 8070-1,17 +93710,DUPLO BRICK 2X2X2 W,4 +93712,DUPLO BRICK 2X2X2 Æ AND Ä,4 +93713,DUPLO BRICK 2X2X2 Ø AND Ö,4 +93714,DUPLO BRICK 2X2X2 Å AND Ü,4 +93761pr0002,"Torso Skeleton, Angular Rib Cage with Black Holes and Cracks and Blue Loincloth Print",13 +93763pr0003,Torso Skeleton - Angular Rib Cage with Black Holes and Cracks and Gray Loincloth Print,13 +93764pr0004,Torso Skeleton - Angular Rib Cage with Black Holes and Cracks and White Loincloth Print,13 +93794,Tile Special 1 x 1 with Clip with Rounded Tips and Center Cut,15 +93796pr0001,Minifig Armour - Breastplate with Shoulder Spikes White and Ninjago Cracked Red Skull Print,27 +93801,Duplo Arch 2 x 10 x 2 with Police Badge Decoration,4 +93858,DUPLO BRICK 2X2X2 S SOFA,4 +93859,DUPLO BRICK 2X2X2 E ELEPHANT,4 +93860,DUPLO STEN 2X2X2 N NÅL,4 +9394stk01,Sticker for Set 9394 - (71507/465702),17 +9395stk01,Sticker for Set 9395 - (71528/4654703),17 +9396stk01,Sticker for Set 9396 - (10602/600557),17 +9397stk01,Sticker for Set 9397 - (71530/4654705),17 +94071pr0002,Minifig Breastplate with Red Shoulder Spikes and Ninjago Cracked Red Skull Print,27 +94130,Sticker for Set 8069 - (94130/4613612),17 +94161,Window 1 x 2 x 2 2/3 Shutter with Rounded Top,16 +94162,Minifig Helmet Microfig with Horns,27 +94164,"Electric Adapter / Transformer, 100-240V / 10V DC",45 +94210,Sticker Sheet for Set 7307,17 +94301,STANDARD 2X3X1½ W. 2 KNOBS,24 +94318,Cloth Rectangle 4.5 x 31 with Ten Rectangular Holes,38 +94351pr0003,Minifig Armour Breastplate with Blue Shoulder Spikes and Ninjago Cracked Red Skull Print,27 +94352pr0004,Minifig Armour - Breastplate with Gray Shoulder Spikes and Ninjago Cracked Red Skull Print,27 +94412,"Duplo Tiger Cub, Raised Paw",4 +9441stk01,Sticker for Set 9441 - (71049/4654553),17 +9443stk01,Sticker for Set 9443 - (71575/4654723),17 +94448pat0002,Wave Rounded Large (Flame) with Marbled Green Pattern,27 +94448pat0003,Wave Rounded Large (Flame) with Marbled Dark Purple Pattern,27 +94448pat0004,Wave Rounded Large (Flame) with Marbled Glow in Dark White Pattern,27 +9445stk01,Sticker for Set 9445 - (71578/4654726),17 +9446stk01,Sticker for Set 9446 - (70313/4653857),17 +9447stk01,Sticker for Set 9447 - (10751/6006324),17 +9448stk01,Sticker for Set 9448 - (10770/6006434),17 +9449stk01,Sticker for Set 9449 - (10781/6006527),17 +9450stk01,Sticker for Set 9450 - (10793/6006559),17 +94531,Windscreen 12 x 6 x 6 Curved without Pin Holes,47 +9455stk01,Sticker for Set 9455 - (75862/4660827),17 +9457stk01,Sticker for Set 9457 - (75894/4660833),17 +9464stk01a,Sticker for Set 9464 - (10755/6006381) - Glow In The Dark Version,17 +9466stk01,Sticker for Set 9466 - (10752/6006368),17 +9468stk01,Sticker for Set 9468 - (6008339/10905),17 +94717,Friends Accessories Bow,27 +94718,Friends Accessories Award Ribbon with Number 1,27 +94719,"Friends Accessories Comb, Small with Heart",27 +94720,"Friends Accessories Brush Oval, Large",27 +94721,"Friends Accessories Brush Round, Small",27 +94722,Friends Accessories Award Ribbon with Number 2,27 +94723,Friends Accessories Sponge,27 +94724,Friends Accessories Spray Bottle with Heart,27 +94725,Friends Accessories Bow with Heart,27 +94737,Sticker for Set 3661 - (94737/4616402),17 +94801,DUPLO BRICK 2X2X2 JJACKET,4 +9484stk01,Sticker for Set 9484 - (99900/4653026),17 +9485stk01,Sticker for Set 9485 - (99432/4650848),17 +9486stk01,Sticker for Set 9486 - (99431/4650847),17 +94883,"MISSILE W. TURN.FEM.SNAP,ASS",4 +94901,Duplo Wheelchair,4 +94902,Duplo Wear Leg Cast and Crutches,4 +9490stk01,Sticker for Set 9490 - (71829/4654770),17 +94925,Technic Gear 16 Tooth Reinforced [New Style],52 +9493stk01,Sticker for Set 9493 - (71920/4654778),17 +95049,Minifig King's Staff [Spherical End],27 +95050,Minifig King's Staff [Hooked End],27 +95051,Minifig Small Bow with Arrow,27 +95052,Axe with Twin-Blade,27 +95053,Minifig Sword Small [Angular Hilt],27 +95054,Minifig Knife [Flat Hilt End],27 +95099,Minifig Skirt Cloth Asymmetrical with Points (Ice Skater),27 +95120,Hinge Tile 1 x 4 Locking Dual 1 Fingers on Top [8 Locking Ridges],18 +95188,Brick Round Corner 6 x 6 with 33° EdgeSlope and Facet Cutout,20 +95198,Windscreen 8 x 8 x 3 Dome with Dual 2 Fingers,47 +95199,Minifig Two Barrel Pistol,27 +95200,"Brain, Alien",13 +95201,"Face, Alien",13 +95201pr0001,"Face, Alien with Black Eyes Print (Alien Conquest Commander)",13 +95201pr0002,"Face, Alien with Black Eye and Silver and Red Mechanical Eye Print",13 +95201pr0004,"Face, Alien with Black Eyes, Eyelashes and Magneta Nose Print",13 +95202,Minifig Head Modified Alien with 2 Fangs and Brain Tissue [Plain],24 +95202pr0001,Minifig Head Modified Alien with 2 Fangs and Brain Tissue Print,13 +95203,Minifig Head Modified Alien with 4 Fangs and Brain Tissue [Plain],24 +95203pr0002,Minifig Head Modified Alien with 4 Fangs and Brain Tissue Print,13 +95204,Clinger (Alien Invader) [Plain],24 +95204pr0001,Clinger (Alien Invader),28 +95219,Duplo Cement Mixer Bucket Base,4 +95220,"Minifig Hair with Hat, Dreadlocks with Beads, Bandana [Plain]",27 +95220pr0001,"Minifig Hair with Hat, Dreadlocks with Beads, Dark Red Bandana Print and Tricorne",27 +95221,Minifig Hair Dreadlocks with Beads and Bandana [Plain],27 +95221pr0001,Minifig Hair Dreadlocks with Beads and Dark Red Bandana Print,27 +95222,"Minifig Hat, Pirate Circular with Fold in Brim [Plain]",27 +95222pr0001,"Minifig Hat, Pirate Circular with Fold in Brim and Silver Print",27 +95222pr0002,"Minifig Hat, Pirate Circular with Fold in Brim and Marine Growth Print",27 +95222pr0003,"Minifig Hat, Pirate Circular with Fold in Brim and Lime Line around Brim Print",27 +95224,"Minifig Beard, Braided with Hair in Back [Plain]",27 +95224pr0001,"Minifig Beard, Braided with Hair in Back and Four Gray and Yellow Ends Print",27 +95225,Minifig Hair - Long Wavy with Centre Part,13 +95226,Minifig Hair Swept Back with Short Ponytail,13 +95227,Boat Hull Large Middle 8 x 16 x 2 1/3 with 5 Holes,35 +95228,Minifig Bottle,27 +95228pr0001,Minifig Bottle with Black Sailing Ship Print,27 +95228pr0002,Minifig Bottle with Black Grapes on Gold Background Label Print,27 +95228pr0003,"BOTTLE, NO.1",27 +95228pr0004,Minifig Utensil Bottle with Bright Pink 'DRINK ME' Label print (Alice),27 +95229,Bar 1 x 8 x 3 - 1 x 8 x 4 Curved,32 +9525stk01,Sticker set for 9525,17 +9526stk01,Sticker for Set 9526 - (10991/6009316),17 +95292c01,Technic Shock Absorber 9.5L with Extra Hard Spring,25 +95319,"Minifig Hat, Deerstalker [Plain]",24 +95319pr0001,"Minifig Hat, Deerstalker with Dark Red Houndstooth Check on Ear Flaps Print",27 +95320,"MINI BOXING GLOVE, LEFT",13 +95321,"MINI BOXING GLOVE, RIGHT",13 +95322,Minifig Mask Lizard [Plain],24 +95322pr0001,"Minifig Mask Lizard with Yellow Eyes Print, White Teeth and Dark Green Horns",27 +95323,Minifig Costume Tail Lizard [Plain],24 +95323pr0001,Minifig Costume Tail Lizard with Dark Green Horns,27 +95324,"Minifig Hat, Royal Guard Bearskin",13 +95326,"Minifig Hair - Messy with Swept-up Ponytail, Sidebangs and Clip",13 +95327,Chimpanzee [Plain],24 +95327pr0001,Chimpanzee,28 +95328,"Minifig Hair Female Mid-Length, Smooth with Bangs [Plain]",24 +95328pr0001,"Minifig Hair Female Mid-Length, Smooth with Bangs and Gold Diadem Print (Cleopatra)",13 +95330,Minifig Axe [Plain],24 +95330pr0001,Minifig Axe with Red Head and Silver Blade,27 +95330pr0002,Minifig Axe with Red Head and Silver Blade,27 +95341,Goat [Plain],24 +95341pr01,Goat with Dark Tan Horns and Medium Dark Flesh Spots Print,28 +95342,Chicken,28 +95342pr0001,Chicken with Black Eyes and Red Comb Print,28 +95343,Bucket 1 x 1 x 1,7 +95344,Bucket 1 x 1 x 1 Handle,7 +95345,Minifigure Pitchfork [Soft],27 +95347,"Support 2 x 2 x 10 Girder Triangular Vertical - Type 4 - 3 Posts, 3 Sections",34 +95348,Minifig Scabbard with Shoulder Strap,27 +95350,Minifig Cutlass [Elaborate] with Pearl Gold Handle,27 +95351,"Tail, Mermaid Curved [Plain]",13 +95351pr0001,"Tail, Mermaid Curved with Blue and Gold Scales Print",13 +95351pr0002,"Tail, Mermaid Curved with Green and Gold Scales Print",13 +95351pr0003,"Tail, Mermaid Curved with Scattered Silver Scales Print",13 +95351pr0004,"Tail, Mermaid Curved with Silver Scales Print",13 +95351pr0005,"Tail, Mermaid Curved with Dark Purple Outlined Scales Print",13 +95351pr0006,Tail Mermaid Curved with Yellowish Green Fluke print [Ariel],13 +95352,Minifig Hair Long Wavy with Hat [Plain],27 +95352pr0001,Minifig Hair Long Wavy with Black Hat with Buckle Print,27 +95354,Boat Anchor - Two Top Holes,35 +95401,"Minifig Beard, Tentacles",27 +95404,Minifig Hammerhead Shark Head [Plain],27 +95404pr0001,Minifig Hammerhead Shark Head with Eyes and Marine Growth Print,27 +95431,"BRICK 1X2X2, DEC. X-RAY",24 +95440,"Duplo Brick 1 x 2 x 2 with Scissors, Bandages and Tongue Depressors Print",4 +95443,"BOW 2X4X2, DEC. HOSPITAL",24 +95445,Duplo Brick 1 x 2 x 2 with Medicine and Pill Bottles ,4 +95447,"BRICK 1X2X2, DEC.SIGHT TEST",24 +95463,Plate 6 x 12 with Centre Ramp,4 +95485,BRICKRUNNER W. 4 Ø17 WHEELS,4 +95490,DUPLO HOLE BRICK 2X4 DATEMBOS,4 +9558stk01,Sticker for Set 9558 - (75895/4660835),17 +95646c01,Mindstorms EV3 - Complete Brick,45 +95648,Touch Sensor - EV3,45 +95650,Colour Sensor - EV3,45 +95652,Electric Mindstorms EV3 Ultrasonic Sensor,45 +95654,Electric Mindstorms EV3 Infrared Sensor,45 +95656,Rechargeable DC Battery - EV3,45 +95658,Electric Mindstorms EV3 Large Motor,45 +95673,Minifig Sword [Roman Gladius],27 +95674,Minifig Bowler Hat,27 +95674pr0001,Minifig Bowler Hat with Red Flower with Yellow Centre Print,27 +95674pr0002,"Minifig Hat, Bowler with Black Question Mark Print",27 +95674pr0003,"Minifig Hat, Bowler with Purple Question Mark Print ",27 +95676,Minifig Helmet Gladiator,13 +95678,"Minifig Hood Fur-lined, Short [Plain]",27 +95678pr0001,"Minifig Hood Fur-lined, Short with Dark Tan Hood Print",27 +95678pr0002,Minifig Hood Fur-lined Short with Dark Brown Hood Print,27 +95678pr0003,"Minifig Hood Fur-lined, Short with Medium Blue Hood Print",27 +95678pr01,"Minifig Hood Fur-lined, Short with Dark Blue Hood Print",27 +95678pr03,"Minifig Hood Fur-lined, Short with Red Hood Print",27 +95744,Sticker for Set 8071 - (95744/4622299),17 +95753pat0001,Bionicle Zamor Sphere with Marbled Bright Light Orange Pattern,41 +95753pat0003,Bionicle Zamor Sphere with Marbled Trans-Yellow / Trans-Black Pattern [Palantír],41 +95753pat0005,Bionicle Zamor Sphere with Marbled Trans-Yellow / Orange Pattern [Palantír],41 +9581-1,Set 9581-1 - WeDo Robotics USB Hub,24 +95821,"DUPLO SIGN, ROUND DEC. SCALE",24 +95827,Friends Accessories Beetle / Ladybug with Stud Holder,28 +95828,Friends Accessories Butterfly with Stud Holder,28 +95829,Friends Accessories Flower Rose with Pin,28 +95831,Friends Accessories Flower with 6 Rounded Petals and Pin,28 +9583-1,Set 9583-1 - WeDo Robotics Motion Sensor,24 +95832,Friends Accessories Flower with 7 Thin Petals and Pin,28 +9584-1,Set 9584-1 - WeDo Robotics Tilt Sensor,24 +95920,"SLEEPING BAG 5X8, DEC.",24 +9604b1,Set 9604 Activity Booklet 1 - Inventory and Set-up Card,17 +9604b2,Set 9604 Activity Booklet 2 - Vertical and Horizontal Pneumatic Press,17 +9604b3,Set 9604 Activity Booklet 3 - Pneumatic Lift and Dump Box,17 +9604b4,Set 9604 Activity Booklet 4 - Pneumatically Operated Doors,17 +9604b5,Set 9604 Activity Booklet 5 - Pneumatic Chair and Arm,17 +9607b1,Set 9607 Activity Booklet 1 - {Right Angle Drive},17 +9607b10,Set 9607 Activity Booklet 10 - {Conveyor},17 +9607b11,Set 9607 Activity Booklet 11 - {Forming Press},17 +9607b12,Set 9607 Activity Booklet 12 - {Mixer},17 +9607b13,Set 9607 Activity Booklet 13 - [Crane],17 +9607b14,Set 9607 Activity Booklet 14 - {Oscillating Fan},17 +9607b15,Set 9607 Activity Booklet 15 - {Pallet Lifter},17 +9607b2,Set 9607 Activity Booklet 2 - {Drill Press with Multiple Speed Pulleys},17 +9607b3,Set 9607 Activity Booklet 3 - {Planer with Clutch Mechanism},17 +9607b4,Set 9607 Activity Booklet 4 - {Machine using Belt and two Gears},17 +9607b5,Set 9607 Activity Booklet 5 - {Lathe with Speed Changing Gears},17 +9607b6,Set 9607 Activity Booklet 6 - {Bottling Machine},17 +9607b7,Set 9607 Activity Booklet 7 - {Reciprocating Gear Box},17 +9607b8,Set 9607 Activity Booklet 8 - {Right Angle Belt Drive Winder},17 +9607b9,Set 9607 Activity Booklet 9 - {Roller},17 +9607bc,Set 9607 Activity Booklet - Parts Tray Organizer Card,17 +9607bm,Set 9607 Activity Booklet - Motor and Battery Box Manual,17 +9608b1,Set 9608 Activity Card Orange 1 - Jewellery polisher,17 +9608b10,Set 9608 Activity Card Red 3 - Round and round,17 +9608b11,Set 9608 Activity Card Red 4 - A bit of a stretch,17 +9608b12,Set 9608 Activity Card Red 5 - Canned,17 +9608b13,"Set 9608 Activity Card Red 6 - Knock, knock!",17 +9608b14,Set 9608 Activity Card Red 7 - Stop the conveyor!,17 +9608b15,Set 9608 Index Card,17 +9608b16,Set 9608 Motorised Systems Teachers Guide,17 +9608b2,Set 9608 Activity Card Orange 2 - Draw the curtain,17 +9608b3,Set 9608 Activity Card Orange 3 - Engine hoist,17 +9608b4,Set 9608 Activity Card Orange 4 - Scaffold winch,17 +9608b5,Set 9608 Activity Card Orange 5 - Windscreen wiper,17 +9608b6,Set 9608 Activity Card Orange 6 - Door opener,17 +9608b7,Set 9608 Activity Card Orange 7 - 3-wheeled mover,17 +9608b8,Set 9608 Activity Card Red 1 - Soaking wet,17 +9608b9,Set 9608 Activity Card Red 2 - Hard at work,17 +9610b01,Set 9610 Activity Booklet 1 - Fast Merry-Go-Round,17 +9610b02,Set 9610 Activity Booklet 2 - Fan,17 +9610bc,Set 9610 Activity Booklet - Parts Tray Organizer Card,17 +9612b01,Set 9612 Activity Booklet 1 - Levers,17 +9612b02,Set 9612 Activity Booklet 2 - Scale,17 +9614bc,Set 9614 Activity Booklet - Parts Tray Organizer Card,17 +96151,"BRICK 1X2X2,DEC.DIAGRAMME",24 +9615-1,9615 Motor Add-On for Simple Mechanisms,24 +9616b01,Set 9616 Activity Booklet 1 - Lawnmower ,17 +9616b02,Set 9616 Activity Booklet 2 - Pulleys,17 +9616bc1,Set 9616 Cover & Inventory Card,17 +9617b01,Set 9617 Activity Booklet 1 - Pneumatic Press,17 +9617b02,Set 9617 Activity Booklet 2 - Pneumatic Lift,17 +9617bc,Set 9617 Activity Booklet - Parts Tray Organizer Card,17 +9617bd,Set 9617 Instruction Card,17 +9617bm,Set 9617 Activity Booklet - Pneumatic Manual and Basic Levers,17 +962,Slope 45° 2 x 2 Double Convex / Double Concave,3 +96204,Minifig Boxing Helmet,27 +96204pr0001,Minifig Boxing Helmet with Team GB Logo,27 +96207,Minifig Violin Case,27 +9622,Levers (9612) Teacher Guide,17 +96223,Minifig Headgear Conch Shell [Plain],13 +96223pr0001,Minifig Headgear Conch Shell with Marine Growth Print,27 +9630-1,9630 Nonmotorized Simple Machines Set,24 +9630b01,Set 9630 Activity Booklet 1 - {Adjustable Chair},17 +9630b02,Set 9630 Activity Booklet 2 - {Drawbridge},17 +9630b03,Set 9630 Activity Booklet 3 - {Hammers},17 +9630b04,Set 9630 Activity Booklet 4 - {Windshield Wipers},17 +9630b05,Set 9630 Activity Booklet 5 - {Wheels},17 +9630b06,Set 9630 Activity Booklet 6 - {Conveyor Belt 1},17 +9630b07,Set 9630 Activity Booklet 7 - {Merry-go-round},17 +9630b08,Set 9630 Activity Booklet 8 - {Turnstile},17 +9630b09,Set 9630 Activity Booklet 9 - {Conveyor belt 2},17 +9630b10,Set 9630 Activity Booklet 10 - [Cranes],17 +9630ba,Set 9630 Activity Booklet A - {Structural building tips},17 +9630bb,Set 9630 Activity Booklet B - {Lifting},17 +9630bc,Activity Booklet C - [Balancing & Supporting Loads],17 +9630bd,Set 9630 Activity Booklet D - {Gears & Transmission},17 +9630be,Set 9630 Activity Booklet E - {Pulleys & Belts},17 +9630bf,Set 9630 Activity Booklet F - {Right Angle Drives and other Transmissions},17 +9630bg,Set 9630 Activity Booklet G - {Electronic Machines},17 +9630bh,Set 9630 Activity Booklet H - {Electronic Boom Gates},17 +9631b1,Set 9631 Index of Activities Card,17 +9631b10,Set 9631 Worksheet Copy Master for Activity 11 / 12 - Investigating Wheels and Axles / Motorised Wheels and Axles,17 +9631b11,Set 9631 Worksheet Copy Master for Activity 13 / 14 - Investigating Wheels and Axles / Motorised Wheels and Axles,17 +9631b12,Set 9631 Worksheet Copy Master for Activity 15 - Problem Solving with Wheels and Axles - Racing Wheels!,17 +9631b13,Set 9631 Worksheet Copy Master for Activity 16 - Problem Solving with Wheels and Axles - Up We Go!,17 +9631b14,Set 9631 Worksheet Copy Master for Activity 17 - Exploring Gears,17 +9631b15,Set 9631 Worksheet Copy Master for Activity 18 / 19 - Investigating Gears,17 +9631b16,Set 9631 Worksheet Copy Master for Activity 20 - Investigating Gears,17 +9631b17,Set 9631 Worksheet Copy Master for Activity 21 - Problem Solving with Gears - All Mixed Up!,17 +9631b18,Set 9631 Worksheet Copy Master for Activity 22 - Problem Solving with Gears - Up and Away!,17 +9631b19,Set 9631 Worksheet Copy Master for Activity 23 - Exploring Pulleys,17 +9631b2,Set 9631 Worksheet Copy Master for Activity 1 - Exploring Structures and Forces,17 +9631b20,Set 9631 Worksheet Copy Master for Activity 24 / 25 - Investigating Pulleys,17 +9631b21,Set 9631 Worksheet Copy Master for Activity 26 / 27 - Investigating Pulleys,17 +9631b22,Set 9631 Worksheet Copy Master for Activity 28 - Problem Solving with Pulleys - Curtain Up!,17 +9631b24,Set 9631 Worksheet Copy Master for Activity 30 - Exploring More Mechanisms,17 +9631b25,Set 9631 Worksheet Copy Master for Activity 31 - Exploring Motorisation,17 +9631b3,Set 9631 Worksheet Copy Master for Activity 2 - Investigating Structures and Forces,17 +9631b4,Set 9631 Worksheet Copy Master for Activity 3 - Exploring Levers,17 +9631b5,Set 9631 Worksheet Copy Master for Activity 4 / 5 - Investigating Levers / Motorised Levers,17 +9631b6,Set 9631 Worksheet Copy Master for Activity 6 / 7 - Investigating Levers / Motorised Levers,17 +9631b7,Set 9631 Worksheet Copy Master for Activity 8 - Problem Solving with Levers - Beat It!,17 +9631b8,Set 9631 Worksheet Copy Master for Activity 9 - Problem Solving with Levers - Sit Up!,17 +9631b9,Set 9631 Worksheet Copy Master for Activity 10 - Exploring Wheels and Axles,17 +9633b1,"Set 9633 Activity Booklet - [Sliding Door, Small Crane, Power Spreader]",17 +9633b2,Set 9633 Activity Booklet - [Sets 9701 & 9751 Extra-Curricular Activities],17 +9633bc,Set 9633 Activity Booklet - Parts Tray Organizer Card,17 +96423,Cloth Sail Rectangle with Crown and Crossed Swords Print,38 +96479,"Friends Accessories Hair Decoration, Bow with Pin",27 +96480,Friends Accessories Hair Brush with Heart on Reverse,27 +96481,"Friends Accessories Hair Decoration, Butterfly with Pin",27 +96482,Friends Accessories Comb with Handle and 3 Hearts,27 +96483,"Friends Accessories Hair Decoration, Flower with 5 Smooth Petals and Pin",27 +96484,Friends Accessories Hair Dryer,27 +96485,"Friends Accessories Hair Decoration, Heart with Pin",27 +96486,"Friends Accessories Glasses, Heart Shaped with Pin",27 +96487,"Friends Accessories Hair Decoration, Flower with Serrated Petals and Pin",27 +96488,Friends Accessories Hand Mirror with Heart on Reverse,27 +96489,"Friends Accessories Hair Decoration, Star with Pin",27 +96490,"Friends Accessories Glasses, Oval Shaped with Pin",27 +96491,"Friends Accessories Hair Decoration, Tiara with 5 Points and Pin",27 +966,"Vehicle, Trailer Base 4 x 16 x 1, Platform",36 +966a,"Vehicle, Trailer Base 4 x 16 x 1, Ramp",36 +967,Plate Special 4 x 8 with Helicopter Rotor Holder,9 +96710,Cloth Sail Triangular 17 x 20 with Dark Brown Streaks Print,38 +96714,Cloth Sail Rectangle Small 18 x 12,38 +96715,Cloth Sail Rectangle Small with Dark Brown Streaks Print,38 +96717,Cloth Sail 70 x 84mm Right,38 +96799,Cloth Sail 70 x 84mm Left,38 +968,"Vehicle, Trailer Base 4 x 14 x 1",36 +96826,Sorting Tray - Master Builder Academy,17 +96828,DUPLO HOLE BRICK 2X10 DATEMBOS,4 +96874,Brick and Axle Separator v2.0,56 +969,"Vehicle, Trailer Stand",36 +96904,"Minifig Coin with ""1"" Gothic Type",27 +96905,"Minifig Coin with ""2"" Gothic Type",27 +96906,"Minifig Coin with ""5"" Gothic Type",27 +96907,"Minifig Coin with ""10"" Gothic Type",27 +97000,Plastic Rectangle 8 x 11 [Plain],38 +97000pr0001,Plastic Rectangle 8 x 11 with White Waterfall Spray Print [4192],38 +9701b1,Set 9701 Activity Booklet 1 - Greenhouse,17 +9701b2,Set 9701 Activity Booklet 2 - Vending Machine,17 +9701b3,Set 9701 Activity Booklet 3 - Car Testing Station,17 +9701b4,Set 9701 Activity Booklet 4 - Joystick Controlled Wheelchair,17 +9701b5,Set 9701 Activity Booklet 5 - Scanner,17 +9701b6,Set 9701 Activity Booklet 6 - Conveyor Belt,17 +9701b7,Set 9701 Activity Booklet 7 - Robot Arm,17 +9701bc1,Set 9701 Activity Booklet 1 - Parts Tray Organizer Card,17 +9701bc2,Set 9701 Activity Booklet 2 - Parts Tray Organizer Card,17 +97077,Sticker Sheet for 8639-1,17 +970c00,Legs and Hips [Complete Assembly],13 +970c001pr0752,Legs and Blue Hips with Blue Pants and Red and Yellow Stripes Print,13 +970c00pb001,Legs and Hips with Harry Potter Dumbledore Print,13 +970c00pb002,Legs and Hips with Purple Greatcoat Gray Outline Print (Severus Snape),13 +970c00pb004,Legs and Hips with Alpha Team Gray Pockets and Blue Stripe Print,13 +970c00pb005,Legs and Hips with Alpha Team Gray Pockets and No Stripe Print (Dash),13 +970c00pb006,Legs and Hips with Alpha Team Gray Pockets and Orange Stripe Print (Flex),13 +970c00pb007,Legs and Hips with Alpha Team Gray Pockets and Red Stripe Print (Cam),13 +970c00pb008,Legs and Hips with Alpha Team Gray Pockets and Purple Stripe Print (Radia),13 +970c00pb009,Legs and Hips with Xtreme Stunts Red Kneepads Print (Sky),13 +970c00pb010,"Legs and Hips with Xtreme Stunts Silver Kneepads, Brown Belt Print (Pepper)",13 +970c00pb012,Legs and Hips with Harry Potter Snape Print [Prisoner of Azkaban],13 +970c00pb013,Legs and Hips with Castle Knights Kingdom Leather Armor Print,13 +970c00pb014,"Legs and Hips with Castle Knights Kingdom Leg Armor, Green and Silver Belt Print",13 +970c00pb015,Legs and Hips with Castle Knights Kingdom Red and Gold Belt Print,13 +970c00pb016,Legs and Hips with Alpha Team Green Stripe and Brown Camouflage Spots Print,13 +970c00pb017,"Legs and Hips with Alpha Team Arctic Silver Zippers and Blue Pulls, No Straps Print",13 +970c00pb018,Legs and Hips with Cargo Pockets Front Print,13 +970c00pb019,"Legs and Hips with Robot Print (Spyrius, Exploriens)",13 +970c00pb020,Legs and Hips with Soccer Blue Adidas Logo Print,13 +970c00pb021,Legs and Hips with Space UFO Gold Circuitry and Silver Belt Print,13 +970c00pb022,Legs and Hips with SW Geonosian Copper Print,13 +970c00pb024,Legs and Hips with SW Zam Wesell Print,13 +970c00pb025,"Legs and Hips with Western Indians Dark Turquoise/White Triangles, Fringe Print",13 +970c00pb026,"Legs and Hips with Western Indians Red/White Triangles, Fringe Print",13 +970c00pb027,Legs and Hips with Astrobot Gold Ribbing Print,13 +970c00pb028,Legs and Hips with Alpha Team Dark Gray and Blue Pockets Print,13 +970c00pb029,Legs and Hips with Alpha Team Dark Gray and Green Pockets Print,13 +970c00pb030,Legs and Hips with Alpha Team Dark Gray and Orange Pockets Print,13 +970c00pb031,Legs and Hips with Alpha Team Dark Gray and Purple Pockets Print,13 +970c00pb032,Legs and Hips with Alpha Team Dark Gray and Dark Red Pockets Print,13 +970c00pb033,Legs and Hips with Alpha Team Dark Gray Pockets on Both Sides Print (Deep Sea Dash),13 +970c00pb034,Legs and Hips with Alpha Team Arctic Silver and Blue Circuitry Print,13 +970c00pb035,Legs and Hips with Alpha Team Arctic Silver Fade Pockets Print,13 +970c00pb036,Legs and Hips with Alpha Team Arctic Silver Zippers and Orange Straps Print,13 +970c00pb037,Legs and Hips with Alpha Team Arctic Silver Zippers and Red Straps Print,13 +970c00pb038,Hips and Legs with Alpha Team Arctic Silver Zippers and Blue on Straps Pattern ,13 +970c00pb039,Legs and Hips with SW Stormtrooper Print,13 +970c00pb057,Legs and Hips with Indian Belt and Fringe Print,13 +970c00pb059,Legs and Hips with Rivets Print,13 +970c00pb060,Legs and Hips with Black and Silver Belt and Silver Panels Print,13 +970c00pb086,Legs and Hips with Black Belt and Gray Markings Print,13 +970c00pb090,Legs and Hips with Gray Belt and Black Markings and Gold Dragon Tail Print,13 +970c00pb104,Legs and Hips with Gray Belt and Black Markings and Gold Dragon Tail Print,13 +970c00pb119,Legs and Hips with Dark Blue Vest Tails and Red and White Stitched Sash Print,13 +970c00pb120,Legs and Hips with 2 Pockets and Kneepads and Dark Bluish Gray Belt Print,13 +970c00pb146,"Legs and Hips with Pockets, Belt and Dark Brown Kneepads Print",13 +970c00pb147,"Legs and Hips with Pockets, Belt and Dark Pink Flowers Print",13 +970c00pb148,"Legs and Hips with Golden Brick, Shield and Yellow Stripe Print",13 +970c00pb167,Legs and Hips with Black Boots and Red Ribbon Print,13 +970c00pb168,Legs and Hips with Yellow Stripe and Blue Vertical Lines Print,13 +970c00pb205,Legs and Hips with Ninjago Green and Gold Print,13 +970c00pb206,Legs and Hips with Brown Belt and Gray Pockets Outline Print,13 +970c00pb207,Legs and Hips with Green and Pearl Gold Robe and Silver Scale Mail Print [Elrond 5000202],13 +970c00pb239,Legs and Hips with White Vertical Stripe on Sides and Black Feet Print,13 +970c00pb241,Legs and Hips with Black Ruffle Print,13 +970c00pb243,Legs and Hips with Black Thick Stripe Print,13 +970c00pb244,Legs and Hips with Pockets with Zippers and Lime Paint Splotches Print,13 +970c00pb245,Legs and Hips with Black Belt with Silver Buckle Print,13 +970c00pb246,Legs and Hips with Black Belt with Stars and Silver Chains Print,13 +970c00pb247,Legs and Hips with Black Skirt Pleats and Yellow Hem Stripe Print [col10-1],13 +970c00pb248,Legs and Hips with Loincloth and Leggings Print,13 +970c00pb291,Legs and Hips with SW TC-4 Droid Print,13 +970c00pb347,Legs and Hips with Black Belt and Silver Chain Print,13 +970c00pb370,Legs and Hips with Dark Red and Dark Purple Markings Print,13 +970c00pb495,Medium Blue Hips and Legs with Dark Brown Boots,13 +970c00pr0002,Hips and Legs both same color - Varied color boots,13 +970c00pr0011,Legs and Blue Hips with Wrinkles and Yellow Stripe Print,13 +970c00pr0033,Legs and Hips with SW Gunbelt Print,13 +970c00pr0066,Legs and Dark Red Hips with Leia Slave Print,13 +970c00pr0074,Legs and Dark Blue Hips with SW Gunbelt Print,13 +970c00pr0097,Legs and Sand Green Hips with SW Kashyyyk Trooper Print,13 +970c00pr0107,Legs and Dark Red Hips with Leia Slave Print,13 +970c00pr0108,Legs and Green Hips with Purple Flowers on Lime Shorts Print (Patrick),13 +970c00pr0109,Legs and Orange Hips with Avatar Yellow Rectangles Print [3828 / 3829],13 +970c00pr0110,Legs and Blue Hips with Avatar Blue Rectangles Print [3828],13 +970c00pr0112,Legs and Black Hips with Fantasy Era Wizard Print,13 +970c00pr0113,Legs and White Hips with White Leggings Print,13 +970c00pr0114,Legs and Dark Blue Hips with Good Wizard Print,13 +970c00pr0116,Legs and Hips with Black Triangle and 2 Orange Buckles on Left Leg Print,13 +970c00pr0117,Legs and Dark Bluish Gray Hips with Zip and Orange Belt Print,13 +970c00pr0118,Legs and Dark Bluish Gray Hips with Silver and Lime Stripes and ID Card Print,13 +970c00pr0119,Legs and Tan Hips with Dark Pink Skirt with Silver Flecks Print,13 +970c00pr0120,Legs and Hips with Red Dragon Tail Print,13 +970c00pr0122,Legs and Black Hips with Flashlight and Chain Print,13 +970c00pr0123,Legs and Reddish Brown Hips with Castaway Rags and Patch Print,13 +970c00pr0124,Legs and Hips with Gold Sequins Print,13 +970c00pr0125,Legs and Hips with Chain Mail Print,13 +970c00pr0126,Legs and Hips with Blue and Gold Trim and White Sash Print,13 +970c00pr0127,Legs and Hips with Space Police 3 Pockets Print,13 +970c00pr0128,Legs and Hips with Agents Villain Orange / Silver on Left Leg Print,13 +970c00pr0131,"Legs and Hips with Kneepads, Chain and Belt Print",13 +970c00pr0132,Legs and Hips with Space Police 3 Spiked Armor and Skull Belt Print,13 +970c00pr0133,Legs and Hips with Indiana Jones Silver Tassels Print,13 +970c00pr0138,Legs and Black Hips with Black and Yellow Circles Print,13 +970c00pr0139,Legs and Hips with Blue and White Short Skirt and White Shoes Print,13 +970c00pr0144,Legs and Dark Bluish Gray Hips with Atlantis Shark Print,13 +970c00pr0145,Legs and Light Bluish Gray Hips with Atlantis Diver Print,13 +970c00pr0147,Legs and Tan Hips with Black and Tan Animal Skin Loincloth Print,13 +970c00pr0149a,Legs and Hips with Belt and Silver Armor Print,13 +970c00pr0149b,Legs and Hips with Gold Print,13 +970c00pr0150,"Legs and Hips with Belt, Sash, and Buckles Print",13 +970c00pr0151,Legs and Black Hips with Lime Stripes and Silver Kneepads Print,13 +970c00pr0152,Legs and Hips with Cargo Pockets Side Print,13 +970c00pr0153,"Legs and Hips with Shirt Tails, Gold Band and Fleur de Lis Print",13 +970c00pr0154,Legs and Hips with Kingdoms Scale Mail Print,13 +970c00pr0155,Legs and Black Hips with Chain Mail Print,13 +970c00pr0156,Legs and Hips with Kingdoms Blue Wizard Print,13 +970c00pr0157,Legs and Hips with Kingdoms Dark Green Wizard Print,13 +970c00pr0158,Legs and Hips with Scales and Leg Protection Print,13 +970c00pr0159,"Legs and Hips with Button on Hips, File in Pocket and '245633' Print",13 +970c00pr0160,"Legs and Hips with Lime Boots and Belt Print, Dirt Stains Print (Buzz Lightyear)",13 +970c00pr0162,Legs and Hips with Lime Boots and Belt Print (Buzz Lightyear),13 +970c00pr0163,Legs and White Hips with Gold Cord Trimmed Pharaoh's Tunic Print,13 +970c00pr0164,Legs and Red Hips with Red Short Swimsuit Print,13 +970c00pr0165,Legs and Medium Blue Hips with Black and Medium Blue Board Shorts with Flowers Print,13 +970c00pr0168,Legs and Medium Blue Hips with Medium Blue Diagonal Stripe Print,13 +970c00pr0169,Legs and Black Hips with Black Lines and Yellow Knee Stripes Print,13 +970c00pr0170,Legs and Dark Red Hips with Spartan Tunic and Sandals Print,13 +970c00pr0171,Legs and Hips with Silver Belt and Triple Leg Buckles Print,13 +970c00pr0172,Legs and Hips with Cargo Pockets Front and Yellow Stripes Print,13 +970c00pr0173,Legs and Hips with Martial Arts Black Belt Print,13 +970c00pr0175,Legs and Hips with Silver Keys and Brown Belt with Gold Buckle Print,13 +970c00pr0177,Legs and Hips with Pockets Print,13 +970c00pr0179,Legs and Hips with Apron Print,13 +970c00pr0180,"Legs and Hips with Black Skirt with Hearts, Stars, Dots, Bird and Horse print",13 +970c00pr0181,Legs and Hips with Tennis Skirt Print,13 +970c00pr0182,Legs and Hips with Black Zipper Pockets and Black Shoes Print,13 +970c00pr0183,Legs and Hips with Black Belt Print,13 +970c00pr0184,Legs and Green Hips with Green Short Swimsuit Print,13 +970c00pr0185,"Legs and Hips with Black Belt, White and Silver Print",13 +970c00pr0186,Legs and Hips with Dark Green and Silver Scale Mail and Gold Print,13 +970c00pr0187,Legs and Hips with White and Green Mummy Wrapping Print,13 +970c00pr0188,Legs and Hips with Samurai Warrior Print,13 +970c00pr0189,Legs and Hips with White Indian Fringe and Red and Blue Triangles Print,13 +970c00pr0190,Legs and Hips with Gray and Black Belt Print,13 +970c00pr0191,Legs and Hips with Gray Belt and Black Markings Print,13 +970c00pr0192,Legs and Hips with Dark Blue Belt Print,13 +970c00pr0193,Legs and Hips with Dark Red Belt Print,13 +970c00pr0195,Legs and Hips with Dark Brown Apron Print,13 +970c00pr0195a,Legs and Hips with Dark Blue Mummy Wrapping Print,13 +970c00pr0195b,Legs and Black Hips with Gold Belt and Lion Head Charm Print,13 +970c00pr0196,"Legs and Hips with Blue Rags, Gold Loincloth and Gold Belt with Blue Circle Print",13 +970c00pr0197,Legs and Black Hips with Clone Trooper Orange Armour Print,13 +970c00pr0198,Legs and Light Bluish Gray Hips with Atlantis Diver with Pressure Gauge Print,13 +970c00pr0199,Legs and Light Bluish Gray Hips with Atlantis Hammerhead Warrior Print,13 +970c00pr0200,"Legs and Hips with Blue Rags, Gold Loincloth with Hieroglyphs and Gold Belt with Red 'X' Print",13 +970c00pr0201,Legs and Hips with Dark Red Belt and Barding Print,13 +970c00pr0203,Legs and Hips with Ninja Robes and Gold Fireball Print,13 +970c00pr0206,Legs and Black Hips with Clone Trooper Sand Green Armour Print,13 +970c00pr0207,Legs and Bright Light Blue Hips Print,13 +970c00pr0208,Legs and Hips with Tattered Knees Print,13 +970c00pr0210,Legs and Hips with Dark Pink Wetsuit Lines Print,13 +970c00pr0211,Legs and Hips with Lion Crest Print,13 +970c00pr0212,Legs and Hips with Reddish Brown Kneepads Print,13 +970c00pr0213,Legs and Hips with Torn Print,13 +970c00pr0214,Legs and Hips with White Kneepads Print,13 +970c00pr0215,Legs and Hips with Paint Spots Print,13 +970c00pr0216,Legs and Hips with SW Luminara Unduli Print,13 +970c00pr0217,"Legs and Hips with Dark Brown Coat Tails, Blue Vest Tails and Red and White Sash Print",13 +970c00pr0218,"Legs and Hips with Dark Blue Coat Tails and Red, White and Blue Sash Print",13 +970c00pr0219,Legs and Hips with Black Belt and Black Markings and Gold Dragon Tail Print,13 +970c00pr0220,Legs and Hips with Red Belt and Gold Dragon Tail Print,13 +970c00pr0223,Legs and Hips with Purple Leg Protection and Silver Machinery Print,13 +970c00pr0225,"Legs and Hips with Wheat Spikes, Pockets and Patch Print",13 +970c00pr0230,Legs and Hips with Zipper and Lime Spots and Black Belt Print,13 +970c00pr0231,Legs and Hips with Purple Leg and Knee Protection Print,13 +970c00pr0232,Legs and Dark Bluish Gray Hips with 2 Pockets and Kneepads Print,13 +970c00pr0235,Legs and Hips with Side Buttons and Red and Orange Vest and Sash Print,13 +970c00pr0236,Legs and Hips with Tattered Dark Blue Coat Tails with Gold Trim Print,13 +970c00pr0238,Legs and Hips with Belt and Gold Asian Characters Print,13 +970c00pr0239,Legs and Black Hips with SW Wolfpack Clone Trooper Print,13 +970c00pr0240,Legs and Hips with SW Gunbelt Print (Han Solo 7965),13 +970c00pr0241,Legs and Dark Red Hips with Dark Red Loincloth and Skulls Print,13 +970c00pr0243,Legs and Hips with Leotard and Leg Warmers Print,13 +970c00pr0244,Legs and Reddish Brown Hips with Reddish Brown Roman Sword Belt with Gold Medallions Print,13 +970c00pr0245,Legs and Black Hips with Boxing Trunks with Gold Piping Print,13 +970c00pr0246,Legs and Tan Hips with Tan and Black Fur Print,13 +970c00pr0247,Legs and Hips with Cargo Pockets Front and Yellow Stripes with Black Line Print,13 +970c00pr0248,Legs and Tan Hips with Tan Animal Skin Skirt Print (Cavewoman),13 +970c00pr0251,Legs and Hips with White Apron and Cooking Utensils Print,13 +970c00pr0252,Legs and Hips with Gold Fleur de Lis Buckles Print,13 +970c00pr0253,Legs and Black Hips with Yellow Markings Print,13 +970c00pr0254,Legs and Dark Bluish Gray Hips with Pocket and Patch and Kneepads Print,13 +970c00pr0256,Legs and Dark Red Hips with Dark Red Loincloth Print,13 +970c00pr0257,Legs and Hips with Marine Growth Print,13 +970c00pr0258,"Legs and Hips with Reddish Brown Coat Tails and Red, White and Dark Green Print",13 +970c00pr0259,Legs and Hips with Dark Blue Belts and Leg Markings Print,13 +970c00pr0261,Legs and Hips with Yellow and Dark Bluish Gray Scales Print (Slithraa),13 +970c00pr0262,Legs and Hips with Yellow and Light Bluish Gray Scales Print (Mezmo),13 +970c00pr0263,Legs and Hips with Dark Blue Snake Print,13 +970c00pr0267,Legs and Hips with Dark Green Scales Print (Lizaru),13 +970c00pr0268,Legs and Hips with Green Scales Print (Spitta),13 +970c00pr0269,Legs and Hips with Green and Dark Green Scales Print,13 +970c00pr0270,Legs and Hips with White Scales Print,13 +970c00pr0271,Legs and Hips with Black and Red Scales Print,13 +970c00pr0272,Legs and Hips with Black Scales Print,13 +970c00pr0273,Legs and Hips with Gray Shirt Edge Print,13 +970c00pr0274,Legs and Hips with Sash Print,13 +970c00pr0275,Legs and Hips with Shirt Edge and Brown Strap Print,13 +970c00pr0276,"Legs and Hips with Dark Bluish Gray Sash, Belts and Buckles Print",13 +970c00pr0277,Legs and Hips with Dark Green Sash and Silver Diamonds Print,13 +970c00pr0278,Legs and Hips with Ninjago Purple Sash Print,13 +970c00pr0279,Legs and Hips with Sash and Shirt Edge Print,13 +970c00pr0280,Legs and Hips with Brown Armour and Belt Print,13 +970c00pr0282,Legs and Hips with Fire Suit Print,13 +970c00pr0283,Legs and Hips with Chain Belt and Pockets Print,13 +970c00pr0284,Legs and Hips with Loose Fitting Ammo Belt Print,13 +970c00pr0287,Legs and Hips with Dirt Stains Print,13 +970c00pr0289,Legs and Hips with Vertical Light Aqua Stripes Print,13 +970c00pr0291,Legs and Hips with Spacesuit with Silver Details Print,13 +970c00pr0293,Legs and Hips with Topographical Map and Zippered Pocket Print,13 +970c00pr0296,Legs and Blue Hips with Light Flesh Skin and Blue Short Swimsuit with White Stars Print,13 +970c00pr0299,"Legs and Dark Blue Hips with Dotted Line, 'X' and Fringe Print",13 +970c00pr0301,Legs and Hips with Green Plant Foliage Print,13 +970c00pr0304,Legs and Hips with Jedi Robe Print,13 +970c00pr0305,Legs and Hips with Gunbelt and Compass Print,13 +970c00pr0306,Legs and Black Hips with SW ARC Trooper Armour Print,13 +970c00pr0307,Legs and Black Hips with Belt and 3 Lime Balls Print,13 +970c00pr0308,Legs and Black Hips with SW Golden Belt Geonosian Zombie Print ,13 +970c00pr0309,Legs and Black Hips with SW Clone Trooper and Dark Green Markings Print,13 +970c00pr0310,Legs and Dark Brown Hips with Pocket with Pen and Paper Print,13 +970c00pr0312,Legs and Dark Brown Hips with Belt and Pocket Print,13 +970c00pr0313,Legs and Hips with Silver Armour Print,13 +970c00pr0314,Legs and Dark Bluish Gray Hips with Silver Belt and Armor Print,13 +970c00pr0315,Legs and Black Hips with Black Short Swimsuit Print,13 +970c00pr0316,"Legs and Red Hips with Blue Kneepads, Belt and Pockets with Gold Trim Print",13 +970c00pr0317,"Legs and Medium Azure Hips with Black, Yellow, and Medium Azure Wrap Dress Print",13 +970c00pr0318,Legs and Dark Red Hips and Loincloth and Gold Aztec Print,13 +970c00pr0319,Legs and Hips with Socks and Green Garters Print,13 +970c00pr0320,Legs and Hips with White Tennis Shorts with Lime Lines Print,13 +970c00pr0321,Legs and Dark Brown Hips with Dark Brown Loincloth Print,13 +970c00pr0322,Legs and Hips with Fire Energy Print,13 +970c00pr0323,Legs and Hips with Red Energy Print (NRG Cole),13 +970c00pr0324,Legs and Hips with Lightning Energy Print,13 +970c00pr0325,Legs and Hips with Ice Energy Print,13 +970c00pr0331,"Legs and Hips with Garlic, Stakes and Buckle Print (Ann Lee)",13 +970c00pr0332,Legs and Hips with Glow in Dark Mummy Wrapping Print,13 +970c00pr0333,Legs and Hips with Leather Pouch and Belt Print,13 +970c00pr0334,Legs and Hips with Leather Armour Print [Uruk-Hai],13 +970c00pr0341,Legs and Dark Green Hips with SW Boba Fett Armour Print,13 +970c00pr0342,Legs and Hips with Gold and Dark Bluish Gray Armour Print,13 +970c00pr0343,Legs and Hips with Gold and Dark Brown Armour Print,13 +970c00pr0344,Legs and Hips with Iron Man Gold Knee Plates Print 1,13 +970c00pr0345,Legs and Hips with Long Angled Coattails Print (Loki),13 +970c00pr0346,Legs and Hips with Straps and Buckles Print,13 +970c00pr0347,Legs and Hips with Belt and Silver Buckles Print (Black Widow),13 +970c00pr0348,Legs and Hips with Black Markings and Utility Belt on Right Leg Print,13 +970c00pr0349,Legs and Hips with Dark Blue Markings Print [Wolverine 6866],13 +970c00pr0350,Legs and Hips with Jacket and Shirt-tails Print [Aragorn],13 +970c00pr0351,Legs and Lime Hips with Swamp Plants and Scales Print,13 +970c00pr0352,Legs and Hips with Chain and Kneepads with Rivets Print (Frank Rock),13 +970c00pr0353,Legs and Hips with Olive Green Coattails Print (Legolas) ,13 +970c00pr0354,Legs and Hips with Dark Blue Vest Tails and Belt Print,13 +970c00pr0355,Legs and Hips with SW Satele Shan Armour Print,13 +970c00pr0356,Legs and Hips with SW Republic Trooper Armour Print,13 +970c00pr0357,Legs and Hips with Long Gold Coattails Print (Haldir),13 +970c00pr0358,Legs and Hips with White Hospital Lab Coattails Print,13 +970c00pr0359,Legs and Black Hips with SW Darth Malgus Armour Print,13 +970c00pr0360,Legs and Hips with Sith Trooper Armour and Silver and Dark Red Knee-Pads Print,13 +970c00pr0362,Legs and Hips with Torn Sections and Belt Print,13 +970c00pr0363,Legs and Hips with Jacket Tails Outline and Gold Button Print (Lord Vampyre),13 +970c00pr0364,Legs and Hips with Tattered Front Print (Zombie Driver),13 +970c00pr0366,Legs and Hips with Coattails and Medium Dark Flesh Leggings Print [Boushh 9516],13 +970c00pr0367,"Legs and Hips with Pockets, Belt and Silver Kneepads Print (Jack McHammer)",13 +970c00pr0368,Legs and Hips with Iron Man Gold Knee Plates Print 2,13 +970c00pr0369,Legs and Dark Red Hips with Gold Belt and Armor Print,13 +970c00pr0370,Legs and Sand Blue Hips with Belt with Buckle and Cowboy Boots Print,13 +970c00pr0373,Legs and Light Aqua Hips with Light Aqua Short Swimsuit Print,13 +970c00pr0375,Legs and Dark Green Hips with Dark Green Pants with Gold Trim Print,13 +970c00pr0376,Legs and Dark Green Hips with Lederhosen Print,13 +970c00pr0377,Legs and Hips with Red and White Short Skirt and White Shoes Print,13 +970c00pr0378,Legs and Dark Bluish Gray Hips with Reddish Brown Kneepads Print,13 +970c00pr0379,Legs and Hips with Robot Armour with Silver and Red Print,13 +970c00pr0380,Legs and Hips with Black Belt and Pockets with Yellow Stitching Print,13 +970c00pr0381,Legs and Hips with Black Kneepads Print,13 +970c00pr0382,Legs and Bright Light Blue Hips with Bright Light Blue Pants Print,13 +970c00pr0392,Legs and Hips with Round Silver Knee Pads Print,13 +970c00pr0393,Legs and Black Hips with Copper Pouch and Knee Pads Print,13 +970c00pr0394,Legs and Dark Bluish Gray Hips with Armor Plates Print,13 +970c00pr0395,Legs and Hips with Black Belt and Pockets with Silver Buttons Print,13 +970c00pr0397,Legs and Dark Red Hips with Dark Red Toga and Brown Sandals Print,13 +970c00pr0398,Legs and Black Hips with Battle Mech Armor and Knee Pads Print,13 +970c00pr0399,Legs and Hips with Belt and Torn Sections on Left Leg Print,13 +970c00pr0400,Legs and Sand Blue Hips with Sand Blue Fur Print,13 +970c00pr0401,Legs and Hips with Studded Belt and Safety Pins Print,13 +970c00pr0402,"Legs and Hips with Sand Blue Belt, Pockets and Silver Print",13 +970c00pr0403,Legs and Hips with Black and White Wrap Dress Print,13 +970c00pr0405,Legs and Hips with Torn Sections Print,13 +970c00pr0406,Legs and Hips with Gunbelt and Zipped Pocket Print,13 +970c00pr0407,Legs and Hips with White Vertical Lines Print,13 +970c00pr0408,Legs and Hips with Yellow Reflective Stripe Print,13 +970c00pr0410,"Legs and Blue Hips with Wrinkled Shorts, Yellow Stripe and White Vertical Lines Print",13 +970c00pr0412,Legs and Hips with Judo Black Belt Ends Print,13 +970c00pr0413,Legs and Hips with Blue and White Center and Yellow Stripe and Team GB Logo Print,13 +970c00pr0417,"Legs and Hips with Red Sash, Gold Buckles and Red Knee Wrapping Print",13 +970c00pr0418,"Legs and Hips with Gray Sash, Silver Buckles and Gray Knee Wrapping Print",13 +970c00pr0419,Legs and Green Hips with Green Tunic Print,13 +970c00pr0422,"Legs and Hips with Red Belt, Armour and Knee-Pads Print",13 +970c00pr0423,Legs and White Hips with White Feathers and Red Claws Print,13 +970c00pr0424,"Legs and Hips with Blue Sash, Silver Buckles and Blue Knee Wrapping Print",13 +970c00pr0425,"Legs and Hips with Red Belt, Red Tassels and Silver Outlined Knee Pads Print",13 +970c00pr0426,"Legs and Hips with White Sash, Gold Buckles and White Knee Wrapping Print",13 +970c00pr0428,"Legs and Hips with Dark Green Sash, Gold Buckles and Yellow Knee Wrapping Print",13 +970c00pr0431,"Legs and Dark Brown Hips with Blue Loincloth, Gold Knee Pads and Belt and White Claws Print",13 +970c00pr0432,Legs and Medium Lavender Hips with Medium Lavender Loincloth and White Claws Print,13 +970c00pr0433,"Legs and Hips with Red Belt, Silver Buckles and Dark Bluish Gray Talons Print",13 +970c00pr0434,"Legs and Dark Red Hips with Dark Red Loincloth, White Spikes and White Claws Print",13 +970c00pr0436,"Legs and Dark Red Hips with Dark Red Loincloth, Fur Tail Charm and Claws Print",13 +970c00pr0437,"Legs and Dark Red Hips with Dark Red Straps, Fur and White Claws Print",13 +970c00pr0438,"Legs and Dark Red Hips with Dark Red Loincloth, Belt with White Spikes and White Claws Print",13 +970c00pr0439,"Legs and Hips with Gold Belt Buckle, Gold Raven Knee Pads and Dark Gray Talons Print",13 +970c00pr0441,"Legs and Black Hips with Gray Straps , Knee Covers and Yellow Talons Print",13 +970c00pr0442,"Legs and Dark Red Hips with Dark Red Loincloth, White Bones and White Claws Print",13 +970c00pr0444,Legs and Green Hips with Green Loincloth and White Paws Print,13 +970c00pr0446,Legs and Dark Brown Hips with Chima Loincloth and Gray Toes Print ,13 +970c00pr0448,"Legs and Dark Brown Hips with Dark Brown Loincloth, Knee Pads and Gray Toes Print",13 +970c00pr0449,"Legs and Light Bluish Gray Hips with Dark Red Straps, Gray Fur, White Tail and White Claws Print",13 +970c00pr0450,Legs and Olive Green Hips with Olive Green and Tan Loincloth and Gray Toes Print,13 +970c00pr0454,"Legs and Hips with White Belt, Tassels and Silver Knee-Pads Print",13 +970c00pr0455,Legs and Hips with Elven Armour Tails Print,13 +970c00pr0456,Legs and Hips with Dark Red Robe and Two Gold Keys Print [79004],13 +970c00pr0457,Legs and Hips with Galaxy Squad Buggoid with Olive Green Stripes and Exoskeleton Print,13 +970c00pr0458,Legs and Hips with Galaxy Squad Buggoid with Dark Red Stripes and Exoskeleton Print,13 +970c00pr0460,"Legs and Hips with Galaxy Squad Armour with Small Light Bluish Gray and White Knee Pads, Four Black Circles and Short Belt Print",13 +970c00pr0461,Legs and Hips with Galaxy Squad Armour with Small Light Bluish Gray and White Knee Pads and Short Belt Print,13 +970c00pr0462,Legs and Hips with Galaxy Squad Armor with Large Light Bluish Gray and White Hexagonal Knee Pads and Short Belt Print,13 +970c00pr0463,Legs and Hips with Galaxy Squad Armor with Large Light Bluish Gray and White Trapezoid Knee Pads and Short Belt Print,13 +970c00pr0464,Legs and Hips with Galaxy Squad Armour with Large Light Bluish Gray and White Knee Pads and Short Belt Print,13 +970c00pr0469,Legs and Dark Brown Hips with Torn Orc Loincloth Print,13 +970c00pr0470,Legs and Hips with Sith Trooper Armour and Silver and Black Knee-Pads Print,13 +970c00pr0471,Legs and Black Hips with Republic Trooper Armour and Orange Knee Pads Print,13 +970c00pr0472,Legs and Hips with Ninja Turtle Armour Print,13 +970c00pr0473,Legs and Hips with Turtle Shell and Dark Brown Knee Pads Print,13 +970c00pr0474,Legs and Dark Blue Hips with Belt and Pockets on Dark Blue Print ,13 +970c00pr0476,Legs and Light Bluish Gray Hips with Rebel Flight Suit Print,13 +970c00pr0478,Legs and White Hips with B-Wing Pilot Flight Suit Print,13 +970c00pr0479,Legs and Hips with Armor and Silver Knee Pads Print,13 +970c00pr0481,Legs and Black Hips with Samurai Armor and Knee Pads Print,13 +970c00pr0482,"Legs and Light Bluish Gray Hips with Belt, Light Bluish Gray Straps with Dark Pink Dots and Light Bluish Gray Talons Print ",13 +970c00pr0484,Legs and Reddish Brown Hips with Brown and Gold Armor Scales Print,13 +970c00pr0485,Legs and Hips with Paint Spots Medium Azure Print,13 +970c00pr0487,Legs and Dark Red Hips with Tunic with Leather Straps with Copper Studs and Brown Sandals Print,13 +970c00pr0489,"Legs and Hips with Pockets, Rag, Chain and Skull Belt Print",13 +970c00pr0496,Legs and Tan Hips with Jedi Robe Print,13 +970c00pr0497,Legs and Black Hips with Blue Knee Pads and Gray Markings Print,13 +970c00pr0499,Legs and Black Hips with SW Clone Trooper and Bright Light Orange Markings Print,13 +970c00pr0502,Legs and Hips with Black Vest and Coattails Print (The Lone Ranger),13 +970c00pr0503,Legs and Hips with Cavalry Gold Belt and Dark Red Sash Print ,13 +970c00pr0505,Legs and Hips with Light Bluish Gray Coattails and Dual Belt Print,13 +970c00pr0506,Legs and Hips with Long Tattered Coattails and 2 Buttons Print,13 +970c00pr0507,Legs and Hips with Black Straps Print,13 +970c00pr0508,Legs and Hips with Brown Belt and Straps and Metallic Silver Armor Print,13 +970c00pr0509,Legs and Dark Tan Hips with Tan SW Jedi Robe Print ,13 +970c00pr0510,Legs and Hips with SW Jedi Robe Print ,13 +970c00pr0512,Legs and Dark Tan Hips with Dark Tan SW Jedi Robe Print,13 +970c00pr0515,Legs and Dark Brown Hips with SW Dark Brown Jedi Robe Print ,13 +970c00pr0516,Legs and Hips with Gold Belt and Chain Print,13 +970c00pr0518,Legs and Hips with Silver Belt and Red Knee Pads Print,13 +970c00pr0519,"Legs and Hips with White Belt, Skull and Bottle with Spider Print",13 +970c00pr0521,Legs and Dark Red Hips with Leia Slave Outfit Print,13 +970c00pr0523,Legs and Hips with 2 Lab Coat Pockets and 1 Button Print,13 +970c00pr0524,"Legs and Dark Pink Hips with Silver Mechanical Belt with Hearts, Riveted Knees and Feet Print [Col11-16]",13 +970c00pr0525,Legs and Dark Bluish Gray Hips with Evil Mech Lime Armour and Silver Knee Pads Print,13 +970c00pr0526,Legs and Hips with Bright Light Blue Hair Print [Col11-8],13 +970c00pr0527,Legs and Hips with Black Feet Print,13 +970c00pr0528,Legs and Hips with Bright Light Blue Apron and Yellow Stripe Print,13 +970c00pr0529,Legs and Hips with Scarecrow Trousers Print,13 +970c00pr0530,Legs and Hips with Shaggy Fur Shorts and Boots Print,13 +970c00pr0531,Legs and Black Hips with Black Harness with Blue Carabiner Print,13 +970c00pr0533,Legs and Hips with White Icing Print,13 +970c00pr0534,Legs and Olive Green Hips with Olive Green Knee Pads and Reddish Brown Bag Print,13 +970c00pr0535,Legs and Light Bluish Gray Hips with SW Jek-14 Armor with Dark Red Markings Print,13 +970c00pr0536,Legs and Hips with Dark Bluish Gray and Silver Belts and Buckles Print,13 +970c00pr0538,Legs and Hips with Dark Blue and Red Robe Print,13 +970c00pr0539,Legs and Hips with Silver Lining Print,13 +970c00pr0541,Legs and Hips with Iron Man Gold and Silver Knee Plates and Gold Boots Print,13 +970c00pr0542,Legs and Hips with Iron Man Silver Knee Plates and Boots Print ,13 +970c00pr0543,Legs and Hips with Dark Green Asian Robe with Gold Stitchery Print,13 +970c00pr0544,"Legs and Hips with Iron Man Gold and Silver Knee Plates, Boots and Belt Print",13 +970c00pr0545,Legs and Hips with Pouch and Sash Print (Tonto),13 +970c00pr0546,Legs and Dark Red Hips with Dark Red Sash and Chaps Print,13 +970c00pr0547,Legs and Dark Tan Hips with Dark Brown Belt and Chaps Print,13 +970c00pr0548,"Legs and Hips with Dark Bluish Gray Coattails, Tattered Chaps and Belt Buckle Print",13 +970c00pr0549,Legs and Dark Tan Hips with Steer Head Belt and Chaps Print,13 +970c00pr0550,Legs and Hips with Black Vest and Coattails and Dirt Patches Print,13 +970c00pr0551,Legs and Dark Brown Hips with Pouch and Sash and Dirt on Knees Print,13 +970c00pr0554,Legs and Sand Green Hips with Sand Green Robe and Gold Chain Mail Print ,13 +970c00pr0555,Legs and Hips with SW Black Special Forces Clone Trooper Armor Print ,13 +970c00pr0556,Legs and Hips with SW Metallic Gold Armor and Knee Pads and Dark Brown Straps Print,13 +970c00pr0557,Legs and Hips with SW Jedi Robe with Gold Markings Print,13 +970c00pr0558,Legs and Dark Red Hips with SW Silver Armor Print,13 +970c00pr0559,Legs and Hips with SW Armor with Silver and Brown Markings Print,13 +970c00pr0563,Legs and Hips with Iron Man 3 Print,13 +970c00pr0565,"Legs and Dark Green Hips with Dark Green Armor, Chain Belt and White Claws Print",13 +970c00pr0568,"Legs and Dark Bluish Gray Hips with Silver Scaled Armor, Eagle Knee Covers and Yellow Talons Print",13 +970c00pr0569,"Legs and Dark Bluish Gray Hips with Dark Brown Loincloth, Silver Gorilla Knee Pads and Gray Toes Print",13 +970c00pr0570,"Legs and Red Hips with Red Loincloth, Black Belt, Silver Knee Pads and Claws Print",13 +970c00pr0571,"Legs and Dark Blue Hips with Dark Blue Loincloth, Belt, Gold Lion Knee Pad and Dark Tan Claws Print",13 +970c00pr0573,Legs and Black Hips with Clone Trooper Armour Print,13 +970c00pr0575,Legs and Hips with Dark Tan Fur Print (SW Chief Tarfful),13 +970c00pr0576,Legs and Tan Hips with Jedi Robes Print,13 +970c00pr0577,Legs and Reddish Brown Hips with Bone Spiked Orc Loincloth Print,13 +970c00pr0578,Legs and Hips with Tan Trimmed Coat and Shirt Tails Print,13 +970c00pr0579,Legs and Hips with Dark Tan Cloth and Medium Dark Flesh Rope Belt Print,13 +970c00pr0580,Legs and Hips with Elven Armour Tails Print,13 +970c00pr0581,Legs and Light Bluish Gray Hips with Rebel Pilot Flight Suit Print,13 +970c00pr0583,Legs and Hips with SW Imperial Gunner Print,13 +970c00pr0585,Legs and Hips - Laketown Guard Armour Print,13 +970c00pr0586,"Legs and Flat Silver Hips with Silver Scaled Armor, Lime Diamonds and White Claws Print",13 +970c00pr0587,"Legs and Black Hips with Black Loincloth, Bat Buckle and White Claws Print",13 +970c00pr0588,"Legs and Black Hips with Silver Buckles, Bat Knee Covers and White Claws Print",13 +970c00pr0589,"Legs and Lime Hips with Lime Loincloth, Spider Knee Pads and Black Claws Print",13 +970c00pr0594,Legs and Hips with Metal Plate Knee Pads with Rivets Print,13 +970c00pr0596,Legs And White Hips with White Panda Suit Bottom Print ,13 +970c00pr0597,Legs and Hips with Tool Belt and Reflective Stripes Print,13 +970c00pr0598,Legs and Hips with Cat Hairs Print,13 +970c00pr0599,"Legs and Hips with Leather Belt, Knee Patch, Stain and Powder Horn Print ",13 +970c00pr0601,Legs and Reddish Brown Hips with Reddish Brown Apron Print,13 +970c00pr0602,Legs and Hips with Green and Red Mexican Print,13 +970c00pr0603,"Legs and Hips with Purple and Red Sash, Nindroid Armour Plate Print",13 +970c00pr0604,Legs and Hips with Green Sash Print,13 +970c00pr0605,"Legs and Hips with Belt, Reflective Stripes and 'EMMET' Name Tag Print",13 +970c00pr0615,Legs and Hips with Dark Blue Coveralls Print,13 +970c00pr0616,Legs and Hips with White Stained Apron Print,13 +970c00pr0618,"Legs and Hips with Silver Belt, 2 Pockets and Reflective Stripes Print",13 +970c00pr0625,Legs and Hips with Gunbelt Print,13 +970c00pr0627,"Legs and Hips with Olive Green, Dark Red, and Gold Clothing Print",13 +970c00pr0628,Legs and Hips with Purple and Blue Markings Print ,13 +970c00pr0629,Legs and Reddish Brown Hips with Orc Loincloth Print,13 +970c00pr0630,Legs and Olive Green Hips with Camouflage Knee Pads and Two Holsters Print,13 +970c00pr0631,Legs and Black Hips with SW Clone Trooper and Black Markings Print,13 +970c00pr0632,Legs and Hips with Dark Tan Fur Print,13 +970c00pr0633,Legs and Hips with White Apron Print,13 +970c00pr0636,"Legs and Hips with Black Belt, Handcuffs and Pocket Print",13 +970c00pr0637,Legs and Black Hips with Clone Trooper Armour and Orange Details Print,13 +970c00pr0638,Legs and Black Hips with Clone Trooper Orange and Black Armour Print,13 +970c00pr0639,Legs and Olive Green Hips with Camouflage Print,13 +970c00pr0640,Legs and Reddish Brown Hips with Neimoidian Warrior Armour Print,13 +970c00pr0641,Legs and Black Hips with Gold Stars and Inserts Print,13 +970c00pr0642,Legs and Hips with Wrinkled Robe Print,13 +970c00pr0643,Legs and Black Hips with Clone Trooper Armour Print,13 +970c00pr0645,Legs and Hips with Belt and Orange Harness with Rock Climbing Equipment Print,13 +970c00pr0649,Legs and Hips with Red Santa Robe with White Trim and Pockets Print,13 +970c00pr0650,"Legs and White Hips with SW White Leggings, Puttees Loose, Thin Wrap Print",13 +970c00pr0652,Legs and Hips with White Lab Coat Print (Doc Ock) ,13 +970c00pr0653,Legs and Hips with Dark Bluish Gray Armor Print (Karai),13 +970c00pr0654,"Legs and Hips with Turtle Shell, Scratches and Dark Brown Knee Pads Print",13 +970c00pr0655,"Legs and Hips with Armor Plates, Dark Brown Right Knee Pad and Silver Left Knee Pad Print",13 +970c00pr0656,Legs and Hips with Fur and Tan Claws Print,13 +970c00pr0657,"Legs and Light Bluish Gray Hips with Medium Blue Belt, Light Bluish Gray Straps with Dark Pink Dots and Light Bluish Gray Talons Print",13 +970c00pr0658,Legs and Hips with Dark Blue and White Electric Bolts Print (Electro),13 +970c00pr0660,"Legs and Dark Bluish Gray Hips with Gray Straps, Red Knee Pads and Gold Talons Print",13 +970c00pr0662,"Legs and Dark Blue Hips with Dark Blue Loincloth, Purple Sinew Patches and White Claws Print",13 +970c00pr0663,"Legs and Hips with Belt, Armor with Scales, and Gold Knee Pads Print",13 +970c00pr0664,"Legs and Hips with Belt, Armor with Scales, and Gold Croc Knee Pads Print",13 +970c00pr0665,"Legs and Hips with Belt, Armor with Scales, and Gold Lion Knee Pads Print",13 +970c00pr0666,"Legs and Dark Red Hips with Dark Red and Gold Loincloth, Gold Belt and White Claws Print",13 +970c00pr0668,"Legs and Dark Red Hips with Dark Red and Gold Loincloth, Gold Belt, Leopard Spots and White Toes with Claws Print",13 +970c00pr0669,"Legs and Dark Bluish Gray Hips with Gray Straps, Red Knee Pads and Gold Talons Print",13 +970c00pr0671,"Legs and Dark Red Hips with Red Skirt with Gold Flames, Gold Belt and White Claws Print",13 +970c00pr0672,Legs and Dark Red Hips with Buckles and Dark Red Loincloth with Gold Trim Print ,13 +970c00pr0673,"Legs and Dark Green Hips with Sand Green Armor with Scales, White Bones Knee Pads and Dark Bluish Gray Talons Print",13 +970c00pr0674,"Left Leg, Trans-Light Blue Right Leg, and Dark Green Hips with Sand Green Scaled Armor and Scars Print",13 +970c00pr0675,"Legs and Dark Blue Hips with Dark Blue Loincloth, Fur, Purple Sinew Patches and White Claws Print",13 +970c00pr0676,"Legs and Orange Hips with Orange Jumpsuit, Harness and Brown Knee Pads Print",13 +970c00pr0677,Legs and White Hips with Brown Knee Wrapping and White Claws Print,13 +970c00pr0678,Legs and Hips with Turtle Shell and Silver Knee Pads Print,13 +970c00pr0679,Legs and Black Hips with SW Stormtrooper Tan Dirt Stains on Upper Leg Print,13 +970c00pr0680,Legs and Hips with SW Large Pockets Print,13 +970c00pr0681,Legs and Hips with Silver Armor Sides and Knee Plates Print,13 +970c00pr0682,"Legs and Hips with Black Belt, Front Pockets and Black Round Knee Pads Print",13 +970c00pr0683,"Legs and Black Hips with Black and Orange Loincloth, Scarf and Dark Tan Round Knee Pads Print",13 +970c00pr0684,Legs and Dark Azure Hips with Dark Azure Loincloth Print,13 +970c00pr0685,Legs and Dark Green Hips with Dark Green Loincloth Print,13 +970c00pr0686,Legs and Reddish Brown Hips with Reddish Brown Leather Armor and Tan Wrapping on Right Leg Print,13 +970c00pr0687,Legs and Hips with Star Wars Print,13 +970c00pr0690,Legs and Hips with White and Gold Markings Print,13 +970c00pr0691,Legs and Hips with Star Wars Print,13 +970c00pr0692,Legs and Hips with Silver Armor and Knee Plates Print,13 +970c00pr0693,Legs and Hips with SW C-3PO Droid Print,13 +970c00pr0694,Legs and Dark Brown Hips with SW Tan Robe and Dark Tan Shirt Print ,13 +970c00pr0695,Legs and Light Bluish Gray Hips with SW Jek-14 Armor with Light Bluish Gray Markings Print,13 +970c00pr0696,Legs and White Hips with SW Light Aqua Belts Print,13 +970c00pr0697,Legs and Hips with Reddish Brown Oval and Curved Markings Print,13 +970c00pr0698,Legs and Hips with SW RA-7 Droid Print ,13 +970c00pr0700,Legs and Reddish Brown Hips with Reddish Brown SW Jedi Robe Print,13 +970c00pr0701,"Legs and Reddish Brown Hips with Dark Red Belt with Silver Buckle, Black and Gray Lines and Knee Straps Print",13 +970c00pr0703,Legs and Dark Bluish Gray Hips with Silver Armor with Red Vertical Lines and Silver Boots Print,13 +970c00pr0704,Legs and Hips with SW AT-AT Driver Print ,13 +970c00pr0705,Legs and Hips with SW Large Pockets Print (Imperial Crew) ,13 +970c00pr0707,"Legs and Orange Hips with 'LICHO', Orange Pockets and Harness, Knee Pads and Silver Boots Print",13 +970c00pr0708,Legs and Pearl Gold Hips with Gold Short Swimsuit and Sandals Print,13 +970c00pr0709,"Legs and Hips with Dark Brown Belt, Silver Buckle and Stitched Pockets Print",13 +970c00pr0711,Legs and Hips with Black Triangles on Feet Print,13 +970c00pr0712,Legs and Dark Brown Hips Legs with Tattered Dark Brown Leggings and Belt with Copper Buckle Print,13 +970c00pr0713,"Legs and Hips with Black Belt, Silver Buckle, USB Key on Chain and Pockets Print",13 +970c00pr0714,Legs and Hips with White Graduating Stripes Print,13 +970c00pr0715,Legs and Hips with Silver Studs and Knee Plates Print,13 +970c00pr0716,Legs and Red Hips with Red Swim Trunks with White 'JT' Print,13 +970c00pr0717,MINI LOWER PART NO. 717,13 +970c00pr0718,Legs and Hips with SW Sith Robe Print (Darth Vader) ,13 +970c00pr0719,Legs and Black Hips with SW Stormtrooper Black and Gray Markings Print,13 +970c00pr0720,Legs and Hips with SW Black Holster and Knee Pads Print,13 +970c00pr0721,"Legs and Dark Bluish Gray Hips with Armor, Rectangular Knee Pads and Red Talons Print",13 +970c00pr0722,"Legs and Hips with Studded Dark Green Belt and Leg Straps, Pockets and Two Lime Toxic Bulbs Print",13 +970c00pr0723,MINI LOWER PART NO.723,13 +970c00pr0724,Legs and Hips with Lime Green Circuits Trim and Belt Print (Terabyte),13 +970c00pr0725,"Legs and Hips with Belt, Reflective Stripes, 'EMMET' Name Tag and Silver Triangles on Feet Print",13 +970c00pr0726,Legs and Hips with Belt and Dark Red Coat with Silver Rivets Print,13 +970c00pr0727,Legs and Dark Bluish Gray Hips with Dark Bluish Gray Robes over Armor Print,13 +970c00pr0728,Legs and Hips with SW Small Pockets and Semi-Circle Knee Pad on Right Leg Print,13 +970c00pr0729,MINI LOWER PART NO. 729,13 +970c00pr0730,MINI LOWER PART NO. 730,13 +970c00pr0731,Legs and Hips with SW Dark Brown and Dark Tan Knee Pads Print,13 +970c00pr0732,Legs and Hips with SW Dark Brown and Dark Tan Knee Pads Print,13 +970c00pr0734,Legs and Hips with Silver Prosthetic Bionic Right Leg Print ,13 +970c00pr0735,Legs and Black Hips with SW Stormtrooper Black and Gray Markings Print (Rebels Cartoon Style),13 +970c00pr0737,MINI LOWER PART NO. 737,13 +970c00pr0738,Legs and Hips with Dark Bluish Gray and Medium Blue Knee Pads and Gray Belt with Silver Buckle Print,13 +970c00pr0739,Legs and Hips with Silver Trim on Sides Print (Caila Phoenix),13 +970c00pr0740,Legs and Hips with Silver Device with Screen on Right Leg Prin (Curtis Bolt),13 +970c00pr0741,"Legs and Hips with Gold Elven Robe, Red Strap and Silver Scale Mail Print",13 +970c00pr0742,Legs and Hips with Coattails and White Cord Print (Joker),13 +970c00pr0743,Legs and White Hips with Tattered White Robe and Light Bluish Gray Belt Print,13 +970c00pr0744,Legs and Hips with Green Elven Robe Print,13 +970c00pr0745,Legs and Hips with Brown Patch on Left Leg Print,13 +970c00pr0746,"Legs and Hips with SW Boba Fett Armor, Small Dark Red Belt Print",13 +970c00pr0747,Legs and Hips with Dark Blue Coat and Silver Chain Mail Print,13 +970c00pr0748,Legs and Hips with Gold and Medium Blue Coat Print,13 +970c00pr0749,Legs and Hips with Dark Bluish Gray and Silver Knee Pads and Dark Bluish Gray Stripes Print,13 +970c00pr0753,Legs and Reddish Brown Hips with Tattered Dark Brown Leggings with Patch and Rope Belt Print,13 +970c00pr0754,Legs and Olive Green Hips with Ragged Olive Green Skirt with Bone Clasp Print,13 +970c00pr0755,"Legs and Hips with Tool Belt with Screwdrivers, Plyer and Ruler Print",13 +970c00pr0756,Legs and Hips with Medium Dark Flesh Belt and Holster Print,13 +970c00pr0757,Legs and Dark Red Hips with Dark Red Samurai Leg Armor Print,13 +970c00pr0758,Legs and Hips with Silver Chain Belt and Medium Lavender and Silver Circles Print,13 +970c00pr0759,Legs and Hips with Black Fencing Plastron Outline Print,13 +970c00pr0760,Legs and White Hips with White and Gold Egyptian Shendyt Print,13 +970c00pr0761,Legs and Hips with Black and Dark Red Sash and Thin Knee Pads Print (Kai 2015),13 +970c00pr0762,MINI LOWER PART 762,13 +970c00pr0763,Legs and Hips with Medium Azure Sash and Knee Stripes Print,13 +970c00pr0764,Legs and Hips with Black and Olive Green Sash and Knee Stripes Print,13 +970c00pr0766,"Legs and Dark Red Hips with Copper Chains with Key, Buckles on Knees and Bones on Feet Print",13 +970c00pr0767,"Legs and Dark Red Hips with Cord with Teeth, Buckles on Knees and Bones on Feet Print",13 +970c00pr0768,Legs and Hips with Red Short Skirt and Red Boots Print,13 +970c00pr0769,"Legs and Dark Red Hips with Gold Belt Buckle, Dark Red and Gold Kneepads, Dark Blue Toes with Claws Print",13 +970c00pr0770,Legs and Hips with Dark Red and Gold Robe with Silver Trim and Purple Sash Print,13 +970c00pr0771,Legs and Hips with Green Sash Print,13 +970c00pr0772,"Legs and Hips with Red and Green Samurai Leg Armor, Gold Belt and Red Sash Print",13 +970c00pr0773,Legs and Hips with Olive Green Sash and Medium Dark Flesh Knee Pads Print,13 +970c00pr0774,Legs and Hips with Medium Azure Sash and Medium Dark Flesh Knee Pads Print,13 +970c00pr0775,Legs and Hips with White Sash and Medium Dark Flesh Knee Pads Print,13 +970c00pr0776,Legs and Hips with Dark Red Sash and Medium Dark Flesh Knee Pads Print,13 +970c00pr0777,Legs and Hips with Silver Sash and White Knee Pads Print,13 +970c00pr0778,Legs and Hips with Bright Light Yellow Sash and Medium Dark Flesh Knee Pads Print,13 +970c00pr0779,MINI LOWER PART NO. 779,13 +970c00pr0780,"Legs and Dark Blue Hips with Blue Loincloth, Gold Knee Pads and Belt, Straps and Pouches and White Claws Print",13 +970c00pr0781,Legs and Hips with Dark Tan Fur Print (SW Wookiee),13 +970c00pr0783,Legs and Hips with Dark Orange Fur Print (SW Wullffwarro),13 +970c00pr0784,"Legs and Dark Blue Hips with Dark Blue Loincloth, Belt, Copper Knee Pads and Black Claws Print",13 +970c00pr0785,"Legs and Dark Bluish Grey Hips with Metallic Armor, Gold Bee Hive Knee Pads and White Claws Print",13 +970c00pr0786,Legs and Hips with SW Inquisitor Robe Print,13 +970c00pr0787,"Legs and Dark Blue Hips with Copper Armor with Rivets, Purple Sinew Patches and White Claws Print",13 +970c00pr0788,Legs and Hips with Yellow Knee Stripes and White Socks Print,13 +970c00pr0789,Legs and Hips with Bright Light Blue Half Circles on Feet Print,13 +970c00pr0790,Legs and Hips with Lime Shirt Print,13 +970c00pr0794,Legs and Hips with SW Pockets and Gray Lines Print (AT-DP Pilot),13 +970c00pr0795,Legs and Black Hips with Black Markings Print,13 +970c00pr0796,Legs and Black Hips with Black Markings Print (Sinestro),13 +970c00pr0797,"Legs and Dark Red Hips with Dark Red Loincloth Tattered, Braided Belt with Bone Buckle and White Claws Print",13 +970c00pr0799,"Legs and Dark Red Hips with Silver Chain, Gray Wrapping, Buckles on Knees and Bones on Feet Print",13 +970c00pr0800,"Left Leg, Trans-Light Blue Right Leg, and Dark Blue Hips with Gray Scaled Armor and Black Claws Print",13 +970c00pr0801,"Legs and Dark Red Hips with Dark Red and Gold Armor, Gold Belt Buckle, Black Tiger Stripes and White Claws Print",13 +970c00pr0802,"Legs and Dark Red Hips with Copper Chains, Buckles on Knees and Bones on Feet Print",13 +970c00pr0803,"Legs and Dark Blue Hips with Blue Loincloth, Fur and White Claws Print",13 +970c00pr0804,Legs and Hips with Copper Trim Samurai Leg Armor over Dark Purple Robe Print,13 +970c00pr0805,Legs and Black Hips with Boots and Silver Knee Pads with Graphs Print,13 +970c00pr0808,"Legs and Dark Red Hips with Dark Red Loincloth, Bone Belt, Cord with Teeth and White Claws Print",13 +970c00pr0810,Legs and Black Hips with SW Stormtrooper Black and Dark Bluish Gray Markings Print (Shadow Stormtrooper),13 +970c00pr0811,"Legs and Dark Red Hips with Dark Red and Gold Armor, Gold Belt Buckle and White Claws Print",13 +970c00pr0812,Legs and Reddish Brown Hips with SW Clone Trooper Camouflage Armor Print,13 +970c00pr0813,Legs and Black Hips with SW Armor with Black Knee Markings Print (Senate Commando),13 +970c00pr0814,Legs and Black Hips with SW Armor with Black and White Knee Markings Print (Senate Commando Captain),13 +970c00pr0815,Legs and Hips with Reddish Brown Belt and Black Knee Belts with Silver and Red Knee Pads Print (SW Sabine Wren),13 +970c00pr0816,Legs and Hips with Black and White Markings Print (Wonder Woman),13 +970c00pr0818,"Legs and Orange Hips with Silver and Orange Belt, Knee Pads and Boots Print",13 +970c00pr0820,"Legs and Hips with Silver, Dark Bluish Gray and Dark Purple Robot Armor, Belt and Boots Print",13 +970c00pr0821,"Legs and Hips with Gray and Medium Azure Belt and Medium Azure, Gray and Black Knee Pads with Grille Print",13 +970c00pr0822,Legs and Green Hips with Green Markings and Gold Belt Print (Hawkman),13 +970c00pr0823,Legs and Black Hips with Silver and Black Armor Print,13 +970c00pr0827,MINI LOWER PART NO. 827,13 +970c00pr0829,Legs and Hips with Iron Man Gold and Silver Knee Plates and Belt Print,13 +970c00pr0831,MINI LOWER PART NO. 831,13 +970c00pr0835,MINI LOWER PART NO. 835,13 +970c00pr0836,MINI LOWER PART NO. 836,13 +970c00pr0841,MINI LOWER PART NO. 841,13 +970c00pr0842,Legs and Hips with Dark Red Panels and Gray and Silver Knee Straps with Buckles Print,13 +970c00pr0843,Legs and Hips with Iron Man Gold and Silver Knee Plates Print,13 +970c00pr0844,"Legs and Hips with Skirt, Boots and Flesh Knees Print (Scarlet Witch)",13 +970c00pr0845,Legs and Dark Bluish Gray Hips with Silver Armor Print,13 +970c00pr0846,MINI LOWER PART NO. 846,13 +970c00pr0848,MINI LOWER PART NO. 848,13 +970c00pr0849,Legs and Light Bluish Gray Hips with Silver Knee Plates and Belt Print,13 +970c00pr0850,Legs and Hips with Dark Blue Knee Plates and Red Avengers Logo Print (Iron Legion),13 +970c00pr0851,"MINI LOWER PART, NO.851",13 +970c00pr0852,Legs and Dark Purple Hips with Dark Purple Shorts and Black Scales Print (Green Goblin),13 +970c00pr0853,Legs and Hips with Silver Leg Belt and Dark Azure Knee Pads Print,13 +970c00pr0854,Legs and Hips with Magenta on Sides and Feet Print,13 +970c00pr0855,"Legs and Hips with Dark Red, Dark Blue and Silver Armor Print (Ultron MK1)",13 +970c00pr0856,Legs and Hips with Black Open Coat and Knee Straps Print,13 +970c00pr0858,MINI LOWER PART NO. 858,13 +970c00pr0859,MINI LOWER PART 859,13 +970c00pr0861,MINI LOWER PART 861,13 +970c00pr0862,MINI LOWER PART 862,13 +970c00pr0863,MINI LOWER PART 863,13 +970c00pr0865,MINI LOWER PART NO. 865,13 +970c00pr0866,MINI LOWER PART NO.866,13 +970c00pr0871,MINI LOWER PART NO.871,13 +970c00pr0874,MINI LOWER PART 874,13 +970c00pr0875,MINI LOWER PART 875,13 +970c00pr0876,MINI LOWER PART NO. 876,13 +970c00pr0877,MINI LOWER PART NO. 877,13 +970c00pr0879,MINI LOWER PART NO.879,13 +970c00pr0880,MINI LOWER PART NO. 880,13 +970c00pr0881,MINI LOWER PART NO. 881,13 +970c00pr0885,MINI LOWER PART NO. 885,13 +970c00pr0886,MINI LOWER PART NO 886,13 +970c00pr0888,MINI LOWER PART NO 888,13 +970c00pr0889,LOWER BODY NO 889,13 +970c00pr0890,MINI LOWER PART NO. 890,13 +970c00pr0891,MINI LOWER PART NO. 891,13 +970c00pr0900,MINI LOWER PART NO. 900,13 +970c00pr0901,MINI LOWER PART NO. 901,13 +970c00pr0902,MINI LOWER PART NO. 902,13 +970c00pr0903,MINI LOWER PART NO. 903,13 +970c00pr0904,MINI LOWER PART NO. 904,13 +970c00pr0905,MINI LOWER PART NO. 905,13 +970c00pr0906,MINI LOWER PART NO. 906,13 +970c00pr0907,MINI LOWER PART NO. 907,13 +970c00pr0908,MINI LOWER PART NO. 908,13 +970c00pr0909,MINI LOWER PART NO 909,13 +970c00pr0911,MINI LOWER PART NO. 911,13 +970c00pr0912,MINI LOWER PART NO. 912,13 +970c00pr0913,MINI LOWER PART NO. 913,13 +970c00pr0914,MINI LOWER PART NO. 914,13 +970c00pr0915,MINI LOWER PART NO. 915,13 +970c00pr0916,MINI LOWER PART NO. 916,13 +970c00pr0917,MINI LOWER PART NO. 917,13 +970c00pr0918,MINI LOWER PART NO. 918,13 +970c00pr0919,MINI LOWER PART NO. 919,13 +970c00pr0920,MINI LOWER PART NO. 2 NO. 920,13 +970c00pr0921,MINI LOWER PART NO. 2 NO. 921,13 +970c00pr0922,MINI LOWER PART NO. 2 NO. 922,13 +970c00pr0923,MINI LOWER PART NO.923,13 +970c00pr0925,MINI LOWER PART NO. 925,13 +970c00pr0927,MINI LOWER PART NO. 927,13 +970c00pr0928,MINI LOWER PART NO. 928,13 +970c00pr0929,MINI LOWER PART NO. 929,13 +970c00pr0930,MINI LOWER PART NO. 930,13 +970c00pr0931,MINI LOWER PART NO. 931,13 +970c00pr0932,MINI LOWER PART NO. 932,13 +970c00pr0933,MINI LOWER PART NO. 933,13 +970c00pr0934,MINI LOWER PART NO. 934,13 +970c00pr0935,MINI LOWER PART NO. 935,13 +970c00pr0936,MINI LOWER PART NO. 936,13 +970c00pr0937,"Legs and Green Hips with Orange and Gold Circuitry and Lime Armor, Knee Pads and Boots Print",13 +970c00pr0938,MINI LOWER PART NO. 938,13 +970c00pr0939,"Legs and White Hips with Orange and Gold Circuitry and Gray Armor, Knee Pads and Boots Print",13 +970c00pr0940,MINI LOWER PART NO. 940,13 +970c00pr0941,MINI LOWER PART NO. 941,13 +970c00pr0942,MINI LOWER PART NO. 942,13 +970c00pr0943,MINI LOWER PART NO. 943,13 +970c00pr0945,MINI LOWER PART NO.945,13 +970c00pr0946,MINI LOWER PART "NO.946",13 +970c00pr0947,Hips and Legs with Dark Red and Silver Scaled Armor and Boots with Rivets Print,13 +970c00pr0948,Hips and Legs Nexo Knights Moltor,13 +970c00pr0954,Legs and Hips with SW Stormtrooper Ep. 7 Black and Gray Lines Armor print,13 +970c00pr0955,MINI LOWER PART NO. 955,13 +970c00pr0956,MINI LOWER PART NO. 956,13 +970c00pr0957,MINI LOWER PART NO. 957,13 +970c00pr0959,MINI LOWER PART NO. 959,13 +970c00pr0960,MINI LOWER PART NO. 960,13 +970c00pr0961,MINI LOWER PART NO. 961,13 +970c00pr0962,MINI LOWER PART NO. 962,13 +970c00pr0963,MINI LOWER PART NO. 963,13 +970c00pr0964,MINI LOWER PART NO. 964,13 +970c00pr0966,MINI LOWER PART NO. 966,13 +970c00pr0967,MINI LOWER PART NO. 967,13 +970c00pr0968,"Legs and Hips with Blue and Dark Azure Armor, Blue Hexagonal Knee Pads and Dark Azure Boots print",13 +970c00pr0969,MINI LOWER PART NO.969,13 +970c00pr0971,"Legs with Light Bluish Gray Boots and White Hips, with Pink Dots Print",13 +970c00pr0973,MINI LOWER PART NO.973,13 +970c00pr0976,Legs and Hips with Black and Silver Armor and Knee Pads,13 +970c00pr0977,MINI LOWER PART NO.977,13 +970c00pr0978,"Hips and Legs with Orange and Gold Circuitry and Dark Green Armor, Knee Pads and Boots Pattern",13 +970c00pr0979,MINI LOWER PART "NO. 979",13 +970c00pr0980,"Hips and Legs with Orange and Gold Circuitry and Dark Blue Armor, Knee Pads and Boots print",13 +970c00pr0981,MINI LOWER PART NO. 981,13 +970c00pr0982,"Legs and Hips with Plaid Miniskirt, Dark Brown Tights and Black Boots print",13 +970c00pr0983,MINI LOWER PART NO. 983,13 +970c00pr0984,Legs and Hips with Lime Green Stripes on Sides and Pressure Gauge print,13 +970c00pr0985,Legs and Hips with Dark Bluish Gray Prison Stripes,13 +970c00pr0987,MINI LOWER PART NO. 987,13 +970c00pr0989,MINI LOWER PART &quot;NO. 989&quot;,13 +970c00pr0990,Legs and Hips with Dark Blue Seams and Knee Pads and Silver Zipper Pulls Print,13 +970c00pr0991,"Legs and Hips with Tan Fringe Skirt, Tied Belt and Dark Tan Boots Print",13 +970c00pr0992,MINI LOWER PART NO. 992,13 +970c00pr0993,MINI LOWER PART NO. 993,13 +970c00pr0994,MINI LOWER PART NO.994,13 +970c00pr0997,Dark Blue Hips and Legs with White Cast with Blue and Black Writing on Left Leg Print,13 +970c00pr0998,MINI LOWER PART NO.998,13 +970c00pr0999,MINI LOWER PART NO.999,13 +970c00pr1000,MINI LOWER PART NO.1000,13 +970c00pr1001,MINI LOWER PART NO.1001,13 +970c00pr1003,Legs and Hips with Dark Orange dress Print - Ghostbusters Possessed Dana,13 +970c00pr1005,Legs and Hips with Dark Tan Tweed Jacket Tails and Button print,13 +970c00pr1006,Legs and Hips with Dark Purple Jacket Tails and Dark Blue Vest print,13 +970c00pr1011,Hips and Legs with Dark Green Scales and Medium Dark Flesh Belt and Leg Armor Pattern,13 +970c00pr1012,MINI LOWER PART NO. 1012,13 +970c00pr1013,MINI LOWER PART NO. 1013,13 +970c00pr1019,Legs and Hips with Iron Skull Silver and Red Armor print,13 +970c00pr1020,"Legs and Black Hips SW Stormtrooper with Black, Gray and Red Markings on Legs print",13 +970c00pr1021,Legs and Black Hips with Black Thigs and Lavender Stripes Print,13 +970c00pr1022,Legs and Hips with Copper Knee Plates and Rivets print,13 +970c00pr1025,"Legs and Hips with Black, Silver and Gold Belt, Boots and Protectors print",13 +970c00pr1026,Legs and Dark Blue Hips with Gold Buckle - Dark Blue Skirt - Light Flesh Legs - Dark Red Boots with Gold Trim Print,13 +970c00pr1027,Legs and Hips with Red Sash print,13 +970c00pr1028,Hips and Dark Brown Legs with Dark Tan SW Robe print,13 +970c00pr1029,Legs and Red Hips with Gold Belt and Boots over Red Pants print,13 +970c00pr1032,Hips and Black Legs with 2 White Buttons on Red Shorts and Yellow Shoes print,13 +970c00pr1033,Hips and Black Legs with White Ruffled Knickers and Dark Pink Shoes print,13 +970c00pr1034,Legs and Hips with Flesh Feet and Ankles and Tan Patch on Right Leg print,13 +970c00pr1035,Hips and Legs with Bright Light Orange Lower Legs and Bright Pink Shoes [Daisy],13 +970c00pr1036,Hips and Legs with Green Leggings under Tunic and Dark Orange Boots print,13 +970c00pr1037,Hips and Legs with Black Shoes Curved On Front and Continuing on Sides [Alice],13 +970c00pr1038,Legs and Hips with Lime Belt and Boots with Black Magnetic Strips and Lime and Gray Details print (Buzz Lightyear CMF),13 +970c00pr1039,"Hips with Gold Coat Trim and Legs with Gold Coat Trim, White Leggings and Black Boots print",13 +970c00pr1040,MINI LOWER PART NO.2 NO. 1040 Incredible,13 +970c00pr1041,Hips and Legs with White and Black Bodysuit and White Jet Boots with Silver Markings print,13 +970c00pr1046,MINI LOWER PART NO. 1046,13 +970c00pr1047,MINI LOWER PART NO. 1047,13 +970c00pr1051,"Hips and Legs with DFB Logo with 4 Stars, Light Flesh and White Stripes, Lines on Sides Pattern",13 +970c00pr1052,"Hips and Legs with DFB Logo with 4 Stars, Reddish Brown and White Stripes, Lines on Sides Pattern",13 +970c00pr1053,"Hips and Legs with DFB Logo with 4 Stars, Flesh and White Stripes, Lines on Sides Pattern",13 +970c00pr1054,MINI LOWER PART NO. 1054,13 +970c00pr1057,MINI LOWER PART NO. 1057,13 +970c00pr1058,MINI LOWER PART NO. 1058,13 +970c00pr1068,MINI LOWER PART NO. 1068,13 +970c00pr1072,MINI LOWER PART NO. 1072,13 +970c00pr1073,MINI LOWER PART NO. 1073,13 +970c00pr1074,MINI LOWER PART NO. 1074,13 +970c00pr1076,MINI LOWER PART NO. 1076,13 +970c00pr1078,MINI LOWER PART NO. 1078,13 +970c00pr1085,MINI LOWER PART NO. 1085,13 +970c00pr1086,MINI LOWER PART NO. 1086,13 +970c00pr1089,MINI LOWER PART NO. 1089,13 +970c00pr1090,MINI LOWER PART NO. 1090,13 +970c00pr1091,MINI LOWER PART NO. 1091,13 +970c00pr1092,"MINI LOWER PART, NO. 1092",13 +970c00pr1093,"MINI LOWER PART, NO. 1093",13 +970c00pr1094,MINI LOWER PART NO. 1094,13 +970c00pr1096,"Hips and Legs with 2 White Buttons, Black Vertical Stripe on Sides and Black Shoes Pattern",13 +970c00pr1097,"Hips and Legs with Ruffles, Black Lower Legs and Yellow Feet Pattern (Minnie)",13 +970c00pr1098,Hips and Legs with Bright Light Orange Lower Legs and Medium Lavender Feet Pattern,13 +970c00pr1099,Hips and Light Flesh Legs with Lime Short Swimsuit and Lime Shoes Pattern,13 +970c00pr1100,MINI LOWER PART NO. 1100,13 +970c00pr1101,"MINI LOWER PART, NO. 1101",13 +970c00pr1102,"MINI LOWER PART, NO. 1102",13 +970c00pr1103,"MINI LOWER PART, NO. 1103",13 +970c00pr1104,"MINI LOWER PART, NO. 1104",13 +970c00pr1105,"MINI LOWER PART, NO. 1105",13 +970c00pr1106,"MINI LOWER PART NO. 2, NO. 1106",13 +970c00pr1107,Hips and Legs with Boxing Shorts with Red Trim and Dark Red Boots with Laces Pattern,13 +970c00pr1108,"Hips and Legs with Silver Belt and Chain, Knee Pads and Black Boots with Dark Bluish Gray Tips Pattern",13 +970c00pr1109,Hips and Legs with Dark Green Belt Tie and Reddish Brown Boots with Dark Orange Tips Pattern,13 +970c00pr1110,Hips and Legs with 2 Pockets with White Buttons and Dark Bluish Gray Knee Pads Pattern,13 +970c00pr1111,"Hips and Legs with Belt Loops, 2 Pockets with 2 Buttons, and Reddish Brown Boots Pattern",13 +970c00pr1112,"MINI LOWER PART, NO. 1112",13 +970c00pr1113,"MINI LOWER PART, NO. 1113",13 +970c00pr1114,"Hips and Legs with Reddish Brown Belt, Pouch, and Boots Pattern",13 +970c00pr1115,Hips and Black Legs with Dark Azure and Silver Circuitry and Knee Pads Pattern,13 +970c00pr1116,Hips and Legs with Tattered Shorts with White Stripes Print,13 +970c00pr1117,Hips and Legs with Ornate Silver Trim on Sides Print,13 +970c00pr1119,Legs and Hips with Imperial Death Trooper Armor Print,13 +970c00pr1120,"MINI LOWER PART, NO. 1120",13 +970c00pr1121,"MINI LOWER PART, NR 1121",13 +970c00pr1122,"MINI LOWER PART, NO. 1122",13 +970c00pr1123,"MINI LOWER PART, NO. 1123",13 +970c00pr1124,"MINI LOWER PART, NO. 1124",13 +970c00pr1125,MINI LOWER PART NO. 1125,13 +970c00pr1126,MINI LOWER PART NO. 1126,13 +970c00pr1127,"MINI LOWER PART, NO. 1127",13 +970c00pr1130,"MINI LOWER PART, NO. 1130",13 +970c00pr1131,"MINI LOWER PART, NO. 1131",13 +970c00pr1132,"MINI LOWER PART, NO. 1132",13 +970c00pr1133,"MINI LOWER PART, NO. 1133",13 +970c00pr1134,"MINI LOWER PART, NO. 1134",13 +970c00pr1135,MINI LOWER PART NO. 1135,13 +970c00pr1137,"MINI LOWER PART, NO. 1137",13 +970c00pr1138,Legs and Hips with Light Bluish Gray Trench Coat print,13 +970c00pr1139,"MINI LOWER PART, NO. 1139",13 +970c00pr1140,Minifig Legs with Blue Hips - Nexo Knights Armor with Yellow and Gold Circuitry - Blue Hexagonal Knee Pads - Blue Boot Print on Front of Feet - Clay,13 +970c00pr1141,"MINI LOWER PART, NO. 1141",13 +970c00pr1142,"MINI LOWER PART, NO. 1142",13 +970c00pr1145,"MINI LOWER PART, NO. 1145",13 +970c00pr1146,"MINI LOWER PART, NO. 1146",13 +970c00pr1153,MINI LOWER PART NO. 1153,13 +970c00pr1154,MINI LOWER PART NO. 1154,13 +970c00pr1155,MINI LOWER PART NO. 1155,13 +970c00pr1156,MINI LOWER PART NO. 1156,13 +970c00pr1157,MINI LOWER PART NO. 1157,13 +970c00pr1158,Minifig Legs and Hips with Bright Light Orange Designs on Light Gray Armor Print - Battle Suit Axl,13 +970c00pr1159,"MINI LOWER PART, NO. 1159",13 +970c00pr1160,"MINI LOWER PART, NO. 1160",13 +970c00pr1161,"MINI LOWER PART, NO. 1161",13 +970c00pr1163,"MINI LOWER PART, NO. 1163",13 +970c00pr1165,"MINI LOWER PART, NO. 1165",13 +970c00pr1166,"MINI LOWER PART, NO. 1166",13 +970c00pr1167,"MINI LOWER PART, NO. 1167",13 +970c00pr1168,"MINI LOWER PART, NO. 1168",13 +970c00pr1169,Legs and Hips - Dark Tan Belt and Leg Straps (Harness) Print - SW U-Wing Pilot,13 +970c00pr1170,"MINI LOWER PART, NO. 1170",13 +970c00pr1171,"Mini Lower Part, No. 1171 Joker 70900-1",13 +970c00pr1172,"MINI LOWER PART, NO. 1172",13 +970c00pr1173,"Mini Lower Part, No. 1173",13 +970c00pr1175,"MINI LOWER PART, NO. 1175",13 +970c00pr1176,"MINI LOWER PART, NO. 1176",13 +970c00pr1178,"Black Hips and Legs with Reddish Brown Belts, Silver Buckle, Gold Badge on Hip Pattern",13 +970c00pr1186,"MINI LOWER PART, NO. 1186",13 +970c00pr1187,Legs with Yellow Kneepads and Boots with Clasps on Side and Hips with Silver Belt Print,13 +970c00pr1188,"MINI LOWER PART, NO. 1188",13 +970c00pr1189,"MINI LOWER PART, NO. 1189",13 +970c00pr1190,"MINI LOWER PART, NO. 1190",13 +970c00pr1192,MINI LOWER PART NO. 1192,13 +970c00pr1193,"MINI LOWER PART, NO. 1193",13 +970c00pr1194,Legs and Hips Assembly - Both Legs with Yellow and Red Vertical Stripes Print on Outer Sides,13 +970c00pr1195,Legs and Hips with Black Seams and Black and White Garters,13 +970c00pr1196,"MINI LOWER PART, NO. 1196",13 +970c00pr1197,"MINI LOWER PART, NO. 1197",13 +970c00pr1201,MINI LOWER PART NO. 1201,13 +970c00pr1204,"MINI LOWER PART, NO. 1204",13 +970c00pr1205,"MINI LOWER PART, NO. 1205",13 +970c00pr1206,"MINI LOWER PART, NO. 1206",13 +970c00pr1208,"MINI LOWER PART, NO. 1208",13 +970c00pr1209,"MINI LOWER PART, NO. 1209",13 +970c00pr1210,"MINI LOWER PART, NO. 1210",13 +970c00pr1211,"MINI LOWER PART, NO. 1211",13 +970c00pr1212,"MINI LOWER PART, NO. 1212",13 +970c00pr1213,MINI LOWER PART NO. 1213,13 +970c00pr1214,MINI LOWER PART NO. 1214,13 +970c00pr1217,Legs and Hips with SW Dark Brown Holster and Knee Pads Print,13 +970c00pr1218,"MINI LOWER PART, NO. 1218",13 +970c00pr1219,"Hips and Legs with Tartan Kilt, Dark Brown Belt and Boots Pattern",13 +970c00pr1223,"MINI LOWER PART, NO. 1223",13 +970c00pr1224,"MINI LOWER PART, NO. 1224",13 +970c00pr1225,Legs and Hips with Gray Fur and Belt with Pouches Print,13 +970c00pr1226,"MINI LOWER PART, NO. 1226",13 +970c00pr1227,"MINI LOWER PART, NO. 1227",13 +970c00pr1228,Legs and Hips - Reddish Brown Low Belt with Silver Buckle Print,13 +970c00pr1229,"MINI LOWER PART, NO. 1229",13 +970c00pr1230,Legs and Hips with Armor and 3 Bright Light Orange Pouches - Reddish Brown Leggings Print,13 +970c00pr1231,"MINI LOWER PART, NO. 1231",13 +970c00pr1235,"MINI LOWER PART, NO. 1235",13 +970c00pr1245,"MINI LOWER PART, NO. 1245",13 +970c00pr1246,"MINI LOWER PART, NO. 1246",13 +970c00pr1247,"Hips and Legs with 'sparco' and Red, Blue, and Black Dashed Lines Pattern",13 +970c00pr1248,"MINI LOWER PART, NO. 1248",13 +970c00pr1249,"MINI LOWER PART, NO. 1249",13 +970c00pr1252,"MINI LOWER PART, NO. 1252",13 +970c00pr1255,"MINI LOWER PART, NO. 1255",13 +970c00pr1258,"MINI LOWER PART, NO. 1258",13 +970c00pr1259,"MINI LOWER PART, NO. 1259",13 +970c00pr1260,"MINI LOWER PART, NO. 1260",13 +970c00pr1265,"MINI LOWER PART, NO. 1265",13 +970c00pr1266,"MINI LOWER PART, NO. 1266",13 +970c00pr1267,"MINI LOWER PART, NO. 1267",13 +970c00pr1268,"MINI LOWER PART, NO. 1268",13 +970c00pr1269,"MINI LOWER PART, NO. 1269",13 +970c00pr1270,"MINI LOWER PART, NO. 1270",13 +970c00pr1271,"MINI LOWER PART, NO. 1271",13 +970c00pr1272,"MINI LOWER PART, NO. 1272",13 +970c00pr1273,"MINI LOWER PART, NO. 1273",13 +970c00pr1276,"MINI LOWER PART, NO. 1276",13 +970c00pr1277,"MINI LOWER PART, NO. 1277",13 +970c00pr1278,"MINI LOWER PART, NO. 1278",13 +970c00pr1279,"MINI LOWER PART, NO. 1279",13 +970c00pr1281,"MINI LOWER PART, NO. 1281",13 +970c00pr1288,"MINI LOWER PART, NO. 1288",13 +970c00pr1289,"MINI LOWER PART, NO.1289",13 +970c00pr1290,"MINI LOWER PART, NO. 1290",13 +970c00pr1292,"MINI LOWER PART, NO. 1292",13 +970c00pr1293,"MINI LOWER PART, NO. 1293",13 +970c00pr1297,"MINI LOWER PART, NO. 1297",13 +970c00pr1299,"MINI LOWER PART, NO. 1299",13 +970c00pr1302,"MINI LOWER PART, NO. 1302",13 +970c00pr1306,"MINI LOWER PART, NO. 1306",13 +970c00pr1310,"MINI LOWER PART, NO. 1310",13 +970c00pr1319,"MINI LOWER PART, NO. 1319",13 +970c00pr1357,"MINI LOWER PART, NO. 1357",13 +970c00pr2015,Legs and Hips with Left Leg Pocket for 2015 Character Encyclopedia - Boba Fett,13 +970c00pr2077,MINI LOWER PART NO. 2077,13 +970c00pr6141728,Hips and Pearl Dark Gray Legs with Silver Leg Armor with Dark Blue Lines Pattern (Batman),27 +970c00pr6173642,Catwoman's legs,13 +970c00pr9996,Legs with Dark Bluish Gray Sash and Dark Brown Belts with Gold Buckles and Dark Brown Rope Knee Wraps,13 +970c00pr9997,"Legs with Red Studded Belt, Tassels and Armor",13 +970c00pr9998,Legs and Hips with Stars and Stripes Armor Plates - Silver Knee Plates and Boot Tips Print,13 +970c00pr9999,Legs and Hips - Dark Red Boots with Notch on Sides (Marceline),13 +970c01pr0292,Legs and Dark Blue Hips with Dark Blue Apron with White Stripes Print,13 +970c01pr0311,Legs and Black Hips with SW Stormtrooper Dirt Stains Print,13 +970c01pr0435,Legs and Dark Blue Hips with Gold Belt and Knee Protection and Yellow Claws Print,13 +970c01pr0440,"Legs and Pearl Gold Hips with Gold Scaled Armour, Eagle Knee Protection and Yellow Claws Print",13 +970c01pr0475,Legs and Black Hips with SW Clone Trooper and Blue Markings Print,13 +970c01pr0610,Legs and Hips with Pink Apron with White Stripes Print,13 +970c01pr0644,Legs and Black Hips with Red SW Shock Trooper Armor Print,13 +970c02pb01,Legs and Blue Hips with Western Indians Black Belt and Blue Fringe Print,13 +970c02pb02,"Legs and Blue Hips with Western Indians Blue/White Triangles, Fringe Print",13 +970c02pb03,"Legs and White Hips with SW White Leggings, Puttees Print",13 +970c02pb05,"Legs and Brown Hips with SW Pockets, Silver Belt Buckle Print",13 +970c02pb13,"Legs and White Hips with SW White Leggings, Puttees Thin Wrap Print",13 +970c02pr0430,"Legs and Dark Blue Hips with Strapped Kilt, Lion Knee Protection and Clawed Feet Print",13 +970c02pr0566,"Legs and Dark Bluish Gray Hips with Dark Blue Loincloth, Silver Chain, Trinkets, Lion Knee Pads and White Claws Print",13 +970c03pb01,Legs and Green Hips with Pirate Islanders Green Leaf Print,13 +970c03pb02,Legs and Green Hips with Adventurers Jungle Blue/Red Squares Print (Achu),13 +970c03pb17,Legs and Blue Hips with Blue Short Swimsuit with Red and White Stripe and Water Drops Print,13 +970c03pb18,Legs and White Hips with White Gymnast Leotard with Red and Blue (Team GB Logo) Print,13 +970c03pb23,Legs and Green Hips with Green Markings and Yellow Belt Ends Print (Phoenix Jean Grey),13 +970c03pr0285,"Legs and Red Hips with Belt, Red Roman Tunic and Reddish Brown Sandals Print",13 +970c03pr0532,Legs and Green Hips with Grass Skirt Print,13 +970c03pr0995,Medium Azure Hips and Yellow Legs with Medium Azure Swimsuit and Dark Purple Boots with Medium Azure Lightning Bolts Pattern,13 +970c04pr0205,Legs and Reddish Brown Hips with SW Pockets and Gunbelts Print,13 +970c07pb01,Legs and Black Hips with Space UFO Silver Circuitry Print,13 +970c07pb02,Legs and Red Hips with Spider-Man Webbing Print,13 +970c07pb05,Legs and Red Hips with Red and Black Panel and Belt Print,13 +970c07pr0619,"Legs and Hips with Dark Tan Belt, 2 Pockets and Reflective Stripes Print",13 +970c09pb01,"Legs and Black Hips with Castle Knights Kingdom Blue/Yellow on Legs, Belt Print",13 +970c09pb02,Legs and Black Hips with Space UFO Gold Circuitry Print,13 +970c09pb03,Legs and Dark Gray Hips with Studios Dark Gray Mummy Wrapping Print,13 +970c09pb04,Legs and Brown Hips with SW Boba Fett Print,13 +970c10pb01,Legs and Blue Hips with Insectoids Blue Circuitry over Black and Silver Background Print,13 +970c10pr0520,"Legs and Black Hips with Leg Armor, Silver Belt and Gold Knee Pads Print",13 +970c11pb01,Legs and Green Hips with Adventurers Desert Green Kilt & Toes Print (Hotep),13 +970c11pb02a,Hips and Legs with Castle Ninja Leg Armour Print,13 +970c11pb02b,Legs and Blue Hips with Castle Ninja Leg Armour Print,13 +970c11pb03,Legs and Dark Gray Hips with Insectoids Green Circuitry Print,13 +970c11pb04,Legs and Dark Gray Hips with Insectoids Silver and Copper Circuitry Print,13 +970c11pb05a,Legs and Red Hips with Space RoboForce Gold Circuitry Print,13 +970c11pb05b,Legs and Yellow Hips with Space RoboForce Gold Circuitry Print,13 +970c11pb06,Legs and White Hips with White Lab Coat/Buttons Print (Mad Scientist),13 +970c11pb20,Legs and Dark Red Hips with SW Belt and Dark Red Sash Print,13 +970c11pb23,"Legs and Dark Bluish Gray Hips with Dark Bluish Gray Pants and Knee Pads, Electrodes and Wires Print",13 +970c11pr0500,Legs and White Hips with SW Gunbelts and Knee Pads Print,13 +970c11pr0574,Legs and Olive Green Hips with SW Camouflage Armor Print,13 +970c11pr0584,"Legs and Pearl Gold Hips with Gold Scaled Armor, Lime Diamonds and White Claws Print",13 +970c11pr0606,Legs and Hips with Belt with Gold Buckle and Coat Tails Outline Print ,13 +970c11pr0611,Legs and Hips with Leotard and White Leg Warmers Print ,13 +970c120pr0335,Legs and Dark Bluish Gray Hips with Scale Mail Print,13 +970c120pr0498,Legs and Dark Red Hips with Reddish Brown Tunic and Lavender Sash Print,13 +970c120pr0590,"Legs and Lime Hips with Lime Loincloth, Spider Knee Pads and Black Claws Print",13 +970c150pr0447,"Legs and Dark Tan Hips with Loincloth, Rope Belt and White Claws Print",13 +970c150pr0483,Legs and Dark Orange Hips with Jedi Robe and White Leg Armor Plates Print,13 +970c153pr0492,Legs and Lime Hips with Blue and Lime Parachute Harness Straps and Silver Buckles Print,13 +970c153pr0750,Legs and Blue Hips with Blue and Purple Space Armor and 3 Yellow Lights,13 +970c155pr0361,Legs and Dark Tan Hips with Dark Tan and Brown Fur Print (SW Gamorrean) ,13 +970c155pr0443,"Legs and Dark Red Hips with Tribal Belt, Scaled Legs and White Claws Print",13 +970c155pr0567,"Legs and Dark Bluish Gray Hips with Dark Red Loincloth, Silver Crocodile Knee Pads and White Claws Print",13 +970c34pr0366,Legs and Black Hips with Black Mesh Print (SW Oola),13 +970c36pb01,Legs and Green Hips with Studios Green Goblin Print,13 +970c36pb02,Legs and Dark Purple Hips with Yellow Markings Print,13 +970c42pb01,Legs and Red Hips with Silver Inserts Print,13 +970c55pr0386,Legs and Dark Bluish Gray Hips with SW Pre Vizsla Armor Print,13 +970c63pb01,Legs and Red Hips with Spider-Man Webbing Print,13 +970c63pr0609,"Legs and Dark Bluish Gray Hips with Silver Belt Buckle, Pull Tab and Knee Pads Print",13 +970c69pr0237,Legs and Black Hips with SW Golden Belt Geonosian Print,13 +970c69pr0514,Legs and Black Hips with SW Elaborate Golden Belt and Geonosian Robe Print,13 +970c80pr0480,Legs and White Hips with Light Aqua Belts Print,13 +970c86pr0288,"Legs and Medium Azure Hips with Silver Mechanical Belt, Shock Absorbers and Feet Print",13 +970c86pr0591,"Legs and Dark Purple Hips with Dark Purple Armor, Chain Belt and White Claws Print",13 +970c88pr0204,Legs and Dark Red Hips with SW Belt and Skirt Print,13 +970c88pr0286,"Legs and Dark Blue Hips with Belt, Dark Blue Armor and Black Hooves Print",13 +970c88pr0290,Legs and Dark Blue Hips with Dark Green Tartan Kilt Print,13 +970c88pr0537,Legs and Dark Red Hips with Dark Red and Gold Elven Robe Print,13 +970c88pr0595,Legs and Dark Red Hips with Dark Red Pants with Gold Trim Print,13 +970c88pr0607,Legs and Sand Blue Hips with Chaps and Belts Print,13 +970c90pr0250,Legs and White Hips with SW Luke Bacta Tank Print ,13 +970c90pr0562,Legs and Dark Tan Hips with Dark Tan Leotard Print,13 +970c95pb003,"Legs and Red Hips with Red Armor, Silver Stripes, Red and Yellow Knee Plates and Orange Belt Pouches Print",13 +970c99,Long Legs and Hips (Woody/Jessie) [Plain],24 +970c99pr0001,Long Legs and Hips with Dark Orange Boots Print [Woody],13 +970c99pr0002,Long Legs and Hips with Black and White Chaps Print [Jessie],13 +970c99pr0003,"Long Legs and Hips with Black and White Chaps, Dirt Stains Print (Jessie)",13 +970c99pr0004,Long Legs and Hips with Dark Orange Boots and Dirt Stains Print (Woody),13 +970cpr1207,"Mini Lower Part, No. 1207",13 +970d00,"Left Leg, Right Leg, and Hips [Differently Coloured Legs]",24 +970d00pr0504,"Left Leg, White Right Leg, and Red Hips with Black Lace and Red Ladies Garter Print (Red Harrington)",13 +970d00pr0661,"Left Leg, Trans-Light Blue Right Leg, and Dark Green Hips with Sand Green Scaled Armor and Knee Pad and Gray Talons Print",13 +970d00pr0665,"Left Leg, Trans-Light Blue Right Leg, and Dark Blue Hips with Gray Armor, Purple Sinew Patches and White Claws Print",13 +970d00pr0667,"Left Leg, Trans-Light Blue Right Leg, and Dark Brown Hips with Fur, Loincloth, Glowing Bones and White Toenails Print",13 +970d00pr0670,"Left Leg, Trans-Light Blue Right Leg, and Dark Tan Hips with Fur, Copper Pendants, Purple Sinew Patches and White Toenails Print",13 +970d00pr0710,"Right Leg, Dark Purple Left Leg, and Hips with Red Belt with Face Print",13 +970d00pr0798,"Left Leg, Trans-Light Blue Right Leg, and White Hips with Fur Loincloth and Black Claws Print",13 +970d00pr0806,"Right Leg, Bright Light Orange Left Leg, and Light Bluish Gray Hips with Dark Red and Gray Straps with Pouches and Belt Print",13 +970d00pr0807,"Left Leg, Trans-Light Blue Right Leg, and Dark Blue Hips with Copper Armor, Glowing Bones and White Claws Print",13 +970d00pr0817,"Left Leg, Trans-Light Blue Right Leg, and Light Bluish Gray Hips with Dark Blue Armor with Scales, Dark Tan Straps and Gray Talons Print",13 +970d00pr0819,"Left Leg, Trans-Light Blue Right Leg, and Light Bluish Gray Hips with Copper Armor, Chains, Purple Sinew Patches and Gray Talons Print",13 +970d00pr1195,Hips (Plain) - Dark Purple Left Leg and Medium Lavender Right Leg - both with Yellow and Red Vertical Stripes on Outer Sides,13 +970d00pr1261,Hips and Right Leg with Stitches on Medium Blue Patch - Medium Blue Left Leg with Yellow Stitches on Red Patch Print (Tears of Batman),13 +970d00pr9999,Hips with Orange Left Leg and Dark Brown Right Leg - All 3 with Print,13 +970d01,"Left Leg, Brown Pirate Peg Leg, and Black Hips",13 +970d02,"Hips and 1 Blue Left Leg, 1 Black Right Leg (Dragon Masters)",13 +970d03,"Hips and 1 Black Left Leg, 1 Red Right Leg",13 +970d03pr0115,"Hips and 1 Black Left Leg, 1 Red Right Leg with Diamonds, Red Diamonds on Middle, Black Bar Above Left Leg Print",13 +970d03pr0302,"Hips and 1 Black Left Leg, 1 Red Right Leg with Diamonds, Red Diamonds on Top, Black Bar Above Left Leg Print",13 +970d04,"Hips and 1 Black Left Leg, 1 Dark Red Right Leg",13 +970d05,"Left Leg, Pearl Light Gray Pirate Peg Leg, and Black Hips",13 +970d06pr01,and Black Legs with White Hips and Waist Print [Two Face],13 +970d07,"Hips and 1 Light Bluish Gray Left Leg, 1 Black Right Leg",13 +970d08,"Hips and 1 Blue Left Leg, 1 Red Right Leg",13 +970d09,"Left Leg, Reddish Brown Right Pirate Peg Leg, and Black Hips",13 +970d10,"Hips and 1 White Left Leg, 1 Red Right Leg",13 +970d11pr0137,"Left Leg with Red Patch, Red Right Leg, and Red Hips with Medium Blue Patch Print",13 +970d12,"Left Leg, Pearl Dark Gray Pirate Peg Leg, and Black Hips",13 +970d13,"Left Leg, Medium Dark Flesh Pirate Peg Leg, and Dark Bluish Gray Hips",13 +970d14pr0303,"Hips and 1 Dark Purple Left Leg, 1 Orange Right Leg, Coat Tails Print",13 +970d15,"Hips and 1 Sand Green Left Leg, 1 Flat Silver Prosthetic / Cybernetic Right Leg (Rodney Rathbone)",13 +970d16,"Left Leg, Flat Silver Pirate Peg Leg, and Black Hips",13 +970d18,"Left Leg, Green Right Leg and Dark Green Hips",13 +970d19pr0659,"Left Leg, Trans-Light Blue Right Leg, and White Hips with Gray Armor and Knee Pad, Copper Pendants and White Claws Print",13 +970d29pb01,Left Leg and Blue Right Leg and Hips with Blue and Red Quarters and Dark Bluish Gray Straps Print,13 +970d30pr0944,Minifig Legs and Dark Bluish Gray Hips - Jestro [70316],13 +970d33,"Hips and 1 Dark Green Left Leg, 1 Dark Brown Pirate Peg Leg",13 +970pr6135528c01,"Torso Ninjago Parachute with Straps, Ninja Skull with Crossed Swords, Green Scarf Pattern / Dark Red Arm Left / Orange Arm Right / Dark Brown Hands",13 +970x001,Legs and White Hips,13 +970x002,Legs and Light Gray Hips,13 +970x005,Legs and Tan Hips,13 +970x021,Legs and Red Hips,13 +970x023,Legs and Blue Hips,13 +970x024,Legs and Yellow Hips,13 +970x025,Legs and Brown Hips,13 +970x026,Legs and Black Hips,13 +970x027,Legs and Dark Gray Hips,13 +970x028,Legs and Green Hips,13 +970x037,Legs and Bright Green Hips,13 +970x037pr1177,Legs with Red Boots Print and Bright Green Hips,13 +970x102,Legs and Medium Blue Hips,13 +970x106,Legs and Orange Hips,13 +970x119,Legs and Lime Hips,13 +970x135,Legs and Sand Blue Hips,13 +970x138,Legs and Dark Tan Hips,13 +970x140,Legs and Dark Blue Hips,13 +970x140pr0952,Legs and Dark Blue Hips - Light Bluish Gray Sash and Knee Straps Print,13 +970x141,Legs and Dark Green Hips,13 +970x141pr0950,Legs and Dark Green Hips with Sand Green Sash and Knee Straps,13 +970x154,Legs and Dark Red Hips,13 +970x191,Legs and Bright Light Orange Hips,13 +970x192,Legs and Reddish Brown Hips,13 +970x192pr0001,"Reddish Brown Hips and 1 Dark Brown Left Leg with Green Armor and Knee Belt, 1 Orange Right Leg with Black and Silver Bolted Armor Plates Pattern ",13 +970x192pr0002,Legs and Reddish Brown Hips - Legs with Plain Reddish Brown Boots,13 +970x194,Legs and Light Bluish Gray Hips,13 +970x195,Legs and Blue-Violet Hips,13 +970x199,Legs and Dark Bluish Gray Hips,13 +970x221,Legs and Dark Pink Hips,13 +970x222,Legs and Bright Pink Hips,13 +970x268,Legs and Dark Purple Hips,13 +970x268pr001,Legs and Dark Purple Hips with Dark Blue Sash and Tattered Dark Purple Robe Print,13 +970x297,Legs and Pearl Gold Hips,13 +970x308,Legs and Dark Brown Hips,13 +970x312pr1234,Legs and Medium Dark Flesh Hips with Belt over Long Mesh Tunic Print (SW Skiff Guard),13 +970x321,Legs and Dark Azure Hips,13 +970x322,Legs and Medium Azure Hips,13 +970x323,Legs and Light Aqua Hips,13 +970x324,Legs and Medium Lavender Hips,13 +970x330,Legs and Olive Green Hips,13 +97122,"Cloth Curtain with Red, Yellow and Green Print [10220]",38 +97149,MINI UPPERPART W.BOXING GLOVES,13 +9719,Instruction CD-ROM for 9719 (RIS 1.0),17 +9723b1,Set 9723 Activity Booklet 1 - Simple Traffic Lights,17 +9723b2,Set 9723 Activity Booklet 2 - Traffic Monitoring,17 +9723b3,Set 9723 Activity Booklet 3 - Intelligent Vehicles,17 +9723b4,Set 9723 Activity Booklet 4 - Monorail,17 +97302,"Minifig Robe Cloth, Split in Front - Graduation Gown",27 +973b,Torso NBA (Plain),13 +973bc01,Torso NBA (Plain) / Yellow NBA Arms,13 +973bpb131c01,Torso NBA Los Angeles Lakers #8 Print / Brown NBA Arms,13 +973bpb132,Torso NBA New Jersey Nets #5 Jason Kidd Print,13 +973bpb132c01,Torso NBA New Jersey Nets #5 Print / Flesh NBA Arms,13 +973bpb133c01,Torso NBA Milwaukee Bucks #7 Print / Flesh NBA Arms,13 +973bpb134c01,Torso NBA San Antonio Spurs #21 Print / Brown NBA Arms,13 +973bpb135c01,Torso NBA Milwaukee Bucks #34 Print / Brown NBA Arms,13 +973bpb136c01,Torso NBA Memphis Grizzlies #16 Print / Flesh NBA Arms,13 +973bpb137c01,Torso NBA Toronto Raptors #15 (Road Jersey) Print / Brown NBA Arms,13 +973bpb138c01,Torso NBA Dallas Mavericks #41 Print / Flesh NBA Arms,13 +973bpb139c01,Torso NBA Seattle SuperSonics #20 Print / Brown NBA Arms,13 +973bpb140c01,Torso NBA Philadelphia 76ers #3 (Black Jersey) Print / Brown NBA Arms,13 +973bpb141c01,Torso NBA Houston Rockets #3 Print / Brown NBA Arms,13 +973bpb142c01,Torso NBA Utah Jazz #32 Print / Brown NBA Arms,13 +973bpb143c01,Torso NBA Sacramento Kings #4 Print / Brown NBA Arms,13 +973bpb144c01,Torso NBA New York Knicks #20 Print / Brown NBA Arms,13 +973bpb145c01,Torso NBA Orlando Magic #1 (Blue Jersey) Print / Brown NBA Arms,13 +973bpb146,Torso NBA Boston Celtics #34 Print,13 +973bpb146c01,Torso NBA Boston Celtics #34 Print / Brown NBA Arms,13 +973bpb148c01,Torso NBA Dallas Mavericks #13 Print / Flesh NBA Arms,13 +973bpb149c01,Torso NBA Minnesota Timberwolves #21 (White Jersey) Print / Brown NBA Arms,13 +973bpb150,Torso NBA Sacramento Kings #16 Print,13 +973bpb150c01,Torso NBA Sacramento Kings #16 Print / Flesh NBA Arms,13 +973bpb151c01,Torso NBA Chicago Bulls #5 Print / Brown NBA Arms,13 +973bpb152c01,Torso NBA Los Angeles Lakers #34 (Yellow Jersey) Print / Brown NBA Arms,13 +973bpb153c01,Torso NBA San Antonio Spurs #9 Print / Brown NBA Arms,13 +973bpb154c01,Torso NBA Boston Celtics #8 (Green Jersey) Print / Brown NBA Arms,13 +973bpb155,Torso NBA Player Number 7 Print,13 +973bpb155c01,Torso NBA Player Number 7 Print / Yellow NBA Arms,13 +973bpb156c01,Torso NBA Player Number 8 Print / Yellow NBA Arms,13 +973bpb157,Torso NBA Player Number 4 Print,13 +973bpb157c01,Torso NBA Player Number 4 Print / Yellow NBA Arms,13 +973bpb158,Torso NBA Player Number 10 Print,13 +973bpb158c01,Torso NBA Player Number 10 Print / Yellow NBA Arms,13 +973bpb159,Torso NBA Street Player - Gray Shirt and 3 Squares Print,13 +973bpb159c01,Torso NBA Street Player - Gray Shirt and 3 Squares Print / Yellow NBA Arms,13 +973bpb177,"Torso NBA Street Player - 3 Color Shirt, Basket Text Print",13 +973bpb177c01,"Torso NBA Street Player - 3 Color Shirt, Basket Text Print / Yellow NBA Arms",13 +973bpb178c01,Torso NBA Player Number 2 Print / Yellow NBA Arms,13 +973bpb179c01,Torso NBA Player Number 3 Print / Yellow NBA Arms,13 +973bpb180c01,Torso NBA Player Number 5 Print / Yellow NBA Arms,13 +973bpb181c01,Torso NBA Los Angeles Lakers #34 (Road Jersey) Print / Brown NBA Arms,13 +973bpb182c01,Torso NBA Los Angeles Lakers #8 (Road Jersey) Print / Brown NBA Arms,13 +973bpb183c01,Torso NBA Boston Celtics #8 (White Jersey) Print / Brown NBA Arms,13 +973bpb184c01,Torso NBA Philadelphia 76ers #3 (White Jersey) Print / Brown NBA Arms,13 +973bpb185c01,Torso NBA Minnesota Timberwolves #21 (Dark Blue Jersey) Print / Brown NBA Arms,13 +973bpb186c01,Torso NBA Orlando Magic #1 (White Uniform) Print / Brown NBA Arms,13 +973bpb187c01,Torso NBA Toronto Raptors #15 (White Uniform) Print / Brown NBA Arms,13 +973bpb188c01,Torso NBA Player Number 6 Print / Yellow NBA Arms,13 +973bpb189c01,Torso NBA Player Number 9 Print / Yellow NBA Arms,13 +973bpb224,Torso NBA Detroit Pistons #42 Print,13 +973bpb224c01,Torso NBA Detroit Pistons #42 Print / Brown NBA Arms,13 +973bpb225c01,Torso NBA Player Number 1 Print / Yellow NBA Arms,13 +973bpb282c01,Torso NBA New Jersey Nets #5 (White Jersey) Print / Flesh NBA Arms,13 +973c00,Null Torso / Null Arms / Null Hands,13 +973c00pr2015c01,Minifig Torso Dual Sides with SW Armor Plate with White Arms and Hands for 2015 Character Encyclopedia - Boba Fett,13 +973c00pr6141719,Torso Batman Logo with Body Armor and Gold Belt Pattern / Pearl Dark Gray Arms / Dark Bluish Gray Hands,13 +973c01,Torso Plain / White Arms / Yellow Hands,13 +973c02,Torso Plain / Red Arms / Yellow Hands,13 +973c03,Torso Plain / Dark Pink Arms / Yellow Hands,13 +973c04,Torso Plain / Orange Arms / Yellow Hands,13 +973c05,Torso Plain / Orange Arms / Dark Bluish Gray Hands,13 +973c06,Torso Plain / Blue Arms / Black Hands,13 +973c07,Torso Plain / Blue Arms / Yellow Hands,13 +973c08,Torso Plain / Black Arms / Light Flesh Hands,13 +973c09,Torso Plain / White Arms / White Hands,13 +973c10,Torso Plain / Yellow Arms / Black Hands,13 +973c11,Torso Plain / Yellow Arms / Yellow Hands,13 +973c12,Torso Plain / Green Arms / Black Hands,13 +973c13,Torso Plain / Brown Arms / Brown Hands,13 +973c14,Torso Plain / Black Arms / Black Hands,13 +973c15,Torso Plain / Dark Gray Arms / Sand Green Hands,13 +973c16,Torso Plain / Light Gray Arms / Light Gray Hands,13 +973c17,Torso Plain with Light Bluish Gray Arms and Light Bluish Gray Hands,13 +973c18,Torso Plain / Black Arms / Yellow Hands,13 +973c19,Torso Plain / Yellow Arms / White Hands,13 +973c20,Torso Plain / Green Arms / Yellow Hands,13 +973c21,Torso Plain / Blue Arms / White Hands,13 +973c22,Torso Plain / Dark Gray Arms / Light Gray Hands,13 +973c23,Torso Plain / Red Arms / Black Hands,13 +973c24,Torso Plain / Blue Arms / Red Hands,13 +973c25,Torso Plain / Light Gray Arms / Yellow Hands,13 +973c26,Torso Plain / Black Arms / Black Hand Right / Trans-Red Hook Left,13 +973c27,Torso Plain / Blue Arms / Dark Gray Hands,13 +973c28,Torso Plain / Red Arms / Dark Gray Hands,13 +973c29,Torso Plain / Dark Gray Arms / White Hands,13 +973c30,Torso Plain / Dark Gray Arms / Dark Gray Hands,13 +973c31,Torso Plain / Red Arms / White Hands,13 +973c32,Torso Plain / Reddish Brown Arms / Reddish Brown Hands,13 +973c33,Torso Plain / Medium Blue Arms / Light Bluish Gray Hands,13 +973c34,Torso Plain / Red Arms / Dark Bluish Gray Hands,13 +973c35,Torso Plain / Green Arms / Dark Bluish Gray Hands,13 +973c36,Torso Plain / Dark Purple Arms / Light Bluish Gray Hands,13 +973c37,Torso Plain / Black Arms / Black Hand Right / Trans-Medium Blue Hook Left,13 +973c39,Torso Plain / Red Arms / Dark Tan Hands,13 +973c40,Torso Plain / Medium Blue Arms / Dark Blue Hands,13 +973c41,Torso Plain / Black Arms / Dark Red Hands,13 +973c42,Torso Plain / Black Arms / White Hands,13 +973c43,Torso Plain / Dark Purple Arms / Light Flesh Hands,13 +973c44,Torso Plain / Dark Bluish Gray Arms / Dark Bluish Gray Hands,13 +973c45,Torso Plain / Black Arms / Dark Bluish Gray Hands,13 +973c46,Torso Plain / Sand Blue Arms / Black Hands,13 +973c47,Torso Plain / Light Bluish Gray Arms / Dark Bluish Gray Hands,13 +973c48,Torso Plain /Reddish Brown Arms / Flesh Hands,13 +973c49,Torso Plain / Dark Purple Arms / Dark Bluish Gray Hands,13 +973c50,Torso Plain / Sand Blue Arms / Yellow Hands,13 +973c51,Torso Plain / Dark Green Arms / Yellow Hands,13 +973c52,Torso Plain / Dark Tan Arms / Yellow Hands,13 +973c53,Torso Plain / Dark Blue Arms / Black Hands,13 +973c54,Torso Plain / Sand Blue Arms / Dark Bluish Gray Hands,13 +973c55,Torso Plain / Tan Arms / Tan Hands,13 +973c56,Torso Plain / Yellow Arms / Blue Hands,13 +973c57,Torso Plain / Dark Red Arms / Dark Bluish Gray Hands,13 +973c58,Torso Plain / Olive Green Arms / Olive Green Hands,13 +973c60,Torso Plain / Dark Bluish Gray Arms / Reddish Brown Hands,13 +973c61,Torso Plain / Dark Azure Arms / Dark Azure Hands,13 +973c62,Torso Plain / Dark Tan Arms / Medium Dark Flesh Hands,13 +973c63,Torso Plain / Dark Brown Arms / Dark Brown Hands,13 +973c66,Torso Plain / Dark Purple Arms / Dark Purple Hands,13 +973c67,Torso Plain / Tan Arms / Yellow Hands,13 +973cpr3628,Mini Upper Part No. 3628,13 +973kcpr3948c01,Torso SW Armour Stormtrooper Print - LEGO Logo on Back / White Arms / Black Hands,13 +973p01,Torso Vertical Striped Red/Blue Print,13 +973p01c01,Torso Vertical Striped Red/Blue Print / Blue Arms / Yellow Hands,13 +973p01c02,Torso Vertical Striped Red/Blue Print / Red Arms / Yellow Hands,13 +973p02,Torso Vertical Striped Blue/Red Print,13 +973p02c01,Torso Vertical Striped Blue/Red Print / White Arms / Yellow Hands,13 +973p03,"Torso Town Vest with 4 Buttons, White Shirt Collar Print (1592 patron)",13 +973p03c01,"Torso Town Vest with 4 Buttons, White Shirt Collar Print (1592 patron) / White Arms / Yellow Hands",13 +973p04,"Minifig Torso with Six Button Suit and Airplane Print airline, captain, tie,pilot",13 +973p05,"Minifig Torso with Six Button Suit and Anchor Print boat,captain,ship,sailor,tie,buttons",13 +973p09,Torso Boat Anchor Logo Print,13 +973p09c01,Torso Boat Anchor Logo Print / White Arms / Yellow Hands,13 +973p0a,Torso Zipper Curved on Jacket and Pocket Print (white zipper),13 +973p0ac01,Torso Zipper Curved on Jacket and Pocket Print (white zipper) / Blue Arms / Yellow Hands,13 +973p0ac02,Torso Zipper Curved on Jacket and Pocket Print (white zipper) / Black Arms / Yellow Hands,13 +973p0ac04,Torso Zip Curved on Jacket and Pocket Print / Red Arms / Yellow Hands,13 +973p0b,Torso Zipper Curved on Jacket and Pocket Print (black zipper),13 +973p0bc01,Torso Zipper Curved on Jacket and Pocket Print (black zipper) / White Arms / Yellow Hands,13 +973p12,Torso Riding Jacket Print,13 +973p12c01,Torso Riding Jacket Print / Red Arms / White Hands,13 +973p13,Torso Zipper Straight on Jacket Print,13 +973p13c01,Torso Zipper Straight on Jacket Print / Red Arms / Yellow Hands,13 +973p13c02,Torso Zipper Straight on Jacket Print / Yellow Arms / Yellow Hands,13 +973p14,Torso Town 'S' Logo Red / Black Print,13 +973p14c01,Torso Town 'S' Logo Red / Black Print / White Arms / Yellow Hands,13 +973p16,Torso Airplane Logo with Stripes Print,13 +973p16c01,Torso Airplane Logo with Stripes Print / White Arms / Yellow Hands,13 +973p17,Torso Red V-Neck and Buttons Print,13 +973p17c01,Torso Red V-Neck and Buttons Print / Red Arms / Yellow Hands,13 +973p17c02,Torso Red V-Neck and Buttons Print / Blue Arms / Yellow Hands,13 +973p18,Torso Suit and Tie Print,13 +973p18c01,Torso Suit and Tie Print / Blue Arms / Yellow Hands,13 +973p19,Torso Train Red Chevron Print,13 +973p19c01,Torso Train Red Chevron Print / Blue Arms / Yellow Hands,13 +973p1a,"Minifig Torso with Black Dungarees Print coveralls, overalls, pocket",13 +973p1b,"Minifig Torso with Blue Dungarees Print coveralls, overalls, pocket",13 +973p1c,"Minifig Torso with Red Dungarees Print coveralls, overalls, pocket",13 +973p1d,Minifig Torso with Blue Horizontal Stripes Print,13 +973p1e,Minifig Torso with Red Horizontal Stripes Print,13 +973p1f,"Minifig Torso with Buttons and Old Police Badge Print Town, Police, Uniform, Jacket",13 +973p1g,"Minifig Torso with Zipper and Old Police Badge Print Town, Police, Uniform, Jacket, Zipper",13 +973p1h,Minifig Torso with Racing Jacket and Two White Stars Print,13 +973p1j,"Minifig Torso with Green Dungarees Print coveralls, overalls, pocket",13 +973p1k,"Minifig Torso with TV Logo Print Small globe,News, Crisis, 6553, Television, Helicopter, Cameraman, Reporter, Van",13 +973p1m,"Minifig Torso with TV Logo Print Large News, Crisis, 6553, Television, Helicopter, Cameraman, Reporter, Van,globe",13 +973p1n,Minifig Torso with Racing Jacket and Two Stars Red Print racers,13 +973p1q,"Minifig Torso with Launch Command Logo and Equipment Print Town, Spaceport, Astronaut, spacesuit",13 +973p1r,Minifig Torso with Blue Striped Dungarees Print pocket,13 +973p1s,Minifig Torso with Mail Horn Print,13 +973p20,Torso Town Vest Formal with Bow Tie Print,13 +973p21,Torso Fire Uniform Five Button Print,13 +973p21c01,Torso Fire Uniform Five Button Print / Black Arms / Yellow Hands,13 +973p22,Torso Suit and Red Shirt Print,13 +973p22c01,Torso Suit and Red Shirt Print / Black Arms / Yellow Hands,13 +973p23,Torso Town 'S' Logo Light Gray / Blue Print,13 +973p23c01,Torso Town 'S' Logo Light Gray / Blue Print / Blue Arms / Yellow Hands,13 +973p24,Torso Hospital Red Cross Shirt Print,13 +973p24c01,Torso Hospital Red Cross Shirt Print / White Arms / Yellow Hands,13 +973p25,Torso Hospital Red Cross Shirt and Stethoscope Print,13 +973p25c01,Torso Hospital Red Cross Shirt and Stethoscope Print / White Arms / Yellow Hands,13 +973p26,Torso Patch Pocket Shirt Print,13 +973p26c01,Torso Patch Pocket Shirt Print / Blue Arms / Yellow Hands,13 +973p26c02,Torso Patch Pocket Shirt Print / Black Arms / Yellow Hands,13 +973p27,Torso Highway Print,13 +973p27c01,Torso Highway Print / Blue Arms / Yellow Hands,13 +973p28,Torso Leather Jacket Print,13 +973p28c01,Torso Leather Jacket Print / Black Arms / Yellow Hands,13 +973p29,Torso Fire Air Gauge and Pocket Print,13 +973p29c01,Torso Fire Air Gauge and Pocket Print / Light Gray Arms / Black Hands,13 +973p2a,"Minifig Torso with Chef Print cook,scarf",13 +973p2c,"Minifig Torso with Strapless Suntop Print scar,swimsuit,bathing,town,paradisa",13 +973p2d,Minifig Torso with Windsurfboard Print sailboard,13 +973p2e,"Minifig Torso with Blue and Mint Green Stripes Print tank top,swimsuit",13 +973p2f,"Minifig Torso with Spotted Singlet and Necklace Print gold,polka dot,tank top",13 +973p2g,Minifig Torso with Blue Flowers on Tied Shirt Print,13 +973p2h,Minifig Torso with Palm Tree Print,13 +973p2j,Minifig Torso with Palm Tree and Dolphin Print,13 +973p2k,Minifig Torso with Palm Tree and Horse Print,13 +973p2m,Minifig Torso with Horse Head Print,13 +973p30,Torso Pirate Purple Vest and Anchor Tattoo Print,13 +973p30c01,Torso Pirate Purple Vest and Anchor Tattoo Print / Yellow Arms / Yellow Hands,13 +973p31,Torso Pirate Stripes Red / White with Gold Belt Buckle Print,13 +973p31c01,Torso Pirate Stripes Red / White with Gold Belt Buckle Print / Yellow Arms / Yellow Hands,13 +973p32,Torso Pirate Stripes Blue / White with Gold Belt Buckle Print,13 +973p32c01,Torso Pirate Stripes Blue / White with Gold Belt Buckle Print / Yellow Arms / Yellow Hands,13 +973p33,Torso Pirate Stripes Red / Black with Gold Belt Buckle Print,13 +973p33c01,Torso Pirate Stripes Red / Black with Gold Belt Buckle Print / Yellow Arms / Yellow Hands,13 +973p34,Torso Pirate Open Jacket over Striped Vest Print,13 +973p34c01,Torso Pirate Open Jacket over Striped Vest Print / Blue Arms / Yellow Hands,13 +973p36,Torso Pirate Captain Print,13 +973p36c01,Torso Pirate Captain Print / Black Arms / Yellow Hand Right / Light Gray Hook Left,13 +973p38,Torso Pirate Female Red Corset Print,13 +973p38c01,Torso Pirate Female Red Corset Print / White Arms / Yellow Hands,13 +973p39,"Torso Pirate Open Jacket, Brown Shirt, Silver Buttons Print",13 +973p39c01,"Torso Pirate Open Jacket, Brown Shirt, Silver Buttons Print / Blue Arms / Yellow Hands",13 +973p3a,"Torso Pirate Ragged Shirt, Knife, and Black Crossbelt Print",13 +973p3ac01,"Torso Pirate Ragged Shirt, Knife, and Black Crossbelt Print / Yellow Arms / Yellow Hand Right / Light Gray Hook Left",13 +973p3b,"Torso Pirate Brown Vest, Ascot, Dark Gray Crossbelt Print",13 +973p3bc01,"Torso Pirate Brown Vest, Ascot, Dark Gray Crossbelt Print / White Arms / Yellow Hands",13 +973p3c,"Torso Pirate Green Vest, Open Shirt, and Black Crossbelt Print",13 +973p3cc01,"Torso Pirate Green Vest, Open Shirt, and Black Crossbelt Print / White Arms / Yellow Hands",13 +973p3d,"Minifig Torso with Medallion, Belt, and Silver Buttons Print Pirates, Imperial Armada, Spaniard",13 +973p3f,"Minifig Torso with Striped Shirt and Silver Buttons Print pirates,spaniard,armada",13 +973p3h,"Minifig Torso with Islander Woman Print feathers,boa,necklace",13 +973p3j,"Minifig Torso with Islander Print feathers,belt,necklace",13 +973p3k,"Minifig Torso with Islander King Print feathers,belt,bones,bone,necklace",13 +973p3n,"Minifig Torso with Blue Imperial Guard Print pirates,soldier",13 +973p3q,"Minifig Torso with Red Imperial Guard Print pirates,soldier",13 +973p3r,Torso Pirate Imperial Soldier Officer Print (Blue),13 +973p3rc01,Torso Pirate Imperial Soldier Officer Print (Blue) / Blue Arms / Yellow Hands,13 +973p3s,Torso Pirate Imperial Guard Officer Print (Red),13 +973p3sc01,Torso Pirate Imperial Guard Officer Print (Red) / Red Arms / White Hands,13 +973p3t,Minifig Torso with Green Stripes and Leather Strap Print,13 +973p3u,Minifig Torso with Imperial Soldier Print,13 +973p3v,"Minifig Torso Pirate Vest, Anchor Tattoo, Rope on Back Print",13 +973p40,Torso Castle Breastplate Print,13 +973p40c01,Torso Castle Breastplate Print / Black Arms / Yellow Hands,13 +973p40c02,Torso Castle Breastplate Print / Red Arms / Yellow Hands,13 +973p40c03,Torso Castle Breastplate Print / Blue Arms / Yellow Hands,13 +973p41,Torso Castle Scale Mail Print,13 +973p41c01,Torso Castle Scale Mail Print / Black Arms / Yellow Hands,13 +973p41c02,Torso Castle Scale Mail Print / Blue Arms / Yellow Hands,13 +973p41c03,Torso Castle Scale Mail Print / Red Arms / Yellow Hands,13 +973p42,Torso Castle Crusaders Crossed Axe Shield Print,13 +973p42c01,Torso Castle Crusaders Crossed Axe Shield Print / Blue Arms / Yellow Hands,13 +973p43,Torso Castle Black Falcon Print Old Style Torso with Rounder Bottomed Shield and Black Neck Marking,13 +973p43c01,Torso Castle Black Falcon Print Old Style Torso with Rounder Bottomed Shield and Black Neck Marking / Black Arms / Yellow Hands,13 +973p44,Torso Castle Wolfpack Print,13 +973p44c01,Torso Castle Wolfpack Print / Brown Arms / Yellow Hands,13 +973p44c02,Torso Castle Wolfpack Print / Black Arms / Yellow Hands,13 +973p45,"Torso Studded Armor Print (Castle, Soccer)",13 +973p45c01,"Torso Studded Armor Print (Castle, Soccer) without #1 on Back / Dark Gray Arms / Yellow Hands",13 +973p46,Torso Castle Forestman Tie Shirt and Purse Print,13 +973p46c01,Torso Castle Forestman Tie Shirt and Purse Print / Green Arms / Yellow Hands,13 +973p46c02,Torso Castle Forestman Tie Shirt and Purse Print / Blue Arms / Yellow Hands,13 +973p47,Torso Castle Classic Shield Red/Gray Print,13 +973p47c01,Torso Castle Classic Shield Red/Gray Print / Light Gray Arms / Yellow Hands,13 +973p48,Torso Castle Forestman Maroon Collar Print,13 +973p48c01,Torso Castle Forestman Maroon Collar Print / Red Arms / Yellow Hands,13 +973p49,Torso Castle Forestman Blue Collar Print,13 +973p49c01,Torso Castle Forestman Blue Collar Print / Blue Arms / Yellow Hands,13 +973p4b,Torso Castle Dragon Knights Dragon Face on Shield Print,13 +973p4bc02,Torso Castle Dragon Knights Dragon Face on Shield Print / Blue Arms / Yellow Hands,13 +973p4d,Torso Castle Royal Knights Lion Head on Red/White Shield Print,13 +973p4dc01,Torso Castle Royal Knights Lion Head on Red/White Shield Print / White Arms / Yellow Hands,13 +973p4dc02,Torso Castle Royal Knights Lion Head on Red/White Shield Print / Blue Arms / Yellow Hands,13 +973p4dc03,Torso Castle Royal Knights Lion Head on Red/White Shield Print / Black Arms / Red Hands,13 +973p4e,Torso Castle Royal Knights Lion Head and Necklace Print,13 +973p4ec01,Torso Castle Royal Knights Lion Head and Necklace Print / White Arms / Yellow Hands,13 +973p4f,Minifig Torso with Lion Gold on Blue Shield Print,13 +973p4g,"Minifig Torso with Castle Female Armor Print breastplate, plate armor, plate mail, silver, gold, chrome,warrior, shield-maiden, princess, Knights Kingdom, Joan of Arc,Princess Storm",13 +973p4h,"Minifig Torso with Castle Bodice and Cloak Print leonara,blacksmith's wife",13 +973p4j,Minifig Torso with Crown on DarkBlue/MediumBlue Quarters Print,13 +973p4l,Minifig Torso w/ Gold Lion and Belt on Red/White Quart. Print,13 +973p4n,Torso Castle Crusaders Blue Corset and Necklace Print (Maiden),13 +973p4nc01,Torso Castle Crusaders Blue Corset and Necklace Print (Maiden) / White Arms / Yellow Hands,13 +973p4q,Torso Castle Forestman Green Corset and Necklace Original Bright Print (Maiden),13 +973p4qc01,Torso Castle Forestman Green Corset and Necklace Original Bright Print (Maiden) / Green Arms / Yellow Hands,13 +973p4r,"Minifig Torso with Tri-Colored Shield Large Print Castle, LEGOLAND Castle, Guard, Tournament",13 +973p4s,Minifig Torso with Tri-Colored Shield and Gold Trim Print Tri-Colored Shield Vest castle Suzerain Goldcrest,13 +973p4t,"Minifig Torso with Red/Peach Quarters Shield Print castle,legoland castle,knight,tournament",13 +973p4u,"Minifig Torso with Maroon/Red Quarters Shield Print Castle, LEGOLAND Castle, Knight, Tournament",13 +973p4v,Minifig Torso with Fantasy Era Peasant Rope Belt Print,13 +973p4w,Minifig Torso with Corset with Reddish Brown Laces Print,13 +973p4x,Minifig Torso with Dk Green Corset with Leather Belt Print,13 +973p50,Torso Castle Forestman Black Collar Print,13 +973p50c01,Torso Castle Forestman Black Collar Print / Black Arms / Yellow Hands,13 +973p51,Torso Space Blacktron II Print,13 +973p51c01,Torso Space Blacktron II Print / Black Arms / Black Hands,13 +973p52,Torso Space Blacktron I Print,13 +973p52c01,Torso Space Blacktron I Print / Black Arms / Black Hands,13 +973p54,"Minifig Torso with UFO Alien Orange and Silver Print u.f.o., Space,four pips",13 +973p55,Minifig Torso with Explorien Logo Print exploriens,13 +973p60,Torso Shell Logo Large Print,13 +973p60c01,Torso Shell Logo Large Print / White Arms / Yellow Hands,13 +973p61,Torso Space Ice Planet Gold Print,13 +973p61c01,Torso Space Ice Planet Gold Print / White Arms / Blue Hands,13 +973p62,Torso Space Ice Planet Silver Print,13 +973p62c01,Torso Space Ice Planet Silver Print / White Arms / Blue Hands,13 +973p63,Torso Space Robot Print,13 +973p63c01,Torso Space Robot Print (Spyrius) / Black Arms / Red Hands,13 +973p63c02,Torso Space Robot Print (Exploriens) / White Arms / Black Hands,13 +973p64,Torso Space Unitron Print,13 +973p64c01,Torso Space Unitron Print / Light Gray Arms / Blue Hands,13 +973p66,Torso Space Spyrius Print,13 +973p66c01,Torso Space Spyrius Print / Black Arms / Red Hands,13 +973p68,Torso Space MTron Logo Print,13 +973p68c01,Torso Space MTron Logo Print / White Arms / Black Hands,13 +973p69,Torso Space Police with Radio Print,13 +973p69c01,Torso Space Police with Radio Print / Green Arms / Black Hands,13 +973p6a,Minifig Torso with Space Police II Chief Print,13 +973p6b,Torso Space Futuron Black Print,13 +973p6bc01,Torso Space Futuron Black Print / Black Arms / White Hands,13 +973p6bc02,Torso Space Futuron Black Print / Black Arms / Black Hands,13 +973p6c,Torso Space Futuron Blue Print,13 +973p6cc01,Torso Space Futuron Blue Print / Blue Arms / Blue Hands,13 +973p6d,Torso Space Futuron Red Print,13 +973p6dc01,Torso Space Futuron Red Print / Red Arms / Red Hands,13 +973p6e,Torso Space Futuron Yellow Print,13 +973p6ec01,Torso Space Futuron Yellow Print / Yellow Arms / Yellow Hands,13 +973p6f,Minifig Torso Space Astrobot Print,13 +973p6v,Minifig Torso UFO Alien Yellow Insignia and 3 Blue Bars Print,13 +973p6w,Minifig Torso UFO Alien Circuitry with Red Lever Print,13 +973p6x,Minifig Torso UFO Silver and Gold Circuitry Print,13 +973p70,Torso Bomber Jacket and Black T-Shirt Print,13 +973p70c01,Torso Bomber Jacket and Black T-Shirt Print / Brown Arms / Yellow Hands,13 +973p70c02,Torso Bomber Jacket and Black T-Shirt Print / Reddish Brown Arms / Yellow Hands,13 +973p71,Torso Necklace Red and Blue Undershirt Print,13 +973p71c01,Torso Red Necklace and Blue Undershirt Print / White Arms / Yellow Hands,13 +973p72,Torso Necklace Gold and Yellow Undershirt Print,13 +973p72c01,Torso Necklace Gold and Yellow Undershirt Print / White Arms / Yellow Hands,13 +973p73,Torso Town Vest with Patch Pockets over White Shirt Print,13 +973p73c01,Torso Town Vest with Patch Pockets over White Shirt Print / White Arms / Yellow Hands,13 +973p74,"Minifig Torso with Vest, Patch Pockets, and Police Badge Print town,police",13 +973p75,Minifig Torso with Zipper Jacket and Police Logo Print,13 +973p76,"Minifig Torso with Jacket, Tie, and Police Badge Print star",13 +973p77,"Minifig Torso with Modern Firefighter Type 1 Print Town, fireman, fire logo badge, zipper, slash pocket, collar, red belt yellow buckle",13 +973p78,"Minifig Torso with Modern Firefighter Type 2 Print Town, fireman, fire logo badge, zipper, two yellow pins, collar red belt yellow buckle, pips",13 +973p79,Minifig Torso with Lifebelt Logo and ID Card Print,13 +973p7a,Torso Arctic Logo Large and 'A1' Print,13 +973p7ac01,Torso Large Arctic Logo and 'A1' Print / Blue Arms / Black Hands,13 +973p7b,Torso Arctic Logo Large and 'A2' Print,13 +973p7bc01,Torso Arctic Logo Large and 'A2' Print / Green Arms / Black Hands,13 +973p7f,Minifig Torso with 18 and Blue-Yellow Stripes Racing Print,13 +973p7g,Minifig Torso with Plain Shirt with Pockets Print,13 +973p7h,"Minifig Torso with Jacket, Pink Shirt, Ring on Necklace Print",13 +973p7k,"Minifig Torso with Jail Stripes and ""23768"" Print",13 +973p7m,"Minifig Torso w/ Shirt, Badge, Blue Tie, ""POLICE"" Back Print",13 +973p7n,"Minifig Torso w/ Leather Jacket, Badge, ""POLICE"" Back Print",13 +973p7q,"Minifig Torso with Jacket, Pocket, Badge, Blue Tie Print",13 +973p7s,"Minifig Torso with Prisoner and ""50380"" Print",13 +973p7t,Minifig Torso with Jacket over Shirt and Prison Stripes Print,13 +973p7u,Minifig Torso with Leather Jacket and Badge Print,13 +973p7v,"Minifig Torso with Neon Yellow Stripes, Radio and Badge Print",13 +973p7w,Minifig Torso with V-Neck Shirt and Blue Overalls Print,13 +973p7x,Minifig Torso with White Envelope and Zipper Print,13 +973p7y,Minifig Torso Female with LtPurple Scarf and Gray Belt Print,13 +973p7z,Minifig Torso with Jacket over Lt Blue Button Down Shirt Print,13 +973p80,Minifig Torso with #1 Racing Print,13 +973p81,Minifig Torso with Octan "OIL" Badge Print,13 +973p82,Minifig Torso with Red Vest and Train Logo Print,13 +973p83,Torso Train Suit and Tie Print,13 +973p83c01,Torso Train Suit and Tie Print / Yellow Arms / Yellow Hands,13 +973p84,Minifig Torso with Four Button Suit and Train Logo Print conductor,13 +973p85,"Minifig Torso with Airplane Logo and ""AIR"" Badge Print",13 +973p86,"Minifig Torso with Stethoscope and Pocket with Pens Print doctor,medic,Physician, Hospital",13 +973p8a,Torso Extreme Team Jacket with Red X Logo on Back Print,13 +973p8ac01,Torso Extreme Team Jacket with Red X Logo on Back Print / Green Arms / Black Hands,13 +973p8ac02,Torso Extreme Team Jacket with Red X Logo on Back Print / Red Arms / Black Hands,13 +973p8ac03,Torso Extreme Team Jacket with Red X Logo on Back Print / White Arms / Black Hands,13 +973p8ac04,Torso Extreme Team Jacket with Red X Logo on Back Print / Blue Arms / Black Hands,13 +973p8b,"Torso Res-Q Orange Stripes, Pockets, Back Logo Print",13 +973p8bc01,"Torso Res-Q Orange Stripes, Pockets, Back Logo Print / White Arms / Black Hands",13 +973p8e,"Minifig Torso with Space Port Logo, Hose and 'C1' Print 99, C1, Space Port, Spacesuit, Town",13 +973p8f,Minifig Torso with Telephone Print,13 +973p8g,Minifig Torso with Blue Shirt and Safety Stripes Print,13 +973p8h,"Minifig Torso with Suit with Pocket, Red Tie, Train Print",13 +973p90,Torso Space Classic Moon Print,13 +973p90c02,Torso Space Classic Moon Print / Red Arms / Red Hands,13 +973p90c03,Torso Space Classic Moon Print / Black Arms / Black Hands,13 +973p90c04,Torso Space Classic Moon Print / Yellow Arms / Yellow Hands,13 +973p90c05,Torso Space Classic Moon Print / White Arms / White Hands,13 +973pa1,Torso Adventurers Desert Suspenders and Red Bow Tie Print,13 +973pa1c01,Torso Adventurers Desert Suspenders and Red Bow Tie Print / White Arms / Yellow Hands,13 +973pa2,Torso Adventurers Desert Pharaoh Breastplate Print (Hotep),13 +973pa2c01,Torso Adventurers Desert Pharaoh Breastplate Print (Hotep) / Black Arms / Red Hands,13 +973pa3,"Minifig - Torso with Safari Shirt, Gun, and Red Bandana Print",13 +973pa4,"Torso Adventurers Jungle Suit, Brown Vest, Black Tie Print",13 +973pa4c01,"Torso Adventurers Jungle Suit, Brown Vest, Black Tie Print / White Arms / Black Hands",13 +973pa5,"Torso Bomber Jacket, Belt, & Black Shirt Print",13 +973pa5c01,"Torso Bomber Jacket, Belt, & Black Shirt Print / Brown Arms / Yellow Hands",13 +973pa6,"Torso Adventurers Desert Safari Shirt, Blue Neck, Red Bandana, Compass Print",13 +973pa6c01,"Torso Adventurers Desert Safari Shirt, Blue Neck, Red Bandana, Compass Print / Tan Arms / Yellow Hands",13 +973pa7,"Torso Adventurers Desert Safari Shirt, Black Neck, Holster Print",13 +973pa7c01,"Torso Adventurers Desert Safari Shirt, Black Neck, Holster Print / Tan Arms / Black Hand Right / Dark Gray Hook Left",13 +973pa8,"Torso Adventurers Jungle Jacket, White Shirt, and Necklace Print",13 +973pa8c01,"Torso Adventurers Jungle Jacket, White Shirt, and Necklace Print / Green Arms / Yellow Hands",13 +973pa9,Minifig Torso with Leather Jacket and Light Gray Shirt Print,13 +973paa,"Torso Adventurers Jungle Two Pockets, Two Guns in Belt Print",13 +973paac01,"Torso Adventurers Jungle Two Pockets, Two Guns in Belt Print / Dark Gray Arms / Yellow Hands",13 +973pab,"Torso Adventurers Jungle Tank Top, Stains, Wrench, Anchor Tattoo Print",13 +973pabc01,"Torso Adventurers Jungle Tank Top, Stains, Wrench, Anchor Tattoo Print / Yellow Arms / Yellow Hands",13 +973pac,"Torso Adventurers Jungle Necklace, Feathers, Navel Print (Achu)",13 +973pacc01,"Torso Adventurers Jungle Necklace, Feathers, Navel Print (Achu) / Yellow Arms / Red Hands",13 +973pad,"Minifig Torso with Vest, Slingshot in Belt Print",13 +973pae,"Minifig Torso with Female White Shirt, Open Jacket Print",13 +973paf,"Minifig Torso with Red and Gray Shirt, Pot Belly, Jacket Print",13 +973pah,Minifig Torso with Rock Raiders Bandit Print,13 +973paj,"Minifig Torso with Rock Raiders Jet Print Hover Scout, Pilot, Granite Grrl",13 +973pak,Minifig Torso with Rock Raiders Docs Print,13 +973pam,Minifig Torso with Rock Raiders Axle Print,13 +973paq,Minifig Torso with Two Chinese Letters Yellow Stripe Print jing lee,13 +973par,"Minifig Torso with Blue Vest, Collar and Star Print",13 +973pas,"Minifig Torso with Blue Vest, Collar and Test Tube Print",13 +973pat,"Minifig Torso with Alpha Team Logo, Buttons, Collar, and Munitions Harness Print dash",13 +973pau,"Minifig Torso with Blue Vest, Tools, Shirt and Bomb Print",13 +973pav,Minifig Torso with Silver Armor Front and Back and Drill Print,13 +973pay,"Minifig Torso with Alpha Team Logo, Gray Vest, and Tools Print cam",13 +973paz,"Minifig Torso with Alpha Team Logo, Orange Stripe, and Ropes Print flex",13 +973pb0,Minifig Torso with Grey and Gold Batman Print,13 +973pb0002,Torso SW Tusken Raider Print,13 +973pb0002c01,Torso SW Tusken Raider Print / Tan Arms / Dark Gray Hands,13 +973pb0003c01,Torso Space Exploriens Logo Print / Dark Gray Arms / Black Hands,13 +973pb0004,Torso Space Exploriens Logo with Radio Print,13 +973pb0004c01,Torso Space Exploriens Logo with Radio Print / Dark Gray Arms / Black Hands,13 +973pb0005c01,Torso Coca-Cola Logo with V-neck Shirt and Red Stripe Print / White Arms / Yellow Hands,13 +973pb0006,Torso Town Trucker Logo Print,13 +973pb0006c01,Torso Town Trucker Logo Print / Yellow Arms / Yellow Hands,13 +973pb0007c01,Torso Coca-Cola Logo with Black Stripe Print / Flat Silver Arms / Yellow Hands,13 +973pb0007c02,Torso Coca-Cola Logo with Black Stripe Print / Pearl Light Gold Arms / Yellow Hands,13 +973pb0008c01,"Torso Train Logo, Blue Vest w/ Tie, Watch Fob Print (Conductor Charlie) / White Arms / Yellow Hands",13 +973pb0009,Torso Train Blue Striped Overalls Print,13 +973pb0009c01,Torso Train Blue Striped Overalls Print / White Arms / Dark Gray Hands,13 +973pb0010,"Torso Town Construction Zipper Jacket, Blue Shirt, Safety Stripes Print",13 +973pb0010c01,"Torso Town Construction Zipper Jacket, Blue Shirt, Safety Stripes Print / Orange Arms / Dark Gray Hands",13 +973pb0011,Torso Harry Potter Cardigan Sweater over Blue Striped Shirt Print,13 +973pb0011c01,Torso Harry Potter Cardigan Sweater over Blue Striped Shirt Print / Brown Arms / Yellow Hands,13 +973pb0012,"Torso Rock Raiders Orange Patch, 2 Hoses Print (Chief)",13 +973pb0012c01,"Torso Rock Raiders Orange Patch, 2 Hoses Print (Chief) / Dk Gray Arm & Yellow Hand Right / Dk Turquoise Arm & Hand Left",13 +973pb0013c01,Torso Racers Race Alligator Green Print / Green Arms / Black Hands,13 +973pb0014c01,"Torso Town Construction Blue Overalls, Shirt and Silver Print Belt / Orange Arms / Dark Gray Hands",13 +973pb0017c01,Torso Paradisa Palm Tree Print / White Arms / Yellow Hands,13 +973pb0018c01,Torso Paradisa Pink Shirt Tied at Bottom with Blue Flowers Print / Yellow Arms / Yellow Hands,13 +973pb0019c01,Torso Pirate Imperial Armada Brown belt and Blue Print / Red Arms / Yellow Hands,13 +973pb0020,"Torso Aquazone Aquaraider Gold & Silver Straps, Control Box Print",13 +973pb0020c01,"Torso Aquazone Aquaraider Gold & Silver Straps, Control Box Print / Black Arms / Black Hand Right / Trans-Neon Green Hook Left",13 +973pb0021c01,Torso Aquazone Aquaraider Dark Turquoise and Gold Crossed Belts Print / Black Arms / Black Hands,13 +973pb0022c01,Torso Racers Race Shark Blue Print / Blue Arms / Black Hands,13 +973pb0023c01,Torso Racers Race Scorpion Red Print / Red Arms / Black Hands,13 +973pb0024,Torso Octan Logo and 3 Stars and Zipper Print,13 +973pb0024c01,Torso Octan Logo and 3 Stars and Zipper Print / White Arms / Yellow Hands,13 +973pb0025ac01,Torso TV Globe Big Print - Lego Soccer Logo on Back / White Arms / Yellow Hands,13 +973pb0025c01,Torso TV Globe Big Print / White Arms / Yellow Hands,13 +973pb0026c01,"Torso Space Port Logo, Tube and Two Red Buttons Print / White Arms / White Hands",13 +973pb0027c01,"Torso Space Port Logo, Zipper, ID and Police Star Print / Black Arms / Yellow Hands",13 +973pb0028c01,Torso Fire Uniform Four Button and Gray Belt Print (Sticker) / Black Arms / Yellow Hands,13 +973pb0029c01,Torso Studios Patchwork Jacket with Blue T-shirt Print (Frankenstein) / Brown Arms / Sand Green Hands,13 +973pb0031c01,"Torso Airplane Crew Female, Pocket, Pen, Scarf and Logo Print / Blue Arms / Yellow Hands",13 +973pb0034c01,Torso Exxon Logo Print / Red Arms / Yellow Hands,13 +973pb0035,"Torso Post Office Worker, Suit and Horn Logo Print",13 +973pb0035c01,"Torso Post Office Worker, Suit and Horn Logo Print / Red Arms / Yellow Hands",13 +973pb0037,Torso Space Insectoids Silver X on Green Verniers Print,13 +973pb0037c01,Torso Space Insectoids Silver X on Green Verniers Print / Green Arms / Black Hands,13 +973pb0038c01,Torso Paradisa White Lace Collar Print / Yellow Arms / Yellow Hands,13 +973pb0039c01,Torso Paradisa Horse Face in Horseshoe Print / Light Gray Arms / Yellow Hands,13 +973pb0040,"Torso Rescue Coast Guard Logo, ID Badge, Red Collar, Zipper Print",13 +973pb0040c01,"Torso Rescue Coast Guard Logo, ID Badge, Red Collar, Zipper Print / White Arms / Yellow Hands",13 +973pb0041,"Torso Rescue Coast Guard Logo, Red Tie, Suit Buttons Print",13 +973pb0041c01,"Torso Rescue Coast Guard Logo, Red Tie, Suit Buttons Print / Light Gray Arms / Yellow Hands",13 +973pb0042c01,"Torso Adventurers Desert White Shirt, Jacket, Belt with Pouches Print / Light Gray Arms / Yellow Hands",13 +973pb0043c01,Torso Adventurers Desert Red and Silver Striped Undershirt and Navel Print / Dark Gray Arms / Yellow Hands,13 +973pb0044c01,Torso Rock Raiders Gray Straps and Pack Print (Jet) / Blue Arms / Yellow Hands,13 +973pb0046,"Torso Aquazone Stingray Dark Turquoise, Black, and Gold Print 3",13 +973pb0046c01,"Torso Aquazone Stingray Dark Turquoise, Black, and Gold Print 3 / Dark Gray Arms / Red Hands",13 +973pb0047c01,Torso Aquazone Hydronaut Silver Diving Print 1 / Blue Arms / Black Hands,13 +973pb0048,"Torso Aquazone Stingray Dark Turquoise, Black, and Gold Print 1",13 +973pb0048c01,"Torso Aquazone Stingray Dark Turquoise, Black, and Gold Print 1 / Dark Gray Arms / Red Hands",13 +973pb0049c01,"Torso Boat Captain, Suit Double Breasted and Gold Anchor Logo Print / Black Arms / Yellow Hands",13 +973pb0050,Torso Nesquik Bunny Large 'N' Print,13 +973pb0050c01,Torso Nesquik Bunny Large 'N' Print / Yellow Arms / Brown Hands,13 +973pb0051,Torso Racers Race Tiger Print,13 +973pb0051c01,Torso Racers Race Tiger Print / Yellow Arms / Black Hands,13 +973pb0052,"Torso Alpha Team Logo, Orange Stripe, Shoulder Ropes Print",13 +973pb0052c01,"Torso Alpha Team Logo, Orange Stripe, Shoulder Ropes Print / Black Arm Left / Orange Arm Right / Light Gray Hands",13 +973pb0053,"Torso Alpha Team Logo on Necklace, Dk. Gray Vest, Tools Print",13 +973pb0053c01,"Torso Alpha Team Logo on Necklace, Dk. Gray Vest, Tools Print / Yellow Arms / Yellow Hands",13 +973pb0055c01,Torso Jail Stripes with Med Blue Overalls Print / White Arms / Black Hands,13 +973pb0056c01,Torso Jail Stripes with Number 23768 Print / White Arms / White Hand Right / Blue Hand Left,13 +973pb0057,Torso Xtreme Stunts Pizza with Slice Print (Pepper),13 +973pb0057c01,Torso Xtreme Stunts Pizza with Slice Print (Pepper) / Blue Arms / Yellow Hands,13 +973pb0058,Torso Xtreme Stunts Flowers on Tube Top w/ String Print (Sky),13 +973pb0058c01,Torso Xtreme Stunts Flowers on Tube Top w/ String Print (Sky) / Dark Red Arms / Yellow Hands,13 +973pb0059c01,Torso Space Port Logo and Radio in Pocket Print / Red Arms / Yellow Hands,13 +973pb0060,"Torso Harry Potter Pinstriped Suit Jacket, Vest Silver, Blue Tie Print",13 +973pb0060a,"Torso Harry Potter Pinstriped Suit Jacket, Vest Light Bluish Gray, Blue Tie Print",13 +973pb0060ac01,"Torso Harry Potter Pinstriped Suit Jacket, Vest Light Bluish Gray, Blue Tie Print / Dark Bluish Gray Arms / Light Flesh Hands",13 +973pb0060c01,"Torso Harry Potter Pinstriped Suit Jacket, Vest Silver, Blue Tie Print / Dark Gray Arms / Yellow Hands",13 +973pb0061c01,Torso Paradisa Red Halter Top Print / Yellow Arms / Yellow Hands,13 +973pb0062,Torso Pirate Islanders with Feather Necklace Print,13 +973pb0062c01,Torso Pirate Islanders with Feather Necklace Print / Yellow Arms / Yellow Hands,13 +973pb0063,Torso Pirate Islanders with Bone Necklace Print,13 +973pb0063c01,Torso Pirate Islanders with Bone Necklace Print / Yellow Arms / Yellow Hands,13 +973pb0064,Torso Pirate Islanders with Red Female Neckline Print,13 +973pb0064c01,Torso Pirate Islanders with Red Female Neckline Print / Yellow Arms / Yellow Hands,13 +973pb0066c01,Torso Castle Fright Knights Fleur de Lis Print / Red Arms / Yellow Hands,13 +973pb0068c01,Torso SW Gungan Gold Trim Print / Tan Arms / Tan Hands,13 +973pb0069,"Torso Town Blue V-Neck, Pockets and Buttons Print",13 +973pb0069c01,"Torso Town Blue V-Neck, Pockets and Buttons Print / Blue Arms / Yellow Hands",13 +973pb0070,Torso Rock Raiders Two Pouches on Chest Print (Docs),13 +973pb0070c01,Torso Rock Raiders Two Pouches on Chest Print (Docs) / Dark Gray Arms / Yellow Hands,13 +973pb0071c01,"Torso Alpha Team Logo, Utility Belt and Pouches Print / Black Arms / Black Hands",13 +973pb0071c02,"Torso Alpha Team Logo, Utility Belt and Pouches Print / Dark Blue Arms / Black Hands",13 +973pb0072,Torso Racers Number 18 and Yellow Stripe Print,13 +973pb0072c01,Torso Racers Number 18 and Yellow Stripe Print / Yellow Arms / Dark Gray Hands,13 +973pb0074,Torso Castle Dragon Knights Dragon Face breathing Fire Print,13 +973pb0074c02,Torso Castle Dragon Knights Dragon Face breathing Fire Print / Black Arm Left / Blue Arm Right / Yellow Hands,13 +973pb0075,Torso Aquazone Aquashark Blue Shark with Red X Print,13 +973pb0075c01,Torso Aquazone Aquashark Blue Shark with Red X Print / Black Arms / Black Hands,13 +973pb0075c02,Torso Aquazone Aquashark Blue Shark with Red X Print / Black Arms / Black Hand Right / Trans-Neon Green Hook Left,13 +973pb0076,Torso Space RoboForce Red and Gold Circuitry Print,13 +973pb0076c01,Torso Space RoboForce Gold Circuitry Print / Light Gray Arms / Red Hands,13 +973pb0077c01,Torso Space UFO Yellow Insignia & 3 Blue Bars Print / Blue Arms / Black Hands,13 +973pb0078c01,Torso Space UFO Circuitry with Red Lever Print / Red Arms / Black Hands,13 +973pb0079c01,"Torso Police Leather Jacket, White Badge, Curved Zipper Print / Black Arms / Yellow Hands",13 +973pb0080c01,Torso Space Insectoids Blue Diamond under Circuitry Print / Dark Gray Arms / Blue Hands,13 +973pb0081c01,"Torso Space Police with Zip, SP and Star Print / Green Arms / Black Hands",13 +973pb0082,"Torso Space Insectoids Silver Logo on Black Panels, 2 Silver Panels Print",13 +973pb0082c01,"Torso Space Insectoids Silver Logo on Black Panels, 2 Silver Panels Print / Green Arms / Black Hands",13 +973pb0083,Torso Soccer Goalie Studded Armor on Front and No. 1 on Back Print,13 +973pb0083c01,Torso Soccer Goalie Studded Armor on Front and No. 1 on Back Print / Dark Gray Arms / Black Hands,13 +973pb0083c02,Torso Soccer Goalie Studded Armor on Front and No. 1 on Back Print / Blue Arms / Black Hands,13 +973pb0085c01,Torso Studios Plaid Button Shirt Ripped Print (Werewolf) / Dark Blue Arms / Dark Gray Hands,13 +973pb0087c01,Torso SW Princess Leia Slave Print / Yellow Arms / Yellow Hands,13 +973pb0088,Torso Space RoboForce Gold Circuitry Print,13 +973pb0088c01,Torso Space RoboForce Gold Circuitry Print / Light Gray Arms / Yellow Hands,13 +973pb0089,Torso Shirt 3 Flowers over Yellow and Silver Stripe Print (Snap),13 +973pb0090,"Torso Rock Raiders Shirt, Green Vest, Wrench and Pockets Print (Sparks)",13 +973pb0090c01,"Torso Rock Raiders Shirt, Green Vest, Wrench and Pockets Print (Sparks) / Orange Arms / Yellow Hands",13 +973pb0091c01,Torso Police Uniform with White Badge and Pocket Print / Black Arms / Yellow Hands,13 +973pb0092c01,Torso Castle Dark Forestman Studded Shirt and Brown Crossbelt Print / Blue Arms / Yellow Hands,13 +973pb0093c01,Torso Castle Dark Forestman Tie Shirt and Black Crossbelt Print / Yellow Arms / Yellow Hands,13 +973pb0094c01,Torso Harry Potter Dobby Print / Tan Arms / Tan Hands,13 +973pb0095c01,"Torso Race Driver with Race Logo, 1 and Racing Print / Red Arms / Yellow Hands",13 +973pb0096c01,"Torso Race Driver with Team, 5 and Oil Print / Blue Arms / Yellow Hands",13 +973pb0097c01,"Torso Airplane Crew Male, Pockets, ID and Logo Print / Blue Arms / Yellow Hands",13 +973pb0099c01,"Torso Fire Flame Badge, Red Belt, Zipper and Collar Print / Black Arms / Yellow Hands",13 +973pb0100,Torso Zipper Jacket and 3 Pockets Print,13 +973pb0101,Torso Octan Logo and Race Team Print,13 +973pb0101c01,Torso Octan Logo and Race Team Print / White Arms / Yellow Hands,13 +973pb0102c01,Torso Arctic Logo Small and Polar Bear Print / Red Arms / Black Hands,13 +973pb0103,Torso Arctic Logo Small and EMT Star of Life Print,13 +973pb0103c01,Torso Arctic Logo Small and EMT Star of Life Print / Red Arms / Black Hands,13 +973pb0104c01,Torso Soccer Vertical Striped Red/Blue and No. 11 Back Print / Red Arms / Yellow Hands,13 +973pb0105,Torso Castle Dragon Knights Dragon Standing Print,13 +973pb0105c02,Torso Castle Dragon Knights Dragon Standing Print / Blue Arms / Yellow Hands,13 +973pb0106b,"Torso Octan Logo and OIL Print, Logo Color Reversed",13 +973pb0106bc01,"Torso Octan Logo and OIL Print, Logo Color Reversed / Blue Arms / Yellow Hands",13 +973pb0107,Torso Alpha Team Minion Red/Black Shirt Print,13 +973pb0107c01,Torso Alpha Team Minion Red/Black Shirt Print / Black Arm Left / Red Arm Right / Red Hands,13 +973pb0108,Torso Alpha Team Minion Commander Red/Black Shirt w/ Medal Print,13 +973pb0108c01,Torso Alpha Team Minion Commander Red/Black Shirt w/ Medal Print / Black Arm Left / Red Arm Right / Red Hands,13 +973pb0110c01,Torso Harry Potter Blue Box Striped Button Shirt Print / Red Arms / Yellow Hands,13 +973pb0111c01,"Torso Harry Potter Merman, Gray Print with Muscle Outlines Print / Dark Green Arms / Light Flesh Hands",13 +973pb0112c01,Torso Spider-Man Costume 2 Print / Red Arms / White Hands,13 +973pb0113c01,Torso Wrench Logo on Red Overalls Print / White Arms / Yellow Hands,13 +973pb0114c01,Torso Wrench Logo on Zippered Jacket with Truck Print / Red Arms / Yellow Hands,13 +973pb0115,Torso Aquazone Hydronaut Silver Diving Print 2,13 +973pb0115c01,Torso Aquazone Hydronaut Silver Diving Print 2 / Black Arms / Red Hands,13 +973pb0116c01,Torso Aquazone Hydronaut Silver Diving Print 3 / Blue Arms / Black Hands,13 +973pb0117,Torso SW Armor Clone Trooper Print,13 +973pb0117d,Torso SW Armor Clone Trooper with Dark Red Mark Print,13 +973pb0117dc01,Torso SW Armor Clone Trooper with Dark Red Mark Print / White Arms / Black Hands,13 +973pb0117gc01,Torso SW Armor Clone Trooper with Green Stripes Print / White Arms / Black Hands,13 +973pb0117r,Torso SW Armor Clone Trooper with Red Mark 'Shock Trooper' Print,13 +973pb0118c01,Torso Harry Potter Goblin 1 Print / Black Arms / Tan Hands,13 +973pb0119c01,Torso Harry Potter Goblin 2 Print / Dark Red Arms / Tan Hands,13 +973pb0120c01,"Torso SW Layered Shirt, Brown Belt Print (Mace Windu) / Dark Bluish Gray Arms / Reddish Brown Hands",13 +973pb0121,"Torso Alpha Team Logo, Utility Belt and Gauge, 2 Spots Print",13 +973pb0121c01,"Torso Alpha Team Logo, Utility Belt w/ Gauge, Divided Blue Stripe Print (Set 4790) / Dk Blue Arm Left / Blue Arm Right / Black Hands",13 +973pb0122c01,Torso Harry Potter Durmstrang Stag Coat of Arms Print / Light Flesh Arms / Light Flesh Hands,13 +973pb0123c01,Torso Harry Potter Dumbledore Dress Robe with Braid Pattern / Sand Blue Arms / Light Flesh Hands,13 +973pb0124,Torso Soccer Vertical Striped Red/Blue and No. 18 on Back Print,13 +973pb0124c01,Torso Soccer Vertical Striped Red/Blue and No. 18 on Back Print / Red Arms / Yellow Hands,13 +973pb0125c01,Torso Soccer Vertical Striped Red/Blue and No. 4 Back Print / Red Arms / Yellow Hands,13 +973pb0126,Torso Soccer Vertical Striped Red/Blue and No. 9 Back Print,13 +973pb0126c01,Torso Soccer Vertical Striped Red/Blue and No. 9 Back Print / Red Arms / Yellow Hands,13 +973pb0127c01,"Torso Harry Potter Four Silver Buckles and Straps, Dark Red Belt Pattern / Light Bluish Gray Arms / Light Flesh Hands",13 +973pb0128c01,Torso Horizontal Blue/White Stripes Print / Yellow Arms / Yellow Hands,13 +973pb0129c01,Torso Harry Potter McGonagall Green and Gold Trim Print / Green Arms / Yellow Hands,13 +973pb0130,"Torso Racers Jacket with Straps, Green & White Stripes Print",13 +973pb0130c01,"Torso Racers Jacket with Straps, Green & White Stripes Print / Red Arms / Black Hands",13 +973pb0133,"Torso Indiana Jones Open Collar Shirt, Ammo Belt & Suspenders Print",13 +973pb0152c01,Torso Castle Guard Lion Standing Yellow and 2 Red Hearts Print (Sticker) - 1592 / Light Gray Arms / Yellow Hands,13 +973pb0160,Torso Harry Potter Gilderoy Tan Vest Print,13 +973pb0160c01,Torso Harry Potter Gilderoy Tan Vest Print / Sand Red Arms / Yellow Hands,13 +973pb0161,Torso Harry Potter Gilderoy Green Vest Print,13 +973pb0161c01,Torso Harry Potter Gilderoy Green Vest Print / Green Arms / Yellow Hands,13 +973pb0162,Torso Harry Potter Quidditch Gryffindor Print,13 +973pb0162c01,Torso Harry Potter Quidditch Gryffindor Print / Dark Red Arms / Yellow Hands,13 +973pb0163c01,Torso Harry Potter Quidditch Slytherin Print / Green Arms / Yellow Hands,27 +973pb0164c01,Torso Harry Potter Suit and Tie with Hogwarts Shield Print / Black Arms / Yellow Hands,13 +973pb0165,Torso Soccer Goalie Red Hexagons and No. 1 Front and Back Print,13 +973pb0165c01,Torso Soccer Goalie Red Hexagons and No. 1 Front and Back Print / Black Arms / Black Hands,13 +973pb0166,Torso Soccer Goalie Gray Hexagons and No. 1 Front and Back Print,13 +973pb0166c01,Torso Soccer Goalie Gray Hexagons and No. 1 Front and Back Print / Black Arms / Black Hands,13 +973pb0167,Torso Soccer Black Fading Stripes and No. 2 Front and Back Print,13 +973pb0167c01,Torso Soccer Black Fading Stripes and No. 2 Front and Back Print / Red Arms / Yellow Hands,13 +973pb0168,Torso Soccer Blue Chevron and No. 2 Front and Back Print,13 +973pb0168c01,Torso Soccer Blue Chevron and No. 2 Front and Back Print / White Arms / Yellow Hands,13 +973pb0169c01,Torso Soccer Black Fading Stripes and No. 4 Front and Back Print / Red Arms / Yellow Hands,13 +973pb0170,Torso Soccer Blue Chevron and No. 4 Front and Back Print,13 +973pb0170c01,Torso Soccer Blue Chevron and No. 4 Front and Back Print / White Arms / Yellow Hands,13 +973pb0171,Torso Soccer Black Fading Stripes and No. 9 Front and Back Print,13 +973pb0171c01,Torso Soccer Black Fading Stripes and No. 9 Front and Back Print / Red Arms / Yellow Hands,13 +973pb0172,Torso Soccer Blue Chevron and No. 9 Front and Back Print,13 +973pb0172c01,Torso Soccer Blue Chevron and No. 9 Front and Back Print / White Arms / Yellow Hands,13 +973pb0173,Torso Soccer Black Fading Stripes and No. 10 Front and Back Print,13 +973pb0173c01,Torso Soccer Black Fading Stripes and No. 10 Front and Back Print / Red Arms / Yellow Hands,13 +973pb0174,Torso Soccer Blue Chevron and No. 10 Front and Back Print,13 +973pb0174c01,Torso Soccer Blue Chevron and No. 10 Front and Back Print / White Arms / Yellow Hands,13 +973pb0175,Torso Soccer Black Fading Stripes and No. 11 Front and Back Print,13 +973pb0175c01,Torso Soccer Black Fading Stripes and No. 11 Front and Back Print / Red Arms / Yellow Hands,13 +973pb0176,Torso Soccer Blue Chevron and No. 11 Front and Back Print,13 +973pb0176c01,Torso Soccer Blue Chevron and No. 11 Front and Back Print / White Arms / Yellow Hands,13 +973pb0177,"Torso Dino Vest with Dark Red Harness, Canteen, White Rope Print",13 +973pb0177c01,"Torso Dino Vest with Dark Red Harness, Canteen, White Rope Print / Black Arms / Dark Bluish Gray Hands",13 +973pb0178,"Torso Dino Vest with Dark Red Harness, 4 Bullets Print",13 +973pb0178c01,"Torso Dino Vest with Dark Red Harness, 4 Bullets Print / Black Arms / Dark Bluish Gray Hands",13 +973pb0179c01,"Torso Dino Vest with Dark Red Harness, 3 Bullets and Knife Print / Yellow Arms / Black Hands",13 +973pb0180,Torso Dino Vest with Red Harness and Silver Binoculars Print,13 +973pb0180c01,Torso Dino Vest with Red Harness and Silver Binoculars Print / Black Arms / Dark Bluish Gray Hands,13 +973pb0181c01,Torso Dino Vest with Lime Handle Tools and Red Pocket Book Print / Black Arms / Dark Bluish Gray Hands,13 +973pb0189,Torso Exo-Force Blue Panels with Black Edges with Dark Gray Badge Print,13 +973pb0190c01,Torso Spider-Man Costume 1 Blue Print / Blue Arms / Red Hands,13 +973pb0191c01,Torso SW T-16 Skyhopper Pilot Print / Red Arms / Black Hands,13 +973pb0193c01,"Torso Coca-Cola Logo with V-neck Shirt, Back Stripe and 4 Buttons Print / Dark Gray Arms / Black Hands",13 +973pb0194,Torso Bank Employee Jacket with Tie and Dollar Sign Badge Print,13 +973pb0194c01,Torso Bank Employee Jacket with Tie and Dollar Sign Badge Print / Light Gray Arms / Yellow Hands,13 +973pb0195,Torso Space UFO Triangular Insignia Print,13 +973pb0195c01,Torso Space UFO Triangular Insignia Print / Black Arms / Dark Gray Hands,13 +973pb0196c01,Torso Octan Logo Zippered Jacket with Team 96 Text Pattern / Green Arms / Red Hands,13 +973pb0197c01,"Torso Studios Vampire, Bat and ID Card Print / White Arms / Dark Gray Hands",13 +973pb0198,Torso Space Insectoids Droid Silver and Copper Circuitry Print,13 +973pb0198c01,Torso Space Insectoids Droid Silver and Copper Circuitry Print / Dark Gray Arms / Black Hands,13 +973pb0199,Torso Space Insectoids Blue X with Hose on Sides Print,13 +973pb0199c01,Torso Space Insectoids Blue X with Hose on Sides Print / Dark Gray Arms / Blue Hands,13 +973pb0200,"Torso Space Insectoids Green Circuitry, Silver Hose on Sides Print",13 +973pb0200c01,"Torso Space Insectoids Green Circuitry, Silver Hose on Sides Print / Black Arms / Black Hands",13 +973pb0201c01,Torso Overalls Blue Print (Dungarees) / White Arms / Yellow Hands,13 +973pb0202c01,Torso Overalls Black Print / White Arms / Yellow Hands,13 +973pb0203c01,Torso Overalls Red Print (Dungarees) / White Arms / Yellow Hands,13 +973pb0204c01,Torso Pirate Imperial Soldier Print / Blue Arms / Yellow Hands,13 +973pb0205,"Torso Alpha Team Logo, Arrow, Shoulder Rope Print",13 +973pb0205c01,"Torso Alpha Team Logo, Arrow, Shoulder Rope Print / Dark Blue Arm Left / Orange Arm Right / Light Gray Hands",13 +973pb0206c01,Torso Pirate Imperial Guard Print (Red) / Red Arms / Yellow Hands,13 +973pb0207c01,Torso Soccer Black Fading Stripes and No. 5 Front and Back Print / Red Arms / Yellow Hands,13 +973pb0208c01,Torso Soccer Black Fading Stripes and No. 7 Front and Back Print / Red Arms / Yellow Hands,13 +973pb0209c01,Torso Soccer Black Fading Stripes and No. 8 Front and Back Print / Red Arms / Yellow Hands,13 +973pb0210c01,Torso Soccer Black Fading Stripes and No. 14 Front and Back Print / Red Arms / Yellow Hands,13 +973pb0211,Torso Soccer Black Fading Stripes and No. 18 Front and Back Print,13 +973pb0211c01,Torso Soccer Black Fading Stripes and No. 18 Front and Back Print / Red Arms / Yellow Hands,13 +973pb0212,Torso Racers Number 4 with Red and Yellow Stripe Print,13 +973pb0212c01,Torso Racers Number 4 with Red and Yellow Stripe Print / Orange Arm Left / Red Arm Right / Dark Gray Hands,13 +973pb0213c01,Torso Soccer Blue Chevron and No. 5 Front and Back Print / White Arms / Yellow Hands,13 +973pb0214c01,Torso Soccer Blue Chevron and No. 7 Front and Back Print / White Arms / Yellow Hands,13 +973pb0215c01,Torso Soccer Blue Chevron and No. 8 Front and Back Print / White Arms / Yellow Hands,13 +973pb0216c01,Torso Soccer Blue Chevron and No. 14 Front and Back Print / White Arms / Yellow Hands,13 +973pb0217c01,Torso Soccer Blue Chevron and No. 18 Front and Back Print / White Arms / Yellow Hands,13 +973pb0218,Torso Exo-Force Dark Gray Body Armor with Four Stars Print,13 +973pb0219c01,"Torso Alpha Team Logo Green Vest, Dynamite Print / Black Arm Left / Green Arm Right / Lt Gray Hands",13 +973pb0219c02,"Torso Alpha Team Logo Green Vest, Dynamite Print / Dark Blue Arm Left / Green Arm Right / Lt Gray Hands",13 +973pb0220c01,"Torso Alpha Team Logo, Utility Belt, Gauge and Solid Blue Stripe Print / Black Arm Left / Blue Arm Right / Black Hands",13 +973pb0221c01,"Torso Alpha Team Logo, Shirt with Zipper, Utility Belt and Gauge Print / Dark Blue Arms / Yellow Hands",13 +973pb0223c01,"Torso Racers Jacket with Straps, Orange/Yellow/White Stripes Print / Red Arms / Black Hands",13 +973pb0232c01,Torso Infomaniac with Bow Tie - LEGO Logo on Back Print / Black Arms / White Hands,13 +973pb0233c01,Torso Infomaniac with Bow Tie and Reverse-Italicized i Logo Print / Black Arms / Yellow Hands,13 +973pb0235c01,"Torso Post Office Worker, Shirt and Horn Logo on Blue Background Print / Red Arms / Yellow Hands",13 +973pb0236c01,Torso Zipper and 2 Zipper Pockets Print / Black Arms / Black Hands,13 +973pb0237c01,"Torso Rescue Coast Guard Logo, Nametag, White Collar, Zipper Print / White Arms / Yellow Hands",13 +973pb0238,Torso Cargo Logo with Green Tie Print,13 +973pb0238c01,Torso Cargo Logo with Green Tie Print / White Arms / Yellow Hands,13 +973pb0239c01,Torso Cargo Logo with Shirt Print / White Arms / Yellow Hands,13 +973pb0240c01,"Torso Castle Ninja Wrap, Brown Dagger, Gold Star, Gold Scale Mail Print / Red Arms / Yellow Hands",13 +973pb0240c02,"Torso Castle Ninja Wrap, Brown Dagger, Gold Star, Gold Scale Mail Print / White Arms / Yellow Hands",13 +973pb0240c03,"Torso Castle Ninja Wrap, Brown Dagger, Gold Star, Gold Scale Mail Print / Dark Gray Arms / Yellow Hands",13 +973pb0242,Torso Shell Logo on Jacket with Pocket Print,13 +973pb0242c01,Torso Shell Logo on Jacket with Pocket Print / White Arms / Yellow Hands,13 +973pb0243c01,Torso Soccer Referee Vertical White Stripes and LEGO Logo Back Print / Black Arms / Yellow Hands,13 +973pb0244,Torso Soccer Vertical Striped Red/Blue and No. 3 Back Print,13 +973pb0244c01,Torso Soccer Vertical Striped Red/Blue and No. 3 Back Print / Red Arms / Yellow Hands,13 +973pb0245c01,Torso Soccer Vertical Striped Red/Blue and No. 2 Back Print / Red Arms / Yellow Hands,13 +973pb0246,Torso Soccer Vertical Striped Red/Blue and No. 10 Back Print,13 +973pb0246c01,Torso Soccer Vertical Striped Red/Blue and No. 10 Back Print / Red Arms / Yellow Hands,13 +973pb0247c01,Torso SW Armor Silver Print (Bib Fortuna) / Dark Blue Arms / Tan Hands,13 +973pb0249c01,Torso Race Two Stars Jacket Print with Blue Lines / Red Arms / Yellow Hands,13 +973pb0251c01,Torso Fire Shirt with 2 Red Pockets and Red Belt Print / Light Gray Arms / Black Hands,13 +973pb0252,Torso Fire Shirt with Gauge and Red Belt Print,13 +973pb0252c01,Torso Fire Shirt with Gauge and Red Belt Print / Light Gray Arms / Black Hands,13 +973pb0254,Torso Soccer Vertical Striped Red/Blue and No. 7 Back Print,13 +973pb0254c01,Torso Soccer Vertical Striped Red/Blue and No. 7 Back Print / Red Arms / Yellow Hands,13 +973pb0257c01,"Torso Castle Ninja Wrap, Dark Gray Dagger, Gold Star, Gold Scale Mail Print / Green Arms / Yellow Hands",13 +973pb0258c01,Torso Harry Potter Ron Plaid Shirt with Zipper Print / Black Arms / Yellow Hands,13 +973pb0259c01,Torso Harry Potter Zipper Jacket and Blue Shirt Collar Print / Dark Blue Arms / Yellow Hands,13 +973pb0260c01,Torso SW V-Collar Shirt and High Tie Belt Print (Boba Fett Young) / Dark Blue Arms / Yellow Hands,13 +973pb0262c01,Torso SW Armor Plates Silver Print (Jango Fett) / Violet Arms / Black Hands,13 +973pb0263c01,Torso Town Construction Zipper Vest with Pockets and Blue Shirt Print / Blue Arms / Dark Bluish Gray Hands,13 +973pb0264,"Torso Rescue Coast Guard Logo, Nametag, Red Collar, Zipper Print",13 +973pb0264c01,"Torso Rescue Coast Guard Logo, Nametag, Red Collar, Zipper Print / Red Arms / Yellow Hands",13 +973pb0265c01,"Torso Rescue Coast Guard Logo, Nametag, Blue Collar, Red Tie Print / Blue Arms / Yellow Hands",13 +973pb0266c01,Torso Harry Potter Crew Neck Sweater Print / Sand Green Arms / Yellow Hands,13 +973pb0267c01,"Torso Harry Potter Dark Red Stripe Suit Front, Gray Vest and Tie, Gold Fob Print / Black Arms / Yellow Hands",13 +973pb0268c01,"Torso Harry Potter Small Gray Collar and Belt, Gray Ripples Print / Black Arms / Yellow Hands",13 +973pb0269c01,"Torso Telephone Logo, 4 Blue Buttons Print / Blue Arms / Yellow Hands",13 +973pb0270,Torso SW AT-AT Driver Print,13 +973pb0270c01,Torso SW AT-AT Driver Print / Dark Gray Arms / White Hands,13 +973pb0271,Torso SW Armor Snowtrooper Print,13 +973pb0272c01,"Torso Racers Jacket with Straps, Red & White Stripes Print / Orange Arms / Black Hands",13 +973pb0273c01,Torso Adventurers Orient Chinese Guard Print / Black Arms / Yellow Hands,13 +973pb0274c01,Torso Gravity Games with 3 White & Silver Logos Print / Red Arms / Yellow Hands,13 +973pb0275c01,Torso Gravity Games with Red and Orange Logos Print / Dark Blue Arms / Yellow Hands,13 +973pb0276c01,Torso Gravity Games with Silver and Black Logos Print / Medium Blue Arms / Yellow Hands,13 +973pb0277c01,"Torso Security Guard, Gold Badge, Blue Belt w/Radio Print / Dark Gray Arms / Black Hands",13 +973pb0278,"Torso Train, Safety Vest Reflective with Pocket and Train Logo Print",13 +973pb0279c01,Torso Soccer French Team with Rooster Logo Print / Blue Arms / Yellow Hands,13 +973pb0281c01,"Torso Adventurers Desert Safari Shirt, White Neck, Red Bandana, Gun Print / Tan Arms / Yellow Hands",13 +973pb0282,Torso SW Armor Plates Green Print (Boba Fett),13 +973pb0282c01,Torso SW Armor Plates Green Print (Boba Fett) / Light Gray Arms / Dark Gray Hands,13 +973pb0282c02,Torso SW Armor Plates Green Print (Boba Fett) / Light Gray Arms Printed / Dark Gray Hands,13 +973pb0283,Torso Octan Logo Print Color Reversed,13 +973pb0283c01,Torso Octan Logo Print Color Reversed / White Arms / Yellow Hands,13 +973pb0284c01,Torso Spider-Man Sweater over Dark Pink Top Print (Mary Jane 3) / White Arms / Yellow Hands,13 +973pb0285c01,Torso Spider-Man Blazer over Light Violet Top Print (Mary Jane 2) / Green Arms / Yellow Hands,13 +973pb0286c01,"Torso Jail-Breaker Shirt with 2 Pockets, '50380' Print / Medium Orange Arms / Yellow Hands",13 +973pb0287,Torso Spider-Man Open Jacket with Collar and Dark Orange Shirt Print,13 +973pb0287c01,Torso Spider-Man Open Jacket with Collar and Dark Orange Shirt Print / Dark Gray Arms / Yellow Hands,13 +973pb0289,"Torso Police Jacket with Gold Badge, Radio, and Police Print on Back",13 +973pb0289c01,"Torso Police Leather Jacket, Gold Badge, Radio, Ammo Belt, Police Print on Back / Black Arms / Black Hands",13 +973pb0290c01,Torso Police Suit with Gold Badge and Striped Tie Print / Dark Blue Arms / Yellow Hands,13 +973pb0291c01,Torso Spider-Man Suit with Checkered Shirt and Striped Tie Print / Light Gray Arms / Yellow Hands,13 +973pb0292c01,Torso Adventurers Orient Chinese Emperor Print / Red Arms / Yellow Hands,13 +973pb0293c01,Torso Adventurers Orient Side-Buttoned Shirt with Chinese Letters Print / Green Arms / Yellow Hands,13 +973pb0294c01,Torso Suit with 4 Buttons and Sweater Print / Blue Arms / Yellow Hands,13 +973pb0295c01,Torso Racers Jacket and White Neck with Silver Stripe Print / Red Arms / Dark Gray Hands,13 +973pb0296c01,"Torso Space Discovery, NASA Logo Print / White Arms / White Hands",13 +973pb0297c01,Torso Castle Black Falcon Pointier Bottom Shield 1st Reissue Print / Black Arms / Yellow Hands,13 +973pb0298,"Torso Jacket with Zippers, Black Top, Classic Space Logo, White Undershirt Print",13 +973pb0298c02,"Torso Jacket with Zippers, Black Top, Classic Space Logo, White Undershirt Print / Red Arms / Light Flesh Hands",13 +973pb0299c01,Torso Studios White Rope & Patched Collar Print (Hunchback) / Dark Gray Arms / Yellow Hands,13 +973pb0302,Torso Rescue Coast Guard Logo Print,13 +973pb0302c01,Torso Rescue Coast Guard Logo Print / Dark Blue Arms / Orange Hands,13 +973pb0303,Torso Rescue Coast Guard Logo Jacket with Pockets and Radio Print,13 +973pb0303c01,Torso Rescue Coast Guard Logo Jacket with Pockets and Radio Print / Orange Arms / Dark Gray Hands,13 +973pb0305,Torso SW Jacket with Collar and Monocular Print (Han Solo),13 +973pb0306c01,Torso SW V-Collar Shirt and Dark Blue Trim Print (Lando Calrissian) / Medium Blue Arms / Brown Hands,13 +973pb0307,Torso Shirt Front Seamed with Patch Pockets Print,13 +973pb0309c01,Torso Harry Potter Marauder's Map Statue Print / Dark Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pb0310c01,Torso Spider-Man V-Neck Sweater Print (Mary Jane 4) / Medium Blue Arms / Light Flesh Hands,13 +973pb0313c01,Torso Harry Potter Open Shirt and Sweater Print / Blue Arms / Light Flesh Hands,13 +973pb0314c01,Torso Harry Potter Open Shirt and Purple Sweater Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pb0315c01,Torso Harry Potter Open Shirt and Striped Sweater Print / Reddish Brown Arms / Light Flesh Hands,13 +973pb0316,Torso Harry Potter Sweater and Tie Gryffindor Colors Print,13 +973pb0318,"Torso Speed Racer Pullover Open Collar, Diagonal Wrinkles Print",13 +973pb0320c02,"Torso Jacket with Train Logo, Three Gold Buttons, Red Tie, Pencil and Paper in Pocket Print - Dark Blue Arms - Light Flesh Hands",13 +973pb0321,Torso Town Vest with Pockets and Striped Tie Print,13 +973pb0321c01,Torso Town Vest with Pockets and Striped Tie Print / White Arms / Light Flesh Hands,13 +973pb0322,"Torso Suit with 2 Buttons, Gray Sides, Gray Centerline and Tie Print",13 +973pb0323c01,Torso Suit Pinstriped Jacket and Striped Tie Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pb0323c02,Torso Suit Pinstriped Jacket and Striped Tie Print / Dark Bluish Gray Arms / Yellow Hands,13 +973pb0324c01,Torso Spider-Man Jacket with EMT Star of Life Logo and Button Down Shirt Print / Dark Blue Arms / White Hands,13 +973pb0325c01,Torso Spider-Man Costume 3 Dark Blue Print / Dark Blue Arms / Red Hands,13 +973pb0326c01,Torso Spider-Man Dr. Octopus Open Shirt Print / Sand Green Arms / Black Hands,13 +973pb0327c01,Torso Spider-Man Dr. Octavious Print / Light Flesh Arms / Light Flesh Hands,13 +973pb0328,Torso Spider-Man Aunt May Blouse Print,13 +973pb0328c01,Torso Spider-Man Aunt May Blouse Print / Dark Tan Arms / Light Flesh Hands,13 +973pb0329c01,Torso Harry Potter Sirius Tattered Striped Shirt Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pb0330c01,Torso Spider-Man Jacket with Zippered Pockets and Red Web-Like Print / Black Arms / Light Flesh Hands,13 +973pb0331c01,"Torso Harry Potter Tournament Black Half-Panel, 'Potter' on Back Print / Black Arm Right / Red Arm Left / Light Flesh Hands",13 +973pb0332c01,Torso Spider-Man Pocketed Snap Vest over Black Zippered Jacket Print / Black Arms / Light Flesh Hands,13 +973pb0334,Torso Spider-Man Sweatshirt Jacket over Polo Shirt with Horizontal Stripes Print,13 +973pb0334c01,Torso Spider-Man Sweatshirt Jacket over Polo Shirt with Horizontal Stripes Print / Sand Blue Arms / Yellow Hands,13 +973pb0335c01,Torso Harry Potter Professor Snape Boggart Print / Sand Green Arms / Light Bluish Gray Hands,13 +973pb0336c01,"Torso Harry Potter Torn Suit with Buttons, Shirt and Tie Print / Dark Green Arms / Light Flesh Hands",13 +973pb0337c01,Torso Harry Potter Tournament Black Shoulders Print / Light Flesh Arms / Light Flesh Hands,13 +973pb0338c01,Torso Fire Shirt with Pocket and Orange Belt Print / Light Gray Arms / Yellow Hands,13 +973pb0339c01,"Torso Fire Shirt with 2 Orange Pockets, Small Gauge and Orange Belt Print / Light Gray Arms / Black Hands",13 +973pb0340c01,Torso Fire Shirt with Gauge and Orange Belt Print / Light Gray Arms / Black Hands,13 +973pb0343c01,"Torso Harry Potter Suit with Pockets, Vest and Brown Shirt Print / Light Bluish Gray Arms / Light Flesh Hands",13 +973pb0343c02,"Torso Harry Potter Suit with Pockets, Vest and Brown Shirt Print / Lt Bluish Gray Arms / Lt Flesh Hand Left / Dk Bluish Gray Hand Right",13 +973pb0345c01,"Torso Harry Potter Jacket, Red Shirt, Tatters, Hogwarts Tri-Wizard Tournament Uniform Pattern / Black Arms / Light Flesh Hands",13 +973pb0346c01,Torso Castle Knights Kingdom II Lion with Crown Print / Blue-Violet Arms / Black Hands,13 +973pb0347,Torso Castle Knights Kingdom II with Scorpion Print,13 +973pb0347c01,Torso Castle Knights Kingdom II with Scorpion Print / Dark Red Arms / Black Hands,13 +973pb0348c01,Torso Alpha Team Android Gray/Silver/Black Shirt Print / Black Arm Left / Dark Turquoise Arm Right / Light Bluish Gray Hands,13 +973pb0349,"Torso Alpha Team Arctic Logo, Black Shirt and Red Straps Print",13 +973pb0349c01,"Torso Alpha Team Arctic Logo, Black Shirt and Red Straps Print / Black Arm Left / Red Arm Right / Black Hands",13 +973pb0351c01,"Torso Alpha Team Arctic Logo, Black Shirt and Silver Lines Print / Black Arm Left / Dark Purple Arm Right / Black Hands",13 +973pb0351c02,"Torso Alpha Team Arctic Logo, Black Shirt and Silver Lines Print / Black Arm Left / Yellow Arm Right / Black Hands",13 +973pb0351c03,"Torso Alpha Team Arctic Logo, Black Shirt and Silver Lines Print / Black Arm Left / Green Arm Right / Black Hands",13 +973pb0352c01,Torso Castle Knights Kingdom II with Rascus Print / Green Arms / Dark Bluish Gray Hands,13 +973pb0353c01,Torso Castle Knights Kingdom II with Amulet and Vest Print / Dark Bluish Gray Arms / Reddish Brown Hands,13 +973pb0354,"Torso Highway Patrol 2, Shirt with Badge and Radio Print",13 +973pb0354c01,"Torso Highway Patrol 2, Shirt with Badge and Radio Print / Dark Blue Arms / Yellow Hands",13 +973pb0355c01,Torso Castle Knights Kingdom II with Jayko Print / Medium Blue Arms / Light Bluish Gray Hands,13 +973pb0357c01,"Torso Alpha Team Arctic Logo, Black Shirt and Orange Straps Print / Black Arm Left / Orange Arm Right / Black Hands",13 +973pb0360,"Torso Alpha Team Arctic Logo, Black Shirt and Blue Straps Print",13 +973pb0360c01,"Torso Alpha Team Arctic Logo, Black Shirt and Blue Straps Print / Yellow Arms / Yellow Hands",13 +973pb0362,Torso SW Clone Pilot Print,13 +973pb0363,Torso SW Brown Layered Shirt and Belt Print (Anakin),13 +973pb0363c01,Torso SW Brown Layered Shirt and Belt Print (Anakin) / Black Arms / Light Flesh Hand Left / Black Hand Right,13 +973pb0365,Torso Soccer Horizontal White Stripes and No. 10 Back Print,13 +973pb0365c01,Torso Soccer Horizontal White Stripes and No. 10 Back Print / Green Arms / Yellow Hands,13 +973pb0366,Torso Soccer Horizontal White Stripes and No. 18 Back Print,13 +973pb0366c01,Torso Soccer Horizontal White Stripes and No. 18 Back Print / Green Arms / Yellow Hands,13 +973pb0367,Torso Soccer Horizontal White Stripes and No. 2 Back Print,13 +973pb0367c01,Torso Soccer Horizontal White Stripes and No. 2 Back Print / Green Arms / Yellow Hands,13 +973pb0368,Torso Soccer Horizontal White Stripes and No. 3 Back Print,13 +973pb0368c01,Torso Soccer Horizontal White Stripes and No. 3 Back Print / Green Arms / Yellow Hands,13 +973pb0369,Torso Soccer Horizontal White Stripes and No. 7 Back Print,13 +973pb0369c01,Torso Soccer Horizontal White Stripes and No. 7 Back Print / Green Arms / Yellow Hands,13 +973pb0370,Torso Soccer Horizontal White Stripes and No. 9 Back Print,13 +973pb0370c01,Torso Soccer Horizontal White Stripes and No. 9 Back Print / Green Arms / Yellow Hands,13 +973pb0371,Torso Soccer Horizontal White Stripes and No. 11 Back Print,13 +973pb0371c01,Torso Soccer Horizontal White Stripes and No. 11 Back Print / Green Arms / Yellow Hands,13 +973pb0372c01,Torso Soccer Horizontal White Stripes and No. 4 Back Print / Green Arms / Yellow Hands,13 +973pb0373c01,Torso SW Armor Kashyyyk Trooper Print / Sand Green Arms / Black Hands,13 +973pb0374,Torso Viking Armor with 2 Shoulder Disks and Crisscross Belt Print,13 +973pb0377c01,Torso Viking Scale Mail and Diagonal Leather Belt Print / Light Bluish Gray Arms / Yellow Hands,13 +973pb0378,Torso Viking Barbarian Armor Print,13 +973pb0391,"Torso Adventurers Desert Safari Shirt, Yellow Neck, Red Bandana, Gun Print",13 +973pb0391ac01,"Torso Adventurers Desert Safari Shirt, Yellow Neck, Red Bandana, Gun - LEGO Logo on Back Print / Tan Arms / Yellow Hands",13 +973pb0391c01,"Torso Adventurers Desert Safari Shirt, Yellow Neck, Red Bandana, Gun Print / Tan Arms / Yellow Hands",13 +973pb0392c01,"Torso Bodice Female with Two Gold Hearts, Necklace Print / Dark Pink Arms / Yellow Hands",13 +973pb0396c01,Torso Western Indians Necklace and Red Squares Print (color reversed 973px105) / Tan Arms / Yellow Hands,13 +973pb0397c01,Torso Alpha Team Minion Scarab without Silver Outline and X Print / Black Arm Left / Dark Red Arm Right / Dark Red Hands,13 +973pb0400c01,"Torso Harry Potter Jacket, Dark Orange Mouton Collar and Toggle Buttons Print / Dark Bluish Gray Arms / Light Flesh Hands",13 +973pb0401,"Torso Exo-Force with Red Symbol, Light Bluish Gray Undershirt and Black Belt Print",13 +973pb0403,Torso SW Rebel Technician Print (sw082),13 +973pb0405c01,Torso SW Jawa Print / Reddish Brown Arms / Reddish Brown Hands,13 +973pb0406c01,Torso SW Moisture Farmer (Owen Lars) Print / Tan Arms / Light Flesh Hands,13 +973pb0407,Torso Exo-Force with 'AT.01' Print,13 +973pb0410,"Torso Mechanic Shirt with Blue Overalls, Tools in Pocket Print",13 +973pb0412,"Torso SpongeBob with High Waist Blue Pants, Red Neck, Shirt Collar Print",13 +973pb0415c01,"Torso Town Construction Jacket Open, Safety Stripes, Blue Shirt, Dark Blue Tie Print / Orange Arms / Yellow Hands",13 +973pb0419,Torso Castle Fantasy Era Armor with Troll Skull Badge and Chains Print,13 +973pb0420,Torso SW Layered Vest with Belt Print (Anakin Clone Wars),13 +973pb0421,Torso Exo-Force Gold Panels with Black Edges with Violet Hoses Print,13 +973pb0424,"Torso SW Lt Gray Female Outline, Belt with Silver Buckle Print (Juno)",13 +973pb0425c01,"Torso Alpha Team Arctic Logo, Zippers and Blue Tabs Print / Black Arm Left / Blue Arm Right / Black Hands",13 +973pb0428,"Torso Aquazone Aquaraiders II Trident, Silver Belt and Zipper Print",13 +973pb0435,Torso Space Mars Mission Astronaut with Orange and Silver Print,13 +973pb0437,"Torso Castle Fantasy Era Scale Mail, Crown on Collar Print",13 +973pb0438,"Torso Castle Fantasy Era Scale Mail, Crown on Buckle, Chest Strap Print",13 +973pb0442,Torso SW Naboo Fighter Jacket with Dark Bluish Gray Harness Print,13 +973pb0452,Torso Indiana Jones V-Neck with Bow and Flower Print,13 +973pb0453,Torso SW Vest and Sand Blue Shirt with Collar Print (Rebel Scout Trooper),13 +973pb0456,"Torso Open Collar, Name Badge 'JOCK' and 'AIR PIRATES' on Reverse Print",13 +973pb0460,Torso Castle Fantasy Era Armor with Brown Belts and Troll Symbol Buckle Print,13 +973pb0466,Torso Six Button Placket with Pockets and Gold Buckle with Star Print,13 +973pb0467,Torso Leather Jacket with Zippers and 'Mutt' on Chest Print,13 +973pb0469,Torso Tattoos with Animal Tooth Necklace Print,13 +973pb0472,Torso Speed Racer Cardigan Ripped with White Undershirt Print,13 +973pb0473,Torso Speed Racer Tweed Vest with Rep Striped Tie Print,13 +973pb0474,Torso Indiana Jones 4 Buttons and 2 Pockets Print,13 +973pb0484,Torso Agents Uniform Male Print,13 +973pb0485,Torso Agents Uniform Female Print,13 +973pb0486,Torso Agents Villain with Zipper Print,13 +973pb0487c01,Torso Agents Villain with Zipper & Silver Inset Print / Orange Arm and DBG Hand Left / Met Silver Mech Arm and DBG Chainsaw Right,13 +973pb0488,"Torso Coast Guard City Logo, Zippers and Radio Print",13 +973pb0489,Torso Agents Villain Jacket with Orange Lapels and Buckle Print,13 +973pb0489c02,Torso Agents Villain Jacket with Orange Lapels and Buckle Print / White Arm and Black Hand Left / Met Silver Mech Arm and Claw Right,13 +973pb0500,Torso SW Armor Clone Pilot (Clone Wars) Print,13 +973pb0504,"Torso SW Jedi Robe, White Undershirt Print (Plo Koon)",13 +973pb0510,Torso SW Armor Clone Trooper Print (Clone Wars),13 +973pb0511,Torso SW Ahsoka Print,13 +973pb0516c02,Torso SW Darth Vader Death Star Print / Chrome Black Arms / Chrome Black Hands,13 +973pb0518,Torso SW Armor Imperial Trooper Print,13 +973pb0522,Torso Pirate Female Corset and Medium Blue Ribbon Print,13 +973pb0532,Torso Suit Jacket with White Tie Print,13 +973pb0533,Torso Indiana Jones Jacket and Shirt with Buttons and Loops Print,13 +973pb0538,Torso Castle Fantasy Era Blacksmith Apron and Front Lace Up Shirt Print,13 +973pb0539,Torso Bare Chest with Muscles Print,13 +973pb0541,Torso SW Armor Clone Trooper Clone Gunner Print,13 +973pb0566,Torso City Shirt with Sunset and Palm Trees Print,13 +973pb0572,Torso Castle Fantasy Era with Tooth Necklace and Rope Belt Print,13 +973pb0573,Torso Castle Fantasy Era Armor with Chain Necklace and Large Belt Print,13 +973pb0574,"Torso Castle Fantasy Era with Gold Chain, Medallion and Gold Detail Print",13 +973pb0575,Torso Space Police 3 Officer Print,13 +973pb0576,Torso Alien with Scales and Muscles Outline Print,13 +973pb0577,Torso Agents Villain Magma Silver Front Panel Print,13 +973pb0579,Torso Alien with Orange Skin and Black Open Vest with Alien Head Print,13 +973pb0581,Torso SW Camouflage Print Weapon Belt,13 +973pb0582,Torso SW Camouflage Print Weapon and Ammunition Belts,13 +973pb0585,Torso Alien with Skin Folds and Black Center Print,13 +973pb0588c01,Torso SW Armor Stormtrooper Black Chest Marking with Line Print / Chrome Silver Arms / Black Hands,13 +973pb0590,Torso Space Police 3 Spiked Armor Print,13 +973pb0591,Torso Space Classic Moon with Marbling and Cracks Print,13 +973pb0592,Torso Indiana Jones Open Collar Shirt with Pockets Print,13 +973pb0601,Torso Indiana Jones with Loose Shirt and Tan Belt Print,13 +973pb0602,Torso Indiana Jones Blouse with Red and Pink Embroidery Print,13 +973pb0603,Torso Indiana Jones with Layered Shirt and Red Belt Print,13 +973pb0605,Torso SW Chancellor Palpatine Print,13 +973pb0613c01,Torso SW Jacket with Black Undershirt and Gold Medal Print / Yellow Arms / Light Flesh Hands,13 +973pb0615,Torso Atlantis Diver Two Hoses Print,13 +973pb0617,Torso Atlantis Shark Print,13 +973pb0619,Torso Space Police III Blacktron I Print with Blacktron II Logo,13 +973pb0620,Torso Atlantis Manta Ray Print,13 +973pb0624,Torso SW Rebel Pilot with Printed Back Print,13 +973pb0625,Torso SW Imperial Officer 3 Print (Hoth),13 +973pb0627,Torso Army Jacket with 2 Pockets and Green Belt Print,13 +973pb0634,Torso SW Female Blue Stripes with Belt Print,13 +973pb0640c01,Torso Castle Forestman Green Corset and Necklace Reissue Print / Green Arms / Yellow Hands,13 +973pb0644,"Torso Blouse with Keyhole Neckline, Ornate Vest and Red Sash Print",13 +973pb0645,Torso Armor Ribbed with Disc and Two Buckles Print,13 +973pb0646,Torso Armor Vest with Silver and Dark Blue Print,13 +973pb0647,Torso Armor with Large Disc and Chain Mail Print,13 +973pb0648,Torso Arabian Robe with Pendant and Patches Print,13 +973pb0650,"Torso Arabian Robe with Gold Trim at Neck, Gold Print Front and Back",13 +973pb0651,"Torso Hassansin Leader (Zolm), Vest with Black V-Neck and Woolen Print with Wide Belt",13 +973pb0653,"Torso Silver Scale Mail, Sash with Swirly Print, Strap Over Shoulder",13 +973pb0656c01,Torso SW Armor Plates Print (Boba Fett Promotional) / White Arms / White Hands,13 +973pb0662,Torso with Pockets and Skull and Crossbones Print,13 +973pb0663c01,Torso Robot with Panels and Gauges Print / LBG Arm and DBG Hand Left / Met Silver Mech Arm and PLG Claw Right,13 +973pb0673,Torso SW Trandoshan Armor with Printed Back Print,13 +973pb0674,Torso SW Armor Plates Dark Green Print (Boba Fett),13 +973pb0676,Torso SW Hoth Rebel Jacket with White Scarf and Reddish Brown Belt Print,13 +973pb0678c01,Torso Pirate Captain Print with LEGO Logo on Back / Black Arms / Yellow Hand Right / Light Gray Hook Left,13 +973pb0680,Torso Castle Kingdoms Chest Strap and Belt Front and Back Print,13 +973pb0681,Torso Castle Kingdoms Dragon Head Quarters with Chain Front and Back Print,13 +973pb0683,"Torso World Racers - Checkered Print with Flames on Front, Flames and Red Skull with White Stripes on Back",13 +973pb0684,Torso World Racers - White and Silver Jacket with Team Extreme Logo on Back Print,13 +973pb0686,Torso World Racers - Team Extreme with Vest with Belts and Radar Print,13 +973pb0691,"Torso Castle Kingdoms Scale Mail, Dark Green Collar, Chain and Belt Front and Back Print",13 +973pb0694,"Torso SW Jedi Robe, White Undershirt & Reddish Brown Belt Print (Nahdar Vebb)",13 +973pb0706,Torso SW Weequay Armor with Silver Lines Print,13 +973pb0711,Torso Tank Top with Black Front and Weight Lifter's Belt Print,13 +973pb0712,Torso Mime Shirt with White Stripes and White Button Vest Print,13 +973pb0713,Torso Ancient Egyptian Golden Necklace and White Belt Print,13 +973pb0714,Torso Witch with Torn Collar and Green Belt with Gold Buckle Print,13 +973pb0724,Torso V-Neck with Birthday Cake Slice in Blue Circle Print,13 +973pb0724c01,Torso V-Neck with Birthday Cake Slice in Blue Circle Print / White Arms / Yellow Hands,13 +973pb0725,Torso SW Shirt Open Collar with Wrinkles Print (Han Solo),13 +973pb0726,Torso SW Aayla Secura Print,13 +973pb0730,"Torso Open Jacket over Open Shirt, Hairy Chest Print",13 +973pb0731,Torso Harry Potter Jacket with Stripe over Gray Shirt Print,13 +973pb0733,Torso Harry Potter Bellatrix Lestrange Female with Ornaments Print,13 +973pb0734,Torso Harry Potter Arthur Weasley Open Jacket over Brown Shirt Print,13 +973pb0735,"Torso Harry Potter Ginny Weasley Female Knitwear, Zipper and Stitchery Print",13 +973pb0736,Torso Harry Potter Molly Weasley Female Kitchen Wear with Apron Print,13 +973pb0739,Torso Harry Potter Professor Snape 7 Gray Buttons Print,13 +973pb0740,Torso Harry Potter Jacket with Rumpled Vest and Tie Print,13 +973pb0741,Torso Harry Potter Jacket Formal with 4 Button Vest and Brown Bow Tie Print,13 +973pb0742,Torso Harry Potter Dumbledore Dress Robe with Vest Print,13 +973pb0743,Torso Harry Potter McGonagall Green Trim Print,13 +973pb0744,Torso Harry Potter Uniform Gryffindor Stripe and Shield Print,13 +973pb0747,Torso Harry Potter Quidditch Gryffindor Ribbed Print,13 +973pb0751c01,Torso LEGO Universe Nexus Astronaut Pattern / Orange Arms / Orange Hands,13 +973pb0756,Torso Atlantis Crab with Open Mouth Print,13 +973pb0758,Torso SW Armor Plates Dark Bluish Gray Print (Mandalorian),13 +973pb0780c01,Torso Pharaoh's Quest Bandage Wrapping and Gold Necklace Print (Mummy Warrior) / Light Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pb0791,Torso Indian Vest Print,13 +973pb0794,Torso Zipper Pockets with Magenta Collar and Waist Print,13 +973pb0802,Torso Octan Logo Race Suit with White Stitching Print,13 +973pb0804,Torso Space with Tubes Print,13 +973pb0805,Torso Space Silver Breastplate with Belt and Blacktron II Logo Print,13 +973pb0805c01,Torso Space Silver Breastplate with Belt and Blacktron II Logo Print / Black Arm and Hand Left / PDG Mech Arm and Black Claw Right,13 +973pb0808,Torso Suit with Light Bluish Gray Gorilla Body and Zipper on Back Print,13 +973pb0809,Torso Female Tennis Shirt with Medium Blue Print,13 +973pb0813,Torso SW Gungan Vest with Gold Belt Front and Back Print,13 +973pb0828,"Torso Ninjago Brown Rope, Gold Lion Medallion and Gray Undershirt Print",13 +973pb0837,"Torso Ninjago Brown Rope, Gold Medallion and Black Undershirt Print",13 +973pb0838,Torso Skull and Roses Print,13 +973pb0839,Torso Sailor Uniform with Blue Scarf Print,13 +973pb0840,Torso White Fleur de Lis and Collar with Brown Belt Print,13 +973pb0842,Torso Female Wetsuit Print,13 +973pb0843,Torso Sweatshirt with Orange Zipper and Dark Blue T-Shirt Print,13 +973pb0844,Torso Soccer Octan Logo and Light Blue Stripes Print,13 +973pb0845,Torso Ice Skating Costume with White Sequins and Star Print,13 +973pb0846,Torso Kimono Print,13 +973pb0847,Torso Lab Coat Stained with Black Buttons and Belt Print,13 +973pb0848,"Torso Painter's Smock with Buttons, Scarf and Paint Spots Print",13 +973pb0849,"Torso Rounded Collar, Gold Buttons and Black Belt Print",13 +973pb0851,Torso Shirt Tattered with Werewolf Hairy Chest Print,13 +973pb0857,"Torso SW Layered Shirt, Brown Belt Print (Saesee Tiin)",13 +973pb0890,Torso LEGO World Denmark Bella Center 2011 Print,13 +973pb0898,Torso Alien Conquest Alien Three Lime Bars Print,13 +973pb0899,Torso Suit Pinstriped Jacket and Yellow Tie Print,13 +973pb0900,Torso Overalls Sand Blue with Wheat Spike in Pocket Print,13 +973pb0908c01,Torso SW Armour Clone Trooper Light Gray Outline Print / Black Arms / Black Hands,13 +973pb0913,Torso Castle Kingdoms Peasant Vest over Light Bluish Gray Shirt Print,13 +973pb0914,Torso Castle Kingdoms Peasant Shirt with Brown Collar and Shoulder Bag Print,13 +973pb0915,Torso Castle Kingdoms Female Corset with Brown Apron Print,13 +973pb0928,"Torso Plaid Shirt with Buttons, Pockets and 'Kd' Print",13 +973pb0929,Torso Bare Chest with Body Lines and Boxing Belt Print,13 +973pb0929c01,Torso Bare Chest with Body Lines and Boxing Belt Print / Yellow Arms / Red Boxing Gloves,13 +973pb0930,Torso Scales Print (Godzilla Costume),13 +973pb0931,Torso Plaid Coat with Layered Shoulder Detailing and Red Buttons Print,13 +973pb0933,Torso Female with Animal Skin Top with Black and Silver Amulet Print,13 +973pb0935,Torso Safari Shirt with Pockets and Belt and 'Zoo' Print,13 +973pb0936,Torso Gladiator Armor with Leather Straps Print,13 +973pb0937,"Torso Armor with Gold Dragon Wings, Dwarf Head Buckle and Pouches Print",13 +973pb0938,Torso Fur Jacket with Chord Clasps Print (Eskimo),13 +973pb0941,Torso Female Dark Pink Top with Colorful Decorations Print (Eighties Style Gym Clothes),13 +973pb0946,Torso Winter Jacket with Silver Zipper Print,13 +973pb0953c01,"Torso Sailboat over Yellow Circles Front, 2011 The LEGO Store Lone Tree, CO Back Print / Dark Blue Arms / Yellow Hands",13 +973pb0954c01,"Torso Pink Sun Front, 2011 The LEGO Store Lone Tree, CO Back Print / White Arms / Yellow Hands",13 +973pb0955c01,"Torso Bat Wings and Crossbones Front, 2011 The LEGO Store Lone Tree, CO Back Print / Green Arms / Yellow Hands",13 +973pb0971c01,Torso SW Vest and White Shirt with Flesh-Colored Skin and Gold Medal Print / Tan Arms / Light Flesh Hands,13 +973pb0976c01,Torso Harry Potter Black Yule Ball Vest and Bow Tie with 3 Buttons Front and 2 Buttons Back Print / White Arms / Light Flesh Hands,13 +973pb0979,"Torso SW Armor Stormtrooper, Detailed Armor, Dirt Stains Print",13 +973pb0982,Torso Batman Logo in Yellow Oval with Muscles and Yellow Belt with Pockets Print,13 +973pb0990,"Torso Dino Shirt and Harness, Dark Red Undershirt with 'D' Print",13 +973pb0992,"Torso Dino Tranquilizer Bandoleer, Belt and 'D' Print",13 +973pb0995,"Torso Ninjago Brown Rope and White Undershirt, Gold Lion on Back Print",13 +973pb1,"Minifig Torso with DkGray, Black, and Yellow Batman Print",13 +973pb1002,Torso Batman Logo in Yellow Oval with Muscles and Yellow Belt Front and Back Print,13 +973pb1004,"Torso Batman Purple Female Outline, Ring Zipper Pull, Gray Belt Print",13 +973pb1006,Torso Batman Suit with Dark Purple Half Panel and Tie Print,13 +973pb1007,"Torso Batman Jacket with Dark Purple Half Panel, Pockets and Zippers Print",13 +973pb1008,"Torso Police Shirt with Gold Badge, Dark Blue Tie and Wrinkles Print",13 +973pb1011,Torso Fire Suit with Stripe and Utility Belt Print,13 +973pb1012c01,"Torso Studios Plaid Button Shirt Front, 2011 The LEGO Store San Diego, CA Back Print / Dark Blue Arms / Yellow Hands",13 +973pb1013c01,"Torso Shirt 3 Flowers over Yellow and Silver Stripe Print Front, 2011 The LEGO Store San Diego, CA Back Print / Yellow Arms / Yellow Hands",13 +973pb1014c01,"Torso I love Legoland Print Front, 2011 The LEGO Store San Diego, CA Back Print / White Arms / Yellow Hands",13 +973pb1015,"Torso Dino Utility Vest with Pocket, Screwdriver and Radio Print",13 +973pb1017,"Torso Dino Shirt with Knot and Pockets, Belt and ID Tag Print",13 +973pb1018,"Torso Dino Shirt with Pocket, Scarf, Belt and Radio Print",13 +973pb1024,Torso Pajama 4 Buttons and Vertical Light Aqua Stripes Print,13 +973pb1026,Torso Bare Chest with Muscles Outline and Black Hair Print,13 +973pb1038,Torso Ninjago Snake with White and Large Black Scales Print,13 +973pb1045,Torso SpongeBob Red Stripes and Belly Button (Navel) Print,13 +973pb1046,Torso SpongeBob Jacket with Two Buttons over Light Blue Shirt and Dark Green Beard Print,13 +973pb1049,"Torso SW C-3PO with Blue, Red and White Wires Print",13 +973pb1050,Torso SW Vest and Camouflage Shirt Print,13 +973pb1055,"Torso Hooded Sweatshirt with Pocket, Drawstring and Minifig Skull Print",13 +973pb1060,Torso SW Geonosian Zombie Print,13 +973pb1063,Torso Female Black and Dark Green Robe Print (Lady Liberty),13 +973pb1072,Torso LEGO World Denmark 2012 and Duck Print,13 +973pb1073,Torso Dino Ballistic Vest with Harness and Carabiner Print,13 +973pb1076c01,"Torso Hooded Sweatshirt with Blue Pocket, Drawstring and Red Brick Print / Blue Arms / Yellow Hands",13 +973pb1077c01,Torso Female Top with Cupcake over Heart and Stars Print / Bright Pink Arms / Yellow Hands,13 +973pb1078c01,Torso Horizontal Red Stripes with Black Number 1 and Golden Brick and Shield Print / White Arms / Yellow Hands,13 +973pb1079c01,"Torso Chef with 8 Buttons, Long Red Neckerchief Print, 2011 The LEGO Store Toronto, Canada / White Arms / Yellow hands",13 +973pb1080c01,"Torso Suit with 2 Buttons, Gray Sides, Gray Centerline and Tie Print, 2011 The LEGO Store Toronto, Canada / Black Arms / Yellow Hands",13 +973pb1081c01,"Torso Halter Top with Medium Blue Trim and Flowers Print, 2011 The LEGO Store Toronto, Canada / Yellow Arms / Yellow Hands",13 +973pb1082c01,"Torso Halter Top with Medium Blue Trim and Flowers Front, 2011 The LEGO Store Mission Viejo, CA Back Print / Yellow Arms / Yellow Hands",13 +973pb1083c01,"Torso Classic Space Minifig Floating Front, 2011 The LEGO Store Mission Viejo, CA Back Print / Green Arms / Yellow Hands",13 +973pb1084c01,"Torso Town Construction Zipper Vest with Pockets and Blue Shirt Print, 2011 The LEGO Store Mission Viejo,CA / Orange Arms / Dark Bluish Gray Hands",13 +973pb1100,Torso Muscles Outline with Belt and Black Sides Print,13 +973pb1103,"Torso Suit with Dark Green Lapels, Silver and Gold Highlights Print",13 +973pb1104,Torso Muscles Outline with Dark Purple and Silver Collar Print,13 +973pb1105,Torso Muscles Outline with Dark Blue Vest and Belt with Buckle Print,13 +973pb1113,Torso Monster Fighters with Ammunition Belt Print,13 +973pb1118c01,"Torso Pirate Captain with White Ascot Front, 2012 The LEGO Store Vancouver, BC Back Print / Black Arms / Yellow Hand Right / Pearl Gold Hook Left",13 +973pb1119,"Torso Halter Top with Medium Blue Trim and Flowers Front, 2012 The LEGO Store Vancouver, BC Back Print",13 +973pb1120c01,"Torso Suit with 2 Buttons, Gray Sides, Gray Centerline and Tie Front, 2012 The LEGO Store Victor, NY Back Print / Black Arms / Yellow Hands",13 +973pb1121c01,"Torso Classic Space Minifig Floating Front, 2012 The LEGO Store Victor, NY Back Print / Green Arms / Yellow Hands",13 +973pb1122c01,"Torso Chef with 8 Buttons, Long Red Neckerchief Front, 2012 The LEGO Store Victor, NY Back Print / White Arms / Yellow Hands",13 +973pb1123c01,"Torso Pirate Captain with White Ascot Front, 2012 The LEGO Store Nashville, TN Back Print / Black Arms / Yellow Hand Right / Pearl Gold Hook Left",13 +973pb1124c01,"Torso Classic Space Minifig Floating Front, 2012 The LEGO Store Nashville, TN Back Print / Green Arms / Yellow Hands",13 +973pb1125c01,"Torso Shirt 3 Flowers over Yellow and Silver Stripe Front, 2012 The LEGO Store Nashville, TN Back Print / Yellow Arms / Yellow Hands",13 +973pb1126c01,"Torso SW TC-14 with Blue, Red and White Wires Print / Chrome Silver Arms / Light Bluish Gray Hands",13 +973pb1127c01,Torso SW Darth Maul Chest Print / Printed Red Arms / Red Hands,13 +973pb1129,Torso LotR Leather Armor Print (Mordor Orc),13 +973pb1133c01,"Torso Pirate Captain with White Ascot Front, 2011 The LEGO Store Pleasanton, CA Back Print / Black Arms / Yellow Hand Right / Pearl Gold Hook Left",13 +973pb1134c01,"Torso V-neck Shirt with Blue Overalls Front, 2011 The LEGO Store Pleasanton, CA Back Print / White Arms / Yellow Hands",13 +973pb1135c01,"Torso Shirt 3 Flowers over Yellow and Silver Stripe Front, 2011 The LEGO Store Pleasanton, CA Back Print / Yellow Arms / Yellow Hands",13 +973pb1144c01,"Torso Construction Vest with Pockets and Blue Shirt Front, 2012 The LEGO Store Wauwatosa, WI Back Print / Orange Arms / Dark Bluish Gray Hands",13 +973pb1145c01,"Torso Shirt 3 Flowers over Yellow and Silver Stripe Front, 2012 The LEGO Store Wauwatosa, WI Back Print / Yellow Arms / Yellow Hands",13 +973pb1146c01,"Torso Castle Kingdoms Gold Lion Head Front, 2012 The LEGO Store Wauwatosa, WI Back Print / Lt Bluish Gray Arms / Dk Bluish Gray Hands",13 +973pb1147,Torso LotR Crude Platemail Armor and Dark Red Shirt Tattered Print (Moria Orc),13 +973pb1148,Torso LotR Coat 3 Buttons and Dark Tan Scarf Print (Pippin),13 +973pb1149,Torso LotR Leather Straps and Belt Buckle Ornate Print (Gimli),13 +973pb1150,Torso LotR Vest Long with Dark Red Shirt and Brown Belt Print (Boromir),13 +973pb1151,Torso LotR Cloak with Brown Collar and Straps Print (Legolas),13 +973pb1152,Torso Monster Fighters Blouse with Necklace and Red Corset Print,13 +973pb1153,Torso Monster Fighters Flight Vest with Stained Undershirt Print,13 +973pb1163c01,"Torso Octan Logo and OIL Front, 2012 The LEGO Store Overland Park, KS Back Print / Blue Arms / Yellow Hands",13 +973pb1164c01,"Torso Halter Top with Medium Blue Trim and Flowers Front, 2012 The LEGO Store Overland Park, KS Back Print / Yellow Arms / Yellow Hands",13 +973pb1165c01,"Torso Chef with 8 Buttons, Long Red Neckerchief Front, 2012 The LEGO Store Overland Park, KS Back Print / White Arms / Yellow Hands",13 +973pb1171c01,"Torso Halter Top with Medium Blue Trim and Flowers Front, 2011 The LEGO Store Sunrise, FL Back Print / Yellow Arms / Yellow Hands",13 +973pb1172c01,"Torso Castle Kingdoms Gold Lion Head Front, 2011 The LEGO Store Sunrise, FL Back Print / Lt Bluish Gray Arms / Dk Bluish Gray Hands",13 +973pb1173c01,"Torso Octan Logo and OIL Front, 2011 The LEGO Store Sunrise, FL Back Print / Blue Arms / Yellow Hands",13 +973pb1174c01,"Torso Castle Kingdoms Gold Lion Head Front, 2012 The LEGO Store Woodlands, TX Back Print / Lt Bluish Gray Arms / Dk Bluish Gray Hands",13 +973pb1175c01,"Torso Octan Logo and OIL Front, 2011 The LEGO Store Woodlands, TX Back Print / Blue Arms / Yellow Hands",13 +973pb1176c01,"Torso Studios Plaid Button Shirt Front, 2012 The LEGO Store Woodlands, TX Back Print / Dark Blue Arms / Yellow Hands",13 +973pb1178,Torso Vest with Dark Red and Black Straps / Quiver Print,13 +973pb1179c01,Torso Bare Chest with Body Lines Both Sides Print (Hulk) / Bright Green Arms / Bright Green Hands,13 +973pb1180,Torso LotR Elven Coat and Armor with Belt and Laces on Back Print (Haldir),13 +973pb1181,Torso LotR Shirt with Laces and Metallic Gold Collar Print (King Theoden),13 +973pb1183,"Torso Monster Fighters Shirt with Pinstriped Vest, Red Tie and Pocket Watch Print",13 +973pb1184,Torso Monster Fighters Jacket Formal with Dark Red Vest and Cravat Print,13 +973pb1187,Torso LotR Muscles Outline and White Handprint Print (Berserker),13 +973pb1188,Torso Armor with Silver Circles Print (Thor),13 +973pb1202,"Torso Alien with Gold, Dark Brown and Dark Purple Armor Print",13 +973pb1203,"Torso Alien with Gold, Dark Brown and Silver Armor Print",13 +973pb1210,Torso Monster Fighters Female Corset with Lavender Trim and Dark Red Pendant Print,13 +973pb1212,Torso Monster Fighters Scientist with Lab Coat and Tool Belt Print,13 +973pb1213,Torso Monster Fighters Monster with Stapled Olive Skin and Stitched Vest Print,13 +973pb1215,"Torso Tailcoat and Vest Formal, White Shirt and Gray Bow Tie Print",13 +973pb1216,"Torso Monster Fighters with Jacket, Red Scarf and Food Stains Print",13 +973pb1217,"Torso SW Jedi Robe, Belt and Black Open-Neck Shirt Print (SW Even Piell)",13 +973pb1218,Torso Stylized Digital Minifig Head Print,13 +973pb1219,"Torso Female Western Shirt with Buttons, Fringe and Red Roses Print",13 +973pb1220,Torso Muscles Outline with Swamp Plants and Scales Print,13 +973pb1221c01,Torso Muscles Outline with Green Lantern Logo Print / Dark Green Arms / Bright Green Hands,13 +973pb1227,Torso Muscles Outline with Dragon Print (Iron Fist),13 +973pb1228,Torso Spider-Man Costume 4 Print,13 +973pb1229,Torso Armor with Lime Circles Print (Doc Ock),13 +973pb1233,Torso Santa Jacket with Belt and Candy Cane Print (Santa Darth Maul),13 +973pb1237,Torso Lederhosen over Pinstriped Shirt Print,13 +973pb1238,Torso Alien Female Shoulder Armor and Belt with UFO Print,13 +973pb1239,Torso Robot with Red Oscilloscope Print,13 +973pb1239c01,Torso Robot with Red Oscilloscope Print / Black Arm and Red Hand Left / Black Mech Arm and Pearl Dark Gray Claw Right [col08-1],13 +973pb1240,Torso Diving Suit with Crossed Belts and Weight Belt Print,13 +973pb1243,Torso Santa Jacket with Fur and Black Belt Print,13 +973pb1244,"Torso Jacket with Gold Trim, Buttons and Floral Motif Print",13 +973pb1245,"Torso Pirate Captain with White Ruffled Shirt, Brown Belt and Shoulder Strap Print",13 +973pb1245c01,"Torso Pirate Captain with White Ruffled Shirt, Brown Belt and Shoulder Strap Print / Red Arms / Yellow Hand Right / Pearl Gold Hook Left",13 +973pb1246,Torso Bat with Dark Bluish Gray Fur Print,13 +973pb1247,Torso Female Wrapped Dress with Pink Flower Print,13 +973pb1253,Torso Ninjago Lightning Energy Print (NRG Jay),13 +973pb1259c01,Torso Ninjago Robe with Green and Gold Obi Sash Print / Bright Green Arms / Black Hands,13 +973pb1260c01,Torso Police Shirt with Dark Bluish Gray Police Vest Print / Medium Blue Arm Left / Medium Blue Arm Right with Star Badge Print / Yellow Hands,13 +973pb1262c01,Torso LotR Robe with Silver Scale Mail and Orange Belt Print / Pearl Gold Arms / Light Flesh Hands,13 +973pb1272,Torso Kimono with Brown Belt and Reddish Brown Fur Print,13 +973pb1273,Torso LotR Silver Chain Mail and Jeweled Belt Print,13 +973pb1274,"Torso LotR Checkered Collar, Clasps and Belt with Silver Buckle Print",13 +973pb1275,"Torso LotR Jacket over Bare Chest, Dark Brown Sash Print",13 +973pb1276,"Torso LotR Jacket with Buttons, Olive Vest and Ascot Print",13 +973pb1294,Torso Batman Logo in White Oval with Muscles and White Belt on Front and Back Print,13 +973pb1295,"Torso Bare Chest with Muscles Outline, Scales and Belt on Front and Back Print",13 +973pb1296,Torso Armor with Round Center Crystal and Tubes on Front and Back Print,13 +973pb1297,"Torso Bare Chest with Body Lines, Red Scars and Gold Belt Print",13 +973pb1302,Torso Fire Reflective Stripes with Utility Belt and Fire Badge on Back Print,13 +973pb1305,Torso Toga with Gold Clasp Print,13 +973pb1306,Torso Female Laced Corset with White Blouse Print,13 +973pb1310,Torso Cyclop with Fur and Belt with Skull and Jewels Print,13 +973pb1311,"Torso Police Shirt with Silver Badge, Pockets, Pen, Black Tie and Belt Print",13 +973pb1318,"Torso Jacket Formal with Black Vest, White Shirt and Black Bow Tie Print",13 +973pb1321,"Torso Jacket and Tartan Vest, Brown Tie, Half Normal, Half Torn Print",13 +973pb1326,Torso LotR Button Shirt with Dark Tan Stripes and Brown and Dark Orange Suspenders Print,13 +973pb1333,Torso Space Armor with 'SHAMI' and Silver Belt Print,13 +973pb1337,Torso LotR Coat with Diamond Buttons and Large Silver Buckle Print,13 +973pb1338,"Torso LotR Vest with Fur Collar, Straps and Buckles Print",13 +973pb1339,Torso LotR Vest with Olive Green Shirt and Dark Green Sash Print,13 +973pb1340,Torso LotR Coat with Brown Shirt and Belt with Pouch Print,13 +973pb1341,Torso Turtle Shell with Dark Brown Horizontal and Diagonal Belt Print,13 +973pb1342,Torso Turtle Shell with Crack and Dark Brown Horizontal Belt Print,13 +973pb1351,Torso Armor Vest with Silver Markings and Blue Round Jewel (Chi) Print,13 +973pb1363,Torso Turtle Shell with Dark Brown Horizontal Belt Print,13 +973pb1367,Torso Layered Robe and Katana Scabbard Print,13 +973pb1368,Torso Armor with Dark Purple Belt with Silver Clasp Print,13 +973pb1369,Torso Turtle Shell with Dark Brown Horizontal and Diagonal Belt with Gold Ring Print,13 +973pb1371,Torso Robe with Brown Belt and Gray and Black Shoulder Plates Print,13 +973pb1377c01,"Torso Pirate Captain with White Ascot Front, 2012 The LEGO Store Alpharetta, GA Back Print / Black Arms / Yellow Hand Right / Pearl Gold Hook Left",13 +973pb1378c01,"Torso Studios Plaid Button Shirt Front, 2012 The LEGO Store Alpharetta, GA Back Print / Dark Blue Arms / Yellow Hands",13 +973pb1379c01,"Torso Halter Top with Medium Blue Trim and Flowers Front, 2011 The LEGO Store Alpharetta, GA Back Print / Yellow Arms / Yellow Hands",13 +973pb1386,Torso Ninjago Robe with Grey and Silver Sash Print,13 +973pb1392,"Torso Jacket with 2 Buttons, Dark Blue Shirt and Belt Print",13 +973pb1397c01,Torso Royal Guard Uniform with Black Buttons and White Crossed Belts Print / Red Arms / Yellow Hands,13 +973pb1399,"Torso Shirt with Ripped Off Sleeves, Buttons on Pockets, Jolly Roger Back Print",13 +973pb1400,Torso Baseball Jersey with Blue Trim and 'Stackers' Logo Print,13 +973pb1400c01,Torso Baseball Jersey with Blue Trim and 'Stackers' Logo Print / Blue Arms / Yellow Hand Right / Baseball Glove Left,13 +973pb1409c01,Torso Bare Chest Muscles Outline and Copper and Dark Brown Belt Print / Yellow Arms / Yellow Hands,13 +973pb1410,Torso Blue and Lime Parachute Harness Straps and Silver Buckles Print,13 +973pb1414,Torso Spider-Man Body Armor with Silver Belt Print,13 +973pb1415,"Torso Spider-Man Open Suit Jacket with White Shirt, Red Tie and Belt Print",13 +973pb1416,Torso Spider-Man Shirt with 3 Yellow Circles and Belt Print,13 +973pb1417,Torso Spider-Man Tunic with Belt and 2 Gold Clasps Print,13 +973pb1418,"Torso Shirt with Muscles, Red and Yellow Superman Logo and Gold Oval Belt Buckle Print",13 +973pb1419,"Torso Shirt with Muscles, Silver Chest Emblem and Oval Belt Buckle Print",13 +973pb1420,Torso Female Waistcoat with Buttons and White Shirt Print,13 +973pb1426,Torso Jacket and Vest with Star Badge and Dark Red Scarf Print,13 +973pb1429,Torso Bare Chest with Beaded Necklace and Feathers Print,13 +973pb1431,"Torso The Lone Ranger Cavalry Uniform, 5 Buttons, Belt Print",13 +973pb1438,Torso LotR Shirt with Ornate Silver Fabric and Gold Clasps Print (Saruman),13 +973pb1444,Torso LotR Ruffled Shirt with Fur Collar and Gold Medallion Print (Grima),13 +973pb1479c01,"Torso Shirt with Muscles, Dark Red and Flat Gold Superman Logo and Oval Belt Buckle Print / Dark Blue Arms / Light Flesh Hands",13 +973pb1516c01,Torso Shirt with Light Bluish Gray Stripes and Staff Namebadge Print / Black Arms with Light Bluish Gray Stripes / Yellow Hands,13 +973pb1517c01,Torso Female Suit with Yellow Eagle and Belt Print (Phoenix Jean Grey) / Green Arms / Yellow Hands,13 +973pb1528c01,Torso SW Armor Clone Trooper Lieutenant Black Belt and Four Dark Azure Stars Print / Dark Azure Arms / Black Hands,13 +973pb1600c01,Torso SW TC-4 Print / Dark Red Arms / Dark Red Hands,13 +973pb1660c01,"Torso Muscles Outline with Red Straps, Medallion and Blue Top Print / Green Arms / Green Hands",13 +973pb1687c01,Torso SW Wrap-Around Tunic and Utility Belt on Front and Back Print / White Arms / Yellow Hands,13 +973pb1688c01,Torso SW Darth Revan Armor Print / Black Arms / Dark Red Hands,13 +973pb1695c01,Torso Robe with Long Gold Necklace Print / White Arms / Medium Dark Flesh Hands,13 +973pb1759c01,Torso Ninja Robe with Dark Purple Sash and TMNT Foot Clan Logo Print / Light Flesh Arms / Light Flesh Hands,13 +973pb1782c01,"Torso Jacket Open with White Shirt, Black Tie and 4 Buttons Print / Red Arms / Yellow Hands",13 +973pb1815c01,Torso Shirt with Red Wings and 2 x 2 Brick Print / Blue Arms / Light Bluish Gray Hands,13 +973pb1818c01,"Torso Jacket with Dark Bluish Gray Collar, Silver Side Clasps and Gold Badge Print (Rocket) / Dark Red Arms Printed / Dark Bluish Gray Hands",13 +973pb1868c01,Torso Vest with Dark Purple Flowers and Chain over Black Shirt Print / Black Arms / White Hands,13 +973pb1923c01,Batman Logo Upside Down with Muscles and Gold Belt Print / Medium Lavender Arms / Black Hands,13 +973pb2,"Minifig Torso with Alpha Team Logo, Dial, and Blue Stripe with Two Faded Spots Print charge,electricity",13 +973pb2009c01,Torso SW Imperial Officer 7 Print (Admiral Yularen) / White Arms / Light Flesh Hands,13 +973pb2021c01,"Torso Muscles Outline with Electrodes and Wires, Silver Collar and Zipper on Back Print / Black Arms / Bright Light Blue Hands",13 +973pb2036c01,Torso Pirate Stripes White with Leather Straps with Skull and Crossbones Print / Yellow Arms / Yellow Hands,13 +973pb2056c01,"Torso Super Hero Suit with Red and White Belt, Light Bluish Gray Armor, and White Star Print (SDCC Captain America) / Blue Arms / Red Hands",13 +973pb2258c01,Minifig Torso Nexo Knights Moltor,13 +973pb2285c01,"Torso Batman Female Corset with Red and Blue Laces, Dark Bluish Gray Belt Print / White Arms / Red Hand Right / Blue Hand Left",13 +973pb2287c01,"Torso Batman Muscles Outline, Medallion and Black Silver Belt with Orange Pouches Print / Red Arms with Wrist Guns Print / Yellow Hands",13 +973pb2298c01,Minifig Torso - Jestro [70316],13 +973pb4,"Minifig Torso with Gold Badge, Gray Shirt, and SECURITY Text Print radio,belt,world city,guard",13 +973pb7,Minifig Torso with Dark Orange Vest and Purple Bow Tie Print,13 +973pb8,"Minifig Torso with Catsuit, O-Ring and Belt Print",13 +973pba,Minifig Torso Female with Harlequin Black/White Print,13 +973pbb,Minifig Torso with Iron Man Armoured Suit Mark VI Print,13 +973pbd,"Torso Armor with '002', 'FF446', 'DANGER', and White Rectangle Print",13 +973pbf,Minifig Torso with Iron Man Armoured Suit Mark XLII Print,13 +973pbg,Torso with Iron Man 3 Print,13 +973pbl,"Minifig Torso with Red/White Waist, Zipper and White Star Print",13 +973pbm,Torso Batman Shirt with Black Half Panel Print,13 +973pc23,"Minifig Torso with Jacket, Bow Tie, Vest, Boutonniere Print",13 +973pc3g,Minifig Torso with Vertical Red Stripes and 'Clutchers' Print,13 +973pc67,Minifig Torso with Clockwork Robot Print,13 +973pd0,Minifig Torso with Studios Director Print,13 +973pd1c01,Torso Studios Tube Top and Navel Print (Blank Back) / Red Arms / Yellow Hands,13 +973pdb,"Minifig Torso with Three-Piece Suit, White Shirt, and Red Tie Print Studio, Victorian, horror, dapper, gentleman, hero,suit, vest, tie, watchfob, gold chain, gold watch",13 +973pdd,Minifig Torso with Blue Plaid Shirt Print,13 +973pdf,"Minifig Torso with Black Suit, Red Shirt, and Gold Clasps Print Dracula, blood, hankerchief, undead, vampire,Studios, movie, fang, gold, cape, ornate",13 +973pdg,"Minifig Torso with White Rope and Patched Collar Print igor,hunchback,peasant,tunic,bib,rope belt, Studios, movie, vampire, scary",13 +973pg0,"Minifig Torso with Soccer Shirt ""10"" and ""ZIDANE"" Print",13 +973ph0,"Minifig Torso with Hogwarts Uniform Print Harry Potter, Hogwarts School of Witchcraft and Wizardry,tie,sweater",13 +973ph1,"Minifig Torso with Gryffindor Uniform Print Harry Potter, Hogwarts School of Witchcraft and Wizardry,Gryffindor House, Godric Gryffindor, Lion, Red and Gold",13 +973ph2,"Minifig Torso with Slytherin Uniform Print Harry Potter, Hogwarts School of Witchcraft and Wizardry,tie,sweater,Slytherin House, Salazar Slytherin, Snake, Green and Silver",13 +973ph3,Torso Harry Potter Voldemort Robe Print,13 +973ph4,Minifig Torso with Black Tie and Jacket with H Crest Print,13 +973ph5,Minifig Torso HP with Jacket and Light Grey Sweater Print,13 +973ph6,Minifig Torso HP with Jacket and Dark Red Sweater Print,13 +973ph7,Minifig Torso HP with Grey Sweater and Light Flesh Neck Print,13 +973phb,"Minifig Torso with Purple Greatcoat Gray Outline Print Harry Potter, Severus Snape, Hogwarts, Slytherin",13 +973pm0,Minifig Torso with LOTR Leather Armor with Buckle Print,13 +973pm1,"Minifig Torso with LOTR Cloak, Rope and Belt Print",13 +973pm5,"Minifig Torso with LOTR Armor, Brown Belt & Gold Buckle Print",13 +973pm6,Torso LotR Rohan Soldier Mail Armor with Belt Print,13 +973pm7,"Torso LotR Coat with Evenstar Pendant, Double Button Shirt and Belt Print (Aragorn)",13 +973pn0,Torso Castle Ninja Samurai Dragon Robe Print,13 +973pn0c01,Torso Castle Ninja Samurai Dragon Robe Print / White Arms / Yellow Hands,13 +973pn1,"Torso Castle Ninja Samurai Robe, Sash and Dagger Print (Shogun)",13 +973pn1c01,"Torso Castle Ninja Samurai Robe, Sash and Dagger Print (Shogun) / Black Arms / Yellow Hands",13 +973pn1c02,"Torso Castle Ninja Samurai Robe, Sash and Dagger Print (Shogun) / Red Arms / Yellow Hands",13 +973pn5,"Minifig Torso with Ninja Wrap, Silver Shuriken, and Dagger Print Castle, throwing star, Japan, Japanese, honor, ki,assassin, spy, master of disguise, ninjitsu, robe",13 +973pn6,"Minifig Torso with Ninja Wrap, Gold Shuriken, and Armor Print Castle, throwing star, Japan, Japanese, honor, ki, assassin, spy, master of disguise, ninjitsu, dagger, scale mail, robe",13 +973pn7,"Minifig Torso with Ninja Wrap, Gold Shuriken, and Dagger Print",13 +973pq0,Minifig Torso with Bandage and Gold Necklace Print,13 +973pq2,Minifig Torso with DarkBlue Muscles and Gold Necklace Print,13 +973pq3,"Minifig Torso with Waistcoat, White Shirt and Bandolier Print",13 +973pq4,"Minifig Torso with Tank Top, Braces & Yellow Skin Print",13 +973pq5,"Minifig Torso with Aviator Jacket w/ Eagle/""SMH"" on Back Print",13 +973pq6,"Minifig Torso with Blouse, Belt and Necklace Print",13 +973pq7,"Minifig Torso with Safari Shirt, Tan Bandana & Compass Print",13 +973pr0,Minifig Torso with SW Closed Shirt and Brown Belt Print,13 +973pr0001c01,Torso Batman Logo in Yellow Oval with Yellow Belt Front and Back Pattern / Dark Bluish Gray Arms / Black Hands,13 +973pr0002c01,"Torso Batman Female Outline, Silver Zipper with Round Pull and Belt with Cat Buckle Pattern / Black Arms / Black Hands",13 +973pr0019c01,"Torso Bare Chest Muscles, Dark Green Tartan Kilt, Dark Brown Diagonal Belt and Batman Logo in Yellow Oval Pattern / Light Flesh Arms / Light Flesh Hands",13 +973pr0020c01,"Torso Princess Corset with Medium Blue Panels, Pink Bow, Pearl Necklace and Gold Belt Print / White Arms / Yellow Hands",13 +973pr0030c01,"Torso Zipper Jacket with 2 Pockets, Reflective Stripes and Star Shaped Stains Print / Dark Blue Arms / Dark Bluish Gray Hands",13 +973pr0040c01,Torso Female Corset with Pendant Print / Yellow Arms / Yellow Hands,13 +973pr0050c01,Torso Vest with 3 Buttons and Black String Tie Print / White Arms / Yellow Hands,13 +973pr0060c01,Torso Female Pinstriped Suit Jacket over White Shirt Print / Dark Blue Arms / Yellow Hands,13 +973pr0070c01,Torso with Olive Green Stained Shirt and Apron Print,13 +973pr0080c01,Torso Female Top with 2 White Buttons and Black Straps Print / Yellow Arms / Yellow Hands,13 +973pr0090c01,Torso with Gold Crown and Silver Armour Print / Blue Arms / Black Hands,13 +973pr0100c01,Torso with Gray/Blue Tunic and Brown Belt Print / Blue Arms / Black Hands,13 +973pr0110c01,Torso Overalls Blue over Crew Neck Shirt with Drainpipe Print / Tan Arms / Yellow Hands,13 +973pr0120c01,Torso Hospital Scrubs with Stethoscope and ID Badge Print / Sand Blue Arms / Yellow Hands,13 +973pr0140c01,Torso Torn Sand Blue Overalls over Open Shirt Print (Hank Haystack) / Dark Red Arms / Yellow Hands,13 +973pr0145c01,Torso Jail Stripes with Number 23768 Print / White Arms / Yellow Hands,13 +973pr0150c01,Torso Plaid Flannel Shirt with Buttons over Black T Shirt with Blacktron 2 Logo Print / Dark Red Arms / Yellow Hands,13 +973pr0170c01,Torso with Iron Man 3 Print / Dark Blue Arms / Dark Red Hands,13 +973pr0190c01,Torso Race Suit with Dark Bluish Gray Belt and Black and White Swirls Print / Lime Arms / Dark Bluish Gray Hands,13 +973pr0230c01,Torso Batman Nightwing Blue V Logo and Muscles Pattern / Blue Arms / Black Hands,13 +973pr0250c01,Torso Dark Red Chequered Shirt With Tool Belt Print / Dark Red Arms / Yellow Hands,13 +973pr0290c01,"Torso Layered Jedi Robe Upper, Reddish Brown Undershirt, Reddish Brown Belt Print / Tan Arms / Light Flesh Hands",13 +973pr0294c01,"Torso - Batman Logo, Muscles Outline and Gold Utility Belt Print / Dark Bluish Gray Arms / Dark Bluish Gray Hands",13 +973pr0295c01,"Torso Batman 'R' Symbol, Muscles Outline and Belt with Pockets Print / Red Arms / Green Hands",13 +973pr0296c01,Torso Batman Female Logo with Body Armor and Gold Belt Print / Black Arms / Pearl Gold Hands,13 +973pr0297c01,"Torso Batman Suit with Blue Vest, Orange Shirt and Green Bow Tie Print / Dark Purple Arms / White Hands",13 +973pr0298c01,Torso Batman Safety Vest with 'THE JOKER DESTRUCTION' Print / White Arms / Black Hands,13 +973pr0300c01,Torso Imperial Uniform Print / Black Arms / Light Flesh Hands,13 +973pr0301c01,Torso Batman Poison Ivy Plant Pattern / Light Flesh Arms / Light Flesh Hands,13 +973pr0400c01,Torso Castle Fantasy Era Peasant Shirt with Dark Brown Collar and Rope Belt Print / Dark Tan Arms / Yellow Hands,13 +973pr0410c01,"Torso Castle Fantasy Era Corset with Reddish Brown Laces, Female Neckline Print / White Arms / Yellow Hands",13 +973pr0420c01,Torso Castle Fantasy Era Blacksmith Apron and Front Lace Up Shirt Print / Yellow Arms / Black Hands,13 +973pr0430c01,"Torso Castle Fantasy Era Gold Crown on Dark Blue, Medium Blue Quarters, Collar Print / Light Bluish Gray Arms / Yellow Hands",13 +973pr0440c01,Torso Ninjago Ribs and Purple Belt and Number 5 Print / Black Arms / Yellow Hands,13 +973pr0450c01,Torso Hoth Rebel Jacket with Pockets Print / Light Bluish Gray Arms / White Hands,13 +973pr0460c01,Torso Hoth Rebel Jacket with White Scarf and Tan Belt Print / Tan Arms / White Hands,13 +973pr0470c01,Torso Clone Trooper Armour Print / White Arms / Black Hands,13 +973pr0480c01,Torso Clone Trooper Armour with Orange Markings Print / Orange Arms / Black Hands,13 +973pr0490c01,Torso Plain / Medium Blue Arms / Medium Blue Hands,13 +973pr0510c01,Torso SW Wrap-Around Tunic and Utility Belt with Large Pouch Print / White Arms / Light Flesh Hands,13 +973pr0511c01,Torso with Black Panda Suit Print / Black Arms / Black Hands,13 +973pr0512c01,Torso Corset with Orange Bow and Gold Skull Necklace Print / Black Arms / Black Hands,13 +973pr0520c01,Torso SW Armour Stormtrooper Print / White Arms / Black Hands,13 +973pr0530c01,"Torso Old Obi-Wan Light Flesh Neck, Brown Belt Print / Tan Arms / Light Flesh Hands",13 +973pr0579c01,Torso SW Armor Clone Trooper Print / White Arms / Black Hands,13 +973pr0600c01,Torso Business Suit with White Shirt and Red Tie Print / Dark Bluish Gray Arms / Yellow Hands,13 +973pr0601c01,"Torso with Cat Sweater, Cat Hair and Bum-Bag Print / Bright Pink Arms / Yellow Hands",13 +973pr0650c01,Torso Chima Eagle Armour with Chi Orb / White Arms / Yellow Hands,13 +973pr0652c01,"Torso Formal Jacket with Black Waistcoat, White Shirt, Bow Tie and Pocket Watch Chain Print / Black Arms / Yellow Hands",13 +973pr0656c01,Torso Octan Racing Suit with Red and Green Stripe Print / Green Arms / Dark Bluish Gray Hands,13 +973pr0706c01,Torso SW Weequay Armor with Silver Lines Print / Dark Blue Arm and Dark Bluish Gray Hand Left / Pearl Gold Arm and Hand Right ,13 +973pr0801c01,Torso Team GB Shirt with Muscles Outline and Belt with 'GB' Print / Yellow Arms / Blue Boxing Gloves,13 +973pr0802c01,"Torso Female Dress with Brown Laced Collar, Belt and Pouch Print / Dark Tan Arms / Yellow Hands",13 +973pr0803c01,Torso Zip Jacket with Red Star in Blue Circle with Wings Print / White Arms / Red Hands,13 +973pr0804c01,"Torso Bare Chest with Muscles Outline, Green Sash and Aztec Feather Necklace Print / Yellow Arms / Yellow Hands",13 +973pr0805c01,Torso Shirt 3 Flowers over Yellow and Silver Stripe Print / Yellow Arms / Yellow Hands,13 +973pr0806c01,Torso Mermaid Shell Bra and Pink Snail Necklace Print / Yellow Arms / Yellow Hands,13 +973pr0807c01,Torso Jacket Open with Gold Buttons and Anchor over Tan Sweater Print / Dark Blue Arms with Gold Stripes / Yellow Hands,13 +973pr0808c01,Torso Ninjago Dragon Clasps and Red Ties Front and Dragon Back Print / White Arms / Yellow Hands,13 +973pr0809c01,Torso Clone Trooper Armour with Dark Red Details and Gray Belts Print / Dark Red Arm Left / White Arm Right / Black Hands ,13 +973pr0810c01,Torso Red Imperial Royal Guard Robe Print / Dark Red Arms / Dark Red Hands,13 +973pr0811c01,Torso Imperial Gunner Combat Suit Print / Black Arms / Black Hands,13 +973pr0812c01,"Torso Reddish Brown Apron with Coffee Shop Badge, 'Larry' Name Badge,and Pocket Print / White Arms / Yellow Hands",13 +973pr0813c01,"Torso with Black Jacket, White Shirt and Red Bow Tie and Cummerbund Print / Black Arms / White Hands",13 +973pr0814c01,Torso Wedding Dress Robe with Gold Print and Necklace / Yellow Arms / Yellow Hands,13 +973pr0817c01,Torso - Racing Suit with Stylised Lighning Bolt and Zip Print / Dark Azure / Dark Bluish Gray Hands,13 +973pr0907c01,Torso Harry Potter Sweater and Tie Gryffindor Colors Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr0908c01,Torso Harry Potter Sweater and Green Striped Tie Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr0972c01,Torso PotC Jacket over Barnacle Encrusted Shirt Print / Dark Blue Arms / Tan Hand Right / Medium Dark Flesh Hand Crab Pincer Left,13 +973pr0986c01,"Torso Suit with 2 Buttons, Gray Sides, Black Centerline Print / Dark Blue Arms / Light Flesh Hands",13 +973pr0990c01,Torso Rebel Pilot with White Flight Suit Print / Orange Arms / Black Hands ,13 +973pr1,"Minifig Torso with SW Robe, Sash and Silver Neck Clasp Print",13 +973pr1000c01,Yellowish Green Torso and Hands - Zombie,13 +973pr1079c01,MINI UPPER PART NO. 1079,13 +973pr1080c01,MINI UPPER PART NO. 1080,13 +973pr1081c01,MINI UPPER PART NO. 1081,13 +973pr1083c01,MINI UPPER PART NO. 1083,13 +973pr1099c01,Torso SW Clone Pilot Print / Sand Blue Arms / White Hands,13 +973pr1133c01,"Torso SW Jedi Robe, Waist Sash Print / Black Arms / Light Flesh Hands",13 +973pr1136c01,Torso SW Princess Leia Slave Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1142c01,Torso SW Jacket with Collar and Monocular Print (Han Solo) / Dark Blue Arms / Light Flesh Hands,13 +973pr1145c01,Torso SW Checkered Jacket with White Undershirt Print (Leia) / Tan Arms / Light Flesh Hands,13 +973pr1148c01,Torso SW TIE Pilot Print / Black Arms / Black Hands,13 +973pr1155c01,Torso Shirt Front Seamed with Patch Pockets Print / Tan Arms / Yellow Hands,13 +973pr1156c01,Torso Octan Logo and OIL Print / Blue Arms / Yellow Hands,13 +973pr1160c01,"Torso Overalls with Pen in Pocket and Safety Stripe, Shirt Print / Blue Arms / Dark Bluish Gray Hands",13 +973pr1163c01,Torso Plaid Button Shirt Print [Werewolf before change] / Dark Blue Arms / Yellow Hands,13 +973pr1164c01,"Torso Jacket with Train Logo, Three Gold Buttons, Red Tie, Pencil and Paper in Pocket Print - Dark Blue Arms - Yellow Hands",13 +973pr1166c01,Torso Blazer over Light Blue Button Down Shirt Print / Dark Blue Arms / Yellow Hands,13 +973pr1169c01,"Torso Suit Jacket, Two Buttons, Pink Top, Necklace Print / Medium Blue Arms / Yellow Hands",13 +973pr1170c01,"Torso Jacket with Zips, Black Top, Classic Space Logo, White Undershirt Print / Red Arms / Yellow Hands",13 +973pr1173c01,Torso Gravity Games with 3 White & Silver Logos Print / Dark Blue Arms / Yellow Hands,13 +973pr1182c01,Torso Safety Zipped Vest with Pockets and Blue Shirt Print / Orange Arms / Dark Bluish Gray Hands,13 +973pr1183c01,Torso Refective Safety Stripes with Pocket and Train Logo Print / Blue Arms / Yellow Hands,13 +973pr1184c01,"Torso Formal Suit with 2 Buttons, Gray Sides, Gray Seams and Tie Print / Black Arms / Yellow Hands",13 +973pr1186c01,"Torso Police Leather Jacket, Gold Badge, Radio, Belt Print / Black Arms / Dark Bluish Gray Hands",13 +973pr1187c01,Torso Fire Uniform Badge and Stripes Print with Radio / Black Arms / Yellow Hands,13 +973pr1188c01,Minifig Torso Police Jacket with Pocket and Gold Badge - Blue Tie Print / Black Arms / Yellow Hands,13 +973pr1188c02,"Torso Police Jacket with Pocket, Gold Badge and Red Tie Print / Black Arms / Yellow Hands",13 +973pr1190c01,Torso Town Vest Formal with Bow Tie Print / White Arms / Yellow Hands,13 +973pr1192c01,Torso Town Vest with Pockets and Striped Tie Print / White Arms / Yellow Hands,13 +973pr1196c01,"Torso Chef with 8 Buttons, Long Red Neckerchief Print / White Arms / Yellow Hands",13 +973pr1197c01,"Torso Town Prisoner Number 50380, Dark Bluish Gray Stripes, Buttons, Hairy Chest Print / White Arms / Yellow Hands",13 +973pr1201c01,Torso Train Blue Striped Overalls Print / White Arms / Dark Bluish Gray Hands,13 +973pr1204c01,Torso Paradisa Sailboat with Sunset Print / Yellow Arms / Yellow Hands,13 +973pr1208c01,"Torso Security Guard, Gold Badge, Blue Belt w/Radio Print / Dark Bluish Gray Arms / Black Hands",13 +973pr1211c01,Torso - Viking Mail Armour with 2 Shoulder Rondels and Crossed Belts Print / Dark Blue Arms / Yellow Hands,13 +973pr1212c01,Torso Viking Armour with Leather Collar and 3 Waist Rondels Print / Dark Red Arms / Yellow Hands,13 +973pr1213c01,Torso Viking Barbarian Armour Print / Yellow Arms / Yellow Hands,13 +973pr1214c01,Torso Viking Chain Mail and Leather Shoulder Belt with Axe Print / Sand Green Arms / Yellow Hands,13 +973pr1215c01,Torso Viking Armour with 2 Shoulder Rondels and Waist Rondel Print / Sand Blue Arms / Yellow Hands,13 +973pr1232c01,Torso Exo-Force Blue Panels with Black Edges with Dark Gray Badge Print / White Arms / Black Hands,13 +973pr1233c01,Torso Exo-Force Dark Gray Body Armor with Four Stars Print / Red Arms / Dark Bluish Gray Hands,13 +973pr1236c01,Torso SW Rebel Technician Print / Light Bluish Gray Arms / Light Flesh Hands,13 +973pr1238c01,"Torso Airplane Pilot, Suit Double Breasted, Red Tie, Gold Buttons and Logo Pin Print / Black Arms / Yellow Hands",13 +973pr1239c01,"Torso Hospital EMT Star of Life, Open Collar, Buttons, Pocket Pen Print / White Arms / Yellow Hands",13 +973pr1240c01,"Torso Airplane Crew Male, Light Blue Tie, Red Pen, Silver Logo, 3 Buttons Print / Blue Arms / Yellow Hands",13 +973pr1241c01,"Torso Hospital Lab Coat, Open Collar, Stethoscope, Pocket Pen and Thermometer Print / White Arms / Yellow Hands",13 +973pr1242c01,Torso with Ten Numb Flight Suit Print / White Arms / Black Hands,13 +973pr1243c01,Torso Rebel Pilot Flight Suit Print / Red Arms / Black Hands,13 +973pr1244c01,"Torso Mechanic Blue Overalls, Tools in Pocket Print / Medium Blue Arms / Yellow Hands",13 +973pr1245c01,Torso Zipped Jacket and 3 Pockets Print / Blue Arms / Yellow Hands,13 +973pr1246c01,Torso SW Armor Plates Green Print (Boba Fett) / Light Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr1247c01,Torso Exo-Force with 'AT.01' Print / Orange Arms / Dark Bluish Gray Hands,13 +973pr1250c01,"Torso Hospital EMT Star of Life, Zipper, Zippered Pockets, Radio Print / White Arms / Yellow Hands",13 +973pr1252c01,Torso SW Gold Body Armor Print (Lando Calrissian - Skiff Guard) / Black Arms / Reddish Brown Hands,13 +973pr1253c01,"Torso SW Shirt Open Collar, No Vest, Light Flesh Print (Han Solo) / White Arms / Light Flesh Hands",13 +973pr1254c01,Torso SW Bespin Guard Print / Blue Arms Printed / Reddish Brown Hands,13 +973pr1255c01,Torso SW Dengar Print / Light Bluish Gray Arms / White Hands,13 +973pr1257c01,"Torso SpongeBob with High Waist Blue Pants, Red Neck, Shirt Collar Print / Red Arms / Dark Bluish Gray Hands",13 +973pr1258c01,"Torso SpongeBob with Sand Green Neck, Shirt Collar Print / Sand Green Arms / Dark Bluish Gray Hands",13 +973pr1259c01,Torso SpongeBob with Belly Button (Navel) & Red Spots Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1260c01,Torso Avatar Orange Overshirt Print / Yellow Arms / Light Flesh Hands,13 +973pr1261c01,"Torso Avatar White Robe Trim and Belt, Light Blue Necklace Gem Print / Dark Blue Arms / Light Flesh Hands [3829]",13 +973pr1262c01,"Torso Avatar White Robe Trim and Belt, Brown Strap with Boomerang on Back Print / Blue Arms / Light Flesh Hands [3828]",13 +973pr1263c01,Torso SW Imperial Officer 1 Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr1264c01,Torso SW Red Robe Print (Royal Guard) / Red Arms / Black Hands,13 +973pr1267c01,Torso SW Imperial Officer 2 (Grand Moff) Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr1271c01,Torso Overalls Green Print / White Arms / Yellow Hands,13 +973pr1272c01,Torso Batman Logo with Muscles and Yellow Belt Print / Light Bluish Gray Arms / Black Hands,13 +973pr1273c01,"Torso Two Face with Black and White Split Suit Print / Black Left, White Right Arms / Dark Bluish Gray Left, Light Flesh Right Hands",13 +973pr1274c01,Torso Batman Logo in Yellow Oval with Muscles and Yellow Belt Print / Black Arms / Black Hands,13 +973pr1275c01,"Torso Batman Suit Jacket with Gray Vest, Dk Blue Bow Tie Print / Black Arms / Light Flesh Hands",13 +973pr1276c01,"Torso Batman Purple Female Outline, Ring Zipper Pull, Gray 3-Cord Belt Print / Black Arms / Black Hands",13 +973pr1277c01,Torso Batman Muscles Outline with Scales Print / Green Arms / Black Hands,13 +973pr1278c01,"Torso Batman Suit with Orange Vest, Purple Bow Tie Print / Black Arms / White Hands",13 +973pr1279c01,"Torso Batman 'R' Symbol, Yellow Clasps and Belt Print / Green Arms / Black Hands",13 +973pr1281c01,Torso Batman Shirt with Black Half Panel Print / Black Arm Left / White Arm Right / Light Flesh Hands,13 +973pr1282c01,"Torso Batman Suit with Orange Vest, Green Tie, Yellow Flower Print / Dark Purple Arms / Dark Bluish Gray Hands",13 +973pr1288,Torso Dark Purple Question Mark and Belt print / Green Arms / Dark Bluish Gray Hands,13 +973pr1289c01,Torso Batman Ripped Neck with Straw and Rope Belt Print / Reddish Brown Arms / Black Hands,13 +973pr1291c01,"Torso Exo-Force with Red Symbol, Light Bluish Gray Undershirt and Black Belt Print / White Arms / Yellow Hands",13 +973pr1300c01,"Torso Aquazone Aquaraiders II Trident, Silver Belt and Zipper Print / Medium Blue Arms / Black Hands",13 +973pr1301c01,Torso SW Rebel Pilot Print / Orange Arms / Black Hands,13 +973pr1303c01,Torso Exo-Force Gold Body Armour with Large Cog and 'AT.10' Print / Dark Green Arms / Black Hands,13 +973pr1304c01,Torso Exo-Force Gold Body Armour with Wing Logo Print / Dark Blue Arms / Black Hands,13 +973pr1306c01,Torso SW Wrinkly Jumpsuit with Black Belt and Silver Buckle Print / Light Bluish Gray Arms / Black Hands,13 +973pr1309c01,Torso SW Armor Clone Trooper with Red Mark 'Shock Trooper' Print / White Arms / Black Hands,13 +973pr1310c01,Torso SW Armor Clone Trooper with Yellow Stripe Print / White Arms / Black Hands,13 +973pr1311c01,Torso Exo-Force Gold Composite Armour with Violet Hoses Print / White Arms / Black Hands,13 +973pr1312c01,Torso Exo-Force Gold Body Armor with Amulet Print / Dark Purple Arms / Dark Bluish Gray Hands,13 +973pr1316c01,"Torso SW Jedi Robe, Silver Snaffle Bit Buckle Print (Kit Fisto) / Reddish Brown Arms / Sand Green Hands",13 +973pr1317c01,Torso Space Mars Mission Astronaut with Orange and Silver Print / White Arms / White Hands,13 +973pr1318c01,"Torso Castle Fantasy Era Scale Mail, Crown on Collar Print / Light Bluish Gray Arms / Yellow Hands",13 +973pr1320c01,"Torso Boat Anchor Logo, Blue Tie, Two Pockets Print / White Arms / Yellow Hands",13 +973pr1321c01,"Torso Castle Fantasy Era Scale Mail, Crown on Buckle, Chest Strap Print / Dark Blue Arms / Yellow Hands",13 +973pr1322c01,Torso Castle Fantasy Era Corset with Gold Crown and Trim Print (Maiden) / Dark Blue Arms / Yellow Hands,13 +973pr1324c01,"Torso Layered Shirt, Rumpled Opening, Brown Belt Print / Tan Arms / Light Flesh Hands",13 +973pr1325c01,Torso SW Naboo Fighter Jacket with Dark Bluish Gray Harness Print / Tan Arms / Reddish Brown Hands,13 +973pr1326c01,"Torso SW Closed Shirt, Brown Belt, Light Flesh Neck Print / Tan Arms / Light Flesh Hands",13 +973pr1331c01,Torso SW Vest and White Shirt with Flesh-Colored Skin Print (Han Solo) / Tan Arms / Light Flesh Hands,13 +973pr1332c01,Torso SW Loose Dress Lt Bluish Gray Folds Print (Leia) / White Arms / Light Flesh Hands,13 +973pr1337,Torso Muscles Outline with Dark Blue Suspenders and Silver Belt print / Light Flesh Arms / Black Hands,13 +973pr1338c01,Torso Batman Logo with Muscles and Yellow Belt with Snaps Print / Light Bluish Gray Arms / Dark Blue Hands,13 +973pr1339c01,Torso SW C-3PO Print / Pearl Gold Arms / Pearl Gold Hands,13 +973pr1340c01,"Torso SW Layered Shirt, White Undershirt, Waist Sash Print / Black Arms / Black Hands",13 +973pr1342c01,Torso SW Armor Shadow Trooper Print / Black Arms / Black Hands,13 +973pr1344c01,Torso SW Armor Snowtrooper Print / White Arms / White Hands,13 +973pr1345c01,Torso SW Republic Cruiser Crew Print / Blue Arms / Light Flesh Hands,13 +973pr1346c01,Torso SW AT-AT Driver Print / Dark Bluish Gray Arms / White Hands,13 +973pr1348c01,Torso SW K-3PO Print / White Arms / White Hands,13 +973pr1349c01,Torso Castle Fantasy Era Armor with Troll Skull Badge and Chains Print / Sand Green Arms / Sand Green Hands,13 +973pr1352c01,Torso Castle Fantasy Era Armor with Brown Belts and Troll Symbol Buckle Print / Sand Green Arms / Sand Green Hands,13 +973pr1353c01,Torso SpongeBob with Yellow Acorn Badge Print / Light Bluish Gray Arms / White Hands,13 +973pr1355c01,Torso Rebel Scout Shirt and Vest / Sand Blue Arms / Light Flesh Hands,13 +973pr1356c01,"Torso Postal Worker, White Envelope and Zip Print / Red Arms / Yellow Hands",13 +973pr1358ac01,Torso Layered Vest with Belt Print [SW Anakin] / Reddish Brown Arms / Black Hands,13 +973pr1358bc01,"Torso Chi Armour with Dark Bluish Gray Belts, Star and Blue Chi Jewel Print / Black Arms / Dark Purple Hand Right / Flat Silver Hook Left",13 +973pr1359c01,Torso Exo-Force Silver Body Armor with Blue Camouflage Print / White Arms / Black Hands,13 +973pr1360c01,Torso Exo-Force Silver Body Armour with Light Orange Camouflage Print / Dark Red Arms / Black Hands,13 +973pr1361c01,Torso Exo-Force Silver Body Armor over White Camouflage Print / Orange Arms / Black Hands,13 +973pr1362c01,Torso Exo-Force Silver Body Armour with Dark Orange Camouflage Print / White Arms / Black Hands,13 +973pr1363c01,"Torso Coast Guard City Logo, Zippers and Radio Print / Blue Arms / Yellow Hands",13 +973pr1365c01,Torso SW Darth Vader Damaged Print / Light Bluish Gray Arm Left / Black Arm Right / Black Hands,13 +973pr1367c01,"Torso SW Lt Gray Female Outline, Belt with Silver Buckle Print (Juno) / Black Arms / Light Flesh Hands",13 +973pr1369ac01,"Torso Indiana Jones Waistcoat, Jacket, Green Bow Tie & Diary Print / Dark Tan Arms / Light Flesh Hands",13 +973pr1369bc01,Torso SW Torn Shirt and Bandaged Midriff Print / Light Flesh Arm Left / Black Arm Right / Black Hands,13 +973pr1370c01,"Torso Indiana Jones Leather Jacket, Button Down Shirt Print / Dark Brown Arms / Light Flesh Hands",13 +973pr1372c01,"Torso Open Collar, 2 Pockets and Belt Print (Rene Belloq), Dark Tan Arms, Light Flesh Hands",13 +973pr1373c01,Torso Indiana Jones V-Neck with Bow and Flower Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1374c01,"Torso Indiana Jones Open Collar Shirt, Ammo Belt & Suspenders Print / Tan Arms / Light Flesh Hands",13 +973pr1375c01,"Torso Open Shirt with 2 Pockets, Stained Undershirt Print, Tan Arms, Light Flesh Hands",13 +973pr1377c01,Torso Castle Fantasy Era Dark Green Front Panel and Gold Spider Necklace Print / Black Arms / Yellow Hands,13 +973pr1379c01,"Torso Castle Fantasy Era Red and Blue Jester's Collar, Crown on Buckle Print / Red Arm Left / Blue Arm Right / Yellow Hands",13 +973pr1380c01,"Torso Open Collar, Name Badge 'JOCK' and 'AIR PIRATES' on Reverse Print / Medium Blue Arms / Light Flesh Hands",13 +973pr1381c01,"Torso Batman Black Quarters with Female Outline, White Jester's Collar Print / Red Arm Left / Black Arm Right / White Hands",13 +973pr1382c01,Torso Batman Logo with Body Armor and Yellow Belt Print / Dark Bluish Gray Arms / Black Hands,13 +973pr1383c01,Torso Agents Villain Jacket with Orange Lapels and Buckle Print / White Arm and Black Left Hand / Metallic Silver Mech Right Arm,13 +973pr1384c01,Torso Agents Villain with Zip & Villain Logo on Back Print / Orange Arms / Dark Bluish Gray Hands,13 +973pr1385c01,"Torso Agents Villain with Zipper & Silver Inset Print / Orange Arm and DBG Hand Left / Met Silver Mech Arm, Black Gun, Trans-Or Cones Right",13 +973pr1386c01,Torso Agents Uniform Male / Dark Blue Arms Print / Dark Bluish Gray Hands,13 +973pr1387c01,Torso Agents Uniform Female / Dark Blue Arms Print / Dark Bluish Gray Hands,13 +973pr1388c01,Torso Ahsoka Tano Strap Top and Belt Print / Orange Arms / Reddish Brown Hands,13 +973pr1389c01,Torso Clone Pilot Armour Flight Suit Print / White Arms / Black Hands,13 +973pr1390c01,"Torso Speed Racer Pullover Open Collar, Diagonal Wrinkles Print / Blue Arms / Light Flesh Hands",13 +973pr1391c01,Torso Speed Racer White X and Belt Print / Black Arms / Black Hands,13 +973pr1392c01,Torso Leather Jacket with Zippers and 'Mutt' on Chest Print / Black Arms / Light Flesh Hands,13 +973pr1393c01,Torso Uniform with Four Buttons and Gold Buckle with Star Print / Sand Green Arms / Light Flesh Hands,13 +973pr1395c01,"Torso Uniform with Four Buttons, Belt and Shoulder Strap Print / Dark Tan Arms / Light Flesh Hands",13 +973pr1396c01,Torso Six Button Placket with Pockets and Gold Buckle with Star Print / Light Bluish Gray Arms / Black Hands,13 +973pr1397c01,Torso Tattoos with Animal Tooth Necklace Print / Dark Orange Arms / Reddish Brown Hands,13 +973pr1398c01,Torso Indiana Jones 4 Buttons and 2 Pockets Print / White Arms / Light Flesh Hands,13 +973pr1400c01,"Torso Bare Gray Chest, Rope Belt, Light Yellow Markings with Blue Chi Jewel Print / Black Arms / Dark Bluish Gray Hands",13 +973pr1401c01,Torso SW Armor Clone Trooper with Orange Bars Print / Orange Arms / Black Hands,13 +973pr1402c01,"Torso SW Jedi Robe, White Undershirt Print (Plo Koon) / Reddish Brown Arms / Black Hands",13 +973pr1403c01,"Torso SW Jedi Robe, Dark Brown Belt Print / White Arms / Black Hands",13 +973pr1404c01,Torso SW Medium Blue Sash Print (Asajj Ventress) / Medium Blue Arms / White Hands,13 +973pr1405c01,Torso Speed Racer Chimpanzee with Silver Headphones Print / Yellow Arms / Light Flesh Hands,13 +973pr1406c01,Torso Speed Racer Gold Snakeskin Collar and Belt with Two Snakes Print / Black Arms/ Light Flesh Hands,13 +973pr1407c01,Torso Speed Racer Jumpsuit with Silver Chest Panel Print / White Arms / Light Flesh Hands,13 +973pr1408c01,Torso Speed Racer with Gold 'R' in Circle and Chest Armor Print / Black Arms / Light Flesh Hands,13 +973pr1409c01,Torso Speed Racer Red Dragon Print / White Arms / White Hands,13 +973pr1410c01,Torso Speed Racer Spaghetti Strap Top with Silver Flecks and Necklace Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1411c01,Torso Speed Racer Jacket with Dark Bluish Gray Buckles and Silver Chains Print / Black Arms / Black Hands,13 +973pr1412c01,"Torso Speed Racer Open Collar, Pocket Print / Red Arms / Light Flesh Hands",13 +973pr1413c01,Torso Speed Racer Tweed Vest with Striped Tie Print / Black Arms / Light Flesh Hands,13 +973pr1414c01,Torso Speed Racer Cardigan Ripped with White Undershirt Print / Dark Blue Arms / Light Flesh Hands,13 +973pr1415c01,Torso Speed Racer Dark Bluish Gray Pinstriped Waistcoat and Red Tie Print / Dark Blue Arms / Light Flesh Hands,13 +973pr1416c01,Torso Speed Racer Dark Orange Vest and Bow Tie Print / Black Arms / Light Flesh Hands,13 +973pr1418c01,"Torso SW Jedi Robe, Waist Sash Print / Black Arms / Light Flesh Hand Left / Black Hand Right",13 +973pr1420c01,Torso SW Armor Imperial Trooper Print / Black Arms / Black Hands,13 +973pr1422c01,Torso SW Protocol Droid Print / Black Arms / Black Hands,13 +973pr1425c01,Torso Agents Villain Wetsuit with Zipper and Green Slime Print / Black Arms / Black Hands,13 +973pr1426c01,Torso Agents Villain Female / Black Arm and Hand Left / Met Silver Mech Arm and PLG Claw Right,13 +973pr1427c01,"Torso Hospital Lab Coat, Open Collar, Stethoscope, Pocket Pen and Thermometer Print / White Arms / Dark Bluish Gray Hands",13 +973pr1432c01,Torso Power Miners Blue Vest over Sweaty Shirt Print / Yellow Arms / Dark Bluish Gray Hands,13 +973pr1433c01,Torso Power Miners Blue Vest with Tools over Sweaty Shirt Print / Yellow Arms / Dark Bluish Gray Hands,13 +973pr1434c01,Torso Power Miners Blue Vest over Shirt with Collar Print / White Arms / White Hands,13 +973pr1435c01,Torso Power Miners Blue Vest with Star over Shirt with Collar Print / Light Bluish Gray Arms / Yellow Hands,13 +973pr1436c01,Torso SW Armor Clone Trooper with Dark Red Markings and Belt Print / Dark Red Arms / Black Hands,13 +973pr1437c01,"Torso SW Layered Shirt, Robe Tie, Silver Neck Clasp Print / Black Arms / Black Hands",13 +973pr1438c01,Minifig Torso Pirate Green Stripes and Leather Straps Print / Yellow Arms / Yellow Hands,13 +973pr1439c01,"Torso Pirate Vest and Anchor Tattoo, Chest Hair Print / Yellow Arms / Yellow Hands",13 +973pr1440c01,"Torso Pirate Vest over Red and White Striped Shirt, 3 Buttons Print / Yellow Arms / Yellow Hands",13 +973pr1441c01,Torso Pirate Imperial Soldier Uniform with Knapsack on Back Print / Red Arms / Yellow Hands,13 +973pr1442c01,Torso Pirate Captain with White Ascot Black Arms Print / Yellow Hand and Pearl Gold Hook,13 +973pr1443c01,Minifig Torso Pirate Female Corset and Medium Blue Ribbon Print / White Arms / Yellow Hands,13 +973pr1444c01,Minifig Torso Pirate Mermaid Shell Bra and Star Necklace Print / Yellow Arms / Yellow Hands,13 +973pr1445c01,Torso Pirate Governor with Red Sash Print / Dark Blue Arms / Yellow Hands,13 +973pr1446c01,"Torso Green Overalls, Blue Check Shirt with Back Print / Red Arms / Yellow Hands",13 +973pr1449c01,Torso Pirate Female Dark Green Corset with Belt Print / Yellow Arms / Yellow Hands,13 +973pr1451c01,Torso SW Armor Clone Trooper Clone Gunner Print / Dark Bluish Gray Arms / Black Hands,13 +973pr1452c01,Torso Castle Fantasy Era Peasant Shirt with Dark Brown Collar and Rope Belt Print / Dark Brown Arms / Yellow Hands,13 +973pr1455c01,"Torso SpongeBob with Sand Green Neck, Shirt Collar Print / Sand Green Arms / Sand Green Hands",13 +973pr1457c01,"Torso Castle Fantasy Era Scale Mail, Crown on Buckle, Chest Strap Print / Blue Arms / Yellow Hands",13 +973pr1458c01,"Torso SW Open Robe, Dark Orange Shirt with Sash Print (Yoda) / Tan Arms / Sand Green Hands",13 +973pr1459c01,"Torso SW Layered Shirt, Brown Belt Print (Mace Windu Clone Wars) / Dark Tan Arms / Reddish Brown Hands",13 +973pr1460c01,"Torso Pirate Open Jacket over Torn White Shirt, Crossbelt Print / Blue Arms / Yellow Hands",13 +973pr1461c01,Torso SW Cape Chain Clasp Ornate and Belt Print (Dooku Clone Wars) / Black Arms / Light Flesh Hands,13 +973pr1462c01,Torso Bare Chest with Muscles Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1463c01,Torso Suit Jacket with White Tie Print / Black Arms / Light Flesh Hands,13 +973pr1464c01,Torso Indiana Jones Dress Gold Sequins and Open Back Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1465c01,Torso Indiana Jones Jacket Formal with Bow Tie and Red Flower Print / White Arms / Light Flesh Hands,13 +973pr1468c01,Torso Indiana Jones Jacket and Shirt with Buttons and Loops Print / Dark Tan Arms / Flesh Hands,13 +973pr1469c01,Torso SW Darth Vader Death Star Print / Black Arms / Black Hands,13 +973pr1470c01,"Torso City Jacket with Pockets & Pen over Sweater, Orange Stripes Print / Blue Arms / Yellow Hands",13 +973pr1471c01,Torso Castle Fantasy Era Gold Knight / Pearl Gold Arms Print / Dark Bluish Gray Hands,13 +973pr1472c01,Torso Castle Fantasy Era Squared Neckline with Gold Trim Print (Queen) / Blue Arms / Yellow Hands,13 +973pr1473c01,Torso Castle Fantasy Era Armor with Chain Necklace and Large Belt Print / Sand Green Arms / Sand Green Hands,13 +973pr1474c01,Torso Castle Fantasy Era with Tooth Necklace and Rope Belt Print / Reddish Brown Arms / Sand Green Hands,13 +973pr1475c01,"Torso Castle Fantasy Era with Gold Chain, Medallion and Gold Detail Print / Blue Arms / Yellow Hands",13 +973pr1476c01,Torso SW Armor Clone Trooper Print (Clone Wars) / Blue Arms / Black Hands,13 +973pr1479c01,Torso Classic Space Minifig Floating Print / Green Arms / Yellow Hands,13 +973pr1480c01,Torso White Top with Rainbow Stars Print / Yellow Arms / Yellow Hands,13 +973pr1482c01,Torso SW Sweater over Dark Blue Shirt and Large Yellow Belt Print / Dark Purple Arms / Green Hands,13 +973pr1484c01,Torso SW Neimoidian Viceroy Print / Orange Arms / Dark Bluish Gray Hands ,13 +973pr1485c01,"Torso Sweater Cropped with Bow, Heart Necklace Print / Red Arms / Yellow Hands",13 +973pr1487c01,Torso SW Camouflage Print Weapon and Ammunition Belts / Sand Green Arms / Dark Bluish Gray Hands,13 +973pr1489c01,Torso SW Camouflage Print Weapon Belt / Sand Green Arms / Light Flesh Hands,13 +973pr1490c01,Torso Space Police 3 Officer Print / Dark Bluish Gray Arms / Black Hands,13 +973pr1491c01,Torso Space Classic Moon with Marbling and Cracks Print / White Arms / White Hands,13 +973pr1493c02,Torso Indiana Jones Open Collar Shirt with Pockets Print / Tan Arms / Light Flesh Hands,13 +973pr1494c01,Torso Indiana Jones Blouse with Red and Pink Embroidery Print / White Arms / Light Flesh Hands,13 +973pr1495c01,Torso Indiana Jones with Loose Shirt and Tan Belt Print / White Arms / Flesh Hands,13 +973pr1496c01,Torso Indiana Jones with Layered Shirt and Red Belt Print / Black Arms / Flesh Hands,13 +973pr1497c01,Torso Indiana Jones Tattered Shirt with Thin Sash Print / Dark Brown Arms / Flesh Hands,13 +973pr1498c01,Torso Indiana Jones Open Suit Jacket with Rumpled Shirt and Dark Brown Tie Print / Light Bluish Gray Arms / Light Flesh Hands,13 +973pr1499c01,Torso Indiana Jones Suit Jacket Female with Blue Pinstripes Print / White Arms / Light Flesh Hands,13 +973pr1500c01,"Torso Indiana Jones Pinstriped Suit Jacket, Tie, Red Flower in Lapel Print / Dark Bluish Gray Arms / Flesh Hands",13 +973pr1501c01,Torso SW Armour Scout Trooper Print (Dark Bluish Gray Accents) / White Arms / Black Hands,13 +973pr1502c01,Torso SW Chancellor Palpatine Print / Dark Red Arms / Light Flesh Hands,13 +973pr1503c01,Torso Indiana Jones Open Collar Shirt with Pockets Print / Tan Arm Left / Light Flesh Arm Right / Light Flesh Hands,13 +973pr1504c01,Torso Indiana Jones V-Neck with Silver Trim and Bare Midriff Print / White Arms / Light Flesh Hands,13 +973pr1505c01,Torso Indiana Jones Robe with Red Trim and Ceremonial Necklace Print / Flesh Arms / Flesh Hands,13 +973pr1506c01,Torso Indiana Jones Muscled Torso with Red Sash and Ceremonial Knife Print / Flesh Arms / Flesh Hands,13 +973pr1507c01,Torso Indiana Jones Dark Brown Belt and Sash with Ceremonial Knife Print / Dark Red Arms / Flesh Hands,13 +973pr1508c01,"Torso Agents Villain Suit with Orange Tie and Cash in Pocket, Dollar Sign on Back Print / Black Arms / White Hands",13 +973pr1509,Torso Agents Villain (Dr. D. Zaster) Jacket with Orange Lapels and Buckle and Green Slime print / Black Arms / Black Hands,13 +973pr1510c01,Torso Agents Villain Female with Orange Stripes Print / Black Arms / Black Hands,13 +973pr1511c01,Torso Alien with Scales and Muscles Outline Print / Green Arms / Dark Bluish Gray Hands,13 +973pr1512c01,Torso Alien with Orange Skin and Black Open Vest with Alien Head Print / Orange Arms / Black Hands,13 +973pr1513c01,"Torso Leather Jacket with Zipper, Red Lines and Checks, Faded Octan Logo Print / Black Arms / Black Hands",13 +973pr1514c01,Torso Alien with Skeletal Spine and Ribs Print / Green Arms / Green Hands,13 +973pr1515c01,Torso Space Police 3 Spiked Armor Print / Sand Green Arms / Sand Green Hands,13 +973pr1516c01,Torso Alien with Skin Folds and Black Eye Print / Yellow Arms / Black Hands,13 +973pr1517c01,Torso City Shirt with Sunset and Palm Trees Print / Medium Blue Arms / Yellow Hands,13 +973pr1519c01,Torso SW Gray Harness Print (Turk Falso) / Dark Green Arms / Dark Bluish Gray Hands,13 +973pr1520c01,"Torso Female Shirt, Heart Necklace Print / Yellow Arms / Yellow Hands",13 +973pr1522c01,Torso SW Mon Calamari Officer Suit Print / Tan Arms / Reddish Brown Hands,13 +973pr1523c01,Torso SW Robe with Silver Necklace Print / White Arms / Light Flesh Hands,13 +973pr1524c01,Torso SW General Calrissian Print / Tan Arms / Reddish Brown Hands,13 +973pr1525c01,Torso SW Rebel Officer Suit Print / Sand Blue Arms / Black Hands,13 +973pr1526c01,Torso SW Rebel A-wing Pilot Print / Green Arms / Black Hands,13 +973pr1527c01,Torso SW Shirt Open with Pockets and Gray T-Shirt Print (Captain Antilles) / Tan Arms / Light Flesh Hands,13 +973pr1528c01,Torso SW Hondo Ohnaka Print / Dark Red Arms / Dark Bluish Gray Hands,13 +973pr1529c01,Torso - Western Outfit Male with Sheriff Star Print [Woody] / Long Yellow Arms / Light Flesh Hands,13 +973pr1530c01,Torso - Western Outfit Female Print [Jessie] / Long White Arms / Light Flesh Hands,13 +973pr1531c01,Torso - Western Overalls with Chequered Bandana [Stinky Pete] / Red Arms / Light Flesh Hands,13 +973pr1532c01,Torso Space Ringed Planet and Black Belt Print / Blue Arms / Lime Hands,13 +973pr1533c01,Torso Western Indians Necklace and Fringe Print / Tan Arms / Yellow Hands,13 +973pr1534c01,Torso with 3 large Red Buttons and Red Polka Dot Bow Tie Print / Lime Arms / White Hands,13 +973pr1536c01,Torso with Panels and Black and Yellow Circles Print / Yellow Arms / Yellow Hands,13 +973pr1538c01,"Torso City Diver, Black Wetsuit with Orange Stitching and Weight Belt Print / Black Arms / Dark Bluish Gray Hands",13 +973pr1539c01,"Torso with Ripped Suit Jacket, Tan Shirt and Reddish Brown Tie Print / Dark Bluish Gray Arms / Light Bluish Gray Hands",13 +973pr1540c01,Torso Space with Space Logo and Tubes Print / White Arms / White Hands,13 +973pr1541c01,Torso with White Nurse Shirt with Open Collar and Fob Watch Print / White Arms / Yellow Hands,13 +973pr1542c01,Torso Forestman with Tan Shirt Collar and Brown Belt Print / Tan Arms / Yellow Hands,13 +973pr1543c01,Torso Ninja Layered Robe with Belt Print / Black Arms / Black Hands,13 +973pr1544c01,"Torso Cowboy, Dark Tan Waistcoat, Tan Shirt, Bandolier and Silver Buckle Print / Tan Arms / Reddish Brown Hands",13 +973pr1545c01,Torso Muscles with Medium Blue Tank Top and Belt Print / Yellow Arms / White Hands,13 +973pr1546c01,Torso Male with Chest Hair and Animal Print Top with Bone Print / Yellow Arms / Yellow Hands,13 +973pr1547c01,Torso City Female Blue Top with Scoop Neck and White 'M' Print / Yellow Arms / Yellow Hands,13 +973pr1548c01,Torso with Pockets and Skull and Crossbones Print / Sand Green Arms / Yellow Hands,13 +973pr1551c01,Torso Chest Armor and Gray Abdominal Joint Print (Zurg) / Dark Purple Arms LONG / Dark Bluish Gray Hands,13 +973pr1552c01,Torso Star Command Print / White Arms / White Hands (Buzz Lightyear),13 +973pr1553c01,Torso Atlantis Squid Print / Dark Red Arms / Dark Bluish Gray Hands,13 +973pr1555c01,Torso Atlantis Manta Ray Print / Dark Blue Arms / Black Hands,13 +973pr1556c01,Torso Atlantis Shark Print / Light Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr1557c01,Torso Atlantis Diver Two Hoses Print / Lime Arms / Black Hands,13 +973pr1558c01,Torso Armor Ribbed with Disc and Two Buckles Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1559c01,"Torso Blouse with Keyhole Neckline, Ornate Vest and Red Sash Print / White Arms / Light Flesh Hands",13 +973pr1560c01,Torso Arabian Robe with Pendant and Patches Print / Dark Tan Arms / Light Flesh Hands,13 +973pr1561c01,"Torso Arabian Robe with Gold Trim at Neck, Gold Print Front and Back / Black Arms / Light Flesh Hands",13 +973pr1562c01,Torso Merchant Vest with Gold Buttons over Tan Shirt / Tan Arms / Light Flesh Hands,13 +973pr1563c01,"Torso Hassansin Leader (Zolm), Vest with Black V-Neck and Woolen Print with Wide Belt / Dark Bluish Gray Arms / Light Flesh Hands",13 +973pr1564c01,Torso Armor with Large Disc and Chain Mail Print / Dark Blue Arms / Light Flesh Hands,13 +973pr1565c01,"Torso Silver and Gold Armor on Front and Back, Wide Belt with Round Buckle / Dark Bluish Gray Arms / Light Flesh Hands",13 +973pr1566c01,Torso SW Imperial Officer 3 Print (Hoth) / Dark Bluish Gray Arms / Black Hands,13 +973pr1567c01,Torso SW Jacket with Brown Belt and Jedi Order Insignia Print / Dark Blue Arms / White Hands,13 +973pr1568c01,Torso SW Armor Clone Trooper Black Belt Print / White Arms / Black Hands,13 +973pr1569c01,Torso SW Clone Pilot with Sand Blue Belt and Printed Back Print / Sand Blue Arms / White Hands,13 +973pr1570c01,Torso SW Female Blue Stripes with Belt Print / Black Arms / Tan Hands,13 +973pr1571c01,Torso Army Jacket with 2 Pockets and Green Belt Print / Green Arms / Green Hands,13 +973pr1573c01,"Torso Hooded Sweatshirt with Medium Blue Pocket and Drawstring Front, Medium Blue Hood Back Print / White Arms / Yellow Hands",13 +973pr1574c01,Torso Space Police 3 Blacktron I Print with Blacktron II Logo / Black Arms / Dark Bluish Gray Hands,13 +973pr1575c01,"Torso Leather Jacket with Zip, Red Lines and Logo Print / Light Bluish Gray Arms / Black Hands",13 +973pr1576c01,"Torso Suit Jacket, Two Buttons, Pink Shirt and Magenta Scarf Print/ Dark Bluish Gray Arms / Yellow Hands",13 +973pr1578c01,Torso Rebel Pilot with Flight Suit Print / Orange Arms / Black Hands,13 +973pr1580c01,Torso V-Neck Shirt with Blue Overalls - Printed Back Print / White Arms / Yellow Hands,13 +973pr1581c01,"Torso Power Miners Silver Body Armor Front and Back, Drill on Upper Left Print / Light Bluish Gray Arms / Dark Bluish Gray Hands",13 +973pr1582c01,Torso Arabian Robe with Yellow and Dark Orange Draped Top and Gold Strap over Shoulder / Reddish Brown Arms / Reddish Brown Hands,13 +973pr1583c01,Torso Armor Vest with Silver and Dark Blue Print / Black Arms / Light Flesh Hands,13 +973pr1584c01,"Torso Silver Scale Mail, Sash with Swirly Print, Strap Over Shoulder / Dark Red Arms / Light Flesh Hands",13 +973pr1585c01,Torso Halter Top with Medium Blue Trim and Flowers Print / Yellow Arms / Yellow Hands,13 +973pr1586c01,Torso World Racers - White and Silver Jacket with Team Extreme Logo on Back Print / White Arms / Black Hands,13 +973pr1587c01,"Torso World Racers - Checkered Print with Flames on Front, Flames and Red Skull with White Stripes on Back / Black Arms / Yellow Hands",13 +973pr1589c01,"Torso World Racers - Checkered Print with Flames, Chest Hair on Front, Skull on Back / Black Arms / Yellow Hands",13 +973pr1590c01,Torso Camouflage Kashyyyk Clone Trooper Body Armour Print / Dark Tan Arms / Black Hands,13 +973pr1591c01,Torso World Racers - WR Logo on Orange Inset Front and Back Print / Orange Arms / Dark Bluish Gray Hands,13 +973pr1594c01,Torso Space Classic Moon Print / Blue Arms / Blue Hands,13 +973pr1597c01,Torso Orange 'M' Print (LEGO Club Max) / Dark Blue Arms / Yellow Hands,13 +973pr1603c01,Torso World Racers - Team Extreme with Vest with Belts and Radar Print / White Arms / Black Hands,13 +973pr1606c01,"Torso World Racers - White and Silver Overalls, Red Bandana / White Arms / Black Hands",13 +973pr1607c01,"Torso World Racers - Vest and Tools on Front, Skull and Flames on Back Print / Black Arms / Yellow Hands",13 +973pr1610c01,Torso World Racers - Dark Bluish Gray Overalls and Tools Print / White Arms / Black Hands,13 +973pr1614c01,Torso Hoth Rebel Jacket with White Scarf and Reddish Brown Belt Print / Light Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr1615c01,"Torso SW Jedi Robe, White Undershirt & Reddish Brown Belt Print (Nahdar Vebb) / Dark Tan Arms / Reddish Brown Hands",13 +973pr1616c01,Torso SW Layered Shirt Torn Print / Flesh Arm Left / Black Arm Right / Flesh Hand Left / Black Hand Right,13 +973pr1617c01,Torso Sweater V-Neck over Button Down Blue Shirt Print / Green Arms / Yellow Hands,13 +973pr1618c01,Torso SW Trandoshan Armor with Printed Back Print / Yellow Arms / Sand Green Hands,13 +973pr1619c01,Torso Boba Fett Armour Plates Print / Sand Blue Arms / Dark Bluish Gray Hands (Boba Fett),13 +973pr1620c01,Torso SW Shirt Open Collar with Wrinkles Print / White Arms / Light Flesh Hands [Han Solo 9516],13 +973pr1621c01,Torso Castle Kingdoms Lion Head Medallion and Fur Trim Print / White Arms / Yellow Hands,13 +973pr1622c01,Torso Castle Kingdoms Lion Head Quarters with Belt Front and Back Print / Lt Bluish Gray Arms / Yellow Hands,13 +973pr1623c01,Torso Castle Kingdoms Chest Strap and Belt Front and Back Print / Red Arms / Yellow Hands,13 +973pr1624c01,"Torso Castle Kingdoms Scale Mail, Dark Green Collar, Chain and Belt Front and Back Print / Dark Green Arms / Yellow Hands",13 +973pr1625c01,Torso Castle Kingdoms Dragon Head Quarters with Chain Front and Back Print / Black Arms / Yellow Hands,13 +973pr1626c01,"Torso Castle Kingdoms Scale Mail, Copper Shoulder Armour and Chains Front and Back Print / Black Arms / Dark Bluish Gray Hands",13 +973pr1627c01,"Torso Castle Kingdoms Blouse with Red Side Panels and Lace Trim, Ruby Necklace Print / White Arms / Yellow Hands",13 +973pr1628c01,"Torso Castle Kingdoms Armor Breastplate with Gold Lion Head, Belt Front and Back Print / Lt Bluish Gray Arms / Dk Bluish Gray Hands",13 +973pr1629c01,"Torso Castle Kingdoms Red and White Jester's Collar, Lion head on Buckle Print / Red Arm Left / White Arm Right / Yellow Hands",13 +973pr1633c01,Torso Kingdoms Female Corset with Gold Panel Front and Lace Up Back Print / Dark Red Arms / Yellow Hands,13 +973pr1635c01,"Torso Alien with Muscles Outline, Scales, Belts and Medallion Print / Sand Green Arms / Sand Green Hands",13 +973pr1637c01,Torso SW Aayla Secura Print / Medium Blue Arm Right / Dark Brown Arm Left / Dark Bluish Gray Hands,13 +973pr1638c01,Torso Alien with '245633' and Barcode Print / Orange Arms / Dark Bluish Gray Hands,13 +973pr1639c01,Torso SW Jacket with Silver Buttons and Ammo Belt Print (Cad Bane) / Dark Brown Arms / Dark Bluish Gray Hands,13 +973pr1640c01,Torso Alien with Muscles Outline and Gold Skull Print / Dark Red Arms / Black Hands,13 +973pr1644c01,Torso Western Outfit Female with Dirt Stains Print (Jessie) / White Arms LONG with Dirt Print / Light Flesh Hands,13 +973pr1646c01,Torso Mime Shirt with White Stripes and White Button Vest Print / White Arms with Black Stripes / White Hands,13 +973pr1647c01,"Torso Shirt Button Down with Pockets, Radio, Badge and Belt Print / Tan Arms / Reddish Brown Hands",13 +973pr1648c01,Torso Ancient Egyptian Golden Necklace and White Belt Print / Yellow Arms / Yellow Hands,13 +973pr1649c01,"Torso Suit with Dark Red Vest and Bow Tie, Gold Chain and Medallion Print (Vampire) / Black Arms / White Hands",13 +973pr1650c01,Torso Armor with Gold Plated Muscles Outline Print (Spartan) / Yellow Arms / Yellow Hands,13 +973pr1651c01,"Torso Jacket Formal with Bow Tie, White Vest and Boutonniere Print / Red Arms / White Hands",13 +973pr1652c01,Torso Female Swimsuit with Lifeguard Ring and Yellow 'G.T' Print / Yellow Arms / Yellow Hands,13 +973pr1653c01,Torso Karate Uniform with Black Belt Print / White Arms / Yellow Hands,13 +973pr1654c01,Torso Bare Chest with Muscles Outline Print / Yellow Arms / Yellow Hands,13 +973pr1655c01,Torso Shuttle Adventure Logo and Equipment with AEJ-581 Front and Back Print / White Arms / White Hands,13 +973pr1657c01,"Torso Safari Shirt with Red Scarf, Belt and Water Bottle Print / Tan Arms / Yellow Hands",13 +973pr1658c01,Torso Witch with Torn Collar and Green Belt with Gold Buckle Print / Black Arms / Black Hands,13 +973pr1659c01,"Torso Vest with Open Shirt, Medallion and Hairy Chest Print / Dark Purple Arms / Yellow Hands",13 +973pr1660c01,Torso SW Armor Clone Trooper with White Senate Commando Captain Markings Print / Blue Arms / Black Hands,13 +973pr1661c01,Torso Alien with Muscles and Orange Straps Print / Bright Green Arms / Orange Hands,13 +973pr1662c01,Torso SW Open Jacket w/ Pockets and White Shirt Print (Han Solo) / Dark Blue Arms / Light Flesh Hands,13 +973pr1663c01,Torso White Zipper and Ski Bib with Number 211 Print / Medium Blue Arms / Red Hands,13 +973pr1664c01,Torso Tank Top with Black Front and Weight Lifter's Belt Print / Yellow Arms / Yellow Hands,13 +973pr1665c01,"Torso Female Strapless Top with Silver Sparkles, Heart Necklace Print / Yellow Arms / Yellow Hands",13 +973pr1667c01,Torso Fire Uniform Badge and Stripes Print with Radio / Black Arms / Dark Bluish Gray Hands,13 +973pr1668c01,Torso Harry Potter Quidditch Gryffindor Ribbed Print / Dark Red Arms / Reddish Brown Hands,13 +973pr1669c01,Torso Harry Potter Quidditch Slytherin Ribbed Print / Dark Green Arms / Reddish Brown Hands,13 +973pr1670c01,Torso Harry Potter Suit and Tie Women's with Hogwarts Shield Print / Black Arms / Dark Bluish Gray Hands,13 +973pr1671c01,Torso Harry Potter Uniform Gryffindor Stripe and Shield Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr1672c01,Torso Harry Potter Jacket with Dark Green Vest and Silver Fastener Print / Black Arms / Light Flesh Hands,13 +973pr1673c01,"Torso Harry Potter Dobby, Knot Tied at Shoulder Print / Light Flesh Arms / Light Flesh Hands",13 +973pr1674c01,Torso Harry Potter Jacket with Stripe over Gray Shirt Print / Dark Blue Arms / Light Flesh Hands,13 +973pr1675c01,"Torso Harry Potter Ginny Weasley Female Knitwear, Zipper and Stitchery Print / Light Bluish Gray Arms / Light Flesh Hands",13 +973pr1676c01,Torso Harry Potter Molly Weasley Female Kitchen Wear with Apron Print / Tan Arms / Light Flesh Hands,13 +973pr1677c01,Torso Harry Potter Arthur Weasley Open Jacket over Brown Shirt Print / Sand Green Arms / Light Flesh Hands,13 +973pr1678c01,Torso Harry Potter Bellatrix Lestrange Female with Ornaments Print / Black Arms / Light Flesh Hands,13 +973pr1679c01,"Torso Open Jacket over Open Shirt, Hairy Chest Print / Black Arms / Light Flesh Hands",13 +973pr1680c01,Torso Harry Potter Dumbledore Dress Robe with Vest Print / Sand Blue Arms / Light Flesh Hands,13 +973pr1681c01,Torso Harry Potter McGonagall Green Trim Print / Dark Green Arms / Light Flesh Hands,13 +973pr1682c01,Torso Harry Potter Jacket Formal with 4 Button Vest and Brown Bow Tie Print / Black Arms / Light Flesh Hands,13 +973pr1683c01,Torso Harry Potter Jacket with Rumpled Vest and Tie Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr1684c01,Torso Harry Potter Voldemort Robe Print / Black Arms / White Hands,13 +973pr1685c01,Torso Harry Potter Professor Snape 7 Gray Buttons Print / Black Arms / Light Flesh Hands,13 +973pr1686c01,Torso Harry Potter Tartan with V-neck Print / Reddish Brown Arms / Light Flesh Hands,13 +973pr1687,Torso HP Luna Fitted Jacket with Collar - 4 Buttons on Front - 2 Buttons on Back print / Dark Pink Arms / Light Flesh Hands,13 +973pr1688c01,"Torso Harry Potter Pinstriped Suit Jacket, Dark Tan Vest and Red Tie Print / Dark Orange Arms / Light Flesh Hands",13 +973pr1689c01,Torso PotC Jacket over Vest with Buttons and Dark Brown Scarf Print / Reddish Brown Arms / Light Flesh Hands,13 +973pr1692c01,Torso Harry Potter Uniform Slytherin Shield and Stripe Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr1693c01,"Torso Police Leather Jacket, Gold Badge, Radio, Belt with 'POLICE' Print on Back / Black Arms / Dark Bluish Gray Hands",13 +973pr1694c01,"Torso Town Prisoner, Jacket over Shirt with Buttons and Dark Gray Prison Stripes Print / Light Bluish Gray Arms / Yellow Hands",13 +973pr1695c01,Torso Spacesuit with Space Logo and Equipment Print Front and Back / White Arms / Dark Bluish Gray Hands,13 +973pr1697c01,"Torso Police Shirt with Gold Badge, Dark Blue Tie and 'POLICE' Print on Back / Medium Blue Arms / Yellow Hands",13 +973pr1698c01,Torso Female Tennis Shirt with Medium Blue Print / Yellow Arms / Yellow Hands,13 +973pr1699c01,Torso Bare Chest with Body Lines Print / Yellow Arms / Yellow Hands,13 +973pr1700c01,Torso Zipper Pockets with Magenta Collar and Waist Print / White Arms / Dark Bluish Gray Hands,13 +973pr1701c01,Torso Vertical Red Stripes with Buttons and 'Clutchers' Logo Print / White Arms / Yellow Hands,13 +973pr1702c01,Torso Green Halter and Pink Flowers Print / Yellow Arms / Yellow Hands,13 +973pr1703c01,Torso Gold Medallion with Dollar Sign Print / Yellow Arms / Yellow Hands,13 +973pr1704c01,"Torso Elf with Silver Scale Mail, Light Brown Straps and Cape Print / Sand Green Arms / Yellow Hands",13 +973pr1705c01,Torso White and Green Bandage Wrapping Print / White Arms Printed / White Hands,13 +973pr1706c01,Torso Space with Tubes Print / Light Bluish Gray Arms / Lime Hands,13 +973pr1707c01,Torso Overalls Bright Orange over Sweater Print / Medium Blue Arms / Yellow Hands,13 +973pr1708c01,Torso Octan Logo Race Suit with White Stitching Print / Red Arms / White Hands,13 +973pr1709c01,"Torso Down Vest with ID Badge over Orange Sweater, Arctic Explorer Logo on Reverse Print / Orange Arms / Blue Hands",13 +973pr1710c01,Torso Wrapped Samurai Robe with Flowers Print / Dark Red Arms / Black Hands,13 +973pr1711c01,Torso Indian Vest Print / Yellow Arms / Yellow Hands,13 +973pr1712c01,Torso Bomber Jacket with Light Yellow Collar Print / Reddish Brown Arms / Yellow Hands,13 +973pr1713c01,Torso Suit with Light Bluish Gray Gorilla Body and Zipper on Back Print / Black Arms / Dark Bluish Gray Hands,13 +973pr1715c01,"Torso Ninjago Brown Rope, Gold Lion Medallion and Gray Undershirt Print / White Arms / Black Hands",13 +973pr1716c01,"Torso Ninjago Brown Rope, Gold Medallion and Dark Red Undershirt Print / Red Arms / Black Hands",13 +973pr1717c01,"Torso Ninjago Brown Rope, Gold Medallion and Dark Blue Undershirt Print / Blue Arms / Black Hands",13 +973pr1718c01,"Torso Ninjago Brown Rope, Gold Medallion and Black Undershirt Print / Black Arms / Black Hands",13 +973pr1719c01,Torso Ninjago Red Flower Medallion and Gray Fasteners Print / White Arms / Yellow Hands,13 +973pr1720c01,Torso String Vest with Surfer Print / Yellow Arms / Yellow Hands,13 +973pr1721ac01,"Torso Pharaoh's Quest Tan Waistcoat, White Shirt, Bandolier and Silver Buckle Print (Jake Raines) / Tan Arms / Yellow Hands",13 +973pr1721bc01,Torso Dark Brown Apron with Silver Buckles Print / Light Bluish Gray Arms / Black Hands,13 +973pr1722ac01,Torso Castle Kingdoms Gold Chain with Cross and Fur Trim Print / Red Arms / Yellow Hands,13 +973pr1722bc01,"Torso Pharaoh's Quest Tank Top with Suspenders, Mud and Hairy Chest Print / Yellow Arms / Yellow Hands",13 +973pr1723c01,Torso Castle Kingdoms Female Corset with Brown Apron Print / Medium Blue Arms / Yellow Hands,13 +973pr1724ac01,Torso Castle Kingdoms Peasant Vest over Light Bluish Gray Shirt Print / Light Bluish Gray Arms / Yellow Hands,13 +973pr1724bc01,"Torso Female Blouse with Buttons, Belt and Necklace Print / White Arms / Yellow Hands",13 +973pr1725ac01,"Torso Pharaoh's Quest Safari Shirt, Tan Bandana, Compass Print / Dark Tan Arms / Yellow Hands",13 +973pr1725bc01,Torso Castle Kingdoms Peasant Shirt with Brown Collar and Shoulder Bag Print / Tan Arms / Yellow Hands,13 +973pr1726c01,Torso Pharaoh's Quest Bandage Wrapping with Gold Necklace and Gold Belt Print (Amset-Ra) / Dark Tan Arms / Dark Bluish Gray Hands,13 +973pr1727c01,Torso Pharaoh's Quest Bare Chest with Muscles Outline and Gold Necklace Print (Anubis Guard) / Black Arms / Black Hands,13 +973pr1729c01,Torso Clone Trooper Armour with Sand Green Markings Print / White Arms / Black Hands,13 +973pr1731c01,Torso SW Armor Plates Dark Bluish Gray Print (Mandalorian) / Blue Arms / Dark Bluish Gray Hands,13 +973pr1732c01,Torso Pharaoh's Quest Aviator Jacket with Eagle and 'SMH' Print on Back / Dark Brown Arms / Yellow Hands,13 +973pr1733c01,Torso Clone Pilot Flight Suit Print / Black Arms / Black Hands,13 +973pr1734c01,Torso Atlantis Diver Two Hoses and Yellow Belt Print / Yellow Arms / Black Hands,13 +973pr1735c01,Torso Atlantis Hammerhead Warrior Print / Dark Bluish Gray Arms / Black Hands,13 +973pr1736c01,Torso Atlantis Barracuda with Open Mouth and Seaweed Print / Sand Green Arms / Sand Green Hands,13 +973pr1737c01,Torso Atlantis Crab with Open Mouth Print / Dark Red Arms / Reddish Brown Hands,13 +973pr1738c01,Torso Atlantis Armor with Gold Plated Muscles Outline Print / Pearl Gold Arms / Pearl Gold Hands,13 +973pr1739c01,Torso Gungan Dark Bluish Gray / Light Brown Shirts Front and Back Print / Flesh Arms / Flesh Hands,13 +973pr1740c01,Torso SW Gungan Vest with Gold Belt Front and Back Print / Flesh Arms / Flesh Hands,13 +973pr1741c01,Torso with Muscles and Purple Belt Print / Black Arms / Black Hands,13 +973pr1742c01,Torso Female with Ninja Robe and Gold Fireball Print / Yellow Arms / Yellow Hands,13 +973pr1743c01,Torso SW Embo Print / Sand Green Arms / Black Hands,13 +973pr1744c01,Torso SW Aurra Sing Print / White Arms / White Hands,13 +973pr1745c01,Torso SW Sugi Print / Light Flesh Arms / Dark Bluish Gray Hands,13 +973pr1746c01,"Torso SW Layered Shirt, Brown Belt Print (Saesee Tiin) / White Arms / Black Hands",13 +973pr1747c01,Torso SW Shaak Ti Print / Dark Brown Arms / Red Hands,13 +973pr1748c01,Torso Ninjago Gold Dragon Front and Gold Lion and 'Zane' Back Print / White Arms / Black Hands,13 +973pr1749c01,Torso Ninjago Gold Dragon Front and Gold Lion and 'Jay' Back Print/ Blue Arms / Black Hands,13 +973pr1750c01,Torso Ninjago Gold Dragon Head and Flames Front and 'Kai' Back Print / Red Arms / Black Hands,13 +973pr1751c01,Torso Ninjago Gold Dragon Front and Gold Lion and 'Cole' Back Print / Black Arms / Black Hands,13 +973pr1752c01,Torso Ice Skating Costume with White Sequins and Star Print / Bright Light Blue Right Arm / Yellow Left Arm / Yellow Hands,13 +973pr1753c01,Torso Kimono Print / Red Arms / White Hands,13 +973pr1754c01,Torso Torn Jacket and Tan Tattered Shirt with Stitches Print (Frankenstein Monster) / Reddish Brown Arms / Sand Green Hands,13 +973pr1755c01,Torso Sailor Uniform with Blue Scarf Print / White Arms / Yellow Hands,13 +973pr1756c01,Torso Viking Vest with Chain Mail and Belts Print / Yellow Arms / Yellow Hands,13 +973pr1757c01,"Torso Rounded Collar, Gold Buttons and Black Belt Print / Red Arms / Yellow Hands",13 +973pr1758c01,Torso Skull and Roses Print / Yellow Arms / Yellow Hands,13 +973pr1759c01,Torso Female Wetsuit Print / Yellow Arms / Yellow Hands,13 +973pr1760c01,Torso Soccer Octan Logo and Light Blue Stripes Print / White Arms / Yellow Hands,13 +973pr1761c01,Torso Sweatshirt with Orange Zipper and Dark Blue T-Shirt Print / Light Bluish Gray Arms / Yellow Hands,13 +973pr1762c01,Torso Lab Coat Stained with Black Buttons and Belt Print / White Arms / Black Hands,13 +973pr1763c01,"Torso Painter's Smock with Buttons, Scarf and Paint Spots Print / White Arms/ Yellow Hands",13 +973pr1764c01,Torso White Fleur de Lis and Collar with Brown Belt Print / White Arms / Black Hands,13 +973pr1765c01,Torso Safety Suit with Belt and Radioactivity Warning Print / Bright Light Orange Arms / Black Hands,13 +973pr1766c01,Torso Shirt Tattered with Werewolf Hairy Chest Print / White Right Arm / Reddish Brown Left Arm / Reddish Brown Hands,13 +973pr1768c01,"Torso Santa Jacket with Fur, Black Belt and Candy Cane Print / Red Arms / Sand Green Hands",13 +973pr1769c01,Torso SW Female Luminara Unduli Sand Blue Waist Sash Print / Black Arms / Tan Hands,13 +973pr1770c01,Torso PotC Jacket over White Open Shirt with Belts and White Sash Print / Dark Brown Arms / Light Flesh Hands,13 +973pr1771c01,"Torso Jerkin with White Open Shirt and Belts and Red, White and Blue Sash Print / White Arms / Light Flesh Hands",13 +973pr1772c01,Torso Winter Jacket with Silver Zipper Print / Bright Green Arms / Dark Bluish Gray Hands,13 +973pr1773c01,Torso Zipper Jacket with Light Blue Shirt and Ticket in Pocket Print / Dark Blue Arms / Yellow Hands,13 +973pr1774c01,Torso Alien Conquest Alien Two Hoses Print / Magenta Arms / Lime Hands,13 +973pr1775c01,Torso Alien Conquest Alien Three Lime Bars Print / Magenta Arms / Lime Hands,13 +973pr1776c01,Torso Suit Pinstriped Jacket and Yellow Tie Print / Dark Blue Arms / Yellow Hands,13 +973pr1782c01,Torso Alien Conquest Alien Shoulder Strap Print / Black Arms / Lime Hands,13 +973pr1783c01,"Torso Suit Jacket, Two Buttons, Necklace, Press Pass Print / Red Arms / Yellow Hands",13 +973pr1784c01,Torso Safety Zip Suit with 'ADU INSPECTOR' Back Print / White Arms / Dark Bluish Gray Hands,13 +973pr1785c01,Torso Alien Conquest ADU Soldier with Protection Vest Print / Dark Azure Arms / Dark Bluish Gray Hands,13 +973pr1786c01,Torso Alien Conquest Alien Diagonal Armor Print / Magenta Arm and Lime Hand Left / Mech Arm and Lime Barb Right,13 +973pr1787c01,"Torso PotC Dress with Gold and Black Trim, White Collar, Gold Medallion Print / Dark Red Arms / Light Flesh Hands",13 +973pr1788c01,Torso PotC Topcoat with Red and Gold Vest and Dark Bluish Gray Belt Print / Black Arms / Light Flesh Hands,13 +973pr1789c01,Torso PotC Open Vest with Dark Bluish Gray Embroidery and Dark Brown Belt Print / White Arms / Light Flesh Hands,13 +973pr1790c01,Torso PotC Bare Chest with Bone Necklace and Body Paint Print / Reddish Brown Arms / Reddish Brown Hands,13 +973pr1792c01,Torso PotC Officer's Coat with Gold Buttons and Brown Belt Print / Dark Blue Arms / Light Flesh Hands,13 +973pr1794c01,Torso Light Bluish Gray Armoured Bib Print / Light Bluish Gray Arms / White Hands,13 +973pr1795c01,"Torso Jedi Robe, Dark Brown Belt Print / Dark Brown Arms / Black Hands",13 +973pr1796c01,Torso with Savage Opress Print / Black Arms / Yellow Hands,13 +973pr1797c01,Torso SW Ki-Adi-Mundi Print / Tan Arms / Light Flesh Hands,13 +973pr1798c01,Torso SW Geonosian Print (7959) / Dark Tan Arms / Dark Bluish Gray Hands,13 +973pr1799c01,Torso Alien Conquest ADU Soldier with Protection Vest and Breathing Apparatus Print / Dark Azure Arms / Dark Bluish Gray Hands,13 +973pr1800c01,Torso Female with Light Purple Scarf and Gray Belt Print / Medium Blue Arms / White Hands,13 +973pr1801c01,Torso - Orange Jacket with Hood over Light Blue Sweater Print / Orange Arms / Yellow Hands,13 +973pr1802c01,"Torso Layered Robe, Orange Undershirt, Reddish Brown Belt Print / Tan Arms / Light Flesh Hands",13 +973pr1803c01,"Torso SW Light Bluish Gray Shirt, Blue Belt with Red Buckle (Padme) / Blue Arms / Light Flesh Hands",13 +973pr1804c01,Torso SW Captain Panaka Print / Sand Blue Arms / Reddish Brown Hands,13 +973pr1805c01,"Torso SW Layered Shirt, Waist Sash with Pocket Print / Black Arms / Black Hands",13 +973pr1806c01,Torso Ninjago Gold Asian Characters Front and Dragon Back Print / White Arms / Yellow Hands,13 +973pr1808c01,"Torso Layered Shirt, Brown Belt with Gold Buckle Print / Tan Arms / Light Flesh Hands",13 +973pr1810c01,Torso SW Quinlan Vos Print / Flesh Arms / Black Hands,13 +973pr1811c01,Torso PotC Vest over Dark Tan Shirt and Light Bluish Gray Scarf Print / Dark Tan Arms / Light Flesh Hands,13 +973pr1812c01,Torso SW Eeth Koth Print / White Arms / Black Hands,13 +973pr1813c01,Torso SW Quinlan Vos Print / Flesh Arms / Black Hands,13 +973pr1814c01,Torso SW Wolfpack Clone Trooper Print / Sand Blue Arms / Black Hands,13 +973pr1815c01,"MINI UPPER PART, NO. 1815",13 +973pr1816c01,Torso MBA Level 2 Logo Print / Yellow Arms / White Hands,13 +973pr1817c01,Torso SW Imperial Officer 4 (Admiral Piett) Print / Dark Bluish Gray Arms / Black Hands,13 +973pr1819c01,Torso Naboo Fighter Jacket with Sand Red Harness Print / Red Arms / Reddish Brown Hands,13 +973pr1820c01,Torso Female Dark Pink Top with Colorful Decorations Print (Eighties Style Gym Clothes) / Yellow Arms / Yellow Hands,13 +973pr1821c01,Torso Winter Sports Jacket with Silver Zipper and Pockets Print / Blue Arms/ Dark Bluish Gray Hands,13 +973pr1822c01,Torso Scales Print (Lizard Costume) / Bright Green Arms / Bright Green Hands,13 +973pr1823c01,"Torso Plaid Shirt with Buttons, Pockets and 'Kel' Print / Red Arms with Plaid Shirt Print / Yellow Hands",13 +973pr1824c01,Torso Gladiator Armor with Leather Straps Print / Yellow Arm Left / Yellow Arm with Gold Armor Print Right / Yellow Hands,13 +973pr1825c01,"Torso Red Jacket, Blue Waistcoat, Green Shirt and Yellow Tie with Blue and Green Dots Print (Clown Suit) / Red Arms / White Hands",13 +973pr1826c01,Torso Tunic with Egyptian Royal Seal and Belt Print / Yellow Arms / Yellow Hands,13 +973pr1827c01,"Torso Armor with Gold Dragon Wings, Dwarf Head Buckle and Pouches Print / Dark Bluish Gray Arms / Yellow Hands",13 +973pr1829c01,Torso Fur Jacket with Chord Clasps Print (Eskimo) / Dark Tan Arms / Yellow Hands,13 +973pr1830c01,Torso Safari Shirt with Pockets and Belt and 'Zoo' Print / Tan Arms / Yellow Hands,13 +973pr1831c01,Torso Sweater over White Shirt and Reddish Brown Tie Print / Black Arms / Yellow Hands,13 +973pr1832c01,Torso Royal Guard Uniform with Gold Buttons and White Belt Print / Red Arms / Yellow Hands,13 +973pr1833c01,Torso Pinstriped Suit Jacket and White Tie Print / Black Arms / Yellow Hands,13 +973pr1834c01,Torso Female with Animal Skin Top with Black and Silver Amulet Print / Yellow Arms / Yellow Hands,13 +973pr1835c01,Torso Plaid Coat with Layered Shoulder Detailing and Red Buttons Print / Dark Tan Arms / Yellow Hands,13 +973pr1836c01,Torso SW Checkered Jacket with White Undershirt with Creases Print (Leia) / White Arms / White Hands,13 +973pr1837c01,Torso SW Luke Bacta Tank Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1838c01,Torso SW R-3PO Print / Red Arms / Red Hands,13 +973pr1839c01,Torso PotC Bare Chest with Marine Growth Print / Sand Green Arms / Sand Green Hands,13 +973pr1840c01,Torso Bare Chest with Dark Tan and Dark Bluish Gray Belts Print / Reddish Brown Arms / Reddish Brown Hands,13 +973pr1841c01,Torso Torn Tunic with Bare Chest and Dark Brown Belt Print / Medium Dark Flesh Arms / Reddish Brown Hands,13 +973pr1842c01,Torso PotC Overcoat with Belts and Gold Fleur de Lis Buckles Print / Black Arms / Light Flesh Hands,13 +973pr1843c01,Torso PotC Uniform Jacket over Vest with Gold Trim Print / Dark Blue Arms / White Hands,13 +973pr1844c01,Torso PotC Vest with Gold Spirals over White Lace Blouse Print / White Arms / Light Flesh Hands,13 +973pr1845c01,Torso PotC King George's Officer Uniform Print / Red Arms / Light Flesh Hands,13 +973pr1846c01,Torso PotC Mermaid Sand Blue Scales Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1847c01,Torso PotC Mermaid Sand Green Scales Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1848c01,Torso PotC Jacket over Dark Green Vest and White Shirt Print / Reddish Brown Arms / Light Flesh Hands,13 +973pr1849c01,Torso PotC Jacket over Vest Fancy with Belt and Shirt Print / Black Arms / Light Flesh Hands,13 +973pr1850c01,Torso PotC Bare Chest with Skull Necklace and Body Paint Print / Reddish Brown Arms / Reddish Brown Hands,13 +973pr1851c01,Torso PotC Vest Open over Chest with Tattoos and Key Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1852c01,Torso PotC Vest with Dark Red and Gold Trim over White Shirt Print / White Arms / Light Flesh Hands,13 +973pr1854c01,Torso SpongeBob with Yellow Star on Green Circle Print / Yellow Arms / Green Hands,13 +973pr1855c01,"Torso SpongeBob with Belly Button (Navel), Ice Cream Splotches and Blue Bib with Yellow Duck Print / Light Flesh Arms / Light Flesh Hands",13 +973pr1857c01,Torso White Vertical Stripes and Red Bowtie Print / Blue Arms / Yellow Hands,13 +973pr1859c01,Torso Sand Blue Overalls with Wheat Ear in Pocket Print / White Arms / Yellow Hands,13 +973pr1860c01,Torso Harry Potter Bus Driver Jacket and Black Tie Print / Dark Purple Arms / Light Flesh Hands,13 +973pr1861c01,Torso Harry Potter Dress with Dark Bluish Gray Embroidery over Light Bluish Gray Inset Print / Black Arms / Light Flesh Hands,13 +973pr1862c01,Torso Harry Potter Sweater Hooded with Fair Isle Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr1865c01,"Torso Harry Potter Suit Jacket with Tie, 3 Buttons and Pockets Print / Dark Tan Arms / Light Flesh Hands",13 +973pr1866c01,Torso Pirate Imperial Soldier Uniform with Knapsack on Back Print / Red Arms / Light Flesh Hands,13 +973pr1867c01,Torso - Danish Flag and 'COPENHAGEN' Print / Green Arms / Yellow Hands,13 +973pr1871c01,Torso - I 'L Brick' NY Print / Green Arms / Yellow Hands,13 +973pr1873c01,Torso Harry Potter Vest Knit Herringbone with Black Tie Print / Light Bluish Gray Arms / Light Flesh Hands,13 +973pr1876c01,Torso PotC Stitched Jacket over Dark Bluish Gray Shirt / Dark Brown Arms / Dark Bluish Gray Hands,13 +973pr1877c01,Torso SW Armor Plates Print (Dengar) / Reddish Brown Arms / White Hands,13 +973pr1878c01,Torso Ninjago Snake with Yellow and Light Blue Scales Print / Dark Blue Arms / Dark Bluish Gray Hands,13 +973pr1879c01,Torso Ninjago Snake with Yellow and Dark Bluish Gray Scales Print (Slithraa) / Dark Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr1880c01,Torso Ninjago Snake with Yellow and Light Bluish Gray Scales Print (Mezmo) / Light Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr1881c01,Torso Ninjago Wrap with Dark Blue Snake Print / Light Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr1883c01,Torso Ninjago Snake with White and Large Black Scales Print / Red Arms / Red Hands,13 +973pr1884c01,Torso Ninjago Snake with White and Small Black Scales Print / White Arms / White Hands,13 +973pr1885c01,Torso Ninjago Snake Five Tooth Necklace with Expanded Red and Black Scales Print / Red Arms / White Hands,13 +973pr1886c01,Torso Snake Tooth Necklace and Red and Black Scales Print / White Arms / White Hands,13 +973pr1887c01,Torso Ninjago Snake with Silver Badge and Orange Scales Print (Skalidor) / Dark Bluish Gray Arms / Black Hands,13 +973pr1888c01,Torso Ninjago Snake with Orange Scales Print [Bytar] / Dark Bluish Gray Arms / Black Hands,13 +973pr1889c01,Torso Ninjago Snake with Dark Bluish Gray and White Scales Print / Dark Bluish Gray Arms / Black Hands,13 +973pr1890c01,Torso Snake with Black Scales Print [Snike] / Orange Arms / Black Hands,13 +973pr1891c01,Torso Ninjago Snake with Lime and Red Scales Print (Acidicus) / Dark Green Arms / Black Hands,13 +973pr1892c01,Torso Ninjago Snake with Dark Green and Red Scales Print (Lizaru) / Dark Green Arms / Black Hands,13 +973pr1893c01,Torso Ninjago Snake with Dark Green Straps and Red Vials Print (Spitta) / Dark Green Arms / Black Hands,13 +973pr1894c01,Torso Ninjago Snake with Dark Green Belt and Red Vials Print / Lime Arms / Black Hands,13 +973pr1895c01,"Torso Ninjago Wrap with Shoulder Armor and Belt, Gold Lion on Back Print / Dark Red Arms / Black Hands",13 +973pr1896c01,Torso Ninjago Wrap with Shoulder Pouch and Belt Print / Blue Arm Left / Light Bluish Gray Arm Right / Black Hands,13 +973pr1897c01,"Torso Ninjago Brown Rope and White Undershirt, Gold Lion on Back Print / White Arms / Black Hands",13 +973pr1898c01,"Torso Ninjago Wrap with Shoulder Armour and Belts, Gold Lion on Back Print / Black Arms / Black Hands",13 +973pr1899c01,Torso Ninjago Belt and Silver Diamonds Front and Golden Snake Back Print / Dark Green Arms / Black Hands,13 +973pr1900c01,Torso Ninjago Snake with Light Blue Gem and Black and Gold Scales Print (Pythor) / Black Arms / Black Hands,13 +973pr1902c01,Torso Ninjago Armour with Belts and Flames Print / Red Arms / Black Hands,13 +973pr1903c01,Torso Ninjago Fire Energy Print (NRG Kai) / Red Arms / Red Hands,13 +973pr1904c01,Torso Ninjago Red Energy Print (NRG Cole) / Black Arms / Black Hands,13 +973pr1905c01,Torso Ninjago Lightning Energy Print / Blue Arms / Blue Hands,13 +973pr1906c01,Torso Ninjago Ice Energy Print / Bright Light Blue Arms / White Hands,13 +973pr1909c01,Torso PotC Jacket over Barnacle Encrusted Sweater and Belt Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr1910c01,"Torso PotC Bare Chest with Marine Growth, Sash and Lobster on Back Print / Light Bluish Gray Arms / Dark Bluish Gray Hands",13 +973pr1914c01,"Torso Open Collar with White Shirt, Safety Stripes, EMT Star of Life on Back Print / Red Arms / Yellow Hands",13 +973pr1917c01,Torso Harry Potter Professor Sprout Smock Top with Leaves Print / Dark Tan Arms / Light Flesh Hands,13 +973pr1918c01,Torso Female Shirt with Two Buttons and Shell Pendant Print / Medium Blue Arms / Yellow Hands,13 +973pr1919c01,Torso Fire Suit with Stripe and Utility Belt Print / Bright Light Orange Arms / Dark Bluish Gray Hands,13 +973pr1939c01,Torso with Racers Crazy Demon Jacket Print / Black Arms / Yellow Hands,13 +973pr1940c01,"Torso Racers with 5 Buttons & Black Dots, Red Eyed Skull Back Print / Black Arms / Dark Bluish Gray Hands",13 +973pr1941c01,"Torso Racers with 5 Buttons, Stripes and Red Star Front and Back Print / Red Arms / Dark Bluish Gray Hands",13 +973pr1942c01,"Torso with 5 Buttons, Lime Lizard Scale Front, Lizard Head Rear Print / Green Arms / Dark Bluish Gray Hands",13 +973pr1943c01,"Torso Shirt Button Down with Pockets, Radio, Badge and Dark Brown Belt Print / Dark Tan Arms / Yellow Hands",13 +973pr1944c01,Torso Town Prisoner Shirt with Prison Stripes and Torn out Sleeves Print / Yellow Arms / Yellow Hands,13 +973pr1945ac01,Torso Town Prisoner Torn Overalls over Prison Stripes Print / White Arms / Yellow Hands,13 +973pr1945bc01,Torso Alien with Muscles Outline Print / Light Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr1946ac01,Torso Vest and Gold Sash over Medium Azure Bare Chest Print / Medium Azure Arms / Pearl Gold Hands,13 +973pr1946bc01,"Torso Jacket with Pockets, Gold Badge and Braid, Olive Green Tie Print / Dark Tan Arms / Yellow Hands",13 +973pr1947ac01,"Torso Hooded Sweatshirt with Pocket, Drawstring and Minifig Skull Print / Magenta Arms with Black Stripes / Yellow Hands",13 +973pr1947bc01,"Torso Flight Suit Jacket with Name Tag and Police Badge, Zippered Pockets Print / Dark Blue Arms / Dark Bluish Gray Hands",13 +973pr1948ac01,"Torso Jacket over White Shirt, Crossed Ammo Belts Print / Black Arms / Reddish Brown Hands",13 +973pr1948bc01,Torso Batman Logo in Yellow Oval with Muscles and Yellow Belt Front and Back Print / Light Bluish Gray Arms / Dark Blue Hands,13 +973pr1949ac01,Torso Female Black and Dark Green Robe Print (Lady Liberty) / Sand Green Arms / Sand Green Hands,13 +973pr1949bc01,"Torso Robin 'R' Symbol, Yellow Clasps and Utility Belt Print / Red Arms / Black Hands",13 +973pr1950c01,Torso Armor Vest Roman Soldier with Gold Buckles Print / Yellow Arms / Yellow Hands,13 +973pr1951ac01,"Torso Suit Jacket with Dark Green Vest, Lime Bow Tie and Gold Belt Buckle Print / Green Arms / Yellow Hands",13 +973pr1951bc01,"Torso Batman Black Quarters Front and Back with Female Outline, White Jester's Collar Print / Red Arm & Black Hand Left / Black Arm & Red Hand Right",13 +973pr1952ac01,Torso Bare Chest with Muscles Outline and Black Hair Print / Reddish Brown Arms / Reddish Brown Hands,13 +973pr1952bc01,Torso Batman Black Question Mark on Chest and Yellow Question Mark on Dark Purple Belt Print / Green Arms / Dark Purple Hands,13 +973pr1953c01,Torso Mechanic with Two Pockets and Dirt Stains Print / Dark Blue Arms / Yellow Hands,13 +973pr1954ac01,Torso Surgeon V-Neck Overalls with Wrinkles Print / Medium Azure Arms / White Hands,13 +973pr1954bc01,"Torso Batman Purple Female Outline, Ring Zipper Pull, Gray Belt Print / Black Arms / Black Hands",13 +973pr1955c01,"Torso - Robot with Silver Rivets, Yellow Gauges, Red Knobs and Yellow Screen Print / Light Bluish Gray Arms / Red Hands",13 +973pr1956c01,Torso Female Bodice with Black Dots Print / Yellow Arms / Yellow Hands,13 +973pr1957ac01,Torso Pajama 4 Buttons and Vertical Light Aqua Stripes Print / Bright Light Blue Arms with Light Aqua Stripes / Yellow Hands,13 +973pr1957bc01,"Torso Shirt with Muscles, Belt and Red and Yellow Superman Logo Print / Blue Arms / Light Flesh Hands",13 +973pr1957c01,"Torso Shirt with Muscles, Belt and Red and Yellow Superman Logo Print / Blue Arms / Light Flesh Hands",13 +973pr1958c01a,"Torso Armor Vest with Dark Green Tartan Kilt, Belts and Buckles Print / Yellow Arms / Yellow Hands",13 +973pr1958c01b,Torso Halter Top with Gold Trim and Belt Print (Wonder Woman) / Light Flesh Arms / Light Flesh Hands,13 +973pr1959c01,Torso Spacesuit with Belts and Classic Space Logo Print / Magenta Arms / Dark Bluish Gray Hands,13 +973pr1960ac01,"Torso Dark Blue Apron with White Stripes, Red Bow Tie Print / White Arms / Yellow Hands",13 +973pr1960bc01,Torso Formal 3 Button Suit with Gray Tie Print / Black Arms / Light Flesh Hands,13 +973pr1961c01,Torso Batman Logo with Muscles and Yellow Utility Belt Print / Black Arms / Black Hands ,13 +973pr1963c01,"Torso Batman Jacket with Pockets and Zipper, Joker Logo on Back Print / Lime Arms / Black Hands",13 +973pr1965c01,Torso Batman Suit with Dark Purple Half Panel and Tie Print / Dark Purple Arm Left / Orange Arm Right / Light Flesh Hands,13 +973pr1966c01,"Torso Batman Jacket with Dark Purple Half Panel, Pockets and Zippers Print / Dark Purple Arm Left / Orange Arm Right / Light Flesh Hands",13 +973pr1976c01,Torso Fire Suit with Stripe and Harness with Carabiner Print / Red Arms / Dark Bluish Gray Hands,13 +973pr1981c01,Torso SpongeBob Jacket with Two Buttons over Light Blue Shirt and Dark Green Beard Print / Green Arms / Lime Hands,13 +973pr1982c01,Torso SpongeBob Red Stripes and Belly Button (Navel) Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1983c01,Torso SpongeBob with Belly Button (Navel) and Pink Lei Print / Light Flesh Arms / Light Flesh Hands,13 +973pr1985c01,Torso Vest and Camouflage Shirt Print / Sand Green Arms / Tan Hands,13 +973pr1986c01,"Torso Stormtrooper, Detailed Armor Print / White Arms / Black Hands",13 +973pr1987c01,"Torso C-3PO with Blue, Red and White Wires Print / Pearl Gold Arms / Pearl Gold Hands",13 +973pr1988c01,Torso Wrinkled Jump Suit with Communicator Buckle Print [Lobot] / White Arms / Light Flesh Hands,13 +973pr1989c01,"Torso SW Wrinkly Jumpsuit with Pockets, Black Belt and Silver Buckle Print / Light Bluish Gray Arms / Black Hands",13 +973pr1990c01,"Torso Dino Tranquilizer Bandoleer, Belt and 'D' Print / Yellow Arms / Yellow Hands",13 +973pr1991c01,"Torso Police Shirt with Gold Badge, Dark Blue Tie and Wrinkles Print / Medium Blue Arms / Light Flesh Hands",13 +973pr1992c01,"Torso Town Prisoner Number 60675, Hoodie over Prison Stripes Print / Light Bluish Gray Arms / Yellow Hands",13 +973pr1993c01,Torso SW Imperial Officer 1 with Black Belt Print / Dark Bluish Gray Arms / Black Hands,13 +973pr1994c01,Torso Female Corset with Gold Trimmed Front and Rectangular Neckline Print / Dark Green Arms / Yellow Hands,13 +973pr1995c01,Torso Castle Kingdoms Gold Trimmed Vest with Purse and Belt Print / White Arms / Yellow Hands,13 +973pr1996c01,Torso SW Neimoidian Viceroy Robe Print / Reddish Brown Arms / Olive Green Hands,13 +973pr1997c01,Torso Jedi Robe with Detailed Belt Print / Black Arms / Light Flesh Left Hand / Black Right Hand,13 +973pr1998c01,Torso Dino Vest with String Print / Yellow Arms / Yellow Hands,13 +973pr1999c01,"Torso Dino Shirt and Harness, Dark Red Undershirt with 'D' Print / Olive Green Arms / Yellow Hands",13 +973pr2,Minifig Torso with SW Robe and Rope Belt Print,13 +973pr2001c01,Torso Blouse with Gold Sash and Flowers Print / Yellow Arms / Yellow Hands,13 +973pr2002c01,Torso SW Female Ceremonial Dress with Necklace Print (Leia) / White Arms / Light Flesh Hands,13 +973pr2003c01,Torso Santa Jacket with Belt and Candy Cane Print (Santa Darth Maul) / Red Arms / Black Hands,13 +973pr2004c01,Torso ARC Trooper Armour Print / White Arms / Black Hands,13 +973pr2005c01,Torso Clone Trooper Armour Print / Dark Red Arms / Black Hands,13 +973pr2006c01,"Torso Dino Utility Vest with Pocket, Screwdriver and Radio Print / Yellow Arms / Yellow Hands",13 +973pr2007c01,Torso SW Geonosian Zombie Print / Dark Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr2008c01,Torso SW Armor Clone Trooper with Shoulder Belt and Dark Green Markings Print / White Arms / Black Hands,13 +973pr2009c01,"Torso SpongeBob with Sand Green Neck, Shirt Collar and Pink Lei Print / Tan Arms / Sand Green Hands",13 +973pr2010c01,"Torso Dino Jacket with Strap Collar, Zipper, Phone and GPS Print / Dark Brown Arms / Yellow Hands",13 +973pr2011ac01,"Torso Dino Shirt with Pocket, Scarf, Belt and Radio Print / White Arms / Yellow Hands",13 +973pr2012c01,Torso Dino Ballistic Vest with Harness and Carabiner Print / Dark Red Arms / Yellow Hands,13 +973pr2013c01,"Torso Dino Shirt with Knot and Pockets, Belt and ID Tag Print / Yellow Arms / Yellow Hands",13 +973pr2014c01,"Torso SW Armor Stormtrooper, Detailed Armor, Dirt Stains Print / White Arms / Black Hands",13 +973pr2015c01,Torso Camouflage with Weapon and Ammunition Belts Print / Sand Green Arms / Tan Hands,13 +973pr2016c01,Torso SW Female Gray Stripes with Belt Print / Black Arms / Tan Hands,13 +973pr2017c01,Torso - Poison Ivy Plant Foliage Print - Light Flesh Arms - Light Flesh Hands (Batman),13 +973pr2018c01,"Torso Batman Muscles Outline with Black Suspenders and Silver Belt, Yellow Hoses on Back Print / Light Flesh Arms / Light Flesh Hands",13 +973pr2019c01,"Torso Batman Suit with Vest, Gray Tie Print / Sand Blue Arms / Light Flesh Hands",13 +973pr2020c01,"Torso Female Dress with Gold Belt, Shoulder Straps and Medium Azure Necklace Print / Dark Tan Arms / Yellow Hands",13 +973pr2021c01,Torso Argyle Sweater Vest with Green Bow Tie Print / Bright Light Blue Arms / Yellow Hands,13 +973pr2022c01,Torso Wedding Dress Robe with Silver Trim Print / Yellow Arms / Yellow Hands,13 +973pr2023c01,Torso Space Armor with 'LUIZ' Print / Dark Blue Arms / Dark Bluish Gray Hands,13 +973pr2024c01,Torso Female Swimsuit Print / Yellow Arms / Yellow Hands,13 +973pr2026c01,Torso Vest with Fringe over Lime Top with Pink and Blue Swirl Print / Lime Arms with Yellow Print / Yellow Hands,13 +973pr2028c01,Torso Black Wrap Dress with Belt and Dark Pink Lightning Bolt Print / Right Black Arm / Left Medium Azure Arm / Yellow Hands,13 +973pr2029c01,Torso Bunny Suit with Bright Pink Tummy and Tail on Reverse Print / White Arms / White Hands,13 +973pr2030c01,Torso Bare Chest with Muscles and Ribs Outline Print / Yellow Arms / Yellow Hands,13 +973pr2031c01,Torso Jacket and Vest with Buttons and White Shirt and Green Tie Print / Black Arms / Yellow Hands,13 +973pr2032c01,Torso Male Tennis Shirt with Lime Print / White Arms / Yellow Hands,13 +973pr2033c01,Torso White Apron with Red Ribbon Print / White Arms / Yellow Hands,13 +973pr2034c01,Torso Bare Chest with Muscles Outline and Tooth Necklace Print / Yellow Arms / Yellow Hands,13 +973pr2036c01,Torso Wedding Dress with Necklace Print / White Arms / Yellow Hands,13 +973pr2037c01,Torso Shirt with Dual-sided Utility Harness and Tools Print / Dark Blue Arms / Yellow Hands,13 +973pr2038c01,Torso Armor with White Star on Chest Print / Dark Blue Arms / Dark Red Hands,13 +973pr2039c01,"Torso Alien with Gold, Dark Brown and Silver Armor Print / Light Bluish Gray Arms / Dark Purple Hands",13 +973pr2040c01,"Torso Alien with Gold, Dark Brown and Dark Purple Armor Print / Light Bluish Gray Arms / Dark Purple Hands",13 +973pr2041c01,Torso Armor with White Triangle Print / Dark Red Arms / Dark Red Hands,13 +973pr2042c01,"Torso Suit with Dark Green Lapels, Silver and Gold Highlights Print / Dark Bluish Gray Arms / Light Flesh Hands",13 +973pr2043c01,Torso Combat Vest with Dark Red and Black Straps / Quiver Print / Light Flesh Arms / Light Flesh Hand Right / Black Hand Left,13 +973pr2044c01,Torso Armor with Silver Circles Print (Thor) / Light Bluish Gray Arms / Light Flesh Hands,13 +973pr2045c01,"Torso Female Silver Zippered Suit with Belt, Buckle and Blue Lines Print / Black Arms / Black Hands",13 +973pr2046c01,Torso Armor with White Circle Print / Dark Red Arms / Dark Red Hands,13 +973pr2047c01,Torso Spider-Man Costume 4 Pattern / Blue Arms / Red Hands ,13 +973pr2048c01,Torso Armor with Lime Circles Print (Doc Ock) / Light Bluish Gray Arms / Black Hands,13 +973pr2049c01,Torso Muscles Outline with Dragon Print (Iron Fist) / Green Arms / Light Flesh Hands,13 +973pr2050c01,Torso Muscles Outline [Wolverine] with Dark Blue Vest and Belt with Buckle Print / Light Flesh Arms / Dark Blue Hands,13 +973pr2051c01,Torso Muscles Outline with Dark Purple and Silver Collar Print / Red Arms / Dark Purple Hands,13 +973pr2053c01,Torso Cloak with Rope and Belt Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr2054c01,Torso Button Shirt with Braces Print / Sand Green Arms / Light Flesh Hands,13 +973pr2055c01,Torso Jacket and Red Waistcoat Print / Reddish Brown Arms / Light Flesh Hands,13 +973pr2056c01,Torso LotR Shirt with Brown Belt Print (Samwise) / Dark Tan Arms / Light Flesh Hands,13 +973pr2057c01,Torso LotR Leather Armour with Buckle Print / Dark Red Arms / Dark Bluish Gray Hands,13 +973pr2058c01,Torso LotR Rohan Soldier Mail Armour with Belt Print / Dark Green Arms / Light Flesh Hands,13 +973pr2059c01,Torso Glow in Dark Mummy Wrapping Print / White Arms / White Hands,13 +973pr2060c01,Torso Monster Fighters with Ammunition Belt Print / Dark Tan Arms / Yellow Hands,13 +973pr2061c01,Torso Monster Fighters Blouse with Necklace and Red Corset Print / White Arms / Yellow Hands,13 +973pr2062c01,Torso Muscles Outline with Belt and Black Sides Print / Black Arms / Red Hands,13 +973pr2063c01,Torso Leather Armour Print / Dark Tan Arms / Reddish Brown Hands,13 +973pr2064c01,Torso LotR Muscles Outline Print / Reddish Brown Arms / Reddish Brown Hands,13 +973pr2068c01,Torso Armour Plates with Back Straps and Dark Red Sash Print / Black Arms / Reddish Brown Hands,13 +973pr2069c01,Torso LotR Eomer Armour and Gold Belt Buckle Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr2070c01,Torso SW Vest with Three Pocket Bandolier Print / Tan Arms / Reddish Brown Hands,13 +973pr2071c01,Torso Monster Fighters Flight Vest with Stained Undershirt Print / Yellow Arms / Yellow Hands,13 +973pr2072c01,Torso Muscles Outline with Swamp Plants and Scales Print / Green Arms / Lime Hands,13 +973pr2073c01,"Torso Jedi Robe, Waist Sash and Black Open-Neck Shirt Print / Black Arms / Light Flesh Hands",13 +973pr2074c01,"Torso Hospital Lab Coat, Dark Azure Scrubs, ID Badge and Stethoscope Print / White Arms / Yellow Hands",13 +973pr2076c01,Torso Jacket and Yellow Waistcoat Print / Dark Green Arms / Light Flesh Hands,13 +973pr2077c01,Torso Cloak with Gray Folds Print / Black Arms / Black Hands,13 +973pr2078c01,Torso LotR Cloak with Brown Collar and Straps Print (Legolas) / Olive Green Arms / Light Flesh Hands,13 +973pr2079c01,Torso LotR Leather Straps and Ornate Belt Buckle Print [Gimli] / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr2080c01,Torso Waistcoat Long with Dark Red Shirt and Brown Belt Print / Dark Red Arms / Light Flesh Hands,13 +973pr2081c01,Torso Coat with 3 Buttons and Dark Tan Scarf Print / Dark Blue Arms / Light Flesh Hands,13 +973pr2082c01,"Torso SW Jedi Robe, Belt and Black Open-Neck Shirt Print (SW Even Piell) / Dark Brown Arms / Light Flesh Hands",13 +973pr2083c01,"Torso Shirt with Tan Tie, Red Suspenders, Brown Belt with Pocket with Ruler Print / White Arms / Yellow Hands",13 +973pr2084c01,"Torso Monster Fighters Shirt with Pinstriped Vest, Red Tie and Pocket Watch Print / White Arms / Yellow Hands",13 +973pr2085c01,Torso SW Female Jumpsuit with Belt Print (Satele Shan) / Light Flesh Arms / Dark Bluish Gray Hands,13 +973pr2086c01,"Torso Republic Trooper Armour Print, Knife Sheath Print / Red Arms / Black Hands",13 +973pr2087c01,Torso LotR Crude Platemail Armor and Dark Red Shirt Tattered Print (Moria Orc) / Olive Green Arms / Dark Bluish Gray Hands,13 +973pr2088c01,Torso SW Armor Plates with Breathing Apparatus Print (SW Darth Malgus) / Dark Bluish Gray Arms / Black Hands,13 +973pr2089c01,Torso LotR Shirt with Laces and Metallic Gold Collar Print / Dark Red Arms / Light Flesh Hands,13 +973pr2090c01,Torso LotR Elven Coat and Armour with Belt and Laces on Back Print (Haldir) / Pearl Gold Arms / Light Flesh Hands,13 +973pr2091c01,Torso Female Dress with Gold Ornaments Print / Red Arms / Light Flesh Hands,13 +973pr2092c01,Torso SW Female Dark Red Vest and Dark Tan Top Print (Senator Amidala) / Dark Tan Arms / Light Flesh Hands,13 +973pr2093c01,Torso Monster Fighters Monster with Stapled Olive Skin and Stitched Vest Print / Dark Brown Arms / Olive Hands,13 +973pr2094c01,Torso SW Armor Sith Trooper Print / Black Arms / Black Hands,13 +973pr2095c01,"Torso Layered Robe, Brown Belt Print and Padawan Braid Print / Tan Arms / Light Flesh Hands",13 +973pr2097c01,Torso Monster Fighters Scientist with Lab Coat and Tool Belt Print / White Arms / Black Hands,13 +973pr2098c01,Torso LotR Muscles Outline and White Handprint Print (Berserker) / Reddish Brown Arms / Reddish Brown Hands,13 +973pr2100c01,Torso Monster Fighters Jacket Formal with Dark Red Vest and Cravat Print / Black Arms / White Hands,13 +973pr2101c01,Torso Monster Fighters with Suspenders over Torn Shirt Print / Reddish Brown Arms / Reddish Brown Hands,13 +973pr2102c01,"Torso Monster Fighters Jacket Double Breasted, Tattered with Gold Buttons / Dark Blue Arms / Reddish Brown Hand Right / Light Bluish Gray Hand Left",13 +973pr2104c01,Torso MBA Level 3 Logo Print / Orange Arms / White Hands,13 +973pr2105c01,Torso MBA Level 4 Logo Print / Dark Blue Arms / White Hands,13 +973pr2106c01,"Torso Armor Plates, Reddish Brown Waist Sash and Ammunition Belt Print / Tan Arms / Reddish Brown Hands [Boushh 9516]",13 +973pr2107c01,Torso Black Mesh Wrap Print / Lime Arms / Lime Hands [Oola 9516],13 +973pr2108c01,Torso Armor Flat Silver with Waist Sash Print (SW Bib Fortuna) / Dark Blue Arms / Light Flesh Hands [9516],13 +973pr2109c01,"Torso LotR Coat with Evenstar Pendant, Double Button Shirt and Belt Print (Aragorn) / Dark Brown Arms / Light Flesh Hands",13 +973pr2110c01,Torso Alien Female Shoulder Armor and Belt with UFO Print / Magenta Arms / Lime Hands,13 +973pr2111c01,"Torso Female Western Shirt with Buttons, Fringe and Red Roses Print / White Arms / Yellow Hands",13 +973pr2112c01,Torso Santa Jacket with Fur and Black Belt Print / Red Arms / White Hands,13 +973pr2114c01,Torso Female Wrapped Dress with Pink Flower Print / Yellow Arms / Yellow Hands,13 +973pr2115c01,Torso Jacket and Vest over Pinstriped Shirt and Dark Purple Tie Print / Black Arms / Yellow Hands,13 +973pr2116c01,"Torso Jacket with Gold Trim, Buttons and Floral Motif Print / Dark Green Arms / Yellow Hands",13 +973pr2117c01,Torso Lederhosen over Pinstriped Shirt Print / White Arms / Yellow Hands,13 +973pr2118c01,Torso Female Red Top with Scoop Neck and Red 'A' Print / Yellow Arms / Yellow Hands,13 +973pr2119c01,Torso Diving Suit with Crossed Belts and Weight Belt Print / Medium Dark Flesh Arms / Dark Bluish Gray Hands,13 +973pr2121c01,Torso Stylized Digital Minifig Head Print / Dark Green Arms / Yellow Hands,13 +973pr2123c01,"Torso Female Zipper, 2 Zipper Pockets and Pink and White Stripes Print / Medium Lavender Arms / White Hands",13 +973pr2124c01,Torso Monster Fighters Female Corset with Lavender Trim and Dark Red Pendant Print / Dark Red Arms / White Hands,13 +973pr2125c01,Torso Checkered Shirt and Dark Brown Vest Print (Jack McHammer) / Green Arm and Yellow Hand Left / Flat Silver Mech Arm and DBG Claw Right,13 +973pr2129c01,"Torso Tailcoat and Vest Formal, White Shirt and Gray Bow Tie Print / Black Arms / Light Bluish Gray Hands",13 +973pr2130c01,Torso Female Torn Dress with Dark Tan Waist Band Print (Zombie Bride) / Light Bluish Gray Arms / Light Bluish Gray Hands,13 +973pr2132c01,Torso Torn Shirt and Vest with Red Waist Band Print (Zombie Groom) / Light Bluish Gray Arm Left / White Arm Right / Light Bluish Gray Hands,13 +973pr2134c01,Torso SW Armor Plates Dark Bluish Gray Print (Pre Vizsla) / Sand Blue Arms / Dark Bluish Gray Hands,13 +973pr2135c01,"Torso SW Jedi Robe, Reddish Brown Undershirt and Belt Print (SW Agen Kolar) / Tan Arms / Reddish Brown Hands",13 +973pr2136c01,Torso - I 'L Brick' LEGOLAND Print / Green Arms / Yellow Hands,13 +973pr2137c01,"Torso SW Layered Shirt, Datk Orange Belt Print (Saesee Tiin) / Dark Brown Arms / Light Flesh Hands",13 +973pr2138c01,"Torso SW Chancellor Palpatine, Horizontal Trim Print / Dark Brown Arms / Light Flesh Hands",13 +973pr2140c01,Torso Armor with Yellow and Dark Purple Chest Print / Dark Green Arms / Dark Purple Hands,13 +973pr2141c01,"Torso Monster Fighters with Jacket, Red Scarf and Food Stains Print / White Arms / Light Bluish Gray Hands",13 +973pr2142c01,Torso Clone Trooper Armour with Dark Bluish Gray Details Print / Dark Bluish Gray Arms / Black Hands,13 +973pr2143c01,Torso Belted Jedi Robe and Dark Tan Shirt Print / Reddish Brown Arms / Black Hands,13 +973pr2144c01,Torso - Malaysian Flag and 'MALAYSIA' Print / Green Arms / Yellow Hands,13 +973pr2145c01,Torso - I 'L Brick' ORLANDO Print / Green Arms / Yellow Hands,13 +973pr2146c01,Torso - I 'L Brick' CHICAGO Print / Green Arms / Yellow Hands,13 +973pr2147c01,Torso - I 'L Brick' ANAHEIM Print / Green Arms / Yellow Hands,13 +973pr2149c01,"Torso Muscles, Batman Logo and Utility Belt Print / Light Bluish Gray Arms / Blue Hands",13 +973pr2150c01,Torso Dark Purple Jacket with Chequered Waistcoat Print / Dark Purple Arms / White Hands,13 +973pr2151c01,Torso V-Neck Female with 3 Blue and White Stripes and Blue '49' Print / Yellow Arms with Elbow Pads / Yellow Hands,13 +973pr2153c01,Torso Space Armor with 'SHAMI' and Silver Belt Print / Lime Arms / Dark Bluish Gray Hands,13 +973pr2155c01,Torso Overalls Blue with Zippered Front Pocket Print / White Arms / Yellow Hands,13 +973pr2156c01,"Torso Police Shirt with Silver Badge, Pockets, Pen, Black Tie and Belt Print / Dark Blue Arms / Yellow Hands",13 +973pr2157c01,Torso Female Dress with Black and Silver Spots and Necklace Print / Yellow Arms / Yellow Hands,13 +973pr2158c01,"Torso Jacket Formal with Black Vest, White Shirt and Black Bow Tie Print / Black Arms / White Hands",13 +973pr2159c01,Torso Toga with Gold Clasp Print / Yellow Arms / Yellow Hands,13 +973pr2160c01,Torso Space with Orange and Silver Battle Mech Print / White Arms / Black Hands,13 +973pr2161c01,Torso Robe with Bright Pink Shirt and Black Belt Print / Red Arms / Yellow Hands,13 +973pr2162c01,Torso Mermaid Shell Bra and Sea Snail Necklace Print / Yellow Arms / Yellow Hands,13 +973pr2163c01,"Torso Jacket and Tartan Vest, Brown Tie, Half Normal, Half Torn Print / Black Arms / Yellow Hand Right / Sand Green Hand Left",13 +973pr2164c01,Torso Cyclop with Fur and Belt with Skull and Jewels Print / Olive Green Arms / Olive Green Hands,13 +973pr2165c01,Torso Female Laced Corset with White Blouse Print / White Arms / Yellow Hands,13 +973pr2166c01,Torso Spider-Man Black Shoulder Strap and Belt with Silver Pouches on Front and Back Print (Nick Fury) / Dark Blue Arms / Reddish Brown Hands,13 +973pr2167c01,Torso White Venom Logo and Muscles Print / Black Arms / Black Hands,13 +973pr2168c01,"Torso Bare Chest with Muscles Outline, Scales and Belt on Front and Back Print / Orange Arms / Green Hands",13 +973pr2169c01,Torso Armour with Round Centre Crystal and Tubes on Front and Back Print / Medium Blue Arms / Black Hands,13 +973pr2170c01,Torso Batman Logo with Body Armor and Copper Belt Print / Dark Bluish Gray Arms / Black Hands,13 +973pr2171c01,Torso Batman Body Armor with Suspenders Print / Light Flesh Arms / Black Hand Right / Light Flesh Hand Left,13 +973pr2172c01,Torso Batman Logo in White Oval with Muscles and White Belt on Front and Back Print / Light Bluish Gray Arms / White Hands,13 +973pr2173c01,Torso Batman Bulletproof Vest with 'SWAT' Print / Dark Blue Arms / Light Flesh Hands,13 +973pr2174c01,Torso Spider-Man Shirt with 3 Yellow Circles and Belt Print / Dark Blue Arms / Yellow Hands,13 +973pr2175c01,"Torso Spider-Man Open Suit Jacket with White Shirt, Red Tie and Belt Print / Sand Blue Arms / Light Flesh Hands",13 +973pr2176c01,Torso Spider-Man Body Armor with Silver Belt Print / Dark Red Arms / Light Bluish Gray Hands,13 +973pr2177c01,Torso Spider-Man Tunic with Belt and 2 Gold Clasps Print / Light Bluish Gray Arms / Light Bluish Gray Hands,13 +973pr2178c01,Torso LotR Button Shirt with Dark Tan Stripes and Brown and Dark Orange Suspenders Print / Tan Arms / Light Flesh Hands,13 +973pr2179c01,"Torso Jacket with Buttons, Olive Vest and Ascot Tie Print / Dark Red Arms / Light Flesh Hands",13 +973pr2180c01,Torso Rock Guitarist,13 +973pr2181c01,Torso Black Wrap Dress with Belt and White Lightning Bolt Print / Yellow Arms / Yellow Hands,13 +973pr2183c01,Torso Skull and Dark Pink Roses Print / Yellow Arms / Yellow Hands,13 +973pr2184c01,"Torso Ripped Suit Jacket, Tan Shirt and Dark Bluish Gray Tie Print / Reddish Brown Arms / Light Bluish Gray Hands",13 +973pr2185c01,Torso Ninjago Robe with Red and Gold Sash Print / Red Arms / Black Hands,13 +973pr2186c01,Torso Ninjago Robe with Grey and Silver Sash Print / Dark Bluish Gray Arms / Black Hands,13 +973pr2187c01,Torso Ninjago Red Armour with Lime Swirl Medallion Print / Black Arms / Black Hands,13 +973pr2188c01,Torso Reflective Stripes with Utility Belt and Fire Badge on Back Print / Black Arms / Dark Bluish Gray Hands,13 +973pr2189c01,"Torso - Reflective Striped Vest with Pockets, Radio and Fire Badge on Back Print / Black Arms / Yellow Hands",13 +973pr2190c01,"Torso Police Shirt with Dark Bluish Gray Vest, Radio and White Undershirt Print / Medium Blue Arms / Yellow Hands",13 +973pr2191c01,Torso Ninjago Robe - Blue/Silver Sash Print / Blue Arms / Black Hands,13 +973pr2192c01,Torso Ninjago Red Armour and Silver Belt with Lime Swirl Medallion Print / Red Arms / Black Hands,13 +973pr2193c01,Torso V Neck Shirt with Team GB Logo and Blue Bow Holder Print / Yellow Arms / Yellow Hand Right / Black Hand Left,13 +973pr2194c01,Torso Equestrian Jacket with Blue Sash and 'TEAM GB' Print / Black Arms / Yellow Hands,13 +973pr2196c01,"Torso Sweater Striped with Utility Belt, Rope and Keys Print / Dark Bluish Gray Arms / Yellow Hands",13 +973pr2197c01,Torso Ninjago Robe with White and Gold Details Print / White Arms / Black Hands,13 +973pr2199c01,Torso Gymnast Leotard with Large Red and Blue Team GB Logo Print / Blue Arms / Yellow Hands,13 +973pr2200c01,Torso Judo Kimono with Black Belt and Team GB Logo Print / White arms / Yellow hands,13 +973pr2201c01,Torso Tank Top with Blue Center Panel and Black Belt Print / Yellow Arms / Yellow Hands,13 +973pr2202c01,Torso Bare Chest with Muscles Outline and Drops of Sweat Print / Yellow Arms / Yellow Hands,13 +973pr2203c01,Torso Tank Top with 'TEAM GB 1948' Print / Yellow Arms / Yellow Hands,13 +973pr2204c01,Torso Polo Shirt with Red and Blue Stripes and Team GB Logo Print / White Arms / Yellow Hands,13 +973pr2207c01,"Torso LotR Jacket with Strap, Large Silver Buckle and Orange Toggle Buttons Print / Reddish Brown Arms / Dark Bluish Gray Hands",13 +973pr2208c01,"Torso LotR Vest with Fur Collar, Straps and Buckles Print / Light Flesh Arms / Dark Bluish Gray Hands",13 +973pr2209c01,Torso LotR Jacket with Silver Clasps and Large Belt Buckle Print / Dark Red Arms / Light Flesh Hands,13 +973pr2210c01,Torso Silver Chain Mail and Jeweled Belt Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr2211c01,Torso LotR Coat with Diamond Buttons and Large Silver Buckle Print / Dark Red Arms / Black Hands,13 +973pr2212c01,Torso LotR Coat with Brown Shirt and Belt with Pouch Print / Medium Dark Flesh Arms / Light Flesh Hands,13 +973pr2213c01,Torso LotR Chequered Collar and Belt with Silver Buckle Print / Dark Orange Arms / Light Flesh Hands,13 +973pr2214c01,Torso LotR Vest with Olive Green Shirt and Dark Green Sash Print / Olive Green Arms / Light Flesh Hands,13 +973pr2215c01,Torso LotR Coat with Plaid Collar and Large Silver Buckle Print / Dark Red Arms / Light Flesh Hands,13 +973pr2216c01,"Torso LotR Coat with Shoulder Strap, Silver Buckle and Dark Green Hood Print / Dark Brown Arms / Light Flesh Hands",13 +973pr2217c01,Torso LotR Elven Coat with Silver Clasp and Dark Brown Belt and Collar Print / Olive Green Arms / Light Flesh Hands,13 +973pr2218c01,Torso LotR Tank Top over Dark Green Shirt Print / Dark Green Arms / Light Flesh Hands,13 +973pr2219c01,Torso LotR Elven Coat with Reddish Brown Leaf Buttons and Belt Print / Dark Red Arms / Light Flesh Hands,13 +973pr2222c01,"Torso Ninjago Robe with Black, Green and Gold Sash and Lion Head on Back Print / Pearl Gold Arms / Pearl Gold Hands",13 +973pr2223c01,Torso Clone Trooper Armour Print / White Arms / Black Hands,13 +973pr2224c01,"Torso with Lion Style Chi Armour, Gold Belt and Chi Orb / Tan Arms / White Hands",13 +973pr2225c01,"Torso Bare Chest with Body Lines, Dark Blue Belt and Chi Orb Print / Tan Arms / White Hands",13 +973pr2226c01,"Torso Bare Chest with Body Lines, Dark Blue Belts and Chi Orb Print / Tan Arms / White Hands",13 +973pr2227c01,"Torso Bare Chest, Red Scars and Gold Belt Print / Dark Tan Arms / White Hands",13 +973pr2228c01,"Torso Bare Chest, Belt, Dark Blue Wrap with Gold and Blue Chi Jewel Print / Tan Arms / White Hands",13 +973pr2229c01,Torso Chima - Gold Scaled Armour and Blue Chi Jewel Print / White Arms / Yellow Hands,13 +973pr2230c01,"Torso Bare Chest with Muscles, Suspenders, Belt and Silver Armor with Blue Round Jewel (Chi) Print / Black Arms / Yellow Hands",13 +973pr2231c01,Torso - Muscles Outline and Gold Chi Armour Print / White Arms / Yellow Hands,13 +973pr2233c01,Torso Robe with Gold and Dark Blue Collar and Chi Jewel Print / White Arms / Yellow Hands,13 +973pr2234c01,Torso Chi Armour Vest with Silver Wolf Head and Blue Chi Jewel Print / Light Bluish Gray Arms / White Hands,13 +973pr2235c01,Torso Chima Female Outline with Silver and Dark Red Armor and Blue Round Jewel (Chi) Print / White Arms / White Hands,13 +973pr2236c01,Minifig Torso with Muscle and Chi Orb Print / Black Arms / Dark Bluish Gray Hands,13 +973pr2237c01,Torso Bare Chest with Muscles and Chi Orb Print / Light Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr2238c01,Torso Armor Vest with Silver Markings and Blue Round Jewel (Chi) Print / Dark Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr2239c01,"Torso Armor with Dark Bluish Gray Belts, Gold Raven Head and Blue Round Jewel (Chi) Print / Black Arms / Dark Purple Hands",13 +973pr2241c01,Torso Chima Raven Armour with Chi Orb Print / Black Arms / Dark Purple Hands,13 +973pr2243c01,Torso Raven Armour with Dark Bluish Gray Belts and Chi Orb Print / Black Arms / Dark Purple Hands,13 +973pr2244c01,"Torso Dark Red Vest with Star Shaped Necklace with Blue Round Jewel (Chi), Back with Gold Crocodile Jaws Print / Olive Green Arms / Dark Green Hands",13 +973pr2245c01,"Torso Muscles Outline, Chi Armour and Chi Jewel Print Print / Olive Green Arms / Dark Green Hands",13 +973pr2246c01,Torso Crocodile Skin with Medium Lavender Tube Top and Necklace with Blue Round Jewel (Chi) Print / Olive Green Arms / Dark Green Hands,13 +973pr2247c01,Torso Crocodile Skin with Dark Red Bandana and Necklace with Chi Orb Print / Olive Green Arms / Dark Green Hands,13 +973pr2248c01,Torso Chima Crocodile Skin with Dark Red Scar and Chi Orb Print / Reddish Brown Arms / Reddish Brown Hands,13 +973pr2249c01,"Torso Fire Chief Shirt with Tie, Fire Logo Badge and Belt Print / White Arms / Yellow Hands",13 +973pr2251c01,Torso Red Ninjago Armour and Silver Belt Print / Red Arms / Black Hands,13 +973pr2252c01,Torso SW Armor Clone Trooper Sergeant Black Belt and Four Olive Green Stars Print / Olive Green Arms / Black Hands,13 +973pr2253c01,Torso Sith Trooper Armour with Black and Silver Print / Dark Bluish Gray Arms / Black Hands,13 +973pr2254c01,"Torso Galaxy Squad Buggoid with Olive Green, Yellowish Green and Black Exoskeleton Print / Dar Red Arms / Dark Red Hands",13 +973pr2255c01,"Torso Galaxy Squad Buggoid with Dark Red, Yellowish Green and Black Exoskeleton Print / Olive Green Arms / Dark Red Hands",13 +973pr2256c01,"Torso Galaxy Squad Mosquitoid with Dark Red, Yellowish Green and Black Exoskeleton Print / Olive Green Arms / Dark Red Hands",13 +973pr2257c01,Torso Galaxy Squad Robot with Wide Black Belt and Orange Plates on Sides Print / Light Bluish Gray Arms / Black Hands,13 +973pr2258c01,Torso Galaxy Squad Robot with Dark Azure and Black Piping Print / Light Bluish Gray Arms / Black Hands,13 +973pr2259c01,Torso Galaxy Squad Robot with Wide Black Belt and Bright Green Plates Print / Light Bluish Gray Arms / Black Hands,13 +973pr2260c01,"Torso Galaxy Squad Robot with Red and Plack Plates, Radiator Print on Back / Light Bluish Gray Arms / Black Hands",13 +973pr2262c01,Torso Ninja Turtle Chest Print / Bright Green Arms / Bright Green Hands,13 +973pr2263c01,Torso Turtle Shell with Crack and Dark Brown Horizontal Belt Print / Green Arms / Green Hands,13 +973pr2264c01,Torso Layered Robe and Katana Scabbard Print / Black Arms / Dark Bluish Gray Hands,13 +973pr2265c01,Torso Republic Trooper Armour with Orange Stripe Print / White Arms / Black Hands,13 +973pr2266c01,Torso Turtle Shell with Dark Brown Horizontal and Diagonal Belt with Gold Ring Print / Bright Green Arms / Bright Green Hands,13 +973pr2267c01,Torso Turtle Shell with Dark Brown Horizontal and Diagonal Belt Print / Green Arms / Green Hands,13 +973pr2268c01,Torso Armor with Dark Purple Belt with Silver Clasp Print / Dark Red Arms / Dark Bluish Gray Hands,13 +973pr2269c01,Torso Kimono with Brown Belt and Reddish Brown Fur Print / Dark Red Arms / Dark Bluish Gray Hands,13 +973pr2270c01,Torso Robe with Brown Belt and Gray and Black Shoulder Plates Print / Light Flesh Arms / Dark Bluish Gray Hands,13 +973pr2271c01,Torso Female Shirt with Number 5 Print / Yellow Arms / Light Flesh Hands,13 +973pr2274c01,Torso Mechanic Race Jacket with Wrench and Black and White Checkered Print / Lime Arms / Dark Bluish Gray Hands,13 +973pr2276c01,Torso Jacket with Lightning Zig Zag and Steer / Bull's Head Buckle Print / Red Arms / Dark Bluish Gray Hands,13 +973pr2278c01,"Torso LotR Coat with Fur Lining, Shoulder Strap and Double Silver Belt Print / Dark Brown Arms / Light Flesh Hands",13 +973pr2279c01,"Torso LotR Vest with Silverwork, Large Double Belt and Buckle Print / Dark Bluish Gray Arms / Reddish Brown Hands",13 +973pr2280c01,"Torso Bare Chest with Body Lines, Ropes and Amulet Print / Dark Tan Arms / Reddish Brown Hands",13 +973pr2281c01,Torso Bare Chest with Body Lines and Chains Print / Dark Tan Arms / Dark Bluish Gray Hands,13 +973pr2282c01,Torso Bare Chest with Body Lines and Waistband Print / Dark Tan Arms / Reddish Brown Hands,13 +973pr2283c01,"Torso LotR Coat with Scarf, Braided Belt and Slingshot Print / Dark Purple Arms / Light Flesh Hands",13 +973pr2284c01,Torso SW Armor Clone Trooper with Blue 501st Legion Markings Print (Clone Wars) / Blue Arms / Black Hands,13 +973pr2285c01,Torso Armor with Suspenders and Utility Belt over Purple Shirt Print / Light Bluish Gray Arms / Reddish Brown Hands,13 +973pr2286c01,"Torso Jacket, Bare Chest and Dark Brown Sash Print / Black Arms / Black Hands",13 +973pr2287c01,Torso Batman Prisoner Jumpsuit with Belt and Pockets and 'INMATE 109370' on Reverse Print / Orange Arms / White Hands,13 +973pr2288c01,Torso Batman Female Lab Coat with 4 Buttons and ID Badge Print / White Arms / Light Flesh Hands,13 +973pr2289c01,Torso Rebel Pilot Flight Suit Print / Orange Arms / White Hands,13 +973pr2290c01,Torso Rebel B-wing Pilot with Flight Suit Print / Red Arms / Black Hands,13 +973pr2293c01,Torso TIE Pilot Flight Suit with Back Print / Black Arms / Black Hands,13 +973pr2294c01,Torso Elven Armour with Gold Collar Print / Pearl Gold Arms / Light Flesh Hands,13 +973pr2295c01,"Torso Open Robe, Medium Dark Flesh Shirt with Dark Orange Waist Sash and Hood on Back Print (Yoda) / Tan Arms / Sand Green Hands",13 +973pr2296c01,Torso Galaxy Squad Armour with Number 30 on Back Print / Dark Azure Arms / Black Hands,13 +973pr2297c01,Torso Galaxy Squad Armor with Number 30 on Back Print / Red Arms / Black Hands,13 +973pr2298c01,Torso Galaxy Squad Armor with Number 30 on Back Print / Bright Green Arms / Black Hands,13 +973pr2299c01,Torso Galaxy Squad Armor with Number 30 on Back Print / Orange Arms / Black Hands,13 +973pr2300c01,Torso Santa Jacket with Fur and Black Belt Print / Red Arms / White Hands,13 +973pr2301c01,"Torso SW Open Jacket w/ Pockets and Shirt, with Back Pockets Print (Han Solo) / Tan Arms / Light Flesh Hands",13 +973pr2302c01,Torso SW Mon Calamari Spacesuit Print / White Arms / Reddish Brown Hands (Admiral Ackbar),13 +973pr2303c01,Torso SW Rebel A-wing Pilot with Dark Tan Vest and Black Front Panel with Breathing Apparatus Print / Dark Green Arms / Dark Bluish Gray Hands,13 +973pr2304c01,Torso Robot with Kraang and Control Harness Print / Medium Blue Arms / Light Bluish Gray Hands,13 +973pr2305c01,Torso Layered Robe and Dark Red Katana Scabbard Print / Black Arms / Dark Bluish Gray Hands,13 +973pr2306c01,Torso SW Armor Clone Pilot (Clone Wars) with Blue Controls on Front Panel Print / White Arms / Black Hands,13 +973pr2307c01,Torso Batman Tunic with Rope Belt and Collar and Large Stitches Print / Reddish Brown Arms / Dark Bluish Gray Hands,13 +973pr2308c01,Torso - Formal Jacket with Lavender Bowtie Print / Black Arms / White Hands,13 +973pr2309c01,"Torso SW Jedi Robe, Reddish Brown Undershirt and Belt Print (SW Pong Krell) / White Arms / Black Hands",13 +973pr2310c01,Torso SW Bare Chest with Hair Print (SW Malakili) / Light Flesh Arms / Light Flesh Hands,13 +973pr2311c01,Torso SW Armour Snowtrooper with Printed Back Print / White Arms / Light Bluish Gray Hands,13 +973pr2312c01,Torso SW Hoth Rebel Jacket with Pockets and Brown Belt Print / Dark Tan Arms / White Hands,13 +973pr2313c01,"Torso SW Layered Shirt, Reddish Brown Undershirt, Reddish Brown Belt Print / Tan Arms / Black Hands",13 +973pr2314c01,Torso Female Armour with Gold Decorations Print / Yellow Arms / Yellow Hands,13 +973pr2315c01,Torso Crew Neck Shirt with White Overalls with Breast Pocket and Paint Stains Print / Light Bluish Gray Arms / Yellow Hands,13 +973pr2316c01,Torso 3 Black Pom Poms Print / White Arms / Black Hands,13 +973pr2318c01,Torso Black Thick Stripes Print / Bright Light Orange Arms / Black Hands,13 +973pr2319c01,"Torso Shirt with Ripped Off Sleeves, Buttons on Pockets, Jolly Roger Back Print / Yellow Arm Right / Yellow Arm with Tattoo Left / Yellow Hands",13 +973pr2320c01,Torso Button Shirt over Pot Belly with Dark Red Bow Tie and Suspenders Print / Tan Arms / Yellow Hands,13 +973pr2321c01,Torso Soldier White Crossed Belts and Red Placket with Gold Buttons Print / Dark Blue Arms / Yellow Hands,13 +973pr2323c01,Torso Fair Isle Sweater Vest with Buttons over Tan Shirt with Peter Pan Collar Print / Tan Arms / Yellow Hands,13 +973pr2325c01,"Torso Medusa Entwined Snakes, Scales and Fangs Bra Print / Sand Green Arms / Sand Green Hands",13 +973pr2326c01,Torso Blue and Lime Parachute Harness Straps and Silver Buckles Print / Dark Azure Arms / Yellow Hands,13 +973pr2327c01,Torso White Stripes with Silver Chains and Heart Necklace Print / Yellow Arms / Yellow Hands,13 +973pr2328c01,Torso Silver Zipper and Lime Paint Splotches Print / Dark Bluish Gray Arms / Yellow Hands [col10-9],13 +973pr2329c01,Torso Western Indians Blue Feather Pendant and Black Body Paint Print / Yellow Arms with Body Paint / Yellow Hands,13 +973pr2330c01,"Torso SW Armor Capitan Rex, Dirt Stains Print (Clone Wars) / Blue Arms / Black Hands",13 +973pr2331c01,Torso SW Ahsoka Vest Top with Dark Red Belt Print / Orange Arms / Reddish Brown Hands,13 +973pr2332c01,Torso SW Armor Clone Trooper with Bright Light Orange Markings Print / Bright Light Orange Arms / Black Hands,13 +973pr2333c01,Torso SW Umbaran Soldier Armor Print / White Arms / Dark Bluish Gray Hands,13 +973pr2334c01,"Torso Coast Guard, Shirt with Pockets and Copper Life Preserver Badge and Belt Print / Light Bluish Gray Arms / Yellow Hands",13 +973pr2335c01,Torso Wetsuit with Blue Sign and Lines and Dark Bluish Gray Stripes Front and Silver Zipper Back Print / Black Arms / Yellow Hands,13 +973pr2336c01,Torso SW V-Neck Shirt and Dark Brown High Tie Belt Print / Dark Blue Arms / Light Flesh Hands,13 +973pr2337c01,Torso Detailed Scout Trooper Armour Print / Black Arms / Black Hands,13 +973pr2338c01,"Torso SW Red Armor Plates, Holly and White Fur Collar Print / Red Arms / Dark Red Hands",13 +973pr2340c01,Torso Jacket and Vest with Star Badge and Dark Red Scarf Print / Black Arms / Light Flesh Hands,13 +973pr2341c01,"Torso Cavalry Uniform, 7 Buttons, Dark Red Sash and Gold Epaulets Print / Dark Blue Arms / White Hands",13 +973pr2342c01,"Torso The Lone Ranger Cavalry Uniform, 5 Buttons, Belt Print / Dark Blue Arms / White Hands",13 +973pr2343c01,"Torso Dress with Black Belt, Ruffles and Lace Shawl Print / Red Arms / Light Flesh Hands",13 +973pr2344c01,Torso Bare Chest with Beaded Necklace and Feathers Print / Medium Dark Flesh Arms / Medium Dark Flesh Hands,13 +973pr2345c01,"Torso Jacket with Vest, Star Badge and Dark Bluish Gray Tie Print / Light Bluish Gray Arms / Light Flesh Hands",13 +973pr2346c01,"Torso Jacket with Lapels, Dark Blue Vest and Dark Tan Ascot Print / Black Arms / Light Flesh Hands",13 +973pr2347c01,"Torso Shirt with Indian Beaded Armor, Dark Red Wrap and Blue Necklace Print / Tan Arms / Medium Dark Flesh Hands",13 +973pr2348c01,Torso Jacket and Striped Vest with String Tie Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr2349c01,"Torso Jacket with Pockets, Vest with Buttons and String Tie Print / Dark Bluish Gray Arms / Light Flesh Hands",13 +973pr2350c01,"Torso Spotted Dress with Buttons, Ruffles and Gold Necklace Print / Dark Red Arms / Light Flesh Hands",13 +973pr2351c01,"Torso Coast Guard, Jacket with Safety Harness and Flotation Vest Print / Orange Arms / Dark Buish Gray Hands",13 +973pr2352c01,Torso White Skunk Fur with Vines Belt and Medallion Print / Black Arms / Black Hands,13 +973pr2353c01,"Torso Tribal Vest, Dark Red Belt and White Neckerchief Print / Medium Dark Flesh Arms / White Hands",13 +973pr2354c01,"Torso Gorilla with Leaf Top and Belt, Pink Flowers and Chi Orb Print / Dark Brown Arms / Dark Bluish Gray Hands",13 +973pr2355c01,"Torso Gorilla with Utility Belt, Feather and Vine Necklace with Chi Orb Print / Dark Bluish Gray Arms / Light Bluish Gray Hands",13 +973pr2357c01,"Torso Bare Gray Chest, Rope and Vine Belt and Necklace with Blue Round Jewel (Chi) Print / White Arms / Light Bluish Gray Hands",13 +973pr2359c01,Torso SW Armor Plates Metallic Silver Print / Sand Blue Arms / Dark Blue Hands,13 +973pr2360c01,Torso SW Armor Clone Trooper Commander Black Belt and Four Yellow Stars Print / Yellow Arms / Black Hands,13 +973pr2361c01,"Torso SW Layered Shirt, Dark Bluish Gray Undershirt, Reddish Brown Belt Print / Tan Arms / Dark Bluish Gray Hands ",13 +973pr2363c01,"Torso Bare Chest with Beaded Armor, Fur and Gold Minifig Pendant Print / Medium Dark Flesh Arms / Medium Dark Flesh Hands",13 +973pr2364c01,"Torso SW Jedi Robe, Belt and Tan Undershirt Print (SW Stass Allie) / Dark Tan Arms / Reddish Brown Hands",13 +973pr2365c01,"Torso SW Robe with Side Closure, Ornate Silver Clasp and Belt Print (Count Dooku) / Black Arms / Light Flesh Hands",13 +973pr2367c01,"Torso SW Layered Shirt Yoda, Olive Green Neck Print / Tan Arms / Olive Green hands",13 +973pr2368c01,Torso Race Suit with Red Belt with Stitching and 'Airborne Spoilers' Print / Red Arms / Dark Bluish Gray Hands,13 +973pr2369c01,Torso SW Elaborate Golden Geonosian Armor Print / Dark Tan Arms / Olive Green Hands,13 +973pr2370c01,Torso - I 'L Brick' PARIS Print / Green Arms / Yellow Hands,13 +973pr2371c01,Torso - I 'L Brick' TOKYO Print / Green Arms / Yellow Hands,13 +973pr2372c01,"Torso Airplane Pilot, Shirt with Green Tie, Belt, Epaulettes and Logo Pin Print / White Arms / Yellow Hands",13 +973pr2373c01,Torso SW Armor Clone Trooper Captain Black Belt and Four Dark Red Stars Print / Dark Red Arms / Black Hands,13 +973pr2374c01,"Torso Shirt with Muscles, Red and Yellow Superman Logo and Gold Oval Belt Buckle Print / Dark Blue Arms / Light Flesh Hands",13 +973pr2375c01,"Torso Shirt with Muscles, Zod Silver Chest Emblem and Oval Belt Buckle Print / Black Arms / Dark Bluish Gray Hands",13 +973pr2376c01,Torso Olive Green Body Armor with Radio and Pockets Print / Dark Tan Arms / Light Flesh Hands,13 +973pr2377c01,Torso Female Shirt with Faora Silver Chest Emblem and Oval Belt Buckle Print / Black Arms / Dark Bluish Gray Hands,13 +973pr2378c01,"Torso Shirt with Muscles, Tor-An Silver Chest Emblem and Oval Belt Buckle Print / Black Arms / Dark Bluish Gray Hands",13 +973pr2379c01,Torso Armor with Gold Plates and Blue Circle (Arc Reactor) Print / Dark Red Arms / Dark Red Hands,13 +973pr2380c01,"Torso Armor with '002', 'FF446', 'DANGER', and White Rectangle Print / Dark Bluish Gray Arms / Dark Bluish Gray Hands",13 +973pr2381c01,Torso Muscle Outlines with Blue Circle (Arc Reactor) Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr2382c01,Torso Armor with White Circle and Gold Plates (Mark 42) Print / Dark Red Arms / Pearl Gold Hands,13 +973pr2384c01,Torso SW Armor Clone Pilot Detailed Print / White Arms / Black Hands,13 +973pr2385c01,Torso SW Female Torn Shirt Print (Padme Amidala) / White Arm Left / Light Flesh Arm Right / Light Flesh Hands,13 +973pr2386c01,Minifig Torso - Clown with Aqua Suspenders over Polka-Dot Shirt with Red Buttons - Large Red Bowtie - Dark Purple Arms - White Hands (88585),13 +973pr2387c01,"Torso SW Layered Shirt, Dark Tan Undershirt, Reddish Brown Belt and Padawan Braid Print / Reddish Brown Arms / Light Flesh Hands",13 +973pr2389c01,"Torso Galaxy Squad Mantizoid with Dark Red, Yellowish Green and Black Exoskeleton Print / Olive Green Arms / Dark Red Hands",13 +973pr2390c01,"Torso Corset with Gold Diamonds, Blue Laces, Gold Belt and Necklace with Red Round Jewel Print / White Arms / Yellow Hands",13 +973pr2392c01,Torso with Gold Crown Belt Buckle and Silver Chain Mail and Gorget Print / Blue Arms / Black Hands,13 +973pr2394c01,Torso Dragon Knight Scale Mail with Silver Belt Print / Red Arms / Black Hands,13 +973pr2395c01,Torso Dragon Knight Scale Mail with Reddish Brown Belt Print / Red Arms / Black Hands,13 +973pr2396c01,"Torso with Lace-up Shirt, Red Trim and Silver Dragon Head Chain Print / Black Arms / Red Hands",13 +973pr2397c01,Torso Weequay Leather Armour Print / Bright Light Blue Arms / Medium Dark Flesh Hands,13 +973pr2398c01,Torso - Princess Leia Metal Slave Bikini Print / Light Flesh Arms / Light Flesh Hands,13 +973pr2399c01,Torso Shirt with Vertical Pleats and Belt Print / Dark Brown Arms / Tan Hands,13 +973pr2401c01,Torso Castle King Robe with Fur Trim and Gold Chain with Crown Print / Medium Blue Arms / Yellow Hands,13 +973pr2402c01,Torso SW Armor Plates Tattered Dark Red Print (Super Commando) / Dark Bluish Gray Arms / Light Bluish Gray Hands,13 +973pr2403c01,Torso SW Darth Maul Chest with Gray and Silver Collar and Belt Print / Printed Red Arms / Black Hands,13 +973pr2405c01,"Torso Female Lab Coat with Medium Lavender Shirt and Pen, Buttons and 'PROFESSOR C BODIN' Badge Print / White Arms / Bright Light Blue Hands",13 +973pr2406c01,"Torso Robot with Silver Rivets, Yellow Gauges, Dark Pink Screen Print / Light Bluish Gray Arms / Dark Pink Hands [Col11-16]",13 +973pr2407c01,Torso Robot with Yellow Triangle andRobot Armour Print / Black Arms / Dark Bluish Gray Hands,13 +973pr2408c01,Torso Yeti with Bright Light Blue Shaggy Hair Print / White Arms / Bright Light Blue Hands [Col11-8],13 +973pr2409c01,Torso Suit with White Shirt and Black Tie Print / Black Arms / Yellow Hands,13 +973pr2410c01,"Torso Rounded Collar, 4 Gold Buttons and Brown Belt with Gold Buckle Print / Green Arms / Yellow Hands",13 +973pr2411c01,"Torso Police Jacket with '1337' on Collar, Silver 'JCF' Badge, 4 Buttons and Belt Print / Black Arms / Yellow Hands",13 +973pr2412c01,Torso Female Laced Corset with White Blouse and Gold Necklace Print / White Arms / Yellow Hands,13 +973pr2413c01,Torso Blouse with 'Tara' Name Tag and Heart Necklace Print / Yellow Arms / Yellow Hands,13 +973pr2414c01,Torso with Scarecrow Chest and Arm Print / Dark Tan Arms / Tan Hands,13 +973pr2415c01,"Torso Bare Chest with Muscles Outline, Scar, Copper Belt and Shoulder Strap Print / Yellow Arms with Wristbands / Yellow Hands",13 +973pr2416c01,"Torso Shirt with Dark Blue Overalls, Burn Holes and Copper Buckles Print / Light Bluish Gray Arms / Dark Bluish Gray Hands",13 +973pr2417c01,"Torso Zipper Jacket with Ropes, Blue Carabiners and EMT Star of Life Print / Black Arms / Yellow Hands",13 +973pr2418c01,Torso with Cat Sweater and Necklace Print / Lavender Arms / Yellow Hands,13 +973pr2419c01,"Torso - Bare Chest with Muscles Outline, Blue Body Paint, Bone Necklace and Red Belt Print / Yellow Arms / Yellow Hands",13 +973pr2420c01,Torso White Icing and Buttons Print / Medium Dark Flesh Arms with White Icing Stripe / Medium Dark Flesh Hands,13 +973pr2423c01,Torso SW Armor Black Belt and Dark Red Markings Print / Trans-Light Blue Arm with Lightning Bolts Left / White Arm Right / Light Bluish Gray Hands,13 +973pr2425c01,Torso Robe with Silver Clasp Print / Dark Bluish Gray Arms / Black Hands,13 +973pr2426c01,Torso Robe with Brown Belt and Silver Clasp Print / White Arms / Light Flesh Hands,13 +973pr2427c01,Torso Waistcoat with Silver Stars and Tree of Gondor Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr2428c01,Torso Elven Coat with Gold Scrollwork Print / Dark Red Arms / Light Flesh Hands,13 +973pr2429c01,Torso Dress with Gray Printed Collar and Pink Sash Print / Sand Blue Arms / Light Flesh Hands,13 +973pr2430c01,Torso Robe with Ornate Silver Fabric and Gold Clasps Print [Saruman] / White Arms / Light Flesh Hands,13 +973pr2431c01,Torso Female Waistcoat with Buttons and White Shirt Print / White Arms / Light Flesh Hands,13 +973pr2432c01,Torso Vest with Checkered Bandana and Ammunition Belt Print / Light Flesh Arms / Light Flesh Hands,13 +973pr2433c01,"Torso Female Lab Coat with 2 Pockets, Buttons and Gold Necklace Print / White Arms / Light Flesh Hands",13 +973pr2434c01,Torso Asian Robe with Gold Stitchery and Round Silver Pendant Print / Dark Green Arms / Light Flesh Hands,13 +973pr2435c01,Torso Muscle Outlines with Zipper and Protruding Veins Print / Dark Bluish Gray Arms / Black Hands,13 +973pr2436c01,Torso Jacket and Striped Shirt with Dark Tan Bandana Print / Dark Bluish Gray Arms / Black Hands,13 +973pr2437c01,Torso Jacket Tattered with Light Bluish Gray Shirt with Buttons Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr2438c01,Torso Shirt and Sand Blue Vest Tattered with 4 Buttons Print / Light Bluish Gray Arms / Light Flesh Hands,13 +973pr2439c01,Torso Jacket with Dark Bluish Gray Vest and Dark Tan Ascot Print / Dark Brown Arms / Light Flesh Hands,13 +973pr2440c01,"Torso Jacket with 2 Buttons, Dark Blue Shirt and Belt Print / Tan Arms / Light Flesh Hands",13 +973pr2441c01,Torso Shirt with Buttons and Brown Western Style Vest Print / Tan Arms / Light Flesh Hands,13 +973pr2442c01,"Torso Jacket and Vest with Dirt Patches, Star Badge and Dark Red Scarf Print / Black Arms / Light Flesh Hands",13 +973pr2443c01,Torso LotR Armor with Gold and Light Green Scales Print / Yellowish Green Arms / Reddish Brown Hands,13 +973pr2444c01,Torso LotR Armor with Light Green and Dark Red Straps and Belt Print / Yellowish Green Arms / Dark Bluish Gray Hands ,13 +973pr2445c01,Torso LotR Robe with Light Green Straps and Gold Belt Print / Yellowish Green Arms / Dark Bluish Gray Hands,13 +973pr2446c01,Torso LotR Large Reddish Brown Strap and Belt with Copper Trinkets Print / Dark Bluish Gray Arms / Black Hands,13 +973pr2447c01,Torso SW Vest with Dark Tan Stripes and Reddish Brown Shoulder Strap Print / Dark Orange Arms / Reddish Brown Hands ,13 +973pr2448c01,Torso SW Armor Special Forces Clone Trooper Print / Blue Arms / Black Hands,13 +973pr2449c01,Torso SW Armor with White and Reddish Brown Belt and Dark Green Markings Print / Dark Brown Arms / Dark Bluish Gray Hands,13 +973pr2450c01,Torso SW Vest with Overlapping Panels and Metallic Silver Badge Print / Olive Green Arms / Dark Bluish Gray Hands ,13 +973pr2452c01,"Torso SW Vest with Two Small Buttons, Dark Brown Shoulder Strap and Double Belt Print / Light Bluish Gray Arms / Dark Bluish Gray Hands",13 +973pr2453c01,"Torso SW Jedi Robe, Female with Gold Markings Print / White Arms / Light Bluish Gray Hands",13 +973pr2454c01,Torso SW Armor Sith Warrior Print / Dark Bluish Gray Arms / Light Bluish Gray Hands,13 +973pr2455c01,Torso SW Armor and Robe Jedi Knight Print / Olive Green Arms / Reddish Brown Hands,13 +973pr2456c01,Torso Bare Chest with Beaded Necklace and Feathers and Dirt Patches Print / Medium Dark Flesh Arms / Medium Dark Flesh Hands,13 +973pr2460c01,"Torso SW Jedi Robe, Black Belt with Silver Accessories and Dark Bluish Gray Accent Print / Black Arms / Light Flesh Hand Left / Black Hand Right",13 +973pr2461c01,Torso SW Female Dark Tan Robe with Light Tan Tie and Dark Bluish Gray Stitching (both sides) Print (Leia) / White Arms / Light Flesh Hands,13 +973pr2462c01,Torso LotR Ruffled Shirt with Fur Collar and Gold Medallion Print [Wormtongue] / Black Arms / Tan Hands,13 +973pr2463c01,Torso Down Vest with Plaid Shirt and Blue Denim Jacket Print (Marty McFly) / Blue Arms / Light Flesh Hands,13 +973pr2464c01,Torso Devo Suit with Stopwatch and Notebook Front and Radiation Symbol Back Print (Doc Brown) / White Arms / Light Flesh Hands,13 +973pr2465c01,Torso Plain / Dark Tan Arms / Medium Dark Flesh Hands,13 +973pr2470c01,Torso Black Armor with Silver Circles and Blue Round Jewel Print / Light Bluish Gray Arms / Light Bluish Gray Hands,13 +973pr2472c01,Torso Ninja Robe with Gold Buckles and Earth Power Emblem Print / Black Arms / Black Hands,13 +973pr2473c01,Torso with Nindroid Components and Ice Logo Print / Flat Silver Arm Left / White Arm Right / Black Hands,13 +973pr2474c01,Torso Ninjago Robe with Silver Buckles and Lightning Power Emblem Print / Blue Arms / Black Hands,13 +973pr2475c01,Torso - Lloyd Ninjago Robe with Dark Green Trim Print / Dark Green Arms / Black Hands,13 +973pr2476c01,Torso Ninjago Robe with Dark Red Sash and Fire Power Emblem Print / Red Arms / Black Hands,13 +973pr2477c03,Torso Chima Silver Armor with Straps and Blue Round Jewel (Chi) Print / Tan Arms / White Hands,13 +973pr2478c02,Torso Chima Silver Armor with Straps and Blue Round Jewel (Chi) Print / Olive Green Arms / Dark Green Hands ,13 +973pr2480c01,Torso Chima Silver Armor with Straps and Blue Round Jewel (Chi) Print / Black Arms / Dark Bluish Gray Hands,13 +973pr2481c01,"Torso Chima Silver Armor, Muscles, Bone Necklace, Red Winged Skull Emblem and Blue Round Jewel (Chi) Print / Black Arms / Black Hands",13 +973pr2482c01,"Torso Chima Dark Blue Scarf, Gold Chains, Dark Blue Belt and Blue Round Jewel (Chi) Print / Reddish Brown Arms / White Hands ",13 +973pr2484c01,Torso SW Armor Camouflage Print (Commander Gree) / Dark Green Arms / Black Hands,13 +973pr2488c01,"Torso Batman Coat with Brown Fur Trim, White Shirt and Black Tie Print / Black Arms / White Hands",13 +973pr2490c01,Torso Red Nightwing Symbol and Muscles Outline Print / Black Arms / Black Hands,13 +973pr2492c01,"Torso Batman Yellow Lightning Bolt on Chest, Muscles Outline and Yellow Belt Print / Red Arms / Red Hands",13 +973pr2493c01,Torso Batman Logo in Medium Blue Oval with Body Armor and Dark Bluish Gray Belt Print / Dark Blue Arms / Black Hands ,13 +973pr2499c01,Batman Zipper Jacket with Question Marks and Dark Purple Scarf Print / Dark Green Arm Left / Green Arm Right / Dark Purple Hands,13 +973pr2500c01,Torso Jacket with Pockets over Dark Red V-Neck Sweater Print / Blue Arms / Yellow Hands,13 +973pr2501c01,"Torso Police Shirt, Gold Badge, Gold Buckle and Black Belt with Pouches Print / Blue Arms / Yellow Hands",13 +973pr2502c01,"Torso Town Prisoner Number 86753, Dark Bluish Gray Stripes, Buttons, Hairy Chest Print / White Arms / Yellow Hands",13 +973pr2503c01,"Torso Leather Jacket, Convict Striped Shirt and Dark Tan Belt Print / Black Arms / Black Hands ",13 +973pr2504c01,Minifig Torso with Dual-sided Police Jacket and Gold Police Badge Print / Dark Blue Arms / Dark Bluish Gray Hands,13 +973pr2505c01,Torso with Gundabad Orc Armour Print / Medium Dark Flesh Arms / Reddish Brown Hands,13 +973pr2506c01,Torso with Elven Leaf Mail Armour Print / Dark Green Arms / Light Flesh Hands,13 +973pr2507c01,Torso Robe with Dark Brown Laces and Rope Belt Print / Dark Blue Arms / Light Flesh Hands,13 +973pr2508c01,Torso LotR Coat with Tan Fur Trim and 2 Shirts Print / Dark Brown Arms / Light Flesh Hands,13 +973pr2509c01,Torso LotR Vest with Woven Tan and Dark Tan Fabric and Dark Brown Laces Print / Flesh Arms / Flesh Hands,13 +973pr2510c01,Torso Weathered Stone Robe Print / Dark Bluish Gray Arms and Hands,13 +973pr2511c01,Torso with Intricate Elven Armour [Thranduil] Print / Olive Green Arms / Light Flesh Hands,13 +973pr2512c01,Torso Wizard's Robe with Dark Red Trim Print / Dark Brown Arms / Light Flesh Hands,13 +973pr2518c01,"Torso Female Open Herringbone Jacket, Red Bow Tie Scarf, Black Belt Print, Bright Light Orange Arms and Light Bluish Gray Hands ",13 +973pr2519c01,"Torso Vest with Gold Trim, Buttons and Floral Motif Print, Dark Red Arms and Yellow Hands ",13 +973pr2521c01,"Torso Female Open Safety Vest with Reflective Stripes over Olive Green Shirt Print, Yellow Arms and Yellow Hands ",13 +973pr2522c01,"Torso - Hawaiian Shirt with Orange and Red Flowers and Green Leaves Print, Blue Arms and Yellow Hands",13 +973pr2524c01,"Torso Leather Shirt with Reddish Brown Overalls and Feathers and Tail Print, Medium Dark Flesh Arms and Light Bluish Gray Hands ",13 +973pr2526c01,"Torso Female Laced Corset with Red Frills, Pendant Print, Flat Silver Arms and Light Bluish Gray Hands ",13 +973pr2531c01,"Torso Chima Black Scaled Armor with Gold Edges, Lime Diamonds and Blue Round Jewel (Chi) Print / Pearl Gold Arms / Black Hands",13 +973pr2532c01,"Torso Chima Silver Armor, Muscles and Blue Round Jewel (Chi) Print / Pearl Dark Gray Arms / Black Hands",13 +973pr2533c01,"Torso Chima Silver Armor, Lime Diamonds and Blue Round Jewel (Chi) Print / Flat Silver Arms / Black Hands",13 +973pr2536c01,"Torso Chima Gray Armor, Silver Buckles, Bat Pendant and Blue Round Jewel (Chi) Print / Sand Blue Arms / Dark Blue Hands",13 +973pr2537c01,Torso Chima Bare Chest with Spiderweb and Blue Round Jewel (Chi) Print / Reddish Brown Arms / Lime Hands,13 +973pr2538c01,Torso Safety Vest with Reflective Crossed Stripes over Blue Shirt Print / Blue Arms / Yellow Hands,13 +973pr2539c01,"Torso Western Sheriff Star Badge, Vest, Red Ascot Print / Black Arms / Light Bluish Gray Hands",13 +973pr2540c01,Torso Western Vest with Star Badge and Blue Bandana Print / Tan Arms / Light Bluish Gray Hands,13 +973pr2542c01,"Torso Jacket Buttoned with Gold Badge on Collar, White Shirt and Black Tie Print / Black Arms / Light Bluish Gray Hands",13 +973pr2543c01,"Torso Female Shirt with Ice Cream Cone, 'JO' Name Tag and Pink Apron with White Stripes Print / Dark Azure Arms / Yellow Hands",13 +973pr2544c01,"Torso Police 3 Zippers, Minifig Head Badge, Radio and Belt Print (Print on Front and Back) / Black Arms / Dark Bluish Gray Hands",13 +973pr2545c01,Torso Pink Apron with White Stripes with Ice Cream Cone and 'MIKE' Name Tag Print / Dark Azure Arms / Yellow Hands,13 +973pr2546c01,Torso Female Top with Pink Belt and Music Player Print / Yellow Arms / Yellow Hands,13 +973pr2553c01,"Torso Construction Jacket Open, Safety Stripe, Medium Blue Shirt, Hairy Chest, Brown Belt with Pouches Print / Medium Blue Arms / Yellow Hands",13 +973pr2554c01,"Minifig Torso Police 3 Zippers, Minifig Head Badge, Radio and Belt with Pockets Print / Dark Blue Arms / Light Bluish Gray Hands",13 +973pr2555c01,Torso Suit Jacket Buttoned with Red Tie Print / Dark Bluish Gray Arms / Yellow Hands,13 +973pr2556c01,Torso Robe with Tie Dyed Shirt Print / White Arms / Medium Dark Flesh Hands,13 +973pr2557c01,"Torso Police Female Shirt with Gold Badge, Pocket and Black Tie Print / Medium Blue Arms / Yellow Hands",13 +973pr2558c01,"Torso Police Shirt with Gold Badge, 2 Pockets and Black Tie Print / Medium Blue Arms / Yellow Hands",13 +973pr2568c01,Torso Muscles with Red Tank Top and Belt Print / Yellow Arms / Yellow Hands,13 +973pr2570c01,"Torso Chima Bare Chest with Spiderweb, Dark Tan Spider and Blue Round Jewel (Chi) Print / Dark Brown Arms / Lime Hands ",13 +973pr2571c01,"Torso Chima Female Outline with Black Armor, Dark Purple Top and Blue Round Jewel (Chi) Print / Light Bluish Gray Arms / Light Bluish Gray Hands",13 +973pr2572c01,Torso Chima Gold Chain and Large Spider Pendant with Blue Round Jewel Print / Black Arms / Lime Hands,13 +973pr2573c01,Minifig Torso Laketown Guard Uniform / Flat Silver Arms / Light Flesh Hands,13 +973pr2574c01,"Torso Ninjago Robe with Green Sash, Asian Characters and Gold Snake Emblem Print / White Arms / Yellow Hands",13 +973pr2575c01,Torso Nindroid - Cyrus Borg Armour Print / Black Left Arm / Yellow Left Hand / Flat Silver Right Arm / Black Right Hand,13 +973pr2576c01,"Torso Ninjago Robe with Three Black Clasps, Mechanical Components and Silver Saw Blade Emblem Print / Black Arms / Black Hands ",13 +973pr2577c01,Torso Ninjago Robe with Silver Sash and Ice Power Emblem Print / White Arms / Black Hands,13 +973pr2578c01,Torso with Nindroid Robe and Armour Print / Flat Silver Arm Left / Black Arm Right / Black Hands,13 +973pr2579c01,Torso Nindroid Armour with Red and Dark Purple Trim Print / Black Arms / Black Hands,13 +973pr2581c01,"Torso Red Jacket, Dark Pink Cravat, Gold Rosette / Red Arms / Yellow Hands",13 +973pr2583c01,Torso with Purple Robe and Circuitry Print / White Arm Left / Dark Purple Arm Right / White Hands,13 +973pr2584c01,Torso Nindroid Armour with Purple and Red Lapel Print / Flat Silver & Black Arms / Black Hands,13 +973pr2585c01,Torso White Shirt with Tie and ID Badge / White Arms with Yellow Half Print / Yellow Hands,13 +973pr2590c01,"Minifig Torso Female Outline, Zipper, Purple and Blue Markings Print / Black Arm Left / Black Arm with Purple and Blue Markings Right / Black Hands",13 +973pr2591c01,"Torso Robe with Large Red Bow, Gold Trim, Olive Green Undershirt and Ornate Gold Belt Buckle Print / Dark Red Arms / Light Flesh Hands",13 +973pr2592c01,Torso LotR Bare Chest with Dark Brown Markings and Belt Straps Print / Reddish Brown Hand Right / Pearl Dark Gray Claw Left,13 +973pr2594c01,Torso Camouflage Elite Corps Trooper Body Armour Print / Olive Green Arms / Black Hands,13 +973pr2595c01,Torso Ghostly Muscles [Necromancer] Print / Black Arms / Black Hands,13 +973pr2596c01,Torso Clone Pilot Flight Suit with Rebreather Print / Light Bluish Gray Arms / White Hands,13 +973pr2604c01,Torso Simpsons Shirt with Black Belly Bump and Collar Outline Print / Yellow Arms with White Short Sleeves / Yellow Hands,13 +973pr2605c01,Torso Simpsons Dress with Red Necklace Print / Yellow Arms / Yellow Hands,13 +973pr2606c01,Torso Simpsons Plain with Slingshot Print / Yellow Arms with Red Short Sleeves Print / Yellow Hands,13 +973pr2608c01,Torso Simpsons Shirt with String (Bolo) Tie Print / Light Flesh Arms / Yellow Hands,13 +973pr2609c01,Torso Simpsons Crew Neck Sweater with Bright Pink Collar Print / Bright Green Arms / Yellow Hands,13 +973pr2610c01,"Torso Simpsons Jacket, White Shirt and Black Necktie Print / Dark Green Arms / Yellow Hands",13 +973pr2611c01,Torso Simpsons Shirt with Black Collar Outline and Blue Bow Tie Print / Yellow Arms with Bright Pink Short Sleeves / White Hands,13 +973pr2612c01,Torso Simpsons Open Jacket with Gray Belly Print / Medium Blue Arms with Orange Short Sleeves Print / White Hands,13 +973pr2613c01,Torso Simpsons Light Bluish Gray Belly Print / Dark Bluish Gray Arms / White Hands,13 +973pr2614c01,"Torso Simpsons Vest with Orange Trim, Black Shirt, Tan Pants and Chest Hair Print / Green Arms / Medium Dark Flesh Hands",13 +973pr2615c01,Torso Simpsons Vest over Flesh Top Print / Yellow Arms with Flesh Short Sleeves / Yellow Hands,13 +973pr2616c01,Torso Simpsons Police Shirt with Silver Badge and Black Necktie Print / Blue Arms with Light Yellow Ovals / Yellow Hands,13 +973pr2618c01,Torso Simpsons Shirt Open Collar with Gray Belt with Red Buckle Print / Medium Azure Arms / Yellow Hands,13 +973pr2620c01,Torso Clone Trooper Armour with Orange Markings and Weathering Print / Orange Arms / Black Hands,13 +973pr2622c01,Torso Airborne Clone Trooper Armour with Orange Markings and Dark Tan Belt Print / White Arm Left / Orange Arm Right / Black Hands,13 +973pr2623c01,Torso Neimoidian Warrior Armour Print / Dark Brown Arms / Olive Green Hands,13 +973pr2625c01,Torso Lab Coat with Pockets over Bright Green Shirt Print (Doc Ock) / White Arms / Yellow Hands,13 +973pr2626c01,Torso Spider-Man Tank Top with Web Face in Heart Print (Mary Jane 5) / Light Flesh Arms / Light Flesh Hands,13 +973pr2628c01,Torso Jacket with Brown Strap and Silver Buttons and Belt Buckle with Hydra Logo Print / Black Arms / Black Hands,13 +973pr2629c01,Torso Muscles Outline with Yellow Harness Straps and Utility Belt Print / Dark Green Arms / Yellow Hands,13 +973pr2630c01,Torso Armor White with Black Muscles Outline and White Belt Print / Red Arms / Pearl Gold Hands,13 +973pr2631c01,Torso Muscles Outline with Reddish Brown Belts with Gold Buckles Print / Dark Blue Arms / White Hands,13 +973pr2633c01,Torso Wrinkled Gray Robes Print / Dark Bluish Gray Arms / Light Flesh Hands,13 +973pr2635c01,"Torso Front and Back Muscles Outline with White Star, Red and White Stripes and Brown Utility Belt Print / Blue Arms / Red Hands",13 +973pr2636c01,Torso Armor with Silver Circles and Gold Belt Print (Thor) / Light Bluish Gray Arms / Light Flesh Hands,13 +973pr2638c01,"Torso SW Jedi Robe, Reddish Brown Belt Print (Anakin Clone Wars) / Dark Brown Arms / Black Hands",13 +973pr2639c01,Torso SW Armor Clone Trooper with Red Shock Trooper Markings Print / Red Arms / Black Hands,13 +973pr2641c01,Torso Arctic Explorer Logo with Zipper and White Fur Trim Print / Orange Arms / Blue Hands ,13 +973pr2642c01,"Torso Female Top with Lime Rays, 'Fabuland' Text, and Monkey Face Print / Lime Arms / Yellow Hands",13 +973pr2643c01,Torso Santa Jacket with White Trim and SW Darth Vader Print / Red Arms / White Hands,13 +973pr2648c01,"Torso SW Wrap-Around Tunic and Utility Belt with Large Pouch, Light Folds Print / White Arms / Light Flesh Hands",13 +973pr2650c01,Torso Space Classic Moon with Simulated Wear Print / Blue Arms / Blue Hands,13 +973pr2652c01,Torso Female Armor with Dark Purple Belt with Gray Clasp Print / Black Arms / Dark Bluish Gray Hands ,13 +973pr2653c01,MINI UPPER PART NO.2653,13 +973pr2654c01,MINI UPPER PART NO.2654,13 +973pr2655c01,Torso Tank Top with Dark Tan Stains Print / Light Flesh Arms / Light Flesh Hands,13 +973pr2656c01,Torso Strapped Armor Plates with Brown Belt with Red Clasps Print / Green Arms / Green Hands,13 +973pr2658c01,"Torso Robot with Armor, Kraang and Control Harness Print / Light Bluish Gray Arms / Dark Bluish Gray Hands",13 +973pr2660c01,Torso Vest with Copper Tiger Armor with Blue Round Jewel (Chi) Print / Trans-Light Blue Arm Left / White Arm Right / Dark Azure Hand Left / Light Bluish Gray Hand Right,13 +973pr2661c01,Torso Arctic Explorer Logo Female with Zipper and White Fur Trim Print / Orange Arms / Blue Hands ,13 +973pr2663c01,"Torso Feathers, Sand Green Sash, White Bones, Purple Sinew Patches and Blue Round Jewel (Chi) Print / White Arms / Dark Bluish Gray Hands ",13 +973pr2664c01,"Torso Vest with Straps, Pendants with Blue Chi Print / Trans-Light Blue Arm Left / Dark Bluish Gray Arm Right / Dark Azure Hand Left / Light Bluish Gray Hand Right",13 +973pr2665c01,MINI UPPER PART NO 2665,13 +973pr2666c01,Torso Vest with Dark Red and Gold Armor with Scales and Fire Chi Emblem Print / Light Bluish Gray Arms / White Hands,13 +973pr2668c01,Torso Vest with Dark Red and Gold Armor with Scales and Fire Chi Emblem Print / Olive Green Arms / Dark Green Hands,13 +973pr2669c01,Vest with Dark Red and Gold Armor with Scales and Fire Chi Emblem Print / Tan Arms / White Hands,13 +973pr2670c01,Torso Vest with Dark Red and Gold Armor with Scales and Fire Chi Emblem Print / Black Arms / Dark Purple Hand Right / Flat Silver Hook Left ,13 +973pr2671c01,Torso Vest with Dark Red and Gold Armor with Scales and Fire Chi Emblem Print / Black Arms / Dark Bluish Gray Hands,13 +973pr2672c01,"Torso Light Bluish Gray Scaled Armor, Copper Key Pendants and Blue Round Jewel (Chi) Print / Dark Tan Arms / White Hands ",13 +973pr2673c01,"Torso Black Tiger Stripes, Dark Red and Gold Armor and Fire Chi Emblem Print / Orange Arms / White Hands",13 +973pr2674c01,Fur with Ragged Brown Top and Blue Chi Print / Trans-Light Blue Arm Left / Tan Arm Right / Dark Azure Hand Left / Reddish Brown Hand Right ,13 +973pr2675c01,"Torso Black Leopard Spots, Dark Red Straps and Fire Chi Emblem Print / Yellow Arms / White Hands ",13 +973pr2676c01,Torso Dark Red and Gold Armor and Fire Chi Pendant with Chain Print / Red Arms / Yellow Hands,13 +973pr2677c01,"Torso Chima Female Copper Breastplates, Chains and Blue Round Jewel (Chi) Print / Dark Bluish Gray Arms / Reddish Brown Hands ",13 +973pr2678c01,"Torso Aviator Jacket with Orange Parachute and Straps, Arctic Explorer Logo on Reverse Print / Reddish Brown Arms / Black Hands",13 +973pr2679c01,Torso Female with Dark Red and Gold Armor with Scales and Fire Chi Emblem Print / Tan Arms / White Hands,13 +973pr2680c01,Torso Vest with Dark Red and Gold Armor with Scales and Fire Chi Emblem Print / White Arms / Yellow Hands,13 +973pr2681c01,Torso Ninjago Shoulder Armor with Silver Belts and Ice Power Emblem Print / White Arms / Black Hands,13 +973pr2682c01,Torso Ninjago Shoulder Armor with Dark Green Belts and Dragon Emblem Print / Dark Green Arms / Black Hands,13 +973pr2683c01,Torso Ninjago Gold Skeleton Print / Black Arms / Black Hands ,13 +973pr2684c01,Torso Ninjago Female Samurai Armor with Gold Buckles and Flames Print / Red Arms / Black Hands,13 +973pr2685c01,"Torso Vest with Belt, Suspenders and Fire Chi Emblem Print / Dark Bluish Gray Arms / Yellow Hands",13 +973pr2686c01,"Torso Armor, Chains and Blue Chi Print / Trans-Light Blue Arm Left / Lt Bluish Gray Arm Right / Dark Azure Hand Left / Dk Bluish Gray Hand Right",13 +973pr2687c01,"Torso Feathers, Scars and Blue Chi Print / Trans-Light Blue Arm Left / Dk Bluish Gray Arm Right / Dark Azure Hand Left / Lt Bluish Gray Hand Right",13 +973pr2688c01,"Torso Tiger Fur with Chains, Spiked Collar, Padlock and Blue Round Jewel (Chi) Print / Light Bluish Gray Arms / White Hands",13 +973pr2689c01," Torso Adventurers Desert Safari Shirt, Yellow Neck, Red Bandana, Reddish Brown Gun Print / Tan Arms / Yellow Hands",13 +973pr2690c01,"Torso Jumpsuit with Zipper, Harness Straps, Altimeter and Brown Belt Print / Bright Green Arms / Bright Green Hands",13 +973pr2691c01,Torso Robot with Kraang and Control Harness Print / Medium Blue Arms / Light Bluish Gray Hands,13 +973pr2692c01,"Torso Train, Safety Vest with Train Logo Print on Both Sides / Olive Green Arms / Yellow Hands",13 +973pr2693c01,"Torso Lab Coat with Pockets and ID Badge over Orange Sweater, Arctic Explorer Logo on Reverse Print / White Arms / Yellow Hands",13 +973pr2694c01,Torso Business Suit and Tie with Breathing Apparatus and Octan Logo Print / Black Arms / Light Bluish Gray Hands,13 +973pr2695c01,Torso Turtle Shell with Gauge and Purple Diving Bottles Print / Bright Green Arms / Bright Green Hands,13 +973pr2696c01,Torso Turtle Shell with Gauge and Blue Diving Bottles Print / Green Arms / Green Hands,13 +973pr2697c01,Torso SW Darth Vader Imperial Star Destroyer Print / Black Arms / Black Hands ,13 +973pr2698c01,"Torso SW Armor Stormtrooper, Black Pocket Device and Tan Dirt Stains Print / White Arms / Black Hands ",13 +973pr2699c01,Torso SW Hooded Coat over Tan Jedi Robe with Undershirt and Belt Print (SW Obi-Wan) / Dark Brown Arms / Light Flesh Hands ,13 +973pr2700c01,Torso SW Rebel Vest with General Insignia Print / Tan Arms / Light Flesh Hands,13 +973pr2705c01,Torso Muscles Outline with Black Suit Print / Bright Light Orange Arms / Reddish Brown Hands,13 +973pr2706c01,"Torso Armor with Dark Purple Belt with Silver Clasp, Dark Bluish Gray Trim Print / Black Arms / Dark Bluish Gray Hands",13 +973pr2707c01,"Torso Jacket with 4 Pockets, Silver Buttons and Zipper Print / Dark Blue Arms / Light Flesh Hands",13 +973pr2708c01,"Torso Jacket with Straps, Belt with Pouches and Plaid Bandana Print / Black Arms / Dark Bluish Gray Hands",13 +973pr2709c01,"Torso Turtle Shell with Dark Brown Belts, Sunglasses and Orange Scarf Print / Olive Green Arms / Olive Green Hands",13 +973pr2710c01,MINI UPPER PART NO.2710,13 +973pr2711c01,MINI UPPER PART NO.2711,13 +973pr2712c01,"Torso Turtle Shell with Dark Brown Belts, Silver Buckles and Dark Red Scarf Print / Dark Green Arms / Dark Green Hands",13 +973pr2713c01,MINI UPPER PART NO 2713,13 +973pr2715c01,"Torso Female Jumpsuit with Zipper, White and Gold Markings and Classic Space Logo Print / Blue Arms / Blue Hands",13 +973pr2716c01,Torso SW Jacket with Silver Side Buttons Print (Bith Musician) / Black Arms / Tan Hands,13 +973pr2717c01,Torso SW Vest with Pockets and Medium Blue Shirt Print (Greedo) / Medium Azure Arms / Sand Green Hands ,13 +973pr2718c01,Torso Alien with Dark Blue Muscles Outline and White Edges Pattern / Trans-Medium Blue Arms / White Hands,13 +973pr2719c01,MINI UPPER PART NO.2719,13 +973pr2720c01,Torso SW Jawa with Dark Brown Pouches and Black and Gold Straps Print / Reddish Brown Arms / Dark Brown Hands ,13 +973pr2721c01,"Torso SW C-3PO with Red and White Wires, Oil Stains and Silver Robot Limiter Print / Pearl Gold Arms / Pearl Gold Hands ",13 +973pr2723c01,Torso SW Jawa with Dark Brown and Black Pouches and Straps Print / Reddish Brown Arms / Dark Brown Hands,13 +973pr2724c01,Torso SW Armor Clone Trooper with Dark Tan Diagonal Belt Print (Jek-14) / Trans-Light Blue Arm with Lightning Bolts Left / White Arm Right / Light Bluish Gray Hands,13 +973pr2725c01,"Torso SW Open Robe, Dark Tan Undershirt and Belt with Buckle and Pouch Print / Tan Arms / Light Flesh Hands",13 +973pr2726c01,Torso Safety Vest with Reflective Crossed Stripes over Blue Shirt Print / Blue Arms / Light Bluish Gray Hands,13 +973pr2727c01,Torso Muscles Outline with Dark Brown Center and Red Belt with Buckle Print / Light Flesh Arms / Dark Brown Hands,13 +973pr2728c01,Torso SW Rebel B-wing Pilot with Dark Tan Front Panel with Breathing Apparatus Print / Light Bluish Gray Arms / Black Hands,13 +973pr2729c01,Torso Female with Yellow Cross Emblem and Reddish Brown Belt Print / Reddish Brown Arms / Reddish Brown Hands,13 +973pr2731c01,Minifig Torso (Magneto),13 +973pr2732c01,Torso SW RA-7 with Peeling Paint Print / Dark Bluish Gray Arms / Dark Bluish Gray Hands ,13 +973pr2734c01,"Torso SW Jedi Robe, Dark Tan Belt and Reddish Brown Undershirt Print (Ithorian Jedi) / Medium Dark Flesh Arms / Medium Dark Flesh Hands ",13 +973pr2735c01,orso Bare Chest with Muscles and Red Tattoo with Minifig Heads Print / Light Bluish Gray Arms with Red Tattoo Print / Light Bluish Gray Hands,13 +973pr2736c01,"Torso Female Jacket Open Collar with Silver Buttons and Gold Badge, Lime Chest Print / Dark Red Arms / Reddish Brown Hands",13 +973pr2737c01,Torso Jacket with Silver Side Buttons and Gold Badge Print / Dark Red Arms / Reddish Brown Hands,13 +973pr2739c01,Torso Spacesuit with Silver Zipper and Orange Harness Print / Dark Tan Arms / Dark Bluish Gray Hands,13 +973pr2740c01,Torso Female Toga with Gold Trim and Large Belt Print / Yellow Arms with Gold Wristbands Print / Yellow Hands,13 +973pr2741c01,Torso Lace-up Shirt with Moon and Stars and Gold Rope Belt Print / Blue Arms / Yellow Hands,13 +973pr2742c01,Torso Torn Tank Top with Ammunition Belt over Dark Brown Shirt Print / Yellow Arms with Dark Brown Short Sleeves Print / Yellow Hands,13 +973pr2743c01,"Torso Open Shirt with Frills, Red Waist Sash and Gold Helm Buckle Print / White Arms / Yellow Hands",13 +973pr2744c01,Torso Purple and Bright Light Orange Jester Collar Print / Bright Light Orange Arm Left / Dark Purple Arm Right / Yellow Hands,13 +973pr2745c01,Torso Belly Bump and Pig Tail on Reverse Print / Bright Pink Arms / Black Hands,13 +973pr2746c01,Torso Armor Plate Dark Brown with Copper Rivets Print / Dark Red Arms / Yellow Hands,13 +973pr2747c01,"Torso Female Dress with Lavender Embroidery, White Trim and Gold Necklace Print / Lavender Arms / Yellow Hands",13 +973pr2748c01,"Torso Polo Shirt with Red and White Collar, Pizza Sauce Stains on Front Print / Yellow Arms with Green Short Sleeves Print / Yellow Hands",13 +973pr2749c01,Torso Shirt with Light Bluish Gray Collar and 'PLAYER 1' Print / Light Bluish Gray Arms with Black Short Sleeves Print / Yellow Hands,13 +973pr2750c01,"Torso Female Jacket with Buttons, Spider in Pocket Print / Black Arms / White Hands",13 +973pr2751c01,Torso Shirt with 3 Buttons and Brown Suspenders Print / Tan Arms / Yellow Hands,13 +973pr2752c01,Torso Mermaid Fringed Crop Top Print / Yellow Arms with Light Aqua Short Sleeves Print / Yellow Hands,13 +973pr2753c01,"Torso Leather Jacket with Silver Studs and Buckle, Hairy Chest Print / Black Arms with Silver Studs Print / Yellow Hands",13 +973pr2754c01,"Torso Bare Chest with Muscles Outline, No Clavicles Print / Yellow Arms / Yellow Hands",13 +973pr2755c01,Torso Sand Blue Armor Breastplate with Blue and Red General Insignia Print (SW General Veers) / Dark Bluish Gray Arms / Black Hands,13 +973pr2756c01,MINI UPPER PART NO. 2756,13 +973pr2757c01,Torso Armor with Black and Red Lines on Chest and Silver Belt with Red Buckle Print / Light Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr2758c01,Torso Bulletproof Vest with Ultra Agents Logo over Shirt and Blue Tie Print / White Arms / Yellow Hands,13 +973pr2759c01,MINI UPPER PART NO. 2759,13 +973pr2760c01,Torso SW AT-AT Driver with Sand Blue Vest and Bib with Breathing Apparatus Print / Sand Blue Arms / Light Bluish Gray Hands,13 +973pr2761c01,Torso SW Armor Snowtrooper Commander Print / White Arms / White Hands,13 +973pr2762c01,"Torso Jacket with Pockets over White Sweater, Arctic Explorer Logo on Reverse Print / Orange Arms / Yellow Hands",13 +973pr2763c01,Torso SW Imperial Officer 5 Print / Dark Bluish Gray Arms / Black Hands ,13 +973pr2764c01,Torso SW Imperial Crew Uniform with Black Belt Print / Light Bluish Gray Arms / Light Flesh Hands,13 +973pr2766c01,MINI UPPER PART NO 2766,13 +973pr2767c01,"Torso SW Armor Stormtrooper, Detailed Armor Print without Shoulder Belts / White Arms / Black Hands",13 +973pr2768c01,Torso SW Imperial Crew Uniform Print / Black Arms / Black Hands Hands ,13 +973pr2769c01,Torso SW Shirt with Diagonal Black Belt and Dark Green Pad Print (Kanan Jarrus) / Olive Green Arm Left / Dark Green Arm Right / Black Hands,13 +973pr2771c01,Torso Agents Robot with Furnace with Gauge and Piping Print / Dark Bluish Gray Arms / Red Hands,13 +973pr2772c01,Torso Protective Suit with Back Zipper and Astor City 'AC' Print / White Arms / Black Hands,13 +973pr2773c01,Torso Female Lime Ripped Shirt with Black Toxic Symbol and Studded Collar Print / Yellow Arms / Yellow Hands,13 +973pr2774c01,MINI UPPER PART NO.2774,13 +973pr2775c01,"Torso Jacket with Silver and Medium Azure Trim, Dark Pink Shirt and Black Tie Print (Caila Phoenix) / Black Arms / Yellow Hands",13 +973pr2776c01,MINI UPPER PART NO.2776,13 +973pr2777c01,"Torso Lab Coat with Pockets over Blue Vest and Shirt, ID Badge with Ultra Agents Logo Print (Christina Hydron) / White Arms / Yellow Hands",13 +973pr2778c01,Torso Open Jacket over Dark Green Shirt with Lime Pixelated Alien Print / Black Arms / Lime Hands,13 +973pr2779c01,Torso Bare Chest with Muscles Outline and Red Belt with X-Men Logo Belt Buckle Print / Dark Blue Arms / Bright Light Orange Hands,13 +973pr2780c01,MINI UPPER PART NO 2780,13 +973pr2781c01,Torso Agents Suit with Ultra Agents Logo and Gold Tie Print / Black Arms / Light Bluish Gray Hands,13 +973pr2782c01,Torso Armor Plate with Straps and Nova Corps Markings Print / Blue Arms / Dark Bluish Gray Hands,13 +973pr2783c01,Torso Armor with Silver Exoskeleton and Dark Red Claw Scratch Marks Print / Dark Bluish Gray Arms / Black Hands,13 +973pr2784c01,"Torso Open Zipper Jacket over Gray Shirt with Silver Rivets and Leather Straps, Sling Bag on Back Print / Dark Red Arms / Black Hands",13 +973pr2785c01,Torso Female Purple Armor with Dark Blue Belt Print / Flat Silver Arm Left / Blue Arm Right / Dark Purple Hands ,13 +973pr2786c01,Torso Robes with Silver Trim over Armor and Dark Red Wounds Print / Black Arms / Blue Hands,13 +973pr2787c01,Torso Spacesuit with Brown and Orange Straps and Green Light on Reverse Print / Dark Bluish Gray Arms / Dark Bluish Gray Hands,13 +973pr2788c01,"Torso Vest with Vertical Pocets, Dark Orange Undershirt and Bird Logo on Back Print (SW Ezra Bridger) / Dark Orange Arms / Light Flesh Hands",13 +973pr2789c01,MINI UPPER PART NO. 2789,13 +973pr2790c01,MINI UPPER PART NO. 2790,13 +973pr2791c01,"SW Space Jumpsuit with Bark Brown, Dark Tan Belt and Neck Plate Print (Zeb Orrelios) / Medium Lavender Arms / Light Bluish Gray Hands",13 +973pr2792c01,Torso Female Space Jumpsuit with Orange Belt and Silver Neck Plate Print (SW Hera Syndulla) / Dark Tan Arms / Dark Brown Hands,13 +973pr2795c01,"Torso SW Armor Stormtrooper, Detailed Armor Print without Shoulder Belts (Rebels Cartoon Style) / White Arms / Black Hands",13 +973pr2797c01,Torso LotR Robe with Woven Gold Strips and Dark Red Belt Print (Elrond) / Pearl Gold Arms / Light Flesh Hands,13 +973pr2798c01,Torso LotR Dress with Metallic Silver Robe and Ornate Silver Brooch Print (Galadriel) / Light Flesh Arms / Light Flesh Hands,13 +973pr2799c01,"Torso LotR Coat with Tan Fur Lining over Reddish Brown Shirt, Olive Green Arms / Light Flesh Hands",13 +973pr2800c01,"Torso LotR Coat Fur Lined with Olive Green Vest, Ascot and Belt Print / Dark Blue Arms / Light Flesh Hands",13 +973pr2801c01,Torso Batman Logo with Body Armor Outline and Copper Belt Print / Black Arms / Black Hands,13 +973pr2802c01,Torso Batman Suit with Green and Sand Blue Vests and Green and Lime Tie Print (Joker) / Dark Purple Arms / Dark Blue Hands,13 +973pr2803c01,"Torso LotR Robe with 3 Buttons, Metallic Silver Diamond Armor and Light Bluish Gray Belt Print / White Arms / Light Bluish Gray Hands",13 +973pr2804c01,"Torso LotR Elven Robe over Dark Green Female Shirt, Gold Buckle Print / Dark Green Arms / Light Flesh Hands",13 +973pr2805c01,Torso LotR Armor with Belt with Large Silver Buckle and Diamond Print / Flat Silver Arms / Dark Red Hands,13 +973pr2806c01,Torso LotR Armor with Dark Brown and Gold Woven Straps and Belt and Large Gold Buckle Print / Pearl Dark Gray Arms / Dark Green Hands,13 +973pr2807c01,Torso LotR Armor with Dark Brown Woven Belt and Gold Buckles Print / Pearl Dark Gray Arms / Black Hands,13 +973pr2808c01,"Torso LotR Chain Mail Armor, Gold Diamonds with Brown Belt and Silver Buckle Print / Pearl Dark Gray Arms / Dark Bluish Gray Hands",13 +973pr2809c01,Torso SW Armor Plates Dark Green Print Dual Sided (Boba Fett) / Sand Blue Arms Printed / Light Bluish Gray Hands,13 +973pr2810c01,Torso SW Bespin Guard Print Dual Sided / Blue Arms / Light Flesh Hands,13 +973pr2811c01,Torso Ghostbusters Jumpsuit with 'P.V.' ID Badge and 'PETER' on Reverse Print / Tan Arms / Black Hands,13 +973pr2811c02,"Torso LotR Metallic Silver Armor, Copper Belt with Gold Bindings and Red Straps Print / Flat Silver Arms / Dark Bluish Gray Hands",13 +973pr2812c01a,Torso Striped Vest with Buttons and Yellow Striped Scarf Print / White Arms / Yellow Hands,13 +973pr2812c01b,"Torso LotR Coat with Silver Chain Mail, Shirt Grommets, Brown Belt and Silver Buckle Print / Dark Blue Arms / Light Flesh Hands",13 +973pr2813c01,Torso LotR Gold Armor and Blue Jeweled Belt Print / Pearl Gold Arms / Black Hands,13 +973pr2814c01a,Torso LEGO® House Chest and LEGO Logo Back Print / White Arms / Yellow Hands,13 +973pr2814c01b,"Torso Space Classic Moon Logo High on Torso Print, Inside with Ribs (second reissue) / Green Arms / Green Hands",13 +973pr2815c01,Torso Lab Coat with Pockets and ID Badge over Orange Shirt / White Arms / Yellow Hands,13 +973pr2816c01,Torso - Ghostbusters Jumpsuit with 'R.S.' ID Badge and 'Ray' on Back Print / Tan Arms / Black Hands,13 +973pr2817c01,Torso Ghostbusters Jumpsuit with 'E.S.' ID Badge and 'EGON' on Reverse Print / Tan Arms / Black Hands,13 +973pr2818c01,Torso Ghostbusters Jumpsuit with 'W.Z.' ID Badge and 'Winston' on Reverse Print / Tan Arms / Black Hands,13 +973pr2819c01,Torso with Pixelated Light Flesh Neck Print (Minecraft) / Dark Azure Arms / Light Flesh Hands,13 +973pr2820c01,Torso with Pixelated Green Neck Print (Minecraft) / Dark Azure Arms / Green Hands,13 +973pr2821c01,Torso Pirate Captain Print Pirates III / Black Arms / Yellow Hand Right / Flat Silver Hook Left,13 +973pr2822c01,Torso Pirate Stripes Red with Rope Belt Print / Yellow Arms / Yellow Hands,13 +973pr2823c01,"Torso Pirate White Apron, Fish Skeleton and Chest Hair Print / Yellow Arms / Yellow Hands",13 +973pr2824c01,Torso Pirate Bluecoat Governor Print / Dark Blue Arms / White Hands,13 +973pr2825c01,Torso Pirate Bluecoat Soldier Print / Blue Arms / Yellow Hands,13 +973pr2826c01,"Torso Pirate Vest Tattered and Anchor Tattoo, Muscles Print / Yellow Arms / Yellow Hands",13 +973pr2827c01,Torso Pirate Governor's Daughter Print / Medium Blue Arms / Yellow Hands,13 +973pr2828c01,"Torso Pirate Open Jacket Gold Trim over Striped Shirt, Belt with Pouch Print / Green Arms / Yellow Hands",13 +973pr2829c01,Torso Pirate Stripes Black with Brown Belt with Buckle Print / Yellow Arms / Yellow Hands,13 +973pr2830c01,Torso Pirate Female Corset with Diagonal Belt (Printed Back) Print / White Arms / Yellow Hands,13 +973pr2831c01,Torso Space Armor with 5 Yellow Lights Print / Dark Azure Arms / Lime Hands,13 +973pr2832c01,Torso Robe with Gold Trim over Red Shirt with Black Skulls and Belt with Gold Skull Buckle Print / Dark Red Arms / Yellow Hands,13 +973pr2833c01,Torso Castle King Jacket with Red and Yellow Chevrons and Gold Chain Print / Red Arms / Yellow Hands,13 +973pr2834c01,Torso Vest Tattered with Laces and Patch over Dark Brown Shirt Print / Olive Green Arms / Olive Green Hands,13 +973pr2835c01,Torso Shirt with Gold Pendant and Bead Necklace Print / Lime Arms / Yellow Hands,13 +973pr2836c01,Torso Ragged Crop Top with Bone Clasp Print (Lady Cyclops) / Sand Blue Arms / Sand Blue Hands,13 +973pr2837c01,"Torso Female Shirt with 2 Pockets, Tan Scarf and Black Belt with Gold Buckle Print / Yellow Arms with Dark Tan Short Sleeves Print / Yellow Hands",13 +973pr2838c01,"Torso Shirt Open Collar with Chest Hair, Hammer and Saw Print / Yellow Arms with Bright Light Blue Short Sleeves / Yellow Hands",13 +973pr2839c01,"Torso Western Sheriff Star Badge, Vest, Gold Chain, Black Tie Print / Tan Arms / Yellow Hands",13 +973pr2840c01,Torso Samurai Robe Female with Black Clasp and Dark Red Sash Print / Dark Bluish Gray Arms / Yellow Hands,13 +973pr2841c01,Torso Female Shirt Tied at Waist with Purple and Silver Circles Print / Medium Lavender Arms with Purple and Silver Circles Print / Yellow Hands,13 +973pr2842c01,Torso Fencing Plastron with 2 Black Crossed Swords Print / White Arms / Yellow Hand Left / White Hand Right,13 +973pr2843c01,"Torso with Bright Pink, Bright Light Yellow and Bright Light Blue Stars Print / White Arms / Bright Light Blue Hands",13 +973pr2844c01,Torso Tunic with Blue and Gold Egyptian Collar Print / Yellow Arms / Yellow Hands,13 +973pr2846c01,Torso Ninjago Robe with Black Sash with Asian Characters Print (Kai 2015) / Yellow Arms / Black Hands,13 +973pr2847c01,MINI UPPER PART NO. 2847,13 +973pr2848c01,Torso Ninjago Robe with Black Sash with Asian Characters Print (Jay 2015) / Yellow Arms / Black Hands,13 +973pr2849c01,Torso Ninjago Robe with Black Sash with Asian Characters and Gold Power Emblem Print / Yellow Arms / Black Hands,13 +973pr2850c01,"Torso Bare Chest Muscles, Purple Snake Tattoo, Snake Buckle, Shoulder Strap, Scar on Back Print / Yellow Arms / Yellow Hands",13 +973pr2851c01,"Torso Bare Chest Muscles, Purple Snake Tattoos, Snake Buckle, Shoulder Strap Print / Yellow Arms / Yellow Hands",13 +973pr2852c01,"Torso Ninjago Bare Chest with Muscles and Purple Snake Tattoos, Belt with Snake Heads Buckle Print / Yellow Arms / Yellow Hands",13 +973pr2853c01,"Torso Ninjago Robe with Fire Power Emblem, Kunai Knives and Scabbard Print / Red Arms / Black Hands",13 +973pr2854c01,"Torso Ninjago Robe with Belt with Pouch, Knife, Scabbard and Earth Power Emblem Print / Black Arms / Black Hands",13 +973pr2855c01,"Torso Ninjago Robe with Belt, Knife, Scabbard and Lightning Power Emblem Print / Blue Arms / Black Hands",13 +973pr2856c01,"Torso Ninjago Robe with Belt, Knife, Scabbard and Gold Dragon Head Emblem Print / Green Arms / Black Hands",13 +973pr2857c01,Torso Ninjago Female Robe with Bright Light Yellow Sash and Scabbard Print / Bright Light Orange Arms / Black Hands,13 +973pr2858c01,"Torso Ninjago Shoulder Protection with White Straps and Gold Lion Emblem over Robes, Shurikens in Belt Print / Flat Silver Arms / Black Hands",13 +973pr2859c01,Torso Ninjago Female Dark Green Samurai Armor with Gold Phoenix and Red Sash Print / Red Arms / Black Hands,13 +973pr2860c01,"Torso Ninjago Robe with Dark Green Sash, Gold Asian Characters, Torn with Purple Tattoo on Back Print / White Arms / Yellow Hands",13 +973pr2861c01,"Torso Robes with Black and Gold Belt and Trim, Tooth Necklace and Snake Head on Reverse Print / Dark Red Arms / Black Hands",13 +973pr2862c01,Torso Ninjago Snake with Light Blue Gem and Copper Snake Heads Buckle Print / White Arms / Dark Purple Hands,13 +973pr2863c01,Torso Ninjago Snake with Black and Copper Scales and Shoulder Strap Print / Dark Purple Arms / Dark Purple Hands,13 +973pr2866c01,"Torso Dark Blue Muscles, Dark Red Straps and Armor and Fire Chi Emblem Print / Black Arms / Dark Blue Hands",13 +973pr2867c01,"Torso Open Suit Jacket with White Shirt, Red Tie and Belt Print / Sand Blue Arms / Yellow Hands",13 +973pr2868c01,MINI UPPER PART NO 2868,13 +973pr2869c01,"Torso Chima Female Outline with Dark Blue and Gold Armor with Scales, Straps, Pouches and Fire Chi Emblem Print / Tan Arms / White Hands",13 +973pr2870c01,MINI UPPER PART NO 2870,13 +973pr2871c01,Torso Plain / Reddish Brown Arm with Black and Dark Tan Band Left / Reddish Brown Arm Right / Reddish Brown Hands,13 +973pr2872c01,Torso Mummy Wrapping and Copper Armor with Blue Chi Print / Trans-Light Blue Arm & Dark Azure Hand Left / Light Bluish Gray Arm & White Hand Right,13 +973pr2873c01,MINI UPPER PART NO 2873,13 +973pr2874c01,"Torso Race Jacket with Zipper and Lime, Silver and White 'XTREME' Print / Black Arms / Dark Bluish Gray Hands",13 +973pr2875c01,Torso Female Jacket Open over Red and Light Green Top with Necklace Print / Green Arms / Yellow Hands,13 +973pr2876c01,"Torso Fur with Wide Belt, Gray Tribal Markings and Ice Chi Emblem Print / White Arms / Light Bluish Gray Hands",13 +973pr2877c01,"Torso with Fur, Gold Mechanical Armor, Pouch and Fire Chi Emblem Print / Reddish Brown Arms / Dark Brown Hands",13 +973pr2878c01,"Torso SW TIE Pilot, Detailed with Back Printing Print (Rebels Cartoon Style) / Black Arms / Black Hands",13 +973pr2879c01,"Torso Police Shirt with Pockets, Silver Radio and Badge, Brown Belt with Canteen and Phone Print / Tan Arms / Yellow Hands",13 +973pr2880c01,"Torso Town Prisoner Open Jacket with Dark Bluish Gray Prison Stripes, Rope Belt, Tooth Necklace Print / White Arms / Yellow Hands",13 +973pr2882c01,Torso SW Imperial Officer 6 Print (Rebels Cartoon Style) / Dark Tan Arms / Black Hands,13 +973pr2883c01,"Torso Mummy Wrapping, Copper Armor with Rivets, Chains and Blue Round Jewel (Chi) Print / Light Bluish Gray Arms / White Hands",13 +973pr2884c01,Torso SW Black Armor Plates with Silver and Red Stripes Print (Inquisitor) / Dark Bluish Gray Arms / Black Hands,13 +973pr2885c01,"Torso Safety Vest with Reflective Stripes, Reddish Brown Shirt, Belt with Pouches and Pliers Print / Reddish Brown Arms / Dark Bluish Gray Hands",13 +973pr2886c01,"Torso Pirate Open Jacket over Red and White Striped Shirt, Gold Trim and Buttons Print / Blue Arms / Yellow Hands",13 +973pr2887c01,"Torso Feathers, Dark Blue Shirt, Dark Tan Belt and Suspenders and Blue Round Jewel (Chi) Print / Light Bluish Gray Arms / Dark Bluish Gray Hands",13 +973pr2891c01,Torso SW Imperial Agent with Armor Vest Print (Agent Kallus) / Black Arms / Black Hands,13 +973pr2892c01,Torso SW Imperial AT-DP Pilot with Light Bluish Gray Vest and Black Belt Print / White Arms / Light Bluish Gray Hands,13 +973pr2893c01,Torso Crocodile Skin with Dark Green Crossing Straps and Fire Chi Emblem Print / Olive Green Arms / Dark Green Hands,13 +973pr2894c01,Torso Muscles Outline with Green Lantern Logo on White Background Print / Black Arms / White Hands,13 +973pr2895c01,Torso Batman Logo Space Suit with Four Hoses and Utility Belt Print / White Arms / Light Bluish Gray Hands,13 +973pr2896c01,Torso Suit Serrated with Muscles Outline and White Sinestro Logo Print / Black Arms / Yellow Hands,13 +973pr2898c01,Torso Fur with Copper Armor and Ice Chi Emblem Print / Trans-Light Blue Arm Left / White Arm Right / Dark Azure Hand Left / Light Bluish Gray Hand Right,13 +973pr2899c01,MINI UPPER PART NO 2899,13 +973pr2900c01,"Torso Fur with Wide Belt, Straps, Glowing Bones and Ice Chi Emblem Print / White Arms / Light Bluish Gray Hands",13 +973pr2901c01,"Torso Ninjago Snake with Black and Copper Scales, Knives and Shoulder Pad Print / Dark Red Arm and Black Hand Left / Dark Purple Arm and Hand Right",13 +973pr2902c01,"Torso Bare Chest Muscles, Purple Snake Tattoo, Shoulder Pad, Snake Buckle Print / Dark Red Arm & Black Hand Left / Yellow Arm & Yellow Hand Right",13 +973pr2903c01,"Torso Leather Vest over Bare Chest, Tooth Necklace, Snake Heads Belt Buckle, Snake Head on Reverse Print / Yellow Arms / Black Hands",13 +973pr2904c01,"Torso Black Bare Chest with Tiger Stripes, Dark Red and Gold Armor with Straps and Fire Chi Emblem Print / Dark Orange Arms / White Hands",13 +973pr2905c01,"Torso Chima Bare Chest with Body Lines, Gold Crossing Straps and Blue Round Jewel (Chi) Print / Tan Arms / White Hands",13 +973pr2906c01,"Torso Ninjago Copper and Dark Red Samurai Armor, Snake Heads Belt Buckle and Shuriken and Vials on Reverse Print / Dark Red Arms / Black Hands",13 +973pr2907c01,MINI UPPER PART NO.2907,13 +973pr2908c01,MINI UPPER PART NO.2908,13 +973pr2909c01,"Torso Black, Silver and Medium Azure Body Armor with Ultra Agents Logo over Shirt and Black Tie Print / Dark Blue Arms / Yellow Hands",13 +973pr2910c01,Torso Armor with Straps and Spiders on Front and Back Print / Bright Light Orange Arm Left / Flat Silver Arm Right / Dark Bluish Gray Hands,13 +973pr2911c01,MINI UPPER PART NO. 2911,13 +973pr2912c01,"Torso Fur, Glowing Bones, Copper Armor with Rivets, Chains and Blue Round Jewel (Chi) Print / Sand Blue Arms / White Hands",13 +973pr2913c01,"Torso Construction Jacket over Dark Gray Hoodie, Zipper Pockets, Brown Belt Print / Orange Arms / Dark Bluish Gray Hands",13 +973pr2915c01,"Torso SW Armor Stormtrooper, Detailed Armor Print without Shoulder Belts (Shadow Stormtrooper) / Pearl Dark Gray Arms / Black Hands",13 +973pr2916c01,Torso SW Imperial Robe with Gray Creases Print (Shadow Guard) / Black Arms / Black Hands,13 +973pr2917c01,"Torso SW Armor Plates Mandalorian Female with Red, Orange and Silver Print (Sabine Wren) / Light Flesh Arms / Black Hands",13 +973pr2918c01,Torso SW Armor Clone Trooper with Belt with Pockets Print (Senate Commando) / Blue Arms / Black Hands,13 +973pr2919c01,Torso SW Armor Clone Trooper with White Senate Commando Captain Markings with Belt with Pockets Print / Blue Arms / Black Hands,13 +973pr2920c01,Torso SW Armor Camouflage Clone Trooper with Dark Tan Diagonal Belt Print / Medium Dark Flesh Arms / Black Hands,13 +973pr2921c01,Torso SW Armor Camouflage Clone Trooper Print / Medium Dark Flesh Arms / Black Hands,13 +973pr2922c01,"Torso Batman Logo with Muscles, Light Bluish Gray Shadow and Gold Belt Print / Dark Bluish Gray Arms / Black Hands",13 +973pr2923c01,Torso Female Top with Bright Pink and White Stripes and Flower Necklace Print / Yellow Arms / Yellow Hands,13 +973pr2924c01,"Torso Blouse with Buttons, Dark Pink Panel and Name Badge Print / White Arms / Yellow Hands",13 +973pr2925c01,"Torso Female Halter Top with Dolphin, Pink and Medium Azure Swirls and Yellow Stars Print / Yellow Arms / Yellow Hands",13 +973pr2926c01,Torso Shirt with Female Outline and Silver Trim and Belt Print (Wonder Woman) / Light Flesh Arms / Light Flesh Hands,13 +973pr2927c01,Torso Overalls Blue with Running Banana and 'Banana Co.' on Reverse Print / Yellow Arms / Light Flesh Hands,13 +973pr2928c01,"Torso Winter Jacket with Fur, Strings and Yellow Belt Print (Captain Cold) / Medium Blue Arms / White Hands",13 +973pr2929c01,Torso Armor Silver and Red with Blue Muscles Print (Black Manta) / Black Arms / Black Hands,13 +973pr2930c01,MINI UPPER PART NO. 2930,13 +973pr2931c01,"Torso Police Shirt with Dark Tan Vest with Pockets, Silver Radio and Badge, Zipper and 'POLICE' Print on Back / Tan Arms / Yellow Hands",13 +973pr2932c01,Torso Silver Body Armor with Orange Straps Print / Orange Arms / Dark Bluish Gray Hands,13 +973pr2933c01,Torso Batman 'R' Symbol with Silver and Gold Diving Suit Print / Red Arms / Black Hands,13 +973pr2934c01,Torso SW Armor Clone Trooper Lieutenant Black Belt and Four Dark Azure Stars Print / Dark Azure Arms / Black Hands,13 +973pr2935c01,Torso Town Prisoner Shirt with Prison Stripes and Suspenders Print / White Arms / Yellow Hands,13 +973pr2937c01,Torso Female Silver and Gold Space Armor with Green Dirt and Belt Buckle with Ultra Agent Toxic Print / Lime Arms / Bright Green Hands,13 +973pr2938c01,"Torso Robot with Silver Framework, Dark Purple Wires and Center Swirl Print / Black Arms / Dark Purple Hands",13 +973pr2939c01,"Torso Muscles Outline with Red Straps and Belt, Yellow Clasps and Cord Print / Green Arms / Green Hands",13 +973pr2940c01,Torso Armor with Silver Metal Plates and Dark Pink Electrical Wires and Buttons Print / Black Arms / Lime Hands,13 +973pr2941c01,"Torso Shirt with Female Outline, Belt and Red and Yellow Superman Logo Print / Blue Arms / Light Flesh Hands",13 +973pr2942c01,"Torso Town Prisoner Female, Dark Bluish Gray Stripes, Buttons and ID Tag Print / White Arms / Yellow Hands",13 +973pr2943c01,"Torso Female Gray, Pink and Medium Azure Body Armor with Ultra Agents Logo over Shirt and Black Tie Print / White Arms / Yellow Hands",13 +973pr2944c01,Torso Muscles Outline with Gold Belts and Red Buckle with Black Hawk Print / Light Flesh Arms / Pearl Gold Hands,13 +973pr2945c01,"Torso Black Striped Vest with Clasps and Lime Lines, Zipper, Belt with Gold Buckle and Muscles Print (Green Arrow) / Light Flesh Arms / Green Hands",13 +973pr2946c01,Torso Silver Armor with 2 Red Dots Print (Cyborg) / Flat Silver Arms / Black Hands,13 +973pr2949c01,Torso Lab Coat with Pockets and ID Badge over Plaid Shirt and Lime Top and 'AC RESEARCH' on Back Print / White Arms / Yellow Hands,13 +973pr2954c01,Torso SW Female Robe with Reddish Brown Belt Buckle Print (Asajj Ventress 75087) / Light Bluish Gray Arms / White Hands,13 +973pr2955c01,MINI UPPER PART NO. 2955,13 +973pr2956c01,Torso SW Gungan Vest with Gold Trim Front and Back Print / Flesh Arms / Dark Brown Hands,13 +973pr2958c01,MINI UPPER PART NO.2958,13 +973pr2959c01,MINI UPPER PART NO.2959,13 +973pr2960c01,MINI UPPER PART NO.2960,13 +973pr2961c01,Torso Speed Champions with Porsche Motorsport Print / Lime Arms / Black Hands,13 +973pr2962c01,Torso 'PORSCHE MOTORSPORT' Race Suit with 'Mobil' Logo and Red Collar Print / White Arms / Black Hands,13 +973pr2963c01,Torso 'PORSCHE MOTORSPORT' Race Suit with Orange Collar Print / Orange Arms / Black Hands,13 +973pr2964c01,MINI UPPER PART NO.2964,13 +973pr2965c01,MINI UPPER PART NO. 2965,13 +973pr2966c01,MINI UPPER PART NO.2966,13 +973pr2967c01,Torso Armor with White Circle and Gold and Silver Plates Print / Dark Red Arms / Dark Red Hands,13 +973pr2968c01,Torso Armor Robot with Blue and Light Bluish Gray Print / Pearl Dark Gray Arms / Dark Bluish Gray Hands,13 +973pr2970c01,MINI UPPER PART NO. 2970,13 +973pr2971c01,MINI UPPER PART 2K NR. 2971,13 +973pr2972c01,MINI UPPER PART NO. 2972,13 +973pr2973c01,MINI UPPER PART 2K NO. 2973,13 +973pr2974c01,MINI UPPER PART 2K NO 2974,13 +973pr2975c01,MINI UPPER PART NO. 2975,13 +973pr2976c01,MINI UPPER PART 2K NO. 2976,13 +973pr2977c01,MINI UPPER PART NO. 2977,13 +973pr2978c01,MINI UPPER PART NO. 2978,13 +973pr2979c01,MINI UPPER PART 2K NO. 2979,13 +973pr2980c01,MINI UPPER PART NO. 2980,13 +973pr2981c01,MINI UPPER PART NO. 2981,13 +973pr2984c01,MINI UPPER PART 2K NO. 2984,13 +973pr2985c01,"Torso Armor with Silver Star on Chest and Red, White and Reddish Brown Harness Print (Captain America) / Dark Blue Arms / Reddish Brown Hands",13 +973pr2986c01,Torso Suit with Black Hydra Logo and Dark Bluish Gray Belt with Silver Buckle Print (Baron Von Strucker) / Sand Blue Arms / Light Flesh Hands,13 +973pr2987c01,Torso Gold and Silver Armor with Utility Belt Print / Light Bluish Gray Arms / Light Bluish Gray Hands,13 +973pr2988c01,"Torso Muscles Outline with Black, Blue and White Suit with Light Blue Dots Print (Quicksilver) / Dark Blue Arms / Light Flesh Hands",13 +973pr2991c01,MINI UPPER PART NO. 2991,13 +973pr2992c01,"Torso Spacesuit Silver Belt and Chest Piece with Space Shuttle Logo, Front and Back Print / White Arms / Dark Bluish Gray Hands",13 +973pr2993c01,"Torso Vest with Collar, Dark Red Panels and Pockets with Silver Zippers Print / Dark Red Arms / Light Flesh Hand Right / Black Hand Left",13 +973pr2994c01,Torso Armor with Gold Circles and Buckle Print (Thor) / Pearl Dark Gray Arms / Light Flesh Hands,13 +973pr2995c01,Torso Armor with White Circle and Gold Plates (Mark 43) Print / Dark Red Arms / Dark Red Hands,13 +973pr2996c01,Torso Female Jacket over Black Top with Necklace Print (Scarlet Witch) / Dark Red Arms / Light Flesh Hands,13 +973pr2997c01,Torso Armor Robot with Light Bluish Gray Panels and Red Lights Print / Pearl Dark Gray Arms / Dark Bluish Gray Hands,13 +973pr2998c01,"Torso Safety Vest with Reflective Stripes over Medium Blue Shirt, ID Badge, Red Pen around Neck Print / Medium Blue Arms / Yellow Hands",13 +973pr2999c01,"Torso Female Lab Coat over Medium Blue Shirt, ID Badge on Front, Space Shuttle Logo on Back Print / White Arms / Yellow Hands",13 +973pr3,"Minifig Torso with SW Layered Shirt, Brown Belt Print",13 +973pr3000c01,MINI UPPER PART NO 3000,13 +973pr3001c01,MINI UPPER PART NO 3001,13 +973pr3002c01,MINI UPPER PART NO 3002,13 +973pr3003c01,Torso Female Jumpsuit with Silver Zipper and Black Utility Belt Print / Dark Blue Arm with SHIELD Logo Print Right / Dark Blue Arm Left / Light Flesh Hands,13 +973pr3004c01,MINI UPPER PART NO 3004,13 +973pr3005c01,MINI UPPER PART 2K NO. 3005,13 +973pr3006c01,Torso Silver Armor with Red Spots Print (Ultimate Ultron) / Flat Silver Arms / Light Bluish Gray Hands,13 +973pr3007c01,Torso Dark Blue Armor with Red Avengers Logo Print (Iron Legion) / White Arms / Dark Blue Hands,13 +973pr3008c01,MINI UPPER PART. NO. 3008,13 +973pr3009c01,MINI UPPER PART NO.3009,13 +973pr3010c01,MINI UPPER PART NO. 3010,13 +973pr3011c01,MINI UPPPER PART NO. 3011,13 +973pr3012c01,MINI UPPER PART NO 3012,13 +973pr3013c01,"Torso Female Silver Zippered Suit with Belt, Red Buckle and Dark Azure Lines Print (Black Widow) / Black Arms / Black Hands",13 +973pr3014c01,Torso Muscles Outline with Gold and Magenta Print (Vision) / Sand Green Arms / Magenta Hands,13 +973pr3015c01,"Torso Black, Dark Red, and Dark Blue Armor with Red Avengers Logo Print (Ultron MK1) / White Arm Left / Pearl Dark Gray Arm Right / Dark Blue Hand Left / Dark Bluish Gray Hand Right",13 +973pr3016c01,Torso Leather Trench Coat with Collar and Pockets and Silver Zipper Print / Black Arms / Reddish Brown Hands,13 +973pr3017c01,MINI UPPER PART NO. 3017,13 +973pr3018c01,Torso - Silver and Yellowish Green Tattered Robes with Silver Chains Print / Blacks Arms / Black Hands,13 +973pr3018c01a,Torso - Jacket with Anchor Design over Dark Red Sweater Print / Blue Arms / Yellow Hands,13 +973pr3019c01,MINI UPPER PART NO.3019,13 +973pr3020c01,MINI UPPER PART NO 3020,13 +973pr3021c01,MINI UPPER PART NO 3021,13 +973pr3022c01,MINI UPPER PART NO. 3022,13 +973pr3023c01,MINI UPPER PART NO.3023,13 +973pr3025c01,MINI UPPER PART NO 3025,13 +973pr3026c01,MINI UPPER PART NO 3026,13 +973pr3027c01,MINI UPPER PART NO 3027,13 +973pr3028c01,MINI UPPER PART NO. 3028,13 +973pr3029c01,MINI UPPER PART NO. 3029,13 +973pr3030c01,MINI UPPER PART NO. 3030,13 +973pr3031c01,MINI UPPER PART NO. 3031,13 +973pr3032c01,MINI UPPER PART NO. 3032,13 +973pr3033c01,MINI UPPER PART NO. 3033,13 +973pr3034c01,MINI UPPER PART NO. 3034,13 +973pr3035c01,MINI UPPER PART NO. 3035,13 +973pr3036c01,MINI UPPER PART NO. 3036,13 +973pr3037c01,MINI UPPER PART NO. 3037,13 +973pr3038c01,MINI UPPER PART NO. 3038,13 +973pr3039c01,MINI UPPER PART NO. 3039,13 +973pr3040c01,MINI UPPER PART NO. 3040,13 +973pr3041c01,Torso with Dual Side Print - Tattered Ninjago Robe with Yellowish Green Collar and Dark Blue Undershirt in Front - Dark Blue Arms - Yellowish Green Hands,13 +973pr3042c01,MINI UPPER PART NO. 3042,13 +973pr3043c01,MINI UPPER PART NO. 3043,13 +973pr3045c01,MINI UPPER PART NO. 3045,13 +973pr3046c01,MINI UPPER PART NO. 3046,13 +973pr3047c01,MINI UPPER PART NO.3047,13 +973pr3048c01,MINI UPPER PART 2K NO.3048,13 +973pr3049c01,MINI UPPER PART 2K NO.3049,13 +973pr3050c01,MINI UPPER PART NO.3050,13 +973pr3051c01,MINI UPPER PART NO.3051,13 +973pr3052c01,MINI UPPER PART NO.3052,13 +973pr3053c01,MINI UPPER PART NO.3053,13 +973pr3054c01,MINI UPPER PART NO.3054,13 +973pr3055c01,MINI UPPER PART NO.3055,13 +973pr3057c01,MINI UPPER PART NO 3057,13 +973pr3058c01,MINI UPPER PART NO 3058,13 +973pr3059c01,MINI UPPER PART NO 3059,13 +973pr3060c01,MINI UPPER PART NO 3060,13 +973pr3061c01,MINI UPPER PART NO 3061,13 +973pr3062c01,MINI UPPER PART 2K NO.3062,13 +973pr3063c01,MINI UPPER PART NO. 3063,13 +973pr3064c01,MINI UPPER PART NO.3064,13 +973pr3065c01,MINI UPPER PART NO 3065,13 +973pr3066c01,MINI UPPER PART NO 3066,13 +973pr3067c01,MINI UPPER PART NO 3067,13 +973pr3068c01,MINI UPPER PART NO 3068,13 +973pr3069c01,MINI UPPER PART NO 3069,13 +973pr3077c01,MINI UPPER PART NO. 3077,13 +973pr3080c01,MINI UPPER PART NO. 3080,13 +973pr3081c01,MINI UPPER PART NO. 3081,13 +973pr3082c01,MINI UPPER PART NO. 3082,13 +973pr3083c01,MINI UPPER PART NO. 3083,13 +973pr3084c01,MINI UPPER PART NO. 3084,13 +973pr3085c01,MINI UPPER PART NO. 3085,13 +973pr3086c01,MINI UPPER PART NO. 3086,13 +973pr3087c01,MINI UPPER PART NO. 3087,13 +973pr3088c01,MINI UPPER PART NO. 3088,13 +973pr3089c01,MINI UPPER PART NO. 3089,13 +973pr3090c01,MINI UPPER PART NO. 3090,13 +973pr3091c01,MINI UPPER PART NO 3091,13 +973pr3092c01,MINI UPPER PART 2K NO. 3092,13 +973pr3093c01,MINI UPPER PART NO 3093,13 +973pr3094c01,MINI UPPER PART NO. 3094,13 +973pr3095c01,MINI UPPER PART NO 3095,13 +973pr3096c01,MINI UPPER PART NO. 3096,13 +973pr3097c01,MINI UPPER PART NO 3097,13 +973pr3098c01,MINI UPPER PART NO.3098,13 +973pr3100c01,MINI UPPER PART 2K NO.3100,13 +973pr3101c01,MINI UPPER PART NO.3101,13 +973pr3102c01,MINI UPPER PART NO. 3102,13 +973pr3103c01,MINI UPPER PART NO. 3103,13 +973pr3104c01,MINI UPPER PART NO. 3104,13 +973pr3105c01,MINI UPPER PART NO. 3105,13 +973pr3106c01,MINI UPPER PART NO.3106,13 +973pr3108c01,MINI UPPER PART 2K NO. 3108,13 +973pr3110c01,MINI UPPER PART NO. 3110,13 +973pr3111c01,MINI UPPER PART NO. 3111,13 +973pr3112c01,MINI UPPER PART 2K NO. 3112,13 +973pr3113c01,MINI UPPER PART NO. 3113,13 +973pr3114c01,MINI UPPER PART NO. 3114,13 +973pr3116c01,MINI UPPER PART NO. 3116,13 +973pr3117c01,MINI UPPER PART NO. 3117,13 +973pr3118c01,MINI UPPER PART NO. 3118,13 +973pr3119c01,"MINI UPPERPART W.HOOK, LEFT NO. 3119",13 +973pr3120c01,MINI UPPER PART NO. 3120,13 +973pr3121c01,MINI UPPER PART NO. 3121,13 +973pr3122c01,MINI UPPER PART NO. 3122,13 +973pr3123c01,MINI UPPER PART NO.3123,13 +973pr3124c01,MINI UPPER PART NO.3124,13 +973pr3126c01,MINI UPPER PART NO.3126,13 +973pr3127c01,MINI UPPER PART NO. 3127,13 +973pr3128c01,MINI UPPER PART NO. 3128,13 +973pr3130c01,MINI UPPER PART NO 3130,13 +973pr3131c01,MINI UPPER PART NO. 3131,13 +973pr3132c01,MINI UPPER PART NO. 3132,13 +973pr3133c01,MINI UPPER PART NO. 3133,13 +973pr3134c01,MINI UPPER PART NO. 3134,13 +973pr3135c01,MINI UPPER PART NO. 3135,13 +973pr3136c01,MINI UPPER PART NO. 3136,13 +973pr3138c01,MINI UPPER PART NO. 3138,13 +973pr3139c01,MINI UPPER PART NO. 3139,13 +973pr3140c01,MINI UPPER PART NO. 3140,13 +973pr3141c01,MINI UPPER PART NO 3141,13 +973pr3142c01,MINI UPPER PART NO. 3142,13 +973pr3143c01,MINI UPPER PART NO. 3143,13 +973pr3144c01,MINI UPPER PART NO 3144,13 +973pr3145c01,MINI UPPER PART NO 3145,13 +973pr3146c01,MINI UPPER PART NO. 3146,13 +973pr3147c01,MINI UPPER PART NO. 3147,13 +973pr3148c01,MINI UPPER PART NO 3148,13 +973pr3149c01,MINI UPPER PART NO. 3149,13 +973pr3150c01,Torso Nexo Knights Armor with Orange and Gold Circuitry and Lime Emblem with Orange Wolf Head Print / Flat Silver Arms / Green Hands (Aaron),13 +973pr3151c01,MINI UPPER PART NO. 3151,13 +973pr3152c01,Torso Nexo Knights Armor with Orange and Gold Circuitry and Sand Blue Emblem with Gray Horse Head Print / Flat Silver Arms / White Hands,13 +973pr3153c01,MINI UPPER PART NO. 3153,13 +973pr3154c01,MINI UPPER PART NO 3154,13 +973pr3155c01,MINI UPPER PART NO 3155,13 +973pr3156c01,MINI UPPER PART NO 3156,13 +973pr3157c01,MINI UPPER PART NO 3157,13 +973pr3158c01,MINI UPPER PART NO 3158,13 +973pr3160c01,MINI UPPER PART NO.3160,13 +973pr3161c01,MINI UPPER PART NO.3161,13 +973pr3162c01,MINI UPPER PART NO.3162,13 +973pr3163c01,MINI UPPER PART NO.3163,13 +973pr3165c01,MINI UPPER PART NO 3165,13 +973pr3166c01,MINI UPPER PART NO 3166,13 +973pr3167c01,MINI UPPER PART NO 3167,13 +973pr3168c01,Torso SW Mandarin Collar and Reddish Brown Utility Belt with Pouches and Buckle Front and Cross-strap and Buckles Back / Dark Tan Arms / Light Flesh Hands [Resistance Soldier],13 +973pr3169c01,MINI UPPER PART NR. 3169,13 +973pr3170c01,MINI UPPER PART NO 3170,13 +973pr3171c01,MINI UPPER PART NO 3171,13 +973pr3173c01,MINI UPPER PART NO 3173,13 +973pr3174c01,MINI UPPER PART NO 3174,13 +973pr3175c01,MINI UPPER PART NO 3175,13 +973pr3176c01,MINI UPPER PART NO 3176,13 +973pr3177c01,MINI UPPER PART NO 3177,13 +973pr3178c01,MINI UPPER PART NO 3178,13 +973pr3179c01,MINI UPPER PART NO 3179,13 +973pr3181c01,MINI UPPER PART NO 3181,13 +973pr3182c01,MINI UPPER PART NO 3182,13 +973pr3183c01,MINI UPPER PART NO 3183,13 +973pr3184c01,Torso Female Outline V-neck Sweater over White Shirt with Scalloped Collar print / Black Arms / Light Flesh Hands,13 +973pr3185c01,Torso Tweed Suit Jacket over Red Stripe Button Down Shirt and Dark Red Bowtie print / Medium Dark Flesh Arms / Light Flesh Hands,13 +973pr3186c01,Torso Suit Jacket over Dark Blue Vest and White Button Down Shirt with Gold Chain Watch print / Dark Purple Arms / Light Flesh Hands,13 +973pr3187c01,Torso Female Outline Sleeveless Dress Bodice with Gray and Black Fabric Lines print / Light Bluish Gray Arms / Light Bluish Gray Hands,13 +973pr3188c01,MINI UPPER PART 2K NO. 3188,13 +973pr3190c01,Torso Nexo Knights Armor with Orange Emblem with Yellow Crowned Lion and Dark Azure Panels print / Flat Silver Arms / Dark Azure Hands,13 +973pr3191c01,Torso Bare Chest with Muscles and Dark Red Spots Print / Red Arms / Dark Red Hands,13 +973pr3192c01,MINI UPPER PART NO.3192,13 +973pr3194c01,MINI UPPER PART NO. 3194,13 +973pr3195c01,MINI UPPER PART NO.3195,13 +973pr3196c01,Torso Armor with Dual Side Black and Silver Panels print - Front with Medium Blue Circle print - Flat Silver Arms - Dark Bluish Gray Hands,13 +973pr3197c01,MINI UPPER PART NO.2 NO.3197,13 +973pr3199c01,Torso Nexo Knights Armor with Orange and Gold Circuitry and Orange Emblem with Gold Wolf Head Pattern / Dark Green Arms / Green Hands,13 +973pr3200c01,MINI UPPER PART NO. 3200,13 +973pr3201c01,"Torso Nexo Knights Dual-sided Armor with Orange and Gold Circuitry, Falcon Shield on Front print / Dark Blue Arms / Blue Hands",13 +973pr3202c01,MINI UPPER PART NO. 3202,13 +973pr3203c01,MINI UPPER PART NO.3203,13 +973pr3204c01,Torso - Ghostbusters Uniform with 'P.V.' ID Badge and 'PETER' Back Print / Tan Arms with Ghostbusters Logo / Black Hands,13 +973pr3205c01,MINI UPPER PART NO. 3205,13 +973pr3206c01,MINI UPPER PART NO. 3206,13 +973pr3207c01,Minifig Torso - Jacket with Two Pockets over Bright Green T-Shirt with 8-Bit Shooter Print - Black Arms - Yellow Hands,13 +973pr3208c01,MINI UPPER PART NO. 3208,13 +973pr3209c01,Torso Town Prisoner Number 18675 on Back of Dark Bluish Gray Striped Jumpsuit over Orange Shirt with Belly Line print / White Arms / Yellow Hands,13 +973pr3210,"Minifig Torso Town Prisoner Number 92116, Orange Tank Top with White Shirt Tied Around Waist print / Yellow Arms / Yellow Hands",13 +973pr3211c01,"Torso Town Prisoner Number 86737, Dark Bluish Gray Stripes, Orange Shirt print / White Arms / Yellow Hands",13 +973pr3212c01,Torso - Light Blue Striped Shirt w Yellow Undershirt and Yellow Spot Stains / Light Blue Arms / Flesh Hands (Ghostbusters Louis),13 +973pr3213c01,MINI UPPER PART "NO. 3213",13 +973pr3214c01,"Minifig Torso Dual Side Police Female Jacket with Zipper, Dark Blue Tie, Gold Badge, Radio and 'POLICE' print on Back / Bright Light Blue Arms / Yellow Hands",13 +973pr3215c01,"Minifig Torso Police Shirt with Dark Bluish Gray Vest, Gold Badge, Radio and 'POLICE' print on Back / Bright Light Blue Arms / Dark Bluish Gray Hands",13 +973pr3216c01,"Torso Female Outline Dress with Blue and Gold Fabric, Gold Trim and Necklace Print / Red Arms / Yellow Hands",13 +973pr3217c01,MINI UPPER PART 2K NO.3217,13 +973pr3218c01,"Torso Female Outline Jacket with Dark Blue Seams, Silver Zippers and Utility Belt with Silver Buckle Print / Black Arms / Black Hands",13 +973pr3219c01,MINI UPPER PART 2K NO.3219,13 +973pr3220c01,MINI UPPER PART NO.3220,13 +973pr3221c01,MINI UPPER PART NO.3221,13 +973pr3222c01,MINI UPPER PART NO.3222,13 +973pr3223c01,MINI UPPER PART NO.3223,13 +973pr3224c01,MINI UPPER PART NO.3224,13 +973pr3225c01,MINI UPPER PART 2K NO.3225,13 +973pr3226c01,MINI UPPER PART NO.3226,13 +973pr3227c01,MINI UPPER PART NO.3227,13 +973pr3228c01,MINI UPPER PART NO.3228,13 +973pr3229c01,MINI UPPER PART 2K NO.3229,13 +973pr3230c01,MINI UPPER PART NO.3230,13 +973pr3231c01,Torso - Slimed Ghostbusters Uniform with 'P.V.' ID Badge / Tan Arms with Ghostbusters Logo / Black Hands,13 +973pr3232c01,Torso - Ghostbusters Uniform with 'R.S.' ID Badge / Tan Arms with Ghostbusters Logo / Black Hands,13 +973pr3233c01,Torso - Ghostbusters Uniform with 'E.S.' ID Badge / Tan Arms with Ghostbusters Logo / Black Hands,13 +973pr3234c01,Torso - Ghostbusters Uniform with 'W.Z.' ID Badge / Tan Arms with Ghostbusters Logo / Black Hands,13 +973pr3235,Minifig Torso Dual Sided Female Dress with One Light Flesh Shoulder and Gold Sequins Front print / Dark Orange Right Arm / Light Flesh Left Arm / Light Flesh Hands (Ghostbusters Possessed Dana),13 +973pr3236c01,"Torso Pajamas with Vertical Blue Stripes, Yellow Undershirt and Spots Print / Bright Light Blue Arms / Light Flesh Hands",13 +973pr3237c01,Torso - White Blouse with Dark Red Cardigan Print / White Arms / Flesh Hands (Ghostbusters Secretary Janine),13 +973pr3238c01,Torso - Purple Old Fashion Dress / Purple Arms / Light Purple Hands (Ghostbusters Library Ghost),13 +973pr3239c01,Torso - Black Jacket White Undershirt Ghostbusters Zombie / Black Arms / Dark Tan Hands,13 +973pr3240c01,MINI UPPER PART NO.3240,13 +973pr3241c01,Minifig Torso Race Jacket with Red Panel and 'AIRBORNE' on Front and Back print / White Arms / Dark Bluish Gray Hands,13 +973pr3253c01,MINI UPPER PART NO. 3253,13 +973pr3255c01,MINI UPPER PART NO. 3255,13 +973pr3256,Torso Ninjago Snake with Shoulder Pad and Dark Green Belt and Red Vials Pattern / Lime Arm Left / Dark Orange Arm Right / Black Hands,13 +973pr3258c01,MINI UPPER PART NO. 3258,13 +973pr3259c01,Torso with Dual Sided Dark Green Snakeskin Markings under Dark Orange Armor and Dark Green Crossbelt with Red Vial (Front) Print - Dark Orange Arms - Black Hands,13 +973pr3260c01,MINI UPPER PART NO. 3260,13 +973pr3261c01,Torso SW Boba Fett Dark Green Armor Plates Front and Back with Small Emblem on Chest print / Sand Blue Arms / Light Bluish Gray Hands,13 +973pr3262c01,MINI UPPER PART NO. 3262,13 +973pr3263c01,Torso Racing Suit Dual Sided Checkered pattern with 'PORSCHE' on Black Stripe print / Red Arms / Black Hands,13 +973pr3264c01,Torso Racing Suit - Front Mobil 1 and DMG MORI print and Back PORSCHE and DMG MORI print /White Arms /Black Hands,13 +973pr3264c02,"Torso Racing Mechanic's Suit with Light Bluish Gray Band - Front Mobil 1 and DMG MORI print and Back PORSCHE, DMG MORI, and Comm Device (Radio) print /White Arms /Black Hands",13 +973pr3266c01,MINI UPPER PART NO. 3266,13 +973pr3267c01,MINI UPPER PART NO. 3267,13 +973pr3272,Minifig Torso Dual Sides Body Armor with Black and Gold Belt - Large Bat Logo on Front (Batman) - Dark Bluish Gray Arms - Black Hands,13 +973pr3273,Minifig Torso Dual Sides Batman Jacket - Zipper Pockets and ID Badge on Front - 'LEXCORP' on Back print / Dark Green Arms / Black Hands,13 +973pr3274c01,Torso Female Costume (Wonder Woman) with Crossbelt and Gold Neckline Trim - Silver Wrist Gauntlet Print - Light Flesh Arms - Light Flesh Hands,13 +973pr3275c01,"Torso Muscles, Gold Atomic Symbol and Large Belt print, Light Flesh Arms with Red Short Sleeves print and Light Flesh Hands",13 +973pr3276c01,MINI UPPER PART NO. 3276,13 +973pr3277c01,MINI UPPER PART NO. 3277,13 +973pr3278c01,Torso - Shirt with Muscles - Red Cape Clasps - Red and Gold Superman 'S' Logo - Gold Belt Buckle Print - Dark Blue Arms - Light Flesh Hands,13 +973pr3281c01,Torso Dark Blue Rumpled Overalls and Reddish Brown Belt with Buckle print Front and Dark Blue Y Straps print Back/ Dark Bluish Gray Arms / Medium Dark Flesh Hands [SW Ugnaught],13 +973pr3282c01,Torso Race Suit with Ford Logo on Front and Back Pattern / Dark Blue Arms / White Hands,13 +973pr3283c01,Torso Plaid Flannel Shirt Back - Open Front over T-Shirt with Ford Logo print / Red Arms / Black Hands,13 +973pr3285c01,Minifig Torso Race Suit Yellow Chevrolet emblem on Front and 'CORVETTE RACING' on Back print / Black Arms / Black Hands,13 +973pr3286c01,Minifig Torso Race Suit with Audi Logo - 'Audi Sport e-tron quattro' on Front and Audi Logo on Back print / White Arms / Black Hands,13 +973pr3287c01,MINI UPPER PART NO. 3287,13 +973pr3289c01,MINI UPPER PART NO. 3289,13 +973pr3290c01,MINI UPPER PART NO.3290,13 +973pr3291c01,"Torso SW Armor Stormtrooper, Detailed Armor with Battle Damage Scratches and Holes on Both Sides print / White Arms / Black Hands",13 +973pr3292c01,Torso SW Stormtrooper with Detailed Armor with Red Marking on Front and Gold Belt on Back print / Red Arms / Black Hands,13 +973pr3294c01,MINI UPPER PART NO. 3294,13 +973pr3295c01,"Torso with 4 Ovals, Lavender Stripes and Gold Belt print / Black Arms / White Hands",13 +973pr3297c01,MINI UPPER PART NO. 3297,13 +973pr3299c01,Torso Race Suit with Chevrolet Logo on Front and 'CAMARO' on Back Pattern / Black Arms / Black Hands,13 +973pr3301c01,Torso - Suit Jacket with Pocket and Notched Lapel over Shirt with Dark Tan Marks and Open Collar Print - Tan Arms - Light Flesh Hands,13 +973pr3302c01,Torso Female Open Jacket with 2 Pockets over White Shirt with Collar and 5 Buttons Print - Black Arms - Light Flesh Hands,13 +973pr3305c01,MINI UPPER PART NO. 3305,13 +973pr3306c01,"Torso SW Jacket with Rebel Logo, 2 Pockets Front- Seams and Wrinkles Back - Olive Green Scarf on Both Sides / Dark Tan Arms / Light Flesh Hands",13 +973pr3307c01,Torso Armor Front with Light Blue Circle Back with 2 Gold Circles print with White Arms and Hands,13 +973pr3308c01,Torso Female Front and Back Red and Gold Scarf fastened in Front with Gold Star and Red Sash print with Dark Blue Arms and Red Hands,13 +973pr3309c01,Torso SW Front and Back Female Outline - Dark Purple Vest over Sand Green Shirt with Open Collar and Silver Belt Buckle in Front and 2 Straight and 2 Curved Crossing Black Lines in Back / Sand Green Arms / Light Flesh Hands,13 +973pr3310c01,Torso SW Vest Robe Front with Blue Name Badge over Tan Undershirt Reddish Brown Belt with Buckle - Back with Belt and Straight Center Seam and Angled Side Seams / Tan Arms / Dark Orange Hands,13 +973pr3314c01,Torso with 1 White Button Centered Below Curved White Collar and White Belt Front and Back print / Black Arms with Dark Pink Short Sleeves / White Hands [Minnie],13 +973pr3315c01,Torso Sailor Suit with Yellow Collar Trim and Large Red Bowtie print / Blue Arms with Yellow Stripe print / White Hands,13 +973pr3316c01,Torso with V-Neck Shirt (Blouse) / White Arms with Lavender Short Sleeves / White Hands [Daisy],13 +973pr3317c01,Torso Female Dress with Dark Purple Trim and Seams print / Black Arms / Light Aqua Hands,13 +973pr3318c01,Torso with Dark Blue Fur Tufts on Front and Dark Blue Fins on Back (Stitch) print - Medium Blue Arms and Hands,13 +973pr3319c01,Torso Vest over Flesh Bare Chest with Dark Red Belt Front and Back print / Flesh Arms / Flesh Hands,13 +973pr3320c01,Torso Bare Chest With Blue Genie Belly Line and Navel / Medium Blue Arms with Gold Stripes (Open Cuff Bracelet) / Medium Blue Hands,13 +973pr3321c01,"Torso Open Collar, Light Flesh Neck, Dark Brown Belt print / Light Flesh Arms with Lime Short Sleeves with Scalloped Edge / Light Flesh Hands [Peter Pan]",13 +973pr3322c01,"Torso Pirate Coat with Gold Trim, Crossbelt, White Ascot print / Red Arms with White Stripe at Wrist / Light Flesh Right Hand / Flat Silver Left Hook",13 +973pr3323c01,"Torso Mermaid with Medium Lavender Shell Bra, Navel, and Green and Yellow Waist print / Light Flesh Arms / Light Flesh Hands [Ariel]",13 +973pr3324c01,Torso Female Dress Strapless with Lavender Neckline and Back and Shell Necklace print / Lavender Arms / Lavender Hands [Ursula],13 +973pr3325c01,Torso Dress with Collar and White Pinafore / Apron print / Light Flesh Arms with Medium Blue Short Sleeves print / Light Flesh Hands [Alice],13 +973pr3326c01,Torso Horizontal Magenta Stripes on Front and Back print / Dark Pink Arms with 4 Magenta Stripes print / Dark Pink Hands,13 +973pr3327c01,"Torso Spacesuit 3 Dark Bluish Gray Vents at Waist print / Both White Arms with Lime Elbow Stripe, Red Wrist Mark only on Right / White Hands",13 +973pr3328c01,"Torso Space Ringed Planet print on Front, Dark Pink Collar and Magenta Belt print on Front and Back / Blue Arms / Lime Hands",13 +973pr3329c01,Torso Muscles Outline with Lower Case i over Black Swirl inside Orange Oval (The Incredibles Logo) print / Black Arms with Red Short Sleeves / Black Hands,13 +973pr3330c01,Torso with Large White Letter 'S' print / White Arms with Black Long Sleeves covered by White Gauntlets with Silver Controls print / White Hands [Syndrome],13 +973pr3331c01,MINI UPPER PART NO. 3331,13 +973pr3332c01,Torso with SW Stormtrooper Ep. 7 print / White Arms / White Hands [30602-1],13 +973pr3334c01,Minifig Torso Spider-Man Costume 6 Black Webs and Large Spiders print / Blue Arms / Red Hands,13 +973pr3335c01,Minifig Torso - Dual Sided Red and White Stripes and Black Belt - White Star and Gold Buckle on Front print / White Arms / Red Hands,13 +973pr3336c01,MINI UPPER PART NO.3336,13 +973pr3337c01,Minifig Torso Vest with Dark Orange Belt and Orange Pumpkin Jack-o-Lantern Buckle print / Bright Green Arms / Bright Green Hands,13 +973pr3338c01,Mini Upper Part 3338,13 +973pr3339c01,Minifig Torso Jacket with Reddish Brown Belt with Silver Belt Buckle and Red Octopus (Marvel HYDRA Logo) on Reverse print / Black Arms / Black Hands,13 +973pr3340c01,MINI UPPER PART NO.3340,13 +973pr3342c01,MINI UPPER PART NO. 3342,13 +973pr3343,Torso - Shirt with Yellow 'R' Symbol and Yellow Belt with Round Buckle Print - Green Arms - Black Hands (Batman Robin),13 +973pr3344c01,MINI UPPER PART NO.3344,13 +973pr3348c01,MINI UPPER PART NO. 3348,13 +973pr3350c01,MINI UPPER PART NO. 3350,13 +973pr3351c01,MINI UPPER PART NO. 3351,13 +973pr3354c01,MINI UPPER PART NO 3354,13 +973pr3355c01,MINI UPPER PART NO 3355,13 +973pr3356c01,MINI UPPER PART NO. 3356,13 +973pr3357c01,MINI UPPER PART NO. 3357,13 +973pr3358c01,MINI UPPER PART NO. 3358,13 +973pr3359c01,MINI UPPER PART NO. 3359,13 +973pr3360c01,MINI UPPER PART NO.3360,13 +973pr3361c01,MINI UPPER PART NO. 3361,13 +973pr3370c01,MINI UPPER PART NO.3370,13 +973pr3371c01,Torso Dual Sided - Shirt with Front Pockets under Silver Control Unit with 3 Gauges and Belt with Silver Buckle print - Medium Blue Arms - Light Bluish Gray Hands,13 +973pr3372c01,"Torso Soccer Shirt with adidas Logo, 4 Stars and Eagle Front, 'KRUSE 23' Back Pattern / Light Flesh Arms with White Short Sleeves Pattern / Light Flesh Hands",13 +973pr3373c01,"Torso Soccer Shirt with Adidas Logo, 4 Stars and Eagle Front, 'BOATENG 17' Back Pattern / Reddish Brown Arms with White Short Sleeves Pattern / Reddish Brown Hands",13 +973pr3374c01,MINI UPPER PART 2K NO. 3374,13 +973pr3375c01,MINI UPPER PART 2K NO. 3375,13 +973pr3376c01,"Torso Soccer Shirt with adidas Logo, 4 Stars and Eagle Front, 'ÖZIL 8' Back Pattern / Flesh Arms with White Short Sleeves Pattern / Flesh Hands",13 +973pr3377c01,"Torso Soccer Shirt with adidas Logo, 4 Stars and Eagle Front, 'GÖTZE 19' Back Pattern / Light Flesh Arms with White Short Sleeves Pattern / Light Flesh Hands",13 +973pr3378c01,"Torso Soccer Shirt with adidas Logo, 4 Stars and Eagle Front, 'SCHWEINSTEIGER 7' Back Pattern / Light Flesh Arms with White Short Sleeves and German Flag 'Spielführer' Pattern / Light Flesh Hands",13 +973pr3379c01,"Torso Soccer Shirt with adidas Logo, 4 Stars and Eagle Front, 'KRAMER 20' Back Pattern / Light Flesh Arms with White Short Sleeves Pattern / Light Flesh Hands",13 +973pr3380c01,"Torso Soccer Shirt with adidas Logo, 4 Stars and Eagle Front, 'KHEDIRA 6' Back Pattern / Flesh Arms with White Short Sleeves Pattern / Flesh Hands",13 +973pr3381c01,"Torso Soccer Shirt with adidas Logo, 4 Stars and Eagle Front, 'MÜLLER 13' Back Pattern / Light Flesh Arms with White Short Sleeves Pattern / Light Flesh Hands",13 +973pr3382c01,"Torso Soccer Shirt with adidas Logo, 4 Stars and Eagle Front, 'REUS 21' Back Pattern / Light Flesh Arms with White Short Sleeves Pattern / Light Flesh Hands",13 +973pr3383c01,MINI UPPER PART 2K NO. 3383,13 +973pr3384c01,"Torso Soccer Shirt with adidas Logo, 4 Stars and Eagle Front, 'SCHÜRRLE 9' Back Pattern / Light Flesh Arms with White Short Sleeves Pattern / Light Flesh Hands",13 +973pr3385c01,"Torso Soccer Shirt with adidas Logo, 4 Stars and Eagle Front, 'KROOS 18' Back Pattern / Light Flesh Arms with White Short Sleeves Pattern / Light Flesh Hands",13 +973pr3386c01,MINI UPPER PART NO. 3386,13 +973pr3387c01,Torso Open Suit Jacket with Medium Blue Shirt Open Collar Pattern / Dark Blue Arms / Light Flesh Hands - Joachim Löw,13 +973pr3388c01,MINI UPPER PART NO.3388,13 +973pr3389c01,MINI UPPER PART NO.3389,13 +973pr3390c01,MINI UPPER PART NO. 3390,13 +973pr3391c01,MINI UPPER PART NO. 3391,13 +973pr3392c01,MINI UPPER PART NO. 3392,13 +973pr3402c01,MINI UPPER PART NO. 3402,13 +973pr3403c01,MINI UPPER PART NO. 3403,13 +973pr3404c01,MINI UPPER PART NO. 3404,13 +973pr3415c01,MINI UPPER PART NO. 3415,13 +973pr3422c01,MINI UPPER PART NO 3422,13 +973pr3423c01,MINI UPPER PART NO. 3423,13 +973pr3424c01,MINI UPPER PART NO. 3424,13 +973pr3425c01,MINI UPPER PART NO.3425,13 +973pr3426c01,MINI UPPER PART NO. 3426,13 +973pr3427c01,MINI UPPER PART NO. 3427,13 +973pr3429c01,MINI UPPER PART NO. 3429,13 +973pr3430c01,MINI UPPER PART NO. 3430,13 +973pr3431c01,MINI UPPER PART NO.3431,13 +973pr3432c01,MINI UPPER PART NO.3432,13 +973pr3433c01,MINI UPPER PART NO.3433,13 +973pr3434c01,MINI UPPER PART NO.3434,13 +973pr3435c01,MINI UPPER PART NO. 3435,13 +973pr3437c01,MINI UPPER PART NO 3437,13 +973pr3439c01,MINI UPPER PART NO. 3439,13 +973pr3440c01,MINI UPPER PART NO. 3440,13 +973pr3441c01,MINI UPPER PART NO. 3441,13 +973pr3442c01,MINI UPPER PART NO. 3442,13 +973pr3443c01,MINI UPPER PART NO. 3443,13 +973pr3444c01,MINI UPPER PART NO 3444,13 +973pr3445c01,MINI UPPER PART NO. 3445,13 +973pr3446c01,MINI UPPER PART NO. 3446,13 +973pr3447c01,MINI UPPER PART NO 3447,13 +973pr3448c01,MINI UPPER PART NO. 3448,13 +973pr3449c01,MINI UPPER PART NO 3449,13 +973pr3450c01,MINI UPPER PART NO. 3450,13 +973pr3451c01,MINI UPPER PART NO. 3451,13 +973pr3458c01,MINI UPPER PART NO 3458,13 +973pr3459c01,MINI UPPER PART NO. 3459,13 +973pr3460c01,MINI UPPER PART NO 3460,13 +973pr3461c01,"MINI UPPER PART, NO. 3461",13 +973pr3462c01,MINI UPPER PART NO. 3462,13 +973pr3463c01,MINI UPPER PART NO. 3463,13 +973pr3464c01,MINI UPPER PART NO. 3464,13 +973pr3467c01,MINI UPPER PART NO. 3467,13 +973pr3468c01,MINI UPPER PART NO. 3468,13 +973pr3469c01,MINI UPPER PART NO. 3469,13 +973pr3474c01,"MINI UPPER PART, NO. 3474",13 +973pr3475c01,"MINI UPPER PART, NO. 3475",13 +973pr3476c01,"MINI UPPER PART, NO. 3476",13 +973pr3477c01,MINI UPPER PART NO.3477,13 +973pr3478c01,MINI UPPER PART NO. 3478,13 +973pr3479c01,MINI UPPER PART NO.3479,13 +973pr3482c01,"MINI UPPER PART, NO. 3482",13 +973pr3485c01,Minifig Torso 5 Buttons Prisoner Suit with Number 86753 and Dual Sided Dark Bluish Gray Stripes over Dark Tan Undershirt print / White Arms / Black Hands,13 +973pr3487c01,MINI UPPER PART NO. 3487,13 +973pr3488c01,MINI UPPER PART NO. 3488,13 +973pr3489c01,MINI UPPER PART NO. 3489,13 +973pr3490c01,Torso Chef - 8 Front Buttons with Light Bluish Gray Wrinkles and Long Red Neckerchief on Front and Back Print - White Arms - Yellow Hands,13 +973pr3491c01,MINI UPPER PART NO. 3491,13 +973pr3492c01,MINI UPPER PART NO. 3492,13 +973pr3493c01,Torso with Dual Sided Plaid Button Shirt Print - Dark Blue Arms - Yellow Hands,13 +973pr3494c01,MINI UPPER PART NO. 3494,13 +973pr3495c01,Minifig Torso with 2 Black Curved Body Lines print - Bright Light Orange Arms and Hands,13 +973pr3498c01,Minifig Torso - Top with Green Seam and Fold Lines print - Black Arms - White Hands,13 +973pr3499c01,"MINI UPPER PART, NO. 3499",13 +973pr3500c01,"MINI UPPER PART, NO. 3500",13 +973pr3503c01,Torso with Blue Nightwing print / Black Arms / Black Hands,13 +973pr3504c01,"Torso Jacket Formal with White Vest, White Shirt and Large Yellow Bowtie Pattern / Black Arms / White Hands",13 +973pr3505c01,Torso Red Dress Top with White Collar and Polka Dots Front and Back Pattern / Black Arms with Red Short Sleeves with White Cuff Pattern / White Hands,13 +973pr3506c01,"Torso Shirt with Collar, Lavender Ruffles and Button Pattern / White Arms with Dark Pink Short Sleeves Pattern / White Hands",13 +973pr3507c01,Torso Female Strapless Top with Light Flesh Neck Pattern / Light Flesh Arms / Light Flesh Hands,13 +973pr3508c01,MINI UPPER PART NO. 3508,13 +973pr3509c01,"MINI UPPER PART, NO. 3509",13 +973pr3510c01,"MINI UPPER PART, NO. 3510",13 +973pr3511c01,"MINI UPPER PART, NO. 3511",13 +973pr3512c01,"MINI UPPER PART, NO. 3512",13 +973pr3514c01,"MINI UPPER PART, NO. 3514",13 +973pr3515c01,"MINI UPPER PART, NO. 3515",13 +973pr3516c01,MINI UPPER PART NO. 3516,13 +973pr3517c01,Torso White Chest / Belly Pattern (Penguin) / Black Flippers,13 +973pr3518c01,Torso Female Outline Tank Top with White Side Panels and Neck Trim Pattern / Yellow Arms / Red Boxing Gloves,13 +973pr3519c01,Torso T-Shirt with White Minifig Head Skull Pattern / Light Bluish Gray Arms with Black Short Sleeves and Stripes Pattern / White Hands,13 +973pr3520c01,MINI UPPER PART NO 3520,13 +973pr3521c01,"MINI UPPER PART, NO. 3521",13 +973pr3522c01,"MINI UPPER PART, NO. 3522",13 +973pr3523c01,"MINI UPPER PART, NO. 3523",13 +973pr3524c01,"MINI UPPER PART, NO. 3524",13 +973pr3525c01,Minifig Torso - Dual Sides Dark Blue Overalls over Tank Top - Gold Chains and Pendants print on Front - Reddish Brown Arms - Reddish Brown Hands,13 +973pr3527c01,Torso Bare Chest with Reddish Brown and Gold Strap and Dark Green Waist Sash Print / Yellow Arms with Gold Cuffs Print / Yellow Hands,13 +973pr3528c01,Minifig Torso with Ice Queen Dress Print / White Arms with Dark Azure Jagged Cuffs Print / Light Aqua Hands,13 +973pr3529c01,"Torso Jumpsuit with Silver Zippers, Dark Bluish Gray Belt and Pouches Pattern / Black Arm Left with Stopwatch Pattern / Black Arm Right / Black Hands",13 +973pr3531c01,"Torso Hoodie Jacket with Ties, Dark Azure Stripe, Pockets, Silver Zipper and Dark Blue Straps Pattern / Green Arms / Yellow Hands",13 +973pr3532c01,"MINI UPPER PART, NO. 3532",13 +973pr3533c01,"MINI UPPER PART, NO. 3533",13 +973pr3534c01,"Torso Vest Ornate, Sash, Silver Fox Head Pattern / Dark Green Arm Left with Dark Red Short Sleeve Pattern / Dark Green Arm Right / Yellow Hand Left / Reddish Brown Hand Right",13 +973pr3535c01,Torso Plain / Black Arm Left / Black Arm Right with Silver Mechanical Pattern / Yellow Hand Left / Light Bluish Gray Hand Right,13 +973pr3536,Minifig Torso - White Fur Chest print - Reddish Brown Arms - Light Flesh Hands,13 +973pr3537c01,Minifig Torso - Dual Side Harness with Dark Bluish Gray Laces and Silver Trim print / Light Flesh Arms with Black Short Sleeves print / Light Bluish Gray Hands,13 +973pr3538c01,Torso Hoodie Jacket with 2 Pockets and Silver Zipper Pattern / Red Arms / Yellow Hands,13 +973pr3539c01,"Torso Suit Jacket with Blue and Gold Striped Tie, Blue 1st Place Ribbon, Dog Treat in Pocket Pattern / Bright Light Blue Arms / Yellow Hands",13 +973pr3540c01,"Torso Pirate Vest Tattered, Belt, Gold Buckle, Chest Hair Pattern / Yellow Arm Left / Yellow Arm Right with Anchor Tattoo Pattern / Yellow Hands",13 +973pr3541c01,Torso Female Outline Shirt with Medium Lavender Shoulders and Pug Dog with Red Glasses Pattern / Yellow Arms with Medium Lavender Short Sleeves Pattern / Yellow Hands,13 +973pr3542c01,"Torso Winter Jacket with Blue Panel, 4 Pockets with Snaps and Zip Print / Red Arms with Blue Short Sleeves Print / Dark Blue Hands",13 +973pr3543c01,"Torso Suit Jacket Bolero with Silver Trim, Vest, Red Bow Tie, Silver Eagle Belt Buckle Pattern / Black Arms / Yellow Hands",13 +973pr3544c01,"MINI UPPER PART 2K, NO. 3544",13 +973pr3547c01,"MINI UPPER PART, NO 3547",13 +973pr3548c01,"MINI UPPER PART, NO 3548",13 +973pr3550c01,"MINI UPPER PART, NO. 3550",13 +973pr3551c01,"MINI UPPER PART, NO. 3551",13 +973pr3552c01,"Minifig Torso Dual Sided Trench Coat - Front with Buttons - Dark Bluish Gray Vest, White Shirt and Gold Medallion print - Light Bluish Gray Arms - Light Flesh Hands",13 +973pr3554c01,Minifig Torso - Bare Chest with Muscles Outline and Round Belly print - Medium Dark Flesh Arms - Medium Dark Flesh Hands,13 +973pr3556c01,"MINI UPPER PART, NO. 3556",13 +973pr3557c01,"MINI UPPER PART, NO. 3557",13 +973pr3558c01,MINI UPPER PART NO. 3558,13 +973pr3559c01,"MINI UPPER PART, NO. 3559",13 +973pr3560,Minifig Torso Dual Sided - Tan Bare Chest with Bones and Spikes print - Dark Green Arms with Tan Stripes print - Dark Green Hands,13 +973pr3562c01,"MINI UPPER PART, NO. 3562",13 +973pr3564c01,"MINI UPPER PART, NO. 3564",13 +973pr3566c01,"MINI UPPER PART, NO. 3566",13 +973pr3568c01,"MINI UPPER PART, NO. 3568",13 +973pr3570c01,"MINI UPPER PART, NO. 3570",13 +973pr3573c01,"MINI UPPER PART, NO. 3573",13 +973pr3574c01,"MINI UPPER PART, NO. 3574",13 +973pr3575c01,"MINI UPPER PART, NO. 3575",13 +973pr3578c01,"MINI UPPER PART, NO. 3578",13 +973pr3579c01,"MINI UPPER PART, NO. 3579",13 +973pr3580c01,"MINI UPPER PART, NO. 3580",13 +973pr3581c01,"MINI UPPER PART, NO. 3581",13 +973pr3582c01,Torso with Nexo Knight Armor - Blue and White Falcon Emblem Print - Blue Arms - Light Bluish Gray Hands - Clay,13 +973pr3583c01,"MINI UPPER PART, NO. 3583",13 +973pr3585c01,"MINI UPPER PART, NO. 3585",13 +973pr3589c01,"MINI UPPER PART, NO. 3589",13 +973pr3592c01,MINI UPPER PART NO. 3592,13 +973pr3593c01,MINI UPPER PART NO. 3593,13 +973pr3601c01,"MINI UPPER PART, NO. 3601",13 +973pr3602c01,MINI UPPER PART NO. 3602,13 +973pr3603c01,"MINI UPPER PART, NO. 3603",13 +973pr3604c01,MINI UPPER PART NO. 3604,13 +973pr3605c01,MINI UPPER PART NO. 3605,13 +973pr3606c01,MINI UPPER PART NO. 3606,13 +973pr3607c01,MINI UPPER PART NO. 3607,13 +973pr3610c01,Torso with Yellow and Black Oval Batman Logo and Yellow Belt with Buckle print - Light Bluish Gray Arms - Dark Blue Hands,13 +973pr3611c01,Torso with Yellow Moth and Belt with Buckle print - Dark Purple Arms - Orange Hands,13 +973pr3613c01,"MINI UPPER PART, NO. 3613",13 +973pr3614,Torso Female - Breastplate with Gold Stylized 'W' Trim Print - Light Flesh Arms and Hands (Wonder Woman),13 +973pr3616c01,"MINI UPPER PART, NO. 3616",13 +973pr3617c01,Torso with Yellow Circle and Red Belt Print - Yellow Arms - Red Hands - Iron Man,13 +973pr3618c01,Torso with Gold Vertical Stripes and Wide Belt with Narrow Buckle Print - Blue Arms - Lavender Hands,13 +973pr3619c01,Torso with Black Claw Markings and Red Belt with Red 'X' on Yellow Buckle Print - Light Flesh Arms - Blue Hands (Wolverine),13 +973pr3621c01,"MINI UPPER PART, NO. 3621",13 +973pr3622c01,"MINI UPPER PART, NO. 3622",13 +973pr3623c01,"MINI UPPER PART, NO. 3623",13 +973pr3624c01,Torso SW Imperial Death Trooper Armor Print - Black Arms - Black Hands,13 +973pr3625c01,"MINI UPPER PART, NO. 3625 (Doomsday)",13 +973pr3627,Torso Dual Sided Shirt and Dark Tan Belt - Gold Badge and Dark Blue Tie on Front - 'POLICE' and Radio on Back Print - Bright Light Blue Arms - Yellow Hands,13 +973pr3628c01,"MINI UPPER PART, NO. 3628",13 +973pr3629c01,Torso Tank Top with White Batman Logo over Black Shirt - Dark Pink Sash - Bright Pink Arms with Dark Pink Stripes Print - Black Hands,13 +973pr3630c01,MINI UPPER PART NO. 3630,13 +973pr3632c01,Torso with Dual Sided Dark Tan Vest - Light Bluish Gray Front Electronic Panel Print - Dark Blue Arms - Black Hands - SW Rebel U-Wing Pilot,13 +973pr3633c01,"Mini Upper Part, No. 3633",13 +973pr3634,Minifig Torso - Suit with Notched Lapels - Striped Vest over Orange Shirt and Green Tie print (Joker) - Dark Purple Arms - White Hands,13 +973pr3635,"Mini Upper Part, No. 3635 6173586",13 +973pr3636c01,Torso Dual Side Print - Prisoner Jumpsuit with Belt and White Undershirt on Front - 'ARKHAM' and Belt on Back - Orange Arms - White Hands (Batman),13 +973pr3637,"Mini Upper Part, No. 3637",13 +973pr3639c01,Torso Dual Side Print Female Outline with Silver Side Trim - Front with Yellow Bat - Dark Purple Arms with Yellow Cuffs Print - Yellow Hands (Batgirl),13 +973pr3640c01,"MINI UPPER PART, NO. 3640",13 +973pr3642c01,"Torso with Batman 'R' Symbol, 3 Yellow Clasps and Collar and Belt Print - Light Flesh Arms with Bright Green Short Sleeves Print - Bright Green Hands",13 +973pr3650,"Mini Upper Part, No. 3650 Batman 70900-1",13 +973pr3651c01,MINI UPPER PART NO. 3651,13 +973pr3653c01,"MINI UPPER PART, NO. 3653",13 +973pr3654c01,"MINI UPPER PART, NO. 3654",13 +973pr3657c01,"MINI UPPER PART, NO. 3657",13 +973pr3658c01,"MINI UPPER PART, NO. 3658",13 +973pr3659c01,MINI UPPER PART NO. 3659,13 +973pr3661c01,Torso with Dual Side Print - Crew Neck Sweater with 5 Birds (Robins)and Hem on Both Sides - Front with Open White Shirt Collar - Red Arms - Light Flesh Hands,13 +973pr3662c01,"MINI UPPER PART, NO. 3662",13 +973pr3664c01,MINI UPPER PART NO. 3664,13 +973pr3665c01,MINI UPPER PART NO. 3665,13 +973pr3667c01,MINI UPPER PART NO. 3667,13 +973pr3668c01,"MINI UPPER PART, NO. 3668",13 +973pr3669c01,"MINI UPPER PART, NO. 3669",13 +973pr3670c01,"MINI UPPER PART, NO. 3670",13 +973pr3671c01,"MINI UPPER PART, NO. 3671",13 +973pr3672c01,Torso Double Side Print - Suit with Pockets and Buttons over White Shirt with Collar - Gray Striped Tie and ID Badge on Front - Crease Line and Collar on Back - Black Arms - Light Flesh Hands,13 +973pr3673c01,"MINI UPPER PART, NO. 3673",13 +973pr3674c01,"MINI UPPER PART, NO. 3674",13 +973pr3675c01,"MINI UPPER PART, NO. 3675",13 +973pr3676c01,Torso with Dual Side Female Outline Print - Light Flesh Shoulders and White Bow on Front - 3 Body Lines on Back - Light Flesh Arms with Button Cuffs Print - White Hands,13 +973pr3677c01,Torso Dual Side Female Outline Print - Top with Fishnet Inset and Silver Studded Collar and Belt with Buckle on Front - Outline and Belt on Back - Magenta Arms with Black Stripes - Black Hands,13 +973pr3678c01,"MINI UPPER PART, NO. 3678",13 +973pr3679c01,"MINI UPPER PART, NO. 3679",13 +973pr3681c01,"MINI UPPER PART, NO.3681",13 +973pr3683,"Mini Upper Part, No. 3683",13 +973pr3684c01,"MINI UPPER PART, NO.3684",13 +973pr3685c01,Torso Race Suit with Ford Logo and 'GT' on Front and Ford Logo and 'Powered by EcoBoost' on Back Pattern / White Arms / Dark Bluish Gray Hands,13 +973pr3687c01,"MINI UPPER PART, NO.3687",13 +973pr3688c01,"MINI UPPER PART, NO. 3688",13 +973pr3692c01,"MINI UPPER PART 2K, NO. 3692",13 +973pr3693,"Mini Upper Part, No. 3693",13 +973pr3694,"Torso Dual Side Print - Female Police Jacket with Radio, Zipper Pockets, and Gold Badge on Front / 'POLICE' on Back - Dark Blue Arms - Dark Bluish Gray Hands",13 +973pr3695,Minifig Torso - Vest with Zipper and Belt print (She-Hulk) - Red Arms - Black Hands,13 +973pr3696c01,Minifig Torso - Dark Purple Vest print - Lime Arms - Dark Purple Hands,13 +973pr3698c01,"MINI UPPER PART 2K, NO. 3698",13 +973pr3699,"Mini Upper Part, No. 3699",13 +973pr3700,"Mini Upper Part, No. 3700",13 +973pr3701c01,"MINI UPPER PART, NO. 3701",13 +973pr3702c01,"MINI UPPER PART, NO. 3702",13 +973pr3703c01,"MINI UPPER PART, NO. 3703",13 +973pr3704c01,"MINI UPPER PART, NO. 3704",13 +973pr3707c01,"MINI UPPER PART, NO. 3707",13 +973pr3710c01,"MINI UPPER PART, NO. 3710",13 +973pr3712c01,"MINI UPPER PART, NO. 3712",13 +973pr3713c01,"MINI UPPER PART, NO. 3713",13 +973pr3714c01,"MINI UPPER PART, NO.3714",13 +973pr3715c01,Torso with Dual Side SW Print - Open Shirt with Utility Belt - Yellow Triangle and Buckle on Front - Dark Tan Arms - Reddish Brown Hands (Kanan Jarrus),13 +973pr3716c01,"MINI UPPER PART W/ HOOK, NO. 3716",13 +973pr3718c01,"MINI UPPER PART, NO. 3718",13 +973pr3719c01,Torso - Tuxedo Coat with Blue Lapels over Light Bluish Gray Pinstripe Vest - Black Tie Print - Dark Blue Arms - White Hands (Butler Batman Alfred),13 +973pr3720c01,"MINI UPPER PART, NO. 3720",13 +973pr3725c01,"MINI UPPER PART, NO. 3725",13 +973pr3726c01,"MINI UPPER PART, NO. 3726",13 +973pr3727,"Mini Upper Part, No. 3727",13 +973pr3728c01,Torso - Dark Green Jacket with Lime Stripes and Zipper over Striped Shirt - Dark Green Arms - Dark Bluish Gray Hands,13 +973pr3730c01,"MINI UPPER PART, NO. 3730",13 +973pr3731c01,"MINI UPPER PART, NO. 3731",13 +973pr3732,"Mini Upper Part, No. 3732",13 +973pr3733c01,Torso - Light Bluish Gray Fur Pattern (SW Moroff) - White Arms - White Hands,13 +973pr3734c01,"MINI UPPER PART, NO. 3734",13 +973pr3735c01,"MINI UPPER PART, NO. 3735",13 +973pr3736c01,Torso Dual Side Print - Open Jacket with Pockets and Badges over Belt and Tan Shirt in Front - Seam Lines and Tabbed Waistband in Back - Reddish Brown Arms - Light Flesh Hands,13 +973pr3737c01,"MINI UPPER PART, NO. 3737",13 +973pr3738c01,Torso Dual Side Print - SW Scarif Stormtrooper Armor Print - Tan Arms - Black Hands,13 +973pr3739c01,"MINI UPPER PART, NO. 3739",13 +973pr3740c01,"MINI UPPER PART, NO. 3740",13 +973pr3741c01,"MINI UPPER PART, NO. 3741",13 +973pr3743c01,"MINI UPPER PART, NO. 3743",13 +973pr3749c01,Torso with Dual Side Print - Belt and Mesh Shirt - Tan Hair in Ponytail - Tan Arms - Dark Orange Hands (SW Skiff Guard),13 +973pr3750c01,"Mini Upper Part, No. 3750",13 +973pr3751c01,Torso with Dual Side Print SW Armor Plates Dark Green Gray and Olive Green Patches (Boba Fett) - Brown Braid with Knot on Front - Light Bluish Gray Arms - Tan Hands,13 +973pr3752c01,Torso with Dual Side Print - Hoodie with Draw Strings - Straps with Pouches - Coil of Green Rope - Dark Orange Arms - Yellow Hands,13 +973pr3753,"Mini Upper Part, No. 3753",13 +973pr3759c01,"MINI UPPER PART, NO. 3759",13 +973pr3762c01,"MINI UPPER PART, NO. 3762",13 +973pr3766c01,"MINI UPPER PART, NO. 3766",13 +973pr3767c01,"MINI UPPER PART, NO. 3767",13 +973pr3768c01,"MINI UPPER PART, NO. 3768",13 +973pr3769c01,"MINI UPPER PART, NO. 3769",13 +973pr3770c01,Torso Race Suit with Ford Logo and Red and Blue Stripes on Front and Back Pattern / Tan Arms / Black Hands,13 +973pr3771c01,"MINI UPPER PART, NO. 3771",13 +973pr3772c01,"MINI UPPER PART, NO. 3772",13 +973pr3773c01,"MINI UPPER PART, NO. 3773",13 +973pr3775c01,"MINI UPPER PART, NO. 3775",13 +973pr3776c01,"MINI UPPER PART, NO. 3776",13 +973pr3778c01,"MINI UPPER PART, NO. 3778",13 +973pr3781c01,Torso with Dual Side Print - Top with Collar and Button over White Undershirt - Dark Orange Arms - Yellow Hands,13 +973pr3782c01,"MINI UPPER PART, NO. 3782",13 +973pr3791c01,"MINI UPPER PART, NO. 3791",13 +973pr3792c01,"MINI UPPER PART, NO. 3792",13 +973pr3793c01,"MINI UPPER PART, NO. 3793",13 +973pr3795c01,"MINI UPPER PART, NO. 3795",13 +973pr3796c01,"Mini Upper Part, No. 3796",13 +973pr3797c01,"MINI UPPER PART, NO. 3797",13 +973pr3798c01,"MINI UPPER PART, NO. 3798",13 +973pr3799c01,Torso - White Polka Dot Shirt with 3 Red Buttons - Blue Suspenders and Red Polka Dot Bow Tie Print - Yellow Right Arm / Red Left Arm - Yellow Hands,13 +973pr3803c01,"MINI UPPER PART, NO. 3803",13 +973pr3806c01,"MINI UPPER PART, NO. 3806",13 +973pr3807c01,"MINI UPPER PART, NO. 3807",13 +973pr3808c01,"MINI UPPER PART, NO. 3808",13 +973pr3818c01,"MINI UPPER PART, NO. 3818",13 +973pr3819c01,"MINI UPPER PART, NO. 3819",13 +973pr3820c01,"MINI UPPER PART, NO. 3820",13 +973pr3822c01,"MINI UPPER PART, NO. 3822",13 +973pr3823c01,"MINI UPPER PART 2K, NO. 3823",13 +973pr3824c01,"Mini Upper Part, No. 3824 (Nebula)",13 +973pr3825c01,"Mini Upper Part, No. 3825 Light Flesh Hands",13 +973pr3826c01,"Mini Upper Part, No. 3826 Lime Hands (Gamora)",13 +973pr3827c01,"MINI UPPER PART, NO. 3827",13 +973pr3828c01,"MINI UPPER PART, NO. 3828",13 +973pr3829c01,"MINI UPPER PART, NO. 3829",13 +973pr3831c01,"MINI UPPER PART, NO. 3831",13 +973pr3833c01,"MINI UPPER PART, NO. 3833",13 +973pr3834c01,"MINI UPPER PART, NO. 3834",13 +973pr3835c01,"MINI UPPER PART, NO. 3835",13 +973pr3836c01,"MINI UPPER PART, NO. 3836",13 +973pr3837c01,"MINI UPPER PART, NO. 3837",13 +973pr3839c01,"MINI UPPER PART, NO. 3839",13 +973pr3840c01,"MINI UPPER PART, NO. 3840",13 +973pr3841c01,"MINI UPPER PART, NO. 3841",13 +973pr3842c01,"MINI UPPER PART, NO. 3842",13 +973pr3843c01,"MINI UPPER PART, NO. 3843",13 +973pr3845c01,"MINI UPPER PART, NO. 3845",13 +973pr3847c01,MINI UPPER PART NO. 3847,13 +973pr3848c01,"MINI UPPER PART, NO. 3848",13 +973pr3849c01,"MINI UPPER PART, NO. 3849",13 +973pr3852c01,"MINI UPPER PART, NO. 3852",13 +973pr3853c01,"MINI UPPER PART, NO. 3853",13 +973pr3854c01,"MINI UPPER PART, NO. 3854",13 +973pr3862c01,"MINI UPPER PART, NO. 3862",13 +973pr3863c01,"MINI UPPER PART, NO. 3863",13 +973pr3864c01,"MINI UPPER PART, NO. 3864",13 +973pr3865c01,"MINI UPPER PART, NO. 3865",13 +973pr3866c01,"MINI UPPER PART 2K, NO. 3866",13 +973pr3868c01,"MINI UPPER PART, NO. 3868",13 +973pr3869c01,"MINI UPPER PART, NO. 3869",13 +973pr3870c01,"MINI UPPER PART, NO. 3870",13 +973pr3871c01,"MINI UPPER PART, NO. 3871",13 +973pr3872c01,"MINI UPPER PART, NO. 3872",13 +973pr3873c01,"MINI UPPER PART, NO. 3873",13 +973pr3877c01,"MINI UPPER PART, NO. 3877",13 +973pr3878c01,"MINI UPPER PART, NO. 3878",13 +973pr3879c01,"MINI UPPER PART, NO. 3879",13 +973pr3880c01,Torso with Dual Side Print - Tan Straps over Tank Top with Gray Splotches - Chain with Dog Tag on Front - Yellow Arms - Dark Bluish Gray Hands,13 +973pr3888c01,Torso with Dual Side Female Print - Jacket with Open Notched Collar over Hoodie - Drawstrings and Sunglasses on Front - White Arms - Yellow Hands,13 +973pr3889c01,"MINI UPPER PART, NO. 3889",13 +973pr3894c01,"MINI UPPER PART, NO. 3894",13 +973pr3895c01,"MINI UPPER PART, NO. 3895",13 +973pr3904c01,"MINI UPPER PART, NO. 3904",13 +973pr3905c01,"MINI UPPER PART, NO. 3905",13 +973pr3906c01,"MINI UPPER PART, NO. 3906",13 +973pr3916c01,"MINI UPPER PART, NO. 3916",13 +973pr3964c01,"MINI UPPER PART, NO. 3964",13 +973pr3965c01,"MINI UPPER PART, NO. 3965",13 +973pr4,"Minifig Torso with SW Layered Shirt, Brown Belt, Braid Print",13 +973pr5,"Minifig Torso with SW Vest, White Shirt & Lt Flesh Neck Print",13 +973pr6,Minifig Torso with SW Gungan Dark Grey/Dark Tan Shirts Print,13 +973pr6134234c01,"Torso Ninjago Robe with Gold Clasps, Dragon, Green Sash and Asian Character and Wings on Reverse Pattern / Green Arms / Black Hands",13 +973pr6173660,Catwoman's torso,13 +973pr6174029,Batman Torso 10737-1,13 +973pr6176783c01,Torso Lab Coat with Pocket with Dentist Mirror and Pick and Gold Tooth Pattern / White Arms / White Hands,13 +973pr650c01,Torso with White 'Hail to the Chef' Print / Green Arms / Yellow Hands,13 +973pr651c01,Torso with Red Beaded Necklace and White Apron Print / Yellow Arms / Yellow Hands,13 +973pr652c01,Torso with White Beaded Necklace / Yellow Arms / Yellow Hands,13 +973pr7,"Minifig Torso with SW Grey Shirt, Belt with Red Buckle Print",13 +973pr9,Minifig Torso with SW Imperial Grand Moff Print,13 +973pr980c01,Torso Exo-Force Gold Body Armor with Four Stars and Composite Armour Print / Dark Red Arms / Black Hands,13 +973pr9974c01,Torso Ninjago Robe with Medium Lavender Trim and Animal Drawing Pinned to Back - Dark Purple Arms - Black Hands,13 +973pr9975c01,"Torso Ninjago Robe with Brown Rope, Gold Medallion - Trans-Black Arms with Flames Pattern - Orange Hands",13 +973pr9976c01,"Torso Ninjago Red Armor with Lime Swirl Medallion Front, Belts on Back - Black Arms - Red Hands",13 +973pr9977c01,"Torso Bare Chest with Muscles Outline, Scars, Dark Green Belt on Front and Back Pattern / Orange Arms / Reddish Brown Right Hand / Pearl Dark Gray Left Hook",13 +973pr9978c01,"Torso Ninjago Robe with Gold Clasps, Jay Power Symbol, Blue Sash and Emblem and Wings on Back Pattern / Blue Arms / Black Hands",13 +973pr9979c01,Torso with Dual Side Print - Ninjago Robe with Tattered Yellowish Green Collar over Dark Blue Undershirt on Front - Creature in Circle on Back - Dark Blue Arms - Black Hands,13 +973pr9980c01,Torso Town Prisoner with Dual Side Dark Bluish Gray Stripes Print - Open Shirt with '706' over Mechanical Body on Front - Black Shoulder Blade Lines on Back - White Arms - Black Hands,13 +973pr9981c01,Torso Dual Side Print - SW First Order General Uniform with Black Arms - Right Plain - Left with Red Stripes and Silver Dots - Black Hands,13 +973pr9982c01,Torso Dual Side Ninjago Robe with Dark Red Belt Print - Ninja Skull with Crossed Swords and Chest Hair on Front - Orange Left and Yellow Right Arms - Dark Brown Hands - Sqiffy,13 +973pr9983c01,Torso with Dual Side Print - SW Rebel A-wing Pilot with Dark Bluish Gray Vest and White Belt - Black Panel on Front - Red Arms - White Hands,13 +973pr9984c01,Torso Dual Side Print with Prisoner Number 86753 - White Arms - Yellow Right Hand - Reddish Brown Left Hand,13 +973pr9985c01,Torso with Dual Side Imperial Officer 9 Print - White Arms - Dark Azure Hands (Admiral Thrawn),13 +973pr9986c01,"Torso Dual Side Print - Ninjago Robe - Front with Gold Clasps, Zane Power Symbol, and Knotted White Sash - Back with Sash and Emblem in Circle with Wings - White Arms - Black Hands",13 +973pr9987c01,Torso Dual Side Print - Brown Belt and White Suspenders over SW Open Jacket and Gray Undershirt on Front - Suspenders and Belt on Back - Yellow Arms - Flesh Hands,13 +973pr9990c01,Black Kai - Skybound dragon torso,13 +973pr9991,Torso Dual Side Print - Yellowish Green Collar and Dark Blue Strap -Front Gray Undershirt - Back Creature in Circle - Dark Blue Arms - Black Hands,13 +973pr9992,"Torso Ninjago Green Armor with Belts, Ninja Skull with Crossed Swords and Scabbards Print - Orange Arms - Dark Brown Hands",13 +973pr9993,MINI UPPER PART NO. 3847 in Black,24 +973pr9994,Torso - A-Wing Pilot (75175-1),13 +973pr9995,Torso Dual-Sided Female Tank Top showing White Neck with Red Vampire Bite Print - White Arms - White Hands,13 +973pr9996,Minifig Torso Dual Sided with Ninjago Scales and Shoulder Armor - Green Belly and Crossed Swords on Front Print - Lime Arm Right - Orange Arm Left - Dark Brown Hands,13 +973pr9997,Torso Assembly with Dark Purple Breastplate and Belt Print - Red Arms - Dark Purple Hands (Magneto from 76073-1),13 +973pr9999c01,The Penguin - From Lego Batman Movie Minifig Torso,13 +973prc,Minifig Torso with SW Blast Armor (Uncolored Plates) Print,13 +973prc01,Torso with Batman logo and Body Lines Print - Light Bluish Gray Arms - Dark Purple Boxing Gloves,13 +973prd,Minifig Torso with SW Leia Hoth Jacket Print,13 +973pre,Minifig Torso with SW Scout Trooper Bluish Grey Print,13 +973prf,Minifig Torso SW Tank Top Print,13 +973prg,Minifig Torso SW Belt Pockets and Necklace Blissl Flute Print,13 +973prh,Torso SW Neimoidian Viceroy Print,13 +973pry,Minifig Torso w/ SW Loose Dress Light Grey Folds Print,13 +973ps0,Torso SW Rebel A-wing Pilot Print,13 +973ps2,"Torso SW Jedi Robe, Waist Sash Print",13 +973ps2c01,"Torso SW Jedi Robe, Waist Sash Print / Black Arms / Yellow Hands",13 +973ps2c02,"Torso SW Jedi Robe, Waist Sash Print / Black Arms / Yellow Hand Left / Black Hand Right",13 +973ps3,Torso SW Wrap-Around Tunic and Utility Belt Print,13 +973ps3c01,Torso SW Wrap-Around Tunic and Utility Belt Print / White Arms / Yellow Hands,13 +973ps4,"Torso SW Shirt Open Collar, No Vest, Yellow Chest Print (Han Solo)",13 +973ps4c01,"Torso SW Shirt Open Collar, No Vest, Yellow Chest Print (Han Solo) / White Arms / Yellow Hands",13 +973ps5,Torso SW Vest and White Shirt Print (Han Solo),13 +973ps5c01,Torso SW Vest and White Shirt Print (Han Solo) / Tan Arms / Yellow Hands,13 +973ps6,Torso SW Old Obi-Wan Yellow Neck Print,13 +973ps6c01,Torso SW Old Obi-Wan Yellow Neck Print / Tan Arms / Yellow Hands,13 +973ps7,Torso SW Darth Vader Print,13 +973ps7c01,Torso SW Darth Vader Print / Black Arms / Black Hands,13 +973psa,Torso SW Rebel Mechanic Print,13 +973psac01,Torso SW Rebel Mechanic Print / Tan Arms / Yellow Hands,13 +973psb,Minifig Torso with SW Blast Armor (Green Plates) Grey Print,13 +973psc,Torso SW Pocket-Vest and Techno-Buckle Print (Lobot),13 +973pscc01,Torso SW Pocket-Vest and Techno-Buckle Print (Lobot) / Tan Arms / Yellow Hands,13 +973pse,Torso SW Armor Scout Trooper Print (Dark Gray Accents),13 +973psec01,Torso SW Armor Scout Trooper Print (Dark Gray Accents) / White Arms / Black Hands,13 +973psf,Minifig Torso with SW Tunic and Belt Print,13 +973psh,Minifig Torso with SW Hoth Trooper Print,13 +973psj,Minifig Torso with SW Blast Armor (Silver Plates) Print,13 +973psk,Torso SW Armor Stormtrooper Print,13 +973psm,Torso SW Camouflage Smock Print (Endor),13 +973psmc01,Torso SW Camouflage Smock Print (Endor) / Black Arms / One Yellow and One Black Hand,13 +973psn,Torso SW Imperial Shuttle Pilot Print,13 +973psnc01,Torso SW Imperial Shuttle Pilot Print / Black Arms / Yellow Hands,13 +973psq,Torso SW Imperial Officer 1 Print,13 +973psqc01,Torso SW Imperial Officer 1 Print / Dark Gray Arms / Yellow Hands,13 +973psr,Minifig Torso with SW Protocol Droid Print,13 +973pss,Minifig Torso with SW Jawa Print,13 +973pst,Minifig Torso with Black Collar and Pockets Print,13 +973psv,Minifig Torso with SW Moisture Farmer Print ben lars,13 +973psx,Minifig Torso with SW Dark Red Robe Print,13 +973psz,Minifig Torso with SW Darth Vader Death Star Print,13 +973pt2,Minifig Torso with Octan Logo Print,13 +973pw1,Minifig Torso with US Cavalry General Print,13 +973pw2,Minifig Torso with US Cavalry Officer Print,13 +973pw3,Minifig Torso with US Cavalry Soldier Print,13 +973pw4,Minifig Torso with Sheriff Print,13 +973pw5,"Minifig Torso Western Bandit Blue Undershirt, Green Bow, Gun in Belt Print",13 +973pw6,Minifig Torso Western Bandit Suspenders and Ammunition on Belt Print,13 +973pw7,Minifig Torso with Red Undershirt and Fringe Print,13 +973pw8,Minifig Torso Western Bandit Card Suit Vest and Gold Fob Print,13 +973pw9,"Minifig Torso with Brown Vest, Buckle and String Bowtie Print",13 +973pwa,Minifig Torso with Gold Fob and 100 Dollar Bills Print,13 +973pwb,"Minifig Torso w/ White/Blue Triangles, Red/White Amulet Print",13 +973pwc,"Minifig Torso w/ White/Blue Triangles, Blue/White Amulet Print",13 +973pwd,Minifig Torso with Red on Bottom and Fringe Print,13 +973pwe,Minifig Torso with Necklace and Blue Squares Print,13 +973px101c01,"Torso Res-Q Orange Stripes, Radio in Pocket, Back Logo Print / White Arms / Black Hands",13 +973px103c01,"Torso Western Indians Triangles, Red/White Amulet Print / Tan Arms / Yellow Hands",13 +973px104c01,"Torso Western Indians Triangles, Blue/White Amulet Print / Red Arms / Yellow Hands",13 +973px105c01,Torso Western Indians Necklace and Dark Turquoise Squares Print / Tan Arms / Yellow Hands,13 +973px106c01,Torso Western Indians Red on Bottom and Fringe Print / Tan Arms / Yellow Hands,13 +973px107c01,Torso Western Indians Red and White Armor and White Belt Print / Brown Arms / Yellow Hands,13 +973px111c01,"Torso Launch Command Logo, Blue Tie and ID Badge Print / White Arms / Yellow Hands",13 +973px112c01,"Torso Launch Command Logo, Zipper and ID Badge Print / Blue Arms / Yellow Hands",13 +973px113c01,"Torso Launch Command Logo, Gray Equipment Print / White Arms / White Hands",13 +973px114c01,Torso Castle Knights Kingdom Blue Corset and Necklace Print (Maiden) / Red Arms / Yellow Hands,13 +973px115c01,Torso Castle Knights Kingdom Plate Armor Silver Print / Red Arms / Yellow Hands,13 +973px116c01,Torso Castle Knights Kingdom Plate Armor Gold and Silver Female Print / Black Arms / Yellow Hands,13 +973px117c01,Torso Castle Knights Kingdom Scale Mail with Red Diamond Amulet Print / Black Arms / Yellow Hands,13 +973px117c02,Torso Castle Knights Kingdom Scale Mail with Red Diamond Amulet Print / Red Arms / Yellow Hands,13 +973px118c01,"Torso Castle Knights Kingdom Vest, Shield and Lion Head Print / Blue Arms / Yellow Hands",13 +973px119c01,Torso Castle Knights Kingdom Scale Mail Brown Print / Dark Gray Arms / Yellow Hands,13 +973px11c01,"Torso Castle Ninja Wrap, Brown Dagger, Silver Star, Silver Zigzags Print / Black Arms / Yellow Hands",13 +973px120c01,Torso Castle Knights Kingdom Bull's Head on Brown Shield Print / Dark Gray Arms / Red Hands,13 +973px121c01,"Torso Fire Flame Badge, Red Belt, and Zipper Print / Black Arms / Yellow Hands",13 +973px122c01,"Torso Town Bulldozer Logo, Zipper Jacket, Pocket Print (Lorry Driver) / Blue Arms / Yellow Hands",13 +973px123c01,Torso Space UFO Black Stripes and 4 Pips Print / Red Arms / Black Hands,13 +973px124c01,Torso Race Two Stars Jacket Print / White Arms / Yellow Hands,13 +973px125c01,Torso Castle Fright Knights Bat Lord Tunic Print / Black Arms / Yellow Hands,13 +973px127c01,Torso Train Red 2 x 4 Brick Print / White Arms / Yellow Hands,13 +973px128c01,Torso Train Logo Large Red Print / Yellow Arms / Red Hands,13 +973px12c01,"Torso Castle Ninja Armor Plate, Red Collar Print (Samurai) / Blue Arms / Yellow Hands",13 +973px130c01,Torso Octan Logo Print / White Arms / Yellow Hands,13 +973px131ac01,"Torso TV Logo, Zipper and ID Badge Print - LEGO Logo on Back / Red Arms / Yellow Hands",13 +973px131c01,"Torso TV Logo, Zipper and ID Badge Print / Red Arms / Yellow Hands",13 +973px132c01,Torso Space UFO Silver and Gold Circuitry Print / Blue Arms / Black Hands,13 +973px133c01,"Torso Space Exploriens Logo, Yellow Accents, Silver Hose Print / Dark Gray Arms / Black Hands",13 +973px135c01,"Torso Pirate Imperial Armada Ruffles, White Stripes Gold Medal Print / Green Arms / Yellow Hands",13 +973px136c01,"Torso Pirate Imperial Armada Black Belt, Silver Buttons, Necklace Print / Red Arms / Yellow Hands",13 +973px137c01,"Torso Castle Knights Kingdom Bull's Head, Studded Armor, Red Collar Print / Black Arms / Yellow Hands",13 +973px138c01,Torso Castle Crusaders Gold Lion Shield Print / Blue Arms / Yellow Hands,13 +973px139c01,"Torso Alpha Team Logo, Purple Shirt and 3 Pockets on Belt Print / Black Arms / Light Gray Hands",13 +973px139c02,"Torso Alpha Team Logo, Purple Shirt and 3 Pockets on Belt Print / Dark Blue Arms / Light Gray Hands",13 +973px140c01,Torso Arctic Logo Large on Open Collar Pullover Print / Blue Arms / Black Hands,13 +973px143c01,Torso Rock Raiders Overalls and Goggles Print (Axel) / Black Arms / Yellow Hands,13 +973px145c01,"Torso SW Layered Shirt, Brown Belt and Padawan Braid Print (Obi-Wan) / Tan Arms / Yellow Hands",13 +973px146c01,Torso Harry Potter Uniform Gryffindor Shield Print / Light Gray Arms / Yellow Hands,13 +973px147c01,Torso Harry Potter Uniform Slytherin Shield Print / Light Gray Arms / Yellow Hands,13 +973px148c01,Torso Harry Potter Professor Snape 4 Gray Buttons Print / Black Arms / Light Gray Hands,13 +973px149c01,Torso Harry Potter Dumbledore Print / Purple Arms / Yellow Hands,13 +973px14ac01,Torso Castle Ninja Vest Green Tattered Print (Robber) - LEGO Logo on Back / Red Arms / Yellow Hands,13 +973px14c01,Torso Castle Ninja Vest Green Tattered Print (Robber) / Red Arms / Yellow Hands,13 +973px150c01,Torso Harry Potter Peeves Print / Light Gray Arms / Light Gray Hands,13 +973px151c01,Torso Harry Potter Ron Print / Blue Arms / Yellow Hands,13 +973px152c01,Torso Harry Potter Harry Print / Blue Arms / Yellow Hands,13 +973px153c01,Torso Harry Potter Uniform Hogwarts Shield Print / Light Gray Arms / Yellow Hands,13 +973px154c01,Torso Spider-Man Oriental Dress Print (Mary Jane) / Yellow Arms / Yellow Hands,13 +973px155c01,Torso Spider-Man Green Goblin Print / Bright Green Arms / Green Hands,13 +973px156c01,"Torso SW Layered Shirt, Black Vest and Padawan Braid Print / Brown Arms / Yellow Hands",13 +973px157c01,Torso SW Silver and Purple Utility Gear Print (Zam) / Sand Purple Arms / Sand Purple Hands,13 +973px158c01,Torso SW Belt Pockets and Necklace Blissl Flute Print (Yoda) / Tan Arms / Sand Green Hands,13 +973px159c01,Torso SW Cape Chain Clasp and Belt Print (Dooku) / Black Arms / Yellow Hands,13 +973px15c01,Torso Castle Ninja Armor Brown Leather Print (Robber) / Red Arms / Yellow Hands,13 +973px160c01,Torso SW C-3PO Print / Pearl Light Gold Arms / Pearl Light Gold Hands,13 +973px160c03,Torso SW C-3PO Print / Chrome Gold Arms / Chrome Gold Hands,13 +973px161c01,"Torso Western Star Badge, Red Bow Tie and Watch Fob Print (Sheriff) / Dark Gray Arms / Black Hands",13 +973px162c01,"Torso Western Cowboy Brown Vest, Buckle, String Bow Tie Print / Blue Arms / Yellow Hands",13 +973px163c01,"Torso Western Black Vest, Gold Fob and $100 Bills Print (Banker) / White Arms / Yellow Hands",13 +973px165c01,"Torso Studios Black Suit, Red Shirt, Gold Clasps Print (Vampire) / Black Arms / White Hands",13 +973px166c01,"Torso Studios Lab Coat, Gray Buttons, Stethoscope Print (Mad Scientist) / White Arms / Dark Gray Hands",13 +973px166c02,"Torso Studios Lab Coat, Gray Buttons, Stethoscope Print (Mad Scientist) / White Arms / Dark Bluish Gray Hands",13 +973px167c01,Torso Studios Old Bandage Wrapping and Necklace Print (Mummy) / Light Gray Arms / Dark Gray Hands,13 +973px168c01,"Torso EMT Star of Life, Open Collar, Pocket and Pen Print / White Arms / Yellow Hands",13 +973px169c01,"Torso Aquazone Stingray Dark Turquoise, Black, and Gold Print 2 / Dark Gray Arms / Red Hands",13 +973px16c01,Torso Castle Ninja Armor Plate Mail Print / Blue Arms / Yellow Hands,13 +973px16c02,Torso Castle Ninja Armor Plate Mail Print / Red Arms / Yellow Hands,13 +973px170c01,"Torso Aquazone Aquanaut Sub Logo, Zip and Weight Belt Print / Black Arms / White Hands",13 +973px171c01,Torso Studios Gathered Top with White Blouse Print (Lady) / White Arms / Yellow Hands,13 +973px172c01,Torso Studios Suit Jacket with Vest and Red Tie Print (Gent) / Tan Arms / Yellow Hands,13 +973px173c01,Torso Coca-Cola Logo with V-neck Shirt and Black Stripe Print / Red Arms / Yellow Hands,13 +973px174c01,Torso Harry Potter Hermione Blouse Print / Medium Blue Arms / Yellow Hands,13 +973px175c01,Torso Harry Potter Quirrell Print / Purple Arms / Yellow Hands,13 +973px176c01,"Torso Space Port Logo, Tube and 'C1' with Two Yellow Bars Print / White Arms / White Hands",13 +973px177c01,"Torso Town Construction Brown Suspenders, Shirt, Safety Stripes Print / Orange Arms / Dark Gray Hands",13 +973px178c01,"Torso Adventurers Orient Green Jacket, Red Bandana, and Camera Print / Green Arms / Yellow Hands",13 +973px179c01,Torso Adventurers Orient Brown Leather Jacket and Red Scarf Print / Brown Arms / Black Hands,13 +973px180c01,"Torso Adventurers Orient White Shirt, Green Vest, and Red Bow Tie Print / White Arms / Yellow Hands",13 +973px181c01,"Torso Adventurers Orient Black Jacket, White Scarf, Brown Belt Print / Black Arms / Yellow Hand Right / Dark Gray Hook Left",13 +973px182c01,"Torso Adventurers Orient Blue Vest, Light Blue Shirt, Yellow Rope Belt Print / Yellow Arms / Yellow Hands",13 +973px183c01,"Torso Adventurers Orient Fuzzy Lapels, Bandana, Gun Belt, Pockets Print / Brown Arms / Black Hands",13 +973px184c01,"Torso Adventurers Orient Jacket, Shirt, Bow Tie, Pockets, Buckle Print / Dark Gray Arms / Brown Hands",13 +973px185c01,"Torso Adventurers Orient Striped Collar, Crossbelt, Sash, Knife Print / Dark Orange Arms / Yellow Hands",13 +973px186c01,"Torso Adventurers Orient Lining, Striped Shirt, Bandana Print / Dark Red Arms / Black Hands",13 +973px187c01,"Torso Adventurers Orient Yellow Spots, Sash, Knife, Collar Print / Dark Orange Arms / Yellow Hands",13 +973px188c01,"Torso Adventurers Orient Red Diamonds, Sash, Knife, Open Collar Print / Blue Arms / Yellow Hands",13 +973px189c01,"Torso Airplane Pilot, Suit Double Breasted, Tie, Gold Buttons and Logo Pin Print / Black Arms / Yellow Hands",13 +973px189c02,"Torso Airplane Pilot, Suit Double Breasted, Tie, Gold Buttons and Logo Pin Print / Dark Blue Arms / Yellow Hands",13 +973px18c01,Torso Shirt with Pockets Print / White Arms / Yellow Hands,13 +973px190ac01,"Torso Adventurers Desert Vest over White Shirt, Slingshot Print - LEGO Logo on Back / White Arms / Yellow Hands",13 +973px190c01,"Torso Adventurers Desert Vest over White Shirt, Slingshot Print / White Arms / Yellow Hands",13 +973px191c01,Torso SW Geonosian Print / Dark Gray Arms / Dark Gray Hands,13 +973px19c01,Torso Octan Logo Jacket with Pen Print / Green Arms / Yellow Hands,13 +973px1c01,"Torso Train Suit, Red Tie, Gold Buttons and Logo Print / Blue Arms / Yellow Hands",13 +973px20c01,Torso Police Suit with Yellow Star Badge Print / Black Arms / Yellow Hands,13 +973px215c01,"Torso SW Layered Shirt, White Undershirt, Silver Buckle Print / Dark Gray Arms / Yellow Hands",13 +973px21c01,Torso Castle Dark Forestman Maroon Collar and Black Crossbelt Print / Red Arms / Yellow Hands,13 +973px23c01,Torso Paradisa Red Dot Top with Gold Necklace Print / Yellow Arms / Yellow Hands,13 +973px24c01,"Torso Space Port Logo Lab Coat, Tie and Pocket Print / White Arms / Yellow Hands",13 +973px25c01,Torso Rock Raiders Green Vest with Pouches Print (Bandit) / Red Arms / Yellow Hands,13 +973px26c01,"Torso Soccer Adidas Logo, Red Stripe, Number 10, Zidane on Back Print / Blue Arms / Yellow Hands",13 +973px270c01,"Torso Racers Jacket with Orange, Red, Silver Print / Red Arms / Dark Gray Hands",13 +973px28c01,"Torso Train Striped Undershirt, Zipper Jacket Pockets Print / Blue Arms / Yellow Hands",13 +973px2c01,Torso Blue Jogging Suit Print / Blue Arms / Yellow Hands,13 +973px303c01,Torso SW Vest with Dark Orange Shirt Print (Leia) / Brown Arms / Yellow Hands,13 +973px30c01,Torso Train Logo Small Black on Locomotive Triangle Sign Print / Blue Arms / Yellow Hands,13 +973px31c01,"Torso Bank Employee Jacket, Dollar Sign Badge and ID Print / Green Arms / Yellow Hands",13 +973px320c01,Torso SW Tank Top Print / Yellow Arms / Yellow Hands,13 +973px323c01,Torso SW Vest with Sky Blue Shirt Print (Greedo) / Sky Blue Arms Printed / Dark Turquoise Hands,13 +973px32c01,"Torso Train Suit Open, Notepad, Red Long Tie and Logo Print / Blue Arms / Yellow Hands",13 +973px331c01,"Torso Racers Jacket with Straps, White & Yellow Stripes Print / Green Arms / Black Hands",13 +973px335c01,Torso Space Astrobot Print / Light Gray Arms / Light Gray Hands,13 +973px33c01,Torso FreeStyle Print / Red Arms / Yellow Hands,13 +973px34c01,"Torso Paradisa Tank Top, Palm Tree and Dolphin Print / Yellow Arms / Yellow Hands",13 +973px35c01,Torso Castle Fright Knights Red Spider Medal Print / Black Arms / Yellow Hands,13 +973px36c01,Torso Octan Race Team 1 Racing Print / Red Arms / Yellow Hands,13 +973px37c01,Torso TV Globe Small Print / White Arms / Yellow Hands,13 +973px38c01,Torso Divers Dolphin Logo Print / Yellow Arms / Yellow Hands,13 +973px397c01,Torso Harry Potter Bus Driver Jacket and Dark Purple Tie Print / Dark Purple Arms / Light Flesh Hands,13 +973px39c01,Torso Freestyle Timmy White/Yellow Triangle and Red T Print / White Arms / Yellow Hands,13 +973px3c01,"Torso Chef with 6 Buttons, Short Red Neckerchief Print / White Arms / Yellow Hands",13 +973px40c01,"Torso Castle Ninja Wrap, Dagger, Gold Star, Gold Zigzags Print / Green Arms / Yellow Hands",13 +973px41c01,"Torso Western Cavalry Uniform, 12 Buttons, 2 Gold Stars on Collar Print / Blue Arms / White Hands",13 +973px42c01,"Torso Western Cavalry Uniform, 4 Buttons, Suspenders Print / Blue Arms / White Hands",13 +973px43c01,"Torso Western Cavalry Uniform, 5 Buttons, Belt Pouch Print / Blue Arms / White Hands",13 +973px44c01,"Torso Castle Classic Vest w/ Gold, Shield Tri-Colored Print / Red Arms / Yellow Hands",13 +973px45c01,Torso Castle Classic Shield Quartered Red/Yellow Print / Red Arms / Yellow Hands,13 +973px46c01,Torso Castle Classic Shield Quartered Red/Blue Print / White Arms / Yellow Hands,13 +973px47c01,Torso Castle Classic Shield Tri-Colored Print / Black Arms / Yellow Hands,13 +973px51c01,Torso Divers Submarine Logo and Gauges Print / Red Arms / Black Hands,13 +973px52c01,Torso Divers Submarine Logo Print / Black Arms / Yellow Hands,13 +973px52c02,Torso Divers Submarine Logo Print / Red Arms / Yellow Hands,13 +973px53c01,"Torso Western Cowboy Fringe Vest, Gold Stars and Red Shirt Print / Red Arms / Yellow Hands",13 +973px54c01,"Torso Western Bandit Blue Undershirt, Green Bow, Gun in Belt Print / Black Arms / Black Hands",13 +973px55c01,Torso Western Bandit Card Suit Vest and Gold Fob Print / Green Arms / Black Hands,13 +973px56c01,Torso Western Bandit Suspenders and Ammunition on Belt Print / Red Arms / Yellow Hands,13 +973px57c01,Torso Space LoM Gold Triangular Machinery and Belt Print / Blue Arms / Yellow Hands,13 +973px57c02,Torso Space LoM Gold Triangular Machinery and Belt Print / Light Gray Arms / Yellow Hands,13 +973px58c01,"Torso SW Layered Shirt, Brown Belt Print / Tan Arms / Yellow Hands",13 +973px59c01,Torso SW Gungan Dark Gray/Light Brown Shirts Print / Tan Arms / Tan Hands,13 +973px5c01,Torso Paradisa Horse Print / Dark Pink Arms / Yellow Hands,13 +973px61c01,Torso Horizontal Blue Stripes Print / Blue Arms / Yellow Hands,13 +973px61c02,Torso Horizontal Blue Stripes Print / White Arms / Yellow Hands,13 +973px62c01,Torso Horizontal Red Stripes Print / Red Arms / Yellow Hands,13 +973px62c02,Torso Horizontal Red Stripes Print / White Arms / Yellow Hands,13 +973px63c01,Torso Train Jacket and Red Scarf Print / Blue Arms / Yellow Hands,13 +973px64c01,"Torso Studios Cameraman ID, Logo, Pen, and Clapboard on Back Print / White Arms / Yellow Hands",13 +973px65c01,"Torso Studios Director Brown Vest, ID, and Clapboard on Back Print / White Arms / Yellow Hands",13 +973px66c01,Torso Studios Protective Leather Jacket Zipper Print (Stuntman) / Black Arms / Dark Gray Hands,13 +973px67c01,"Torso Police Vest, White Shirt, ID, Yellow Star Badge Print / White Arms / Yellow Hands",13 +973px70c01,Torso SW Red Robe Print (Royal Guard) / Red Arms / Red Hands,13 +973px71c01,"Torso SW Layered Shirt, Robe Tie Print / Black Arms / Yellow Hands",13 +973px71c03,"Torso SW Layered Shirt, Robe Tie Print / Black Arms / Light Bluish Gray Hands",13 +973px75c01,"Torso Studios Grip Sunglasses, Screwdriver, Clapboard on Back Print / Yellow Arms / Dark Gray Hands",13 +973px77c01,"Torso Studios Assistant Badge, Pen, and Clapboard on Back Print / White Arms / Yellow Hands",13 +973px78ac01,Torso Studios Tube Top and Navel Print - LEGO Logo on Back / Red Arms / Yellow Hands,13 +973px79ac01,"Torso Res-Q Orange Stripes, Soccer Logo on Back Print / White Arms / Yellow Hands",13 +973px79c01,"Torso Res-Q Orange Stripes, 15 on Belt and Back Logo Print / White Arms / Black Hands",13 +973px80c01,Torso Space LoM Spacesuit with '7401' Print / White Arms / Black Hands,13 +973px81c01,Torso Space LoM Spacesuit with Belt Meter Print / Black Arms / Black Hands,13 +973px82ac01,"Torso SW Closed Shirt, Brown Belt, Yellow Neck Print / Tan Arms / Yellow Hands",13 +973px83c01,"Torso SW Dark Gray Shirt, Blue Belt with Red Buckle Print (Padme) / Blue Arms / Yellow Hands",13 +973px84c01,Torso SW Brown Dotted Lines and Pockets Print (Hoth Rebel) / Light Gray Arms / White Hands,13 +973px86c01,Torso SW Loose Dress Lt Gray Folds Print (Leia) / White Arms / Yellow Hands,13 +973px89c01,"Torso SW Loose Shirt, Black Belt and Silver Buckle Print (Naboo) / Tan Arms / Brown Hands",13 +973px8c01,Torso Train Red Vest Print / Blue Arms / Yellow Hands,13 +973px90c01,"Torso Castle Fright Knights Dark Gray, Silver Striped Armor Print / Black Arms / Yellow Hands",13 +973px91c01,"Torso Time Cruisers Red Bow Tie, Pencil and Pocket Watch Print / White Arms / Yellow Hands",13 +973px92c01,"Torso Space Insectoids Silver Circuitry, Lightning Bolts over Blue Circle Print / Black Arms / Blue Hands",13 +973px96c01,"Torso Divers Dolphin Logo, Yellow Triangles, and Gauges Print / Black Arms / Black Hands",13 +973px98c01,Torso Divers Dolphin Logo and Fish Print / Yellow Arms / Yellow Hands,13 +973px99c01,"Torso Castle Ninja Armor Plate, Blue Collar Print (Samurai) / Red Arms / Yellow Hands",13 +973px9c01,"Torso Police Leather Jacket, Yellow Star Badge Print / Black Arms / Black Hands",13 +97489,"Minifig Cape - Cloth, Spongebob ",27 +9767,Interface Card/Cable for TC Logo Kit,17 +9771,Lego Computer Interface Card Unit Manual (199.009.080),17 +97781,Minifig Accessories Cutlery - Fork,27 +97782,Minifig Accessories Cutlery - Knife,27 +97783,Minifig Accessories Dish - Round,27 +97784,Minifig Accessories - Cupcake Holder,27 +97785,Minifig Accessories Dish - Rectangular,27 +97787,Minifig Accessories - Spatula,27 +97790,Minifig Accessories - Frying Pan,27 +97791,Minifig Accessories - Measuring Jug,27 +97793,Minifig Accessories - Hand Mixer,27 +97895,Minifig Life Jacket [Centre Buckle],27 +97920,Battery Box Lower Half 4x8x4 [AAA],45 +9793b1,Set 9793 Activity Booklet 1,17 +9794bc,Set 9794 Activity Booklet - Cover and Inventory Card,17 +979760bc,Set 979760 Activity Booklet - Cover and Inventory Card,17 +98057,Dino Jaw Lower T-Rex [Plain],24 +98057pr0001,Dino Jaw Lower T-Rex with Tan Teeth Print [Dark Orange],28 +98057pr0002,Dino Jaw Lower T-Rex with Tan Teeth Print [Olive Green],28 +98057pr0003,Dino Jaw Lower T-Rex with White Teeth Print [Medium Dark Flesh],28 +98058,Dino Leg Small (Front) T-Rex - Left [Plain],24 +98058pr0001,Dino Leg Small (Front) T-Rex with Tan Claws Print - Left [Dark Orange],28 +98058pr0002,Dino Leg Small (Front) T-Rex with Tan Claws Print - Left [Olive Green],28 +98058pr0003,Dino Leg Small (Front) T-Rex with Black Claws Print - Left [Dark Orange],28 +98059,Dino Leg Small (Front) T-Rex - Right [Plain],24 +98059pr0001,Dino Leg Small (Front) T-Rex with Tan Claws Print - Right [Dark Orange],28 +98059pr0002,Dino Leg Small (Front) T-Rex with Tan Claws Print - Right [Olive Green],28 +98059pr0003,Dino Leg Small (Front) T-Rex with Black Claws Print - Right [Dark Orange],28 +98065,Dino Head Raptor [Plain],24 +98065pr0001,"Dino Head Raptor with Pin Hole, Tan Teeth and Dark Green and Lime Stripes Print",28 +98065pr0002,"Dino Head Raptor with Pin Hole, Tan Teeth and Dark Orange and Dark Brown Stripes Print",28 +98065pr0003,ANIMAL NO.3 HEAD NO.3,28 +98065pr0004,ANIMAL NO.3 HEAD NO.4,28 +98065pr0005,"Dino Head Raptor with Pin Hole, Tan Teeth and Dark Green Stripes over Lime Print",28 +98065pr0006,"Dino Head Raptor with Pin Hole, Tan Teeth and Olive Green Blotches Print",28 +98067,Dino Jaw Lower Raptor [Plain],24 +98067pr0001,Raptor Lower Jaw with Tan Teeth Print [Olive Green],28 +98067pr0002,Dino Jaw Lower Raptor with Tan Teeth Print [Medium Dark Flesh],28 +98067pr0003,Raptor Lower Jaw with Tan Teeth Print [Sand Green],28 +98067pr0004,Raptor Lower Jaw with Tan Teeth Print [Dark Tan],28 +98067pr0007,Dino Jaw Lower Raptor with Tan Teeth Print [Lime],28 +98068,Dino Leg Small (Front) Raptor Left [Plain],24 +98068pr0001,Dino Leg Small (Front) Raptor Left with Tan Claws Print [Olive Green],28 +98068pr0002,Dino Leg Small (Front) Raptor Left with Tan Claws Print [Medium Dark Flesh],28 +98068pr0003,ANIMAL NO.3 FORELEG LEFT NO.3,28 +98068pr0004,ANIMAL NO.3 FORELEG LEFT NO.4,28 +98068pr0005,Dino Leg Small (Front) Raptor Left with Black Claws Print [Olive Green],28 +98068pr0006,Dino Leg Small (Front) Raptor Left with Black Claws Print [Medium Dark Flesh],28 +98068pr0007,ANIMAL NO.3 FORELEG LEFT NO.7,28 +98069,Dino Leg Small (Front) Raptor Right [Plain],24 +98069pr0001,Dino Leg Small (Front) Raptor Right with Tan Claws Print [Olive Green],28 +98069pr0002,Dino Leg Small (Front) Raptor Right with Tan Claws Print [Medium Dark Flesh],28 +98069pr0003,ANIMAL NO.3 FORELEG RIGHT NO.3,28 +98069pr0004,ANIMAL NO.3 FORELEG RIGHT NO.4,28 +98069pr0005,Dino Leg Small (Front) Raptor Right with Black Claws Print [Olive Green],28 +98069pr0006,Dino Leg Small (Front) Raptor Right with Black Claws Print [Medium Dark Flesh],28 +98069pr0007,ANIMAL NO.3 FORELEG RIGHT NO.7,28 +98071,Dino Leg Large (Rear) Raptor Left with Pin [Plain],24 +98071pr0001,"Dino Leg Large (Rear) Raptor Left with Pin, Tan Claws and Lime Stripes over Dark Green Print",28 +98071pr0002,"Dino Leg Large (Rear) Raptor Left with Pin, Tan Claws and Dark Brown Stripes over Dark Orange Print",28 +98071pr0003,ANIMAL NO.3 HIND LEG LEFT NO.3,28 +98071pr0004,ANIMAL NO.3 HIND LEG LEFT NO.4,28 +98071pr0005,"Dino Leg Large (Rear) Raptor Left with Pin, Black Claws and Dark Green Stripes over Lime Print",28 +98071pr0006,"Dino Leg Large (Rear) Raptor Left with Pin, Black Claws and Medium Azure Stripes over Olive Green Print",28 +98072,Dino Leg Large (Rear) Raptor Right with Pin [Plain],24 +98072pr0001,"Dino Leg Large (Rear) Raptor Right with Pin, Tan Claws and Lime Stripes over Dark Green Print",28 +98072pr0002,"Dino Leg Large (Rear) Raptor Right with Pin, Tan Claws and Dark Brown Stripes over Dark Orange Print",28 +98072pr0003,"ANIMAL NO.3, HIND LEG RIGHT No.3",28 +98072pr0004,ANIMAL NO.3 HIND LEG RIGHT NO.4,28 +98072pr0005,"Dino Leg Large (Rear) Raptor Right with Pin, Black Claws and Dark Green Stripes over Lime Print",28 +98072pr0006,"Dino Leg Large (Rear) Raptor Right with Pin, Black Claws and Medium Azure Stripes over Olive Green Print",28 +98086,Dino Head Pteranodon [Plain],24 +98086pr0001,Dino Head Pteranodon with Eyes and Dark Red Stripes Print,28 +98086pr0002,Dino Head Pteranodon with Eyes and Dark Green Stripes Print,28 +98086pr0003,ANIMAL NO.2 HEAD NO.3,28 +98087,Dino Pteranodon Jaw Bottom with Pin - Flexible Plastic,28 +98088,Dino Wing Pteranodon - Left [Plain],28 +98088pat0001,Reddish Brown Dino Wing Pteranodon - Left with Marbled Medium Dark Flesh Edge Pattern,28 +98088pat0002,Dino Wing Pteranodon - Left with Marbled Olive Green Edge Pattern,28 +98088pat0003, Dino Wing Pteranodon - Left with Marbled Dark Bluish Gray Edge Pattern,28 +98089,Dino Wing Pteranodon - Right [Plain],28 +98089pat0001,Dino Wing Pteranodon - Right with Marbled Medium Dark Flesh Edge Pattern,28 +98089pat0002,Dino Wing Pteranodon - Right with Marbled Olive Green Edge Pattern,28 +98089pat0003,Dino Wing Pteranodon - Right with Marbled Dark Bluish Gray Edge Pattern,28 +98099,Minifig Helmet ARC Clone Trooper [Plain],24 +98099pr0001,Minifig Helmet ARC Clone Trooper with Dark Red and Dark Bluish Gray Print,27 +981,"Arm, Left",13 +98100,Brick Round 2 x 2 Truncated Cone,20 +98100pr0001,Brick Round 2 x 2 Truncated Cone with Black and Red SW R5-D8 Print,20 +98100pr0002,Brick Round 2 x 2 Truncated Cone with SW R5-J2 Print,2 +98100pr0003,Brick Round 2 x 2 Truncated Cone with SW R5-F7 Print,2 +98100pr0004,"Brick, Round 2 x 2 Truncated Cone with SW R4-G0 Print",20 +98100pr1000,Brick Round 2 x 2 Truncated Cone with Millennium Falcon Cockpit Print,20 +98100pr1001,Brick Round 2 x 2 Truncated Cone with R1 Series Print ,2 +98100pr1002,Brick Round 2 x 2 Truncated Cone with SW C1-10P Print,2 +98101,Minifig Armor Neck and Shoulder [Plain],24 +98101pr0001,Minifig Armor Neck and Shoulder with Silver and Red Print,27 +98102,Windscreen 8 x 6 x 2 1/3 Bubble Canopy with Handle,47 +98103,Minifig Head Modified Mechanical,13 +98103pr0001,Minifig Head Modified Mechanical (Commando Droid) with White Eyes and Dark Tan Lines Print,13 +98103pr0002,Minifig Head Modified Mechanical (Commando Droid Captain) with White Eyes and White and Black Print,13 +98103pr0003,Minifig Head Modified Mechanical with Dark Bluish Gray and Black Print (FA-4 Pilot Droid),13 +98106,Minifig Headdress SW Lennik Skull Top with Long Ears and Pony Tail Hair,27 +98106pr0001,"Minifig Headdress SW Lennik Skull Top with Long Ears, Dark Bluish Gray Pony Tail Hair and Scars Print (Even Piell)",13 +98107,Hemisphere 11 x 11 with Studs on Top,20 +98107pat0001,Hemisphere 11 x 11 - 4 Studs on Top with Marbled Dark Green Yavin 4 Print,20 +98107pat0002,Hemisphere 11 x 11 - 4 Studs on Top with Marbled Tan Bespin Print [9678],20 +98107pr0001,Hemisphere 11 x 11 - 4 Studs on Top with Naboo Blue / Green Planet Print (9674),20 +98107pr0002,Hemisphere 11 x 11 - 4 Studs on Top with Tatooine Brown / Orange Planet Print (9675),20 +98107pr0003,Hemisphere 11 x 11 - 4 Studs on Top with Endor Blue / Green / Olive / White Planet Print [9679],20 +98107pr0004,Hemisphere 11 x 11 - 4 Studs on Top with Kamino Black / Blue / White Planet Print [75006],20 +98107pr0005,Hemisphere 11 x 11 - 4 Studs on Top with Coruscant Black / Gold / Orange Planet Print (75007),20 +98107pr0006,Hemisphere 11 x 11 - 4 Studs on Top with Asteroid Field Print [75008],20 +98107pr0007,Hemisphere 11 x 11 - 4 Studs on Top with Hoth White / Medium Blue / Light Bluish Gray Planet Print [75009],20 +98107pr0008,Hemisphere 11 x 11 - 4 Studs on Top with Endor Blue / White Planet Print [75010],20 +98107pr0012,Hemisphere 11 x 11 - 4 Studs on Top with Alderaan Blue / White / Dark Green Planet Print [75011],20 +98108,Minifig Helmet SW Death Star Trooper,27 +98109,Upper Body - Jabba the Hutt [Plain],24 +98109pr01,Upper Body - Jabba the Hutt with Tan Face Print,13 +98109pr01c01,Upper Body - Jabba the Hutt with Tan Face Print - Complete Assembly with Arms,13 +98112,Lower Body - Jabba the Hutt [Plain],24 +98112pr01,Lower Body - Jabba the Hutt with Stripes Print,13 +98113,Arm - Jabba The Hutt,13 +98113pr01,Arm - Jabba The Hutt with Reddish Brown Tattoo Print,13 +98114,"Cylinder Hemisphere 11 x 11, Studs on Top - Death Star Half with Superlaser (9676)",20 +98115,"Cylinder Hemisphere 11 x 11, Studs on Top - Death Star Half (9676)",20 +98116pr0003,Dino Coelophysis with Dark Red Markings and White Eyes (Gallimimus),28 +98118,Minifig Helmet SW Boushh [Plain],24 +98118pr0001,Minifig Helmet Boushh Voice Modulator Print [9516],27 +98119,Minifig Hair - Bun with Braid and Hood [Plain],24 +98119pr0001,Minifig Hair - Bun with Braid and Gold Hood with Royal Insignia Print (SW Queen Amidala),13 +98120,Minifig Head Modified Gamorrean [Plain],24 +98120pr0001,Minifig Head Modified Gamorrean with Armor and Belt Print [9516 / 75005],13 +98128,Minifig Helmet Ninja (Ninjago Samurai),27 +98129,Minifig Visor Chin Guard,27 +98130,Minifigure Kendo Mask,27 +98130pr0001,Minifig Kendo Helmet with White Grill,27 +98130pr0002,MINI KENDO MASK "NO.2",27 +98132,Minifig Shoulder Pads with Scabbard for Two Katanas,27 +98133,Minifig Ninjago Wrap,27 +98133pr0001,Minifig Ninjago Wrap with Gold 3 Point Emblem Print,27 +98133pr0002,Minifig Ninjago Wrap with Silver 3 Point Emblem Print,27 +98133pr0003,Minifig Headgear Ninjago Wrap with Gold 3 Point Emblem Print,27 +98133pr0004,Minifig Ninjago Wrap with Silver 3 Point Emblem Print,27 +98133pr0005,Minifig Ninjago Wrap with Silver 3 Point Emblem Print,27 +98133pr0006,Minifig Ninjago Wrap with Ice Energy Print,27 +98133pr0007,Minifig Ninjago Wrap with Fire Energy Print,27 +98133pr0008,Minifig Ninjago Wrap with Lightning Energy Print,27 +98133pr0009,Minifig Ninjago Wrap with Red Energy Print,27 +98133pr0011,Minifig Ninjago Wrap with Gold Asian Character Print (Lloyd),27 +98133pr0012,Minifig Ninjago Wrap with Bright Light Yellow Asian Character Print (Skylor),27 +98133pr0013,Minifig Ninjago Wrap with White Asian Character Print (Zane),27 +98133pr0014,Minifig Ninjago Wrap with Gold Asian Character Print,27 +98133pr0015,Minifig Ninjago Wrap with Gold Asian Character Print (Jay),27 +98133pr0016,Minifig Ninjago Wrap with Gold Asian Character Print (Cole),27 +98134,Minifig Snake Staff,27 +98135,Propeller 1 Blade 2 x 16 with Axle,35 +98136,Snake,28 +98137,Minifig Big Blade,41 +98138,Tile Round 1 x 1,19 +98138pr0001,Tile Round 1 x 1 with Ninjago Constrictai Print,10 +98138pr0002,Tile Round 1 x 1 with Hypnobrai Print,10 +98138pr0003,Tile Round 1 x 1 with Fangpyre Print,10 +98138pr0004,Tile Round 1 x 1 with Venomari Print,10 +98138pr0005,Tile Round 1 x 1 with Headlight Print,10 +98138pr0006,Tile Round 1 x 1 with Ninjago Trapped Zane Print,10 +98138pr0007,Tile Round 1 x 1 with Coin Print,10 +98138pr0008,Tile Round 1 x 1 with Offset Eye Print,10 +98138pr0009,Tile Round 1 x 1 with Electronic Eye Print,10 +98138pr0010,Tile Round 1 x 1 with Thermal Detonator Print ,10 +98138pr0011,Tile Round 1 x 1 with SW Republic Print,10 +98138pr0012,Tile Round 1 x 1 with Gauge and Red Pointer Print,10 +98138pr0013,Tile Round 1 x 1 with Red Spiral Print,10 +98138pr0014,Tile Round 1 x 1 with Padlock Print,10 +98138pr0015,Tile 1 x 1 Round with Chima Crocodile Eye Print,10 +98138pr0016,Tile Round 1 x 1 with Hooded Eye Print,10 +98138pr0017,Tile Round 1 x 1 with Strawberry Print,10 +98138pr0018,Tile Round 1 x 1 with Cookie Print,10 +98138pr0019,Tile 1 X 1 Round with Hero Factory Logo Print,10 +98138pr0020,Tile 1 x 1 Round with Republic Symbol Print,10 +98138pr0021,Tile 1 x 1 Round with Detonator Print,10 +98138pr0022,Tile Round 1 x 1 with Doughnut with Dark Pink Frosting and Sprinkles Print,10 +98138pr0023,Tile Round 1 x 1 with Flame Print,10 +98138pr0024a,Tile Round 1 x 1 with Black Coin Print with 5 Mark,10 +98138pr0024b,Tile Round 1 x 1 with Octagon (Arkenstone) Print,10 +98138pr0025,Tile Round 1 x 1 with Ninjago Trapped Nya Print,10 +98138pr0026,Tile Round 1 x 1 with Black Eye Closed with Eyelashes Print,10 +98138pr0027,Tile Round 1 x 1 with Black Eye with Pupil Partially Closed Print,10 +98138pr0028,Tile Round 1 x 1 with Ammonite Fossil Print,10 +98138pr0029,Tile Round 1 x 1 with Magenta Octagon Print,10 +98138pr0030,Tile Round 1 x 1 with Ultra Agents Toxic Print,10 +98138pr0031,Tile Round 1 x 1 with Fire Power Icon Print,10 +98138pr0032,Tile Round 1 x 1 with Water Power Icon Print,10 +98138pr0033,Tile Round 1 x 1 with Earth Power Icon Print,10 +98138pr0034,Tile Round 1 x 1 with Elven Wings Print,10 +98138pr0035,Tile Round 1 x 1 with Ring Pull Print,10 +98138pr0036,"FLAT TILE 1X1, ROUND, NO. 66",24 +98138pr0037,Tile Round 1 x 1 with 'LIGHT' on Red Half and Angry Eyes print,10 +98138pr0038,Tile Round 1 x 1 with White Star Print,10 +98138pr0040,Tile Round 1 x 1 with Ninjago Trapped Jay Print,10 +98138pr0041,Tile Round 1 x 1 with Red Bat Print,10 +98138pr0042,Tile Round 1 x 1 with Ninjago Trapped Sensei Wu Print,10 +98138pr0043,Tile Round 1 x 1 with Ninjago Trapped Lloyd Print,10 +98138pr0044,Tile 1 x 1 Round with Batman Logo Print,10 +98138pr0045,LEGO Round Tile 1 x 1 with Decoration (29198),10 +98138pr0046,Tile Round 1 x 1 with Black Dot and Circle print,10 +98138pr0047,Tile 1 x 1 Round with Silver Circle Print,10 +98138pr0048,Tile Round 1 x 1 with Tree Stump Print,10 +98138pr0049,Tile Round 1 x 1 with Sushi print,10 +98138pr0050,Tile Round 1 x 1 with Jam in Center Cookie Print,10 +98138pr0051,Tile Round 1 x 1 with Compass Print,10 +98138pr0052,"FLAT TILE 1X1, ROUND DEC NO 52",10 +98138pr0053,Tile Round 1 x 1 Cookie with Light Aqua Frosting print,10 +98138pr0054,Tile Round 1 x 1 with Exclamation Mark on Blue Cloud Print,10 +98138pr0055,Tile 1 x 1 Round with Porsche RS Print,10 +98138pr0056,Tile 1 x 1 Round with Animal Track Print,10 +98138pr0057,Tile Round 1 x 1 with VW Logo print,10 +98138pr0058,Tile 1 x 1 Round with Eye Print,10 +98138pr0059,Tile 1 x 1 Round with Circle and Dark Red Blob Print,10 +98138pr0060,Tile Round 1 x 1 - Large and Small White Squares Print (Brickheadz Eye),10 +98138pr0061,"FLAT TILE 1X1, ROUND, Batman Sign",10 +98138pr0064,Tile Round 1 x 1 with Pounamu Stone print,10 +98138pr0066,Tile Round 1 x 1 with 2 Small Black Circles,10 +98138pr0067,Tile 1 x 1 Round with Concentric Circles Print,10 +98138pr0068,Tile 1 x 1 Round with Triangles and Circle Print,10 +98138pr0069,Tile 1 x 1 Round with Concentric Circles Print,10 +98138pr0070,Tile 1 x 1 Round with Stylised Maltese Cross Print,10 +98138pr0071,FLAT TILE 1X1 round Minecraft Print,24 +98138pr0072,Tile Round 1 x 1 with Filler / Fuel / Gas Cap print,10 +98138pr0073,Tile Round 1 x 1 with Pearl Gold Evil Eye Print,10 +98138pr0074,Tile Round 1 x 1 with Acorn Print,10 +98138pr0075,"Tile 1X1, Round squint eye",10 +98138pr0076,Tile Round 1 x 1 with White Circle Print,10 +98138pr9998,Tile Round 1 x 1 with Ninjago Trapped Cole Print (70600-1),10 +98138pr9999,Tile Round 1 x 1 with Ninjago Trapped Kai Print,10 +98139,Minifig Sai,27 +98141,Minifig Crescent Blade - Serrated with Bar,27 +98143,Minifig Head Modified Snake with Fangs [Plain],13 +98143pr0001,"Minifig Head Modified Snake with Fangs, Red Eyes and Yellow Scales Print",13 +98143pr0002,"Minifig Head Modified Snake with Fangs, Red Eyes and Yellow and Dark Bluish Gray Scales Print (Slithraa)",13 +98145,Minifig Head Modified Snake with Horns [Plain],13 +98145pr0001,Minifig Head Modified Snake with Silver Horns and Orange Scales Print (Skalidor),13 +98145pr0002,Minifig Head Modified Snake with Orange Horns and Silver Scales Print (Bytar),13 +98146,Minifig Head Modified Snake with Horns and Scales [Plain],13 +98146pr0001,Minifig Head Modified Snake with Horns and Lime Scales Print (Acidicus),13 +98146pr0002,Minifig Head Modified Snake with Horns and Black Scales Print (Lizaru),13 +98147,Minifig Head Modified Two-Headed Snake [Plain],13 +98147pr0001,Minifig Head Modified Two-Headed Snake with White Scales Print,13 +98147pr0002,Minifig Head Modified Two-Headed Snake with Black Scales Print,13 +98148,Minifig Head Modified Snake with Scales [Plain],13 +98148pr0001,Minifig Head Modified Snake with Silver Scales Print,13 +98148pr0002,Minifig Head Modified Snake with White and Black Scales Print,13 +98150,Minifig Head Modified Snake [Plain],13 +98150pr0001,Minifig Head Modified Snake with 4 Yellow Eyes and Lime Scales Print (Spitta),13 +98150pr0002,Minifig Head Modified Snake with Light Bluish Gray and Yellow Scales Print (Mezmo),13 +98151,Minifig Hood and Tail [Plain],24 +98151pr0001,Minifig Hood and Tail with Dark Bluish Gray Scales Print [Snike],27 +98151pr0002,Minifig Hood and Tail with Red and Black Scales Print,27 +98153,Minifig Hood and Tail [Plain],24 +98153pr0001,Minifig Hood and Tail with Dark Blue Snake Print,27 +98153pr0002,Minifig Hood and Tail with Dark Green Snake Print,27 +98159,Dino Tail T-Rex with Pin [Plain],24 +98159pr0001,"Dino Tail T-Rex with Pin, Dark Red Top and Dark Brown Stripes Print",28 +98159pr0002,"Dino Tail T-Rex with Pin, Reddish Brown Top and Dark Brown Stripes Print",28 +98159pr0003,ANIMAL NO.5 TAIL NO.3,28 +98160,Dino Body T-Rex [Plain],24 +98160pr0001,Dino Body T-Rex with Dark Red Top with Dark Brown Stripes Print,28 +98160pr0002,Dino Body T-Rex with Olive Green Belly and Dark Brown Stripes Print,28 +98160pr0003,ANIMAL NO.5 BODY NO.3,28 +98161,Dino Head T-Rex with Pin [Plain],24 +98161pr0001,"Dino Head T-Rex with Pin, Tan Teeth, Dark Red Top and Dark Brown Stripes Print",28 +98161pr0002,"Dino Head T-Rex with Pin, Tan Teeth, Reddish Brown Top and Dark Brown Stripes Print",28 +98161pr0003,ANIMAL NO.5 HEAD NO.3,28 +98162,Dino Leg Large (Rear) T-Rex with Pin - Left [Plain],24 +98162pr01,"Dino Leg Large T-Rex with Pin, Tan Nails and Dark Brown Stripes on Dark Red Print - Left",28 +98162pr02,"Dino Leg Large (Rear) T-Rex with Pin, Tan Claws and Dark Brown Stripes on Reddish Brown Print - Left",28 +98162pr03,Dino Leg Large (Rear) T-Rex with Pin - Left,28 +98162pr04,Dino Leg Large T-Rex with Pin - Left,28 +98163,Dino Leg Large (Rear) T-Rex with Pin - Right [Plain],24 +98163pr01,"Dino Leg Large (Rear) T-Rex with Pin, Tan Claws and Dark Brown Stripes on Dark Red Print - Right",28 +98163pr02,"Dino Leg Large (Rear) T-Rex with Pin, Tan Claws and Dark Brown Stripes on Reddish Brown Print - Right",28 +98163pr03,Dino Leg Large (Rear) T-Rex with Pin - Right,28 +98163pr04,Dino Leg Large (Rear) T-Rex with Pin - Right,28 +98165,Dino Body Raptor [Plain],24 +98165pr0001,Dino Body Raptor with Dark Green Top with Lime Stripes Print,28 +98165pr0002,Dino Body Raptor with Dark Orange Top with Dark Brown Stripes Print,28 +98165pr0003,ANIMAL NO.3 BODY NO.3,28 +98165pr0004,ANIMAL NO.3 BODY NO.4,28 +98165pr0005,Dino Body Raptor with Dark Green Top with Lime Stripes on Sides Print,28 +98165pr0006,Dino Body Raptor with Olive Green Top with Medium Azure Stripes Print,28 +98166,Dino Coelophysis [Plain],24 +98166pr0001,Dino Coelophysis with Dark Green Markings,28 +98166pr0002,Dinosaur - Coelophysis with Dark Red Markings,28 +98169,"Dino Head Triceratops with Pin, Light Bluish Gray Horns and Reddish Brown Top with Dark Brown Print",28 +98177,Minifig Helmet Sith Trooper [Plain],24 +98177pr0001,Minifig Helmet Sith Trooper with Red Stripe and Imperial Print,27 +98177pr0002,"Minifig Helmet Sith Trooper with Wide Red Stripe, Breathing Mask and Imperial Print",27 +98190,Duplo Fence Railing with Scalloped Top and Clips on End,4 +98192,FEEDING RACK,24 +981982,"Arm, (Matching Left and Right) Pair",24 +981982pb04,"Arm, (Matching Left and Right) Pair with Black Stripes Print",24 +981982pb07,"Arm, (Matching Left and Right) Pair with Plaid Shirt Print",24 +981982pb08,"Arm, (Matching Left and Right) Pair with Light Aqua Stripes Print",24 +981982pb09,"Arm, (Matching Left and Right) Pair with Bright Light Orange Stains Print",24 +981pb04,"Arm, Left with Black Stripes Print",13 +981pb16,"Arm, Left with Red Flames Tatoo Print",13 +982,"Arm, Right",13 +98201,"Duplo Hippo, Adult with Opening Jaw",4 +98204,Duplo Ostrich,4 +98215,Duplo Cupcake / Muffin Cup with 2 x 2 Studs,4 +98218,"Duplo, Plate Round Corner 4 x 4",4 +98220,Round 4 x 4 Dome Top with 2 x 2 Studs and Marbled Pattern,4 +98222,"Duplo, Plate Round 4 x 4",4 +98223,Duplo Brick 2 x 4 Curved Top,4 +98223pr0001,Duplo Brick 2 x 4 Curved Top with Double Window print on Both Sides,4 +98223pr0002,"Duplo, Brick 2 x 4 Curved Top with Red Apples Print",4 +98223pr0003,Duplo Brick 2 x 4 Curved Top with Tomato Yellow Seeds and Black Cavity Print,4 +98223pr0006,Duplo Brick 2 x 4 Curved Top with Gold 'BANK' and Pink Piggy Bank print,4 +98223pr0008,Duplo Brick 2 x 4 Curved Top - Double Windows with printed Figures on Both Flat Sides - Side A Male and Dog - Side B Male and Female ,4 +98223pr0009,Duplo Brick 2 x 4 Curved Top with 2 Crossed Oars print,4 +98223pr0010,Duplo Brick 2 x 4 Curved Top with Animal Paw print,4 +98224,Brick 2 x 4 Curved Bottom,4 +98225,Brick Round 2 x 2 x 2,4 +98233,"Duplo, Plate 2 x 6",4 +98235pb01,Duplo Airplane Large Fuselage Forward with Black Top with Brown Eyes on Yellow Window Print (Siddeley),4 +98236,Duplo Building Wall 4 x 3 x 5 Curved Turret with Balcony - Castle,4 +98237,Duplo Building Roof Spire 3 x 3 x 3,4 +98238,Duplo Building Roof Spire Half 4.5 x 2 x 4,4 +98239,Duplo Door 1 x 3 1/2 x 6 2/3 with Curved Top and Open Handle - Castle,4 +98247pb01,Duplo Car Body Truck with Cars 'Red' Fire Logo Print (Fits over Car Base 2 x 4),4 +98248pb01,Duplo Car Body 2 Top Studs Sports Coupe Wide with Cars Holley Shiftwell Print,4 +98249pb01,Duplo Car Body 2 Studs on Spoiler with Cars Jeff Gorvette Print,4 +98252,Brick 2 x 3 with Curved Bottom,4 +98262,Flower 2 x 2 - Round [Solid Stud],28 +98263,Plate Special 1 x 4 with Coupling Link Double,9 +98279,"Minifig Hat, Campaign",27 +98280,Panel 1 x 6 x 3 with Studs on Sides,23 +98281,Wedge 6 x 4 x 2/3 Quad Curved,37 +98282,Mudguard 4 x 2 1/2 x 1 with Arch Round,36 +98283,Brick Special 1 x 2 with Masonry Brick Profile,5 +98284,Plate Round 2 x 2 with Pin Hole and 4 Arms Up,21 +98285,Hinge Plate 2 x 4 with Pin Hole - Bottom,18 +98286,Hinge Plate 2 x 4 with Pin Hole - Top,18 +98287,Bracket 3 x 4 - 3 x 4,9 +98288,Minifig Wheelbarrow,27 +98289,Minifig Helmet Mining with Head Lamp,27 +982pb04,"Arm, Right with Black Stripes Print",13 +982pb06,"Arm, Right with Gold Armor Print",13 +983,Hand,13 +98302,"Engine, Smooth Small, 1 x 2 Side Plate with Axle Holders and Slot",35 +98313,Arm Mechanical [Thick Support],13 +98338,Minifig Short Spear with Hole,27 +98341,Ring 4 x 4 with 2 x 2 Hole and 4 Arrow Ends (Ninjago Spinner Crown),27 +98341pr0001,Ring 4 x 4 with 2 x 2 Hole and 4 Arrow Ends with Flames Print (Ninjago Spinner Crown),27 +98341pr0002,Ring 4 x 4 with 2 x 2 Hole and 4 Arrow Ends with Blue Scales Print (Ninjago Spinner Crown),27 +98341pr0003,Ring 4 x 4 with 2 x 2 Hole and 4 Arrow Ends with Black and Red Snake Heads Print (Ninjago Spinner Crown),27 +98341pr0004,Ring 4 x 4 with 2 x 2 Hole and 4 Arrow Ends with Yellow and Red Flames Print (Ninjago Spinner Crown),27 +98341pr0005,Ring 4 x 4 with 2 x 2 Hole and 4 Arrow Ends with Black Spikes Print (Ninjago Spinner Crown),27 +98341pr01,Ring 4 x 4 with 2 x 2 Hole and 4 Arrow Ends with Lightning Print (Ninjago Spinner Crown),27 +98342,Ring 4 x 4 with 2 x 2 Hole and 4 Snake Head Ends (Ninjago Spinner Crown),27 +98342pr0001,Ring 4 x 4 with 2 x 2 Hole and 4 Snake Head Ends and Black Scales Snake Print (Ninjago Spinner Crown),27 +98342pr0002,Ring 4 x 4 with 2 x 2 Hole and 4 Snake Head Ends and Black and White Scales Snake Print (Ninjago Spinner Crown),27 +98342pr0004,Ring 4 x 4 with 2 x 2 Hole and 4 Snake Head Ends and Red and Black Scales Snake Print (Ninjago Spinner Crown),27 +98342pr0005,Ring 4 x 4 with 2 x 2 Hole and 4 Snake Head Ends and Yellow Scales Snake Print (Ninjago Spinner Crown),27 +98342pr05,Ring 4 x 4 with 2 x 2 Hole and 4 Snake Head Ends and Gold Scales Snake Print (Ninjago Spinner Crown),27 +98343,Ring 4 x 4 with 2 x 2 Hole and 4 Serrated Ends [Plain],24 +98343pr0001,Ring 4 x 4 with 2 x 2 Hole and 4 Serrated Ends with Black and Pearl Gold Print (Ninjago Spinner Crown),27 +98343pr0002,Ring 4 x 4 with 2 x 2 Hole and 4 Serrated Ends with Black and Silver Print (Ninjago Spinner Crown),27 +98343pr0003,Ring 4 x 4 with 2 x 2 Hole and 4 Serrated Ends with Black and White Print (Ninjago Spinner Crown),27 +98344,Ring 4 x 4 with 2 x 2 Hole and 2 Intertwined Snakes [Plain],24 +98344pr0001,Ring 4 x 4 with 2 x 2 Hole and 2 Intertwined Snakes with White and Black Print (Ninjago Spinner Crown),27 +98344pr0002,Ring 4 x 4 with 2 x 2 Hole and 2 Intertwined Snakes with Dark Bluish Gray and White Scales Print (Ninjago Spinner Crown),27 +98344pr0003,Ring 4 x 4 with 2 x 2 Hole and 2 Intertwined Snakes with Lime Green Print (Ninjago Spinner Crown),27 +98345,Ring 4 x 4 with 2 x 2 Hole and 4 Swirl Ends (Ninjago Spinner Crown),27 +98345pr0001,Ring 4 x 4 with 2 x 2 Hole and 4 Swirl Ends with Blue and Red Print (Ninjago Spinner Crown),27 +98345pr0002,Ring 4 x 4 with 2 x 2 Hole and 4 Swirl Ends with Yellow Scales Print (Ninjago Spinner Crown),27 +98345pr0003,Ring 4 x 4 with 2 x 2 Hole and 4 Swirl Ends with Black and Silver Print (Ninjago Spinner Crown),27 +98347,Wing 1 x 4 with Pin Hole,41 +98348,Minifig Whip Bent with Snake Head and Pin Hole,27 +98354,Turntable 6 x 6 Round Base Serrated with Top (Ninjago Spinner) [Plain],24 +98354pr0001,Turntable 6 x 6 Round Flat Silver Base Serrated with Medium Orange Top with Hollow Studs and Red Faces with Red Flames Print (Ninjago Spinner),18 +98354pr0002,"Turntable 6 x 6 Round Flat Silver Base Serrated with Pearl Dark Gray Top with Hollow Studs and Gold, Red and Black Print (Ninjago Spinner)",18 +98354pr0003,"Turntable 6 x 6 Round Pearl Dark Gray Base Serrated with Dark Purple Top with Hollow Studs and Yellow, White and Dark Green Print (Ninjago Spinner)",18 +98354pr0004,"Turntable 6 x 6 Round Pearl Dark Gray Base Serrated with Red Top with Hollow Studs and Red, White, Yellow and Black Print (Ninjago Spinner)",18 +98354pr0005,"Turntable 6 x 6 Round Pearl Dark Gray Base Serrated with Lime Top with Hollow Studs and Red, White and Black Print (Ninjago Spinner)",18 +98354pr0006,Turntable 6 x 6 Round Flat Silver Base Serrated with Bright Green Top with Hollow Studs and Pearl Light Gray Snake Heads Print (Ninjago Spinner),18 +98354pr0007,Turntable 6 x 6 Round Pearl Dark Gray Base Serrated with Yellow Top with Hollow Studs and White and Dark Green Print (Ninjago Spinner),18 +98354pr0008,Turntable 6 x 6 Round Flat Silver Base Serrated with Orange Top with Hollow Studs and Dark Red Faces on Dark Tan and Dark Gray Print (Ninjago Spinner),18 +98354pr0009,Turntable 6 x 6 Round Flat Silver Base Serrated with White Top with Hollow Studs and White Faces on Blue Print (Ninjago Spinner),18 +98354pr0010,"Turntable 6 x 6 Round Pearl Dark Gray Base Serrated with Pearl Gold Top with Blue, Red and Silver Print (Ninjago Spinner)",27 +98354pr0011,Turntable 6 x 6 Round Pearl Dark Gray Base Serrated with Trans-Green Top with Hollow Studs and Black and Orange Print,27 +98354pr0012,Turntable 6 x 6 Round Pearl Dark Gray Base Serrated with Trans-Medium Blue Top with Spiral Stars Print (Ninjago Spinner),27 +98354pr0013,Turntable 6 x 6 Round Pearl Dark Gray Base Serrated with Trans-Neon Green Top and Green with Red Spots Print (Ninjago Spinner),18 +98354pr0014,Turntable 6 x 6 Round Pearl Dark Gray Base Serrated with Trans-Red Top with Black and White Print (Ninjago Spinner),27 +98354pr0015,Turntable 6 x 6 Round Flat Silver Base Serrated with Ice Shards Print,27 +98354pr0016,Turntable 6 x 6 Round Flat Silver Base Serrated with Hollow Studs and Fire Energy Print,27 +98354pr0017,Turntable 6 x 6 Round Flat Silver Base Serrated with Trans-Black Top with Red Energy Print (Ninjago Spinner),18 +98354pr0018,Turntable 6 x 6 Flat Silver Round Base Serrated with Electric Bolts Print,27 +98365,Minifig Head Modified Alien [Plain],24 +98365pr0001,Minifig Head Modified Alien with Large Black Eyes Print,13 +98366,Minifig Helmet - Roman Soldier,27 +98367,Minifig Shield Rectangular Curved with Stud,27 +98367pr0001,Minifig Shield Rectangular Curved with Stud with Gold Lightning Wings and Arrows Print,27 +98368,Minifig Toolbox,27 +98368pr0001,Minifig Utensil Toolbox with Black 'PROPERTY OF NED FLANDERS' on White Rectangle Print,27 +98369,Cleaver,27 +98370,Minifig Greatsword Pointed with Thin Crossguard,27 +98371,Minifig Hair Swept Back with Forelock,13 +98372,Minifig Steak on Bone,27 +98372pr0001,Minifig Steak on Bone with Red Meat Print,27 +98373,Minifig Head Modified Minotaur [Plain],24 +98373pr0001,Minifig Head Modified Minotaur with Gold Eyes and Pin Holes,13 +98374,Minifig Pot Small with Handle Holders,7 +98374pr0001,Minifig Pot Small with Handle Holders and Dripping Honey and Bee Print,7 +98374pr0002,Minifig Pot Small with Handle Holders and Jack O' Lantern with Angular Eyes Print,7 +98374pr0003,Utensil Pot Small with Handle Holders and Pumpkin Jack O' Lantern with Round Eyes Pattern,7 +98375,Minifig Toy Winder Key,27 +98376,"Lower Body, Genie",13 +98376pr0001,"Lower Body, Genie with Stars Print",13 +98376pr0002,"Lower Body, Genie with Red Belt print",13 +98377,Minifig Hair Female with Spiked Tiara (Lady Liberty),13 +98378,"Minifig Cap, Surgical",13 +98379,Minifig Jewel with Ornate Pin,27 +98379pr0002,Minifig Purple Jewel with Ornate Pin,27 +98381,"Minifig Cap, Butcher ",27 +98381pr0001,Minifig Hat - Butcher Style with Red Stripe Print,27 +98382,Teddy Bear - Arms Down,24 +98382pr0001,"Teddy Bear - Arms Down with Black Eyes, Nose and Mouth / Tan Belly Print",27 +98382pr0002,"Teddy Bear - Arms Down with Black Eyes, Nose, Mouth and Red Bow Tie Print",27 +98382pr0003,Teddy Bear - Arms Down with Panda Print,27 +98382pr0004,"Teddy Bear - Arms Down with 1 Black Eye, Nose, Mouth, Crack and Wet Spot Print (Simpsons Bobo)",27 +98382pr0005,"Teddy Bear - Arms Down with 1 Button Eye, Mouth Stitches and Striped Belly Print",27 +98383,Minifig Genie Lamp,27 +98384,Minifig Head Robot [Plain],24 +98384pr0001,Minifig Head Robot with Blue Eyes and Red/Yellow Teeth Display,13 +98384pr0002,Minifig Head Robot Female Print,13 +98385,Minifig Hair Spiked,13 +98386,Dog Small Walking [Plain],24 +98386pr0001,Dog Small Walking with Blue Eyes and Black Nose and Mouth Print,28 +98386pr0002,Dog Small Walking with Brown Eyes and Nose and Black Mouth Print,28 +98387,Friends Bunny Rabbit Sitting,28 +98387pr0001,Friends Bunny Rabbit Sitting with Blue Eyes and Pink Nose and Mouth Print,28 +98387pr0002,"Bunny Rabbit Sitting with Blue Eyes, Black Nose and Mouth and White Beard Print",28 +98388,Bird Friends [Plain],28 +98388pr0001,Bird Friends with Red Beak Print,28 +98388pr0002,Bird with Magenta Beak and Black Eyes Pattern,28 +98388pr0004,Bird Friends with Yellow Beak Print,28 +98388pr0005,Bird Friends with Dark Bluish Gray Beak and Yellow Chest Print,28 +98388pr0006,Bird Friends with Magenta Beak and Feathers Print,28 +98388pr0007,"BIRD, SPARROW, NO. 9",28 +98388pr0008,"BIRD, SPARROW NO. 8",28 +98389,Hedgehog,28 +98389pr0001,Hedgehog with Reddish Brown Spines Print,28 +98389pr0002,Hedgehog with Eyelashes and Dark Brown Spines Print,28 +98393a,Friends Accessories Medical Stethoscope,27 +98393b,Friends Accessories Medical Clipboard,27 +98393c,Friends Accessories Medical Otoscope,27 +98393d,Friends Accessories Medical Thermometer,27 +98393e,Friends Accessories Medical Spoon,27 +98393f,Friends Accessories Medical Feeding Bottle,27 +98393g,Friends Accessories Medical Ice Pack,27 +98393h,Friends Accessories Medical Nurse Hat,27 +98393i,Friends Accessories Medical Syringe,27 +98393j,Friends Accessories Medical Pen,27 +98397,Minifig Handlebars with Angular Handles,36 +98457,Duplo Support Column 2 x 2 x 6 Round with Open Latticed Back,4 +98458,Duplo Loading Pallet 4 x 4 Smooth Side,4 +98459,Duplo Wooden Lid / Door,4 +98460,Duplo Fence 1 x 10 x 2 [Clip and Bar ends],4 +98465,DUPLO ADULT FIGURE,4 +98496,Bear with 2 Studs on Back [Plain],24 +98496pr0001a,Bear with 2 Studs on Back and Dark Tan Muzzle Print,28 +98496pr0001b,Polar Bear with 2 Studs on Back and Black Eyes and Nose Print ,28 +98541c01pb01,"Duplo, Toolo Formula Car Chassis Assembly with Blue Top and Number 8 and Octan Logo Print",4 +98549,Tile Special 2 x 2 with Bar and Stud with Stop Ring,15 +98560,Slope 75° 2 x 2 x 3 - Solid Studs,3 +98562,Hero Factory Weapon - Handcuff,41 +98563,Hero Factory Zamor Sphere Launcher - Top Half with Barrel and Sight,41 +98564,Hero Factory Zamor Sphere Launcher - Bottom Half with Axle Hole,41 +98565,"Technic Axle and Pin Connector 2 x 3 with Two Ball Joint Sockets, Rounded Ends",41 +98566,Hero Factory Hexagon Shield,41 +98567,Hero Factory Weapon - Flexible Ammunition Belt,41 +98568,SWORD-SIMULTAN-SIZE,41 +98568p01,"Technic Sword 11.5L with Sawtooth Back, Trans Bright Green Blade",41 +98568p02,Technic Sword 11.5L with Sawtooth Back with Flat Silver Blade,41 +98568p03,Hero Factory Sword 11.5L with Sawtooth Back / Trans Medium Blue Blade,41 +98569,Hero Factory Full Torso Armor,41 +98569pr0002,Hero Factory Full Torso Armor with Silver and Black Circuitry Print (Evo),41 +98569pr0003,Hero Factory Full Torso Armor with Yellow Lightning Bolts Print (Surge),41 +98569pr0004,Hero Factory Full Torso Armor with White Stripes Print (Rocka),41 +98569pr0005,Hero Factory Full Torso Armor with Silver and Red Mechanical Print (Splitface),41 +98569pr0006,Hero Factory Full Torso Armor with Red Hexagons Print (Breez),41 +98569pr0007,Hero Factory Full Torso Armor with Yellow Flames Print (Furno),41 +98569pr0008,Hero Factory Full Torso Armor with Red and Yellow Flower Print (Joker),41 +98569pr0009,Hero Factory Full Torso Armor with Gold Technical Gear Print (Bulk),41 +98569pr0010,Hero Factory Full Torso Armor with White Waves Print (Stringer),41 +98569pr0011,Hero Factory Full Torso Armor with White and Orange Circuitry Print,41 +98570,Hero Factory Chest Badge with 'H' [Plain],24 +98570pat01,Hero Factory Chest Badge with 'H' on Light Bluish Gray Background Pattern,41 +98571,"Hero Factory Shoulder Armor, Rounded",41 +98573,Hero Factory Mask (Evo),41 +98574,Hero Factory Mask (Rocka),41 +98575,Hero Factory Mask (Black Phantom),41 +98577,Technic Beam 1 x 3 with Ball Joint in Middle,55 +98578,"Hero Factory Weapon - Spiked Ball, Half",41 +98579,Hero Factory Mask (Toxic Reapa),41 +98580,"Hero Factory Mask, Half (Splitface)",41 +98581,"Hero Factory Mask, Insect",41 +98582,"Hero Factory Mask, Robotic Shark (Jawblade)",41 +98585,Hero Factory Weapon Barrel with 2 Pin Holes and 3 Axle Holes,41 +98587,"Hero Factory Mask, One Eye Opening (XT4)",41 +98588,Hero Factory Weapon - Lightning [Plain],24 +98588pat0002,Hero Factory Weapon - Lightning with Marbled Blue/Yellow Pattern,41 +98589,Hero Factory Shoulder Armour with Wings,41 +98590,Hero Factory Torso - Extra Small with Ball Joints,41 +98592,Hero Factory Shoulder / Knee Armor,41 +98593,"Hero Factory Shoulder Armour, Sonic Speaker",41 +98594,Hero Factory Mask [Nex],41 +98596,"Hero Factory Mask, Six Eyes (Core Hunter)",41 +98597,"Hero Factory Foot, Large with 2 Toes",41 +98602,Hero Factory Weapon - Energy Beam,41 +98603,Hero Factory Chest Armour Small,41 +98603s01pr0001,Hero Factory Chest Armor Small with Batman Logo Print,41 +98603s01pr0002,Hero Factory Chest Armor Small with Green Lantern Logo Print,41 +98603s01pr0003,Hero Factory Chest Armor Small with Iron Man Reactor Print,41 +98603s01pr0004,Hero Factory Chest Armor Small with Captain America Star Print,41 +98603s01pr0005,Hero Factory Chest Armor Small with Chi and Gold (Lion) Print,41 +98603s01pr0006,Hero Factory Chest Armor Small with Chi and Gold (Eagle) Print,41 +98603s01pr0007,Hero Factory Chest Armor Small with Chi and Olive Green (Crocodile) Print,41 +98603s01pr0008,Hero Factory Chest Armor Small with Chi and Dark Red (Wolf) Print,41 +98603s01pr0009,Hero Factory Chest Armor with Chi and Dark Purple [Raven] Print,41 +98603s01pr0011,Hero Factory Chest Armor Small with Yellow and Orange Cracked Muscle Lines Print,41 +98603s01pr0012,Hero Factory Chest Armor Small with Batman Logo Print,41 +98603s02pr0002,Hero Factory Chest Armor Small with Red and Orange Print,41 +98603s02pr0003,Hero Factory Chest Armor Small with Dark Azure and Yellow Print (Gali),41 +98603s02pr0004,Hero Factory Chest Armor Small with Green and Yellow Print,41 +98603s02pr0005,Hero Factory Chest Armor Small with Dark Azure and Yellow Print (Gali),41 +98603s02pr0006,Hero Factory Chest Armor Small with Red Spider Eyes and White Fangs Print,41 +98603s02pr0007,Hero Factory Chest Armor Small with Tan and Reddish Brown Print,41 +98603s02pr0013,"SUPER CHEST DECO NO.13, 2015",41 +98603s02pr0014,"SUPER CHEST DECO NO.14, 2015",41 +98603s02pr0015,"SUPER CHEST DECO NO.15, 2015",41 +98603s02pr0016,"SUPER CHEST DECO NO.16, 2015",41 +98603s02pr0017,"SUPER CHEST DECO NO.17, 2015",41 +98603s02pr0018,Hero Factory Chest Armor Small with SW Darth Vader Print,41 +98603s02pr0019,SUPER CHEST DECO. NO.19,41 +98603s02pr0020,SUPER CHEST DECO NO.20,41 +98603s02pr0021,SUPER CHEST DECO NO. 21,41 +98603s02pr0022,SUPER CHEST DECO. NO. 22,41 +98604,Hero Factory Chest Armour Large,41 +98606,Dish 9 x 9 Inverted with Pin Hole (Radar),21 +98606pr0001,Dish 9 x 9 Inverted (Radar) with Captain America Star Triple Blast Shield Print,21 +98606pr0002,Dish 9 x 9 Inverted (Radar) with Gold Phoenix and Flames Print,21 +98606pr0003,Dish 9 x 9 Inverted (Radar) with Gold Dragon on Red Medallion Print,21 +98608,Large Figure Head Modified Super Heroes Green Lantern [Plain],24 +98608pr01,Large Figure Head Modified Super Heroes Green Lantern Print,41 +98611,Large Figure Head Modified Super Heroes Hulk [Plain],24 +98611pr01,Large Figure Head Modified Super Heroes Hulk Print,41 +98653,"Dino Body Pteranodon, 4 Studs, 6 Clips [Plain]",24 +98653c01,"Dino Body Pteranodon, 4 Studs, 6 Clips with Reddish Brown Top",28 +98653c02,"Dino Body Pteranodon, 4 Studs, 6 Clips with Dark Green Top",28 +98653c03,"Dino Body Pteranodon, 4 Studs, 6 Clips with Dark Red Top",28 +98721,Minifig Batarang,27 +98722,Minifig Wings Batman,27 +98723,Minifig Hair Male Half Smooth/Half Spiky [Plain],24 +98723pr0001,Minifig Hair Half & Half with Black Printed Male Half Print,13 +98725,Minifig Hair Female Long Wavy with Tiara [Plain],24 +98725pr0001,Minifig Hair Female Long Wavy with Gold Tiara and Red Star Print (Wonder Woman),13 +98725pr0002,Minifig Hair Female Long Wavy with Silver Tiara and Red Star Print (Wonder Woman),13 +98726,Minifig Hair Swept Right with Front Curl,13 +98729,"Minifig Mask for Catwoman, Small Gap between Eyeholes",27 +98782,Light Brick 2 x 3 x 1 1/3,45 +98800,Plastic Flag 8 x 5 [Plain],38 +98800pr0001,Plastic Flag 8 x 5 with White Skull and Crossed Cutlasses Print [4184],38 +98800pr0002,Plastic Flag 8 x 5 with White Skull with Fangs and Red Flames Print [4195],38 +98834,"Vehicle, Spoiler 2 x 4 with Handle",36 +98834pr0002,Vehicle Spoiler 2 x 4 with Handle and 'WORLD GRAND PRIX' Print,36 +98834pr0003,Vehicle Spoiler 2 x 4 with Handle and 'WORLD GRAND PRIX' Upside-Down Print [Black],36 +98834pr0004,Vehicle Spoiler 2 x 4 with Handle and Robin Logo Print,36 +98835,Vehicle Mudguard 3 x 4 x 1 2/3 Curved Front,36 +98835pr0001,"Vehicle Mudguard 3 x 4 x 1 2/3 Curved Front with Headlights, Grille and Smile Print (Max Schnell) (9485)",36 +98835pr0002,"Vehicle Mudguard 3 x 4 x 1 2/3 Curved Front with Headlights, 'GRC' and Smile Print (Raoul CaRoule) (9485)",36 +98835pr0003,Vehicle Mudguard 3 x 4 x 1 2/3 Curved Front with Headlights and Smile Print (Jeff Gorvette),36 +98835pr0004,Vehicle Mudguard 3 x 4 x 1 2/3 Curved Front with Headlights and Grille with Red and Yellow Trim Print,36 +98835pr0005,Vehicle Mudguard 3 x 4 x 1 2/3 Curved Front with Ferrari 458 Italia Print,36 +98835pr0006,Vehicle Mudguard 3 x 4 x 1 2/3 Curved Front with Headlights and Black Grille Print,36 +98889,"Minifig Bridal Veil, Cloth with Silver Dots Pattern",27 +98930,"4WD W. WAG. 4X8, DEC.",4 +98989,Technic Axle and Pin Connector Perpendicular Double 4L,12 +99008,Technic Axle 4 with Centre Stop,46 +99009,Technic Turntable Small Top,26 +99010,Technic Turntable Small Base (28 Teeth),26 +99012,Technic Rotor Blade Small with Axle and Pin Connector End,26 +99013,Technic Rotor Blade 31L with Beam 3L [Plain],24 +99013pat0001,Technic Rotor Blade 31L with Beam 3L with Black Rubber Tip,26 +99021,Pneumatic Hose Connector with Axle Connector,22 +99046,Duplo Brick Round 4 x 4 Dome Top with 2 x 2 Studs and Marbled White with Red and Pink Hearts and Stars Print,4 +99055,"PUMPKIN COACH TOP, DEC.",4 +99056,Duplo Horse Carriage Base Curved with Gold Disney Princess Cinderella Print,4 +99061,Bar 11 x 13 Grille,32 +9912,Electric Solar Cell,45 +992,Train Track 12V Slotted Crossing,36 +99206,Plate Special 2 x 2 x 0.667 with Two Studs On Side and Two Raised,9 +99207,Bracket 1 x 2 - 2 x 2 Inverted,9 +99239,Minifig Hair Long with Viking Helmet with Side Holes [Plain],24 +99239pr0001,Minifig Hair Long with Metallic Silver Viking Helmet with Side Holes,13 +99240,Minifig Hair Swept Back Into Bun,13 +99241,Minifig Swimming Cap,27 +99241pr0001,"Minifig Cap, Swimming with Team GB Logo Print",27 +99241pr0002,"Cap, Swimming with White Calendar Grid Pattern",27 +99242,Minifig Hair Layered,13 +99242pr0001,Minifig Hair Layered with Silver Zigzag Streaks Print,27 +99243,Minifig Headdress - Aztec Quetzal,13 +99243pr0001,Minifig Headdress - Aztec Quetzal with Black Feather Tips and Medium Azure Eyes and Cheeks Print,13 +99244,Minifig Mask Bunny Ears [Plain],24 +99244pr0001,Minifig Mask Bunny Ears with Bright Pink Auricles Print,13 +99244pr0002,Minifig Mask Bunny Ears with Dark Tan Auricles Print,13 +99245,Minifig Hair Ocean King with Spiked Tiara [Plain],24 +99245pr0001,Minifig Hair Ocean King with Gold Spiked Tiara Print,13 +99246,"Hat, Scottish Tam o'Shanter [Plain]",24 +99246pr0001,"Hat, Scottish Tam o'Shanter with Red and White Tartan Print",27 +99248,Minifig Hair Long with Headband [Plain],24 +99248pr0001,Minifig Hair Long with Orange Headband Print,13 +99249,Plant Flower Stem with Bar,28 +99250,Minifig Medal [Plain],24 +99250pr0001,Minifig Gold Medal with Red Ribbon,27 +99251,Minifig Ruff,27 +99252,Minifig Bagpipes [Plain],24 +99252pr0001,Minifig Bagpipes with Green and White Tartan Print,27 +99253,Minifig Lasso,27 +99254,Minifig Helmet Space without Visor Attachment,27 +99254pr0001,Minifig Helmet Space with Open Visor Large and Silver Stripe Print,27 +99256,"Minifig Bridal Train, Cloth",13 +99257,Minifig Kilt,27 +99257pr0001,Minifig Kilt Cloth with Green and White Tartan Print,27 +99257pr0002,Minifig Skirt with Dark Green Apron Print [col11-3],27 +99301,Slope 33° 3 x 3 Double Concave,3 +99353,Plastic Sorting Template - Elephant [6784],17 +99356,Plastic Sorting Template - Giraffe [6784],17 +99367,Sticker Sheet for 9092-1,17 +99380,Gyro Sensor - EV3,45 +99406,Sticker Sheet for 9093-1,17 +99415,Torso - Modified with Ridged Armour / Black Arms / Black Hands [Lord Garmadon],13 +99427,"Duplo Figure Disney Princess, Sleeping Beauty (Lego Ville)",4 +99430,Duplo Car Base 2 x 8 x 1 1/2 with Large Gold Spoked and Spiraled Wheels,4 +99455,Electric Motor Medium - EV3,45 +99460,"BANDAGE 4,5x20",24 +99464,Minifig Cape - Cloth - Very Short [Unstarched],27 +99498,Electric Power Functions Servo Motor with Dark Bluish Gray Bottom,45 +99499,Electric Power Functions Large Motor with Dark Bluish Gray Bottom,45 +995,Train Wheel Large with Pin Axle Hole,24 +99508,Duplo Brick 1 x 2 x 2 with Coins and Ticket with Minifig Silhouette Print,4 +99563,Minifig Gold Bar [Ingot],27 +99565,Duplo Toolo Wheel with Action Wheeler Screw Short,4 +99565c01,"Duplo, Toolo Wheel with Action Wheeler Screw Short",4 +996,Train Wheel Small with Pin Axle Hole,24 +99627,"CURVE 2X4X2, DEC. FIRE ALARM",4 +996ac01,"Electric Connector, 1 Way Male Rounded with Hollow Pin (Banana Plug)",45 +996ac15,"Electric Wire 4.5V with four Blue 1-prong Connectors Hollow Pin, 15 Studs Long",45 +996bc01,"Electric, Connector, 1 Way Male Rounded with Cross-Cut Pin (Banana Plug)",45 +997251,Dacta Sorting Tray - 34 Compartment for Dacta Small Bin,17 +99771,Duplo Princess Skirt Plain,4 +99773,Technic Beam Triangle Thin [Type II],51 +99774,Minifig Ski without Hinge,27 +99778,Lower Body with Tail [Plain],13 +99778pr0002,"Lower Body with Tail, White and Black Scales Print",13 +99778pr0004,"Lower Body with Tail, Black and Gold Scales Print",13 +99778pr0005,"Lower Body with Tail, Yellow and Light Blue Scales Print",13 +99778pr0006a,"Lower Body with Tail, White Scales Print",13 +99778pr0006b,"Lower Body with Tail, Dark Purple Scales Print",13 +99778pr0007,"Lower Body with Tail, Copper Scales with Dark Red Tattered Skirt, Copper Chains, Belt With Snake Heads Buckle Print",13 +99778pr0008,SNAKE LOWER PART NO.8,13 +99778pr03,"Lower Body with Tail, Lime and Red Scales Print",13 +99778pr04,"Lower Body with Tail, Orange Scales Print",13 +99780,Bracket 1 x 2 - 1 x 2 Inverted,9 +99781,Bracket 1 x 2 - 1 x 2,9 +99784,Bar 1 x 12 with 1 x 2 Plate End with Hollow Studs and 1 x 1 Round Plate End,32 +99798,Pneumatic Pump 1 x 6,22 +997c01,Boat Section Bow 6 x 8 x 3.333 with LtGray Deck,35 +997c02,Boat Section Bow 6 x 8 x 3.333 with White Deck,35 +99809,Minifig Tranquilizer Gun,27 +99818,Minifig Head Modified Snake with Open Mouth [Plain],24 +99818pr0001,Minifig Head Modified Snake with Open Mouth and Black and Gold Scales Print (Pythor),13 +99818pr0002,"Minifig Head Modified Snake with Open Mouth and Red Eyes, Light Blue Gem and Dark Purple Scales Print (Pythor)",13 +99844,DUPLO LOCO BASE ENGINE 4x8x5,4 +99873,Duplo Brick 3 x 2 x 2 Slope with Eye Print,4 +99930,Minifig Hair Smooth Combed Sideways,13 +99942,Duplo Brick 2 x 4 x 2 Curved Top with White 'ZOO' on Green Background Print,4 +99948,Technic Steel Ball 18 mm,25 +agtidcard,Agents ID Card,17 +archmia,Minitalia Arch 2 x 10 x 2 with Bottom X Support,37 +b09mf01,Book - Standing Small: A Celebration of 30 years of the Lego Minifigure,17 +b09stk01,Ultimate Sticker Collection - Minifigure,17 +b09sw,LEGO Star Wars The Visual Dictionary [ISBN-13 9780756655297],17 +b11idea,The LEGO Ideas Book - Unlock Your Imagination,17 +b11idea2,The LEGO Ideas Book - You Can Build Anything!,17 +b12dup01,Book - Let's Go! Vroom!,17 +b12dup02,Book - Busy Farm,17 +b12dup03,Grow Caterpillar Grow! - Read and build edition,17 +b3057,Master Builders Create 'n' Race Idea Book,17 +b3058,Master Builders Busy City Idea Book,17 +b3059,Master Builders Mars Mission Idea Book,17 +b6000stk01,"Idea Book 6000, Legoland",17 +b6000stk02,Sticker for Book 6000 - Sheet 2,17 +basketball01,Sports Promo Basketball from McDonald's Sports Sets,27 +basketball02l,Sports Promo Basketball Throwing Arm from McDonald's Sports Sets - Left Side,27 +basketball02r,Sports Promo Basketball Throwing Arm from McDonald's Sports Sets - Right Side,27 +bat9volt,Electric Battery 9V,45 +bb03pb01,Door 1 x 4 1/2 x 6 with Fire Dept Logo Print [4657],16 +bb03pb02,Door 1 x 4 1/2 x 6 with Ari's Village Deli Print [4860],16 +bb03pb03,Door 1 x 4 1/2 x 6 with Fast Food Print [4655],16 +bb06bd,"Electric, Motor 4.5V/12V Type I 4 x 12 x 3 1/3 Housing Screw (Train)",45 +bb07pb01,"Electric, Motor 4.5V Type I 12 x 4 x 4 with 4.5V stamped on front",45 +bb108pb01,Road Sign Cantilever Cruciform with 'Esso' Print,10 +bb1237,Instruction CD-ROM for 8250/8299,17 +bb1238,Instruction CD-ROM for 9736,17 +bb1240,Instruction CD-ROM for 9747 [RIS v1.5],17 +bb1241,CD-Rom for 8450,17 +bb1242,CD-Rom for Set 8482-1,17 +bb125pb01,Plastic Rectangle 11 x 3 with Gravity Games Logo,38 +bb131pb01c02,Road Sign Old Diamond with Black & White Border Major Road Print & Type 2 Base,38 +bb131pb02c02,Road Sign Old Diamond with Black & White Border End of Major Road Print & Type 2 Base,38 +bb131pb03c01,"Road Sign Old Diamond with Red Border, Plain White Inside Print & Type 1 Base",38 +bb134pb01c01,Road Sign Old Triangle Inverted with Yield Print & Type 1 Base,38 +bb134pb01c02,Road Sign Old Triangle Inverted with Yield Print & Type 2 Base,38 +bb134pb02c01,Road Sign Old Triangle Inverted with Halt Print & Type 1 Base,38 +bb139pb01c02,Road Sign Old Square with Parking 'P' Print & Type 2 Base,38 +bb139pb02c01,Road Sign Old Square with Man Crossing Print & Type 1 Base,38 +bb140pb01c01,Road Sign Old Round with No Entry Print & Type 1 Base,38 +bb140pb01c02,Road Sign Old Round with No Entry Print & Type 2 Base,38 +bb140pb02c01,Road Sign Old Round with No Parking Print & Type 1 Base,38 +bb140pb03c02,Road Sign Old Round with Triangle Stop Print & Type 2 Base,38 +bb140pb04c01,Road Sign Old Round with White Arrow Right Print & Type 1 Base,38 +bb140pb05c02,Road Sign Old Round with No Parking Blue Print & Type 2 Base,38 +bb140pb06c01,Road Sign Old Round with Left Turn Prohibited Print & Type 1 Base,38 +bb140pb07c01,Road Sign Old Round with White Arrow Left Print & Type 1 Base,38 +bb141ac14,"Electric Wire 4.5V with two lt gray 2-prong Type 1 connectors, 14 Studs Long",45 +bb141c01,"Electric, Connector, 2 Way Male Rounded Narrow Type 1 with Cross-Cut Pins",45 +bb145c05,Hose Soft 3mm D. 5L,30 +bb145c07,Hose Soft 3mm D. 7L / 5.6cm,30 +bb145c09,Hose Soft 3mm D. 9L,30 +bb145c12,Hose Soft 3mm D. 12L,30 +bb146foam,"Foam, Scala, Flower Chain, decorative hanging / fence / human jewelry bracelet",42 +bb15,Homemaker Figure Headgear Hat,27 +bb153,Large Figure Head [Plain],24 +bb153pb01,Head with Danju Print,41 +bb153pb02,Large Figure Head with Jayko Print,41 +bb153pb03,Head with Rascus Print,41 +bb153pb04,Large Figure Head with Santis Print,41 +bb153pb05,Large Figure Head with Vladek Print,41 +bb153pb06,Large Figure Head with King Mathias Print,41 +bb153pb06b,Large Figure Head with King Mathias Print - Gold Line around Face,41 +bb153pb08,Head with Sir Santis Print - Series 2,41 +bb153pb09,"Large Figure Head with Rascus, Sir Print - Series 2",41 +bb153pb10,"Large Figure Head with Jayko, Sir Print - Series 2",41 +bb153pb16,"Large Figure Head with Danju, Sir Print - Series 2 (8791)",41 +bb153pr0011,"Large Figure Head with Vladek, Lord Print",41 +bb153pr0012,Large Figure Head with Karzon Print,41 +bb153pr0013,"Large Figure Head with Adric, Sir Print",41 +bb153pr0014,Large Figure Head with Dracus Print,41 +bb153pr0015,"Large Figure Head with Kentis, Sir Print",41 +bb153pr0017,"Large Figure Head with Jayko, King Print - Series 3",41 +bb158a,"Plastic Flag with Lion with Crown Print, Large (Horizontal)",24 +bb158b,"Plastic Flag with Lion with Crown Print, Small (Vertical)",24 +bb15a,Homemaker Figure Headgear Fire Helmet,27 +bb15b,Homemaker Figure Headgear Cowboy Hat,27 +bb15c,Homemaker Figure Headgear Aviator Helmet,27 +bb15d,Homemaker Figure Headgear Indian Feather,27 +bb15e,Homemaker Figure Headgear Top Hat,27 +bb165pb01,Tile Special 2 x 2 without 1 x 1 Quarter Circle with Scala Flower Print,15 +bb165pb02,Tile Special 2 x 2 without 1 x 1 Quarter Circle with Scala Red Top Print,15 +bb165pb03,Tile Special 2 x 2 without 1 x 1 Quarter Circle with Scala Butterfly Print,15 +bb18,Vehicle Bumper for RC Racer [5599 / 5600],36 +bb181a,Plastic Flag 4 x 9 with Knights' Kingdom II Scorpion Print Part A,38 +bb181b,Plastic Flag 4 x 9 with Knights' Kingdom II Scorpion Print Part B,38 +bb181set,Plastic Flag 4 x 9 with Knights' Kingdom II Scorpion Print [Sheet of bb181a & bb181b],38 +bb188,"Sports Ball, Magnetic, Harry Potter",27 +bb190pb01,"Minifig Cape - Cloth, Scalloped 6 Points with Bat Print",27 +bb190pb02,"Minifig Cape Cloth, Scalloped 6 Points with Spider Print",27 +bb195,"Minifig Cape Cloth, Short (SW Jawa)",27 +bb236,Battery Pack Charger 7.2V,45 +bb236bc01,"Electric, Connector, 2 Way male Rounded Narrow Type 2 with Cross-Cut Pins",45 +bb273,"Electric, Adapter / Transformer, 120V - 10V AC",45 +bb274,"Electric Adapter / Transformer, 7V AC - 1.6 amp",45 +bb276,"Electric Adapter / Transformer, 120V - 12VAC",45 +bb277,Infra Red Transmitter Tower USB Cable,45 +bb278,"Plastic Science & Technology Panels, Complete Sheet [9632 / 9686]",38 +bb293,"Electric, Train 12V Transformer for 110V",45 +bb296pb01,Serpent Neck S-Curve with Fixed Pin with Scales Print (Basilisk),28 +bb298,"String, Elastic",31 +bb298bc52,String Elastic Thin 52L,31 +bb298c82,"String, Elastic 82L",31 +bb300,Garage Door Counterweight - Old without Hinge Pin,16 +bb300lr,Garage Door Counterweight - Old with Hinge Pin Left and Right,16 +bb301,Technic Axle Metal [Short] for Expert Builder Gears,46 +bb301a,"Technic, Axle Metal Short with Axle Cam for Motor, for old Expert Builder Gears",44 +bb305pb01,Road Sign Old Round with Black Bar Print Single Piece Unit,38 +bb305pb02,Road Sign Old Round with No Thoroughfare Print Single Piece Unit,38 +bb305pb03,Road Sign Old Round with No Parking Blue Print Single Piece Unit,38 +bb305pb05,Road Sign Old Round with Maximum Speed 30 Print Single Piece Unit,38 +bb306pb01,Road Sign Old Square with Parking 'P' Print Single Piece Unit,38 +bb307pb01,Road Sign Old Triangle with '+' Print Single Piece Unit,38 +bb307pb05,Road Sign Old Triangle with Roundabout Print Single Piece Unit,38 +bb307pb06,Road Sign Old Triangle with Pedestrian Crossing 2 People Print Single Piece Unit,38 +bb31,Baseplate 8 x 12,1 +bb32,Baseplate 22 x 22 Game Board for Set 1575-2,1 +bb329,Canister Lid with Technic Axle Holes,24 +bb342,Tool - Triangle Ruler,56 +bb369,Plastic Sheet for Dacta Structures Set [9618],17 +bb370,Plastic Stick with 3 holes for Dacta Structures Set,38 +bb393c85,"Electric Wire 4.5V with four Metal 1-prong connectors, 85 Studs long (Old)",45 +bb398,"Electric, Sensor, Color - NXT",45 +bb42,Electric Light & Sound Siren 4 x 2 x 4 Jack Stone,45 +bb458c01pb01,"Orange Body Rock Monster, Toy Story Chunk",13 +bb481,Minifig Skirt Cloth (Grass),27 +bb50,Vehicle Base 6 x 13,36 +bb504,Minifig Hockey Stick,27 +bb527,"Electric Adapter / Transformer, 120V / 10V DC",45 +bb53,"Electric, Train 12V Brick 2 x 4 with Power Pickup for Old Train Motor Type I",45 +bb53b,Train 12V Brick 2 x 4 with Power Pickup for Old Train Motor Type I and Type II,44 +bb542,Large Figure Head Modified Super Heroes Batman Print,41 +bb543c,"Friends Accessories Dish, Rectangular",27 +bb543i,Friends Accessories Cutlery Fork,27 +bb556,"Electric, Sensor, Infrared Seeker, Version 2",45 +bb567,"Baseplate, Raised 40 x 40 x 5 Castle Chess Board Base No Studs",1 +bb57,"Windscreen, Motorcycle Windshield",47 +bb574,"Hero Factory Mask, One Eye Opening (XT4)",41 +bb578,"Minifig Cape Cloth, Pointed Collar",27 +bb57pb01,Windscreen Motorcycle with 'POLICE' Print,47 +bb60,Baseplate 25 x 50,1 +bb65,Belville Horse Saddle without Studs,42 +bb656,"Sensor, Infrared (IR) Link - NXT",45 +bb68,String Net 8 x 16 Rectangle,31 +bb70pb01,HO Scale Accessory Petrol Pumps with Center Light Post and Esso Print,50 +bb71pb01,Road Sign Cantilever Curved Rounded with 'Esso' Print (UK Version),10 +bb790Pr0001,Head Modified SW Protokoll Droid with Large Speckled Eyes and Breathing Mask Pattern,13 +bb80pb01,"Ball, Inflatable Soccer Ball, Mini - Red, Yellow, Blue Pentagons Print",17 +bb80pb02,"Ball, Inflatable Soccer Ball, Mini - Blue Triangles Print",17 +bb81c01,"Electric, Connector, 2 Way Male Squared Narrow Long, No Center Stud - Complete Assembly",45 +bb82pb01,Minifig Helmet SW Clone Trooper Ep.2 Print,27 +bb84pb01,Sports Basketball with Spalding Print,27 +bb85,Swan Neck Trailer Base 4 x 13,36 +bb90,Battery Pack 7.2V,45 +bb92,Train 12V Transformer for 220V Type 2,45 +bb93,"Electric, Connector, 2 Way Male Rounded Wide Long",45 +bb93c16,"Electric Wire 12V with male Rounded Narrow Type 2 Connector and male Rounded Wide Long Connector, 16 Studs Long",45 +bb94,Paper for Set 8094,17 +bb96,Tail Vintage,35 +bb96pb03,Tail Vintage with Sterling Print,35 +bb97,"Electric, Train 4.5V On/Off Switch Brick 2 x 4",45 +bball01,"Ball, Inflatable Basketball, Mini - LEGO Sports and NBA Logo Print",17 +bbcard01,"Tim Duncan, San Antonio Spurs #21",17 +bbcard02,"Ray Allen, Milwaukee Bucks #34",17 +bbcard03gl,"Pau Gasol, Memphis Grizzlies #16 (Gold Leaf)",17 +bbcard04,"Shaquille O'Neal, Los Angeles Lakers #34",17 +bbcard05gl,"Antoine Walker, Boston Celtics #8 (Gold Leaf)",17 +bbcard06,"Tony Parker, San Antonio Spurs #9",17 +bbcard07,"Vince Carter, Toronto Raptors #15",17 +bbcard08gl,"Dirk Nowitzki, Dallas Mavericks #41 (Gold Leaf)",17 +bbcard09,"Gary Payton, Seattle Supersonics #20",17 +bbcard10,"Kobe Bryant, Los Angeles Lakers #8",17 +bbcard11,"Jason Kidd, New Jersey Nets #5",17 +bbcard12,"Toni Kukoc, Milwaukee Bucks #7",17 +bbcard13gl,"Allen Iverson, Philadelphia 76ers #3 (Gold Leaf)",17 +bbcard14,"Tracy McGrady, Orlando Magic #1",17 +bbcard15,"Karl Malone, Utah Jazz #32",17 +bbcard16,"Paul Pierce, Boston Celtics #34",17 +bbcard17,"Jerry Stackhouse, Detroit Pistons #42",17 +bbcard18gl,"Steve Nash, Dallas Mavericks #13 (Gold Leaf)",17 +bbcard19,"Kevin Garnett, Minnesota Timberwolves #21",17 +bbcard20,"Peja Stojakovic, Sacramento Kings #16",17 +bbcard21gl,"Jalen Rose, Chicago Bulls #5 (Gold Leaf)",17 +bbcard22,"Chris Webber, Sacramento Kings #4",17 +bbcard23,"Steve Francis, Houston Rockets #3",17 +bbcard24gl,"Allan Houston, New York Knicks #20 (Gold Leaf)",17 +bdoor01,Door for Slotted Bricks,16 +bear,Bear,42 +bel001,Belville Accessories - Complete Sprue - Hospital,42 +bel001a,Stetoscope,42 +bel001b,Thermometer,42 +bel001c,Belville Accessories Hospital Syringe,42 +bel001d,Otoscope,42 +bel002,"Belville, Clothes Skirt Short, Sunflower Print",42 +bel003,"Belville Accessories - Complete Sprue - Bow, Flower Type 1, Butterfly, Beetle / Ladybug (same as sc003)",42 +bel003c,Belville Accessories Beetle / Ladybug (same as sc003c),42 +belblank,Belville Horse Blanket,38 +belbow1,"Belville, Clothes Accessories Bow Small",42 +beltent,"Belville Tent Cloth with Blue, Yellow and Pink Spots Print",42 +beltent2,Belville Tent Cloth with Starfish and Clams Print,42 +beltent3,Belville Tent Cloth with Pink Stripes Print,42 +belvbaby5,Minifig,13 +belvcloak1,"Belville, Clothes Cloak for King with White and Black Satin Trim and Stiff Collar",13 +belveilpb01,"Belville, Clothes Veil with Gold Flower",13 +belvfair4,Minifig,13 +belvfair6,Minifig,13 +belvfem11,Minifig,13 +belvfem12,"Belville Female - Medic, Light Blue Shorts, White Shirt with EMT Star of Life Print, Light Yellow Hair",13 +belvfem14,Minifig,13 +belvfem16,Minifig,13 +belvfem18,Minifig,13 +belvfem2,Minifig,13 +belvfem20,"Belville Female - White Swimsuit with Dark Pink Bows Print, Light Yellow Hair",13 +belvfem21,Minifig,13 +belvfem23,Minifig,13 +belvfem24,Minifig,13 +belvfem26,Minifig,13 +belvfem3,Minifig,13 +belvfem36,Minifig,13 +belvfem37,Minifig,13 +belvfem39b,"Belville Figure Straight Arm Female with BtPurple Feet, Blouse with White Lace Edging, Lots of Eyeshadow, and Tan Hair",13 +belvfem42,"Belville Female - White Shorts, Light Green Shirt with Shells Necklace, Long Light Yellow Braided Hair",13 +belvfem44,Minifig,13 +belvfem46,Minifig,13 +belvfem51,Minifig,13 +belvfem53,"Belville Female - Girl with Dark Pink Swimsuit with Starfish and Shells Print, Light Yellow Hair Braided",13 +belvfem54,"Belville Female - Sky Blue Top with Scarf and Spider Print, Magenta Legs, Sand Blue Hair #5962",13 +belvfem57,Belville Female - Orange Top with Floral Garland with Butterfly and Ribbon Print,13 +belvfem58,"Belville Child - Pink Legs, White Shoes, Yellow Top with Flowers Print [5854]",13 +belvfem59,"Belville Child - Blue Legs, Black Boots, White Top with Apples Print [5854]",13 +belvfem6,Belville Female - Princess Paprika Dark Pink Top Lace Inset #5856,13 +belvfem60,"Belville Female - Pink Swimsuit with Square Neck, Dark Pink Bows in Corners, Long Yellow Hair Braided, Bare Feet",13 +belvfem61,"Belville Female - White Swimsuit with Shells and Starfish Print, Black Hair, Pink Shoes",13 +belvfem62,Belville Female - Girl with Black Ponytail and Orange Shirt,13 +belvfem63,Belville Female - Girl with Brown Hair and Pink Shirt,13 +belvfem64,Minifig,13 +belvfem67,"Belville Female - White Swimsuit with Dark Pink and Light Orange Stripes, Short Black Hair, White Shoes",13 +belvfem68,Minifig,13 +belvfem69,Minifig,13 +belvfem71b,"Belville Female - Girl with Bright Pink Top, Magenta Shoes and Long Light Yellow Hair, Dress, Crown",13 +belvfem78,"Belville Female - Horse Rider, White Shorts, Black Shirt with Gold Buttons and Collar, Black Boots, Dark Orange Ponytail (7587)",13 +belvfem79,"Belville Female - White Top with Purple Flower Neckline, Light Yellow Hair",13 +belvfem8,Minifig,13 +belvfem80,"Female - Horse Rider, White Shorts, Red Shirt, Light Yellow Hair Ponytail",42 +belvmale1,Minifig,13 +belvmale12,Minifig,13 +belvmale13,Minifig,13 +belvmale15,"Belville Male - Brown Hair, White Shirt with Anchor Print, Blue Pants, White Shoes",13 +belvmale16,Minifig,13 +belvmale17,"Belville Male - Blue Swimsuit, Brown Hair (Child / Boy)",13 +belvmale2,Minifig,13 +belvmale5,Minifig,13 +belvmale6,"Belville Male - White Pants, White Shirt with Badge, Pocket and 2 Pens, Black Hair",13 +belvmale7,Minifig,13 +belvmale9,"Belville Male - Light Blue Shorts, White Shirt with Ship Logo, Black Hair",13 +belvskirt01,"Belville, Clothes Skirt Long, Sheer with Jewel",13 +belvskirt02,"Belville, Clothes Skirt Short, Broadcloth",13 +belvskirt03,"Belville, Clothes Skirt Long with Check Print & Apron with Spider Print",13 +belvskirt11,"Belville, Clothes Skirt Long, Satin with White Snowflakes Print",13 +belvskirt12,"Belville, Clothes Skirt Short, Clam and Starfish Print, Child",13 +belvskirt13,"Belville, Clothes Skirt Long, Pinked Edges and Check Print Apron with Pocket",13 +belvskirt15,"Belville, Clothes Skirt Short, Clam and Starfish Print on White, Adult",13 +belvskirt18,"Belville, Clothes Skirt Long, Roses Print with 3 Rosettes & Lace Hem, with Sheer Layer",13 +belvskirt20,"Belville, Clothes Skirt Long, Rose Print Border and Sheer Purple Layer with 2 Pink Roses",13 +belvskirt24,"Belville, Clothes Skirt Long, Sheer with Golden Layer and Pink Jewel #5877",13 +bfloat3c01,Boat Hull Unitary 38 x 10 x 5 2/3 Complete Assembly,35 +bfloat4c01,Boat Hull Unitary 52 x 12 x 6 1/3 Complete Assembly,35 +bfp001,"Basic Figure Finger Puppet Female [Red, Black Hair]",13 +bfp002,"Basic Figure Finger Puppet Male [Blue, Brown Hair]",13 +bigcat01c01pb01,Duplo Lion Adult Female,4 +bin01,Dacta Storage Bin Small,17 +bin02,"Storage Bin with Retractable Handle on Top, Reinforced Short Sides, Studs on Bottom - LEGO Logo Print",17 +bin03,Dacta Storage Bin Large,17 +bin04,Dacta Storage Bin Extra Small,17 +bin05,Dacta Storage Bin Medium [New Style],17 +bin06,Storage Bin with Retractable Handle on Top - LEGO System Print,17 +bin07,Dacta Storage Bin 16" x 12.5" x 4.5",17 +bin1960,Storage Bin for Set 1960,17 +biocom13uk,Bionicle #13 September 2003 Unleash the Rahkshi,17 +bion013c01,Bionicle Weapon Inika Light-up Energized Ice Sword,41 +bion014c01,Bionicle Weapon Inika Light-up Laser Crossbow (8731),41 +biosampler,Bionicle Adventures Sampler Book,17 +blankie03,Duplo Cloth Blanket 5 x 6,4 +bp02a,Baseplate 14 x 14 Rounded Corners,1 +bslot01,"Brick 1 x 2 without Bottom Tube, Slotted (with 1 slot)",11 +bslot02,"Brick 2 x 2 without Bottom Tubes, Slotted (with 1 slot)",11 +bslot02a,"Brick 2 x 2 without Bottom Tubes, Slotted (with 2 slots, opposite)",11 +bslot03,"Brick 2 x 3 without Bottom Tubes, Slotted (with 1 slot)",11 +bslot04,"Brick 2 x 4 without Bottom Tubes, Slotted (with 1 slot)",11 +bslot08,"Brick 2 x 8 without Bottom Tubes, Slotted (with 1 slot)",11 +bslot12,"Brick 2 x 12 without Bottom Tubes, Slotted (with 1 slot)",11 +bslot14,"Brick 2 x 14 without Bottom Tubes, Slotted (with 1 slot)",11 +bslot16,"Brick 4 x 4 Corner without Bottom Tubes, Slotted (with 1 slot)",11 +buckbeak,Hippogriff 'Buckbeak' Body,28 +buckbeakc01,"Hippogriff 'Buckbeak', Complete Assembly",28 +bwindow01,Window 4 Pane for Slotted Bricks,16 +bwindow02,Window 6 Pane for Slotted Bricks,16 +bwindow03,Window 8 Pane for Slotted Bricks,16 +carbasemi,Minitalia Brick Special 16 x 6 with 4 wheels,5 +carbasemia,Minitalia Brick Special 16 x 6 with 4 Wheels for 132-old Tires,5 +carpet01,Belville Cloth Rug Oriental / Carpet 9 x 15,42 +carpet02,"Belville Cloth Rug, 7 x 12, Yellow Squares and Cherries Print",42 +case1,Storage Case with LEGO Logo (305 x 264 x 90 mm),17 +case10,Storage Case Znap,17 +case1030c01,Dacta Storage Case with Sliding Clear Cover and Insert (set 1030),17 +case1032c01,Dacta Storage Case with Sliding Clear Cover and Insert (set 1032),17 +case11,Technic Cybermaster Storage Case,17 +case4,Storage Case with Two Latches 30 x 42 x 11 studs,17 +case7,Storage Case with Molded Handle and Panel Opening,17 +case8,"Storage Case with Molded Handle and Panel Opening, Small 'Made In Canada for Samsonite'",17 +case9,Storage Case with Molded Internal Tray with Four Compartments,17 +cdoor01,"Door 1 x 2 x 4, with Glass for Slotted Bricks",16 +chessboard,Chess Board,17 +clik01,"Clikits Figure Star - Black Hair Streaked with Purple, Purple Dress with Sash, White Boots",13 +clik02,"Clikits Figure Daisy - Brown Hair, Orange Top, Aqua Skirt, Dark Pink Sandals",13 +clikits001pb01,"Clikits Icon, Heart 2 x 2 Large with Pin, Small Offset Heart Print",48 +clikits001pb02,"Clikits Icon, Heart 2 x 2 Large with Pin, Magenta Heart Cutout Print",48 +clikits001pb03,"Clikits Icon, Heart 2 x 2 Large with Pin, Dark Pink Stripes Print",48 +clikits001pb04,"Clikits Icon, Heart 2 x 2 Large with Pin, Silver Stars Print",48 +clikits001pb05,"Clikits Icon, Heart 2 x 2 Large with Pin, White Spots Print",48 +clikits001pb06,"Clikits Icon, Heart 2 x 2 Large with Pin, White Heart Center Print",48 +clikits001pb07,"Clikits Icon, Heart 2 x 2 Large with Pin, Black 'Love' Print",48 +clikits001pb08,"Clikits Icon, Heart 2 x 2 Large with Pin, Black Bow Print",48 +clikits001pb09,"Clikits Icon - Large Heart with Pin, Black Bow and 3 Small Dark Pink Hearts Print",48 +clikits001pb10,"Clikits Icon, Heart 2 x 2 Large with Pin, Silver Heart Cutout Print",48 +clikits004,"Clikits Icon, Flower 10 Petals 2 x 2 Small with Pin",48 +clikits005,"Clikits Icon, Flower 10 Petals 2 x 2 Small with Hole",48 +clikits006pb01,"Clikits Icon, Star 2 x 2 Large with Pin, Blue Stripes Print",48 +clikits006pb02,"Clikits Icon, Star 2 x 2 Large with Pin, Silver Star Center Print",48 +clikits006pb03,"Clikits Icon, Star 2 x 2 Large with Pin, White Star Cutout Print",48 +clikits006pb04,"Clikits Icon, Star 2 x 2 Large with Pin, Silver Star Cutout Print",48 +clikits006pb05,"Clikits Icon, Star 2 x 2 Large with Pin, Silver Diagonal Stripes Print",48 +clikits009,"Clikits Bead, Small with Hole",48 +clikits010,"Clikits Cord, Jelly String with 2 Caps - 165mm - side attachment",48 +clikits011,"Clikits Frame, Square with 3 x 3 Holes Arrangement",48 +clikits011pb01,"Clikits Frame, Square with 3 x 3 Holes Arrangement, color graduating to Bright Green",48 +clikits012,"Clikits Frame, Square Center Pane, 4 x 4",48 +clikits013pb01,"Clikits Icon, Star 2 x 2 Small with Pin, Blue Stripes Print",48 +clikits013pb02,"Clikits Icon, Star 2 x 2 Small with Pin, Black Star and 3 Dark Red Stripes Print",48 +clikits013pb03,"Clikits Icon, Star 2 x 2 Small with Pin, Yellow Spots as Starfish Print",48 +clikits013pb04,"Clikits Icon, Star 2 x 2 Small with Pin, Yellow Spots in Circle Print",48 +clikits015,"Clikits Icon, Square 2 x 2 Small with Pin",48 +clikits015a,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'A' Print",48 +clikits015ac,"Clikits Icon, Square 2 x 2 Small with Pin and Silver Danish 'A' Circle Print",48 +clikits015ae,"Clikits Icon, Square 2 x 2 Small with Pin and Silver Danish 'AE' Print",48 +clikits015b,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'B' Print",48 +clikits015c,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'C' Print",48 +clikits015d,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'D' Print",48 +clikits015e,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'E' Print",48 +clikits015f,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'F' Print",48 +clikits015g,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'G' Print",48 +clikits015h,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'H' Print",48 +clikits015i,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'I' Print",48 +clikits015j,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'J' Print",48 +clikits015k,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'K' Print",48 +clikits015l,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'L' Print",48 +clikits015m,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'M' Print",48 +clikits015n,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'N' Print",48 +clikits015o,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'O' Print",48 +clikits015osla,"Clikits Icon, Square 2 x 2 Small with Pin and Silver Danish 'O' Slash Print",48 +clikits015ou,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'O' Umlaut Print",48 +clikits015p,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'P' Print",48 +clikits015q,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'Q' Print",48 +clikits015r,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'R' Print",48 +clikits015s,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'S' Print",48 +clikits015t,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'T' Print",48 +clikits015u,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'U' Print",48 +clikits015uu,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'U' Umlaut Print",48 +clikits015v,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'V' Print",48 +clikits015w,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'W' Print",48 +clikits015x,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'X' Print",48 +clikits015y,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'Y' Print",48 +clikits015z,"Clikits Icon, Square 2 x 2 Small with Pin and Silver 'Z' Print",48 +clikits016pb01,"Clikits Icon, Square 2 x 2 Large with Pin, Silver Square Print",48 +clikits016pb02,"Clikits Icon, Square 2 x 2 Large with Pin, White Snowflake Print",48 +clikits016pb03,"Clikits Icon, Square 2 x 2 Large with Pin, Silver Stripes Print",48 +clikits016pb04,"Clikits Icon, Square 2 x 2 Large with Pin, Silver Square Cutout Print",48 +clikits016pb05,"Clikits Icon, Square 2 x 2 Large with Pin, Silver Square with Cutout and Offset Small Silver Square Print",48 +clikits017,Clikits Hair Clip Metal with Hole,48 +clikits018,"Clikits Cord, Jelly String with 2 Caps - 375mm - top attachment",48 +clikits021,Clikits Part Separator,48 +clikits022,"Clikits Icon, Flower 5 Petals 2 x 2 Small with Pin",48 +clikits023,"Clikits Icon, Flower 5 Petals 2 x 2 Small with Pin, Trans-Dark Pink Center Facet Gem",48 +clikits024,"Clikits Icon, Flower 5 Petals 2 x 2 Small with Hole",48 +clikits025,"Clikits Bead, Ring Thin Large with Hole",48 +clikits026,"Clikits Icon, Flower 10 Petals 2 x 2 Large with Pin, Trans-Neon Orange Center Cabochon",48 +clikits027pb02,"Clikits Icon, Heart 2 x 2 Small with Pin, Silver Star Center Print",48 +clikits028,"Clikits Icon, Round 2 x 2 Small Thin with Pin",48 +clikits028pb01,"Clikits Icon, Round 2 x 2 Small Thin with Pin, Orange Stripes Print",48 +clikits028pb02,"Clikits Icon, Round 2 x 2 Small Thin with Pin, Reddish Orange Stripes Print",48 +clikits030,"Clikits Icon, Flower 10 Petals 2 x 2 Large with Pin, Trans-Yellow Center Cabochon",48 +clikits032,"Clikits Flexy Film, Leaf 5 x 3",48 +clikits033,"Clikits Flexy Film, Leaf 6 x 4",48 +clikits034,"Clikits Flexy Film, Flower 10 Petals 3 x 3",48 +clikits035,"Clikits Flexy Film, Flower 10 Petals 4.5 x 4.5",48 +clikits036,"Clikits Flexy Film, Flower 10 Petals 6 x 6",48 +clikits037,"Clikits Cord, Elastic Loop 6 x 6 with 13mm metal band (Hair Band)",48 +clikits038,"Clikits Icon, Round 2 x 2 Small with Hole [Frosted]",48 +clikits040,"Clikits Cord, Jelly String with 2 Caps - 170mm - top attachment",48 +clikits041,"Clikits Cord, Jelly String with 2 Caps - 235mm - side attachment",48 +clikits044,"Clikits Sorting Tray 5 Compartment, Bottom",17 +clikits045,"Clikits Sorting Tray 5 Compartment, Lid",17 +clikits046,"Clikits Flexy Film, Heart 3 x 3",48 +clikits047,"Clikits Icon, Flower 5 Petals 2 x 2 Small with Pin, Trans-Medium Blue Center Facet Gem",48 +clikits048,"Clikits Icon, Flower 5 Petals 2 x 2 Small with Pin, Trans-Yellow Center Facet Gem",48 +clikits049,"Clikits Cord, Jelly String with 2 Caps - 375mm - Side Attachment",48 +clikits052,Clikits Tote (29 x 23 x 7 Studs),48 +clikits053,"Clikits Flexy Film, Flower 5 Petals 3 x 3",48 +clikits054,"Clikits Flexy Film, Flower 5 Petals 4.5 x 4.5",48 +clikits055,"Clikits Flexy Film, Flower 5 Petals 6 x 6",48 +clikits056,"Clikits Flexy Film, Flower 5 Petals 7.5 x 7.5",48 +clikits057,"Clikits Flexy Film, Strip 2 x 14 with Rounded Ends and 5 Holes",48 +clikits058,"Clikits Flexy Film, Strip 2 x 8 with Rounded Ends and 3 Holes",48 +clikits059,"Clikits Cloth, Flower Puffy 5 x 5 (reverses to complementary color)",48 +clikits060,"Clikits Cloth, Heart Puffy 5 x 5",48 +clikits061,"Clikits Flexy Film, Star 3 x 3",48 +clikits062,"Clikits Flexy Film, Star 5 x 5",48 +clikits063,"Clikits Paper, Icon Accent, Square 3 x 3 Special Effect Surface",48 +clikits064,"Clikits Paper, Icon Accent, Star 5 x 5 Special Effect Surface",48 +clikits065,"Clikits Paper, Icon Accent, Square 4 x 4 Special Effect Surface",48 +clikits067,"Clikits Plastic, Rectangle 14 x 8.5 with Rounded Corners and 7 Holes",48 +clikits068,"Clikits Frame, Square Center Pane, 10 x 10",48 +clikits069,"Clikits Frame, Square with 5 x 5 Holes Arrangement",48 +clikits069pb01,"Clikits Frame, Square with 5 x 5 Holes Arrangement, color graduating to Dark Pink",48 +clikits069pb02,"Clikits Frame, Square with 5 x 5 Holes Arrangement, color graduating to Bright Green",48 +clikits070,"Clikits Sorting Tray 9 Compartment, Lid",17 +clikits071,"Clikits Sorting Tray 9 Compartment, Bottom",17 +clikits072,"Clikits Connector, Rod 1 x 25 with 9 Holes (cross piece for mobile)",48 +clikits073,"Clikits Cord, Jelly String with 2 Caps - 235mm - one top and one side attachment",48 +clikits074,"Clikits Plastic, Rectangle 5 x 8.5 with Rounded Corners and 6 Holes",48 +clikits075,"Clikits Flexy Film, Flower 10 Petals 7 x 7",48 +clikits076,"Clikits Paper, Insert 4 x 4 for Frame clikits011, Flowers Image",48 +clikits077pb01,"Clikits Bracelet, Bangle with Hole, Fits Child's Wrist, color graduating to Bright Green",48 +clikits078,"Clikits Flexy Film, Star 4 x 4 with Raised Border",48 +clikits080,"Clikits Flexy Film, Heart 4 x 4 with Raised Border",48 +clikits081,"Clikits Flexy Film, Flower 10 Petals 4 x 4 with Raised Border",48 +clikits082,"Clikits Connector, L-Bent with 2 Pins",48 +clikits084,"Clikits Icon, Flower 10 Petals 2 x 2 Large with Hole",48 +clikits085,Clikits Ring 3.5 x 3.5 (for Keys),48 +clikits086,"Clikits Icon, Round 2 x 2 Large with Pin",48 +clikits086pb01,"Clikits Icon, Round 2 x 2 Large with Pin, White Circle with Heart Cutout Print",48 +clikits086pb02,"Clikits Icon, Round 2 x 2 Large with Pin, Soccer Ball Print",48 +clikits086pb03,"Clikits Icon, Round 2 x 2 Large with Pin, Black Star on Silver Print",48 +clikits086pb04,"Clikits Icon, Round 2 x 2 Large with Pin, Number 1 Print",48 +clikits086pb05,"Clikits Icon, Round 2 x 2 Large with Pin, Flower Dark Pink Print",48 +clikits086pb06,"Clikits Icon, Round 2 x 2 Large with Pin, Flower Yellow Print",48 +clikits087pb01,"Clikits Icon, Rectangle 3L with Pin, Palm Tree and Sunset Print",48 +clikits087pb02,"Clikits Icon, Rectangle 3L with Pin, Silver 'Best' Print",48 +clikits087pb03,"Clikits Icon, Rectangle 3L with Pin, Silver 'Friends' Print",48 +clikits088,"Clikits Paper Clip / Hair Clip Plastic, 1 Hole",48 +clikits089,"Clikits Icon, Flower 10 Petals 4.5 x 4.5 with 2 Pins",48 +clikits090,"Clikits Connector, Straight 2 x 14 with 5 Holes",48 +clikits091,"Clikits Connector, L-Bent 6 x 6 with 4 Pins",48 +clikits092,"Clikits Connector, Straight 2 x 5 with 2 Pins",48 +clikits097,"Clikits Cord, Jelly String with 2 Caps - 470mm - top attachment",48 +clikits098,"Clikits Cord, Jelly String with 2 Caps - 155mm - top attachment",48 +clikits099,"Clikits Icon, Butterfly 2 x 2 with Hole",48 +clikits100pb01,"Clikits Icon, Butterfly 2 x 2 with Pin, Purple Body & Dark Pink Wings Print",48 +clikits100pb02,"Clikits Icon, Butterfly 2 x 2 with Pin, Purple Body & Yellow Wings Print",48 +clikits100pb03,"Clikits Icon, Butterfly 2 x 2 with Pin, Yellow Body & Dark Pink on Wings Print",48 +clikits100pb04,"Clikits Icon, Butterfly 2 x 2 with Pin, Dark Pink Body & Wings Print",48 +clikits101,Clikits Tote (22 x 25 x 6 Studs),48 +clikits102,"Clikits Paper, Party Invitation 'Star' holding Present and Balloon",48 +clikits103,"Clikits Pouch with Zipper and Pull, 5 Holes",48 +clikits107,"Clikits Icon, Flower 10 Petals 2 x 2 Large with Pin, Silver Center and Petal Highlights",48 +clikits107pb01,"Clikits Icon, Flower 10 Petals 2 x 2 Large with Pin, Trans-Clear Center Cabochon",48 +clikits108,"Clikits Magnet, Icon Square 2 x 2 Large with Pin",48 +clikits109a,"Clikits Ring, Wide Band with Hole in Top, Fits Child's Finger, Pearlescent Light Pink Layer",48 +clikits110,"Clikits Paper, Icon Accent, Star 3 x 3 Special Effect Surface",48 +clikits111,"Clikits Bracelet, Jelly 6 x 6",48 +clikits112pb01,"Clikits Icon, Rectangle 3L with Hole, Silver 'Best' Print",48 +clikits112pb02,"Clikits Icon, Rectangle 3L with Hole, Silver 'Friends' Print",48 +clikits113,"Clikits Plastic, Rectangle 2 x 5 with Rounded Ends and 2 Holes",48 +clikits114,"Clikits Container Box, Square with 1 Hole - Bottom",48 +clikits115,"Clikits Container Box, Square with 1 Hole - Lid",48 +clikits116,"Clikits Paper, Insert for Frame (2005 Advent Calendar, Day 11)",48 +clikits117,"Clikits Paper, Gift Tag 1 (2005 Advent Calendar, Day 12)",48 +clikits118,"Clikits Paper, Gift Tag 2 (2005 Advent Calendar, Day 16)",48 +clikits119,"Clikits Paper, Gift Tag 3 (2005 Advent Calendar, Day 23)",48 +clikits120,"Clikits Cord, Jelly String with 2 Caps - 110mm - Trans Medium Blue side attachment",48 +clikits122,"Clikits Icon, Shell 2 x 2 with Pin",48 +clikits122pb01,"Clikits Icon, Shell 2 x 2 with Pin, Bright Light Blue Highlights Print",48 +clikits122pb02,"Clikits Icon, Shell 2 x 2 with Pin, Bright Light Orange Highlights Print",48 +clikits124,Clikits Ring 3 x 3 (Paper Pad Fastener),48 +clikits125,"Clikits Connector, Square 8 x 8 with 9 Holes",48 +clikits126,"Clikits Paper, Memo Pad with 3 Holes (Set 7526)",48 +clikits127,"Clikits Cord, Jelly String with 2 Caps - 110mm - Trans Orange Top attachment and Trans Dark Pink Side attachment",48 +clikits129,"Clikits Connector, Cross with 4 Pins",48 +clikits130,"Clikits Paper, Insert 10 x 10 for Frame clikits069, 'Daisy' Winking Image",48 +clikits134,Clikits Jewelry Box (3-level),17 +clikits135pb01,"Clikits Icon, Flower 5 Pointed Petals 2 x 2 Large with Pin, Dark Pink Petal Highlights",48 +clikits135pb02,"Clikits Icon, Flower 5 Pointed Petals 2 x 2 Large with Pin, Pink Petal Highlights",48 +clikits137,"Clikits Cord, Jelly String with 2 Caps - 110mm - Side Attachment",48 +clikits138,"Clikits Paper, Insert 4 x 4 for Frame clikits011, Hawaiian Surfer Girl Image",48 +clikits139,"Clikits Paper, Insert 10 x 10 for Frame clikits069, 'Daisy' Hawaiian Hula Image",48 +clikits140,"Clikits Mirror Insert 10 x 10, fits Frame clikits069",48 +clikits141,"Clikits Icon, Flamingo 2 x 8 with 2 Pins",48 +clikits142pb01,"Clikits Flower, 6 x 6 x 2/3, Medium Blue Petal Highlights",48 +clikits142pb02,"Clikits Flower, 6 x 6 x 2/3, Dark Pink Petal Highlights",48 +clikits144,"Clikits Flexy Film, Leaf 5 x 3 with Cutouts",48 +clikits145,"Clikits Flexy Film, Leaf 6 x 4 with Cutouts",48 +clikits146,Clikits Tote (25 x 23 x 7 Studs) with 25 Holes,48 +clikits147,"Clikits Paper, Insert 10 x 10 for Frame clikits069, 'Star' Image",48 +clikits148,"Clikits Paper, Icon Accent, Star 8 x 8 Special Effect Surface",48 +clikits149,"Clikits Plastic, Square 15 x 15 with Rounded Corners and 16 Holes",48 +clikits150,"Clikits Paper, Insert 4 x 4 for Frame clikits011, 'Heart' with Pink Circles Background Image",48 +clikits151,"Clikits Paper, Insert 10 x 10 for Frame clikits069, 'Heart' with Light Green Background Image",48 +clikits152,"Clikits Flexy Film, Circle 3 x 3",48 +clikits153,"Clikits Flexy Film, Circle 4 x 4",48 +clikits154,"Clikits Hairbrush 18 x 5, 3 Holes in Handle, Embossed 'Clikits' on Back",48 +clikits155,"Clikits Container Utensil Holder, Cube 9 x 9 x 6, 9 Holes Each Side",48 +clikits156,"Hole Punch Tool, Clikits",17 +clikits157,"Clikits Paper, 18 x 12 'Star' with Cityscape Image",48 +clikits158,"Clikits Paper, 18 x 12 'Star' with Starry Background Image",48 +clikits159,"Clikits Paper, Door Hanger, 'Star' with Cityscape Image",48 +clikits160,"Clikits Paper, Notepad 'Hearts'",48 +clikits161,"Clikits Paper, Bookmark 'Hearts'",48 +clikits162,"Clikits Container Box, Rectangle with 2 x 7 Holes Arrangement - Hinged",7 +clikits163,"Clikits Flexy Film, Heart 4 x 4",48 +clikits164,"Clikits Connector, C-Shape 8 x 4 with 2 Pins",48 +clikits165,"Clikits Paper Fastener 2 x 4 Spring Clip, 1 Hole",48 +clikits166,Memo Pad - Clikits Daisy Image,17 +clikits167,"Clikits Connector, Square with 5 x 5 Holes Arrangement (Frame Back)",48 +clikits168,"Letter Set Envelope, Square 11 x 11, Clikits Daisy & Stripe Print",17 +clikits171,"Clikits Paper, Insert 4 x 4 for Frame clikits011, 'Heart' Relaxing",48 +clikits172,"Clikits Paper, Insert 4 x 4 for Frame clikits011, 'Daisy'",48 +clikits174,"Clikits Cord, Jelly String with 2 Caps - 375mm with 12 Frosted Trans-Pink Beads - top attachment",48 +clikits175,"Clikits Pouch with Zipper and Pull, 3 x 5 Holes Arrangement",48 +clikits177,"Clikits Connector, Domed 1 x 2 x 1 with Hole (Pencil Connector)",48 +clikits178,"Clikits Paper, Insert 10 x 10 for Frame clikits069, 'Daisy' with Surfboard",48 +clikits179,"Clikits Paper, Insert 10 x 10 for Frame clikits069, Flamingos Image",48 +clikits180,"Clikits Paper, Notepad T-Shirt Shape",48 +clikits181,Clikits Container Cube Drawer Unit (uses drawers clikits182),48 +clikits182,Clikits Container Cube Drawer (for use with clikits181),48 +clikits184,"Pencil, Clikits Aqua with Flamingo Print",17 +clikits185,"Clikits Plastic, Circle 10 x 10 (Pencil Holder Base)",48 +clikits186,"Clikits Plastic, Rectangle 30 x 12 with 2 Slots & Tabs and 9 Holes (Pencil Holder Cylinder)",48 +clikits187,"Clikits Connector, Ring 10 x 10 x 1 for Pencil Holder",48 +clikits189,"Clikits Cord, Jelly String with 2 Caps - 110mm - Top Attachment",48 +clikits190,"Clikits Hair Clip Plastic, Long, 2 Holes",48 +clikits190a,"Clikits Hair Clip Plastic, Long, 2 Holes, Pearlescent Light Pink Layer",48 +clikits192,"Clikits Flexy Film, Leaf 3 x 2",48 +clikits193,"Clikits Ribbon, Oval, 2 Square Holes, Folds into Bow",48 +clikits194,"Clikits Cord, Jelly String with 2 Caps - 155mm with 6 Round Pearl White Beads - top attachment",48 +clikits195,"Clikits Cord, Jelly String with 2 Caps - 375mm with 6 Round Pearl White Beads - top attachment",48 +clikits196,"Clikits Icon, Round 2 x 2 Small with Hole, 2 Linked",48 +clikits197,"Clikits Mirror Insert 4 x 4, fits Frame clikits011",48 +clikits198,"Clikits Paper, Insert 4 x 4 for Frame clikits011, 'Daisy' holding a Daisy",48 +clikits199,"Clikits Paper, Insert 10 x 10 for Frame clikits069, 'Daisy' holding a Daisy",48 +clikits200,"Clikits Flexy Film, Square 4 x 4",48 +clikits201,"Clikits Flexy Film, Square 3 x 3",48 +clikits202,"Clikits Flexy Film, Star 6 x 6",48 +clikits204,"Clikits Paper, Insert 4 x 4 for Frame clikits011, Christmas Tree",48 +clikits205,"Clikits Paper, Insert 4 x 4 for Frame clikits011, Christmas Tree with House",48 +clikits206,"Clikits Flexy Film, Heart 5 x 5",48 +clikits207,"Clikits Paper, Insert 4 x 4 for Frame clikits011, 'Heart' holding a Cake and a Balloon",48 +clikits208,"Clikits Paper, Party Favor Bag with Hearts Print",48 +clikits209,"Clikits Paper, Party Invitation 'Heart' holding Cake and Balloon",48 +clikits210,"Clikits Paper, Party Favor Bag with Flowers Print",48 +clikits211,"Clikits Paper, Party Invitation 'Daisy' holding Card and Balloon",48 +clikits212,"Clikits Paper, Insert 4 x 4 for Frame clikits011, 'Daisy' holding a Card and a Balloon",48 +clikits214,"Clikits Paper, Party Favor Bag with Stars Print",48 +clikits215,"Clikits Paper, Insert 4 x 4 for Frame clikits011, 'Star' holding a Present and a Balloon",48 +clikits216,"Clikits Paper, Gift Tag 4 (2004 Advent Calendar, Day 7)",48 +clikits217,"Clikits Paper, Gift Tag 5 (2004 Advent Calendar, Day 14)",48 +clikits218,"Clikits Paper, Gift Tag 5 (2004 Advent Calendar, Day 21)",48 +clikits221,"Clikits Paper, Icon Accent, Heart 5 x 5 Special Effect Surface",48 +clikits222,"Clikits Paper, Icon Accent, Heart 3 x 3 Special Effect Surface",48 +clikits223,"Clikits Paper, Icon Accent, Heart 4 x 4 Special Effect Surface",48 +cloth02,"Storage Cloth [Blue Denim, Red Drawstrring]",17 +cloth4,Belville Cloth Bed Veil - Large,38 +cloth5,Belville Cloth Bed Veil - Small,42 +col161,Mr. Gold,13 +compass,Compass Key Chain ,17 +cr2032,Battery 3V Lithium Coin Cell,17 +cre001,"Tina, Orange Torso, Light Gray Legs",13 +cre002,"Jake, Light Gray Torso, Brown Legs",13 +cre003,"Max, Blue Torso, Black Legs",13 +cre004,"Max, Black Torso, Light Gray Arms, Blue Legs",13 +cre005,"Tina, White Torso and Red Legs",13 +cre006,"Lee, Orange Hair, Black Legs, Black and White Torso",13 +cre010,"Tina, Red Torso and Red Legs",13 +cre011,"Max, Red Torso, Black Legs",13 +create00,Creationary Game Card Deck (Cards 1-96),17 +create100,Creationary Game Card 100 Cobra,17 +create101,Creationary Game Card 101 Dolphin,17 +create102,Creationary Game Card 102 Wolf,17 +create103,Creationary Game Card 103 Gorilla,17 +create104,Creationary Game Card 104 Hammerhead Shark,17 +create105,Creationary Game Card 105 Jelly Fish,17 +create106,Creationary Game Card 106 Koala Bear,17 +create107,Creationary Game Card 107 Manta Ray,17 +create108,Creationary Game Card 108 Orangutan,17 +create109,Creationary Game Card 109 Orca,17 +create110,Creationary Game Card 110 Walrus,17 +create111,Creationary Game Card 111 Polar Bear,17 +create112,Creationary Game Card 112 Praying Mantis,17 +create113,Creationary Game Card 113 Pteranodon,17 +create114,Creationary Game Card 114 Sea Lion,17 +create115,Creationary Game Card 115 Skunk,17 +create116,Creationary Game Card 116 Snow Leopard,17 +create97,Creationary Game Card 97 Piranha,17 +create98,Creationary Game Card 98 Centipede,17 +create99,Creationary Game Card 99 Chimpanzee,17 +crutch,Belville Child's Crutch,42 +cwindow01,"Window 1 x 6 x 4 Panorama, with Glass for Slotted Bricks",16 +cwindow02,"Window 1 x 6 x 3 3-Pane, with Glass for Slotted Bricks",16 +cwindow03,"Window 1 x 6 x 3 Shuttered, with Glass for Slotted Bricks",16 +cwindow04,"Window 1 x 4 x 3, with Glass for Slotted Bricks",16 +cwindow05,"Window 1 x 3 x 3, with Glass for Slotted Bricks",16 +daptera1,Pteranodon [Complete Assembly],28 +daraptor1,Dino Raptor - Complete Assembly,28 +datrex1,Tyrannosaurus Rex with Light-Up Eyes [Complete Assembly],28 +decbase,Train Track 12V Decoupler Base,36 +dt001,"Duplo, Toolo Tool Screwdriver",4 +dupcat1pb01,"Duplo Cat, Kitten Striped with White Chest and Mouth Print",4 +dupcloth01,Duplo Cloth 4 x 8 with Purple Bee Print,4 +dupcontrol,"Duplo, Toolo Remote Control Unit for RC Dozer (2949)",4 +dupdoor1,Duplo Door / Window with Porthole,16 +dupfig001,"Duplo 2 x 2 x 2 Figure Brick Early, Dog on Black Base, White Head, looks Left",13 +dupfig008,"Duplo 2 x 2 x 2 Figure Brick Early, Female on Green Base, Fabuland Brown Hair, Eyelashes, Nose",4 +dupfig009,"Duplo 2 x 2 x 2 Figure Brick Early, Male on Blue Base, Black Hair, Moustache",4 +dupfig015,"Duplo 2 x 2 x 2 Figure Brick Early, Male on Blue Base, Brown Hair, Cheek Freckles",13 +dupfig035,"Duplo 2 x 2 x 2 Figure Brick Early, Male on Black Base, Black Police Hat, Small Smile",13 +duphalfarch,"Duplo, Brick Arch Half 2 x 3 x 3",4 +dupheli,Duplo Helicopter Body (without Skids),4 +duphelipb02,Duplo Helicopter Body (without Skids) with Blue Base and 'POLICE' Print,4 +duphelipb03,Duplo Helicopter Body (without Skids) with Green Base and 'POLICE' Print,4 +duphelipb04,Duplo Helicopter Body (without Skids) with White Base and 'POLICE' Print,4 +dupjets,"Duplo, Toolo Racer Engine Rockets Light & Sound Unit",4 +duploracer02,Duplo Car Formula One with Blue Bottom and Yellow Number 2 Print,4 +dupmc3pb02,"Duplo Motorcycle with Rubber Wheels, Windscreen and Headlights Print",4 +duppack,Duplo Wear Cloth Backpack with Armholes,4 +dupphonec01,Duplo Push-Button Telephone Brick with Ear / Mouthpiece (For Humans),4 +dupraft,Duplo Boat Rubber Raft,4 +duprcbase,"Duplo, Toolo Car Base Unit for RC Dozer (2949)",4 +dupship,Duplo Boat Hull 12 x 23 Floating,35 +dupskirt08,Duplo Wear Cloth Skirt Satin,4 +duptent,Duplo Cloth Tent,4 +eeyore,"Duplo Figure Winnie the Pooh, Eeyore",13 +eleph2c01pb01,"Duplo Elephant Adult Stationary Head, Four Studs, Round Eye Print",4 +eleph5c01pb01,"Duplo Elephant Baby Walking, Left Front Foot Forward",4 +elephc01pb01,"Duplo Elephant Baby Standing, Round Eye Print",4 +eraser07,"Eraser, Clikits White with 'Heart' Image Sleeve",17 +expstk01,Sticker for Exploriens Sets - (170911),17 +fab10a,Fabuland Figure Panda 1,13 +fab10b,Fabuland Figure Panda 2,13 +fab10c,Minifig,13 +fab11a,Fabuland Figure Pig 1,13 +fab11b,Fabuland Figure Pig 2,13 +fab11c,Fabuland Figure Pig 3 [Blondi],13 +fab11e,Fabuland Figure Pig 5,13 +fab11f,Fabuland Figure Pig 6,13 +fab11g,Fabuland Figure Pig 7,13 +fab12a,Fabuland Figure Raccoon 1,13 +fab12b,Fabuland Figure Raccoon 2,13 +fab12c,Fabuland Figure Raccoon 5,13 +fab12d,Minifig,13 +fab12e,Fabuland Figure Walrus 2,13 +fab12f,Fabuland Figure Walrus 1 [William],13 +fab12g,Fabuland Figure Walrus 3 - White Anchor Chest Print,13 +fab12h,Fabuland Figure Raccoon 4,13 +fab13a,"Basic Figure Human Boy Blue, Black Legs, Brown Hair",13 +fab13b,"Basic Figure Human, Black Legs, Black Hat",13 +fab13c,"Basic Figure Human, Black Legs, White Hat",13 +fab13d,"Basic Figure Human Girl Blue, White Legs, Black Hair",13 +fab1a,LEGO Part fab1a - Fabuland Figure Bear 1,13 +fab1b,Fabuland Figure Bear 3 ,13 +fab1c,Fabuland Figure Bear 2 [Barney],13 +fab2c,Fabuland Figure Bulldog 3 [Buzzy / Boris] with Postman's Hat ,13 +fab2f,Fabuland Figure Bulldog 7 with Fire Helmet,13 +fab2g,Minifig,13 +fab2h,Fabuland Figure Bulldog 8 with Fire Helmet,13 +fab2i,Fabuland Figure Bulldog 9 with Fire Helmet,13 +fab2j,Minifig,13 +fab3a,Fabuland Figure Bunny 1,13 +fab3b,Fabuland Figure Bunny 2,13 +fab3c,Fabuland Figure Bunny 3,13 +fab3d,Fabuland Figure Bunny 4 - Red Collar Print,13 +fab3g,Fabuland Figure Cat 3,13 +fab3h,Fabuland Figure Cat 4,13 +fab3i,Fabuland Figure Cat 5,13 +fab4a,Fabuland Figure Cow [Clover],13 +fab4b,Fabuland Figure Crocodile 1,13 +fab4c,Fabuland Figure Crocodile 2,13 +fab4d,Fabuland Figure Crow 1 with Aviator Helmet and Black Eyes,13 +fab4e,Fabuland Figure Crow 2,13 +fab4f,Fabuland Figure Crow 3 with Aviator Helmet,13 +fab4g,Fabuland Figure Dog,13 +fab5a,Minifig,13 +fab5b,Fabuland Figure Elephant 2 [Elton],13 +fab5c,Fabuland Figure Elephant 3,13 +fab5e,Fabuland Figure Fox 1,13 +fab5f,Minifig,13 +fab5g,Fabuland Figure Goat 1,13 +fab5h,Fabuland Figure Goat 2,42 +fab6b,Fabuland Figure Horse 2,13 +fab6c,Minifig,13 +fab6e,Fabuland Figure Hippo 1,13 +fab6f,Fabuland Figure Hanna Hippo with Necklace Print,13 +fab7a,Fabuland Figure Lamb 1,13 +fab7b,Fabuland Figure Lamb 2 [Bianca],13 +fab7c,Fabuland Figure Poodle,13 +fab7e,Fabuland Figure Lion 1,13 +fab7f,Fabuland Figure Lion 2,13 +fab7g,Fabuland Figure Lion 2 with White Hat,13 +fab7h,Fabuland Figure Lamb 3,13 +fab8b,Minifig,13 +fab8c,Fabuland Figure Monkey 7,13 +fab8d,Fabuland Figure Monkey 4,13 +fab8e,Fabuland Figure Monkey 5 [Gabriel],13 +fab8f,Fabuland Figure Monkey 2,13 +fab8g,Fabuland Figure Monkey 8,42 +fab8h,Fabuland Figure Monkey 3 with White Hat,13 +fab8i,Fabuland Figure Monkey 6 with White Hat,13 +fab9a,Fabuland Figure Mouse 1 [Maximillian],13 +fab9b,Fabuland Mouse 2,13 +fab9c,Fabuland Figure Mouse 4,13 +fab9d,Fabuland Figure Mouse 3,13 +fab9e,Fabuland Figure Mouse 4 with White Cap,13 +fab9f,Mouse 6,42 +fab9g,Minifig,13 +fabac1,Fabuland Tricycle,36 +fabad2,Fabuland Lawnmower,27 +fabad3c01,Fabuland Stroller,27 +fabad5c01,Fabuland Hand Truck,27 +fabad6c01,Fabuland Utensil Wheelbarrow (2 Wheels),13 +fabah4,"Fabuland Car Roof, Flippable - Top",36 +fabah4-hinge,"Fabuland Car Roof, Flippable - Hinge Brick",36 +fabai1,Fabuland Window Squared Small,16 +fabaj1,Brick Curved 1 x 4 x 2 Fabuland Bell Shape,37 +fabaj3,Brick Curved 1 x 4 x 2 Fabuland Bell Shape with Headlights,37 +fabak3,Fabuland Door with Oval pane in 3 sections,42 +fabak3pb03,Fabuland Door with Oval pane in 3 sections with Police Lock Print,42 +fabal6,Fabuland Fire Ladder Complete Assembly,32 +fabbc1,Fabuland Door Frame with Door (Yellow Door),16 +fabbc1b,Fabuland Door Frame with Door (Red Door),16 +fabbc1c,Fabuland Door Frame with Door (Blue Door),16 +fabbd5,Fabuland Antenna,13 +fabca2,Fabuland Table,27 +fabca3,Fabuland Bed,27 +fabeb4,Fabuland Ladder,32 +fabed10,Fabuland Pickaxe,27 +fabed4,Fabuland Hammer,27 +fabed8,Fabuland Trowel,27 +fabef1,Fabuland Mailbox 4 x 4 x 4,7 +fabef5,Fabuland Trashcan,7 +fabef6,Fabuland Trashcan Lid 5 x 5,7 +fabeg2,Fabuland Utensil Drum,13 +fabeg3,Fabuland Utensil Drum Stick,13 +fabeh4,Fabuland Frying Pan,27 +fabeh5,Fabuland Teapot,27 +fabeh8,Fabuland Basket,27 +fabei6,Fabuland Utensil Vacuum Cleaner,13 +fabei7,Utensil Carpet Beater,42 +fabek4,Fabuland Utensil Paint Brush,13 +fabhook,Fabuland Tow Hook,34 +fire001,"Fire - City Center 1, Black Legs, White Cap, Moustache",13 +fire002,"Fire - City Center 2, Light Gray Legs with Black Hips, Black Breathing Helmet, Airtanks",13 +fire003,"Fire - City Center 2, Light Gray Legs with Black Hips, White Cap",13 +fire004,"Fire - City Center 5, Light Gray Legs with Black Hips, White Cap, Brown Sideburns",13 +fire005,"Plain Black Torso with Black Arms, Black Legs, Black Fire Helmet",13 +fire006,"Fire - City Center 1, Black Legs, Black Male Hair",13 +fire007,"Fire - City Center 4, Light Gray Legs with Black Hips, Black Breathing Helmet 2",13 +fire008,"Fire - City Center 3, Light Gray Legs with Black Hips, Black Fire Helmet",13 +firec004,"Fire - Classic, Black Fire Helmet",13 +firec006,"Fire - Flame Badge and Straight Line, Black Legs, White Fire Helmet",13 +firec007,"Fire - Air Gauge and Pocket, Light Gray Legs, White Fire Helmet",13 +firec017,"Fire - Flame Badge and 2 Buttons, Black Legs, White Fire Helmet",13 +firec019,"Fire - Old, Black Fire Helmet, Light Gray Airtanks",13 +firec023,"Fire - Flame Badge and 2 Buttons, Black Legs, Black Male Hair",13 +flex08,Technic Flex Cable,26 +flex08c04l,Technic Flex Cable 4L,26 +flex08c05l,Technic Flex Cable 5L,26 +flex08c06l,Technic Flex Cable 6L,26 +flex08c07l,Technic Flex Cable 7L,26 +flex08c09l,Technic Flex Cable 9L,26 +flex08c10l,Technic Flex Cable 10L,26 +flex08c11l,Technic Flex Cable 11L,26 +flex08c12l,Technic Flex Cable 12L,26 +flex08c13l,Technic Flex Cable 13L,26 +flex08c14l,Technic Flex Cable 14L,26 +flex08c157.5,Technic Flex Cable 157.5mm,26 +flex08c15l,Technic Flex Cable 15L,26 +flex08c16l,Technic Flex Cable 16L,26 +flex08c18l,Technic Flex Cable 18L,26 +flex08c19l,Technic Flex Cable 19L,26 +flex08c20l,Technic Flex Cable 20L,26 +flex08c23l,Technic Flex Cable 23L,26 +flex08c33l,Technic Flex Cable 33L,26 +flex08c38.8,Technic Flex Cable 38.8mm,26 +flex08c47,Technic Flex Cable 47mm,26 +flex08c86,Technic Flex Cable 86mm,26 +flex08c95,Technic Flex Cable 95mm,26 +foamarch,"Party Table Decoration, Wedding Arch",17 +foambase,"Party Table Decoration, Wedding Arch Base",17 +fpen01,Dry Wipe Pen with Black Cap [Complete Assembly],17 +frnd001,"Friends Emma, Magenta Layered Skirt, Medium Violet Top",24 +frnd004,"Friends Andrea, White Cropped Trousers, Lime Halter Neck Top",24 +frnd011,"Friends Emma, Dark Blue Layered Skirt, Medium Lavender Top",24 +frnd024,"Friends Andrea, Light Aqua Layered Skirt, Lime Halter Neck Top",24 +frnd027,"Friends Emma, White Riding Pants, Medium Violet Top",24 +frnd067,"Friends Emma, Sand Green Skirt, White Jacket with Bow over Magenta Top",24 +frnd070,"Friends Emma, Bright Light Blue Skirt, White Top with Pink Flowers",24 +ftbirch,"Plant, Tree Flat Birch painted with solid base",28 +ftbirch1,"Plant, Tree Flat Birch painted with solid base (1950's version)",28 +ftbirchh,"Plant, Tree Flat Birch painted with hollow base",28 +ftbush,"Plant, Tree Flat Bush painted with solid base",28 +ftbush1,"Plant, Tree Flat Bush painted with solid base (1950's version)",28 +ftbushh,"Plant, Tree Flat Bush painted with hollow base",28 +ftbushp,"Plant, Tree Flat Bush plain",24 +ftbushpf,"Plant, Tree Flat Bush plain with feet",24 +ftcyp,"Plant, Tree Flat Cypress painted with solid base",28 +ftcyp1,"Plant, Tree Flat Cypress painted with solid base (1950's version)",28 +ftcyph,"Plant, Tree Flat Cypress painted with hollow base",28 +ftelm,"Plant, Tree Flat Elm painted with solid base",28 +ftfruita1,"Plant, Tree Flat Fruit Painted with Painted Apples with solid base (1950's version)",28 +ftfruith,"Plant, Tree Flat Fruit painted with hollow base",28 +ftoak,"Plant, Tree Flat Oak painted with solid base",28 +ftoakh,"Plant, Tree Flat Oak painted with hollow base",28 +ftpine,"Plant, Tree Flat Pine painted with solid base",28 +ftpine1,"Plant, Tree Flat Pine painted with solid base (1950's version)",28 +ftpineh,"Plant, Tree Flat Pine painted with hollow base",28 +ftpinep,"Plant, Tree Flat Pine plain",24 +ftpinepf,"Plant, Tree Flat Pine plain with feet",24 +ftumb01,Friends Tumbler with Straw,17 +g577stor,Chess Set Storage Case Vikings,17 +gahlokkalcd,Gahlok-Kal CD-Rom,17 +gbiocd2001,Bionicle CD ROM [For 2001 Figure Canisters],17 +grautodoor,Garage Door 1 x 3 x 5 Automatic with One Octagon Stud and One Round Stud (Old style),16 +gstk112,"Sticker, Dacta Storage Bin Labels - Sheet of 2",17 +gtbush3,"Plant, Tree Granulated Bush with 3 Trunks",28 +gtfruit,Plant - Granulated Fruit Tree,28 +gtpine,Plant - Granulated Pine Tree,28 +hairband1,"Belville, Clothes Accessories Hair Band with Hearts",42 +hamm2,Pig 'Evil Dr. Porkchop' (Hamm) - Complete Assembly,28 +hmaskpw1,Sports Hockey Mask 6 with 14 Hole Grille,41 +hmaskpw2,Sports Hockey Mask 5 with cheek cuts and teeth,41 +hmaskpw3,Sports Hockey Mask 7 with teeth and scowl,41 +hockeypuck,Sports Hockey Puck (McDonald's Sports Sets),27 +hockeystickl,Sports Promo Hockey Stick from McDonald's Sports Sets - Left Side,27 +hockeystickr,Sports Promo Hockey Stick from McDonald's Sports Sets - Right Side,27 +hoop01,Belville Hoop [7 Studs Diameter],27 +hornbod,Dragon Body 'Hungarian Horntail',28 +horse03pb02,Duplo Horse Foal with Small Dark Bluish Gray Spots,4 +ideabook250,Idea Book 250 [1987],17 +ifountainstk01,"Sticker for Set iFountain - Sheet 1, Large Rhomboid with Coke Logo",17 +ifountainstk02,"Sticker for Set iFountain - Sheet 2, Coke I-Fountain Logo",17 +ifountainstk03,"Sticker for Set iFountain - Sheet 3, Service Indicator Lights",17 +insectmask,"Headgear, Mask, Hard Plastic, Insectoids",17 +jaykomask,"Headgear, Mask, Soft Foam, Knights Kingdom II Jayko",17 +js001,Fireman in Hat #01,13 +js002,"Jack Stone - Blue Jacket, Blue Pants, Gray Shirt",13 +js003,Res-Q - Cap,13 +js004,"Jack Stone - Gray Jacket, Blue legs",13 +js005,"Minifig - Jack Stone - Police - Blue Legs, Black Jacket, Blue Helmet [Female]",13 +js007,Fireman in Hat #07,13 +js008,Minifig - Jack Stone,13 +js009,"Minifig - Jack Stone - Jack Stone - Black Jacket, Blue Legs, Blue Harness",13 +js010,Minifig - Jack Stone,13 +js011,Minifig - Jack Stone,13 +js012,"Minifig - Jack Stone - Police - Blue Legs, Black Jacket, Blue Cap with Star, Sunglasses",13 +js013,Minifig - Jack Stone,13 +js014,Minifig - Jack Stone,13 +js015,Minifig - Jack Stone,13 +js016,"Minifig - Jack Stone - Police - Blue Legs, Black Jacket, Black Cap with Star",13 +js017,"Minifig - Jack Stone - Bank Robber with Dark Gray Legs, Red Shirt and Blue Cap",13 +js018,Minifig - Jack Stone,13 +js019,Minifig - Jack Stone,13 +js020,Minifig - Jack Stone,13 +js021,Minifig - Jack Stone,13 +js022,Minifig - Jack Stone,13 +js023,Minifig - Jack Stone,13 +js024,Minifig - Jack Stone,13 +js025,Minifig - Jack Stone,13 +js026,Minifig - Jack Stone,13 +js027,Minifig - Jack Stone,13 +js028,Minifig - Jack Stone,13 +js029,Minifig - Jack Stone,13 +k1062book,Road Safety Booklet [K1062],17 +k1062stk01,Sticker for Set K1062,17 +kk2wb,"Food - Water Bottle, Knights' Kingdom II Pattern",17 +kkc01,"Knights Kingdom II Card, Jayko - 1",17 +kkc03,"Knights Kingdom II Card, Jayko - 3",17 +kkc04,"Knights Kingdom II Card, Jayko - 4",17 +kkc06,"Knights Kingdom II Card, Jayko - 6",17 +kkc07,"Knights Kingdom II Card, Jayko - 7",17 +kkc08,"Knights Kingdom II Card, Jayko - 8",17 +kkc09,"Knights Kingdom II Card, Jayko - 9",17 +kkc10,"Knights Kingdom II Card, Danju - 10",17 +kkc12,"Knights Kingdom II Card, Danju - 12",17 +kkc13,"Knights Kingdom II Card, Danju - 13",17 +kkc15,"Knights Kingdom II Card, Danju - 15",17 +kkc16,"Knights Kingdom II Card, Danju - 16",17 +kkc17,"Knights Kingdom II Card, Danju - 17",17 +kkc18,"Knights Kingdom II Card, Danju - 18",17 +kkc19,"Knights Kingdom II Card, Santis - 19",17 +kkc21,"Knights Kingdom II Card, Santis - 21",17 +kkc22,"Knights Kingdom II Card, Santis - 22",17 +kkc24,"Knights Kingdom II Card, Santis - 24",17 +kkc25,"Knights Kingdom II Card, Santis - 25",17 +kkc26,"Knights Kingdom II Card, Santis - 26",17 +kkc27,"Knights Kingdom II Card, Santis - 27",17 +kkc28,"Knights Kingdom II Card, Rascus - 28",17 +kkc30,"Knights Kingdom II Card, Rascus - 30",17 +kkc31,"Knights Kingdom II Card, Rascus - 31",17 +kkc33,"Knights Kingdom II Card, Rascus - 33",17 +kkc34,"Knights Kingdom II Card, Rascus - 34",17 +kkc36,"Knights Kingdom II Card, Rascus - 36",17 +kkc37,"Knights Kingdom II Card, Vladek - 37",17 +kkc39,"Knights Kingdom II Card, Vladek - 39",17 +kkc40,"Knights Kingdom II Card, Vladek - 40",17 +kkc42,"Knights Kingdom II Card, Vladek - 42",17 +kkc43,"Knights Kingdom II Card, Vladek - 43",17 +kkc44,"Knights Kingdom II Card, Vladek - 44",17 +kkc45,"Knights Kingdom II Card, Vladek - 45",17 +kkc47,"Knights Kingdom II Card, King - 47",17 +kkc51,"Knights Kingdom II Card, Guardian - 51",17 +kkc56,"Knights Kingdom II Card, Shadow Knights - 56",17 +kkc57,"Knights Kingdom II Card, Shadow Knights - 57",17 +kkc58,"Knights Kingdom II Card, Shadow Knights - 58",17 +kkc66,"Knights Kingdom II Card, Castle Of Morcia - 66",17 +kkc68,"Knights Kingdom II Card, Castle Of Morcia - 68",17 +kkc69,"Knights Kingdom II Card, Border Crossing - 69",17 +kkc71,"Knights Kingdom II Card, Tournament Arena - 71",17 +kkc72,"Knights Kingdom II Card, Tournament Arena - 72",17 +kkc73,"Knights Kingdom II Card, Citadel - 73",17 +kkc77,"Knights Kingdom II Card, Citadel - 77",17 +kkc78,"Knights Kingdom II Card, Shield Of Ages - 78",17 +kohrakkalcd,Kohrak-Kal CD-Rom,17 +kraata1,Bionicle Rahkshi Kraata Stage 1,41 +kraata2,Bionicle Rahkshi Kraata Stage 2,41 +kraata3,Bionicle Rahkshi Kraata Stage 3,41 +kraata4,Bionicle Rahkshi Kraata Stage 4,41 +kraata5,Bionicle Rahkshi Kraata Stage 5,41 +kraata6,Bionicle Rahkshi Kraata Stage 6,41 +kraataund,Bionicle Rahkshi Kraata - Undetermined Stage / Name,41 +kragle,Kragle,17 +legcast,"Belville, Clothes Child's Leg Cast",42 +legolas,Legless LEGO Legolas,13 +lehvakkalcd,Lehvak-Kal CD-Rom,17 +lerahkcd,Lerahk CD-Rom,17 +lit2009stk01,Sticker for Set LIT2009,17 +m3001,Brick 2 x 4 Minitalia with Centre Cross Supports,11 +m3003,Minitalia Brick 2 x 2 with Bottom X Support,11 +mcjens1,"Galidor, Promo Head Jens (from McDonald's set)",41 +mcjens2,"Galidor, Promo Torso and Arms Jens (from McDonald's set)",41 +mcjens3,"Galidor, Promo Legs Jens (from McDonald's set)",41 +mcjens4,"Galidor, Promo Staff, Jens' (from McDonald's set)",41 +mcsport3,Sports Promo Figure Head Torso Assembly McDonald's Set 3 (7917),13 +mcsport6,Sports Promo Figure Head Torso Assembly McDonald's Set 6 (7922),13 +mcsport7,Sports Promo Figure Head Torso Assembly McDonald's Set 7 (7921),13 +mcsport8,Sports Promo Figure Head Torso Assembly McDonald's Set 8 [7918],13 +mm98,Movie Maker for Microsoft Windows 98 CD-Rom,17 +motor6,Pullback Motor 7 x 5 x 3,44 +motor6a,Pullback Motor 8 x 5 x 3 (Motor 6a),44 +motor8,Pullback Motor 10 x 5 x 4 Motorcycle [Motor 8],44 +ms1034,Electric Compass Sensor - NXT,45 +ms1035,Electric Magnetic Sensor - NXT,45 +mummyc02,Mummy Storage Container Complete Assembly,17 +nsph99,Null Set Place Holder,17 +nuhvokkalcd,Nuhvok-Kal CD-Rom,17 +p01dacta,"Basic Town Poster, Two-Sided (9287)",17 +paddle,Sports Promo Paddle from McDonald's Sports Sets,27 +pahrakkalcd,Pahrak-Kal CD-Rom,17 +paper01,"Paper, Continuous Background from Backdrop Studios Set 1351, Night City",17 +paper02,Cardboard Backdrop for Set 1177,17 +paper03,"Paper, Continuous Background from Backdrop Studios Set 1351, Day City",17 +pcl004,"Pencil, LEGO Logo and Minifig Print",17 +pillow01,Belville Cloth Pillow 6 x 7 Gold with Magenta / Orange Stripes on Reverse,42 +pillow02,Belville Cloth Pillow 4 x 4 with Border of Diagonally Embossed Squares,42 +pillow05,Belville Cloth Pillow 4 x 5 Flower with Dark Pink on Reverse,42 +pinpw2,Technic Axle Metal [Long] for Expert Builder Gears,46 +polarc01pb02,"Duplo Polar Bear Adult, Squared Eyes",4 +pooh,"Duplo Figure Winnie the Pooh, Winnie",13 +post001,"Post Office - Black Legs, Black Hat",13 +pouch02,"Belville Cloth Pouch, Adult with white lace and pink rose Print",42 +pouch03,"Belville Cloth Pouch, Child with Dots Print",42 +pouch04,"Belville Cloth Pouch, Fairyland Ellipse",42 +pouch05,"Belville Cloth Pouch, Adult with Dots Print",42 +pouch06,"Belville Cloth Pouch, Baby with green and pink Floral Bow",42 +pouch07,"Belville Cloth Pouch, Child with No Print",42 +pouch08,"Belville Cloth Pouch, Adult with No Print",42 +pouch09,"Belville Cloth Pouch, Child with Heart Wreath, Roses and Crown Print",42 +pouch10,"Belville Cloth Pouch, Leaf with Contrast Stitching",42 +pouch11,"Belville Cloth Pouch, Child with No Print, Lace Trim",42 +pouch12,"Belville Cloth Pouch, Baby, Plain Terry Cloth",42 +racerbase,Vehicle Base 4 x 6 Racer Base with Wheels (Color Undetermined) and Bumpers,36 +rb00166,String Cord Thick,31 +rb00167,Rubber Band 15mm [Square Cross Section],31 +rb00167a,Rubber Band 15mm Thick [Square Cross Section],31 +rb00168,Rubber Band Medium (Square Cross Section) Thin Cut,31 +rb00169,Rubber Band Large [Square Cross Section],31 +rb00170,Rubber Band Medium (Square Cross Section),31 +rb00178,Electric Antenna with Yellow Tip,45 +rb00180,Technic Wheel Hub 3 Pin Holder (RC Vehicles),25 +rb00182,"Container, RoboRider Canister, Top",7 +rb00183,Sports Hockey Mask 1 with 4 Hole Grille (Set 3545),27 +rb00184,Sports Hockey Action Rink Playmat,17 +rb00185,Turntable Spinning with Sports Trick Handle 2 x 24 x 4 1/3,18 +rb00186,Plastic Flag 4 x 8 with Green Oriental Dragon Print,38 +rb00187,"Plastic Mars Rover Solar Panel, Complete Sheet [7471]",38 +rb00188,Plastic - Shield with Knights Kingdom Danju Print (For Large Figs),38 +rb00189,"Plastic Flag with Lion and Crown Print, Complete Sheet [8781 / 8801]",38 +rb00189a,Plastic Flag with Lion with Crown Pattern,38 +rb00189b,Plastic Flag with Lion with Crown Pattern Part B,38 +rb00190,Paper Shield with Knights Kingdom King Mathias Print (For Large Figs),38 +rb00191,"Belville Fairy Wings, Plastic Film [5964]",38 +rb00192,Minifig Visor Old with Grille and Feather,27 +rb00193a,Electric Motor 12V Type 1 for 2-Prong Connectors with Middle Pin,45 +rb00193b,Electric Motor 12V Type 2 for 2-Prong Connectors without Middle Pin,45 +rb00197,Baseplate 25 x 50,1 +redbox01,Storage Box Plaid with Red Handle,17 +redbox02,Storage Box Plaid with White Handle and Metal Corner Protectors,17 +rex,Dino 'Rex' (Toy Story) - Complete Assembly,28 +rotbcd,Star Wars Revenge of the Brick / LEGO Star Wars: The Video Game Demo CD,17 +s004,"'S' - Yellow with Blue / Gray Stripe, Blue Legs, Blue Helmet",13 +sail7416,Cloth Sail Junk with Green Oriental Dragon Print (Set 7416),38 +sailbb01,"Cloth Sail 9 x 11, 3 Holes with Black Stripes Print",38 +sailbb02,Cloth Sail Main with Blue Stripes and Crown Shield Print,38 +sailbb03,Cloth Sail Triangular 15 x 22 with Blue Thin Stripes Print,38 +sailbb04,Cloth Sail Top 27 x 17 with Red Thick Stripes Print,38 +sailbb05,Cloth Sail Bottom 30 x 15 with Red Thick Stripes Print,38 +sailbb06,Cloth Sail Top 27 x 17 with Black Thick Stripes Print,38 +sailbb07,Cloth Sail Bottom 30 x 15 with Black Thick Stripes Print,38 +sailbb08,Cloth Sail Triangular 15 x 22,38 +sailbb09,Cloth Sail 2 with Crossed Cannons Print,38 +sailbb10,Cloth Sail Triangular Curved with Islander Print,38 +sailbb11,"Cloth Sail Square with Dark Gray Stripes, Skull and Crossbones Print, Damage Cutouts",38 +sailbb12,"Cloth Sail Square with Dark Gray Stripes, Crossed Cutlasses Print, Damage Cutouts",38 +sailbb13,"Cloth Sail 3 with Dark Gray Stripes Print, Damage Cutouts",38 +sailbb14,Cloth Sail Triangular Small with Black Stripes Print,38 +sailbb15,Cloth Sail Triangular 15 x 22 with Black Thick Stripes Print,38 +sailbb16,"Cloth Sail 2 with Black Stripes, Skull and Crossbones Print",38 +sailbb17,Cloth Sail Square with Crossed Cannons Print,38 +sailbb18,"Cloth Sail Rectangle with Red Stripes, Skull and 2 Cutlasses Print, Damage",38 +sailbb19,Cloth Sail 12 x 10 with Red Flying Dragon Print,38 +sailbb20,Cloth Sail Triangular 15 x 22 with Blue Thick Stripes Print,38 +sailbb21,Cloth Sail Bottom 30 x 15 with Blue Thick Stripes Print,38 +sailbb22,Cloth Sail Top 27 x 17 with Blue Thick Stripes Print,38 +sailbb23,Cloth Sail Triangular 15 x 22 with Red Thick Stripes Print,38 +sailbb24,"Cloth Sail 9 x 11, 3 Holes with Red Stripes Print",38 +sailbb25,"Cloth Sail Top with Red Stripes, Skull and Crossbones Print, Tatters",38 +sailbb26,Cloth Sail 12 x 10 with Skull and Crossbones Print (from 6261),38 +sailbb27,"Cloth Sail 9 x 11, 3 Holes with Blue Stripes Print [6273]",38 +sailbb28,"Cloth Sail 11 x 13, 5 Holes [6277]",38 +sailbb29,Cloth Sail Triangular 11 x 15 [6277],38 +sailbb30,Cloth Sail 12 x 10 with Black Crossed Anchors Print,38 +sailbb31,"Cloth Sail Square with Black Stripes, Skull and Crossbones Print",38 +sailbb32,"Cloth Sail 27 x 18 with Black and Blue Stripes, Skull and Cutlass Print, Tatters",38 +sailbb33,"Cloth Sail Triangular with Red Stripes, Skull with Eyepatch & Crossbones Print (Set 7075)",38 +sailbb34,"Cloth Sail Top with Red Stripes, Skull with Eyepatch & Crossbones Print (Set 7075)",38 +sailbb35,Cloth Sail Bottom Recurved with Red Stripes Print (Set 7075),38 +sailbb36,Cloth Sail Rectangle Curved with Viking Snake Print (Set 7018),38 +sailbb37,"Cloth Sail Triangular 15 x 22 with Black and Blue Stripes, Skull and Cutlass Print",38 +sailbb38,Cloth Sail - Triangular 15 x 22,38 +sailbb41,Cloth Sail 14 x 20 Tattered with Fantasy Era Troll Skull Print (7048),38 +sailbb42,"Cloth Sail Rectangle with Red Stripes, Skull Crossbones",38 +sailbb43,Cloth Sail Rectangle with Red Stripes,38 +sailbb44,Cloth Sail Triangular 17 x 20 with Red Thick Stripes Print,38 +satchel4,Backpack Multicolor with Transparent Front with LEGO Logo and Beading,17 +sbb04,"Brick, Soft 2 x 4 with Curved Top",37 +sc001,"Scala, Clothes Sun Visor",42 +sc003,"Scala Accessories - Complete Sprue - Bow, Flower Type 1, Butterfly, Beetle / Ladybug (same as bel003)",42 +sc003a,Scala Accessories Bow (same as bel003a),42 +sc003b,Scala Accessories Flower Type 1 - 14 Petals (same as bel003b),42 +sc003c,Scala Accessories Beetle / Ladybug (same as bel003c),42 +sc003d,Scala Accessories Butterfly (same as bel003d),42 +sc004,"Scala, Clothes Sunglasses",42 +scalabridle,"Scala Horse Bridle, Complete Assembly",42 +scalatote,"Scala, Cloth Tote with Straps",42 +scl003,Scala Ring with 1 x 2 Plate - Size Medium,42 +scl004,Scala Ring with 1 x 2 Plate - Size Large,42 +scl005,Scala Ring with 1 x 2 Plate - Size Small,42 +sh002,Batman (Comic-Con 2011 Exclusive),13 +sh042,Shazam (Comic-Con 2012 Exclusive),13 +sh043,Minifig (Unknown),13 +shell010,"Shell - Classic - Blue Legs, Red Cap",13 +skirt01,"Belville, Clothes Skirt Short, Sheer",42 +sleepbag13,Duplo Cloth Sleeping Bag with Starburst Print,4 +stegc02,Stegosaurus with Dark Orange Legs,28 +sw117,Minifig - Star Wars Darth Vader with Light-Up Lightsaber Complete Assembly ,13 +sw12v1lefta,"Train Track 12V Switch Point Left, Type 1 Automatic - Complete Assembly",36 +sw12v1leftm,"Train Track 12V Switch Point Left, Type 1 Manual - Complete Assembly",36 +sw12v1righta,"Train Track 12V Switch Point Right, Type 1 Automatic - Complete Assembly",36 +sw12v1rightm,"Train Track 12V Switch Point Right, Type 1 Manual - Complete Assembly",36 +swmpstk01,Sticker for Set SWMP - LEGO Logo for Mosaic,17 +tahnokkalcd,Tahnok-Kal CD-Rom,17 +tclogofloppy1,"Instruction Floppy Disk 5.25in for 951-2 LEGO TC logo Master Disk, Apple IIe/IIgs",17 +tclogofloppy2,"Instruction Floppy Disk 5.25in for 951-2 LEGO TC logo Operating Disk, Apple IIe/IIgs",17 +tech001,"Technic Figure Black/Light Gray Legs, Dark Turquoise Torso with Yellow, Black, Silver Print, Light Gray Mechanical Left Arm",13 +tech002,"Technic Figure Blue Legs, Black Top with Zippered Wetsuit Print [Diver]",13 +tech003,"Technic Figure White Legs, White Top with Red Stripes Print, Blue Arms [Skier]",13 +tech004,"Technic Figure Red Legs, White Top with Red Triangle Print, Black Arms",13 +tech005,"Technic Figure Blue Legs, White Top with Blue Technic Logo, Blue Arms",13 +tech006,"Technic Figure White Legs, White Top with Blue Braces Print, Blue Arms",13 +tech007,"Technic Figure Cyber Person, Black Legs, Mechanical Arms, Yellow Head, Cyborg Eyepiece",13 +tech008,"Technic Figure Red/Black Legs, Red Top, Black Hair [Fireman]",13 +tech009,"Technic Figure Red/Black Legs, Red Top, Brown Hair [Fireman]",13 +tech010,"Technic Figure Blue Legs, White Top with Zip & Shoulder Harness Print, Blue Arms, Blue Helmet [8232]",13 +tech011,"Technic Figure Blue Legs, Red Top with Zip, Blue Arms, Black Hair, White Helmet",13 +tech011a,"Technic Figure Blue Legs, Red Top with Zipper, Black Arms, Black Hair, White Helmet",13 +tech012,"Technic Figure Black Legs, Light Gray Top with 2 Brown Belts, Black Arms",13 +tech013,"Technic Figure Dark Turquoise Legs, Dark Turquoise Torso with Yellow, Black, Silver Print, Black Arms",13 +tech014,"Technic Figure Yellow Legs, Yellow Top, Yellow Helmet, Black Visor [Power Puller Driver]",13 +tech014a,"Technic Figure Yellow Legs, Yellow Top [Power Puller Driver]",13 +tech015,"Technic Figure Blue Legs, Blue Top with Zip and Pockets, Light Gray Arms",13 +tech016,"Technic Figure Blue Legs, Blue Top with Chest Plate, Black Hair, Black Helmet [8300]",13 +tech016a,"Technic Figure Blue Legs, Blue Top with Technic Logo, Black Hair and Sunglasses [8300]",13 +tech017,"Technic Figure Red Legs, Red Top with Chest Plate, Black Hair, White Helmet [8300]",13 +tech017a,"Technic Figure Red Legs, Red Top with Technic Logo and Black Hair [8300]",13 +tech018,"Technic Figure White Legs, White Top with Red Arrow Stripes Print, Blue Arms, Blue Helmet",13 +tech019,"Technic Figure Black Legs, White Top with Police Logo, Black Arms [8252]",13 +tech020,"Technic Figure White Legs, White Top with Red Vest, Red Arms, Black Hair, Red Helmet",13 +tech021,"Technic Figure Blue Legs, Light Gray Top with Wave and Orca Print, Blue Arms",13 +tech022,"Technic Figure White Legs with Knife (sticker) on Right Leg, White Top with White and Green Torso with Rescue Print, Green Arms [8255]",13 +tech023,"Technic Figure Red Legs, Red Top with Fire Print, Black Arms [Fireman]",13 +tech024,"Technic Figure Cyborg, Black Legs, Purple Armour, Mechanical Arms, Dark Gray Head, Cyborg Eyepiece [8305]",13 +tech025,"Technic Figure White Legs, White Top with Red Stripes Print, Black Arms, White Helmet [8620 Alternate]",13 +tech026,"Technic Figure Blue Legs, White Top with Zip & Shoulder Harness Print, Blue Arms, White Helmet [8222]",13 +tech027,"Technic Figure Orange/Black Legs, Orange Torso with Silver Print, Black Arms, Black Hair [8305 / 8307]",13 +tech028,"Technic Figure Red Legs, Red Top with Black Print, Black Arms, Brown Hair",13 +tech029,"Technic Figure Black Legs, Light Gray Top with Police Print, Black Arms",13 +template01,Cardboard Labyrinth Template,17 +tent,"Cloth Tent, Adventurers",38 +tentex,"Cloth Tent, Extreme Team",38 +tigerc01,Duplo Tiger Adult Standing,4 +tls061,"Lego Brand Store Male, Black Suit - Peabody",13 +tls062,"Lego Brand Store Male, Classic Space Minifig Floating - Peabody",13 +tls063,"Lego Brand Store Male, Construction Worker - Peabody",13 +towel,"Belville Cloth Towel 5 x 14, edged",42 +towel2,Belville Cloth Towel 6 x 14,42 +tplan01,"Town Plan Board, Plastic Small Soft [200-3 / 1200-2]",38 +tplan02,"Town Plan Board, Masonite (53 1/2cm x 80cm) - Sets 200A, 1200A, 200M",17 +tplan03,"Town Plan Board, Plastic Large Soft [1200]",38 +tplan05,"Town Plan Board, Cardboard European Left-Driving (50 1/2cm x 79 1/2cm) - Set 200-5",17 +tplan06,"Town Plan Board, Cardboard European Right-Driving (50 1/2cm x 79 1/2cm) - Set 200-4",17 +tplan08,"Town Plan Board, Cardboard British/Australian Version (50 1/2cm x 79 1/2cm) - Set 200",17 +trainktstk01,Sticker for Sets KT10x and KT20x - (41790/4159998),17 +trainsig2,Train Signal Circuit-Breaker Bar,36 +tray01,Storage/Sorting Tray - Ten Compartment,17 +tray02,Storage/Sorting Tray - Twenty Four Compartment,17 +tray03,Storage Cabinet with Slots for 4 Trays,17 +turahkcd,Turahk CD-Rom,17 +tygurah,Tygurah (Tiger),24 +u1125,Hinge Plate 1 x 2 with 1 Large Finger,18 +u1126,Hinge Plate 1 x 2 with 2 Fingers at Outer Edges,18 +u-2694,Star Wars Episode III Collectors' Poster - (Set 65771),17 +u9017,Plane Jet Engine with Plate 2 x 2,24 +u9023c01,Electric 4.5V Battery Box 7 x 11 x 3 Type 2 (Complete),45 +u9119c01,"Plant Flat Horse Chestnut Tree with Hollow Base, Coloured Trunk",28 +u9137,Train Track 12V Tapered Crossing,36 +u9143,Fabuland Fireman's Helmet,27 +u9154,Fabuland Policeman/Postman's Cap,27 +u9204c01,Fabuland Scooter with Grey Wheels and Black Handlebars,36 +u9206c01,"Fabuland Tricycle, 2 Front Wheels, Grey Wheels, Black Handlebars",36 +u9213,Fabuland Tree,28 +u9213p01,Fabuland Tree with Apples Print [3675 / 3682],28 +u9215,"Fabuland Stairs, Large",32 +ufomask,"Mask, Hard Plastic, UFO Alien Invader (from set 6999)",17 +vik028,Viking Red Chess Queen - Portions may be Glued,13 +vik029,Viking Blue Chess Queen - Portions may be Glued,13 +vik030,Viking Chess Piece Blue Rook - Glued,13 +vik031,Viking Chess Piece Red Rook - Glued,13 +vik036,Viking Chess Piece Red Knight - Portions may be Glued,13 +vik037,Viking Chess Piece Blue Knight - Portions may be Glued,13 +vladekmask,"Headgear, Mask, Hard Plastic, Knights Kingdom II Vladek",17 +wheel1,Train Wheel with 2 x 2 Stud Center (Undetermined Type),24 +wheel1a,"Train Wheel with 2 x 2 Stud Center, Traction Teeth",29 +wheel1b,"Train Wheel with 2 x 2 Stud Center, Beveled Tread and Cam Axle for Motor",29 +wheel1c,"Train Wheel with 2 x 2 Stud Center, Beveled Tread",24 +wheel2a,Train Wheel Spoked for Motor,29 +wheel2b,Train Wheel Spoked for Wagon,29 +wing4612,"Paper, Plastic Laminated, Hang Glider Wing with Blue Arrow, Dot Fade Print [1435 / 4612]",38 +wood03,Wooden Storage Box with Red Sliding Top,17 +wood04,Wooden Storage Box with Plain Sliding Top and LEGO Logo,17 +x1,Scala Foam Cushion 2 x 2,42 +x10,Scala Accessories - Complete Sprue - Flowers (2 each of Types 2 & 3),42 +x1012,"Sports Net Hockey Goal, Enclosed",31 +x101b,String Net 10 x 10 Octagon,31 +x1042b,"Brick, Round Corner 4 x 2 Macaroni Double with Stud Notches",20 +x11,"Scala, Clothes Necklace",42 +x1104,"Container, Box 8 x 3 x 3 HO Car Showcase",7 +x1161cx1,Electric Light Sensor 4.5V,45 +x1162,Container Storage Technic Sorting Tray Lid,17 +x1163,Container Storage Technic Sorting Tray Fourteen Compartment,17 +x1164,Container Storage Technic Sorting Tray Frame,17 +x1165,Container Storage Technic Sorting Tray Seventeen Compartment,17 +x1166,Container Storage Technic Sorting Tray Eight Compartment,17 +x1167cx1,Electric Touch Sensor 4.5V,45 +x117px10,"Minifig Head Modified Martian with Clip, Purple Nose Face Mask Print",13 +x117px2,"Minifig Head Modified Martian with Clip, Orange Hair and Freckles Print",13 +x117px3,"Minifig Head Modified - Martian with Clip, Blue Face Mask Print",13 +x117px4,"Minifig Head Modified Martian with Clip, Lime and White Head Device and Orange Freckles Print",13 +x117px5,"Minifig Head Modified Martian with Clip, Mouth Cover Device and Freckles Print",13 +x117px6,"Minifig Head Modified Martian with Clip, One Eye Covered Face Mask Print",13 +x117px7,"Minifig Head Modified Martian with Clip, Red Eyes Print",13 +x117px9,"Minifig Head Modified Martian with Clip, Lime and Silver Head Device and Lime Freckles Print",13 +x1190,Bionicle Head Connector Block Eye/Brain Stalk (Vahki),41 +x120,Fabuland Shovel ga5,42 +x120b,Belville Shovel,42 +x1218,"Technic, Spike Connector Flexible with Four Holes Perpendicular",24 +x1220,RC Car Parts Separator Tool [Metal],56 +x1228,"Duplo Tread, Thick Cleats",4 +x124,Mindstorms RCX Remote Control,45 +x1255px1,Minifig Accessory Cape Cloth with Rounded Ends and Mayan Print,27 +x1315,"Hook, Wide",34 +x1330,Gear Sword,24 +x1330px1,Gear Sword with Vladek Print,17 +x1331,Gear Shield,24 +x1331px1,Gear Shield with Vladek Print,17 +x1390c04,"Scala, Cloth Backpack with Black Straps",42 +x139a,Boat Keel Weighted 2 x 8 x 4 with Bottom Tab,24 +x14,Scala Utensil Cordless Phone,42 +x1401,"Scala, Clothes Hair Band with Stud",42 +x1438px1,Belville Cloth Playmat 49cm x 49cm with Stream Print (#5834),42 +x1446,Jumbo Brick 2 x 4,4 +x1447c01,Jumbo Brick Vehicle Base 4 x 8 with Red Wheels,4 +x1454,Baseplate 14 x 20,1 +x1463,"Torso Mechanical, General Grievous",13 +x146c02,"Boat Hull Smooth Middle 8 x 6 x 3 1/3, Deck Color White",35 +x1476px1,"Belville, Clothes Shawl Fur Trimmed with Snowflake Print",42 +x147c02,"Boat Hull Smooth Stern 6 x 6 x 3 1/3, Deck Color White",35 +x148,Technic Expert Builder Bush Type 2,54 +x1488px1,"Belville Cloth Mattress 6 x 14, Blue Stripe Print",42 +x1488px2,"Belville Cloth Mattress 6 x 14, Pink Stripe Print",42 +x149,Boat Keel Weighted 8 x 2 x 4,35 +x149a,Boat Keel Weighted 8 x 2 x 4 without Bottom Tab,35 +x15,Scala Utensil Hand Mirror,42 +x152,Plastic Sheet 14 x 14,24 +x152px1,Plastic Square 14 x 14 with Solar Panel Print,38 +x1558px1,Cloth Flag 25 x 3 Pennant with Dark Red Half Print,38 +x1561,"Paper, Cardboard Roof, Minitalia",17 +x157,Technic Rubber Cable Holder,45 +x158,Dinosaur Head Small,28 +x1586,Belville Clothing Girl Fairy Skirt,42 +x16,Scala Utensil Hairbrush,42 +x162,Minifig Alien Dug sebulba,13 +x165,Electric Fibre Optics Cable,45 +x165c05,"Electric, Fiber Optics Cable 5L",45 +x1678,"Electric 7.4V Rechargeable Battery - NXT, AC plug",45 +x17,"Scala, Clothes Hair Clip, Round Type",42 +x1718c01,Duplo Rattle Circular with Yellow/Blue Wheels,4 +x172,Cloth Tepee Cover,38 +x1721,HO Scale Accessory Petrol Pump Shell Print (Sticker),50 +x172px1,Cloth Tepee Cover with Black Edge and Horses Print,38 +x172px2,Cloth Tepee Cover with Buffalo Helmets Print,38 +x1739,"Technic, Axle 8 with Stop",24 +x180,"Electric Connector, Serial 9 Pin Male to 25 Pin Female Adapter",45 +x1813,Minifig Head Modified Bionicle Piraka Hakann [Plain],24 +x1814,Minifig Head Modified Bionicle Piraka Reidak [Plain],24 +x1816,Minifig Head Modified Bionicle Piraka Zaktan [Plain],24 +x1817,Minifig Head Modified Bionicle Piraka Avak [Plain],24 +x1818,Minifig Head Modified Bionicle Piraka Vezok [Plain],24 +x1819,Minifig Head Modified Bionicle Inika Toa Hahli [Plain],24 +x1823,Minifig Head Modified Bionicle Inika Toa Kongu [Plain],24 +x1823px1,Minifig Head Modified Bionicle Inika Toa Kongu with Lime Eyes Print,13 +x184,Baseplate 16 x 18,1 +x186,"Technic Gear Reduction Block 20x, 3 x 4 x 2 1/3",44 +x1894px2,"Paper, Cardboard Sports Promo Soccer Goal",17 +x190,Minifig Armour Breastplate,27 +x1904cx1,"Support 2 x 2 x 12 with Grooves, Smooth On All Sides, Top Peg",34 +x1925cx1,Belville Cloth Bed Cover 8 x 13 with Light Pink Tulle Edge,42 +x196,Homemaker Figure Headgear Hair Long,13 +x1967cx1,Electric Power Functions 9V IR Remote Control Incremental with DkStone Bottom,45 +x197,Homemaker Figure Headgear Hair Short,13 +x197bun,Homemaker Figure Headgear Hair Bun,13 +x1pb02,"Foam, Scala, 7 x 7 Cloth Top, Blue Leaves and Red Berries Print",42 +x206c01,Polar Bear,28 +x209,Technic Throwbot Visor,41 +x209pb01,Technic Throwbot Visor with Blaster Mecha / Animal Print [8523],41 +x209pb02,Technic Throwbot Visor with Flare Print [8521],41 +x209pb03,Technic Throwbot Visor with Onyx Print [8512],41 +x209pb05,Technic Throwbot Visor with Spark Print [8522],41 +x209pb06,Technic Throwbot Visor with RoboRider The Boss Print [8516],41 +x209pb07,Technic Throwbot Visor with Amazon / Jungle Print [8505],41 +x209pb08,Technic Throwbot Visor with Jet / Judge Print [8504],41 +x209pb09,Technic Throwbot Visor with Torch / Fire Print [8500],41 +x209pw1,Technic Throwbot Visor with Dust Print [8513],41 +x209px1,Technic Throwbot Visor with Millennia Gold V Print [8520],41 +x209px2,Technic Throwbot Visor with Scuba / Sub Print [8503],41 +x214,Plastic Sheet 9 x 10 with Hole,24 +x214px1,Plastic Laminated with Shingle Print and Hole [4709],38 +x222,Fabuland Sign on Pole,38 +x225,Minifig Mask for Green Goblin,27 +x225pb01,Minifig Mask for Green Goblin with Gold Eyes and Teeth Print,27 +x226,"Support 2 x 2 x 6 with Grooves, Smooth On All Sides, Top Peg",34 +x231,Minifig Hat with Two Studs on Sides,27 +x231px1,"Minifig Head Top, Frankenstein Monster with Zipper Print",13 +x234,Minifig Ladle / Spoon,27 +x245px1,Writing Pen Plain with Technic Print,17 +x247,Cloth Bed Curtains,38 +x247px1,Cloth Bed Curtains with Dark Gray Stars Print,38 +x248,Belville Cloth Blanket 4 x 5,42 +x248pb01,Belville Cloth Blanket 4 x 5 with Red Spots Print,42 +x268pb01,Die 6 Sided for Set 1575-2 Board Game,17 +x268px1,"Die 6 Sided with Circles, Line, and X",17 +x270,Minifig Head Modified Geonosian,13 +x276,Minifig Sun Disk,27 +x278,Scrap use 41680,24 +x32,"Scala, Clothes Female Dress Polka Dot Print",42 +x32pb02,"Scala, Clothes Female Dress with Green/Pink Flower Print and Red Neck Ribbon",42 +x334c01,Technic Axle Flexible 26L (Axle 2L and 5L Ends) with Dark Gray Cable,43 +x35,Foam Ball 41mm,26 +x351,Brick Special 2 x 2 Racer Driver No Head,13 +x353,Plastic Sheet 16 x 4,24 +x353px1sheet,Plastic Sheet of 4 Ogel Underwater Base Print Rectangles [4795],38 +x353px2,Plastic Rectangle 16 x 4 with Octan logo and Text Print [6337],38 +x36,Foam Disk 45mm x 15mm,26 +x372,Minifig Food Carrot,27 +x375,Minifig Accessory Cape Cloth Small,27 +x375pb01,"Minifig Cape Cloth, Round Lobes with Royal Knights Lion Head Print",13 +x375px1,"Minifig Cape Cloth, Round Lobes with Dragon Print",27 +x376,Flag 8 x 5 Cloth,38 +x376px1,Cloth Flag 8 x 5 Wave with Red Border and Green Dragon Print,38 +x376px2,Cloth Flag 8 x 5 Wave with Red Border and Bat Print,38 +x376px3,Cloth Flag 8 x 5 Wave with Black Border and Black Bull's Head Print,38 +x376px4,Cloth Flag 8 x 5 Wave with Red Border and Skull and Crossbones Print,38 +x376px5,Cloth Flag 8 x 5 Wave with Blue Border and Crown and Anchor Print,38 +x376px6,Cloth Flag 8 x 5 Wave with Royal Knights Lion Head on Red/White,38 +x384c01,Motor Wind-Up 4 x 10 x 3 with Red Wheels,24 +x386,"Sports Net Soccer Goal, Enclosed",31 +x39,Door 1 x 4 x 6 with 3 Panes and Undetermined Glass Color,16 +x396,Minifig Food Banana,27 +x400c12,"Electric, Fiber Optics Cable Wide 12L (Spybotics)",45 +x400c24,Fibre Optics Cable Wide 24L [Exo-Force],45 +x400c25,Electric Fibre Optics Cable Wide 25L [RIS v2.0],45 +x407,Maxifig Police Style Hat,27 +x428,"Tread Technic Large, 16 studs D. x 2 studs W. (CyberMaster)",29 +x431c01,"Electric IR Transmitter Tower, USB with Black Front",45 +x442,"Sports Net Soccer Goal, Flat",31 +x453,Windscreen 2 x 4 x 1 Curved Front,47 +x454,Roadsign Hanging Slanted,24 +x454pb01,Road Sign Cantilever Curved with Shell Logo Print,38 +x456,Electric Light Brick 4.5V 2 x 4,45 +x456a,Electric Light Brick 4.5V 2 x 4 Replacement Bulb,45 +x456c01,Electric Light Brick 4.5V 2 x 4 with Removable Bulb,45 +x457,Electric Train Motor 12V,45 +x457a,Electric Train Motor 12V with 2 hole plugs,45 +x459,Train Wheel (for 12V Motor middle wheel),24 +x461,"Plate Special 1 x 2 with Steam Engine Cylinder, Round Surfaces",9 +x461b,"Plate Special 1 x 2 with Steam Engine Cylinder, Round Surfaces, Interior Grooves",36 +x466,"Electric, Wire 12V / 4.5V with Two Leads [Undetermined Length]",45 +x466a200,"Electric Wire 12V / 4.5V with three Leads, 200cm long",45 +x466c11,"Electric Wire 12V / 4.5V with two 2-prong connectors, 11 Studs Long",45 +x467c10,"Hose, Classic 4mm D. 10L",30 +x467c12,"Hose, Classic 4mm D. 12L",30 +x469,Electric Train Motor 4.5V Type I 4 x 12 x 3 1/3,45 +x469a,Electric Train Motor 4.5V Type I 4 x 12 x 4,45 +x469b,"Electric, Motor 4.5V Type II 12 x 4 x 3 1/3",45 +x469ba,Electric Motor 4.5V Type II 12 x 4 x 3 1/3 Upper Housing (Train),45 +x469bb,Electric Motor 4.5V Type II 12 x 4 x 3 1/3 Lower Housing (Train),45 +x469bc,Electric Motor 4.5V/12V Type II 12 x 4 x 3 1/3 Gearbox (Train),45 +x469bopen,"Electric, Motor 4.5V Type III 12 x 4 x 3 1/3 (open contacts)",45 +x471,Electric Train 12V Transformer Speed Throttle,45 +x482,Electric Train Motor 4.5V Replacement,45 +x489,Train Signal Post,36 +x490c01,"Electric, RC Car Base Complete Assembly (Sets 5599/5600)",45 +x491c01,"Electric, RC Controller Complete Assembly (Sets 5599/5600)",45 +x494cx1,Minifig Hips and Spring Legs with Silver Springs (Weak),13 +x494cx2,Minifig Hips and Spring Legs with Yellow Spring (Strong),13 +x5,"Scala, Clothes Baby Shirt",42 +x50,Minifig Helmet SW Rocket Pack,27 +x500,"Minifig Life Ring preserver, flotation,lifepreserver",27 +x507,Electric Motor 4.5V/12V Bush,45 +x50px1,"Minifig Helmet SW Rocket Pack with Boba Fett Colors Print, Dark Brown Highlights",13 +x50px2,Minifig Helmet SW Rocket Pack with Jango Fett Colors Print,27 +x50px3,"Minifig Helmet SW Rocket Pack with Boba Fett Colors Print , Dark Red Highlights",27 +x514c01,Technic Rotation Joint Ball with Arm - Pin and Hole Ends,18 +x515,Train Steam Drive Rod,36 +x53,"Road Sign Rectangle, Round Pole",38 +x54,Minifig Ninja Headgear,27 +x543,"Electric, Train 12V Flash Light Unit 4 x 4 x 1 2/3",45 +x547,Magnet Train - Small,39 +x547a,"Magnet Coupling, Train - Long Cylinder (8 mm)",39 +x547b,"Magnet Coupling, Train - Short Cylinder (6 mm)",39 +x547c,"Magnet Coupling, Train - Long Cylinder (8 mm) for Train, Base 6 x 22 Old",39 +x547u,"Magnet Coupling, Train - Undetermined Cylinder Length",39 +x55,Plastic Flag 3 x 6 Ninja Blue,38 +x550,Electric Train Motor 12V 4 x 12 x 3 1/3,45 +x550a,Electric Train Motor 12V 4 x 12 x 3 1/3 Type I Old,45 +x550b,Train Motor 12V 12 x 4 x 3 1/3 Type II Old,45 +x551,Electric Train Motor 12V Replacement,45 +x552,Electric Train 12V Brick 2 x 4 with Power Pickup,45 +x555c01,Train Base 6 x 22 with Magnets,39 +x560c01,Electric 4.5V Battery Box 7 x 11 x 3 (Complete),45 +x560px1,Cloth Flag 2 x 5 Banner with Royal Knights Lion Head Print,38 +x562,Electric Wire Plug,45 +x562a,Electric Wire Plug - Single,45 +x562b,Electric Wire Plug - Double,45 +x564,Train Steam Drive Rod Holder,36 +x579,"String Elastic bungee,cord,stretch",24 +x579c02,Electric Train Motor 4.5V 4 x 12 x 4 with Black Base,45 +x58,Cloth Sail 16 x 16,38 +x581c05,Fabuland Figure Bulldog 5 2e,42 +x581c08,Fabuland Figure Bulldog 8 2h,13 +x586c01,Fabuland Figure Crow 1 with Black Eyes 4d,42 +x586c01b,Fabuland Figure Crow 1 with White Eyes 4d,42 +x588c04,Fabuland Figure Elephant 4 with Black Eyes,13 +x58px1,Cloth Hanging 16 x 16 with Blue Stripes and Lion Head Shield Print,38 +x592c04,Fabuland Figure Horse 4 6d,13 +x593c04,"Fabuland Figure Lamb 4 with Black Eyes 7d,Lucy Lamb",42 +x593c04b,"Fabuland Figure Lamb 4 with White Eyes 7d,Lucy Lamb",28 +x599c04,Fabuland Figure Pig 4 11d,13 +x5pb02,"Scala, Clothes Baby Shirt with Green Squares and Lines Print",42 +x600,Foam Racers Ramp Base 20 x 20 with Tyre Marks and LEGO Logo,17 +x601,Foam Racers Ramp Support 22 x 7,17 +x602,"Foam Racers Barrier - Lego and Racers Logos One Side, Red Danger Stripes on Reverse",17 +x603,Foam Racers Flame Hoop 26 x 24,17 +x604,Foam Racers Cone Base 6 x 6 with 'X' Cutout,17 +x605,Foam Racers Cone Triangle Upright 6 x 6 with Top Cutout,17 +x605pb01,Foam Racers Cone Upright with Silver Stripe 6 x 6 with Top Cutout,17 +x606pb01,Foam Racers Cone Triangle Upright with Silver Stripe 6 x 6 with Bottom Cutout,17 +x607,Foam Racers Barrel with Black Warning Stripes and Lego Logo,17 +x610c01,Fabuland Door Frame 2 x 6 x 5 with Red Door,16 +x610c02,Fabuland Door Frame 2 x 6 x 5 with White Door,16 +x610c02px1,Fabuland Door Frame 2 x 6 x 5 with White Door with Red Cross Print (Sticker),42 +x610c03,Fabuland Door Frame 2 x 6 x 5 with Yellow Door,16 +x610c03px2,Fabuland Door Frame 2 x 6 x 5 with Yellow Door with Police Lock Print,16 +x610c04,Fabuland Door Frame 2 x 6 x 5 with Blue Door,16 +x617,Fabuland Caravan Front,36 +x636c01,Fabuland Building Wall 2 x 6 x 7 with Round Top Blue Window,42 +x636c02,Fabuland Building Wall 2 x 6 x 7 with Round Top Yellow Window,23 +x638,Fabuland Window Shutter,16 +x65,Plastic Flag 3 x 6 Ninja Red,38 +x655c01,Fabuland Garage Block with Blue Windows and Red Doors,16 +x655c02,Fabuland Garage Block with Yellow Windows and Yellow Doors,42 +x655c03,Fabuland Garage Block with White Windows and White Doors,16 +x656,Technic Bumper 2 x 18 Rubber,26 +x657,Technic Bumper 2 x 6 Rubber,26 +x659,Fabuland Utensil Telephone - Handset 1 x 4 with Hole,42 +x66,Minifig Wing 6 x 12,27 +x661c01,Fabuland House Block with Red Door and Red Windows,16 +x661c02,Fabuland House Block with Blue Door and Blue Windows,16 +x661c03,Fabuland House Block with Yellow Door and Yellow Windows,16 +x661c04,Fabuland House Block with White Door and White Windows,16 +x66px1,Plastic Triangle 6 x 12 Wing with Patched Cloth Print,38 +x66px10,Plastic Triangle 6 x 12 Sail with 'B05' Print,38 +x66px11,"Plastic Triangle 6 x 12 Sail with Blue 8, Horizontal Gray Stripes, Vertical Gray Stripe Print [6595]",38 +x66px13,"Plastic Triangle 6 x 12 Sail with Blue 8, Horizontal Gray Stripes, Vertical Blue Stripe Print [6351]",38 +x66px2,Plastic Triangle 6 x 12 Wing with Gray Feathers Print [6093],38 +x66px4,Plastic Triangle 6 x 12 Wing with Spider Web Print [6495 / 6499],38 +x66px7,Plastic Triangle 6 x 12 Sail with Blue Lines and Red & Blue Triangle Print,38 +x66px8,"Plastic Triangle 6 x 12 Sail with White, Red & Blue Wavy Stripe Print",38 +x66px9,Plastic Triangle 6 x 12 Sail with Palm Tree Print [6401 / 6410 / 6411],38 +x682c01,Birdcage with Yellow Bird,27 +x7,Support 2 x 2 x 8 Scala,34 +x73,Plastic Flag 3 x 6 Ninja Black,38 +x759c01,"Boat Hull Smooth Middle 12 x 6 x 3 1/3, Deck Color Light Gray",35 +x772,Minifig Wing 10 x 14,27 +x772px1,Plastic Triangle 9 x 15 Sail with Island Xtreme Stunts Logo Print [6734],38 +x772px2,Plastic Triangle 9 x 15 Sail with Orange and Blue Arctic Print [6579],38 +x772px3,"Plastic Triangle 9 x 15 Sail with Dark Pink Border and Green, Blue, Red and Yellow Stripes Print [5844 / 5847]",38 +x772px4,"Plastic Triangle 9 x 15 Sail Green with Blue, Pink and Yellow Stripes Print [5847]",38 +x772px5,Plastic Triangle 9 x 15 Sail with Extreme Team Logo Print [6572],38 +x77cc21,"String, Cord Medium Thickness 21cm / 26L",31 +x784,"Technic, Gear, Hailfire Droid Wheel",52 +x787,Scrap use 46303,24 +x799,"Magnet Coupling, Train - Short for 722 locomotive power pickup brick",39 +x814,Flag Pennant Plastic,38 +x814px1,Plastic Flag Pennant with Blue and White Dolphins on Dark Pink Background Print [5845],38 +x81c01,Motorcycle Old with Red Wheels,36 +x81c02,"Motorcycle Old [Trans-Clear Wheels, 2 x 3641 Tyres]",36 +x82c01,Scrap use 3135c03,34 +x82c03,"Hook, Slope 45 2 x 3 x 1 1/3 Double with Arm and Blue Tow Hook",34 +x837,Fabuland Umbrella Top with Squared Bottom Flaps,42 +x838,Fabuland Umbrella Stand with Round Base,42 +x844,Belville Figure Fairy,42 +x844px2,Belville Figure Fairy with Star Print,42 +x869b,"Electric, Train 4.5V Microphone 4 x 4 x 2 with Vertical Plug Sockets",45 +x87,"Electric, IR Transmitter Tower, Serial with Black Front",45 +x870a,"Electric, Train 4.5V Whistle Thick",45 +x870bc01,"Electric, Train 4.5V Whistle Adjustable with Yellow Base",45 +x871a,"Electric, Train 4.5V Whistle Control Block 4 x 8 x 2 with Forward/Stop Functions",45 +x871b,"Electric, Train 4.5V Whistle Control Block 4 x 8 x 2 with Forward/Stop/Reverse Functions",45 +x877c01,Electric Train 4.5V Automatic Pole Reverser Brick 4 x 9 with Magnet Holder and Small Blue Train Magnet,39 +x878cx1,"Train, Track 4.5V Switch Point Left with White Ties",36 +x878cx2,Train Track 4.5V Switch Point Left with Dark Gray Ties,45 +x879cx1,"Train, Track 4.5V Switch Point Right with White Ties",36 +x879cx2,Train Track 4.5V Switch Point Right with Dark Gray Ties,36 +x882,Technic Shock Absorber 6.5L Spring,24 +x883,Scala Cloth Blanket 22 x 12,42 +x883pb01,"Scala Cloth Blanket 22 x 12, Multi-Color Stripes Print (#3142)",42 +x887px1,HO Scale Accessory Petrol Pumps Esso,50 +x900c01,Bike - 2 Wheel Motorcycle with Trans-Clear Wheels [Complete Assembly],27 +x903pb1,Minifig Head Modified Onaconda Farr,13 +x933c01,Electric Mindstorms NXT RJ12 Cable End,45 +x946,Train Brick 2 x 4 x 1.333 Sliding Wheel Block,36 +x95,Flag 4 x 5 Cloth,38 +x959cx1,"Duplo, Train Track Start / Stop",4 +x95px1,Cloth Hanging 4 x 5 with Knights Kingdom Lion Head Print,38 +x967,Scala Cloth Rug,42 +x967pb02,Scala Cloth Rug with Blue Leaves and Red Berries Print,42 +x978,Duplo Door Frame 2 x 4 x 3 for Half Door,16 +x979,Duplo Door 1 x 4 x 1,16 +x979pb01,Duplo Door 1 x 4 x 1 with Yellow POLICE Print [522],16 +x988,Duplo Door / Window with Four Windows Narrow,16 +xleash,Dog Leash Elastic with Gem,42 +xleash3,Dog Leash Satin,42 +zbb013,Znap Connector 3 x 3 - 4 way B (Beam),43 +zbb014,Znap Connector 1 x 3 - 2 way A,43 +zbb015,"Znap Beam 3, 1 Hole",43 +zbb018,Znap Connector 3 x 3 - 4 way C (Closed),43 +zbb022,Wheel 68mm Znap Propeller (9 x 2),29 diff --git a/sets.csv b/sets.csv new file mode 100644 index 0000000..58c54f9 --- /dev/null +++ b/sets.csv @@ -0,0 +1,11674 @@ +set_num,name,year,theme_id,num_parts +00-1,Weetabix Castle,1970,414,471 +0011-2,Town Mini-Figures,1978,84,12 +0011-3,Castle 2 for 1 Bonus Offer,1987,199,2 +0012-1,Space Mini-Figures,1979,143,12 +0013-1,Space Mini-Figures,1979,143,12 +0014-1,Space Mini-Figures,1979,143,12 +0015-1,Space Mini-Figures,1979,143,18 +0016-1,Castle Mini Figures,1978,186,15 +00-2,Weetabix Promotional House 1,1976,413,147 +00-3,Weetabix Promotional House 2,1976,413,149 +00-4,Weetabix Promotional Windmill,1976,413,126 +005-1,Basic Building Set in Cardboard,1965,366,35 +00-6,Special Offer,1985,67,3 +00-7,Weetabix Promotional Lego Village,1976,413,3 +010-1,Basic Building Set in Cardboard,1965,366,57 +010-3,Basic Building Set,1968,366,77 +011-1,Basic Building Set,1968,366,145 +022-1,Basic Building Set,1968,366,110 +03093-1,The Race to Build It Board Game,1999,502,70 +033-2,Basic Building Set,1968,366,177 +044-1,Basic Building Set,1968,366,225 +055-2,Basic Building Set,1968,366,256 +066-1,Basic Building Set,1968,366,407 +080-1,Basic Building Set with Train,1967,366,710 +088-1,Super Set,1969,469,615 +10000-1,Guarded Inn,2001,186,256 +10001-1,Metroliner,2001,233,785 +10002-1,Railroad Club Car,2001,233,272 +10003-1,1 x 2 Sand Red Bricks,2001,254,100 +10004-1,2 x 2 Sand Red Bricks,2001,254,100 +10005-1,2 x 4 Sand Red Bricks,2001,254,50 +10006-1,1 x 6 Sand Red Bricks,2001,254,50 +10007-1,2 x 4 Sand Red Ridge Roof Tiles Steep Slope,2001,254,25 +10008-1,2 x 4 Roof Tile Sand Red,2001,254,50 +10009-1,Assorted Blue Bricks,2001,254,62 +100-1,4.5V Motor with Wheels (Small Version),1966,243,16 +10010-1,Assorted Yellow Bricks,2003,254,63 +10011-1,Assorted Blue Plates,2001,254,42 +10012-1,Assorted Yellow Plates,2001,254,42 +10013-1,Open Freight Wagon,2001,238,121 +10014-1,Caboose,2001,238,170 +10015-1,Passenger Wagon,2001,238,194 +10016-1,Tanker,2001,238,128 +10017-1,Hopper Wagon,2001,238,228 +10018-1,Darth Maul,2001,158,1868 +10019-1,Rebel Blockade Runner - UCS,2001,174,1747 +100-2,4.5V Motor with Wheels (Large Version),1966,243,27 +10020-1,"Santa Fe Super Chief, NOT the Limited Edition",2002,236,427 +10020-2,"Santa Fe Super Chief, Limited Edition",2002,236,433 +10021-1,U.S.S. Constellation,2003,404,974 +10022-1,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",2002,237,410 +10023-1,Master Builder Set,2002,324,112 +10024-1,Red Baron,2002,276,669 +10025-1,Santa Fe Cars - Set I (mail or baggage car),2002,237,325 +10026-1,Naboo Starfighter - UCS,2002,172,187 +10027-1,Train Engine Shed,2003,239,670 +10029-1,Lunar Lander,2003,387,468 +10030-1,Imperial Star Destroyer - UCS,2002,174,3115 +10036-1,Pizza To Go,2002,75,150 +10037-1,Breezeway Cafe,2002,75,194 +10039-1,Black Falcon's Fortress,2002,186,431 +10040-1,Black Seas Barracuda,2002,147,914 +10041-1,"Main Street, Reissue",2003,85,639 +10042-1,American Flag,2003,206,35 +10043-1,2x2 Electrical Plate,2002,254,1 +10044-1,Windows and Doors,2002,254,44 +10045-1,Pillars and Beams,2002,254,13 +10046-1,Brown Tiles,2002,254,100 +10047-1,Light Gray Arches,2002,254,36 +10048-1,Small Wheels and Axles,2002,254,61 +10049-1,Large Wheels and Axles,2002,254,31 +10050-1,Gray Fences,2002,254,34 +10051-1,Transparent Bricks,2002,254,50 +10053-1,Black Slopes 33,2003,254,44 +10054-1,Black Slopes 33 3 x 2 and 3 x 4,2003,254,68 +10055-1,Black Slopes 33 3 x 1 and 3 x 3,2003,254,50 +10056-1,White Plates 2 x n,2002,254,56 +10057-1,Black Plates 2 x n,2002,254,56 +10058-1,Red Plates 2 x n,2002,254,56 +10059-1,Dark Green Plates 2 x n,2002,254,56 +10060-1,Light Gray Plates 2 x n,2002,254,56 +10061-1,Black Plates 1 x n,2002,254,84 +10062-1,Red Plates 1 x n,2002,254,84 +10063-1,Dark Green Plates 1 x n,2002,254,84 +10064-1,Light Gray Plates 1 x n,2002,254,84 +10065-1,White Plates 1 x n,2002,254,84 +10066-1,Castle Accessories,2002,255,41 +10067-1,Mini-Fig Headgear,2002,254,53 +10068-1,Santa Claus,2002,227,39 +10069-1,Christmas Tree,2002,227,33 +10070-1,Reindeer,2002,227,26 +10071-1,Mr. Bunny,2003,229,25 +10072-1,TECHNIC Beams,2003,256,56 +10073-1,Bushes,2003,256,130 +10074-1,Cross Axles,2003,256,68 +10075-1,Spider-Man Action Pack,2002,488,25 +10076-1,TECHNIC Gear Wheels,2002,256,38 +10077-1,TECHNIC Motor,2003,256,55 +10078-1,Train Connection Wire,2003,257,1 +10079-1,Snowman,2003,227,42 +10080-1,Angel,2003,227,33 +10081-1,Birthday Pack Heart,2004,500,70 +10082-1,Birthday Pack Daisy,2004,500,70 +10083-1,Birthday Pack Star,2004,500,70 +10090-1,Turkey,2003,231,54 +10106-1,Snowflake,2006,227,107 +101-1,4.5V Battery Case,1969,243,1 +10111-1,Foliferous Tree,2001,254,10 +10112-1,Bush,2001,254,25 +10113-1,Cypress Trees,2001,254,5 +10114-1,2 x 2 Sand Red Roof Tiles,2001,254,100 +10115-1,Jumper Bricks,2001,254,80 +10116-1,Accessories Heart,2004,500,50 +10117-1,Accessories Daisy,2004,500,50 +10118-1,Accessories Star,2004,500,50 +10121-1,NBA Basketball Teams,2003,459,16 +10123-1,Cloud City,2003,169,707 +10124-1,Wright Flyer,2003,276,663 +10127-1,NHL Action Set with Stickers,2003,461,56 +10128-1,Train Level Crossing,2003,239,326 +10129-1,Rebel Snowspeeder - UCS,2003,174,1456 +101-3,4.5V Battery Case,1966,243,1 +10131-1,TIE Fighter Collection,2004,169,688 +10132-1,Motorized Hogwarts Express,2004,246,693 +10133-1,Burlington Northern Santa Fe Locomotive,2004,236,400 +10134-1,Y-wing Attack Starfighter - UCS,2004,174,1487 +10143-1,Death Star II,2005,174,3460 +10144-1,Sandcrawler,2005,169,1679 +10145-1,Assorted Light Gray Bricks,2004,254,124 +10146-1,Assorted Dark Gray Bricks,2004,254,62 +10147-1,Assorted Brown Bricks,2004,254,62 +10148-1,Assorted Light Gray Plates,2004,254,84 +10149-1,Assorted Dark Gray Plates,2004,254,42 +10150-1,Assorted Brown Plates,2004,254,42 +10151-1,Hot Rod,2004,278,420 +10152-1,Maersk Sealand Container Ship 2004 Edition,2004,276,982 +10152-2,Maersk Sealand Container Ship 2005 Edition,2005,276,982 +10152-3,Maersk Line Container Ship 2006 Edition,2006,276,982 +10153-1,Electric Train Motor 9V (My Own Train),2002,244,3 +10155-1,Maersk Line Container Ship 2010 Edition,2010,276,984 +10156-1,LEGO Truck,2004,85,105 +10157-1,High Speed Train Locomotive,2004,239,134 +10158-1,High Speed Train Car,2004,239,151 +10159-1,City Airport -City Logo Box,2004,53,913 +10159-2,City Airport -Full Size Image Box,2004,68,913 +10160-1,Black Ridge Roof Tiles,2004,254,48 +10161-1,Black Roof Tiles,2004,254,76 +10162-1,Red Ridge Tiles,2004,254,48 +10163-1,Red Roof Tiles,2004,254,76 +10165-1,Elf Boy,2004,227,27 +10166-1,Elf Girl,2004,227,31 +10167-1,Brickmaster Kit (with Digital Designer CD),2004,301,182 +10168-1,Mrs. Bunny,2005,229,64 +10169-1,Chicken & Chicks,2005,229,60 +10170-1,TTX Intermodal Double-Stack Car,2005,236,365 +10173-1,Holiday Train,2006,236,969 +10174-1,Imperial AT-ST - UCS,2006,174,1070 +10175-1,Vader's TIE Advanced - UCS,2006,174,1211 +10176-1,Royal King's Castle,2006,197,871 +10177-1,Boeing 787 Dreamliner,2006,276,1196 +10178-1,Motorized Walking AT-AT,2007,169,1137 +10179-1,Millennium Falcon - UCS,2007,174,5195 +10181-1,Eiffel Tower 1:300 Scale,2007,276,3428 +10182-1,Cafe Corner,2007,155,2058 +10183-1,Hobby Train,2007,397,1080 +10184-1,Town Plan,2008,104,2017 +10185-1,Green Grocer,2008,155,2358 +10186-1,General Grievous,2008,173,1084 +10187-1,Volkswagen Beetle (VW Beetle),2008,276,1625 +10188-1,Death Star,2008,174,3807 +10189-1,Taj Mahal,2008,276,5922 +10190-1,Market Street,2007,155,1250 +10191-1,Star Justice,2008,397,884 +10192-1,Space Skulls,2008,397,956 +10193-1,Medieval Market Village,2009,193,1616 +10194-1,Emerald Night,2009,240,1089 +10195-1,Republic Dropship with AT-OT,2009,165,1757 +10196-1,Grand Carousel,2009,276,3260 +10197-1,Fire Brigade,2009,155,2236 +10198-1,Tantive IV,2009,169,1408 +10199-1,Winter Toy Shop,2009,227,815 +10-2,Universal Building Set,1976,469,129 +10200-1,Custom Car Garage,2008,397,893 +10201-1,Takutanuva,2003,347,3 +10202-1,Ultimate Dume (Limited Edition with Exclusive Mask Of Power),2004,347,6 +10202-2,Ultimate Dume,2004,347,3 +10203-1,Voporak,2005,347,3 +10204-1,Vezon & Kardas,2006,347,3 +10205-1,Locomotive,2002,238,231 +102-1,4.5V Motor Set,1968,243,24 +10210-1,Imperial Flagship,2010,153,1623 +10211-1,Grand Emporium,2010,155,2186 +10212-1,Imperial Shuttle - UCS,2010,174,2502 +10213-1,Shuttle Adventure,2010,276,1203 +10213sup-1,Supplemental Pack for Shuttle Adventure Set 10213,2010,443,29 +10214-1,Tower Bridge,2010,276,4295 +10215-1,Obi-Wan's Jedi Starfighter - UCS,2010,175,675 +10216-1,Winter Village Bakery,2010,227,686 +10217-1,Diagon Alley,2011,246,2031 +10218-1,Pet Shop,2011,155,2034 +10219-1,Maersk Container Train,2011,240,1232 +10220-1,Volkswagen T1 Camper Van,2011,276,1333 +10221-1,Super Star Destroyer,2011,174,3151 +10222-1,Winter Village Post Office,2011,227,821 +10223-1,Kingdoms Joust,2012,196,1574 +10224-1,Town Hall,2012,155,2771 +10225-1,R2-D2,2012,171,2130 +10226-1,Sopwith Camel,2012,276,877 +10227-1,B-wing Starfighter,2012,174,1484 +10228-1,Haunted House,2012,558,2062 +10229-1,Winter Village Cottage,2012,227,1490 +10230-1,Mini Modulars,2012,156,1358 +10231-1,Shuttle Expedition,2011,276,1229 +10232-1,Palace Cinema,2013,155,2192 +10233-1,Horizon Express,2013,240,1349 +10234-1,Sydney Opera House,2013,276,2988 +10235-1,Winter Village Market [Initial Release],2013,227,1259 +10236-1,Ewok Village,2013,169,2023 +10237-1,The Tower of Orthanc,2013,568,2360 +10240-1,Red Five X-Wing Starfighter,2013,174,1573 +10241-1,Maersk Line Triple-E,2014,38,1515 +10242-1,Mini Cooper,2014,22,1074 +10242-2,Mini Cooper,2015,22,1076 +10243-1,Parisian Restaurant,2014,155,2469 +10244-1,Fairground Mixer,2014,22,1743 +10245-1,Santa’s Workshop,2014,228,882 +1024601-1,Adventurers Value Pack (TRU Exclusive),2001,297,3 +10246-1,Detective’s Office,2015,155,2261 +10247-1,Ferris Wheel,2015,22,2463 +10248-1,Ferrari F40,2015,22,1157 +10249-1,Winter Toy Shop,2015,227,895 +10250-1,Year Of The Snake,2013,22,244 +10251-1,Brick Bank,2016,155,2383 +10252-1,Volkswagen Beetle,2016,22,1166 +10253-1,Big Ben,2016,43,4166 +10254-1,Winter Holiday Train,2016,227,737 +10255-1,Assembly Square,2017,155,4009 +10257-1,Carousel,2017,22,2669 +10285-1,Compass Sensor for Mindstorms NXT,2011,259,1 +10287-1,Intelligent NXT Brick (Black),2009,259,1 +1029-1,Milk Delivery Truck - Tine,1999,75,90 +102A-1,Front-End Loader,1970,416,64 +102A-2,Front-End Loader,1970,416,56 +10-3,Locomotive Wheels,1977,456,8 +1030-1,TECHNIC I: Simple Machines Set,1985,1,189 +103-1,4.5V Motor Set with Rubber Tracks,1969,473,24 +1031-1,Building Cards - 1030,1983,532,20 +1032-1,TECHNIC II Set {4.5v},1985,1,278 +1033-1,Building Cards - 1032,1985,532,20 +1034-1,Teachers Resource Set,1985,532,1534 +1038-1,ERBIE the Robo-Car,1985,1,120 +1039-1,Manual Control Set 1,1986,1,39 +104-1,Replacement 4.5V Motor,1970,243,1 +1045-2,Educational LEGO Building Set,1976,511,683 +1049-1,Ships - 247 elements and 1 poster,1985,510,238 +10500-1,Horse Stable,2013,504,44 +10501-1,Zoo friends,2013,504,5 +10504-1,My First Circus,2013,504,62 +10505-1,Play House,2013,504,83 +10506-1,Train Accessory Set,2013,504,24 +10507-1,My First Train Set,2013,504,52 +10508-1,Deluxe Train Set,2013,504,134 +10509-1,Dusty and Chug,2013,504,16 +105-1,Canada Post Truck,1984,81,65 +10510-1,Ripslinger's Air Race,2013,504,40 +10511-1,Skipper's Flight School,2013,504,49 +10512-1,Jake's Treasure Hunt,2013,504,22 +10513-1,Never Land Hideout,2013,504,37 +10514-1,Jake's Pirate Ship Bucky,2013,504,56 +10515-1,Ariel's Undersea Castle,2013,504,39 +10516-1,Ariel's Magical Boat Ride,2012,504,29 +10517-1,My First Garden,2013,504,37 +10518-1,My First Construction Site,2013,504,47 +105-2,Building Set,1973,469,150 +10520-1,Big Front Loader,2013,504,12 +10521-1,Baby Calf,2014,504,9 +10522-1,Farm Animals,2014,504,12 +10524-1,Farm Tractor,2014,504,29 +10525-1,Big Farm,2014,504,121 +10526-1,Peter Pan's Visit,2014,504,39 +10527-1,Ambulance,2014,504,14 +10528-1,School Bus,2014,504,26 +10529-1,Truck,2014,504,16 +1053-1,Community Buildings,1984,533,895 +10531-1,Mickey Mouse and Friends,2012,504,65 +10532-1,My First Police Set,2014,504,39 +10538-1,Fire and Rescue Team,2014,506,30 +10539-1,Beach Racing,2014,504,36 +1054-1,Stena Line Ferry,1999,471,211 +10542-1,Sleeping Beauty's Fairy Tale,2014,579,55 +10543-1,Superman™ Rescue,2014,504,19 +10544-1,The Joker Challenge,2014,504,40 +10545-1,Batcave Adventure,2014,504,59 +10546-1,My First Shop,2014,504,39 +10550-1,Circus Transport,2013,504,9 +10552-1,Creative Cars,2013,504,42 +10553-1,Toddler Build and Play Cubes,2013,505,17 +10554-1,Toddler Build and Pull Along,2013,505,15 +10555-1,Creative Bucket,2013,505,65 +10557-1,Giant Tower,2013,504,200 +10558-1,Number Train,2013,504,31 +1056-1,Basic School Pack - 773 elements with teacher's manual,1985,534,785 +10561-1,Toddler Starter Building Set,2013,505,37 +10565-1,LEGO® DUPLO® Creative Suitcase,2014,504,135 +10566-1,Creative Picnic,2014,504,52 +10567-1,Toddler Build and Boat Fun,2014,504,18 +10568-1,Knight Tournament,2014,504,16 +10569-1,Treasure Attack,2014,504,46 +10570-1,LEGO® DUPLO® All-in-One-Gift-Set,2014,504,30 +10571-1,All-in-One-Pink-Box-of-Fun,2014,504,65 +10572-1,All-in-One-Box-of-Fun,2014,504,65 +10573-1,Creative Animals,2014,504,25 +10574-1,Creative Ice Cream,2014,504,23 +10575-1,Duplo Creative Building Cube,2014,504,75 +10576-1,Zoo Care,2014,504,9 +10577-1,Big Royal Castle,2014,504,135 +10579-1,Clubhouse Café,2014,504,16 +10580-1,Deluxe Box of Fun,2014,504,95 +10581-1,Forest: Ducks,2015,504,13 +10582-1,Forest: Animals,2015,504,39 +10583-1,Forest: Fishing Trip,2015,504,30 +10584-1,Forest: Park,2015,504,102 +10585-1,Mom and Baby,2015,504,13 +10586-1,Ice Cream Truck,2015,504,11 +10587-1,Café,2015,504,51 +10589-1,Rally Car,2015,504,13 +10590-1,Airport,2015,504,29 +10591-1,Fire Boat,2015,504,19 +10592-1,Fire Truck,2015,504,26 +10593-1,Fire Station,2015,504,104 +10594-1,Sofia the First™ Royal Stable,2015,504,38 +10595-1,Sofia the First™ Royal Castle,2015,504,87 +10596-1,Disney Princess™ Collection,2015,504,63 +10597-1,Mickey & Minnie Birthday Parade,2015,504,24 +10599-1,Batman Adventure,2015,504,46 +10600-1,Disney • Pixar Cars™ Classic Race,2015,506,29 +1060-1,Road Plates and Signs,1981,533,30 +10601-1,Delivery Vehicle,2015,504,19 +10602-1,Camping,2015,504,37 +10603-1,My First Bus,2015,504,17 +10604-1,Jake and the Never Land Pirates Treasure Island,2015,504,25 +10605-1,Doc McStuffins Rosie the Ambulance,2015,504,16 +10606-1,Doc McStuffins Backyard Clinic,2015,504,39 +10607-1,Spider-Man Web-Bike Workshop,2015,504,13 +10608-1,Spider-Man Spider Truck Adventure,2015,504,28 +106-1,UNICEF Van,1985,79,59 +1061-1,Single Disk Pack,2000,20,1 +10615-1,My First Tractor,2015,504,12 +10616-1,My First Playhouse,2015,504,25 +10617-1,My First Farm,2015,504,26 +10618-1,LEGO® DUPLO® Creative Building Box,2015,504,69 +1062-1,{Town Vehicles},1980,533,158 +10622-1,Large Creative Box,2015,504,193 +10623-1,Basic Bricks – Large,2015,505,0 +1063-1,Community Workers,1985,533,169 +1064-1,Dacta Buildings,1981,533,0 +1065-1,House Accessories - 182 elements,1985,534,196 +10654-1,XL Creative Brick Box,2016,365,1599 +10655-1,Monster Trucks,2013,37,197 +10656-1,My First LEGO Princess,2013,22,88 +10657-1,My First LEGO Set,2013,37,148 +10659-1,Blue Suitcase,2013,37,152 +10660-1,Pink Suitcase,2013,37,157 +1066-1,36 Little People + Accessories,1982,533,174 +10661-1,My First LEGO Fire Station,2013,22,90 +10662-1,LEGO Creative Bucket,2013,37,607 +10663-1,LEGO Creative Chest,2013,22,607 +10664-1,Creative Tower,2013,22,1599 +10665-1,Spider-Man: Spider-Car Pursuit,2014,591,55 +10666-1,Digger,2014,591,75 +10667-1,Construction,2014,591,159 +10668-1,The Princess Play Castle,2014,591,149 +10669-1,Turtle Lair,2014,591,107 +1067-1,Community Vehicles,1988,507,251 +10671-1,Fire Emergency,2014,591,123 +10672-1,Batman: Defend the Batcave,2014,591,150 +10673-1,Race Car Rally,2014,591,349 +10674-1,Pony Farm,2014,591,305 +10675-1,Police – The Big Escape,2014,591,146 +10676-1,Knights’ Castle,2014,591,479 +10677-1,Beach Excursion,2015,591,74 +10679-1,Pirate Treasure Hunt,2015,591,57 +10680-1,Garbage Truck,2015,591,99 +1068-1,Air Patrol,1999,87,20 +10681-1,Creative Building Cube,2014,37,599 +10682-1,Creative Suitcase,2014,37,1016 +10683-1,Road Work Truck,2015,591,132 +10684-1,Supermarket Suitcase,2015,591,132 +10685-1,Fire Suitcase,2015,591,113 +10686-1,Family House,2015,591,226 +10687-1,Spider-Man™ Hideout,2015,591,137 +1069-1,Speedboat,1999,77,22 +10692-1,Creative Bricks,2015,366,220 +10693-1,Creative Supplement,2015,366,302 +10693-1-s1,Rocket,2015,365,12 +10694-1,Creative Supplement Bright,2015,366,302 +10695-1,Creative Building Box,2015,366,579 +10696-1,Medium Creative Brick Box,2015,366,483 +10697-1,XXXL Box,2015,365,1499 +10698-1,Large Creative Brick Box,2015,366,789 +10699-1,Sand Baseplate,2015,365,1 +10700-1,Green Baseplate,2015,365,1 +1070-1,Stunt Flyer,1999,87,20 +10701-1,Gray Baseplate,2015,365,1 +10702-1,Creative Building Set,2016,365,582 +10703-1,Creative Builder Box,2017,365,499 +10704-1,Creative Box,2017,365,900 +10705-1,Creative Building Basket,2016,366,999 +10706-1,Blue Creative Box,2017,365,78 +10707-1,Red Creative Box,2017,365,55 +10708-1,Green Creative Box,2017,365,66 +10709-1,Orange Creative Box,2017,365,60 +107-1,4.5V Motor Set,1976,473,31 +107-2,Canada Post Mail Truck,1985,81,138 +10720-1,Police Helicopter Chase,2016,591,63 +10721-1,Iron Man vs Loki,2016,591,66 +10722-1,Snake Showdown,2016,591,92 +10723-1,Ariel's Dolphin Carriage,2016,591,70 +10724-1,Batman & Superman vs. Lex Luthor,2016,482,164 +10725-1,Lost Temple,2016,591,171 +10726-1,Stephanie's Horse Carriage,2016,496,58 +10727-1,Emma's Ice Cream Truck,2016,494,136 +10728-1,Mia's Vet Clinic,2016,494,182 +10729-1,Cinderella's Carriage,2016,591,116 +10734-1,Demolition Site,2017,591,162 +10735-1,Police Truck Chase,2017,591,90 +10736-1,Anna & Elsa's Frozen Playground,2017,591,94 +10737-1,Batman vs. Mr. Freeze,2017,591,63 +10740-1,Fire Patrol Suitcase,2017,591,108 +10746-1,Mia's Farm Suitcase,2017,591,104 +10747-1,Andrea and Stephanie's Beach Holiday,2017,591,141 +1075-1,LEGO People Supplementary Set,1980,511,256 +1076-1,Advent Calendar 1999,1999,207,228 +1076-10,Advent Calendar 1999 (Day 9) Fire Engine,1999,217,10 +1076-11,Advent Calendar 1999 (Day 10) Santa Minifig,1999,217,5 +1076-12,Advent Calendar 1999 (Day 11) Dog,1999,217,8 +1076-13,Advent Calendar 1999 (Day 12) Hippo,1999,217,9 +1076-14,Advent Calendar 1999 (Day 13) Hovercraft,1999,217,10 +1076-15,Advent Calendar 1999 (Day 14) Penguin,1999,217,8 +1076-16,Advent Calendar 1999 (Day 15) Elf,1999,217,12 +1076-17,Advent Calendar 1999 (Day 16) Seaplane,1999,217,10 +1076-18,Advent Calendar 1999 (Day 17) Gentleman,1999,217,10 +1076-19,Advent Calendar 1999 (Day 18) Elephant,1999,217,10 +1076-2,Advent Calendar 1999 (Day 1) Plane,1999,217,11 +1076-20,Advent Calendar 1999 (Day 19) Sea Plane,1999,217,8 +1076-21,Advent Calendar 1999 (Day 20) Cow,1999,217,10 +1076-22,Advent Calendar 1999 (Day 21) Police Car,1999,217,11 +1076-23,Advent Calendar 1999 (Day 22) Dog with Red Hat,1999,217,12 +1076-24,Advent Calendar 1999 (Day 23) Police Helicopter,1999,217,10 +1076-25,Advent Calendar 1999 (Day 24) Santa,1999,217,11 +1076-3,Advent Calendar 1999 (Day 2) Snowman,1999,217,11 +1076-4,Advent Calendar 1999 (Day 3) Speedboat,1999,217,7 +1076-5,Advent Calendar 1999 (Day 4) Girl,1999,217,8 +1076-6,Advent Calendar 1999 (Day 5) Sailboat,1999,217,9 +1076-7,Advent Calendar 1999 (Day 6) Reindeer,1999,217,12 +1076-8,Advent Calendar 1999 (Day 7) Plane,1999,217,10 +1076-9,Advent Calendar 1999 (Day 8) Girl,1999,217,8 +1077-1,Supplementary Set,1976,528,170 +10801-1,Baby Animals,2016,504,13 +10802-1,Savanna,2016,504,15 +10803-1,Arctic,2016,504,32 +10804-1,Jungle,2016,504,86 +10805-1,Around the World,2016,504,148 +10806-1,Horses,2016,504,20 +10808-1,Little Plane,2016,504,13 +108-1,Battery Box,1976,243,1 +10810-1,Push Train,2016,504,46 +10813-1,Big Construction Site,2016,504,48 +10814-1,Tow Truck Set,2016,504,26 +10818-1,My First Truck,2016,504,29 +10820-1,"Lego Duplo Creative Building Basket, Multi Color",2016,504,110 +10824-1,Miles' Space Adventures,2017,504,23 +10825-1,Miles' Exo-Flex Suit,2016,504,37 +10827-1,Mickey and Friends Beach House,2016,504,48 +10829-1,Mickey's Workshop,2016,504,18 +10830-1,Minnie's Cafe,2016,504,27 +1083-1,Supplementary Pack,1986,534,106 +10831-1,My First Caterpillar,2016,504,19 +10847-1,My First Number Train,2017,504,19 +10849-1,My First Plane,2017,504,10 +10852-1,My First Bird,2017,504,7 +1088-1,Road Burner,1999,87,25 +1089-1,Lego Basic Figures - 24 elements,1985,534,24 +1090-1,TECHNIC Control I,1986,1,397 +1092-1,TECHNIC Control II,1986,1,467 +10937-1,Arkham Asylum Breakout,2012,484,1619 +1094-1,Johnny Thunder,1999,297,13 +1095-1,Super Sub,1999,311,24 +1096-1,Race Buggy,1997,82,23 +1097-1,Res-Q Runner,1999,92,18 +1098-1,Hang Glider,1998,87,19 +1099-1,Ninja Blaster,1999,434,24 +1-10,Mini-Wheel Model Maker No. 1,1971,423,86 +1100-1,Sky Pirates,2001,68,110 +110-1,Universal Building Set,1977,469,129 +1101-1,Replacement 4.5V Motor,1977,443,1 +1102-1,Motor Bushes,1977,456,4 +1103-1,Battery Box,1977,443,1 +1103-2,DNA Student Set,2008,517,521 +1104-1,Battery Cables (75cm),1977,443,2 +1105-1,Crawler Tracks,1977,443,2 +1106-1,Battery Tender,1977,456,2 +1106-2,Basic Building Set,1999,470,413 +1107-1,Signal and Direction-Change Switch,1977,456,4 +1108-1,Magnetic Couplings,1977,456,4 +1109-1,Magnetic Couplings for Railway Car,1977,456,4 +1-11,Basic Souvenir Box,1981,469,36 +1110-1,Train Wheels,1977,456,8 +111-1,Universal Building Set,1977,469,173 +1111-1,Rubber Rims for Locomotive Wheels,1977,456,8 +111-2,Starter Train Set without Motor,1966,235,118 +1112-1,Train Sliding Wheel Blocks,1977,456,2 +1113-1,Motor Frame and Couplers,1977,443,5 +1114-1,Motor Frame,1977,443,1 +1115-1,4.5V Lighting Brick (2 x 2),1977,443,1 +1116-1,"Chain Links, Small",1977,443,25 +1118-1,"Boat Weight, Red",1977,443,1 +1119-1,Locomotive Piston Assemblies,1977,456,6 +11-2,Small Pre-School Basic Set,1973,433,31 +1120-1,Tires (42 mm),1977,443,2 +112-1,Universal Building Set,1977,469,200 +1121-1,"Propellers, Wheels and Rotor Unit",1977,443,15 +112-2,Locomotive with Motor,1966,235,74 +1122-1,Hinges,1977,443,3 +1123-1,"Ball and Socket Couplings, Articulated Joint",1977,443,8 +1124-1,Digger Bucket,1977,443,3 +1125-1,Crane Grab,1977,443,3 +1126-1,"Jack Complete Assembly, Blue",1983,443,1 +1127-1,Santa,1999,227,39 +1128-1,Santa on Skis,1997,227,21 +1129-1,Storage Cloth (Spread Bag),1980,473,1 +1129-2,Santa on Reindeer,1999,227,34 +11-3,Locomotive Traction Tires,1977,456,8 +1130-1,Storage Folder for Building Instructions (16 Internal Pockets),1980,443,1 +113-1,Universal Building Set,1977,469,293 +1131-1,Tires (42 mm) and Hubs,1981,453,4 +113-2,Motorized Train Set,1966,235,344 +1132-1,Hinges,1981,443,8 +1133-1,Brick Hinges,1981,443,8 +1134-1,Battery Wagon,1981,456,2 +1135-1,"Battery Cable Kit: 12 Connectors, 3m Cable",1981,443,13 +1135-2,"Battery Cable Kit: 16 Connectors, 3m Cable",1981,443,17 +1135-3,"Battery Cable Kit: 20 Connectors, 3m Cable",1981,443,21 +1136-1,"Buffers, Magnetic Couplers",1981,456,6 +1137-1,Train Couplings,1981,456,4 +1138-1,Replacement Rubber Wheel Treads for Trains,1981,456,8 +1139-1,Motor-Mount Plate with Magnetic Couplers,1981,456,5 +1140-1,12V Light Bricks,1981,443,2 +114-1,Universal Building Set,1977,469,390 +1141-1,Wheel Bricks with Small Red Train Wheels,1981,456,2 +114-2,Small Train Set,1966,235,88 +1142-1,Wheel Bricks with Small Black Train-Wheels,1981,456,2 +1143-1,Wheel Bricks with Large Red Train Wheels,1981,456,2 +1144-1,Train Baseplate,1981,456,1 +1145-1,Bogie Plate,1981,456,1 +1146-1,"Pushrods, Cylinder Housings",1981,456,6 +1147-1,"Light Prisms & Holder, Red/Yellow Light Covers",1981,456,7 +1148-1,Differential,1981,453,5 +1149-1,Air Police,2002,100,24 +1149-2,Bulldozer Chainlinks,1982,453,52 +1150-1,Replacement Motor 12V,1977,443,1 +115-1,Building Set,1973,469,190 +1151-1,Train Power Pick-Up Blocks,1977,456,2 +115-2,Starter Train Set with Motor,1966,235,132 +1152-1,Electric Wire,1977,456,2 +1154-1,Battery Control Unit,1986,453,1 +1160-1,"TECHNIC Pneumatic Tubing, 40cm +100cm",1985,453,2 +116-1,Starter Train Set with Motor,1967,235,364 +1161-1,TECHNIC Pneumatic Pump Cylinder 48mm,1985,453,1 +116-2,Deluxe Motorized Train Set,1968,235,361 +1162-1,TECHNIC Pneumatic Piston Cylinder 48mm,1985,453,1 +1163-1,TECHNIC Pneumatic Piston Cylinder 60mm,1985,453,1 +1164-1,TECHNIC Pneumatic 2 Way Valve and Nonreturn Valve,1985,453,2 +1168-1,Battery Box,1986,1,1 +1169-1,Bogie Plates,1986,456,2 +1170-1,Replacement Train Battery Tender,1986,456,2 +117-1,Locomotive without Motor,1967,235,99 +1171-1,Lighting Brick with Red and Blue Globes,1986,443,5 +1172-1,Colored Globes,1986,443,5 +1174-1,Motorhome for Basic Motor 4.5V/Train Motor 12V,1986,443,2 +1175-1,4.5v TECHNIC Motor,1982,453,1 +1176-1,Gear Racks and Turntables,1978,453,6 +1177-1,Santa In Truck with Polar Bear,2000,227,26 +1178-1,"Siren, Black",1986,443,1 +1179-1,Replacement Space Siren,1986,443,1 +1180-1,Space Port Moon Buggy,1999,93,25 +118-1,Electronic Train,1968,235,103 +1181-1,Space Port Spacecraft,1999,93,23 +118-2,Small Train Set,1968,235,117 +1182-1,Adventurers Raft,1999,297,18 +118-3,Motorized Freight or Passenger Train (Sears Exclusive),1969,235,419 +1183-1,Mummy and Cart,1999,297,17 +1184-1,Cart,1999,434,24 +1185-1,Raft,1999,434,25 +1186-1,Cart,1999,434,25 +1187-1,Glider,1999,434,23 +1188-1,Fire Formula,1999,87,38 +1189-1,Rocket Boat,1999,87,30 +1190-1,Retro Buggy,1999,87,90 +11905-1,DK Star Wars Brickmaster: Battle For The Stolen Crystals,2013,497,189 +11908-1,Build Your Own Adventure with Liza Mini-Doll and Touring Car,2015,494,77 +11909-1,Lego Ninjago: Build Your Own Adventure,2015,435,74 +119-1,Super Train Set,1968,235,401 +11910-1,Micro-Scale Space Cruiser,2015,126,102 +1191-1,Try Bird,1999,87,34 +11912-1,LEGO Star Wars: Build Your Own Adventure,2016,158,73 +1194-1,Classic Building Table,1999,470,408 +1195-1,Alien Encounter,2001,135,42 +1196-1,Biker with Bicycle,2000,458,7 +1197-1,Telekom Race Cyclist and Television Motorbike,2000,458,30 +1197-2,Crown Gears,1981,453,2 +1198-1,Service Team - 2 Bikers with Service Tools,2000,458,76 +1199-1,Winning Team,2000,458,110 +11995-1,Hero Recon Team,2011,400,0 +1200-1,"LEGO Town Plan Board, Large Plastic",1955,372,1 +1200-2,"LEGO Town Plan Board, Small Plastic",1956,372,1 +1200M-1,LEGO Town Plan Wooden Board,1957,372,1 +120-1,Complete Freight Train Set with Tipper Trucks,1969,235,163 +1202-1,racer polybag,2001,125,1 +1203-1,"Turntables (4 x 4), Turntables (2 x 2)",1985,443,8 +1204-1,"Fences, Red and Black",1984,443,10 +120438-1,Basic Building Set,1985,469,176 +1205-1,Keys for Wind-Up Motor,1982,443,2 +1206-1,"Round Bricks (2 x 2), White",1982,443,10 +1207-1,"Turntables (4 x 4), Red",1982,443,2 +1208-1,"Inverted Slope Bricks, Assorted, Red",1982,443,16 +1209-1,Fences and Gates,1982,443,10 +12-1,Blue Space Elements,1981,452,8 +1210-1,Winch Block and Hook Assembly,1982,443,3 +1210-2,Small Store Set,1955,372,30 +121-1,Roadster,1979,390,23 +1211-1,Space Stands and Brackets,1982,443,8 +1211-2,Small House Set,1955,372,19 +1212-1,"Rocket Tops, Black",1982,443,6 +1212-2,Small House - Left Set,1955,372,21 +1213-1,Space Radar Disks,1982,452,5 +1213-2,Small House - Right Set,1955,372,23 +1214-1,Upper Part of Motorhome for 4.5V/12V Trainmotor,1984,456,1 +1214-2,Windows and Doors,1955,371,24 +1215-1,Train Motor 4.5V Type II Lower Housing,1981,456,1 +1215-2,2 x 8 & 2 x 10 Bricks,1955,371,20 +1216-1,Semaphores with Feet,1982,456,8 +1216-2,4 x 4 Corner Bricks,1955,371,20 +1217-1,Yellow Girder Beams & Plates,1982,453,20 +1217-2,2 x 4 Bricks,1955,371,52 +1218-1,Blue Girder Beams & Plates,1982,453,20 +1218-2,2 x 3 Bricks,1955,371,60 +1219-1,TECHNIC Beams & Plates [Red],1982,453,20 +1219-2,2 x 2 Bricks,1955,371,80 +1220-1,Black Girder Beams & Plates,1982,453,20 +1220-2,1 x 2 Bricks,1955,371,104 +122-1,Loco and Tender,1969,235,96 +1221-1,TECHNIC beams - yellow,1982,453,8 +1221-2,1 x 1 Bricks,1955,371,160 +1222-1,TECHNIC beams - blue,1982,453,8 +1222-2,1 x 1 Round Bricks,1955,371,200 +1223-1,TECHNIC beams - black,1982,453,8 +1223-2,2 x 2 & 2 x 4 Curved Bricks,1955,371,14 +1223-3,2 x 2 Curved Bricks,1957,371,100 +1224-1,TECHNIC Beams [Red],1982,453,8 +1224.1-1,8 Danish Named Beams,1955,371,8 +1224-2,8 Named Beams,1955,371,8 +1224A-1,1 x 6 and 1 x 8 Bricks,1955,371,36 +1225-1,Assortment of Axles,1982,453,32 +1225-2,Mixed Plates Parts Pack,1955,371,12 +1226-1,Tractor Tires & Hubs,1982,453,12 +1226-2,6 x 8 & 2 x 8 Plates,1956,371,4 +1227-1,Gear Wheel Assortment,1982,453,15 +1227-2,4 x 8 & 2 x 8 Plates,1956,371,5 +1228-1,Differential Gear Housing,1982,453,28 +1228-2,4 x 8 Curved & 2 x 8 Plates,1956,371,5 +1229-1,TECHNIC Chainlinks,1982,453,70 +12-3,Wheel Bearings for Locomotives,1977,456,2 +1230-1,TECHNIC Bulldozer Chainlinks,1982,453,54 +1230-2,Windows and Door without Glass,1955,371,7 +123-1,Passenger Coach,1969,235,98 +1231-1,X-Large Tires & Hubs,1982,453,4 +1231-2,"Windows and Door with Glass, Red",1956,371,10 +1231-3,"Windows and Door with Glass, White",1956,371,10 +1232-1,Toggle Joints & Connectors,1982,453,46 +1233-1,Axle Assortment,1984,453,34 +1233-2,Light Masts,1958,371,4 +1234-1,Gear Wheel Assortment,1984,453,21 +1234-3,"Replacement Gearbox for Electric, Motor 4.5V/12V Type II 12 x 4 x 3 1/3",1983,443,1 +1235-1,Differential Gear Housing,1984,453,19 +1235-2,Garage Plate and Door,1955,371,3 +1236-1,TECHNIC wheels with hubs,1984,453,4 +1236-2,Garage,1955,372,59 +1236-3,12V Technic Motor,1979,453,1 +1237-1,Honda Promotional Set,2001,14,55 +1239-1,Subzero,2001,125,4 +1239-2,Remote Control for Electric Points,1985,456,8 +1240-1,"Hinges and Tilted Bearings, Light Gray",1986,443,16 +1240-2,8 Road Signs,1955,371,8 +124-1,Goods Wagon,1969,235,56 +1241-1,Digger Bucket Assembly,1985,443,4 +1241-2,8 Road Signs,1955,371,8 +1242-1,Crane Grab and Winch,1986,443,4 +1242-2,International Flags,1957,371,5 +1242D-1,5 Danish Flags,1957,371,5 +1243-1,Hinges and Couplings,1986,443,9 +1244-1,Runway Plates,1986,443,2 +1245-1,T- and Intersection Plates,1986,443,2 +1245-2,Lighting Device Pack,1957,371,3 +1246-1,Helicopter,1999,50,26 +1247-1,Patrol Car,1999,50,32 +1247-2,Esso Pumps/Sign,1955,371,2 +1248-1,Fire Boat,1999,50,24 +1248-2,Painted Trees and Bushes,1955,371,6 +1249-1,Tri-motorbike,1999,60,17 +1250-1,Dragster,1999,91,24 +125-1,Tipping Wagon,1969,235,20 +1251-1,Go-Cart,1999,91,25 +125-2,Building Set,1974,469,234 +1252-1,Shell Tanker,1999,99,106 +1253-1,Shell Car Transporter,1999,99,101 +1254-1,Shell Select Shop,1999,99,164 +1255-1,Shell Car Wash,1999,99,136 +1256-1,Shell Petrol Pump,1999,99,156 +1257-1,Trike Buggy,1999,13,30 +1258-1,Propellor Buggy,1999,11,29 +1259-1,Motorbike,1999,13,28 +1260-1,Car,1999,12,26 +1260-2,1:87 Twenty Four Models,1957,368,24 +126-1,Steam Locomotive (Push),1970,235,60 +1263-1,Easter Bunny,2000,229,29 +1264-1,Easter Chicks,2000,229,29 +1265-1,Moon Buggy,1999,93,25 +1266-1,Space Probe,1999,93,23 +1267-1,Shock Absorbers,1985,453,4 +1268-1,Bike Blaster,1999,13,28 +1269-1,White Ninja,1999,434,23 +1270-2,Trial Size Bag - Chromika,2005,37,16 +127-1,Train Set,1969,235,365 +1271-1,Jungle Surprise,1999,299,33 +1271-2,Traffic Police Set,1956,372,6 +1272-1,Blue Racer,2000,91,23 +1273-1,Red Four Wheel Driver,2000,91,20 +1274-1,Light Hover,2000,442,25 +1275-1,{Rock Saw Vehicle},2000,442,22 +1276-1,Helicopter Transport,2000,442,22 +1277-1,Drill Craft,2000,442,27 +1278-1,Johnny Thunder & Baby T,2000,298,23 +1279-1,Aeroplane,2000,298,21 +1280-1,Microcopter,2000,298,28 +128-1,Taxi Station,1979,390,33 +1281-1,Aeroplane,2000,298,25 +128-2,Mobile Crane (Train Base),1972,235,23 +1282-1,Blue Racer,2000,91,23 +128-3,Mobile Crane (Plate Base),1971,235,38 +1283-1,Red Four Wheel Driver,2000,91,20 +1284-1,Green Buggy,2000,91,23 +1285-1,Yellow Tiger,2001,91,23 +1286-1,King Leo's Cart,2000,197,22 +1287-1,Crossbows,2000,197,16 +1288-1,Fire Cart,2000,197,24 +1289-1,Catapult,2000,197,23 +1290-1,Kabaya Promotional Set: Red (Volcano Climber) RoboRider,2000,16,35 +1291-1,Power Bike,2000,16,32 +1292-1,Kabaya Promotional Set: White (Ice Explorer) RoboRider,2000,16,33 +1293-1,Kabaya Promotional Set: Yellow/Green (Swamp Craft) RoboRider,2000,16,25 +1294-1,Fire Helicopter,2000,50,31 +1295-1,Water Rider,2000,87,30 +1296-1,Land Scooper,2000,50,30 +1297-1,Speed Patroller,2000,50,34 +1298-1,Advent Calendar 1998 Classic Basic,1998,212,24 +1298-10,Advent Calendar 1998 Classic Basic (Day 9) Whale,1998,221,9 +1298-11,Advent Calendar 1998 Classic Basic (Day 10) Steamboat,1998,221,12 +1298-12,Advent Calendar 1998 Classic Basic (Day 11) Boat,1998,221,8 +1298-13,Advent Calendar 1998 Classic Basic (Day 12) Airplane,1998,221,12 +1298-14,Advent Calendar 1998 Classic Basic (Day 13) Santa,1998,221,5 +1298-15,Advent Calendar 1998 Classic Basic (Day 14) Airplane,1998,221,9 +1298-16,Advent Calendar 1998 Classic Basic (Day 15) Green Elf,1998,221,9 +1298-17,Advent Calendar 1998 Classic Basic (Day 16) Boat,1998,221,8 +1298-18,Advent Calendar 1998 Classic Basic (Day 17) Mouse,1998,221,9 +1298-19,Advent Calendar 1998 Classic Basic (Day 18) Blue Elf,1998,221,10 +1298-2,Advent Calendar 1998 Classic Basic (Day 1) Airplane,1998,221,10 +1298-20,Advent Calendar 1998 Classic Basic (Day 19) Boat,1998,221,9 +1298-21,Advent Calendar 1998 Classic Basic (Day 20) Helicopter,1998,221,11 +1298-22,Advent Calendar 1998 Classic Basic (Day 21) Red Elf,1998,221,9 +1298-23,Advent Calendar 1998 Classic Basic (Day 22) Police Boat,1998,221,9 +1298-24,Advent Calendar 1998 Classic Basic (Day 23) Truck,1998,221,10 +1298-25,Advent Calendar 1998 Classic Basic (Day 24) Airplane,1998,221,10 +1298-3,Advent Calendar 1998 Classic Basic (Day 2) Santa,1998,221,5 +1298-4,Advent Calendar 1998 Classic Basic (Day 3) Boat,1998,221,9 +1298-5,Advent Calendar 1998 Classic Basic (Day 4) Boat,1998,221,10 +1298-6,Advent Calendar 1998 Classic Basic (Day 5) Sailboat,1998,221,10 +1298-7,Advent Calendar 1998 Classic Basic (Day 6) Airplane,1998,221,10 +1298-8,Advent Calendar 1998 Classic Basic (Day 7) Helicopter,1998,221,8 +1298-9,Advent Calendar 1998 Classic Basic (Day 8) Airplane,1998,221,9 +1300-1,Lego Mosaik Set (Small),1955,370,47 +130-1,Wagon with Double Tippers,1972,235,20 +1306-1,VW Garage,1957,372,45 +1307-1,VW Auto Showroom,1957,372,51 +1308-1,Fire Station,1957,372,109 +1309-1,Church,1957,372,150 +13-1,Gray Space Elements,1981,452,10 +1310-1,ESSO Filling Station,1956,372,96 +131-1,Passenger Coach,1972,235,66 +1314-1,Stop bush / Small pulley,1987,1,210 +1315-1,Piston Rod,1987,1,50 +1316-1,Connector peg,1987,1,150 +1317-1,TECHNIC Chainlinks,1987,1,350 +1318-1,Gears Small,1987,1,68 +1319-1,Gears Large,1987,1,22 +13-2,Large Pre-School Basic Set,1973,433,92 +1320-1,Differential and Bevel Gears,1987,1,32 +132-1,Cottage,1979,390,115 +1321-1,Worm Gear and Racks,1987,1,22 +132-2,Port Crane and Flat Waggon,1972,235,58 +1322-1,"Pulleys, Tires, and Steering Wheels",1987,1,32 +1323-1,Hubs and Tyres,1985,524,24 +1324-1,Rubber Bands and String,1985,1,101 +1325-1,Assorted Spare Axles,1987,1,68 +1326-1,"Spare Axles, 12L",1987,1,28 +1327-1,Red/Black Plates,1985,524,48 +1328-1,Red/Black Plates,1985,524,32 +1329-1,Red/Black Plates,1985,525,28 +13-3,Train Motor Plate with Buffers,1977,456,5 +1330-1,Red/Black Plates,1985,525,20 +133-1,Locomotive (Push),1975,235,81 +1331-1,Red/Blue Bricks,1985,525,88 +1332-1,Red/Blue Beams,1985,525,18 +1333-1,Red/Blue Beams,1985,525,20 +1334-1,Motors (4.5V),1985,525,2 +1335-1,Battery Boxes (4.5v),1985,525,2 +1336-1,Pole Reverser Switches for Battery Box,1985,1,2 +1337-1,Connecting Leads,1985,1,18 +1338-1,Angles Swivels Turntables,1985,524,72 +1339-1,TECHNIC parts,1987,1,20 +1340-1,Weight Bricks,1987,1,18 +134-1,Mobile Crane and Waggon,1975,235,55 +1341-1,Building Plates Green,1985,524,3 +134-2,Service Station,1979,390,84 +1342-1,Electric Switches and Tiles,1986,525,7 +1343-1,Optosensors (4.5V) and Discs,1986,525,4 +1344-1,Light Bricks (4.5V),1986,524,12 +1345-1,"Pinions, Connectors, and Axles",1986,1,52 +1346-1,Touch Sensors,1987,1,2 +1347-1,Leads (4.5V) Spirals,1987,524,42 +1348-1,Base Plates Grey,1987,524,3 +1349-1,Steven Spielberg Moviemaker Set,2000,273,447 +135-1,Building Set,1973,469,338 +1351-1,Movie Backdrop Studio,2001,273,211 +1352-1,Explosion Studio,2000,273,237 +1353-1,Car Stunt Studio,2001,273,168 +1354-1,Dino Head Attack,2000,273,95 +1355-1,Temple of Gloom,2000,273,58 +1356-1,Stuntman Catapult,2001,273,29 +1357-1,Cameraman,2001,273,21 +1360-1,Director's Copter,2001,273,22 +136-1,Tanker Waggon (Shell),1975,235,81 +1361-1,Camera Car,2001,273,20 +1362-1,Air Boat,2001,273,24 +1363-1,Stunt Go-Cart,2001,273,25 +1370-1,Raptor Attack Studio,2001,274,157 +137-1,Hospital,1979,391,104 +1371-1,Spinosaurus Attack Studio,2001,274,186 +137-2,Passenger Sleeping Car,1975,235,81 +1374-1,Green Goblin,2002,488,59 +1376-1,Spider-Man Action Studio,2002,488,249 +1380-1,Werewolf Ambush,2002,273,114 +138-1,Electronic Train,1969,235,107 +1381-1,Vampire's Crypt,2002,273,171 +1382-1,Scary Laboratory,2002,273,500 +1383-1,Curse of the Pharaoh,2002,273,52 +1385-1,Clikits Bracelet Sample Set,2003,500,13 +1386-1,Clikits Bracelet Sample Set,2004,500,13 +1388-1,Huki [McDonald's Promo Set #1],2001,355,8 +1389-1,Onepu [McDonald's Promo Set #2],2001,355,8 +1390-1,Maku [McDonald's Promo Set #3],2001,355,8 +139-1,Electronic Control Unit (Forward/Backward - Stop),1969,243,13 +1391-1,Jala [McDonald's Promo Set #4],2001,355,8 +1392-1,Kongu [McDonald's Promo Set #5],2001,355,8 +1393-1,Matoro [McDonald's Promo Set #6],2001,355,8 +139A-1,Electronic Control Unit (Forward - Stop),1969,243,13 +140-1,Town Hall,1979,390,135 +140-2,Bricks'n Motor Set,1969,469,96 +14-1,Space Mini Figures,1982,452,24 +1411-1,Pirate's Treasure Hunt (Quaker Oats promo),2001,273,35 +1413-1,Rover,2001,135,29 +1414-1,Double Hover (Kabaya Promotional),2001,135,21 +1415-1,Jet Scooter,2001,135,24 +1416-1,Worker Robot,2001,135,30 +1417-1,Vakama,2001,356,28 +1417-2,Vakama (bagged),2003,356,28 +1418-1,Matau,2001,356,25 +1419-1,Nokama (Kabaya Promotional),2001,356,27 +1420-1,Nuju,2001,356,29 +1421-1,Director's Copter (Kabaya Promotional),2001,273,22 +1422-1,Camera Cart (Kabaya Promotional),2001,273,20 +1423-1,Air Boat (Kabaya Promotional),2001,273,24 +1424-1,Stunt Go-Kart (Kabaya Promotional),2001,273,25 +1425-1,Dash Jet Sub,2002,305,23 +1426-1,Cam Wing Diver,2002,305,21 +1427-1,Ogel Marine Slizer,2002,305,21 +1428-1,Small Soccer Set 1 (Kabaya Box),2002,462,24 +1428-2,Small Soccer Set 1 (Polybag),2002,462,20 +1429-1,Small Soccer Set 2 (Kabaya Box),2002,462,19 +1429-2,Small Soccer Set 2 (Polybag),2002,462,19 +14-3,Small house set,1973,433,0 +1430-1,Small Soccer Set 3 (Kabaya Box),2002,462,12 +1430-2,Small Soccer Set 3 (Polybag),2002,462,13 +1431-1,Tahnok Va (Kabaya Promotional),2002,329,27 +1432-1,Nuhvok Va (Kabaya Promotional),2002,329,26 +1433-1,Gahlok Va (Kabaya Promotional),2002,329,26 +1434-1,Lehvak Va (Kabaya Promotional),2002,329,25 +1435-1,Super Glider (Kabaya Promotional),2002,282,7 +1436-1,Ultralight Flyer (Kabaya Promotional),2002,282,16 +1437-1,Turbo Chopper (Kabaya Promotional),2002,282,13 +14-4,Train Motor Plate with Coupler,1977,456,1 +1441-1,Fikou (Tree-Spider),2003,324,13 +145-1,Building Set,1974,469,412 +146-1,Level Crossing,1976,235,68 +1461-1,Turbo Force,1992,82,31 +1462-1,Galactic Scout,1992,129,23 +1463-1,Treasure Cart,1992,190,24 +1464-1,Pirate Lookout,1992,148,17 +1467-1,Shell Race Car,1987,82,46 +1468-1,Shell Tanker,1987,76,39 +1469-1,Helicopter,1986,466,39 +1470-1,Shell Station,1987,76,32 +147-1,Refrigerated Car with Forklift,1976,235,112 +1472-1,Holiday Home,1987,69,359 +1474-1,Basic Building Set with Gift Item,1991,467,69 +1475-1,Airport Security Squad,1991,68,128 +1477-1,{Red Race Car Number 3},1991,82,39 +1478-1,Mobile Satellite Up-Link,1991,136,31 +1479-1,2-Pilot Craft,1991,129,34 +1480-1,King's Catapult,1991,190,33 +148-1,Central Station,1975,235,292 +1481-1,Desert Island,1991,148,24 +1484-1,Weetabix Town House,1987,69,215 +1489-1,Mobile Car Crane,1989,85,175 +1490-1,Town Bank,1988,85,195 +149-1,Fuel Refinery,1976,235,340 +1491-1,Dual Defender,1992,188,49 +1492-1,Battle Cove,1992,148,27 +1495-1,Basic Building Set Trial Size,1988,467,26 +1496-1,Rally Car,1987,82,52 +1497-1,Rally and Pitcrew Team,1987,82,124 +1498-1,Spy-Bot,1987,130,63 +1499-1,Twin Starfire,1987,130,89 +150-1,Straight Track,1966,243,25 +1506-1,Town Value Pack,1986,67,2 +1507-1,Space Value Pack,1986,130,2 +1509-1,Town Value Pack,1987,82,2 +15-1,Castle Mini Figures,1984,447,38 +1510-1,Space Value Pack,1987,130,2 +151-1,Curved Track,1966,243,25 +1512-1,Denken mit Lego (Thinking with Lego 250pcs),1972,517,250 +1512-2,Basic Set with Storage Case,1985,467,103 +1513-1,Denken mit Lego (Thinking with Lego 900pcs),1972,517,901 +1513-2,Basic Building Set Gift Item,1989,467,71 +1514-1,Basic Building Set Trial Size,1988,467,46 +1515-1,Town Value Pack,1989,82,2 +1516-1,Theater with Play-Scenes,1987,390,21 +1517-1,Race Car,1989,82,32 +1518-1,Race Car Repair,1989,82,79 +15-2,Large House Set,1973,433,157 +1520-1,Basic Set with Storage Case,1985,467,215 +1520-2,Town 2 for 1 Bonus Offer,1990,67,2 +152-1,Two Train Wagons,1966,235,22 +1521-1,Basic Building Set Trial Size,1989,467,24 +1522-1,Basic Building Set Trial Size,1989,467,44 +1523-1,Basic Set Trial Size,1986,467,27 +1524-1,Basic Set Trial Size,1986,467,38 +1525-1,Container Lorry,1986,70,153 +1526-1,Space Radar Buggy,1986,130,105 +1528-1,Dragster,1986,82,29 +153-1,Large Train Wagon,1966,235,15 +154-1,Switch Track - 1 Right and 1 Left,1967,243,4 +1544-1,Duplo Medium Bucket,1988,505,57 +1545-1,Build-A-Rabbit,1992,229,29 +1546-1,Airplane,1985,466,31 +1547-1,Black Knights Boat,1993,188,58 +1548-1,Stena Line Ferry,1992,471,173 +1549-1,Santa and Chimney,1992,227,62 +1550-1,Sterling Super Caravelle,1972,412,49 +155-1,"2 Cross Rails, 8 Straight Tracks, 4 Base Plates",1967,243,14 +1551-1,Chick,1985,229,6 +1551-2,Sterling Luggage Carrier,1972,412,49 +1552-1,Maersk Line Container Truck,1985,70,377 +1552-2,Sterling Boeing 727,1974,412,45 +1554-1,Silja Line Ferry,1986,471,175 +1555-1,Santa Claus,1986,227,19 +1555-2,Sterling Airways Biplane,1978,412,44 +1556-1,Christmas Hearts,1986,227,10 +1557-1,Scooter,1986,130,26 +1558-1,Mobile Command Trailer,1986,130,68 +1560-1,Glory Glider,1990,68,26 +1560-2,Lufthansa Boeing 727,1976,412,44 +1560-3,Crest Basic Building Set,1985,467,27 +156-1,2 Signals with Automatic Stop / Go Attachment,1968,243,6 +1561-1,Stunt Chopper,1990,68,30 +1561-2,Lufthansa Flight Crew,1976,364,60 +156-2,Straight Track,1976,243,25 +1562-1,Wave Jumper,1990,77,25 +1562-2,Basic Building Set,1985,467,36 +1562-3,Lufthansa Double-Decker,1976,412,50 +1563-1,Track Blaster,1990,82,30 +157-1,Curved Track,1976,243,25 +157-2,Automatic Direction Changer,1969,243,7 +1572-1,Super Tow Truck,1986,85,79 +157-3,Four Car Auto Transport,1970,423,65 +1575-1,Finnjet Ferry,1977,471,507 +1575-2,Basic Set with Board Game,1987,467,240 +1577-1,Medium Bucket,1988,467,217 +1580-1,Lunar Scout,1986,130,70 +1580-2,Silja Line Ferry,1977,471,413 +158-1,Railroad Crossing Gate,1969,243,7 +1581-1,Silja Line Ferry,1981,471,181 +1581-2,Delivery Truck,1990,75,122 +1584-1,Knights Challenge,1988,199,168 +1588-1,Basic Set,1987,467,27 +1589-1,Town Square,1978,85,441 +1589-2,TCS Breakdown Assistance,1986,85,258 +1590-2,ANWB Breakdown Assistance,1982,85,262 +159-1,"Crossover, Straight Rails",1976,243,25 +1591-1,Danone Truck,1980,75,40 +1592-1,Town Square - Castle Scene,1980,85,495 +1592-2,Town Square - Castle Scene (Dutch Version),1983,85,495 +1593-1,Super Model,1983,130,314 +1596-1,Ghostly Hideout,1993,203,37 +1597-1,Castle 3-Pack,1993,186,3 +1598-1,Basic Set,1987,467,38 +1599-1,Britannia Airways,1987,466,102 +160-1,Magnetic Couplings,1968,243,6 +1601-1,Conveyance,1976,416,187 +1602-1,Giraffe,1987,467,16 +1603-1,Trial Size Imagination,1993,467,13 +1604-1,Lion,1987,467,17 +1605-1,Snail,1987,467,14 +1606-1,Car,1987,467,23 +1607-1,Helicopter,1987,466,26 +1608-1,{Aeroplane},1987,466,24 +1609-1,Ship,1987,467,31 +16-1,Transparent Bricks,1988,443,32 +1610-1,Police Car,1991,80,23 +1610-2,Martinair Cessna,1978,412,82 +161-1,Battery Wagon with Signal and Direction - Changing,1972,243,7 +1611-1,Dune Buggy,1991,79,21 +1611-2,Martinair DC-9,1978,412,63 +1612-1,Race Car,1988,82,30 +1613-1,Basic Set in Bucket,1987,467,375 +1616-1,Space Combi-Pack,1989,132,2 +1617-1,Small Bucket,1988,467,155 +1619-1,Storage Bucket,1986,469,260 +1620-1,Astro Dart,1990,132,30 +1620-2,Factory,1978,75,233 +162-1,Locomotive without Motor,1977,235,210 +1621-1,Lunar MPV Vehicle,1990,132,96 +1624-1,King's Archer,1993,188,22 +1625-1,Snowman,1989,227,40 +1626-1,Angel,1989,227,33 +1627-1,Santa,1989,227,36 +1628-1,Santa on Sleigh with Reindeer,1989,227,63 +1630-1,Helicopter,1990,68,27 +163-1,Cargo Wagon,1977,235,127 +1631-1,Black Racer,1990,82,23 +1632-1,Motor Boat,1990,77,28 +1633-1,Loader Tractor,1990,72,24 +1636-1,Small Bucket,1990,467,185 +1637-1,Large Bucket,1990,467,493 +1638-1,Blue Bucket,1990,467,444 +1639-1,Large Bucket,1990,467,673 +164-1,Passenger Wagon,1978,235,145 +1642-1,"Lego Motion 3B, Sea Eagle",1989,468,15 +1642-2,"Lego Motion 3B, Sea Eagle - International version",1994,468,15 +1643-1,"Lego Motion 2B, Lightning Striker",1989,468,16 +1644-1,"Lego Motion 4A, Wind Whirler",1989,468,17 +1644-2,"Lego Motion 4A, Wind Whirler - International version",1994,468,17 +1645-1,"Lego Motion 1A, Gyro Bird",1989,468,19 +1646-1,"Lego Motion 3A, Land Laser",1989,468,17 +1646-2,"Lego Motion 3A, Land Laser - International version",1994,468,17 +1647-1,"Lego Motion 1B, Turbo Force",1989,468,14 +1648-1,"Lego Motion 2A, Swamp Stinger",1989,468,16 +1649-1,"Lego Motion 4B, Sea Skimmer",1989,468,17 +1649-2,"Lego Motion 4B, Sea Skimmer - International version",1994,468,17 +1650-1,Maersk Line [Promotional Container Ship],1974,363,218 +165-1,Cargo Station,1978,235,267 +1651-1,Basic Building Set Trial Size,1993,467,30 +1651-2,Maersk Line Container Truck,1980,70,305 +1652-1,Basic Set,1994,467,44 +1655-1,Viking Line Ferry,1985,471,175 +1656-1,Evacuation Team,1991,74,244 +1656-2,Viking Line Ferry,1982,471,171 +1658-1,Viking Line Ferry,1982,471,201 +1660-1,Kronprins Frederik Ferry,1996,471,164 +166-1,Flat Wagon,1978,235,51 +1661-2,Basic Building Set in Bucket,1989,467,418 +1662-1,Basic Building Set in Bucket,1989,467,630 +1663-1,Basic Building Set in Bucket,1989,467,451 +1665-1,Dual FX Racers,1990,82,108 +1666-1,Brick Vac,1991,467,140 +1668-1,Basic Building Set Trial Size,1992,469,30 +1670-1,Basic Building Set Trial Size,1992,469,28 +167-1,Loading Ramp and Car Transport Wagon,1978,235,100 +1675-1,LEGOLAND Triple Pack,1990,559,3 +1676-1,Basic Building Set,1990,467,22 +1677-1,Rabbit,1990,229,25 +1678-1,Basic Building Set Trial Size,1991,469,49 +1679-1,Basic Building Set,1990,467,43 +1680-1,Hay Cart with Smugglers,1990,194,67 +1682-1,Space Shuttle,1990,68,419 +1687-1,Midnight Transport,1993,68,271 +1688-1,Large Bucket for Her,1993,467,216 +1690-1,Helicopter,1990,68,27 +1693-1,Turbo Force,1992,82,26 +1694-1,Galactic Scout,1992,129,23 +1695-1,Treasure Chest,1992,190,24 +1696-1,Pirate Lookout,1992,148,17 +1698-1,Basic Building Set Trial Size,1991,469,26 +1699-1,Small Bucket,1993,467,183 +1-7,Basic Set,1973,469,107 +170-1,Push Along Play Train,1972,235,87 +1701-1,Basic Building Set Trial Size,1994,467,26 +1702-1,Fire Fighter 4 x 4,1994,74,59 +1703-1,Dalmatian Station Building Set,1994,467,181 +1704-1,Ice Planet Satellite Plough,1994,133,47 +1705-1,Large Dinosaur Bucket,1994,467,327 +1708-1,Large Bucket,1994,469,665 +1710-1,Snowmobile,1994,79,24 +171-1,Complete Train Set Without Motor,1972,235,146 +1711-1,Ice Planet Scooter,1994,133,19 +1712-1,Crossbow Cart,1994,186,23 +1713-1,Shipwrecked Pirate,1994,148,23 +1714-1,Surveillance Scooter,1995,142,23 +1715-1,Special Value,1995,473,400 +1715-2,Basic Bricks,1995,254,400 +1716-1,Starter Set with Building Plates,1994,467,201 +1719-1,Freestyle Bricks and Plates,1995,399,199 +1720-1,Cactus Canyon Value Pack,1994,83,3 +1721-1,Sandypoint Marina Value Pack,1994,83,3 +1722-1,Rescue / Ice Planet Combi Pack,1994,559,2 +1723-1,Castle / Pirates Combi Pack,1994,559,2 +1724-1,Bird,1994,468,9 +1725-1,Dinosaur,1994,468,11 +1726-1,Girl,1994,468,7 +1727-1,Horse,1994,468,10 +1728-1,Crystal Crawler,1996,308,97 +1729-1,Barnacle Bay Value Pack,1994,148,3 +1730-1,Snow Scooter,1994,79,24 +1731-1,Ice Planet Scooter,1994,133,19 +1732-1,Crossbow Cart,1994,186,23 +1733-1,Shipwrecked Pirate,1994,148,23 +1736-1,Wizard's Cart,1995,186,18 +1737-1,Scorpion Detector,1996,131,195 +1740-1,Kayak,1994,83,16 +1741-1,Car,1994,83,36 +1742-1,Van,1994,83,81 +1743-1,"Box of Standard Bricks, 5+",1995,473,400 +1745-1,"Box of Standard Bricks, 3+",1995,473,404 +1746-1,Wiz the Wizard,1995,186,18 +1747-1,Treasure Surprise,1996,148,25 +1749-1,Paravane,1996,308,16 +1750-1,Renault Formula 1 Racer,1992,82,32 +1752-1,Boat with Armour,1996,201,21 +1756-1,{Basic Promotional Set},1995,468,8 +1758-1,{Basic Promotional Set},1995,468,7 +1760-1,Go-Cart,1995,82,21 +1761-1,Paradisa Speedboat,1995,90,21 +1762-1,Go-Cart,1995,82,21 +1766-1,Small Freestyle Bucket,1995,399,109 +1767-1,{Basic Promotional Set},1995,468,6 +1768-1,{Basic Promotional Set},1995,468,9 +1769-1,Aircraft,1992,466,23 +1772-1,Airport Container Truck,1991,68,79 +1773-1,Airline Maintenance Vehicle with Trailer,1996,68,108 +1774-1,Aircraft,1991,68,139 +1775-1,Jet,1994,68,161 +1776-1,Large Bulk Bucket,1996,469,950 +1777-1,Sabah Promotional Set: Plane,1997,468,10 +1778-1,Sabah Promotional Set: Boat,1997,468,9 +1779-1,Sabah Promotional Set: Helicopter,1997,468,10 +1782-1,Discovery Station,1997,86,329 +1785-1,Introducing Crater Critters,1995,126,146 +1786-1,Jailbreak Joe,1995,80,189 +1787-1,Crater Cruiser,1995,145,183 +1788-1,Treasure Chest,1995,148,165 +1789-1,Star Hawk II,1995,145,292 +1790-1,Shark Fisherman,1994,83,20 +1791-1,Windsurfer & Van,1994,83,70 +1792-1,Pleasure Cruiser,1994,83,65 +1793-1,Space Station Zenon,1995,145,351 +1794-1,Dragon Master Chariot,1994,186,36 +1795-1,Imperial Cannon,1994,147,37 +1796-1,Freestyle Large Monster Bucket,1996,399,653 +1798-1,Building Table,1995,473,3 +1-8,Little House Set,1970,433,67 +180-1,Train with 5 Wagons and Circle of Track,1972,235,220 +1802-1,Tidy Treasure,1996,148,25 +1804-1,Crossbow Boat,1996,201,21 +1806-1,Underwater Scooter,1996,308,16 +1807-1,Santa Claus and Sleigh,1995,227,17 +1808-1,Light Aircraft and Ground Support,1996,68,121 +1809-1,Condor Promotional Airplane,1996,466,29 +181-1,"Complete Train Set with Motor, Signals and Switch",1972,235,143 +1815-1,Paradisa Lifeguard,1996,90,38 +1817-1,Sea Plane with Hut and Boat,1996,83,134 +1818-1,Aircraft and Ground Support Equipment and Vehicle,1996,68,203 +1819-1,Large Bucket,1995,469,950 +182-1,Train Set with Signal,1975,235,368 +1821-1,Rally Racers,1996,82,195 +1822-1,Sea Claw 7 / Neptune III,1995,308,191 +1823-1,Sabah Promotional Set: Yacht,1997,468,10 +1824-1,Flying Duck,1997,468,17 +1825-1,Racing Car,1997,468,19 +1826-1,Bird? Boat? Plane?,1997,468,21 +1827-1,Helicopter,1997,468,20 +1828-1,{Basic Promotional Set},1995,468,7 +183-1,Complete Train Set with Motor and Signal,1976,235,186 +1831-1,Maersk Line Container Lorry,1995,70,206 +1831-2,Maersk Sealand Container Lorry,1995,70,206 +1836-1,Freestyle Cat,1995,399,9 +1837-1,Freestyle Duck,1995,399,11 +1838-1,Freestyle Bird,1995,399,18 +1839-1,Freestyle Fish,1995,399,21 +1840-1,Freestyle Set,1995,399,24 +1841-1,Plane,1999,470,15 +1843-1,Space/Castle Value Pack,1996,1,2 +1843-2,Spyrius Fold-Wing Spacecraft,1996,142,60 +1843-3,Royal Knight's Catapult,1996,201,46 +1845-1,20th Anniversary Jackpot Bucket,1993,469,717 +1846-1,Freestyle Set,1996,399,25 +1847-1,Freestyle Set,1996,399,33 +1850-1,Freestyle Set,1995,399,27 +1853-1,Navigator,1996,464,158 +1854-1,House with Roof-Windows ( Velux ),1996,69,152 +1857-1,Basic Bricks,1996,473,950 +1858-1,Droid Scout,1996,131,23 +1859-1,Sabah Promotional Set: Aeroplane,1997,468,9 +1860-1,Freestyle Set,1995,399,32 +1863-1,Freestyle Trial Set,1995,399,11 +1865-1,Airliner,1994,466,28 +1867-1,Medium Bulk Bucket,1997,469,400 +1868-1,Freestyle Box,1996,399,220 +1869-1,South African Flag,1996,468,80 +1870-1,Freestyle Set,1995,399,43 +18703535-1,Hamster Play Time - Friends Magazine - Polish Edition,2016,497,25 +1871-1,Pirates Cannon,1994,148,17 +1872-1,Imperial Guard Camp,1994,147,28 +1873-1,Pirate Treasure,1994,148,49 +1874-1,Polly Pick-Up,1993,469,141 +1875-1,Meteor Monitor,1990,128,32 +1876-1,Soil Scooper,1990,85,73 +1877-1,Crusader's Cart,1990,194,60 +1878-1,Small Bucket,1991,467,406 +1879-1,Large Bucket,1992,467,441 +1880-1,XL Bucket,1992,467,576 +1881-1,Small Bucket,1991,467,288 +1882-1,Large Bucket,1991,467,451 +1884-1,Small Bucket,1992,467,193 +1885-1,XL Bucket,1992,467,465 +1887-1,Scout Patrol Ship,1992,129,30 +1888-1,Black Knights Guardshack,1992,188,49 +1889-1,Pirate's Treasure Hold,1992,148,37 +1890-1,Octan Racer,1992,82,47 +1891-1,Four Set Value Pack,1992,559,4 +1895-1,Sky Patrol,1992,80,89 +1896-1,Trauma Team,1992,78,296 +1898-1,Weetabix Dragster,1989,82,27 +1899-1,Weetabix Racer,1989,82,24 +190-1,Farm Set,1974,364,526 +1901-2,Mini Basic Set,1984,469,36 +1905-1,Mini Basic Set,1982,469,36 +1906-1,Majisto's Tower,1994,186,196 +1910-1,Promo Basic Set,1982,469,88 +1911-1,Basic Set,1983,469,34 +1912-1,"LEGO Building Set A, Car",1983,468,20 +1913-1,"LEGO Building Set B, Boat",1983,468,27 +1914-1,"LEGO Building Set C, Helicopter",1983,468,20 +1915-1,"LEGO Building Set D, Aircraft",1983,468,20 +1916-1,Starion Patrol,1993,140,23 +1917-1,King's Catapult,1993,188,22 +19-2,Locomotive Piston Assemblies,1977,456,6 +1920-1,Promo Basic Set,1982,469,119 +192-1,Policemen,1977,364,86 +1922-2,Basic Building Set,1983,469,60 +1923-1,Viking Line Ferry,1989,471,184 +1924-1,Motorcycle,1983,13,103 +1924-2,Viking Line Ferry,1992,471,232 +1929-1,Guardsman,1988,468,13 +1932-1,Basic Building Set + Storage Case,1984,469,82 +194-1,Family,1976,364,94 +1944-1,Basic Set with Storage Case,1983,469,142 +195-1,Airplane,1975,364,89 +1952-1,Dairy Tanker,1989,75,128 +1953-1,Mouse,1989,468,14 +1954-1,Surveillance Scooter,1995,142,23 +1954-2,Basic Set with Storage Case,1984,469,141 +1955-1,Color Line Ferry,1993,471,244 +1958-1,Windsurfer,1993,83,21 +1959-1,Ultra-Light,1993,68,30 +1960-2,Special Value 96 pieces (Canadian Set),1985,467,104 +196-1,Antique Car,1975,364,115 +1962-1,Basic Building Set,1985,467,219 +1963-1,Basic Set with Storage Case,1986,467,221 +1964-1,Basic Building Set,1985,467,27 +1965-1,Basic Building Set,1985,469,38 +1966-1,Car Repair Shop,1985,85,300 +1967-1,System Bonus Pack,1985,559,5 +1967-2,Town Value Pack,1985,85,3 +1968-1,Space Express,1985,130,183 +1969-1,Mini Robot,1993,140,38 +1969-2,Space Value Pack,1985,130,3 +1970-1,Pirate's Gun Cart,1993,148,31 +197-1,Farm Vehicle and Animals,1976,364,120 +1971-1,Black Knight's Battering Ram,1993,188,36 +1972-1,Go-Cart,1985,12,98 +1973-1,Emirates Airliner,1989,68,138 +1974-1,Legoland Triple Pack,1989,559,3 +1974-2,Flyercracker USA,1989,68,74 +1974-3,Smuggler's Hayride,1989,194,50 +1974-4,Star Quest,1989,132,37 +1976-1,Town 3-Pack,1984,67,3 +1977-1,Space Value Pack,1983,130,3 +1978-1,Build-A-Santa,1991,227,39 +1978-2,Town Value Pack,1983,67,3 +1979-1,Snowman,1991,227,42 +1979-2,Town Value Pack,1984,67,3 +1980-1,Santa's Elves,1991,227,30 +198-1,Cowboys,1977,364,39 +1983-1,Space Value Pack,1984,130,3 +1990-1,F1 Race Car,1993,82,35 +199-1,Scooter,1977,364,41 +1991-1,Racing Pickup,1993,82,81 +1992-1,Dragsters,1993,82,103 +1993-1,Race Value Pack,1993,82,3 +1994-1,Turtle Bucket with Motor,1992,469,192 +1995-1,Racer,1999,470,15 +1997-1,Town Value Pack,1985,67,3 +1998-1,Silja Line Ferry,1991,471,375 +1999-1,Space Value Pack,1985,130,3 +20001-1,BrickMaster,2007,22,103 +20002-1,Fire Truck,2008,58,56 +20003-1,Dinosaur,2008,22,102 +2000409-1,Window Exploration Bag,2010,507,5200 +20004-1,Jungle Cruiser,2008,265,83 +2000413-1,Connections Kit,2010,432,2045 +2000414-1,Starter Kit,2010,507,239 +2000415-1,Identity and Landscape Kit,2010,432,1536 +2000416-1,Duck,2012,507,6 +2000421-1,FLL Trophy Small,2013,398,233 +2000422-1,FLL Trophy Medium,2013,398,267 +2000423-1,FLL Trophy Large,2013,398,437 +2000424-1,Story Starter (Sample Set),2014,507,96 +2000430-1,Identity and Landscape Kit,2013,432,2844 +2000431-1,Connections Kit,2013,432,2448 +2000445-1,Crossing the River,2016,507,14 +2000446-1,"Building My SG - Reflect, Celebrate, Inspire",2015,517,243 +20005-1,Winged Rahi (Klakk),2008,324,38 +20006-1,Clone Turbo Tank - Mini,2008,162,64 +20007-1,Republic Attack Cruiser - Mini,2009,162,84 +20008-1,Tow Truck,2009,22,79 +20009-1,AT-TE Walker - Mini,2009,161,94 +200-1,Family,1974,364,78 +20010-1,Republic Gunship - Mini,2009,161,94 +20011-1,Garbage Truck,2009,22,74 +20012-1,Click,2009,324,33 +20013-1,Mini Neptune Carrier,2010,316,63 +20014-1,4 x 4 Dynamo,2010,22,69 +20015-1,Alligator,2010,22,89 +20016-1,Imperial Shuttle - Mini,2010,163,70 +20017-1,Dagger Trap,2010,271,52 +20018-1,AT-AT Walker - Mini,2010,163,83 +20019-1,Slave I,2011,163,76 +200-2,Building Ideas Book,1985,501,0 +20020-1,Mini Turbo Shredder,2011,435,83 +20021-1,Bounty Hunter Gunship - Mini,2011,160,81 +200-3,"LEGO Town Plan Board, Plastic",1957,372,1 +200-4,"LEGO Town Plan Board, Continental European Cardboard Version",1959,372,1 +200-5,"LEGO Town Plan Board, UK / Australian Cardboard Version",1962,372,1 +2008-1,Heart 2008,2008,232,92 +2009-2,Heart 2009,2009,232,92 +200A-1,LEGO Town Plan Wooden Board,1957,372,1 +200M-1,LEGO Town Plan Wooden Board,1957,372,1 +20-1,Universal Building Set,1976,469,217 +2010-1,Happy Holidays - The Christmas Game,2010,502,139 +2011-2,Lego Duck,2011,301,91 +20200-1,"MBA Level One - Kit 1, Space Designer",2011,432,177 +20201-1,"MBA Level One - Kit 2, Microbuild Designer",2011,432,221 +20202-1,"MBA Level One - Kit 3, Robot Designer",2011,432,158 +20203-1,"MBA Level Two - Kit 4, Flight Designer",2011,432,145 +20204-1,"MBA Level Two - Kit 5, Creature Designer",2012,432,232 +20205-1,MBA Level Two - Kit 6 Auto Designer,2012,432,188 +20206-1,"MBA Level Three - Kit 7, The Lost Village",2012,432,229 +20207-1,"MBA Level Three - Kit 8, The Forbidden Bridge",2012,432,220 +20208-1,"MBA Level Three - Kit 9, The Dark Lair",2012,432,183 +20214-1,MBA Adventure Designer (Kits 7 - 9 Redesign),2013,432,3 +20215-1,MBA Invention Designer (Kits 10 - 12),2013,432,675 +20216-1,MBA Robot & Micro Designer (Kits 2 - 3 Redesign),2013,432,2 +20217-1,MBA Action Designer (Kits 4 - 6 Redesign),2013,432,3 +2025-1,Boat,1999,470,12 +2027-1,Pen Pack Alpha,2000,501,0 +2032-1,Helicopter,1999,470,18 +2045-1,Car,1999,470,17 +2047-1,Plane,1999,470,13 +205-2,Universal Figure Set,1978,364,118 +2063-1,Stormer 2.0,2011,401,31 +2064-1,Air Ambulance,2007,60,115 +2065-1,Furno 2.0,2011,401,30 +2067-1,Evo 2.0,2011,401,31 +2068-1,Nex 2.0,2011,401,31 +2069-1,Boat,1999,470,15 +2070-1,Ring Me Rabbit,1987,504,3 +2075-1,Prop Plane,1999,470,14 +208-1,Mother with Baby Carriage,1978,364,46 +2-1,Extra Large Tires & Hubs,1982,1,4 +2-10,Mini-Wheel Model Maker No. 2,1971,423,63 +21000-1,Sears Tower,2008,252,69 +21000-2,Willis Tower,2011,252,69 +21001-1,John Hancock Center,2008,252,69 +21002-1,Empire State Building,2009,252,77 +21003-1,Seattle Space Needle,2009,252,57 +21004-1,Solomon R. Guggenheim Museum,2009,252,208 +21005-1,Fallingwater,2009,252,811 +21006-1,The White House,2010,252,560 +21007-1,Rockefeller Center,2010,252,240 +21008-1,Burj Khalifa,2011,252,208 +21009-1,Farnsworth House,2011,252,546 +210-1,Cowboys,1976,364,39 +21010-1,Robie House,2011,252,2276 +21011-1,Brandenburg Gate,2011,252,363 +21012-1,Sydney Opera House,2012,252,270 +21013-1,Big Ben,2012,252,346 +21014-1,Villa Savoye,2012,252,659 +21015-1,The Leaning Tower of Pisa,2013,252,344 +21016-1,Sungnyemun,2012,252,325 +21017-1,Imperial Hotel,2013,252,1187 +21018-1,United Nations Headquarters,2013,252,596 +21019-1,Eiffel Tower,2014,252,320 +210-2,Small Store Set,1958,372,30 +21020-1,The Trevi Fountain,2014,252,730 +21021-1,Marina Bay Sands,2014,252,601 +21022-1,Lincoln Memorial,2015,252,273 +21023-1,Flatiron Building,2015,252,470 +21024-1,Louvre,2015,252,694 +21026-1,Venice,2016,253,212 +21027-1,Berlin,2016,253,289 +21028-1,New York City,2016,253,597 +21029-1,Buckingham Palace,2016,252,779 +21030-1,United States Capitol Building,2016,252,1031 +21031-1,Burj Khalifa,2016,252,332 +21032-1,Sydney,2017,253,361 +21033-1,Chicago,2017,253,444 +21034-1,London,2017,253,467 +21035-1,Solomon R. Guggenheim Museum®,2017,252,744 +21050-1,Architecture Studio,2013,252,1210 +2-11,Medium Basic LEGO Set,1976,433,130 +21100-1,Shinkai 6500 Submarine,2011,576,412 +21101-1,Hayabusa,2012,576,364 +21102-1,Minecraft Micro World,2012,577,458 +21103-1,Back to the Future Delorean,2013,576,400 +21104-1,Mars Science Laboratory Curiosity Rover,2014,576,295 +21105-1,Minecraft Micro World: The Village,2013,577,465 +21106-1,Minecraft Micro World: The Nether,2013,577,469 +21107-1,Micro World - The End,2014,577,439 +21108-1,Ghostbusters,2014,576,507 +21109-1,Exo-Suit,2014,576,320 +211-1,Mother and Baby with Dog,1976,364,44 +21110-1,Research Institute,2014,576,163 +2111-1,Kai,2011,435,19 +21113-1,The Cave,2014,577,249 +21114-1,The Farm,2014,577,262 +21115-1,The First Night,2014,577,408 +21116-1,Crafting Box,2014,577,517 +21117-1,The Ender Dragon,2014,577,633 +21118-1,The Mine,2014,577,921 +21119-1,The Dungeon,2015,577,219 +211-2,Small House Set,1958,372,19 +21120-1,The Snow Hideout,2015,577,327 +2112-1,Cole,2011,435,18 +21121-1,The Desert Outpost,2015,577,518 +21122-1,The Nether Fortress,2015,577,570 +21123-1,The Iron Golem,2016,577,208 +21124-1,The End Portal,2016,577,558 +21125-1,The Jungle Tree House,2016,577,706 +21126-1,The Wither,2016,577,318 +21127-1,The Fortress,2016,577,982 +21128-1,The Village,2016,577,1596 +21129-1,The Mushroom Island,2017,577,247 +21130-1,The Nether Railway,2017,577,387 +2113-1,Zane,2011,435,19 +21131-1,The Ice Spikes,2017,577,454 +21132-1,The Jungle Temple,2017,577,598 +21133-1,The Witch Hut,2017,577,502 +21134-1,The Waterfall Base,2017,577,729 +2114-1,Chopov,2011,435,20 +2115-1,Bonezai,2011,435,21 +2116-1,Krazi,2011,435,22 +21-2,Truck,1971,433,33 +21200-1,Life of George,2011,301,144 +21201-1,Life of George II,2012,301,144 +21204-1,Town Master,2014,590,256 +21205-1,Battle Towers,2014,590,212 +21206-1,Create and Race,2014,590,222 +21208-1,Resort Designer,2014,590,262 +212-1,Small House - Left Set,1958,372,21 +2121-1,Jack in the Box Promotional Set: Stomper,1997,468,11 +212-2,Scooter,1976,364,41 +2122-1,Jack in the Box Promotional Set: Bob,1997,468,14 +2123-1,Jack in the Box Promotional Set: Spinner,1997,468,12 +2125-1,Green Bucket,1997,504,69 +2126-1,Train Cars,1997,236,382 +2127-1,Jack in the Box Promotional Set: Nanas,1997,468,13 +2129-1,Blast-Off Dragster,1997,12,63 +2130-1,Danone Promotional Set: Duck,1998,468,7 +21301-1,Birds,2015,576,579 +21302-1,The Big Bang Theory,2015,576,498 +21303-1,WALL•E [Original Version],2015,576,676 +21303-2,WALL•E [Fixed Neck Version],2015,576,675 +21304-1,Doctor Who,2015,576,623 +21305-1,Maze,2016,576,768 +21306-1,Yellow Submarine,2016,576,553 +21307-1,Caterham Seven 620R,2016,576,770 +21308-1,Adventure Time™,2016,576,496 +21309-1,LEGO Ideas NASA Apollo Saturn V,2017,576,1969 +213-1,Airplane Ride,1977,364,44 +2131-1,Danone Promotional Set: Hippo,1998,468,10 +213-2,Small House - Right Set,1958,372,21 +2132-1,Danone Promotional Set: Cow,1998,468,10 +2133-1,Danone Promotional Set: Impala,1998,468,12 +2134-1,Danone Promotional Set: Bison,1998,468,10 +2135-1,Sabah Promotional Set: Aircraft,1997,468,9 +2136-1,Sabah Promotional Set: Airplane,1997,468,12 +2137-1,Sabah Promotional Set: Swamp Boat,1997,468,8 +2138-1,Sabah Promotional Set: Helicopter,1997,468,8 +2139-1,Sabah Promotional Set: Steam Liner,1998,468,12 +2140-1,ANWB Roadside Assistance Crew,1996,85,258 +214-1,Road Repair,1977,364,64 +214.10-1,"1 x 2 x 4 Glass Door in Frame, Left",1961,371,26 +214.1-1,1 x 6 x 3 Window with Frame,1961,371,12 +2141-1,Surge 2.0,2011,401,30 +214-2,"Ten Windows and Doors, Red",1958,371,10 +214.2-1,1 x 6 x 2 Triple-Pane Window in Frame,1961,371,16 +2142-1,Breez 2.0,2011,401,29 +214-3,"Ten Windows and Doors, White",1958,371,10 +214.3-1,1 x 6 x 2 Double-Pane Window in Frame w/Shutters,1961,371,16 +2143-1,Rocka 3.0,2011,401,30 +214.4-1,1 x 4 x 2 Window in Frame,1961,371,18 +2144-1,Nex 3.0,2011,401,29 +214.5-1,1 x 3 x 2 Window in Frame,1961,371,24 +2145-1,Stormer 3.0,2011,401,31 +214.6-1,1 x 2 x 2 Window in Frame,1961,371,15 +2146-1,Freestyle with Storage Case,1996,399,819 +214.7-1,1 x 1 x 2 Window Frame,1961,371,38 +2147-1,Dragon Fly,1997,68,182 +214.8-1,1 x 2 x 1 Window Frame,1961,371,38 +2148-1,LEGO Truck,1997,85,105 +2148-2,LEGO Truck [Lego Toy Fair 1998 25th Anniversary Edition],1998,85,106 +214.9-1,1 x 1 x 1 Window Frame,1961,371,40 +2149-1,Color Line Container Lorry,1997,70,184 +2150-1,Train Station,1996,236,609 +215-1,Red Indians,1977,364,81 +2151-1,Robo Raider,1997,138,137 +215-2,2 x 8 Bricks,1958,371,30 +2152-1,Robo Raptor,1997,138,222 +2153-1,Robo Stalker,1997,138,279 +2154-1,Robo Master,1997,138,362 +2155-1,Aircraft,2000,467,18 +2156-1,Car,2000,467,17 +2157-1,Boat,2000,467,16 +2158-1,Helicopter,2000,467,10 +2159-1,9V Train Track Starter Collection,2006,244,24 +2160-1,Crystal Scavenger,1997,309,112 +216-1,2 x 10 Bricks,1958,371,25 +2161-1,Aqua Dozer,1997,309,135 +2162-1,Hydro Reef Wrecker,1997,309,287 +2163-1,Sabah Promotional Set: Toucan,1997,468,9 +2164-1,Sabah Promotional Set: Whale,1997,468,9 +2165-1,Rhinocerous,1998,468,10 +2166-1,Animal,1998,468,10 +2167-1,Sabah Promotional Set: Penguin,1997,468,8 +2170-1,Cole DX,2011,435,21 +217-1,Service Station,1977,364,210 +2171-1,Zane DX,2011,435,22 +217-2,4 x 4 Corner Bricks,1958,371,30 +2172-1,Nya,2011,435,21 +2173-1,Nuckal,2011,435,26 +2174-1,Kruncha,2011,435,24 +2175-1,Wyplash,2011,435,23 +218-1,Firemen,1977,364,277 +2181-1,Infomaniac,1997,84,4 +218-2,2 x 4 Bricks,1958,371,78 +2182-1,Bulk 3.0,2011,401,30 +2183-1,Stringer 3.0,2011,401,29 +2186-1,Seaplane,1997,399,77 +2187-1,Racer,1997,399,64 +2188-1,Speedboat,1997,399,58 +219-1,2 x 3 Bricks,1958,371,90 +2191-1,Furno 3.0,2011,401,28 +2192-1,Drilldozer,2011,403,61 +2193-1,Jetbug,2011,403,63 +2194-1,Nitroblast,2011,403,57 +2199-1,Large Bulk Bucket,1997,469,466 +220-1,2 x 2 Bricks,1958,371,120 +22-1,Car,1971,433,47 +221-1,Idea Book #1,1973,497,0 +221-2,1 x 2 Bricks,1958,371,156 +222-1,Building Ideas Book,1976,501,0 +222-2,1 x 1 Bricks,1958,371,240 +2229-1,Bucketful of Fun,1998,470,201 +2230-1,Helicopter and Raft,2008,59,106 +2231-1,Waspix,2011,403,48 +223-2,1 x 1 Round Bricks,1958,371,160 +2232-1,Raw-Jaw,2011,403,52 +2233-1,Fangz,2011,403,53 +2234-1,Police Chase,1998,103,150 +2235-1,Fire Lord,2011,403,125 +2236-1,Scorpio,2011,403,104 +224-1,2 x 2 & 2 x 4 Curved Bricks,1956,371,14 +224-3,2 x 2 Curved Bricks,1958,371,120 +2250-1,Advent Calendar 2000,2000,207,240 +2250-10,Advent Calendar 2000 (Day 9) Duck,2000,217,7 +2250-11,Advent Calendar 2000 (Day 10) Plane,2000,217,9 +2250-12,Advent Calendar 2000 (Day 11) Elf,2000,217,10 +2250-13,Advent Calendar 2000 (Day 12) Duck,2000,217,7 +2250-14,Advent Calendar 2000 (Day 13) Boat,2000,217,9 +2250-15,Advent Calendar 2000 (Day 14) Rhinocerous,2000,217,10 +2250-16,Advent Calendar 2000 (Day 15) Girl,2000,217,10 +2250-17,Advent Calendar 2000 (Day 16) Plane,2000,217,10 +2250-18,Advent Calendar 2000 (Day 17) Bull,2000,217,11 +2250-19,Advent Calendar 2000 (Day 18) Hovercraft,2000,217,10 +2250-2,Advent Calendar 2000 (Day 1) Plane,2000,217,12 +2250-20,Advent Calendar 2000 (Day 19) Christmas Bunny,2000,217,7 +2250-21,Advent Calendar 2000 (Day 20) Jet,2000,217,9 +2250-22,Advent Calendar 2000 (Day 21) Parrot,2000,217,9 +2250-23,Advent Calendar 2000 (Day 22) Truck,2000,217,10 +2250-24,Advent Calendar 2000 (Day 23) Helicopter,2000,217,8 +2250-25,Advent Calendar 2000 (Day 24) Santa,2000,217,11 +2250-3,Advent Calendar 2000 (Day 2) Snowman,2000,217,11 +2250-4,Advent Calendar 2000 (Day 3) Ship,2000,217,12 +2250-5,Advent Calendar 2000 (Day 4) Boy,2000,217,10 +2250-6,Advent Calendar 2000 (Day 5) Elephant,2000,217,10 +2250-7,Advent Calendar 2000 (Day 6) Waterplane,2000,217,10 +2250-8,Advent Calendar 2000 (Day 7) Giraffe,2000,217,13 +2250-9,Advent Calendar 2000 (Day 8) Boat,2000,217,10 +225-1,1 x 6 and 1 x 8 Bricks,1958,371,54 +2254-1,Mountain Shrine,2011,435,168 +2255-1,Sensei Wu,2011,435,20 +2256-1,Lord Garmadon,2011,435,23 +2257-1,Spinjitzu Starter Set,2011,435,47 +2258-1,Ninja Ambush,2011,435,71 +2259-1,Skull Motorbike,2011,435,156 +2260-1,Ice Dragon Attack,2011,435,158 +226-1,8 Named Beams,1958,371,8 +226-2,Idea Book,1981,497,0 +2263-1,Turbo Shredder,2011,435,298 +227-1,4 x 8 Curved & 2 x 8 Plates,1958,371,5 +228-1,4 x 8 & 2 x 8 Plates,1958,371,5 +2282-1,Rocka XL,2011,401,174 +2283-1,Witch Doctor,2011,403,337 +229-1,6 x 8 & 2 x 8 Plates,1958,371,4 +229.1-1,2 x 8 Plates,1962,371,8 +230-1,Hairdressing Salon,1978,405,227 +230-2,Six Trees and Bushes,1958,371,6 +2304-1,Large Building Plate,1992,504,1 +23-1,Delivery Truck Set,1971,433,64 +231-1,Hospital,1978,405,400 +231-2,Esso Pumps/Sign,1956,371,2 +2312-1,Duplo Supplementary Bricks,1987,505,39 +232-1,Bungalow,1978,405,472 +232-2,16 Road Signs,1958,371,16 +233-1,Light Masts,1958,371,4 +234-1,Letter Bricks,1958,371,50 +235-1,Garage Plate and Door (White Base and Door Frame),1958,371,3 +235-2,Garage Plate and Door (Gray Base and Door Frame),1968,371,5 +236-1,Garage with Automatic Door (White base and door frame),1956,372,69 +236-2,Garage and Van,1957,372,69 +236-3,Garage with Automatic Door (Gray base and door frame),1968,372,59 +237-1,Number Bricks,1960,371,50 +238-1,Lego System Idea Book no. 1,1960,497,0 +238-2,Lego System Idea Book (by Samsonite),1961,497,0 +238-3,Lego System Idea Book no. 1,1962,497,0 +238-4,Lego System Ideas Book no. 2,1962,497,0 +238-5,Lego System Ideas Book no. 2,1963,497,0 +238-6,Lego System Idea Book,1963,497,0 +238-7,So Bauen Wir Mit LEGO,1963,497,0 +238-8,Lego System Ideas Book No. 3,1964,497,0 +238-9,Lego System Idea Book (by Samsonite),1964,497,0 +239-1,Wir bauen mit Lego Idea Book,1966,497,0 +239-2,Das große Lego-Buch Idea Book,1968,497,0 +240-1,"Wooden Storage Box Large, Empty",1967,383,-1 +240-2,Idea Book,1967,497,0 +24-1,Minitalia Train,1971,433,77 +241-1,4.5v Idea Book,1969,497,0 +241601-1,Miku the dragon,2016,600,12 +241602-1,Jynx cat,2016,600,26 +242-1,International Flags,1958,371,5 +242.1-1,6 International Flags -1-,1963,371,6 +242-2,5 Danish Flags,1958,371,5 +242.2-1,6 International Flags -2-,1963,371,6 +242.3-1,6 International Flags -3-,1963,371,6 +242A-1,"International Flags - Italy, Switzerland, Belgium, Germany, Netherlands",1961,371,5 +242B-1,"International Flags - Britain, France, Austria, Portugal, LEGO",1961,371,5 +242I-1,International Flags,1958,371,5 +245-1,Lighting Device Pack,1958,371,3 +245-2,Two Santas and Tree,1978,227,39 +2453-1,Large Bulk Bucket,1998,470,950 +246-2,Santa with Sleigh and Reindeer,1977,227,68 +248-2,Factory With Conveyor Belt,1971,416,208 +2490-1,Insectoids Combi Set (Woolworth's UK promo),1998,134,3 +2494-1,400-Piece Purple Bucket,1998,469,400 +250-1,Idea Book 250,1987,497,1 +250-3,Aeroplane and Pilot,1974,364,89 +2504-1,Spinjitzu Dojo,2011,435,381 +2505-1,Garmadon's Dark Fortress,2011,435,516 +2506-1,Skull Truck,2011,435,517 +2507-1,Fire Temple,2011,435,1174 +2508-1,Blacksmith Shop,2011,435,178 +2509-1,Earth Dragon Defense,2011,435,226 +251-1,Windmill with Miller and his Wife,1974,364,90 +2516-1,Ninja Training Outpost,2011,435,46 +2518-1,Nuckal's ATV,2011,435,174 +2519-1,Skeleton Bowling,2011,435,373 +2520-1,Battle Arena,2011,435,462 +252-1,Locomotive with Driver & Passenger,1974,364,115 +2521-1,Lightning Dragon Battle,2011,435,643 +2531-1,Rescue Helicopter and Jeep,1998,83,99 +253-2,Helicopter and Pilot,1975,364,49 +2532-1,Aircraft and Ground Crew,1998,68,143 +2535-1,Formula 1 Racing Car,1998,82,30 +2536-1,Divers Jet Ski,1998,86,24 +2537-1,Extreme Team Raft,1998,87,20 +2538-1,Fright Knights Fire Cart,1998,195,20 +2539-1,Fright Knights Flying Machine,1998,195,21 +2540-1,Fright Knights Catapult Cart,1998,195,26 +254-1,Family,1975,364,94 +2541-1,Adventurers Car,1998,297,24 +2542-1,Adventurers Aeroplane,1998,297,21 +2543-1,Spacecraft,1998,144,18 +2544-1,SHELL Promotional Set: TECHNIC Microbike,1998,13,27 +255-2,Farming Scene,1975,364,120 +2554-1,Formula 1 Pit Stop,1998,82,172 +2555-1,Swing Set,1998,323,53 +2556-1,Ferrari Formula 1 Racing Car,1997,278,579 +256-1,Police Officers and Motorcycle,1976,364,85 +258-1,Zoo with Baseboard,1976,364,472 +2584-1,Biker Bob,1998,85,15 +2585-1,Handcar,1998,236,27 +2586-1,Chess King,1998,186,26 +260-1,Idea Book,1990,497,0 +260-3,Complete Living Room Set,1971,405,177 +261-1,Bathroom,1979,405,179 +2613-1,Refuse Truck,1990,504,1 +261-4,Complete Kitchen Set,1971,405,157 +2617-1,Tow Truck,1989,504,4 +262-2,Complete Children's Room Set,1972,405,259 +263-1,Kitchen Set,1974,405,173 +2636-1,Tow Truck,1984,504,2 +264-1,Living Room Set,1974,405,241 +2649-1,Sea Explorer,1984,504,41 +265-1,Bathroom,1974,405,147 +266-1,Child's Bedroom,1974,405,147 +268-1,Family Room,1979,405,251 +269-1,Kitchen,1979,405,210 +2-7,Basic Set,1973,469,139 +270-2,"Grandfather Clock, Chair and Table",1973,405,46 +2707-1,Glider,2000,468,9 +2708-1,Aircraft,2000,468,12 +2709-1,Snowmobile,1996,468,8 +2710-1,Helicopter,2000,468,8 +271-1,Baby's Cot and Cabinet,1973,405,48 +271-2,Traffic Police Set,1958,372,6 +271605-1,Lava fighter,2016,605,12 +2718-1,Aircraft and Ground Crew,2001,68,143 +2719-1,Heli Monster,1999,470,9 +27-2,Train Contact Bricks,1977,456,2 +272-1,Dressing Table with Mirror,1973,405,31 +2722-1,Ship,2000,468,12 +2728-1,The Chopper,1999,470,11 +2729-1,Quattro Leg,1999,470,17 +273-1,Bureau,1973,405,23 +2734-1,Straight Track (Straight Rails),1993,504,6 +2735-1,Curved Track (Curved Rails),1993,504,6 +274-1,Colour T.V. and Chair,1974,405,45 +2742-1,Loudspeaker,1999,470,9 +2743-1,Pendulum Nose,1999,470,21 +2744-1,Propeller Man,1999,470,10 +275-1,Table and Chairs,1974,405,63 +2757-1,Bad Monkey,1999,470,9 +2759-1,Rotor Head,1999,470,14 +276-1,Doctor's Office,1977,405,94 +2769-1,Aircraft and Boat,1999,83,100 +277-1,Fireplace,1977,405,86 +2774-1,Airshow (Red Tiger),1999,68,141 +2775-1,Bathroom,1991,504,7 +278-1,Television Room,1978,405,107 +2-8,Medium House Set,1970,433,109 +280-1,"Sloping Roof Bricks, Red",1958,371,14 +280-2,"Sloping Roof Bricks, Blue",1958,371,14 +28-1,Train Contact Plate with Cables,1977,456,2 +281-1,"1 x 2 and 3 x 2 Sloping Bricks, Red",1959,371,21 +281-2,"1 x 2 and 3 x 2 Sloping Bricks, Blue",1959,371,21 +282-1,"2 x 2 Sloping Roof Bricks, Red",1958,371,22 +282-2,"2 x 2 Sloping Roof Bricks, Blue",1958,371,22 +2824-1,Advent Calendar 2010 City,2010,208,24 +2824-10,Advent Calendar 2010 City (Day 9) Toy Airplane,2010,220,11 +2824-11,Advent Calendar 2010 City (Day 10) Man with Suitcase,2010,220,5 +2824-12,Advent Calendar 2010 City (Day 11) Fireplace,2010,220,13 +2824-13,Advent Calendar 2010 City (Day 12) Sled with Wood and Axe,2010,220,14 +2824-14,Advent Calendar 2010 City (Day 13) Toy Fire Truck,2010,220,15 +2824-15,Advent Calendar 2010 City (Day 14) Woman with Bread,2010,220,5 +2824-16,Advent Calendar 2010 City (Day 15) Table with Chairs and Lamp,2010,220,13 +2824-17,Advent Calendar 2010 City (Day 16) Couch / Sofa,2010,220,9 +2824-18,Advent Calendar 2010 City (Day 17) Shower Stall,2010,220,9 +2824-19,Advent Calendar 2010 City (Day 18) Santa Claus (almost Naked) with Brush,2010,220,6 +2824-2,Advent Calendar 2010 City (Day 1) Snowman with Broom,2010,220,11 +2824-20,Advent Calendar 2010 City (Day 19) Toy Train Car Red,2010,220,15 +2824-21,Advent Calendar 2010 City (Day 20) Toy Bulldozer,2010,220,17 +2824-22,Advent Calendar 2010 City (Day 21) Toy Train Car Yellow,2010,220,15 +2824-23,Advent Calendar 2010 City (Day 22) Toy Helicopter,2010,220,7 +2824-24,Advent Calendar 2010 City (Day 23) Christmas Tree,2010,220,23 +2824-25,Advent Calendar 2010 City (Day 24) Santa Claus with Toy Train Engine,2010,220,21 +2824-3,Advent Calendar 2010 City (Day 2) Boy with Sword,2010,220,5 +2824-4,Advent Calendar 2010 City (Day 3) Skateboard with Ramp and Railing,2010,220,10 +2824-5,Advent Calendar 2010 City (Day 4) Toy Crane,2010,220,15 +2824-6,Advent Calendar 2010 City (Day 5) Drum Set,2010,220,10 +2824-7,Advent Calendar 2010 City (Day 6) Girl with Cat,2010,220,5 +2824-8,Advent Calendar 2010 City (Day 7) Piano / Organ,2010,220,10 +2824-9,Advent Calendar 2010 City (Day 8) Dog with Bowl and Sausage,2010,220,7 +283-1,"Sloping Ridge and Valley Bricks, Red",1957,371,20 +283-2,"Sloping Ridge and Valley Bricks, Blue",1957,371,20 +2840-1,Danone Promotional Set: Girl,1998,468,10 +2841-1,Danone Promotional Set: Boy,1998,468,9 +2842-1,{Basic Promotional Set},1997,468,8 +2845-1,Indian Chief,1997,477,20 +2846-1,Indian Kayak,1997,477,18 +2847-1,Flyer,1997,144,15 +2848-1,Fright Knights Flying Machine,1997,195,19 +2849-1,Helicopter,1997,68,20 +2850828-1,LEGO® Star Wars™ Darth Vader™ Watch,2011,501,0 +2850829-1,Luke Skywalker Watch,2011,501,0 +2851193-1,LEGO® Star Wars™ Darth Maul™ Watch,2009,501,0 +2852724-1,Accelerometer Sensor for Mindstorms NXT,2011,259,0 +2852725-1,Infrared Seeker for Mindstorms NXT (Version 2),2011,259,1 +2852726-1,Gyroscopic Sensor for Mindstorms NXT,2011,259,0 +2853216-1,Infrared Link Sensor for Mindstorms NXT,2011,259,1 +2853300-1,Space Police Collection,2009,141,5 +2853301-1,CITY Transport Collection,2009,63,5 +2853302-1,CITY Construction Collection,2009,56,4 +2853303-1,Bionicle Glatorian Legends Collection,2009,332,6 +2853508-1,LEGO Star Wars: The Visual Dictionary,2009,497,6 +2853590-1,Stormtrooper,2009,169,5 +2853835-1,White Boba Fett Figure,2010,158,5 +2853944-1,Astronaut,2010,598,5 +2854-1,Bungee Chopper,1998,3,70 +2855028-1,Exclusive Spaceman Magnet,2010,501,8 +2855040-1,Infrared Receiver Sensor for Mindstorms NXT,2011,259,0 +2855057-1,LEGO® Star Wars™ Stormtrooper™ Kid’s Watch,2011,501,0 +2855113-1,Brickmaster Star Wars,2011,501,251 +2855127-1,LEGO Harry Potter: Years 1-4 Video Game,2010,501,0 +2856079-1,Creationary Booster Pack,2011,502,30 +2856080-1,Storm Trooper Minifigure Clock,2010,501,0 +2856081-1,LEGO® Star Wars™ Darth Vader Minifigure Clock,2010,501,0 +2856089-1,Hero Factory 2.0 Collection,2011,401,6 +2856128-1,LEGO® Star Wars™ Anakin Skywalker™ Minifigure Watch,2011,501,0 +2856130-1,LEGO® Star Wars™ Yoda™ Minifigure Watch,2011,501,0 +2856134-1,Ninjago Card Shrine,2011,435,98 +2856195-1,LEGO Minifigure Ultimate Sticker Collection,2011,501,1 +2856197-1,Shadow ARF Trooper,2011,178,5 +2856203-1,LEGO® Star Wars™ Yoda Minifigure Clock,2011,501,0 +2856217-1,LEGO Star Wars III: The Clone Wars,2011,501,0 +2856223-1,"Magnet Set, Minifig Retro Ninja Princess - with 2 x 4 Brick Base (Bricktober Week 1)",2011,501,0 +2856224-1,"Magnet Set, Minifig Retro Forestman - with 2 x 4 Brick Base (Bricktober Week 2)",2011,501,0 +2856225-1,"Magnet Set, Minifig Retro Classic Knight - with 2 x 4 Brick Base (Bricktober Week 3)",2011,501,0 +2856226-1,"Magnet Set, Minifig Retro Classic Space Astronaut - with 2 x 4 Brick Base (Bricktober Week 4)",2011,501,3 +2856227-1,Hero Factory Fire Villains Collection,2011,403,4 +2856236-1,LEGO® Red Brick Clock,2013,501,0 +2856238-1,LEGO® Yellow Brick Clock,2015,501,0 +2856453-1,LEGO Brand Pirates of the Caribbean Video Game - PS3,2011,501,0 +2858-1,Girl with Two Cats,1999,323,5 +2866-1,Animal Playground,1998,504,28 +2870-1,Paradisa Barbeque,1997,90,21 +2871-1,Diver and Shark,1997,86,17 +2872-1,Witch and Fireplace,1997,195,19 +2873-1,Small Santa Claus,1997,227,9 +2876-1,Christmas Set,1997,227,9 +2878-1,Santa Claus,1997,227,16 +2878-2,Santa Claus Mos Burger Gift Box 1- Hawaiian Shirt Santa,2001,227,1 +2878-3,Santa Claus Mos Burger Gift Box 2 - Tuxedo Santa,2001,227,1 +2878-4,Santa Claus Mos Burger Gift Box 3 - Soccer Santa,2001,227,1 +2879-1,Desert Expedition,1998,297,195 +2880-1,Open-Top Jeep,1997,85,29 +2881-1,Parking Gate Attendant,1997,85,19 +2882-1,Speedboat,1997,77,22 +2883-1,Boat,1997,77,28 +2884-1,Microlight,1997,68,20 +2885-1,Ice Cream Seller,1997,75,27 +2886-1,Formula 1 Racing Car,1997,82,25 +2887-1,Petrol Station Attendant and Pump,1997,76,15 +2889-1,Treasure Cart,1998,190,24 +2890-1,Stone Bomber,1998,188,22 +2891-1,Wizard Trader,1998,186,18 +2892-1,Thunder Arrow Boat,1998,201,21 +290-2,Dining Suite,1973,405,113 +29-1,4.5V Motor,1977,453,1 +291-1,Blackboard and School Desk,1973,405,88 +2912-1,Radical Racer,2000,504,16 +292-1,Kitchen Sink and Cupboards,1973,405,51 +2928-1,Airline Promotional Set,2006,53,137 +2928-2,Airline Promotional Set - ANA limited edition,2008,53,137 +293-1,Piano,1973,405,89 +2933-1,Freight Train,2000,504,79 +294-1,Wall Unit,1974,405,58 +2949-1,RC Dozer,2001,504,22 +295-1,Secretary's Desk,1974,405,80 +296-1,Ladies' Hairdressers,1977,405,163 +2962-1,Res-Q Lifeguard,1998,92,69 +2963-1,Extreme Team Racer,1998,87,83 +2964-1,Space Spider,1998,134,45 +2965-1,Hornet Scout,1998,134,72 +297-1,Nursery,1978,405,168 +2981-1,Pooh's Corner,1999,504,0 +2982-1,Pooh's Birthday,1999,504,9 +2995-1,Adventurers Car & Skeleton,1998,297,69 +2996-1,Adventurers Tomb,1998,297,81 +2998-1,Stena Line Ferry,1998,471,195 +30000-1,Doctor With Car,2009,60,30 +3000-1,Trike Buggy,1999,13,30 +30001-1,Fireman's Car,2009,58,39 +30002-1,Police Boat,2009,61,30 +30003-1,Road Roller,2009,56,31 +30004-1,Battle Droid on STAP,2009,165,23 +30005-1,Imperial Speeder Bike,2009,169,33 +30006-1,Clone Walker,2009,165,31 +30008-1,Snowman,2009,206,44 +30009-1,Christmas Tree,2009,206,47 +300-1,T-Junction Road Plates,1978,84,2 +30010-1,Fire Chief,2010,58,31 +3001-1,Kabaya Promotional Set: Propeller Buggy,1999,11,29 +30011-1,Police Dinghy,2010,61,16 +30012-1,Mini Airplane,2010,53,34 +30013-1,Police Quad,2010,61,30 +30014-1,Police Helicopter,2011,61,32 +30015-1,Jet Ski,2011,59,24 +30016-1,Small Satellite,2011,52,34 +30017-1,Police Boat,2012,61,35 +30018-1,Police Plane,2012,61,32 +30019-1,Fire Helicopter,2012,58,37 +30020-1,Jet,2010,23,43 +30021-1,Parrot,2010,23,48 +30022-1,Bee,2011,22,23 +30023-1,Lighthouse,2011,22,25 +30024-1,Truck,2011,22,56 +30025-1,Clown Fish,2011,22,59 +30026-1,Panda,2011,23,61 +30027-1,Reindeer,2011,22,66 +30028-1,Wreath,2011,227,50 +30029-1,LEGO Pudsey Bear,2011,301,95 +30030-1,Racing Car,2010,120,29 +3003-1,Motorbike,1999,13,28 +30031-1,World Race Powerboat,2010,123,27 +30032-1,World Race Buggy,2010,123,35 +30033-1,Racing Truck,2010,120,40 +30034-1,Racing Tow Truck,2010,120,34 +30035-1,Racing Car,2010,120,30 +30036-1,Buggy Racer,2011,120,26 +30040-1,Octopus,2010,315,42 +30041-1,Piranha,2010,315,45 +30042-1,Mini Sub,2010,315,37 +30050-1,Republic Attack Shuttle - Mini,2010,160,54 +3005-1,Kabaya Promotional Set: Car,1999,12,26 +30051-1,X-wing Fighter - Mini,2010,163,61 +30052-1,AAT - Mini,2011,161,46 +30053-1,Republic Attack Cruiser - Mini,2011,162,41 +30054-1,AT-ST - Mini,2011,163,46 +30055-1,Vulture Droid - Mini,2011,162,42 +30056-1,Star Destroyer,2012,163,38 +30057-1,Anakin's Pod Racer,2012,164,38 +30058-1,STAP,2012,158,19 +30059-1,MTT,2012,158,51 +30061-1,Attack Wagon,2010,196,36 +30062-1,Target Practice,2010,196,31 +30066-1,Circus Clown Polybag,2013,504,3 +30066-2,Circus Ringmaster Polybag,2013,504,3 +30066-4,Circus Tiger Polybag,2013,504,3 +30066-5,Circus Rabbit Polybag,2013,504,3 +30067-1,Duplo Farm Polybag (farmer),2014,504,5 +30067-2,Duplo Farm Polybag (calf),2014,504,5 +30067-3,Duplo Farm Polybag (goat),2014,504,5 +30067-4,Duplo Farm Polybag (cat),2014,504,5 +30068-1,Food,2014,504,6 +30070-1,Alien Space Ship,2010,275,29 +30071-1,Army Jeep,2010,275,37 +30072-1,Woody's Camp Out,2010,275,15 +30073-1,Buzz's Mini Ship,2010,275,20 +30080-1,Ninja Glider,2011,435,26 +30081-1,Skeleton Chopper,2011,435,41 +30082-1,Enemy Training,2011,435,32 +30083-1,Dragon Fight,2011,435,31 +30084-1,Ninjago Promotional Set,2011,435,5 +30085-1,Snake Battle,2012,435,42 +30086-1,Hidden Sword,2012,435,39 +30087-1,Cole ZX's Car,2012,435,27 +30088-1,Rattla,2012,435,5 +30090-1,Desert Glider,2011,437,29 +30091-1,Desert Rover,2011,437,31 +30-1,Universal Building Set,1976,469,200 +30100-1,Andrea on the Beach,2012,494,28 +30101-1,Skate Boarder,2012,494,28 +30102-1,Desk,2012,494,28 +30103-1,Car,2012,494,32 +30105-1,Stephanie and Mailbox,2012,494,41 +30106-1,Ice Cream Stand,2013,494,34 +30107-1,Birthday Party,2013,494,39 +30108-1,Summer Picnic,2013,494,33 +301-1,Curved Road Plates,1978,84,2 +30110-1,Trolley,2011,246,22 +30111-1,The Lab,2011,246,34 +30112-1,Emma's Flower Stand,2014,494,35 +30113-1,Stephanie's Bakery Stand,2014,494,28 +30114-1,Andrea's Beach Lounge,2014,494,29 +30115-1,Jungle Boat,2014,495,31 +30116-1,Rapunzel's Market Visit,2014,579,37 +30120-1,Guido,2011,269,34 +3012-1,Space Hover,1999,144,20 +30121-1,Grem,2011,269,52 +30130-1,Mini Black Pearl,2011,263,47 +3013-1,Space Jet,1999,142,23 +30131-1,Jacks Boat,2011,263,21 +30132-1,Voodoo Jack,2011,263,4 +30133-1,Jack Sparrow,2011,263,4 +30140-1,ADU Walker,2011,127,34 +3014-1,Ice Planet Scooter,1999,133,19 +30141-1,ADU Jetpack,2011,127,19 +30150-1,Race Car,2012,63,35 +3015-1,Space Police Car,1999,140,23 +30151-1,Mining Dozer,2012,56,33 +30152-1,Mining Quad,2012,56,40 +30160-1,Bat Jetski,2012,484,40 +3016-1,Boss with Cannon,1998,434,24 +30161-1,Batmobile,2012,484,45 +30162-1,Quinjet,2012,487,33 +30163-1,Thor and the Cosmic Cube,2012,487,25 +30164-1,Lex Luthor,2012,484,17 +30165-1,Hawkeye with Equipment,2012,487,24 +30166-1,Robin and Redbird Cycle,2013,484,40 +30167-1,Iron Man vs. Fighting Drone,2013,490,24 +30168-1,Gun Mounting System,2013,490,16 +30170-1,Ganrash,2012,502,56 +3017-1,Water Spider,1998,434,25 +30180-1,Twin Prop,2012,22,45 +3018-1,Go! LEGO Shogun,1998,434,25 +30181-1,Helicopter,2012,22,53 +30182-1,Santa,2012,228,57 +30183-1,Little Car,2013,30,50 +30184-1,Little Helicopter,2013,22,56 +30185-1,Little Eagle,2013,22,48 +30186-1,Christmas Tree,2013,228,51 +30187-1,Fast Car,2014,23,56 +30188-1,Cute Kitten,2014,22,54 +30189-1,Transport Plane,2014,22,49 +30190-1,Ferrari 150° Italia,2012,114,33 +3019-1,Big Bat,1998,434,23 +30191-1,Scuderia Ferrari Truck,2012,114,40 +30192-1,Ferrari F40,2012,114,47 +30193-1,250 GT Berlinetta,2012,114,24 +30194-1,458 Italia,2012,114,32 +30195-1,FXX,2012,114,52 +30196-1,Shell F1 Team,2012,114,47 +30197-1,Snowman,2014,22,60 +30-2,Small Ship Set,1973,433,26 +30200-1,Zombie Chauffeur Coffin Car,2012,558,32 +3020-1,Raft of Johnse,1998,297,18 +30201-1,Ghost,2012,558,33 +30202-1,Smoothie Stand,2015,494,37 +30203-1,Mini Golf,2015,494,26 +30204-1,Wish Fountain,2015,494,44 +30205-1,Pop Star,2015,494,33 +302-1,Straight Road Plates (without crosswalk),1983,84,2 +30210-1,Frodo with Cooking Corner,2012,566,35 +3021-1,King Pharaoh the Third,1998,297,17 +30211-1,Uruk Hai with Ballista,2012,566,21 +30212-1,Mirkwood Elf Guard,2012,563,27 +30213-1,Gandalf at Dol Guldur,2012,563,31 +30215-1,Legolas Greenleaf,2013,564,33 +30216-1,Lake-town Guard,2013,564,31 +30218-1,Snail,2015,504,6 +302-2,Straight Road Plates (with crosswalk),1978,84,2 +30220-1,Fire Speedboat,2013,58,40 +3022-1,Plane of Hurrykain,1998,297,23 +30221-1,Fire Car,2013,58,36 +30222-1,Police Helicopter,2013,61,33 +30224-1,Lawn Mower,2013,52,41 +30225-1,Seaplane,2013,55,37 +30226-1,Police Helicopter ,2014,61,48 +30227-1,Police Watercraft,2014,61,36 +30228-1,Police ATV,2014,61,42 +30229-1,Repair Lift,2014,56,40 +30230-1,Mini Mech,2013,146,28 +3023-1,Slyboot Car,1998,297,23 +30231-1,Space Insectoid,2013,146,27 +30240-1,Z-95 Headhunter,2013,160,54 +30241-1,Mandalorian Fighter,2013,160,49 +30242-1,Republic Frigate,2013,164,45 +30243-1,Umbaran MHC,2013,160,49 +30244-1,Anakin's Jedi Intercepter,2014,159,45 +30246-1,Imperial Shuttle,2014,158,57 +30247-1,ARC-170 Starfighter,2014,158,54 +30250-1,Ewar's Acro-Fighter,2013,571,33 +3025-1,25th Anniversary Silver Bucket,1998,469,601 +30251-1,Winzar's Pack Patrol,2013,571,38 +30252-1,Crug's Swamp Jet,2013,571,23 +30253-1,Leonidas' Jungle Dragster,2013,571,30 +30254-1,Razcal's Double-Crosser,2013,571,36 +30255-1,Crawley,2013,571,11 +30256-1,Ice Bear Mech,2015,571,39 +30259-1,Azari’s Magic Fire,2015,600,27 +30260-1,Lone Ranger’s Pump Car,2013,575,24 +3026-1,25th Anniversary Silver Tub,1998,469,1201 +30261-1,Tonto's Campfire,2013,575,20 +30262-1,Gorzan's Walker ,2014,571,34 +30263-1,Spider Crawler,2014,571,40 +30264-1,Frax' Phoenix Flyer,2014,571,32 +30265-1,Worriz' Fire Bike,2014,571,31 +30266-1,Sykor's Ice Cruiser,2014,571,25 +30270-1,Kraang's Turtle Target Practice,2013,570,36 +3027-1,25th Anniversary Silver Bucket,1998,399,418 +30271-1,Mikey's Mini-Shellraiser,2014,570,46 +30272-1,A-Wing Starfighter,2015,159,58 +30274-1,AT-DP,2015,159,65 +30275-1,TIE Advanced Prototype,2015,159,47 +30276-1,First Order Special Forces TIE Fighter Set,2015,158,41 +30277-1,First Order Star Destroyer,2016,184,56 +30278-1,Poe's X-wing Fighter,2015,159,64 +30279-1,Kylo Ren's Command Shuttle,2016,184,43 +30280-1,The Piece of Resistance,2014,578,33 +3028-1,25th Anniversary Silver Tub,1998,399,843 +30281-1,Micro Manager Battle,2014,578,27 +30282-1,Super Secret Police Enforcer,2014,578,40 +30283-1,Off-Road,2015,30,43 +30284-1,Tractor,2015,23,51 +30285-1,Tiger,2015,31,73 +30286-1,Christmas Tree,2015,227,65 +30291-1,Anacondrai Battle Mech,2015,435,43 +30292-1,Jay Nano Mech,2015,435,54 +30293-1,Kai Drifter,2015,435,43 +30294-1,The Cowler Dragon,2015,435,45 +30300-1,The Batman Tumbler,2014,484,57 +30301-1,Batwing,2014,484,45 +30302-1,Spider-Man,2014,488,45 +30303-1,The Joker Bumper Car,2015,484,47 +30304-1,The Avengers Quinjet,2015,487,56 +30305-1,Spider-Man Super Jumper,2015,488,38 +303-1,Basic Building Set,1987,467,33 +30310-1,Arctic Scout,2014,65,39 +30311-1,Swamp Police Helicopter,2015,61,51 +30312-1,Demolition Driller,2015,56,40 +30313-1,Garbage Truck,2015,63,48 +30314-1,Go-Kart Racer,2015,63,45 +30315-1,Space Utility Vehicle,2015,93,39 +303-2,Aeroplane,1964,374,46 +30320-1,Gallimimus Trap,2015,602,29 +3032-1,Medium Bucket,1999,469,600 +30321-1,Duck,2016,504,4 +3033-1,Basic Bulk Tub (American Version),1998,473,1200 +3033-2,Basic Bulk Tub (Overseas Version),2002,473,1200 +30338-1,Fire Car,2017,295,32 +30346-1,Prison Island Helicopter,2016,61,46 +30347-1,Fire Car,2016,58,53 +30348-1,Mini Dumper,2016,56,45 +30349-1,Sports Car,2016,52,47 +30350-1,Volcano Jackhammer,2016,52,53 +30351-1,Police Helicopter,2017,61,44 +30352-1,Police Car,2017,61,50 +30354-1,Hot Rod,2017,52,36 +30371-1,Knight's Cycle,2016,605,41 +30372-1,Robin's Mini Fortrex,2016,605,45 +30373-1,Knighton Hyper Cannon,2016,605,47 +30374-1,The Lava Slinger,2016,605,39 +30375-1,Sira's Adventurous Airglider,2016,600,24 +30376-1,Knighton Rider,2017,605,42 +30377-1,Motor Horse polybag,2017,605,52 +30378-1,Shrunken Headquarters,2017,605,48 +3038-1,Spider Slayer,1998,3,367 +3039-1,Adventurers Plane,1999,297,23 +30396-1,Cupcake Stall,2016,494,28 +30397-1,Olaf's Summertime Fun,2016,579,48 +30398-1,Adventure Camp Bridge,2016,494,35 +30399-1,Bowling Alley,2016,494,51 +30400-1,Gymnastic Bar,2017,494,26 +3040-1,Challenger Set 200,1998,470,155 +30401-1,Emma's Pool Slide,2017,494,45 +304-1,Basic Building Set,1985,467,31 +3041-1,Big Bucket of Fun,1998,470,468 +304-2,Tractor & Trailer,1964,375,82 +30421-1,Skybound Plane,2016,435,30 +30422-1,Kai's Mini Dragon,2016,435,40 +30423-1,Anchor-Jet,2016,435,37 +30424-1,WU-CRU Training Dojo,2016,435,43 +30446-1,The Batmobile,2016,484,63 +30447-1,Captain America's Motorcycle,2016,493,25 +30448-1,Spider-Man vs. The Venom Symbiote,2016,488,49 +30449-1,The Milano,2017,493,64 +3047-1,Halloween Bucket,1998,230,256 +30471-1,Helicopter,2016,22,47 +30472-1,Parrot,2016,22,43 +30473-1,Racer,2016,591,30 +30474-1,Reindeer,2016,227,77 +30476-1,Turtle,2017,31,33 +30496-1,U-Wing Fighter,2017,185,55 +3050-1,Shanghai Surprise,1999,434,108 +305-1,Two Crater Plates,1979,143,2 +3051-1,Blaze Attack,1999,434,144 +305-2,Fire Engine,1964,376,170 +3052-1,Ninja Fire Fortress,1999,434,173 +30521-1,The Mini Batmobile,2017,484,68 +30522-1,Batman in the Phantom Zone polybag,2016,484,59 +30523-1,The Joker Battle Training,2017,484,49 +30524-1,The Mini Batwing,2017,484,80 +3053-1,Emperor's Stronghold,1999,434,335 +3054-1,Kelloggs Promotional Set: TECHNIC Motorcycle,1998,13,30 +30546-1,Krypto Saves the Day,2017,482,55 +3055-1,Adventurers Car,1998,297,21 +3056-1,Go-Kart,1998,82,23 +3057-1,Create 'n' Race - Master Builders,2000,12,106 +3058-1,Busy City - Master Builders (Masterbuilders),2000,97,73 +3059-1,Mars Mission - Master Builders (Masterbuilders),2000,93,90 +30601-1,Scooby-Doo,2016,603,2 +30602-1,First Order Stormtrooper,2016,158,7 +30603-1,Batman Classic TV Series - Mr. Freeze,2016,484,16 +30604-1,Cosmic Boy,2016,482,7 +30605-1,Finn (FN-2187),2016,184,3 +30606-1,Nightwing,2016,482,6 +30607-1,Disco Batman - Tears of Batman,2017,484,13 +306-1,Two Lunar Landing Plates,1979,143,2 +3061-1,City Park Café,2012,494,244 +30611-1,R2-D2,2017,158,70 +306-2,VW Garage,1958,372,45 +3063-1,Heartlake Flying Club,2012,494,197 +3065-1,Olivia’s Tree House,2012,494,214 +3066-1,Cosmos Glider,1999,93,19 +3066-3,Circus Acrobat Polybag,2013,504,3 +3067-1,Test Shuttle,1999,93,21 +3068-1,Radar Buggy,1999,93,25 +3069-1,Cosmic Wing,1999,93,23 +3070-1,Mosquito,1999,134,21 +3071-1,Light Flyer,1999,134,19 +307-2,VW Auto Showroom,1958,372,51 +3072-1,Mega Tack,1999,134,23 +3073-1,Booster,1999,134,21 +3074-1,Red Ninja's Dragon Glider,1999,434,20 +3075-1,Ninja Master's Boat,1999,434,21 +3076-1,White Ninja's Attack Cart,1999,434,23 +3077-1,Ninja Shogun's Small Fort,1999,434,21 +3078-1,Kellogg's Promotional Set: Car,1998,468,17 +3079-1,Kellogg's Promotional Set: Duck,1998,468,14 +3080-1,Kellogg's Promotional Set: Plane,1998,468,16 +308-1,Bracelet Sympathy,1979,404,40 +3081-1,Kellogg's Promotional Set: Helicopter,1998,468,16 +308-2,Basic Building Set,1985,467,34 +308-3,Fire Station,1958,372,109 +309-1,Bracelet Spring,1979,404,38 +309-2,Church,1958,372,149 +3093-1,Fun Playground,2001,504,31 +309314-1,Lego City - Police on Alert!,2011,497,19 +31000-1,Mini Speeder,2013,22,65 +31001-1,Mini Skyfighter,2013,22,62 +31002-1,Super Racer,2013,22,121 +31003-1,Red Rotors,2013,42,145 +31004-1,Fierce Flyer,2013,22,166 +31005-1,Construction Hauler,2013,22,256 +31006-1,Highway Speedster,2013,39,286 +31007-1,Power Mech,2013,22,223 +31008-1,Thunder Wings,2013,22,235 +31009-1,Small Cottage,2013,43,271 +31010-1,Treehouse,2013,43,356 +31011-1,Aviation Adventures,2013,42,619 +31012-1,Family House,2013,43,755 +31013-1,Red Thunder,2014,22,66 +31014-1,Power Digger,2014,22,63 +31015-1,Emerald Express,2014,22,56 +31017-1,Sunset Speeder,2014,22,119 +31018-1,Highway Cruiser,2014,22,129 +31019-1,Forest Animals,2014,22,272 +31020-1,Twinblade Adventures,2014,22,216 +31021-1,Furry Creatures,2014,22,285 +31022-1,Turbo Quad,2014,39,186 +31023-1,Yellow Racers,2014,22,328 +31024-1,Roaring Power,2014,22,374 +31025-1,Mountain Hut,2014,22,550 +31026-1,Bike Shop & Cafe,2014,22,1022 +31027-1,Blue Racer,2015,23,67 +31028-1,Sea Plane,2015,23,53 +31029-1,Cargo Heli,2015,23,132 +310-3,Tug,1973,363,45 +31030-1,Red Go-Kart,2015,23,106 +31031-1,Rainforest Animals,2015,40,215 +31032-1,Red Creatures,2015,40,221 +31033-1,Vehicle Transporter,2015,23,264 +31034-1,Future Flyer,2015,32,237 +31035-1,Beach Hut,2015,43,286 +31036-1,Toy & Grocery Shop,2015,43,465 +31037-1,Adventure Vehicles,2015,22,282 +31038-1,Changing Seasons,2015,22,535 +31039-1,Blue Power Jet,2015,22,607 +310-4,Basic Building Set,1985,467,46 +31040-1,Desert Racers,2016,22,65 +31041-1,Construction Vehicles,2016,22,64 +31042-1,Super Soarer,2016,22,100 +31043-1,Chopper transporter,2016,22,124 +31044-1,Park Animals,2016,22,202 +31045-1,Ocean Explorer,2016,22,213 +31046-1,Fast Car,2016,22,222 +31047-1,Propeller Plane,2016,22,230 +31048-1,Lakeside Lodge,2016,22,371 +31049-1,Twin Spin Helicopter,2016,22,326 +310-5,ESSO Filling Station,1958,372,96 +31050-1,Corner Deli,2016,22,467 +31051-1,Lighthouse Point,2016,22,527 +31052-1,Vacation Getaways,2016,22,791 +31053-1,Treehouse Adventures,2016,22,387 +31054-1,Blue Express,2017,22,71 +31055-1,Red Racer,2017,22,72 +31056-1,Green Cruiser,2016,22,122 +31057-1,Air Blazer,2016,22,102 +31058-1,Mighty Dinosaurs,2017,22,174 +31059-1,Sunset Street Bike,2016,22,185 +31060-1,Airshow Aces,2016,22,246 +31062-1,Robo Explorer 1,2017,22,205 +31063-1,Beachside Vacation,2017,22,275 +31064-1,Seaplane Adventures,2017,22,359 +31065-1,Park Street Townhouse,2017,22,565 +31066-1,Space Shuttle Explorer,2017,22,285 +31067-1,Modular Poolside Holiday,2017,22,352 +31068-1,Modular Modern Home,2017,22,386 +31069-1,Modular Family Villa,2017,22,728 +31070-1,Turbo Track Racer,2017,22,664 +311-1,Ferry,1973,363,82 +311-3,Basic Set,1984,469,34 +311-4,Airplanes,1961,374,79 +31-2,Medium Ship Set,1973,453,21 +312-3,Tanker,1973,363,111 +312-4,Boats,1961,377,107 +313-1,London Bus,1966,378,140 +31313-1,Mindstorms EV3,2013,262,600 +314-1,Police Boat,1976,363,52 +314-2,Large & Small Wheels & Turn-Table,1963,379,35 +3146-1,Carry and Shopping Accessories,1999,451,12 +315-1,Basic Building Set,1990,467,62 +315-2,Container Transport,1976,363,84 +315-3,European Taxie,1963,378,48 +316-1,Fire Fighter Ship,1978,363,141 +316-2,Farm Tractor,1963,375,49 +317-1,Truck,1963,378,125 +317-2,Basic Building Set,1987,467,68 +3177-1,Small Car,2010,63,43 +3178-1,Seaplane,2010,59,101 +3179-1,Repair Truck,2010,63,122 +3180-1,Tank Truck,2010,50,221 +318-1,Windmill Set,1963,367,153 +3181-1,Passenger Plane,2010,53,308 +3181-2,Passenger Plane - ANA Version,2010,53,296 +3182-1,Airport,2010,53,704 +3183-1,Stephanie’s Cool Convertible,2012,494,148 +3184-1,Adventure Camper,2012,494,324 +3185-1,Summer Riding Camp,2012,494,1158 +3186-1,Emma's Horse Trailer,2012,494,232 +3187-1,Butterfly Beauty Shop,2012,494,240 +3188-1,Heartlake Vet,2012,494,371 +3189-1,Heartlake Stables,2012,494,424 +319-1,Truck with Trailer,1965,378,74 +3194-1,Clikits Bracelet Heart,2004,500,9 +3195-1,Clikits Bracelet Daisy,2004,500,9 +3196-1,Clikits Bracelet Star,2004,500,9 +3197-1,Small Aircraft,2001,466,15 +320-1,Basic Building Set,1985,467,78 +320-2,Airplane,1965,374,120 +321-1,Clowns,1965,366,223 +3219-1,TIE Fighter - Mini,2003,159,12 +32-2,Large Ship Set,1973,433,57 +322-1,Basic Set,1981,469,82 +3221-1,LEGO® City Truck,2010,63,277 +322-2,Town House,1964,367,171 +3222-1,Helicopter and Limousine,2010,53,250 +322-3,Basic Building Set + Storage Case,1983,469,2 +3223-1,Orange Fish,2003,204,43 +3225-1,Classic Train,1998,236,281 +3226-1,Cars and Planes,1998,399,311 +323-1,Train,1964,380,253 +3233-1,Fantasy Bird,1998,399,28 +3234-1,Fantasy Boat,1998,399,27 +324-1,Ricky Racoon on his Scooter,1979,390,2 +324-2,House with Garage,1964,367,174 +3243-1,Scala Kitchen,1997,301,13 +325-1,Basic Building Set,1990,467,109 +325-2,Percy Pig's Wheelbarrow,1979,390,4 +325-3,Shell Service Station,1966,367,101 +3259-1,Kanoka Launcher And Disc,2004,346,2 +326-1,Small Cottage,1965,367,63 +327-1,Basic Building Set,1987,467,107 +328-1,Moe Mouse's Roadster,1979,390,23 +328-2,Biplane,1967,374,44 +3287-1,Takutanuva,2004,347,2 +329-1,Antique Car,1967,378,111 +329-2,Bernard Bear and Pickup Truck,1979,390,27 +3300000-1,"The Brick Apple (LEGO Store Grand Opening Set, Rockefeller Center, New York, NY)",2010,408,133 +3300001-1,Brickley,2011,22,197 +3300002-1,Holiday Set 2 of 2,2011,227,117 +3300003-1,Lego Brand Retail Store,2012,408,279 +3300005-1,"LEGO Store Grand Opening Exclusive Set, Copenhagen (København), Denmark",2011,408,56 +3300006-1,"The Routemaster Bus (LEGO Store Grand Opening Set, Westfield, London, UK)",2011,408,117 +3300014-1,Holiday Set 2012,2012,227,109 +3300020-1,Holiday Set 1 of 2,2011,227,98 +3300-1,Harold the Helicopter,2006,504,6 +330-1,Basic Building Set,1985,467,158 +330-2,Gas Station,1978,364,211 +3302-1,Soccer Field,1998,462,2 +330-3,Jeep,1968,378,65 +3303-1,Field Accessories,1998,462,50 +3304-1,Dutch National Player,1998,462,4 +3305-1,World Team Player,1998,462,4 +3305-2,World Team Player - Limited Edition (England),1998,462,4 +3305-3,World Team Player - Limited Edition (Netherlands),1998,462,4 +3306-1,Soccer Goalies,1998,462,8 +3308-1,Tribune,1998,462,85 +3309-1,Head Tribune,1998,462,95 +3310-1,Commentator and Press Box,1998,462,94 +331-1,Dump Truck,1967,381,45 +3311-1,Camera Tower,1998,462,100 +3312-1,Medic's Station,1998,462,78 +3313-1,Light Poles,1998,462,101 +3314-1,Stadium Security,1998,462,143 +3315-1,Olivia’s House,2012,494,733 +3316-1,"Advent Calender 2012, Friends",2012,216,24 +3316-10,"Advent Calendar 2012, Friends (Day 9) - Breakfast",2012,226,8 +3316-11,"Advent Calendar 2012, Friends (Day 10) - Sled Trailer #1",2012,226,10 +3316-12,"Advent Calendar 2012, Friends (Day 11) - Present for Dog",2012,226,8 +3316-13,"Advent Calendar 2012, Friends (Day 12) - Dog",2012,226,1 +3316-14,"Advent Calendar 2012, Friends (Day 13) - Stool and Plate with Candies",2012,226,9 +3316-15,"Advent Calendar 2012, Friends (Day 14) - Dog Basket with Bone",2012,226,9 +3316-16,"Advent Calendar 2012, Friends (Day 15) - Sled Trailer #2",2012,226,8 +3316-17,"Advent Calendar 2012, Friends (Day 16) - Basket with Broom and Snow Balls",2012,226,6 +3316-18,"Advent Calendar 2012, Friends (Day 17) - Mailbox with Letter",2012,226,8 +3316-19,"Advent Calendar 2012, Friends (Day 18) - Lime/White Present With Letter",2012,226,8 +3316-2,"Advent Calendar 2012, Friends (Day 1) - Olivia, Long Sleeve Chrismas Top",2012,226,4 +3316-20,"Advent Calendar 2012, Friends (Day 19) - Handbag",2012,226,1 +3316-21,"Advent Calendar 2012, Friends (Day 20) - Flower Arrangement",2012,226,8 +3316-22,"Advent Calendar 2012, Friends (Day 21) - Fireplace",2012,226,21 +3316-23,"Advent Calendar 2012, Friends (Day 22) - Christmas Tree",2012,226,18 +3316-24,"Advent Calendar 2012, Friends (Day 23) - Medium Blue/White Present with Letter",2012,226,11 +3316-25,"Advent Calendar 2012, Friends (Day 24) - Corner Table with Beauty Accessories",2012,226,11 +3316-3,"Advent Calendar 2012, Friends (Day 2) - Sled",2012,226,9 +3316-4,"Advent Calendar 2012, Friends (Day 3) - Street Light with Garland",2012,226,12 +3316-5,"Advent Calendar 2012, Friends (Day 4) - Skis and Ski Poles",2012,226,4 +3316-6,"Advent Calendar 2012, Friends (Day 5) - Snowman",2012,226,7 +3316-7,"Advent Calendar 2012, Friends (Day 6) - Christina, Red Christmas Outfit",2012,226,4 +3316-8,"Advent Calendar 2012, Friends (Day 7) - Friends Accessories",2012,226,20 +3316-9,"Advent Calendar 2012, Friends (Day 8) - Table with Stool",2012,226,9 +3317-1,German National Player,1998,462,4 +3318-1,English Player,1998,462,4 +3320-1,Austrian Player,1998,462,4 +332-1,Tow Truck,1967,378,56 +3323-1,Kaufhof Promotional Set: German National Player and Ball,1998,462,5 +3324-1,Kaufhof Promotional Set: World Team Player and Ball,1998,462,5 +3330-1,Racing Car,1998,468,17 +333-1,Basic Set,1981,469,100 +3331-1,Bird,1998,468,14 +333-2,Delivery Truck,1967,382,68 +3332-1,Plane,1998,468,18 +3333-1,Helicopter,1998,468,17 +3340-1,Star Wars #1 - Sith Minifig Pack,2000,166,30 +334-1,Truck with Flatbed,1967,382,72 +3341-1,Star Wars #2 - Luke/Han/Boba Minifig Pack,2000,169,25 +3342-1,Star Wars #3 - Troopers/Chewie Minifig Pack,2000,169,25 +3343-1,Star Wars #4 - Battle Droid Minifig Pack,2000,166,33 +3344-1,One Minifig Pack - Ninja #1,2000,434,10 +3345-1,Three Minifig Pack - Ninja #2,2000,434,24 +3346-1,Three Minifig Pack - Ninja #3,2000,434,26 +3347-1,One Minifig Pack - Rock Raiders #1,2000,442,8 +3348-1,Three Minifig Pack - Rock Raiders #2,2000,442,23 +3349-1,Three Minifig Pack - Rock Raiders #3,2000,442,29 +3350-1,City #1,2000,50,27 +335-1,Basic Building Set,1990,467,245 +3351-1,Three Minifig Pack - City #2,2000,50,24 +335-2,Transport Truck,1967,382,99 +336-1,Fire Engine,1968,376,76 +3365-1,Moon Buggy,2011,52,37 +3366-1,Satellite Launcher,2011,52,164 +3367-1,Space Shuttle,2011,52,230 +3368-1,Rocket Launch Center,2011,52,498 +337-1,Basic Building Set,1987,467,225 +337-2,Truck with Crane and Caterpillar Track,1969,381,92 +3380-1,Johnny Thunder Chupa Chups Promotional,2003,300,5 +338-1,Ambulance,1970,420,74 +3381-1,Lord Sam Sinister Chupa Chups Promotional,2003,300,5 +338-2,Blondi the Pig and Taxi Station,1979,390,33 +3382-1,Jing Lee the Wanderer Chupa Chups Promotional,2003,300,4 +3383-1,Chef,2003,109,6 +3384-1,Train Worker Chupa Chups Promotional,2003,239,4 +3385-1,Conductor Charlie,2003,239,6 +3386-1,Xtreme Stunts Pepper Roni Chupa Chups Promotional,2003,407,4 +3387-1,Xtreme Stunts Brickster Chupa Chups Promotional,2003,407,4 +3388-1,Xtreme Stunts Snap Lockitt Chupa Chups Promotional,2003,407,4 +3389-1,Skateboarder Bill Chupa Chups Promotional,2003,460,7 +3390-1,Basketball Street Player Chupa Chups Promotional,2003,459,5 +3391-1,"Dash, Mission Deep Sea, Chupa Chups Promotional",2003,305,9 +3-4,Basic Set,1973,469,191 +340-1,Basic Building Set,1985,467,220 +3401-1,Shoot 'n' Score - without ZIDANE / Adidas Minifig,2000,462,24 +3401-2,Shoot 'n' Score - with ZIDANE / Adidas Minifig,2000,462,24 +340-2,Fire Trucks,1978,364,277 +3402-1,Grandstand with Lights,2000,462,60 +340-3,Railroad Control Tower,1968,367,74 +3403-1,Fans' Grandstand with Scoreboard,2000,462,80 +3404-1,Black Bus,2000,462,130 +3405-1,Blue Bus,2000,462,130 +3406-1,Americas Bus,2000,462,130 +3407-1,Red Bus,2000,462,130 +3408-1,Super Sports Coverage,2000,462,224 +3409-1,Championship Challenge,2000,462,293 +3409-2,Championship Challenge - Special Edition with Orange Players,2000,462,1 +3409-3,Championship Challenge,2000,462,295 +3410-1,Field Expander,2000,462,52 +341-1,Warehouse,1968,367,123 +3411-1,Team Transport Bus,2000,462,131 +341-2,Cathy Cat's & Morty Mouse's Cottage,1979,390,115 +3412-1,Point Shooting,2000,462,24 +3413-1,Goal Keeper,2000,462,27 +3414-1,Precision Shooting,2000,462,22 +3416-1,Women's Team,2001,462,67 +3418-1,Point Shooting,2001,462,24 +3419-1,Precision Shooting,2001,462,23 +3420-1,Championship Challenge II,2002,462,387 +3420-2,Championship Challenge II - FC Bayern Promo Edition,2003,462,387 +3420-3,Championship Challenge II - L'Equipe de France Promo Edition,2002,462,387 +3420-4,Championship Challenge II - Sports Edition,2004,462,387 +342-1,Station,1968,367,191 +3421-1,3 v 3 Shootout,2002,462,224 +3422-1,Shoot 'N Save (non-promo),2002,462,110 +3422-2,Shoot 'N Save (FC Bayern Promo Edition),2003,462,114 +3423-1,Freekick Frenzy,2002,462,52 +3424-1,Target Practice,2002,462,36 +3425-1,Grand Championship Cup - U.S. Men's Team Cup Edition,2002,462,568 +3425-2,Grand Championship Cup,2002,462,568 +3426-1,Team Transport Bus Adidas Edition,2002,462,131 +3427-1,NBA Slam Dunk,2003,459,55 +3428-1,One vs One Action,2003,459,39 +3429-1,Ultimate Defense,2003,459,82 +3430-1,Spin & Shoot,2002,459,70 +343-1,Train Ferry,1968,377,147 +3431-1,Streetball 2 vs 2,2003,459,186 +3432-1,NBA Challenge,2003,459,450 +3433-1,NBA Ultimate Arena,2003,459,490 +3438-1,McDonald's Restaurant,1999,75,93 +3439-1,Spy Runner,2000,68,105 +3440-1,NBA Jam Session Co-Pack,2003,459,71 +344-1,Bungalow,1969,413,77 +344-2,Service Station,1979,390,84 +3442-1,"Legoland California Truck, Limited Edition",1998,85,104 +3444-1,2 x 4 Ridge Roof Tiles Steep Sloped Black,2000,254,25 +3445-1,2 x 4 Ridge Roof Tiles Steep Sloped Red,2000,254,25 +3446-1,2 x 2 Window White,2000,254,25 +3447-1,1 x 3 x 4 Wall Element Transparent Blue (Train Window),2000,254,25 +3448-1,1 x 4 x 5 Black Window Frames with Clear Panes,2000,254,20 +3449-1,1 x 4 x 6 Black Door Frame with Transparent Blue Panes,2000,254,10 +3450-1,Statue of Liberty,2000,276,2899 +345-1,House with Mini Wheel Car,1969,413,132 +3451-1,Sopwith Camel,2001,276,575 +345-2,Small Bucket for Her,1993,467,135 +3453-1,2 x 2 Black Bricks,2000,254,100 +3454-1,2 x 2 Light Gray Bricks,2003,254,100 +3455-1,2 x 2 White Bricks,2003,254,100 +3456-1,2 x 2 Dark Green Bricks,2000,254,100 +3457-1,2 x 2 Red Bricks,2000,254,100 +3458-1,2 x 4 Black Bricks,2000,254,50 +3459-1,2 x 4 Light Gray Bricks,2003,254,50 +3460-1,2 x 4 White Bricks,2003,254,50 +346-1,Jumbo Jet,1970,412,117 +3461-1,2 x 4 Dark Green Bricks,2000,254,50 +346-2,House with Car,1969,413,167 +3462-1,2 x 4 Red Bricks,2000,254,50 +3463-1,2 x 8 Black Bricks,2000,254,25 +3464-1,2 x 8 Light Gray Bricks,2003,254,25 +3465-1,2 x 8 White Bricks,2003,254,25 +3466-1,2 x 8 Dark Green Bricks,2000,254,25 +3467-1,2 x 8 Red Bricks,2000,254,25 +3468-1,1 x 4 Black Bricks,2000,254,50 +3469-1,1 x 4 Light Gray Bricks,2003,254,50 +3470-1,1 x 4 White Bricks,2003,254,50 +347-1,Fire Station with Mini Cars,1970,417,205 +3471-1,1 x 4 Dark Green Bricks,2000,254,50 +347-2,Basic Building Set,1987,467,330 +3472-1,1 x 4 Red Bricks,2000,254,50 +347-3,Doc David's Hospital,1979,391,100 +3473-1,1 x 6 Black Bricks,2000,254,50 +3474-1,1 x 6 Light Gray Bricks,2000,254,50 +3475-1,1 x 6 White Bricks,2000,254,50 +3476-1,1 x 6 Dark Green Bricks,2000,254,50 +3477-1,1 x 6 Red Bricks,2000,254,50 +3478-1,1 x 8 Black Bricks,2000,254,25 +3479-1,1 x 8 Light Grey Bricks,2000,254,25 +3480-1,1 x 8 White Bricks,2003,254,25 +348-1,Garage with Automatic Doors,1971,413,38 +3481-1,1 x 8 Dark Green Bricks,2000,254,25 +3482-1,1 x 8 Red Bricks,2000,254,25 +3483-1,2 x 4 Black Plates,2000,254,100 +3484-1,2 x 4 White Plates,2000,254,100 +3485-1,2 x 4 Red Plates,2000,254,100 +3486-1,1 x 6 Black Plates,2000,254,50 +3487-1,1 x 6 White Plates,2000,254,50 +3488-1,1 x 6 Red Plates,2000,254,50 +3489-1,2 x 8 Black Plates,2000,254,25 +3490-1,2 x 8 White Plates,2000,254,25 +349-1,Swiss Chalet,1971,413,81 +3491-1,2 x 8 Red Plates,2000,254,25 +3492-1,2 x 2 Black Smooth Tiles,2000,254,100 +3493-1,2 x 2 White Smooth Tiles,2000,254,100 +3494-1,2 x 2 Red Smooth Tiles,2000,254,100 +3495-1,2 x 2 Roof Tiles Steep Sloped Black,2003,254,100 +3496-1,2 x 2 Roof Tiles Steep Sloped Red,2003,254,100 +3497-1,2 x 4 Roof Tile Black,2003,254,50 +3498-1,2 x 4 Roof Tile Red,2000,254,50 +3499-1,Small Spruce Trees,2000,254,25 +3500-1,Kobe Bryant,2003,459,4 +350-1,Spanish Villa,1971,413,126 +3501-1,Jet-Car,1998,480,26 +350-2,Basic Building Set,1985,467,315 +3502-1,Bi-Wing,1998,480,24 +350-3,Town Hall with Leonard Lion & Friends,1979,390,134 +3503-1,Mini-Sonic,1998,480,22 +3504-1,Hook-Truck,1998,480,30 +3505-1,Aeroplane,1999,480,23 +3506-1,Motorbike,1999,480,26 +3507-1,1 x 4 x 3 Wall Element Clear,2001,254,25 +3508-1,1 x 4 x 5 Black Window Frame with Blue Pane,2001,254,20 +35-1,Screws for Motor Case,1977,443,2 +3510-1,Polybag,1998,480,25 +351-1,Loader Hopper with Truck,1971,416,170 +3520-1,Forklift,1999,480,39 +352-1,Windmill and Lorry,1972,413,142 +3521-1,Racer,1999,480,35 +3529-1,Pau Gasol,2003,459,4 +3530-1,Tony Parker,2003,459,4 +353-1,Terrace House with Car and Garage,1972,413,153 +3531-1,Tri-Bike,1998,480,29 +3532-1,Jet-Ski,1998,480,27 +3535-1,Skateboard Street Park,2003,460,68 +3536-1,Snowboard Big Air Comp,2003,460,81 +3537-1,Skateboard Vert Park Challenge,2003,460,91 +3538-1,Snowboard Boarder Cross Race,2003,460,196 +3540-1,Puck Passer,2003,461,45 +354-1,Police Heliport,1972,421,173 +3541-1,Slap Shot,2003,461,46 +3542-1,Flip Shot,2003,461,47 +3543-1,Slammer Goalie,2003,461,46 +3544-1,Hockey Game Set,2003,461,153 +3545-1,Hockey Puck Feeder,2003,461,151 +3548-1,Slam Dunk Trainer,2003,459,19 +3548-2,Slam Dunk Trainer (Kabaya Promotional),2003,459,19 +3549-1,Practice Shooting,2003,459,17 +3549-2,Practice Shooting (Kabaya Promotional),2003,459,17 +3550-1,Jump and Shoot,2003,459,17 +3550-2,Jump and Shoot (Kabaya Promotional),2003,459,17 +355-1,Town Center Set with Roadways,1972,413,332 +3551-1,Dino-Jet,1998,480,80 +355-2,Basic Set,1981,469,160 +3552-1,Hover Sub with motor,1998,480,126 +3554-1,Helicopter,1999,480,79 +3555-1,Jeep,1999,480,262 +3557-1,Blue Player & Goal,2004,461,33 +3558-1,Red Player & Goal,2004,461,33 +3559-1,Red & Blue Player,2004,461,40 +3560-1,NBA Collectors #1,2003,459,15 +356-1,Swiss Villa,1973,413,150 +3561-1,NBA Collectors #2,2003,459,15 +356-2,Basic Building Set with Storage Case,1987,467,331 +3562-1,NBA Collectors #3,2003,459,16 +3563-1,NBA Collectors #4,2003,459,15 +3564-1,NBA Collectors #5,2003,459,15 +3565-1,NBA Collectors #6,2003,459,15 +3566-1,NBA Collectors #7,2003,459,15 +3567-1,NBA Collectors #8,2003,459,15 +3568-1,Soccer Target Practice,2006,462,24 +3569-1,Grand Soccer Stadium,2006,462,382 +3570-1,Street Soccer,2006,462,199 +357-1,Fire Station,1973,417,236 +3571-1,Blackmobile with motor,1998,480,143 +3573-1,Superstar Figure ,2007,462,9 +3578-1,NHL Championship Challenge,2004,461,395 +3579-1,Street Hockey,2004,461,119 +358-1,Rocket Base,1973,422,276 +3581-1,Formula Z Car in Storage Case,1998,480,172 +3582-1,Ant,1999,480,258 +3584-1,Rapid Return,2003,459,47 +3585-1,Snowboard Super Pipe,2003,460,224 +359-1,Environment Plate,1972,473,1 +3591-1,Heli-Transport (Rota-Beast),1998,480,265 +3594-1,Bob's Workshop,2009,504,14 +3598-1,XXL 2000 Canister,2005,37,2000 +3599-1,XXL 250 Canister,2005,505,250 +3-6,Medium House Set,1970,433,158 +3600-1,Build Your Own House Tub,2005,37,1201 +360-1,Gravel Quarry,1974,416,211 +3601-1,Elton Elephant,1981,390,7 +3602-1,Bianca Lamb and Stroller,1980,390,4 +3603-1,Boris Bulldog and Mailbox,1981,392,4 +3604-1,Marc Monkey and Wheelbarrow,1980,390,4 +3605-1,Ricky Racoon and his Scooter,1980,390,2 +361-1,Tea Garden Cafe with Baker's Van,1974,413,214 +361-2,Garage,1979,85,79 +3612-1,Wild Animals,2002,504,32 +3615-1,Percy Pig's Wheelbarrow,1981,390,4 +362-1,Windmill,1975,413,211 +3622-1,Rowboat,1988,393,14 +3623-1,Beauty Salon,1988,390,25 +3624-1,Flower Car,1985,390,27 +3625-1,Aeroplane,1985,394,9 +3626-1,Roger Raccoon's Sports Car,1983,390,17 +3627-1,Bonnie Rabbit's Flower Truck,1983,390,24 +3628-1,Perry Panda & Chester Chimp,1981,390,5 +3629-1,Barney Bear,1981,390,17 +3630-1,Sports Airplane,1984,394,9 +363-1,Hospital with Figures,1975,420,229 +3631-1,Orchestra,1985,390,27 +3633-1,Motor Boat,1986,393,14 +3634-1,Charlie Crow's Carry-All,1980,390,18 +3635-1,Bonnie Bunny's Camper,1981,390,31 +3636-1,Bedroom,1987,390,21 +3637-1,Gertrude Goat's Painter's Truck,1983,390,15 +3638-1,Buster Bulldog's Fire Engine,1983,395,17 +3639-1,Police Car,1984,396,12 +364-1,Harbour Scene,1975,419,515 +3641-1,Car & Camper,1985,390,25 +3642-1,Fire Engine,1985,395,18 +3643-1,Police Car,1985,396,12 +3644-1,Mayor's Car,1986,390,11 +3645-1,Classroom,1987,390,26 +3646-1,Kitchen,1988,390,54 +3647-1,School Room,1989,390,44 +3648-1,Police Chase,2011,61,172 +365-1,Wild West Scene,1975,397,591 +365-2,Build-N-Store Chest,1990,467,337 +3654-1,Country Cottage,1982,390,44 +3658-1,Police Helicopter,2011,61,236 +3659-1,Play Ground,1987,390,17 +3660-1,Fisherman's Cottage,1985,390,28 +366-1,Basic Set,1981,469,184 +3661-1,Bank & Money Transfer,2011,61,408 +3662-1,Bus,1987,390,33 +3663-1,Max Mouse's Carousel,1989,390,22 +3664-1,Police Station,1984,396,63 +3665-1,Ice Cream with Scooter,1980,390,38 +3666-1,Petrol Station,1982,390,29 +3667-1,Bakery,1982,390,63 +3668-1,Merry-Go-Round,1986,390,48 +3669-1,Fire & Police Station,1982,390,32 +3670-1,Service Station,1984,390,54 +367-1,Moon Landing,1975,422,363 +3671-1,Airport,1984,394,55 +3672-1,Hotel / Restaurant,1982,390,60 +3673-1,Steamboat,1985,393,64 +3674-1,Bonnie Bunny's New House,1987,390,41 +3675-1,General Store,1987,390,106 +3676-1,Catherine Cat's Fun Park,1989,390,42 +3677-1,Red Cargo Train,2011,240,826 +3678-1,The Fabuland House,1982,390,114 +3679-1,Mill with Shop,1986,390,80 +3680-1,Camping Caravan,1988,390,24 +368-1,Taxi Station,1976,413,157 +3681-1,Amusement Park,1985,390,104 +3682-1,Fire Station,1987,395,153 +3683-1,Amusement Park,1988,390,91 +369-1,Coast Guard Station,1976,415,273 +370-1,Police Headquarters,1976,421,300 +3701-1,Fisherman Cornelius Cat,1982,390,3 +3703-1,Peter Pig the Cook,1982,390,3 +3704-1,Marjorie Mouse,1982,390,3 +3706-1,Elmer Elephant,1982,390,3 +3707-1,Clover Cow,1982,390,3 +3708-1,Rufus Rabbit,1982,390,4 +3709-1,"Henry Horse, Carpenter",1983,390,3 +3710-1,Peter Panda Takes a Bath,1983,390,3 +371-1,Tipper Truck,1971,416,47 +3711-1,Pierre Pig and His Tuba,1984,390,5 +371-2,Motorized Truck Set,1967,301,314 +3712-1,Robby Rabbit and Accordion,1984,390,5 +371-3,Seaplane,1977,412,115 +3713-1,Drummer Gabriel Monkey,1984,390,8 +3714-1,Bricklayer Oscar Orangutan,1985,390,7 +3715-1,Flower Stand,1985,390,20 +3716-1,Office,1985,390,9 +3717-1,Fisherman,1985,390,10 +3718-1,Small Cafe,1986,390,5 +3719-1,Bus Stop,1987,390,5 +372-1,Texas Rangers,1977,397,248 +3721-1,Clive Crocodile on Skateboard,1988,390,11 +372-2,Tow Truck,1971,397,53 +3722-1,"Treasure Tomb, TRU exclusive",1998,297,164 +3723-1,Lego Minifigure,2000,276,1849 +3724-1,Lego Dragon,2001,276,1538 +3725-1,1 x 2 Brick Light Gray,2003,254,100 +3726-1,1 x 2 Brick Dark Gray,2003,254,100 +3727-1,1 x 2 Brick Tan,2000,254,100 +3729-1,2 x 4 Dark Gray Bricks,2000,254,50 +3730-1,2 x 4 Tan Bricks,2000,254,50 +373-1,Offshore Rig with Fuel Tanker,1977,418,459 +3731-1,Pumpkin Pack,2000,230,87 +373-2,Ambulance,1971,420,65 +3732-1,Castle Expander Pack,2000,255,24 +3733-1,Gray Windows with Clear Panes,2000,254,20 +3734-1,Train Windows with Panes Blue,2000,254,20 +3735-1,Grey Train Doors with Panes,2000,257,20 +3736-1,Blue Train Doors with Panes,2000,257,20 +3737-1,Train Accessories,2000,257,15 +3738-1,Large Spruce Trees,2000,254,10 +3739-1,Blacksmith Shop,2002,200,629 +3740-1,Small Locomotive,2001,238,66 +374-1,Fire Station,1978,74,334 +3741-1,Large Locomotive (base unit without color trim elements),2001,238,91 +374-2,Fire Engine,1971,417,73 +3742-1,Tender Basis (without color trim elements),2001,238,41 +3743-1,Locomotive Blue Bricks,2001,238,106 +3744-1,Locomotive Green Bricks,2001,238,106 +3745-1,Locomotive Black Bricks,2001,238,106 +3746-1,Locomotive Brown Bricks,2001,238,106 +3747-1,Locomotive Gray Bricks,2001,238,106 +3748-1,Light Unit for Train,2001,456,4 +3750-1,Life on Mars Accessories,2001,452,48 +3751-1,1 x 2 Brown Bricks,2003,254,100 +375-2,Castle,1978,189,776 +3752-1,1 x 6 Brown Bricks,2002,254,50 +375-3,Refrigerator Truck and Trailer,1971,397,127 +3753-1,2 x 2 Brown Bricks,2003,254,100 +3754-1,2 x 4 Brown Bricks,2003,254,50 +3755-1,2 x 4 Roof Tile Brown,2003,254,50 +3756-1,2 x 4 Brown Ridge Roof Tiles Steep Sloped,2003,254,25 +3758-1,35th Anniversary Bucket,1998,469,600 +3759-1,35th Anniversary Tub,1998,469,1200 +3760-1,35th Anniversary Bucket,1998,399,417 +376-1,Low-Loader with Excavator,1971,416,91 +3761-1,35th Anniversary Tub,1998,399,842 +376-2,Town House with Garden,1978,69,244 +377-1,Shell Service Station,1978,76,190 +377-2,Crane with Float Truck,1971,416,90 +3774-1,Bridge,2005,388,26 +3775-1,Points,2005,504,2 +378-1,Tractor,1972,397,36 +3781-1,Maximillian Mouse,1982,390,5 +3782-1,Photographer Patrick Parrot,1982,390,5 +3784-1,Hugo Hog the Tinker,1982,390,5 +3786-1,Buzzy Bulldog the Postman,1982,392,7 +3787-1,"Hannah Hippopotamus, Gardener",1983,390,13 +3788-1,Paulette Poodle's Living Room,1983,390,15 +3789-1,Police Motorcycle,1984,396,7 +379-1,Bus Station,1979,85,177 +3791-1,William Walrus,1984,390,7 +379-2,Car and Caravan,1972,397,93 +3792-1,Bedroom,1985,390,16 +3793-1,Buzzy Bulldog's Mailbox,1985,392,11 +3794-1,Police Motorcycle,1985,396,16 +3795-1,Kitchen,1985,390,26 +3796-1,Small Bakery,1986,390,31 +3797-1,Fire Chief Barty Bulldog,1987,395,9 +3798-1,Hanna's Garden,1988,390,25 +3-8,Mini-Wheel Model Maker No. 3,1971,423,65 +3800-1,Ultimate Builders Set,2001,260,322 +380-1,Village Set,1971,413,7 +3801-1,Ultimate Accessories,2000,260,45 +3803-1,Robotics Invention System Upgrade Kit (1.5),1999,260,69 +3804-1,"Robotics Invention System, Version 2.0",2001,260,720 +3805-1,Robotics Invention System Upgrade Kit (2.0),2002,260,1 +3806-1,Gigamesh G60,2002,463,286 +3807-1,Snaptrax S45,2002,463,203 +3808-1,Shadowstrike S70,2002,463,236 +3809-1,Technojaw T55,2002,463,262 +381-1,Lorry and Fork Lift Truck,1973,416,86 +381-2,Police Headquarters,1979,80,372 +3815-1,Heroic Heroes of the Deep,2011,272,95 +3816-1,Glove World,2011,272,168 +3817-1,The Flying Dutchman,2012,272,242 +3818-1,Bikini Bottom Undersea Party,2012,272,469 +382-1,Breakdown Truck and Car,1973,397,91 +3825-1,Krusty Krab,2006,272,297 +3826-1,Build-A-Bob,2006,272,445 +3827-1,Adventures in Bikini Bottom,2006,272,576 +3828-1,Air Temple,2006,317,400 +3829-1,Fire Nation Ship,2006,317,724 +3830-1,The Bikini Bottom Express,2008,272,209 +383-1,Truck with Excavator,1973,416,102 +3831-1,Rocket Ride,2008,272,276 +383-2,Knight's Tournament,1979,189,210 +3832-1,The Emergency Room,2008,272,235 +3833-1,Krusty Krab Adventures,2009,272,208 +3834-1,Good Neighbors at Bikini Bottom,2009,272,423 +3835-1,Robo Champ,2009,502,119 +3836-1,Magikus,2009,502,109 +3837-1,Monster 4,2009,502,142 +3838-1,Lava Dragon,2009,502,136 +3839-1,Race 3000,2009,502,167 +3840-1,Pirate Code,2009,502,278 +384-1,London Bus,1973,397,110 +3841-1,Minotaurus,2009,502,223 +3842-1,Lunar Command,2009,502,277 +3843-1,Ramses Pyramid,2009,502,231 +3844-1,Creationary,2009,502,341 +3845-1,Shave a Sheep,2010,502,118 +3846-1,UFO Attack,2010,502,88 +3847-1,Magma Monster,2010,502,95 +3848-1,Pirate Plank,2010,502,122 +3849-1,Orient Bazaar,2010,502,204 +3850031-1,Puffin,2017,410,50 +3850-1,Meteor Strike,2010,502,185 +385-1,Jeep CJ-5,1976,397,58 +3851-1,Atlantis Treasure,2010,502,280 +385-2,Build-N-Store Chest,1990,467,450 +3852-1,Sunblock,2011,502,80 +3853-1,Banana Balance,2011,502,49 +3854-1,Frog Rush,2011,502,107 +3855-1,Ramses Return,2011,502,99 +3856-1,Ninjago,2011,502,247 +3857-1,Draida Bay,2011,502,101 +3858-1,Waldurk Forest,2011,502,231 +3859-1,Caverns of Nathuz,2011,502,223 +3860-1,Castle Fortaan,2011,502,312 +386-1,Helicopter and Ambulance,1976,420,142 +3861-1,LEGO Champion,2011,502,216 +3862-1,Hogwarts,2010,502,332 +3863-1,Kokoriko,2012,502,115 +3864-1,Mini Taurus,2012,502,165 +3865-1,City Alarm,2012,502,246 +3866-1,Star Wars Battle of Hoth,2012,502,305 +3870-1,Takeshi Walker 1,2007,389,29 +387-1,Excavator and Dumper,1976,416,159 +3871-1,Ha-Ya-To Walker,2007,389,21 +3872-1,Robo Chopper,2007,389,29 +3874-1,Ilrion,2012,502,245 +3885-1,Hikaru Little Flyer,2007,389,22 +3885-2,Hikaru Little Flyer - Boxed Version,2007,389,22 +3885-3,Hikaru Little Flyer - Duracell 12 pack AA Battery Promotion,2007,389,1 +3886-1,Ryo Walker,2007,389,19 +3886-2,Ryo Walker - Boxed Version,2007,389,19 +3886-3,Ryo Walker - Duracell 12 pack AA Battery Promotion,2007,389,1 +3888-1,Three Eights,1998,399,182 +3900-1,Bracelet,2000,451,20 +390-1,Helicopter,1986,467,24 +390-2,1913 Cadillac,1975,404,199 +39-1,Motor Gearbox,1977,443,1 +391-1,1926 Renault,1975,404,236 +3911-1,Astronaut Key Chain,2000,503,0 +391-2,Police Car,1986,467,22 +3913-1,Darth Vader Key Chain,2000,503,0 +391407-1,Fire Spinner,2014,571,21 +3914-1,Luke Skywalker Key Chain,2000,503,0 +3915-1,Race Car Driver Key Chain,2000,503,0 +3916-1,Rock Raider Key Chain,2000,503,0 +3917-1,2 x 4 Brick - Red Key Chain,2001,503,0 +3918-1,Coast Guard Female Key Chain,2002,503,0 +3920-1,The Hobbit,2012,502,394 +392-1,Formula 1,1975,404,196 +392-2,Fire Engine,1986,467,30 +3922-1,Darth Maul Key Chain,2000,503,0 +3923-1,King Leo Key Chain,2000,503,0 +3924-1,Director Key Chain,2001,503,0 +3925-1,Brickster Key Chain,2002,503,0 +3926-1,Life on Mars Martian Key Chain,2002,503,0 +3928-1,Sandy Moondust Mars Rover Mission Astrobot Female,2002,126,5 +3929-1,Biff Starling Mars Rover Mission Astrobot Male,2002,126,5 +3930-1,Stephanie's Outdoor Bakery,2012,494,45 +393-1,Norton Motorcycle,1976,404,133 +3931-1,Emma's Splash Pool,2012,494,43 +393-2,Tow Truck,1986,467,29 +3932-1,Andrea’s Stage,2012,494,83 +3933-1,Olivia's Invention Workshop,2012,494,86 +3934-1,Mia’s Puppy House,2012,494,83 +3935-1,Stephanie’s Pet Patrol,2012,494,73 +3936-1,Emma’s Fashion Design Studio,2012,494,77 +3937-1,Olivia's Speedboat,2012,494,64 +3938-1,Andrea's Bunny House,2012,494,64 +3939-1,Mia's Bedroom,2012,494,86 +394-1,Harley-Davidson 1000cc,1976,404,142 +3942-1,Heartlake Dog Show,2012,494,202 +3948-1,Stormtrooper Key Chain,2001,503,0 +395-1,1909 Rolls-Royce,1976,404,283 +396-1,Thatcher Perkins Locomotive,1976,404,433 +3961-1,Johnny Thunder Key Chain,1998,503,0 +398-1,U.S.S. Constellation,1978,404,973 +3983-1,Captain Roger Key Chain,2002,503,0 +4000001-1,Moulding Machines,2011,408,794 +4000002-1,LOM Moulding 2011,2011,301,174 +4000005-1,Kornmarken Factory 2012,2012,301,315 +4000006-1,Production Kladno Campus 2012,2012,301,278 +4000007-1,Ole Kirk's House,2012,301,909 +4000008-1,LEGO Inside Tour Exclusive 2013 Edition – Villy Thomsen Truck,2013,301,366 +4000009-1,HMV 2013 Production,2013,408,285 +40000-1,Santa Claus in the Snow,2009,227,159 +4000010-1,LEGO House,2014,408,250 +4000011-1,Nyiregyhaza Factory,2014,408,327 +4000012-1,LEGO Inside Tour (LIT) Exclusive 2012 Edition - Piper Airplane,2012,301,618 +4000013-1,A LEGO Christmas Tale,2013,408,394 +4000014-1,The LEGOLAND Train,2014,408,545 +4000015-1,LOM Building B,2014,408,215 +4000016-1,Billund Airport,2014,408,281 +40001-1,Santa Claus,2009,227,42 +40002-1,Christmas Tree,2009,227,61 +40003-1,Snowman,2009,227,44 +40004-1,Heart 2010,2010,232,26 +40005-1,Bunny,2010,229,81 +40008-1,Snowman Building Set,2010,227,64 +40009-1,Holiday Building Set,2010,227,85 +400-1,Universal Building Set,1977,469,317 +40010-1,Santa with Sleigh Building Set,2010,227,71 +40011-1,Thanksgiving Turkey,2010,231,52 +40012-1,Halloween Pumpkin,2010,230,18 +40013-1,Halloween Ghost,2010,230,18 +40014-1,Halloween Bat,2010,230,25 +40015-1,Heart Book,2011,206,51 +40016-1,Valentine Letter Set,2011,232,41 +40017-1,Easter Basket,2011,229,86 +40018-1,Easter Bunny with Eggs,2011,229,95 +40019-1,Brickley,2011,22,59 +40020-1,Halloween Set,2011,230,71 +4002014-1,LEGO HUB Birds,2015,301,466 +4002015-1,Borkum Riffgrund 1,2015,598,558 +4002016-1,50 Years On Track,2016,301,1142 +4002-1,Riptide Racer,1996,363,53 +40021-1,Spiders Set,2011,230,54 +40022-1,Mini Santa Set,2011,227,72 +40023-1,Holiday Stocking,2011,227,76 +40024-1,Christmas Tree,2011,227,77 +40025-1,{Yellow Cab},2012,22,44 +40026-1,"Statue of Liberty (LEGO Store, Rockefeller Center, New York, NY)",2012,408,38 +40028-1,Mini Hogwarts Express,2011,246,64 +40029-1,Heart 2012,2012,206,51 +400-3,Small Wheels with Axles (The Building Toy),1966,371,12 +40030-1,Duck with Ducklings,2012,229,51 +40031-1,Bunny and Chick,2012,229,52 +40032-1,Witch,2012,230,71 +40033-1,Turkey,2012,231,52 +40034-1,Christmas Train,2012,227,82 +40035-1,Rocking Horse,2012,227,49 +40036-1,Monthly Mini Model Build January 2012 - Cobra,2012,409,37 +40037-1,Monthly Mini Model Build February 2012 - Hockey Player,2012,409,43 +40038-1,Monthly Mini Model Build March 2012 - Garden and Earthworm,2012,409,33 +40039-1,Monthly Mini Model Build May 2012 - Tulip,2012,409,16 +400-4,Small Wheels with Axles (System),1963,371,12 +40040-1,Monthly Mini Model Build July 2012 - Olympic Flame,2012,409,15 +40041-1,Monthly Mini Model Build December 2012 - Moose,2012,409,27 +40042-1,Monthly Mini Model Build October 2012 - Cat,2012,409,25 +40043-1,Monthly Mini Model Build April 2012 - Duck,2012,409,24 +40044-1,Monthly Mini Model Build June 2012 - Lawnmower,2012,409,25 +40045-1,Monthly Mini Model Build August 2012 - Shark,2012,409,27 +40045-2,"Monthly Mini Model Build Set - 2013 August, Shark [Europe]",2013,409,27 +40047-1,Monthly Mini Model Build September 2012 - Owl,2012,409,41 +40048-1,Birthday Cake,2012,206,24 +40049-1,Mini Sopwith Camel,2012,22,65 +4005-1,Tug Boat,1982,363,65 +40051-1,Valentine’s Day Heart Box,2013,232,54 +40052-1,Springtime Scene,2013,206,88 +40053-1,Easter Bunny with Basket,2013,229,96 +40054-1,Summer Scene,2013,206,40 +40055-1,Pumpkin,2013,230,52 +40056-1,Thanksgiving Feast,2013,206,46 +40057-1,Fall Scene,2013,206,72 +40058-1,Decorating The Tree,2013,228,110 +40059-1,Santa's Sleigh,2013,228,77 +40061-1,Monthly Mini Model Build January 2013 - Igloo,2013,409,40 +40062-1,Monthly Mini Model Build Set February 2013 - Log Cabin,2013,409,59 +40063-1,Monthly Mini Model Build March 2013 - Turtle,2013,409,33 +40064-1,Monthly Mini Model Build Set April 2013 - Lamb and Sheep,2013,409,32 +40065-1,Monthly Mini Model Build May 2013 - Kingfisher,2013,409,21 +40066-1,Monthly Mini Model Build June 2013 - Fisherman,2013,409,38 +40067-1,Monthly Mini Model Build July 2013 - Crab,2013,409,37 +40068-1,Monthly Mini Model Build August 2013 - Flamingo,2013,409,31 +40069-1,Monthly Mini Model Build September 2013 - Pirate,2013,409,44 +40070-1,Monthly Mini Model Build October 2013 - Witch,2013,409,22 +40071-1,Monthly Mini Model Build November 2013 - Tractor,2013,409,44 +40072,Monthly Mini Model Build December 2013 - Rocking Horse,2013,409,32 +40073-1,Panda,2013,31,70 +40076-1,Zombie Car,2012,558,60 +40077-1,Geoffrey,2013,22,90 +40078-1,Hot Dog Cart,2013,22,39 +40079-1,Mini VW T1 Camper Van,2013,22,75 +40080-1,Friends Pencil Holder,2013,501,142 +40081-1,LEGOLAND Picture Frame - Florida Edition,2013,411,121 +40081-2,LEGOLAND Picture Frame - Deutschland Edition,2013,411,121 +40081-3,LEGOLAND Picture Frame - Billund Edition,2013,411,121 +40081-4,LEGOLAND Picture Frame - Malaysia Edition,2013,411,121 +40081-5,LEGOLAND Picture Frame - Windsor Edition,2013,411,121 +40082-1,Christmas Tree Stand,2013,228,115 +40083-1,Christmas Tree Truck,2013,228,118 +40084-1,Hero Factory Weapon Pack,2013,400,6 +40085-1,LEGO Valentine,2014,232,127 +40086-1,LEGO Easter Bunny,2014,229,106 +40090-1,Halloween Bat,2014,230,155 +40091-1,Turkey,2014,231,125 +40092-1,Reindeer,2014,227,139 +40093-1,Snowman,2014,227,140 +40094-1,Monthly Mini Model Build January 2014 - Snowplough,2014,409,44 +40095-1,Monthly Mini Model Build February 2014 - Micro Manager,2014,409,50 +40096-1,Monthly Mini Model Build March 2014 - Spring Tree,2014,409,62 +40097-1,Monthly Mini Model Build April 2014 - Helicopter,2014,409,44 +40098-1,Monthly Mini Model Build May 2014 - Dragon,2014,409,43 +40099-1,Monthly Mini Model Build June 2014 - Jet-Ski,2014,409,33 +40-1,Universal Building Set,1976,469,293 +40100-1,Monthly Mini Model Build July 2014 - Surf Van,2014,409,46 +4010-1,Police Rescue Boat,1987,363,82 +40101-1,Monthly Mini Model Build August 2014 - Monkey,2014,409,46 +40102-1,Monthly Mini Model Build September 2014 - Aircraft,2014,409,37 +40103-1,Monthly Mini Model Build November 2014 - Rocket,2014,409,48 +40104-1,Monthly Mini Model October 2014 - Monster,2014,409,36 +40105-1,Monthly Mini Model Build December 2014 - Gingerbread House,2014,409,54 +40106-1,Elves' Workshop,2014,227,115 +40107-1,Ice Skating,2014,228,129 +40108-1,Balloon Cart,2014,22,66 +40109-1,MINI Cooper Mini Model,2014,22,59 +40110-1,Coin Bank,2014,61,121 +4011-1,Cabin Cruiser,1991,363,90 +40112-1,Model Catwalk,2014,494,143 +40114-1,LEGO Friends Buildable Jewelry Box,2014,494,201 +40115-1,LEGOLAND Entrance with Family,2014,425,271 +40116-1,Hero Factory Promo,2014,400,31 +40117-1,Hero Factory Villain Promo,2014,403,28 +40118-1,Buildable Brick Box 2x2,2014,408,204 +401-2,Large Wheels with Axles (The Building Toy),1966,371,7 +40120-1,Valentine's Day Dinner,2015,232,114 +4012-1,Wave Cops,1996,363,99 +40121-1,Painting Easter Eggs,2015,229,157 +40122-1,Trick or Treat,2015,230,133 +40123-1,Thanksgiving Feast,2015,231,158 +40124-1,Winter Fun,2015,227,107 +40125-1,Santa's Visit,2015,227,167 +40126-1,Monthly Mini Model Build January 2015 - Alien and Space Dog,2015,409,55 +40127-1,Monthly Mini Model Build February 2015 - Space Shuttle,2015,409,39 +40128-1,Monthly Mini Model Build March 2015 - Robot,2015,409,50 +40129-1,Monthly Mini Model Build April 2015 – UFO,2015,409,39 +401-3,Large Wheels with Axles (System),1964,371,7 +40130-1,Monthly Mini Model Build May 2015 - Koala,2015,409,65 +4013-1,Create and Imagine,2003,37,1000 +40131-1,Monthly Mini Model Build June 2015 - Parrot,2015,409,55 +40132-1,Whale July 2015,2015,409,31 +40133-1,Monthly Mini Model Build August 2015 - Kangaroo,2015,409,49 +40134-1,Monthly Mini Model Build September 2015 - Scuba Diver,2015,409,45 +40135-1,Monthly Mini Model Build October 2015 - Angler Fish,2015,409,29 +40136-1,Monthly Mini Model Build November 2015 - Shark,2015,409,31 +40137,Monthly Mini Model Build December 2015 - Submarine,2015,409,28 +40138-1,Christmas Train,2015,227,233 +40139-1,Gingerbread House,2015,26,277 +40140-1,Flower Cart,2015,23,75 +4014-1,Creator Exclusive,2003,37,500 +40141-1,Bricktober Hotel,2015,157,203 +40142-1,Bricktober Train Station,2015,157,180 +40143-1,Bricktober Bakery,2015,157,234 +40144-1,Bricktober Toys R Us Store,2015,157,164 +40145-1,LEGO Brand Store Opening Set,2015,408,412 +40146-1,Lufthansa Plane,2015,598,65 +40148-1,Year Of The Sheep,2015,31,99 +4015-1,Freighter,1982,363,80 +40153-1,Birthday Cake,2015,301,120 +40154-1,Pencil Holder,2015,301,176 +40155-1,Piggy Coin Bank,2015,301,148 +40156-1,Organiser,2015,494,171 +40158-1,Pirates Chess Set,2015,154,855 +4016-1,Racer,2001,22,21 +40161-1,What Am I?,2016,301,536 +40165-1,Minifigure Wedding Favor Set,2016,408,90 +40166-1,LEGOLAND Train,2016,425,210 +4017-1,Sea Helicopter,2001,22,13 +40171-1,Hedgehog Storage,2017,494,232 +40172-1,Brick Calendar,2017,501,278 +40174-1,Iconic Chess Set,2017,502,1450 +40179-1,Personalised Mosaic Portrait,2016,277,4501 +40180-1,Bricktober Theater,2014,157,164 +4018-1,Ship,2001,22,12 +40181-1,Bricktober Pizza Place,2014,157,139 +40182-1,Bricktober Fire Station,2014,157,175 +40183-1,Bricktober Town Hall,2014,157,186 +40190-1,Ferrari F138,2014,598,41 +4019-1,Aeroplane,2001,24,17 +40191-1,Ferrari F12 Berlinetta,2014,598,44 +40192-1,Ferrari 250 GTO,2014,598,46 +40193-1,Ferrari 512 S,2014,598,49 +40194-1,Finish Line & Podium,2014,598,63 +40195-1,Shell Station,2014,598,79 +40196-1,Shell Tanker,2014,598,93 +4020-1,Fire Fighting Boat,1987,363,206 +40201-1,Valentines Cupid Dog,2016,232,150 +40202-1,Easter Chick,2016,229,111 +40203-1,Vampire and Bat,2016,230,150 +40204-1,Pilgrim's Feast,2016,231,163 +40205-1,Elves' Workshop,2016,206,238 +40206-1,Santa,2016,227,155 +40207-1,Year Of The Monkey,2016,22,165 +40208-1,Monthly Mini Model Build January 2016 - Polar Bear,2016,409,40 +40209-1,Monthly Mini Model Build February 2016 - Snow Scooter,2016,409,26 +402-1,Universal Building Set,1977,469,401 +40210-1,Monthly Mini Model Build March 2016 - Bunny,2016,409,49 +4021-1,Police Patrol,1991,363,195 +40211-1,Monthly Mini Model Build April 2016 - Bee,2016,409,34 +40212-1,Monthly Mini Model Build May 2016 - Hedgehog,2016,409,39 +40213-1,Monthly Mini Model Build June 2016 - Sea Plane,2016,409,24 +40214-1,Monthly Mini Model Build July 2016 - Frog,2016,409,60 +40215-1,Monthly Mini Model Build August 2016 - Apple,2016,409,58 +40216-1,Monthly Mini Build September 2016 - School Bus,2016,409,65 +40217-1,Monthly Mini Build October 2016 - Werewolf,2016,409,52 +40218-1,Monthly Mini Model Build November 2016 - Fox,2016,409,39 +40219-1,Monthly Mini Model Build December 2016 - Christmas Present,2016,409,55 +402-2,White Turntables,1964,371,5 +40220-1,London Bus,2016,22,117 +4022-1,C26 Sea Cutter,1996,363,193 +40221-1,Fountain,2016,22,105 +40222-1,24-in-1 Holiday Countdown,2016,207,250 +40223-1,Christmas Ornament,2016,206,215 +40225-1,RIO 2016 MASCOTS,2016,598,196 +40226-1,Birthday Buddy,2016,22,133 +40227-1,MSC Ship,2016,598,181 +40228-1,Geoffrey & Friends,2016,598,133 +402-3,White Turntables,1966,371,5 +4023-1,Fun and Adventure,2003,37,55 +40236-1,Romantic Valentine Picnic,2017,232,126 +40237-1,Easter Egg Hunt -2017,2017,229,145 +40239-1,Monthly Mini Model Build January 2017 - Narwhal,2017,409,45 +40240-1,Monthly Mini Model Build February 2017 - Raccoon,2017,409,47 +4024-1,Advent Calendar 2003 Creator,2003,214,24 +4024-10,Advent Calendar 2003 Creator (Day 9) Airplane,2003,223,13 +4024-11,Advent Calendar 2003 Creator (Day 10) Sailboat,2003,223,16 +40241-1,Monthly Mini Model Build March 2017 - Platypus,2017,409,36 +4024-12,Advent Calendar 2003 Creator (Day 11) Snowplow,2003,223,21 +4024-13,Advent Calendar 2003 Creator (Day 12) Snail,2003,223,9 +4024-14,Advent Calendar 2003 Creator (Day 13) Robot,2003,223,14 +4024-15,Advent Calendar 2003 Creator (Day 14) Heart,2003,223,11 +4024-16,Advent Calendar 2003 Creator (Day 15) Truck,2003,223,21 +4024-17,Advent Calendar 2003 Creator (Day 16) Reindeer,2003,223,13 +4024-18,Advent Calendar 2003 Creator (Day 17) Bird,2003,223,10 +4024-19,Advent Calendar 2003 Creator (Day 18) Present,2003,223,9 +4024-2,Advent Calendar 2003 Creator (Day 1) Snowman,2003,223,19 +4024-20,Advent Calendar 2003 Creator (Day 19) Fireplace,2003,223,17 +4024-21,Advent Calendar 2003 Creator (Day 20) Santa,2003,223,13 +40242-1,Monthly Mini Model Build April 2017 - Chick,2017,409,54 +4024-22,Advent Calendar 2003 Creator (Day 21) Robot,2003,223,16 +4024-23,Advent Calendar 2003 Creator (Day 22) Race Car,2003,223,17 +4024-24,Advent Calendar 2003 Creator (Day 23) Helicopter,2003,223,16 +4024-25,Advent Calendar 2003 Creator (Day 24) Tree,2003,223,13 +4024-3,Advent Calendar 2003 Creator (Day 2) Little Girl,2003,223,9 +40243-1,Monthly Mini Model Build May 2017 - Racecar,2017,409,52 +4024-4,Advent Calendar 2003 Creator (Day 3) Penguin,2003,223,12 +40244-1,Monthly Mini Model Build June 2017 - Dragonfly,2017,409,37 +4024-5,Advent Calendar 2003 Creator (Day 4) Sheep,2003,223,13 +4024-6,Advent Calendar 2003 Creator (Day 5) Little Boy,2003,223,9 +4024-7,Advent Calendar 2003 Creator (Day 6) Stocking,2003,223,8 +4024-8,Advent Calendar 2003 Creator (Day 7) Spaceship,2003,223,10 +4024-9,Advent Calendar 2003 Creator (Day 8) Parrot,2003,223,9 +4025-1,Fire Boat,1982,363,150 +40252-1,Mini VW Beetle,2017,22,141 +4026-1,"Create Your Dreams {Canister, blue top}",2003,37,100 +40265-1,Friends Tic-Tac-Toe,2017,494,58 +4027-1,"Build and Imagine {canister, red top}",2003,37,100 +4028-1,World of Bricks {Blue Bucket},2003,37,500 +4029-1,Build with Bricks Bucket {Red Bucket},2003,37,500 +4030-1,Cargo Carrier,1987,363,323 +4031-1,Fire Rescue,1991,363,363 +403-2,Train Couplers and Wheels (The Building Toy),1967,371,12 +4032-1,Passenger Plane,2003,106,161 +4032-10,Passenger Plane - Austrian Air Version,2004,106,137 +4032-11,Passenger Plane - KLM Version,2006,106,137 +4032-12,Passenger Plane - Malaysian Air Version,2005,106,137 +4032-13,Passenger Plane - Aeroflot Version,2006,106,161 +4032-2,Passenger Plane - SAS Version,2003,106,140 +4032-3,Passenger Plane - EL AL Version,2004,106,137 +4032-4,Passenger Plane - Iberia Version,2004,106,139 +4032-5,Passenger Plane - JAL Version,2004,106,137 +4032-6,Passenger Plane - Lauda Air Version,2004,106,137 +4032-7,Passenger Plane - ANA Air Version,2004,106,138 +4032-8,Passenger Plane - SWISS Version,2005,106,161 +4032-9,Passenger Plane - Snowflake Version,2004,106,137 +403-3,Train Couplers and Wheels (System),1966,371,12 +4037-1,Helicopter,2004,23,9 +4038-1,Airplane,2003,466,33 +404-1,Universal Building Set,1977,469,471 +4042-1,"Jens, McDonald's #2",2002,301,4 +404-3,Wheels for Motor (The Building Toy),1967,371,12 +404-4,Wheels for the Motor (System),1967,371,12 +4047-1,Ultimate Wheels (Kohl's Exclusive),2003,204,517 +4048-1,Mech Lab (Kohl's Exclusive),2003,204,2 +4049-1,"Nesquik Promotional Set: Quicky the Bunny, Director, Cameraman and Car",2001,273,28 +4051-1,Quicky the Bunny (Nesquik Promotional),2001,273,4 +4052-1,Director (Nesquik Promotional),2001,273,4 +4053-1,Cameraman (Nesquik Promotional),2001,273,5 +4055-1,Medium Bucket,1997,399,329 +4056-1,Color Light,2001,273,13 +4057-1,Spot Light,2001,273,10 +4058-1,Cameraman 1,2001,273,4 +4059-1,Director,2001,273,4 +4060-1,Grip,2001,273,4 +4061-1,Assistant,2001,273,4 +4062-1,Actress,2001,273,4 +4063-1,Cameraman 2,2001,273,4 +4064-1,Actor 2,2001,273,4 +4065-1,Actor 3,2001,273,4 +4066-1,Actor 1,2001,273,4 +4067-1,Buggy,2001,273,15 +4068-1,Handy Camera,2001,273,6 +4069-1,Katinco & Megaphone,2001,273,4 +4070-1,Stand Camera,2001,273,7 +4071-1,Bottles,2001,273,7 +4072-1,Skeleton,2001,273,6 +4073-1,Tree 1,2001,273,6 +4074-1,Tree 3,2001,273,14 +4075-1,Tree 2,2001,273,13 +4076-1,Pteranodon,2001,273,17 +4077-1,Plesiosaur,2001,273,13 +4078-1,T-Rex,2001,273,18 +4079-1,Mini Rex,2001,273,4 +4090-1,Motion Madness,2003,406,244 +409-1,38 Slimbricks Assorted Sizes (The Building Toy),1965,371,114 +4093-1,Wild Windup,2003,406,319 +4094-1,Motor Movers,2003,406,256 +4095-1,Record and Play,2003,406,345 +4096-1,Micro Wheels,2003,204,216 +4097-1,Mini Robots,2003,204,229 +4098-1,High Flyers,2003,204,197 +4099-1,Robobots,2003,204,326 +41000-1,Water Scooter Fun,2013,494,28 +4100-1,Maximum Wheels,2003,204,293 +41001-1,Mia's Magic Tricks,2013,494,92 +41002-1,Emma's Karate Course,2013,494,92 +41003-1,Olivia's Newborn Foal,2013,494,85 +41004-1,Rehearsal Stage,2013,494,199 +41005-1,Heartlake High,2013,494,490 +41006-1,Downtown Bakery,2013,494,268 +41007-1,Heartlake Pet Salon,2013,494,264 +41008-1,Heartlake City Pool,2013,494,441 +41009-1,Andrea's Bedroom,2013,494,94 +410-1,Payloader,1973,416,28 +41010-1,Olivia’s Beach Buggy,2013,494,94 +4101-1,Wild Collection,2003,204,487 +41011-1,Stephanie's Soccer Practice,2013,494,82 +41013-1,Emma's Sports Car,2013,494,163 +41015-1,Dolphin Cruiser,2013,494,631 +41016-1,"Advent Calender 2013, Friends",2013,216,24 +41016-10,"Advent Calendar 2013, Friends (Day 9) - Basket",2013,226,19 +41016-11,"Advent Calendar 2013, Friends (Day 10) - Friends Accessories",2013,226,20 +41016-12,"Advent Calendar 2013, Friends (Day 11) - Basket with Money",2013,226,3 +41016-13,"Advent Calendar 2013, Friends (Day 12) - Presents",2013,226,8 +41016-14,"Advent Calendar 2013, Friends (Day 13) - Sled",2013,226,8 +41016-15,"Advent Calendar 2013, Friends (Day 14) - Fountain",2013,226,6 +41016-16,"Advent Calendar 2013, Friends (Day 15) - Bench",2013,226,11 +41016-17,"Advent Calendar 2013, Friends (Day 16) - Skates with Flower in Snow",2013,226,15 +41016-18,"Advent Calendar 2013, Friends (Day 17) - Cell Phone /Music Player Docking Station",2013,226,8 +41016-19,"Advent Calendar 2013, Friends (Day 18) - Snowman",2013,226,8 +41016-2,"Advent Calendar 2013, Friends (Day 1) - Stephanie",2013,226,4 +41016-20,"Advent Calendar 2013, Friends (Day 19) - Flame",2013,226,4 +41016-21,"Advent Calendar 2013, Friends (Day 20) - Christmas Tree",2013,226,18 +41016-22,"Advent Calendar 2013, Friends (Day 21) - Musical Score",2013,226,7 +41016-23,"Advent Calendar 2013, Friends (Day 22) - Basket with Leaf",2013,226,8 +41016-24,"Advent Calendar 2013, Friends (Day 23) - Squirrel",2013,226,2 +41016-25,"Advent Calendar 2013, Friends (Day 24) - Present with Letter",2013,226,12 +41016-3,"Advent Calendar 2013, Friends (Day 2) - Snowmobile",2013,226,11 +41016-4,"Advent Calendar 2013, Friends (Day 3) - Lamp Post",2013,226,10 +41016-5,"Advent Calendar 2013, Friends (Day 4) - Lily, Christmas Outfit",2013,226,4 +41016-6,"Advent Calendar 2013, Friends (Day 5) - Stand #1",2013,226,17 +41016-7,"Advent Calendar 2013, Friends (Day 6) - Perfume Bottles",2013,226,8 +41016-8,"Advent Calendar 2013, Friends (Day 7) - Stand #2",2013,226,14 +41016-9,"Advent Calendar 2013, Friends (Day 8) - Cups, Milk and Cookies",2013,226,8 +41017-1,Squirrel's Tree House,2013,496,41 +41018-1,Cat's Playground,2013,496,31 +41019-1,Turtle's Little Oasis,2013,496,33 +41020-1,Hedgehog's Hideaway,2013,496,34 +41021-1,Poodle's Little Palace,2013,496,46 +41022-1,Bunny's Hutch,2013,496,37 +41023-1,Fawn's Forest,2013,496,35 +41024-1,Parrot's Perch,2013,496,32 +41025-1,Puppy's Playhouse,2013,496,39 +41026-1,Sunshine Harvest,2014,494,236 +41027-1,Mia's Lemonade Stand,2014,494,114 +41028-1,Emma's Lifeguard Post,2014,494,78 +41029-1,Stephanie's New Born Lamb,2014,494,93 +41030-1,Olivia's Ice Cream Bike,2014,494,98 +4103-1,Fun with Bricks {small red bucket},2002,37,200 +41031-1,Andrea's Mountain Hut,2014,494,119 +4103-2,Fun with Bricks (4293364) - with Minifigs,2006,37,204 +41032-1,First Aid Jungle Bike,2014,495,156 +41033-1,Jungle Falls Rescue,2014,495,186 +41034-1,Summer Caravan,2014,494,311 +41035-1,Heartlake Juice Bar,2014,494,276 +41036-1,Jungle Bridge Rescue,2014,495,365 +41037-1,Stephanie's Beach House,2014,494,387 +41038-1,Jungle Rescue Base,2014,495,498 +41039-1,Sunshine Ranch,2014,494,753 +41040-1,Advent Calendar 2014 Friends,2014,216,24 +41040-10,"Advent Calendar 2014, Friends (Day 9) - Holiday Candle",2014,226,6 +41040-11,"Advent Calendar 2014, Friends (Day 10) - Friends Kitchen Accessories",2014,226,17 +41040-12,"Advent Calendar 2014, Friends (Day 11) - Stove",2014,226,13 +41040-13,"Advent Calendar 2014, Friends (Day 12) - Sweets and Saucepan",2014,226,7 +41040-14,"Advent Calendar 2014, Friends (Day 13) - Sideboard",2014,226,13 +41040-15,"Advent Calendar 2014, Friends (Day 14) - Goblets and Food",2014,226,12 +41040-16,"Advent Calendar 2014, Friends (Day 15) - Sink",2014,226,12 +41040-17,"Advent Calendar 2014, Friends (Day 16) - Cake and Cups",2014,226,6 +41040-18,"Advent Calendar 2014, Friends (Day 17) - Holiday Fireplace",2014,226,17 +41040-19,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",2014,226,11 +41040-2,"Advent Calendar 2014, Friends (Day 1) - Mia",2014,226,4 +41040-20,"Advent Calendar 2014, Friends (Day 19) - Sofa",2014,226,10 +41040-21,"Advent Calendar 2014, Friends (Day 20) - White Cat",2014,226,3 +41040-22,"Advent Calendar 2014, Friends (Day 21) - Radio and Cell Phone",2014,226,8 +41040-23,"Advent Calendar 2014, Friends (Day 22) - Large Present",2014,226,8 +41040-24,"Advent Calendar 2014, Friends (Day 23) - Christmas Tree",2014,226,18 +41040-25,"Advent Calendar 2014, Friends (Day 24) - Present with Skates, Camera",2014,226,17 +41040-3,"Advent Calendar 2014, Friends (Day 2) - Sled",2014,226,11 +41040-4,"Advent Calendar 2014, Friends (Day 3) - Gift and Basket",2014,226,4 +41040-5,"Advent Calendar 2014, Friends (Day 4) - Deer and Tree",2014,226,4 +41040-6,"Advent Calendar 2014, Friends (Day 5) - Holiday Window Scene",2014,226,13 +41040-7,"Advent Calendar 2014, Friends (Day 6) - Ewa, Christmas Outfit",2014,226,4 +41040-8,"Advent Calendar 2014, Friends (Day 7) - Table",2014,226,11 +41040-9,"Advent Calendar 2014, Friends (Day 8) - Chairs",2014,226,14 +4104-1,Small Creator Bucket,2002,37,200 +41041-1,Turtle's Little Paradise,2014,496,43 +41042-1,Tiger's Beautiful Temple,2014,496,42 +41043-1,Penguin's Playground,2014,496,46 +41044-1,Macaw's Fountain,2014,496,39 +41045-1,Orangutan's Banana Tree,2014,496,37 +41046-1,Brown Bear's River,2014,496,37 +41047-1,Seal's Little Rock,2014,496,37 +41048-1,Lion Cub's Savannah,2014,496,43 +41049-1,Panda's Bamboo,2014,496,47 +41050-1,Ariel’s Amazing Treasures,2014,579,77 +4105-1,Imagine and Build,2002,37,500 +41051-1,Merida’s Highland Games,2014,579,144 +4105-2,50th Anniversary Bucket,2005,37,500 +41052-1,Ariel’s Magical Kiss,2014,579,249 +4105-3,Red Bucket,2005,37,483 +41053-1,Cinderella’s Dream Carriage,2014,579,274 +41054-1,Rapunzel’s Creativity Tower,2014,579,297 +41055-1,Cinderella’s Romantic Castle,2014,579,643 +41056-1,Heartlake News Van,2014,494,276 +41057-1,Heartlake Horse Show,2014,494,373 +41058-1,Heartlake Shopping Mall,2014,494,1165 +41059-1,Jungle Tree Sanctuary,2014,495,319 +41060-1,Sleeping Beauty's Royal Bedroom,2015,579,95 +4106-1,Large red bucket,2002,37,500 +41061-1,Jasmine's Exotic Palace,2015,579,142 +41062-1,Elsa's Sparkling Ice Castle,2015,579,291 +41063-1,Ariel’s Undersea Palace,2015,579,376 +41065-1,Rapunzel's Best Day Ever,2016,579,144 +41066-1,Anna & Kristoff's Sleigh Adventure,2016,579,173 +41067-1,Belle’s Enchanted Castle,2016,579,371 +41068-1,Arendelle Castle Celebration,2016,579,475 +41069-1,Treasure's Day at the Pool,2016,579,70 +4107-1,Build Your Dreams,2002,37,1000 +41071-1,Aira's Creative Workshop,2015,600,98 +41072-1,Naida's Spa Secret,2015,600,248 +41073-1,Naida's Epic Adventure Ship,2015,600,312 +41074-1,Azari and the Magical Bakery,2015,600,324 +41075-1,The Elves’ Treetop Hideaway,2015,600,516 +41076-1,Farran and the Crystal Hollow,2015,600,178 +41077-1,Aira's Pegasus Sleigh,2015,600,319 +41078-1,Skyra’s Mysterious Sky Castle,2015,600,813 +4108-1,T-Junction Road Plates,2002,289,2 +41085-1,Vet Clinic,2015,494,200 +41086-1,Vet Ambulance,2015,494,88 +41087-1,Bunny and Babies,2015,494,47 +41088-1,Puppy Training,2015,494,65 +41089-1,Little Foal,2015,494,43 +41090-1,Olivia's Garden Pool,2015,494,82 +4109-1,Curved Road Plates,2002,289,2 +41091-1,Mia's Roadster,2015,494,194 +41092-1,Stephanie's Pizzeria,2015,494,87 +41093-1,Heartlake Hair Salon,2015,494,334 +41094-1,Heartlake Lighthouse,2015,494,471 +41095-1,Emma’s House,2015,494,727 +41097-1,Heartlake Hot Air Balloon,2015,494,254 +41098-1,Emma's Tourist Kiosk,2015,494,98 +41099-1,Heartlake Skate Park,2015,494,198 +41-1,Train Wagon Wheels in Red,1977,456,4 +41100-1,Heartlake Private Jet,2015,494,229 +4110-1,Straight Road Plates,2002,289,2 +41101-1,Heartlake Grand Hotel ,2015,494,1573 +41102-1,Advent Calendar 2015 Friends,2015,216,249 +41103-1,Pop Star Recording Studio,2015,494,171 +41104-1,Pop Star Dressing Room,2015,494,297 +41105-1,Pop Star Show Stage,2015,494,446 +41106-1,Pop Star Tour Bus,2015,494,680 +41107-1,Pop Star Limousine,2015,494,263 +41108-1,Heartlake Food Market,2015,494,391 +41109-1,Heartlake City Airport,2015,494,691 +41110-1,Birthday Party,2016,494,191 +4111-1,Cross Road Plates,2002,289,2 +41111-1,Party Train,2016,494,109 +41112-1,Party Cakes,2016,494,50 +41113-1,Party Gift Shop,2016,494,52 +41114-1,Party Styling,2016,494,53 +41115-1,Emma's Creative Workshop,2016,494,107 +41116-1,Olivia's Exploration Car,2016,494,184 +41117-1,Pop Star TV Studio,2016,494,195 +41118-1,Heartlake Supermarket,2016,494,316 +41119-1,Heartlake Cupcake Cafe,2016,494,444 +41120-1,Adventure Camp Archery,2016,494,114 +41121-1,Adventure Camp Rafting,2016,494,320 +41122-1,Adventure Camp Tree House,2016,494,724 +41123-1,Foal's Washing Station,2016,494,85 +41124-1,Heartlake Puppy Daycare,2016,494,285 +41125-1,Horse Vet Trailer,2016,494,378 +41126-1,Heartlake Riding Club,2016,494,582 +41127-1,Amusement Park Arcade,2016,494,173 +41128-1,Amusement Park Space Ride,2016,494,193 +41129-1,Amusement Park Hot Dog Van,2016,494,243 +41130-1,Amusement Park Roller Coaster,2016,494,1122 +4113-1,Brick Adventures Small Bucket,2002,37,124 +41131-1,Advent Calendar 2016 Friends,2016,216,218 +41132-1,Heartlake Party Shop,2016,494,175 +41133-1,Amusement Park Bumper Cars,2016,494,423 +41134-1,Heartlake Performance School,2016,494,772 +41135-1,Livi’s Pop Star House,2016,494,596 +41140-1,Daisy’s Beauty Salon,2016,579,97 +41141-1,Pumpkin’s Royal Carriage,2016,579,79 +41142-1,Palace Pets Royal Castle,2016,579,185 +41143-1,Berry's Kitchen,2017,579,43 +41144-1,Petite's Royal Stable,2017,579,74 +41147-1,Anna's Snow Adventure,2017,579,153 +41148-1,Elsa's Magical Ice Palace,2017,579,700 +41149-1,Moana's Island Adventure,2016,579,205 +41150-1,Moana's Ocean Voyage,2016,579,307 +4115-1,All That Drives Bucket,2001,37,166 +4116-1,Animal Adventures Bucket,2001,37,211 +4117-1,Fantastic Flyers & Cool Cars Bucket,2001,37,266 +41171-1,Emily Jones & the Baby Wind Dragon,2016,600,80 +41172-1,The Water Dragon Adventure,2016,600,212 +41173-1,Elvendale School of Dragons,2016,600,230 +41174-1,The Starlight Inn,2016,600,347 +4117463-1,Cyber Saucer TRU 50 Years Forever Fun Bundle,1997,144,2 +41175-1,Fire Dragon's Lava Cave,2016,600,441 +41176-1,The Secret Market Place,2016,600,700 +41177-1,The Precious Crystal Mine,2016,600,272 +41178-1,The Dragon Sanctuary,2016,600,585 +41179-1,Queen Dragon’s Rescue,2016,600,832 +41180-1,Ragana’s Magic Shadow Castle,2016,600,1013 +4118-1,"Buildings, Mansions and Shops",2001,37,364 +41181-1,Naida's Gondola & the Goblin Thief,2017,600,67 +41182-1,The Capture of Sophie Jones,2017,600,226 +41183-1,The Goblin King's Evil Dragon,2017,600,338 +41184-1,Aira's Airship & the Amulet Chase,2017,600,343 +41185-1,Magic Rescue from the Goblin Village,2017,600,637 +4119-1,Regular & Transparent Bricks Bucket,2001,37,234 +4120-1,Fun and Cool Transportation,2001,37,608 +4121-1,All Kinds of Animals / Lap Table,2001,37,174 +4122-1,Basic Building Set,2000,470,201 +41230-1,Batgirl Batjet Chase,2017,482,206 +41231-1,Harley Quinn to the rescue,2016,482,217 +41232-1,Super Hero High School,2017,482,711 +41233-1,"Lashina"" Tank",2017,482,142 +41234-1,Bumblebee Helicopter,2017,482,141 +41235-1,Wonder Woman Dorm,2017,482,186 +4124-1,"Advent Calendar 2001, Creator",2001,214,24 +4124-10,"Advent Calendar 2001, Creator (Day 9) Space Buggy",2001,217,18 +4124-11,"Advent Calendar 2001, Creator (Day 10) Dinosaur",2001,217,8 +4124-12,"Advent Calendar 2001, Creator (Day 11) Speedboat",2001,217,10 +4124-13,"Advent Calendar 2001, Creator (Day 12) Reindeer",2001,217,10 +4124-14,"Advent Calendar 2001, Creator (Day 13) Snowman",2001,217,15 +4124-15,"Advent Calendar 2001, Creator (Day 14) Jet Ski",2001,217,11 +4124-16,"Advent Calendar 2001, Creator (Day 15) Dog",2001,217,10 +4124-17,"Advent Calendar 2001, Creator (Day 16) Police Boat",2001,217,9 +4124-18,"Advent Calendar 2001, Creator (Day 17) Whale",2001,217,9 +4124-19,"Advent Calendar 2001, Creator (Day 18) Space Shuttle",2001,217,10 +4124-2,"Advent Calendar 2001, Creator (Day 1) Cat",2001,217,10 +4124-20,"Advent Calendar 2001, Creator (Day 19) Parrot",2001,217,9 +4124-21,"Advent Calendar 2001, Creator (Day 20) Steamship",2001,217,10 +4124-22,"Advent Calendar 2001, Creator (Day 21) Church",2001,217,11 +4124-23,"Advent Calendar 2001, Creator (Day 22) Helicopter",2001,217,11 +4124-24,"Advent Calendar 2001, Creator (Day 23) Christmas Tree",2001,217,10 +4124-25,"Advent Calendar 2001, Creator (Day 24) Present",2001,217,8 +4124-3,"Advent Calendar 2001, Creator (Day 2) Max",2001,217,1 +4124-4,"Advent Calendar 2001, Creator (Day 3) Fireplace",2001,217,11 +4124-5,"Advent Calendar 2001, Creator (Day 4) Santa",2001,217,10 +4124-6,"Advent Calendar 2001, Creator (Day 5) Ambulance",2001,217,15 +4124-7,"Advent Calendar 2001, Creator (Day 6) Penguin",2001,217,10 +4124-8,"Advent Calendar 2001, Creator (Day 7) Tina",2001,217,1 +4124-9,"Advent Calendar 2001, Creator (Day 8) Frog with Hat",2001,217,11 +4128-1,XL Freestyle Bucket,1997,399,657 +41300-1,Puppy Championship,2017,494,185 +4130-1,Freestyle Building Set,1995,399,37 +41301-1,Puppy Parade,2017,494,145 +41302-1,Puppy Pampering,2017,496,45 +41303-1,Puppy Playground,2017,496,62 +41304-1,Puppy Treats & Tricks,2017,496,45 +41305-1,Emma's Photo Studio,2017,494,95 +41306-1,Mia's Beach Scooter,2017,494,79 +41307-1,Olivia's Creative Lab,2017,494,99 +41308-1,Stephanie's Friendship Cakes,2017,494,94 +41309-1,Andrea's Musical Duet,2017,494,86 +41310-1,Heartlake Gift Delivery,2017,494,185 +4131-1,Freestyle Building Set,1995,399,71 +41311-1,Heartlake Pizzeria,2017,494,287 +41312-1,Heartlake Sports Center,2017,494,327 +41313-1,Heartlake Summer Pool,2017,494,588 +41314-1,Stephanie's House,2017,494,623 +4132-1,Freestyle Building Set,1995,399,122 +4133-1,Small Freestyle Bucket,1995,399,135 +4134-1,Large Freestyle Bucket,1995,399,252 +4135-1,Freestyle Garden Friends,1996,399,121 +4137-1,Small Freestyle Clearpack,1997,399,127 +4139-1,Freestyle Bucket,1997,399,249 +4142-1,Freestyle Building Set,1995,399,98 +414-3,"Windows Parts Pack, Red (The Building Toy)",1966,371,10 +4143-1,Freestyle Building Set,1995,399,196 +414-4,"Windows Parts Pack, White (The Building Toy)",1966,371,10 +4144-1,Freestyle Brick Vac Bus,1995,399,142 +414-5,"Windows Parts Pack, Red (System)",1966,371,10 +4145-1,Freestyle Playcase,1995,399,254 +414-6,"Windows Parts Pack, White (System)",1966,371,10 +4146-1,Extra Large Freestyle Bucket,1995,399,410 +4147-1,Freestyle Elefant Villa,1996,399,191 +41492-1,Iron Man & Cpt. America,2016,610,174 +41493-1,Black Panther & Dr. Strange,2016,610,167 +41500-1,Flain,2014,581,58 +4150-1,Freestyle Building Set,1995,399,91 +41501-1,Vulk,2014,581,69 +41502-1,Zorch,2014,581,45 +41503-1,Krader,2014,581,66 +41504-1,Siesmo,2014,581,50 +41505-1,Shuff,2014,581,51 +41506-1,Teslo,2014,581,54 +41507-1,Zaptor,2014,581,61 +41508-1,Volectro,2014,581,70 +41509-1,Slumbo,2014,582,61 +415-1,5 Sixteens and 4 Twenties (System),1966,371,27 +41510-1,Lunk,2014,582,51 +4151-1,Girl's Freestyle Set,1995,399,274 +41511-1,Flurr,2014,582,46 +41512-1,Chomly,2014,582,68 +4151270-1,Star Wars Co-Pack of 7121 and 7111,2000,166,2 +41513-1,Gobba,2014,582,57 +41514-1,Jawg,2014,582,61 +41515-1,Kraw,2014,582,70 +41516-1,Tentro,2014,582,69 +41517-1,Balk,2014,582,68 +41518-1,Glomp,2014,583,64 +41519-1,Glurt,2014,583,62 +41520-1,Torts,2014,583,48 +4152-1,Large Freestyle Bucket,1995,399,409 +41521-1,Footi,2014,583,72 +41522-1,Scorpi,2014,583,70 +41523-1,Hoogi,2014,583,69 +41524-1,Mesmo,2014,583,64 +41525-1,Magnifo,2014,583,61 +41526-1,Wizwuz,2014,583,70 +41527-1,Rokit,2015,584,66 +41528-1,Niksput,2015,584,62 +41529-1,Nurp-Naut,2015,584,52 +41530-1,Meltus,2015,584,66 +4153-1,Large Freestyle Playcase,1995,399,698 +41531-1,Flamzer,2015,584,60 +41532-1,Burnard,2015,584,59 +41533-1,Globert,2015,584,45 +41534-1,Vampos,2015,584,59 +41535-1,Boogly,2015,584,52 +41536-1,Gox,2015,585,62 +41537-1,Jinky,2015,585,59 +41538-1,Kamzo,2015,585,58 +41539-1,Krog,2015,585,60 +41540-1,Chilbo,2015,585,65 +41541-1,Snoof,2015,585,54 +41542-1,Spugg,2015,585,51 +41543-1,Turg,2015,585,56 +41544-1,Tungster,2015,585,60 +41545-1,Kramm,2015,586,68 +41546-1,Forx,2015,586,65 +41547-1,Wuzzo,2015,586,74 +41548-1,Dribbal,2015,586,52 +41549-1,Gurggle,2015,586,66 +41550-1,Slusho,2015,586,53 +41551-1,Snax,2015,586,51 +41552-1,Berp,2015,586,68 +41553-1,Vaka-Waka,2015,586,69 +41554-1,Kuffs,2016,587,63 +41555-1,Busto,2016,587,69 +41556-1,Tiketz,2016,587,62 +41557-1,Camillot,2016,587,64 +41558-1,Mixadel,2016,587,63 +41559-1,Paladum,2016,587,64 +41560-1,Jamzy,2016,587,70 +41561-1,Tapsy,2016,587,57 +41562-1,Trumpsy,2016,587,54 +41563-1,Splasho,2016,588,67 +41564-1,Aquad,2016,588,70 +41565-1,Hydro,2016,588,70 +41566-1,Sharx,2016,588,55 +41567-1,Skulzy,2016,588,66 +41568-1,Lewt,2016,588,62 +41569-1,Surgeo,2016,588,63 +41570-1,Skrubz,2016,588,68 +4157-1,Freestyle Trial Size,1997,399,36 +41571-1,Tuth,2016,588,67 +41572-1,Gobbol,2016,589,62 +41573-1,Sweepz,2016,589,61 +41574-1,Compax,2016,589,66 +41575-1,Cobrax,2016,589,64 +41576-1,Spinza,2016,589,60 +41577-1,Mysto,2016,589,64 +41578-1,Screeno,2016,589,73 +41579-1,Camsta,2016,589,62 +41580-1,Myke,2016,589,63 +4158-1,Small Freestyle Box,1997,399,132 +41585-1,Batman,2017,610,91 +41586-1,Batgirl,2017,610,99 +41587-1,Robin,2017,610,101 +41588-1,The Joker,2017,610,151 +41589-1,Captain America,2017,610,79 +41590-1,Iron Man,2017,610,96 +41591-1,Black Widow,2017,610,143 +41592-1,The Hulk,2017,610,93 +41593-1,Captain Jack Sparrow,2017,610,109 +41594-1,Captain Armando Salazar,2017,610,118 +41595-1,Belle,2017,610,139 +41596-1,Beast,2017,610,116 +416-1,4 Sixteens 2 Twenties (The Building Toy),1966,371,18 +4161-1,Girl's Freestyle Suitcase,1995,399,293 +4162-1,Freestyle Multibox,1995,399,600 +4163-1,Electric Freestyle Set,1995,399,350 +4164-1,Mickey's Fire Engine,2000,388,27 +4165-1,Minnie's Birthday Party,2000,388,85 +4166-1,Mickey's Car Garage,2000,388,90 +4167-1,Mickey's Mansion,2000,388,123 +4169306a-1,Christmas Tree Ornament,2005,227,46 +4169306b-1,Snowman Ornament,2005,227,36 +4169306c-1,Santa Claus Ornament,2005,227,36 +4171-1,Spot & Friends,2001,37,53 +4172-1,Tina's House,2001,37,44 +417-3,Cornerbricks (The Building Toy),1966,371,10 +4173-1,Max's Pitstop,2001,37,59 +417-4,Cornerbricks (System),1966,371,20 +4174-1,Max Goes Flying,2001,37,173 +4175-1,Adventures with Max & Tina,2001,37,219 +4176-1,The Race of the Year,2001,37,326 +4177-1,Building Stories w/NaNa Bird,2001,37,382 +4178-1,Mickey's Fishing Adventure,2000,388,107 +4179-1,Large Creator Box,2002,37,500 +4180878,"Bionicle Poster 2002, Bohrok front Krana back, 420 x 295 mm",2002,501,0 +4181-1,Isla De Muerta,2011,263,160 +418-2,2 x 4 Bricks (The Building Toy),1966,371,65 +4182-1,The Cannibal Escape,2011,263,279 +418-3,2 x 4 Bricks (System),1966,371,126 +4183-1,The Mill,2011,263,366 +4184-1,Black Pearl,2011,263,808 +4184912-1,Black Bus with Ball (Mannschaftsbus + Ball),2002,462,2 +4186868-1,"Large Train Engine with Tender Black (Motorizable, sets 4534, 4535)",2002,238,203 +4186870-1,Open Freight Wagon (White Box),2002,238,121 +4186872-1,Passenger Wagon Green (White Box),2002,238,194 +4186874-1,Caboose (White Box),2002,238,170 +4186875-1,9V Platform and Mini-Figures,2002,238,47 +4186876-1,Passenger Wagon Blue (White Box),2002,238,192 +4189224-1,"Dragon Sculpture, Ollie, the little dragon from Castleland (Legoland Billund)",2002,425,47 +4191-1,The Captain’s Cabin,2011,263,94 +419-2,2 x 3 Bricks (The Building Toy),1966,371,75 +4192-1,Fountain of Youth,2011,263,127 +419-3,2 x 3 Bricks (System),1966,371,150 +4193-1,The London Escape,2011,263,466 +4194-1,Whitecap Bay,2011,263,748 +4195-1,Queen Anne’s Revenge,2011,263,1094 +4195641-1,Star Wars Co-Pack of 7142 and 7152,2002,169,2 +41999-1,"4 x 4 Crawler Exclusive Edition ""BOSS Crawler"" [Co-Creation Model]",2013,1,1583 +42000-1,Grand Prix Racer,2013,12,1139 +4200-1,Mining 4 x 4,2012,56,101 +42001-1,Mini Off-Roader,2013,1,100 +42002-1,Hovercraft,2013,1,169 +42004-1,Mini Backhoe Loader,2013,7,246 +42005-1,Monster Truck,2013,1,328 +42006-1,Excavator,2013,1,719 +42007-1,Moto Cross Bike,2013,1,253 +42008-1,Service Truck,2013,1,1275 +42009-1,Mobile Crane MK II,2013,7,2606 +420-1,Police Car,1973,421,19 +42010-1,Off-Road Racer,2013,1,159 +4201-1,Loader and Tipper,2012,56,138 +42011-1,Race Car,2013,1,157 +42020-1,Twin Rotor Helicopter,2014,1,145 +4202-1,Mining Truck,2012,52,269 +42021-1,Snowmobile,2014,1,185 +42022-1,Hot Rod,2014,1,413 +42023-1,Construction Crew,2014,1,833 +42024-1,Container Truck,2014,1,947 +42025-1,Cargo Plane,2014,6,1295 +42026-1,Black Champion Racer,2014,1,136 +42026-2,Black Champion Racer,2014,1,137 +42027-1,Desert Racer,2014,1,148 +42028-1,Bulldozer,2014,7,614 +42029-1,Customized Pick up Truck,2014,1,1062 +420-3,2 x 2 Bricks (The Building Toy),1966,371,100 +42030-1,Remote-Controlled Volvo L350F Wheel Loader,2014,7,1634 +4203-1,Excavator Transporter,2012,56,304 +42031-1,Cherry Picker,2015,15,155 +42032-1,Compact Tracked Loader,2015,7,251 +42033-1,Record Breaker,2015,12,124 +42034-1,Quad Bike,2015,11,148 +42035-1,Mining Truck,2015,7,361 +42036-1,Street Motorcycle,2015,13,374 +42037-1,Formula Off-Roader,2015,11,493 +42038-1,Arctic Truck,2015,11,912 +42039-1,24 Hours Race Car,2015,12,1218 +420-4,2 x 2 Bricks (System),1966,371,198 +42040-1,Fire Plane,2015,9,577 +4204-1,The Mine,2012,56,751 +42041-1,Race Truck,2015,12,608 +42042-1,Crawler Crane,2015,1,1399 +42043-1,Mercedes Benz Arocs 3245,2015,1,2792 +42044-1,Display Team Jet,2016,1,113 +42045-1,Hydroplane Racer,2016,1,179 +42046-1,Getaway Racer,2016,1,170 +42047-1,Police Interceptor,2016,1,185 +42048-1,Race Kart,2016,1,344 +42049-1,Mine Loader,2016,1,475 +42050-1,Drag Racer,2016,1,646 +4205-1,Off Road Command Center,2012,61,388 +42052-1,Heavy Lift Helicopter,2016,1,1041 +42053-1,Volvo EW 160E,2016,1,1166 +42054-1,Claas Xerion 5000 Trac VC,2016,1,1975 +42055-1,Bucket Wheel Excavator,2016,7,3928 +42056-1,Porsche 911 GT3 RS,2016,1,2704 +42057-1,Ultralight Helicopter,2017,1,199 +42058-1,Stunt Bike,2017,1,140 +42059-1,Stunt Truck,2017,1,141 +42060-1,Roadwork Crew,2017,1,364 +4206-1,9V Train Switching Track Collection,2006,244,28 +42061-1,Telehandler,2017,1,259 +4206-2,Recycling Truck,2012,63,296 +42062-1,Container Yard,2017,1,630 +42063-1,BMW R 1200 GS Adventure,2017,1,593 +42063-40,Technic 40 year anniversary model (42057 + 42061 + 42063),2017,1,568 +42064-1,Ocean Explorer,2017,1,1326 +42065-1,RC Tracked Racer,2017,1,369 +42066-1,Air Race Jet,2017,1,1150 +4207-1,City Garage,2012,63,932 +4207901-1,Star Wars MINI Bonus Pack,2003,159,4 +4208-1,4 × 4 Fire Truck,2012,58,242 +4209-1,Fire Plane,2012,58,507 +42-1,Motor Case / Lower Part,1977,443,1 +4210-1,Coast Guard Platform,2008,55,450 +421-1,1 x 2 Bricks,1966,371,176 +4211-1,Starter Set 100,1998,470,53 +421-2,2 eights 2 sixes 2 fours 8 twos 6 ones (The Building Toy),1966,371,20 +4212-1,Starter Set 200,1998,470,95 +4212838-1,LEGO Stores Easter Chick for 2004,2004,229,62 +4212847-1,LEGO Stores Easter Chick in egg for 2004,2004,229,99 +4212852-1,LEGO Stores Easter Opening Egg for 2004 - Blue,2004,229,178 +4213-1,Super Set 200,1998,470,519 +4214-1,Medium Bucket,1998,470,264 +4215-1,Starter Set 300,1998,470,264 +4216-1,Super Set 100,1998,470,509 +4217-1,Playdesk and Bricks,1998,470,215 +4219-1,Brick Pack 100,1998,470,288 +4220-1,Large Box of Bricks,1998,470,428 +422-1,"1 x 1, 1 x 2, 1 x 4, 1 x 6, 1 x 8 Bricks",1966,371,28 +4221-1,Challenger Set 100,1998,470,65 +4222-1,Challenger Set 300,1998,470,363 +4223-1,Challenger Set 400 with Motor,1999,470,548 +4224-1,Medium Bucket,1998,470,363 +4225-1,Challenger Set 350,1998,470,244 +4228383-1,Vakama Promotional Set (Woolworth's Exclusive),2003,356,3 +4229-1,Brick Pack 300,1998,470,812 +4232-1,Freestyle Set,1998,399,30 +423-3,Curved and Round Bricks (The Building Toy),1966,371,84 +4239-1,Freestyle Set,1998,399,38 +4243532-1,Stunt Pack,2004,119,35 +4243534-1,Racers Hazard Kit,2004,119,35 +4244-1,Large Bulk Bucket,1998,399,420 +425-1,Fork Lift,1976,416,21 +4254-1,Freestyle Playdesk,1998,399,309 +4258-1,Big Box Play Scape,1998,399,1009 +426-1,7 Named Beams (The Building Toy),1966,371,7 +4267-1,Large Bucket,1998,399,468 +427-1,8 Plates 2 x 8 (The Building Toy),1966,371,8 +4271-1,FreeStyle Box,1998,399,180 +4274-1,Freestyle Playdesk,1998,399,508 +4277206-1,Letters and Keyring,2005,500,72 +4277678-1,LEGO Games Knights Kingdom Chess,2005,502,184 +4278-1,Blue Tub,2003,37,1000 +4279-1,CREATOR Strata Red {Red Tub},2003,37,1002 +4280-1,Freestyle Trial Size,1998,399,39 +428-1,5 Plates 4 x 8 (The Building Toy),1966,371,5 +4281-1,Classic Trial Size,1999,470,25 +4282-1,Classic Trial Size,1999,470,37 +4283-1,Classic Trial Box,2000,470,53 +4284-1,Classic Trial Size,1999,470,123 +4285-1,Small Bucket,1999,470,256 +4285968-1,Transformation Kit Dirt Crusher (Red),2005,119,47 +4285969-1,Transformation Kit Dirt Crusher (Blue),2005,119,47 +4285970-1,Transformation Kit Dirt Crusher (Green),2005,119,47 +4286013-1,Big Wheels Pack Dirt Crusher (Red),2005,119,10 +4286024-1,Big Wheels Pack Dirt Crusher (Blue),2005,119,10 +4286025-1,Big Wheels Pack Dirt Crusher (Green),2005,119,10 +4286784-1,Dirt Crusher Gearbox with Light,2005,119,6 +4287082-1,Antenna Pack for Dirt Crusher,2005,119,10 +4287744-1,City Value Pack - 7241 7246 - shrinkwrapped Target Country in Australia,2005,52,0 +4288-1,Large Bucket,1999,470,404 +429-1,4 Plates 6 x 8 (The Building Toy),1966,371,4 +4291-1,Classic Build & Store Tub,1999,470,770 +4293-1,Classic Value Pack,1999,470,817 +4294-1,Helicopter ANA Promotional Set,2002,466,16 +4297-1,Lightning Streak,2002,113,19 +4298-1,Blue Power,2002,113,22 +4299-1,Nesquik Quicky Racer,2002,113,17 +4-3,Basic Set,1973,469,234 +4300-1,Green Racer,2003,113,21 +430-1,Biplane,1975,412,18 +4301-1,Blue Racer,2003,113,24 +430-2,Six Trees and Bushes (The Building Toy),1966,371,6 +4304-1,Chopper Cop,1998,100,24 +4305-1,Xcyber,1997,144,36 +4306-1,Rings,1980,404,15 +4308-1,Racing Car,2004,113,28 +4309-1,Blue Racer,2004,113,31 +4310-1,Orange Racer,2004,113,24 +431-1,Gas Station (The Building Toy),1966,371,13 +432-1,Road Signs (The Building Toy),1966,371,8 +433-1,6 Street Lamps with Curved Top (The Building Toy),1966,371,6 +4335-1,Black Robots Pod,2004,478,50 +4336-1,Picture Frame and Mirror,1980,279,48 +4337-1,Dragon Pod,2005,478,52 +4338-1,Monster Pod,2005,478,49 +4339-1,Aqua Pod,2005,478,56 +434-1,50 lettered bricks (The Building Toy),1966,371,50 +4346-1,Robo Pod,2004,478,50 +4346-2,Robo Pod (Polybag),2004,478,47 +4346-3,Robo Pod (Toy Fair Nuernberg Promotion),2004,478,50 +4347-1,Auto Pod,2004,478,40 +4347-2,Auto Pod (Polybag),2004,478,37 +4347-3,Auto Pod (Toy Fair Nuernberg Promotion),2004,478,40 +4348-1,Aero Pod,2004,478,36 +4348-2,Aero Pod (Polybag),2004,478,33 +4348-3,Aero Pod (Toy Fair Nuernberg Promotion),2004,478,36 +4349-1,Wild Pod,2004,478,44 +4349-2,Wild Pod (polybag),2004,478,41 +4349-3,Wild Pod (Toy Fair Nuernberg Promotion),2004,478,44 +435-1,Tipper Truck,1976,416,23 +435-2,Garage Plate and Door (The Building Toy),1966,371,3 +437-1,50 numbered bricks (The Building Toy),1966,371,50 +4-4,Large House Set,1970,433,218 +44000-1,Furno XL,2013,401,103 +4400-1,Creations and Bricks {Red Tub},2003,37,705 +44001-1,Pyrox,2013,403,50 +44002-1,Rocka,2013,401,43 +44003-1,Scarox,2013,403,46 +44004-1,Bulk,2013,401,50 +44005-1,Bruizer,2013,403,62 +44006-1,Breez,2013,401,49 +44007-1,Ogrum,2013,403,59 +44008-1,Surge,2013,401,66 +44009-1,Dragon Bolt,2013,403,151 +44010-1,Stormer,2013,401,69 +4401-1,Little Creations,2003,204,110 +44011-1,Frost Beast,2013,403,60 +44012-1,Evo,2013,401,51 +44013-1,Aquagon,2013,403,43 +44014-1,Jet Rocka,2013,401,289 +44015-1,EVO Walker,2014,400,50 +44016-1,JAW Beast vs. STORMER,2014,400,49 +44017-1,STORMER Freeze Machine,2014,400,87 +44018-1,FURNO Jet Machine,2014,400,78 +44019-1,ROCKA Stealth Machine,2014,400,88 +44020-1,FLYER Beast vs. BREEZ,2014,400,91 +4402-1,Sea Riders,2003,204,549 +44021-1,SPLITTER Beast vs. FURNO & EVO,2014,400,108 +44022-1,EVO XL Machine,2014,400,192 +44023-1,ROCKA Crawler,2014,401,49 +44024-1,TUNNELER Beast vs. SURGE,2014,400,59 +44025-1,BULK Drill Machine,2014,401,111 +44026-1,CRYSTAL Beast vs. BULK,2014,400,83 +44027-1,BREEZ Flea Machine,2014,401,101 +44028-1,SURGE & ROCKA Combat Machine,2014,401,187 +44029-1,"QUEEN Beast vs. FURNO, EVO & STORMER",2014,400,216 +4403-1,Air Blazers,2003,204,705 +4404-1,Land Busters,2003,204,769 +4405-1,Large Creator Bucket,2003,37,1305 +4406-1,Buildings,2004,22,506 +4407-1,Transportation,2004,22,302 +4408-1,Animals,2004,22,202 +4410-1,Build and Create,2004,37,500 +4411-1,Blue Strata XXL,2004,37,1200 +4412-1,Einfallsreiches Bauen [Imaginative Building],2004,37,200 +4413-1,Arachno Pod,2005,478,57 +4414-1,LEGO Creator Bucket,2004,37,500 +4415-1,Auto Pod,2006,479,56 +4416-1,Robo Pod,2006,479,64 +4417-1,Aero Pod,2006,479,60 +4418-1,Dino Pod,2006,479,55 +442-1,Space Shuttle,1979,130,39 +4421-1,Box of Bricks,2005,48,1000 +4423-1,LEGO Creator Handy Box,2005,48,800 +4425-1,Better Building More Fun,2004,37,2000 +4427-1,Fire ATV,2012,58,50 +4428-1,"Advent Calendar 2012, City",2012,208,24 +4428-10,"Advent Calendar 2012, City (Day 9) Mechanic with Wrench",2012,217,5 +4428-11,"Advent Calendar 2012, City (Day 10) Wheel Dolly with Wheels",2012,217,10 +4428-12,"Advent Calendar 2012, City (Day 11) Firefighter's ATV without Wheels",2012,217,13 +4428-13,"Advent Calendar 2012, City (Day 12) Female Firefighter",2012,217,5 +4428-14,"Advent Calendar 2012, City (Day 13) Desk with Computer and Chair",2012,217,8 +4428-15,"Advent Calendar 2012, City (Day 14) Box with Burning Logs",2012,217,5 +4428-16,"Advent Calendar 2012, City (Day 15) Wall with Safety Equipment",2012,217,16 +4428-17,"Advent Calendar 2012, City (Day 16) Girl with Snowball",2012,217,5 +4428-18,"Advent Calendar 2012, City (Day 17) Catapult",2012,217,15 +4428-19,"Advent Calendar 2012, City (Day 18) Dog and Hydrant",2012,217,6 +4428-2,"Advent Calendar 2012, City (Day 1) Fireman with Loudhailer",2012,217,5 +4428-20,"Advent Calendar 2012, City (Day 19) Firefighter with Cup",2012,217,5 +4428-21,"Advent Calendar 2012, City (Day 20) Wheelbarrow with Spade and Snow",2012,217,7 +4428-22,"Advent Calendar 2012, City (Day 21) Warning Lights and Sign",2012,217,9 +4428-23,"Advent Calendar 2012, City (Day 22) Santa's Sled",2012,217,8 +4428-24,"Advent Calendar 2012, City (Day 23) Wrapped Gifts",2012,217,16 +4428-25,"Advent Calendar 2012, City (Day 24) Santa on Snowmobile",2012,217,13 +4428-3,"Advent Calendar 2012, City (Day 2) Chainsaw with Logs",2012,217,8 +4428-4,"Advent Calendar 2012, City (Day 3) Christmas Tree",2012,217,16 +4428-5,"Advent Calendar 2012, City (Day 4) Stairs and Star for Tree",2012,217,8 +4428-6,"Advent Calendar 2012, City (Day 5) Wall with Fireman Equipment",2012,217,17 +4428-7,"Advent Calendar 2012, City (Day 6) Boy with Snowball",2012,217,5 +4428-8,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",2012,217,17 +4428-9,"Advent Calendar 2012, City (Day 8) Wall with Ski Equipment",2012,217,24 +4429-1,Helicopter Rescue,2012,60,425 +442A-1,6 International Flags (The Building Toy),1971,371,6 +442B-1,6 International Flags (The Building Toy),1971,371,6 +4430-1,Mobile Fire Command Center,2012,58,520 +4431-1,Ambulance,2012,60,198 +4432-1,Garbage Truck,2012,63,207 +4433-1,Dirt Bike Transporter,2012,64,205 +4434-1,Tipper Truck,2012,56,221 +4435-1,Car and Caravan,2012,63,217 +4436-1,Patrol Car,2012,61,96 +4437-1,Police Pursuit,2012,61,129 +4438-1,Robbers' Hideout,2012,61,316 +4439-1,Heavy-Duty Helicopter,2012,61,392 +4440-1,Forest Police Station,2012,61,632 +4441-1,Police Dog Van,2012,61,312 +4442-1,Glider,2012,53,101 +4443-1,Coca-Cola Defender 1,2002,462,4 +4444-1,Coca-Cola Defender 2,2002,462,4 +4445-1,Coca-Cola Middle Fielder 1,2002,462,4 +4446-1,Coca-Cola Forward 1,2002,462,4 +4447-1,Coca-Cola Forward 2,2002,462,4 +4448-1,Coca-Cola Defender 3,2002,462,4 +4449-1,Coca-Cola Defender 4,2002,462,4 +4450-1,Coca-Cola Middle Fielder 2,2002,462,4 +445062-1,Star Wars Co-Pack of 4500 and 4504,2004,169,2 +445-1,Police Units,1976,421,49 +4451-1,Coca-Cola Forward 3,2002,462,4 +445-2,Lighting Device Pack (The Building Toy),1966,371,3 +4452-1,Coca-Cola Forward 4,2002,462,4 +4453-1,Coca-Cola Goal Keeper,2002,462,4 +4454-1,Coca-Cola Referee,2002,462,6 +4455-1,Coca-Cola Hotdog Girl,2002,462,6 +4456-1,Coca-Cola Doctor,2002,462,5 +4457-1,Coca-Cola TV Cameraman,2002,462,4 +4458-1,Coca-Cola TV Camera,2002,462,11 +4459-1,Coca-Cola PK Kicker,2002,462,4 +445A-1,Lighting Device Pack with Improved Plugs (The Building Toy),1970,371,8 +4460-1,Coca-Cola Goal,2002,462,7 +4461-1,Coca-Cola Bench,2002,462,7 +4462-1,Coca-Cola Hotdog Trolley,2002,462,18 +4463-1,Coca-Cola Light,2002,462,16 +4464-1,Coca-Cola Bottle Case,2002,462,7 +4465-1,Coca-Cola Vending Machine,2002,462,6 +4466-1,Coca-Cola Sign Board,2002,462,3 +4467-1,Coca-Cola Stretcher,2002,462,3 +4468-1,Coca-Cola Stand,2002,462,9 +4469-1,Coca-Cola Drink Stand,2002,462,8 +4470-1,Coca-Cola Ball,2002,462,2 +4471-1,Coca-Cola Secret A,2002,462,4 +4472-1,Coca-Cola Secret B,2002,462,4 +4473-1,Police Helicopter,2013,61,106 +4475-1,Jabba's Message,2003,169,46 +4476-1,Jabba's Prize,2003,169,40 +4477-1,T-16 Skyhopper,2003,169,98 +4478-1,"Geonosian Fighter, Black Box",2003,167,171 +4478-2,Geonosian Fighter Blue Box,2004,167,153 +4479-1,TIE Bomber,2003,169,229 +4480-1,Jabba's Palace,2003,169,234 +4481-1,Hailfire Droid,2003,158,680 +4482-1,AT-TE,2003,167,650 +4483-1,"AT-AT, black box",2003,169,1070 +4483-2,"AT-AT, blue box",2004,169,1070 +4484-1,X-wing Fighter & TIE Advanced - Mini,2003,159,72 +4485-1,Sebulba's Podracer & Anakin's Podracer - Mini,2003,159,72 +4486-1,AT-ST & Snowspeeder - Mini,2003,159,76 +4487-1,Jedi Starfighter & Slave I - Mini,2003,159,53 +4488-1,Millennium Falcon - Mini,2003,159,87 +4489-1,AT-AT - Mini,2003,159,98 +4490-1,Republic Gunship - Mini,2003,159,102 +4491-1,Trade Federation MTT - Mini,2003,159,99 +4492-1,Imperial Star Destroyer - Mini,2004,159,87 +4493-1,Sith Infiltrator - Mini,2004,159,55 +4494-1,Imperial Shuttle - Mini,2004,159,82 +4495-1,AT-TE - Mini,2004,159,63 +4495173-1,LEGO Creative Building Set,2006,37,705 +4496-1,Fun with Building Tub,2004,37,1000 +4496-2,50th Anniversary Tub,2005,37,1000 +4496-3,Fun with Building Tub - Reissue,2006,37,798 +4497-1,Pretend and Create,2004,37,1000 +4499536-1,Offre Speciale 4 Boites (7236 7238 7235 7241),2007,52,0 +45000-1,Creative Builder,2013,507,120 +4500-1,Rebel Snowspeeder [Redesign] - Blue box,2003,169,216 +45001-1,Playground,2013,507,104 +4500-2,"Rebel Snowspeeder (redesign), Original Trilogy Edition box",2004,169,211 +45002-1,Tech Machines Set,2013,507,92 +45003-1,LEGO Soft Bricks Set,2013,526,84 +45007-1,Large Farm,2014,504,152 +450-1,Fork Lift,1973,416,42 +4501-1,"Mos Eisley Cantina, Blue box",2003,169,197 +45011-1,Duplo World People,2015,504,16 +4501-2,"Mos Eisley Cantina, Original Trilogy Edition box",2004,169,194 +45020-1,Creative Lego Brick Set,2016,507,998 +4502-1,"X-wing Fighter (Dagobah), Blue box",2003,169,566 +4502-2,"X-wing Fighter (Dagobah), Original Trilogy Edition box",2004,169,565 +4504-1,"Millennium Falcon (Redesign), Blue box",2003,169,996 +4504-2,"Millennium Falcon (Redesign), Original Trilogy Edition box",2003,169,979 +4505-1,Sea Machines,2004,204,168 +4506-1,Deep Sea Predators,2004,204,353 +4507-1,Prehistoric Creatures,2004,204,726 +4508-1,Titan XP,2004,204,784 +45100-1,Story Starter Core Set,2013,507,1145 +45103-1,StoryStarter Expansion Pack: Community,2015,507,200 +451-1,"1 x 6 x 3 Window, Red or White",1966,371,12 +45110-1,BuildToExpress Set,2013,507,204 +4511-1,High Speed Train,2003,239,335 +45120-1,LearnToLearn Core set,2014,528,2016 +4512-1,Cargo Train,2003,239,546 +4513-1,Grand Central Station,2003,239,350 +4514-1,Cargo Crane,2003,239,176 +4515-1,Straight Rails,1991,244,8 +4518-1,Creator Set,2004,37,805 +4519-1,Rail Crossing,1999,244,1 +4520-1,Curved Rails,1991,244,8 +452-1,Mobile Ground Tracking Station,1979,130,79 +4521221-1,Gold chrome plated C-3PO,2007,501,3 +452-2,"1 x 6 x 2 Window, Red or White",1966,371,16 +4524081-1,Mindstorms NXT CD,2007,258,0 +4524-1,Advent Calendar 2002 Creator,2002,214,24 +4524-10,Advent Calendar 2002 Creator (Day 9) Space Buggy,2002,223,18 +4524-11,Advent Calendar 2002 Creator (Day 10) Dinosaur,2002,223,8 +4524-12,Advent Calendar 2002 Creator (Day 11) Speedboat,2002,223,10 +4524-13,Advent Calendar 2002 Creator (Day 12) Reindeer,2002,223,10 +4524-14,Advent Calendar 2002 Creator (Day 13) Snowman,2002,223,15 +4524-15,Advent Calendar 2002 Creator (Day 14) Jet Ski,2002,223,11 +4524-16,Advent Calendar 2002 Creator (Day 15) Duck,2002,223,10 +4524-17,Advent Calendar 2002 Creator (Day 16) Police Boat,2002,223,9 +4524-18,Advent Calendar 2002 Creator (Day 17) Whale,2002,223,9 +4524-19,Advent Calendar 2002 Creator (Day 18) Space Shuttle,2002,223,11 +4524-2,Advent Calendar 2002 Creator (Day 1) Squirrel,2002,223,10 +4524-20,Advent Calendar 2002 Creator (Day 19) Parrot,2002,223,9 +4524-21,Advent Calendar 2002 Creator (Day 20) Steamship,2002,223,10 +4524-22,Advent Calendar 2002 Creator (Day 21) Building,2002,223,10 +4524-23,Advent Calendar 2002 Creator (Day 22) Helicopter,2002,223,11 +4524-24,Advent Calendar 2002 Creator (Day 23) Tree,2002,223,11 +4524-25,Advent Calendar 2002 Creator (Day 24) Present,2002,223,8 +4524-3,Advent Calendar 2002 Creator (Day 2) Boy,2002,223,1 +4524-4,Advent Calendar 2002 Creator (Day 3) Fireplace,2002,223,11 +4524-5,Advent Calendar 2002 Creator (Day 4) Santa,2002,223,10 +4524-6,Advent Calendar 2002 Creator (Day 5) Car,2002,223,15 +4524-7,Advent Calendar 2002 Creator (Day 6) Penguin,2002,223,10 +4524-8,Advent Calendar 2002 Creator (Day 7) Girl,2002,223,1 +4524-9,Advent Calendar 2002 Creator (Day 8) Dog with hat,2002,223,11 +4525-1,Road and Rail Repair,1994,236,84 +4526-1,Batman,2012,492,40 +4527-1,The Joker,2012,492,57 +4528-1,Green Lantern,2012,492,38 +4529-1,Iron Man,2012,492,44 +45300-1,WeDo Core Set,2016,521,279 +4530-1,The Hulk,2012,492,39 +45301-1,WeDo 2.0 Smart Hub,2016,521,1 +45302-1,WeDo 2.0 Smarthub Rechargeable Battery,2016,521,1 +45303-1,WeDo 2.0 Medium Motor,2016,521,1 +45304-1,WeDo 2.0 Motion Sensor,2016,521,1 +45305-1,WeDo 2.0 Tilt Sensor,2016,521,1 +453-1,Two Crater Plates,1979,143,2 +4531-1,Manual Points,1991,244,6 +453-2,"1 x 6 x 2 Shuttered Windows, Red or White",1966,371,16 +4532-1,Manual Level Crossing,1996,236,135 +4533-1,Train Track Snow Remover,1999,236,57 +4534-1,LEGO Express,2002,238,34 +4535-1,LEGO Express Deluxe,2002,238,754 +4536-1,Blue Hopper Car,1991,236,165 +4537-1,Octan Twin Tank Rail Tanker,1993,236,173 +4538-1,Special Edition,2004,37,200 +4539-1,Manual Level Crossing,1991,236,115 +4540315-1,LEGO Creative Bucket (TRU Exclusive),2009,37,480 +454-1,Two Lunar Landing Plates,1979,143,2 +4541-1,Rail and Road Service Truck,1999,236,126 +454-2,"1 x 4 x 2 Window, Red or White",1966,371,18 +4543-1,Railroad Tractor Flatbed,1991,236,179 +4544-1,Car Transport Wagon with Car,1994,236,142 +4546-1,Road and Rail Maintenance,1991,236,76 +4547-1,Club Car,1993,236,292 +4547551-1,Darth Vader 10 Year Anniversary Promotional Minifigure,2009,158,7 +4548-1,Transformer and Speed Regulator,1991,244,3 +4548431-1,Brick Tub 'Die Lego Show' - Limited Edition,2008,37,701 +4549-1,Container Double Stack,1993,236,450 +45500-1,EV3 Intelligent Brick,2013,262,1 +45501-1,EV3 Rechargeable DC Battery,2013,262,1 +45502-1,EV3 Large Servo Motor,2013,262,1 +45503-1,EV3 Medium Servo Motor,2013,262,1 +45504-1,EV3 Ultrasonic Sensor,2013,262,1 +45505-1,EV3 Gyro Sensor,2013,262,1 +45506-1,EV3 Color Sensor,2013,262,1 +45507-1,EV3 Touch Sensor,2013,262,1 +45508-1,EV3 Infrared Beacon,2013,262,1 +45509-1,EV3 Infrared Sensor,2013,262,1 +455-1,Lear Jet,1976,412,45 +4551-1,Crocodile Locomotive,1991,236,313 +45514-1,EV3 Cable Pack,2013,262,7 +45517-1,Transformer 10V DC,2016,518,1 +455-2,"1 x 3 x 2 Window, Red or White",1966,371,24 +4552-1,Cargo Crane,1995,236,281 +4553-1,Train Wash,1999,236,189 +4554-1,Metro Station,1991,236,605 +45544-1,EV3 Core Set,2013,262,546 +4555-1,Cargo Station,1995,236,393 +45560-1,EV3 Expansion Set,2013,262,853 +4556-1,Train Station,1999,236,232 +45570-1,Space Challenge Set,2014,518,1368 +4557-1,Freight Loading Station,1999,236,215 +4558-1,Metroliner,1991,236,786 +4559-1,Cargo Railway,1996,236,845 +4559288-1,Power Miners Promotional Polybag,2009,439,4 +4559385-1,{Power Miners Promotional Polybag},2009,439,4 +4559387-1,{Power Miners Promotional Polybag},2009,439,4 +4560-1,Railway Express,1999,236,690 +456-1,Spirit of St. Louis,1977,412,49 +4561-1,Railway Express with Transformer and Speed Regulator,1999,236,673 +456-2,"1 x 2 x 2 Window, Red or White",1966,371,30 +4562-1,Creator Box,2004,37,200 +4563-1,Load and Haul Railroad,1991,236,479 +4564-1,Freight Rail Runner,1994,236,590 +4565-1,Freight and Crane Railway,1996,236,915 +4566-1,Gear,2001,125,7 +4567-1,Surfer,2001,125,7 +4568-1,Loopin,2001,125,7 +4569-1,Warrior,2001,125,8 +4570-1,Shredd,2001,125,7 +457-1,"1 x 1 x 2 Window, Red or White",1966,371,38 +4571-1,Spiky,2001,125,7 +4572-1,Scratch,2001,125,7 +4573-1,Lightor,2001,125,7 +4574-1,Rip,2001,125,7 +4575-1,Pulse,2001,125,7 +4576-1,Duster,2001,125,7 +4577-1,Snake,2001,125,7 +4578-1,Ghost,2001,125,7 +4579-1,Ice Ramp Racers,2001,125,112 +45800-1,FIRST LEGO League Challenge 2014 - World Class,2014,398,2098 +45801-1,Trash Trek (FLL),2015,398,1992 +45802-1,Animal Allies,2016,398,2165 +458-1,"1 x 2 x 1 Window, Red or White",1966,371,38 +4582-1,Red Bullet,2002,113,29 +4583-1,Maverick Storm,2002,113,31 +4584-1,Hot Scorcher,2002,113,58 +4585-1,Nitro Pulverizer,2002,113,61 +4586-1,Stunt Race Track,2002,121,168 +4586940-1,Basic Set Limited Edition,2010,37,480 +4587-1,Duel Racers,2002,113,193 +4588-1,Off Road Race Track,2002,121,364 +4589-1,RC-Nitro Flash,2002,117,135 +4590-1,Flash Turbo,2002,113,28 +459-1,"1 x 1 x 1 Window, Red or White",1966,371,40 +4591-1,Star Burst/Star Strike,2002,113,28 +4591715-1,Golden Die [TRU Exclusive],2009,502,7 +4591726-1,Stormtrooper,2009,169,1 +4592-1,Red Monster,2002,113,25 +4593-1,Zero Hurricane & Red Blizzard,2002,113,74 +4594-1,Maverick Sprinter & Hot Arrow,2002,113,66 +4595-1,Zero Tornado & Hot Rock,2002,113,71 +4595400-1,Rocket Kit,2010,124,26 +4596-1,Storming Cobra,2002,113,76 +4597068-1,Boba Fett,2010,170,1 +4597-1,Captain America,2012,492,44 +4599605-1,Easter Chicks,2010,229,15 +4600-1,Police Cruiser,2001,281,23 +460-1,Rescue Units,1973,420,36 +4601-1,Fire Cruiser,2001,283,22 +460-2,"1 x 2 x 3 Door, Red or White",1966,371,26 +4603-1,Res-Q Wrecker,2001,284,30 +4604-1,Police Copter,2001,281,16 +4605-1,Fire Response SUV,2001,283,30 +4606-1,Aqua Res-Q Transport,2001,284,40 +4607-1,Copter Transport,2001,284,66 +4608-1,Bank Breakout,2001,281,68 +4609-1,Fire Attack Team,2001,283,95 +4610-1,Aqua Res-Q Super Station,2001,284,92 +4611-1,Police HQ,2001,281,137 +4612-1,Super Glider,2002,282,7 +4613-1,Turbo Chopper,2002,282,13 +4613985-1,Build a Bullseye Target Gift Card Promotional,2010,227,32 +4614-1,Ultralight Flyer,2002,282,16 +4615-1,Red Recon Flyer,2002,282,21 +4616-1,Rapid Response Tanker,2002,285,35 +4617-1,Dual Turbo Prop,2002,282,32 +4618-1,Twin Rotor Cargo,2002,282,44 +4619-1,A.I.R. Patrol Jet,2002,282,65 +4620-1,A.I.R. Operations HQ,2002,282,174 +462-1,Mobile Rocket Launcher,1979,130,77 +4621-1,Jack Stone Red Flash Station,2002,283,32 +462-2,"2 x 8 Plates, White",1966,371,16 +4622-1,Res-Q Digger,2002,284,67 +4623-1,DUPLO Pink Brick Box,2012,504,30 +4624-1,DUPLO Brick Box,2012,504,31 +4625-1,LEGO Pink Brick Box,2012,23,219 +4626-1,Farm Brick Box,2012,37,231 +4627-1,Fun With Bricks,2012,504,85 +4628-1,Fun with Bricks,2012,22,600 +4629-1,Build and Play Box,2012,504,149 +4630-1,Build and Play Box,2012,37,1000 +463-1,"4 x 8 Plates, White",1966,371,8 +4631-1,My First Build,2012,504,61 +4632-1,Building Plates,2012,504,3 +4635-1,Fun with Vehicles,2012,22,525 +4636-1,Police Building Set,2012,22,130 +4636204-1,Ninjago Promotional Giveaway,2011,435,11 +4637-1,Safari Building Set,2012,22,152 +464-1,"6 x 8 Plates, White",1966,371,6 +4641-1,Speed Boat,2011,59,34 +4642-1,Fishing Boat,2011,59,63 +4643-1,Power Boat Transporter,2011,59,245 +4644-1,Marina,2011,59,272 +4645-1,Harbor,2011,59,550 +4648933-1,Hero Factory Accessories,2011,400,6 +4648939-1,Golden Die with 1-6 dot tiles,2011,502,8 +4649858-1,Shadow ARF Trooper Promotional Polybag,2011,165,5 +4651-1,Police Motorcycle,2003,291,12 +4652-1,Tow Truck,2003,292,26 +4653-1,Dump Truck,2003,293,28 +4654-1,Tanker Truck,2003,294,43 +4655-1,Quick Fix Station,2003,294,103 +4657-1,Fire Squad HQ,2003,295,147 +4659018-1,Master Builder Academy: Kits 2-6 Subscription,2011,432,5 +4659-1,Duplo Garbage Truck,2005,504,13 +4659597-1,Friends - Bracelets,2012,501,4 +4659602-1,Display Stand,2012,494,17 +4659607-1,Hero Factory Booster Pack,2012,400,6 +4659612-1,Spinner Ring,2012,435,1 +4659758-1,Build a Bullseye 3 in 1 Target Gift Card Promotional,2011,227,50 +4660865-1,Target Lego Gift Card 2011 3 in 1 Set,2011,227,51 +4662-1,Duplo Post Office,2005,504,17 +4665-1,Big Farm,2005,504,69 +4666-1,Speedy Police Car,2003,291,25 +4667-1,Loadin' Digger,2003,293,30 +4668-1,Outrigger Construction Crane,2003,293,67 +4669-1,Turbo-Charged Police Boat,2003,291,54 +4677-1,Name Letter Pack,2004,301,67 +4679-1,Bricks and Creations Tub,2004,37,2 +4679-2,Bricks and Creations Tub - (TRU Exclusive),2005,37,2 +4679a-1,Bricks and Creations Tub (Bottom Tub and its contents only),2004,37,1000 +4679a-2,Bricks and Creations Tub - (TRU Exclusive) (Bottom Tub and its contents only),2005,37,1000 +4679b-2,Free 500 LEGO Bricks (Bonus box and its contents only),2005,48,500 +4695-1,Knight Bus - Mini,2004,246,58 +4696-1,Blue Bucket,2004,37,200 +470-1,"1 x 1, 1 x 2, 2 x 2, 2 x 3, 2 x 4 Plates (System)",1966,371,273 +4701-1,Sorting Hat,2001,251,50 +4702-1,The Final Challenge,2001,251,61 +4704-1,The Chamber of the Winged Keys,2001,251,180 +4705-1,Snape's Class,2001,251,167 +4706-1,Forbidden Corridor,2001,251,239 +4707-1,Hagrid's Hut,2001,251,298 +4708-1,Hogwarts Express,2001,246,412 +4709-1,Hogwarts Castle,2001,251,696 +471-1,Tiles (System),1966,371,156 +4711-1,Flying Lesson,2002,251,24 +4712-1,Troll on the Loose,2002,251,69 +4714-1,Gringott's Bank,2002,251,263 +471518-1,Happy The Cute Dolphin,2015,494,17 +471602-1,Pony Grooming Kit,2016,494,28 +4719-1,Quality Quidditch Supplies,2003,247,121 +4720-1,Knockturn Alley,2003,247,211 +4721-1,Hogwarts Classroom,2001,251,75 +4722-1,Gryffindor,2001,251,70 +4723-1,Diagon Alley Shops,2001,251,85 +4726-1,Quidditch Practice,2002,247,131 +4727-1,Aragog in the Dark Forest,2002,247,183 +4728-1,Escape from Privet Drive,2002,247,282 +4729-1,Dumbledore's Office,2002,247,451 +4730-1,Chamber of Secrets,2002,247,597 +4731-1,Dobby's Release,2002,247,71 +4733-1,The Dueling Club,2002,247,133 +4735-1,Slytherin,2002,247,93 +4736-1,Freeing Dobby,2010,246,73 +4737-1,Quidditch Match,2010,246,153 +4738-1,Hagrid's Hut (3rd edition),2010,246,442 +4741-1,Blacktron Super Vehicle (Value 3-Pack),1993,129,4 +4742-1,Chill Speeder,2004,306,57 +4743-1,Ice Blade,2004,306,103 +4744-1,Tundra Tracker,2004,306,140 +4745-1,Blue Eagle vs. Snow Crawler,2004,306,257 +4746-1,Mobile Command Center,2004,306,425 +4748-1,Ogel's Mountain Fortress,2004,306,413 +4750-1,Draco's Encounter with Buckbeak,2004,250,37 +4751-1,Harry and the Marauder's Map,2004,250,108 +4752-1,Professor Lupin's Classroom,2004,250,158 +4753-1,Sirius Black's Escape,2004,250,192 +4754-1,Hagrid's Hut (2nd edition),2004,250,296 +4755-1,Knight Bus,2004,250,244 +4756-1,Shrieking Shack,2004,250,450 +4757-1,Hogwarts Castle (2nd edition),2004,250,902 +4758-1,Hogwarts Express (2nd edition),2004,246,368 +4759-1,Three Christmas Decorations - Santa Tree and Snowman,2004,227,3 +4762-1,Rescue from the Merpeople,2005,248,177 +4766-1,Graveyard Duel,2005,248,551 +4767-1,Harry and the Hungarian Horntail,2005,248,265 +4768-1,The Durmstrang Ship,2005,248,552 +4768-2,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),2005,248,544 +4770-1,Blizzard Blaster,2004,306,303 +4774-1,Scorpion Orb Launcher,2004,306,223 +4778-1,Desert Biplane,2005,106,108 +4780-1,Box of Bricks,2005,48,500 +4781-1,Box of Bricks,2005,48,300 +4782-1,Box of Bricks,2005,48,200 +4782-2,Creator 200 Piece Box of Bricks - Individual Retail Version,2005,48,200 +4788-1,Ogel Mutant Ray,2002,305,68 +4789-1,Alpha Team Aquatic Mech,2002,305,166 +4790-1,Alpha Team Robot Diver,2002,305,32 +4791-1,Alpha Team Sub-Surface Scooter,2002,305,42 +4792-1,Alpha Team Navigator and ROV,2002,305,93 +4793-1,Ogel Sub Shark,2002,305,114 +4794-1,Alpha Team Command Sub,2002,305,188 +4795-1,Ogel Underwater Base and AT Sub,2002,305,478 +4796-1,Ogel Mutant Squid,2002,305,62 +4797-1,Ogel Mutant Killer Whale,2002,305,61 +4798-1,Evil Ogel Attack,2002,305,21 +4799-1,Ogel Drone Octopus,2002,305,18 +4800-1,Jet Sub,2002,305,23 +480-1,Rescue Helicopter,1975,417,62 +4801-1,Defense Archer,2000,197,15 +480-4,"Slopes and Slopes Double 2 x 4, Red (The Building Toy)",1966,371,14 +480-5,"Slopes and Slopes Double 2 x 4, Blue (The Building Toy)",1966,371,14 +4805-1,Ninja Knights,1999,434,31 +480-6,"Slopes and Slopes Double 2 x 4, Red (System)",1966,371,23 +4806-1,Axe Cart,2000,197,28 +480-7,"Slopes and Sloped Double 2 x 4, Blue (System)",1966,371,23 +4807-1,Fire Attack,2000,197,24 +4810-1,Blue Creator Bucket,2001,37,256 +4811-1,Defense Archer,2000,197,15 +481-3,"Slopes and Slopes Double 2 x 3 and 2 x 1, Red (The Building Toy)",1966,371,21 +481-4,"Slopes and Slopes Double 2 x 3 an 2 x 1, Blue (The Building Toy)",1966,371,21 +481-5,"Slopes Regular, Double, Angle, Valley and Corner, Red (System)",1966,371,34 +481-6,"Slopes Regular, Double, Angle, Valley and Corner, Blue (System)",1966,371,34 +4816-1,Knight's Catapult,2000,197,50 +4817-1,Dungeon,2000,197,39 +4818-1,Dragon Rider,2000,197,15 +4819-1,Rebel Chariot,2000,197,49 +4820-1,Princess' Palace,2005,504,71 +482-3,"Slopes and Slopes Double 2 x 2, Red (The Building Toy)",1966,371,22 +482-4,"Slopes and Slopes Double 2 x 2, Blue (The Building Toy)",1966,371,22 +4828-1,LEGO Princess Royal Stables,2007,504,45 +483-1,Alpha-1 Rocket Base,1979,130,187 +483-4,"Angle, Valley and Corner Slopes, Red (The Building Toy)",1966,371,20 +483-5,"Angle, Valley and Corner Slopes, Blue (The Building Toy)",1966,371,20 +4837-1,Mini Trains,2008,22,73 +4838-1,Mini Vehicles,2008,22,79 +4840-1,The Burrow,2010,246,572 +4841-1,Hogwarts Express (3rd edition),2010,246,646 +4842-1,Hogwarts Castle [Fourth Edition],2010,246,1290 +4850-1,Spider-Man's First Chase,2003,488,190 +485-1,Fire Truck,1976,417,60 +4851-1,The Origins,2003,488,219 +485-2,Lighting Brick (System),1966,371,4 +4852-1,The Final Showdown,2003,488,359 +4853-1,Spider-Man's Street Chase,2004,488,81 +4854-1,Doc Ock's Bank Robbery,2004,488,173 +4855-1,Spider-Man's Train Rescue,2004,488,298 +4856-1,Doc Ock's Hideout,2004,488,485 +4857-1,Doc Ock's Fusion Lab,2004,488,237 +4858-1,Doc Ock's Crime Spree,2004,288,57 +4860-1,Doc Ock's Cafe Attack,2004,288,132 +4865-1,The Forbidden Forest,2011,246,64 +4866-1,The Knight Bus,2011,246,281 +4867-1,Hogwarts,2011,246,465 +4868-1,Rahaga Gaaki,2005,342,28 +4869-1,Rahaga Pouks,2005,342,28 +4870-1,Rahaga Kualus,2005,342,28 +487-1,Space Cruiser,1979,130,172 +487-2,1 x 1 Bricks with Numbers (System),1966,371,44 +4875-1,Groovy Friends Gems,2005,500,13 +4876-1,Fun Friends Hair Bands,2005,500,22 +4877-1,Rahaga Norik,2005,342,28 +4878-1,Rahaga Bomonga,2005,342,28 +4879-1,Rahaga Iruini,2005,342,28 +488-1,1 x 1 Bricks with Letters (System),1966,371,44 +4881-1,Robo Platoon,2005,204,219 +4882-1,Speed Wings,2004,204,162 +4882-2,Speed Wings - ANA version,2004,204,163 +4883-1,Gear Grinders,2005,204,279 +4884-1,Wild Hunters,2005,204,630 +4886-1,Building Bonanza,2004,205,667 +4888-1,Ocean Odyssey,2005,204,623 +489-1,Traffic Signs,1966,371,14 +4891-1,Highway Haulers,2006,38,210 +4892-1,Prehistoric Power,2006,40,380 +4893-1,Revvin' Riders,2006,41,362 +4894-1,Mythical Creatures,2006,40,588 +4895-1,Motion Power,2006,42,613 +4896-1,Roaring Roadsters,2006,38,931 +4897-1,Police Trike,2008,61,24 +4898-1,Coast Guard Boat,2008,55,35 +4899-1,Farmer & Tractor,2009,57,28 +4900-1,Fire Helicopter,2008,58,30 +490-1,Mobile Crane,1975,416,46 +490-2,Trees and Bushes,1966,371,9 +4903-1,Lion,2005,204,42 +4904-1,Elephant (Life cereal promotion),2005,204,34 +4905-1,Giraffe,2005,204,37 +4906-1,Helicopter,2005,24,16 +4910-1,Hover Scout,1999,442,40 +491-1,Formula 1 Racer,1977,397,67 +4911-1,Designer Set,2005,22,37 +491-2,"Shell Station Brick and Sign, 6 Named Beams",1966,371,20 +4912-1,Police Jet Ski,2005,61,22 +4914-1,Fire Chief's Car,2005,58,31 +4915-1,Mini Construction,2007,26,68 +4915-1-b1,Loader Trailer,2007,26,0 +4915-1-b2,Fork Lift,2007,26,0 +4916-1,Mini Animals,2007,31,77 +4917-1,Mini Robots,2007,32,77 +4918-1,Mini Flyers,2007,24,76 +4919-1,Blue Tub,2005,37,1500 +4920-1,Rapid Rider,1999,442,39 +492-1,Truck & Payloader,1977,416,59 +492-2,Nordic and American Flags,1966,371,8 +4924-1,Advent Calendar 2004 Creator,2004,214,24 +4924-10,Advent Calendar 2004 Creator (Day 9) Skiing Elf,2004,223,16 +4924-11,Advent Calendar 2004 Creator (Day 10) Sledding Santa,2004,223,14 +4924-12,Advent Calendar 2004 Creator (Day 11) Goose,2004,223,14 +4924-13,Advent Calendar 2004 Creator (Day 12) Green Present,2004,223,7 +4924-14,Advent Calendar 2004 Creator (Day 13) Santa Ornament,2004,223,12 +4924-15,Advent Calendar 2004 Creator (Day 14) Helicopter,2004,223,13 +4924-16,Advent Calendar 2004 Creator (Day 15) Reindeer,2004,223,9 +4924-17,Advent Calendar 2004 Creator (Day 16) Elf Girl,2004,223,14 +4924-18,Advent Calendar 2004 Creator (Day 17) Speedboat,2004,223,13 +4924-19,Advent Calendar 2004 Creator (Day 18) Racing Car,2004,223,23 +4924-2,Advent Calendar 2004 Creator (Day 1) Elf Ornament,2004,223,15 +4924-20,Advent Calendar 2004 Creator (Day 19) Snowman,2004,223,13 +4924-21,Advent Calendar 2004 Creator (Day 20) Leaf Ornament,2004,223,18 +4924-22,Advent Calendar 2004 Creator (Day 21) Santa,2004,223,13 +4924-23,Advent Calendar 2004 Creator (Day 22) Sailing Ship,2004,223,16 +4924-24,Advent Calendar 2004 Creator (Day 23) Tree,2004,223,12 +4924-25,Advent Calendar 2004 Creator (Day 24) Air Boat,2004,223,9 +4924-3,Advent Calendar 2004 Creator (Day 2) Plane,2004,223,13 +4924-4,Advent Calendar 2004 Creator (Day 3) Parrot,2004,223,13 +4924-5,Advent Calendar 2004 Creator (Day 4) Robot,2004,223,19 +4924-6,Advent Calendar 2004 Creator (Day 5) Blue Present,2004,223,7 +4924-7,Advent Calendar 2004 Creator (Day 6) Ship,2004,223,19 +4924-8,Advent Calendar 2004 Creator (Day 7) Angel Ornament,2004,223,17 +4924-9,Advent Calendar 2004 Creator (Day 8) Van,2004,223,16 +4930-1,Rock Raiders,1999,442,48 +493-1,Space Command Center (Flatplate version),1979,130,193 +493-2,European Flags,1966,371,8 +493-3,Space Command Center (Craterplate version),1979,130,177 +4933-1,Street Sweeper,2007,63,14 +4936-1,Medic and Patient,2007,60,18 +4937-1,Life Guard - Quick Magic Box Promotional,2007,55,38 +4938-1,Fireman's Car,2007,58,28 +4939-1,Cool Cars,2007,38,206 +4940-1,Granite Grinder,1999,442,109 +494-1,"Gates and Fence, Red (System)",1967,371,17 +4941-1,Plastic Figure - RASCUS (Nestle Promotional),2005,198,3 +494-2,"Gates and Fence, White (The Building Toy)",1967,371,17 +4942-1,Plastic Figure - Dark Knight (Nestle Promotional),2005,198,3 +4943-1,Plastic Figure - Lord VLADEK (Nestle Promotional),2005,198,3 +4944-1,Plastic Figure - Sir JAYKO (Nestle Promotional),2005,198,3 +4945-1,Plastic Figure - Sir SANTIS (Nestle Promotional),2005,198,3 +4946-1,Plastic Figure - Sir DANJU (Nestle Promotional),2005,198,3 +4947-1,Yellow and Black Racer,2006,120,28 +4948-1,Black and Red Racer,2006,120,22 +4949-1,Blue and Yellow Racer,2006,120,24 +4950-1,Loader - Dozer,1999,442,90 +4953-1,Fast Flyers,2007,42,305 +4954-1,Model Town House,2007,43,1174 +4955-1,Big Rig,2007,39,550 +4956-1,House,2007,43,731 +4957-1,Ferris Wheel,2007,44,1066 +4958-1,Monster Dino,2007,40,792 +4959-1,The Loader-Dozer,1999,442,90 +4962-1,Baby Zoo,2006,504,21 +4963-1,Police Patrol,2006,504,5 +4966-1,Doll's House,2006,504,90 +4970-1,Chrome Crusher,1999,442,168 +497-1,Galaxy Explorer,1979,130,342 +4980-1,Tunnel Transport,1999,442,351 +4981-1,The Chum Bucket,2007,272,336 +4982-1,Mrs. Puff's Boating School,2007,272,394 +4986-1,Duplo Digger,2007,504,19 +4987-1,Gravel Pit,2007,504,40 +4990-1,Rock Raiders HQ,1999,442,414 +4991-1,Police Helicopter,2007,61,26 +4992-1,Fire Boat,2007,58,23 +4993-1,Cool Convertible,2008,39,648 +4994-1,Fierce Creatures,2008,40,193 +4995-1,Cargo Copter,2008,45,272 +4996-1,Beach House,2008,43,522 +4997-1,Transport Ferry,2008,46,1279 +4998-1,Stegosaurus,2008,40,730 +4999-1,Vestas Windmill,2008,50,809 +5000021-1,Pirates of the Caribbean Classic Collection,2011,263,2 +5000022-1,Hulk,2012,487,4 +5000023-1,"LEGO Store Grand Re-Opening Exclusive Set (Colorado Mills, Denver, CO)",2012,408,12 +5000027-1,Pirates of the Caribbean 4 Collection,2011,263,2 +5000030-1,Booster Pack Kendo Jay,2012,435,31 +5000062-1,Darth Maul,2012,178,3 +5000063-1,TC-14,2012,178,3 +5000067-1,Star Wars Sith Kit,2011,158,2 +5000068-1,Harry Potter Classic Kit,2011,246,3 +5000-1,Replacement 4.5V Motor,1987,443,1 +5000143-1,Star Wars with Boba Fett Minifigure Watch,2011,501,0 +5000196304-1,The Hobbit - The Battle of the Five Armies (Blu-ray with Minifigures),2015,565,7 +5000202-1,Elrond,2012,566,6 +5000214-1,Star Wars Character Encyclopedia,2011,497,4 +5000215-1,Harry Potter: Building the Magical World,2011,497,4 +5000245-1,Stephanie,2012,494,5 +5000249-1,LEGO® Star Wars™ Boba Fett™ Minifigure Clock,2012,501,0 +5000281-1,Chase McCain,2012,61,4 +50003-1,Batman,2013,502,252 +50004-1,Story Mixer,2013,502,425 +5000437-1,Vintage Minifigure Collection Vol. 1 - 2012 Edition,2012,535,21 +5000438-1,Vintage Minifigure Collection Vol. 2 - 2012 Edition,2012,535,22 +5000439-1,Vintage Minifigure Collection Vol. 3 - 2012 Edition,2012,535,19 +5000440-1,Vintage Minifigure Collection Vol. 4 - 2012 Edition,2012,535,25 +5000463-1,8 stud Red Storage Brick,2014,501,0 +50006-1,Legends Of Chima,2013,502,211 +5000642-1,Star Wars poster,2012,501,0 +5000644-1,Monster Fighters Promotional Pack,2012,558,11 +5000646-1,City poster,2012,501,0 +5000672-1,The LEGO® Ideas Book,2011,497,0 +5000728-1,DC Universe Super Heroes Collection,2012,492,3 +5001096-1,Batman™ 2: DC Super Heroes - Xbox 360,2012,501,0 +5001-1,Wheel Bushes for 4.5V Basic Motor,1987,443,4 +50011-1,The Battle for Helms Deep,2013,502,338 +5001121-1,BR LEGO Minifigure,2013,301,5 +5001130-1,The Battle of Helm's Deep Collection,2012,568,2 +5001132-1,The Lord of the Rings Collection,2012,566,7 +5001133-1,Monster Fighters Collection,2012,558,7 +5001134-1,Mining Collection,2012,56,5 +5001136-1,Buildable Galaxy Collection,2012,176,3 +5001137-1,Battle Pack Collection,2012,158,2 +5001159-1,Darth Vader Light Key Chain,2012,503,0 +5001160-1,Stormtrooper Light Key Chain,2012,503,0 +5001252-1,2013 Calendar,2012,501,0 +5001266-1,8 stud Blue Storage Brick,2014,501,0 +5001267-1,8 stud Yellow Storage Brick,2014,501,0 +5001270-1,MBA Kits 2 - 3,2012,432,2 +5001273-1,MBA Kits 4 - 6,2012,432,3 +5001307-1,Buildable Galaxy Collection II,2012,177,3 +5001308-1,The Old Republic Collection,2012,158,2 +5001309-1,Return of the Jedi Collection,2012,158,2 +5001357-1,Ninjago Kendo Cole Kids' Watch,2012,501,0 +5001370-1,LEGO® Time-Teacher Minifigure Watch & Clock,2012,501,0 +5001371-1,LEGO® Time-Teacher Girl Minifigure Watch & Clock,2012,501,0 +5001377-1,Lunch Box,2012,501,0 +5001380-1,Mini box pink,2012,501,0 +5001382-1,Mini box red,2012,501,0 +5001383-1,4-stud Blue Storage Brick,2012,501,0 +5001384-1,4-stud Green Storage Brick,2012,501,0 +5001385-1,4-stud Red Storage Brick,2012,501,0 +5001386-1,8-stud Blue Storage Brick,2012,501,0 +5001387-1,8-stud Green Storage Brick,2012,501,0 +5001388-1,Red Storage Brick,2012,501,0 +5001621-1,Han Solo (Hoth),2013,158,2 +5001622-1,LEGO Store Employee,2013,408,5 +5001623-1,Jor-El,2013,489,5 +5001709-1,Clone Trooper Lieutenant,2013,165,4 +5001925-1,Horizon Express Kit,2013,240,7 +5002041-1,The LEGO Movie Accessory Pack,2014,578,50 +5002045-1,Pyjamas Emmet,2014,578,4 +5002-1,Rubber Chain Tracks,1987,443,2 +5002112-1,Bracelets,2014,494,18 +5002113-1,Beach Hammock,2014,494,23 +5002122-1,TC-4,2014,178,3 +5002123-1,Darth Revan,2014,158,7 +5002125-1,Electro,2015,488,5 +5002126-1,Martian Manhunter,2014,486,4 +5002127-1,Flashback Shredder,2014,570,6 +5002136-1,Arctic Accessory Set,2014,65,25 +5002145-1,Rocket Raccoon,2014,483,12 +5002146-1,Minifigure Collection 2013 Vol 1 of 3,2013,535,6 +5002201-1,Friends Brick Light (Pink),2013,501,0 +5002203-1,Radio DJ Robot,2014,578,4 +5002204-1,Western Emmet,2014,578,6 +5002207-1,LEGO® Classic Minifigure Link Watch,2013,501,0 +5002210-1,C-3PO and R2-D2 Minifigure Watch,2013,501,0 +5002212-1,LEGO® Star Wars™ Chewbacca™ Minifigure Watch,2013,501,0 +5002422-1,The Joker Minifigure Clock,2013,501,0 +5002423-1,LEGO® DC Universe Super Heroes Batman™ Minifigure Clock,2013,501,0 +5002424-1,LEGO® DC Universe Super Heroes Superman™ Minifigure Clock,2013,501,0 +5002467-1,Friends 2x4 Key Light,2013,503,0 +5002506-1,LEGO® Minifigures: Character Encyclopedia,2013,497,0 +5002518-1,LEGO® Belkin Brand iPhone 5 Case Pink/Violet,2013,501,0 +5002773-1,Lego Brickmaster - The Quest for CHI,2013,497,187 +5002780-1,LEGO® Play Book,2013,497,0 +5002792-1,LEGO® Marvel Super Heroes PC DVD Video Game,2013,502,0 +5002793-1,LEGO® Marvel Super Heroes PS VITA Video Game,2013,502,0 +5002812-1,D2C Minifigure Retro Set 2014,2014,126,18 +5002813-1,Train Ornament,2014,228,25 +5002887-1,The LEGO® Book,2009,497,0 +5002888-1,The LEGO® Minifigure: Year by Year,2013,497,0 +5002914-1,THE LEGO® MOVIE™ Emmet Key Light,2014,503,0 +5002915-1,Batman Key Light,2014,503,0 +5002916-1,THE LEGO® MOVIE™ Unikitty Key Light,2014,503,0 +5002919-1, Scenery and Dagger Trap polybag,2015,435,25 +5002928-1,Party Polybag,2015,494,11 +5002929-1,Friends Interior Design Kit,2015,494,28 +5002930-1,Hair Accessories,2015,494,6 +5002931-1,Disco Dance Floor,2015,494,26 +5002938-1,Stormtrooper Sergeant,2015,158,6 +5002939-1,The Phantom,2015,182,23 +5002941-1,Bionicle Hero Pack,2015,324,6 +5002942-1,Bionicle Villain Pack,2015,324,10 +5002943-1,Winter Soldier,2015,487,1 +5002946-1,Silver Centurion,2016,487,0 +5002947-1,Admiral Yularen,2015,158,4 +5003022-1,THE LEGO® MOVIE™ Bad Cop Minifigure Alarm Clock,2014,501,0 +5003023-1,THE LEGO® MOVIE™ Bad Cop Minifigure Link Watch,2014,501,0 +5003024-1,THE LEGO® MOVIE™ Lucy/Wyldstyle Minifigure Link Watch,2014,501,0 +5003025-1,THE LEGO® MOVIE™ Emmet Minifigure Link Watch,2014,501,0 +5003026-1,THE LEGO® MOVIE™ Lucy/Wyldstyle Minifigure Alarm Clock,2014,501,0 +5003027-1,THE LEGO® MOVIE™ Emmet Minifigure Alarm Clock,2014,501,0 +5003082-1,Pirates Adventure,2015,154,28 +5003083-1,Christmas Tree Ornament,2015,598,31 +5003084-1,The Hulk,2015,487,14 +5003096-1,LEGO® City Fire Collection: 60004 and 850618,2014,58,2 +5003-1,"Light Bricks, 4.5V",1987,443,2 +5003246-1,EV3 Track Rubber Elements,2015,507,30 +5003545-1,THE LEGO® MOVIE™ PS4 Video Game,2014,502,0 +5003559-1,THE LEGO® MOVIE™ Xbox One Video Game,2014,502,0 +5003561-1,Legends of Chima Lunch Set,2014,501,0 +5003562-1,Legends of Chima Sorting System,2014,501,0 +5003563-1,Friends Lunch Set,2014,501,0 +5003564-1,Friends Sorting System,2014,501,0 +5003565-1, 1 stud Blue Storage Brick,2014,501,0 +5003566-1,1 stud Red Storage Brick,2014,501,0 +5003568-1,2 stud Blue Storage Brick,2014,501,0 +5003569-1,2 stud Red Storage Brick,2014,501,0 +5003570-1,2 stud Yellow Storage Brick,2014,501,0 +5003574-1,4 stud Blue Storage Brick,2014,501,0 +5003575-1,4 stud Red Storage Brick,2014,501,0 +5003576-1,4 stud Yellow Storage Brick,2014,501,0 +5003578-1,Legends of Chima The Lion the Crocodile and the Power of CHI!,2014,501,0 +5003579-1,Batman Head Lamp,2014,501,0 +5003580-1,Catwoman Key Light,2014,503,0 +5003582-1,Superman Head Lamp,2014,501,0 +5003583-1,LEGO® Star Wars™ Darth Vader™ Head Lamp,2014,501,0 +5003584-1,Bad Cop Key Light,2014,503,0 +5003586-1,THE LEGO MOVIE President Business Key Light,2014,503,0 +5004064-1,LEGO® Super Heroes DC Universe™ Batman™ Minifigure Link Watch,2014,501,0 +5004065-1,LEGO® Super Heroes DC Universe™ Superman™ Minifigure Link Watch,2014,501,0 +5004066-1,The LEGO Movie The Original Motion Picture Soundtrack,2014,501,0 +5004067-1,The LEGO Movie Lunch Set,2014,501,0 +5004076-1,Minifigure Gift Set (Target Exclusive),2014,598,20 +5004077-1,2015 Target Minifigure Gift Set,2015,598,5 +5004-1,Keys for Windup Motor,1987,443,2 +5004102-1,THE LEGO® MOVIE™ The Essential Guide,2014,497,0 +5004103-1,LEGO® Brickmaster: Star Wars™ Crystal,2013,497,1 +5004115-1,LEGO® Brick Black Adult Watch,2014,501,0 +5004116-1,LEGO® Friends Stephanie Watch with Mini-Doll,2014,501,0 +5004117-1,LEGO® Multi-stud Red Adult Tachymeter Watch,2014,501,0 +5004118-1,LEGO® NINJAGO™ Kai Minifigure Clock,2014,501,0 +5004119-1,LEGO® Brick White Adult Watch,2014,501,0 +5004120-1,LEGO® Star Wars™: The Yoda Chronicles,2014,501,4 +5004127-1,LEGO® NINJAGO™ Kai Minifigure Link Watch,2014,501,0 +5004128-1,LEGO® Happiness Yellow Adult Watch,2014,501,0 +5004129-1,LEGO® NINJAGO™ Zane Minifigure Clock,2014,501,0 +5004130-1,LEGO® Friends Olivia Watch with Mini-Doll,2014,501,0 +5004131-1,LEGO® NINJAGO™ Zane Minifigure Link Watch,2014,501,0 +5004195-1,LEGO® Star Wars™: The Visual Dictionary (Updated and Expanded),2014,497,4 +5004196-1,LEGO® Star Wars™: Choose Your Side! Ultimate Sticker Collection,2014,501,0 +5004197-1,Friends Character Encyclopedia,2014,497,6 +5004237-1,THE LEGO® MOVIE™: Blu-ray Combo Pack (Blu-ray + DVD + UltraViolet Digital HD),2014,501,0 +5004238-1,THE LEGO MOVIE Everything Is Awesome Edition,2014,501,6 +5004248-1,LEGO® Friends Andrea Key Light,2014,503,0 +5004249-1,LEGO® Friends Emma Key Light,2014,503,0 +5004250-1,LEGO® Friends Mia Key Light,2014,503,0 +5004251-1,LEGO® Friends Olivia Key Light,2014,503,0 +5004252-1,LEGO® Friends Stephanie Key Light,2014,503,0 +5004259-1,Holiday Ornament Collection,2014,228,6 +5004260-1,"Friends Animal Collection 3 in 1 (41044, 41045, 41046)",2014,496,3 +5004261-1,"The Hobbit Ultimate Kit (79015, 79016, 79017, 79018)",2014,565,4 +5004262-1,LEGO 1x2 Brick Key Light (Blue),2014,503,0 +5004263-1,LEGO 1x2 Brick Key Light (Green),2014,503,0 +5004264-1,LEGO 1x2 Brick Key Light (Red),2014,503,0 +5004266-1,LEGO Mini Box (Yellow),2014,501,0 +5004267-1,LEGO 1 stud Red Storage Brick,2014,501,0 +5004268-1,LEGO 1 stud Blue Storage Brick,2014,501,0 +5004273-1,LEGO Friends Storage Brick 2 Bright Purple,2014,501,0 +5004274-1,LEGO Friends Storage Brick 1 - Medium Lilac,2014,501,0 +5004279-1,LEGO® 2-stud Red Storage Brick,2015,501,0 +5004280-1,LEGO 2 stud Blue Storage Brick,2014,501,0 +5004281-1,Angry Kitty Key Light,2014,503,0 +5004282-1,THE LEGO MOVIE Astro Kitty Key Light,2014,503,0 +5004283-1,Bizniz Kitty Key Light,2014,503,0 +5004284-1,THE LEGO® MOVIE™ Queasy Kitty Key Light,2014,503,0 +5004363-1,Brick USB Flash Drive,2015,501,0 +5004388-1,Nexo Knights Intro Pack,2016,605,6 +5004389-1,Battle Station,2016,605,8 +5004404-1,Police Chase,2016,52,36 +5004406-1,First Order General,2016,184,4 +5004408-1,Rebel A-wing Pilot,2016,182,5 +5004409-1,Bionicle 2016 Accessory Pack,2016,324,5 +5004419-1,Classic Knights Minifigure,2016,409,45 +5004420-1,Toy Soldier,2016,227,34 +5004468-1,Easter Minifigure,2016,229,4 +5004549-1,LEGO MIXEL COLLECTION 4,2015,584,9 +5004550-1,Speed Champions Collection,2015,601,4 +5004551-1,LEGO® MIXELS™ Glowkies,2015,584,3 +5004552-1,Super Heroes Avengers Collection,2015,487,6 +5004553-1,LEGO MIXELS INFERNITES,2015,584,3 +5004554-1,Ultra Agents Collection,2015,303,2 +5004556-1,LEGO® MIXELS™ Orbitons,2015,584,3 +5004557-1,Pirates Collection,2015,154,2 +5004558-1,Pirates Collection 2,2015,154,2 +5004559-1,Speed Champions Collection 2,2015,601,2 +5004590-1,Bat Pod,2015,484,338 +5004600-1,Wonder Woman Minifigure Alarm,2015,501,0 +5004601-1,Wonder Woman Watch,2015,501,0 +5004602-1,Batman Minifigure Link Watch,2015,501,0 +5004603-1,Superman Minifigure Link Watch,2015,501,0 +5004604-1,Classic Minifigure Link Watch,2015,501,0 +5004605-1,Boba Fett Minifigure Watch,2015,501,0 +5004606-1,Darth Maul Watch,2015,501,0 +5004607-1,Darth Vader Watch,2015,501,0 +5004608-1,Luke Skywalker Watch,2015,501,0 +5004609-1,Stormtrooper Watch,2015,501,0 +5004610-1,Yoda Watch,2015,501,0 +5004611-1,Emmet Minifigure Watch,2015,501,0 +5004612-1,Lucy Wyldstyle Minifigure Link Watch,2016,501,0 +5004750-1,Kai Key Light,2015,503,0 +5004751-1,Wonder Woman Key Light,2015,503,0 +5004752-1,Boba Fett Key Light,2015,503,0 +5004796-1,Jay Key Light,2015,503,0 +5004798-1,LEGO Star Wars: The Dark Side,2014,497,4 +5004799-1,LEGO® Architecture: The Visual Guide,2014,497,0 +5004838-1,WeDo 2.0 Add-On Power Pack,2016,521,2 +5004853-1,LEGO Star Wars Character Encyclopedia: Updated and Expanded,2015,497,6 +5004854-1,LEGO® Star Wars in 100 scenes,2015,497,0 +5004868-1,LEGO® Mixels™ Munchos,2015,586,3 +5004869-1,LEGO® Mixels™ Glorp Corp,2015,586,3 +5004870-1,LEGO® Mixels™ Weldos,2015,586,4 +5004932,LEGO My Travel Companion,2017,599,36 +5005-1,Battery Box 4.5V,1987,443,1 +5006-1,Replacement 2-Piece Battery Motor Housing,1987,443,2 +5007-1,Basic Motor 4.5V,1987,443,1 +5008-1,Brick Separator,1990,443,1 +5009-1,"Building Plate 16 x 32, Yellow",1990,443,1 +50-1,Universal Building Set,1976,469,390 +5010-1,"Building Plate 16 x 32, Green",1990,443,1 +5011-1,9V Basic Motor,1992,443,1 +5012-1,Soccer Player with Goal,2003,462,11 +501-3,JUMBO Pull Toy,1966,369,9 +5013-1,Basketball,2003,459,25 +5014-1,Slammer,2003,461,28 +5015-1,Skateboard Bill,2003,460,17 +5016-1,Basketball Promotional Set,2003,459,17 +5017-1,Hockey Promotional Set,2003,461,36 +5018-1,Gravity Games Promotional Set,2003,460,17 +502-2,Pre-School Medium Set,1968,369,8 +5030-1,Signs for Use with Lighting Bricks 9V,1992,443,16 +503-1,Basic Building Set,1987,467,39 +5031-1,"Propellers, Wheels, Rotor Unit",1987,443,15 +503-2,Pre-School Large Set,1968,369,16 +5032-1,Jack,1987,443,1 +5033-1,1x4 Lighing Brick and 4 Colour Globes,1987,443,5 +5034-1,1x2 Lighting Brick and 4 Colour Globes,1987,443,5 +5035-1,"Town Siren, 2 x 2",1987,443,1 +5036-1,"Space Siren, 2 x 2",1987,443,1 +5037-1,Current Carrying Plates,1988,443,9 +5038-1,9V Battery Box,1988,443,1 +5039-1,Monorail Stop / Reverse Switch,1987,443,3 +5040-1,Monorail 9V Motor,1988,443,1 +504-1,Basic Building Set,1985,467,41 +5041-1,Wire for 9V (9cm),1988,453,1 +5042-1,"Space Light and Radar Plates, Disks, Cones",1991,452,50 +5043-1,"Mini Antennas, Control Sticks and Antennas",1991,443,26 +5044-1,"Plateau, Approach for Harbour",1991,443,3 +5045-1,"Magnets, Magnet Holders",1991,443,12 +5046-1,"Hub, Tire and Wheel Suspension",1991,443,10 +5047-1,"Hinges, Couplings, Turntables",1993,443,30 +5048-1,Town Accessories,1993,454,36 +5049-1,Transparent Windows and Bricks,1993,443,8 +5050-1,Plane Accessories,1993,443,27 +5051-1,"Windscreens, Seats, Steering Wheel",1993,443,14 +5052-1,"Antennas, Control Sticks",1993,443,39 +5053-1,"Small Plates with Tool Holders, Disks, Cones",1993,443,76 +5054-1,Decorated Elements,1993,443,28 +5055-1,Magnets and Magnet Holders,1993,443,12 +5056-1,Space Elements,1993,452,37 +5057-1,Space Accessories,1993,452,27 +5058-1,Pirate Accessories,1993,449,32 +5059-1,Castle Equipment,1993,447,34 +5060-1,Cannons,1993,443,16 +5061-1,"Connector Leads, 75cm and 25cm",1987,456,6 +5062-1,Shunting Trip Posts and Signal,1987,456,4 +5063-1,Power Supply Rail,1987,456,1 +5064-1,Locomotive Wheels,1987,456,8 +5065-1,3m Wiring and Two-Way Plug,1987,443,11 +5066-1,Magnetic Train Coupler,1987,456,6 +5067-1,"Rubber Wheel Rims, Grey",1987,456,8 +5068-1,Motor Frame and Coupling,1987,456,5 +5069-1,12V Lighting Bricks,1987,443,2 +5070-1,"Wheel Sets, Black",1987,456,2 +507-1,Basic Building Set,1987,467,60 +5071-1,"Wheel Sets, Large, Red",1987,456,2 +5072-1,"Wagonplate, 6 x 28 Studs",1987,456,1 +5073-1,Light Transmitting Elements for Train Sets,1987,456,7 +5074-1,"Bogie Plates, Black",1987,456,2 +5075-1,"Battery Tender, Red",1987,456,2 +5076-1,Plates 2 x 8,1989,443,8 +5077-1,Sliding Gates and Rails,1987,443,6 +5078-1,Crane Accessories,1993,443,15 +5079-1,Change-Over Unit,1989,456,1 +50799-1,Knights' Kingdom Adventure Box,2005,198,3 +5080-1,Remote Control for Switch,1989,456,1 +508-1,Basic Building Set,1985,467,66 +5081-1,Remote Control for Signal,1989,456,1 +5082-1,Flash Light Unit,1989,456,1 +5083-1,Remote Control for Crossing,1989,456,1 +5084-1,12V Light Brick,1989,443,1 +5085-1,Power Supply Rail with Socket,1989,456,1 +5086-1,12V Motor (old),1993,443,1 +509-1,38 Slimbricks Assorted Sizes,1965,371,228 +5099-1,Pneumatic Valves,1991,453,1 +5100-1,TECHNIC Battery Box,1987,453,1 +510-1,Basic Building Set,1985,467,102 +5101-1,4.5v TECHNIC Motor,1987,453,1 +510-2,Tiles,1965,371,156 +5102-1,"Pneumatic Tube, 60 cm and 100 cm",1987,453,2 +5103-1,"Pneumatic Spring Cylinder, 48 mm",1987,453,1 +5104-1,"Pneumatic Cylinder, 48 mm",1987,453,1 +5105-1,"Pneumatic Cylinder, 64 mm",1987,453,1 +5106-1,Two-Way Valve and Non-Return Valve,1987,453,2 +5107-1,Pneumatic Pump 2 Cylinder,1991,453,1 +5108-1,Pneumatic Piston 2 Cylinder,1989,453,1 +5109-1,Pneumatic Tubes and Pieces,1989,453,6 +5110-1,Pneumatic Value Pack,1990,453,4 +5110-2,"Cross Axles, Nuts",1989,453,26 +5111-1,"9V Motor Wire, 128cm",1990,453,1 +5112-1,"Lifting Grabs, Crane Hook",1987,453,3 +5113-1,TECHNIC Airscrew,1987,453,1 +5114-1,Extra 9 Volt Motor,1991,453,1 +5115-1,9V Battery Box,1992,453,1 +5116-1,Pneumatic Cylinder 1.25,1997,453,1 +5117-1,Compressor Pump,1997,453,7 +5118-1,TECHNIC Cables,1995,453,35 +5119-1,Micro Motor,1996,453,4 +5120-1,Polarity Switch,1993,453,2 +5121-1,Decorated Elements,1994,443,30 +5122-1,Pirate Accessories,1994,449,29 +5124-1,Wheels and Bearings,1994,443,28 +5125-1,Spaceport Accessories,1995,454,35 +5126-1,Crane and Digger Accessories,1995,443,18 +5127-1,Antennas and Control Sticks,1995,443,37 +5128-1,"Transparent Plates, Bricks, Toolholders",1996,443,80 +5129-1,Space Accessories,1996,452,22 +5130-1,"Windows, Seats, Steering Wheels",1996,443,14 +5131-1,"Hinges, Couplings, Turntables",1996,443,30 +5132-1,"Wheels, Bearings and Suspension",1995,443,32 +5133-1,Town Accessories,1996,454,47 +5134-1,Cannons and Wheels,1995,443,28 +5135-1,Castle Accessories,1995,447,34 +5136-1,Belville Accessories,1995,446,10 +5137-1,Town Accessories,1994,454,44 +5138-1,Castle Accessories,1994,447,39 +5139-1,Cannons with Wheels,1994,443,28 +5140-1,"Bricks, Red",1987,443,62 +5141-1,"Bricks, Blue",1987,443,62 +5142-1,"Bricks, White",1987,443,62 +5143-1,"Bricks, Yellow",1987,443,62 +5144-1,"Bricks, Black",1987,443,62 +5145-1,"Bricks, Gray",1987,443,62 +5146-1,"Plates, Blue",1987,443,42 +5147-1,"Plates, Red",1987,443,42 +5148-1,Wheels,1987,443,40 +5149-1,Doors and Windows,1987,443,38 +5150-1,Pirate Elements,1990,449,35 +515-1,Basic Building Set,1990,467,115 +5151-1,"Roof Bricks, Red, 45 Degrees",1987,443,59 +5152-1,"Roof Bricks, Red, 25 Degrees",1987,443,60 +5153-1,Plane Accessories,1991,443,23 +5154-1,Decorated Elements,1991,443,26 +5155-1,Space Jets and Wings,1991,443,19 +5156-1,Transparent Bricks,1991,443,17 +5157-1,Town and Space Equipment,1991,443,32 +5158-1,"T-Junction, Circle Plates",1990,454,2 +5159-1,Straight Runways,1990,454,2 +5160-1,Aquazone Accessories,1995,445,21 +5161-1,Inverted Slope Bricks,1987,443,16 +5162-1,Fences and Gates,1987,443,10 +5163-1,"Turntables, 4 x 4 and 2 x 2",1987,443,8 +5164-1,"Hinges, Turntables and Couplings",1991,443,20 +5165-1,"Hinges, Couplings and Tilting Bearings",1991,443,32 +5166-1,"Lampholders, Plates with Holder",1991,443,18 +5167-1,"Hinges, Tilt Bearings",1987,443,16 +5168-1,Digger Bucket Assembly,1987,443,4 +5169-1,Crane Set Assembly,1987,443,7 +517-1,Basic Building Set,1987,467,123 +5171-1,Decorated Elements,1987,443,28 +5172-1,Rocket Stages,1987,443,30 +5173-1,Space Jet & Wings,1987,452,19 +5174-1,Wheels and Bearings,1987,443,28 +5175-1,Space Elements,1987,452,26 +5176-1,Transparent Bricks,1987,443,19 +5177-1,Town and Space Accessories,1987,443,35 +5178-1,Plane Accessories,1987,443,23 +5179-1,Hinges and Couplings,1987,443,26 +5180-1,"T-Junction, Circle (Airport)",1987,454,2 +518-1,2 x 4 Plates (cardboard box version),1962,371,192 +518-10,2 x 4 Plates - Blue (architectural hobby und modelbau version),1962,252,26 +518-11,2 x 4 Plates - Light Gray (architectural hobby und modelbau version),1962,252,26 +5181-1,"Runways, Straight (Airport)",1987,454,2 +518-12,2 x 4 Plates - Red (architectural hobby und modelbau version),1962,252,26 +518-13,2 x 4 Plates - Trans-Clear (architectural hobby und modelbau version),1962,252,26 +518-14,2 x 4 Plates - White (architectural hobby und modelbau version),1962,252,26 +518-15,2 x 4 Plates - Yellow (architectural hobby und modelbau version),1962,252,26 +5182-1,Hinges and Couplings,1989,443,19 +5183-1,Hinges and Couplings,1989,443,32 +5184-1,Castle Equipment,1989,447,38 +5185-1,Dustbins with Lids,1989,443,8 +5186-1,Fence,1989,443,10 +5187-1,Bricks with Groove and Garage Panels,1989,443,26 +5188-1,"Seats, Steering Wheels and Windscreens",1989,443,10 +518-9,2 x 4 Plates - Black (architectural hobby und modelbau version),1962,252,26 +5189-1,Ladder (Black and Grey),1989,443,16 +5190-1,Seats and Windscreens,1989,443,7 +519-1,2 x 3 Plates (cardboard box version),1962,371,240 +519-10,2 x 3 Plates - Blue (architectural hobby und modelbau version),1962,252,32 +519-11,2 x 3 Plates - Light Gray (architectural hobby und modelbau version),1962,252,32 +5191-1,Balloon Tires,1989,443,4 +519-12,2 x 3 Plates - Red (architectural hobby und modelbau version),1962,252,32 +519-13,2 x 3 Plates - Trans-Clear (architectural hobby und modelbau version),1962,252,32 +519-14,2 x 3 Plates - White (architectural hobby und modelbau version),1962,252,32 +519-15,2 x 3 Plates - Yellow (architectural hobby und modelbau version),1962,252,32 +5192-1,Cypress Trees,1989,443,2 +5193-1,Sloping Frames,1989,443,6 +5194-1,"Hinge Plate, Fork-Lift",1989,443,3 +5195-1,Assorted Arches,1989,443,6 +5196-1,"Crane, Crane Hooks and Ladders",1989,443,5 +5197-1,"Lampholders, Plate with Holders",1989,443,24 +5198-1,"Small Plates, Disks and Cones",1989,443,56 +519-9,2 x 3 Plates - Black (architectural hobby und modelbau version),1962,252,32 +5199-1,Mini Antennas and Stick,1989,443,32 +5200-1,Signal Masts and Feet,1987,456,8 +520-1,2 x 2 Plates - Black (cardboard box version),1962,371,40 +520-10,2 x 2 Plates - Blue (architectural hobby und modelbau version),1962,252,42 +520-11,2 x 2 Plates - Light Gray (architectural hobby und modelbau version),1962,252,42 +5201-1,Angle Pieces,1997,453,20 +520-12,2 x 2 Plates - Red (architectural hobby und modelbau version),1962,252,42 +520-13,2 x 2 Plates - Trans-Clear (architectural hobby und modelbau version),1962,252,42 +520-14,2 x 2 Plates - White (architectural hobby und modelbau version),1962,252,42 +520-15,2 x 2 Plates - Yellow (architectural hobby und modelbau version),1962,252,42 +520-16,Basic Building Set,1985,467,173 +520-2,2 x 2 Plates - Blue (cardboard box version),1962,371,40 +5202-1,Angle Beams,1997,453,8 +520-3,2 x 2 Plates - Green (cardboard box version),1962,371,40 +5203-1,Silver Wheels,1999,453,4 +520-4,2 x 2 Plates - Light Gray (cardboard box version),1963,371,40 +5204-1,Cyber Slam Accessories,1999,453,11 +520-5,2 x 2 Plates - Red (cardboard box version),1963,371,40 +5205-1,Pulleys and Rubber Belts,1999,453,14 +520-6,2 x 2 Plates - Trans-Clear (cardboard box version),1963,371,40 +5206-1,Speed Computer,2000,19,19 +520-7,2 x 2 Plates - White (cardboard box version),1963,371,40 +520-8,2 x 2 Plates - Yellow (cardboard box version),1962,371,40 +520-9,2 x 2 Plates - Black (architectural hobby und modelbau version),1962,252,42 +5210-1,Elastic Bands,1997,453,1 +521-1,1 x 1 and 1 x 2 Plates (cardboard box version),1962,371,640 +521-10,1 x 1 and 1 x 2 Plates - Blue (architectural hobby und modelbau version),1962,252,82 +521-11,1 x 1 and 1 x 2 Plates - Light Gray (architectural hobby und modelbau version),1962,252,82 +521-12,1 x 1 and 1 x 2 Plates - Red (architectural hobby und modelbau version),1962,252,82 +521-13,1 x 1 and 1 x 2 Plates - Trans-Clear (architectural hobby und modelbau version),1962,252,82 +521-14,1 x 1 and 1 x 2 Plates - White (architectural hobby und modelbau version),1962,252,82 +521-15,1 x 1 and 1 x 2 Plates - Yellow (architectural hobby und modelbau version),1962,252,82 +5215-1,"Bricks Assorted, Green",1999,443,62 +5216-1,"Roof Bricks Assorted, Black",1999,443,57 +5217-1,Black Plates Assorted,1999,443,42 +5218-1,Pneumatic Pack,2000,19,152 +521-9,1 x 1 and 1 x 2 Plates - Black (architectural hobby und modelbau version),1962,252,82 +5219-1,Wheel Pack,2000,19,28 +5220-1,Styling Pack,2000,19,220 +522-1,Police Station,1977,504,26 +5221-1,Motor Pack,2000,19,55 +5222-1,Chassis Pack,2000,19,137 +5223-1,Wind-up Motor,2001,19,41 +5225-1,9v Motor with gear reduction,1998,453,1 +5226-1,Cross Axles,1998,453,18 +5227-1,Fiber Optic Cables,2000,453,8 +5228-1,Small Beams and Plates,1997,453,26 +5229-1,Gears & Differentials,1997,453,23 +5231-1,TECHNIC Beams and Plates [Yellow],1987,453,20 +5232-1,TECHNIC Beams and Plates [Blue],1987,453,18 +5233-1,Bedroom,1980,405,163 +5233-2,Small Beams and Plates with holes,1993,453,26 +5234-1,TECHNIC Beams and Plates {black},1987,453,20 +5235-1,Large Beams with Holes,1993,453,10 +5235-2,Schoolroom,1982,405,232 +5236-1,TECHNIC Beams [Blue],1987,453,8 +5237-1,TECHNIC Beams {black},1987,453,8 +5238-1,TECHNIC Beams {red},1987,453,8 +5239-1,Cross Axles,1987,453,34 +5240-1,TECHNIC Wheels with 43 mm + 24 mm tyres,1987,453,12 +5241-1,Gear Wheel Assortment,1987,453,20 +5242-1,Differential Gear Housing,1987,453,19 +5243-1,TECHNIC Chainlinks,1987,453,70 +5244-1,TECHNIC Bulldozer Chainlinks,1987,453,54 +5245-1,"Differential Gears / Universal Joint, Differential Housing and Wheels",1994,453,6 +5246-1,X-Large Tires / 81 mm Tyres and Hubs,1987,453,4 +5247-1,Toggle Joints,1987,453,66 +5248-1,62 mm Tires and Hubs / 62 mm Tyres and Hubs,1987,453,4 +5249-1,TECHNIC Beams and Plates [Red],1987,453,20 +5250-1,TECHNIC Beams {yellow},1987,453,8 +525-1,Basic Building Set,1990,467,185 +5251-1,Shock Absorbers,1989,453,4 +5252-1,Large Shock Absorbers,1993,453,2 +5253-1,"Cross Axles (Sizes 2, 3, 4, 6)",1987,453,12 +5254-1,"Cross Axles (Sizes 8, 10, 12)",1987,453,9 +5255-1,Connector Pegs / Connectorpegs,1987,453,30 +5256-1,Suspension Pack,1987,453,12 +5257-1,"Connector Pegs, Toggle Joints, and Wheels",1987,453,25 +5258-1,"Crown Wheels, Gear Racks, Point Wheels, Worm Gears",1987,453,10 +5259-1,"Universal Joint, Rubber Bands, and Wheels",1987,453,12 +5260-1,Connecting Rods and Stop Bushes,1987,453,32 +5261-1,"Plates, Gear Racks, etc.",1987,453,14 +5262-1,Gear Wheels,1987,453,9 +5263-1,"Universal Joint, Differential Housing, and Point Wheels",1987,453,6 +5264-1,Rotors and Bush/Cross Axles,1987,453,24 +5265-1,Large Tires and Wheels / TECHNIC Wheels with 43 mm + 24 mm Tyres,1989,453,16 +5266-1,"Gear Wheel Assortment / Gear Racks, Gear Wheels and Pulley Wheels",1989,453,22 +5267-1,Cross Axles & Extensions,1993,453,16 +5268-1,Small Tires,1995,453,8 +5269-1,"Liftarms & Triangles / Liftarms, Triangles etc.",1995,453,12 +5270-1,43 mm Tires and Hubs / 43 mm Tyres and Hubs,1987,453,4 +527-1,Basic Building Set,1987,467,196 +5271-1,White Hubs & Tires / 49.6 mm Tyres & Hubs,1991,453,4 +5272-1,Cylinder Motor,1991,453,9 +5273-1,Tires,1992,453,4 +5274-1,"8 Tires / Tyres (4x24, 4x 30 mm) w/hubs",1992,453,16 +5275-1,Toggle Joints and Connectors,1993,453,48 +5276-1,"Gear Wheels Etc. / Gear Wheels, Worm Gears, Universal Joints and Gear Racks",1993,453,23 +5277-1,Pulleys & V-Belts,1993,453,12 +5278-1,TECHNIC Chainlinks,1994,453,35 +5279-1,"Plates, Gear Racks",1993,453,16 +5280-1,"Liftarms & Triangles / Liftarms, Triangles",1995,453,10 +5281-1,Balloon Tires Medium,1994,453,4 +5282-1,Balloon Tires Large,1994,453,4 +5283-1,Balloon Tires Small,1994,453,4 +5284-1,Loading Grabs,1996,453,3 +5285-1,2 Large Shock Absorbers / Large Shock Absorbers,1994,453,2 +5286-1,Toggle Joints & Connectors,1994,453,64 +5287-1,"Plates & Gear Racks / Plates, Gear Racks etc.",1995,453,18 +5288-1,Worm Gear Boxes,1995,453,12 +5289-1,Toggle Joints & Connectors,1996,453,64 +5290-1,Plates & Gear Racks,1996,453,16 +5291-1,Liftarms & Triangles,1996,453,12 +5292-1,LEGO TECHNIC Storage Case,1996,453,1 +5293-1,9V Battery Box,1996,453,1 +5294-1,"Toggle Joints & Connectors / Pegs, Bushings, & Couplers",1998,453,60 +5295-1,Racks & Pivots,1998,453,12 +5-3,Basic Set,1973,469,330 +5300-1,Electric Train Motor,1991,456,3 +530-1,Basic Building Set,1985,467,273 +5301-1,Wagon Plate 6 x 28,1992,456,1 +5302-1,"Bogieplates, Black",1992,456,2 +5303-1,"Buffers, Magnets & Couplers",1992,456,6 +5304-1,Wheelsets,1992,456,2 +5305-1,Connection Wire,1992,456,1 +5306-1,Plates 2x2 with Wire 9 V 26 cm,1992,453,1 +5307-1,Head Light Brick,1992,456,3 +5308-1,Head Light Brick,1994,456,3 +5309-1,"Wagon Plate, Red (6 x 28)",1996,456,1 +5310-1,Lighting Brick,1996,456,4 +5311-1,9V Wires (25.6 cm),1996,1,1 +5313-1,Space Port Accessories,1999,454,16 +5314-1,RES-Q Equipment (Tools),1999,454,31 +5315-1,Connectors,1999,443,60 +5316-1,Transparent Elements,1999,443,60 +5317-1,Wild West Accessories,1999,457,48 +5318-1,Head Wear,1999,443,26 +5319-1,Decorated Elements,1999,454,19 +5320-1,"Plates, Small",1999,443,66 +5321-1,Large Plates,1999,443,10 +533-1,Basic Set,1984,469,93 +535-1,Basic Building Set,1990,467,349 +5369-1,Creator Tub,2005,37,700 +5370-1,Large Make and Create Bucket with Special LEGO Bonus Bricks,2005,37,2 +5370a-1,Large Make and Create Bucket with Special LEGO Bonus Bricks (Bucket and its contents only),2005,37,500 +5370b-1,Large Make and Create Bucket with Special LEGO Bonus Bricks (Bonus box and its contents only),2005,48,201 +537-1,Basic Building Set,1987,467,271 +5372-1,Skeleton Chariot,2008,193,25 +5373-1,Knight & Catapult,2008,193,24 +5378-1,Hogwarts Castle (3rd edition),2007,249,904 +5380-1,Duplo Large Brick Box,2007,504,71 +5380-2,Duplo Large Brick Box - Green Plate,2008,505,71 +5381-1,Adventurer's Accessories,1998,444,27 +5382-1,Aquazone Accessories,1998,445,19 +5383-1,Castle Accessories,1998,447,36 +5384-1,Space Accessories,1998,452,19 +53850001-1,Crocodile,2015,410,30 +53850002-1,Car,2015,410,40 +53850003-1,Giraffes,2015,410,36 +53850004-1,Biplane,2015,410,24 +53850005-1,Panda,2015,410,35 +53850006-1,Jeep,2015,410,29 +53850007-1,Elephant,2016,410,27 +53850008-1,Jet,2016,410,18 +53850009-1,Aircraft,2016,410,37 +53850012-1,Truck,2016,410,66 +53850013-1,Turtle,2016,410,50 +53850015-1,Penguin,2016,410,39 +53850016-1,Animal - Beaver,2017,410,52 +53850017-1,Digger,2017,410,56 +5386-1,Antennas and Control Sticks,1998,443,38 +5387-1,Belville Beach Accessories,1998,446,11 +5388-1,"Hinges, Couplings and Turntables",1998,443,29 +5389-1,Divers' Accessories,1998,454,37 +5390-1,Crane and Digger Accessories,1998,454,14 +5391-1,9V Battery Box,1997,443,1 +5392-1,Wild West Accessories,1997,457,37 +5393-1,Headgear (Hats and Hair),1997,454,31 +5394-1,Horses and Saddles,1997,443,12 +5395-1,Belville Hospital Accessories,1996,446,4 +5396-1,Transparent Windows and Bricks,1996,443,8 +5397-1,Magnets and Magnet Holders,1996,443,12 +5398-1,Decorated Elements,1996,443,43 +5399-1,Fairy Tale Accessories,1999,446,25 +5-4,Large House Set,1971,433,307 +5400-1,Bathroom Accessories,1997,451,13 +540-1,Basic Building Set,1985,467,619 +5401-1,Kitchen Accessories,1997,451,14 +540-2,Police Units,1979,80,44 +5402-1,Floor Plate 1/2,1997,451,1 +540-3,Swiss Villa,1973,413,150 +5403-1,Floor Plate 1/1,1997,451,1 +5404-1,House,1997,451,28 +5405-1,Floor Plate,1998,451,1 +54-1,UFO Action Pack,1997,144,3 +5410-1,Emma,2011,451,9 +5413-1,Beauty Set,1999,451,25 +5414-1,Kitchen Set,1999,451,24 +5415-1,Garden Set,1999,451,18 +5416-1,Brick Box,2007,504,34 +5416-2,Brick Box,2009,505,33 +5417-1,Duplo Deluxe Brick Box,2007,505,95 +542-1,Street Crew,1979,72,44 +5421-1,Andrea,1997,451,1 +544-1,Basic Set,1981,469,147 +545-1,Build-N-Store Chest,1990,467,423 +545-2,Conveyor Station,1973,416,170 +547-1,Basic Building Set,1987,467,624 +5475-1,Girls Fantasy Bucket,2006,37,191 +5477-1,LEGO® Classic House Building,2006,37,233 +5482-1,Ultimate LEGO House Building Set,2006,37,674 +5483-1,"Ready, Steady Build, and Race",2006,37,692 +5487-1,Fun with LEGO Bricks,2009,37,700 +5489-1,Ultimate LEGO Vehicle Building Set,2009,37,676 +5490-1,XXL 250 Canister,2006,505,250 +5491-1,XXL 2000,2006,37,2000 +5493-1,Emergency Rescue Box,2006,37,705 +55001-1,LEGO Universe Rocket,2010,560,56 +550-1,Basic Building Set,1985,467,578 +550-2,Windmill,1976,413,211 +5506-1,LEGO Duplo Building Set-71 pieces,2010,505,71 +5507-1,Duplo Deluxe Brick Box,2010,504,102 +5508-1,Deluxe Brick Box,2010,37,704 +5509-1,Duplo Basic Bricks,2010,505,45 +5510-1,Off-Road 4x4,1986,278,284 +551-1,T Road Plates,1979,84,2 +5512-1,LEGO XXL Box,2010,22,1600 +5515-1,Fun Building with LEGO Bricks,2007,37,240 +5517-1,XXL 1800,2007,37,1800 +5519-1,Creator Bucket,2007,37,485 +552-1,Curved Road Plates,1979,84,2 +5521-1,Sea Jet,1993,278,400 +5522-1,LEGO Golden Anniversary Set,2008,37,700 +5524-1,Airport,2005,397,606 +5525-1,Amusement Park,2005,397,1339 +5526-1,Skyline,2005,397,2792 +5528-1,Red Cannister,2007,37,700 +5529-1,LEGO Basic Bricks,2010,37,326 +5529-2,"LEGO Basic Bricks, Limited Edition",2010,37,326 +553-1,Straight Road Plates,1979,84,2 +5531-1,Police Motorcycle,2005,61,18 +5532-1,Fire Car,2005,58,32 +5533-1,Red Fury,1999,278,394 +5537-1,Limited Edition [Blue Tub],2007,37,683 +5538-1,Creative Bucket,2009,505,75 +5539-1,Creative Bucket,2009,37,480 +5540-1,Formula 1 Racer,1986,278,446 +554-1,Exxon Fuel Tanker,1979,76,75 +5541-1,Blue Fury,1995,278,420 +5542-1,Black Thunder,1998,278,482 +5549-1,LEGO Building Fun,2010,37,651 +5550-1,Custom Rally Van,1991,278,524 +555-1,Hospital,1976,420,229 +555-2,Basic Set,1981,469,206 +5560-1,Large Pink Brick Box,2009,37,398 +556-1,Fire Emergency Van,1979,74,66 +5561-1,Big Foot 4x4,1997,278,760 +5563-1,Racing Truck,1999,278,788 +557-1,Basic Building Set,1987,467,721 +5571-1,Giant Truck,1996,278,1746 +5573-1,LEGO Build & Play [Blue Tub],2008,37,646 +5573-2,LEGO Build & Play (Red Tub),2009,37,644 +5574-1,Lego Box,2008,48,280 +5576-1,Basic Bricks -- Medium,2008,48,378 +5578-1,Basic Bricks -- Large,2008,48,500 +5580-1,Highway Rig,1986,278,667 +558-1,Road Crane,1979,72,55 +5581-1,Magic Flash,1993,278,786 +5582-1,Ultimate Town Building Set,2008,37,697 +5584-1,Fun with Wheels,2008,37,648 +5585-1,Pink Brick Box,2008,37,216 +5587-1,Basic Bricks with Fun Figures,2009,48,390 +5589-1,Giant Box,2009,37,1600 +5590-1,Whirl and Wheel Super Truck,1990,278,1063 +5591-1,Mach II Red Bird Rig,1994,278,1172 +5595-1,DUPLO Town Airport,2009,504,57 +5599-1,Radio Control Racer,1998,117,294 +5600-1,Radio Control Racer,1998,117,297 +560-1,Town House with Garden,1979,69,244 +560-2,Police Heliport,1973,421,170 +5606-1,My First Train,2008,504,10 +5609-1,Deluxe Train Set,2008,504,118 +5610-1,Builder,2008,56,23 +5611-1,Public Works,2008,63,31 +5612-1,Police Officer,2008,61,21 +5613-1,Firefighter,2008,58,25 +561407-1,Charlie The Puppy,2014,494,13 +561408-1,Summer Beach,2014,494,27 +561409-1,Cookie Kitchen,2014,494,28 +5614-1,The Good Wizard,2008,193,16 +561410-1,Halloween Toy Shop,2014,494,29 +561411-1,Cute Kitten,2014,496,24 +561412-1,Christmas Tree,2014,494,35 +561501-1,Penguin Ice Slide,2015,494,10 +561502-1,Dressing Table,2015,494,22 +561503-1,Bunny And Garden,2015,494,18 +561504-1,Party And Cake,2015,494,23 +561505-1,Picnic Set,2015,494,21 +561506-1,Sweet Garden And Kitchen,2015,494,23 +561507-1,Garden And Wheelbarrow,2015,494,20 +561508-1,Turtle’s island,2015,494,19 +561509-1,Guitar And Stage,2015,494,21 +5615-1,The Knight,2008,193,21 +561510-1,Trick Or Treat,2015,494,19 +561511-1,Hedgehog In The Woods,2015,494,20 +561512-1,Winter Fun,2015,494,24 +5616-1,Mini Robot,2008,137,23 +5617-1,Alien Jet,2008,137,21 +5618-1,Troll Warrior,2008,193,19 +5619-1,Crystal Hawk,2008,137,26 +5620-1,Street Cleaner,2008,63,22 +5621-1,Coast Guard Kayak,2008,55,21 +5622-1,Duplo Basic Bricks - Large,2010,505,60 +5623-1,Basic Bricks - Large,2010,48,450 +5625-1,Police 4 x 4,2008,61,28 +5626-1,Coast Guard Bike,2008,55,12 +5627-1,Mini Bulldozer,2008,56,23 +5638-1,Postman,2009,504,9 +5639-1,Family House,2009,504,71 +5642-1,Tipper Truck,2009,56,23 +5643-1,Little Piggy,2010,504,4 +5644-1,Chicken Coop,2010,504,12 +5645-1,Farm Bike,2010,504,9 +5646-1,Farm Nursery,2010,504,9 +5649-1,Big Farm,2010,504,68 +565-1,Moon Landing,1976,422,366 +565-2,Build-N-Store Chest,1990,467,695 +5657-1,Jessie's Round-Up,2010,504,18 +5658-1,Pizza Planet Truck,2010,504,13 +5659-1,The Great Train Chase,2010,504,39 +566-1,Basic Set,1981,469,285 +5679-1,Police Bike,2011,504,8 +5680-1,Police Truck,2011,504,14 +5681-1,Police Station,2011,504,60 +5682-1,Fire Truck,2011,504,20 +5685-1,Vet,2011,504,4 +5700-1,LEGO Creator,1998,501,0 +570-1,Fire House,1973,417,236 +5701-1,LEGO Loco,1998,501,0 +5706-1,LEGOLAND,1999,501,0 +5714-1,LEGO Alpha Team,2000,501,0 +5748-1,Duplo Creative Building Kit,2011,505,85 +5749-1,Creative Building Kit,2011,37,650 +575-1,Coast Guard Station,1978,71,301 +575-2,Coast Guard Station (Canadian Edition),1978,71,284 +5761-1,Mini Digger,2011,23,57 +5761-1-b1,Off-Roader,2011,26,0 +5762-1,Mini Plane,2011,23,52 +5763-1,Dune Hopper,2011,23,137 +5764-1,Rescue Robot,2011,23,150 +5765-1,Transport Truck,2011,22,276 +5766-1,Log Cabin,2011,38,355 +5767-1,Cool Cruiser,2011,22,621 +5770-1,Lighthouse Island,2011,22,518 +577-1,Basic Set,1981,469,391 +5771-1,Hillside House,2011,22,710 +5785-1,Soccer Mania,2002,501,0 +5793-1,Nurse's Car,2011,504,11 +5795-1,Duplo Big City Hospital,2011,504,107 +580-1,Brick Yard,1975,416,216 +5801-1,Millimy the Fairy,1999,319,12 +5802-1,Princess Rosaline,1999,319,6 +5803-1,Iris,1999,319,5 +5804-1,Witch's Cottage,1999,319,42 +5805-1,Princess Rosaline's Room,1999,319,67 +5807-1,The Royal Stable,1999,319,54 +5808-1,The Enchanted Palace,1999,319,216 +5810-1,Vanity Fun,1995,322,22 +5811-1,Prince Justin,1999,319,4 +5812-1,King,1999,319,8 +5813-1,Lightning McQueen,2010,504,11 +5814-1,Mater's Yard,2010,506,16 +5817-1,Agent Mater,2011,504,11 +5820-1,Garden Fun,1996,322,33 +5821-1,Pamela's Picnic Time,1997,323,8 +5822-1,Jennifer and Foal,1997,323,5 +5823-1,The Good Fairy's Bedroom,2000,319,33 +5824-1,The Good Fairy's House,2000,319,66 +5825-1,Stella and the Fairy,2000,319,48 +5826-1,The Queen's Room,2000,319,78 +5827-1,Royal Coach,2000,319,85 +5830-1,Fun-Day Sundaes,1995,323,32 +5831-1,Adventurous Puppies,2001,319,16 +5832-1,Vanilla's Magic Tea Party,2001,319,11 +5833-1,Rosita's Wonderful Stable,2001,319,38 +5834-1,The Enchanted Garden,2001,319,98 +5835-1,Dance Studio,1996,322,37 +5836-1,Beautiful Baby Princess,2002,319,23 +5837-1,Flora's Bubbling Bath,2002,319,27 +5838-1,The Wicked Madam Frost,2002,319,36 +5840-1,Garden Playmates,1995,322,92 +5841-1,Beach Fun,1998,323,42 +5842-1,Vanilla's Frosty Sleighride,2002,319,33 +5843-1,Queen Rose and the Little Prince Charming,2002,319,68 +5844-1,Dolphin Windsurfer,1998,323,17 +5845-1,Dolphin Show,1998,323,51 +5846-1,Desert Island,1998,323,94 +5847-1,Surfers' Paradise,1998,323,135 +5848-1,Family Yacht / Luxury Cruiser,1998,323,226 +5850-1,The Royal Crystal Palace,2002,319,153 +585-1,Police Headquarters,1976,421,300 +5853-1,Lucinda and Cressida,1997,323,5 +5854-1,Pony Trekking,1997,323,53 +5855-1,Riding Stables,1997,323,159 +5856-1,Paprika and the Mischievous Monkey,2003,320,47 +5857-1,Safran's Amazing Bazaar,2003,320,96 +5858-1,"The Golden Palace, Blue Box",2003,320,174 +5858-2,"The Golden Palace, Purple/Silver Box",2004,320,174 +5859-1,Little Garden Fairy,2003,319,49 +5860-1,Love 'N' Lullabies,1994,322,49 +5861-1,Fairy Island,2003,319,105 +5862-1,Flower Fairy Party [Blue Box],2003,319,151 +5862-2,Flower Fairy Party [Purple/Silver Box],2004,319,153 +5864-1,Mini Helicopter,2010,24,52 +5865-1,Mini Dumper,2010,22,60 +5866-1,Rotor Rescue,2010,38,149 +5867-1,Super Speedster,2010,38,278 +5868-1,Ferocious Creatures,2010,38,416 +5870-1,Pretty Playland,1994,322,101 +5871-1,Riding Stables,2002,323,159 +5872-1,Golden Land Promo (Polybag),2003,320,32 +5873-1,Fairyland Promo (Polybag),2003,319,19 +5874-1,Nursery,1997,321,61 +5875-1,Hospital Ward,1996,321,108 +5876-1,Hospital Ward,1996,321,105 +5877-1,Wedding Coach,2004,319,73 +5880-1,Prize Pony Stables,1994,323,124 +588-1,Police Headquarters,1979,80,376 +5882-1,Ambush Attack,2012,481,80 +5883-1,Tower Takedown,2012,481,136 +5884-1,Raptor Chase,2012,481,258 +5885-1,Triceratops Trapper,2012,481,270 +5886-1,T-Rex Hunter,2012,481,474 +5887-1,Dino Defense HQ,2012,481,785 +5888-1,Ocean Interceptor,2012,481,221 +5890-1,Pretty Wishes Playhouse,1994,322,229 +5891-1,Apple Tree House,2010,38,539 +5892-1,Sonic Boom,2010,38,539 +5893-1,Offroad Power,2010,38,1061 +5895-1,Villa Belville,1996,322,328 +5898-1,Car Building Set,2010,37,135 +5899-1,House Building Set,2010,37,126 +5900-1,Adventurer - Johnny Thunder,1998,297,13 +590-1,Engine Co. No. 9,1978,74,337 +5901-1,River Raft,1999,299,19 +5902-1,River Raft,1999,299,19 +5903-1,Johnny Thunder and Baby T,2000,298,23 +5904-1,Microcopter,2000,298,28 +5905-1,Hidden Treasure,1999,299,33 +5906-1,Ruler of the Jungle,1999,299,23 +5909-1,Treasure Raiders set with Mummy Storage Container,1998,297,196 +5911-1,Johnny Thunder's Plane,2000,298,22 +5912-1,Hydrofoil,2000,298,19 +5913-1,Dr. Lightning's Car,2000,298,21 +5914-1,Baby T-Rex Trap,2000,298,21 +5918-1,Scorpion Tracker,1998,297,35 +5919-1,The Valley of the Kings,1998,297,164 +5920-1,Island Racer,2000,298,50 +5921-1,Research Glider,2000,298,57 +5923-1,Western Picture Frame,2002,477,144 +5924-1,Castle Picture Frame,2002,408,116 +5925-1,Pontoon Plane,1999,299,72 +5928-1,Bi-Wing Baron,1998,297,70 +5929-1,Knight and Castle Building Set,2011,25,145 +5930-1,Road Construction Building Set,2011,26,121 +5932-1,My First LEGO Set,2011,22,227 +5933-1,Airport Building Set,2011,24,309 +5934-1,Dino Explorer,2000,298,90 +5935-1,Island Hopper,2000,298,205 +5936-1,Spider's Secret,1999,299,129 +5938-1,Oasis Ambush,1998,297,82 +5940-1,Doll House,2004,322,207 +5941-1,Riding School,2004,323,176 +5942-1,Pop Studio,2004,322,102 +5943-1,Interior Designer,2004,322,94 +5944-1,Cat Show,2004,322,32 +5945-1,Winnie the Pooh's Picnic,2011,504,13 +5946-1,Tigger's Expedition,2011,504,26 +5948-1,Desert Expedition,1998,297,195 +5950-1,Baby Ankylosaurus (Polybag),2001,386,37 +5951-1,Baby Iguanodon (Polybag),2001,386,23 +5952-1,Baby Brachiosaurus (Polybag),2001,386,31 +5953-1,Baby Dimetrodon (Polybag),2001,386,20 +5955-1,All Terrain Trapper,2000,298,191 +5956-1,Expedition Balloon,1999,299,173 +5958-1,Mummy's Tomb,1998,297,258 +5960-1,The Mermaid Castle,2005,319,231 +5961-1,Snow Queen,2005,319,55 +5962-1,The Tinderbox,2005,319,84 +5963-1,The Princess and the Pea,2005,319,50 +5964-1,Thumbelina,2005,319,45 +5965-1,Exo-Suit Robot,2006,389,24 +5966-1,Glider,2006,389,22 +5967-1,Takeshi Walker 2,2006,389,22 +5969-1,Squidman Escape,2009,141,41 +5970-1,Freeze Ray Frenzy,2009,141,79 +5971-1,Gold Heist,2009,141,204 +5972-1,Space Truck Getaway [Container Heist],2009,141,270 +5973-1,Hyperspeed Pursuit,2009,141,455 +5974-1,Galactic Enforcer,2009,141,824 +5975-1,T-Rex Transport,2000,298,323 +5976-1,River Expedition,1999,299,318 +5977-1,Bears on the Beach,2001,323,17 +5978-1,Sphinx Secret Surprise,1998,297,353 +5979-1,Max Security Transport,2009,141,315 +5980-1,Squidman's Pitstop - Limited Edition,2009,141,375 +5981-1,Raid VPR,2010,141,68 +5982-1,Smash 'n' Grab,2010,141,187 +5983-1,SP Undercover Cruiser,2010,141,308 +5984-1,Lunar Limo,2010,141,378 +5985-1,Space Police Central,2010,141,629 +5986-1,Amazon Ancient Ruins,1999,299,463 +5987-1,Dino Research Compound,2000,298,618 +5988-1,Pharaoh's Forbidden Ruins,1998,297,720 +599-1,Super Basic Set,1982,469,744 +5994-1,Catapult,2005,198,27 +5998-1,Vladek,2005,198,6 +5999-1,Jayko,2005,198,6 +60000-1,Fire Motorcycle,2013,58,39 +6000-1,Idea Book 6000,1980,497,2 +60001-1,Fire Rescue,2013,58,79 +60002-1,Fire Truck,2013,58,208 +60003-1,Fire Emergency,2013,58,300 +60004-1,Fire Station,2013,58,750 +60005-1,Fire Boat,2013,58,221 +60006-1,Police ATV,2013,61,51 +60007-1,High Speed Chase,2013,61,283 +60008-1,Museum Break-in,2013,61,562 +60009-1,Helicopter Arrest,2013,61,349 +600-1,Ambulance,1970,420,21 +60010-1,Fire Helicopter,2013,58,224 +6001095-1,Hulk,2012,487,4 +60011-1,Surfer Rescue,2013,55,31 +60012-1,Coast Guard 4 x 4,2013,55,127 +60013-1,Coast Guard Helicopter,2013,55,232 +60014-1,Coast Guard Patrol,2013,55,455 +60015-1,Coast Guard Plane,2013,55,279 +60016-1,Tanker Truck,2013,63,190 +60017-1,Flatbed Truck,2013,63,211 +60018-1,Cement Mixer,2013,56,220 +60019-1,Stunt Plane,2013,53,139 +600-2,Police Patrol,1978,80,23 +60020-1,Cargo Truck,2013,54,319 +6002-1,Town Figures,1983,84,20 +60021-1,Cargo Heliplane,2013,53,388 +6002-2,Castle Figures,1983,189,22 +60022-1,Cargo Terminal,2013,53,649 +60023-1,City Starter Set,2013,52,267 +60024-1,"Advent Calendar 2013, City",2013,208,24 +60024-10,"Advent Calendar 2013, City (Day 9)",2013,220,4 +60024-11,"Advent Calendar 2013, City (Day 10)",2013,220,8 +60024-12,"Advent Calendar 2013, City (Day 11)",2013,220,15 +60024-13,"Advent Calendar 2013, City (Day 12)",2013,220,21 +60024-14,"60024 Advent Calendar 2013, City (Day 13)",2013,220,6 +60024-15,"60024 Advent Calendar 2013, City (Day 14)",2013,220,16 +60024-16,"60024 Advent Calendar 2013, City (Day 15)",2013,220,12 +60024-17,"60024 Advent Calendar 2013, City (Day 16)",2013,220,13 +60024-18,"60024 Advent Calendar 2013, City (Day 17)",2013,220,8 +60024-19,"60024 Advent Calendar 2013, City (Day 18)",2013,220,7 +60024-2,"Advent Calendar 2013, City (Day 1)",2013,220,5 +60024-20,"60024 Advent Calendar 2013, City (Day 19)",2013,220,10 +60024-21,"60024 Advent Calendar 2013, City (Day 20)",2013,220,10 +60024-22,"60024 Advent Calendar 2013, City (Day 21)",2013,220,19 +60024-23,"60024 Advent Calendar 2013, City (Day 22)",2013,220,15 +60024-24,"60024 Advent Calendar 2013, City (Day 23)",2013,220,18 +60024-25,"60024 Advent Calendar 2013, City (Day 24) Santa",2013,220,6 +60024-3,"Advent Calendar 2013, City (Day 2)",2013,220,11 +60024-4,"Advent Calendar 2013, City (Day 3)",2013,220,3 +60024-5,"Advent Calendar 2013, City (Day 4)",2013,220,6 +60024-6,"Advent Calendar 2013, City (Day 5)",2013,220,8 +60024-7,"Advent Calendar 2013, City (Day 6)",2013,220,6 +60024-8,"Advent Calendar 2013, City (Day 7)",2013,220,9 +60024-9,"Advent Calendar 2013, City (Day 8)",2013,220,8 +60025-1,Grand Prix Truck,2013,52,322 +60026-1,Town Square,2013,63,916 +60027-1,Monster Truck Transporter,2013,52,306 +60031-1,City Corner {re-issue from set 7641-1},2013,63,478 +60032-1,Arctic Snowmobile,2014,65,44 +60033-1,Arctic Ice Crawler,2014,65,112 +60034-1,Arctic Helicrane,2014,65,262 +60035-1,Arctic Outpost,2014,65,373 +60036-1,Arctic Base Camp,2014,65,731 +6004-1,Crossbow Cart,1997,195,21 +60041-1,Crook Pursuit,2014,61,38 +60042-1,High Speed Police Chase,2014,61,109 +60043-1,Prisoner Transporter,2014,61,196 +60044-1,Mobile Police Unit,2014,61,374 +60045-1,Police Patrol,2014,61,407 +60046-1,Helicopter Surveillance,2014,61,526 +60047-1,Police Station,2014,61,852 +60048-1,Police Dog Unit,2014,61,248 +60049-1,Helicopter Transporter,2014,61,381 +60050-1,Train Station,2014,66,422 +60051-1,High-Speed Passenger Train,2014,66,608 +6005188-1,Darth Maul,2012,166,8 +60052-1,Cargo Train,2014,66,887 +60053-1,Race Car,2014,52,99 +60054-1,Light Repair Truck,2014,52,94 +60055-1,Monster Truck,2014,52,77 +60056-1,Tow Truck,2014,52,226 +60057-1,Camper Van,2014,52,194 +60058-1,SUV with Watercraft,2014,52,218 +60059-1,Logging Truck,2014,52,227 +60060-1,Auto Transporter,2014,52,350 +60061-1,Airport Fire Truck,2014,52,325 +6006139-1,Best Friends Promotional Brick Set,2012,494,2 +60062-1,Arctic Icebreaker,2014,65,712 +60063-1,Advent Calendar 2014 City,2014,208,24 +60063-10,Advent Calendar 2014 City (Day 9) Handcart with Bread,2014,220,6 +60063-11,Advent Calendar 2014 City (Day 10) Small Catapult,2014,220,7 +60063-12,Advent Calendar 2014 City (Day 11) Policeman with Megaphone and Sheet Music,2014,220,6 +60063-13,Advent Calendar 2014 City (Day 12) Duck with Remote Control,2014,220,10 +60063-14,Advent Calendar 2014 City (Day 13) Burglar with Bag and Flashlight,2014,220,8 +60063-15,Advent Calendar 2014 City (Day 14) Sled,2014,220,7 +60063-16,Advent Calendar 2014 City (Day 15) Dog with Bone and Food Dish,2014,220,3 +60063-17,Advent Calendar 2014 City (Day 16) Santa's Snowmobile,2014,220,13 +60063-18,Advent Calendar 2014 City (Day 17) Santa's Sled with Box,2014,220,11 +60063-19,Advent Calendar 2014 City (Day 18) Policeman with Cup and Handcuffs,2014,220,6 +60063-2,Advent Calendar 2014 City (Day 1) Boy Posting Christmas Mail,2014,220,5 +60063-20,Advent Calendar 2014 City (Day 19) Turkey Dinner,2014,220,11 +60063-21,"Advent Calendar 2014 City (Day 20) Axe, Shovel and Logs",2014,220,5 +60063-22,Advent Calendar 2014 City (Day 21) Christmas Present and Stocking,2014,220,14 +60063-23,Advent Calendar 2014 City (Day 22) Christmas Tree,2014,220,21 +60063-24,Advent Calendar 2014 City (Day 23) Tricycle,2014,220,14 +60063-25,Advent Calendar 2014 City (Day 24) Santa with Bag and Cookie,2014,220,7 +60063-3,Advent Calendar 2014 City (Day 2) Mailbox with Green Frog,2014,220,8 +60063-4,Advent Calendar 2014 City (Day 3) Snowman,2014,220,5 +60063-5,Advent Calendar 2014 City (Day 4) Pie Stall,2014,220,6 +60063-6,Advent Calendar 2014 City (Day 5) Girl with Croissant,2014,220,5 +60063-7,Advent Calendar 2014 City (Day 6) Fruit Stall,2014,220,16 +60063-8,Advent Calendar 2014 City (Day 7) Little Shop,2014,220,18 +60063-9,Advent Calendar 2014 City (Day 8) Girl on Ice Skates,2014,220,6 +60064-1,Arctic Supply Plane,2014,65,372 +60065-1,ATV Patrol,2015,61,57 +60066-1,Swamp Police Starter Set,2015,61,78 +60067-1,Helicopter Pursuit,2015,61,252 +60068-1,Crooks’ Hideout,2015,61,468 +60069-1,Swamp Police Station,2015,61,706 +60070-1,Water Plane Chase,2015,61,261 +6007-1,Bat Lord,1997,195,16 +60071-1,Hovercraft Arrest,2015,61,328 +60072-1,Demolition Starter Set,2015,56,85 +60073-1,Service Truck,2015,56,232 +60074-1,Bulldozer,2015,56,383 +60075-1,Excavator and Truck,2015,56,310 +60076-1,Demolition Site,2015,56,774 +60077-1,Space Starter Set,2015,93,107 +60078-1,Utility Shuttle,2015,93,154 +60079-1,Training Jet Transporter,2015,93,448 +60080-1,Spaceport,2015,93,584 +6008-1,Royal King,1995,201,12 +60081-1,Pickup Tow Truck,2015,63,209 +60082-1,Dune Buggy Trailer,2015,64,221 +60083-1,Snowplow Truck,2015,63,195 +60084-1,Racing Bike Transporter,2015,63,177 +60085-1,4x4 with Powerboat,2015,59,299 +60086-1,City Starter Set,2015,52,238 +60088-1,Fire Starter Set,2015,58,92 +60090-1,Deep Sea Scuba Scooter,2015,86,42 +6009-1,Black Knight,1992,188,24 +60091-1,Deep Sea Starter Set,2015,86,90 +60092-1,Deep Sea Submarine,2015,86,273 +60093-1,Deep Sea Helicopter,2015,86,386 +60095-1,Deep Sea Exploration Vessel,2015,86,715 +60096-1,Deep Sea Operation Base,2015,86,905 +60097-1,City Square,2015,63,1678 +60098-1,Heavy-Haul Train,2015,66,982 +60099-1,LEGO® City Advent Calendar 2015,2015,208,278 +60100-1,Airport Starter Set,2016,53,81 +6010-1,Supply Wagon,1984,199,36 +60101-1,Airport Cargo Plane,2016,53,156 +60102-1,Airport VIP Service,2016,53,364 +60103-1,Airport Air Show,2016,53,677 +60104-1,Airport Passenger Terminal,2016,53,692 +60105-1,Fire ATV,2016,58,64 +60106-1,Fire Starter Set,2016,58,90 +60107-1,Fire Ladder Truck,2016,58,213 +60108-1,Fire Response Unit,2016,58,256 +60109-1,Fire Boat,2016,58,411 +601-1,Shell Gas Pump,1978,76,12 +60110-1,Fire Station,2016,58,918 +6011-1,Black Knight's Treasure,1985,187,27 +60111-1,Fire Utility Truck,2016,58,367 +60112-1,Fire Engine,2016,58,375 +60113-1,Rally Car,2016,63,104 +60114-1,Race Boat,2016,52,94 +60115-1,4 x 4 Off Roader,2016,64,184 +60116-1,Ambulance Plane,2016,60,183 +60117-1,Van & Caravan,2016,63,250 +60118-1,Garbage Truck,2016,52,247 +60119-1,Ferry,2016,59,301 +601-2,Tow Truck,1970,397,21 +60120-1,Volcano Starter Set,2016,52,83 +6012-1,Siege Cart,1986,199,54 +60121-1,Volcano Exploration Truck,2016,52,174 +60122-1,Volcano Crawler,2016,52,323 +60123-1,Volcano Supply Helicopter,2016,52,329 +60124-1,Volcano Exploration Base,2016,52,823 +60125-1,Volcano Heavy-Lift Helicopter,2016,52,1273 +60126-1,Tire Escape,2016,61,47 +60127-1,Prison Island Starter Set,2016,61,92 +60128-1,Police Pursuit,2016,61,184 +60129-1,Police Patrol Boat,2016,61,200 +60130-1,Prison Island,2016,61,753 +6013-1,Samurai Swordsman,1998,434,13 +60131-1,Crooks Island,2016,61,243 +60132-1,Service Station,2016,63,513 +60133-1,City Advent Calendar 2016,2016,208,290 +60134-1,Fun in the park - City People Pack,2016,52,160 +60135-1,ATV Arrest,2017,61,47 +60136-1,Police Starter Set,2017,61,80 +60137-1,Tow Truck Trouble,2017,61,144 +60138-1,High-speed Chase,2017,61,297 +60139-1,Mobile Command Center,2017,61,373 +60140-1,Bulldozer Break-In,2017,61,558 +60141-1,Police Station,2017,80,893 +60142-1,Money Transporter,2017,61,137 +60143-1,Auto Transport Heist,2017,61,402 +60144-1,Race Plane,2017,53,88 +60145-1,Buggy,2017,63,80 +60146-1,Stunt Truck,2017,52,90 +60147-1,Fishing Boat,2017,52,125 +60148-1,ATV Race Team,2017,63,238 +60149-1,4x4 with Catamaran,2017,52,197 +60150-1,Pizza Van,2017,63,249 +60151-1,Dragster Transporter,2017,52,334 +60152-1,Sweeper & Excavator,2017,52,298 +60159-1,Jungle Halftrack Mission,2017,614,378 +60160-1,Jungle Mobile Lab,2017,614,423 +6016-1,Knights' Arsenal,1987,199,37 +6017-1,King's Oarsmen,1987,199,45 +6018031-1,Master Builder Academy: Kits 7-9 Subscription,2012,432,0 +6018-1,Battle Dragon,1990,188,54 +6020-1,Magic Shop,1993,186,47 +602-1,Fire Chief's Car,1978,74,24 +6021-1,Jousting Knights,1984,199,37 +602-2,Fire Truck,1970,417,30 +6022-1,Horse Cart,1984,199,43 +6023-1,Maiden's Cart,1986,199,45 +6024-1,Bandit Ambush,1996,191,60 +6026-1,King Leo,2000,197,21 +6027-1,Bat Lord's Catapult,1997,195,54 +6028-1,Treasure Cart,1998,195,23 +6029-1,Treasure Guard,1998,195,23 +6030-1,Catapult,1984,187,83 +603-1,Sidecar,1978,85,26 +6031-1,Fright Force,1998,195,28 +6032-1,Catapult Crusher,2000,197,56 +603-3,Vintage Car,1970,397,36 +6033-1,Treasure Transport,1998,434,59 +6034-1,Black Monarch's Ghost,1990,188,46 +6035-1,Castle Guard,1987,187,52 +6036-1,Skeleton Surprise,1995,201,74 +6037-1,Witch's Windship,1997,195,60 +6038-1,Wolfpack Renegades,1992,203,98 +6039-1,Twin-Arm Launcher,1988,199,77 +6040-1,Blacksmith Shop,1984,199,93 +604-1,Shell Service Car,1978,76,21 +6041-1,Armor Shop,1986,199,113 +604-2,Excavator,1971,416,28 +6042-1,Dungeon Hunters,1990,190,111 +6043-1,Dragon Defender,1993,186,156 +6043173-1,Friends Baking Set,2013,494,20 +6044-1,King's Carriage,1995,201,127 +6045-1,Ninja Surprise,1998,434,112 +6046-1,Hemlock Stronghold,1996,191,220 +6047-1,Traitor Transport,1997,195,145 +6048-1,Majisto's Magical Workshop,1993,186,188 +6049-1,Viking Voyager,1987,199,101 +605-1,Street Sweeper,1978,85,18 +6051-1,Play with Letters,2011,504,62 +605-2,Taxi,1971,397,18 +6053-1,My First LEGO Town,2011,37,709 +6054-1,Forestmen's Hideout,1988,194,201 +6055-1,Prisoner Convoy,1985,199,116 +6056-1,Dragon Wagon,1993,186,109 +6057-1,Sea Serpent,1992,188,128 +6058324-1,Canada 2013 Toys R Us Easter Egg Giveaway,2013,229,62 +6059-1,Knight's Stronghold,1990,188,227 +6060-1,Knight's Challenge,1989,199,168 +606-1,Ambulance,1978,78,25 +6061-1,Siege Tower,1984,199,216 +606-2,Tipper Lorry,1972,416,22 +6062-1,Battering Ram,1987,187,240 +6066-1,Camouflaged Outpost,1987,194,228 +6067-1,Guarded Inn,1986,199,256 +607-1,Mini Loader,1979,72,22 +6071-1,Forestmen's Crossing,1990,194,210 +6073-1,Knight's Castle,1984,187,416 +6074-1,Black Falcon's Fortress,1986,187,430 +6075-1,Wolfpack Tower,1992,203,239 +6075-2,Castle,1981,189,774 +6076-1,Dark Dragon's Den,1993,186,219 +6077-1,Knight's Procession,1981,189,49 +6077-2,Forestmen's River Fortress,1989,194,360 +6078-1,Royal Drawbridge,1995,201,259 +6079-1,Dark Forest Fortress,1996,191,469 +6080-1,King's Castle,1984,199,679 +608-1,Kiosk,1971,413,33 +6081-1,King's Mountain Fortress,1990,190,438 +608-2,Taxi,1979,85,25 +6082-1,Fire Breathing Fortress,1993,186,406 +6083-1,Knight's Tournament,1981,189,210 +6083-2,Samurai Stronghold,1998,434,198 +6085-1,Black Monarch's Castle,1988,188,688 +6086-1,Black Knight's Castle,1992,188,590 +6087-1,Witch's Magic Manor,1997,195,254 +6088-1,Robber's Retreat,1998,434,281 +6089-1,Stone Tower Bridge,1998,434,410 +6090-1,Royal Knight's Castle,1995,201,764 +609-1,Aeroplane,1972,412,28 +6091-1,King Leo's Castle,2000,197,539 +6092-1,50 Jahre In Deutschland,2006,37,706 +6092-2,LEGO Special Edition Creative Building Tub,2006,37,706 +6093-1,Flying Ninja Fortress,1998,434,698 +6094-1,Guarded Treasury,2000,197,103 +6095-1,Royal Joust,2000,197,103 +6096-1,Bull's Attack,2000,197,315 +6097-1,Night Lord's Castle,1997,195,607 +6098-1,King Leo's Castle,2000,197,538 +6099-1,Traitor Transport (with Cave),1997,195,145 +6100-1,Aquashark Dart,1998,311,24 +610-1,Vintage Car,1973,397,39 +610-2,Rescue Helicopter,1987,466,35 +6102-1,Castle Mini Figures,1985,202,36 +6103-1,Castle Mini Figures,1988,202,38 +6103-2,Knights,1984,202,25 +6104-1,Aquacessories,1996,314,27 +6105-1,Medieval Knights,1993,202,37 +6107-1,Recon Ray,1998,313,20 +6109-1,"Sea Creeper (with Stingray Baseplate, Raised)",1998,313,79 +6110-1,Solo Sub,1998,312,25 +611-1,Police Car,1973,421,19 +6111-1,Street Chase,2006,120,193 +611-2,Air Canada Jet Plane,1988,466,89 +6112-1,World of Bricks,2006,48,1004 +6114-1,200 + 40 Special Elements,2007,48,242 +6115-1,Shark Scout,1995,311,28 +6116-1,Box of Bricks,2007,48,604 +6117-1,Doors and Windows,2008,48,100 +6118-1,Wheels,2008,48,106 +6119-1,Roof Tiles,2008,48,150 +612-1,Tipper Truck,1974,416,23 +6125-1,Sea Sprint 9,1995,308,32 +6126-1,Good Guy 2008,2008,324,26 +6127-1,Bad Guy 2008,2008,324,29 +6128-1,Function 2008,2008,324,22 +6130-1,DUPLO Build and Play,2011,504,100 +613-1,Biplane,1974,412,18 +6131-1,Build and Play,2011,37,646 +6132-1,Red,2012,506,15 +6133-1,Race Day,2012,506,30 +6134-1,Siddeley Saves the Day,2012,506,38 +6135-1,Spy Shark,1996,311,60 +6136-1,My First Zoo,2011,504,60 +6137-1,My First LEGO Duplo Supermarket,2011,504,38 +6138-1,My First Fire Station,2011,504,60 +6140-1,Crab,1998,313,78 +614-1,Excavator,1974,416,31 +6143-1,Race Team,2012,504,34 +6144-1,Zoo Train,2012,504,12 +6145-1,Crystal Crawler,1996,308,96 +6146-1,Pick-up Truck,2012,504,17 +6150-1,Crystal Detector,1998,312,105 +6151-1,Sleeping Beauty's Chamber,2012,504,16 +615-2,Fork Lift with Driver,1975,416,21 +6152-1,Snow White's Cottage,2012,504,28 +6153-1,Cinderella's Carriage,2012,504,20 +6154-1,Cinderella's Castle,2012,504,77 +6155-1,Deep Sea Predator,1995,311,104 +6156-1,Photo Safari,2012,504,68 +6157-1,The Big Zoo,2012,504,147 +6158-1,Duplo Animal Clinic,2012,504,62 +6159-1,Crystal Detector,1998,312,105 +6160-1,Sea Scorpion,1998,313,305 +616-1,Cargo Ship,1976,419,31 +6161-1,Brick Box,2007,37,221 +6162-1,A World of LEGO Mosaic 4 in 1,2007,277,286 +6163-1,A World of LEGO Mosaic 9 in 1,2007,277,598 +6164-1,LEGO Rescue Building Set,2007,37,519 +6166-1,Large Brick Box,2007,37,406 +6167-1,Deluxe Brick Box,2006,37,693 +6168-1,Fire Station,2012,504,64 +6169-1,Fire Chief,2012,504,6 +617-1,Cowboys,1976,397,41 +6171-1,My First Gas Station,2012,504,47 +6173-1,Panda,2012,504,7 +6175-1,Crystal Explorer Sub,1995,308,167 +6176-1,Basic Bricks - Deluxe,2008,505,80 +6176782-1,Escape the Space Slug,2016,598,161 +6177-1,LEGO Basic Bricks Deluxe,2008,48,650 +6180-1,Hydro Search Sub,1998,312,297 +618-1,Police Helicopter,1977,421,38 +6186-1,Build Your Own LEGO Harbor,2008,37,252 +6187-1,Road Construction Set,2008,22,296 +6190-1,Shark's Crystal Cave,1996,311,259 +619-1,Rally Car,1977,397,22 +6191-1,Fire Fighter Building Set,2009,37,117 +6192-1,Pirates Building Set,2009,37,150 +6193-1,Castle Building Set,2009,37,137 +6194-1,My Own LEGO Town,2009,37,515 +6195-1,Neptune Discovery Lab,1995,308,509 +6198-1,Stingray Stormer,1998,313,413 +6199-1,Hydro Crystalization Station,1998,312,485 +6200-1,Pirates Double Pack,1989,148,2 +6200-2,Evo,2012,401,36 +620-1,Fireman's Car,1978,74,32 +6201-1,Toxic Reapa,2012,403,42 +620-2,Fire Truck,1970,417,40 +6202-2,Rocka,2012,401,55 +620-3,Blue Building Plate 32 x 32,2010,48,1 +6203-1,Black Phantom,2012,403,124 +6204-1,Buccaneers,1997,148,42 +6205-1,V-wing Fighter,2006,168,118 +6206-1,TIE Interceptor,2006,169,212 +6207-1,A-wing Fighter,2006,169,193 +6208-1,B-wing Fighter,2006,169,439 +6209-1,Slave I (2nd edition),2006,169,537 +6210-1,Jabba's Sail Barge,2006,169,781 +621-1,Police Car,1978,80,34 +6211-1,Imperial Star Destroyer,2006,169,1388 +621-2,Shell Tanker Truck,1970,418,43 +6212-1,X-wing Fighter,2006,169,437 +6213-1,Replacement Gearbox for Electric Motor,1985,456,1 +6216-1,Jawblade,2012,403,45 +6217-1,Surge,2012,401,39 +6218-1,Splitface,2012,403,50 +622-1,Tipper Truck,1978,72,32 +6221-1,Nex,2012,401,39 +622-2,Baggage Carts,1970,412,45 +6222-1,Core Hunter,2012,403,51 +6223-1,Bulk,2012,401,61 +6227-1,Breez,2012,401,55 +6228-1,Thornraxx,2012,403,44 +6229-1,XT4,2012,403,39 +6230-1,Stormer XL,2012,401,89 +623-1,Medic's Car,1978,78,33 +6231-1,Speeda Demon,2012,403,192 +623-2,White Car and Camper,1970,397,38 +6232-1,Skeleton Crew,1996,148,31 +6234-1,Renegade's Raft,1991,148,39 +6235-1,Buried Treasure,1989,148,27 +6236-1,King Kahuka,1994,152,49 +6237-1,Pirates' Plunder,1993,148,28 +6239-1,Cannon Battle,2009,153,45 +6240-1,Kraken Attackin',2009,153,78 +624-1,"Basic Motor, 9V",1996,473,27 +6241-1,Loot Island,2009,153,144 +6242-1,Soldiers' Fort,2009,153,370 +6243-1,Brickbeard's Bounty,2009,153,595 +6244-1,Armada Sentry,1996,149,74 +6245-1,Harbor Sentry,1989,151,26 +6246-1,Crocodile Cage,1994,152,61 +6247-1,Bounty Boat,1992,148,40 +6248-1,Volcano Island,1996,148,123 +6249-1,Pirates Ambush,1997,148,159 +6250-1,Cross Bone Clipper,1997,148,157 +625-1,Tractor,1978,72,31 +6251-1,Pirate Mini Figures,1989,148,40 +6252-1,Sea Mates,1993,148,36 +6253-1,Shipwreck Hideout,2009,153,313 +6254-1,Rocky Reef,1995,148,108 +6255-1,Pirate Comic,1989,148,12 +6256-1,Islander Catamaran,1994,152,64 +6257-1,Castaway's Raft,1989,148,54 +6258-1,Smuggler's Shanty,1992,148,75 +6259-1,Broadside's Brig,1991,151,68 +6260-1,Shipwreck Island,1989,148,78 +626-1,"Baseplate, Green",1996,473,1 +6261-1,Raft Raiders,1992,148,86 +626-2,Red Cross Helicopter,1978,78,36 +6262-1,King Kahuka's Throne,1994,152,155 +6263-1,Imperial Outpost,1995,147,219 +6264-1,Forbidden Cove,1994,152,222 +6265-1,Sabre Island,1989,151,97 +6266-1,Cannon Cove,1993,147,106 +6267-1,Lagoon Lock-Up,1991,151,194 +6268-1,Renegade Runner,1993,148,187 +6270-1,Forbidden Island,1989,148,190 +627-1,"Baseplate, Blue",1996,473,1 +6271-1,Imperial Flagship,1992,147,320 +6271-2,Imperial Flagship with Free Storage Case,1992,150,1 +6273-1,Rock Island Refuge,1991,148,388 +6274-1,Caribbean Clipper,1989,151,386 +6276-1,Eldorado Fortress,1989,151,515 +6277-1,Imperial Trading Post,1992,147,622 +6278-1,Enchanted Island,1994,152,439 +6279-1,Skull Island,1995,148,386 +6280-1,Armada Flagship,1996,149,292 +628-1,X-Large Building Plate (Light Gray),1996,473,1 +6281-1,Pirates Perilous Pitfall,1997,148,404 +628-2,Police Helicopter,1977,421,38 +6282-1,Stringer,2012,401,42 +628-3,X-Large Gray Baseplate (Lt Bluish Gray),2003,48,1 +6283-1,Voltix,2012,403,61 +6285-1,Black Seas Barracuda,1989,148,915 +6286-1,Skull's Eye Schooner,1993,148,921 +6289-1,Red Beard Runner,1996,148,711 +6290-1,Red Beard Runner,2001,148,712 +629-1,Three Building Plates,1996,473,3 +6291-1,Armada Flagship,2001,149,291 +6292-1,Enchanted Island,2001,152,445 +6293-1,Furno,2012,401,56 +6296-1,Shipwreck Island,1996,148,226 +6299-1,Advent Calendar 2009 Pirates,2009,215,24 +6299-10,Advent Calendar 2009 Pirates (Day 9) - Plants and Crab,2009,224,7 +6299-11,Advent Calendar 2009 Pirates (Day 10) - Barrel with Tools,2009,224,3 +6299-12,Advent Calendar 2009 Pirates (Day 11) - Castaway,2009,224,7 +6299-13,Advent Calendar 2009 Pirates (Day 12) - Fish over Fire,2009,224,9 +6299-14,Advent Calendar 2009 Pirates (Day 13) - Monkey,2009,224,2 +6299-15,Advent Calendar 2009 Pirates (Day 14) - Mermaid,2009,224,4 +6299-16,Advent Calendar 2009 Pirates (Day 15) - Clam and Plant,2009,224,6 +6299-17,Advent Calendar 2009 Pirates (Day 16) - Table with Food and Rat,2009,224,8 +6299-18,Advent Calendar 2009 Pirates (Day 17) - Imperial Soldier II,2009,224,6 +6299-19,Advent Calendar 2009 Pirates (Day 18) - Weapon Stand,2009,224,9 +6299-2,Advent Calendar 2009 Pirates (Day 1) - Captain Brickbeard,2009,224,6 +6299-20,Advent Calendar 2009 Pirates (Day 19) - Pirate,2009,224,4 +6299-21,Advent Calendar 2009 Pirates (Day 20) - Barrel and Paddle,2009,224,2 +6299-22,Advent Calendar 2009 Pirates (Day 21) - Sawfish,2009,224,2 +6299-23,Advent Calendar 2009 Pirates (Day 22) - Skeleton and Snake,2009,224,7 +6299-24,Advent Calendar 2009 Pirates (Day 23) - Brick Arch with Fire and Skull,2009,224,12 +6299-25,Advent Calendar 2009 Pirates (Day 24) - Treasure Chest with Gems,2009,224,8 +6299-3,Advent Calendar 2009 Pirates (Day 2) - Table with Lamp and Map,2009,224,9 +6299-4,Advent Calendar 2009 Pirates (Day 3) - Parrot on Perch,2009,224,7 +6299-5,Advent Calendar 2009 Pirates (Day 4) - Imperial Soldier II Officer,2009,224,6 +6299-6,Advent Calendar 2009 Pirates (Day 5) - Cannon,2009,224,8 +6299-7,Advent Calendar 2009 Pirates (Day 6) - Crocodile,2009,224,3 +6299-8,Advent Calendar 2009 Pirates (Day 7) - Pirate Female,2009,224,5 +6299-9,Advent Calendar 2009 Pirates (Day 8) - Raft with Flagpole,2009,224,8 +6-3,Basic Set,1973,469,338 +630-1,Brick Separator,1996,443,1 +6301-1,Town Mini-Figures,1986,84,34 +6302-1,Mini-Figure Set,1982,84,31 +630-3,Brick Separator Orange,2012,443,1 +6304-1,Cross Roads Plates,1980,84,2 +6305-1,Trees and Flowers,1980,84,24 +6306-1,Road Signs,1980,84,12 +6307-1,Firemen,1983,84,22 +6308-1,Policemen,1982,84,20 +6309-1,Town Mini-Figures,1988,84,41 +6310-1,T-Road Plates,1986,84,2 +631-1,Doors and Windows,1996,473,52 +6311-1,Curved Road Plates,1986,84,2 +6312-1,Straight Road Plates,1986,84,2 +6313-1,Cross-Road Plates,1986,84,2 +6314-1,City People,1992,84,36 +6315-1,Road Signs,1988,84,11 +6316-1,Flags and Fences,1988,84,38 +6317-1,Trees and Flowers,1988,84,48 +6318-1,"Flowers, Trees and Fences",1996,84,73 +6319-1,Trees and Fences,1993,84,45 +6320-1,T-Road Plates,1997,102,2 +632-1,Wheels and Tires,1996,473,60 +6321-1,Curved Road Plates,1997,102,2 +6322-1,Straight Road Plates,1997,102,2 +6323-1,Cross Road Plates,1997,102,2 +6324-1,Chopper Cop,1998,100,24 +6325-1,Package Pick-Up,1998,95,29 +6326-1,Town Folks,1998,102,40 +6327-1,Turbo Champs,1998,101,48 +6328-1,Helicopter Transport,1998,100,102 +6329-1,Truck Stop,1998,103,139 +6330-1,Cargo Center,1998,95,246 +633-1,Roof Tiles,1996,473,50 +6331-1,Patriot Jet,1996,68,166 +6332-1,Command Post Central,1998,100,277 +6333-1,Race and Chase,1998,101,50 +6334-1,Wave Jump Racers,1996,82,180 +6335-1,Indy Transport,1996,82,402 +6336-1,Launch Response Unit,1995,88,181 +6337-1,Fast Track Finish,1996,82,339 +6338-1,Hurricane Harbor,1995,71,364 +6339-1,Shuttle Launch Pad,1995,88,564 +6340-1,Hook & Ladder,1994,74,177 +634-1,Extra Bricks in Red,1996,473,62 +6341-1,Gas N' Go Flyer,1994,68,106 +6342-1,Beach Rescue Chopper,1993,71,149 +6344-1,Jet Speed Justice,1993,80,158 +6345-1,Aerial Acrobats,1993,68,350 +6346-1,Shuttle Launching Crew,1992,68,413 +6347-1,Monorail Accessory Track,1991,84,54 +6348-1,Surveillance Squad,1994,80,318 +6349-1,Vacation House,1988,69,215 +6350-1,Pizza To Go,1994,75,150 +635-1,Extra Bricks in White,1996,473,62 +6351-1,Surf N' Sail Camper,1992,83,190 +6352-1,Cargomaster Crane,1991,72,141 +6353-1,Coastal Cutter,1991,71,184 +6354-1,Pursuit Squad,1990,80,175 +6355-1,Derby Trotter,1989,83,142 +6356-1,Med-Star Rescue Plane,1988,78,160 +6357-1,Stunt 'Copter N' Truck,1988,85,177 +6358-1,Snorkel Squad,1987,74,154 +6359-1,Horse Trailer,1986,73,144 +6360-1,Weekend Cottage,1986,69,117 +636-1,Pullback Motor,1996,473,14 +6361-1,Mobile Crane,1986,72,163 +6362-1,Post Office,1982,81,135 +6363-1,Auto Service Station,1980,85,140 +6364-1,Paramedic Unit,1980,78,139 +6365-1,Summer Cottage,1981,69,152 +6366-1,Fire & Rescue Squad,1984,74,117 +6367-1,Truck,1984,70,154 +6368-1,Jet Airliner,1985,68,137 +6369-1,Garage,1985,85,134 +6370-1,Weekend Home,1985,69,186 +637-1,Plastic Playtable,1996,473,3 +6371-1,Shell Service Station,1983,76,266 +6372-1,Town House,1982,69,234 +6373-1,Motorcycle Shop,1984,85,186 +6374-1,Holiday Home,1983,69,265 +6375-1,Trans Air Carrier,1990,70,213 +6375-2,Exxon Gas Station,1980,76,270 +6376-1,Breezeway Cafe (Breezeway Café),1990,75,194 +6377-1,Delivery Center,1985,70,305 +6378-1,Shell Service Station,1986,76,290 +6379-1,Riding Stable,1986,69,281 +6380-1,Emergency Treatment Center,1987,78,312 +638-1,"Lots of Extra Basic Bricks, 3+",1996,473,404 +6381-1,Motor Speedway,1987,82,206 +6382-1,Fire Station,1981,74,394 +6383-1,Public Works Center,1981,72,420 +6384-1,Police Station,1983,80,398 +6385-1,Fire House-I,1985,74,416 +6386-1,Police Command Base,1986,80,401 +6387-1,Coastal Rescue Base,1989,71,375 +6388-1,Holiday Home with Caravan,1989,69,363 +6389-1,Fire Control Center,1990,74,542 +6390-1,Main Street,1980,85,607 +639-1,"Lots of Extra Basic Bricks, 5+",1997,473,400 +6391-1,Cargo Center,1984,70,565 +6392-1,Airport,1985,68,539 +6393-1,Big Rig Truck Stop,1987,85,634 +6394-1,Metro Park & Service Tower,1988,76,628 +6395-1,Victory Lap Raceway,1988,82,613 +6396-1,International Jetport,1990,68,550 +6397-1,Gas N' Wash Express,1992,76,473 +6398-1,Central Precinct HQ,1993,80,633 +6399-1,Airport Shuttle,1990,68,787 +6-4,4.5V Battery Train Wagon,1977,456,2 +6400-1,Go-Kart,1997,82,23 +640-1,Fire Truck,1971,417,45 +6401-1,Seaside Cabana,1992,90,45 +640-2,Fire Truck and Trailer,1978,74,47 +6402-1,Sidewalk Cafe,1994,90,48 +6403-1,Paradise Playground,1993,90,97 +6404-1,Carriage Ride,1996,90,66 +6405-1,Sunset Stables,1992,90,132 +6406-1,Go-Kart,1997,82,23 +6407-1,Fire Chief,1997,98,26 +6409-1,Island Arcade,1993,90,149 +6410-1,Cabana Beach,1994,90,153 +641-1,Excavator,1978,72,38 +6411-1,Sand Dollar Cafe,1992,90,172 +6414-1,Dolphin Point,1995,90,209 +6415-1,Res-Q Jet-Ski,1998,92,18 +6416-1,Poolside Paradise,1992,90,237 +6417-1,Show Jumping Event,1997,90,41 +6418-1,Country Club,1996,90,292 +6419-1,Rolling Acres Ranch,1992,90,364 +6420-1,Mail Carrier,1998,81,14 +642-1,Tow Truck and Car,1978,85,43 +642-2,Double Excavator,1971,416,33 +6422-1,Telephone Repair,1998,103,48 +6423-1,Mini Tow Truck,2000,103,35 +6424-1,Rig Racers,1998,101,107 +6425-1,TV Chopper,1999,103,37 +6426-1,Super Cycle Center,1998,103,145 +6427-1,Road Signs,1999,102,43 +6428-1,Wave Saver,1998,92,18 +6429-1,Blaze Responder,1999,98,46 +6430-1,Night Patroller,1991,80,140 +643-1,Flatbed Truck,1978,85,39 +6431-1,Road Rescue,1998,92,48 +643-2,Mobile Crane,1971,416,35 +6432-1,Speedway Transport,1999,101,139 +6433-1,Coastwatch,1999,100,89 +6434-1,Roadside Repair,1999,103,213 +6435-1,Coast Guard HQ,1999,96,217 +6436-1,Go-Kart,1999,82,22 +6437-1,Beach Buggy,1999,96,28 +6439-1,Mini-Dumper,1999,97,30 +6440-1,Jetport Fire Squad,1991,68,159 +644-1,Double Tanker,1971,418,61 +6441-1,Deep Reef Refuge,1997,86,451 +644-2,Police Mobile Patrol,1978,80,44 +6442-1,Sting Ray Explorer,1997,86,150 +6444-1,Outback Airstrip,1997,89,167 +6445-1,Emergency Evac,1998,92,99 +6446-1,Crane Truck,1999,103,26 +6447-1,Dumper,1999,97,49 +6450-1,Mobile Police Truck,1986,80,83 +645-1,Police Helicopter,1979,80,56 +6451-1,River Response,1998,92,152 +645-2,Milk Float & Trailer,1971,397,57 +6452-1,Mini Rocket Launcher,1999,93,31 +6453-1,Com-Link Cruiser,1999,93,60 +6454-1,Countdown Corner,1999,93,131 +6455-1,Space Simulation Station,1999,93,251 +6456-1,Mission Control,1999,93,499 +6457-1,Astronaut Figure,1999,93,18 +6458-1,Satellite with Astronaut,1999,93,30 +6459-1,Fuel Truck,1999,93,119 +646-1,Auto Service Truck,1979,85,42 +6461-1,Surveillance Chopper,1999,93,30 +646-2,Mobile Site Office,1971,397,51 +6462-1,Aerial Recovery,1998,92,197 +6463-1,Lunar Rover,1999,93,36 +6464-1,Super Rescue Complex,1999,103,360 +6465-1,Space Port Jet,1999,93,65 +6467-1,Power Pitstop,1999,101,71 +6468-1,Tow-n-Go Value Pack,1999,103,50 +6469-1,Space Port Value Pack,1999,93,3 +6470-1,Mini Dump Truck,2000,97,25 +647-1,Truck with Girders,1971,416,51 +6471-1,4WD Police Patrol,2000,100,30 +6472-1,Gas N' Wash Express,2001,76,473 +6473-1,Res-Q Cruiser,1998,92,305 +6474-1,Wheeled Front Shovel,2000,97,49 +6477-1,Firefighter's Lift Truck,2000,98,103 +6478-1,Fire Station,2000,98,224 +6479-1,Emergency Response Center,1998,92,425 +6480-1,Hook and Ladder Truck,1986,74,118 +648-1,Shell Service Station,1971,418,42 +6481-1,Construction Crew,1989,72,170 +6482-1,Rescue Helicopter,1989,78,198 +6483-1,Coastal Patrol,1994,77,245 +6484-1,F1 Hauler,1995,82,280 +6486-1,Fire Engine,1997,98,67 +6487-1,Mountain Rescue,1997,89,68 +6489-1,Seaside Holiday Cottage,1997,90,88 +6490-1,Amazon Crossing,1997,89,120 +649-1,Low-Loader with Excavator,1972,416,36 +6491-1,Rocket Racer,1996,464,58 +6492-1,Hypno Cruiser,1996,464,157 +6493-1,Flying Time Vessel,1996,464,241 +6494-1,Mystic Mountain Time Lab,1996,464,510 +6495-1,Time Tunnelator,1997,464,81 +6496-1,Whirling Time Warper,1997,464,158 +6497-1,Twisted Time Train,1997,464,300 +6498-1,Go-Kart,1999,82,22 +6499-1,Time Tunnelator,1997,464,82 +650-1,Car with Trailer and Racing Car,1972,397,40 +6501-1,Sport Convertible,1987,85,30 +6502-1,Turbo Racer,1987,82,24 +65028-1,Star Wars Co-Pack of 7115 7124 and 7141,2001,166,3 +65030-1,Star Wars Co-Pack of 7104 and 7144,2001,169,2 +6503-1,Sprint Racer,1988,82,32 +65034-1,Star Wars Co-Pack of 7121 and 7161,2001,166,2 +6504-1,Tractor,1988,72,25 +6505-1,Fire Chief's Car,1988,74,29 +6506-1,Precinct Cruiser,1989,80,32 +65062-1,Racers Turbo Pack,2002,113,2 +6507-1,Mini Dumper,1989,72,30 +65071-1,Dual Pack: Lehvak & Pahrak,2002,328,3 +6508-1,Wave Racer,1990,77,37 +65081-1,R2-D2 8009 / C-3PO 8007 Droid Collectors Set,2002,18,3 +6509-1,Red Devil Racer,1991,82,39 +6510-1,Mud Runner,1991,82,34 +65106-1,Episode II Co-Pack (contains 7103 7113),2002,167,2 +65109-1,Pahrak Nuhvok Gahlok Co-Pack,2002,328,3 +651-1,Tow Truck and Car,1972,397,41 +65110-1,Kohrak Lehvak Tahnok Co-Pack,2002,328,3 +6511-1,Rescue Runabout,1992,74,38 +6512-1,Landscape Loader,1992,72,37 +65127-1,Bohrok Co-Pack (contains 8560 8561 8563),2002,328,3 +65128-1,Bohrok Co-Pack (contains 8562 8564 8565),2002,328,3 +6513-1,Glade Runner,1993,77,31 +6514-1,Trail Ranger,1994,83,36 +65145-1,X-wing Fighter / TIE Fighter & Y-wing Collectors Set,2002,169,2 +6515-1,Stunt Copter,1994,68,34 +65153-1,Jango Fett's Slave I (Set 7153) with Carrying Case,2002,167,1 +6516-1,Moon Walker,1995,88,34 +6517-1,Water Jet,1996,77,28 +6518-1,Baja Buggy,1996,71,37 +65182-1,Slammer Stadium,2003,461,25 +65186-1,Bohrok 3-pack (contains 8560 8561 8564),2002,328,3 +6519-1,Turbo Tiger,2000,91,46 +6520-1,Mobile Outpost,2000,51,218 +6521-1,Emergency Repair Truck,1987,85,58 +652-2,Fork Lift Truck and Trailer,1972,416,42 +6522-1,Highway Patrol,1987,80,38 +65221-1,Streetball 2 vs 2 (box with mini basketball),2003,459,2 +65229-1,Rahkshi Co-Pack 1,2003,344,3 +65230-1,Rahkshi Co-Pack 2,2003,344,3 +6523-1,Red Cross,1987,78,51 +6524-1,Blizzard Blazer,1988,85,50 +6525-1,Blaze Commander,1995,74,49 +65258-1,Power Chamber with Gahlok Tahnok Va Pahrak Va and Gahlok Va,2003,324,4 +6526-1,Red Line Racer,1989,82,47 +6527-1,Tipper Truck,1989,72,43 +65277-1,Rahkshi Kaita Za Pack (Includes Turahk Lerahk Kurahk and Tahnok Va),2003,324,4 +6528-1,Sand Storm Racer,1989,82,39 +6529-1,Ultra Light I,1990,68,35 +65295-1,Matoro and Kopeke Twin Pack with Gold Avohkii,2003,335,3 +65296-1,Hewkii and Hahli Twin Pack with Gold Avohkii,2003,335,3 +65297-1,Hafu and Macku Twin Pack with Gold Avohkii,2003,335,3 +6530-1,Sport Coupe,1990,85,43 +653-1,Ambulance and Helicopter,1973,420,36 +6531-1,Flame Chaser,1991,74,56 +6532-1,Diesel Dumper,1991,72,47 +6533-1,Police 4x4,1992,80,62 +65340-1,Dumper and Front End Loader Co-Pack (contains 8451 and 8453),2004,7,2 +6534-1,Beach Bandit,1992,83,44 +6535-1,Dumper,1995,72,42 +6536-1,Aero Hawk,1993,68,48 +65362-1,Jewels-n-Rings Click-N-Store Jewelry Set Co-Pack (7507 with jewelry box),2004,500,2 +65363-1,Jewels-n-Bands Click-N-Store Jewelry Set Co-Pack (7508 with jewelry box),2004,500,2 +65364-1,Jewels-n-Clips Click-N-Store Jewelry Set Co-Pack (7509 with jewelry box),2004,500,2 +6537-1,Hydro Racer,1994,77,50 +6538-1,Rebel Roadster,1994,85,57 +6539-1,Victory Cup Racers,1993,82,459 +6540-1,Pier Police,1991,77,358 +654-1,Crane Lorry,1973,416,33 +6541-1,Intercoastal Seaport,1991,77,552 +6542-1,Launch & Load Seaport,1991,77,1078 +6543-1,Sail N' Fly Marina,1994,77,709 +6544-1,Shuttle Transcon 2,1995,88,346 +6545-1,Search N' Rescue,1996,80,290 +6546-1,Slick Racer,1996,82,39 +65468-1,Toa Metru Twin Pack with Kanoka and Poster,2004,353,3 +6547-1,Fun Fair,1997,90,204 +6548-1,Octan Gas Station,1997,99,127 +6549-1,Roadblock Runners,1997,103,181 +6550-1,Outback Racer,1997,89,48 +655-1,Mobile Hydraulic Lift,1973,416,33 +6551-1,Checkered Flag 500,1992,82,192 +65514-1,Matoran / Vahki Co-Pack 1 (contains 8607 8611 8614 8616 8618),2004,324,5 +65515-1,Matoran / Vahki Co-Pack 2 (contains 8610 8612 8615 8617 8619),2004,324,5 +65518-1,"Spider-Man Co-Pack 1 (4853, 4857)",2004,488,2 +6552-1,Rocky River Retreat,1993,83,241 +65524-1,Hogwarts Express (2nd edition) Co-Pack (contains 10132 4515 4520),2004,250,3 +65527-1,Vladek's Attack,2004,198,2 +6553-1,Crisis News Crew,1997,89,135 +65535-1,X-Pod Play Off Game Pack,2004,478,7 +65537-1,Classic Freight Train,2004,238,0 +6554-1,Blaze Brigade,1997,98,261 +65542-1,Click-N-Store Jewelry Set Co-Pack (7514 with jewelry box),2004,500,2 +65545-1,Ta-Metru Collector's Pack,2004,324,3 +65549-1,Bionicle Bonus Pack (8615 8617 8619 plus three Bionicle Comic books),2004,357,3 +6555-1,Sea Hunter,1997,86,32 +6556-1,Scuba Squad,1997,86,76 +6557-1,Treasure Hunters,1997,86,143 +65572-1,Spider-Man Co-Pack,2005,488,3 +65573-1,Rumble Racers,2005,116,4 +65579-1,Knights' Kingdom Value Pack 8770 and 8771 with Foam Helmet,2004,198,3 +65580-1,Knights' Kingdom Value Pack 8772 and 8774 with Foam Helmet,2004,198,3 +6558-1,Shark Cage Cove,1997,86,196 +6559-1,Deep Sea Bounty,1997,86,359 +6560-1,Diving Expedition Explorer,1997,86,478 +656-1,Car and Caravan,1974,411,49 +6561-1,Hot Rod Club,1994,82,240 +6562-1,Gas Stop Shop,1995,76,225 +6563-1,Gator Landing,1996,83,237 +6564-1,Recycle Truck,1997,103,35 +65642-1,The Grand Tournament Limited Edition Value Pack,2004,198,3 +6565-1,Construction Crew,1997,97,78 +6566-1,Bank,1997,103,106 +6567-1,Speed Splash,1998,87,28 +6568-1,Drag Race Rally,1998,87,291 +6569-1,Polar Scout,2000,51,2 +6570-1,Snowmobile,1998,51,43 +657-1,Executive Jet,1974,412,36 +6571-1,Flame Fighters,1994,74,433 +65716-1,Limited Edition Collector Pack with Vohtarak Sidorak and Life-Size Toa Hordika Mask (8742 8756),2004,324,3 +6572-1,Wind Runners,1998,87,52 +6573-1,Arctic Expedition,2000,51,120 +65743-1,City Construction Value Pack (7246 7242 7248),2005,56,0 +6575-1,Polar Base,2000,51,440 +65757-1,Special Edition Guardian Toa (8762/8763),2005,349,2 +6576-1,Sledge,1998,51,24 +65767-1,Attack from the Sea,2005,198,2 +65768-1,Jayko Value Pack 8783 and 8772 with Sword and Helmet,2005,198,4 +65769-1,Vladek Value Pack,2005,198,4 +6577-1,Snow Scooter,2000,51,20 +65771-1,Episode III Collectors' Set,2005,168,5 +65777-1,City Fire Value Pack (7238 7239 7240 7241),2005,58,0 +6578-1,Polar Explorer,2000,51,22 +6579-1,Ice Surfer,2000,51,42 +65799-1,City Fire Station Value Pack,2005,58,0 +65800-1,City Construction Set Value Pack,2005,56,0 +6580-1,Land Jet 7,1998,87,114 +65801-1,Trains Value Pack,2005,239,0 +65808-1,Toa Hordika Value Pack,2005,324,4 +658-1,Fire Engine,1974,417,38 +6581-1,Dig 'N' Dump,1996,72,128 +65813-1,Special Edition Co-Pack with Sidorak and Toa Iruini (8756 8762),2005,324,2 +6582-1,Daredevil Flight Squad,1998,87,287 +6584-1,Extreme Team Challenge,1998,87,357 +65844-1,Star Wars Co-Pack of 7255 4492 and 4494,2005,168,3 +65845-1,Star Wars Co-Pack of 7256 4492 and 4494,2005,168,3 +65849-1,Bionicle Co-Pack (contains 8758 and 851097),2005,341,2 +6585-1,Hang-Glider,1998,87,19 +65851-1,Knights Kingdom II Co-Pack (contains 8876 and life size sword),2005,198,2 +6586-1,Polar Scout,2000,51,55 +6589-1,Radical Racer,1998,87,83 +6590-1,Vacation Camper,1988,85,116 +659-1,Police Patrol with Policemen,1975,421,49 +6591-1,Nitro Dragsters,1989,82,144 +6592-1,Vacation Hideaway,1990,69,116 +6593-1,Blaze Battler,1991,74,126 +6594-1,Gas Transit,1992,76,123 +6595-1,Surf Shack,1993,83,93 +6596-1,Wave Master,1995,77,133 +6597-1,Century Skyway,1994,68,905 +6598-1,Metro PD Station,1996,80,567 +6599-1,Shark Attack,1997,86,58 +6600-1,Police Patrol,1981,80,23 +6600-2,Highway Construction,2000,97,316 +660-1,Car with Plane Transporter,1975,397,41 +6601-1,Ice Cream Cart,1985,75,30 +6602-1,Fire Chief's Car,1981,74,24 +6602-2,Scorpion Buggy,2000,91,78 +6603-1,Shovel Truck,1985,72,27 +6604-1,Formula-I Racer,1985,82,31 +6605-1,Road Racer,1984,82,20 +6606-1,Road Repair Set,1983,85,25 +6607-1,Service Truck,1982,85,25 +6608-1,Tractor,1982,73,21 +6609-1,Race Car,1980,82,17 +6610-1,Gas Pumps,1981,76,28 +661-1,Spirit of St. Louis,1976,412,49 +6611-1,Fire Chief's Car,1981,74,20 +66116-1,City Emergency Services Vehicles (Multipack),2006,52,0 +66117-1,Offre Speciale (7235 7236 7238 7241),2007,52,0 +6612-1,Fire Chief's Car,1986,74,29 +6613-1,Telephone Booth,1986,85,26 +66138-1,Toa Hordika Collection,2005,350,6 +6614-1,Launch Evac 1,1995,88,122 +6615-1,Eagle Stunt Flyer,1996,68,75 +66156-1,Airport Value Pack (TRU Exclusive),2006,53,4 +6616-1,Rocket Dragster,2000,91,146 +6617-1,Tough Truck Rally,2000,91,387 +66174-1,Lego Firemen Bundle,2006,58,0 +66175-1,City Rescue Pack,2007,52,0 +66177-1,City Rescue Pack,2007,52,0 +6618-1,Blue Racer,2000,91,23 +66188-1,Creative Building Set,2007,37,2 +6619-1,Red Four Wheel Driver,2000,91,20 +66193-1,City Super Pack (7890 7892 7902 7903),2007,60,0 +66194-1,City Super Pack (7246 7248 7905 7990),2007,56,0 +66195-1,City Super Pack (7238 7239 7241 7942 7945),2007,58,0 +6620-1,Ultimate Accessory Set 500,2006,346,507 +66207-1,Gift Set,2006,351,2 +66208-1,Mr. Magoriums big book (Mr. Magorium's Wonder Emporium),2007,23,9 +662-1,Dumper Lorry,1976,416,27 +6621-1,Fire Truck,1984,74,39 +6622-1,Mailman on Motorcycle,1984,81,30 +66221-1,X-wing Fighter and Luke Pilot Maquette Co-Pack (TRU Exclusive),2007,169,1 +66225-1,Gift Set,2007,389,2 +6623-1,Police Car,1983,80,40 +66237-1,Build & Play Value Pack,2008,37,2 +66239-1,City Super Pack 4 in 1 (7898 7997 7895 7896),2007,240,4 +6624-1,Delivery Van,1983,70,40 +66246-1,City Super Pack (7235 7245 7743),2008,61,3 +66247-1,City Super Pack (7741 7890 7942),2008,52,0 +6625-1,Speed Trackers,1996,80,65 +66255-1,City Super Pack 6 in 1 (7235 7236 7741 7890 7942 7945),2008,52,0 +66256-1,City Super Pack (7242 7733 7990 7991),2008,52,0 +66257-1,City Super Pack 4 in 1 (7235 7236 7741 7744),2008,61,4 +66258-1,City Super Pack (7990 7991 7993),2008,52,3 +66260-1,City Super Pack (7733 7734 7992),2008,54,3 +6626-1,Rescue Helicopter,1981,78,36 +6626-2,Snow Scooter,2000,51,20 +6627-1,Convertible,1980,85,37 +6628-1,Shell Tow Truck,1981,76,38 +6628-2,Construction Workers,1984,84,20 +66282-1,City Police Co-Pack,2008,61,2 +66284-1,LEGO Build and Play Value Pack,2009,37,2 +66290-1,City Super Pack 4 in 1 (4210 7736 7737 7738),2008,55,4 +6629-1,Ambulance,1981,78,39 +6630-1,Bucket Loader,1981,72,34 +66305-1,City Super Pack 3 in 1 (7235 7245 7743),2009,61,3 +66306-1,City Super Pack 3 in 1 (7736 7737 7738),2009,55,3 +66307-1,City Super Pack (7245 7732 8401),2009,52,3 +66308-1,Star Wars Super Pack 3 in 1 (7667 7668 8017),2009,169,3 +663-1,Hovercraft,1977,419,60 +6631-1,Steam Shovel,1985,72,48 +66311-1,LEGO Creative Value Pack (TRU Exclusive),2010,37,2 +66318-1,Technic Super Pack 4 in 1 (8259 8290 8293 8294),2009,7,4 +66319-1,Power Miners Super Pack 3 in 1 (8709 8958 8959),2009,439,3 +6632-1,Tactical Patrol Truck,1985,80,44 +66325-1,City Super Pack 4 in 1 (7898 7997 7895 7896),2009,240,4 +66326-1,City Super Pack 4 in 1 (7239 7245 8401 7638),2009,52,0 +66328-1,City Super Pack 6 in 1 (7630 5610 5612 5613 7942 7236),2009,52,0 +66329-1,City Super Pack 3 in 1 (7236 7741 7942),2009,52,3 +66330-1,City Super Pack 5 in 1 (7632 7746 7990 8401 5620),2009,52,5 +6633-1,Family Car,1985,85,46 +66331-1,City Super Pack 3 in 1 (7630 7633 7990),2009,56,3 +6634-1,Stock Car,1986,82,46 +66341-1,Star Wars Super Pack 3 in 1 (8014 8015 8091),2010,165,3 +66342-1,City Super Pack 3 in 1 (7213 7241 7942),2010,58,0 +66345-1,City Super Pack 4 in 1 (3177 7241 7634 7638),2010,52,0 +66357-1,City Super Pack 4 in 1 (7208 7239 7241 7942),2010,58,0 +66358-1,City Super Pack 3 in 1 (7634 7635 7684),2010,57,3 +66359-1,Technic Super Pack 4 in 1 (8049 8259 8260 8293),2010,1,4 +66360-1,City Super Pack 4 in 1 (7207 7213 7241 7942),2010,58,0 +6636-1,Police Headquarters,2002,100,291 +66362-1,City Super Pack 4 in 1 (3177 3179 8401 8402),2010,52,4 +66363-1,City Super Pack 4 in 1 (7235 7236 7245 7741),2010,61,4 +66364-1,Star Wars Super Pack 3 in 1 (7749 8083 8084),2010,169,3 +66365-1,Atlantis Super Pack 4 in 1 (8057 8058 8059 8080),2010,315,4 +66366-1,Star Wars Super Pack 3 in 1 (8089 8083 7749),2010,169,3 +66368-1,Star Wars Super Pack 3 in 1 (8083 8084 8092),2010,169,3 +6637-1,Ultimate Battle Set,2005,346,5 +66373-1,Fun Favor Pack,2010,22,0 +66374-1,City Super Pack 4 in 1 (7895 7896 7937 7939),2010,233,4 +66375-1,City Super Pack 4 in 1 (7235 7286 7279 7741),2011,61,4 +66377-1,Star Wars Super Pack 3 in 1 (7869 7913 7914),2011,165,3 +66378-1,Star Wars Super Pack 3 in 1 (8085 7913 7914),2011,165,3 +66380-1,LEGO Creative Value Pack (TRU UK Exclusive),2011,37,2 +6638-1,Ultimate Creatures Accessory Set (Special Edition) 300+ Pieces,2006,346,287 +66383-1,Ninjago Super Pack 3 in 1 (2258 2259 2519),2011,435,3 +66386-1,Cars 2 Super Pack 3 in 1 (8206 8426 8487),2011,269,3 +66387-1,Cars 2 Super Pack 3 in 1 (8200 8201 8206),2011,269,3 +66388-1,City Super Pack 4 in 1 (7498 7235 7279 7285),2011,61,4 +66389-1,City Super Pack 5 in 1 (7288 7279 7285 7286 7741),2011,61,5 +6639-1,Raven Racer,1995,82,70 +66392-1,"Duplo Cars Super Pack 3 in 1 (5816, 5817, 5818)",2012,506,-1 +66394-1,Ninjago Super Pack 3 in 1 (2506 2259 2260),2011,435,3 +66395-1,Star Wars Super Pack 3 in 1 (7957 7913 7914),2011,158,3 +66396-1,Star Wars Super Pack 3 in 1 (7877 7929 7913),2011,166,3 +66397-1,Technic Super Pack 4 in 1 (8047 8065 8067 8069),2011,1,4 +66404-1,"Hero Factory Super Pack 2 in 1 (2065, 2067)",2011,401,2 +66405-1,City Super Pack 4 in 1 (7939 7937 7499 7895),2010,233,4 +66409-1,Cars Super Pack 3 in 1 (9478 8201 9485),2012,269,3 +664-1,TV Crew,1977,397,47 +66410-1,"Ninjago Super Pack 3 in 1 (9440, 9441, 9444)",2012,435,3 +6641-1,4-Wheelin' Truck,1987,79,81 +66411-1,Star Wars Super Pack 3 in 1 (9488 9489 9495),2012,158,3 +66412-1,"City Super Pack 2 in 1 (7285, 7741)",2012,61,2 +66414-1,"Hero Factory Super Pack 2 in 1 (2143, 2145)",2012,401,2 +6642-1,Police Helicopter,1988,80,65 +66426-1,"City Super Pack 3 in 1 (4208, 4209, 4427)",2012,58,3 +66427-1,"City Super Pack 4 in 1 (4436, 4437, 4439, 4441)",2012,61,4 +66428-1,"City Super Pack 4 in 1 (4436, 7235, 7279, 7498)",2012,61,4 +6643-1,Fire Truck,1988,74,74 +66431-1,"Star Wars Super Pack 3 in 1 (7914, 9488, 9491)",2012,158,3 +66432-1,"Star Wars Super Pack 3 in 1 (9490, 9492, 9496)",2012,158,3 +66433-1,"Technic Super Pack 3 in 1 (8293, 9392, 9395)",2012,1,3 +66434-1,"Friends Super Pack 3 in 1 (3187, 3934, 3935)",2012,494,3 +66435-1,"Friends Super Pack 4 in 1 (3061, 3183, 3934, 3936)",2012,494,4 +66436-1,"City Super Pack 2 in 1 (4436, 4437)",2012,61,2 +66437-1,"Hero Factory Super Pack 2 in 1 (6216, 6293)",2012,400,2 +6644-1,Road Rebel,1990,85,72 +66444-1,"Ninjago Super Pack 3 in 1 (9441, 9442, 9591)",2012,435,3 +66448-1,"City Super Pack 3 in 1 (60000, 60001, 60002)",2013,58,3 +66449-1,"Star Wars Super Pack 3 in 1 (75000, 75003, 75014)",2013,158,3 +66450-1,"Legends of Chima Super Pack 3 in 1 (70000, 70001, 70003)",2013,571,3 +6645-1,Street Sweeper,1991,85,65 +66451-1,"City Super Pack 4 in 1 (4431, 4432, 4433, 4435)",2012,52,4 +66452-1,"Hero Factory Super Pack 2 in 1 (6282, 6283)",2012,400,2 +6646-1,Screaming Patriot,1991,82,65 +6647-1,Highway Repair,1980,85,54 +66479-1,"Super Pack 3 in 1 (75015, 75035, 75043)",2014,170,3 +6648-1,Mag Racer,1992,82,61 +6648-2,Dump Truck,1980,72,42 +6649-1,Street Sweeper,1995,85,63 +66491-1,"Legends of Chima Super Pack 5 in 1 (70126, 70128, 70129, 70130, 70131)",2014,571,5 +66492-1,"City Super Pack 3 in 1 (60041, 60042, 60046)",2014,61,3 +66493-1,"City Super Pack 4 in 1 (60050, 60052, 7499, 7895)",2014,66,4 +66495-1,"Star Wars Super Pack 3 in 1 (75037, 75038, 75045)",2014,170,3 +6650-1,Fire and Rescue Van,1981,74,46 +6651-1,Post Office Van,1982,81,46 +66512-1,"Star Wars Super Pack 2 in 1 (75048, 75053)",2014,182,2 +66514-1,"Star Wars Microfighters Super Pack 3 in 1 (75028, 75029, 75030)",2014,159,3 +66515-1,"Star Wars Microfighters Super Pack 3 in 1 (75031, 75032, 75033)",2014,159,3 +6652-1,Construction Truck,1983,72,44 +6653-1,Highway Emergency Van,1982,85,56 +6654-1,Motorcycle Transport,1983,85,54 +6655-1,Auto & Tire Repair,1984,85,58 +6656-1,Tow Truck,1985,85,53 +6657-1,Fire Patrol Copter,1985,74,66 +6658-1,Bulldozer,1986,72,65 +6659-1,TV Camera Crew,1986,79,66 +6660-1,Hook & Haul Wrecker,1989,79,52 +6661-1,Mobile TV Studio,1989,85,80 +6662-1,Backhoe,1992,72,87 +6663-1,Wave Rebel,1993,77,78 +6664-1,Chopper Cops,1993,80,71 +6665-1,River Runners,1994,83,77 +6666-1,Ambulance,1994,78,78 +6667-1,Pothole Patcher,1993,85,97 +6668-1,Recycle Truck,1992,85,108 +6669-1,Diesel Daredevil,1991,82,90 +6670-1,Rescue Rig,1993,85,114 +6671-1,Utility Repair Lift,1989,85,107 +6672-1,Safari Off-Road Vehicle,1990,79,67 +6673-1,Solo Trainer,1990,68,74 +6674-1,Crane Truck,1988,85,94 +6675-1,Road & Trail 4x4,1988,79,81 +6676-1,Mobile Command Unit,1986,80,99 +6677-1,Motocross Racing,1986,82,75 +6678-1,Pneumatic Crane,1980,72,61 +6679-1,Dark Shark,1991,77,82 +6679-2,Exxon Tow Truck,1980,85,78 +6680-1,Ambulance,1981,78,63 +6681-1,Police Van,1981,80,81 +6682-1,Cement Mixer,1985,72,90 +6683-1,Burger Stand,1983,75,68 +6684-1,Police Patrol Squad,1984,80,81 +6685-1,Fire Copter 1,1982,74,98 +6686-1,Backhoe,1984,72,88 +6687-1,Turbo Prop I,1987,68,78 +6688-1,Ambulance,1985,78,72 +6689-1,Post-Station,1985,81,54 +6690-1,Snorkel Pumper,1980,74,103 +6691-1,Red Cross Helicopter,1981,78,107 +6692-1,Tractor Trailer,1983,70,97 +6693-1,Refuse Collection Truck,1987,85,114 +6694-1,Car with Camper,1984,85,109 +6695-1,Shell Tanker,1984,76,106 +6696-1,Exxon Fuel Tanker,1984,76,106 +6697-1,Rescue-I Helicopter,1985,71,85 +6698-1,RV with Speedboat,1986,77,129 +6699-1,Cycle Fix-It Shop,1987,85,81 +670-1,Mobile Crane,1978,72,55 +6701-1,Minifig Pack,1983,143,36 +6702-1,Minifig Pack,1986,143,43 +6703-1,Minifig Pack,1988,143,42 +6704-1,Minifig Pack,1991,143,44 +6705-1,Space Explorers,1994,143,39 +6706-1,Frontier Patrol,1997,476,27 +6707-1,Green Buggy,2000,91,23 +6709-1,Tribal Chief,1997,477,16 +670F-1,Wheels Pack,2004,119,10 +6710-1,Space Landing Pads,1991,143,2 +671-1,Shell Fuel Tanker,1978,76,73 +6711-1,Space Mini-Figs,1983,143,24 +6712-1,Sheriff's Showdown,1996,476,28 +6713-1,Grip 'n' Go Challenge,2000,91,283 +6714-1,Speed Dragster,2000,91,80 +6716-1,Covered Wagon,1996,476,65 +6718-1,Raindance Ridge,1997,477,73 +6719-1,Brachiosaurus,2001,386,25 +671F-1,Antenna Pack,2004,119,13 +6720-1,Tyrannosaurus Rex,2001,386,23 +672-1,Fire Emergency Van,1978,74,65 +6721-1,Mosasaurus,2001,386,26 +6722-1,Styracosaurus,2001,386,19 +673-1,Rally Repair Crew,1978,85,60 +6731-1,Skateboarding Pepper,2002,407,13 +6732-1,Brickster's Trike,2002,407,17 +6733-1,Snap's Cruiser,2002,407,19 +6734-1,Beach Cruiser,2002,407,54 +6735-1,Air Chase,2002,407,85 +6736-1,Beach Lookout,2002,407,88 +6737-1,Wake Rider (Wave Catcher),2002,407,92 +6738-1,Skateboard Challenge,2002,407,116 +6739-1,Truck and Stunt Trikes,2002,407,198 +673F-1,Gearbox Pack,2004,119,6 +6740-1,Tower,2002,407,332 +674-1,Forklift & Truck,1978,72,55 +6741-1,Mini Jet,2009,24,63 +6742-1,Mini Off-Roader,2009,22,64 +6743-1,Street Speeder,2009,39,165 +6745-1,Propellor Power,2009,42,247 +6746-1,Chief's Tepee,1997,477,135 +6747-1,Race Rider,2009,41,266 +6748-1,Boulder Cliff Canyon,1997,477,256 +6750-1,Sonic Robot,1986,130,110 +675-1,Snack Bar,1979,75,64 +6751-1,Fiery Legend,2009,40,479 +6752-1,Fire Truck,2009,47,771 +6753-1,Highway Transport,2009,39,1294 +6754-1,Family Home,2009,43,978 +6755-1,Sheriff's Lock-Up,1996,476,177 +6758-1,Read & Build Grow Caterpillar Grow,2012,504,18 +6759-1,Read & Build Busy Farm,2012,504,16 +6760-1,Read & Build Let's Go Vroom,2012,504,13 +6761-1,Bandit's Secret Hide-Out,1996,476,249 +6762-1,Fort Legoredo,2002,476,687 +6763-1,Rapid River Village,2002,477,354 +6764-1,Sheriff's Lock-Up,2002,476,176 +6765-1,Gold City Junction,1996,476,351 +6766-1,Rapid River Village,1997,477,354 +6769-1,Fort Legoredo,1996,476,687 +6770-1,Lunar Transporter Patroller,1988,132,117 +677-1,Knight's Procession,1979,189,48 +6771-1,Ogel Command Striker,2001,304,29 +6772-1,Alpha Team Cruiser,2001,304,56 +6773-1,Alpha Team Helicopter,2001,304,78 +6774-1,Alpha Team ATV,2001,304,134 +6775-1,Alpha Team Bomb Squad,2001,304,191 +6776-1,Ogel Control Center,2001,304,414 +6780-1,XT Starship,1986,130,199 +6781-1,SP-Striker,1989,139,230 +6783-1,Sonar Transmitting Cruiser,1986,130,348 +6784-1,Creative Sorter,2012,504,26 +6785-1,Creative Cakes,2012,504,56 +6790-1,Bandit's Wheelgun (Boxed),1997,476,20 +6791-1,Bandit's Wheelgun,1997,476,20 +6799-1,Showdown Canyon,1997,476,74 +6800-1,Cyber Blaster,1997,144,20 +680-1,Low-Loader and Crane,1971,416,62 +6801-1,Moon Buggy,1981,130,22 +6802-1,Space Probe,1986,130,26 +6803-1,Space Patrol,1983,130,25 +6804-1,Surface Rover,1984,130,21 +6805-1,Astro Dasher,1985,130,29 +6806-1,Surface Hopper,1985,130,23 +6807-1,Space Sledge with Astronaut and Robot,1985,130,24 +6808-1,Galaxy Trekkor,1987,130,29 +6809-1,XT-5 and Droid,1988,130,37 +6810-1,Laser Ranger,1989,132,41 +681-1,Low-Loader with 4 Wheel Excavator,1971,416,63 +6811-1,Pulsar Charger,1990,136,26 +6812-1,Grid Trekkor,1991,129,25 +6813-1,Galactic Chief,1993,140,24 +6814-1,Ice Tunnelator,1993,133,25 +6815-1,Hovertron,1996,131,27 +6816-1,Cyber Blaster,1997,144,20 +6817-1,Beta Buzzer,1998,134,32 +6818-1,Cyborg Scout,1997,144,36 +6820-1,Starfire I,1986,130,34 +682-1,Low-Loader and Tractor,1971,416,57 +6821-1,Shovel Buggy,1980,130,28 +6822-1,Space Digger,1981,130,33 +6823-1,Surface Transport,1983,130,27 +6824-1,Space Dart I,1984,130,48 +6825-1,Cosmic Comet,1985,130,40 +6826-1,Crater Crawler,1985,130,32 +6827-1,Strata Scooter,1987,130,35 +6828-1,Twin-Winged Spoiler,1988,132,57 +6829-1,Radon Rover,1997,144,53 +6830-1,Space Patroller,1988,132,51 +683-1,Articulated Lorry,1971,397,58 +6831-1,Message Decoder,1989,139,34 +6832-1,Super Nova II,1991,129,42 +6833-1,Beacon Tracer,1990,136,40 +6834-1,Celestial Sled,1993,133,55 +6835-1,Saucer Scout,1994,142,47 +6836-1,V-Wing Fighter,1997,144,40 +6837-1,Cosmic Creeper,1998,134,57 +684-1,Low-Loader with Fork Lift Truck,1972,416,53 +6841-1,Mineral Detector,1980,130,44 +6842-1,Shuttle Craft,1981,130,46 +6844-1,Seismologic Vehicle (Sismobile),1983,130,46 +6845-1,Cosmic Charger,1986,130,51 +6846-1,Tri-Star Voyager,1984,130,69 +6847-1,Space Dozer,1985,130,49 +6848-1,Strategic Pursuer,1988,132,62 +6848-2,Interplanetary Shuttle,1985,130,54 +6848-3,Strategic Pursuer,1988,126,62 +6849-1,Satellite Patroller,1987,130,47 +6850-1,Auxiliary Patroller,1989,132,46 +685-1,Truck with Trailer,1972,397,50 +6851-1,Tri-Wheeled Tyrax,1991,129,38 +685-2,Truck with Trailer (without Stickers),1972,397,50 +6852-1,Sonar Security,1993,140,61 +6854-1,Alien Fossilizer,1996,131,51 +6856-1,Planetary Decoder,1996,131,78 +6857-1,The Dynamic Duo Funhouse Escape,2012,484,378 +6858-1,Catwoman Catcycle City Chase,2012,484,89 +6860-1,The Batcave,2012,484,689 +686-1,Tipper Trucks and Loader,1973,416,70 +6861-1,X1 Patrol Craft,1980,130,55 +6861-2,Super Model Building Instruction,1993,129,1 +6862-1,Secret Space Voyager,1991,136,254 +6862-2,Superman vs Power Armour Lex,2012,489,208 +6863-1,Batwing Battle Over Gotham City,2012,484,277 +6864-1,Batmobile and the Two-Face Chase,2012,484,541 +6865-1,Captain America's Avenging Cycle,2012,487,71 +6866-1,Wolverine's Chopper Showdown,2012,491,199 +6867-1,Loki's Cosmic Cube Escape,2012,487,180 +6868-1,Hulk’s Helicarrier Breakout,2012,487,385 +6869-1,Quinjet Aerial Battle,2012,487,748 +6870-1,Space Probe Launcher,1981,130,60 +687-1,Caravelle Plane,1973,412,48 +6871-1,Star Patrol Launcher,1984,130,71 +6872-1,Xenon X-Craft,1986,130,76 +6873-1,Spider-Man's Doc Ock Ambush,2012,488,295 +6874-1,Moon Rover,1986,130,66 +6875-1,Hovercraft,1988,132,93 +6876-1,Alienator,1988,128,92 +6877-1,Vector Detector,1990,136,62 +6878-1,Sub Orbital Guardian,1991,129,75 +6879-1,Blizzard Baron,1993,133,83 +6880-1,Surface Explorer,1982,130,83 +688-1,Shell Double Tanker,1973,418,63 +6881-1,Lunar Rocket Launcher,1984,130,98 +6882-1,Walking Astro Grappler,1985,130,102 +6883-1,Terrestrial Rover,1987,130,109 +6884-1,Aero Module,1987,132,107 +6885-1,Saturn Base Main Team (Crater Crawler),1988,132,101 +6886-1,Galactic Peace Keeper,1989,139,121 +6887-1,Allied Avenger,1991,129,100 +6889-1,Recon Robot,1994,142,136 +6890-1,Cosmic Cruiser,1982,130,115 +689-1,Mobile Crane,1974,416,46 +6891-1,Gamma V Laser Craft,1985,130,135 +6892-1,Modular Space Transport,1986,130,150 +6893-1,Orion II Hyperspace,1987,132,162 +6894-1,Invader,1987,128,159 +6895-1,Spy-Trak 1,1989,139,152 +6896-1,Celestial Forager,1990,136,92 +6897-1,Rebel Hunter,1992,140,146 +6898-1,Ice-Sat V,1993,133,136 +6899-1,Nebula Outpost,1996,131,156 +6900-1,Cyber Saucer,1997,144,112 +690-1,Shell Station,1974,418,73 +6901-1,Mobile Lab,1980,130,139 +6901-2,Space Plane,1998,144,20 +6902-1,Space Plane,1998,144,20 +6903-1,Bug Blaster,1998,134,24 +6905-1,Bi-Wing Blaster,1998,134,112 +6907-1,Sonic Stinger,1998,134,95 +6909-1,Sonic Stinger with Promotional Mask,1998,134,96 +6910-1,Mini Sports Car,2012,22,70 +691-1,Rescue Helicopter,1974,417,62 +6911-1,Mini Fire Truck,2012,22,69 +6912-1,Super Soarer,2012,22,130 +6913-1,Blue Roadster,2012,22,152 +6914-1,T-Rex,2012,22,191 +6915-1,Warp Wing Fighter,1997,144,234 +6918-1,Blacksmith Attack,2011,196,110 +6919-1,Planetary Prowler,1998,134,248 +692-1,Road Repair Crew,1975,416,59 +6921-1,Monorail Accessory Track,1988,132,46 +6923-1,Particle Ionizer,1990,136,192 +6925-1,Interplanetary Rover,1988,132,211 +6926-1,Mobile Recovery Vehicle,1986,130,150 +6927-1,All-Terrain Vehicle,1981,130,173 +6928-1,Uranium Search Vehicle,1984,130,201 +6929-1,Star Fleet Voyager,1981,130,246 +6930-1,Space Supply Station,1983,130,206 +693-1,Fire Engine with Firemen,1975,417,72 +6931-1,FX Star Patroller,1985,130,227 +6932-1,Stardefender 200,1987,132,251 +6933-1,Spectral Starguider,1991,129,212 +6934-1,BIONICLE Good Guy Polybag (Disney Promotional Sweden),2006,324,16 +6935-1,BIONICLE Bad Guy (Disney Promotional Sweden),2006,324,16 +6936-1,Piraka & Catapult,2007,324,20 +6937-1,Give Away,2006,324,2 +6938-1,Scorpion Detector,1996,131,196 +6939-1,Saucer Centurion,1994,142,222 +6940-1,Alien Moon Stalker,1986,130,268 +694-1,Transport Truck,1975,397,64 +6941-1,Battrax,1987,128,284 +6942-1,Zo Weevil,1999,134,20 +6943-1,Zo Weevil,1999,134,20 +6944-1,Good Guy 07,2007,324,20 +6945-1,Bad Guy,2007,324,25 +6946-1,Squid Launcher Function,2007,324,23 +6949-1,Robo-Guardian,1994,142,366 +6950-1,Mobile Rocket Transport,1982,130,210 +695-1,Racing Car,1976,397,67 +6951-1,Robot Command Center,1984,130,295 +6952-1,Solar Power Transporter,1985,130,305 +6953-1,Cosmic Laser Launcher,1987,132,211 +6954-1,Renegade,1987,128,315 +6955-1,Space Lock-Up Isolation Base,1989,139,253 +6956-1,Stellar Recon Voyager,1990,136,233 +6957-1,Solar Snooper,1992,140,253 +6958-1,Android Base,1996,131,268 +6959-1,Lunar Launch Site,1994,142,287 +696-1,Bus Stop,1976,397,80 +6963-1,X-wing Fighter - Mini (Kabaya Box),2004,159,41 +6963-2,X-wing Fighter - Mini (Polybag),2004,159,41 +6964-1,Boba Fett's Slave I - Mini (Kabaya Box),2004,159,25 +6964-2,Boba Fett's Slave I - Mini (Polybag),2004,159,25 +6965-1,TIE Interceptor - Mini (Kabaya Box),2004,159,32 +6965-2,TIE Interceptor - Mini (Polybag),2005,163,32 +6966-1,Jedi Starfighter - Mini,2005,159,38 +6966-2,Jedi Starfighter - Mini - Korean Duracell promo package with 8 AA batteries,2005,159,38 +6967-1,ARC-170 Starfighter - Mini,2005,159,42 +6967-2,ARC-170 Starfighter - Mini - Korean Duracell promo package with 8 AA batteries,2005,159,42 +6968-1,Mini Wookiee Attack,2005,159,48 +6969-1,Celestial Stinger,1998,134,253 +6970-1,Beta I Command Base,1980,130,270 +697-1,Stagecoach,1976,397,96 +6971-1,Inter-Galactic Command Base,1984,130,329 +697-2,Idea Book 697,1997,497,2 +6972-1,Polaris I Space Lab,1987,130,390 +6973-1,Deep Freeze Defender,1993,133,417 +6975-1,Alien Avenger,1997,144,370 +6977-1,Arachnoid Star Base,1998,134,434 +6979-1,Interstellar Starfighter,1997,144,291 +6980-1,Galaxy Commander,1983,130,443 +698-1,JAL Boeing 727,1977,412,45 +6981-1,Aerial Intruder,1991,129,267 +6982-1,Explorien Starship,1996,131,658 +6983-1,Ice Station Odyssey,1993,133,345 +6984-1,Galactic Mediator,1992,140,406 +6985-1,Cosmic Fleet Voyager,1986,130,413 +6986-1,Mission Commander,1989,139,478 +6987-1,Message Intercept Base,1988,128,577 +6987-2,Message Intercept Base,1988,128,575 +6988-1,Alpha Centauri Outpost,1991,129,406 +6989-1,Mega Core Magnetizer,1990,136,509 +6990-1,Monorail Transport System,1988,132,731 +699-1,Photo Safari,1977,397,129 +6991-1,Monorail Transport Base,1994,145,571 +6999-1,Cyber Saucer,1997,144,113 +70000-1,Razcal's Glider,2013,571,108 +7000-1,Baby Ankylosaurus,2001,386,37 +70001-1,Crawley’s Claw Ripper,2013,571,138 +70002-1,Lennox' Lion Attack,2013,571,229 +70003-1,Eris' Eagle Interceptor,2013,571,345 +70004-1,Wakz' Pack Tracker,2013,571,295 +70005-1,Laval's Royal Fighter,2013,571,416 +70006-1,Cragger’s Command Ship,2013,571,607 +70007-1,Eglor's Twin Bike,2013,571,224 +70008-1,Gorzan’s Gorilla Striker,2013,571,503 +70009-1,Worriz’s Combat Lair,2013,571,657 +700-1,10 x 20 Brickplate,1966,371,6 +70010-1,The Lion CHI Temple,2013,571,1257 +7001-1,Baby Iguanodon,2001,386,23 +700.1.1-1,Individual 2 x 4 Bricks,1950,371,10 +70011-1,Eagles’ Castle,2013,572,372 +700.1-2,Gift Package,1957,366,0 +700.1.2-1,Individual 2 x 2 Bricks,1950,371,9 +70012-1,Rubber Bands,1985,453,20 +70012-2,Razar’s CHI Raider,2013,571,412 +70013-1,Equila's Ultra Striker,2013,571,340 +700.1.4-1,Individual 1 x 2 Bricks,1953,371,1 +70014-1,The Croc Swamp Hideout,2013,571,645 +700.16-1,Individual 2 x 8 Bricks,1954,371,5 +700.20-1,Individual 2 x 10 Bricks,1954,371,5 +7002-1,Baby Brachiosaurus,2001,386,31 +700.2-2,Gift Package,1957,366,0 +700.24-1,Individual 2 x 12 Bricks,1954,371,5 +700.28-1,Individual 2 x 14 Bricks,1954,371,5 +7003-1,Baby Dimetrodon,2001,386,20 +700.3.4-1,Individual 2 x 3 Bricks,1953,371,5 +700.3A-2,Gift Package,1957,372,0 +7009-1,The Final Joust,2007,193,62 +700.A-1,Automatic Binding Bricks Small Brick Set (Lego Mursten),1950,366,24 +700.B-1,Early LEGO Windows/Doors (without Glass),1953,371,12 +700.B.1-1,Individual 1 x 4 x 2 Window (without glass),1950,371,7 +700.B.2-1,Individual 1 x 2 x 3 Window (without glass),1950,371,7 +700.B.3-1,Individual 1 x 2 x 2 Window (without glass),1950,371,7 +700.B.4-1,Individual 1 x 2 x 4 Door (without glass),1950,371,7 +700.C-1,Tall Classic Windows/Door (with Glass),1954,371,24 +700.C.1-1,Individual 1 x 6 x 4 Panorama Window (with glass),1954,371,4 +700.C.2-1,Individual 1 x 6 x 3 3-Pane Window (with glass),1954,371,4 +700.C.3-1,Individual 1 x 6 x 3 Shutter Window (with glass),1954,371,4 +700.C.4-1,Individual 1 x 4 x 3 Window (with glass),1954,371,4 +700.C.5-1,Individual 1 x 3 x 3 Window (with glass),1954,371,4 +700.C.6-1,Individual 1 x 2 x 4 Door (with glass),1954,371,4 +700.F-1,Automatic Binding Bricks - Small Brick Set (Lego Mursten),1953,371,48 +700GP0-1,Gift Package,1957,372,244 +700GP5-1,Gift Package (Lego Mursten),1954,372,54 +700GP6-1,Gift Package (Lego Mursten),1954,372,46 +700GP6-2,Gift Package,1957,372,46 +700.H-1,Individual 4 x 4 Corner Bricks,1954,371,5 +700K-1,Kindergarten LEGO Set,1960,513,476 +700L-1,Empty Kindergarten LEGO Box,1961,513,1 +70100-1,Ring of Fire,2013,572,78 +70101-1,Target Practice,2013,572,101 +70102-1,CHI Waterfall,2013,572,106 +70103-1,Boulder Bowling,2013,572,93 +70104-1,Jungle Gates,2013,572,81 +70105-1,Nest Dive,2013,572,97 +70106-1,Ice Tower,2013,572,101 +70107-1,Skunk Attack,2013,572,97 +70108-1,Royal Roost,2013,572,100 +70109-1,Whirling Vines,2013,572,77 +701-1,Hinges,1984,443,3 +70110-1,Tower Target,2013,572,86 +70111-1,Swamp Jump,2013,572,86 +70112-1,Croc Chomp,2013,572,100 +70113-1,CHI Battles,2013,572,92 +70114-1,Sky Joust,2013,572,117 +70115-1,Ultimate Speedor Tournament,2013,572,236 +70123-1,Lion Legend Beast,2014,574,119 +70124-1,Eagle Legend Beast,2014,574,103 +70125-1,Gorilla Legend Beast,2014,574,107 +70126-1,Crocodile Legend Beast,2014,574,120 +70127-1,Wolf Legend Beast,2014,574,109 +70128-1,Braptor's Wing Striker,2014,571,145 +70129-1,Lavertus' Twin Blade,2014,571,181 +701-3,Hinges,1986,443,6 +70130-1,Sparratus' Spider Stalker,2014,571,291 +70131-1,Rogon's Rock Flinger,2014,571,256 +70132-1,Scorm's Scorpion Stinger,2014,571,433 +70133-1,Spinlyn's Cavern,2014,571,406 +70134-1,Lavertus’ Outland Base,2014,571,681 +70135-1,Cragger's Fire Striker,2014,571,379 +70136-1,Banana Bash,2014,572,115 +70137-1,Bat Strike,2014,572,91 +70138-1,Web Dash,2014,571,69 +70139-1,Sky Launch,2014,572,106 +70140-1,Stinger Duel,2014,572,75 +70141-1,Vardy's Ice Vulture Glider,2014,571,216 +70142-1,Eris' Fire Eagle Flyer,2014,571,329 +70143-1,Sir Fangar's Sabre-Tooth Walker,2014,571,414 +70144-1,Laval's Fire Lion,2014,571,448 +70145-1,Maula’s Ice Mammoth Stomper,2014,571,598 +70146-1,Flying Phoenix Fire Temple,2014,571,1299 +70147-1,Sir Fangar’s Ice Fortress,2014,571,670 +70149-1,Scorching Blades,2014,572,72 +70150-1,Flaming Claws,2014,572,69 +7015-1,Viking Warrior challenges the Fenris Wolf,2005,474,76 +70151-1,Frozen Spikes,2014,572,72 +70155-1,Inferno Pit,2014,572,69 +70156-1,Fire vs. Ice,2014,572,92 +70160-1,Riverside Raid,2014,303,88 +7016-1,Viking Boat against the Wyvern Dragon,2005,474,111 +70161-1,Tremor Track Infiltration,2014,303,240 +70162-1,Infearno Interception,2014,303,311 +70163-1,Toxikita's Toxic Meltdown,2014,303,428 +70164-1,Hurricane Heist,2014,303,586 +70165-1,Ultra Agents Mission HQ,2014,303,1056 +70166-1,Spyclops Infiltration,2015,303,108 +70167-1,Invizable Gold Getaway,2015,303,236 +70168-1,Drillex Diamond Job,2015,303,311 +70169-1,4x4 Agent Patrol,2015,303,473 +70170-1,UltraCopter vs. AntiMatter,2015,303,611 +7017-1,Viking Catapult versus the Nidhogg Dragon,2005,474,224 +70171-1,Ultrasonic Showdown,2015,303,184 +70172-1,AntiMatter’s Portal Hideout,2015,303,472 +70173-1,Ultra Agents Ocean HQ,2015,303,1201 +7018-1,Viking Ship challenges the Midgard Serpent,2005,474,581 +7019-1,Viking Fortress against the Fafnir Dragon,2005,474,1040 +70200-1,CHI Laval,2013,573,55 +7020-1,Army of Vikings with Heavy Artillery Wagon,2006,474,270 +70201-1,CHI Eris,2013,573,67 +70202-1,CHI Gorzan,2013,573,58 +70203-1,CHI Cragger,2013,573,65 +70204-1,CHI Worriz,2013,573,55 +70205-1,CHI Razar,2013,573,68 +70206-1,CHI Laval,2014,573,49 +70207-1,CHI Cragger,2014,573,58 +70208-1,CHI Panthar,2014,573,59 +70209-1,CHI Mungus,2014,573,64 +702-1,12V Motor with Accessories Pack,1969,242,25 +70210-1,CHI Vardy,2014,573,68 +7021-1,Viking Double Catapult versus the Armored Ofnir Dragon,2006,474,486 +70211-1,CHI Fluminox,2014,573,91 +70212-1,CHI Sir Fangar,2014,573,97 +70220-1,Strainor's Saber Cycle,2015,571,160 +70221-1,Flinx's Ultimate Phoenix,2015,571,172 +70222-1,Tormak's Shadow Blazer,2015,571,310 +70223-1,Icebite's Claw Driller,2015,571,628 +70224-1,Tiger’s Mobile Command,2015,571,710 +70225-1,Bladvic's Rumble Bear,2015,571,414 +70226-1,Mammoth’s Frozen Stronghold,2015,571,619 +70227-1,King Crominus’ Rescue,2015,571,861 +70228-1,Vultrix's Sky Scavenger,2015,571,479 +70229-1,Lion Tribe Pack,2015,571,78 +702-3,Motor Wires,1984,443,2 +70230-1,Ice Bear Tribe Pack,2015,571,75 +70231-1,Crocodile Tribe Pack,2015,571,72 +70232-1,Sabre Tooth Tiger Pack,2015,571,74 +7029-1,Skeleton Ship Attack,2007,193,629 +7030-1,Squad Car,2003,111,51 +703-1,12V Replacement Electric Motor,1969,242,1 +70310-1,Knighton Battle Blaster,2016,605,76 +7031-1,Helicopter,2003,111,87 +70311-1,Chaos Catapult,2016,605,93 +70312-1,Lance's Mecha Horse,2016,605,237 +70313-1,Moltor's Lava Smasher,2016,605,187 +70314-1,Beast Master's Chaos Chariot,2016,605,311 +70315-1,Clay's Rumble Blade,2016,605,366 +70316-1,Jestro’s Evil Mobile,2016,605,658 +70317-1,The Fortrex,2016,605,1134 +70318-1,The Glob Lobber,2016,605,95 +70319-1,Macy's Thunder Mace,2016,605,201 +70320-1,Aaron Fox's Aero-Striker V2,2016,605,301 +7032-1,Highway Patrol & Undercover Van,2003,111,153 +70321-1,General Magmar's Siege Machine of Doom,2016,605,514 +70322-1,Axl’s Tower Carrier,2016,605,668 +70323-1,Jestro’s Volcano Lair,2016,605,1184 +70324-1,Merlok's Library 2.0,2016,605,257 +70325-1,Infernox captures the Queen,2016,605,251 +70326-1,The Black Knight Mech,2016,605,529 +70327-1,The King's Mech,2016,605,354 +703-3,Battery Box,1984,443,1 +70330-1,ULTIMATE Clay,2016,605,72 +7033-1,Armored Car Action,2003,111,179 +70331-1,Ultimate Macy,2016,605,101 +70332-1,Ultimate Aaron,2016,605,82 +70333-1,Ultimate Robin,2016,605,75 +70334-1,Ultimate Beast Master,2016,605,64 +70335-1,Ultimate Lavaria,2016,605,69 +70336-1,Ultimate Axl,2016,605,69 +70337-1,Ultimate Lance,2016,605,75 +70338-1,Ultimate General Magmar,2016,605,64 +70339-1,Ultimate Flama,2016,605,68 +7034-1,Surveillance Truck,2003,111,260 +70347-1,King's Guard Artillery,2017,605,98 +70348-1,Lance's Twin Jouster,2017,605,215 +70349-1,Ruina's Lock & Roller,2017,605,200 +70350-1,The Three Brothers,2017,605,266 +7035-1,Police HQ,2003,111,422 +70351-1,Clay's Falcon Fighter Blaster,2017,605,520 +70352-1,Jestro's Headquarters,2017,605,816 +70358-1,Aaron's Stone Destroyer,2017,605,245 +70359-1,Lance vs. lightning,2017,605,252 +7036-1,Dwarves' Mine,2008,193,569 +70362-1,Battle Suit Clay,2017,605,79 +70363-1,Battle Suit Macy,2017,605,66 +70364-1,Battle Suit Aaron,2017,605,80 +70365-1,Battle Suit Axl,2017,605,87 +70366-1,Battle Suit Lance,2017,605,83 +7037-1,Tower Raid,2008,193,364 +70372-1,Combo NEXO Powers Wave 1,2017,605,5 +7038-1,Troll Assault Wagon,2008,193,161 +70400-1,Forest Ambush,2013,186,90 +7040-1,Dwarves' Mine Defender,2008,193,86 +70401-1,Gold Getaway,2013,186,200 +70402-1,The Gatehouse Raid,2013,186,247 +70403-1,Dragon Mountain,2013,186,380 +70404-1,King’s Castle,2013,186,999 +70409-1,Shipwreck Defense,2015,154,84 +704-1,12V Sleeper (Track) Contacts for Old Motor Type I and II,1969,242,2 +70410-1,Soldiers Outpost,2015,154,164 +7041-1,Troll Battle Wheel,2008,193,505 +70411-1,Treasure Island,2015,154,181 +70412-1,Soldiers Fort,2015,154,234 +70413-1,The Brick Bounty,2015,154,743 +7042-1,Dune Patrol,2004,107,37 +7043-1,Firefighter,2004,108,68 +704-4,Replacement Motor,1984,443,1 +7044-1,Rescue Chopper,2004,107,205 +7045-1,Hovercraft Hideout,2003,110,273 +7046-1,Fire Command Craft,2004,108,271 +7047-1,Coast Watch HQ,2003,107,366 +7048-1,Troll Warship,2008,193,490 +7049-1,Alien Striker,2011,127,42 +70500-1,Kai's Fire Mech,2013,435,101 +7050-1,Alien Defender,2011,127,104 +70501-1,Samurai Bike,2013,435,210 +70502-1,Cole's Power Drill,2013,435,170 +70503-1,Golden Dragon,2013,435,253 +70504-1,Garmatron,2013,435,327 +70505-1,Temple of Light,2013,435,563 +705-1,Motor Bushings,1969,242,4 +7051-1,Tripod Invader,2011,127,165 +7052-1,UFO Abduction,2011,127,210 +705-4,Digger Bucket,1984,443,3 +70588-1,Titanium Ninja Tumbler,2016,435,336 +70589-1,Rock Roader,2016,435,406 +70590-1,Airjitzu Battle Grounds,2016,436,652 +70591-1,Kryptarium Prison Breakout,2016,435,202 +70592-1,Salvage M.E.C.,2016,435,430 +70593-1,The Green NRG Dragon,2016,435,560 +70594-1,The Lighthouse Siege,2016,435,761 +70595-1,Ultra Stealth Raider,2016,435,1076 +70596-1,Samurai X Cave Chaos,2016,435,1233 +70599-1,Cole's Dragon,2016,435,94 +70600-1,Ninja Bike Chase,2016,435,231 +70601-1,Sky Shark,2016,435,221 +70602-1,Jay’s Elemental Dragon,2016,435,350 +70603-1,Raid Zeppelin,2016,435,293 +70604-1,Tiger Widow Island,2016,435,408 +70605-1,Misfortune’s Keep,2016,435,753 +706-1,12V Rail Contact Wire with Transformer Connector,1969,242,1 +70621-1,The Vermillion Attack,2017,435,75 +70622-1,Desert Lightning,2017,435,192 +70623-1,Destiny's Shadow,2017,435,344 +70624-1,Vermillion Invader,2017,435,304 +70625-1,Samurai VXL,2017,435,414 +70626-1,Dawn of Iron Doom,2017,435,680 +70627-1,Dragon's Forge,2017,435,1118 +706-3,12V Rail Contact Wire with Transformer Connector with Cap,1974,242,1 +706-4,Crane Grab Assembly,1984,443,3 +7065-1,Alien Mothership,2011,127,415 +7066-1,Earth Defense HQ,2011,127,877 +7067-1,Jet-Copter Encounter,2011,127,373 +70700-1,Space Swarmer,2013,146,86 +7070-1,Catapult Raft,2004,286,23 +70701-1,Swarm Interceptor,2013,146,217 +70702-1,Warp Stinger,2013,146,307 +70703-1,Star Slicer,2013,146,311 +70704-1,Vermin Vaporizer,2013,146,504 +70705-1,Bug Obliterator,2013,146,709 +70706-1,Crater Creeper,2013,146,172 +70707-1,CLS-89 Eradicator Mech,2013,146,439 +70708-1,Hive Crawler,2013,146,558 +70709-1,Galactic Titan,2013,146,1010 +707-1,Tile Brick Assortment,1984,443,50 +7071-1,Treasure Island,2004,286,30 +70720-1,Hover Hunter,2014,435,79 +7072-1,Captain Kragg's Pirate Boat,2004,286,41 +70721-1,Kai Fighter,2014,435,195 +70722-1,OverBorg Attack,2013,435,208 +70723-1,Thunder Raider,2014,435,333 +70724-1,NinjaCopter,2014,435,514 +70725-1,Nindroid MechDragon,2014,435,689 +70726-1,Destructoid,2014,435,252 +70727-1,X-1 Ninja Charger,2014,435,425 +70728-1,Battle for Ninjago City,2014,435,1216 +70730-1,Chain Cycle Ambush,2015,435,298 +7073-1,Pirate Dock,2004,286,63 +70731-1,Jay Walker One,2015,435,385 +70732-1,City of Stiix,2015,435,1067 +70733-1,Blaster Bike,2015,435,211 +70734-1,Master Wu Dragon,2015,435,575 +70735-1,Ronin R.E.X.,2015,435,545 +70736-1,Attack of the Morro Dragon,2015,435,655 +70737-1,Titan Mech Battle,2015,435,749 +70738-1,Final Flight of Destiny’s Bounty,2015,435,1256 +70739-1,Airjitzu Kai Flyer,2015,436,47 +70740-1,Airjitzu Jay Flyer,2015,436,46 +7074-1,Skull Island,2004,286,81 +70741-1,Airjitzu Cole Flyer,2015,436,46 +70742-1,Airjitzu Zane Flyer,2015,436,43 +70743-1,Airjitzu Morro Flyer,2015,436,47 +70744-1,Airjitzu Wrayth Flyer,2015,436,43 +70745-1,Anacondrai Crusher,2015,435,218 +70746-1,Condrai Copter Attack,2015,435,310 +70747-1,Boulder Blaster,2015,435,234 +70748-1,Titanium Dragon,2015,435,360 +70749-1,Enter the Serpent,2015,435,527 +70750-1,Ninja DB X,2015,435,754 +7075-1,Captain Redbeard's Pirate Ship,2004,286,139 +70751-1,Temple of Airjitzu,2015,435,2028 +7075-2,Captain Redbeard's Pirate Ship - Limited Edition with Motor,2004,286,2 +70752-1,Jungle Trap,2015,435,58 +70753-1,Lava Falls,2015,435,94 +70754-1,Jay's Electromech,2015,435,152 +70755-1,Jungle Raider,2015,435,187 +70756-1,Dojo Showdown,2015,435,214 +70778-1,Protector of Jungle,2015,360,70 +70779-1,Protector of Stone,2015,360,73 +70780-1,Protector of Water,2015,360,71 +7078-1,King's Battle Chariot,2009,193,103 +70781-1,Protector of Earth,2015,360,66 +70782-1,Protector of Ice,2015,360,68 +70783-1,Protector of Fire,2015,360,69 +70784-1,Lewa - Master of Jungle,2015,362,85 +70785-1,Pohatu - Master of Stone,2015,362,66 +70786-1,Gali - Master of Water,2015,362,87 +70787-1,Tahu - Master of Fire,2015,362,89 +70788-1,Kopaka - Master of Ice,2015,362,96 +70789-1,Onua - Master of Earth,2015,362,107 +70790-1,Lord of Skull Spiders,2015,361,145 +7079-1,Drawbridge Defense,2009,193,337 +70791-1,Skull Warrior,2015,324,99 +70792-1,Skull Slicer,2015,324,71 +70793-1,Skull Basher,2015,324,72 +70794-1,Skull Scorpio,2015,324,107 +70795-1,Mask Maker vs. Skull Grinder,2015,324,165 +70800-1,Escape Glider,2014,578,103 +7080-1,Scurvy Dog and Crocodile,2004,286,7 +70801-1,Melting Room,2014,578,122 +70802-1,Bad Cop's Pursuit,2014,578,313 +70803-1,Cloud Cuckoo Palace,2014,578,197 +70804-1,Ice Cream Machine,2014,578,343 +70805-1,Trash Chomper,2014,578,388 +70806-1,Castle Cavalry,2014,578,423 +70807-1,Metal Beard's Duel,2014,578,411 +70808-1,Super Cycle Chase,2014,578,513 +70809-1,Lord Business’ Hideout,2014,578,736 +708-1,12V Extension Cord Pack,1970,242,3 +70810-1,MetalBeard’s Sea Cow,2014,578,2741 +7081-1,Harry Hardtack and Monkey,2004,286,10 +70811-1,The Flying Flusher,2014,578,350 +70812-1,Creative Ambush,2014,578,473 +70813-1,Rescue Reinforcements,2014,578,857 +70814-1,Emmet’s Constructo-Mech,2014,578,705 +70815-1,Super Secret Police Dropship,2014,578,852 +70816-1,"Benny’s Spaceship, Spaceship, SPACESHIP!",2014,578,933 +70817-1,Batman & Super Angry Kitty Attack,2015,578,115 +70818-1,Double-Decker Couch,2015,578,197 +70819-1,Bad Cop Car Chase,2015,578,291 +7082-1,Cannonball Jimmy and Shark,2004,286,7 +708-3,Angle Brick / Landing Frame,1984,443,8 +70900-1,The Joker Balloon Escape,2017,484,123 +7090-1,Crossbow Attack,2007,193,54 +70901-1,Mr. Freeze Ice Attack,2017,484,195 +70902-1,Catwoman Catcycle Chase,2017,484,138 +70903-1,The Riddler Riddle Racer,2017,484,253 +70904,Clayface Splat Attack,2017,484,0 +70904-1,"Clayface"" Splat Attack",2017,484,448 +70905-1,The Batmobile,2017,484,580 +70906,LEGO® Batman Movie - The Joker™ Notorious Lowrider,2017,484,0 +70906-1,"The Joker"" Notorious Lowrider",2017,484,431 +70907-1,Killer Croc Tail-Gator,2017,484,459 +70908-1,The Scuttler,2017,484,774 +70909-1,Batcave Break-in,2017,484,1042 +709-1,Police Boat,1978,363,48 +70910-1,"Scarecrow"" Special Delivery",2017,484,203 +7091-1,Knights' Catapult Defense,2007,193,123 +70911-1,The Penguin™ Arctic Roller,2017,484,304 +70912-1,Arkham Asylum,2017,484,1621 +70913-1,"Scarecrow"" Fearful Face-off",2017,484,140 +70914-1,"Bane"" Toxic Truck Attack",2017,484,365 +70915-1,"Two-Face"" Double Demolition",2017,484,563 +70916-1,The Batwing,2017,484,1052 +709-2,Axle Assortment,1984,453,36 +7092-1,Skeletons' Prison Carriage,2007,193,193 +7093-1,Skeleton Tower,2007,193,401 +7094-1,King's Castle Siege,2007,193,921 +7097-1,Trolls' Mountain Fortress,2009,193,843 +7099-1,Accessory Motor for Boats,2004,289,1 +71000-0,Minifigure Series 9 [Random Bag],2013,544,0 +71000-1,Waiter - Complete Set,2013,544,7 +71000-10,Judge - Complete Set,2013,544,7 +71000-11,Alien Avenger - Complete Set,2013,544,7 +71000-12,Mermaid - Complete Set,2013,544,6 +71000-13,Battle Mech - Complete Set,2013,544,6 +71000-14,Mr. Good and Evil - Complete Set,2013,544,6 +71000-15,Forest Maiden - Complete Set,2013,544,7 +71000-16,Plumber - Complete Set,2013,544,6 +71000-17,Minifigures Series 9 - Complete,2013,544,16 +71000-18,Minifigure Series 9 (Box of 60),2013,544,60 +71000-2,Cyclops - Complete Set,2013,544,6 +71000-3,Hollywood Starlet - Complete Set,2013,544,6 +71000-4,Heroic Knight - Complete Set,2013,544,10 +71000-5,Roman Emperor - Complete Set,2013,544,6 +71000-6,Policeman - Complete Set,2013,544,7 +71000-7,Chicken Suit Guy - Complete Set,2013,544,5 +71000-8,Roller Derby Girl - Complete Set,2013,544,7 +71000-9,Fortune Teller - Complete Set,2013,544,7 +7100-1,Samsonite Large Educational Set,1963,523,0 +71001-0,Minifigure Series 10 [Random Bag],2013,545,0 +71001-1,Librarian - Complete Set,2013,545,7 +71001-10,Sea Captain - Complete Set,2013,545,7 +71001-11,Sad Clown - Complete Set,2013,545,6 +71001-12,Revolutionary Soldier - Complete Set,2013,545,6 +71001-13,Baseball Fielder - Complete Set,2013,545,5 +71001-14,Trendsetter - Complete Set,2013,545,7 +71001-15,Painter - Complete Set,2013,545,9 +71001-16,Motorcycle Mechanic - Complete Set,2013,545,6 +71001-17,Minifigures Series 10 - Complete (except Mr. Gold),2013,545,16 +71001-18,Minifigure Series 10 (Box of 60),2013,545,60 +71001-19,Mr. Gold - Complete Set,2013,545,5 +71001-2,Medusa - Complete Set,2013,545,5 +71001-3,Roman Commander - Complete Set,2013,545,8 +71001-4,Warrior Woman - Complete Set,2013,545,7 +71001-5,Tomahawk Warrior - Complete Set,2013,545,6 +71001-6,Skydiver - Complete Set,2013,545,6 +71001-7,Bumblebee Girl - Complete Set,2013,545,7 +71001-8,Grandpa - Complete Set,2013,545,7 +71001-9,Paintball Player - Complete Set,2013,545,7 +71002-0,Minifigure Series 11 [Random Bag],2013,547,0 +71002-1,Barbarian - Complete Set,2013,547,7 +71002-10,Welder - Complete Set,2013,547,7 +71002-11,Scientist - Complete Set,2013,547,7 +71002-12,Saxophone Player - Complete Set,2013,547,6 +71002-13,Diner Waitress - Complete Set,2013,547,10 +71002-14,Grandma - Complete Set,2013,547,7 +71002-15,Constable - Complete Set,2013,547,6 +71002-16,Lady Robot - Complete Set,2013,547,6 +71002-17,LEGO Collectable Minifigures Series 11 - Complete,2014,547,16 +71002-18,Minifigure Series 11 (Box of 60),2013,547,60 +71002-2,Scarecrow - Complete Set,2013,547,7 +71002-3,Pretzel Girl - Complete Set,2013,547,7 +71002-4,Evil Mech - Complete Set,2013,547,8 +71002-5,Island Warrior - Complete set,2013,547,8 +71002-6,Gingerbread Man - Complete Set,2013,547,5 +71002-7,Holiday Elf - Complete Set,2013,547,8 +71002-8,Yeti - Complete Set,2013,547,5 +71002-9,Mountain Climber - Complete Set,2013,547,7 +71004-0,LEGO Minifigures - The LEGO Movie Series [Random Bag],2014,549,0 +71004-1,Calamity Drone,2014,549,7 +71004-10,Larry the Barista,2014,549,6 +71004-11,Velma Staplebot,2014,549,6 +71004-12,Taco Tuesday Man,2014,549,10 +71004-13,'Where Are My Pants?' Guy,2014,549,6 +71004-14,Wiley Fusebot,2014,549,8 +71004-15,Panda Guy,2014,549,6 +71004-16,Marsha Queen of the Mermaids,2014,549,7 +71004-17,LEGO Minifigures - The LEGO Movie Series - Complete,2014,549,16 +71004-18,LEGO Minifigures - The LEGO Movie Series - Sealed Box,2014,549,60 +71004-2,President Business - Complete Set,2014,549,6 +71004-3,Hard Hat Emmet,2014,549,6 +71004-4,Wild West Wyldstyle,2014,549,6 +71004-5,Abraham Lincoln,2014,549,6 +71004-6,Mrs Scratchen-Post,2014,549,6 +71004-7,Scribble-Face Bad Cop,2014,549,7 +71004-8,William Shakespeare,2014,549,7 +71004-9,Gail the Construction Worker,2014,549,6 +71005-0,LEGO Minifigures - The Simpsons Series [Random Bag],2014,550,0 +71005-1,Homer Simpson,2014,550,6 +71005-10,Ralph Wiggum,2014,550,5 +71005-11,Apu Nahasapeemapetilon,2014,550,5 +71005-12,Nelson Muntz,2014,550,5 +71005-13,Itchy,2014,550,5 +71005-14,Scratchy,2014,550,6 +71005-15,Chief Wiggum,2014,550,6 +71005-16,Mr. Burns,2014,550,6 +71005-17,LEGO Minifigures - The Simpsons Series - Complete,2014,550,16 +71005-18,LEGO Minifigures - The Simpsons Series - Sealed Box,2014,550,60 +71005-2,Bart Simpson,2014,550,7 +71005-3,Marge Simpson,2014,550,7 +71005-4,Lisa Simpson,2014,550,6 +71005-5,Maggie Simpson,2014,550,4 +71005-6,Grampa Simpson,2014,550,5 +71005-7,Ned Flanders,2014,550,6 +71005-8,Krusty the Clown,2014,550,5 +71005-9,Milhouse Van Houten,2014,550,5 +71006-1,The Simpsons House,2014,50,2530 +71007-0,LEGO Minifigures Series 12 [Random Bag],2014,548,0 +71007-1,Wizard,2014,548,11 +71007-10,Dino Tracker,2014,548,7 +71007-11,Pizza Delivery Man,2014,548,7 +71007-12,Rock Star,2014,548,6 +71007-13,Swashbuckler,2014,548,7 +71007-14,Piggy Guy,2014,548,6 +71007-15,Genie Girl,2014,548,6 +71007-16,Spooky Girl,2014,548,7 +71007-17,LEGO Minifigures Series 12 - Complete,2014,548,16 +71007-18,LEGO Minifigures Series 12 - Sealed Box,2014,548,60 +71007-2,Hun Warrior,2014,548,10 +71007-3,Fairytale Princess,2014,548,6 +71007-4,Video Game Guy,2014,548,6 +71007-5,Battle Goddess,2014,548,9 +71007-6,Space Miner,2014,548,9 +71007-7,Lifeguard,2014,548,7 +71007-8,Prospector,2014,548,7 +71007-9,Jester,2014,548,7 +71008-0,LEGO Minifigures - Series 13 [Random Bag],2015,551,0 +71008-1,Classic King,2015,551,9 +71008-10,Evil Wizard,2015,551,10 +71008-11,Fencer,2015,551,6 +71008-12,Samurai,2015,551,8 +71008-13,Disco Diva,2015,551,8 +71008-14,Hot Dog Man,2015,551,5 +71008-15,Lady Cyclops,2015,551,6 +71008-16,Galaxy Trooper,2015,551,8 +71008-17,LEGO Minifigures Series 13 - Complete,2015,551,16 +71008-18,LEGO Minifigures Series 13 - Sealed Box,2015,551,60 +71008-2,Sheriff,2015,551,8 +71008-3,Unicorn Girl,2015,551,7 +71008-4,Snake Charmer,2015,551,7 +71008-5,Goblin,2015,551,7 +71008-6,Paleontologist,2015,551,7 +71008-7,Alien Trooper,2015,551,6 +71008-8,Egyptian Warrior,2015,551,7 +71008-9,Carpenter,2015,551,7 +71009-0,The Simpsons Series 2 {Random bag},2015,550,0 +71009-1,Homer,2015,550,5 +71009-10,Hans Moleman,2015,550,5 +71009-11,Selma,2015,550,6 +71009-12,Patty,2015,550,6 +71009-13,Groundskeeper Willie,2015,550,5 +71009-14,Edna Krabappel,2015,550,7 +71009-15,Smithers,2015,550,6 +71009-16,Dr Hibbert,2015,550,5 +71009-17,The Simpsons Series 2 - Complete,2015,550,16 +71009-18,The Simpsons Series 2 - Sealed Box,2015,550,60 +71009-2,Marge,2015,550,10 +71009-3,Lisa,2015,550,6 +71009-4,Maggie,2015,550,4 +71009-5,Bart,2015,550,6 +71009-6,Milhouse,2015,550,6 +71009-7,Comic Book Guy,2015,550,6 +71009-8,Martin,2015,550,5 +71009-9,Professor Frink,2015,550,5 +710-1,Wrecker with Car,1973,397,91 +71010-0,LEGO Minifigures - Series 14 {Random bag},2015,552,0 +71010-1,Wolf Guy,2015,552,6 +71010-10,Gargoyle,2015,552,6 +71010-11,Skeleton Guy,2015,552,6 +71010-12,Monster Rocker,2015,552,6 +71010-13,Zombie Businessman,2015,552,7 +71010-14,Banshee,2015,552,5 +71010-15,Square Foot,2015,552,5 +71010-16,Spider Lady,2015,552,7 +71010-17,LEGO Minifigures - Series 14 - Complete,2015,552,0 +71010-18,LEGO Minifigures - Series 14 - Sealed Box,2015,552,0 +71010-2,Zombie Pirate,2015,552,7 +71010-3,Monster Scientist,2015,552,6 +71010-4,Wacky Witch,2015,552,8 +71010-5,Plant Monster,2015,552,7 +71010-6,Fly Monster,2015,552,5 +71010-7, Spectre,2015,552,7 +71010-8,Zombie Cheerleader,2015,552,7 +71010-9,Tiger Woman,2015,552,7 +7101-1,Lightsaber Duel,1999,166,52 +71011-0,LEGO Minifigures - Series 15 {Random bag},2016,554,0 +71011-1,Farmer,2016,554,7 +71011-10,Ballerina,2016,554,6 +71011-11,Laser Mech,2016,554,9 +71011-12,Kendo Fighter,2016,554,7 +71011-13,Shark Suit Guy,2016,554,5 +71011-14,Wrestling Champion,2016,554,6 +71011-15,Jewel Thief,2016,554,8 +71011-16,Queen,2016,554,8 +71011-17,LEGO Minifigures - Series 15 - Complete,2016,554,0 +71011-18,LEGO Minifigures - Series 15 - Sealed Box,2016,554,0 +71011-2,Astronaut,2016,554,9 +71011-3,Frightening Knight,2016,554,10 +71011-4,Clumsy Guy,2016,554,7 +71011-5,Tribal Woman,2016,554,8 +71011-6,Flying Warrior,2016,554,11 +71011-7,Faun,2016,554,6 +71011-8,Animal Control Officer,2016,554,7 +71011-9,Janitor,2016,554,7 +71012-1,Stitch,2016,555,4 +71012-10,Donald Duck,2016,555,6 +71012-11,Minnie Mouse,2016,555,6 +71012-12,Mickey Mouse,2016,555,4 +71012-13,Mr. Incredible,2016,555,6 +71012-14,Syndrome,2016,555,6 +71012-15,Peter Pan,2016,555,7 +71012-16,Captain Hook,2016,555,6 +71012-17,Ursula,2016,555,6 +71012-18,Ariel,2016,555,7 +71012-19,LEGO Minifigures - Disney Series - Complete,2016,535,0 +71012-2,Alien,2016,555,4 +71012-3,Buzz Lightyear,2016,555,8 +71012-4,Aladdin,2016,555,6 +71012-5,Genie,2016,555,7 +71012-6,Maleficent,2016,555,10 +71012-7,Alice,2016,555,8 +71012-8,Cheshire Cat,2016,555,5 +71012-9,Daisy Duck,2016,555,6 +71013-1,Ice Queen,2016,556,12 +71013-10,Penguin Boy,2016,556,7 +71013-11,Rogue,2016,556,7 +71013-12,Dog Show Winner,2016,556,7 +71013-13,Mariachi,2016,556,7 +71013-14,Spy,2016,556,9 +71013-15,Banana Guy,2016,556,5 +71013-16,Babysitter,2016,556,8 +71013-17,LEGO Minifigures - Series 16 - Complete,2016,556,0 +71013-2,Desert Warrior,2016,556,6 +71013-3,Cyborg,2016,556,8 +71013-4,Cute Little Devil Set,2016,556,10 +71013-5,Spooky Boy,2016,556,7 +71013-6,Hiker,2016,556,8 +71013-7,Wildlife Photographer,2016,556,8 +71013-8,Kickboxer,2016,556,6 +71013-9,Scallywag Pirate,2016,556,7 +71014-1,Joachim Löw,2016,557,6 +71014-10,Toni Kroos (18),2016,557,6 +71014-11,Sami Khedira (6),2016,557,6 +71014-12,André Schürrle (9),2016,557,6 +71014-13,Marco Reus (21),2016,557,6 +71014-14,Christoph Kramer (20),2016,557,6 +71014-15,Mario Götze (19),2016,557,6 +71014-16,Max Kruse (23),2016,557,6 +71014-17,DFB Series - Complete,2016,557,0 +71014-2,Manuel Neuer (1),2016,557,6 +71014-3,Jérôme Boateng (17),2016,557,6 +71014-4,Mats Hummels (5),2016,557,6 +71014-5,Benedikt Höwedes (4),2016,557,6 +71014-6,Shkodran Mustafi (2),2016,557,6 +71014-7,Bastian Schweinsteiger (7),2016,557,6 +71014-8,Mesut Özil (8),2016,557,6 +71014-9,Thomas Müller (13),2016,557,6 +71016-1,The Kwik-E-Mart,2015,50,2176 +71017-1,Lobster-Lovin’ Batman™,2017,484,7 +71017-10,Pink Power Batgirl™,2017,484,8 +71017-11,Red Hood™,2017,484,8 +71017-12,The Eraser™,2017,484,6 +71017-13,Nurse Harley Quinn™,2017,484,7 +71017-14,Orca™,2017,484,5 +71017-15,Zodiac Master™,2017,484,6 +71017-16,Catman™,2017,484,9 +71017-17,March Harriet™,2017,484,6 +71017-18,The Calculator™,2017,484,8 +71017-19,King Tut™,2017,484,7 +71017-2,Glam Metal Batman™,2017,484,8 +71017-20,The Mime™,2017,484,7 +71017-21,The LEGO Batman Movie Series - Complete,2017,535,0 +71017-3,Fairy Batman™,2017,484,8 +71017-4,Clan of the Cave Batman™,2017,484,7 +71017-5,Vacation Batman™,2017,484,8 +71017-6,Barbara Gordon™,2017,484,8 +71017-7,Commissioner Gordon™,2017,484,7 +71017-8,The Joker™ – Arkham Asylum,2017,484,6 +71017-9,Dick Grayson™,2017,484,7 +71018-1,Professional Surfer,2017,611,6 +71018-10,Battle Dwarf,2017,611,9 +71018-11,Retro Spaceman,2017,611,7 +71018-12,Yuppie,2017,611,8 +71018-13,Rocket Boy,2017,611,7 +71018-14,Dance Instructor,2017,611,7 +71018-15,Elf-Girl,2017,611,7 +71018-16,Highwayman,2017,611,9 +71018-17,Minifigures - Series 17 - Complete 16 Sets,2017,611,0 +71018-18,LEGO Minifigures Series 17 - All Parts,2017,611,116 +71018-2,Circus Strong Man,2017,611,6 +71018-3,Gourmet Chef,2017,611,7 +71018-4,Corn Cob Guy,2017,611,5 +71018-5,Veterinarian,2017,611,6 +71018-6,Hot Dog Man,2017,611,9 +71018-7,Butterfly Girl,2017,611,10 +71018-8,Roman Gladiator,2017,611,6 +71018-9,Connoisseur,2017,611,7 +710-2,Lockable Storage Case,1966,371,1 +710-3,Universal Building Set,1983,469,364 +7103-1,Jedi Duel,2002,167,82 +71040-1,The Disney Castle,2016,608,4060 +7104-1,Desert Skiff,2000,169,55 +71042-1,Silent Mary,2017,263,2286 +710-6,Baseplate Assortment,1984,443,10 +7106-1,Droid Escape,2001,169,45 +7110-1,Landspeeder,1999,169,49 +711-1,Jeep CJ-5,1977,397,58 +7111-1,Droid Fighter,1999,166,62 +7113-1,Tusken Raider Encounter,2002,167,93 +7115-1,Gungan Patrol,2000,166,79 +7116-1,Tahu,2010,345,19 +71170-1,Starter Pack: PS3,2015,604,265 +7117-1,Gresh,2010,345,19 +71171-1,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,2015,604,265 +71172-1,LEGO® DIMENSIONS™ Xbox One Starter Pack,2015,604,265 +71173-1,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,2015,604,265 +71174-1,LEGO® DIMENSIONS™ Wii U™ Starter Pack,2015,604,265 +7119-1,Twin-Pod Cloud Car,2002,169,118 +71200-1,Dimensions Starter Pack,2015,604,265 +71201-1,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,2015,604,94 +71202-1,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,2015,604,96 +71203-1,LEGO® DIMENSIONS™ Portal® 2 Level Pack,2015,604,85 +71204-1,LEGO® DIMENSIONS™ Doctor Who Level Pack,2015,604,82 +71205-1,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,2015,604,103 +71206-1,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,2015,604,84 +71207-1,LEGO® DIMENSIONS® NINJAGO™ Team Pack,2015,604,98 +71209-1,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,2015,604,41 +712-1,Sea Plane,1977,412,115 +71210-1,LEGO® DIMENSIONS™ Cyborg™ Fun Pack,2015,604,50 +7121-1,Naboo Swamp,1999,166,82 +71211-1,LEGO® DIMENSIONS™ Bart Fun Pack,2015,604,34 +71212-1,LEGO® DIMENSIONS™ Fun Pack Emmet,2015,604,55 +71213-1,LEGO® DIMENSIONS™ Bad Cop Fun Pack,2015,604,62 +71214-1,LEGO® DIMENSIONS™ Benny Fun Pack ,2015,604,46 +71215-1,LEGO® DIMENSIONS™ Jay Fun Pack,2015,604,48 +71216-1,LEGO® DIMENSIONS™ Nya Fun Pack,2015,604,59 +71217-1,LEGO® DIMENSIONS™ Zane Fun Pack,2015,604,46 +71218-1,LEGO® DIMENSIONS™ Gollum Fun Pack,2015,604,39 +71219-1,LEGO® DIMENSIONS™ Legolas Fun Pack,2015,604,36 +71220-1,LEGO® DIMENSIONS™ Gimli Fun Pack,2015,604,56 +71221-1,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,2015,604,38 +71222-1,LEGO® DIMENSIONS™ Laval Fun Pack,2015,604,57 +71223-1,LEGO® DIMENSIONS™ Cragger Fun Pack,2015,604,45 +71227-1,LEGO® DIMENSIONS® Krusty Fun Pack,2015,604,38 +71228-1,The Ghostbusters Level Pack,2016,604,115 +71229-1,DC Comics Team Pack,2016,604,92 +71230-1,Doc Brown Fun Pack,2016,604,69 +71231-1,LEGO® DIMENSIONS™ Unikitty Fun Pack,2015,604,58 +71232-1,LEGO® DIMENSIONS™ Eris Fun Pack,2015,604,59 +71233-1,Stay Puft Fun Pack,2016,604,65 +71234-1,Sensei Wu Fun Pack,2016,604,58 +71235-1,Midway Arcade™ Level Pack,2016,604,96 +71236-1,Superman™ Fun Pack,2016,604,48 +71237-1,Aquaman and Aqua Watercraft,2016,604,43 +71238-1,Cyberman Fun Pack,2016,604,40 +71239-1,Lloyd Fun Pack,2016,604,56 +71240-1,Bane™ Fun Pack,2016,604,52 +7124-1,Flash Speeder,2000,166,107 +71241-1,Slimer Fun Pack,2016,604,33 +71242-1,Ghostbusters Story Pack,2016,604,258 +71244-1,Sonic the Hedgehog™ Level Pack,2016,604,101 +71245-1,Adventure Time Level Pack,2016,604,102 +71246-1,Adventure Time Team Pack,2016,604,96 +71247-1,Harry Potter Team Pack,2016,604,119 +71248-1,Mission: Impossible™ Level Pack,2016,604,76 +71251-1,A-Team Fun Pack,2016,604,73 +71253-1,Fantastic Beasts and Where to Find Them™ Story Pack,2016,604,261 +71256-1,Gremlins™ Team Pack,2016,604,94 +71257-1,Tina Goldstein Fun Pack,2016,604,51 +71258-1,E.T. the Extra-Terrestrial™ Fun Pack,2016,604,42 +7126-1,Battle Droid Carrier,2001,166,133 +7127-1,Imperial AT-ST,2001,169,107 +7128-1,Speeder Bikes,1999,169,93 +71285-1,Marceline the Vampire Queen,2016,604,60 +71286-1,Michael Knight and K.I.T.T. Knight Ryder Fun Pack,2017,604,54 +71300-1,Uxar Creature of Jungle,2016,324,87 +7130-1,Snowspeeder,1999,169,217 +71301-1,Ketar Creature of Stone,2016,324,78 +71302-1,Akida Creature of Water,2016,324,112 +71303-1,Ikir Creature of Fire,2016,324,72 +71304-1,Terak Creature of Earth,2016,324,55 +71305-1,Lewa Uniter of Jungle,2016,324,65 +71306-1,Pohatu Uniter of Stone,2016,324,85 +71307-1,Gali Uniter of Water,2016,324,72 +71308-1,Tahu Uniter of Fire,2016,324,132 +71309-1,Onua Uniter of Earth,2016,324,144 +71310-1,Umarak the Hunter,2016,324,150 +7131-1,Anakin's Podracer,1999,166,136 +71311-1,Kopaka and Melum - Unity set,2016,324,162 +71312-1,Ekimu the Mask Maker,2016,324,94 +71313-1,Lava Beast,2016,324,114 +71314-1,Storm Beast,2016,324,109 +71315-1,Quake Beast,2016,324,102 +71316-1,Umarak the Destroyer,2016,324,190 +7133-1,Bounty Hunter Pursuit,2002,167,254 +71340-1,Supergirl (DC Comics Playstation 4),2016,604,6 +7134-1,A-wing Fighter,2000,169,125 +71342-1,Green Arrow,2016,604,7 +7135-1,Takanuva,2010,345,21 +7136-1,Skrall,2010,345,21 +7137-1,Piraka,2010,345,15 +7138-1,Rahkshi,2010,345,18 +7139-1,Ewok Attack,2002,169,121 +7140-1,X-wing Fighter,1999,169,271 +7141-1,Naboo Fighter,1999,166,179 +7142-1,X-wing Fighter (re-release of 7140),2002,169,273 +7143-1,Jedi Starfighter,2002,167,139 +7144-1,Slave I,2000,169,166 +7145-1,Von Nebula,2010,403,156 +7146-1,TIE Fighter,2001,169,171 +7147-1,Xplode,2010,403,45 +7148-1,Meltdown,2010,403,49 +7150-1,TIE Fighter & Y-wing,1999,169,410 +715-1,Basic Building Set,1990,467,410 +7151-1,Sith Infiltrator,1999,166,244 +7152-1,TIE Fighter & Y-wing (re-release of 7150),2002,169,411 +7153-1,Jango Fett's Slave I,2002,167,360 +7155-1,Trade Federation AAT,2000,166,159 +7156-1,Corroder,2010,403,39 +7157-1,Thunder,2010,403,46 +7158-1,Furno Bike,2010,402,165 +7159-1,Star Wars Podracing Bucket,2000,166,292 +7160-1,Drop Ship,2010,402,393 +7161-1,Gungan Sub,1999,166,379 +7162-1,Rotor,2010,403,144 +7163-1,Republic Gunship,2002,167,697 +7164-1,Preston Stormer,2010,401,17 +7165-1,Natalie Breez,2010,401,19 +7166-1,Imperial Shuttle,2001,169,238 +7167-1,William Furno,2010,401,19 +7168-1,Dunkan Bulk,2010,401,17 +7169-1,Mark Surge,2010,401,19 +7170-2,Jimi Stringer,2010,401,17 +7171-1,Mos Espa Podrace,1999,166,913 +7172-1,Apple,2007,22,10 +7173-1,Pear,2007,22,10 +7174-1,Banana,2007,22,8 +7175-1,Grapes,2007,22,10 +7176-1,Watermelon - Capespan Promotional,2007,33,21 +7177-1,Orange,2007,22,8 +7178-1,Chef,2007,22,5 +7179-1,Dunkan Bulk and Vapor,2010,401,89 +7180-1,B-wing at Rebel Control Center,2000,169,346 +7181-1,TIE Interceptor - UCS,2000,174,702 +7184-1,Trade Federation MTT,2000,166,466 +7186-1,Watto's Junkyard,2001,166,449 +7187-1,Escape from Dragon's Prison,2011,196,185 +7188-1,King's Carriage Ambush,2011,196,286 +7189-1,Mill Village Raid,2011,196,667 +7190-1,Millennium Falcon,2000,169,671 +7191-1,X-wing Fighter - UCS,2000,174,1302 +7194-1,Yoda,2002,158,1076 +7195-1,Ambush in Cairo,2009,267,79 +7196-1,Chauchilla Cemetery Battle,2009,265,188 +7197-1,Venice Canal Chase,2009,266,420 +7198-1,Fighter Plane Attack,2009,266,383 +7199-1,Temple of Doom,2009,268,652 +7-2,Universal Building Set,1979,469,64 +7200-1,Final Duel I,2002,169,32 +720-1,Basic Building Set,1985,467,339 +7201-1,Final Duel II,2002,169,26 +720-2,Train with 12V Electric Motor,1969,234,357 +7203-1,Jedi Defense I,2002,166,59 +7204-1,Jedi Defense II,2002,166,53 +7206-1,Fire Helicopter,2010,58,341 +7207-1,Fire Boat,2010,58,305 +7208-1,Fire Station,2010,58,644 +7209-1,Pteranodon,2004,204,28 +7210-1,Apatosaurus,2004,204,33 +721-1,Steam Locomotive,1969,234,114 +7212-1,Sky Squad,2003,204,129 +7213-1,Off-Road Fire Truck & Fireboat,2010,58,387 +7214-1,Sea Plane,2004,110,119 +7216-1,Gold Good Guy - looking Right (Duracell 8 pack AA) {Turaga Lhikan},2006,324,22 +7216-2,Gold Good Guy - looking Left (Duracell 12 pack AA) {Turaga Lhikan},2006,324,22 +7216-3,Gold Good Guy - looking Right (Duracell 12 pack AA) {Turaga Lhikan},2006,324,22 +7217-1,Braca (Duracell 12 pack AA battery promotion),2006,324,16 +7217-2,Braca (Duracell 8 pack AA battery promotion),2006,324,16 +7218-1,Orange Speedboat,2004,204,26 +7219-1,Dinosaur,2004,204,34 +7220-1,Snowman,2004,227,19 +722-1,Universal Building Set,1980,469,302 +7221-1,Robots,2003,204,24 +7221-2,Robots - ANA Promotion,2003,204,23 +722-2,12V Electric Train with 2 Wagons,1970,234,151 +7222-1,Small Red Helicopter (Polybag),2003,204,28 +7223-1,Yellow Truck (Polybag),2003,204,34 +7223-2,Yellow Truck (Box version) - ANA Promotion,2003,204,36 +7224-1,"Santa, Tree, and Present",2003,22,34 +723-1,Diesel Locomotive,1970,234,95 +723-2,Diesel Locomotive with DB Sticker,1974,234,93 +7235-1,"Police Motorcycle, Black Logo",2005,61,28 +7235-2,Police Motorcycle - Blue Sticker Version,2008,61,28 +7236-1,"Police Car, Black Logo",2005,61,59 +7236-2,Police Car - Blue Sticker Version,2008,61,59 +7237-1,Police Station [Lighted Figure],2005,61,593 +7237-2,Police Station [No Lighted Figure],2006,61,606 +7238-1,Fire Helicopter,2005,58,75 +7239-1,Fire Truck,2005,58,215 +7240-1,Fire Station,2005,58,264 +724-1,12V Diesel Locomotive with Crane and Tipper Wagon,1972,234,150 +7241-1,Fire Car,2005,58,47 +7242-1,Street Sweeper,2005,63,64 +7243-1,Construction Site,2005,56,301 +7244-1,Speedboat,2005,50,107 +7245-1,"Prisoner Transport, Black Logo",2005,61,99 +7245-2,Prisoner Transport - Blue Sticker Version,2008,61,99 +7246-1,Mini Digger,2005,56,37 +7248-1,Digger,2005,56,128 +7249-1,XXL Mobile Crane,2005,56,525 +7250-1,Clone Scout Walker,2005,168,109 +725-1,Basic Building Set,1990,467,440 +7251-1,Darth Vader Transformation,2005,168,60 +725-2,12V Freight Train and Track,1974,234,310 +7252-1,Droid Tri-Fighter,2005,168,147 +7255-1,General Grievous Chase,2005,168,112 +7256-1,Jedi Starfighter & Vulture Droid,2005,168,202 +7257-1,Ultimate Lightsaber Duel,2005,168,278 +7258-1,Wookiee Attack,2005,168,368 +7259-1,ARC-170 Starfighter,2005,168,401 +7260-1,Wookiee Catamaran,2005,168,381 +726-1,12V Western Train with 2 Wagons and Cowboys,1976,233,287 +7261-1,Clone Turbo Tank [Light-Up Mace Windu],2005,168,803 +7261-2,Clone Turbo Tank (with Non-Light-Up Mace Windu),2006,168,814 +7262-1,TIE Fighter and Y-wing (TRU exclusive re-release),2004,169,415 +7263-1,TIE Fighter,2005,169,159 +7264-1,Imperial Inspection,2005,169,378 +7266-1,Fireman,2005,58,19 +7267-1,Paramedic,2005,60,13 +7268-1,Crab,2005,204,32 +7269-1,Scorpion,2005,204,37 +7270-1,Bird,2005,204,28 +727-1,12V Locomotive,1977,234,133 +7271-1,Apple - Suntory Promotional,2005,33,8 +7272-1,Pear - Suntory Promotional,2005,33,10 +7274-1,Orange - Suntory Promotional,2005,33,7 +7275-1,Cherry - Suntory Promotional,2005,33,11 +7276-1,Mango - Suntory Promotional,2005,33,6 +7278-1,Melon - Suntory Promotional,2005,33,8 +7279-1,Police Minifigure Collection,2011,61,57 +7280-1,Straight & Crossroad Plates,2005,62,2 +7281-1,T-Junction & Curved Road Plates,2005,62,2 +7283-1,Ultimate Space Battle,2005,168,540 +7285-1,Police Dog Unit,2011,61,95 +7286-1,Prisoner Transport,2011,61,173 +7287-1,Police Boat,2011,61,173 +7288-1,Mobile Police Unit,2011,61,407 +7290-1,Pirates Polybag,2004,286,5 +7291-1,Street Rebel,2012,22,196 +7292-1,Propeller Adventures,2012,22,244 +7294-1,Dino Quad,2005,384,39 +7295-1,Dino Buggy Chaser,2005,384,78 +7296-1,Dino 4WD Trapper,2005,384,282 +7297-1,Dino Track Transport,2005,384,351 +7298-1,Dino Air Tracker,2005,384,710 +7-3,Basic Set,1973,469,412 +7300-1,Double Hover,2001,135,21 +730-1,Steam Shovel with Carrier,1973,416,102 +7301-1,Rover,2001,135,29 +730-2,Basic Building Set,1985,467,432 +7302-1,Worker Robot,2001,135,30 +7303-1,Jet Scooter,2001,135,24 +7305-1,Scarab Attack,2011,437,44 +7306-1,Golden Staff Guardians,2011,437,70 +7307-1,Flying Mummy Attack,2011,437,124 +7308-1,Double Hover,2001,135,21 +7309-1,Rover,2001,135,29 +7310-1,Mono Jet,2001,135,34 +7311-1,Red Planet Cruiser,2001,135,73 +7312-1,T3-Trike,2001,135,99 +73129-1,Four TECHNIC Shocks,1985,453,4 +7313-1,Red Planet Protector,2001,135,193 +7314-1,Recon-Mech RP,2001,135,189 +7315-1,Solar Explorer,2001,135,249 +7316-1,Excavation Searcher,2001,135,467 +7317-1,Aero Tube Hanger,2001,135,716 +7320-1,Vega,2001,135,5 +7321-1,Mizar,2001,135,5 +7322-1,Altair,2001,135,5 +7323-1,Guard,2001,135,5 +7324-1,Advent Calendar 2005 City,2005,208,24 +7324-10,Advent Calendar 2005 City (Day 9) Construction Worker,2005,220,5 +7324-11,Advent Calendar 2005 City (Day 10) Wheelbarrow,2005,220,11 +7324-12,Advent Calendar 2005 City (Day 11) Barricade,2005,220,9 +7324-13,Advent Calendar 2005 City (Day 12) Train Worker,2005,220,6 +7324-14,Advent Calendar 2005 City (Day 13) Crossing Gate,2005,220,13 +7324-15,Advent Calendar 2005 City (Day 14) Signal Post,2005,220,11 +7324-16,Advent Calendar 2005 City (Day 15) Mechanic,2005,220,5 +7324-17,Advent Calendar 2005 City (Day 16) Drill Press,2005,220,11 +7324-18,Advent Calendar 2005 City (Day 17) Oil Barrel & Hand Truck,2005,220,7 +7324-19,Advent Calendar 2005 City (Day 18) Man with Radio,2005,220,5 +7324-2,Advent Calendar 2005 City (Day 1) Fireman,2005,220,5 +7324-20,Advent Calendar 2005 City (Day 19) RC Car,2005,220,8 +7324-21,Advent Calendar 2005 City (Day 20) Skateboard & Helmet,2005,220,4 +7324-22,Advent Calendar 2005 City (Day 21) Pizza Chef,2005,220,5 +7324-23,Advent Calendar 2005 City (Day 22) Food Counter,2005,220,6 +7324-24,Advent Calendar 2005 City (Day 23) Pizza Oven,2005,220,11 +7324-25,Advent Calendar 2005 City (Day 24) Santa & Sled,2005,220,23 +7324-3,Advent Calendar 2005 City (Day 2) Fire Hydrant Hose Airtanks,2005,220,10 +7324-4,Advent Calendar 2005 City (Day 3) Rescue Bucket,2005,220,7 +7324-5,Advent Calendar 2005 City (Day 4) Policeman,2005,220,5 +7324-6,Advent Calendar 2005 City (Day 5) Police Dog & Barricade,2005,220,8 +7324-7,Advent Calendar 2005 City (Day 6) Criminal and Buzz Saw,2005,220,5 +7324-8,Advent Calendar 2005 City (Day 7) Safe,2005,220,12 +7324-9,Advent Calendar 2005 City (Day 8) Welding Tanks & Torch,2005,220,12 +7325-1,Cursed Cobra Statue,2011,437,212 +7326-1,Rise of the Sphinx,2011,437,526 +7327-1,Scorpion Pyramid,2011,437,797 +733-1,Universal Building Set,1980,469,504 +7335-1,Foundation Set - Blue Bucket,2006,37,460 +7336-1,Foundation Set - Red Bucket,2006,37,427 +7344-1,Dump Truck,2005,56,187 +7345-1,Transport Chopper,2012,42,383 +7346-1,Seaside House,2012,43,415 +7347-1,Highway Pickup,2012,39,812 +735-1,Basic Building Set,1990,467,538 +7383-1,Creator Watch,2002,501,0 +740-1,Basic Building Set,1985,467,530 +740-2,12V Transformer for 220V Pack,1969,242,1 +7409-1,Secret of the Tomb,2003,300,42 +7410-1,Jungle River,2003,300,66 +741-1,12V New Transformer for 220V Pack,1974,242,1 +7411-1,Tygurah's Roar,2003,300,94 +7412-1,Yeti's Hideout,2003,300,114 +7413-1,Passage of Jun-Chi,2003,300,101 +7414-1,Elephant Caravan,2003,300,104 +7415-1,Aero Nomad,2003,300,120 +7416-1,Emperor's Ship,2003,300,178 +7417-1,Temple of Mount Everest,2003,300,288 +7418-1,Scorpion Palace,2003,300,354 +7418-2,Scorpion Palace and Foam Scimitar,2003,300,2 +7419-1,Dragon Fortress,2003,300,741 +7420-1,Thunder Blazer,2003,300,69 +742-1,12V New Transformer for 110V Pack,1970,242,1 +7422-1,Airplane,2003,300,33 +7422-2,Red Eagle,2003,300,33 +7423-1,Mountain Sleigh,2003,300,30 +7423-2,Mountain Sleigh (Kabaya Promotional),2003,300,30 +7424-1,Black Cruiser,2003,300,28 +7424-2,Small Car,2003,300,28 +744-1,Universal Building Set,1980,469,540 +745-1,"Baseplate, Green",1978,473,1 +7452-1,Lime/Black Racer,2007,120,34 +7453-1,Yellow/Black Racer,2007,120,28 +746-1,"Baseplates, Green and Yellow",1978,473,2 +7467-1,International Space Station,2003,387,162 +7468-1,Saturn V Moon Mission,2003,387,176 +7469-1,Mission to Mars,2003,387,416 +7470-1,Space Shuttle Discovery,2003,387,827 +747-1,"Baseplates, Red and Blue",1978,473,2 +7471-1,Mars Exploration Rover,2003,387,861 +7473-1,Street Sprinter vs. Mutant Lizard,2005,385,38 +7474-1,Urban Avenger vs. Raptor,2005,385,78 +7475-1,Fire Hammer vs. Mutant Lizards,2005,385,258 +7476-1,Iron Predator vs. T-Rex,2005,385,273 +7477-1,T-1 Typhoon vs. T-Rex,2005,385,579 +7498-1,Police Station,2011,61,785 +7499-1,Flexible Rails,2011,245,24 +75000-1,Clone Troopers vs. Droidekas,2013,167,124 +75001-1,Republic Troopers vs. Sith Troopers,2013,158,62 +75002-1,AT-RT,2013,165,222 +75003-1,A-wing Starfighter,2013,169,177 +75004-1,Z-95 Headhunter,2013,165,371 +75005-1,Rancor Pit,2013,169,380 +75006-1,LEGO Star Wars Jedi Starfighter and Kamino,2013,180,61 +75007-1,Republic Assault Ship & Coruscant,2013,158,74 +75008-1,LEGO Star Wars TIE Bomber and Asteroid Field,2013,180,60 +75009-1,Snowspeeder & Planet Hoth,2013,181,69 +750-1,8 Straight 12V Conducting Rails,1969,242,8 +75010-1,B-wing Starfighter & Planet Endor,2013,181,83 +7501-1,Bangle Minis,2003,500,32 +75011-1,Tantive IV & Planet Alderaan,2013,181,102 +75012-1,BARC Speeder with Sidecar,2013,165,225 +75013-1,Umbaran MHC (Mobile Heavy Cannon),2013,165,491 +75014-1,Battle Of Hoth,2013,169,415 +75015-1,Corporate Alliance Tank Droid,2013,168,271 +75016-1,Homing Spider Droid,2013,167,295 +75017-1,Duel on Geonosis,2013,167,391 +75018-1,JEK-14's Stealth Starfighter,2013,170,548 +75019-1,AT-TE,2013,167,792 +75020-1,Jabba’s Sail Barge,2013,169,848 +7502-1,Photo Minis,2003,500,30 +75021-1,Republic Gunship,2013,167,1173 +75022-1,Mandalorian Speeder,2013,170,210 +75023-1,"Advent Calendar 2013, Star Wars",2013,209,24 +75023-10,"Advent Calendar 2013, Star Wars (Day 9) - Republic Assault Ship",2013,225,12 +75023-11,"Advent Calendar 2013, Star Wars (Day 10) - Clone Trooper",2013,225,4 +75023-12,"Advent Calendar 2013, Star Wars (Day 11) - AT-TE Walker",2013,225,15 +75023-13,"Advent Calendar 2013, Star Wars (Day 12) - Republic Dropship",2013,225,11 +75023-14,"Advent Calendar 2013, Star Wars (Day 13) - Battle Droid",2013,225,5 +75023-15,"Advent Calendar 2013, Star Wars (Day 14) - Geonosian Starfighter",2013,225,11 +75023-16,"Advent Calendar 2013, Star Wars (Day 15) - Geonosian Warrior",2013,225,3 +75023-17,"Advent Calendar 2013, Star Wars (Day 16) - Geonosian Weapons Depot",2013,225,10 +75023-18,"Advent Calendar 2013, Star Wars (Day 17) - Naboo Cruiser",2013,225,16 +75023-19,"Advent Calendar 2013, Star Wars (Day 18) - Scout Trooper",2013,225,4 +75023-2,"Advent Calendar 2013, Star Wars (Day 1) - R5-F7",2013,225,4 +75023-20,"Advent Calendar 2013, Star Wars (Day 19) - Separatist Shuttle",2013,225,18 +75023-21,"Advent Calendar 2013, Star Wars (Day 20) - Jedi Starfighter",2013,225,13 +75023-22,"Advent Calendar 2013, Star Wars (Day 21) - Jango Fett's Slave I",2013,225,20 +75023-23,"Advent Calendar 2013, Star Wars (Day 22) - Young Boba Fett",2013,225,4 +75023-24,"Advent Calendar 2013, Star Wars (Day 23) - Jet Pack Sled",2013,225,16 +75023-25,"Advent Calendar 2013, Star Wars (Day 24) - Holiday Jango Fett",2013,225,9 +75023-3,"Advent Calendar 2013, Star Wars (Day 2) - Dooku's Solar Sailer",2013,225,11 +75023-4,"Advent Calendar 2013, Star Wars (Day 3) - FA-4 Pilot Droid",2013,225,9 +75023-5,"Advent Calendar 2013, Star Wars (Day 4) - Zam Wesell's Speeder",2013,225,14 +75023-6,"Advent Calendar 2013, Star Wars (Day 5) - Twin-Pod Cloud Car",2013,225,16 +75023-7,"Advent Calendar 2013, Star Wars (Day 6) - Endor Rebel Trooper",2013,225,4 +75023-8,"Advent Calendar 2013, Star Wars (Day 7) - Weapons Depot",2013,225,11 +75023-9,"Advent Calendar 2013, Star Wars (Day 8) - Republic Gunship",2013,225,14 +75024-1,HH-87 Starhopper,2014,165,361 +75025-1,Jedi Defender-class Cruiser,2013,170,925 +75028-1,Clone Turbo Tank,2014,162,96 +75029-1,AAT,2014,158,95 +75030-1,Millennium Falcon,2014,159,94 +75031-1,TIE Interceptor,2014,159,92 +75032-1,X-Wing Fighter,2014,159,97 +75033-1,Star Destroyer,2014,159,97 +75034-1,Death Star Troopers,2014,158,100 +75035-1,Kashyyyk Troopers,2014,158,99 +75036-1,Utapau Troopers,2014,158,83 +75037-1,Battle on Saleucami,2014,158,179 +75038-1,Jedi Interceptor,2014,158,222 +75039-1,V-Wing Starfighter,2014,158,200 +75040-1,General Grievous' Wheel Bike,2014,158,261 +7504-1,Friendship Frame / Mirror,2004,500,15 +75041-1,Vulture Droid,2014,158,204 +75042-1,Droid Gunship,2014,158,438 +75043-1,AT-AP,2014,158,715 +75044-1,Droid Tri-Fighter,2014,158,261 +75045-1,Republic AV-7 Anti-Vehicle Cannon,2014,158,434 +75046-1,Coruscant Police Gunship,2014,158,479 +75048-1,The Phantom,2014,182,233 +75049-1,Snowspeeder,2014,158,278 +75050-1,B-Wing,2014,158,447 +7505-1,Flowered Hair Bands,2004,500,16 +75051-1,Jedi Scout Fighter,2014,158,488 +75052-1,Mos Eisley Cantina,2014,169,614 +75053-1,The Ghost,2014,182,927 +75054-1,AT-AT,2014,169,1136 +75055-1,Imperial Star Destroyer,2014,158,1357 +75056-1,Advent Calendar 2014 Star Wars,2014,209,24 +75056-10,Advent Calendar 2014 Star Wars (Day 9) - Anakin's Jedi Starfighter,2014,225,13 +75056-11,Advent Calendar 2014 Star Wars (Day 10) - TIE Fighter,2014,225,11 +75056-12,Advent Calendar 2014 Star Wars (Day 11) - TIE Fighter Pilot,2014,225,4 +75056-13,Advent Calendar 2014 Star Wars (Day 12) - Luke's Landspeeder,2014,225,15 +75056-14,Advent Calendar 2014 Star Wars (Day 13) - Luke Skywalker,2014,225,4 +75056-15,Advent Calendar 2014 Star Wars (Day 14) - Moisture Vaporator ,2014,225,14 +75056-16,Advent Calendar 2014 Star Wars (Day 15) - Snowspeeder,2014,225,19 +75056-17,Advent Calendar 2014 Star Wars (Day 16) - Snowspeeder Pilot,2014,225,4 +75056-18,Advent Calendar 2014 Star Wars (Day 17) - Hoth Command Center,2014,225,16 +75056-19,Advent Calendar 2014 Star Wars (Day 18) - General Rieekan,2014,225,4 +75056-2,Advent Calendar 2014 Star Wars (Day 1) - Armored Assault Tank (AAT),2014,225,14 +75056-20,Advent Calendar 2014 Star Wars (Day 19) - Holiday Speeder Bike,2014,225,19 +75056-21,Advent Calendar 2014 Star Wars (Day 20) - Imperial Shuttle,2014,225,11 +75056-22,Advent Calendar 2014 Star Wars (Day 21) - Anakin's Y-wing Starfighter,2014,225,20 +75056-23,Advent Calendar 2014 Star Wars (Day 22) - Festive Astromech,2014,225,7 +75056-24,Advent Calendar 2014 Star Wars (Day 23) - Holiday Fireplace,2014,225,26 +75056-25,Advent Calendar 2014 Star Wars (Day 24) - Santa Darth Vader,2014,225,6 +75056-3,Advent Calendar 2014 Star Wars (Day 2) - Super Battle Droid,2014,225,4 +75056-4,Advent Calendar 2014 Star Wars (Day 3) - Republic Cannon,2014,225,18 +75056-5,Advent Calendar 2014 Star Wars (Day 4) - Clone Trooper with Santa Hat,2014,225,5 +75056-6,Advent Calendar 2014 Star Wars (Day 5) - Clone Trooper Weapon Station,2014,225,11 +75056-7,Advent Calendar 2014 Star Wars (Day 6) - Vulture Droid,2014,225,9 +75056-8,Advent Calendar 2014 Star Wars (Day 7) - Snowball Missle Launcher,2014,225,16 +75056-9,Advent Calendar 2014 Star Wars (Day 8) - Snowtrooper ,2014,225,4 +75058-1,MTT,2014,166,951 +75059-1,Sandcrawler,2014,169,3294 +75060-1,Slave I,2015,174,1994 +7506-1,Starry Bangles and Rings,2004,500,9 +7507-1,Jewels-n-Rings,2003,500,80 +75072-1,ARC-170 Starfighter,2015,159,95 +75073-1,Vulture Droid,2015,159,77 +75074-1,Snowspeeder,2015,159,97 +75075-1,AT-AT,2015,159,88 +75076-1,Republic Gunship,2015,159,105 +75077-1,Homing Spider Droid,2015,159,102 +75078-1,Imperial Troop Transport,2015,182,141 +75079-1,Shadow Troopers,2015,183,95 +75080-1,AAT,2015,166,251 +7508-1,Jewels-n-Bands,2003,500,80 +75081-1,T-16 Skyhopper,2015,169,246 +75082-1,TIE Advanced Prototype,2015,182,354 +75083-1,AT-DP,2015,182,498 +75084-1,Wookiee Gunship,2015,182,568 +75085-1,Hailfire Droid,2015,167,163 +75086-1,Battle Droid Troop Carrier,2015,166,565 +75087-1,Anakin's Custom Jedi Starfighter,2015,165,369 +75088-1,Senate Commando Troopers,2015,183,106 +75089-1,Geonosis Troopers,2015,183,105 +75090-1,Ezra's Speeder Bike,2015,182,267 +75090-2,Ezra's Speeder Bike,2015,182,253 +7509-1,Jewels-n-Clips,2003,500,72 +75091-1,Flash Speeder,2015,166,311 +75092-1,Naboo Starfighter,2015,166,440 +75093-1,Death Star Final Duel,2015,169,722 +75094-1,Imperial Shuttle Tydirium,2015,158,935 +75095-1,UCS TIE Fighter,2015,158,1683 +75096-1,Sith Infiltrator,2015,166,659 +75097-1,LEGO® Star Wars™ Advent Calendar,2015,225,292 +75098-1,Assault on Hoth,2016,174,2139 +75099-1,Rey's Speeder™,2015,158,192 +75100-1,First Order Snowspeeder™,2015,158,443 +7510-1,Trendy Tote Hot Pink,2003,500,89 +75101-1,First Order Special Forces TIE fighter™,2015,158,519 +75102-1,Poe’s X-Wing Fighter™,2015,158,715 +75103-1,First Order Transporter™,2015,158,783 +75104-1,Kylo Ren’s Command Shuttle™,2015,158,1002 +75105-1,Millennium Falcon™,2015,158,1328 +75106-1,Imperial Assault Carrier,2015,182,1214 +75107-1,Jango Fett™,2015,158,85 +75108-1,Clone Commander Cody™,2015,158,82 +75109-1,Obi-Wan Kenobi™,2015,158,83 +751-1,8 Curved 12V Conducting Rails,1969,242,8 +75110-1,Luke Skywalker™,2015,158,83 +7511-1,Trendy Tote Tangerine,2003,500,94 +75111-1,Darth Vader™,2015,158,160 +75112-1,General Grievous™,2015,158,186 +75113-1,Rey,2016,184,84 +75114-1,First Order Stormtrooper,2016,184,81 +75115-1,Poe Dameron,2016,184,101 +75116-1,Finn,2016,184,98 +75117-1,Kylo Ren,2016,184,86 +75118-1,Captain Phasma,2016,184,82 +75119-1,Sergeant Jyn Erso,2016,185,104 +75120-1,K-2SO,2016,185,169 +7512-1,Trendy Tote Sky Blue,2003,500,94 +75121-1,Imperial Death Trooper,2016,185,105 +75125-1,Resistance X-Wing Fighter,2016,184,87 +75126-1,First Order Snowspeeder,2016,184,91 +75127-1,The Ghost,2016,159,104 +75128-1,TIE Advanced Prototype,2016,182,93 +75129-1,Wookiee Gunship,2016,182,84 +75130-1,AT-DP,2016,182,76 +75131-1,Resistance Trooper Battle Pack,2016,184,112 +75132-1,First Order Battle Pack,2016,184,88 +75133-1,Rebel Alliance Battle Pack,2016,158,99 +75134-1,Galactic Empire™ Battle Pack,2016,158,109 +75135-1,Obi-Wan's Jedi Interceptor,2016,168,212 +75136-1,Droid Escape Pod,2016,169,196 +75137-1,Carbon-Freezing Chamber,2016,169,231 +75138-1,Hoth Attack,2016,169,230 +75139-1,Battle on Takodana,2016,184,403 +75140-1,Resistance Troop Transporter,2016,184,644 +7514-1,Sweet Dreamy Jewels,2004,500,12 +75141-1,Kanan's Speeder Bike,2016,182,226 +75142-1,Homing Spider Droid,2016,167,309 +75144-1,Snowspeeder,2017,158,1702 +75145-1,Eclipse Fighter,2016,170,363 +75146-1,Advent Calendar 2016 Star Wars,2016,209,282 +75147-1,StarScavenger,2016,170,557 +75148-1,Encounter on Jakku,2016,184,529 +75149-1,Resistance X-Wing Fighter,2016,184,738 +75150-1,Vader’s TIE Advanced vs. A-Wing Starfighter,2016,182,700 +75151-1,Clone Turbo Tank,2016,168,902 +75152-1,Imperial Assault Hovertank,2016,185,385 +75153-1,AT-ST Walker,2016,185,448 +75154-1,TIE Striker,2016,185,541 +75155-1,Rebel U-Wing Fighter,2016,185,657 +75156-1,Krennic’s Imperial Shuttle,2016,185,861 +75157-1,Captain Rex’s AT-TE,2016,182,969 +75158-1,Rebel Combat Frigate,2016,182,934 +75159-1,Death Star,2016,158,4023 +75160,U-wing,2017,158,107 +75160-1,U-wing,2017,185,108 +7516-1,Cool Starry Jewels,2004,500,52 +75161-1,Tie Striker Microfighter,2017,159,87 +75162-1,Y-wing,2017,158,90 +75163-1,Krennics Imperial Shuttle Microfighter,2017,159,77 +75164-1,Rebel Trooper Battle Pack,2017,185,119 +75165-1,Imperial Trooper Battle Pack,2017,185,112 +75166-1,First Order Transport Speeder Battle Pack,2017,612,115 +75167-1,"Bounty Hunter Speeder Bike"" Battle Pack",2017,158,125 +75168-1,Yoda's Jedi Starfighter,2017,165,262 +75169-1,Duel on Naboo,2017,166,207 +75170-1,The Phantom,2017,182,267 +75171-1,Battle on Scarif,2017,185,419 +75172-1,Y-Wing Starfighter,2017,185,688 +75173-1,Luke's Landspeeder,2017,169,148 +75174-1,Desert Skiff Escape,2017,158,284 +75175-1,A-Wing Starfighter,2017,158,356 +75178-1,Jakku Quadjumper,2017,158,455 +75180-1,"Rathtar"" Escape",2017,184,836 +7518-1,Cool Room Catchers,2003,500,113 +75182-1,Republic Fighter Tank,2017,168,302 +75183-1,"Darth Vader"" Transformation",2017,179,290 +75185-1,Tracker I,2017,158,557 +75186-1,The Arrowhead,2017,158,773 +75191-1,"Jedi Starfighter"" With Hyperdrive",2017,167,831 +7522-1,Let's Party,2003,500,3 +7523-1,Hip Hair Set,2005,500,16 +7524-1,Glamour Girl Purse,2004,500,18 +7525-1,Sunshine Picture Stand,2004,500,22 +7526-1,My Starry Notes,2004,500,27 +7527-1,Pretty in Pink Beauty Set,2005,500,136 +7528-1,Designer Desk Set,2004,500,71 +7529-1,Stylin' Stationery Set,2004,500,75 +7530-1,Starry Decoration Set,2004,500,71 +753-1,Automatic Right Electric Switch,1969,242,5 +7531-1,The Ultimate Jewelry Collection,2004,500,152 +7533-1,Pretty in Pink Jewels-n-More,2005,500,66 +7534-1,Stylin' Citrus Jewels-n-More,2005,500,67 +7535-1,Groovy Grape Jewels-n-More,2005,500,67 +7537-1,Cool Carry-All Set,2005,500,72 +7540-1,Friends 4-Ever Jewels & More,2005,500,66 +754-1,Automatic Left Electric Switch,1969,242,5 +7545-1,Pink & Pearls Jewels 'n' More,2006,500,68 +7546-1,Tropical Breeze Jewels 'n' More,2006,500,73 +7548-1,Fun Flamingo Frames 'n' More,2006,500,79 +7549-1,Totally Tropical Decor Set,2006,500,132 +755-1,Left and Right Switches,1974,242,12 +75523-1,Scarif Stormtrooper,2017,158,89 +75524-1,Chirrut Îmwe,2017,158,87 +75525-1,Baze Malbus,2017,158,147 +7553-1,Advent Calendar 2011 City,2011,208,24 +7553-10,Advent Calendar 2011 City (Day 9) Ice Fisherman,2011,220,5 +7553-11,Advent Calendar 2011 City (Day 10) Camp Fire and Fishing Pole,2011,220,6 +75531-1,"Stormtrooper"" Commander",2017,158,99 +7553-12,Advent Calendar 2011 City (Day 11) Wall with Doorway,2011,220,15 +7553-13,Advent Calendar 2011 City (Day 12) Wall with Small Window,2011,220,15 +7553-14,Advent Calendar 2011 City (Day 13) Police Officer with Radio,2011,220,5 +7553-15,Advent Calendar 2011 City (Day 14) Forensic Lab,2011,220,10 +7553-16,Advent Calendar 2011 City (Day 15) Police Car Base,2011,220,14 +7553-17,Advent Calendar 2011 City (Day 16) Police Car Middle Section,2011,220,11 +7553-18,Advent Calendar 2011 City (Day 17) Police Car Top Section,2011,220,7 +7553-19,Advent Calendar 2011 City (Day 18) Robber with Crowbar,2011,220,5 +7553-2,Advent Calendar 2011 City (Day 1) Robber with Snowball,2011,220,6 +7553-20,Advent Calendar 2011 City (Day 19) Safe with Gold Bars,2011,220,10 +7553-21,Advent Calendar 2011 City (Day 20) Orange Snowmobile,2011,220,8 +75532-1,"Scout Trooper"" & Speeder Bike",2017,169,447 +7553-22,Advent Calendar 2011 City (Day 21) Sled with Crate,2011,220,6 +7553-23,Advent Calendar 2011 City (Day 22) White Snowmobile,2011,220,8 +7553-24,Advent Calendar 2011 City (Day 23) Dog with Bone,2011,220,2 +7553-25,Advent Calendar 2011 City (Day 24) Santa and Fireplace,2011,220,18 +7553-3,Advent Calendar 2011 City (Day 2) Catapult,2011,220,8 +7553-4,Advent Calendar 2011 City (Day 3) Police Officer with Handcuffs,2011,220,5 +7553-5,Advent Calendar 2011 City (Day 4) Wall with Barred Window,2011,220,14 +7553-6,Advent Calendar 2011 City (Day 5) Wall with Large Window,2011,220,18 +7553-7,Advent Calendar 2011 City (Day 6) Christmas Tree,2011,220,18 +7553-8,Advent Calendar 2011 City (Day 7) Skateboard and Gifts,2011,220,13 +7553-9,Advent Calendar 2011 City (Day 8) Bed,2011,220,5 +7554-1,Pearly Pink Bracelet & Bands,2006,500,63 +7557-1,Blooms & Butterflies,2005,500,14 +7558-1,Shells & Starfish,2005,500,14 +7559-1,Sports & Stars,2005,500,14 +756-1,Electric Crossing,1974,242,5 +7566-1,Farmer,2010,57,16 +7567-1,Traveler,2010,63,21 +7569-1,Desert Attack,2010,271,57 +7570-1,The Ostrich Race,2010,271,169 +757-1,Storage Tray,1987,443,1 +7571-1,The Fight for the Dagger,2010,271,259 +7572-1,Quest Against Time,2010,271,506 +7573-1,Battle of Alamut,2010,271,821 +7574-1,Advent Calendar 2005 Clikits,2005,213,24 +7574-10,Advent Calendar 2005 Clikits (Day 9) Hair Band,2005,222,4 +7574-11,Advent Calendar 2005 Clikits (Day 10) Paper Clip,2005,222,10 +7574-12,Advent Calendar 2005 Clikits (Day 11) Picture Frame,2005,222,6 +7574-13,Advent Calendar 2005 Clikits (Day 12) Gift Tag with Icons,2005,222,4 +7574-14,Advent Calendar 2005 Clikits (Day 13) Hair Band,2005,222,7 +7574-15,Advent Calendar 2005 Clikits (Day 14) Ring,2005,222,3 +7574-16,Advent Calendar 2005 Clikits (Day 15) Hair Band,2005,222,7 +7574-17,Advent Calendar 2005 Clikits (Day 16) Gift Tag with Icons,2005,222,4 +7574-18,Advent Calendar 2005 Clikits (Day 17) Icons,2005,222,8 +7574-19,Advent Calendar 2005 Clikits (Day 18) Bracelet,2005,222,9 +7574-2,Advent Calendar 2005 Clikits (Day 1) Ring,2005,222,3 +7574-20,Advent Calendar 2005 Clikits (Day 19) Necklace,2005,222,4 +7574-21,Advent Calendar 2005 Clikits (Day 20) Paper Clip,2005,222,3 +7574-22,Advent Calendar 2005 Clikits (Day 21) Bangle,2005,222,2 +7574-23,Advent Calendar 2005 Clikits (Day 22) Hair Band,2005,222,4 +7574-24,Advent Calendar 2005 Clikits (Day 23) Gift Tag with Icons,2005,222,4 +7574-25,Advent Calendar 2005 Clikits (Day 24) Hair Grip,2005,222,3 +7574-3,Advent Calendar 2005 Clikits (Day 2) Hair Band,2005,222,7 +7574-4,Advent Calendar 2005 Clikits (Day 3) Necklace,2005,222,4 +7574-5,Advent Calendar 2005 Clikits (Day 4) Icons,2005,222,8 +7574-6,Advent Calendar 2005 Clikits (Day 5) Bangle,2005,222,3 +7574-7,Advent Calendar 2005 Clikits (Day 6) Magnet,2005,222,3 +7574-8,Advent Calendar 2005 Clikits (Day 7) Trinket Box,2005,222,3 +7574-9,Advent Calendar 2005 Clikits (Day 8) Magnet,2005,222,3 +7575-1,Advent Calendar 2004 Clikits,2004,213,24 +7575-10,Advent Calendar 2004 Clikits (Day 9) Bracelet,2004,222,4 +7575-11,Advent Calendar 2004 Clikits (Day 10) Hair Band,2004,222,5 +7575-12,Advent Calendar 2004 Clikits (Day 11) Icons,2004,222,10 +7575-13,Advent Calendar 2004 Clikits (Day 12) Necklace,2004,222,8 +7575-14,Advent Calendar 2004 Clikits (Day 13) Hair Band,2004,222,4 +7575-15,Advent Calendar 2004 Clikits (Day 14) Gift Tag with Icons,2004,222,4 +7575-16,Advent Calendar 2004 Clikits (Day 15) Ring,2004,222,4 +7575-17,Advent Calendar 2004 Clikits (Day 16) Necklace,2004,222,4 +7575-18,Advent Calendar 2004 Clikits (Day 17) Bangle,2004,222,2 +7575-19,Advent Calendar 2004 Clikits (Day 18) Paper Clip / Hair Clip,2004,222,10 +7575-2,Advent Calendar 2004 Clikits (Day 1) Paper Clip / Hair Clip,2004,222,3 +7575-20,Advent Calendar 2004 Clikits (Day 19) Picture Frame,2004,222,8 +7575-21,Advent Calendar 2004 Clikits (Day 20) Hair Band,2004,222,4 +7575-22,Advent Calendar 2004 Clikits (Day 21) Gift Tag with Icons,2004,222,4 +7575-23,Advent Calendar 2004 Clikits (Day 22) Paper Clip / Hair Clip,2004,222,3 +7575-24,Advent Calendar 2004 Clikits (Day 23) Hair Band,2004,222,5 +7575-25,Advent Calendar 2004 Clikits (Day 24) Carry Case,2004,222,5 +7575-3,Advent Calendar 2004 Clikits (Day 2) Bracelet,2004,222,4 +7575-4,Advent Calendar 2004 Clikits (Day 3) Hair Band,2004,222,7 +7575-5,Advent Calendar 2004 Clikits (Day 4) Ring,2004,222,10 +7575-6,Advent Calendar 2004 Clikits (Day 5) Picture Frame,2004,222,6 +7575-7,Advent Calendar 2004 Clikits (Day 6) Bangle,2004,222,2 +7575-8,Advent Calendar 2004 Clikits (Day 7) Gift Tag with Icons,2004,222,4 +7575-9,Advent Calendar 2004 Clikits (Day 8) Hair Band,2004,222,4 +7577-1,Winter Wonder Palace,2006,319,163 +7578-1,Ultimate Princesses,2006,319,158 +7579-1,Blossom Fairy,2006,319,49 +7580-1,The Skating Princess,2007,319,22 +758-1,Storage Tray,1987,443,1 +7581-1,Winter Royal Stables,2007,319,82 +7582-1,Royal Summer Palace,2007,319,174 +75821-1,Piggy Car Escape,2016,606,74 +75822-1,Piggy Plane Attack,2016,606,168 +75823-1,Bird Island Egg Heist,2016,606,282 +75824-1,Pig City Teardown,2016,606,385 +75825-1,Piggy Pirate Ship,2016,606,610 +75826-1,King Pig’s Castle,2016,606,854 +75827-1,Firehouse Headquarters,2016,301,4640 +75828-1,Ecto1 & 2,2016,607,552 +7583-1,Playful Puppy,2008,322,83 +7585-1,Pony Stable,2008,323,215 +7586-1,Sunshine Home,2008,322,448 +75870-1,Chevrolet Corvette Z06,2016,601,176 +7587-1,Pony Jumping,2008,323,57 +75871-1,Ford Mustang GT,2016,601,188 +75872-1,Audi R18 e-tron quattro,2016,601,168 +75873-1,Audi R8 LMS ultra,2016,601,178 +75874-1,Chevrolet Camaro Drag Race,2016,601,448 +75875-1,Ford F-150 Raptor & Ford Model A Hot Rod,2016,601,671 +75876-1,Porsche 919 Hybrid and 917K Pit Lane,2016,601,742 +75877-1,Mercedes-AMG GT3,2017,601,203 +75878-1,Bugatti Chiron,2017,601,181 +75879-1,Scuderia Ferrari SF16-H,2017,601,184 +75880-1,McLaren 720S,2017,601,160 +75881-1,2016 Ford GT & 1966 Ford GT40,2017,601,366 +75882-1,Ferrari FXX K & Development Center,2017,601,493 +75883-1,"MERCEDES AMG PETRONAS Formula One"" Team",2017,601,940 +75899-1,LaFerrari,2015,601,167 +75900-1,Mummy Museum Mystery,2015,603,109 +7590-1,Woody and Buzz to the Rescue,2010,275,92 +75901-1,Mystery Plane Adventures,2015,603,127 +75902-1,The Mystery Machine,2015,603,300 +75903-1,Haunted Lighthouse,2015,603,435 +75904-1,Mystery Mansion,2015,603,856 +75908-1,458 Italia GT2,2015,601,156 +75909-1,McLaren P1,2015,601,171 +759-1,Storage Cabinet,1985,443,1 +75910-1,Porsche 918 Spyder,2015,601,154 +7591-1,Construct-a-Zurg,2010,275,118 +75911-1,McLaren Mercedes Pit Stop,2015,601,340 +75912-1,Porsche 911 GT Finish Line,2015,601,561 +75913-1,F14 T & Scuderia Ferrari Truck,2015,601,889 +75915-1,Pteranodon Capture,2015,602,173 +75916-1,Dilophosaurus Ambush,2015,602,246 +75917-1,Raptor Rampage,2015,602,320 +75918-1,T-Rex Tracker,2015,602,519 +75919-1,Indominus rex™ Breakout,2015,602,1154 +75920-1,Raptor Escape,2015,602,391 +7592-1,Construct-a-Buzz,2010,275,205 +7593-1,Buzz's Star Command Spaceship,2010,275,251 +7594-1,Woody's Roundup!,2010,275,502 +7595-1,Army Men on Patrol,2010,275,90 +7596-1,Trash Compactor Escape,2010,275,367 +7597-1,Western Train Chase,2010,275,584 +7598-1,Pizza Planet Truck Rescue,2010,275,225 +7599-1,Garbage Truck Getaway,2010,275,404 +76000-1,Arctic Batman vs. Mr. Freeze: Aquaman on Ice,2013,484,197 +7600-1,Advent Calendar 2007 Belville,2007,210,24 +7600-10,Advent Calendar 2007 Belville (Day 9) Sleigh,2007,218,9 +7600-11,Advent Calendar 2007 Belville (Day 10) Snowman,2007,218,9 +76001-1,The Bat vs. Bane: Tumbler Chase,2013,484,366 +7600-12,Advent Calendar 2007 Belville (Day 11) Turret,2007,218,4 +7600-13,Advent Calendar 2007 Belville (Day 12) Rabbit,2007,218,3 +7600-14,Advent Calendar 2007 Belville (Day 13) Fruit Cup and Bottles,2007,218,9 +7600-15,Advent Calendar 2007 Belville (Day 14) Flowers,2007,218,8 +7600-16,Advent Calendar 2007 Belville (Day 15) Vanity Case,2007,218,5 +7600-17,Advent Calendar 2007 Belville (Day 16) Fireplace,2007,218,20 +7600-18,Advent Calendar 2007 Belville (Day 17) Frog Book and Jewel Case,2007,218,6 +7600-19,Advent Calendar 2007 Belville (Day 18) Teddy Bear,2007,218,5 +7600-2,Advent Calendar 2007 Belville (Day 1) Fairy with Wand,2007,218,2 +7600-20,Advent Calendar 2007 Belville (Day 19) Jelly and Ice Cream,2007,218,10 +7600-21,Advent Calendar 2007 Belville (Day 20) Dog and Bowl,2007,218,3 +76002-1,Superman: Metropolis Showdown,2013,489,119 +7600-22,Advent Calendar 2007 Belville (Day 21) Toy Ball,2007,218,13 +7600-23,Advent Calendar 2007 Belville (Day 22) Festive Wreath,2007,218,12 +7600-24,Advent Calendar 2007 Belville (Day 23) Toy Castle,2007,218,17 +7600-25,Advent Calendar 2007 Belville (Day 24) Christmas Tree and Presents,2007,218,9 +7600-3,Advent Calendar 2007 Belville (Day 2) Bed,2007,218,13 +76003-1,Superman: Battle of Smallville,2013,489,417 +7600-4,Advent Calendar 2007 Belville (Day 3) Vanity Unit,2007,218,8 +76004-1,Spider-Man: Spider-Cycle Chase,2013,488,236 +7600-5,Advent Calendar 2007 Belville (Day 4) Jewel Chest,2007,218,11 +76005-1,Spider-Man: Daily Bugle Showdown,2013,488,473 +7600-6,Advent Calendar 2007 Belville (Day 5) Cat,2007,218,6 +76006-1,Iron Man: Extremis Sea Port Battle,2013,490,194 +7600-7,Advent Calendar 2007 Belville (Day 6) Tea Set,2007,218,9 +76007-1,Iron Man: Malibu Mansion Attack,2013,490,363 +7600-8,Advent Calendar 2007 Belville (Day 7) Chair and Desk Lamp,2007,218,15 +76008-1,Iron Man vs. The Mandarin: Ultimate Showdown,2013,490,91 +7600-9,Advent Calendar 2007 Belville (Day 8) Kitten,2007,218,12 +76009-1,Superman: Black Zero Escape,2013,489,166 +760-1,Storage Cabinet,1985,443,5 +76010-1,The Penguin Face Off,2014,484,136 +76011-1,Batman: Man-Bat Attack,2014,484,183 +76012-1,Batman: The Riddler Chase,2014,484,303 +76013-1,The Joker Steam Roller,2014,484,485 +76014-1,Spider-Trike vs. Electro,2014,488,69 +76015-1,Doc Ock Truck Heist,2014,488,236 +76016-1,Spider-Helicopter Rescue,2014,488,298 +76017-1,Captain America vs. Hydra,2014,487,179 +76018-1,Hulk Lab Smash,2014,487,396 +76019-1,Starblaster Showdown,2014,483,195 +760-2,London Bus,1975,397,110 +76020-1,Knowhere Escape Mission,2014,483,432 +7602-1,Jeep,2006,22,46 +76021-1,The Milano Spaceship Rescue,2014,483,664 +76022-1,X-Men vs. The Sentinel,2014,491,335 +76023-1,The Tumbler,2014,485,1866 +76025-1,Green Lantern vs. Sinestro,2015,486,174 +76026-1,Gorilla Grodd Goes Bananas,2015,486,346 +76027-1,Black Manta Deep Sea Strike,2015,486,386 +76028-1,Darkseid Invasion,2015,486,543 +76029-1,Iron Man vs. Ultron,2015,487,92 +76030-1,Avengers Hydra Showdown,2015,487,219 +76031-1,The Hulk Buster Smash,2015,487,247 +76032-1,The Avengers Quinjet Chase,2015,487,720 +76034-1,Batboat Harbor Pursuit,2015,484,263 +76035-1,Jokerland,2015,484,1034 +76036-1,Carnage's Shield Sky Attack,2015,493,96 +76037-1,Rhino and Sandman Supervillain Team-up,2015,493,385 +76038-1,Attack on Avengers Tower,2015,487,513 +76039-1,Ant-Man Final Battle,2015,493,194 +76040-1,Brainiac Attack,2015,486,178 +7604-1,Dinosaur,2006,22,34 +76041-1,The Hydra Fortress Smash,2015,487,404 +76042-1,The SHIELD Helicarrier,2015,487,2995 +76044-1,Clash of the Heroes,2016,482,91 +76045-1,Kryptonite Interception,2016,482,308 +76046-1,Heroes of Justice: Sky High Battle,2016,482,516 +76047-1,Black Panther Pursuit,2016,493,284 +76048-1,Iron Skull Sub Attack,2016,487,333 +76049-1,Avenjet Space Mission,2016,487,521 +76050-1,Crossbones’ Hazard Heist,2016,493,178 +76051-1,Super Hero Airport Battle,2016,482,814 +76052-1,Batman Classic TV Series - Batcave,2016,484,2470 +76053-1,Gotham City Cycle Chase,2016,484,224 +76054-1,Batman: Scarecrow Harvest of Fear,2016,484,561 +76055-1,Batman: Killer Croc Sewer Smash,2016,484,757 +76056-1,Batman: Rescue from Ra's al Ghul,2016,484,256 +76057-1,Spider-Man: Web Warriors Ultimate Bridge Battle,2016,488,1090 +76058-1,Spider-Man: Ghost Rider Team-up,2016,488,216 +76059-1,Spider-Man: Doc Ock's Tentacle Trap,2016,488,445 +76060-1,Doctor Strange's Sanctum Sanctorum,2016,493,357 +7606-1,Frog,2006,22,33 +76061-1,Mighty Micros: Batman™ vs. Catwoman™,2016,482,79 +76062-1,Mighty Micros: Robin™ vs. Bane™,2016,482,77 +76063-1,Mighty Micros: The Flash™ vs. Captain Cold™,2016,482,88 +76064-1,Mighty Micros: Spider-Man vs. Green Goblin,2016,482,85 +76065-1,Mighty Micros: Captain America vs. Red Skull,2016,482,95 +76066-1,Mighty Micros: Hulk vs. Ultron,2016,482,80 +76067-1,Tanker Truck Takedown,2016,493,329 +76068-1,Mighty Micros: Superman™ vs. Bizarro™,2017,489,93 +76069-1,Mighty Micros: Batman vs. Killer Moth,2017,484,83 +76070-1,Mighty Micros: Wonder Woman vs. Doomsday,2017,482,85 +7607-1,Butterfly,2006,22,29 +76071-1,Mighty Micros: Spider-Man vs. Scorpion ,2017,488,79 +76072-1,Mighty Micros: Iron Man vs. Thanos,2017,482,94 +76073-1,Mighty Micros: Wolverine vs. Magneto,2017,493,84 +76075-1,"Wonder Woman"" Warrior Battle",2017,482,285 +76076-1,Captain America Jet Pursuit,2017,493,159 +76077-1,Iron Man: Detroit Steel Strikes,2017,493,376 +76078-1,Hulk vs. Red Hulk,2017,493,374 +76079-1,Ravager Attack,2017,483,196 +76080-1,Ayesha's Revenge,2017,483,304 +7608-1,Shark,2006,22,27 +76081-1,The Milano vs. The Abilisk,2017,483,456 +76082-1,ATM Heist Battle,2017,493,184 +76083-1,Beware the Vulture,2017,493,374 +7609-1,Helicopter,2006,24,28 +7610-1,Speedboat,2006,22,18 +7611-1,Police Car,2008,112,35 +7612-1,Muscle Car,2008,120,37 +7613-1,Track Racer,2008,120,34 +7615-1,Basic Blue Bucket,2009,37,471 +7616-1,Basic Red Bucket,2009,37,428 +7620-1,Motorcycle Chase,2008,266,79 +7621-1,Lost Tomb,2008,267,277 +7622-1,Race for the Stolen Treasure,2008,267,275 +7623-1,Temple Escape,2008,267,553 +7624-1,Jungle Duel,2008,265,91 +7625-1,River Chase,2008,265,233 +7626-1,Jungle Cutter,2008,265,515 +7627-1,Temple of the Crystal Skull,2008,265,929 +7628-1,Peril in Peru,2008,265,625 +7630-1,Front-End Loader,2009,56,107 +7631-1,Dump Truck,2009,56,184 +7632-1,Crawler Crane,2009,56,478 +7633-1,Construction Site,2009,56,897 +7634-1,Tractor,2009,57,77 +7635-1,4WD with Horse Trailer,2009,57,176 +7636-1,Combine Harvester,2009,57,364 +7637-1,Farm,2009,57,613 +7638-1,Tow Truck,2009,63,128 +7639-1,Camper,2009,63,164 +7641-1,City Corner,2009,63,484 +7642-1,Garage,2009,63,957 +7643-1,Air Show Plane,2009,53,114 +7644-1,MX-81 Hypersonic Operations Aircraft,2008,137,794 +7645-1,MT-61 Crystal Reaper,2008,137,598 +764521-1,Co-Pack,2008,52,0 +7646-1,ETX Alien Infiltrator,2008,137,328 +7647-1,MX-41 Switch Fighter,2008,137,234 +7648-1,MT-21 Mobile Mining Unit,2008,137,129 +7649-1,MT-201 Ultra-Drill Walker,2008,137,757 +7654-1,Droids Battle Pack,2007,168,102 +7655-1,Clone Troopers Battle Pack,2007,168,58 +7656-1,General Grievous Starfighter,2007,168,232 +7657-1,AT-ST,2007,169,243 +7658-1,Y-wing Fighter,2007,169,454 +7659-1,Imperial Landing Craft,2007,169,471 +7660-1,Naboo N-1 Starfighter and Vulture Droid,2007,166,279 +7661-1,Jedi Starfighter with Hyperdrive Booster Ring,2007,168,574 +7662-1,Trade Federation MTT,2007,166,1326 +7663-1,Sith Infiltrator,2007,166,310 +7664-1,TIE Crawler,2007,170,546 +7665-1,Republic Cruiser (Limited Edition - with R2-R7),2007,166,920 +7666-1,Hoth Rebel Base [Limited Edition - with K-3PO],2007,169,557 +7667-1,Imperial Dropship,2008,170,80 +7668-1,Rebel Scout Speeder,2008,170,81 +7669-1,Anakin's Jedi Starfighter,2008,165,152 +7669-2,Anakin's Jedi Starfighter Clone Wars White Box,2008,165,144 +7670-1,Hailfire Droid & Spider Droid,2008,167,249 +7670-2,Hailfire Droid & Spider Droid Clone Wars White Box,2008,165,249 +7671-1,AT-AP Walker,2008,168,392 +7672-1,Rogue Shadow,2008,170,481 +7673-1,Magna Guard Starfighter,2008,165,430 +7674-1,V-19 Torrent,2008,165,470 +7675-1,AT-TE Walker,2008,165,809 +7676-1,Republic Attack Gunship,2008,165,1033 +7678-1,Droid Gunship,2008,168,323 +7679-1,Republic Fighter Tank,2008,165,595 +7680-1,The Twilight - Limited Edition,2008,165,887 +7681-1,Separatist Spider Droid,2008,165,214 +7682-1,Shanghai Chase,2009,268,244 +7683-1,Fight on the Flying Wing,2009,267,375 +7684-1,Pig Farm & Tractor,2010,57,256 +7685-1,Dozer,2009,56,351 +7686-1,Helicopter Transporter,2009,63,381 +7687-1,Advent Calendar 2009 City,2009,208,24 +7687-10,Advent Calendar 2009 City (Day 9) Traffic Light,2009,220,7 +7687-11,Advent Calendar 2009 City (Day 10) Letter Carrier,2009,220,5 +7687-12,Advent Calendar 2009 City (Day 11) ATV,2009,220,17 +7687-13,Advent Calendar 2009 City (Day 12) Crate and Present,2009,220,9 +7687-14,Advent Calendar 2009 City (Day 13) Chef and Cup,2009,220,5 +7687-15,Advent Calendar 2009 City (Day 14) Coffee Stand,2009,220,17 +7687-16,Advent Calendar 2009 City (Day 15) Park Bench,2009,220,9 +7687-17,Advent Calendar 2009 City (Day 16) Street Cleaner,2009,220,5 +7687-18,Advent Calendar 2009 City (Day 17) Wheelbarrow and Snowballs,2009,220,14 +7687-19,Advent Calendar 2009 City (Day 18) Fountain,2009,220,9 +7687-2,Advent Calendar 2009 City (Day 1) Minifigure and Snowballs,2009,220,7 +7687-20,Advent Calendar 2009 City (Day 19) Child and RC Car,2009,220,12 +7687-21,Advent Calendar 2009 City (Day 20) RC Car Cones and Flag,2009,220,15 +7687-22,Advent Calendar 2009 City (Day 21) Lumberjack,2009,220,6 +7687-23,Advent Calendar 2009 City (Day 22) Chainsaw Sawhorse and Log,2009,220,14 +7687-24,Advent Calendar 2009 City (Day 23) Christmas Tree,2009,220,21 +7687-25,Advent Calendar 2009 City (Day 24) Santa and Fireplace,2009,220,26 +7687-3,Advent Calendar 2009 City (Day 2) Snowman,2009,220,10 +7687-4,Advent Calendar 2009 City (Day 3) Sleigh,2009,220,5 +7687-5,Advent Calendar 2009 City (Day 4) Minifigure on Skates,2009,220,7 +7687-6,Advent Calendar 2009 City (Day 5) Skate Stand,2009,220,12 +7687-7,Advent Calendar 2009 City (Day 6) Street Light with Garland,2009,220,12 +7687-8,Advent Calendar 2009 City (Day 7) Police Officer with Loudhailer,2009,220,5 +7687-9,Advent Calendar 2009 City (Day 8) Road Barrier,2009,220,11 +7688-1,Sports Plane,2010,53,105 +7690-1,MB-01 Eagle Command Base,2007,137,763 +7691-1,ETX Alien Mothership Assault,2007,137,433 +7692-1,MX-71 Recon Dropship,2007,137,434 +7693-1,ETX Alien Strike,2007,137,245 +7694-1,MT-31 Trike,2007,137,94 +7695-1,MX-11 Astro Fighter,2007,137,56 +7696-1,Commuter Jet,2011,53,107 +7697-1,MT-51 Claw-Tank Ambush,2007,137,373 +7699-1,MT-101 Armored Drilling Unit,2007,137,634 +7700-1,Stealth Hunter,2006,389,163 +770-1,Rescue Set,1976,420,142 +7701-1,Grand Titan,2006,389,196 +7702-1,Thunder Fury,2006,389,196 +7703-1,Fire Vulture,2006,389,176 +7704-1,Sonic Phantom,2006,389,216 +7705-1,Gate Assault,2006,389,401 +7706-1,Mobile Defense Tank,2006,389,371 +7707-1,Striking Venom,2006,389,645 +7708-1,Uplink,2006,389,68 +7709-1,Sentai Fortress,2006,389,1457 +7710-1,Push-Along Passenger Steam Train,1980,235,432 +7711-1,Sentry,2006,389,77 +7712-1,Supernova,2006,389,286 +7713-1,Bridge Walker vs. White Lightning,2006,389,652 +7714-1,Golden Guardian [Limited Gold Edition],2007,389,266 +7715-1,Push-Along Passenger Steam Train,1985,235,448 +7716-1,QUICK Good Guy White,2006,324,21 +7717-1,QUICK Bad Guy Green,2006,324,26 +7718-1,QUICK Bad Guy Yellow,2006,324,26 +7719-1,QUICK Good Guy Red,2006,324,21 +7720-1,"Diesel Freight Train Set, battery",1980,235,427 +7721-1,Combat Crawler X2,2007,389,580 +7722-1,"Steam Cargo Train, battery",1985,235,497 +7723-1,Police Pontoon Plane,2008,61,214 +7724-1,Advent Calendar 2008 City,2008,208,24 +7724-10,Advent Calendar 2008 City (Day 9) Ladder,2008,220,3 +7724-11,Advent Calendar 2008 City (Day 10) Chef and Paddle,2008,220,5 +7724-12,Advent Calendar 2008 City (Day 11) Table and Pizzas,2008,220,13 +7724-13,Advent Calendar 2008 City (Day 12) Oven,2008,220,9 +7724-14,Advent Calendar 2008 City (Day 13) Diver and Spear Gun,2008,220,1 +7724-15,Advent Calendar 2008 City (Day 14) Life Vest Fins and Bouy,2008,220,6 +7724-16,Advent Calendar 2008 City (Day 15) Underwater Scooter,2008,220,9 +7724-17,Advent Calendar 2008 City (Day 16) Police Officer and Camera,2008,220,2 +7724-18,Advent Calendar 2008 City (Day 17) Mug Shot Studio,2008,220,8 +7724-19,Advent Calendar 2008 City (Day 18) Criminal with Handcuffs,2008,220,5 +7724-2,Advent Calendar 2008 City (Day 1) Minifigure and Drumstick,2008,220,5 +7724-20,Advent Calendar 2008 City (Day 19) Train Worker,2008,220,4 +7724-21,Advent Calendar 2008 City (Day 20) Pallet Jack,2008,220,16 +7724-22,Advent Calendar 2008 City (Day 21) Pallet of Bottles,2008,220,18 +7724-23,Advent Calendar 2008 City (Day 22) Hiker with Ice Pick,2008,220,6 +7724-24,Advent Calendar 2008 City (Day 23) Snowmobile,2008,220,16 +7724-25,Advent Calendar 2008 City (Day 24) Female and Snowman,2008,220,15 +7724-3,Advent Calendar 2008 City (Day 2) Barbecue,2008,220,10 +7724-4,Advent Calendar 2008 City (Day 3) Table Cup and Frying Pan,2008,220,4 +7724-5,Advent Calendar 2008 City (Day 4) Female with Ice Cream,2008,220,5 +7724-6,Advent Calendar 2008 City (Day 5) Freezer Chest and Umbrella,2008,220,6 +7724-7,Advent Calendar 2008 City (Day 6) Ice Cream Cart and Sundae,2008,220,11 +7724-8,Advent Calendar 2008 City (Day 7) Fireman and Radio,2008,220,5 +7724-9,Advent Calendar 2008 City (Day 8) Kitten in a Tree,2008,220,6 +7725-1,Electric Passenger Train,1981,234,488 +7726-1,Coast Guard Truck with Speed Boat,2008,55,361 +7727-1,Freight Steam Train,1983,234,569 +7730-1,Electric Goods Train,1980,234,519 +7731-1,Mail Van,2008,50,65 +7732-1,Air Mail,2008,50,87 +7733-1,Truck & Forklift,2008,54,342 +7734-1,Cargo Plane,2008,54,462 +7735-1,Freight Train,1985,234,516 +7736-1,Coast Guard Quad Bike,2008,55,33 +7737-1,Off-Road Vehicle and Jet Scooter,2008,55,130 +7738-1,Coast Guard Helicopter and Life Raft,2008,55,447 +7739-1,Coast Guard Patrol Boat and Tower,2008,55,444 +7740-1,Inter-City Passenger Train,1980,234,784 +7741-1,Police Helicopter,2008,61,93 +7743-1,Police Command Center,2008,61,523 +7744-1,Police Headquarters,2008,61,957 +7745-1,High-Speed City Express Passenger Train,1985,234,735 +7746-1,Single-Drum Roller,2009,56,207 +7747-1,Wind Turbine Transport,2009,63,435 +7748-1,Corporate Alliance Tank Droid,2009,165,216 +7749-1,Echo Base,2009,169,155 +7750-1,Steam Engine,1980,234,267 +775-1,Fire Fighter Ship,1978,363,141 +7751-1,Ahsoka's Starfighter and Vulture Droid,2009,165,290 +7752-1,Count Dooku's Solar Sailer,2009,165,384 +7753-1,Pirate Tank,2009,165,371 +7754-1,Home One Mon Calamari Star Cruiser - Limited Edition,2009,169,788 +7755-1,Diesel Heavy Shunting Locomotive,1983,234,163 +7760-1,Diesel Shunter Locomotive,1980,234,151 +7770-1,Deep Sea Treasure Hunter,2007,310,79 +7771-1,Angler Ambush,2007,310,135 +7772-1,Lobster Strike,2007,310,224 +7773-1,Tiger Shark Attack,2007,310,341 +7774-1,Crab Crusher,2007,310,582 +7775-1,Aquabase Invasion,2007,310,850 +7776-1,The Shipwreck,2007,310,245 +7777-1,Idea Book 7777,1981,499,0 +7778-1,Midi-Scale Millennium Falcon,2009,169,355 +7779-1,The Batman Dragster: Catwoman Pursuit,2006,484,92 +7780-1,The Batboat: Hunt for Killer Croc,2006,484,194 +7781-1,The Batmobile: Two-Face's Escape,2006,484,392 +7782-1,The Batwing: The Joker's Aerial Assault,2006,484,529 +7783-1,The Batcave: The Penguin and Mr. Freeze's Invasion,2006,484,1090 +7784-1,The Batmobile Ultimate Collectors' Edition,2006,485,1045 +7785-1,Arkham Asylum,2006,484,868 +7786-1,The Batcopter: The Chase for the Scarecrow,2007,484,299 +7787-1,The Bat-Tank: The Riddler and Bane's Hideout,2007,484,651 +7789-1,Lotso's Dump Truck,2010,275,129 +7793-1,LEGO Standard Starter Set,2006,37,483 +7795-1,LEGO Deluxe Starter Set,2006,37,1092 +7796-1,House,2008,34,53 +7797-1,Bi-Plane,2008,24,37 +7798-1,Stegosaurus,2008,31,48 +7799-1,Cargo Chopper,2008,22,38 +7800-1,Off Road Racer,2009,120,28 +780-1,Road Construction Set,1976,416,159 +7801-1,Red Racer Polybag,2009,120,41 +7802-1,Black Racer Polybag,2009,120,28 +7803-1,Jeep,2009,30,38 +7804-1,Green Lizard,2009,22,33 +7805-1,Shark,2009,22,44 +7808-1,Yellow Airplane,2009,22,34 +7810-1,Push-Along Steam Engine,1980,235,96 +781-1,Storage Case,1982,473,1 +7813-1,Shell Tanker Wagon,1986,235,120 +7814-1,Crane Wagon with Small Container,1980,235,113 +7815-1,Passenger Carriage / Sleeper,1983,235,228 +7816-1,Shell Tanker Wagon,1980,235,111 +7817-1,Crane Wagon,1985,235,148 +7818-1,Passenger Carriage,1980,235,115 +7819-1,Postal Container Wagon Covered,1983,233,182 +7820-1,Mail Van,1980,233,211 +782-1,Storage Case,1984,473,1 +7821-1,Overhead Gantry and Lighting Maintenance Wagon,1983,235,90 +7822-1,Railway Station,1980,235,382 +7823-1,Container Crane Depot,1986,234,483 +7824-1,Railway Station,1983,235,478 +7825-1,Creator Bucket,2002,37,500 +7830-1,Small Blue Bucket,2002,37,200 +783-1,Storage Case,1985,473,1 +7831-1,Make-believe Bucket,2002,37,200 +7832-1,Small Blue Bucket,2002,37,200 +7834-1,Level Crossing Manual,1980,234,95 +7835-1,Manual Road Crossing,1985,235,134 +7836-1,Halloween Bucket,2003,206,200 +7837-1,Build and Create,2002,37,600 +7838-1,Freight Loading Depot with Wagon,1983,235,324 +7839-1,Car Transport Depot,1986,234,341 +7844-1,Duplo Airport Rescue Truck,2004,504,28 +7848-1,Toys 'R' Us Truck,2010,63,343 +7850-1,8 Straight Rails Gray 4.5v,1980,243,32 +785-1,Red Box,1973,473,1 +7851-1,8 Curved Rails Gray 4.5v,1980,243,32 +7852-1,Left and Right Points Manual Gray 4.5v,1980,243,14 +7853-1,"Crossing, Gray 4.5v",1980,243,5 +7854-1,8 Straight Electric Rails Gray 12v,1980,242,8 +7855-1,8 Curved Electric Rails Gray 12v,1980,242,8 +7856-1,Left and Right Manual Points with Electric Rails,1980,242,16 +7857-1,"Crossing, Electric Rails Gray 12v",1980,242,5 +78579-1,Action Pack (Target Exclusive),1998,50,4 +78579-2,Action Pack,1998,50,4 +7858-1,Remote Controlled Points Right 12v,1980,242,12 +7859-1,Remote Controlled Points Left 12v,1980,242,12 +78597-1,Extreme Action Pack,1999,87,3 +7860-1,Remote Controlled Signal 12v,1980,242,25 +786-1,Storage Cloth,1980,473,1 +7861-1,Lighting Set Electric 12v,1980,242,28 +7862-1,Remote Controlled Decoupling,1981,242,16 +7863-1,Remote Controlled Point Motor,1980,242,7 +7864-1,Transformer / Controller 12V,1980,242,34 +7865-1,12V Motor,1980,242,19 +7866-1,Remote Controlled Road Crossing,1983,234,194 +7867-1,12V Train Light Posts,1983,242,52 +78675-1,Exclusive RoboRiders Six Set Limited Edition Value Pack,2000,16,6 +7868-1,Mace Windu's Jedi Starfighter,2011,165,308 +7869-1,Battle for Geonosis,2011,165,335 +7870-1,Hans Christian Andersen Bucket,2005,37,499 +787-1,Play Mat with Drawstring,1977,473,1 +7871-1,Whale,2007,22,31 +7872-1,Lion,2007,31,57 +7873-1,Airplane,2007,24,38 +7875-1,Backhoe,2007,26,39 +7876-1,Cement Mixer,2007,26,44 +7877-1,Naboo Starfighter,2011,166,317 +78777-1,Alien Discovery,2000,135,3 +7879-1,Hoth Echo Base,2011,169,764 +78800-1,Soccer Bonus Set,2000,462,3 +7880-1,Big Pirate Ship,2006,504,34 +7881-1,Pirate Ship,2006,504,24 +7882-1,Shark Attack,2006,504,11 +7883-1,Treasure Hunt,2006,504,10 +7884-1,Batman's Buggy: The Escape of Mr. Freeze,2008,484,76 +7885-1,Robin's Scuba Jet: Attack of The Penguin,2008,484,207 +7886-1,The Batcycle: Harley Quinn's Hammer Truck,2008,484,273 +7888-1,The Tumbler: Joker's Ice Cream Surprise,2008,484,456 +7890-1,Ambulance,2006,60,117 +789-1,Storage Cloth,1987,473,1 +7891-1,Airport Firetruck,2006,53,147 +7892-1,Hospital,2006,60,385 +7893-1,Passenger Plane,2006,53,403 +7893-2,Passenger Plane - ANA version,2006,53,386 +7894-1,Airport,2006,53,704 +7894-2,Airport - ANA Version,2007,53,685 +7895-1,Switching Tracks,2006,245,8 +7896-1,Straight & Curved Rails,2006,245,16 +7897-1,Passenger Train,2006,240,494 +7898-1,Cargo Train Deluxe,2006,240,830 +7899-1,Police Boat,2006,61,199 +79000-1,Riddles for The Ring,2012,563,105 +7900-1,Heavy Loader,2006,56,348 +79001-1,Escape from Mirkwood Spiders,2012,563,298 +79002-1,Attack of the Wargs,2012,563,400 +79003-1,An Unexpected Gathering,2012,563,666 +79004-1,Barrel Escape,2012,563,333 +79005-1,The Wizard Battle,2013,567,113 +79006-1,The Council of Elrond,2013,567,242 +79007-1,Battle at the Black Gate,2013,569,655 +79008-1,Pirate Ship Ambush,2013,569,754 +79010-1,The Goblin King Battle,2012,563,838 +7901-1,Airplane Mechanic,2006,53,31 +79011-1,Dol Guldur Ambush,2013,564,217 +79012-1,Mirkwood Elf Army,2013,564,276 +79013-1,Lake-town Chase,2013,564,469 +79014-1,Dol Guldur Battle,2013,564,795 +79015-1,Witch-King Battle,2014,565,101 +79016-1,Attack on Lake-town,2014,565,313 +79017-1,The Battle of the Five Armies,2014,565,471 +79018-1,The Lonely Mountain,2014,565,864 +7902-1,Doctor's Car,2006,60,65 +7903-1,Rescue Helicopter,2006,60,248 +7904-1,Advent Calendar 2006 City,2006,208,24 +7904-10,Advent Calendar 2006 City (Day 9) Computer Desk & Chair,2006,220,8 +7904-11,Advent Calendar 2006 City (Day 10) Train Conductor with Signal Paddle,2006,220,6 +7904-12,Advent Calendar 2006 City (Day 11) Level Crossing and Signal,2006,220,22 +7904-13,Advent Calendar 2006 City (Day 12) Train Handcar,2006,220,17 +7904-14,Advent Calendar 2006 City (Day 13) Street Cleaner,2006,220,5 +7904-15,Advent Calendar 2006 City (Day 14) Street Cleaner's Pushcart,2006,220,13 +7904-16,Advent Calendar 2006 City (Day 15) Phone Kiosk,2006,220,12 +7904-17,Advent Calendar 2006 City (Day 16) Police Officer with Signal Paddle,2006,220,6 +7904-18,Advent Calendar 2006 City (Day 17) Police Barricade and Speed Limit Sign,2006,220,9 +7904-19,Advent Calendar 2006 City (Day 18) Speed Radar Gun,2006,220,7 +7904-2,Advent Calendar 2006 City (Day 1) Construction Worker,2006,220,5 +7904-20,Advent Calendar 2006 City (Day 19) Mechanic,2006,220,5 +7904-21,Advent Calendar 2006 City (Day 20) Tool Chest,2006,220,11 +7904-22,Advent Calendar 2006 City (Day 21) Work Bench with Vise,2006,220,13 +7904-23,Advent Calendar 2006 City (Day 22) Firefighter,2006,220,7 +7904-24,Advent Calendar 2006 City (Day 23) Water Cannon and Burning Oil Drum,2006,220,11 +7904-25,Advent Calendar 2006 City (Day 24) Santa Tree Gifts & Fireplace,2006,220,31 +7904-3,Advent Calendar 2006 City (Day 2) Traffic Control Sticks,2006,220,15 +7904-4,Advent Calendar 2006 City (Day 3) Traffic Cone Barricade Cement Finisher,2006,220,12 +7904-5,Advent Calendar 2006 City (Day 4) Airport Ground Crew,2006,220,8 +7904-6,Advent Calendar 2006 City (Day 5) Hand Truck and Luggage,2006,220,4 +7904-7,Advent Calendar 2006 City (Day 6) X-Ray Machine,2006,220,15 +7904-8,Advent Calendar 2006 City (Day 7) Doctor with bag,2006,220,5 +7904-9,Advent Calendar 2006 City (Day 8) Hospital Bed with IV Stand,2006,220,10 +7905-1,Building Crane,2006,56,726 +7906-1,Fireboat,2007,58,175 +7907-1,Advent Calendar 2007 City,2007,208,28 +7907-10,Advent Calendar 2007 City (Day 9) Radar,2007,220,10 +7907-11,Advent Calendar 2007 City (Day 10) Dock Worker,2007,220,4 +7907-12,Advent Calendar 2007 City (Day 11) Small Dock with Life Preserver,2007,220,9 +7907-13,Advent Calendar 2007 City (Day 12) Hand Truck and Load,2007,220,6 +7907-14,Advent Calendar 2007 City (Day 13) Mechanic and Wrench,2007,220,5 +7907-15,Advent Calendar 2007 City (Day 14) Car Wash Kiosk,2007,220,11 +7907-16,Advent Calendar 2007 City (Day 15) Cash Register and Display,2007,220,11 +7907-17,Advent Calendar 2007 City (Day 16) Train Worker and Briefcase,2007,220,5 +7907-18,Advent Calendar 2007 City (Day 17) Bench with Clock,2007,220,11 +7907-19,Advent Calendar 2007 City (Day 18) Signal Mast,2007,220,9 +7907-2,Advent Calendar 2007 City (Day 1) Firefighter and Saw,2007,220,5 +7907-20,Advent Calendar 2007 City (Day 19) Sanitary Engineer and Broom,2007,220,5 +7907-21,Advent Calendar 2007 City (Day 20) Dustbin and Shovel,2007,220,11 +7907-22,Advent Calendar 2007 City (Day 21) Dumpster,2007,220,13 +7907-23,Advent Calendar 2007 City (Day 22) Policeman with Megaphone,2007,220,5 +7907-24,Advent Calendar 2007 City (Day 23) Computer Desk and Chair,2007,220,10 +7907-25,Advent Calendar 2007 City (Day 24) Christmas Tree,2007,220,27 +7907-3,Advent Calendar 2007 City (Day 2) Fire Hydrant and Tools,2007,220,13 +7907-4,Advent Calendar 2007 City (Day 3) Crate with Burning Cylinders,2007,220,10 +7907-5,Advent Calendar 2007 City (Day 4) Construction Worker and Pickaxe,2007,220,5 +7907-6,Advent Calendar 2007 City (Day 5) Barricade,2007,220,12 +7907-7,Advent Calendar 2007 City (Day 6) Directional Sign,2007,220,22 +7907-8,Advent Calendar 2007 City (Day 7) Airline Worker and Radio,2007,220,5 +7907-9,Advent Calendar 2007 City (Day 8) Luggage Cart,2007,220,9 +79100-1,Kraang Lab Escape,2013,570,90 +7910-1,Robot Promotional (Duracell),2004,204,29 +79101-1,Shredder's Dragon Bike,2013,570,197 +79102-1,Stealth Shell in Pursuit,2013,570,160 +79103-1,Turtle Lair Attack,2013,570,485 +79104-1,The Shellraiser Street Chase,2013,570,618 +79104-2,The Shellraiser Street Chase V2.0,2013,570,649 +79104-3,The Shellraiser Street Chase (Technic Base Version),2013,570,635 +79105-1,Baxter Robot Rampage,2013,570,396 +79106-1,Cavalry Builder Set,2013,575,70 +79107-1,Comanche Camp,2013,575,161 +79108-1,Stagecoach Escape,2013,575,279 +79109-1,Colby City Showdown,2013,575,585 +791-1,Storage Box - Red,1972,473,1 +79110-1,Silver Mine Shootout,2013,575,642 +7911-1,Ship Promotional (Duracell),2004,204,33 +79111-1,Constitution Train Chase,2013,575,701 +79115-1,Turtle Van Takedown,2014,570,367 +79116-1,Big Rig Snow Getaway,2014,570,741 +79117-1,Turtle Lair Invasion,2014,570,885 +79118-1,Karai Bike Escape,2014,570,87 +79119-1,Mutation Chamber Unleashed,2014,570,195 +79120-1,T-Rawket Sky Strike,2014,570,285 +7912-1,Helicopter Promotional (Duracell),2004,204,26 +79121-1,Turtle Sub Undersea Chase,2014,570,682 +79122-1,Shredder’s Lair Rescue,2014,570,476 +7913-1,Clone Trooper Battle Pack,2011,165,85 +7914-1,Mandalorian Battle Pack,2011,165,68 +7915-1,Imperial V-wing Starfighter,2011,168,138 +7917-1,McDonald's Sports Set Number 3 - Blue Basketball Player #22,2004,459,4 +7918-1,McDonald's Sports Set Number 8 - Green Basketball Player #35,2004,459,4 +7919-1,McDonald's Sports Set Number 4 - White Hockey Player #5,2004,461,3 +7920-1,McDonald's Sports Set Number 5 - Blue Hockey Player #4,2004,461,3 +792-1,Storage Box - White,1972,473,1 +7921-1,McDonald's Sports Set Number 7 - Gray Vest Skateboarder,2004,460,5 +7922-1,McDonald's Sports Set Number 6 - Orange Vest Snowboarder,2004,460,4 +7923-1,McDonald's Sports Set Number 1 - White Soccer Player #4,2004,462,2 +7924-1,McDonald's Sports Set Number 2 - Red Soccer Player #11,2004,462,2 +7929-1,The Battle of Naboo,2011,166,241 +7930-1,Bounty Hunter Gunship,2011,165,389 +793-1,Storage Box - Blue,1972,473,1 +7931-1,T6 Jedi Shuttle,2011,165,391 +7936-1,Level Crossing,2010,233,138 +7937-1,Train Station,2010,233,367 +7938-1,Passenger Train,2010,240,668 +7939-1,Cargo Train,2010,240,838 +794-1,Storage Box - Yellow,1972,473,1 +7942-1,Off-Road Fire Rescue,2007,58,130 +7944-1,Fire Hovercraft,2007,58,273 +7945-1,Fire Station,2007,58,603 +7946-1,King's Castle,2010,196,932 +7947-1,Prison Tower Rescue,2010,196,365 +7948-1,Outpost Attack,2010,196,193 +7949-1,Prison Carriage Rescue,2010,196,50 +7950-1,Knight's Showdown,2010,196,61 +795-1,"Baseplates, Red and Blue",1971,473,2 +7952-1,Advent Calendar 2010 Kingdoms,2010,211,24 +7952-10,Advent Calendar 2010 Kingdoms (Day 9) - Chest with Jewels,2010,219,5 +7952-11,Advent Calendar 2010 Kingdoms (Day 10) - Skeleton,2010,219,6 +7952-12,Advent Calendar 2010 Kingdoms (Day 11) - Dungeon Cell Window with Handcuffs,2010,219,14 +7952-13,Advent Calendar 2010 Kingdoms (Day 12) - Pig with Apple,2010,219,2 +7952-14,Advent Calendar 2010 Kingdoms (Day 13) - Prince with Sword,2010,219,5 +7952-15,Advent Calendar 2010 Kingdoms (Day 14) - Sword in the Stone,2010,219,6 +7952-16,Advent Calendar 2010 Kingdoms (Day 15) - Jousting Dummy with Helmet and Halberd,2010,219,8 +7952-17,Advent Calendar 2010 Kingdoms (Day 16) - Barmaid,2010,219,4 +7952-18,Advent Calendar 2010 Kingdoms (Day 17) - Keg with Tap,2010,219,9 +7952-19,Advent Calendar 2010 Kingdoms (Day 18) - Cauldron,2010,219,3 +7952-2,Advent Calendar 2010 Kingdoms (Day 1) - Blacksmith with Hammer,2010,219,5 +7952-20,Advent Calendar 2010 Kingdoms (Day 19) - Lion Knight with Spear,2010,219,5 +7952-21,Advent Calendar 2010 Kingdoms (Day 20) - Catapult,2010,219,7 +7952-22,Advent Calendar 2010 Kingdoms (Day 21) - Lion Knight Scale Mail with Quiver and Crossbow,2010,219,6 +7952-23,Advent Calendar 2010 Kingdoms (Day 22) - Owl in Tree,2010,219,6 +7952-24,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,2010,219,12 +7952-25,Advent Calendar 2010 Kingdoms (Day 24) - Blue Wizard with Wand,2010,219,6 +7952-3,Advent Calendar 2010 Kingdoms (Day 2) - Anvil and Forge with Sword,2010,219,13 +7952-4,Advent Calendar 2010 Kingdoms (Day 3) - Weapons Rack,2010,219,11 +7952-5,Advent Calendar 2010 Kingdoms (Day 4) - Dragon Knight with Flail,2010,219,5 +7952-6,Advent Calendar 2010 Kingdoms (Day 5) - Weapons Cart with Spear,2010,219,9 +7952-7,Advent Calendar 2010 Kingdoms (Day 6) - Armor Rack with Plate Armor and Helmet,2010,219,7 +7952-8,Advent Calendar 2010 Kingdoms (Day 7) - Queen with Frog,2010,219,6 +7952-9,Advent Calendar 2010 Kingdoms (Day 8) - Throne,2010,219,7 +7953-1,Court Jester,2010,196,22 +7955-1,Wizard,2010,196,19 +7956-1,Ewok Attack,2011,169,166 +7957-1,Sith Nightspeeder,2011,165,213 +7958-1,Advent Calendar 2011 Star Wars,2011,209,25 +7958-10,Advent Calendar 2011 Star Wars (Day 9) - X-wing Fighter,2011,225,23 +7958-11,Advent Calendar 2011 Star Wars (Day 10) - Imperial Shuttle,2011,225,9 +7958-12,Advent Calendar 2011 Star Wars (Day 11) - Battle Droid Pilot,2011,225,6 +7958-13,Advent Calendar 2011 Star Wars (Day 12) - Rebel Snowspeeder,2011,225,17 +7958-14,Advent Calendar 2011 Star Wars (Day 13) - R2-Q5,2011,225,4 +7958-15,Advent Calendar 2011 Star Wars (Day 14) - Mouse Droid,2011,225,9 +7958-16,Advent Calendar 2011 Star Wars (Day 15) - Republic Gunship,2011,225,14 +7958-17,Advent Calendar 2011 Star Wars (Day 16) - Clone Pilot,2011,225,4 +7958-18,Advent Calendar 2011 Star Wars (Day 17) - Weapon Depot,2011,225,10 +7958-19,Advent Calendar 2011 Star Wars (Day 18) - Anakin's Y-wing Starfighter,2011,225,20 +7958-2,Advent Calendar 2011 Star Wars (Day 1) - Republic Cruiser,2011,225,19 +7958-20,Advent Calendar 2011 Star Wars (Day 19) - TIE Defender Pilot,2011,225,4 +7958-21,Advent Calendar 2011 Star Wars (Day 20) - TIE Fighter,2011,225,7 +7958-22,Advent Calendar 2011 Star Wars (Day 21) - Millennium Falcon,2011,225,13 +7958-23,Advent Calendar 2011 Star Wars (Day 22) - A-wing Fighter,2011,225,9 +7958-24,Advent Calendar 2011 Star Wars (Day 23) - Christmas Tree,2011,225,18 +7958-25,Advent Calendar 2011 Star Wars (Day 24) - Santa Yoda,2011,225,7 +7958-3,Advent Calendar 2011 Star Wars (Day 2) - Nute Gunray,2011,225,4 +7958-4,Advent Calendar 2011 Star Wars (Day 3) - Mechno-Chair,2011,225,13 +7958-5,Advent Calendar 2011 Star Wars (Day 4) - Separatist Spider Droid,2011,225,20 +7958-6,Advent Calendar 2011 Star Wars (Day 5) - Boba Fett's Slave I,2011,225,20 +7958-7,Advent Calendar 2011 Star Wars (Day 6) - Chewbacca,2011,225,3 +7958-8,Advent Calendar 2011 Star Wars (Day 7) - Tool Depot,2011,225,9 +7958-9,Advent Calendar 2011 Star Wars (Day 8) - Zev Senesca,2011,225,4 +7959-1,Geonosian Starfighter,2011,165,163 +796-1,"Baseplates, Green and Yellow",1971,473,2 +7961-1,Darth Maul's Sith Infiltrator,2011,166,478 +7962-1,Anakin's and Sebulba's Podracers,2011,166,810 +7964-1,Republic Frigate,2011,165,1030 +7965-1,Millennium Falcon,2011,169,1253 +7967-1,Fast,2010,116,68 +7968-1,Strong,2010,116,90 +7970-1,Hero,2010,116,67 +797-1,"2 large baseplates, gray/white",1971,473,2 +7971-1,Bad,2010,116,71 +7976-1,Ocean Speeder,2011,315,53 +7977-1,Seabed Strider,2011,315,104 +7978-1,Angler Attack,2011,315,200 +7979-1,Advent Calendar 2008 Castle,2008,211,24 +7979-10,Advent Calendar 2008 Castle (Day 9) - Crossbow on Wheels,2008,219,7 +7979-11,Advent Calendar 2008 Castle (Day 10) - Dwarf with Pick Axe,2008,219,6 +7979-12,Advent Calendar 2008 Castle (Day 11) - Fire and Crystal,2008,219,6 +7979-13,Advent Calendar 2008 Castle (Day 12) - Container on Wheels,2008,219,10 +7979-14,Advent Calendar 2008 Castle (Day 13) - Tools Storage with Frog,2008,219,4 +7979-15,Advent Calendar 2008 Castle (Day 14) - Evil Witch,2008,219,5 +7979-16,Advent Calendar 2008 Castle (Day 15) - Cooking Pot with Snake,2008,219,9 +7979-17,Advent Calendar 2008 Castle (Day 16) - Shelving with Bat,2008,219,12 +7979-18,Advent Calendar 2008 Castle (Day 17) - Crystal Ball,2008,219,5 +7979-19,Advent Calendar 2008 Castle (Day 18) - Maid with Broom and Rat,2008,219,6 +7979-2,Advent Calendar 2008 Castle (Day 1) - Soldier with Spear,2008,219,5 +7979-20,Advent Calendar 2008 Castle (Day 19) - Food Basket,2008,219,4 +7979-21,Advent Calendar 2008 Castle (Day 20) - Dinner Table,2008,219,17 +7979-22,Advent Calendar 2008 Castle (Day 21) - Troll Warrior,2008,219,5 +7979-23,Advent Calendar 2008 Castle (Day 22) - Catapult,2008,219,14 +7979-24,Advent Calendar 2008 Castle (Day 23) - Treasure Chest with Spider,2008,219,6 +7979-25,Advent Calendar 2008 Castle (Day 24) - Jester,2008,219,4 +7979-3,Advent Calendar 2008 Castle (Day 2) - Brick Arch with Flag and Shield,2008,219,10 +7979-4,Advent Calendar 2008 Castle (Day 3) - Armour Stand,2008,219,8 +7979-5,Advent Calendar 2008 Castle (Day 4) - White Skeleton with Flail,2008,219,7 +7979-6,Advent Calendar 2008 Castle (Day 5) - Weapon Stand,2008,219,8 +7979-7,Advent Calendar 2008 Castle (Day 6) - Black Skeleton with Crossbow,2008,219,7 +7979-8,Advent Calendar 2008 Castle (Day 7) - Castle Soldier with Sword,2008,219,5 +7979-9,Advent Calendar 2008 Castle (Day 8) - Archery Target,2008,219,6 +798-1,"Baseplates, Green",1972,473,2 +7984-1,Deep Sea Raider,2011,315,265 +7985-1,City of Atlantis,2011,315,686 +7990-1,Cement Mixer,2007,56,212 +799-1,"Baseplate, Gray",1964,371,1 +7991-1,Garbage Truck,2007,63,205 +7992-1,Container Stacker,2007,54,217 +7993-1,Service Station,2007,50,393 +7994-1,LEGO City Harbor,2007,59,660 +7996-1,Double Crossover Track,2007,245,4 +7997-1,Train Station,2007,240,386 +7998-1,Heavy Hauler,2007,56,331 +8000-1,Pit Droid™ / Star Wars Pit Droid,2000,158,223 +800-1,Gear Set with Motor,1970,472,120 +8001-1,Battle Droid™ / Star Wars Battle Droid,2000,158,336 +800-2,Extra Bricks Red,1986,473,62 +8002-1,Destroyer Droid™ / Star Wars Destroyer Droid,2000,158,567 +8003-1,Volcano Climber,2000,16,35 +8004-1,Dirt Bike,2000,16,32 +8005-1,Ice Explorer,2000,16,34 +8006-1,Swamp Craft,2000,16,25 +8007-1,C-3PO™,2001,158,340 +8008-1,Stormtrooper™,2001,158,360 +8009-1,R2-D2™,2002,158,239 +8010-1,Darth Vader™,2002,158,390 +801-1,Gear Set,1970,472,112 +8011-1,Jango Fett™,2002,158,426 +801-2,Extra Bricks Blue,1986,473,62 +8012-1,Super Battle Droid™,2002,158,379 +8014-1,Clone Walker Battle Pack,2009,165,79 +8015-1,Assassin Droids Battle Pack,2009,165,94 +8016-1,Hyena Droid Bomber,2009,165,231 +8017-1,Darth Vader's TIE Fighter,2009,169,250 +8018-1,Armored Assault Tank (AAT),2009,165,406 +8019-1,Republic Attack Shuttle,2009,165,636 +8020-1,Universal Building Set,1984,21,119 +802-1,Gear Supplementary Set,1970,472,30 +802-2,Extra Bricks White,1986,473,62 +8022-1,TECHNIC Starter Set,1993,21,118 +8024-1,Universal Building Set,1989,21,114 +8026-1,Kraatu,2004,324,20 +8028-1,TIE Fighter - Mini,2008,163,44 +8029-1,Mini Snowspeeder,2008,159,66 +8030-1,Universal Building Set,1982,21,141 +803-1,Extra Bricks Yellow,1986,473,62 +8031-1,V-19 Torrent - Mini,2008,160,66 +803-2,Gear/Wheel Set,1972,472,163 +8032-1,Universal Set,1994,21,212 +8033-1,General Grievous Starfighter - Mini,2009,162,44 +8034-1,Universal Building Set,1989,21,187 +8035-1,Universal Building Set,1986,21,174 +8036-1,Separatist Shuttle,2009,165,258 +8037-1,Anakin's Y-wing Starfighter,2009,165,569 +8038-1,The Battle of Endor,2009,169,890 +8039-1,Venator-Class Republic Attack Cruiser,2009,165,1168 +8040-1,Universal Building Set,1984,21,162 +804-1,Extra Bricks Black,1986,473,62 +8041-1,Race Truck,2010,12,607 +8042-1,Universal Pneumatic Set,1993,21,230 +8043-1,Motorized Excavator,2010,7,1124 +8044-1,Universal Pneumatic Set,1989,21,198 +8045-1,Mini Telehandler,2010,7,118 +8046-1,Helicopter,2010,6,152 +8047-1,Compact Excavator,2010,7,252 +8048-1,Buggy,2010,11,313 +8049-1,Tractor with Log Loader,2010,8,525 +8050-1,Universal Building Set,1982,21,141 +805-1,Extra Bricks Gray,1986,473,62 +8051-1,Motorbike,2010,13,473 +8052-1,Container Truck,2010,7,685 +8053-1,Mobile Crane,2010,7,1288 +8054-1,Universal Building Set,1989,21,196 +8055-1,Universal Building Set with Motor,1986,21,186 +8056-1,Monster Crab Clash,2010,315,68 +8057-1,Wreck Raider,2010,315,64 +8058-1,Guardian of the Deep,2010,315,144 +8059-1,Seabed Scavenger,2010,315,119 +8060-1,Typhoon Turbo Sub,2010,315,197 +806-1,Extra Plates Blue,1986,473,42 +8061-1,Gateway of the Squid,2010,315,354 +8062-1,Universal Set with Storage Case,1994,21,410 +8063-1,Tractor with Trailer,2009,8,1100 +8064-1,Motorized Universal Building Set,1990,21,219 +8065-1,Mini Container Truck,2011,7,119 +8066-1,Off-Roader,2011,11,141 +8067-1,Mini Mobile Crane,2011,7,292 +8068-1,Rescue Helicopter,2011,6,407 +8069-1,Backhoe Loader,2011,7,608 +8070-1,Supercar,2011,1,1280 +807-1,Extra Plates Red,1986,473,42 +8071-1,Lift Truck,2011,5,592 +8072-1,Sea Jet,2010,315,24 +8073-1,Manta Warrior,2010,315,13 +8074-1,Universal Building Set with Flex System,1992,21,313 +8075-1,Neptune Carrier,2010,315,478 +8076-1,Deep Sea Striker,2010,315,260 +8077-1,Atlantis Exploration HQ,2010,315,474 +8078-1,Portal of Atlantis,2010,315,1009 +8079-1,Shadow Snapper,2010,315,244 +8080-1,Undersea Explorer,2010,315,361 +808-1,Wheels and Tires,1986,473,40 +8081-1,Extreme Cruiser,2011,5,589 +8082-1,Universal Building Set,1993,21,456 +8083-1,Rebel Trooper Battle Pack,2010,169,79 +8084-1,Snowtrooper Battle Pack,2010,169,74 +8085-1,Freeco Speeder,2010,165,176 +8086-1,Droid Tri-Fighter,2010,165,267 +8087-1,TIE Defender,2010,170,304 +8088-1,ARC-170 Starfighter,2010,165,395 +8089-1,Hoth Wampa Cave,2010,169,296 +8090-1,TECHNIC Universal Set,1982,21,277 +809-1,Doors and Windows,1986,473,38 +8091-1,Republic Swamp Speeder - Limited Edition,2010,165,175 +8092-1,Luke's Landspeeder,2010,169,163 +8093-1,Plo Koon’s Jedi Starfighter,2010,168,174 +8094-1,TECHNIC Control Center,1990,21,548 +8095-1,General Grievous’ Starfighter,2010,165,453 +8096-1,Emperor Palpatine’s Shuttle,2010,168,591 +8097-1,Slave I (Third Edition) [Initial Release],2010,169,562 +8098-1,Clone Turbo Tank,2010,165,1142 +8099-1,Midi-Scale Imperial Star Destroyer,2010,169,423 +810003-1,LEGO Collector,2008,497,0 +810005-1,LEGO Collector's Guide 2nd Edition,2011,497,0 +8100-1,Cyclone Defender,2007,389,91 +810-1,Basic Motor Set,1985,473,33 +8101-1,Claw Crusher,2007,389,98 +810-2,Town Plan - Continental European,1961,372,760 +8102-1,Blade Titan,2007,389,161 +810-3,Gear Truck Set,1974,472,110 +8103-1,Sky Guardian,2007,389,143 +810-4,"Town Plan - UK, Cardboard box",1962,372,755 +8104-1,Shadow Crawler,2007,389,160 +8105-1,Iron Condor,2007,389,140 +8106-1,Aero Booster,2007,389,311 +8107-1,Fight for the Golden Tower,2007,389,570 +8108-1,Mobile Devastator,2007,389,1012 +8109-1,Flatbed Truck,2011,5,1114 +8110-1,Unimog U400,2011,5,2046 +811-1,"Red Roof Bricks, Steep Pitch",1986,473,59 +8111-1,River Dragon,2008,389,111 +811-2,Gear Crane Set,1974,472,181 +8112-1,Battle Arachnoid,2008,389,130 +8113-1,Assault Tiger,2008,389,162 +8114-1,Chameleon Hunter,2008,389,187 +8115-1,Dark Panther,2008,389,243 +8117-1,Storm Lasher,2008,389,282 +8118-1,Hybrid Rescue Tank,2008,389,346 +8119-1,Thunder Racer,2009,120,47 +8120-1,Rally Sprinter,2009,120,46 +812-1,Gear Supplementary Set,1974,472,101 +8121-1,Track Marshal,2009,120,47 +812-2,"Red Roof Bricks, Shallow Pitch",1986,473,60 +8122-1,Desert Viper,2009,120,40 +8123-1,Ferrari F1 Racers,2009,112,140 +8124-1,Ice Rally,2009,120,170 +8125-1,Thunder Raceway,2009,120,160 +8126-1,Desert Challenge,2009,120,145 +8128-1,Cad Bane's Speeder,2010,165,317 +8129-1,AT-AT Walker,2010,169,811 +8130-1,Terrain Crusher,2007,120,43 +813-1,"Baseplate, Green",1986,473,1 +8131-1,Raceway Rider,2007,120,50 +813-2,Gear Bulldozer Set,1974,472,130 +8132-1,Night Driver,2007,120,40 +8133-1,Rally Rider,2007,120,50 +8134-1,Night Crusher,2007,120,263 +8135-1,Bridge Chase,2007,120,542 +8136-1,Fire Crusher,2007,116,64 +8137-1,Booster Beast,2007,116,69 +8138-1,Phantom Crasher,2007,116,84 +8139-1,Night Blazer,2007,116,65 +8140-1,Tow Trasher,2007,116,183 +814-1,"Baseplates, Green, Red and Yellow",1986,473,3 +8141-1,Off Road Power,2007,116,201 +814-2,Gear Farm Set,1975,472,89 +8142-1,Ferrari 248 1:24 (Vodafone stickers),2007,114,166 +8142-2,Ferrari 248 F1 1:24 (Alice version),2007,114,166 +8143-1,Ferrari 1:17 F430 Challenge,2007,114,690 +8144-1,Ferrari 248 F1 Team (Schumacher Edition),2007,114,709 +8144-2,Ferrari 248 F1 Team (Raikkonen Edition),2007,114,705 +8145-1,Ferrari 599 GTB Fiorano 1:10,2007,114,1325 +8146-1,Nitro Muscle,2007,116,597 +8147-1,Bullet Run,2007,120,794 +8148-1,EZ-Roadster,2008,120,44 +8149-1,Midnight Streak,2008,120,42 +8150-1,ZX Turbo,2008,120,54 +815-1,"Baseplate, Gray",1986,473,1 +8151-1,Adrift Sport,2008,120,51 +8152-1,Speed Chasing,2008,120,141 +8153-1,Ferrari F1 Truck 1:55,2008,114,269 +8154-1,Brick Street Customs,2008,120,1019 +8155-1,Ferrari F1 Pit 1:55,2008,114,480 +8156-1,Ferrari FXX 1:17,2008,114,625 +8157-1,Ferrari F1 1:9,2009,114,996 +8158-1,Speed Racer & Snake Oiler,2008,118,241 +8159-1,Racer X & Taejo Togokhan,2008,118,236 +8160-1,Cruncher Block & Racer X,2008,118,366 +816-1,"Lighting Bricks, 4.5V",1987,473,17 +8161-1,Grand Prix Race,2008,118,598 +8162-1,Race Rig,2009,116,103 +8163-1,Blue Sprinter,2009,116,109 +8164-1,Extreme Wheelie,2009,116,86 +8165-1,Monster Jumper,2009,116,90 +8166-1,Wing Jumper,2009,116,202 +8167-1,Jump Riders,2009,116,208 +8168-1,Ferrari Victory,2009,114,187 +8169-1,Lamborghini Gallardo LP 560-4,2009,115,740 +818-1,"Pullback Motor, Red",1990,473,8 +8182-1,Monster Crushers,2009,120,387 +8183-1,Track Turbo RC,2009,117,91 +8184-1,Twin X-treme RC,2009,117,238 +8185-1,Ferrari Truck,2009,114,536 +8186-1,Street Extreme,2009,120,752 +8188-1,Fire Blaster,2010,439,69 +8189-1,Magma Mech,2010,439,185 +8190-1,Claw Catcher,2010,439,261 +819-1,Blue Sea Plate,1991,473,1 +8191-1,Lavatraz,2010,439,383 +8192-1,Lime Racer,2010,120,43 +8193-1,Blue Bullet,2010,120,49 +8194-1,Nitro Muscle,2010,120,47 +8195-1,Turbo Tow,2010,120,42 +8196-1,Chopper Jump,2010,120,141 +8197-1,Highway Chaos,2010,120,142 +8198-1,Ramp Crash,2010,120,145 +8199-1,Security Smash,2010,120,135 +8-2,Universal Building Set,1979,469,93 +8200-1,Radiator Springs Lightning McQueen,2011,269,35 +820-1,Red Plates Parts Pack,1980,473,34 +8201-1,Radiator Springs Classic Mater,2011,269,52 +820-2,"LegoWooden Storage Box Large (Double Latch) with Contents, with Lattice",1966,365,0 +8202-1,Blast Off Chopper with Bungee Cord Power!,1998,3,70 +8203-1,Rover Discovery,1998,11,36 +8204-1,Sky Flyer I,1998,6,41 +8205-1,Bungee Blaster,1997,12,63 +8206-1,Tokyo Pit Stop,2011,269,142 +8207-1,Dune Duster / Hawaiian Beach Racer,1996,11,81 +8208-1,Custom Cruiser,1998,13,53 +8209-1,F1 Racer / Future F1,1998,12,48 +8210-1,Nitro Bike GTX / GTX 500,1995,13,83 +821-1,"Brick Separator, Gray",1990,473,1 +8211-1,Brick Street Getaway,2010,120,550 +821264-1,The Lego High Speed Adventure Team (TRU Exclusive),1991,67,3 +8213-1,Spy Runner,1998,12,92 +8214-1,Gallardo LP 560-4 Polizia,2010,115,800 +8215-1,Gyro Copter,1997,6,106 +8216-1,Turbo I,1997,12,90 +8217-1,The Wasp,1998,6,63 +8218-1,Trike Tourer,1998,13,70 +8219-1,Go-Cart,1998,12,100 +822-1,Blue Plates Parts Pack,1980,473,34 +8221-1,Storming Enforcer,2011,116,95 +8222-1,V-TOL,1997,6,138 +8223-1,Hydrofoil 7 / Powerboat Columbia,1996,10,123 +8225-1,Road Rally V / Super Kart,1995,12,97 +8226-1,Mud Masher / Desert Stormer,1998,11,120 +8227-1,Dragon Dueller,2011,116,93 +8228-1,Sting Striker,2011,116,81 +8229-1,Tread Trekker,1997,11,185 +8230-1,Coastal Cop Buggy / Miami Police Patrol,1996,1,175 +8231-1,Vicious Viper,2011,116,95 +8232-1,Chopper Force,1997,6,275 +8233-1,MC vs. Stinger,1998,3,118 +8235-1,Front End Loader,1995,7,166 +8236-1,Bike Burner,2000,17,59 +8237-1,Slammer Racer / Formula Force,2000,17,112 +8238-1,Slammer Dragsters / Dueling Dragsters,2000,17,201 +8239-1,Cyber Challenge,1998,3,121 +8240-1,Slammer Stunt Bike,2001,17,152 +8241-1,Battle Cars,2001,17,110 +8242-1,Slammer Turbo,2001,17,251 +8244-1,Convertables,1996,21,275 +8245-1,Robot's Revenge,1998,3,222 +8246-1,Hydro Racer / Swamp Boat,1999,10,46 +8247-1,Road Rebel / Buggy Racer,1999,12,43 +8248-1,Forklift,1998,7,227 +8250-1,Search Sub [No CD],1997,10,370 +8251-1,Sonic Cycle / Motorbike,1999,13,88 +8252-1,Beach Buster / Police Car,1999,1,168 +8253-1,Fire Helicopter,1999,1,210 +8255-1,Rescue Motorbike / Rescue Trike,1999,13,192 +8256-1,Go-Kart,2009,12,143 +8257-1,Cyber Strikers,1998,3,367 +8258-1,Crane Truck,2009,15,1876 +8259-1,Mini Bulldozer,2009,7,165 +8260-1,Tractor,2009,7,104 +8261-1,Rally Truck,2009,11,198 +8262-1,Quad Bike,2009,13,307 +8263-1,Snow Groomer,2009,15,590 +8264-1,Hauler,2009,7,574 +8265-1,Front Loader,2009,7,1060 +8266-1,Spyder Slayer,1998,3,367 +8268-1,Scorpion Attack,1999,3,78 +8269-1,Competition Ultra Challenge [aka Cyber Stinger],1999,3,327 +8270-1,Rough Terrain Crane,2007,7,106 +8271-1,Wheel Loader,2007,7,200 +8272-1,Snowmobile,2007,11,331 +8273-1,Off Road Truck,2007,15,804 +8274-1,Combine Harvester,2007,8,1025 +8275-1,Motorized Bulldozer,2007,7,1381 +8277-1,Giant Model Set,1997,14,553 +8279-1,4WD X-Track,2000,11,448 +8280-1,Fire Engine / Fire Response Unit,1995,9,430 +8281-1,Mini Tractor,2006,8,121 +8282-1,Quad Bike,2006,13,200 +8283-1,Telehandler,2006,7,324 +8284-1,Tractor / Dune Buggy,2006,11,872 +8284-2,Tractor / Dune Buggy,2006,8,872 +8285-1,Tow Truck,2006,15,1877 +8286-1,3 In 1 Car / Amphipower,1996,15,731 +8287-1,Motor Box,2006,19,93 +8288-1,Crawler Crane,2006,7,800 +8289-1,Fire Truck,2006,9,1012 +8290-1,Mini Forklift,2008,7,88 +8291-1,Dirt Bike,2008,13,247 +8292-1,Cherry Picker,2008,7,724 +8293-1,Power Functions Motor Set,2008,438,10 +8294-1,Excavator,2008,7,719 +8295-1,Telescopic Handler,2008,7,1180 +8296-1,Dune Buggy,2008,11,199 +8297-1,Off-Roader,2008,11,1096 +8299-1,Search Sub With CDROM,1997,10,371 +8-3,Basic Set,1973,469,665 +8300-1,LEGO TECHNIC Team,2000,19,6 +830-1,Red Bricks Parts Pack,1980,473,46 +8301-1,Urban Enforcer,2011,120,44 +8302-1,Rod Rider,2011,120,47 +8303-1,Demon Destroyer,2011,120,50 +8304-1,Smokin' Slickster,2011,120,43 +8305-1,Duel Bikes,2000,3,208 +8307-1,Turbo Racer,2000,3,392 +831-1,Black Bricks Parts Pack,1980,473,46 +832-1,Blue Bricks Parts Pack,1980,473,46 +833-1,White Bricks Parts Pack,1980,473,46 +834-1,Yellow Bricks Parts Pack,1980,473,46 +8350-1,Pro Stunt,2003,113,30 +8353-1,Slammer Rhino,2003,113,218 +8354-1,Exo Force Bike,2003,113,99 +8355-1,H.O.T. Blaster Bike,2003,113,87 +8356-1,Jungle Monster,2003,113,115 +8357-1,Zonic Strike,2003,113,106 +8358-1,Off-Roader,2003,113,26 +8359-1,Desert Racer,2003,113,27 +8360-1,Track Racer,2003,113,23 +836-1,Doors and Windows Parts Pack,1980,473,37 +8362-1,Ferrari F1 Racer 1:24 Scale,2004,114,112 +8363-1,Baja Desert Racers,2003,113,321 +8364-1,Multi-Challenge Race Track,2003,121,623 +8365-1,Tuneable Racer,2003,113,195 +8366-1,Supersonic RC,2003,117,428 +8369-1,Dirt Crusher RC,2004,117,87 +8369-2,Dirt Crusher RC (Blue),2005,117,87 +8370-1,Nitro Stunt Bike,2003,113,89 +837-1,Wheels and Tires Parts Pack,1980,473,28 +8371-1,Extreme Power Bike,2003,113,97 +8374-1,Williams F1 Team Racer 1:27,2003,122,92 +8375-1,Ferrari F1 Pit Set,2004,114,217 +8376-1,Hot Flame RC Car,2003,117,256 +8378-1,Red Beast RC,2004,117,64 +8380-1,Red Maniac,2004,116,82 +838-1,"Red Roof Bricks Parts Pack, 45 Degree",1980,473,58 +8381-1,Exo Raider,2003,116,93 +8382-1,Hot Buster,2004,116,66 +8383-1,Nitro Terminator,2004,116,69 +8384-1,Jungle Crasher,2004,116,75 +8385-1,Exo Stealth,2004,116,81 +8386-1,Ferrari F1 Racer 1:10 Scale,2004,114,738 +8389-1,M. Schumacher and R. Barrichello,2004,114,13 +839-1,"Red Roof Bricks Parts Pack, 33 Degree",1980,473,42 +8396-1,Soldier's Arsenal,2009,153,17 +8397-1,Pirate Survival,2009,153,16 +8398-1,BBQ Stand,2009,50,22 +8399-1,K-9 Bot,2009,141,22 +8-4,Magnetic Train Couplers with Plates,1977,456,4 +8400-1,Space Speeder,2009,141,14 +840-1,"Baseplate, Green",1980,473,1 +8401-1,City Minifigure Collection,2009,62,59 +8402-1,Sports Car,2009,63,68 +8403-1,City House,2010,50,384 +8404-1,City Public Transport,2010,63,863 +8408-1,Desert Ranger,1996,11,288 +8409-1,Spidermonkey,2010,270,21 +8410-1,Swampfire,2010,270,22 +841-1,"Baseplates, Green and Yellow",1980,473,2 +8411-1,ChromaStone,2010,270,21 +8412-1,Nighthawk / Sky Wasp,1995,6,283 +8414-1,Mountain Rambler,1997,11,243 +8415-1,Dump Truck,2005,7,284 +8416-1,Forklift,2005,7,729 +8417-1,Mag Wheel Master,1998,13,314 +8418-1,Mini Loader,2005,7,66 +8419-1,Excavator,2005,7,286 +8420-1,Street Bike,2005,13,506 +842-1,"Baseplates, Red and Blue",1980,473,2 +8421-1,Mobile Crane,2005,7,1884 +8422-1,Circuit Shock Racer / V-Twin Super Bike,1995,13,314 +8423-1,World Grand Prix Racing Rivalry,2011,269,135 +8424-1,Mater’s Spy Zone,2011,269,113 +8425-1,Black Hawk / Sky Stormer,1996,6,466 +8426-1,Escape at Sea,2011,269,158 +8428-1,Turbo Command Featuring CD-ROM Experience Expander,1998,11,472 +8429-1,Helicopter,2002,6,146 +8430-1,Motorbike,2002,13,317 +843-1,"Baseplate, Gray",1980,473,1 +8431-1,Crane Truck,2002,7,861 +8432-1,TECHNIC Car,1998,11,471 +8433-1,Cool Movers,2004,15,216 +8434-1,Aircraft,2004,6,445 +8435-1,4WD,2004,11,778 +8436-1,Truck,2004,15,1037 +8437-1,Future Car,1997,11,420 +8438-1,Pneumatic Crane Truck,2003,7,845 +8439-1,Front End Loader,2004,7,591 +8440-1,Formula Flash / Formula Indy Racer,1995,12,418 +8441-1,Fork Lift Truck,2003,7,70 +8443-1,Pneumatic Log Loader / Pneumatic Logger,1996,7,334 +8444-1,Air Enforcer / Supercopter,1999,6,308 +8445-1,Indy Storm / Formula 1 Racer,1999,12,433 +8446-1,Crane Truck,1999,7,572 +8448-1,Super Street Sensation,1999,15,1436 +8450-1,Mission Experience Pack,2000,3,642 +845-1,"Battery Motor, 9V",1992,473,27 +8451-1,Dumper,2003,7,183 +8453-1,Front End Loader,2003,7,214 +8453-2,Front-End Loader Black Box,2004,7,214 +8454-1,Rescue Truck,2003,9,638 +8455-1,Backhoe Loader,2003,7,704 +8456-1,Fiber Optic Multi Set / Multi Racer Set (with Fibre Optics),1996,6,404 +8457-1,Power Puller,2000,12,977 +8458-1,Silver Champion / Formula 1 Racer,2000,12,1430 +8459-1,Pneumatic Front-End Loader,1997,7,602 +8460-1,Pneumatic Crane Truck / Mobile Crane,1995,7,855 +846-1,Lighting Bricks,1992,473,45 +8461-1,Williams F1 Racer,2002,122,1483 +8462-1,Tow Truck,1998,15,784 +8463-1,Forklift Truck,2001,7,232 +8464-1,Pneumatic Front End Loader,2001,7,582 +8465-1,Extreme Off-Roader,2001,11,363 +8465934-1,Muji Christmas Set,2009,301,120 +8465972-1,Muji Basic Set,2009,301,64 +8466-1,4x4 Off Roader,2001,11,1100 +8468-1,Power Crusher,2002,113,86 +8469-1,Slammer Raptor,2002,113,143 +8470-1,Slammer G-Force,2002,113,147 +8471-1,Nitro Burner,2002,113,118 +8472-1,Street 'n' Mud Racer,2002,113,348 +8473-1,Nitro Race Team,2002,113,510 +8475-1,RC Race Buggy,2002,117,283 +8479-1,Barcode Multi-Set,1997,15,1269 +8480-1,Space Shuttle,1996,6,1355 +8482-1,CyberMaster,1998,3,896 +8483-1,CyberMaster,1998,3,897 +8484-1,Ultimate Build Lightning McQueen,2011,269,241 +8485-1,Control Center / Control II,1995,21,1066 +8486-1,Mack’s Team Truck,2011,269,384 +8487-1,Flo's V8 Café,2011,269,516 +8490-1,Desert Hopper,2008,116,91 +8491-1,Ram Rod,2008,116,71 +8492-1,Mud Hopper,2008,116,58 +8493-1,Red Ace,2008,116,81 +8494-1,Ring of Fire,2008,116,268 +8495-1,Crosstown Craze,2008,120,503 +8496-1,Desert Hammer,2008,116,510 +8500-1,Torch / Fire Slizer,1999,20,33 +850-1,Fork lift truck,1977,4,216 +8501-1,Ski / Ice Slizer,1999,20,34 +850150-1,Santa Claus Classic Key Chain,2006,503,0 +850152-1,Blue Brick Key Chain,2007,503,0 +850154-1,LEGO® Red Brick Key Chain,2007,503,1 +8502-1,Turbo / City Slizer,1999,20,45 +8503-1,Scuba / Sub,1999,20,39 +850353-1,Darth Vader Key Chain,2008,503,0 +850355-1,Stormtrooper Key Chain (with Lego logo on back),2002,503,4 +8504-1,Jet / Judge Slizer,1999,20,44 +850423-1,Minifigure Presentation Boxes,2012,501,89 +850425-1,Business Card Holder,2012,501,150 +850426-1,Pencil Holder,2012,501,157 +850445-1,Ninjago Character Card Shrine,2012,435,88 +850446-1,Darth Maul Key Chain,2012,503,0 +850449-1,Minifigure Beach Accessory Pack,2012,535,64 +850452-1,Ghost Key Chain,2012,503,0 +850457-1,I Love LEGOLAND Magnet [Male],2012,501,6 +850458-1,VIP Top 5 Boxed Minifigures,2012,535,37 +850486-1,Rock Band,2012,301,62 +850487-1,Halloween Accessory Set,2012,558,56 +850502-1,I 'L brick' Anaheim Figure Magnet,2012,411,6 +850506-1,Card Making Kit,2012,501,0 +850507-1,LEGO® Marvel Super Heroes Spider-Man Key Chain,2012,503,0 +8505-1,Amazon / Jungle Slizer,1999,20,36 +850513-1,I Love Malaysia Magnet [Male],2012,501,6 +850529-1,Loki Key Chain,2012,501,0 +850581-1,Friends Calendar [English],2013,501,140 +850591-1,LEGO Friends Name Sign,2013,501,29 +850595-1,LEGO® Friends Notebook,2014,501,16 +850597-1,LEGO® Friends Carry Case,2013,501,31 +850598-1,LEGO® Legends of Chima™ Game Cards Binder,2013,502,0 +850602-1,LEGO® Legends of Chima™ Cragger Key Chain,2013,503,4 +850608-1,Key Chain Laval,2013,503,0 +8506-1,Granite / Rock Slizer,1999,20,34 +850617-1,City Police Accessory Set,2013,61,34 +850618-1,City Fire Accessory Set,2013,58,43 +850632-1,Ninjago Battle Pack,2013,435,36 +850635-1,LEGO® Star Wars™ Darth Vader™ Magnet,2013,501,2 +850642-1,LEGO® Star Wars™ Stormtrooper™ Magnet,2013,501,5 +850646-1,LEGO® Teenage Mutant Ninja Turtles™ Donatello Key Chain,2013,503,0 +850648-1,LEGO® Teenage Mutant Ninja Turtles™ Leonardo Key Chain,2013,503,0 +850653-1,LEGO® Teenage Mutant Ninja Turtles™ Michelangelo Key Chain,2013,503,0 +850656-1,LEGO® Teenage Mutant Ninja Turtles™ Raphael Key Chain,2013,503,0 +850664-1,LEGO® DC Universe™ Super Heroes Batman™ Magnet,2013,501,1 +850670-1,LEGO® DC Universe™ Super Heroes Superman™ Magnet,2013,501,0 +850682-1,Bilbo Baggins Magnet,2013,501,3 +850686-1,"Notebook, Baseplate Cover with Alphanumeric Tiles and Lego Logo Clasp",2013,501,83 +850702-1,Classic Picture Frame,2013,501,52 +850705-1,Salt and Pepper Set,2013,501,0 +8507-1,Electro / Energy Slizer,1999,20,37 +850751-1,Orlando Picture Frame,2013,411,101 +850760-1,I Love Paris Magnet [Male],2013,501,6 +850779-1,Legends of Chima Minifigure Accessory Set,2013,571,42 +850789-1,LEGO® Friends Horse Bag Charm,2013,503,6 +850791-1,Minifigure Birthday Set,2013,301,20 +850794-1,Family Window Decals,2013,501,0 +850798-1,LEGO Classic Name Sign,2013,501,41 +850802-1,I Love Tokyo Magnet [Male],2011,501,6 +850807-1,LEGO® Gold Minifigure Key Chain,2013,503,0 +850808-1,LEGO® Gold 2x4 Stud Key Chain,2013,503,1 +8508-1,Supplementary Disks,1999,20,5 +850814-1,LEGO® Marvel Super Heroes The Hulk™ Key Chain,2013,503,0 +850838-1,Splinter Key Chain,2013,503,0 +850839-1,Classic Pirate Set,2013,147,43 +850841-1,LEGO® Classic Gift Wrap,2013,501,0 +850842-1,Fire Truck Holiday Bauble,2013,228,34 +850843-1,Dinosaur Holiday Bauble,2013,228,25 +850849-1,Friends Puppy Holiday Bauble,2013,227,29 +850850-1,Santa Holiday Bauble,2013,228,23 +850851-1,Lego Tree Holiday Bauble,2013,228,26 +850852-1,Lego Reindeer Holiday Bauble,2013,228,21 +850884-1,LEGO® Castle King Key Chain,2014,503,0 +850886-1,LEGO® Castle Dragon Wizard Key Chain,2014,503,0 +850888-1,Castle Knights Accessory Set,2014,371,36 +850889-1,Castle Dragons Accessory Set,2014,202,42 +850894-1,THE LEGO® MOVIE™ Emmet Key Chain,2014,503,0 +850895-1,THE LEGO® MOVIE™ Wyldstyle Key Chain,2014,503,0 +850896-1,THE LEGO® MOVIE™ Bad Cop Key Chain,2014,503,0 +850899-1,LEGO® Legends of Chima™ Playmat,2014,501,0 +850909-1,Sir Fangar Key Chain,2014,503,0 +8509-1,Swamp,2000,16,45 +850910-1,Legends of Chima Minifigure Accessory Set,2014,571,52 +850913-1,Fire and Ice Minifigure Accessory Set,2014,571,48 +850918-1,Ice Cube Tray,2014,501,0 +850929-1,LEGO® City Playmat,2014,501,0 +850932-1,Polar Accessory Set,2014,65,41 +850933-1,LEGO® City Policeman Key Chain,2014,503,0 +850935-1,Classic Minifigure Graduation Set,2014,501,27 +850936-1,Halloween Set,2014,230,11 +850939-1,Santa Set,2014,227,27 +850949-1,Christmas Snow Hut Ornament,2014,228,45 +850950-1,Christmas Cat Ornament,2014,228,34 +850951-1,Girl Minifigure Key Chain,2015,503,0 +850952-1,LEGO® Classic Firetruck Bag Charm,2014,503,0 +850953-1,Police Car Bag Charm,2014,503,0 +850963-1,LEGO® Friends Tumbler 2014,2014,501,14 +850967-1,Jungle Accessory Set,2014,494,39 +850972-1,Friendship Book,2014,501,0 +850996-1,Darth Vader Key Chain,2014,501,0 +850997-1,Princess Leia Key Chain,2014,503,0 +850998-1,LEGO® Star Wars™ Boba Fett™ Key Chain,2014,503,0 +850999-1,LEGO® Star Wars™ Stormtrooper™ Key Chain,2014,503,0 +851003-1,LEGO® Super Heroes The Joker Key Chain,2014,503,0 +851005-1,LEGO® Super Heroes Batgirl Key Chain,2014,503,0 +851007-1,Wolverine Magnet,2014,501,0 +8510-1,Lava,2000,16,35 +851015-1,LEGO® Legends of Chima™ Scorpion Sword & Shield,2014,501,0 +851091-1,R2-D2 Key Chain,2005,503,0 +851097,"Sword, Toa Hordika Blazer Claw with Flame End",2004,501,0 +851-1,Tractor,1977,4,324 +8511-1,Frost,2000,16,44 +8512-1,Onyx,2000,16,38 +851210-1,Lord Vladek Sword,2005,501,1 +8513-1,Dust,2000,16,45 +851317-1,LEGO® Star Wars™ Boba Fett™ Magnet,2014,501,0 +851318-1,Sir Fangar Claw & Shield,2014,501,0 +851320-1,LEGO® Minifigure Notebooks,2014,501,0 +851324-1,Dolphin Bag Charm,2014,503,4 +851325-1,Jungle Playmat,2014,501,0 +851331-1,I Love LEGOLAND Magnet [Female],2015,501,6 +851335-1,Ninja Sword,2015,501,0 +851336-1,Ninja Fork Weapon,2015,501,0 +851338-1,Ninja Belt & Throwing Star,2015,501,0 +851339-1,Ninja Bandana,2015,501,0 +851341-1,LEGO® Elves Playmat,2015,501,0 +851342-1,Ninja Army Building Set,2015,435,37 +851343-1,Drinking Bottle,2015,501,0 +851344-1,Tumbler,2015,501,13 +851351-1,Ninja Kai Key Chain,2015,503,0 +851352-1,Titanium Ninja Zane Key Chain,2015,503,0 +851353-1,Anacondrai Kapau Key Chain,2015,503,0 +851358-1,Holiday Bauble White Bricks,2015,206,62 +851362-1,Friends Party Set,2015,494,60 +851368-1,Laval Key Chain,2015,503,0 +851369-1,Icebite Key Chain,2015,503,0 +851393-1,Mermaid Key Chain,2015,503,0 +851394-1,Gingerbread Man Key Chain,2015,503,0 +851395-1,Robot Key Chain,2015,503,0 +851400-1,Upscaled Mug – Red,2015,501,0 +8514-1,Power,2000,16,32 +851417-1,LEGO Friends Wall Stickers,2015,501,0 +851441,"Headgear, Mask, Soft Foam, Bionicle Toa Hordika Vakama",2004,501,0 +851463-1,Clone Trooper Key Chain,2007,503,0 +851464-1,Chewbacca Key Chain,2007,503,0 +851490-1,Lord Vladek Mask,2005,501,1 +851502-1,Ice Brick Tray - Yellow,2007,501,0 +8515-1,RoboRider Wheels,2000,16,4 +8516-1,The Boss,2000,16,124 +851659-1,Boba Fett Keyring,2008,503,0 +851687-1,Robin Key Chain,2007,503,0 +8517-1,Humungousaur,2010,270,14 +8518-1,Jet Ray,2010,270,16 +8519-1,Big Chill,2010,270,20 +851938-1,Princess Leia Key Chain,2007,503,0 +852001-1,Fantasy Era Castle Chess Set,2007,502,164 +8520-1,Millennium/Millennia,2000,20,134 +852095-1,Yellow Brick Key Chain,2007,503,1 +852-1,Reconnaisance Helicopter,1977,4,364 +8521-1,Flare,2000,20,44 +852113-1,Millennium Falcon Bag Charm,2007,503,0 +852114-1,Y-Wing Fighter (Exclusive Bag Charm),2007,503,0 +852115,Vader's TIE Fighter Key Chain,2007,503,0 +852132-1,Castle Tic Tac Toe,2007,502,86 +852146-1,Professor Henry Jones Key Chain,2008,503,0 +852194-1,Dwarf Key Chain,2008,503,0 +8522-1,Spark,2000,20,35 +852227-1,Pirate Playing Cards,2009,501,0 +852231-1,"Coin Bank, Castle with Drawbridge",2008,501,96 +852271-1,Battle Pack Knights,2008,193,35 +852272-1,Battle Pack Skeletons,2008,193,43 +852273-1,Pink Brick Key Chain,2008,503,1 +852293-1,Fantasy Era Castle Giant Chess Set,2008,502,2455 +8523-1,Blaster / Blaster Slizer,2000,20,89 +852331-1,Vintage Minifigure Collection Vol. 1,2008,535,21 +852333-1,Keychain Name Programme,2008,503,0 +852347-1,Shock Trooper Key Chain,2008,503,0 +852351-1,Obi-Wan Key Chain,2008,503,0 +852354-1,Asajj Ventress Key Chain,2008,503,0 +852445-1,Gold Brick Key Chain,2008,503,0 +852535-1,Vintage Minifigure Collection Vol. 2,2009,535,22 +852548-1,CW R7-A7 Key Chain,2009,503,0 +852549-1,CW Count Dooku Key Chain,2009,503,0 +852550-1,CW Yoda Key Chain,2009,501,0 +852551-1,Magnet Set Darth Maul 2009,2009,501,24 +852552-1,Magnet Set Royal Guard 2009,2009,501,18 +852553-1,Magnet Set Stormtrooper 2009,2009,501,18 +852554-1,Star Wars Magnet Set,2008,501,21 +852555-1,Magnet Set CW Yoda 2009,2009,501,22 +852697-1,Vintage Minifigure Collection Vol. 3,2009,535,22 +852701-1,Battle Pack Troll Warriors,2009,193,36 +852702-1,Battle Pack Dwarfs,2009,193,45 +852708-1,LEGO Minifigure Cake Mould,2009,501,0 +8527-1,LEGO Mindstorms NXT,2006,259,578 +852715-1,Star Wars Magnet Set,2009,501,19 +852737-1,Star Wars 10th Anniversary Stormtrooper Magnet,2009,501,6 +852741-1,Build your own Holiday Countdown Candle,2009,227,165 +852744-1,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",2009,228,66 +852747-1,Battle Pack Pirates,2009,153,42 +852750-1,Pirates Tic Tac Toe,2009,501,86 +852753-1,Vintage Minifigure Collection Vol. 4,2009,535,25 +852769-1,Vintage Minifigure Collection Vol. 5,2010,535,20 +852771-1,Minifigure Ice Cube Tray,2010,501,0 +852774-1,Shark Warrior Key Chain,2010,503,0 +852777-1,Magnet Set,2010,501,21 +852786-1,Rose,2010,206,29 +8528-1,Converter Cables for Mindstorms NXT,2006,259,3 +852815-1, White Spaceman Key Chain,2010,503,0 +852820-1,Minifig Display Box,2010,501,15 +852837-1,C-3PO Key Chain,2010,503,0 +852838-1,Wicket Key Chain,2010,501,0 +852842-1,Biker Scout Key Chain,2010,503,0 +852843-1,Star Wars Magnet Set,2010,501,14 +852844-1,Star Wars Magnet Set,2010,501,16 +852845-1,Star Wars Magnet Set,2010,501,19 +852848-1,Woody Key Chain,2010,503,0 +852856-1,LEGO Club Max Key Chain,2010,503,0 +852858-1,Foldable red shopping bag,2010,501,0 +8529-1,Connector Cables for Mindstorms NXT,2006,259,7 +852921-1,Battle Pack Lion Knights,2010,196,36 +852922-1,Battle Pack Dragon Knights,2010,196,37 +852942-1,Prince of Persia Magnet Set,2010,501,23 +852948-1,Female Minifigure Magnet Set,2010,501,20 +852949-1,Toy Story Magnet Set,2010,501,15 +852950-1,Alien Key Chain,2010,503,0 +852979-1,Albus Dumbledore Key Chain,2010,503,0 +852980-1,Se verus Snape Key Chain,2010,503,0 +852981-1,Dobby Key Chain,2010,503,0 +852985-1,Duck Key Chain,2010,503,0 +852986-1,Crocodile Key Chain,2010,503,0 +852987-1,Penguin Key Chain,2010,501,0 +852995-1,{Ducks},2010,301,15 +852996-1,Lego Club Max,2010,301,4 +852997-1,LEGO 2011 US Calendar,2010,501,0 +8530-1,Masks,2001,348,3 +853037-1,Star Wars Magnet Set,2010,501,20 +853091-1,City Policeman Key Chain,2011,503,0 +853092-1,City Burglars Magnet Set,2011,501,0 +853-1,Auto Chassis,1977,4,608 +8531-1,Pohatu,2001,348,49 +853111-1,Exclusive Weapon Training Set - Limited Edition,2011,435,28 +853118-1,Key Chain Emperor Palpatine,2011,503,0 +8531-2,Pohatu - With mini CD-ROM,2001,348,50 +853130-1,Star Wars Magnet Set,2011,501,0 +853143-1,LEGO Signature Minifigure Stationery Set,2011,501,0 +853146-1,LEGO Signature Minifigure Playing Cards,2011,501,0 +853148-1,LEGO Classic Logo Magnet,2011,501,0 +853175-1,"Coin Bank, Pharaoh's Quest",2011,501,117 +853176-1,Skeleton Mummy Battle Pack,2011,437,29 +853187-1,Captain Jack Sparrow Key Chain,2011,501,0 +853191-1,Pirates of the Caribbean Magnet Set,2011,501,0 +853195-1,"Calendar, Brick Calendar - Days and Months in English",2011,501,120 +8532-1,Onua,2001,348,30 +853213-1,Drink Tumbler,2012,501,9 +853219-1,Pirates of the Caribbean Battle Pack,2011,263,30 +8532-2,Onua - With mini CD-ROM,2001,348,33 +853261-1,LEGO Large Tote,2011,501,1 +853301-1,Alien Conquest Battle Pack,2011,127,27 +853305-1,Copenhagen Key Chain,2011,501,7 +8533-1,Gali,2001,348,35 +853313-1,Copenhagen LEGO Store Magnet [Male],2011,408,6 +8533-2,Gali - With mini CD-ROM,2001,348,36 +853340-1,Minifigure Wedding Favor Set,2011,408,30 +853344-1,Holiday Ornament with Red Bricks ,2011,227,32 +853345-1,Holiday Ornament with Gold Bricks,2011,227,42 +853346-1,Holiday Ornament with Green Bricks,2011,227,38 +853352-1,2012 US Calendar,2011,501,0 +853353-1,Holiday Scene Magnet,2011,501,47 +853358-1,Heroica Storage Mat,2011,501,18 +853373-1,LEGO Kingdoms Chess Set,2012,501,329 +853378-1,City Firemen Minifigure Pack,2012,58,22 +853379-1,Purple Brick Key Chain,2015,503,1 +853380-1,Turquoise Brick Key Chain,2015,503,1 +853393-1,Friends Picture Frame,2012,494,51 +853395-1,Friends Tumbler,2012,501,1 +8534-1,Tahu,2001,348,33 +8534-2,Tahu - With mini CD-ROM,2001,348,34 +853429-1,Batman Key Chain,2012,503,0 +853430-1,Superman Key Chain,2012,501,0 +853433-1,Wonder Woman Key Chain,2012,501,0 +853439-1,Upscaled Mug ,2015,501,0 +853440-1,LEGO Friends Jewelery Set,2015,501,22 +853441-1,Mini-doll Carry Case,2015,501,0 +853444-1,LEGO® Friends Mirror,2015,501,0 +853447-1,Ninja Sword & Sheath,2015,501,0 +853448-1,LEGO® Elves Diary,2015,501,0 +853449-1,Yoda™ Key Chain,2015,503,0 +853450-1,Emperor's Royal Guard™ Key Chain,2015,503,0 +853451-1,Chewbacca™ Key Chain,2015,503,0 +853461-1,LEGO Elves Bag Charm,2015,503,0 +853463-1,Swamp Police Key Chain,2015,503,0 +853464-1,Swamp Police Drinking Bottle,2015,501,0 +853465-1,Upscaled Mug – Blue,2015,501,0 +853469-1,Wicket™ Key Chain,2015,503,0 +853470-1,R2 D2™ Key Chain,2015,503,0 +853471-1,C 3PO™ Key Chain,2015,503,0 +853472-1,Luke Skywalker™ Key Chain,2015,503,0 +853474-1,Commander Gree™ Key Chain,2015,503,0 +853475-1,Imperial Gunner Key Chain,2015,503,0 +853476-1,Yoda™ Magnet,2015,501,2 +8535-1,Lewa,2001,348,36 +853515-1,Knights Army-Building Set,2016,605,26 +853516-1,Monsters Army-Building Set,2016,605,24 +8535-2,Lewa - With mini CD-ROM,2001,348,37 +853556-1,Mini-doll Campsite Set,2016,494,35 +853605-1,Poe Dameron™ Key Chain,2016,503,0 +853609-1,Minecraft Skin Pack,2016,577,1 +8536-1,Kopaka,2001,348,33 +8536-2,Kopaka - With mini CD-ROM,2001,348,34 +853648-1,Elves Roblin Bag Charm,2017,600,1 +853687-1,NINJAGO Accessory Set,2017,435,26 +8537-1,Nui-Rama,2001,343,148 +8538-1,Muaka and Kane-ra,2001,343,633 +8539-1,Manas,2001,343,456 +8540-1,Vakama,2001,356,26 +854-1,Go-Kart,1978,4,211 +8541-1,Matau,2001,356,25 +8542-1,Onewa,2001,356,29 +8543-1,Nokama,2001,356,27 +8544-1,Nuju,2001,356,29 +8545-1,Whenua,2001,356,28 +8546-1,Power Pack,2001,346,10 +8547-1,Mindstorms NXT 2.0,2009,259,620 +8548-1,Nui-Jaga,2001,343,226 +8549-1,Tarakava,2001,343,403 +8550-1,Gahlok Va,2002,329,26 +855-1,Mobile crane,1978,4,512 +8551-1,Kohrak Va,2002,329,28 +8552-1,Lehvak Va,2002,329,28 +8553-1,Pahrak Va,2002,329,27 +8554-1,Tahnok Va,2002,329,27 +8555-1,Nuhvok Va,2002,329,26 +8556-1,Boxor,2002,347,157 +8557-1,Exo-Toa,2002,347,378 +8558-1,Cahdok and Gahdok,2002,347,636 +8559-1,Krana,2002,324,0 +8560-1,Pahrak,2002,328,41 +856-1,Bulldozer,1979,4,372 +8561-1,Nuhvok,2002,328,41 +8562-1,Gahlok,2002,328,41 +8563-1,Tahnok,2002,328,41 +8564-1,Lehvak,2002,328,41 +8565-1,Kohrak,2002,328,41 +8566-1,Onua Nuva,2002,354,41 +8567-1,Lewa Nuva,2002,354,37 +8568-1,Pohatu Nuva,2002,354,43 +8569-1,Krana,2002,324,0 +8570-1,Gali Nuva,2002,354,44 +857-1,Motorcycle with sidecar,1979,4,409 +8571-1,Kopaka Nuva,2002,354,42 +8572-1,Tahu Nuva,2002,354,36 +8573-1,Nuhvok-Kal,2003,330,42 +8574-1,Tahnok-Kal,2003,330,42 +8575-1,Kohrak-Kal,2003,330,42 +8576-1,Lehvak-Kal,2003,330,42 +8577-1,Pahrak-Kal,2003,330,42 +8578-1,Gahlok-Kal,2003,330,42 +8580-1,Kraata,2003,346,3 +858-1,Auto Engines,1980,4,242 +8581-1,Kopeke,2003,335,25 +8582-1,Matoro,2003,335,25 +8583-1,Hahli,2003,335,25 +8584-1,Hewkii,2003,335,25 +8584-2,Hewkii (Kabaya Promotional),2003,335,25 +8585-1,Hafu,2003,335,25 +8585-2,Hafu (Kabaya Promotional),2003,335,25 +8586-1,Macku,2003,335,25 +8586-2,Macku (Kabaya Promotional),2003,335,25 +8587-1,Panrahk,2003,344,45 +8587-2,Panrahk - With Shadow Kraata (Promotional Set),2003,344,45 +8587-3,Panrahk - With mini CD-ROM,2003,344,46 +8588-1,Kurahk,2003,344,45 +8588-2,Kurahk - With Shadow Kraata (Promotional Set),2003,344,45 +8588-3,Kurahk - With mini CD-ROM,2003,344,45 +8589-1,Lerahk,2003,344,45 +8589-2,Lerahk - With Shadow Kraata (Promotional Set),2003,344,45 +8589-3,Lerahk - With mini CD-ROM,2003,344,46 +8590-1,Guurahk,2003,344,45 +8590-2,Guurahk - With Shadow Kraata (Promotional Set),2003,344,45 +8590-3,Guurahk - With mini CD-ROM,2003,344,46 +8591-1,Vorahk,2003,344,45 +8591-2,Vorahk - With Shadow Kraata,2003,344,45 +8591-3,Vorahk - With mini CD-ROM,2003,344,45 +8592-1,Turahk,2003,344,45 +8592-2,Turahk - With Shadow Kraata,2003,344,45 +8592-3,Turahk - With mini CD-ROM,2003,344,46 +8593-1,Makuta,2003,347,199 +8594-1,Jaller and Gukko,2003,347,172 +8595-1,Takua and Pewku,2003,347,221 +8596-1,Takanuva,2003,347,200 +8597-1,Krana Nuva,2002,324,0 +8601-1,Toa Vakama,2003,353,48 +8601-2,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),2004,353,48 +8602-1,Toa Nokama,2004,353,46 +8603-1,Toa Whenua,2004,353,49 +8604-1,Toa Onewa,2004,353,44 +8605-1,Toa Matau,2004,353,46 +8606-1,Toa Nuju,2004,353,48 +8607-1,Nuhrii,2004,336,27 +8608-1,Vhisola,2004,336,27 +8609-1,Tehutti,2004,336,27 +8610-1,Ahkmou,2004,336,27 +8611-1,Orkahm,2004,336,27 +8612-1,Ehrye,2004,336,30 +8613-1,Kanoka Disk Launcher Pack,2004,346,4 +8614-1,Vahki Nuurakh,2004,357,32 +8614-2,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33 +8615-1,Vahki Bordakh,2004,357,32 +8615-2,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33 +8616-1,Vahki Vorzakh,2004,357,32 +8616-2,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33 +8617-1,Vahki Zadakh,2004,357,32 +8617-2,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33 +8618-1,Vahki Rorzakh,2004,357,32 +8618-2,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33 +8619-1,Vahki Keerakh,2004,357,32 +8619-2,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33 +8620-1,Snow Scooter,1986,2,101 +8621-1,Turaga Dume and Nivawk,2004,347,180 +8622-1,Nidhiki,2004,347,170 +8623-1,Krekka,2004,347,214 +8624-1,Race for the Mask of Life,2006,341,507 +8625-1,Umbra,2006,347,179 +8626-1,Irnakk,2006,347,11 +8630-1,Mission 3: Gold Hunt,2008,302,351 +8631-1,Mission 1: Jetpack Pursuit,2008,302,87 +8632-1,Mission 2: Swamp Raid,2008,302,230 +8633-1,Mission 4: Speedboat Rescue,2008,302,339 +8634-1,Mission 5: Turbocar Chase,2008,302,496 +8635-1,Mission 6: Mobile Command Center,2008,302,1153 +8636-1,Mission 7: Deep Sea Quest,2008,302,520 +8637-1,Mission 8: Volcano Base,2008,302,714 +8638-1,Spy Jet Escape,2011,269,332 +8639-1,Big Bentley Bust Out,2011,269,743 +8640-1,Polar Copter,1986,2,238 +8641-1,Flame Glider,2005,120,53 +8642-1,Monster Crusher,2005,120,42 +8643-1,Power Cruiser,2005,120,45 +8644-1,Street Maniac,2005,120,35 +8645-1,Muscle Slammer Bike,2005,116,126 +8646-1,Speed Slammer Bike,2005,116,126 +8647-1,Night Racer,2005,116,75 +8648-1,Buzz Saw,2005,116,63 +8649-1,Nitro Menace,2005,116,621 +8650-1,Furious Slammer Racer,2005,116,254 +8651-1,Jumping Giant,2005,116,241 +8652-1,Enzo Ferrari 1:17,2005,114,477 +8653-1,Enzo Ferrari 1:10,2005,114,1357 +8654-1,Scuderia Ferrari Truck,2005,114,831 +8655-1,RX-Sprinter,2005,120,57 +8656-1,F6 Truck,2005,120,46 +8657-1,ATR 4,2005,120,38 +8658-1,Big Bling Wheelie,2005,120,31 +8660-1,Arctic Rescue Unit,1986,2,387 +8661-1,Carbon Star,2006,120,43 +8662-1,Blue Renegade,2006,120,48 +8663-1,Fat Trax,2006,120,41 +8664-1,Road Hero,2006,120,54 +8665-1,Highway Enforcer {Box},2006,120,52 +8666-1,TunerX,2006,120,60 +8667-1,Action Wheelie,2006,116,78 +8668-1,LEGO Competition Racers: Racers Fly Wheel Side Rider,2006,116,109 +8669-1,Fire Spinner 360,2006,116,112 +8670-1,Jump Master,2006,116,104 +8671-1,Ferrari 430 Spider 1:17,2006,114,559 +8672-1,Ferrari Finish Line,2006,114,575 +8673-1,Ferrari F1 Fuel Stop,2006,114,188 +8674-1,Ferrari F1 Racer 1:8,2006,114,1245 +8675-1,Outdoor Challenger,2006,117,98 +8676-1,Sunset Cruiser,2006,117,53 +8677-1,Ultimate Build Mater,2011,269,287 +8678-1,Ultimate Build Francesco,2011,269,195 +8679-1,Tokyo International Circuit,2011,269,848 +8680-1,Arctic Rescue Base,1986,2,523 +8681-1,Tuner Garage,2006,120,654 +8682-1,Nitro Intimidator,2006,116,723 +8683-0,Minifigure Series 1 [Random Bag],2010,536,0 +8683-1,Tribal Hunter - Complete Set,2010,536,8 +8683-10,Super Wrestler - Complete Set,2010,536,5 +8683-11,Nurse - Complete Set,2010,536,7 +8683-12,Ninja - Complete Set,2010,536,6 +8683-13,Spaceman - Complete Set,2010,536,8 +8683-14,Forestman - Complete Set,2010,536,8 +8683-15,Deep Sea Diver - Complete Set,2010,536,9 +8683-16,Cowboy - Complete Set,2010,536,7 +8683-17,Collectable Minifigures - LEGO Minifigures Series 1 - Complete,2010,536,16 +8683-18,Minifigure Series 1 (Box of 60),2010,536,60 +8683-2,Cheerleader - Complete Set,2010,536,7 +8683-3,Caveman - Complete Set,2010,536,6 +8683-4,Circus Clown - Complete Set,2010,536,6 +8683-5,Zombie - Complete Set,2010,536,6 +8683-6,Skater - Complete Set,2010,536,8 +8683-7,Robot - Complete Set,2010,536,5 +8683-8,Demolition Dummy - Complete Set,2010,536,6 +8683-9,Magician - Complete Set,2010,536,7 +8684-0,Minifigure Series 2 [Random Bag],2010,537,0 +8684-1,Mariachi / Maraca Man - Complete Set,2010,537,9 +8684-10,Weightlifter - Complete Set,2010,537,8 +8684-11,Pop Star - Complete Set,2010,537,6 +8684-12,Skier - Complete Set,2010,537,9 +8684-13,Disco Dude - Complete Set,2010,537,6 +8684-14,Karate Master - Complete Set,2010,537,6 +8684-15,Surfer - Complete Set,2010,537,6 +8684-16,Pharaoh - Complete Set,2010,537,6 +8684-17,Collectable Minifigures - LEGO Minifigures Series 2 - Complete,2010,537,16 +8684-18,Minifigure Series 2 (Box of 60),2010,537,60 +8684-2,Spartan Warrior - Complete Set,2010,537,8 +8684-3,Circus Ringmaster - Complete Set,2010,537,6 +8684-4,Witch - Complete Set,2010,537,6 +8684-5,Vampire - Complete Set,2010,537,7 +8684-6,Traffic Cop - Complete Set,2010,537,7 +8684-7,Explorer - Complete Set,2010,537,7 +8684-8,Lifeguard - Complete Set,2010,537,6 +8684-9,Mime - Complete Set,2010,537,7 +8685-1,Toa Kopaka,2008,339,53 +8686-1,Toa Lewa,2008,339,51 +8687-1,Toa Pohatu,2008,339,67 +8688-1,Toa Gali,2008,338,60 +8689-1,Toa Tahu,2008,338,73 +8690-1,Toa Onua,2008,338,62 +8691-1,Antroz,2008,339,52 +8692-1,Vamprah,2008,339,48 +8693-1,Chirox,2008,339,48 +8694-1,Krika,2008,338,40 +8695-1,Gorast,2008,338,51 +8696-1,Bitil,2008,338,54 +8697-1,Toa Ignika,2008,359,140 +8698-1,Vultraz,2008,359,133 +8699-1,Takanuva,2008,359,267 +8700-1,Expert Builder Power Pack,1982,4,27 +870-1,Supplementary Set,1977,4,22 +8701-1,King Jayko,2006,198,130 +8702-1,Lord Vladek,2006,198,112 +8703-1,Sir Kentis,2006,198,42 +8704-1,Sir Adric,2006,198,40 +8705-1,Dracus,2006,198,38 +8706-1,Karzon,2006,198,44 +8707-1,Boulder Blaster,2009,439,295 +8708-1,Cave Crusher,2009,439,259 +8709-1,Underground Mining Station,2009,439,635 +8710-1,Supplementary Set,1980,4,124 +871-1,Supplementary Set,1977,4,78 +8712-1,Action Figures,1988,19,14 +8714-1,The LEGO TECHNIC Team / Team,1993,19,9 +8715-1,Ultimate Creatures Accessory Set,2005,346,401 +8719-1,Zamor Spheres,2006,346,10 +8720-1,Power Pack,1991,19,57 +872-1,Supplementary Set,1978,4,77 +8721-1,Velika,2006,337,21 +8722-1,Kazi,2006,337,25 +8723-1,Piruk,2006,337,27 +8724-1,Garan,2006,337,21 +8725-1,Balta,2006,337,22 +8726-1,Dalu,2006,337,25 +8727-1,Inika Toa Jaller,2006,351,46 +8728-1,Inika Toa Hahli,2006,351,46 +8729-1,Inika Toa Nuparu,2006,351,55 +8730-1,Inika Toa Hewkii,2006,351,62 +8731-1,Inika Toa Kongu,2006,351,46 +8732-1,Inika Toa Matoro,2006,351,47 +8733-1,Axonn,2006,347,196 +8734-1,Brutaka,2006,347,191 +8735-1,Power Pack Motor Set,1998,19,60 +8736-1,Toa Hordika Vakama,2005,350,48 +8737-1,Toa Hordika Nokama,2005,350,48 +8738-1,Toa Hordika Whenua,2005,350,48 +8739-1,Toa Hordika Onewa,2005,350,48 +8740-1,Toa Hordika Matau,2005,350,48 +874-1,Supplementary Set,1979,4,38 +8741-1,Toa Hordika Nuju,2005,350,48 +8742-1,Visorak Vohtarak,2005,358,48 +8743-1,Visorak Boggarak,2005,358,48 +8744-1,Visorak Oohnorak,2005,358,48 +8745-1,Visorak Roporak,2005,358,48 +8746-1,Visorak Keelerak,2005,358,48 +8747-1,Visorak Suukorak,2005,358,48 +8748-1,Rhotuka Spinners,2005,346,5 +875-1,Supplementary Set,1979,4,38 +8755-1,Keetongu,2005,347,203 +8756-1,Sidorak,2005,347,211 +8757-1,Visorak Battle Ram,2005,341,190 +8758-1,Tower of Toa,2005,341,407 +8759-1,Battle of Metru Nui,2005,341,871 +876-1,Supplementary Set,1979,4,38 +8761-1,Roodaka,2005,347,233 +8762-1,Toa Iruini,2005,349,53 +8763-1,Toa Norik,2005,349,55 +8764-1,Vezon & Fenrakk,2006,347,281 +8769-1,Visorak's Gate,2005,341,330 +8770-1,Danju (European version without Cards),2004,198,42 +877-1,Supplementary Set,1979,4,30 +8771-1,Jayko (European version without Cards),2004,198,45 +8772-1,Rascus (European version without Cards),2004,198,46 +8773-1,Santis (European version without Cards),2004,198,46 +8774-1,Vladek (European version without Cards),2004,198,48 +8777-1,Vladek Encounter,2004,198,42 +8778-1,Border Ambush,2004,198,177 +8779-1,The Grand Tournament,2004,198,321 +8780-1,Citadel of Orlan,2004,198,443 +878-1,Supplementary Set,1979,4,52 +8781-1,Castle of Morcia,2004,198,658 +8782-1,Danju (USA version with 3 Cards),2004,198,45 +8782-2,"Danju (USA version with 6 Cards, Target Promo)",2004,198,48 +8783-1,Jayko (USA version with 3 Cards),2004,198,48 +8783-2,"Jayko (USA version with 6 Cards, Target Promo)",2004,198,51 +8784-1,Rascus (USA version with 3 Cards),2004,198,49 +8784-2,"Rascus (USA version with 6 Cards, Target Promo)",2004,198,52 +8785-1,Santis (USA version with 3 Cards),2004,198,49 +8785-2,"Santis (USA version with 6 Cards, Target Promo)",2004,198,52 +8785452-1,MUJI Transparent Set,2010,301,0 +8785476-1,MUJI Sea Set,2010,301,91 +8785483-1,MUJI Circus Set,2010,301,91 +8785490-1,MUJI Animals Set,2010,301,0 +8785506-1,MUJI Colour Paper Pad and Perforation Grid,2010,301,0 +8786-1,Vladek (USA version with 3 Cards),2004,198,51 +8786-2,"Vladek (USA version with 6 Cards, Target Promo)",2004,198,54 +8790-1,"King Mathias (Series 1) Limited Edition with Map and Cape, European",2004,198,41 +879-1,Supplementary Set,1979,4,87 +8791-1,Sir Danju,2005,198,42 +8792-1,Sir Jayko,2005,198,42 +8793-1,Sir Rascus,2005,198,44 +8794-1,Sir Santis,2005,198,44 +8795-1,Lord Vladek,2005,198,44 +8796-1,King Mathias (Series 2),2005,198,43 +8799-1,Knights' Castle Wall,2004,198,178 +88000-1,Power Functions AAA Battery Box,2011,438,1 +880001-1,Competition Racers with Stopwatch,1998,3,2 +880002-1,World Cup German Starter Set,1998,462,7 +880002-2,World Cup Dutch Starter Set,1998,462,7 +880002-3,World Cup UK Starter Set,1998,462,7 +8800-1,Vladek's Siege Engine,2004,198,192 +880010-1,Exclusive Roboriders Pack,2001,16,2 +880011-1,Exclusive Roboriders Pack,2001,16,2 +880012-1,Exclusive Roboriders Pack,2001,16,2 +88002-1,Power Functions Train Motor,2011,438,7 +88003-1,Power Functions L-Motor,2013,438,1 +88004-1,Power Functions Servo Motor,2013,438,1 +880-1,Supplementary Set,1979,4,22 +8801-1,Knights' Attack Barge,2005,198,165 +8802-1,Dark Fortress Landing,2005,198,144 +8803-0,Minifigure Series 3 [Random Bag],2011,538,0 +8803-1,Fisherman - Complete Set,2011,538,9 +8803-10,Tennis Player - Complete Set,2011,538,6 +8803-11,Race Car Driver - Complete Set,2011,538,7 +8803-12,Gorilla Suit Guy - Complete Set,2011,538,6 +8803-13,Space Alien - Complete Set,2011,538,6 +8803-14,Hula Dancer - Complete Set,2011,538,8 +8803-15,Rapper - Complete Set,2011,538,7 +8803-16,Baseball Player - Complete Set,2011,538,6 +8803-17,Collectable Minifigures - LEGO Minifigures Series 3 - Complete,2011,538,16 +8803-18,Minifigure Series 3 (Box of 60),2011,538,60 +8803-2,Pilot - Complete Set,2011,538,7 +8803-3,Tribal Chief - Complete Set,2011,538,6 +8803-4,Samurai Warrior - Complete Set,2011,538,7 +8803-5,Snowboarder - Complete Set,2011,538,7 +8803-6,Space Villain - Complete Set,2011,538,8 +8803-7,Sumo Wrestler - Complete Set,2011,538,6 +8803-8,Mummy - Complete Set,2011,538,5 +8803-9,Elf - Complete Set,2011,538,8 +8804-0,Minifigure Series 4 [Random Bag],2011,539,0 +8804-1,Lawn Gnome - Complete Set,2011,539,8 +8804-10,Sailor - Complete Set,2011,539,6 +8804-11,Soccer Player - Complete Set,2011,539,8 +8804-12,Werewolf - Complete Set,2011,539,6 +8804-13,Hazmat Guy - Complete Set,2011,539,6 +8804-14,Artist - Complete Set,2011,539,7 +8804-15,Ice Skater - Complete Set,2011,539,8 +8804-16,Crazy Scientist - Complete Set,2011,539,6 +8804-17,Collectable Minifigures - LEGO Minifigures Series 4 - Complete,2011,539,16 +8804-18,Minifigure Series 4 (Box of 60),2011,539,60 +8804-2,Kimono Girl - Complete Set,2011,539,6 +8804-3,Musketeer - Complete Set,2011,539,7 +8804-4,Punk Rocker - Complete Set,2011,539,6 +8804-5,Surfer Girl - Complete Set,2011,539,6 +8804-6,Viking - Complete Set,2011,539,10 +8804-7,The Monster - Complete Set,2011,539,5 +8804-8,Hockey Player - Complete Set,2011,539,11 +8804-9,Street Skater - Complete Set,2011,539,8 +8805-0,Minifigure Series 5 [Random Bag],2011,540,0 +8805-1,Graduate - Complete Set,2011,540,7 +8805-10,Fitness Instructor - Complete Set,2011,540,6 +8805-11,Detective - Complete Set,2011,540,6 +8805-12,Evil Dwarf - Complete Set,2011,540,10 +8805-13,Boxer - Complete Set,2011,540,5 +8805-14,Egyptian Queen - Complete Set,2011,540,6 +8805-15,Gangster - Complete Set,2011,540,7 +8805-16,Snowboarder Guy - Complete Set,2011,540,6 +8805-17,Collectable Minifigures - LEGO Minifigures Series 5 - Complete,2011,540,16 +8805-18,Minifigure Series 5 (Box of 60),2011,540,60 +8805-2,Gladiator - Complete Set,2011,540,7 +8805-3,Royal Guard - Complete Set,2011,540,6 +8805-4,Ice Fisherman - Complete Set,2011,540,8 +8805-5,Cave Woman - Complete Set,2011,540,7 +8805-6,Lizard Man - Complete Set,2011,540,6 +8805-7,Zookeeper - Complete Set,2011,540,7 +8805-8,Lumberjack - Complete Set,2011,540,6 +8805-9,Small Clown - Complete Set,2011,540,6 +8808-1,F1 Racer,1994,12,93 +8809-1,"King Mathias (Series 1) Limited Edition with Map and Cape, US",2004,198,44 +8810-1,Cafe Racer,1991,13,80 +8811-1,Toa Lhikan & Kikanalo,2004,347,217 +8812-1,Aero Hawk II,1994,6,148 +8813-1,Battle at the Pass,2006,198,377 +8815-1,Speedway Bandit,1991,12,78 +8816-1,Off-Road Rambler,1994,11,185 +8818-1,Baja Blaster,1993,11,119 +8820-1,Mountain Rambler,1991,11,139 +8821-1,Rogue Knight Battleship,2006,198,153 +8822-1,Gargoyle Bridge,2006,198,234 +8823-1,Mistlands Tower,2006,198,437 +8824-1,Hovercraft,1994,10,192 +8825-1,Night Chopper,1991,6,113 +8826-1,ATX Sport Cycle,1993,13,95 +8827-0,Minifigure Series 6 [Random Bag],2012,541,0 +8827-1,Classic Alien - Complete Set,2012,541,6 +8827-10,Roman Soldier - Complete Set,2012,541,7 +8827-11,Surgeon - Complete Set,2012,541,7 +8827-12,Skater Girl - Complete Set,2012,541,8 +8827-13,Intergalactic Girl - Complete Set,2012,541,9 +8827-14,Butcher - Complete Set,2012,541,7 +8827-15,Mechanic - Complete Set,2012,541,7 +8827-16,Genie - Complete Set,2012,541,7 +8827-17,Collectable Minifigures - LEGO Minifigures Series 6 - Complete,2012,541,16 +8827-18,Minifigure Series 6 (Box of 60),2012,541,60 +8827-2,Highland Battler - Complete Set,2012,541,7 +8827-3,Sleepyhead - Complete Set,2012,541,6 +8827-4,Lady Liberty - Complete Set,2012,541,8 +8827-5,Bandit - Complete Set,2012,541,8 +8827-6,Flamenco Dancer - Complete Set,2012,541,6 +8827-7,Clockwork Robot - Complete Set,2012,541,6 +8827-8,Minotaur - Complete Set,2012,541,8 +8827-9,Leprechaun - Complete Set,2012,541,9 +8828-1,Front End Loader,1993,7,175 +8829-1,Dune Blaster,1994,11,277 +8830-1,Rally 6-wheeler,1990,12,169 +8831-0,Minifigure Series 7 [Random Bag],2012,542,0 +8831-1,Swimming Champion - Complete Set,2012,542,6 +8831-10,Jungle Boy - Complete Set,2012,542,7 +8831-11,Hippie - Complete Set,2012,542,9 +8831-12,Computer Programmer - Complete Set,2012,542,7 +8831-13,Viking Woman - Complete Set,2012,542,9 +8831-14,Evil Knight - Complete Set,2012,542,8 +8831-15,Rocker Girl - Complete Set,2012,542,6 +8831-16,Grandma Visitor - Complete Set,2012,542,7 +8831-17,LEGO Minifigures Series 7 - Complete,2012,542,16 +8831-18,Minifigure Series 7 (Box of 60),2012,542,60 +8831-2,Aztec Warrior - Complete Set,2012,542,7 +8831-3,Bunny Suit Guy - Complete Set,2012,542,7 +8831-4,Bride - Complete Set,2012,542,11 +8831-5,Ocean King - Complete Set,2012,542,7 +8831-6,Bagpiper - Complete Set,2012,542,7 +8831-7,Daredevil - Complete Set,2012,542,8 +8831-8,Galaxy Patrol - Complete Set,2012,542,7 +8831-9,Tennis Ace - Complete Set,2012,542,6 +8832-1,Roadster,1988,12,86 +8833-0,Minifigure Series 8 [Random Bag],2012,543,0 +8833-1,Evil Robot - Complete Set,2012,543,8 +8833-10,Santa - Complete Set,2012,543,7 +8833-11,Vampire Bat - Complete Set,2012,543,5 +8833-12,DJ - Complete Set,2012,543,7 +8833-13,Red Cheerleader - Complete Set,2012,543,7 +8833-14,Actor - Complete Set,2012,543,7 +8833-15,Pirate Captain - Complete Set,2012,543,7 +8833-16,Alien Villainess - Complete Set,2012,543,10 +8833-17,LEGO Minifigures Series 8 - Complete,2012,543,16 +8833-18,Minifigure Series 8 (Box of 60),2012,543,60 +8833-2,Conquistador - Complete Set,2012,543,8 +8833-3,Lederhosen Guy - Complete Set,2012,543,7 +8833-4,Cowgirl - Complete Set,2012,543,6 +8833-5,Football Player - Complete Set,2012,543,8 +8833-6,Diver - Complete Set,2012,543,8 +8833-7,Downhill Skier - Complete Set,2012,543,9 +8833-8,Businessman - Complete Set,2012,543,7 +8833-9,Fairy - Complete Set,2012,543,8 +8835-1,Forklift,1989,7,240 +8836-1,Sky Ranger,1993,6,273 +8837-1,Pneumatic Excavator,1992,7,257 +8838-1,Shock Cycle,1991,13,248 +8839-1,Supply Ship,1992,10,531 +8840-1,Rally Shock n' Roll Racer,1991,12,229 +8841-1,Desert Racer,1983,11,180 +8842-1,Go-Cart,1986,12,280 +8843-1,Fork Lift Truck,1984,7,272 +8844-1,Helicopter,1981,4,316 +8845-1,Dune Buggy,1981,4,174 +8846-1,Tow Truck,1982,4,379 +8847-1,Dragster,1983,4,250 +8848-1,Power Truck,1981,4,398 +8849-1,Tractor,1986,8,347 +8850-1,Rally Support Truck,1990,12,360 +885-1,Space Scooter,1979,130,20 +8851-1,Excavator,1984,7,362 +8852-1,Robot,1987,14,327 +8853-1,Excavator / Digger,1988,7,326 +8854-1,Power Crane,1989,7,516 +8855-1,Prop Plane,1988,6,570 +8856-1,Whirlwind Rescue,1991,6,516 +8857-1,Street Chopper / Trike,1993,13,377 +8857-2,LEGO Motorcycle,1980,4,409 +8858-1,Rebel Wrecker,1994,11,452 +8858-2,Auto Engines,1980,4,244 +8859-1,Tractor,1981,4,614 +8860-1,Car Chassis,1980,4,676 +886-1,Space Buggy,1979,130,20 +8862-1,Backhoe Grader,1989,7,679 +8863-1,Blizzard's Peak,2010,123,502 +8864-1,Desert of Destruction,2010,123,964 +8865-1,Test Car,1988,15,900 +8866-1,Train Motor (RC),2009,245,7 +8867-1,Flexible Train Track,2009,245,64 +8868-1,Airtech Claw Rig,1992,7,979 +8869-1,Power Functions Control Switch,2009,438,1 +8870-1,Power Functions Light,2009,438,1 +8871-1,Power Functions Extension Wire 50cm,2009,438,1 +8872-1,Forklift Transporter,1993,7,763 +8873-1,Fireball Catapult,2005,198,45 +8874-1,Battle Wagon,2005,198,126 +8875-1,King's Siege Tower,2005,198,131 +8876-1,Scorpion Prison Cave,2005,198,279 +8877-1,Vladek's Dark Fortress,2005,198,987 +8878-1,Rechargeable Battery Box,2009,438,1 +8879-1,IR Speed Remote Control,2009,438,1 +8880-1,Super Car,1994,15,1345 +8881-1,Power Functions Battery Box,2008,438,1 +8882-1,Power Functions XL-Motor,2008,438,1 +8883-1,Power Functions M-Motor,2008,438,1 +8884-1,Power Functions IR Receiver,2008,438,1 +8885-1,Power Functions IR Remote Control,2008,438,1 +8886-1,Power Functions Extension Wire,2008,438,1 +8887-1,Power Functions Transformer 10VDC,2009,438,1 +8888-1,Idea Book 8888,1980,498,1 +8889-1,Idea Book 8889,1984,498,1 +8890-1,Idea Book 8890,1988,498,1 +889-1,Radar Truck,1979,130,29 +8891-1,"Idea Book 8891, Technic",1991,498,1 +8892-1,Piraka Outpost,2006,341,211 +8893-1,Lava Chamber Gate,2006,341,375 +8894-1,Piraka Stronghold,2006,341,649 +8896-1,Snake Canyon,2010,123,56 +8897-1,Jagged Jaws Reef,2010,123,190 +8898-1,Wreckage Road,2010,123,267 +8899-1,Gator Swamp,2010,123,329 +8900-1,Reidak,2006,340,41 +890-1,Windup Motor,1981,473,10 +8901-1,Hakann,2006,340,42 +890-2,"Lockable Storage Box, Empty",1967,371,1 +8902-1,Vezok,2006,340,41 +8903-1,Zaktan,2006,340,42 +8904-1,Avak,2006,340,41 +8905-1,Thok,2006,340,42 +8907-1,Rock Hacker,2009,439,29 +8908-1,Monster Launcher,2009,439,15 +8909-0,Team GB Minifigures [Random Bag],2012,546,0 +8909-1,Brawny Boxer - Team GB,2012,546,6 +8909-17,Team GB Minifigures - Complete Set,2012,546,9 +8909-18,Team GB Minifigures - Sealed Box,2012,546,60 +8909-2,Stealth Swimmer - Team GB Complete Set with Stand and Accessories,2012,546,6 +8909-3,Relay Runner - Team GB Complete Set with Stand and Accessories,2012,546,7 +8909-4,Judo Fighter - Team GB Complete Set with Stand and Accessories,2012,546,6 +8909-5,Tactical Tennis Player - Team GB Complete Set with Stand and Accessories,2012,546,7 +8909-6,Flexible Gymnast - Team GB Complete Set with Stand and Accessories,2012,546,9 +8909-7,Wondrous Weightlifter - Team GB Complete Set with Stand and Accessories,2012,546,9 +8909-8,Horseback Rider - Team GB Complete Set with Stand and Accessories,2012,546,6 +8909-9,Agile Archer - Team GB Complete Set with Stand and Accessories,2012,546,7 +8910-1,Toa Mahri Kongu,2007,352,63 +891-1,Two-Man Scooter,1979,130,39 +8911-1,Toa Mahri Jaller,2007,352,67 +8912-1,Toa Mahri Hewkii,2007,352,61 +8913-1,Toa Mahri Nuparu,2007,352,58 +8914-1,Toa Mahri Hahli,2007,352,58 +891501-1,Ninjago Kai,2015,435,9 +891503-1,Cole polybag,2015,435,11 +891504-1,Weapon Rack,2015,435,25 +891505-1,Jay,2015,435,9 +891507-1,Zane foil pack,2015,435,9 +8915-1,Toa Mahri Matoro,2007,352,62 +8916-1,Takadox,2007,326,62 +891610-1,Clouse foil pack,2016,435,8 +891611-1,Cole foil pack,2016,435,16 +891613-1,Kai’s dragon,2016,435,21 +8917-1,Kalmah,2007,326,53 +8918-1,Carapar,2007,326,50 +8919-1,Mantax,2007,326,58 +8920-1,Ehlek,2007,326,54 +8921-1,Pridak,2007,326,47 +8922-1,Gadunka,2007,359,176 +8923-1,Hydraxon,2007,359,165 +8924-1,Maxilos and Spinax,2007,359,256 +8925-1,Barraki Deepsea Patrol,2007,341,200 +8926-1,Toa Undersea Attack,2007,341,357 +8927-1,Toa Terrain Crawler,2007,341,603 +8929-1,Defilak,2007,334,37 +8930-1,Dekar,2007,334,37 +8931-1,Thulox,2007,334,39 +8932-1,Morak,2007,334,40 +8934-1,Squid Ammo,2007,346,7 +8935-1,Nocturn,2007,359,114 +8939-1,Lesovikk,2007,359,149 +8940-1,Karzahni,2007,359,373 +894-1,Mobile Ground Tracking Station,1979,130,79 +8941-1,Rockoh T3,2008,327,388 +8942-1,Jetrax T6,2008,327,420 +8942-2,Jetrax T6 Limited Edition,2008,327,420 +8943-1,Axalara T9,2008,327,694 +8944-1,Tanma,2008,333,14 +8945-1,Solek,2008,333,14 +8946-1,Photok,2008,333,14 +8947-1,Radiak,2008,333,16 +8948-1,Gavla,2008,333,14 +8949-1,Kirop,2008,333,14 +895-1,Windup Motor,1986,473,10 +8952-1,Mutran & Vican,2008,359,90 +8953-1,Makuta Icarax,2008,359,159 +8954-1,Mazeka,2008,359,301 +8956-1,Stone Chopper,2009,439,33 +8957-1,Mine Mech,2009,439,69 +8958-1,Granite Grinder,2009,439,96 +8959-1,Claw Digger,2009,439,199 +8960-1,Thunder Driller,2009,439,237 +8961-1,Crystal Sweeper,2009,439,479 +8962-1,Crystal King,2009,439,169 +8963-1,Rock Wrecker,2009,439,224 +8964-1,Titanium Command Rig,2009,439,708 +8967-1,Gold Tooth's Getaway,2009,302,67 +8968-1,River Heist,2009,302,202 +8969-1,4-Wheeling Pursuit,2009,302,318 +8970-1,Robo Attack,2009,302,412 +897-1,Mobile Rocket Launcher,1979,130,77 +8971-1,Aerial Defense Unit,2009,302,698 +8972-1,Atakus,2009,325,13 +8973-1,Raanu,2009,325,14 +8974-1,Tarduk,2009,325,17 +8975-1,Berix,2009,325,15 +8976-1,Metus,2009,325,14 +8977-1,Zesk,2009,325,16 +8978-1,Skrall,2009,331,50 +8979-1,Malum,2009,331,59 +8980-1,Gresh,2009,331,55 +8981-1,Tarix,2009,331,57 +8982-1,Strakk,2009,331,46 +8983-1,Vorox,2009,331,51 +8984-1,Stronius,2009,332,55 +8985-1,Ackar,2009,332,55 +8986-1,Vastus,2009,332,52 +8987-1,Kiina,2009,332,43 +8988-1,Gelu,2009,332,52 +8989-1,Mata Nui,2009,332,52 +8990-1,Fero and Skirmix,2009,359,148 +8991-1,Tuma,2009,359,187 +8992-1,Cendox V1,2009,327,151 +8993-1,Kaxium V3,2009,327,251 +8994-1,Baranus V7,2009,327,263 +8995-1,Thornatus V9,2009,327,438 +8996-1,Skopio XV-1,2009,327,848 +8998-1,Toa Mata Nui,2009,359,366 +900-1,Universal Motor Set,1973,473,24 +9001-2,Medium Blue Storage Bin (16.5in x 12in x 6in),2007,528,1 +900-2,4 Small Wheels with Accessories,1969,371,12 +901-1,4.5V Motor Set,1976,473,31 +901-2,2 Large Wheels with Accessories,1969,371,7 +901503-1,Krait Polybag,2015,435,7 +90-2,Educational Box - Empty,1965,513,1 +9020-1,LEGO Soft Starter Set,1998,526,84 +902-1,5 Turntables,1969,371,5 +9021-1,Medium set of Soft Bricks,1999,526,52 +9022-1,Extra Soft Bricks,1999,526,32 +9023-1,Soft Brick Activity Set,2000,526,7 +9027-1,Duplo Bulk Set,2007,504,144 +903-1,Train Wheels and Couplers,1969,371,10 +906-1,12 doors and 5 hinges,1969,371,17 +9089-1,Tubes Experiment Set,2004,507,150 +9090-1,XL Duplo Bulk Set,1993,507,564 +9091-1,Playhouse Set,2010,504,125 +9092-1,Crazy Demon,2012,112,85 +9093-1,Bone Cruncher,2012,112,86 +9094-1,Star Striker,2012,112,88 +9095-1,Nitro Predator,2012,112,86 +9-1,Universal Building Set,1978,469,116 +910-1,Universal Building Set,1976,469,318 +911-1,Universal Building Set,1976,469,401 +911506-1,Null Set-Use SW911506-1,2015,301,1 +911609-1,Naboo Starfighter,2016,164,34 +911611-1,AAT,2016,158,37 +911613-1,TIE Bomber,2016,164,26 +911614-1,Yoda's Hut,2016,158,29 +911615-1,AT-AT,2016,158,48 +911618-1,Flash Speeder,2017,158,43 +912-1,Universal Building Set,1976,469,471 +914-1,"Windows, Red",1969,371,10 +914-2,"Windows, White",1969,371,10 +915-1,6 bricks with 16 and 20 studs and 3 Angle Bricks White/Red,1969,371,9 +915-2,6 bricks with 16 and 20 studs and 3 Angle Bricks Blue/Yellow,1969,371,9 +918-1,Space Transport,1979,130,86 +918-2,21 8-Stud Bricks,1969,371,126 +918-black-2,21 Black 2x4 Bricks,1969,371,21 +918-blue-2,21 Blue 2x4 Bricks,1969,371,21 +918-red-2,21 Red 2x4 Bricks,1969,371,21 +918-tclear-2,21 Trans-Clear 2x4 Bricks,1969,371,21 +918-white-2,21 White 2x4 Bricks,1969,371,21 +918-yellow-2,21 Yellow 2x4 Bricks,1969,371,21 +919-1,"31 bricks with 2, 4 and 6 studs",1969,371,186 +9-2,Trees & Flowers,1981,455,18 +920-2,Alpha-1 Rocket Base,1979,130,187 +9209-1,Community Services Set,2012,507,130 +9213-1,Dinosaurs Set,2007,504,95 +9217-1,Farm Set,2010,504,150 +9218-1,Wild Animals Set,2012,507,96 +922-1,"28 Bricks with 1, 2, 4, 6 and 8 Studs [Red/White]",1969,371,28 +922-2,"28 Bricks with 1, 2, 4, 6 and 8 Studs [Blue/Yellow]",1969,371,28 +9222-1,Duplo World People,2007,504,16 +922-3,"28 Bricks with 1, 2, 4, 6 and 8 Studs [Black/Trans-Clear]",1969,371,28 +9224-1,Duplo Community People,2006,504,21 +9227-1,Farm,2007,504,104 +9230-1,Duplo Town Set,2004,505,204 +923-1,"50 bricks, curved and round",1969,371,150 +924-1,Space Cruiser,1979,130,172 +9241-1,Wheels Set,2007,528,360 +9243-1,Doors Windows and Roof Tiles,2002,528,270 +9247-1,Community Workers,2005,533,133 +9247-2,Community Workers,2006,533,218 +9248-1,Bonus Lego Basic Town,1998,534,2 +9249-1,LEGO Basic Airport,1988,534,0 +9251-1,Lego Basic Just Bricks,2000,507,576 +9255-1,Basic Set,1992,534,185 +9256-1,"Faces, Fences, Wheels and Windows",2000,528,110 +926-1,Command Centre (Center),1979,130,177 +9279-2,Small Lego System Baseplates,2008,528,9 +9280-1,Giant Lego Dacta Basic Set,1997,534,1417 +928-1,Galaxy Explorer,1979,130,342 +9286-1,Large Building Plates,1998,528,4 +9287-1,Bonus Lego Basic Town,1996,534,2472 +9293-1,Community Workers,1996,533,80 +9-3,Magnetic Train Couplers,1977,456,4 +930-1,Red Bricks,1973,473,45 +9301-1,Road Signs,1999,533,172 +9302-1,Creator Community Builders,2004,514,1690 +9303-1,Creator Community Builders,2004,514,1184 +9305-1,Jack Stone Transportation,2003,508,4 +9306-1,Creator Bulk,2003,22,610 +9310-1,Dinosaurs Set,2001,515,4 +931-1,White Bricks,1973,473,45 +9311-1,City Buildings Set,2010,533,815 +9314-1,Rescue Service Set,2010,533,1493 +9320-1,Voyage into Space,2003,527,637 +932-1,Blue and Yellow Bricks,1973,473,45 +9322-1,Town Developers Set,2007,533,1835 +9324-1,Micro Building Set,2007,533,1657 +933-1,Doors and Windows,1973,473,38 +9331-1,BuildToExpress Set,2009,507,207 +9333-1,Vehicles,2010,533,934 +9334-1,Animals,2010,507,1082 +9335-1,Space & Airport Set,2010,533,1182 +9337-1,Harbor Set,2011,533,906 +9338-1,LEGO SERIOUS Play mini-kit,2011,507,57 +934-1,"Roof Bricks, 45 Degrees",1973,473,58 +9348-1,Community Minifigures,2011,533,264 +9349-1,Fairytale and Historic Minifigures,2011,507,232 +935-1,"Roof Bricks, 33 Degrees",1973,473,43 +9353-1,Dacta Theme Set,1991,533,900 +9354-1,Town Street Theme,1991,533,488 +9355-1,Dacta Space Theme Set,1990,527,559 +9356-1,Town Environment,1986,533,639 +9360-1,{Roadplates and Scenery},1986,533,85 +936-1,Wheels and Tires,1973,473,20 +9361-1,People,1991,533,174 +9362-1,Road Plates,1991,533,8 +9364-1,Hospital,1993,533,584 +9365-1,Lego Dacta Community Vehicles,1993,533,739 +9369-1,Lego Dacta Community Vehicles,1998,533,6 +9370-1,Lego System Road Plates,1998,533,10 +937-1,Doors and Fences,1973,473,34 +9371-1,Town Vehicles,1999,533,353 +9373-1,Lego System Road Plates,2003,533,5 +9376-1,Lego Dacta Castle Set,1997,512,337 +9377-1,Lego Dacta Adventurers Set,1998,509,3 +9380-1,Lego Technic Racers,1998,529,5 +938-1,"Plates, Hinges and Turntables",1973,473,17 +9384-1,Bricks,2010,528,884 +9385-1,Sceneries Set,2010,22,1229 +9386-1,Doors Windows & Roof Tiles,2010,528,278 +9387-1,Wheels Set,2011,507,286 +9388-1,Small building plates,2012,507,22 +9389-1,Community Starter Set,2012,507,1903 +9390-1,Mini Tow Truck,2012,1,138 +939-1,"Flags, Trees and Road Signs",1972,473,17 +9391-1,Mini Crane,2012,5,218 +9392-1,Quad Bike,2012,5,198 +9393-1,Tractor,2012,5,353 +9394-1,Jet Plane,2012,5,508 +9395-1,Pick-Up Tow Truck,2012,5,953 +9396-1,Helicopter,2012,5,1055 +9397-1,Logging Truck,2012,1,1311 +9398-1,4 x 4 Crawler,2012,11,1326 +940-1,"Flags, Signs and Trees",1973,473,17 +941-1,Black and Clear Bricks,1974,473,48 +9440-1,Venomari Shrine,2012,435,86 +9441-1,Kai’s Blade Cycle,2012,435,187 +9442-1,Jay's Storm Fighter,2012,435,242 +9443-1,Rattlecopter,2012,435,309 +9444-1,Cole’s Tread Assault,2012,435,285 +9445-1,Fangpyre Truck Ambush,2012,435,451 +9446-1,Destiny's Bounty,2012,435,683 +9447-1,Lasha's Bite Cycle,2012,435,248 +9448-1,Samurai Mech,2012,435,451 +9449-1,Ultra Sonic Raider,2012,435,620 +9450-1,Epic Dragon Battle,2012,435,900 +9452-1,Giant Lego Topic Set,1991,534,2195 +9453-1,Universal School Set,1997,534,697 +9454-1,Function Set,1992,534,350 +9455-1,Fangpyre Mech,2012,435,246 +9456-1,Spinner Battle Arena,2012,435,408 +9457-1,Crane Wrecking Ball,2012,435,414 +9461-1,The Swamp Creature,2012,558,70 +9462-1,The Mummy,2012,558,91 +9463-1,The Werewolf,2012,558,243 +9464-1,The Vampire Hearse,2012,558,313 +9465-1,The Zombies,2012,558,447 +9466-1,The Crazy Scientist & His Monster,2012,558,429 +9467-1,The Ghost Train,2012,558,741 +9468-1,The Vampyre Castle,2012,558,942 +9469-1,Gandalf Arrives,2012,567,83 +9470-1,Shelob Attacks,2012,569,227 +9471-1,Uruk-hai Army,2012,568,257 +9472-1,Attack on Weathertop,2012,567,429 +9473-1,The Mines of Moria,2012,567,780 +9474-1,The Battle of Helm’s Deep,2012,568,1365 +9476-1,The Orc Forge,2012,568,362 +9478-1,Fransesco Bernoulli,2012,269,49 +9479-1,Ivan Mater,2012,269,52 +9480-1,Finn McMissile,2012,269,52 +948-1,Go-Kart,1978,4,211 +9481-1,Jeff Gorvette,2012,269,54 +9483-1,Agent Mater’s Escape,2012,269,144 +9484-1,Red’s Water Rescue,2012,269,198 +9485-1,Ultimate Race Set,2012,269,279 +9486-1,Oil Rig Escape,2012,269,421 +9488-1,Elite Clone Trooper & Commando Droid Battle Pack,2012,165,105 +9489-1,Endor Rebel Trooper & Imperial Trooper Battle Pack,2012,169,77 +9490-1,Droid Escape,2012,169,136 +9491-1,Geonosian Cannon,2012,165,133 +9492-1,TIE Fighter,2012,169,413 +9493-1,X-wing Starfighter,2012,169,559 +9494-1,Anakin's Jedi Interceptor,2012,168,299 +9495-1,Gold Leader's Y-wing Starfighter,2012,169,457 +9496-1,Desert Skiff,2012,169,220 +9497-1,Republic Striker Starfighter,2012,158,378 +9498-1,Saesee Tiin's Jedi Starfighter,2012,165,243 +9499-1,Gungan Sub,2012,166,464 +9500-1,Sith Fury-class Interceptor,2012,170,746 +950-1,Fork Lift,1979,4,216 +9509-1,"Advent Calendar 2012, Star Wars",2012,209,25 +9509-10,"Advent Calendar 2012, Star Wars (Day 9) - Imperial Officer",2012,225,4 +9509-11,"Advent Calendar 2012, Star Wars (Day 10) - AT-AT Walker",2012,225,13 +9509-12,"Advent Calendar 2012, Star Wars (Day 11) - Hoth Blaster Station",2012,225,6 +9509-13,"Advent Calendar 2012, Star Wars (Day 12) - Hoth Rebel Trooper",2012,225,6 +9509-14,"Advent Calendar 2012, Star Wars (Day 13) - Gonk Droid (GNK Power Droid)",2012,225,14 +9509-15,"Advent Calendar 2012, Star Wars (Day 14) - General Grievous Weapon Depot",2012,225,10 +9509-16,"Advent Calendar 2012, Star Wars (Day 15) - Snowtrooper",2012,225,4 +9509-17,"Advent Calendar 2012, Star Wars (Day 16) - Naboo Royal Shuttle",2012,225,18 +9509-18,"Advent Calendar 2012, Star Wars (Day 17) - Flash Speeder",2012,225,14 +9509-19,"Advent Calendar 2012, Star Wars (Day 18) - Rebel Scout Trooper",2012,225,5 +9509-2,"Advent Calendar 2012, Star Wars (Day 1) - Gungan Sub",2012,225,13 +9509-20,"Advent Calendar 2012, Star Wars (Day 19) - Trade Federation AAT",2012,225,15 +9509-21,"Advent Calendar 2012, Star Wars (Day 20) - General Grievous Starfighter",2012,225,14 +9509-22,"Advent Calendar 2012, Star Wars (Day 21) - Super Battle Droid",2012,225,4 +9509-23,"Advent Calendar 2012, Star Wars (Day 22) - Sith Infiltrator",2012,225,15 +9509-24,"Advent Calendar 2012, Star Wars (Day 23) - Snowman R2-D2",2012,225,8 +9509-25,"Advent Calendar 2012, Star Wars (Day 24) - Santa Darth Maul",2012,225,7 +9509-3,"Advent Calendar 2012, Star Wars (Day 2) - Gungan Soldier",2012,225,3 +9509-4,"Advent Calendar 2012, Star Wars (Day 3) - Gungan Battle Depot",2012,225,8 +9509-5,"Advent Calendar 2012, Star Wars (Day 4) - Star Destroyer",2012,225,14 +9509-6,"Advent Calendar 2012, Star Wars (Day 5) - Trade Federation MTT",2012,225,9 +9509-7,"Advent Calendar 2012, Star Wars (Day 6) - Battle Droid Security",2012,225,5 +9509-8,"Advent Calendar 2012, Star Wars (Day 7) - Naboo Starfighter",2012,225,16 +9509-9,"Advent Calendar 2012, Star Wars (Day 8) - Vulture Droid",2012,225,9 +951-1,Bulldozer,1979,4,372 +951178-1,Basic Bricks,1987,534,18 +951-2,Lego TC logo Starter Pack,1988,529,16 +9515-1,Malevolence,2012,165,1098 +9516-1,Jabba’s Palace,2012,169,716 +952-1,Tractor,1978,4,322 +9525-1,Pre Vizsla's Mandalorian Fighter,2012,165,399 +9526-1,Palpatine’s Arrest,2012,168,646 +9530-1,Letters Set,2008,507,134 +9531-1,Numbers and Mosaics Set,2008,507,352 +954-1,Sky Copter,1978,4,364 +9544-1,Math Machines Set,2006,507,554 +955-1,Mobile Crane,1979,4,512 +9551-1,Kendo Cole,2012,435,28 +9552-1,Lloyd Garmadon,2012,435,26 +9553-1,Jay ZX,2012,435,29 +9554-1,Zane ZX,2012,435,38 +9555-1,Mezmo,2012,435,32 +9556-1,Bytar,2012,435,25 +9557-1,Lizaru,2012,435,25 +9558-1,Training Set,2012,435,218 +956-1,Auto Chassis,1978,4,603 +9561-1,Kai ZX,2012,435,21 +9562-1,Lasha,2012,435,21 +9563-1,Kendo Zane,2012,435,35 +9564-1,Snappa,2012,435,20 +9566-1,Samurai X,2012,435,23 +9567-1,Fang-Suei,2012,435,21 +9569-1,Spitta,2012,435,20 +9570-1,NRG Jay,2012,435,20 +9571-1,Fangdam,2012,435,19 +9572-1,NRG Cole,2012,435,15 +9573-1,Slithraa,2012,435,15 +9574-1,Lloyd ZX,2012,435,18 +9579-1,Starter Set,2012,435,53 +9580-1,WeDo Robotics Construction Set,2009,507,157 +9581-1,WeDo Robotics USB Hub,2009,521,1 +9583-1,WeDo Robotics Motion Sensor,2009,521,1 +9584-1,WeDo Robotics Tilt Sensor,2009,521,1 +9585-1,LEGO® Education WeDo Resource Set,2009,521,326 +9590-1,NRG Zane,2012,435,24 +9591-1,Weapon Pack,2012,435,73 +9594-1,Green City,2011,518,1356 +960-1,Power Pack,1978,4,22 +9604-1,LEGO TECHNIC and Pneumatic elements,1992,1,128 +9605-1,4.5V Technic Resource Set,1990,532,1534 +9607-1,Technology Activity Set,1994,529,318 +9608-1,Teacher's Guide for Technology Group Activity Set,1994,529,16 +9609-1,Technology Resource Set,1995,1,1730 +9610-1,Gear Set,1993,1,76 +961-1,Expert Builder/Gear Parts,1978,4,78 +9612-1,Lever Set,1993,1,63 +9614-1,Pulley Set,1995,1,77 +9615-1,Motor Add-On for Simple Mechanisms,1997,1,3 +9616-1,Wheels and Axles Mini Set,1995,529,82 +9617-1,Pneumatics I: Introduction to Air Power Set,1997,1,97 +9618-1,Structures Set,1997,529,439 +9628-1,Mechanisms Power Add-On Set,2008,532,3 +9630-1,Simple Mechanisms Set,1997,1,218 +9631-1,Simple and Motorized Machines Activity Pack,1997,529,24 +9632-1,Science & Technology Base Set,2006,529,341 +9633-1,Advanced Air Power Set,1999,1,217 +9636-1,Solar Add-on,2000,1,3 +9637-1,Speed Computer Add-on,2000,1,2 +9640-1,Gears Classroom Pack,1994,529,0 +964-1,"10 building plates 2 x 8, 4 x 8, 6 x 8",1969,371,10 +9641-1,Mechanisms Pneumatics Add-On Set,2008,528,31 +9642-1,Levers Classroom Pack,1994,529,0 +9644-1,Pulley Classroom Pack,1994,529,0 +9645-1,Motorized Simple Machines Set,1997,529,2 +9646-1,Wheel and Axle Classroom Pack,1994,529,0 +9648-1,Education Resource Set [NXT Supplemental Set],2006,1,674 +9649-1,Technology Resource Set,2003,1,1154 +9650-1,Scenery Resource Set,2002,518,717 +9656-1,Early Simple Machines Set,2008,504,99 +9657-1,FIRST LEGO League Challenge 2012 - Senior Solutions,2012,398,1612 +9660-2,Motorized Mechanisms Set,2008,529,2 +9664-1,FIRST LEGO League Challenge 2013 - Nature's Fury,2013,398,1995 +9665-1,Mechanical Engineering Set,2001,1,315 +9667-1,Solar Panel,2010,532,1 +9668-1,Energy Display,2010,532,1 +9669-1,Electric Battery Box 9V 150 mAh (Rechargeable),2010,532,1 +9670-1,E-Motor with Gear Reduction Ratio 9.5 : 1,2010,532,1 +9674-1,Naboo Starfighter & Naboo,2012,166,56 +9675-1,Sebulba's Podracer & Tatooine,2012,166,80 +9676-1,TIE Interceptor & Death Star,2012,169,65 +9677-1,X-wing Starfighter & Yavin 4,2012,177,77 +9678-1,Twin-pod Cloud Car & Bespin,2012,177,78 +9679-1,AT-ST & Endor,2012,177,65 +9681-1,eLAB Renewable Energy Set,1999,531,713 +9684-1,Renewable Energy Set II,2003,1,732 +9685-1,Green Car Set,2003,1,47 +9686-1,Simple and Motorized Mechanisms Base Set,2009,507,389 +9688-1,Renewable Energy Add-On Set,2010,532,12 +9689-1,Simple Machines Set,2009,521,194 +9693-1,"Rechargeable Battery for Lego Mindstorms NXT, DC plug",2010,259,1 +9694-1,NXT Color Sensor,2010,259,1 +9695-1,Mindstorms Education Resource Set,2010,259,816 +9696-1,FIRST LEGO League Challenge 2010 - Body Forward v46,2010,398,1515 +9697-1,FIRST LEGO League Challenge 2011 - Food Factor,2011,398,2115 +9698-1,FIRST LEGO League Challenge 2009 - Smart Move,2009,398,1310 +9699-1,FIRST LEGO League Challenge 2008 - Climate Connections,2008,398,834 +970004-1,Yellow Band (Pack of 25),2002,524,25 +970005-1,9-Volt 1 x 2 Lamp Brick (Pack of 2),2002,524,2 +970008-1,1 x 2 Red Bricks (Pack of 50),2002,524,50 +970009-1,1 x 2 Blue Plates (Pack of 100),2002,524,100 +9700-1,Technic Control Center,1987,529,472 +970010-1,Hubs Gray (Pack of 50),2002,525,50 +970017-1,14-Tooth Beveled Gears (Pack of 100),2002,525,100 +970018-1,Gray Pulley Wheel (Pack of 50),2008,525,50 +970021-1,Red Rover Tires and Hubs (4 tires 4 hubs),2002,524,8 +970028-1,Shock Absorber (Pack of 10),2002,525,10 +970030-1,Lift Arm (Pack of 50),2002,525,50 +970036-1,2 x 2 Angle Plate (Pack of 25),2002,524,25 +970039-1,Lever Arm (Pack of 50),2002,525,50 +970040-1,Caterpillar Hub and Tread (Set of 2 treads 4 Hubs),2002,524,6 +970041-1,128 MM Connecting Leads (Pack of 3),2002,525,3 +970042-1,Piston Rod (Pack of 75),2002,525,75 +970043-1,Small Half Beam (Pack of 100),2002,525,100 +970047-1,Large Tire and Hub (2 tires 2 hubs),2002,524,4 +970098-1,Special Elements for Control Lab Set,2001,1,125 +970-1,Lighting Bricks,1978,473,17 +9701-1,Control Lab Building Set,1995,1,565 +970110-1,Pneumatic T-Pieces (Pack of 25),2002,525,25 +970111-1,Large Lawn Tire & Hub (4 tires 4 hubs),2002,524,8 +970112-1,Small Lawn Tire & Hub (4 tires 4 hubs),2002,524,8 +970113-1,Tire Pack (Set of 8),2002,524,8 +970115-1,1280 mm Connecting Leads (Pack of 3),2002,525,3 +970116-1,12 Tooth Double Bevel Gears (Pack of 25),2002,525,25 +970117-1,Pneumatic Hand Pump (Pack of 2),2002,525,2 +970118-1,Pneumatic Cylinder (Set of 2 small),2002,525,2 +970119-1,Pneumatic Tubing Service Pack,2002,525,2 +970120-1,Black Bands (Pack of 50),2002,524,25 +970121-1,Red Bands (Pack of 25),2002,524,25 +970122-1,Small White Bands (Pack of 24),2002,524,24 +970-2,47 1/3 elements (plates),1969,371,141 +9702-1,Control System Building Set,1993,1,222 +970600-1,1 x 2 Plate with Slides (Pack of 100),2002,524,100 +970601-1,Small Pulleys (Pack of 100),2002,525,100 +970602-1,Bushings (Pack of 100),2002,525,100 +970603-1,Connector Pegs (Pack of 100),2002,525,100 +970604-1,Friction Connector Pegs (Pack of 100),2002,525,100 +970605-1,Long Black Connector Pegs (Pack of 100),2002,525,100 +970606-1,Connector Pegs with Axles (Pack of 100),2002,525,100 +970607-1,Connector Pegs with Knobs (Pack of 100),2002,525,100 +970608-1,Connector Pegs (Pack of 100),2002,525,100 +970609-1,2-Stud Axles with Grooves (Pack of 100),2002,525,100 +970610-1,3-Stud Axles (Pack of 100),2002,525,100 +970611-1,Cross Axles with Knobs (Pack of 100),2002,525,100 +970612-1,4-Stud Axles (Pack of 50),2002,525,50 +970613-1,5-Stud Axles (Pack of 50),2002,525,50 +970614-1,6-Stud Axles (Pack of 50),2002,525,50 +970615-1,8-Stud Axles (Pack of 50),2002,525,50 +970616-1,10-Stud Axles (Pack of 50),2002,525,50 +970617-1,12-Stud Axles (Pack of 50),2002,525,50 +970618-1,Axle Extenders (Pack of 50) {Axle Joiners},2002,525,50 +970619-1,Catches {Technic Pole Reverser Handles},2002,525,50 +970620-1,8 Tooth Gears (Pack of 100) 'Spur' Gears,2002,525,100 +970621-1,12 Tooth Bevel Gears (Pack of 50),2002,525,50 +970622-1,16 Tooth Gears (Pack of 50),2002,525,50 +970623-1,20 Tooth Double Bevel Gears (Pack of 25),2002,525,25 +970624-1,24-Tooth Crown Gears,2003,525,50 +970625-1,24 Tooth Gears (Pack of 50),2002,525,50 +970626-1,Technic Clutches,2003,525,10 +970627-1,40 Tooth Gears (Pack of 25),2002,525,25 +970628-1,Cross Blocks (Pack of 50),2002,525,50 +970629-1,Catches with Cross Holes (Pack of 50),2002,525,50 +970630-1,Pulleys (For micromotor pack of 10),2002,525,10 +970631-1,Bricks with Cross (axle) Holes (Pack of 50),2002,525,50 +970632-1,1 x 2 Beams,2002,525,50 +970633-1,1 x 4 Beams,2002,525,30 +970634-1,1 x 6 Beams,2002,525,30 +970635-1,1 x 8 Beams,2002,525,20 +970636-1,1 x 10 Beams,2002,525,20 +970637-1,1 x 12 Beams,2002,525,10 +970638-1,1 x 16 Beams,2002,525,10 +970639-1,2 x 2 Skid Plates (Pack of 50),2002,524,50 +970640-1,Tacho Wheels (Pack of 20),2002,525,20 +970641-1,Gear Casings (Pack of 10 contained 20 prior to 2005 Dacta catalog),2002,525,10 +970643-1,Bobbins {Technic Reels},2002,525,25 +970645-1,Chain Links,2003,525,100 +970646-1,Gear Blocks (Pack of 5),2002,525,5 +970653-1,Pole Reversing Switch,2003,524,1 +970654-1,9-Volt Connecting Leads (One each of 128mm 256 mm 1280 mm),2002,525,3 +970658-1,Air Storage Tanks,2002,525,2 +970659-1,Pneumatic Parts,2002,525,5 +970660-1,O-Ring and Pulley Wheels,2002,525,50 +970661-1,Skeleton and Ghost for Amusement Park Set,2002,524,70 +970662-1,Steering Wheels (Pack of 25),2002,525,25 +970663-1,Pneumatic Switch (Pack of 5),2002,525,5 +970665-1,Universal Joints (Pack of 10),2002,525,10 +970669-1,Special Elements for Simple Machines Set,2002,524,49 +970670-1,Special Elements for Team Challenge Set,2002,524,292 +970671-1,Special Elements for Cities and Transportation Set,2002,524,119 +970672-1,Special Elements for Amusement Park Set,2002,524,78 +970673-1,Special Elements for ROBO Technology Set,2002,524,71 +970674-1,Car Project Set,2002,524,79 +970675-1,House Project Set,2002,524,80 +970676-1,Bug Project Set,2002,524,83 +970677-1,Gadget Project Set,2002,524,48 +970678-1,Special Elements for eLAB Renewable Energy Set,2002,524,315 +970679-1,Special Elements For Mechanical Engineering Set,2004,524,130 +970680-1,Special Elements for Early Simple Machines Set,2002,524,19 +970683-1,Black Plates - Large Package,2002,524,165 +970684-1,Wheels (Tires hubs axle plates and bricks),2002,524,184 +970686-1,Roof Tiles,2002,524,180 +970687-1,Team Challenge Upgrade Kit,2002,524,95 +9707-1,Intelligent House Building Set,1996,1,164 +9709-1,RCX Programmable Brick,1998,1,1 +971-1,52 flat tile bricks,1969,371,156 +9713-1,Infrared Transmission Tower,1998,520,2 +9719-1,"Robotics Invention System, Version 1.0",1998,260,736 +9723-1,Cities and Transportation,2000,1,394 +9725-1,ROBOLAB Amusement Park Set,1999,520,248 +9730-1,RoboSports,1998,260,91 +9731-1,Vision Command [RCX Digital Colour Camera],2000,260,139 +9732-1,Extreme Creatures,1998,260,148 +9735-1,Robotics Discovery Set,1999,260,390 +9736-1,Exploration Mars,1999,260,158 +9738-1,Remote Control,1998,260,1 +9742-1,Photosynthesis Student Set,2008,517,74 +9743-1,Chromosomes - Student Set,2003,517,136 +9747-1,"Robotics Invention System, Version 1.5",1999,260,729 +9748-1,Droid Developer Kit,1999,261,658 +9749-1,NXT Temperature Sensor,2009,259,1 +9750-1,LEGO Interface,1986,532,4 +9751-1,Control Lab Serial Interface & Adapter,1995,530,2 +9752-1,Technic Control Center II,1996,532,14 +9753-1,TECHNIC Control Center [Dacta Kit],1993,1,14 +9754-1,Dark Side Developers Kit,2000,261,578 +9755-1,Temperature Sensor,1999,260,1 +9756-1,Rotation Sensor,1999,260,1 +9757-1,Touch Sensor with Cable,1999,260,2 +9758-1,Light Sensor 9V,1999,260,1 +9761-1,FIRST LEGO League Challenge 2004 - No Limits,2004,398,1437 +9762-1,FIRST LEGO League Challenge 2005 - Ocean Odyssey,2005,398,1471 +9763-1,FIRST LEGO League Challenge 2006 - Nano Quest,2006,398,1505 +9764-1,FIRST LEGO League Challenge 2007 - Power Puzzle,2007,398,1575 +9767-1,Interface Card/Cable for Apple IIe and IIGS,1989,529,1 +9771-1,Interface Card and Cable for TC Logo - IBM compatible,1989,532,3 +9776-1,Pneumatic Circuit,1999,1,4 +9780-1,ROBOLAB Starter Building Set,1998,520,1712 +9780545703307-1,Klutz: LEGO Chain Reactions,2015,497,39 +9781409350545-1,LEGO Legends of Chima: Character Encyclopedia,2014,497,0 +9783-1,Infrared Transmitter with USB Cable,2001,520,2 +9784-1,FIRST LEGO League Challenge 2001 - Arctic Impact,2001,398,1388 +9785-1,Robo Technology Set [Serial Cable],2003,1,221 +9786-1,Robo Technology Set [USB Cable],2003,1,221 +9789-2,FIRST LEGO League Challenge 2002 - City Sights,2002,398,1017 +9790-1,ROBOLAB Team Challenge Set (Serial),1999,520,727 +9793-1,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],2002,520,833 +9794-1,ROBOLAB Team Challenge Set Version 2.5 [USB],2003,1,832 +9795-1,ROBOLAB Intelligent House Building Set,2001,520,164 +9797-1,LEGO MINDSTORMS Education NXT Base Set,2006,519,434 +979760-1,Mars Exploration,2003,518,810 +9798-1,NXT Rechargeable Battery,2006,259,1 +9799-1,Sensor Adaptor for Mindstorms NXT to Vernier,2008,259,0 +980-1,"23 sloping bricks, including roof peak bricks, Red",1969,371,23 +980-2,"23 sloping bricks, including roof peak bricks, Blue",1969,371,23 +981-1,"34 sloping profile bricks, including profile peak bricks, Red",1969,371,39 +981-2,"34 sloping profile bricks, including profile peak bricks, Blue",1969,371,39 +9820-1,Geared Turntable,1989,1,64 +9822-1,Beams (Red),1994,1,68 +9823-1,Beams (Blue),1994,1,68 +9824-1,Beams (Yellow),1994,1,68 +9825-1,Pneumatic Elements,1994,1,3 +9826-1,Pneumatic Tubing,1994,1,1 +9831-1,Battery Box with Switch - 9v,1995,1,1 +9833-1,AC Adapter 230V - 10V Transformer,1996,259,1 +9833-2,"AC Adapter, 120V - 10V Transformer",1996,259,1 +9833-3,AC Adapter 230V - 10V Transformer Type G Plug (British),2006,259,1 +9840-1,X-Large Blue Storage Bin (16.5in x 12in x 10in),2006,528,2 +9841-1,NXT Intelligent Brick,2006,259,1 +9842-1,NXT Servo Motor,2006,259,1 +9843-1,NXT Touch Sensor,2006,259,1 +9844-1,NXT Light Sensor,2006,259,1 +9845-1,NXT Sound Sensor,2006,259,1 +9846-1,NXT Ultrasonic Sensor,2006,259,1 +9847-1,Activity Cards for Non-Motorized Simple Machines (979630),1997,532,19 +9847-2,NXT Bluetooth Dongle,2006,259,0 +9848-1,Lamps and Fittings,1997,1,9 +9849-1,9V Micromotor,1995,525,4 +985-1,Lighting Device Parts Pack,1969,371,4 +9851-1,Assortment of Connectors,1992,1,453 +9852-1,Chain Link Pack,1992,1,229 +9853-1,Assortment of Gears,1992,1,122 +9854-1,Worm Gear Pack,1992,1,22 +9855-1,Assortment of Tires/Wheels,1992,1,56 +9856-1,Assortment of Cross Axles,1992,1,124 +9857-1,Assortment of Plate Pieces,1992,1,166 +9858-1,Assortment of Beams,1992,1,126 +9859-1,TECHNIC Motor 4.5 Volt,1992,1,1 +9860-1,Battery Box (4.5 Volt),1992,1,1 +986-1,One Light Bulb,1969,371,1 +9861-1,Connecting Leads,1992,1,8 +9862-1,Random Special Pieces,1992,1,96 +9863-1,Weighted Brick Pack,1992,1,4 +9864-1,Green Building Plates,1992,1,3 +9865-1,Optosensor,1992,1,2 +9866-1,Light and Transparent Bricks,1992,1,12 +9867-1,Touch Sensor,1992,1,1 +9868-1,Plugholders and Leads,1992,1,42 +9869-1,Building Plates (24 x 24),1992,524,3 +9870-1,Pneumatic Rubber Bands and Pneumatic Tubing,1992,1,144 +987-1,Number Bricks,1969,371,52 +9871-1,Yellow Beams,1992,1,76 +9872-1,"Pneumatic Pump, Cylinder, Valves, Tubing",1992,1,10 +9874-1,Building Cards - 1090,1992,532,5 +9875-1,Building Cards - 1092,1992,532,4 +9876-1,Large Turntables,1992,1,2 +988-1,Alphabet Bricks,1969,371,45 +9883-1,Motor - 9v,1995,1,1 +9885-1,Sound element - 9v,1995,1,1 +9888-1,Touch Sensor,2002,1,1 +9889-1,Temperature Sensor,1995,1,1 +9890-1,Light Sensor,1995,1,1 +989-1,10 Traffic Signs,1969,371,10 +9891-1,Angle Sensor,1995,1,1 +9892-1,Brick Separators,1995,1,2 +98959-1,Motor,1977,4,40 +9897-1,9-Volt Connecting Leads,1998,1,3 +9898-1,9-Volt Long Connecting Leads,1996,1,2 +9899-1,Hubs and Tires,1999,1,20 +9900-1,Small Gear Wheels,1999,1,21 +990-1,Trees and Signs (1971 version with granulated trees and 4 bricks),1971,473,12 +990-2,Trees and Signs (1969 version with old style trees and 3 bricks),1969,473,11 +9911-1,9-Volt Touch Sensor and Leads,2004,260,3 +991118-1,3M Connecting Lead (Set of 2),2002,524,2 +9912-1,LEGO Solar Cell,1999,1,1 +991268-1,Special Elements Pack,2009,528,674 +991319-1,Medium Gray Storage Bin,2008,528,1 +991327-1,12-Tooth Black Double Conical Wheels (Pack of 25),2007,525,25 +991328-1,36-Tooth Double Conical Wheels (Pack of 25),2007,525,25 +991329-1,7-Stud Axles (Pack of 50),2007,525,50 +991330-1,New Turntables (Pack of 2),2007,525,2 +991331-2,Small Wide Tire & Hub (Pack of 8 each),2007,524,16 +991332-1,Technic Triangle (Pack of 25),2007,525,25 +991333-1,Cam Wheel (Pack of 25),2007,525,25 +991335-1,Swivel Magnet Pack (Pack of 10 each),2007,524,20 +991336-1,2-Stud Axles with Grooves (Pack of 100),2007,525,100 +991337-1,Connector Peg with Axle (Pack of 100),2007,525,100 +991369-1,Tracks and Sprockets Pack,2008,525,110 +991402-1,Studless Technic Beams,2008,525,35 +991403-1,Technic Angle Beams,2008,525,30 +991404-1,Technic Beams with Snaps,2008,525,30 +991405-1,Technic Crossblocks,2008,525,30 +991426-1,Black Plates - Large Package,2009,525,165 +991451-1,Tracks,2009,525,120 +991452-1,Sprockets,2009,525,22 +991464-1,LEGO Smart Kit,2009,507,20 +9916-1,LEGO Electrical Capacitor,1999,1,1 +991751-1,MINDSTORMS Energy Parts Pack,2012,525,46 +9918-1,Gear Block Yellow,1999,525,1 +9927-1,Beams (red),1999,1,44 +9928-1,Beams (blue),1999,1,44 +9929-1,Plates Red,1998,524,72 +9930-1,Plates Blue,1998,524,72 +9931-1,Plates Yellow,1998,524,72 +9932-1,Plates Black,1998,524,72 +9933-1,Basic Bricks (red),1999,524,62 +9934-1,Basic Bricks (yellow),1999,524,62 +9935-1,Basic Bricks (black),1999,524,62 +9936-1,Weight Elements,1998,524,2 +9937-1,Small Chain Links,1998,1,108 +9938-1,Conveyor Belt Links,1999,1,36 +9939-1,Assorted Pulleys,1999,1,14 +9940-1,Rubber Bands and String,1999,1,36 +994-1,LEGO fences with garden gates,1969,371,19 +9941-1,Cams & Linkages,1998,1,18 +9942-1,Connectors & Bushings,1998,1,160 +9943-1,Axles and Extenders,1998,1,54 +9945-1,Differentials,1998,525,14 +995-1,Lighting Bricks with Color Filters,1969,371,23 +9954-1,Special Elements for Mini Sets,2001,524,56 +9959-1,Special Elements for Intelligent House Building Set,2001,524,41 +9960-1,"Crane Hook, Cam, Propellor",1994,1,13 +9961-1,White Belts,1994,1,16 +9962-1,Flat Tiles,1994,524,12 +9963-1,Axle Extenders and Bushings,1995,1,88 +9964-1,Connector Pegs,1994,1,64 +9965-1,Gears 8- and 10-Tooth,1994,1,18 +9966-1,Large Gear Wheels,1999,1,16 +9967-1,Differential and Bevel Gears,1994,1,18 +9968-1,Pulley Wheels,1994,1,22 +9969-1,Tires and Spoked Hubs,1994,1,24 +9970-1,Axles - Short,1994,1,36 +9971-1,Axles - Long,1994,1,24 +9972-1,Plates (Red),1994,1,88 +9973-1,Plates (Blue),1994,1,88 +9974-1,Plates (Yellow),1994,1,88 +9975-1,Simple Machines,1987,529,122 +9999-1,Upgrade Kit for 9654,2008,507,7 +Alpharetta-1,"LEGO Store Grand Opening Exclusive Set, North Point Mall, Alpharetta, GA",2012,408,15 +AMFlag-1,American Flag with Sticker For Stars (Legoland California),2002,427,62 +Annapolis-1,"LEGO Store Grand Opening Exclusive Set, Westfield Annapolis, Annapolis, MD",2009,408,45 +auditt-1,Audi TT Roadster (Legoland Deutschland),2002,425,57 +Austin-1,"LEGO Store Grand Opening Exclusive Set, Barton Creek Square, Austin, TX",2010,408,82 +B001-1,"1 x 4 x 5 Black Window Frames, Transparent Blue Panes",2001,254,20 +B002-1,1 x 4 x 3 Train Window Clear,2000,254,25 +B003-1,"Red Frame, Black Door, Green Pane",2003,254,10 +B004-1,2 x 4 Ridge Roof Tile Low Sloped Black,2003,254,25 +B005-1,2 x 4 Ridge Roof Tile Low Sloped Red,2003,254,25 +B100-1,Crazy Action Contraptions (Klutz),1998,529,64 +B110-1,Crazy Action Contraptions (Klutz) Vol. 2,2008,529,112 +b55dk-01,Lego Mursten - System i Leg Byggebog,1955,497,0 +b56de-01,Lego Bausteine - System im Spiel,1956,497,0 +b63de-01,LEGO Hobby und Modellbau,1963,497,0 +b66de-01,LEGO Motor Eisenbahn,1966,499,0 +BAG6-1,Gray Brick Separator with Black Frame Pieces,2006,254,56 +BAT8369-1,Battery Pack,2004,119,6 +BauMit-1,BAU MIT!,2009,301,1 +Beachwood-1,"LEGO Store Grand Opening Exclusive Set, Beachwood Place, Beachwood, OH",2011,408,3 +Berlin-1,"LEGO Store Grand Opening Exclusive Set, Berlin, Germany",2009,408,69 +bilmasks-1,Special Masks! - 2 (Dark) Copper Color Kanohi (Legoland Billund),2001,426,2 +BIO601601-1,Scorpion,2016,324,19 +BIO601602-1,Ekimu Falcon,2016,324,29 +Birmingham-1,"LEGO Store Grand Opening Exclusive Set, Riverchase Galleria, Birmingham, AL",2009,408,79 +Braintree-1,"LEGO Store Grand Opening Exclusive Set, South Shore Plaza, Braintree, MA",2008,408,58 +C001-1,LEGO Star Wars Clock,2008,501,0 +C8500-1,Robotops (8500 + 8501 + 8502 + 8503),1999,20,96 +C8504-1,Ultrarex (8504 + 8505 + 8506 + 8507),1999,20,88 +C8509-1,Swamp + Lava (8509 + 8510),2000,16,63 +C8509-2,Dust + Lava + Swamp [8509 + 8510 + 8513],2000,16,96 +C8509-3,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],2000,16,146 +C8509-4,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],2000,16,153 +C8509-5,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],2000,16,211 +C8511-1,Frost + Dust (8511 + 8513),2000,16,73 +C8511-2,Frost + Onyx + Power [8511 + 8512 + 8514],2000,16,90 +C8512-1,Onyx + Power (8512 + 8514),2000,16,47 +C8521-1,Dynamo (8521 + 8522 + 8523),2000,20,142 +Calgary-1,"LEGO Store Grand Opening Exclusive Set, Chinook Centre, Calgary, AB, Canada",2010,408,130 +casbon-1,Castle Bonus Pack,1998,186,3 +CCegg-1,Chupa Chups Egg with Surprise Lego Set,2003,301,1 +celeb2015-1,Tatooine Mini-build - Star Wars Celebration Exclusive,2015,158,178 +CELEBV-1,Fan Celebration V - CubeDude - The Bounty Hunter Edition,2010,170,497 +celebvi-1,Boba Fett’s Slave I - Mini - Star Wars Celebration VI Exclusive,2012,169,81 +Chandler-1,"LEGO Store Grand Opening Exclusive Set, Chandler Fashion Center, Chandler, AZ",2008,408,67 +Cincinnati-1,"LEGO Store Grand Opening Exclusive Set, Kenwood Towne Centre, Cincinnati, OH",2009,408,93 +CITY951701-1,Policeman and Crook Foil Pack,2017,61,16 +cnminifigs-1,Ninja Minifig Packs 3-Pack,2000,434,3 +cokejpiii-1,Japanese Coca-Cola Studios Polybag Collection sets 4056 thru 4079,2001,273,24 +cokesoccer-1,Japanese Coca-Cola Soccer collection sets 4443 thru 4472,2002,462,30 +Columbus-1,"LEGO Store Grand Opening Exclusive Set, Easton Town Center, Columbus, OH",2009,408,72 +comcon001-1,Clone Wars Pack - San Diego Comic-Con 2008 Exclusive,2008,165,12 +comcon002-1,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,2008,265,114 +comcon003-1,Batman and Joker Minifig Pack - San Diego Comic-Con 2008 Exclusive,2008,484,9 +comcon004-1,Collectible Display Set 1 - San Diego Comic-Con 2009 Exclusive,2009,165,5 +comcon005-1,Collectible Display Set 2 - San Diego Comic-Con 2009 Exclusive,2009,169,12 +comcon006-1,Collectible Display Set 4 - San Diego Comic-Con 2009 Exclusive,2009,165,30 +comcon007-1,Collectible Display Set 5 - San Diego Comic-Con 2009 Exclusive,2009,169,17 +comcon008-1,Collectible Display Set 3 - San Diego Comic-Con 2009 Exclusive,2009,169,16 +comcon009-1,Collectible Display Set 6 - San Diego Comic-Con 2009 Exclusive,2009,165,5 +comcon010-1,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,2009,161,202 +comcon011-1,LEGO Star Wars Holo-Brick Archives San Diego Comic-Con 2009 Exclusive,2009,170,3 +comcon013-1,Super Heroes Unite - Green Lantern - San Diego Comic-Con 2011 Exclusive,2011,486,4 +comcon014-1,Super Heroes Unite - Batman - San Diego Comic-Con 2011 Exclusive,2011,484,1 +comcon015-1,Star Wars Advent Calendar - San Diego Comic-Con 2011 Exclusive,2011,158,1 +comcon016-1,Super Heroes Unite - Green Lantern - New York Comic-Con 2011 Exclusive,2011,486,4 +comcon017-1,Super Heroes Unite - Superman - New York Comic-Con 2011 Exclusive,2011,489,5 +comcon018-1,Super Heroes Unite - Batman - New York Comic-Con 2011 Exclusive,2011,484,1 +comcon019-1,Darth Maul’s Sith Infiltrator - Mini - San Diego Comic-Con 2012 Exclusive,2012,158,91 +comcon020-1,Super Heroes Unite - Shazam Captain Marvel - San Diego Comic-Con 2012 Exclusive,2012,486,1 +comcon021-1,Super Heroes Unite - Phoenix Jean Gray - San Diego Comic-Con 2012 Exclusive,2012,491,5 +comcon022-1,Super Heroes Unite - Bizarro - San Diego Comic-Con 2012 Exclusive,2012,486,1 +comcon023-1,Super Heroes Unite - Venom - San Diego Comic-Con 2012 Exclusive,2012,488,3 +comcon024-1,Luke Skywalker's Landspeeder - Mini - New York Comic-Con 2012 Exclusive,2012,169,110 +comcon025-1,Shadow Leonardo - New York Comic-Con 2012 Exclusive,2012,570,0 +comcon026-1,Kraang - New York Comic-Con 2012 Exclusive,2012,570,0 +comcon027-1,Spiderwoman - San Diego Comic-Con 2013 Exclusive,2013,488,0 +comcon028-1,Spider-Man - San Diego Comic-Con 2013 Exclusive,2013,488,1 +comcon029-1,Black Superman - San Diego Comic-Con 2013 Exclusive,2013,489,3 +comcon030-1,Green Arrow - San Diego Comic-Con 2013 Exclusive,2013,486,1 +comcon031-1,Azog - San Diego Comic-Con 2013 Exclusive,2013,562,6 +comcon032-1,JEK-14 Mini Stealth Starfighter - San Diego Comic-Con 2013 Exclusive,2013,158,123 +comcon033-1,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,2013,563,130 +comcon034-1,Rocket Raccoon’s Warbird,2014,483,145 +comcon035-1,The Collector - San Diego Comic-Con 2014 Exclusive,2014,483,8 +comcon037-1,Batman Classic TV Series Batmobile,2014,484,152 +comcon038-1,Bard the Bowman,2014,562,5 +comcon039-1,The Ghost Starship,2014,182,127 +comcon042-1,Tahu Mask - New York Comic-Con 2014 Exclusive,2014,324,1 +comcon046-1,All New Captain America (Sam Wilson) - San Diego Comic-Con 2015 Exclusive,2015,487,5 +Concord-1,"LEGO Store Grand Opening Exclusive Set, Concord Mills, Concord, NC",2009,408,69 +CostaMesa-1,"LEGO Store Grand Opening Exclusive Set, South Coast Plaza, Costa Mesa, CA",2011,408,3 +D100340-1,LogIT Sensor Adapter,2010,259,0 +Dallas-1,"LEGO Store Grand Opening Exclusive Set, NorthPark Center, Dallas, TX",2009,408,92 +DC1-1,Commemorative Limited Edition Batman Announcement,2006,484,13 +DCSHDVD1-1,Justice League vs Bizarro League DVD/Blu-Ray,2015,501,5 +DCSHDVD2-1,Justice League: Attack of the Legion of Doom DVD/Blu-ray,2015,501,0 +DesPeres-1,"LEGO Store Grand Opening Exclusive Set, West County Center, Des Peres, MO",2013,408,14 +DKAtlantis-1,Lego Brickmaster Atlantis (Hardcover),2010,497,157 +DKBATMANVD-1,Batman: The Visual Dictionary,2012,501,0 +DKCastle-1,Lego Brickmaster Castle (Hardcover),2009,497,141 +DKCity-1,Lego Brickmaster City (Hardcover),2011,497,146 +DKFriends-1,Friends Brickmaster: Treasure Hunt in Heartlake City,2012,497,103 +DKIDEASBOOK-1,The LEGO Ideas Book,2011,501,0 +DKLEGOBOOK-1,The LEGO Ideas Book - Unlock Your Imagination [ISBN-13 9780756686062],2009,497,1 +DKLEGOBOOK-2,The LEGO Ideas Book - You Can Build Anything [ISBN-13 9781405350679],2011,497,1 +DKNinjago-1,Lego Brickmaster Ninjago (Hardcover),2011,497,144 +DKNINJAGO2-1,Brickmaster: Ninjago 2 - Fight The Power Of The Snakes,2012,435,155 +DKPirates-1,Lego Brickmaster Pirates (Hardcover),2009,497,153 +DKSS-1,Standing Small,2009,501,1 +DKStarWars-1,Lego Brickmaster Star Wars (Hardcover),2010,497,251 +DKSTICKER-1,DK Minifigure Ultimate Sticker Collection,2010,501,0 +DKSWYoda-1,LEGO Star Wars: The Yoda Chronicles,2013,497,0 +Duck75-1,75th Anniversary Duck on Wheels,2007,301,44 +e1a1401-1,MUJI Basic Set,2011,301,64 +e1a1402-1,MUJI Animal / Vehicle Set,2011,301,196 +e1a1403-1,MUJI Moving Set,2011,301,109 +e1a1404-1,MUJI Christmas Set,2011,301,120 +Edmonton-1,"LEGO Store Grand Opening Exclusive Set, Southgate Mall, Edmonton, AB, Canada",2013,408,3 +EL241501-1,Enki the Panther,2015,600,14 +EL241502-1,Flamy the Fox,2015,600,12 +Elizabeth-1,"LEGO Store Grand Opening Exclusive Set, Jersey Gardens, Elizabeth, NJ",2012,408,15 +Elmhurst-1,"LEGO Store Grand Opening Exclusive Set, Queens Center Mall, Elmhurst, NY",2010,408,95 +EMMETSCAR-1,TRU Emmet's car,2014,578,40 +F6316-1,Flags and Posts,2006,254,100 +fdp01-1,LEGO Familiedage Puzzle Promo 2009,2009,301,7 +FR561502-1,Dressing table,2015,494,22 +FR561601-1,Baby Parrot And Nest,2016,494,16 +FR561602-1,Valentine’s day,2016,494,24 +FR561603-1,Cookie The Superstar,2016,494,20 +FR561604-1,Cute Kitchen,2016,494,24 +FR561605-1,Ice Cream Cart,2016,494,24 +FR561606-1,Rabbit and hutch,2016,494,18 +FR561607-1,Happy Beach,2016,494,17 +FR561608-1,Cookie Cart,2016,494,29 +FR561609-1,Olivia’s laboratory,2016,494,19 +FR561610-1,Scary Shop,2016,494,27 +FR561611-1,Gifts wrapping table,2016,494,22 +FR561612-1,Kitten foil pack,2016,494,23 +FR561701-1,Bear in Ice Cave foil pack,2017,494,24 +Frankfurt-1,"LEGO Store Grand Opening Exclusive Set, MyZeil, Frankfurt, Germany",2009,408,157 +Frisco-1,"LEGO Store Grand Opening Exclusive Set, Stonebriar Centre, Frisco, TX",2009,408,60 +FRNDSMAGBEACH-1,LEGO Friends Magazine Issue 'Friends on the beach' Polybag,2014,494,20 +FRNDSMAGJNGLE-1,LEGO Friends Magazine Issue 'Jungle adventures' Polybag,2014,494,28 +fruit1-1,Apple - Hong Kong Lego Show Promotional,2007,33,8 +fruit2-1,Cherry - Hong Kong Lego Show Promotional,2007,33,11 +fruit3-1,Grapes - Hong Kong Lego Show Promotional,2007,33,7 +fruit4-1,Mango - Hong Kong Lego Show Promotional,2007,33,6 +fruit5-1,Melon - Hong Kong Lego Show Promotional,2007,33,8 +fruit6-1,Orange - Hong Kong Lego Show Promotional,2007,33,7 +fruit7-1,Pear - Hong Kong Lego Show Promotional,2007,33,10 +fruit8-1,Tree - Hong Kong Lego Show Promotional,2007,33,0 +G577-1,Vikings Chess Set,2006,502,206 +GardenCity-1,"LEGO Store Grand Opening Exclusive Set, Roosevelt Field Mall, Garden City, NY",2010,408,88 +Glasgow-1,"LEGO Store Grand Opening Exclusive Set, Glasgow UK",2013,408,15 +Glendale-1,"LEGO Store Grand Opening Exclusive Set, Arrowhead Towne Center, Glendale AZ",2010,408,140 +Hanover-1,"LEGO Store Grand Opening Exclusive Set, Arundel Mills, Hanover, MD",2009,408,69 +Honolulu-1,"LEGO Store Grand Opening Exclusive Set, Ala Moana Center, Honolulu, HI",2009,408,85 +Houston-1,"LEGO Store Grand Opening Exclusive Set, Baybrook Mall, Houston, TX",2008,408,65 +Houston-2,"LEGO Store Grand Opening Exclusive Set, The Galleria, Houston, TX",2010,408,143 +Houston-3,"LEGO Store Grand Opening Exclusive Set, The Woodlands Mall, Houston, TX",2012,408,15 +HPG01-1,Harry Potter Gallery 1 - Potter L. Malfoy Lockhart Madame Hooch,2002,246,0 +HPG02-1,Harry Potter Gallery 2 - Hagrid V. Dursley Crabbe Ron Weasley,2002,246,0 +HPG03-1,Harry Potter Gallery 3 - Dumbledore Ginny Weasley D. Malfoy Snape,2002,246,2 +HPG04-1,Harry Potter Gallery 4 - Tom Riddle McGonagall Dobby Goyle Hermione,2002,246,0 +iFountain-1,iFountain (Lego / Coca-Cola Employee Exclusive),2001,301,331 +Indianapolis-1,"LEGO Store Grand Opening Exclusive Set, Castleton Square, Indianapolis, IN",2011,408,10 +ISBN1338112120-1,The LEGO Batman Movie: Chaos in Gotham City,2017,497,6 +JUNGLE-ADV-1,Jungle Adventures,2015,494,28 +K10001-1,Metroliner Kit,2001,236,2 +K10020-1,Santa Fe Starter Kit,2002,236,7 +K10022-1,Santa Fe Train Kit,2002,236,7 +K10039-1,LEGO Legend Castle Collection,2003,186,3 +K10041-1,LEGO Town Kit,2003,99,4 +K10068-1,Holiday Kit,2002,227,3 +K10079-1,Holiday Decoration II,2003,227,5 +K10124-1,Ultimate Plane Kit,2003,276,3 +K10131-1,Battle of Yavin Collection,2004,169,3 +K10158-1,Deluxe High Speed Train Collection,2005,239,4 +K10176-1,Classic Castle,2006,197,1 +K10194-1,Emerald Night Collection,2009,240,8 +K1062-1,Lego Road Safety Kit,1981,533,140 +k1062b,Set K1062 Activity Booklet,1981,533,1 +K1376-1,Spider-Man Adventure Kit,2003,488,3 +K1383-1,Scary Monster Madness Kit,2002,273,4 +K2159-1,Holiday Train Starter Collection,2006,236,31 +K3409-1,Ultimate Soccer Stadium Kit,2000,462,6 +K3433-1,Ultimate NBA Arena Kit,2004,459,3 +k34431-1,Lego Mosaic Cat,2003,277,2126 +k34432-1,Lego Mosaic Dino,2003,277,2846 +k34433-1,Lego Mosaic Johnny Thunder,2003,277,2126 +k34434-1,Lego Mosaic Tiger,2003,277,2216 +K3451-1,Famous Planes Kit,2002,276,2 +K3538-1,Snowboard Cross Race Kit,2003,460,3 +K3731-1,3D Pumpkin Pack Kit,2000,230,2 +K3801-1,RIS 2.0 Builders Kit,2003,260,3 +K4103-1,Creator Bucket bundled with 4782 (TRU Exclusive),2005,37,2 +K4346-1,X-Pod Kit,2004,478,4 +K4415-1,X-Pod Creator Collection,2006,479,4 +K4479-1,TIE Bomber & TIE Fighter Kit,2003,169,2 +K4480-1,Jabba's Palace Kit,2003,169,3 +K4482-1,Episode II Final Scene Kit,2003,167,3 +K4487-1,Star Wars Miniatures Kit I,2003,159,4 +K4488-1,Star Wars Miniatures Kit II,2003,159,4 +K4492-1,Star Wars Miniatures Kit III,2004,159,5 +K4511-1,Passenger Train Kit,2003,239,2 +K4512-1,Cargo Train Kit,2003,239,0 +K4515-1,Ultimate Track Kit,1992,244,15 +K4516-1,Oval Track Kit,1992,244,3 +K4519-1,Cross Track Kit,1992,244,6 +K4520-1,Special Track Kit,1992,244,4 +K4531-1,Deluxe Track Kit,1992,244,7 +K4609-1,Jack Stone Fire Rescue Kit,2001,283,3 +K4611-1,Jack Stone Police Rescue Kit,2001,281,4 +K4612-1,Jack Stone Kit,2002,282,3 +K4701-1,Chamber of Secrets Kit,2002,246,3 +K4706-1,Sorcerers Stone Kit,2002,251,7 +K4729-1,Deluxe Hogwarts Kit,2003,246,3 +K4751-1,Marauder's Map Kit (contains 4750 4751 4695),2004,250,3 +K4755-1,Knight Bus Collection,2004,250,2 +K4852-1,Spider-Man Movie Kit,2003,488,5 +K4915-1,Mini Pods Collection,2006,23,4 +K5300-1,Train Accessories Kit,2003,244,3 +K5613-1,City Fire Station Collection,2008,58,0 +K5850-1,Belville Kit,2003,319,4 +K5858-1,The Golden Palace Collection,2003,320,3 +K5862-1,Flower Fairy Party Collection,2003,319,3 +K5974-1,Space Police Collection,2009,141,8 +K6243-1,Big Pirates Collection,2009,153,7 +K6290-1,Classic Pirates Kit,2001,148,3 +K6762-1,Western Kit,2002,475,3 +K7000-1,Dinosaurs Kit,2001,386,4 +K7029-1,Complete Castle Collection,2007,193,7 +K7035-1,World City Police Kit,2003,111,6 +K7094-1,Castle Collection US version,2007,193,6 +K7153-1,Episode II Ultimate Action Kit,2002,167,4 +K7204-1,Jedi Adventure Kit,2002,170,4 +K720x-1,Story Teller Pack,2002,170,4 +K7283-1,V-wing Space Battle Collection,2005,168,3 +K7317-1,Life on Mars Kit,2001,135,4 +K7417-1,Orient Expedition in Mount Everest Kit,2003,300,4 +K7418-1,Orient Expedition in India Kit,2003,300,4 +K7419-1,Orient Expedition in China Kit,2003,300,4 +K7422-1,Orient Expedition World Travel Kit,2003,300,3 +K7467-1,Space Exploration Kit,2003,387,3 +K7471-1,Discovery Space Kit,2003,387,5 +K7623-1,Indiana Jones Classic Adventures Collection,2008,264,4 +K7690-1,Mars Mission Collection,2008,137,7 +K7699-1,Complete Mars Mission Collection,2007,137,8 +K7734-1,Cargo Transport Collection,2008,54,4 +K7741-1,City Police Collection,2009,61,3 +K7744-1,Ultimate City Police Collection,2008,61,5 +K7775-1,Complete Aqua Raiders Collection,2007,310,6 +K7776-1,Ultimate Aqua Raiders Collection,2007,310,7 +K7890-1,Rescue Collection,2007,60,0 +K7894-1,City Airport Collection,2007,53,4 +K7895-1,Oval Track for RC Trains,2006,245,3 +K7896-1,Deluxe Track for RC Trains,2006,245,6 +K7906-1,Ultimate Firefighter Collection,2007,58,0 +K7945-1,Firefighter Collection,2007,58,0 +K8008-1,Darth Vader / Stormtrooper Kit,2002,18,2 +K8102-1,Humans vs. Robots Battle Machine Collection,2007,389,6 +K8107-1,Golden City Collection,2009,389,3 +K8111-1,Battle Machine Collection,2008,389,5 +K8130-1,Tiny Turbo III Collection,2007,120,4 +K8148-1,Mini Racers Collection,2008,120,4 +K8355-1,Twin Powered Street Racer Kit,2003,113,2 +K8358-1,Night Sprinter Kit,2003,113,3 +K8362-1,Ferrari Collection,2004,114,2 +K8371-1,Twin Powered Street Racer Kit 2,2003,113,2 +K8380-1,All-Terrain Racers Collection,2003,116,2 +K8381-1,High-Speed Racers Collection,2003,116,2 +K8383-1,Off-Road Racers Collection,2003,116,2 +K8533-1,Find the Power BIONICLE Kit,2001,324,9 +K8563-1,Bohrok Swarm Kit,2002,328,8 +K8564-1,Ultimate Bohrok Swarm Kit,2002,324,12 +K8566-1,Toa Nuva Hero Kit,2003,354,2 +K8572-1,Toa Nuva Kit,2003,354,6 +K8573-1,Bohrok-Kal Kit,2003,330,2 +K8578-1,Ultimate Bohrok-Kal Kit,2003,330,6 +K8586-1,Matoran Villagers Kit,2003,335,6 +K8587-1,Rahkshi Set (Panrahk and Kurahk),2003,344,2 +K8588-1,Ultimate Rahkshi Kit,2003,344,6 +K8590-1,Rahkshi Kaita Vo Kit,2003,344,3 +K8591-1,Rahkshi Kit (Panrahk and Vorahk),2003,344,2 +K8592-1,Rahkshi Kaita Za Kit,2003,344,3 +K8596-1,Takutanuva Kit,2003,347,2 +K8603-1,Toa Metru Legends Kit,2004,353,2 +K8605-1,Toa Metru Kit I,2004,353,3 +K8606-1,Toa Metru Kit II,2004,353,3 +k8612-1,Metru Nui Matoran Kit,2004,336,6 +K8614-1,Vahki Kit,2004,357,6 +K8615-1,Vahki Enforcers Kit (8614 & 8615),2004,357,2 +K8645-1,Slammer Propeller Hotrod,2005,116,2 +k8647-1,Dual-Engine Truck,2005,116,2 +K8667-1,Pullback Racer Collection,2006,116,2 +K8672-1,Ferrari Racing Collection,2006,114,2 +K8685-1,Phantoka Collection,2008,339,6 +K8688-1,Mistika Collection,2008,338,6 +K8725-1,Matoran of Voya Nui Collection (8721 8722 8723 8724 8725 8726),2006,337,6 +K8727-1,Toa Inika Collection (8727 8728 8729 8730 8731 8732),2006,351,6 +K8741-1,Toa Hordika Deluxe Collection (8736 8737 8738 8739 8740 8741),2005,350,6 +K8747-1,Visorak Collection (8742 8743 8744 8745 8746 8747),2005,358,6 +K8755-1,Titans Collection (8755 8756 8761),2005,347,3 +K8761-1,The Shadowed One (LEGO Club Members Exclusive),2005,347,235 +K8764-1,Warriors of Voya Nui Collection,2006,347,3 +K8800-1,Vladek's Attack Kit,2004,198,2 +K8882-1,Power Functions Train Accessories Pack,2009,245,6 +K8900-1,Piraka Collection (8900 8901 8902 8903 8904 8905),2006,340,6 +K8915-1,Toa Mahri Collection,2007,352,6 +K8916-1,Barraki Collection,2007,326,6 +K8924-1,Titans of Mahri Nui Collection,2007,359,3 +K8927-1,Mahri Nui Deepsea Collection,2007,341,3 +K8929-1,Matoran of Mahri Nui Collection,2007,334,4 +K8942-1,Ultimate BIONICLE Collection,2008,359,4 +K8944-1,Matoran of Light Collection,2008,333,6 +K8956-1,Power Miners Collection,2009,439,6 +K8978-1,Bionicle Glatorian Collection,2009,331,6 +K9833-1,Rechargeable Battery Set,2007,259,2 +K9833-2,Rechargeable Battery Set (AC Adapter 230V - 10V Transformer),2006,259,2 +K9916-1,Robotics Invention System Kit,2003,260,8 +kabbasic-1,Kabaya Basic 4-Pack,2000,467,4 +kabbion-1,Kabaya Bionicle 4-Pack (boxed 1417 1418 1419 1420),2001,356,4 +kabbion2-1,Va 4-pack Kabaya (contains 1431 1432 1433 1434),2002,329,4 +kabcity-1,City 4-Pack,2000,50,4 +kabcreat-1,Creator 4-Pack,2001,23,4 +kabdino-1,Dino Island 4-Pack,2000,298,4 +kabextreme-1,Kabaya Extreme Team 4-Pack,1999,87,4 +Kabinsect-1,Insectoids 4-Pack,1999,134,4 +kabkk-1,Knight's Kingdom 4-Pack,2000,197,4 +kabmars-1,Life on Mars 4-Pack,2001,135,4 +kabninja-1,Kabaya Ninja 4-Pack,1999,434,4 +kaborient-1,Orient Expedition 3-Pack (canned versions of 7422 7423 7424),2003,300,3 +kabrace-1,Race 4-Pack,2001,91,4 +kabrobo-1,Kabaya RoboRider 4-Pack,2000,16,4 +kabrock-1,Rock Raiders 4-Pack,2000,442,4 +kabsoccer-1,Kabaya Soccer 3-Pack,2002,462,3 +kabspace-1,Kabaya Space Port 4-Pack,1999,93,4 +kabstud-1,Studios 4-Pack,2001,273,4 +kabtec-1,Kabaya Technic Vehicle 4-Pack,1999,5,4 +KB565-1,RIS 2.0 Basics Kit,2004,260,4 +KCCHP-1,Coca Cola Harry Potter Gift Set,2002,246,7 +KFruit-1,Fruit Set - Hong Kong Lego Show Promotional,2007,33,8 +KingofPrussia-1,"LEGO Store Grand Opening Exclusive Set, King of Prussia Mall, PA",2008,408,66 +kk2vp1-1,Knights' Kingdom Value Pack 1 (with bonus water bottle),2004,198,3 +kk2vp2-1,Knights' Kingdom Value Pack 2 (with bonus water bottle),2004,198,3 +kk2vp3-1,Knights' Kingdom Value Pack 3 (with bonus water bottle),2004,198,3 +kkchrome-1,Knight's Kingdom Chrome Series (complete set),2000,197,4 +KLLCA21-1,Santa with Reindeer and Sleigh (Legoland California),2005,427,3 +KSB28-1,LEGO BrickMaster Sample Magazine,2008,501,0 +KT103-1,Large Train Engine Blue,2001,238,0 +KT104-1,Large Train Engine Green,2001,238,0 +KT105-1,Large Train Engine Black,2001,238,0 +KT106-1,Large Train Engine Brown,2001,238,0 +KT107-1,Large Train Engine Gray,2001,238,0 +KT203-1,Large Train Engine with Tender Blue,2001,238,0 +KT204-1,Large Train Engine with Tender Green,2001,238,0 +KT205-1,Large Train Engine with Tender Black,2001,238,0 +KT206-1,Large Train Engine with Tender Brown,2001,238,0 +KT207-1,Large Train Engine with Tender Gray,2001,238,0 +KT303-1,Small Train Engine Blue,2001,238,0 +KT304-1,Small Train Engine Green,2001,238,2 +KT305-1,Small Train Engine Black,2001,238,2 +KT306-1,Small Train Engine Brown,2001,238,2 +KT307-1,Small Train Engine Gray,2001,238,2 +KT403-1,Small Train Engine with Tender Blue,2001,238,0 +KT404-1,Small Train Engine with Tender Green,2001,238,0 +KT405-1,Small Train Engine with Tender Black,2001,238,0 +KT406-1,Small Train Engine with Tender Brown,2001,238,0 +KT407-1,Small Train Engine with Tender Gray,2001,238,0 +LADYBIRD2-1,The Quest For The Lost City Activity Book,2010,501,0 +LBCITYSPACE-1,LEGO City: Space Mission - Activity Book,2011,501,0 +LBFIRERESCUE-1,LEGO City: Fire Rescue! - Activity Book,2012,501,0 +ldd3-1,LEGO Digital Designer Promo,2009,301,3 +Leeds-1,"LEGO Store Grand Opening Exclusive Set, Leeds, UK",2013,408,16 +legobricks-1,Lego Bricks Box,1958,366,2 +lfv1-1,Le Fleuriste Collector Vase - Rapid Flore Pop Color,2010,301,352 +lfv2-1,Le Fleuriste Collector Vase - Happy,2010,301,297 +lfv3-1,Le Fleuriste Collector Vase - Monceau Fleurs Blue Chic,2010,301,350 +Lightbulb-1,Celebrating Moments That CLICK Light Bulb,2009,301,57 +Lille-1,"LEGO Store Grand Opening Exclusive Set, Euralille, Lille, France",2013,408,16 +LIT2009-1,LEGO Inside Tour (LIT) Exclusive 2009 Edition - Ole Kirk's House,2009,301,909 +Liverpool-1,LEGO Store Grand Opening Exclusive Set Liverpool UK,2011,408,12 +LLBUS-1,Bus (Legoland Deutschland),2002,425,45 +llca10-1,Dragon Sculpture (Legoland California),2000,425,70 +llca12-1,3D Witch (Legoland California),2004,427,103 +LLCA13-1,Trumpet (Legoland California),2004,425,178 +llca21-1,Sitting Santa (Legoland California),2005,427,42 +llca22-1,Santa's Sleigh (Legoland California),2005,427,76 +llca23-1,Reindeer (Legoland California),2005,427,72 +LLCA24-1,"Las Vegas Skyline, Pyramid (LLCA Ambassador Pass Exclusive)",2005,425,103 +LLCA25-1,"Las Vegas Skyline, Eiffel Tower (LLCA Ambassador Pass Exclusive)",2005,425,151 +LLCA26-1,"Golf Bag, Balls & Clubs (Legoland California)",2006,425,112 +llca27-1,Legoland Pirate with Parrot (Legoland California),2006,430,70 +LLCA29-1,Pirate Treasure Chest Bank (LLCA Ambassador Pass Exclusive),2006,430,215 +LLCA30-1,Pirate Ship Diorama (LLCA Ambassador Pass Exclusive),2006,430,127 +llca3-1,Pelican Sculpture (Legoland California),2000,425,83 +LLCA31-1,Tree Frog Sculpture (LLCA Ambassador Pass Exclusive),2007,425,90 +llca34-1,Sarcophagus (LLCA Ambassador Pass Exclusive),2008,425,181 +llca35-1,Obelisk (LLCA Ambassador Pass Exclusive),2008,425,100 +llca4-1,Toy Soldier (Legoland California),2003,425,171 +LLCA51-1,Legoland California 10th Birthday Cupcake Box (LLCA Ambassador Pass Exclusive),2009,425,92 +LLCA52-1,Sand Castle - Ambassador Class 2010 (LLCA Ambassador Pass Exclusive),2010,425,229 +llca7-1,"Holiday Gift Box (Red Box, Yellow Trim With Removable Top) (Legoland California)",2001,425,108 +llca8-1,LEGO Heart (Legoland California),2004,425,58 +LLCABR1-1,Hau Mask - Green Brick (Legoland California),2001,426,168 +LLCABR2-1,Hau Mask - Blue Brick (Legoland California),2001,426,168 +LLCABR3-1,Hau Mask - Red Brick (Legoland California),2001,426,168 +LLCAPUM1-1,Build N Buy Pumpkin (Happy) (Legoland California),2002,427,31 +LLCAPUM2-1,Build N Buy Pumpkin (Sad) (Legoland California),2002,427,29 +LLKING-1,King (Legoland Deutschland),2003,425,59 +LLOlli-1,"Dragon Sculpture, Olli the Dragon holding sign (Legoland Deutschland)",2002,425,48 +LLPlane-1,Airplane [Legoland Deutschland],2002,425,25 +LLSWAN-1,Swan (Legoland Deutschland),2003,425,72 +lmg001-1,LEGO Japan Small Duck,2003,301,8 +lmg002-1,LEGO Japan Cat,2004,301,10 +lmg003-1,LEGO Japan Ostrich,2004,301,10 +lmg003-2,LEGO Japan Ostrich Yellow Label Version,2006,301,10 +lmg004-1,LEGO Japan Spinning Top,2004,301,12 +lmg005-1,LEGO Japan Deer,2003,301,13 +lmg006-1,LEGO Japan Dog,2005,301,13 +lmg006-2,LEGO Japan Dog Blue Label Version,2006,301,13 +lmg007-1,LEGO Japan Snake,2005,301,9 +lmg008-1,LEGO Japan Whale,2005,301,10 +lmg009-1,LEGO Japan Snail,2004,301,8 +lmg010-1,LEGO Japan Santa,2005,301,13 +LOC113-1,Ewar,2013,571,15 +LOC114-1,Grumlo Promo Minifigure,2014,571,13 +LOC213-1,Razcal Promo Minifigure,2013,571,15 +LOC2-14,Outland Jump,2014,571,25 +LOC214-1,Speedorz Ramp,2014,571,25 +LOC391403-1,"Tripod Cannon, Chi and Axe",2014,571,20 +LOC391404-1,Worriz,2014,571,18 +LOC391405-1,Crocodile Hideout,2014,571,29 +LOC391406-1,Crug,2014,571,8 +LOC391408-1,Vornon,2014,571,11 +LOC391409-1,Ice Prison,2014,571,17 +LOC391410-1,Sykor,2014,571,11 +LOC391411-1,Ice Cannon,2014,571,27 +LOC391412-1,Worriz,2014,571,9 +LOC391501-1,Gorzan Polybag,2015,571,8 +LOC391502-1,Ice Crossbow,2015,571,27 +LOC391503-1,Lundor,2015,571,10 +LOC391504-1,Fire vs Ice Weaponry,2015,571,38 +LOC391505-1,Iceklaw,2015,571,8 +LOC391506-1,Fire Catapult,2015,571,25 +LOC391507-1,Stealthor foil pack,2015,571,8 +LOC391508-1,Bulkar,2015,571,9 +LOC471408-1,Lennox,2014,571,10 +LoneTree-1,"LEGO Store Grand Opening Exclusive Set, Vistas Court, Lone Tree, CO",2011,408,15 +lwp01-1,LEGO World Denmark Puzzle Promo,2009,301,7 +lwp02-1,LEGO World Zwolle Puzzle Promo 2009,2009,301,7 +lwp03-1,LEGO World Denmark Puzzle Promo 2010,2010,301,7 +lwp04-1,LEGO World Denmark Puzzle Promo 2011,2011,301,7 +lwp05-1,LEGO World Denmark Puzzle Promo 2012,2012,301,7 +lwp06-1,LEGO World Denmark Puzzle Promo 2013,2013,301,7 +Lynnwood-1,"LEGO Store Grand Opening Exclusive Set, Alderwood Mall, Lynnwood, WA",2012,408,8 +Maine-1,Maine Space Grant Consortium Promotional Astronaut Polybag,1999,93,5 +makepromo-1,Make and Create Basic Set (Toyfair Nuernberg Promotion),2003,37,0 +Manchester-1,"LEGO Store Grand Opening Exclusive Set, Manchester, UK",2012,408,12 +MAY2013-1,Holocron Droid,2013,158,31 +MFCN-1,Chinese Minifig Collection Volume 1,2009,535,0 +MFCN-2,Chinese Minifig Collection Volume 2,2009,535,27 +Miami-1,"LEGO Store Grand Opening Exclusive Set, Aventura Mall, Miami, FL",2010,408,142 +MiniNXT-1,Mini NXT Brick,2008,259,3 +MiniRCX-1,Mini RCX Brick,2008,260,4 +Minneapolis-1,"LEGO Store Grand Opening Exclusive Set, Mall of America, Bloomington, MN",1992,408,6 +Minneapolis-2,"LEGO Store Grand Re-opening Exclusive Set, Mall of America, Bloomington, MN",2010,408,125 +MissionViejo-1,LEGO Store Grand Opening Exclusive Set Mission Viejo Mall Mission Viejo CA,2011,408,13 +mln09-1,My Lego Network Promo LEGO World 2009,2009,301,3 +MMMB003-1,Monthly Mini Model Build February 2009 - Heart,2009,409,15 +MMMB009-1,Monthly Mini Model Build June 2009 - Sailing Boat,2009,409,27 +MMMB010-1,Monthly Mini Model Build July 2009 - US Flag,2009,409,15 +MMMB023-1,Monthly Mini Model Build April 2010 - Chick,2010,409,30 +MMMB026-1,Monthly Mini Model Build July 2010 - Watermelon,2010,409,43 +MMMB0908,Monthly Mini Model Build August 2009 - Lobster,2009,409,49 +MOMENTS-1,This moments,2015,494,18 +MS1032-1,Infrared Receiver Sensor for Mindstorms NXT,2010,259,0 +MS1034-1,Compass Sensor for Mindstorms NXT,2006,259,1 +MS1038-1,Color Sensor for Mindstorms NXT,2006,259,1 +MS1040-1,Accelerometer Sensor for Mindstorms NXT,2007,259,0 +MS1042-1,Infrared Seeker for Mindstorms NXT (Version 1),2007,259,0 +MS1044-1,Gyroscopic Sensor for Mindstorms NXT,2007,259,0 +MS1046-1,Infrared Link Sensor for Mindstorms NXT,2007,259,0 +MS1048-1,Mindstorms RF ID Sensor,2008,259,0 +MS1049-1,Mindstorms Keyfob Transponder,2008,259,0 +MS1060-1,Mindstorms NXT Touch Sensor Multiplexer,2009,259,0 +Munich-1,"LEGO Store Grand Opening Exclusive Set, Pasing Arcaden, München, Germany",2013,408,17 +MYERNEXO-1,Micro Battle Blaster,2016,605,18 +MYERNEXO-2,Micro Mecha Horse,2016,605,24 +NAA1030-1,NXT Angle Sensor,2013,259,0 +Nashville-1,"LEGO Store Grand Opening Exclusive Set, Opry Mills, Nashville, TN",2012,408,15 +NEO1048-1,EOPD Sensor for Mindstorms NXT (Electro Optical Sensor),2009,259,0 +Newark-1,"LEGO Store Grand Opening Exclusive Set, Christiana Mall, Newark, DE",2010,408,133 +NEX271606-1,Knight Racer,2016,605,21 +NEX271607-1,Firecracker Catapult,2016,605,17 +NEX271608-1,Kid Clay,2016,605,18 +NEX271609-1,Bat-Gun,2016,605,29 +NEX271610-1,Mighty Mech Bot,2016,605,34 +NEX271611-1,Pilot Bot,2016,605,13 +NEX271712-1,Clay and Training Stand,2017,605,18 +NEX271714-1,Robin,2017,605,19 +NIN561609-1,Kai foil pack #2,2016,435,13 +NIN891501-1,Ninjago Kai,2015,435,9 +NIN891503-1,Cole foil pack,2015,435,11 +NIN891505-1,Jay foil pack,2015,435,8 +NIN891506-1,Ming foil pack,2015,435,8 +NIN891507-1,Zane foil pack,2015,435,9 +NIN891508-1,Anacondrai Hideout,2015,435,24 +NIN891610-1,Clouse foil pack,2016,435,8 +NIN891612-1,Sqiffy,2016,435,7 +NIN891614-1,Cyren,2016,435,9 +NIN891615-1,Jay,2016,435,14 +NIN891616-1,Bucko,2016,435,9 +NIN891617-1,Titanium Zane,2016,435,15 +NIN891618-1,Ronin,2016,435,15 +NIN891619-1,Pirate fighter,2016,435,21 +NIN891620-1,Nya foil pack,2016,435,10 +NIN901503-1,Krait foil pack,2015,435,7 +NK271601-1,Lance,2016,605,14 +NK271602-1,Hover Horse,2016,605,34 +NK271603-1,Robin And Horse,2016,605,23 +NK271604-1,Goblin Spiders,2016,605,28 +NMS1035-1,NXT Magnetic Sensor,2010,259,1 +nqstudios-1,Nesquik Studios Promo 3-Pack,2001,273,3 +Nuremberg-1,"LEGO Store Grand Opening Exclusive Set, Nuremberg (Nürnberg), Germany",2010,408,126 +OklahomaCity-1,"LEGO Store Grand Opening Exclusive Set, Penn Square Mall, Oklahoma City, OK",2009,408,58 +Orlando-1,"LEGO Store Grand Opening Exclusive Set, Imagination Center, Orlando, FL",1997,408,3 +OrlandPark-1,"LEGO Store Grand Opening Exclusive Set, Orland Park, IL",2009,408,58 +OverlandPark-1,"LEGO Store Grand Opening Exclusive Set, Oak Park Mall, Overland Park, KS",2012,408,15 +Paramus-1,"LEGO Store Grand Opening Exclusive Set, Paramus, NJ",2009,408,73 +Peabody-1,"LEGO Store Grand Opening Exclusive Set, Northshore Mall, Peabody, MA",2012,408,6 +pk1062,Lego Road Safety Kit Poster,1981,501,0 +Pleasanton-1,LEGO Store Grand Opening Exclusive Set Stoneridge Mall Pleasanton CA,2011,408,15 +PS3038-1,LEGO Star Wars: The Complete Saga,2007,501,0 +Raleigh-1,"LEGO Store Grand Opening Exclusive Set, Crabtree Valley Mall, Raleigh, NC",2009,408,121 +Ramboll-1,Ramboll Oil Platform,2008,301,215 +rrminifigs-1,Rock Raider Minifig Packs 3-Pack,2000,442,3 +Saarbrucken-1,"LEGO Store Grand Opening Exclusive Set, Saarbrücken, Germany",2012,408,16 +Sacramento-1,"LEGO Store Grand Opening Exclusive Set, Arden Fair Mall, Sacramento, CA",2008,408,79 +SAMURAI-DROID-1,Samurai droid,2015,435,32 +SanDiego-1,LEGO Store Grand Opening Exclusive Set Fashion Valley San Diego CA,2011,408,15 +SDCC2015-1,Throne of Ultron,2015,487,196 +SDCC2015-2,Dagobah Mini-Build,2015,158,177 +SDCC2015-3,Action Comics #1 Superman,2015,489,145 +Sheffield-1,"LEGO Store Grand Opening Exclusive Set, Sheffield, UK",2012,408,14 +shell98small-1,Shell Town 1998 Promotional (complete set),1998,301,10 +shtown99small-1,Shell Town 1999 Promotional (complete set),1999,50,6 +SoOuest-1,"LEGO Store Grand Opening Exclusive Set, So Ouest, Levallois-Perret, France",2012,408,15 +Sphinx-1,Sphinx,2008,301,29 +Stratford-1,"LEGO Store Grand Opening Exclusive Set, Westfield Stratford, UK",2012,408,15 +Sunrise-1,"LEGO Store Grand Opening Exclusive Set, Sawgrass Mills, Sunrise, FL",2011,408,15 +sw117promo-1,Darth Vader Polybag - 56. International Toy Fair Nuernberg (N├╝rnberg),2005,168,2 +sw218promo-1,Darth Vader 10 Year Anniversary Promotional Fig polybag,2009,169,2 +SW911506-1,Snowspeeder,2015,163,19 +SW911508-1,Mini Slave 1,2015,159,20 +SW911509-1,Imperial Shooter,2015,182,20 +SW911510-1,Star Destroyer and TIE Fighter foil pack,2015,159,21 +SW911511-1,Jedi Weapon Stand,2015,158,16 +SW911607-1,Millennium Falcon ,2016,158,42 +SW911608-1,Landspeeder,2016,163,37 +SW911610-1,Probe Droid,2016,158,20 +SW911612-1,Acklay,2016,167,49 +SW911616-1,MTT Foil Pack,2016,158,44 +SW911617-1,Palpatine's Shuttle,2016,158,37 +SW911719-1,Kanan Jarrus foilpack,2017,182,6 +SW911720-1,The Ghost,2017,182,50 +SW911722-1,TIE Advanced foil pack,2017,158,26 +SW911723-1,Vulture Droid foil pack,2017,162,35 +SW911724-1,A-Wing,2017,182,47 +SWCOMIC1-1,X-Wing,2015,159,23 +SWDVDBD-1,The Padawan Menace,2011,501,0 +swminifigs-1,Star Wars Minifig Packs 4-Pack,2000,170,4 +SWMP-1,Star Wars / M&M Mosaic - Promo Set,2005,169,5461 +tech007promo-1,Technic Figure Cyber Person Promotional Polybag - [Toy Fair Nuernberg Promotion 1998],1998,3,1 +tf05-1,Lego Toy Fair 2005 Star Wars V.I.P. Gala Set,2005,168,38 +tktour-1,Tour De France (complete set),2000,50,4 +TLMPS-1,The LEGO Movie Promotional Set,2014,578,103 +tominifigs-1,Town Minifig Packs 2-Pack,2000,50,2 +Toronto-1,"LEGO Store Grand Opening Exclusive Set, Sherway Square, Toronto, ON, Canada",2011,408,3 +Toronto-2,"LEGO Store Grand Opening Exclusive Set, Fairview Mall, Toronto, ON, Canada",2011,408,15 +Toronto-3,"LEGO Store Grand Opening Exclusive Set, Yorkdale Mall, Toronto, ON, Canada",2013,408,15 +Troy-1,"LEGO Store Grand Opening Exclusive Set, Somerset Collection, Troy, MI",2010,408,103 +TRU01-1,Harry Potter Quidditch Tower (TRU Event Exclusive),2002,246,37 +TRUBATSIGNAL-1,Batman Bat-Signal,2014,484,19 +trucapam-1,Captain America Mosaic,2016,598,71 +TRUCOGSWORTH-1,Toys 'r Us - Cogsworth,2016,301,47 +TRUFALCON-1,Millennium Falcon,2016,158,44 +TRUFRIENDS-1,Wishing Well,2017,494,33 +TRUGHOST-1,Rebel Micro Ghost,2014,170,42 +TRUJOKERMECH-1,The Joker Mini Mech Bot,2013,484,42 +TRUKAYAK-1,Kayak,2015,52,18 +TRULUMIERE-1,Toys 'r Us Lumiere,2016,301,23 +TRUNEXO-1,Micro Rumble Blade,2016,605,21 +TRUNEXO-2,Micro Chaos Chariot,2016,605,30 +TRUNINJAGO-1,Micro Shinto Shrine,2015,435,18 +TRUNINJAGO-2,Micro Electromech Robot,2015,435,28 +TRUNINJAGO-3,Micro Kai's Fighter Jet,2015,435,18 +TRUNINJAGO-4,Micro Morro Dragon,2015,435,29 +TRUTIE-1,TIE Fighter,2014,170,12 +TRUXWING-1,X-Wing,2014,170,23 +TRUXWING-2,Poe's X-Wing Fighter,2015,158,27 +TRUXWINGTIE-1,"TRU X-Wing Fighter & TIE Fighter (May 3, 2014)",2014,170,2 +tsuper-1,Technic Super Set,1991,12,3 +Vancouver-1,"LEGO Store Grand Opening Exclusive Set, Oakridge Centre, Vancouver, BC, Canada",2012,408,-1 +Victor-1,"LEGO Store Grand Opening Exclusive Set, Eastview Mall, Victor, NY",2012,408,15 +Vienna-1,"LEGO Store Grand Opening Exclusive Set, SCS, Wien, Austria",2013,408,17 +VP-1,Ice Planet Co-Pack of 6814 6879 and 6898,1995,133,3 +VP-10,Star Wars Value Pack with Free LEGO Backpack (K-Mart Australia Exclusive),2003,170,4 +VP-11,Star Wars Co-Pack of 7101 7111 and 7131,2000,166,3 +VP-12,Star Wars Co-Pack of 7121 and 7151,2000,166,2 +VP-13,Launch Command Value Pack - (6336 6516 6614),1995,88,3 +VP-14,Classic Town Value Pack Duopack (6581 6596),1998,67,2 +VP-15,Adventurers Super Value Pack,2000,298,3 +VP-17,Legoland Town Special Offer,1985,67,0 +VP-2,Star Wars Co-Pack of 7110 and 7144,2001,169,2 +VP-3,Star Wars Co-Pack of 7131 and 7151,2000,166,2 +VP-4,Star Wars Co-Pack of 7101 7111 and 7171,2000,166,3 +VP-5,UFO Value Pack,1997,144,3 +VP-6,Building Bonanza Value Pack 4886 with 7280 & 7281,2006,52,3 +VP-7,Fire Value Pack (6554 6407 6564),1997,98,3 +VP-8,Star Wars Co-Pack of 7130 and 7150,2000,169,2 +VPorient-1,Orient Expedition Value Pack with LEGO Backpack (K-Mart Australia Exclusive),2003,300,4 +vwkit-1,Volkswagen Kit,1959,366,22 +W098-1,"Watch Set, Classic Blue",2006,501,0 +W991526-1,Homeschool Introduction to Simple and Motorized Mechanisms Pack,2009,529,0 +Watford-1,"LEGO Store Grand Opening Exclusive Set, Watford, UK",2013,408,15 +Wauwatosa-1,"LEGO Store Grand Opening Exclusive Set, Mayfair, Wauwatosa, WI",2012,408,15 +WHITEHOUSE-1,Micro White House,2015,598,59 +Wiesbaden-1,"LEGO Store Grand Opening Exclusive Set, Wiesbaden, Germany",2010,408,146 +WishingWell-1,Wishing Well [Toys R Us Promo],2013,494,28 +wwgp1-1,Wild West Limited Edition Gift Pack,1996,476,3 diff --git a/themes.csv b/themes.csv new file mode 100644 index 0000000..2913f98 --- /dev/null +++ b/themes.csv @@ -0,0 +1,615 @@ +id,name,parent_id +1,Technic, +2,Arctic Technic,1 +3,Competition,1 +4,Expert Builder,1 +5,Model,1 +6,Airport,5 +7,Construction,5 +8,Farm,5 +9,Fire,5 +10,Harbor,5 +11,Off-Road,5 +12,Race,5 +13,Riding Cycle,5 +14,Robot,5 +15,Traffic,5 +16,RoboRiders,1 +17,Speed Slammers,1 +18,Star Wars,1 +19,Supplemental,1 +20,Throwbot Slizer,1 +21,Universal Building Set,1 +22,Creator, +23,Basic Model,22 +24,Airport,23 +25,Castle,23 +26,Construction,23 +27,Race,23 +28,Harbor,23 +29,Train,23 +30,Traffic,23 +31,Creature,23 +32,Robot,23 +33,Food & Drink,23 +34,Building,23 +35,Cargo,23 +36,Fire,23 +37,Basic Set,22 +38,Model,22 +39,Traffic,38 +40,Creature,38 +41,Riding Cycle,38 +42,Airport,38 +43,Building,38 +44,Recreation,38 +45,Cargo,38 +46,Harbor,38 +47,Fire,38 +48,Supplemental,22 +49,Mecha,22 +50,Town, +51,Arctic,50 +52,City,50 +53,Airport,52 +54,Cargo,52 +55,Coast Guard,52 +56,Construction,52 +57,Farm,52 +58,Fire,52 +59,Harbor,52 +60,Hospital,52 +61,Police,52 +62,Supplemental,52 +63,Traffic,52 +64,Off-Road,52 +65,Arctic,52 +66,Trains,52 +67,Classic Town,50 +68,Airport,67 +69,Building,67 +70,Cargo,67 +71,Coast Guard,67 +72,Construction,67 +73,Farm,67 +74,Fire,67 +75,Food & Drink,67 +76,Station,67 +77,Harbor,67 +78,Hospital,67 +79,Off-Road,67 +80,Police,67 +81,Post Office,67 +82,Race,67 +83,Recreation,67 +84,Supplemental,67 +85,Traffic,67 +86,Divers,50 +87,Extreme Team,50 +88,Launch Command,50 +89,Outback,50 +90,Paradisa,50 +91,Race,50 +92,Res-Q,50 +93,Space Port,50 +94,Town Jr.,50 +95,Cargo,94 +96,Coast Guard,94 +97,Construction,94 +98,Fire,94 +99,Gas Station,94 +100,Police,94 +101,Race,94 +102,Supplemental,94 +103,Traffic,94 +104,Town Plan,50 +105,World City,50 +106,Airport,105 +107,Coast Guard,105 +108,Fire,105 +109,Food & Drink,105 +110,Harbor,105 +111,Police,105 +112,Racers, +113,Drome Racers,112 +114,Ferrari,112 +115,Lamborghini,112 +116,Power Racers,112 +117,Radio Control,112 +118,Speed Racer,112 +119,Supplemental,112 +120,Tiny Turbos,112 +121,Track System,112 +122,Williams F1,112 +123,World Racers,112 +124,Supplemental,123 +125,Xalax,112 +126,Space, +127,Alien Conquest,126 +128,Blacktron I,126 +129,Blacktron II,126 +130,Classic Space,126 +131,Exploriens,126 +132,Futuron,126 +133,Ice Planet 2002,126 +134,Insectoids,126 +135,Life On Mars,126 +136,M:Tron,126 +137,Mars Mission,126 +138,RoboForce,126 +139,Space Police I,126 +140,Space Police II,126 +141,Space Police III,126 +142,Spyrius,126 +143,Supplemental,126 +144,UFO,126 +145,Unitron,126 +146,Galaxy Squad,126 +147,Pirates, +148,Pirates I,147 +149,Imperial Armada,148 +150,Imperial Guards,148 +151,Imperial Soldiers,148 +152,Islanders,148 +153,Pirates II,147 +154,Pirates III,147 +155,Modular Buildings, +156,Mini,155 +157,Bricktober,155 +158,Star Wars, +159,Mini,158 +160,Star Wars Clone Wars,159 +161,Star Wars Episode 2,159 +162,Star Wars Episode 3,159 +163,Star Wars Episode 4/5/6,159 +164,Star Wars Episode 1,159 +165,Star Wars Clone Wars,158 +166,Star Wars Episode 1,158 +167,Star Wars Episode 2,158 +168,Star Wars Episode 3,158 +169,Star Wars Episode 4/5/6,158 +170,Star Wars Other,158 +171,Ultimate Collector Series,158 +172,Star Wars Episode 1,171 +173,Star Wars Episode 3,171 +174,Star Wars Episode 4/5/6,171 +175,Star Wars Episode 2,171 +176,Planet Series 1,158 +177,Planet Series 2,158 +178,Minifig Pack,158 +179,Planet Series 3,158 +180,Planet Series 4,158 +181,Star Wars Episode 4/5/6,180 +182,Star Wars Rebels,158 +183,Star Wars Expanded Universe,158 +184,Star Wars Episode 7,158 +185,Star Wars Rogue One,158 +186,Castle, +187,Black Falcons,186 +188,Black Knights,186 +189,Classic Castle,186 +190,Crusaders,186 +191,Dark Forest,186 +192,Dragon Knights,186 +193,Fantasy Era,186 +194,Forestmen,186 +195,Fright Knights,186 +196,Kingdoms,186 +197,Knights Kingdom I,186 +198,Knights Kingdom II,186 +199,Lion Knights,186 +200,My Own Creation,186 +201,Royal Knights,186 +202,Supplemental,186 +203,Wolfpack,186 +204,Designer Sets, +205,Building,204 +206,Seasonal, +207,Advent,206 +208,City,207 +209,Star Wars,207 +210,Belville,207 +211,Castle,207 +212,Classic Basic,207 +213,Clikits,207 +214,Creator,207 +215,Pirates,207 +216,Friends,207 +217,Advent Sub-Set,206 +218,Belville,217 +219,Castle,217 +220,City,217 +221,Classic Basic,217 +222,Clikits,217 +223,Creator,217 +224,Pirates,217 +225,Star Wars,217 +226,Friends,217 +227,Christmas,206 +228,Creator,227 +229,Easter,206 +230,Halloween,206 +231,Thanksgiving,206 +232,Valentine,206 +233,Train, +234,12V,233 +235,4.5V,233 +236,9V,233 +237,My Own Creation,236 +238,My Own Train,236 +239,World City,236 +240,RC Train,233 +241,Supplemental,233 +242,12V,241 +243,4.5V,241 +244,9V,241 +245,RC Train,241 +246,Harry Potter, +247,Chamber of Secrets,246 +248,Goblet of Fire,246 +249,Order of the Phoenix,246 +250,Prisoner of Azkaban,246 +251,Sorcerer's Stone,246 +252,Architecture, +253,Skylines,252 +254,Bulk Bricks, +255,Castle,254 +256,Technic,254 +257,Train,254 +258,Mindstorms, +259,NXT,258 +260,RCX,258 +261,Star Wars,258 +262,EV3,258 +263,Pirates of the Caribbean, +264,Indiana Jones, +265,Kingdom of the Crystal Skull,264 +266,Last Crusade,264 +267,Raiders of the Lost Ark,264 +268,Temple of Doom,264 +269,Cars, +270,Ben 10, +271,Prince of Persia, +272,SpongeBob SquarePants, +273,Studios, +274,Jurassic Park III,273 +275,Toy Story, +276,Sculptures, +277,Mosaic,276 +278,Model Team, +279,4 Juniors, +280,Jack Stone,279 +281,Police,280 +282,Airport,280 +283,Fire,280 +284,Traffic,280 +285,Gas Station,280 +286,Pirates,279 +287,Spider-Man,279 +288,Spider-Man 2,287 +289,Supplemental,279 +290,Town,279 +291,Police,290 +292,Traffic,290 +293,Construction,290 +294,Gas Station,290 +295,Fire,290 +296,Adventurers, +297,Desert,296 +298,Dino Island,296 +299,Jungle,296 +300,Orient Expedition,296 +301,Other, +302,Agents, +303,Ultra Agents,302 +304,Alpha Team, +305,Mission Deep Sea,304 +306,Mission Deep Freeze,304 +307,Aquazone, +308,Aquanauts,307 +309,Aquaraiders I,307 +310,Aquaraiders II,307 +311,Aquasharks,307 +312,Hydronauts,307 +313,Stingrays,307 +314,Supplemental,307 +315,Atlantis, +316,Mini,315 +317,Avatar, +318,Belville, +319,Fairy-Tale,318 +320,Golden Land,318 +321,Hospital,318 +322,Playhouse,318 +323,Recreation,318 +324,Bionicle, +325,Agori,324 +326,Barraki,324 +327,Battle Vehicles,324 +328,Bohrok,324 +329,Bohrok Va,324 +330,Bohrok-Kal,324 +331,Glatorian,324 +332,Glatorian Legends,324 +333,Matoran of Light,324 +334,Matoran of Mahri Nui,324 +335,Matoran of Mata Nui,324 +336,Matoran of Metru Nui,324 +337,Matoran of Voya Nui,324 +338,Mistika,324 +339,Phantoka,324 +340,Piraka,324 +341,Playsets,324 +342,Rahaga,324 +343,Rahi,324 +344,Rahkshi,324 +345,Stars,324 +346,Supplemental,324 +347,Titans,324 +348,Toa,324 +349,Toa Hagah,324 +350,Toa Hordika,324 +351,Toa Inika,324 +352,Toa Mahri,324 +353,Toa Metru,324 +354,Toa Nuva,324 +355,Tohunga,324 +356,Turaga,324 +357,Vahki,324 +358,Visorak,324 +359,Warriors,324 +360,Protectors,324 +361,Skull Spiders,324 +362,Toa Okoto,324 +363,Boat, +364,Building Set with People, +365,Classic, +366,Basic Set,365 +367,Building,365 +368,HO 1:87 Vehicles,365 +369,Jumbo Bricks,365 +370,Mosaic,365 +371,Supplemental,365 +372,Town Plan,365 +373,Vehicle,365 +374,Airport,373 +375,Farm,373 +376,Fire,373 +377,Harbor,373 +378,Traffic,373 +379,Supplemental,373 +380,Train,373 +381,Construction,373 +382,Cargo,373 +383,Wooden Box Set,365 +384,Dino 2010, +385,Dino Attack, +386,Dinosaurs, +387,Discovery, +388,Disney's Mickey Mouse, +389,Exo-Force, +390,Fabuland, +391,Hospital,390 +392,Post Office,390 +393,Harbor,390 +394,Airport,390 +395,Fire,390 +396,Police,390 +397,Factory, +398,FIRST LEGO League, +399,Freestyle, +400,Hero Factory, +401,Heroes,400 +402,Vehicles,400 +403,Villains,400 +404,Hobby Sets, +405,Homemaker, +406,Inventor, +407,Island Xtreme Stunts, +408,LEGO Brand Store, +409,Monthly Mini Model Build,408 +410,Pick A Model,408 +411,Legoland, +412,Airport,411 +413,Building,411 +414,Castle,411 +415,Coast Guard,411 +416,Construction,411 +417,Fire,411 +418,Gas Station,411 +419,Harbor,411 +420,Hospital,411 +421,Police,411 +422,Space,411 +423,Vehicle,411 +424,Western,411 +425,Legoland Parks, +426,Bionicle,425 +427,Holiday,425 +428,Christmas,425 +429,Halloween,425 +430,Pirates,425 +431,Star Wars,425 +432,Master Building Academy, +433,Minitalia, +434,Ninja, +435,Ninjago, +436,Airjitzu,435 +437,Pharaoh's Quest, +438,Power Functions, +439,Power Miners, +440,Primo, +441,Quatro, +442,Rock Raiders, +443,Service Packs, +444,Adventurers,443 +445,Aquazone,443 +446,Belville,443 +447,Castle,443 +448,Fabuland,443 +449,Pirates,443 +450,Primo,443 +451,Scala,443 +452,Space,443 +453,Technic,443 +454,Town,443 +455,Classic Town,454 +456,Train,443 +457,Western ,443 +458,Sports, +459,Basketball,458 +460,Gravity Games,458 +461,Hockey,458 +462,Soccer,458 +463,Spybiotics, +464,Time Cruisers, +465,Universal Building Set, +466,Airport,465 +467,Basic,465 +468,Basic Model,465 +469,Basic Set,465 +470,Classic Basic,465 +471,Ferries,465 +472,Gears,465 +473,Supplemental,465 +474,Vikings, +475,Western, +476,Cowboys,475 +477,Indians,475 +478,X-Pod, +479,Creator,478 +480,Znap, +481,Dino, +482,Super Heroes, +483,Guardians of the Galaxy,482 +484,Batman,482 +485,Ultimate Collector Series,484 +486,Justice League,482 +487,Avengers,482 +488,Spider-Man,482 +489,Superman,482 +490,Iron Man,482 +491,X-Men,482 +492,Constraction,482 +493,Marvel,482 +494,Friends, +495,Jungle Rescue,494 +496,Animals,494 +497,Books, +498,Technic,497 +499,Train,497 +500,Clikits, +501,Gear, +502,Game,501 +503,Key Chain,501 +504,Duplo, +505,Basic Set,504 +506,Cars,504 +507,Educational and Dacta, +508,4 Juniors,507 +509,Adventurers,507 +510,Boat,507 +511,Building Set with People,507 +512,Castle,507 +513,Classic,507 +514,Creator,507 +515,Dinosaurs,507 +516,Explore,507 +517,Learning,507 +518,Mindstorms,507 +519,NXT,518 +520,RCX,518 +521,WeDo,518 +522,Primo,507 +523,Samsonite,507 +524,Service Packs,507 +525,Technic,524 +526,Soft Bricks,507 +527,Space,507 +528,Supplemental,507 +529,Technic,507 +530,Control Lab,529 +531,eLAB,529 +532,Supplemental,529 +533,Town,507 +534,Universal Building Set,507 +535,Collectible Minifigures, +536,Series 1 Minifigures,535 +537,Series 2 Minifigures,535 +538,Series 3 Minifigures,535 +539,Series 4 Minifigures,535 +540,Series 5 Minifigures,535 +541,Series 6 Minifigures,535 +542,Series 7 Minifigures,535 +543,Series 8 Minifigures,535 +544,Series 9 Minifigures,535 +545,Series 10 Minifigures,535 +546,Team GB,535 +547,Series 11 Minifigures,535 +548,Series 12 Minifigures,535 +549,The LEGO Movie Series,535 +550,The Simpsons,535 +551,Series 13 Minifigures,535 +552,Series 14 Minifigures,535 +553,The Simpsons Series 2,535 +554,Series 15 Minifigures,535 +555,Disney,535 +556,Series 16 Minifigures,535 +557,DFB Minifigures,535 +558,Monster Fighters, +559,Value Packs, +560,Universe, +561,The Hobbit and Lord of the Rings, +562,The Hobbit,561 +563,An Unexpected Journey,562 +564,The Desolation of Smaug,562 +565,The Battle of the Five Armies,562 +566,The Lord of the Rings,561 +567,The Fellowship of the Ring,566 +568,The Two Towers,566 +569,The Return of the King,566 +570,Teenage Mutant Ninja Turtles, +571,Legends of Chima, +572,Speedorz,571 +573,Constraction,571 +574,Legend Beasts,571 +575,The Lone Ranger, +576,LEGO Ideas and CUUSOO, +577,Minecraft, +578,The LEGO Movie, +579,Disney Princess, +580,Mixels, +581,Series 1,580 +582,Series 2,580 +583,Series 3,580 +584,Series 4,580 +585,Series 5,580 +586,Series 6,580 +587,Series 7,580 +588,Series 8,580 +589,Series 9,580 +590,Fusion, +591,Juniors, +592,DC Comics Super Heroes,591 +593,Disney Princess,591 +594,Fantasy,591 +595,Friends,591 +596,Marvel Super Heroes,591 +597,Nijago,591 +598,Promotional, +599,LEGO Exclusive, +600,Elves, +601,Speed Champions, +602,Jurassic World, +603,Scooby-Doo, +604,Dimensions, +605,Nexo Knights, +606,Angry Birds, +607,Ghostbusters, +608,Disney, +609,The LEGO Batman Movie,535 +610,Brickheadz, +611,Series 17 Minifigures,535 +612,Star Wars Episode 8,158 +613,Freemakers,158 +614,Jungle,52